diff --git a/.github/ISSUE_TEMPLATE/nightly_build_failure_bug_template.md b/.github/ISSUE_TEMPLATE/nightly_build_failure_bug_template.md new file mode 100644 index 0000000000..40f6f0dbbc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/nightly_build_failure_bug_template.md @@ -0,0 +1,36 @@ +--- +name: Nightly Build Error bug report +about: Create a report when the nightly build process fails +title: 'Nightly Build Failure' +labels: 'needs-triage,needs-sig,kind/bug,kind/nightlybuildfailure' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**Failure type** +Build | Asset Processing | Test Tools | Infrastructure | Test + +**To Reproduce Test Failures** + - Paste the command line that reproduces the test failure + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Logs** +Attach the Jenkins logs that are relevant to the failure + +**Desktop/Device (please complete the following information):** + - Device: [e.g. PC, Mac, iPhone, Samsung] + - OS: [e.g. Windows, macOS, iOS, Android] + - Version [e.g. 10, Bug Sur, Oreo] + - CPU [e.g. Intel I9-9900k , Ryzen 5900x, ] + - GPU [AMD 6800 XT, NVidia RTX 3090] + - Memory [e.g. 16GB] + +**Additional context** +Add any other context about the problem here. \ No newline at end of file diff --git a/.gitignore b/.gitignore index b73c89b1d9..c28f6ab123 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ __pycache__ AssetProcessorTemp/** [Bb]uild/** [Oo]ut/** +CMakeUserPresets.json [Cc]ache/ /install/ Editor/EditorEventLog.xml diff --git a/cmake/3rdParty/Platform/Mac/squish-ccr_mac.cmake b/Assets/CMakeLists.txt similarity index 76% rename from cmake/3rdParty/Platform/Mac/squish-ccr_mac.cmake rename to Assets/CMakeLists.txt index 740e630570..300e11ac3e 100644 --- a/cmake/3rdParty/Platform/Mac/squish-ccr_mac.cmake +++ b/Assets/CMakeLists.txt @@ -6,4 +6,4 @@ # # -set(SQUISH-CCR_LIBS ${BASE_PATH}/lib/Mac/Release/libsquish-ccr.a) \ No newline at end of file +ly_install_directory(DIRECTORIES .) diff --git a/AutomatedTesting/Gem/Code/CMakeLists.txt b/AutomatedTesting/Gem/Code/CMakeLists.txt index 58ffd957d6..6f55cc2764 100644 --- a/AutomatedTesting/Gem/Code/CMakeLists.txt +++ b/AutomatedTesting/Gem/Code/CMakeLists.txt @@ -35,37 +35,11 @@ ly_create_alias(NAME AutomatedTesting.Servers NAMESPACE Gem TARGETS Gem::Automa # Gem dependencies ################################################################################ -# The GameLauncher uses "Clients" gem variants: -ly_enable_gems(PROJECT_NAME AutomatedTesting GEM_FILE enabled_gems.cmake - TARGETS AutomatedTesting.GameLauncher - VARIANTS Clients) +# Enable the enabled_gems for the Project: +ly_enable_gems(PROJECT_NAME AutomatedTesting GEM_FILE enabled_gems.cmake) -# If we build a server, then apply the gems to the server +# Add project to the list server projects to create the AutomatedTesting.ServerLauncher if(PAL_TRAIT_BUILD_SERVER_SUPPORTED) - # if we're making a server, then add the "Server" gem variants to it: - ly_enable_gems(PROJECT_NAME AutomatedTesting GEM_FILE enabled_gems.cmake - TARGETS AutomatedTesting.ServerLauncher - VARIANTS Servers) - set_property(GLOBAL APPEND PROPERTY LY_LAUNCHER_SERVER_PROJECTS AutomatedTesting) endif() -if (PAL_TRAIT_BUILD_HOST_TOOLS) - # The Editor uses "Tools" gem variants: - ly_enable_gems( - PROJECT_NAME AutomatedTesting GEM_FILE enabled_gems.cmake - TARGETS Editor - VARIANTS Tools) - - # The Material Editor needs the Lyshine "Tools" gem variant for the custom LyShine pass - ly_enable_gems( - PROJECT_NAME AutomatedTesting GEMS LyShine - TARGETS MaterialEditor - VARIANTS Tools) - - # The pipeline tools use "Builders" gem variants: - ly_enable_gems( - PROJECT_NAME AutomatedTesting GEM_FILE enabled_gems.cmake - TARGETS AssetBuilder AssetProcessor AssetProcessorBatch - VARIANTS Builders) -endif() diff --git a/AutomatedTesting/Gem/PythonCoverage/Code/Source/PythonCoverageEditorSystemComponent.cpp b/AutomatedTesting/Gem/PythonCoverage/Code/Source/PythonCoverageEditorSystemComponent.cpp index ad6cf216d7..1528e09169 100644 --- a/AutomatedTesting/Gem/PythonCoverage/Code/Source/PythonCoverageEditorSystemComponent.cpp +++ b/AutomatedTesting/Gem/PythonCoverage/Code/Source/PythonCoverageEditorSystemComponent.cpp @@ -17,7 +17,7 @@ namespace PythonCoverage { - static constexpr char* const LogCallSite = "PythonCoverageEditorSystemComponent"; + static constexpr const char* const LogCallSite = "PythonCoverageEditorSystemComponent"; void PythonCoverageEditorSystemComponent::Reflect(AZ::ReflectContext* context) { diff --git a/AutomatedTesting/Gem/PythonTests/AWS/common/constants.py b/AutomatedTesting/Gem/PythonTests/AWS/common/constants.py index be143547a7..b12aca5f29 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/common/constants.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/common/constants.py @@ -5,12 +5,14 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ +import os + # ARN of the IAM role to assume for retrieving temporary AWS credentials -ASSUME_ROLE_ARN = 'arn:aws:iam::645075835648:role/o3de-automation-tests' +ASSUME_ROLE_ARN = os.environ.get('ASSUME_ROLE_ARN', 'arn:aws:iam::645075835648:role/o3de-automation-tests') # Name of the AWS project deployed by the CDK applications -AWS_PROJECT_NAME = 'AWSAUTO' +AWS_PROJECT_NAME = os.environ.get('O3DE_AWS_PROJECT_NAME', 'AWSAUTO') # Region for the existing CloudFormation stacks used by the automation tests -AWS_REGION = 'us-east-1' +AWS_REGION = os.environ.get('O3DE_AWS_DEPLOY_REGION', 'us-east-1') # Name of the default resource mapping config file used by the automation tests AWS_RESOURCE_MAPPING_FILE_NAME = 'default_aws_resource_mappings.json' # Name of the game launcher log diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/asset_utils.py b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/asset_utils.py new file mode 100644 index 0000000000..ece7670a9e --- /dev/null +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/asset_utils.py @@ -0,0 +1,47 @@ +""" +Copyright (c) Contributors to the Open 3D Engine Project. +For complete copyright and license terms please see the LICENSE at the root of this distribution. + +SPDX-License-Identifier: Apache-2.0 OR MIT +""" + +# Built-in Imports +from __future__ import annotations + +# Open 3D Engine Imports +import azlmbr.bus as bus +import azlmbr.asset as azasset +import azlmbr.math as math + + +class Asset: + """ + Used to find Asset Id by its path and path of asset by its Id + If a component has any asset property, then this class object can be called as: + asset_id = editor_python_test_tools.editor_entity_utils.EditorComponent.get_component_property_value() + asset = asset_utils.Asset(asset_id) + """ + def __init__(self, id: azasset.AssetId): + self.id: azasset.AssetId = id + + # Creation functions + @classmethod + def find_asset_by_path(cls, path: str, RegisterType: bool = False) -> Asset: + """ + :param path: Absolute file path of the asset + :param RegisterType: Whether to register the asset if it's not in the database, + default to false for the general case + :return: Asset object associated with file path + """ + asset_id = azasset.AssetCatalogRequestBus(bus.Broadcast, "GetAssetIdByPath", path, math.Uuid(), RegisterType) + assert asset_id.is_valid(), f"Couldn't find Asset with path: {path}" + asset = cls(asset_id) + return asset + + # Methods + def get_path(self) -> str: + """ + :return: Absolute file path of Asset + """ + assert self.id.is_valid(), "Invalid Asset Id" + return azasset.AssetCatalogRequestBus(bus.Broadcast, "GetAssetPathById", self.id) diff --git a/AutomatedTesting/Gem/PythonTests/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh.py b/AutomatedTesting/Gem/PythonTests/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh.py index 6009c2aca7..0ed9da1405 100755 --- a/AutomatedTesting/Gem/PythonTests/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh.py +++ b/AutomatedTesting/Gem/PythonTests/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh.py @@ -45,10 +45,6 @@ def C18977329_NvCloth_AddClothSimulationToMesh(): from editor_python_test_tools.editor_entity_utils import EditorEntity from editor_python_test_tools.utils import Report - # Helper file Imports - import ImportPathHelper as imports - - imports.init() from editor_python_test_tools.utils import TestHelper as helper from editor_python_test_tools.utils import Tracer @@ -84,7 +80,5 @@ def C18977329_NvCloth_AddClothSimulationToMesh(): helper.close_editor() if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report Report.start_test(C18977329_NvCloth_AddClothSimulationToMesh) diff --git a/AutomatedTesting/Gem/PythonTests/NvCloth/C18977330_NvCloth_AddClothSimulationToActor.py b/AutomatedTesting/Gem/PythonTests/NvCloth/C18977330_NvCloth_AddClothSimulationToActor.py index 2eaed04f41..4d84a33dd2 100755 --- a/AutomatedTesting/Gem/PythonTests/NvCloth/C18977330_NvCloth_AddClothSimulationToActor.py +++ b/AutomatedTesting/Gem/PythonTests/NvCloth/C18977330_NvCloth_AddClothSimulationToActor.py @@ -44,11 +44,7 @@ def C18977330_NvCloth_AddClothSimulationToActor(): from editor_python_test_tools.editor_entity_utils import EditorEntity from editor_python_test_tools.utils import Report - - # Helper file Imports - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import TestHelper as helper from editor_python_test_tools.utils import Tracer @@ -84,7 +80,5 @@ def C18977330_NvCloth_AddClothSimulationToActor(): helper.close_editor() if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report Report.start_test(C18977330_NvCloth_AddClothSimulationToActor) diff --git a/AutomatedTesting/Gem/PythonTests/NvCloth/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/NvCloth/CMakeLists.txt index 3913041f88..4343be3194 100644 --- a/AutomatedTesting/Gem/PythonTests/NvCloth/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/NvCloth/CMakeLists.txt @@ -12,7 +12,7 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) TEST_SUITE main TEST_REQUIRES gpu TEST_SERIAL - PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Active.py + PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Main.py RUNTIME_DEPENDENCIES Legacy::Editor AZ::AssetProcessor diff --git a/AutomatedTesting/Gem/PythonTests/NvCloth/ImportPathHelper.py b/AutomatedTesting/Gem/PythonTests/NvCloth/ImportPathHelper.py deleted file mode 100755 index 0e395664ad..0000000000 --- a/AutomatedTesting/Gem/PythonTests/NvCloth/ImportPathHelper.py +++ /dev/null @@ -1,11 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -def init(): - import os - import sys - sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../automatedtesting_shared') diff --git a/AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Active.py b/AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Main.py old mode 100755 new mode 100644 similarity index 90% rename from AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Active.py rename to AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Main.py index 9302054d33..2ddcc58f12 --- a/AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Active.py +++ b/AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Main.py @@ -22,12 +22,11 @@ from base import TestAutomationBase class TestAutomation(TestAutomationBase): use_null_renderer = False # Use default renderer (needs gpu) - extra_cmdline_args = [] def test_C18977329_NvCloth_AddClothSimulationToMesh(self, request, workspace, editor, launcher_platform): from . import C18977329_NvCloth_AddClothSimulationToMesh as test_module - self._run_test(request, workspace, editor, test_module, self.extra_cmdline_args, self.use_null_renderer) + self._run_test(request, workspace, editor, test_module, use_null_renderer = self.use_null_renderer) def test_C18977330_NvCloth_AddClothSimulationToActor(self, request, workspace, editor, launcher_platform): from . import C18977330_NvCloth_AddClothSimulationToActor as test_module - self._run_test(request, workspace, editor, test_module, self.extra_cmdline_args, self.use_null_renderer) + self._run_test(request, workspace, editor, test_module, use_null_renderer = self.use_null_renderer) diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/bundler_batch_setup_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/bundler_batch_setup_fixture.py index a543527ed7..ff362c732c 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/bundler_batch_setup_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/bundler_batch_setup_fixture.py @@ -342,7 +342,7 @@ def bundler_batch_setup_fixture(request, workspace, asset_processor, timeout) -> # Run a full scan to ENSURE that both caches (pc and osx) are COMPLETELY POPULATED # Needed for asset bundling # fmt:off - assert asset_processor.batch_process(fastscan=False, timeout=timeout * len(platforms), platforms=platforms_list), \ + assert asset_processor.batch_process(fastscan=True, timeout=timeout * len(platforms), platforms=platforms_list), \ "AP Batch failed to process in bundler_batch_fixture" # fmt:on diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/CMakeLists.txt index 3d7a9204e2..5a5809595e 100644 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/CMakeLists.txt @@ -92,25 +92,12 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) AZ::AssetProcessor ) - # Issue #3017 - #ly_add_pytest( - # NAME AssetPipelineTests.AssetBundler - # PATH ${CMAKE_CURRENT_LIST_DIR}/asset_bundler_batch_tests.py - # EXCLUDE_TEST_RUN_TARGET_FROM_IDE - # TEST_SERIAL - # TEST_SUITE periodic - # RUNTIME_DEPENDENCIES - # AZ::AssetProcessor - # AZ::AssetBundlerBatch - #) - ly_add_pytest( - NAME AssetPipelineTests.AssetBundler_SandBox - TEST_SUITE sandbox + NAME AssetPipelineTests.AssetBundler PATH ${CMAKE_CURRENT_LIST_DIR}/asset_bundler_batch_tests.py - PYTEST_MARKS "SUITE_sandbox" # run only sandbox tests in this file EXCLUDE_TEST_RUN_TARGET_FROM_IDE TEST_SERIAL + TEST_SUITE periodic RUNTIME_DEPENDENCIES AZ::AssetProcessor AZ::AssetBundlerBatch diff --git a/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/hydra_AtomMaterialEditor_BasicTests.py b/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/hydra_AtomMaterialEditor_BasicTests.py index b3c51ca912..9047b4c871 100644 --- a/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/hydra_AtomMaterialEditor_BasicTests.py +++ b/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/hydra_AtomMaterialEditor_BasicTests.py @@ -33,6 +33,7 @@ MATERIAL_TYPE_PATH = os.path.join( azlmbr.paths.devroot, "Gems", "Atom", "Feature", "Common", "Assets", "Materials", "Types", "StandardPBR.materialtype", ) +CACHE_FILE_EXTENSION = ".azmaterial" def run(): @@ -67,6 +68,7 @@ def run(): material_editor.save_document_as_child(document_id, target_path) material_editor.wait_for_condition(lambda: os.path.exists(target_path), 2.0) print(f"New asset created: {os.path.exists(target_path)}") + time.sleep(2.0) # Verify if the newly created document is open new_document_id = material_editor.open_material(target_path) @@ -101,22 +103,29 @@ def run(): expected_color = math.Color(0.25, 0.25, 0.25, 1.0) material_editor.set_property(document_id, property_name, expected_color) material_editor.save_document(document_id) + time.sleep(2.0) # 7) Test Case: Saving as a New Material # Assign new color to the material file and save the document as copy expected_color_1 = math.Color(0.5, 0.5, 0.5, 1.0) material_editor.set_property(document_id, property_name, expected_color_1) target_path_1 = os.path.join(azlmbr.paths.devroot, "AutomatedTesting", "Materials", NEW_MATERIAL_1) + cache_file_name_1 = os.path.splitext(NEW_MATERIAL_1) # Example output: ('test_material_1', '.material') + cache_file_1 = f"{cache_file_name_1[0]}{CACHE_FILE_EXTENSION}" + target_path_1_cache = os.path.join(azlmbr.paths.devassets, "Cache", "pc", "materials", cache_file_1) material_editor.save_document_as_copy(document_id, target_path_1) - time.sleep(2.0) + material_editor.wait_for_condition(lambda: os.path.exists(target_path_1_cache), 4.0) # 8) Test Case: Saving as a Child Material # Assign new color to the material file save the document as child expected_color_2 = math.Color(0.75, 0.75, 0.75, 1.0) material_editor.set_property(document_id, property_name, expected_color_2) target_path_2 = os.path.join(azlmbr.paths.devroot, "AutomatedTesting", "Materials", NEW_MATERIAL_2) + cache_file_name_2 = os.path.splitext(NEW_MATERIAL_1) # Example output: ('test_material_2', '.material') + cache_file_2 = f"{cache_file_name_2[0]}{CACHE_FILE_EXTENSION}" + target_path_2_cache = os.path.join(azlmbr.paths.devassets, "Cache", "pc", "materials", cache_file_2) material_editor.save_document_as_child(document_id, target_path_2) - time.sleep(2.0) + material_editor.wait_for_condition(lambda: os.path.exists(target_path_2_cache), 4.0) # Close/Reopen documents material_editor.close_all_documents() diff --git a/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_GPUTests.py b/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_GPUTests.py index 7be1ed1b12..047f46a40f 100644 --- a/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_GPUTests.py +++ b/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_GPUTests.py @@ -181,3 +181,39 @@ class TestPerformanceBenchmarkSuite(object): aggregator = BenchmarkDataAggregator(workspace, logger, 'periodic') aggregator.upload_metrics(rhi) + + +@pytest.mark.parametrize("project", ["AutomatedTesting"]) +@pytest.mark.parametrize("launcher_platform", ['windows_generic']) +@pytest.mark.system +class TestMaterialEditor(object): + + @pytest.mark.parametrize("cfg_args", ["-rhi=dx12", "-rhi=Vulkan"]) + @pytest.mark.parametrize("exe_file_name", ["MaterialEditor"]) + def test_MaterialEditorLaunch_AllRHIOptionsSucceed( + self, request, workspace, project, launcher_platform, generic_launcher, exe_file_name, cfg_args): + """ + Tests each valid RHI option (Null RHI excluded) can be launched with the MaterialEditor. + Checks for the "Finished loading viewport configurtions." success message post lounch. + """ + expected_lines = ["Finished loading viewport configurtions."] + unexpected_lines = [ + # "Trace::Assert", + # "Trace::Error", + "Traceback (most recent call last):", + ] + + hydra.launch_and_validate_results( + request, + TEST_DIRECTORY, + generic_launcher, + editor_script="", + run_python="--runpython", + timeout=30, + expected_lines=expected_lines, + unexpected_lines=unexpected_lines, + halt_on_unexpected=False, + null_renderer=False, + cfg_args=[cfg_args], + log_file_name="MaterialEditor.log" + ) diff --git a/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_MainSuite.py b/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_MainSuite.py index 55c049b929..c40dc8f178 100644 --- a/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_MainSuite.py +++ b/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_MainSuite.py @@ -16,7 +16,6 @@ import editor_python_test_tools.hydra_test_utils as hydra from atom_renderer.atom_utils.atom_constants import LIGHT_TYPES logger = logging.getLogger(__name__) -EDITOR_TIMEOUT = 120 TEST_DIRECTORY = os.path.join(os.path.dirname(__file__), "atom_hydra_scripts") @@ -175,7 +174,7 @@ class TestAtomEditorComponentsMain(object): TEST_DIRECTORY, editor, "hydra_AtomEditorComponents_AddedToEntity.py", - timeout=EDITOR_TIMEOUT, + timeout=120, expected_lines=expected_lines, unexpected_lines=unexpected_lines, halt_on_unexpected=True, @@ -236,7 +235,7 @@ class TestAtomEditorComponentsMain(object): TEST_DIRECTORY, editor, "hydra_AtomEditorComponents_LightComponent.py", - timeout=EDITOR_TIMEOUT, + timeout=120, expected_lines=expected_lines, unexpected_lines=unexpected_lines, halt_on_unexpected=True, @@ -299,9 +298,10 @@ class TestMaterialEditorBasicTests(object): generic_launcher, "hydra_AtomMaterialEditor_BasicTests.py", run_python="--runpython", - timeout=80, + timeout=120, expected_lines=expected_lines, unexpected_lines=unexpected_lines, halt_on_unexpected=True, + null_renderer=True, log_file_name="MaterialEditor.log", ) diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/base.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/base.py index e6c28be2a5..f5cd66cbbe 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/base.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/base.py @@ -51,8 +51,8 @@ class TestAutomationBase: cls.asset_processor.teardown() cls._kill_ly_processes() - - def _run_test(self, request, workspace, editor, testcase_module, extra_cmdline_args=[], use_null_renderer=True): + def _run_test(self, request, workspace, editor, testcase_module, extra_cmdline_args=[], batch_mode=True, + autotest_mode=True, use_null_renderer=True): test_starttime = time.time() self.logger = logging.getLogger(__name__) errors = [] @@ -90,9 +90,13 @@ class TestAutomationBase: editor_starttime = time.time() self.logger.debug("Running automated test") testcase_module_filepath = self._get_testcase_module_filepath(testcase_module) - pycmd = ["--runpythontest", testcase_module_filepath, "-BatchMode", "-autotest_mode", f"-pythontestcase={request.node.originalname}"] + pycmd = ["--runpythontest", testcase_module_filepath, f"-pythontestcase={request.node.originalname}"] if use_null_renderer: pycmd += ["-rhi=null"] + if batch_mode: + pycmd += ["-BatchMode"] + if autotest_mode: + pycmd += ["-autotest_mode"] pycmd += extra_cmdline_args editor.args.extend(pycmd) # args are added to the WinLauncher start command editor.start(backupFiles = False, launch_ap = False) diff --git a/AutomatedTesting/Gem/PythonTests/editor/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/editor/CMakeLists.txt index fa35bb25c6..bf42579970 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/editor/CMakeLists.txt @@ -11,22 +11,8 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS AND PAL_TRAIT_ NAME AutomatedTesting::EditorTests_Main TEST_SUITE main TEST_SERIAL - PATH ${CMAKE_CURRENT_LIST_DIR} - PYTEST_MARKS "SUITE_main and not REQUIRES_gpu" - RUNTIME_DEPENDENCIES - Legacy::Editor - AZ::AssetProcessor - AutomatedTesting.Assets - COMPONENT - Editor - ) - - ly_add_pytest( - NAME AutomatedTesting::EditorTests_Periodic - TEST_SUITE periodic - TEST_SERIAL - PATH ${CMAKE_CURRENT_LIST_DIR} - PYTEST_MARKS "SUITE_periodic and not REQUIRES_gpu" + PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Main.py + PYTEST_MARKS "not REQUIRES_gpu" RUNTIME_DEPENDENCIES Legacy::Editor AZ::AssetProcessor @@ -40,8 +26,21 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS AND PAL_TRAIT_ TEST_SUITE main TEST_SERIAL TEST_REQUIRES gpu - PATH ${CMAKE_CURRENT_LIST_DIR} - PYTEST_MARKS "SUITE_main and REQUIRES_gpu" + PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Main.py + PYTEST_MARKS "REQUIRES_gpu" + RUNTIME_DEPENDENCIES + Legacy::Editor + AZ::AssetProcessor + AutomatedTesting.Assets + COMPONENT + Editor + ) + + ly_add_pytest( + NAME AutomatedTesting::EditorTests_Periodic + TEST_SUITE periodic + TEST_SERIAL + PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Periodic.py RUNTIME_DEPENDENCIES Legacy::Editor AZ::AssetProcessor @@ -54,8 +53,7 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS AND PAL_TRAIT_ NAME AutomatedTesting::EditorTests_Sandbox TEST_SUITE sandbox TEST_SERIAL - PATH ${CMAKE_CURRENT_LIST_DIR} - PYTEST_MARKS "SUITE_sandbox" + PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Sandbox.py RUNTIME_DEPENDENCIES Legacy::Editor AZ::AssetProcessor @@ -63,4 +61,47 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS AND PAL_TRAIT_ COMPONENT Editor ) + + ly_add_pytest( + NAME AutomatedTesting::EditorTests_Main_Optimized + TEST_SUITE main + TEST_SERIAL + PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Main_Optimized.py + PYTEST_MARKS "not REQUIRES_gpu" + RUNTIME_DEPENDENCIES + Legacy::Editor + AZ::AssetProcessor + AutomatedTesting.Assets + COMPONENT + Editor + ) + + ly_add_pytest( + NAME AutomatedTesting::EditorTests_Main_GPU_Optimized + TEST_SUITE main + TEST_SERIAL + TEST_REQUIRES gpu + PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Main_Optimized.py + PYTEST_MARKS "REQUIRES_gpu" + RUNTIME_DEPENDENCIES + Legacy::Editor + AZ::AssetProcessor + AutomatedTesting.Assets + COMPONENT + Editor + ) + + ly_add_pytest( + NAME AutomatedTesting::EditorTests_Sandbox_Optimized + TEST_SUITE sandbox + TEST_SERIAL + PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Sandbox_Optimized.py + RUNTIME_DEPENDENCIES + Legacy::Editor + AZ::AssetProcessor + AutomatedTesting.Assets + COMPONENT + Editor + ) + endif() diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_SearchFiltering.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_SearchFiltering.py index 60c8926eb2..33c48c7a77 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_SearchFiltering.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_SearchFiltering.py @@ -5,30 +5,24 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ -""" -C13660194 : Asset Browser - Filtering -""" -import os -import sys -from PySide2 import QtWidgets, QtTest, QtCore -from PySide2.QtCore import Qt - -import azlmbr.legacy.general as general -import azlmbr.paths - -sys.path.append(os.path.join(azlmbr.paths.devroot, 'AutomatedTesting', 'Gem', 'PythonTests')) -import editor_python_test_tools.hydra_editor_utils as hydra -import editor_python_test_tools.pyside_utils as pyside_utils -from editor_python_test_tools.editor_test_helper import EditorTestHelper +class Tests: + asset_filtered = ( + "Asset was filtered to in the Asset Browser", + "Failed to filter to the expected asset" + ) + asset_type_filtered = ( + "Expected asset type was filtered to in the Asset Browser", + "Failed to filter to the expected asset type" + ) -class AssetBrowserSearchFilteringTest(EditorTestHelper): - def __init__(self): - EditorTestHelper.__init__(self, log_prefix="AssetBrowser_SearchFiltering", args=["level"]) +def AssetBrowser_SearchFiltering(): + + import editor_python_test_tools.pyside_utils as pyside_utils @pyside_utils.wrap_async - async def run_test(self): + async def run_test(): """ Summary: Asset Browser - Filtering @@ -60,7 +54,13 @@ class AssetBrowserSearchFilteringTest(EditorTestHelper): :return: None """ - self.incorrect_file_found = False + from PySide2 import QtWidgets, QtTest, QtCore + from PySide2.QtCore import Qt + + import azlmbr.legacy.general as general + + from editor_python_test_tools.utils import Report + from editor_python_test_tools.utils import TestHelper as helper def verify_files_appeared(model, allowed_asset_extentions, parent_index=QtCore.QModelIndex()): indexes = [parent_index] @@ -74,25 +74,24 @@ class AssetBrowserSearchFilteringTest(EditorTestHelper): and (cur_data.lower().split(".")[-1] not in allowed_asset_extentions) and not cur_data[-1] == ")" ): - print(f"Incorrect file found: {cur_data}") - self.incorrect_file_found = True - indexes = list() - break + Report.info(f"Incorrect file found: {cur_data}") + return False indexes.append(cur_index) + return True + # 1) Open an existing simple level + helper.init_idle() + helper.open_level("Physics", "Base") - # 1) Open level - self.test_success = self.create_level( - self.args["level"], - heightmap_resolution=1024, - heightmap_meters_per_pixel=1, - terrain_texture_resolution=4096, - use_terrain=False, - ) - - # 2) Open Asset Browser - general.close_pane("Asset Browser") - general.open_pane("Asset Browser") + # 2) Open Asset Browser (if not opened already) + editor_window = pyside_utils.get_editor_main_window() + asset_browser_open = general.is_pane_visible("Asset Browser") + if not asset_browser_open: + Report.info("Opening Asset Browser") + action = pyside_utils.get_action_for_menu_path(editor_window, "Tools", "Asset Browser") + action.trigger() + else: + Report.info("Asset Browser is already open") editor_window = pyside_utils.get_editor_main_window() app = QtWidgets.QApplication.instance() @@ -103,10 +102,9 @@ class AssetBrowserSearchFilteringTest(EditorTestHelper): asset_browser_tree = asset_browser.findChild(QtWidgets.QTreeView, "m_assetBrowserTreeViewWidget") model_index = pyside_utils.find_child_by_pattern(asset_browser_tree, "cedar.fbx") pyside_utils.item_view_index_mouse_click(asset_browser_tree, model_index) - is_filtered = pyside_utils.wait_for_condition( + is_filtered = await pyside_utils.wait_for_condition( lambda: asset_browser_tree.indexBelow(asset_browser_tree.currentIndex()) == QtCore.QModelIndex(), 5.0) - if is_filtered: - print("cedar.fbx asset is filtered in Asset Browser") + Report.result(Tests.asset_filtered, is_filtered) # 4) Click the "X" in the search bar. clear_search = asset_browser.findChild(QtWidgets.QToolButton, "ClearToolButton") @@ -122,40 +120,47 @@ class AssetBrowserSearchFilteringTest(EditorTestHelper): tree.model().setData(animation_model_index, 2, Qt.CheckStateRole) general.idle_wait(1.0) # check asset types after clicking on Animation filter - verify_files_appeared(asset_browser_tree.model(), ["i_caf", "fbx", "xml", "animgraph", "motionset"]) - print(f"Animation file type(s) is present in the file tree: {not self.incorrect_file_found}") + asset_type_filter = verify_files_appeared(asset_browser_tree.model(), ["i_caf", "fbx", "xml", "animgraph", "motionset"]) + Report.result(Tests.asset_type_filtered, asset_type_filter) # 6) Add additional filter(FileTag) from the filter menu - self.incorrect_file_found = False line_edit.setText("FileTag") filetag_model_index = await pyside_utils.wait_for_child_by_pattern(tree, "FileTag") tree.model().setData(filetag_model_index, 2, Qt.CheckStateRole) general.idle_wait(1.0) # check asset types after clicking on FileTag filter - verify_files_appeared( + more_types_filtered = verify_files_appeared( asset_browser_tree.model(), ["i_caf", "fbx", "xml", "animgraph", "motionset", "filetag"] ) - print(f"FileTag file type(s) and Animation file type(s) is present in the file tree: {not self.incorrect_file_found}") + Report.result(Tests.asset_type_filtered, more_types_filtered) # 7) Remove one of the filtered asset types from the list of applied filters - self.incorrect_file_found = False filter_layout = asset_browser.findChild(QtWidgets.QFrame, "filteredLayout") animation_close_button = filter_layout.children()[1] first_close_button = animation_close_button.findChild(QtWidgets.QPushButton, "closeTag") first_close_button.click() general.idle_wait(1.0) # check asset types after removing Animation filter - verify_files_appeared(asset_browser_tree.model(), ["filetag"]) - print(f"FileTag file type(s) is present in the file tree after removing Animation filter: {not self.incorrect_file_found}") + remove_filtered = verify_files_appeared(asset_browser_tree.model(), ["filetag"]) + Report.result(Tests.asset_type_filtered, remove_filtered) # 8) Remove all of the filter asset types from the list of filters filetag_close_button = filter_layout.children()[1] second_close_button = filetag_close_button.findChild(QtWidgets.QPushButton, "closeTag") second_close_button.click() - # 9) Close the asset browser - asset_browser.close() + # Click off of the Asset Browser filter window to close it + QtTest.QTest.mouseClick(tree, Qt.LeftButton, Qt.NoModifier) + + # 9) Restore Asset Browser tool state and + if not asset_browser_open: + Report.info("Closing Asset Browser") + general.close_pane("Asset Browser") + + run_test() -test = AssetBrowserSearchFilteringTest() -test.run() +if __name__ == "__main__": + + from editor_python_test_tools.utils import Report + Report.start_test(AssetBrowser_SearchFiltering) diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_TreeNavigation.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_TreeNavigation.py index d57d9cda5e..b4f0dc7f6c 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_TreeNavigation.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_TreeNavigation.py @@ -5,124 +5,119 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ -""" -C13660195: Asset Browser - File Tree Navigation -""" -import os -import sys -from PySide2 import QtWidgets, QtTest, QtCore - -import azlmbr.legacy.general as general -import azlmbr.paths - -sys.path.append(os.path.join(azlmbr.paths.devroot, 'AutomatedTesting', 'Gem', 'PythonTests')) -from editor_python_test_tools.editor_test_helper import EditorTestHelper -import editor_python_test_tools.pyside_utils as pyside_utils +class Tests: + collapse_expand = ( + "Asset Browser hierarchy successfully collapsed/expanded", + "Failed to collapse/expand Asset Browser hierarchy" + ) + asset_visible = ( + "Expected asset is visible in the Asset Browser hierarchy", + "Failed to find expected asset in the Asset Browser hierarchy" + ) + scrollbar_visible = ( + "Scrollbar is visible", + "Scrollbar was not found" + ) -class AssetBrowserTreeNavigationTest(EditorTestHelper): - def __init__(self): - EditorTestHelper.__init__(self, log_prefix="AssetBrowser_TreeNavigation", args=["level"]) +def AssetBrowser_TreeNavigation(): + """ + Summary: + Verify if we are able to expand a file hierarchy in the Asset Browser and ScrollBar appears + appropriately. - def run_test(self): - """ - Summary: - Verify if we are able to expand a file hierarchy in the Asset Browser and ScrollBar appears - appropriately. + Expected Behavior: + The folder list is expanded to display the children of the selected folder. + A scroll bar appears to allow scrolling up and down through the asset browser. + Assets are present in the Asset Browser. - Expected Behavior: - The folder list is expanded to display the children of the selected folder. - A scroll bar appears to allow scrolling up and down through the asset browser. - Assets are present in the Asset Browser. + Test Steps: + 1) Open a simple level + 2) Open Asset Browser + 3) Collapse all files initially + 4) Get all Model Indexes + 5) Expand each of the folder and verify if it is opened + 6) Verify if the ScrollBar appears after expanding the tree - Test Steps: - 1) Open a new level - 2) Open Asset Browser - 3) Collapse all files initially - 4) Get all Model Indexes - 5) Expand each of the folder and verify if it is opened - 6) Verify if the ScrollBar appears after expanding the tree + Note: + - This test file must be called from the Open 3D Engine Editor command terminal + - Any passed and failed tests are written to the Editor.log file. + Parsing the file or running a log_monitor are required to observe the test results. - Note: - - This test file must be called from the Open 3D Engine Editor command terminal - - Any passed and failed tests are written to the Editor.log file. - Parsing the file or running a log_monitor are required to observe the test results. + :return: None + """ - :return: None - """ + from PySide2 import QtWidgets, QtTest, QtCore - def collapse_expand_and_verify(model_index, hierarchy_level): - tree.collapse(model_index) - collapse_success = not tree.isExpanded(model_index) - self.log(f"Level {hierarchy_level} collapsed: {collapse_success}") - tree.expand(model_index) - expand_success = tree.isExpanded(model_index) - self.log(f"Level {hierarchy_level} expanded: {expand_success}") - return collapse_success and expand_success + import azlmbr.legacy.general as general - # This is the hierarchy we are expanding (4 steps inside) - self.file_path = ("AutomatedTesting", "Assets", "ImageGradients", "image_grad_test_gsi.png") + import editor_python_test_tools.pyside_utils as pyside_utils + from editor_python_test_tools.utils import Report + from editor_python_test_tools.utils import TestHelper as helper - # 1) Open a new level - self.test_success = self.create_level( - self.args["level"], - heightmap_resolution=1024, - heightmap_meters_per_pixel=1, - terrain_texture_resolution=4096, - use_terrain=False, - ) + def collapse_expand_and_verify(model_index, hierarchy_level): + tree.collapse(model_index) + collapse_success = not tree.isExpanded(model_index) + Report.info(f"Level {hierarchy_level} collapsed: {collapse_success}") + tree.expand(model_index) + expand_success = tree.isExpanded(model_index) + Report.info(f"Level {hierarchy_level} expanded: {expand_success}") + return collapse_success and expand_success - # 2) Open Asset Browser (if not opened already) - editor_window = pyside_utils.get_editor_main_window() - asset_browser_open = general.is_pane_visible("Asset Browser") - if not asset_browser_open: - self.log("Opening Asset Browser") - action = pyside_utils.get_action_for_menu_path(editor_window, "Tools", "Asset Browser") - action.trigger() - else: - self.log("Asset Browser is already open") + # This is the hierarchy we are expanding (4 steps inside) + file_path = ("AutomatedTesting", "Assets", "ImageGradients", "image_grad_test_gsi.png") - # 3) Collapse all files initially - main_window = editor_window.findChild(QtWidgets.QMainWindow) - asset_browser = pyside_utils.find_child_by_hierarchy(main_window, ..., "Asset Browser") - tree = pyside_utils.find_child_by_hierarchy(asset_browser, ..., "m_assetBrowserTreeViewWidget") - scroll_area = tree.findChild(QtWidgets.QWidget, "qt_scrollarea_vcontainer") - scroll_bar = scroll_area.findChild(QtWidgets.QScrollBar) - tree.collapseAll() + # 1) Open an existing simple level + helper.init_idle() + helper.open_level("Physics", "Base") - # 4) Get all Model Indexes - model_index_1 = pyside_utils.find_child_by_hierarchy(tree, self.file_path[0]) - model_index_2 = pyside_utils.find_child_by_hierarchy(model_index_1, self.file_path[1]) - model_index_3 = pyside_utils.find_child_by_hierarchy(model_index_2, self.file_path[2]) - model_index_4 = pyside_utils.find_child_by_hierarchy(model_index_3, self.file_path[3]) + # 2) Open Asset Browser (if not opened already) + editor_window = pyside_utils.get_editor_main_window() + asset_browser_open = general.is_pane_visible("Asset Browser") + if not asset_browser_open: + Report.info("Opening Asset Browser") + action = pyside_utils.get_action_for_menu_path(editor_window, "Tools", "Asset Browser") + action.trigger() + else: + Report.info("Asset Browser is already open") - # 5) Verify each level of the hierarchy to the file can be collapsed/expanded - self.test_success = collapse_expand_and_verify(model_index_1, 1) and self.test_success - self.test_success = collapse_expand_and_verify(model_index_2, 2) and self.test_success - self.test_success = collapse_expand_and_verify(model_index_3, 3) and self.test_success - self.log(f"Collapse/Expand tests: {self.test_success}") + # 3) Collapse all files initially + main_window = editor_window.findChild(QtWidgets.QMainWindow) + asset_browser = pyside_utils.find_child_by_hierarchy(main_window, ..., "Asset Browser") + tree = pyside_utils.find_child_by_hierarchy(asset_browser, ..., "m_assetBrowserTreeViewWidget") + scroll_area = tree.findChild(QtWidgets.QWidget, "qt_scrollarea_vcontainer") + scroll_bar = scroll_area.findChild(QtWidgets.QScrollBar) + tree.collapseAll() - # Select the asset - tree.scrollTo(model_index_4) - pyside_utils.item_view_index_mouse_click(tree, model_index_4) + # 4) Get all Model Indexes + model_index_1 = pyside_utils.find_child_by_hierarchy(tree, file_path[0]) + model_index_2 = pyside_utils.find_child_by_hierarchy(model_index_1, file_path[1]) + model_index_3 = pyside_utils.find_child_by_hierarchy(model_index_2, file_path[2]) + model_index_4 = pyside_utils.find_child_by_hierarchy(model_index_3, file_path[3]) - # Verify if the currently selected item model index is same as the Asset Model index - # to prove that it is visible - asset_visible = tree.currentIndex() == model_index_4 - self.test_success = asset_visible and self.test_success - self.log(f"Asset visibility test: {asset_visible}") + # 5) Verify each level of the hierarchy to the file can be collapsed/expanded + Report.result(Tests.collapse_expand, collapse_expand_and_verify(model_index_1, 1) and + collapse_expand_and_verify(model_index_2, 2) and collapse_expand_and_verify(model_index_3, 3)) - # 6) Verify if the ScrollBar appears after expanding the tree - scrollbar_visible = scroll_bar.isVisible() - self.test_success = scrollbar_visible and self.test_success - self.log(f"Scrollbar visibility test: {scrollbar_visible}") + # Select the asset + tree.scrollTo(model_index_4) + pyside_utils.item_view_index_mouse_click(tree, model_index_4) - # 7) Restore Asset Browser tool state - if not asset_browser_open: - self.log("Closing Asset Browser") - general.close_pane("Asset Browser") + # Verify if the currently selected item model index is same as the Asset Model index + # to prove that it is visible + Report.result(Tests.asset_visible, tree.currentIndex() == model_index_4) + + # 6) Verify if the ScrollBar appears after expanding the tree + Report.result(Tests.scrollbar_visible, scroll_bar.isVisible()) + + # 7) Restore Asset Browser tool state + if not asset_browser_open: + Report.info("Closing Asset Browser") + general.close_pane("Asset Browser") -test = AssetBrowserTreeNavigationTest() -test.run() +if __name__ == "__main__": + + from editor_python_test_tools.utils import Report + Report.start_test(AssetBrowser_TreeNavigation) diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetPicker_UI_UX.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetPicker_UI_UX.py index 068f25fb1e..59a78c9e5d 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetPicker_UI_UX.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetPicker_UI_UX.py @@ -5,33 +5,13 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ -""" -C13751579: Asset Picker UI/UX -""" -import os -import sys -from PySide2 import QtWidgets, QtTest, QtCore -from PySide2.QtCore import Qt +def AssetPicker_UI_UX(): -import azlmbr.asset as asset -import azlmbr.bus as bus -import azlmbr.legacy.general as general -import azlmbr.paths -import azlmbr.math as math - -sys.path.append(os.path.join(azlmbr.paths.devroot, 'AutomatedTesting', 'Gem', 'PythonTests')) -import editor_python_test_tools.hydra_editor_utils as hydra -import editor_python_test_tools.pyside_utils as pyside_utils -from editor_python_test_tools.editor_test_helper import EditorTestHelper - - -class AssetPickerUIUXTest(EditorTestHelper): - def __init__(self): - EditorTestHelper.__init__(self, log_prefix="AssetPicker_UI_UX", args=["level"]) + import editor_python_test_tools.pyside_utils as pyside_utils @pyside_utils.wrap_async - async def run_test(self): + async def run_test(): """ Summary: Verify the functionality of Asset Picker and UI/UX properties @@ -45,7 +25,7 @@ class AssetPickerUIUXTest(EditorTestHelper): The asset picker is closed and the selected asset is assigned to the mesh component. Test Steps: - 1) Open a new level + 1) Open a simple level 2) Create entity and add Mesh component 3) Access Entity Inspector 4) Click Asset Picker (Mesh Asset) @@ -68,10 +48,20 @@ class AssetPickerUIUXTest(EditorTestHelper): :return: None """ - self.file_path = ["AutomatedTesting", "Assets", "Objects", "Foliage"] - self.incorrect_file_found = False - self.mesh_asset = "cedar.azmodel" - self.prefix = "" + import os + from PySide2 import QtWidgets, QtTest, QtCore + from PySide2.QtCore import Qt + + import azlmbr.asset as asset + import azlmbr.bus as bus + import azlmbr.legacy.general as general + import azlmbr.math as math + + import editor_python_test_tools.hydra_editor_utils as hydra + from editor_python_test_tools.utils import Report + from editor_python_test_tools.utils import TestHelper as helper + + file_path = ["AutomatedTesting", "Assets", "Objects", "Foliage"] def is_asset_assigned(component, interaction_option): path = os.path.join("assets", "objects", "foliage", "cedar.azmodel") @@ -80,7 +70,7 @@ class AssetPickerUIUXTest(EditorTestHelper): result = hydra.get_component_property_value(component, "Controller|Configuration|Mesh Asset") expected_asset_str = expected_asset_id.invoke("ToString") result_str = result.invoke("ToString") - print(f"Asset assigned for {interaction_option} option: {expected_asset_str == result_str}") + Report.info(f"Asset assigned for {interaction_option} option: {expected_asset_str == result_str}") return expected_asset_str == result_str def move_and_resize_widget(widget): @@ -89,9 +79,11 @@ class AssetPickerUIUXTest(EditorTestHelper): x, y = initial_position.x() + 5, initial_position.y() + 5 widget.move(x, y) curr_position = widget.pos() - move_success = curr_position.x() == x and curr_position.y() == y - self.test_success = move_success and self.test_success - self.log(f"Widget Move Test: {move_success}") + asset_picker_moved = ( + "Asset Picker widget moved successfully", + "Failed to move Asset Picker widget" + ) + Report.result(asset_picker_moved, curr_position.x() == x and curr_position.y() == y) # Resize the widget and verify size width, height = ( @@ -99,9 +91,36 @@ class AssetPickerUIUXTest(EditorTestHelper): widget.geometry().height() + 10, ) widget.resize(width, height) - resize_success = widget.geometry().width() == width and widget.geometry().height() == height - self.test_success = resize_success and self.test_success - self.log(f"Widget Resize Test: {resize_success}") + asset_picker_resized = ( + "Resized Asset Picker widget successfully", + "Failed to resize Asset Picker widget" + ) + Report.result(asset_picker_resized, widget.geometry().width() == width and widget.geometry().height() == + height) + + def verify_expand(model_index, tree): + initially_collapsed = ( + "Folder initially collapsed", + "Folder unexpectedly expanded" + ) + expanded = ( + "Folder expanded successfully", + "Failed to expand folder" + ) + # Check initial collapse + Report.result(initially_collapsed, not tree.isExpanded(model_index)) + # Expand at the specified index + tree.expand(model_index) + # Verify expansion + Report.result(expanded, tree.isExpanded(model_index)) + + def verify_collapse(model_index, tree): + collapsed = ( + "Folder hierarchy collapsed successfully", + "Failed to collapse folder hierarchy" + ) + tree.collapse(model_index) + Report.result(collapsed, not tree.isExpanded(model_index)) def verify_files_appeared(model, allowed_asset_extensions, parent_index=QtCore.QModelIndex()): indices = [parent_index] @@ -115,22 +134,20 @@ class AssetPickerUIUXTest(EditorTestHelper): and (cur_data.lower().split(".")[-1] not in allowed_asset_extensions) and not cur_data[-1] == ")" ): - print(f"Incorrect file found: {cur_data}") - self.incorrect_file_found = True - indices = list() - break + Report.info(f"Incorrect file found: {cur_data}") + return False indices.append(cur_index) - self.test_success = not self.incorrect_file_found and self.test_success + return True - def print_message_prefix(message): - print(f"{self.prefix}: {message}") - - async def asset_picker(prefix, allowed_asset_extensions, asset, interaction_option): + async def asset_picker(allowed_asset_extensions, asset, interaction_option): active_modal_widget = await pyside_utils.wait_for_modal_widget() - if active_modal_widget and self.prefix == "": - self.prefix = prefix + if active_modal_widget: dialog = active_modal_widget.findChildren(QtWidgets.QDialog, "AssetPickerDialogClass")[0] - print_message_prefix(f"Asset Picker title for Mesh: {dialog.windowTitle()}") + asset_picker_title = ( + "Asset Picker window is titled as expected", + "Asset Picker window has an unexpected title" + ) + Report.result(asset_picker_title, dialog.windowTitle() == "Pick ModelAsset") tree = dialog.findChildren(QtWidgets.QTreeView, "m_assetBrowserTreeViewWidget")[0] scroll_area = tree.findChild(QtWidgets.QWidget, "qt_scrollarea_vcontainer") scroll_bar = scroll_area.findChild(QtWidgets.QScrollBar) @@ -138,39 +155,42 @@ class AssetPickerUIUXTest(EditorTestHelper): # a) Collapse all the files initially and verify if scroll bar is not visible tree.collapseAll() await pyside_utils.wait_for_condition(lambda: not scroll_bar.isVisible(), 0.5) - print_message_prefix( - f"Scroll Bar is not visible before expanding the tree: {not scroll_bar.isVisible()}" + scroll_bar_hidden = ( + "Scroll Bar is not visible before tree expansion", + "Scroll Bar is visible before tree expansion" ) + Report.result(scroll_bar_hidden, not scroll_bar.isVisible()) # Get Model Index of the file paths - model_index_1 = pyside_utils.find_child_by_pattern(tree, self.file_path[0]) - print(model_index_1.model()) - model_index_2 = pyside_utils.find_child_by_pattern(model_index_1, self.file_path[1]) + model_index_1 = pyside_utils.find_child_by_pattern(tree, file_path[0]) + model_index_2 = pyside_utils.find_child_by_pattern(model_index_1, file_path[1]) # b) Expand/Verify Top folder of file path - print_message_prefix(f"Top level folder initially collapsed: {not tree.isExpanded(model_index_1)}") - tree.expand(model_index_1) - print_message_prefix(f"Top level folder expanded: {tree.isExpanded(model_index_1)}") + verify_expand(model_index_1, tree) # c) Expand/Verify Nested folder of file path - print_message_prefix(f"Nested folder initially collapsed: {not tree.isExpanded(model_index_2)}") - tree.expand(model_index_2) - print_message_prefix(f"Nested folder expanded: {tree.isExpanded(model_index_2)}") + verify_expand(model_index_2, tree) # d) Verify if the ScrollBar appears after expanding folders tree.expandAll() await pyside_utils.wait_for_condition(lambda: scroll_bar.isVisible(), 0.5) - print_message_prefix(f"Scroll Bar appeared after expanding tree: {scroll_bar.isVisible()}") + scroll_bar_visible = ( + "Scroll Bar is visible after tree expansion", + "Scroll Bar is not visible after tree expansion" + ) + Report.result(scroll_bar_visible, scroll_bar.isVisible()) # e) Collapse Nested and Top Level folders and verify if collapsed - tree.collapse(model_index_2) - print_message_prefix(f"Nested folder collapsed: {not tree.isExpanded(model_index_2)}") - tree.collapse(model_index_1) - print_message_prefix(f"Top level folder collapsed: {not tree.isExpanded(model_index_1)}") + verify_collapse(model_index_2, tree) + verify_collapse(model_index_1, tree) # f) Verify if the correct files are appearing in the Asset Picker - verify_files_appeared(tree.model(), allowed_asset_extensions) - print_message_prefix(f"Expected Assets populated in the file picker: {not self.incorrect_file_found}") + asset_picker_correct_files_appear = ( + "Expected assets populated in the file picker", + "Found unexpected assets in the file picker" + ) + Report.result(asset_picker_correct_files_appear, verify_files_appeared(tree.model(), + allowed_asset_extensions)) # While we are here we can also check if we can resize and move the widget move_and_resize_widget(active_modal_widget) @@ -193,16 +213,10 @@ class AssetPickerUIUXTest(EditorTestHelper): await pyside_utils.click_button_async(ok_button) elif interaction_option == "enter": QtTest.QTest.keyClick(tree, Qt.Key_Enter, Qt.NoModifier) - self.prefix = "" - # 1) Open a new level - self.test_success = self.create_level( - self.args["level"], - heightmap_resolution=1024, - heightmap_meters_per_pixel=1, - terrain_texture_resolution=4096, - use_terrain=False, - ) + # 1) Open an existing simple level + helper.init_idle() + helper.open_level("Physics", "Base") # 2) Create entity and add Mesh component entity_position = math.Vector3(125.0, 136.0, 32.0) @@ -222,7 +236,7 @@ class AssetPickerUIUXTest(EditorTestHelper): # Assign Mesh Asset via OK button pyside_utils.click_button_async(attached_button) - await asset_picker("Mesh Asset", ["azmodel", "fbx"], "cedar (ModelAsset)", "ok") + await asset_picker(["azmodel", "fbx"], "cedar (ModelAsset)", "ok") # 5) Verify if Mesh Asset is assigned try: @@ -231,7 +245,11 @@ class AssetPickerUIUXTest(EditorTestHelper): except pyside_utils.EventLoopTimeoutException as err: print(err) mesh_success = False - self.test_success = mesh_success and self.test_success + mesh_asset_assigned_ok = ( + "Successfully assigned Mesh asset via OK button", + "Failed to assign Mesh asset via OK button" + ) + Report.result(mesh_asset_assigned_ok, mesh_success) # Clear Mesh Asset hydra.get_set_test(entity, 0, "Controller|Configuration|Mesh Asset", None) @@ -242,7 +260,7 @@ class AssetPickerUIUXTest(EditorTestHelper): # Assign Mesh Asset via Enter pyside_utils.click_button_async(attached_button) - await asset_picker("Mesh Asset", ["azmodel", "fbx"], "cedar (ModelAsset)", "enter") + await asset_picker(["azmodel", "fbx"], "cedar (ModelAsset)", "enter") # 5) Verify if Mesh Asset is assigned try: @@ -251,8 +269,16 @@ class AssetPickerUIUXTest(EditorTestHelper): except pyside_utils.EventLoopTimeoutException as err: print(err) mesh_success = False - self.test_success = mesh_success and self.test_success + mesh_asset_assigned_enter = ( + "Successfully assigned Mesh asset via Enter button", + "Failed to assign Mesh asset via Enter button" + ) + Report.result(mesh_asset_assigned_enter, mesh_success) + + run_test() -test = AssetPickerUIUXTest() -test.run() +if __name__ == "__main__": + + from editor_python_test_tools.utils import Report + Report.start_test(AssetPicker_UI_UX) diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/BasicEditorWorkflows_LevelEntityComponentCRUD.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/BasicEditorWorkflows_LevelEntityComponentCRUD.py index 994fc661ed..9c5880ab1e 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/BasicEditorWorkflows_LevelEntityComponentCRUD.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/BasicEditorWorkflows_LevelEntityComponentCRUD.py @@ -5,36 +5,44 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ -""" -C6351273: Create a new level -C6384955: Basic Workflow: Entity Manipulation in the Outliner -C16929880: Add Delete Components -C15167490: Save a level -C15167491: Export a level -""" -import os -import sys -from PySide2 import QtWidgets - -import azlmbr.bus as bus -import azlmbr.editor as editor -import azlmbr.entity as entity -import azlmbr.math as math -import azlmbr.paths - -sys.path.append(os.path.join(azlmbr.paths.devroot, 'AutomatedTesting', 'Gem', 'PythonTests')) -from editor_python_test_tools.editor_test_helper import EditorTestHelper -import editor_python_test_tools.pyside_utils as pyside_utils -import editor_python_test_tools.hydra_editor_utils as hydra +class Tests: + level_created = ( + "New level created successfully", + "Failed to create new level" + ) + new_entity_created = ( + "New entity created successfully", + "Failed to create a new entity" + ) + child_entity_created = ( + "New child entity created successfully", + "Failed to create new child entity" + ) + component_added = ( + "Component added to entity successfully", + "Failed to add component to entity" + ) + component_updated = ( + "Component property updated successfully", + "Failed to update component property" + ) + component_removed = ( + "Component removed from entity successfully", + "Failed to remove component from entity" + ) + level_saved_and_exported = ( + "Level saved and exported successfully", + "Failed to save/export level" + ) -class TestBasicEditorWorkflows(EditorTestHelper): - def __init__(self): - EditorTestHelper.__init__(self, log_prefix="BasicEditorWorkflows_LevelEntityComponent", args=["level"]) +def BasicEditorWorkflows_LevelEntityComponentCRUD(): + + import editor_python_test_tools.pyside_utils as pyside_utils @pyside_utils.wrap_async - async def run_test(self): + async def run_test(): """ Summary: Open O3DE editor and check if basic Editor workflows are completable. @@ -55,6 +63,18 @@ class TestBasicEditorWorkflows(EditorTestHelper): :return: None """ + import os + from PySide2 import QtWidgets + + import azlmbr.bus as bus + import azlmbr.editor as editor + import azlmbr.entity as entity + import azlmbr.math as math + import azlmbr.paths + + import editor_python_test_tools.hydra_editor_utils as hydra + from editor_python_test_tools.utils import Report + def find_entity_by_name(entity_name): search_filter = entity.SearchFilter() search_filter.names = [entity_name] @@ -64,6 +84,7 @@ class TestBasicEditorWorkflows(EditorTestHelper): return None # 1) Create a new level + level = "tmp_level" editor_window = pyside_utils.get_editor_main_window() new_level_action = pyside_utils.get_action_for_menu_path(editor_window, "File", "New Level") pyside_utils.trigger_action_async(new_level_action) @@ -71,21 +92,17 @@ class TestBasicEditorWorkflows(EditorTestHelper): new_level_dlg = active_modal_widget.findChild(QtWidgets.QWidget, "CNewLevelDialog") if new_level_dlg: if new_level_dlg.windowTitle() == "New Level": - self.log("New Level dialog opened") + Report.info("New Level dialog opened") grp_box = new_level_dlg.findChild(QtWidgets.QGroupBox, "STATIC_GROUP1") level_name = grp_box.findChild(QtWidgets.QLineEdit, "LEVEL") - level_name.setText(self.args["level"]) + level_name.setText(level) button_box = new_level_dlg.findChild(QtWidgets.QDialogButtonBox, "buttonBox") button_box.button(QtWidgets.QDialogButtonBox.Ok).click() # Verify new level was created successfully level_create_success = await pyside_utils.wait_for_condition(lambda: editor.EditorToolsApplicationRequestBus( - bus.Broadcast, "GetCurrentLevelName") == self.args["level"], 5.0) - self.test_success = level_create_success - self.log(f"Create and load new level: {level_create_success}") - - # Execute EditorTestHelper setup since level was created outside of EditorTestHelper's methods - self.test_success = self.test_success and self.after_level_load() + bus.Broadcast, "GetCurrentLevelName") == level, 5.0) + Report.critical_result(Tests.level_created, level_create_success) # 2) Delete existing entities, and create and manipulate new entities via Entity Inspector search_filter = azlmbr.entity.SearchFilter() @@ -99,8 +116,7 @@ class TestBasicEditorWorkflows(EditorTestHelper): # Find the new entity parent_entity_id = find_entity_by_name("Entity1") parent_entity_success = await pyside_utils.wait_for_condition(lambda: parent_entity_id is not None, 5.0) - self.test_success = self.test_success and parent_entity_success - self.log(f"New entity creation: {parent_entity_success}") + Report.critical_result(Tests.new_entity_created, parent_entity_success) # TODO: Replace Hydra call to creates child entity and add components with context menu triggering - LYN-3951 # Create a new child entity @@ -111,29 +127,27 @@ class TestBasicEditorWorkflows(EditorTestHelper): # Verify entity hierarchy child_entity.get_parent_info() - self.test_success = self.test_success and child_entity.parent_id == parent_entity_id - self.log(f"Create entity hierarchy: {child_entity.parent_id == parent_entity_id}") + Report.result(Tests.child_entity_created, child_entity.parent_id == parent_entity_id) # 3) Add/configure a component on an entity # Add component and verify success child_entity.add_component("Box Shape") - component_add_success = self.wait_for_condition(lambda: hydra.has_components(child_entity.id, ["Box Shape"]), 5.0) - self.test_success = self.test_success and component_add_success - self.log(f"Add component: {component_add_success}") + component_add_success = await pyside_utils.wait_for_condition(lambda: hydra.has_components(child_entity.id, + ["Box Shape"]), 5.0) + Report.result(Tests.component_added, component_add_success) # Update the component dimensions_to_set = math.Vector3(16.0, 16.0, 16.0) child_entity.get_set_test(0, "Box Shape|Box Configuration|Dimensions", dimensions_to_set) - box_shape_dimensions = hydra.get_component_property_value(child_entity.components[0], "Box Shape|Box Configuration|Dimensions") - self.test_success = self.test_success and box_shape_dimensions == dimensions_to_set - self.log(f"Component update: {box_shape_dimensions == dimensions_to_set}") + box_shape_dimensions = hydra.get_component_property_value(child_entity.components[0], + "Box Shape|Box Configuration|Dimensions") + Report.result(Tests.component_updated, box_shape_dimensions == dimensions_to_set) # Remove the component child_entity.remove_component("Box Shape") - component_rem_success = self.wait_for_condition(lambda: not hydra.has_components(child_entity.id, ["Box Shape"]), - 5.0) - self.test_success = self.test_success and component_rem_success - self.log(f"Remove component: {component_rem_success}") + component_rem_success = await pyside_utils.wait_for_condition(lambda: not hydra.has_components(child_entity.id, + ["Box Shape"]), 5.0) + Report.result(Tests.component_removed, component_rem_success) # 4) Save the level save_level_action = pyside_utils.get_action_for_menu_path(editor_window, "File", "Save") @@ -143,12 +157,15 @@ class TestBasicEditorWorkflows(EditorTestHelper): export_action = pyside_utils.get_action_for_menu_path(editor_window, "Game", "Export to Engine") pyside_utils.trigger_action_async(export_action) level_pak_file = os.path.join( - "AutomatedTesting", "Levels", self.args["level"], "level.pak" + "AutomatedTesting", "Levels", level, "level.pak" ) - export_success = self.wait_for_condition(lambda: os.path.exists(level_pak_file), 5.0) - self.test_success = self.test_success and export_success - self.log(f"Save and Export: {export_success}") + export_success = await pyside_utils.wait_for_condition(lambda: os.path.exists(level_pak_file), 5.0) + Report.result(Tests.level_saved_and_exported, export_success) + + run_test() -test = TestBasicEditorWorkflows() -test.run() +if __name__ == "__main__": + + from editor_python_test_tools.utils import Report + Report.start_test(BasicEditorWorkflows_LevelEntityComponentCRUD) diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/ComponentCRUD_Add_Delete_Components.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/ComponentCRUD_Add_Delete_Components.py index 8f2264c9d1..779f1ef953 100755 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/ComponentCRUD_Add_Delete_Components.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/ComponentCRUD_Add_Delete_Components.py @@ -5,37 +5,39 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ -""" -C16929880: Add Delete Components -""" -import os -import sys -from PySide2 import QtWidgets, QtTest, QtCore -from PySide2.QtCore import Qt - -import azlmbr.legacy.general as general -import azlmbr.bus as bus -import azlmbr.editor as editor -import azlmbr.entity as entity -import azlmbr.math as math -import azlmbr.paths - -sys.path.append(os.path.join(azlmbr.paths.devroot, 'AutomatedTesting', 'Gem', 'PythonTests')) -import editor_python_test_tools.hydra_editor_utils as hydra -import editor_python_test_tools.pyside_utils as pyside_utils -from editor_python_test_tools.editor_test_helper import EditorTestHelper +class Tests: + entity_created = ( + "Entity created successfully", + "Failed to create entity" + ) + box_component_added = ( + "Box Shape component added to entity", + "Failed to add Box Shape component to entity" + ) + mesh_component_added = ( + "Mesh component added to entity", + "Failed to add Mesh component to entity" + ) + mesh_component_deleted = ( + "Mesh component removed from entity", + "Failed to remove Mesh component from entity" + ) + mesh_component_delete_undo = ( + "Mesh component removal was successfully undone", + "Failed to undo Mesh component removal" + ) -class AddDeleteComponentsTest(EditorTestHelper): - def __init__(self): - EditorTestHelper.__init__(self, log_prefix="ComponentCRUD_Add_Delete_Components", args=["level"]) +def ComponentCRUD_Add_Delete_Components(): + + import editor_python_test_tools.pyside_utils as pyside_utils @pyside_utils.wrap_async - async def run_test(self): + async def run_test(): """ Summary: - Add/Delete Components to an entity. + Add/Delete Components to/from an entity. Expected Behavior: 1) Components can be added to an entity. @@ -61,36 +63,43 @@ class AddDeleteComponentsTest(EditorTestHelper): :return: None """ + from PySide2 import QtWidgets, QtTest, QtCore + from PySide2.QtCore import Qt + + import azlmbr.legacy.general as general + import azlmbr.bus as bus + import azlmbr.editor as editor + import azlmbr.entity as entity + import azlmbr.math as math + + import editor_python_test_tools.hydra_editor_utils as hydra + from editor_python_test_tools.utils import Report + from editor_python_test_tools.utils import TestHelper as helper + async def add_component(component_name): pyside_utils.click_button_async(add_comp_btn) popup = await pyside_utils.wait_for_popup_widget() tree = popup.findChild(QtWidgets.QTreeView, "Tree") component_index = pyside_utils.find_child_by_pattern(tree, component_name) if component_index.isValid(): - print(f"{component_name} found") + Report.info(f"{component_name} found") tree.expand(component_index) tree.setCurrentIndex(component_index) QtTest.QTest.keyClick(tree, Qt.Key_Enter, Qt.NoModifier) - # 1) Open level - self.test_success = self.create_level( - self.args["level"], - heightmap_resolution=1024, - heightmap_meters_per_pixel=1, - terrain_texture_resolution=4096, - use_terrain=False, - ) + # 1) Open an existing simple level + helper.init_idle() + helper.open_level("Physics", "Base") # 2) Create entity entity_position = math.Vector3(125.0, 136.0, 32.0) entity_id = editor.ToolsApplicationRequestBus( bus.Broadcast, "CreateNewEntityAtPosition", entity_position, entity.EntityId() ) - if entity_id.IsValid(): - print("Entity Created") + Report.critical_result(Tests.entity_created, entity_id.IsValid()) # 3) Select the newly created entity - general.select_object("Entity2") + general.select_object("Entity1") # Give the Entity Inspector time to fully create its contents general.idle_wait(0.5) @@ -100,11 +109,11 @@ class AddDeleteComponentsTest(EditorTestHelper): entity_inspector = editor_window.findChild(QtWidgets.QDockWidget, "Entity Inspector") add_comp_btn = entity_inspector.findChild(QtWidgets.QPushButton, "m_addComponentButton") await add_component("Box Shape") - print(f"Box Shape Component added: {hydra.has_components(entity_id, ['Box Shape'])}") + Report.result(Tests.box_component_added, hydra.has_components(entity_id, ['Box Shape'])) # 5) Add/verify Mesh component await add_component("Mesh") - print(f"Mesh Component added: {hydra.has_components(entity_id, ['Mesh'])}") + Report.result(Tests.mesh_component_added, hydra.has_components(entity_id, ['Mesh'])) # 6) Delete Mesh Component general.idle_wait(0.5) @@ -116,15 +125,17 @@ class AddDeleteComponentsTest(EditorTestHelper): QtTest.QTest.mouseClick(mesh_frame, Qt.LeftButton, Qt.NoModifier) QtTest.QTest.keyClick(mesh_frame, Qt.Key_Delete, Qt.NoModifier) success = await pyside_utils.wait_for_condition(lambda: not hydra.has_components(entity_id, ['Mesh']), 5.0) - if success: - print(f"Mesh Component deleted: {not hydra.has_components(entity_id, ['Mesh'])}") + Report.result(Tests.mesh_component_deleted, success) # 7) Undo deletion of component QtTest.QTest.keyPress(entity_inspector, Qt.Key_Z, Qt.ControlModifier) success = await pyside_utils.wait_for_condition(lambda: hydra.has_components(entity_id, ['Mesh']), 5.0) - if success: - print(f"Mesh Component deletion undone: {hydra.has_components(entity_id, ['Mesh'])}") + Report.result(Tests.mesh_component_delete_undo, success) + + run_test() -test = AddDeleteComponentsTest() -test.run() +if __name__ == "__main__": + + from editor_python_test_tools.utils import Report + Report.start_test(ComponentCRUD_Add_Delete_Components) diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Docking_BasicDockedTools.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Docking_BasicDockedTools.py index cc8ab24bed..2a91e7a374 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Docking_BasicDockedTools.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Docking_BasicDockedTools.py @@ -7,27 +7,32 @@ SPDX-License-Identifier: Apache-2.0 OR MIT C6376081: Basic Function: Docked/Undocked Tools """ -import os -import sys -from PySide2 import QtWidgets, QtTest, QtCore -import azlmbr.legacy.general as general -import azlmbr.bus as bus -import azlmbr.editor as editor -import azlmbr.entity as entity -import azlmbr.paths - -sys.path.append(os.path.join(azlmbr.paths.devroot, 'AutomatedTesting', 'Gem', 'PythonTests')) -from editor_python_test_tools.editor_test_helper import EditorTestHelper -import editor_python_test_tools.pyside_utils as pyside_utils +class Tests: + all_tools_docked = ( + "The tools are all docked together in a tabbed widget", + "Failed to dock all tools together" + ) + docked_outliner_works = ( + "Entity Outliner works when docked, can select an Entity", + "Failed to select an Entity in the Outliner while docked" + ) + docked_inspector_works = ( + "Entity Inspector works when docked, Entity name changed", + "Failed to change Entity name in the Inspector while docked" + ) + docked_console_works = ( + "Console works when docked, sent a Console Command", + "Failed to send Console Command in the Console while docked" + ) -class TestDockingBasicDockedTools(EditorTestHelper): - def __init__(self): - EditorTestHelper.__init__(self, log_prefix="Docking_BasicDockedTools", args=["level"]) +def Docking_BasicDockedTools(): + + import editor_python_test_tools.pyside_utils as pyside_utils @pyside_utils.wrap_async - async def run_test(self): + async def run_test(): """ Summary: Test that tools still work as expected when docked together. @@ -50,14 +55,19 @@ class TestDockingBasicDockedTools(EditorTestHelper): :return: None """ - # Create a level since we are going to be dealing with an Entity. - self.create_level( - self.args["level"], - heightmap_resolution=1024, - heightmap_meters_per_pixel=1, - terrain_texture_resolution=4096, - use_terrain=False, - ) + from PySide2 import QtWidgets, QtTest, QtCore + + import azlmbr.legacy.general as general + import azlmbr.bus as bus + import azlmbr.editor as editor + import azlmbr.entity as entity + + from editor_python_test_tools.utils import Report + from editor_python_test_tools.utils import TestHelper as helper + + # Open an existing simple level + helper.init_idle() + helper.open_level("Physics", "Base") # Make sure the Entity Outliner, Entity Inspector and Console tools are open general.open_pane("Entity Outliner (PREVIEW)") @@ -101,12 +111,14 @@ class TestDockingBasicDockedTools(EditorTestHelper): entity_inspector_parent = entity_inspector.parentWidget() entity_outliner_parent = entity_outliner.parentWidget() console_parent = console.parentWidget() - print(f"Entity Inspector parent = {entity_inspector_parent}, Entity Outliner parent = {entity_outliner_parent}, Console parent = {console_parent}") - return isinstance(entity_inspector_parent, QtWidgets.QStackedWidget) and (entity_inspector_parent == entity_outliner_parent) and (entity_outliner_parent == console_parent) + Report.info(f"Entity Inspector parent = {entity_inspector_parent}, Entity Outliner parent = " + f"{entity_outliner_parent}, Console parent = {console_parent}") + return isinstance(entity_inspector_parent, QtWidgets.QStackedWidget) and \ + (entity_inspector_parent == entity_outliner_parent) and \ + (entity_outliner_parent == console_parent) success = await pyside_utils.wait_for(check_all_panes_tabbed, timeout=3.0) - if success: - print("The tools are all docked together in a tabbed widget") + Report.result(Tests.all_tools_docked, success) # 2.1,2) Select an Entity in the Entity Outliner. entity_inspector = editor_window.findChild(QtWidgets.QDockWidget, "Entity Inspector") @@ -116,8 +128,7 @@ class TestDockingBasicDockedTools(EditorTestHelper): test_entity_index = pyside_utils.find_child_by_pattern(object_tree, entity_original_name) object_tree.clearSelection() object_tree.setCurrentIndex(test_entity_index) - if object_tree.currentIndex(): - print("Entity Outliner works when docked, can select an Entity") + Report.result(Tests.docked_outliner_works, object_tree.currentIndex() == test_entity_index) # 2.3,4) Change the name of the selected Entity via the Entity Inspector. entity_inspector_name_field = entity_inspector.findChild(QtWidgets.QLineEdit, "m_entityNameEditor") @@ -125,14 +136,23 @@ class TestDockingBasicDockedTools(EditorTestHelper): entity_inspector_name_field.setText(expected_new_name) QtTest.QTest.keyClick(entity_inspector_name_field, QtCore.Qt.Key_Enter) entity_new_name = editor.EditorEntityInfoRequestBus(bus.Event, "GetName", entity_id) - if entity_new_name == expected_new_name: - print(f"Entity Inspector works when docked, Entity name changed to {entity_new_name}") + Report.result(Tests.docked_inspector_works, entity_new_name == expected_new_name) # 2.5,6) Send a console command. console_line_edit = console.findChild(QtWidgets.QLineEdit, "lineEdit") - console_line_edit.setText("Hello, world!") + console_line_edit.setText("t_Scale 2") + QtTest.QTest.keyClick(console_line_edit, QtCore.Qt.Key_Enter) + general.get_cvar("t_Scale") + Report.result(Tests.docked_console_works, general.get_cvar("t_Scale") == "2") + + # Reset the altered cvar + console_line_edit.setText("t_Scale 1") QtTest.QTest.keyClick(console_line_edit, QtCore.Qt.Key_Enter) + run_test() -test = TestDockingBasicDockedTools() -test.run() + +if __name__ == "__main__": + + from editor_python_test_tools.utils import Report + Report.start_test(Docking_BasicDockedTools) diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/InputBindings_Add_Remove_Input_Events.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/InputBindings_Add_Remove_Input_Events.py index 4693f20155..f4769dab4d 100755 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/InputBindings_Add_Remove_Input_Events.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/InputBindings_Add_Remove_Input_Events.py @@ -5,32 +5,36 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ -""" -C1506881: Adding/Removing Event Groups -""" -import os -import sys -from PySide2 import QtWidgets +class Tests: + asset_editor_opened = ( + "Successfully opened the Asset Editor", + "Failed to open the Asset Editor" + ) + event_groups_added = ( + "Successfully added event groups via +", + "Failed to add event groups" + ) + single_event_group_deleted = ( + "Successfully deleted an event group", + "Failed to delete event group" + ) + all_event_groups_deleted = ( + "Successfully deleted all event groups", + "Failed to delete all event groups" + ) + asset_editor_closed = ( + "Successfully closed the Asset Editor", + "Failed to close the Asset Editor" + ) -import azlmbr.legacy.general as general -import azlmbr.bus as bus -import azlmbr.editor as editor -import azlmbr.entity as entity -import azlmbr.math as math -import azlmbr.paths -sys.path.append(os.path.join(azlmbr.paths.devroot, 'AutomatedTesting', 'Gem', 'PythonTests')) -import editor_python_test_tools.hydra_editor_utils as hydra -import editor_python_test_tools.pyside_utils as pyside_utils -from editor_python_test_tools.editor_test_helper import EditorTestHelper +def InputBindings_Add_Remove_Input_Events(): -class AddRemoveInputEventsTest(EditorTestHelper): - def __init__(self): - EditorTestHelper.__init__(self, log_prefix="InputBindings_Add_Remove_Input_Events", args=["level"]) + import editor_python_test_tools.pyside_utils as pyside_utils @pyside_utils.wrap_async - async def run_test(self): + async def run_test(): """ Summary: Verify if we are able add/remove input events in inputbindings file. @@ -42,7 +46,7 @@ class AddRemoveInputEventsTest(EditorTestHelper): Test Steps: - 1) Open a new level + 1) Open an existing level 2) Open Asset Editor 3) Access Asset Editor 4) Create a new .inputbindings file and add event groups @@ -61,6 +65,13 @@ class AddRemoveInputEventsTest(EditorTestHelper): :return: None """ + from PySide2 import QtWidgets + + import azlmbr.legacy.general as general + + from editor_python_test_tools.utils import Report + from editor_python_test_tools.utils import TestHelper as helper + def open_asset_editor(): general.open_pane("Asset Editor") return general.is_pane_visible("Asset Editor") @@ -69,17 +80,12 @@ class AddRemoveInputEventsTest(EditorTestHelper): general.close_pane("Asset Editor") return not general.is_pane_visible("Asset Editor") - # 1) Open a new level - self.test_success = self.create_level( - self.args["level"], - heightmap_resolution=1024, - heightmap_meters_per_pixel=1, - terrain_texture_resolution=4096, - use_terrain=False, - ) + # 1) Open an existing simple level + helper.init_idle() + helper.open_level("Physics", "Base") # 2) Open Asset Editor - print(f"Asset Editor opened: {open_asset_editor()}") + Report.result(Tests.asset_editor_opened, open_asset_editor()) # 3) Access Asset Editor editor_window = pyside_utils.get_editor_main_window() @@ -103,8 +109,7 @@ class AddRemoveInputEventsTest(EditorTestHelper): # 5) Verify if there are 3 elements in the Input Event Groups label no_of_elements_label = input_event_groups.findChild(QtWidgets.QLabel, "DefaultLabel") success = await pyside_utils.wait_for_condition(lambda: "3 elements" in no_of_elements_label.text(), 2.0) - if success: - print("New Event Groups added when + is clicked") + Report.result(Tests.event_groups_added, success) # 6) Delete one event group event = asset_editor_widget.findChildren(QtWidgets.QFrame, "")[0] @@ -121,11 +126,11 @@ class AddRemoveInputEventsTest(EditorTestHelper): input_event_group = input_event_groups[1] no_of_elements_label = input_event_group.findChild(QtWidgets.QLabel, "DefaultLabel") return no_of_elements_label.text() + return "" - return ""; - success = await pyside_utils.wait_for_condition(lambda: "2 elements" in get_elements_label_text(asset_editor_widget), 2.0) - if success: - print("Event Group deleted when the Delete button is clicked on an Event Group") + success = await pyside_utils.wait_for_condition(lambda: "2 elements" in + get_elements_label_text(asset_editor_widget), 2.0) + Report.result(Tests.single_event_group_deleted, success) # 8) Click on Delete button to delete all the Event Groups # First QToolButton child of active input_event_groups is +, Second QToolButton is Delete @@ -141,13 +146,17 @@ class AddRemoveInputEventsTest(EditorTestHelper): yes_button.click() # 9) Verify if all the elements are deleted - success = await pyside_utils.wait_for_condition(lambda: "0 elements" in get_elements_label_text(asset_editor_widget), 2.0) - if success: - print("All event groups deleted on clicking the Delete button") + success = await pyside_utils.wait_for_condition(lambda: "0 elements" in + get_elements_label_text(asset_editor_widget), 2.0) + Report.result(Tests.all_event_groups_deleted, success) # 10) Close Asset Editor - print(f"Asset Editor closed: {close_asset_editor()}") + Report.result(Tests.asset_editor_closed, close_asset_editor()) + + run_test() -test = AddRemoveInputEventsTest() -test.run() +if __name__ == "__main__": + + from editor_python_test_tools.utils import Report + Report.start_test(InputBindings_Add_Remove_Input_Events) diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_EditMenuOptions.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_EditMenuOptions.py index 53a8da4116..c7088a54c5 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_EditMenuOptions.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_EditMenuOptions.py @@ -5,93 +5,78 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ -""" -C24064529: Base Edit Menu Options -""" -import os -import sys +def Menus_EditMenuOptions_Work(): + """ + Summary: + Interact with Edit Menu options and verify if all the options are working. -import azlmbr.paths + Expected Behavior: + The Edit menu functions normally. -sys.path.append(os.path.join(azlmbr.paths.devroot, 'AutomatedTesting', 'Gem', 'PythonTests')) -from editor_python_test_tools.editor_test_helper import EditorTestHelper -import editor_python_test_tools.pyside_utils as pyside_utils + Test Steps: + 1) Open an existing level + 2) Interact with Edit Menu options + Note: + - This test file must be called from the O3DE Editor command terminal + - Any passed and failed tests are written to the Editor.log file. + Parsing the file or running a log_monitor are required to observe the test results. -class TestEditMenuOptions(EditorTestHelper): - def __init__(self): - EditorTestHelper.__init__(self, log_prefix="Menus_EditMenuOptions", args=["level"]) + :return: None + """ - def run_test(self): - """ - Summary: - Interact with Edit Menu options and verify if all the options are working. + import editor_python_test_tools.pyside_utils as pyside_utils + from editor_python_test_tools.utils import Report + from editor_python_test_tools.utils import TestHelper as helper - Expected Behavior: - The Edit menu functions normally. + edit_menu_options = [ + ("Undo",), + ("Redo",), + ("Duplicate",), + ("Delete",), + ("Select All",), + ("Invert Selection",), + ("Toggle Pivot Location",), + ("Reset Entity Transform",), + ("Reset Manipulator",), + ("Reset Transform (Local)",), + ("Reset Transform (World)",), + ("Hide Selection",), + ("Show All",), + ("Modify", "Snap", "Snap angle"), + ("Modify", "Transform Mode", "Move"), + ("Modify", "Transform Mode", "Rotate"), + ("Modify", "Transform Mode", "Scale"), + ("Editor Settings", "Global Preferences"), + ("Editor Settings", "Editor Settings Manager"), + ("Editor Settings", "Keyboard Customization", "Customize Keyboard"), + ("Editor Settings", "Keyboard Customization", "Export Keyboard Settings"), + ("Editor Settings", "Keyboard Customization", "Import Keyboard Settings"), + ] - Test Steps: - 1) Create a temp level - 2) Interact with Edit Menu options + # 1) Open an existing simple level + helper.init_idle() + helper.open_level("Physics", "Base") - Note: - - This test file must be called from the O3DE Editor command terminal - - Any passed and failed tests are written to the Editor.log file. - Parsing the file or running a log_monitor are required to observe the test results. - - :return: None - """ - edit_menu_options = [ - ("Undo",), - ("Redo",), - ("Duplicate",), - ("Delete",), - ("Select All",), - ("Invert Selection",), - ("Toggle Pivot Location",), - ("Reset Entity Transform",), - ("Reset Manipulator",), - ("Reset Transform (Local)",), - ("Reset Transform (World)",), - ("Hide Selection",), - ("Show All",), - ("Modify", "Snap", "Snap angle"), - ("Modify", "Transform Mode", "Move"), - ("Modify", "Transform Mode", "Rotate"), - ("Modify", "Transform Mode", "Scale"), - ("Editor Settings", "Global Preferences"), - ("Editor Settings", "Editor Settings Manager"), - ("Editor Settings", "Keyboard Customization", "Customize Keyboard"), - ("Editor Settings", "Keyboard Customization", "Export Keyboard Settings"), - ("Editor Settings", "Keyboard Customization", "Import Keyboard Settings"), - ] - - # 1) Create and open the temp level - self.test_success = self.create_level( - self.args["level"], - heightmap_resolution=1024, - heightmap_meters_per_pixel=1, - terrain_texture_resolution=4096, - use_terrain=False, - ) - - def on_action_triggered(action_name): - print(f"{action_name} Action triggered") - - # 2) Interact with Edit Menu options + # 2) Interact with Edit Menu options + editor_window = pyside_utils.get_editor_main_window() + for option in edit_menu_options: try: - editor_window = pyside_utils.get_editor_main_window() - for option in edit_menu_options: - action = pyside_utils.get_action_for_menu_path(editor_window, "Edit", *option) - trig_func = lambda: on_action_triggered(action.iconText()) - action.triggered.connect(trig_func) - action.trigger() - action.triggered.disconnect(trig_func) + action = pyside_utils.get_action_for_menu_path(editor_window, "Edit", *option) + action.trigger() + action_triggered = True except Exception as e: - self.test_success = False + action_triggered = False print(e) + menu_action_triggered = ( + f"{action.iconText()} action triggered successfully", + f"Failed to trigger {action.iconText()} action" + ) + Report.result(menu_action_triggered, action_triggered) -test = TestEditMenuOptions() -test.run() +if __name__ == "__main__": + + from editor_python_test_tools.utils import Report + Report.start_test(Menus_EditMenuOptions_Work) diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_FileMenuOptions.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_FileMenuOptions.py index 77ee9ac61d..a3e7611b5e 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_FileMenuOptions.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_FileMenuOptions.py @@ -5,80 +5,69 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ -import os -import sys -import azlmbr.paths +def Menus_FileMenuOptions_Work(): + """ + Summary: + Interact with File Menu options and verify if all the options are working. -sys.path.append(os.path.join(azlmbr.paths.devroot, 'AutomatedTesting', 'Gem', 'PythonTests')) -from editor_python_test_tools.editor_test_helper import EditorTestHelper -import editor_python_test_tools.pyside_utils as pyside_utils + Expected Behavior: + The File menu functions normally. + Test Steps: + 1) Open level + 2) Interact with File Menu options -class TestFileMenuOptions(EditorTestHelper): - def __init__(self): - EditorTestHelper.__init__(self, log_prefix="file_menu_options: ", args=["level"]) + Note: + - This test file must be called from the O3DE Editor command terminal + - Any passed and failed tests are written to the Editor.log file. + Parsing the file or running a log_monitor are required to observe the test results. - def run_test(self): - """ - Summary: - Interact with File Menu options and verify if all the options are working. + :return: None + """ - Expected Behavior: - The File menu functions normally. + import editor_python_test_tools.pyside_utils as pyside_utils + from editor_python_test_tools.utils import Report + from editor_python_test_tools.utils import TestHelper as helper - Test Steps: - 1) Open level - 2) Interact with File Menu options + file_menu_options = [ + ("New Level",), + ("Open Level",), + ("Import",), + ("Save",), + ("Save As",), + ("Save Level Statistics",), + ("Edit Project Settings",), + ("Edit Platform Settings",), + ("New Project",), + ("Open Project",), + ("Show Log File",), + ("Resave All Slices",), + ("Exit",), + ] - Note: - - This test file must be called from the O3DE Editor command terminal - - Any passed and failed tests are written to the Editor.log file. - Parsing the file or running a log_monitor are required to observe the test results. + # 1) Open an existing simple level + helper.init_idle() + helper.open_level("Physics", "Base") - :return: None - """ - file_menu_options = [ - ("New Level",), - ("Open Level",), - ("Import",), - ("Save",), - ("Save As",), - ("Save Level Statistics",), - ("Edit Project Settings",), - ("Edit Platform Settings",), - ("New Project",), - ("Open Project",), - ("Show Log File",), - ("Resave All Slices",), - ("Exit",), - ] - - # 1) Open level - self.test_success = self.create_level( - self.args["level"], - heightmap_resolution=1024, - heightmap_meters_per_pixel=1, - terrain_texture_resolution=4096, - use_terrain=False, - ) - - def on_action_triggered(action_name): - print(f"{action_name} Action triggered") - - # 2) Interact with File Menu options + # 2) Interact with File Menu options + editor_window = pyside_utils.get_editor_main_window() + for option in file_menu_options: try: - editor_window = pyside_utils.get_editor_main_window() - for option in file_menu_options: - action = pyside_utils.get_action_for_menu_path(editor_window, "File", *option) - trig_func = lambda: on_action_triggered(action.iconText()) - action.triggered.connect(trig_func) - action.trigger() - action.triggered.disconnect(trig_func) + action = pyside_utils.get_action_for_menu_path(editor_window, "File", *option) + action.trigger() + action_triggered = True except Exception as e: - self.test_success = False + action_triggered = False print(e) + menu_action_triggered = ( + f"{action.iconText()} action triggered successfully", + f"Failed to trigger {action.iconText()} action" + ) + Report.result(menu_action_triggered, action_triggered) -test = TestFileMenuOptions() -test.run() +if __name__ == "__main__": + + from editor_python_test_tools.utils import Report + Report.start_test(Menus_FileMenuOptions_Work) diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_ViewMenuOptions.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_ViewMenuOptions.py index d2db4210ce..f1b9e5d4d8 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_ViewMenuOptions.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_ViewMenuOptions.py @@ -5,81 +5,66 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ -""" -C24064534: The View menu options function normally -""" -import os -import sys +def Menus_ViewMenuOptions_Work(): + """ + Summary: + Interact with View Menu options and verify if all the options are working. -import azlmbr.paths + Expected Behavior: + The View menu functions normally. -sys.path.append(os.path.join(azlmbr.paths.devroot, 'AutomatedTesting', 'Gem', 'PythonTests')) -from editor_python_test_tools.editor_test_helper import EditorTestHelper -import editor_python_test_tools.pyside_utils as pyside_utils + Test Steps: + 1) Open an existing level + 2) Interact with View Menu options + Note: + - This test file must be called from the O3DE Editor command terminal + - Any passed and failed tests are written to the Editor.log file. + Parsing the file or running a log_monitor are required to observe the test results. -class TestViewMenuOptions(EditorTestHelper): - def __init__(self): - EditorTestHelper.__init__(self, log_prefix="Menus_EditMenuOptions", args=["level"]) + :return: None + """ - def run_test(self): - """ - Summary: - Interact with View Menu options and verify if all the options are working. + import editor_python_test_tools.pyside_utils as pyside_utils + from editor_python_test_tools.utils import Report + from editor_python_test_tools.utils import TestHelper as helper - Expected Behavior: - The View menu functions normally. + view_menu_options = [ + ("Center on Selection",), + ("Show Quick Access Bar",), + ("Viewport", "Configure Layout"), + ("Viewport", "Go to Position"), + ("Viewport", "Center on Selection"), + ("Viewport", "Go to Location"), + ("Viewport", "Remember Location"), + ("Viewport", "Switch Camera"), + ("Viewport", "Show/Hide Helpers"), + ("Refresh Style",), + ] - Test Steps: - 1) Create a temp level - 2) Interact with View Menu options + # 1) Open an existing simple level + helper.init_idle() + helper.open_level("Physics", "Base") - Note: - - This test file must be called from the O3DE Editor command terminal - - Any passed and failed tests are written to the Editor.log file. - Parsing the file or running a log_monitor are required to observe the test results. - - :return: None - """ - view_menu_options = [ - ("Center on Selection",), - ("Show Quick Access Bar",), - ("Viewport", "Configure Layout"), - ("Viewport", "Go to Position"), - ("Viewport", "Center on Selection"), - ("Viewport", "Go to Location"), - ("Viewport", "Remember Location"), - ("Viewport", "Switch Camera"), - ("Viewport", "Show/Hide Helpers"), - ("Refresh Style",), - ] - - # 1) Create and open the temp level - self.test_success = self.create_level( - self.args["level"], - heightmap_resolution=1024, - heightmap_meters_per_pixel=1, - terrain_texture_resolution=4096, - use_terrain=False, - ) - - def on_action_triggered(action_name): - print(f"{action_name} Action triggered") - - # 2) Interact with View Menu options + # 2) Interact with View Menu options + editor_window = pyside_utils.get_editor_main_window() + for option in view_menu_options: try: - editor_window = pyside_utils.get_editor_main_window() - for option in view_menu_options: - action = pyside_utils.get_action_for_menu_path(editor_window, "View", *option) - trig_func = lambda: on_action_triggered(action.iconText()) - action.triggered.connect(trig_func) - action.trigger() - action.triggered.disconnect(trig_func) + action = pyside_utils.get_action_for_menu_path(editor_window, "View", *option) + action.trigger() + action_triggered = True except Exception as e: - self.test_success = False + action_triggered = False print(e) + menu_action_triggered = ( + f"{action.iconText()} action triggered successfully", + f"Failed to trigger {action.iconText()} action" + ) + Report.result(menu_action_triggered, action_triggered) -test = TestViewMenuOptions() -test.run() +if __name__ == "__main__": + + from editor_python_test_tools.utils import Report + Report.start_test(Menus_ViewMenuOptions_Work) diff --git a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main.py new file mode 100644 index 0000000000..26b254ae71 --- /dev/null +++ b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main.py @@ -0,0 +1,43 @@ +""" +Copyright (c) Contributors to the Open 3D Engine Project. +For complete copyright and license terms please see the LICENSE at the root of this distribution. + +SPDX-License-Identifier: Apache-2.0 OR MIT +""" + +import os +import pytest +import sys + +import ly_test_tools.environment.file_system as file_system + +sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../automatedtesting_shared') +from base import TestAutomationBase + + +@pytest.fixture +def remove_test_level(request, workspace, project): + file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", "tmp_level")], True, True) + + def teardown(): + file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", "tmp_level")], True, True) + + request.addfinalizer(teardown) + + +@pytest.mark.SUITE_main +@pytest.mark.parametrize("launcher_platform", ['windows_editor']) +@pytest.mark.parametrize("project", ["AutomatedTesting"]) +class TestAutomation(TestAutomationBase): + + def test_BasicEditorWorkflows_LevelEntityComponentCRUD(self, request, workspace, editor, launcher_platform, + remove_test_level): + from .EditorScripts import BasicEditorWorkflows_LevelEntityComponentCRUD as test_module + self._run_test(request, workspace, editor, test_module, batch_mode=False, autotest_mode=False) + + @pytest.mark.REQUIRES_gpu + def test_BasicEditorWorkflows_GPU_LevelEntityComponentCRUD(self, request, workspace, editor, launcher_platform, + remove_test_level): + from .EditorScripts import BasicEditorWorkflows_LevelEntityComponentCRUD as test_module + self._run_test(request, workspace, editor, test_module, batch_mode=False, autotest_mode=False, + use_null_renderer=False) diff --git a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main_Optimized.py b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main_Optimized.py new file mode 100644 index 0000000000..9c0b99daff --- /dev/null +++ b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main_Optimized.py @@ -0,0 +1,75 @@ +""" +Copyright (c) Contributors to the Open 3D Engine Project. +For complete copyright and license terms please see the LICENSE at the root of this distribution. + +SPDX-License-Identifier: Apache-2.0 OR MIT +""" + +import os +import pytest + +import ly_test_tools.environment.file_system as file_system +from ly_test_tools.o3de.editor_test import EditorSingleTest, EditorSharedTest, EditorParallelTest, EditorTestSuite + + +@pytest.mark.xfail(reason="Optimized tests are experimental, we will enable xfail and monitor them temporarily.") +@pytest.mark.SUITE_main +@pytest.mark.parametrize("launcher_platform", ['windows_editor']) +@pytest.mark.parametrize("project", ["AutomatedTesting"]) +class TestAutomationNoAutoTestMode(EditorTestSuite): + + # Disable -autotest_mode and -BatchMode. Tests cannot run in -BatchMode due to UI interactions, and these tests + # interact with modal dialogs + global_extra_cmdline_args = [] + + class test_BasicEditorWorkflows_LevelEntityComponentCRUD(EditorSingleTest): + # Custom teardown to remove slice asset created during test + def teardown(self, request, workspace, editor, editor_test_results, launcher_platform): + file_system.delete([os.path.join(workspace.paths.engine_root(), "AutomatedTesting", "Levels", "tmp_level")], + True, True) + from .EditorScripts import BasicEditorWorkflows_LevelEntityComponentCRUD as test_module + + @pytest.mark.REQUIRES_gpu + class test_BasicEditorWorkflows_GPU_LevelEntityComponentCRUD(EditorSingleTest): + # Disable null renderer + use_null_renderer = False + + # Custom teardown to remove slice asset created during test + def teardown(self, request, workspace, editor, editor_test_results, launcher_platform): + file_system.delete([os.path.join(workspace.paths.engine_root(), "AutomatedTesting", "Levels", "tmp_level")], + True, True) + from .EditorScripts import BasicEditorWorkflows_LevelEntityComponentCRUD as test_module + + class test_InputBindings_Add_Remove_Input_Events(EditorSharedTest): + from .EditorScripts import InputBindings_Add_Remove_Input_Events as test_module + + @pytest.mark.skip(reason="Crashes Editor: ATOM-15493") + class test_AssetPicker_UI_UX(EditorSharedTest): + from .EditorScripts import AssetPicker_UI_UX as test_module + + +@pytest.mark.xfail(reason="Optimized tests are experimental, we will enable xfail and monitor them temporarily.") +@pytest.mark.SUITE_main +@pytest.mark.parametrize("launcher_platform", ['windows_editor']) +@pytest.mark.parametrize("project", ["AutomatedTesting"]) +class TestAutomationAutoTestMode(EditorTestSuite): + + # Enable only -autotest_mode for these tests. Tests cannot run in -BatchMode due to UI interactions + global_extra_cmdline_args = ["-autotest_mode"] + + class test_AssetBrowser_TreeNavigation(EditorSharedTest): + from .EditorScripts import AssetBrowser_TreeNavigation as test_module + + @pytest.mark.skip(reason="Crashes Editor: ATOM-15493") + class test_AssetBrowser_SearchFiltering(EditorSharedTest): + from .EditorScripts import AssetBrowser_SearchFiltering as test_module + + class test_ComponentCRUD_Add_Delete_Components(EditorSharedTest): + from .EditorScripts import ComponentCRUD_Add_Delete_Components as test_module + + class test_Menus_ViewMenuOptions_Work(EditorSharedTest): + from .EditorScripts import Menus_ViewMenuOptions as test_module + + @pytest.mark.skip(reason="Times out due to dialogs failing to dismiss: LYN-4208") + class test_Menus_FileMenuOptions_Work(EditorSharedTest): + from .EditorScripts import Menus_FileMenuOptions as test_module diff --git a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Periodic.py b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Periodic.py new file mode 100644 index 0000000000..398b64bc87 --- /dev/null +++ b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Periodic.py @@ -0,0 +1,62 @@ +""" +Copyright (c) Contributors to the Open 3D Engine Project. +For complete copyright and license terms please see the LICENSE at the root of this distribution. + +SPDX-License-Identifier: Apache-2.0 OR MIT +""" + +import os +import pytest +import sys + +import ly_test_tools.environment.file_system as file_system + +sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../automatedtesting_shared') +from base import TestAutomationBase + + +@pytest.fixture +def remove_test_level(request, workspace, project): + file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", "tmp_level")], True, True) + + def teardown(): + file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", "tmp_level")], True, True) + + request.addfinalizer(teardown) + + +@pytest.mark.SUITE_periodic +@pytest.mark.parametrize("launcher_platform", ['windows_editor']) +@pytest.mark.parametrize("project", ["AutomatedTesting"]) +class TestAutomation(TestAutomationBase): + + def test_AssetBrowser_TreeNavigation(self, request, workspace, editor, launcher_platform): + from .EditorScripts import AssetBrowser_TreeNavigation as test_module + self._run_test(request, workspace, editor, test_module, batch_mode=False) + + @pytest.mark.skip(reason="Crashes Editor: ATOM-15493") + def test_AssetBrowser_SearchFiltering(self, request, workspace, editor, launcher_platform): + from .EditorScripts import AssetBrowser_SearchFiltering as test_module + self._run_test(request, workspace, editor, test_module, batch_mode=False) + + @pytest.mark.skip(reason="Crashes Editor: ATOM-15493") + def test_AssetPicker_UI_UX(self, request, workspace, editor, launcher_platform): + from .EditorScripts import AssetPicker_UI_UX as test_module + self._run_test(request, workspace, editor, test_module, autotest_mode=False, batch_mode=False) + + def test_ComponentCRUD_Add_Delete_Components(self, request, workspace, editor, launcher_platform): + from .EditorScripts import ComponentCRUD_Add_Delete_Components as test_module + self._run_test(request, workspace, editor, test_module, batch_mode=False) + + def test_InputBindings_Add_Remove_Input_Events(self, request, workspace, editor, launcher_platform): + from .EditorScripts import InputBindings_Add_Remove_Input_Events as test_module + self._run_test(request, workspace, editor, test_module, batch_mode=False, autotest_mode=False) + + def test_Menus_ViewMenuOptions_Work(self, request, workspace, editor, launcher_platform): + from .EditorScripts import Menus_ViewMenuOptions as test_module + self._run_test(request, workspace, editor, test_module, batch_mode=False) + + @pytest.mark.skip(reason="Times out due to dialogs failing to dismiss: LYN-4208") + def test_Menus_FileMenuOptions_Work(self, request, workspace, editor, launcher_platform): + from .EditorScripts import Menus_FileMenuOptions as test_module + self._run_test(request, workspace, editor, test_module, batch_mode=False) diff --git a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox.py b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox.py new file mode 100644 index 0000000000..98a6620d9c --- /dev/null +++ b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox.py @@ -0,0 +1,27 @@ +""" +Copyright (c) Contributors to the Open 3D Engine Project. +For complete copyright and license terms please see the LICENSE at the root of this distribution. + +SPDX-License-Identifier: Apache-2.0 OR MIT +""" + +import os +import pytest +import sys + +sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../automatedtesting_shared') +from base import TestAutomationBase + + +@pytest.mark.SUITE_sandbox +@pytest.mark.parametrize("launcher_platform", ['windows_editor']) +@pytest.mark.parametrize("project", ["AutomatedTesting"]) +class TestAutomation(TestAutomationBase): + + def test_Menus_EditMenuOptions_Work(self, request, workspace, editor, launcher_platform): + from .EditorScripts import Menus_EditMenuOptions as test_module + self._run_test(request, workspace, editor, test_module, batch_mode=False) + + def test_Docking_BasicDockedTools(self, request, workspace, editor, launcher_platform): + from .EditorScripts import Docking_BasicDockedTools as test_module + self._run_test(request, workspace, editor, test_module, batch_mode=False) diff --git a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox_Optimized.py b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox_Optimized.py new file mode 100644 index 0000000000..d49e9e1c9b --- /dev/null +++ b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox_Optimized.py @@ -0,0 +1,27 @@ +""" +Copyright (c) Contributors to the Open 3D Engine Project. +For complete copyright and license terms please see the LICENSE at the root of this distribution. + +SPDX-License-Identifier: Apache-2.0 OR MIT +""" + +import os +import pytest + +from ly_test_tools.o3de.editor_test import EditorSingleTest, EditorSharedTest, EditorParallelTest, EditorTestSuite + + +@pytest.mark.xfail(reason="Optimized tests are experimental, we will enable xfail and monitor them temporarily.") +@pytest.mark.SUITE_sandbox +@pytest.mark.parametrize("launcher_platform", ['windows_editor']) +@pytest.mark.parametrize("project", ["AutomatedTesting"]) +class TestAutomationAutoTestMode(EditorTestSuite): + + # Enable only -autotest_mode for these tests. Tests cannot run in -BatchMode due to UI interactions + global_extra_cmdline_args = ["-autotest_mode"] + + class test_Docking_BasicDockedTools(EditorSharedTest): + from .EditorScripts import Docking_BasicDockedTools as test_module + + class test_Menus_EditMenuOptions_Work(EditorSharedTest): + from .EditorScripts import Menus_EditMenuOptions as test_module diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_AssetBrowser.py b/AutomatedTesting/Gem/PythonTests/editor/test_AssetBrowser.py deleted file mode 100644 index 6067ffd1c0..0000000000 --- a/AutomatedTesting/Gem/PythonTests/editor/test_AssetBrowser.py +++ /dev/null @@ -1,89 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -""" -C13660195: Asset Browser - File Tree Navigation -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), "EditorScripts") -log_monitor_timeout = 180 - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestAssetBrowser(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id("C13660195") - @pytest.mark.SUITE_periodic - def test_AssetBrowser_TreeNavigation(self, request, editor, level, launcher_platform): - expected_lines = [ - "Collapse/Expand tests: True", - "Asset visibility test: True", - "Scrollbar visibility test: True", - "AssetBrowser_TreeNavigation: result=SUCCESS" - - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "AssetBrowser_TreeNavigation.py", - expected_lines, - run_python="--runpython", - cfg_args=[level], - timeout=log_monitor_timeout - ) - - @pytest.mark.test_case_id("C13660194") - @pytest.mark.SUITE_periodic - def test_AssetBrowser_SearchFiltering(self, request, editor, level, launcher_platform): - expected_lines = [ - "cedar.fbx asset is filtered in Asset Browser", - "Animation file type(s) is present in the file tree: True", - "FileTag file type(s) and Animation file type(s) is present in the file tree: True", - "FileTag file type(s) is present in the file tree after removing Animation filter: True", - ] - - unexpected_lines = [ - "Asset Browser opened: False", - "Animation file type(s) is present in the file tree: False", - "FileTag file type(s) and Animation file type(s) is present in the file tree: False", - "FileTag file type(s) is present in the file tree after removing Animation filter: False", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "AssetBrowser_SearchFiltering.py", - expected_lines, - unexpected_lines=unexpected_lines, - cfg_args=[level], - auto_test_mode=False, - run_python="--runpython", - timeout=log_monitor_timeout, - ) diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_AssetPicker.py b/AutomatedTesting/Gem/PythonTests/editor/test_AssetPicker.py deleted file mode 100644 index 9fc5582e0b..0000000000 --- a/AutomatedTesting/Gem/PythonTests/editor/test_AssetPicker.py +++ /dev/null @@ -1,74 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -""" -C13751579: Asset Picker UI/UX -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), "EditorScripts") -log_monitor_timeout = 90 - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestAssetPicker(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id("C13751579", "C1508814") - @pytest.mark.SUITE_periodic - @pytest.mark.xfail # ATOM-15493 - def test_AssetPicker_UI_UX(self, request, editor, level, launcher_platform): - expected_lines = [ - "TestEntity Entity successfully created", - "Mesh component was added to entity", - "Entity has a Mesh component", - "Mesh Asset: Asset Picker title for Mesh: Pick ModelAsset", - "Mesh Asset: Scroll Bar is not visible before expanding the tree: True", - "Mesh Asset: Top level folder initially collapsed: True", - "Mesh Asset: Top level folder expanded: True", - "Mesh Asset: Nested folder initially collapsed: True", - "Mesh Asset: Nested folder expanded: True", - "Mesh Asset: Scroll Bar appeared after expanding tree: True", - "Mesh Asset: Nested folder collapsed: True", - "Mesh Asset: Top level folder collapsed: True", - "Mesh Asset: Expected Assets populated in the file picker: True", - "Widget Move Test: True", - "Widget Resize Test: True", - "Asset assigned for ok option: True", - "Asset assigned for enter option: True", - "AssetPicker_UI_UX: result=SUCCESS" - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "AssetPicker_UI_UX.py", - expected_lines, - cfg_args=[level], - run_python="--runpython", - auto_test_mode=False, - timeout=log_monitor_timeout, - ) diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_BasicEditorWorkflows.py b/AutomatedTesting/Gem/PythonTests/editor/test_BasicEditorWorkflows.py deleted file mode 100644 index 49860c8387..0000000000 --- a/AutomatedTesting/Gem/PythonTests/editor/test_BasicEditorWorkflows.py +++ /dev/null @@ -1,96 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import ly_test_tools._internal.pytest_plugin as internal_plugin -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), "EditorScripts") -log_monitor_timeout = 180 - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestBasicEditorWorkflows(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id("C6351273", "C6384955", "C16929880", "C15167490", "C15167491") - @pytest.mark.SUITE_main - def test_BasicEditorWorkflows_LevelEntityComponentCRUD(self, request, editor, level, launcher_platform): - - # Skip test if running against Debug build - if "debug" in internal_plugin.build_directory: - pytest.skip("Does not execute against debug builds.") - - expected_lines = [ - "Create and load new level: True", - "New entity creation: True", - "Create entity hierarchy: True", - "Add component: True", - "Component update: True", - "Remove component: True", - "Save and Export: True", - "BasicEditorWorkflows_LevelEntityComponent: result=SUCCESS", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "BasicEditorWorkflows_LevelEntityComponentCRUD.py", - expected_lines, - cfg_args=[level], - timeout=log_monitor_timeout, - auto_test_mode=False - ) - - @pytest.mark.test_case_id("C6351273", "C6384955", "C16929880", "C15167490", "C15167491") - @pytest.mark.SUITE_main - @pytest.mark.REQUIRES_gpu - def test_BasicEditorWorkflows_GPU_LevelEntityComponentCRUD(self, request, editor, level, launcher_platform): - - # Skip test if running against Debug build - if "debug" in internal_plugin.build_directory: - pytest.skip("Does not execute against debug builds.") - - expected_lines = [ - "Create and load new level: True", - "New entity creation: True", - "Create entity hierarchy: True", - "Add component: True", - "Component update: True", - "Remove component: True", - "Save and Export: True", - "BasicEditorWorkflows_LevelEntityComponent: result=SUCCESS", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "BasicEditorWorkflows_LevelEntityComponentCRUD.py", - expected_lines, - cfg_args=[level], - timeout=log_monitor_timeout, - auto_test_mode=False, - null_renderer=False - ) diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_ComponentCRUD.py b/AutomatedTesting/Gem/PythonTests/editor/test_ComponentCRUD.py deleted file mode 100755 index de09cf9ab7..0000000000 --- a/AutomatedTesting/Gem/PythonTests/editor/test_ComponentCRUD.py +++ /dev/null @@ -1,62 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -""" -C16929880: Add Delete Components -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), "EditorScripts") -log_monitor_timeout = 180 - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestComponentCRUD(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id("C16929880", "C16877220") - @pytest.mark.SUITE_periodic - @pytest.mark.BAT - def test_ComponentCRUD_Add_Delete_Components(self, request, editor, level, launcher_platform): - expected_lines = [ - "Entity Created", - "Box Shape found", - "Box Shape Component added: True", - "Mesh found", - "Mesh Component added: True", - "Mesh Component deleted: True", - "Mesh Component deletion undone: True", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "ComponentCRUD_Add_Delete_Components.py", - expected_lines, - cfg_args=[level], - auto_test_mode=False, - timeout=log_monitor_timeout - ) diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_Docking.py b/AutomatedTesting/Gem/PythonTests/editor/test_Docking.py deleted file mode 100644 index 7d97f31710..0000000000 --- a/AutomatedTesting/Gem/PythonTests/editor/test_Docking.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT - -C6376081: Basic Function: Docked/Undocked Tools -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), "EditorScripts") -log_monitor_timeout = 180 - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestDocking(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id("C6376081") - @pytest.mark.SUITE_sandbox - def test_Docking_BasicDockedTools(self, request, editor, level, launcher_platform): - expected_lines = [ - "The tools are all docked together in a tabbed widget", - "Entity Outliner works when docked, can select an Entity", - "Entity Inspector works when docked, Entity name changed to DifferentName", - "Hello, world!" # This line verifies the Console is working while docked - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "Docking_BasicDockedTools.py", - expected_lines, - cfg_args=[level], - timeout=log_monitor_timeout, - ) diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_InputBindings.py b/AutomatedTesting/Gem/PythonTests/editor/test_InputBindings.py deleted file mode 100755 index 214fac2af4..0000000000 --- a/AutomatedTesting/Gem/PythonTests/editor/test_InputBindings.py +++ /dev/null @@ -1,66 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -""" -C1506881: Adding/Removing Event Groups -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), "EditorScripts") -log_monitor_timeout = 180 - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestInputBindings(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id("C1506881") - @pytest.mark.SUITE_periodic - def test_InputBindings_Add_Remove_Input_Events(self, request, editor, level, launcher_platform): - expected_lines = [ - "Asset Editor opened: True", - "New Event Groups added when + is clicked", - "Event Group deleted when the Delete button is clicked on an Event Group", - "All event groups deleted on clicking the Delete button", - "Asset Editor closed: True", - ] - - unexpected_lines = [ - "Asset Editor opened: False", - "Asset Editor closed: False", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "InputBindings_Add_Remove_Input_Events.py", - expected_lines, - unexpected_lines=unexpected_lines, - cfg_args=[level], - run_python="--runpython", - auto_test_mode=False, - timeout=log_monitor_timeout, - ) diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_Menus.py b/AutomatedTesting/Gem/PythonTests/editor/test_Menus.py deleted file mode 100644 index d35fd021ee..0000000000 --- a/AutomatedTesting/Gem/PythonTests/editor/test_Menus.py +++ /dev/null @@ -1,132 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import ly_test_tools.environment.process_utils as process_utils -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), "EditorScripts") -log_monitor_timeout = 180 - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestMenus(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - process_utils.kill_processes_named("o3de", ignore_extensions=True) # Kill ProjectManager windows - - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id("C16780783", "C2174438") - @pytest.mark.SUITE_sandbox - def test_Menus_EditMenuOptions_Work(self, request, editor, level, launcher_platform): - expected_lines = [ - "Undo Action triggered", - "Redo Action triggered", - "Duplicate Action triggered", - "Delete Action triggered", - "Select All Action triggered", - "Invert Selection Action triggered", - "Toggle Pivot Location Action triggered", - "Reset Entity Transform", - "Reset Manipulator", - "Reset Transform (Local) Action triggered", - "Reset Transform (World) Action triggered", - "Hide Selection Action triggered", - "Show All Action triggered", - "Snap angle Action triggered", - "Move Action triggered", - "Rotate Action triggered", - "Scale Action triggered", - "Global Preferences Action triggered", - "Editor Settings Manager Action triggered", - "Customize Keyboard Action triggered", - "Export Keyboard Settings Action triggered", - "Import Keyboard Settings Action triggered", - "Menus_EditMenuOptions: result=SUCCESS" - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "Menus_EditMenuOptions.py", - expected_lines, - cfg_args=[level], - run_python="--runpython", - timeout=log_monitor_timeout - ) - - @pytest.mark.test_case_id("C16780807") - @pytest.mark.SUITE_periodic - def test_Menus_ViewMenuOptions_Work(self, request, editor, level, launcher_platform): - expected_lines = [ - "Center on Selection Action triggered", - "Show Quick Access Bar Action triggered", - "Configure Layout Action triggered", - "Go to Position Action triggered", - "Center on Selection Action triggered", - "Go to Location Action triggered", - "Remember Location Action triggered", - "Switch Camera Action triggered", - "Show/Hide Helpers Action triggered", - "Refresh Style Action triggered", - ] - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "Menus_ViewMenuOptions.py", - expected_lines, - cfg_args=[level], - run_python="--runpython", - timeout=log_monitor_timeout - ) - - @pytest.mark.test_case_id("C16780778") - @pytest.mark.SUITE_sandbox - @pytest.mark.xfail # LYN-4208 - def test_Menus_FileMenuOptions_Work(self, request, editor, level, launcher_platform): - expected_lines = [ - "New Level Action triggered", - "Open Level Action triggered", - "Import Action triggered", - "Save Action triggered", - "Save As Action triggered", - "Save Level Statistics Action triggered", - "Edit Project Settings Action triggered", - "Edit Platform Settings Action triggered", - "New Project Action triggered", - "Open Project Action triggered", - "Show Log File Action triggered", - "Resave All Slices Action triggered", - "Exit Action triggered", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "Menus_FileMenuOptions.py", - expected_lines, - cfg_args=[level], - run_python="--runpython", - timeout=log_monitor_timeout - ) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/largeworlds/CMakeLists.txt index f133780fbc..b3030e84ac 100644 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/CMakeLists.txt @@ -124,13 +124,14 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS AND PAL_TRAIT_ COMPONENT LargeWorlds ) + ## LandscapeCanvas ## ly_add_pytest( NAME AutomatedTesting::LandscapeCanvasTests_Main TEST_SERIAL TEST_SUITE main - PATH ${CMAKE_CURRENT_LIST_DIR}/landscape_canvas/test_LandscapeCanvas_Main.py + PATH ${CMAKE_CURRENT_LIST_DIR}/landscape_canvas/TestSuite_Main.py RUNTIME_DEPENDENCIES AZ::AssetProcessor Legacy::Editor @@ -143,7 +144,20 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS AND PAL_TRAIT_ NAME AutomatedTesting::LandscapeCanvasTests_Periodic TEST_SERIAL TEST_SUITE periodic - PATH ${CMAKE_CURRENT_LIST_DIR}/landscape_canvas/test_LandscapeCanvas_Periodic.py + PATH ${CMAKE_CURRENT_LIST_DIR}/landscape_canvas/TestSuite_Periodic.py + RUNTIME_DEPENDENCIES + AZ::AssetProcessor + Legacy::Editor + AutomatedTesting.Assets + COMPONENT + LargeWorlds + ) + + ly_add_pytest( + NAME AutomatedTesting::LandscapeCanvasTests_Main_Optimized + TEST_SERIAL + TEST_SUITE main + PATH ${CMAKE_CURRENT_LIST_DIR}/landscape_canvas/TestSuite_Main_Optimized.py RUNTIME_DEPENDENCIES AZ::AssetProcessor Legacy::Editor @@ -153,11 +167,25 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS AND PAL_TRAIT_ ) ## GradientSignal ## + ly_add_pytest( NAME AutomatedTesting::GradientSignalTests_Periodic TEST_SERIAL TEST_SUITE periodic - PATH ${CMAKE_CURRENT_LIST_DIR}/gradient_signal/test_GradientSignal_Periodic.py + PATH ${CMAKE_CURRENT_LIST_DIR}/gradient_signal/TestSuite_Periodic.py + RUNTIME_DEPENDENCIES + AZ::AssetProcessor + Legacy::Editor + AutomatedTesting.Assets + COMPONENT + LargeWorlds + ) + + ly_add_pytest( + NAME AutomatedTesting::GradientSignalTests_Periodic_Optimized + TEST_SERIAL + TEST_SUITE periodic + PATH ${CMAKE_CURRENT_LIST_DIR}/gradient_signal/TestSuite_Periodic_Optimized.py RUNTIME_DEPENDENCIES AZ::AssetProcessor Legacy::Editor diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSignal_Periodic.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/TestSuite_Periodic.py similarity index 100% rename from AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSignal_Periodic.py rename to AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/TestSuite_Periodic.py diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSignal_Periodic_Optimized.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/TestSuite_Periodic_Optimized.py similarity index 100% rename from AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSignal_Periodic_Optimized.py rename to AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/TestSuite_Periodic_Optimized.py diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientIncompatibilities.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientIncompatibilities.py deleted file mode 100755 index ec9fb7cb0b..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientIncompatibilities.py +++ /dev/null @@ -1,103 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - - -""" -Tests that the Gradient Generator components are incompatible with Vegetation Area components -""" - -import os -import pytest -pytest.importorskip('ly_test_tools') - -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), 'EditorScripts') - -gradient_generators = [ - 'Altitude Gradient', - 'Constant Gradient', - 'FastNoise Gradient', - 'Image Gradient', - 'Perlin Noise Gradient', - 'Random Noise Gradient', - 'Shape Falloff Gradient', - 'Slope Gradient', - 'Surface Mask Gradient' -] - -gradient_modifiers = [ - 'Dither Gradient Modifier', - 'Gradient Mixer', - 'Invert Gradient Modifier', - 'Levels Gradient Modifier', - 'Posterize Gradient Modifier', - 'Smooth-Step Gradient Modifier', - 'Threshold Gradient Modifier' -] - -vegetation_areas = [ - 'Vegetation Layer Spawner', - 'Vegetation Layer Blender', - 'Vegetation Layer Blocker', - 'Vegetation Layer Blocker (Mesh)' -] - -all_gradients = gradient_modifiers + gradient_generators - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestGradientIncompatibilities(object): - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - request.addfinalizer(teardown) - - @pytest.mark.test_case_id('C2691648', 'C2691649', 'C2691650', 'C2691651', - 'C2691653', 'C2691656', 'C2691657', 'C2691658', - 'C2691647', 'C2691655') - @pytest.mark.SUITE_periodic - def test_GradientGenerators_Incompatibilities(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [] - for gradient_generator in gradient_generators: - for vegetation_area in vegetation_areas: - expected_lines.append(f"{gradient_generator} is disabled before removing {vegetation_area} component") - expected_lines.append(f"{gradient_generator} is enabled after removing {vegetation_area} component") - expected_lines.append("GradientGeneratorIncompatibilities: result=SUCCESS") - hydra.launch_and_validate_results(request, test_directory, editor, - 'GradientGenerators_Incompatibilities.py', - expected_lines=expected_lines, cfg_args=cfg_args) - - @pytest.mark.test_case_id('C3416464', 'C3416546', 'C3961318', 'C3961319', - 'C3961323', 'C3961324', 'C3980656', 'C3980657', - 'C3980661', 'C3980662', 'C3980666', 'C3980667', - 'C2691652') - @pytest.mark.SUITE_periodic - def test_GradientModifiers_Incompatibilities(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [] - for gradient_modifier in gradient_modifiers: - for vegetation_area in vegetation_areas: - expected_lines.append(f"{gradient_modifier} is disabled before removing {vegetation_area} component") - expected_lines.append(f"{gradient_modifier} is enabled after removing {vegetation_area} component") - - for conflicting_gradient in all_gradients: - expected_lines.append(f"{gradient_modifier} is disabled before removing {conflicting_gradient} component") - expected_lines.append(f"{gradient_modifier} is enabled after removing {conflicting_gradient} component") - expected_lines.append("GradientModifiersIncompatibilities: result=SUCCESS") - hydra.launch_and_validate_results(request, test_directory, editor, - 'GradientModifiers_Incompatibilities.py', - expected_lines=expected_lines, cfg_args=cfg_args) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientPreviewSettings.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientPreviewSettings.py deleted file mode 100755 index f41dd605e6..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientPreviewSettings.py +++ /dev/null @@ -1,118 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), 'EditorScripts') - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestGradientPreviewSettings(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id('C3980668', 'C2676825', 'C2676828', 'C2676822', 'C3416547', 'C3961320', 'C3961325', - 'C3980658', 'C3980663') - @pytest.mark.SUITE_periodic - def test_GradientPreviewSettings_DefaultPinnedEntityIsSelf(self, request, editor, level, launcher_platform): - - expected_lines = [ - "Perlin Noise Gradient has Preview pinned to own Entity result: SUCCESS", - "Random Noise Gradient has Preview pinned to own Entity result: SUCCESS", - "FastNoise Gradient has Preview pinned to own Entity result: SUCCESS", - "Dither Gradient Modifier has Preview pinned to own Entity result: SUCCESS", - "Invert Gradient Modifier has Preview pinned to own Entity result: SUCCESS", - "Levels Gradient Modifier has Preview pinned to own Entity result: SUCCESS", - "Posterize Gradient Modifier has Preview pinned to own Entity result: SUCCESS", - "Smooth-Step Gradient Modifier has Preview pinned to own Entity result: SUCCESS", - "Threshold Gradient Modifier has Preview pinned to own Entity result: SUCCESS", - "GradientPreviewSettings_DefaultPinnedEntity: result=SUCCESS" - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "GradientPreviewSettings_DefaultPinnedEntityIsSelf.py", - expected_lines, - cfg_args=[level] - ) - - @pytest.mark.test_case_id("C2676829", "C3961326", "C3980659", "C3980664", "C3980669", "C3416548", "C2676823", - "C3961321", "C2676826") - @pytest.mark.SUITE_periodic - def test_GradientPreviewSettings_ClearingPinnedEntitySetsPreviewToOrigin(self, request, editor, level, - launcher_platform): - - expected_lines = [ - "Random Noise Gradient entity Created", - "Entity has a Random Noise Gradient component", - "Entity has a Gradient Transform Modifier component", - "Entity has a Box Shape component", - "Random Noise Gradient Preview Settings|Pin Preview to Shape: SUCCESS", - "Random Noise Gradient --- Preview Position set to world origin", - "Random Noise Gradient --- Preview Size set to (1, 1, 1)", - "Levels Gradient Modifier entity Created", - "Entity has a Levels Gradient Modifier component", - "Levels Gradient Modifier Preview Settings|Pin Preview to Shape: SUCCESS", - "Levels Gradient Modifier --- Preview Position set to world origin", - "Posterize Gradient Modifier entity Created", - "Entity has a Posterize Gradient Modifier component", - "Posterize Gradient Modifier Preview Settings|Pin Preview to Shape: SUCCESS", - "Posterize Gradient Modifier --- Preview Position set to world origin", - "Smooth-Step Gradient Modifier entity Created", - "Entity has a Smooth-Step Gradient Modifier component", - "Smooth-Step Gradient Modifier Preview Settings|Pin Preview to Shape: SUCCESS", - "Smooth-Step Gradient Modifier --- Preview Position set to world origin", - "Threshold Gradient Modifier entity Created", - "Entity has a Threshold Gradient Modifier component", - "Threshold Gradient Modifier Preview Settings|Pin Preview to Shape: SUCCESS", - "Threshold Gradient Modifier --- Preview Position set to world origin", - "FastNoise Gradient entity Created", - "Entity has a FastNoise Gradient component", - "FastNoise Gradient Preview Settings|Pin Preview to Shape: SUCCESS", - "FastNoise Gradient --- Preview Position set to world origin", - "FastNoise Gradient --- Preview Size set to (1, 1, 1)", - "Dither Gradient Modifier entity Created", - "Entity has a Dither Gradient Modifier component", - "Dither Gradient Modifier Preview Settings|Pin Preview to Shape: SUCCESS", - "Dither Gradient Modifier --- Preview Position set to world origin", - "Dither Gradient Modifier --- Preview Size set to (1, 1, 1)", - "Invert Gradient Modifier entity Created", - "Entity has a Invert Gradient Modifier component", - "Invert Gradient Modifier Preview Settings|Pin Preview to Shape: SUCCESS", - "Invert Gradient Modifier --- Preview Position set to world origin", - "Perlin Noise Gradient entity Created", - "Entity has a Perlin Noise Gradient component", - "Perlin Noise Gradient Preview Settings|Pin Preview to Shape: SUCCESS", - "Perlin Noise Gradient --- Preview Position set to world origin", - "Perlin Noise Gradient --- Preview Size set to (1, 1, 1)", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "GradientPreviewSettings_ClearingPinnedEntitySetsPreviewToOrigin.py", - expected_lines, - cfg_args=[level] - ) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSampling.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSampling.py deleted file mode 100755 index 099a9404e1..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSampling.py +++ /dev/null @@ -1,86 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -import os -import pytest -import logging - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip("ly_test_tools") -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -logger = logging.getLogger(__name__) -test_directory = os.path.join(os.path.dirname(__file__), "EditorScripts") - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestGradientSampling(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id("C3526311") - @pytest.mark.SUITE_periodic - def test_GradientSampling_GradientReferencesAddRemoveSuccessfully(self, request, editor, level, launcher_platform): - - expected_lines = [ - "Entity has a Random Noise Gradient component", - "Entity has a Gradient Transform Modifier component", - "Entity has a Box Shape component", - "Entity has a Dither Gradient Modifier component", - "Gradient Generator is pinned to the Dither Gradient Modifier successfully", - "Gradient Generator is cleared from the Dither Gradient Modifier successfully", - "Entity has a Invert Gradient Modifier component", - "Gradient Generator is pinned to the Invert Gradient Modifier successfully", - "Gradient Generator is cleared from the Invert Gradient Modifier successfully", - "Entity has a Levels Gradient Modifier component", - "Gradient Generator is pinned to the Levels Gradient Modifier successfully", - "Gradient Generator is cleared from the Levels Gradient Modifier successfully", - "Entity has a Posterize Gradient Modifier component", - "Gradient Generator is pinned to the Posterize Gradient Modifier successfully", - "Gradient Generator is cleared from the Posterize Gradient Modifier successfully", - "Entity has a Smooth-Step Gradient Modifier component", - "Gradient Generator is pinned to the Smooth-Step Gradient Modifier successfully", - "Gradient Generator is cleared from the Smooth-Step Gradient Modifier successfully", - "Entity has a Threshold Gradient Modifier component", - "Gradient Generator is pinned to the Threshold Gradient Modifier successfully", - "Gradient Generator is cleared from the Threshold Gradient Modifier successfully", - ] - - unexpected_lines = [ - "Failed to pin Gradient Generator to the Dither Gradient Modifier", - "Failed to clear Gradient Generator from the Dither Gradient Modifier", - "Failed to pin Gradient Generator to the Invert Gradient Modifier", - "Failed to clear Gradient Generator from the Invert Gradient Modifier", - "Failed to pin Gradient Generator to the Levels Gradient Modifier", - "Failed to clear Gradient Generator from the Levels Gradient Modifier", - "Failed to pin Gradient Generator to the Posterize Gradient Modifier", - "Failed to clear Gradient Generator from the Posterize Gradient Modifier", - "Failed to pin Gradient Generator to the Smooth-Step Gradient Modifier", - "Failed to clear Gradient Generator from the Smooth-Step Gradient Modifier", - "Failed to pin Gradient Generator to the Threshold Gradient Modifier", - "Failed to clear Gradient Generator from the Threshold Gradient Modifier", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "GradientSampling_GradientReferencesAddRemoveSuccessfully.py", - expected_lines, - unexpected_lines, - cfg_args=[level] - ) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSurfaceTagEmitter.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSurfaceTagEmitter.py deleted file mode 100755 index 6d4a832875..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSurfaceTagEmitter.py +++ /dev/null @@ -1,116 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -import os -import pytest -import logging - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip("ly_test_tools") -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -logger = logging.getLogger(__name__) -test_directory = os.path.join(os.path.dirname(__file__), "EditorScripts") - - -@pytest.mark.parametrize("project", ["AutomatedTesting"]) -@pytest.mark.parametrize("level", ["tmp_level"]) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestGradientSurfaceTagEmitter(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - # Cleanup temp level before and after test runs - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id("C3297302") - @pytest.mark.SUITE_periodic - def test_GradientSurfaceTagEmitter_ComponentDependencies(self, request, editor, level, workspace, - launcher_platform): - cfg_args = [level] - - expected_lines = [ - "GradientSurfaceTagEmitter_ComponentDependencies: test started", - "GradientSurfaceTagEmitter_ComponentDependencies: Gradient Surface Tag Emitter is Disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Dither Gradient Modifier and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Gradient Mixer and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Invert Gradient Modifier and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Levels Gradient Modifier and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Posterize Gradient Modifier and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Smooth-Step Gradient Modifier and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Threshold Gradient Modifier and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Altitude Gradient and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Constant Gradient and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: FastNoise Gradient and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Image Gradient and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Perlin Noise Gradient and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Random Noise Gradient and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Reference Gradient and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Shape Falloff Gradient and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Slope Gradient and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Surface Mask Gradient and Gradient Surface Tag Emitter are enabled", - "GradientSurfaceTagEmitter_ComponentDependencies: result=SUCCESS", - ] - - unexpected_lines = [ - "GradientSurfaceTagEmitter_ComponentDependencies: Gradient Surface Tag Emitter is Enabled, but should be Disabled without dependencies met", - "GradientSurfaceTagEmitter_ComponentDependencies: Dither Gradient Modifier and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Gradient Mixer and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Invert Gradient Modifier and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Levels Gradient Modifier and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Posterize Gradient Modifier and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Smooth-Step Gradient Modifier and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Threshold Gradient Modifier and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Altitude Gradient and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Constant Gradient and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: FastNoise Gradient and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Image Gradient and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Perlin Noise Gradient and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Random Noise Gradient and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Reference Gradient and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Shape Falloff Gradient and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Slope Gradient and Gradient Surface Tag Emitter are disabled", - "GradientSurfaceTagEmitter_ComponentDependencies: Surface Mask Gradient and Gradient Surface Tag Emitter are disabled", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "GradientSurfaceTagEmitter_ComponentDependencies.py", - expected_lines=expected_lines, - unexpected_lines=unexpected_lines, - cfg_args=cfg_args - ) - - @pytest.mark.test_case_id("C3297303") - @pytest.mark.SUITE_periodic - def test_GradientSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully(self, request, editor, level, - launcher_platform): - - expected_lines = [ - "Entity has a Gradient Surface Tag Emitter component", - "Entity has a Reference Gradient component", - "Added SurfaceTag: container count is 1", - "Removed SurfaceTag: container count is 0", - "GradientSurfaceTagEmitter_SurfaceTagsAddRemoveSucessfully: result=SUCCESS" - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "GradientSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully.py", - expected_lines, - cfg_args=[level] - ) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientTransform.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientTransform.py deleted file mode 100755 index 447a548abb..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientTransform.py +++ /dev/null @@ -1,157 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - - -""" -Tests that the Gradient Transform Modifier component isn't enabled unless it has a component on -the same Entity that provides the ShapeService (e.g. box shape, or reference shape) -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), 'EditorScripts') - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestGradientTransformRequiresShape(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - request.addfinalizer(teardown) - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id('C3430289') - @pytest.mark.SUITE_periodic - def test_GradientTransform_RequiresShape(self, request, editor, level, launcher_platform): - - expected_lines = [ - "Gradient Transform Modifier component was added to entity, but the component is disabled", - "Gradient Transform component is not active without a Shape component on the Entity", - "Box Shape component was added to entity", - "Gradient Transform Modifier component is active now that the Entity has a Shape", - "GradientTransformRequiresShape: result=SUCCESS" - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "GradientTransform_RequiresShape.py", - expected_lines, - cfg_args=[level] - ) - - @pytest.mark.test_case_id("C3430292") - @pytest.mark.SUITE_periodic - def test_GradientTransform_FrequencyZoomCanBeSetBeyondSliderRange(self, request, editor, level, launcher_platform): - - expected_lines = [ - "Entity Created", - "Entity has a Random Noise Gradient component", - "Entity has a Gradient Transform Modifier component", - "Entity has a Box Shape component", - "Components added to the entity", - "entity Configuration|Frequency Zoom: SUCCESS", - "Frequency Zoom is equal to expected value", - ] - - unexpected_lines = ["Frequency Zoom is not equal to expected value"] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "GradientTransform_FrequencyZoomCanBeSetBeyondSliderRange.py", - expected_lines, - unexpected_lines=unexpected_lines, - cfg_args=[level] - ) - - @pytest.mark.test_case_id("C3430297") - @pytest.mark.SUITE_periodic - def test_GradientTransform_ComponentIncompatibleWithSpawners(self, request, editor, launcher_platform, level): - # C3430297: Component cannot be active on the same Entity as an active Vegetation Layer Spawner - expected_lines = [ - "Entity has a Gradient Transform Modifier component", - "Entity has a Box Shape component", - "New Entity Created", - "Gradient Transform Modifier is Enabled", - "Box Shape is Enabled", - "Entity has a Vegetation Layer Spawner component", - "Vegetation Layer Spawner is incompatible and disabled", - "GradientTransform_ComponentIncompatibleWithSpawners: result=SUCCESS" - ] - - unexpected_lines = [ - "Gradient Transform Modifier is Disabled. But It should be Enabled in an Entity", - "Box Shape is Disabled. But It should be Enabled in an Entity", - "Vegetation Layer Spawner is compatible and enabled. But It should be Incompatible and disabled", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "GradientTransform_ComponentIncompatibleWithSpawners.py", - expected_lines, - unexpected_lines, - cfg_args=[level] - ) - - @pytest.mark.test_case_id("C4753767") - @pytest.mark.SUITE_periodic - def test_GradientTransform_ComponentIncompatibleWithExpectedGradients(self, request, editor, launcher_platform, level): - expected_lines = [ - "Entity has a Gradient Transform Modifier component", - "Entity has a Box Shape component", - "New Entity Created", - "Gradient Transform Modifier is Enabled", - "Box Shape is Enabled", - "Entity has a Constant Gradient component", - "Entity has a Altitude Gradient component", - "Entity has a Gradient Mixer component", - "Entity has a Reference Gradient component", - "Entity has a Shape Falloff Gradient component", - "Entity has a Slope Gradient component", - "Entity has a Surface Mask Gradient component", - "All newly added components are incompatible and disabled", - "GradientTransform_ComponentIncompatibleWithExpectedGradients: result=SUCCESS" - ] - - unexpected_lines = [ - "Gradient Transform Modifier is disabled, but it should be enabled", - "Box Shape is disabled, but it should be enabled", - "Constant Gradient is enabled, but should be disabled", - "Altitude Gradient is enabled, but should be disabled", - "Gradient Mixer is enabled, but should be disabled", - "Reference Gradient is enabled, but should be disabled", - "Shape Falloff Gradient is enabled, but should be disabled", - "Slope Gradient is enabled, but should be disabled", - "Surface Mask Gradient component is enabled, but should be disabled", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "GradientTransform_ComponentIncompatibleWithExpectedGradients.py", - expected_lines, - unexpected_lines, - cfg_args=[level] - ) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_ImageGradient.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_ImageGradient.py deleted file mode 100755 index c4280678ee..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_ImageGradient.py +++ /dev/null @@ -1,69 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), 'EditorScripts') - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestImageGradientRequiresShape(object): - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - request.addfinalizer(teardown) - - @pytest.mark.test_case_id('C2707570') - @pytest.mark.SUITE_periodic - def test_ImageGradient_RequiresShape(self, request, editor, level, launcher_platform): - cfg_args = [level] - expected_lines = [ - "Image Gradient component was added to entity, but the component is disabled", - "Gradient Transform Modifier component was added to entity, but the component is disabled", - "Image Gradient component is not active without a Shape component on the Entity", - "Box Shape component was added to entity", - "Image Gradient component is active now that the Entity has a Shape", - "ImageGradientRequiresShape: result=SUCCESS" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, - 'ImageGradient_RequiresShape.py', - expected_lines=expected_lines, cfg_args=cfg_args) - - @pytest.mark.test_case_id("C3829430") - @pytest.mark.SUITE_periodic - def test_ImageGradient_ProcessedImageAssignedSuccessfully(self, request, editor, level, launcher_platform): - - expected_lines = [ - "Image Gradient Entity created", - "Entity has a Image Gradient component", - "Entity has a Gradient Transform Modifier component", - "Entity has a Box Shape component", - "image_grad_test_gsi.png was found in the workspace", - "Entity Configuration|Image Asset: SUCCESS", - "ImageGradient_ProcessedImageAssignedSucessfully: result=SUCCESS", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "ImageGradient_ProcessedImageAssignedSuccessfully.py", - expected_lines, - cfg_args=[level] - ) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_LandscapeCanvas_Main.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main.py similarity index 100% rename from AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_LandscapeCanvas_Main.py rename to AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main.py diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_LandscapeCanvas_Periodic_Optimized.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main_Optimized.py similarity index 92% rename from AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_LandscapeCanvas_Periodic_Optimized.py rename to AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main_Optimized.py index 59e8b1fe90..8c662a9b45 100644 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_LandscapeCanvas_Periodic_Optimized.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main_Optimized.py @@ -17,6 +17,12 @@ from ly_test_tools.o3de.editor_test import EditorSingleTest, EditorSharedTest, E @pytest.mark.parametrize("project", ["AutomatedTesting"]) class TestAutomation(EditorTestSuite): + class test_LandscapeCanvas_SlotConnections_UpdateComponentReferences(EditorSharedTest): + from .EditorScripts import SlotConnections_UpdateComponentReferences as test_module + + class test_LandscapeCanvas_GradientMixer_NodeConstruction(EditorSharedTest): + from .EditorScripts import GradientMixer_NodeConstruction as test_module + class test_LandscapeCanvas_AreaNodes_DependentComponentsAdded(EditorSharedTest): from .EditorScripts import AreaNodes_DependentComponentsAdded as test_module @@ -86,4 +92,4 @@ class TestAutomation(EditorTestSuite): from .EditorScripts import ShapeNodes_EntityCreatedOnNodeAdd as test_module class test_LandscapeCanvas_ShapeNodes_EntityRemovedOnNodeDelete(EditorSharedTest): - from .EditorScripts import ShapeNodes_EntityRemovedOnNodeDelete as test_module + from .EditorScripts import ShapeNodes_EntityRemovedOnNodeDelete as test_module \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_LandscapeCanvas_Periodic.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Periodic.py similarity index 100% rename from AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_LandscapeCanvas_Periodic.py rename to AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Periodic.py diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_AreaNodes.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_AreaNodes.py deleted file mode 100755 index e5736d9db9..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_AreaNodes.py +++ /dev/null @@ -1,125 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -""" -C13815919 - Appropriate component dependencies are automatically added to node entities -C13767844 - All Vegetation Area nodes can be added to a graph -C17605868 - All Vegetation Area nodes can be removed from a graph -C13815873 - All Filters/Modifiers/Selectors can be added to/removed from a Layer node -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), 'EditorScripts') - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestAreaNodes(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id('C13815919') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_AreaNodes_DependentComponentsAdded(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "SpawnerAreaNode created new Entity with all required components", - "MeshBlockerAreaNode created new Entity with all required components", - "BlockerAreaNode created new Entity with all required components", - "AreaNodeComponentDependency: result=SUCCESS" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'AreaNodes_DependentComponentsAdded.py', - expected_lines, cfg_args=cfg_args) - - @pytest.mark.test_case_id('C13767844') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_AreaNodes_EntityCreatedOnNodeAdd(self, request, editor, level, launcher_platform): - """ - Verifies all Area nodes can be successfully added to a Landscape Canvas graph, and the proper entity - creation occurs. - """ - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "AreaBlenderNode created new Entity with Vegetation Layer Blender Component", - "BlockerAreaNode created new Entity with Vegetation Layer Blocker Component", - "MeshBlockerAreaNode created new Entity with Vegetation Layer Blocker (Mesh) Component", - "SpawnerAreaNode created new Entity with Vegetation Layer Spawner Component", - "AreaNodeEntityCreate: result=SUCCESS" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'AreaNodes_EntityCreatedOnNodeAdd.py', - expected_lines, cfg_args=cfg_args) - - @pytest.mark.test_case_id('C17605868') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_AreaNodes_EntityRemovedOnNodeDelete(self, request, editor, level, launcher_platform): - """ - Verifies all Area nodes can be successfully removed from a Landscape Canvas graph, and the proper entity - cleanup occurs. - """ - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "AreaBlenderNode corresponding Entity was deleted when node is removed", - "MeshBlockerAreaNode corresponding Entity was deleted when node is removed", - "SpawnerAreaNode corresponding Entity was deleted when node is removed", - "BlockerAreaNode corresponding Entity was deleted when node is removed", - "AreaNodeEntityDelete: result=SUCCESS" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, - 'AreaNodes_EntityRemovedOnNodeDelete.py', expected_lines, cfg_args=cfg_args) - - @pytest.mark.test_case_id('C13815873') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_LayerExtenderNodes_ComponentEntitySync(self, request, editor, level, launcher_platform): - """ - Verifies all Area Extender nodes can be successfully added to and removed from a Landscape Canvas graph, and the - proper entity creation/cleanup occurs. - """ - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "AreaBlenderNode successfully added and removed all filters/modifiers/selectors", - "SpawnerAreaNode successfully added and removed all filters/modifiers/selectors", - "LayerExtenderNodeComponentEntitySync: result=SUCCESS" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, - 'LayerExtenderNodes_ComponentEntitySync.py', expected_lines, - cfg_args=cfg_args) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_EditFunctionality.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_EditFunctionality.py deleted file mode 100755 index 7ff110d6b0..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_EditFunctionality.py +++ /dev/null @@ -1,84 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -""" -C29278563 - Disabled nodes can be successfully duplicated -C30813586 - Editor remains stable after Undoing deletion of a node on a slice entity -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), 'EditorScripts') - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestEditFunctionality(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id('C29278563') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_DuplicateDisabledNodes(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "SpawnerAreaNode duplicated with disabled component", - "SpawnerAreaNode duplicated with deleted component", - "MeshBlockerAreaNode duplicated with disabled component", - "MeshBlockerAreaNode duplicated with deleted component", - "BlockerAreaNode duplicated with disabled component", - "BlockerAreaNode duplicated with deleted component", - "FastNoiseGradientNode duplicated with disabled component", - "FastNoiseGradientNode duplicated with deleted component", - "ImageGradientNode duplicated with disabled component", - "ImageGradientNode duplicated with deleted component", - "PerlinNoiseGradientNode duplicated with disabled component", - "PerlinNoiseGradientNode duplicated with deleted component", - "RandomNoiseGradientNode duplicated with disabled component", - "RandomNoiseGradientNode duplicated with deleted component", - "DisabledNodeDuplication: result=SUCCESS" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'Edit_DisabledNodeDuplication.py', - expected_lines, cfg_args=cfg_args) - - @pytest.mark.test_case_id('C30813586') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_UndoNodeDelete_SliceEntity(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [ - "Vegetation Layer Spawner node found on graph", - "Vegetation Layer Spawner node was removed", - "Editor is still responsive", - "UndoNodeDeleteSlice: result=SUCCESS" - ] - - unexpected_lines = [ - "Vegetation Layer Spawner node not found", - "Vegetation Layer Spawner node was not removed" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'Edit_UndoNodeDelete_SliceEntity.py', - expected_lines, unexpected_lines=unexpected_lines, cfg_args=cfg_args) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GeneralGraphFunctionality.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GeneralGraphFunctionality.py deleted file mode 100644 index 4ab5a41b85..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GeneralGraphFunctionality.py +++ /dev/null @@ -1,173 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -""" -C2735988 - Landscape Canvas tool can be opened/closed -C13815862 - New graph can be created -C13767840 - New root entity is created when a new graph is created through Landscape Canvas -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip("ly_test_tools") -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), "EditorScripts") - - -@pytest.mark.parametrize("project", ["AutomatedTesting"]) -@pytest.mark.parametrize("level", ["tmp_level"]) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestGeneralGraphFunctionality(object): - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "slices", "TestSlice.slice")], True, True) - - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "slices", "TestSlice.slice")], True, True) - - @pytest.mark.test_case_id("C2735988", "C13815862", "C13767840") - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_NewGraph_CreatedSuccessfully(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "Root entity has Landscape Canvas component", - "Landscape Canvas pane is closed", - "CreateNewGraph: result=SUCCESS", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "CreateNewGraph.py", - expected_lines, - cfg_args=cfg_args - ) - - @pytest.mark.test_case_id("C2735990") - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_Component_AddedRemoved(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas Component added to Entity", - "Landscape Canvas Component removed from Entity", - "LandscapeCanvasComponentAddedRemoved: result=SUCCESS", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "LandscapeCanvasComponent_AddedRemoved.py", - expected_lines, - cfg_args=cfg_args - ) - - @pytest.mark.test_case_id("C14212352") - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_GraphClosed_OnLevelChange(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "Graph is no longer open in Landscape Canvas", - "GraphClosedOnLevelChange: result=SUCCESS", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "GraphClosed_OnLevelChange.py", - expected_lines, - cfg_args=cfg_args - ) - - @pytest.mark.test_case_id("C17488412") - @pytest.mark.SUITE_periodic - @pytest.mark.xfail(reason="https://github.com/o3de/o3de/issues/2201") - def test_LandscapeCanvas_GraphClosed_OnEntityDelete(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "Graph registered with Landscape Canvas", - "The graph is no longer open after deleting the Entity", - "GraphClosedOnEntityDelete: result=SUCCESS", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "GraphClosed_OnEntityDelete.py", - expected_lines, - cfg_args=cfg_args - ) - - @pytest.mark.test_case_id("C15167461") - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_GraphClosed_TabbedGraphClosesIndependently(self, request, editor, level, - launcher_platform): - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "2nd new graph created", - "3rd new graph created", - "Graphs registered with Landscape Canvas", - "Graph 2 was successfully closed", - "GraphClosedTabbedGraph: result=SUCCESS", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "GraphClosed_TabbedGraph.py", - expected_lines, - cfg_args=cfg_args - ) - - @pytest.mark.test_case_id("C22602016") - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_SliceCreateInstantiate(self, request, editor, level, workspace, launcher_platform): - cfg_args = [level] - - expected_lines = [ - "LandscapeCanvas_SliceCreateInstantiate: test started", - "landscape_canvas_entity Entity successfully created", - "LandscapeCanvas_SliceCreateInstantiate: Slice has been created successfully: True", - "LandscapeCanvas_SliceCreateInstantiate: Slice instantiated: True", - "LandscapeCanvas_SliceCreateInstantiate: result=SUCCESS", - ] - - hydra.launch_and_validate_results( - request, - test_directory, - editor, - "LandscapeCanvas_SliceCreateInstantiate.py", - expected_lines=expected_lines, - cfg_args=cfg_args - ) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientModifierNodes.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientModifierNodes.py deleted file mode 100755 index 99f342a574..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientModifierNodes.py +++ /dev/null @@ -1,92 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -""" -C13767841 - All Gradient Modifier nodes can be added to a graph -C18055051 - All Gradient Modifier nodes can be removed from a graph -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), 'EditorScripts') - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestGradientModifierNodes(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id('C13767841') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_GradientModifierNodes_EntityCreatedOnNodeAdd(self, request, editor, level, - launcher_platform): - """ - Verifies all Gradient Modifier nodes can be successfully added to a Landscape Canvas graph, and the proper - entity creation occurs. - """ - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "DitherGradientModifierNode created new Entity with Dither Gradient Modifier Component", - "GradientMixerNode created new Entity with Gradient Mixer Component", - "InvertGradientModifierNode created new Entity with Invert Gradient Modifier Component", - "LevelsGradientModifierNode created new Entity with Levels Gradient Modifier Component", - "PosterizeGradientModifierNode created new Entity with Posterize Gradient Modifier Component", - "SmoothStepGradientModifierNode created new Entity with Smooth-Step Gradient Modifier Component", - "ThresholdGradientModifierNode created new Entity with Threshold Gradient Modifier Component", - "GradientModifierNodeEntityCreate: result=SUCCESS" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, - 'GradientModifierNodes_EntityCreatedOnNodeAdd.py', - expected_lines, cfg_args=cfg_args) - - @pytest.mark.test_case_id('C18055051') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_GradientModifierNodes_EntityRemovedOnNodeDelete(self, request, editor, level, - launcher_platform): - """ - Verifies all Gradient Modifier nodes can be successfully removed from a Landscape Canvas graph, and the proper - entity cleanup occurs. - """ - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "DitherGradientModifierNode corresponding Entity was deleted when node is removed", - "GradientMixerNode corresponding Entity was deleted when node is removed", - "InvertGradientModifierNode corresponding Entity was deleted when node is removed", - "LevelsGradientModifierNode corresponding Entity was deleted when node is removed", - "PosterizeGradientModifierNode corresponding Entity was deleted when node is removed", - "SmoothStepGradientModifierNode corresponding Entity was deleted when node is removed", - "ThresholdGradientModifierNode corresponding Entity was deleted when node is removed", - "GradientModifierNodeEntityDelete: result=SUCCESS" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, - 'GradientModifierNodes_EntityRemovedOnNodeDelete.py', - expected_lines, cfg_args=cfg_args) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientNodes.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientNodes.py deleted file mode 100755 index 1fdb254e98..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientNodes.py +++ /dev/null @@ -1,109 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -""" -C13815920 - Appropriate component dependencies are automatically added to node entities -C13767842 - All Gradient nodes can be added to a graph -C17461363 - All Gradient nodes can be removed from a graph -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), 'EditorScripts') - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestGradientNodes(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id('C13815920') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_GradientNodes_DependentComponentsAdded(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "FastNoiseGradientNode created new Entity with all required components", - "ImageGradientNode created new Entity with all required components", - "PerlinNoiseGradientNode created new Entity with all required components", - "RandomNoiseGradientNode created new Entity with all required components" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'GradientNodes_DependentComponentsAdded.py', - expected_lines, cfg_args=cfg_args) - - @pytest.mark.test_case_id('C13767842') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_GradientNodes_EntityCreatedOnNodeAdd(self, request, editor, level, launcher_platform): - """ - Verifies all Gradient nodes can be successfully added to a Landscape Canvas graph, and the proper entity - creation occurs. - """ - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "AltitudeGradientNode created new Entity with Altitude Gradient Component", - "ConstantGradientNode created new Entity with Constant Gradient Component", - "FastNoiseGradientNode created new Entity with FastNoise Gradient Component", - "ImageGradientNode created new Entity with Image Gradient Component", - "PerlinNoiseGradientNode created new Entity with Perlin Noise Gradient Component", - "RandomNoiseGradientNode created new Entity with Random Noise Gradient Component", - "ShapeAreaFalloffGradientNode created new Entity with Shape Falloff Gradient Component", - "SlopeGradientNode created new Entity with Slope Gradient Component", - "SurfaceMaskGradientNode created new Entity with Surface Mask Gradient Component" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'GradientNodes_EntityCreatedOnNodeAdd.py', - expected_lines, cfg_args=cfg_args) - - @pytest.mark.test_case_id('C17461363') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_GradientNodes_EntityRemovedOnNodeDelete(self, request, editor, level, launcher_platform): - """ - Verifies all Gradient nodes can be successfully removed from a Landscape Canvas graph, and the proper entity - cleanup occurs. - """ - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "FastNoiseGradientNode corresponding Entity was deleted when node is removed", - "AltitudeGradientNode corresponding Entity was deleted when node is removed", - "ConstantGradientNode corresponding Entity was deleted when node is removed", - "RandomNoiseGradientNode corresponding Entity was deleted when node is removed", - "ShapeAreaFalloffGradientNode corresponding Entity was deleted when node is removed", - "SlopeGradientNode corresponding Entity was deleted when node is removed", - "PerlinNoiseGradientNode corresponding Entity was deleted when node is removed", - "ImageGradientNode corresponding Entity was deleted when node is removed", - "SurfaceMaskGradientNode corresponding Entity was deleted when node is removed" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'GradientNodes_EntityRemovedOnNodeDelete.py', - expected_lines, cfg_args=cfg_args) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GraphComponentSync.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GraphComponentSync.py deleted file mode 100755 index 71389dcf5b..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GraphComponentSync.py +++ /dev/null @@ -1,167 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -""" -C4705586 - Altering connections on graph nodes appropriately updates component properties -C22715182 - Components are updated when nodes are added/removed/updated -C22602072 - Graph is updated when underlying components are added/removed -C15987206 - Gradient Mixer Layers are properly setup when constructing in a graph -C21333743 - Vegetation Layer Blenders are properly setup when constructing in a graph -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import ly_test_tools._internal.pytest_plugin as internal_plugin -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), 'EditorScripts') - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestGraphComponentSync(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id('C4705586') - @pytest.mark.BAT - @pytest.mark.SUITE_main - def test_LandscapeCanvas_SlotConnections_UpdateComponentReferences(self, request, editor, level, launcher_platform): - - # Skip test if running against Debug build - if "debug" in internal_plugin.build_directory: - pytest.skip("Does not execute against debug builds.") - - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "Random Noise Gradient component Preview Entity property set to Box Shape EntityId", - "Dither Gradient Modifier component Inbound Gradient property set to Random Noise Gradient EntityId", - "Gradient Mixer component Inbound Gradient extendable property set to Dither Gradient Modifier EntityId", - "SlotConnectionsUpdateComponents: result=SUCCESS" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, - 'SlotConnections_UpdateComponentReferences.py', expected_lines, - cfg_args=cfg_args) - - @pytest.mark.test_case_id('C22715182') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_GraphUpdates_UpdateComponents(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [ - 'Rotation Modifier component was removed from entity', - 'BushSpawner entity was deleted', - 'Gradient Entity Id reference was properly updated', - 'GraphUpdatesUpdateComponents: result=SUCCESS' - ] - - unexpected_lines = [ - 'Rotation Modifier component is still present on entity', - 'Failed to delete BushSpawner entity', - 'Gradient Entity Id was not updated properly' - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'GraphUpdates_UpdateComponents.py', - expected_lines, unexpected_lines=unexpected_lines, - cfg_args=cfg_args) - - @pytest.mark.test_case_id('C22602072') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_ComponentUpdates_UpdateGraph(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [ - "LandscapeCanvas entity found", - "BushSpawner entity found", - "Vegetation Distribution Filter on BushSpawner entity found", - "Graph opened", - "Distribution Filter node found on graph", - "Vegetation Altitude Filter on BushSpawner entity found", - "Altitude Filter node found on graph", - "Vegetation Distribution Filter removed from BushSpawner entity", - "Distribution Filter node was removed from the graph", - "New entity successfully added as a child of the BushSpawner entity", - "Box Shape on Box entity found", - "Box Shape node found on graph", - 'ComponentUpdatesUpdateGraph: result=SUCCESS' - ] - - unexpected_lines = [ - "Distribution Filter node not found on graph", - "Distribution Filter node is still present on the graph", - "Altitude Filter node not found on graph", - "New entity added with an unexpected parent", - "Box Shape node not found on graph" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'ComponentUpdates_UpdateGraph.py', - expected_lines, unexpected_lines=unexpected_lines, cfg_args=cfg_args) - - @pytest.mark.test_case_id('C15987206') - @pytest.mark.SUITE_main - def test_LandscapeCanvas_GradientMixer_NodeConstruction(self, request, editor, level, launcher_platform): - """ - Verifies a Gradient Mixer can be setup in Landscape Canvas and all references are property set. - """ - - # Skip test if running against Debug build - if "debug" in internal_plugin.build_directory: - pytest.skip("Does not execute against debug builds.") - - cfg_args = [level] - - expected_lines = [ - 'Landscape Canvas pane is open', - 'New graph created', - 'Graph registered with Landscape Canvas', - 'Perlin Noise Gradient component Preview Entity property set to Box Shape EntityId', - 'Gradient Mixer component Inbound Gradient extendable property set to Perlin Noise Gradient EntityId', - 'Gradient Mixer component Inbound Gradient extendable property set to FastNoise Gradient EntityId', - 'Configuration|Layers|[0]|Operation set to 0', - 'Configuration|Layers|[1]|Operation set to 6', - 'GradientMixerNodeConstruction: result=SUCCESS' - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'GradientMixer_NodeConstruction.py', - expected_lines, cfg_args=cfg_args) - - @pytest.mark.test_case_id('C21333743') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_LayerBlender_NodeConstruction(self, request, editor, level, launcher_platform): - """ - Verifies a Layer Blender can be setup in Landscape Canvas and all references are property set. - """ - cfg_args = [level] - - expected_lines = [ - 'Landscape Canvas pane is open', - 'New graph created', - 'Graph registered with Landscape Canvas', - 'Vegetation Layer Blender component Vegetation Areas[0] property set to Vegetation Layer Spawner EntityId', - 'Vegetation Layer Blender component Vegetation Areas[1] property set to Vegetation Layer Blocker EntityId', - 'LayerBlenderNodeConstruction: result=SUCCESS' - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'LayerBlender_NodeConstruction.py', - expected_lines, cfg_args=cfg_args) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_LandscapeCanvas_Main_Optimized.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_LandscapeCanvas_Main_Optimized.py deleted file mode 100644 index 68bac24452..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_LandscapeCanvas_Main_Optimized.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -import pytest - -from ly_test_tools.o3de.editor_test import EditorSingleTest, EditorSharedTest, EditorParallelTest, EditorTestSuite - - -@pytest.mark.SUITE_periodic -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -@pytest.mark.parametrize("project", ["AutomatedTesting"]) -class TestAutomation(EditorTestSuite): - - class test_LandscapeCanvas_SlotConnections_UpdateComponentReferences(EditorSharedTest): - from .EditorScripts import SlotConnections_UpdateComponentReferences as test_module - - class test_LandscapeCanvas_GradientMixer_NodeConstruction(EditorSharedTest): - from .EditorScripts import GradientMixer_NodeConstruction as test_module diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_ShapeNodes.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_ShapeNodes.py deleted file mode 100755 index 8356d5a404..0000000000 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_ShapeNodes.py +++ /dev/null @@ -1,82 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -""" -C13767843 - All Shape nodes can be added to a graph -C17412059 - All Shape nodes can be removed from a graph -""" - -import os -import pytest - -# Bail on the test if ly_test_tools doesn't exist. -pytest.importorskip('ly_test_tools') -import ly_test_tools.environment.file_system as file_system -import editor_python_test_tools.hydra_test_utils as hydra - -test_directory = os.path.join(os.path.dirname(__file__), 'EditorScripts') - - -@pytest.mark.parametrize('project', ['AutomatedTesting']) -@pytest.mark.parametrize('level', ['tmp_level']) -@pytest.mark.usefixtures("automatic_process_killer") -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -class TestShapeNodes(object): - - @pytest.fixture(autouse=True) - def setup_teardown(self, request, workspace, project, level): - def teardown(): - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - request.addfinalizer(teardown) - - file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) - - @pytest.mark.test_case_id('C13767843') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_ShapeNodes_EntityCreatedOnNodeAdd(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "BoxShapeNode created new Entity with Box Shape Component", - "CapsuleShapeNode created new Entity with Capsule Shape Component", - "CompoundShapeNode created new Entity with Compound Shape Component", - "CylinderShapeNode created new Entity with Cylinder Shape Component", - "PolygonPrismShapeNode created new Entity with Polygon Prism Shape Component", - "SphereShapeNode created new Entity with Sphere Shape Component", - "TubeShapeNode created new Entity with Tube Shape Component", - "DiskShapeNode created new Entity with Disk Shape Component", - "ShapeNodeEntityCreate: result=SUCCESS" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'ShapeNodes_EntityCreatedOnNodeAdd.py', - expected_lines, cfg_args=cfg_args) - - @pytest.mark.test_case_id('C17412059') - @pytest.mark.SUITE_periodic - def test_LandscapeCanvas_ShapeNodes_EntityRemovedOnNodeDelete(self, request, editor, level, launcher_platform): - cfg_args = [level] - - expected_lines = [ - "Landscape Canvas pane is open", - "New graph created", - "Graph registered with Landscape Canvas", - "BoxShapeNode corresponding Entity was deleted when node is removed", - "CapsuleShapeNode corresponding Entity was deleted when node is removed", - "CompoundShapeNode corresponding Entity was deleted when node is removed", - "CylinderShapeNode corresponding Entity was deleted when node is removed", - "PolygonPrismShapeNode corresponding Entity was deleted when node is removed", - "SphereShapeNode corresponding Entity was deleted when node is removed", - "TubeShapeNode corresponding Entity was deleted when node is removed", - "DiskShapeNode corresponding Entity was deleted when node is removed", - "ShapeNodeEntityDelete: result=SUCCESS" - ] - - hydra.launch_and_validate_results(request, test_directory, editor, 'ShapeNodes_EntityRemovedOnNodeDelete.py', - expected_lines, cfg_args=cfg_args) diff --git a/AutomatedTesting/Gem/PythonTests/physics/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/physics/CMakeLists.txt index eb37db1943..2557faee43 100644 --- a/AutomatedTesting/Gem/PythonTests/physics/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/physics/CMakeLists.txt @@ -19,6 +19,19 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) COMPONENT Physics ) + ly_add_pytest( + NAME AutomatedTesting::PhysicsTests_Main_Optimized + TEST_SUITE main + TEST_SERIAL + PATH ${CMAKE_CURRENT_LIST_DIR}/TestSuite_Main_Optimized.py + TIMEOUT 1500 + RUNTIME_DEPENDENCIES + Legacy::Editor + AZ::AssetProcessor + AutomatedTesting.Assets + COMPONENT + Physics + ) ly_add_pytest( NAME AutomatedTesting::PhysicsTests_Periodic TEST_SUITE periodic diff --git a/AutomatedTesting/Gem/PythonTests/physics/ImportPathHelper.py b/AutomatedTesting/Gem/PythonTests/physics/ImportPathHelper.py deleted file mode 100755 index 0e395664ad..0000000000 --- a/AutomatedTesting/Gem/PythonTests/physics/ImportPathHelper.py +++ /dev/null @@ -1,11 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -def init(): - import os - import sys - sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../automatedtesting_shared') diff --git a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_InDevelopment.py b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_InDevelopment.py index 2c5cca4f24..dad37297cc 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_InDevelopment.py +++ b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_InDevelopment.py @@ -13,25 +13,25 @@ import pytest import os import sys -from .FileManagement import FileManagement as fm +from .utils.FileManagement import FileManagement as fm sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../automatedtesting_shared') -@pytest.mark.parametrize("spec", ["all"]) +from base import TestAutomationBase + @pytest.mark.parametrize("project", ["AutomatedTesting"]) -@pytest.mark.system class TestAutomation(TestAutomationBase): @fm.file_revert("ragdollbones.physmaterial", r"AutomatedTesting\Levels\Physics\C4925582_Material_AddModifyDeleteOnRagdollBones") def test_C4925582_Material_AddModifyDeleteOnRagdollBones(self, request, workspace, editor): - from . import C4925582_Material_AddModifyDeleteOnRagdollBones as test_module + from .material import C4925582_Material_AddModifyDeleteOnRagdollBones as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C4925580_Material_RagdollBonesMaterial(self, request, workspace, editor): - from . import C4925580_Material_RagdollBonesMaterial as test_module + from .material import C4925580_Material_RagdollBonesMaterial as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -40,7 +40,7 @@ class TestAutomation(TestAutomationBase): @fm.file_revert("c15308221_material_componentsinsyncwithlibrary.physmaterial", r"AutomatedTesting\Levels\Physics\C15308221_Material_ComponentsInSyncWithLibrary") def test_C15308221_Material_ComponentsInSyncWithLibrary(self, request, workspace, editor): - from . import C15308221_Material_ComponentsInSyncWithLibrary as test_module + from .material import C15308221_Material_ComponentsInSyncWithLibrary as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -48,7 +48,7 @@ class TestAutomation(TestAutomationBase): # BUG: LY-107723") def test_C14976308_ScriptCanvas_SetKinematicTargetTransform(self, request, workspace, editor): - from . import C14976308_ScriptCanvas_SetKinematicTargetTransform as test_module + from .script_canvas import C14976308_ScriptCanvas_SetKinematicTargetTransform as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -58,7 +58,7 @@ class TestAutomation(TestAutomationBase): @fm.file_revert("c4925579_material_addmodifydeleteonterrain.physmaterial", r"AutomatedTesting\Levels\Physics\C4925579_Material_AddModifyDeleteOnTerrain") def test_C4925579_Material_AddModifyDeleteOnTerrain(self, request, workspace, editor): - from . import C4925579_Material_AddModifyDeleteOnTerrain as test_module + from .material import C4925579_Material_AddModifyDeleteOnTerrain as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -66,7 +66,7 @@ class TestAutomation(TestAutomationBase): # Failing, PhysXTerrain def test_C13508019_Terrain_TerrainTexturePainterWorks(self, request, workspace, editor): - from . import C13508019_Terrain_TerrainTexturePainterWorks as test_module + from .terrain import C13508019_Terrain_TerrainTexturePainterWorks as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -74,7 +74,7 @@ class TestAutomation(TestAutomationBase): # Failing, PhysXTerrain def test_C4925577_Materials_MaterialAssignedToTerrain(self, request, workspace, editor): - from . import C4925577_Materials_MaterialAssignedToTerrain as test_module + from .material import C4925577_Materials_MaterialAssignedToTerrain as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -82,7 +82,7 @@ class TestAutomation(TestAutomationBase): # Failing, PhysXTerrain def test_C15096735_Materials_DefaultLibraryConsistency(self, request, workspace, editor): - from . import C15096735_Materials_DefaultLibraryConsistency as test_module + from .material import C15096735_Materials_DefaultLibraryConsistency as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -92,13 +92,13 @@ class TestAutomation(TestAutomationBase): @fm.file_revert("all_ones_1.physmaterial", r"AutomatedTesting\Levels\Physics\C15096737_Materials_DefaultMaterialLibraryChanges") @fm.file_override("default.physxconfiguration", "C15096737_Materials_DefaultMaterialLibraryChanges.physxconfiguration", "AutomatedTesting") def test_C15096737_Materials_DefaultMaterialLibraryChanges(self, request, workspace, editor): - from . import C15096737_Materials_DefaultMaterialLibraryChanges as test_module + from .material import C15096737_Materials_DefaultMaterialLibraryChanges as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C4976242_Collision_SameCollisionlayerSameCollisiongroup(self, request, workspace, editor): - from . import C4976242_Collision_SameCollisionlayerSameCollisiongroup as test_module + from .collider import C4976242_Collision_SameCollisionlayerSameCollisiongroup as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -109,7 +109,7 @@ class TestAutomation(TestAutomationBase): "Material_DefaultLibraryUpdatedAcrossLevels_before.physxconfiguration", "AutomatedTesting", search_subdirs=True) def test_levels_before(self, request, workspace, editor): - from . import C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before as test_module_0 + from .material import C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before as test_module_0 expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module_0, expected_lines, unexpected_lines) @@ -119,7 +119,7 @@ class TestAutomation(TestAutomationBase): "Material_DefaultLibraryUpdatedAcrossLevels_after.physxconfiguration", "AutomatedTesting", search_subdirs=True) def test_levels_after(self, request, workspace, editor): - from . import C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after as test_module_1 + from .material import C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after as test_module_1 expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module_1, expected_lines, unexpected_lines) @@ -128,7 +128,7 @@ class TestAutomation(TestAutomationBase): test_levels_after(self, request, workspace, editor) def test_C14654882_Ragdoll_ragdollAPTest(self, request, workspace, editor): - from . import C14654882_Ragdoll_ragdollAPTest as test_module + from .ragdoll import C14654882_Ragdoll_ragdollAPTest as test_module expected_lines = [] unexpected_lines = test_module.UnexpectedLines.lines @@ -136,14 +136,14 @@ class TestAutomation(TestAutomationBase): @fm.file_override("default.physxconfiguration", "C12712454_ScriptCanvas_OverlapNodeVerification.physxconfiguration") def test_C12712454_ScriptCanvas_OverlapNodeVerification(self, request, workspace, editor): - from . import C12712454_ScriptCanvas_OverlapNodeVerification as test_module + from .script_canvas import C12712454_ScriptCanvas_OverlapNodeVerification as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C4044460_Material_StaticFriction(self, request, workspace, editor): - from . import C4044460_Material_StaticFriction as test_module + from .material import C4044460_Material_StaticFriction as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -154,7 +154,7 @@ class TestAutomation(TestAutomationBase): @fm.file_revert("c4888315_material_addmodifydeleteoncollider.physmaterial", r"AutomatedTesting\Levels\Physics\C4888315_Material_AddModifyDeleteOnCollider") def test_C4888315_Material_AddModifyDeleteOnCollider(self, request, workspace, editor): - from . import C4888315_Material_AddModifyDeleteOnCollider as test_module + from .material import C4888315_Material_AddModifyDeleteOnCollider as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -164,7 +164,7 @@ class TestAutomation(TestAutomationBase): @fm.file_revert("c15563573_material_addmodifydeleteoncharactercontroller.physmaterial", r"AutomatedTesting\Levels\Physics\C15563573_Material_AddModifyDeleteOnCharacterController") def test_C15563573_Material_AddModifyDeleteOnCharacterController(self, request, workspace, editor): - from . import C15563573_Material_AddModifyDeleteOnCharacterController as test_module + from .material import C15563573_Material_AddModifyDeleteOnCharacterController as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -173,7 +173,7 @@ class TestAutomation(TestAutomationBase): @fm.file_revert("c4888315_material_addmodifydeleteoncollider.physmaterial", r"AutomatedTesting\Levels\Physics\C4888315_Material_AddModifyDeleteOnCollider") def test_C4888315_Material_AddModifyDeleteOnCollider(self, request, workspace, editor): - from . import C4888315_Material_AddModifyDeleteOnCollider as test_module + from .material import C4888315_Material_AddModifyDeleteOnCollider as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -185,7 +185,7 @@ class TestAutomation(TestAutomationBase): @fm.file_revert("c15563573_material_addmodifydeleteoncharactercontroller.physmaterial", r"AutomatedTesting\Levels\Physics\C15563573_Material_AddModifyDeleteOnCharacterController") def test_C15563573_Material_AddModifyDeleteOnCharacterController(self, request, workspace, editor): - from . import C15563573_Material_AddModifyDeleteOnCharacterController as test_module + from .material import C15563573_Material_AddModifyDeleteOnCharacterController as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -194,7 +194,7 @@ class TestAutomation(TestAutomationBase): @fm.file_revert("c4044455_material_librarychangesinstantly.physmaterial", r"AutomatedTesting\Levels\Physics\C4044455_Material_LibraryChangesInstantly") def test_C4044455_Material_libraryChangesInstantly(self, request, workspace, editor): - from . import C4044455_Material_libraryChangesInstantly as test_module + from .material import C4044455_Material_libraryChangesInstantly as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -204,103 +204,103 @@ class TestAutomation(TestAutomationBase): @fm.file_revert("C15425935_Material_LibraryUpdatedAcrossLevels.physmaterial", r"AutomatedTesting\Levels\Physics\C15425935_Material_LibraryUpdatedAcrossLevels") def test_C15425935_Material_LibraryUpdatedAcrossLevels(self, request, workspace, editor): - from . import C15425935_Material_LibraryUpdatedAcrossLevels as test_module + from .material import C15425935_Material_LibraryUpdatedAcrossLevels as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C4976199_RigidBodies_LinearDampingObjectMotion(self, request, workspace, editor): - from . import C4976199_RigidBodies_LinearDampingObjectMotion as test_module + from .rigid_body import C4976199_RigidBodies_LinearDampingObjectMotion as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C5689518_PhysXTerrain_CollidesWithPhysXTerrain(self, request, workspace, editor): - from . import C5689518_PhysXTerrain_CollidesWithPhysXTerrain as test_module + from .terrain import C5689518_PhysXTerrain_CollidesWithPhysXTerrain as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain(self, request, workspace, editor): - from . import C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain as test_module + from .collider import C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C29032500_EditorComponents_WorldBodyBusWorks(self, request, workspace, editor): - from . import C29032500_EditorComponents_WorldBodyBusWorks as test_module + from .general import C29032500_EditorComponents_WorldBodyBusWorks as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C14861498_ConfirmError_NoPxMesh(self, request, workspace, editor, launcher_platform): - from . import C14861498_ConfirmError_NoPxMesh as test_module + from .collider import C14861498_ConfirmError_NoPxMesh as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C5959763_ForceRegion_ForceRegionImpulsesCube(self, request, workspace, editor, launcher_platform): - from . import C5959763_ForceRegion_ForceRegionImpulsesCube as test_module + from .force_region import C5959763_ForceRegion_ForceRegionImpulsesCube as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C5689531_Warning_TerrainSliceTerrainComponent(self, request, workspace, editor, launcher_platform): - from . import C5689531_Warning_TerrainSliceTerrainComponent as test_module + from .terrain import C5689531_Warning_TerrainSliceTerrainComponent as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C5689522_Physxterrain_AddPhysxterrainNoEditorCrash(self, request, workspace, editor, launcher_platform): - from . import C5689522_Physxterrain_AddPhysxterrainNoEditorCrash as test_module + from .terrain import C5689522_Physxterrain_AddPhysxterrainNoEditorCrash as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C5689524_MultipleTerrains_CheckWarningInConsole(self, request, workspace, editor, launcher_platform): - from . import C5689524_MultipleTerrains_CheckWarningInConsole as test_module + from .terrain import C5689524_MultipleTerrains_CheckWarningInConsole as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C5689528_Terrain_MultipleTerrainComponents(self, request, workspace, editor, launcher_platform): - from . import C5689528_Terrain_MultipleTerrainComponents as test_module + from .terrain import C5689528_Terrain_MultipleTerrainComponents as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C5689528_Terrain_MultipleTerrainComponents(self, request, workspace, editor, launcher_platform): - from . import C5689528_Terrain_MultipleTerrainComponents as test_module + from .terrain import C5689528_Terrain_MultipleTerrainComponents as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C6321601_Force_HighValuesDirectionAxes(self, request, workspace, editor, launcher_platform): - from . import C6321601_Force_HighValuesDirectionAxes as test_module + from .force_region import C6321601_Force_HighValuesDirectionAxes as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C6032082_Terrain_MultipleResolutionsValid(self, request, workspace, editor, launcher_platform): - from . import C6032082_Terrain_MultipleResolutionsValid as test_module + from .terrain import C6032082_Terrain_MultipleResolutionsValid as test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) def test_C12905527_ForceRegion_MagnitudeDeviation(self, request, workspace, editor, launcher_platform): - from . import C12905527_ForceRegion_MagnitudeDeviation as test_module + from .force_region import C12905527_ForceRegion_MagnitudeDeviation as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -308,7 +308,7 @@ class TestAutomation(TestAutomationBase): # Removed from active suite to meet 60 minutes limit in AR job def test_C18243580_Joints_Fixed2BodiesConstrained(self, request, workspace, editor, launcher_platform): - from . import C18243580_Joints_Fixed2BodiesConstrained as test_module + from .joints import C18243580_Joints_Fixed2BodiesConstrained as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -316,7 +316,7 @@ class TestAutomation(TestAutomationBase): # Removed from active suite to meet 60 minutes limit in AR job def test_C18243583_Joints_Hinge2BodiesConstrained(self, request, workspace, editor, launcher_platform): - from . import C18243583_Joints_Hinge2BodiesConstrained as test_module + from .joints import C18243583_Joints_Hinge2BodiesConstrained as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -324,7 +324,7 @@ class TestAutomation(TestAutomationBase): # Removed from active suite to meet 60 minutes limit in AR job def test_C18243588_Joints_Ball2BodiesConstrained(self, request, workspace, editor, launcher_platform): - from . import C18243588_Joints_Ball2BodiesConstrained as test_module + from .joints import C18243588_Joints_Ball2BodiesConstrained as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -332,7 +332,7 @@ class TestAutomation(TestAutomationBase): # Removed from active suite to meet 60 minutes limit in AR job def test_C18243581_Joints_FixedBreakable(self, request, workspace, editor, launcher_platform): - from . import C18243581_Joints_FixedBreakable as test_module + from .joints import C18243581_Joints_FixedBreakable as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -340,7 +340,7 @@ class TestAutomation(TestAutomationBase): # Removed from active suite to meet 60 minutes limit in AR job def test_C18243587_Joints_HingeBreakable(self, request, workspace, editor, launcher_platform): - from . import C18243587_Joints_HingeBreakable as test_module + from .joints import C18243587_Joints_HingeBreakable as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -348,7 +348,7 @@ class TestAutomation(TestAutomationBase): # Removed from active suite to meet 60 minutes limit in AR job def test_C18243592_Joints_BallBreakable(self, request, workspace, editor, launcher_platform): - from . import C18243592_Joints_BallBreakable as test_module + from .joints import C18243592_Joints_BallBreakable as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -356,7 +356,7 @@ class TestAutomation(TestAutomationBase): # Removed from active suite to meet 60 minutes limit in AR job def test_C18243585_Joints_HingeNoLimitsConstrained(self, request, workspace, editor, launcher_platform): - from . import C18243585_Joints_HingeNoLimitsConstrained as test_module + from .joints import C18243585_Joints_HingeNoLimitsConstrained as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -364,7 +364,7 @@ class TestAutomation(TestAutomationBase): # Removed from active suite to meet 60 minutes limit in AR job def test_C18243590_Joints_BallNoLimitsConstrained(self, request, workspace, editor, launcher_platform): - from . import C18243590_Joints_BallNoLimitsConstrained as test_module + from .joints import C18243590_Joints_BallNoLimitsConstrained as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -372,7 +372,7 @@ class TestAutomation(TestAutomationBase): # Removed from active suite to meet 60 minutes limit in AR job def test_C18243582_Joints_FixedLeadFollowerCollide(self, request, workspace, editor, launcher_platform): - from . import C18243582_Joints_FixedLeadFollowerCollide as test_module + from .joints import C18243582_Joints_FixedLeadFollowerCollide as test_module expected_lines = [] unexpected_lines = ["Assert"] @@ -380,7 +380,7 @@ class TestAutomation(TestAutomationBase): # Removed from active suite to meet 60 minutes limit in AR job def test_C18243593_Joints_GlobalFrameConstrained(self, request, workspace, editor, launcher_platform): - from . import C18243593_Joints_GlobalFrameConstrained as test_module + from .joints import C18243593_Joints_GlobalFrameConstrained as test_module expected_lines = [] unexpected_lines = ["Assert"] diff --git a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main.py index bda4dae82b..c3f41b158f 100644 --- a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main.py @@ -12,7 +12,7 @@ import pytest import os import sys -from .FileManagement import FileManagement as fm +from .utils.FileManagement import FileManagement as fm from ly_test_tools import LAUNCHERS sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../automatedtesting_shared') @@ -29,58 +29,63 @@ revert_physics_config = fm.file_revert_list(['physxdebugconfiguration.setreg', ' class TestAutomation(TestAutomationBase): def test_C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC(self, request, workspace, editor, launcher_platform): - from . import C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC as test_module + from .collider import C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies(self, request, workspace, editor, launcher_platform): - from . import C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies as test_module + from .force_region import C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C4044459_Material_DynamicFriction.setreg_override', 'AutomatedTesting/Registry') def test_C4044459_Material_DynamicFriction(self, request, workspace, editor, launcher_platform): - from . import C4044459_Material_DynamicFriction as test_module + from .material import C4044459_Material_DynamicFriction as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4976243_Collision_SameCollisionGroupDiffCollisionLayers(self, request, workspace, editor, launcher_platform): - from . import C4976243_Collision_SameCollisionGroupDiffCollisionLayers as test_module + from .collider import C4976243_Collision_SameCollisionGroupDiffCollisionLayers as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C14654881_CharacterController_SwitchLevels(self, request, workspace, editor, launcher_platform): - from . import C14654881_CharacterController_SwitchLevels as test_module + from .character_controller import C14654881_CharacterController_SwitchLevels as test_module self._run_test(request, workspace, editor, test_module) def test_C17411467_AddPhysxRagdollComponent(self, request, workspace, editor, launcher_platform): - from . import C17411467_AddPhysxRagdollComponent as test_module + from .ragdoll import C17411467_AddPhysxRagdollComponent as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C12712453_ScriptCanvas_MultipleRaycastNode(self, request, workspace, editor, launcher_platform): - from . import C12712453_ScriptCanvas_MultipleRaycastNode as test_module + from .script_canvas import C12712453_ScriptCanvas_MultipleRaycastNode as test_module # Fixme: unexpected_lines = ["Assert"] + test_module.Lines.unexpected self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C4982593_PhysXCollider_CollisionLayer.setreg_override', 'AutomatedTesting/Registry') def test_C4982593_PhysXCollider_CollisionLayerTest(self, request, workspace, editor, launcher_platform): - from . import C4982593_PhysXCollider_CollisionLayerTest as test_module + from .collider import C4982593_PhysXCollider_CollisionLayerTest as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C18243586_Joints_HingeLeadFollowerCollide(self, request, workspace, editor, launcher_platform): - from . import C18243586_Joints_HingeLeadFollowerCollide as test_module + from .joints import C18243586_Joints_HingeLeadFollowerCollide as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4982803_Enable_PxMesh_Option(self, request, workspace, editor, launcher_platform): - from . import C4982803_Enable_PxMesh_Option as test_module + from .collider import C4982803_Enable_PxMesh_Option as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain(self, request, workspace, editor, launcher_platform): - from . import C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain as test_module + from .collider import C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain as test_module + self._run_test(request, workspace, editor, test_module) + + @revert_physics_config + def test_C15425929_Undo_Redo(self, request, workspace, editor, launcher_platform): + from .general import C15425929_Undo_Redo as test_module self._run_test(request, workspace, editor, test_module) \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main_Optimized.py b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main_Optimized.py new file mode 100644 index 0000000000..ce68bb10b5 --- /dev/null +++ b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main_Optimized.py @@ -0,0 +1,348 @@ +""" +Copyright (c) Contributors to the Open 3D Engine Project. +For complete copyright and license terms please see the LICENSE at the root of this distribution. + +SPDX-License-Identifier: Apache-2.0 OR MIT +""" + +import pytest +import os +import sys +import inspect + +from ly_test_tools import LAUNCHERS +from ly_test_tools.o3de.editor_test import EditorSingleTest, EditorSharedTest, EditorParallelTest, EditorTestSuite +from .utils.FileManagement import FileManagement as fm + +# Custom test spec, it provides functionality to override files +class EditorSingleTest_WithFileOverrides(EditorSingleTest): + # Specify here what files to override, [(original, override), ...] + files_to_override = [()] + # Base directory of the files (Default path is {ProjectName}) + base_dir = None + # True will will search sub-directories for the files in base + search_subdirs = False + + @classmethod + def wrap_run(cls, instance, request, workspace, editor, editor_test_results, launcher_platform): + root_path = cls.base_dir + if root_path is not None: + root_path = os.path.join(workspace.paths.engine_root(), root_path) + else: + # Default to project folder + root_path = workspace.paths.project() + + # Try to locate both target and source files + original_file_list, override_file_list = zip(*cls.files_to_override) + try: + file_list = fm._find_files(original_file_list + override_file_list, root_path, cls.search_subdirs) + except RuntimeWarning as w: + assert False, ( + w.message + + " Please check use of search_subdirs; make sure you are using the correct parent directory." + ) + + for f in original_file_list: + fm._restore_file(f, file_list[f]) + fm._backup_file(f, file_list[f]) + + for original, override in cls.files_to_override: + fm._copy_file(override, file_list[override], original, file_list[override]) + + yield # Run Test + for f in original_file_list: + fm._restore_file(f, file_list[f]) + + +@pytest.mark.SUITE_main +@pytest.mark.parametrize("launcher_platform", ['windows_editor']) +@pytest.mark.parametrize("project", ["AutomatedTesting"]) +class TestAutomation(EditorTestSuite): + + @staticmethod + def get_number_parallel_editors(): + return 16 + + ######################################### + # Non-atomic tests: These need to be run in a single editor because they have custom setup and teardown + class C4044459_Material_DynamicFriction(EditorSingleTest_WithFileOverrides): + from .material import C4044459_Material_DynamicFriction as test_module + files_to_override = [ + ('physxsystemconfiguration.setreg', 'C4044459_Material_DynamicFriction.setreg_override') + ] + base_dir = "AutomatedTesting/Registry" + + class C4982593_PhysXCollider_CollisionLayerTest(EditorSingleTest_WithFileOverrides): + from .collider import C4982593_PhysXCollider_CollisionLayerTest as test_module + files_to_override = [ + ('physxsystemconfiguration.setreg', 'C4982593_PhysXCollider_CollisionLayer.setreg_override') + ] + base_dir = "AutomatedTesting/Registry" + ######################################### + + class C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC(EditorSharedTest): + from .collider import C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC as test_module + + class C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies(EditorSharedTest): + from .force_region import C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies as test_module + + class C15425929_Undo_Redo(EditorSharedTest): + from .general import C15425929_Undo_Redo as test_module + + class C4976243_Collision_SameCollisionGroupDiffCollisionLayers(EditorSharedTest): + from .collider import C4976243_Collision_SameCollisionGroupDiffCollisionLayers as test_module + + class C14654881_CharacterController_SwitchLevels(EditorSharedTest): + from .character_controller import C14654881_CharacterController_SwitchLevels as test_module + + class C17411467_AddPhysxRagdollComponent(EditorSharedTest): + from .ragdoll import C17411467_AddPhysxRagdollComponent as test_module + + class C12712453_ScriptCanvas_MultipleRaycastNode(EditorSharedTest): + from .script_canvas import C12712453_ScriptCanvas_MultipleRaycastNode as test_module + + class C18243586_Joints_HingeLeadFollowerCollide(EditorSharedTest): + from .joints import C18243586_Joints_HingeLeadFollowerCollide as test_module + + class C4982803_Enable_PxMesh_Option(EditorSharedTest): + from .collider import C4982803_Enable_PxMesh_Option as test_module + + class C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain(EditorSharedTest): + from .collider import C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain as test_module + + class C3510642_Terrain_NotCollideWithTerrain(EditorSharedTest): + from .terrain import C3510642_Terrain_NotCollideWithTerrain as test_module + + class C4976195_RigidBodies_InitialLinearVelocity(EditorSharedTest): + from .rigid_body import C4976195_RigidBodies_InitialLinearVelocity as test_module + + class C4976206_RigidBodies_GravityEnabledActive(EditorSharedTest): + from .rigid_body import C4976206_RigidBodies_GravityEnabledActive as test_module + + class C4976207_PhysXRigidBodies_KinematicBehavior(EditorSharedTest): + from .rigid_body import C4976207_PhysXRigidBodies_KinematicBehavior as test_module + + class C5932042_PhysXForceRegion_LinearDamping(EditorSharedTest): + from .force_region import C5932042_PhysXForceRegion_LinearDamping as test_module + + class C5932043_ForceRegion_SimpleDragOnRigidBodies(EditorSharedTest): + from .force_region import C5932043_ForceRegion_SimpleDragOnRigidBodies as test_module + + class C5959760_PhysXForceRegion_PointForceExertion(EditorSharedTest): + from .force_region import C5959760_PhysXForceRegion_PointForceExertion as test_module + + class C5959764_ForceRegion_ForceRegionImpulsesCapsule(EditorSharedTest): + from .force_region import C5959764_ForceRegion_ForceRegionImpulsesCapsule as test_module + + class C5340400_RigidBody_ManualMomentOfInertia(EditorSharedTest): + from .rigid_body import C5340400_RigidBody_ManualMomentOfInertia as test_module + + class C4976210_COM_ManualSetting(EditorSharedTest): + from .rigid_body import C4976210_COM_ManualSetting as test_module + + class C4976194_RigidBody_PhysXComponentIsValid(EditorSharedTest): + from .rigid_body import C4976194_RigidBody_PhysXComponentIsValid as test_module + + class C5932045_ForceRegion_Spline(EditorSharedTest): + from .force_region import C5932045_ForceRegion_Spline as test_module + + class C4982797_Collider_ColliderOffset(EditorSharedTest): + from .collider import C4982797_Collider_ColliderOffset as test_module + + class C4976200_RigidBody_AngularDampingObjectRotation(EditorSharedTest): + from .rigid_body import C4976200_RigidBody_AngularDampingObjectRotation as test_module + + class C5689529_Verify_Terrain_RigidBody_Collider_Mesh(EditorSharedTest): + from .general import C5689529_Verify_Terrain_RigidBody_Collider_Mesh as test_module + + class C5959810_ForceRegion_ForceRegionCombinesForces(EditorSharedTest): + from .force_region import C5959810_ForceRegion_ForceRegionCombinesForces as test_module + + class C5959765_ForceRegion_AssetGetsImpulsed(EditorSharedTest): + from .force_region import C5959765_ForceRegion_AssetGetsImpulsed as test_module + + class C6274125_ScriptCanvas_TriggerEvents(EditorSharedTest): + from .script_canvas import C6274125_ScriptCanvas_TriggerEvents as test_module + # needs to be updated to log for unexpected lines + # expected_lines = test_module.LogLines.expected_lines + + class C6090554_ForceRegion_PointForceNegative(EditorSharedTest): + from .force_region import C6090554_ForceRegion_PointForceNegative as test_module + + class C6090550_ForceRegion_WorldSpaceForceNegative(EditorSharedTest): + from .force_region import C6090550_ForceRegion_WorldSpaceForceNegative as test_module + + class C6090552_ForceRegion_LinearDampingNegative(EditorSharedTest): + from .force_region import C6090552_ForceRegion_LinearDampingNegative as test_module + + class C5968760_ForceRegion_CheckNetForceChange(EditorSharedTest): + from .force_region import C5968760_ForceRegion_CheckNetForceChange as test_module + + class C12712452_ScriptCanvas_CollisionEvents(EditorSharedTest): + from .script_canvas import C12712452_ScriptCanvas_CollisionEvents as test_module + + class C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude(EditorSharedTest): + from .force_region import C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude as test_module + + class C4976204_Verify_Start_Asleep_Condition(EditorSharedTest): + from .rigid_body import C4976204_Verify_Start_Asleep_Condition as test_module + + class C6090546_ForceRegion_SliceFileInstantiates(EditorSharedTest): + from .force_region import C6090546_ForceRegion_SliceFileInstantiates as test_module + + class C6090551_ForceRegion_LocalSpaceForceNegative(EditorSharedTest): + from .force_region import C6090551_ForceRegion_LocalSpaceForceNegative as test_module + + class C6090553_ForceRegion_SimpleDragForceOnRigidBodies(EditorSharedTest): + from .force_region import C6090553_ForceRegion_SimpleDragForceOnRigidBodies as test_module + + class C4976209_RigidBody_ComputesCOM(EditorSharedTest): + from .rigid_body import C4976209_RigidBody_ComputesCOM as test_module + + class C4976201_RigidBody_MassIsAssigned(EditorSharedTest): + from .rigid_body import C4976201_RigidBody_MassIsAssigned as test_module + + class C12868580_ForceRegion_SplineModifiedTransform(EditorSharedTest): + from .force_region import C12868580_ForceRegion_SplineModifiedTransform as test_module + + class C12712455_ScriptCanvas_ShapeCastVerification(EditorSharedTest): + from .script_canvas import C12712455_ScriptCanvas_ShapeCastVerification as test_module + + class C4976197_RigidBodies_InitialAngularVelocity(EditorSharedTest): + from .rigid_body import C4976197_RigidBodies_InitialAngularVelocity as test_module + + class C6090555_ForceRegion_SplineFollowOnRigidBodies(EditorSharedTest): + from .force_region import C6090555_ForceRegion_SplineFollowOnRigidBodies as test_module + + class C6131473_StaticSlice_OnDynamicSliceSpawn(EditorSharedTest): + from .general import C6131473_StaticSlice_OnDynamicSliceSpawn as test_module + + class C5959808_ForceRegion_PositionOffset(EditorSharedTest): + from .force_region import C5959808_ForceRegion_PositionOffset as test_module + + @pytest.mark.xfail(reason="Something with the CryRenderer disabling is causing this test to fail now.") + class C13895144_Ragdoll_ChangeLevel(EditorSharedTest): + from .ragdoll import C13895144_Ragdoll_ChangeLevel as test_module + + class C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody(EditorSharedTest): + from .force_region import C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody as test_module + + @pytest.mark.xfail(reason="This test will sometimes fail as the ball will continue to roll before the timeout is reached.") + class C4976202_RigidBody_StopsWhenBelowKineticThreshold(EditorSharedTest): + from .rigid_body import C4976202_RigidBody_StopsWhenBelowKineticThreshold as test_module + + class C13351703_COM_NotIncludeTriggerShapes(EditorSharedTest): + from .rigid_body import C13351703_COM_NotIncludeTriggerShapes as test_module + + class C5296614_PhysXMaterial_ColliderShape(EditorSharedTest): + from .material import C5296614_PhysXMaterial_ColliderShape as test_module + + class C4982595_Collider_TriggerDisablesCollision(EditorSharedTest): + from .collider import C4982595_Collider_TriggerDisablesCollision as test_module + + class C14976307_Gravity_SetGravityWorks(EditorSharedTest): + from .general import C14976307_Gravity_SetGravityWorks as test_module + + class C4044694_Material_EmptyLibraryUsesDefault(EditorSharedTest): + from .material import C4044694_Material_EmptyLibraryUsesDefault as test_module + + class C15845879_ForceRegion_HighLinearDampingForce(EditorSharedTest): + from .force_region import C15845879_ForceRegion_HighLinearDampingForce as test_module + + class C4976218_RigidBodies_InertiaObjectsNotComputed(EditorSharedTest): + from .rigid_body import C4976218_RigidBodies_InertiaObjectsNotComputed as test_module + + class C14902098_ScriptCanvas_PostPhysicsUpdate(EditorSharedTest): + from .script_canvas import C14902098_ScriptCanvas_PostPhysicsUpdate as test_module + # Note: Test needs to be updated to log for unexpected lines + # unexpected_lines = ["Assert"] + test_module.Lines.unexpected + + class C5959761_ForceRegion_PhysAssetExertsPointForce(EditorSharedTest): + from .force_region import C5959761_ForceRegion_PhysAssetExertsPointForce as test_module + + # Marking the Test as expected to fail using the xfail decorator due to sporadic failure on Automated Review: SPEC-3146 + # The test still runs, but a failure of the test doesn't result in the test run failing + @pytest.mark.xfail(reason="Test Sporadically fails with message [ NOT FOUND ] Success: Bar1 : Expected angular velocity") + class C13352089_RigidBodies_MaxAngularVelocity(EditorSharedTest): + from .rigid_body import C13352089_RigidBodies_MaxAngularVelocity as test_module + + class C18243584_Joints_HingeSoftLimitsConstrained(EditorSharedTest): + from .joints import C18243584_Joints_HingeSoftLimitsConstrained as test_module + + class C18243589_Joints_BallSoftLimitsConstrained(EditorSharedTest): + from .joints import C18243589_Joints_BallSoftLimitsConstrained as test_module + + class C18243591_Joints_BallLeadFollowerCollide(EditorSharedTest): + from .joints import C18243591_Joints_BallLeadFollowerCollide as test_module + + class C19578018_ShapeColliderWithNoShapeComponent(EditorSharedTest): + from .collider import C19578018_ShapeColliderWithNoShapeComponent as test_module + + class C14861500_DefaultSetting_ColliderShape(EditorSharedTest): + from .collider import C14861500_DefaultSetting_ColliderShape as test_module + + class C19723164_ShapeCollider_WontCrashEditor(EditorSharedTest): + from .collider import C19723164_ShapeColliders_WontCrashEditor as test_module + + class C4982800_PhysXColliderShape_CanBeSelected(EditorSharedTest): + from .collider import C4982800_PhysXColliderShape_CanBeSelected as test_module + + class C4982801_PhysXColliderShape_CanBeSelected(EditorSharedTest): + from .collider import C4982801_PhysXColliderShape_CanBeSelected as test_module + + class C4982802_PhysXColliderShape_CanBeSelected(EditorSharedTest): + from .collider import C4982802_PhysXColliderShape_CanBeSelected as test_module + + class C12905528_ForceRegion_WithNonTriggerCollider(EditorSharedTest): + from .force_region import C12905528_ForceRegion_WithNonTriggerCollider as test_module + # Fixme: expected_lines = ["[Warning] (PhysX Force Region) - Please ensure collider component marked as trigger exists in entity"] + + class C5932040_ForceRegion_CubeExertsWorldForce(EditorSharedTest): + from .force_region import C5932040_ForceRegion_CubeExertsWorldForce as test_module + + class C5932044_ForceRegion_PointForceOnRigidBody(EditorSharedTest): + from .force_region import C5932044_ForceRegion_PointForceOnRigidBody as test_module + + class C5959759_RigidBody_ForceRegionSpherePointForce(EditorSharedTest): + from .force_region import C5959759_RigidBody_ForceRegionSpherePointForce as test_module + + class C5959809_ForceRegion_RotationalOffset(EditorSharedTest): + from .force_region import C5959809_ForceRegion_RotationalOffset as test_module + + class C15096740_Material_LibraryUpdatedCorrectly(EditorSharedTest): + from .material import C15096740_Material_LibraryUpdatedCorrectly as test_module + + class C4976236_AddPhysxColliderComponent(EditorSharedTest): + from .collider import C4976236_AddPhysxColliderComponent as test_module + + + @pytest.mark.xfail(reason="This will fail due to this issue ATOM-15487.") + class C14861502_PhysXCollider_AssetAutoAssigned(EditorSharedTest): + from .collider import C14861502_PhysXCollider_AssetAutoAssigned as test_module + + class C14861501_PhysXCollider_RenderMeshAutoAssigned(EditorSharedTest): + from .collider import C14861501_PhysXCollider_RenderMeshAutoAssigned as test_module + + class C4044695_PhysXCollider_AddMultipleSurfaceFbx(EditorSharedTest): + from .collider import C4044695_PhysXCollider_AddMultipleSurfaceFbx as test_module + + class C14861504_RenderMeshAsset_WithNoPxAsset(EditorSharedTest): + from .collider import C14861504_RenderMeshAsset_WithNoPxAsset as test_module + + class C100000_RigidBody_EnablingGravityWorksPoC(EditorSharedTest): + from .collider import C100000_RigidBody_EnablingGravityWorksPoC as test_module + + class C4982798_Collider_ColliderRotationOffset(EditorSharedTest): + from .collider import C4982798_Collider_ColliderRotationOffset as test_module + + class C15308217_NoCrash_LevelSwitch(EditorSharedTest): + from .terrain import C15308217_NoCrash_LevelSwitch as test_module + + class C6090547_ForceRegion_ParentChildForceRegions(EditorSharedTest): + from .force_region import C6090547_ForceRegion_ParentChildForceRegions as test_module + + class C19578021_ShapeCollider_CanBeAdded(EditorSharedTest): + from .collider import C19578021_ShapeCollider_CanBeAdded as test_module + + class C15425929_Undo_Redo(EditorSharedTest): + from .general import C15425929_Undo_Redo as test_module diff --git a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main_Test.py b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main_Test.py deleted file mode 100644 index 6b940f93d1..0000000000 --- a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main_Test.py +++ /dev/null @@ -1,105 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -import pytest -import os -import sys -import inspect - -from ly_test_tools import LAUNCHERS -from ly_test_tools.o3de.editor_test import EditorSingleTest, EditorSharedTest, EditorParallelTest, EditorTestSuite -from .FileManagement import FileManagement as fm - -# Custom test spec, it provides functionality to override files -class EditorSingleTest_WithFileOverrides(EditorSingleTest): - # Specify here what files to override, [(original, override), ...] - files_to_override = [()] - # Base directory of the files (Default path is {ProjectName}) - base_dir = None - # True will will search sub-directories for the files in base - search_subdirs = False - - @classmethod - def wrap_run(cls, instance, request, workspace, editor, editor_test_results, launcher_platform): - root_path = cls.base_dir - if root_path is not None: - root_path = os.path.join(workspace.paths.engine_root(), root_path) - else: - # Default to project folder - root_path = workspace.paths.project() - - # Try to locate both target and source files - original_file_list, override_file_list = zip(*cls.files_to_override) - try: - file_list = fm._find_files(original_file_list + override_file_list, root_path, cls.search_subdirs) - except RuntimeWarning as w: - assert False, ( - w.message - + " Please check use of search_subdirs; make sure you are using the correct parent directory." - ) - - for f in original_file_list: - fm._restore_file(f, file_list[f]) - fm._backup_file(f, file_list[f]) - - for original, override in cls.files_to_override: - fm._copy_file(override, file_list[override], original, file_list[override]) - - yield # Run Test - for f in original_file_list: - fm._restore_file(f, file_list[f]) - - -@pytest.mark.SUITE_main -@pytest.mark.parametrize("launcher_platform", ['windows_editor']) -@pytest.mark.parametrize("project", ["AutomatedTesting"]) -class TestAutomation(EditorTestSuite): - - class C4044459_Material_DynamicFriction(EditorSingleTest_WithFileOverrides): - from . import C4044459_Material_DynamicFriction as test_module - files_to_override = [ - ('physxsystemconfiguration.setreg', 'C4044459_Material_DynamicFriction.setreg_override') - ] - base_dir = "AutomatedTesting/Registry" - - class C4982593_PhysXCollider_CollisionLayerTest(EditorSingleTest_WithFileOverrides): - from . import C4982593_PhysXCollider_CollisionLayerTest as test_module - files_to_override = [ - ('physxsystemconfiguration.setreg', 'C4982593_PhysXCollider_CollisionLayer.setreg_override') - ] - base_dir = "AutomatedTesting/Registry" - - class C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC(EditorSharedTest): - from . import C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC as test_module - - class C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies(EditorSharedTest): - from . import C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies as test_module - - class C15425929_Undo_Redo(EditorSharedTest): - from . import C15425929_Undo_Redo as test_module - - class C4976243_Collision_SameCollisionGroupDiffCollisionLayers(EditorSharedTest): - from . import C4976243_Collision_SameCollisionGroupDiffCollisionLayers as test_module - - class C14654881_CharacterController_SwitchLevels(EditorSharedTest): - from . import C14654881_CharacterController_SwitchLevels as test_module - - class C17411467_AddPhysxRagdollComponent(EditorSharedTest): - from . import C17411467_AddPhysxRagdollComponent as test_module - - class C12712453_ScriptCanvas_MultipleRaycastNode(EditorSharedTest): - from . import C12712453_ScriptCanvas_MultipleRaycastNode as test_module - - class C18243586_Joints_HingeLeadFollowerCollide(EditorSharedTest): - from . import C18243586_Joints_HingeLeadFollowerCollide as test_module - - class C4982803_Enable_PxMesh_Option(EditorSharedTest): - from . import C4982803_Enable_PxMesh_Option as test_module - - class C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain(EditorSharedTest): - from . import C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain as test_module - diff --git a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Periodic.py b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Periodic.py index 3d86db1014..fca7e0e3af 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Periodic.py +++ b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Periodic.py @@ -12,7 +12,7 @@ import pytest import os import sys -from .FileManagement import FileManagement as fm +from .utils.FileManagement import FileManagement as fm from ly_test_tools import LAUNCHERS sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../automatedtesting_shared') @@ -30,219 +30,219 @@ class TestAutomation(TestAutomationBase): @revert_physics_config def test_C3510642_Terrain_NotCollideWithTerrain(self, request, workspace, editor, launcher_platform): - from . import C3510642_Terrain_NotCollideWithTerrain as test_module + from .terrain import C3510642_Terrain_NotCollideWithTerrain as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4976195_RigidBodies_InitialLinearVelocity(self, request, workspace, editor, launcher_platform): - from . import C4976195_RigidBodies_InitialLinearVelocity as test_module + from .rigid_body import C4976195_RigidBodies_InitialLinearVelocity as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4976206_RigidBodies_GravityEnabledActive(self, request, workspace, editor, launcher_platform): - from . import C4976206_RigidBodies_GravityEnabledActive as test_module + from .rigid_body import C4976206_RigidBodies_GravityEnabledActive as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4976207_PhysXRigidBodies_KinematicBehavior(self, request, workspace, editor, launcher_platform): - from . import C4976207_PhysXRigidBodies_KinematicBehavior as test_module + from .rigid_body import C4976207_PhysXRigidBodies_KinematicBehavior as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5932042_PhysXForceRegion_LinearDamping(self, request, workspace, editor, launcher_platform): - from . import C5932042_PhysXForceRegion_LinearDamping as test_module + from .force_region import C5932042_PhysXForceRegion_LinearDamping as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5932043_ForceRegion_SimpleDragOnRigidBodies(self, request, workspace, editor, launcher_platform): - from . import C5932043_ForceRegion_SimpleDragOnRigidBodies as test_module + from .force_region import C5932043_ForceRegion_SimpleDragOnRigidBodies as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5959760_PhysXForceRegion_PointForceExertion(self, request, workspace, editor, launcher_platform): - from . import C5959760_PhysXForceRegion_PointForceExertion as test_module + from .force_region import C5959760_PhysXForceRegion_PointForceExertion as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5959764_ForceRegion_ForceRegionImpulsesCapsule(self, request, workspace, editor, launcher_platform): - from . import C5959764_ForceRegion_ForceRegionImpulsesCapsule as test_module + from .force_region import C5959764_ForceRegion_ForceRegionImpulsesCapsule as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5340400_RigidBody_ManualMomentOfInertia(self, request, workspace, editor, launcher_platform): - from . import C5340400_RigidBody_ManualMomentOfInertia as test_module + from .rigid_body import C5340400_RigidBody_ManualMomentOfInertia as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4976210_COM_ManualSetting(self, request, workspace, editor, launcher_platform): - from . import C4976210_COM_ManualSetting as test_module + from .rigid_body import C4976210_COM_ManualSetting as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4976194_RigidBody_PhysXComponentIsValid(self, request, workspace, editor, launcher_platform): - from . import C4976194_RigidBody_PhysXComponentIsValid as test_module + from .rigid_body import C4976194_RigidBody_PhysXComponentIsValid as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5932045_ForceRegion_Spline(self, request, workspace, editor, launcher_platform): - from . import C5932045_ForceRegion_Spline as test_module + from .force_region import C5932045_ForceRegion_Spline as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C4044457_Material_RestitutionCombine.setreg_override', 'AutomatedTesting/Registry') def test_C4044457_Material_RestitutionCombine(self, request, workspace, editor, launcher_platform): - from . import C4044457_Material_RestitutionCombine as test_module + from .material import C4044457_Material_RestitutionCombine as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C4044456_Material_FrictionCombine.setreg_override', 'AutomatedTesting/Registry') def test_C4044456_Material_FrictionCombine(self, request, workspace, editor, launcher_platform): - from . import C4044456_Material_FrictionCombine as test_module + from .material import C4044456_Material_FrictionCombine as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4982797_Collider_ColliderOffset(self, request, workspace, editor, launcher_platform): - from . import C4982797_Collider_ColliderOffset as test_module + from .collider import C4982797_Collider_ColliderOffset as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4976200_RigidBody_AngularDampingObjectRotation(self, request, workspace, editor, launcher_platform): - from . import C4976200_RigidBody_AngularDampingObjectRotation as test_module + from .rigid_body import C4976200_RigidBody_AngularDampingObjectRotation as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5689529_Verify_Terrain_RigidBody_Collider_Mesh(self, request, workspace, editor, launcher_platform): - from . import C5689529_Verify_Terrain_RigidBody_Collider_Mesh as test_module + from .general import C5689529_Verify_Terrain_RigidBody_Collider_Mesh as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5959810_ForceRegion_ForceRegionCombinesForces(self, request, workspace, editor, launcher_platform): - from . import C5959810_ForceRegion_ForceRegionCombinesForces as test_module + from .force_region import C5959810_ForceRegion_ForceRegionCombinesForces as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5959765_ForceRegion_AssetGetsImpulsed(self, request, workspace, editor, launcher_platform): - from . import C5959765_ForceRegion_AssetGetsImpulsed as test_module + from .force_region import C5959765_ForceRegion_AssetGetsImpulsed as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C6274125_ScriptCanvas_TriggerEvents(self, request, workspace, editor, launcher_platform): - from . import C6274125_ScriptCanvas_TriggerEvents as test_module + from .script_canvas import C6274125_ScriptCanvas_TriggerEvents as test_module # FIXME: expected_lines = test_module.LogLines.expected_lines self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C6090554_ForceRegion_PointForceNegative(self, request, workspace, editor, launcher_platform): - from . import C6090554_ForceRegion_PointForceNegative as test_module + from .force_region import C6090554_ForceRegion_PointForceNegative as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C6090550_ForceRegion_WorldSpaceForceNegative(self, request, workspace, editor, launcher_platform): - from . import C6090550_ForceRegion_WorldSpaceForceNegative as test_module + from .force_region import C6090550_ForceRegion_WorldSpaceForceNegative as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C6090552_ForceRegion_LinearDampingNegative(self, request, workspace, editor, launcher_platform): - from . import C6090552_ForceRegion_LinearDampingNegative as test_module + from .force_region import C6090552_ForceRegion_LinearDampingNegative as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5968760_ForceRegion_CheckNetForceChange(self, request, workspace, editor, launcher_platform): - from . import C5968760_ForceRegion_CheckNetForceChange as test_module + from .force_region import C5968760_ForceRegion_CheckNetForceChange as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C12712452_ScriptCanvas_CollisionEvents(self, request, workspace, editor, launcher_platform): - from . import C12712452_ScriptCanvas_CollisionEvents as test_module + from .script_canvas import C12712452_ScriptCanvas_CollisionEvents as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude(self, request, workspace, editor, launcher_platform): - from . import C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude as test_module + from .force_region import C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4976204_Verify_Start_Asleep_Condition(self, request, workspace, editor, launcher_platform): - from . import C4976204_Verify_Start_Asleep_Condition as test_module + from .rigid_body import C4976204_Verify_Start_Asleep_Condition as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C6090546_ForceRegion_SliceFileInstantiates(self, request, workspace, editor, launcher_platform): - from . import C6090546_ForceRegion_SliceFileInstantiates as test_module + from .force_region import C6090546_ForceRegion_SliceFileInstantiates as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C6090551_ForceRegion_LocalSpaceForceNegative(self, request, workspace, editor, launcher_platform): - from . import C6090551_ForceRegion_LocalSpaceForceNegative as test_module + from .force_region import C6090551_ForceRegion_LocalSpaceForceNegative as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C6090553_ForceRegion_SimpleDragForceOnRigidBodies(self, request, workspace, editor, launcher_platform): - from . import C6090553_ForceRegion_SimpleDragForceOnRigidBodies as test_module + from .force_region import C6090553_ForceRegion_SimpleDragForceOnRigidBodies as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4976209_RigidBody_ComputesCOM(self, request, workspace, editor, launcher_platform): - from . import C4976209_RigidBody_ComputesCOM as test_module + from .rigid_body import C4976209_RigidBody_ComputesCOM as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4976201_RigidBody_MassIsAssigned(self, request, workspace, editor, launcher_platform): - from . import C4976201_RigidBody_MassIsAssigned as test_module + from .rigid_body import C4976201_RigidBody_MassIsAssigned as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C18981526_Material_RestitutionCombinePriority.setreg_override', 'AutomatedTesting/Registry') def test_C18981526_Material_RestitutionCombinePriority(self, request, workspace, editor, launcher_platform): - from . import C18981526_Material_RestitutionCombinePriority as test_module + from .material import C18981526_Material_RestitutionCombinePriority as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C12868580_ForceRegion_SplineModifiedTransform(self, request, workspace, editor, launcher_platform): - from . import C12868580_ForceRegion_SplineModifiedTransform as test_module + from .force_region import C12868580_ForceRegion_SplineModifiedTransform as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C12712455_ScriptCanvas_ShapeCastVerification(self, request, workspace, editor, launcher_platform): - from . import C12712455_ScriptCanvas_ShapeCastVerification as test_module + from .script_canvas import C12712455_ScriptCanvas_ShapeCastVerification as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4976197_RigidBodies_InitialAngularVelocity(self, request, workspace, editor, launcher_platform): - from . import C4976197_RigidBodies_InitialAngularVelocity as test_module + from .rigid_body import C4976197_RigidBodies_InitialAngularVelocity as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C6090555_ForceRegion_SplineFollowOnRigidBodies(self, request, workspace, editor, launcher_platform): - from . import C6090555_ForceRegion_SplineFollowOnRigidBodies as test_module + from .force_region import C6090555_ForceRegion_SplineFollowOnRigidBodies as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C6131473_StaticSlice_OnDynamicSliceSpawn(self, request, workspace, editor, launcher_platform): - from . import C6131473_StaticSlice_OnDynamicSliceSpawn as test_module + from .general import C6131473_StaticSlice_OnDynamicSliceSpawn as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5959808_ForceRegion_PositionOffset(self, request, workspace, editor, launcher_platform): - from . import C5959808_ForceRegion_PositionOffset as test_module + from .force_region import C5959808_ForceRegion_PositionOffset as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C18977601_Material_FrictionCombinePriority.setreg_override', 'AutomatedTesting/Registry') def test_C18977601_Material_FrictionCombinePriority(self, request, workspace, editor, launcher_platform): - from . import C18977601_Material_FrictionCombinePriority as test_module + from .material import C18977601_Material_FrictionCombinePriority as test_module self._run_test(request, workspace, editor, test_module) @pytest.mark.xfail( reason="Something with the CryRenderer disabling is causing this test to fail now.") @revert_physics_config def test_C13895144_Ragdoll_ChangeLevel(self, request, workspace, editor, launcher_platform): - from . import C13895144_Ragdoll_ChangeLevel as test_module + from .ragdoll import C13895144_Ragdoll_ChangeLevel as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody(self, request, workspace, editor, launcher_platform): - from . import C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody as test_module + from .force_region import C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody as test_module self._run_test(request, workspace, editor, test_module) # Marking the test as an expected failure due to sporadic failure on Automated Review: LYN-2580 @@ -252,96 +252,96 @@ class TestAutomation(TestAutomationBase): @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C4044697_Material_PerfaceMaterialValidation.setreg_override', 'AutomatedTesting/Registry') def test_C4044697_Material_PerfaceMaterialValidation(self, request, workspace, editor, launcher_platform): - from . import C4044697_Material_PerfaceMaterialValidation as test_module + from .material import C4044697_Material_PerfaceMaterialValidation as test_module self._run_test(request, workspace, editor, test_module) @pytest.mark.xfail( reason="This test will sometimes fail as the ball will continue to roll before the timeout is reached.") @revert_physics_config def test_C4976202_RigidBody_StopsWhenBelowKineticThreshold(self, request, workspace, editor, launcher_platform): - from . import C4976202_RigidBody_StopsWhenBelowKineticThreshold as test_module + from .rigid_body import C4976202_RigidBody_StopsWhenBelowKineticThreshold as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C13351703_COM_NotIncludeTriggerShapes(self, request, workspace, editor, launcher_platform): - from . import C13351703_COM_NotIncludeTriggerShapes as test_module + from .rigid_body import C13351703_COM_NotIncludeTriggerShapes as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5296614_PhysXMaterial_ColliderShape(self, request, workspace, editor, launcher_platform): - from . import C5296614_PhysXMaterial_ColliderShape as test_module + from .material import C5296614_PhysXMaterial_ColliderShape as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4982595_Collider_TriggerDisablesCollision(self, request, workspace, editor, launcher_platform): - from . import C4982595_Collider_TriggerDisablesCollision as test_module + from .collider import C4982595_Collider_TriggerDisablesCollision as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C14976307_Gravity_SetGravityWorks(self, request, workspace, editor, launcher_platform): - from . import C14976307_Gravity_SetGravityWorks as test_module + from .general import C14976307_Gravity_SetGravityWorks as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.setreg_override', 'AutomatedTesting/Registry') def test_C15556261_PhysXMaterials_CharacterControllerMaterialAssignment(self, request, workspace, editor, launcher_platform): - from . import C15556261_PhysXMaterials_CharacterControllerMaterialAssignment as test_module + from .material import C15556261_PhysXMaterials_CharacterControllerMaterialAssignment as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4044694_Material_EmptyLibraryUsesDefault(self, request, workspace, editor, launcher_platform): - from . import C4044694_Material_EmptyLibraryUsesDefault as test_module + from .material import C4044694_Material_EmptyLibraryUsesDefault as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C15845879_ForceRegion_HighLinearDampingForce(self, request, workspace, editor, launcher_platform): - from . import C15845879_ForceRegion_HighLinearDampingForce as test_module + from .force_region import C15845879_ForceRegion_HighLinearDampingForce as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4976218_RigidBodies_InertiaObjectsNotComputed(self, request, workspace, editor, launcher_platform): - from . import C4976218_RigidBodies_InertiaObjectsNotComputed as test_module + from .rigid_body import C4976218_RigidBodies_InertiaObjectsNotComputed as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C14902098_ScriptCanvas_PostPhysicsUpdate(self, request, workspace, editor, launcher_platform): - from . import C14902098_ScriptCanvas_PostPhysicsUpdate as test_module + from .script_canvas import C14902098_ScriptCanvas_PostPhysicsUpdate as test_module # Fixme: unexpected_lines = ["Assert"] + test_module.Lines.unexpected self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C4976245_PhysXCollider_CollisionLayerTest.setreg_override', 'AutomatedTesting/Registry') def test_C4976245_PhysXCollider_CollisionLayerTest(self, request, workspace, editor, launcher_platform): - from . import C4976245_PhysXCollider_CollisionLayerTest as test_module + from .collider import C4976245_PhysXCollider_CollisionLayerTest as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C4976244_Collider_SameGroupSameLayerCollision.setreg_override', 'AutomatedTesting/Registry') def test_C4976244_Collider_SameGroupSameLayerCollision(self, request, workspace, editor, launcher_platform): - from . import C4976244_Collider_SameGroupSameLayerCollision as test_module + from .collider import C4976244_Collider_SameGroupSameLayerCollision as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxdefaultsceneconfiguration.setreg','C14195074_ScriptCanvas_PostUpdateEvent.setreg_override', 'AutomatedTesting/Registry') def test_C14195074_ScriptCanvas_PostUpdateEvent(self, request, workspace, editor, launcher_platform): - from . import C14195074_ScriptCanvas_PostUpdateEvent as test_module + from .script_canvas import C14195074_ScriptCanvas_PostUpdateEvent as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C4044461_Material_Restitution.setreg_override', 'AutomatedTesting/Registry') def test_C4044461_Material_Restitution(self, request, workspace, editor, launcher_platform): - from . import C4044461_Material_Restitution as test_module + from .material import C4044461_Material_Restitution as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxdefaultsceneconfiguration.setreg','C14902097_ScriptCanvas_PreUpdateEvent.setreg_override', 'AutomatedTesting/Registry') def test_C14902097_ScriptCanvas_PreUpdateEvent(self, request, workspace, editor, launcher_platform): - from . import C14902097_ScriptCanvas_PreUpdateEvent as test_module + from .script_canvas import C14902097_ScriptCanvas_PreUpdateEvent as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C5959761_ForceRegion_PhysAssetExertsPointForce(self, request, workspace, editor, launcher_platform): - from . import C5959761_ForceRegion_PhysAssetExertsPointForce as test_module + from .force_region import C5959761_ForceRegion_PhysAssetExertsPointForce as test_module self._run_test(request, workspace, editor, test_module) # Marking the Test as expected to fail using the xfail decorator due to sporadic failure on Automated Review: SPEC-3146 @@ -349,138 +349,138 @@ class TestAutomation(TestAutomationBase): @pytest.mark.xfail(reason="Test Sporadically fails with message [ NOT FOUND ] Success: Bar1 : Expected angular velocity") @revert_physics_config def test_C13352089_RigidBodies_MaxAngularVelocity(self, request, workspace, editor, launcher_platform): - from . import C13352089_RigidBodies_MaxAngularVelocity as test_module + from .rigid_body import C13352089_RigidBodies_MaxAngularVelocity as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C18243584_Joints_HingeSoftLimitsConstrained(self, request, workspace, editor, launcher_platform): - from . import C18243584_Joints_HingeSoftLimitsConstrained as test_module + from .joints import C18243584_Joints_HingeSoftLimitsConstrained as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C18243589_Joints_BallSoftLimitsConstrained(self, request, workspace, editor, launcher_platform): - from . import C18243589_Joints_BallSoftLimitsConstrained as test_module + from .joints import C18243589_Joints_BallSoftLimitsConstrained as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C18243591_Joints_BallLeadFollowerCollide(self, request, workspace, editor, launcher_platform): - from . import C18243591_Joints_BallLeadFollowerCollide as test_module + from .joints import C18243591_Joints_BallLeadFollowerCollide as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C4976227_Collider_NewGroup.setreg_override', 'AutomatedTesting/Registry') def test_C4976227_Collider_NewGroup(self, request, workspace, editor, launcher_platform): - from . import C4976227_Collider_NewGroup as test_module + from .collider import C4976227_Collider_NewGroup as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C19578018_ShapeColliderWithNoShapeComponent(self, request, workspace, editor, launcher_platform): - from . import C19578018_ShapeColliderWithNoShapeComponent as test_module + from .collider import C19578018_ShapeColliderWithNoShapeComponent as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C14861500_DefaultSetting_ColliderShape(self, request, workspace, editor, launcher_platform): - from . import C14861500_DefaultSetting_ColliderShape as test_module + from .collider import C14861500_DefaultSetting_ColliderShape as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C19723164_ShapeCollider_WontCrashEditor(self, request, workspace, editor, launcher_platform): - from . import C19723164_ShapeColliders_WontCrashEditor as test_module + from .collider import C19723164_ShapeColliders_WontCrashEditor as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4982800_PhysXColliderShape_CanBeSelected(self, request, workspace, editor, launcher_platform): - from . import C4982800_PhysXColliderShape_CanBeSelected as test_module + from .collider import C4982800_PhysXColliderShape_CanBeSelected as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4982801_PhysXColliderShape_CanBeSelected(self, request, workspace, editor, launcher_platform): - from . import C4982801_PhysXColliderShape_CanBeSelected as test_module + from .collider import C4982801_PhysXColliderShape_CanBeSelected as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4982802_PhysXColliderShape_CanBeSelected(self, request, workspace, editor, launcher_platform): - from . import C4982802_PhysXColliderShape_CanBeSelected as test_module + from .collider import C4982802_PhysXColliderShape_CanBeSelected as test_module self._run_test(request, workspace, editor, test_module) def test_C12905528_ForceRegion_WithNonTriggerCollider(self, request, workspace, editor, launcher_platform): - from . import C12905528_ForceRegion_WithNonTriggerCollider as test_module + from .force_region import C12905528_ForceRegion_WithNonTriggerCollider as test_module # Fixme: expected_lines = ["[Warning] (PhysX Force Region) - Please ensure collider component marked as trigger exists in entity"] self._run_test(request, workspace, editor, test_module) def test_C5932040_ForceRegion_CubeExertsWorldForce(self, request, workspace, editor, launcher_platform): - from . import C5932040_ForceRegion_CubeExertsWorldForce as test_module + from .force_region import C5932040_ForceRegion_CubeExertsWorldForce as test_module self._run_test(request, workspace, editor, test_module) def test_C5932044_ForceRegion_PointForceOnRigidBody(self, request, workspace, editor, launcher_platform): - from . import C5932044_ForceRegion_PointForceOnRigidBody as test_module + from .force_region import C5932044_ForceRegion_PointForceOnRigidBody as test_module self._run_test(request, workspace, editor, test_module) def test_C5959759_RigidBody_ForceRegionSpherePointForce(self, request, workspace, editor, launcher_platform): - from . import C5959759_RigidBody_ForceRegionSpherePointForce as test_module + from .force_region import C5959759_RigidBody_ForceRegionSpherePointForce as test_module self._run_test(request, workspace, editor, test_module) def test_C5959809_ForceRegion_RotationalOffset(self, request, workspace, editor, launcher_platform): - from . import C5959809_ForceRegion_RotationalOffset as test_module + from .force_region import C5959809_ForceRegion_RotationalOffset as test_module self._run_test(request, workspace, editor, test_module) def test_C15096740_Material_LibraryUpdatedCorrectly(self, request, workspace, editor, launcher_platform): - from . import C15096740_Material_LibraryUpdatedCorrectly as test_module + from .material import C15096740_Material_LibraryUpdatedCorrectly as test_module self._run_test(request, workspace, editor, test_module) def test_C4976236_AddPhysxColliderComponent(self, request, workspace, editor, launcher_platform): - from . import C4976236_AddPhysxColliderComponent as test_module + from .collider import C4976236_AddPhysxColliderComponent as test_module self._run_test(request, workspace, editor, test_module) @pytest.mark.xfail( reason="This will fail due to this issue ATOM-15487.") def test_C14861502_PhysXCollider_AssetAutoAssigned(self, request, workspace, editor, launcher_platform): - from . import C14861502_PhysXCollider_AssetAutoAssigned as test_module + from .collider import C14861502_PhysXCollider_AssetAutoAssigned as test_module self._run_test(request, workspace, editor, test_module) def test_C14861501_PhysXCollider_RenderMeshAutoAssigned(self, request, workspace, editor, launcher_platform): - from . import C14861501_PhysXCollider_RenderMeshAutoAssigned as test_module + from .collider import C14861501_PhysXCollider_RenderMeshAutoAssigned as test_module self._run_test(request, workspace, editor, test_module) def test_C4044695_PhysXCollider_AddMultipleSurfaceFbx(self, request, workspace, editor, launcher_platform): - from . import C4044695_PhysXCollider_AddMultipleSurfaceFbx as test_module + from .collider import C4044695_PhysXCollider_AddMultipleSurfaceFbx as test_module self._run_test(request, workspace, editor, test_module) def test_C14861504_RenderMeshAsset_WithNoPxAsset(self, request, workspace, editor, launcher_platform): - from . import C14861504_RenderMeshAsset_WithNoPxAsset as test_module + from .collider import C14861504_RenderMeshAsset_WithNoPxAsset as test_module self._run_test(request, workspace, editor, test_module) def test_C100000_RigidBody_EnablingGravityWorksPoC(self, request, workspace, editor, launcher_platform): - from . import C100000_RigidBody_EnablingGravityWorksPoC as test_module + from .collider import C100000_RigidBody_EnablingGravityWorksPoC as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','C3510644_Collider_CollisionGroups.setreg_override', 'AutomatedTesting/Registry') def test_C3510644_Collider_CollisionGroups(self, request, workspace, editor, launcher_platform): - from . import C3510644_Collider_CollisionGroups as test_module + from .collider import C3510644_Collider_CollisionGroups as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C4982798_Collider_ColliderRotationOffset(self, request, workspace, editor, launcher_platform): - from . import C4982798_Collider_ColliderRotationOffset as test_module + from .collider import C4982798_Collider_ColliderRotationOffset as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C15308217_NoCrash_LevelSwitch(self, request, workspace, editor, launcher_platform): - from . import C15308217_NoCrash_LevelSwitch as test_module + from .terrain import C15308217_NoCrash_LevelSwitch as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C6090547_ForceRegion_ParentChildForceRegions(self, request, workspace, editor, launcher_platform): - from . import C6090547_ForceRegion_ParentChildForceRegions as test_module + from .force_region import C6090547_ForceRegion_ParentChildForceRegions as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C19578021_ShapeCollider_CanBeAdded(self, request, workspace, editor, launcher_platform): - from . import C19578021_ShapeCollider_CanBeAdded as test_module + from .collider import C19578021_ShapeCollider_CanBeAdded as test_module self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_C15425929_Undo_Redo(self, request, workspace, editor, launcher_platform): - from . import C15425929_Undo_Redo as test_module + from .general import C15425929_Undo_Redo as test_module self._run_test(request, workspace, editor, test_module) diff --git a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Sandbox.py b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Sandbox.py index 255016ddd6..1d26e2e40c 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Sandbox.py +++ b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Sandbox.py @@ -12,7 +12,7 @@ import pytest import os import sys -from .FileManagement import FileManagement as fm +from .utils.FileManagement import FileManagement as fm from ly_test_tools import LAUNCHERS sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../automatedtesting_shared') @@ -30,24 +30,16 @@ class TestAutomation(TestAutomationBase): ## Seems to be flaky, need to investigate def test_C19536274_GetCollisionName_PrintsName(self, request, workspace, editor, launcher_platform): - from . import C19536274_GetCollisionName_PrintsName as test_module + from .general import C19536274_GetCollisionName_PrintsName as test_module # Fixme: expected_lines=["Layer Name: Right"] self._run_test(request, workspace, editor, test_module) ## Seems to be flaky, need to investigate def test_C19536277_GetCollisionName_PrintsNothing(self, request, workspace, editor, launcher_platform): - from . import C19536277_GetCollisionName_PrintsNothing as test_module + from .general import C19536277_GetCollisionName_PrintsNothing as test_module # All groups present in the PhysX Collider that could show up in test # Fixme: collision_groups = ["All", "None", "All_NoTouchBend", "All_3", "None_1", "All_NoTouchBend_1", "All_2", "None_1_1", "All_NoTouchBend_1_1", "All_1", "None_1_1_1", "All_NoTouchBend_1_1_1", "All_4", "None_1_1_1_1", "All_NoTouchBend_1_1_1_1", "GroupLeft", "GroupRight"] # Fixme: for group in collision_groups: # Fixme: unexpected_lines.append(f"GroupName: {group}") # Fixme: expected_lines=["GroupName: "] self._run_test(request, workspace, editor, test_module) - - ## Seems to be flaky, need to investigate - @pytest.mark.xfail( - reason="Editor crashes and errors about files accessed by multiple processes appear in the log.") - @revert_physics_config - def test_C15425929_Undo_Redo(self, request, workspace, editor, launcher_platform): - from . import C15425929_Undo_Redo as test_module - self._run_test(request, workspace, editor, test_module) diff --git a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Utils.py b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Utils.py index 9f4edba18b..a3fd5c741f 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Utils.py +++ b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Utils.py @@ -29,14 +29,14 @@ class TestUtils(TestAutomationBase): :param request: Built in pytest object, and is needed to call the pytest "addfinalizer" teardown command. :editor: Fixture containing editor details """ - from . import UtilTest_Physmaterial_Editor as physmaterial_editor_test_module + from .utils import UtilTest_Physmaterial_Editor as physmaterial_editor_test_module expected_lines = [] unexpected_lines = ["Assert"] self._run_test(request, workspace, editor, physmaterial_editor_test_module, expected_lines, unexpected_lines) def test_UtilTest_Tracer_PicksErrorsAndWarnings(self, request, workspace, editor): - from . import UtilTest_Tracer_PicksErrorsAndWarnings as testcase_module + from .utils import UtilTest_Tracer_PicksErrorsAndWarnings as testcase_module self._run_test(request, workspace, editor, testcase_module, [], []) def test_FileManagement_FindingFiles(self, workspace): @@ -262,7 +262,7 @@ class TestUtils(TestAutomationBase): ) @fm.file_override("default.physxconfiguration", "UtilTest_PhysxConfig_Override.physxconfiguration") def test_UtilTest_Managed_Files(self, request, workspace, editor): - from . import UtilTest_Managed_Files as test_module + from .utils import UtilTest_Managed_Files as test_module expected_lines = [] unexpected_lines = ["Assert"] diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14654881_CharacterController_SwitchLevels.py b/AutomatedTesting/Gem/PythonTests/physics/character_controller/C14654881_CharacterController_SwitchLevels.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C14654881_CharacterController_SwitchLevels.py rename to AutomatedTesting/Gem/PythonTests/physics/character_controller/C14654881_CharacterController_SwitchLevels.py index 975c5ee787..3976bcf25c --- a/AutomatedTesting/Gem/PythonTests/physics/C14654881_CharacterController_SwitchLevels.py +++ b/AutomatedTesting/Gem/PythonTests/physics/character_controller/C14654881_CharacterController_SwitchLevels.py @@ -53,11 +53,6 @@ def C14654881_CharacterController_SwitchLevels(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper import azlmbr.legacy.general as general @@ -93,8 +88,5 @@ def C14654881_CharacterController_SwitchLevels(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C14654881_CharacterController_SwitchLevels) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C100000_RigidBody_EnablingGravityWorksPoC.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C100000_RigidBody_EnablingGravityWorksPoC.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C100000_RigidBody_EnablingGravityWorksPoC.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C100000_RigidBody_EnablingGravityWorksPoC.py index 58d92fd313..f3d3e02d8e --- a/AutomatedTesting/Gem/PythonTests/physics/C100000_RigidBody_EnablingGravityWorksPoC.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C100000_RigidBody_EnablingGravityWorksPoC.py @@ -25,11 +25,6 @@ class Tests(): def C100000_RigidBody_EnablingGravityWorksPoC(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -77,8 +72,5 @@ def C100000_RigidBody_EnablingGravityWorksPoC(): helper.exit_game_mode(Tests.exit_game_mode) if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C100000_RigidBody_EnablingGravityWorksPoC) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC.py index 77e8c73604..997ea8a5a6 --- a/AutomatedTesting/Gem/PythonTests/physics/C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC.py @@ -24,11 +24,6 @@ def C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC(): # Setup path import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -84,8 +79,5 @@ def C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC(): helper.exit_game_mode(Tests.exit_game_mode) if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14861498_ConfirmError_NoPxMesh.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C14861498_ConfirmError_NoPxMesh.py old mode 100755 new mode 100644 similarity index 95% rename from AutomatedTesting/Gem/PythonTests/physics/C14861498_ConfirmError_NoPxMesh.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C14861498_ConfirmError_NoPxMesh.py index 622f2aac35..731f114b8c --- a/AutomatedTesting/Gem/PythonTests/physics/C14861498_ConfirmError_NoPxMesh.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C14861498_ConfirmError_NoPxMesh.py @@ -48,11 +48,6 @@ def C14861498_ConfirmError_NoPxMesh(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper from editor_python_test_tools.utils import Tracer @@ -85,8 +80,5 @@ def C14861498_ConfirmError_NoPxMesh(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C14861498_ConfirmError_NoPxMesh) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14861500_DefaultSetting_ColliderShape.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C14861500_DefaultSetting_ColliderShape.py old mode 100755 new mode 100644 similarity index 95% rename from AutomatedTesting/Gem/PythonTests/physics/C14861500_DefaultSetting_ColliderShape.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C14861500_DefaultSetting_ColliderShape.py index 0827ee540a..aed856f530 --- a/AutomatedTesting/Gem/PythonTests/physics/C14861500_DefaultSetting_ColliderShape.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C14861500_DefaultSetting_ColliderShape.py @@ -40,9 +40,7 @@ def C14861500_DefaultSetting_ColliderShape(): :return: None """ # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.editor_entity_utils import EditorEntity as Entity from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -70,8 +68,5 @@ def C14861500_DefaultSetting_ColliderShape(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C14861500_DefaultSetting_ColliderShape) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14861501_PhysXCollider_RenderMeshAutoAssigned.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C14861501_PhysXCollider_RenderMeshAutoAssigned.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C14861501_PhysXCollider_RenderMeshAutoAssigned.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C14861501_PhysXCollider_RenderMeshAutoAssigned.py index 1a4fe471a4..73c94a2dfb --- a/AutomatedTesting/Gem/PythonTests/physics/C14861501_PhysXCollider_RenderMeshAutoAssigned.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C14861501_PhysXCollider_RenderMeshAutoAssigned.py @@ -48,13 +48,11 @@ def C14861501_PhysXCollider_RenderMeshAutoAssigned(): import os # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.editor_entity_utils import EditorEntity as Entity from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper - from asset_utils import Asset + from editor_python_test_tools.asset_utils import Asset # Asset paths STATIC_MESH = os.path.join("assets", "c14861501_physxcollider_rendermeshautoassigned", "spherebot", "r0-b_body.azmodel") @@ -91,8 +89,5 @@ def C14861501_PhysXCollider_RenderMeshAutoAssigned(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C14861501_PhysXCollider_RenderMeshAutoAssigned) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14861502_PhysXCollider_AssetAutoAssigned.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C14861502_PhysXCollider_AssetAutoAssigned.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C14861502_PhysXCollider_AssetAutoAssigned.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C14861502_PhysXCollider_AssetAutoAssigned.py index 490708007e..b8c0e4a529 --- a/AutomatedTesting/Gem/PythonTests/physics/C14861502_PhysXCollider_AssetAutoAssigned.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C14861502_PhysXCollider_AssetAutoAssigned.py @@ -47,13 +47,11 @@ def C14861502_PhysXCollider_AssetAutoAssigned(): import os # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.editor_entity_utils import EditorEntity as Entity from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper - from asset_utils import Asset + from editor_python_test_tools.asset_utils import Asset # Open 3D Engine Imports import azlmbr.legacy.general as general @@ -93,8 +91,5 @@ def C14861502_PhysXCollider_AssetAutoAssigned(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C14861502_PhysXCollider_AssetAutoAssigned) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14861504_RenderMeshAsset_WithNoPxAsset.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C14861504_RenderMeshAsset_WithNoPxAsset.py old mode 100755 new mode 100644 similarity index 95% rename from AutomatedTesting/Gem/PythonTests/physics/C14861504_RenderMeshAsset_WithNoPxAsset.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C14861504_RenderMeshAsset_WithNoPxAsset.py index 589245e884..1a63f478fd --- a/AutomatedTesting/Gem/PythonTests/physics/C14861504_RenderMeshAsset_WithNoPxAsset.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C14861504_RenderMeshAsset_WithNoPxAsset.py @@ -22,7 +22,7 @@ class Tests(): # fmt: on -def run(): +def C14861504_RenderMeshAsset_WithNoPxAsset(): """ Summary: Create entity with Mesh component and assign a render mesh that has no physics asset to the Mesh component. @@ -52,14 +52,12 @@ def run(): import os # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.editor_entity_utils import EditorEntity as Entity from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper from editor_python_test_tools.utils import Tracer - from asset_utils import Asset + from editor_python_test_tools.asset_utils import Asset # Open 3D Engine Imports import azlmbr.asset as azasset @@ -102,4 +100,5 @@ def run(): if __name__ == "__main__": - run() + from editor_python_test_tools.utils import Report + Report.start_test(C14861504_RenderMeshAsset_WithNoPxAsset) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C19578018_ShapeColliderWithNoShapeComponent.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C19578018_ShapeColliderWithNoShapeComponent.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C19578018_ShapeColliderWithNoShapeComponent.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C19578018_ShapeColliderWithNoShapeComponent.py index 478910e56c..3da42eb40f --- a/AutomatedTesting/Gem/PythonTests/physics/C19578018_ShapeColliderWithNoShapeComponent.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C19578018_ShapeColliderWithNoShapeComponent.py @@ -47,9 +47,7 @@ def C19578018_ShapeColliderWithNoShapeComponent(): """ # Built-in Imports - import ImportPathHelper as imports - imports.init() # Helper Imports from editor_python_test_tools.utils import Report @@ -92,8 +90,5 @@ def C19578018_ShapeColliderWithNoShapeComponent(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C19578018_ShapeColliderWithNoShapeComponent) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C19578021_ShapeCollider_CanBeAdded.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C19578021_ShapeCollider_CanBeAdded.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C19578021_ShapeCollider_CanBeAdded.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C19578021_ShapeCollider_CanBeAdded.py index cf5aac6e98..0ec9908f2d --- a/AutomatedTesting/Gem/PythonTests/physics/C19578021_ShapeCollider_CanBeAdded.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C19578021_ShapeCollider_CanBeAdded.py @@ -44,9 +44,7 @@ def C19578021_ShapeCollider_CanBeAdded(): :return: None """ # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.editor_entity_utils import EditorEntity as Entity from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -90,8 +88,5 @@ def C19578021_ShapeCollider_CanBeAdded(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C19578021_ShapeCollider_CanBeAdded) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C19723164_ShapeColliders_WontCrashEditor.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C19723164_ShapeColliders_WontCrashEditor.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C19723164_ShapeColliders_WontCrashEditor.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C19723164_ShapeColliders_WontCrashEditor.py index f6f21a5322..7d277a734d --- a/AutomatedTesting/Gem/PythonTests/physics/C19723164_ShapeColliders_WontCrashEditor.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C19723164_ShapeColliders_WontCrashEditor.py @@ -40,9 +40,7 @@ def C19723164_ShapeColliders_WontCrashEditor(): :return: None """ # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper from editor_python_test_tools.editor_entity_utils import EditorEntity as Entity @@ -96,8 +94,5 @@ def C19723164_ShapeColliders_WontCrashEditor(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C19723164_ShapeColliders_WontCrashEditor) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain.py index 9258cf8547..9094ba68c6 --- a/AutomatedTesting/Gem/PythonTests/physics/C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain.py @@ -51,9 +51,7 @@ def C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain(): import os import sys - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.editor_entity_utils import EditorEntity import azlmbr.legacy.general as general import azlmbr.bus @@ -134,8 +132,5 @@ def C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C3510644_Collider_CollisionGroups.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C3510644_Collider_CollisionGroups.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C3510644_Collider_CollisionGroups.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C3510644_Collider_CollisionGroups.py index e41aecf4fe..28638cc2a6 --- a/AutomatedTesting/Gem/PythonTests/physics/C3510644_Collider_CollisionGroups.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C3510644_Collider_CollisionGroups.py @@ -90,11 +90,6 @@ def C3510644_Collider_CollisionGroups(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -362,8 +357,5 @@ def C3510644_Collider_CollisionGroups(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C3510644_Collider_CollisionGroups) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044695_PhysXCollider_AddMultipleSurfaceFbx.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4044695_PhysXCollider_AddMultipleSurfaceFbx.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C4044695_PhysXCollider_AddMultipleSurfaceFbx.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4044695_PhysXCollider_AddMultipleSurfaceFbx.py index 538f28ff36..cfe6f3962c --- a/AutomatedTesting/Gem/PythonTests/physics/C4044695_PhysXCollider_AddMultipleSurfaceFbx.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4044695_PhysXCollider_AddMultipleSurfaceFbx.py @@ -48,13 +48,11 @@ def C4044695_PhysXCollider_AddMultipleSurfaceFbx(): import os # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.editor_entity_utils import EditorEntity as Entity from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper - from asset_utils import Asset + from editor_python_test_tools.asset_utils import Asset # Constants PHYSICS_ASSET_INDEX = 7 # Hardcoded enum index value for Shape property @@ -107,8 +105,5 @@ def C4044695_PhysXCollider_AddMultipleSurfaceFbx(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4044695_PhysXCollider_AddMultipleSurfaceFbx) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976227_Collider_NewGroup.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4976227_Collider_NewGroup.py old mode 100755 new mode 100644 similarity index 95% rename from AutomatedTesting/Gem/PythonTests/physics/C4976227_Collider_NewGroup.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4976227_Collider_NewGroup.py index e123067f54..e9704d6be5 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976227_Collider_NewGroup.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4976227_Collider_NewGroup.py @@ -51,11 +51,6 @@ def C4976227_Collider_NewGroup(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -84,8 +79,5 @@ def C4976227_Collider_NewGroup(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976227_Collider_NewGroup) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976236_AddPhysxColliderComponent.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4976236_AddPhysxColliderComponent.py old mode 100755 new mode 100644 similarity index 95% rename from AutomatedTesting/Gem/PythonTests/physics/C4976236_AddPhysxColliderComponent.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4976236_AddPhysxColliderComponent.py index d4b7d85169..e4341bb148 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976236_AddPhysxColliderComponent.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4976236_AddPhysxColliderComponent.py @@ -42,14 +42,12 @@ def C4976236_AddPhysxColliderComponent(): """ # Helper file Imports - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.editor_entity_utils import EditorEntity from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper from editor_python_test_tools.utils import Tracer - from asset_utils import Asset + from editor_python_test_tools.asset_utils import Asset helper.init_idle() # 1) Load the level @@ -84,8 +82,5 @@ def C4976236_AddPhysxColliderComponent(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976236_AddPhysxColliderComponent) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976242_Collision_SameCollisionlayerSameCollisiongroup.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4976242_Collision_SameCollisionlayerSameCollisiongroup.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4976242_Collision_SameCollisionlayerSameCollisiongroup.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4976242_Collision_SameCollisionlayerSameCollisiongroup.py index 86dd81a6de..86ef5b6ed4 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976242_Collision_SameCollisionlayerSameCollisiongroup.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4976242_Collision_SameCollisionlayerSameCollisiongroup.py @@ -62,11 +62,6 @@ def C4976242_Collision_SameCollisionlayerSameCollisiongroup(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -188,8 +183,5 @@ def C4976242_Collision_SameCollisionlayerSameCollisiongroup(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976242_Collision_SameCollisionlayerSameCollisiongroup) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976243_Collision_SameCollisionGroupDiffCollisionLayers.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4976243_Collision_SameCollisionGroupDiffCollisionLayers.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C4976243_Collision_SameCollisionGroupDiffCollisionLayers.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4976243_Collision_SameCollisionGroupDiffCollisionLayers.py index f1a646e964..893d0d06f6 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976243_Collision_SameCollisionGroupDiffCollisionLayers.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4976243_Collision_SameCollisionGroupDiffCollisionLayers.py @@ -66,11 +66,6 @@ def C4976243_Collision_SameCollisionGroupDiffCollisionLayers(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -127,8 +122,5 @@ def C4976243_Collision_SameCollisionGroupDiffCollisionLayers(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976243_Collision_SameCollisionGroupDiffCollisionLayers) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976244_Collider_SameGroupSameLayerCollision.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4976244_Collider_SameGroupSameLayerCollision.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4976244_Collider_SameGroupSameLayerCollision.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4976244_Collider_SameGroupSameLayerCollision.py index 1d1f0aba35..44ea29de76 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976244_Collider_SameGroupSameLayerCollision.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4976244_Collider_SameGroupSameLayerCollision.py @@ -62,11 +62,6 @@ def C4976244_Collider_SameGroupSameLayerCollision(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -185,8 +180,5 @@ def C4976244_Collider_SameGroupSameLayerCollision(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976244_Collider_SameGroupSameLayerCollision) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976245_PhysXCollider_CollisionLayerTest.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4976245_PhysXCollider_CollisionLayerTest.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4976245_PhysXCollider_CollisionLayerTest.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4976245_PhysXCollider_CollisionLayerTest.py index 9d2c6f5fb4..a7c9152744 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976245_PhysXCollider_CollisionLayerTest.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4976245_PhysXCollider_CollisionLayerTest.py @@ -67,11 +67,6 @@ def C4976245_PhysXCollider_CollisionLayerTest(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper import azlmbr.legacy.general as general @@ -223,8 +218,5 @@ def C4976245_PhysXCollider_CollisionLayerTest(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976245_PhysXCollider_CollisionLayerTest) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982593_PhysXCollider_CollisionLayerTest.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982593_PhysXCollider_CollisionLayerTest.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4982593_PhysXCollider_CollisionLayerTest.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4982593_PhysXCollider_CollisionLayerTest.py index 500515f707..3fdb9d3403 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982593_PhysXCollider_CollisionLayerTest.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982593_PhysXCollider_CollisionLayerTest.py @@ -67,11 +67,6 @@ def C4982593_PhysXCollider_CollisionLayerTest(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper import azlmbr.legacy.general as general @@ -231,8 +226,5 @@ def C4982593_PhysXCollider_CollisionLayerTest(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4982593_PhysXCollider_CollisionLayerTest) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982595_Collider_TriggerDisablesCollision.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982595_Collider_TriggerDisablesCollision.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C4982595_Collider_TriggerDisablesCollision.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4982595_Collider_TriggerDisablesCollision.py index 23e43cd741..d3b0faa6d4 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982595_Collider_TriggerDisablesCollision.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982595_Collider_TriggerDisablesCollision.py @@ -75,11 +75,6 @@ def C4982595_Collider_TriggerDisablesCollision(): # Setup path import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus import azlmbr.components @@ -234,8 +229,5 @@ def C4982595_Collider_TriggerDisablesCollision(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4982595_Collider_TriggerDisablesCollision) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982797_Collider_ColliderOffset.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982797_Collider_ColliderOffset.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C4982797_Collider_ColliderOffset.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4982797_Collider_ColliderOffset.py index 9ede25e5a0..d4d8ab15fd --- a/AutomatedTesting/Gem/PythonTests/physics/C4982797_Collider_ColliderOffset.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982797_Collider_ColliderOffset.py @@ -87,9 +87,7 @@ def C4982797_Collider_ColliderOffset(): import sys # Internal editor imports - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -332,8 +330,5 @@ def C4982797_Collider_ColliderOffset(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4982797_Collider_ColliderOffset) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982798_Collider_ColliderRotationOffset.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982798_Collider_ColliderRotationOffset.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C4982798_Collider_ColliderRotationOffset.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4982798_Collider_ColliderRotationOffset.py index c0bc208d48..8368b9a66f --- a/AutomatedTesting/Gem/PythonTests/physics/C4982798_Collider_ColliderRotationOffset.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982798_Collider_ColliderRotationOffset.py @@ -86,9 +86,7 @@ def C4982798_Collider_ColliderRotationOffset(): :return: None """ - import ImportPathHelper as imports - imports.init() # Internal editor imports @@ -300,8 +298,5 @@ def C4982798_Collider_ColliderRotationOffset(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4982798_Collider_ColliderRotationOffset) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982800_PhysXColliderShape_CanBeSelected.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982800_PhysXColliderShape_CanBeSelected.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C4982800_PhysXColliderShape_CanBeSelected.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4982800_PhysXColliderShape_CanBeSelected.py index abfa6c44a1..0f1b9c6070 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982800_PhysXColliderShape_CanBeSelected.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982800_PhysXColliderShape_CanBeSelected.py @@ -43,9 +43,7 @@ def C4982800_PhysXColliderShape_CanBeSelected(): :return: None """ # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.editor_entity_utils import EditorEntity as Entity from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -91,8 +89,5 @@ def C4982800_PhysXColliderShape_CanBeSelected(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4982800_PhysXColliderShape_CanBeSelected) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982801_PhysXColliderShape_CanBeSelected.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982801_PhysXColliderShape_CanBeSelected.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C4982801_PhysXColliderShape_CanBeSelected.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4982801_PhysXColliderShape_CanBeSelected.py index 0d5aa39941..33b7dc0b48 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982801_PhysXColliderShape_CanBeSelected.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982801_PhysXColliderShape_CanBeSelected.py @@ -43,9 +43,7 @@ def C4982801_PhysXColliderShape_CanBeSelected(): :return: None """ # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.editor_entity_utils import EditorEntity as Entity from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -103,8 +101,5 @@ def C4982801_PhysXColliderShape_CanBeSelected(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4982801_PhysXColliderShape_CanBeSelected) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982802_PhysXColliderShape_CanBeSelected.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982802_PhysXColliderShape_CanBeSelected.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C4982802_PhysXColliderShape_CanBeSelected.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4982802_PhysXColliderShape_CanBeSelected.py index 7eec3b070a..4881c5b9a0 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982802_PhysXColliderShape_CanBeSelected.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982802_PhysXColliderShape_CanBeSelected.py @@ -43,9 +43,7 @@ def C4982802_PhysXColliderShape_CanBeSelected(): :return: None """ # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.editor_entity_utils import EditorEntity as Entity from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -103,8 +101,5 @@ def C4982802_PhysXColliderShape_CanBeSelected(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4982802_PhysXColliderShape_CanBeSelected) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982803_Enable_PxMesh_Option.py b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982803_Enable_PxMesh_Option.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C4982803_Enable_PxMesh_Option.py rename to AutomatedTesting/Gem/PythonTests/physics/collider/C4982803_Enable_PxMesh_Option.py index 340b9c7785..7497ae8253 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982803_Enable_PxMesh_Option.py +++ b/AutomatedTesting/Gem/PythonTests/physics/collider/C4982803_Enable_PxMesh_Option.py @@ -57,13 +57,11 @@ def C4982803_Enable_PxMesh_Option(): import os # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.editor_entity_utils import EditorEntity from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper - from asset_utils import Asset + from editor_python_test_tools.asset_utils import Asset import azlmbr.math as math # Open 3D Engine Imports @@ -141,8 +139,5 @@ def C4982803_Enable_PxMesh_Option(): helper.exit_game_mode(Tests.exit_game_mode) if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4982803_Enable_PxMesh_Option) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude.py index aae57cffc8..11488b14c2 --- a/AutomatedTesting/Gem/PythonTests/physics/C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude.py @@ -86,11 +86,6 @@ def C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -283,8 +278,5 @@ def C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12868580_ForceRegion_SplineModifiedTransform.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C12868580_ForceRegion_SplineModifiedTransform.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C12868580_ForceRegion_SplineModifiedTransform.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C12868580_ForceRegion_SplineModifiedTransform.py index f21dde6ae0..4e052a1b00 --- a/AutomatedTesting/Gem/PythonTests/physics/C12868580_ForceRegion_SplineModifiedTransform.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C12868580_ForceRegion_SplineModifiedTransform.py @@ -73,12 +73,6 @@ def C12868580_ForceRegion_SplineModifiedTransform(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -168,8 +162,5 @@ def C12868580_ForceRegion_SplineModifiedTransform(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C12868580_ForceRegion_SplineModifiedTransform) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12905527_ForceRegion_MagnitudeDeviation.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C12905527_ForceRegion_MagnitudeDeviation.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C12905527_ForceRegion_MagnitudeDeviation.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C12905527_ForceRegion_MagnitudeDeviation.py index 6df2d545da..c9d411b873 --- a/AutomatedTesting/Gem/PythonTests/physics/C12905527_ForceRegion_MagnitudeDeviation.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C12905527_ForceRegion_MagnitudeDeviation.py @@ -54,12 +54,6 @@ def C12905527_ForceRegion_MagnitudeDeviation(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -144,8 +138,5 @@ def C12905527_ForceRegion_MagnitudeDeviation(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C12905527_ForceRegion_MagnitudeDeviation) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12905528_ForceRegion_WithNonTriggerCollider.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C12905528_ForceRegion_WithNonTriggerCollider.py old mode 100755 new mode 100644 similarity index 89% rename from AutomatedTesting/Gem/PythonTests/physics/C12905528_ForceRegion_WithNonTriggerCollider.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C12905528_ForceRegion_WithNonTriggerCollider.py index ca5a29e182..93453b29c0 --- a/AutomatedTesting/Gem/PythonTests/physics/C12905528_ForceRegion_WithNonTriggerCollider.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C12905528_ForceRegion_WithNonTriggerCollider.py @@ -19,7 +19,7 @@ class Tests(): # fmt: on -def run(): +def C12905528_ForceRegion_WithNonTriggerCollider(): """ Summary: Create entity with PhysX Force Region component. Check that user is warned if new PhysX Collider component is @@ -43,13 +43,10 @@ def run(): :return: None """ - # Helper file Imports - import ImportPathHelper as imports - + import azlmbr.legacy.general as general from editor_python_test_tools.editor_entity_utils import EditorEntity from editor_python_test_tools.utils import Report - imports.init() from editor_python_test_tools.utils import TestHelper as helper from editor_python_test_tools.utils import Tracer @@ -66,11 +63,14 @@ def run(): Report.result(Tests.add_physx_force_region, test_entity.has_component("PhysX Force Region")) # 4) Start the Tracer to catch any errors and warnings + Report.info("Starting warning monitoring") with Tracer() as section_tracer: # 5) Add the PhysX Collider component test_entity.add_component("PhysX Collider") Report.result(Tests.add_physx_collider, test_entity.has_component("PhysX Collider")) - + general.idle_wait_frames(1) + Report.info("Ending warning monitoring") + # ) Verify there is warning in the logs success_condition = section_tracer.has_warnings # Checking if warning exist and the exact warning is caught in the expected lines in Test file @@ -78,4 +78,5 @@ def run(): if __name__ == "__main__": - run() + from editor_python_test_tools.utils import Report + Report.start_test(C12905528_ForceRegion_WithNonTriggerCollider) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15845879_ForceRegion_HighLinearDampingForce.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C15845879_ForceRegion_HighLinearDampingForce.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C15845879_ForceRegion_HighLinearDampingForce.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C15845879_ForceRegion_HighLinearDampingForce.py index 1021186a9b..d4807476c2 --- a/AutomatedTesting/Gem/PythonTests/physics/C15845879_ForceRegion_HighLinearDampingForce.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C15845879_ForceRegion_HighLinearDampingForce.py @@ -56,11 +56,6 @@ def C15845879_ForceRegion_HighLinearDampingForce(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -169,8 +164,5 @@ def C15845879_ForceRegion_HighLinearDampingForce(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C15845879_ForceRegion_HighLinearDampingForce) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5932040_ForceRegion_CubeExertsWorldForce.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5932040_ForceRegion_CubeExertsWorldForce.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5932040_ForceRegion_CubeExertsWorldForce.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5932040_ForceRegion_CubeExertsWorldForce.py index db3d4708ce..969a203502 --- a/AutomatedTesting/Gem/PythonTests/physics/C5932040_ForceRegion_CubeExertsWorldForce.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5932040_ForceRegion_CubeExertsWorldForce.py @@ -65,11 +65,6 @@ def C5932040_ForceRegion_CubeExertsWorldForce(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -183,8 +178,5 @@ def C5932040_ForceRegion_CubeExertsWorldForce(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5932040_ForceRegion_CubeExertsWorldForce) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies.py index 09965214b2..15c77ba17e --- a/AutomatedTesting/Gem/PythonTests/physics/C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies.py @@ -65,11 +65,6 @@ def C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -161,8 +156,5 @@ def C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5932042_PhysXForceRegion_LinearDamping.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5932042_PhysXForceRegion_LinearDamping.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C5932042_PhysXForceRegion_LinearDamping.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5932042_PhysXForceRegion_LinearDamping.py index c05e71573f..5112729cc2 --- a/AutomatedTesting/Gem/PythonTests/physics/C5932042_PhysXForceRegion_LinearDamping.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5932042_PhysXForceRegion_LinearDamping.py @@ -71,11 +71,6 @@ def C5932042_PhysXForceRegion_LinearDamping(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -269,8 +264,5 @@ def C5932042_PhysXForceRegion_LinearDamping(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5932042_PhysXForceRegion_LinearDamping) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5932043_ForceRegion_SimpleDragOnRigidBodies.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5932043_ForceRegion_SimpleDragOnRigidBodies.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5932043_ForceRegion_SimpleDragOnRigidBodies.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5932043_ForceRegion_SimpleDragOnRigidBodies.py index d88232ff78..cd81315e73 --- a/AutomatedTesting/Gem/PythonTests/physics/C5932043_ForceRegion_SimpleDragOnRigidBodies.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5932043_ForceRegion_SimpleDragOnRigidBodies.py @@ -42,9 +42,7 @@ def C5932043_ForceRegion_SimpleDragOnRigidBodies(): # Setup path import os, sys - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -139,8 +137,5 @@ def C5932043_ForceRegion_SimpleDragOnRigidBodies(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5932043_ForceRegion_SimpleDragOnRigidBodies) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5932044_ForceRegion_PointForceOnRigidBody.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5932044_ForceRegion_PointForceOnRigidBody.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5932044_ForceRegion_PointForceOnRigidBody.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5932044_ForceRegion_PointForceOnRigidBody.py index 58eec3a9be..23760909db --- a/AutomatedTesting/Gem/PythonTests/physics/C5932044_ForceRegion_PointForceOnRigidBody.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5932044_ForceRegion_PointForceOnRigidBody.py @@ -65,11 +65,6 @@ def C5932044_ForceRegion_PointForceOnRigidBody(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -189,8 +184,5 @@ def C5932044_ForceRegion_PointForceOnRigidBody(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5932044_ForceRegion_PointForceOnRigidBody) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5932045_ForceRegion_Spline.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5932045_ForceRegion_Spline.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5932045_ForceRegion_Spline.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5932045_ForceRegion_Spline.py index ea9ca060c0..e74f5cc6e0 --- a/AutomatedTesting/Gem/PythonTests/physics/C5932045_ForceRegion_Spline.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5932045_ForceRegion_Spline.py @@ -70,11 +70,6 @@ def C5932045_ForceRegion_Spline(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -162,8 +157,5 @@ def C5932045_ForceRegion_Spline(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5932045_ForceRegion_Spline) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959759_RigidBody_ForceRegionSpherePointForce.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959759_RigidBody_ForceRegionSpherePointForce.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5959759_RigidBody_ForceRegionSpherePointForce.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5959759_RigidBody_ForceRegionSpherePointForce.py index 3bfad9d770..99baeb1fff --- a/AutomatedTesting/Gem/PythonTests/physics/C5959759_RigidBody_ForceRegionSpherePointForce.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959759_RigidBody_ForceRegionSpherePointForce.py @@ -38,11 +38,6 @@ def C5959759_RigidBody_ForceRegionSpherePointForce(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -150,8 +145,5 @@ def C5959759_RigidBody_ForceRegionSpherePointForce(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5959759_RigidBody_ForceRegionSpherePointForce) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959760_PhysXForceRegion_PointForceExertion.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959760_PhysXForceRegion_PointForceExertion.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5959760_PhysXForceRegion_PointForceExertion.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5959760_PhysXForceRegion_PointForceExertion.py index 85d15aec33..6648b41d31 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959760_PhysXForceRegion_PointForceExertion.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959760_PhysXForceRegion_PointForceExertion.py @@ -63,11 +63,6 @@ def C5959760_PhysXForceRegion_PointForceExertion(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -223,8 +218,5 @@ def C5959760_PhysXForceRegion_PointForceExertion(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5959760_PhysXForceRegion_PointForceExertion) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959761_ForceRegion_PhysAssetExertsPointForce.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959761_ForceRegion_PhysAssetExertsPointForce.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C5959761_ForceRegion_PhysAssetExertsPointForce.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5959761_ForceRegion_PhysAssetExertsPointForce.py index 1e58a8d975..c77fc39a77 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959761_ForceRegion_PhysAssetExertsPointForce.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959761_ForceRegion_PhysAssetExertsPointForce.py @@ -61,12 +61,6 @@ def C5959761_ForceRegion_PhysAssetExertsPointForce(): import os import sys - - import ImportPathHelper as imports - - imports.init() - - import azlmbr import azlmbr.legacy.general as general import azlmbr.bus as bus @@ -140,8 +134,5 @@ def C5959761_ForceRegion_PhysAssetExertsPointForce(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5959761_ForceRegion_PhysAssetExertsPointForce) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959763_ForceRegion_ForceRegionImpulsesCube.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959763_ForceRegion_ForceRegionImpulsesCube.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5959763_ForceRegion_ForceRegionImpulsesCube.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5959763_ForceRegion_ForceRegionImpulsesCube.py index 6123381588..8bea169a82 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959763_ForceRegion_ForceRegionImpulsesCube.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959763_ForceRegion_ForceRegionImpulsesCube.py @@ -42,9 +42,7 @@ def C5959763_ForceRegion_ForceRegionImpulsesCube(): # Setup path import os, sys - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -165,8 +163,5 @@ def C5959763_ForceRegion_ForceRegionImpulsesCube(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5959763_ForceRegion_ForceRegionImpulsesCube) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959764_ForceRegion_ForceRegionImpulsesCapsule.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959764_ForceRegion_ForceRegionImpulsesCapsule.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5959764_ForceRegion_ForceRegionImpulsesCapsule.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5959764_ForceRegion_ForceRegionImpulsesCapsule.py index 9e4ef9379a..4ce345a5eb --- a/AutomatedTesting/Gem/PythonTests/physics/C5959764_ForceRegion_ForceRegionImpulsesCapsule.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959764_ForceRegion_ForceRegionImpulsesCapsule.py @@ -42,9 +42,7 @@ def C5959764_ForceRegion_ForceRegionImpulsesCapsule(): # Setup path import os, sys - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -167,8 +165,5 @@ def C5959764_ForceRegion_ForceRegionImpulsesCapsule(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5959764_ForceRegion_ForceRegionImpulsesCapsule) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959765_ForceRegion_AssetGetsImpulsed.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959765_ForceRegion_AssetGetsImpulsed.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5959765_ForceRegion_AssetGetsImpulsed.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5959765_ForceRegion_AssetGetsImpulsed.py index 3a28208805..36ecddb3ca --- a/AutomatedTesting/Gem/PythonTests/physics/C5959765_ForceRegion_AssetGetsImpulsed.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959765_ForceRegion_AssetGetsImpulsed.py @@ -45,9 +45,7 @@ def C5959765_ForceRegion_AssetGetsImpulsed(): # Setup path import os, sys - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -169,8 +167,5 @@ def C5959765_ForceRegion_AssetGetsImpulsed(): helper.exit_game_mode(Tests.exit_game_mode) if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5959765_ForceRegion_AssetGetsImpulsed) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959808_ForceRegion_PositionOffset.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959808_ForceRegion_PositionOffset.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C5959808_ForceRegion_PositionOffset.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5959808_ForceRegion_PositionOffset.py index 4b70fcc734..480869457c --- a/AutomatedTesting/Gem/PythonTests/physics/C5959808_ForceRegion_PositionOffset.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959808_ForceRegion_PositionOffset.py @@ -124,11 +124,6 @@ def C5959808_ForceRegion_PositionOffset(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -405,8 +400,5 @@ def C5959808_ForceRegion_PositionOffset(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5959808_ForceRegion_PositionOffset) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959809_ForceRegion_RotationalOffset.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959809_ForceRegion_RotationalOffset.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C5959809_ForceRegion_RotationalOffset.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5959809_ForceRegion_RotationalOffset.py index ccf05cfe5d..d26aebab8d --- a/AutomatedTesting/Gem/PythonTests/physics/C5959809_ForceRegion_RotationalOffset.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959809_ForceRegion_RotationalOffset.py @@ -125,11 +125,6 @@ def C5959809_ForceRegion_RotationalOffset(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -405,8 +400,5 @@ def C5959809_ForceRegion_RotationalOffset(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5959809_ForceRegion_RotationalOffset) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959810_ForceRegion_ForceRegionCombinesForces.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959810_ForceRegion_ForceRegionCombinesForces.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5959810_ForceRegion_ForceRegionCombinesForces.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5959810_ForceRegion_ForceRegionCombinesForces.py index 330a2662ab..b7660926d5 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959810_ForceRegion_ForceRegionCombinesForces.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5959810_ForceRegion_ForceRegionCombinesForces.py @@ -65,11 +65,6 @@ def C5959810_ForceRegion_ForceRegionCombinesForces(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -234,8 +229,5 @@ def C5959810_ForceRegion_ForceRegionCombinesForces(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5959810_ForceRegion_ForceRegionCombinesForces) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody.py index 068238e64d..b1f8d27900 --- a/AutomatedTesting/Gem/PythonTests/physics/C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody.py @@ -55,9 +55,7 @@ def C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody(): Second force region: Name = "Force Region Simple Drag" Applies a drag force on both spheres Setup path """ - import ImportPathHelper as imports - imports.init() import azlmbr.legacy.general as general @@ -175,8 +173,5 @@ def C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5968760_ForceRegion_CheckNetForceChange.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5968760_ForceRegion_CheckNetForceChange.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5968760_ForceRegion_CheckNetForceChange.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C5968760_ForceRegion_CheckNetForceChange.py index 41d5b93eb7..d64a0564f4 --- a/AutomatedTesting/Gem/PythonTests/physics/C5968760_ForceRegion_CheckNetForceChange.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C5968760_ForceRegion_CheckNetForceChange.py @@ -61,11 +61,6 @@ def C5968760_ForceRegion_CheckNetForceChange(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -163,8 +158,5 @@ def C5968760_ForceRegion_CheckNetForceChange(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5968760_ForceRegion_CheckNetForceChange) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090546_ForceRegion_SliceFileInstantiates.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090546_ForceRegion_SliceFileInstantiates.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C6090546_ForceRegion_SliceFileInstantiates.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C6090546_ForceRegion_SliceFileInstantiates.py index f1c13291e3..0c360edee5 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090546_ForceRegion_SliceFileInstantiates.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090546_ForceRegion_SliceFileInstantiates.py @@ -63,11 +63,6 @@ def C6090546_ForceRegion_SliceFileInstantiates(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -138,8 +133,5 @@ def C6090546_ForceRegion_SliceFileInstantiates(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6090546_ForceRegion_SliceFileInstantiates) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090547_ForceRegion_ParentChildForceRegions.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090547_ForceRegion_ParentChildForceRegions.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C6090547_ForceRegion_ParentChildForceRegions.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C6090547_ForceRegion_ParentChildForceRegions.py index 2091a1a1f4..f466680e0c --- a/AutomatedTesting/Gem/PythonTests/physics/C6090547_ForceRegion_ParentChildForceRegions.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090547_ForceRegion_ParentChildForceRegions.py @@ -72,11 +72,6 @@ def C6090547_ForceRegion_ParentChildForceRegions(): import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus import azlmbr.math as lymath @@ -199,8 +194,5 @@ def C6090547_ForceRegion_ParentChildForceRegions(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6090547_ForceRegion_ParentChildForceRegions) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090550_ForceRegion_WorldSpaceForceNegative.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090550_ForceRegion_WorldSpaceForceNegative.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C6090550_ForceRegion_WorldSpaceForceNegative.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C6090550_ForceRegion_WorldSpaceForceNegative.py index 7b0586586b..7d6a8966b2 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090550_ForceRegion_WorldSpaceForceNegative.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090550_ForceRegion_WorldSpaceForceNegative.py @@ -69,11 +69,6 @@ def C6090550_ForceRegion_WorldSpaceForceNegative(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus @@ -243,8 +238,5 @@ def C6090550_ForceRegion_WorldSpaceForceNegative(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6090550_ForceRegion_WorldSpaceForceNegative) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090551_ForceRegion_LocalSpaceForceNegative.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090551_ForceRegion_LocalSpaceForceNegative.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C6090551_ForceRegion_LocalSpaceForceNegative.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C6090551_ForceRegion_LocalSpaceForceNegative.py index 6025777d86..48d08666fd --- a/AutomatedTesting/Gem/PythonTests/physics/C6090551_ForceRegion_LocalSpaceForceNegative.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090551_ForceRegion_LocalSpaceForceNegative.py @@ -69,11 +69,6 @@ def C6090551_ForceRegion_LocalSpaceForceNegative(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus @@ -243,8 +238,5 @@ def C6090551_ForceRegion_LocalSpaceForceNegative(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6090551_ForceRegion_LocalSpaceForceNegative) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090552_ForceRegion_LinearDampingNegative.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090552_ForceRegion_LinearDampingNegative.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C6090552_ForceRegion_LinearDampingNegative.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C6090552_ForceRegion_LinearDampingNegative.py index 07f399a41a..100a07d346 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090552_ForceRegion_LinearDampingNegative.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090552_ForceRegion_LinearDampingNegative.py @@ -68,11 +68,6 @@ def C6090552_ForceRegion_LinearDampingNegative(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus @@ -242,8 +237,5 @@ def C6090552_ForceRegion_LinearDampingNegative(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6090552_ForceRegion_LinearDampingNegative) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090553_ForceRegion_SimpleDragForceOnRigidBodies.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090553_ForceRegion_SimpleDragForceOnRigidBodies.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C6090553_ForceRegion_SimpleDragForceOnRigidBodies.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C6090553_ForceRegion_SimpleDragForceOnRigidBodies.py index 57f6d13d8e..7b5904a3d7 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090553_ForceRegion_SimpleDragForceOnRigidBodies.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090553_ForceRegion_SimpleDragForceOnRigidBodies.py @@ -63,11 +63,6 @@ def C6090553_ForceRegion_SimpleDragForceOnRigidBodies(): import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus @@ -174,8 +169,5 @@ def C6090553_ForceRegion_SimpleDragForceOnRigidBodies(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6090553_ForceRegion_SimpleDragForceOnRigidBodies) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090554_ForceRegion_PointForceNegative.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090554_ForceRegion_PointForceNegative.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C6090554_ForceRegion_PointForceNegative.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C6090554_ForceRegion_PointForceNegative.py index fd3846a801..0b6b9a8b58 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090554_ForceRegion_PointForceNegative.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090554_ForceRegion_PointForceNegative.py @@ -69,11 +69,6 @@ def C6090554_ForceRegion_PointForceNegative(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus @@ -243,8 +238,5 @@ def C6090554_ForceRegion_PointForceNegative(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6090554_ForceRegion_PointForceNegative) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090555_ForceRegion_SplineFollowOnRigidBodies.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090555_ForceRegion_SplineFollowOnRigidBodies.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C6090555_ForceRegion_SplineFollowOnRigidBodies.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C6090555_ForceRegion_SplineFollowOnRigidBodies.py index 800e9245dc..7a642c6c59 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090555_ForceRegion_SplineFollowOnRigidBodies.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6090555_ForceRegion_SplineFollowOnRigidBodies.py @@ -65,11 +65,6 @@ def C6090555_ForceRegion_SplineFollowOnRigidBodies(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -176,8 +171,5 @@ def C6090555_ForceRegion_SplineFollowOnRigidBodies(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6090555_ForceRegion_SplineFollowOnRigidBodies) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6321601_Force_HighValuesDirectionAxes.py b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6321601_Force_HighValuesDirectionAxes.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C6321601_Force_HighValuesDirectionAxes.py rename to AutomatedTesting/Gem/PythonTests/physics/force_region/C6321601_Force_HighValuesDirectionAxes.py index 6c94e7aea9..47cc085479 --- a/AutomatedTesting/Gem/PythonTests/physics/C6321601_Force_HighValuesDirectionAxes.py +++ b/AutomatedTesting/Gem/PythonTests/physics/force_region/C6321601_Force_HighValuesDirectionAxes.py @@ -90,11 +90,6 @@ def C6321601_Force_HighValuesDirectionAxes(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper from editor_python_test_tools.utils import Tracer @@ -246,10 +241,6 @@ def C6321601_Force_HighValuesDirectionAxes(): Report.result(Tests.error_not_found, not has_physx_error()) - if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6321601_Force_HighValuesDirectionAxes) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14976307_Gravity_SetGravityWorks.py b/AutomatedTesting/Gem/PythonTests/physics/general/C14976307_Gravity_SetGravityWorks.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C14976307_Gravity_SetGravityWorks.py rename to AutomatedTesting/Gem/PythonTests/physics/general/C14976307_Gravity_SetGravityWorks.py index 1b50863ccd..335ef75649 --- a/AutomatedTesting/Gem/PythonTests/physics/C14976307_Gravity_SetGravityWorks.py +++ b/AutomatedTesting/Gem/PythonTests/physics/general/C14976307_Gravity_SetGravityWorks.py @@ -60,11 +60,6 @@ def C14976307_Gravity_SetGravityWorks(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -122,8 +117,5 @@ def C14976307_Gravity_SetGravityWorks(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C14976307_Gravity_SetGravityWorks) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15425929_Undo_Redo.py b/AutomatedTesting/Gem/PythonTests/physics/general/C15425929_Undo_Redo.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C15425929_Undo_Redo.py rename to AutomatedTesting/Gem/PythonTests/physics/general/C15425929_Undo_Redo.py index 9595030b4b..f74c1d10cb --- a/AutomatedTesting/Gem/PythonTests/physics/C15425929_Undo_Redo.py +++ b/AutomatedTesting/Gem/PythonTests/physics/general/C15425929_Undo_Redo.py @@ -44,11 +44,6 @@ def C15425929_Undo_Redo(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper from editor_python_test_tools.utils import Tracer @@ -91,8 +86,5 @@ def C15425929_Undo_Redo(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C15425929_Undo_Redo) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C19536274_GetCollisionName_PrintsName.py b/AutomatedTesting/Gem/PythonTests/physics/general/C19536274_GetCollisionName_PrintsName.py old mode 100755 new mode 100644 similarity index 93% rename from AutomatedTesting/Gem/PythonTests/physics/C19536274_GetCollisionName_PrintsName.py rename to AutomatedTesting/Gem/PythonTests/physics/general/C19536274_GetCollisionName_PrintsName.py index 4c035eea96..abf2045ed4 --- a/AutomatedTesting/Gem/PythonTests/physics/C19536274_GetCollisionName_PrintsName.py +++ b/AutomatedTesting/Gem/PythonTests/physics/general/C19536274_GetCollisionName_PrintsName.py @@ -17,7 +17,7 @@ class Tests(): # fmt: on -def run(): +def C19536274_GetCollisionName_PrintsName(): """ Summary: Loads a level that contains an entity with script canvas and PhysX Collider components @@ -43,9 +43,7 @@ def run(): :return: None """ # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.editor_entity_utils import EditorEntity as Entity from editor_python_test_tools.utils import TestHelper as helper @@ -66,4 +64,5 @@ def run(): if __name__ == "__main__": - run() + from editor_python_test_tools.utils import Report + Report.start_test(C19536274_GetCollisionName_PrintsName) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C19536277_GetCollisionName_PrintsNothing.py b/AutomatedTesting/Gem/PythonTests/physics/general/C19536277_GetCollisionName_PrintsNothing.py old mode 100755 new mode 100644 similarity index 93% rename from AutomatedTesting/Gem/PythonTests/physics/C19536277_GetCollisionName_PrintsNothing.py rename to AutomatedTesting/Gem/PythonTests/physics/general/C19536277_GetCollisionName_PrintsNothing.py index 1bf5248a1f..a0d242542f --- a/AutomatedTesting/Gem/PythonTests/physics/C19536277_GetCollisionName_PrintsNothing.py +++ b/AutomatedTesting/Gem/PythonTests/physics/general/C19536277_GetCollisionName_PrintsNothing.py @@ -17,7 +17,7 @@ class Tests(): # fmt: on -def run(): +def C19536277_GetCollisionName_PrintsNothing(): """ Summary: Loads a level that contains an entity with script canvas and PhysX Collider components @@ -43,9 +43,7 @@ def run(): :return: None """ # Helper Files - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.editor_entity_utils import EditorEntity as Entity from editor_python_test_tools.utils import TestHelper as helper @@ -66,4 +64,5 @@ def run(): if __name__ == "__main__": - run() + from editor_python_test_tools.utils import Report + Report.start_test(C19536277_GetCollisionName_PrintsNothing) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C29032500_EditorComponents_WorldBodyBusWorks.py b/AutomatedTesting/Gem/PythonTests/physics/general/C29032500_EditorComponents_WorldBodyBusWorks.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C29032500_EditorComponents_WorldBodyBusWorks.py rename to AutomatedTesting/Gem/PythonTests/physics/general/C29032500_EditorComponents_WorldBodyBusWorks.py index a022cc7011..0f7f91dafb --- a/AutomatedTesting/Gem/PythonTests/physics/C29032500_EditorComponents_WorldBodyBusWorks.py +++ b/AutomatedTesting/Gem/PythonTests/physics/general/C29032500_EditorComponents_WorldBodyBusWorks.py @@ -82,11 +82,6 @@ def C29032500_EditorComponents_WorldBodyBusWorks(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus import math @@ -154,8 +149,5 @@ def C29032500_EditorComponents_WorldBodyBusWorks(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C29032500_EditorComponents_WorldBodyBusWorks) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5689529_Verify_Terrain_RigidBody_Collider_Mesh.py b/AutomatedTesting/Gem/PythonTests/physics/general/C5689529_Verify_Terrain_RigidBody_Collider_Mesh.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C5689529_Verify_Terrain_RigidBody_Collider_Mesh.py rename to AutomatedTesting/Gem/PythonTests/physics/general/C5689529_Verify_Terrain_RigidBody_Collider_Mesh.py index 1436a98536..f011e65972 --- a/AutomatedTesting/Gem/PythonTests/physics/C5689529_Verify_Terrain_RigidBody_Collider_Mesh.py +++ b/AutomatedTesting/Gem/PythonTests/physics/general/C5689529_Verify_Terrain_RigidBody_Collider_Mesh.py @@ -58,11 +58,6 @@ def C5689529_Verify_Terrain_RigidBody_Collider_Mesh(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -106,8 +101,5 @@ def C5689529_Verify_Terrain_RigidBody_Collider_Mesh(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5689529_Verify_Terrain_RigidBody_Collider_Mesh) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6131473_StaticSlice_OnDynamicSliceSpawn.py b/AutomatedTesting/Gem/PythonTests/physics/general/C6131473_StaticSlice_OnDynamicSliceSpawn.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C6131473_StaticSlice_OnDynamicSliceSpawn.py rename to AutomatedTesting/Gem/PythonTests/physics/general/C6131473_StaticSlice_OnDynamicSliceSpawn.py index 16fff25a25..e28893dee3 --- a/AutomatedTesting/Gem/PythonTests/physics/C6131473_StaticSlice_OnDynamicSliceSpawn.py +++ b/AutomatedTesting/Gem/PythonTests/physics/general/C6131473_StaticSlice_OnDynamicSliceSpawn.py @@ -58,11 +58,6 @@ def C6131473_StaticSlice_OnDynamicSliceSpawn(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -103,8 +98,5 @@ def C6131473_StaticSlice_OnDynamicSliceSpawn(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6131473_StaticSlice_OnDynamicSliceSpawn) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243580_Joints_Fixed2BodiesConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243580_Joints_Fixed2BodiesConstrained.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C18243580_Joints_Fixed2BodiesConstrained.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243580_Joints_Fixed2BodiesConstrained.py index 24adc2ff71..ceabb91a28 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243580_Joints_Fixed2BodiesConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243580_Joints_Fixed2BodiesConstrained.py @@ -49,11 +49,6 @@ def C18243580_Joints_Fixed2BodiesConstrained(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -99,8 +94,5 @@ def C18243580_Joints_Fixed2BodiesConstrained(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243580_Joints_Fixed2BodiesConstrained) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243581_Joints_FixedBreakable.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243581_Joints_FixedBreakable.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C18243581_Joints_FixedBreakable.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243581_Joints_FixedBreakable.py index fb3da2c4e5..716df85c67 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243581_Joints_FixedBreakable.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243581_Joints_FixedBreakable.py @@ -48,11 +48,6 @@ def C18243581_Joints_FixedBreakable(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -98,8 +93,5 @@ def C18243581_Joints_FixedBreakable(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243581_Joints_FixedBreakable) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243582_Joints_FixedLeadFollowerCollide.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243582_Joints_FixedLeadFollowerCollide.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C18243582_Joints_FixedLeadFollowerCollide.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243582_Joints_FixedLeadFollowerCollide.py index 0c7a1d7007..0f130a300b --- a/AutomatedTesting/Gem/PythonTests/physics/C18243582_Joints_FixedLeadFollowerCollide.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243582_Joints_FixedLeadFollowerCollide.py @@ -50,11 +50,6 @@ def C18243582_Joints_FixedLeadFollowerCollide(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -93,8 +88,5 @@ def C18243582_Joints_FixedLeadFollowerCollide(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243582_Joints_FixedLeadFollowerCollide) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243583_Joints_Hinge2BodiesConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243583_Joints_Hinge2BodiesConstrained.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C18243583_Joints_Hinge2BodiesConstrained.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243583_Joints_Hinge2BodiesConstrained.py index e91a4a495e..e9b11bc198 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243583_Joints_Hinge2BodiesConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243583_Joints_Hinge2BodiesConstrained.py @@ -52,11 +52,6 @@ def C18243583_Joints_Hinge2BodiesConstrained(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -116,8 +111,5 @@ def C18243583_Joints_Hinge2BodiesConstrained(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243583_Joints_Hinge2BodiesConstrained) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243584_Joints_HingeSoftLimitsConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243584_Joints_HingeSoftLimitsConstrained.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C18243584_Joints_HingeSoftLimitsConstrained.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243584_Joints_HingeSoftLimitsConstrained.py index d4bf9308d2..e100b61494 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243584_Joints_HingeSoftLimitsConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243584_Joints_HingeSoftLimitsConstrained.py @@ -54,9 +54,7 @@ def C18243584_Joints_HingeSoftLimitsConstrained(): import sys import math - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -142,8 +140,5 @@ def C18243584_Joints_HingeSoftLimitsConstrained(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243584_Joints_HingeSoftLimitsConstrained) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243585_Joints_HingeNoLimitsConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243585_Joints_HingeNoLimitsConstrained.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C18243585_Joints_HingeNoLimitsConstrained.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243585_Joints_HingeNoLimitsConstrained.py index 3a734e1ef0..90ac80b1fa --- a/AutomatedTesting/Gem/PythonTests/physics/C18243585_Joints_HingeNoLimitsConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243585_Joints_HingeNoLimitsConstrained.py @@ -52,11 +52,6 @@ def C18243585_Joints_HingeNoLimitsConstrained(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -112,8 +107,5 @@ def C18243585_Joints_HingeNoLimitsConstrained(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243585_Joints_HingeNoLimitsConstrained) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243586_Joints_HingeLeadFollowerCollide.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243586_Joints_HingeLeadFollowerCollide.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C18243586_Joints_HingeLeadFollowerCollide.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243586_Joints_HingeLeadFollowerCollide.py index f22b1b0c9c..2b5b95939f --- a/AutomatedTesting/Gem/PythonTests/physics/C18243586_Joints_HingeLeadFollowerCollide.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243586_Joints_HingeLeadFollowerCollide.py @@ -49,11 +49,6 @@ def C18243586_Joints_HingeLeadFollowerCollide(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -92,8 +87,5 @@ def C18243586_Joints_HingeLeadFollowerCollide(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243586_Joints_HingeLeadFollowerCollide) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243587_Joints_HingeBreakable.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243587_Joints_HingeBreakable.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C18243587_Joints_HingeBreakable.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243587_Joints_HingeBreakable.py index c11851bde4..b1ea7e123a --- a/AutomatedTesting/Gem/PythonTests/physics/C18243587_Joints_HingeBreakable.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243587_Joints_HingeBreakable.py @@ -50,11 +50,6 @@ def C18243587_Joints_HingeBreakable(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -110,8 +105,5 @@ def C18243587_Joints_HingeBreakable(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243587_Joints_HingeBreakable) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243588_Joints_Ball2BodiesConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243588_Joints_Ball2BodiesConstrained.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C18243588_Joints_Ball2BodiesConstrained.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243588_Joints_Ball2BodiesConstrained.py index 107140d7d0..fd8556660a --- a/AutomatedTesting/Gem/PythonTests/physics/C18243588_Joints_Ball2BodiesConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243588_Joints_Ball2BodiesConstrained.py @@ -51,11 +51,6 @@ def C18243588_Joints_Ball2BodiesConstrained(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -114,8 +109,5 @@ def C18243588_Joints_Ball2BodiesConstrained(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243588_Joints_Ball2BodiesConstrained) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243589_Joints_BallSoftLimitsConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243589_Joints_BallSoftLimitsConstrained.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C18243589_Joints_BallSoftLimitsConstrained.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243589_Joints_BallSoftLimitsConstrained.py index 2c6f1f34b0..30747bc2eb --- a/AutomatedTesting/Gem/PythonTests/physics/C18243589_Joints_BallSoftLimitsConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243589_Joints_BallSoftLimitsConstrained.py @@ -55,9 +55,7 @@ def C18243589_Joints_BallSoftLimitsConstrained(): import sys import math - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -135,8 +133,5 @@ def C18243589_Joints_BallSoftLimitsConstrained(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243589_Joints_BallSoftLimitsConstrained) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243590_Joints_BallNoLimitsConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243590_Joints_BallNoLimitsConstrained.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C18243590_Joints_BallNoLimitsConstrained.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243590_Joints_BallNoLimitsConstrained.py index b5de805d16..990f4f826b --- a/AutomatedTesting/Gem/PythonTests/physics/C18243590_Joints_BallNoLimitsConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243590_Joints_BallNoLimitsConstrained.py @@ -54,11 +54,6 @@ def C18243590_Joints_BallNoLimitsConstrained(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -113,8 +108,5 @@ def C18243590_Joints_BallNoLimitsConstrained(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243590_Joints_BallNoLimitsConstrained) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243591_Joints_BallLeadFollowerCollide.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243591_Joints_BallLeadFollowerCollide.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C18243591_Joints_BallLeadFollowerCollide.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243591_Joints_BallLeadFollowerCollide.py index 2e73232bd9..47422d1508 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243591_Joints_BallLeadFollowerCollide.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243591_Joints_BallLeadFollowerCollide.py @@ -49,11 +49,6 @@ def C18243591_Joints_BallLeadFollowerCollide(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -92,8 +87,5 @@ def C18243591_Joints_BallLeadFollowerCollide(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243591_Joints_BallLeadFollowerCollide) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243592_Joints_BallBreakable.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243592_Joints_BallBreakable.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C18243592_Joints_BallBreakable.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243592_Joints_BallBreakable.py index 6539b1b413..6182c312dc --- a/AutomatedTesting/Gem/PythonTests/physics/C18243592_Joints_BallBreakable.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243592_Joints_BallBreakable.py @@ -49,11 +49,6 @@ def C18243592_Joints_BallBreakable(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -108,8 +103,5 @@ def C18243592_Joints_BallBreakable(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243592_Joints_BallBreakable) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243593_Joints_GlobalFrameConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243593_Joints_GlobalFrameConstrained.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C18243593_Joints_GlobalFrameConstrained.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/C18243593_Joints_GlobalFrameConstrained.py index 63708d7571..bd527f10f8 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243593_Joints_GlobalFrameConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/C18243593_Joints_GlobalFrameConstrained.py @@ -53,11 +53,6 @@ def C18243593_Joints_GlobalFrameConstrained(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -121,8 +116,5 @@ def C18243593_Joints_GlobalFrameConstrained(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18243593_Joints_GlobalFrameConstrained) diff --git a/AutomatedTesting/Gem/PythonTests/physics/JointsHelper.py b/AutomatedTesting/Gem/PythonTests/physics/joints/JointsHelper.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/JointsHelper.py rename to AutomatedTesting/Gem/PythonTests/physics/joints/JointsHelper.py index 12c05c3ced..6226f42534 --- a/AutomatedTesting/Gem/PythonTests/physics/JointsHelper.py +++ b/AutomatedTesting/Gem/PythonTests/physics/joints/JointsHelper.py @@ -5,10 +5,6 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ -import ImportPathHelper as imports - -imports.init() - from editor_python_test_tools.utils import Report import azlmbr.legacy.general as general import azlmbr.bus diff --git a/AutomatedTesting/Gem/PythonTests/physics/AddModifyDelete_Utils.py b/AutomatedTesting/Gem/PythonTests/physics/material/AddModifyDelete_Utils.py old mode 100755 new mode 100644 similarity index 100% rename from AutomatedTesting/Gem/PythonTests/physics/AddModifyDelete_Utils.py rename to AutomatedTesting/Gem/PythonTests/physics/material/AddModifyDelete_Utils.py diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after.py b/AutomatedTesting/Gem/PythonTests/physics/material/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after.py index 96e05b88fb..de1945bc8d --- a/AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after.py @@ -99,11 +99,6 @@ def C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -285,8 +280,5 @@ def C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before.py b/AutomatedTesting/Gem/PythonTests/physics/material/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before.py index 95e3acefd7..46262f3f77 --- a/AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before.py @@ -92,11 +92,6 @@ def C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -237,8 +232,5 @@ def C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15096735_Materials_DefaultLibraryConsistency.py b/AutomatedTesting/Gem/PythonTests/physics/material/C15096735_Materials_DefaultLibraryConsistency.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C15096735_Materials_DefaultLibraryConsistency.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C15096735_Materials_DefaultLibraryConsistency.py index 18ffe68415..75c9849756 --- a/AutomatedTesting/Gem/PythonTests/physics/C15096735_Materials_DefaultLibraryConsistency.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C15096735_Materials_DefaultLibraryConsistency.py @@ -140,11 +140,6 @@ def C15096735_Materials_DefaultLibraryConsistency(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -417,8 +412,5 @@ def C15096735_Materials_DefaultLibraryConsistency(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C15096735_Materials_DefaultLibraryConsistency) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15096737_Materials_DefaultMaterialLibraryChanges.py b/AutomatedTesting/Gem/PythonTests/physics/material/C15096737_Materials_DefaultMaterialLibraryChanges.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C15096737_Materials_DefaultMaterialLibraryChanges.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C15096737_Materials_DefaultMaterialLibraryChanges.py index 4dae4c536c..a4c65fc24c --- a/AutomatedTesting/Gem/PythonTests/physics/C15096737_Materials_DefaultMaterialLibraryChanges.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C15096737_Materials_DefaultMaterialLibraryChanges.py @@ -107,9 +107,7 @@ def C15096737_Materials_DefaultMaterialLibraryChanges(): import os import sys - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -293,8 +291,5 @@ def C15096737_Materials_DefaultMaterialLibraryChanges(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C15096737_Materials_DefaultMaterialLibraryChanges) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15096740_Material_LibraryUpdatedCorrectly.py b/AutomatedTesting/Gem/PythonTests/physics/material/C15096740_Material_LibraryUpdatedCorrectly.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C15096740_Material_LibraryUpdatedCorrectly.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C15096740_Material_LibraryUpdatedCorrectly.py index 341597e36a..88c51bae8a --- a/AutomatedTesting/Gem/PythonTests/physics/C15096740_Material_LibraryUpdatedCorrectly.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C15096740_Material_LibraryUpdatedCorrectly.py @@ -49,15 +49,13 @@ def C15096740_Material_LibraryUpdatedCorrectly(): # Built-in Imports import os - import ImportPathHelper as imports - imports.init() # Helper file Imports from editor_python_test_tools.editor_entity_utils import EditorEntity from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper - from asset_utils import Asset + from editor_python_test_tools.asset_utils import Asset # Open 3D Engine Imports import azlmbr.asset as azasset @@ -101,8 +99,5 @@ def C15096740_Material_LibraryUpdatedCorrectly(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C15096740_Material_LibraryUpdatedCorrectly) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15308221_Material_ComponentsInSyncWithLibrary.py b/AutomatedTesting/Gem/PythonTests/physics/material/C15308221_Material_ComponentsInSyncWithLibrary.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C15308221_Material_ComponentsInSyncWithLibrary.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C15308221_Material_ComponentsInSyncWithLibrary.py index 349e824a49..b29709e95b --- a/AutomatedTesting/Gem/PythonTests/physics/C15308221_Material_ComponentsInSyncWithLibrary.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C15308221_Material_ComponentsInSyncWithLibrary.py @@ -105,11 +105,6 @@ def C15308221_Material_ComponentsInSyncWithLibrary(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus as bus import azlmbr.components @@ -244,8 +239,5 @@ def C15308221_Material_ComponentsInSyncWithLibrary(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C15308221_Material_ComponentsInSyncWithLibrary) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15425935_Material_LibraryUpdatedAcrossLevels.py b/AutomatedTesting/Gem/PythonTests/physics/material/C15425935_Material_LibraryUpdatedAcrossLevels.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C15425935_Material_LibraryUpdatedAcrossLevels.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C15425935_Material_LibraryUpdatedAcrossLevels.py index 283b8e3d55..91452a1173 --- a/AutomatedTesting/Gem/PythonTests/physics/C15425935_Material_LibraryUpdatedAcrossLevels.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C15425935_Material_LibraryUpdatedAcrossLevels.py @@ -112,12 +112,6 @@ def C15425935_Material_LibraryUpdatedAcrossLevels(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -307,8 +301,5 @@ def C15425935_Material_LibraryUpdatedAcrossLevels(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C15425935_Material_LibraryUpdatedAcrossLevels) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.py b/AutomatedTesting/Gem/PythonTests/physics/material/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.py index 88abe8dcd1..4d806cda11 --- a/AutomatedTesting/Gem/PythonTests/physics/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.py @@ -79,11 +79,6 @@ def C15556261_PhysXMaterials_CharacterControllerMaterialAssignment(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper import azlmbr.legacy.general as general @@ -202,8 +197,5 @@ def C15556261_PhysXMaterials_CharacterControllerMaterialAssignment(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C15556261_PhysXMaterials_CharacterControllerMaterialAssignment) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15563573_Material_AddModifyDeleteOnCharacterController.py b/AutomatedTesting/Gem/PythonTests/physics/material/C15563573_Material_AddModifyDeleteOnCharacterController.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C15563573_Material_AddModifyDeleteOnCharacterController.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C15563573_Material_AddModifyDeleteOnCharacterController.py index ca00b30479..cf38ddc11c --- a/AutomatedTesting/Gem/PythonTests/physics/C15563573_Material_AddModifyDeleteOnCharacterController.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C15563573_Material_AddModifyDeleteOnCharacterController.py @@ -107,11 +107,6 @@ def C15563573_Material_AddModifyDeleteOnCharacterController(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.math as lymath @@ -197,8 +192,5 @@ def C15563573_Material_AddModifyDeleteOnCharacterController(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C15563573_Material_AddModifyDeleteOnCharacterController) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18977601_Material_FrictionCombinePriority.py b/AutomatedTesting/Gem/PythonTests/physics/material/C18977601_Material_FrictionCombinePriority.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C18977601_Material_FrictionCombinePriority.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C18977601_Material_FrictionCombinePriority.py index 14103ad223..4cef743854 --- a/AutomatedTesting/Gem/PythonTests/physics/C18977601_Material_FrictionCombinePriority.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C18977601_Material_FrictionCombinePriority.py @@ -126,12 +126,6 @@ def C18977601_Material_FrictionCombinePriority(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -357,8 +351,5 @@ def C18977601_Material_FrictionCombinePriority(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18977601_Material_FrictionCombinePriority) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18981526_Material_RestitutionCombinePriority.py b/AutomatedTesting/Gem/PythonTests/physics/material/C18981526_Material_RestitutionCombinePriority.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C18981526_Material_RestitutionCombinePriority.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C18981526_Material_RestitutionCombinePriority.py index 696eb1115a..9663453df2 --- a/AutomatedTesting/Gem/PythonTests/physics/C18981526_Material_RestitutionCombinePriority.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C18981526_Material_RestitutionCombinePriority.py @@ -126,11 +126,6 @@ def C18981526_Material_RestitutionCombinePriority(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -417,8 +412,5 @@ def C18981526_Material_RestitutionCombinePriority(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C18981526_Material_RestitutionCombinePriority) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044455_Material_libraryChangesInstantly.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4044455_Material_libraryChangesInstantly.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C4044455_Material_libraryChangesInstantly.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4044455_Material_libraryChangesInstantly.py index 8a84f5302f..8eb2e7e9a4 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044455_Material_libraryChangesInstantly.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4044455_Material_libraryChangesInstantly.py @@ -173,11 +173,6 @@ def C4044455_Material_libraryChangesInstantly(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -478,8 +473,5 @@ def C4044455_Material_libraryChangesInstantly(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4044455_Material_libraryChangesInstantly) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044456_Material_FrictionCombine.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4044456_Material_FrictionCombine.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4044456_Material_FrictionCombine.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4044456_Material_FrictionCombine.py index 3048224d79..8c3b389264 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044456_Material_FrictionCombine.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4044456_Material_FrictionCombine.py @@ -91,11 +91,6 @@ def C4044456_Material_FrictionCombine(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -213,8 +208,5 @@ def C4044456_Material_FrictionCombine(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4044456_Material_FrictionCombine) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044457_Material_RestitutionCombine.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4044457_Material_RestitutionCombine.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4044457_Material_RestitutionCombine.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4044457_Material_RestitutionCombine.py index 2ba038c928..a20c7e49f7 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044457_Material_RestitutionCombine.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4044457_Material_RestitutionCombine.py @@ -96,11 +96,6 @@ def C4044457_Material_RestitutionCombine(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -245,8 +240,5 @@ def C4044457_Material_RestitutionCombine(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4044457_Material_RestitutionCombine) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044459_Material_DynamicFriction.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4044459_Material_DynamicFriction.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4044459_Material_DynamicFriction.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4044459_Material_DynamicFriction.py index 096a1bc742..cdf2816f17 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044459_Material_DynamicFriction.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4044459_Material_DynamicFriction.py @@ -82,11 +82,6 @@ def C4044459_Material_DynamicFriction(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -191,8 +186,5 @@ def C4044459_Material_DynamicFriction(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4044459_Material_DynamicFriction) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044460_Material_StaticFriction.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4044460_Material_StaticFriction.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4044460_Material_StaticFriction.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4044460_Material_StaticFriction.py index 9730b28e73..5558f01222 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044460_Material_StaticFriction.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4044460_Material_StaticFriction.py @@ -80,11 +80,6 @@ def C4044460_Material_StaticFriction(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -188,8 +183,5 @@ def C4044460_Material_StaticFriction(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4044460_Material_StaticFriction) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044461_Material_Restitution.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4044461_Material_Restitution.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4044461_Material_Restitution.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4044461_Material_Restitution.py index 9cb54331cb..b077af1593 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044461_Material_Restitution.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4044461_Material_Restitution.py @@ -87,11 +87,6 @@ def C4044461_Material_Restitution(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -230,8 +225,5 @@ def C4044461_Material_Restitution(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4044461_Material_Restitution) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044694_Material_EmptyLibraryUsesDefault.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4044694_Material_EmptyLibraryUsesDefault.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4044694_Material_EmptyLibraryUsesDefault.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4044694_Material_EmptyLibraryUsesDefault.py index 4cf092d3bf..8cba90cba8 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044694_Material_EmptyLibraryUsesDefault.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4044694_Material_EmptyLibraryUsesDefault.py @@ -66,11 +66,6 @@ def C4044694_Material_EmptyLibraryUsesDefault(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus as bus import azlmbr.components @@ -189,8 +184,5 @@ def C4044694_Material_EmptyLibraryUsesDefault(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4044694_Material_EmptyLibraryUsesDefault) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044697_Material_PerfaceMaterialValidation.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4044697_Material_PerfaceMaterialValidation.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C4044697_Material_PerfaceMaterialValidation.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4044697_Material_PerfaceMaterialValidation.py index e365a799aa..9ee8d404d7 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044697_Material_PerfaceMaterialValidation.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4044697_Material_PerfaceMaterialValidation.py @@ -107,11 +107,6 @@ def C4044697_Material_PerfaceMaterialValidation(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -302,8 +297,5 @@ def C4044697_Material_PerfaceMaterialValidation(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4044697_Material_PerfaceMaterialValidation) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4888315_Material_AddModifyDeleteOnCollider.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4888315_Material_AddModifyDeleteOnCollider.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4888315_Material_AddModifyDeleteOnCollider.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4888315_Material_AddModifyDeleteOnCollider.py index d66cf17b5f..61c378d287 --- a/AutomatedTesting/Gem/PythonTests/physics/C4888315_Material_AddModifyDeleteOnCollider.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4888315_Material_AddModifyDeleteOnCollider.py @@ -90,11 +90,6 @@ def C4888315_Material_AddModifyDeleteOnCollider(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.math as lymath @@ -176,8 +171,5 @@ def C4888315_Material_AddModifyDeleteOnCollider(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4888315_Material_AddModifyDeleteOnCollider) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4925577_Materials_MaterialAssignedToTerrain.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4925577_Materials_MaterialAssignedToTerrain.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C4925577_Materials_MaterialAssignedToTerrain.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4925577_Materials_MaterialAssignedToTerrain.py index feafce07d5..219e12fdb2 --- a/AutomatedTesting/Gem/PythonTests/physics/C4925577_Materials_MaterialAssignedToTerrain.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4925577_Materials_MaterialAssignedToTerrain.py @@ -76,11 +76,6 @@ def C4925577_Materials_MaterialAssignedToTerrain(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -305,8 +300,5 @@ def C4925577_Materials_MaterialAssignedToTerrain(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4925577_Materials_MaterialAssignedToTerrain) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4925579_Material_AddModifyDeleteOnTerrain.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4925579_Material_AddModifyDeleteOnTerrain.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4925579_Material_AddModifyDeleteOnTerrain.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4925579_Material_AddModifyDeleteOnTerrain.py index db2093047e..8b3d72a932 --- a/AutomatedTesting/Gem/PythonTests/physics/C4925579_Material_AddModifyDeleteOnTerrain.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4925579_Material_AddModifyDeleteOnTerrain.py @@ -91,11 +91,6 @@ def C4925579_Material_AddModifyDeleteOnTerrain(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.math as lymath @@ -176,8 +171,5 @@ def C4925579_Material_AddModifyDeleteOnTerrain(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4925579_Material_AddModifyDeleteOnTerrain) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4925580_Material_RagdollBonesMaterial.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4925580_Material_RagdollBonesMaterial.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4925580_Material_RagdollBonesMaterial.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4925580_Material_RagdollBonesMaterial.py index 203db0bd39..96316b1cdf --- a/AutomatedTesting/Gem/PythonTests/physics/C4925580_Material_RagdollBonesMaterial.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4925580_Material_RagdollBonesMaterial.py @@ -66,11 +66,6 @@ def C4925580_Material_RagdollBonesMaterial(): # Setup path import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus import azlmbr.components @@ -194,8 +189,5 @@ def C4925580_Material_RagdollBonesMaterial(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4925580_Material_RagdollBonesMaterial) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4925582_Material_AddModifyDeleteOnRagdollBones.py b/AutomatedTesting/Gem/PythonTests/physics/material/C4925582_Material_AddModifyDeleteOnRagdollBones.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4925582_Material_AddModifyDeleteOnRagdollBones.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C4925582_Material_AddModifyDeleteOnRagdollBones.py index acdfb98411..0abfae08f9 --- a/AutomatedTesting/Gem/PythonTests/physics/C4925582_Material_AddModifyDeleteOnRagdollBones.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C4925582_Material_AddModifyDeleteOnRagdollBones.py @@ -92,11 +92,6 @@ def C4925582_Material_AddModifyDeleteOnRagdollBones(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus as bus import azlmbr.components @@ -212,8 +207,5 @@ def C4925582_Material_AddModifyDeleteOnRagdollBones(): Report.info("Modified max bouce: " + str(modified_ragdoll.bounces[0])) if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4925582_Material_AddModifyDeleteOnRagdollBones) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5296614_PhysXMaterial_ColliderShape.py b/AutomatedTesting/Gem/PythonTests/physics/material/C5296614_PhysXMaterial_ColliderShape.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5296614_PhysXMaterial_ColliderShape.py rename to AutomatedTesting/Gem/PythonTests/physics/material/C5296614_PhysXMaterial_ColliderShape.py index 82275d1b0d..de7ed4db9b --- a/AutomatedTesting/Gem/PythonTests/physics/C5296614_PhysXMaterial_ColliderShape.py +++ b/AutomatedTesting/Gem/PythonTests/physics/material/C5296614_PhysXMaterial_ColliderShape.py @@ -60,11 +60,6 @@ def C5296614_PhysXMaterial_ColliderShape(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper import azlmbr.legacy.general as general @@ -152,8 +147,5 @@ def C5296614_PhysXMaterial_ColliderShape(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5296614_PhysXMaterial_ColliderShape) diff --git a/AutomatedTesting/Gem/PythonTests/physics/Physmaterial_Editor.py b/AutomatedTesting/Gem/PythonTests/physics/material/Physmaterial_Editor.py old mode 100755 new mode 100644 similarity index 100% rename from AutomatedTesting/Gem/PythonTests/physics/Physmaterial_Editor.py rename to AutomatedTesting/Gem/PythonTests/physics/material/Physmaterial_Editor.py diff --git a/AutomatedTesting/Gem/PythonTests/physics/C13895144_Ragdoll_ChangeLevel.py b/AutomatedTesting/Gem/PythonTests/physics/ragdoll/C13895144_Ragdoll_ChangeLevel.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C13895144_Ragdoll_ChangeLevel.py rename to AutomatedTesting/Gem/PythonTests/physics/ragdoll/C13895144_Ragdoll_ChangeLevel.py index 28baa2bcf3..c7ff00a7e3 --- a/AutomatedTesting/Gem/PythonTests/physics/C13895144_Ragdoll_ChangeLevel.py +++ b/AutomatedTesting/Gem/PythonTests/physics/ragdoll/C13895144_Ragdoll_ChangeLevel.py @@ -58,11 +58,6 @@ def C13895144_Ragdoll_ChangeLevel(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -104,8 +99,5 @@ def C13895144_Ragdoll_ChangeLevel(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C13895144_Ragdoll_ChangeLevel) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14654882_Ragdoll_ragdollAPTest.py b/AutomatedTesting/Gem/PythonTests/physics/ragdoll/C14654882_Ragdoll_ragdollAPTest.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C14654882_Ragdoll_ragdollAPTest.py rename to AutomatedTesting/Gem/PythonTests/physics/ragdoll/C14654882_Ragdoll_ragdollAPTest.py index 024126ef55..56784b0c72 --- a/AutomatedTesting/Gem/PythonTests/physics/C14654882_Ragdoll_ragdollAPTest.py +++ b/AutomatedTesting/Gem/PythonTests/physics/ragdoll/C14654882_Ragdoll_ragdollAPTest.py @@ -69,11 +69,6 @@ def C14654882_Ragdoll_ragdollAPTest(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -129,8 +124,5 @@ def C14654882_Ragdoll_ragdollAPTest(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C14654882_Ragdoll_ragdollAPTest) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C17411467_AddPhysxRagdollComponent.py b/AutomatedTesting/Gem/PythonTests/physics/ragdoll/C17411467_AddPhysxRagdollComponent.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C17411467_AddPhysxRagdollComponent.py rename to AutomatedTesting/Gem/PythonTests/physics/ragdoll/C17411467_AddPhysxRagdollComponent.py index ea58f84dad..9c02239d73 --- a/AutomatedTesting/Gem/PythonTests/physics/C17411467_AddPhysxRagdollComponent.py +++ b/AutomatedTesting/Gem/PythonTests/physics/ragdoll/C17411467_AddPhysxRagdollComponent.py @@ -9,7 +9,6 @@ Test Case Title : Check that Physx Ragdoll component can be added without errors """ - # fmt: off class Tests(): create_test_entity = ("Entity created successfully", "Failed to create Entity") @@ -45,10 +44,6 @@ def C17411467_AddPhysxRagdollComponent(): :return: None """ - # Helper file Imports - import ImportPathHelper as imports - - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.editor_entity_utils import EditorEntity from editor_python_test_tools.utils import TestHelper as helper @@ -93,8 +88,5 @@ def C17411467_AddPhysxRagdollComponent(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C17411467_AddPhysxRagdollComponent) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C28978033_Ragdoll_WorldBodyBusTests.py b/AutomatedTesting/Gem/PythonTests/physics/ragdoll/C28978033_Ragdoll_WorldBodyBusTests.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C28978033_Ragdoll_WorldBodyBusTests.py rename to AutomatedTesting/Gem/PythonTests/physics/ragdoll/C28978033_Ragdoll_WorldBodyBusTests.py index b22bcf5a36..d917449daf --- a/AutomatedTesting/Gem/PythonTests/physics/C28978033_Ragdoll_WorldBodyBusTests.py +++ b/AutomatedTesting/Gem/PythonTests/physics/ragdoll/C28978033_Ragdoll_WorldBodyBusTests.py @@ -45,11 +45,6 @@ def C28978033_Ragdoll_WorldBodyBusTests(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus from editor_python_test_tools.utils import Report @@ -116,8 +111,5 @@ def C28978033_Ragdoll_WorldBodyBusTests(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C28978033_Ragdoll_WorldBodyBusTests) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C13351703_COM_NotIncludeTriggerShapes.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C13351703_COM_NotIncludeTriggerShapes.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C13351703_COM_NotIncludeTriggerShapes.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C13351703_COM_NotIncludeTriggerShapes.py index a9e7727890..56f44503ae --- a/AutomatedTesting/Gem/PythonTests/physics/C13351703_COM_NotIncludeTriggerShapes.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C13351703_COM_NotIncludeTriggerShapes.py @@ -55,11 +55,6 @@ def C13351703_COM_NotIncludeTriggerShapes(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -93,8 +88,5 @@ def C13351703_COM_NotIncludeTriggerShapes(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C13351703_COM_NotIncludeTriggerShapes) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C13352089_RigidBodies_MaxAngularVelocity.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C13352089_RigidBodies_MaxAngularVelocity.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C13352089_RigidBodies_MaxAngularVelocity.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C13352089_RigidBodies_MaxAngularVelocity.py index 2342545a87..41635ecc47 --- a/AutomatedTesting/Gem/PythonTests/physics/C13352089_RigidBodies_MaxAngularVelocity.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C13352089_RigidBodies_MaxAngularVelocity.py @@ -123,9 +123,7 @@ def C13352089_RigidBodies_MaxAngularVelocity(): import math import time - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -281,8 +279,5 @@ def C13352089_RigidBodies_MaxAngularVelocity(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C13352089_RigidBodies_MaxAngularVelocity) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976194_RigidBody_PhysXComponentIsValid.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976194_RigidBody_PhysXComponentIsValid.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C4976194_RigidBody_PhysXComponentIsValid.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976194_RigidBody_PhysXComponentIsValid.py index 79c3e06814..b0b69d6d91 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976194_RigidBody_PhysXComponentIsValid.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976194_RigidBody_PhysXComponentIsValid.py @@ -54,9 +54,7 @@ def C4976194_RigidBody_PhysXComponentIsValid(): import os, sys - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -110,8 +108,5 @@ def C4976194_RigidBody_PhysXComponentIsValid(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976194_RigidBody_PhysXComponentIsValid) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976195_RigidBodies_InitialLinearVelocity.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976195_RigidBodies_InitialLinearVelocity.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C4976195_RigidBodies_InitialLinearVelocity.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976195_RigidBodies_InitialLinearVelocity.py index 6bddae76f4..f13a7232fa --- a/AutomatedTesting/Gem/PythonTests/physics/C4976195_RigidBodies_InitialLinearVelocity.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976195_RigidBodies_InitialLinearVelocity.py @@ -58,11 +58,6 @@ def C4976195_RigidBodies_InitialLinearVelocity(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -132,8 +127,5 @@ def C4976195_RigidBodies_InitialLinearVelocity(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976195_RigidBodies_InitialLinearVelocity) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976197_RigidBodies_InitialAngularVelocity.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976197_RigidBodies_InitialAngularVelocity.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4976197_RigidBodies_InitialAngularVelocity.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976197_RigidBodies_InitialAngularVelocity.py index 73c1e88f79..7f400051ec --- a/AutomatedTesting/Gem/PythonTests/physics/C4976197_RigidBodies_InitialAngularVelocity.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976197_RigidBodies_InitialAngularVelocity.py @@ -72,9 +72,7 @@ def C4976197_RigidBodies_InitialAngularVelocity(): import sys import math - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -177,8 +175,5 @@ def C4976197_RigidBodies_InitialAngularVelocity(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976197_RigidBodies_InitialAngularVelocity) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976199_RigidBodies_LinearDampingObjectMotion.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976199_RigidBodies_LinearDampingObjectMotion.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4976199_RigidBodies_LinearDampingObjectMotion.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976199_RigidBodies_LinearDampingObjectMotion.py index 08b212d1e7..502478f13c --- a/AutomatedTesting/Gem/PythonTests/physics/C4976199_RigidBodies_LinearDampingObjectMotion.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976199_RigidBodies_LinearDampingObjectMotion.py @@ -56,11 +56,6 @@ def C4976199_RigidBodies_LinearDampingObjectMotion(): # Setup path import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -270,8 +265,5 @@ def C4976199_RigidBodies_LinearDampingObjectMotion(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976199_RigidBodies_LinearDampingObjectMotion) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976200_RigidBody_AngularDampingObjectRotation.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976200_RigidBody_AngularDampingObjectRotation.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C4976200_RigidBody_AngularDampingObjectRotation.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976200_RigidBody_AngularDampingObjectRotation.py index b889276554..77dfe4c483 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976200_RigidBody_AngularDampingObjectRotation.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976200_RigidBody_AngularDampingObjectRotation.py @@ -61,9 +61,7 @@ def C4976200_RigidBody_AngularDampingObjectRotation(): import sys import math - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -285,8 +283,5 @@ def C4976200_RigidBody_AngularDampingObjectRotation(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976200_RigidBody_AngularDampingObjectRotation) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976201_RigidBody_MassIsAssigned.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976201_RigidBody_MassIsAssigned.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C4976201_RigidBody_MassIsAssigned.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976201_RigidBody_MassIsAssigned.py index 17fd0827c1..54f589da1e --- a/AutomatedTesting/Gem/PythonTests/physics/C4976201_RigidBody_MassIsAssigned.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976201_RigidBody_MassIsAssigned.py @@ -101,11 +101,6 @@ def C4976201_RigidBody_MassIsAssigned(): import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus import azlmbr @@ -373,8 +368,5 @@ def C4976201_RigidBody_MassIsAssigned(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976201_RigidBody_MassIsAssigned) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976202_RigidBody_StopsWhenBelowKineticThreshold.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976202_RigidBody_StopsWhenBelowKineticThreshold.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C4976202_RigidBody_StopsWhenBelowKineticThreshold.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976202_RigidBody_StopsWhenBelowKineticThreshold.py index 53415bf43a..655c33304d --- a/AutomatedTesting/Gem/PythonTests/physics/C4976202_RigidBody_StopsWhenBelowKineticThreshold.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976202_RigidBody_StopsWhenBelowKineticThreshold.py @@ -124,11 +124,6 @@ def C4976202_RigidBody_StopsWhenBelowKineticThreshold(): import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus @@ -326,8 +321,5 @@ def C4976202_RigidBody_StopsWhenBelowKineticThreshold(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976202_RigidBody_StopsWhenBelowKineticThreshold) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976204_Verify_Start_Asleep_Condition.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976204_Verify_Start_Asleep_Condition.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C4976204_Verify_Start_Asleep_Condition.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976204_Verify_Start_Asleep_Condition.py index 6c21912d11..ff3111aa55 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976204_Verify_Start_Asleep_Condition.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976204_Verify_Start_Asleep_Condition.py @@ -62,11 +62,6 @@ def C4976204_Verify_Start_Asleep_Condition(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -112,8 +107,5 @@ def C4976204_Verify_Start_Asleep_Condition(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976204_Verify_Start_Asleep_Condition) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976206_RigidBodies_GravityEnabledActive.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976206_RigidBodies_GravityEnabledActive.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C4976206_RigidBodies_GravityEnabledActive.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976206_RigidBodies_GravityEnabledActive.py index 96c62f26ea..e6b50eb2bf --- a/AutomatedTesting/Gem/PythonTests/physics/C4976206_RigidBodies_GravityEnabledActive.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976206_RigidBodies_GravityEnabledActive.py @@ -64,11 +64,6 @@ def C4976206_RigidBodies_GravityEnabledActive(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -145,8 +140,5 @@ def C4976206_RigidBodies_GravityEnabledActive(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976206_RigidBodies_GravityEnabledActive) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976207_PhysXRigidBodies_KinematicBehavior.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976207_PhysXRigidBodies_KinematicBehavior.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C4976207_PhysXRigidBodies_KinematicBehavior.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976207_PhysXRigidBodies_KinematicBehavior.py index 81bed2bbde..65814bd438 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976207_PhysXRigidBodies_KinematicBehavior.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976207_PhysXRigidBodies_KinematicBehavior.py @@ -59,11 +59,6 @@ def C4976207_PhysXRigidBodies_KinematicBehavior(): # Setup path import os import sys - import ImportPathHelper as imports - - imports.init() - - import azlmbr.legacy.general as general import azlmbr.bus from editor_python_test_tools.utils import Report @@ -132,8 +127,5 @@ def C4976207_PhysXRigidBodies_KinematicBehavior(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976207_PhysXRigidBodies_KinematicBehavior) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976209_RigidBody_ComputesCOM.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976209_RigidBody_ComputesCOM.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4976209_RigidBody_ComputesCOM.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976209_RigidBody_ComputesCOM.py index f3f57b2b65..27d4ea1356 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976209_RigidBody_ComputesCOM.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976209_RigidBody_ComputesCOM.py @@ -86,11 +86,6 @@ def C4976209_RigidBody_ComputesCOM(): # Setup path import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -173,8 +168,5 @@ def C4976209_RigidBody_ComputesCOM(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976209_RigidBody_ComputesCOM) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976210_COM_ManualSetting.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976210_COM_ManualSetting.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C4976210_COM_ManualSetting.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976210_COM_ManualSetting.py index 9373f20850..cbbefb5a0e --- a/AutomatedTesting/Gem/PythonTests/physics/C4976210_COM_ManualSetting.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976210_COM_ManualSetting.py @@ -69,9 +69,7 @@ def C4976210_COM_ManualSetting(): """ # internal editor imports - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -298,8 +296,5 @@ def C4976210_COM_ManualSetting(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976210_COM_ManualSetting) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976218_RigidBodies_InertiaObjectsNotComputed.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976218_RigidBodies_InertiaObjectsNotComputed.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C4976218_RigidBodies_InertiaObjectsNotComputed.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976218_RigidBodies_InertiaObjectsNotComputed.py index ef19a00042..eb87fd0c68 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976218_RigidBodies_InertiaObjectsNotComputed.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C4976218_RigidBodies_InertiaObjectsNotComputed.py @@ -39,11 +39,6 @@ def C4976218_RigidBodies_InertiaObjectsNotComputed(): # Setup path import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus as bus import azlmbr.components @@ -161,8 +156,5 @@ def C4976218_RigidBodies_InertiaObjectsNotComputed(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C4976218_RigidBodies_InertiaObjectsNotComputed) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5340400_RigidBody_ManualMomentOfInertia.py b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C5340400_RigidBody_ManualMomentOfInertia.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C5340400_RigidBody_ManualMomentOfInertia.py rename to AutomatedTesting/Gem/PythonTests/physics/rigid_body/C5340400_RigidBody_ManualMomentOfInertia.py index 7daf9d3dc8..92d3945391 --- a/AutomatedTesting/Gem/PythonTests/physics/C5340400_RigidBody_ManualMomentOfInertia.py +++ b/AutomatedTesting/Gem/PythonTests/physics/rigid_body/C5340400_RigidBody_ManualMomentOfInertia.py @@ -67,11 +67,6 @@ def C5340400_RigidBody_ManualMomentOfInertia(): # Setup path import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus from editor_python_test_tools.utils import Report @@ -160,8 +155,5 @@ def C5340400_RigidBody_ManualMomentOfInertia(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5340400_RigidBody_ManualMomentOfInertia) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12712452_ScriptCanvas_CollisionEvents.py b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C12712452_ScriptCanvas_CollisionEvents.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C12712452_ScriptCanvas_CollisionEvents.py rename to AutomatedTesting/Gem/PythonTests/physics/script_canvas/C12712452_ScriptCanvas_CollisionEvents.py index 3d3011ef26..6806d5acc8 --- a/AutomatedTesting/Gem/PythonTests/physics/C12712452_ScriptCanvas_CollisionEvents.py +++ b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C12712452_ScriptCanvas_CollisionEvents.py @@ -67,11 +67,6 @@ def C12712452_ScriptCanvas_CollisionEvents(): # Setup path import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus import azlmbr.components @@ -201,8 +196,5 @@ def C12712452_ScriptCanvas_CollisionEvents(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C12712452_ScriptCanvas_CollisionEvents) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12712453_ScriptCanvas_MultipleRaycastNode.py b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C12712453_ScriptCanvas_MultipleRaycastNode.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C12712453_ScriptCanvas_MultipleRaycastNode.py rename to AutomatedTesting/Gem/PythonTests/physics/script_canvas/C12712453_ScriptCanvas_MultipleRaycastNode.py index 2e4c0a3fe2..edbbde4c94 --- a/AutomatedTesting/Gem/PythonTests/physics/C12712453_ScriptCanvas_MultipleRaycastNode.py +++ b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C12712453_ScriptCanvas_MultipleRaycastNode.py @@ -75,11 +75,6 @@ def C12712453_ScriptCanvas_MultipleRaycastNode(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -199,8 +194,5 @@ def C12712453_ScriptCanvas_MultipleRaycastNode(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C12712453_ScriptCanvas_MultipleRaycastNode) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12712454_ScriptCanvas_OverlapNodeVerification.py b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C12712454_ScriptCanvas_OverlapNodeVerification.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C12712454_ScriptCanvas_OverlapNodeVerification.py rename to AutomatedTesting/Gem/PythonTests/physics/script_canvas/C12712454_ScriptCanvas_OverlapNodeVerification.py index f741f0d019..5829e5850c --- a/AutomatedTesting/Gem/PythonTests/physics/C12712454_ScriptCanvas_OverlapNodeVerification.py +++ b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C12712454_ScriptCanvas_OverlapNodeVerification.py @@ -97,11 +97,6 @@ def C12712454_ScriptCanvas_OverlapNodeVerification(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -320,8 +315,5 @@ def C12712454_ScriptCanvas_OverlapNodeVerification(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C12712454_ScriptCanvas_OverlapNodeVerification) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12712455_ScriptCanvas_ShapeCastVerification.py b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C12712455_ScriptCanvas_ShapeCastVerification.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C12712455_ScriptCanvas_ShapeCastVerification.py rename to AutomatedTesting/Gem/PythonTests/physics/script_canvas/C12712455_ScriptCanvas_ShapeCastVerification.py index 581c6033e9..8ce59d2b29 --- a/AutomatedTesting/Gem/PythonTests/physics/C12712455_ScriptCanvas_ShapeCastVerification.py +++ b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C12712455_ScriptCanvas_ShapeCastVerification.py @@ -67,11 +67,6 @@ def C12712455_ScriptCanvas_ShapeCastVerification(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -137,8 +132,5 @@ def C12712455_ScriptCanvas_ShapeCastVerification(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C12712455_ScriptCanvas_ShapeCastVerification) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14195074_ScriptCanvas_PostUpdateEvent.py b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C14195074_ScriptCanvas_PostUpdateEvent.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C14195074_ScriptCanvas_PostUpdateEvent.py rename to AutomatedTesting/Gem/PythonTests/physics/script_canvas/C14195074_ScriptCanvas_PostUpdateEvent.py index 08adccfc60..2c833ba5f3 --- a/AutomatedTesting/Gem/PythonTests/physics/C14195074_ScriptCanvas_PostUpdateEvent.py +++ b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C14195074_ScriptCanvas_PostUpdateEvent.py @@ -61,11 +61,6 @@ def C14195074_ScriptCanvas_PostUpdateEvent(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -182,8 +177,5 @@ def C14195074_ScriptCanvas_PostUpdateEvent(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C14195074_ScriptCanvas_PostUpdateEvent) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14902097_ScriptCanvas_PreUpdateEvent.py b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C14902097_ScriptCanvas_PreUpdateEvent.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C14902097_ScriptCanvas_PreUpdateEvent.py rename to AutomatedTesting/Gem/PythonTests/physics/script_canvas/C14902097_ScriptCanvas_PreUpdateEvent.py index 2a2ce3aaf6..4d48ce34a6 --- a/AutomatedTesting/Gem/PythonTests/physics/C14902097_ScriptCanvas_PreUpdateEvent.py +++ b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C14902097_ScriptCanvas_PreUpdateEvent.py @@ -64,9 +64,7 @@ def C14902097_ScriptCanvas_PreUpdateEvent(): import os import sys - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -189,8 +187,5 @@ def C14902097_ScriptCanvas_PreUpdateEvent(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C14902097_ScriptCanvas_PreUpdateEvent) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14902098_ScriptCanvas_PostPhysicsUpdate.py b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C14902098_ScriptCanvas_PostPhysicsUpdate.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C14902098_ScriptCanvas_PostPhysicsUpdate.py rename to AutomatedTesting/Gem/PythonTests/physics/script_canvas/C14902098_ScriptCanvas_PostPhysicsUpdate.py index b977b9ae10..5cb0b1431e --- a/AutomatedTesting/Gem/PythonTests/physics/C14902098_ScriptCanvas_PostPhysicsUpdate.py +++ b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C14902098_ScriptCanvas_PostPhysicsUpdate.py @@ -75,11 +75,6 @@ def C14902098_ScriptCanvas_PostPhysicsUpdate(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -110,8 +105,5 @@ def C14902098_ScriptCanvas_PostPhysicsUpdate(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C14902098_ScriptCanvas_PostPhysicsUpdate) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14976308_ScriptCanvas_SetKinematicTargetTransform.py b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C14976308_ScriptCanvas_SetKinematicTargetTransform.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/C14976308_ScriptCanvas_SetKinematicTargetTransform.py rename to AutomatedTesting/Gem/PythonTests/physics/script_canvas/C14976308_ScriptCanvas_SetKinematicTargetTransform.py index 2827ba5f16..9e8331f369 --- a/AutomatedTesting/Gem/PythonTests/physics/C14976308_ScriptCanvas_SetKinematicTargetTransform.py +++ b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C14976308_ScriptCanvas_SetKinematicTargetTransform.py @@ -91,11 +91,6 @@ def C14976308_ScriptCanvas_SetKinematicTargetTransform(): # Setup path import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus import azlmbr.components @@ -220,8 +215,5 @@ def C14976308_ScriptCanvas_SetKinematicTargetTransform(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C14976308_ScriptCanvas_SetKinematicTargetTransform) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6224408_ScriptCanvas_EntitySpawn.py b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C6224408_ScriptCanvas_EntitySpawn.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C6224408_ScriptCanvas_EntitySpawn.py rename to AutomatedTesting/Gem/PythonTests/physics/script_canvas/C6224408_ScriptCanvas_EntitySpawn.py index c458073799..12e4a25b4d --- a/AutomatedTesting/Gem/PythonTests/physics/C6224408_ScriptCanvas_EntitySpawn.py +++ b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C6224408_ScriptCanvas_EntitySpawn.py @@ -60,11 +60,6 @@ def C6224408_ScriptCanvas_EntitySpawn(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -144,8 +139,5 @@ def C6224408_ScriptCanvas_EntitySpawn(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6224408_ScriptCanvas_EntitySpawn) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6274125_ScriptCanvas_TriggerEvents.py b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C6274125_ScriptCanvas_TriggerEvents.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C6274125_ScriptCanvas_TriggerEvents.py rename to AutomatedTesting/Gem/PythonTests/physics/script_canvas/C6274125_ScriptCanvas_TriggerEvents.py index 0e7ca0c8d3..5fc4261607 --- a/AutomatedTesting/Gem/PythonTests/physics/C6274125_ScriptCanvas_TriggerEvents.py +++ b/AutomatedTesting/Gem/PythonTests/physics/script_canvas/C6274125_ScriptCanvas_TriggerEvents.py @@ -66,11 +66,6 @@ def C6274125_ScriptCanvas_TriggerEvents(): import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus @@ -128,8 +123,5 @@ def C6274125_ScriptCanvas_TriggerEvents(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6274125_ScriptCanvas_TriggerEvents) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C13508019_Terrain_TerrainTexturePainterWorks.py b/AutomatedTesting/Gem/PythonTests/physics/terrain/C13508019_Terrain_TerrainTexturePainterWorks.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C13508019_Terrain_TerrainTexturePainterWorks.py rename to AutomatedTesting/Gem/PythonTests/physics/terrain/C13508019_Terrain_TerrainTexturePainterWorks.py index 87534ffd58..9822b933d1 --- a/AutomatedTesting/Gem/PythonTests/physics/C13508019_Terrain_TerrainTexturePainterWorks.py +++ b/AutomatedTesting/Gem/PythonTests/physics/terrain/C13508019_Terrain_TerrainTexturePainterWorks.py @@ -40,9 +40,7 @@ def C13508019_Terrain_TerrainTexturePainterWorks(): # Setup path import os, sys - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -137,8 +135,5 @@ def C13508019_Terrain_TerrainTexturePainterWorks(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C13508019_Terrain_TerrainTexturePainterWorks) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15308217_NoCrash_LevelSwitch.py b/AutomatedTesting/Gem/PythonTests/physics/terrain/C15308217_NoCrash_LevelSwitch.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C15308217_NoCrash_LevelSwitch.py rename to AutomatedTesting/Gem/PythonTests/physics/terrain/C15308217_NoCrash_LevelSwitch.py index 0fc5c65db3..f3641b12bc --- a/AutomatedTesting/Gem/PythonTests/physics/C15308217_NoCrash_LevelSwitch.py +++ b/AutomatedTesting/Gem/PythonTests/physics/terrain/C15308217_NoCrash_LevelSwitch.py @@ -62,11 +62,6 @@ def C15308217_NoCrash_LevelSwitch(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -106,8 +101,5 @@ def C15308217_NoCrash_LevelSwitch(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C15308217_NoCrash_LevelSwitch) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C3510642_Terrain_NotCollideWithTerrain.py b/AutomatedTesting/Gem/PythonTests/physics/terrain/C3510642_Terrain_NotCollideWithTerrain.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C3510642_Terrain_NotCollideWithTerrain.py rename to AutomatedTesting/Gem/PythonTests/physics/terrain/C3510642_Terrain_NotCollideWithTerrain.py index c3e1ac018c..09522da31a --- a/AutomatedTesting/Gem/PythonTests/physics/C3510642_Terrain_NotCollideWithTerrain.py +++ b/AutomatedTesting/Gem/PythonTests/physics/terrain/C3510642_Terrain_NotCollideWithTerrain.py @@ -65,11 +65,6 @@ def C3510642_Terrain_NotCollideWithTerrain(): import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus @@ -168,8 +163,5 @@ def C3510642_Terrain_NotCollideWithTerrain(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C3510642_Terrain_NotCollideWithTerrain) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5689518_PhysXTerrain_CollidesWithPhysXTerrain.py b/AutomatedTesting/Gem/PythonTests/physics/terrain/C5689518_PhysXTerrain_CollidesWithPhysXTerrain.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C5689518_PhysXTerrain_CollidesWithPhysXTerrain.py rename to AutomatedTesting/Gem/PythonTests/physics/terrain/C5689518_PhysXTerrain_CollidesWithPhysXTerrain.py index b586c0b096..a10cc72ed2 --- a/AutomatedTesting/Gem/PythonTests/physics/C5689518_PhysXTerrain_CollidesWithPhysXTerrain.py +++ b/AutomatedTesting/Gem/PythonTests/physics/terrain/C5689518_PhysXTerrain_CollidesWithPhysXTerrain.py @@ -47,11 +47,6 @@ def C5689518_PhysXTerrain_CollidesWithPhysXTerrain(): """ import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general import azlmbr.bus from editor_python_test_tools.utils import Report @@ -113,8 +108,5 @@ def C5689518_PhysXTerrain_CollidesWithPhysXTerrain(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5689518_PhysXTerrain_CollidesWithPhysXTerrain) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5689522_Physxterrain_AddPhysxterrainNoEditorCrash.py b/AutomatedTesting/Gem/PythonTests/physics/terrain/C5689522_Physxterrain_AddPhysxterrainNoEditorCrash.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C5689522_Physxterrain_AddPhysxterrainNoEditorCrash.py rename to AutomatedTesting/Gem/PythonTests/physics/terrain/C5689522_Physxterrain_AddPhysxterrainNoEditorCrash.py index 0c1d0d4d1c..8e42f9f77c --- a/AutomatedTesting/Gem/PythonTests/physics/C5689522_Physxterrain_AddPhysxterrainNoEditorCrash.py +++ b/AutomatedTesting/Gem/PythonTests/physics/terrain/C5689522_Physxterrain_AddPhysxterrainNoEditorCrash.py @@ -58,11 +58,6 @@ def C5689522_Physxterrain_AddPhysxterrainNoEditorCrash(): import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general from editor_python_test_tools.utils import Report @@ -105,8 +100,5 @@ def C5689522_Physxterrain_AddPhysxterrainNoEditorCrash(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5689522_Physxterrain_AddPhysxterrainNoEditorCrash) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5689524_MultipleTerrains_CheckWarningInConsole.py b/AutomatedTesting/Gem/PythonTests/physics/terrain/C5689524_MultipleTerrains_CheckWarningInConsole.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C5689524_MultipleTerrains_CheckWarningInConsole.py rename to AutomatedTesting/Gem/PythonTests/physics/terrain/C5689524_MultipleTerrains_CheckWarningInConsole.py index 04912dd401..ba74716544 --- a/AutomatedTesting/Gem/PythonTests/physics/C5689524_MultipleTerrains_CheckWarningInConsole.py +++ b/AutomatedTesting/Gem/PythonTests/physics/terrain/C5689524_MultipleTerrains_CheckWarningInConsole.py @@ -60,12 +60,6 @@ def C5689524_MultipleTerrains_CheckWarningInConsole(): import os import sys - - import ImportPathHelper as imports - - imports.init() - - import azlmbr.legacy.general as general from editor_python_test_tools.utils import Report @@ -107,8 +101,5 @@ def C5689524_MultipleTerrains_CheckWarningInConsole(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5689524_MultipleTerrains_CheckWarningInConsole) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5689528_Terrain_MultipleTerrainComponents.py b/AutomatedTesting/Gem/PythonTests/physics/terrain/C5689528_Terrain_MultipleTerrainComponents.py old mode 100755 new mode 100644 similarity index 96% rename from AutomatedTesting/Gem/PythonTests/physics/C5689528_Terrain_MultipleTerrainComponents.py rename to AutomatedTesting/Gem/PythonTests/physics/terrain/C5689528_Terrain_MultipleTerrainComponents.py index a5a8d65788..fb1fd01724 --- a/AutomatedTesting/Gem/PythonTests/physics/C5689528_Terrain_MultipleTerrainComponents.py +++ b/AutomatedTesting/Gem/PythonTests/physics/terrain/C5689528_Terrain_MultipleTerrainComponents.py @@ -60,11 +60,6 @@ def C5689528_Terrain_MultipleTerrainComponents(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper from editor_python_test_tools.utils import Tracer @@ -103,8 +98,5 @@ def C5689528_Terrain_MultipleTerrainComponents(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5689528_Terrain_MultipleTerrainComponents) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5689531_Warning_TerrainSliceTerrainComponent.py b/AutomatedTesting/Gem/PythonTests/physics/terrain/C5689531_Warning_TerrainSliceTerrainComponent.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/C5689531_Warning_TerrainSliceTerrainComponent.py rename to AutomatedTesting/Gem/PythonTests/physics/terrain/C5689531_Warning_TerrainSliceTerrainComponent.py index 2eaa55eacf..68ddaba5ed --- a/AutomatedTesting/Gem/PythonTests/physics/C5689531_Warning_TerrainSliceTerrainComponent.py +++ b/AutomatedTesting/Gem/PythonTests/physics/terrain/C5689531_Warning_TerrainSliceTerrainComponent.py @@ -65,11 +65,6 @@ def C5689531_Warning_TerrainSliceTerrainComponent(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper from editor_python_test_tools.utils import Tracer @@ -115,8 +110,5 @@ def C5689531_Warning_TerrainSliceTerrainComponent(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C5689531_Warning_TerrainSliceTerrainComponent) diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6032082_Terrain_MultipleResolutionsValid.py b/AutomatedTesting/Gem/PythonTests/physics/terrain/C6032082_Terrain_MultipleResolutionsValid.py old mode 100755 new mode 100644 similarity index 98% rename from AutomatedTesting/Gem/PythonTests/physics/C6032082_Terrain_MultipleResolutionsValid.py rename to AutomatedTesting/Gem/PythonTests/physics/terrain/C6032082_Terrain_MultipleResolutionsValid.py index 6bb44323a2..66615e1937 --- a/AutomatedTesting/Gem/PythonTests/physics/C6032082_Terrain_MultipleResolutionsValid.py +++ b/AutomatedTesting/Gem/PythonTests/physics/terrain/C6032082_Terrain_MultipleResolutionsValid.py @@ -80,11 +80,6 @@ def C6032082_Terrain_MultipleResolutionsValid(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper @@ -209,8 +204,5 @@ def C6032082_Terrain_MultipleResolutionsValid(): if __name__ == "__main__": - import ImportPathHelper as imports - imports.init() - from editor_python_test_tools.utils import Report Report.start_test(C6032082_Terrain_MultipleResolutionsValid) diff --git a/AutomatedTesting/Gem/PythonTests/physics/FileManagement.py b/AutomatedTesting/Gem/PythonTests/physics/utils/FileManagement.py old mode 100755 new mode 100644 similarity index 100% rename from AutomatedTesting/Gem/PythonTests/physics/FileManagement.py rename to AutomatedTesting/Gem/PythonTests/physics/utils/FileManagement.py diff --git a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Managed_Files.py b/AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_Managed_Files.py old mode 100755 new mode 100644 similarity index 89% rename from AutomatedTesting/Gem/PythonTests/physics/UtilTest_Managed_Files.py rename to AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_Managed_Files.py index 2e6e854c7d..49747da443 --- a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Managed_Files.py +++ b/AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_Managed_Files.py @@ -13,11 +13,6 @@ class Tests: def run(): import os import sys - - import ImportPathHelper as imports - - imports.init() - from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper diff --git a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Physmaterial_Editor.py b/AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_Physmaterial_Editor.py old mode 100755 new mode 100644 similarity index 99% rename from AutomatedTesting/Gem/PythonTests/physics/UtilTest_Physmaterial_Editor.py rename to AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_Physmaterial_Editor.py index ec870d12c4..27d670d1e8 --- a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Physmaterial_Editor.py +++ b/AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_Physmaterial_Editor.py @@ -50,9 +50,7 @@ def run(): """ import os import sys - import ImportPathHelper as imports - imports.init() from editor_python_test_tools.utils import Report from editor_python_test_tools.utils import TestHelper as helper diff --git a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_PhysxConfig_Default.py b/AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_PhysxConfig_Default.py old mode 100755 new mode 100644 similarity index 100% rename from AutomatedTesting/Gem/PythonTests/physics/UtilTest_PhysxConfig_Default.py rename to AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_PhysxConfig_Default.py diff --git a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_PhysxConfig_Override.py b/AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_PhysxConfig_Override.py old mode 100755 new mode 100644 similarity index 100% rename from AutomatedTesting/Gem/PythonTests/physics/UtilTest_PhysxConfig_Override.py rename to AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_PhysxConfig_Override.py diff --git a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Tracer_PicksErrorsAndWarnings.py b/AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_Tracer_PicksErrorsAndWarnings.py old mode 100755 new mode 100644 similarity index 97% rename from AutomatedTesting/Gem/PythonTests/physics/UtilTest_Tracer_PicksErrorsAndWarnings.py rename to AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_Tracer_PicksErrorsAndWarnings.py index 92405498d2..136bcfc03d --- a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Tracer_PicksErrorsAndWarnings.py +++ b/AutomatedTesting/Gem/PythonTests/physics/utils/UtilTest_Tracer_PicksErrorsAndWarnings.py @@ -30,11 +30,6 @@ def run(): import os import sys - - import ImportPathHelper as imports - - imports.init() - import azlmbr.legacy.general as general from editor_python_test_tools.utils import Report diff --git a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt index 5374b0d318..3fc4f3db0e 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt @@ -73,17 +73,5 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) AutomatedTesting.GameLauncher AutomatedTesting.Assets ) - ly_add_pytest( - NAME AutomatedTesting::LoadLevelCPU - TEST_SUITE sandbox - PATH ${CMAKE_CURRENT_LIST_DIR}/test_RemoteConsole_CPULoadLevel_Works.py - TIMEOUT 100 - RUNTIME_DEPENDENCIES - AZ::AssetProcessor - AZ::PythonBindingsExample - Legacy::Editor - AutomatedTesting.GameLauncher - AutomatedTesting.Assets - ) endif() diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_CPULoadLevel_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_CPULoadLevel_Works.py index 701dcfab10..6522514f2f 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_CPULoadLevel_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_CPULoadLevel_Works.py @@ -24,7 +24,7 @@ from ly_remote_console.remote_console_commands import ( @pytest.mark.parametrize("launcher_platform", ["windows"]) @pytest.mark.parametrize("project", ["AutomatedTesting"]) @pytest.mark.parametrize("level", ["Simple"]) -@pytest.mark.SUITE_sandbox +@pytest.mark.SUITE_smoke class TestRemoteConsoleLoadLevelWorks(object): @pytest.fixture def remote_console_instance(self, request): diff --git a/AutomatedTesting/Levels/AWS/ClientAuth/ConitoAnonymousAuthorization.scriptcanvas b/AutomatedTesting/Levels/AWS/ClientAuth/ConitoAnonymousAuthorization.scriptcanvas index 6cbd951fae..c61953a7c1 100644 --- a/AutomatedTesting/Levels/AWS/ClientAuth/ConitoAnonymousAuthorization.scriptcanvas +++ b/AutomatedTesting/Levels/AWS/ClientAuth/ConitoAnonymousAuthorization.scriptcanvas @@ -1,2356 +1,1325 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "ScriptCanvasData", + "ClassData": { + "m_scriptCanvas": { + "Id": { + "id": 6706710049590 + }, + "Name": "ConitoAnonymousAuthorization", + "Components": { + "Component_[6686064357815538527]": { + "$type": "EditorGraphVariableManagerComponent", + "Id": 6686064357815538527, + "m_variableData": { + "m_nameVariableMap": [ + { + "Key": { + "m_id": "{FED50699-DBFE-442D-BB6C-5B0030818690}" + }, + "Value": { + "Datum": { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 4, + "m_azType": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}" + }, + "isNullPointer": false, + "$type": "ClientAuthAWSCredentials", + "label": "Creds" + }, + "VariableId": { + "m_id": "{FED50699-DBFE-442D-BB6C-5B0030818690}" + }, + "VariableName": "Creds" + } + } + ] + } + }, + "Component_[8229254966989441794]": { + "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph", + "Id": 8229254966989441794, + "m_graphData": { + "m_nodes": [ + { + "Id": { + "id": 6732479853366 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[10018029241448660845]": { + "$type": "EBusEventHandler", + "Id": 10018029241448660845, + "Slots": [ + { + "id": { + "m_id": "{CA49F2CC-6D8D-4B79-A2EC-FC892B3080E0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{8B77E1C8-36A3-4DD7-8D8C-384CFA02F904}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{A3CF94A0-43D2-4E1A-B9D4-7D142E125868}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{FD5B4E69-23D5-45CE-94A4-5B8ADC51E068}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{FBF58831-798C-49AF-AFE4-B667AAAFB80F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{4318D470-DC34-4453-884A-CA7321A49DDC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Source", + "toolTip": "ID used to connect on a specific Event address (Type: EntityId)", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{A968DBCB-4507-4155-94FD-7D86AE794FAB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "EntityID", + "DisplayDataType": { + "m_type": 1 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{154DF389-1BC0-440B-9D57-7C074EE8C94D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEntityActivated", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{96563FB8-2C6D-44CA-B9AA-5F07863BDE93}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "EntityID", + "DisplayDataType": { + "m_type": 1 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{436B24D6-79C7-4DDF-A73B-71D5F1953C07}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEntityDeactivated", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 1 + }, + "isNullPointer": false, + "$type": "EntityId", + "value": { + "id": 2901262558 + }, + "label": "Source" + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 245425936 + }, + "Value": { + "m_eventName": "OnEntityActivated", + "m_eventId": { + "Value": 245425936 + }, + "m_eventSlotId": { + "m_id": "{154DF389-1BC0-440B-9D57-7C074EE8C94D}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{A968DBCB-4507-4155-94FD-7D86AE794FAB}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4273369222 + }, + "Value": { + "m_eventName": "OnEntityDeactivated", + "m_eventId": { + "Value": 4273369222 + }, + "m_eventSlotId": { + "m_id": "{436B24D6-79C7-4DDF-A73B-71D5F1953C07}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{96563FB8-2C6D-44CA-B9AA-5F07863BDE93}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "EntityBus", + "m_busId": { + "Value": 3358774020 + } + } + } + }, + { + "Id": { + "id": 6719594951478 + }, + "Name": "SC-Node(Initialize)", + "Components": { + "Component_[11437183238486970293]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 11437183238486970293, + "Slots": [ + { + "id": { + "m_id": "{2C1E3EE7-262F-418C-9861-7D459C415D3F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{CB95F6C6-6F1C-4E95-88FA-940EF78C1EC9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{6520B85D-1E4C-4ECC-B9E4-E12B2A3FD071}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result: Boolean", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "methodType": 0, + "methodName": "Initialize", + "className": "AWSCognitoAuthorizationRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSCognitoAuthorizationRequestBus" + } + } + }, + { + "Id": { + "id": 6736774820662 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[17018320061093636088]": { + "$type": "EBusEventHandler", + "Id": 17018320061093636088, + "Slots": [ + { + "id": { + "m_id": "{785E4FD0-16C5-4DA7-997F-790EE825762E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{EBC33745-F120-44A7-B00E-BB33CC4A4C70}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{B3F4FB70-C354-46BE-9807-9FC7BB2C622E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{9AEA64C0-1654-45C1-9E34-C685BA5192A4}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{2006558F-6EB5-4FD8-AAEC-B3207647E03D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{1F864171-3BF2-41B9-B798-30841004A63A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ClientAuthAWSCredentials", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{42CC05C3-381B-422B-81E6-0A67DF343611}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnRequestAWSCredentialsSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{3F8CDA89-2FD1-438B-8874-A8F55A22BF5A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{D4EA6ED9-60A0-4161-BDAC-734B83A2C360}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnRequestAWSCredentialsFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 3736070646 + }, + "Value": { + "m_eventName": "OnRequestAWSCredentialsSuccess", + "m_eventId": { + "Value": 3736070646 + }, + "m_eventSlotId": { + "m_id": "{42CC05C3-381B-422B-81E6-0A67DF343611}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{1F864171-3BF2-41B9-B798-30841004A63A}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4193877825 + }, + "Value": { + "m_eventName": "OnRequestAWSCredentialsFail", + "m_eventId": { + "Value": 4193877825 + }, + "m_eventSlotId": { + "m_id": "{D4EA6ED9-60A0-4161-BDAC-734B83A2C360}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{3F8CDA89-2FD1-438B-8874-A8F55A22BF5A}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSCognitoAuthorizationNotificationBus", + "m_busId": { + "Value": 1100345364 + } + } + } + }, + { + "Id": { + "id": 6715299984182 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[285714280162783661]": { + "$type": "Print", + "Id": 285714280162783661, + "Slots": [ + { + "id": { + "m_id": "{C667893C-CB0F-455C-A49B-61C717DAC23E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{FEC13BF8-5A06-4962-953E-EB526BD14238}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "Fail anonymous credentials", + "m_unresolvedString": [ + "Fail anonymous credentials" + ] + } + } + }, + { + "Id": { + "id": 6728184886070 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[285714280162783661]": { + "$type": "Print", + "Id": 285714280162783661, + "Slots": [ + { + "id": { + "m_id": "{C667893C-CB0F-455C-A49B-61C717DAC23E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{FEC13BF8-5A06-4962-953E-EB526BD14238}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "Success anonymous credentials", + "m_unresolvedString": [ + "Success anonymous credentials" + ] + } + } + }, + { + "Id": { + "id": 6711005016886 + }, + "Name": "SC-Node(RequestAWSCredentialsAsync)", + "Components": { + "Component_[3965816515223111262]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 3965816515223111262, + "Slots": [ + { + "id": { + "m_id": "{0BB643D4-3989-499E-B997-E51370B8D72D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{2533A5E2-7A0D-429D-A970-FBF28240D574}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "methodType": 0, + "methodName": "RequestAWSCredentialsAsync", + "className": "AWSCognitoAuthorizationRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSCognitoAuthorizationRequestBus" + } + } + }, + { + "Id": { + "id": 6723889918774 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[7309023392789275534]": { + "$type": "EBusEventHandler", + "Id": 7309023392789275534, + "Slots": [ + { + "id": { + "m_id": "{5E6F6747-9B5E-4A7F-9278-161F310CD5AD}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{604545A7-C650-4BF6-BA05-EA468CDC7731}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{F0140D4D-2DF2-42D6-83A9-6CC51C8C1E52}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{A1A40AD6-9AA5-4C50-91C2-78B274BA6895}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{BC5D0C52-CBDB-4778-9577-3CAD3F88B03B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{9EC2A72F-09F7-4DDE-8C5D-7EC489BA0401}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ClientAuthAWSCredentials", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{5E083227-4BC8-4DC0-A3D7-86F3C464FFCC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnRequestAWSCredentialsSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{60D8497E-6879-4379-BAC3-271D25816B72}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{F4AF6BF6-2BBE-4B11-A548-C17935A41E46}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnRequestAWSCredentialsFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 3736070646 + }, + "Value": { + "m_eventName": "OnRequestAWSCredentialsSuccess", + "m_eventId": { + "Value": 3736070646 + }, + "m_eventSlotId": { + "m_id": "{5E083227-4BC8-4DC0-A3D7-86F3C464FFCC}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{9EC2A72F-09F7-4DDE-8C5D-7EC489BA0401}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4193877825 + }, + "Value": { + "m_eventName": "OnRequestAWSCredentialsFail", + "m_eventId": { + "Value": 4193877825 + }, + "m_eventSlotId": { + "m_id": "{F4AF6BF6-2BBE-4B11-A548-C17935A41E46}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{60D8497E-6879-4379-BAC3-271D25816B72}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSCognitoAuthorizationNotificationBus", + "m_busId": { + "Value": 1100345364 + } + } + } + } + ], + "m_connections": [ + { + "Id": { + "id": 6741069787958 + }, + "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(RequestAWSCredentialsAsync: In)", + "Components": { + "Component_[9874477978239191526]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 9874477978239191526, + "sourceEndpoint": { + "nodeId": { + "id": 6719594951478 + }, + "slotId": { + "m_id": "{CB95F6C6-6F1C-4E95-88FA-940EF78C1EC9}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 6711005016886 + }, + "slotId": { + "m_id": "{0BB643D4-3989-499E-B997-E51370B8D72D}" + } + } + } + } + }, + { + "Id": { + "id": 6745364755254 + }, + "Name": "srcEndpoint=(AWSCognitoAuthorizationNotificationBus Handler: ExecutionSlot:OnRequestAWSCredentialsSuccess), destEndpoint=(Print: In)", + "Components": { + "Component_[7934553402512435877]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 7934553402512435877, + "sourceEndpoint": { + "nodeId": { + "id": 6723889918774 + }, + "slotId": { + "m_id": "{5E083227-4BC8-4DC0-A3D7-86F3C464FFCC}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 6728184886070 + }, + "slotId": { + "m_id": "{C667893C-CB0F-455C-A49B-61C717DAC23E}" + } + } + } + } + }, + { + "Id": { + "id": 6749659722550 + }, + "Name": "srcEndpoint=(AWSCognitoAuthorizationNotificationBus Handler: ExecutionSlot:OnRequestAWSCredentialsFail), destEndpoint=(Print: In)", + "Components": { + "Component_[2125665954450546710]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 2125665954450546710, + "sourceEndpoint": { + "nodeId": { + "id": 6736774820662 + }, + "slotId": { + "m_id": "{D4EA6ED9-60A0-4161-BDAC-734B83A2C360}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 6715299984182 + }, + "slotId": { + "m_id": "{C667893C-CB0F-455C-A49B-61C717DAC23E}" + } + } + } + } + }, + { + "Id": { + "id": 6753954689846 + }, + "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(Initialize: In)", + "Components": { + "Component_[4615127778717764315]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4615127778717764315, + "sourceEndpoint": { + "nodeId": { + "id": 6732479853366 + }, + "slotId": { + "m_id": "{154DF389-1BC0-440B-9D57-7C074EE8C94D}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 6719594951478 + }, + "slotId": { + "m_id": "{2C1E3EE7-262F-418C-9861-7D459C415D3F}" + } + } + } + } + } + ] + }, + "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}", + "versionData": { + "_grammarVersion": 1, + "_runtimeVersion": 1 + }, + "m_variableCounter": 1, + "GraphCanvasData": [ + { + "Key": { + "id": 6706710049590 + }, + "Value": { + "ComponentData": { + "{5F84B500-8C45-40D1-8EFC-A5306B241444}": { + "$type": "SceneComponentSaveData", + "ViewParams": { + "Scale": 1.0784334878464947, + "AnchorX": -170.6178436279297, + "AnchorY": -28.745397567749023 + } + } + } + } + }, + { + "Key": { + "id": 6711005016886 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 820.0, + 180.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{912ACE5E-70F5-43A7-A375-D763B26712FE}" + } + } + } + }, + { + "Key": { + "id": 6715299984182 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 600.0, + 740.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{D2FFD8D1-A1C1-4C64-A87E-6A2366DC602C}" + } + } + } + }, + { + "Key": { + "id": 6719594951478 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 420.0, + 180.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{E8A1C3CF-FD12-4D8E-8FB9-F9B678487CF8}" + } + } + } + }, + { + "Key": { + "id": 6723889918774 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 120.0, + 460.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 3736070646 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{E6C8A974-2E4B-439F-94E2-FC9FB4A2ACD8}" + } + } + } + }, + { + "Key": { + "id": 6728184886070 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 640.0, + 500.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{47352093-20A0-4352-8BE4-20A995063E83}" + } + } + } + }, + { + "Key": { + "id": 6732479853366 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 40.0, + 140.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 245425936 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{24559DE7-5A79-40E8-BBAF-029A7D08F472}" + } + } + } + }, + { + "Key": { + "id": 6736774820662 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 120.0, + 740.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 4193877825 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{D1C91A31-0031-4FF8-8E93-B10F8586B366}" + } + } + } + } + ], + "StatisticsHelper": { + "InstanceCounter": [ + { + "Key": 5842116761103598202, + "Value": 1 + }, + { + "Key": 5842117453459104876, + "Value": 1 + }, + { + "Key": 5842117453819001655, + "Value": 1 + }, + { + "Key": 10684225535275896474, + "Value": 2 + }, + { + "Key": 13774516386968943251, + "Value": 1 + }, + { + "Key": 13774516392820282243, + "Value": 1 + } + ] + } + } + } + } + } +} \ No newline at end of file diff --git a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/PasswordSignIn.scriptcanvas b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/PasswordSignIn.scriptcanvas index 1847f1f0ec..3c7cd836a1 100644 --- a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/PasswordSignIn.scriptcanvas +++ b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/PasswordSignIn.scriptcanvas @@ -1,6573 +1,3675 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "ScriptCanvasData", + "ClassData": { + "m_scriptCanvas": { + "Id": { + "id": 22550844404534 + }, + "Name": "PasswordSignIn", + "Components": { + "Component_[6385465305444622263]": { + "$type": "EditorGraphVariableManagerComponent", + "Id": 6385465305444622263, + "m_variableData": { + "m_nameVariableMap": [ + { + "Key": { + "m_id": "{9E6C4595-2633-4312-B9AA-F49A0B90D7A0}" + }, + "Value": { + "Datum": { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 4, + "m_azType": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}" + }, + "isNullPointer": false, + "$type": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C} AZStd::vector", + "value": [ + "AWSCognitoIDP" + ], + "label": "Array" + }, + "VariableId": { + "m_id": "{9E6C4595-2633-4312-B9AA-F49A0B90D7A0}" + }, + "VariableName": "AuthenticationProviders" + } + } + ] + } + }, + "Component_[8710839917828649136]": { + "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph", + "Id": 8710839917828649136, + "m_graphData": { + "m_nodes": [ + { + "Id": { + "id": 22606678979382 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[10817928006900121599]": { + "$type": "Print", + "Id": 10817928006900121599, + "Slots": [ + { + "id": { + "m_id": "{269D4FDC-1137-45A3-8442-2A2DF98D6F6E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{F5EE89C0-AB89-4D06-BD4C-72CA40AB075B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "SignIn Success", + "m_unresolvedString": [ + "SignIn Success" + ] + } + } + }, + { + "Id": { + "id": 22610973946678 + }, + "Name": "SC-Node(Initialize)", + "Components": { + "Component_[1153097947988754865]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 1153097947988754865, + "Slots": [ + { + "id": { + "m_id": "{8C6FB06A-4A06-41E5-94E5-9D78671977C8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Array: 0", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{9E6C4595-2633-4312-B9AA-F49A0B90D7A0}" + } + }, + { + "id": { + "m_id": "{F4ED50C1-0694-4E9F-A4E6-83565E517C1E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{4BB45954-74C5-4023-AFBE-C82638076FDD}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{F6930458-3515-45B6-BB6D-1217547A7401}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result: Boolean", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 4, + "m_azType": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}" + }, + "isNullPointer": true, + "label": "Array: 0" + } + ], + "methodType": 0, + "methodName": "Initialize", + "className": "AuthenticationProviderRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AuthenticationProviderRequestBus" + } + } + }, + { + "Id": { + "id": 22559434339126 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[15120484156765471501]": { + "$type": "EBusEventHandler", + "Id": 15120484156765471501, + "Slots": [ + { + "id": { + "m_id": "{55723136-4724-4749-8A1E-A0829EC4CB54}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{01F5AE9F-BF74-41B1-A1F9-7782B707C013}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{2D449731-3E45-489D-B7EA-586D3E87738C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{7FE6C340-B7A9-4ABD-B30E-FB78707A8042}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{174FBA70-D39B-4FAD-8595-52A63CE855F4}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{B4E8FA2A-6833-43A2-BF8D-E021B7F24C6C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Source", + "toolTip": "ID used to connect on a specific Event address (Type: EntityId)", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{808F793B-E283-4872-B0C9-3BDE44FB0372}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "EntityID", + "DisplayDataType": { + "m_type": 1 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{1E81F46E-80CF-4CF6-8499-04539BBF244E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEntityActivated", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{7977990A-4416-494A-94F1-F2670A6E920B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "EntityID", + "DisplayDataType": { + "m_type": 1 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{AB5A3F2D-D553-49A8-98A5-F99375431668}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEntityDeactivated", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 1 + }, + "isNullPointer": false, + "$type": "EntityId", + "value": { + "id": 2901262558 + }, + "label": "Source" + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 245425936 + }, + "Value": { + "m_eventName": "OnEntityActivated", + "m_eventId": { + "Value": 245425936 + }, + "m_eventSlotId": { + "m_id": "{1E81F46E-80CF-4CF6-8499-04539BBF244E}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{808F793B-E283-4872-B0C9-3BDE44FB0372}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4273369222 + }, + "Value": { + "m_eventName": "OnEntityDeactivated", + "m_eventId": { + "Value": 4273369222 + }, + "m_eventSlotId": { + "m_id": "{AB5A3F2D-D553-49A8-98A5-F99375431668}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{7977990A-4416-494A-94F1-F2670A6E920B}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "EntityBus", + "m_busId": { + "Value": 3358774020 + } + } + } + }, + { + "Id": { + "id": 22580909175606 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[16042865177069512848]": { + "$type": "EBusEventHandler", + "Id": 16042865177069512848, + "Slots": [ + { + "id": { + "m_id": "{8503C0C0-DFA8-43AF-AE40-E2A48C9F77C5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{EE5F8D3F-CC56-400F-91F6-835A2A843D3E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{35490A45-17F4-444E-B4EB-443B4AC61D07}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{FCCA77C5-AB2A-4BE7-BC46-99B74FDBEC7B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{F52BDF60-64FD-488B-8D5D-D996B9400986}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{8C19381E-B495-4B42-880C-86399A055392}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ClientAuthAWSCredentials", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{BCA83F8F-E431-421D-8B01-A8B31C3C66B1}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnRequestAWSCredentialsSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{2EEBA254-1346-4866-80CA-3608BAF5B767}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{BB27DD72-E82E-4C67-8493-E3DF0AFCC093}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnRequestAWSCredentialsFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 3736070646 + }, + "Value": { + "m_eventName": "OnRequestAWSCredentialsSuccess", + "m_eventId": { + "Value": 3736070646 + }, + "m_eventSlotId": { + "m_id": "{BCA83F8F-E431-421D-8B01-A8B31C3C66B1}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{8C19381E-B495-4B42-880C-86399A055392}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4193877825 + }, + "Value": { + "m_eventName": "OnRequestAWSCredentialsFail", + "m_eventId": { + "Value": 4193877825 + }, + "m_eventSlotId": { + "m_id": "{BB27DD72-E82E-4C67-8493-E3DF0AFCC093}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{2EEBA254-1346-4866-80CA-3608BAF5B767}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSCognitoAuthorizationNotificationBus", + "m_busId": { + "Value": 1100345364 + } + } + } + }, + { + "Id": { + "id": 22585204142902 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[16607172582241819113]": { + "$type": "EBusEventHandler", + "Id": 16607172582241819113, + "Slots": [ + { + "id": { + "m_id": "{E55A09C6-5B87-4F4F-9EC4-7F602A5C02AC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{AC007706-2035-4888-AD7C-3C9AF6650FEC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{809A2C05-FB97-4C59-B1D8-C29A22F69097}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E3E053B8-37B7-4094-8974-BF0E13919943}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{5BB6420D-1016-49B8-AC48-3C5C1EE647F5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{D79F252C-3D2A-4CC1-9A51-18B7827EB4CA}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "AuthenticationTokens", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{F3E407C4-9D91-4077-A730-C2463570A9FC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPasswordGrantSingleFactorSignInSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{5B6638B9-4F55-4CCB-A368-C83FED5C43F8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{282E0463-9A13-4681-B69C-B6B30CA7CD01}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPasswordGrantSingleFactorSignInFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{B088E163-C71A-417E-8D35-F0A29273F5D9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorSignInSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{C2EBAEB4-5ECA-441C-8202-0D2A80F1A776}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{79F39D7A-BFC2-4749-9631-575A6C63714D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorSignInFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{0CC24B35-F3D6-4E7B-B9D1-98CEB36059AE}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "AuthenticationTokens", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{3C544F9A-0137-4735-8484-0458246E4D52}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorConfirmSignInSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{BEBDDB95-FBBA-4AE1-BA89-C3DAE042E9E1}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{FA8FE256-A70A-475E-A724-0E70C1099213}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorConfirmSignInFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{919E73F9-6A2B-437B-867D-6723FFF8D29E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{B494FB65-9082-4826-84B4-E2E6DB1803D1}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{7F2FE508-FCDB-45E5-BBEB-8A25E9D09C41}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Number", + "DisplayDataType": { + "m_type": 3 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{E8BA420E-FF66-4B13-94B9-2D96448542B0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnDeviceCodeGrantSignInSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{4694A0AC-A400-47D0-A050-8B6AEDF65748}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{E03D10FB-C618-4260-870D-FA2B2B13FE0D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnDeviceCodeGrantSignInFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{031D9648-B03B-42E3-8E6B-BF5F6FEF1937}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "AuthenticationTokens", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{98B96DAE-EC45-4F36-B39A-F4C91C56FF95}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnDeviceCodeGrantConfirmSignInSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{6958B465-4D41-4325-8A66-011E5BA281F2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{526EE051-CABD-415C-99D1-D55ED0032E5E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnDeviceCodeGrantConfirmSignInFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{A921FE09-C86A-4DE3-9976-0BCC3359CAF3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "AuthenticationTokens", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{981C81CF-AED4-4535-A226-4BC19C718D73}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnRefreshTokensSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{1C060C05-4FE2-455A-BABA-4B86CE19F934}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{F20A8880-B22D-4FAA-8779-F51DE7DB2D21}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnRefreshTokensFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 962116424 + }, + "Value": { + "m_eventName": "OnDeviceCodeGrantSignInSuccess", + "m_eventId": { + "Value": 962116424 + }, + "m_eventSlotId": { + "m_id": "{E8BA420E-FF66-4B13-94B9-2D96448542B0}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{919E73F9-6A2B-437B-867D-6723FFF8D29E}" + }, + { + "m_id": "{B494FB65-9082-4826-84B4-E2E6DB1803D1}" + }, + { + "m_id": "{7F2FE508-FCDB-45E5-BBEB-8A25E9D09C41}" + } + ], + "m_numExpectedArguments": 3 + } + }, + { + "Key": { + "Value": 1026494196 + }, + "Value": { + "m_eventName": "OnRefreshTokensFail", + "m_eventId": { + "Value": 1026494196 + }, + "m_eventSlotId": { + "m_id": "{F20A8880-B22D-4FAA-8779-F51DE7DB2D21}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{1C060C05-4FE2-455A-BABA-4B86CE19F934}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1152314015 + }, + "Value": { + "m_eventName": "OnRefreshTokensSuccess", + "m_eventId": { + "Value": 1152314015 + }, + "m_eventSlotId": { + "m_id": "{981C81CF-AED4-4535-A226-4BC19C718D73}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{A921FE09-C86A-4DE3-9976-0BCC3359CAF3}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1203288733 + }, + "Value": { + "m_eventName": "OnPasswordGrantMultiFactorConfirmSignInSuccess", + "m_eventId": { + "Value": 1203288733 + }, + "m_eventSlotId": { + "m_id": "{3C544F9A-0137-4735-8484-0458246E4D52}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{0CC24B35-F3D6-4E7B-B9D1-98CEB36059AE}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1293959492 + }, + "Value": { + "m_eventName": "OnPasswordGrantSingleFactorSignInFail", + "m_eventId": { + "Value": 1293959492 + }, + "m_eventSlotId": { + "m_id": "{282E0463-9A13-4681-B69C-B6B30CA7CD01}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{5B6638B9-4F55-4CCB-A368-C83FED5C43F8}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1722702500 + }, + "Value": { + "m_eventName": "OnPasswordGrantSingleFactorSignInSuccess", + "m_eventId": { + "Value": 1722702500 + }, + "m_eventSlotId": { + "m_id": "{F3E407C4-9D91-4077-A730-C2463570A9FC}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{D79F252C-3D2A-4CC1-9A51-18B7827EB4CA}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1819337155 + }, + "Value": { + "m_eventName": "OnPasswordGrantMultiFactorConfirmSignInFail", + "m_eventId": { + "Value": 1819337155 + }, + "m_eventSlotId": { + "m_id": "{FA8FE256-A70A-475E-A724-0E70C1099213}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{BEBDDB95-FBBA-4AE1-BA89-C3DAE042E9E1}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1908852787 + }, + "Value": { + "m_eventName": "OnPasswordGrantMultiFactorSignInFail", + "m_eventId": { + "Value": 1908852787 + }, + "m_eventSlotId": { + "m_id": "{79F39D7A-BFC2-4749-9631-575A6C63714D}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{C2EBAEB4-5ECA-441C-8202-0D2A80F1A776}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 2486714370 + }, + "Value": { + "m_eventName": "OnPasswordGrantMultiFactorSignInSuccess", + "m_eventId": { + "Value": 2486714370 + }, + "m_eventSlotId": { + "m_id": "{B088E163-C71A-417E-8D35-F0A29273F5D9}" + } + } + }, + { + "Key": { + "Value": 3091702945 + }, + "Value": { + "m_eventName": "OnDeviceCodeGrantSignInFail", + "m_eventId": { + "Value": 3091702945 + }, + "m_eventSlotId": { + "m_id": "{E03D10FB-C618-4260-870D-FA2B2B13FE0D}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{4694A0AC-A400-47D0-A050-8B6AEDF65748}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 3973214553 + }, + "Value": { + "m_eventName": "OnDeviceCodeGrantConfirmSignInFail", + "m_eventId": { + "Value": 3973214553 + }, + "m_eventSlotId": { + "m_id": "{526EE051-CABD-415C-99D1-D55ED0032E5E}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{6958B465-4D41-4325-8A66-011E5BA281F2}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4272279525 + }, + "Value": { + "m_eventName": "OnDeviceCodeGrantConfirmSignInSuccess", + "m_eventId": { + "Value": 4272279525 + }, + "m_eventSlotId": { + "m_id": "{98B96DAE-EC45-4F36-B39A-F4C91C56FF95}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{031D9648-B03B-42E3-8E6B-BF5F6FEF1937}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AuthenticationProviderNotificationBus", + "m_busId": { + "Value": 3734230664 + } + } + } + }, + { + "Id": { + "id": 22602384012086 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[17989474089224348440]": { + "$type": "Print", + "Id": 17989474089224348440, + "Slots": [ + { + "id": { + "m_id": "{C0E7856E-AE8E-4151-9109-2E3B2A810054}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{36A6967B-AD9E-41C2-9BCC-2AF62F62C774}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "Fail credentials", + "m_unresolvedString": [ + "Fail credentials" + ] + } + } + }, + { + "Id": { + "id": 22593794077494 + }, + "Name": "SC-Node(RequestAWSCredentialsAsync)", + "Components": { + "Component_[3213338170673989286]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 3213338170673989286, + "Slots": [ + { + "id": { + "m_id": "{EB37FB3D-48EB-4766-AD8C-7F03D100C7FA}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E1160157-4FDD-4720-9EF1-995D0380C53D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "methodType": 0, + "methodName": "RequestAWSCredentialsAsync", + "className": "AWSCognitoAuthorizationRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSCognitoAuthorizationRequestBus" + } + } + }, + { + "Id": { + "id": 22563729306422 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[3639374038291845020]": { + "$type": "EBusEventHandler", + "Id": 3639374038291845020, + "Slots": [ + { + "id": { + "m_id": "{2A8157B6-1A5A-464C-B1A1-CC5067AC8872}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{8DBCEE08-2A7F-4D3E-BF59-7FB3A34AD3B7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{D8FCBC44-E46B-4699-B1A2-AE2BFE61A132}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{9E6AE222-55CE-48F1-A844-7DB53C07AB50}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{0507AD01-1320-4210-9786-5F87063D301F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{6772D7F9-08BE-4D59-B410-7E6EC0FFEF2B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "AuthenticationTokens", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{ED8A0C7D-9D75-45A7-BAE1-FD8B980DADE2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPasswordGrantSingleFactorSignInSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{64484918-D357-4B41-830D-CC9EEB6EC963}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{C042D8B9-D834-4A5A-85E7-F9C775EF9784}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPasswordGrantSingleFactorSignInFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{FBBC04A8-2368-4B67-A48F-D7D33EDBC71F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorSignInSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{5873E80A-4E48-4B52-AB91-ACE8DC42EC86}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{DC0B9782-C4BB-49C0-8DE3-06933347FA20}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorSignInFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{4EB602D7-C5D7-427C-B7D3-838CC4FFBA0D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "AuthenticationTokens", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{B0F0A8E6-251E-4009-ADE7-8FA70422B1A3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorConfirmSignInSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{0E5E0F30-D4A3-4361-99DC-DFB03CDA26ED}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{DF4A4D97-D2A3-42C2-9F85-B79D0743B1DD}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorConfirmSignInFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{58B429CF-B818-4CCB-8E31-84B04B65B704}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{4564C0EF-B526-4AB6-9564-0AE22B473EE5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{6CD7C063-7118-4E55-AA6D-9EDF5B72F7E7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Number", + "DisplayDataType": { + "m_type": 3 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{3F5A128D-5F74-4D09-9C12-425DCDDD8A71}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnDeviceCodeGrantSignInSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{D49C27E1-B1F7-4A70-8872-B4E6337F0334}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{E6EFD9E4-7CC8-4FBF-88DE-2FAAC4099AE2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnDeviceCodeGrantSignInFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{92E26492-6278-4B46-8CD4-0B271B1BB21B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "AuthenticationTokens", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{D39D72BA-6EC1-445C-93B7-CAD87B1ADC7D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnDeviceCodeGrantConfirmSignInSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{7D66C081-777B-451E-B626-0DAEB39ECA5A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{AE4AC27C-0EF0-4AFE-B8D2-80D6F1B35FAB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnDeviceCodeGrantConfirmSignInFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{A2BFBF6C-4E19-4294-BDB8-5A191048C9DB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "AuthenticationTokens", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{C2C30AB7-DACE-49FA-B7B3-04B9FFA5763F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnRefreshTokensSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{9BD290CA-B00E-491D-855C-7BD084A0FF43}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{6660546E-CC9B-4951-AE9F-C1D45E6098DD}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnRefreshTokensFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 962116424 + }, + "Value": { + "m_eventName": "OnDeviceCodeGrantSignInSuccess", + "m_eventId": { + "Value": 962116424 + }, + "m_eventSlotId": { + "m_id": "{3F5A128D-5F74-4D09-9C12-425DCDDD8A71}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{58B429CF-B818-4CCB-8E31-84B04B65B704}" + }, + { + "m_id": "{4564C0EF-B526-4AB6-9564-0AE22B473EE5}" + }, + { + "m_id": "{6CD7C063-7118-4E55-AA6D-9EDF5B72F7E7}" + } + ], + "m_numExpectedArguments": 3 + } + }, + { + "Key": { + "Value": 1026494196 + }, + "Value": { + "m_eventName": "OnRefreshTokensFail", + "m_eventId": { + "Value": 1026494196 + }, + "m_eventSlotId": { + "m_id": "{6660546E-CC9B-4951-AE9F-C1D45E6098DD}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{9BD290CA-B00E-491D-855C-7BD084A0FF43}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1152314015 + }, + "Value": { + "m_eventName": "OnRefreshTokensSuccess", + "m_eventId": { + "Value": 1152314015 + }, + "m_eventSlotId": { + "m_id": "{C2C30AB7-DACE-49FA-B7B3-04B9FFA5763F}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{A2BFBF6C-4E19-4294-BDB8-5A191048C9DB}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1203288733 + }, + "Value": { + "m_eventName": "OnPasswordGrantMultiFactorConfirmSignInSuccess", + "m_eventId": { + "Value": 1203288733 + }, + "m_eventSlotId": { + "m_id": "{B0F0A8E6-251E-4009-ADE7-8FA70422B1A3}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{4EB602D7-C5D7-427C-B7D3-838CC4FFBA0D}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1293959492 + }, + "Value": { + "m_eventName": "OnPasswordGrantSingleFactorSignInFail", + "m_eventId": { + "Value": 1293959492 + }, + "m_eventSlotId": { + "m_id": "{C042D8B9-D834-4A5A-85E7-F9C775EF9784}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{64484918-D357-4B41-830D-CC9EEB6EC963}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1722702500 + }, + "Value": { + "m_eventName": "OnPasswordGrantSingleFactorSignInSuccess", + "m_eventId": { + "Value": 1722702500 + }, + "m_eventSlotId": { + "m_id": "{ED8A0C7D-9D75-45A7-BAE1-FD8B980DADE2}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{6772D7F9-08BE-4D59-B410-7E6EC0FFEF2B}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1819337155 + }, + "Value": { + "m_eventName": "OnPasswordGrantMultiFactorConfirmSignInFail", + "m_eventId": { + "Value": 1819337155 + }, + "m_eventSlotId": { + "m_id": "{DF4A4D97-D2A3-42C2-9F85-B79D0743B1DD}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{0E5E0F30-D4A3-4361-99DC-DFB03CDA26ED}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1908852787 + }, + "Value": { + "m_eventName": "OnPasswordGrantMultiFactorSignInFail", + "m_eventId": { + "Value": 1908852787 + }, + "m_eventSlotId": { + "m_id": "{DC0B9782-C4BB-49C0-8DE3-06933347FA20}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{5873E80A-4E48-4B52-AB91-ACE8DC42EC86}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 2486714370 + }, + "Value": { + "m_eventName": "OnPasswordGrantMultiFactorSignInSuccess", + "m_eventId": { + "Value": 2486714370 + }, + "m_eventSlotId": { + "m_id": "{FBBC04A8-2368-4B67-A48F-D7D33EDBC71F}" + } + } + }, + { + "Key": { + "Value": 3091702945 + }, + "Value": { + "m_eventName": "OnDeviceCodeGrantSignInFail", + "m_eventId": { + "Value": 3091702945 + }, + "m_eventSlotId": { + "m_id": "{E6EFD9E4-7CC8-4FBF-88DE-2FAAC4099AE2}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{D49C27E1-B1F7-4A70-8872-B4E6337F0334}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 3973214553 + }, + "Value": { + "m_eventName": "OnDeviceCodeGrantConfirmSignInFail", + "m_eventId": { + "Value": 3973214553 + }, + "m_eventSlotId": { + "m_id": "{AE4AC27C-0EF0-4AFE-B8D2-80D6F1B35FAB}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{7D66C081-777B-451E-B626-0DAEB39ECA5A}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4272279525 + }, + "Value": { + "m_eventName": "OnDeviceCodeGrantConfirmSignInSuccess", + "m_eventId": { + "Value": 4272279525 + }, + "m_eventSlotId": { + "m_id": "{D39D72BA-6EC1-445C-93B7-CAD87B1ADC7D}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{92E26492-6278-4B46-8CD4-0B271B1BB21B}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AuthenticationProviderNotificationBus", + "m_busId": { + "Value": 3734230664 + } + } + } + }, + { + "Id": { + "id": 22572319241014 + }, + "Name": "SC-Node(Initialize)", + "Components": { + "Component_[7405312649373835200]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 7405312649373835200, + "Slots": [ + { + "id": { + "m_id": "{FAF2B1D0-815D-476E-BE0A-3C5B0A7181E2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{354BF6A8-150D-4A9A-A19F-1B92ADC44A43}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{1F13C9EB-941B-4AF1-B8DF-7549F7D6304E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result: Boolean", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "methodType": 0, + "methodName": "Initialize", + "className": "AWSCognitoAuthorizationRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSCognitoAuthorizationRequestBus" + } + } + }, + { + "Id": { + "id": 22589499110198 + }, + "Name": "SC-Node(PasswordGrantSingleFactorSignInAsync)", + "Components": { + "Component_[7750292952156679363]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 7750292952156679363, + "Slots": [ + { + "id": { + "m_id": "{A5E60763-81A7-4A8A-B8DB-AF4F3DD7D044}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String: 0", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{CC3B7A6A-ABFF-4417-AB09-E010E9193CE0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String: 1", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{ABB9039F-307D-4A8B-A4DC-2BAFADDF238B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String: 2", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{F24D94B3-CD7D-4719-AEAB-58B6AA087480}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E8DC5B43-1CB4-489C-AD04-D67C59BD9719}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "AWSCognitoIDP", + "label": "String: 0" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "test1", + "label": "String: 1" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "Test1test1!", + "label": "String: 2" + } + ], + "methodType": 0, + "methodName": "PasswordGrantSingleFactorSignInAsync", + "className": "AuthenticationProviderRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AuthenticationProviderRequestBus" + } + } + }, + { + "Id": { + "id": 22598089044790 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[8044817584554102751]": { + "$type": "Print", + "Id": 8044817584554102751, + "Slots": [ + { + "id": { + "m_id": "{D3247169-ACA4-42FF-9CD9-7FC5D2888197}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{F520F3E3-70BF-43EE-B133-65093AA8CCA8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "Success credentials", + "m_unresolvedString": [ + "Success credentials" + ] + } + } + }, + { + "Id": { + "id": 22576614208310 + }, + "Name": "SC-Node(Initialize)", + "Components": { + "Component_[8692474017847050528]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 8692474017847050528, + "Slots": [ + { + "id": { + "m_id": "{9EFCF33C-EFBB-44F8-BBD9-0E4AA96D45AF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{04D08EB7-F20A-4CF7-8BB6-C79804F6EB59}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{2B827E49-A105-44B7-BF32-B0BB97AA0069}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result: Boolean", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "methodType": 0, + "methodName": "Initialize", + "className": "AWSCognitoUserManagementRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSCognitoUserManagementRequestBus" + } + } + }, + { + "Id": { + "id": 22555139371830 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[8900676182846034623]": { + "$type": "Print", + "Id": 8900676182846034623, + "Slots": [ + { + "id": { + "m_id": "{9BB1F768-9D92-432C-9B8F-C99EB679CFB9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{880D8B51-8686-4D13-8AD3-0C9F43C9CC9F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "SignIn Fail", + "m_unresolvedString": [ + "SignIn Fail" + ] + } + } + }, + { + "Id": { + "id": 22568024273718 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[954102115830395541]": { + "$type": "EBusEventHandler", + "Id": 954102115830395541, + "Slots": [ + { + "id": { + "m_id": "{7CC34F95-FB5B-43EB-AD4D-72E916B326C3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{CF183A1F-260C-4BD6-8A1D-D1F1F6DA4D77}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{B7010FF0-FFFF-401B-A97B-F64B6592D4AD}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E4952C80-F90E-4B2D-894C-D42C88ECD33B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{9F16F58B-1942-4841-9E7C-E797DFA9967D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{29C614BD-C1B3-4EA3-B6E5-9147AED55BC8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ClientAuthAWSCredentials", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{C8DD4D15-0C2D-43BC-9158-2D7DD1A33BBC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnRequestAWSCredentialsSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{F1BCDD2A-6F12-4E5F-A263-6237776FA727}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{5EEFCA6E-8B52-43A0-BFAF-512FDAB89E58}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnRequestAWSCredentialsFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 3736070646 + }, + "Value": { + "m_eventName": "OnRequestAWSCredentialsSuccess", + "m_eventId": { + "Value": 3736070646 + }, + "m_eventSlotId": { + "m_id": "{C8DD4D15-0C2D-43BC-9158-2D7DD1A33BBC}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{29C614BD-C1B3-4EA3-B6E5-9147AED55BC8}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4193877825 + }, + "Value": { + "m_eventName": "OnRequestAWSCredentialsFail", + "m_eventId": { + "Value": 4193877825 + }, + "m_eventSlotId": { + "m_id": "{5EEFCA6E-8B52-43A0-BFAF-512FDAB89E58}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{F1BCDD2A-6F12-4E5F-A263-6237776FA727}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSCognitoAuthorizationNotificationBus", + "m_busId": { + "Value": 1100345364 + } + } + } + } + ], + "m_connections": [ + { + "Id": { + "id": 22615268913974 + }, + "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(Initialize: In)", + "Components": { + "Component_[14399681979807032845]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 14399681979807032845, + "sourceEndpoint": { + "nodeId": { + "id": 22610973946678 + }, + "slotId": { + "m_id": "{4BB45954-74C5-4023-AFBE-C82638076FDD}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 22576614208310 + }, + "slotId": { + "m_id": "{9EFCF33C-EFBB-44F8-BBD9-0E4AA96D45AF}" + } + } + } + } + }, + { + "Id": { + "id": 22619563881270 + }, + "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(Initialize: In)", + "Components": { + "Component_[17573298986849197839]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 17573298986849197839, + "sourceEndpoint": { + "nodeId": { + "id": 22576614208310 + }, + "slotId": { + "m_id": "{04D08EB7-F20A-4CF7-8BB6-C79804F6EB59}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 22572319241014 + }, + "slotId": { + "m_id": "{FAF2B1D0-815D-476E-BE0A-3C5B0A7181E2}" + } + } + } + } + }, + { + "Id": { + "id": 22623858848566 + }, + "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(PasswordGrantSingleFactorSignInAsync: In)", + "Components": { + "Component_[9852640775697931695]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 9852640775697931695, + "sourceEndpoint": { + "nodeId": { + "id": 22572319241014 + }, + "slotId": { + "m_id": "{354BF6A8-150D-4A9A-A19F-1B92ADC44A43}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 22589499110198 + }, + "slotId": { + "m_id": "{F24D94B3-CD7D-4719-AEAB-58B6AA087480}" + } + } + } + } + }, + { + "Id": { + "id": 22628153815862 + }, + "Name": "srcEndpoint=(Print: Out), destEndpoint=(RequestAWSCredentialsAsync: In)", + "Components": { + "Component_[12044830313862012006]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 12044830313862012006, + "sourceEndpoint": { + "nodeId": { + "id": 22606678979382 + }, + "slotId": { + "m_id": "{F5EE89C0-AB89-4D06-BD4C-72CA40AB075B}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 22593794077494 + }, + "slotId": { + "m_id": "{EB37FB3D-48EB-4766-AD8C-7F03D100C7FA}" + } + } + } + } + }, + { + "Id": { + "id": 22632448783158 + }, + "Name": "srcEndpoint=(AuthenticationProviderNotificationBus Handler: ExecutionSlot:OnPasswordGrantSingleFactorSignInSuccess), destEndpoint=(Print: In)", + "Components": { + "Component_[11544107396556720999]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 11544107396556720999, + "sourceEndpoint": { + "nodeId": { + "id": 22585204142902 + }, + "slotId": { + "m_id": "{F3E407C4-9D91-4077-A730-C2463570A9FC}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 22606678979382 + }, + "slotId": { + "m_id": "{269D4FDC-1137-45A3-8442-2A2DF98D6F6E}" + } + } + } + } + }, + { + "Id": { + "id": 22636743750454 + }, + "Name": "srcEndpoint=(AWSCognitoAuthorizationNotificationBus Handler: ExecutionSlot:OnRequestAWSCredentialsSuccess), destEndpoint=(Print: In)", + "Components": { + "Component_[16101269355489066265]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 16101269355489066265, + "sourceEndpoint": { + "nodeId": { + "id": 22580909175606 + }, + "slotId": { + "m_id": "{BCA83F8F-E431-421D-8B01-A8B31C3C66B1}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 22598089044790 + }, + "slotId": { + "m_id": "{D3247169-ACA4-42FF-9CD9-7FC5D2888197}" + } + } + } + } + }, + { + "Id": { + "id": 22641038717750 + }, + "Name": "srcEndpoint=(AWSCognitoAuthorizationNotificationBus Handler: ExecutionSlot:OnRequestAWSCredentialsFail), destEndpoint=(Print: In)", + "Components": { + "Component_[6840692313652679972]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 6840692313652679972, + "sourceEndpoint": { + "nodeId": { + "id": 22568024273718 + }, + "slotId": { + "m_id": "{5EEFCA6E-8B52-43A0-BFAF-512FDAB89E58}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 22602384012086 + }, + "slotId": { + "m_id": "{C0E7856E-AE8E-4151-9109-2E3B2A810054}" + } + } + } + } + }, + { + "Id": { + "id": 22645333685046 + }, + "Name": "srcEndpoint=(AuthenticationProviderNotificationBus Handler: ExecutionSlot:OnPasswordGrantSingleFactorSignInFail), destEndpoint=(Print: In)", + "Components": { + "Component_[72000609721937697]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 72000609721937697, + "sourceEndpoint": { + "nodeId": { + "id": 22563729306422 + }, + "slotId": { + "m_id": "{C042D8B9-D834-4A5A-85E7-F9C775EF9784}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 22555139371830 + }, + "slotId": { + "m_id": "{9BB1F768-9D92-432C-9B8F-C99EB679CFB9}" + } + } + } + } + }, + { + "Id": { + "id": 22649628652342 + }, + "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(Initialize: In)", + "Components": { + "Component_[15648358861411868133]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 15648358861411868133, + "sourceEndpoint": { + "nodeId": { + "id": 22559434339126 + }, + "slotId": { + "m_id": "{1E81F46E-80CF-4CF6-8499-04539BBF244E}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 22610973946678 + }, + "slotId": { + "m_id": "{F4ED50C1-0694-4E9F-A4E6-83565E517C1E}" + } + } + } + } + } + ] + }, + "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}", + "versionData": { + "_grammarVersion": 1, + "_runtimeVersion": 1 + }, + "m_variableCounter": 1, + "GraphCanvasData": [ + { + "Key": { + "id": 22550844404534 + }, + "Value": { + "ComponentData": { + "{5F84B500-8C45-40D1-8EFC-A5306B241444}": { + "$type": "SceneComponentSaveData", + "ViewParams": { + "Scale": 1.4170998772559926, + "AnchorX": 224.40196228027344, + "AnchorY": 163.7146453857422 + } + } + } + } + }, + { + "Key": { + "id": 22555139371830 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1720.0, + 820.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{2B3195F2-1430-43F8-9E98-821F79AE9168}" + } + } + } + }, + { + "Key": { + "id": 22559434339126 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 340.0, + 240.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 245425936 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{571D5EB6-761E-4961-A9A8-47CEC16F8549}" + } + } + } + }, + { + "Key": { + "id": 22563729306422 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1200.0, + 820.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 1293959492 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{D64CFD59-5EB3-46F7-B778-B8C1B1BCE0F6}" + } + } + } + }, + { + "Key": { + "id": 22568024273718 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1200.0, + 1360.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 4193877825 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{897D9E34-AB55-4C02-B7CF-707DF3026F7A}" + } + } + } + }, + { + "Key": { + "id": 22572319241014 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 620.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{86D69109-1347-4874-B913-DD03618254AA}" + } + } + } + }, + { + "Key": { + "id": 22576614208310 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1200.0, + 300.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{646FDAC6-AC92-436C-84D3-6C7C067F7662}" + } + } + } + }, + { + "Key": { + "id": 22580909175606 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1200.0, + 1100.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 3736070646 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{A7E33C5C-1567-4ACF-AA26-07DCF02A0C31}" + } + } + } + }, + { + "Key": { + "id": 22585204142902 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1200.0, + 540.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 1722702500 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{73A7B670-D516-477F-BAD2-AC948A0F30AF}" + } + } + } + }, + { + "Key": { + "id": 22589499110198 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 700.0, + 620.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{8ED300CF-364B-4569-967D-2E1366510572}" + } + } + } + }, + { + "Key": { + "id": 22593794077494 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 280.0, + 1120.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{59A81991-B4E6-48C4-9534-2DAF56ACE2EB}" + } + } + } + }, + { + "Key": { + "id": 22598089044790 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1720.0, + 1100.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{1FB84C5F-E453-4160-947F-CF32F5E2628A}" + } + } + } + }, + { + "Key": { + "id": 22602384012086 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1720.0, + 1360.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{3C3CA353-2C5F-4479-9FB5-BF089C18D90D}" + } + } + } + }, + { + "Key": { + "id": 22606678979382 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1720.0, + 580.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{8766AD8F-F6D5-4DAD-B56D-7B1542B9E2EF}" + } + } + } + }, + { + "Key": { + "id": 22610973946678 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 680.0, + 300.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{FD8E5258-B0B2-47E4-AEC1-06E61DA50C70}" + } + } + } + } + ], + "StatisticsHelper": { + "InstanceCounter": [ + { + "Key": 5842116761103598202, + "Value": 1 + }, + { + "Key": 5842117366976109617, + "Value": 1 + }, + { + "Key": 5842117367539594961, + "Value": 1 + }, + { + "Key": 5842117453459104876, + "Value": 1 + }, + { + "Key": 5842117453819001655, + "Value": 1 + }, + { + "Key": 10684225535275896474, + "Value": 4 + }, + { + "Key": 13774516282682374181, + "Value": 1 + }, + { + "Key": 13774516283013331095, + "Value": 1 + }, + { + "Key": 13774516352051377806, + "Value": 1 + }, + { + "Key": 13774516386968943251, + "Value": 1 + }, + { + "Key": 13774516392820282243, + "Value": 1 + } + ] + } + } + } + } + } +} \ No newline at end of file diff --git a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/PasswordSignUp.scriptcanvas b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/PasswordSignUp.scriptcanvas index f630d4aba3..b86160e387 100644 --- a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/PasswordSignUp.scriptcanvas +++ b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/PasswordSignUp.scriptcanvas @@ -1,4400 +1,2442 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "ScriptCanvasData", + "ClassData": { + "m_scriptCanvas": { + "Id": { + "id": 40366368748342 + }, + "Name": "PasswordSignUp", + "Components": { + "Component_[15293771356940612577]": { + "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph", + "Id": 15293771356940612577, + "m_graphData": { + "m_nodes": [ + { + "Id": { + "id": 40392138552118 + }, + "Name": "SC-Node(Initialize)", + "Components": { + "Component_[10218083367428942849]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 10218083367428942849, + "Slots": [ + { + "id": { + "m_id": "{399A9DE3-F888-4941-95ED-51DAA3577806}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{7E46FB7B-9FFF-49BE-8A8B-59A6144BB567}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{A3A7AA49-0362-4F3C-81D9-C673BDC4CB9D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result: Boolean", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "methodType": 0, + "methodName": "Initialize", + "className": "AWSCognitoAuthorizationRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSCognitoAuthorizationRequestBus" + } + } + }, + { + "Id": { + "id": 40387843584822 + }, + "Name": "SC-Node(Initialize)", + "Components": { + "Component_[1064784280691017359]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 1064784280691017359, + "Slots": [ + { + "id": { + "m_id": "{3D4180D8-264F-40A6-B651-8AD9968800CD}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{12154F8B-6329-44B2-B220-25BBB4F4DA8C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{65D3D1AD-0D98-48D0-9E6E-742535E78E15}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result: Boolean", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "methodType": 0, + "methodName": "Initialize", + "className": "AWSCognitoUserManagementRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSCognitoUserManagementRequestBus" + } + } + }, + { + "Id": { + "id": 40379253650230 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[17066281136316039638]": { + "$type": "Print", + "Id": 17066281136316039638, + "Slots": [ + { + "id": { + "m_id": "{CE1EC1C9-479F-451E-BC7B-CF9A76C141B8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{6BFF8DF8-6D3B-47AD-8A6A-CCEAAC7B0B26}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "Signup Fail", + "m_unresolvedString": [ + "Signup Fail" + ] + } + } + }, + { + "Id": { + "id": 40370663715638 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[17066281136316039638]": { + "$type": "Print", + "Id": 17066281136316039638, + "Slots": [ + { + "id": { + "m_id": "{CE1EC1C9-479F-451E-BC7B-CF9A76C141B8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{6BFF8DF8-6D3B-47AD-8A6A-CCEAAC7B0B26}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "Signup Success", + "m_unresolvedString": [ + "Signup Success" + ] + } + } + }, + { + "Id": { + "id": 40400728486710 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[3253175345351481273]": { + "$type": "EBusEventHandler", + "Id": 3253175345351481273, + "Slots": [ + { + "id": { + "m_id": "{1C7259B4-0505-48A2-B942-55CFBAE0F40D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{274A7EFC-3117-4533-9F4D-814BB5E3A28C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{37273EA1-C478-455A-8D8A-49BA9311B3D8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{F66434BA-1E32-412A-9045-A4331871112B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{69CD56BC-D598-4D76-83E1-1F1A9B6A9058}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{1D2D3BD0-1165-45A6-8310-3AB4E58513F5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{6AA62561-DA82-4797-9DC4-615AB767F828}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEmailSignUpSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{6C1ECF44-14DE-4A96-A8BD-E317C80438C6}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{373F06F3-3019-469D-9668-B312D3E29617}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEmailSignUpFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{526BB736-AF73-4874-AB1F-5A31E32599E0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{B156FBD5-F8D1-4856-9ED4-B39C0C2F1FBE}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPhoneSignUpSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{1CABB198-AE36-4929-A562-2C87F7A90946}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{BF5D1487-52AB-484E-B3A8-254126BCFBC8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPhoneSignUpFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{E1E14BF9-5FC4-46F7-9284-BD971D6FBC7B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnConfirmSignUpSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{B3E9DEFA-DD55-495C-BCBD-BBB64C2F40E6}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{E8B771CC-6CB6-4A6F-9642-123E6A62BC39}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnConfirmSignUpFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{52C45020-B7A6-452C-9624-0BA2CE4675A8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnForgotPasswordSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{61352C5D-E634-4E36-86AE-95B0AA0C67F1}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{C4F9C1F5-8CE0-4FAB-8068-2CDACDFBC7FB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnForgotPasswordFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{5AB5FB72-2D60-45C6-B2F2-6509AF91DCAF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnConfirmForgotPasswordSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{AA2660EA-141C-43E0-9B05-E233CF7637B9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{6FF2A7E9-1716-47BC-97D6-77E7B108058A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnConfirmForgotPasswordFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{D50F225E-0251-4E45-B261-D66E11F8E259}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEnableMFASuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{6926905E-56CF-424A-BD39-07CAC731CEE2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{D8F3BE2B-E240-4AA3-BD3F-AECE3BA146B0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEnableMFAFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 91595643 + }, + "Value": { + "m_eventName": "OnEnableMFAFail", + "m_eventId": { + "Value": 91595643 + }, + "m_eventSlotId": { + "m_id": "{D8F3BE2B-E240-4AA3-BD3F-AECE3BA146B0}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{6926905E-56CF-424A-BD39-07CAC731CEE2}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 263629761 + }, + "Value": { + "m_eventName": "OnPhoneSignUpSuccess", + "m_eventId": { + "Value": 263629761 + }, + "m_eventSlotId": { + "m_id": "{B156FBD5-F8D1-4856-9ED4-B39C0C2F1FBE}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{526BB736-AF73-4874-AB1F-5A31E32599E0}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 545635257 + }, + "Value": { + "m_eventName": "OnConfirmForgotPasswordFail", + "m_eventId": { + "Value": 545635257 + }, + "m_eventSlotId": { + "m_id": "{6FF2A7E9-1716-47BC-97D6-77E7B108058A}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{AA2660EA-141C-43E0-9B05-E233CF7637B9}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 613710915 + }, + "Value": { + "m_eventName": "OnEmailSignUpSuccess", + "m_eventId": { + "Value": 613710915 + }, + "m_eventSlotId": { + "m_id": "{6AA62561-DA82-4797-9DC4-615AB767F828}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{1D2D3BD0-1165-45A6-8310-3AB4E58513F5}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 885366379 + }, + "Value": { + "m_eventName": "OnForgotPasswordSuccess", + "m_eventId": { + "Value": 885366379 + }, + "m_eventSlotId": { + "m_id": "{52C45020-B7A6-452C-9624-0BA2CE4675A8}" + } + } + }, + { + "Key": { + "Value": 1053871188 + }, + "Value": { + "m_eventName": "OnEnableMFASuccess", + "m_eventId": { + "Value": 1053871188 + }, + "m_eventSlotId": { + "m_id": "{D50F225E-0251-4E45-B261-D66E11F8E259}" + } + } + }, + { + "Key": { + "Value": 1936419598 + }, + "Value": { + "m_eventName": "OnConfirmSignUpFail", + "m_eventId": { + "Value": 1936419598 + }, + "m_eventSlotId": { + "m_id": "{E8B771CC-6CB6-4A6F-9642-123E6A62BC39}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{B3E9DEFA-DD55-495C-BCBD-BBB64C2F40E6}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 2472403994 + }, + "Value": { + "m_eventName": "OnConfirmForgotPasswordSuccess", + "m_eventId": { + "Value": 2472403994 + }, + "m_eventSlotId": { + "m_id": "{5AB5FB72-2D60-45C6-B2F2-6509AF91DCAF}" + } + } + }, + { + "Key": { + "Value": 2512783036 + }, + "Value": { + "m_eventName": "OnConfirmSignUpSuccess", + "m_eventId": { + "Value": 2512783036 + }, + "m_eventSlotId": { + "m_id": "{E1E14BF9-5FC4-46F7-9284-BD971D6FBC7B}" + } + } + }, + { + "Key": { + "Value": 3917632075 + }, + "Value": { + "m_eventName": "OnForgotPasswordFail", + "m_eventId": { + "Value": 3917632075 + }, + "m_eventSlotId": { + "m_id": "{C4F9C1F5-8CE0-4FAB-8068-2CDACDFBC7FB}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{61352C5D-E634-4E36-86AE-95B0AA0C67F1}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4207060091 + }, + "Value": { + "m_eventName": "OnEmailSignUpFail", + "m_eventId": { + "Value": 4207060091 + }, + "m_eventSlotId": { + "m_id": "{373F06F3-3019-469D-9668-B312D3E29617}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{6C1ECF44-14DE-4A96-A8BD-E317C80438C6}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4239863912 + }, + "Value": { + "m_eventName": "OnPhoneSignUpFail", + "m_eventId": { + "Value": 4239863912 + }, + "m_eventSlotId": { + "m_id": "{BF5D1487-52AB-484E-B3A8-254126BCFBC8}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{1CABB198-AE36-4929-A562-2C87F7A90946}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSCognitoUserManagementNotificationBus", + "m_busId": { + "Value": 447348268 + } + } + } + }, + { + "Id": { + "id": 40383548617526 + }, + "Name": "SC-Node(EmailSignUpAsync)", + "Components": { + "Component_[3828998640319414642]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 3828998640319414642, + "Slots": [ + { + "id": { + "m_id": "{E27599AA-ECCC-479A-98BF-48AEE61B2555}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "String: 0", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{402E454D-087A-4B52-8559-0B4094339424}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "String: 1", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{37232683-A75B-40D3-BD2C-ACBF718622AC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "String: 2", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{A0AF5A68-C8DD-4219-894A-4D7AF713FDFE}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{49E3F422-E17F-4540-8C55-CDDB3F8AB04D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "test1", + "label": "String: 0" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "Test1test1!", + "label": "String: 1" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "test@test.com", + "label": "String: 2" + } + ], + "methodType": 0, + "methodName": "EmailSignUpAsync", + "className": "AWSCognitoUserManagementRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSCognitoUserManagementRequestBus" + } + } + }, + { + "Id": { + "id": 40374958682934 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[6190924263230371473]": { + "$type": "EBusEventHandler", + "Id": 6190924263230371473, + "Slots": [ + { + "id": { + "m_id": "{0D5A6F1C-B9DA-4B49-8A54-1E6C2A959643}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{6F93EEBD-6EE6-4204-8B56-4D3F17FC74AD}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{41DFB9B0-EDFA-4DE6-B0EB-E6C8F6A9ED89}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{556C7487-6211-4173-8284-51479E4C8EF7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{FC800E36-B7D5-46AE-920A-0A18A2D17EB2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{5F4DB496-438B-4ED5-96A0-904FE5FAC305}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{B24F20EF-0119-4BF3-86DF-AD101B534F6C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEmailSignUpSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{BA735BFB-DE2B-429A-BEE9-59BA712F5F9F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{7EC15743-5DA5-4F9F-BF26-318CFAD73C48}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEmailSignUpFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{4A63B81E-A64D-448A-AAC5-F232393F3239}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{694A22A4-0218-40EB-BC46-91F14C7A5691}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPhoneSignUpSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{E5EA8BAC-6706-4E56-868A-60EB944EEF59}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{F1DA9F8C-99A5-4604-A2EF-36AA7E2F29D8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnPhoneSignUpFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{2A9AD20F-7C0F-4BCD-AE49-59763368ADF3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnConfirmSignUpSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{708EA595-441A-4BED-B753-D612F9D8D48C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{7AA88F7B-82B5-4EB6-BD6F-67C7662A5E53}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnConfirmSignUpFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{2E3F658E-D482-49EA-9F96-C7421D85E490}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnForgotPasswordSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{72F9D996-4A42-4740-A1F1-40CF2A922558}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{16098C3C-67EF-456D-8CEC-3E447D25FBE9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnForgotPasswordFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{3DA27A98-45AF-4A95-87CE-65D7A2C415A5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnConfirmForgotPasswordSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{593C97CF-5549-4E7B-8303-4FC61575BDD8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{CE9ED266-ACD3-4182-A63A-D989B204781B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnConfirmForgotPasswordFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{C1BC60F1-4BE6-425D-AB01-B500171F095D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEnableMFASuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{B884A8B1-7037-46A9-8C62-0E2D46737C90}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{1A8274FB-20C8-42B3-B220-098EBEBCA53B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEnableMFAFail", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 91595643 + }, + "Value": { + "m_eventName": "OnEnableMFAFail", + "m_eventId": { + "Value": 91595643 + }, + "m_eventSlotId": { + "m_id": "{1A8274FB-20C8-42B3-B220-098EBEBCA53B}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{B884A8B1-7037-46A9-8C62-0E2D46737C90}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 263629761 + }, + "Value": { + "m_eventName": "OnPhoneSignUpSuccess", + "m_eventId": { + "Value": 263629761 + }, + "m_eventSlotId": { + "m_id": "{694A22A4-0218-40EB-BC46-91F14C7A5691}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{4A63B81E-A64D-448A-AAC5-F232393F3239}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 545635257 + }, + "Value": { + "m_eventName": "OnConfirmForgotPasswordFail", + "m_eventId": { + "Value": 545635257 + }, + "m_eventSlotId": { + "m_id": "{CE9ED266-ACD3-4182-A63A-D989B204781B}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{593C97CF-5549-4E7B-8303-4FC61575BDD8}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 613710915 + }, + "Value": { + "m_eventName": "OnEmailSignUpSuccess", + "m_eventId": { + "Value": 613710915 + }, + "m_eventSlotId": { + "m_id": "{B24F20EF-0119-4BF3-86DF-AD101B534F6C}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{5F4DB496-438B-4ED5-96A0-904FE5FAC305}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 885366379 + }, + "Value": { + "m_eventName": "OnForgotPasswordSuccess", + "m_eventId": { + "Value": 885366379 + }, + "m_eventSlotId": { + "m_id": "{2E3F658E-D482-49EA-9F96-C7421D85E490}" + } + } + }, + { + "Key": { + "Value": 1053871188 + }, + "Value": { + "m_eventName": "OnEnableMFASuccess", + "m_eventId": { + "Value": 1053871188 + }, + "m_eventSlotId": { + "m_id": "{C1BC60F1-4BE6-425D-AB01-B500171F095D}" + } + } + }, + { + "Key": { + "Value": 1936419598 + }, + "Value": { + "m_eventName": "OnConfirmSignUpFail", + "m_eventId": { + "Value": 1936419598 + }, + "m_eventSlotId": { + "m_id": "{7AA88F7B-82B5-4EB6-BD6F-67C7662A5E53}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{708EA595-441A-4BED-B753-D612F9D8D48C}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 2472403994 + }, + "Value": { + "m_eventName": "OnConfirmForgotPasswordSuccess", + "m_eventId": { + "Value": 2472403994 + }, + "m_eventSlotId": { + "m_id": "{3DA27A98-45AF-4A95-87CE-65D7A2C415A5}" + } + } + }, + { + "Key": { + "Value": 2512783036 + }, + "Value": { + "m_eventName": "OnConfirmSignUpSuccess", + "m_eventId": { + "Value": 2512783036 + }, + "m_eventSlotId": { + "m_id": "{2A9AD20F-7C0F-4BCD-AE49-59763368ADF3}" + } + } + }, + { + "Key": { + "Value": 3917632075 + }, + "Value": { + "m_eventName": "OnForgotPasswordFail", + "m_eventId": { + "Value": 3917632075 + }, + "m_eventSlotId": { + "m_id": "{16098C3C-67EF-456D-8CEC-3E447D25FBE9}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{72F9D996-4A42-4740-A1F1-40CF2A922558}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4207060091 + }, + "Value": { + "m_eventName": "OnEmailSignUpFail", + "m_eventId": { + "Value": 4207060091 + }, + "m_eventSlotId": { + "m_id": "{7EC15743-5DA5-4F9F-BF26-318CFAD73C48}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{BA735BFB-DE2B-429A-BEE9-59BA712F5F9F}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4239863912 + }, + "Value": { + "m_eventName": "OnPhoneSignUpFail", + "m_eventId": { + "Value": 4239863912 + }, + "m_eventSlotId": { + "m_id": "{F1DA9F8C-99A5-4604-A2EF-36AA7E2F29D8}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{E5EA8BAC-6706-4E56-868A-60EB944EEF59}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSCognitoUserManagementNotificationBus", + "m_busId": { + "Value": 447348268 + } + } + } + }, + { + "Id": { + "id": 40396433519414 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[9562653061197598154]": { + "$type": "EBusEventHandler", + "Id": 9562653061197598154, + "Slots": [ + { + "id": { + "m_id": "{C7C58DC9-B78B-42B9-B2B5-478782DF46CC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{FA026675-B1BE-491C-8EBF-E69CC1DE4C55}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{3C98E6EB-3C18-4068-B823-DB58C576DD78}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{57A45446-FFB1-4C50-8AAE-B8ECA6972D6E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{A58F08C9-B5EF-4B7B-9CA0-D7971A0433F8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{725CF674-BE9B-46C9-97A9-F479446C0229}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Source", + "toolTip": "ID used to connect on a specific Event address (Type: EntityId)", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{3CBA71E9-D536-4236-9663-EB756D317B5C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "EntityID", + "DisplayDataType": { + "m_type": 1 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{69BC10FD-BF05-4377-91D0-88540202AEAB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEntityActivated", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{B715798E-51A1-4A13-8597-D0FED7A84D64}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "EntityID", + "DisplayDataType": { + "m_type": 1 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{0D15697C-1B42-4F19-BD0D-3A19CB516B61}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEntityDeactivated", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 1 + }, + "isNullPointer": false, + "$type": "EntityId", + "value": { + "id": 2901262558 + }, + "label": "Source" + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 245425936 + }, + "Value": { + "m_eventName": "OnEntityActivated", + "m_eventId": { + "Value": 245425936 + }, + "m_eventSlotId": { + "m_id": "{69BC10FD-BF05-4377-91D0-88540202AEAB}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{3CBA71E9-D536-4236-9663-EB756D317B5C}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4273369222 + }, + "Value": { + "m_eventName": "OnEntityDeactivated", + "m_eventId": { + "Value": 4273369222 + }, + "m_eventSlotId": { + "m_id": "{0D15697C-1B42-4F19-BD0D-3A19CB516B61}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{B715798E-51A1-4A13-8597-D0FED7A84D64}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "EntityBus", + "m_busId": { + "Value": 3358774020 + } + } + } + } + ], + "m_connections": [ + { + "Id": { + "id": 40405023454006 + }, + "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(Initialize: In)", + "Components": { + "Component_[2481873747935739489]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 2481873747935739489, + "sourceEndpoint": { + "nodeId": { + "id": 40387843584822 + }, + "slotId": { + "m_id": "{12154F8B-6329-44B2-B220-25BBB4F4DA8C}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 40392138552118 + }, + "slotId": { + "m_id": "{399A9DE3-F888-4941-95ED-51DAA3577806}" + } + } + } + } + }, + { + "Id": { + "id": 40409318421302 + }, + "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(EmailSignUpAsync: In)", + "Components": { + "Component_[7194362106206674212]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 7194362106206674212, + "sourceEndpoint": { + "nodeId": { + "id": 40392138552118 + }, + "slotId": { + "m_id": "{7E46FB7B-9FFF-49BE-8A8B-59A6144BB567}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 40383548617526 + }, + "slotId": { + "m_id": "{A0AF5A68-C8DD-4219-894A-4D7AF713FDFE}" + } + } + } + } + }, + { + "Id": { + "id": 40413613388598 + }, + "Name": "srcEndpoint=(AWSCognitoUserManagementNotificationBus Handler: ExecutionSlot:OnEmailSignUpSuccess), destEndpoint=(Print: In)", + "Components": { + "Component_[16780678604896909105]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 16780678604896909105, + "sourceEndpoint": { + "nodeId": { + "id": 40400728486710 + }, + "slotId": { + "m_id": "{6AA62561-DA82-4797-9DC4-615AB767F828}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 40370663715638 + }, + "slotId": { + "m_id": "{CE1EC1C9-479F-451E-BC7B-CF9A76C141B8}" + } + } + } + } + }, + { + "Id": { + "id": 40417908355894 + }, + "Name": "srcEndpoint=(AWSCognitoUserManagementNotificationBus Handler: ExecutionSlot:OnEmailSignUpFail), destEndpoint=(Print: In)", + "Components": { + "Component_[10089558926172181947]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 10089558926172181947, + "sourceEndpoint": { + "nodeId": { + "id": 40374958682934 + }, + "slotId": { + "m_id": "{7EC15743-5DA5-4F9F-BF26-318CFAD73C48}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 40379253650230 + }, + "slotId": { + "m_id": "{CE1EC1C9-479F-451E-BC7B-CF9A76C141B8}" + } + } + } + } + }, + { + "Id": { + "id": 40422203323190 + }, + "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(Initialize: In)", + "Components": { + "Component_[4722263728953193176]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4722263728953193176, + "sourceEndpoint": { + "nodeId": { + "id": 40396433519414 + }, + "slotId": { + "m_id": "{69BC10FD-BF05-4377-91D0-88540202AEAB}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 40387843584822 + }, + "slotId": { + "m_id": "{3D4180D8-264F-40A6-B651-8AD9968800CD}" + } + } + } + } + } + ] + }, + "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}", + "versionData": { + "_grammarVersion": 1, + "_runtimeVersion": 1 + }, + "m_variableCounter": 1, + "GraphCanvasData": [ + { + "Key": { + "id": 40366368748342 + }, + "Value": { + "ComponentData": { + "{5F84B500-8C45-40D1-8EFC-A5306B241444}": { + "$type": "SceneComponentSaveData", + "ViewParams": { + "Scale": 1.6678291666562495, + "AnchorX": -1140.404541015625, + "AnchorY": -510.2441101074219 + } + } + } + } + }, + { + "Key": { + "id": 40370663715638 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 360.0, + -100.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{EE80C02E-C46C-4F8B-9ED1-F455EAA1A180}" + } + } + } + }, + { + "Key": { + "id": 40374958682934 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -140.0, + 120.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 4207060091 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{0CF6BEC2-1C77-4588-9E0D-46E669A885D2}" + } + } + } + }, + { + "Key": { + "id": 40379253650230 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 360.0, + 120.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{7D65DC37-A004-4B96-B546-3AA21955B483}" + } + } + } + }, + { + "Key": { + "id": 40383548617526 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -480.0, + -20.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{0A62049A-7A6F-49C4-8941-2FFE8C3C3D64}" + } + } + } + }, + { + "Key": { + "id": 40387843584822 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -520.0, + -360.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{F194EF69-4648-4E48-8E09-0BA9D7CFEFAB}" + } + } + } + }, + { + "Key": { + "id": 40392138552118 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -880.0, + -20.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{64AC1AA7-3D00-49C8-B721-FD8FA1F12974}" + } + } + } + }, + { + "Key": { + "id": 40396433519414 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -840.0, + -420.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 245425936 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{BE098530-CD45-403F-A8E6-19B1AF955998}" + } + } + } + }, + { + "Key": { + "id": 40400728486710 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -140.0, + -120.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 613710915 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{30CAA4F3-6D33-487A-AA24-5A0FDB7E44F7}" + } + } + } + } + ], + "StatisticsHelper": { + "InstanceCounter": [ + { + "Key": 5842116761103598202, + "Value": 1 + }, + { + "Key": 5842117047185225035, + "Value": 1 + }, + { + "Key": 5842117058899013251, + "Value": 1 + }, + { + "Key": 10684225535275896474, + "Value": 2 + }, + { + "Key": 13774516312719521631, + "Value": 1 + }, + { + "Key": 13774516352051377806, + "Value": 1 + }, + { + "Key": 13774516392820282243, + "Value": 1 + } + ] + } + }, + "Component_[2611898449683772344]": { + "$type": "EditorGraphVariableManagerComponent", + "Id": 2611898449683772344, + "m_variableData": { + "m_nameVariableMap": [ + { + "Key": { + "m_id": "{B26AAA33-F9F0-4CC4-81B2-E7D666AD6AD7}" + }, + "Value": { + "Datum": { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 4, + "m_azType": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}" + }, + "isNullPointer": false, + "$type": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C} AZStd::vector", + "value": [ + "AWSCognitoIDP" + ], + "label": "Array" + }, + "VariableId": { + "m_id": "{B26AAA33-F9F0-4CC4-81B2-E7D666AD6AD7}" + }, + "VariableName": "AuthenitcationProviders" + } + } + ] + } + } + } + } + } +} \ No newline at end of file diff --git a/AutomatedTesting/Levels/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh/C18977329_NvCloth_AddClothSimulationToMesh.ly b/AutomatedTesting/Levels/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh/C18977329_NvCloth_AddClothSimulationToMesh.ly index 9a1b1fe59a..861626993e 100644 --- a/AutomatedTesting/Levels/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh/C18977329_NvCloth_AddClothSimulationToMesh.ly +++ b/AutomatedTesting/Levels/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh/C18977329_NvCloth_AddClothSimulationToMesh.ly @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6517300fb1ce70c4696286e14715c547cfd175eabbb2042f7f2a456b15054224 -size 5253 +oid sha256:bedd2adc60f244a8595e64619069046d5036dd762f61b5393f9b759d69281362 +size 5276 diff --git a/AutomatedTesting/Levels/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh/filelist.xml b/AutomatedTesting/Levels/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh/filelist.xml index 2cf4d55bf0..d3492ca7b6 100644 --- a/AutomatedTesting/Levels/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh/filelist.xml +++ b/AutomatedTesting/Levels/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh/filelist.xml @@ -1,6 +1,6 @@ - + diff --git a/AutomatedTesting/Levels/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh/level.pak b/AutomatedTesting/Levels/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh/level.pak index 954bb1912f..7fa23ea67f 100644 --- a/AutomatedTesting/Levels/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh/level.pak +++ b/AutomatedTesting/Levels/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh/level.pak @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce32a7cdf3ed37751385b3bb18f05206702978363f325d06727b5eb20d40b7eb -size 38563 +oid sha256:81fc98854424d55e594a3983da53d2f5a4d7a7cf60e52e12366e4800d1d3f080 +size 38559 diff --git a/AutomatedTesting/Levels/NvCloth/C18977330_NvCloth_AddClothSimulationToActor/C18977330_NvCloth_AddClothSimulationToActor.ly b/AutomatedTesting/Levels/NvCloth/C18977330_NvCloth_AddClothSimulationToActor/C18977330_NvCloth_AddClothSimulationToActor.ly index 9ef8bc0525..23397bf18d 100644 --- a/AutomatedTesting/Levels/NvCloth/C18977330_NvCloth_AddClothSimulationToActor/C18977330_NvCloth_AddClothSimulationToActor.ly +++ b/AutomatedTesting/Levels/NvCloth/C18977330_NvCloth_AddClothSimulationToActor/C18977330_NvCloth_AddClothSimulationToActor.ly @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89dbcec013cb819e52ec0f8fed0a9e417fd32eac8aeb67d3958266bb6089ec21 -size 5505 +oid sha256:b59cbe84cb77090d723d120597f9d11817aa67a267a7f495f8b012fdd8a9dd86 +size 5536 diff --git a/AutomatedTesting/Levels/NvCloth/C18977330_NvCloth_AddClothSimulationToActor/filelist.xml b/AutomatedTesting/Levels/NvCloth/C18977330_NvCloth_AddClothSimulationToActor/filelist.xml index a7de99a91c..20952a47ce 100644 --- a/AutomatedTesting/Levels/NvCloth/C18977330_NvCloth_AddClothSimulationToActor/filelist.xml +++ b/AutomatedTesting/Levels/NvCloth/C18977330_NvCloth_AddClothSimulationToActor/filelist.xml @@ -1,6 +1,6 @@ - + diff --git a/AutomatedTesting/Levels/NvCloth/C18977330_NvCloth_AddClothSimulationToActor/level.pak b/AutomatedTesting/Levels/NvCloth/C18977330_NvCloth_AddClothSimulationToActor/level.pak index ad10c72b31..4259131c4f 100644 --- a/AutomatedTesting/Levels/NvCloth/C18977330_NvCloth_AddClothSimulationToActor/level.pak +++ b/AutomatedTesting/Levels/NvCloth/C18977330_NvCloth_AddClothSimulationToActor/level.pak @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:622c2624b04e07b704520f32c458b50d5a50de1ef116b7bc9c3c0ccb6f4a4ecc -size 3606 +oid sha256:46051f4116003e1a2d13855bea92a1b15501166b1379a11d02c4d2239ccd2530 +size 3648 diff --git a/AutomatedTesting/Registry/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.setreg_override b/AutomatedTesting/Registry/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.setreg_override index a329434623..aa82265c98 100644 --- a/AutomatedTesting/Registry/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.setreg_override +++ b/AutomatedTesting/Registry/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/Registry/C18977601_Material_FrictionCombinePriority.setreg_override b/AutomatedTesting/Registry/C18977601_Material_FrictionCombinePriority.setreg_override index 44a91c67cb..7050a57206 100644 --- a/AutomatedTesting/Registry/C18977601_Material_FrictionCombinePriority.setreg_override +++ b/AutomatedTesting/Registry/C18977601_Material_FrictionCombinePriority.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/Registry/C18981526_Material_RestitutionCombinePriority.setreg_override b/AutomatedTesting/Registry/C18981526_Material_RestitutionCombinePriority.setreg_override index 8de10787f1..c78018bdbb 100644 --- a/AutomatedTesting/Registry/C18981526_Material_RestitutionCombinePriority.setreg_override +++ b/AutomatedTesting/Registry/C18981526_Material_RestitutionCombinePriority.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/Registry/C3510644_Collider_CollisionGroups.setreg_override b/AutomatedTesting/Registry/C3510644_Collider_CollisionGroups.setreg_override index e4ea71f652..b82acaf0ae 100644 --- a/AutomatedTesting/Registry/C3510644_Collider_CollisionGroups.setreg_override +++ b/AutomatedTesting/Registry/C3510644_Collider_CollisionGroups.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/Registry/C4044456_Material_FrictionCombine.setreg_override b/AutomatedTesting/Registry/C4044456_Material_FrictionCombine.setreg_override index 83f7079e1f..806d71a158 100644 --- a/AutomatedTesting/Registry/C4044456_Material_FrictionCombine.setreg_override +++ b/AutomatedTesting/Registry/C4044456_Material_FrictionCombine.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/Registry/C4044457_Material_RestitutionCombine.setreg_override b/AutomatedTesting/Registry/C4044457_Material_RestitutionCombine.setreg_override index 96836b6ae4..fa77daac9f 100644 --- a/AutomatedTesting/Registry/C4044457_Material_RestitutionCombine.setreg_override +++ b/AutomatedTesting/Registry/C4044457_Material_RestitutionCombine.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/Registry/C4044459_Material_DynamicFriction.setreg_override b/AutomatedTesting/Registry/C4044459_Material_DynamicFriction.setreg_override index 88a7b5c309..5deb5635d1 100644 --- a/AutomatedTesting/Registry/C4044459_Material_DynamicFriction.setreg_override +++ b/AutomatedTesting/Registry/C4044459_Material_DynamicFriction.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/Registry/C4044461_Material_Restitution.setreg_override b/AutomatedTesting/Registry/C4044461_Material_Restitution.setreg_override index 21b285506b..b70e0f1326 100644 --- a/AutomatedTesting/Registry/C4044461_Material_Restitution.setreg_override +++ b/AutomatedTesting/Registry/C4044461_Material_Restitution.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/Registry/C4044697_Material_PerfaceMaterialValidation.setreg_override b/AutomatedTesting/Registry/C4044697_Material_PerfaceMaterialValidation.setreg_override index d585a4c468..5a93ae2314 100644 --- a/AutomatedTesting/Registry/C4044697_Material_PerfaceMaterialValidation.setreg_override +++ b/AutomatedTesting/Registry/C4044697_Material_PerfaceMaterialValidation.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/Registry/C4976227_Collider_NewGroup.setreg_override b/AutomatedTesting/Registry/C4976227_Collider_NewGroup.setreg_override index e53d3893f8..7065f0dfeb 100644 --- a/AutomatedTesting/Registry/C4976227_Collider_NewGroup.setreg_override +++ b/AutomatedTesting/Registry/C4976227_Collider_NewGroup.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/Registry/C4976244_Collider_SameGroupSameLayerCollision.setreg_override b/AutomatedTesting/Registry/C4976244_Collider_SameGroupSameLayerCollision.setreg_override index e4ea71f652..b82acaf0ae 100644 --- a/AutomatedTesting/Registry/C4976244_Collider_SameGroupSameLayerCollision.setreg_override +++ b/AutomatedTesting/Registry/C4976244_Collider_SameGroupSameLayerCollision.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/Registry/C4976245_PhysXCollider_CollisionLayerTest.setreg_override b/AutomatedTesting/Registry/C4976245_PhysXCollider_CollisionLayerTest.setreg_override index e4ea71f652..b82acaf0ae 100644 --- a/AutomatedTesting/Registry/C4976245_PhysXCollider_CollisionLayerTest.setreg_override +++ b/AutomatedTesting/Registry/C4976245_PhysXCollider_CollisionLayerTest.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/Registry/C4982593_PhysXCollider_CollisionLayer.setreg_override b/AutomatedTesting/Registry/C4982593_PhysXCollider_CollisionLayer.setreg_override index e4ea71f652..b82acaf0ae 100644 --- a/AutomatedTesting/Registry/C4982593_PhysXCollider_CollisionLayer.setreg_override +++ b/AutomatedTesting/Registry/C4982593_PhysXCollider_CollisionLayer.setreg_override @@ -69,7 +69,7 @@ {}, {}, {}, - "TouchBend" + {} ] }, "Groups": { diff --git a/AutomatedTesting/ScriptCanvas/dynamodbdemo.scriptcanvas b/AutomatedTesting/ScriptCanvas/dynamodbdemo.scriptcanvas index 286ac12551..d2c67b44d4 100644 --- a/AutomatedTesting/ScriptCanvas/dynamodbdemo.scriptcanvas +++ b/AutomatedTesting/ScriptCanvas/dynamodbdemo.scriptcanvas @@ -1,3449 +1,2296 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "ScriptCanvasData", + "ClassData": { + "m_scriptCanvas": { + "Id": { + "id": 25003641416736 + }, + "Name": "dynamodbdemo", + "Components": { + "Component_[12786284990698687901]": { + "$type": "EditorGraphVariableManagerComponent", + "Id": 12786284990698687901, + "m_variableData": { + "m_nameVariableMap": [ + { + "Key": { + "m_id": "{2B4769A0-AA75-4F68-8D20-0AD04D6A1BA9}" + }, + "Value": { + "Datum": { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "AWSCore.ExampleDynamoTableOutput", + "label": "String" + }, + "VariableId": { + "m_id": "{2B4769A0-AA75-4F68-8D20-0AD04D6A1BA9}" + }, + "VariableName": "table_name_key" + } + }, + { + "Key": { + "m_id": "{DEACAA6F-08F8-4938-A260-434B5A54B410}" + }, + "Value": { + "Datum": { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 4, + "m_azType": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}" + }, + "isNullPointer": false, + "$type": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E} AZStd::unordered_map", + "value": { + "id": "{\"S\":\"Item1\"}" + }, + "label": "Map" + }, + "VariableId": { + "m_id": "{DEACAA6F-08F8-4938-A260-434B5A54B410}" + }, + "VariableName": "key_map" + } + } + ] + } + }, + "Component_[7996788827269998313]": { + "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph", + "Id": 7996788827269998313, + "m_graphData": { + "m_nodes": [ + { + "Id": { + "id": 25025116253216 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[10578822574531029496]": { + "$type": "EBusEventHandler", + "Id": 10578822574531029496, + "Slots": [ + { + "id": { + "m_id": "{0DFB0301-EE5F-48AC-BBD2-25837DA49111}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{79098ED5-37E6-4C63-B1A5-D78083283A20}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{EE099D12-FC92-4A08-87E2-02D818FD52E2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{92B219B0-ADC0-4461-A355-0DC9166961A8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{63FEE16A-8E8B-4A66-AC05-39AC3B68CA70}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{96E24F07-C49C-47FD-8933-77A4DD3782D6}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Map", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{34979410-5B6E-4BEF-9A46-48FF67F4D19D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnGetItemSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{00E8811F-BC79-4E6A-A324-813F7BF2ECE9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{ADCC15B8-DAA0-4640-8B18-B8F2A20902F4}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnGetItemError", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 1385231939 + }, + "Value": { + "m_eventName": "OnGetItemSuccess", + "m_eventId": { + "Value": 1385231939 + }, + "m_eventSlotId": { + "m_id": "{34979410-5B6E-4BEF-9A46-48FF67F4D19D}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{96E24F07-C49C-47FD-8933-77A4DD3782D6}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1405981398 + }, + "Value": { + "m_eventName": "OnGetItemError", + "m_eventId": { + "Value": 1405981398 + }, + "m_eventSlotId": { + "m_id": "{ADCC15B8-DAA0-4640-8B18-B8F2A20902F4}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{00E8811F-BC79-4E6A-A324-813F7BF2ECE9}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSDynamoDBBehaviorNotificationBus", + "m_busId": { + "Value": 3574293420 + } + } + } + }, + { + "Id": { + "id": 25046591089696 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[12835504459049783614]": { + "$type": "Print", + "Id": 12835504459049783614, + "Slots": [ + { + "id": { + "m_id": "{4AC9E45B-5710-46B1-9255-DAC034603396}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{8EB7444E-C872-45C0-A1C4-6D40B0DE58FC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "[DynamoDB] Results finished", + "m_unresolvedString": [ + "[DynamoDB] Results finished" + ] + } + } + }, + { + "Id": { + "id": 25033706187808 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[13226838068173099848]": { + "$type": "EBusEventHandler", + "Id": 13226838068173099848, + "Slots": [ + { + "id": { + "m_id": "{9AE4F6B5-2537-4CB0-A138-EFEBF3E686BB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{69F56189-B639-4B3F-8007-10E06B25306B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{BFC17F2C-0B66-4CE8-9333-EDD20AD25AAE}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{CB2E6E03-4D7C-43F4-87E0-A4B859C7F9BD}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{B165F16F-AE65-4FB3-B59E-5D76A116DF17}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{8C1C768C-177A-4145-B28C-8992C3AF567A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Map", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{6C1B44FB-914A-48F0-8A51-16260B1FF1AC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnGetItemSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{C2325175-BC9A-4015-994F-708E943FD08A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{ED0836C9-1CE1-4F90-9515-AEA304BA439D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnGetItemError", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 1385231939 + }, + "Value": { + "m_eventName": "OnGetItemSuccess", + "m_eventId": { + "Value": 1385231939 + }, + "m_eventSlotId": { + "m_id": "{6C1B44FB-914A-48F0-8A51-16260B1FF1AC}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{8C1C768C-177A-4145-B28C-8992C3AF567A}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 1405981398 + }, + "Value": { + "m_eventName": "OnGetItemError", + "m_eventId": { + "Value": 1405981398 + }, + "m_eventSlotId": { + "m_id": "{ED0836C9-1CE1-4F90-9515-AEA304BA439D}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{C2325175-BC9A-4015-994F-708E943FD08A}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSDynamoDBBehaviorNotificationBus", + "m_busId": { + "Value": 3574293420 + } + } + } + }, + { + "Id": { + "id": 25029411220512 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[13444839192692766618]": { + "$type": "Print", + "Id": 13444839192692766618, + "Slots": [ + { + "id": { + "m_id": "{725A6880-59C3-4965-9BEA-713C21960C6E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{6156DD7F-94E1-410B-8580-673E865DF025}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "[DynamoDB] Get item completed", + "m_unresolvedString": [ + "[DynamoDB] Get item completed" + ] + } + } + }, + { + "Id": { + "id": 25038001155104 + }, + "Name": "SC Node(GetVariable)", + "Components": { + "Component_[17700179894112153065]": { + "$type": "GetVariableNode", + "Id": 17700179894112153065, + "Slots": [ + { + "id": { + "m_id": "{E50EF36D-58B3-4C76-AB5D-D25703D5E820}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "When signaled sends the property referenced by this node to a Data Output slot", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{9A669D64-DA34-4D0C-8BF1-D898D5943023}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{360DF30D-C247-4E89-80B0-8E1D6D5350A9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Map", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "m_variableId": { + "m_id": "{DEACAA6F-08F8-4938-A260-434B5A54B410}" + }, + "m_variableDataOutSlotId": { + "m_id": "{360DF30D-C247-4E89-80B0-8E1D6D5350A9}" + } + } + } + }, + { + "Id": { + "id": 25050886056992 + }, + "Name": "SC-Node(GetItem)", + "Components": { + "Component_[2045201123947147066]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 2045201123947147066, + "Slots": [ + { + "id": { + "m_id": "{B432784A-0BFF-4407-BA12-03331DBC5D25}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Table Resource KeyName", + "toolTip": "The name of the table containing the requested item.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{2B4769A0-AA75-4F68-8D20-0AD04D6A1BA9}" + } + }, + { + "id": { + "m_id": "{DCFA66C5-6976-41ED-BE3D-5691B925F0EB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Key Map", + "toolTip": "A map of attribute names to AttributeValue objects, representing the primary key of the item to retrieve.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{92E2E9A5-2605-45DA-9058-5616BF32649F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{CEF34783-6020-4ABF-B10B-758CF1576805}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "ExampleDynamoTableOutput", + "label": "Table Resource KeyName" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 4, + "m_azType": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}" + }, + "isNullPointer": true, + "label": "Key Map" + } + ], + "methodType": 2, + "methodName": "GetItem", + "className": "AWSScriptBehaviorDynamoDB", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSScriptBehaviorDynamoDB" + } + } + }, + { + "Id": { + "id": 25016526318624 + }, + "Name": "SC-Node(ReloadConfigFile)", + "Components": { + "Component_[4821100336024757285]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 4821100336024757285, + "Slots": [ + { + "id": { + "m_id": "{25D3CEFF-AFA5-4275-BCD2-893A6D0C285B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Is Reloading Config FileName", + "toolTip": "Whether reload resource mapping config file name from AWS core configuration settings registry file.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{1AA65429-3605-41C6-99A4-829A11D859D7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{5D5F5BE8-68D5-4533-8D40-FA5F3D2F4A0E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 0 + }, + "isNullPointer": false, + "$type": "bool", + "value": true, + "label": "Is Reloading Config FileName" + } + ], + "methodType": 0, + "methodName": "ReloadConfigFile", + "className": "AWSResourceMappingRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSResourceMappingRequestBus" + } + } + }, + { + "Id": { + "id": 25020821285920 + }, + "Name": "SC-Node(ForEach)", + "Components": { + "Component_[8848962104837464421]": { + "$type": "ForEach", + "Id": 8848962104837464421, + "Slots": [ + { + "id": { + "m_id": "{D76E259C-CE63-478B-ACF8-83018378034E}" + }, + "DynamicTypeOverride": 2, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Source", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}" + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 3089028177 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{1AC44C40-E18B-4297-B6BF-13A5CB07AFDD}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Signaled upon node entry", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{4A657F68-4B8B-48DE-808F-D2040FB2E314}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Break", + "toolTip": "Stops the iteration when signaled", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{EE086437-7A08-4369-8E38-83866AD22DAE}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Each", + "toolTip": "Signalled after each element of the container", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E6CD3DE4-70BB-4876-B944-5255E997A2C0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Finished", + "toolTip": "The container has been fully iterated over", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{67F86833-7B8B-4EB8-952B-33BA2E99F17F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{831A40AE-767D-45B8-BE36-4FB432D37A02}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 4, + "m_azType": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}" + }, + "isNullPointer": true, + "label": "Source" + } + ], + "m_sourceSlot": { + "m_id": "{D76E259C-CE63-478B-ACF8-83018378034E}" + }, + "m_previousTypeId": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", + "m_propertySlots": [ + { + "m_propertySlotId": { + "m_id": "{67F86833-7B8B-4EB8-952B-33BA2E99F17F}" + }, + "m_propertyType": { + "m_type": 5 + }, + "m_propertyName": "String" + }, + { + "m_propertySlotId": { + "m_id": "{831A40AE-767D-45B8-BE36-4FB432D37A02}" + }, + "m_propertyType": { + "m_type": 5 + }, + "m_propertyName": "String" + } + ] + } + } + }, + { + "Id": { + "id": 25012231351328 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[9330046059516327092]": { + "$type": "Print", + "Id": 9330046059516327092, + "Slots": [ + { + "id": { + "m_id": "{DF1E0DDB-6E1C-49E1-833C-D77642B634B9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{886F934E-F03B-458C-9624-27948F9BE968}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value", + "toolTip": "Value which replaces instances of {Value} in the resulting string.", + "DisplayDataType": { + "m_type": 5 + }, + "DisplayGroup": { + "Value": 1015031923 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{3753E1B8-D99A-4F25-8C3A-899A9E84742A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Value" + } + ], + "m_format": "[DynamoDB] Error: {Value}", + "m_arrayBindingMap": [ + { + "Key": 1, + "Value": { + "m_id": "{886F934E-F03B-458C-9624-27948F9BE968}" + } + } + ], + "m_unresolvedString": [ + "[DynamoDB] Error: ", + {} + ], + "m_formatSlotMap": { + "Value": { + "m_id": "{886F934E-F03B-458C-9624-27948F9BE968}" + } + } + } + } + }, + { + "Id": { + "id": 25007936384032 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[9330046059516327092]": { + "$type": "Print", + "Id": 9330046059516327092, + "Slots": [ + { + "id": { + "m_id": "{DF1E0DDB-6E1C-49E1-833C-D77642B634B9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{886F934E-F03B-458C-9624-27948F9BE968}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value", + "toolTip": "Value which replaces instances of {Value} in the resulting string.", + "DisplayDataType": { + "m_type": 5 + }, + "DisplayGroup": { + "Value": 1015031923 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{D725EFD5-970D-4182-8913-F8BD005843FF}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value_1", + "toolTip": "Value which replaces instances of {Value_1} in the resulting string.", + "DisplayDataType": { + "m_type": 5 + }, + "DisplayGroup": { + "Value": 1015031923 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{3753E1B8-D99A-4F25-8C3A-899A9E84742A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Value" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Value_1" + } + ], + "m_format": "{Value}: {Value_1}", + "m_arrayBindingMap": [ + { + "Key": 1, + "Value": { + "m_id": "{886F934E-F03B-458C-9624-27948F9BE968}" + } + }, + { + "Key": 3, + "Value": { + "m_id": "{D725EFD5-970D-4182-8913-F8BD005843FF}" + } + } + ], + "m_unresolvedString": [ + {}, + {}, + ": ", + {} + ], + "m_formatSlotMap": { + "Value": { + "m_id": "{886F934E-F03B-458C-9624-27948F9BE968}" + }, + "Value_1": { + "m_id": "{D725EFD5-970D-4182-8913-F8BD005843FF}" + } + } + } + } + }, + { + "Id": { + "id": 25042296122400 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[9609589719561271825]": { + "$type": "EBusEventHandler", + "Id": 9609589719561271825, + "Slots": [ + { + "id": { + "m_id": "{B93CBA9F-469B-4C6F-BD79-50375AD3C27F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{610D578A-D6C6-43E0-944F-719383606327}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{CD898A2F-56E2-40E5-B3EA-EAB098334C08}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{F8727284-7903-4074-935E-36F7885A0248}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E93B874F-2AE3-4E1D-AA68-59B1C1EE4933}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{C4CAFE95-89EB-401F-89EF-C25307ACF59A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Source", + "toolTip": "ID used to connect on a specific Event address (Type: EntityId)", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{462005BF-42CE-433D-ADC6-8B5699DEFD82}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "EntityID", + "DisplayDataType": { + "m_type": 1 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{A8CD4D6B-660C-4D19-9498-D802AB4AD958}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEntityActivated", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{132B287B-5DB7-4D1F-B98E-D22D000474CC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "EntityID", + "DisplayDataType": { + "m_type": 1 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{979491D8-D45E-4477-9728-2F8EC559BAE4}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEntityDeactivated", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 1 + }, + "isNullPointer": false, + "$type": "EntityId", + "value": { + "id": 2901262558 + }, + "label": "Source" + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 245425936 + }, + "Value": { + "m_eventName": "OnEntityActivated", + "m_eventId": { + "Value": 245425936 + }, + "m_eventSlotId": { + "m_id": "{A8CD4D6B-660C-4D19-9498-D802AB4AD958}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{462005BF-42CE-433D-ADC6-8B5699DEFD82}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4273369222 + }, + "Value": { + "m_eventName": "OnEntityDeactivated", + "m_eventId": { + "Value": 4273369222 + }, + "m_eventSlotId": { + "m_id": "{979491D8-D45E-4477-9728-2F8EC559BAE4}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{132B287B-5DB7-4D1F-B98E-D22D000474CC}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "EntityBus", + "m_busId": { + "Value": 3358774020 + } + } + } + } + ], + "m_connections": [ + { + "Id": { + "id": 25055181024288 + }, + "Name": "srcEndpoint=(For Each: Each), destEndpoint=(Print: In)", + "Components": { + "Component_[5981589240511962073]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 5981589240511962073, + "sourceEndpoint": { + "nodeId": { + "id": 25020821285920 + }, + "slotId": { + "m_id": "{EE086437-7A08-4369-8E38-83866AD22DAE}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25007936384032 + }, + "slotId": { + "m_id": "{DF1E0DDB-6E1C-49E1-833C-D77642B634B9}" + } + } + } + } + }, + { + "Id": { + "id": 25059475991584 + }, + "Name": "srcEndpoint=(AWSDynamoDBBehaviorNotificationBus Handler: Map), destEndpoint=(For Each: Source)", + "Components": { + "Component_[5561798385961633452]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 5561798385961633452, + "sourceEndpoint": { + "nodeId": { + "id": 25025116253216 + }, + "slotId": { + "m_id": "{96E24F07-C49C-47FD-8933-77A4DD3782D6}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25020821285920 + }, + "slotId": { + "m_id": "{D76E259C-CE63-478B-ACF8-83018378034E}" + } + } + } + } + }, + { + "Id": { + "id": 25063770958880 + }, + "Name": "srcEndpoint=(AWSDynamoDBBehaviorNotificationBus Handler: ExecutionSlot:OnGetItemSuccess), destEndpoint=(For Each: In)", + "Components": { + "Component_[4777785631376877414]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4777785631376877414, + "sourceEndpoint": { + "nodeId": { + "id": 25025116253216 + }, + "slotId": { + "m_id": "{34979410-5B6E-4BEF-9A46-48FF67F4D19D}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25020821285920 + }, + "slotId": { + "m_id": "{1AC44C40-E18B-4297-B6BF-13A5CB07AFDD}" + } + } + } + } + }, + { + "Id": { + "id": 25068065926176 + }, + "Name": "srcEndpoint=(For Each: String), destEndpoint=(Print: Value)", + "Components": { + "Component_[4288056568853910529]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4288056568853910529, + "sourceEndpoint": { + "nodeId": { + "id": 25020821285920 + }, + "slotId": { + "m_id": "{67F86833-7B8B-4EB8-952B-33BA2E99F17F}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25007936384032 + }, + "slotId": { + "m_id": "{886F934E-F03B-458C-9624-27948F9BE968}" + } + } + } + } + }, + { + "Id": { + "id": 25072360893472 + }, + "Name": "srcEndpoint=(For Each: Finished), destEndpoint=(Print: In)", + "Components": { + "Component_[6176670532939452292]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 6176670532939452292, + "sourceEndpoint": { + "nodeId": { + "id": 25020821285920 + }, + "slotId": { + "m_id": "{E6CD3DE4-70BB-4876-B944-5255E997A2C0}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25046591089696 + }, + "slotId": { + "m_id": "{4AC9E45B-5710-46B1-9255-DAC034603396}" + } + } + } + } + }, + { + "Id": { + "id": 25076655860768 + }, + "Name": "srcEndpoint=(AWSDynamoDBBehaviorNotificationBus Handler: ExecutionSlot:OnGetItemError), destEndpoint=(Print: In)", + "Components": { + "Component_[16360665037994631473]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 16360665037994631473, + "sourceEndpoint": { + "nodeId": { + "id": 25033706187808 + }, + "slotId": { + "m_id": "{ED0836C9-1CE1-4F90-9515-AEA304BA439D}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25012231351328 + }, + "slotId": { + "m_id": "{DF1E0DDB-6E1C-49E1-833C-D77642B634B9}" + } + } + } + } + }, + { + "Id": { + "id": 25080950828064 + }, + "Name": "srcEndpoint=(AWSDynamoDBBehaviorNotificationBus Handler: String), destEndpoint=(Print: Value)", + "Components": { + "Component_[10819323363841801505]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 10819323363841801505, + "sourceEndpoint": { + "nodeId": { + "id": 25033706187808 + }, + "slotId": { + "m_id": "{C2325175-BC9A-4015-994F-708E943FD08A}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25012231351328 + }, + "slotId": { + "m_id": "{886F934E-F03B-458C-9624-27948F9BE968}" + } + } + } + } + }, + { + "Id": { + "id": 25085245795360 + }, + "Name": "srcEndpoint=(For Each: String), destEndpoint=(Print: Value_1)", + "Components": { + "Component_[13063015828816681184]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 13063015828816681184, + "sourceEndpoint": { + "nodeId": { + "id": 25020821285920 + }, + "slotId": { + "m_id": "{831A40AE-767D-45B8-BE36-4FB432D37A02}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25007936384032 + }, + "slotId": { + "m_id": "{D725EFD5-970D-4182-8913-F8BD005843FF}" + } + } + } + } + }, + { + "Id": { + "id": 25089540762656 + }, + "Name": "srcEndpoint=(ReloadConfigFile: Out), destEndpoint=(Get Variable: In)", + "Components": { + "Component_[18422701704926868421]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 18422701704926868421, + "sourceEndpoint": { + "nodeId": { + "id": 25016526318624 + }, + "slotId": { + "m_id": "{5D5F5BE8-68D5-4533-8D40-FA5F3D2F4A0E}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25038001155104 + }, + "slotId": { + "m_id": "{E50EF36D-58B3-4C76-AB5D-D25703D5E820}" + } + } + } + } + }, + { + "Id": { + "id": 25093835729952 + }, + "Name": "srcEndpoint=(GetItem: Out), destEndpoint=(Print: In)", + "Components": { + "Component_[11329868553246834497]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 11329868553246834497, + "sourceEndpoint": { + "nodeId": { + "id": 25050886056992 + }, + "slotId": { + "m_id": "{CEF34783-6020-4ABF-B10B-758CF1576805}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25029411220512 + }, + "slotId": { + "m_id": "{725A6880-59C3-4965-9BEA-713C21960C6E}" + } + } + } + } + }, + { + "Id": { + "id": 25098130697248 + }, + "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(GetItem: In)", + "Components": { + "Component_[296789729353182089]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 296789729353182089, + "sourceEndpoint": { + "nodeId": { + "id": 25038001155104 + }, + "slotId": { + "m_id": "{9A669D64-DA34-4D0C-8BF1-D898D5943023}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25050886056992 + }, + "slotId": { + "m_id": "{92E2E9A5-2605-45DA-9058-5616BF32649F}" + } + } + } + } + }, + { + "Id": { + "id": 25102425664544 + }, + "Name": "srcEndpoint=(Get Variable: Map), destEndpoint=(GetItem: Key Map)", + "Components": { + "Component_[10402484137467106144]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 10402484137467106144, + "sourceEndpoint": { + "nodeId": { + "id": 25038001155104 + }, + "slotId": { + "m_id": "{360DF30D-C247-4E89-80B0-8E1D6D5350A9}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25050886056992 + }, + "slotId": { + "m_id": "{DCFA66C5-6976-41ED-BE3D-5691B925F0EB}" + } + } + } + } + }, + { + "Id": { + "id": 25106720631840 + }, + "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(ReloadConfigFile: In)", + "Components": { + "Component_[16720125412018333818]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 16720125412018333818, + "sourceEndpoint": { + "nodeId": { + "id": 25042296122400 + }, + "slotId": { + "m_id": "{A8CD4D6B-660C-4D19-9498-D802AB4AD958}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 25016526318624 + }, + "slotId": { + "m_id": "{1AA65429-3605-41C6-99A4-829A11D859D7}" + } + } + } + } + } + ] + }, + "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}", + "versionData": { + "_grammarVersion": 1, + "_runtimeVersion": 1 + }, + "m_variableCounter": 5, + "GraphCanvasData": [ + { + "Key": { + "id": 25003641416736 + }, + "Value": { + "ComponentData": { + "{5F84B500-8C45-40D1-8EFC-A5306B241444}": { + "$type": "SceneComponentSaveData", + "ViewParams": { + "Scale": 0.7826294, + "AnchorX": -546.8744506835938, + "AnchorY": -167.38446044921875 + } + } + } + } + }, + { + "Key": { + "id": 25007936384032 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 480.0, + 680.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{C481D523-9BFE-4FEB-ADFC-5EE73734E510}" + } + } + } + }, + { + "Key": { + "id": 25012231351328 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 160.0, + 400.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{A1019F85-E1ED-4A76-A5F2-D18B69A3F7C8}" + } + } + } + }, + { + "Key": { + "id": 25016526318624 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -20.0, + 160.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{BCD5F6D2-6A82-47D9-8C02-D02C298C22A5}" + } + } + } + }, + { + "Key": { + "id": 25020821285920 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "DefaultNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 160.0, + 680.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{13F6FDDB-D161-4587-9F30-F617D012A062}" + } + } + } + }, + { + "Key": { + "id": 25025116253216 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -140.0, + 640.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 1385231939 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{21DC5FA5-0109-4A1B-8350-50A25A09290A}" + } + } + } + }, + { + "Key": { + "id": 25029411220512 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1120.0, + 80.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{7F310716-7DCD-4C1F-8B62-88E907179D89}" + } + } + } + }, + { + "Key": { + "id": 25033706187808 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -140.0, + 380.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 1405981398 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{4AC68669-891A-48EA-93D3-1C210C117298}" + } + } + } + }, + { + "Key": { + "id": 25038001155104 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "GetVariableNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 320.0, + 120.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".getVariable" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{B6D7974B-646A-4089-A530-7F6EB3C28328}" + } + } + } + }, + { + "Key": { + "id": 25042296122400 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -360.0, + 100.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 245425936 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{9D1121A0-707F-47A8-A1D9-6C3FF54ED9F8}" + } + } + } + }, + { + "Key": { + "id": 25046591089696 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 480.0, + 960.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{58E0C332-FAA1-419E-8F67-A0D057D90EF3}" + } + } + } + }, + { + "Key": { + "id": 25050886056992 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 660.0, + 80.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{4238CE68-6891-45AF-880D-C6D8317A5506}" + } + } + } + } + ], + "StatisticsHelper": { + "InstanceCounter": [ + { + "Key": 5842116704362436814, + "Value": 1 + }, + { + "Key": 5842116704509535651, + "Value": 1 + }, + { + "Key": 5842116761103598202, + "Value": 1 + }, + { + "Key": 10181512461692697578, + "Value": 1 + }, + { + "Key": 10684225535275896474, + "Value": 4 + }, + { + "Key": 12348245020530250771, + "Value": 1 + }, + { + "Key": 13774516555319876501, + "Value": 1 + }, + { + "Key": 16512335735722000926, + "Value": 1 + } + ] + } + } + } + } + } +} \ No newline at end of file diff --git a/AutomatedTesting/ScriptCanvas/instance_counter.scriptcanvas b/AutomatedTesting/ScriptCanvas/instance_counter.scriptcanvas index 0ccd364da5..0e5524273c 100644 --- a/AutomatedTesting/ScriptCanvas/instance_counter.scriptcanvas +++ b/AutomatedTesting/ScriptCanvas/instance_counter.scriptcanvas @@ -1,1241 +1,786 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "ScriptCanvasData", + "ClassData": { + "m_scriptCanvas": { + "Id": { + "id": 3744110453276 + }, + "Name": "instance_counter", + "Components": { + "Component_[12097559167852379075]": { + "$type": "EditorGraphVariableManagerComponent", + "Id": 12097559167852379075 + }, + "Component_[2729072015511887582]": { + "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph", + "Id": 2729072015511887582, + "m_graphData": { + "m_nodes": [ + { + "Id": { + "id": 3752700387868 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[10726023654468379779]": { + "$type": "Print", + "Id": 10726023654468379779, + "Slots": [ + { + "id": { + "m_id": "{14259C44-C324-4F72-93E7-FA49B061F2C7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{4DE18FB9-E6F3-47B2-B721-AE0A35FC9C5F}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value", + "toolTip": "Value which replaces instances of {Value} in the resulting string.", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1015031923 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{BDE3D585-DDD2-4B5E-AB8E-738F07B89A00}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Value" + } + ], + "m_format": "Instances found in area = {Value}", + "m_numericPrecision": 0, + "m_arrayBindingMap": [ + { + "Key": 1, + "Value": { + "m_id": "{4DE18FB9-E6F3-47B2-B721-AE0A35FC9C5F}" + } + } + ], + "m_unresolvedString": [ + "Instances found in area = ", + {} + ], + "m_formatSlotMap": { + "Value": { + "m_id": "{4DE18FB9-E6F3-47B2-B721-AE0A35FC9C5F}" + } + } + } + } + }, + { + "Id": { + "id": 3756995355164 + }, + "Name": "SC-Node(Start)", + "Components": { + "Component_[1402832180862211598]": { + "$type": "Start", + "Id": 1402832180862211598, + "Slots": [ + { + "id": { + "m_id": "{66363B00-927B-4B9C-AF21-C9DDC4BA528D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "toolTip": "Signaled when the entity that owns this graph is fully activated.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ] + } + } + }, + { + "Id": { + "id": 3765585289756 + }, + "Name": "SC-Node(GetAreaProductCount)", + "Components": { + "Component_[14710093371558461612]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 14710093371558461612, + "Slots": [ + { + "id": { + "m_id": "{32D2E25A-834E-48FE-B868-7AB5D78D3A3B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "EntityID: 0", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{9D282D11-1630-4247-BCA7-001953C7AAEA}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{DDBA739C-F8A3-4307-8BEF-494B499DA0DC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{64B972F8-C880-4BB2-8482-E5F0FDBB692D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result: Number", + "DisplayDataType": { + "m_type": 3 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 1 + }, + "isNullPointer": false, + "$type": "EntityId", + "value": { + "id": 2901262558 + }, + "label": "Source" + } + ], + "methodType": 0, + "methodName": "GetAreaProductCount", + "className": "VegetationSpawnerRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "VegetationSpawnerRequestBus" + } + } + }, + { + "Id": { + "id": 3748405420572 + }, + "Name": "SC-Node(TimeDelayNodeableNode)", + "Components": { + "Component_[4183258099933897606]": { + "$type": "TimeDelayNodeableNode", + "Id": 4183258099933897606, + "Slots": [ + { + "id": { + "m_id": "{5B850958-5026-4659-B6C7-0EB4E55205E6}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Start", + "DisplayGroup": { + "Value": 2675529103 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{DB2A2300-A20D-4DB7-A31B-F4F1B040BB62}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Delay", + "toolTip": "The amount of time to delay before the Done is signalled.", + "DisplayGroup": { + "Value": 2675529103 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{27714BA0-DFD3-4813-94BF-12B0ADF2B89F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "On Start", + "DisplayGroup": { + "Value": 2675529103 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{34BAE377-8B62-4E33-B9AB-0819643950A1}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Done", + "toolTip": "Signaled after waiting for the specified amount of times.", + "DisplayGroup": { + "Value": 271442091 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 5.0, + "label": "Delay" + } + ], + "nodeable": { + "m_timeUnits": 2 + }, + "slotExecutionMap": { + "ins": [ + { + "_slotId": { + "m_id": "{5B850958-5026-4659-B6C7-0EB4E55205E6}" + }, + "_inputs": [ + { + "_slotId": { + "m_id": "{DB2A2300-A20D-4DB7-A31B-F4F1B040BB62}" + } + } + ], + "_outs": [ + { + "_slotId": { + "m_id": "{27714BA0-DFD3-4813-94BF-12B0ADF2B89F}" + }, + "_name": "On Start", + "_interfaceSourceId": "{00E45DAC-D501-0000-A050-B80244000000}" + } + ], + "_interfaceSourceId": "{9CCBADAB-917D-0000-0400-000000000000}" + } + ], + "latents": [ + { + "_slotId": { + "m_id": "{34BAE377-8B62-4E33-B9AB-0819643950A1}" + }, + "_name": "Done", + "_interfaceSourceId": "{9CCBADAB-917D-0000-0400-000000000000}" + } + ] + } + } + } + }, + { + "Id": { + "id": 3761290322460 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[6291714103869491290]": { + "$type": "Print", + "Id": 6291714103869491290, + "Slots": [ + { + "id": { + "m_id": "{69A4391E-F7BE-4E2E-8FED-474227D660F3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{5D263368-0096-424D-ACEE-1D658417E00D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "Delaying for 5 seconds", + "m_unresolvedString": [ + "Delaying for 5 seconds" + ] + } + } + } + ], + "m_connections": [ + { + "Id": { + "id": 3769880257052 + }, + "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(TimeDelay: Start)", + "Components": { + "Component_[17168700535869642649]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 17168700535869642649, + "sourceEndpoint": { + "nodeId": { + "id": 3756995355164 + }, + "slotId": { + "m_id": "{66363B00-927B-4B9C-AF21-C9DDC4BA528D}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 3748405420572 + }, + "slotId": { + "m_id": "{5B850958-5026-4659-B6C7-0EB4E55205E6}" + } + } + } + } + }, + { + "Id": { + "id": 3774175224348 + }, + "Name": "srcEndpoint=(TimeDelay: On Start), destEndpoint=(Print: In)", + "Components": { + "Component_[447639101916656835]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 447639101916656835, + "sourceEndpoint": { + "nodeId": { + "id": 3748405420572 + }, + "slotId": { + "m_id": "{27714BA0-DFD3-4813-94BF-12B0ADF2B89F}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 3761290322460 + }, + "slotId": { + "m_id": "{69A4391E-F7BE-4E2E-8FED-474227D660F3}" + } + } + } + } + }, + { + "Id": { + "id": 3778470191644 + }, + "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(GetAreaProductCount: In)", + "Components": { + "Component_[13322673526483611656]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 13322673526483611656, + "sourceEndpoint": { + "nodeId": { + "id": 3748405420572 + }, + "slotId": { + "m_id": "{34BAE377-8B62-4E33-B9AB-0819643950A1}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 3765585289756 + }, + "slotId": { + "m_id": "{9D282D11-1630-4247-BCA7-001953C7AAEA}" + } + } + } + } + }, + { + "Id": { + "id": 3782765158940 + }, + "Name": "srcEndpoint=(GetAreaProductCount: Result: Number), destEndpoint=(Print: Value)", + "Components": { + "Component_[17896973599438945144]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 17896973599438945144, + "sourceEndpoint": { + "nodeId": { + "id": 3765585289756 + }, + "slotId": { + "m_id": "{64B972F8-C880-4BB2-8482-E5F0FDBB692D}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 3752700387868 + }, + "slotId": { + "m_id": "{4DE18FB9-E6F3-47B2-B721-AE0A35FC9C5F}" + } + } + } + } + }, + { + "Id": { + "id": 3787060126236 + }, + "Name": "srcEndpoint=(GetAreaProductCount: Out), destEndpoint=(Print: In)", + "Components": { + "Component_[3309014461387913721]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 3309014461387913721, + "sourceEndpoint": { + "nodeId": { + "id": 3765585289756 + }, + "slotId": { + "m_id": "{DDBA739C-F8A3-4307-8BEF-494B499DA0DC}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 3752700387868 + }, + "slotId": { + "m_id": "{14259C44-C324-4F72-93E7-FA49B061F2C7}" + } + } + } + } + } + ] + }, + "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}", + "versionData": { + "_grammarVersion": 1, + "_runtimeVersion": 1 + }, + "GraphCanvasData": [ + { + "Key": { + "id": 3744110453276 + }, + "Value": { + "ComponentData": { + "{5F84B500-8C45-40D1-8EFC-A5306B241444}": { + "$type": "SceneComponentSaveData", + "ViewParams": { + "Scale": 0.9218543514249998, + "AnchorX": 50.98419189453125, + "AnchorY": -272.27728271484375 + } + } + } + } + }, + { + "Key": { + "id": 3748405420572 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "TimeNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 380.0, + 20.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{DB8CFC70-AD18-45D5-8C6C-A39648059134}" + } + } + } + }, + { + "Key": { + "id": 3752700387868 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1220.0, + 180.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{1811B851-23B5-43C8-B654-9822174090CC}" + } + } + } + }, + { + "Key": { + "id": 3756995355164 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "TimeNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 160.0, + 60.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{483C126F-701F-492F-8375-15B40F8D0178}" + } + } + } + }, + { + "Key": { + "id": 3761290322460 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 700.0, + -160.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{DF1AB898-208E-4EA4-B3A9-202A4DB725EB}" + } + } + } + }, + { + "Key": { + "id": 3765585289756 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 700.0, + 200.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{5724716B-5E80-4BB2-AA9C-3E4916A40BAE}" + } + } + } + } + ], + "StatisticsHelper": { + "InstanceCounter": [ + { + "Key": 4199610336680704683, + "Value": 1 + }, + { + "Key": 6462358712820489356, + "Value": 1 + }, + { + "Key": 10684225535275896474, + "Value": 2 + }, + { + "Key": 13774516461288748354, + "Value": 1 + } + ] + } + } + } + } + } +} \ No newline at end of file diff --git a/AutomatedTesting/ScriptCanvas/lambdademo.scriptcanvas b/AutomatedTesting/ScriptCanvas/lambdademo.scriptcanvas index ec4b161711..630d28f0da 100644 --- a/AutomatedTesting/ScriptCanvas/lambdademo.scriptcanvas +++ b/AutomatedTesting/ScriptCanvas/lambdademo.scriptcanvas @@ -1,2463 +1,1686 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "ScriptCanvasData", + "ClassData": { + "m_scriptCanvas": { + "Id": { + "id": 10426522414112 + }, + "Name": "lambdademo", + "Components": { + "Component_[5582017548010627717]": { + "$type": "EditorGraphVariableManagerComponent", + "Id": 5582017548010627717, + "m_variableData": { + "m_nameVariableMap": [ + { + "Key": { + "m_id": "{13AF5E48-B750-479D-8D27-9D79B382B29C}" + }, + "Value": { + "Datum": { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "AWSCore.ExampleLambdaOutput", + "label": "String" + }, + "VariableId": { + "m_id": "{13AF5E48-B750-479D-8D27-9D79B382B29C}" + }, + "VariableName": "function_key" + } + }, + { + "Key": { + "m_id": "{DCB889AA-7504-42E7-9D57-5D96C37ACFF0}" + }, + "Value": { + "Datum": { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "String" + }, + "VariableId": { + "m_id": "{DCB889AA-7504-42E7-9D57-5D96C37ACFF0}" + }, + "VariableName": "payload" + } + } + ] + } + }, + "Component_[9407870129852956697]": { + "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph", + "Id": 9407870129852956697, + "m_graphData": { + "m_nodes": [ + { + "Id": { + "id": 10435112348704 + }, + "Name": "SC-Node(ReloadConfigFile)", + "Components": { + "Component_[11167148136039722527]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 11167148136039722527, + "Slots": [ + { + "id": { + "m_id": "{8AA5E0B5-F92E-42A5-AFA5-D73825783200}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Is Reloading Config FileName", + "toolTip": "Whether reload resource mapping config file name from AWS core configuration settings registry file.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{7D577F2E-978C-4523-9FDF-6BCEFF0D1F4E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{DD5508D7-F1D1-451B-93CC-03DC448C03E7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 0 + }, + "isNullPointer": false, + "$type": "bool", + "value": true, + "label": "Is Reloading Config FileName" + } + ], + "methodType": 0, + "methodName": "ReloadConfigFile", + "className": "AWSResourceMappingRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSResourceMappingRequestBus" + } + } + }, + { + "Id": { + "id": 10460882152480 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[12603515743535039255]": { + "$type": "EBusEventHandler", + "Id": 12603515743535039255, + "Slots": [ + { + "id": { + "m_id": "{45AA6102-92E2-458B-B269-231D05863FDA}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{4424B64A-299D-4164-A4D4-A275A1C2AB3D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{92EB485B-1B25-4D3B-95F4-7FF7E2BCFB80}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{F12D1B7B-A26B-4CE3-A10C-FB510F8E0199}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{9265F022-057D-4464-AE9B-64458D51E2D6}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{34292C47-96F8-401B-8902-5F7FF32FF4C0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Source", + "toolTip": "ID used to connect on a specific Event address (Type: EntityId)", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{7CCBDF78-CA73-40ED-A996-EBCA723286CB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "EntityID", + "DisplayDataType": { + "m_type": 1 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{7587D651-DBD8-49B8-8CCC-BFD0E9C890A7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEntityActivated", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{838A95D3-7F90-489E-87D2-05930C7C4F05}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "EntityID", + "DisplayDataType": { + "m_type": 1 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{6CBCAAE3-3ABE-4E3B-919D-271D943BAEB4}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEntityDeactivated", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 1 + }, + "isNullPointer": false, + "$type": "EntityId", + "value": { + "id": 2901262558 + }, + "label": "Source" + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 245425936 + }, + "Value": { + "m_eventName": "OnEntityActivated", + "m_eventId": { + "Value": 245425936 + }, + "m_eventSlotId": { + "m_id": "{7587D651-DBD8-49B8-8CCC-BFD0E9C890A7}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{7CCBDF78-CA73-40ED-A996-EBCA723286CB}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4273369222 + }, + "Value": { + "m_eventName": "OnEntityDeactivated", + "m_eventId": { + "Value": 4273369222 + }, + "m_eventSlotId": { + "m_id": "{6CBCAAE3-3ABE-4E3B-919D-271D943BAEB4}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{838A95D3-7F90-489E-87D2-05930C7C4F05}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "EntityBus", + "m_busId": { + "Value": 3358774020 + } + } + } + }, + { + "Id": { + "id": 10447997250592 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[13302482777442065739]": { + "$type": "EBusEventHandler", + "Id": 13302482777442065739, + "Slots": [ + { + "id": { + "m_id": "{382E9758-3981-48FF-8E20-FD99C1561DC3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{86069A40-A7CE-4BD1-BD52-F7AA915085FA}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{D486C753-CC73-48FE-9E89-970AB98C4EA8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{A549915E-EB3D-4E21-AF1B-3A9C6D9488A0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{38628508-1F11-4B20-AB8D-42A8E4656375}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{C9F7A7D4-83F3-4393-9E47-3805627BBDBB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{08D01109-BA01-4422-88FF-1E562C4A28D8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnInvokeSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{FF44C72A-CB92-4873-B5D3-43198DC06AC2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{FCE32A95-1CDD-4330-8E94-85CF51731276}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnInvokeError", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 1275872951 + }, + "Value": { + "m_eventName": "OnInvokeSuccess", + "m_eventId": { + "Value": 1275872951 + }, + "m_eventSlotId": { + "m_id": "{08D01109-BA01-4422-88FF-1E562C4A28D8}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{C9F7A7D4-83F3-4393-9E47-3805627BBDBB}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 3274092371 + }, + "Value": { + "m_eventName": "OnInvokeError", + "m_eventId": { + "Value": 3274092371 + }, + "m_eventSlotId": { + "m_id": "{FCE32A95-1CDD-4330-8E94-85CF51731276}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{FF44C72A-CB92-4873-B5D3-43198DC06AC2}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSLambdaBehaviorNotificationBus", + "m_busId": { + "Value": 179676616 + } + } + } + }, + { + "Id": { + "id": 10456587185184 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[14277639653836430450]": { + "$type": "EBusEventHandler", + "Id": 14277639653836430450, + "Slots": [ + { + "id": { + "m_id": "{DB69AA96-AE16-4D06-B579-7DD0EFD529A2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{FEB09F66-0727-4C28-A499-ECE1774945C9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{0F23E212-E397-47CF-9941-530AEB2F8882}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{7679B464-A5AB-4CCC-9E18-176F9D98DBFB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{185DDE19-CC78-467D-A776-05794E8D0DD1}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{70838AFF-91F4-417E-A253-41ED6C3AAB7D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{387915AE-E556-43E3-B3A7-9176370D129C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnInvokeSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{4CC527B1-A85A-42F0-A806-FB19668F22E2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{E8F2D62B-EFCE-4F85-A1DE-C158079F79EB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnInvokeError", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 1275872951 + }, + "Value": { + "m_eventName": "OnInvokeSuccess", + "m_eventId": { + "Value": 1275872951 + }, + "m_eventSlotId": { + "m_id": "{387915AE-E556-43E3-B3A7-9176370D129C}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{70838AFF-91F4-417E-A253-41ED6C3AAB7D}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 3274092371 + }, + "Value": { + "m_eventName": "OnInvokeError", + "m_eventId": { + "Value": 3274092371 + }, + "m_eventSlotId": { + "m_id": "{E8F2D62B-EFCE-4F85-A1DE-C158079F79EB}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{4CC527B1-A85A-42F0-A806-FB19668F22E2}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSLambdaBehaviorNotificationBus", + "m_busId": { + "Value": 179676616 + } + } + } + }, + { + "Id": { + "id": 10452292217888 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[15632666580273613138]": { + "$type": "Print", + "Id": 15632666580273613138, + "Slots": [ + { + "id": { + "m_id": "{2219BD38-0808-4D6D-9623-9560BCD8235D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{59EABC9A-5EA1-4E43-98CD-909870677390}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "[Lambda] Completed Invoke", + "m_unresolvedString": [ + "[Lambda] Completed Invoke" + ] + } + } + }, + { + "Id": { + "id": 10443702283296 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[15632666580273613138]": { + "$type": "Print", + "Id": 15632666580273613138, + "Slots": [ + { + "id": { + "m_id": "{2219BD38-0808-4D6D-9623-9560BCD8235D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{0972A320-2B33-4F31-AC0F-46C4E0CE539B}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value", + "toolTip": "Value which replaces instances of {Value} in the resulting string.", + "DisplayDataType": { + "m_type": 5 + }, + "DisplayGroup": { + "Value": 1015031923 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{59EABC9A-5EA1-4E43-98CD-909870677390}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Value" + } + ], + "m_format": "[Lambda] Invoke error: {Value}", + "m_arrayBindingMap": [ + { + "Key": 1, + "Value": { + "m_id": "{0972A320-2B33-4F31-AC0F-46C4E0CE539B}" + } + } + ], + "m_unresolvedString": [ + "[Lambda] Invoke error: ", + {} + ], + "m_formatSlotMap": { + "Value": { + "m_id": "{0972A320-2B33-4F31-AC0F-46C4E0CE539B}" + } + } + } + } + }, + { + "Id": { + "id": 10439407316000 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[15632666580273613138]": { + "$type": "Print", + "Id": 15632666580273613138, + "Slots": [ + { + "id": { + "m_id": "{2219BD38-0808-4D6D-9623-9560BCD8235D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{0972A320-2B33-4F31-AC0F-46C4E0CE539B}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value", + "toolTip": "Value which replaces instances of {Value} in the resulting string.", + "DisplayDataType": { + "m_type": 5 + }, + "DisplayGroup": { + "Value": 1015031923 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{59EABC9A-5EA1-4E43-98CD-909870677390}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Value" + } + ], + "m_format": "[Lambda] Invoke success: {Value}", + "m_arrayBindingMap": [ + { + "Key": 1, + "Value": { + "m_id": "{0972A320-2B33-4F31-AC0F-46C4E0CE539B}" + } + } + ], + "m_unresolvedString": [ + "[Lambda] Invoke success: ", + {} + ], + "m_formatSlotMap": { + "Value": { + "m_id": "{0972A320-2B33-4F31-AC0F-46C4E0CE539B}" + } + } + } + } + }, + { + "Id": { + "id": 10430817381408 + }, + "Name": "SC-Node(Invoke)", + "Components": { + "Component_[5709396067277168591]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 5709396067277168591, + "Slots": [ + { + "id": { + "m_id": "{5DA0BEDE-72C0-4DD7-977D-FF25974FC704}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Function Resource KeyName", + "toolTip": "The resource key name of the lambda function in resource mapping config file.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{13AF5E48-B750-479D-8D27-9D79B382B29C}" + } + }, + { + "id": { + "m_id": "{9BA842F4-68D5-442E-BF67-8182284396C0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Payload", + "toolTip": "The JSON that you want to provide to your Lambda function as input.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{DCB889AA-7504-42E7-9D57-5D96C37ACFF0}" + } + }, + { + "id": { + "m_id": "{6DB4AD78-A00C-42D9-BEC9-04B98BFBA2B2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{069560CB-28C5-499F-88D3-5CC178EB4824}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Function Resource KeyName" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Payload" + } + ], + "methodType": 2, + "methodName": "Invoke", + "className": "AWSScriptBehaviorLambda", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSScriptBehaviorLambda" + } + } + } + ], + "m_connections": [ + { + "Id": { + "id": 10465177119776 + }, + "Name": "srcEndpoint=(ReloadConfigFile: Out), destEndpoint=(Invoke: In)", + "Components": { + "Component_[13136233722544432016]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 13136233722544432016, + "sourceEndpoint": { + "nodeId": { + "id": 10435112348704 + }, + "slotId": { + "m_id": "{DD5508D7-F1D1-451B-93CC-03DC448C03E7}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 10430817381408 + }, + "slotId": { + "m_id": "{6DB4AD78-A00C-42D9-BEC9-04B98BFBA2B2}" + } + } + } + } + }, + { + "Id": { + "id": 10469472087072 + }, + "Name": "srcEndpoint=(Invoke: Out), destEndpoint=(Print: In)", + "Components": { + "Component_[2618571426139838363]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 2618571426139838363, + "sourceEndpoint": { + "nodeId": { + "id": 10430817381408 + }, + "slotId": { + "m_id": "{069560CB-28C5-499F-88D3-5CC178EB4824}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 10452292217888 + }, + "slotId": { + "m_id": "{2219BD38-0808-4D6D-9623-9560BCD8235D}" + } + } + } + } + }, + { + "Id": { + "id": 10473767054368 + }, + "Name": "srcEndpoint=(AWSLambdaBehaviorNotificationBus Handler: ExecutionSlot:OnInvokeError), destEndpoint=(Print: In)", + "Components": { + "Component_[10492730210717605288]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 10492730210717605288, + "sourceEndpoint": { + "nodeId": { + "id": 10456587185184 + }, + "slotId": { + "m_id": "{E8F2D62B-EFCE-4F85-A1DE-C158079F79EB}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 10443702283296 + }, + "slotId": { + "m_id": "{2219BD38-0808-4D6D-9623-9560BCD8235D}" + } + } + } + } + }, + { + "Id": { + "id": 10478062021664 + }, + "Name": "srcEndpoint=(AWSLambdaBehaviorNotificationBus Handler: String), destEndpoint=(Print: Value)", + "Components": { + "Component_[7692047505820357673]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 7692047505820357673, + "sourceEndpoint": { + "nodeId": { + "id": 10456587185184 + }, + "slotId": { + "m_id": "{4CC527B1-A85A-42F0-A806-FB19668F22E2}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 10443702283296 + }, + "slotId": { + "m_id": "{0972A320-2B33-4F31-AC0F-46C4E0CE539B}" + } + } + } + } + }, + { + "Id": { + "id": 10482356988960 + }, + "Name": "srcEndpoint=(AWSLambdaBehaviorNotificationBus Handler: ExecutionSlot:OnInvokeSuccess), destEndpoint=(Print: In)", + "Components": { + "Component_[8999881801271525198]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 8999881801271525198, + "sourceEndpoint": { + "nodeId": { + "id": 10447997250592 + }, + "slotId": { + "m_id": "{08D01109-BA01-4422-88FF-1E562C4A28D8}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 10439407316000 + }, + "slotId": { + "m_id": "{2219BD38-0808-4D6D-9623-9560BCD8235D}" + } + } + } + } + }, + { + "Id": { + "id": 10486651956256 + }, + "Name": "srcEndpoint=(AWSLambdaBehaviorNotificationBus Handler: String), destEndpoint=(Print: Value)", + "Components": { + "Component_[5244143619937759473]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 5244143619937759473, + "sourceEndpoint": { + "nodeId": { + "id": 10447997250592 + }, + "slotId": { + "m_id": "{C9F7A7D4-83F3-4393-9E47-3805627BBDBB}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 10439407316000 + }, + "slotId": { + "m_id": "{0972A320-2B33-4F31-AC0F-46C4E0CE539B}" + } + } + } + } + }, + { + "Id": { + "id": 10490946923552 + }, + "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(ReloadConfigFile: In)", + "Components": { + "Component_[6075242503823085865]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 6075242503823085865, + "sourceEndpoint": { + "nodeId": { + "id": 10460882152480 + }, + "slotId": { + "m_id": "{7587D651-DBD8-49B8-8CCC-BFD0E9C890A7}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 10435112348704 + }, + "slotId": { + "m_id": "{7D577F2E-978C-4523-9FDF-6BCEFF0D1F4E}" + } + } + } + } + } + ] + }, + "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}", + "versionData": { + "_grammarVersion": 1, + "_runtimeVersion": 1 + }, + "m_variableCounter": 2, + "GraphCanvasData": [ + { + "Key": { + "id": 10426522414112 + }, + "Value": { + "ComponentData": { + "{5F84B500-8C45-40D1-8EFC-A5306B241444}": { + "$type": "SceneComponentSaveData", + "ViewParams": { + "Scale": 1.3385585, + "AnchorX": -277.910888671875, + "AnchorY": -378.0185852050781 + } + } + } + } + }, + { + "Key": { + "id": 10430817381408 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 460.0, + -240.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{81C52F38-D73E-41E1-B0AB-D90267ECE76F}" + } + } + } + }, + { + "Key": { + "id": 10435112348704 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 140.0, + -240.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{C501C00F-0E1D-4EC2-A2C1-F5B910826F40}" + } + } + } + }, + { + "Key": { + "id": 10439407316000 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 360.0, + 380.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{7711815B-6518-4F40-8A20-F5081EE5423D}" + } + } + } + }, + { + "Key": { + "id": 10443702283296 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 360.0, + 120.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{C0461745-3ABD-49F0-B805-0D9C07061D11}" + } + } + } + }, + { + "Key": { + "id": 10447997250592 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 60.0, + 360.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 1275872951 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{074D28ED-E23D-47EF-9F44-4FCE2E810905}" + } + } + } + }, + { + "Key": { + "id": 10452292217888 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 900.0, + -240.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{AF52E352-83AE-4F8B-BB92-CC08893B49CE}" + } + } + } + }, + { + "Key": { + "id": 10456587185184 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 60.0, + 120.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 3274092371 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{31A0049B-49B9-41FD-A487-30A747F9B700}" + } + } + } + }, + { + "Key": { + "id": 10460882152480 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -200.0, + -300.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 245425936 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{C4712614-EB76-4E3B-9FF5-3A4A6593EE2C}" + } + } + } + } + ], + "StatisticsHelper": { + "InstanceCounter": [ + { + "Key": 5842116761103598202, + "Value": 1 + }, + { + "Key": 5842117099792962512, + "Value": 1 + }, + { + "Key": 5842117100734473396, + "Value": 1 + }, + { + "Key": 10684225535275896474, + "Value": 3 + }, + { + "Key": 13774516555319876501, + "Value": 1 + }, + { + "Key": 14402610758592020379, + "Value": 1 + } + ] + } + } + } + } + } +} \ No newline at end of file diff --git a/AutomatedTesting/ScriptCanvas/s3demo.scriptcanvas b/AutomatedTesting/ScriptCanvas/s3demo.scriptcanvas index 925cc9da26..30a7d0ee0f 100644 --- a/AutomatedTesting/ScriptCanvas/s3demo.scriptcanvas +++ b/AutomatedTesting/ScriptCanvas/s3demo.scriptcanvas @@ -1,5317 +1,3334 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "ScriptCanvasData", + "ClassData": { + "m_scriptCanvas": { + "Id": { + "id": 43214302751776 + }, + "Name": "s3demo", + "Components": { + "Component_[10482302595531409814]": { + "$type": "EditorGraphVariableManagerComponent", + "Id": 10482302595531409814, + "m_variableData": { + "m_nameVariableMap": [ + { + "Key": { + "m_id": "{41203CA6-2B79-4EBD-A738-18A4E001CD22}" + }, + "Value": { + "Datum": { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "example.txt", + "label": "String" + }, + "VariableId": { + "m_id": "{41203CA6-2B79-4EBD-A738-18A4E001CD22}" + }, + "VariableName": "object key" + } + }, + { + "Key": { + "m_id": "{54D3DD1A-F7A1-4B90-80FF-E83F0C4F3C05}" + }, + "Value": { + "Datum": { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "@user@/s3_download/output.txt", + "label": "String" + }, + "VariableId": { + "m_id": "{54D3DD1A-F7A1-4B90-80FF-E83F0C4F3C05}" + }, + "VariableName": "outfile" + } + }, + { + "Key": { + "m_id": "{F3CCFFCC-1206-4817-91C6-AC42CA8D5A70}" + }, + "Value": { + "Datum": { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "AWSCore.ExampleBucketOutput", + "label": "String" + }, + "VariableId": { + "m_id": "{F3CCFFCC-1206-4817-91C6-AC42CA8D5A70}" + }, + "VariableName": "bucket resource key" + } + } + ] + } + }, + "Component_[4689937780747115490]": { + "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph", + "Id": 4689937780747115490, + "m_graphData": { + "m_nodes": [ + { + "Id": { + "id": 43231482620960 + }, + "Name": "SC-Node(HeadObject)", + "Components": { + "Component_[11559916401303020459]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 11559916401303020459, + "Slots": [ + { + "id": { + "m_id": "{0173ADEB-F3B5-4CF6-8DB1-FD99AA146CFC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Bucket Resource KeyName", + "toolTip": "The resource key name of the bucket in resource mapping config file.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{F3CCFFCC-1206-4817-91C6-AC42CA8D5A70}" + } + }, + { + "id": { + "m_id": "{9E1DAF70-48F9-4A1E-892C-1A22BD7D7DEA}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Object KeyName", + "toolTip": "The object key.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{41203CA6-2B79-4EBD-A738-18A4E001CD22}" + } + }, + { + "id": { + "m_id": "{1042005D-18F7-4B53-9546-2ACCDCCCC9E5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{6C587F91-F656-4ADC-B03B-88B137B12BDF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Bucket Resource KeyName" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Object KeyName" + } + ], + "methodType": 2, + "methodName": "HeadObject", + "className": "AWSScriptBehaviorS3", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSScriptBehaviorS3" + } + } + }, + { + "Id": { + "id": 43257252424736 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[11561522857340259242]": { + "$type": "EBusEventHandler", + "Id": 11561522857340259242, + "Slots": [ + { + "id": { + "m_id": "{06B1CC9B-9265-4188-BB5E-B837B7266A8C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{0E2EB357-2F5A-4C59-8843-1DADE32B4E24}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{159BD7EF-639F-404C-8B8F-68BD1ABA20C7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{2A92BDF7-5546-43F1-ABC2-DB1023F368C9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{A65AB85E-8F8E-4A66-AF1A-FFB4EC26434C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{1A07C91E-56B9-4929-B557-245F839A4A9D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{E71AFDE4-483A-439D-AF2E-9BA12B1B9A9E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnHeadObjectSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{12EF30C9-9A3E-42F5-982B-AD0C050D66C5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{59125007-F1BC-4618-A04C-C96B4BAC3071}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnHeadObjectError", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{3155816E-2FB1-4C8A-918C-40D4A5F91B49}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{A02F140B-1EDA-4E15-AFAC-CB319F84CA9C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnGetObjectSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{849B4270-F66F-4420-9D27-1E8FB3F179B4}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{C2389D75-02AA-4368-A9C2-C6F5B14711AD}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnGetObjectError", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 1667438543 + }, + "Value": { + "m_eventName": "OnHeadObjectSuccess", + "m_eventId": { + "Value": 1667438543 + }, + "m_eventSlotId": { + "m_id": "{E71AFDE4-483A-439D-AF2E-9BA12B1B9A9E}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{1A07C91E-56B9-4929-B557-245F839A4A9D}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 3580584090 + }, + "Value": { + "m_eventName": "OnGetObjectSuccess", + "m_eventId": { + "Value": 3580584090 + }, + "m_eventSlotId": { + "m_id": "{A02F140B-1EDA-4E15-AFAC-CB319F84CA9C}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{3155816E-2FB1-4C8A-918C-40D4A5F91B49}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 3753331652 + }, + "Value": { + "m_eventName": "OnGetObjectError", + "m_eventId": { + "Value": 3753331652 + }, + "m_eventSlotId": { + "m_id": "{C2389D75-02AA-4368-A9C2-C6F5B14711AD}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{849B4270-F66F-4420-9D27-1E8FB3F179B4}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4007236435 + }, + "Value": { + "m_eventName": "OnHeadObjectError", + "m_eventId": { + "Value": 4007236435 + }, + "m_eventSlotId": { + "m_id": "{59125007-F1BC-4618-A04C-C96B4BAC3071}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{12EF30C9-9A3E-42F5-982B-AD0C050D66C5}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSS3BehaviorNotificationBus", + "m_busId": { + "Value": 1833099679 + } + } + } + }, + { + "Id": { + "id": 43222892686368 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[15552716946630136054]": { + "$type": "EBusEventHandler", + "Id": 15552716946630136054, + "Slots": [ + { + "id": { + "m_id": "{EC8B94FE-E310-4CAB-B7F3-7116130F3722}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{600A5FC3-5554-4296-B225-38A219D004F3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{A0B1BB90-55CF-435A-990D-EDCB1A154DBC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{CA35C08F-BD47-484E-9A18-3363BF55813F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{DEFFE837-932D-4C86-A218-2491EAA0C40A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{287A31DA-DB54-4C44-A88A-46B05D8C7410}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{113A79E3-0BB3-49A4-B131-4B4CB28B53E0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnHeadObjectSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{076938D3-8BBB-4784-8A7B-15CCAAEC3C29}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{4581870C-A1CF-49C1-A963-E86E73E1C874}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnHeadObjectError", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{D06466C8-B9B4-4712-87C7-E8F034F64396}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{EDA3336F-D744-431D-927B-C5657911532F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnGetObjectSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{5367B4E4-AD4A-4851-A027-F7F5E4947D14}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{088A6BB7-701D-4CD4-B647-89E0C373E984}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnGetObjectError", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 1667438543 + }, + "Value": { + "m_eventName": "OnHeadObjectSuccess", + "m_eventId": { + "Value": 1667438543 + }, + "m_eventSlotId": { + "m_id": "{113A79E3-0BB3-49A4-B131-4B4CB28B53E0}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{287A31DA-DB54-4C44-A88A-46B05D8C7410}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 3580584090 + }, + "Value": { + "m_eventName": "OnGetObjectSuccess", + "m_eventId": { + "Value": 3580584090 + }, + "m_eventSlotId": { + "m_id": "{EDA3336F-D744-431D-927B-C5657911532F}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{D06466C8-B9B4-4712-87C7-E8F034F64396}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 3753331652 + }, + "Value": { + "m_eventName": "OnGetObjectError", + "m_eventId": { + "Value": 3753331652 + }, + "m_eventSlotId": { + "m_id": "{088A6BB7-701D-4CD4-B647-89E0C373E984}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{5367B4E4-AD4A-4851-A027-F7F5E4947D14}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4007236435 + }, + "Value": { + "m_eventName": "OnHeadObjectError", + "m_eventId": { + "Value": 4007236435 + }, + "m_eventSlotId": { + "m_id": "{4581870C-A1CF-49C1-A963-E86E73E1C874}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{076938D3-8BBB-4784-8A7B-15CCAAEC3C29}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSS3BehaviorNotificationBus", + "m_busId": { + "Value": 1833099679 + } + } + } + }, + { + "Id": { + "id": 43218597719072 + }, + "Name": "SC-Node(GetObject)", + "Components": { + "Component_[16208640162035618090]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 16208640162035618090, + "Slots": [ + { + "id": { + "m_id": "{3DA0B7C1-F06D-489D-B71E-61AF70D6F83E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Bucket Resource KeyName", + "toolTip": "The resource key name of the bucket in resource mapping config file.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{F3CCFFCC-1206-4817-91C6-AC42CA8D5A70}" + } + }, + { + "id": { + "m_id": "{6DFD6A41-83C0-4F66-894A-81F24E5483B5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Object KeyName", + "toolTip": "The object key.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{41203CA6-2B79-4EBD-A738-18A4E001CD22}" + } + }, + { + "id": { + "m_id": "{FA7CA3E5-73AA-4BC2-B865-4B10FCF37615}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Outfile Name", + "toolTip": "Filename where the content will be saved.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{54D3DD1A-F7A1-4B90-80FF-E83F0C4F3C05}" + } + }, + { + "id": { + "m_id": "{C93A1797-9A7C-4B04-BF26-583058F75A99}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{F3E487A8-9C6E-4774-A6BB-4638AF1E895B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Bucket Resource KeyName" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Object KeyName" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Outfile Name" + } + ], + "methodType": 2, + "methodName": "GetObject", + "className": "AWSScriptBehaviorS3", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSScriptBehaviorS3" + } + } + }, + { + "Id": { + "id": 43235777588256 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[16531379412549504774]": { + "$type": "EBusEventHandler", + "Id": 16531379412549504774, + "Slots": [ + { + "id": { + "m_id": "{A059B37C-D151-4700-9477-060A5EDAB8FD}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{2E2CEF9B-6B52-421D-B6EE-A3BA359E2E50}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{F5C1E1D6-5B8B-4792-959A-20DE4BCA91F5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{0B64327E-FC0C-434A-BB3A-478CC5579389}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{D544DFF1-6A24-4087-82C1-55D2596A066B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{7EC4DFDD-0097-4A33-9978-15E8215EA7E4}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Source", + "toolTip": "ID used to connect on a specific Event address (Type: EntityId)", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{C75FC969-A2BB-478D-A697-68194823E00F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "EntityID", + "DisplayDataType": { + "m_type": 1 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{96132FCD-AE62-4841-9913-86B6FA7F702F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEntityActivated", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{D461D2D9-2F50-4C54-B478-598A65DA146D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "EntityID", + "DisplayDataType": { + "m_type": 1 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{F56C8572-06CA-42A6-BFCF-BF23D93882A1}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnEntityDeactivated", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 1 + }, + "isNullPointer": false, + "$type": "EntityId", + "value": { + "id": 2901262558 + }, + "label": "Source" + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 245425936 + }, + "Value": { + "m_eventName": "OnEntityActivated", + "m_eventId": { + "Value": 245425936 + }, + "m_eventSlotId": { + "m_id": "{96132FCD-AE62-4841-9913-86B6FA7F702F}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{C75FC969-A2BB-478D-A697-68194823E00F}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4273369222 + }, + "Value": { + "m_eventName": "OnEntityDeactivated", + "m_eventId": { + "Value": 4273369222 + }, + "m_eventSlotId": { + "m_id": "{F56C8572-06CA-42A6-BFCF-BF23D93882A1}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{D461D2D9-2F50-4C54-B478-598A65DA146D}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "EntityBus", + "m_busId": { + "Value": 3358774020 + } + } + } + }, + { + "Id": { + "id": 43227187653664 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[17130675518735369413]": { + "$type": "Print", + "Id": 17130675518735369413, + "Slots": [ + { + "id": { + "m_id": "{F20B6702-B739-412A-9FA5-7FE4BBDCD7BA}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{42D58EFD-404D-4C73-A3A0-0CC8FA4E1A9D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "[S3] Get object request is done", + "m_unresolvedString": [ + "[S3] Get object request is done" + ] + } + } + }, + { + "Id": { + "id": 43270137326624 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[17252511747753189875]": { + "$type": "EBusEventHandler", + "Id": 17252511747753189875, + "Slots": [ + { + "id": { + "m_id": "{F1B6F60F-4147-4668-B223-E79476027DF3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{A4278B10-16CF-4D74-AD0B-31341CFDB51A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{2FB99DE6-7735-48B6-A3AE-BF172BE15A44}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{48130C37-5219-4815-8BBF-61024581E76F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E972E432-913D-4B69-AFAC-471AF421DB91}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{22E6A22A-8471-41AC-AAE5-25E4546EA7EB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{0B510179-CCCA-4F39-A4A3-A06358F98949}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnHeadObjectSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{8AC14310-1B94-45CB-9D66-3ACA519A0738}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{88DF506C-3993-4F7E-A7A7-C5E22D403AC3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnHeadObjectError", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{FE344DAB-ADA7-4BC3-95C7-887D8E48FC02}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{F81BAA46-01E0-448F-861A-338FD98BE040}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnGetObjectSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{C5CD70CA-0D7C-4871-9DDA-839F50C2001E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{14D416B3-1A25-4850-BF2B-1B26A0EBFB3D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnGetObjectError", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 1667438543 + }, + "Value": { + "m_eventName": "OnHeadObjectSuccess", + "m_eventId": { + "Value": 1667438543 + }, + "m_eventSlotId": { + "m_id": "{0B510179-CCCA-4F39-A4A3-A06358F98949}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{22E6A22A-8471-41AC-AAE5-25E4546EA7EB}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 3580584090 + }, + "Value": { + "m_eventName": "OnGetObjectSuccess", + "m_eventId": { + "Value": 3580584090 + }, + "m_eventSlotId": { + "m_id": "{F81BAA46-01E0-448F-861A-338FD98BE040}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{FE344DAB-ADA7-4BC3-95C7-887D8E48FC02}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 3753331652 + }, + "Value": { + "m_eventName": "OnGetObjectError", + "m_eventId": { + "Value": 3753331652 + }, + "m_eventSlotId": { + "m_id": "{14D416B3-1A25-4850-BF2B-1B26A0EBFB3D}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{C5CD70CA-0D7C-4871-9DDA-839F50C2001E}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4007236435 + }, + "Value": { + "m_eventName": "OnHeadObjectError", + "m_eventId": { + "Value": 4007236435 + }, + "m_eventSlotId": { + "m_id": "{88DF506C-3993-4F7E-A7A7-C5E22D403AC3}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{8AC14310-1B94-45CB-9D66-3ACA519A0738}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSS3BehaviorNotificationBus", + "m_busId": { + "Value": 1833099679 + } + } + } + }, + { + "Id": { + "id": 43252957457440 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[2501234731758928832]": { + "$type": "Print", + "Id": 2501234731758928832, + "Slots": [ + { + "id": { + "m_id": "{02869715-99BB-4D3C-8F7A-1462CA96731D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{00E106ED-3EEA-4CB5-8112-7CD221D6B5AC}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value", + "toolTip": "Value which replaces instances of {Value} in the resulting string.", + "DisplayDataType": { + "m_type": 5 + }, + "DisplayGroup": { + "Value": 1015031923 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{D9C850A0-2C03-47D1-B9E5-BA78FB24AD8B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Value" + } + ], + "m_format": "[S3] Get object success: {Value}", + "m_arrayBindingMap": [ + { + "Key": 1, + "Value": { + "m_id": "{00E106ED-3EEA-4CB5-8112-7CD221D6B5AC}" + } + } + ], + "m_unresolvedString": [ + "[S3] Get object success: ", + {} + ], + "m_formatSlotMap": { + "Value": { + "m_id": "{00E106ED-3EEA-4CB5-8112-7CD221D6B5AC}" + } + } + } + } + }, + { + "Id": { + "id": 43244367522848 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[5737311846476161362]": { + "$type": "EBusEventHandler", + "Id": 5737311846476161362, + "Slots": [ + { + "id": { + "m_id": "{A2C22B56-F88F-45C3-BB08-2DCA89E0A78C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{242CB789-E4B0-4A58-A1BA-65EE0B383A19}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{3512B770-50F3-450C-B1DE-C834D75D6426}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{CB8CC02E-F39A-49F2-B0D4-AAA79A305E38}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{0B743445-0102-4606-A4C8-37E19FD0E7AD}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{3D2D7D19-C7C1-4C2E-8543-5848C8A69A18}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{4D4EC3D0-FD4C-441C-B154-340A529C8ECB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnHeadObjectSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{CEA17C8D-B5D1-4BFC-A2A5-255E400E0CBB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{6C74517A-866E-49F5-A40F-789824D17513}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnHeadObjectError", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{95CE49C3-4F0A-4965-B5C3-913513569320}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{FDE03B1F-652D-4CDA-A206-31A26CA41AC3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnGetObjectSuccess", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{9B140702-0E62-4F33-A078-552BF9697528}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "String", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{1A667A27-E9D8-44E0-8ACF-EDE596B226FE}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnGetObjectError", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 1667438543 + }, + "Value": { + "m_eventName": "OnHeadObjectSuccess", + "m_eventId": { + "Value": 1667438543 + }, + "m_eventSlotId": { + "m_id": "{4D4EC3D0-FD4C-441C-B154-340A529C8ECB}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{3D2D7D19-C7C1-4C2E-8543-5848C8A69A18}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 3580584090 + }, + "Value": { + "m_eventName": "OnGetObjectSuccess", + "m_eventId": { + "Value": 3580584090 + }, + "m_eventSlotId": { + "m_id": "{FDE03B1F-652D-4CDA-A206-31A26CA41AC3}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{95CE49C3-4F0A-4965-B5C3-913513569320}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 3753331652 + }, + "Value": { + "m_eventName": "OnGetObjectError", + "m_eventId": { + "Value": 3753331652 + }, + "m_eventSlotId": { + "m_id": "{1A667A27-E9D8-44E0-8ACF-EDE596B226FE}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{9B140702-0E62-4F33-A078-552BF9697528}" + } + ], + "m_numExpectedArguments": 1 + } + }, + { + "Key": { + "Value": 4007236435 + }, + "Value": { + "m_eventName": "OnHeadObjectError", + "m_eventId": { + "Value": 4007236435 + }, + "m_eventSlotId": { + "m_id": "{6C74517A-866E-49F5-A40F-789824D17513}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{CEA17C8D-B5D1-4BFC-A2A5-255E400E0CBB}" + } + ], + "m_numExpectedArguments": 1 + } + } + ], + "m_ebusName": "AWSS3BehaviorNotificationBus", + "m_busId": { + "Value": 1833099679 + } + } + } + }, + { + "Id": { + "id": 43265842359328 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[6038075997199437353]": { + "$type": "Print", + "Id": 6038075997199437353, + "Slots": [ + { + "id": { + "m_id": "{47658951-971E-411F-9E31-B960D7F48DC8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{849AEBCF-3D93-486A-8A21-3461F96CBFAF}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value", + "toolTip": "Value which replaces instances of {Value} in the resulting string.", + "DisplayDataType": { + "m_type": 5 + }, + "DisplayGroup": { + "Value": 1015031923 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{7B689681-8F86-4DD4-A271-9F1343C85751}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Value" + } + ], + "m_format": "[S3] Head object error: {Value}", + "m_arrayBindingMap": [ + { + "Key": 1, + "Value": { + "m_id": "{849AEBCF-3D93-486A-8A21-3461F96CBFAF}" + } + } + ], + "m_unresolvedString": [ + "[S3] Head object error: ", + {} + ], + "m_formatSlotMap": { + "Value": { + "m_id": "{849AEBCF-3D93-486A-8A21-3461F96CBFAF}" + } + } + } + } + }, + { + "Id": { + "id": 43274432293920 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[7524644815559451168]": { + "$type": "Print", + "Id": 7524644815559451168, + "Slots": [ + { + "id": { + "m_id": "{230376C6-C66E-4820-806D-7DFD860B3E4E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{9D4AD3B1-5346-46BF-B41A-1E8DB0CFCEC0}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value", + "toolTip": "Value which replaces instances of {Value} in the resulting string.", + "DisplayDataType": { + "m_type": 5 + }, + "DisplayGroup": { + "Value": 1015031923 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{25ED2874-445E-4A51-A67C-918642660FE6}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Value" + } + ], + "m_format": "[S3] Head object success: {Value}", + "m_arrayBindingMap": [ + { + "Key": 1, + "Value": { + "m_id": "{9D4AD3B1-5346-46BF-B41A-1E8DB0CFCEC0}" + } + } + ], + "m_unresolvedString": [ + "[S3] Head object success: ", + {} + ], + "m_formatSlotMap": { + "Value": { + "m_id": "{9D4AD3B1-5346-46BF-B41A-1E8DB0CFCEC0}" + } + } + } + } + }, + { + "Id": { + "id": 43248662490144 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[8569132577613124023]": { + "$type": "Print", + "Id": 8569132577613124023, + "Slots": [ + { + "id": { + "m_id": "{8D6415DA-B0B8-49F1-885A-B95F974BF918}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{2AF01FCE-39ED-4EF8-96EF-ABB1210CB96A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "m_format": "[S3] Head object request is done", + "m_unresolvedString": [ + "[S3] Head object request is done" + ] + } + } + }, + { + "Id": { + "id": 43261547392032 + }, + "Name": "SC-Node(Print)", + "Components": { + "Component_[9427570285251689352]": { + "$type": "Print", + "Id": 9427570285251689352, + "Slots": [ + { + "id": { + "m_id": "{472018A5-91A3-420B-9A53-8C6C3BDB3B9A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{63318564-6CBD-48A0-A716-7EE608D79B9D}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value", + "toolTip": "Value which replaces instances of {Value} in the resulting string.", + "DisplayDataType": { + "m_type": 5 + }, + "DisplayGroup": { + "Value": 1015031923 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{308C5FF1-B80E-40E1-A532-D29B9BFCD19A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Value" + } + ], + "m_format": "[S3] Get object error: {Value}", + "m_arrayBindingMap": [ + { + "Key": 1, + "Value": { + "m_id": "{63318564-6CBD-48A0-A716-7EE608D79B9D}" + } + } + ], + "m_unresolvedString": [ + "[S3] Get object error: ", + {} + ], + "m_formatSlotMap": { + "Value": { + "m_id": "{63318564-6CBD-48A0-A716-7EE608D79B9D}" + } + } + } + } + }, + { + "Id": { + "id": 43240072555552 + }, + "Name": "SC-Node(ReloadConfigFile)", + "Components": { + "Component_[9465828106765719444]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 9465828106765719444, + "Slots": [ + { + "id": { + "m_id": "{9DB59CFA-EB53-4A27-BA02-C0449B9D4E85}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Is Reloading Config FileName", + "toolTip": "Whether reload resource mapping config file name from AWS core configuration settings registry file.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{DEE8C121-E96B-440D-A2DE-9BD38D2BED44}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{5B7C73DF-E637-4E11-A0A4-683B5A0DDC19}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 0 + }, + "isNullPointer": false, + "$type": "bool", + "value": true, + "label": "Is Reloading Config FileName" + } + ], + "methodType": 0, + "methodName": "ReloadConfigFile", + "className": "AWSResourceMappingRequestBus", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "AWSResourceMappingRequestBus" + } + } + } + ], + "m_connections": [ + { + "Id": { + "id": 43278727261216 + }, + "Name": "srcEndpoint=(AWSS3BehaviorNotificationBus Handler: String), destEndpoint=(Print: Value)", + "Components": { + "Component_[10778518234367908860]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 10778518234367908860, + "sourceEndpoint": { + "nodeId": { + "id": 43270137326624 + }, + "slotId": { + "m_id": "{8AC14310-1B94-45CB-9D66-3ACA519A0738}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43265842359328 + }, + "slotId": { + "m_id": "{849AEBCF-3D93-486A-8A21-3461F96CBFAF}" + } + } + } + } + }, + { + "Id": { + "id": 43283022228512 + }, + "Name": "srcEndpoint=(AWSS3BehaviorNotificationBus Handler: ExecutionSlot:OnHeadObjectError), destEndpoint=(Print: In)", + "Components": { + "Component_[7890841757728312462]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 7890841757728312462, + "sourceEndpoint": { + "nodeId": { + "id": 43270137326624 + }, + "slotId": { + "m_id": "{88DF506C-3993-4F7E-A7A7-C5E22D403AC3}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43265842359328 + }, + "slotId": { + "m_id": "{47658951-971E-411F-9E31-B960D7F48DC8}" + } + } + } + } + }, + { + "Id": { + "id": 43287317195808 + }, + "Name": "srcEndpoint=(AWSS3BehaviorNotificationBus Handler: String), destEndpoint=(Print: Value)", + "Components": { + "Component_[6865970583966228885]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 6865970583966228885, + "sourceEndpoint": { + "nodeId": { + "id": 43222892686368 + }, + "slotId": { + "m_id": "{287A31DA-DB54-4C44-A88A-46B05D8C7410}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43274432293920 + }, + "slotId": { + "m_id": "{9D4AD3B1-5346-46BF-B41A-1E8DB0CFCEC0}" + } + } + } + } + }, + { + "Id": { + "id": 43291612163104 + }, + "Name": "srcEndpoint=(AWSS3BehaviorNotificationBus Handler: ExecutionSlot:OnHeadObjectSuccess), destEndpoint=(Print: In)", + "Components": { + "Component_[15391746362756122553]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 15391746362756122553, + "sourceEndpoint": { + "nodeId": { + "id": 43222892686368 + }, + "slotId": { + "m_id": "{113A79E3-0BB3-49A4-B131-4B4CB28B53E0}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43274432293920 + }, + "slotId": { + "m_id": "{230376C6-C66E-4820-806D-7DFD860B3E4E}" + } + } + } + } + }, + { + "Id": { + "id": 43295907130400 + }, + "Name": "srcEndpoint=(AWSS3BehaviorNotificationBus Handler: String), destEndpoint=(Print: Value)", + "Components": { + "Component_[10039585713229296427]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 10039585713229296427, + "sourceEndpoint": { + "nodeId": { + "id": 43244367522848 + }, + "slotId": { + "m_id": "{9B140702-0E62-4F33-A078-552BF9697528}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43261547392032 + }, + "slotId": { + "m_id": "{63318564-6CBD-48A0-A716-7EE608D79B9D}" + } + } + } + } + }, + { + "Id": { + "id": 43300202097696 + }, + "Name": "srcEndpoint=(AWSS3BehaviorNotificationBus Handler: ExecutionSlot:OnGetObjectError), destEndpoint=(Print: In)", + "Components": { + "Component_[8537998926774803273]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 8537998926774803273, + "sourceEndpoint": { + "nodeId": { + "id": 43244367522848 + }, + "slotId": { + "m_id": "{1A667A27-E9D8-44E0-8ACF-EDE596B226FE}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43261547392032 + }, + "slotId": { + "m_id": "{472018A5-91A3-420B-9A53-8C6C3BDB3B9A}" + } + } + } + } + }, + { + "Id": { + "id": 43304497064992 + }, + "Name": "srcEndpoint=(AWSS3BehaviorNotificationBus Handler: String), destEndpoint=(Print: Value)", + "Components": { + "Component_[7088318236002637260]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 7088318236002637260, + "sourceEndpoint": { + "nodeId": { + "id": 43257252424736 + }, + "slotId": { + "m_id": "{3155816E-2FB1-4C8A-918C-40D4A5F91B49}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43252957457440 + }, + "slotId": { + "m_id": "{00E106ED-3EEA-4CB5-8112-7CD221D6B5AC}" + } + } + } + } + }, + { + "Id": { + "id": 43308792032288 + }, + "Name": "srcEndpoint=(AWSS3BehaviorNotificationBus Handler: ExecutionSlot:OnGetObjectSuccess), destEndpoint=(Print: In)", + "Components": { + "Component_[6349865987641866384]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 6349865987641866384, + "sourceEndpoint": { + "nodeId": { + "id": 43257252424736 + }, + "slotId": { + "m_id": "{A02F140B-1EDA-4E15-AFAC-CB319F84CA9C}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43252957457440 + }, + "slotId": { + "m_id": "{02869715-99BB-4D3C-8F7A-1462CA96731D}" + } + } + } + } + }, + { + "Id": { + "id": 43313086999584 + }, + "Name": "srcEndpoint=(ReloadConfigFile: Out), destEndpoint=(HeadObject: In)", + "Components": { + "Component_[755160556781400310]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 755160556781400310, + "sourceEndpoint": { + "nodeId": { + "id": 43240072555552 + }, + "slotId": { + "m_id": "{5B7C73DF-E637-4E11-A0A4-683B5A0DDC19}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43231482620960 + }, + "slotId": { + "m_id": "{1042005D-18F7-4B53-9546-2ACCDCCCC9E5}" + } + } + } + } + }, + { + "Id": { + "id": 43317381966880 + }, + "Name": "srcEndpoint=(HeadObject: Out), destEndpoint=(Print: In)", + "Components": { + "Component_[17407727815180487561]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 17407727815180487561, + "sourceEndpoint": { + "nodeId": { + "id": 43231482620960 + }, + "slotId": { + "m_id": "{6C587F91-F656-4ADC-B03B-88B137B12BDF}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43248662490144 + }, + "slotId": { + "m_id": "{8D6415DA-B0B8-49F1-885A-B95F974BF918}" + } + } + } + } + }, + { + "Id": { + "id": 43321676934176 + }, + "Name": "srcEndpoint=(Print: Out), destEndpoint=(GetObject: In)", + "Components": { + "Component_[8583709945803435033]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 8583709945803435033, + "sourceEndpoint": { + "nodeId": { + "id": 43274432293920 + }, + "slotId": { + "m_id": "{25ED2874-445E-4A51-A67C-918642660FE6}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43218597719072 + }, + "slotId": { + "m_id": "{C93A1797-9A7C-4B04-BF26-583058F75A99}" + } + } + } + } + }, + { + "Id": { + "id": 43325971901472 + }, + "Name": "srcEndpoint=(GetObject: Out), destEndpoint=(Print: In)", + "Components": { + "Component_[3235938356873265601]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 3235938356873265601, + "sourceEndpoint": { + "nodeId": { + "id": 43218597719072 + }, + "slotId": { + "m_id": "{F3E487A8-9C6E-4774-A6BB-4638AF1E895B}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43227187653664 + }, + "slotId": { + "m_id": "{F20B6702-B739-412A-9FA5-7FE4BBDCD7BA}" + } + } + } + } + }, + { + "Id": { + "id": 43330266868768 + }, + "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(ReloadConfigFile: In)", + "Components": { + "Component_[1671079381113308163]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 1671079381113308163, + "sourceEndpoint": { + "nodeId": { + "id": 43235777588256 + }, + "slotId": { + "m_id": "{96132FCD-AE62-4841-9913-86B6FA7F702F}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 43240072555552 + }, + "slotId": { + "m_id": "{DEE8C121-E96B-440D-A2DE-9BD38D2BED44}" + } + } + } + } + } + ] + }, + "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}", + "versionData": { + "_grammarVersion": 1, + "_runtimeVersion": 1 + }, + "m_variableCounter": 1, + "GraphCanvasData": [ + { + "Key": { + "id": 43214302751776 + }, + "Value": { + "ComponentData": { + "{5F84B500-8C45-40D1-8EFC-A5306B241444}": { + "$type": "SceneComponentSaveData", + "ViewParams": { + "Scale": 1.2767297, + "AnchorX": -135.50244140625, + "AnchorY": 99.47289276123047 + } + } + } + } + }, + { + "Key": { + "id": 43218597719072 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 620.0, + 700.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{BB84AD11-429D-471E-BE7B-2931F9C332D5}" + } + } + } + }, + { + "Key": { + "id": 43222892686368 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 0.0, + 680.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 1667438543 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{EF2D56C8-CFAA-41F0-9C07-8CE818D86AA1}" + } + } + } + }, + { + "Key": { + "id": 43227187653664 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1060.0, + 700.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{06BFB417-3B96-40F3-9D42-21AB0293D4DA}" + } + } + } + }, + { + "Key": { + "id": 43231482620960 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 480.0, + 140.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{740DBD99-C319-404C-A3D7-450E64613B73}" + } + } + } + }, + { + "Key": { + "id": 43235777588256 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -140.0, + 60.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 245425936 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{93CC9E2D-86CD-4FB5-95E4-961F6ABF9B39}" + } + } + } + }, + { + "Key": { + "id": 43240072555552 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MethodNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 180.0, + 140.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData", + "SubStyle": ".method" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{CD3D6D5F-F274-4592-A15D-01422CA3EBE7}" + } + } + } + }, + { + "Key": { + "id": 43244367522848 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 0.0, + 980.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 3753331652 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{DCBCA7D8-58C9-4C2C-8BF8-04EFD44F0988}" + } + } + } + }, + { + "Key": { + "id": 43248662490144 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 920.0, + 140.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{FE6ECEDF-A83B-4A89-A8DB-2166A3C8319E}" + } + } + } + }, + { + "Key": { + "id": 43252957457440 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 980.0, + 1000.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{F441C1CA-A02D-45D0-BB4F-D32F5B797464}" + } + } + } + }, + { + "Key": { + "id": 43257252424736 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 640.0, + 980.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 3580584090 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{5B28E54D-DC62-4358-9DA6-EA8B9CE006F9}" + } + } + } + }, + { + "Key": { + "id": 43261547392032 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 320.0, + 1000.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{EEDD65F5-EF45-458F-BF74-751F981F726B}" + } + } + } + }, + { + "Key": { + "id": 43265842359328 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 320.0, + 380.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{251706A4-3954-4D6D-A2BA-E69653339775}" + } + } + } + }, + { + "Key": { + "id": 43270137326624 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 0.0, + 340.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "EventIds": [ + { + "Value": 4007236435 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{BBAC49E9-7973-4856-8679-3062BDC02E15}" + } + } + } + }, + { + "Key": { + "id": 43274432293920 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "StringNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 320.0, + 700.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{6F86C19E-C1CB-48E9-A07E-E5530C0EB249}" + } + } + } + } + ], + "StatisticsHelper": { + "InstanceCounter": [ + { + "Key": 150571302584609517, + "Value": 1 + }, + { + "Key": 2868561716899956608, + "Value": 1 + }, + { + "Key": 5842116761103598202, + "Value": 1 + }, + { + "Key": 5842117502542734531, + "Value": 1 + }, + { + "Key": 5842117502822853940, + "Value": 1 + }, + { + "Key": 5842117516270952429, + "Value": 1 + }, + { + "Key": 5842117517645097144, + "Value": 1 + }, + { + "Key": 10684225535275896474, + "Value": 6 + }, + { + "Key": 13774516555319876501, + "Value": 1 + } + ] + } + } + } + } + } +} \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index bd02eeb7ff..7a668af6a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -64,14 +64,13 @@ include(cmake/Projects.cmake) if(NOT INSTALLED_ENGINE) # Add the rest of the targets + add_subdirectory(Assets) add_subdirectory(Code) + add_subdirectory(python) + add_subdirectory(Registry) add_subdirectory(scripts) - - # SPEC-1417 will investigate and fix this - if(NOT PAL_PLATFORM_NAME STREQUAL "Mac") - add_subdirectory(Tools/LyTestTools/tests/) - add_subdirectory(Tools/RemoteConsole/ly_remote_console/tests/) - endif() + add_subdirectory(Templates) + add_subdirectory(Tools) # Add external subdirectories listed in the engine.json. LY_EXTERNAL_SUBDIRS is a cache variable so the user can add extra # external subdirectories diff --git a/Code/Editor/ActionManager.cpp b/Code/Editor/ActionManager.cpp index 390dbbc1bd..ff74a2c208 100644 --- a/Code/Editor/ActionManager.cpp +++ b/Code/Editor/ActionManager.cpp @@ -326,6 +326,7 @@ ActionManager::MenuWrapper ActionManager::FindMenu(const QString& menuId) return *menuIt; } + AZ_UNUSED(menuId); // Prevent unused warning in release builds AZ_Warning("ActionManager", false, "Did not find menu with menuId %s", menuId.toUtf8().data()); return nullptr; }(); diff --git a/Code/Editor/AnimationContext.cpp b/Code/Editor/AnimationContext.cpp index 6e146faacb..fce1150878 100644 --- a/Code/Editor/AnimationContext.cpp +++ b/Code/Editor/AnimationContext.cpp @@ -628,7 +628,7 @@ void CAnimationContext::GoToFrameCmd(IConsoleCmdArgs* pArgs) float targetFrame = (float)atof(pArgs->GetArg(1)); if (pSeq->GetTimeRange().start > targetFrame || targetFrame > pSeq->GetTimeRange().end) { - gEnv->pLog->LogError("GoToFrame: requested time %f is outside the range of sequence %s (%f, %f)", targetFrame, pSeq->GetName(), pSeq->GetTimeRange().start, pSeq->GetTimeRange().end); + gEnv->pLog->LogError("GoToFrame: requested time %f is outside the range of sequence %s (%f, %f)", targetFrame, pSeq->GetName().c_str(), pSeq->GetTimeRange().start, pSeq->GetTimeRange().end); return; } GetIEditor()->GetAnimation()->m_currTime = targetFrame; diff --git a/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp b/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp index b164323238..1c2be16a3d 100644 --- a/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp +++ b/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp @@ -327,7 +327,7 @@ void AzAssetBrowserRequestHandler::AddContextMenuActions(QWidget* caller, QMenu* if (!vetoOpenerFound) { // if we found no valid openers and no veto openers then just allow it to be opened with the operating system itself. - menu->addAction(QObject::tr("Open with associated application..."), [this, fullFilePath]() + menu->addAction(QObject::tr("Open with associated application..."), [fullFilePath]() { OpenWithOS(fullFilePath); }); diff --git a/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp b/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp index c54fe60c4d..18946c7874 100644 --- a/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp +++ b/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp @@ -90,6 +90,7 @@ AzAssetBrowserWindow::AzAssetBrowserWindow(QWidget* parent) m_tableModel->setFilterRole(Qt::DisplayRole); m_tableModel->setSourceModel(m_filterModel.data()); + m_tableModel->setDynamicSortFilter(true); m_ui->m_assetBrowserTableViewWidget->setModel(m_tableModel.data()); connect( diff --git a/Code/Editor/CMakeLists.txt b/Code/Editor/CMakeLists.txt index 9256fd041f..5158ebc6d5 100644 --- a/Code/Editor/CMakeLists.txt +++ b/Code/Editor/CMakeLists.txt @@ -174,6 +174,8 @@ ly_add_target( Legacy::EditorLib ProjectManager ) + +ly_set_gem_variant_to_load(TARGETS Editor VARIANTS Tools) set_property(SOURCE CryEdit.cpp APPEND PROPERTY diff --git a/Code/Editor/Controls/ColorGradientCtrl.h b/Code/Editor/Controls/ColorGradientCtrl.h index 80d8b966f4..a3f95fcd8c 100644 --- a/Code/Editor/Controls/ColorGradientCtrl.h +++ b/Code/Editor/Controls/ColorGradientCtrl.h @@ -130,7 +130,6 @@ private: private: ISplineInterpolator* m_pSpline; - bool m_bAutoDelete; bool m_bNoZoom; QRect m_rcClipRect; diff --git a/Code/Editor/Controls/ConsoleSCB.cpp b/Code/Editor/Controls/ConsoleSCB.cpp index dbe7ba3472..6b12348880 100644 --- a/Code/Editor/Controls/ConsoleSCB.cpp +++ b/Code/Editor/Controls/ConsoleSCB.cpp @@ -298,7 +298,6 @@ Lines CConsoleSCB::s_pendingLines; CConsoleSCB::CConsoleSCB(QWidget* parent) : QWidget(parent) , ui(new Ui::Console()) - , m_richEditTextLength(0) , m_backgroundTheme(gSettings.consoleBackgroundColorTheme) { m_lines = s_pendingLines; @@ -574,6 +573,10 @@ static CVarBlock* VarBlockFromConsoleVars() IVariable* pVariable = nullptr; for (int i = 0; i < cmdCount; i++) { + if (!cmds[i].data()) + { + continue; + } ICVar* pCVar = console->GetCVar(cmds[i].data()); if (!pCVar) { diff --git a/Code/Editor/Controls/ConsoleSCB.h b/Code/Editor/Controls/ConsoleSCB.h index f51786e2a5..051f3ea4e7 100644 --- a/Code/Editor/Controls/ConsoleSCB.h +++ b/Code/Editor/Controls/ConsoleSCB.h @@ -191,7 +191,6 @@ private: void OnEditorNotifyEvent(EEditorNotifyEvent event) override; QScopedPointer ui; - int m_richEditTextLength; Lines m_lines; static Lines s_pendingLines; diff --git a/Code/Editor/Controls/ImageHistogramCtrl.cpp b/Code/Editor/Controls/ImageHistogramCtrl.cpp index 252bf4f09b..bdb81e3655 100644 --- a/Code/Editor/Controls/ImageHistogramCtrl.cpp +++ b/Code/Editor/Controls/ImageHistogramCtrl.cpp @@ -30,12 +30,6 @@ namespace ImageHistogram const QColor kGreenSectionColor = QColor(220, 255, 220); const QColor kBlueSectionColor = QColor(220, 220, 255); const QColor kSplitSeparatorColor = QColor(100, 100, 0); - const QColor kButtonBackColor = QColor(20, 20, 20); - const QColor kBtnLightColor(200, 200, 200); - const QColor kBtnShadowColor(50, 50, 50); - const int kButtonWidth = 40; - const QColor kButtonTextColor(255, 255, 0); - const int kTextLeftSpacing = 4; const int kTextFontSize = 70; const char* kTextFontFace = "Arial"; const QColor kTextColor(255, 255, 255); @@ -194,7 +188,7 @@ void CImageHistogramDisplay::paintEvent([[maybe_unused]] QPaintEvent* event) float scale = 0; i = static_cast(((float)x / graphWidth) * (kNumColorLevels - 1)); - i = CLAMP(i, 0, kNumColorLevels - 1); + i = AZStd::clamp(i, 0, kNumColorLevels - 1); switch (m_drawMode) { @@ -259,7 +253,7 @@ void CImageHistogramDisplay::paintEvent([[maybe_unused]] QPaintEvent* event) for (size_t x = 0, xCount = abs(rcGraph.width()); x < xCount; ++x) { i = static_cast(((float)x / graphWidth) * (kNumColorLevels - 1)); - i = CLAMP(i, 0, kNumColorLevels - 1); + i = AZStd::clamp(i, 0, kNumColorLevels - 1); crtX = static_cast(rcGraph.left() + x + 1); scaleR = scaleG = scaleB = scaleA = 0; @@ -351,7 +345,7 @@ void CImageHistogramDisplay::paintEvent([[maybe_unused]] QPaintEvent* event) { pos = (float)x / graphWidth; i = static_cast((float)((int)(pos * kNumColorLevels) % aThirdOfNumColorLevels) / aThirdOfNumColorLevels * kNumColorLevels); - i = CLAMP(i, 0, kNumColorLevels - 1); + i = AZStd::clamp(i, 0, kNumColorLevels - 1); scale = 0; // R diff --git a/Code/Editor/Controls/SplineCtrl.cpp b/Code/Editor/Controls/SplineCtrl.cpp index 80d30b37ad..73264274b7 100644 --- a/Code/Editor/Controls/SplineCtrl.cpp +++ b/Code/Editor/Controls/SplineCtrl.cpp @@ -101,7 +101,7 @@ void CSplineCtrl::PointToTimeValue(const QPoint& point, float& time, float& valu { time = XOfsToTime(point.x()); float t = float(m_rcSpline.bottom() - point.y()) / m_rcSpline.height(); - value = LERP(m_fMinValue, m_fMaxValue, t); + value = AZ::Lerp(m_fMinValue, m_fMaxValue, t); } ////////////////////////////////////////////////////////////////////////// @@ -109,7 +109,7 @@ float CSplineCtrl::XOfsToTime(int x) { // m_fMinTime to m_fMaxTime time range. float t = float(x - m_rcSpline.left()) / m_rcSpline.width(); - return LERP(m_fMinTime, m_fMaxTime, t); + return AZ::Lerp(m_fMinTime, m_fMaxTime, t); } ////////////////////////////////////////////////////////////////////////// @@ -123,8 +123,6 @@ void CSplineCtrl::paintEvent(QPaintEvent* event) { QPainter painter(this); - QRect rcClient = rect(); - if (m_pSpline) { m_bSelectedKeys.resize(m_pSpline->GetKeyCount()); diff --git a/Code/Editor/Controls/SplineCtrlEx.cpp b/Code/Editor/Controls/SplineCtrlEx.cpp index f299ce185d..9e0a954c79 100644 --- a/Code/Editor/Controls/SplineCtrlEx.cpp +++ b/Code/Editor/Controls/SplineCtrlEx.cpp @@ -819,8 +819,6 @@ void SplineWidget::DrawSpline(QPainter* painter, SSplineInfo& splineInfo, float { const QPen pOldPen = painter->pen(); - const QRect rcClip = painter->clipBoundingRect().intersected(m_rcSpline).toRect(); - ////////////////////////////////////////////////////////////////////////// ISplineInterpolator* pSpline = splineInfo.pSpline; ISplineInterpolator* pDetailSpline = splineInfo.pDetailSpline; diff --git a/Code/Editor/Controls/TimelineCtrl.cpp b/Code/Editor/Controls/TimelineCtrl.cpp index 8159084784..aa30c326ac 100644 --- a/Code/Editor/Controls/TimelineCtrl.cpp +++ b/Code/Editor/Controls/TimelineCtrl.cpp @@ -18,11 +18,6 @@ #include "ScopedVariableSetter.h" #include "GridUtils.h" - -static const QColor timeMarkerCol = QColor(255, 0, 255); -static const QColor textCol = QColor(0, 0, 0); -static const QColor ltgrayCol = QColor(110, 110, 110); - QColor InterpolateColor(const QColor& c1, const QColor& c2, float fraction) { const int r = static_cast(static_cast(c2.red() - c1.red()) * fraction + c1.red()); diff --git a/Code/Editor/Controls/TimelineCtrl.h b/Code/Editor/Controls/TimelineCtrl.h index 015704460a..f87bdf3410 100644 --- a/Code/Editor/Controls/TimelineCtrl.h +++ b/Code/Editor/Controls/TimelineCtrl.h @@ -136,7 +136,6 @@ protected: void DrawFrameTicks(QPainter* dc); private: - bool m_bAutoDelete; QRect m_rcClient; QRect m_rcTimeline; float m_fTimeMarker; diff --git a/Code/Editor/Controls/WndGridHelper.h b/Code/Editor/Controls/WndGridHelper.h index 158ffca508..e983c69192 100644 --- a/Code/Editor/Controls/WndGridHelper.h +++ b/Code/Editor/Controls/WndGridHelper.h @@ -14,6 +14,7 @@ #include #include #include "Cry_Vector2.h" +#include ////////////////////////////////////////////////////////////////////////// class CWndGridHelper @@ -81,8 +82,6 @@ public: newzoom.y = 0.01f; } - Vec2 prevz = zoom; - // Zoom to mouse position. float ofsx = origin.x; float ofsy = origin.y; diff --git a/Code/Editor/Core/LevelEditorMenuHandler.cpp b/Code/Editor/Core/LevelEditorMenuHandler.cpp index 3724993604..e568f05167 100644 --- a/Code/Editor/Core/LevelEditorMenuHandler.cpp +++ b/Code/Editor/Core/LevelEditorMenuHandler.cpp @@ -41,8 +41,6 @@ using namespace AZ; using namespace AzToolsFramework; static const char* const s_LUAEditorName = "Lua Editor"; -static const char* const s_shortTimeInterval = "debug"; -static const char* const s_assetImporterMetricsIdentifier = "AssetImporter"; // top level menu ids static const char* const s_fileMenuId = "FileMenu"; @@ -50,7 +48,6 @@ static const char* const s_editMenuId = "EditMenu"; static const char* const s_gameMenuId = "GameMenu"; static const char* const s_toolMenuId = "ToolMenu"; static const char* const s_viewMenuId = "ViewMenu"; -static const char* const s_awsMenuId = "AwsMenu"; static const char* const s_helpMenuId = "HelpMenu"; static bool CompareLayoutNames(const QString& name1, const QString& name2) @@ -157,13 +154,11 @@ namespace } } -LevelEditorMenuHandler::LevelEditorMenuHandler( - MainWindow* mainWindow, QtViewPaneManager* const viewPaneManager, QSettings& settings) +LevelEditorMenuHandler::LevelEditorMenuHandler(MainWindow* mainWindow, QtViewPaneManager* const viewPaneManager) : QObject(mainWindow) , m_mainWindow(mainWindow) , m_viewPaneManager(viewPaneManager) , m_actionManager(mainWindow->GetActionManager()) - , m_settings(settings) { #if defined(AZ_PLATFORM_MAC) // Hide the non-native toolbar, then setNativeMenuBar to ensure it is always visible on macOS. diff --git a/Code/Editor/Core/LevelEditorMenuHandler.h b/Code/Editor/Core/LevelEditorMenuHandler.h index 4cf1569c59..5ac8e63786 100644 --- a/Code/Editor/Core/LevelEditorMenuHandler.h +++ b/Code/Editor/Core/LevelEditorMenuHandler.h @@ -33,7 +33,7 @@ class LevelEditorMenuHandler { Q_OBJECT public: - LevelEditorMenuHandler(MainWindow* mainWindow, QtViewPaneManager* const viewPaneManager, QSettings& settings); + LevelEditorMenuHandler(MainWindow* mainWindow, QtViewPaneManager* const viewPaneManager); ~LevelEditorMenuHandler(); void Initialize(); @@ -106,7 +106,6 @@ private: ActionManager::MenuWrapper m_toolsMenu; QMenu* m_mostRecentLevelsMenu = nullptr; - QMenu* m_mostRecentProjectsMenu = nullptr; QMenu* m_editmenu = nullptr; ActionManager::MenuWrapper m_viewPanesMenu; @@ -117,7 +116,6 @@ private: int m_viewPaneVersion = 0; QList m_topLevelMenus; - QSettings& m_settings; }; #endif // LEVELEDITORMENUHANDLER_H diff --git a/Code/Editor/Core/QtEditorApplication.cpp b/Code/Editor/Core/QtEditorApplication.cpp index dd784ce10d..a4aab24be4 100644 --- a/Code/Editor/Core/QtEditorApplication.cpp +++ b/Code/Editor/Core/QtEditorApplication.cpp @@ -425,7 +425,7 @@ namespace Editor AZStd::array rawInputBytesArray; LPBYTE rawInputBytes = rawInputBytesArray.data(); - const UINT bytesCopied = GetRawInputData((HRAWINPUT)msg->lParam, RID_INPUT, rawInputBytes, &rawInputSize, rawInputHeaderSize); + [[maybe_unused]] const UINT bytesCopied = GetRawInputData((HRAWINPUT)msg->lParam, RID_INPUT, rawInputBytes, &rawInputSize, rawInputHeaderSize); CRY_ASSERT(bytesCopied == rawInputSize); RAWINPUT* rawInput = (RAWINPUT*)rawInputBytes; diff --git a/Code/Editor/CryEdit.cpp b/Code/Editor/CryEdit.cpp index 2e738a18c5..5c0938216a 100644 --- a/Code/Editor/CryEdit.cpp +++ b/Code/Editor/CryEdit.cpp @@ -79,7 +79,6 @@ AZ_POP_DISABLE_WARNING // CryCommon #include -#include #include // Editor @@ -449,13 +448,6 @@ void CCryEditApp::RegisterActionHandlers() ON_COMMAND(ID_OPEN_TRACKVIEW, OnOpenTrackView) ON_COMMAND(ID_OPEN_UICANVASEDITOR, OnOpenUICanvasEditor) -#if defined(AZ_TOOLS_EXPAND_FOR_RESTRICTED_PLATFORMS) -#define AZ_RESTRICTED_PLATFORM_EXPANSION(CodeName, CODENAME, codename, PrivateName, PRIVATENAME, privatename, PublicName, PUBLICNAME, publicname, PublicAuxName1, PublicAuxName2, PublicAuxName3)\ - ON_COMMAND_RANGE(ID_GAME_##CODENAME##_ENABLELOWSPEC, ID_GAME_##CODENAME##_ENABLEHIGHSPEC, OnChangeGameSpec) - AZ_TOOLS_EXPAND_FOR_RESTRICTED_PLATFORMS -#undef AZ_RESTRICTED_PLATFORM_EXPANSION -#endif - ON_COMMAND(ID_OPEN_QUICK_ACCESS_BAR, OnOpenQuickAccessBar) ON_COMMAND(ID_FILE_SAVE_LEVEL, OnFileSave) @@ -560,7 +552,9 @@ public: { "NSDocumentRevisionsDebugMode", nsDocumentRevisionsDebugMode}, { "skipWelcomeScreenDialog", m_bSkipWelcomeScreenDialog}, { "autotest_mode", m_bAutotestMode}, - { "regdumpall", dummy } + { "regdumpall", dummy }, + { "attach-debugger", dummy }, // Attaches a debugger for the current application + { "wait-for-debugger", dummy }, // Waits until a debugger is attached to the current application }; QString dummyString; @@ -2315,7 +2309,7 @@ int CCryEditApp::IdleProcessing(bool bBackgroundUpdate) int res = 0; if (bIsAppWindow || m_bForceProcessIdle || m_bKeepEditorActive // Automated tests must always keep the editor active, or they can get stuck - || m_bAutotestMode) + || m_bAutotestMode || m_bRunPythonTestScript) { res = 1; bActive = true; @@ -3965,11 +3959,19 @@ void CCryEditApp::OpenLUAEditor(const char* files) AZStd::string_view exePath; AZ::ComponentApplicationBus::BroadcastResult(exePath, &AZ::ComponentApplicationRequests::GetExecutableFolder); - AZStd::string process = AZStd::string::format("\"%.*s" AZ_CORRECT_FILESYSTEM_SEPARATOR_STRING "LuaIDE" +#if defined(AZ_PLATFORM_LINUX) + // On Linux platforms, launching a process is not done through a shell and its arguments are passed in + // separately. There is no need to wrap the process path in case of spaces in the path + constexpr const char* argumentQuoteString = ""; +#else + constexpr const char* argumentQuoteString = "\""; +#endif + + AZStd::string process = AZStd::string::format("%s%.*s" AZ_CORRECT_FILESYSTEM_SEPARATOR_STRING "LuaIDE" #if defined(AZ_PLATFORM_WINDOWS) ".exe" #endif - "\"", aznumeric_cast(exePath.size()), exePath.data()); + "%s", argumentQuoteString, aznumeric_cast(exePath.size()), exePath.data(), argumentQuoteString); AZStd::string processArgs = AZStd::string::format("%s -engine-path \"%s\"", args.c_str(), engineRoot); StartProcessDetached(process.c_str(), processArgs.c_str()); @@ -4066,6 +4068,19 @@ extern "C" int AZ_DLL_EXPORT CryEditMain(int argc, char* argv[]) { CryAllocatorsRAII cryAllocatorsRAII; + // Debugging utilities + for (int i = 1; i < argc; ++i) + { + if (azstricmp(argv[i], "--attach-debugger") == 0) + { + AZ::Debug::Trace::AttachDebugger(); + } + else if (azstricmp(argv[i], "--wait-for-debugger") == 0) + { + AZ::Debug::Trace::WaitForDebugger(); + } + } + // ensure the EditorEventsBus context gets created inside EditorLib [[maybe_unused]] const auto& editorEventsContext = AzToolsFramework::EditorEvents::Bus::GetOrCreateContext(); diff --git a/Code/Editor/CryEditDoc.cpp b/Code/Editor/CryEditDoc.cpp index 2985f9fec2..5df046bf54 100644 --- a/Code/Editor/CryEditDoc.cpp +++ b/Code/Editor/CryEditDoc.cpp @@ -350,7 +350,7 @@ void CCryEditDoc::Load(TDocMultiArchive& arrXmlAr, const QString& szFilename) // Register this level and its content hash as version GetIEditor()->GetSettingsManager()->AddToolVersion(fileName, levelHash); GetIEditor()->GetSettingsManager()->RegisterEvent(loadEvent); - LOADING_TIME_PROFILE_SECTION(gEnv->pSystem); + CAutoDocNotReady autoDocNotReady; HEAP_CHECK @@ -1072,14 +1072,6 @@ bool CCryEditDoc::AfterSaveDocument([[maybe_unused]] const QString& lpszPathName return bSaved; } - -static void GetUserSettingsFile(const QString& levelFolder, QString& userSettings) -{ - const char* pUserName = GetISystem()->GetUserName(); - QString fileName = QStringLiteral("%1_usersettings.editor_xml").arg(pUserName); - userSettings = Path::Make(levelFolder, fileName); -} - static bool TryRenameFile(const QString& oldPath, const QString& newPath, int retryAttempts=10) { QFile(newPath).setPermissions(QFile::ReadOther | QFile::WriteOther); @@ -1101,7 +1093,7 @@ static bool TryRenameFile(const QString& oldPath, const QString& newPath, int re bool CCryEditDoc::SaveLevel(const QString& filename) { - AZ_PROFILE_FUNCTION(AzToolsFramework); + AZ_PROFILE_FUNCTION(Editor); QWaitCursor wait; CAutoCheckOutDialogEnableForAll enableForAll; @@ -1121,7 +1113,7 @@ bool CCryEditDoc::SaveLevel(const QString& filename) { - AZ_PROFILE_SCOPE(AzToolsFramework, "CCryEditDoc::SaveLevel BackupBeforeSave"); + AZ_PROFILE_SCOPE(Editor, "CCryEditDoc::SaveLevel BackupBeforeSave"); BackupBeforeSave(); } @@ -1232,7 +1224,7 @@ bool CCryEditDoc::SaveLevel(const QString& filename) CPakFile pakFile; { - AZ_PROFILE_SCOPE(AzToolsFramework, "CCryEditDoc::SaveLevel Open PakFile"); + AZ_PROFILE_SCOPE(Editor, "CCryEditDoc::SaveLevel Open PakFile"); if (!pakFile.Open(tempSaveFile.toUtf8().data(), false)) { gEnv->pLog->LogWarning("Unable to open pack file %s for writing", tempSaveFile.toUtf8().data()); @@ -1263,7 +1255,7 @@ bool CCryEditDoc::SaveLevel(const QString& filename) AZ::IO::ByteContainerStream> entitySaveStream(&entitySaveBuffer); { - AZ_PROFILE_SCOPE(AzToolsFramework, "CCryEditDoc::SaveLevel Save Entities To Stream"); + AZ_PROFILE_SCOPE(Editor, "CCryEditDoc::SaveLevel Save Entities To Stream"); EBUS_EVENT_RESULT( savedEntities, AzToolsFramework::EditorEntityContextRequestBus, SaveToStreamForEditor, entitySaveStream, layerEntities, instancesInLayers); diff --git a/Code/Editor/CryEditPy.cpp b/Code/Editor/CryEditPy.cpp index 2477cd2f35..7a407aac37 100644 --- a/Code/Editor/CryEditPy.cpp +++ b/Code/Editor/CryEditPy.cpp @@ -97,11 +97,6 @@ namespace } } - const char* PyGetGameFolder() - { - return Path::GetEditingGameDataFolder().c_str(); - } - AZStd::string PyGetGameFolderAsString() { return Path::GetEditingGameDataFolder(); @@ -406,6 +401,16 @@ inline namespace Commands { return static_cast(GetIEditor()->GetEditorConfigPlatform()); } + + bool PyAttachDebugger() + { + return AZ::Debug::Trace::AttachDebugger(); + } + + bool PyWaitForDebugger(float timeoutSeconds = -1.f) + { + return AZ::Debug::Trace::WaitForDebugger(timeoutSeconds); + } } namespace AzToolsFramework @@ -453,6 +458,9 @@ namespace AzToolsFramework addLegacyGeneral(behaviorContext->Method("start_process_detached", PyStartProcessDetached, nullptr, "Launches a detached process with an optional space separated list of arguments.")); addLegacyGeneral(behaviorContext->Method("launch_lua_editor", PyLaunchLUAEditor, nullptr, "Launches the Lua editor, may receive a list of space separate file paths, or an empty string to only open the editor.")); + addLegacyGeneral(behaviorContext->Method("attach_debugger", PyAttachDebugger, nullptr, "Prompts for attaching the debugger")); + addLegacyGeneral(behaviorContext->Method("wait_for_debugger", PyWaitForDebugger, behaviorContext->MakeDefaultValues(-1.f), "Pauses this thread execution until the debugger has been attached")); + // this will put these methods into the 'azlmbr.legacy.checkout_dialog' module auto addCheckoutDialog = [](AZ::BehaviorContext::GlobalMethodBuilder methodBuilder) { diff --git a/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.cpp b/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.cpp deleted file mode 100644 index 80368d3ec1..0000000000 --- a/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.cpp +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Calculate the reference frame for sub-object selections. - -#include "EditorDefs.h" - -#include "SubObjectSelectionReferenceFrameCalculator.h" - -SubObjectSelectionReferenceFrameCalculator::SubObjectSelectionReferenceFrameCalculator(ESubObjElementType selectionType) - : m_anySelected(false) - , pos(0.0f, 0.0f, 0.0f) - , normal(0.0f, 0.0f, 0.0f) - , nNormals(0) - , selectionType(selectionType) - , bUseExplicitFrame(false) - , bExplicitAnySelected(false) -{ -} - -void SubObjectSelectionReferenceFrameCalculator::SetExplicitFrame(bool bAnySelected, const Matrix34& refFrame) -{ - this->m_refFrame = refFrame; - this->bUseExplicitFrame = true; - this->bExplicitAnySelected = bAnySelected; -} - -bool SubObjectSelectionReferenceFrameCalculator::GetFrame(Matrix34& refFrame) -{ - if (this->bUseExplicitFrame) - { - refFrame = this->m_refFrame; - return this->bExplicitAnySelected; - } - else - { - refFrame.SetIdentity(); - - if (this->nNormals > 0) - { - this->normal = this->normal / static_cast(this->nNormals); - if (!this->normal.IsZero()) - { - this->normal.Normalize(); - } - - // Average position. - this->pos = this->pos / static_cast(this->nNormals); - refFrame.SetTranslation(this->pos); - } - - if (this->m_anySelected) - { - if (!this->normal.IsZero()) - { - Vec3 xAxis(1, 0, 0), yAxis(0, 1, 0), zAxis(0, 0, 1); - if (this->normal.IsEquivalent(zAxis) || normal.IsEquivalent(-zAxis)) - { - zAxis = xAxis; - } - xAxis = this->normal.Cross(zAxis).GetNormalized(); - yAxis = xAxis.Cross(this->normal).GetNormalized(); - refFrame.SetFromVectors(xAxis, yAxis, normal, pos); - } - } - - return m_anySelected; - } -} diff --git a/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.h b/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.h deleted file mode 100644 index 7c0d6f40c6..0000000000 --- a/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Calculate the reference frame for sub-object selections. - - -#ifndef CRYINCLUDE_EDITOR_EDITMODE_SUBOBJECTSELECTIONREFERENCEFRAMECALCULATOR_H -#define CRYINCLUDE_EDITOR_EDITMODE_SUBOBJECTSELECTIONREFERENCEFRAMECALCULATOR_H -#pragma once - - -#include "ISubObjectSelectionReferenceFrameCalculator.h" -#include "Objects/SubObjSelection.h" - -class SubObjectSelectionReferenceFrameCalculator - : public ISubObjectSelectionReferenceFrameCalculator -{ -public: - SubObjectSelectionReferenceFrameCalculator(ESubObjElementType selectionType); - - virtual void SetExplicitFrame(bool bAnySelected, const Matrix34& refFrame); - bool GetFrame(Matrix34& refFrame); - -private: - bool m_anySelected; - Vec3 pos; - Vec3 normal; - int nNormals; - ESubObjElementType selectionType; - std::vector positions; - Matrix34 m_refFrame; - bool bUseExplicitFrame; - bool bExplicitAnySelected; -}; - -#endif // CRYINCLUDE_EDITOR_EDITMODE_SUBOBJECTSELECTIONREFERENCEFRAMECALCULATOR_H diff --git a/Code/Editor/EditorDefs.h b/Code/Editor/EditorDefs.h index 423f4c5f73..4115e8433a 100644 --- a/Code/Editor/EditorDefs.h +++ b/Code/Editor/EditorDefs.h @@ -8,8 +8,6 @@ #pragma once -#ifndef CRYINCLUDE_EDITOR_EDITORDEFS_H -#define CRYINCLUDE_EDITOR_EDITORDEFS_H #include @@ -186,5 +184,3 @@ #endif #endif - -#endif // CRYINCLUDE_EDITOR_EDITORDEFS_H diff --git a/Code/Editor/EditorModularViewportCameraComposer.cpp b/Code/Editor/EditorModularViewportCameraComposer.cpp new file mode 100644 index 0000000000..498d6f3353 --- /dev/null +++ b/Code/Editor/EditorModularViewportCameraComposer.cpp @@ -0,0 +1,286 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include + +#include +#include +#include +#include +#include + +namespace SandboxEditor +{ + static AzFramework::TranslateCameraInputChannelIds BuildTranslateCameraInputChannelIds() + { + AzFramework::TranslateCameraInputChannelIds translateCameraInputChannelIds; + translateCameraInputChannelIds.m_leftChannelId = SandboxEditor::CameraTranslateLeftChannelId(); + translateCameraInputChannelIds.m_rightChannelId = SandboxEditor::CameraTranslateRightChannelId(); + translateCameraInputChannelIds.m_forwardChannelId = SandboxEditor::CameraTranslateForwardChannelId(); + translateCameraInputChannelIds.m_backwardChannelId = SandboxEditor::CameraTranslateBackwardChannelId(); + translateCameraInputChannelIds.m_upChannelId = SandboxEditor::CameraTranslateUpChannelId(); + translateCameraInputChannelIds.m_downChannelId = SandboxEditor::CameraTranslateDownChannelId(); + translateCameraInputChannelIds.m_boostChannelId = SandboxEditor::CameraTranslateBoostChannelId(); + + return translateCameraInputChannelIds; + } + + EditorModularViewportCameraComposer::EditorModularViewportCameraComposer(const AzFramework::ViewportId viewportId) + : m_viewportId(viewportId) + { + EditorModularViewportCameraComposerNotificationBus::Handler::BusConnect(viewportId); + } + + EditorModularViewportCameraComposer::~EditorModularViewportCameraComposer() + { + EditorModularViewportCameraComposerNotificationBus::Handler::BusDisconnect(); + } + + AZStd::shared_ptr EditorModularViewportCameraComposer:: + CreateModularViewportCameraController() + { + SetupCameras(); + + auto controller = AZStd::make_shared(); + + controller->SetCameraViewportContextBuilderCallback( + [viewportId = m_viewportId](AZStd::unique_ptr& cameraViewportContext) + { + cameraViewportContext = AZStd::make_unique(viewportId); + }); + + controller->SetCameraPriorityBuilderCallback( + [](AtomToolsFramework::CameraControllerPriorityFn& cameraControllerPriorityFn) + { + cameraControllerPriorityFn = AtomToolsFramework::DefaultCameraControllerPriority; + }); + + controller->SetCameraPropsBuilderCallback( + [](AzFramework::CameraProps& cameraProps) + { + cameraProps.m_rotateSmoothnessFn = [] + { + return SandboxEditor::CameraRotateSmoothness(); + }; + + cameraProps.m_translateSmoothnessFn = [] + { + return SandboxEditor::CameraTranslateSmoothness(); + }; + + cameraProps.m_rotateSmoothingEnabledFn = [] + { + return SandboxEditor::CameraRotateSmoothingEnabled(); + }; + + cameraProps.m_translateSmoothingEnabledFn = [] + { + return SandboxEditor::CameraTranslateSmoothingEnabled(); + }; + }); + + controller->SetCameraListBuilderCallback( + [this](AzFramework::Cameras& cameras) + { + cameras.AddCamera(m_firstPersonRotateCamera); + cameras.AddCamera(m_firstPersonPanCamera); + cameras.AddCamera(m_firstPersonTranslateCamera); + cameras.AddCamera(m_firstPersonScrollCamera); + cameras.AddCamera(m_orbitCamera); + }); + + return controller; + } + + void EditorModularViewportCameraComposer::SetupCameras() + { + const auto hideCursor = [viewportId = m_viewportId] + { + if (SandboxEditor::CameraCaptureCursorForLook()) + { + AzToolsFramework::ViewportInteraction::ViewportMouseCursorRequestBus::Event( + viewportId, &AzToolsFramework::ViewportInteraction::ViewportMouseCursorRequestBus::Events::BeginCursorCapture); + } + }; + const auto showCursor = [viewportId = m_viewportId] + { + if (SandboxEditor::CameraCaptureCursorForLook()) + { + AzToolsFramework::ViewportInteraction::ViewportMouseCursorRequestBus::Event( + viewportId, &AzToolsFramework::ViewportInteraction::ViewportMouseCursorRequestBus::Events::EndCursorCapture); + } + }; + + m_firstPersonRotateCamera = AZStd::make_shared(SandboxEditor::CameraFreeLookChannelId()); + + m_firstPersonRotateCamera->m_rotateSpeedFn = [] + { + return SandboxEditor::CameraRotateSpeed(); + }; + + // default behavior is to hide the cursor but this can be disabled (useful for remote desktop) + // note: See CaptureCursorLook in the Settings Registry + m_firstPersonRotateCamera->SetActivationBeganFn(hideCursor); + m_firstPersonRotateCamera->SetActivationEndedFn(showCursor); + + m_firstPersonPanCamera = + AZStd::make_shared(SandboxEditor::CameraFreePanChannelId(), AzFramework::LookPan); + + m_firstPersonPanCamera->m_panSpeedFn = [] + { + return SandboxEditor::CameraPanSpeed(); + }; + + m_firstPersonPanCamera->m_invertPanXFn = [] + { + return SandboxEditor::CameraPanInvertedX(); + }; + + m_firstPersonPanCamera->m_invertPanYFn = [] + { + return SandboxEditor::CameraPanInvertedY(); + }; + + const auto translateCameraInputChannelIds = BuildTranslateCameraInputChannelIds(); + + m_firstPersonTranslateCamera = + AZStd::make_shared(AzFramework::LookTranslation, translateCameraInputChannelIds); + + m_firstPersonTranslateCamera->m_translateSpeedFn = [] + { + return SandboxEditor::CameraTranslateSpeed(); + }; + + m_firstPersonTranslateCamera->m_boostMultiplierFn = [] + { + return SandboxEditor::CameraBoostMultiplier(); + }; + + m_firstPersonScrollCamera = AZStd::make_shared(); + + m_firstPersonScrollCamera->m_scrollSpeedFn = [] + { + return SandboxEditor::CameraScrollSpeed(); + }; + + m_orbitCamera = AZStd::make_shared(SandboxEditor::CameraOrbitChannelId()); + + m_orbitCamera->SetLookAtFn( + [viewportId = m_viewportId](const AZ::Vector3& position, const AZ::Vector3& direction) -> AZStd::optional + { + AZStd::optional lookAtAfterInterpolation; + AtomToolsFramework::ModularViewportCameraControllerRequestBus::EventResult( + lookAtAfterInterpolation, viewportId, + &AtomToolsFramework::ModularViewportCameraControllerRequestBus::Events::LookAtAfterInterpolation); + + // initially attempt to use the last set look at point after an interpolation has finished + if (lookAtAfterInterpolation.has_value()) + { + return *lookAtAfterInterpolation; + } + + const float RayDistance = 1000.0f; + AzFramework::RenderGeometry::RayRequest ray; + ray.m_startWorldPosition = position; + ray.m_endWorldPosition = position + direction * RayDistance; + ray.m_onlyVisible = true; + + AzFramework::RenderGeometry::RayResult renderGeometryIntersectionResult; + AzFramework::RenderGeometry::IntersectorBus::EventResult( + renderGeometryIntersectionResult, AzToolsFramework::GetEntityContextId(), + &AzFramework::RenderGeometry::IntersectorBus::Events::RayIntersect, ray); + + // attempt a ray intersection with any visible mesh and return the intersection position if successful + if (renderGeometryIntersectionResult) + { + return renderGeometryIntersectionResult.m_worldPosition; + } + + // if there is no selection or no intersection, fallback to default camera orbit behavior (ground plane + // intersection) + return {}; + }); + + m_orbitRotateCamera = AZStd::make_shared(SandboxEditor::CameraOrbitLookChannelId()); + + m_orbitRotateCamera->m_rotateSpeedFn = [] + { + return SandboxEditor::CameraRotateSpeed(); + }; + + m_orbitRotateCamera->m_invertYawFn = [] + { + return SandboxEditor::CameraOrbitYawRotationInverted(); + }; + + m_orbitTranslateCamera = + AZStd::make_shared(AzFramework::OrbitTranslation, translateCameraInputChannelIds); + + m_orbitTranslateCamera->m_translateSpeedFn = [] + { + return SandboxEditor::CameraTranslateSpeed(); + }; + + m_orbitTranslateCamera->m_boostMultiplierFn = [] + { + return SandboxEditor::CameraBoostMultiplier(); + }; + + m_orbitDollyScrollCamera = AZStd::make_shared(); + + m_orbitDollyScrollCamera->m_scrollSpeedFn = [] + { + return SandboxEditor::CameraScrollSpeed(); + }; + + m_orbitDollyMoveCamera = + AZStd::make_shared(SandboxEditor::CameraOrbitDollyChannelId()); + + m_orbitDollyMoveCamera->m_cursorSpeedFn = [] + { + return SandboxEditor::CameraDollyMotionSpeed(); + }; + + m_orbitPanCamera = AZStd::make_shared(SandboxEditor::CameraOrbitPanChannelId(), AzFramework::OrbitPan); + + m_orbitPanCamera->m_panSpeedFn = [] + { + return SandboxEditor::CameraPanSpeed(); + }; + + m_orbitPanCamera->m_invertPanXFn = [] + { + return SandboxEditor::CameraPanInvertedX(); + }; + + m_orbitPanCamera->m_invertPanYFn = [] + { + return SandboxEditor::CameraPanInvertedY(); + }; + + m_orbitCamera->m_orbitCameras.AddCamera(m_orbitRotateCamera); + m_orbitCamera->m_orbitCameras.AddCamera(m_orbitTranslateCamera); + m_orbitCamera->m_orbitCameras.AddCamera(m_orbitDollyScrollCamera); + m_orbitCamera->m_orbitCameras.AddCamera(m_orbitDollyMoveCamera); + m_orbitCamera->m_orbitCameras.AddCamera(m_orbitPanCamera); + } + + void EditorModularViewportCameraComposer::OnEditorModularViewportCameraComposerSettingsChanged() + { + const auto translateCameraInputChannelIds = BuildTranslateCameraInputChannelIds(); + m_firstPersonTranslateCamera->SetTranslateCameraInputChannelIds(translateCameraInputChannelIds); + m_orbitTranslateCamera->SetTranslateCameraInputChannelIds(translateCameraInputChannelIds); + + m_firstPersonPanCamera->SetPanInputChannelId(SandboxEditor::CameraFreePanChannelId()); + m_orbitPanCamera->SetPanInputChannelId(SandboxEditor::CameraOrbitPanChannelId()); + m_firstPersonRotateCamera->SetRotateInputChannelId(SandboxEditor::CameraFreeLookChannelId()); + m_orbitRotateCamera->SetRotateInputChannelId(SandboxEditor::CameraOrbitLookChannelId()); + m_orbitCamera->SetOrbitInputChannelId(SandboxEditor::CameraOrbitChannelId()); + m_orbitDollyMoveCamera->SetDollyInputChannelId(SandboxEditor::CameraOrbitDollyChannelId()); + } +} // namespace SandboxEditor diff --git a/Code/Editor/EditorModularViewportCameraComposer.h b/Code/Editor/EditorModularViewportCameraComposer.h new file mode 100644 index 0000000000..cb223d39e6 --- /dev/null +++ b/Code/Editor/EditorModularViewportCameraComposer.h @@ -0,0 +1,48 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include +#include + +namespace SandboxEditor +{ + //! Type responsible for building the editor's modular viewport camera controller. + class EditorModularViewportCameraComposer : private EditorModularViewportCameraComposerNotificationBus::Handler + { + public: + SANDBOX_API explicit EditorModularViewportCameraComposer(AzFramework::ViewportId viewportId); + SANDBOX_API ~EditorModularViewportCameraComposer(); + + //! Build a ModularViewportCameraController from the associated camera inputs. + SANDBOX_API AZStd::shared_ptr CreateModularViewportCameraController(); + + private: + //! Setup all internal camera inputs. + void SetupCameras(); + + // EditorModularViewportCameraComposerNotificationBus overrides ... + void OnEditorModularViewportCameraComposerSettingsChanged() override; + + AZStd::shared_ptr m_firstPersonRotateCamera; + AZStd::shared_ptr m_firstPersonPanCamera; + AZStd::shared_ptr m_firstPersonTranslateCamera; + AZStd::shared_ptr m_firstPersonScrollCamera; + AZStd::shared_ptr m_orbitCamera; + AZStd::shared_ptr m_orbitRotateCamera; + AZStd::shared_ptr m_orbitTranslateCamera; + AZStd::shared_ptr m_orbitDollyScrollCamera; + AZStd::shared_ptr m_orbitDollyMoveCamera; + AZStd::shared_ptr m_orbitPanCamera; + + AzFramework::ViewportId m_viewportId; + }; +} // namespace SandboxEditor diff --git a/Code/Editor/EditorModularViewportCameraComposerBus.h b/Code/Editor/EditorModularViewportCameraComposerBus.h new file mode 100644 index 0000000000..ac760b8a9a --- /dev/null +++ b/Code/Editor/EditorModularViewportCameraComposerBus.h @@ -0,0 +1,31 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include + +namespace SandboxEditor +{ + //! Notifications for changes to the editor modular viewport camera controller. + class EditorModularViewportCameraComposerNotifications + { + public: + //! Notify any listeners when changes have been made to the modular viewport camera settings. + //! @note This is used to update any cached input channels when controls are modified. + virtual void OnEditorModularViewportCameraComposerSettingsChanged() = 0; + + protected: + ~EditorModularViewportCameraComposerNotifications() = default; + }; + + using EditorModularViewportCameraComposerNotificationBus = + AZ::EBus; +} // namespace SandboxEditor diff --git a/Code/Editor/EditorPanelUtils.cpp b/Code/Editor/EditorPanelUtils.cpp index 12e9457474..a270de5978 100644 --- a/Code/Editor/EditorPanelUtils.cpp +++ b/Code/Editor/EditorPanelUtils.cpp @@ -47,7 +47,6 @@ struct ToolTip class CEditorPanelUtils_Impl : public IEditorPanelUtils { - #pragma region Drag & Drop public: void SetViewportDragOperation(void(* dropCallback)(CViewport* viewport, int dragPointX, int dragPointY, void* custom), void* custom) override { @@ -56,8 +55,7 @@ public: GetIEditor()->GetViewManager()->GetView(i)->SetGlobalDropCallback(dropCallback, custom); } } - #pragma endregion - #pragma region Preview Window + public: int PreviewWindow_GetDisplaySettingsDebugFlags(CDisplaySettings* settings) override @@ -72,8 +70,6 @@ public: settings->SetDebugFlags(flags); } - #pragma endregion - #pragma region Shortcuts protected: QVector hotkeys; bool m_hotkeysAreEnabled; @@ -408,8 +404,6 @@ public: return m_hotkeysAreEnabled; } - #pragma endregion - #pragma region ToolTip protected: QMap m_tooltips; @@ -539,7 +533,6 @@ public: } return GetToolTip(path).disabledContent; } - #pragma endregion ToolTip }; IEditorPanelUtils* CreateEditorPanelUtils() diff --git a/Code/Editor/EditorPreferencesPageViewportMovement.cpp b/Code/Editor/EditorPreferencesPageViewportMovement.cpp index 988b4954d1..74abb3f207 100644 --- a/Code/Editor/EditorPreferencesPageViewportMovement.cpp +++ b/Code/Editor/EditorPreferencesPageViewportMovement.cpp @@ -5,51 +5,220 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ + #include "EditorDefs.h" #include "EditorPreferencesPageViewportMovement.h" +#include +#include +#include +#include #include +#include // Editor -#include "Settings.h" #include "EditorViewportSettings.h" +#include "Settings.h" + +static AZStd::vector GetInputNamesByDevice(const AzFramework::InputDeviceId inputDeviceId) +{ + AzFramework::InputDeviceRequests::InputChannelIdSet availableInputChannelIds; + AzFramework::InputDeviceRequestBus::Event( + inputDeviceId, &AzFramework::InputDeviceRequests::GetInputChannelIds, availableInputChannelIds); + + AZStd::vector inputChannelNames; + for (const AzFramework::InputChannelId& inputChannelId : availableInputChannelIds) + { + inputChannelNames.push_back(inputChannelId.GetName()); + } + + AZStd::sort(inputChannelNames.begin(), inputChannelNames.end()); + + return inputChannelNames; +} + +static AZStd::vector GetEditorInputNames() +{ + // function static to defer having to call GetInputNamesByDevice for every CameraInputSettings member + static bool inputNamesGenerated = false; + static AZStd::vector inputNames; + + if (!inputNamesGenerated) + { + AZStd::vector keyboardInputNames = GetInputNamesByDevice(AzFramework::InputDeviceKeyboard::Id); + AZStd::vector mouseInputNames = GetInputNamesByDevice(AzFramework::InputDeviceMouse::Id); + + inputNames.insert(inputNames.end(), mouseInputNames.begin(), mouseInputNames.end()); + inputNames.insert(inputNames.end(), keyboardInputNames.begin(), keyboardInputNames.end()); + + inputNamesGenerated = true; + } + + return inputNames; +} void CEditorPreferencesPage_ViewportMovement::Reflect(AZ::SerializeContext& serialize) { serialize.Class() - ->Version(1) - ->Field("MoveSpeed", &CameraMovementSettings::m_moveSpeed) + ->Version(2) + ->Field("TranslateSpeed", &CameraMovementSettings::m_translateSpeed) ->Field("RotateSpeed", &CameraMovementSettings::m_rotateSpeed) - ->Field("FastMoveSpeed", &CameraMovementSettings::m_fastMoveSpeed) - ->Field("WheelZoomSpeed", &CameraMovementSettings::m_wheelZoomSpeed) - ->Field("InvertYAxis", &CameraMovementSettings::m_invertYRotation) - ->Field("InvertPan", &CameraMovementSettings::m_invertPan); + ->Field("BoostMultiplier", &CameraMovementSettings::m_boostMultiplier) + ->Field("ScrollSpeed", &CameraMovementSettings::m_scrollSpeed) + ->Field("DollySpeed", &CameraMovementSettings::m_dollySpeed) + ->Field("PanSpeed", &CameraMovementSettings::m_panSpeed) + ->Field("RotateSmoothing", &CameraMovementSettings::m_rotateSmoothing) + ->Field("RotateSmoothness", &CameraMovementSettings::m_rotateSmoothness) + ->Field("TranslateSmoothing", &CameraMovementSettings::m_translateSmoothing) + ->Field("TranslateSmoothness", &CameraMovementSettings::m_translateSmoothness) + ->Field("CaptureCursorLook", &CameraMovementSettings::m_captureCursorLook) + ->Field("OrbitYawRotationInverted", &CameraMovementSettings::m_orbitYawRotationInverted) + ->Field("PanInvertedX", &CameraMovementSettings::m_panInvertedX) + ->Field("PanInvertedY", &CameraMovementSettings::m_panInvertedY); + + serialize.Class() + ->Version(1) + ->Field("TranslateForward", &CameraInputSettings::m_translateForwardChannelId) + ->Field("TranslateBackward", &CameraInputSettings::m_translateBackwardChannelId) + ->Field("TranslateLeft", &CameraInputSettings::m_translateLeftChannelId) + ->Field("TranslateRight", &CameraInputSettings::m_translateRightChannelId) + ->Field("TranslateUp", &CameraInputSettings::m_translateUpChannelId) + ->Field("TranslateDown", &CameraInputSettings::m_translateDownChannelId) + ->Field("Boost", &CameraInputSettings::m_boostChannelId) + ->Field("Orbit", &CameraInputSettings::m_orbitChannelId) + ->Field("FreeLook", &CameraInputSettings::m_freeLookChannelId) + ->Field("FreePan", &CameraInputSettings::m_freePanChannelId) + ->Field("OrbitLook", &CameraInputSettings::m_orbitLookChannelId) + ->Field("OrbitDolly", &CameraInputSettings::m_orbitDollyChannelId) + ->Field("OrbitPan", &CameraInputSettings::m_orbitPanChannelId); serialize.Class() ->Version(1) - ->Field("CameraMovementSettings", &CEditorPreferencesPage_ViewportMovement::m_cameraMovementSettings); + ->Field("CameraMovementSettings", &CEditorPreferencesPage_ViewportMovement::m_cameraMovementSettings) + ->Field("CameraInputSettings", &CEditorPreferencesPage_ViewportMovement::m_cameraInputSettings); - - AZ::EditContext* editContext = serialize.GetEditContext(); - if (editContext) + if (AZ::EditContext* editContext = serialize.GetEditContext()) { editContext->Class("Camera Movement Settings", "") - ->DataElement(AZ::Edit::UIHandlers::SpinBox, &CameraMovementSettings::m_moveSpeed, "Camera Movement Speed", "Camera Movement Speed") - ->DataElement(AZ::Edit::UIHandlers::SpinBox, &CameraMovementSettings::m_rotateSpeed, "Camera Rotation Speed", "Camera Rotation Speed") - ->DataElement(AZ::Edit::UIHandlers::SpinBox, &CameraMovementSettings::m_fastMoveSpeed, "Fast Movement Scale", "Fast Movement Scale (holding shift") - ->DataElement(AZ::Edit::UIHandlers::SpinBox, &CameraMovementSettings::m_wheelZoomSpeed, "Wheel Zoom Speed", "Wheel Zoom Speed") - ->DataElement(AZ::Edit::UIHandlers::CheckBox, &CameraMovementSettings::m_invertYRotation, "Invert Y Axis", "Invert Y Rotation (holding RMB)") - ->DataElement(AZ::Edit::UIHandlers::CheckBox, &CameraMovementSettings::m_invertPan, "Invert Pan", "Invert Pan (holding MMB)"); + ->DataElement( + AZ::Edit::UIHandlers::SpinBox, &CameraMovementSettings::m_translateSpeed, "Camera Movement Speed", "Camera movement speed") + ->Attribute(AZ::Edit::Attributes::Min, 0.01f) + ->DataElement( + AZ::Edit::UIHandlers::SpinBox, &CameraMovementSettings::m_rotateSpeed, "Camera Rotation Speed", "Camera rotation speed") + ->Attribute(AZ::Edit::Attributes::Min, 0.01f) + ->DataElement( + AZ::Edit::UIHandlers::SpinBox, &CameraMovementSettings::m_boostMultiplier, "Camera Boost Multiplier", + "Camera boost multiplier to apply to movement speed") + ->Attribute(AZ::Edit::Attributes::Min, 0.01f) + ->DataElement( + AZ::Edit::UIHandlers::SpinBox, &CameraMovementSettings::m_scrollSpeed, "Camera Scroll Speed", + "Camera movement speed while using scroll/wheel input") + ->Attribute(AZ::Edit::Attributes::Min, 0.01f) + ->DataElement( + AZ::Edit::UIHandlers::SpinBox, &CameraMovementSettings::m_dollySpeed, "Camera Dolly Speed", + "Camera movement speed while using mouse motion to move in and out") + ->Attribute(AZ::Edit::Attributes::Min, 0.01f) + ->DataElement( + AZ::Edit::UIHandlers::SpinBox, &CameraMovementSettings::m_panSpeed, "Camera Pan Speed", + "Camera movement speed while panning using the mouse") + ->Attribute(AZ::Edit::Attributes::Min, 0.01f) + ->DataElement( + AZ::Edit::UIHandlers::CheckBox, &CameraMovementSettings::m_rotateSmoothing, "Camera Rotate Smoothing", + "Is camera rotation smoothing enabled or disabled") + ->Attribute(AZ::Edit::Attributes::ChangeNotify, AZ::Edit::PropertyRefreshLevels::EntireTree) + ->DataElement( + AZ::Edit::UIHandlers::SpinBox, &CameraMovementSettings::m_rotateSmoothness, "Camera Rotate Smoothness", + "Amount of camera smoothing to apply while rotating the camera") + ->Attribute(AZ::Edit::Attributes::Min, 0.01f) + ->Attribute(AZ::Edit::Attributes::Visibility, &CameraMovementSettings::RotateSmoothingVisibility) + ->DataElement( + AZ::Edit::UIHandlers::CheckBox, &CameraMovementSettings::m_translateSmoothing, "Camera Translate Smoothing", + "Is camera translation smoothing enabled or disabled") + ->Attribute(AZ::Edit::Attributes::ChangeNotify, AZ::Edit::PropertyRefreshLevels::EntireTree) + ->DataElement( + AZ::Edit::UIHandlers::SpinBox, &CameraMovementSettings::m_translateSmoothness, "Camera Translate Smoothness", + "Amount of camera smoothing to apply while translating the camera") + ->Attribute(AZ::Edit::Attributes::Min, 0.01f) + ->Attribute(AZ::Edit::Attributes::Visibility, &CameraMovementSettings::TranslateSmoothingVisibility) + ->DataElement( + AZ::Edit::UIHandlers::CheckBox, &CameraMovementSettings::m_orbitYawRotationInverted, "Camera Orbit Yaw Inverted", + "Inverted yaw rotation while orbiting") + ->DataElement( + AZ::Edit::UIHandlers::CheckBox, &CameraMovementSettings::m_panInvertedX, "Invert Pan X", + "Invert direction of pan in local X axis") + ->DataElement( + AZ::Edit::UIHandlers::CheckBox, &CameraMovementSettings::m_panInvertedY, "Invert Pan Y", + "Invert direction of pan in local Y axis") + ->DataElement( + AZ::Edit::UIHandlers::CheckBox, &CameraMovementSettings::m_captureCursorLook, "Camera Capture Look Cursor", + "Should the cursor be captured (hidden) while performing free look"); - editContext->Class("Gizmo Movement Preferences", "Gizmo Movement Preferences") + editContext->Class("Camera Input Settings", "") + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_translateForwardChannelId, "Translate Forward", + "Key/button to move the camera forward") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames) + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_translateBackwardChannelId, "Translate Backward", + "Key/button to move the camera backward") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames) + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_translateLeftChannelId, "Translate Left", + "Key/button to move the camera left") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames) + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_translateRightChannelId, "Translate Right", + "Key/button to move the camera right") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames) + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_translateUpChannelId, "Translate Up", + "Key/button to move the camera up") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames) + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_translateDownChannelId, "Translate Down", + "Key/button to move the camera down") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames) + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_boostChannelId, "Boost", + "Key/button to move the camera more quickly") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames) + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_orbitChannelId, "Orbit", + "Key/button to begin the camera orbit behavior") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames) + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_freeLookChannelId, "Free Look", + "Key/button to begin camera free look") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames) + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_freePanChannelId, "Free Pan", "Key/button to begin camera free pan") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames) + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_orbitLookChannelId, "Orbit Look", + "Key/button to begin camera orbit look") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames) + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_orbitDollyChannelId, "Orbit Dolly", + "Key/button to begin camera orbit dolly") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames) + ->DataElement( + AZ::Edit::UIHandlers::ComboBox, &CameraInputSettings::m_orbitPanChannelId, "Orbit Pan", + "Key/button to begin camera orbit pan") + ->Attribute(AZ::Edit::Attributes::StringList, &GetEditorInputNames); + + editContext->Class("Viewport Preferences", "Viewport Preferences") ->ClassElement(AZ::Edit::ClassElements::EditorData, "") ->Attribute(AZ::Edit::Attributes::Visibility, AZ_CRC("PropertyVisibility_ShowChildrenOnly", 0xef428f20)) - ->DataElement(AZ::Edit::UIHandlers::Default, &CEditorPreferencesPage_ViewportMovement::m_cameraMovementSettings, "Camera Movement Settings", "Camera Movement Settings"); + ->DataElement( + AZ::Edit::UIHandlers::Default, &CEditorPreferencesPage_ViewportMovement::m_cameraMovementSettings, + "Camera Movement Settings", "Camera Movement Settings") + ->DataElement( + AZ::Edit::UIHandlers::Default, &CEditorPreferencesPage_ViewportMovement::m_cameraInputSettings, "Camera Input Settings", + "Camera Input Settings"); } } - CEditorPreferencesPage_ViewportMovement::CEditorPreferencesPage_ViewportMovement() { InitializeSettings(); @@ -68,21 +237,67 @@ QIcon& CEditorPreferencesPage_ViewportMovement::GetIcon() void CEditorPreferencesPage_ViewportMovement::OnApply() { - SandboxEditor::SetCameraTranslateSpeed(m_cameraMovementSettings.m_moveSpeed); + SandboxEditor::SetCameraTranslateSpeed(m_cameraMovementSettings.m_translateSpeed); SandboxEditor::SetCameraRotateSpeed(m_cameraMovementSettings.m_rotateSpeed); - SandboxEditor::SetCameraBoostMultiplier(m_cameraMovementSettings.m_fastMoveSpeed); - SandboxEditor::SetCameraScrollSpeed(m_cameraMovementSettings.m_wheelZoomSpeed); - SandboxEditor::SetCameraOrbitYawRotationInverted(m_cameraMovementSettings.m_invertYRotation); - SandboxEditor::SetCameraPanInvertedX(m_cameraMovementSettings.m_invertPan); - SandboxEditor::SetCameraPanInvertedY(m_cameraMovementSettings.m_invertPan); + SandboxEditor::SetCameraBoostMultiplier(m_cameraMovementSettings.m_boostMultiplier); + SandboxEditor::SetCameraScrollSpeed(m_cameraMovementSettings.m_scrollSpeed); + SandboxEditor::SetCameraDollyMotionSpeed(m_cameraMovementSettings.m_dollySpeed); + SandboxEditor::SetCameraPanSpeed(m_cameraMovementSettings.m_panSpeed); + SandboxEditor::SetCameraRotateSmoothness(m_cameraMovementSettings.m_rotateSmoothness); + SandboxEditor::SetCameraRotateSmoothingEnabled(m_cameraMovementSettings.m_rotateSmoothing); + SandboxEditor::SetCameraTranslateSmoothness(m_cameraMovementSettings.m_translateSmoothness); + SandboxEditor::SetCameraTranslateSmoothingEnabled(m_cameraMovementSettings.m_translateSmoothing); + SandboxEditor::SetCameraCaptureCursorForLook(m_cameraMovementSettings.m_captureCursorLook); + SandboxEditor::SetCameraOrbitYawRotationInverted(m_cameraMovementSettings.m_orbitYawRotationInverted); + SandboxEditor::SetCameraPanInvertedX(m_cameraMovementSettings.m_panInvertedX); + SandboxEditor::SetCameraPanInvertedY(m_cameraMovementSettings.m_panInvertedY); + + SandboxEditor::SetCameraTranslateForwardChannelId(m_cameraInputSettings.m_translateForwardChannelId); + SandboxEditor::SetCameraTranslateBackwardChannelId(m_cameraInputSettings.m_translateBackwardChannelId); + SandboxEditor::SetCameraTranslateLeftChannelId(m_cameraInputSettings.m_translateLeftChannelId); + SandboxEditor::SetCameraTranslateRightChannelId(m_cameraInputSettings.m_translateRightChannelId); + SandboxEditor::SetCameraTranslateUpChannelId(m_cameraInputSettings.m_translateUpChannelId); + SandboxEditor::SetCameraTranslateDownChannelId(m_cameraInputSettings.m_translateDownChannelId); + SandboxEditor::SetCameraTranslateBoostChannelId(m_cameraInputSettings.m_boostChannelId); + SandboxEditor::SetCameraOrbitChannelId(m_cameraInputSettings.m_orbitChannelId); + SandboxEditor::SetCameraFreeLookChannelId(m_cameraInputSettings.m_freeLookChannelId); + SandboxEditor::SetCameraFreePanChannelId(m_cameraInputSettings.m_freePanChannelId); + SandboxEditor::SetCameraOrbitLookChannelId(m_cameraInputSettings.m_orbitLookChannelId); + SandboxEditor::SetCameraOrbitDollyChannelId(m_cameraInputSettings.m_orbitDollyChannelId); + SandboxEditor::SetCameraOrbitPanChannelId(m_cameraInputSettings.m_orbitPanChannelId); + + SandboxEditor::EditorModularViewportCameraComposerNotificationBus::Broadcast( + &SandboxEditor::EditorModularViewportCameraComposerNotificationBus::Events::OnEditorModularViewportCameraComposerSettingsChanged); } void CEditorPreferencesPage_ViewportMovement::InitializeSettings() { - m_cameraMovementSettings.m_moveSpeed = SandboxEditor::CameraTranslateSpeed(); + m_cameraMovementSettings.m_translateSpeed = SandboxEditor::CameraTranslateSpeed(); m_cameraMovementSettings.m_rotateSpeed = SandboxEditor::CameraRotateSpeed(); - m_cameraMovementSettings.m_fastMoveSpeed = SandboxEditor::CameraBoostMultiplier(); - m_cameraMovementSettings.m_wheelZoomSpeed = SandboxEditor::CameraScrollSpeed(); - m_cameraMovementSettings.m_invertYRotation = SandboxEditor::CameraOrbitYawRotationInverted(); - m_cameraMovementSettings.m_invertPan = SandboxEditor::CameraPanInvertedX() && SandboxEditor::CameraPanInvertedY(); + m_cameraMovementSettings.m_boostMultiplier = SandboxEditor::CameraBoostMultiplier(); + m_cameraMovementSettings.m_scrollSpeed = SandboxEditor::CameraScrollSpeed(); + m_cameraMovementSettings.m_dollySpeed = SandboxEditor::CameraDollyMotionSpeed(); + m_cameraMovementSettings.m_panSpeed = SandboxEditor::CameraPanSpeed(); + m_cameraMovementSettings.m_rotateSmoothness = SandboxEditor::CameraRotateSmoothness(); + m_cameraMovementSettings.m_rotateSmoothing = SandboxEditor::CameraRotateSmoothingEnabled(); + m_cameraMovementSettings.m_translateSmoothness = SandboxEditor::CameraTranslateSmoothness(); + m_cameraMovementSettings.m_translateSmoothing = SandboxEditor::CameraTranslateSmoothingEnabled(); + m_cameraMovementSettings.m_captureCursorLook = SandboxEditor::CameraCaptureCursorForLook(); + m_cameraMovementSettings.m_orbitYawRotationInverted = SandboxEditor::CameraOrbitYawRotationInverted(); + m_cameraMovementSettings.m_panInvertedX = SandboxEditor::CameraPanInvertedX(); + m_cameraMovementSettings.m_panInvertedY = SandboxEditor::CameraPanInvertedY(); + + m_cameraInputSettings.m_translateForwardChannelId = SandboxEditor::CameraTranslateForwardChannelId().GetName(); + m_cameraInputSettings.m_translateBackwardChannelId = SandboxEditor::CameraTranslateBackwardChannelId().GetName(); + m_cameraInputSettings.m_translateLeftChannelId = SandboxEditor::CameraTranslateLeftChannelId().GetName(); + m_cameraInputSettings.m_translateRightChannelId = SandboxEditor::CameraTranslateRightChannelId().GetName(); + m_cameraInputSettings.m_translateUpChannelId = SandboxEditor::CameraTranslateUpChannelId().GetName(); + m_cameraInputSettings.m_translateDownChannelId = SandboxEditor::CameraTranslateDownChannelId().GetName(); + m_cameraInputSettings.m_boostChannelId = SandboxEditor::CameraTranslateBoostChannelId().GetName(); + m_cameraInputSettings.m_orbitChannelId = SandboxEditor::CameraOrbitChannelId().GetName(); + m_cameraInputSettings.m_freeLookChannelId = SandboxEditor::CameraFreeLookChannelId().GetName(); + m_cameraInputSettings.m_freePanChannelId = SandboxEditor::CameraFreePanChannelId().GetName(); + m_cameraInputSettings.m_orbitLookChannelId = SandboxEditor::CameraOrbitLookChannelId().GetName(); + m_cameraInputSettings.m_orbitDollyChannelId = SandboxEditor::CameraOrbitDollyChannelId().GetName(); + m_cameraInputSettings.m_orbitPanChannelId = SandboxEditor::CameraOrbitPanChannelId().GetName(); } diff --git a/Code/Editor/EditorPreferencesPageViewportMovement.h b/Code/Editor/EditorPreferencesPageViewportMovement.h index 1373260e62..b7482fb048 100644 --- a/Code/Editor/EditorPreferencesPageViewportMovement.h +++ b/Code/Editor/EditorPreferencesPageViewportMovement.h @@ -5,17 +5,21 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ + #pragma once #include "Include/IPreferencesPage.h" -#include -#include #include +#include +#include #include +inline AZ::Crc32 EditorPropertyVisibility(const bool enabled) +{ + return enabled ? AZ::Edit::PropertyVisibility::Show : AZ::Edit::PropertyVisibility::Hide; +} -class CEditorPreferencesPage_ViewportMovement - : public IPreferencesPage +class CEditorPreferencesPage_ViewportMovement : public IPreferencesPage { public: AZ_RTTI(CEditorPreferencesPage_ViewportMovement, "{BC593332-7EAF-4171-8A35-1C5DE5B40909}", IPreferencesPage) @@ -25,12 +29,22 @@ public: CEditorPreferencesPage_ViewportMovement(); virtual ~CEditorPreferencesPage_ViewportMovement() = default; - virtual const char* GetCategory() override { return "Viewports"; } + virtual const char* GetCategory() override + { + return "Viewports"; + } + virtual const char* GetTitle(); virtual QIcon& GetIcon() override; virtual void OnApply() override; - virtual void OnCancel() override {} - virtual bool OnQueryCancel() override { return true; } + virtual void OnCancel() override + { + } + + virtual bool OnQueryCancel() override + { + return true; + } private: void InitializeSettings(); @@ -39,16 +53,53 @@ private: { AZ_TYPE_INFO(CameraMovementSettings, "{60B8C07E-5F48-4171-A50B-F45558B5CCA1}") - float m_moveSpeed; + float m_translateSpeed; float m_rotateSpeed; - float m_fastMoveSpeed; - float m_wheelZoomSpeed; - bool m_invertYRotation; - bool m_invertPan; + float m_scrollSpeed; + float m_dollySpeed; + float m_panSpeed; + float m_boostMultiplier; + float m_rotateSmoothness; + bool m_rotateSmoothing; + float m_translateSmoothness; + bool m_translateSmoothing; + bool m_captureCursorLook; + bool m_orbitYawRotationInverted; + bool m_panInvertedX; + bool m_panInvertedY; + + AZ::Crc32 RotateSmoothingVisibility() const + { + return EditorPropertyVisibility(m_rotateSmoothing); + } + + AZ::Crc32 TranslateSmoothingVisibility() const + { + return EditorPropertyVisibility(m_translateSmoothing); + } + }; + + struct CameraInputSettings + { + AZ_TYPE_INFO(struct CameraInputSettings, "{A250FAD4-662E-4896-B030-D4ED03679377}") + + AZStd::string m_translateForwardChannelId; + AZStd::string m_translateBackwardChannelId; + AZStd::string m_translateLeftChannelId; + AZStd::string m_translateRightChannelId; + AZStd::string m_translateUpChannelId; + AZStd::string m_translateDownChannelId; + AZStd::string m_boostChannelId; + AZStd::string m_orbitChannelId; + AZStd::string m_freeLookChannelId; + AZStd::string m_freePanChannelId; + AZStd::string m_orbitLookChannelId; + AZStd::string m_orbitDollyChannelId; + AZStd::string m_orbitPanChannelId; }; CameraMovementSettings m_cameraMovementSettings; + CameraInputSettings m_cameraInputSettings; + QIcon m_icon; }; - - diff --git a/Code/Editor/EditorViewportSettings.cpp b/Code/Editor/EditorViewportSettings.cpp index 6e0ed86d2a..872454412d 100644 --- a/Code/Editor/EditorViewportSettings.cpp +++ b/Code/Editor/EditorViewportSettings.cpp @@ -33,6 +33,7 @@ namespace SandboxEditor constexpr AZStd::string_view CameraTranslateSmoothnessSetting = "/Amazon/Preferences/Editor/Camera/TranslateSmoothness"; constexpr AZStd::string_view CameraTranslateSmoothingSetting = "/Amazon/Preferences/Editor/Camera/TranslateSmoothing"; constexpr AZStd::string_view CameraRotateSmoothingSetting = "/Amazon/Preferences/Editor/Camera/RotateSmoothing"; + constexpr AZStd::string_view CameraCaptureCursorLookSetting = "/Amazon/Preferences/Editor/Camera/CaptureCursorLook"; constexpr AZStd::string_view CameraTranslateForwardIdSetting = "/Amazon/Preferences/Editor/Camera/CameraTranslateForwardId"; constexpr AZStd::string_view CameraTranslateBackwardIdSetting = "/Amazon/Preferences/Editor/Camera/CameraTranslateBackwardId"; constexpr AZStd::string_view CameraTranslateLeftIdSetting = "/Amazon/Preferences/Editor/Camera/CameraTranslateLeftId"; @@ -60,9 +61,13 @@ namespace SandboxEditor AZStd::remove_cvref_t GetRegistry(const AZStd::string_view setting, T&& defaultValue) { AZStd::remove_cvref_t value = AZStd::forward(defaultValue); - if (auto* registry = AZ::SettingsRegistry::Get()) + if (const auto* registry = AZ::SettingsRegistry::Get()) { - registry->Get(value, setting); + T potentialValue; + if (registry->Get(potentialValue, setting)) + { + value = AZStd::move(potentialValue); + } } return value; @@ -281,6 +286,16 @@ namespace SandboxEditor SetRegistry(CameraTranslateSmoothingSetting, enabled); } + bool CameraCaptureCursorForLook() + { + return GetRegistry(CameraCaptureCursorLookSetting, true); + } + + void SetCameraCaptureCursorForLook(const bool capture) + { + SetRegistry(CameraCaptureCursorLookSetting, capture); + } + AzFramework::InputChannelId CameraTranslateForwardChannelId() { return AzFramework::InputChannelId( @@ -352,7 +367,7 @@ namespace SandboxEditor void SetCameraTranslateBoostChannelId(AZStd::string_view cameraTranslateBoostId) { - SetRegistry(CameraTranslateDownIdSetting, cameraTranslateBoostId); + SetRegistry(CameraTranslateBoostIdSetting, cameraTranslateBoostId); } AzFramework::InputChannelId CameraOrbitChannelId() @@ -360,7 +375,7 @@ namespace SandboxEditor return AzFramework::InputChannelId(GetRegistry(CameraOrbitIdSetting, AZStd::string("keyboard_key_modifier_alt_l")).c_str()); } - void SetCameraOrbitChannelChannelId(AZStd::string_view cameraOrbitId) + void SetCameraOrbitChannelId(AZStd::string_view cameraOrbitId) { SetRegistry(CameraOrbitIdSetting, cameraOrbitId); } diff --git a/Code/Editor/EditorViewportSettings.h b/Code/Editor/EditorViewportSettings.h index 1aca51395f..3da8c465fb 100644 --- a/Code/Editor/EditorViewportSettings.h +++ b/Code/Editor/EditorViewportSettings.h @@ -86,6 +86,9 @@ namespace SandboxEditor SANDBOX_API bool CameraTranslateSmoothingEnabled(); SANDBOX_API void SetCameraTranslateSmoothingEnabled(bool enabled); + SANDBOX_API bool CameraCaptureCursorForLook(); + SANDBOX_API void SetCameraCaptureCursorForLook(bool capture); + SANDBOX_API AzFramework::InputChannelId CameraTranslateForwardChannelId(); SANDBOX_API void SetCameraTranslateForwardChannelId(AZStd::string_view cameraTranslateForwardId); @@ -108,7 +111,7 @@ namespace SandboxEditor SANDBOX_API void SetCameraTranslateBoostChannelId(AZStd::string_view cameraTranslateBoostId); SANDBOX_API AzFramework::InputChannelId CameraOrbitChannelId(); - SANDBOX_API void SetCameraOrbitChannelChannelId(AZStd::string_view cameraOrbitId); + SANDBOX_API void SetCameraOrbitChannelId(AZStd::string_view cameraOrbitId); SANDBOX_API AzFramework::InputChannelId CameraFreeLookChannelId(); SANDBOX_API void SetCameraFreeLookChannelId(AZStd::string_view cameraFreeLookId); diff --git a/Code/Editor/EditorViewportWidget.cpp b/Code/Editor/EditorViewportWidget.cpp index c305b1be6c..5294ebbc7e 100644 --- a/Code/Editor/EditorViewportWidget.cpp +++ b/Code/Editor/EditorViewportWidget.cpp @@ -50,10 +50,10 @@ // AtomToolsFramework #include -#include // CryCommon #include +#include // AzFramework #include @@ -69,7 +69,6 @@ #include "Include/IDisplayViewport.h" #include "Objects/ObjectManager.h" #include "ProcessInfo.h" -#include "IPostEffectGroup.h" #include "EditorPreferencesPageGeneral.h" #include "ViewportManipulatorController.h" #include "EditorViewportSettings.h" @@ -99,12 +98,10 @@ #include #include -#include #include AZ_CVAR( bool, ed_visibility_logTiming, false, nullptr, AZ::ConsoleFunctorFlags::Null, "Output the timing of the new IVisibilitySystem query"); -AZ_CVAR(bool, ed_showCursorCameraLook, true, nullptr, AZ::ConsoleFunctorFlags::Null, "Show the cursor when using free look with the new camera system"); EditorViewportWidget* EditorViewportWidget::m_pPrimaryViewport = nullptr; @@ -394,8 +391,6 @@ void EditorViewportWidget::UpdateContent(int flags) ////////////////////////////////////////////////////////////////////////// void EditorViewportWidget::Update() { - FUNCTION_PROFILER(GetIEditor()->GetSystem(), PROFILE_EDITOR); - if (Editor::EditorQtApplication::instance()->isMovingOrResizing()) { return; @@ -742,9 +737,13 @@ void EditorViewportWidget::OnBeginPrepareRender() RenderAll(); // Draw 2D helpers. +#ifdef LYSHINE_ATOM_TODO TransformationMatrices backupSceneMatrices; +#endif m_debugDisplay->DepthTestOff(); - //m_renderer->Set2DMode(m_rcClient.right(), m_rcClient.bottom(), backupSceneMatrices); +#ifdef LYSHINE_ATOM_TODO + m_renderer->Set2DMode(m_rcClient.right(), m_rcClient.bottom(), backupSceneMatrices); +#endif auto prevState = m_debugDisplay->GetState(); m_debugDisplay->SetState(e_Mode3D | e_AlphaBlended | e_FillModeSolid | e_CullModeBack | e_DepthWriteOn | e_DepthTestOn); @@ -957,15 +956,11 @@ AzFramework::CameraState EditorViewportWidget::GetCameraState() AZ::Vector3 EditorViewportWidget::PickTerrain(const AzFramework::ScreenPoint& point) { - FUNCTION_PROFILER(GetIEditor()->GetSystem(), PROFILE_EDITOR); - return LYVec3ToAZVec3(ViewToWorld(AzToolsFramework::ViewportInteraction::QPointFromScreenPoint(point), nullptr, true)); } AZ::EntityId EditorViewportWidget::PickEntity(const AzFramework::ScreenPoint& point) { - FUNCTION_PROFILER(GetIEditor()->GetSystem(), PROFILE_EDITOR); - PreWidgetRendering(); AZ::EntityId entityId; @@ -992,8 +987,6 @@ float EditorViewportWidget::TerrainHeight(const AZ::Vector2& position) void EditorViewportWidget::FindVisibleEntities(AZStd::vector& visibleEntitiesOut) { - FUNCTION_PROFILER(GetIEditor()->GetSystem(), PROFILE_EDITOR); - visibleEntitiesOut.assign(m_entityVisibilityQuery.Begin(), m_entityVisibilityQuery.End()); } @@ -1033,216 +1026,6 @@ bool EditorViewportWidget::ShowingWorldSpace() return BuildKeyboardModifiers(QGuiApplication::queryKeyboardModifiers()).Shift(); } -AZStd::shared_ptr CreateModularViewportCameraController( - const AzFramework::ViewportId viewportId) -{ - auto controller = AZStd::make_shared(); - - controller->SetCameraViewportContextBuilderCallback( - [viewportId](AZStd::unique_ptr& cameraViewportContext) - { - cameraViewportContext = AZStd::make_unique(viewportId); - }); - - controller->SetCameraPriorityBuilderCallback( - [](AtomToolsFramework::CameraControllerPriorityFn& cameraControllerPriorityFn) - { - cameraControllerPriorityFn = AtomToolsFramework::DefaultCameraControllerPriority; - }); - - controller->SetCameraPropsBuilderCallback( - [](AzFramework::CameraProps& cameraProps) - { - cameraProps.m_rotateSmoothnessFn = [] - { - return SandboxEditor::CameraRotateSmoothness(); - }; - - cameraProps.m_translateSmoothnessFn = [] - { - return SandboxEditor::CameraTranslateSmoothness(); - }; - - cameraProps.m_rotateSmoothingEnabledFn = [] - { - return SandboxEditor::CameraRotateSmoothingEnabled(); - }; - - cameraProps.m_translateSmoothingEnabledFn = [] - { - return SandboxEditor::CameraTranslateSmoothingEnabled(); - }; - }); - - controller->SetCameraListBuilderCallback( - [viewportId](AzFramework::Cameras& cameras) - { - const auto hideCursor = [viewportId] - { - AzToolsFramework::ViewportInteraction::ViewportMouseCursorRequestBus::Event( - viewportId, &AzToolsFramework::ViewportInteraction::ViewportMouseCursorRequestBus::Events::BeginCursorCapture); - }; - const auto showCursor = [viewportId] - { - AzToolsFramework::ViewportInteraction::ViewportMouseCursorRequestBus::Event( - viewportId, &AzToolsFramework::ViewportInteraction::ViewportMouseCursorRequestBus::Events::EndCursorCapture); - }; - - auto firstPersonRotateCamera = AZStd::make_shared(SandboxEditor::CameraFreeLookChannelId()); - firstPersonRotateCamera->m_rotateSpeedFn = [] - { - return SandboxEditor::CameraRotateSpeed(); - }; - - if (!ed_showCursorCameraLook) - { - // default behavior is to hide the cursor but this can be disabled (useful for remote desktop) - firstPersonRotateCamera->SetActivationBeganFn(hideCursor); - firstPersonRotateCamera->SetActivationEndedFn(showCursor); - } - - auto firstPersonPanCamera = - AZStd::make_shared(SandboxEditor::CameraFreePanChannelId(), AzFramework::LookPan); - firstPersonPanCamera->m_panSpeedFn = [] - { - return SandboxEditor::CameraPanSpeed(); - }; - firstPersonPanCamera->m_invertPanXFn = [] - { - return SandboxEditor::CameraPanInvertedX(); - }; - firstPersonPanCamera->m_invertPanYFn = [] - { - return SandboxEditor::CameraPanInvertedY(); - }; - - AzFramework::TranslateCameraInputChannels translateCameraInputChannels; - translateCameraInputChannels.m_leftChannelId = SandboxEditor::CameraTranslateLeftChannelId(); - translateCameraInputChannels.m_rightChannelId = SandboxEditor::CameraTranslateRightChannelId(); - translateCameraInputChannels.m_forwardChannelId = SandboxEditor::CameraTranslateForwardChannelId(); - translateCameraInputChannels.m_backwardChannelId = SandboxEditor::CameraTranslateBackwardChannelId(); - translateCameraInputChannels.m_upChannelId = SandboxEditor::CameraTranslateUpChannelId(); - translateCameraInputChannels.m_downChannelId = SandboxEditor::CameraTranslateDownChannelId(); - translateCameraInputChannels.m_boostChannelId = SandboxEditor::CameraTranslateBoostChannelId(); - - auto firstPersonTranslateCamera = - AZStd::make_shared(AzFramework::LookTranslation, translateCameraInputChannels); - firstPersonTranslateCamera->m_translateSpeedFn = [] - { - return SandboxEditor::CameraTranslateSpeed(); - }; - firstPersonTranslateCamera->m_boostMultiplierFn = [] - { - return SandboxEditor::CameraBoostMultiplier(); - }; - - auto firstPersonWheelCamera = AZStd::make_shared(); - firstPersonWheelCamera->m_scrollSpeedFn = [] - { - return SandboxEditor::CameraScrollSpeed(); - }; - - auto orbitCamera = AZStd::make_shared(SandboxEditor::CameraOrbitChannelId()); - orbitCamera->SetLookAtFn( - [viewportId](const AZ::Vector3& position, const AZ::Vector3& direction) -> AZStd::optional - { - AZStd::optional lookAtAfterInterpolation; - AtomToolsFramework::ModularViewportCameraControllerRequestBus::EventResult( - lookAtAfterInterpolation, viewportId, - &AtomToolsFramework::ModularViewportCameraControllerRequestBus::Events::LookAtAfterInterpolation); - - // initially attempt to use the last set look at point after an interpolation has finished - if (lookAtAfterInterpolation.has_value()) - { - return *lookAtAfterInterpolation; - } - - const float RayDistance = 1000.0f; - AzFramework::RenderGeometry::RayRequest ray; - ray.m_startWorldPosition = position; - ray.m_endWorldPosition = position + direction * RayDistance; - ray.m_onlyVisible = true; - - AzFramework::RenderGeometry::RayResult renderGeometryIntersectionResult; - AzFramework::RenderGeometry::IntersectorBus::EventResult( - renderGeometryIntersectionResult, AzToolsFramework::GetEntityContextId(), - &AzFramework::RenderGeometry::IntersectorBus::Events::RayIntersect, ray); - - // attempt a ray intersection with any visible mesh and return the intersection position if successful - if (renderGeometryIntersectionResult) - { - return renderGeometryIntersectionResult.m_worldPosition; - } - - // if there is no selection or no intersection, fallback to default camera orbit behavior (ground plane - // intersection) - return {}; - }); - - auto orbitRotateCamera = AZStd::make_shared(SandboxEditor::CameraOrbitLookChannelId()); - orbitRotateCamera->m_rotateSpeedFn = [] - { - return SandboxEditor::CameraRotateSpeed(); - }; - orbitRotateCamera->m_invertYawFn = [] - { - return SandboxEditor::CameraOrbitYawRotationInverted(); - }; - - auto orbitTranslateCamera = - AZStd::make_shared(AzFramework::OrbitTranslation, translateCameraInputChannels); - orbitTranslateCamera->m_translateSpeedFn = [] - { - return SandboxEditor::CameraTranslateSpeed(); - }; - orbitTranslateCamera->m_boostMultiplierFn = [] - { - return SandboxEditor::CameraBoostMultiplier(); - }; - - auto orbitDollyWheelCamera = AZStd::make_shared(); - orbitDollyWheelCamera->m_scrollSpeedFn = [] - { - return SandboxEditor::CameraScrollSpeed(); - }; - - auto orbitDollyMoveCamera = - AZStd::make_shared(SandboxEditor::CameraOrbitDollyChannelId()); - orbitDollyMoveCamera->m_cursorSpeedFn = [] - { - return SandboxEditor::CameraDollyMotionSpeed(); - }; - - auto orbitPanCamera = AZStd::make_shared(SandboxEditor::CameraOrbitPanChannelId(), AzFramework::OrbitPan); - orbitPanCamera->m_panSpeedFn = [] - { - return SandboxEditor::CameraPanSpeed(); - }; - orbitPanCamera->m_invertPanXFn = [] - { - return SandboxEditor::CameraPanInvertedX(); - }; - orbitPanCamera->m_invertPanYFn = [] - { - return SandboxEditor::CameraPanInvertedY(); - }; - - orbitCamera->m_orbitCameras.AddCamera(orbitRotateCamera); - orbitCamera->m_orbitCameras.AddCamera(orbitTranslateCamera); - orbitCamera->m_orbitCameras.AddCamera(orbitDollyWheelCamera); - orbitCamera->m_orbitCameras.AddCamera(orbitDollyMoveCamera); - orbitCamera->m_orbitCameras.AddCamera(orbitPanCamera); - - cameras.AddCamera(firstPersonRotateCamera); - cameras.AddCamera(firstPersonPanCamera); - cameras.AddCamera(firstPersonTranslateCamera); - cameras.AddCamera(firstPersonWheelCamera); - cameras.AddCamera(orbitCamera); - }); - - return controller; -} - void EditorViewportWidget::SetViewportId(int id) { CViewport::SetViewportId(id); @@ -1287,8 +1070,9 @@ void EditorViewportWidget::SetViewportId(int id) m_renderViewport->GetControllerList()->Add(AZStd::make_shared()); - m_renderViewport->GetControllerList()->Add(CreateModularViewportCameraController(AzFramework::ViewportId(id))); - + m_editorModularViewportCameraComposer = AZStd::make_unique(AzFramework::ViewportId(id)); + m_renderViewport->GetControllerList()->Add(m_editorModularViewportCameraComposer->CreateModularViewportCameraController()); + m_renderViewport->SetViewportSettings(&g_EditorViewportSettings); UpdateScene(); @@ -1648,7 +1432,7 @@ void EditorViewportWidget::SetViewTM(const Matrix34& camMatrix, bool bMoveOnly) { // Should be impossible anyways AZ_Assert(false, "Internal logic error - view entity Id and view source type out of sync. Please report this as a bug"); - return ShouldUpdateObject::No; + return ShouldUpdateObject::No; } // Check that the current view is the same view as the view entity view @@ -1741,7 +1525,7 @@ AZ::EntityId EditorViewportWidget::GetCurrentViewEntityId() &AZ::RPI::ViewProviderBus::Events::GetView ); - const bool isViewEntityCorrect = viewEntityView == GetCurrentAtomView(); + [[maybe_unused]] const bool isViewEntityCorrect = viewEntityView == GetCurrentAtomView(); AZ_Error("EditorViewportWidget", isViewEntityCorrect, "GetCurrentViewEntityId called while the current view is being changed. " "You may get inconsistent results if you make use of the returned entity ID. " @@ -1975,12 +1759,12 @@ Vec3 EditorViewportWidget::ViewToWorld( { AZ_PROFILE_FUNCTION(Editor); - AZ_UNUSED(collideWithTerrain) - AZ_UNUSED(onlyTerrain) - AZ_UNUSED(bTestRenderMesh) - AZ_UNUSED(bSkipVegetation) - AZ_UNUSED(bSkipVegetation) - AZ_UNUSED(collideWithObject) + AZ_UNUSED(collideWithTerrain); + AZ_UNUSED(onlyTerrain); + AZ_UNUSED(bTestRenderMesh); + AZ_UNUSED(bSkipVegetation); + AZ_UNUSED(bSkipVegetation); + AZ_UNUSED(collideWithObject); auto ray = m_renderViewport->ViewportScreenToWorldRay(AzToolsFramework::ViewportInteraction::ScreenPointFromQPoint(vp)); if (!ray.has_value()) @@ -2004,82 +1788,15 @@ Vec3 EditorViewportWidget::ViewToWorld( ////////////////////////////////////////////////////////////////////////// Vec3 EditorViewportWidget::ViewToWorldNormal(const QPoint& vp, bool onlyTerrain, bool bTestRenderMesh) { - AZ_UNUSED(vp) - AZ_UNUSED(onlyTerrain) - AZ_UNUSED(bTestRenderMesh) + AZ_UNUSED(vp); + AZ_UNUSED(onlyTerrain); + AZ_UNUSED(bTestRenderMesh); AZ_PROFILE_FUNCTION(Editor); return Vec3(0, 0, 1); } -////////////////////////////////////////////////////////////////////////// -bool EditorViewportWidget::AdjustObjectPosition(const ray_hit& hit, Vec3& outNormal, Vec3& outPos) const -{ - Matrix34A objMat, objMatInv; - Matrix33 objRot, objRotInv; - - if (hit.pCollider->GetiForeignData() != PHYS_FOREIGN_ID_STATIC) - { - return false; - } - - IRenderNode* pNode = (IRenderNode*) hit.pCollider->GetForeignData(PHYS_FOREIGN_ID_STATIC); - if (!pNode || !pNode->GetEntityStatObj()) - { - return false; - } - - IStatObj* pEntObject = pNode->GetEntityStatObj(hit.partid, 0, &objMat, false); - if (!pEntObject || !pEntObject->GetRenderMesh()) - { - return false; - } - - objRot = Matrix33(objMat); - objRot.NoScale(); // No scale. - objRotInv = objRot; - objRotInv.Invert(); - - float fWorldScale = objMat.GetColumn(0).GetLength(); // GetScale - float fWorldScaleInv = 1.0f / fWorldScale; - - // transform decal into object space - objMatInv = objMat; - objMatInv.Invert(); - - // put into normal object space hit direction of projection - Vec3 invhitn = -(hit.n); - Vec3 vOS_HitDir = objRotInv.TransformVector(invhitn).GetNormalized(); - - // put into position object space hit position - Vec3 vOS_HitPos = objMatInv.TransformPoint(hit.pt); - vOS_HitPos -= vOS_HitDir * RENDER_MESH_TEST_DISTANCE * fWorldScaleInv; - - IRenderMesh* pRM = pEntObject->GetRenderMesh(); - - AABB aabbRNode; - pRM->GetBBox(aabbRNode.min, aabbRNode.max); - Vec3 vOut(0, 0, 0); - if (!Intersect::Ray_AABB(Ray(vOS_HitPos, vOS_HitDir), aabbRNode, vOut)) - { - return false; - } - - if (!pRM || !pRM->GetVerticesCount()) - { - return false; - } - - if (RayRenderMeshIntersection(pRM, vOS_HitPos, vOS_HitDir, outPos, outNormal)) - { - outNormal = objRot.TransformVector(outNormal).GetNormalized(); - outPos = objMat.TransformPoint(outPos); - return true; - } - return false; -} - ////////////////////////////////////////////////////////////////////////// bool EditorViewportWidget::RayRenderMeshIntersection(IRenderMesh* pRenderMesh, const Vec3& vInPos, const Vec3& vInDir, Vec3& vOutPos, Vec3& vOutNormal) const { @@ -2512,7 +2229,7 @@ void EditorViewportWidget::SetViewFromEntityPerspective(const AZ::EntityId& enti void EditorViewportWidget::SetViewAndMovementLockFromEntityPerspective(const AZ::EntityId& entityId, [[maybe_unused]] bool lockCameraMovement) { // This is an editor event, so is only serviced during edit mode, not play game mode - // + // if (m_playInEditorState != PlayInEditorState::Editor) { AZ_Warning("EditorViewportWidget", false, @@ -2634,7 +2351,6 @@ void EditorViewportWidget::ShowCursor() ////////////////////////////////////////////////////////////////////////// void EditorViewportWidget::PushDisableRendering() { - assert(m_disableRenderingCount >= 0); ++m_disableRenderingCount; } diff --git a/Code/Editor/EditorViewportWidget.h b/Code/Editor/EditorViewportWidget.h index a75928b353..9da5e3f9a1 100644 --- a/Code/Editor/EditorViewportWidget.h +++ b/Code/Editor/EditorViewportWidget.h @@ -19,6 +19,7 @@ #include "Undo/Undo.h" #include "Util/PredefinedAspectRatios.h" #include "EditorViewportSettings.h" +#include "EditorModularViewportCameraComposer.h" #include #include @@ -220,7 +221,6 @@ private: // Draw a selected region if it has been selected void RenderSelectedRegion(); - bool AdjustObjectPosition(const ray_hit& hit, Vec3& outNormal, Vec3& outPos) const; bool RayRenderMeshIntersection(IRenderMesh* pRenderMesh, const Vec3& vInPos, const Vec3& vInDir, Vec3& vOutPos, Vec3& vOutNormal) const; bool AddCameraMenuItems(QMenu* menu); @@ -370,6 +370,8 @@ private: // This widget holds a reference to the manipulator manage because its responsible for drawing manipulators AZStd::shared_ptr m_manipulatorManager; + AZStd::unique_ptr m_editorModularViewportCameraComposer; + // Helper for getting EditorEntityNotificationBus events AZStd::unique_ptr m_editorEntityNotifications; @@ -390,7 +392,3 @@ private: AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING }; - -//! Creates a modular camera controller in the configuration used by the editor viewport. -SANDBOX_API AZStd::shared_ptr CreateModularViewportCameraController( - const AzFramework::ViewportId viewportId); diff --git a/Code/Editor/Export/ExportManager.cpp b/Code/Editor/Export/ExportManager.cpp index 7601740033..5527aa6ce6 100644 --- a/Code/Editor/Export/ExportManager.cpp +++ b/Code/Editor/Export/ExportManager.cpp @@ -356,10 +356,9 @@ void CExportManager::AddMesh(Export::CObject* pObj, const IIndexedMesh* pIndMesh for (int v = 0; v < meshDesc.m_nCoorCount; ++v) { - Export::UV tc; - meshDesc.m_pTexCoord[v].ExportTo(tc.u, tc.v); - tc.v = 1.0f - tc.v; - pObj->m_texCoords.push_back(tc); + Vec2 uv = meshDesc.m_pTexCoord[v].GetUV(); + uv.y = 1.0f - uv.y; + pObj->m_texCoords.push_back({uv.x,uv.y}); } if (pIndMesh->GetSubSetCount() && !(pIndMesh->GetSubSetCount() == 1 && pIndMesh->GetSubSet(0).nNumIndices == 0)) @@ -622,7 +621,7 @@ bool CExportManager::ShowFBXExportDialog() if (pivotObjectNode && !pivotObjectNode->IsGroupNode()) { - m_pivotEntityObject = static_cast(GetIEditor()->GetObjectManager()->FindObject(pivotObjectNode->GetName())); + m_pivotEntityObject = static_cast(GetIEditor()->GetObjectManager()->FindObject(pivotObjectNode->GetName().c_str())); if (m_pivotEntityObject) { @@ -807,7 +806,7 @@ void CExportManager::FillAnimTimeNode(XmlNodeRef writeNode, CTrackViewAnimNode* if (numAllTracks > 0) { - XmlNodeRef objNode = writeNode->createNode(CleanXMLText(pObjectNode->GetName()).toUtf8().data()); + XmlNodeRef objNode = writeNode->createNode(CleanXMLText(pObjectNode->GetName().c_str()).toUtf8().data()); writeNode->setAttr("time", m_animTimeExportPrimarySequenceCurrentTime); for (unsigned int trackID = 0; trackID < numAllTracks; ++trackID) @@ -818,7 +817,7 @@ void CExportManager::FillAnimTimeNode(XmlNodeRef writeNode, CTrackViewAnimNode* if (trackType == AnimParamType::Animation || trackType == AnimParamType::Sound) { - QString childName = CleanXMLText(childTrack->GetName()); + QString childName = CleanXMLText(childTrack->GetName().c_str()); if (childName.isEmpty()) { @@ -976,7 +975,7 @@ bool CExportManager::AddObjectsFromSequence(CTrackViewSequence* pSequence, XmlNo else { // In case of exporting animation/sound times data - const QString sequenceName = pSubSequence->GetName(); + const QString sequenceName = QString::fromUtf8(pSubSequence->GetName().c_str()); XmlNodeRef subSeqNode2 = seqNode->createNode(sequenceName.toUtf8().data()); if (sequenceName == m_animTimeExportPrimarySequenceName) @@ -1253,14 +1252,14 @@ void CExportManager::SaveNodeKeysTimeToXML() m_soundKeyTimeExport = exportDialog.IsSoundExportChecked(); QString filters = "All files (*.xml)"; - QString defaultName = QString(pSequence->GetName()) + ".xml"; + QString defaultName = QString::fromUtf8(pSequence->GetName().c_str()) + ".xml"; QtUtil::QtMFCScopedHWNDCapture cap; CAutoDirectoryRestoreFileDialog dlg(QFileDialog::AcceptSave, QFileDialog::AnyFile, "xml", defaultName, filters, {}, {}, cap); if (dlg.exec()) { - m_animTimeNode = XmlHelpers::CreateXmlNode(pSequence->GetName()); - m_animTimeExportPrimarySequenceName = pSequence->GetName(); + m_animTimeNode = XmlHelpers::CreateXmlNode(pSequence->GetName().c_str()); + m_animTimeExportPrimarySequenceName = QString::fromUtf8(pSequence->GetName().c_str()); m_data.Clear(); m_animTimeExportPrimarySequenceCurrentTime = 0.0; diff --git a/Code/Editor/FBXExporterDialog.cpp b/Code/Editor/FBXExporterDialog.cpp index bae4b9bf7e..b080362b97 100644 --- a/Code/Editor/FBXExporterDialog.cpp +++ b/Code/Editor/FBXExporterDialog.cpp @@ -17,12 +17,6 @@ AZ_PUSH_DISABLE_DLL_EXPORT_MEMBER_WARNING #include AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING - -namespace -{ - const uint kDefaultFPS = 30u; -} - CFBXExporterDialog::CFBXExporterDialog(bool bDisplayOnlyFPSSetting, QWidget* pParent) : QDialog(pParent) , m_ui(new Ui::FBXExporterDialog) diff --git a/Code/Editor/GameEngine.cpp b/Code/Editor/GameEngine.cpp index 137d14c844..4b463efe0a 100644 --- a/Code/Editor/GameEngine.cpp +++ b/Code/Editor/GameEngine.cpp @@ -497,8 +497,7 @@ bool CGameEngine::LoadLevel( [[maybe_unused]] bool bDeleteAIGraph, bool bReleaseResources) { - LOADING_TIME_PROFILE_SECTION(GetIEditor()->GetSystem()); - m_bLevelLoaded = false; + m_bLevelLoaded = false; CLogFile::FormatLine("Loading map '%s' into engine...", m_levelPath.toUtf8().data()); // Switch the current directory back to the Primary CD folder first. // The engine might have trouble to find some files when the current diff --git a/Code/Editor/GameExporter.h b/Code/Editor/GameExporter.h index 3e3c57fb4c..19ec601ff7 100644 --- a/Code/Editor/GameExporter.h +++ b/Code/Editor/GameExporter.h @@ -102,7 +102,6 @@ private: AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING bool m_bAutoExportMode; - int m_numExportedMaterials; static CGameExporter* m_pCurrentExporter; }; diff --git a/Code/Editor/Geometry/TriMesh.cpp b/Code/Editor/Geometry/TriMesh.cpp index d56aa038b5..efc201095d 100644 --- a/Code/Editor/Geometry/TriMesh.cpp +++ b/Code/Editor/Geometry/TriMesh.cpp @@ -161,61 +161,6 @@ void* CTriMesh::ReAllocElements(void* old_ptr, int new_elem_num, int size_of_ele return realloc(old_ptr, new_elem_num * size_of_element); } -////////////////////////////////////////////////////////////////////////// -// Unshare all vertices and split on 3 arrays, positions/texcoords. -////////////////////////////////////////////////////////////////////////// -void CTriMesh::SetFromMesh(CMesh& mesh) -{ - bbox = mesh.m_bbox; - - int maxVerts = mesh.GetIndexCount(); - - SetVertexCount(maxVerts); - SetUVCount(maxVerts); - if (mesh.m_pColor0) - { - SetColorsCount(maxVerts); - } - - SetFacesCount(mesh.GetIndexCount()); - - int numv = 0; - int numface = 0; - for (int nSubset = 0; nSubset < mesh.GetSubSetCount(); nSubset++) - { - SMeshSubset& subset = mesh.m_subsets[nSubset]; - for (int i = subset.nFirstIndexId; i < subset.nFirstIndexId + subset.nNumIndices; i += 3) - { - CTriFace& face = pFaces[numface++]; - for (int j = 0; j < 3; j++) - { - int idx = mesh.m_pIndices[i + j]; - pVertices[numv].pos = mesh.m_pPositions ? mesh.m_pPositions[idx] : mesh.m_pPositionsF16[idx].ToVec3(); - pWeights[numv] = 0.0f; - pUV[numv] = mesh.m_pTexCoord[idx]; - if (mesh.m_pColor0) - { - pColors[numv] = mesh.m_pColor0[idx]; - } - - face.v [j] = numv; - face.uv[j] = numv; - face.n [j] = mesh.m_pNorms[idx].GetN(); - face.MatID = static_cast(subset.nMatID); - face.flags = 0; - - numv++; - } - } - } - SetFacesCount(numface); - SharePositions(); - ShareUV(); - UpdateEdges(); - - CalcFaceNormals(); -} - ///////////////////////////////////////////////////////////////////////////////////// inline int FindVertexInHash(const Vec3& vPosToFind, const CTriVertex* pVectors, std::vector& hash, float fEpsilon) { @@ -360,76 +305,6 @@ void CTriMesh::CalcFaceNormals() #define TEX_EPS 0.001f #define VER_EPS 0.001f -////////////////////////////////////////////////////////////////////////// -void CTriMesh::UpdateIndexedMesh(IIndexedMesh* pIndexedMesh) const -{ - { - const int maxVerts = nFacesCount * 3; - - pIndexedMesh->SetVertexCount(maxVerts); - pIndexedMesh->SetTexCoordCount(maxVerts); - if (pColors) - { - pIndexedMesh->SetColorCount(maxVerts); - } - pIndexedMesh->SetIndexCount(0); - pIndexedMesh->SetFaceCount(nFacesCount); - } - - ////////////////////////////////////////////////////////////////////////// - // To find really used materials - std::vector usedMaterialIds; - uint16 MatIdToSubset[MAX_SUB_MATERIALS]; - uint16 nLastSubsetId = 0; - memset(MatIdToSubset, 0, sizeof(MatIdToSubset)); - ////////////////////////////////////////////////////////////////////////// - - CMesh& mesh = *pIndexedMesh->GetMesh(); - AABB bb; - bb.Reset(); - for (int i = 0; i < nFacesCount; ++i) - { - const CTriFace& face = pFaces[i]; - SMeshFace& meshFace = mesh.m_pFaces[i]; - - // Remap new used material ID to index of chunk id. - if (!MatIdToSubset[face.MatID]) - { - MatIdToSubset[face.MatID] = 1 + nLastSubsetId++; - usedMaterialIds.push_back(face.MatID); // Order of material ids in usedMaterialIds correspond to the indices of chunks. - } - meshFace.nSubset = static_cast(MatIdToSubset[face.MatID] - 1); - - for (int j = 0; j < 3; ++j) - { - const int dstVIdx = i * 3 + j; - - mesh.m_pPositions[dstVIdx] = pVertices[face.v[j]].pos; - mesh.m_pNorms[dstVIdx] = SMeshNormal(face.n[j]); - mesh.m_pTexCoord[dstVIdx] = pUV[face.uv[j]]; - if (pColors) - { - mesh.m_pColor0[dstVIdx] = pColors[face.v[j]]; - } - - meshFace.v[j] = dstVIdx; - - bb.Add(mesh.m_pPositions[dstVIdx]); - } - } - - pIndexedMesh->SetBBox(bb); - - pIndexedMesh->SetSubSetCount(static_cast(usedMaterialIds.size())); - for (int i = 0; i < usedMaterialIds.size(); i++) - { - pIndexedMesh->SetSubsetMaterialId(i, usedMaterialIds[i]); - } - - pIndexedMesh->Optimize(); -} - - ////////////////////////////////////////////////////////////////////////// void CTriMesh::CopyStream(CTriMesh& fromMesh, int stream) { diff --git a/Code/Editor/Geometry/TriMesh.h b/Code/Editor/Geometry/TriMesh.h index 9bb73f945d..a6c58b8f9d 100644 --- a/Code/Editor/Geometry/TriMesh.h +++ b/Code/Editor/Geometry/TriMesh.h @@ -198,8 +198,6 @@ public: void GetStreamInfo(int stream, void*& pStream, int& nElementSize) const; int GetStreamSize(int stream) const { return m_streamSize[stream]; }; - void SetFromMesh(CMesh& mesh); - void UpdateIndexedMesh(IIndexedMesh* pIndexedMesh) const; // Calculate per face normal. void CalcFaceNormals(); diff --git a/Code/Editor/IEditor.h b/Code/Editor/IEditor.h index 7d0fc653fa..de7b0ec3f9 100644 --- a/Code/Editor/IEditor.h +++ b/Code/Editor/IEditor.h @@ -6,9 +6,6 @@ * */ - -#ifndef CRYINCLUDE_EDITOR_IEDITOR_H -#define CRYINCLUDE_EDITOR_IEDITOR_H #pragma once #ifdef PLUGIN_EXPORTS @@ -25,6 +22,7 @@ #include #include +#include class QMenu; @@ -738,4 +736,5 @@ struct IInitializeUIInfo virtual void SetInfoText(const char* text) = 0; }; -#endif // CRYINCLUDE_EDITOR_IEDITOR_H +AZ_DECLARE_BUDGET(Editor); + diff --git a/Code/Editor/IEditorImpl.cpp b/Code/Editor/IEditorImpl.cpp index 1e268d64ef..880773966b 100644 --- a/Code/Editor/IEditorImpl.cpp +++ b/Code/Editor/IEditorImpl.cpp @@ -84,12 +84,6 @@ AZ_POP_DISABLE_WARNING #include "IEditorPanelUtils.h" #include "EditorPanelUtils.h" - -// even in Release mode, the editor will return its heap, because there's no Profile build configuration for the editor -#ifdef _RELEASE -#undef _RELEASE -#endif - #include "Core/QtEditorApplication.h" // for Editor::EditorQtApplication static CCryEditDoc * theDocument; @@ -104,8 +98,6 @@ static CCryEditDoc * theDocument; #define VERIFY(EXPRESSION) { auto e = EXPRESSION; assert(e); } #endif -#undef GetCommandLine - const char* CEditorImpl::m_crashLogFileName = "SessionStatus/editor_statuses.json"; CEditorImpl::CEditorImpl() @@ -405,8 +397,6 @@ void CEditorImpl::Update() // Make sure this is not called recursively m_bUpdates = false; - FUNCTION_PROFILER(GetSystem(), PROFILE_EDITOR); - //@FIXME: Restore this latter. //if (GetGameEngine() && GetGameEngine()->IsLevelLoaded()) { diff --git a/Code/Editor/IconManager.cpp b/Code/Editor/IconManager.cpp index dc9eb56b88..7732ae8155 100644 --- a/Code/Editor/IconManager.cpp +++ b/Code/Editor/IconManager.cpp @@ -27,19 +27,6 @@ namespace { - // Object names in this array must correspond to EObject enumeration. - const char* g_ObjectNames[eStatObject_COUNT] = - { - "Objects/Arrow.cgf", - "Objects/Axis.cgf", - "Objects/Sphere.cgf", - "Objects/Anchor.cgf", - "Objects/entrypoint.cgf", - "Objects/hidepoint.cgf", - "Objects/hidepoint_sec.cgf", - "Objects/reinforcement_point.cgf", - }; - const char* g_IconNames[eIcon_COUNT] = { "Icons/ScaleWarning.png", diff --git a/Code/Editor/IconManager.h b/Code/Editor/IconManager.h index d6684f4cc3..7183f036ed 100644 --- a/Code/Editor/IconManager.h +++ b/Code/Editor/IconManager.h @@ -15,9 +15,6 @@ #pragma once -struct IStatObj; -struct IMaterial; - #include "Include/IIconManager.h" // for IIconManager #include "IEditor.h" // for IDocListener diff --git a/Code/Editor/Include/Command.h b/Code/Editor/Include/Command.h index e4fea5a3e7..dfdcec78ef 100644 --- a/Code/Editor/Include/Command.h +++ b/Code/Editor/Include/Command.h @@ -8,14 +8,12 @@ // Description : Classes to deal with commands - - -#ifndef CRYINCLUDE_EDITOR_INCLUDE_COMMAND_H -#define CRYINCLUDE_EDITOR_INCLUDE_COMMAND_H #pragma once #include - +#include +#include +#include #include "Util/EditorUtils.h" inline AZStd::string ToString(const QString& s) @@ -23,8 +21,20 @@ inline AZStd::string ToString(const QString& s) return s.toUtf8().data(); } + class CCommand { + static inline bool FromString(int32 &val, const char* s) { + if(!s) + { + return false; + } + val = (int)strtol(s, nullptr, 10); + if(val==0 && errno!=0) { + return false; + } + return true; + } public: CCommand( const AZStd::string& module, @@ -77,7 +87,7 @@ public: return false; } } - int GetArgCount() const + size_t GetArgCount() const { return m_args.size(); } const AZStd::string& GetArg(int i) const { @@ -85,7 +95,7 @@ public: return m_args[i]; } private: - DynArray m_args; + AZStd::vector m_args; unsigned char m_stringFlags; // This is needed to quote string parameters when logging a command. }; @@ -115,7 +125,7 @@ protected: static inline AZStd::string ToString_(const char* val) { return val; } template - static bool FromString_(T& t, const char* s) { return ::FromString(t, s); } + static bool FromString_(T& t, const char* s) { return FromString(t, s); } static inline bool FromString_(const char*& val, const char* s) { return (val = s) != 0; } @@ -789,4 +799,3 @@ QString CCommand6::Execute(const CCommand::CArgs& args) } return ""; } -#endif // CRYINCLUDE_EDITOR_INCLUDE_COMMAND_H diff --git a/Code/Editor/Include/IEditorMaterial.h b/Code/Editor/Include/IEditorMaterial.h index a117020d19..487246eb60 100644 --- a/Code/Editor/Include/IEditorMaterial.h +++ b/Code/Editor/Include/IEditorMaterial.h @@ -6,8 +6,6 @@ * */ #pragma once -#ifndef CRYINCLUDE_EDITOR_INCLUDE_IEDITORMATERIAL_H -#define CRYINCLUDE_EDITOR_INCLUDE_IEDITORMATERIAL_H #include "BaseLibraryItem.h" @@ -20,5 +18,3 @@ struct IEditorMaterial virtual _smart_ptr GetMatInfo(bool bUseExistingEngineMaterial = false) = 0; virtual void DisableHighlightForFrame() = 0; }; - -#endif diff --git a/Code/Editor/Include/IFileUtil.h b/Code/Editor/Include/IFileUtil.h index 700e04f6d3..e179f892d9 100644 --- a/Code/Editor/Include/IFileUtil.h +++ b/Code/Editor/Include/IFileUtil.h @@ -9,6 +9,7 @@ #pragma once #include "../Include/SandboxAPI.h" +#include #include class QWidget; @@ -103,7 +104,7 @@ struct IFileUtil } }; - typedef DynArray FileArray; + using FileArray = AZStd::vector; typedef bool (* ScanDirectoryUpdateCallBack)(const QString& msg); diff --git a/Code/Editor/Include/IObjectManager.h b/Code/Editor/Include/IObjectManager.h index 360cc8fe34..fb99a50bb0 100644 --- a/Code/Editor/Include/IObjectManager.h +++ b/Code/Editor/Include/IObjectManager.h @@ -89,7 +89,7 @@ public: //! Get array of objects, managed by manager (not contain sub objects of groups). //! @param layer if 0 get objects for all layers, or layer to get objects from. virtual void GetObjects(CBaseObjectsArray& objects) const = 0; - virtual void GetObjects(DynArray& objects) const = 0; + //virtual void GetObjects(DynArray& objects) const = 0; //! Get array of objects that pass the filter. //! @param filter The filter functor, return true if you want to get the certain obj, return false if want to skip it. diff --git a/Code/Editor/Include/ISubObjectSelectionReferenceFrameCalculator.h b/Code/Editor/Include/ISubObjectSelectionReferenceFrameCalculator.h deleted file mode 100644 index ff82b57de1..0000000000 --- a/Code/Editor/Include/ISubObjectSelectionReferenceFrameCalculator.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Calculate the reference frame for sub-object selections. - - -#ifndef CRYINCLUDE_EDITOR_INCLUDE_ISUBOBJECTSELECTIONREFERENCEFRAMECALCULATOR_H -#define CRYINCLUDE_EDITOR_INCLUDE_ISUBOBJECTSELECTIONREFERENCEFRAMECALCULATOR_H -#pragma once - - -class ISubObjectSelectionReferenceFrameCalculator -{ -public: - virtual void SetExplicitFrame(bool bAnySelected, const Matrix34& refFrame) = 0; -}; - -#endif // CRYINCLUDE_EDITOR_INCLUDE_ISUBOBJECTSELECTIONREFERENCEFRAMECALCULATOR_H diff --git a/Code/Editor/LayoutWnd.cpp b/Code/Editor/LayoutWnd.cpp index 7f73c313d9..aa2a008844 100644 --- a/Code/Editor/LayoutWnd.cpp +++ b/Code/Editor/LayoutWnd.cpp @@ -183,7 +183,6 @@ void CLayoutWnd::MaximizeViewport(int paneId) QString viewClass = m_viewType[paneId]; - const QRect rc = rect(); if (!m_bMaximized) { CLayoutViewPane* pViewPane = GetViewPane(paneId); diff --git a/Code/Editor/LevelFileDialog.cpp b/Code/Editor/LevelFileDialog.cpp index c0c2b96c59..3f3077a2c4 100644 --- a/Code/Editor/LevelFileDialog.cpp +++ b/Code/Editor/LevelFileDialog.cpp @@ -32,22 +32,6 @@ static const char lastLoadPathFilename[] = "lastLoadPath.preset"; // Folder in which levels are stored static const char kLevelsFolder[] = "Levels"; -// List of folder names that are used to detect a level folder -static const char* kLevelFolderNames[] = -{ - "Layers", - "Minimap", - "LevelData" -}; - -// List of files that are used to detect a level folder -static const char* kLevelFileNames[] = -{ - "level.pak", - "filelist.xml", - "levelshadercache.pak", -}; - CLevelFileDialog::CLevelFileDialog(bool openDialog, QWidget* parent) : QDialog(parent) , m_bOpenDialog(openDialog) diff --git a/Code/Editor/LevelFileDialog.h b/Code/Editor/LevelFileDialog.h index 93d8e4eb9b..6347eb946a 100644 --- a/Code/Editor/LevelFileDialog.h +++ b/Code/Editor/LevelFileDialog.h @@ -64,7 +64,6 @@ private: QString m_fileName; QString m_filter; const bool m_bOpenDialog; - bool m_initialized = false; LevelTreeModel* const m_model; LevelTreeModelFilter* const m_filterModel; }; diff --git a/Code/Editor/Lib/Tests/IEditorMock.h b/Code/Editor/Lib/Tests/IEditorMock.h index 242bf4d25c..30f1d23576 100644 --- a/Code/Editor/Lib/Tests/IEditorMock.h +++ b/Code/Editor/Lib/Tests/IEditorMock.h @@ -9,7 +9,6 @@ #include #include -#include #include class CEditorMock @@ -85,8 +84,8 @@ public: MOCK_METHOD0(GetObjectManager, struct IObjectManager* ()); MOCK_METHOD0(GetSettingsManager, CSettingsManager* ()); MOCK_METHOD1(GetDBItemManager, IDataBaseManager* (EDataBaseItemType)); - MOCK_METHOD0(GetMaterialManagerLibrary, IBaseLibraryManager* ()); - MOCK_METHOD0(GetIEditorMaterialManager, IEditorMaterialManager* ()); + MOCK_METHOD0(GetMaterialManagerLibrary, IBaseLibraryManager* ()); + MOCK_METHOD0(GetIEditorMaterialManager, IEditorMaterialManager* ()); MOCK_METHOD0(GetIconManager, IIconManager* ()); MOCK_METHOD0(GetMusicManager, CMusicManager* ()); MOCK_METHOD2(GetTerrainElevation, float(float , float )); @@ -183,7 +182,7 @@ public: MOCK_METHOD0(GetEnv, SSystemGlobalEnvironment* ()); MOCK_METHOD0(GetImageUtil, IImageUtil* ()); MOCK_METHOD0(GetEditorSettings, SEditorSettings* ()); - MOCK_METHOD0(GetLogFile, ILogFile* ()); + MOCK_METHOD0(GetLogFile, ILogFile* ()); MOCK_METHOD0(UnloadPlugins, void()); MOCK_METHOD0(LoadPlugins, void()); MOCK_METHOD1(GetSearchPath, QString(EEditorPathName)); diff --git a/Code/Editor/Lib/Tests/test_ModularViewportCameraController.cpp b/Code/Editor/Lib/Tests/test_ModularViewportCameraController.cpp index 6fcf3faffd..ce5564c7f6 100644 --- a/Code/Editor/Lib/Tests/test_ModularViewportCameraController.cpp +++ b/Code/Editor/Lib/Tests/test_ModularViewportCameraController.cpp @@ -7,6 +7,7 @@ */ #include +#include #include #include #include @@ -19,41 +20,43 @@ namespace UnitTest using AzToolsFramework::ViewportInteraction::MouseInteractionEvent; - class ModularViewportCameraControllerFixture : public AllocatorsTestFixture + class ViewportMouseCursorRequestImpl : public AzToolsFramework::ViewportInteraction::ViewportMouseCursorRequestBus::Handler { public: - static const AzFramework::ViewportId TestViewportId; - - void SetUp() override + void Connect(const AzFramework::ViewportId viewportId, AzToolsFramework::QtEventToAzInputMapper* inputChannelMapper) { - AllocatorsTestFixture::SetUp(); - - m_rootWidget = AZStd::make_unique(); - m_rootWidget->setFixedSize(WidgetSize); - - m_controllerList = AZStd::make_shared(); - m_controllerList->RegisterViewportContext(TestViewportId); - - m_inputChannelMapper = AZStd::make_unique(m_rootWidget.get(), TestViewportId); + AzToolsFramework::ViewportInteraction::ViewportMouseCursorRequestBus::Handler::BusConnect(viewportId); + m_inputChannelMapper = inputChannelMapper; } - void TearDown() override + void Disconnect() { - m_inputChannelMapper.reset(); - - m_controllerList->UnregisterViewportContext(TestViewportId); - m_controllerList.reset(); - m_rootWidget.reset(); - - AllocatorsTestFixture::TearDown(); + AzToolsFramework::ViewportInteraction::ViewportMouseCursorRequestBus::Handler::BusDisconnect(); } - AZStd::unique_ptr m_rootWidget; - AzFramework::ViewportControllerListPtr m_controllerList; - AZStd::unique_ptr m_inputChannelMapper; + // ViewportMouseCursorRequestBus overrides ... + void BeginCursorCapture() override; + void EndCursorCapture() override; + bool IsMouseOver() const override; + + private: + AzToolsFramework::QtEventToAzInputMapper* m_inputChannelMapper = nullptr; }; - const AzFramework::ViewportId ModularViewportCameraControllerFixture::TestViewportId = AzFramework::ViewportId(0); + void ViewportMouseCursorRequestImpl::BeginCursorCapture() + { + m_inputChannelMapper->SetCursorCaptureEnabled(true); + } + + void ViewportMouseCursorRequestImpl::EndCursorCapture() + { + m_inputChannelMapper->SetCursorCaptureEnabled(false); + } + + bool ViewportMouseCursorRequestImpl::IsMouseOver() const + { + return true; + } class TestModularCameraViewportContextImpl : public AtomToolsFramework::ModularCameraViewportContext { @@ -77,94 +80,290 @@ namespace UnitTest AZ::Transform m_cameraTransform = AZ::Transform::CreateIdentity(); }; - TEST_F(ModularViewportCameraControllerFixture, Mouse_movement_does_not_accumulate_excessive_drift_in_modular_viewport_camera) + class ModularViewportCameraControllerFixture : public AllocatorsTestFixture { - AzFramework::NativeWindowHandle nativeWindowHandle = nullptr; + public: + static const AzFramework::ViewportId TestViewportId; - const float deltaTime = 1.0f / 60.0f; // mimic 60fps + void SetUp() override + { + AllocatorsTestFixture::SetUp(); + + m_rootWidget = AZStd::make_unique(); + m_rootWidget->setFixedSize(WidgetSize); + + m_controllerList = AZStd::make_shared(); + m_controllerList->RegisterViewportContext(TestViewportId); + + m_inputChannelMapper = AZStd::make_unique(m_rootWidget.get(), TestViewportId); + + m_settingsRegistry = AZStd::make_unique(); + AZ::SettingsRegistry::Register(m_settingsRegistry.get()); + } + + void TearDown() override + { + AZ::SettingsRegistry::Unregister(m_settingsRegistry.get()); + m_settingsRegistry.reset(); + + m_inputChannelMapper.reset(); + + m_controllerList->UnregisterViewportContext(TestViewportId); + m_controllerList.reset(); + m_rootWidget.reset(); + + AllocatorsTestFixture::TearDown(); + } + + void PrepareCollaborators() + { + AzFramework::NativeWindowHandle nativeWindowHandle = nullptr; + + // listen for events signaled from QtEventToAzInputMapper and forward to the controller list + QObject::connect( + m_inputChannelMapper.get(), &AzToolsFramework::QtEventToAzInputMapper::InputChannelUpdated, m_rootWidget.get(), + [this, nativeWindowHandle](const AzFramework::InputChannel* inputChannel, [[maybe_unused]] QEvent* event) + { + m_controllerList->HandleInputChannelEvent( + AzFramework::ViewportControllerInputEvent{ TestViewportId, nativeWindowHandle, *inputChannel }); + }); + + m_mockWindowRequests.Connect(nativeWindowHandle); + + using ::testing::Return; + // note: WindowRequests is used internally by ModularViewportCameraController, this ensures it returns the viewport size we want + ON_CALL(m_mockWindowRequests, GetClientAreaSize()) + .WillByDefault(Return(AzFramework::WindowSize(WidgetSize.width(), WidgetSize.height()))); + + // respond to begin/end cursor capture events + m_viewportMouseCursorRequests.Connect(TestViewportId, m_inputChannelMapper.get()); + + // create editor modular camera + m_editorModularViewportCameraComposer = AZStd::make_unique(TestViewportId); + auto controller = m_editorModularViewportCameraComposer->CreateModularViewportCameraController(); + + // set some overrides for the test + controller->SetCameraViewportContextBuilderCallback( + [this](AZStd::unique_ptr& cameraViewportContext) + { + cameraViewportContext = AZStd::make_unique(); + m_cameraViewportContextView = cameraViewportContext.get(); + }); + + // disable smoothing in the test + controller->SetCameraPropsBuilderCallback( + [](AzFramework::CameraProps& cameraProps) + { + cameraProps.m_rotateSmoothingEnabledFn = [] + { + return false; + }; + + cameraProps.m_translateSmoothingEnabledFn = [] + { + return false; + }; + }); + + m_controllerList->Add(controller); + } + + void HaltCollaborators() + { + m_editorModularViewportCameraComposer.reset(); + m_mockWindowRequests.Disconnect(); + m_viewportMouseCursorRequests.Disconnect(); + m_cameraViewportContextView = nullptr; + } + + void RepeatDiagonalMouseMovements(const AZStd::function& deltaTimeFn) + { + // move to the center of the screen + const auto start = QPoint(WidgetSize.width() / 2, WidgetSize.height() / 2); + MouseMove(m_rootWidget.get(), start, QPoint(0, 0)); + m_controllerList->UpdateViewport({ TestViewportId, AzFramework::FloatSeconds(deltaTimeFn()), AZ::ScriptTimePoint() }); + + // move mouse diagonally to top right, then to bottom left and back repeatedly + auto current = start; + auto halfDelta = QPoint(200, -200); + const int iterationsPerDiagonal = 50; + for (int diagonals = 0; diagonals < 80; ++diagonals) + { + for (int i = 0; i < iterationsPerDiagonal; ++i) + { + MousePressAndMove(m_rootWidget.get(), current, halfDelta / iterationsPerDiagonal, Qt::MouseButton::RightButton); + m_controllerList->UpdateViewport({ TestViewportId, AzFramework::FloatSeconds(deltaTimeFn()), AZ::ScriptTimePoint() }); + current += halfDelta / iterationsPerDiagonal; + } + + if (diagonals % 2 == 0) + { + halfDelta.setX(halfDelta.x() * -1); + halfDelta.setY(halfDelta.y() * -1); + } + } + + QTest::mouseRelease(m_rootWidget.get(), Qt::MouseButton::RightButton, Qt::KeyboardModifier::NoModifier, current); + m_controllerList->UpdateViewport({ TestViewportId, AzFramework::FloatSeconds(deltaTimeFn()), AZ::ScriptTimePoint() }); + } + + AZStd::unique_ptr m_rootWidget; + AzFramework::ViewportControllerListPtr m_controllerList; + AZStd::unique_ptr m_inputChannelMapper; + ::testing::NiceMock m_mockWindowRequests; + ViewportMouseCursorRequestImpl m_viewportMouseCursorRequests; + AtomToolsFramework::ModularCameraViewportContext* m_cameraViewportContextView = nullptr; + AZStd::unique_ptr m_settingsRegistry; + AZStd::unique_ptr m_editorModularViewportCameraComposer; + }; + + const AzFramework::ViewportId ModularViewportCameraControllerFixture::TestViewportId = AzFramework::ViewportId(0); + + TEST_F(ModularViewportCameraControllerFixture, MouseMovementDoesNotAccumulateExcessiveDriftInModularViewportCameraWithVaryingDeltaTime) + { + SandboxEditor::SetCameraCaptureCursorForLook(false); // Given - // listen for events signaled from QtEventToAzInputMapper and forward to the controller list - QObject::connect( - m_inputChannelMapper.get(), &AzToolsFramework::QtEventToAzInputMapper::InputChannelUpdated, m_rootWidget.get(), - [this, nativeWindowHandle](const AzFramework::InputChannel* inputChannel, [[maybe_unused]] QEvent* event) + PrepareCollaborators(); + + // When + RepeatDiagonalMouseMovements( + [t = 0.0f]() mutable { - m_controllerList->HandleInputChannelEvent( - AzFramework::ViewportControllerInputEvent{ TestViewportId, nativeWindowHandle, *inputChannel }); + // vary between 30 and 50 fps (40 +/- 10) + const float fps = 40.0f + (10.0f * AZStd::sin(t)); + t += AZ::DegToRad(5.0f); + return 1.0f / fps; }); - using ::testing::NiceMock; - using ::testing::Return; + // Then + // ensure the camera rotation is the identity (no significant drift has occurred as we moved the mouse) + const AZ::Transform cameraRotation = m_cameraViewportContextView->GetCameraTransform(); + EXPECT_THAT(cameraRotation.GetRotation(), IsClose(AZ::Quaternion::CreateIdentity())); - NiceMock mockWindowRequests; - mockWindowRequests.Connect(nativeWindowHandle); + // Clean-up + HaltCollaborators(); + } - // note: WindowRequests is used internally by ModularViewportCameraController, this ensures it returns the viewport size we want - ON_CALL(mockWindowRequests, GetClientAreaSize()) - .WillByDefault(Return(AzFramework::WindowSize(WidgetSize.width(), WidgetSize.height()))); + class ModularViewportCameraControllerDeltaTimeParamFixture + : public ModularViewportCameraControllerFixture + , public ::testing::WithParamInterface // delta time + { + }; - // create editor modular camera - auto controller = CreateModularViewportCameraController(TestViewportId); + TEST_P( + ModularViewportCameraControllerDeltaTimeParamFixture, + MouseMovementDoesNotAccumulateExcessiveDriftInModularViewportCameraWithFixedDeltaTime) + { + SandboxEditor::SetCameraCaptureCursorForLook(false); - // set some overrides for the test - AtomToolsFramework::ModularCameraViewportContext* cameraViewportContextView = nullptr; - controller->SetCameraViewportContextBuilderCallback( - [&cameraViewportContextView](AZStd::unique_ptr& cameraViewportContext) + // Given + PrepareCollaborators(); + + // When + RepeatDiagonalMouseMovements( + [this] { - cameraViewportContext = AZStd::make_unique(); - cameraViewportContextView = cameraViewportContext.get(); + return GetParam(); }); - controller->SetCameraPropsBuilderCallback( - [](AzFramework::CameraProps& cameraProps) - { - cameraProps.m_rotateSmoothingEnabledFn = [] - { - return false; - }; + // Then + // ensure the camera rotation is the identity (no significant drift has occurred as we moved the mouse) + const AZ::Transform cameraRotation = m_cameraViewportContextView->GetCameraTransform(); + EXPECT_THAT(cameraRotation.GetRotation(), IsClose(AZ::Quaternion::CreateIdentity())); - cameraProps.m_translateSmoothingEnabledFn = [] - { - return false; - }; - }); + // Clean-up + HaltCollaborators(); + } - m_controllerList->Add(controller); + INSTANTIATE_TEST_CASE_P( + All, ModularViewportCameraControllerDeltaTimeParamFixture, testing::Values(1.0f / 60.0f, 1.0f / 50.0f, 1.0f / 30.0f)); + TEST_F(ModularViewportCameraControllerFixture, MouseMovementOrientatesCameraWhenCursorIsCaptured) + { + // Given + PrepareCollaborators(); + // ensure cursor is captured + SandboxEditor::SetCameraCaptureCursorForLook(true); + + const float deltaTime = 1.0f / 60.0f; + + // When // move to the center of the screen auto start = QPoint(WidgetSize.width() / 2, WidgetSize.height() / 2); MouseMove(m_rootWidget.get(), start, QPoint(0, 0)); m_controllerList->UpdateViewport({ TestViewportId, AzFramework::FloatSeconds(deltaTime), AZ::ScriptTimePoint() }); - // When - // move mouse diagonally to top right, then to bottom left and back repeatedly - auto current = start; - auto halfDelta = QPoint(200, -200); - const int iterationsPerDiagonal = 50; - for (int diagonals = 0; diagonals < 80; ++diagonals) - { - for (int i = 0; i < iterationsPerDiagonal; ++i) - { - MousePressAndMove(m_rootWidget.get(), current, halfDelta / iterationsPerDiagonal, Qt::MouseButton::RightButton); - m_controllerList->UpdateViewport({ TestViewportId, AzFramework::FloatSeconds(deltaTime), AZ::ScriptTimePoint() }); - current += halfDelta / iterationsPerDiagonal; - } + const auto mouseDelta = QPoint(5, 0); - if (diagonals % 2 == 0) - { - halfDelta.setX(halfDelta.x() * -1); - halfDelta.setY(halfDelta.y() * -1); - } + // initial movement to begin the camera behavior + MousePressAndMove(m_rootWidget.get(), start, mouseDelta, Qt::MouseButton::RightButton); + m_controllerList->UpdateViewport({ TestViewportId, AzFramework::FloatSeconds(deltaTime), AZ::ScriptTimePoint() }); + + // move the cursor right + for (int i = 0; i < 50; ++i) + { + MousePressAndMove(m_rootWidget.get(), start + mouseDelta, mouseDelta, Qt::MouseButton::RightButton); + m_controllerList->UpdateViewport({ TestViewportId, AzFramework::FloatSeconds(deltaTime), AZ::ScriptTimePoint() }); } - QTest::mouseRelease(m_rootWidget.get(), Qt::MouseButton::RightButton, Qt::KeyboardModifier::NoModifier, current); + // move the cursor left (do an extra iteration moving left to account for the initial dead-zone) + for (int i = 0; i < 51; ++i) + { + MousePressAndMove(m_rootWidget.get(), start + mouseDelta, -mouseDelta, Qt::MouseButton::RightButton); + m_controllerList->UpdateViewport({ TestViewportId, AzFramework::FloatSeconds(deltaTime), AZ::ScriptTimePoint() }); + } + + QTest::mouseRelease(m_rootWidget.get(), Qt::MouseButton::RightButton, Qt::KeyboardModifier::NoModifier, start + mouseDelta); m_controllerList->UpdateViewport({ TestViewportId, AzFramework::FloatSeconds(deltaTime), AZ::ScriptTimePoint() }); // Then - // ensure the camera rotation is the identity (no significant drift has occurred as we moved the mouse) - const AZ::Transform cameraRotation = cameraViewportContextView->GetCameraTransform(); - EXPECT_THAT(cameraRotation.GetRotation(), IsClose(AZ::Quaternion::CreateIdentity())); + // retrieve the amount of yaw rotation + const AZ::Quaternion cameraRotation = m_cameraViewportContextView->GetCameraTransform().GetRotation(); + const auto eulerAngles = AzFramework::EulerAngles(AZ::Matrix3x3::CreateFromQuaternion(cameraRotation)); - mockWindowRequests.Disconnect(); + // camera should be back at the center (no yaw) + using ::testing::FloatNear; + EXPECT_THAT(eulerAngles.GetZ(), FloatNear(0.0f, 0.001f)); + + // Clean-up + HaltCollaborators(); + } + + TEST_F(ModularViewportCameraControllerFixture, CameraDoesNotContinueToRotateGivenNoInputWhenCaptured) + { + // Given + PrepareCollaborators(); + SandboxEditor::SetCameraCaptureCursorForLook(true); + + const float deltaTime = 1.0f / 60.0f; + + // When + // move to the center of the screen + auto start = QPoint(WidgetSize.width() / 2, WidgetSize.height() / 2); + MouseMove(m_rootWidget.get(), start, QPoint(0, 0)); + m_controllerList->UpdateViewport({ TestViewportId, AzFramework::FloatSeconds(deltaTime), AZ::ScriptTimePoint() }); + + // will move a small amount initially + const auto mouseDelta = QPoint(5, 0); + MousePressAndMove(m_rootWidget.get(), start, mouseDelta, Qt::MouseButton::RightButton); + + // ensure further updates to not continue to rotate + for (int i = 0; i < 50; ++i) + { + m_controllerList->UpdateViewport({ TestViewportId, AzFramework::FloatSeconds(deltaTime), AZ::ScriptTimePoint() }); + } + + // Then + // ensure the camera rotation is no longer the identity + const AZ::Quaternion cameraRotation = m_cameraViewportContextView->GetCameraTransform().GetRotation(); + const auto eulerAngles = AzFramework::EulerAngles(AZ::Matrix3x3::CreateFromQuaternion(cameraRotation)); + + // initial amount of rotation after first mouse move + using ::testing::FloatNear; + EXPECT_THAT(eulerAngles.GetZ(), FloatNear(-0.025f, 0.001f)); + + // Clean-up + HaltCollaborators(); } } // namespace UnitTest diff --git a/Code/Editor/LogFile.cpp b/Code/Editor/LogFile.cpp index 5978356781..92186901d7 100644 --- a/Code/Editor/LogFile.cpp +++ b/Code/Editor/LogFile.cpp @@ -179,19 +179,17 @@ void CLogFile::FormatLineV(const char * format, va_list argList) void CLogFile::AboutSystem() { - char szBuffer[MAX_LOGBUFFER_SIZE]; - wchar_t szBufferW[MAX_LOGBUFFER_SIZE]; #if defined(AZ_PLATFORM_WINDOWS) || defined(AZ_PLATFORM_LINUX) ////////////////////////////////////////////////////////////////////// // Write the system informations to the log ////////////////////////////////////////////////////////////////////// - - wchar_t szLanguageBufferW[64]; + char szBuffer[MAX_LOGBUFFER_SIZE]; //wchar_t szCPUModel[64]; MEMORYSTATUS MemoryStatus; #endif // defined(AZ_PLATFORM_WINDOWS) || defined(AZ_PLATFORM_LINUX) #if defined(AZ_PLATFORM_WINDOWS) + wchar_t szLanguageBufferW[64]; DEVMODE DisplayConfig; OSVERSIONINFO OSVerInfo; OSVerInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); @@ -288,7 +286,7 @@ AZ_POP_DISABLE_WARNING str += "Version Unknown"; } } - azsnprintf(szBuffer, MAX_LOGBUFFER_SIZE, " %d.%d", OSVerInfo.dwMajorVersion, OSVerInfo.dwMinorVersion); + azsnprintf(szBuffer, MAX_LOGBUFFER_SIZE, " %ld.%ld", OSVerInfo.dwMajorVersion, OSVerInfo.dwMinorVersion); str += szBuffer; ////////////////////////////////////////////////////////////////////// @@ -296,6 +294,7 @@ AZ_POP_DISABLE_WARNING ////////////////////////////////////////////////////////////////////// str += " ("; + wchar_t szBufferW[MAX_LOGBUFFER_SIZE]; GetWindowsDirectoryW(szBufferW, sizeof(szBufferW)); AZStd::to_string(szBuffer, MAX_LOGBUFFER_SIZE, szBufferW); str += szBuffer; @@ -338,7 +337,7 @@ AZ_POP_DISABLE_WARNING str += " "; azstrdate(szBuffer); str += szBuffer; - azsnprintf(szBuffer, MAX_LOGBUFFER_SIZE, ", system running for %d minutes", GetTickCount() / 60000); + azsnprintf(szBuffer, MAX_LOGBUFFER_SIZE, ", system running for %ld minutes", GetTickCount() / 60000); str += szBuffer; CryLog("%s", str.toUtf8().data()); #else @@ -388,7 +387,7 @@ AZ_POP_DISABLE_WARNING L"(Unknown graphics card)", szLanguageBufferW, sizeof(szLanguageBufferW), L"system.ini"); AZStd::to_string(szLanguageBuffer, szLanguageBufferW); - azsnprintf(szBuffer, MAX_LOGBUFFER_SIZE, "Current display mode is %dx%dx%d, %s", + azsnprintf(szBuffer, MAX_LOGBUFFER_SIZE, "Current display mode is %ldx%ldx%ld, %s", DisplayConfig.dmPelsWidth, DisplayConfig.dmPelsHeight, DisplayConfig.dmBitsPerPel, szLanguageBuffer.c_str()); CryLog("%s", szBuffer); diff --git a/Code/Editor/MainStatusBar.cpp b/Code/Editor/MainStatusBar.cpp index a1e51ec553..f955035bd8 100644 --- a/Code/Editor/MainStatusBar.cpp +++ b/Code/Editor/MainStatusBar.cpp @@ -15,6 +15,7 @@ // AzQtComponents #include #include +#include // Qt #include @@ -209,7 +210,7 @@ MainStatusBar::MainStatusBar(QWidget* parent) addPermanentWidget(new StatusBarItem(QStringLiteral("connection"), true, this, true), 1); - addPermanentWidget(new StatusBarItem(QStringLiteral("game_info"), this, true), 1); + addPermanentWidget(new GameInfoItem(QStringLiteral("game_info"), this), 1); addPermanentWidget(new MemoryStatusItem(QStringLiteral("memory"), this), 1); } @@ -221,11 +222,6 @@ void MainStatusBar::Init() 500 }; //in ms, so 2 FPS - AZ::IO::FixedMaxPathString projectPath = AZ::Utils::GetProjectPath(); - QString strGameInfo; - strGameInfo = tr("GameFolder: '%1'").arg(projectPath.c_str()); - SetItem(QStringLiteral("game_info"), strGameInfo, tr("Game Info"), QPixmap()); - //ask for updates for items regularly. This is basically what MFC does auto timer = new QTimer(this); timer->setInterval(statusbarTimerUpdateInterval); @@ -436,5 +432,29 @@ QString GeneralStatusItem::CurrentText() const return StatusBarItem::CurrentText(); } +GameInfoItem::GameInfoItem(QString name, MainStatusBar* parent) + : StatusBarItem(name, parent, true) +{ + m_projectPath = QString::fromUtf8(AZ::Utils::GetProjectPath().c_str()); + + SetText(QObject::tr("GameFolder: '%1'").arg(m_projectPath)); + SetToolTip(QObject::tr("Game Info")); + + setContextMenuPolicy(Qt::CustomContextMenu); + QObject::connect(this, &QWidget::customContextMenuRequested, this, &GameInfoItem::OnShowContextMenu); +} + +void GameInfoItem::OnShowContextMenu(const QPoint& pos) +{ + QMenu contextMenu(this); + + // Context menu action to open the project folder in file browser + contextMenu.addAction(AzQtComponents::fileBrowserActionName(), this, [this]() { + AzQtComponents::ShowFileOnDesktop(m_projectPath); + }); + + contextMenu.exec(mapToGlobal(pos)); +} + #include #include diff --git a/Code/Editor/MainStatusBarItems.h b/Code/Editor/MainStatusBarItems.h index 2a3a21e72a..5f8d618dca 100644 --- a/Code/Editor/MainStatusBarItems.h +++ b/Code/Editor/MainStatusBarItems.h @@ -71,3 +71,17 @@ public: private: void updateStatus(); }; + +class GameInfoItem + : public StatusBarItem +{ + Q_OBJECT +public: + GameInfoItem(QString name, MainStatusBar* parent); + +private Q_SLOTS: + void OnShowContextMenu(const QPoint& pos); + +private: + QString m_projectPath; +}; diff --git a/Code/Editor/MainWindow.cpp b/Code/Editor/MainWindow.cpp index fa2e792cc8..beb338b732 100644 --- a/Code/Editor/MainWindow.cpp +++ b/Code/Editor/MainWindow.cpp @@ -108,12 +108,6 @@ using namespace AzToolsFramework; #define LAYOUTS_WILDCARD "*.layout" #define DUMMY_LAYOUT_NAME "Dummy_Layout" -static const char* g_openViewPaneEventName = "OpenViewPaneEvent"; //Sent when users open view panes; -static const char* g_viewPaneAttributeName = "ViewPaneName"; //Name of the current view pane -static const char* g_openLocationAttributeName = "OpenLocation"; //Indicates where the current view pane is opened from - -static const char* g_assetImporterName = "AssetImporter"; - class CEditorOpenViewCommand : public _i_reference_target_t { @@ -303,7 +297,7 @@ MainWindow::MainWindow(QWidget* parent) , m_settings("O3DE", "O3DE") , m_toolbarManager(new ToolbarManager(m_actionManager, this)) , m_assetImporterManager(new AssetImporterManager(this)) - , m_levelEditorMenuHandler(new LevelEditorMenuHandler(this, m_viewPaneManager, m_settings)) + , m_levelEditorMenuHandler(new LevelEditorMenuHandler(this, m_viewPaneManager)) , m_sourceControlNotifHandler(new AzToolsFramework::QtSourceControlNotificationHandler(this)) , m_viewPaneHost(nullptr) , m_autoSaveTimer(nullptr) diff --git a/Code/Editor/MainWindow.qrc b/Code/Editor/MainWindow.qrc index fd207ebe13..4506a4a2a8 100644 --- a/Code/Editor/MainWindow.qrc +++ b/Code/Editor/MainWindow.qrc @@ -76,6 +76,7 @@ res/o3de_editor.ico + res/o3de_application_reverse.svg res/Eye.svg @@ -152,6 +153,7 @@ res/error_report_error.svg res/error_report_warning.svg res/error_report_comment.svg + res/error_report_helper.svg particles_tree_00.png particles_tree_01.png particles_tree_02.png diff --git a/Code/Editor/Objects/BaseObject.cpp b/Code/Editor/Objects/BaseObject.cpp index 89e905aa21..0d5f982bd4 100644 --- a/Code/Editor/Objects/BaseObject.cpp +++ b/Code/Editor/Objects/BaseObject.cpp @@ -38,7 +38,6 @@ // To use the Andrew's algorithm in order to make convex hull from the points, this header is needed. #include "Util/GeometryUtil.h" - namespace { QColor kLinkColorParent = QColor(0, 255, 255); QColor kLinkColorChild = QColor(0, 0, 255); @@ -1928,7 +1927,7 @@ bool CBaseObject::HitTestRectBounds(HitContext& hc, const AABB& box) ////////////////////////////////////////////////////////////////////////// bool CBaseObject::HitTestRect(HitContext& hc) { - AZ_PROFILE_FUNCTION(Entity); + AZ_PROFILE_FUNCTION(Editor); AABB box; @@ -1965,7 +1964,7 @@ bool CBaseObject::HitHelperTest(HitContext& hc) ////////////////////////////////////////////////////////////////////////// bool CBaseObject::HitHelperAtTest(HitContext& hc, const Vec3& pos) { - AZ_PROFILE_FUNCTION(Entity); + AZ_PROFILE_FUNCTION(Editor); bool bResult = false; @@ -2038,7 +2037,7 @@ bool CBaseObject::HitHelperAtTest(HitContext& hc, const Vec3& pos) ////////////////////////////////////////////////////////////////////////// CBaseObject* CBaseObject::GetChild(size_t const i) const { - assert(i >= 0 && i < m_childs.size()); + assert(i < m_childs.size()); return m_childs[i]; } @@ -2058,53 +2057,7 @@ bool CBaseObject::IsChildOf(CBaseObject* node) } ////////////////////////////////////////////////////////////////////////// -void CBaseObject::GetAllChildren(TBaseObjects& outAllChildren, CBaseObject* pObj) const -{ - const CBaseObject* pBaseObj = pObj ? pObj : this; - for (size_t i = 0, iChildCount(pBaseObj->GetChildCount()); i < iChildCount; ++i) - { - CBaseObject* pChild = pBaseObj->GetChild(i); - if (pChild == nullptr) - { - continue; - } - outAllChildren.push_back(pChild); - GetAllChildren(outAllChildren, pChild); - } -} - -void CBaseObject::GetAllChildren(DynArray< _smart_ptr >& outAllChildren, CBaseObject* pObj) const -{ - const CBaseObject* pBaseObj = pObj ? pObj : this; - - for (size_t i = 0, iChildCount(pBaseObj->GetChildCount()); i < iChildCount; ++i) - { - CBaseObject* pChild = pBaseObj->GetChild(i); - if (pChild == nullptr) - { - continue; - } - outAllChildren.push_back(pChild); - GetAllChildren(outAllChildren, pChild); - } -} - -void CBaseObject::GetAllChildren(CSelectionGroup& outAllChildren, CBaseObject* pObj) const -{ - const CBaseObject* pBaseObj = pObj ? pObj : this; - - for (size_t i = 0, iChildCount(pBaseObj->GetChildCount()); i < iChildCount; ++i) - { - CBaseObject* pChild = pBaseObj->GetChild(i); - if (pChild == nullptr) - { - continue; - } - outAllChildren.AddObject(pChild); - GetAllChildren(outAllChildren, pChild); - } -} ////////////////////////////////////////////////////////////////////////// void CBaseObject::CloneChildren(CBaseObject* pFromObject) @@ -2729,7 +2682,7 @@ void CBaseObject::SetMinSpec(uint32 nSpec, bool bSetChildren) // Set min spec for all childs. if (bSetChildren) { - for (size_t i = m_childs.size() - 1; i >= 0; --i) + for (int i = static_cast(m_childs.size()) - 1; i >= 0; --i) { m_childs[i]->SetMinSpec(nSpec, true); } diff --git a/Code/Editor/Objects/BaseObject.h b/Code/Editor/Objects/BaseObject.h index 47dba99ab7..89e47ae881 100644 --- a/Code/Editor/Objects/BaseObject.h +++ b/Code/Editor/Objects/BaseObject.h @@ -33,7 +33,6 @@ class CGizmo; class CObjectArchive; struct SSubObjSelectionModifyContext; struct SRayHitInfo; -class ISubObjectSelectionReferenceFrameCalculator; class CPopupMenuItem; class QMenu; struct IRenderNode; @@ -409,10 +408,6 @@ public: CBaseObject* GetParent() const { return m_parent; }; //! Scans hierarchy up to determine if we child of specified node. virtual bool IsChildOf(CBaseObject* node); - //! Get all child objects - void GetAllChildren(TBaseObjects& outAllChildren, CBaseObject* pObj = nullptr) const; - void GetAllChildren(DynArray< _smart_ptr >& outAllChildren, CBaseObject* pObj = nullptr) const; - void GetAllChildren(CSelectionGroup& outAllChildren, CBaseObject* pObj = nullptr) const; //! Clone Children void CloneChildren(CBaseObject* pFromObject); //! Attach new child node. @@ -571,7 +566,6 @@ public: // Return true if object support selecting of this sub object element type. virtual bool StartSubObjSelection([[maybe_unused]] int elemType) { return false; }; virtual void EndSubObjectSelection() {}; - virtual void CalculateSubObjectSelectionReferenceFrame([[maybe_unused]] ISubObjectSelectionReferenceFrameCalculator* pCalculator) { }; virtual void ModifySubObjSelection([[maybe_unused]] SSubObjSelectionModifyContext& modCtx) {}; virtual void AcceptSubObjectModify() {}; diff --git a/Code/Editor/Objects/DisplayContext.h b/Code/Editor/Objects/DisplayContext.h index 47fd450220..0f0f0e665a 100644 --- a/Code/Editor/Objects/DisplayContext.h +++ b/Code/Editor/Objects/DisplayContext.h @@ -18,6 +18,7 @@ #include "SandboxAPI.h" #include #include +#include #include @@ -63,7 +64,6 @@ struct SANDBOX_API DisplayContext CDisplaySettings* settings; IDisplayViewport* view; - IRenderer* renderer; IRenderAuxGeom* pRenderAuxGeom; IIconManager* pIconManager; CCamera* camera; diff --git a/Code/Editor/Objects/DisplayContextShared.inl b/Code/Editor/Objects/DisplayContextShared.inl index 5af04d821e..df0b1f82a1 100644 --- a/Code/Editor/Objects/DisplayContextShared.inl +++ b/Code/Editor/Objects/DisplayContextShared.inl @@ -26,7 +26,6 @@ DisplayContext::DisplayContext() { view = 0; - renderer = 0; flags = 0; settings = 0; pIconManager = 0; @@ -1083,7 +1082,10 @@ void DisplayContext::DrawTerrainLine(Vec3 worldPos1, Vec3 worldPos2) ////////////////////////////////////////////////////////////////////////// void DisplayContext::DrawTextLabel(const Vec3& pos, float size, const char* text, const bool bCenter, [[maybe_unused]] int srcOffsetX, [[maybe_unused]] int scrOffsetY) { - ColorF col(m_color4b.r * (1.0f / 255.0f), m_color4b.g * (1.0f / 255.0f), m_color4b.b * (1.0f / 255.0f), m_color4b.a * (1.0f / 255.0f)); + AZ_ErrorOnce(nullptr, false, "DisplayContext::DrawTextLabel needs to be removed/ported to use Atom"); + +#if 0 + ColorF col(m_color4b.r * (1.0f / 255.0f), m_color4b.g * (1.0f / 255.0f), m_color4b.b * (1.0f / 255.0f), m_color4b.a * (1.0f / 255.0f)); float fCol[4] = { col.r, col.g, col.b, col.a }; if (flags & DISPLAY_2D) @@ -1096,13 +1098,28 @@ void DisplayContext::DrawTextLabel(const Vec3& pos, float size, const char* text { renderer->DrawLabelEx(pos, size, fCol, true, true, text); } +#else + AZ_UNUSED(pos); + AZ_UNUSED(size); + AZ_UNUSED(text); + AZ_UNUSED(bCenter); +#endif } ////////////////////////////////////////////////////////////////////////// void DisplayContext::Draw2dTextLabel(float x, float y, float size, const char* text, bool bCenter) { + AZ_ErrorOnce(nullptr, false, "DisplayContext::Draw2dTextLabel needs to be removed/ported to use Atom"); +#if 0 float col[4] = { m_color4b.r * (1.0f / 255.0f), m_color4b.g * (1.0f / 255.0f), m_color4b.b * (1.0f / 255.0f), m_color4b.a * (1.0f / 255.0f) }; renderer->Draw2dLabel(x, y, size, col, bCenter, "%s", text); +#else + AZ_UNUSED(x); + AZ_UNUSED(y); + AZ_UNUSED(size); + AZ_UNUSED(text); + AZ_UNUSED(bCenter); +#endif } ////////////////////////////////////////////////////////////////////////// @@ -1261,10 +1278,6 @@ void DisplayContext::DrawTextureLabel(const Vec3& pos, int nWidth, int nHeight, ////////////////////////////////////////////////////////////////////////// void DisplayContext::Flush2D() { -#ifndef PHYSICS_EDITOR - FUNCTION_PROFILER(GetIEditor()->GetSystem(), PROFILE_EDITOR); -#endif - if (m_textureLabels.empty()) { return; @@ -1273,6 +1286,9 @@ void DisplayContext::Flush2D() int rcw, rch; view->GetDimensions(&rcw, &rch); + AZ_ErrorOnce(nullptr, false, "DisplayContext::Flush2D needs to be removed/ported to use Atom"); +#if 0 + TransformationMatrices backupSceneMatrices; renderer->Set2DMode(rcw, rch, backupSceneMatrices, 0.0f, 1.0f); @@ -1314,6 +1330,7 @@ void DisplayContext::Flush2D() } renderer->Unset2DMode(backupSceneMatrices); +#endif m_textureLabels.clear(); } diff --git a/Code/Editor/Objects/EntityObject.cpp b/Code/Editor/Objects/EntityObject.cpp index 53c36ccf07..6e2354998c 100644 --- a/Code/Editor/Objects/EntityObject.cpp +++ b/Code/Editor/Objects/EntityObject.cpp @@ -497,7 +497,7 @@ bool CEntityObject::HitTestRect(HitContext& hc) ////////////////////////////////////////////////////////////////////////// int CEntityObject::MouseCreateCallback(CViewport* view, EMouseEvent event, QPoint& point, int flags) { - AZ_PROFILE_FUNCTION(Editor); + AZ_PROFILE_FUNCTION(Entity); if (event == eMouseMove || event == eMouseLDown) { @@ -1416,7 +1416,7 @@ void CEntityObject::PostClone(CBaseObject* pFromObject, CObjectCloneContext& ctx void CEntityObject::ResolveEventTarget(CBaseObject* object, unsigned int index) { // Find target id. - assert(index >= 0 && index < m_eventTargets.size()); + assert(index < m_eventTargets.size()); if (object) { object->AddEventListener(this); diff --git a/Code/Editor/Objects/GizmoManager.cpp b/Code/Editor/Objects/GizmoManager.cpp index e0fdd69c8e..1704fd9322 100644 --- a/Code/Editor/Objects/GizmoManager.cpp +++ b/Code/Editor/Objects/GizmoManager.cpp @@ -18,8 +18,6 @@ ////////////////////////////////////////////////////////////////////////// void CGizmoManager::Display(DisplayContext& dc) { - FUNCTION_PROFILER(GetIEditor()->GetSystem(), PROFILE_EDITOR); - AABB bbox; std::vector todelete; for (Gizmos::iterator it = m_gizmos.begin(); it != m_gizmos.end(); ++it) diff --git a/Code/Editor/Objects/ObjectManager.cpp b/Code/Editor/Objects/ObjectManager.cpp index 940ef5b551..9c452ac1ad 100644 --- a/Code/Editor/Objects/ObjectManager.cpp +++ b/Code/Editor/Objects/ObjectManager.cpp @@ -37,7 +37,6 @@ AZ_CVAR( bool, ed_visibility_use, true, nullptr, AZ::ConsoleFunctorFlags::Null, "Enable/disable using the new IVisibilitySystem for Entity visibility determination"); - /*! * Class Description used for object templates. * This description filled from Xml template files. @@ -760,16 +759,16 @@ void CObjectManager::GetObjects(CBaseObjectsArray& objects) const } } -void CObjectManager::GetObjects(DynArray& objects) const -{ - CBaseObjectsArray objectArray; - GetObjects(objectArray); - objects.clear(); - for (size_t i = 0, iCount(objectArray.size()); i < iCount; ++i) - { - objects.push_back(objectArray[i]); - } -} +//void CObjectManager::GetObjects(DynArray& objects) const +//{ +// CBaseObjectsArray objectArray; +// GetObjects(objectArray); +// objects.clear(); +// for (size_t i = 0, iCount(objectArray.size()); i < iCount; ++i) +// { +// objects.push_back(objectArray[i]); +// } +//} void CObjectManager::GetObjects(CBaseObjectsArray& objects, BaseObjectFilterFunctor const& filter) const { @@ -1556,11 +1555,8 @@ void CObjectManager::DeleteSelection() // Make sure to unlock selection. GetIEditor()->LockSelection(false); - GUID bID = GUID_NULL; - - int i; CSelectionGroup objects; - for (i = 0; i < m_currSelection->GetCount(); i++) + for (int i = 0; i < m_currSelection->GetCount(); i++) { // Check condition(s) if object could be deleted if (!IsObjectDeletionAllowed(m_currSelection->GetObject(i))) @@ -2900,17 +2896,6 @@ namespace return AZ::Vector3(position.x, position.y, position.z); } - AZ::Vector3 PyGetWorldObjectPosition(const char* pName) - { - CBaseObject* pObject = GetIEditor()->GetObjectManager()->FindObject(pName); - if (!pObject) - { - throw std::logic_error((QString("\"") + pName + "\" is an invalid object.").toUtf8().data()); - } - Vec3 position = pObject->GetWorldPos(); - return AZ::Vector3(position.x, position.y, position.z); - } - void PySetObjectPosition(const char* pName, float fValueX, float fValueY, float fValueZ) { CBaseObject* pObject = GetIEditor()->GetObjectManager()->FindObject(pName); diff --git a/Code/Editor/Objects/ObjectManager.h b/Code/Editor/Objects/ObjectManager.h index aa9faab0e4..a2e0822a2b 100644 --- a/Code/Editor/Objects/ObjectManager.h +++ b/Code/Editor/Objects/ObjectManager.h @@ -122,7 +122,7 @@ public: //! Get array of objects, managed by manager (not contain sub objects of groups). //! @param layer if 0 get objects for all layers, or layer to get objects from. void GetObjects(CBaseObjectsArray& objects) const; - void GetObjects(DynArray& objects) const; + //void GetObjects(DynArray& objects) const; //! Get array of objects that pass the filter. //! @param filter The filter functor, return true if you want to get the certain obj, return false if want to skip it. diff --git a/Code/Editor/Objects/ObjectManagerLegacyUndo.cpp b/Code/Editor/Objects/ObjectManagerLegacyUndo.cpp index 08a7f4cf48..10f3a25b6d 100644 --- a/Code/Editor/Objects/ObjectManagerLegacyUndo.cpp +++ b/Code/Editor/Objects/ObjectManagerLegacyUndo.cpp @@ -19,7 +19,6 @@ #include "Objects/ObjectLoader.h" #include "Objects/SelectionGroup.h" - ////////////////////////////////////////////////////////////////////////// // CUndoBaseObjectNew implementation. ////////////////////////////////////////////////////////////////////////// diff --git a/Code/Editor/Objects/SelectionGroup.cpp b/Code/Editor/Objects/SelectionGroup.cpp index f2b7b9ddaf..06d881d607 100644 --- a/Code/Editor/Objects/SelectionGroup.cpp +++ b/Code/Editor/Objects/SelectionGroup.cpp @@ -316,8 +316,6 @@ void CSelectionGroup::Rotate(const Ang3& angles, int referenceCoordSys) // return; // Rotate selection about selection center. - Vec3 center = GetCenter(); - Matrix34 rotateTM = Matrix34::CreateRotationXYZ(DEG2RAD(angles)); Rotate(rotateTM, referenceCoordSys); } diff --git a/Code/Editor/Objects/TrackGizmo.cpp b/Code/Editor/Objects/TrackGizmo.cpp index 8cbd7df2e5..3b753e737a 100644 --- a/Code/Editor/Objects/TrackGizmo.cpp +++ b/Code/Editor/Objects/TrackGizmo.cpp @@ -27,9 +27,11 @@ ////////////////////////////////////////////////////////////////////////// #define AXIS_SIZE 0.1f +#if 0 namespace { int s_highlightAxis = 0; } +#endif ////////////////////////////////////////////////////////////////////////// CTrackGizmo::CTrackGizmo() @@ -175,13 +177,15 @@ void CTrackGizmo::DrawAxis(DisplayContext& dc, const Vec3& org) y = y * fScreenScale; z = z * fScreenScale; + Vec3 colX(1, 0, 0), colY(0, 1, 0), colZ(0, 0, 1); + + AZ_ErrorOnce(nullptr, false, "CTrackGizmo::DrawAxis needs to be removed/ported to use Atom"); +#if 0 float col[4] = { 1, 1, 1, 1 }; - float hcol[4] = { 1, 0, 0, 1 }; dc.renderer->DrawLabelEx(org + x, 1.2f, col, true, true, "X"); dc.renderer->DrawLabelEx(org + y, 1.2f, col, true, true, "Y"); dc.renderer->DrawLabelEx(org + z, 1.2f, col, true, true, "Z"); - Vec3 colX(1, 0, 0), colY(0, 1, 0), colZ(0, 0, 1); if (s_highlightAxis) { float col2[4] = { 1, 0, 0, 1 }; @@ -201,6 +205,7 @@ void CTrackGizmo::DrawAxis(DisplayContext& dc, const Vec3& org) dc.renderer->DrawLabelEx(org + z, 1.2f, col2, true, true, "Z"); } } +#endif x = x * 0.8f; y = y * 0.8f; diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json index 603aec57a5..2b63c0ee15 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json +++ b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json @@ -33,7 +33,7 @@ { "size" : "128x128", "idiom" : "mac", - "filename" : "icon_128 _2x.png", + "filename" : "icon_128_2x.png", "scale" : "2x" }, { @@ -45,7 +45,7 @@ { "size" : "256x256", "idiom" : "mac", - "filename" : "icon_256 _2x.png", + "filename" : "icon_256_2x.png", "scale" : "2x" }, { @@ -65,4 +65,4 @@ "version" : 1, "author" : "xcode" } -} +} \ No newline at end of file diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128 _2x.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128 _2x.png deleted file mode 100644 index 5970ea34ba..0000000000 --- a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128 _2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e38257b6917cdf5d73e90e6009f10c8736d62b20c4e785085305075c7e6320e2 -size 32037 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128.png index 9e30e09547..192a862967 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f41a37d2347a617e93bd97adaf6d4c161c471ca3ef7e04b98c65ddda52396dc -size 27833 +oid sha256:94cb43469dfb05d348845883914ac6d5936e851c93ae6e76d16efea90cdc27da +size 5980 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128_2x.png new file mode 100644 index 0000000000..192a862967 --- /dev/null +++ b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128_2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94cb43469dfb05d348845883914ac6d5936e851c93ae6e76d16efea90cdc27da +size 5980 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16.png index aeb29abd0a..9780d8a7af 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b07984494059bf827bc485cbea06d12e0283811face1a18799495f9ba7ae8af1 -size 20779 +oid sha256:cc6a4cf056f9814a23a4f74ea0aa9cd3628a03c2349bef73c64edfed75788cb7 +size 644 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16_2x.png index 445a389d61..9780d8a7af 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16_2x.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16_2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e645142d284de40aafb7a4a858f3df92b6a5ba9b03fa5f1a2d3cb25211597926 -size 21857 +oid sha256:cc6a4cf056f9814a23a4f74ea0aa9cd3628a03c2349bef73c64edfed75788cb7 +size 644 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256 _2x.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256 _2x.png deleted file mode 100644 index 0904cf7ce8..0000000000 --- a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256 _2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:07631f41b8dea80713d2463f81a713a9a93798975b6fb50afbeeb13d26c57fa2 -size 48899 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256.png index 5970ea34ba..0b53991930 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e38257b6917cdf5d73e90e6009f10c8736d62b20c4e785085305075c7e6320e2 -size 32037 +oid sha256:f0e52fba265079da19fb72aefe1cb0a4b9f8075e10341084fffb38a1b0850cd6 +size 12600 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256_2x.png new file mode 100644 index 0000000000..0b53991930 --- /dev/null +++ b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256_2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e52fba265079da19fb72aefe1cb0a4b9f8075e10341084fffb38a1b0850cd6 +size 12600 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32.png index 445a389d61..1d8cdef173 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e645142d284de40aafb7a4a858f3df92b6a5ba9b03fa5f1a2d3cb25211597926 -size 21857 +oid sha256:53abfa6e6b4d3eff79851a2a95c762223bc610a6646e3370fd1113c57cc8e0e6 +size 1295 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32_2x.png index 1fad9bda96..1d8cdef173 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32_2x.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32_2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad83faf98b49f4e37112baedeae726f4f8d71bcdd1961d9cdad31f043f8ca666 -size 24003 +oid sha256:53abfa6e6b4d3eff79851a2a95c762223bc610a6646e3370fd1113c57cc8e0e6 +size 1295 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512.png index e1517dddb6..464f10910b 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68529a6c11d5ffa7ecd9d5bbb11ceea28e6852bd45946b525af09602c9a1e1bf -size 48899 +oid sha256:f778e4aa9577faca2609343d435da745dc6f342ea7a726573441cecc870bf542 +size 19204 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512_2x.png index b425cb685f..464f10910b 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512_2x.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512_2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a70003840b418848b2ce6c18ed7cbbfcd6fcf76598a6601dca8b98d9b6c1a2f -size 114706 +oid sha256:f778e4aa9577faca2609343d435da745dc6f342ea7a726573441cecc870bf542 +size 19204 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/Contents.json b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/Contents.json index 603aec57a5..2b63c0ee15 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/Contents.json +++ b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/Contents.json @@ -33,7 +33,7 @@ { "size" : "128x128", "idiom" : "mac", - "filename" : "icon_128 _2x.png", + "filename" : "icon_128_2x.png", "scale" : "2x" }, { @@ -45,7 +45,7 @@ { "size" : "256x256", "idiom" : "mac", - "filename" : "icon_256 _2x.png", + "filename" : "icon_256_2x.png", "scale" : "2x" }, { @@ -65,4 +65,4 @@ "version" : 1, "author" : "xcode" } -} +} \ No newline at end of file diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128 _2x.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128 _2x.png deleted file mode 100644 index 5970ea34ba..0000000000 --- a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128 _2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e38257b6917cdf5d73e90e6009f10c8736d62b20c4e785085305075c7e6320e2 -size 32037 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128.png index 9e30e09547..192a862967 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f41a37d2347a617e93bd97adaf6d4c161c471ca3ef7e04b98c65ddda52396dc -size 27833 +oid sha256:94cb43469dfb05d348845883914ac6d5936e851c93ae6e76d16efea90cdc27da +size 5980 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128_2x.png new file mode 100644 index 0000000000..192a862967 --- /dev/null +++ b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128_2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94cb43469dfb05d348845883914ac6d5936e851c93ae6e76d16efea90cdc27da +size 5980 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16.png index aeb29abd0a..9780d8a7af 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b07984494059bf827bc485cbea06d12e0283811face1a18799495f9ba7ae8af1 -size 20779 +oid sha256:cc6a4cf056f9814a23a4f74ea0aa9cd3628a03c2349bef73c64edfed75788cb7 +size 644 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16_2x.png index 445a389d61..9780d8a7af 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16_2x.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16_2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e645142d284de40aafb7a4a858f3df92b6a5ba9b03fa5f1a2d3cb25211597926 -size 21857 +oid sha256:cc6a4cf056f9814a23a4f74ea0aa9cd3628a03c2349bef73c64edfed75788cb7 +size 644 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256 _2x.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256 _2x.png deleted file mode 100644 index 0904cf7ce8..0000000000 --- a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256 _2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:07631f41b8dea80713d2463f81a713a9a93798975b6fb50afbeeb13d26c57fa2 -size 48899 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256.png index 5970ea34ba..0b53991930 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e38257b6917cdf5d73e90e6009f10c8736d62b20c4e785085305075c7e6320e2 -size 32037 +oid sha256:f0e52fba265079da19fb72aefe1cb0a4b9f8075e10341084fffb38a1b0850cd6 +size 12600 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256_2x.png new file mode 100644 index 0000000000..0b53991930 --- /dev/null +++ b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256_2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e52fba265079da19fb72aefe1cb0a4b9f8075e10341084fffb38a1b0850cd6 +size 12600 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32.png index 445a389d61..1d8cdef173 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e645142d284de40aafb7a4a858f3df92b6a5ba9b03fa5f1a2d3cb25211597926 -size 21857 +oid sha256:53abfa6e6b4d3eff79851a2a95c762223bc610a6646e3370fd1113c57cc8e0e6 +size 1295 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32_2x.png index 1fad9bda96..1d8cdef173 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32_2x.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32_2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad83faf98b49f4e37112baedeae726f4f8d71bcdd1961d9cdad31f043f8ca666 -size 24003 +oid sha256:53abfa6e6b4d3eff79851a2a95c762223bc610a6646e3370fd1113c57cc8e0e6 +size 1295 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512.png index e1517dddb6..464f10910b 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68529a6c11d5ffa7ecd9d5bbb11ceea28e6852bd45946b525af09602c9a1e1bf -size 48899 +oid sha256:f778e4aa9577faca2609343d435da745dc6f342ea7a726573441cecc870bf542 +size 19204 diff --git a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512_2x.png index b425cb685f..464f10910b 100644 --- a/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512_2x.png +++ b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512_2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a70003840b418848b2ce6c18ed7cbbfcd6fcf76598a6601dca8b98d9b6c1a2f -size 114706 +oid sha256:f778e4aa9577faca2609343d435da745dc6f342ea7a726573441cecc870bf542 +size 19204 diff --git a/Code/Editor/Platform/Mac/main_dummy.cpp b/Code/Editor/Platform/Mac/main_dummy.cpp index fb4a431295..348a32ab47 100644 --- a/Code/Editor/Platform/Mac/main_dummy.cpp +++ b/Code/Editor/Platform/Mac/main_dummy.cpp @@ -66,8 +66,8 @@ int main(int argc, char* argv[]) processLaunchInfo.m_environmentVariables = &envVars; processLaunchInfo.m_showWindow = true; - AzFramework::ProcessWatcher* processWatcher = AzFramework::ProcessWatcher::LaunchProcess(processLaunchInfo, AzFramework::ProcessCommunicationType::COMMUNICATOR_TYPE_NONE); - + AzFramework::ProcessLauncher::LaunchUnwatchedProcess(processLaunchInfo); + application.Destroy(); return 0; diff --git a/Code/Editor/Plugin.h b/Code/Editor/Plugin.h index 1ad6a1496f..5fa45ac140 100644 --- a/Code/Editor/Plugin.h +++ b/Code/Editor/Plugin.h @@ -13,6 +13,7 @@ #include "Include/IEditorClassFactory.h" #include "Util/GuidUtil.h" +#include //! Derive from this class to decrease the amount of work for creating a new class description //! Provides standard reference counter implementation for IUnknown diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp index c91bf58074..29ced334ef 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp @@ -40,6 +40,7 @@ #include #include +#include #include #include #include @@ -49,11 +50,6 @@ * Scalars for icon drawing behavior. */ static const int s_kIconSize = 36; /// Icon display size (in pixels) -static const float s_kIconMaxWorldDist = 200.f; /// Icons are culled past this range -static const float s_kIconMinScale = 0.1f; /// Minimum scale for icons in the distance -static const float s_kIconMaxScale = 1.0f; /// Maximum scale for icons near the camera -static const float s_kIconCloseDist = 3.f; /// Distance at which icons are at maximum scale -static const float s_kIconFarDist = 40.f; /// Distance at which icons are at minimum scale CComponentEntityObject::CComponentEntityObject() : m_hasIcon(false) diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp index 429fbd923c..47bd214b8d 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp @@ -528,7 +528,6 @@ void SandboxIntegrationManager::EntityParentChanged( oldAncestor = nextParentId; } while (oldAncestor.IsValid()); - AZ::EntityId newAncestors = newParentId; AZ::EntityId newAncestor = newParentId; bool isGoingToRootScene = false; @@ -721,7 +720,7 @@ void SandboxIntegrationManager::PopulateEditorGlobalContextMenu(QMenu* menu, con if (selected.size() > 0) { action = menu->addAction(QObject::tr("Find in Entity Outliner")); - QObject::connect(action, &QAction::triggered, [this, selected] + QObject::connect(action, &QAction::triggered, [selected] { AzToolsFramework::EditorEntityContextNotificationBus::Broadcast(&EditorEntityContextNotification::OnFocusInEntityOutliner, selected); }); @@ -842,7 +841,7 @@ void SandboxIntegrationManager::SetupLayerContextMenu(QMenu* menu) QAction* findLayerAssetAction = menu->addAction(QObject::tr("Find layer in Asset Browser")); findLayerAssetAction->setToolTip(QObject::tr("Selects this layer in the Asset Browser")); - QObject::connect(findLayerAssetAction, &QAction::triggered, [this, fullFilePath] { + QObject::connect(findLayerAssetAction, &QAction::triggered, [fullFilePath] { QtViewPaneManager::instance()->OpenPane(LyViewPane::AssetBrowser); AzToolsFramework::AssetBrowser::AssetBrowserViewRequestBus::Broadcast( diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h index d14ba80bce..f2764681b2 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h @@ -280,7 +280,6 @@ private: private: AZ::Vector2 m_contextMenuViewPoint; - AZ::Vector3 m_sliceWorldPos; int m_inObjectPickMode; short m_startedUndoRecordingNestingLevel; // used in OnBegin/EndUndo to ensure we only accept undo's we started recording @@ -298,8 +297,6 @@ private: const AZStd::string m_defaultComponentViewportIconLocation = "Icons/Components/Viewport/Component_Placeholder.svg"; const AZStd::string m_defaultEntityIconLocation = "Icons/Components/Viewport/Transform.svg"; - bool m_debugDisplayBusImplementationActive = false; - AzToolsFramework::Prefab::PrefabIntegrationManager* m_prefabIntegrationManager = nullptr; AzToolsFramework::EditorEntityUiInterface* m_editorEntityUiInterface = nullptr; diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss index 1b6f04d06d..de35f91678 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss @@ -48,7 +48,6 @@ OutlinerCheckBox spacing: 0px; padding: 0px; line-height: 0px; - font-size: 0px; margin: 0px; background-color: none; max-height: 20px; @@ -66,7 +65,6 @@ OutlinerCheckBox::indicator spacing: 0px; padding: 0px; line-height: 0px; - font-size: 0px; margin: 0; } diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp index 9ec81cdb3b..c25248d4f6 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp @@ -1234,8 +1234,6 @@ bool OutlinerListModel::ReparentEntities(const AZ::EntityId& newParentId, const QMimeData* OutlinerListModel::mimeData(const QModelIndexList& indexes) const { AZ_PROFILE_FUNCTION(AzToolsFramework); - AZ::TypeId uuid1 = AZ::AzTypeInfo::Uuid(); - AZ::TypeId uuid2 = AZ::AzTypeInfo::Uuid(); AzToolsFramework::EditorEntityIdContainer entityIdList; for (const QModelIndex& index : indexes) @@ -1462,13 +1460,11 @@ void OutlinerListModel::OnEntityRuntimeActivationChanged(AZ::EntityId entityId, QueueEntityUpdate(entityId); } -void OutlinerListModel::OnEntityInfoUpdatedRemoveChildBegin(AZ::EntityId parentId, AZ::EntityId childId) +void OutlinerListModel::OnEntityInfoUpdatedRemoveChildBegin([[maybe_unused]] AZ::EntityId parentId, [[maybe_unused]] AZ::EntityId childId) { //add/remove operations trigger selection change signals which assert and break undo/redo operations in progress in inspector etc. //so disallow selection updates until change is complete emit EnableSelectionUpdates(false); - auto parentIndex = GetIndexFromEntity(parentId); - auto childIndex = GetIndexFromEntity(childId); beginResetModel(); } diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp index c7e14d9c4e..105a5b4954 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp @@ -31,6 +31,7 @@ #include #include #include +#include #include #include diff --git a/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp index 4f942a4251..2c00edbc39 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp @@ -13,6 +13,7 @@ #include #include #include +#include #include ImporterRootDisplay::ImporterRootDisplay(AZ::SerializeContext* serializeContext, QWidget* parent) diff --git a/Code/Editor/PythonEditorFuncs.cpp b/Code/Editor/PythonEditorFuncs.cpp index dff41c0a86..342cc607d7 100644 --- a/Code/Editor/PythonEditorFuncs.cpp +++ b/Code/Editor/PythonEditorFuncs.cpp @@ -33,18 +33,6 @@ namespace { - ////////////////////////////////////////////////////////////////////////// - const char* PyGetCVar(const char* pName) - { - ICVar* pCVar = GetIEditor()->GetSystem()->GetIConsole()->GetCVar(pName); - if (!pCVar) - { - Warning("PyGetCVar: Attempt to access non-existent CVar '%s'", pName ? pName : "(null)"); - throw std::logic_error((QString("\"") + pName + "\" is an invalid cvar.").toUtf8().data()); - } - return pCVar->GetString(); - } - ////////////////////////////////////////////////////////////////////////// const char* PyGetCVarAsString(const char* pName) { @@ -212,52 +200,6 @@ namespace return GetIEditor()->IsInSimulationMode(); } - ////////////////////////////////////////////////////////////////////////// - QString PyNewObject(const char* typeName, const char* fileName, const char* name, float x, float y, float z) - { - CBaseObject* object = GetIEditor()->NewObject(typeName, fileName, name, x, y, z); - if (object) - { - return object->GetName(); - } - else - { - return ""; - } - } - - ////////////////////////////////////////////////////////////////////////// - QString PyNewObjectAtCursor(const char* typeName, const char* fileName, const char* name) - { - CUndo undo("Create new object"); - - Vec3 pos(0, 0, 0); - - QPoint p = QCursor::pos(); - CViewport* viewport = GetIEditor()->GetViewManager()->GetViewportAtPoint(p); - if (viewport) - { - viewport->ScreenToClient(p); - if (GetIEditor()->GetAxisConstrains() != AXIS_TERRAIN) - { - pos = viewport->MapViewToCP(p); - } - else - { - // Snap to terrain. - bool hitTerrain; - pos = viewport->ViewToWorld(p, &hitTerrain); - if (hitTerrain) - { - pos.z = GetIEditor()->GetTerrainElevation(pos.x, pos.y) + 1.0f; - } - pos = viewport->SnapToGrid(pos); - } - } - - return PyNewObject(typeName, fileName, name, pos.x, pos.y, pos.z); - } - ////////////////////////////////////////////////////////////////////////// void PyRunConsole(const char* text) { diff --git a/Code/Editor/QtViewPaneManager.cpp b/Code/Editor/QtViewPaneManager.cpp index 022bb6ecd9..eff3a7331e 100644 --- a/Code/Editor/QtViewPaneManager.cpp +++ b/Code/Editor/QtViewPaneManager.cpp @@ -240,14 +240,13 @@ static bool SkipTitleBarOverdraw(QtViewPane* pane) return !pane->m_options.isDockable; } -DockWidget::DockWidget(QWidget* widget, QtViewPane* pane, QSettings* settings, QMainWindow* parent, AzQtComponents::FancyDocking* advancedDockManager) +DockWidget::DockWidget(QWidget* widget, QtViewPane* pane, [[maybe_unused]] QSettings* settings, QMainWindow* parent, AzQtComponents::FancyDocking* advancedDockManager) : AzQtComponents::StyledDockWidget(pane->m_name, SkipTitleBarOverdraw(pane), #if AZ_TRAIT_OS_PLATFORM_APPLE pane->m_options.detachedWindow ? nullptr : parent) #else parent) #endif - , m_settings(settings) , m_mainWindow(parent) , m_pane(pane) , m_advancedDockManager(advancedDockManager) diff --git a/Code/Editor/QtViewPaneManager.h b/Code/Editor/QtViewPaneManager.h index 49440068a0..3ad1cc9cf7 100644 --- a/Code/Editor/QtViewPaneManager.h +++ b/Code/Editor/QtViewPaneManager.h @@ -67,7 +67,6 @@ private: void reparentToMainWindowFix(); QRect ProperGeometry() const; QString settingsKey() const; - QSettings* const m_settings; QMainWindow* const m_mainWindow; QtViewPane* const m_pane; AzQtComponents::FancyDocking* m_advancedDockManager; diff --git a/Code/Editor/RenderHelpers/AxisHelperShared.inl b/Code/Editor/RenderHelpers/AxisHelperShared.inl index 2ceac98eae..24cd2ef9f5 100644 --- a/Code/Editor/RenderHelpers/AxisHelperShared.inl +++ b/Code/Editor/RenderHelpers/AxisHelperShared.inl @@ -191,7 +191,6 @@ void CAxisHelper::DrawAxis(const Matrix34& worldTM, const SGizmoParameters& setu { if (axis) { - float col[4] = { 1, 0, 0, 1 }; if (axis == AXIS_X || axis == AXIS_XY || axis == AXIS_XZ || axis == AXIS_XYZ) { colX = colSelected; @@ -436,7 +435,6 @@ void CAxisHelper::DrawAxis(const Matrix34& worldTM, const SGizmoParameters& setu { dc.SetColor(QColor(128, 32, 32), 0.4f); } - Vec3 org = worldTM.GetTranslation(); dc.DrawBall(Vec3(0.0f), m_size * kSelectionBallScale); } diff --git a/Code/Editor/Settings.cpp b/Code/Editor/Settings.cpp index 4af0989b13..92617248d3 100644 --- a/Code/Editor/Settings.cpp +++ b/Code/Editor/Settings.cpp @@ -35,7 +35,6 @@ #include "CryEdit.h" #include "MainWindow.h" -#pragma comment(lib, "Gdi32.lib") ////////////////////////////////////////////////////////////////////////// // Global Instance of Editor settings. diff --git a/Code/Editor/SettingsManager.cpp b/Code/Editor/SettingsManager.cpp index d567da4c26..7455d9134f 100644 --- a/Code/Editor/SettingsManager.cpp +++ b/Code/Editor/SettingsManager.cpp @@ -987,7 +987,7 @@ QString CSettingsManager::GenerateContentHash(XmlNodeRef& node, QString sourceNa return sourceName; } - uint32 hash = CCrc32::ComputeLowercase(node->getXML(0)); + uint32 hash = AZ::Crc32(node->getXML(0)); hashStr = QString::number(hash); return hashStr; diff --git a/Code/Editor/StartupTraceHandler.cpp b/Code/Editor/StartupTraceHandler.cpp index ae525eb4e3..498bf10e31 100644 --- a/Code/Editor/StartupTraceHandler.cpp +++ b/Code/Editor/StartupTraceHandler.cpp @@ -168,7 +168,7 @@ namespace SandboxEditor void StartupTraceHandler::ShowMessageBox(const QString& message) { - AZ::SystemTickBus::QueueFunction([this, message]() + AZ::SystemTickBus::QueueFunction([message]() { // Parent to the main window, so that the error dialog doesn't // show up as a separate window when alt-tabbing. diff --git a/Code/Editor/Style/NewEditorStylesheet.qss b/Code/Editor/Style/NewEditorStylesheet.qss index d92ec33357..1de8634b4c 100644 --- a/Code/Editor/Style/NewEditorStylesheet.qss +++ b/Code/Editor/Style/NewEditorStylesheet.qss @@ -2505,7 +2505,6 @@ OutlinerCheckBox spacing: 0px; padding: 0px; line-height: 0px; - font-size: 0px; margin: 2px 2px 0 2px; background-color: none; max-height: 20px; diff --git a/Code/Editor/ToolbarManager.cpp b/Code/Editor/ToolbarManager.cpp index 1831fe6a55..00b7992ef0 100644 --- a/Code/Editor/ToolbarManager.cpp +++ b/Code/Editor/ToolbarManager.cpp @@ -1217,7 +1217,6 @@ void EditableQToolBar::dropEvent(QDropEvent* ev) return; } - const int actionId = action->data().toInt(); QWidget* beforeWidget = insertPositionForDrop(ev->pos()); QAction* beforeAction = beforeWidget ? ActionForWidget(beforeWidget) : nullptr; diff --git a/Code/Editor/ToolsConfigPage.cpp b/Code/Editor/ToolsConfigPage.cpp index 1871dc763f..509dca55e3 100644 --- a/Code/Editor/ToolsConfigPage.cpp +++ b/Code/Editor/ToolsConfigPage.cpp @@ -39,8 +39,6 @@ namespace QColor COLOR_FOR_CONSOLE_COMMAND = QColor(0, 0, 255); QColor COLOR_FOR_TOGGLE_COMMAND = QColor(128, 0, 255); QColor COLOR_FOR_INVALID_COMMAND = QColor(255, 0, 0); - - UINT CONSOLE_CMD_DROP_LIST_HEIGHT = 300; }; class IconListModel @@ -61,8 +59,8 @@ public: } const QString iconsDir = gSettings.searchPaths[EDITOR_PATH_UI_ICONS][0]; CFileUtil::ScanDirectory(iconsDir, "*.png", pngFiles); - m_iconImages.reserve(pngFiles.size()); - m_iconFiles.reserve(pngFiles.size()); + m_iconImages.reserve(static_cast(pngFiles.size())); + m_iconFiles.reserve(static_cast(pngFiles.size())); for (size_t i = 0; i < pngFiles.size(); ++i) { const QString path = Path::Make(iconsDir, pngFiles[i].filename); diff --git a/Code/Editor/TopRendererWnd.cpp b/Code/Editor/TopRendererWnd.cpp index 7bbefdd63f..5f25a6b4c5 100644 --- a/Code/Editor/TopRendererWnd.cpp +++ b/Code/Editor/TopRendererWnd.cpp @@ -26,27 +26,6 @@ #define GL_RGBA 0x1908 #define GL_BGRA 0x80E1 -// Used to give each static object type a different color -static uint32 sVegetationColors[16] = -{ - 0xFFFF0000, - 0xFF00FF00, - 0xFF0000FF, - 0xFFFFFFFF, - 0xFFFF00FF, - 0xFFFFFF00, - 0xFF00FFFF, - 0xFF7F00FF, - 0xFF7FFF7F, - 0xFFFF7F00, - 0xFF00FF7F, - 0xFF7F7F7F, - 0xFFFF0000, - 0xFF00FF00, - 0xFF0000FF, - 0xFFFFFFFF, -}; - ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// @@ -148,8 +127,6 @@ void QTopRendererWnd::UpdateContent(int flags) ////////////////////////////////////////////////////////////////////////// void QTopRendererWnd::Draw([[maybe_unused]] DisplayContext& dc) { - FUNCTION_PROFILER(GetIEditor()->GetSystem(), PROFILE_EDITOR); - //////////////////////////////////////////////////////////////////////// // Perform the rendering for this window //////////////////////////////////////////////////////////////////////// diff --git a/Code/Editor/TrackView/CommentNodeAnimator.cpp b/Code/Editor/TrackView/CommentNodeAnimator.cpp index 2dd2cfbb22..c49504509c 100644 --- a/Code/Editor/TrackView/CommentNodeAnimator.cpp +++ b/Code/Editor/TrackView/CommentNodeAnimator.cpp @@ -13,6 +13,7 @@ // CryCommon #include +#include // Editor #include "Settings.h" diff --git a/Code/Editor/TrackView/DirectorNodeAnimator.cpp b/Code/Editor/TrackView/DirectorNodeAnimator.cpp index 3e2a1d5626..01663fbf69 100644 --- a/Code/Editor/TrackView/DirectorNodeAnimator.cpp +++ b/Code/Editor/TrackView/DirectorNodeAnimator.cpp @@ -19,10 +19,8 @@ //////////////////////////////////////////////////////////////////////////// -CDirectorNodeAnimator::CDirectorNodeAnimator(CTrackViewAnimNode* pDirectorNode) - : m_pDirectorNode(pDirectorNode) +CDirectorNodeAnimator::CDirectorNodeAnimator([[maybe_unused]] CTrackViewAnimNode* pDirectorNode) { - assert(m_pDirectorNode != nullptr); } //////////////////////////////////////////////////////////////////////////// @@ -139,7 +137,6 @@ void CDirectorNodeAnimator::ForEachActiveSequence(const SAnimContext& ac, CTrack const bool bHandleOtherKeys, std::function animateFunction, std::function resetFunction) { - const float time = ac.time; const unsigned int numKeys = pSequenceTrack->GetKeyCount(); if (bHandleOtherKeys) diff --git a/Code/Editor/TrackView/DirectorNodeAnimator.h b/Code/Editor/TrackView/DirectorNodeAnimator.h index d2bde01c54..87d72bf5c8 100644 --- a/Code/Editor/TrackView/DirectorNodeAnimator.h +++ b/Code/Editor/TrackView/DirectorNodeAnimator.h @@ -34,7 +34,5 @@ private: void ForEachActiveSequence(const SAnimContext& ac, CTrackViewTrack* pSequenceTrack, const bool bHandleOtherKeys, std::function animateFunction, std::function resetFunction); - - CTrackViewAnimNode* m_pDirectorNode; }; #endif // CRYINCLUDE_EDITOR_TRACKVIEW_DIRECTORNODEANIMATOR_H diff --git a/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp b/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp index ae1080a9c1..b30f655b0b 100644 --- a/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp +++ b/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp @@ -106,7 +106,6 @@ namespace { AnimParamType::User, "Muted", QColor(255, 224, 224) }, }; - const int kButtonsIdBase = 0x7fff; const int kMaxRows = 20; const int kColumnWidth = 300; const int kRowHeight = 24; diff --git a/Code/Editor/TrackView/TVEventsDialog.cpp b/Code/Editor/TrackView/TVEventsDialog.cpp index 86b4c1f6bc..dbaaf4b530 100644 --- a/Code/Editor/TrackView/TVEventsDialog.cpp +++ b/Code/Editor/TrackView/TVEventsDialog.cpp @@ -29,12 +29,6 @@ AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING // CTVEventsDialog dialog -namespace -{ - const int kCountSubItemIndex = 1; - const int kTimeSubItemIndex = 2; -} - class TVEventsModel : public QAbstractTableModel { diff --git a/Code/Editor/TrackView/TVSequenceProps.cpp b/Code/Editor/TrackView/TVSequenceProps.cpp index d4e06d0c94..0abab65645 100644 --- a/Code/Editor/TrackView/TVSequenceProps.cpp +++ b/Code/Editor/TrackView/TVSequenceProps.cpp @@ -53,7 +53,7 @@ CTVSequenceProps::~CTVSequenceProps() // CTVSequenceProps message handlers bool CTVSequenceProps::OnInitDialog() { - ui->NAME->setText(m_pSequence->GetName()); + ui->NAME->setText(m_pSequence->GetName().c_str()); int seqFlags = m_pSequence->GetFlags(); ui->ALWAYS_PLAY->setChecked((seqFlags & IAnimSequence::eSeqFlags_PlayOnReset)); @@ -141,7 +141,7 @@ void CTVSequenceProps::UpdateSequenceProps(const QString& name) ac->UpdateTimeRange(); } - QString seqName = m_pSequence->GetName(); + QString seqName = QString::fromUtf8(m_pSequence->GetName().c_str()); if (name != seqName) { // Rename sequence. diff --git a/Code/Editor/TrackView/TrackViewAnimNode.cpp b/Code/Editor/TrackView/TrackViewAnimNode.cpp index 4b599859e9..0bb9ac5593 100644 --- a/Code/Editor/TrackView/TrackViewAnimNode.cpp +++ b/Code/Editor/TrackView/TrackViewAnimNode.cpp @@ -423,7 +423,7 @@ CTrackViewAnimNode* CTrackViewAnimNode::CreateSubNode( AZStd::string::format( "Failed to add '%s' to sequence '%s', could not find associated entity. " "Please try adding the entity associated with '%s'.", - originalNameStr.constData(), director->GetName(), originalNameStr.constData())); + originalNameStr.constData(), director->GetName().c_str(), originalNameStr.constData())); return nullptr; } @@ -472,7 +472,7 @@ CTrackViewAnimNode* CTrackViewAnimNode::CreateSubNode( { GetIEditor()->GetMovieSystem()->LogUserNotificationMsg( AZStd::string::format("'%s' already exists in sequence '%s', skipping...", - originalNameStr.constData(), director2->GetName())); + originalNameStr.constData(), director2->GetName().c_str())); return nullptr; } @@ -488,7 +488,7 @@ CTrackViewAnimNode* CTrackViewAnimNode::CreateSubNode( if (!newAnimNode) { GetIEditor()->GetMovieSystem()->LogUserNotificationMsg( - AZStd::string::format("Failed to add '%s' to sequence '%s'.", nameStr.constData(), director->GetName())); + AZStd::string::format("Failed to add '%s' to sequence '%s'.", nameStr.constData(), director->GetName().c_str())); return nullptr; } @@ -1195,7 +1195,7 @@ CTrackViewAnimNodeBundle CTrackViewAnimNode::GetAnimNodesByName(const char* pNam { CTrackViewAnimNodeBundle bundle; - QString nodeName = GetName(); + QString nodeName = QString::fromUtf8(GetName().c_str()); if (GetNodeType() == eTVNT_AnimNode && QString::compare(pName, nodeName, Qt::CaseInsensitive) == 0) { bundle.AppendAnimNode(this); @@ -1215,10 +1215,9 @@ CTrackViewAnimNodeBundle CTrackViewAnimNode::GetAnimNodesByName(const char* pNam } ////////////////////////////////////////////////////////////////////////// -const char* CTrackViewAnimNode::GetParamName(const CAnimParamType& paramType) const +AZStd::string CTrackViewAnimNode::GetParamName(const CAnimParamType& paramType) const { - const char* pName = m_animNode->GetParamName(paramType); - return pName ? pName : ""; + return m_animNode->GetParamName(paramType); } ////////////////////////////////////////////////////////////////////////// @@ -1274,7 +1273,7 @@ CTrackViewAnimNodeBundle CTrackViewAnimNode::AddSelectedEntities(const AZStd::ve if (existingNode->GetDirector() == GetDirector()) { GetIEditor()->GetMovieSystem()->LogUserNotificationMsg(AZStd::string::format( - "'%s' was already added to '%s', skipping...", entity->GetName().c_str(), GetDirector()->GetName())); + "'%s' was already added to '%s', skipping...", entity->GetName().c_str(), GetDirector()->GetName().c_str())); continue; } @@ -1377,7 +1376,7 @@ void CTrackViewAnimNode::UpdateDynamicParams() void CTrackViewAnimNode::CopyKeysToClipboard(XmlNodeRef& xmlNode, const bool bOnlySelectedKeys, const bool bOnlyFromSelectedTracks) { XmlNodeRef childNode = xmlNode->createNode("Node"); - childNode->setAttr("name", GetName()); + childNode->setAttr("name", GetName().c_str()); childNode->setAttr("type", static_cast(GetType())); for (auto iter = m_childNodes.begin(); iter != m_childNodes.end(); ++iter) @@ -1683,7 +1682,7 @@ bool CTrackViewAnimNode::IsValidReparentingTo(CTrackViewAnimNode* pNewParent) } // Check if the new parent already contains a node with this name - CTrackViewAnimNodeBundle foundNodes = pNewParent->GetAnimNodesByName(GetName()); + CTrackViewAnimNodeBundle foundNodes = pNewParent->GetAnimNodesByName(GetName().c_str()); if (foundNodes.GetCount() > 1 || (foundNodes.GetCount() == 1 && foundNodes.GetNode(0) != this)) { return false; @@ -1820,7 +1819,6 @@ bool CTrackViewAnimNode::IsDisabled() const ////////////////////////////////////////////////////////////////////////// void CTrackViewAnimNode::SetPos(const Vec3& position) { - const float time = GetSequence()->GetTime(); CTrackViewTrack* track = GetTrackForParameter(AnimParamType::Position); if (track) @@ -1944,7 +1942,7 @@ void CTrackViewAnimNode::OnSelectionChanged(const bool selected) { if (m_animNode) { - const AnimNodeType animNodeType = GetType(); + [[maybe_unused]] const AnimNodeType animNodeType = GetType(); AZ_Assert(animNodeType == AnimNodeType::AzEntity, "Expected AzEntity for selection changed"); const EAnimNodeFlags flags = (EAnimNodeFlags)m_animNode->GetFlags(); diff --git a/Code/Editor/TrackView/TrackViewAnimNode.h b/Code/Editor/TrackView/TrackViewAnimNode.h index 466e60bcf0..aa6474ccdb 100644 --- a/Code/Editor/TrackView/TrackViewAnimNode.h +++ b/Code/Editor/TrackView/TrackViewAnimNode.h @@ -124,7 +124,7 @@ public: virtual void SetAsViewCamera(); // Name setter/getter - virtual const char* GetName() const override { return m_animNode->GetName(); } + AZStd::string GetName() const override { return m_animNode->GetName(); } virtual bool SetName(const char* pName) override; virtual bool CanBeRenamed() const override; @@ -187,7 +187,7 @@ public: // Param unsigned int GetParamCount() const; CAnimParamType GetParamType(unsigned int index) const; - const char* GetParamName(const CAnimParamType& paramType) const; + AZStd::string GetParamName(const CAnimParamType& paramType) const; bool IsParamValid(const CAnimParamType& param) const; IAnimNode::ESupportedParamFlags GetParamFlags(const CAnimParamType& paramType) const; AnimValueType GetParamValueType(const CAnimParamType& paramType) const; diff --git a/Code/Editor/TrackView/TrackViewDialog.cpp b/Code/Editor/TrackView/TrackViewDialog.cpp index f1701f9e20..d70cbad29e 100644 --- a/Code/Editor/TrackView/TrackViewDialog.cpp +++ b/Code/Editor/TrackView/TrackViewDialog.cpp @@ -34,6 +34,7 @@ // AzQtComponents #include +#include // CryCommon #include @@ -77,9 +78,6 @@ inline namespace TrackViewInternal const int s_kMinimumFrameSnappingFPS = 1; const int s_kMaximumFrameSnappingFPS = 120; - const int TRACKVIEW_LAYOUT_VERSION = 0x0001; // Bump this up on every substantial pane layout change - const int TRACKVIEW_REBAR_VERSION = 0x0002; // Bump this up on every substantial rebar change - CTrackViewSequence* GetSequenceByEntityIdOrName(const CTrackViewSequenceManager* pSequenceManager, const char* entityIdOrName) { // the "name" string will be an AZ::EntityId in string form if this was called from @@ -1125,7 +1123,7 @@ void CTrackViewDialog::ReloadSequencesComboBox() { CTrackViewSequence* sequence = pSequenceManager->GetSequenceByIndex(k); QString entityIdString = GetEntityIdAsString(sequence->GetSequenceComponentEntityId()); - m_sequencesComboBox->addItem(sequence->GetName(), entityIdString); + m_sequencesComboBox->addItem(QString::fromUtf8(sequence->GetName().c_str()), entityIdString); } } @@ -2033,7 +2031,7 @@ void CTrackViewDialog::UpdateTracksToolBar() continue; } - name = pAnimNode->GetParamName(paramType); + name = QString::fromUtf8(pAnimNode->GetParamName(paramType).c_str()); QString sToolTipText("Add " + name + " Track"); QIcon hIcon = m_wndNodesCtrl->GetIconForTrack(pTrack); @@ -2309,7 +2307,7 @@ void CTrackViewDialog::SaveCurrentSequenceToFBX() return; } - QString selectedSequenceFBXStr = QString(sequence->GetName()) + ".fbx"; + QString selectedSequenceFBXStr = QString::fromUtf8(sequence->GetName().c_str()) + ".fbx"; CExportManager* pExportManager = static_cast(GetIEditor()->GetExportManager()); const char szFilters[] = "FBX Files (*.fbx)"; @@ -2327,7 +2325,7 @@ void CTrackViewDialog::SaveCurrentSequenceToFBX() } } - QString filename = QFileDialog::getSaveFileName(this, tr("Export Selected Nodes To FBX File"), selectedSequenceFBXStr, szFilters); + QString filename = AzQtComponents::FileDialog::GetSaveFileName(this, tr("Export Selected Nodes To FBX File"), selectedSequenceFBXStr, szFilters); if (!filename.isEmpty()) { pExportManager->SetBakedKeysSequenceExport(true); diff --git a/Code/Editor/TrackView/TrackViewDopeSheetBase.cpp b/Code/Editor/TrackView/TrackViewDopeSheetBase.cpp index d0034b2da4..a14da0ae09 100644 --- a/Code/Editor/TrackView/TrackViewDopeSheetBase.cpp +++ b/Code/Editor/TrackView/TrackViewDopeSheetBase.cpp @@ -199,7 +199,6 @@ void CTrackViewDopeSheetBase::SetTimeRange(float start, float end) void CTrackViewDopeSheetBase::SetTimeScale(float timeScale, float fAnchorTime) { const double fOldOffset = -fAnchorTime * m_timeScale; - const double fOldScale = m_timeScale; timeScale = std::max(timeScale, 0.001f); timeScale = std::min(timeScale, 100000.0f); @@ -1426,8 +1425,6 @@ void CTrackViewDopeSheetBase::OnCaptureChanged() ////////////////////////////////////////////////////////////////////////// bool CTrackViewDopeSheetBase::IsOkToAddKeyHere(const CTrackViewTrack* pTrack, float time) const { - const float timeEpsilon = 0.05f; - for (unsigned int i = 0; i < pTrack->GetKeyCount(); ++i) { const CTrackViewKeyConstHandle& keyHandle = pTrack->GetKey(i); @@ -2152,8 +2149,6 @@ void CTrackViewDopeSheetBase::AcceptUndo() { if (CUndo::IsRecording()) { - const QPoint mousePos = mapFromGlobal(QCursor::pos()); - CTrackViewSequence* sequence = GetIEditor()->GetAnimation()->GetSequence(); if (m_mouseMode == eTVMouseMode_Paste) @@ -2623,7 +2618,6 @@ void CTrackViewDopeSheetBase::DrawBoolTrack(const Range& timeRange, QPainter* pa { int x0 = TimeToClient(timeRange.start); float t0 = timeRange.start; - QRect trackRect; const QBrush prevBrush = painter->brush(); painter->setBrush(m_visibilityBrush); @@ -2752,7 +2746,6 @@ void CTrackViewDopeSheetBase::DrawKeys(CTrackViewTrack* pTrack, QPainter* painte } int x1 = x + kDefaultWidthForDescription; - CTrackViewKeyHandle nextKey = keyHandle.GetNextKey(); int nextKeyIndex = i + 1; @@ -3453,7 +3446,7 @@ void CTrackViewDopeSheetBase::DrawNodeTrack(CTrackViewAnimNode* animNode, QPaint const QRect textRect = trackRect.adjusted(4, 0, -4, 0); - QString sAnimNodeName = animNode->GetName(); + QString sAnimNodeName = QString::fromUtf8(animNode->GetName().c_str()); const bool hasObsoleteTrack = animNode->HasObsoleteTrack(); if (hasObsoleteTrack) diff --git a/Code/Editor/TrackView/TrackViewNode.cpp b/Code/Editor/TrackView/TrackViewNode.cpp index d8507d9b0a..208210f1e7 100644 --- a/Code/Editor/TrackView/TrackViewNode.cpp +++ b/Code/Editor/TrackView/TrackViewNode.cpp @@ -22,16 +22,12 @@ //////////////////////////////////////////////////////////////////////////// void CTrackViewKeyConstHandle::GetKey(IKey* pKey) const { - assert(m_bIsValid); - m_pTrack->GetKey(m_keyIndex, pKey); } //////////////////////////////////////////////////////////////////////////// float CTrackViewKeyConstHandle::GetTime() const { - assert(m_bIsValid); - return m_pTrack->GetKeyTime(m_keyIndex); } @@ -626,7 +622,7 @@ bool CTrackViewNode::operator<(const CTrackViewNode& otherNode) const if (thisTypeOrder == otherTypeOrder) { // Same node type, sort by name - return azstricmp(thisAnimNode.GetName(), otherAnimNode.GetName()) < 0; + return thisAnimNode.GetName() < otherAnimNode.GetName(); } return thisTypeOrder < otherTypeOrder; @@ -638,7 +634,7 @@ bool CTrackViewNode::operator<(const CTrackViewNode& otherNode) const if (thisTrack.GetParameterType() == otherTrack.GetParameterType()) { // Same parameter type, sort by name - return azstricmp(thisTrack.GetName(), otherTrack.GetName()) < 0; + return thisTrack.GetName() < otherTrack.GetName(); } return thisTrack.GetParameterType() < otherTrack.GetParameterType(); diff --git a/Code/Editor/TrackView/TrackViewNode.h b/Code/Editor/TrackView/TrackViewNode.h index 2c289049e9..59df06750b 100644 --- a/Code/Editor/TrackView/TrackViewNode.h +++ b/Code/Editor/TrackView/TrackViewNode.h @@ -22,13 +22,11 @@ class CTrackViewKeyConstHandle { public: CTrackViewKeyConstHandle() - : m_bIsValid(false) - , m_keyIndex(0) + : m_keyIndex(0) , m_pTrack(nullptr) {} CTrackViewKeyConstHandle(const CTrackViewTrack* pTrack, unsigned int keyIndex) - : m_bIsValid(true) - , m_keyIndex(keyIndex) + : m_keyIndex(keyIndex) , m_pTrack(pTrack) {} void GetKey(IKey* pKey) const; @@ -36,7 +34,6 @@ public: const CTrackViewTrack* GetTrack() const { return m_pTrack; } private: - bool m_bIsValid; unsigned int m_keyIndex; const CTrackViewTrack* m_pTrack; }; @@ -159,7 +156,7 @@ public: virtual ~CTrackViewNode() {} // Name - virtual const char* GetName() const = 0; + virtual AZStd::string GetName() const = 0; virtual bool SetName([[maybe_unused]] const char* pName) { return false; }; virtual bool CanBeRenamed() const { return false; } diff --git a/Code/Editor/TrackView/TrackViewNodes.cpp b/Code/Editor/TrackView/TrackViewNodes.cpp index ae38323cc3..2a2d584e46 100644 --- a/Code/Editor/TrackView/TrackViewNodes.cpp +++ b/Code/Editor/TrackView/TrackViewNodes.cpp @@ -30,6 +30,7 @@ // AzQtComponents #include +#include // CryCommon #include @@ -616,7 +617,7 @@ CTrackViewNodesCtrl::CRecord* CTrackViewNodesCtrl::AddAnimNodeRecord(CRecord* pP { CRecord* pNewRecord = new CRecord(animNode); - pNewRecord->setText(0, animNode->GetName()); + pNewRecord->setText(0, QString::fromUtf8(animNode->GetName().c_str())); UpdateAnimNodeRecord(pNewRecord, animNode); pParentRecord->insertChild(GetInsertPosition(pParentRecord, animNode), pNewRecord); FillNodesRec(pNewRecord, animNode); @@ -629,7 +630,7 @@ CTrackViewNodesCtrl::CRecord* CTrackViewNodesCtrl::AddTrackRecord(CRecord* pPare { CRecord* pNewTrackRecord = new CRecord(pTrack); pNewTrackRecord->setSizeHint(0, QSize(30, 18)); - pNewTrackRecord->setText(0, pTrack->GetName()); + pNewTrackRecord->setText(0, QString::fromUtf8(pTrack->GetName().c_str())); UpdateTrackRecord(pNewTrackRecord, pTrack); pParentRecord->insertChild(GetInsertPosition(pParentRecord, pTrack), pNewTrackRecord); FillNodesRec(pNewTrackRecord, pTrack); @@ -860,7 +861,7 @@ void CTrackViewNodesCtrl::OnFillItems() m_nodeToRecordMap.clear(); CRecord* pRootGroupRec = new CRecord(sequence); - pRootGroupRec->setText(0, sequence->GetName()); + pRootGroupRec->setText(0, QString::fromUtf8(sequence->GetName().c_str())); QFont f = font(); f.setBold(true); pRootGroupRec->setData(0, Qt::FontRole, f); @@ -1032,8 +1033,8 @@ void CTrackViewNodesCtrl::OnNMRclick(QPoint point) return; } - QString file = QString(sequence2->GetName()) + QString(".fbx"); - QString selectedSequenceFBXStr = QString(sequence2->GetName()) + ".fbx"; + QString file = QString::fromUtf8(sequence2->GetName().c_str()) + QString(".fbx"); + QString selectedSequenceFBXStr = QString::fromUtf8(sequence2->GetName().c_str()) + ".fbx"; if (numSelectedNodes > 1) { @@ -1041,10 +1042,10 @@ void CTrackViewNodesCtrl::OnNMRclick(QPoint point) } else { - file = QString(selectedNodes.GetNode(0)->GetName()) + QString(".fbx"); + file = QString::fromUtf8(selectedNodes.GetNode(0)->GetName().c_str()) + QString(".fbx"); } - QString path = QFileDialog::getSaveFileName(this, tr("Export Selected Nodes To FBX File"), QString(), tr("FBX Files (*.fbx)")); + QString path = AzQtComponents::FileDialog::GetSaveFileName(this, tr("Export Selected Nodes To FBX File"), QString(), tr("FBX Files (*.fbx)")); if (!path.isEmpty()) { @@ -1338,7 +1339,7 @@ void CTrackViewNodesCtrl::OnNMRclick(QPoint point) if (animNode || groupNode) { CTrackViewAnimNode* animNode2 = static_cast(pNode); - QString oldName = animNode2->GetName(); + QString oldName = QString::fromUtf8(animNode2->GetName().c_str()); StringDlg dlg(tr("Rename Node")); dlg.SetString(oldName); @@ -1494,7 +1495,7 @@ void CTrackViewNodesCtrl::OnNMRclick(QPoint point) if (animNode) { QString matName; - GetMatNameAndSubMtlIndexFromName(matName, animNode->GetName()); + GetMatNameAndSubMtlIndexFromName(matName, animNode->GetName().c_str()); QString newMatName; newMatName = tr("%1.[%2]").arg(matName).arg(cmd - eMI_SelectSubmaterialBase + 1); CUndo undo("Rename TrackView node"); @@ -1576,7 +1577,7 @@ CTrackViewTrack* CTrackViewNodesCtrl::GetTrackViewTrack(const Export::EntityAnim for (unsigned int trackID = 0; trackID < trackBundle.GetCount(); ++trackID) { CTrackViewTrack* pTrack = trackBundle.GetTrack(trackID); - const QString bundleTrackName = pTrack->GetAnimNode()->GetName(); + const QString bundleTrackName = QString::fromUtf8(pTrack->GetAnimNode()->GetName().c_str()); if (bundleTrackName.compare(nodeName, Qt::CaseInsensitive) != 0) { @@ -2164,7 +2165,7 @@ int CTrackViewNodesCtrl::ShowPopupMenuSingleSelection(SContextMenu& contextMenu, if (bOnNode && !pNode->IsGroupNode()) { AddMenuSeperatorConditional(contextMenu.main, bAppended); - QString string = QString("%1 Tracks").arg(animNode->GetName()); + QString string = QString("%1 Tracks").arg(animNode->GetName().c_str()); contextMenu.main.addAction(string)->setEnabled(false); bool bAppendedTrackFlag = false; @@ -2182,7 +2183,7 @@ int CTrackViewNodesCtrl::ShowPopupMenuSingleSelection(SContextMenu& contextMenu, continue; } - QAction* a = contextMenu.main.addAction(QString(" %1").arg(pTrack2->GetName())); + QAction* a = contextMenu.main.addAction(QString(" %1").arg(pTrack2->GetName().c_str())); a->setData(eMI_ShowHideBase + childIndex); a->setCheckable(true); a->setChecked(!pTrack2->IsHidden()); @@ -2348,13 +2349,12 @@ bool CTrackViewNodesCtrl::FillAddTrackMenu(STrackMenuTreeNode& menuAddTrack, con continue; } } - name = animNode->GetParamName(paramType); - QStringList splittedName = name.split("/", Qt::SkipEmptyParts); + name = QString::fromUtf8(animNode->GetParamName(paramType).c_str()); + QStringList splitName = name.split("/", Qt::SkipEmptyParts); STrackMenuTreeNode* pCurrentNode = &menuAddTrack; - for (int j = 0; j < splittedName.size() - 1; ++j) + for (const QString& segment : splitName) { - const QString& segment = splittedName[j]; auto findIter = pCurrentNode->children.find(segment); if (findIter != pCurrentNode->children.end()) { @@ -2370,10 +2370,10 @@ bool CTrackViewNodesCtrl::FillAddTrackMenu(STrackMenuTreeNode& menuAddTrack, con // only add tracks to the that STrackMenuTreeNode tree that haven't already been added CTrackViewTrackBundle matchedTracks = animNode->GetTracksByParam(paramType); - if (matchedTracks.GetCount() == 0) + if (matchedTracks.GetCount() == 0 && !splitName.isEmpty()) { STrackMenuTreeNode* pParamNode = new STrackMenuTreeNode; - pCurrentNode->children[splittedName.back()] = std::unique_ptr(pParamNode); + pCurrentNode->children[splitName.back()] = std::unique_ptr(pParamNode); pParamNode->paramType = paramType; bTracksToAdd = true; @@ -2464,7 +2464,7 @@ void CTrackViewNodesCtrl::FillAutoCompletionListForFilter() for (unsigned int i = 0; i < animNodeCount; ++i) { - strings << animNodes.GetNode(i)->GetName(); + strings << QString::fromUtf8(animNodes.GetNode(i)->GetName().c_str()); } } else @@ -2580,10 +2580,10 @@ void CTrackViewNodesCtrl::Update() { const CTrackViewAnimNode* track = static_cast(node); if (track) - { - record->setText(0, track->GetName()); + { + record->setText(0, QString::fromUtf8(track->GetName().c_str())); } - } + } } } } @@ -2855,7 +2855,7 @@ void CTrackViewNodesCtrl::OnNodeRenamed(CTrackViewNode* pNode, [[maybe_unused]] if (!m_bIgnoreNotifications) { CRecord* pNodeRecord = GetNodeRecord(pNode); - pNodeRecord->setText(0, pNode->GetName()); + pNodeRecord->setText(0, QString::fromUtf8(pNode->GetName().c_str())); update(); } diff --git a/Code/Editor/TrackView/TrackViewNodes.h b/Code/Editor/TrackView/TrackViewNodes.h index d6ed95b88d..64f96fee78 100644 --- a/Code/Editor/TrackView/TrackViewNodes.h +++ b/Code/Editor/TrackView/TrackViewNodes.h @@ -66,7 +66,7 @@ public: CRecord(CTrackViewNode* pNode = nullptr); CTrackViewNode* GetNode() const { return m_pNode; } bool IsGroup() const { return m_pNode->GetChildCount() != 0; } - const QString GetName() const { return m_pNode->GetName(); } + const QString GetName() const { return QString::fromUtf8(m_pNode->GetName().c_str()); } // Workaround: CXTPReportRecord::IsVisible is // unreliable after the last visible element @@ -202,7 +202,6 @@ private: // Drag and drop CTrackViewAnimNodeBundle m_draggedNodes; - CTrackViewAnimNode* m_pDragTarget; std::unordered_map m_menuParamTypeMap; std::unordered_map m_nodeToRecordMap; diff --git a/Code/Editor/TrackView/TrackViewPythonFuncs.cpp b/Code/Editor/TrackView/TrackViewPythonFuncs.cpp index d50060269b..72da1e0b18 100644 --- a/Code/Editor/TrackView/TrackViewPythonFuncs.cpp +++ b/Code/Editor/TrackView/TrackViewPythonFuncs.cpp @@ -293,8 +293,8 @@ namespace CTrackViewTrack* pTrack = pNode->GetTrackForParameter(paramType); if (!pTrack || (paramFlags & IAnimNode::eSupportedParamFlags_MultipleTracks)) { - const char* name = pNode->GetParamName(paramType); - if (_stricmp(name, paramName) == 0) + AZStd::string name = pNode->GetParamName(paramType); + if (name == paramName) { CUndo undo("Create track"); if (!pNode->CreateTrack(paramType)) diff --git a/Code/Editor/TrackView/TrackViewPythonFuncs.h b/Code/Editor/TrackView/TrackViewPythonFuncs.h index 8be1bd140c..6442145ee3 100644 --- a/Code/Editor/TrackView/TrackViewPythonFuncs.h +++ b/Code/Editor/TrackView/TrackViewPythonFuncs.h @@ -35,7 +35,7 @@ namespace AzToolsFramework : public AZ::Component , public EditorLayerTrackViewRequestBus::Handler { - AZ_PUSH_DISABLE_DLL_EXPORT_MEMBER_WARNING + AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING AZ_POP_DISABLE_DLL_EXPORT_BASECLASS_WARNING public: AZ_COMPONENT(TrackViewComponent, "{3CF943CC-6F10-4B19-88FC-CFB697558FFD}") diff --git a/Code/Editor/TrackView/TrackViewSequence.cpp b/Code/Editor/TrackView/TrackViewSequence.cpp index f66e5276cd..519f7a44d0 100644 --- a/Code/Editor/TrackView/TrackViewSequence.cpp +++ b/Code/Editor/TrackView/TrackViewSequence.cpp @@ -135,9 +135,7 @@ CTrackViewKeyHandle CTrackViewSequence::FindSingleSelectedKey() ////////////////////////////////////////////////////////////////////////// void CTrackViewSequence::OnEntityComponentPropertyChanged(AZ::ComponentId changedComponentId) -{ - const AZ::EntityId entityId = *AzToolsFramework::PropertyEditorEntityChangeNotificationBus::GetCurrentBusId(); - +{ // find the component node for this changeComponentId if it exists for (int i = m_pAnimSequence->GetNodeCount(); --i >= 0;) { @@ -894,14 +892,14 @@ bool CTrackViewSequence::SetName(const char* name) return false; } - const char* oldName = GetName(); - if (0 != strcmp(name, oldName)) + AZStd::string oldName = GetName(); + if (name != oldName) { m_pAnimSequence->SetName(name); MarkAsModified(); AzToolsFramework::ScopedUndoBatch undoBatch("Rename Sequence"); - GetSequence()->OnNodeRenamed(this, oldName); + GetSequence()->OnNodeRenamed(this, oldName.c_str()); undoBatch.MarkEntityDirty(m_pAnimSequence->GetSequenceEntityId()); } diff --git a/Code/Editor/TrackView/TrackViewSequence.h b/Code/Editor/TrackView/TrackViewSequence.h index 66412360f2..69858adf8f 100644 --- a/Code/Editor/TrackView/TrackViewSequence.h +++ b/Code/Editor/TrackView/TrackViewSequence.h @@ -102,7 +102,7 @@ public: // ITrackViewNode virtual ETrackViewNodeType GetNodeType() const override { return eTVNT_Sequence; } - virtual const char* GetName() const override { return m_pAnimSequence->GetName(); } + virtual AZStd::string GetName() const override { return m_pAnimSequence->GetName(); } virtual bool SetName(const char* pName) override; virtual bool CanBeRenamed() const override { return true; } diff --git a/Code/Editor/TrackView/TrackViewSequenceManager.cpp b/Code/Editor/TrackView/TrackViewSequenceManager.cpp index 780c8f04ce..d7c1e3c709 100644 --- a/Code/Editor/TrackView/TrackViewSequenceManager.cpp +++ b/Code/Editor/TrackView/TrackViewSequenceManager.cpp @@ -75,7 +75,7 @@ CTrackViewSequence* CTrackViewSequenceManager::GetSequenceByName(QString name) c { CTrackViewSequence* sequence = (*iter).get(); - if (sequence->GetName() == name) + if (QString::fromUtf8(sequence->GetName().c_str()) == name) { return sequence; } @@ -371,8 +371,8 @@ void CTrackViewSequenceManager::SortSequences() std::stable_sort(m_sequences.begin(), m_sequences.end(), [](const std::unique_ptr& a, const std::unique_ptr& b) -> bool { - QString aName = a.get()->GetName(); - QString bName = b.get()->GetName(); + QString aName = QString::fromUtf8(a.get()->GetName().c_str()); + QString bName = QString::fromUtf8(b.get()->GetName().c_str()); return aName < bName; }); } diff --git a/Code/Editor/TrackView/TrackViewSplineCtrl.cpp b/Code/Editor/TrackView/TrackViewSplineCtrl.cpp index 4911297985..352f2f3699 100644 --- a/Code/Editor/TrackView/TrackViewSplineCtrl.cpp +++ b/Code/Editor/TrackView/TrackViewSplineCtrl.cpp @@ -611,7 +611,6 @@ void CTrackViewSplineCtrl::mouseMoveEvent(QMouseEvent* event) CTrackViewSequenceNotificationContext context(pSequence); - QPoint cMousePosPrev = m_cMousePos; m_cMousePos = point; if (m_editMode == NothingMode) diff --git a/Code/Editor/TrackView/TrackViewTrack.cpp b/Code/Editor/TrackView/TrackViewTrack.cpp index 64fd252534..27d6bbee54 100644 --- a/Code/Editor/TrackView/TrackViewTrack.cpp +++ b/Code/Editor/TrackView/TrackViewTrack.cpp @@ -472,7 +472,7 @@ void CTrackViewTrack::RestoreFromMemento(const CTrackViewTrackMemento& memento) } ////////////////////////////////////////////////////////////////////////// -const char* CTrackViewTrack::GetName() const +AZStd::string CTrackViewTrack::GetName() const { CTrackViewNode* pParentNode = GetParentNode(); @@ -810,7 +810,7 @@ void CTrackViewTrack::CopyKeysToClipboard(XmlNodeRef& xmlNode, const bool bOnlyS } XmlNodeRef childNode = xmlNode->newChild("Track"); - childNode->setAttr("name", GetName()); + childNode->setAttr("name", GetName().c_str()); GetParameterType().SaveToXml(childNode); childNode->setAttr("valueType", static_cast(GetValueType())); diff --git a/Code/Editor/TrackView/TrackViewTrack.h b/Code/Editor/TrackView/TrackViewTrack.h index bbe81f6377..1eef9c60e9 100644 --- a/Code/Editor/TrackView/TrackViewTrack.h +++ b/Code/Editor/TrackView/TrackViewTrack.h @@ -80,7 +80,7 @@ public: CTrackViewAnimNode* GetAnimNode() const; // Name getter - virtual const char* GetName() const; + AZStd::string GetName() const override; // CTrackViewNode virtual ETrackViewNodeType GetNodeType() const override { return eTVNT_Track; } diff --git a/Code/Editor/TrackView/TrackViewUndo.cpp b/Code/Editor/TrackView/TrackViewUndo.cpp index c9cdc62bc3..ee31dfe2bf 100644 --- a/Code/Editor/TrackView/TrackViewUndo.cpp +++ b/Code/Editor/TrackView/TrackViewUndo.cpp @@ -75,7 +75,7 @@ CTrackViewTrack* CUndoComponentEntityTrackObject::FindTrack(CTrackViewSequence* CTrackViewTrack* curTrack = allTracks.GetTrack(trackIndex); if (curTrack->GetAnimNode() && curTrack->GetAnimNode()->GetComponentId() == m_trackComponentId) { - if (0 == azstricmp(curTrack->GetName(), m_trackName.c_str())) + if (curTrack->GetName() == m_trackName) { CTrackViewAnimNode* parentAnimNode = static_cast(curTrack->GetAnimNode()->GetParentNode()); if (parentAnimNode && parentAnimNode->GetAzEntityId() == m_entityId) diff --git a/Code/Editor/TrackViewNewSequenceDialog.cpp b/Code/Editor/TrackViewNewSequenceDialog.cpp index 287f69df47..e922f345cc 100644 --- a/Code/Editor/TrackViewNewSequenceDialog.cpp +++ b/Code/Editor/TrackViewNewSequenceDialog.cpp @@ -81,7 +81,7 @@ void CTVNewSequenceDialog::OnOK() for (unsigned int k = 0; k < GetIEditor()->GetSequenceManager()->GetCount(); ++k) { CTrackViewSequence* pSequence = GetIEditor()->GetSequenceManager()->GetSequenceByIndex(k); - QString fullname = pSequence->GetName(); + QString fullname = QString::fromUtf8(pSequence->GetName().c_str()); if (fullname.compare(m_sequenceName, Qt::CaseInsensitive) == 0) { diff --git a/Code/Editor/Undo/Undo.cpp b/Code/Editor/Undo/Undo.cpp index b49c6ea567..910a670bee 100644 --- a/Code/Editor/Undo/Undo.cpp +++ b/Code/Editor/Undo/Undo.cpp @@ -49,7 +49,7 @@ public: } void Undo(bool bUndo) override { - for (size_t i = m_undoSteps.size() - 1; i >= 0; i--) + for (int i = static_cast(m_undoSteps.size()) - 1; i >= 0; i--) { m_undoSteps[i]->Undo(bUndo); } diff --git a/Code/Editor/Util/3DConnexionDriver.cpp b/Code/Editor/Util/3DConnexionDriver.cpp index c1c3b47c4b..9dc1600185 100644 --- a/Code/Editor/Util/3DConnexionDriver.cpp +++ b/Code/Editor/Util/3DConnexionDriver.cpp @@ -58,36 +58,26 @@ bool C3DConnexionDriver::InitDevice() //Doc says RIM_TYPEHID: Data comes from an HID that is not a keyboard or a mouse. if (m_pRawInputDeviceList[i].dwType == RIM_TYPEHID) { - UINT nchars = 300; - TCHAR deviceName[300]; - if (GetRawInputDeviceInfo(m_pRawInputDeviceList[i].hDevice, - RIDI_DEVICENAME, deviceName, &nchars) >= 0) - { - //_RPT3(_CRT_WARN, "Device[%d]: handle=0x%x name = %S\n", i, g_pRawInputDeviceList[i].hDevice, deviceName); - } - RID_DEVICE_INFO dinfo; UINT sizeofdinfo = sizeof(dinfo); dinfo.cbSize = sizeofdinfo; - if (GetRawInputDeviceInfo(m_pRawInputDeviceList[i].hDevice, - RIDI_DEVICEINFO, &dinfo, &sizeofdinfo) >= 0) + GetRawInputDeviceInfo(m_pRawInputDeviceList[i].hDevice, + RIDI_DEVICEINFO, &dinfo, &sizeofdinfo); + if (dinfo.dwType == RIM_TYPEHID) { - if (dinfo.dwType == RIM_TYPEHID) + RID_DEVICE_INFO_HID* phidInfo = &dinfo.hid; + // Add this one to the list of interesting devices? + // Actually only have to do this once to get input from all usage 1, usagePage 8 devices + // This just keeps out the other usages. + // You might want to put up a list for users to select amongst the different devices. + // In particular, to assign separate functionality to the different devices. + if (phidInfo->usUsagePage == 1 && phidInfo->usUsage == 8) { - RID_DEVICE_INFO_HID* phidInfo = &dinfo.hid; - // Add this one to the list of interesting devices? - // Actually only have to do this once to get input from all usage 1, usagePage 8 devices - // This just keeps out the other usages. - // You might want to put up a list for users to select amongst the different devices. - // In particular, to assign separate functionality to the different devices. - if (phidInfo->usUsagePage == 1 && phidInfo->usUsage == 8) - { - m_pRawInputDevices[m_nUsagePage1Usage8Devices].usUsagePage = phidInfo->usUsagePage; - m_pRawInputDevices[m_nUsagePage1Usage8Devices].usUsage = phidInfo->usUsage; - m_pRawInputDevices[m_nUsagePage1Usage8Devices].dwFlags = 0; - m_pRawInputDevices[m_nUsagePage1Usage8Devices].hwndTarget = nullptr; - m_nUsagePage1Usage8Devices++; - } + m_pRawInputDevices[m_nUsagePage1Usage8Devices].usUsagePage = phidInfo->usUsagePage; + m_pRawInputDevices[m_nUsagePage1Usage8Devices].usUsage = phidInfo->usUsage; + m_pRawInputDevices[m_nUsagePage1Usage8Devices].dwFlags = 0; + m_pRawInputDevices[m_nUsagePage1Usage8Devices].hwndTarget = nullptr; + m_nUsagePage1Usage8Devices++; } } } diff --git a/Code/Editor/Util/ColorUtils.cpp b/Code/Editor/Util/ColorUtils.cpp index 4e240bc51b..02e3c9b615 100644 --- a/Code/Editor/Util/ColorUtils.cpp +++ b/Code/Editor/Util/ColorUtils.cpp @@ -24,7 +24,7 @@ QColor ColorLinearToGamma(ColorF col) g = (float)(g <= 0.0031308 ? (12.92 * g) : (1.055 * pow((double)g, 1.0 / 2.4) - 0.055)); b = (float)(b <= 0.0031308 ? (12.92 * b) : (1.055 * pow((double)b, 1.0 / 2.4) - 0.055)); - return QColor(FtoI(r * 255.0f), FtoI(g * 255.0f), FtoI(b * 255.0f), FtoI(a * 255.0f)); + return QColor(int(r * 255.0f), int(g * 255.0f), int(b * 255.0f), int(a * 255.0f)); } ////////////////////////////////////////////////////////////////////////// diff --git a/Code/Editor/Util/ColumnGroupTreeView.h b/Code/Editor/Util/ColumnGroupTreeView.h index c9226df8d0..3c7dea91c3 100644 --- a/Code/Editor/Util/ColumnGroupTreeView.h +++ b/Code/Editor/Util/ColumnGroupTreeView.h @@ -71,7 +71,6 @@ private: ColumnGroupHeaderView* m_header; ColumnGroupProxyModel* m_groupModel; QSet m_openNodes; - bool m_showGroups; }; #endif // COLUMNGROUPTREEVIEW_H diff --git a/Code/Editor/Util/DynamicArray2D.cpp b/Code/Editor/Util/DynamicArray2D.cpp index 6ac3edbb6b..3f09c557de 100644 --- a/Code/Editor/Util/DynamicArray2D.cpp +++ b/Code/Editor/Util/DynamicArray2D.cpp @@ -62,11 +62,6 @@ CDynamicArray2D::~CDynamicArray2D() } -void CDynamicArray2D::GetMemoryUsage(ICrySizer* pSizer) -{ - pSizer->Add((char*)this, m_Dimension1 * m_Dimension2 * sizeof(float) + sizeof(*this)); -} - void CDynamicArray2D::ScaleImage(CDynamicArray2D* pDestination) { //////////////////////////////////////////////////////////////////////// diff --git a/Code/Editor/Util/DynamicArray2D.h b/Code/Editor/Util/DynamicArray2D.h index 80e40bfd22..20d26d2d87 100644 --- a/Code/Editor/Util/DynamicArray2D.h +++ b/Code/Editor/Util/DynamicArray2D.h @@ -24,8 +24,6 @@ public: virtual ~CDynamicArray2D(); // void ScaleImage(CDynamicArray2D* pDestination); - // - void GetMemoryUsage(ICrySizer* pSizer); float** m_Array; // diff --git a/Code/Editor/Util/EditorUtils.cpp b/Code/Editor/Util/EditorUtils.cpp index de06a95a62..adae34773a 100644 --- a/Code/Editor/Util/EditorUtils.cpp +++ b/Code/Editor/Util/EditorUtils.cpp @@ -205,7 +205,7 @@ QColor ColorLinearToGamma(ColorF col) g = (float)(g <= 0.0031308 ? (12.92 * g) : (1.055 * pow((double)g, 1.0 / 2.4) - 0.055)); b = (float)(b <= 0.0031308 ? (12.92 * b) : (1.055 * pow((double)b, 1.0 / 2.4) - 0.055)); - return QColor(FtoI(r * 255.0f), FtoI(g * 255.0f), FtoI(b * 255.0f), FtoI(a * 255.0f)); + return QColor(int(r * 255.0f), int(g * 255.0f), int(b * 255.0f), int(a * 255.0f)); } ////////////////////////////////////////////////////////////////////////// diff --git a/Code/Editor/Util/FileUtil.cpp b/Code/Editor/Util/FileUtil.cpp index 435ec67a99..610a9c6e16 100644 --- a/Code/Editor/Util/FileUtil.cpp +++ b/Code/Editor/Util/FileUtil.cpp @@ -1221,15 +1221,14 @@ bool CFileUtil::CreatePath(const QString& strPath) if (!strDriveLetter.isEmpty()) { strCurrentDirectoryPath = strDriveLetter; - strCurrentDirectoryPath += "\\"; + strCurrentDirectoryPath += AZ_CORRECT_FILESYSTEM_SEPARATOR_STRING; } - nTotalPathQueueElements = cstrDirectoryQueue.size(); for (nCurrentPathQueue = 0; nCurrentPathQueue < nTotalPathQueueElements; ++nCurrentPathQueue) { strCurrentDirectoryPath += cstrDirectoryQueue[static_cast(nCurrentPathQueue)]; - strCurrentDirectoryPath += "\\"; + strCurrentDirectoryPath += AZ_CORRECT_FILESYSTEM_SEPARATOR_STRING; // The value which will go out of this loop is the result of the attempt to create the // last directory, only. @@ -2158,7 +2157,6 @@ uint32 CFileUtil::GetAttributes(const char* filename, bool bUseSourceControl /*= return SCC_FILE_ATTRIBUTE_READONLY | SCC_FILE_ATTRIBUTE_INPAK; } - const char* adjustedFile = file.GetAdjustedFilename(); if (!AZ::IO::SystemFile::Exists(adjustedFile)) { diff --git a/Code/Editor/Util/GdiUtil.cpp b/Code/Editor/Util/GdiUtil.cpp index 1048b5f4dd..72e5e28605 100644 --- a/Code/Editor/Util/GdiUtil.cpp +++ b/Code/Editor/Util/GdiUtil.cpp @@ -28,7 +28,7 @@ QColor ScaleColor(const QColor& c, float aScale) const float g = static_cast(aColor.green()) * aScale; const float b = static_cast(aColor.blue()) * aScale; - return QColor(CLAMP(static_cast(r), 0, 255), CLAMP(static_cast(g), 0, 255), CLAMP(static_cast(b), 0, 255)); + return QColor(AZStd::clamp(static_cast(r), 0, 255), AZStd::clamp(static_cast(g), 0, 255), AZStd::clamp(static_cast(b), 0, 255)); } CAlphaBitmap::CAlphaBitmap() diff --git a/Code/Editor/Util/GeometryUtil.cpp b/Code/Editor/Util/GeometryUtil.cpp index d4442e8d03..6025f0c771 100644 --- a/Code/Editor/Util/GeometryUtil.cpp +++ b/Code/Editor/Util/GeometryUtil.cpp @@ -41,7 +41,6 @@ struct SPointSorter //=================================================================== void ConvexHull2DGraham(std::vector& ptsOut, const std::vector& ptsIn) { - FUNCTION_PROFILER(gEnv->pSystem, PROFILE_AI); const unsigned nPtsIn = ptsIn.size(); if (nPtsIn < 3) { @@ -66,7 +65,6 @@ void ConvexHull2DGraham(std::vector& ptsOut, const std::vector& ptsI std::swap(ptsSorted[0], ptsSorted[iBotRight]); { - FRAME_PROFILER("SORT Graham", gEnv->pSystem, PROFILE_AI) std::sort(ptsSorted.begin() + 1, ptsSorted.end(), SPointSorter(ptsSorted[0])); } ptsSorted.erase(std::unique(ptsSorted.begin(), ptsSorted.end(), ptEqual), ptsSorted.end()); @@ -196,7 +194,6 @@ inline bool PointSorterAndrew(const Vec3& lhs, const Vec3& rhs) //=================================================================== SANDBOX_API void ConvexHull2DAndrew(std::vector& ptsOut, const std::vector& ptsIn) { - FUNCTION_PROFILER(gEnv->pSystem, PROFILE_AI); const int n = (int)ptsIn.size(); if (n < 3) { @@ -206,7 +203,6 @@ SANDBOX_API void ConvexHull2DAndrew(std::vector& ptsOut, const std::vector std::vector P = ptsIn; { - FRAME_PROFILER("SORT Andrew", gEnv->pSystem, PROFILE_AI) std::sort(P.begin(), P.end(), PointSorterAndrew); } diff --git a/Code/Editor/Util/GuidUtil.h b/Code/Editor/Util/GuidUtil.h index 9952d6b4ed..de2bad8759 100644 --- a/Code/Editor/Util/GuidUtil.h +++ b/Code/Editor/Util/GuidUtil.h @@ -48,7 +48,7 @@ inline bool GuidUtil::IsEmpty(REFGUID guid) inline const char* GuidUtil::ToString(REFGUID guid) { static char guidString[64]; - sprintf_s(guidString, "{%.8X-%.4X-%.4X-%.2X%.2X-%.2X%.2X%.2X%.2X%.2X%.2X}", guid.Data1, guid.Data2, guid.Data3, guid.Data4[0], guid.Data4[1], + sprintf_s(guidString, "{%.8" GUID_FORMAT_DATA1 "-%.4X-%.4X-%.2X%.2X-%.2X%.2X%.2X%.2X%.2X%.2X}", guid.Data1, guid.Data2, guid.Data3, guid.Data4[0], guid.Data4[1], guid.Data4[2], guid.Data4[3], guid.Data4[4], guid.Data4[5], guid.Data4[6], guid.Data4[7]); return guidString; } @@ -62,7 +62,7 @@ inline GUID GuidUtil::FromString(const char* guidString) guid.Data1 = 0; guid.Data2 = 0; guid.Data3 = 0; - azsscanf(guidString, "{%8" SCNx32 "-%4hX-%4hX-%2X%2X-%2X%2X%2X%2X%2X%2X}", + azsscanf(guidString, "{%8" GUID_FORMAT_DATA1 "-%4hX-%4hX-%2X%2X-%2X%2X%2X%2X%2X%2X}", &guid.Data1, &guid.Data2, &guid.Data3, &d[0], &d[1], &d[2], &d[3], &d[4], &d[5], &d[6], &d[7]); guid.Data4[0] = static_cast(d[0]); guid.Data4[1] = static_cast(d[1]); diff --git a/Code/Editor/Util/Image.h b/Code/Editor/Util/Image.h index 8886598c43..a6d36673cb 100644 --- a/Code/Editor/Util/Image.h +++ b/Code/Editor/Util/Image.h @@ -178,7 +178,6 @@ public: ////////////////////////////////////////////////////////////////////////// void GetSubImage(int x1, int y1, int width, int height, TImage& img) const { - int size = width * height; img.Allocate(width, height); for (int y = 0; y < height; y++) { diff --git a/Code/Editor/Util/ImageASC.cpp b/Code/Editor/Util/ImageASC.cpp index c166917a68..a72ea8b9fd 100644 --- a/Code/Editor/Util/ImageASC.cpp +++ b/Code/Editor/Util/ImageASC.cpp @@ -99,7 +99,7 @@ bool CImageASC::Load(const QString& fileName, CFloatImage& image) // Break all of the values in the file apart into tokens. - char* nextToken = nullptr; + [[maybe_unused]] char* nextToken = nullptr; token = azstrtok(str, 0, seps, &nextToken); // ncols = grid width diff --git a/Code/Editor/Util/ImageGif.cpp b/Code/Editor/Util/ImageGif.cpp index a9ab4efdaf..67c5911344 100644 --- a/Code/Editor/Util/ImageGif.cpp +++ b/Code/Editor/Util/ImageGif.cpp @@ -76,8 +76,6 @@ static int numused; const char* id87 = "GIF87a"; const char* id89 = "GIF89a"; -static int log2 (int); - /* Fetch the next code from the raster data stream. The codes can be * any length from 3 to 12 bits, packed into 8-bit bytes, so we have to * maintain our location in the Raster array as a BIT Offset. We compute diff --git a/Code/Editor/Util/ImageHistogram.cpp b/Code/Editor/Util/ImageHistogram.cpp index acea2dc340..4cc9816065 100644 --- a/Code/Editor/Util/ImageHistogram.cpp +++ b/Code/Editor/Util/ImageHistogram.cpp @@ -105,7 +105,7 @@ void CImageHistogram::ComputeHistogram(BYTE* pImageData, UINT aWidth, UINT aHeig ++m_count[3][a]; lumIndex = (r + b + g) / 3; - lumIndex = CLAMP(lumIndex, 0, kNumColorLevels - 1); + lumIndex = AZStd::clamp(lumIndex, 0, kNumColorLevels - 1); ++m_lumCount[lumIndex]; if (m_maxCount[0] < m_count[0][r]) diff --git a/Code/Editor/Util/ImageUtil.cpp b/Code/Editor/Util/ImageUtil.cpp index 00e33162cf..c8432a3d1a 100644 --- a/Code/Editor/Util/ImageUtil.cpp +++ b/Code/Editor/Util/ImageUtil.cpp @@ -145,7 +145,7 @@ bool CImageUtil::LoadPGM(const QString& fileName, CImageEx& image) char* str = new char[fileSize]; fread(str, fileSize, 1, file); - char* nextToken = nullptr; + [[maybe_unused]] char* nextToken = nullptr; token = azstrtok(str, 0, seps, &nextToken); while (token != nullptr && token[0] == '#') diff --git a/Code/Editor/Util/KDTree.cpp b/Code/Editor/Util/KDTree.cpp index 182b9b8eb1..af06a58c9f 100644 --- a/Code/Editor/Util/KDTree.cpp +++ b/Code/Editor/Util/KDTree.cpp @@ -467,7 +467,7 @@ bool CKDTree::FindNearestVertexRecursively(KDTreeNode* pNode, const Vec3& raySrc uint32 nVertexIndex = pNode->GetVertexIndex(i); uint32 nObjIndex = pNode->GetObjIndex(i); - assert(nObjIndex < m_StatObjectList.size() && nObjIndex >= 0); + assert(nObjIndex < m_StatObjectList.size()); const SStatObj* pStatObjInfo = &(m_StatObjectList[nObjIndex]); diff --git a/Code/Editor/Util/Math.h b/Code/Editor/Util/Math.h index 34fb77e434..10402876e6 100644 --- a/Code/Editor/Util/Math.h +++ b/Code/Editor/Util/Math.h @@ -14,6 +14,7 @@ #pragma once #include +#include //! Half PI #define PI_HALF (3.1415926535897932384626433832795f / 2.0f) diff --git a/Code/Editor/Util/StringHelpers.cpp b/Code/Editor/Util/StringHelpers.cpp index d0999d6ae2..9ef3e86e7a 100644 --- a/Code/Editor/Util/StringHelpers.cpp +++ b/Code/Editor/Util/StringHelpers.cpp @@ -9,6 +9,7 @@ #include "StringHelpers.h" #include "Util.h" +#include int StringHelpers::CompareIgnoreCase(const AZStd::string& str0, const AZStd::string& str1) { diff --git a/Code/Editor/ViewPane.cpp b/Code/Editor/ViewPane.cpp index a932f05c79..421db8394e 100644 --- a/Code/Editor/ViewPane.cpp +++ b/Code/Editor/ViewPane.cpp @@ -769,7 +769,9 @@ namespace void PySetViewPaneLayout(unsigned int layoutId) { + AZ_PUSH_DISABLE_WARNING(4296, "-Wunknown-warning-option") if ((layoutId >= ET_Layout0) && (layoutId <= ET_Layout8)) + AZ_POP_DISABLE_WARNING { CLayoutWnd* layout = GetIEditor()->GetViewManager()->GetLayout(); if (layout) diff --git a/Code/Editor/ViewPane.h b/Code/Editor/ViewPane.h index 5771a687c0..8cc9170e5f 100644 --- a/Code/Editor/ViewPane.h +++ b/Code/Editor/ViewPane.h @@ -118,7 +118,6 @@ private: int m_id; int m_nBorder; - int m_titleHeight; QWidget* m_viewport; QScrollArea* m_viewportScrollArea = nullptr; diff --git a/Code/Editor/Viewport.cpp b/Code/Editor/Viewport.cpp index 3c34f464b8..92e193bddf 100644 --- a/Code/Editor/Viewport.cpp +++ b/Code/Editor/Viewport.cpp @@ -400,7 +400,6 @@ void QtViewport::UpdateContent(int flags) ////////////////////////////////////////////////////////////////////////// void QtViewport::Update() { - FUNCTION_PROFILER(GetIEditor()->GetSystem(), PROFILE_EDITOR); m_viewportUi.Update(); m_bAdvancedSelectMode = false; @@ -1436,9 +1435,6 @@ bool QtViewport::MouseCallback(EMouseEvent event, const QPoint& point, Qt::Keybo ////////////////////////////////////////////////////////////////////////// void QtViewport::ProcessRenderLisneters(DisplayContext& rstDisplayContext) { - FUNCTION_PROFILER(GetIEditor()->GetSystem(), PROFILE_EDITOR); - - size_t nCount(0); size_t nTotal(0); @@ -1495,7 +1491,7 @@ void QtViewport::OnRawInput([[maybe_unused]] UINT wParam, HRAWINPUT lParam) float as = 0.001f * gSettings.cameraMoveSpeed; Ang3 ypr = CCamera::CreateAnglesYPR(Matrix33(viewTM)); ypr.x += -all6DOFs[5] * as * fScaleYPR; - ypr.y = CLAMP(ypr.y + all6DOFs[3] * as * fScaleYPR, -1.5f, 1.5f); // to keep rotation in reasonable range + ypr.y = AZStd::clamp(ypr.y + all6DOFs[3] * as * fScaleYPR, -1.5f, 1.5f); // to keep rotation in reasonable range ypr.z = 0; // to have camera always upward viewTM = Matrix34(CCamera::CreateOrientationYPR(ypr), viewTM.GetTranslation()); diff --git a/Code/Editor/ViewportManipulatorController.cpp b/Code/Editor/ViewportManipulatorController.cpp index a67d733cf9..1766945541 100644 --- a/Code/Editor/ViewportManipulatorController.cpp +++ b/Code/Editor/ViewportManipulatorController.cpp @@ -12,6 +12,7 @@ #include #include #include +#include #include #include @@ -112,9 +113,9 @@ namespace SandboxEditor AzFramework::WindowRequestBus::EventResult( windowSize, event.m_windowHandle, &AzFramework::WindowRequestBus::Events::GetClientAreaSize); - auto screenPoint = AzFramework::ScreenPoint( - static_cast(position->m_normalizedPosition.GetX() * windowSize.m_width), - static_cast(position->m_normalizedPosition.GetY() * windowSize.m_height)); + const auto screenPoint = AzFramework::ScreenPoint( + aznumeric_cast(position->m_normalizedPosition.GetX() * windowSize.m_width), + aznumeric_cast(position->m_normalizedPosition.GetY() * windowSize.m_height)); m_mouseInteraction.m_mousePick.m_screenCoordinates = screenPoint; AZStd::optional ray; @@ -207,20 +208,27 @@ namespace SandboxEditor ? &InteractionBus::Events::InternalHandleMouseManipulatorInteraction : &InteractionBus::Events::InternalHandleMouseViewportInteraction; - const auto mouseInteractionEvent = [mouseInteraction, event = eventType.value(), wheelDelta] { + auto currentCursorState = AzFramework::SystemCursorState::Unknown; + AzFramework::InputSystemCursorRequestBus::EventResult( + currentCursorState, event.m_inputChannel.GetInputDevice().GetInputDeviceId(), + &AzFramework::InputSystemCursorRequestBus::Events::GetSystemCursorState); + + const auto mouseInteractionEvent = [mouseInteraction, event = eventType.value(), wheelDelta, + cursorCaptured = currentCursorState == AzFramework::SystemCursorState::ConstrainedAndHidden] + { switch (event) { case MouseEvent::Up: case MouseEvent::Down: case MouseEvent::Move: case MouseEvent::DoubleClick: - return MouseInteractionEvent(AZStd::move(mouseInteraction), event); + return MouseInteractionEvent(AZStd::move(mouseInteraction), event, cursorCaptured); case MouseEvent::Wheel: return MouseInteractionEvent(AZStd::move(mouseInteraction), wheelDelta); } AZ_Assert(false, "Unhandled MouseEvent"); - return MouseInteractionEvent(MouseInteraction{}, MouseEvent::Up); + return MouseInteractionEvent(MouseInteraction{}, MouseEvent::Up, false); }(); InteractionBus::EventResult( diff --git a/Code/Editor/ViewportTitleDlg.cpp b/Code/Editor/ViewportTitleDlg.cpp index a6dee5382e..1f04f71712 100644 --- a/Code/Editor/ViewportTitleDlg.cpp +++ b/Code/Editor/ViewportTitleDlg.cpp @@ -19,9 +19,6 @@ #include -// CryCommon -#include - // Editor #include "Settings.h" #include "ViewPane.h" @@ -800,8 +797,8 @@ void CViewportTitleDlg::OnSystemEvent(ESystemEvent event, UINT_PTR wparam, UINT_ const int eventHeight = static_cast(lparam); const QWidget* viewport = m_pViewPane->GetViewport(); - // This should eventually be converted to an EBus to make it easy to connect to the correct viewport - // sending the event. But for now, just detect that we've gotten width/height values that match our + // This should eventually be converted to an EBus to make it easy to connect to the correct viewport + // sending the event. But for now, just detect that we've gotten width/height values that match our // associated viewport if (viewport && (eventWidth == viewport->width()) && (eventHeight == viewport->height())) { diff --git a/Code/Editor/editor_lib_files.cmake b/Code/Editor/editor_lib_files.cmake index 6c5096a8f5..24634b245d 100644 --- a/Code/Editor/editor_lib_files.cmake +++ b/Code/Editor/editor_lib_files.cmake @@ -290,7 +290,6 @@ set(FILES Include/IPreferencesPage.h Include/IRenderListener.h Include/ISourceControl.h - Include/ISubObjectSelectionReferenceFrameCalculator.h Include/ITextureDatabaseUpdater.h Include/ITransformManipulator.h Include/IViewPane.h @@ -460,8 +459,6 @@ set(FILES Dialogs/PythonScriptsDialog.ui Dialogs/Generic/UserOptions.cpp Dialogs/Generic/UserOptions.h - EditMode/SubObjectSelectionReferenceFrameCalculator.cpp - EditMode/SubObjectSelectionReferenceFrameCalculator.h Export/ExportManager.cpp Export/ExportManager.h Export/OBJExporter.cpp @@ -790,6 +787,9 @@ set(FILES EditorViewportSettings.h EditorViewportCamera.cpp EditorViewportCamera.h + EditorModularViewportCameraComposer.cpp + EditorModularViewportCameraComposer.h + EditorModularViewportCameraComposerBus.h ViewportManipulatorController.cpp ViewportManipulatorController.h TopRendererWnd.cpp diff --git a/Code/Editor/res/error_report_helper.svg b/Code/Editor/res/error_report_helper.svg new file mode 100644 index 0000000000..d61970d163 --- /dev/null +++ b/Code/Editor/res/error_report_helper.svg @@ -0,0 +1,14 @@ + + + Icons / Notification / Helpers + + + + + + + + + + + \ No newline at end of file diff --git a/Code/Editor/res/o3de_application_reverse.svg b/Code/Editor/res/o3de_application_reverse.svg new file mode 100644 index 0000000000..841affe8ba --- /dev/null +++ b/Code/Editor/res/o3de_application_reverse.svg @@ -0,0 +1,9 @@ + + + o3de icon + + + + + + \ No newline at end of file diff --git a/Code/Framework/AtomCore/AtomCore/atomcore_files.cmake b/Code/Framework/AtomCore/AtomCore/atomcore_files.cmake index bcfbfb2764..c90263468f 100644 --- a/Code/Framework/AtomCore/AtomCore/atomcore_files.cmake +++ b/Code/Framework/AtomCore/AtomCore/atomcore_files.cmake @@ -13,8 +13,6 @@ set(FILES Instance/InstanceData.h Instance/InstanceData.cpp Instance/InstanceDatabase.h - Serialization/Json/JsonUtils.h - Serialization/Json/JsonUtils.cpp std/containers/array_view.h std/containers/fixed_vector_set.h std/containers/lru_cache.h diff --git a/Code/Framework/AtomCore/Tests/InstanceDatabase.cpp b/Code/Framework/AtomCore/Tests/InstanceDatabase.cpp index 7b47a9b99e..5d1edc5a09 100644 --- a/Code/Framework/AtomCore/Tests/InstanceDatabase.cpp +++ b/Code/Framework/AtomCore/Tests/InstanceDatabase.cpp @@ -324,7 +324,7 @@ namespace UnitTest // Tests whether the deleter actually calls delete properly without // a parent database. - instance->m_onDeleteCallback = [this, &m_deleted]() + instance->m_onDeleteCallback = [&m_deleted]() { m_deleted = true; }; diff --git a/Code/Framework/AtomCore/Tests/atomcore_tests_files.cmake b/Code/Framework/AtomCore/Tests/atomcore_tests_files.cmake index f2c0c5c051..0f5fcb441d 100644 --- a/Code/Framework/AtomCore/Tests/atomcore_tests_files.cmake +++ b/Code/Framework/AtomCore/Tests/atomcore_tests_files.cmake @@ -10,7 +10,6 @@ set(FILES ArrayView.cpp ConcurrencyCheckerTests.cpp InstanceDatabase.cpp - JsonSerializationUtilsTests.cpp lru_cache.cpp Main.cpp vector_set.cpp diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetCommon.cpp b/Code/Framework/AzCore/AzCore/Asset/AssetCommon.cpp index 0c197e5354..af3aba49a3 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetCommon.cpp +++ b/Code/Framework/AzCore/AzCore/Asset/AssetCommon.cpp @@ -456,7 +456,7 @@ namespace AZ { if (loadBehavior & (1 << thisFlag)) { - returnFlags[thisFlag] = 1; + returnFlags[thisFlag] = true; } } return returnFlags; diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetContainer.cpp b/Code/Framework/AzCore/AzCore/Asset/AssetContainer.cpp index 83cc1da69a..ce15c7bc4e 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetContainer.cpp +++ b/Code/Framework/AzCore/AzCore/Asset/AssetContainer.cpp @@ -153,6 +153,7 @@ namespace AZ // behavior, we would need to rework the way filters work as well as the code in AssetSerializer.cpp to pass down // the loadParams.m_assetLoadFilterCB that was passed into the AddDependentAssets() methods to use as the dependent // asset filter instead of this lambda function. + AZ_UNUSED(handledAssetDependencyList); // Prevent unused warning in release builds AZ_Assert(AZStd::find(handledAssetDependencyList.begin(), handledAssetDependencyList.end(), filterInfo.m_assetId) != handledAssetDependencyList.end(), "Dependent Asset ID (%s) is expected to load, but the Asset Catalog has no dependency recorded. " diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetManager.cpp b/Code/Framework/AzCore/AzCore/Asset/AssetManager.cpp index f31859c14d..6ba69cffd5 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetManager.cpp +++ b/Code/Framework/AzCore/AzCore/Asset/AssetManager.cpp @@ -71,8 +71,8 @@ namespace AZ ////////////////////////////////////////////////////////////////////////// // EBusTraits overrides static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::ById; - typedef AssetId BusIdType; - typedef AZStd::recursive_mutex MutexType; + using BusIdType = AssetId; + using MutexType = AZStd::recursive_mutex; template struct AssetJobConnectionPolicy @@ -107,7 +107,7 @@ namespace AZ virtual void OnLoadCanceled(AssetId assetId) = 0; }; - typedef EBus BlockingAssetLoadBus; + using BlockingAssetLoadBus = EBus; /* * This class processes async AssetDatabase load jobs @@ -1478,7 +1478,7 @@ namespace AZ // Resolve the asset handler and account for the new asset instance. { - AssetHandlerMap::iterator handlerIt = m_handlers.find(newData->GetType()); + [[maybe_unused]] AssetHandlerMap::iterator handlerIt = m_handlers.find(newData->GetType()); AZ_Assert( handlerIt != m_handlers.end(), "No handler was registered for this asset [type:%s id:%s]!", newData->GetType().ToString().c_str(), newData->GetId().ToString().c_str()); @@ -1869,7 +1869,7 @@ namespace AZ { AZStd::scoped_lock requestLock(m_activeBlockingRequestMutex); - auto inserted = m_activeBlockingRequests.insert(AZStd::make_pair(assetId, blockingRequest)); + [[maybe_unused]] auto inserted = m_activeBlockingRequests.insert(AZStd::make_pair(assetId, blockingRequest)); AZ_Assert(inserted.second, "Failed to track blocking request for asset %s", assetId.ToString().c_str()); } diff --git a/Code/Framework/AzCore/AzCore/AzCoreModule.cpp b/Code/Framework/AzCore/AzCore/AzCoreModule.cpp index d2b1b141a9..c60ea1bd72 100644 --- a/Code/Framework/AzCore/AzCore/AzCoreModule.cpp +++ b/Code/Framework/AzCore/AzCore/AzCoreModule.cpp @@ -10,7 +10,6 @@ // Component includes #include -#include #include #include #include @@ -36,7 +35,6 @@ namespace AZ JsonSystemComponent::CreateDescriptor(), AssetManagerComponent::CreateDescriptor(), UserSettingsComponent::CreateDescriptor(), - Debug::FrameProfilerComponent::CreateDescriptor(), SliceComponent::CreateDescriptor(), SliceSystemComponent::CreateDescriptor(), SliceMetadataInfoComponent::CreateDescriptor(), diff --git a/Code/Framework/AzCore/AzCore/Component/ComponentApplication.cpp b/Code/Framework/AzCore/AzCore/Component/ComponentApplication.cpp index 5114ea19ec..c76156c006 100644 --- a/Code/Framework/AzCore/AzCore/Component/ComponentApplication.cpp +++ b/Code/Framework/AzCore/AzCore/Component/ComponentApplication.cpp @@ -51,7 +51,6 @@ #include #include #include -#include #include #include #include @@ -546,6 +545,10 @@ namespace AZ m_entityActivatedEvent.DisconnectAllHandlers(); m_entityDeactivatedEvent.DisconnectAllHandlers(); +#if !defined(_RELEASE) + m_budgetTracker.Reset(); +#endif + DestroyAllocator(); } @@ -594,6 +597,10 @@ namespace AZ CreateOSAllocator(); CreateSystemAllocator(); +#if !defined(_RELEASE) + m_budgetTracker.Init(); +#endif + // This can be moved to the ComponentApplication constructor if need be // This is reading the *.setreg files using SystemFile and merging the settings // to the settings registry. @@ -625,8 +632,6 @@ namespace AZ m_eventLogger->Start(outputPath.Native(), baseFileName); } - CreateDrillers(); - Sfmt::Create(); CreateReflectionManager(); @@ -639,7 +644,7 @@ namespace AZ NameDictionary::Create(); // Call this and child class's reflects - ReflectionEnvironment::GetReflectionManager()->Reflect(azrtti_typeid(this), AZStd::bind(&ComponentApplication::Reflect, this, AZStd::placeholders::_1)); + ReflectionEnvironment::GetReflectionManager()->Reflect(azrtti_typeid(this), [this](ReflectContext* context) {Reflect(context); }); RegisterCoreComponents(); TickBus::AllowFunctionQueuing(true); @@ -746,12 +751,6 @@ namespace AZ ComponentApplicationBus::Handler::BusDisconnect(); TickRequestBus::Handler::BusDisconnect(); - if (m_drillerManager) - { - Debug::DrillerManager::Destroy(m_drillerManager); - m_drillerManager = nullptr; - } - m_eventLogger->Stop(); // Clear the descriptor to deallocate all strings (owned by ModuleDescriptor) @@ -899,33 +898,6 @@ namespace AZ allocatorManager.FinalizeConfiguration(); } - //========================================================================= - // CreateDrillers - // [2/20/2013] - //========================================================================= - void ComponentApplication::CreateDrillers() - { - // Create driller manager and register drillers if requested - if (m_descriptor.m_enableDrilling) - { - m_drillerManager = Debug::DrillerManager::Create(); - // Memory driller is responsible for tracking allocations. - // Tracking type and overhead is determined by app configuration. - - // Only one MemoryDriller is supported at a time - // Only create the memory driller if there is no handlers connected to the MemoryDrillerBus - if (!Debug::MemoryDrillerBus::HasHandlers()) - { - m_drillerManager->Register(aznew Debug::MemoryDriller); - } - // Profiler driller will consume resources only when started. - m_drillerManager->Register(aznew Debug::ProfilerDriller); - // Trace messages driller will consume resources only when started. - m_drillerManager->Register(aznew Debug::TraceMessagesDriller); - m_drillerManager->Register(aznew Debug::EventTraceDriller); - } - } - void ComponentApplication::MergeSettingsToRegistry(SettingsRegistryInterface& registry) { SettingsRegistryInterface::Specializations specializations; @@ -998,7 +970,12 @@ namespace AZ { if (ReflectionEnvironment::GetReflectionManager()) { - ReflectionEnvironment::GetReflectionManager()->Reflect(descriptor->GetUuid(), AZStd::bind(&ComponentDescriptor::Reflect, descriptor, AZStd::placeholders::_1)); + ReflectionEnvironment::GetReflectionManager()->Reflect( + descriptor->GetUuid(), + [descriptor](ReflectContext* context) + { + descriptor->Reflect(context); + }); } } @@ -1294,7 +1271,7 @@ namespace AZ void Visit(AZStd::string_view path, AZStd::string_view, AZ::SettingsRegistryInterface::Type, AZStd::string_view value) override { // Remove last path segment and check if the key corresponds to the Modules array - AZStd::optional moduleIndex = AZ::StringFunc::TokenizeLast(path, "/"); + AZ::StringFunc::TokenizeLast(path, "/"); if (path.ends_with("/Modules")) { // Remove the "Modules" path segment to be at the GemName key @@ -1416,10 +1393,6 @@ namespace AZ EBUS_EVENT(TickBus, OnTick, m_deltaTime, ScriptTimePoint(now)); } } - if (m_drillerManager) - { - m_drillerManager->FrameUpdate(); - } } //========================================================================= diff --git a/Code/Framework/AzCore/AzCore/Component/ComponentApplication.h b/Code/Framework/AzCore/AzCore/Component/ComponentApplication.h index d2da86c368..3768a75d83 100644 --- a/Code/Framework/AzCore/AzCore/Component/ComponentApplication.h +++ b/Code/Framework/AzCore/AzCore/Component/ComponentApplication.h @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include @@ -225,11 +226,6 @@ namespace AZ /// Returns the path to the folder the executable is in. const char* GetExecutableFolder() const override { return m_exeDirectory.c_str(); } - - /// Returns pointer to the driller manager if it's enabled, otherwise NULL. - Debug::DrillerManager* GetDrillerManager() override { return m_drillerManager; } - ////////////////////////////////////////////////////////////////////////// - ////////////////////////////////////////////////////////////////////////// /// TickRequestBus float GetTickDeltaTime() override; @@ -324,9 +320,6 @@ namespace AZ /// Create the system allocator using the data in the m_descriptor void CreateSystemAllocator(); - /// Create the drillers - void CreateDrillers(); - virtual void MergeSettingsToRegistry(SettingsRegistryInterface& registry); //! Sets the specializations that will be used when loading the Settings Registry. Extend this in derived @@ -402,6 +395,10 @@ namespace AZ // from the m_console member when it goes out of scope AZ::SettingsRegistryConsoleUtils::ConsoleFunctorHandle m_settingsRegistryConsoleFunctors; +#if !defined(_RELEASE) + Debug::BudgetTracker m_budgetTracker; +#endif + // this is used when no argV/ArgC is supplied. // in order to have the same memory semantics (writable, non-const) // we create a buffer that can be written to (up to AZ_MAX_PATH_LEN) and then @@ -409,8 +406,6 @@ namespace AZ char m_commandLineBuffer[AZ_MAX_PATH_LEN]; char* m_commandLineBufferAddress{ m_commandLineBuffer }; - Debug::DrillerManager* m_drillerManager{ nullptr }; - StartupParameters m_startupParameters; char** m_argV{ nullptr }; diff --git a/Code/Framework/AzCore/AzCore/Component/ComponentApplicationBus.h b/Code/Framework/AzCore/AzCore/Component/ComponentApplicationBus.h index 1e4a9082f7..0c0977384a 100644 --- a/Code/Framework/AzCore/AzCore/Component/ComponentApplicationBus.h +++ b/Code/Framework/AzCore/AzCore/Component/ComponentApplicationBus.h @@ -187,11 +187,6 @@ namespace AZ //! @return a pointer to the name of the path that contains the application's executable. virtual const char* GetExecutableFolder() const = 0; - //! Returns a pointer to the driller manager, if driller is enabled. - //! The driller manager manages all active driller sessions and driller factories. - //! @return A pointer to the driller manager. If driller is not enabled, this function returns null. - virtual Debug::DrillerManager* GetDrillerManager() = 0; - //! ResolveModulePath is called whenever LoadDynamicModule wants to resolve a module in order to actually load it. //! You can override this if you need to load modules from a different path or hijack module loading in some other way. //! If you do, ensure that you use platform-specific conventions to do so, as this is called by multiple platforms. diff --git a/Code/Framework/AzCore/AzCore/Component/Entity.h b/Code/Framework/AzCore/AzCore/Component/Entity.h index becb0b085a..7ec63a56ac 100644 --- a/Code/Framework/AzCore/AzCore/Component/Entity.h +++ b/Code/Framework/AzCore/AzCore/Component/Entity.h @@ -16,6 +16,7 @@ #pragma once #include +#include #include #include #include @@ -438,3 +439,4 @@ namespace AZ return component; } } // namespace AZ + diff --git a/Code/Framework/AzCore/AzCore/Component/EntitySerializer.cpp b/Code/Framework/AzCore/AzCore/Component/EntitySerializer.cpp index 16452be76d..803daf1373 100644 --- a/Code/Framework/AzCore/AzCore/Component/EntitySerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Component/EntitySerializer.cpp @@ -81,20 +81,22 @@ namespace AZ azrtti_typeid(), inputValue, "Components", context); + static TypeId genericComponentWrapperTypeId("{68D358CA-89B9-4730-8BA6-E181DEA28FDE}"); for (auto& [componentKey, component] : componentMap) { - entityInstance->m_components.emplace_back(component); + // if underlying type is genericComponentWrapperTypeId, the template is null and the component should not be addded + if (component->GetUnderlyingComponentType() != genericComponentWrapperTypeId) + { + entityInstance->m_components.emplace_back(component); + } } result.Combine(componentLoadResult); } - { - JSR::ResultCode runtimeActiveLoadResult = - ContinueLoadingFromJsonObjectField(&entityInstance->m_isRuntimeActiveByDefault, - azrtti_typeidm_isRuntimeActiveByDefault)>(), - inputValue, "IsRuntimeActive", context); - } + ContinueLoadingFromJsonObjectField(&entityInstance->m_isRuntimeActiveByDefault, + azrtti_typeidm_isRuntimeActiveByDefault)>(), + inputValue, "IsRuntimeActive", context); return context.Report( result, diff --git a/Code/Framework/AzCore/AzCore/Component/EntityUtils.cpp b/Code/Framework/AzCore/AzCore/Component/EntityUtils.cpp index 8241400aac..fcc8cd6424 100644 --- a/Code/Framework/AzCore/AzCore/Component/EntityUtils.cpp +++ b/Code/Framework/AzCore/AzCore/Component/EntityUtils.cpp @@ -165,7 +165,7 @@ namespace AZ AZStd::fixed_vector knownBaseClasses = { typeToExamine }; // avoid allocating heap here if possible. 64 types are 64*sizeof(Uuid) which is only 1k. bool foundBaseClass = false; - auto enumerateBaseVisitor = [&foundBaseClass, &baseClassVisitor, &knownBaseClasses](const AZ::SerializeContext::ClassData* classData, const TypeId& examineTypeId) + auto enumerateBaseVisitor = [&baseClassVisitor, &knownBaseClasses](const AZ::SerializeContext::ClassData* classData, const TypeId& examineTypeId) { if (!classData) { diff --git a/Code/Framework/AzCore/AzCore/Compression/compression.cpp b/Code/Framework/AzCore/AzCore/Compression/compression.cpp index 60351b0f7c..8b6f270b00 100644 --- a/Code/Framework/AzCore/AzCore/Compression/compression.cpp +++ b/Code/Framework/AzCore/AzCore/Compression/compression.cpp @@ -23,8 +23,8 @@ using namespace AZ; // [3/21/2011] //========================================================================= ZLib::ZLib(IAllocator* workMemAllocator) - : m_strDeflate(NULL) - , m_strInflate(NULL) + : m_strDeflate(nullptr) + , m_strInflate(nullptr) { m_workMemoryAllocator = workMemAllocator ? workMemAllocator->GetAllocationSource() : nullptr; if (!m_workMemoryAllocator) @@ -75,7 +75,7 @@ void ZLib::FreeMem(void* userData, void* address) //========================================================================= void ZLib::StartCompressor(unsigned int compressionLevel) { - AZ_Assert(m_strDeflate == NULL, "Compressor already started!"); + AZ_Assert(m_strDeflate == nullptr, "Compressor already started!"); m_strDeflate = reinterpret_cast< z_stream* >(AllocateMem(m_workMemoryAllocator, 1, sizeof(z_stream))); m_strDeflate->zalloc = &ZLib::AllocateMem; m_strDeflate->zfree = &ZLib::FreeMem; @@ -91,10 +91,10 @@ void ZLib::StartCompressor(unsigned int compressionLevel) //========================================================================= void ZLib::StopCompressor() { - AZ_Assert(m_strDeflate != NULL, "Compressor not started!"); + AZ_Assert(m_strDeflate != nullptr, "Compressor not started!"); deflateEnd(m_strDeflate); FreeMem(m_workMemoryAllocator, m_strDeflate); - m_strDeflate = NULL; + m_strDeflate = nullptr; } //========================================================================= @@ -103,7 +103,7 @@ void ZLib::StopCompressor() //========================================================================= void ZLib::ResetCompressor() { - AZ_Assert(m_strDeflate != NULL, "Compressor not started!"); + AZ_Assert(m_strDeflate != nullptr, "Compressor not started!"); int r = deflateReset(m_strDeflate); (void)r; AZ_Assert(r == Z_OK, "ZLib inconsistent state - deflateReset() failed !!!\n"); @@ -115,7 +115,7 @@ void ZLib::ResetCompressor() //========================================================================= unsigned int ZLib::Compress(const void* data, unsigned int& dataSize, void* compressedData, unsigned int compressedDataSize, FlushType flushType) { - AZ_Assert(m_strDeflate != NULL, "Compressor not started!"); + AZ_Assert(m_strDeflate != nullptr, "Compressor not started!"); m_strDeflate->avail_in = dataSize; m_strDeflate->next_in = (unsigned char*)data; m_strDeflate->avail_out = compressedDataSize; @@ -158,7 +158,7 @@ unsigned int ZLib::Compress(const void* data, unsigned int& dataSize, void* comp //========================================================================= unsigned int ZLib::GetMinCompressedBufferSize(unsigned int sourceDataSize) { - AZ_Assert(m_strDeflate != NULL, "Compressor not started!"); + AZ_Assert(m_strDeflate != nullptr, "Compressor not started!"); return static_cast(deflateBound(m_strDeflate, sourceDataSize)); } @@ -168,7 +168,7 @@ unsigned int ZLib::GetMinCompressedBufferSize(unsigned int sourceDataSize) //========================================================================= void ZLib::StartDecompressor(Header* header) { - AZ_Assert(m_strInflate == NULL, "Decompressor already started!"); + AZ_Assert(m_strInflate == nullptr, "Decompressor already started!"); m_strInflate = reinterpret_cast< z_stream* >(AllocateMem(m_workMemoryAllocator, 1, sizeof(z_stream))); m_strInflate->zalloc = &ZLib::AllocateMem; m_strInflate->zfree = &ZLib::FreeMem; @@ -188,10 +188,10 @@ void ZLib::StartDecompressor(Header* header) //========================================================================= void ZLib::StopDecompressor() { - AZ_Assert(m_strInflate != NULL, "Decompressor not started!"); + AZ_Assert(m_strInflate != nullptr, "Decompressor not started!"); inflateEnd(m_strInflate); FreeMem(m_workMemoryAllocator, m_strInflate); - m_strInflate = NULL; + m_strInflate = nullptr; } //========================================================================= @@ -200,7 +200,7 @@ void ZLib::StopDecompressor() //========================================================================= void ZLib::ResetDecompressor(Header* header) { - AZ_Assert(m_strInflate != NULL, "Decompressor not started!"); + AZ_Assert(m_strInflate != nullptr, "Decompressor not started!"); int r = inflateReset(m_strInflate); (void)r; AZ_Assert(r == Z_OK, "ZLib inconsistent state - inflateReset() failed !!!\n"); @@ -229,7 +229,7 @@ void ZLib::SetupDecompressHeader(Header header) //========================================================================= unsigned int ZLib::Decompress(const void* compressedData, unsigned int compressedDataSize, void* data, unsigned int& dataSize, FlushType flushType) { - AZ_Assert(m_strInflate != NULL, "Decompressor not started!"); + AZ_Assert(m_strInflate != nullptr, "Decompressor not started!"); m_strInflate->avail_in = compressedDataSize; m_strInflate->next_in = (unsigned char*)compressedData; m_strInflate->avail_out = dataSize; diff --git a/Code/Framework/AzCore/AzCore/Debug/Budget.cpp b/Code/Framework/AzCore/AzCore/Debug/Budget.cpp new file mode 100644 index 0000000000..f9fe7e462a --- /dev/null +++ b/Code/Framework/AzCore/AzCore/Debug/Budget.cpp @@ -0,0 +1,74 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include "Budget.h" + +#include +#include +#include + +AZ_DEFINE_BUDGET(Animation); +AZ_DEFINE_BUDGET(Audio); +AZ_DEFINE_BUDGET(AzCore); +AZ_DEFINE_BUDGET(Editor); +AZ_DEFINE_BUDGET(Entity); +AZ_DEFINE_BUDGET(Game); +AZ_DEFINE_BUDGET(System); +AZ_DEFINE_BUDGET(Physics); + +namespace AZ::Debug +{ + struct BudgetImpl + { + AZ_CLASS_ALLOCATOR(BudgetImpl, AZ::SystemAllocator, 0); + // TODO: Budget implementation for tracking budget wall time per-core, memory, etc. + }; + + Budget::Budget(const char* name) + : m_name{ name } + , m_crc{ Crc32(name) } + { + } + + Budget::Budget(const char* name, uint32_t crc) + : m_name{ name } + , m_crc{ crc } + { + m_impl = aznew BudgetImpl; + } + + Budget::~Budget() + { + if (m_impl) + { + delete m_impl; + } + } + + // TODO:Budgets Methods below are stubbed pending future work to both update budget data and visualize it + + void Budget::PerFrameReset() + { + } + + void Budget::BeginProfileRegion() + { + } + + void Budget::EndProfileRegion() + { + } + + void Budget::TrackAllocation(uint64_t) + { + } + + void Budget::UntrackAllocation(uint64_t) + { + } +} // namespace AZ::Debug diff --git a/Code/Framework/AzCore/AzCore/Debug/Budget.h b/Code/Framework/AzCore/AzCore/Debug/Budget.h new file mode 100644 index 0000000000..4646ef8b2c --- /dev/null +++ b/Code/Framework/AzCore/AzCore/Debug/Budget.h @@ -0,0 +1,88 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ +#pragma once + +#include +#include + +namespace AZ::Debug +{ + // A budget collates per-frame resource utilization and memory for a particular category + class Budget final + { + public: + explicit Budget(const char* name); + Budget(const char* name, uint32_t crc); + ~Budget(); + + void PerFrameReset(); + void BeginProfileRegion(); + void EndProfileRegion(); + void TrackAllocation(uint64_t bytes); + void UntrackAllocation(uint64_t bytes); + + const char* Name() const + { + return m_name; + } + + uint32_t Crc() const + { + return m_crc; + } + + private: + const char* m_name; + const uint32_t m_crc; + struct BudgetImpl* m_impl = nullptr; + }; +} // namespace AZ::Debug + +// The budget is usable in the same file it was defined without needing an additional declaration. +// If you encounter a linker error complaining that this function is not defined, you have likely forgotten to either +// define or declare the budget used in a profile or memory marker. See AZ_DEFINE_BUDGET and AZ_DECLARE_BUDGET below +// for usage. +#define AZ_BUDGET_GETTER(name) GetAzBudget##name + +#if defined(_RELEASE) +#define AZ_DEFINE_BUDGET(name) \ + ::AZ::Debug::Budget* AZ_BUDGET_GETTER(name)() \ + { \ + return nullptr; \ + } +#else +// Usage example: +// In a single C++ source file: +// AZ_DEFINE_BUDGET(AzCore); +// +// Anywhere the budget is used, the budget must be declared (either in a header or in the source file itself) +// AZ_DECLARE_BUDGET(AzCore); +#define AZ_DEFINE_BUDGET(name) \ + ::AZ::Debug::Budget* AZ_BUDGET_GETTER(name)() \ + { \ + constexpr static uint32_t crc = AZ_CRC_CE(#name); \ + static ::AZ::Debug::Budget* budget = ::AZ::Debug::BudgetTracker::GetBudgetFromEnvironment(#name, crc); \ + return budget; \ + } +#endif + +// If using a budget defined in a different C++ source file, add AZ_DECLARE_BUDGET(yourBudget); somewhere in your source file at namespace +// scope Alternatively, AZ_DECLARE_BUDGET can be used in a header to declare the budget for use across any users of the header +#define AZ_DECLARE_BUDGET(name) ::AZ::Debug::Budget* AZ_BUDGET_GETTER(name)() + +// Declare budgets that are core engine budgets, or may be shared/needed across multiple external gems +// You should NOT need to declare user-space or budgets with isolated usage here. Prefer declaring them local to the module(s) that use +// the budget and defining them within a single module to avoid needing to recompile the entire engine. +AZ_DECLARE_BUDGET(Animation); +AZ_DECLARE_BUDGET(Audio); +AZ_DECLARE_BUDGET(AzCore); +AZ_DECLARE_BUDGET(Editor); +AZ_DECLARE_BUDGET(Entity); +AZ_DECLARE_BUDGET(Game); +AZ_DECLARE_BUDGET(System); +AZ_DECLARE_BUDGET(Physics); diff --git a/Code/Framework/AzCore/AzCore/Debug/BudgetTracker.cpp b/Code/Framework/AzCore/AzCore/Debug/BudgetTracker.cpp new file mode 100644 index 0000000000..2dac9a566e --- /dev/null +++ b/Code/Framework/AzCore/AzCore/Debug/BudgetTracker.cpp @@ -0,0 +1,70 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include + +#include +#include +#include +#include +#include +#include + +namespace AZ::Debug +{ + struct BudgetTracker::BudgetTrackerImpl + { + AZStd::unordered_map m_budgets; + }; + + Budget* BudgetTracker::GetBudgetFromEnvironment(const char* budgetName, uint32_t crc) + { + BudgetTracker* tracker = Interface::Get(); + if (tracker) + { + return &tracker->GetBudget(budgetName, crc); + } + return nullptr; + } + + BudgetTracker::~BudgetTracker() + { + Reset(); + } + + bool BudgetTracker::Init() + { + if (Interface::Get()) + { + return false; + } + + Interface::Register(this); + m_impl = new BudgetTrackerImpl; + return true; + } + + void BudgetTracker::Reset() + { + if (m_impl) + { + Interface::Unregister(this); + delete m_impl; + m_impl = nullptr; + } + } + + Budget& BudgetTracker::GetBudget(const char* budgetName, uint32_t crc) + { + AZStd::scoped_lock lock{ m_mutex }; + + auto it = m_impl->m_budgets.try_emplace(budgetName, budgetName, crc).first; + + return it->second; + } +} // namespace AZ::Debug diff --git a/Code/Framework/AzCore/AzCore/Debug/BudgetTracker.h b/Code/Framework/AzCore/AzCore/Debug/BudgetTracker.h new file mode 100644 index 0000000000..1357bb5870 --- /dev/null +++ b/Code/Framework/AzCore/AzCore/Debug/BudgetTracker.h @@ -0,0 +1,43 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include + +namespace AZ::Debug +{ + class Budget; + + class BudgetTracker + { + public: + AZ_RTTI(BudgetTracker, "{E14A746D-BFFE-4C02-90FB-4699B79864A5}"); + static Budget* GetBudgetFromEnvironment(const char* budgetName, uint32_t crc); + + ~BudgetTracker(); + + // Returns false if the budget tracker was already present in the environment (initialized already elsewhere) + bool Init(); + void Reset(); + + Budget& GetBudget(const char* budgetName, uint32_t crc); + + private: + struct BudgetTrackerImpl; + + AZStd::mutex m_mutex; + + // The BudgetTracker is likely included in proportionally high number of files throughout the + // engine, so indirection is used here to avoid imposing excessive recompilation in periods + // while the budget system is iterated on. + BudgetTrackerImpl* m_impl = nullptr; + }; +} // namespace AZ::Debug diff --git a/Code/Framework/AzCore/AzCore/Debug/EventTraceDriller.cpp b/Code/Framework/AzCore/AzCore/Debug/EventTraceDriller.cpp index 1fdd249138..658021b018 100644 --- a/Code/Framework/AzCore/AzCore/Debug/EventTraceDriller.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/EventTraceDriller.cpp @@ -26,7 +26,6 @@ namespace AZ const u32 Timestamp = AZ_CRC("Timestamp", 0xa5d6e63e); const u32 Duration = AZ_CRC("Duration", 0x865f80c0); const u32 Instant = AZ_CRC("Instant", 0x0e9047ad); - const u32 InstantScope = AZ_CRC("InstantScope", 0xed4bfb0e); } EventTraceDriller::EventTraceDriller() diff --git a/Code/Framework/AzCore/AzCore/Debug/FrameProfiler.h b/Code/Framework/AzCore/AzCore/Debug/FrameProfiler.h deleted file mode 100644 index 2b86168b82..0000000000 --- a/Code/Framework/AzCore/AzCore/Debug/FrameProfiler.h +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#ifndef AZCORE_FRAME_PROFILER_H -#define AZCORE_FRAME_PROFILER_H - -#include -#include -#include -#include -#include - -namespace AZ -{ - namespace Debug - { - namespace FrameProfiler - { - /** - * This structure is used for frame data history, make sure it's memory efficient. - */ - struct FrameData - { - unsigned int m_frameId; ///< Id of the frame this data belongs to. - union - { - ProfilerRegister::TimeData m_timeData; - ProfilerRegister::ValuesData m_userValues; - }; - }; - - struct RegisterData - { - ////////////////////////////////////////////////////////////////////////// - // Profile register snapshot - /// data that doesn't change - const char* m_name; ///< Name of the profiler register. - const char* m_function; ///< Function name in the code. - int m_line; ///< Line number if the code. - AZ::u32 m_systemId; ///< Register system id. - ProfilerRegister::Type m_type; - RegisterData* m_lastParent; ///< Pointer to the last parent register data. - AZStd::ring_buffer m_frames; ///< History of all frame deltas (basically the data you want to display) - }; - - struct ThreadData - { - typedef AZStd::unordered_map RegistersMap; - AZStd::thread_id m_id; ///< Thread id (same as AZStd::thread::id) - RegistersMap m_registers; ///< Map with all the registers (with history) - }; - - typedef AZStd::fixed_vector ThreadDataArray; ///< Array with samplers for all threads - } // namespace FrameProfiler - } // namespace Debug -} // namespace AZ - -#endif // AZCORE_FRAME_PROFILER_H -#pragma once diff --git a/Code/Framework/AzCore/AzCore/Debug/FrameProfilerBus.h b/Code/Framework/AzCore/AzCore/Debug/FrameProfilerBus.h deleted file mode 100644 index 93fd8be8bb..0000000000 --- a/Code/Framework/AzCore/AzCore/Debug/FrameProfilerBus.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#ifndef AZCORE_FRAME_PROFILER_BUS_H -#define AZCORE_FRAME_PROFILER_BUS_H - -#include -#include - -namespace AZ -{ - namespace Debug - { - class FrameProfilerComponent; - - /** - * Interface class for frame profiler events. - */ - class FrameProfilerEvents - : public AZ::EBusTraits - { - public: - virtual ~FrameProfilerEvents() {} - - /// Called when the frame profiler has computed a new frame (even is there is no new data). - virtual void OnFrameProfilerData(const FrameProfiler::ThreadDataArray& data) = 0; - }; - - typedef AZ::EBus FrameProfilerBus; - } // namespace Debug -} // namespace AZ - -#endif // AZCORE_FRAME_PROFILER_BUS_H -#pragma once diff --git a/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.cpp b/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.cpp deleted file mode 100644 index 1bd825b7af..0000000000 --- a/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.cpp +++ /dev/null @@ -1,250 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include - -#include -#include - -#include - -namespace AZ -{ - namespace Debug - { - //========================================================================= - // FrameProfilerComponent - // [12/5/2012] - //========================================================================= - FrameProfilerComponent::FrameProfilerComponent() - : m_numFramesStored(2) - , m_frameId(0) - , m_pauseOnFrame(0) - , m_currentThreadData(NULL) - { - } - - //========================================================================= - // ~FrameProfilerComponent - // [12/5/2012] - //========================================================================= - FrameProfilerComponent::~FrameProfilerComponent() - { - } - - //========================================================================= - // Activate - // [12/5/2012] - //========================================================================= - void FrameProfilerComponent::Activate() - { - if (!Profiler::IsReady()) - { - Profiler::Create(); - } - - Profiler::AddReference(); - - TickBus::Handler::BusConnect(); - AZ_Assert(m_numFramesStored >= 1, "We must have at least one frame to store, otherwise this component is useless!"); - } - - //========================================================================= - // Deactivate - // [12/5/2012] - //========================================================================= - void FrameProfilerComponent::Deactivate() - { - TickBus::Handler::BusDisconnect(); - - Profiler::ReleaseReference(); - } - - //========================================================================= - // OnTick - // [12/5/2012] - //========================================================================= - void FrameProfilerComponent::OnTick(float deltaTime, ScriptTimePoint time) - { - (void)deltaTime; - (void)time; - ++m_frameId; - AZ_Error("Profiler", m_frameId != m_pauseOnFrame, "Triggered user pause/error on this frame! Check FrameProfilerComponent pauseOnFrame value!"); - - if (!Profiler::IsReady()) - { - return; // we can't sample registers without profiler - } - // collect data from the profiler - m_currentThreadData = NULL; - Profiler::Instance().ReadRegisterValues(AZStd::bind(&FrameProfilerComponent::ReadProfilerRegisters, this, AZStd::placeholders::_1, AZStd::placeholders::_2)); - - // process all the resulting data here, not while reading the registers - for (size_t iThread = 0; iThread < m_threads.size(); ++iThread) - { - FrameProfiler::ThreadData& td = m_threads[iThread]; - FrameProfiler::ThreadData::RegistersMap::iterator it = td.m_registers.begin(); - FrameProfiler::ThreadData::RegistersMap::iterator last = td.m_registers.end(); - for (; it != last; ++it) - { - // fix up parents - FrameProfiler::RegisterData& rd = it->second; - if (rd.m_type == ProfilerRegister::PRT_TIME) - { - const FrameProfiler::FrameData& fd = rd.m_frames.back(); - if (fd.m_timeData.m_lastParent != nullptr) - { - FrameProfiler::ThreadData::RegistersMap::iterator parentIt = td.m_registers.find(fd.m_timeData.m_lastParent); - AZ_Assert(parentIt != td.m_registers.end(), "We have a parent register that is not in our register map. This should not happen!"); - rd.m_lastParent = &parentIt->second; - } - else - { - rd.m_lastParent = NULL; - } - } - } - } - - // send an even to whomever cares - EBUS_EVENT(FrameProfilerBus, OnFrameProfilerData, m_threads); - } - - int FrameProfilerComponent::GetTickOrder() - { - // Even it's not critical we should tick last to capture the current frame - // so TICK_LAST (since it's not the last int +1 is a valid assumption) - return TICK_LAST + 1; - } - - //========================================================================= - // ReadRegisterCallback - // [12/5/2012] - //========================================================================= - bool FrameProfilerComponent::ReadProfilerRegisters(const ProfilerRegister& reg, const AZStd::thread_id& id) - { - if (m_currentThreadData == NULL || m_currentThreadData->m_id != id) - { - m_currentThreadData = NULL; - - // find the thread and cache it, as we will received registers thread by thread... so we don't search. - for (size_t i = 0; i < m_threads.size(); ++i) - { - FrameProfiler::ThreadData* td = &m_threads[i]; - if (td->m_id == id) - { - m_currentThreadData = td; - break; - } - } - - if (m_currentThreadData == NULL) - { - m_threads.push_back(); - m_currentThreadData = &m_threads.back(); - m_currentThreadData->m_id = id; - } - } - - const ProfilerRegister* profReg = ® - FrameProfiler::ThreadData::RegistersMap::pair_iter_bool pairIterBool = m_currentThreadData->m_registers.insert_key(profReg); - FrameProfiler::RegisterData& regData = pairIterBool.first->second; - - // now update dynamic data with as little as possible computation (we must be fast) - FrameProfiler::FrameData fd; // we can actually move this computation (FrameData and push) for later but we will need to use more memory - fd.m_frameId = m_frameId; - - if (pairIterBool.second) - { - // when insert copy the static data only once - regData.m_name = profReg->m_name; - regData.m_function = profReg->m_function; - regData.m_line = profReg->m_line; - regData.m_systemId = profReg->m_systemId; - regData.m_frames.set_capacity(m_numFramesStored); - regData.m_type = static_cast(profReg->m_type); - } - - switch (regData.m_type) - { - case ProfilerRegister::PRT_TIME: - { - fd.m_timeData.m_time = profReg->m_timeData.m_time; - fd.m_timeData.m_childrenTime = profReg->m_timeData.m_childrenTime; - fd.m_timeData.m_calls = profReg->m_timeData.m_calls; - fd.m_timeData.m_childrenCalls = profReg->m_timeData.m_childrenCalls; - fd.m_timeData.m_lastParent = profReg->m_timeData.m_lastParent; - } break; - case ProfilerRegister::PRT_VALUE: - { - fd.m_userValues.m_value1 = profReg->m_userValues.m_value1; - fd.m_userValues.m_value2 = profReg->m_userValues.m_value2; - fd.m_userValues.m_value3 = profReg->m_userValues.m_value3; - fd.m_userValues.m_value4 = profReg->m_userValues.m_value4; - fd.m_userValues.m_value5 = profReg->m_userValues.m_value5; - } break; - } - - regData.m_frames.push_back(fd); - return true; - } - - //========================================================================= - // GetProvidedServices - //========================================================================= - void FrameProfilerComponent::GetProvidedServices(ComponentDescriptor::DependencyArrayType& provided) - { - provided.push_back(AZ_CRC("FrameProfilerService", 0x05d1bb90)); - } - - //========================================================================= - // GetIncompatibleServices - //========================================================================= - void FrameProfilerComponent::GetIncompatibleServices(ComponentDescriptor::DependencyArrayType& incompatible) - { - incompatible.push_back(AZ_CRC("FrameProfilerService", 0x05d1bb90)); - } - - //========================================================================= - // GetDependentServices - //========================================================================= - void FrameProfilerComponent::GetDependentServices(ComponentDescriptor::DependencyArrayType& dependent) - { - dependent.push_back(AZ_CRC("MemoryService", 0x5c4d473c)); - } - - //========================================================================= - // Reflect - //========================================================================= - void FrameProfilerComponent::Reflect(ReflectContext* context) - { - if (SerializeContext* serializeContext = azrtti_cast(context)) - { - serializeContext->Class() - ->Version(1) - ->Field("numFramesStored", &FrameProfilerComponent::m_numFramesStored) - ->Field("pauseOnFrame", &FrameProfilerComponent::m_pauseOnFrame) - ; - - if (EditContext* editContext = serializeContext->GetEditContext()) - { - editContext->Class( - "Frame Profiler", "Performs per frame profiling (FPS counter, registers, etc.)") - ->ClassElement(AZ::Edit::ClassElements::EditorData, "") - ->Attribute(AZ::Edit::Attributes::Category, "Profiling") - ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("System", 0xc94d118b)) - ->DataElement(AZ::Edit::UIHandlers::SpinBox, &FrameProfilerComponent::m_numFramesStored, "Number of Frames", "How many frames we will keep with the RUNTIME buffers.") - ->Attribute(AZ::Edit::Attributes::Min, 1) - ->DataElement(AZ::Edit::UIHandlers::SpinBox, &FrameProfilerComponent::m_pauseOnFrame, "Pause on frame", "Paused the engine (debug break) on a specific frame. 0 means no pause!") - ; - } - } - } - } // namespace Debug -} // namespace AZ diff --git a/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.h b/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.h deleted file mode 100644 index a92202ed7d..0000000000 --- a/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.h +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#ifndef AZCORE_FRAME_PROFILER_COMPONENT_H -#define AZCORE_FRAME_PROFILER_COMPONENT_H - -#include -#include -#include -#include -#include - -namespace AZ -{ - namespace Debug - { - /** - * Frame profiler component provides a frame profiling information - * (from FPS counter to profiler registers manipulation and so on). - * It's a debug system so it should not be active in release - */ - class FrameProfilerComponent - : public Component - , public AZ::TickBus::Handler - { - public: - AZ_COMPONENT(AZ::Debug::FrameProfilerComponent, "{B81739EF-ED77-4F67-9D05-6ADF94F0431A}") - - FrameProfilerComponent(); - virtual ~FrameProfilerComponent(); - - private: - ////////////////////////////////////////////////////////////////////////// - // Component base - void Activate() override; - void Deactivate() override; - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // Tick bus - void OnTick(float deltaTime, ScriptTimePoint time) override; - int GetTickOrder() override; - ////////////////////////////////////////////////////////////////////////// - - /// \ref ComponentDescriptor::GetProvidedServices - static void GetProvidedServices(ComponentDescriptor::DependencyArrayType& provided); - /// \ref ComponentDescriptor::GetIncompatibleServices - static void GetIncompatibleServices(ComponentDescriptor::DependencyArrayType& incompatible); - /// \ref ComponentDescriptor::GetDependentServices - static void GetDependentServices(ComponentDescriptor::DependencyArrayType& dependent); - /// \red ComponentDescriptor::Reflect - static void Reflect(ReflectContext* reflection); - - /// callback for reading profiler registers - bool ReadProfilerRegisters(const ProfilerRegister& reg, const AZStd::thread_id& id); - - // Keep in mind memory usage, increases quickly. Prefer remote tools (where the history is kept on the PC) instead of keeping long history - unsigned int m_numFramesStored; ///< Number of frames that we will store in history buffers. >= 1 - unsigned int m_frameId; ///< Frame id (it's just counted from the start). - - unsigned int m_pauseOnFrame; ///< Allows you to specify a frame the code will pause onto. - - - FrameProfiler::ThreadDataArray m_threads; ///< Array with samplers for all threads - FrameProfiler::ThreadData* m_currentThreadData; ///< Cached pointer to the last accessed thread data. - }; - } -} - -#endif // AZCORE_FRAME_PROFILER_COMPONENT_H -#pragma once diff --git a/Code/Framework/AzCore/AzCore/Debug/LocalFileEventLogger.cpp b/Code/Framework/AzCore/AzCore/Debug/LocalFileEventLogger.cpp index 049ac2e8a1..0009ec83b3 100644 --- a/Code/Framework/AzCore/AzCore/Debug/LocalFileEventLogger.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/LocalFileEventLogger.cpp @@ -242,7 +242,9 @@ namespace AZ::Debug ThreadData* threadData = threadStorage.m_data; // Set to nullptr so other threads doing a flush can't pick this up. - while (!threadStorage.m_data.compare_exchange_strong(threadData, nullptr)); + while (!threadStorage.m_data.compare_exchange_strong(threadData, nullptr)) + { + } uint32_t writeSize = AZ_SIZE_ALIGN_UP(sizeof(EventHeader) + size, EventBoundary); if (threadData->m_usedBytes + writeSize >= ThreadData::BufferSize) @@ -270,7 +272,9 @@ namespace AZ::Debug // swap the pending data to commit the event ThreadStorage& threadStorage = GetThreadStorage(); ThreadData* expectedData = nullptr; - while (!threadStorage.m_data.compare_exchange_strong(expectedData, threadStorage.m_pendingData)); + while (!threadStorage.m_data.compare_exchange_strong(expectedData, threadStorage.m_pendingData)) + { + } threadStorage.m_pendingData = nullptr; } diff --git a/Code/Framework/AzCore/AzCore/Debug/Profiler.cpp b/Code/Framework/AzCore/AzCore/Debug/Profiler.cpp index 649bb0b8d7..0bb92b923d 100644 --- a/Code/Framework/AzCore/AzCore/Debug/Profiler.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/Profiler.cpp @@ -7,664 +7,4 @@ */ #include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace AZ -{ - uint32_t ProfileScope::GetSystemID(const char* system) - { - // TODO: stable ids for registered budgets - return AZ::Crc32(system); - } - - namespace Debug - { - ////////////////////////////////////////////////////////////////////////// - // Globals - AZStd::chrono::microseconds ProfilerRegister::TimeData::s_startStopOverheadPer1000Calls(0); - Profiler* Profiler::s_instance = nullptr; - u64 Profiler::s_id = 0; - int Profiler::s_useCount = 0; - ////////////////////////////////////////////////////////////////////////// - - /** - * Profile data stored per thread. - */ - struct ProfilerThreadData - { - static const int m_maxStackSize = 32; - typedef AZStd::list ProfilerRegisterList; - typedef AZStd::fixed_vector ProfilerSectionStack; - - AZStd::thread::id m_id; ///< Thread id. - ProfilerRegisterList m_registers; ///< Thread profiler registers (for this thread). - mutable AZStd::shared_spin_mutex m_registersLock; ///< Lock for accessing thread profiler entries. Sadly the only reason for this to exists is so we can read safe the register counters. - ProfilerSectionStack m_stack; ///< Current active sections stack. - }; - - struct ProfilerSystemData - { - AZ::u32 m_id; - const char* m_name; - bool m_isActive; - }; - - /** - * Profiler class data (hidden in from the header file) - */ - struct ProfilerData - { - AZ_CLASS_ALLOCATOR(ProfilerData, OSAllocator, 0); - - AZStd::fixed_vector m_threads; ///< Array with thread with all belonging information. - AZStd::shared_spin_mutex m_threadDataMutex; ///< Spin read/write lock (shared_mutex) for access to the m_threads. - AZStd::fixed_vector m_systems; ///< Array with systems (profiler/timer groups) that you can enable/disable. - }; - - //========================================================================= - // Profiler - // [12/3/2012] - //========================================================================= - Profiler::Profiler(const Descriptor& desc) - { - (void)desc; - m_data = aznew ProfilerData; - - // we can periodically call this function (like the end of every frame to refresh the current estimation). - ProfilerRegister::TimerComputeStartStopOverhead(); - - // use a timestamp as and id. - s_id = AZStd::GetTimeUTCMilliSecond(); - } - - //========================================================================= - // ~Profiler - // [12/3/2012] - //========================================================================= - Profiler::~Profiler() - { - AZ_Assert(s_useCount == 0, "You deleted the profiler while it's still in use."); - s_id = 0; - delete m_data; - } - - //========================================================================= - // Create - // [12/3/2012] - //========================================================================= - bool Profiler::Create(const Descriptor& desc) - { - AZ_Assert(s_instance == nullptr, "Profiler is already created!"); - if (s_instance != nullptr) - { - return false; - } - s_instance = azcreate(Profiler, (desc), AZ::OSAllocator, "Profiler", 0); - return true; - } - - //========================================================================= - // Destroy - // [12/3/2012] - //========================================================================= - void Profiler::Destroy() - { - AZ_Assert(s_instance != nullptr, "Profiler not created"); - if (s_instance) - { - azdestroy(s_instance, AZ::OSAllocator); - s_instance = nullptr; - } - } - - //========================================================================= - // AddReference - // [5/24/2013] - //========================================================================= - void Profiler::AddReference() - { - ++s_useCount; - } - - //========================================================================= - // - // [5/24/2013] - //========================================================================= - void Profiler::ReleaseReference() - { - AZ_Assert(s_useCount > 0, "Use count is already 0, you can't release it!"); - --s_useCount; - if (s_useCount == 0) - { - Destroy(); - } - } - - //========================================================================= - // RegisterSystem - // [12/3/2012] - //========================================================================= - bool Profiler::RegisterSystem(AZ::u32 systemId, const char* name, bool isActive) - { - for (size_t i = 0; i < m_data->m_systems.size(); ++i) - { - if (m_data->m_systems[i].m_id == systemId) - { - return false; - } - } - ProfilerSystemData sd; - sd.m_id = systemId; - sd.m_isActive = isActive; - sd.m_name = name; - m_data->m_systems.push_back(sd); - return true; - } - - //========================================================================= - // UnregisterSystem - // [12/3/2012] - //========================================================================= - bool Profiler::UnregisterSystem(AZ::u32 systemId) - { - size_t i = 0; - for (; i < m_data->m_systems.size(); ++i) - { - ProfilerSystemData& sd = m_data->m_systems[i]; - if (sd.m_id == systemId) - { - if (sd.m_isActive) - { - DeactivateSystem(sd.m_name); - } - // Make sure we triggest driller message when the m_threadDataMutex is NOT locked - // as we lock them in reverse order when we update the profile driller. - AZ_Assert(false, "Currently this code is unused. If we do use it, we should make call EBUS even outside of this function. Where m_threadDataMutex is NOT locked!"); - //EBUS_DBG_EVENT(ProfilerDrillerBus,OnUnregisterSystem,systemId); - break; - } - } - if (i < m_data->m_systems.size()) - { - m_data->m_systems.erase(m_data->m_systems.begin() + i); - return true; - } - return false; - } - - //========================================================================= - // ActivateSystem - // [12/3/2012] - //========================================================================= - bool Profiler::SetSystemState(AZ::u32 systemId, bool isActive) - { - for (size_t i = 0; i < m_data->m_systems.size(); ++i) - { - ProfilerSystemData& sd = m_data->m_systems[i]; - if (sd.m_id == systemId) - { - if (sd.m_isActive != isActive) - { - sd.m_isActive = isActive; - size_t numThreads = m_data->m_threads.size(); - for (size_t j = 0; j < numThreads; ++j) - { - ProfilerThreadData& data = m_data->m_threads[j]; - ProfilerThreadData::ProfilerRegisterList::iterator it = data.m_registers.begin(); - ProfilerThreadData::ProfilerRegisterList::iterator end = data.m_registers.end(); - for (; it != end; ++it) - { - ProfilerRegister& reg = *it; - // This is a big question since this is the only writer - // and the timers are readers and value should be read atomically (1 byte) - // we should be safe without a synchronization here (as data should be written as we exit) - // at worst we can put a volatile in front of the bool. Either way this should not cause - // crashes or anything - if (reg.m_systemId == systemId) - { - reg.m_isActive = isActive ? 1 : 0; - } - } - } - } - return true; - } - } - return false; - } - - //========================================================================= - // ActivateSystem - // [5/24/2013] - //========================================================================= - void Profiler::ActivateSystem(const char* systemName) - { - AZ::u32 systemId = AZ::Crc32(systemName); - bool isNewSystem = false; - { - AZStd::unique_lock writeLock(m_data->m_threadDataMutex); - if (!SetSystemState(systemId, true)) - { - // if the system is new add it - RegisterSystem(systemId, systemName, true); - isNewSystem = true; - } - } - if (isNewSystem) - { - // Make sure we triggest driller message when the m_threadDataMutex is NOT locked - // as we lock them in reverse order when we update the profile driller. - EBUS_DBG_EVENT(ProfilerDrillerBus, OnRegisterSystem, systemId, systemName); - } - } - - //========================================================================= - // DeactivateSystem - // [5/24/2013] - //========================================================================= - void Profiler::DeactivateSystem(const char* systemName) - { - AZ::u32 systemId = AZ::Crc32(systemName); - bool isNewSystem = false; - { - AZStd::unique_lock writeLock(m_data->m_threadDataMutex); - if (!SetSystemState(systemId, false)) - { - // if the system is new add it - RegisterSystem(systemId, systemName, false); - isNewSystem = true; - } - } - if (isNewSystem) - { - // Make sure we triggest driller message when the m_threadDataMutex is NOT locked - // as we lock them in reverse order when we update the profile driller. - EBUS_DBG_EVENT(ProfilerDrillerBus, OnRegisterSystem, systemId, systemName); - } - } - - - //========================================================================= - // IsSystemActive - // [5/24/2013] - //========================================================================= - bool Profiler::IsSystemActive(const char* systemName) const - { - return IsSystemActive(AZ::Crc32(systemName)); - } - - //========================================================================= - // IsSystemActive - // [12/3/2012] - //========================================================================= - bool Profiler::IsSystemActive(AZ::u32 systemId) const - { - for (size_t i = 0; i < m_data->m_systems.size(); ++i) - { - if (m_data->m_systems[i].m_id == systemId) - { - return m_data->m_systems[i].m_isActive != 0; - } - } - return false; - } - - //========================================================================= - // GetNumberOfSystems - // [12/3/2012] - //========================================================================= - int Profiler::GetNumberOfSystems() const - { - return static_cast(m_data->m_systems.size()); - } - - //========================================================================= - // GetSystemName - // [12/3/2012] - //========================================================================= - const char* Profiler::GetSystemName(int index) const - { - return m_data->m_systems[index].m_name; - } - - //========================================================================= - // GetSystemName - // [12/3/2012] - //========================================================================= - const char* Profiler::GetSystemName(AZ::u32 systemId) const - { - for (size_t i = 0; i < m_data->m_systems.size(); ++i) - { - if (m_data->m_systems[i].m_id == systemId) - { - return m_data->m_systems[i].m_name; - } - } - return NULL; - } - - //========================================================================= - // RemoveThreadData - // [12/3/2012] - //========================================================================= - void Profiler::RemoveThreadData(AZStd::thread_id id) - { - // this is very tricky we must be sure that thread is no longer operational - // otherwise we will crash badly. We can do only because nobody should - // reference this registers but the thread local data. - AZStd::unique_lock writeLock(m_data->m_threadDataMutex); - size_t numThreads = m_data->m_threads.size(); - ProfilerThreadData* threadData = NULL; - for (size_t i = 0; i < numThreads; ++i) - { - ProfilerThreadData& data = m_data->m_threads[i]; - if (data.m_id == id) - { - threadData = &data; - break; - } - } - - if (threadData) - { - // delete all registers, we can remove the thread data too, but we will need to switch the structure to list - // so far this is super minimal overhead, registers are more. - threadData->m_registers.clear(); - } - } - - //========================================================================= - // ReadRegisterValues - // [12/3/2012] - //========================================================================= - void Profiler::ReadRegisterValues(const ReadProfileRegisterCB& callback, AZ::u32 systemFilter, const AZStd::thread_id* threadFilter) const - { - AZStd::shared_lock readLock(s_instance->m_data->m_threadDataMutex); - size_t numThreads = Profiler::s_instance->m_data->m_threads.size(); - for (size_t i = 0; i < numThreads; ++i) - { - const ProfilerThreadData& data = s_instance->m_data->m_threads[i]; - if (threadFilter && *threadFilter != data.m_id) - { - continue; - } - { - AZStd::shared_lock registersLock(data.m_registersLock); - ProfilerThreadData::ProfilerRegisterList::const_iterator it = data.m_registers.begin(); - ProfilerThreadData::ProfilerRegisterList::const_iterator end = data.m_registers.end(); - for (; it != end; ++it) - { - const ProfilerRegister& reg = *it; - if (!reg.m_isActive || (systemFilter != 0 && systemFilter != reg.m_systemId)) - { - continue; - } - if (!callback(reg, data.m_id)) - { - return; - } - } - } - } - } - - //========================================================================= - // ResetRegisters - // [12/4/2012] - //========================================================================= - void Profiler::ResetRegisters() - { - AZStd::unique_lock writeLock(s_instance->m_data->m_threadDataMutex); - size_t numThreads = Profiler::s_instance->m_data->m_threads.size(); - for (size_t i = 0; i < numThreads; ++i) - { - ProfilerThreadData& data = s_instance->m_data->m_threads[i]; - { - AZStd::unique_lock registersLock(data.m_registersLock); - ProfilerThreadData::ProfilerRegisterList::iterator it = data.m_registers.begin(); - ProfilerThreadData::ProfilerRegisterList::iterator end = data.m_registers.end(); - for (; it != end; ++it) - { - ProfilerRegister& reg = *it; - reg.Reset(); - } - } - } - - // Reset registers event - } - - //========================================================================= - // CreateRegister - // [6/28/2013] - //========================================================================= - ProfilerRegister* - ProfilerRegister::CreateRegister(const char* systemName, const char* name, const char* function, int line, ProfilerRegister::Type type) - { - static AZ_THREAD_LOCAL ProfilerThreadData* threadData = nullptr; - static AZ_THREAD_LOCAL u64 profilerId = 0; - if (profilerId != Profiler::s_id) - { - threadData = nullptr; // profiler has changed - profilerId = Profiler::s_id; - } - AZ::u32 systemId = AZ::Crc32(systemName); - ProfilerRegister* reg; - { - AZStd::unique_lock writeLock(Profiler::s_instance->m_data->m_threadDataMutex); - - // make sure we have the system registered. This function will just return false if the system exists. - if (systemName) - { - Profiler::s_instance->RegisterSystem(systemId, systemName, true); - } - - if (threadData == nullptr) // if this is a new thread add the data - { - AZStd::thread::id threadId = AZStd::this_thread::get_id(); - Profiler::s_instance->m_data->m_threads.push_back(); - threadData = &Profiler::s_instance->m_data->m_threads.back(); - threadData->m_id = threadId; - } - threadData->m_registers.push_back(); - reg = &threadData->m_registers.back(); - reg->m_name = name; - reg->m_function = function; - reg->m_line = line; - reg->m_systemId = systemId; - reg->m_isActive = Profiler::s_instance->IsSystemActive(systemId) ? 1 : 0; - reg->m_type = type; - reg->m_threadData = threadData; - - reg->Reset(); - } - // Make sure we triggest driller message when the m_threadDataMutex is NOT locked - // as we lock them in reverse order when we update the profile driller. - EBUS_DBG_EVENT(ProfilerDrillerBus, OnNewRegister, *reg, threadData->m_id); - - return reg; - } - - //========================================================================= - // TimerCreateAndStart - // [11/30/2012] - //========================================================================= - ProfilerRegister* - ProfilerRegister::TimerCreateAndStart(const char* systemName, const char* name, ProfilerSection * section, const char* function, int line) - { - AZStd::chrono::system_clock::time_point start = AZStd::chrono::system_clock::now(); - ProfilerRegister* reg = CreateRegister(systemName, name, function, line, ProfilerRegister::PRT_TIME); - AZStd::chrono::system_clock::time_point end = AZStd::chrono::system_clock::now(); - - // adjust the parent timer with the overhead we incur during timer operations. (TODO with TLS this is so fast that we might not need to do it) - if (!reg->m_threadData->m_stack.empty()) // if we are not he last element - { - AZStd::chrono::microseconds elapsed = end - start; - reg->m_threadData->m_stack.back()->m_childTime += elapsed; // no need to check if we go in the future as this will happen on Stop - } - - if (reg->m_isActive) - { - section->m_register = reg; - section->m_start = end; - reg->m_threadData->m_stack.push_back(section); - } - else - { - section->m_register = nullptr; - } - - return reg; - } - - //========================================================================= - // ValueCreate - // [6/28/2013] - //========================================================================= - ProfilerRegister* - ProfilerRegister::ValueCreate(const char* systemName, const char* name, const char* function, int line) - { - return CreateRegister(systemName, name, function, line, ProfilerRegister::PRT_VALUE); - } - - //========================================================================= - // TimerStart - // [11/29/2012] - //========================================================================= - void ProfilerRegister::TimerStart(ProfilerSection* section) - { - ProfilerRegister* reg = this; - - if (reg->m_isActive) - { - section->m_register = reg; - reg->m_threadData->m_stack.push_back(section); - section->m_start = AZStd::chrono::system_clock::now(); - } - else - { - section->m_register = nullptr; - } - } - - //========================================================================= - // TimerStop - // [11/29/2012] - //========================================================================= - void ProfilerRegister::TimerStop() - { - AZStd::chrono::system_clock::time_point end = AZStd::chrono::system_clock::now(); - ProfilerSection* section = m_threadData->m_stack.back(); - AZStd::chrono::microseconds elapsedTime = end - section->m_start; - { - m_threadData->m_registersLock.lock(); // lock for write - ++m_timeData.m_calls; - m_timeData.m_time += elapsedTime.count(); - m_timeData.m_childrenTime += section->m_childTime.count(); - m_timeData.m_childrenCalls += section->m_childCalls; - m_threadData->m_registersLock.unlock(); // unlock - } - m_threadData->m_stack.pop_back(); - - // adjust the parent timer with the overhead we incur during timer operations. - if (!m_threadData->m_stack.empty()) - { - ProfilerSection* parent = m_threadData->m_stack.back(); - m_timeData.m_lastParent = parent->m_register; - parent->m_childTime += elapsedTime /*+ s_startStopOverhead*/; // add the overhead since most of it is in Stop() - ++parent->m_childCalls; - } - } - - //========================================================================= - // Reset - // [12/4/2012] - //========================================================================= - void ProfilerRegister::Reset() - { - switch (m_type) - { - case PRT_TIME: - { - m_timeData.m_time = 0; - m_timeData.m_childrenTime = 0; - m_timeData.m_calls = 0; - m_timeData.m_childrenCalls = 0; - m_timeData.m_lastParent = nullptr; - } break; - case PRT_VALUE: - { - m_userValues.m_value1 = 0; - m_userValues.m_value2 = 0; - m_userValues.m_value3 = 0; - m_userValues.m_value4 = 0; - m_userValues.m_value5 = 0; - } break; - } - } - - //========================================================================= - // ComputeStartStopOverhead - // [12/3/2012] - //========================================================================= - void ProfilerRegister::TimerComputeStartStopOverhead() - { - // compute default thread start stop overhead - ProfilerThreadData sampleThreadData; - sampleThreadData.m_id = AZStd::this_thread::get_id(); - sampleThreadData.m_registers.push_back(); - ProfilerRegister& sampleRegister = sampleThreadData.m_registers.back(); - sampleRegister.m_isActive = true; - sampleRegister.m_name = nullptr; - sampleRegister.m_systemId = 0; - sampleRegister.m_threadData = &sampleThreadData; - - const int numSamples = 1000; - for (int iRepetition = 0; iRepetition < 1000; ++iRepetition) // just for test - { - ProfilerSection section; - sampleRegister.TimerStart(§ion); - AZStd::chrono::system_clock::time_point start = AZStd::chrono::system_clock::now(); - for (int i = 0; i < numSamples; ++i) - { - static AZ::Debug::ProfilerRegister* sampleRegisterPtr = &sampleRegister; // the creation is timed differently - ProfilerSection subSection; - if (sampleRegisterPtr != NULL) - { - sampleRegister.TimerStart(&subSection); - } - } - AZStd::chrono::microseconds elapsed = (AZStd::chrono::system_clock::now() - start); - if (TimeData::s_startStopOverheadPer1000Calls.count() == 0) // if first time set otherwise smooth average - { - TimeData::s_startStopOverheadPer1000Calls = elapsed; - } - else - { - float fNew = static_cast(elapsed.count()); - float fCurrent = static_cast(TimeData::s_startStopOverheadPer1000Calls.count()); - int deltaValue = static_cast((fNew - fCurrent) * 0.1f); - if (deltaValue < 0) - { - TimeData::s_startStopOverheadPer1000Calls -= AZStd::chrono::microseconds(-deltaValue); - } - else - { - TimeData::s_startStopOverheadPer1000Calls += AZStd::chrono::microseconds(deltaValue); - } - } - } - //AZ_TracePrintf("Profiler","Overhead %d microseconds per 1000 profile calls!\n",TimeData::s_startStopOverheadPer1000Calls.count()); - } - - } -} // namespace AZ diff --git a/Code/Framework/AzCore/AzCore/Debug/Profiler.h b/Code/Framework/AzCore/AzCore/Debug/Profiler.h index f173bb8e17..8af48e47f6 100644 --- a/Code/Framework/AzCore/AzCore/Debug/Profiler.h +++ b/Code/Framework/AzCore/AzCore/Debug/Profiler.h @@ -7,42 +7,49 @@ */ #pragma once -#include -#include +#include #ifdef USE_PIX #include #include #endif -#if defined(AZ_PROFILER_MACRO_DISABLE) // by default we never disable the profiler registers as their overhead should be minimal, you can still do that for your code though. -# define AZ_PROFILE_SCOPE(...) -# define AZ_PROFILE_FUNCTION(...) -# define AZ_PROFILE_BEGIN(...) -# define AZ_PROFILE_END(...) +#if defined(AZ_PROFILER_MACRO_DISABLE) // by default we never disable the profiler registers as their overhead should be minimal, you can + // still do that for your code though. +#define AZ_PROFILE_SCOPE(...) +#define AZ_PROFILE_FUNCTION(...) +#define AZ_PROFILE_BEGIN(...) +#define AZ_PROFILE_END(...) #else + /** * Macro to declare a profile section for the current scope { }. * format is: AZ_PROFILE_SCOPE(categoryName, const char* formatStr, ...) */ -# define AZ_PROFILE_SCOPE(category, ...) ::AZ::ProfileScope AZ_JOIN(azProfileScope, __LINE__){ #category, __VA_ARGS__ } -# define AZ_PROFILE_FUNCTION(category) AZ_PROFILE_SCOPE(category, AZ_FUNCTION_SIGNATURE) +#define AZ_PROFILE_SCOPE(budget, ...) \ + ::AZ::Debug::ProfileScope AZ_JOIN(azProfileScope, __LINE__) \ + { \ + AZ_BUDGET_GETTER(budget)(), __VA_ARGS__ \ + } + +#define AZ_PROFILE_FUNCTION(category) AZ_PROFILE_SCOPE(category, AZ_FUNCTION_SIGNATURE) // Prefer using the scoped macros which automatically end the event (AZ_PROFILE_SCOPE/AZ_PROFILE_FUNCTION) -# define AZ_PROFILE_BEGIN(category, ...) ::AZ::ProfileScope::BeginRegion(#category, __VA_ARGS__) -# define AZ_PROFILE_END() ::AZ::ProfileScope::EndRegion() +#define AZ_PROFILE_BEGIN(budget, ...) ::AZ::Debug::ProfileScope::BeginRegion(AZ_BUDGET_GETTER(budget)(), __VA_ARGS__) +#define AZ_PROFILE_END(budget) ::AZ::Debug::ProfileScope::EndRegion(AZ_BUDGET_GETTER(budget)()) + #endif // AZ_PROFILER_MACRO_DISABLE #ifndef AZ_PROFILE_INTERVAL_START -# define AZ_PROFILE_INTERVAL_START(...) -# define AZ_PROFILE_INTERVAL_START_COLORED(...) -# define AZ_PROFILE_INTERVAL_END(...) -# define AZ_PROFILE_INTERVAL_SCOPED(...) +#define AZ_PROFILE_INTERVAL_START(...) +#define AZ_PROFILE_INTERVAL_START_COLORED(...) +#define AZ_PROFILE_INTERVAL_END(...) +#define AZ_PROFILE_INTERVAL_SCOPED(...) #endif #ifndef AZ_PROFILE_DATAPOINT -# define AZ_PROFILE_DATAPOINT(...) -# define AZ_PROFILE_DATAPOINT_PERCENT(...) +#define AZ_PROFILE_DATAPOINT(...) +#define AZ_PROFILE_DATAPOINT_PERCENT(...) #endif namespace AZStd @@ -50,344 +57,24 @@ namespace AZStd struct thread_id; // forward declare. This is the same type as AZStd::thread::id } -namespace AZ +namespace AZ::Debug { class ProfileScope { public: - static uint32_t GetSystemID(const char* system); + template + static void BeginRegion([[maybe_unused]] Budget* budget, [[maybe_unused]] const char* eventName, [[maybe_unused]] T const&... args); + + static void EndRegion([[maybe_unused]] Budget* budget); template - static void BeginRegion([[maybe_unused]] const char* system, [[maybe_unused]] const char* eventName, [[maybe_unused]] T const&... args) - { - // TODO: Verification that the supplied system name corresponds to a known budget -#if defined(USE_PIX) - PIXBeginEvent(PIX_COLOR_INDEX(GetSystemID(system) & 0xff), eventName, args...); -#endif - // TODO: injecting instrumentation for other profilers - // NOTE: external profiler registration won't occur inline in a header necessarily in this manner, but the exact mechanism - // will be introduced in a future PR - } + ProfileScope(Budget* budget, char const* eventName, T const&... args); - static void EndRegion() - { -#if defined(USE_PIX) - PIXEndEvent(); -#endif - } + ~ProfileScope(); - template - ProfileScope(const char* system, char const* eventName, T const&... args) - { - BeginRegion(system, eventName, args...); - } - - ~ProfileScope() - { - EndRegion(); - } + private: + Budget* m_budget; }; +} // namespace AZ::Debug - namespace Debug - { - class ProfilerSection; - class ProfilerRegister; - struct ProfilerThreadData; - struct ProfilerData; - - /** - * - */ - class Profiler - { - friend class ProfilerRegister; - friend struct ProfilerData; - public: - /// Max number of threads supported by the profiler. - static const int m_maxNumberOfThreads = 32; - /// Max number of systems supported by the profiler. (We can switch this container if needed) - static const int m_maxNumberOfSystems = 64; - - ~Profiler(); - - struct Descriptor - { - }; - - static bool Create(const Descriptor& desc = Descriptor()); - static void Destroy(); - static bool IsReady() { return s_instance != NULL; } - static Profiler& Instance() { return *s_instance; } - static u64 GetId() { return s_id; } - - /// Increment the use count. - static void AddReference(); - /// Release the use count if 0 a Destroy will be called automatically. - static void ReleaseReference(); - - void ActivateSystem(const char* systemName); - void DeactivateSystem(const char* systemName); - bool IsSystemActive(const char* systemName) const; - bool IsSystemActive(AZ::u32 systemId) const; - int GetNumberOfSystems() const; - const char* GetSystemName(int index) const; - const char* GetSystemName(AZ::u32 systemId) const; - - /** Callback to read a single register. Make sure you read the data as fast as possible. Don't compute inside the callback - * it will lock and hold all the registers that we process. The best is just to read the value and push it into a - * history buffer. - */ - typedef AZStd::function ReadProfileRegisterCB; - /** - * Read register values, make sure the code here is fast and efficient as we are holding a lock. - * provide a callback that will be called for each register. - * You can choose to filter your values by thread or a system. Use this filter only to narrow you samples. Don't - * use it for multiple calls to sort your counters, use the history data. - * It addition keep in mind that you can run this function is parallel, as we only read the values. - */ - void ReadRegisterValues(const ReadProfileRegisterCB& callback, AZ::u32 systemFilter = 0, const AZStd::thread_id* threadFilter = NULL) const; - /** - * This is slow operation that will cause contention try to avoid using it. A better way will be each frame instead of reset to read and store - * register values (this is good for history too) and make the difference that way. - */ - void ResetRegisters(); - - /// You can remove thread data ONLY IF YOU ARE SURE THIS THREAD IS NO LONGER ACTIVE! This will work only is specific cases. - void RemoveThreadData(AZStd::thread_id id); - - private: - /// Register a new system in the profiler. Make sure the proper locks are LOCKED when calling this function (m_threadDataMutex) - bool RegisterSystem(AZ::u32 systemId, const char* name, bool isActive); - /// Unregister a system. Make sure the proper locks are LOCKED when calling this function (m_threadDataMutex) - bool UnregisterSystem(AZ::u32 systemId); - /// Sets the system active/inactive state. Make sure the proper locks are LOCKED when calling this function (m_threadDataMutex) - bool SetSystemState(AZ::u32 systemId, bool isActive); - - Profiler(const Descriptor& desc); - Profiler& operator=(const Profiler&); - - ProfilerData* m_data; ///< Hidden data to reduce the number of header files included; - static Profiler* s_instance; ///< The only instance of the profiler. - static u64 s_id; ///< Profiler unique (over time) id (don't use the pointer as it might be reused). - static int s_useCount; - }; - - /** - * A profiler "virtual" register that contains data about a certain place in the code. - */ - class ProfilerRegister - { - friend class Profiler; - public: - ProfilerRegister() - {} - - enum Type - { - PRT_TIME = 0, ///< Time (members m_time,m_childrenTime,m_calls, m_childrenCalls and m_lastParant are used) register. - PRT_VALUE, ///< Value register - }; - - /// Time register data. - struct TimeData - { - AZ::u64 m_time; ///< Total inclusive time current and children in microseconds. - AZ::u64 m_childrenTime; ///< Time taken by child profilers in microseconds. - AZ::s64 m_calls; ///< Number of calls for this register. - AZ::s64 m_childrenCalls;///< Number of children calls. - ProfilerRegister* m_lastParent; ///< Pointer to the last parent register. - - static AZStd::chrono::microseconds s_startStopOverheadPer1000Calls; ///< Static constant representing a standard start stop overhead per 1000 calls. You can use this to adjust timings. - }; - - /// Value register data. - struct ValuesData - { - AZ::s64 m_value1; - AZ::s64 m_value2; - AZ::s64 m_value3; - AZ::s64 m_value4; - AZ::s64 m_value5; - }; - - static ProfilerRegister* TimerCreateAndStart(const char* systemName, const char* name, ProfilerSection* section, const char* function, int line); - static ProfilerRegister* ValueCreate(const char* systemName, const char* name, const char* function, int line); - void TimerStart(ProfilerSection* section); - - void ValueSet(const AZ::s64& v1); - void ValueSet(const AZ::s64& v1, const AZ::s64& v2); - void ValueSet(const AZ::s64& v1, const AZ::s64& v2, const AZ::s64& v3); - void ValueSet(const AZ::s64& v1, const AZ::s64& v2, const AZ::s64& v3, const AZ::s64& v4); - void ValueSet(const AZ::s64& v1, const AZ::s64& v2, const AZ::s64& v3, const AZ::s64& v4, const AZ::s64& v5); - - void ValueAdd(const AZ::s64& v1); - void ValueAdd(const AZ::s64& v1, const AZ::s64& v2); - void ValueAdd(const AZ::s64& v1, const AZ::s64& v2, const AZ::s64& v3); - void ValueAdd(const AZ::s64& v1, const AZ::s64& v2, const AZ::s64& v3, const AZ::s64& v4); - void ValueAdd(const AZ::s64& v1, const AZ::s64& v2, const AZ::s64& v3, const AZ::s64& v4, const AZ::s64& v5); - - // Dynamic register data - union - { - TimeData m_timeData; - ValuesData m_userValues; - }; - - // Static value data. - const char* m_name; ///< Name of the profiler register. - const char* m_function; ///< Function name in the code. - int m_line; ///< Line number if the code. - AZ::u32 m_systemId; ///< ID of the system this profiler belongs to. - unsigned char m_type : 7; ///< Register type - unsigned char m_isActive : 1; ///< Flag if the profiler is active. - - private: - friend class ProfilerSection; - - static ProfilerRegister* CreateRegister(const char* systemName, const char* name, const char* function, int line, ProfilerRegister::Type type); - - /// Compute static start/stop overhead approximation. You can call this periodically (or not) to update the overhead. - static void TimerComputeStartStopOverhead(); - - void TimerStop(); - - void Reset(); - - ProfilerRegister* GetValueRegisterForThisThread(); - - ProfilerThreadData* m_threadData; ///< Pointer to this entry thread data. - }; - - /** - * Scoped stop register count on destruction. - */ - class ProfilerSection - { - friend class ProfilerRegister; - public: - ProfilerSection() - : m_register(nullptr) - , m_profilerId(AZ::Debug::Profiler::GetId()) - , m_childTime(0) - , m_childCalls(0) - {} - - ~ProfilerSection() - { - // If we have a valid register and the profiler did not change while we were active stop the register. - if (m_register && m_profilerId == AZ::Debug::Profiler::GetId()) - { - m_register->TimerStop(); - } - } - - void Stop() - { - // If we have a valid register and the profiler did not change while we were active stop the register. - if (m_register && m_profilerId == AZ::Debug::Profiler::GetId()) - { - m_register->TimerStop(); - } - m_register = nullptr; - } - private: - ProfilerRegister* m_register; ///< Pointer to the owning profiler register. - u64 m_profilerId; ///< Id of the profiler when we started this section. - AZStd::chrono::system_clock::time_point m_start; ///< Start mark. - AZStd::chrono::microseconds m_childTime; ///< Time spent in child profilers. - int m_childCalls; ///< Number of children calls. - }; - - AZ_FORCE_INLINE ProfilerRegister* ProfilerRegister::GetValueRegisterForThisThread() - { - return this; - } - - AZ_FORCE_INLINE void ProfilerRegister::ValueSet(const AZ::s64& v1) - { - ProfilerRegister* reg = GetValueRegisterForThisThread(); - reg->m_userValues.m_value1 = v1; - } - AZ_FORCE_INLINE void ProfilerRegister::ValueSet(const AZ::s64& v1, const AZ::s64& v2) - { - ProfilerRegister* reg = GetValueRegisterForThisThread(); - reg->m_userValues.m_value1 = v1; - reg->m_userValues.m_value2 = v2; - } - AZ_FORCE_INLINE void ProfilerRegister::ValueSet(const AZ::s64& v1, const AZ::s64& v2, const AZ::s64& v3) - { - ProfilerRegister* reg = GetValueRegisterForThisThread(); - reg->m_userValues.m_value1 = v1; - reg->m_userValues.m_value2 = v2; - reg->m_userValues.m_value3 = v3; - } - AZ_FORCE_INLINE void ProfilerRegister::ValueSet(const AZ::s64& v1, const AZ::s64& v2, const AZ::s64& v3, const AZ::s64& v4) - { - ProfilerRegister* reg = GetValueRegisterForThisThread(); - reg->m_userValues.m_value1 = v1; - reg->m_userValues.m_value2 = v2; - reg->m_userValues.m_value3 = v3; - reg->m_userValues.m_value4 = v4; - } - AZ_FORCE_INLINE void ProfilerRegister::ValueSet(const AZ::s64& v1, const AZ::s64& v2, const AZ::s64& v3, const AZ::s64& v4, const AZ::s64& v5) - { - ProfilerRegister* reg = GetValueRegisterForThisThread(); - reg->m_userValues.m_value1 = v1; - reg->m_userValues.m_value2 = v2; - reg->m_userValues.m_value3 = v3; - reg->m_userValues.m_value4 = v4; - reg->m_userValues.m_value5 = v5; - } - AZ_FORCE_INLINE void ProfilerRegister::ValueAdd(const AZ::s64& v1) - { - ProfilerRegister* reg = GetValueRegisterForThisThread(); - reg->m_userValues.m_value1 += v1; - } - AZ_FORCE_INLINE void ProfilerRegister::ValueAdd(const AZ::s64& v1, const AZ::s64& v2) - { - ProfilerRegister* reg = GetValueRegisterForThisThread(); - reg->m_userValues.m_value1 += v1; - reg->m_userValues.m_value2 += v2; - } - AZ_FORCE_INLINE void ProfilerRegister::ValueAdd(const AZ::s64& v1, const AZ::s64& v2, const AZ::s64& v3) - { - ProfilerRegister* reg = GetValueRegisterForThisThread(); - reg->m_userValues.m_value1 += v1; - reg->m_userValues.m_value2 += v2; - reg->m_userValues.m_value3 += v3; - } - AZ_FORCE_INLINE void ProfilerRegister::ValueAdd(const AZ::s64& v1, const AZ::s64& v2, const AZ::s64& v3, const AZ::s64& v4) - { - ProfilerRegister* reg = GetValueRegisterForThisThread(); - reg->m_userValues.m_value1 += v1; - reg->m_userValues.m_value2 += v2; - reg->m_userValues.m_value3 += v3; - reg->m_userValues.m_value4 += v4; - } - AZ_FORCE_INLINE void ProfilerRegister::ValueAdd(const AZ::s64& v1, const AZ::s64& v2, const AZ::s64& v3, const AZ::s64& v4, const AZ::s64& v5) - { - ProfilerRegister* reg = GetValueRegisterForThisThread(); - reg->m_userValues.m_value1 += v1; - reg->m_userValues.m_value2 += v2; - reg->m_userValues.m_value3 += v3; - reg->m_userValues.m_value4 += v4; - reg->m_userValues.m_value5 += v5; - } - } // namespace Debug - - namespace Internal - { - struct RegisterData - { - AZ::Debug::ProfilerRegister* m_register; ///< Pointer to the register data. - AZ::u64 m_profilerId; ///< Profiler ID which create the \ref register data. - }; - } -} // namespace AZ - -#ifdef USE_PIX -// The pix3 header unfortunately brings in other Windows macros we need to undef -#undef DeleteFile -#undef LoadImage -#undef GetCurrentTime -#endif +#include diff --git a/Code/Framework/AzCore/AzCore/Debug/Profiler.inl b/Code/Framework/AzCore/AzCore/Debug/Profiler.inl new file mode 100644 index 0000000000..8ca8368ce1 --- /dev/null +++ b/Code/Framework/AzCore/AzCore/Debug/Profiler.inl @@ -0,0 +1,57 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +namespace AZ::Debug +{ + template + void ProfileScope::BeginRegion( + [[maybe_unused]] Budget* budget, [[maybe_unused]] const char* eventName, [[maybe_unused]] T const&... args) + { + if (!budget) + { + return; + } +#if !defined(_RELEASE) + // TODO: Verification that the supplied system name corresponds to a known budget +#if defined(USE_PIX) + PIXBeginEvent(PIX_COLOR_INDEX(budget->Crc() & 0xff), eventName, args...); +#endif + budget->BeginProfileRegion(); +// TODO: injecting instrumentation for other profilers +// NOTE: external profiler registration won't occur inline in a header necessarily in this manner, but the exact mechanism +// will be introduced in a future PR +#endif + } + + inline void ProfileScope::EndRegion([[maybe_unused]] Budget* budget) + { + if (!budget) + { + return; + } +#if !defined(_RELEASE) + budget->EndProfileRegion(); +#if defined(USE_PIX) + PIXEndEvent(); +#endif +#endif + } + + template + ProfileScope::ProfileScope(Budget* budget, char const* eventName, T const&... args) + : m_budget{ budget } + { + BeginRegion(budget, eventName, args...); + } + + inline ProfileScope::~ProfileScope() + { + EndRegion(m_budget); + } + +} // namespace AZ::Debug diff --git a/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.cpp b/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.cpp deleted file mode 100644 index a2dd2f4f5d..0000000000 --- a/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.cpp +++ /dev/null @@ -1,310 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include -#include - -#include -#include -#include - -namespace AZ -{ - namespace Debug - { - //========================================================================= - // ProfilerDriller - // [7/9/2013] - //========================================================================= - ProfilerDriller::ProfilerDriller() - { - AZStd::ThreadDrillerEventBus::Handler::BusConnect(); - } - - //========================================================================= - // ~ProfilerDriller - // [7/9/2013] - //========================================================================= - ProfilerDriller::~ProfilerDriller() - { - AZStd::ThreadDrillerEventBus::Handler::BusDisconnect(); - } - - //========================================================================= - // Start - // [5/24/2013] - //========================================================================= - void ProfilerDriller::Start(const Param* params, int numParams) - { - for (int i = 0; i < m_numberOfSystemFilters; ++i) - { - m_systemFilters[i].desc = "SystemID of the system which counters we are interested in"; - m_systemFilters[i].type = Param::PT_INT; - m_systemFilters[i].value = 0; - } - - // Copy valid filters. - m_numberOfValidFilters = 0; - if (params) - { - for (int i = 0; i < numParams; ++i) - { - if (params[i].type == Param::PT_INT && params[i].value != 0) - { - m_systemFilters[m_numberOfValidFilters++].value = params[i].value; - } - } - } - - // output current threads - for (ThreadArrayType::iterator it = m_threads.begin(); it != m_threads.end(); ++it) - { - OutputThreadEnter(*it); - } - - ProfilerDrillerBus::Handler::BusConnect(); - - if (!Profiler::IsReady()) - { - Profiler::Create(); - } - - Profiler::AddReference(); - } - - //========================================================================= - // Stop - // [5/24/2013] - //========================================================================= - void ProfilerDriller::Stop() - { - Profiler::ReleaseReference(); - ProfilerDrillerBus::Handler::BusDisconnect(); - } - - //========================================================================= - // OnError - // [2/8/2013] - //========================================================================= - void ProfilerDriller::Update() - { - // \note We could add thread_id in addition to the System ID, but I can't foresee many cases where we would like to profile only a specific thread. - if (m_numberOfValidFilters) - { - for (int iFilter = 0; iFilter < m_numberOfValidFilters; ++iFilter) - { - AZ::u32 systemFilter = *reinterpret_cast(&m_systemFilters[iFilter].value); - Profiler::Instance().ReadRegisterValues(AZStd::bind(&ProfilerDriller::ReadProfilerRegisters, this, AZStd::placeholders::_1, AZStd::placeholders::_2), systemFilter); - } - } - else - { - Profiler::Instance().ReadRegisterValues(AZStd::bind(&ProfilerDriller::ReadProfilerRegisters, this, AZStd::placeholders::_1, AZStd::placeholders::_2), 0); - } - } - - //========================================================================= - // ReadProfilerRegisters - // [2/11/2013] - //========================================================================= - bool ProfilerDriller::ReadProfilerRegisters(const ProfilerRegister& reg, const AZStd::thread_id& id) - { - (void)id; - m_output->BeginTag(AZ_CRC("ProfilerDriller", 0x172c5268)); - m_output->BeginTag(AZ_CRC("UpdateRegister", 0x6c00b890)); - m_output->Write(AZ_CRC("Id", 0xbf396750), ®); - // Send only the data which is changing - switch (reg.m_type) - { - case ProfilerRegister::PRT_TIME: - { - m_output->Write(AZ_CRC("Time", 0x6f949845), reg.m_timeData.m_time); - m_output->Write(AZ_CRC("ChildrenTime", 0x46162d3f), reg.m_timeData.m_childrenTime); - m_output->Write(AZ_CRC("Calls", 0xdaa35c8f), reg.m_timeData.m_calls); - m_output->Write(AZ_CRC("ChildrenCalls", 0x6a5a4618), reg.m_timeData.m_childrenCalls); - m_output->Write(AZ_CRC("ParentId", 0x856a684c), reg.m_timeData.m_lastParent); - } break; - case ProfilerRegister::PRT_VALUE: - { - m_output->Write(AZ_CRC("Value1", 0xa2756c5a), reg.m_userValues.m_value1); - m_output->Write(AZ_CRC("Value2", 0x3b7c3de0), reg.m_userValues.m_value2); - m_output->Write(AZ_CRC("Value3", 0x4c7b0d76), reg.m_userValues.m_value3); - m_output->Write(AZ_CRC("Value4", 0xd21f98d5), reg.m_userValues.m_value4); - m_output->Write(AZ_CRC("Value5", 0xa518a843), reg.m_userValues.m_value5); - } break; - } - m_output->EndTag(AZ_CRC("UpdateRegister", 0x6c00b890)); - m_output->EndTag(AZ_CRC("ProfilerDriller", 0x172c5268)); - - return true; - } - - //========================================================================= - // OnThreadEnter - // [5/31/2013] - //========================================================================= - void ProfilerDriller::OnThreadEnter(const AZStd::thread_id& id, const AZStd::thread_desc* desc) - { - m_threads.push_back(); - ThreadInfo& info = m_threads.back(); - info.m_id = (size_t)id.m_id; - if (desc) - { - info.m_name = desc->m_name; - info.m_cpuId = desc->m_cpuId; - info.m_priority = desc->m_priority; - info.m_stackSize = desc->m_stackSize; - } - else - { - info.m_name = nullptr; - info.m_cpuId = -1; - info.m_priority = -100000; - info.m_stackSize = 0; - } - - if (m_output) - { - OutputThreadEnter(info); - } - } - - //========================================================================= - // OnThreadExit - // [5/31/2013] - //========================================================================= - void ProfilerDriller::OnThreadExit(const AZStd::thread_id& id) - { - ThreadArrayType::iterator it = m_threads.begin(); - while (it != m_threads.end()) - { - if (it->m_id == (size_t)id.m_id) - { - break; - } - ++it; - } - - if (it != m_threads.end()) - { - if (m_output) - { - OutputThreadExit(*it); - } - - m_threads.erase(it); - } - } - - //========================================================================= - // OutputThreadEnter - // [7/9/2013] - //========================================================================= - void ProfilerDriller::OutputThreadEnter(const ThreadInfo& threadInfo) - { - m_output->BeginTag(AZ_CRC("ProfilerDriller", 0x172c5268)); - m_output->BeginTag(AZ_CRC("ThreadEnter", 0x60e4acfb)); - m_output->Write(AZ_CRC("Id", 0xbf396750), threadInfo.m_id); - if (threadInfo.m_name) - { - m_output->Write(AZ_CRC("Name", 0x5e237e06), threadInfo.m_name); - } - m_output->Write(AZ_CRC("CpuId", 0xdf558508), threadInfo.m_cpuId); - m_output->Write(AZ_CRC("Priority", 0x62a6dc27), threadInfo.m_priority); - m_output->Write(AZ_CRC("StackSize", 0x9cfaf35b), threadInfo.m_stackSize); - m_output->EndTag(AZ_CRC("ThreadEnter", 0x60e4acfb)); - m_output->EndTag(AZ_CRC("ProfilerDriller", 0x172c5268)); - } - - //========================================================================= - // OutputThreadExit - // [7/9/2013] - //========================================================================= - void ProfilerDriller::OutputThreadExit(const ThreadInfo& threadInfo) - { - m_output->BeginTag(AZ_CRC("ProfilerDriller", 0x172c5268)); - m_output->BeginTag(AZ_CRC("OnThreadExit", 0x16042db9)); - m_output->Write(AZ_CRC("Id", 0xbf396750), threadInfo.m_id); - m_output->EndTag(AZ_CRC("OnThreadExit", 0x16042db9)); - m_output->EndTag(AZ_CRC("ProfilerDriller", 0x172c5268)); - } - - //========================================================================= - // OnRegisterSystem - // [5/31/2013] - //========================================================================= - void ProfilerDriller::OnRegisterSystem(AZ::u32 id, const char* name) - { - m_output->BeginTag(AZ_CRC("ProfilerDriller", 0x172c5268)); - m_output->BeginTag(AZ_CRC("RegisterSystem", 0x957739ef)); - m_output->Write(AZ_CRC("Id", 0xbf396750), id); - m_output->Write(AZ_CRC("Name", 0x5e237e06), name); - m_output->EndTag(AZ_CRC("RegisterSystem", 0x957739ef)); - m_output->EndTag(AZ_CRC("ProfilerDriller", 0x172c5268)); - } - - //========================================================================= - // OnUnregisterSystem - // [5/31/2013] - //========================================================================= - void ProfilerDriller::OnUnregisterSystem(AZ::u32 id) - { - m_output->BeginTag(AZ_CRC("ProfilerDriller", 0x172c5268)); - m_output->BeginTag(AZ_CRC("UnregisterSystem", 0xa20538e4)); - m_output->Write(AZ_CRC("Id", 0xbf396750), id); - m_output->EndTag(AZ_CRC("UnregisterSystem", 0xa20538e4)); - m_output->EndTag(AZ_CRC("ProfilerDriller", 0x172c5268)); - } - - //========================================================================= - // OnNewRegister - // [5/31/2013] - //========================================================================= - void ProfilerDriller::OnNewRegister(const ProfilerRegister& reg, const AZStd::thread_id& threadId) - { - m_output->BeginTag(AZ_CRC("ProfilerDriller", 0x172c5268)); - m_output->BeginTag(AZ_CRC("NewRegister", 0xf0f2f287)); - m_output->Write(AZ_CRC("Id", 0xbf396750), ®); - m_output->Write(AZ_CRC("ThreadId", 0xd0fd9043), threadId.m_id); - if (reg.m_name) - { - m_output->Write(AZ_CRC("Name", 0x5e237e06), reg.m_name); - } - if (reg.m_function) - { - m_output->Write(AZ_CRC("Function", 0xcaae163d), reg.m_function); - } - m_output->Write(AZ_CRC("Line", 0xd114b4f6), reg.m_line); - m_output->Write(AZ_CRC("SystemId", 0x0dfecf6f), reg.m_systemId); - m_output->Write(AZ_CRC("Type", 0x8cde5729), reg.m_type); - - switch (reg.m_type) - { - case ProfilerRegister::PRT_TIME: - { - m_output->Write(AZ_CRC("Time", 0x6f949845), reg.m_timeData.m_time); - m_output->Write(AZ_CRC("ChildrenTime", 0x46162d3f), reg.m_timeData.m_childrenTime); - m_output->Write(AZ_CRC("Calls", 0xdaa35c8f), reg.m_timeData.m_calls); - m_output->Write(AZ_CRC("ChildrenCalls", 0x6a5a4618), reg.m_timeData.m_childrenCalls); - m_output->Write(AZ_CRC("ParentId", 0x856a684c), reg.m_timeData.m_lastParent); - } break; - case ProfilerRegister::PRT_VALUE: - { - m_output->Write(AZ_CRC("Value1", 0xa2756c5a), reg.m_userValues.m_value1); - m_output->Write(AZ_CRC("Value2", 0x3b7c3de0), reg.m_userValues.m_value2); - m_output->Write(AZ_CRC("Value3", 0x4c7b0d76), reg.m_userValues.m_value3); - m_output->Write(AZ_CRC("Value4", 0xd21f98d5), reg.m_userValues.m_value4); - m_output->Write(AZ_CRC("Value5", 0xa518a843), reg.m_userValues.m_value5); - } break; - } - m_output->EndTag(AZ_CRC("NewRegister", 0xf0f2f287)); - m_output->EndTag(AZ_CRC("ProfilerDriller", 0x172c5268)); - } - } // namespace Debug -} // namespace AZ diff --git a/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.h b/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.h deleted file mode 100644 index abcf3f08e7..0000000000 --- a/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.h +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#ifndef AZCORE_PROFILER_DRILLER_H -#define AZCORE_PROFILER_DRILLER_H 1 - -#include -#include -#include - -namespace AZStd -{ - struct thread_id; - struct thread_desc; -} - -namespace AZ -{ - namespace Debug - { - struct ProfilerSystemData; - class ProfilerRegister; - - /** - * ProfilerDriller or we can just make a Profiler driller and read the registers ourself. - */ - class ProfilerDriller - : public Driller - , public ProfilerDrillerBus::Handler - , public AZStd::ThreadDrillerEventBus::Handler - { - struct ThreadInfo - { - AZ::u64 m_id; - AZ::u32 m_stackSize; - AZ::s32 m_priority; - AZ::s32 m_cpuId; - const char* m_name; - }; - typedef vector::type ThreadArrayType; - - public: - - AZ_CLASS_ALLOCATOR(ProfilerDriller, OSAllocator, 0) - - ProfilerDriller(); - virtual ~ProfilerDriller(); - - protected: - ////////////////////////////////////////////////////////////////////////// - // Driller - virtual const char* GroupName() const { return "SystemDrillers"; } - virtual const char* GetName() const { return "ProfilerDriller"; } - virtual const char* GetDescription() const { return "Collects data from all available profile registers."; } - virtual int GetNumParams() const { return m_numberOfSystemFilters; } - virtual const Param* GetParam(int index) const { AZ_Assert(index >= 0 && index < m_numberOfSystemFilters, "Invalid index"); return &m_systemFilters[index]; } - virtual void Start(const Param* params = NULL, int numParams = 0); - virtual void Stop(); - virtual void Update(); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // Thread driller event bus - /// Called when we enter a thread, optional thread_desc is provided when the use provides one. - virtual void OnThreadEnter(const AZStd::thread_id& id, const AZStd::thread_desc* desc); - /// Called when we exit a thread. - virtual void OnThreadExit(const AZStd::thread_id& id); - - /// Output thread enter to stream. - void OutputThreadEnter(const ThreadInfo& threadInfo); - /// Output thread exit to stream. - void OutputThreadExit(const ThreadInfo& threadInfo); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // Profiler Driller bus - virtual void OnRegisterSystem(AZ::u32 id, const char* name); - - virtual void OnUnregisterSystem(AZ::u32 id); - - virtual void OnNewRegister(const ProfilerRegister& reg, const AZStd::thread_id& threadId); - ////////////////////////////////////////////////////////////////////////// - - /// Read profile registers callback. - bool ReadProfilerRegisters(const ProfilerRegister& reg, const AZStd::thread_id& id); - - - - static const int m_numberOfSystemFilters = 16; - int m_numberOfValidFilters = 0 ; ///< Number of valid filter set when the driller was created. - Param m_systemFilters[m_numberOfSystemFilters]; ///< If != 0, it's a ID of specific System we would like to drill. - ThreadArrayType m_threads; - }; - } -} // namespace AZ - -#endif // AZCORE_PROFILER_DRILLER_H -#pragma once diff --git a/Code/Framework/AzCore/AzCore/Debug/ProfilerDrillerBus.h b/Code/Framework/AzCore/AzCore/Debug/ProfilerDrillerBus.h deleted file mode 100644 index 835c06a2ac..0000000000 --- a/Code/Framework/AzCore/AzCore/Debug/ProfilerDrillerBus.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#ifndef AZCORE_PROFILER_DRILLER_BUS_H -#define AZCORE_PROFILER_DRILLER_BUS_H - -#include - -namespace AZStd -{ - struct thread_id; -} - -namespace AZ -{ - namespace Debug - { - class ProfilerRegister; - - /** - * ProfilerDrillerInterface driller profiler event interface, that records events from the profiler system. - */ - class ProfilerDrillerInterface - : public DrillerEBusTraits - { - public: - virtual ~ProfilerDrillerInterface() {} - - virtual void OnRegisterSystem(AZ::u32 id, const char* name) = 0; - - virtual void OnUnregisterSystem(AZ::u32 id) = 0; - - virtual void OnNewRegister(const ProfilerRegister& reg, const AZStd::thread_id& threadId) = 0; - }; - - typedef AZ::EBus ProfilerDrillerBus; - } -} - -#endif // AZCORE_PROFILER_DRILLER_BUS_H -#pragma once diff --git a/Code/Framework/AzCore/AzCore/Debug/Trace.cpp b/Code/Framework/AzCore/AzCore/Debug/Trace.cpp index bd3b12a3b8..14504cc282 100644 --- a/Code/Framework/AzCore/AzCore/Debug/Trace.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/Trace.cpp @@ -25,6 +25,7 @@ #include #include #include +#include namespace AZ { @@ -33,6 +34,7 @@ namespace AZ namespace Platform { #if defined(AZ_ENABLE_DEBUG_TOOLS) + bool AttachDebugger(); bool IsDebuggerPresent(); void HandleExceptions(bool isEnabled); void DebugBreak(); @@ -66,7 +68,6 @@ namespace AZ static const int assertLevel_log = 1; static const int assertLevel_nativeUI = 2; static const int assertLevel_crash = 3; - static const int logLevel_errorWarning = 1; static const int logLevel_full = 2; static AZ::EnvironmentVariable> g_ignoredAsserts; static AZ::EnvironmentVariable g_assertVerbosityLevel; @@ -142,6 +143,42 @@ namespace AZ #endif } + bool + Trace::AttachDebugger() + { +#if defined(AZ_ENABLE_DEBUG_TOOLS) + return Platform::AttachDebugger(); +#else + return false; +#endif + } + + bool + Trace::WaitForDebugger([[maybe_unused]] float timeoutSeconds/*=-1.f*/) + { +#if defined(AZ_ENABLE_DEBUG_TOOLS) + using AZStd::chrono::system_clock; + using AZStd::chrono::time_point; + using AZStd::chrono::milliseconds; + + milliseconds timeoutMs = milliseconds(aznumeric_cast(timeoutSeconds * 1000)); + system_clock clock; + time_point start = clock.now(); + auto hasTimedOut = [&clock, start, timeoutMs]() + { + return timeoutMs.count() >= 0 && (clock.now() - start) >= timeoutMs; + }; + + while (!AZ::Debug::Trace::IsDebuggerPresent() && !hasTimedOut()) + { + AZStd::this_thread::sleep_for(milliseconds(1)); + } + return AZ::Debug::Trace::IsDebuggerPresent(); +#else + return false; +#endif + } + //========================================================================= // HandleExceptions // [8/3/2009] @@ -181,7 +218,7 @@ namespace AZ void Debug::Trace::Crash() { - int* p = 0; + int* p = nullptr; *p = 1; } diff --git a/Code/Framework/AzCore/AzCore/Debug/Trace.h b/Code/Framework/AzCore/AzCore/Debug/Trace.h index bae074281c..26c331e1e4 100644 --- a/Code/Framework/AzCore/AzCore/Debug/Trace.h +++ b/Code/Framework/AzCore/AzCore/Debug/Trace.h @@ -19,7 +19,7 @@ namespace AZ { void OutputToDebugger(const char* window, const char* message); } - + /// Global instance to the tracer. extern class Trace g_tracer; @@ -41,7 +41,7 @@ namespace AZ static void Destroy(); static int GetAssertVerbosityLevel(); static void SetAssertVerbosityLevel(int level); - + /** * Returns the default string used for a system window. * It can be useful for Trace message handlers to easily validate if the window they received is the fallback window used by this class, @@ -49,6 +49,8 @@ namespace AZ */ static const char* GetDefaultSystemWindow(); static bool IsDebuggerPresent(); + static bool AttachDebugger(); + static bool WaitForDebugger(float timeoutSeconds = -1.f); /// True or false if we want to handle system exceptions. static void HandleExceptions(bool isEnabled); @@ -107,7 +109,7 @@ namespace AZ * Correct usage: * AZ_Assert(false, "Fail always"); */ - + namespace AZ { namespace TraceInternal @@ -119,7 +121,7 @@ namespace AZ static constexpr ExpressionValidResult value = ExpressionValidResult::Valid; }; template<> - struct ExpressionIsValid + struct ExpressionIsValid { static constexpr ExpressionValidResult value = ExpressionValidResult::Valid; }; @@ -226,7 +228,7 @@ namespace AZ { \ AZ::Debug::Trace::Instance().Printf(window, __VA_ARGS__); \ } - + //! The AZ_TrancePrintfOnce macro output the result of the format string only once for each use of the macro //! It does not take into account the result of the format string to determine whether to output the string or not diff --git a/Code/Framework/AzCore/AzCore/Driller/Driller.cpp b/Code/Framework/AzCore/AzCore/Driller/Driller.cpp index 84f0fe3158..41abd7793e 100644 --- a/Code/Framework/AzCore/AzCore/Driller/Driller.cpp +++ b/Code/Framework/AzCore/AzCore/Driller/Driller.cpp @@ -208,7 +208,7 @@ namespace AZ { if (drillerList.empty()) { - return NULL; + return nullptr; } m_sessions.push_back(); @@ -246,21 +246,21 @@ namespace AZ AZStd::lock_guard lock(DrillerEBusMutex::GetMutex()); ///< Make sure no driller is writing to the stream for (DrillerListType::const_iterator iDriller = drillerList.begin(); iDriller != drillerList.end(); ++iDriller) { - Driller* driller = NULL; + Driller* driller = nullptr; const DrillerInfo& di = *iDriller; for (size_t iDesc = 0; iDesc < m_drillers.size(); ++iDesc) { if (m_drillers[iDesc]->GetId() == di.id) { driller = m_drillers[iDesc]; - AZ_Assert(driller->m_output == NULL, "Driller with id %08x is already have an output stream %p (currently we support only 1 at a time)", di.id, driller->m_output); + AZ_Assert(driller->m_output == nullptr, "Driller with id %08x is already have an output stream %p (currently we support only 1 at a time)", di.id, driller->m_output); driller->m_output = &output; driller->Start(di.params.data(), static_cast(di.params.size())); s.drillers.push_back(driller); break; } } - AZ_Warning("Driller", driller != NULL, "We can't start a driller with id %d!", di.id); + AZ_Warning("Driller", driller != nullptr, "We can't start a driller with id %d!", di.id); } } return &s; @@ -293,7 +293,7 @@ namespace AZ for (size_t i = 0; i < s.drillers.size(); ++i) { s.drillers[i]->Stop(); - s.drillers[i]->m_output = NULL; + s.drillers[i]->m_output = nullptr; } } s.output->EndTag(AZ_CRC("Frame", 0xb5f83ccd)); diff --git a/Code/Framework/AzCore/AzCore/Driller/Stream.cpp b/Code/Framework/AzCore/AzCore/Driller/Stream.cpp index f43e337bb8..761f964561 100644 --- a/Code/Framework/AzCore/AzCore/Driller/Stream.cpp +++ b/Code/Framework/AzCore/AzCore/Driller/Stream.cpp @@ -677,7 +677,7 @@ namespace AZ AZStd::endian_swap(crc32); } stringPtr = m_stringPool->Find(crc32); - AZ_Assert(stringPtr != NULL, "Failed to find string with id 0x%08x in the string pool, proper stream read is impossible!", crc32); + AZ_Assert(stringPtr != nullptr, "Failed to find string with id 0x%08x in the string pool, proper stream read is impossible!", crc32); stringLength = static_cast(strlen(stringPtr)); } else if (m_isPooledString) @@ -710,7 +710,7 @@ namespace AZ //========================================================================= const DrillerDOMParser::Node* DrillerDOMParser::Node::GetTag(u32 tagName) const { - const Node* tagNode = NULL; + const Node* tagNode = nullptr; for (Node::NodeListType::const_iterator i = m_tags.begin(); i != m_tags.end(); ++i) { if ((*i).m_name == tagName) @@ -728,7 +728,7 @@ namespace AZ //========================================================================= const DrillerDOMParser::Data* DrillerDOMParser::Node::GetData(u32 dataName) const { - const Data* dataNode = NULL; + const Data* dataNode = nullptr; for (Node::DataListType::const_iterator i = m_data.begin(); i != m_data.end(); ++i) { if (i->m_name == dataName) @@ -749,7 +749,7 @@ namespace AZ , m_isPersistentInputData(isPersistentInputData) { m_root.m_name = 0; - m_root.m_parent = NULL; + m_root.m_parent = nullptr; m_topNode = &m_root; } static int g_numFree = 0; @@ -850,14 +850,14 @@ namespace AZ return; } - DrillerHandlerParser* childHandler = NULL; + DrillerHandlerParser* childHandler = nullptr; DrillerHandlerParser* currentHandler = m_stack.back(); if (isOpen) { - if (currentHandler != NULL) + if (currentHandler != nullptr) { childHandler = currentHandler->OnEnterTag(name); - AZ_Warning("Driller", !currentHandler->IsWarnOnUnsupportedTags() || childHandler != NULL, "Could not find handler for tag 0x%08x", name); + AZ_Warning("Driller", !currentHandler->IsWarnOnUnsupportedTags() || childHandler != nullptr, "Could not find handler for tag 0x%08x", name); } m_stack.push_back(childHandler); } diff --git a/Code/Framework/AzCore/AzCore/EBus/BusImpl.h b/Code/Framework/AzCore/AzCore/EBus/BusImpl.h index 882deaad01..8e655c0525 100644 --- a/Code/Framework/AzCore/AzCore/EBus/BusImpl.h +++ b/Code/Framework/AzCore/AzCore/EBus/BusImpl.h @@ -655,7 +655,7 @@ namespace AZ static void Validate() {} }; - template > + template struct ArgumentValidatorHelper { constexpr static void Validate() @@ -674,13 +674,6 @@ namespace AZ } }; - // bind has already copied/bound its arguments, we can't validate them further in any reasonable way - template - struct ArgumentValidatorHelper - { - constexpr static void Validate() {} - }; - template struct QueueFunctionArgumentValidator { diff --git a/Code/Framework/AzCore/AzCore/IO/CompressorZLib.cpp b/Code/Framework/AzCore/AzCore/IO/CompressorZLib.cpp index a61cdb1133..f973c0e95a 100644 --- a/Code/Framework/AzCore/AzCore/IO/CompressorZLib.cpp +++ b/Code/Framework/AzCore/AzCore/IO/CompressorZLib.cpp @@ -22,10 +22,10 @@ namespace AZ // [12/13/2012] //========================================================================= CompressorZLib::CompressorZLib(unsigned int decompressionCachePerStream, unsigned int dataBufferSize) - : m_lastReadStream(NULL) + : m_lastReadStream(nullptr) , m_lastReadStreamOffset(0) , m_lastReadStreamSize(0) - , m_compressedDataBuffer(NULL) + , m_compressedDataBuffer(nullptr) , m_compressedDataBufferSize(dataBufferSize) , m_compressedDataBufferUseCount(0) , m_decompressionCachePerStream(decompressionCachePerStream) @@ -63,7 +63,7 @@ namespace AZ //========================================================================= bool CompressorZLib::ReadHeaderAndData(CompressorStream* stream, AZ::u8* data, unsigned int dataSize) { - if (stream->GetCompressorData() != NULL) // we already have compressor data + if (stream->GetCompressorData() != nullptr) // we already have compressor data { return false; } @@ -347,7 +347,7 @@ namespace AZ AZ_Assert(stream && stream->GetCompressorData(), "This stream doesn't have compression enabled! Call Stream::WriteCompressed after you create the file!"); AZ_Assert(offset == SizeType(-1) || offset == stream->GetCurPos(), "We can write compressed data only at the end of the stream!"); - m_lastReadStream = NULL; // invalidate last read position, otherwise m_dataBuffer will be corrupted (as we are about to write in it). + m_lastReadStream = nullptr; // invalidate last read position, otherwise m_dataBuffer will be corrupted (as we are about to write in it). CompressorZLibData* zlibData = static_cast(stream->GetCompressorData()); AZ_Assert(!zlibData->m_zlib.IsDecompressorStarted(), "You can't write while reading/decompressing a compressed stream!"); @@ -398,13 +398,13 @@ namespace AZ AZ_Assert(stream && stream->GetCompressorData(), "This stream doesn't have compression enabled! Call Stream::WriteCompressed after you create the file!"); CompressorZLibData* zlibData = static_cast(stream->GetCompressorData()); - m_lastReadStream = NULL; // invalidate last read position, otherwise m_dataBuffer will be corrupted (as we are about to write in it). + m_lastReadStream = nullptr; // invalidate last read position, otherwise m_dataBuffer will be corrupted (as we are about to write in it). unsigned int compressedSize; unsigned int dataToCompress = 0; do { - compressedSize = zlibData->m_zlib.Compress(NULL, dataToCompress, m_compressedDataBuffer, m_compressedDataBufferSize, ZLib::FT_FULL_FLUSH); + compressedSize = zlibData->m_zlib.Compress(nullptr, dataToCompress, m_compressedDataBuffer, m_compressedDataBufferSize, ZLib::FT_FULL_FLUSH); if (compressedSize) { GenericStream* baseStream = stream->GetWrappedStream(); @@ -429,7 +429,7 @@ namespace AZ //========================================================================= bool CompressorZLib::StartCompressor(CompressorStream* stream, int compressionLevel, SizeType autoSeekDataSize) { - AZ_Assert(stream && stream->GetCompressorData() == NULL, "Stream has compressor already enabled!"); + AZ_Assert(stream && stream->GetCompressorData() == nullptr, "Stream has compressor already enabled!"); AcquireDataBuffer(); @@ -470,14 +470,14 @@ namespace AZ bool result = true; if (zlibData->m_zlib.IsCompressorStarted()) { - m_lastReadStream = NULL; // invalidate last read position, otherwise m_dataBuffer will be corrupted (as we are about to write in it). + m_lastReadStream = nullptr; // invalidate last read position, otherwise m_dataBuffer will be corrupted (as we are about to write in it). // flush all compressed data unsigned int compressedSize; unsigned int dataToCompress = 0; do { - compressedSize = zlibData->m_zlib.Compress(NULL, dataToCompress, m_compressedDataBuffer, m_compressedDataBufferSize, ZLib::FT_FINISH); + compressedSize = zlibData->m_zlib.Compress(nullptr, dataToCompress, m_compressedDataBuffer, m_compressedDataBufferSize, ZLib::FT_FINISH); if (compressedSize) { baseStream->Write(compressedSize, m_compressedDataBuffer); @@ -502,7 +502,7 @@ namespace AZ { if (m_lastReadStream == stream) { - m_lastReadStream = NULL; // invalidate the data in m_dataBuffer if it was from the current stream. + m_lastReadStream = nullptr; // invalidate the data in m_dataBuffer if it was from the current stream. } } @@ -525,11 +525,11 @@ namespace AZ //========================================================================= void CompressorZLib::AcquireDataBuffer() { - if (m_compressedDataBuffer == NULL) + if (m_compressedDataBuffer == nullptr) { AZ_Assert(m_compressedDataBufferUseCount == 0, "Buffer usecount should be 0 if the buffer is NULL"); m_compressedDataBuffer = reinterpret_cast(azmalloc(m_compressedDataBufferSize, m_CompressedDataBufferAlignment, AZ::SystemAllocator, "CompressorZLib")); - m_lastReadStream = NULL; // reset the cache info in the m_dataBuffer + m_lastReadStream = nullptr; // reset the cache info in the m_dataBuffer } ++m_compressedDataBufferUseCount; } @@ -543,10 +543,10 @@ namespace AZ --m_compressedDataBufferUseCount; if (m_compressedDataBufferUseCount == 0) { - AZ_Assert(m_compressedDataBuffer != NULL, "Invalid data buffer! We should have a non null pointer!"); + AZ_Assert(m_compressedDataBuffer != nullptr, "Invalid data buffer! We should have a non null pointer!"); azfree(m_compressedDataBuffer, AZ::SystemAllocator, m_compressedDataBufferSize, m_CompressedDataBufferAlignment); - m_compressedDataBuffer = NULL; - m_lastReadStream = NULL; // reset the cache info in the m_dataBuffer + m_compressedDataBuffer = nullptr; + m_lastReadStream = nullptr; // reset the cache info in the m_dataBuffer } } } // namespace IO diff --git a/Code/Framework/AzCore/AzCore/IO/FileIO.cpp b/Code/Framework/AzCore/AzCore/IO/FileIO.cpp index a6ce8cf101..837aca8d84 100644 --- a/Code/Framework/AzCore/AzCore/IO/FileIO.cpp +++ b/Code/Framework/AzCore/AzCore/IO/FileIO.cpp @@ -426,7 +426,6 @@ namespace AZ void FileIOStream::Seek(OffsetType bytes, SeekMode mode) { - AZ_PROFILE_SCOPE(AzCore, "FileIO Seek: %s", m_filename.c_str()); AZ_Assert(FileIOBase::GetInstance(), "FileIO is not initialized."); AZ_Assert(IsOpen(), "Cannot seek on a FileIOStream that is not open."); @@ -454,7 +453,6 @@ namespace AZ SizeType FileIOStream::Read(SizeType bytes, void* oBuffer) { - AZ_PROFILE_SCOPE(AzCore, "FileIO Read: %s", m_filename.c_str()); AZ_Assert(FileIOBase::GetInstance(), "FileIO is not initialized."); AZ_Assert(IsOpen(), "Cannot read from a FileIOStream that is not open."); diff --git a/Code/Framework/AzCore/AzCore/IO/Path/Path.inl b/Code/Framework/AzCore/AzCore/IO/Path/Path.inl index 309a4fa050..6354324136 100644 --- a/Code/Framework/AzCore/AzCore/IO/Path/Path.inl +++ b/Code/Framework/AzCore/AzCore/IO/Path/Path.inl @@ -11,6 +11,7 @@ #include #include #include +#include // extern instantiations of Path templates to prevent implicit instantiations namespace AZ::IO @@ -92,11 +93,23 @@ namespace AZ::IO::Internal constexpr auto ConsumeRootName(InputIt entryBeginIter, InputIt entryEndIter, const char preferredSeparator) -> AZStd::enable_if_t, InputIt> { - if (preferredSeparator == '/') + if (preferredSeparator == PosixPathSeparator) { // If the preferred separator is forward slash the parser is in posix path - // parsing mode, which doesn't have a root name + // parsing mode, which doesn't have a root name, + // unless we're on a posix platform that uses a custom path root separator + #if defined(AZ_TRAIT_CUSTOM_PATH_ROOT_SEPARATOR) + const AZStd::string_view path{ entryBeginIter, entryEndIter }; + const auto positionOfPathSeparator = path.find(AZ_TRAIT_CUSTOM_PATH_ROOT_SEPARATOR); + if (positionOfPathSeparator == AZStd::string_view::npos) + { + return entryBeginIter; + } + const AZStd::string_view rootName{ path.substr(0, positionOfPathSeparator + 1) }; + return AZStd::next(entryBeginIter, rootName.size()); + #else return entryBeginIter; + #endif } else { @@ -185,13 +198,18 @@ namespace AZ::IO::Internal template >> static constexpr bool IsAbsolute(InputIt first, EndIt last, const char preferredSeparator) { - size_t pathSize = AZStd::distance(first, last); - // If the preferred separator is a forward slash - // than an absolute path is simply one that starts with a forward slash - if (preferredSeparator == '/') + // than an absolute path is simply one that starts with a forward slash, + // unless we're on a posix platform that uses a custom path root separator + if (preferredSeparator == PosixPathSeparator) { + #if defined(AZ_TRAIT_CUSTOM_PATH_ROOT_SEPARATOR) + const AZStd::string_view path{ first, last }; + return path.find(AZ_TRAIT_CUSTOM_PATH_ROOT_SEPARATOR) != AZStd::string_view::npos; + #else + const size_t pathSize = AZStd::distance(first, last); return pathSize > 0 && IsSeparator(*first); + #endif } else { @@ -199,6 +217,7 @@ namespace AZ::IO::Internal { // If a windows path ends starts with C:foo it is a root relative path // A path is absolute root absolute on windows if it starts with + const size_t pathSize = AZStd::distance(first, last); return pathSize > 2 && Internal::IsSeparator(*AZStd::next(first, 2)); } diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/FullFileDecompressor.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/FullFileDecompressor.cpp index 44bf36bd9d..6427571f10 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/FullFileDecompressor.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/FullFileDecompressor.cpp @@ -45,8 +45,10 @@ namespace AZ } } +#if AZ_STREAMER_ADD_EXTRA_PROFILING_INFO static constexpr char DecompBoundName[] = "Decompression bound"; static constexpr char ReadBoundName[] = "Read bound"; +#endif // AZ_STREAMER_ADD_EXTRA_PROFILING_INFO bool FullFileDecompressor::DecompressionInformation::IsProcessing() const { diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/Scheduler.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/Scheduler.cpp index e7f9b0fd18..9b4996ad49 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/Scheduler.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/Scheduler.cpp @@ -14,8 +14,10 @@ namespace AZ::IO { +#if AZ_STREAMER_ADD_EXTRA_PROFILING_INFO static constexpr char SchedulerName[] = "Scheduler"; static constexpr char ImmediateReadsName[] = "Immediate reads"; +#endif // AZ_STREAMER_ADD_EXTRA_PROFILING_INFO Scheduler::Scheduler(AZStd::shared_ptr streamStack, u64 memoryAlignment, u64 sizeAlignment, u64 granularity) { @@ -337,7 +339,7 @@ namespace AZ::IO AZStd::chrono::system_clock::time_point now = AZStd::chrono::system_clock::now(); auto visitor = [this, now](auto&& args) -> void #else - auto visitor = [this](auto&& args) -> void + auto visitor = [](auto&& args) -> void #endif { using Command = AZStd::decay_t; diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerContext.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerContext.cpp index 823ab6e050..5cd483bc55 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerContext.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerContext.cpp @@ -17,10 +17,11 @@ namespace AZ namespace IO { static constexpr char ContextName[] = "Context"; +#if AZ_STREAMER_ADD_EXTRA_PROFILING_INFO static constexpr char PredictionAccuracyName[] = "Prediction accuracy (ms)"; static constexpr char LatePredictionName[] = "Early completions"; static constexpr char MissedDeadlinesName[] = "Missed deadlines"; - +#endif // AZ_STREAMER_ADD_EXTRA_PROFILING_INFO StreamerContext::~StreamerContext() { for (FileRequest* entry : m_internalRecycleBin) diff --git a/Code/Framework/AzCore/AzCore/IO/SystemFile.cpp b/Code/Framework/AzCore/AzCore/IO/SystemFile.cpp index 8de8b6b70f..5bff79b422 100644 --- a/Code/Framework/AzCore/AzCore/IO/SystemFile.cpp +++ b/Code/Framework/AzCore/AzCore/IO/SystemFile.cpp @@ -127,7 +127,7 @@ bool SystemFile::Open(const char* fileName, int mode, int platformFlags) bool SystemFile::ReOpen(int mode, int platformFlags) { AZ_Assert(!m_fileName.empty(), "Missing filename. You must call open first!"); - return Open(0, mode, platformFlags); + return Open(nullptr, mode, platformFlags); } void SystemFile::Close() diff --git a/Code/Framework/AzCore/AzCore/IPC/SharedMemory.cpp b/Code/Framework/AzCore/AzCore/IPC/SharedMemory.cpp index 37c88e34fc..af73ab4936 100644 --- a/Code/Framework/AzCore/AzCore/IPC/SharedMemory.cpp +++ b/Code/Framework/AzCore/AzCore/IPC/SharedMemory.cpp @@ -125,7 +125,7 @@ SharedMemory::Close() bool SharedMemory::Map(AccessMode mode, unsigned int size) { - AZ_Assert(m_mappedBase == NULL, "We already have data mapped"); + AZ_Assert(m_mappedBase == nullptr, "We already have data mapped"); AZ_Assert(Platform::IsMapHandleValid(), "You must call Map() first!"); bool result = Platform::Map(mode, size); @@ -232,7 +232,7 @@ bool SharedMemory::CheckMappedBaseValid() // [4/29/2011] //========================================================================= SharedMemoryRingBuffer::SharedMemoryRingBuffer() - : m_info(NULL) + : m_info(nullptr) {} //========================================================================= @@ -279,7 +279,7 @@ SharedMemoryRingBuffer::Map(AccessMode mode, unsigned int size) bool SharedMemoryRingBuffer::UnMap() { - m_info = NULL; + m_info = nullptr; return SharedMemory::UnMap(); } @@ -291,7 +291,7 @@ bool SharedMemoryRingBuffer::Write(const void* data, unsigned int dataSize) { AZ_Warning("AZSystem", !Platform::IsWaitFailed(), "You are writing the ring buffer %s while the Global lock is NOT locked! This can lead to data corruption!", m_name); - AZ_Assert(m_info != NULL, "You need to Create and Map the buffer first!"); + AZ_Assert(m_info != nullptr, "You need to Create and Map the buffer first!"); if (m_info->m_writeOffset >= m_info->m_readOffset) { unsigned int freeSpace = m_dataSize - (m_info->m_writeOffset - m_info->m_readOffset); @@ -346,7 +346,7 @@ SharedMemoryRingBuffer::Read(void* data, unsigned int maxDataSize) return 0; } - AZ_Assert(m_info != NULL, "You need to Create and Map the buffer first!"); + AZ_Assert(m_info != nullptr, "You need to Create and Map the buffer first!"); unsigned int dataRead; if (m_info->m_writeOffset > m_info->m_readOffset) { diff --git a/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerWorkStealing.cpp b/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerWorkStealing.cpp index 73fb4ecfe8..f76946a667 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerWorkStealing.cpp +++ b/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerWorkStealing.cpp @@ -192,15 +192,15 @@ void JobManagerWorkStealing::SuspendJobUntilReady(Job* job) ThreadInfo* info = GetCurrentOrCreateThreadInfo(); AZ_Assert(info->m_currentJob == job, ("Can't suspend a job which isn't currently running")); - info->m_currentJob = NULL; //clear current job + info->m_currentJob = nullptr; //clear current job if (IsAsynchronous()) { - ProcessJobsAssist(info, job, NULL); + ProcessJobsAssist(info, job, nullptr); } else { - ProcessJobsSynchronous(info, job, NULL); + ProcessJobsSynchronous(info, job, nullptr); } info->m_currentJob = job; //restore current job @@ -223,11 +223,11 @@ void JobManagerWorkStealing::StartJobAndAssistUntilComplete(Job* job) //the processing functions will return when the empty job dependent count has reached 1 if (IsAsynchronous()) { - ProcessJobsAssist(info, NULL, ¬ifyFlag); + ProcessJobsAssist(info, nullptr, ¬ifyFlag); } else { - ProcessJobsSynchronous(info, NULL, ¬ifyFlag); + ProcessJobsSynchronous(info, nullptr, ¬ifyFlag); } AZ_Assert(!m_currentThreadInfo, ""); @@ -306,9 +306,9 @@ void JobManagerWorkStealing::ProcessJobsWorker(ThreadInfo* info) //setup thread-local storage m_currentThreadInfo = info; - ProcessJobsInternal(info, NULL, NULL); + ProcessJobsInternal(info, nullptr, nullptr); - m_currentThreadInfo = NULL; + m_currentThreadInfo = nullptr; } void JobManagerWorkStealing::ProcessJobsAssist(ThreadInfo* info, Job* suspendedJob, AZStd::atomic* notifyFlag) @@ -529,7 +529,7 @@ void JobManagerWorkStealing::ProcessJobsSynchronous(ThreadInfo* info, Job* suspe info->m_currentJob = job; Process(job); - info->m_currentJob = NULL; + info->m_currentJob = nullptr; //...after calling Process we cannot use the job pointer again, the job has completed and may not exist anymore #ifdef JOBMANAGER_ENABLE_STATS diff --git a/Code/Framework/AzCore/AzCore/Jobs/Job.cpp b/Code/Framework/AzCore/AzCore/Jobs/Job.cpp index d3a2a77d92..8462cf47e8 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/Job.cpp +++ b/Code/Framework/AzCore/AzCore/Jobs/Job.cpp @@ -36,7 +36,7 @@ namespace AZ } countAndFlags |= (unsigned int)((priority << FLAG_PRIORITY_START_BIT) & FLAG_PRIORITY_MASK); SetDependentCountAndFlags(countAndFlags); - StoreDependent(NULL); + StoreDependent(nullptr); #ifdef AZ_DEBUG_JOB_STATE SetState(STATE_SETUP); @@ -66,7 +66,7 @@ namespace AZ SetDependentCountAndFlags(countAndFlags); if (isClearDependent) { - StoreDependent(NULL); + StoreDependent(nullptr); } else { diff --git a/Code/Framework/AzCore/AzCore/Math/Guid.h b/Code/Framework/AzCore/AzCore/Math/Guid.h index 53bab4d7ed..325866dad5 100644 --- a/Code/Framework/AzCore/AzCore/Math/Guid.h +++ b/Code/Framework/AzCore/AzCore/Math/Guid.h @@ -8,25 +8,21 @@ #ifndef AZ_CORE_GUID_H #define AZ_CORE_GUID_H 1 -#ifndef GUID_DEFINED +#if defined(GUID_DEFINED) +#define GUID_FORMAT_DATA1 "lX" +#else #define GUID_DEFINED -typedef struct _GUID { - _GUID(unsigned long d1, unsigned short d2, unsigned short d3, std::initializer_list d4) - : Data1(d1), - Data2(d2), - Data3(d3) - { - for (auto it = d4.begin(); it != d4.end(); ++it) - Data4[it - d4.begin()] = *it; - } - _GUID() = default; +#include - uint32_t Data1; +struct _GUID { + uint32_t Data1; unsigned short Data2; unsigned short Data3; - unsigned char Data4[ 8 ]; -} GUID; + AZStd::array Data4; +}; +using GUID = _GUID; +#define GUID_FORMAT_DATA1 "X" #endif // GUID_DEFINED #if !defined _SYS_GUID_OPERATOR_EQ_ && !defined _NO_SYS_GUID_OPERATOR_EQ_ @@ -36,7 +32,7 @@ static bool inline operator==(const _GUID& lhs, const _GUID& rhs) return lhs.Data1 == rhs.Data1 && lhs.Data2 == rhs.Data2 && lhs.Data3 == rhs.Data3 && - memcmp(lhs.Data4, rhs.Data4, 8) == 0; + lhs.Data4 == rhs.Data4; } static bool inline operator!=(const _GUID& lhs, const _GUID& rhs) { @@ -66,10 +62,9 @@ typedef const GUID& REFIID; const GUID name \ = { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } } -static REFGUID GUID_NULL() +inline constexpr GUID GUID_NULL() { - static const GUID guid = { 0x00000000L, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00} }; - return guid; + return { 0x00000000L, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00} }; } #define GUID_NULL GUID_NULL() diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_simd.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_simd.inl index fc406f5862..86ea0280ab 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_simd.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_simd.inl @@ -12,29 +12,29 @@ namespace AZ { namespace Simd { - static AZ_ALIGN(constexpr float g_sinCoef1[4], 16) = { -0.0001950727f, -0.0001950727f, -0.0001950727f, -0.0001950727f }; - static AZ_ALIGN(constexpr float g_sinCoef2[4], 16) = { 0.0083320758f, 0.0083320758f, 0.0083320758f, 0.0083320758f }; - static AZ_ALIGN(constexpr float g_sinCoef3[4], 16) = { -0.1666665247f, -0.1666665247f, -0.1666665247f, -0.1666665247f }; - static AZ_ALIGN(constexpr float g_cosCoef1[4], 16) = { -0.0013602249f, -0.0013602249f, -0.0013602249f, -0.0013602249f }; - static AZ_ALIGN(constexpr float g_cosCoef2[4], 16) = { 0.0416566950f, 0.0416566950f, 0.0416566950f, 0.0416566950f }; - static AZ_ALIGN(constexpr float g_cosCoef3[4], 16) = { -0.4999990225f, -0.4999990225f, -0.4999990225f, -0.4999990225f }; - static AZ_ALIGN(constexpr float g_acosHiCoef1[4], 16) = { -0.0012624911f, -0.0012624911f, -0.0012624911f, -0.0012624911f }; - static AZ_ALIGN(constexpr float g_acosHiCoef2[4], 16) = { 0.0066700901f, 0.0066700901f, 0.0066700901f, 0.0066700901f }; - static AZ_ALIGN(constexpr float g_acosHiCoef3[4], 16) = { -0.0170881256f, -0.0170881256f, -0.0170881256f, -0.0170881256f }; - static AZ_ALIGN(constexpr float g_acosHiCoef4[4], 16) = { 0.0308918810f, 0.0308918810f, 0.0308918810f, 0.0308918810f }; - static AZ_ALIGN(constexpr float g_acosLoCoef1[4], 16) = { -0.0501743046f, -0.0501743046f, -0.0501743046f, -0.0501743046f }; - static AZ_ALIGN(constexpr float g_acosLoCoef2[4], 16) = { 0.0889789874f, 0.0889789874f, 0.0889789874f, 0.0889789874f }; - static AZ_ALIGN(constexpr float g_acosLoCoef3[4], 16) = { -0.2145988016f, -0.2145988016f, -0.2145988016f, -0.2145988016f }; - static AZ_ALIGN(constexpr float g_acosLoCoef4[4], 16) = { 1.5707963050f, 1.5707963050f, 1.5707963050f, 1.5707963050f }; - static AZ_ALIGN(constexpr float g_acosCoef1[4], 16) = { -0.0200752200f, -0.0200752200f, -0.0200752200f, -0.0200752200f }; - static AZ_ALIGN(constexpr float g_acosCoef2[4], 16) = { 0.0759031500f, 0.0759031500f, 0.0759031500f, 0.0759031500f }; - static AZ_ALIGN(constexpr float g_acosCoef3[4], 16) = { -0.2126757000f, -0.2126757000f, -0.2126757000f, -0.2126757000f }; - static AZ_ALIGN(constexpr float g_atanHiRange[4], 16) = { 2.4142135624f, 2.4142135624f, 2.4142135624f, 2.4142135624f }; - static AZ_ALIGN(constexpr float g_atanLoRange[4], 16) = { 0.4142135624f, 0.4142135624f, 0.4142135624f, 0.4142135624f }; - static AZ_ALIGN(constexpr float g_atanCoef1[4], 16) = { 8.05374449538e-2f, 8.05374449538e-2f, 8.05374449538e-2f, 8.05374449538e-2f }; - static AZ_ALIGN(constexpr float g_atanCoef2[4], 16) = { -1.38776856032e-1f, -1.38776856032e-1f, -1.38776856032e-1f, -1.38776856032e-1f }; - static AZ_ALIGN(constexpr float g_atanCoef3[4], 16) = { 1.99777106478e-1f, 1.99777106478e-1f, 1.99777106478e-1f, 1.99777106478e-1f }; - static AZ_ALIGN(constexpr float g_atanCoef4[4], 16) = { -3.33329491539e-1f, -3.33329491539e-1f, -3.33329491539e-1f, -3.33329491539e-1f }; + alignas(16) static constexpr float g_sinCoef1[4] = { -0.0001950727f, -0.0001950727f, -0.0001950727f, -0.0001950727f }; + alignas(16) static constexpr float g_sinCoef2[4] = { 0.0083320758f, 0.0083320758f, 0.0083320758f, 0.0083320758f }; + alignas(16) static constexpr float g_sinCoef3[4] = { -0.1666665247f, -0.1666665247f, -0.1666665247f, -0.1666665247f }; + alignas(16) static constexpr float g_cosCoef1[4] = { -0.0013602249f, -0.0013602249f, -0.0013602249f, -0.0013602249f }; + alignas(16) static constexpr float g_cosCoef2[4] = { 0.0416566950f, 0.0416566950f, 0.0416566950f, 0.0416566950f }; + alignas(16) static constexpr float g_cosCoef3[4] = { -0.4999990225f, -0.4999990225f, -0.4999990225f, -0.4999990225f }; + alignas(16) static constexpr float g_acosHiCoef1[4] = { -0.0012624911f, -0.0012624911f, -0.0012624911f, -0.0012624911f }; + alignas(16) static constexpr float g_acosHiCoef2[4] = { 0.0066700901f, 0.0066700901f, 0.0066700901f, 0.0066700901f }; + alignas(16) static constexpr float g_acosHiCoef3[4] = { -0.0170881256f, -0.0170881256f, -0.0170881256f, -0.0170881256f }; + alignas(16) static constexpr float g_acosHiCoef4[4] = { 0.0308918810f, 0.0308918810f, 0.0308918810f, 0.0308918810f }; + alignas(16) static constexpr float g_acosLoCoef1[4] = { -0.0501743046f, -0.0501743046f, -0.0501743046f, -0.0501743046f }; + alignas(16) static constexpr float g_acosLoCoef2[4] = { 0.0889789874f, 0.0889789874f, 0.0889789874f, 0.0889789874f }; + alignas(16) static constexpr float g_acosLoCoef3[4] = { -0.2145988016f, -0.2145988016f, -0.2145988016f, -0.2145988016f }; + alignas(16) static constexpr float g_acosLoCoef4[4] = { 1.5707963050f, 1.5707963050f, 1.5707963050f, 1.5707963050f }; + alignas(16) static constexpr float g_acosCoef1[4] = { -0.0200752200f, -0.0200752200f, -0.0200752200f, -0.0200752200f }; + alignas(16) static constexpr float g_acosCoef2[4] = { 0.0759031500f, 0.0759031500f, 0.0759031500f, 0.0759031500f }; + alignas(16) static constexpr float g_acosCoef3[4] = { -0.2126757000f, -0.2126757000f, -0.2126757000f, -0.2126757000f }; + alignas(16) static constexpr float g_atanHiRange[4] = { 2.4142135624f, 2.4142135624f, 2.4142135624f, 2.4142135624f }; + alignas(16) static constexpr float g_atanLoRange[4] = { 0.4142135624f, 0.4142135624f, 0.4142135624f, 0.4142135624f }; + alignas(16) static constexpr float g_atanCoef1[4] = { 8.05374449538e-2f, 8.05374449538e-2f, 8.05374449538e-2f, 8.05374449538e-2f }; + alignas(16) static constexpr float g_atanCoef2[4] = { -1.38776856032e-1f, -1.38776856032e-1f, -1.38776856032e-1f, -1.38776856032e-1f }; + alignas(16) static constexpr float g_atanCoef3[4] = { 1.99777106478e-1f, 1.99777106478e-1f, 1.99777106478e-1f, 1.99777106478e-1f }; + alignas(16) static constexpr float g_atanCoef4[4] = { -3.33329491539e-1f, -3.33329491539e-1f, -3.33329491539e-1f, -3.33329491539e-1f }; namespace Common { @@ -339,7 +339,6 @@ namespace AZ { const typename VecType::FloatType x_eq_0 = VecType::CmpEq(x, VecType::ZeroFloat()); const typename VecType::FloatType x_ge_0 = VecType::CmpGtEq(x, VecType::ZeroFloat()); - const typename VecType::FloatType x_le_0 = VecType::CmpLtEq(x, VecType::ZeroFloat()); const typename VecType::FloatType x_lt_0 = VecType::CmpLt(x, VecType::ZeroFloat()); const typename VecType::FloatType y_eq_0 = VecType::CmpEq(y, VecType::ZeroFloat()); @@ -363,7 +362,6 @@ namespace AZ typename VecType::FloatType swap_sign_mask_offset = VecType::And(x_lt_0, y_lt_0); swap_sign_mask_offset = VecType::And(swap_sign_mask_offset, VecType::CastToFloat(FastLoadConstant(Simd::g_negateMask))); - const typename VecType::FloatType offset0 = VecType::ZeroFloat(); typename VecType::FloatType offset1 = FastLoadConstant(g_Pi); offset1 = VecType::Xor(offset1, swap_sign_mask_offset); diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_scalar.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_scalar.inl index 484351c799..68d4f103fe 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_scalar.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_scalar.inl @@ -867,7 +867,6 @@ namespace AZ const FloatType cols0 = {{ rows[0].v[0], rows[1].v[0], rows[2].v[0], 0.0f }}; const FloatType cols1 = {{ rows[0].v[1], rows[1].v[1], rows[2].v[1], 0.0f }}; const FloatType cols2 = {{ rows[0].v[2], rows[1].v[2], rows[2].v[2], 0.0f }}; - const FloatType cols3 = {{ rows[0].v[3], rows[1].v[3], rows[2].v[3], 1.0f }}; out[0] = cols0; out[1] = cols1; out[2] = cols2; diff --git a/Code/Framework/AzCore/AzCore/Math/SimdMath.h b/Code/Framework/AzCore/AzCore/Math/SimdMath.h index a1f073d10d..0c14ed1eaa 100644 --- a/Code/Framework/AzCore/AzCore/Math/SimdMath.h +++ b/Code/Framework/AzCore/AzCore/Math/SimdMath.h @@ -24,24 +24,24 @@ namespace AZ { namespace Simd { - static AZ_ALIGN(constexpr float g_vec1111[4], 16) = { 1.0f, 1.0f, 1.0f, 1.0f }; - static AZ_ALIGN(constexpr float g_vec1000[4], 16) = { 1.0f, 0.0f, 0.0f, 0.0f }; - static AZ_ALIGN(constexpr float g_vec0100[4], 16) = { 0.0f, 1.0f, 0.0f, 0.0f }; - static AZ_ALIGN(constexpr float g_vec0010[4], 16) = { 0.0f, 0.0f, 1.0f, 0.0f }; - static AZ_ALIGN(constexpr float g_vec0001[4], 16) = { 0.0f, 0.0f, 0.0f, 1.0f }; - static AZ_ALIGN(constexpr float g_Pi[4], 16) = { Constants::Pi, Constants::Pi, Constants::Pi, Constants::Pi }; - static AZ_ALIGN(constexpr float g_TwoPi[4], 16) = { Constants::TwoPi, Constants::TwoPi, Constants::TwoPi, Constants::TwoPi }; - static AZ_ALIGN(constexpr float g_HalfPi[4], 16) = { Constants::HalfPi, Constants::HalfPi, Constants::HalfPi, Constants::HalfPi }; - static AZ_ALIGN(constexpr float g_QuarterPi[4], 16) = { Constants::QuarterPi, Constants::QuarterPi, Constants::QuarterPi, Constants::QuarterPi }; - static AZ_ALIGN(constexpr float g_TwoOverPi[4], 16) = { Constants::TwoOverPi, Constants::TwoOverPi, Constants::TwoOverPi, Constants::TwoOverPi }; - static AZ_ALIGN(constexpr int32_t g_absMask[4], 16) = { (int32_t)0x7fffffff, (int32_t)0x7fffffff, (int32_t)0x7fffffff, (int32_t)0x7fffffff }; - static AZ_ALIGN(constexpr int32_t g_negateMask[4], 16) = { (int32_t)0x80000000, (int32_t)0x80000000, (int32_t)0x80000000, (int32_t)0x80000000 }; - static AZ_ALIGN(constexpr int32_t g_negateXMask[4], 16) = { (int32_t)0x80000000, (int32_t)0x00000000, (int32_t)0x00000000, (int32_t)0x00000000 }; - static AZ_ALIGN(constexpr int32_t g_negateYMask[4], 16) = { (int32_t)0x00000000, (int32_t)0x80000000, (int32_t)0x00000000, (int32_t)0x00000000 }; - static AZ_ALIGN(constexpr int32_t g_negateZMask[4], 16) = { (int32_t)0x00000000, (int32_t)0x00000000, (int32_t)0x80000000, (int32_t)0x00000000 }; - static AZ_ALIGN(constexpr int32_t g_negateWMask[4], 16) = { (int32_t)0x00000000, (int32_t)0x00000000, (int32_t)0x00000000, (int32_t)0x80000000 }; - static AZ_ALIGN(constexpr int32_t g_negateXYZMask[4], 16) = { (int32_t)0x80000000, (int32_t)0x80000000, (int32_t)0x80000000, (int32_t)0x00000000 }; - static AZ_ALIGN(constexpr int32_t g_wMask[4], 16) = { (int32_t)0xffffffff, (int32_t)0xffffffff, (int32_t)0xffffffff, (int32_t)0x00000000 }; + alignas(16) static constexpr float g_vec1111[4] = { 1.0f, 1.0f, 1.0f, 1.0f }; + alignas(16) static constexpr float g_vec1000[4] = { 1.0f, 0.0f, 0.0f, 0.0f }; + alignas(16) static constexpr float g_vec0100[4] = { 0.0f, 1.0f, 0.0f, 0.0f }; + alignas(16) static constexpr float g_vec0010[4] = { 0.0f, 0.0f, 1.0f, 0.0f }; + alignas(16) static constexpr float g_vec0001[4] = { 0.0f, 0.0f, 0.0f, 1.0f }; + alignas(16) static constexpr float g_Pi[4] = { Constants::Pi, Constants::Pi, Constants::Pi, Constants::Pi }; + alignas(16) static constexpr float g_TwoPi[4] = { Constants::TwoPi, Constants::TwoPi, Constants::TwoPi, Constants::TwoPi }; + alignas(16) static constexpr float g_HalfPi[4] = { Constants::HalfPi, Constants::HalfPi, Constants::HalfPi, Constants::HalfPi }; + alignas(16) static constexpr float g_QuarterPi[4] = { Constants::QuarterPi, Constants::QuarterPi, Constants::QuarterPi, Constants::QuarterPi }; + alignas(16) static constexpr float g_TwoOverPi[4] = { Constants::TwoOverPi, Constants::TwoOverPi, Constants::TwoOverPi, Constants::TwoOverPi }; + alignas(16) static constexpr int32_t g_absMask[4] = { (int32_t)0x7fffffff, (int32_t)0x7fffffff, (int32_t)0x7fffffff, (int32_t)0x7fffffff }; + alignas(16) static constexpr int32_t g_negateMask[4] = { (int32_t)0x80000000, (int32_t)0x80000000, (int32_t)0x80000000, (int32_t)0x80000000 }; + alignas(16) static constexpr int32_t g_negateXMask[4] = { (int32_t)0x80000000, (int32_t)0x00000000, (int32_t)0x00000000, (int32_t)0x00000000 }; + alignas(16) static constexpr int32_t g_negateYMask[4] = { (int32_t)0x00000000, (int32_t)0x80000000, (int32_t)0x00000000, (int32_t)0x00000000 }; + alignas(16) static constexpr int32_t g_negateZMask[4] = { (int32_t)0x00000000, (int32_t)0x00000000, (int32_t)0x80000000, (int32_t)0x00000000 }; + alignas(16) static constexpr int32_t g_negateWMask[4] = { (int32_t)0x00000000, (int32_t)0x00000000, (int32_t)0x00000000, (int32_t)0x80000000 }; + alignas(16) static constexpr int32_t g_negateXYZMask[4] = { (int32_t)0x80000000, (int32_t)0x80000000, (int32_t)0x80000000, (int32_t)0x00000000 }; + alignas(16) static constexpr int32_t g_wMask[4] = { (int32_t)0xffffffff, (int32_t)0xffffffff, (int32_t)0xffffffff, (int32_t)0x00000000 }; } } diff --git a/Code/Framework/AzCore/AzCore/Math/Uuid.cpp b/Code/Framework/AzCore/AzCore/Math/Uuid.cpp index 6e71ffc3bd..d875e28a1e 100644 --- a/Code/Framework/AzCore/AzCore/Math/Uuid.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Uuid.cpp @@ -56,7 +56,7 @@ namespace AZ Uuid Uuid::CreateStringSkipWarnings(const char* string, size_t stringLength, [[maybe_unused]] bool skipWarnings) { - if (string == NULL) + if (string == nullptr) { return Uuid::CreateNull(); } @@ -71,7 +71,7 @@ namespace AZ if (len < 32 || len > 38) { - AZ_Warning("Math", skipWarnings, "Invalid UUID format %s (must be) {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx} (or without dashes and braces)", string != NULL ? string : "null"); + AZ_Warning("Math", skipWarnings, "Invalid UUID format %s (must be) {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx} (or without dashes and braces)", string != nullptr ? string : "null"); return Uuid::CreateNull(); } diff --git a/Code/Framework/AzCore/AzCore/Math/Uuid.h b/Code/Framework/AzCore/AzCore/Math/Uuid.h index 13f60002ca..ea920e45c8 100644 --- a/Code/Framework/AzCore/AzCore/Math/Uuid.h +++ b/Code/Framework/AzCore/AzCore/Math/Uuid.h @@ -174,7 +174,7 @@ namespace AZ } // or _m128i and VMX ??? - AZ_ALIGN(unsigned char data[16], 16); + alignas(16) unsigned char data[16]; }; } // namespace AZ diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.cpp b/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.cpp index 7d644c6917..b55b2db768 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.cpp @@ -169,7 +169,7 @@ AllocationRecords::RegisterAllocation(void* address, size_t byteSize, size_t ali ai.m_timeStamp = AZStd::GetTimeNowMicroSecond(); // if we don't have a fileName,lineNum record the stack or if the user requested it. - if ((fileName == 0 && m_mode == RECORD_STACK_IF_NO_FILE_LINE) || m_mode == RECORD_FULL) + if ((fileName == nullptr && m_mode == RECORD_STACK_IF_NO_FILE_LINE) || m_mode == RECORD_FULL) { ai.m_stackFrames = m_numStackLevels ? reinterpret_cast(m_records.get_allocator().allocate(sizeof(AZ::Debug::StackFrame)*m_numStackLevels, 1)) : nullptr; if (ai.m_stackFrames) diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocatorManager.cpp b/Code/Framework/AzCore/AzCore/Memory/AllocatorManager.cpp index b34a88669c..3c09b4cae6 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocatorManager.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/AllocatorManager.cpp @@ -39,9 +39,9 @@ namespace AZ return AZStd::hash{}(key); } }; - typedef AZStd::basic_string, AZStdIAllocator> AMString; - typedef AZStd::unordered_map, AZStdIAllocator> AllocatorNameMap; - typedef AZStd::unordered_map, AZStdIAllocator> AllocatorRemappings; + using AMString = AZStd::basic_string, AZStdIAllocator>; + using AllocatorNameMap = AZStd::unordered_map, AZStdIAllocator>; + using AllocatorRemappings = AZStd::unordered_map, AZStdIAllocator>; // For allocators that are created before we have an environment, we keep some module-local data for them so that we can register them // properly once the environment is attached. @@ -403,7 +403,7 @@ AllocatorManager::AddOutOfMemoryListener(const OutOfMemoryCBType& cb) void AllocatorManager::RemoveOutOfMemoryListener() { - m_outOfMemoryListener = 0; + m_outOfMemoryListener = nullptr; } //========================================================================= @@ -660,13 +660,13 @@ void AllocatorManager::GetAllocatorStats(size_t& allocatedBytes, size_t& capacit //========================================================================= AllocatorManager::MemoryBreak::MemoryBreak() { - addressStart = NULL; - addressEnd = NULL; + addressStart = nullptr; + addressEnd = nullptr; byteSize = 0; alignment = static_cast(0xffffffff); - name = NULL; + name = nullptr; - fileName = NULL; + fileName = nullptr; lineNum = -1; } @@ -729,14 +729,14 @@ AllocatorManager::DebugBreak(void* address, const Debug::AllocationInfo& info) AZ_Assert(!(m_memoryBreak[i].alignment == info.m_alignment), "User triggered breakpoint - alignment (%d)", info.m_alignment); AZ_Assert(!(m_memoryBreak[i].byteSize == info.m_byteSize), "User triggered breakpoint - allocation size (%d)", info.m_byteSize); - AZ_Assert(!(info.m_name != NULL && m_memoryBreak[i].name != NULL && strcmp(m_memoryBreak[i].name, info.m_name) == 0), "User triggered breakpoint - name \"%s\"", info.m_name); + AZ_Assert(!(info.m_name != nullptr && m_memoryBreak[i].name != nullptr && strcmp(m_memoryBreak[i].name, info.m_name) == 0), "User triggered breakpoint - name \"%s\"", info.m_name); if (m_memoryBreak[i].lineNum != 0) { - AZ_Assert(!(info.m_fileName != NULL && m_memoryBreak[i].fileName != NULL && strcmp(m_memoryBreak[i].fileName, info.m_fileName) == 0 && m_memoryBreak[i].lineNum == info.m_lineNum), "User triggered breakpoint - file/line number : %s(%d)", info.m_fileName, info.m_lineNum); + AZ_Assert(!(info.m_fileName != nullptr && m_memoryBreak[i].fileName != nullptr && strcmp(m_memoryBreak[i].fileName, info.m_fileName) == 0 && m_memoryBreak[i].lineNum == info.m_lineNum), "User triggered breakpoint - file/line number : %s(%d)", info.m_fileName, info.m_lineNum); } else { - AZ_Assert(!(info.m_fileName != NULL && m_memoryBreak[i].fileName != NULL && strcmp(m_memoryBreak[i].fileName, info.m_fileName) == 0), "User triggered breakpoint - file name \"%s\"", info.m_fileName); + AZ_Assert(!(info.m_fileName != nullptr && m_memoryBreak[i].fileName != nullptr && strcmp(m_memoryBreak[i].fileName, info.m_fileName) == 0), "User triggered breakpoint - file name \"%s\"", info.m_fileName); } } } diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocatorScope.h b/Code/Framework/AzCore/AzCore/Memory/AllocatorScope.h index 3d97a3042d..4f9aabb4be 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocatorScope.h +++ b/Code/Framework/AzCore/AzCore/Memory/AllocatorScope.h @@ -20,9 +20,7 @@ namespace AZ public: void ActivateAllocators() { - // Note the parameter pack expansion, this creates the equivalent of a fold expression - // For each type, call InitAllocator(), then put 0 in the initializer list - std::initializer_list init{(InitAllocator(), 0)...}; + (InitAllocator(), ...); } void DeactivateAllocators() diff --git a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.cpp b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.cpp index a9b0ec92c3..cf26c8f723 100644 --- a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.cpp @@ -22,7 +22,7 @@ using namespace AZ; //========================================================================= BestFitExternalMapAllocator::BestFitExternalMapAllocator() : AllocatorBase(this, "BestFitExternalMapAllocator", "Best fit allocator with external tracking storage!") - , m_schema(NULL) + , m_schema(nullptr) {} //========================================================================= @@ -47,7 +47,7 @@ BestFitExternalMapAllocator::Create(const Descriptor& desc) schemaDesc.m_memoryBlockByteSize = desc.m_memoryBlockByteSize; m_schema = azcreate(BestFitExternalMapSchema, (schemaDesc), SystemAllocator); - if (m_schema == NULL) + if (m_schema == nullptr) { isReady = false; } @@ -63,7 +63,7 @@ void BestFitExternalMapAllocator::Destroy() { azdestroy(m_schema, SystemAllocator); - m_schema = NULL; + m_schema = nullptr; } AllocatorDebugConfig BestFitExternalMapAllocator::GetDebugConfig() @@ -89,7 +89,7 @@ BestFitExternalMapAllocator::Allocate(size_type byteSize, size_type alignment, i byteSize = MemorySizeAdjustedUp(byteSize); BestFitExternalMapAllocator::pointer_type address = m_schema->Allocate(byteSize, alignment, flags); - if (address == 0) + if (address == nullptr) { if (!OnOutOfMemory(byteSize, alignment, flags, name, fileName, lineNum)) { @@ -100,7 +100,7 @@ BestFitExternalMapAllocator::Allocate(size_type byteSize, size_type alignment, i } } - AZ_Assert(address != 0, "BestFitExternalMapAllocator: Failed to allocate %d bytes aligned on %d (flags: 0x%08x) %s : %s (%d)!", byteSize, alignment, flags, name ? name : "(no name)", fileName ? fileName : "(no file name)", lineNum); + AZ_Assert(address != nullptr, "BestFitExternalMapAllocator: Failed to allocate %d bytes aligned on %d (flags: 0x%08x) %s : %s (%d)!", byteSize, alignment, flags, name ? name : "(no name)", fileName ? fileName : "(no file name)", lineNum); AZ_MEMORY_PROFILE(ProfileAllocation(address, byteSize, alignment, name, fileName, lineNum, suppressStackRecord + 1)); return address; @@ -145,7 +145,7 @@ BestFitExternalMapAllocator::ReAllocate(pointer_type ptr, size_type newSize, siz (void)newSize; (void)newAlignment; AZ_Assert(false, "Not supported!"); - return NULL; + return nullptr; } //========================================================================= diff --git a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.cpp b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.cpp index 1cd7f156d1..d94d1dfe35 100644 --- a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.cpp @@ -18,15 +18,15 @@ using namespace AZ; BestFitExternalMapSchema::BestFitExternalMapSchema(const Descriptor& desc) : m_desc(desc) , m_used(0) - , m_freeChunksMap(FreeMapType::key_compare(), AZStdIAllocator(desc.m_mapAllocator != NULL ? desc.m_mapAllocator : &AllocatorInstance::Get())) - , m_allocChunksMap(AllocMapType::hasher(), AllocMapType::key_eq(), AZStdIAllocator(desc.m_mapAllocator != NULL ? desc.m_mapAllocator : &AllocatorInstance::Get())) + , m_freeChunksMap(FreeMapType::key_compare(), AZStdIAllocator(desc.m_mapAllocator != nullptr ? desc.m_mapAllocator : &AllocatorInstance::Get())) + , m_allocChunksMap(AllocMapType::hasher(), AllocMapType::key_eq(), AZStdIAllocator(desc.m_mapAllocator != nullptr ? desc.m_mapAllocator : &AllocatorInstance::Get())) { - if (m_desc.m_mapAllocator == NULL) + if (m_desc.m_mapAllocator == nullptr) { m_desc.m_mapAllocator = &AllocatorInstance::Get(); // used as our sub allocator } AZ_Assert(m_desc.m_memoryBlockByteSize > 0, "You must provide memory block size!"); - AZ_Assert(m_desc.m_memoryBlock != NULL, "You must provide memory block allocated as you with!"); + AZ_Assert(m_desc.m_memoryBlock != nullptr, "You must provide memory block allocated as you with!"); //if( m_desc.m_memoryBlock == NULL) there is no point to automate this cause we need to flag this memory special, otherwise there is no point to use this allocator at all // m_desc.m_memoryBlock = azmalloc(SystemAllocator,m_desc.m_memoryBlockByteSize,16); m_freeChunksMap.insert(AZStd::make_pair(m_desc.m_memoryBlockByteSize, reinterpret_cast(m_desc.m_memoryBlock))); @@ -40,13 +40,13 @@ BestFitExternalMapSchema::pointer_type BestFitExternalMapSchema::Allocate(size_type byteSize, size_type alignment, int flags) { (void)flags; - char* address = NULL; + char* address = nullptr; AZ_Assert(alignment > 0 && (alignment & (alignment - 1)) == 0, "Alignment must be >0 and power of 2!"); for (int i = 0; i < 2; ++i) // max 2 attempts to allocate { FreeMapType::iterator iter = m_freeChunksMap.find(byteSize); size_t blockSize = 0; - char* blockAddress = NULL; + char* blockAddress = nullptr; size_t preAllocBlockSize = 0; while (iter != m_freeChunksMap.end()) { @@ -64,7 +64,7 @@ BestFitExternalMapSchema::Allocate(size_type byteSize, size_type alignment, int } ++iter; } - if (address != NULL) + if (address != nullptr) { // split blocks if (preAllocBlockSize) // if we have a block before the alignment @@ -94,7 +94,7 @@ BestFitExternalMapSchema::Allocate(size_type byteSize, size_type alignment, int void BestFitExternalMapSchema::DeAllocate(pointer_type ptr) { - if (ptr == 0) + if (ptr == nullptr) { return; } diff --git a/Code/Framework/AzCore/AzCore/Memory/HeapSchema.cpp b/Code/Framework/AzCore/AzCore/Memory/HeapSchema.cpp index 1c67a95d51..50e6a47630 100644 --- a/Code/Framework/AzCore/AzCore/Memory/HeapSchema.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/HeapSchema.cpp @@ -107,17 +107,17 @@ namespace AZ m_used = 0; m_desc = desc; - m_subAllocator = 0; + m_subAllocator = nullptr; for (int i = 0; i < Descriptor::m_maxNumBlocks; ++i) { - m_memSpaces[i] = 0; + m_memSpaces[i] = nullptr; m_ownMemoryBlock[i] = false; } for (int i = 0; i < m_desc.m_numMemoryBlocks; ++i) { - if (m_desc.m_memoryBlocks[i] == 0) // Allocate memory block if requested! + if (m_desc.m_memoryBlocks[i] == nullptr) // Allocate memory block if requested! { AZ_Assert(AllocatorInstance::IsReady(), "You requested to allocate memory using the system allocator, but it's not created yet!"); m_subAllocator = &AllocatorInstance::Get(); @@ -152,7 +152,7 @@ namespace AZ if (m_memSpaces[i]) { AZDLMalloc::destroy_mspace(m_memSpaces[i]); - m_memSpaces[i] = 0; + m_memSpaces[i] = nullptr; if (m_ownMemoryBlock[i]) { @@ -172,7 +172,7 @@ namespace AZ AZ_UNUSED(lineNum); AZ_UNUSED(suppressStackRecord); int blockId = flags; - AZ_Assert(m_memSpaces[blockId]!=0, "Invalid block id!"); + AZ_Assert(m_memSpaces[blockId]!=nullptr, "Invalid block id!"); HeapSchema::pointer_type address = AZDLMalloc::mspace_memalign(m_memSpaces[blockId], alignment, byteSize); if (address) { @@ -186,7 +186,7 @@ namespace AZ { AZ_UNUSED(byteSize); AZ_UNUSED(alignment); - if (ptr==0) + if (ptr==nullptr) { return; } @@ -194,7 +194,7 @@ namespace AZ // if we use m_spaces just count the chunk sizes. m_used -= ChunckSize(ptr); #ifdef FOOTERS - AZDLMalloc::mspace_free(0, ptr); ///< We use footers so we know which memspace the pointer belongs to. + AZDLMalloc::mspace_free(nullptr, ptr); ///< We use footers so we know which memspace the pointer belongs to. #else int i = 0; for (; i < m_desc.m_numMemoryBlocks; ++i) @@ -248,7 +248,7 @@ namespace AZ HeapSchema::ChunckSize(pointer_type ptr) { // based on azmalloc_usable_size + the overhead - if (ptr != 0) + if (ptr != nullptr) { mchunkptr p = mem2chunk(ptr); //if (is_inuse(p)) // we can even skip this check since we track for double free and so on anyway diff --git a/Code/Framework/AzCore/AzCore/Memory/HphaSchema.cpp b/Code/Framework/AzCore/AzCore/Memory/HphaSchema.cpp index 5b7ca194cf..f5df0dfe96 100644 --- a/Code/Framework/AzCore/AzCore/Memory/HphaSchema.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/HphaSchema.cpp @@ -784,17 +784,17 @@ namespace AZ { // size == 0 acts as free void* realloc(void* ptr, size_t size) { - if (ptr == NULL) + if (ptr == nullptr) { return alloc(size); } if (size == 0) { free(ptr); - return NULL; + return nullptr; } debug_check(ptr); - void* newPtr = NULL; + void* newPtr = nullptr; if (ptr_in_bucket(ptr)) { if (is_small_allocation(size)) // no point to check m_isPoolAllocations as if it's false pointer can't be in a bucket. @@ -853,21 +853,21 @@ namespace AZ { { return realloc(ptr, size); } - if (ptr == NULL) + if (ptr == nullptr) { return alloc(size, alignment); } if (size == 0) { free(ptr); - return NULL; + return nullptr; } if ((size_t)ptr & (alignment - 1)) { void* newPtr = alloc(size, alignment); if (!newPtr) { - return NULL; + return nullptr; } size_t count = this->size(ptr); if (count > size) @@ -879,7 +879,7 @@ namespace AZ { return newPtr; } debug_check(ptr); - void* newPtr = NULL; + void* newPtr = nullptr; if (ptr_in_bucket(ptr)) { if (is_small_allocation(size) && alignment <= MAX_SMALL_ALLOCATION) // no point to check m_isPoolAllocations as if it was false, pointer can't be in a bucket @@ -931,7 +931,7 @@ namespace AZ { // returns the size of the resulting memory block inline size_t resize(void* ptr, size_t size) { - if (ptr == NULL) + if (ptr == nullptr) { return 0; } @@ -957,7 +957,7 @@ namespace AZ { // query the size of the memory block inline size_t size(void* ptr) const { - if (ptr == NULL) + if (ptr == nullptr) { return 0; } @@ -993,7 +993,7 @@ namespace AZ { // free the memory block inline void free(void* ptr) { - if (ptr == NULL) + if (ptr == nullptr) { return; } @@ -1009,7 +1009,7 @@ namespace AZ { // free the memory block supplying the original size with DEFAULT_ALIGNMENT inline void free(void* ptr, size_t origSize) { - if (ptr == NULL) + if (ptr == nullptr) { return; } @@ -1027,7 +1027,7 @@ namespace AZ { // free the memory block supplying the original size and alignment inline void free(void* ptr, size_t origSize, size_t oldAlignment) { - if (ptr == NULL) + if (ptr == nullptr) { return; } @@ -1134,10 +1134,10 @@ namespace AZ { // If m_systemChunkSize is specified, use that size for allocating tree blocks from the OS // m_treePageAlignment should be OS_VIRTUAL_PAGE_SIZE in all cases with this trait as we work // with virtual memory addresses when the tree grows and we cannot specify an alignment in all cases - : m_treePageSize(desc.m_fixedMemoryBlock != NULL ? desc.m_pageSize : + : m_treePageSize(desc.m_fixedMemoryBlock != nullptr ? desc.m_pageSize : desc.m_systemChunkSize != 0 ? desc.m_systemChunkSize : OS_VIRTUAL_PAGE_SIZE) , m_treePageAlignment(desc.m_pageSize) - , m_poolPageSize(desc.m_fixedMemoryBlock != NULL ? desc.m_poolPageSize : OS_VIRTUAL_PAGE_SIZE) + , m_poolPageSize(desc.m_fixedMemoryBlock != nullptr ? desc.m_poolPageSize : OS_VIRTUAL_PAGE_SIZE) , m_subAllocator(desc.m_subAllocator) { #ifdef DEBUG_ALLOCATOR @@ -1246,7 +1246,7 @@ namespace AZ { return p; } } - return NULL; + return nullptr; } const HpAllocator::page* HpAllocator::bucket::get_free_page() const @@ -1259,7 +1259,7 @@ namespace AZ { return p; } } - return NULL; + return nullptr; } void* HpAllocator::bucket::alloc(page* p) @@ -1359,7 +1359,7 @@ namespace AZ { p = bucket_grow(bsize, mBuckets[bi].marker()); if (!p) { - return NULL; + return nullptr; } mBuckets[bi].add_free_page(p); } @@ -1385,7 +1385,7 @@ namespace AZ { p = bucket_grow(bsize, mBuckets[bi].marker()); if (!p) { - return NULL; + return nullptr; } mBuckets[bi].add_free_page(p); } @@ -1406,7 +1406,7 @@ namespace AZ { void* newPtr = bucket_alloc(size); if (!newPtr) { - return NULL; + return nullptr; } memcpy(newPtr, ptr, AZStd::GetMin(elemSize - MEMORY_GUARD_SIZE, size - MEMORY_GUARD_SIZE)); bucket_free(ptr); @@ -1426,7 +1426,7 @@ namespace AZ { void* newPtr = bucket_alloc_direct(bucket_spacing_function(AZ::SizeAlignUp(size, alignment))); if (!newPtr) { - return NULL; + return nullptr; } memcpy(newPtr, ptr, AZStd::GetMin(elemSize - MEMORY_GUARD_SIZE, size - MEMORY_GUARD_SIZE)); bucket_free(ptr); @@ -1638,7 +1638,7 @@ namespace AZ { // create a dummy block to avoid prev() NULL checks and allow easy block shifts // potentially this dummy block might grow (due to shift_block) but not more than sizeof(free_node) block_header* front = (block_header*)mem; - front->prev(0); + front->prev(nullptr); front->size(0); front->set_used(); block_header* back = (block_header*)front->mem(); @@ -1777,7 +1777,7 @@ namespace AZ { newBl = tree_grow(size); if (!newBl) { - return NULL; + return nullptr; } } HPPA_ASSERT(!newBl->used()); @@ -1956,7 +1956,7 @@ namespace AZ { tree_free(ptr); return newPtr; } - return NULL; + return nullptr; } void* HpAllocator::tree_realloc_aligned(void* ptr, size_t size, size_t alignment) @@ -2044,7 +2044,7 @@ namespace AZ { tree_free(ptr); return newPtr; } - return NULL; + return nullptr; } size_t HpAllocator::tree_resize(void* ptr, size_t size) @@ -2121,7 +2121,7 @@ namespace AZ { HPPA_ASSERT(!bl->used()); HPPA_ASSERT(bl->prev() && bl->prev()->used()); HPPA_ASSERT(bl->next() && bl->next()->used()); - if (bl->prev()->prev() == NULL && bl->next()->size() == 0) + if (bl->prev()->prev() == nullptr && bl->next()->size() == 0) { tree_detach(bl); char* memStart = (char*)bl->prev(); @@ -2539,11 +2539,11 @@ namespace AZ { if (m_desc.m_fixedMemoryBlockByteSize > 0) { AZ_Assert((m_desc.m_fixedMemoryBlockByteSize & (m_desc.m_pageSize - 1)) == 0, "Memory block size %d MUST be multiples of the of the page size %d!", m_desc.m_fixedMemoryBlockByteSize, m_desc.m_pageSize); - if (m_desc.m_fixedMemoryBlock == NULL) + if (m_desc.m_fixedMemoryBlock == nullptr) { - AZ_Assert(m_desc.m_subAllocator != NULL, "Sub allocator must point to a valid allocator if m_fixedMemoryBlock is NOT allocated (NULL)!"); + AZ_Assert(m_desc.m_subAllocator != nullptr, "Sub allocator must point to a valid allocator if m_fixedMemoryBlock is NOT allocated (NULL)!"); m_desc.m_fixedMemoryBlock = m_desc.m_subAllocator->Allocate(m_desc.m_fixedMemoryBlockByteSize, m_desc.m_fixedMemoryBlockAlignment, 0, "HphaSchema", __FILE__, __LINE__, 1); - AZ_Assert(m_desc.m_fixedMemoryBlock != NULL, "Failed to allocate %d bytes!", m_desc.m_fixedMemoryBlockByteSize); + AZ_Assert(m_desc.m_fixedMemoryBlock != nullptr, "Failed to allocate %d bytes!", m_desc.m_fixedMemoryBlockByteSize); m_ownMemoryBlock = true; } AZ_Assert((reinterpret_cast(m_desc.m_fixedMemoryBlock) & static_cast(desc.m_fixedMemoryBlockAlignment - 1)) == 0, "Memory block must be page size (%d bytes) aligned!", desc.m_fixedMemoryBlockAlignment); @@ -2570,7 +2570,7 @@ namespace AZ { if (m_ownMemoryBlock) { m_desc.m_subAllocator->DeAllocate(m_desc.m_fixedMemoryBlock, m_desc.m_fixedMemoryBlockByteSize, m_desc.m_fixedMemoryBlockAlignment); - m_desc.m_fixedMemoryBlock = NULL; + m_desc.m_fixedMemoryBlock = nullptr; } } @@ -2587,7 +2587,7 @@ namespace AZ { (void)lineNum; (void)suppressStackRecord; pointer_type address = m_allocator->alloc(byteSize, alignment); - if (address == NULL) + if (address == nullptr) { GarbageCollect(); address = m_allocator->alloc(byteSize, alignment); @@ -2603,7 +2603,7 @@ namespace AZ { HphaSchema::ReAllocate(pointer_type ptr, size_type newSize, size_type newAlignment) { pointer_type address = m_allocator->realloc(ptr, newSize, newAlignment); - if (address == NULL && newSize > 0) + if (address == nullptr && newSize > 0) { GarbageCollect(); address = m_allocator->realloc(ptr, newSize, newAlignment); @@ -2618,7 +2618,7 @@ namespace AZ { void HphaSchema::DeAllocate(pointer_type ptr, size_type size, size_type alignment) { - if (ptr == 0) + if (ptr == nullptr) { return; } diff --git a/Code/Framework/AzCore/AzCore/Memory/MemoryDriller.cpp b/Code/Framework/AzCore/AzCore/Memory/MemoryDriller.cpp index 934efeef1b..2ea25c3397 100644 --- a/Code/Framework/AzCore/AzCore/Memory/MemoryDriller.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/MemoryDriller.cpp @@ -106,7 +106,7 @@ namespace AZ m_allAllocatorRecords.push_back(allocator->GetRecords()); - if (m_output == NULL) + if (m_output == nullptr) { return; // we have no active output } @@ -154,7 +154,7 @@ namespace AZ delete allocatorRecords; allocator->SetRecords(nullptr); - if (m_output == NULL) + if (m_output == nullptr) { return; // we have no active output } @@ -173,7 +173,7 @@ namespace AZ if (records) { const AllocationInfo* info = records->RegisterAllocation(address, byteSize, alignment, name, fileName, lineNum, stackSuppressCount + 1); - if (m_output == NULL) + if (m_output == nullptr) { return; // we have no active output } @@ -226,7 +226,7 @@ namespace AZ { records->UnregisterAllocation(address, byteSize, alignment, info); - if (m_output == NULL) + if (m_output == nullptr) { return; // we have no active output } @@ -261,7 +261,7 @@ namespace AZ { records->ResizeAllocation(address, newSize); - if (m_output == NULL) + if (m_output == nullptr) { return; // we have no active output } diff --git a/Code/Framework/AzCore/AzCore/Memory/OSAllocator.cpp b/Code/Framework/AzCore/AzCore/Memory/OSAllocator.cpp index 5637fcc646..317df214d6 100644 --- a/Code/Framework/AzCore/AzCore/Memory/OSAllocator.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/OSAllocator.cpp @@ -75,7 +75,7 @@ namespace AZ address = AZ_OS_MALLOC(byteSize, alignment); } - if (address == 0 && byteSize > 0) + if (address == nullptr && byteSize > 0) { AZ_Printf("Memory", "======================================================\n"); AZ_Printf("Memory", "OSAllocator run out of system memory!\nWe can't track the debug allocator, since it's used for tracking and pipes trought the OS... here are the other allocator status:\n"); diff --git a/Code/Framework/AzCore/AzCore/Memory/OverrunDetectionAllocator.cpp b/Code/Framework/AzCore/AzCore/Memory/OverrunDetectionAllocator.cpp index 63fa9250d6..35ad19dd9e 100644 --- a/Code/Framework/AzCore/AzCore/Memory/OverrunDetectionAllocator.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/OverrunDetectionAllocator.cpp @@ -216,9 +216,9 @@ namespace AZ class OverrunDetectionSchemaImpl { public: - typedef void* pointer_type; - typedef size_t size_type; - typedef ptrdiff_t difference_type; + using pointer_type = void *; + using size_type = size_t; + using difference_type = ptrdiff_t; OverrunDetectionSchemaImpl(const OverrunDetectionSchema::Descriptor& desc); ~OverrunDetectionSchemaImpl(); @@ -241,8 +241,8 @@ namespace AZ Internal::AllocationRecord* CreateAllocationRecord(void* p, size_t size) const; private: - typedef AZStd::mutex mutex_type; - typedef AZStd::lock_guard lock_type; + using mutex_type = AZStd::mutex; + using lock_type = AZStd::lock_guard; AZStd::unique_ptr m_platformAllocator; mutex_type m_mutex; @@ -511,7 +511,7 @@ AZ::OverrunDetectionSchemaImpl::OverrunDetectionSchemaImpl(const OverrunDetectio { m_platformAllocator.reset(new Internal::PlatformOverrunDetectionSchema); - auto info = m_platformAllocator->GetSystemInformation(); + [[maybe_unused]] auto info = m_platformAllocator->GetSystemInformation(); AZ_Assert(info.m_pageSize == Internal::ODS_PAGE_SIZE, "System page size %d does not equal expected page size %d", info.m_pageSize, Internal::ODS_PAGE_SIZE); AZ_Assert(info.m_minimumAllocationSize == Internal::ODS_ALLOCATION_SIZE, "System minimum allocation size %d does not equal expected size %d", info.m_minimumAllocationSize, Internal::ODS_ALLOCATION_SIZE); diff --git a/Code/Framework/AzCore/AzCore/Memory/PoolSchema.cpp b/Code/Framework/AzCore/AzCore/Memory/PoolSchema.cpp index b251774d77..3e71f530a0 100644 --- a/Code/Framework/AzCore/AzCore/Memory/PoolSchema.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/PoolSchema.cpp @@ -278,7 +278,7 @@ namespace AZ Page* page = reinterpret_cast(memBlock); if (!page->m_magic.Validate()) { - return NULL; + return nullptr; } return page; } @@ -403,7 +403,7 @@ PoolAllocation::Allocate(size_t byteSize, size_t alignment) u32 bucketIndex = static_cast((byteSize >> m_minAllocationShift)-1); BucketType& bucket = m_buckets[bucketIndex]; - PageType* page = 0; + PageType* page = nullptr; if (!bucket.m_pages.empty()) { page = &bucket.m_pages.front(); @@ -411,7 +411,7 @@ PoolAllocation::Allocate(size_t byteSize, size_t alignment) // check if we have free slot in the page if (page->m_freeList.empty()) { - page = 0; + page = nullptr; } else if (page->m_freeList.size()==1) { @@ -464,7 +464,7 @@ AZ_INLINE void PoolAllocation::DeAllocate(void* ptr) { PageType* page = m_allocator->PageFromAddress(ptr); - if (page==NULL) + if (page==nullptr) { AZ_Error("Memory", false, "Address 0x%08x is not in the ThreadPool!", ptr); return; @@ -503,7 +503,7 @@ PoolAllocation::DeAllocate(void* ptr) m_allocator->PushFreePage(page); } } - else if (frontPage->m_next != 0) + else if (frontPage->m_next != nullptr) { // if the next page has free slots free the current page if (frontPage->m_next->m_freeList.size() < maxElementsPerBucket) @@ -584,7 +584,7 @@ PoolAllocation::GarbageCollect(bool isForceFreeAllPages) // [9/15/2009] //========================================================================= PoolSchema::PoolSchema(const Descriptor& desc) - : m_impl(NULL) + : m_impl(nullptr) { (void)desc; // ignored here, applied in Create() } @@ -595,7 +595,7 @@ PoolSchema::PoolSchema(const Descriptor& desc) //========================================================================= PoolSchema::~PoolSchema() { - AZ_Assert(m_impl==NULL, "You did not destroy the pool schema!"); + AZ_Assert(m_impl==nullptr, "You did not destroy the pool schema!"); delete m_impl; } @@ -605,12 +605,12 @@ PoolSchema::~PoolSchema() //========================================================================= bool PoolSchema::Create(const Descriptor& desc) { - AZ_Assert(m_impl==NULL, "PoolSchema already created!"); - if (m_impl == NULL) + AZ_Assert(m_impl==nullptr, "PoolSchema already created!"); + if (m_impl == nullptr) { m_impl = aznew PoolSchemaImpl(desc); } - return (m_impl!=NULL); + return (m_impl!=nullptr); } //========================================================================= @@ -620,7 +620,7 @@ bool PoolSchema::Create(const Descriptor& desc) bool PoolSchema::Destroy() { delete m_impl; - m_impl = NULL; + m_impl = nullptr; return true; } @@ -751,7 +751,7 @@ PoolSchema::GetSubAllocator() PoolSchemaImpl::PoolSchemaImpl(const PoolSchema::Descriptor& desc) : m_pageAllocator(desc.m_pageAllocator ? desc.m_pageAllocator : &AllocatorInstance::Get()) , m_allocator(this, desc.m_pageSize, desc.m_minAllocationSize, desc.m_maxAllocationSize) - , m_staticDataBlock(0) + , m_staticDataBlock(nullptr) , m_numStaticPages(desc.m_numStaticPages) , m_isDynamic(desc.m_isDynamic) , m_pageSize(desc.m_pageSize) @@ -851,7 +851,7 @@ PoolSchemaImpl::AllocationSize(PoolSchema::pointer_type ptr) AZ_FORCE_INLINE PoolSchemaImpl::Page* PoolSchemaImpl::PopFreePage() { - Page* page = 0; + Page* page = nullptr; if (!m_freePages.empty()) { page = &m_freePages.front(); @@ -938,7 +938,7 @@ PoolSchemaImpl::Page::SetupFreeList(size_t elementSize, size_t pageDataBlockSize // [9/15/2009] //========================================================================= ThreadPoolSchema::ThreadPoolSchema(GetThreadPoolData getThreadPoolData, SetThreadPoolData setThreadPoolData) - : m_impl(NULL) + : m_impl(nullptr) , m_threadPoolGetter(getThreadPoolData) , m_threadPoolSetter(setThreadPoolData) { @@ -950,7 +950,7 @@ ThreadPoolSchema::ThreadPoolSchema(GetThreadPoolData getThreadPoolData, SetThrea //========================================================================= ThreadPoolSchema::~ThreadPoolSchema() { - AZ_Assert(m_impl==NULL, "You did not destroy the thread pool schema!"); + AZ_Assert(m_impl==nullptr, "You did not destroy the thread pool schema!"); delete m_impl; } @@ -960,12 +960,12 @@ ThreadPoolSchema::~ThreadPoolSchema() //========================================================================= bool ThreadPoolSchema::Create(const Descriptor& desc) { - AZ_Assert(m_impl==NULL, "PoolSchema already created!"); - if (m_impl == NULL) + AZ_Assert(m_impl==nullptr, "PoolSchema already created!"); + if (m_impl == nullptr) { m_impl = aznew ThreadPoolSchemaImpl(desc, m_threadPoolGetter, m_threadPoolSetter); } - return (m_impl!=NULL); + return (m_impl!=nullptr); } //========================================================================= @@ -975,7 +975,7 @@ bool ThreadPoolSchema::Create(const Descriptor& desc) bool ThreadPoolSchema::Destroy() { delete m_impl; - m_impl = NULL; + m_impl = nullptr; return true; } //========================================================================= @@ -1099,7 +1099,7 @@ ThreadPoolSchemaImpl::ThreadPoolSchemaImpl(const ThreadPoolSchema::Descriptor& d : m_threadPoolGetter(threadPoolGetter) , m_threadPoolSetter(threadPoolSetter) , m_pageAllocator(desc.m_pageAllocator) - , m_staticDataBlock(0) + , m_staticDataBlock(nullptr) , m_numStaticPages(desc.m_numStaticPages) , m_pageSize(desc.m_pageSize) , m_minAllocationSize(desc.m_minAllocationSize) @@ -1112,7 +1112,7 @@ ThreadPoolSchemaImpl::ThreadPoolSchemaImpl(const ThreadPoolSchema::Descriptor& d SetCriticalSectionSpinCount(m_mutex.native_handle(), 4000); # endif - if (m_pageAllocator == 0) + if (m_pageAllocator == nullptr) { m_pageAllocator = &AllocatorInstance::Get(); // use the SystemAllocator if no page allocator is provided } @@ -1211,7 +1211,7 @@ ThreadPoolSchemaImpl::Allocate(ThreadPoolSchema::size_type byteSize, ThreadPoolS { // deallocate elements if they were freed from other threads Page::FakeNodeLF* fakeLFNode; - while ((fakeLFNode = threadData->m_freedElements.pop())!=0) + while ((fakeLFNode = threadData->m_freedElements.pop())!=nullptr) { threadData->m_allocator.DeAllocate(fakeLFNode); } @@ -1228,12 +1228,12 @@ void ThreadPoolSchemaImpl::DeAllocate(ThreadPoolSchema::pointer_type ptr) { Page* page = PageFromAddress(ptr); - if (page==NULL) + if (page==nullptr) { AZ_Error("Memory", false, "Address 0x%08x is not in the ThreadPool!", ptr); return; } - AZ_Assert(page->m_threadData!=0, ("We must have valid page thread data for the page!")); + AZ_Assert(page->m_threadData!=nullptr, ("We must have valid page thread data for the page!")); ThreadPoolData* threadData = m_threadPoolGetter(); if (threadData == page->m_threadData) { @@ -1262,11 +1262,11 @@ ThreadPoolSchema::size_type ThreadPoolSchemaImpl::AllocationSize(ThreadPoolSchema::pointer_type ptr) { Page* page = PageFromAddress(ptr); - if (page==NULL) + if (page==nullptr) { return 0; } - AZ_Assert(page->m_threadData!=0, ("We must have valid page thread data for the page!")); + AZ_Assert(page->m_threadData!=nullptr, ("We must have valid page thread data for the page!")); return page->m_threadData->m_allocator.AllocationSize(ptr); } @@ -1282,7 +1282,7 @@ ThreadPoolSchemaImpl::PopFreePage() AZStd::lock_guard lock(m_mutex); if (m_freePages.empty()) { - page = NULL; + page = nullptr; } else { @@ -1387,7 +1387,7 @@ ThreadPoolData::~ThreadPoolData() { // deallocate elements if they were freed from other threads ThreadPoolSchemaImpl::Page::FakeNodeLF* fakeLFNode; - while ((fakeLFNode = m_freedElements.pop())!=0) + while ((fakeLFNode = m_freedElements.pop())!=nullptr) { m_allocator.DeAllocate(fakeLFNode); } diff --git a/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.cpp b/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.cpp index 0fb64915dc..8c84338fd0 100644 --- a/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.cpp @@ -153,7 +153,7 @@ SystemAllocator::Create(const Descriptor& desc) #elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HEAP m_allocator = azcreate(HeapSchema, (heapDesc), SystemAllocator); #endif - if (m_allocator == NULL) + if (m_allocator == nullptr) { isReady = false; } @@ -237,7 +237,7 @@ SystemAllocator::Allocate(size_type byteSize, size_type alignment, int flags, co byteSize = MemorySizeAdjustedUp(byteSize); SystemAllocator::pointer_type address = m_allocator->Allocate(byteSize, alignment, flags, name, fileName, lineNum, suppressStackRecord + 1); - if (address == 0) + if (address == nullptr) { // Free all memory we can and try again! AllocatorManager::Instance().GarbageCollect(); @@ -245,7 +245,7 @@ SystemAllocator::Allocate(size_type byteSize, size_type alignment, int flags, co address = m_allocator->Allocate(byteSize, alignment, flags, name, fileName, lineNum, suppressStackRecord + 1); } - if (address == 0) + if (address == nullptr) { byteSize = MemorySizeAdjustedDown(byteSize); // restore original size @@ -258,7 +258,7 @@ SystemAllocator::Allocate(size_type byteSize, size_type alignment, int flags, co } } - AZ_Assert(address != 0, "SystemAllocator: Failed to allocate %d bytes aligned on %d (flags: 0x%08x) %s : %s (%d)!", byteSize, alignment, flags, name ? name : "(no name)", fileName ? fileName : "(no file name)", lineNum); + AZ_Assert(address != nullptr, "SystemAllocator: Failed to allocate %d bytes aligned on %d (flags: 0x%08x) %s : %s (%d)!", byteSize, alignment, flags, name ? name : "(no name)", fileName ? fileName : "(no file name)", lineNum); AZ_PROFILE_MEMORY_ALLOC_EX(MemoryReserved, fileName, lineNum, address, byteSize, name); AZ_MEMORY_PROFILE(ProfileAllocation(address, byteSize, alignment, name, fileName, lineNum, suppressStackRecord + 1)); diff --git a/Code/Framework/AzCore/AzCore/Module/Environment.cpp b/Code/Framework/AzCore/AzCore/Module/Environment.cpp index bec530e2d1..c07b7444d4 100644 --- a/Code/Framework/AzCore/AzCore/Module/Environment.cpp +++ b/Code/Framework/AzCore/AzCore/Module/Environment.cpp @@ -148,7 +148,7 @@ namespace AZ AZ_Assert(m_numAttached == 0, "We should not delete an environment while there are %d modules attached! Unload all DLLs first!", m_numAttached); #endif - for (auto variableIt : m_variableMap) + for (const auto &variableIt : m_variableMap) { EnvironmentVariableHolderBase* holder = reinterpret_cast(variableIt.second); if (holder) diff --git a/Code/Framework/AzCore/AzCore/Name/NameDictionary.cpp b/Code/Framework/AzCore/AzCore/Name/NameDictionary.cpp index cf85e0f4e0..8e8011add9 100644 --- a/Code/Framework/AzCore/AzCore/Name/NameDictionary.cpp +++ b/Code/Framework/AzCore/AzCore/Name/NameDictionary.cpp @@ -87,7 +87,7 @@ namespace AZ { Internal::NameData* nameData = keyValue.second; const int useCount = keyValue.second->m_useCount; - const bool hadCollision = keyValue.second->m_hashCollision; + [[maybe_unused]] const bool hadCollision = keyValue.second->m_hashCollision; if (useCount == 0) { diff --git a/Code/Framework/AzCore/AzCore/NativeUI/NativeUISystemComponent.cpp b/Code/Framework/AzCore/AzCore/NativeUI/NativeUISystemComponent.cpp index 7e1adb93b9..a75e1803eb 100644 --- a/Code/Framework/AzCore/AzCore/NativeUI/NativeUISystemComponent.cpp +++ b/Code/Framework/AzCore/AzCore/NativeUI/NativeUISystemComponent.cpp @@ -41,11 +41,17 @@ namespace AZ::NativeUI AZStd::string result = DisplayBlockingDialog("Assert Failed!", message, options); if (result.compare(buttonNames[0]) == 0) + { return AssertAction::IGNORE_ASSERT; + } else if (result.compare(buttonNames[1]) == 0) + { return AssertAction::IGNORE_ALL_ASSERTS; + } else if (result.compare(buttonNames[2]) == 0) + { return AssertAction::BREAK; + } return AssertAction::NONE; } diff --git a/Code/Framework/AzCore/AzCore/PlatformDef.h b/Code/Framework/AzCore/AzCore/PlatformDef.h index 47f45931ba..8d28d27959 100644 --- a/Code/Framework/AzCore/AzCore/PlatformDef.h +++ b/Code/Framework/AzCore/AzCore/PlatformDef.h @@ -88,15 +88,6 @@ # define AZ_FORCE_INLINE __forceinline -/// Aligns a declaration. -# define AZ_ALIGN(_decl, _alignment) \ - AZ_PUSH_DISABLE_WARNING(4324, "-Wunknown-warning-option") \ - __declspec(align(_alignment)) \ - _decl \ - AZ_POP_DISABLE_WARNING - -/// Return the alignment of a type. This if for internal use only (use AZStd::alignment_of<>()) -# define AZ_INTERNAL_ALIGNMENT_OF(_type) __alignof(_type) /// Pointer will be aliased. # define AZ_MAY_ALIAS /// Function signature macro @@ -120,15 +111,7 @@ #define AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING # define AZ_FORCE_INLINE inline -/// Aligns a declaration. -# define AZ_ALIGN(_decl, _alignment) \ - AZ_PUSH_DISABLE_WARNING(4324, "-Wunknown-warning-option") \ - _decl \ - __attribute__((aligned(_alignment))) - AZ_POP_DISABLE_WARNING -/// Return the alignment of a type. This if for internal use only (use AZStd::alignment_of<>()) -# define AZ_INTERNAL_ALIGNMENT_OF(_type) __alignof__(_type) /// Pointer will be aliased. # define AZ_MAY_ALIAS __attribute__((__may_alias__)) /// Function signature macro diff --git a/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.cpp b/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.cpp index e574efec7a..6d398c00a1 100644 --- a/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.cpp +++ b/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.cpp @@ -15,7 +15,7 @@ namespace AZ { inline namespace PlatformDefaults { - static const char* PlatformNames[PlatformId::NumPlatformIds] = { PlatformPC, PlatformAndroid, PlatformIOS, PlatformMac, PlatformProvo, PlatformSalem, PlatformJasper, PlatformServer, PlatformAll, PlatformAllClient }; + static const char* PlatformNames[PlatformId::NumPlatformIds] = { PlatformPC, PlatformLinux, PlatformAndroid, PlatformIOS, PlatformMac, PlatformProvo, PlatformSalem, PlatformJasper, PlatformServer, PlatformAll, PlatformAllClient }; const char* PlatformIdToPalFolder(AZ::PlatformId platform) { @@ -27,6 +27,8 @@ namespace AZ { case AZ::PC: return "PC"; + case AZ::LINUX_ID: + return "Linux"; case AZ::ANDROID_ID: return "Android"; case AZ::IOS: @@ -56,10 +58,14 @@ namespace AZ const char* OSPlatformToDefaultAssetPlatform(AZStd::string_view osPlatform) { - if (osPlatform == PlatformCodeNameWindows || osPlatform == PlatformCodeNameLinux) + if (osPlatform == PlatformCodeNameWindows) { return PlatformPC; } + if (osPlatform == PlatformCodeNameLinux) + { + return PlatformLinux; + } else if (osPlatform == PlatformCodeNameMac) { return PlatformMac; @@ -201,6 +207,8 @@ namespace AZ { case PlatformId::PC: platformCodes.emplace_back(PlatformCodeNameWindows); + break; + case PlatformId::LINUX_ID: platformCodes.emplace_back(PlatformCodeNameLinux); break; case PlatformId::ANDROID_ID: diff --git a/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.h b/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.h index 420622b5e5..21b0fc0656 100644 --- a/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.h +++ b/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.h @@ -23,6 +23,7 @@ namespace AZ inline namespace PlatformDefaults { constexpr char PlatformPC[] = "pc"; + constexpr char PlatformLinux[] = "linux"; constexpr char PlatformAndroid[] = "android"; constexpr char PlatformIOS[] = "ios"; constexpr char PlatformMac[] = "mac"; @@ -50,6 +51,7 @@ namespace AZ AZ_ENUM_WITH_UNDERLYING_TYPE(PlatformId, int, (Invalid, -1), PC, + LINUX_ID, ANDROID_ID, IOS, MAC_ID, @@ -63,12 +65,13 @@ namespace AZ // Add new platforms above this NumPlatformIds ); - constexpr int NumClientPlatforms = 7; + constexpr int NumClientPlatforms = 8; constexpr int NumPlatforms = NumClientPlatforms + 1; // 1 "Server" platform currently enum class PlatformFlags : AZ::u32 { Platform_NONE = 0x00, Platform_PC = 1 << PlatformId::PC, + Platform_LINUX = 1 << PlatformId::LINUX_ID, Platform_ANDROID = 1 << PlatformId::ANDROID_ID, Platform_IOS = 1 << PlatformId::IOS, Platform_MAC = 1 << PlatformId::MAC_ID, @@ -83,7 +86,7 @@ namespace AZ // A special platform that will always correspond to all non-server platforms, even if new ones are added Platform_ALL_CLIENT = 1ULL << 31, - AllNamedPlatforms = Platform_PC | Platform_ANDROID | Platform_IOS | Platform_MAC | Platform_PROVO | Platform_SALEM | Platform_JASPER | Platform_SERVER, + AllNamedPlatforms = Platform_PC | Platform_LINUX | Platform_ANDROID | Platform_IOS | Platform_MAC | Platform_PROVO | Platform_SALEM | Platform_JASPER | Platform_SERVER, }; AZ_DEFINE_ENUM_BITWISE_OPERATORS(PlatformFlags); diff --git a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.cpp b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.cpp index e621ab412e..a44aa61aca 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.cpp +++ b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.cpp @@ -121,12 +121,12 @@ namespace AZ { delete attrIt.second; } - + if (m_overload) { delete m_overload; } - + m_attributes.clear(); } @@ -180,7 +180,7 @@ namespace AZ if (GetNumArguments() == overload->GetNumArguments()) { bool anyDifference = false; - + for (size_t i(0), sentinel(GetNumArguments()); !anyDifference && i < sentinel; ++i) { const BehaviorParameter* thisArg = GetArgument(i); @@ -273,7 +273,7 @@ namespace AZ auto attributes = AZStd::move(m_attributes); // Actually delete everything - for (auto propertyIt : events) + for (const auto &propertyIt : events) { delete propertyIt.second.m_broadcast; delete propertyIt.second.m_event; @@ -519,20 +519,20 @@ namespace AZ AZStd::vector BehaviorClass::GetOverloads(const AZStd::string& name) const { AZStd::vector overloads; - + auto methodIter = m_methods.find(name); if (methodIter != m_methods.end()) { overloads = GetOverloadsIncludeMethod(methodIter->second); - } - + } + return overloads; } AZStd::vector BehaviorClass::GetOverloadsIncludeMethod(BehaviorMethod* method) const { AZStd::vector overloads; - + auto iter = method; while (iter) { @@ -546,7 +546,7 @@ namespace AZ AZStd::vector BehaviorClass::GetOverloadsExcludeMethod(BehaviorMethod* method) const { AZStd::vector overloads; - + auto iter = method->m_overload; while (iter) { @@ -972,5 +972,5 @@ namespace AZ return enumRttiHelper.GetTypeId(); } } - + } // namespace AZ diff --git a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.h b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.h index 1c81a15bda..ba8808d4d2 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.h +++ b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.h @@ -36,7 +36,7 @@ namespace AZ constexpr const char* k_PropertyNameGetterSuffix = "::Getter"; constexpr const char* k_PropertyNameSetterSuffix = "::Setter"; - + /// Typedef for class unwrapping callback (i.e. used for things like smart_ptr to unwrap for T) using BehaviorClassUnwrapperFunction = void(*)(void* /*classPtr*/, void*& /*unwrappedClass*/, AZ::Uuid& /*unwrappedClassTypeId*/, void* /*userData*/); @@ -53,7 +53,7 @@ namespace AZ IfPresent, }; - struct BehaviorObject // same as DynamicSerializableField, make sure we merge them... so we can store the object easily + struct BehaviorObject // same as DynamicSerializableField, make sure we merge them... so we can store the object easily { AZ_TYPE_INFO(BehaviorObject, "{2813cdfb-0a4a-411c-9216-72a7b644d1dd}"); @@ -165,7 +165,7 @@ namespace AZ /// Convert to BehaviorObject implicitly for passing generic parameters (usually not known at compile time) operator BehaviorObject() const; - /// Converts internally the value to a specific type known at compile time. \returns true if conversion was successful. + /// Converts internally the value to a specific type known at compile time. \returns true if conversion was successful. template bool ConvertTo(); @@ -452,7 +452,7 @@ namespace AZ namespace Internal { const AZ::TypeId& GetUnderlyingTypeId(const IRttiHelper& enumRttiHelper); - + // Converts sourceAddress to targetType inline bool ConvertValueTo(void* sourceAddress, const IRttiHelper* sourceRtti, const AZ::Uuid& targetType, void*& targetAddress, BehaviorParameter::TempValueParameterAllocator& tempAllocator) { @@ -520,7 +520,7 @@ namespace AZ static const int s_startNamedArgumentIndex = s_startArgumentIndex; // +1 for result type BehaviorMethodImpl(FunctionPointer functionPointer, BehaviorContext* context, const AZStd::string& name = AZStd::string()); - + bool Call(BehaviorValueParameter* arguments, unsigned int numArguments, BehaviorValueParameter* result) const override; bool HasResult() const override; @@ -548,7 +548,7 @@ namespace AZ BehaviorParameter m_parameters[sizeof...(Args)+s_startNamedArgumentIndex]; AZStd::array m_metadataParameters; ///< Stores the per parameter metadata which is used to add names, tooltips, trait, default values, etc... to the parameters }; - + #if __cpp_noexcept_function_type // C++17 makes exception specifications as part of the type in paper P0012R1 // Therefore noexcept overloads must be distinguished from non-noexcept overloads @@ -732,7 +732,7 @@ namespace AZ BehaviorEBusEvent(FunctionPointer functionPointer, BehaviorContext* context); BehaviorEBusEvent(FunctionPointerConst functionPointer, BehaviorContext* context); - + template inline AZStd::enable_if_t SetBusIdType(); @@ -813,7 +813,7 @@ namespace AZ : SetFunctionParameters {}; #endif - + template struct BehaviorOnDemandReflectHelper; template @@ -997,14 +997,14 @@ namespace AZ } // namespace Internal /** - * Behavior representation of reflected class. + * Behavior representation of reflected class. */ class BehaviorClass { public: AZ_CLASS_ALLOCATOR(BehaviorClass, SystemAllocator, 0); - BehaviorClass(); + BehaviorClass(); ~BehaviorClass(); /// Hooks to override default memory allocation for the class (AZ_CLASS_ALLOCATOR is used by default) @@ -1065,7 +1065,7 @@ namespace AZ void* m_userData; AZStd::string m_name; - AZStd::vector m_baseClasses; + AZStd::vector m_baseClasses; AZStd::unordered_map m_methods; AZStd::unordered_map m_properties; AttributeArray m_attributes; @@ -1081,7 +1081,7 @@ namespace AZ AZ::Uuid m_wrappedTypeId; // Store all owned instances for unload verification? }; - + // Helper macros to generate getter and setter function from a pointer to value or member value // Syntax BehaviorValueGetter(&globalValue) BehaviorValueGetter(&Class::MemberValue) # define BehaviorValueGetter(valueAddress) &AZ::Internal::BehaviorValuePropertyHelper::Get @@ -1095,7 +1095,7 @@ namespace AZ * Property representation, a property has getter and setter. A read only property will have a "nullptr" for a setter. * You can use lambdas, global of member function. If you want to just expose a variable (not write the function and handle changes) * you can use \ref BehaviorValueProperty macros (or BehaviorValueGetter/Setter to control read/write functionality) - * Member constants are a property too, use \ref BehaviorConstant for it. Everything is either a property or a method, the main reason + * Member constants are a property too, use \ref BehaviorConstant for it. Everything is either a property or a method, the main reason * why we "push" people to use functions is that in most cases when we manipulate an object, you will need to do more than just set a value * to a new value. */ @@ -1163,7 +1163,7 @@ namespace AZ }; /** - * RAII class which keeps track of functions reflected to the BehaviorContext + * RAII class which keeps track of functions reflected to the BehaviorContext * when it is supplied as an OnDemandReflectionOwner */ class ScopedBehaviorOnDemandReflector @@ -1182,7 +1182,7 @@ namespace AZ AZ_CLASS_ALLOCATOR(BehaviorEBus, SystemAllocator, 0); typedef void(*QueueFunctionType)(void* /*userData1*/, void* /*userData2*/); - + struct VirtualProperty { VirtualProperty(BehaviorEBusEventSender* getter, BehaviorEBusEventSender* setter) @@ -1294,7 +1294,7 @@ namespace AZ AZStd::string m_scriptPath; #endif - AZStd::string GetScriptPath() const + AZStd::string GetScriptPath() const { #if defined(PERFORMANCE_BUILD) || !defined(_RELEASE) // m_scriptPath is only available in non-Release mode return m_scriptPath; @@ -1303,8 +1303,8 @@ namespace AZ #endif } - void SetScriptPath(const char* scriptPath) - { + void SetScriptPath(const char* scriptPath) + { #if defined(PERFORMANCE_BUILD) || !defined(_RELEASE) // m_scriptPath is only available in non-Release mode m_scriptPath = scriptPath; #else @@ -1346,7 +1346,7 @@ namespace AZ virtual void OnAddGlobalProperty(const char* propertyName, BehaviorProperty* prop) { (void)propertyName; (void)prop; } virtual void OnRemoveGlobalProperty(const char* propertyName, BehaviorProperty* prop) { (void)propertyName; (void)prop; } - /// Called when a class is added or removed + /// Called when a class is added or removed virtual void OnAddClass(const char* className, BehaviorClass* behaviorClass) { (void)className; (void)behaviorClass; } virtual void OnRemoveClass(const char* className, BehaviorClass* behaviorClass) { (void)className; (void)behaviorClass; } @@ -1358,10 +1358,10 @@ namespace AZ using BehaviorContextBus = AZ::EBus; /** - * BehaviorContext is used to reflect classes, methods and EBuses for runtime interaction. A typical consumer of this context and different + * BehaviorContext is used to reflect classes, methods and EBuses for runtime interaction. A typical consumer of this context and different * scripting systems (i.e. Lua, Visual Script, etc.). Even though (as designed) there are overlaps between some context they have very different * purpose and set of rules. For example SerializeContext, doesn't reflect any methods, it just reflects data fields that will be stored for initial object - * setup, it handles version conversion and so thing, this related to storing the object to a persistent storage. Behavior context, doesn't need to deal with versions as + * setup, it handles version conversion and so thing, this related to storing the object to a persistent storage. Behavior context, doesn't need to deal with versions as * no data is stored, just methods for manipulating the object state. */ class BehaviorContext : public ReflectContext @@ -1379,7 +1379,7 @@ namespace AZ } template - static void QueueFunction(BehaviorEBus::QueueFunctionType f, void* userData1, void* userData2) + static void QueueFunction(BehaviorEBus::QueueFunctionType f, void* userData1, void* userData2) { Bus::QueueFunction(f, userData1, userData2); } @@ -1484,8 +1484,8 @@ namespace AZ } template - static void SetClassDefaultAllocator(BehaviorClass* behaviorClass, const AZStd::false_type& /*HasAZClassAllocator*/) - { + static void SetClassDefaultAllocator(BehaviorClass* behaviorClass, const AZStd::false_type& /*HasAZClassAllocator*/) + { behaviorClass->m_allocate = &DefaultSystemAllocator::Allocate; behaviorClass->m_deallocate = &DefaultSystemAllocator::DeAllocate; } @@ -1522,20 +1522,20 @@ namespace AZ } template - static void SetClassDefaultConstructor(BehaviorClass* behaviorClass, const AZStd::true_type& /*AZStd::is_constructible*/) + static void SetClassDefaultConstructor(BehaviorClass* behaviorClass, const AZStd::true_type& /*AZStd::is_constructible*/) { behaviorClass->m_defaultConstructor = &DefaultConstruct; } template - static void SetClassDefaultDestructor(BehaviorClass* behaviorClass, const AZStd::true_type& /*AZStd::is_destructible*/) + static void SetClassDefaultDestructor(BehaviorClass* behaviorClass, const AZStd::true_type& /*AZStd::is_destructible*/) { behaviorClass->m_destructor = &DefaultDestruct; } template - static void SetClassDefaultCopyConstructor(BehaviorClass* behaviorClass, const AZStd::true_type& /*AZStd::is_copy_constructible*/) - { + static void SetClassDefaultCopyConstructor(BehaviorClass* behaviorClass, const AZStd::true_type& /*AZStd::is_copy_constructible*/) + { behaviorClass->m_cloner = &DefaultCopyConstruct; } @@ -1585,7 +1585,7 @@ namespace AZ const char* m_name; BehaviorMethod* m_method; }; - + struct GlobalPropertyBuilder : public AZ::Internal::GenericAttributes { typedef AZ::Internal::GenericAttributes Base; @@ -1608,7 +1608,7 @@ namespace AZ ClassBuilder(BehaviorContext* context, BehaviorClass* behaviorClass); ~ClassBuilder(); ClassBuilder* operator->(); - + /** * Sets custom allocator for a class, this function will error if this not inside a class. * This is only for very specific cases when you want to override AZ_CLASS_ALLOCATOR or you are dealing with 3rd party classes, otherwise @@ -1659,9 +1659,9 @@ namespace AZ ClassBuilder* Constant(const char* name, Getter getter); /** - * You can describe buses that this class uses to communicate. Those buses will be used by tools when + * You can describe buses that this class uses to communicate. Those buses will be used by tools when * you need to give developers hints as to what buses this class interacts with. - * You don't need to reflect all buses that your class uses, just the ones related to + * You don't need to reflect all buses that your class uses, just the ones related to * class behavior. Please refer to component documentation for more information on * the pattern of Request and Notification buses. * {@ @@ -1717,10 +1717,10 @@ namespace AZ /** * With request buses (please refer to component communication patterns documentation) we ofter have EBus events - * that represent a getter and a setter for a value. To allow our tools to take advantage of it, you can reflect + * that represent a getter and a setter for a value. To allow our tools to take advantage of it, you can reflect * VirtualProperty to indicate which event is the getter and which is the setter. * This function validates that getter event has no argument and a result and setter function has no results and only - * one argument which is the same type as the result of the getter. + * one argument which is the same type as the result of the getter. * \note Make sure you call this function after you have reflected the getter and setter events as it will report an error * if we can't find the function */ @@ -1731,7 +1731,7 @@ namespace AZ BehaviorContext(); ~BehaviorContext(); - + ///< \deprecated Use "Method(const char*, Function, const AZStd::array::num_args>&, const char*)" instead ///< This method does not support passing in argument names and tooltips nor does it support overriding specific parameter Behavior traits template @@ -1741,7 +1741,7 @@ namespace AZ ///< This method does not support passing in argument names and tooltips nor does it support overriding specific parameter Behavior traits template GlobalMethodBuilder Method(const char* name, Function f, const char* deprecatedName, BehaviorValues* defaultValues = nullptr, const char* dbgDesc = nullptr); - + template GlobalMethodBuilder Method(const char* name, Function f, const AZStd::array::num_args>& args, const char* dbgDesc = nullptr); @@ -1836,13 +1836,13 @@ namespace AZ /** * Helper MACRO to help you write the EBus handler that you want to reflect to behavior. This is not required, but generally we recommend reflecting all useful - * buses as this enable people to "script" complex behaviors. + * buses as this enable people to "script" complex behaviors. * You don't have to use this macro to write a Handler, but some people find it useful * Here is an example how to use it: * class MyEBusBehaviorHandler : public MyEBus::Handler, public AZ::BehaviorEBusHandler * { * public: - * AZ_EBUS_BEHAVIOR_BINDER(MyEBusBehaviorHandler, "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXXXX}",Allocator, OnEvent1, OnEvent2 and so on); + * AZ_EBUS_BEHAVIOR_BINDER(MyEBusBehaviorHandler, "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXXXX}",Allocator, OnEvent1, OnEvent2 and so on); * // now you need implementations for those event * * @@ -1854,7 +1854,7 @@ namespace AZ * // The AZ_EBUS_BEHAVIOR_BINDER defines FN_EventName for each index. You can also cache it yourself (but it's slower), static int cacheIndex = GetFunctionIndex("OnEvent1"); and use that . * CallResult(result, FN_OnEvent1, data); // forward to the binding (there can be none, this is why we need to always have properly set result, when there is one) * return result; // return the result like you will in any normal EBus even with result - * } * + * } * * // handle the other events here * }; * @@ -1922,7 +1922,7 @@ namespace AZ /** * Provides the same functionality of the AZ_EBUS_BEHAVIOR_BINDER macro above with the additional ability to specify the names and a tooltips of handler methods * after listing the handler method in the macro. - * An example Usage is + * An example Usage is * class MyEBusBehaviorHandler : public MyEBus::Handler, public AZ::BehaviorEBusHandler * { * public: @@ -1930,7 +1930,7 @@ namespace AZ * OnEvent2, ({#OnEvent2 first parameter name(float), #OnEvent2 first parameter tooltip(float)}, {#OnEvent2 second parameter name(bool), {#OnEvent2 second parameter tooltip(bool)}), * OnEvent3, ()); * // The reason for needing parenthesis around the parameter name and tooltip object(AZ::BehaviorParameterOverrides) is to prevent the macro from parsing the comma in the intializer as seperate parameters - * // When using this macro, the BehaviorParameterOverrides objects must be placed after every listing a function as a handler. Furthermore the number of BehaviorParameterOverrides objects for each function must match the number of parameters + * // When using this macro, the BehaviorParameterOverrides objects must be placed after every listing a function as a handler. Furthermore the number of BehaviorParameterOverrides objects for each function must match the number of parameters * // to that function * // Ex. for a function called HugeEvent with a signature of void HugeEvent(int, float, double, char, short), two arguments must be supplied to the macro. * // 1. HugeEvent @@ -2181,7 +2181,7 @@ namespace AZ // Template implementations ////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////// - + ////////////////////////////////////////////////////////////////////////// inline BehaviorObject::BehaviorObject() : m_address(nullptr) @@ -2569,7 +2569,7 @@ namespace AZ m_getter = nullptr; return false; } - + // assure that TR_THIS_PTR is set on the first parameter m_getter->OverrideParameterTraits(0, AZ::BehaviorParameter::TR_THIS_PTR, 0); } @@ -2847,7 +2847,7 @@ namespace AZ } ////////////////////////////////////////////////////////////////////////// - + template void BehaviorEBusHandler::CallResult(R& result, int index, Args&&... args) const { @@ -2904,7 +2904,7 @@ namespace AZ { return ClassBuilder(this, static_cast(nullptr)); } - + auto classTypeIt = m_typeToClassMap.find(typeUuid); if (IsRemovingReflection()) { @@ -2933,7 +2933,7 @@ namespace AZ // class already reflected, display name and uuid char uuidName[AZ::Uuid::MaxStringBuffer]; classTypeIt->first.ToString(uuidName, AZ::Uuid::MaxStringBuffer); - + AZ_Error("Reflection", false, "Class '%s' is already registered using Uuid: %s!", name, uuidName); return ClassBuilder(this, static_cast(nullptr)); } @@ -3002,7 +3002,7 @@ namespace AZ if (m_class && (!Base::m_context->IsRemovingReflection())) { - for (auto method : m_class->m_methods) + for (const auto &method : m_class->m_methods) { m_class->PostProcessMethod(Base::m_context, *method.second); if (MethodReturnsAzEventByReferenceOrPointer(*method.second)) @@ -3485,7 +3485,7 @@ namespace AZ return this; } - + ////////////////////////////////////////////////////////////////////////// template BehaviorContext::EBusBuilder BehaviorContext::EBus(const char* name, const char* deprecatedName /*=nullptr*/, const char* toolTip /*=nullptr*/) @@ -3748,9 +3748,9 @@ namespace AZ return this; } } - + m_ebus->m_virtualProperties.insert(AZStd::make_pair(name, BehaviorEBus::VirtualProperty(getter, setter))); - } + } return this; } @@ -3774,8 +3774,7 @@ namespace AZ template inline void OnDemandReflectFunctions(OnDemandReflectionOwner* onDemandReflection, AZStd::Internal::pack_traits_arg_sequence) { - using PackExpander = bool[]; - PackExpander{ true, (BehaviorOnDemandReflectHelper::raw_fp_type>::QueueReflect(onDemandReflection), true)... }; + (BehaviorOnDemandReflectHelper::raw_fp_type>::QueueReflect(onDemandReflection), ...); } // Assumes parameters array is big enough to store all parameters @@ -3869,7 +3868,7 @@ namespace AZ SetParameters(m_parameters, this); SetParameters(&m_parameters[s_startNamedArgumentIndex], this); } - + ////////////////////////////////////////////////////////////////////////// template bool BehaviorMethodImpl::Call(BehaviorValueParameter* arguments, unsigned int numArguments, BehaviorValueParameter* result) const @@ -3877,7 +3876,7 @@ namespace AZ size_t totalArguments = GetNumArguments(); if (numArguments < totalArguments) { - // We are cloning all arguments on the stack, since Call is called only from Invoke we can reserve bigger "arguments" array + // We are cloning all arguments on the stack, since Call is called only from Invoke we can reserve bigger "arguments" array // that can always handle all parameters. So far the don't use default values that ofter, so we will optimize for the common case first. BehaviorValueParameter* newArguments = reinterpret_cast(alloca(sizeof(BehaviorValueParameter)* totalArguments)); // clone the input parameters (we don't need to clone temp buffers, etc. as they will be still on the stack) @@ -4073,7 +4072,7 @@ namespace AZ { m_isConst = true; } - + ////////////////////////////////////////////////////////////////////////// template bool BehaviorMethodImpl::Call(BehaviorValueParameter* arguments, unsigned int numArguments, BehaviorValueParameter* result) const @@ -4081,7 +4080,7 @@ namespace AZ size_t totalArguments = GetNumArguments(); if (numArguments < totalArguments) { - // We are cloning all arguments on the stack, since Call is called only from Invoke we can reserve bigger "arguments" array + // We are cloning all arguments on the stack, since Call is called only from Invoke we can reserve bigger "arguments" array // that can always handle all parameters. So far the don't use default values that ofter, so we will optimize for the common case first. BehaviorValueParameter* newArguments = reinterpret_cast(alloca(sizeof(BehaviorValueParameter)* totalArguments)); // clone the input parameters (we don't need to clone temp buffers, etc. as they will be still on the stack) @@ -4285,7 +4284,7 @@ namespace AZ { m_isConst = true; } - + ////////////////////////////////////////////////////////////////////////// template template @@ -4308,7 +4307,7 @@ namespace AZ size_t totalArguments = GetNumArguments(); if (numArguments < totalArguments) { - // We are cloning all arguments on the stack, since Call is called only from Invoke we can reserve bigger "arguments" array + // We are cloning all arguments on the stack, since Call is called only from Invoke we can reserve bigger "arguments" array // that can always handle all parameters. So far the don't use default values that ofter, so we will optimize for the common case first. BehaviorValueParameter* newArguments = reinterpret_cast(alloca(sizeof(BehaviorValueParameter)* totalArguments)); // clone the input parameters (we don't need to clone temp buffers, etc. as they will be still on the stack) @@ -4498,7 +4497,7 @@ namespace AZ template void SetFunctionParameters::Set(AZStd::vector& params) { - // result, userdata, arguments + // result, userdata, arguments params.resize(sizeof...(Args) + eBehaviorBusForwarderEventIndices::ParameterFirst); SetParameters(¶ms[eBehaviorBusForwarderEventIndices::Result], nullptr); SetParameters(¶ms[eBehaviorBusForwarderEventIndices::UserData], nullptr); diff --git a/Code/Framework/AzCore/AzCore/RTTI/RTTI.h b/Code/Framework/AzCore/AzCore/RTTI/RTTI.h index 1f133c3256..fa081a9497 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/RTTI.h +++ b/Code/Framework/AzCore/AzCore/RTTI/RTTI.h @@ -493,7 +493,7 @@ namespace AZ const void* result = GetTypeId() == asType ? instance : nullptr; using dummy = bool[]; - dummy{ true, (CastInternal(result, instance, asType), true)... }; + [[maybe_unused]] dummy d { true, (CastInternal(result, instance, asType), true)... }; return result; } @@ -517,7 +517,7 @@ namespace AZ bool result = GetTypeId() == id; using dummy = bool[]; - dummy{ true, (IsTypeOfInternal(result, id), true)... }; + [[maybe_unused]] dummy d = { true, (IsTypeOfInternal(result, id), true)... }; return result; } @@ -534,7 +534,7 @@ namespace AZ callback(GetActualUuid(instance), instance); using dummy = bool[]; - dummy{ true, (RttiHelper{}.EnumHierarchy(callback, instance), true)... }; + [[maybe_unused]] dummy d = { true, (RttiHelper{}.EnumHierarchy(callback, instance), true)... }; } TypeTraits GetTypeTraits() const override { diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp b/Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp index 531c91bcf4..fb0d12f552 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp +++ b/Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp @@ -1463,9 +1463,9 @@ static void* LuaMemoryHook(void* userData, void* ptr, size_t osize, size_t nsize { allocator->DeAllocate(ptr); } - return NULL; + return nullptr; } - else if (ptr == NULL) + else if (ptr == nullptr) { return allocator->Allocate(nsize, LUA_DEFAULT_ALIGNMENT, 0, "Script", __FILE__, __LINE__, 1); } @@ -1708,7 +1708,7 @@ LUA_API const Node* lua_getDummyNode() "Invalid stack!"); lua_pop(m_nativeContext, (currentTop - m_startVariableIndex) + 1); - m_nativeContext = NULL; + m_nativeContext = nullptr; m_startVariableIndex = 0; m_numArguments = 0; m_numResults = 0; @@ -2038,7 +2038,7 @@ LUA_API const Node* lua_getDummyNode() LSV_BEGIN_VARIABLE(m_nativeContext); valueIndex = 0; - name = NULL; + name = nullptr; index = -1; if (m_mode == MD_INSPECT) { diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.cpp b/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.cpp index 63f44a2469..e28a289c9e 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.cpp +++ b/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.cpp @@ -43,7 +43,7 @@ public: , m_numErrors(0) { using namespace AZStd::placeholders; - m_context->SetErrorHook(AZStd::bind(&ScriptErrorCatcher::ErrorCB, this, _1, _2, _3)); + m_context->SetErrorHook([this](ScriptContext* a, ScriptContext::ErrorType b, const char* c) { ErrorCB(a,b,c); }); } ~ScriptErrorCatcher() { @@ -66,7 +66,7 @@ public: // [6/29/2012] //========================================================================= ScriptContextDebug::ScriptContextDebug(ScriptContext& scriptContext, bool isEnableStackRecord) - : m_luaDebug(NULL) + : m_luaDebug(nullptr) , m_currentStackLevel(-1) , m_stepStackLevel(-1) , m_isRecordCallstack(isEnableStackRecord) @@ -104,7 +104,7 @@ void ScriptContextDebug::ConnectHook() //========================================================================= void ScriptContextDebug::DisconnectHook() { - lua_sethook(m_context.NativeContext(), 0, 0, 0); + lua_sethook(m_context.NativeContext(), nullptr, 0, 0); } //========================================================================= @@ -149,7 +149,7 @@ ScriptContextDebug::EnumRegisteredClasses(EnumClass enumClass, EnumMethod enumMe lua_rawgeti(l, -2, AZ_LUA_CLASS_METATABLE_NAME_INDEX); // load class name AZ_Assert(lua_isstring(l, -1), "Internal scipt error: class without a classname at index %d", AZ_LUA_CLASS_METATABLE_NAME_INDEX); - + if (!enumClass(lua_tostring(l, -1), behaviorClass->m_typeId, userData)) { lua_pop(l, 5); @@ -199,7 +199,7 @@ ScriptContextDebug::EnumRegisteredClasses(EnumClass enumClass, EnumMethod enumMe // for any non-built in methods if (strncmp(name, "__", 2) != 0) { - const char* dbgParamInfo = NULL; + const char* dbgParamInfo = nullptr; // attempt to get the name bool popDebugName = lua_getupvalue(l, -1, 2) != nullptr; @@ -278,7 +278,7 @@ ScriptContextDebug::EnumRegisteredGlobals(EnumMethod enumMethod, EnumProperty en { if (strncmp(name, "__", 2) != 0) { - const char* dbgParamInfo = NULL; + const char* dbgParamInfo = nullptr; lua_getupvalue(l, -1, 2); if (lua_isstring(l, -1)) { @@ -606,7 +606,7 @@ void AZ::LuaHook(lua_State* l, lua_Debug* ar) lua_pop(l, 1); // bool doBreak = false; - ScriptContextDebug::Breakpoint* bp = NULL; + ScriptContextDebug::Breakpoint* bp = nullptr; ScriptContextDebug::Breakpoint localBreakPoint; lua_getinfo(l, "Sunl", ar); @@ -735,7 +735,7 @@ void AZ::LuaHook(lua_State* l, lua_Debug* ar) { context->m_luaDebug = ar; context->m_breakCallback(context, bp); - context->m_luaDebug = NULL; + context->m_luaDebug = nullptr; } } @@ -752,7 +752,7 @@ ScriptContextDebug::EnumLocals(EnumLocalCallback& cb) int local = 1; const char* name; ScriptDataContext dc; - while ((name = lua_getlocal(l, m_luaDebug, local)) != NULL) + while ((name = lua_getlocal(l, m_luaDebug, local)) != nullptr) { if (name[0] != '(') // skip temporary variables { @@ -846,7 +846,7 @@ ScriptContextDebug::EnableBreakpoints(BreakpointCallback& cb) void ScriptContextDebug::DisableBreakpoints() { - m_breakCallback = NULL; + m_breakCallback = nullptr; } //========================================================================= @@ -1079,7 +1079,7 @@ ScriptContextDebug::WriteValue(const DebugValue& value, const char* valueName, i int valueTableIndex = -1; if (valueName[0] == '[') { - valueTableIndex = static_cast(strtol(valueName + 1, NULL, 10)); + valueTableIndex = static_cast(strtol(valueName + 1, nullptr, 10)); } if (strcmp(valueName, "__metatable__") == 0) // metatable are read only { @@ -1114,7 +1114,7 @@ ScriptContextDebug::WriteValue(const DebugValue& value, const char* valueName, i } break; case LUA_TNUMBER: { - lua_pushnumber(l, static_cast(strtod(value.m_value.c_str(), NULL))); + lua_pushnumber(l, static_cast(strtod(value.m_value.c_str(), nullptr))); if (localIndex != -1) { lua_setlocal(l, m_luaDebug, localIndex); @@ -1256,7 +1256,7 @@ ScriptContextDebug::WriteValue(const DebugValue& value, const char* valueName, i else { lua_pushvalue(l, -5); // copy the user data (this pointer) - lua_pushnumber(l, static_cast(strtod(subElement.m_value.c_str(), NULL))); + lua_pushnumber(l, static_cast(strtod(subElement.m_value.c_str(), nullptr))); lua_call(l, 2, 0); // call the setter } break; @@ -1375,7 +1375,7 @@ ScriptContextDebug::GetValue(DebugValue& value) { int iLocal = 1; const char* localName; - while ((localName = lua_getlocal(l, m_luaDebug, iLocal)) != NULL) + while ((localName = lua_getlocal(l, m_luaDebug, iLocal)) != nullptr) { if (localName[0] != '(' && strcmp(name, localName) == 0) { @@ -1460,7 +1460,7 @@ ScriptContextDebug::SetValue(const DebugValue& sourceValue) // create hierarchy from tokens const DebugValue* value = &sourceValue; DebugValue untokenizedValue; - + if (tokens.size() > 1) { untokenizedValue.m_name = tokens[0]; @@ -1519,7 +1519,7 @@ ScriptContextDebug::SetValue(const DebugValue& sourceValue) { int iLocal = 1; const char* localName; - while ((localName = lua_getlocal(l, m_luaDebug, iLocal)) != NULL) + while ((localName = lua_getlocal(l, m_luaDebug, iLocal)) != nullptr) { lua_pop(l, 1); if (localName[0] != '(' && strcmp(name, localName) == 0) diff --git a/Code/Framework/AzCore/AzCore/Serialization/AZStdAnyDataContainer.inl b/Code/Framework/AzCore/AzCore/Serialization/AZStdAnyDataContainer.inl index 0e9306a481..f0694ed2b3 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/AZStdAnyDataContainer.inl +++ b/Code/Framework/AzCore/AzCore/Serialization/AZStdAnyDataContainer.inl @@ -209,39 +209,35 @@ namespace AZ //! performance sensitive code. AZ_INLINE bool CompareAnyValue(const AZStd::any& lhs, const AZStd::any& rhs) { - bool isEqual = false; - - if (lhs.type() != rhs.type()) + if (lhs.type() == rhs.type()) { - return false; - } + AZ::SerializeContext* serializeContext = nullptr; + AZ::ComponentApplicationBus::BroadcastResult(serializeContext, &AZ::ComponentApplicationRequests::GetSerializeContext); - AZ::SerializeContext* serializeContext = nullptr; - AZ::ComponentApplicationBus::BroadcastResult(serializeContext, &AZ::ComponentApplicationRequests::GetSerializeContext); - - const AZ::SerializeContext::ClassData* classData = serializeContext->FindClassData(lhs.type()); - if (classData) - { - if (classData->m_serializer) + const AZ::SerializeContext::ClassData* classData = serializeContext->FindClassData(lhs.type()); + if (classData) { - isEqual = classData->m_serializer->CompareValueData(AZStd::any_cast(&lhs), AZStd::any_cast(&rhs)); - } - else - { - AZStd::vector myData; - AZ::IO::ByteContainerStream myDataStream(&myData); + if (classData->m_serializer) + { + return classData->m_serializer->CompareValueData(AZStd::any_cast(&lhs), AZStd::any_cast(&rhs)); + } + else + { + AZStd::vector myData; + AZ::IO::ByteContainerStream myDataStream(&myData); - AZ::Utils::SaveObjectToStream(myDataStream, AZ::ObjectStream::ST_BINARY, AZStd::any_cast(&lhs), lhs.type()); + AZ::Utils::SaveObjectToStream(myDataStream, AZ::ObjectStream::ST_BINARY, AZStd::any_cast(&lhs), lhs.type()); - AZStd::vector otherData; - AZ::IO::ByteContainerStream otherDataStream(&otherData); + AZStd::vector otherData; + AZ::IO::ByteContainerStream otherDataStream(&otherData); - AZ::Utils::SaveObjectToStream(otherDataStream, AZ::ObjectStream::ST_BINARY, AZStd::any_cast(&rhs), rhs.type()); - isEqual = (myData.size() == otherData.size()) && (memcmp(myData.data(), otherData.data(), myData.size()) == 0); + AZ::Utils::SaveObjectToStream(otherDataStream, AZ::ObjectStream::ST_BINARY, AZStd::any_cast(&rhs), rhs.type()); + return (myData.size() == otherData.size()) && (memcmp(myData.data(), otherData.data(), myData.size()) == 0); + } } } - return isEqual; + return false; } } } diff --git a/Code/Framework/AzCore/AzCore/Serialization/AZStdContainers.inl b/Code/Framework/AzCore/AzCore/Serialization/AZStdContainers.inl index 9eb65dec76..bae79a6fe7 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/AZStdContainers.inl +++ b/Code/Framework/AzCore/AzCore/Serialization/AZStdContainers.inl @@ -1320,7 +1320,7 @@ namespace AZ (void)classElement; void* reserveElement{}; using DummyArray = bool[]; - DummyArray{ true, (ReserveElementTuple(tupleRef, classElement, reserveElement))... }; + [[maybe_unused]] DummyArray dummy = { true, (ReserveElementTuple(tupleRef, classElement, reserveElement))... }; return reserveElement; } diff --git a/Code/Framework/AzCore/AzCore/Serialization/DataPatch.cpp b/Code/Framework/AzCore/AzCore/Serialization/DataPatch.cpp index edc0e8398b..01a98667fa 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/DataPatch.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/DataPatch.cpp @@ -135,7 +135,6 @@ namespace AZ AZStd::list m_dynamicClassElements; ///< Storage for class elements that represent dynamic serializable fields. }; - static bool ConvertLegacyBoolToEnum(AZ::SerializeContext& context, AZStd::any& patchAny, const DataNode& sourceNode); static void ReportDataPatchMismatch(SerializeContext* context, const SerializeContext::ClassElement* classElement, const TypeId& patchDataTypeId); //========================================================================= diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.cpp index 56933e464a..7309955a1c 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.cpp @@ -213,9 +213,13 @@ namespace AZ void* object, const Uuid& typeId, const rapidjson::Value& value, JsonDeserializerContext& context, ContinuationFlags flags) { bool loadAsNewInstance = (flags & ContinuationFlags::LoadAsNewInstance) == ContinuationFlags::LoadAsNewInstance; + JsonDeserializer::UseTypeDeserializer useCustom = (flags & ContinuationFlags::IgnoreTypeSerializer) == ContinuationFlags::IgnoreTypeSerializer + ? JsonDeserializer::UseTypeDeserializer::No + : JsonDeserializer::UseTypeDeserializer::Yes; + return (flags & ContinuationFlags::ResolvePointer) == ContinuationFlags::ResolvePointer - ? JsonDeserializer::LoadToPointer(object, typeId, value, context) - : JsonDeserializer::Load(object, typeId, value, loadAsNewInstance, context); + ? JsonDeserializer::LoadToPointer(object, typeId, value, useCustom, context) + : JsonDeserializer::Load(object, typeId, value, loadAsNewInstance, useCustom, context); } JsonSerializationResult::ResultCode BaseJsonSerializer::ContinueStoring( @@ -224,11 +228,15 @@ namespace AZ { using namespace JsonSerializationResult; + JsonSerializer::UseTypeSerializer useCustom = (flags & ContinuationFlags::IgnoreTypeSerializer) == ContinuationFlags::IgnoreTypeSerializer + ? JsonSerializer::UseTypeSerializer::No + : JsonSerializer::UseTypeSerializer::Yes; + if ((flags & ContinuationFlags::ReplaceDefault) == ContinuationFlags::ReplaceDefault && !context.ShouldKeepDefaults()) { if ((flags & ContinuationFlags::ResolvePointer) == ContinuationFlags::ResolvePointer) { - return JsonSerializer::StoreFromPointer(output, object, nullptr, typeId, context); + return JsonSerializer::StoreFromPointer(output, object, nullptr, typeId, useCustom, context); } else { @@ -241,19 +249,19 @@ namespace AZ { return result; } - return result.Combine(JsonSerializer::Store(output, object, nullptr, typeId, context)); + return result.Combine(JsonSerializer::Store(output, object, nullptr, typeId, useCustom, context)); } else { void* defaultObjectPtr = AZStd::any_cast(&newDefaultObject); - return JsonSerializer::Store(output, object, defaultObjectPtr, typeId, context); + return JsonSerializer::Store(output, object, defaultObjectPtr, typeId, useCustom, context); } } } return (flags & ContinuationFlags::ResolvePointer) == ContinuationFlags::ResolvePointer ? - JsonSerializer::StoreFromPointer(output, object, defaultObject, typeId, context) : - JsonSerializer::Store(output, object, defaultObject, typeId, context); + JsonSerializer::StoreFromPointer(output, object, defaultObject, typeId, useCustom, context) : + JsonSerializer::Store(output, object, defaultObject, typeId, useCustom, context); } JsonSerializationResult::ResultCode BaseJsonSerializer::LoadTypeId(Uuid& typeId, const rapidjson::Value& input, diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.h index fc35bdcf85..7d2af01c16 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.h @@ -159,12 +159,13 @@ namespace AZ enum class ContinuationFlags { - None = 0, //! No extra flags. - ResolvePointer = 1 << 0, //! The pointer passed in contains a pointer. The (de)serializer will attempt to resolve to an instance. - ReplaceDefault = 1 << 1, //! The default value provided for storing will be replaced with a newly created one. - LoadAsNewInstance = 1 << 2 //! Treats the value as if it's a newly created instance. This may trigger serializers marked with - //! OperationFlags::InitializeNewInstance. Used for instance by pointers or new instances added to - //! an array. + None = 0, //! No extra flags. + ResolvePointer = 1 << 0, //! The pointer passed in contains a pointer. The (de)serializer will attempt to resolve to an instance. + ReplaceDefault = 1 << 1, //! The default value provided for storing will be replaced with a newly created one. + LoadAsNewInstance = 1 << 2, //! Treats the value as if it's a newly created instance. This may trigger serializers marked with + //! OperationFlags::InitializeNewInstance. Used for instance by pointers or new instances added to + //! an array. + IgnoreTypeSerializer = 1 << 3, //! Ignore the custom/specific serializer for the TypeId }; enum class OperationFlags diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.cpp index 840034e52f..324df7c141 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.cpp @@ -38,7 +38,8 @@ namespace AZ } JsonSerializationResult::ResultCode JsonDeserializer::Load( - void* object, const Uuid& typeId, const rapidjson::Value& value, bool isNewInstance, JsonDeserializerContext& context) + void* object, const Uuid& typeId, const rapidjson::Value& value, bool isNewInstance, UseTypeDeserializer custom, + JsonDeserializerContext& context) { using namespace AZ::JsonSerializationResult; @@ -48,8 +49,8 @@ namespace AZ "Target object for Json Serialization is pointing to nothing during loading."); } - BaseJsonSerializer* serializer = context.GetRegistrationContext()->GetSerializerForType(typeId); - if (serializer) + if (BaseJsonSerializer* serializer + = (custom == UseTypeDeserializer::Yes ? context.GetRegistrationContext()->GetSerializerForType(typeId) : nullptr)) { return DeserializerDefaultCheck(serializer, object, typeId, value, isNewInstance, context); } @@ -70,8 +71,11 @@ namespace AZ // type itself has not been reflected using EnumBuilder. Treat it as an enum. return LoadEnum(object, *classData, value, context); } - serializer = context.GetRegistrationContext()->GetSerializerForType(classData->m_azRtti->GetGenericTypeId()); - if (serializer) + + if (BaseJsonSerializer* serializer + = (custom == UseTypeDeserializer::Yes) + ? context.GetRegistrationContext()->GetSerializerForType(classData->m_azRtti->GetGenericTypeId()) + : nullptr) { return DeserializerDefaultCheck(serializer, object, typeId, value, isNewInstance, context); } @@ -101,7 +105,7 @@ namespace AZ } JsonSerializationResult::ResultCode JsonDeserializer::LoadToPointer(void* object, const Uuid& typeId, - const rapidjson::Value& value, JsonDeserializerContext& context) + const rapidjson::Value& value, UseTypeDeserializer useCustom, JsonDeserializerContext& context) { using namespace JsonSerializationResult; @@ -134,7 +138,7 @@ namespace AZ const SerializeContext::ClassData* resolvedClassData = context.GetSerializeContext()->FindClassData(resolvedTypeId); if (resolvedClassData) { - status = JsonDeserializer::Load(*objectPtr, resolvedTypeId, value, true, context); + status = JsonDeserializer::Load(*objectPtr, resolvedTypeId, value, true, useCustom, context); *objectPtr = resolvedClassData->m_azRtti->Cast(*objectPtr, typeId); @@ -171,11 +175,11 @@ namespace AZ } AZ_Assert(classElement.m_azRtti->GetTypeId() == classElement.m_typeId, "Type id mismatch during deserialization of a json file. (%s vs %s)"); - return LoadToPointer(object, classElement.m_typeId, value, context); + return LoadToPointer(object, classElement.m_typeId, value, UseTypeDeserializer::Yes, context); } else { - return Load(object, classElement.m_typeId, value, false, context); + return Load(object, classElement.m_typeId, value, false, UseTypeDeserializer::Yes, context); } } @@ -571,11 +575,23 @@ namespace AZ if (loadedTypeId.m_determination == TypeIdDetermination::FailedToDetermine || loadedTypeId.m_determination == TypeIdDetermination::FailedDueToMultipleTypeIds) { - AZStd::string_view message = loadedTypeId.m_determination == TypeIdDetermination::FailedDueToMultipleTypeIds ? - "Unable to resolve provided type because the same name points to multiple types." : - "Unable to resolve provided type."; - status = context.Report(Tasks::RetrieveInfo, Outcomes::Unknown, message); - return ResolvePointerResult::FullyProcessed; + auto typeField = pointerData.FindMember(JsonSerialization::TypeIdFieldIdentifier); + if (typeField != pointerData.MemberEnd() && typeField->value.IsString()) + { + const char* format = loadedTypeId.m_determination == TypeIdDetermination::FailedToDetermine ? + "Unable to resolve provided type: %.*s." : + "Unable to resolve provided type %.*s because the same name points to multiple types."; + status = context.Report(Tasks::RetrieveInfo, Outcomes::Unknown, + AZStd::string::format(format, typeField->value.GetStringLength(), typeField->value.GetString())); + } + else + { + const char* message = loadedTypeId.m_determination == TypeIdDetermination::FailedToDetermine ? + "Unable to resolve provided type." : + "Unable to resolve provided type because the same name points to multiple types."; + status = context.Report(Tasks::RetrieveInfo, Outcomes::Unknown, message); + } + return ResolvePointerResult::FullyProcessed; } if (loadedTypeId.m_typeId != objectType) diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.h index ea236fe93c..d0a07b1a74 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.h @@ -28,6 +28,11 @@ namespace AZ FullyProcessed, ContinueProcessing }; + enum class UseTypeDeserializer : bool + { + No, + Yes + }; enum class TypeIdDetermination : u8 { ExplicitTypeId, // Type id was explicitly defined using "$type". @@ -55,10 +60,11 @@ namespace AZ JsonDeserializer(JsonDeserializer&& rhs) = delete; static JsonSerializationResult::ResultCode Load( - void* object, const Uuid& typeId, const rapidjson::Value& value, bool isNewInstance, JsonDeserializerContext& context); + void* object, const Uuid& typeId, const rapidjson::Value& value, bool isNewInstance, UseTypeDeserializer useCustom, + JsonDeserializerContext& context); static JsonSerializationResult::ResultCode LoadToPointer(void* object, const Uuid& typeId, const rapidjson::Value& value, - JsonDeserializerContext& context); + UseTypeDeserializer useCustom, JsonDeserializerContext& context); static JsonSerializationResult::ResultCode LoadWithClassElement(void* object, const rapidjson::Value& value, const SerializeContext::ClassElement& classElement, JsonDeserializerContext& context); diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerialization.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerialization.cpp index 8ade30cc6c..bc07f684f6 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerialization.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerialization.cpp @@ -245,7 +245,7 @@ namespace AZ { StackedString path(StackedString::Format::JsonPointer); JsonDeserializerContext context(settings); - result = JsonDeserializer::Load(object, objectType, root, false, context); + result = JsonDeserializer::Load(object, objectType, root, false, JsonDeserializer::UseTypeDeserializer::Yes, context); } return result; } @@ -322,7 +322,7 @@ namespace AZ JsonSerializerContext context(settings, allocator); StackedString path(StackedString::Format::ContextPath); - result = JsonSerializer::Store(output, object, defaultObject, objectType, context); + result = JsonSerializer::Store(output, object, defaultObject, objectType, JsonSerializer::UseTypeSerializer::Yes, context); } return result; } diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.cpp index 1fa0dd3c44..f06fb36be8 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.cpp @@ -20,7 +20,7 @@ namespace AZ { JsonSerializationResult::ResultCode JsonSerializer::Store(rapidjson::Value& output, const void* object, const void* defaultObject, - const Uuid& typeId, JsonSerializerContext& context) + const Uuid& typeId, UseTypeSerializer custom, JsonSerializerContext& context) { using namespace JsonSerializationResult; @@ -32,8 +32,8 @@ namespace AZ // First check if there's a generic serializer registered for this. This makes it possible to use serializers that // are not (directly) registered with the Serialize Context. - auto serializer = context.GetRegistrationContext()->GetSerializerForType(typeId); - if (serializer) + if (BaseJsonSerializer* serializer + = (custom == UseTypeSerializer::Yes ? context.GetRegistrationContext()->GetSerializerForType(typeId) : nullptr)) { // Start by setting the object to be an explicit default. output.SetObject(); @@ -57,17 +57,18 @@ namespace AZ "No factory available to create a default object for comparison."); } void* defaultObjectPtr = AZStd::any_cast(&defaultObjectInstance); - ResultCode conversionResult = StoreWithClassData(output, object, defaultObjectPtr, *classData, StoreTypeId::No, context); + ResultCode conversionResult = StoreWithClassData(output, object, defaultObjectPtr, *classData, StoreTypeId::No + , UseTypeSerializer::Yes, context); return ResultCode::Combine(result, conversionResult); } else { - return StoreWithClassData(output, object, defaultObject, *classData, StoreTypeId::No, context); + return StoreWithClassData(output, object, defaultObject, *classData, StoreTypeId::No, custom, context); } } JsonSerializationResult::ResultCode JsonSerializer::StoreFromPointer(rapidjson::Value& output, const void* object, - const void* defaultObject, const Uuid& typeId, JsonSerializerContext& context) + const void* defaultObject, const Uuid& typeId, UseTypeSerializer custom, JsonSerializerContext& context) { using namespace JsonSerializationResult; @@ -85,19 +86,21 @@ namespace AZ AZ_Assert(classData->m_azRtti->GetTypeId() == typeId, "Type id mismatch in '%s' during serialization to a json file. (%s vs %s)", classData->m_name, classData->m_azRtti->GetTypeId().ToString().c_str(), typeId.ToString().c_str()); - return StoreWithClassDataFromPointer(output, object, defaultObject, *classData, context); + return StoreWithClassDataFromPointer(output, object, defaultObject, *classData, custom, context); } JsonSerializationResult::ResultCode JsonSerializer::StoreWithClassData(rapidjson::Value& node, const void* object, const void* defaultObject, const SerializeContext::ClassData& classData, StoreTypeId storeTypeId, - JsonSerializerContext& context) + UseTypeSerializer custom, JsonSerializerContext& context) { using namespace JsonSerializationResult; // Start by setting the object to be an explicit default. node.SetObject(); - auto serializer = context.GetRegistrationContext()->GetSerializerForType(classData.m_typeId); + auto serializer = custom == UseTypeSerializer::Yes + ? context.GetRegistrationContext()->GetSerializerForType(classData.m_typeId) : nullptr; + if (serializer) { ResultCode result = serializer->Store(node, object, defaultObject, classData.m_typeId, context); @@ -153,12 +156,11 @@ namespace AZ } JsonSerializationResult::ResultCode JsonSerializer::StoreWithClassDataFromPointer(rapidjson::Value& output, const void* object, - const void* defaultObject, const SerializeContext::ClassData& classData, JsonSerializerContext& context) + const void* defaultObject, const SerializeContext::ClassData& classData, UseTypeSerializer custom, JsonSerializerContext& context) { using namespace JsonSerializationResult; StoreTypeId storeTypeId = StoreTypeId::No; - Uuid resolvedTypeId = classData.m_typeId; const SerializeContext::ClassData* resolvedClassData = &classData; AZStd::any defaultPointerObject; @@ -176,7 +178,7 @@ namespace AZ } else { - return StoreWithClassData(output, object, defaultObject, *resolvedClassData, storeTypeId, context); + return StoreWithClassData(output, object, defaultObject, *resolvedClassData, storeTypeId, custom, context); } } @@ -221,8 +223,8 @@ namespace AZ { rapidjson::Value value; ResultCode result = classElement.m_flags & SerializeContext::ClassElement::FLG_POINTER ? - StoreWithClassDataFromPointer(value, object, defaultObject, *elementClassData, context): - StoreWithClassData(value, object, defaultObject, *elementClassData, StoreTypeId::No, context); + StoreWithClassDataFromPointer(value, object, defaultObject, *elementClassData, UseTypeSerializer::Yes, context): + StoreWithClassData(value, object, defaultObject, *elementClassData, StoreTypeId::No, UseTypeSerializer::Yes, context); if (result.GetProcessing() != Processing::Halted) { if (parentNode.IsObject()) diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.h index 0ccf020cee..22dd768ec5 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.h @@ -26,6 +26,11 @@ namespace AZ No, Yes }; + enum class UseTypeSerializer : bool + { + No, + Yes + }; enum class ResolvePointerResult { FullyProcessed, @@ -41,16 +46,18 @@ namespace AZ JsonSerializer(JsonSerializer&& rhs) = delete; static JsonSerializationResult::ResultCode Store(rapidjson::Value& output, const void* object, const void* defaultObject, - const Uuid& typeId, JsonSerializerContext& context); + const Uuid& typeId, UseTypeSerializer useCustom, JsonSerializerContext& context); static JsonSerializationResult::ResultCode StoreFromPointer(rapidjson::Value& output, const void* object, const void* defaultObject, - const Uuid& typeId, JsonSerializerContext& context); + const Uuid& typeId, UseTypeSerializer custom, JsonSerializerContext& context); static JsonSerializationResult::ResultCode StoreWithClassData(rapidjson::Value& node, const void* object, const void* defaultObject, - const SerializeContext::ClassData& classData, StoreTypeId storeTypeId, JsonSerializerContext& context); + const SerializeContext::ClassData& classData, StoreTypeId storeTypeId, UseTypeSerializer custom, + JsonSerializerContext& context); static JsonSerializationResult::ResultCode StoreWithClassDataFromPointer(rapidjson::Value& output, const void* object, - const void* defaultObject, const SerializeContext::ClassData& classData, JsonSerializerContext& context); + const void* defaultObject, const SerializeContext::ClassData& classData, UseTypeSerializer custom, + JsonSerializerContext& context); static JsonSerializationResult::ResultCode StoreWithClassElement(rapidjson::Value& parentNode, const void* object, const void* defaultObject, const SerializeContext::ClassElement& classElement, JsonSerializerContext& context); diff --git a/Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonUtils.cpp similarity index 97% rename from Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.cpp rename to Code/Framework/AzCore/AzCore/Serialization/Json/JsonUtils.cpp index 1d3a9674a0..af35842afc 100644 --- a/Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonUtils.cpp @@ -6,7 +6,6 @@ * */ -#include #include #include #include @@ -23,6 +22,8 @@ #include #include +#include + namespace AZ { namespace JsonSerializationUtils @@ -31,7 +32,6 @@ namespace AZ static const char* FileType = "JsonSerialization"; static const char* VersionTag = "Version"; static const char* ClassNameTag = "ClassName"; - static const char* ClassIdTag = "ClassId"; static const char* ClassDataTag = "ClassData"; AZ::Outcome WriteJsonString(const rapidjson::Document& document, AZStd::string& jsonText, WriteJsonSettings settings) @@ -209,6 +209,11 @@ namespace AZ AZ::Outcome ReadJsonString(AZStd::string_view jsonText) { + if (jsonText.empty()) + { + return AZ::Failure(AZStd::string("Failed to parse JSON: input string is empty.")); + } + rapidjson::Document jsonDocument; jsonDocument.Parse(jsonText.data(), jsonText.size()); if (jsonDocument.HasParseError()) @@ -332,6 +337,11 @@ namespace AZ // validate class name auto classData = loadSettings.m_serializeContext->FindClassData(classId); + if (!classData) + { + return AZ::Failure(AZStd::string::format("Try to load class from Id %s", classId.ToString().c_str())); + } + if (azstricmp(classData->m_name, className) != 0) { return AZ::Failure(AZStd::string::format("Try to load class %s from class %s data", classData->m_name, className)); @@ -343,9 +353,9 @@ namespace AZ { return AZ::Failure(deserializeErrors); } + return AZ::Success(); - } - + } AZ::Outcome LoadAnyObjectFromStream(IO::GenericStream& stream, const JsonDeserializerSettings* settings) { diff --git a/Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.h b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonUtils.h similarity index 100% rename from Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.h rename to Code/Framework/AzCore/AzCore/Serialization/Json/JsonUtils.h diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/RegistrationContext.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/RegistrationContext.cpp index fae67d487c..989f306b08 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/RegistrationContext.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/RegistrationContext.cpp @@ -43,7 +43,7 @@ namespace AZ if (!overwriteExisting) { - auto emplaceResult = m_context->m_handledTypesMap.try_emplace(uuid, serializer); + [[maybe_unused]] auto emplaceResult = m_context->m_handledTypesMap.try_emplace(uuid, serializer); AZ_Assert( emplaceResult.second, "Couldn't register Json serializer %s. Another serializer (%s) has already been registered for the same Uuid (%s).", diff --git a/Code/Framework/AzCore/AzCore/Serialization/ObjectStream.cpp b/Code/Framework/AzCore/AzCore/Serialization/ObjectStream.cpp index 73ab174699..6251a2e6de 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/ObjectStream.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/ObjectStream.cpp @@ -1520,6 +1520,7 @@ namespace AZ { if (m_writeElementResultStack.empty()) { + AZ_UNUSED(classData); // Prevent unused warning in release builds AZ_Error("Serialize", false, "CloseElement is attempted to be called without a corresponding WriteElement when writing class %s", classData->m_name); return true; } @@ -1581,6 +1582,7 @@ namespace AZ { if (m_writeElementResultStack.empty()) { + AZ_UNUSED(classData); // Prevent unused warning in release builds AZ_Error("Serialize", false, "CloseElement is attempted to be called without a corresponding WriteElement when writing class %s", classData->m_name); return true; } @@ -1644,6 +1646,7 @@ namespace AZ { if (m_writeElementResultStack.empty()) { + AZ_UNUSED(classData); // Prevent unused warning in release builds AZ_Error("Serialize", false, "CloseElement is attempted to be called without a corresponding WriteElement when writing class %s", classData->m_name); return true; } diff --git a/Code/Framework/AzCore/AzCore/Serialization/SerializationUtils.cpp b/Code/Framework/AzCore/AzCore/Serialization/SerializationUtils.cpp index c8e6c28679..37eacd940e 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/SerializationUtils.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/SerializationUtils.cpp @@ -42,7 +42,7 @@ namespace AZ AZ_Assert(targetPointer, "You must provide a target pointer"); bool foundSuccess = false; - typedef AZStd::function CreationCallback; + using CreationCallback = AZStd::function; auto handler = [&targetPointer, objectClassData, &foundSuccess](void** instance, const SerializeContext::ClassData** classData, const Uuid& classId, SerializeContext* context) { void* convertibleInstance{}; diff --git a/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.cpp b/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.cpp index cea4b795d7..f326b021e7 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.cpp @@ -91,7 +91,7 @@ namespace AZ { AZ_Assert(textVersion == 0, "Unknown char, short, int version!"); (void)textVersion; - long value = strtol(text, NULL, 10); + long value = strtol(text, nullptr, 10); AZ_SERIALIZE_SWAP_ENDIAN(value, isDataBigEndian); return static_cast(stream.Write(sizeof(T), reinterpret_cast(&value))); } @@ -124,7 +124,7 @@ namespace AZ { AZ_Assert(textVersion == 0, "Unknown unsigned char, short, int version!"); (void)textVersion; - unsigned long value = strtoul(text, NULL, 10); + unsigned long value = strtoul(text, nullptr, 10); AZ_SERIALIZE_SWAP_ENDIAN(value, isDataBigEndian); return static_cast(stream.Write(sizeof(T), reinterpret_cast(&value))); } @@ -158,7 +158,7 @@ namespace AZ { AZ_Assert(textVersion == 0, "Unknown unsigned char, short, int version!"); (void)textVersion; - long value = strtol(text, NULL, 10); + long value = strtol(text, nullptr, 10); AZ_SERIALIZE_SWAP_ENDIAN(value, isDataBigEndian); return static_cast(stream.Write(sizeof(T), reinterpret_cast(&value))); } @@ -192,7 +192,7 @@ namespace AZ { AZ_Assert(textVersion == 0, "Unknown unsigned char, short, int version!"); (void)textVersion; - unsigned long value = strtoul(text, NULL, 10); + unsigned long value = strtoul(text, nullptr, 10); AZ_SERIALIZE_SWAP_ENDIAN(value, isDataBigEndian); return static_cast(stream.Write(sizeof(T), reinterpret_cast(&value))); } @@ -225,7 +225,7 @@ namespace AZ { AZ_Assert(textVersion == 0, "Unknown unsigned char, short, int version!"); (void)textVersion; - AZ::s64 value = strtoll(text, NULL, 10); + AZ::s64 value = strtoll(text, nullptr, 10); AZ_SERIALIZE_SWAP_ENDIAN(value, isDataBigEndian); return static_cast(stream.Write(sizeof(AZ::s64), reinterpret_cast(&value))); } @@ -258,7 +258,7 @@ namespace AZ { AZ_Assert(textVersion == 0, "Unknown unsigned char, short, int version!"); (void)textVersion; - unsigned long long value = strtoull(text, NULL, 10); + unsigned long long value = strtoull(text, nullptr, 10); AZ_SERIALIZE_SWAP_ENDIAN(value, isDataBigEndian); return static_cast(stream.Write(sizeof(AZ::u64), reinterpret_cast(&value))); } @@ -292,7 +292,7 @@ namespace AZ { AZ_Assert(textVersion == 0, "Unknown float/double version!"); (void)textVersion; - double value = strtod(text, NULL); + double value = strtod(text, nullptr); AZ_SERIALIZE_SWAP_ENDIAN(value, isDataBigEndian); T data = static_cast(value); @@ -815,7 +815,7 @@ namespace AZ const ClassData* fromClass = FindClassData(fromClassId); if (!fromClass) { - return NULL; + return nullptr; } for (size_t i = 0; i < fromClass->m_elements.size(); ++i) @@ -831,7 +831,7 @@ namespace AZ if (!fromClass->m_azRtti) { - return NULL; // Reflection info failed to cast and we can't find rtti info + return nullptr; // Reflection info failed to cast and we can't find rtti info } fromClassHelper = fromClass->m_azRtti; } @@ -841,7 +841,7 @@ namespace AZ const ClassData* toClass = FindClassData(toClassId); if (!toClass || !toClass->m_azRtti) { - return NULL; // We can't cast without class data or rtti helper + return nullptr; // We can't cast without class data or rtti helper } toClassHelper = toClass->m_azRtti; } @@ -855,7 +855,7 @@ namespace AZ // [5/22/2012] //========================================================================= SerializeContext::DataElement::DataElement() - : m_name(0) + : m_name(nullptr) , m_nameCrc(0) , m_dataSize(0) , m_byteStream(&m_buffer) @@ -1045,7 +1045,7 @@ namespace AZ //========================================================================= bool SerializeContext::DataElementNode::Convert(SerializeContext& sc, const char* name, const Uuid& id) { - AZ_Assert(name != NULL && strlen(name) > 0, "Empty name is an INVALID element name!"); + AZ_Assert(name != nullptr && strlen(name) > 0, "Empty name is an INVALID element name!"); u32 nameCrc = Crc32(name); #if defined(AZ_ENABLE_TRACING) @@ -1165,7 +1165,7 @@ namespace AZ int SerializeContext::DataElementNode::AddElement(SerializeContext& sc, const char* name, const ClassData& classData) { (void)sc; - AZ_Assert(name != NULL && strlen(name) > 0, "Empty name is an INVALID element name!"); + AZ_Assert(name != nullptr && strlen(name) > 0, "Empty name is an INVALID element name!"); u32 nameCrc = Crc32(name); #if defined(AZ_ENABLE_TRACING) @@ -1703,7 +1703,7 @@ namespace AZ m_classData->second.m_serializer = AZStd::move(serializer); return this; - + } //========================================================================= @@ -1801,7 +1801,7 @@ namespace AZ void* objectPtr = ptr; const AZ::Uuid* classIdPtr = &classId; const SerializeContext::ClassData* dataClassInfo = classData; - + if (classElement) { // if we are a pointer, then we may be pointing to a derived type. @@ -1854,14 +1854,14 @@ namespace AZ DbgStackEntry de; de.m_dataPtr = objectPtr; de.m_uuidPtr = classIdPtr; - de.m_elementName = classElement ? classElement->m_name : NULL; + de.m_elementName = classElement ? classElement->m_name : nullptr; de.m_classData = dataClassInfo; de.m_classElement = classElement; callContext->m_errorHandler->Push(de); } #endif // AZ_ENABLE_SERIALIZER_DEBUG - if (dataClassInfo == NULL) + if (dataClassInfo == nullptr) { #if defined (AZ_ENABLE_SERIALIZER_DEBUG) AZStd::string error; @@ -2182,9 +2182,9 @@ namespace AZ AZ::SerializeContext::DataPatchUpgradeHandler::~DataPatchUpgradeHandler() { - for (auto fieldUpgrades : m_upgrades) + for (const auto& fieldUpgrades : m_upgrades) { - for (auto versionUpgrades : fieldUpgrades.second) + for (const auto& versionUpgrades : fieldUpgrades.second) { for (auto* upgrade : versionUpgrades.second) { @@ -2192,8 +2192,8 @@ namespace AZ } } } - } - + } + void AZ::SerializeContext::DataPatchUpgradeHandler::AddFieldUpgrade(DataPatchUpgrade* upgrade) { // Find the field @@ -2448,7 +2448,7 @@ namespace AZ classData->m_eventHandler->OnWriteEnd(dataPtr); classData->m_eventHandler->OnObjectCloned(dataPtr); } - + if (classData->m_serializer) { classData->m_serializer->PostClone(dataPtr); @@ -2489,7 +2489,7 @@ namespace AZ { if (cd.m_azRtti->IsTypeOf(typeId)) { - if (!callback(&cd, 0)) + if (!callback(&cd, nullptr)) { return; } @@ -2507,7 +2507,7 @@ namespace AZ // if both classes have azRtti they will be enumerated already by the code above (azrtti) if (cd.m_azRtti == nullptr || cd.m_elements[i].m_azRtti == nullptr) { - if (!callback(&cd, 0)) + if (!callback(&cd, nullptr)) { return; } @@ -2539,7 +2539,7 @@ namespace AZ if (baseClassData) { callbackData.m_reportedTypes.push_back(baseClassData->m_typeId); - if (!callback(baseClassData, 0)) + if (!callback(baseClassData, nullptr)) { return; } @@ -2586,8 +2586,8 @@ namespace AZ void SerializeContext::RegisterDataContainer(AZStd::unique_ptr dataContainer) { m_dataContainers.push_back(AZStd::move(dataContainer)); - } - + } + //========================================================================= // EnumerateBaseRTTIEnumCallback // [11/13/2012] @@ -2731,10 +2731,10 @@ namespace AZ //========================================================================= void SerializeContext::IDataContainer::DeletePointerData(SerializeContext* context, const ClassElement* classElement, const void* element) { - AZ_Assert(context != NULL && classElement != NULL && element != NULL, "Invalid input"); + AZ_Assert(context != nullptr && classElement != nullptr && element != nullptr, "Invalid input"); const AZ::Uuid* elemUuid = &classElement->m_typeId; // find the class data for the specific element - const SerializeContext::ClassData* classData = classElement->m_genericClassInfo ? classElement->m_genericClassInfo->GetClassData() : context->FindClassData(*elemUuid, NULL, 0); + const SerializeContext::ClassData* classData = classElement->m_genericClassInfo ? classElement->m_genericClassInfo->GetClassData() : context->FindClassData(*elemUuid, nullptr, 0); if (classElement->m_flags & SerializeContext::ClassElement::FLG_POINTER) { const void* dataPtr = *reinterpret_cast(element); @@ -2745,7 +2745,7 @@ namespace AZ if (*actualClassId != *elemUuid) { // we are pointing to derived type, adjust class data, uuid and pointer. - classData = context->FindClassData(*actualClassId, NULL, 0); + classData = context->FindClassData(*actualClassId, nullptr, 0); elemUuid = actualClassId; if (classData) { @@ -2754,7 +2754,7 @@ namespace AZ } } } - if (classData == NULL) + if (classData == nullptr) { if ((classElement->m_flags & ClassElement::FLG_POINTER) != 0) { @@ -3250,7 +3250,7 @@ namespace AZ return m_moduleOSAllocator; } - // Take advantage of static variables being unique per dll module to clean up module specific registered classes when the module unloads + // Take advantage of static variables being unique per dll module to clean up module specific registered classes when the module unloads SerializeContext::PerModuleGenericClassInfo& GetCurrentSerializeContextModule() { static SerializeContext::PerModuleGenericClassInfo s_ModuleCleanupInstance; diff --git a/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.h b/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.h index d48e9df665..3d7f3c00f8 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.h +++ b/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.h @@ -602,7 +602,7 @@ namespace AZ ///< @param resultPtr output parameter that is populated with the memory address that can be used to store an element of the convertible type ///< @param convertibleTypeId type to check to determine if it can converted to an element of class represent by this Class Data ///< @param classPtr memory address of the class represented by the ClassData - ///< @return true if a non-null memory address has been returned that can store the convertible type + ///< @return true if a non-null memory address has been returned that can store the convertible type bool ConvertFromType(void*& convertibleTypePtr, const TypeId& convertibleTypeId, void* classPtr, AZ::SerializeContext& serializeContext) const; /// Find the persistence id (check base classes) \todo this is a TEMP fix, analyze and cache that information in the class @@ -797,8 +797,8 @@ namespace AZ virtual void* ReserveElement(void* instance, const ClassElement* classElement) = 0; /// Free an element that was reserved using ReserveElement, but was not stored by calling StoreElement. virtual void FreeReservedElement(void* instance, void* element, SerializeContext* deletePointerDataContext) - { - RemoveElement(instance, element, deletePointerDataContext); + { + RemoveElement(instance, element, deletePointerDataContext); } /// Get an element's address by its index (called before the element is loaded). virtual void* GetElementByIndex(void* instance, const ClassElement* classElement, size_t index) = 0; @@ -858,7 +858,7 @@ namespace AZ /** * Data Converter interface which can be used to provide a conversion operation from to unrelated C++ types - * derived class to base class casting is taken care of through the RTTI system so those relations should not be + * derived class to base class casting is taken care of through the RTTI system so those relations should not be * check within this class */ class IDataConverter @@ -879,7 +879,7 @@ namespace AZ ///< @param convertibleTypeId type to check to determine if it can converted to an element of class represent by this Class Data ///< @param classPtr memory address of the class represented by the @classData type ///< @param classData reference to the metadata representing the type stored in classPtr - ///< @return true if a non-null memory address has been returned that can store the convertible type + ///< @return true if a non-null memory address has been returned that can store the convertible type virtual bool ConvertFromType(void*& convertibleTypePtr, const TypeId& convertibleTypeId, void* classPtr, const SerializeContext::ClassData& classData, SerializeContext& /*serializeContext*/) { if (classData.m_typeId == convertibleTypeId) @@ -1054,7 +1054,7 @@ namespace AZ AZStd::vector FindClassId(const AZ::Crc32& classNameCrc) const; /// Find GenericClassData data based on the supplied class ID - GenericClassInfo* FindGenericClassInfo(const Uuid& classId) const; + GenericClassInfo* FindGenericClassInfo(const Uuid& classId) const; /// Creates an AZStd::any based on the provided class Uuid, or returns an empty AZStd::any if no class data is found or the class is virtual AZStd::any CreateAny(const Uuid& classId); @@ -1161,7 +1161,7 @@ namespace AZ /* Declare a name change of a serialized field * These are used by the serializer to repair old data patches - * + * */ ClassBuilder* NameChange(unsigned int fromVersion, unsigned int toVersion, AZStd::string_view oldFieldName, AZStd::string_view newFieldName); @@ -1403,7 +1403,7 @@ namespace AZ template struct SerializeGenericTypeInfo { - // Provides a specific type alias that can be used to create GenericClassInfo of the + // Provides a specific type alias that can be used to create GenericClassInfo of the // specified type. By default this is GenericClassInfo class which is abstract using ClassInfoType = GenericClassInfo; @@ -1938,7 +1938,7 @@ namespace AZ if (m_context->IsRemovingReflection()) { // Delete any attributes allocated for this call. - for (auto attributePair : attributes) + for (auto& attributePair : attributes) { delete attributePair.second; } @@ -1955,7 +1955,7 @@ namespace AZ m_classData->second.m_name, AzTypeInfo::Name()); - // SerializeGenericTypeInfo::GetClassTypeId() is needed solely because + // SerializeGenericTypeInfo::GetClassTypeId() is needed solely because // the SerializeGenericTypeInfo specialization for AZ::Data::Asset returns the GetAssetClassId() value // and not the AzTypeInfo>::Uuid() // Therefore in order to remain backwards compatible the SerializeGenericTypeInfo::GetClassTypeId specialization diff --git a/Code/Framework/AzCore/AzCore/Serialization/std/VariantReflection.inl b/Code/Framework/AzCore/AzCore/Serialization/std/VariantReflection.inl index 391133dd9f..70972bb846 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/std/VariantReflection.inl +++ b/Code/Framework/AzCore/AzCore/Serialization/std/VariantReflection.inl @@ -483,9 +483,9 @@ namespace AZ } private: static void ObjectStreamWriter(SerializeContext::EnumerateInstanceCallContext& callContext, const void* variantPtr, - const SerializeContext::ClassData& variantClassData, const SerializeContext::ClassElement* variantClassElement) + [[maybe_unused]] const SerializeContext::ClassData& variantClassData, const SerializeContext::ClassElement* variantClassElement) { - auto alternativeVisitor = [&callContext, &variantClassData, variantClassElement](auto&& elementAlt) + auto alternativeVisitor = [&callContext, variantClassElement](auto&& elementAlt) { using AltType = AZStd::remove_cvref_t; const SerializeContext& context = *callContext.m_context; diff --git a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryMergeUtils.cpp b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryMergeUtils.cpp index 6b89b8c044..cb666a7c02 100644 --- a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryMergeUtils.cpp +++ b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryMergeUtils.cpp @@ -550,7 +550,7 @@ namespace AZ::SettingsRegistryMergeUtils } registry.Set(FilePathKey_ProjectUserPath, projectUserPath.Native()); - // Set the user directory with the provided path or using project/user as default + // Set the log directory with the provided path or using project/user/log as default auto projectLogPathKey = FixedValueString::format("%s/project_log_path", BootstrapSettingsRootKey); AZ::IO::FixedMaxPath projectLogPath; if (!registry.Get(projectLogPath.Native(), projectLogPathKey)) @@ -640,7 +640,7 @@ namespace AZ::SettingsRegistryMergeUtils } #if !AZ_TRAIT_OS_IS_HOST_OS_PLATFORM - // Setup the cache and user paths when to platform specific locations when running on non-host platforms + // Setup the cache, user, and log paths to platform specific locations when running on non-host platforms path = engineRoot; if (AZStd::optional nonHostCacheRoot = Utils::GetDefaultAppRootPath(); nonHostCacheRoot) @@ -656,13 +656,16 @@ namespace AZ::SettingsRegistryMergeUtils if (AZStd::optional devWriteStorage = Utils::GetDevWriteStoragePath(); devWriteStorage) { - registry.Set(FilePathKey_DevWriteStorage, *devWriteStorage); - registry.Set(FilePathKey_ProjectUserPath, *devWriteStorage); + const AZ::IO::FixedMaxPath devWriteStoragePath(*devWriteStorage); + registry.Set(FilePathKey_DevWriteStorage, devWriteStoragePath.LexicallyNormal().Native()); + registry.Set(FilePathKey_ProjectUserPath, (devWriteStoragePath / "user").LexicallyNormal().Native()); + registry.Set(FilePathKey_ProjectLogPath, (devWriteStoragePath / "user/log").LexicallyNormal().Native()); } else { registry.Set(FilePathKey_DevWriteStorage, path.LexicallyNormal().Native()); registry.Set(FilePathKey_ProjectUserPath, (path / "user").LexicallyNormal().Native()); + registry.Set(FilePathKey_ProjectLogPath, (path / "user/log").LexicallyNormal().Native()); } #endif // AZ_TRAIT_OS_IS_HOST_OS_PLATFORM } @@ -1001,7 +1004,7 @@ namespace AZ::SettingsRegistryMergeUtils } AZ::SettingsRegistryInterface::VisitResponse Traverse( AZStd::string_view path, AZStd::string_view valueName, AZ::SettingsRegistryInterface::VisitAction action, - AZ::SettingsRegistryInterface::Type type) + AZ::SettingsRegistryInterface::Type type) override { // Pass the pointer path to the inclusion filter if available if (m_dumperSettings.m_includeFilter && !m_dumperSettings.m_includeFilter(path)) @@ -1055,7 +1058,7 @@ namespace AZ::SettingsRegistryMergeUtils AZ::SettingsRegistryInterface::VisitResponse::Done; } - void Visit(AZStd::string_view, AZStd::string_view valueName, AZ::SettingsRegistryInterface::Type, bool value) + void Visit(AZStd::string_view, AZStd::string_view valueName, AZ::SettingsRegistryInterface::Type, bool value) override { m_result = m_result && WriteName(valueName) && m_writer.Bool(value); } @@ -1070,12 +1073,12 @@ namespace AZ::SettingsRegistryMergeUtils m_result = m_result && WriteName(valueName) && m_writer.Uint64(value); } - void Visit(AZStd::string_view, AZStd::string_view valueName, AZ::SettingsRegistryInterface::Type, double value) + void Visit(AZStd::string_view, AZStd::string_view valueName, AZ::SettingsRegistryInterface::Type, double value) override { m_result = m_result && WriteName(valueName) && m_writer.Double(value); } - void Visit(AZStd::string_view, AZStd::string_view valueName, AZ::SettingsRegistryInterface::Type, AZStd::string_view value) + void Visit(AZStd::string_view, AZStd::string_view valueName, AZ::SettingsRegistryInterface::Type, AZStd::string_view value) override { m_result = m_result && WriteName(valueName) && m_writer.String(value.data(), aznumeric_caster(value.size())); } diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceComponent.cpp b/Code/Framework/AzCore/AzCore/Slice/SliceComponent.cpp index 23a197b2ad..03ed3f6ebb 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Slice/SliceComponent.cpp @@ -3839,6 +3839,7 @@ namespace AZ { if (instance->GetId() == existingInstance.GetId()) { + AZ_UNUSED(sliceReference); // Prevent unused warning in release builds AZ_Warning("Slice", false, "Multiple slice instances with the same ID from slice %s were found. The last instance found has been loaded.", sliceReference.GetSliceAsset().GetHint().c_str()); return true; diff --git a/Code/Framework/AzCore/AzCore/State/HSM.cpp b/Code/Framework/AzCore/AzCore/State/HSM.cpp index e9e069cf9a..56a7e9a27a 100644 --- a/Code/Framework/AzCore/AzCore/State/HSM.cpp +++ b/Code/Framework/AzCore/AzCore/State/HSM.cpp @@ -187,7 +187,7 @@ void HSM::ClearStateHandler(StateId id) { m_states[id].handler.clear(); - m_states[id].name = NULL; + m_states[id].name = nullptr; m_states[id].superId = InvalidStateId; } diff --git a/Code/Framework/AzCore/AzCore/State/HSM.h b/Code/Framework/AzCore/AzCore/State/HSM.h index 042843cb7d..4004ca4341 100644 --- a/Code/Framework/AzCore/AzCore/State/HSM.h +++ b/Code/Framework/AzCore/AzCore/State/HSM.h @@ -103,13 +103,10 @@ namespace AZ struct State { - State() - : superId(InvalidStateId) - , name(NULL) {} StateHandler handler; - StateId superId; ///< State id of the super state, InvalidStateId if this is a top state InvalidStateId. - StateId subId; ///< If != InvalidStateId it will enter the sub ID after the state Enter event is called. - const char* name; + StateId superId = InvalidStateId; ///< State id of the super state, InvalidStateId if this is a top state InvalidStateId. + StateId subId = InvalidStateId; ///< If != InvalidStateId it will enter the sub ID after the state Enter event is called. + const char* name = nullptr; }; AZStd::array m_states; }; diff --git a/Code/Framework/AzCore/AzCore/UnitTest/MockComponentApplication.h b/Code/Framework/AzCore/AzCore/UnitTest/MockComponentApplication.h index a23414700a..8f069da9dd 100644 --- a/Code/Framework/AzCore/AzCore/UnitTest/MockComponentApplication.h +++ b/Code/Framework/AzCore/AzCore/UnitTest/MockComponentApplication.h @@ -44,7 +44,6 @@ namespace UnitTest MOCK_CONST_METHOD0(GetAppRoot, const char* ()); MOCK_CONST_METHOD0(GetEngineRoot, const char* ()); MOCK_CONST_METHOD0(GetExecutableFolder, const char* ()); - MOCK_METHOD0(GetDrillerManager, AZ::Debug::DrillerManager* ()); MOCK_CONST_METHOD1(QueryApplicationType, void(AZ::ApplicationTypeQuery&)); }; } // namespace UnitTest diff --git a/Code/Framework/AzCore/AzCore/UnitTest/TestTypes.h b/Code/Framework/AzCore/AzCore/UnitTest/TestTypes.h index a7aa731c09..c3e3f5210a 100644 --- a/Code/Framework/AzCore/AzCore/UnitTest/TestTypes.h +++ b/Code/Framework/AzCore/AzCore/UnitTest/TestTypes.h @@ -11,6 +11,7 @@ #include #include +#include #include #include #include @@ -162,7 +163,7 @@ namespace UnitTest struct CreationCounter { AZ_TYPE_INFO(CreationCounter, "{E9E35486-4366-4066-86E5-1A8CEB44198B}"); - AZ_ALIGN(int test[size / sizeof(int)], alignment); + alignas(alignment) int test[size / sizeof(int)]; static int s_count; static int s_copied; diff --git a/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsProvider.cpp b/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsProvider.cpp index 6c92803ac4..d56fc9a5d6 100644 --- a/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsProvider.cpp +++ b/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsProvider.cpp @@ -81,8 +81,12 @@ namespace AZ if (settingsFile.IsOpen()) { IO::SystemFileStream settingsFileStream(&settingsFile, false); - ObjectStream::ClassReadyCB readyCB(AZStd::bind(&UserSettingsProvider::OnSettingLoaded, this, AZStd::placeholders::_1, AZStd::placeholders::_2, AZStd::placeholders::_3)); - + ObjectStream::ClassReadyCB readyCB( + [this](void* classPtr, const Uuid& classId, const SerializeContext* sc) + { + OnSettingLoaded(classPtr, classId, sc); + }); + // do not try to load assets during User Settings Provider bootup - we are still initializing the application! // in addition, the file may contain settings we don't understand, from other applications - don't error on those. settingsLoaded = ObjectStream::LoadBlocking(&settingsFileStream, *sc, readyCB, ObjectStream::FilterDescriptor(&AZ::Data::AssetFilterNoAssetLoading, AZ::ObjectStream::FILTERFLAG_IGNORE_UNKNOWN_CLASSES)); @@ -104,7 +108,7 @@ namespace AZ { AZStd::vector saveBuffer; AZ::IO::ByteContainerStream> byteStream(&saveBuffer); - + ObjectStream* objStream = ObjectStream::Create(&byteStream, *sc, ObjectStream::ST_XML); bool writtenOk = objStream->WriteClass(&m_settings); bool streamOk = objStream->Finalize(); diff --git a/Code/Framework/AzCore/AzCore/azcore_files.cmake b/Code/Framework/AzCore/AzCore/azcore_files.cmake index 1ea86c7b93..c2ee439645 100644 --- a/Code/Framework/AzCore/AzCore/azcore_files.cmake +++ b/Code/Framework/AzCore/AzCore/azcore_files.cmake @@ -93,20 +93,18 @@ set(FILES Debug/AssetTracking.h Debug/AssetTrackingTypesImpl.h Debug/AssetTrackingTypes.h + Debug/Budget.h + Debug/Budget.cpp + Debug/BudgetTracker.h + Debug/BudgetTracker.cpp Debug/LocalFileEventLogger.h Debug/LocalFileEventLogger.cpp - Debug/FrameProfiler.h - Debug/FrameProfilerBus.h - Debug/FrameProfilerComponent.cpp - Debug/FrameProfilerComponent.h Debug/IEventLogger.h Debug/MemoryProfiler.h Debug/Profiler.cpp + Debug/Profiler.inl Debug/Profiler.h Debug/ProfilerBus.h - Debug/ProfilerDriller.cpp - Debug/ProfilerDriller.h - Debug/ProfilerDrillerBus.h Debug/StackTracer.h Debug/EventTrace.h Debug/EventTrace.cpp @@ -531,6 +529,8 @@ set(FILES Serialization/Json/JsonStringConversionUtils.h Serialization/Json/JsonSystemComponent.h Serialization/Json/JsonSystemComponent.cpp + Serialization/Json/JsonUtils.h + Serialization/Json/JsonUtils.cpp Serialization/Json/MapSerializer.h Serialization/Json/MapSerializer.cpp Serialization/Json/RegistrationContext.h @@ -570,8 +570,6 @@ set(FILES Statistics/StatisticalProfilerProxySystemComponent.cpp Statistics/StatisticalProfilerProxySystemComponent.h Statistics/StatisticsManager.h - Statistics/TimeDataStatisticsManager.cpp - Statistics/TimeDataStatisticsManager.h StringFunc/StringFunc.cpp StringFunc/StringFunc.h UserSettings/UserSettings.cpp diff --git a/Code/Framework/AzCore/AzCore/base.h b/Code/Framework/AzCore/AzCore/base.h index 20f5c17b27..f6ae39dcda 100644 --- a/Code/Framework/AzCore/AzCore/base.h +++ b/Code/Framework/AzCore/AzCore/base.h @@ -293,7 +293,7 @@ namespace AZ #define AZ_DEFAULT_COPY_MOVE(_Class) AZ_DEFAULT_COPY(_Class) AZ_DEFAULT_MOVE(_Class) // Macro that can be used to avoid unreferenced variable warnings -#define AZ_UNUSED(x) (void)x; +#define AZ_UNUSED(x) (void)x #define AZ_DEFINE_ENUM_BITWISE_OPERATORS(EnumType) \ inline constexpr EnumType operator | (EnumType a, EnumType b) \ diff --git a/Code/Framework/AzCore/AzCore/std/any.h b/Code/Framework/AzCore/AzCore/std/any.h index c0e277c2d6..514f5a9c86 100644 --- a/Code/Framework/AzCore/AzCore/std/any.h +++ b/Code/Framework/AzCore/AzCore/std/any.h @@ -384,7 +384,7 @@ namespace AZStd */ union { - AZ_ALIGN(char m_buffer[Internal::ANY_SBO_BUF_SIZE], 32); // Used for objects smaller than SBO_BUF_SIZE + alignas(32) char m_buffer[Internal::ANY_SBO_BUF_SIZE]; // Used for objects smaller than SBO_BUF_SIZE void* m_pointer; // Pointer to large objects }; type_info m_typeInfo; diff --git a/Code/Framework/AzCore/AzCore/std/function/function_base.h b/Code/Framework/AzCore/AzCore/std/function/function_base.h index 32892a4c03..6aa8a8ebc5 100644 --- a/Code/Framework/AzCore/AzCore/std/function/function_base.h +++ b/Code/Framework/AzCore/AzCore/std/function/function_base.h @@ -10,6 +10,7 @@ #ifndef AZSTD_FUNCTION_BASE_HEADER #define AZSTD_FUNCTION_BASE_HEADER +#include #include #include #include @@ -18,10 +19,11 @@ #include #include #include +#include #include #define AZSTD_FUNCTION_TARGET_FIX(x) -#define AZSTD_FUNCTION_ENABLE_IF_NOT_INTEGRAL(Functor, Type) AZStd::enable_if_t, Type> +#define AZSTD_FUNCTION_ENABLE_IF_NOT_INTEGRAL(Functor, Type) AZStd::enable_if_t && !std::is_null_pointer_v, Type> @@ -590,8 +592,8 @@ namespace AZStd Internal::function_util::function_buffer type_result; type_result.type.type = aztypeid(Functor); - type_result.type.const_qualified = is_const::value; - type_result.type.volatile_qualified = is_volatile::value; + type_result.type.const_qualified = AZStd::is_const::value; + type_result.type.volatile_qualified = AZStd::is_volatile::value; vtable->manager(functor, type_result, Internal::function_util::check_functor_type_tag); return static_cast(type_result.obj_ptr); } @@ -607,7 +609,7 @@ namespace AZStd Internal::function_util::function_buffer type_result; type_result.type.type = aztypeid(Functor); type_result.type.const_qualified = true; - type_result.type.volatile_qualified = is_volatile::value; + type_result.type.volatile_qualified = AZStd::is_volatile::value; vtable->manager(functor, type_result, Internal::function_util::check_functor_type_tag); // GCC 2.95.3 gets the CV qualifiers wrong here, so we // can't do the static_cast that we should do. diff --git a/Code/Framework/AzCore/AzCore/std/function/function_template.h b/Code/Framework/AzCore/AzCore/std/function/function_template.h index 7f388c4006..a9c24ca75f 100644 --- a/Code/Framework/AzCore/AzCore/std/function/function_template.h +++ b/Code/Framework/AzCore/AzCore/std/function/function_template.h @@ -359,7 +359,7 @@ namespace AZStd { functor.obj_ref.obj_ptr = (void*)&f.get(); functor.obj_ref.is_const_qualified = is_const::value; - functor.obj_ref.is_volatile_qualified = is_volatile::value; + functor.obj_ref.is_volatile_qualified = AZStd::is_volatile::value; return true; } else @@ -531,7 +531,7 @@ namespace AZStd //! A static vtable is used to avoid the need to dynamically allocate a vtable //! whose purpose is to contain a function ptr that can the manage the function buffer //! i.e performs the copy, move and destruction operations for the function buffer - //! as well as to validate if a the stored function can be type_cast to the type supplied in + //! as well as to validate if a the stored function can be type_cast to the type supplied in //! std::function::target //! The vtable other purpose is to store a function ptr that is used to wrap the invocation of the underlying function static vtable_type stored_vtable = get_invoker::template create_vtable>(); @@ -556,7 +556,7 @@ namespace AZStd //! A static vtable is used to avoid the need to dynamically allocate a vtable //! whose purpose is to contain a function ptr that can the manage the function buffer //! i.e performs the copy, move and destruction operations for the function buffer - //! as well as to validate if a the stored function can be type_cast to the type supplied in + //! as well as to validate if a the stored function can be type_cast to the type supplied in //! std::function::target //! The vtable other purpose is to store a function ptr that is used to wrap the invocation of the underlying function static vtable_type stored_vtable = get_invoker::template create_vtable>(); @@ -633,7 +633,7 @@ namespace AZStd {} function(nullptr_t) - : base_type() {} + : base_type(nullptr) {} function(const self_type& f) : base_type(static_cast(f)){} function(const base_type& f) @@ -678,7 +678,7 @@ namespace AZStd return *this; } - R operator()(Args... args) const + R operator()(Args... args) const { return base_type::operator()(AZStd::forward(args)...); } diff --git a/Code/Framework/AzCore/AzCore/std/math.h b/Code/Framework/AzCore/AzCore/std/math.h index 74685cb84e..03f12e6e08 100644 --- a/Code/Framework/AzCore/AzCore/std/math.h +++ b/Code/Framework/AzCore/AzCore/std/math.h @@ -22,6 +22,8 @@ namespace AZStd using std::exp2; using std::floor; using std::fmod; + using std::llround; + using std::lround; using std::pow; using std::round; using std::sin; diff --git a/Code/Framework/AzCore/AzCore/std/parallel/binary_semaphore.h b/Code/Framework/AzCore/AzCore/std/parallel/binary_semaphore.h index f9d0cdbe4d..9496d7c18b 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/binary_semaphore.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/binary_semaphore.h @@ -70,11 +70,11 @@ namespace AZStd bool try_acquire_until(const chrono::time_point& abs_time) { auto timeNow = chrono::system_clock::now(); - if (timeNow >= absTime) + if (timeNow >= abs_time) { return false; // we timed out already! } - auto deltaTime = absTime - timeNow; + auto deltaTime = abs_time - timeNow; auto timeToTry = chrono::duration_cast(deltaTime); return (WaitForSingleObject(m_event, aznumeric_cast(timeToTry.count())) == AZ_WAIT_OBJECT_0); } diff --git a/Code/Framework/AzCore/AzCore/std/parallel/combinable.h b/Code/Framework/AzCore/AzCore/std/parallel/combinable.h index 89ba35b5a0..7d62a7b9ac 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/combinable.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/combinable.h @@ -164,7 +164,7 @@ namespace AZStd //enough. struct Node { - AZ_ALIGN(T m_value, 64); //alignment to avoid cache line sharing + alignas(64) T m_value; //alignment to avoid cache line sharing thread::id m_threadId; Node* m_next; }; diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stamped_queue.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stamped_queue.h index 52fb9cccdf..26cb7f345a 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stamped_queue.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stamped_queue.h @@ -21,7 +21,7 @@ namespace AZStd template struct lock_free_stamped_node_ptr { - AZ_ALIGN(struct lock_free_stamped_queue_node* m_node, 8); + alignas(8) struct lock_free_stamped_queue_node* m_node; unsigned int m_stamp; }; diff --git a/Code/Framework/AzCore/AzCore/std/string/regex.cpp b/Code/Framework/AzCore/AzCore/std/string/regex.cpp index 65f6bc732e..a8604130fe 100644 --- a/Code/Framework/AzCore/AzCore/std/string/regex.cpp +++ b/Code/Framework/AzCore/AzCore/std/string/regex.cpp @@ -31,7 +31,7 @@ namespace AZStd AZ_REGEX_CHAR_CLASS_NAME("upper", RegexTraits::Ch_upper), AZ_REGEX_CHAR_CLASS_NAME("w", RegexTraits::Ch_invalid), AZ_REGEX_CHAR_CLASS_NAME("xdigit", RegexTraits::Ch_xdigit), - {0, 0, 0}, + {nullptr, 0, 0}, }; template<> @@ -52,7 +52,7 @@ namespace AZStd AZ_REGEX_CHAR_CLASS_NAME(L"upper", RegexTraits::Ch_upper), AZ_REGEX_CHAR_CLASS_NAME(L"w", RegexTraits::Ch_invalid), AZ_REGEX_CHAR_CLASS_NAME(L"xdigit", RegexTraits::Ch_xdigit), - {0, 0, 0}, + {nullptr, 0, 0}, }; #undef AZ_REGEX_CHAR_CLASS_NAME } // namespace AZStd diff --git a/Code/Framework/AzCore/AzCore/std/string/string_view.h b/Code/Framework/AzCore/AzCore/std/string/string_view.h index 4ded44644f..b2390c293a 100644 --- a/Code/Framework/AzCore/AzCore/std/string/string_view.h +++ b/Code/Framework/AzCore/AzCore/std/string/string_view.h @@ -9,6 +9,7 @@ #include #include +#include namespace AZStd @@ -875,22 +876,7 @@ namespace AZStd for (; first != last; ++first) { hash ^= static_cast(*first); -#if AZ_COMPILER_MSVC < 1924 - // Workaround for integer overflow warning for hash function when used in a constexpr context - // The warning must be disabled at the call site and is a compiler bug that has been fixed - // with Visual Studio 2019 version 16.4 - // https://developercommunity.visualstudio.com/content/problem/211134/unsigned-integer-overflows-in-constexpr-functionsa.html?childToView=211580#comment-211580 - constexpr size_t fnvPrimeHigh{ 0x100ULL }; - constexpr size_t fnvPrimeLow{ 0x000001b3 }; - const uint64_t hashHigh{ hash >> 32 }; - const uint64_t hashLow{ hash & 0xFFFF'FFFF }; - const uint64_t lowResult{ hashLow * fnvPrimeLow }; - const uint64_t fnvPrimeHighResult{ hashLow * fnvPrimeHigh }; - const uint64_t hashHighResult{ hashHigh * fnvPrimeLow }; - hash = (lowResult & 0xffff'ffff) + (((lowResult >> 32) + (fnvPrimeHighResult & 0xffff'ffff) + (hashHighResult & 0xffff'ffff)) << 32); -#else hash *= fnvPrime; -#endif } return hash; } diff --git a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Debug/Trace_Apple.cpp b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Debug/Trace_Apple.cpp index 4ae25bfaf9..f9d4806bcb 100644 --- a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Debug/Trace_Apple.cpp +++ b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Debug/Trace_Apple.cpp @@ -56,6 +56,13 @@ namespace AZ return ((info.kp_proc.p_flag & P_TRACED) != 0); } + bool AttachDebugger() + { + // Not supported yet + AZ_Assert(false, "AttachDebugger() is not supported for Mac platform yet"); + return false; + } + void HandleExceptions(bool) {} diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/StackTracer_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/StackTracer_UnixLike.cpp index abfabbbd54..f66a9d3b18 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/StackTracer_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/StackTracer_UnixLike.cpp @@ -57,7 +57,7 @@ StackRecorder::Record(StackFrame* frames, unsigned int maxNumOfFrames, unsigned int skip = static_cast((suppressCount == 0) ? 1 : suppressCount); // Skip at least this function while ((unw_step(&cursor) > 0) && (count < maxNumOfFrames)) { - unw_word_t offset, pc; + unw_word_t pc; unw_get_reg(&cursor, UNW_REG_IP, &pc); if (pc == 0) { diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/Trace_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/Trace_UnixLike.cpp index 545a712df8..e9c0234ffa 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/Trace_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/Trace_UnixLike.cpp @@ -60,6 +60,13 @@ namespace AZ return s_debuggerDetected; } + bool AttachDebugger() + { + // Not supported yet + AZ_Assert(false, "AttachDebugger() is not supported for Unix platform yet"); + return false; + } + void HandleExceptions(bool) {} diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Module/DynamicModuleHandle_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Module/DynamicModuleHandle_UnixLike.cpp index bfc69a05a3..5cf854d49f 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Module/DynamicModuleHandle_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Module/DynamicModuleHandle_UnixLike.cpp @@ -139,7 +139,7 @@ namespace AZ if (m_handle) { result = dlclose(m_handle) == 0 ? true : false; - m_handle = 0; + m_handle = nullptr; } return result; } diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Debug/Trace_WinAPI.cpp b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Debug/Trace_WinAPI.cpp index 99ea10e4bc..28d3459ba3 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Debug/Trace_WinAPI.cpp +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Debug/Trace_WinAPI.cpp @@ -49,6 +49,45 @@ namespace AZ } } + bool AttachDebugger() + { + if (IsDebuggerPresent()) + { + return true; + } + + // Launch vsjitdebugger.exe, this app is always present in System32 folder + // with an installation of any version of visual studio. + // It will open a debugging dialog asking the user what debugger to use + + STARTUPINFOW startupInfo = {0}; + startupInfo.cb = sizeof(startupInfo); + PROCESS_INFORMATION processInfo = {0}; + + wchar_t cmdline[MAX_PATH]; + swprintf_s(cmdline, L"vsjitdebugger.exe -p %li", ::GetCurrentProcessId()); + bool success = ::CreateProcessW( + NULL, // No module name (use command line) + cmdline, // Command line + NULL, // Process handle not inheritable + NULL, // Thread handle not inheritable + FALSE, // No handle inheritance + 0, // No creation flags + NULL, // Use parent's environment block + NULL, // Use parent's starting directory + &startupInfo, // Pointer to STARTUPINFO structure + &processInfo); // Pointer to PROCESS_INFORMATION structure + + if (success) + { + ::WaitForSingleObject(processInfo.hProcess, INFINITE); + ::CloseHandle(processInfo.hProcess); + ::CloseHandle(processInfo.hThread); + return true; + } + return false; + } + void DebugBreak() { __debugbreak(); @@ -145,7 +184,7 @@ namespace AZ char message[g_maxMessageLength]; Debug::Trace::Instance().Output(nullptr, "==================================================================\n"); - azsnprintf(message, g_maxMessageLength, "Exception : 0x%X - '%s' [%p]\n", ExceptionInfo->ExceptionRecord->ExceptionCode, GetExeptionName(ExceptionInfo->ExceptionRecord->ExceptionCode), ExceptionInfo->ExceptionRecord->ExceptionAddress); + azsnprintf(message, g_maxMessageLength, "Exception : 0x%lX - '%s' [%p]\n", ExceptionInfo->ExceptionRecord->ExceptionCode, GetExeptionName(ExceptionInfo->ExceptionRecord->ExceptionCode), ExceptionInfo->ExceptionRecord->ExceptionAddress); Debug::Trace::Instance().Output(nullptr, message); EBUS_EVENT(Debug::TraceMessageDrillerBus, OnException, message); diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/Streamer/StreamerContext_WinAPI.cpp b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/Streamer/StreamerContext_WinAPI.cpp index cda0a3f056..8f46bc5eba 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/Streamer/StreamerContext_WinAPI.cpp +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/Streamer/StreamerContext_WinAPI.cpp @@ -49,7 +49,7 @@ namespace AZ::Platform AZ_Assert(m_events[0], "There is no synchronization event created for the main streamer thread to use to suspend."); DWORD result = ::WaitForMultipleObjects(m_handleCount, m_events, false, INFINITE); - if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + m_handleCount) + if (result < WAIT_OBJECT_0 + m_handleCount) { DWORD index = result - WAIT_OBJECT_0; ::ResetEvent(m_events[index]); diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/condition_variable_WinAPI.h b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/condition_variable_WinAPI.h index 536144b814..b0ed025a36 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/condition_variable_WinAPI.h +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/condition_variable_WinAPI.h @@ -198,7 +198,7 @@ namespace AZStd AZ_FORCE_INLINE cv_status condition_variable_any::wait_for(Lock& lock, const chrono::duration& rel_time) { chrono::milliseconds toWait = rel_time; - EnterCriticalSection(&m_mutex); + EnterCriticalSection(AZ_STD_MUTEX_CAST(m_mutex)); lock.unlock(); // We need to make sure we use CriticalSection based mutex. @@ -217,7 +217,7 @@ namespace AZStd returnCode = cv_status::timeout; } } - LeaveCriticalSection(&m_mutex); + LeaveCriticalSection(AZ_STD_MUTEX_CAST(m_mutex)); lock.lock(); return returnCode; } diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/Platform_Mac.cpp b/Code/Framework/AzCore/Platform/Mac/AzCore/Platform_Mac.cpp index edb3d3ea0e..78e97f47c8 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/Platform_Mac.cpp +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/Platform_Mac.cpp @@ -32,7 +32,7 @@ namespace AZ timespec wait; wait.tv_sec = 0; wait.tv_nsec = 5000; - int result = ::gethostuuid(hostId, &wait); + [[maybe_unused]] int result = ::gethostuuid(hostId, &wait); AZ_Error("System", result == 0, "gethostuuid() failed with code %d", result); Sha1 hash; AZ::u32 digest[5] = { 0 }; diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Debug/StackTracer_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/Debug/StackTracer_Windows.cpp index c4a12730ad..b2a1410bf5 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Debug/StackTracer_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Debug/StackTracer_Windows.cpp @@ -478,7 +478,7 @@ namespace AZ { DWORD displacement; if (g_SymGetLineFromAddr64(g_currentProcess, pc, &displacement, &line) && line.FileName[0] != 0) { - azsnprintf(textLine, textLineSize, "%s (%d) : ", line.FileName, line.LineNumber); + azsnprintf(textLine, textLineSize, "%s (%ld) : ", line.FileName, line.LineNumber); } else { @@ -1073,7 +1073,7 @@ cleanup: } HANDLE hThread = nativeThread; - AZ_ALIGN(CONTEXT context, 8); // Without this alignment the function randomly crashes in release. + CONTEXT alignas(8) context; // Without this alignment the function randomly crashes in release. context.ContextFlags = CONTEXT_ALL; GetThreadContext(hThread, &context); diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerConfiguration_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerConfiguration_Windows.cpp index 0813d2d057..fe6d83b7a4 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerConfiguration_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerConfiguration_Windows.cpp @@ -14,6 +14,9 @@ #include #include #include + +// https://developercommunity.visualstudio.com/t/windows-sdk-100177630-pragma-push-pop-mismatch-in/386142 +#define _NTDDSCM_H_ #include namespace AZ::IO diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformIncl_Windows.h b/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformIncl_Windows.h index f58e772155..d2eaa3446f 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformIncl_Windows.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformIncl_Windows.h @@ -34,7 +34,6 @@ ////#define NOMB //- MB_* and MessageBox() //#define NOMEMMGR //- GMEM_*, LMEM_*, GHND, LHND, associated routines //#define NOMETAFILE //- typedef METAFILEPICT -////#define NOMINMAX //- Macros min(a,b) and max(a,b) //#define NOMSG //- typedef MSG and associated routines //#define NOOPENFILE //- OpenFile(), OemToAnsi, AnsiToOem, and OF_* //#define NOSCROLL //- SB_* and scrolling routines @@ -50,27 +49,34 @@ //#define NODEFERWINDOWPOS //- DeferWindowPos routines //#define NOMCX //- Modem Configuration Extensions -// //declare intrinsics to make sure we get the inline intrinsic versions and not a function call #if !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0602) -# undef _WIN32_WINNT -# define _WIN32_WINNT 0x0602 // Windows Server 2012 and later + #undef _WIN32_WINNT + #define _WIN32_WINNT 0x0602 // Windows Server 2012 and later #endif -#ifdef NOMINMAX -# include -# include -#else -# define NOMINMAX -# include -# include -# undef NOMINMAX +#if !defined(NOMINMAX) + #define NOMINMAX // - Dont define Macros min(a,b) and max(a,b) #endif + +#include +#include + // Undef common function names that Windows.h defines #if defined(SetJob) -#undef SetJob + #undef SetJob #endif #if defined(GetObject) -#undef GetObject + #undef GetObject #endif #if defined(GetCommandLine) -#undef GetCommandLine + #undef GetCommandLine #endif +#if defined(LoadImage) +#undef LoadImage +#endif +#if defined(DeleteFile) +#undef DeleteFile +#endif +#if defined(GetCurrentTime) +#undef GetCurrentTime +#endif + diff --git a/Code/Framework/AzCore/Tests/AZStd/Algorithms.cpp b/Code/Framework/AzCore/Tests/AZStd/Algorithms.cpp index 2bb799e627..a1c9e5d79e 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Algorithms.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Algorithms.cpp @@ -1032,7 +1032,7 @@ namespace UnitTest auto CreateArray = []() constexpr -> AZStd::array { AZStd::array localArray = { {1, 2, 3} }; - auto resultFunc = AZStd::for_each(localArray.begin(), localArray.end(), [](int& element) { ++element; }); + AZStd::for_each(localArray.begin(), localArray.end(), [](int& element) { ++element; }); return localArray; }; constexpr AZStd::array testArray = CreateArray(); @@ -1271,7 +1271,6 @@ namespace UnitTest TEST_F(Algorithms, Unique_Compile_WhenUsedInConstexpr) { - constexpr AZStd::array testList = { { 1, 2, 3 } }; auto TestUnique = []() constexpr { AZStd::array localArray{ { 1, 2, 2, 5, 5, 6} }; diff --git a/Code/Framework/AzCore/Tests/AZStd/Allocators.cpp b/Code/Framework/AzCore/Tests/AZStd/Allocators.cpp index 8f34c7f31f..6b82c642d5 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Allocators.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Allocators.cpp @@ -41,12 +41,12 @@ namespace UnitTest AZ_TEST_ASSERT(strcmp(myalloc.get_name(), newName) == 0); AZStd::allocator::pointer_type data = myalloc.allocate(100, 1); - AZ_TEST_ASSERT(data != 0); + AZ_TEST_ASSERT(data != nullptr); myalloc.deallocate(data, 100, 1); data = myalloc.allocate(50, 128); - AZ_TEST_ASSERT(data != 0); + AZ_TEST_ASSERT(data != nullptr); myalloc.deallocate(data, 50, 128); @@ -153,7 +153,7 @@ namespace UnitTest AZ_TEST_ASSERT(myalloc.get_allocated_size() == 0); buffer_alloc_type::pointer_type data = myalloc.allocate(100, 1); - AZ_TEST_ASSERT(data != 0); + AZ_TEST_ASSERT(data != nullptr); AZ_TEST_ASSERT(myalloc.get_max_size() == bufferSize - 100); AZ_TEST_ASSERT(myalloc.get_allocated_size() == 100); @@ -172,7 +172,7 @@ namespace UnitTest AZ_TEST_ASSERT(myalloc.get_allocated_size() == 0); data = myalloc.allocate(50, 64); - AZ_TEST_ASSERT(data != 0); + AZ_TEST_ASSERT(data != nullptr); AZ_TEST_ASSERT(((AZStd::size_t)data & 63) == 0); AZ_TEST_ASSERT(myalloc.get_max_size() <= bufferSize - 50); AZ_TEST_ASSERT(myalloc.get_allocated_size() >= 50); @@ -198,7 +198,7 @@ namespace UnitTest AZ_TEST_ASSERT(myalloc.get_allocated_size() == 0); int* data = reinterpret_cast(myalloc.allocate(sizeof(int), 1)); - AZ_TEST_ASSERT(data != 0); + AZ_TEST_ASSERT(data != nullptr); AZ_TEST_ASSERT(myalloc.get_max_size() == (numNodes - 1) * sizeof(int)); AZ_TEST_ASSERT(myalloc.get_allocated_size() == sizeof(int)); @@ -209,7 +209,7 @@ namespace UnitTest for (int i = 0; i < numNodes; ++i) { data = reinterpret_cast(myalloc.allocate(sizeof(int), 1)); - AZ_TEST_ASSERT(data != 0); + AZ_TEST_ASSERT(data != nullptr); AZ_TEST_ASSERT(myalloc.get_max_size() == (numNodes - (i + 1)) * sizeof(int)); AZ_TEST_ASSERT(myalloc.get_allocated_size() == (i + 1) * sizeof(int)); } @@ -231,7 +231,7 @@ namespace UnitTest aligned_int_node_pool_type myaligned_pool; aligned_int_type* aligned_data = reinterpret_cast(myaligned_pool.allocate(sizeof(aligned_int_type), dataAlignment)); - AZ_TEST_ASSERT(aligned_data != 0); + AZ_TEST_ASSERT(aligned_data != nullptr); AZ_TEST_ASSERT(((AZStd::size_t)aligned_data & (dataAlignment - 1)) == 0); AZ_TEST_ASSERT(myaligned_pool.get_max_size() == (numNodes - 1) * sizeof(aligned_int_type)); AZ_TEST_ASSERT(myaligned_pool.get_allocated_size() == sizeof(aligned_int_type)); @@ -267,14 +267,14 @@ namespace UnitTest AZ_TEST_ASSERT(ref_allocator2.get_allocator() == ref_allocator1.get_allocator()); ref_allocator_type::pointer_type data1 = ref_allocator1.allocate(10, 1); - AZ_TEST_ASSERT(data1 != 0); + AZ_TEST_ASSERT(data1 != nullptr); AZ_TEST_ASSERT(ref_allocator1.get_max_size() == bufferSize - 10); AZ_TEST_ASSERT(ref_allocator1.get_allocated_size() == 10); AZ_TEST_ASSERT(shared_allocator.get_max_size() == bufferSize - 10); AZ_TEST_ASSERT(shared_allocator.get_allocated_size() == 10); ref_allocator_type::pointer_type data2 = ref_allocator2.allocate(10, 1); - AZ_TEST_ASSERT(data2 != 0); + AZ_TEST_ASSERT(data2 != nullptr); AZ_TEST_ASSERT(ref_allocator2.get_max_size() <= bufferSize - 20); AZ_TEST_ASSERT(ref_allocator2.get_allocated_size() >= 20); AZ_TEST_ASSERT(shared_allocator.get_max_size() <= bufferSize - 20); @@ -283,14 +283,14 @@ namespace UnitTest shared_allocator.reset(); data1 = ref_allocator1.allocate(10, 32); - AZ_TEST_ASSERT(data1 != 0); + AZ_TEST_ASSERT(data1 != nullptr); AZ_TEST_ASSERT(ref_allocator1.get_max_size() <= bufferSize - 10); AZ_TEST_ASSERT(ref_allocator1.get_allocated_size() >= 10); AZ_TEST_ASSERT(shared_allocator.get_max_size() <= bufferSize - 10); AZ_TEST_ASSERT(shared_allocator.get_allocated_size() >= 10); data2 = ref_allocator2.allocate(10, 32); - AZ_TEST_ASSERT(data2 != 0); + AZ_TEST_ASSERT(data2 != nullptr); AZ_TEST_ASSERT(ref_allocator1.get_max_size() <= bufferSize - 20); AZ_TEST_ASSERT(ref_allocator1.get_allocated_size() >= 20); AZ_TEST_ASSERT(shared_allocator.get_max_size() <= bufferSize - 20); @@ -316,7 +316,7 @@ namespace UnitTest AZ_TEST_ASSERT(myalloc.get_allocated_size() == 0); stack_allocator::pointer_type data = myalloc.allocate(100, 1); - AZ_TEST_ASSERT(data != 0); + AZ_TEST_ASSERT(data != nullptr); AZ_TEST_ASSERT(myalloc.get_max_size() == bufferSize - 100); AZ_TEST_ASSERT(myalloc.get_allocated_size() == 100); @@ -329,7 +329,7 @@ namespace UnitTest AZ_TEST_ASSERT(myalloc.get_allocated_size() == 0); data = myalloc.allocate(50, 64); - AZ_TEST_ASSERT(data != 0); + AZ_TEST_ASSERT(data != nullptr); AZ_TEST_ASSERT(((AZStd::size_t)data & 63) == 0); AZ_TEST_ASSERT(myalloc.get_max_size() <= bufferSize - 50); AZ_TEST_ASSERT(myalloc.get_allocated_size() >= 50); diff --git a/Code/Framework/AzCore/Tests/AZStd/Any.cpp b/Code/Framework/AzCore/Tests/AZStd/Any.cpp index 4040573462..d6e31ea07b 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Any.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Any.cpp @@ -480,7 +480,9 @@ namespace UnitTest TEST_F(AnyTest, Any_CopyAssignSelfEmpty_IsEmpty) { any a; + AZ_PUSH_DISABLE_WARNING(, "-Wself-assign-overloaded") a = a; + AZ_POP_DISABLE_WARNING EXPECT_TRUE(a.empty()); } @@ -491,7 +493,9 @@ namespace UnitTest any a((TypeParam(1))); EXPECT_EQ(TypeParam::s_count, 1); + AZ_PUSH_DISABLE_WARNING(, "-Wself-assign-overloaded") a = a; + AZ_POP_DISABLE_WARNING EXPECT_EQ(TypeParam::s_count, 1); EXPECT_EQ(any_cast(a).val(), 1); diff --git a/Code/Framework/AzCore/Tests/AZStd/Atomics.cpp b/Code/Framework/AzCore/Tests/AZStd/Atomics.cpp index 57975ad09b..a5da293057 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Atomics.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Atomics.cpp @@ -975,13 +975,13 @@ namespace UnitTest A obj(T(0)); bool b0 = obj.is_lock_free(); ((void)b0); // mark as unused - EXPECT_TRUE(obj == T(0)); + EXPECT_TRUE(obj == T(nullptr)); AZStd::atomic_init(&obj, T(1)); EXPECT_TRUE(obj == T(1)); AZStd::atomic_init(&obj, T(2)); EXPECT_TRUE(obj == T(2)); obj.store(T(0)); - EXPECT_TRUE(obj == T(0)); + EXPECT_TRUE(obj == T(nullptr)); obj.store(T(1), AZStd::memory_order_release); EXPECT_TRUE(obj == T(1)); EXPECT_TRUE(obj.load() == T(1)); @@ -1001,11 +1001,11 @@ namespace UnitTest EXPECT_TRUE(obj.compare_exchange_strong(x, T(1)) == true); EXPECT_TRUE(obj == T(1)); EXPECT_TRUE(x == T(2)); - EXPECT_TRUE(obj.compare_exchange_strong(x, T(0)) == false); + EXPECT_TRUE(obj.compare_exchange_strong(x, T(nullptr)) == false); EXPECT_TRUE(obj == T(1)); EXPECT_TRUE(x == T(1)); - EXPECT_TRUE((obj = T(0)) == T(0)); - EXPECT_TRUE(obj == T(0)); + EXPECT_TRUE((obj = T(nullptr)) == T(nullptr)); + EXPECT_TRUE(obj == T(nullptr)); obj = T(2 * sizeof(X)); EXPECT_TRUE((obj += AZStd::ptrdiff_t(3)) == T(5 * sizeof(X))); EXPECT_TRUE(obj == T(5 * sizeof(X))); @@ -1015,7 +1015,7 @@ namespace UnitTest { alignas(A) char storage[sizeof(A)] = { 23 }; A& zero = *new (storage) A(); - EXPECT_TRUE(zero == T(0)); + EXPECT_TRUE(zero == T(nullptr)); zero.~A(); } } diff --git a/Code/Framework/AzCore/Tests/AZStd/Bitset.cpp b/Code/Framework/AzCore/Tests/AZStd/Bitset.cpp index ed1d59906b..7279e4015a 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Bitset.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Bitset.cpp @@ -127,7 +127,7 @@ namespace UnitTest AZStd::bitset<32> m_bitset1; AZStd::bitset<32> m_bitset2; }; - + TEST_P(BitsetUnsignedLongPairTests, BitwiseANDOperator_MatchesUnsignedLongAND) { EXPECT_EQ((m_bitset1 & m_bitset2).to_ulong(), m_unsignedLong1 & m_unsignedLong2); @@ -316,7 +316,7 @@ namespace UnitTest { for (unsigned long value2 : testCases) { - testCasePairs.push_back(AZStd::pair(value1, value2)); + testCasePairs.emplace_back(value1, value2); } } return testCasePairs; diff --git a/Code/Framework/AzCore/Tests/AZStd/FunctorsBind.cpp b/Code/Framework/AzCore/Tests/AZStd/FunctorsBind.cpp index b720257f18..2a4c598218 100644 --- a/Code/Framework/AzCore/Tests/AZStd/FunctorsBind.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/FunctorsBind.cpp @@ -219,7 +219,7 @@ class OtherClass double rubbish; // to ensure this class has non-zero size. public: virtual ~OtherClass() {} - virtual void UnusedVirtualFunction(void) { (void)rubbish; } + virtual void UnusedVirtualFunction() { (void)rubbish; } virtual void TrickyVirtualFunction(int num, char* str) = 0; }; @@ -268,7 +268,7 @@ namespace UnitTest // Assignment to an empty function v1 = five; - AZ_TEST_ASSERT(v1 != 0); + AZ_TEST_ASSERT(v1 != nullptr); // Invocation of a function global_int = 0; @@ -277,7 +277,7 @@ namespace UnitTest // clear() method v1.clear(); - AZ_TEST_ASSERT(v1 == 0); + AZ_TEST_ASSERT(v1 == nullptr); // Assignment to an empty function v1 = three; @@ -285,7 +285,9 @@ namespace UnitTest // Invocation and self-assignment global_int = 0; + AZ_PUSH_DISABLE_WARNING(, "-Wself-assign-overloaded") v1 = v1; + AZ_POP_DISABLE_WARNING v1(); AZ_TEST_ASSERT(global_int == 3); @@ -294,17 +296,19 @@ namespace UnitTest // Invocation and self-assignment global_int = 0; + AZ_PUSH_DISABLE_WARNING(, "-Wself-assign-overloaded") v1 = (v1); + AZ_POP_DISABLE_WARNING v1(); AZ_TEST_ASSERT(global_int == 5); // clear - v1 = 0; - AZ_TEST_ASSERT(0 == v1); + v1 = nullptr; + AZ_TEST_ASSERT(nullptr == v1); // Assignment to an empty function from a free function v1 = AZSTD_FUNCTION_TARGET_FIX(&) write_five; - AZ_TEST_ASSERT(0 != v1); + AZ_TEST_ASSERT(nullptr != v1); // Invocation global_int = 0; @@ -693,9 +697,9 @@ namespace UnitTest AZ_TEST_ASSERT(global_int == 2); // Test construction from 0 and comparison to 0 - func_void_type v9(0); - AZ_TEST_ASSERT(v9 == 0); - AZ_TEST_ASSERT(0 == v9); + func_void_type v9(nullptr); + AZ_TEST_ASSERT(v9 == nullptr); + AZ_TEST_ASSERT(nullptr == v9); // Test return values typedef function func_int_type; @@ -937,12 +941,13 @@ namespace UnitTest TEST_F(Function, FunctionWithNonAZStdAllocatorDestructsSuccessfully) { - // 64 Byte buffer is used to prevent AZStd::function for storing the + // 64 Byte buffer is used to prevent AZStd::function for storing the // lambda internal storage using the small buffer optimization // Therefore causing the supplied allocator to be used - AZStd::aligned_storage_t<64, 1> bufferToAvoidSmallBufferOptimization; + [[maybe_unused]] AZStd::aligned_storage_t<64, 1> bufferToAvoidSmallBufferOptimization; auto xValueAndConstXValueFunc = [bufferToAvoidSmallBufferOptimization](int lhs, int rhs) -> int { + AZ_UNUSED(bufferToAvoidSmallBufferOptimization); return lhs + rhs; }; @@ -989,7 +994,7 @@ namespace UnitTest return static_cast(lhs) + rhs; } - // Make sure the functor have a specific size so + // Make sure the functor have a specific size so // that it can be used to test both the AZStd::function small_object_optimization path // and the heap allocated function object path AZStd::aligned_storage_t m_functorPadding; @@ -1039,7 +1044,7 @@ namespace UnitTest TestFunctor testFunctor; AZStd::function testFunction2(AZStd::move(testFunctor)); EXPECT_GT(s_functorMoveConstructorCount, 0); - + double testFunc2Result = testFunction2(16, 4.0); EXPECT_DOUBLE_EQ(20, testFunc2Result); @@ -1063,7 +1068,7 @@ namespace UnitTest AZStd::function testFunction2; testFunction2 = AZStd::move(testFunctor); EXPECT_GT(s_functorMoveConstructorCount + s_functorMoveAssignmentCount, 0); - + double testFunc2Result = testFunction2(16, 4.0); EXPECT_DOUBLE_EQ(20, testFunc2Result); @@ -1638,7 +1643,7 @@ namespace UnitTest AZStd::reference_wrapper refTimeStamp(timeStamp); double result = nestedFunc(32, refTimeStamp, 64.0); EXPECT_EQ(512, timeStamp); - + constexpr double expectedResult = static_cast(32 + 16 + 128.0 + 512); EXPECT_DOUBLE_EQ(expectedResult, result); } diff --git a/Code/Framework/AzCore/Tests/AZStd/Hashed.cpp b/Code/Framework/AzCore/Tests/AZStd/Hashed.cpp index 4e4dfc1f89..b92dee44b6 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Hashed.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Hashed.cpp @@ -2100,8 +2100,8 @@ namespace UnitTest typename TypeParam::ContainerType container; container.emplace(-2352); container.emplace(3534); - container.emplace(1535408957); - container.emplace(3310556522); + container.emplace(535408957); + container.emplace(1310556522); container.emplace(55546193); container.emplace(1582); diff --git a/Code/Framework/AzCore/Tests/AZStd/ListsIntrusive.cpp b/Code/Framework/AzCore/Tests/AZStd/ListsIntrusive.cpp index 511a4e479e..9e238b3d7d 100644 --- a/Code/Framework/AzCore/Tests/AZStd/ListsIntrusive.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/ListsIntrusive.cpp @@ -997,7 +997,7 @@ namespace UnitTest myclass_base_list.clear(); auto reverseIterBegin = myclass_base_list.rbegin(); auto reverseIterEnd = myclass_base_list.rend(); - EXPECT_EQ(reverseIterEnd, reverseIterEnd); + EXPECT_EQ(reverseIterBegin, reverseIterEnd); } } } diff --git a/Code/Framework/AzCore/Tests/AZStd/Ordered.cpp b/Code/Framework/AzCore/Tests/AZStd/Ordered.cpp index 79abd71a70..ca7d5cba42 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Ordered.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Ordered.cpp @@ -1805,8 +1805,8 @@ namespace UnitTest typename TypeParam::ContainerType container; container.emplace(-2352); container.emplace(3534); - container.emplace(1535408957); - container.emplace(3310556522); + container.emplace(535408957); + container.emplace(1310556522); container.emplace(55546193); container.emplace(1582); diff --git a/Code/Framework/AzCore/Tests/AZStd/Pair.cpp b/Code/Framework/AzCore/Tests/AZStd/Pair.cpp index 53786d20da..213cb8b17d 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Pair.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Pair.cpp @@ -68,7 +68,6 @@ namespace UnitTest static constexpr size_t max_expected_size = MaxExpectedSize; }; - constexpr size_t pairSize = sizeof(AZStd::compressed_pair); using CompressedPairTestConfigs = ::testing::Types< CompressedPairTestConfig , CompressedPairTestConfig diff --git a/Code/Framework/AzCore/Tests/AZStd/Parallel.cpp b/Code/Framework/AzCore/Tests/AZStd/Parallel.cpp index 2743d5e323..f3d4f58250 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Parallel.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Parallel.cpp @@ -195,7 +195,7 @@ namespace UnitTest void test_thread_id_for_running_thread_is_not_default_constructed_id() { - const thread_desc* desc = m_numThreadDesc ? &m_desc[0] : 0; + const thread_desc* desc = m_numThreadDesc ? &m_desc[0] : nullptr; AZStd::thread t(AZStd::bind(&Parallel_Thread::do_nothing, this), desc); AZ_TEST_ASSERT(t.get_id() != AZStd::thread::id()); t.join(); @@ -203,8 +203,8 @@ namespace UnitTest void test_different_threads_have_different_ids() { - const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : 0; - const thread_desc* desc2 = m_numThreadDesc ? &m_desc[1] : 0; + const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : nullptr; + const thread_desc* desc2 = m_numThreadDesc ? &m_desc[1] : nullptr; AZStd::thread t(AZStd::bind(&Parallel_Thread::do_nothing, this), desc1); AZStd::thread t2(AZStd::bind(&Parallel_Thread::do_nothing, this), desc2); AZ_TEST_ASSERT(t.get_id() != t2.get_id()); @@ -214,9 +214,9 @@ namespace UnitTest void test_thread_ids_have_a_total_order() { - const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : 0; - const thread_desc* desc2 = m_numThreadDesc ? &m_desc[1] : 0; - const thread_desc* desc3 = m_numThreadDesc ? &m_desc[2] : 0; + const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : nullptr; + const thread_desc* desc2 = m_numThreadDesc ? &m_desc[1] : nullptr; + const thread_desc* desc3 = m_numThreadDesc ? &m_desc[2] : nullptr; AZStd::thread t(AZStd::bind(&Parallel_Thread::do_nothing, this), desc1); AZStd::thread t2(AZStd::bind(&Parallel_Thread::do_nothing, this), desc2); @@ -313,7 +313,7 @@ namespace UnitTest void test_thread_id_of_running_thread_returned_by_this_thread_get_id() { - const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : 0; + const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : nullptr; AZStd::thread::id id; AZStd::thread t(AZStd::bind(&Parallel_Thread::get_thread_id, this, &id), desc1); @@ -366,7 +366,7 @@ namespace UnitTest void test_move_on_construction() { - const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : 0; + const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : nullptr; AZStd::thread::id the_id; AZStd::thread x; x = AZStd::thread(AZStd::bind(&Parallel_Thread::do_nothing_id, this, &the_id), desc1); @@ -377,7 +377,7 @@ namespace UnitTest AZStd::thread make_thread(AZStd::thread::id* the_id) { - const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : 0; + const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : nullptr; return AZStd::thread(AZStd::bind(&Parallel_Thread::do_nothing_id, this, the_id), desc1); } @@ -430,7 +430,7 @@ namespace UnitTest void do_test_creation() { - const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : 0; + const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : nullptr; m_data = 0; AZStd::thread t(AZStd::bind(&Parallel_Thread::simple_thread, this), desc1); t.join(); @@ -445,7 +445,7 @@ namespace UnitTest void do_test_id_comparison() { - const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : 0; + const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : nullptr; AZStd::thread::id self = this_thread::get_id(); AZStd::thread thrd(AZStd::bind(&Parallel_Thread::comparison_thread, this, self), desc1); thrd.join(); @@ -476,7 +476,7 @@ namespace UnitTest void do_test_creation_through_reference_wrapper() { - const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : 0; + const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : nullptr; non_copyable_functor f; AZStd::thread thrd(AZStd::ref(f), desc1); @@ -491,8 +491,8 @@ namespace UnitTest void test_swap() { - const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : 0; - const thread_desc* desc2 = m_numThreadDesc ? &m_desc[1] : 0; + const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : nullptr; + const thread_desc* desc2 = m_numThreadDesc ? &m_desc[1] : nullptr; AZStd::thread t(AZStd::bind(&Parallel_Thread::simple_thread, this), desc1); AZStd::thread t2(AZStd::bind(&Parallel_Thread::simple_thread, this), desc2); AZStd::thread::id id1 = t.get_id(); @@ -512,7 +512,7 @@ namespace UnitTest void run() { - const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : 0; + const thread_desc* desc1 = m_numThreadDesc ? &m_desc[0] : nullptr; // We need to have at least one processor AZ_TEST_ASSERT(AZStd::thread::hardware_concurrency() >= 1); diff --git a/Code/Framework/AzCore/Tests/AZStd/SetsIntrusive.cpp b/Code/Framework/AzCore/Tests/AZStd/SetsIntrusive.cpp index 61f9144452..6cae83c3ad 100644 --- a/Code/Framework/AzCore/Tests/AZStd/SetsIntrusive.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/SetsIntrusive.cpp @@ -287,7 +287,7 @@ namespace UnitTest myclass_base_set.clear(); auto reverseIterBegin = myclass_base_set.rbegin(); auto reverseIterEnd = myclass_base_set.rend(); - EXPECT_EQ(reverseIterEnd, reverseIterEnd); + EXPECT_EQ(reverseIterBegin, reverseIterEnd); } } } diff --git a/Code/Framework/AzCore/Tests/AZStd/SmartPtr.cpp b/Code/Framework/AzCore/Tests/AZStd/SmartPtr.cpp index c852fd35bb..b6a5a62c05 100644 --- a/Code/Framework/AzCore/Tests/AZStd/SmartPtr.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/SmartPtr.cpp @@ -137,7 +137,7 @@ namespace UnitTest static void deleter(int* p) { - EXPECT_TRUE(p == 0); + EXPECT_TRUE(p == nullptr); } struct deleter2 @@ -158,7 +158,7 @@ namespace UnitTest { void operator()(incomplete* p) { - EXPECT_TRUE(p == 0); + EXPECT_TRUE(p == nullptr); } }; @@ -331,7 +331,7 @@ namespace UnitTest AZStd::shared_ptr pv; EXPECT_FALSE(pv); EXPECT_TRUE(!pv); - EXPECT_EQ(0, pv.get()); + EXPECT_EQ(nullptr, pv.get()); EXPECT_EQ(0, pv.use_count()); } @@ -355,35 +355,35 @@ namespace UnitTest TEST_F(SmartPtr, SharedPtrCtorIntPtr) { - m_sharedPtr->TestType(static_cast(0)); - m_sharedPtr->TestType(static_cast(0)); - m_sharedPtr->TestType(static_cast(0)); - m_sharedPtr->TestType(static_cast(0)); + m_sharedPtr->TestType(static_cast(nullptr)); + m_sharedPtr->TestType(static_cast(nullptr)); + m_sharedPtr->TestType(static_cast(nullptr)); + m_sharedPtr->TestType(static_cast(nullptr)); } TEST_F(SmartPtr, SharedPtrCtorConstIntPtr) { - m_sharedPtr->TestNull(static_cast(0)); - m_sharedPtr->TestNull(static_cast(0)); - m_sharedPtr->TestNull(static_cast(0)); - m_sharedPtr->TestNull(static_cast(0)); + m_sharedPtr->TestNull(static_cast(nullptr)); + m_sharedPtr->TestNull(static_cast(nullptr)); + m_sharedPtr->TestNull(static_cast(nullptr)); + m_sharedPtr->TestNull(static_cast(nullptr)); } TEST_F(SmartPtr, SharedPtrCtorX) { - m_sharedPtr->TestType(static_cast(0)); - m_sharedPtr->TestType(static_cast(0)); - m_sharedPtr->TestType(static_cast(0)); - m_sharedPtr->TestType(static_cast(0)); + m_sharedPtr->TestType(static_cast(nullptr)); + m_sharedPtr->TestType(static_cast(nullptr)); + m_sharedPtr->TestType(static_cast(nullptr)); + m_sharedPtr->TestType(static_cast(nullptr)); } TEST_F(SmartPtr, SharedPtrCtorXConvert) { - m_sharedPtr->TestNull(static_cast(0)); - m_sharedPtr->TestNull(static_cast(0)); - m_sharedPtr->TestNull(static_cast(0)); - m_sharedPtr->TestNull(static_cast(0)); - m_sharedPtr->TestNull(static_cast(0)); + m_sharedPtr->TestNull(static_cast(nullptr)); + m_sharedPtr->TestNull(static_cast(nullptr)); + m_sharedPtr->TestNull(static_cast(nullptr)); + m_sharedPtr->TestNull(static_cast(nullptr)); + m_sharedPtr->TestNull(static_cast(nullptr)); } TEST_F(SmartPtr, SharedPtrCtorIntValue) @@ -518,15 +518,15 @@ namespace UnitTest TEST_F(SmartPtr, SharedPtrCtorNullDeleter) { { - AZStd::shared_ptr pi(static_cast(0), &SharedPtr::test::deleter); + AZStd::shared_ptr pi(static_cast(nullptr), &SharedPtr::test::deleter); m_sharedPtr->TestPtr(pi, nullptr); } { - AZStd::shared_ptr pv(static_cast(0), &SharedPtr::test::deleter); + AZStd::shared_ptr pv(static_cast(nullptr), &SharedPtr::test::deleter); m_sharedPtr->TestPtr(pv, nullptr); } { - AZStd::shared_ptr pv(static_cast(0), &SharedPtr::test::deleter); + AZStd::shared_ptr pv(static_cast(nullptr), &SharedPtr::test::deleter); m_sharedPtr->TestPtr(pv, nullptr); } } @@ -589,21 +589,21 @@ namespace UnitTest EXPECT_EQ(pi2, pi); EXPECT_FALSE(pi2); EXPECT_TRUE(!pi2); - EXPECT_EQ(0, pi2.get()); + EXPECT_EQ(nullptr, pi2.get()); EXPECT_EQ(pi2.use_count(), pi.use_count()); AZStd::shared_ptr pi3(pi); EXPECT_EQ(pi3, pi); EXPECT_FALSE(pi3); EXPECT_TRUE(!pi3); - EXPECT_EQ(0, pi3.get()); + EXPECT_EQ(nullptr, pi3.get()); EXPECT_EQ(pi3.use_count(), pi.use_count()); AZStd::shared_ptr pi4(pi3); EXPECT_EQ(pi4, pi3); EXPECT_FALSE(pi4); EXPECT_TRUE(!pi4); - EXPECT_EQ(0, pi4.get()); + EXPECT_EQ(nullptr, pi4.get()); EXPECT_EQ(pi4.use_count(), pi3.use_count()); } @@ -615,7 +615,7 @@ namespace UnitTest EXPECT_EQ(pv2, pv); EXPECT_FALSE(pv2); EXPECT_TRUE(!pv2); - EXPECT_EQ(0, pv2.get()); + EXPECT_EQ(nullptr, pv2.get()); EXPECT_EQ(pv2.use_count(), pv.use_count()); } @@ -628,26 +628,26 @@ namespace UnitTest EXPECT_EQ(px, px2); EXPECT_FALSE(px2); EXPECT_TRUE(!px2); - EXPECT_EQ(0, px2.get()); + EXPECT_EQ(nullptr, px2.get()); EXPECT_EQ(px.use_count(), px2.use_count()); AZStd::shared_ptr px3(px); EXPECT_EQ(px, px3); EXPECT_FALSE(px3); EXPECT_TRUE(!px3); - EXPECT_EQ(0, px3.get()); + EXPECT_EQ(nullptr, px3.get()); EXPECT_EQ(px.use_count(), px3.use_count()); } TEST_F(SmartPtr, SharedPtrCopyCtorIntVoidSharedOwnershipTest) { - AZStd::shared_ptr pi(static_cast(0)); + AZStd::shared_ptr pi(static_cast(nullptr)); AZStd::shared_ptr pi2(pi); EXPECT_EQ(pi, pi2); EXPECT_FALSE(pi2); EXPECT_TRUE(!pi2); - EXPECT_EQ(0, pi2.get()); + EXPECT_EQ(nullptr, pi2.get()); EXPECT_EQ(2, pi2.use_count()); EXPECT_FALSE(pi2.unique()); EXPECT_EQ(pi.use_count(), pi2.use_count()); @@ -657,7 +657,7 @@ namespace UnitTest EXPECT_EQ(pi, pi3); EXPECT_FALSE(pi3); EXPECT_TRUE(!pi3); - EXPECT_EQ(0, pi3.get()); + EXPECT_EQ(nullptr, pi3.get()); EXPECT_EQ(3, pi3.use_count()); EXPECT_FALSE(pi3.unique()); EXPECT_EQ(pi.use_count(), pi3.use_count()); @@ -667,7 +667,7 @@ namespace UnitTest EXPECT_EQ(pi2, pi4); EXPECT_FALSE(pi4); EXPECT_TRUE(!pi4); - EXPECT_EQ(0, pi4.get()); + EXPECT_EQ(nullptr, pi4.get()); EXPECT_EQ(4, pi4.use_count()); EXPECT_FALSE(pi4.unique()); EXPECT_EQ(pi2.use_count(), pi4.use_count()); @@ -680,13 +680,13 @@ namespace UnitTest TEST_F(SmartPtr, SharedPtrCopyCtorClassSharedOwnershipTest) { using X = SharedPtr::test::X; - AZStd::shared_ptr px(static_cast(0)); + AZStd::shared_ptr px(static_cast(nullptr)); AZStd::shared_ptr px2(px); EXPECT_EQ(px, px2); EXPECT_FALSE(px2); EXPECT_TRUE(!px2); - EXPECT_EQ(0, px2.get()); + EXPECT_EQ(nullptr, px2.get()); EXPECT_EQ(2, px2.use_count()); EXPECT_FALSE(px2.unique()); EXPECT_EQ(px.use_count(), px2.use_count()); @@ -696,7 +696,7 @@ namespace UnitTest EXPECT_EQ(px, px3); EXPECT_FALSE(px3); EXPECT_TRUE(!px3); - EXPECT_EQ(0, px3.get()); + EXPECT_EQ(nullptr, px3.get()); EXPECT_EQ(3, px3.use_count()); EXPECT_FALSE(px3.unique()); EXPECT_EQ(px.use_count(), px3.use_count()); @@ -706,7 +706,7 @@ namespace UnitTest EXPECT_EQ(px2, px4); EXPECT_FALSE(px4); EXPECT_TRUE(!px4); - EXPECT_EQ(0, px4.get()); + EXPECT_EQ(nullptr, px4.get()); EXPECT_EQ(4, px4.use_count()); EXPECT_FALSE(px4.unique()); EXPECT_EQ(px2.use_count(), px4.use_count()); @@ -871,11 +871,11 @@ namespace UnitTest { AZStd::shared_ptr p2(wp); EXPECT_EQ(wp.use_count(), p2.use_count()); - EXPECT_EQ(0, p2.get()); + EXPECT_EQ(nullptr, p2.get()); AZStd::shared_ptr p3(wp); EXPECT_EQ(wp.use_count(), p3.use_count()); - EXPECT_EQ(0, p3.get()); + EXPECT_EQ(nullptr, p3.get()); } } @@ -920,12 +920,14 @@ namespace UnitTest AZStd::shared_ptr p1; + AZ_PUSH_DISABLE_WARNING(, "-Wself-assign-overloaded") p1 = p1; + AZ_POP_DISABLE_WARNING EXPECT_EQ(p1, p1); EXPECT_FALSE(p1); EXPECT_TRUE(!p1); - EXPECT_EQ(0, p1.get()); + EXPECT_EQ(nullptr, p1.get()); AZStd::shared_ptr p2; @@ -934,7 +936,7 @@ namespace UnitTest EXPECT_EQ(p2, p1); EXPECT_FALSE(p1); EXPECT_TRUE(!p1); - EXPECT_EQ(0, p1.get()); + EXPECT_EQ(nullptr, p1.get()); AZStd::shared_ptr p3(p1); @@ -943,19 +945,21 @@ namespace UnitTest EXPECT_EQ(p3, p1); EXPECT_FALSE(p1); EXPECT_TRUE(!p1); - EXPECT_EQ(0, p1.get()); + EXPECT_EQ(nullptr, p1.get()); } TEST_F(SmartPtr, SharedPtrCopyAssignVoid) { AZStd::shared_ptr p1; + AZ_PUSH_DISABLE_WARNING(, "-Wself-assign-overloaded") p1 = p1; + AZ_POP_DISABLE_WARNING EXPECT_EQ(p1, p1); EXPECT_FALSE(p1); EXPECT_TRUE(!p1); - EXPECT_EQ(0, p1.get()); + EXPECT_EQ(nullptr, p1.get()); AZStd::shared_ptr p2; @@ -964,7 +968,7 @@ namespace UnitTest EXPECT_EQ(p2, p1); EXPECT_FALSE(p1); EXPECT_TRUE(!p1); - EXPECT_EQ(0, p1.get()); + EXPECT_EQ(nullptr, p1.get()); AZStd::shared_ptr p3(p1); @@ -973,7 +977,7 @@ namespace UnitTest EXPECT_EQ(p3, p1); EXPECT_FALSE(p1); EXPECT_TRUE(!p1); - EXPECT_EQ(0, p1.get()); + EXPECT_EQ(nullptr, p1.get()); AZStd::shared_ptr p4(new int); EXPECT_EQ(1, p4.use_count()); @@ -996,12 +1000,14 @@ namespace UnitTest using X = SharedPtr::test::X; AZStd::shared_ptr p1; + AZ_PUSH_DISABLE_WARNING(, "-Wself-assign-overloaded") p1 = p1; + AZ_POP_DISABLE_WARNING EXPECT_EQ(p1, p1); EXPECT_FALSE(p1); EXPECT_TRUE(!p1); - EXPECT_EQ(0, p1.get()); + EXPECT_EQ(nullptr, p1.get()); AZStd::shared_ptr p2; @@ -1010,7 +1016,7 @@ namespace UnitTest EXPECT_EQ(p2, p1); EXPECT_FALSE(p1); EXPECT_TRUE(!p1); - EXPECT_EQ(0, p1.get()); + EXPECT_EQ(nullptr, p1.get()); AZStd::shared_ptr p3(p1); @@ -1019,7 +1025,7 @@ namespace UnitTest EXPECT_EQ(p3, p1); EXPECT_FALSE(p1); EXPECT_TRUE(!p1); - EXPECT_EQ(0, p1.get()); + EXPECT_EQ(nullptr, p1.get()); EXPECT_EQ(0, m_sharedPtr->m_test.m_xInstances); @@ -1059,7 +1065,7 @@ namespace UnitTest EXPECT_EQ(p2, p1); EXPECT_FALSE(p1); EXPECT_TRUE(!p1); - EXPECT_EQ(0, p1.get()); + EXPECT_EQ(nullptr, p1.get()); AZStd::shared_ptr p4(new int); EXPECT_EQ(1, p4.use_count()); @@ -1092,7 +1098,7 @@ namespace UnitTest EXPECT_EQ(p2, p1); EXPECT_FALSE(p1); EXPECT_TRUE(!p1); - EXPECT_EQ(0, p1.get()); + EXPECT_EQ(nullptr, p1.get()); EXPECT_EQ(0, m_sharedPtr->m_test.m_xInstances); EXPECT_EQ(0, m_sharedPtr->m_test.m_yInstances); @@ -1138,17 +1144,17 @@ namespace UnitTest pi.reset(); EXPECT_FALSE(pi); EXPECT_TRUE(!pi); - EXPECT_TRUE(pi.get() == 0); + EXPECT_TRUE(pi.get() == nullptr); EXPECT_TRUE(pi.use_count() == 0); } TEST_F(SmartPtr, SharedPtrResetNullInt) { - AZStd::shared_ptr pi(static_cast(0)); + AZStd::shared_ptr pi(static_cast(nullptr)); pi.reset(); EXPECT_FALSE(pi); EXPECT_TRUE(!pi); - EXPECT_TRUE(pi.get() == 0); + EXPECT_TRUE(pi.get() == nullptr); EXPECT_TRUE(pi.use_count() == 0); } @@ -1158,7 +1164,7 @@ namespace UnitTest pi.reset(); EXPECT_FALSE(pi); EXPECT_TRUE(!pi); - EXPECT_TRUE(pi.get() == 0); + EXPECT_TRUE(pi.get() == nullptr); EXPECT_TRUE(pi.use_count() == 0); } @@ -1169,7 +1175,7 @@ namespace UnitTest px.reset(); EXPECT_FALSE(px); EXPECT_TRUE(!px); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_TRUE(px.use_count() == 0); } @@ -1181,7 +1187,7 @@ namespace UnitTest px.reset(); EXPECT_FALSE(px); EXPECT_TRUE(!px); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_TRUE(px.use_count() == 0); } @@ -1192,7 +1198,7 @@ namespace UnitTest px.reset(); EXPECT_FALSE(px); EXPECT_TRUE(!px); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_TRUE(px.use_count() == 0); } @@ -1205,7 +1211,7 @@ namespace UnitTest px.reset(); EXPECT_FALSE(px); EXPECT_TRUE(!px); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_TRUE(px.use_count() == 0); EXPECT_EQ(0, m_sharedPtr->m_test.m_xInstances); } @@ -1216,7 +1222,7 @@ namespace UnitTest pv.reset(); EXPECT_FALSE(pv); EXPECT_TRUE(!pv); - EXPECT_TRUE(pv.get() == 0); + EXPECT_TRUE(pv.get() == nullptr); EXPECT_TRUE(pv.use_count() == 0); } @@ -1229,7 +1235,7 @@ namespace UnitTest pv.reset(); EXPECT_FALSE(pv); EXPECT_TRUE(!pv); - EXPECT_TRUE(pv.get() == 0); + EXPECT_TRUE(pv.get() == nullptr); EXPECT_TRUE(pv.use_count() == 0); EXPECT_EQ(0, m_sharedPtr->m_test.m_xInstances); } @@ -1238,10 +1244,10 @@ namespace UnitTest { AZStd::shared_ptr pi; - pi.reset(static_cast(0)); + pi.reset(static_cast(nullptr)); EXPECT_FALSE(pi); EXPECT_TRUE(!pi); - EXPECT_TRUE(pi.get() == 0); + EXPECT_TRUE(pi.get() == nullptr); EXPECT_TRUE(pi.use_count() == 1); EXPECT_TRUE(pi.unique()); @@ -1253,10 +1259,10 @@ namespace UnitTest EXPECT_TRUE(pi.use_count() == 1); EXPECT_TRUE(pi.unique()); - pi.reset(static_cast(0)); + pi.reset(static_cast(nullptr)); EXPECT_FALSE(pi); EXPECT_TRUE(!pi); - EXPECT_TRUE(pi.get() == 0); + EXPECT_TRUE(pi.get() == nullptr); EXPECT_TRUE(pi.use_count() == 1); EXPECT_TRUE(pi.unique()); } @@ -1267,10 +1273,10 @@ namespace UnitTest using Y = SharedPtr::test::Y; AZStd::shared_ptr px; - px.reset(static_cast(0)); + px.reset(static_cast(nullptr)); EXPECT_FALSE(px); EXPECT_TRUE(!px); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_TRUE(px.use_count() == 1); EXPECT_TRUE(px.unique()); EXPECT_EQ(0, m_sharedPtr->m_test.m_xInstances); @@ -1284,10 +1290,10 @@ namespace UnitTest EXPECT_TRUE(px.unique()); EXPECT_EQ(1, m_sharedPtr->m_test.m_xInstances); - px.reset(static_cast(0)); + px.reset(static_cast(nullptr)); EXPECT_FALSE(px); EXPECT_TRUE(!px); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_TRUE(px.use_count() == 1); EXPECT_TRUE(px.unique()); EXPECT_EQ(0, m_sharedPtr->m_test.m_xInstances); @@ -1303,10 +1309,10 @@ namespace UnitTest EXPECT_EQ(1, m_sharedPtr->m_test.m_xInstances); EXPECT_EQ(1, m_sharedPtr->m_test.m_yInstances); - px.reset(static_cast(0)); + px.reset(static_cast(nullptr)); EXPECT_FALSE(px); EXPECT_TRUE(!px); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_TRUE(px.use_count() == 1); EXPECT_TRUE(px.unique()); EXPECT_EQ(0, m_sharedPtr->m_test.m_xInstances); @@ -1319,10 +1325,10 @@ namespace UnitTest using Y = SharedPtr::test::Y; AZStd::shared_ptr pv; - pv.reset(static_cast(0)); + pv.reset(static_cast(nullptr)); EXPECT_FALSE(pv); EXPECT_TRUE(!pv); - EXPECT_TRUE(pv.get() == 0); + EXPECT_TRUE(pv.get() == nullptr); EXPECT_TRUE(pv.use_count() == 1); EXPECT_TRUE(pv.unique()); EXPECT_EQ(0, m_sharedPtr->m_test.m_xInstances); @@ -1336,10 +1342,10 @@ namespace UnitTest EXPECT_TRUE(pv.unique()); EXPECT_EQ(1, m_sharedPtr->m_test.m_xInstances); - pv.reset(static_cast(0)); + pv.reset(static_cast(nullptr)); EXPECT_FALSE(pv); EXPECT_TRUE(!pv); - EXPECT_TRUE(pv.get() == 0); + EXPECT_TRUE(pv.get() == nullptr); EXPECT_TRUE(pv.use_count() == 1); EXPECT_TRUE(pv.unique()); EXPECT_EQ(0, m_sharedPtr->m_test.m_xInstances); @@ -1355,10 +1361,10 @@ namespace UnitTest EXPECT_EQ(1, m_sharedPtr->m_test.m_xInstances); EXPECT_EQ(1, m_sharedPtr->m_test.m_yInstances); - pv.reset(static_cast(0)); + pv.reset(static_cast(nullptr)); EXPECT_FALSE(pv); EXPECT_TRUE(!pv); - EXPECT_TRUE(pv.get() == 0); + EXPECT_TRUE(pv.get() == nullptr); EXPECT_TRUE(pv.use_count() == 1); EXPECT_TRUE(pv.unique()); EXPECT_EQ(0, m_sharedPtr->m_test.m_xInstances); @@ -1369,10 +1375,10 @@ namespace UnitTest { AZStd::shared_ptr pi; - pi.reset(static_cast(0), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); + pi.reset(static_cast(nullptr), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); EXPECT_FALSE(pi); EXPECT_TRUE(!pi); - EXPECT_TRUE(pi.get() == 0); + EXPECT_TRUE(pi.get() == nullptr); EXPECT_TRUE(pi.use_count() == 1); EXPECT_TRUE(pi.unique()); @@ -1380,23 +1386,23 @@ namespace UnitTest int m = 0; pi.reset(&m, SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); - EXPECT_TRUE(m_sharedPtr->m_test.deleted == 0); + EXPECT_TRUE(m_sharedPtr->m_test.deleted == nullptr); EXPECT_TRUE(pi ? true : false); EXPECT_TRUE(!!pi); EXPECT_TRUE(pi.get() == &m); EXPECT_TRUE(pi.use_count() == 1); EXPECT_TRUE(pi.unique()); - pi.reset(static_cast(0), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); + pi.reset(static_cast(nullptr), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); EXPECT_TRUE(m_sharedPtr->m_test.deleted == &m); EXPECT_FALSE(pi); EXPECT_TRUE(!pi); - EXPECT_TRUE(pi.get() == 0); + EXPECT_TRUE(pi.get() == nullptr); EXPECT_TRUE(pi.use_count() == 1); EXPECT_TRUE(pi.unique()); pi.reset(); - EXPECT_TRUE(m_sharedPtr->m_test.deleted == 0); + EXPECT_TRUE(m_sharedPtr->m_test.deleted == nullptr); } TEST_F(SmartPtr, SharedPtrResetClassWithDeleter) @@ -1405,10 +1411,10 @@ namespace UnitTest using Y = SharedPtr::test::Y; AZStd::shared_ptr px; - px.reset(static_cast(0), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); + px.reset(static_cast(nullptr), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); EXPECT_FALSE(px); EXPECT_TRUE(!px); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_TRUE(px.use_count() == 1); EXPECT_TRUE(px.unique()); @@ -1416,40 +1422,40 @@ namespace UnitTest X x(m_sharedPtr->m_test); px.reset(&x, SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); - EXPECT_TRUE(m_sharedPtr->m_test.deleted == 0); + EXPECT_TRUE(m_sharedPtr->m_test.deleted == nullptr); EXPECT_TRUE(px ? true : false); EXPECT_TRUE(!!px); EXPECT_TRUE(px.get() == &x); EXPECT_TRUE(px.use_count() == 1); EXPECT_TRUE(px.unique()); - px.reset(static_cast(0), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); + px.reset(static_cast(nullptr), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); EXPECT_TRUE(m_sharedPtr->m_test.deleted == &x); EXPECT_FALSE(px); EXPECT_TRUE(!px); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_TRUE(px.use_count() == 1); EXPECT_TRUE(px.unique()); Y y(m_sharedPtr->m_test); px.reset(&y, SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); - EXPECT_TRUE(m_sharedPtr->m_test.deleted == 0); + EXPECT_TRUE(m_sharedPtr->m_test.deleted == nullptr); EXPECT_TRUE(px ? true : false); EXPECT_TRUE(!!px); EXPECT_TRUE(px.get() == &y); EXPECT_TRUE(px.use_count() == 1); EXPECT_TRUE(px.unique()); - px.reset(static_cast(0), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); + px.reset(static_cast(nullptr), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); EXPECT_TRUE(m_sharedPtr->m_test.deleted == &y); EXPECT_FALSE(px); EXPECT_TRUE(!px); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_TRUE(px.use_count() == 1); EXPECT_TRUE(px.unique()); px.reset(); - EXPECT_TRUE(m_sharedPtr->m_test.deleted == 0); + EXPECT_TRUE(m_sharedPtr->m_test.deleted == nullptr); } TEST_F(SmartPtr, SharedPtrResetVoidClassWithDeleter) @@ -1458,10 +1464,10 @@ namespace UnitTest using Y = SharedPtr::test::Y; AZStd::shared_ptr pv; - pv.reset(static_cast(0), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); + pv.reset(static_cast(nullptr), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); EXPECT_FALSE(pv); EXPECT_TRUE(!pv); - EXPECT_TRUE(pv.get() == 0); + EXPECT_TRUE(pv.get() == nullptr); EXPECT_TRUE(pv.use_count() == 1); EXPECT_TRUE(pv.unique()); @@ -1469,40 +1475,40 @@ namespace UnitTest X x(m_sharedPtr->m_test); pv.reset(&x, SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); - EXPECT_TRUE(m_sharedPtr->m_test.deleted == 0); + EXPECT_TRUE(m_sharedPtr->m_test.deleted == nullptr); EXPECT_TRUE(pv ? true : false); EXPECT_TRUE(!!pv); EXPECT_TRUE(pv.get() == &x); EXPECT_TRUE(pv.use_count() == 1); EXPECT_TRUE(pv.unique()); - pv.reset(static_cast(0), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); + pv.reset(static_cast(nullptr), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); EXPECT_TRUE(m_sharedPtr->m_test.deleted == &x); EXPECT_FALSE(pv); EXPECT_TRUE(!pv); - EXPECT_TRUE(pv.get() == 0); + EXPECT_TRUE(pv.get() == nullptr); EXPECT_TRUE(pv.use_count() == 1); EXPECT_TRUE(pv.unique()); Y y(m_sharedPtr->m_test); pv.reset(&y, SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); - EXPECT_TRUE(m_sharedPtr->m_test.deleted == 0); + EXPECT_TRUE(m_sharedPtr->m_test.deleted == nullptr); EXPECT_TRUE(pv ? true : false); EXPECT_TRUE(!!pv); EXPECT_TRUE(pv.get() == &y); EXPECT_TRUE(pv.use_count() == 1); EXPECT_TRUE(pv.unique()); - pv.reset(static_cast(0), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); + pv.reset(static_cast(nullptr), SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); EXPECT_TRUE(m_sharedPtr->m_test.deleted == &y); EXPECT_FALSE(pv); EXPECT_TRUE(!pv); - EXPECT_TRUE(pv.get() == 0); + EXPECT_TRUE(pv.get() == nullptr); EXPECT_TRUE(pv.use_count() == 1); EXPECT_TRUE(pv.unique()); pv.reset(); - EXPECT_TRUE(m_sharedPtr->m_test.deleted == 0); + EXPECT_TRUE(m_sharedPtr->m_test.deleted == nullptr); } TEST_F(SmartPtr, SharedPtrResetIncompleteNullWithDeleter) @@ -1515,20 +1521,20 @@ namespace UnitTest px.reset(p0, SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); EXPECT_FALSE(px); EXPECT_TRUE(!px); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_TRUE(px.use_count() == 1); EXPECT_TRUE(px.unique()); m_sharedPtr->m_test.deleted = &px; px.reset(p0, SharedPtr::test::deleter_void(m_sharedPtr->m_test.deleted)); - EXPECT_TRUE(m_sharedPtr->m_test.deleted == 0); + EXPECT_TRUE(m_sharedPtr->m_test.deleted == nullptr); } TEST_F(SmartPtr, SharedPtrGetPointerEmpty) { struct X {}; AZStd::shared_ptr px; - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_FALSE(px); EXPECT_TRUE(!px); @@ -1538,8 +1544,8 @@ namespace UnitTest TEST_F(SmartPtr, SharedPtrGetPointerNull) { struct X {}; - AZStd::shared_ptr px(static_cast(0)); - EXPECT_TRUE(px.get() == 0); + AZStd::shared_ptr px(static_cast(nullptr)); + EXPECT_TRUE(px.get() == nullptr); EXPECT_FALSE(px); EXPECT_TRUE(!px); @@ -1549,8 +1555,8 @@ namespace UnitTest TEST_F(SmartPtr, SharedPtrGetPointerCheckedDeleterNull) { struct X {}; - AZStd::shared_ptr px(static_cast(0), AZStd::checked_deleter()); - EXPECT_TRUE(px.get() == 0); + AZStd::shared_ptr px(static_cast(nullptr), AZStd::checked_deleter()); + EXPECT_TRUE(px.get() == nullptr); EXPECT_FALSE(px); EXPECT_TRUE(!px); @@ -1588,7 +1594,7 @@ namespace UnitTest TEST_F(SmartPtr, SharedPtrUseCountNullClass) { struct X {}; - AZStd::shared_ptr px(static_cast(0)); + AZStd::shared_ptr px(static_cast(nullptr)); EXPECT_TRUE(px.use_count() == 1); EXPECT_TRUE(px.unique()); @@ -1635,14 +1641,14 @@ namespace UnitTest px.swap(px2); - EXPECT_TRUE(px.get() == 0); - EXPECT_TRUE(px2.get() == 0); + EXPECT_TRUE(px.get() == nullptr); + EXPECT_TRUE(px2.get() == nullptr); using std::swap; swap(px, px2); - EXPECT_TRUE(px.get() == 0); - EXPECT_TRUE(px2.get() == 0); + EXPECT_TRUE(px.get() == nullptr); + EXPECT_TRUE(px2.get() == nullptr); } TEST_F(SmartPtr, SharedPtrSwapNewClass) @@ -1657,14 +1663,14 @@ namespace UnitTest EXPECT_TRUE(px.get() == p); EXPECT_TRUE(px.use_count() == 2); - EXPECT_TRUE(px2.get() == 0); + EXPECT_TRUE(px2.get() == nullptr); EXPECT_TRUE(px3.get() == p); EXPECT_TRUE(px3.use_count() == 2); using std::swap; swap(px, px2); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); EXPECT_TRUE(px2.get() == p); EXPECT_TRUE(px2.use_count() == 2); EXPECT_TRUE(px3.get() == p); @@ -1870,10 +1876,10 @@ namespace UnitTest AZStd::shared_ptr pv; AZStd::shared_ptr pi = AZStd::static_pointer_cast(pv); - EXPECT_TRUE(pi.get() == 0); + EXPECT_TRUE(pi.get() == nullptr); AZStd::shared_ptr px = AZStd::static_pointer_cast(pv); - EXPECT_TRUE(px.get() == 0); + EXPECT_TRUE(px.get() == nullptr); } TEST_F(SmartPtr, SharedPtrStaticPointerCastNewIntToVoid) @@ -1940,7 +1946,7 @@ namespace UnitTest AZStd::shared_ptr px; AZStd::shared_ptr px2 = AZStd::const_pointer_cast(px); - EXPECT_TRUE(px2.get() == 0); + EXPECT_TRUE(px2.get() == nullptr); } TEST_F(SmartPtr, SharedPtrIntConstPointerCastInt) @@ -1948,7 +1954,7 @@ namespace UnitTest AZStd::shared_ptr px; AZStd::shared_ptr px2 = AZStd::const_pointer_cast(px); - EXPECT_TRUE(px2.get() == 0); + EXPECT_TRUE(px2.get() == nullptr); } TEST_F(SmartPtr, SharedPtrClassConstPointerCastClass) @@ -1957,7 +1963,7 @@ namespace UnitTest AZStd::shared_ptr px; AZStd::shared_ptr px2 = AZStd::const_pointer_cast(px); - EXPECT_TRUE(px2.get() == 0); + EXPECT_TRUE(px2.get() == nullptr); } TEST_F(SmartPtr, SharedPtrVoidVolatileConstPointerCastVoid) diff --git a/Code/Framework/AzCore/Tests/AZStd/String.cpp b/Code/Framework/AzCore/Tests/AZStd/String.cpp index 0ff12a352c..91d2237ca2 100644 --- a/Code/Framework/AzCore/Tests/AZStd/String.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/String.cpp @@ -444,7 +444,7 @@ namespace UnitTest str2.back() = 'p'; AZ_TEST_ASSERT(str2.back() == 'p'); - AZ_TEST_ASSERT(str2.c_str() != 0); + AZ_TEST_ASSERT(str2.c_str() != nullptr); AZ_TEST_ASSERT(::strlen(str2.c_str()) == str2.length()); str2.resize(30, 'm'); @@ -793,7 +793,7 @@ namespace UnitTest AZ_TEST_ASSERT(alphanum_comp(strdup("Alpha 2 B"), strA) > 0); // show usage of the comparison functor with a set - typedef set > StringSetType; + using StringSetType = set>; StringSetType s; s.insert("Xiph Xlater 58"); s.insert("Xiph Xlater 5000"); @@ -879,7 +879,7 @@ namespace UnitTest AZ_TEST_ASSERT(*setIt++ == "Xiph Xlater 10000"); // show usage of comparison functor with a map - typedef map > StringIntMapType; + using StringIntMapType = map>; StringIntMapType m; m["z1.doc"] = 1; m["z10.doc"] = 2; @@ -1229,7 +1229,7 @@ namespace UnitTest string_view subView2 = view2.substr(10); EXPECT_EQ("Haystack", subView2); AZ_TEST_START_TRACE_SUPPRESSION; - string_view assertSubView = view2.substr(view2.size() + 1); + [[maybe_unused]] string_view assertSubView = view2.substr(view2.size() + 1); AZ_TEST_STOP_TRACE_SUPPRESSION(1); // compare @@ -1441,7 +1441,7 @@ namespace UnitTest TEST_F(String, String_FormatOnlyAllowsValidArgs) { - constexpr bool v1 = 0; + constexpr bool v1 = false; constexpr char v2 = 0; constexpr unsigned char v3 = 0; constexpr signed char v4 = 0; @@ -1472,7 +1472,7 @@ namespace UnitTest class WrappedInt { - int val; + [[maybe_unused]] int val; }; using ValidFormatArg = AZStd::string::_Format_Internal::ValidFormatArg; @@ -1751,6 +1751,7 @@ namespace UnitTest static constexpr basic_string_view elementView1(compileTimeString1); static constexpr basic_string_view elementView2(compileTimeString2); static_assert(elementView1.data(), "string_view.data() should be non-nullptr"); + static_assert(elementView2.data(), "string_view.data() should be non-nullptr"); } TYPED_TEST(BasicStringViewConstexprFixture, StringView_SizeOperatorsConstexpr) @@ -1779,7 +1780,7 @@ namespace UnitTest { using TypeParam = char; // null terminated compile time string - auto MakeCompileTimeString1 = []() constexpr -> const TypeParam* + [[maybe_unused]] auto MakeCompileTimeString1 = []() constexpr -> const TypeParam* { return "HelloWorld"; }; @@ -2131,7 +2132,6 @@ namespace UnitTest constexpr AZStd::fixed_string<128> test3{ AZStd::fixed_string<128>{}.insert(0, "Brown") }; constexpr AZStd::fixed_string<128> test4{ AZStd::fixed_string<128>{ "App" }.insert(0, AZStd::string_view("Blue")) }; constexpr AZStd::fixed_string<128> test5{ AZStd::fixed_string<128>{ "App" }.insert(0, test1, 2, 2) }; - constexpr AZStd::string_view redView("Red"); constexpr AZStd::fixed_string<128> test6{ AZStd::fixed_string<128>{ "App" }.insert(size_t(0), 5, 'X') }; constexpr AZStd::fixed_string<128> test7{ AZStd::fixed_string<128>{ "App" }.insert(0, "GreenTea", 5) }; auto MakeFixedStringWithInsertWithIteratorPos1 = []() constexpr diff --git a/Code/Framework/AzCore/Tests/AZStd/UserTypes.h b/Code/Framework/AzCore/Tests/AZStd/UserTypes.h index 30e83d8f1c..1b8c210205 100644 --- a/Code/Framework/AzCore/Tests/AZStd/UserTypes.h +++ b/Code/Framework/AzCore/Tests/AZStd/UserTypes.h @@ -56,7 +56,7 @@ namespace UnitTestInternal } // We use this class on the stack often, so alignment more than 16 bytes will not work on all platforms. - AZ_ALIGN(int m_data, 16); + alignas(16) int m_data; bool m_isMoved; }; diff --git a/Code/Framework/AzCore/Tests/AZStd/Variant.cpp b/Code/Framework/AzCore/Tests/AZStd/Variant.cpp index 824a99fa88..700574323c 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Variant.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Variant.cpp @@ -318,8 +318,6 @@ namespace UnitTest using TestVariant2 = AZStd::variant; static_assert(sizeof(TestVariant1) == sizeof(TestVariant2), "with different permutations variants of same types should be the same size"); using UnorderedVariant3 = AZStd::variant, TestAlignedStorage>; - constexpr size_t testVariant1Size = sizeof(TestVariant1); - constexpr size_t unorderedVariant3Size = sizeof(UnorderedVariant3); static_assert(sizeof(TestVariant1) == sizeof(UnorderedVariant3), "with different permutations variants of same types should be the same size"); } diff --git a/Code/Framework/AzCore/Tests/AZStd/VectorAndArray.cpp b/Code/Framework/AzCore/Tests/AZStd/VectorAndArray.cpp index dd10d20ef8..47c3630091 100644 --- a/Code/Framework/AzCore/Tests/AZStd/VectorAndArray.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/VectorAndArray.cpp @@ -36,12 +36,23 @@ using namespace UnitTestInternal; /** * Validate a vector for certain number of elements. */ -#define AZ_TEST_VALIDATE_VECTOR(_Vector, _NumElements) \ - EXPECT_TRUE(_Vector.validate()); \ - EXPECT_EQ(_NumElements, _Vector.size()); \ - EXPECT_TRUE((_NumElements > 0) ? !_Vector.empty() : _Vector.empty()); \ - EXPECT_TRUE((_NumElements > 0) ? _Vector.capacity() >= _NumElements : true); \ - EXPECT_TRUE((_NumElements > 0) ? _Vector.begin() != _Vector.end() : _Vector.begin() == _Vector.end()); \ +#define AZ_TEST_VALIDATE_VECTOR(_Vector, _NumElements) \ + EXPECT_NE(_NumElements, 0); \ + EXPECT_TRUE(_Vector.validate()); \ + EXPECT_EQ(_NumElements, _Vector.size()); \ + EXPECT_TRUE(!_Vector.empty()); \ + EXPECT_TRUE(_Vector.capacity() >= _NumElements); \ + EXPECT_TRUE(_Vector.begin() != _Vector.end()); \ + EXPECT_NE(nullptr, _Vector.data()) + + /** + * Validate a vector for 0 number of elements. The above macro creates expressions that are always true for size == 0 + */ +#define AZ_TEST_VALIDATE_VECTOR_0(_Vector) \ + EXPECT_TRUE(_Vector.validate()); \ + EXPECT_EQ(0, _Vector.size()); \ + EXPECT_TRUE(_Vector.empty()); \ + EXPECT_TRUE(_Vector.begin() == _Vector.end()); \ EXPECT_NE(nullptr, _Vector.data()) namespace UnitTest @@ -312,7 +323,7 @@ namespace UnitTest // erase int_vector1.erase(int_vector1.begin(), int_vector1.end()); - AZ_TEST_VALIDATE_VECTOR(int_vector1, 0); // Zero elements but valid capacity. + AZ_TEST_VALIDATE_VECTOR_0(int_vector1); // Zero elements but valid capacity. int_vector1.push_back(10); int_vector1.push_back(20); @@ -324,11 +335,11 @@ namespace UnitTest // clear int_vector1.clear(); - AZ_TEST_VALIDATE_VECTOR(int_vector1, 0); // Zero elements but valid capacity. + AZ_TEST_VALIDATE_VECTOR_0(int_vector1); // Zero elements but valid capacity. // swap int_vector1.swap(int_vector); - AZ_TEST_VALIDATE_VECTOR(int_vector, 0); + AZ_TEST_VALIDATE_VECTOR_0(int_vector); AZ_TEST_VALIDATE_VECTOR(int_vector1, 33); AZ_TEST_ASSERT(int_vector1.front() == 55); @@ -524,11 +535,11 @@ namespace UnitTest // Default vector (integral type). fixed_vector int_vector_default; - AZ_TEST_VALIDATE_VECTOR(int_vector_default, 0); + AZ_TEST_VALIDATE_VECTOR_0(int_vector_default); // Default vector (non-integral type). fixed_vector myclass_vector_default; - AZ_TEST_VALIDATE_VECTOR(myclass_vector_default, 0); + AZ_TEST_VALIDATE_VECTOR_0(myclass_vector_default); // Create a vector (using fill ctor, with memset optimization to set the values) typedef fixed_vector char_10_type; @@ -633,7 +644,7 @@ namespace UnitTest // erase int_vector1.erase(int_vector1.begin(), int_vector1.end()); - AZ_TEST_VALIDATE_VECTOR(int_vector1, 0); + AZ_TEST_VALIDATE_VECTOR_0(int_vector1); int_vector1.push_back(10); int_vector1.push_back(20); @@ -645,11 +656,11 @@ namespace UnitTest // clear int_vector1.clear(); - AZ_TEST_VALIDATE_VECTOR(int_vector1, 0); + AZ_TEST_VALIDATE_VECTOR_0(int_vector1); // swap int_vector1.swap(int_vector); - AZ_TEST_VALIDATE_VECTOR(int_vector, 0); + AZ_TEST_VALIDATE_VECTOR_0(int_vector); AZ_TEST_VALIDATE_VECTOR(int_vector1, 33); AZ_TEST_ASSERT(int_vector1.front() == 55); @@ -813,7 +824,7 @@ namespace UnitTest {1, 2, 3, 4} }; AZ_TEST_ASSERT(myArr.empty() == false); - AZ_TEST_ASSERT(myArr.data() != 0); + AZ_TEST_ASSERT(myArr.data() != nullptr); AZ_TEST_ASSERT(myArr.size() == 10); AZ_TEST_ASSERT(myArr.front() == 1); AZ_TEST_ASSERT(myArr.back() == 0); @@ -963,7 +974,7 @@ namespace UnitTest AZ_TEST_VALIDATE_VECTOR(deep_vec_2, 12); deep_vec_2.clear(); - AZ_TEST_VALIDATE_VECTOR(deep_vec_2, 0); + AZ_TEST_VALIDATE_VECTOR_0(deep_vec_2); } #endif // AZ_UNIT_TEST_SKIP_STD_VECTOR_AND_ARRAY_TESTS diff --git a/Code/Framework/AzCore/Tests/Asset/AssetDataStreamTests.cpp b/Code/Framework/AzCore/Tests/Asset/AssetDataStreamTests.cpp index efcc62682a..27903495f1 100644 --- a/Code/Framework/AzCore/Tests/Asset/AssetDataStreamTests.cpp +++ b/Code/Framework/AzCore/Tests/Asset/AssetDataStreamTests.cpp @@ -297,7 +297,7 @@ TEST_F(AssetDataStreamTest, IsFullyLoaded_FileDoesNotReadAllData_DataIsNotFullyL using ::testing::_; ON_CALL(m_mockStreamer, GetReadRequestResult(_, _, _, _)) - .WillByDefault([this, incompleteAssetSize]( + .WillByDefault([this]( [[maybe_unused]] FileRequestHandle request, void*& buffer, AZ::u64& numBytesRead, diff --git a/Code/Framework/AzCore/Tests/Asset/AssetManagerLoadingTests.cpp b/Code/Framework/AzCore/Tests/Asset/AssetManagerLoadingTests.cpp index e25c3dbcf7..8ce3747620 100644 --- a/Code/Framework/AzCore/Tests/Asset/AssetManagerLoadingTests.cpp +++ b/Code/Framework/AzCore/Tests/Asset/AssetManagerLoadingTests.cpp @@ -52,7 +52,7 @@ namespace UnitTest AssetLoadBus::Handler::BusConnect(m_assetId); } } - ~OnAssetReadyListener() + ~OnAssetReadyListener() override { m_assetId.SetInvalid(); m_latest = {}; @@ -109,7 +109,7 @@ namespace UnitTest { BusConnect(assetId); } - ~ContainerReadyListener() + ~ContainerReadyListener() override { BusDisconnect(); } @@ -2658,7 +2658,7 @@ namespace UnitTest m_canceled = true; } - ~CancelListener() + ~CancelListener() override { BusDisconnect(); } diff --git a/Code/Framework/AzCore/Tests/Asset/AssetManagerStreamingTests.cpp b/Code/Framework/AzCore/Tests/Asset/AssetManagerStreamingTests.cpp index 0fd792b444..a683f9630e 100644 --- a/Code/Framework/AzCore/Tests/Asset/AssetManagerStreamingTests.cpp +++ b/Code/Framework/AzCore/Tests/Asset/AssetManagerStreamingTests.cpp @@ -72,7 +72,7 @@ namespace UnitTest }); ON_CALL(m_mockStreamer, GetRequestStatus(_)) - .WillByDefault([this]([[maybe_unused]] FileRequestHandle request) + .WillByDefault([]([[maybe_unused]] FileRequestHandle request) { // Return whatever request status has been set in this class return IO::IStreamerTypes::RequestStatus::Completed; @@ -420,7 +420,7 @@ namespace UnitTest AZ::Data::AssetHandler::LoadResult LoadAssetData( [[maybe_unused]] const AZ::Data::Asset& asset, [[maybe_unused]] AZStd::shared_ptr stream, - [[maybe_unused]] const AZ::Data::AssetFilterCB& assetLoadFilterCB) + [[maybe_unused]] const AZ::Data::AssetFilterCB& assetLoadFilterCB) override { return AZ::Data::AssetHandler::LoadResult::LoadComplete; } diff --git a/Code/Framework/AzCore/Tests/BehaviorContextFixture.h b/Code/Framework/AzCore/Tests/BehaviorContextFixture.h index f6a8d8430c..1895f2e35b 100644 --- a/Code/Framework/AzCore/Tests/BehaviorContextFixture.h +++ b/Code/Framework/AzCore/Tests/BehaviorContextFixture.h @@ -62,7 +62,6 @@ namespace UnitTest const char* GetAppRoot() const override { return nullptr; } const char* GetEngineRoot() const override { return nullptr; } const char* GetExecutableFolder() const override { return nullptr; } - AZ::Debug::DrillerManager* GetDrillerManager() override { return nullptr; } void EnumerateEntities(const EntityCallback& /*callback*/) override {} void QueryApplicationType(AZ::ApplicationTypeQuery& /*appType*/) const override {} //// diff --git a/Code/Framework/AzCore/Tests/Components.cpp b/Code/Framework/AzCore/Tests/Components.cpp index 77524dabc9..55b1c193b3 100644 --- a/Code/Framework/AzCore/Tests/Components.cpp +++ b/Code/Framework/AzCore/Tests/Components.cpp @@ -22,8 +22,6 @@ #include #include -#include -#include #include #include diff --git a/Code/Framework/AzCore/Tests/Debug/LocalFileEventLoggerTests.cpp b/Code/Framework/AzCore/Tests/Debug/LocalFileEventLoggerTests.cpp index 11f32de42f..242ac0e65d 100644 --- a/Code/Framework/AzCore/Tests/Debug/LocalFileEventLoggerTests.cpp +++ b/Code/Framework/AzCore/Tests/Debug/LocalFileEventLoggerTests.cpp @@ -226,8 +226,10 @@ namespace AZ::Debug AZStd::thread threads[totalThreads]; for (size_t threadIndex = 0; threadIndex < totalThreads; ++threadIndex) { - threads[threadIndex] = AZStd::thread([&startLogging, &totalRecordsWritten, &message, recordsPerThreadCount]() + threads[threadIndex] = AZStd::thread([&startLogging, &message, &totalRecordsWritten]() { + AZ_UNUSED(message); + while (!startLogging) { AZStd::this_thread::yield(); diff --git a/Code/Framework/AzCore/Tests/Driller.cpp b/Code/Framework/AzCore/Tests/Driller.cpp deleted file mode 100644 index e135a23808..0000000000 --- a/Code/Framework/AzCore/Tests/Driller.cpp +++ /dev/null @@ -1,698 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#include - -#include - -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include - -//#define AZ_CORE_DRILLER_COMPARE_TEST -#if defined(AZ_CORE_DRILLER_COMPARE_TEST) -# include -# include -# include -#endif - -#include - -using namespace AZ; -using namespace AZ::Debug; - -namespace UnitTest -{ - /** - * MyDriller event bus... - */ - class MyDrillerInterface - : public AZ::Debug::DrillerEBusTraits - { - public: - virtual ~MyDrillerInterface() {} - // define one event X - virtual void OnEventX(int data) = 0; - // define a string event - virtual void OnStringEvent() = 0; - }; - - class MyDrillerCommandInterface - : public AZ::Debug::DrillerEBusTraits - { - public: - virtual ~MyDrillerCommandInterface() {} - - virtual class MyDrilledObject* RequestDrilledObject() = 0; - }; - - typedef AZ::EBus MyDrillerBus; - typedef AZ::EBus MyDrillerCommandBus; - - class MyDrilledObject - : public MyDrillerCommandBus::Handler - { - int i; - public: - MyDrilledObject() - : i(0) - { - BusConnect(); - } - - ~MyDrilledObject() override - { - BusDisconnect(); - } - ////////////////////////////////////////////////////////////////////////// - // MyDrillerCommandBus - MyDrilledObject* RequestDrilledObject() override - { - return this; - } - ////////////////////////////////////////////////////////////////////////// - void OnEventX() - { - EBUS_EVENT(MyDrillerBus, OnEventX, i); - ++i; - } - - void OnStringEvent() - { - EBUS_DBG_EVENT(MyDrillerBus, OnStringEvent); - } - }; - - - /** - * My driller implements the driller interface and an handles the MyDrillerBus events... - */ - class MyDriller - : public Driller - , public MyDrillerBus::Handler - { - bool m_isDetailedCapture; - class MyDrilledObject* drilledObject; - typedef vector::type ParamArrayType; - ParamArrayType m_params; - public: - AZ_CLASS_ALLOCATOR(MyDriller, OSAllocator, 0); - - const char* GroupName() const override { return "TestDrillers"; } - const char* GetName() const override { return "MyTestDriller"; } - const char* GetDescription() const override { return "MyTestDriller description...."; } - int GetNumParams() const override { return static_cast(m_params.size()); } - const Param* GetParam(int index) const override { return &m_params[index]; } - - MyDriller() - : m_isDetailedCapture(false) - , drilledObject(NULL) - { - Param isDetailed; - isDetailed.desc = "IsDetailedDrill"; - isDetailed.name = AZ_CRC("IsDetailedDrill", 0x2155cef2); - isDetailed.type = Param::PT_BOOL; - isDetailed.value = 0; - m_params.push_back(isDetailed); - } - - void Start(const Param* params = NULL, int numParams = 0) override - { - m_isDetailedCapture = m_params[0].value != 0; - if (params) - { - for (int i = 0; i < numParams; i++) - { - if (params[i].name == m_params[0].name) - { - m_isDetailedCapture = params[i].value != 0; - } - } - } - - EBUS_EVENT_RESULT(drilledObject, MyDrillerCommandBus, RequestDrilledObject); - AZ_TEST_ASSERT(drilledObject != NULL); /// Make sure we have our object by the time we started the driller - - m_output->BeginTag(AZ_CRC("MyDriller", 0xc3b7dceb)); - m_output->Write(AZ_CRC("OnStart", 0x8b372fca), m_isDetailedCapture); - // write drilled object initial state - m_output->EndTag(AZ_CRC("MyDriller", 0xc3b7dceb)); - - BusConnect(); - } - void Stop() override - { - drilledObject = NULL; - m_output->BeginTag(AZ_CRC("MyDriller", 0xc3b7dceb)); - m_output->Write(AZ_CRC("OnStop", 0xf6701caa), m_isDetailedCapture); - m_output->EndTag(AZ_CRC("MyDriller", 0xc3b7dceb)); - BusDisconnect(); - } - - void OnEventX(int data) override - { - void* ptr = AZ_INVALID_POINTER; - float f = 3.2f; - m_output->BeginTag(AZ_CRC("MyDriller", 0xc3b7dceb)); - m_output->Write(AZ_CRC("EventX", 0xc4558ec2), data); - m_output->Write(AZ_CRC("Pointer", 0x320468a8), ptr); - m_output->Write(AZ_CRC("Float", 0xc9a55e95), f); - m_output->EndTag(AZ_CRC("MyDriller", 0xc3b7dceb)); - } - - void OnStringEvent() override - { - m_output->BeginTag(AZ_CRC("MyDriller", 0xc3b7dceb)); - m_output->BeginTag(AZ_CRC("StringEvent", 0xd1e005df)); - m_output->Write(AZ_CRC("StringOne", 0x56efb231), "This is copied string"); - m_output->Write(AZ_CRC("StringTwo", 0x3d49bea6), "This is referenced string", false); // don't copy the string if we use string pool, this will be faster as we don't delete the string - m_output->EndTag(AZ_CRC("StringEvent", 0xd1e005df)); - m_output->EndTag(AZ_CRC("MyDriller", 0xc3b7dceb)); - } - }; - - /** - * - */ - class FileStreamDrillerTest - : public AllocatorsFixture - { - DrillerManager* m_drillerManager = nullptr; - MyDriller* m_driller = nullptr; - public: - void SetUp() override - { - AllocatorsFixture::SetUp(); - - m_drillerManager = DrillerManager::Create(); - m_driller = aznew MyDriller; - // Register driller descriptor - m_drillerManager->Register(m_driller); - // check that our driller descriptor is registered - AZ_TEST_ASSERT(m_drillerManager->GetNumDrillers() == 1); - } - - void TearDown() override - { - // remove our driller descriptor - m_drillerManager->Unregister(m_driller); - AZ_TEST_ASSERT(m_drillerManager->GetNumDrillers() == 0); - DrillerManager::Destroy(m_drillerManager); - - AllocatorsFixture::TearDown(); - } - - /** - * My Driller data handler. - */ - class MyDrillerHandler - : public DrillerHandlerParser - { - public: - static const bool s_isWarnOnMissingDrillers = true; - int m_lastData; - - MyDrillerHandler() - : m_lastData(-1) {} - - // From the template query - DrillerHandlerParser* FindDrillerHandler(u32 drillerId) - { - if (drillerId == AZ_CRC("MyDriller", 0xc3b7dceb)) - { - return this; - } - return NULL; - } - - DrillerHandlerParser* OnEnterTag(u32 tagName) override - { - (void)tagName; - return NULL; - } - void OnData(const DrillerSAXParser::Data& dataNode) override - { - if (dataNode.m_name == AZ_CRC("OnStart", 0x8b372fca) || dataNode.m_name == AZ_CRC("OnStop", 0xf6701caa)) - { - bool isDetailedCapture; - dataNode.Read(isDetailedCapture); - AZ_TEST_ASSERT(isDetailedCapture == true); - } - else if (dataNode.m_name == AZ_CRC("EventX", 0xc4558ec2)) - { - int data; - dataNode.Read(data); - AZ_TEST_ASSERT(data > m_lastData); - m_lastData = data; - } - else if (dataNode.m_name == AZ_CRC("Pointer", 0x320468a8)) - { - AZ::u64 pointer = 0; //< read pointers in u64 to cover all platforms - dataNode.Read(pointer); - AZ_TEST_ASSERT(pointer == 0x0badf00dul); - } - else if (dataNode.m_name == AZ_CRC("Float", 0xc9a55e95)) - { - float f; - dataNode.Read(f); - AZ_TEST_ASSERT(f == 3.2f); - } - } - }; - - ////////////////////////////////////////////////////////////////////////// - - void run() - { - // get our driller descriptor - Driller* driller = m_drillerManager->GetDriller(0); - AZ_TEST_ASSERT(driller != NULL); - AZ_TEST_ASSERT(strcmp(driller->GetName(), "MyTestDriller") == 0); - AZ_TEST_ASSERT(driller->GetNumParams() == 1); - - // read the default params and make a copy... - Driller::Param param = *driller->GetParam(0); - AZ_TEST_ASSERT(strcmp(param.desc, "IsDetailedDrill") == 0); - AZ_TEST_ASSERT(param.name == AZ_CRC("IsDetailedDrill", 0x2155cef2)); - AZ_TEST_ASSERT(param.type == Driller::Param::PT_BOOL); - // tweak the default params by enabling detailed drilling - param.value = 1; - - // create a list of driller we what to drill - DrillerManager::DrillerListType dillersToDrill; - DrillerManager::DrillerInfo di; - di.id = driller->GetId(); // set driller id - di.params.push_back(param); // set driller custom params - dillersToDrill.push_back(di); - - // open a driller output file stream - // open a driller output file stream - AZStd::string testFileName = GetTestFolderPath() + "drilltest.dat"; - DrillerOutputFileStream drillerOutputStream; - drillerOutputStream.Open(testFileName.c_str(), IO::SystemFile::SF_OPEN_CREATE | IO::SystemFile::SF_OPEN_WRITE_ONLY); - - ////////////////////////////////////////////////////////////////////////// - // Drill an object - MyDrilledObject myDrilledObject; - clock_t st = clock(); - - // start a driller session with the file stream and the list of drillers - DrillerSession* drillerSession = m_drillerManager->Start(drillerOutputStream, dillersToDrill); - // update for N frames - for (int i = 0; i < AZ_TRAIT_UNIT_TEST_DILLER_TRIGGER_EVENT_COUNT; ++i) - { - // trigger event X that we want to drill... - myDrilledObject.OnEventX(); - m_drillerManager->FrameUpdate(); - } - // stop the drillers - m_drillerManager->Stop(drillerSession); - // Stop writing and flush all data - drillerOutputStream.Close(); - AZ_Printf("Driller", "Compression time %.09f seconds\n", (double)(clock() - st) / CLOCKS_PER_SEC); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // try to load the drill data - DrillerInputFileStream drillerInputStream; - drillerInputStream.Open(testFileName.c_str(), IO::SystemFile::SF_OPEN_READ_ONLY); - DrillerDOMParser dp; - AZ_TEST_ASSERT(dp.CanParse() == true); - dp.ProcessStream(drillerInputStream); - AZ_TEST_ASSERT(dp.CanParse() == true); - drillerInputStream.Close(); - - u32 startDataId = AZ_CRC("StartData", 0xecf3f53f); - u32 frameId = AZ_CRC("Frame", 0xb5f83ccd); - - ////////////////////////////////////////////////////////////////////////// - // read all data - const DrillerDOMParser::Node* root = dp.GetRootNode(); - int lastFrame = -1; - int lastData = -1; - for (DrillerDOMParser::Node::NodeListType::const_iterator iter = root->m_tags.begin(); iter != root->m_tags.end(); ++iter) - { - const DrillerDOMParser::Node* node = &*iter; - u32 name = node->m_name; - AZ_TEST_ASSERT(name == startDataId || name == frameId); - if (name == startDataId) - { - unsigned int currentPlatform; - node->GetDataRequired(AZ_CRC("Platform", 0x3952d0cb))->Read(currentPlatform); - AZ_TEST_ASSERT(currentPlatform == static_cast(AZ::g_currentPlatform)); - const DrillerDOMParser::Node* drillerNode = node->GetTag(AZ_CRC("Driller", 0xa6e1fb73)); - AZ_TEST_ASSERT(drillerNode != NULL); - AZ::u32 drillerName; - drillerNode->GetDataRequired(AZ_CRC("Name", 0x5e237e06))->Read(drillerName); - AZ_TEST_ASSERT(drillerName == m_driller->GetId()); - const DrillerDOMParser::Node* paramNode = drillerNode->GetTag(AZ_CRC("Param", 0xa4fa7c89)); - AZ_TEST_ASSERT(paramNode != NULL); - u32 paramName; - char paramDesc[128]; - int paramType; - int paramValue; - paramNode->GetDataRequired(AZ_CRC("Name", 0x5e237e06))->Read(paramName); - AZ_TEST_ASSERT(paramName == param.name); - paramNode->GetDataRequired(AZ_CRC("Description", 0x6de44026))->Read(paramDesc, AZ_ARRAY_SIZE(paramDesc)); - AZ_TEST_ASSERT(strcmp(paramDesc, param.desc) == 0); - paramNode->GetDataRequired(AZ_CRC("Type", 0x8cde5729))->Read(paramType); - AZ_TEST_ASSERT(paramType == param.type); - paramNode->GetDataRequired(AZ_CRC("Value", 0x1d775834))->Read(paramValue); - AZ_TEST_ASSERT(paramValue == param.value); - } - else - { - int curFrame; - node->GetDataRequired(AZ_CRC("FrameNum", 0x85a1a919))->Read(curFrame); - AZ_TEST_ASSERT(curFrame > lastFrame); // check order - lastFrame = curFrame; - const DrillerDOMParser::Node* myDrillerNode = node->GetTag(AZ_CRC("MyDriller", 0xc3b7dceb)); - AZ_TEST_ASSERT(myDrillerNode != NULL); - const DrillerDOMParser::Data* dataEntry; - dataEntry = myDrillerNode->GetData(AZ_CRC("EventX", 0xc4558ec2)); - if (dataEntry) - { - int data; - dataEntry->Read(data); - AZ_TEST_ASSERT(data > lastData); - lastData = data; - dataEntry = myDrillerNode->GetData(AZ_CRC("Pointer", 0x320468a8)); - AZ_TEST_ASSERT(dataEntry); - unsigned int ptr; - dataEntry->Read(ptr); - AZ_TEST_ASSERT(static_cast(ptr) == reinterpret_cast(AZ_INVALID_POINTER)); - float f; - dataEntry = myDrillerNode->GetData(AZ_CRC("Float", 0xc9a55e95)); - AZ_TEST_ASSERT(dataEntry); - dataEntry->Read(f); - AZ_TEST_ASSERT(f == 3.2f); - } - else - { - bool isDetailedCapture; - dataEntry = myDrillerNode->GetData(AZ_CRC("OnStart", 0x8b372fca)); - if (dataEntry) - { - dataEntry->Read(isDetailedCapture); - } - else - { - myDrillerNode->GetDataRequired(AZ_CRC("OnStop", 0xf6701caa))->Read(isDetailedCapture); - } - AZ_TEST_ASSERT(isDetailedCapture == true); - } - } - } - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // Read that with Tag Handlers - drillerInputStream.Open(testFileName.c_str(), IO::SystemFile::SF_OPEN_READ_ONLY); - - DrillerRootHandler rootHandler; - DrillerSAXParserHandler dhp(&rootHandler); - dhp.ProcessStream(drillerInputStream); - // Verify that Default templates forked fine... - AZ_TEST_ASSERT(rootHandler.m_drillerSessionInfo.m_platform == static_cast(AZ::g_currentPlatform)); - AZ_TEST_ASSERT(rootHandler.m_drillerSessionInfo.m_drillers.size() == 1); - { - const DrillerManager::DrillerInfo& dinfo = rootHandler.m_drillerSessionInfo.m_drillers.front(); - AZ_TEST_ASSERT(dinfo.id == AZ_CRC("MyTestDriller", 0x5cc4edf5)); - AZ_TEST_ASSERT(dinfo.params.size() == 1); - AZ_TEST_ASSERT(strcmp(param.desc, "IsDetailedDrill") == 0); - AZ_TEST_ASSERT(param.name == AZ_CRC("IsDetailedDrill", 0x2155cef2)); - AZ_TEST_ASSERT(param.type == Driller::Param::PT_BOOL); - // tweak the default params by enabling detailed drilling - param.value = 1; - AZ_TEST_ASSERT(dinfo.params[0].name == AZ_CRC("IsDetailedDrill", 0x2155cef2)); - AZ_TEST_ASSERT(dinfo.params[0].desc == NULL); // ignored for now - AZ_TEST_ASSERT(dinfo.params[0].type == Driller::Param::PT_BOOL); - AZ_TEST_ASSERT(dinfo.params[0].value == 1); - } - drillerInputStream.Close(); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // - - ////////////////////////////////////////////////////////////////////////// - } - }; - - TEST_F(FileStreamDrillerTest, Test) - { - run(); - } - - /** - * - */ - class StringPoolDrillerTest - : public AllocatorsFixture - { - DrillerManager* m_drillerManager = nullptr; - MyDriller* m_driller = nullptr; - public: - void SetUp() override - { - AllocatorsFixture::SetUp(); - - m_drillerManager = DrillerManager::Create(); - m_driller = aznew MyDriller; - // Register driller descriptor - m_drillerManager->Register(m_driller); - // check that our driller descriptor is registered - AZ_TEST_ASSERT(m_drillerManager->GetNumDrillers() == 1); - } - - void TearDown() override - { - // remove our driller descriptor - m_drillerManager->Unregister(m_driller); - AZ_TEST_ASSERT(m_drillerManager->GetNumDrillers() == 0); - DrillerManager::Destroy(m_drillerManager); - - AllocatorsFixture::TearDown(); - } - - /** - * My Driller data handler. - */ - class MyDrillerHandler - : public DrillerHandlerParser - { - public: - static const bool s_isWarnOnMissingDrillers = true; - - MyDrillerHandler() {} - - // From the template query - DrillerHandlerParser* FindDrillerHandler(u32 drillerId) - { - if (drillerId == AZ_CRC("MyDriller", 0xc3b7dceb)) - { - return this; - } - return NULL; - } - - DrillerHandlerParser* OnEnterTag(u32 tagName) override - { - if (tagName == AZ_CRC("StringEvent", 0xd1e005df)) - { - return this; - } - return NULL; - } - void OnData(const DrillerSAXParser::Data& dataNode) override - { - if (dataNode.m_name == AZ_CRC("OnStart", 0x8b372fca) || dataNode.m_name == AZ_CRC("OnStop", 0xf6701caa)) - { - bool isDetailedCapture; - dataNode.Read(isDetailedCapture); - AZ_TEST_ASSERT(isDetailedCapture == true); - } - else if (dataNode.m_name == AZ_CRC("StringOne", 0x56efb231)) - { - // read string as a copy - char stringCopy[256]; - dataNode.Read(stringCopy, AZ_ARRAY_SIZE(stringCopy)); - AZ_TEST_ASSERT(strcmp(stringCopy, "This is copied string") == 0); - } - else if (dataNode.m_name == AZ_CRC("StringTwo", 0x3d49bea6)) - { - // read string as reference if possible, otherwise read it as a copy - const char* stringRef = dataNode.ReadPooledString(); - AZ_TEST_ASSERT(strcmp(stringRef, "This is referenced string") == 0); - } - } - }; - - void run() - { - // get our driller descriptor - Driller* driller = m_drillerManager->GetDriller(0); - Driller::Param param = *driller->GetParam(0); - param.value = 1; - // create a list of driller we what to drill - DrillerManager::DrillerListType dillersToDrill; - DrillerManager::DrillerInfo di; - di.id = driller->GetId(); // set driller id - di.params.push_back(param); // set driller custom params - dillersToDrill.push_back(di); - - MyDrilledObject myDrilledObject; - - // open a driller output file stream - AZStd::string testFileName = GetTestFolderPath() + "stringpooldrilltest.dat"; - DrillerOutputFileStream drillerOutputStream; - DrillerInputFileStream drillerInputStream; - DrillerDefaultStringPool stringPool; - DrillerSession* drillerSession; - DrillerRootHandler rootHandler; - DrillerSAXParserHandler dhp(&rootHandler); - - ////////////////////////////////////////////////////////////////////////// - // Drill an object without string pools - drillerOutputStream.Open(testFileName.c_str(), IO::SystemFile::SF_OPEN_CREATE | IO::SystemFile::SF_OPEN_WRITE_ONLY); - - // start a driller session with the file stream and the list of drillers - drillerSession = m_drillerManager->Start(drillerOutputStream, dillersToDrill); - // update for N frames - for (int i = 0; i < AZ_TRAIT_UNIT_TEST_DILLER_TRIGGER_EVENT_COUNT; ++i) - { - myDrilledObject.OnStringEvent(); - m_drillerManager->FrameUpdate(); - } - // stop the drillers - m_drillerManager->Stop(drillerSession); - // Stop writing and flush all data - drillerOutputStream.Close(); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // Read all data that was written without string pool, in a stream that uses one. - drillerInputStream.Open(testFileName.c_str(), IO::SystemFile::SF_OPEN_READ_ONLY); - drillerInputStream.SetStringPool(&stringPool); - - dhp.ProcessStream(drillerInputStream); - drillerInputStream.Close(); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // Drill an object without string pools - drillerOutputStream.Open(testFileName.c_str(), IO::SystemFile::SF_OPEN_CREATE | IO::SystemFile::SF_OPEN_WRITE_ONLY); - stringPool.Reset(); - drillerOutputStream.SetStringPool(&stringPool); // set the string pool on save - - // start a driller session with the file stream and the list of drillers - drillerSession = m_drillerManager->Start(drillerOutputStream, dillersToDrill); - // update for N frames - for (int i = 0; i < AZ_TRAIT_UNIT_TEST_DILLER_TRIGGER_EVENT_COUNT; ++i) - { - myDrilledObject.OnStringEvent(); - m_drillerManager->FrameUpdate(); - } - // stop the drillers - m_drillerManager->Stop(drillerSession); - // Stop writing and flush all data - drillerOutputStream.Close(); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // Read all data that was written without string pool, in a stream that uses one. - stringPool.Reset(); - drillerInputStream.Open(testFileName.c_str(), IO::SystemFile::SF_OPEN_READ_ONLY); - drillerInputStream.SetStringPool(&stringPool); - - dhp.ProcessStream(drillerInputStream); - drillerInputStream.Close(); - ////////////////////////////////////////////////////////////////////////// - } - }; - - TEST_F(StringPoolDrillerTest, Test) - { - run(); - } - - /** - * - */ - class DrillFileStreamCheck - { - public: - void run() - { - // open and read drilled file - } - }; - - /** - * Driller application test - */ - TEST(DrillerApplication, Test) - { - ComponentApplication app; - - ////////////////////////////////////////////////////////////////////////// - // Create application environment code driven - ComponentApplication::Descriptor appDesc; - appDesc.m_memoryBlocksByteSize = 10 * 1024 * 1024; - appDesc.m_enableDrilling = true; - Entity* systemEntity = app.Create(appDesc); - - systemEntity->CreateComponent(); - systemEntity->CreateComponent(); // note that this component is what registers the streamer driller - - systemEntity->Init(); - systemEntity->Activate(); - - { - // open a driller output file stream - char testFileName[AZ_MAX_PATH_LEN]; - MakePathFromTestFolder(testFileName, AZ_MAX_PATH_LEN, "drillapptest.dat"); - DrillerOutputFileStream fs; - fs.Open(testFileName, IO::SystemFile::SF_OPEN_CREATE | IO::SystemFile::SF_OPEN_WRITE_ONLY); - - // create a list of driller we what to drill - DrillerManager::DrillerListType drillersToDrill; - DrillerManager::DrillerInfo di; - di.id = AZ_CRC("TraceMessagesDriller", 0xa61d1b00); - drillersToDrill.push_back(di); - di.id = AZ_CRC("MemoryDriller", 0x1b31269d); - drillersToDrill.push_back(di); - - ASSERT_NE(nullptr, app.GetDrillerManager()); - DrillerSession* drillerSession = app.GetDrillerManager()->Start(fs, drillersToDrill); - ASSERT_NE(nullptr, drillerSession); - - const int numOfFrames = 10000; - void* memory = NULL; - for (int i = 0; i < numOfFrames; ++i) - { - memory = azmalloc(rand() % 2048 + 1); - azfree(memory); - app.Tick(); - } - - app.GetDrillerManager()->Stop(drillerSession); // stop session manually - fs.Close(); // close the file with driller info - } - - app.Destroy(); - ////////////////////////////////////////////////////////////////////////// - } -} diff --git a/Code/Framework/AzCore/Tests/EBus.cpp b/Code/Framework/AzCore/Tests/EBus.cpp index c30c9ed62d..10216a0485 100644 --- a/Code/Framework/AzCore/Tests/EBus.cpp +++ b/Code/Framework/AzCore/Tests/EBus.cpp @@ -2837,7 +2837,7 @@ namespace UnitTest handlerList.emplace_back(i, maxSleep); } - auto work = [maxSleep, threadCount]() + auto work = []() { char sentinel[64] = { 0 }; char* end = sentinel + AZ_ARRAY_SIZE(sentinel); @@ -2923,7 +2923,7 @@ namespace UnitTest MyEventGroupImpl handler; - auto work = [maxSleep, &handler]() + auto work = [&handler]() { for (int i = 1; i < cycleCount; ++i) { diff --git a/Code/Framework/AzCore/Tests/EnumTests.cpp b/Code/Framework/AzCore/Tests/EnumTests.cpp index 7f123a23b4..4c19d3f574 100644 --- a/Code/Framework/AzCore/Tests/EnumTests.cpp +++ b/Code/Framework/AzCore/Tests/EnumTests.cpp @@ -81,7 +81,7 @@ namespace UnitTest auto EnumerateTestEnum = []() constexpr -> bool { int count = 0; - for (TestEnumEnumeratorValueAndString enumMember : TestEnumMembers) + for ([[maybe_unused]] TestEnumEnumeratorValueAndString enumMember : TestEnumMembers) { ++count; } diff --git a/Code/Framework/AzCore/Tests/EventTests.cpp b/Code/Framework/AzCore/Tests/EventTests.cpp index aaa70344e7..cb86ef0c17 100644 --- a/Code/Framework/AzCore/Tests/EventTests.cpp +++ b/Code/Framework/AzCore/Tests/EventTests.cpp @@ -398,7 +398,7 @@ namespace Benchmark { public: EBusPerfBaselineImplEmpty() { EBusPerfBaselineBus::Handler::BusConnect(); } - ~EBusPerfBaselineImplEmpty() { EBusPerfBaselineBus::Handler::BusDisconnect(); } + ~EBusPerfBaselineImplEmpty() override { EBusPerfBaselineBus::Handler::BusDisconnect(); } void OnSignal(int32_t) override {} }; @@ -418,7 +418,7 @@ namespace Benchmark { public: EBusPerfBaselineImplIncrement() { EBusPerfBaselineBus::Handler::BusConnect(); } - ~EBusPerfBaselineImplIncrement() { EBusPerfBaselineBus::Handler::BusDisconnect(); } + ~EBusPerfBaselineImplIncrement() override { EBusPerfBaselineBus::Handler::BusDisconnect(); } void SetIncrementCounter(int32_t* incrementCounter) { m_incrementCounter = incrementCounter; } void OnSignal(int32_t) override { ++(*m_incrementCounter); } int32_t* m_incrementCounter; diff --git a/Code/Framework/AzCore/Tests/GenericStreamTests.cpp b/Code/Framework/AzCore/Tests/GenericStreamTests.cpp index 5f6190ac76..4f21c1e593 100644 --- a/Code/Framework/AzCore/Tests/GenericStreamTests.cpp +++ b/Code/Framework/AzCore/Tests/GenericStreamTests.cpp @@ -62,7 +62,7 @@ public: // Reroute the mock stream to our output MemoryStream for writing. ON_CALL(m_mockGenericStream, Write(_, _)) - .WillByDefault([this, &outputStream](AZ::IO::SizeType bytes, const void* buffer) + .WillByDefault([&outputStream](AZ::IO::SizeType bytes, const void* buffer) { return outputStream.Write(bytes, buffer); }); diff --git a/Code/Framework/AzCore/Tests/IO/Path/PathTests.cpp b/Code/Framework/AzCore/Tests/IO/Path/PathTests.cpp index 41e0ac3f09..2fca03bc59 100644 --- a/Code/Framework/AzCore/Tests/IO/Path/PathTests.cpp +++ b/Code/Framework/AzCore/Tests/IO/Path/PathTests.cpp @@ -870,11 +870,11 @@ namespace Benchmark , public ::UnitTest::AllocatorsBase { public: - void SetUp([[maybe_unused]] const ::benchmark::State& state) + void SetUp([[maybe_unused]] const ::benchmark::State& state) override { ::UnitTest::AllocatorsBase::SetupAllocator(); } - void TearDown([[maybe_unused]] const ::benchmark::State& state) + void TearDown([[maybe_unused]] const ::benchmark::State& state) override { ::UnitTest::AllocatorsBase::TeardownAllocator(); } diff --git a/Code/Framework/AzCore/Tests/Jobs.cpp b/Code/Framework/AzCore/Tests/Jobs.cpp index 0eb46a0051..b63e139dd0 100644 --- a/Code/Framework/AzCore/Tests/Jobs.cpp +++ b/Code/Framework/AzCore/Tests/Jobs.cpp @@ -184,7 +184,7 @@ namespace UnitTest public: AZ_CLASS_ALLOCATOR(Vector3SumJob, ThreadPoolAllocator, 0) - Vector3SumJob(const Vector3* array, unsigned int size, Vector3* result, JobContext* context = NULL) + Vector3SumJob(const Vector3* array, unsigned int size, Vector3* result, JobContext* context = nullptr) : Job(true, context) , m_array(array) , m_size(size) @@ -284,7 +284,7 @@ namespace UnitTest public: AZ_CLASS_ALLOCATOR(FibonacciJobJoin, ThreadPoolAllocator, 0) - FibonacciJobJoin(int* result, JobContext* context = NULL) + FibonacciJobJoin(int* result, JobContext* context = nullptr) : Job(true, context) , m_result(result) { @@ -304,7 +304,7 @@ namespace UnitTest public: AZ_CLASS_ALLOCATOR(FibonacciJobFork, ThreadPoolAllocator, 0) - FibonacciJobFork(int n, int* result, JobContext* context = NULL) + FibonacciJobFork(int n, int* result, JobContext* context = nullptr) : Job(true, context) , m_n(n) , m_result(result) @@ -374,7 +374,7 @@ namespace UnitTest public: AZ_CLASS_ALLOCATOR(FibonacciJob2, ThreadPoolAllocator, 0) - FibonacciJob2(int n, int* result, JobContext* context = NULL) + FibonacciJob2(int n, int* result, JobContext* context = nullptr) : Job(true, context) , m_n(n) , m_result(result) @@ -441,7 +441,7 @@ namespace UnitTest public: AZ_CLASS_ALLOCATOR(MergeSortJobJoin, ThreadPoolAllocator, 0) - MergeSortJobJoin(int* array, int* tempArray, int size1, int size2, JobContext* context = NULL) + MergeSortJobJoin(int* array, int* tempArray, int size1, int size2, JobContext* context = nullptr) : Job(true, context) , m_array(array) , m_tempArray(tempArray) @@ -496,7 +496,7 @@ namespace UnitTest public: AZ_CLASS_ALLOCATOR(MergeSortJobFork, ThreadPoolAllocator, 0) - MergeSortJobFork(int* array, int* tempArray, int size, JobContext* context = NULL) + MergeSortJobFork(int* array, int* tempArray, int size, JobContext* context = nullptr) : Job(true, context) , m_array(array) , m_tempArray(tempArray) @@ -585,7 +585,7 @@ namespace UnitTest public: AZ_CLASS_ALLOCATOR(QuickSortJob, ThreadPoolAllocator, 0) - QuickSortJob(int* array, int left, int right, JobContext* context = NULL) + QuickSortJob(int* array, int left, int right, JobContext* context = nullptr) : Job(true, context) , m_array(array) , m_left(left) @@ -1361,7 +1361,7 @@ namespace UnitTest AZ::JobCompletion completion; // Push a parent job that pushes the work as child jobs (requires the current job, so this is a real world test of "functor with current job as param") - AZ::Job* parentJob = AZ::CreateJobFunction([this, &jobData, JobCount](AZ::Job& thisJob) + AZ::Job* parentJob = AZ::CreateJobFunction([this, &jobData](AZ::Job& thisJob) { EXPECT_EQ(m_jobManager->GetCurrentJob(), &thisJob); diff --git a/Code/Framework/AzCore/Tests/Math/CrcTests.cpp b/Code/Framework/AzCore/Tests/Math/CrcTests.cpp index 04d2e3d8cb..0255c1ad6d 100644 --- a/Code/Framework/AzCore/Tests/Math/CrcTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/CrcTests.cpp @@ -56,7 +56,7 @@ namespace Benchmark // This function only exist to calculate AZ::Crc32 values at compile time for (auto _ : state) { - constexpr auto resultArray = Crc32Internal::GenerateTestCrc32Values(); + [[maybe_unused]] constexpr auto resultArray = Crc32Internal::GenerateTestCrc32Values(); } } diff --git a/Code/Framework/AzCore/Tests/Math/Matrix3x4PerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/Matrix3x4PerformanceTests.cpp index e4314f9cfb..9aed29005d 100644 --- a/Code/Framework/AzCore/Tests/Math/Matrix3x4PerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Matrix3x4PerformanceTests.cpp @@ -22,7 +22,7 @@ namespace Benchmark : public benchmark::Fixture { public: - void SetUp([[maybe_unused]] const::benchmark::State& state) + void SetUp([[maybe_unused]] const::benchmark::State& state) override { m_testDataArray.resize(1000); diff --git a/Code/Framework/AzCore/Tests/Math/ShapeIntersectionTests.cpp b/Code/Framework/AzCore/Tests/Math/ShapeIntersectionTests.cpp index 659febf564..e7980af781 100644 --- a/Code/Framework/AzCore/Tests/Math/ShapeIntersectionTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/ShapeIntersectionTests.cpp @@ -117,9 +117,6 @@ namespace UnitTest EXPECT_TRUE(AZ::ShapeIntersection::Classify(frustum, s2) == AZ::IntersectResult::Exterior); } - AZ::Vector3 axisX = AZ::Vector3::CreateAxisX(); - AZ::Vector3 axisY = AZ::Vector3::CreateAxisY(); - AZ::Vector3 axisZ = AZ::Vector3::CreateAxisZ(); { AZ::Obb obb = AZ::Obb::CreateFromPositionRotationAndHalfLengths( AZ::Vector3(0.0f, -3.9f, 0.0f), AZ::Quaternion::CreateIdentity(), AZ::Vector3::CreateOne()); diff --git a/Code/Framework/AzCore/Tests/Math/SimdMathTests.cpp b/Code/Framework/AzCore/Tests/Math/SimdMathTests.cpp index 4570d79b83..b7b3c9c952 100644 --- a/Code/Framework/AzCore/Tests/Math/SimdMathTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/SimdMathTests.cpp @@ -1414,7 +1414,6 @@ namespace UnitTest typename VectorType::Int32Type testVector = VectorType::ConvertToInt(sourceVector); VectorType::StoreUnaligned(testStoreValues, testVector); - int32_t results[4] = { 0, 1, -1, 2 }; for (int32_t i = 0; i < VectorType::ElementCount; ++i) { EXPECT_THAT(testStoreValues[i], testWholeLoadValues[i]); @@ -1476,7 +1475,6 @@ namespace UnitTest typename VectorType::Int32Type testVector = VectorType::ConvertToIntNearest(sourceVector); VectorType::StoreUnaligned(testStoreValues, testVector); - int32_t results[4] = { 0, 1, -1, 2 }; for (int32_t i = 0; i < VectorType::ElementCount; ++i) { EXPECT_THAT(testStoreValues[i], testWholeLoadValues[i]); diff --git a/Code/Framework/AzCore/Tests/Memory.cpp b/Code/Framework/AzCore/Tests/Memory.cpp index e1bffc472b..611af827d2 100644 --- a/Code/Framework/AzCore/Tests/Memory.cpp +++ b/Code/Framework/AzCore/Tests/Memory.cpp @@ -90,7 +90,7 @@ namespace UnitTest #else static const int numAllocations = 10000; #endif - void* addresses[numAllocations] = {0}; + void* addresses[numAllocations] = {nullptr}; IAllocatorAllocate& sysAlloc = AllocatorInstance::Get(); @@ -242,7 +242,7 @@ namespace UnitTest ////////////////////////////////////////////////////////////////////////// // realloc test - address[0] = NULL; + address[0] = nullptr; static const unsigned int checkValue = 0x0badbabe; // create tree (non pool) allocation (we usually pool < 256 bytes) address[0] = sysAlloc.Allocate(2048, 16); @@ -372,7 +372,7 @@ namespace UnitTest poolAllocator.GetRecords()->unlock(); } - for (i = 0; address[i] != 0; ++i) + for (i = 0; address[i] != nullptr; ++i) { poolAlloc.DeAllocate(address[i]); } @@ -544,7 +544,7 @@ namespace UnitTest #else static const int numAllocations = 10000; #endif - void* addresses[numAllocations] = {0}; + void* addresses[numAllocations] = {nullptr}; IAllocatorAllocate& poolAlloc = AllocatorInstance::Get(); @@ -665,7 +665,7 @@ namespace UnitTest poolAllocator.GetRecords()->unlock(); } - for (int i = 0; address[i] != 0; ++i) + for (int i = 0; address[i] != nullptr; ++i) { poolAlloc.DeAllocate(address[i]); } @@ -820,7 +820,7 @@ namespace UnitTest AllocatorInstance::Create(sysDesc); BestFitExternalMapAllocator::Descriptor desc; - desc.m_mapAllocator = NULL; // use the system allocator + desc.m_mapAllocator = nullptr; // use the system allocator desc.m_memoryBlockByteSize = 4 * 1024 * 1024; desc.m_memoryBlock = azmalloc(desc.m_memoryBlockByteSize, desc.m_memoryBlockAlignment); @@ -982,7 +982,7 @@ namespace UnitTest : m_data(data) {} ~MyClass() {} - AZ_ALIGN(int m_data, 32); + alignas(32) int m_data; }; // Explicitly doesn't have AZ_CLASS_ALLOCATOR class MyDerivedClass diff --git a/Code/Framework/AzCore/Tests/Memory/HphaSchema.cpp b/Code/Framework/AzCore/Tests/Memory/HphaSchema.cpp index cb2b32e212..aaf4ce1811 100644 --- a/Code/Framework/AzCore/Tests/Memory/HphaSchema.cpp +++ b/Code/Framework/AzCore/Tests/Memory/HphaSchema.cpp @@ -121,13 +121,13 @@ namespace Benchmark : public ::benchmark::Fixture { public: - void SetUp(const ::benchmark::State& state) + void SetUp(const ::benchmark::State& state) override { AZ_UNUSED(state); AZ::AllocatorInstance::Create(); } - void TearDown(const ::benchmark::State& state) + void TearDown(const ::benchmark::State& state) override { AZ_UNUSED(state); AZ::AllocatorInstance::Destroy(); diff --git a/Code/Framework/AzCore/Tests/Memory/LeakDetection.cpp b/Code/Framework/AzCore/Tests/Memory/LeakDetection.cpp index ce94ce14f2..b4f129bb48 100644 --- a/Code/Framework/AzCore/Tests/Memory/LeakDetection.cpp +++ b/Code/Framework/AzCore/Tests/Memory/LeakDetection.cpp @@ -76,7 +76,6 @@ namespace UnitTest return true; } - AZ::Debug::DrillerManager* m_drillerManager = nullptr; bool m_leakDetected = false; bool m_leakExpected = false; }; diff --git a/Code/Framework/AzCore/Tests/Name/NameJsonSerializerTests.cpp b/Code/Framework/AzCore/Tests/Name/NameJsonSerializerTests.cpp index 2bca8b5970..7801059535 100644 --- a/Code/Framework/AzCore/Tests/Name/NameJsonSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Name/NameJsonSerializerTests.cpp @@ -28,12 +28,12 @@ namespace JsonSerializationTests AZ::NameDictionary::Destroy(); } - void Reflect(AZStd::unique_ptr& context) + void Reflect(AZStd::unique_ptr& context) override { AZ::Name::Reflect(context.get()); } - void Reflect(AZStd::unique_ptr& context) + void Reflect(AZStd::unique_ptr& context) override { AZ::Name::Reflect(context.get()); } diff --git a/Code/Framework/AzCore/Tests/Name/NameTests.cpp b/Code/Framework/AzCore/Tests/Name/NameTests.cpp index 3db77ac4c4..5417d36051 100644 --- a/Code/Framework/AzCore/Tests/Name/NameTests.cpp +++ b/Code/Framework/AzCore/Tests/Name/NameTests.cpp @@ -599,7 +599,6 @@ namespace UnitTest TEST_F(NameTest, ConcurrencyDataTest_EachThreadCreatesOneName_NoCollision) { - const uint32_t maxUniqueHashes = std::numeric_limits::max(); AZ::NameDictionary::Destroy(); AZ::NameDictionary::Create(); @@ -609,7 +608,6 @@ namespace UnitTest TEST_F(NameTest, ConcurrencyDataTest_EachThreadCreatesOneName_HighCollisions) { - const uint32_t maxUniqueHashes = 25; AZ::NameDictionary::Destroy(); AZ::NameDictionary::Create(); @@ -619,7 +617,6 @@ namespace UnitTest TEST_F(NameTest, ConcurrencyDataTest_EachThreadRepeatedlyCreatesAndReleasesOneName_NoCollision) { - const uint32_t maxUniqueHashes = std::numeric_limits::max(); AZ::NameDictionary::Destroy(); AZ::NameDictionary::Create(); @@ -630,7 +627,6 @@ namespace UnitTest TEST_F(NameTest, ConcurrencyDataTest_EachThreadRepeatedlyCreatesAndReleasesOneName_HighCollisions) { - const uint32_t maxUniqueHashes = 25; AZ::NameDictionary::Destroy(); AZ::NameDictionary::Create(); diff --git a/Code/Framework/AzCore/Tests/OrderedEventBenchmarks.cpp b/Code/Framework/AzCore/Tests/OrderedEventBenchmarks.cpp index 7cada35d19..25b2007bea 100644 --- a/Code/Framework/AzCore/Tests/OrderedEventBenchmarks.cpp +++ b/Code/Framework/AzCore/Tests/OrderedEventBenchmarks.cpp @@ -74,7 +74,7 @@ namespace Benchmark { public: EBusPerfBaselineImplEmpty() { EBusPerfBaselineBus::Handler::BusConnect(); } - ~EBusPerfBaselineImplEmpty() { EBusPerfBaselineBus::Handler::BusDisconnect(); } + ~EBusPerfBaselineImplEmpty() override { EBusPerfBaselineBus::Handler::BusDisconnect(); } void OnSignal(int32_t) override {} }; @@ -94,7 +94,7 @@ namespace Benchmark { public: EBusPerfBaselineImplIncrement() { EBusPerfBaselineBus::Handler::BusConnect(); } - ~EBusPerfBaselineImplIncrement() { EBusPerfBaselineBus::Handler::BusDisconnect(); } + ~EBusPerfBaselineImplIncrement() override { EBusPerfBaselineBus::Handler::BusDisconnect(); } void SetIncrementCounter(int32_t* incrementCounter) { m_incrementCounter = incrementCounter; } void OnSignal(int32_t) override { ++(*m_incrementCounter); } int32_t* m_incrementCounter; diff --git a/Code/Framework/AzCore/Tests/Outcome.cpp b/Code/Framework/AzCore/Tests/Outcome.cpp index a01f6915a4..ed3a56995f 100644 --- a/Code/Framework/AzCore/Tests/Outcome.cpp +++ b/Code/Framework/AzCore/Tests/Outcome.cpp @@ -86,7 +86,7 @@ namespace UnitTest struct Aligned16 { - AZ_ALIGN(char m_data, 16); + alignas(16) char m_data; }; //! Class that changes a value when it's created and destroyed. diff --git a/Code/Framework/AzCore/Tests/Platform/Windows/Tests/IO/Streamer/StorageDriveTests_Windows.cpp b/Code/Framework/AzCore/Tests/Platform/Windows/Tests/IO/Streamer/StorageDriveTests_Windows.cpp index a842626e18..6d572a02a3 100644 --- a/Code/Framework/AzCore/Tests/Platform/Windows/Tests/IO/Streamer/StorageDriveTests_Windows.cpp +++ b/Code/Framework/AzCore/Tests/Platform/Windows/Tests/IO/Streamer/StorageDriveTests_Windows.cpp @@ -639,7 +639,7 @@ namespace AZ::IO path.InitFromAbsolutePath(m_dummyFilepath); request->CreateRead(nullptr, buffer, unalignedSize + 4, path, unalignedOffset, unalignedSize); - auto callback = [&fileSize, unalignedOffset, unalignedSize, this](const FileRequest& request) + auto callback = [unalignedOffset, unalignedSize, this](const FileRequest& request) { EXPECT_EQ(request.GetStatus(), AZ::IO::IStreamerTypes::RequestStatus::Completed); auto& readRequest = AZStd::get(request.GetCommand()); diff --git a/Code/Framework/AzCore/Tests/Rtti.cpp b/Code/Framework/AzCore/Tests/Rtti.cpp index 862482d10a..935df848c2 100644 --- a/Code/Framework/AzCore/Tests/Rtti.cpp +++ b/Code/Framework/AzCore/Tests/Rtti.cpp @@ -171,7 +171,6 @@ namespace UnitTest AZ_TEST_ASSERT(AzGenericTypeInfo::Uuid() == templateUuid); // Check all combinations return a valid id. - Uuid nullId = Uuid::CreateNull(); AZ_TEST_ASSERT(AzGenericTypeInfo::Uuid() == AZ::Uuid("{911B2EA8-CCB1-4F0C-A535-540AD00173AE}")); AZ_TEST_ASSERT(AzGenericTypeInfo::Uuid() == AZ::Uuid("{6BAE9836-EC49-466A-85F2-F4B1B70839FB}")); AZ_TEST_ASSERT(AzGenericTypeInfo::Uuid() == AZ::Uuid("{C9F9C644-CCC3-4F77-A792-F5B5DBCA746E}")); @@ -460,8 +459,8 @@ namespace UnitTest TEST_F(Rtti, IsAbstract) { // compile time proof that the two non-abstract classes are not abstract at compile time: - ExampleFullImplementationClass one; - ExampleCombined two; + [[maybe_unused]] ExampleFullImplementationClass one; + [[maybe_unused]] ExampleCombined two; ASSERT_NE(GetRttiHelper(), nullptr); ASSERT_NE(GetRttiHelper(), nullptr); diff --git a/Code/Framework/AzCore/Tests/Script.cpp b/Code/Framework/AzCore/Tests/Script.cpp index e0301f8974..336e4e5dd0 100644 --- a/Code/Framework/AzCore/Tests/Script.cpp +++ b/Code/Framework/AzCore/Tests/Script.cpp @@ -1382,7 +1382,7 @@ namespace UnitTest static int s_errorCount = 0; IncompleteType* s_globalIncompletePtr = static_cast(AZ_INVALID_POINTER); - IncompleteType* s_globalIncompletePtr1 = 0; + IncompleteType* s_globalIncompletePtr1 = nullptr; void GlobalVarSet(int v) { @@ -2234,7 +2234,7 @@ namespace UnitTest // incomplete types passed by a light-user data (pointer reference) AZ_TEST_ASSERT(s_globalIncompletePtr == reinterpret_cast(AZ_INVALID_POINTER)); - AZ_TEST_ASSERT(s_globalIncompletePtr1 == 0); + AZ_TEST_ASSERT(s_globalIncompletePtr1 == nullptr); script.Execute("globalIncomplete1 = globalIncomplete"); AZ_TEST_ASSERT(s_globalIncompletePtr1 == s_globalIncompletePtr); @@ -3157,7 +3157,7 @@ namespace UnitTest char stackOutput[2048]; debugContext->StackTrace(stackOutput, AZ_ARRAY_SIZE(stackOutput)); AZ_Printf("Script", "%s", stackOutput); - AZ_TEST_ASSERT(strstr(stackOutput, "GlobalFunction") != 0); + AZ_TEST_ASSERT(strstr(stackOutput, "GlobalFunction") != nullptr); AZ_TEST_ASSERT(breakpoint->m_lineNumber == 20); } else if (m_numBreakpointHits == 2) @@ -3193,7 +3193,7 @@ namespace UnitTest char stackOutput[2048]; debugContext->StackTrace(stackOutput, AZ_ARRAY_SIZE(stackOutput)); AZ_Printf("Script", "%s", stackOutput); - AZ_TEST_ASSERT(strstr(stackOutput, "GlobalMult") != 0); + AZ_TEST_ASSERT(strstr(stackOutput, "GlobalMult") != nullptr); AZ_TEST_ASSERT(breakpoint->m_lineNumber == 23); } diff --git a/Code/Framework/AzCore/Tests/Serialization.cpp b/Code/Framework/AzCore/Tests/Serialization.cpp index 05b739bf5f..e554945b55 100644 --- a/Code/Framework/AzCore/Tests/Serialization.cpp +++ b/Code/Framework/AzCore/Tests/Serialization.cpp @@ -1242,7 +1242,6 @@ namespace UnitTest const char* GetAppRoot() const override { return nullptr; } const char* GetEngineRoot() const override { return nullptr; } const char* GetExecutableFolder() const override { return nullptr; } - Debug::DrillerManager* GetDrillerManager() override { return nullptr; } void EnumerateEntities(const EntityCallback& /*callback*/) override {} void QueryApplicationType(AZ::ApplicationTypeQuery& /*appType*/) const override {} ////////////////////////////////////////////////////////////////////////// @@ -2232,7 +2231,7 @@ TEST_F(SerializeBasicTest, BasicTypeTest_Succeed) (void)classId; DeprecationTestClass* obj = reinterpret_cast(classPtr); EXPECT_EQ( 0, obj->m_deprecated.m_data ); - EXPECT_EQ( NULL, obj->m_deprecatedPtr ); + EXPECT_EQ( nullptr, obj->m_deprecatedPtr ); EXPECT_EQ( 0, obj->m_oldClassData ); EXPECT_EQ( 0.f, obj->m_newClassData ); EXPECT_EQ( 0, obj->m_missingMember ); @@ -4058,7 +4057,7 @@ namespace UnitTest if (strcmp(classData->m_name, "MyEditStruct") == 0) { - EXPECT_TRUE(classData->m_editData != NULL); + EXPECT_TRUE(classData->m_editData != nullptr); EXPECT_EQ( 0, strcmp(classData->m_editData->m_name, "MyEditStruct") ); EXPECT_EQ( 0, strcmp(classData->m_editData->m_description, "My edit struct class used for ...") ); EXPECT_EQ( 2, classData->m_editData->m_elements.size() ); @@ -4072,12 +4071,12 @@ namespace UnitTest // Number of options attribute EXPECT_EQ(classElement->m_editData->m_attributes[0].first, AZ_CRC("NumOptions", 0x90274abc)); Edit::AttributeData* intData = azrtti_cast*>(classElement->m_editData->m_attributes[0].second); - EXPECT_TRUE(intData != NULL); + EXPECT_TRUE(intData != nullptr); EXPECT_EQ( 3, intData->Get(instance) ); // Get options attribute EXPECT_EQ( classElement->m_editData->m_attributes[1].first, AZ_CRC("Options", 0xd035fa87)); Edit::AttributeFunction* funcData = azrtti_cast*>(classElement->m_editData->m_attributes[1].second); - EXPECT_TRUE(funcData != NULL); + EXPECT_TRUE(funcData != nullptr); EXPECT_EQ( 20, funcData->Invoke(instance, 10) ); } return true; diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/ArraySerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/ArraySerializerTests.cpp index 4dc74779f2..e410ba9ca4 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/ArraySerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/ArraySerializerTests.cpp @@ -58,7 +58,7 @@ namespace JsonSerializationTests return array; } - AZStd::shared_ptr CreatePartialDefaultInstance() + AZStd::shared_ptr CreatePartialDefaultInstance() override { auto array = AZStd::make_shared(); (*array)[0] = 10; @@ -128,7 +128,7 @@ namespace JsonSerializationTests return array; } - AZStd::shared_ptr CreatePartialDefaultInstance() + AZStd::shared_ptr CreatePartialDefaultInstance() override { auto partialInstance = aznew MultipleInheritence(); partialInstance->m_var1 = 142; diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/BasicContainerSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/BasicContainerSerializerTests.cpp index 6839afac6d..3bc574c2ce 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/BasicContainerSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/BasicContainerSerializerTests.cpp @@ -144,11 +144,6 @@ namespace JsonSerializationTests { return false; } - - auto compare = [](const int* lhs, const int* rhs) -> bool - { - return *lhs == *rhs; - }; return AZStd::equal(lhs.begin(), lhs.end(), rhs.begin(), SimplePointerTestDescriptionCompare{}); } }; diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/IntSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/IntSerializerTests.cpp index c971535f0b..9aca0b8e47 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/IntSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/IntSerializerTests.cpp @@ -544,6 +544,7 @@ namespace JsonSerializationTests ResultCode result = this->m_serializer->Store(convertedValue, &value, nullptr, azrtti_typeid::DataType>(), *this->m_jsonSerializationContext); + EXPECT_EQ(Outcomes::Success, result.GetOutcome()); if constexpr (AZStd::is_signed::DataType>::value) { diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationTests.cpp index 76624a0d44..20d956cd8a 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationTests.cpp @@ -560,7 +560,6 @@ namespace JsonSerializationTests { using namespace AZ::JsonSerializationResult; - TemplatedClass instance; ResultCode result = AZ::JsonSerialization::Store(*m_jsonDocument, m_jsonDocument->GetAllocator(), nullptr, nullptr, azrtti_typeid(), *m_serializationSettings); diff --git a/Code/Framework/AtomCore/Tests/JsonSerializationUtilsTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationUtilsTests.cpp similarity index 99% rename from Code/Framework/AtomCore/Tests/JsonSerializationUtilsTests.cpp rename to Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationUtilsTests.cpp index 77bcb0c08d..3444484246 100644 --- a/Code/Framework/AtomCore/Tests/JsonSerializationUtilsTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationUtilsTests.cpp @@ -13,7 +13,7 @@ #include -#include +#include namespace UnitTest { diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/MapSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/MapSerializerTests.cpp index 41b17f9ade..4979df04be 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/MapSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/MapSerializerTests.cpp @@ -169,7 +169,7 @@ namespace JsonSerializationTests return AZStd::shared_ptr(new Map{}, &Delete); } - AZStd::shared_ptr CreatePartialDefaultInstance() + AZStd::shared_ptr CreatePartialDefaultInstance() override { auto instance = AZStd::shared_ptr(new Map{}, &Delete); instance->emplace(AZStd::make_pair(aznew SimpleClass(), aznew SimpleClass(188, 188.0))); diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/MathMatrixSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/MathMatrixSerializerTests.cpp index 1126aeb662..3cb316f472 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/MathMatrixSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/MathMatrixSerializerTests.cpp @@ -469,6 +469,7 @@ namespace JsonSerializationTests *this->m_jsonDocument, *this->m_jsonDeserializationContext); + ASSERT_EQ(Outcomes::DefaultsUsed, result.GetOutcome()); EXPECT_TRUE(defaultValue == output); } @@ -503,7 +504,6 @@ namespace JsonSerializationTests using namespace AZ::JsonSerializationResult; using Descriptor = typename JsonMathMatrixSerializerTests::Descriptor; - const auto defaultValue = Descriptor::MatrixType::CreateIdentity(); rapidjson::Value& objectValue = this->m_jsonDocument->SetObject(); auto input = Descriptor::MatrixType::CreateIdentity(); DataHelper::AddData(objectValue, input, this->m_jsonDocument->GetAllocator()); diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/StringSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/StringSerializerTests.cpp index a2a3d42ebb..af6dedb51b 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/StringSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/StringSerializerTests.cpp @@ -33,7 +33,7 @@ namespace JsonSerializationTests return AZStd::make_shared("Hello"); } - AZStd::string_view GetJsonForFullySetInstance() + AZStd::string_view GetJsonForFullySetInstance() override { return R"("Hello")"; } @@ -48,7 +48,7 @@ namespace JsonSerializationTests features.m_supportsInjection = false; } - bool AreEqual(const String& lhs, const String& rhs) + bool AreEqual(const String& lhs, const String& rhs) override { return lhs.compare(rhs) == 0; } diff --git a/Code/Framework/AzCore/Tests/Settings/SettingsRegistryConsoleUtilsTests.cpp b/Code/Framework/AzCore/Tests/Settings/SettingsRegistryConsoleUtilsTests.cpp index 5b18faa3d1..6bcd57f849 100644 --- a/Code/Framework/AzCore/Tests/Settings/SettingsRegistryConsoleUtilsTests.cpp +++ b/Code/Framework/AzCore/Tests/Settings/SettingsRegistryConsoleUtilsTests.cpp @@ -147,7 +147,7 @@ namespace SettingsRegistryConsoleUtilsTests struct SettingsRegistryDumpCommandHandler : public AZ::Debug::TraceMessageBus::Handler { - bool OnOutput(const char* window, const char* message) + bool OnOutput(const char* window, const char* message) override { if (window == AZStd::string_view("SettingsRegistry")) { @@ -218,7 +218,7 @@ namespace SettingsRegistryConsoleUtilsTests , m_expectedValue2{ expectedValue2 } { } - bool OnOutput(const char* window, const char* message) + bool OnOutput(const char* window, const char* message) override { if (window == AZStd::string_view("SettingsRegistry")) { diff --git a/Code/Framework/AzCore/Tests/Statistics.cpp b/Code/Framework/AzCore/Tests/Statistics.cpp index 941c2eff0b..4577618d5a 100644 --- a/Code/Framework/AzCore/Tests/Statistics.cpp +++ b/Code/Framework/AzCore/Tests/Statistics.cpp @@ -40,7 +40,7 @@ namespace UnitTest } } - ~StatisticsTest() + ~StatisticsTest() override { } diff --git a/Code/Framework/AzCore/Tests/Streamer/BlockCacheTests.cpp b/Code/Framework/AzCore/Tests/Streamer/BlockCacheTests.cpp index f770af57be..3a107da61d 100644 --- a/Code/Framework/AzCore/Tests/Streamer/BlockCacheTests.cpp +++ b/Code/Framework/AzCore/Tests/Streamer/BlockCacheTests.cpp @@ -184,7 +184,7 @@ namespace AZ::IO size = size >> 2; for (u64 i = 0; i < size; ++i) { - // Using assert here because in case of a problem EXPECT would + // Using assert here because in case of a problem EXPECT would // cause a large amount of log noise. ASSERT_EQ(buffer[i], offset + (i << 2)); } @@ -203,7 +203,9 @@ namespace AZ::IO { do { - while (m_context->FinalizeCompletedRequests()); + while (m_context->FinalizeCompletedRequests()) + { + } } while (m_cache->ExecuteRequests()); } @@ -269,7 +271,7 @@ namespace AZ::IO RedirectReadCalls(); EXPECT_CALL(*this, ReadFile(_, _, 0, m_fakeFileLength)); - + ProcessRead(m_buffer, m_path, 0, m_fakeFileLength, IStreamerTypes::RequestStatus::Completed); VerifyReadBuffer(0, m_fakeFileLength); } @@ -519,8 +521,8 @@ namespace AZ::IO using ::testing::_; using ::testing::Return; - CreateTestEnvironment(); - + CreateTestEnvironment(); + EXPECT_CALL(*m_mock, ExecuteRequests()) .WillOnce(Return(true)) .WillRepeatedly(Return(false)); @@ -553,7 +555,7 @@ namespace AZ::IO RunProcessLoop(); EXPECT_TRUE(allRequestsCompleted); - + VerifyReadBuffer(256, m_fakeFileLength - 512); VerifyReadBuffer(buffer1, m_fakeFileLength - 768, secondReadSize); } @@ -622,7 +624,7 @@ namespace AZ::IO m_fakeFileFound = false; m_fakeFileLength = 0; - + ProcessRead(m_buffer, m_path, 0, m_blockSize, IStreamerTypes::RequestStatus::Failed); } @@ -650,18 +652,18 @@ namespace AZ::IO status.m_isIdle = false; })); EXPECT_CALL(*this, ReadFile(_, _, _, _)).Times(count); - + constexpr size_t scratchBufferSize = 128_kib; using ScratchBuffer = char[scratchBufferSize]; ScratchBuffer buffers[count]; - + bool allRequestsCompleted = true; auto completed = [&allRequestsCompleted](const FileRequest& request) { // Capture result before request is recycled. allRequestsCompleted = allRequestsCompleted && request.GetStatus() == IStreamerTypes::RequestStatus::Completed; }; - + for (size_t i = 0; i < count; ++i) { StreamStackEntry::Status status; @@ -738,7 +740,7 @@ namespace AZ::IO RedirectReadCalls(); EXPECT_CALL(*this, ReadFile(_, _, 256, m_fakeFileLength - 256)); - + ProcessRead(m_buffer, m_path, 256, m_fakeFileLength - 256, IStreamerTypes::RequestStatus::Completed); VerifyReadBuffer(256, m_fakeFileLength - 256); } @@ -1062,7 +1064,7 @@ namespace AZ::IO .WillRepeatedly(Return(false)); EXPECT_CALL(*m_mock, QueueRequest(_)) .WillRepeatedly(Invoke(this, &BlockCacheTest::QueueReadRequest)); - + size_t firstReadSize = m_fakeFileLength - (2 * m_blockSize) - 512; FileRequest* request0 = m_context->GetNewInternalRequest(); request0->CreateRead(nullptr, m_buffer, m_bufferSize, m_path, 256, firstReadSize); @@ -1097,7 +1099,7 @@ namespace AZ::IO VerifyReadBuffer(buffer1.get(), secondReadOffset, secondReadSize); } - + @@ -1146,7 +1148,7 @@ namespace AZ::IO FileRequest* request = m_context->GetNewInternalRequest(); request->CreateFlush(m_path); RunAndCompleteRequest(request, IStreamerTypes::RequestStatus::Completed); - + // The partial read would normally be serviced from the cache, but now triggers another read. EXPECT_CALL(*this, ReadFile(_, _, _, _)).Times(1); ProcessRead(m_buffer, m_path, 512, m_blockSize - 1024, IStreamerTypes::RequestStatus::Completed); @@ -1170,7 +1172,7 @@ namespace AZ::IO FileRequest* request = m_context->GetNewInternalRequest(); request->CreateFlushAll(); RunAndCompleteRequest(request, IStreamerTypes::RequestStatus::Completed); - + // The partial read would normally be serviced from the cache, but now triggers another read. EXPECT_CALL(*this, ReadFile(_, _, _, _)).Times(1); ProcessRead(m_buffer, m_path, 512, m_blockSize - 1024, IStreamerTypes::RequestStatus::Completed); diff --git a/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryConformityTests.h b/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryConformityTests.h index e6084fe115..7162b6efa0 100644 --- a/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryConformityTests.h +++ b/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryConformityTests.h @@ -250,7 +250,7 @@ namespace AZ::IO constexpr s32 minValue = std::numeric_limits::min(); EXPECT_CALL(*mock, UpdateStatus(_)) - .WillOnce([minValue](StreamStackEntry::Status& status) + .WillOnce([](StreamStackEntry::Status& status) { status.m_numAvailableSlots = minValue; }); diff --git a/Code/Framework/AzCore/Tests/StringFunc.cpp b/Code/Framework/AzCore/Tests/StringFunc.cpp index 2b6f19736a..68821ba3f9 100644 --- a/Code/Framework/AzCore/Tests/StringFunc.cpp +++ b/Code/Framework/AzCore/Tests/StringFunc.cpp @@ -966,7 +966,7 @@ namespace AZ { public: StringPathFuncTest() = default; - virtual ~StringPathFuncTest() = default; + ~StringPathFuncTest() override = default; }; diff --git a/Code/Framework/AzCore/Tests/TaskTests.cpp b/Code/Framework/AzCore/Tests/TaskTests.cpp index f2ca484df3..f65dffcd99 100644 --- a/Code/Framework/AzCore/Tests/TaskTests.cpp +++ b/Code/Framework/AzCore/Tests/TaskTests.cpp @@ -225,6 +225,7 @@ namespace UnitTest defaultTD, [td = AZStd::move(td)] { + AZ_UNUSED(td); }); task.Invoke(); // Destructor should not have run yet (except on moved-from instances) diff --git a/Code/Framework/AzCore/Tests/TimeDataStatistics.cpp b/Code/Framework/AzCore/Tests/TimeDataStatistics.cpp deleted file mode 100644 index 21b42fc451..0000000000 --- a/Code/Framework/AzCore/Tests/TimeDataStatistics.cpp +++ /dev/null @@ -1,208 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#include -#include -#include - -#include -#include - -#include - -#include -#include -#include -#include -#include -#include - -using namespace AZ; -using namespace Debug; - -namespace UnitTest -{ - /** - * Validate functionality of the convenience class TimeDataStatisticsManager. - * It is a specialized version of RunningStatisticsManager that works with Timer type - * of registers that can be captured with the FrameProfilerBus::OnFrameProfilerData() - */ - class TimeDataStatisticsManagerTest - : public AllocatorsFixture - , public FrameProfilerBus::Handler - { - static constexpr const char* PARENT_TIMER_STAT = "ParentStat"; - static constexpr const char* CHILD_TIMER_STAT0 = "ChildStat0"; - static constexpr const char* CHILD_TIMER_STAT1 = "ChildStat1"; - - public: - TimeDataStatisticsManagerTest() - : AllocatorsFixture() - { - } - - void SetUp() override - { - AllocatorsFixture::SetUp(); - m_statsManager = AZStd::make_unique(); - } - - void TearDown() override - { - m_statsManager = nullptr; - AllocatorsFixture::TearDown(); - } - - ////////////////////////////////////////////////////////////////////////// - // FrameProfilerBus - virtual void OnFrameProfilerData(const FrameProfiler::ThreadDataArray& data) - { - for (size_t iThread = 0; iThread < data.size(); ++iThread) - { - const FrameProfiler::ThreadData& td = data[iThread]; - FrameProfiler::ThreadData::RegistersMap::const_iterator regIt = td.m_registers.begin(); - for (; regIt != td.m_registers.end(); ++regIt) - { - const FrameProfiler::RegisterData& rd = regIt->second; - u32 unitTestCrc = AZ_CRC("UnitTest", 0x8089cea8); - if (unitTestCrc != rd.m_systemId) - { - continue; //Not for us. - } - ASSERT_EQ(ProfilerRegister::PRT_TIME, rd.m_type); - const FrameProfiler::FrameData& fd = rd.m_frames.back(); - m_statsManager->PushTimeDataSample(rd.m_name, fd.m_timeData); - } - } - } - ////////////////////////////////////////////////////////////////////////// - - int ChildFunction0(int numIterations, int sleepTimeMilliseconds) - { - AZ_PROFILE_SCOPE(UnitTest, CHILD_TIMER_STAT0); - AZStd::this_thread::sleep_for(AZStd::chrono::milliseconds(sleepTimeMilliseconds)); - int result = 5; - for (int i = 0; i < numIterations; ++i) - { - result += i % 3; - } - return result; - } - - int ChildFunction1(int numIterations, int sleepTimeMilliseconds) - { - AZ_PROFILE_SCOPE(UnitTest, CHILD_TIMER_STAT1); - AZStd::this_thread::sleep_for(AZStd::chrono::milliseconds(sleepTimeMilliseconds)); - int result = 5; - for (int i = 0; i < numIterations; ++i) - { - result += i % 3; - } - return result; - } - - int ParentFunction(int numIterations, int sleepTimeMilliseconds) - { - AZ_PROFILE_SCOPE(UnitTest, PARENT_TIMER_STAT); - AZStd::this_thread::sleep_for(AZStd::chrono::milliseconds(sleepTimeMilliseconds)); - int result = 0; - result += ChildFunction0(numIterations, sleepTimeMilliseconds); - result += ChildFunction1(numIterations, sleepTimeMilliseconds); - return result; - } - - void run() - { - Debug::FrameProfilerBus::Handler::BusConnect(); - - ComponentApplication app; - ComponentApplication::Descriptor desc; - desc.m_useExistingAllocator = true; - desc.m_enableDrilling = false; // we already created a memory driller for the test (AllocatorsFixture) - ComponentApplication::StartupParameters startupParams; - startupParams.m_allocator = &AllocatorInstance::Get(); - Entity* systemEntity = app.Create(desc, startupParams); - systemEntity->CreateComponent(); - - systemEntity->Init(); - systemEntity->Activate(); // start frame component - - const int sleepTimeAllFuncsMillis = 1; - const int numIterations = 10; - for (int iterationCounter = 0; iterationCounter < numIterations; ++iterationCounter) - { - ParentFunction(numIterations, sleepTimeAllFuncsMillis); - //Collect all samples. - app.Tick(); - } - - //Verify we have three running stats. - { - AZStd::vector allStats; - m_statsManager->GetAllStatistics(allStats); - EXPECT_EQ(allStats.size(), 3); - } - - AZStd::string parentStatName(PARENT_TIMER_STAT); - AZStd::string child0StatName(CHILD_TIMER_STAT0); - AZStd::string child1StatName(CHILD_TIMER_STAT1); - ASSERT_TRUE(m_statsManager->GetStatistic(parentStatName) != nullptr); - ASSERT_TRUE(m_statsManager->GetStatistic(child0StatName) != nullptr); - ASSERT_TRUE(m_statsManager->GetStatistic(child1StatName) != nullptr); - - EXPECT_EQ(m_statsManager->GetStatistic(parentStatName)->GetNumSamples(), numIterations); - EXPECT_EQ(m_statsManager->GetStatistic(child0StatName)->GetNumSamples(), numIterations); - EXPECT_EQ(m_statsManager->GetStatistic(child1StatName)->GetNumSamples(), numIterations); - - const double minimumExpectDurationOfChildFunctionMicros = 1; - const double minimumExpectDurationOfParentFunctionMicros = 1; - - EXPECT_GE(m_statsManager->GetStatistic(parentStatName)->GetMinimum(), minimumExpectDurationOfParentFunctionMicros); - EXPECT_GE(m_statsManager->GetStatistic(parentStatName)->GetAverage(), minimumExpectDurationOfParentFunctionMicros); - EXPECT_GE(m_statsManager->GetStatistic(parentStatName)->GetMaximum(), minimumExpectDurationOfParentFunctionMicros); - - EXPECT_GE(m_statsManager->GetStatistic(child0StatName)->GetMinimum(), minimumExpectDurationOfChildFunctionMicros); - EXPECT_GE(m_statsManager->GetStatistic(child0StatName)->GetAverage(), minimumExpectDurationOfChildFunctionMicros); - EXPECT_GE(m_statsManager->GetStatistic(child0StatName)->GetMaximum(), minimumExpectDurationOfChildFunctionMicros); - - EXPECT_GE(m_statsManager->GetStatistic(child1StatName)->GetMinimum(), minimumExpectDurationOfChildFunctionMicros); - EXPECT_GE(m_statsManager->GetStatistic(child1StatName)->GetAverage(), minimumExpectDurationOfChildFunctionMicros); - EXPECT_GE(m_statsManager->GetStatistic(child1StatName)->GetMaximum(), minimumExpectDurationOfChildFunctionMicros); - - //Let's validate TimeDataStatisticsManager::RemoveStatistics() - m_statsManager->RemoveStatistic(child1StatName); - ASSERT_TRUE(m_statsManager->GetStatistic(parentStatName) != nullptr); - ASSERT_TRUE(m_statsManager->GetStatistic(child0StatName) != nullptr); - EXPECT_EQ(m_statsManager->GetStatistic(child1StatName), nullptr); - - //Let's store the sample count for both parentStatName and child0StatName. - const AZ::u64 numSamplesParent = m_statsManager->GetStatistic(parentStatName)->GetNumSamples(); - const AZ::u64 numSamplesChild0 = m_statsManager->GetStatistic(child0StatName)->GetNumSamples(); - - //Let's call child1 function again and call app.Tick(). child1StatName should be readded to m_statsManager. - ChildFunction1(numIterations, sleepTimeAllFuncsMillis); - app.Tick(); - ASSERT_TRUE(m_statsManager->GetStatistic(child1StatName) != nullptr); - EXPECT_EQ(m_statsManager->GetStatistic(parentStatName)->GetNumSamples(), numSamplesParent); - EXPECT_EQ(m_statsManager->GetStatistic(child0StatName)->GetNumSamples(), numSamplesChild0); - EXPECT_EQ(m_statsManager->GetStatistic(child1StatName)->GetNumSamples(), 1); - - Debug::FrameProfilerBus::Handler::BusDisconnect(); - app.Destroy(); - } - - AZStd::unique_ptr m_statsManager; - };//class TimeDataStatisticsManagerTest - - // TODO:BUDGETS disabled until profiler budgets system comes online - // TEST_F(TimeDataStatisticsManagerTest, Test) - // { - // run(); - // } - //End of all Tests of TimeDataStatisticsManagerTest - -}//namespace UnitTest diff --git a/Code/Framework/AzCore/Tests/azcoretests_files.cmake b/Code/Framework/AzCore/Tests/azcoretests_files.cmake index 911eaa7b10..d4d107f094 100644 --- a/Code/Framework/AzCore/Tests/azcoretests_files.cmake +++ b/Code/Framework/AzCore/Tests/azcoretests_files.cmake @@ -29,7 +29,6 @@ set(FILES Console/ConsoleTests.cpp Debug.cpp DLL.cpp - Driller.cpp EBus.cpp EntityIdTests.cpp EntityTests.cpp @@ -66,7 +65,6 @@ set(FILES SystemFile.cpp TaskTests.cpp TickBusTest.cpp - TimeDataStatistics.cpp UUIDTests.cpp XML.cpp Debug/AssetTracking.cpp @@ -104,6 +102,7 @@ set(FILES Serialization/Json/JsonSerializationResultTests.cpp Serialization/Json/JsonSerializationTests.h Serialization/Json/JsonSerializationTests.cpp + Serialization/Json/JsonSerializationUtilsTests.cpp Serialization/Json/JsonSerializerConformityTests.h Serialization/Json/JsonSerializerMock.h Serialization/Json/MapSerializerTests.cpp diff --git a/Code/Framework/AzFramework/AzFramework/API/ApplicationAPI.h b/Code/Framework/AzFramework/AzFramework/API/ApplicationAPI.h index 11778b9239..dbbf443656 100644 --- a/Code/Framework/AzFramework/AzFramework/API/ApplicationAPI.h +++ b/Code/Framework/AzFramework/AzFramework/API/ApplicationAPI.h @@ -72,11 +72,8 @@ namespace AzFramework /// Retrieves the app root path for the application. virtual const char* GetAppRoot() const { return nullptr; } -#pragma push_macro("GetCommandLine") -#undef GetCommandLine /// Get the Command Line arguments passed in. virtual const CommandLine* GetCommandLine() { return nullptr; } -#pragma pop_macro("GetCommandLine") /// Get the Command Line arguments passed in. (Avoids collisions with platform specific macros.) virtual const CommandLine* GetApplicationCommandLine() { return nullptr; } diff --git a/Code/Framework/AzFramework/AzFramework/Application/Application.cpp b/Code/Framework/AzFramework/AzFramework/Application/Application.cpp index abd97aee0d..958dba2cc9 100644 --- a/Code/Framework/AzFramework/AzFramework/Application/Application.cpp +++ b/Code/Framework/AzFramework/AzFramework/Application/Application.cpp @@ -25,7 +25,6 @@ #include #include #include -#include #include #include #include @@ -60,7 +59,6 @@ #include #include #include -#include #include #include #include @@ -74,7 +72,7 @@ #include #include -static const char* s_azFrameworkWarningWindow = "AzFramework"; +[[maybe_unused]] static const char* s_azFrameworkWarningWindow = "AzFramework"; namespace AzFramework { @@ -296,7 +294,6 @@ namespace AzFramework azrtti_typeid(), azrtti_typeid(), azrtti_typeid(), - azrtti_typeid(), azrtti_typeid(), azrtti_typeid(), @@ -312,7 +309,6 @@ namespace AzFramework #endif azrtti_typeid(), azrtti_typeid(), - azrtti_typeid(), #if !defined(AZCORE_EXCLUDE_LUA) azrtti_typeid(), @@ -374,7 +370,6 @@ namespace AzFramework azrtti_typeid(), azrtti_typeid(), azrtti_typeid(), - azrtti_typeid(), azrtti_typeid(), azrtti_typeid(), AZ::Uuid("{624a7be2-3c7e-4119-aee2-1db2bdb6cc89}"), // ScriptDebugAgent @@ -607,7 +602,7 @@ namespace AzFramework void Application::SetRootPath(RootPathType type, const char* source) { - const size_t sourceLen = strlen(source); + [[maybe_unused]] const size_t sourceLen = strlen(source); // Copy the source path to the intended root path and correct the path separators as well switch (type) @@ -632,6 +627,9 @@ namespace AzFramework static void CreateUserCache(const AZ::IO::FixedMaxPath& cacheUserPath, AZ::IO::FileIOBase& fileIoBase) { + constexpr const char* userCachePathFilename{ "Cache" }; + AZ::IO::FixedMaxPath userCachePath = cacheUserPath / userCachePathFilename; +#if AZ_TRAIT_OS_IS_HOST_OS_PLATFORM // The number of max attempts ultimately dictates the number of Lumberyard instances that can run // simultaneously. This should be a reasonably high number so that it doesn't artificially limit // the number of instances (ex: parallel level exports via multiple Editor runs). It also shouldn't @@ -640,9 +638,6 @@ namespace AzFramework // 128 seems like a reasonable compromise. constexpr int maxAttempts = 128; - constexpr const char* userCachePathFilename{ "Cache" }; - AZ::IO::FixedMaxPath userCachePath = cacheUserPath / userCachePathFilename; -#if AZ_TRAIT_OS_IS_HOST_OS_PLATFORM int attemptNumber; for (attemptNumber = 0; attemptNumber < maxAttempts; ++attemptNumber) { diff --git a/Code/Framework/AzFramework/AzFramework/Application/Application.h b/Code/Framework/AzFramework/AzFramework/Application/Application.h index 9c98bd7e45..c6b1dfeaae 100644 --- a/Code/Framework/AzFramework/AzFramework/Application/Application.h +++ b/Code/Framework/AzFramework/AzFramework/Application/Application.h @@ -191,3 +191,5 @@ namespace AzFramework }; } // namespace AzFramework +AZ_DECLARE_BUDGET(AzFramework); + diff --git a/Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp b/Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp index 5bcdc3d719..ce0cc23a4e 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp @@ -374,8 +374,8 @@ namespace AZ::IO { public: AZ_CLASS_ALLOCATOR(CResourceList, AZ::SystemAllocator, 0); - CResourceList() { m_iter = m_set.end(); }; - ~CResourceList() {}; + CResourceList() { m_iter = m_set.end(); } + ~CResourceList() override {} void Add(AZStd::string_view sResourceFile) override { @@ -2330,7 +2330,6 @@ namespace AZ::IO // we only want to record ASSET access // assets are identified as things which start with no alias, or with the @assets@ alias auto assetPath = AZ::IO::FileIOBase::GetInstance()->ConvertToAlias(szFilename); - constexpr AZStd::string_view assetsAlias{ "@assets@" }; if (assetPath && assetPath->Native().starts_with("@assets@")) { IResourceList* pList = GetResourceList(m_eRecordFileOpenList); @@ -2572,7 +2571,7 @@ namespace AZ::IO return aznumeric_cast(pFileEntry->nFileDataOffset); } - EStreamSourceMediaType Archive::GetFileMediaType(AZStd::string_view szName) const + EStreamSourceMediaType Archive::GetFileMediaType(AZStd::string_view szName) const { auto szFullPath = AZ::IO::FileIOBase::GetDirectInstance()->ResolvePath(szName); if (!szFullPath) diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFileIO.cpp b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFileIO.cpp index c5e3bc9315..55f7640785 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFileIO.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFileIO.cpp @@ -16,7 +16,6 @@ namespace AZ::IO { - constexpr size_t ArchiveFileiOMaxBuffersize = 16 * 1024; ArchiveFileIO::ArchiveFileIO(IArchive* archive) : m_archive(archive) { diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCache.cpp b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCache.cpp index d74f69e27b..81f26d78b8 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCache.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCache.cpp @@ -887,7 +887,6 @@ namespace AZ::IO::ZipDir { FileRecordList arrFiles(GetRoot()); arrFiles.SortByFileOffset(); - FileRecordList::ZipStats Stats = arrFiles.GetStats(); // we back up our file entries, because we'll need to restore them // in case the operation fails diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirStructures.cpp b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirStructures.cpp index 5f0d58a4cb..1d09705900 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirStructures.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirStructures.cpp @@ -419,9 +419,9 @@ namespace AZ::IO::ZipDir } // defining file attributes for opening files using constants to avoid the need to include windows headers - constexpr int FileFlagNoBufferinf = 0x20000000; + constexpr int FileFlagNoBuffering = 0x20000000; constexpr int FileAttributeNormal = 0x00000080; - if (m_unbufferedFile.Open(filename, AZ::IO::SystemFile::OpenMode::SF_OPEN_READ_ONLY, FileAttributeNormal | FileAttributeNormal)) + if (m_unbufferedFile.Open(filename, AZ::IO::SystemFile::OpenMode::SF_OPEN_READ_ONLY, FileFlagNoBuffering | FileAttributeNormal)) { m_nSize = aznumeric_cast(m_unbufferedFile.Length()); return true; diff --git a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkCommands.cpp b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkCommands.cpp index d27fe8188f..30c1aa39c0 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkCommands.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkCommands.cpp @@ -43,7 +43,7 @@ namespace AzFramework::AssetBenchmark AZStd::thread benchmarkThread([assetList = AZStd::move(sourceAssetList), loadBlocking]() { // Define the set of loading stats to track - const size_t initialRequests = assetList.size(); + [[maybe_unused]] const size_t initialRequests = assetList.size(); size_t previouslyLoadedAssets = 0; size_t newlyLoadedAssets = 0; size_t loadErrors = 0; diff --git a/Code/Framework/AzFramework/AzFramework/AzFrameworkModule.cpp b/Code/Framework/AzFramework/AzFramework/AzFrameworkModule.cpp index 4927dadc44..c5fee7ec9a 100644 --- a/Code/Framework/AzFramework/AzFramework/AzFrameworkModule.cpp +++ b/Code/Framework/AzFramework/AzFramework/AzFrameworkModule.cpp @@ -14,7 +14,6 @@ #include #include #include -#include #include #include #include @@ -27,6 +26,8 @@ #include #include +AZ_DEFINE_BUDGET(AzFramework); + namespace AzFramework { AzFrameworkModule::AzFrameworkModule() @@ -46,7 +47,6 @@ namespace AzFramework AzFramework::CreateScriptDebugAgentFactory(), AzFramework::AssetSystem::AssetSystemComponent::CreateDescriptor(), AzFramework::InputSystemComponent::CreateDescriptor(), - AzFramework::DrillerNetworkAgentComponent::CreateDescriptor(), #if !defined(AZCORE_EXCLUDE_LUA) AzFramework::ScriptComponent::CreateDescriptor(), diff --git a/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.cpp b/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.cpp deleted file mode 100644 index 5d4b89ab5c..0000000000 --- a/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.cpp +++ /dev/null @@ -1,197 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include - -#include -#include -#include - -namespace AzFramework -{ - void DrillToFileComponent::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ; - - if (serialize->FindClassData(DrillerInfo::RTTI_Type()) == nullptr) - { - serialize->Class() - ->Field("Id", &DrillerInfo::m_id) - ->Field("GroupName", &DrillerInfo::m_groupName) - ->Field("Name", &DrillerInfo::m_name) - ->Field("Description", &DrillerInfo::m_description); - } - } - } - - void DrillToFileComponent::Activate() - { - m_drillerSession = nullptr; - DrillerConsoleCommandBus::Handler::BusConnect(); - } - - void DrillToFileComponent::Deactivate() - { - DrillerConsoleCommandBus::Handler::BusDisconnect(); - StopDrillerSession(reinterpret_cast(this)); - } - - void DrillToFileComponent::WriteBinary(const void* data, unsigned int dataSize) - { - if (dataSize > 0) - { - m_frameBuffer.insert(m_frameBuffer.end(), reinterpret_cast(data), reinterpret_cast(data) + dataSize); - } - } - - void DrillToFileComponent::OnEndOfFrame() - { - AZStd::lock_guard lock(m_writerMutex); - m_writeQueue.push_back(); - m_writeQueue.back().swap(m_frameBuffer); - m_signal.notify_all(); - } - - void DrillToFileComponent::EnumerateAvailableDrillers() - { - DrillerInfoListType availableDrillers; - - AZ::Debug::DrillerManager* mgr = NULL; - EBUS_EVENT_RESULT(mgr, AZ::ComponentApplicationBus, GetDrillerManager); - if (mgr) - { - for (int i = 0; i < mgr->GetNumDrillers(); ++i) - { - AZ::Debug::Driller* driller = mgr->GetDriller(i); - AZ_Assert(driller, "DrillerManager returned a NULL driller. This is not legal!"); - availableDrillers.push_back(); - availableDrillers.back().m_id = driller->GetId(); - availableDrillers.back().m_groupName = driller->GroupName(); - availableDrillers.back().m_name = driller->GetName(); - availableDrillers.back().m_description = driller->GetDescription(); - } - } - - EBUS_EVENT(DrillerConsoleEventBus, OnDrillersEnumerated, availableDrillers); - } - - void DrillToFileComponent::StartDrillerSession(const AZ::Debug::DrillerManager::DrillerListType& requestedDrillers, AZ::u64 sessionId) - { - if (!m_drillerSession) - { - AZ_Assert(m_writeQueue.empty(), "write queue is not empty!"); - - m_sessionId = sessionId; - AZ::Debug::DrillerManager* mgr = nullptr; - EBUS_EVENT_RESULT(mgr, AZ::ComponentApplicationBus, GetDrillerManager); - if (mgr) - { - SetStringPool(&m_stringPool);; - m_drillerSession = mgr->Start(*this, requestedDrillers); - - AZStd::unique_lock signalLock(m_writerMutex); - m_isWriterEnabled = true; - AZStd::thread_desc td; - td.m_name = "DrillToFileComponent Writer Thread"; - m_writerThread = AZStd::thread(AZStd::bind(&DrillToFileComponent::AsyncWritePump, this), &td); - m_signal.wait(signalLock); - - EBUS_EVENT(DrillerConsoleEventBus, OnDrillerSessionStarted, sessionId); - } - } - } - - void DrillToFileComponent::StopDrillerSession(AZ::u64 sessionId) - { - if (sessionId == m_sessionId) - { - if (m_drillerSession) - { - AZ::Debug::DrillerManager* mgr = NULL; - EBUS_EVENT_RESULT(mgr, AZ::ComponentApplicationBus, GetDrillerManager); - if (mgr) - { - mgr->Stop(m_drillerSession); - } - m_drillerSession = nullptr; - EBUS_EVENT(DrillerConsoleEventBus, OnDrillerSessionStopped, reinterpret_cast(this)); - } - - m_isWriterEnabled = false; - if (m_writerThread.joinable()) - { - m_writerMutex.lock(); - m_signal.notify_all(); - m_writerMutex.unlock(); - m_writerThread.join(); - } - SetStringPool(nullptr); - m_stringPool.Reset(); - m_frameBuffer.clear(); // there may be pending data but we don't want to write it because it's an incomplete frame. - } - } - void DrillToFileComponent::AsyncWritePump() - { - AZStd::unique_lock signalLock(m_writerMutex); - - AZStd::basic_string, AZ::OSStdAllocator> drillerOutputPath; - - // Try the log path first - AZ::IO::FileIOBase* fileIO = AZ::IO::FileIOBase::GetInstance(); - if (fileIO) - { - const char* logLocation = fileIO->GetAlias("@log@"); - if (logLocation) - { - drillerOutputPath = logLocation; - drillerOutputPath.append("/"); - } - } - - // Try the executable path - if (drillerOutputPath.empty()) - { - EBUS_EVENT_RESULT(drillerOutputPath, AZ::ComponentApplicationBus, GetExecutableFolder); - drillerOutputPath.append("/"); - } - - drillerOutputPath.append("drillerdata.drl"); - AZ::IO::SystemFile output; - output.Open(drillerOutputPath.c_str(), AZ::IO::SystemFile::SF_OPEN_CREATE | AZ::IO::SystemFile::SF_OPEN_WRITE_ONLY); - AZ_Assert(output.IsOpen(), "Failed to open driller output file!"); - - m_signal.notify_all(); - - while (true) - { - while (!m_writeQueue.empty()) - { - AZStd::vector outBuffer; - outBuffer.swap(m_writeQueue.front()); - m_writeQueue.pop_front(); - signalLock.unlock(); - - output.Write(outBuffer.data(), outBuffer.size()); - output.Flush(); - - signalLock.lock(); - } - if (!m_isWriterEnabled) - { - break; - } - m_signal.wait(signalLock); - } - - output.Close(); - } -} // namespace AzFramework diff --git a/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.h b/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.h deleted file mode 100644 index c1b0ac9a65..0000000000 --- a/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.h +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#pragma once - -#include - -#include -#include -#include -#include -#include -#include - -//#define ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - -namespace AZ -{ - struct ClassDataReflection; -} - -namespace AzFramework -{ - /** - * Runs on the machine being drilled and is responsible for communications - * with the DrillerNetworkConsole running on the tool side as well as - * creating DrillerNetSessionStreams for each driller session being started. - */ - class DrillToFileComponent - : public AZ::Component - , public AZ::Debug::DrillerOutputStream - , public DrillerConsoleCommandBus::Handler - { - public: - AZ_COMPONENT(DrillToFileComponent, "{42BAA25D-7CEB-4A37-8BD4-4A1FE2253894}") - - ////////////////////////////////////////////////////////////////////////// - // AZ::Component - static void Reflect(AZ::ReflectContext* context); - void Activate() override; - void Deactivate() override; - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // DrillerOutputStream - void WriteBinary(const void* data, unsigned int dataSize) override; - void OnEndOfFrame() override; - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // DrillerConsoleCommandBus - void EnumerateAvailableDrillers() override; - void StartDrillerSession(const AZ::Debug::DrillerManager::DrillerListType& requestedDrillers, AZ::u64 sessionId) override; - void StopDrillerSession(AZ::u64 sessionId) override; - ////////////////////////////////////////////////////////////////////////// - - protected: - void AsyncWritePump(); - - AZ::u64 m_sessionId; - AZ::Debug::DrillerSession* m_drillerSession; - AZ::Debug::DrillerDefaultStringPool m_stringPool; - AZStd::vector m_frameBuffer; - AZStd::deque, AZ::OSStdAllocator> m_writeQueue; - AZStd::mutex m_writerMutex; - AZStd::condition_variable m_signal; - AZStd::thread m_writerThread; - bool m_isWriterEnabled; - }; -} // namespace AzFramework diff --git a/Code/Framework/AzFramework/AzFramework/Driller/DrillerConsoleAPI.h b/Code/Framework/AzFramework/AzFramework/Driller/DrillerConsoleAPI.h deleted file mode 100644 index 80bb7e3a0b..0000000000 --- a/Code/Framework/AzFramework/AzFramework/Driller/DrillerConsoleAPI.h +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#pragma once - -#include -#include -#include - -namespace AzFramework -{ - /* - * Descriptors for drillers available on the target machine. - */ - struct DrillerInfo final - { - AZ_RTTI(DrillerInfo, "{197AC318-B65C-4B36-A109-BD25422BF7D0}"); - AZ::u32 m_id; - AZStd::string m_groupName; - AZStd::string m_name; - AZStd::string m_description; - }; - - typedef AZStd::vector DrillerInfoListType; - typedef AZStd::vector DrillerListType; - - /** - * Driller clients interested in receiving notification events from the - * console should implement this interface. - */ - class DrillerConsoleEvents - : public AZ::EBusTraits - { - public: - ////////////////////////////////////////////////////////////////////////// - // EBusTraits overrides - typedef AZ::OSStdAllocator AllocatorType; - ////////////////////////////////////////////////////////////////////////// - - virtual ~DrillerConsoleEvents() {} - - // A list of available drillers has been received from the target machine. - virtual void OnDrillersEnumerated(const DrillerInfoListType& availableDrillers) = 0; - virtual void OnDrillerSessionStarted(AZ::u64 sessionId) = 0; - virtual void OnDrillerSessionStopped(AZ::u64 sessionId) = 0; - }; - typedef AZ::EBus DrillerConsoleEventBus; - - /** - * Commands can be sent to the driller through this interface. - */ - class DrillerConsoleCommands - : public AZ::EBusTraits - { - public: - ////////////////////////////////////////////////////////////////////////// - // EBusTraits overrides - typedef AZ::OSStdAllocator AllocatorType; - - // there's only one driller console instance allowed - static const AZ::EBusHandlerPolicy HandlerPolicy = AZ::EBusHandlerPolicy::Single; - static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::Single; - ////////////////////////////////////////////////////////////////////////// - - virtual ~DrillerConsoleCommands() {} - - // Request an enumeration of available drillers from the target machine - virtual void EnumerateAvailableDrillers() = 0; - // Start a drilling session. This function is normally called internally by DrillerRemoteSession - virtual void StartDrillerSession(const AZ::Debug::DrillerManager::DrillerListType& requestedDrillers, AZ::u64 sessionId) = 0; - // Stop a drilling session. This function is normally called internally by DrillerRemoteSession - virtual void StopDrillerSession(AZ::u64 sessionId) = 0; - }; - typedef AZ::EBus DrillerConsoleCommandBus; -} // namespace AzFramework diff --git a/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.cpp b/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.cpp deleted file mode 100644 index 232432c8d8..0000000000 --- a/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.cpp +++ /dev/null @@ -1,740 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace AzFramework -{ - //--------------------------------------------------------------------- - // TEMP FOR DEBUGGING ONLY!!! - //--------------------------------------------------------------------- - class DebugDrillerRemoteSession - : public DrillerRemoteSession - { - public: - AZ_CLASS_ALLOCATOR(DebugDrillerRemoteSession, AZ::OSAllocator, 0); - - DebugDrillerRemoteSession() - { - AZStd::string filename = AZStd::string::format("remotedrill_%llu", static_cast(reinterpret_cast(static_cast(this)))); - m_file.Open(filename.c_str(), AZ::IO::SystemFile::SF_OPEN_WRITE_ONLY | AZ::IO::SystemFile::SF_OPEN_CREATE); - } - - ~DebugDrillerRemoteSession() - { - m_file.Close(); - } - - virtual void ProcessIncomingDrillerData(const char* streamIdentifier, const void* data, size_t dataSize) - { - (void)streamIdentifier; - - m_file.Write(data, dataSize); - } - - virtual void OnDrillerConnectionLost() - { - delete this; - } - - AZ::IO::SystemFile m_file; - }; - //--------------------------------------------------------------------- - - /** - * These are the different synchronization messages that are used. - */ - namespace NetworkDrillerSyncMsgId - { - static const AZ::Crc32 NetDrillMsg_RequestDrillerEnum = AZ_CRC("NetDrillMsg_RequestEnum", 0x517cca25); - static const AZ::Crc32 NetDrillMsg_RequestStartSession = AZ_CRC("NetDrillMsg_RequestStartSession", 0x5238b5fe); - static const AZ::Crc32 NetDrillMsg_RequestStopSession = AZ_CRC("NetDrillMsg_RequestStopSession", 0x1abe6888); - static const AZ::Crc32 NetDrillMsg_DrillerEnum = AZ_CRC("NetDrillMsg_Enum", 0x3d0a0f76); - }; - - struct NetDrillerStartSessionRequest - : public TmMsg - { - AZ_CLASS_ALLOCATOR(NetDrillerStartSessionRequest, AZ::OSAllocator, 0); - AZ_RTTI(NetDrillerStartSessionRequest, "{FF899D61-A445-44B5-9B67-8319ACC8BB06}"); - - NetDrillerStartSessionRequest() - : TmMsg(NetworkDrillerSyncMsgId::NetDrillMsg_RequestStartSession) {} - - // TODO: Replace this with the DrillerListType from driller.h - DrillerListType m_drillerIds; - AZ::u64 m_sessionId; - }; - - struct NetDrillerStopSessionRequest - : public TmMsg - { - AZ_CLASS_ALLOCATOR(NetDrillerStopSessionRequest, AZ::OSAllocator, 0); - AZ_RTTI(NetDrillerStopSessionRequest, "{BCC6524F-287F-48D2-A21A-029215DB24DD}"); - - NetDrillerStopSessionRequest(AZ::u64 sessionId = 0) - : TmMsg(NetworkDrillerSyncMsgId::NetDrillMsg_RequestStopSession) - , m_sessionId(sessionId) {} - - AZ::u64 m_sessionId; - }; - - struct NetDrillerEnumeration - : public TmMsg - { - AZ_CLASS_ALLOCATOR(NetDrillerEnumeration, AZ::OSAllocator, 0); - AZ_RTTI(NetDrillerEnumeration, "{60E5BED2-F492-4A55-8EF6-2628CD390991}"); - - NetDrillerEnumeration() - : TmMsg(NetworkDrillerSyncMsgId::NetDrillMsg_DrillerEnum) {} - - DrillerInfoListType m_enumeration; - }; - - //--------------------------------------------------------------------- - // DrillerRemoteSession - //--------------------------------------------------------------------- - DrillerRemoteSession::DrillerRemoteSession() -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - : m_decompressor(&AZ::AllocatorInstance::Get()) -#endif - { - } - //--------------------------------------------------------------------- - DrillerRemoteSession::~DrillerRemoteSession() - { - } - //--------------------------------------------------------------------- - void DrillerRemoteSession::StartDrilling(const DrillerListType& drillers, const char* captureFile) - { - if (captureFile) - { - m_captureFile.Open(captureFile, AZ::IO::SystemFile::SF_OPEN_CREATE | AZ::IO::SystemFile::SF_OPEN_WRITE_ONLY); - AZ_Warning("DrillerRemoteSession", m_captureFile.IsOpen(), "Failed to open %s. Driller data will not be saved.", captureFile); - } - -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - m_decompressor.StartDecompressor(); -#endif - BusConnect(static_cast(reinterpret_cast(this))); - EBUS_EVENT(DrillerNetworkConsoleCommandBus, StartRemoteDrillerSession, drillers, this); - } - //--------------------------------------------------------------------- - void DrillerRemoteSession::StopDrilling() - { - EBUS_EVENT(DrillerNetworkConsoleCommandBus, StopRemoteDrillerSession, static_cast(reinterpret_cast(this))); - BusDisconnect(); -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - if (m_decompressor.IsDecompressorStarted()) - { - m_decompressor.StopDecompressor(); - } -#endif - - m_captureFile.Close(); - } - //--------------------------------------------------------------------- - void DrillerRemoteSession::LoadCaptureData(const char* fileName) - { - m_captureFile.Open(fileName, AZ::IO::SystemFile::SF_OPEN_READ_ONLY); - AZ_Warning("DrillerRemoteSession", m_captureFile.IsOpen(), "Failed to open %s. No driller data could be loaded.", fileName); - if (m_captureFile.IsOpen()) - { -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - m_decompressor.StartDecompressor(); -#endif - AZ::IO::SystemFile::SizeType bytesRemaining = m_captureFile.Length(); - AZ::IO::SystemFile::SizeType maxReadChunkSize = 1024 * 1024; - AZStd::vector readBuffer; - readBuffer.resize_no_construct(static_cast(maxReadChunkSize)); - while (bytesRemaining > 0) - { - AZ::IO::SystemFile::SizeType bytesToRead = bytesRemaining < maxReadChunkSize ? bytesRemaining : maxReadChunkSize; - if (m_captureFile.Read(bytesToRead, readBuffer.data()) != bytesToRead) - { - AZ_Warning("DrillerRemoteSession", false, "Failed reading driller data. No more driller data can be read."); - break; - } -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - Decompress(readBuffer.data(), static_cast(bytesToRead)); - ProcessIncomingDrillerData(fileName, m_uncompressedMsgBuffer.data(), m_uncompressedMsgBuffer.size()); -#else - ProcessIncomingDrillerData(fileName, readBuffer.data(), readBuffer.size()); -#endif - bytesRemaining -= bytesToRead; - } -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - m_decompressor.StopDecompressor(); -#endif - m_captureFile.Close(); - } - } - //--------------------------------------------------------------------- - void DrillerRemoteSession::OnReceivedMsg(TmMsgPtr msg) - { - AZ_Assert(msg->GetCustomBlob(), "Missing driller frame data!"); - - if (msg->GetCustomBlobSize() == 0) - { - return; - } - - if (m_captureFile.IsOpen()) - { - if (m_captureFile.Write(msg->GetCustomBlob(), msg->GetCustomBlobSize()) != msg->GetCustomBlobSize()) - { - AZ_Warning("DrillerRemoteSession", false, "Failed writing capture data to %s, no more data will be written out.", m_captureFile.Name()); - m_captureFile.Close(); - } - } - -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - Decompress(msg->GetCustomBlob(), msg->GetCustomBlobSize()); - ProcessIncomingDrillerData(m_captureFile.Name(),m_uncompressedMsgBuffer.data(), m_uncompressedMsgBuffer.size()); -#else - ProcessIncomingDrillerData(m_captureFile.Name(),msg->GetCustomBlob(), msg->GetCustomBlobSize()); -#endif - } - //--------------------------------------------------------------------- - void DrillerRemoteSession::Decompress(const void* compressedBuffer, size_t compressedBufferSize) - { - m_uncompressedMsgBuffer.clear(); - if (m_uncompressedMsgBuffer.capacity() < compressedBufferSize * 10) - { - m_uncompressedMsgBuffer.reserve(compressedBufferSize * 10); - } -#if defined(ENABLE_COMPRESSION_FOR_REMOTE_DRILLER) - unsigned int compressedBytesRemaining = static_cast(compressedBufferSize); - unsigned int decompressedBytes = 0; - while (compressedBytesRemaining > 0) - { - unsigned int uncompressedBytes = c_decompressionBufferSize; - unsigned int bytesConsumed = m_decompressor.Decompress(reinterpret_cast(compressedBuffer) + decompressedBytes, compressedBytesRemaining, m_decompressionBuffer, uncompressedBytes); - decompressedBytes += bytesConsumed; - compressedBytesRemaining -= bytesConsumed; - m_uncompressedMsgBuffer.insert(m_uncompressedMsgBuffer.end(), &m_decompressionBuffer[0], &m_decompressionBuffer[uncompressedBytes]); - } -#else - m_uncompressedMsgBuffer.insert(m_uncompressedMsgBuffer.end(), &((char*)compressedBuffer)[0], &((char*)compressedBuffer)[compressedBufferSize]); -#endif - } - //--------------------------------------------------------------------- - - //--------------------------------------------------------------------- - // DrillerNetSessionStream - //--------------------------------------------------------------------- - /** - * Represents a driller session on the target machine. - * It is responsible for listening for driller events and forwarding - * them to the console machine. - */ - class DrillerNetSessionStream - : public AZ::Debug::DrillerOutputStream - , AZ::SystemTickBus::Handler - { - public: - AZ_CLASS_ALLOCATOR(DrillerNetSessionStream, AZ::OSAllocator, 0); - - DrillerNetSessionStream(AZ::u64 sessionId); - ~DrillerNetSessionStream(); - - //--------------------------------------------------------------------- - // DrillerOutputStream - //--------------------------------------------------------------------- - virtual void WriteBinary(const void* data, unsigned int dataSize); - virtual void OnEndOfFrame(); - //--------------------------------------------------------------------- - - //--------------------------------------------------------------------- - // AZ::SystemTickBus - //--------------------------------------------------------------------- - void OnSystemTick() override; - //--------------------------------------------------------------------- - - static const size_t c_defaultUncompressedBufferSize = 256 * 1024; - static const size_t c_defaultCompressedBufferSize = 32 * 1024; - static const size_t c_bufferCount = 2; - - AZ::Debug::DrillerSession* m_session; - AZ::u64 m_sessionId; - TargetInfo m_requestor; - size_t m_activeBuffer; - AZStd::vector m_uncompressedBuffer[c_bufferCount]; - AZStd::vector m_compressedBuffer[c_bufferCount]; - -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - // Compression - AZ::ZLib m_compressor; - AZStd::fixed_vector m_compressionBuffer; -#endif - - // String Pooling - AZ::Debug::DrillerDefaultStringPool m_stringPool; - - // TEMP Debug - //AZ::IO::SystemFile m_file; - }; - - DrillerNetSessionStream::DrillerNetSessionStream(AZ::u64 sessionId) - : m_session(NULL) - , m_sessionId(sessionId) - , m_activeBuffer(0) -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - , m_compressor(&AZ::AllocatorInstance::Get()) -#endif - { - for (size_t i = 0; i < c_bufferCount; ++i) - { - m_uncompressedBuffer[i].reserve(c_defaultUncompressedBufferSize); - m_compressedBuffer[i].reserve(c_defaultCompressedBufferSize); - } - -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - // Level 3 compression seems to give pretty good compression at decent speed. - // Speed is paramount for us because initial driller packets can be huge and - // we need to be able to compress the data within the driller report call - // without blocking for too long. - m_compressor.StartCompressor(3); -#endif - - SetStringPool(&m_stringPool); - - AZ::SystemTickBus::Handler::BusConnect(); - } - //--------------------------------------------------------------------- - DrillerNetSessionStream::~DrillerNetSessionStream() - { -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - m_compressor.StopCompressor(); -#endif - - // Debug - //m_file.Close(); - } - //--------------------------------------------------------------------- - void DrillerNetSessionStream::WriteBinary(const void* data, unsigned int dataSize) - { - size_t activeBuffer = m_activeBuffer; - - if (dataSize > 0) - { -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - // Only do the compression when the buffer is full so we don't run the compression all the time - if (m_uncompressedBuffer[activeBuffer].size() + dataSize > c_defaultUncompressedBufferSize) - { - // compress - unsigned int curDataSize = static_cast(m_uncompressedBuffer[activeBuffer].size()); - unsigned int remaining = curDataSize; - while (remaining > 0) - { - unsigned int processedBytes = curDataSize - remaining; - unsigned int compressedBytes = m_compressor.Compress(m_uncompressedBuffer[activeBuffer].data() + processedBytes, remaining, m_compressionBuffer.data(), static_cast(c_defaultCompressedBufferSize)); - if (compressedBytes > 0) - { - m_compressedBuffer[activeBuffer].insert(m_compressedBuffer[activeBuffer].end(), m_compressionBuffer.data(), m_compressionBuffer.data() + compressedBytes); - } - } - m_uncompressedBuffer[activeBuffer].clear(); - } - - m_uncompressedBuffer[activeBuffer].insert(m_uncompressedBuffer[activeBuffer].end(), reinterpret_cast(data), reinterpret_cast(data) + dataSize); -#else - // Since we are not compressing, transfer the input directly into our compressed buffer - m_compressedBuffer[activeBuffer].insert(m_compressedBuffer[activeBuffer].end(), reinterpret_cast(data), reinterpret_cast(data) + dataSize); -#endif - } - } - //--------------------------------------------------------------------- - void DrillerNetSessionStream::OnEndOfFrame() - { - size_t activeBuffer = m_activeBuffer; - -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - // Write whatever data has not yet been compressed and flush the compressor - unsigned int curDataSize = static_cast(m_uncompressedBuffer[activeBuffer].size()); - unsigned int remaining = curDataSize; - unsigned int compressedBytes = 0; - do - { - unsigned int processedBytes = curDataSize - remaining; - compressedBytes = m_compressor.Compress(m_uncompressedBuffer[activeBuffer].data() + processedBytes, remaining, m_compressionBuffer.data(), static_cast(c_defaultCompressedBufferSize), AZ::ZLib::FT_SYNC_FLUSH); - if (compressedBytes > 0) - { - m_compressedBuffer[activeBuffer].insert(m_compressedBuffer[activeBuffer].end(), m_compressionBuffer.data(), m_compressionBuffer.data() + compressedBytes); - } - } while (compressedBytes > 0 || remaining > 0); -#endif - - m_activeBuffer = (activeBuffer + 1) % 2; // switch buffers - } - //------------------------------------------------------------------------- - void DrillerNetSessionStream::OnSystemTick() - { - // The buffer index we want to send is the one we wrote to in the previous frame. - size_t bufferIndex = (m_activeBuffer + 1) % 2; - - if (m_compressedBuffer[bufferIndex].empty()) - { - return; - } - - TmMsg msg(m_sessionId); - - msg.AddCustomBlob(m_compressedBuffer[bufferIndex].data(), m_compressedBuffer[bufferIndex].size()); - EBUS_EVENT(TargetManager::Bus, SendTmMessage, m_requestor, msg); - - - // Debug - //if (!m_file.IsOpen()) - //{ - // AZStd::string filename = AZStd::string::format("localdrill_%llu", m_sessionId); - // m_file.Open(filename.c_str(), AZ::IO::SystemFile::SF_OPEN_WRITE_ONLY | AZ::IO::SystemFile::SF_OPEN_CREATE); - //} - //m_file.Write(msg.GetCustomBlob(), msg.GetCustomBlobSize()); - - // Reset buffers - m_uncompressedBuffer[bufferIndex].clear(); - m_compressedBuffer[bufferIndex].clear(); - - // Buffers may grow during exceptional circumstances. Re-shrink them to their default sizes - // so we don't keep holding on to the memory. - m_uncompressedBuffer[bufferIndex].reserve(c_defaultUncompressedBufferSize); - m_compressedBuffer[bufferIndex].reserve(c_defaultCompressedBufferSize); - } - //--------------------------------------------------------------------- - - //--------------------------------------------------------------------- - // DrillerNetworkAgent - //--------------------------------------------------------------------- - void DrillerNetworkAgentComponent::Init() - { - m_cbDrillerEnumRequest = TmMsgCallback(AZStd::bind(&DrillerNetworkAgentComponent::OnRequestDrillerEnum, this, AZStd::placeholders::_1)); - m_cbDrillerStartRequest = TmMsgCallback(AZStd::bind(&DrillerNetworkAgentComponent::OnRequestDrillerStart, this, AZStd::placeholders::_1)); - m_cbDrillerStopRequest = TmMsgCallback(AZStd::bind(&DrillerNetworkAgentComponent::OnRequestDrillerStop, this, AZStd::placeholders::_1)); - } - //--------------------------------------------------------------------- - void DrillerNetworkAgentComponent::Activate() - { - m_cbDrillerEnumRequest.BusConnect(NetworkDrillerSyncMsgId::NetDrillMsg_RequestDrillerEnum); - m_cbDrillerStartRequest.BusConnect(NetworkDrillerSyncMsgId::NetDrillMsg_RequestStartSession); - m_cbDrillerStopRequest.BusConnect(NetworkDrillerSyncMsgId::NetDrillMsg_RequestStopSession); - TargetManagerClient::Bus::Handler::BusConnect(); - } - //--------------------------------------------------------------------- - void DrillerNetworkAgentComponent::Deactivate() - { - TargetManagerClient::Bus::Handler::BusDisconnect(); - m_cbDrillerEnumRequest.BusDisconnect(NetworkDrillerSyncMsgId::NetDrillMsg_RequestDrillerEnum); - m_cbDrillerStartRequest.BusDisconnect(NetworkDrillerSyncMsgId::NetDrillMsg_RequestStartSession); - m_cbDrillerStopRequest.BusDisconnect(NetworkDrillerSyncMsgId::NetDrillMsg_RequestStopSession); - - AZ::Debug::DrillerManager* mgr = NULL; - EBUS_EVENT_RESULT(mgr, AZ::ComponentApplicationBus, GetDrillerManager); - for (size_t i = 0; i < m_activeSessions.size(); ++i) - { - if (mgr) - { - mgr->Stop(m_activeSessions[i]->m_session); - } - delete m_activeSessions[i]; - } - m_activeSessions.clear(); - } - //--------------------------------------------------------------------- - void DrillerNetworkAgentComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided) - { - provided.push_back(AZ_CRC("DrillerNetworkAgentService", 0xcd2ab821)); - } - //--------------------------------------------------------------------- - void DrillerNetworkAgentComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible) - { - incompatible.push_back(AZ_CRC("DrillerNetworkAgentService", 0xcd2ab821)); - } - //--------------------------------------------------------------------- - void DrillerNetworkAgentComponent::Reflect(AZ::ReflectContext* context) - { - if (AZ::SerializeContext* serializeContext = azrtti_cast(context)) - { - serializeContext->Class() - ->Version(1) - ; - - if (AZ::EditContext* editContext = serializeContext->GetEditContext()) - { - editContext->Class( - "Driller Network Agent", "Runs on the machine being drilled and communicates with tools") - ->ClassElement(AZ::Edit::ClassElements::EditorData, "") - ->Attribute(AZ::Edit::Attributes::Category, "Profiling") - ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("System", 0xc94d118b)) - ; - } - - ReflectNetDrillerClasses(context); - } - } - //--------------------------------------------------------------------- - void DrillerNetworkAgentComponent::TargetLeftNetwork(TargetInfo info) - { - AZ::Debug::DrillerManager* mgr = NULL; - EBUS_EVENT_RESULT(mgr, AZ::ComponentApplicationBus, GetDrillerManager); - for (AZStd::vector::iterator it = m_activeSessions.begin(); it != m_activeSessions.end(); ) - { - if ((*it)->m_requestor.GetNetworkId() == info.GetNetworkId()) - { - if (mgr) - { - mgr->Stop((*it)->m_session); - } - delete *it; - it = m_activeSessions.erase(it); - } - else - { - ++it; - } - } - } - //--------------------------------------------------------------------- - void DrillerNetworkAgentComponent::OnRequestDrillerEnum(TmMsgPtr msg) - { - AZ::Debug::DrillerManager* mgr = NULL; - EBUS_EVENT_RESULT(mgr, AZ::ComponentApplicationBus, GetDrillerManager); - if (!mgr) - { - return; - } - - TargetInfo sendTo; - EBUS_EVENT_RESULT(sendTo, TargetManager::Bus, GetTargetInfo, msg->GetSenderTargetId()); - NetDrillerEnumeration drillerEnum; - for (int i = 0; i < mgr->GetNumDrillers(); ++i) - { - AZ::Debug::Driller* driller = mgr->GetDriller(i); - AZ_Assert(driller, "DrillerManager returned a NULL driller. This is not legal!"); - drillerEnum.m_enumeration.push_back(); - drillerEnum.m_enumeration.back().m_id = driller->GetId(); - drillerEnum.m_enumeration.back().m_groupName = driller->GroupName(); - drillerEnum.m_enumeration.back().m_name = driller->GetName(); - drillerEnum.m_enumeration.back().m_description = driller->GetDescription(); - } - EBUS_EVENT(TargetManager::Bus, SendTmMessage, sendTo, drillerEnum); - } - //--------------------------------------------------------------------- - void DrillerNetworkAgentComponent::OnRequestDrillerStart(TmMsgPtr msg) - { - AZ::Debug::DrillerManager* mgr = NULL; - EBUS_EVENT_RESULT(mgr, AZ::ComponentApplicationBus, GetDrillerManager); - if (!mgr) - { - return; - } - - NetDrillerStartSessionRequest* request = azdynamic_cast(msg.get()); - AZ_Assert(request, "Not a NetDrillerStartSessionRequest msg!"); - AZ::Debug::DrillerManager::DrillerListType drillers; - for (size_t i = 0; i < request->m_drillerIds.size(); ++i) - { - AZ::Debug::DrillerManager::DrillerInfo di; - di.id = request->m_drillerIds[i]; - drillers.push_back(di); - } - DrillerNetSessionStream* session = aznew DrillerNetSessionStream(request->m_sessionId); - EBUS_EVENT_RESULT(session->m_requestor, TargetManager::Bus, GetTargetInfo, msg->GetSenderTargetId()); - m_activeSessions.push_back(session); - session->m_session = mgr->Start(*session, drillers); - } - //--------------------------------------------------------------------- - void DrillerNetworkAgentComponent::OnRequestDrillerStop(TmMsgPtr msg) - { - NetDrillerStopSessionRequest* request = azdynamic_cast(msg.get()); - for (AZStd::vector::iterator it = m_activeSessions.begin(); it != m_activeSessions.end(); ++it) - { - if ((*it)->m_sessionId == request->m_sessionId) - { - AZ::Debug::DrillerManager* mgr = NULL; - EBUS_EVENT_RESULT(mgr, AZ::ComponentApplicationBus, GetDrillerManager); - if (mgr) - { - mgr->Stop((*it)->m_session); - } - delete *it; - m_activeSessions.erase(it); - return; - } - } - } - //--------------------------------------------------------------------- - - //--------------------------------------------------------------------- - // DrillerRemoteConsole - //--------------------------------------------------------------------- - void DrillerNetworkConsoleComponent::Init() - { - m_cbDrillerEnum = TmMsgCallback(AZStd::bind(&DrillerNetworkConsoleComponent::OnReceivedDrillerEnum, this, AZStd::placeholders::_1)); - } - //--------------------------------------------------------------------- - void DrillerNetworkConsoleComponent::Activate() - { - m_cbDrillerEnum.BusConnect(NetworkDrillerSyncMsgId::NetDrillMsg_DrillerEnum); - DrillerNetworkConsoleCommandBus::Handler::BusConnect(); - TargetManagerClient::Bus::Handler::BusConnect(); - } - //--------------------------------------------------------------------- - void DrillerNetworkConsoleComponent::Deactivate() - { - TargetManagerClient::Bus::Handler::BusDisconnect(); - DrillerNetworkConsoleCommandBus::Handler::BusDisconnect(); - m_cbDrillerEnum.BusDisconnect(NetworkDrillerSyncMsgId::NetDrillMsg_DrillerEnum); - - for (size_t i = 0; i < m_activeSessions.size(); ++i) - { - EBUS_EVENT(TargetManager::Bus, SendTmMessage, m_curTarget, NetDrillerStopSessionRequest(static_cast(reinterpret_cast(m_activeSessions[i])))); - m_activeSessions[i]->OnDrillerConnectionLost(); - } - m_activeSessions.clear(); - } - //--------------------------------------------------------------------- - void DrillerNetworkConsoleComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided) - { - provided.push_back(AZ_CRC("DrillerNetworkConsoleService", 0x2286125d)); - } - //--------------------------------------------------------------------- - void DrillerNetworkConsoleComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible) - { - incompatible.push_back(AZ_CRC("DrillerNetworkConsoleService", 0x2286125d)); - } - //--------------------------------------------------------------------- - void DrillerNetworkConsoleComponent::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Version(1) - ; - - if (AZ::EditContext* editContext = serialize->GetEditContext()) - { - editContext->Class( - "Driller Network Console", "Runs on the tool machine and is responsible for communications with the DrillerNetworkAgent") - ->ClassElement(AZ::Edit::ClassElements::EditorData, "") - ->Attribute(AZ::Edit::Attributes::Category, "Profiling") - ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("System", 0xc94d118b)) - ; - } - - ReflectNetDrillerClasses(context); - } - } - //--------------------------------------------------------------------- - void DrillerNetworkConsoleComponent::EnumerateAvailableDrillers() - { - EBUS_EVENT(TargetManager::Bus, SendTmMessage, m_curTarget, TmMsg(NetworkDrillerSyncMsgId::NetDrillMsg_RequestDrillerEnum)); - } - //--------------------------------------------------------------------- - void DrillerNetworkConsoleComponent::StartRemoteDrillerSession(const DrillerListType& drillers, DrillerRemoteSession* handler) - { - NetDrillerStartSessionRequest request; - request.m_drillerIds = drillers; - request.m_sessionId = static_cast(reinterpret_cast(handler)); - m_activeSessions.push_back(handler); - EBUS_EVENT(TargetManager::Bus, SendTmMessage, m_curTarget, request); - } - //--------------------------------------------------------------------- - void DrillerNetworkConsoleComponent::StopRemoteDrillerSession(AZ::u64 sessionId) - { - for (size_t i = 0; i < m_activeSessions.size(); ++i) - { - if (sessionId == static_cast(reinterpret_cast(m_activeSessions[i]))) - { - EBUS_EVENT(TargetManager::Bus, SendTmMessage, m_curTarget, NetDrillerStopSessionRequest(sessionId)); - m_activeSessions[i] = m_activeSessions.back(); - m_activeSessions.pop_back(); - } - } - } - //--------------------------------------------------------------------- - void DrillerNetworkConsoleComponent::DesiredTargetConnected(bool connected) - { - if (connected) - { - EBUS_EVENT_RESULT(m_curTarget, TargetManager::Bus, GetDesiredTarget); - EBUS_EVENT(DrillerNetworkConsoleCommandBus, EnumerateAvailableDrillers); - } - else - { - for (size_t i = 0; i < m_activeSessions.size(); ++i) - { - m_activeSessions[i]->OnDrillerConnectionLost(); - } - m_activeSessions.clear(); - EBUS_EVENT(DrillerNetworkConsoleEventBus, OnReceivedDrillerEnumeration, DrillerInfoListType()); - } - } - //--------------------------------------------------------------------- - void DrillerNetworkConsoleComponent::DesiredTargetChanged(AZ::u32 newTargetID, AZ::u32 oldTargetID) - { - (void)oldTargetID; - (void)newTargetID; - EBUS_EVENT(DrillerNetworkConsoleEventBus, OnReceivedDrillerEnumeration, DrillerInfoListType()); - for (size_t i = 0; i < m_activeSessions.size(); ++i) - { - EBUS_EVENT(TargetManager::Bus, SendTmMessage, m_curTarget, NetDrillerStopSessionRequest(static_cast(reinterpret_cast(m_activeSessions[i])))); - m_activeSessions[i]->OnDrillerConnectionLost(); - } - m_activeSessions.clear(); - } - //--------------------------------------------------------------------- - void DrillerNetworkConsoleComponent::OnReceivedDrillerEnum(TmMsgPtr msg) - { - NetDrillerEnumeration* drillerEnum = azdynamic_cast(msg.get()); - AZ_Assert(drillerEnum, "No NetDrillerEnumeration message!"); - - EBUS_EVENT(DrillerNetworkConsoleEventBus, OnReceivedDrillerEnumeration, drillerEnum->m_enumeration); - } - //--------------------------------------------------------------------- - - //--------------------------------------------------------------------- - // ReflectNetDrillerClasses - //--------------------------------------------------------------------- - void ReflectNetDrillerClasses(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - // Assume no one else will register our classes. - if (serialize->FindClassData(DrillerInfo::RTTI_Type()) == nullptr) - { - serialize->Class() - ->Field("Id", &DrillerInfo::m_id) - ->Field("GroupName", &DrillerInfo::m_groupName) - ->Field("Name", &DrillerInfo::m_name) - ->Field("Description", &DrillerInfo::m_description); - serialize->Class() - ->Field("DrillerIds", &NetDrillerStartSessionRequest::m_drillerIds) - ->Field("SessionId", &NetDrillerStartSessionRequest::m_sessionId); - serialize->Class() - ->Field("SessionId", &NetDrillerStopSessionRequest::m_sessionId); - serialize->Class() - ->Field("Enumeration", &NetDrillerEnumeration::m_enumeration); - } - } - } - //--------------------------------------------------------------------- -} // namespace AzFramework diff --git a/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.h b/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.h deleted file mode 100644 index 669b308668..0000000000 --- a/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.h +++ /dev/null @@ -1,217 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef AZFRAMEWORK_REMOTE_DRILLER_INTERFACE_H -#define AZFRAMEWORK_REMOTE_DRILLER_INTERFACE_H - -#include -#include -#include -#include -#include -#include -#include -#include - -//#define ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - -namespace AZ -{ - struct ClassDataReflection; -} - -namespace AzFramework -{ - /** - * Represents a remote driller session on the tool machine. - * It is responsible for receiving and processing remote driller data. - * Driller clients should derive from this class and implement the virtual interfaces. - */ - class DrillerRemoteSession - : public TmMsgBus::Handler - { - public: - DrillerRemoteSession(); - ~DrillerRemoteSession(); - - // Called when new driller data arrives - virtual void ProcessIncomingDrillerData(const char* streamIdentifier, const void* data, size_t dataSize) = 0; - // Called when the connection to the driller is lost. The session should be deleted in response to this message - virtual void OnDrillerConnectionLost() = 0; - - // Start drilling the selected drillers as part of this session - void StartDrilling(const DrillerListType& drillers, const char* captureFile); - // Stop this drill session - void StopDrilling(); - - // Replay a previously captured driller session from file - void LoadCaptureData(const char* fileName); - - protected: - //--------------------------------------------------------------------- - // TmMsgBus - //--------------------------------------------------------------------- - virtual void OnReceivedMsg(TmMsgPtr msg); - //--------------------------------------------------------------------- - - void Decompress(const void* compressedBuffer, size_t compressedBufferSize); - - static const AZ::u32 c_decompressionBufferSize = 128 * 1024; - - AZStd::vector m_uncompressedMsgBuffer; -#ifdef ENABLE_COMPRESSION_FOR_REMOTE_DRILLER - AZ::ZLib m_decompressor; - char m_decompressionBuffer[c_decompressionBufferSize]; -#endif - AZ::IO::SystemFile m_captureFile; - }; - - /** - * Driller clients interested in receiving notification events from the - * network console should implement this interface. - */ - class DrillerNetworkConsoleEvents - : public AZ::EBusTraits - { - public: - ////////////////////////////////////////////////////////////////////////// - // EBusTraits overrides - typedef AZ::OSStdAllocator AllocatorType; - ////////////////////////////////////////////////////////////////////////// - - virtual ~DrillerNetworkConsoleEvents() {} - - // A list of available drillers has been received from the target machine. - virtual void OnReceivedDrillerEnumeration(const DrillerInfoListType& availableDrillers) = 0; - }; - typedef AZ::EBus DrillerNetworkConsoleEventBus; - - /** - * The network driller console implements this interface. - * Commands can be sent to the network console through this interface. - */ - class DrillerNetworkConsoleCommands - : public AZ::EBusTraits - { - public: - ////////////////////////////////////////////////////////////////////////// - // EBusTraits overrides - typedef AZ::OSStdAllocator AllocatorType; - - // there's only one driller console instance allowed - static const AZ::EBusHandlerPolicy HandlerPolicy = AZ::EBusHandlerPolicy::Single; - static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::Single; - ////////////////////////////////////////////////////////////////////////// - - virtual ~DrillerNetworkConsoleCommands() {} - - // Request an enumeration of available drillers from the target machine - virtual void EnumerateAvailableDrillers() = 0; - // Start a drilling session. This function is normally called internally by DrillerRemoteSession - virtual void StartRemoteDrillerSession(const DrillerListType& drillers, DrillerRemoteSession* handler) = 0; - // Stop a drilling session. This function is normally called internally by DrillerRemoteSession - virtual void StopRemoteDrillerSession(AZ::u64 sessionId) = 0; - }; - typedef AZ::EBus DrillerNetworkConsoleCommandBus; - - class DrillerNetSessionStream; - - /** - * Runs on the machine being drilled and is responsible for communications - * with the DrillerNetworkConsole running on the tool side as well as - * creating DrillerNetSessionStreams for each driller session being started. - */ - class DrillerNetworkAgentComponent - : public AZ::Component - , public TargetManagerClient::Bus::Handler - { - public: - AZ_COMPONENT(DrillerNetworkAgentComponent, "{B587A74D-6190-4149-91CB-0EA69936BD59}") - - ////////////////////////////////////////////////////////////////////////// - // AZ::Component - virtual void Init(); - virtual void Activate(); - virtual void Deactivate(); - static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided); - static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible); - static void Reflect(AZ::ReflectContext* context); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // TargetManagerClient - virtual void TargetLeftNetwork(TargetInfo info); - ////////////////////////////////////////////////////////////////////////// - - protected: - ////////////////////////////////////////////////////////////////////////// - // TmMsg handlers - virtual void OnRequestDrillerEnum(TmMsgPtr msg); - virtual void OnRequestDrillerStart(TmMsgPtr msg); - virtual void OnRequestDrillerStop(TmMsgPtr msg); - ////////////////////////////////////////////////////////////////////////// - - TmMsgCallback m_cbDrillerEnumRequest; - TmMsgCallback m_cbDrillerStartRequest; - TmMsgCallback m_cbDrillerStopRequest; - - AZStd::vector m_activeSessions; - }; - - /** - * Runs on the tool machine and is responsible for communications with the - * DrillerNetworkAgent. - */ - class DrillerNetworkConsoleComponent - : public AZ::Component - , public DrillerNetworkConsoleCommandBus::Handler - , public TargetManagerClient::Bus::Handler - { - public: - AZ_COMPONENT(DrillerNetworkConsoleComponent, "{78ACADA4-F2C7-4320-8E97-59DD8B9BE33A}") - - ////////////////////////////////////////////////////////////////////////// - // AZ::Component - virtual void Init(); - virtual void Activate(); - virtual void Deactivate(); - static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided); - static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible); - static void Reflect(AZ::ReflectContext* context); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // DrillerNetworkConsoleCommandBus - virtual void EnumerateAvailableDrillers(); - virtual void StartRemoteDrillerSession(const DrillerListType& drillers, DrillerRemoteSession* handler); - virtual void StopRemoteDrillerSession(AZ::u64 sessionId); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // TargetManagerClient - virtual void DesiredTargetConnected(bool connected); - virtual void DesiredTargetChanged(AZ::u32 newTargetID, AZ::u32 oldTargetID); - ////////////////////////////////////////////////////////////////////////// - - protected: - ////////////////////////////////////////////////////////////////////////// - // TmMsg handlers - virtual void OnReceivedDrillerEnum(TmMsgPtr msg); - ////////////////////////////////////////////////////////////////////////// - - typedef AZStd::vector ActiveSessionListType; - ActiveSessionListType m_activeSessions; - TargetInfo m_curTarget; - TmMsgCallback m_cbDrillerEnum; - }; - - void ReflectNetDrillerClasses(AZ::ReflectContext* context); -} // namespace AzFramework - -#endif // AZFRAMEWORK_REMOTE_DRILLER_INTERFACE_H -#pragma once diff --git a/Code/Framework/AzFramework/AzFramework/Entity/EntityContextBus.h b/Code/Framework/AzFramework/AzFramework/Entity/EntityContextBus.h index 49cb8db609..124c8d8f50 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/EntityContextBus.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/EntityContextBus.h @@ -16,11 +16,14 @@ #ifndef AZFRAMEWORK_ENTITYCONTEXTBUS_H #define AZFRAMEWORK_ENTITYCONTEXTBUS_H +#include #include #include #include #include +AZ_DECLARE_BUDGET(AzFramework); + namespace AZ { class Entity; diff --git a/Code/Framework/AzFramework/AzFramework/Entity/EntityOwnershipService.h b/Code/Framework/AzFramework/AzFramework/Entity/EntityOwnershipService.h index 7e33c29025..083d5b4785 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/EntityOwnershipService.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/EntityOwnershipService.h @@ -10,6 +10,7 @@ #include #include +#include #include #include @@ -18,6 +19,8 @@ namespace AZ class Entity; } +AZ_DECLARE_BUDGET(AzFramework); + namespace AzFramework { // Types diff --git a/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.cpp b/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.cpp index 39dd482cb7..7bfdbb2f7e 100644 --- a/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.cpp +++ b/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.cpp @@ -36,28 +36,6 @@ namespace AzFramework { namespace Internal { - //! Save a JSON document to a stream. Otherwise returns a failure with error message. - AZ::Outcome WriteJsonToStream(const rapidjson::Document& document, AZ::IO::GenericStream& stream, WriteJsonSettings settings = WriteJsonSettings{}) - { - AZ::IO::RapidJSONStreamWriter jsonStreamWriter(&stream); - - rapidjson::PrettyWriter writer(jsonStreamWriter); - - if (settings.m_maxDecimalPlaces >= 0) - { - writer.SetMaxDecimalPlaces(settings.m_maxDecimalPlaces); - } - - if (document.Accept(writer)) - { - return AZ::Success(); - } - else - { - return AZ::Failure(AZStd::string{ "Json Writer failed" }); - } - } - static bool FindFilesInPath(const AZStd::string& folder, const AZStd::string& filter, bool recurseSubFolders, AZStd::list& fileList) { AZStd::string file_filter = folder; @@ -107,210 +85,8 @@ namespace AzFramework { return AZStd::string("(^|\\n\\s*)" + key + "([ \\t]*)=([ \\t]*)(.*)"); } - - /** - * Replaces a value in an ini-style content. - * - * \param[in] cfgContents The contents of the ini-style file - * \param[in] header The optional group title for the key - * \param[in] key The key of the value to replace - * \param[in] newValue The value to assign to the key - * - * \returns Void on success, error message on failure. - * - * If key has multiple values, it does not preserve other values. - * enabled_game_projects = oldProject1, oldProject2, oldProject3 - * becomes - * enabled_game_projects = newProject - * Cases to handle: - * 1. Key exists, value is identical -> do nothing - * This can occur if a user modifies a config file while the tooling is open. - * Example: - * 1) Load Project Configurator. - * 2) Modify your bootstrap.cfg to a different project. - * 3) Tell Project Configurator to set your project to the project you set in #2. - * 2. Key exists, value is missing -> stomps over key with new key value pair. - * 3. Key exists, value is different -> stomps over key with new key value pair. Ignores previous values. - * 4. Key does not exist, header is not required -> insert "key=value" at the end of file. - * 5. Key does not exist, required header does not exist -> insert "\nHeader\n" at end of file and continue to #6. - * 6. Key does not exist, required header does exist -> insert "key=value" at next line under the header. - * The header will always exist at this point, it was created in the previous check if it was missing. - */ - AZ::Outcome UpdateCfgContents(AZStd::string& cfgContents, const AZStd::string& header, const AZStd::string& key, const AZStd::string& value) - { - // Generate regex str and replacement str - AZStd::string lhsStr = key; - AZStd::string regexStr = BuildConfigKeyValueRegex(lhsStr); - AZStd::string gameFolderAssignment = "$1" + lhsStr + "$2=$03" + value; - - // Replace the current key with the new value - // AZStd's regex was not functional at the time this was authored, so convert to std from AZStd. - std::regex sysGameRegex(regexStr.c_str()); - std::smatch matchResults; - std::string settingsFileContentsStdStr = cfgContents.c_str(); - bool matchFound = std::regex_search(settingsFileContentsStdStr, matchResults, sysGameRegex); - - std::string result; - if (matchFound) - { - // Case 1, 2, and 3 - Key value pair exists, stomp over the key with a new value pair. - result = std::regex_replace(cfgContents.c_str(), sysGameRegex, gameFolderAssignment.c_str()); - } - else - { - // Cases 4 through 6 - the key does not exist. - result = cfgContents.c_str(); - std::size_t insertLocation = 0; - // Case 5 & 6 - key does not exist, header is required - if (!header.empty()) - { - insertLocation = result.find(header.c_str()); - // Case 6 - key does not exist, header does exist. - // Set the key insertion point to right after the header. - if (insertLocation != std::string::npos) - { - insertLocation += header.length(); - } - // Case 5 - key does not exist, required header does not exist. - // Insert the header at the top of the file, set the key insertion point after the header. - else - { - AZStd::string headerAndCr = AZStd::string::format("\n%s\n", header.c_str()); - result.insert(result.length(), headerAndCr.c_str()); - insertLocation = result.length() - 1; - } - } - // Case 4 - key does not exist, header is not required. - // Case 5 & 6 - the header has been added. - // Insert the key at the tracked insertion point - AZStd::string newConfigData = AZStd::string::format("\n%s=%s", key.c_str(), value.c_str()); - result.insert(insertLocation, newConfigData.c_str()); - } - cfgContents = result.c_str(); - return AZ::Success(); - } - - /** - * Updates a configuration (ini) style contents string representation with a list of replacement string rules - * - * \param[in] cfgContents The contents of the ini file to update - * \param[in] updateRules The update rules (list of update strings, see below) to apply - * - * The replace string rule format follows the following: - * ([header]/)[key]=[value] - * - * where: - * header (optional) : Optional group title for the key - * key : The key to lookup or create for the value - * value : The value to update or create - */ - AZ::Outcome UpdateCfgContents(AZStd::string& cfgContents, const AZStd::list& updateRules) - { - AZStd::string updateCfgContents = cfgContents; - for (const AZStd::string& updateRule : updateRules) - { - // Since we are parsing manually anyways, no need to do a regex validation - AZStd::string::size_type headerKeySep = updateRule.find_first_of('/'); - bool hasHeader = (headerKeySep != AZStd::string::npos); - AZStd::string::size_type keyValueSep = updateRule.find_first_of('=', !hasHeader ? 0 : headerKeySep + 1); - if (keyValueSep == AZStd::string::npos) - { - return AZ::Failure(AZStd::string::format("Invalid update config rule '%s'. Must be in the format ([header]/)[key]=[value]", updateRule.c_str())); - } - AZStd::string header = hasHeader ? updateRule.substr(0, headerKeySep) : AZStd::string(""); - AZStd::string key = hasHeader ? updateRule.substr(headerKeySep + 1, keyValueSep - (headerKeySep + 1)) : updateRule.substr(0, keyValueSep); - AZStd::string value = updateRule.substr(keyValueSep + 1); - - auto updateResult = UpdateCfgContents(updateCfgContents, header, key, value); - if (!updateResult.IsSuccess()) - { - return updateResult; - } - } - cfgContents = updateCfgContents; - return AZ::Success(); - } } // namespace Internal - AZ::Outcome WriteJsonToString(const rapidjson::Document& document, AZStd::string& jsonText, WriteJsonSettings settings) - { - AZ::IO::ByteContainerStream stream{ &jsonText }; - return Internal::WriteJsonToStream(document, stream, settings); - } - - AZ::Outcome ReadJsonFromString(AZStd::string_view jsonText) - { - if (jsonText.empty()) - { - return AZ::Failure(AZStd::string("Failed to parse JSON: input string is empty.")); - } - - rapidjson::Document jsonDocument; - jsonDocument.Parse(jsonText.data(), jsonText.size()); - if (jsonDocument.HasParseError()) - { - size_t lineNumber = 1; - - const size_t errorOffset = jsonDocument.GetErrorOffset(); - for (size_t searchOffset = jsonText.find('\n'); - searchOffset < errorOffset && searchOffset < AZStd::string::npos; - searchOffset = jsonText.find('\n', searchOffset + 1)) - { - lineNumber++; - } - - return AZ::Failure(AZStd::string::format("JSON parse error at line %zu: %s", lineNumber, rapidjson::GetParseError_En(jsonDocument.GetParseError()))); - } - else - { - return AZ::Success(AZStd::move(jsonDocument)); - } - } - - AZ::Outcome ReadJsonFile(const AZ::IO::Path& jsonFilePath, AZ::IO::FileIOBase* overrideFileIO /*= nullptr*/, size_t maxFileSize /*= AZ::Utils::DefaultMaxFileSize*/) - { - AZ::IO::FileIOBase* fileIo = overrideFileIO != nullptr ? overrideFileIO : AZ::IO::FileIOBase::GetInstance(); - if (fileIo == nullptr) - { - return AZ::Failure(AZStd::string("No FileIO instance present.")); - } - - // Read into memory first and then parse the JSON, rather than passing a file stream to rapidjson. - // This should avoid creating a large number of micro-reads from the file. - - auto readResult = AZ::Utils::ReadFile(jsonFilePath.String(), maxFileSize); - if (!readResult.IsSuccess()) - { - return AZ::Failure(readResult.GetError()); - } - - AZStd::string jsonContent = readResult.TakeValue(); - - auto result = ReadJsonFromString(jsonContent); - if (!result.IsSuccess()) - { - return AZ::Failure(AZStd::string::format("Failed to load '%s'. %s", jsonFilePath.c_str(), result.GetError().c_str())); - } - else - { - return result; - } - } - - AZ::Outcome WriteJsonFile(const rapidjson::Document& jsonDoc, const AZ::IO::Path& jsonFilePath, WriteJsonSettings settings) - { - // Write the JSON into memory first and then write the file, rather than passing a file stream to rapidjson. - // This should avoid creating a large number of micro-writes to the file. - AZStd::string fileContent; - auto outcome = WriteJsonToString(jsonDoc, fileContent, settings); - if (!outcome.IsSuccess()) - { - return outcome; - } - - return AZ::Utils::WriteFile(fileContent, jsonFilePath.String()); - } - AZ::Outcome, AZStd::string> FindFilesInPath(const AZStd::string& folder, const AZStd::string& filter, bool recurseSubFolders) { AZStd::list fileList; @@ -348,61 +124,6 @@ namespace AzFramework return AZ::Success(); } - AZ::Outcome ReplaceInCfgFile(const AZStd::string& filePath, const AZStd::list& updateRules) - { - if (!AZ::IO::SystemFile::Exists(filePath.c_str())) - { - return AZ::Failure(AZStd::string::format("Cfg file '%s' does not exist.", filePath.c_str())); - } - - // Load the settings file into a string - AZ::IO::SystemFile settingsFile; - if (!settingsFile.Open(filePath.c_str(), AZ::IO::SystemFile::SF_OPEN_READ_ONLY)) - { - return AZ::Failure(AZStd::string::format("Error reading cfg file '%s'.", filePath.c_str())); - } - - AZStd::string settingsFileContents(settingsFile.Length(), '\0'); - settingsFile.Read(settingsFileContents.size(), settingsFileContents.data()); - settingsFile.Close(); - - auto updateContentResult = Internal::UpdateCfgContents(settingsFileContents, updateRules); - if (!updateContentResult.IsSuccess()) - { - return updateContentResult; - } - - // Write the result. - if (!settingsFile.ReOpen(AZ::IO::SystemFile::SF_OPEN_WRITE_ONLY | AZ::IO::SystemFile::SF_OPEN_TRUNCATE)) - { - return AZ::Failure(AZStd::string::format("Failed to open settings file %s.", filePath.c_str())); - } - auto bytesWritten = settingsFile.Write(settingsFileContents.c_str(), settingsFileContents.size()); - settingsFile.Close(); - - if (bytesWritten != settingsFileContents.size()) - { - return AZ::Failure(AZStd::string::format("Failed to write to config file %s.", filePath.c_str())); - } - - return AZ::Success(); - } - - AZ::Outcome ReplaceInCfgFile(const AZStd::string& filePath, const char* header, const AZStd::string& key, const AZStd::string& newValue) - { - if (key.length() <= 0) - { - return AZ::Failure(AZStd::string("'key' parameter for ReplaceInCfgFile must not be empty")); - } - - AZStd::string updateRule = (header != nullptr) ? AZStd::string::format("%s/%s=%s", header, key.c_str(), newValue.c_str()) : AZStd::string::format("%s=%s", key.c_str(), newValue.c_str()); - AZStd::list updateRules{ - updateRule - }; - auto replaceResult = ReplaceInCfgFile(filePath, updateRules); - return replaceResult; - } - AZ::Outcome GetValueForKeyInCfgFile(const AZStd::string& filePath, const char* key) { AZ::Outcome subCommandResult = GetCfgFileContents(filePath); diff --git a/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.h b/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.h index 43609986f7..1fcef4ccfa 100644 --- a/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.h +++ b/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.h @@ -27,49 +27,6 @@ namespace AzFramework { namespace FileFunc { - struct WriteJsonSettings - { - int m_maxDecimalPlaces = -1; // -1 means use default - }; - - /* - * Read a string into a JSON document - * - * \param[in] jsonText The string of JSON to parse into a JSON document. - * \return Outcome ReadJsonFromString(AZStd::string_view jsonText); - - /* - * Read a text file into a JSON document - * - * \param[in] jsonFilePath The path to the JSON file path to open - * \param[in] overrideFileIO Optional file IO instance to use. If null, use the Singleton instead - * \param[in] maxFileSize The maximum size, in bytes, of the file to read. Defaults to 1 MB. - * \return Outcome(rapidjson::Document) Returns a failure with error message if the content is not valid JSON. - */ - AZ::Outcome ReadJsonFile(const AZ::IO::Path& jsonFilePath, AZ::IO::FileIOBase* overrideFileIO = nullptr, size_t maxFileSize = AZ::Utils::DefaultMaxFileSize); - - /** - * Write a JSON document to a string - * - * \param[in] jsonDoc The JSON document to write to a text file - * \param[out] jsonFilePath The string that the JSON text will be written to. - * \param[in] settings Settings to pass along to the JSON writer. - * \return StringOutcome Saves the JSON document to text. Otherwise returns a failure with error message. - */ - AZ::Outcome WriteJsonToString(const rapidjson::Document& document, AZStd::string& jsonText, WriteJsonSettings settings = WriteJsonSettings{}); - - /** - * Write a JSON document to a text file - * - * \param[in] jsonDoc The JSON document to write to a text file - * \param[in] jsonFilePath The path to the JSON file path to write to - * \param[in] settings Settings to pass along to the JSON writer. - * \return StringOutcome Saves the JSON document to a file. Otherwise returns a failure with error message. - */ - AZ::Outcome WriteJsonFile(const rapidjson::Document& jsonDoc, const AZ::IO::Path& jsonFilePath, WriteJsonSettings settings = WriteJsonSettings{}); - /** * Find all the files in a path based on an optional filter. Recurse if requested. * @@ -91,38 +48,6 @@ namespace AzFramework */ AZ::Outcome ReadTextFileByLine(const AZStd::string& filePath, AZStd::function perLineCallback); - /** - * Replaces a value in an ini-style file. - * - * \param[in] filePath The path to the config file to update - * \param[in] updateRules The update rules (list of update strings, see below) to apply - * - * The replace string rule format follows the following: - * ([header]/)[key]=[value] - * - * where: - * header (optional) : Optional group title for the key - * key : The key to lookup or create for the value - * value : The value to update or create - */ - AZ::Outcome ReplaceInCfgFile(const AZStd::string& filePath, const AZStd::list& updateRules); - - /** - * Replaces a value in an ini-style file. - * - * \param[in] filePath The path to the config file to update - * \param[in] updateRule The update rule (list of update strings, see below) to apply - * - * The replace string rule format follows the following: - * ([header]/)[key]=[value] - * - * where: - * header (optional) : Optional group title for the key - * key : The key to lookup or create for the value - * value : The value to update or create - */ - AZ::Outcome ReplaceInCfgFile(const AZStd::string& filePath, const char* header, const AZStd::string& key, const AZStd::string& newValue); - /** * Gets the value(s) for a key in an INI style config file. * diff --git a/Code/Framework/AzFramework/AzFramework/FileTag/FileTag.cpp b/Code/Framework/AzFramework/AzFramework/FileTag/FileTag.cpp index 87866581d3..f820ee56ed 100644 --- a/Code/Framework/AzFramework/AzFramework/FileTag/FileTag.cpp +++ b/Code/Framework/AzFramework/AzFramework/FileTag/FileTag.cpp @@ -366,7 +366,7 @@ namespace AzFramework AZStd::set tags; AZStd::string resolvedFilePath = ResolveFilePath(filePath); - auto found = AZStd::find_if(m_fileTagsMap.begin(), m_fileTagsMap.end(), [filePath, resolvedFilePath, this](auto& entry) -> bool + auto found = AZStd::find_if(m_fileTagsMap.begin(), m_fileTagsMap.end(), [resolvedFilePath](auto& entry) -> bool { return resolvedFilePath == ResolveFilePath(entry.first); }); diff --git a/Code/Framework/AzFramework/AzFramework/IO/FileOperations.cpp b/Code/Framework/AzFramework/AzFramework/IO/FileOperations.cpp index db36a91448..9703e4a993 100644 --- a/Code/Framework/AzFramework/AzFramework/IO/FileOperations.cpp +++ b/Code/Framework/AzFramework/AzFramework/IO/FileOperations.cpp @@ -114,7 +114,7 @@ namespace AZ AZ_Warning("AZ::IO::SmartMove", false, "Unable to move/copy the source file (%s)", sourceFilePath); if (destFileMoved) { - // if we were unable to move/copy the source file to the dest file, + // if we were unable to move/copy the source file to the dest file, // we will try to revert back the destination file from the temp file. if (!fileIO->Rename(tmpDestFile.c_str(), destinationFilePath)) { @@ -124,7 +124,7 @@ namespace AZ return ResultCode::Error; } - // removing the source file if copy succeeds + // removing the source file if copy succeeds if (!fileIO->Remove(sourceFilePath)) { AZ_Warning("AZ::IO::SmartMove", false, "Unable to delete the source file (%s)", sourceFilePath); @@ -140,7 +140,7 @@ namespace AZ return ResultCode::Error; } } - + return ResultCode::Success; } @@ -158,7 +158,7 @@ namespace AZ const int s_MaxCreateTempFileTries = 16; AZStd::string fullPath, fileName; tempFile.clear(); - + if (!AzFramework::StringFunc::Path::GetFullPath(file, fullPath)) { AZ_Warning("AZ::IO::CreateTempFileName", false, " Filepath needs to be an absolute path: '%s'", file); @@ -170,7 +170,7 @@ namespace AZ AZ_Warning("AZ::IO::CreateTempFileName", false, " Filepath needs to be an absolute path: '%s'", file); return false; } - + for (int idx = 0; idx < s_MaxCreateTempFileTries; idx++) { AzFramework::StringFunc::Path::ConstructFull(fullPath.c_str(), AZStd::string::format("$tmp%d_%s", rand(), fileName.c_str()).c_str(), tempFile, true); @@ -235,7 +235,7 @@ namespace AZ fileIO->Read(fileHandle, buffer, bufferSize - 1, false, &bytesRead); if (!bytesRead) { - return 0; + return nullptr; } char* currentPosition = buffer; diff --git a/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.cpp b/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.cpp index d779ac8b49..55e4f06db0 100644 --- a/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.cpp +++ b/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.cpp @@ -14,6 +14,7 @@ #include #include #include +#include #include #include @@ -283,11 +284,18 @@ namespace AZ void LocalFileIO::CheckInvalidWrite([[maybe_unused]] const char* path) { #if defined(AZ_ENABLE_TRACING) - const char* assetsAlias = GetAlias("@assets@"); - if (path && assetsAlias && AZ::IO::PathView(path).IsRelativeTo(assetsAlias)) + const char* assetAliasPath = GetAlias("@assets@"); + if (path && assetAliasPath) { - AZ_Error("FileIO", false, "You may not alter data inside the asset cache. Please check the call stack and consider writing into the source asset folder instead.\n" - "Attempted write location: %s", path); + AZStd::string assetsAlias(assetAliasPath); + AZStd::string pathString = path; + AZStd::to_lower(assetsAlias.begin(), assetsAlias.end()); + AZStd::to_lower(pathString.begin(), pathString.end()); + if (AZ::IO::PathView(pathString.c_str()).IsRelativeTo(assetsAlias.c_str())) + { + AZ_Error("FileIO", false, "You may not alter data inside the asset cache. Please check the call stack and consider writing into the source asset folder instead.\n" + "Attempted write location: %s", path); + } } #endif } @@ -543,28 +551,12 @@ namespace AZ char fullPath[AZ_MAX_PATH_LEN]; ConvertToAbsolutePath(path, fullPath, AZ_MAX_PATH_LEN); - const auto it = AZStd::find_if(m_aliases.begin(), m_aliases.end(), [key](const AliasType& alias) - { - return alias.first.compare(key) == 0; - }); - - if (it != m_aliases.end()) - { - it->second = fullPath; - } - else - { - m_aliases.emplace_back(key, fullPath); - } + m_aliases[key] = fullPath; } const char* LocalFileIO::GetAlias(const char* key) const { - const auto it = AZStd::find_if(m_aliases.begin(), m_aliases.end(), [key](const AliasType& alias) - { - return alias.first.compare(key) == 0; - }); - + const auto it = m_aliases.find(key); if (it != m_aliases.end()) { return it->second.c_str(); @@ -574,10 +566,7 @@ namespace AZ void LocalFileIO::ClearAlias(const char* key) { - m_aliases.erase(AZStd::remove_if(m_aliases.begin(), m_aliases.end(), [key](const AliasType& alias) - { - return alias.first.compare(key) == 0; - }), m_aliases.end()); + m_aliases.erase(key); } AZStd::optional LocalFileIO::ConvertToAliasBuffer(char* outBuffer, AZ::u64 outBufferLength, AZStd::string_view inBuffer) const @@ -682,55 +671,70 @@ namespace AZ bool LocalFileIO::ResolveAliases(const char* path, char* resolvedPath, AZ::u64 resolvedPathSize) const { - AZ_Assert(path != resolvedPath && resolvedPathSize > strlen(path), "Resolved path is incorrect"); AZ_Assert(path && path[0] != '%', "%% is deprecated, @ is the only valid alias token"); + AZStd::string_view pathView(path); + const auto found = AZStd::find_if(m_aliases.begin(), m_aliases.end(), + [pathView](const auto& alias) + { + return pathView.starts_with(alias.first); + }); + + using string_view_pair = AZStd::pair; + auto [aliasKey, aliasValue] = (found != m_aliases.end()) ? string_view_pair(*found) + : string_view_pair{}; + + size_t requiredResolvedPathSize = pathView.size() - aliasKey.size() + aliasValue.size() + 1; + AZ_Assert(path != resolvedPath && resolvedPathSize >= requiredResolvedPathSize, "Resolved path is incorrect"); // we assert above, but we also need to properly handle the case when the resolvedPath buffer size // is too small to copy the source into. - size_t pathLen = strlen(path) + 1; // account for null - if (path == resolvedPath || (resolvedPathSize < pathLen)) + if (path == resolvedPath || (resolvedPathSize < requiredResolvedPathSize)) { return false; } - azstrncpy(resolvedPath, resolvedPathSize, path, pathLen); - for (const auto& alias : m_aliases) + // Skip past the alias key in the pathView + // must ensure that we are replacing the entire folder name, not a partial (e.g. @GAME01@/ vs @GAME0@/) + if (AZStd::string_view postAliasView = pathView.substr(aliasKey.size()); + !aliasKey.empty() && (postAliasView.empty() || postAliasView.starts_with('/') || postAliasView.starts_with('\\'))) { - const char* key = alias.first.c_str(); - size_t keyLen = alias.first.length(); - if (azstrnicmp(resolvedPath, key, keyLen) == 0) // we only support aliases at the front of the path + // Copy over resolved alias path first + size_t resolvedPathLen = 0; + aliasValue.copy(resolvedPath, aliasValue.size()); + resolvedPathLen += aliasValue.size(); + // Append the post alias path next + postAliasView.copy(resolvedPath + resolvedPathLen, postAliasView.size()); + resolvedPathLen += postAliasView.size(); + // Null-Terminated the resolved path + resolvedPath[resolvedPathLen] = '\0'; + + // If the path started with one of the "asset cache" path aliases, lowercase the path + const char* assetAliasPath = GetAlias("@assets@"); + const char* rootAliasPath = GetAlias("@root@"); + const char* projectPlatformCacheAliasPath = GetAlias("@projectplatformcache@"); + const bool lowercasePath = (assetAliasPath != nullptr && AZ::StringFunc::StartsWith(resolvedPath, assetAliasPath)) || + (rootAliasPath != nullptr && AZ::StringFunc::StartsWith(resolvedPath, rootAliasPath)) || + (projectPlatformCacheAliasPath != nullptr && AZ::StringFunc::StartsWith(resolvedPath, projectPlatformCacheAliasPath)); + + if (lowercasePath) { - [[maybe_unused]] bool lowercasePath = LowerIfBeginsWith(resolvedPath, resolvedPathSize, "@assets@") - || LowerIfBeginsWith(resolvedPath, resolvedPathSize, "@root@") - || LowerIfBeginsWith(resolvedPath, resolvedPathSize, "@projectplatformcache@"); - - const char* dest = alias.second.c_str(); - size_t destLen = alias.second.length(); - char* afterKey = resolvedPath + keyLen; - size_t afterKeyLen = pathLen - keyLen; - // must ensure that we are replacing the entire folder name, not a partial (e.g. @GAME01@/ vs @GAME0@/) - if (*afterKey == '/' || *afterKey == '\\' || *afterKey == 0) - { - if (afterKeyLen + destLen + 1 < resolvedPathSize)//if after replacing the alias the length is greater than the max path size than skip - { - // scoot the right hand side of the replacement over to make room - memmove(resolvedPath + destLen, afterKey, afterKeyLen + 1); // make sure null is copied - memcpy(resolvedPath, dest, destLen); // insert replacement - pathLen -= keyLen; - pathLen += destLen; - - AZStd::replace(resolvedPath, resolvedPath + resolvedPathSize, '\\', '/'); - return true; - } - } + // Lowercase only the relative part after the replaced alias. + AZStd::to_lower(resolvedPath + aliasValue.size(), resolvedPath + resolvedPathLen); } + + // Replace any backslashes with posix slashes + AZStd::replace(resolvedPath, resolvedPath + resolvedPathLen, AZ::IO::WindowsPathSeparator, AZ::IO::PosixPathSeparator); + return true; + } + else + { + // The input path doesn't start with an available, copy it directly to the resolved path + pathView.copy(resolvedPath, pathView.size()); + // Null-Terminated the resolved path + resolvedPath[pathView.size()] = '\0'; } - // warn on failing to resolve an alias - AZ_Warning( - "LocalFileIO::ResolveAlias", path && path[0] != '@', - "Failed to resolve an alias: %s", path ? path : "(null)"); - + AZ_Warning("LocalFileIO::ResolveAlias", path && path[0] != '@', "Failed to resolve an alias: %s", path ? path : "(null)"); return false; } @@ -803,7 +807,7 @@ namespace AZ return false; } - AZ::OSString LocalFileIO::RemoveTrailingSlash(const AZ::OSString& pathStr) + AZStd::string LocalFileIO::RemoveTrailingSlash(const AZStd::string& pathStr) { if (pathStr.empty() || (pathStr[pathStr.length() - 1] != '/' && pathStr[pathStr.length() - 1] != '\\')) { @@ -813,7 +817,7 @@ namespace AZ return pathStr.substr(0, pathStr.length() - 1); } - AZ::OSString LocalFileIO::CheckForTrailingSlash(const AZ::OSString& pathStr) + AZStd::string LocalFileIO::CheckForTrailingSlash(const AZStd::string& pathStr) { if (pathStr.empty() || pathStr[pathStr.length() - 1] == '/') { diff --git a/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.h b/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.h index b02372d8c3..a9db55b320 100644 --- a/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.h +++ b/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.h @@ -8,16 +8,12 @@ #pragma once #include -#include -#include -#include -#include +#include #include #include -#include #include -#include #include +#include // This header file and CPP handles the platform specific implementation of code as defined by the FileIOBase interface class. // In order to make your code portable and functional with both this and the RemoteFileIO class, use the interface to access @@ -33,7 +29,7 @@ namespace AZ { public: AZ_RTTI(LocalFileIO, "{87A8D32B-F695-4105-9A4D-D99BE15DFD50}", FileIOBase); - AZ_CLASS_ALLOCATOR(LocalFileIO, OSAllocator, 0); + AZ_CLASS_ALLOCATOR(LocalFileIO, SystemAllocator, 0); LocalFileIO(); ~LocalFileIO(); @@ -77,8 +73,6 @@ namespace AZ bool ConvertToAbsolutePath(const char* path, char* absolutePath, AZ::u64 maxLength) const; private: - typedef AZStd::pair AliasType; - SystemFile* GetFilePointerFromHandle(HandleType fileHandle); HandleType GetNextHandle(); @@ -90,13 +84,13 @@ namespace AZ bool LowerIfBeginsWith(char* inOutBuffer, AZ::u64 bufferLen, const char* alias) const; private: - static AZ::OSString RemoveTrailingSlash(const AZ::OSString& pathStr); - static AZ::OSString CheckForTrailingSlash(const AZ::OSString& pathStr); + static AZStd::string RemoveTrailingSlash(const AZStd::string& pathStr); + static AZStd::string CheckForTrailingSlash(const AZStd::string& pathStr); mutable AZStd::recursive_mutex m_openFileGuard; AZStd::atomic m_nextHandle; - AZStd::map, AZ::OSStdAllocator> m_openFiles; - AZStd::vector m_aliases; + AZStd::unordered_map m_openFiles; + AZStd::unordered_map m_aliases; void CheckInvalidWrite(const char* path); }; diff --git a/Code/Framework/AzFramework/AzFramework/IO/RemoteFileIO.cpp b/Code/Framework/AzFramework/AzFramework/IO/RemoteFileIO.cpp index 75b43100c5..041e5baf4a 100644 --- a/Code/Framework/AzFramework/AzFramework/IO/RemoteFileIO.cpp +++ b/Code/Framework/AzFramework/AzFramework/IO/RemoteFileIO.cpp @@ -24,10 +24,12 @@ namespace AZ namespace IO { ////////////////////////////////////////////////////////////////////////// - const char* const NetworkFileIOChannel = "NetworkFileIO"; + [[maybe_unused]] const char* const NetworkFileIOChannel = "NetworkFileIO"; #ifndef REMOTEFILEIO_IS_NETWORKFILEIO - const char* const RemoteFileIOChannel = "RemoteFileIO"; + [[maybe_unused]] const char* const RemoteFileIOChannel = "RemoteFileIO"; + #ifdef REMOTEFILEIO_SYNC_CHECK const char* const RemoteFileCacheChannel = "RemoteFileCache"; + #endif #endif const size_t READ_CHUNK_SIZE = 1024 * 256; @@ -1081,16 +1083,6 @@ namespace AZ return ResultCode::Error; } - //bound check - //note that seeking beyond end or before beginning is system dependent - //therefore we will define that on all platforms it is not allowed - if (newFilePosition < 0) - { - AZ_TracePrintf(RemoteFileIOChannel, "RemoteFileIO::Seek(fileHandle=%u, offset=%i, type=%s) seek to a position before the begining of a file!", fileHandle, offset, type == SeekType::SeekFromCurrent ? "SeekFromCurrent" : type == SeekType::SeekFromEnd ? "SeekFromEnd" : type == SeekType::SeekFromStart ? "SeekFromStart" : "Unknown"); - REMOTEFILE_LOG_APPEND(AZStd::string::format("RemoteFileIO::Seek(fileHandle=%u, offset=%i, type=%s) seek to a position before the begining of a file!", fileHandle, offset, type == SeekType::SeekFromCurrent ? "SeekFromCurrent" : type == SeekType::SeekFromEnd ? "SeekFromEnd" : type == SeekType::SeekFromStart ? "SeekFromStart" : "Unknown").c_str()); - newFilePosition = 0; - } - else { AZ::u64 fileSize = 0; Size(fileHandle, fileSize); diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDevice.cpp b/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDevice.cpp index f1b4e02b2d..2f44f80eba 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDevice.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDevice.cpp @@ -39,7 +39,7 @@ namespace AzFramework } //////////////////////////////////////////////////////////////////////////////////////////// - void OnInputDeviceDisconnectedEvent(const InputDevice& inputDevice) + void OnInputDeviceDisconnectedEvent(const InputDevice& inputDevice) override { Call(FN_OnInputDeviceDisconnectedEvent, &inputDevice); } diff --git a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventListener.h b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventListener.h index 2b45012fa3..00bdf30f0e 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventListener.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventListener.h @@ -35,6 +35,7 @@ namespace AzFramework //! Predefined input event listener priority, used to sort handlers from highest to lowest inline static AZ::s32 GetPriorityFirst() { return std::numeric_limits::max(); } inline static AZ::s32 GetPriorityDebug() { return (GetPriorityFirst() / 4) * 3; } + inline static AZ::s32 GetPriorityDebugUI() { return (GetPriorityFirst() / 8) * 5; } inline static AZ::s32 GetPriorityUI() { return GetPriorityFirst() / 2; } inline static AZ::s32 GetPriorityDefault() { return 0; } inline static AZ::s32 GetPriorityLast() { return std::numeric_limits::min(); } diff --git a/Code/Framework/AzFramework/AzFramework/Input/Events/InputTextEventListener.h b/Code/Framework/AzFramework/AzFramework/Input/Events/InputTextEventListener.h index 32c44f83d4..4629a5a5c0 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Events/InputTextEventListener.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Events/InputTextEventListener.h @@ -28,6 +28,7 @@ namespace AzFramework //! Predefined text event listener priority, used to sort handlers from highest to lowest inline static AZ::s32 GetPriorityFirst() { return std::numeric_limits::max(); } inline static AZ::s32 GetPriorityDebug() { return (GetPriorityFirst() / 4) * 3; } + inline static AZ::s32 GetPriorityDebugUI() { return (GetPriorityFirst() / 8) * 5; } inline static AZ::s32 GetPriorityUI() { return GetPriorityFirst() / 2; } inline static AZ::s32 GetPriorityDefault() { return 0; } inline static AZ::s32 GetPriorityLast() { return std::numeric_limits::min(); } diff --git a/Code/Framework/AzFramework/AzFramework/Logging/LoggingComponent.cpp b/Code/Framework/AzFramework/AzFramework/Logging/LoggingComponent.cpp index aa1344fa4f..d5ba65425c 100644 --- a/Code/Framework/AzFramework/AzFramework/Logging/LoggingComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Logging/LoggingComponent.cpp @@ -101,7 +101,7 @@ namespace AzFramework if (m_logFile) { delete m_logFile; - m_logFile = NULL; + m_logFile = nullptr; } } diff --git a/Code/Framework/AzFramework/AzFramework/Network/AssetProcessorConnection.cpp b/Code/Framework/AzFramework/AzFramework/Network/AssetProcessorConnection.cpp index ebea29c2d9..2e1cde443c 100644 --- a/Code/Framework/AzFramework/AzFramework/Network/AssetProcessorConnection.cpp +++ b/Code/Framework/AzFramework/AzFramework/Network/AssetProcessorConnection.cpp @@ -177,7 +177,7 @@ namespace AzFramework //trying to connect, if any error occurs start the disconnect thread void AssetProcessorConnection::ConnectThread() { - static constexpr char ConnectThreadWindow[] = "AssetProcessorConnection::ConnectThread"; + [[maybe_unused]] static constexpr char ConnectThreadWindow[] = "AssetProcessorConnection::ConnectThread"; //check for join before doing an op if (m_connectThread.m_join) diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp index 3ffeb0cf5b..2100b0c394 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp @@ -13,14 +13,6 @@ #include -//This bit is defined in the TouchBending Gem wscript. -//Make sure the bit has a valid value. -#ifdef TOUCHBENDING_LAYER_BIT -#if (TOUCHBENDING_LAYER_BIT < 1) || (TOUCHBENDING_LAYER_BIT > 63) -#error Invalid Bit Definition For the TouchBending Layer Bit -#endif -#endif //#ifdef TOUCHBENDING_LAYER_BIT - namespace AzPhysics { AZ_CLASS_ALLOCATOR_IMPL(CollisionGroup, AZ::SystemAllocator, 0); @@ -31,10 +23,6 @@ namespace AzPhysics const CollisionGroup CollisionGroup::None = 0x0000000000000000ULL; const CollisionGroup CollisionGroup::All = 0xFFFFFFFFFFFFFFFFULL; -#ifdef TOUCHBENDING_LAYER_BIT - const CollisionGroup CollisionGroup::All_NoTouchBend = CollisionGroup::All.GetMask() & ~CollisionLayer::TouchBend.GetMask(); -#endif - void CollisionGroupScriptConstructor(CollisionGroup* thisPtr, AZ::ScriptDataContext& scriptDataContext) { if (int numArgs = scriptDataContext.GetNumArguments(); @@ -321,5 +309,12 @@ namespace AzPhysics group.SetLayer(layer, true); return group; } + + CollisionGroup GetCollisionGroupById(const CollisionGroups::Id& id) + { + CollisionGroup group; + Physics::CollisionRequestBus::BroadcastResult(group, &Physics::CollisionRequests::GetCollisionGroupById, id); + return group; + } } diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.h b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.h index 5340a1a344..8f75d2560d 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.h @@ -34,7 +34,6 @@ namespace AzPhysics static const CollisionGroup None; //!< Collide with nothing static const CollisionGroup All; //!< Collide with everything - static const CollisionGroup All_NoTouchBend; //!< Collide with everything, except Touch Bendable Vegetation. //! Construct a Group with the given bitmask. //! The each bit in the bitmask corresponds to a CollisionLayer. @@ -174,4 +173,9 @@ namespace AzPhysics private: AZStd::vector m_groups; }; + + //! Retrieves a Group with the given Id of a collision group. + //! This will lookup the group Id to retrieve the group mask. If not found, CollisionGroup::All is returned. + //! @param id The Id of the group to look up the group mask. + CollisionGroup GetCollisionGroupById(const CollisionGroups::Id& id); } diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.cpp index 924af41113..42ea38961f 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.cpp @@ -14,14 +14,6 @@ #include -//This bit is defined in the TouchBending Gem wscript. -//Make sure the bit has a valid value. -#ifdef TOUCHBENDING_LAYER_BIT -#if (TOUCHBENDING_LAYER_BIT < 1) || (TOUCHBENDING_LAYER_BIT > 63) -#error Invalid Bit Definition For the TouchBending Layer Bit -#endif -#endif //#ifdef TOUCHBENDING_LAYER_BIT - namespace AzPhysics { AZ_CLASS_ALLOCATOR_IMPL(CollisionLayer, AZ::SystemAllocator, 0); @@ -29,10 +21,6 @@ namespace AzPhysics const CollisionLayer CollisionLayer::Default = 0; -#ifdef TOUCHBENDING_LAYER_BIT - const CollisionLayer CollisionLayer::TouchBend = TOUCHBENDING_LAYER_BIT; -#endif - void CollisionLayer::Reflect(AZ::ReflectContext* context) { if (auto* serializeContext = azrtti_cast(context)) diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.h b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.h index 6b5a4cd2a9..01141c611c 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.h @@ -31,7 +31,6 @@ namespace AzPhysics static void Reflect(AZ::ReflectContext* context); static const CollisionLayer Default; //!< Default collision layer, 0. - static const CollisionLayer TouchBend; //!< Touch Bendable Vegetation collision layer. //! Construct a layer with the given index. //! @param index The index of the layer. Must be between 0 - CollisionLayers::MaxCollisionLayers. Default CollisionLayer::Default. diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Material.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Material.cpp index 994d93d99e..4ac97cf041 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Material.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Material.cpp @@ -28,7 +28,7 @@ namespace Physics class MaterialLibraryAssetEventHandler : public AZ::SerializeContext::IEventHandler { - void OnReadBegin(void* classPtr) + void OnReadBegin(void* classPtr) override { auto matAsset = static_cast(classPtr); matAsset->GenerateMissingIds(); @@ -38,7 +38,7 @@ namespace Physics class MaterialSelectionEventHandler : public AZ::SerializeContext::IEventHandler { - void OnReadEnd(void* classPtr) + void OnReadEnd(void* classPtr) override { auto materialSelection = static_cast(classPtr); if (materialSelection->GetMaterialIdsAssignedToSlots().empty()) @@ -362,8 +362,8 @@ namespace Physics MaterialId MaterialId::Create() { - MaterialId id; - id.m_id = AZ::Uuid::Create(); + MaterialId id; + id.m_id = AZ::Uuid::Create(); return id; } @@ -425,7 +425,7 @@ namespace Physics } else { - // If there is more than one material slot + // If there is more than one material slot // the caller must use SetMaterialSlots function return ""; } diff --git a/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/StaticRigidBody.h b/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/StaticRigidBody.h index 2cd3b9f7ae..8f84609379 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/StaticRigidBody.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/StaticRigidBody.h @@ -32,12 +32,20 @@ namespace AzPhysics { public: AZ_CLASS_ALLOCATOR_DECL; - AZ_RTTI(StaticRigidBody, "{13A677BB-7085-4EDB-BCC8-306548238692}", SimulatedBody); + AZ_RTTI(AzPhysics::StaticRigidBody, "{13A677BB-7085-4EDB-BCC8-306548238692}", AzPhysics::SimulatedBody); static void Reflect(AZ::ReflectContext* context); - //Legacy API - may change with LYN-438 + //! Add a shape to the static rigid body. + //! @param shape A shared pointer of the shape to add. virtual void AddShape(const AZStd::shared_ptr& shape) = 0; + + //! Returns the number of shapes that make up this static rigid body. + //! @return Returns the number of shapes as a AZ::u32. virtual AZ::u32 GetShapeCount() { return 0; } + + //! Returns a shared pointer to the requested shape index. + //! @param index The index of the shapes to return. Expected to be between 0 and GetShapeCount(). + //! @return Returns a shared pointer of the shape requested or nullptr if index is out of bounds. virtual AZStd::shared_ptr GetShape([[maybe_unused]]AZ::u32 index) { return nullptr; } }; } diff --git a/Code/Framework/AzFramework/AzFramework/Script/ScriptComponent.cpp b/Code/Framework/AzFramework/AzFramework/Script/ScriptComponent.cpp index 292cce29ec..e11dc6dace 100644 --- a/Code/Framework/AzFramework/AzFramework/Script/ScriptComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Script/ScriptComponent.cpp @@ -33,6 +33,8 @@ extern "C" { # include } +AZ_DEFINE_BUDGET(Script); + namespace ScriptComponentCpp { template @@ -290,7 +292,7 @@ namespace AzFramework namespace Internal { - static AZStd::string PrintLuaValue(lua_State* lua, int stackIdx, int depth = 0) + AZStd::string PrintLuaValue(lua_State* lua, int stackIdx, int depth = 0) { constexpr int MaxDepth = 4; if (depth > MaxDepth) diff --git a/Code/Framework/AzFramework/AzFramework/Script/ScriptRemoteDebugging.cpp b/Code/Framework/AzFramework/AzFramework/Script/ScriptRemoteDebugging.cpp index 06fd8acd79..011d967631 100644 --- a/Code/Framework/AzFramework/AzFramework/Script/ScriptRemoteDebugging.cpp +++ b/Code/Framework/AzFramework/AzFramework/Script/ScriptRemoteDebugging.cpp @@ -174,25 +174,25 @@ namespace AzFramework ScriptDebugAgent() = default; ////////////////////////////////////////////////////////////////////////// // Component base - virtual void Init(); - virtual void Activate(); - virtual void Deactivate(); + void Init() override; + void Activate() override; + void Deactivate() override; ////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////// // AZ::SystemTickBus - virtual void OnSystemTick(); + void OnSystemTick() override; ////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////// // ScriptDebugAgentBus - virtual void RegisterContext(AZ::ScriptContext* sc, const char* name); - virtual void UnregisterContext(AZ::ScriptContext* sc); + void RegisterContext(AZ::ScriptContext* sc, const char* name) override; + void UnregisterContext(AZ::ScriptContext* sc) override; ////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////// // TmMsgBus - virtual void OnReceivedMsg(TmMsgPtr msg); + void OnReceivedMsg(TmMsgPtr msg) override; ////////////////////////////////////////////////////////////////////////// protected: @@ -241,10 +241,10 @@ namespace AzFramework void ScriptDebugAgent::Activate() { m_executionState = SDA_STATE_DETACHED; - m_curContext = NULL; + m_curContext = nullptr; // register default app script context if there is one - AZ::ScriptContext* defaultScriptContext = NULL; + AZ::ScriptContext* defaultScriptContext = nullptr; EBUS_EVENT_RESULT(defaultScriptContext, AZ::ScriptSystemRequestBus, GetContext, AZ::ScriptContextIds::DefaultScriptContextId); if (defaultScriptContext) { @@ -379,7 +379,7 @@ namespace AzFramework AZ_TracePrintf("LUA", "Remote debugger %s has detached from context 0x%p.\n", m_debugger.GetDisplayName(), m_curContext); m_debugger = TargetInfo(); - m_curContext = NULL; + m_curContext = nullptr; m_executionState = SDA_STATE_DETACHED; } //------------------------------------------------------------------------- @@ -435,7 +435,7 @@ namespace AzFramework void ScriptDebugAgent::Process() { // Process messages - AZ::ScriptContextDebug* dbgContext = m_curContext ? m_curContext->GetDebugContext() : NULL; + AZ::ScriptContextDebug* dbgContext = m_curContext ? m_curContext->GetDebugContext() : nullptr; while (!m_msgQueue.empty()) { m_msgMutex.lock(); diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableSystemComponent.cpp b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableSystemComponent.cpp index dc8bf1af30..cb1e657edd 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableSystemComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableSystemComponent.cpp @@ -239,10 +239,11 @@ namespace AzFramework } else if (rootSpawnableKeyType == AZ::SettingsRegistryInterface::Type::NoType) { - AZ_Warning( + // [LYN-4146] - temporarily disabled + /*AZ_Warning( "Spawnables", false, "No root spawnable assigned. The root spawnable can be assigned in the Settings Registry under the key '%s'.\n", - RootSpawnableRegistryKey); + RootSpawnableRegistryKey);*/ ReleaseRootSpawnable(); } } diff --git a/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementAPI.h b/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementAPI.h index 35e8b45859..6582e145cb 100644 --- a/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementAPI.h +++ b/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementAPI.h @@ -10,6 +10,7 @@ #define AZFRAMEWORK_TARGETMANAGEMENTAPI_H #include +#include #include #include #include @@ -21,6 +22,8 @@ #include #include +AZ_DECLARE_BUDGET(AzFramework); + namespace AZ { class ReflectContext; diff --git a/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementComponent.cpp b/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementComponent.cpp index c1ce31613c..1c26cbc744 100644 --- a/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementComponent.cpp @@ -562,7 +562,7 @@ namespace AzFramework void TargetManagementComponent::SetMyPersistentName(const char* name) { - AZ_Assert(m_networkImpl->m_session == NULL, "We cannot change our neighborhood while connected!"); + AZ_Assert(m_networkImpl->m_session == nullptr, "We cannot change our neighborhood while connected!"); m_settings->m_persistentName = name; } @@ -585,7 +585,7 @@ namespace AzFramework void TargetManagementComponent::SetNeighborhood(const char* name) { - AZ_Assert(m_networkImpl->m_session == NULL, "We cannot change our neighborhood while connected!"); + AZ_Assert(m_networkImpl->m_session == nullptr, "We cannot change our neighborhood while connected!"); m_settings->m_neighborhoodName = name; } @@ -714,7 +714,7 @@ namespace AzFramework { GridMate::GridMember* member = m_networkImpl->m_session->GetMemberByIndex(i); GridMate::MemberIDCompact memberId = member->GetId().Compact(); - const TargetInfo* target = NULL; + const TargetInfo* target = nullptr; AZ::u32 targetId = 0; for (TargetContainer::const_iterator targetIt = m_availableTargets.begin(); targetIt != m_availableTargets.end(); ++targetIt) { @@ -742,7 +742,7 @@ namespace AzFramework AZ::IO::MemoryStream msgBuffer(m_tmpInboundBuffer.data(), result.m_numBytes, result.m_numBytes); TmMsg* msg = nullptr; AZ::ObjectStream::ClassReadyCB readyCB(AZStd::bind(&TargetManagementComponent::OnMsgParsed, this, &msg, AZStd::placeholders::_1, AZStd::placeholders::_2, AZStd::placeholders::_3)); - AZ::ObjectStream::LoadBlocking(&msgBuffer, *m_serializeContext, readyCB, AZ::ObjectStream::FilterDescriptor(0, AZ::ObjectStream::FILTERFLAG_IGNORE_UNKNOWN_CLASSES)); + AZ::ObjectStream::LoadBlocking(&msgBuffer, *m_serializeContext, readyCB, AZ::ObjectStream::FilterDescriptor(nullptr, AZ::ObjectStream::FILTERFLAG_IGNORE_UNKNOWN_CLASSES)); if (msg) { if (msg->GetCustomBlobSize() > 0) diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.cpp b/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.cpp index 74adcd9543..89338a355f 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.cpp +++ b/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.cpp @@ -144,6 +144,7 @@ namespace AzFramework if (const auto& cursor = AZStd::get_if(&event)) { m_cursorState.SetCurrentPosition(cursor->m_position); + m_cursorState.SetCaptured(cursor->m_captured); } else if (const auto& horizontalMotion = AZStd::get_if(&event)) { @@ -331,6 +332,11 @@ namespace AzFramework return nextCamera; } + void RotateCameraInput::SetRotateInputChannelId(const InputChannelId& rotateChannelId) + { + m_rotateChannelId = rotateChannelId; + } + PanCameraInput::PanCameraInput(const InputChannelId& panChannelId, PanAxesFn panAxesFn) : m_panAxesFn(AZStd::move(panAxesFn)) , m_panChannelId(panChannelId) @@ -378,35 +384,40 @@ namespace AzFramework return nextCamera; } - TranslateCameraInput::TranslationType TranslateCameraInput::TranslationFromKey( - const InputChannelId& channelId, const TranslateCameraInputChannels& translateCameraInputChannels) + void PanCameraInput::SetPanInputChannelId(const InputChannelId& panChannelId) { - if (channelId == translateCameraInputChannels.m_forwardChannelId) + m_panChannelId = panChannelId; + } + + TranslateCameraInput::TranslationType TranslateCameraInput::TranslationFromKey( + const InputChannelId& channelId, const TranslateCameraInputChannelIds& translateCameraInputChannelIds) + { + if (channelId == translateCameraInputChannelIds.m_forwardChannelId) { return TranslationType::Forward; } - if (channelId == translateCameraInputChannels.m_backwardChannelId) + if (channelId == translateCameraInputChannelIds.m_backwardChannelId) { return TranslationType::Backward; } - if (channelId == translateCameraInputChannels.m_leftChannelId) + if (channelId == translateCameraInputChannelIds.m_leftChannelId) { return TranslationType::Left; } - if (channelId == translateCameraInputChannels.m_rightChannelId) + if (channelId == translateCameraInputChannelIds.m_rightChannelId) { return TranslationType::Right; } - if (channelId == translateCameraInputChannels.m_downChannelId) + if (channelId == translateCameraInputChannelIds.m_downChannelId) { return TranslationType::Down; } - if (channelId == translateCameraInputChannels.m_upChannelId) + if (channelId == translateCameraInputChannelIds.m_upChannelId) { return TranslationType::Up; } @@ -415,9 +426,9 @@ namespace AzFramework } TranslateCameraInput::TranslateCameraInput( - TranslationAxesFn translationAxesFn, const TranslateCameraInputChannels& translateCameraInputChannels) + TranslationAxesFn translationAxesFn, const TranslateCameraInputChannelIds& translateCameraInputChannelIds) : m_translationAxesFn(AZStd::move(translationAxesFn)) - , m_translateCameraInputChannels(translateCameraInputChannels) + , m_translateCameraInputChannelIds(translateCameraInputChannelIds) { m_translateSpeedFn = []() constexpr { @@ -437,13 +448,13 @@ namespace AzFramework { if (input->m_state == InputChannel::State::Began) { - m_translation |= TranslationFromKey(input->m_channelId, m_translateCameraInputChannels); + m_translation |= TranslationFromKey(input->m_channelId, m_translateCameraInputChannelIds); if (m_translation != TranslationType::Nil) { BeginActivation(); } - if (input->m_channelId == m_translateCameraInputChannels.m_boostChannelId) + if (input->m_channelId == m_translateCameraInputChannelIds.m_boostChannelId) { m_boost = true; } @@ -451,12 +462,12 @@ namespace AzFramework // ensure we don't process end events in the idle state else if (input->m_state == InputChannel::State::Ended && !Idle()) { - m_translation &= ~(TranslationFromKey(input->m_channelId, m_translateCameraInputChannels)); + m_translation &= ~(TranslationFromKey(input->m_channelId, m_translateCameraInputChannelIds)); if (m_translation == TranslationType::Nil) { EndActivation(); } - if (input->m_channelId == m_translateCameraInputChannels.m_boostChannelId) + if (input->m_channelId == m_translateCameraInputChannelIds.m_boostChannelId) { m_boost = false; } @@ -528,6 +539,11 @@ namespace AzFramework m_boost = false; } + void TranslateCameraInput::SetTranslateCameraInputChannelIds(const TranslateCameraInputChannelIds& translateCameraInputChannelIds) + { + m_translateCameraInputChannelIds = translateCameraInputChannelIds; + } + OrbitCameraInput::OrbitCameraInput(const InputChannelId& orbitChannelId) : m_orbitChannelId(orbitChannelId) { @@ -619,6 +635,11 @@ namespace AzFramework return nextCamera; } + void OrbitCameraInput::SetOrbitInputChannelId(const InputChannelId& orbitChanneId) + { + m_orbitChannelId = orbitChanneId; + } + OrbitDollyScrollCameraInput::OrbitDollyScrollCameraInput() { m_scrollSpeedFn = []() constexpr @@ -677,6 +698,11 @@ namespace AzFramework return nextCamera; } + void OrbitDollyCursorMoveCameraInput::SetDollyInputChannelId(const InputChannelId& dollyChannelId) + { + m_dollyChannelId = dollyChannelId; + } + ScrollTranslationCameraInput::ScrollTranslationCameraInput() { m_scrollSpeedFn = []() constexpr @@ -790,19 +816,25 @@ namespace AzFramework const auto* position = inputChannel.GetCustomData(); AZ_Assert(position, "Expected PositionData2D but found nullptr"); - return CursorEvent{ ScreenPoint( - static_cast(position->m_normalizedPosition.GetX() * windowSize.m_width), - static_cast(position->m_normalizedPosition.GetY() * windowSize.m_height)) }; + auto currentCursorState = AzFramework::SystemCursorState::Unknown; + AzFramework::InputSystemCursorRequestBus::EventResult( + currentCursorState, inputDeviceId, &AzFramework::InputSystemCursorRequestBus::Events::GetSystemCursorState); + + const auto x = position->m_normalizedPosition.GetX() * aznumeric_cast(windowSize.m_width); + const auto y = position->m_normalizedPosition.GetY() * aznumeric_cast(windowSize.m_height); + return CursorEvent{ ScreenPoint(aznumeric_cast(AZStd::lround(x)), aznumeric_cast(AZStd::lround(y))), + currentCursorState == AzFramework::SystemCursorState::ConstrainedAndHidden }; } else if (inputChannelId == InputDeviceMouse::Movement::X) { - return HorizontalMotionEvent{ aznumeric_cast(inputChannel.GetValue()) }; + const auto x = inputChannel.GetValue(); + return HorizontalMotionEvent{ aznumeric_cast(AZStd::lround(x)) }; } else if (inputChannelId == InputDeviceMouse::Movement::Y) { - return VerticalMotionEvent{ aznumeric_cast(inputChannel.GetValue()) }; + const auto y = inputChannel.GetValue(); + return VerticalMotionEvent{ aznumeric_cast(AZStd::lround(y)) }; } - else if (inputChannelId == InputDeviceMouse::Movement::Z) { return ScrollEvent{ inputChannel.GetValue() }; diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.h b/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.h index 0b7bbbc30d..69e8b66434 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.h @@ -88,6 +88,7 @@ namespace AzFramework struct CursorEvent { ScreenPoint m_position; + bool m_captured = false; }; struct ScrollEvent @@ -302,6 +303,8 @@ namespace AzFramework bool HandleEvents(const InputEvent& event, const ScreenVector& cursorDelta, float scrollDelta) override; Camera StepCamera(const Camera& targetCamera, const ScreenVector& cursorDelta, float scrollDelta, float deltaTime) override; + void SetRotateInputChannelId(const InputChannelId& rotateChannelId); + AZStd::function m_rotateSpeedFn; AZStd::function m_invertPitchFn; AZStd::function m_invertYawFn; @@ -354,6 +357,8 @@ namespace AzFramework bool HandleEvents(const InputEvent& event, const ScreenVector& cursorDelta, float scrollDelta) override; Camera StepCamera(const Camera& targetCamera, const ScreenVector& cursorDelta, float scrollDelta, float deltaTime) override; + void SetPanInputChannelId(const InputChannelId& panChannelId); + AZStd::function m_panSpeedFn; AZStd::function m_invertPanXFn; AZStd::function m_invertPanYFn; @@ -397,7 +402,7 @@ namespace AzFramework } //! Groups all camera translation inputs. - struct TranslateCameraInputChannels + struct TranslateCameraInputChannelIds { InputChannelId m_forwardChannelId; InputChannelId m_backwardChannelId; @@ -413,13 +418,15 @@ namespace AzFramework { public: explicit TranslateCameraInput( - TranslationAxesFn translationAxesFn, const TranslateCameraInputChannels& translateCameraInputChannels); + TranslationAxesFn translationAxesFn, const TranslateCameraInputChannelIds& translateCameraInputChannelIds); // CameraInput overrides ... bool HandleEvents(const InputEvent& event, const ScreenVector& cursorDelta, float scrollDelta) override; Camera StepCamera(const Camera& targetCamera, const ScreenVector& cursorDelta, float scrollDelta, float deltaTime) override; void ResetImpl() override; + void SetTranslateCameraInputChannelIds(const TranslateCameraInputChannelIds& translateCameraInputChannelIds); + AZStd::function m_translateSpeedFn; AZStd::function m_boostMultiplierFn; @@ -481,11 +488,11 @@ namespace AzFramework //! Converts from a generic input channel id to a concrete translation type (based on the user's key mappings). TranslationType TranslationFromKey( - const InputChannelId& channelId, const TranslateCameraInputChannels& translateCameraInputChannels); + const InputChannelId& channelId, const TranslateCameraInputChannelIds& translateCameraInputChannelIds); TranslationType m_translation = TranslationType::Nil; //!< Types of translation the camera input is under. TranslationAxesFn m_translationAxesFn; //!< Builder for translation axes. - TranslateCameraInputChannels m_translateCameraInputChannels; //!< Input channel ids that map to internal translation types. + TranslateCameraInputChannelIds m_translateCameraInputChannelIds; //!< Input channel ids that map to internal translation types. bool m_boost = false; //!< Is the translation speed currently being multiplied/scaled upwards. }; @@ -512,6 +519,8 @@ namespace AzFramework bool HandleEvents(const InputEvent& event, const ScreenVector& cursorDelta, float scrollDelta) override; Camera StepCamera(const Camera& targetCamera, const ScreenVector& cursorDelta, float scrollDelta, float deltaTime) override; + void SetDollyInputChannelId(const InputChannelId& dollyChannelId); + AZStd::function m_cursorSpeedFn; private: @@ -547,6 +556,8 @@ namespace AzFramework Camera StepCamera(const Camera& targetCamera, const ScreenVector& cursorDelta, float scrollDelta, float deltaTime) override; bool Exclusive() const override; + void SetOrbitInputChannelId(const InputChannelId& orbitChanneId); + Cameras m_orbitCameras; //!< The camera inputs to run when this camera input is active (only these will run as it is exclusive). //! Override the default behavior for how a look-at point is calculated. diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/CursorState.h b/Code/Framework/AzFramework/AzFramework/Viewport/CursorState.h index 704383d615..f6474a242e 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/CursorState.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/CursorState.h @@ -21,6 +21,8 @@ namespace AzFramework [[nodiscard]] ScreenVector CursorDelta() const; //! Call this in a 'handle event' call to update the most recent cursor position. void SetCurrentPosition(const ScreenPoint& currentPosition); + //! Set whether the cursor is currently being constrained (and hidden). + void SetCaptured(bool captured); //! Call this in an 'update' call to copy the current cursor position to the last //! cursor position. void Update(); @@ -28,8 +30,14 @@ namespace AzFramework private: AZStd::optional m_lastCursorPosition; AZStd::optional m_currentCursorPosition; + bool m_captured = false; }; + inline void CursorState::SetCaptured(const bool captured) + { + m_captured = captured; + } + inline void CursorState::SetCurrentPosition(const ScreenPoint& currentPosition) { m_currentCursorPosition = currentPosition; @@ -44,9 +52,16 @@ namespace AzFramework inline void CursorState::Update() { - if (m_currentCursorPosition.has_value()) + if (!m_captured) { - m_lastCursorPosition = m_currentCursorPosition; + if (m_currentCursorPosition.has_value()) + { + m_lastCursorPosition = m_currentCursorPosition; + } + } + else + { + m_currentCursorPosition = m_lastCursorPosition; } } } // namespace AzFramework diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityBoundsUnionSystem.cpp b/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityBoundsUnionSystem.cpp index bfa9dfcf9e..4a6b29b95c 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityBoundsUnionSystem.cpp +++ b/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityBoundsUnionSystem.cpp @@ -12,6 +12,8 @@ #include #include +AZ_DECLARE_BUDGET(AzFramework); + namespace AzFramework { EntityVisibilityBoundsUnionSystem::EntityVisibilityBoundsUnionSystem() @@ -54,9 +56,6 @@ namespace AzFramework if (auto instance_it = m_entityVisibilityBoundsUnionInstanceMapping.find(entity); instance_it == m_entityVisibilityBoundsUnionInstanceMapping.end()) { - AZ::TransformInterface* transformInterface = entity->GetTransform(); - const AZ::Vector3 entityPosition = transformInterface->GetWorldTranslation(); - EntityVisibilityBoundsUnionInstance instance; instance.m_localEntityBoundsUnion = CalculateEntityLocalBoundsUnion(entity); instance.m_visibilityEntry.m_typeFlags = VisibilityEntry::TYPE_Entity; diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/VisibilityDebug.cpp b/Code/Framework/AzFramework/AzFramework/Visibility/VisibilityDebug.cpp index 0d74bcc54b..a71819ab45 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/VisibilityDebug.cpp +++ b/Code/Framework/AzFramework/AzFramework/Visibility/VisibilityDebug.cpp @@ -91,7 +91,7 @@ namespace AzFramework const AZ::Frustum::PlaneId planeId3) { AZ::Vector3 corner = AZ::Vector3::CreateZero(); - const auto intersectionOkay = AZ::ShapeIntersection::IntersectThreePlanes( + [[maybe_unused]] const auto intersectionOkay = AZ::ShapeIntersection::IntersectThreePlanes( frustum.GetPlane(planeId1), frustum.GetPlane(planeId2), frustum.GetPlane(planeId3), corner); AZ_Assert(intersectionOkay, "Plane intersection of Frustum failed"); diff --git a/Code/Framework/AzFramework/AzFramework/azframework_files.cmake b/Code/Framework/AzFramework/AzFramework/azframework_files.cmake index ecf0a2b4f0..87cf29ffec 100644 --- a/Code/Framework/AzFramework/AzFramework/azframework_files.cmake +++ b/Code/Framework/AzFramework/AzFramework/azframework_files.cmake @@ -123,11 +123,6 @@ set(FILES Entity/SliceGameEntityOwnershipServiceBus.h Entity/PrefabEntityOwnershipService.h Entity/PrefabEntityOwnershipService.cpp - Driller/RemoteDrillerInterface.cpp - Driller/RemoteDrillerInterface.h - Driller/DrillerConsoleAPI.h - Driller/DrillToFileComponent.h - Driller/DrillToFileComponent.cpp Components/ComponentAdapter.h Components/ComponentAdapter.inl Components/ComponentAdapterHelpers.h diff --git a/Code/Framework/AzFramework/CMakeLists.txt b/Code/Framework/AzFramework/CMakeLists.txt index 1ac60e299e..1164d81f04 100644 --- a/Code/Framework/AzFramework/CMakeLists.txt +++ b/Code/Framework/AzFramework/CMakeLists.txt @@ -10,8 +10,6 @@ ly_get_list_relative_pal_filename(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME}) ly_get_list_relative_pal_filename(common_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/Common) -set(LY_TOUCHBENDING_LAYER_BIT 63 CACHE STRING "Use TouchBending as the collision layer. The TouchBending layer can be a number from 1 to 63 (Default=63).") - ly_add_target( NAME AzFramework STATIC NAMESPACE AZ @@ -37,14 +35,6 @@ ly_add_target( 3rdParty::lz4 ) -ly_add_source_properties( - SOURCES - AzFramework/Physics/Collision/CollisionGroups.cpp - AzFramework/Physics/Collision/CollisionLayers.cpp - PROPERTY COMPILE_DEFINITIONS - VALUES TOUCHBENDING_LAYER_BIT=${LY_TOUCHBENDING_LAYER_BIT} -) - if(PAL_TRAIT_BUILD_TESTS_SUPPORTED) ly_get_list_relative_pal_filename(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Tests/Platform/${PAL_PLATFORM_NAME}) diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/IO/LocalFileIO_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/IO/LocalFileIO_Android.cpp index f6908142b4..b88c7cf25b 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/IO/LocalFileIO_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/IO/LocalFileIO_Android.cpp @@ -100,7 +100,7 @@ namespace AZ char resolvedPath[AZ_MAX_PATH_LEN]; ResolvePath(filePath, resolvedPath, AZ_MAX_PATH_LEN); - AZ::OSString pathWithoutSlash = RemoveTrailingSlash(resolvedPath); + AZStd::string pathWithoutSlash = RemoveTrailingSlash(resolvedPath); bool isInAPK = AZ::Android::Utils::IsApkPath(pathWithoutSlash.c_str()); if (isInAPK) @@ -115,7 +115,7 @@ namespace AZ // Skip over the current and parent directory paths if (filenameView != "." && filenameView != ".." && NameMatchesFilter(name, filter)) { - AZ::OSString foundFilePath = CheckForTrailingSlash(resolvedPath); + AZStd::string foundFilePath = CheckForTrailingSlash(resolvedPath); foundFilePath += name; // if aliased, de-alias! azstrcpy(tempBuffer, AZ_MAX_PATH_LEN, foundFilePath.c_str()); @@ -150,7 +150,7 @@ namespace AZ // Skip over the current and parent directory paths if (filenameView != "." && filenameView != ".." && NameMatchesFilter(entry->d_name, filter)) { - AZ::OSString foundFilePath = CheckForTrailingSlash(resolvedPath); + AZStd::string foundFilePath = CheckForTrailingSlash(resolvedPath); foundFilePath += entry->d_name; // if aliased, de-alias! azstrcpy(tempBuffer, AZ_MAX_PATH_LEN, foundFilePath.c_str()); @@ -199,7 +199,7 @@ namespace AZ } // make directories from bottom to top. - AZ::OSString pathBuffer; + AZStd::string pathBuffer; size_t pathLength = strlen(resolvedPath); pathBuffer.reserve(pathLength); for (size_t pathPos = 0; pathPos < pathLength; ++pathPos) diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Motion/InputDeviceMotion_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Motion/InputDeviceMotion_Android.cpp index 5cb3985569..74b2024fd1 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Motion/InputDeviceMotion_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Motion/InputDeviceMotion_Android.cpp @@ -175,7 +175,7 @@ namespace AzFramework m_packedSensorDataArray = new float[packedSensorDataLength]; // create the java instance - bool ret = m_motionSensorManager->CreateInstance("(Landroid/app/Activity;)V", AZ::Android::Utils::GetActivityRef()); + [[maybe_unused]] bool ret = m_motionSensorManager->CreateInstance("(Landroid/app/Activity;)V", AZ::Android::Utils::GetActivityRef()); AZ_Assert(ret, "Failed to create the MotionSensorManager Java instance."); } diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Android.cpp index 00139ffc9d..c477b0bd37 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Android.cpp @@ -128,7 +128,7 @@ namespace AzFramework }); // create the java instance - bool ret = m_keyboardHandler->CreateInstance("(Landroid/app/Activity;)V", AZ::Android::Utils::GetActivityRef()); + [[maybe_unused]] bool ret = m_keyboardHandler->CreateInstance("(Landroid/app/Activity;)V", AZ::Android::Utils::GetActivityRef()); AZ_Assert(ret, "Failed to create the KeyboardHandler Java instance."); // Connect to the raw input notifications bus diff --git a/Code/Framework/AzFramework/Platform/Common/UnixLike/AzFramework/IO/LocalFileIO_UnixLike.cpp b/Code/Framework/AzFramework/Platform/Common/UnixLike/AzFramework/IO/LocalFileIO_UnixLike.cpp index bf913e1818..c9cbdfbe7d 100644 --- a/Code/Framework/AzFramework/Platform/Common/UnixLike/AzFramework/IO/LocalFileIO_UnixLike.cpp +++ b/Code/Framework/AzFramework/Platform/Common/UnixLike/AzFramework/IO/LocalFileIO_UnixLike.cpp @@ -61,7 +61,7 @@ namespace AZ char resolvedPath[AZ_MAX_PATH_LEN] = {0}; ResolvePath(filePath, resolvedPath, AZ_MAX_PATH_LEN); - AZ::OSString withoutSlash = RemoveTrailingSlash(resolvedPath); + AZStd::string withoutSlash = RemoveTrailingSlash(resolvedPath); DIR* dir = opendir(withoutSlash.c_str()); if (dir != nullptr) @@ -80,7 +80,7 @@ namespace AZ // Skip over the current and parent directory paths if (filenameView != "." && filenameView != ".." && NameMatchesFilter(entry->d_name, filter)) { - AZ::OSString foundFilePath = CheckForTrailingSlash(resolvedPath); + AZStd::string foundFilePath = CheckForTrailingSlash(resolvedPath); foundFilePath += entry->d_name; // if aliased, dealias! azstrcpy(tempBuffer, AZ_MAX_PATH_LEN, foundFilePath.c_str()); @@ -116,7 +116,7 @@ namespace AZ } // make directories from bottom to top. - AZ::OSString buf; + AZStd::string buf; size_t pathLength = strlen(resolvedPath); buf.reserve(pathLength); for (size_t pos = 0; pos < pathLength; ++pos) diff --git a/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/IO/LocalFileIO_WinAPI.cpp b/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/IO/LocalFileIO_WinAPI.cpp index 61957fced0..5a56a360a8 100644 --- a/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/IO/LocalFileIO_WinAPI.cpp +++ b/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/IO/LocalFileIO_WinAPI.cpp @@ -128,7 +128,7 @@ namespace AZ } // make directories from bottom to top. - AZ::OSString buf; + AZStd::string buf; size_t pathLength = strlen(resolvedPath); buf.reserve(pathLength); for (size_t pos = 0; pos < pathLength; ++pos) diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Application/Application_Linux.cpp b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Application/Application_Linux.cpp index eb4165453e..407e256052 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Application/Application_Linux.cpp +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Application/Application_Linux.cpp @@ -24,7 +24,7 @@ namespace AzFramework LinuxXcbConnectionManagerBus::Handler::BusConnect(); } - ~LinuxXcbConnectionManagerImpl() + ~LinuxXcbConnectionManagerImpl() override { LinuxXcbConnectionManagerBus::Handler::BusDisconnect(); xcb_disconnect(m_xcbConnection); diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessCommunicator_Linux.cpp b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessCommunicator_Linux.cpp index 325ab81d41..f8cc26b19b 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessCommunicator_Linux.cpp +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessCommunicator_Linux.cpp @@ -78,7 +78,7 @@ namespace AzFramework FD_ZERO(&set); FD_SET(handle->GetHandle(), &set); - int numReady = select(handle->GetHandle() + 1, &set, NULL, NULL, NULL); + [[maybe_unused]] int numReady = select(handle->GetHandle() + 1, &set, nullptr, nullptr, nullptr); // if numReady == -1 and errno == EINTR then the child process died unexpectedly and // the handle was closed. Not something to assert about in regards to trying to read @@ -87,7 +87,7 @@ namespace AzFramework // dead and return any error codes the child may have written to the error stream. AZ_Assert(numReady != -1 || errno == EINTR, "Could not determine if any data is available for reading due to an error. Errno: %d", errno); - const bool wasSet = FD_ISSET(handle->GetHandle(), &set); + [[maybe_unused]] const bool wasSet = FD_ISSET(handle->GetHandle(), &set); AZ_Assert(wasSet, "handle was not set when we selected it for read"); return 0; diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessWatcher_Linux.cpp b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessWatcher_Linux.cpp index 8deed820d3..2d29fac73d 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessWatcher_Linux.cpp +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessWatcher_Linux.cpp @@ -202,8 +202,6 @@ namespace AzFramework bool ProcessLauncher::LaunchProcess(const ProcessLaunchInfo& processLaunchInfo, ProcessData& processData) { - bool result = false; - // note that the convention here is that it uses windows-shell style escaping of combined args with spaces in it // (so surrounding with quotes like param="hello world") // this is so that the callers (which could be numerous) do not have to worry about this and sprinkle ifdefs @@ -279,7 +277,7 @@ namespace AzFramework environmentVariables[i][0] = '\0'; azstrcat(environmentVariables[i], envVarString.size(), envVarString.c_str()); } - environmentVariables[numEnvironmentVars] = NULL; + environmentVariables[numEnvironmentVars] = nullptr; } pid_t child_pid = fork(); @@ -375,7 +373,7 @@ namespace AzFramework } bool isProcessDone = false; - time_t startTime = time(0); + time_t startTime = time(nullptr); time_t currentTime = startTime; AZ_Assert(currentTime != -1, "time(0) returned an invalid time"); while (((currentTime - startTime) < waitTimeInSeconds) && !isProcessDone) @@ -387,7 +385,7 @@ namespace AzFramework m_pWatcherData->m_childProcessIsDone = true; break; } - currentTime = time(0); + currentTime = time(nullptr); } //returns false if process is still running after time return isProcessDone; diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessCommunicator_Mac.cpp b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessCommunicator_Mac.cpp index ea22bc72a3..1c233c6f29 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessCommunicator_Mac.cpp +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessCommunicator_Mac.cpp @@ -75,7 +75,7 @@ namespace AzFramework FD_ZERO(&set); FD_SET(handle->GetHandle(), &set); - int numReady = select(handle->GetHandle() + 1, &set, NULL, NULL, NULL); + [[maybe_unused]] int numReady = select(handle->GetHandle() + 1, &set, NULL, NULL, NULL); // if numReady == -1 and errno == EINTR then the child process died unexpectedly and // the handle was closed. Not something to assert about in regards to trying to read @@ -84,7 +84,7 @@ namespace AzFramework // dead and return any error codes the child may have written to the error stream. AZ_Assert(numReady != -1 || errno == EINTR, "Could not determine if any data is available for reading due to an error. Errno: %d", errno); - const bool wasSet = FD_ISSET(handle->GetHandle(), &set); + [[maybe_unused]] const bool wasSet = FD_ISSET(handle->GetHandle(), &set); AZ_Assert(wasSet, "handle was not set when we selected it for read"); return 0; diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessWatcher_Mac.cpp b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessWatcher_Mac.cpp index 4099443913..1ba9ff3067 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessWatcher_Mac.cpp +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessWatcher_Mac.cpp @@ -205,8 +205,6 @@ namespace AzFramework bool ProcessLauncher::LaunchProcess(const ProcessLaunchInfo& processLaunchInfo, ProcessData& processData) { - bool result = false; - // note that the convention here is that it uses windows-shell style escaping of combined args with spaces in it // (so surrounding with quotes like param="hello world") // this is so that the callers (which could be numerous) do not have to worry about this and sprinkle ifdefs diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Windowing/NativeWindow_Windows.cpp b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Windowing/NativeWindow_Windows.cpp index 8312f9fa63..3f2b29a7bb 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Windowing/NativeWindow_Windows.cpp +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Windowing/NativeWindow_Windows.cpp @@ -234,7 +234,7 @@ namespace AzFramework GetRawInputData((HRAWINPUT)lParam, RID_INPUT, NULL, &rawInputSize, rawInputHeaderSize); LPBYTE rawInputBytes = new BYTE[rawInputSize]; - const UINT bytesCopied = GetRawInputData((HRAWINPUT)lParam, RID_INPUT, rawInputBytes, &rawInputSize, rawInputHeaderSize); + GetRawInputData((HRAWINPUT)lParam, RID_INPUT, rawInputBytes, &rawInputSize, rawInputHeaderSize); RAWINPUT* rawInput = (RAWINPUT*)rawInputBytes; AzFramework::RawInputNotificationBusWindows::Broadcast( diff --git a/Code/Framework/AzFramework/Tests/ArchiveTests.cpp b/Code/Framework/AzFramework/Tests/ArchiveTests.cpp index 11495ec5d7..6a359e714c 100644 --- a/Code/Framework/AzFramework/Tests/ArchiveTests.cpp +++ b/Code/Framework/AzFramework/Tests/ArchiveTests.cpp @@ -84,7 +84,7 @@ namespace UnitTest for (AZ::u32 threadIdx = 0; threadIdx < numThreads; ++threadIdx) { - auto threadFunctor = [&testFunction, testIteration, threadIdx, &successCount]() + auto threadFunctor = [&testFunction, &successCount]() { // Add some variability to thread timing by yielding each thread AZStd::this_thread::yield(); @@ -570,7 +570,7 @@ namespace UnitTest EXPECT_TRUE(found_mylevel_folder); numFound = 0; - found_mylevel_folder = 0; + found_mylevel_folder = false; // now make sure no red herrings appear // for example, if a file is mounted at "@assets@\\uniquename\\mylevel2\\mylevel3\\mylevel4" @@ -769,7 +769,6 @@ namespace UnitTest AZStd::intrusive_ptr pArchive = archive->OpenArchive(testArchivePath, nullptr, AZ::IO::INestedArchive::FLAGS_CREATE_NEW); EXPECT_NE(nullptr, pArchive); - char fillBuffer[32] = "Test"; EXPECT_EQ(0, pArchive->UpdateFile("foundit.dat", const_cast("test"), 4, AZ::IO::INestedArchive::METHOD_COMPRESS, AZ::IO::INestedArchive::LEVEL_BEST)); pArchive.reset(); diff --git a/Code/Framework/AzFramework/Tests/BehaviorEntityTests.cpp b/Code/Framework/AzFramework/Tests/BehaviorEntityTests.cpp index f42a0faeee..3c860a88dd 100644 --- a/Code/Framework/AzFramework/Tests/BehaviorEntityTests.cpp +++ b/Code/Framework/AzFramework/Tests/BehaviorEntityTests.cpp @@ -29,7 +29,7 @@ public: void Activate() override {} void Deactivate() override {} - bool ReadInConfig(const AZ::ComponentConfig* baseConfig) + bool ReadInConfig(const AZ::ComponentConfig* baseConfig) override { if (auto config = azrtti_cast(baseConfig)) { @@ -39,7 +39,7 @@ public: return false; } - bool WriteOutConfig(AZ::ComponentConfig* outBaseConfig) const + bool WriteOutConfig(AZ::ComponentConfig* outBaseConfig) const override { if (auto outConfig = azrtti_cast(outBaseConfig)) { diff --git a/Code/Framework/AzFramework/Tests/BinToTextEncode.cpp b/Code/Framework/AzFramework/Tests/BinToTextEncode.cpp index b4d4ff63b0..a1ebdfd945 100644 --- a/Code/Framework/AzFramework/Tests/BinToTextEncode.cpp +++ b/Code/Framework/AzFramework/Tests/BinToTextEncode.cpp @@ -46,7 +46,7 @@ namespace UnitTest AllocatorsFixture::TearDown(); } - virtual ~Base64Test() + ~Base64Test() override { } diff --git a/Code/Framework/AzFramework/Tests/CameraInputTests.cpp b/Code/Framework/AzFramework/Tests/CameraInputTests.cpp index ef340a41a5..486cca2af0 100644 --- a/Code/Framework/AzFramework/Tests/CameraInputTests.cpp +++ b/Code/Framework/AzFramework/Tests/CameraInputTests.cpp @@ -35,23 +35,23 @@ namespace UnitTest m_cameraSystem = AZStd::make_shared(); - m_translateCameraInputChannels.m_leftChannelId = AzFramework::InputChannelId("keyboard_key_alphanumeric_A"); - m_translateCameraInputChannels.m_rightChannelId = AzFramework::InputChannelId("keyboard_key_alphanumeric_D"); - m_translateCameraInputChannels.m_forwardChannelId = AzFramework::InputChannelId("keyboard_key_alphanumeric_W"); - m_translateCameraInputChannels.m_backwardChannelId = AzFramework::InputChannelId("keyboard_key_alphanumeric_S"); - m_translateCameraInputChannels.m_upChannelId = AzFramework::InputChannelId("keyboard_key_alphanumeric_E"); - m_translateCameraInputChannels.m_downChannelId = AzFramework::InputChannelId("keyboard_key_alphanumeric_Q"); - m_translateCameraInputChannels.m_boostChannelId = AzFramework::InputChannelId("keyboard_key_modifier_shift_l"); + m_translateCameraInputChannelIds.m_leftChannelId = AzFramework::InputChannelId("keyboard_key_alphanumeric_A"); + m_translateCameraInputChannelIds.m_rightChannelId = AzFramework::InputChannelId("keyboard_key_alphanumeric_D"); + m_translateCameraInputChannelIds.m_forwardChannelId = AzFramework::InputChannelId("keyboard_key_alphanumeric_W"); + m_translateCameraInputChannelIds.m_backwardChannelId = AzFramework::InputChannelId("keyboard_key_alphanumeric_S"); + m_translateCameraInputChannelIds.m_upChannelId = AzFramework::InputChannelId("keyboard_key_alphanumeric_E"); + m_translateCameraInputChannelIds.m_downChannelId = AzFramework::InputChannelId("keyboard_key_alphanumeric_Q"); + m_translateCameraInputChannelIds.m_boostChannelId = AzFramework::InputChannelId("keyboard_key_modifier_shift_l"); m_firstPersonRotateCamera = AZStd::make_shared(AzFramework::InputDeviceMouse::Button::Right); m_firstPersonTranslateCamera = - AZStd::make_shared(AzFramework::LookTranslation, m_translateCameraInputChannels); + AZStd::make_shared(AzFramework::LookTranslation, m_translateCameraInputChannelIds); auto orbitCamera = AZStd::make_shared(AzFramework::InputChannelId("keyboard_key_modifier_alt_l")); auto orbitRotateCamera = AZStd::make_shared(AzFramework::InputDeviceMouse::Button::Left); auto orbitTranslateCamera = - AZStd::make_shared(AzFramework::OrbitTranslation, m_translateCameraInputChannels); + AZStd::make_shared(AzFramework::OrbitTranslation, m_translateCameraInputChannelIds); orbitCamera->m_orbitCameras.AddCamera(orbitRotateCamera); orbitCamera->m_orbitCameras.AddCamera(orbitTranslateCamera); @@ -77,7 +77,7 @@ namespace UnitTest AllocatorsTestFixture::TearDown(); } - AzFramework::TranslateCameraInputChannels m_translateCameraInputChannels; + AzFramework::TranslateCameraInputChannelIds m_translateCameraInputChannelIds; AZStd::shared_ptr m_firstPersonRotateCamera; AZStd::shared_ptr m_firstPersonTranslateCamera; }; @@ -112,7 +112,7 @@ namespace UnitTest }); HandleEventAndUpdate( - AzFramework::DiscreteInputEvent{ m_translateCameraInputChannels.m_forwardChannelId, AzFramework::InputChannel::State::Began }); + AzFramework::DiscreteInputEvent{ m_translateCameraInputChannelIds.m_forwardChannelId, AzFramework::InputChannel::State::Began }); EXPECT_TRUE(activationBegan); } @@ -208,9 +208,9 @@ namespace UnitTest }); HandleEventAndUpdate( - AzFramework::DiscreteInputEvent{ m_translateCameraInputChannels.m_forwardChannelId, AzFramework::InputChannel::State::Began }); + AzFramework::DiscreteInputEvent{ m_translateCameraInputChannelIds.m_forwardChannelId, AzFramework::InputChannel::State::Began }); HandleEventAndUpdate( - AzFramework::DiscreteInputEvent{ m_translateCameraInputChannels.m_forwardChannelId, AzFramework::InputChannel::State::Ended }); + AzFramework::DiscreteInputEvent{ m_translateCameraInputChannelIds.m_forwardChannelId, AzFramework::InputChannel::State::Ended }); EXPECT_TRUE(activationBegan); EXPECT_TRUE(activationEnded); @@ -226,7 +226,7 @@ namespace UnitTest }); HandleEventAndUpdate( - AzFramework::DiscreteInputEvent{ m_translateCameraInputChannels.m_forwardChannelId, AzFramework::InputChannel::State::Began }); + AzFramework::DiscreteInputEvent{ m_translateCameraInputChannelIds.m_forwardChannelId, AzFramework::InputChannel::State::Began }); m_cameraSystem->m_cameras.Clear(); diff --git a/Code/Framework/AzFramework/Tests/EntityContext.cpp b/Code/Framework/AzFramework/Tests/EntityContext.cpp index cb957fa46c..74a4948e04 100644 --- a/Code/Framework/AzFramework/Tests/EntityContext.cpp +++ b/Code/Framework/AzFramework/Tests/EntityContext.cpp @@ -41,7 +41,7 @@ namespace UnitTest Data::AssetManager::Create(desc); } - virtual ~EntityContextBasicTest() + ~EntityContextBasicTest() override { } diff --git a/Code/Framework/AzFramework/Tests/FileIO.cpp b/Code/Framework/AzFramework/Tests/FileIO.cpp index 7be14bbbb7..fb95512968 100644 --- a/Code/Framework/AzFramework/Tests/FileIO.cpp +++ b/Code/Framework/AzFramework/Tests/FileIO.cpp @@ -118,7 +118,7 @@ namespace UnitTest AZ::IO::FileIOBase::SetInstance(&m_fileIO); } - ~FileIOStreamTest() + ~FileIOStreamTest() override { } @@ -341,7 +341,7 @@ namespace UnitTest AZ_TEST_ASSERT(!local.Eof(fileHandle)); AZ_TEST_ASSERT(!local.Flush(fileHandle)); AZ_TEST_ASSERT(!local.ModificationTime(fileHandle)); - AZ_TEST_ASSERT(!local.Read(fileHandle, 0, 0, false)); + AZ_TEST_ASSERT(!local.Read(fileHandle, nullptr, 0, false)); AZ_TEST_ASSERT(!local.Tell(fileHandle, fs)); AZ_TEST_ASSERT(!local.Exists((file01Name + "notexist").c_str())); @@ -752,7 +752,9 @@ namespace UnitTest // Test that sending in a too small output path fails, // if the output buffer is too small to hold the resolved path size_t SMALLER_THAN_FINAL_RESOLVED_PATH = expectedResolvedPath.length() - 1; + AZ_TEST_START_TRACE_SUPPRESSION; resolveDidWork = local.ResolvePath(aliasTestPath, aliasResolvedPath, SMALLER_THAN_FINAL_RESOLVED_PATH); + AZ_TEST_STOP_TRACE_SUPPRESSION(1); AZ_TEST_ASSERT(!resolveDidWork); // test clearing an alias diff --git a/Code/Framework/AzFramework/Tests/NativeWindow.cpp b/Code/Framework/AzFramework/Tests/NativeWindow.cpp index 9554b6ab10..f160d88003 100644 --- a/Code/Framework/AzFramework/Tests/NativeWindow.cpp +++ b/Code/Framework/AzFramework/Tests/NativeWindow.cpp @@ -27,19 +27,19 @@ namespace UnitTest AzFramework::WindowNotificationBus::Handler::BusConnect(m_windowHandle); } - ~NativeWindowListener() + ~NativeWindowListener() override { AzFramework::WindowNotificationBus::Handler::BusDisconnect(m_windowHandle); } // WindowNotificationBus::Handler overrides... - void OnWindowResized(uint32_t width, uint32_t height) + void OnWindowResized(uint32_t width, uint32_t height) override { AZ_UNUSED(width); AZ_UNUSED(height); m_wasOnWindowResizedReceived = true; } - void OnWindowClosed() + void OnWindowClosed() override { m_wasOnWindowClosedReceived = true; } diff --git a/Code/Framework/AzFramework/Tests/PlatformHelper.cpp b/Code/Framework/AzFramework/Tests/PlatformHelper.cpp index e8488d61d3..61bdbafba9 100644 --- a/Code/Framework/AzFramework/Tests/PlatformHelper.cpp +++ b/Code/Framework/AzFramework/Tests/PlatformHelper.cpp @@ -38,7 +38,7 @@ TEST_F(PlatformHelperTest, SpecialAllFlag_PlatformId_Valid) AzFramework::PlatformFlags platformFlags = AzFramework::PlatformFlags::Platform_ALL; auto platforms = AzFramework::PlatformHelper::GetPlatformsInterpreted(platformFlags); EXPECT_EQ(platforms.size(), AzFramework::NumPlatforms); - EXPECT_THAT(platforms, testing::UnorderedElementsAre("pc", "android", "ios", "mac", "provo", "salem", "jasper", "server")); + EXPECT_THAT(platforms, testing::UnorderedElementsAre("pc", "linux", "android", "ios", "mac", "provo", "salem", "jasper", "server")); } TEST_F(PlatformHelperTest, SpecialAllClientFlag_PlatformId_Valid) @@ -46,7 +46,7 @@ TEST_F(PlatformHelperTest, SpecialAllClientFlag_PlatformId_Valid) AzFramework::PlatformFlags platformFlags = AzFramework::PlatformFlags::Platform_ALL_CLIENT; auto platforms = AzFramework::PlatformHelper::GetPlatformsInterpreted(platformFlags); EXPECT_EQ(platforms.size(), AzFramework::NumClientPlatforms); - EXPECT_THAT(platforms, testing::UnorderedElementsAre("pc", "android", "ios", "mac", "provo", "salem", "jasper")); + EXPECT_THAT(platforms, testing::UnorderedElementsAre("pc", "linux", "android", "ios", "mac", "provo", "salem", "jasper")); } TEST_F(PlatformHelperTest, InvalidPlatformFlags_PlatformId_Empty) @@ -102,11 +102,7 @@ TEST_F(PlatformHelperTest, AppendPlatformCodeNames_ByValidName_OK) { AZStd::fixed_vector platformCodes; AzFramework::PlatformHelper::AppendPlatformCodeNames(platformCodes, AzFramework::PlatformPC); - ASSERT_EQ(2, platformCodes.size()); - AZStd::string windows = platformCodes[0]; - AZStd::string linux = platformCodes[1]; - EXPECT_STRCASEEQ(AzFramework::PlatformCodeNameWindows, windows.c_str()); - EXPECT_STRCASEEQ(AzFramework::PlatformCodeNameLinux, linux.c_str()); + EXPECT_THAT(platformCodes, testing::Pointwise(testing::Eq(), {AzFramework::PlatformCodeNameWindows})); } TEST_F(PlatformHelperTest, AppendPlatformCodeNames_ByInvalidName_OK) @@ -122,11 +118,7 @@ TEST_F(PlatformHelperTest, AppendPlatformCodeNames_ByValidId_OK) { AZStd::fixed_vector platformCodes; AzFramework::PlatformHelper::AppendPlatformCodeNames(platformCodes, AzFramework::PlatformId::PC); - ASSERT_EQ(2, platformCodes.size()); - AZStd::string windows = platformCodes[0]; - AZStd::string linux = platformCodes[1]; - EXPECT_STRCASEEQ(AzFramework::PlatformCodeNameWindows, windows.c_str()); - EXPECT_STRCASEEQ(AzFramework::PlatformCodeNameLinux, linux.c_str()); + EXPECT_THAT(platformCodes, testing::Pointwise(testing::Eq(), {AzFramework::PlatformCodeNameWindows})); } TEST_F(PlatformHelperTest, AppendPlatformCodeNames_ByInvalidId_OK) diff --git a/Code/Framework/AzFramework/Tests/Scene.cpp b/Code/Framework/AzFramework/Tests/Scene.cpp index 0f701f3190..31df6e6774 100644 --- a/Code/Framework/AzFramework/Tests/Scene.cpp +++ b/Code/Framework/AzFramework/Tests/Scene.cpp @@ -230,7 +230,7 @@ namespace SceneUnitTest // Check to make sure there are no more active scenes. size_t index = 0; - m_sceneSystem->IterateActiveScenes([&index, &scenes](const AZStd::shared_ptr&) + m_sceneSystem->IterateActiveScenes([&index](const AZStd::shared_ptr&) { index++; return true; @@ -251,7 +251,7 @@ namespace SceneUnitTest scenes[i].reset(); } index = 0; - m_sceneSystem->IterateZombieScenes([&index, &scenes](Scene&) { + m_sceneSystem->IterateZombieScenes([&index](Scene&) { index++; return true; }); diff --git a/Code/Framework/AzFramework/Tests/Spawnable/SpawnableEntitiesManagerTests.cpp b/Code/Framework/AzFramework/Tests/Spawnable/SpawnableEntitiesManagerTests.cpp index f68af08f4a..407ab1d21f 100644 --- a/Code/Framework/AzFramework/Tests/Spawnable/SpawnableEntitiesManagerTests.cpp +++ b/Code/Framework/AzFramework/Tests/Spawnable/SpawnableEntitiesManagerTests.cpp @@ -313,7 +313,7 @@ namespace UnitTest FillSpawnable(NumEntities); CreateEntityReferences(refScheme); - auto callback = [this, refScheme, NumEntities] + auto callback = [this, refScheme] (AzFramework::EntitySpawnTicket::Id, AzFramework::SpawnableConstEntityContainerView entities) { ValidateEntityReferences(refScheme, NumEntities, entities); @@ -346,7 +346,7 @@ namespace UnitTest FillSpawnable(NumEntities); CreateEntityReferences(refScheme); - auto callback = [this, refScheme, NumEntities] + auto callback = [this, refScheme] (AzFramework::EntitySpawnTicket::Id, AzFramework::SpawnableConstEntityContainerView entities) { ValidateEntityReferences(refScheme, NumEntities, entities); @@ -572,6 +572,8 @@ namespace UnitTest auto callback = [this, refScheme, NumEntities](AzFramework::EntitySpawnTicket::Id, AzFramework::SpawnableConstEntityContainerView entities) { + AZ_UNUSED(refScheme); + AZ_UNUSED(NumEntities); ValidateEntityReferences(refScheme, NumEntities, entities); }; @@ -592,6 +594,8 @@ namespace UnitTest auto callback = [this, refScheme, NumEntities](AzFramework::EntitySpawnTicket::Id, AzFramework::SpawnableConstEntityContainerView entities) { + AZ_UNUSED(refScheme); + AZ_UNUSED(NumEntities); ValidateEntityReferences(refScheme, NumEntities, entities); }; @@ -617,7 +621,7 @@ namespace UnitTest CreateEntityReferences(refScheme); auto callback = - [this, refScheme, NumEntities](AzFramework::EntitySpawnTicket::Id, AzFramework::SpawnableConstEntityContainerView entities) + [](AzFramework::EntitySpawnTicket::Id, AzFramework::SpawnableConstEntityContainerView entities) { size_t numElements = entities.size(); @@ -671,7 +675,7 @@ namespace UnitTest CreateEntityReferences(refScheme); auto callback = - [this, refScheme, NumEntities](AzFramework::EntitySpawnTicket::Id, AzFramework::SpawnableConstEntityContainerView entities) + [](AzFramework::EntitySpawnTicket::Id, AzFramework::SpawnableConstEntityContainerView entities) { size_t numElements = entities.size(); @@ -719,6 +723,8 @@ namespace UnitTest auto callback = [this, refScheme, NumEntities](AzFramework::EntitySpawnTicket::Id, AzFramework::SpawnableConstEntityContainerView entities) { + AZ_UNUSED(refScheme); + AZ_UNUSED(NumEntities); ValidateEntityReferences(refScheme, NumEntities, entities); }; diff --git a/Code/Framework/AzGameFramework/AzGameFramework/Application/GameApplication.cpp b/Code/Framework/AzGameFramework/AzGameFramework/Application/GameApplication.cpp index 3750eb1420..c42720311c 100644 --- a/Code/Framework/AzGameFramework/AzGameFramework/Application/GameApplication.cpp +++ b/Code/Framework/AzGameFramework/AzGameFramework/Application/GameApplication.cpp @@ -11,8 +11,6 @@ #include #include #include -#include -#include #include #include #include @@ -37,12 +35,6 @@ namespace AzGameFramework void GameApplication::StartCommon(AZ::Entity* systemEntity) { AzFramework::Application::StartCommon(systemEntity); - - if (GetDrillerManager()) - { - GetDrillerManager()->Register(aznew GridMate::Debug::CarrierDriller()); - GetDrillerManager()->Register(aznew GridMate::Debug::ReplicaDriller()); - } } void GameApplication::MergeSettingsToRegistry(AZ::SettingsRegistryInterface& registry) @@ -63,6 +55,12 @@ namespace AzGameFramework AZ::SettingsRegistryMergeUtils::MergeSettingsToRegistry_TargetBuildDependencyRegistry(registry, AZ_TRAIT_OS_PLATFORM_CODENAME, specializations, &scratchBuffer); +#if AZ_TRAIT_OS_IS_HOST_OS_PLATFORM && (defined (AZ_DEBUG_BUILD) || defined(AZ_PROFILE_BUILD)) + AZ::SettingsRegistryMergeUtils::MergeSettingsToRegistry_EngineRegistry(registry, AZ_TRAIT_OS_PLATFORM_CODENAME, specializations, &scratchBuffer); + AZ::SettingsRegistryMergeUtils::MergeSettingsToRegistry_GemRegistries(registry, AZ_TRAIT_OS_PLATFORM_CODENAME, specializations, &scratchBuffer); + AZ::SettingsRegistryMergeUtils::MergeSettingsToRegistry_ProjectRegistry(registry, AZ_TRAIT_OS_PLATFORM_CODENAME, specializations, &scratchBuffer); +#endif + // Used the lowercase the platform name since the bootstrap.game...setreg is being loaded // from the asset cache root where all the files are in lowercased from regardless of the filesystem case-sensitivity static constexpr char filename[] = "bootstrap.game." AZ_BUILD_CONFIGURATION_TYPE "." AZ_TRAIT_OS_PLATFORM_CODENAME_LOWER ".setreg"; @@ -92,10 +90,6 @@ namespace AzGameFramework components.emplace_back(azrtti_typeid()); #endif - // Note that this component is registered by AzFramework. - // It must be registered here instead of in the module so that existence of AzFrameworkModule is guaranteed. - components.emplace_back(azrtti_typeid()); - return components; } @@ -104,9 +98,6 @@ namespace AzGameFramework AzFramework::Application::CreateStaticModules(outModules); outModules.emplace_back(aznew AzGameFrameworkModule()); - - // have to let the metrics system know that it's ok to send back the name of the DrillerNetworkAgentComponent to Amazon as plain text, without hashing - EBUS_EVENT(AzFramework::MetricsPlainTextNameRegistrationBus, RegisterForNameSending, AZStd::vector{ azrtti_typeid() }); } void GameApplication::QueryApplicationType(AZ::ApplicationTypeQuery& appType) const diff --git a/Code/Framework/AzGameFramework/AzGameFramework/AzGameFrameworkModule.cpp b/Code/Framework/AzGameFramework/AzGameFramework/AzGameFrameworkModule.cpp index 80996a2e4a..e7da10568e 100644 --- a/Code/Framework/AzGameFramework/AzGameFramework/AzGameFrameworkModule.cpp +++ b/Code/Framework/AzGameFramework/AzGameFramework/AzGameFrameworkModule.cpp @@ -7,24 +7,15 @@ */ #include -// Component includes -#include -#include - namespace AzGameFramework { AzGameFrameworkModule::AzGameFrameworkModule() : AZ::Module() { - m_descriptors.insert(m_descriptors.end(), { - AzFramework::DrillToFileComponent::CreateDescriptor(), - }); } AZ::ComponentTypeList AzGameFrameworkModule::GetRequiredSystemComponents() const { - return AZ::ComponentTypeList{ - azrtti_typeid(), - }; + return {}; } } diff --git a/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkUtils.cpp b/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkUtils.cpp index 25aed336de..1b68a3d0cd 100644 --- a/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkUtils.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkUtils.cpp @@ -122,7 +122,7 @@ namespace AzManipulatorTestFramework MouseInteractionEvent CreateMouseInteractionEvent(const MouseInteraction& mouseInteraction, MouseEvent event) { - return MouseInteractionEvent(mouseInteraction, event); + return MouseInteractionEvent(mouseInteraction, event, /*captured=*/false); } void DispatchMouseInteractionEvent(const MouseInteractionEvent& event) diff --git a/Code/Framework/AzManipulatorTestFramework/Source/DirectManipulatorViewportInteraction.cpp b/Code/Framework/AzManipulatorTestFramework/Source/DirectManipulatorViewportInteraction.cpp index a667af4e20..c9234fe488 100644 --- a/Code/Framework/AzManipulatorTestFramework/Source/DirectManipulatorViewportInteraction.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Source/DirectManipulatorViewportInteraction.cpp @@ -34,7 +34,7 @@ namespace AzManipulatorTestFramework ViewportInteractionInterface* viewportInteraction, AZStd::shared_ptr manipulatorManager); // ManipulatorManagerInterface ... - void ConsumeMouseInteractionEvent(const MouseInteractionEvent& event); + void ConsumeMouseInteractionEvent(const MouseInteractionEvent& event) override; AzToolsFramework::ManipulatorManagerId GetId() const override; bool ManipulatorBeingInteracted() const override; diff --git a/Code/Framework/AzManipulatorTestFramework/Tests/GridSnappingTest.cpp b/Code/Framework/AzManipulatorTestFramework/Tests/GridSnappingTest.cpp index c824ddc766..12b2a6546c 100644 --- a/Code/Framework/AzManipulatorTestFramework/Tests/GridSnappingTest.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Tests/GridSnappingTest.cpp @@ -71,7 +71,7 @@ namespace UnitTest // callback to update the manipulator's current position linearManipulator->InstallMouseMoveCallback( - [this, linearManipulator](const AzToolsFramework::LinearManipulator::Action& action) + [linearManipulator](const AzToolsFramework::LinearManipulator::Action& action) { linearManipulator->SetLocalPosition(action.LocalPosition()); }); diff --git a/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPacketDispatcher_Header.jinja b/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPacketDispatcher_Header.jinja index 63442ea1eb..1e9edc56bd 100644 --- a/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPacketDispatcher_Header.jinja +++ b/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPacketDispatcher_Header.jinja @@ -16,7 +16,7 @@ namespace {{ xml.attrib['Name'] }} //! @param handler the handler used to handle the received packet //! @return boolean true on successful dispatch, false if the request was not handled template - bool DispatchPacket(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, AzNetworking::ISerializer& serializer, HANDLER& handler); + AzNetworking::PacketDispatchResult DispatchPacket(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, AzNetworking::ISerializer& serializer, HANDLER& handler); } {% endfor %} diff --git a/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPacketDispatcher_Inline.jinja b/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPacketDispatcher_Inline.jinja index ac659820c3..c6f1a23402 100644 --- a/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPacketDispatcher_Inline.jinja +++ b/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPacketDispatcher_Inline.jinja @@ -2,7 +2,7 @@ namespace {{ xml.attrib['Name'] }} { template - inline bool DispatchPacket(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, AzNetworking::ISerializer& serializer, HANDLER& handler) + inline AzNetworking::PacketDispatchResult DispatchPacket(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, AzNetworking::ISerializer& serializer, HANDLER& handler) { switch (aznumeric_cast(packetHeader.GetPacketType())) { @@ -10,16 +10,26 @@ namespace {{ xml.attrib['Name'] }} case aznumeric_cast({{ Packet.attrib['Name'] }}::Type): { AZLOG(Debug_DispatchPackets, "Received packet %s", "{{ Packet.attrib['Name'] }}"); +{% if ('HandshakePacket' not in Packet.attrib) or (Packet.attrib['HandshakePacket'] == 'false') %} + if (!handler.IsHandshakeComplete()) + { + return AzNetworking::PacketDispatchResult::Skipped; + } +{% endif %} + {{ Packet.attrib['Name'] }} packet; if (!serializer.Serialize(packet, "Packet")) { - return false; + return AzNetworking::PacketDispatchResult::Failure; + } + if(handler.HandleRequest(connection, packetHeader, packet)) + { + return AzNetworking::PacketDispatchResult::Success; } - return handler.HandleRequest(connection, packetHeader, packet); } {% endfor %} } - return false; + return AzNetworking::PacketDispatchResult::Failure; } } {% endfor %} diff --git a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnectionListener.h b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnectionListener.h index 41e79e2207..f93e7d72f6 100644 --- a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnectionListener.h +++ b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnectionListener.h @@ -45,8 +45,8 @@ namespace AzNetworking //! @param connection pointer to the connection instance generating the event //! @param packetHeader packet header of the associated payload //! @param serializer serializer instance containing the transmitted payload - //! @return boolean true to signal success, false to disconnect with a transport error - virtual bool OnPacketReceived(IConnection* connection, const IPacketHeader& packetHeader, ISerializer& serializer) = 0; + //! @return PacketDispatchResult result of the packet handling attempt + virtual PacketDispatchResult OnPacketReceived(IConnection* connection, const IPacketHeader& packetHeader, ISerializer& serializer) = 0; //! Called when a packet is deemed lost by the remote connection. //! @param connection pointer to the connection instance generating the event diff --git a/Code/Framework/AzNetworking/AzNetworking/PacketLayer/IPacketHeader.h b/Code/Framework/AzNetworking/AzNetworking/PacketLayer/IPacketHeader.h index ea9734a867..4a441f5ed2 100644 --- a/Code/Framework/AzNetworking/AzNetworking/PacketLayer/IPacketHeader.h +++ b/Code/Framework/AzNetworking/AzNetworking/PacketLayer/IPacketHeader.h @@ -15,6 +15,12 @@ namespace AzNetworking { + AZ_ENUM_CLASS(PacketDispatchResult + , Failure + , Skipped + , Success + ); + AZ_ENUM_CLASS(PacketFlag , Compressed , MAX diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpListenThread.cpp b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpListenThread.cpp index 758cff3337..e65f01509e 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpListenThread.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpListenThread.cpp @@ -64,7 +64,7 @@ namespace AzNetworking { --m_listenPortCount; - auto visitor = [this, &tcpNetworkInterface](ListenPort& listenPort) + auto visitor = [&tcpNetworkInterface](ListenPort& listenPort) { if (listenPort.m_tcpNetworkInterface == &tcpNetworkInterface) { @@ -118,9 +118,9 @@ namespace AzNetworking const int32_t connectionLength = aznumeric_cast(sizeof(newConnection)); memset(&newConnection, 0, connectionLength); - auto readCallback = [this, newConnection, connectionLength](SocketFd socketFd) + auto readCallback = [this, newConnection](SocketFd socketFd) { - auto visitor = [this, newConnection, connectionLength, socketFd](ListenPort& listenPort) + auto visitor = [this, newConnection, socketFd](ListenPort& listenPort) { if (listenPort.m_listenSocket.GetSocketFd() == socketFd) { @@ -132,7 +132,7 @@ namespace AzNetworking auto writeCallback = [](SocketFd) {}; m_tcpSocketManager.ProcessEvents(updateRateMs, readCallback, writeCallback); - auto cleanupUnused = [this](AZ::ThreadSafeDeque::DequeType& deque) + auto cleanupUnused = [](AZ::ThreadSafeDeque::DequeType& deque) { AZStd::remove_if(deque.begin(), deque.end(), [](ListenPort& listenPort) { return listenPort.m_tcpNetworkInterface == nullptr; }); }; diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsSocket.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsSocket.cpp index 1944995bac..ee784b6ffb 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsSocket.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsSocket.cpp @@ -86,7 +86,7 @@ namespace AzNetworking #if AZ_TRAIT_USE_OPENSSL uint8_t encrpytedSendBuffer[MaxUdpTransmissionUnit]; // Write out the packet we were requested to send - const int32_t sentBytesRaw = SSL_write(dtlsEndpoint.m_sslSocket, data, size); + SSL_write(dtlsEndpoint.m_sslSocket, data, size); const int32_t sentBytesEnc = BIO_read(dtlsEndpoint.m_writeBio, encrpytedSendBuffer, sizeof(encrpytedSendBuffer)); // Track encryption metrics diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.cpp index 3efc6a51a8..7b451865c4 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.cpp @@ -236,14 +236,14 @@ namespace AzNetworking return true; } - bool UdpConnection::HandleCorePacket(IConnectionListener& connectionListener, UdpPacketHeader& header, ISerializer& serializer) + PacketDispatchResult UdpConnection::HandleCorePacket(IConnectionListener& connectionListener, UdpPacketHeader& header, ISerializer& serializer) { switch (static_cast(header.GetPacketType())) { case CorePackets::PacketType::InitiateConnectionPacket: { AZLOG(NET_CorePackets, "Received core packet %s", "InitiateConnection"); - return true; + return PacketDispatchResult::Success; } break; @@ -253,7 +253,7 @@ namespace AzNetworking CorePackets::ConnectionHandshakePacket packet; if (!serializer.Serialize(packet, "Packet")) { - return false; + return PacketDispatchResult::Failure; } if (m_state != ConnectionState::Connected) @@ -264,7 +264,7 @@ namespace AzNetworking } } - return true; + return PacketDispatchResult::Success; } break; @@ -274,10 +274,10 @@ namespace AzNetworking CorePackets::TerminateConnectionPacket packet; if (!serializer.Serialize(packet, "Packet")) { - return false; + return PacketDispatchResult::Failure; } Disconnect(packet.GetDisconnectReason(), TerminationEndpoint::Remote); - return true; + return PacketDispatchResult::Success; } break; @@ -287,10 +287,10 @@ namespace AzNetworking CorePackets::HeartbeatPacket packet; if (!serializer.Serialize(packet, "Packet")) { - return false; + return PacketDispatchResult::Failure; } // Do nothing, we've already processed our ack packets - return true; + return PacketDispatchResult::Success; } break; @@ -302,6 +302,6 @@ namespace AzNetworking AZ_Assert(false, "Unhandled core packet type!"); } - return false; + return PacketDispatchResult::Failure; } } diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.h index 67d626d6cb..199a5a8347 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.h @@ -130,8 +130,8 @@ namespace AzNetworking //! @param listener a connection listener to receive connection related events //! @param header the packet header received to process //! @param serializer the output serializer containing the transmitted packet data - //! @return boolean true on successful handling of the received header - bool HandleCorePacket(IConnectionListener& listener, UdpPacketHeader& header, ISerializer& serializer); + //! @return PacketDispatchResult result of processing the core packet + PacketDispatchResult HandleCorePacket(IConnectionListener& listener, UdpPacketHeader& header, ISerializer& serializer); AZ_DISABLE_COPY_MOVE(UdpConnection); diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.cpp index 66fe6f30eb..fa4ee78a92 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.cpp @@ -37,14 +37,14 @@ namespace AzNetworking return m_sequenceGenerator.GetNextSequenceId(); } - bool UdpFragmentQueue::ProcessReceivedChunk(UdpConnection* connection, IConnectionListener& connectionListener, UdpPacketHeader& header, ISerializer& serializer) + PacketDispatchResult UdpFragmentQueue::ProcessReceivedChunk(UdpConnection* connection, IConnectionListener& connectionListener, UdpPacketHeader& header, ISerializer& serializer) { AZStd::unique_ptr packet = AZStd::make_unique(); if (!serializer.Serialize(*packet, "Packet")) { AZLOG(NET_FragmentQueue, "Fragment failed serialization"); - return false; + return PacketDispatchResult::Failure; } const bool isReliable = header.GetIsReliable(); @@ -63,14 +63,14 @@ namespace AzNetworking { // Too old to process AZLOG(NET_FragmentQueue, "Fragment sequence ID is outside our tracked window"); - return false; + return PacketDispatchResult::Failure; } if (m_deliveredFragments.GetBit(static_cast(sequenceDelta))) { // Received packet is a duplicate of one already forwarded to gameplay AZLOG(NET_FragmentQueue, "Received duplicate of fragmented packet %u, discarding", static_cast(fragmentSequence)); - return true; + return PacketDispatchResult::Success; } const uint32_t chunkCount = packet->GetChunkCount(); @@ -89,7 +89,7 @@ namespace AzNetworking { // Either we disagree on the number of chunks, or chunkIndex is bigger than the expected size, bail and disconnect AZLOG(NET_FragmentQueue, "Malformed chunk metadata in fragmented packet, chunkIndex %u, chunkCount %u, reservedSize %u", chunkIndex, chunkCount, static_cast(packetFragments.size())); - return false; + return PacketDispatchResult::Failure; } packetFragments[chunkIndex] = AZStd::move(packet); @@ -105,7 +105,7 @@ namespace AzNetworking } // We haven't received all chunks required to complete this packet yet - return true; + return PacketDispatchResult::Success; } totalPacketSize += static_cast(packetFragments[index]->GetChunkBuffer().GetSize()); @@ -119,7 +119,7 @@ namespace AzNetworking if (!buffer.Resize(totalPacketSize)) { AZLOG_ERROR("Fragmented packet is too large to fit in UdpPacketEncodingBuffer"); - return false; + return PacketDispatchResult::Failure; } uint8_t* bufferPointer = buffer.GetBuffer(); @@ -141,17 +141,17 @@ namespace AzNetworking if (!header.SerializePacketFlags(networkSerializer)) { AZLOG(NET_FragmentQueue, "Reconstructed fragmented packet failed packet flags serialization"); - return false; + return PacketDispatchResult::Failure; } if (!networkISerializer.Serialize(header, "Header")) { AZLOG(NET_FragmentQueue, "Reconstructed fragmented packet failed header serialization"); - return false; + return PacketDispatchResult::Failure; } } connection->GetPacketTracker().ProcessReceived(connection, header); - bool handledPacket = false; + PacketDispatchResult handledPacket; if (header.GetPacketType() < aznumeric_cast(CorePackets::PacketType::MAX)) { handledPacket = connection->HandleCorePacket(connectionListener, header, networkSerializer); diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.h index 38c4df4f0e..15d4cfa10c 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.h @@ -9,6 +9,7 @@ #pragma once #include +#include #include #include #include @@ -44,8 +45,8 @@ namespace AzNetworking //! @param connectionListener the connection listener for delivery of completed packets //! @param header the chunk packet header //! @param serializer the serializer containing the chunk body - //! @return boolean true if the chunk was processed, false if an error was encountered - bool ProcessReceivedChunk(UdpConnection* connection, IConnectionListener& connectionListener, UdpPacketHeader& header, ISerializer& serializer); + //! @return PacketDispatchResult result of processing the chunk + PacketDispatchResult ProcessReceivedChunk(UdpConnection* connection, IConnectionListener& connectionListener, UdpPacketHeader& header, ISerializer& serializer); private: diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.cpp index d50b20831f..bf01ece458 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.cpp @@ -277,7 +277,7 @@ namespace AzNetworking timeoutItem->UpdateTimeoutTime(startTimeMs); - bool handledPacket = false; + PacketDispatchResult handledPacket = PacketDispatchResult::Failure; if (header.GetPacketType() < aznumeric_cast(CorePackets::PacketType::MAX)) { handledPacket = connection->HandleCorePacket(m_connectionListener, header, packetSerializer); @@ -287,7 +287,7 @@ namespace AzNetworking handledPacket = m_connectionListener.OnPacketReceived(connection, header, packetSerializer); } - if (handledPacket) + if (handledPacket == PacketDispatchResult::Success) { connection->UpdateHeartbeat(currentTimeMs); if (connection->GetConnectionState() == ConnectionState::Connecting && !connection->GetDtlsEndpoint().IsConnecting()) @@ -299,10 +299,16 @@ namespace AzNetworking else if (m_socket->IsEncrypted() && connection->GetDtlsEndpoint().IsConnecting() && !IsHandshakePacket(connection->GetDtlsEndpoint(), header.GetPacketType())) { - // It's possible for one side to finish its half of the handshake and start sending encrypted data + // It's possible for one side to finish its half of the encryption handshake and start sending encrypted data + // This will appear as a SerializationError due to the incomplete encryption handshake // If it's not an expected unencrypted type then skip it for now continue; } + else if (handledPacket == PacketDispatchResult::Skipped) + { + // If the result is marked as skipped then do so (i.e. if a handshake is not yet complete) + continue; + } else if (connection->GetConnectionState() != ConnectionState::Disconnecting) { connection->Disconnect(DisconnectReason::StreamError, TerminationEndpoint::Local); diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.cpp index 997fc323a9..44f6562c84 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.cpp @@ -160,7 +160,6 @@ namespace AzNetworking const AZ::TimeMs jitterMs = aznumeric_cast(m_random.GetRandom()) % (connectionQuality.m_varianceMs > AZ::TimeMs{ 0 } ? connectionQuality.m_varianceMs : AZ::TimeMs{ 1 }); - const AZ::TimeMs currTimeMs = AZ::GetElapsedTimeMs(); const AZ::TimeMs deferTimeMs = (connectionQuality.m_latencyMs) + jitterMs; DeferredData deferred = DeferredData(address, data, size, encrypt, dtlsEndpoint); diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/EncryptionCommon.cpp b/Code/Framework/AzNetworking/AzNetworking/Utilities/EncryptionCommon.cpp index 216342a6c5..3fdfa042a5 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/EncryptionCommon.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/EncryptionCommon.cpp @@ -25,7 +25,7 @@ #if defined(OPENSSL_THREADS) // thread support enabled -#else +#elif AZ_TRAIT_USE_OPENSSL # error OpenSSL threading support is not enabled #endif @@ -473,7 +473,7 @@ namespace AzNetworking { const AZ::CVarFixedString contextPassword = (trustZone == TrustZone::ExternalClientToServer) ? net_SslExternalContextPassword : net_SslInternalContextPassword; - SSL_CTX_set_default_passwd_cb(context, NULL); + SSL_CTX_set_default_passwd_cb(context, nullptr); SSL_CTX_set_default_passwd_cb_userdata(context, (void*)contextPassword.c_str()); if (SSL_CTX_use_PrivateKey_file(context, privateKeyPath.c_str(), SSL_FILETYPE_PEM) != OpenSslResultSuccess) diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/Endian.h b/Code/Framework/AzNetworking/AzNetworking/Utilities/Endian.h index 08ca785f72..74bcd53877 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/Endian.h +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/Endian.h @@ -14,14 +14,14 @@ #include #if AZ_TRAIT_NEEDS_HTONLL -static const uint64_t htonll(uint64_t value) +inline const uint64_t htonll(uint64_t value) { const uint32_t hiValue = htonl(static_cast(value >> 32)); const uint32_t loValue = htonl(static_cast(value & 0x00000000FFFFFFFF)); return static_cast(hiValue) << 32 | static_cast(loValue); } -static const uint64_t ntohll(uint64_t value) +inline const uint64_t ntohll(uint64_t value) { return htonll(value); } diff --git a/Code/Framework/AzNetworking/Tests/TcpTransport/TcpTransportTests.cpp b/Code/Framework/AzNetworking/Tests/TcpTransport/TcpTransportTests.cpp index ff2360b674..9dc7ae0ccf 100644 --- a/Code/Framework/AzNetworking/Tests/TcpTransport/TcpTransportTests.cpp +++ b/Code/Framework/AzNetworking/Tests/TcpTransport/TcpTransportTests.cpp @@ -23,29 +23,29 @@ namespace UnitTest : public IConnectionListener { public: - ConnectResult ValidateConnect([[maybe_unused]] const IpAddress& remoteAddress, [[maybe_unused]] const IPacketHeader& packetHeader, [[maybe_unused]] ISerializer& serializer) + ConnectResult ValidateConnect([[maybe_unused]] const IpAddress& remoteAddress, [[maybe_unused]] const IPacketHeader& packetHeader, [[maybe_unused]] ISerializer& serializer) override { return ConnectResult::Accepted; } - void OnConnect([[maybe_unused]] IConnection* connection) + void OnConnect([[maybe_unused]] IConnection* connection) override { ; } - bool OnPacketReceived([[maybe_unused]] IConnection* connection, const IPacketHeader& packetHeader, [[maybe_unused]] ISerializer& serializer) + PacketDispatchResult OnPacketReceived([[maybe_unused]] IConnection* connection, const IPacketHeader& packetHeader, [[maybe_unused]] ISerializer& serializer) { EXPECT_TRUE((packetHeader.GetPacketType() == static_cast(CorePackets::PacketType::InitiateConnectionPacket)) || (packetHeader.GetPacketType() == static_cast(CorePackets::PacketType::HeartbeatPacket))); - return false; + return PacketDispatchResult::Failure; } - void OnPacketLost([[maybe_unused]] IConnection* connection, [[maybe_unused]] PacketId packetId) + void OnPacketLost([[maybe_unused]] IConnection* connection, [[maybe_unused]] PacketId packetId) override { } - void OnDisconnect([[maybe_unused]] IConnection* connection, [[maybe_unused]] DisconnectReason reason, [[maybe_unused]] TerminationEndpoint endpoint) + void OnDisconnect([[maybe_unused]] IConnection* connection, [[maybe_unused]] DisconnectReason reason, [[maybe_unused]] TerminationEndpoint endpoint) override { } diff --git a/Code/Framework/AzNetworking/Tests/UdpTransport/UdpTransportTests.cpp b/Code/Framework/AzNetworking/Tests/UdpTransport/UdpTransportTests.cpp index ca8de30db9..02c7085023 100644 --- a/Code/Framework/AzNetworking/Tests/UdpTransport/UdpTransportTests.cpp +++ b/Code/Framework/AzNetworking/Tests/UdpTransport/UdpTransportTests.cpp @@ -26,29 +26,29 @@ namespace UnitTest : public IConnectionListener { public: - ConnectResult ValidateConnect([[maybe_unused]] const IpAddress& remoteAddress, [[maybe_unused]] const IPacketHeader& packetHeader, [[maybe_unused]] ISerializer& serializer) + ConnectResult ValidateConnect([[maybe_unused]] const IpAddress& remoteAddress, [[maybe_unused]] const IPacketHeader& packetHeader, [[maybe_unused]] ISerializer& serializer) override { return ConnectResult::Accepted; } - void OnConnect([[maybe_unused]] IConnection* connection) + void OnConnect([[maybe_unused]] IConnection* connection) override { ; } - bool OnPacketReceived([[maybe_unused]] IConnection* connection, const IPacketHeader& packetHeader, [[maybe_unused]] ISerializer& serializer) + PacketDispatchResult OnPacketReceived([[maybe_unused]] IConnection* connection, const IPacketHeader& packetHeader, [[maybe_unused]] ISerializer& serializer) { EXPECT_TRUE((packetHeader.GetPacketType() == static_cast(CorePackets::PacketType::InitiateConnectionPacket)) || (packetHeader.GetPacketType() == static_cast(CorePackets::PacketType::HeartbeatPacket))); - return false; + return PacketDispatchResult::Failure; } - void OnPacketLost([[maybe_unused]] IConnection* connection, [[maybe_unused]] PacketId packetId) + void OnPacketLost([[maybe_unused]] IConnection* connection, [[maybe_unused]] PacketId packetId) override { } - void OnDisconnect([[maybe_unused]] IConnection* connection, [[maybe_unused]] DisconnectReason reason, [[maybe_unused]] TerminationEndpoint endpoint) + void OnDisconnect([[maybe_unused]] IConnection* connection, [[maybe_unused]] DisconnectReason reason, [[maybe_unused]] TerminationEndpoint endpoint) override { } diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBarButton.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBarButton.cpp index 113516c350..e48121c118 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBarButton.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBarButton.cpp @@ -141,7 +141,6 @@ namespace AzQtComponents } QRect buttonRect = style->subControlRect(QStyle::CC_ToolButton, option, QStyle::SC_ToolButton, widget); - QRect menuRect = style->subControlRect(QStyle::CC_ToolButton, option, QStyle::SC_ToolButtonMenu, widget); painter->save(); diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabBar.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabBar.cpp index 2574e1b05a..cd6af7391c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabBar.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabBar.cpp @@ -31,8 +31,6 @@ static const int g_closeButtonOffset = g_closeButtonWidth + AzQtComponents::Dock static const QColor g_tabIndicatorUnderlayColor(Qt::black); // Constant for the opacity of our tab indicator underlay static const qreal g_tabIndicatorUnderlayOpacity = 0.75; -// Constant for the duration of our tab animations (in milliseconds) -static const int g_tabAnimationDurationMS = 250; namespace AzQtComponents @@ -149,7 +147,7 @@ namespace AzQtComponents TabBar::tabLayoutChange(); // Only the active tab's close button should be shown - const ButtonPosition closeSide = (ButtonPosition)style()->styleHint(QStyle::SH_TabBar_CloseButtonPosition, 0, this); + const ButtonPosition closeSide = (ButtonPosition)style()->styleHint(QStyle::SH_TabBar_CloseButtonPosition, nullptr, this); const int numTabs = count(); const int activeTabIndex = currentIndex(); for (int i = 0; i < numTabs; ++i) @@ -192,7 +190,7 @@ namespace AzQtComponents } }); - const ButtonPosition closeSide = (ButtonPosition) style()->styleHint(QStyle::SH_TabBar_CloseButtonPosition, 0, this); + const ButtonPosition closeSide = (ButtonPosition) style()->styleHint(QStyle::SH_TabBar_CloseButtonPosition, nullptr, this); setTabButton(index, closeSide, closeButton); } diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.cpp index b924eb9776..7fb9942032 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.cpp @@ -852,7 +852,7 @@ namespace AzQtComponents { FilterCriteriaButton* button = createCriteriaButton(filter, index); connect(button, &FilterCriteriaButton::RequestClose, this, [this, index]() { SetFilterStateByIndex(index, false); }); - connect(button, &FilterCriteriaButton::ExtraButtonClicked, this, [this, index](FilterCriteriaButton::ExtraButtonType type) + connect(button, &FilterCriteriaButton::ExtraButtonClicked, this, [](FilterCriteriaButton::ExtraButtonType type) { switch (type) { diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/FlowLayout.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/FlowLayout.cpp index c78314b8d7..0478779561 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/FlowLayout.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/FlowLayout.cpp @@ -112,7 +112,7 @@ QLayoutItem* FlowLayout::takeAt(int index) } else { - return 0; + return nullptr; } } @@ -207,7 +207,7 @@ int FlowLayout::smartSpacing(QStyle::PixelMetric pm) const else if (parent->isWidgetType()) { QWidget* pw = static_cast(parent); - return pw->style()->pixelMetric(pm, 0, pw); + return pw->style()->pixelMetric(pm, nullptr, pw); } else { diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledSpinBox.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledSpinBox.cpp index 9bf77f0f9b..690d275646 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledSpinBox.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledSpinBox.cpp @@ -75,11 +75,11 @@ namespace AzQtComponents connect(slider, &QSlider::sliderReleased, this, [this] { m_dragging = false; }); } } - ~ClickEventFilterPrivate() {} + ~ClickEventFilterPrivate() override {} signals: void clickOnApplication(const QPoint& pos); protected: - bool eventFilter(QObject* obj, QEvent* event) + bool eventFilter(QObject* obj, QEvent* event) override { if (event->type() == QEvent::MouseButtonRelease && !m_dragging) { diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.cpp index b4fd74dd25..f72f89ca79 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.cpp @@ -25,11 +25,6 @@ namespace AzQtComponents { - namespace CardConstants - { - static const char* kPropertySelected = "selected"; - } - static QPixmap ApplyAlphaToPixmap(const QPixmap& pixmap, float alpha) { QImage image = pixmap.toImage().convertToFormat(QImage::Format_ARGB32); diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCardCollection.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCardCollection.cpp index 40b95af321..fea843a565 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCardCollection.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCardCollection.cpp @@ -208,7 +208,7 @@ namespace AzQtComponents QString PaletteCardCollection::uniquePaletteName(QSharedPointer card, const QString& name) const { - const auto paletteNameExists = [this, card](const QString& name) + const auto paletteNameExists = [this](const QString& name) { auto it = std::find_if(m_paletteCards.begin(), m_paletteCards.end(), [&name](QSharedPointer card) diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Eyedropper.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Eyedropper.h index 68627f534a..741a22e47e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Eyedropper.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Eyedropper.h @@ -72,7 +72,7 @@ namespace AzQtComponents void release(bool selected); - QToolButton* m_button; + [[maybe_unused]] QToolButton* m_button; int m_contextSize; int m_sampleSize; diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/FileDialog.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/FileDialog.cpp new file mode 100644 index 0000000000..d2d773ff93 --- /dev/null +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/FileDialog.cpp @@ -0,0 +1,54 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include + +#include +#include + +namespace AzQtComponents +{ + QString FileDialog::GetSaveFileName(QWidget* parent, const QString& caption, const QString& dir, + const QString& filter, QString* selectedFilter, QFileDialog::Options options) + { + bool shouldPromptAgain = false; + QString filePath; + + do + { + // Trigger Qt's save filename dialog + // If filePath isn't empty, it means we are prompting again because the filename was invalid, + // so pass it instead of the directory so the filename is pre-filled in for the user + filePath = QFileDialog::getSaveFileName(parent, caption, (filePath.isEmpty()) ? dir : filePath, filter, selectedFilter, options); + + if (!filePath.isEmpty()) + { + QFileInfo fileInfo(filePath); + QString fileName = fileInfo.fileName(); + + // Check if the filename has any invalid characters + QRegExp validFileNameRegex("^[a-zA-Z0-9_\\-./]*$"); + shouldPromptAgain = !validFileNameRegex.exactMatch(fileName); + + // If the filename had invalid characters, then show a warning message and then we will re-prompt the save filename dialog + if (shouldPromptAgain) + { + QMessageBox::warning(parent, QObject::tr("Invalid filename"), + QObject::tr("O3DE assets are restricted to alphanumeric characters, hyphens (-), underscores (_), and dots (.)\n\n%1").arg(fileName)); + } + } + else + { + // If the filePath is empty, then the user cancelled the dialog so we don't need to prompt again + shouldPromptAgain = false; + } + } while (shouldPromptAgain); + + return filePath; + } +} // namespace AzQtComponents diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/FileDialog.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/FileDialog.h new file mode 100644 index 0000000000..6b63404949 --- /dev/null +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/FileDialog.h @@ -0,0 +1,29 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include + +#if !defined(Q_MOC_RUN) +#include +#endif + +namespace AzQtComponents +{ + class AZ_QT_COMPONENTS_API FileDialog + { + public: + //! Helper method that extends QFileDialog::getSaveFileName to prevent the user from + //! saving a filename with invalid characters (e.g. AP doesn't allow @ characters because they are used for aliases) + static QString GetSaveFileName(QWidget* parent = nullptr, const QString& caption = QString(), + const QString& dir = QString(), const QString& filter = QString(), + QString* selectedFilter = nullptr, QFileDialog::Options options = QFileDialog::Options()); + }; + +} // namespace AzQtComponents diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/GradientSlider.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/GradientSlider.cpp index a1ebd6c16c..1ffff57ade 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/GradientSlider.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/GradientSlider.cpp @@ -30,7 +30,7 @@ GradientSlider::GradientSlider(Qt::Orientation orientation, QWidget* parent) setMouseTracking(true); - m_colorFunction = [this](qreal value) { + m_colorFunction = [](qreal value) { return QColor::fromRgbF(value, value, value); }; @@ -115,7 +115,6 @@ void GradientSlider::mouseMoveEvent(QMouseEvent* event) int intValue = Slider::valueFromPosition(this, event->pos(), width(), height(), rect().bottom()); qreal value = (aznumeric_cast(intValue - minimum()) / aznumeric_cast(maximum() - minimum())); - QColor rgb = m_colorFunction(value); const QString toolTipText = m_toolTipFunction(value); diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.cpp index 2c3dacda7a..c3fb6e88cd 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.cpp @@ -773,7 +773,7 @@ namespace AzQtComponents if (numButtons > 0) { // and finally add the right margins QLineEdit removes to make the buttons fit (it thinks) - const int iconSize = style->pixelMetric(QStyle::PM_SmallIconSize, 0, widget); + const int iconSize = style->pixelMetric(QStyle::PM_SmallIconSize, nullptr, widget); const int delta = iconSize / 4 + iconSize + 6; r.setRight(r.right() + delta * numButtons); } diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.cpp index ac281a0e1c..b8cd37a6f7 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.cpp @@ -191,7 +191,7 @@ namespace AzQtComponents }; QMap m_widgets; - void perScrollBar(QObject* scrollArea, void (QScrollBar::*callback)(void)) + void perScrollBar(QObject* scrollArea, void (QScrollBar::*callback)()) { auto iterator = m_widgets.find(scrollArea); if (iterator != m_widgets.end()) diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.cpp index f5de3c0c30..14ac2010bc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.cpp @@ -490,11 +490,11 @@ QRect Slider::sliderGrooveRect(const Style* style, const QStyleOptionSlider* opt return {}; } -bool Slider::polish(Style* style, QWidget* widget, const Slider::Config& config) +bool Slider::polish([[maybe_unused]] Style* style, QWidget* widget, const Slider::Config& config) { Q_UNUSED(config); - auto polishSlider = [style](auto slider) + auto polishSlider = [](auto slider) { // Qt's stylesheet parsing doesn't set custom properties on things specified via // pseudo-states, such as horizontal/vertical, so we implement our own diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.cpp index 008560b59c..d52ae3685d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.cpp @@ -632,7 +632,7 @@ namespace AzQtComponents return; } - ButtonPosition closeSide = (ButtonPosition)style()->styleHint(QStyle::SH_TabBar_CloseButtonPosition, 0, this); + ButtonPosition closeSide = (ButtonPosition)style()->styleHint(QStyle::SH_TabBar_CloseButtonPosition, nullptr, this); for (int i = 0; i < count(); i++) { QWidget* tabBtn = tabButton(i, closeSide); diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/WindowDecorationWrapper.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/WindowDecorationWrapper.cpp index 5561ec0c0f..804ea841dd 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/WindowDecorationWrapper.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/WindowDecorationWrapper.cpp @@ -65,7 +65,6 @@ namespace AzQtComponents return false; } - const quint16 currentMajorVersion = 2; quint16 majorVersion = 0; quint16 minorVersion = 0; diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SpinBoxPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SpinBoxPage.cpp index 0ee5d90d38..1ee8daf786 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SpinBoxPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SpinBoxPage.cpp @@ -146,7 +146,7 @@ AzQtComponents::SpinBox::setHasError(doubleSpinBox, true); { QAction* action = new QAction("Up", this); action->setShortcut(QKeySequence(Qt::Key_Up)); - connect(action, &QAction::triggered, [this]() + connect(action, &QAction::triggered, []() { qDebug() << "Up pressed"; }); @@ -155,7 +155,7 @@ AzQtComponents::SpinBox::setHasError(doubleSpinBox, true); { QAction* action = new QAction("Down", this); action->setShortcut(QKeySequence(Qt::Key_Down)); - connect(action, &QAction::triggered, [this]() + connect(action, &QAction::triggered, []() { qDebug() << "Down pressed"; }); @@ -171,7 +171,7 @@ template void SpinBoxPage::track(SpinBoxType* spinBox) { // connect to changes in the spinboxes and listen for the undo state - QObject::connect(spinBox, &SpinBoxType::valueChangeBegan, this, [this, spinBox]() { + QObject::connect(spinBox, &SpinBoxType::valueChangeBegan, this, [spinBox]() { ValueType oldValue = spinBox->value(); spinBox->setProperty("OldValue", oldValue); }); diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TabWidgetPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TabWidgetPage.cpp index 9059e910a3..6e553e7436 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TabWidgetPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TabWidgetPage.cpp @@ -36,17 +36,17 @@ TabWidgetPage::TabWidgetPage(QWidget* parent) menu->addAction("Action 4 (No-op)"); actionMenu->setMenu(menu); - connect(action1, &QAction::triggered, this, [this]() { + connect(action1, &QAction::triggered, this, []() { QMessageBox messageBox({}, "Action 1 triggered", "Action 1 has been triggered", QMessageBox::Ok); messageBox.exec(); }); - connect(action2, &QAction::triggered, this, [this]() { + connect(action2, &QAction::triggered, this, []() { QMessageBox messageBox({}, "Action 2 triggered", "Action 2 has been triggered", QMessageBox::Ok); messageBox.exec(); }); - connect(action3, &QAction::triggered, this, [this]() { + connect(action3, &QAction::triggered, this, []() { QMessageBox messageBox({}, "Action 3 triggered", "Action 3 has been triggered", QMessageBox::Ok); messageBox.exec(); }); diff --git a/Code/Framework/AzQtComponents/AzQtComponents/PropertyEditorStandalone/main.cpp b/Code/Framework/AzQtComponents/AzQtComponents/PropertyEditorStandalone/main.cpp index ffca99f1d6..27d12438eb 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/PropertyEditorStandalone/main.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/PropertyEditorStandalone/main.cpp @@ -135,7 +135,7 @@ public: if (auto editContext = serializeContext->GetEditContext()) { editContext->Class("SimpleKeyContainer", "") - ->DataElement(0, &SimpleKeyedContainer::m_map, "map", "") + ->DataElement(nullptr, &SimpleKeyedContainer::m_map, "map", "") ->ElementAttribute(AZ::Edit::Attributes::ShowAsKeyValuePairs, true); } } diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Tests/AzQtComponentTests.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Tests/AzQtComponentTests.cpp index a717ad337e..3c911c8acc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Tests/AzQtComponentTests.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Tests/AzQtComponentTests.cpp @@ -20,7 +20,7 @@ public: AzQtComponents::registerMetaTypes(); } - virtual ~AzQtComponentsTestEnvironment() {} + ~AzQtComponentsTestEnvironment() override {} protected: diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber.h index b5bbdb6ade..a32aeda3fc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber.h @@ -31,7 +31,7 @@ namespace AzQtComponents private: QSize m_size; - Eyedropper* m_owner; + [[maybe_unused]] Eyedropper* m_owner; QScopedPointer m_internal; }; diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_win.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_win.cpp index 56d0663f88..ba23bea557 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_win.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_win.cpp @@ -217,7 +217,7 @@ namespace AzQtComponents } ScreenGrabber::ScreenGrabber(const QSize size, Eyedropper* parent /* = nullptr */) - : QObject(static_cast(parent)) + : QObject(parent) , m_size(size) , m_owner(parent) { diff --git a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_files.cmake b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_files.cmake index af1a3a9f56..c214b81405 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_files.cmake +++ b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_files.cmake @@ -146,6 +146,8 @@ set(FILES Components/Widgets/Eyedropper.h Components/Widgets/Eyedropper.cpp Components/Widgets/EyedropperConfig.ini + Components/Widgets/FileDialog.cpp + Components/Widgets/FileDialog.h Components/Widgets/FilteredSearchWidget.qss Components/Widgets/FilteredSearchWidgetConfig.ini Components/Widgets/GradientSlider.cpp diff --git a/Code/Framework/AzTest/AzTest/Utils.cpp b/Code/Framework/AzTest/AzTest/Utils.cpp index 0fe701ca5a..d06024c72f 100644 --- a/Code/Framework/AzTest/AzTest/Utils.cpp +++ b/Code/Framework/AzTest/AzTest/Utils.cpp @@ -121,12 +121,12 @@ namespace AZ char** SplitCommandLine(int& size, char* const cmdLine) { std::vector tokens; - char* next_token = nullptr; + [[maybe_unused]] char* next_token = nullptr; char* tok = azstrtok(cmdLine, 0, " ", &next_token); - while (tok != NULL) + while (tok != nullptr) { tokens.push_back(tok); - tok = azstrtok(NULL, 0, " ", &next_token); + tok = azstrtok(nullptr, 0, " ", &next_token); } size = (int)tokens.size(); char** token_array = new char*[size]; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorAssetSystemAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorAssetSystemAPI.h index b505760c0f..eab2d5e1a0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorAssetSystemAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorAssetSystemAPI.h @@ -312,8 +312,7 @@ namespace AzToolsFramework #elif defined(AZ_PLATFORM_WINDOWS) return "pc"; #elif defined(AZ_PLATFORM_LINUX) - // set this to pc because that's what bootstrap.cfg currently defines the platform to "pc", even on Linux - return "pc"; + return "linux"; #else #error Unimplemented Host Asset Platform #endif diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/ToolsApplicationAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/ToolsApplicationAPI.h index 9e5db5b5b7..d4707a3e8c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/ToolsApplicationAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/ToolsApplicationAPI.h @@ -5,14 +5,10 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ - -#ifndef AZTOOLSFRAMEWORK_TOOLSAPPLICATIONAPI_H -#define AZTOOLSFRAMEWORK_TOOLSAPPLICATIONAPI_H - -#include - #pragma once +#include +#include #include #include #include @@ -1089,4 +1085,5 @@ namespace AzToolsFramework } } // namespace AzToolsFramework -#endif // AZTOOLSFRAMEWORK_TOOLSAPPLICATIONAPI_H +AZ_DECLARE_BUDGET(AzToolsFramework); + diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp index 3e895465e5..6de529e456 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp @@ -70,7 +70,7 @@ #include AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 4251: 'QFileInfo::d_ptr': class 'QSharedDataPointer' needs to have dll-interface to be used by clients of class 'QFileInfo' #include -AZ_POP_DISABLE_OVERRIDE_WARNING +AZ_POP_DISABLE_WARNING #include #include #include @@ -87,11 +87,6 @@ namespace AzToolsFramework { namespace Internal { - static const char* s_engineConfigFileName = "engine.json"; - static const char* s_engineConfigEngineVersionKey = "O3DEVersion"; - - static const char* s_startupLogWindow = "Startup"; - template void DeleteEntities(const IdContainerType& entityIds) { @@ -144,7 +139,7 @@ namespace AzToolsFramework AZ_PROFILE_SCOPE(AzToolsFramework, "Internal::DeleteEntities:UndoCaptureAndPurgeEntities"); for (const auto& entityId : entityIds) { - AZ::Entity* entity = NULL; + AZ::Entity* entity = nullptr; EBUS_EVENT_RESULT(entity, AZ::ComponentApplicationBus, FindEntity, entityId); if (entity) @@ -1242,7 +1237,7 @@ namespace AzToolsFramework void ToolsApplication::RequestEditForFile(const char* assetPath, RequestEditResultCallback resultCallback) { - AZ_Error("RequestEdit", resultCallback != 0, "User result callback is required."); + AZ_Error("RequestEdit", resultCallback != nullptr, "User result callback is required."); AZ::IO::FileIOBase* fileIO = AZ::IO::FileIOBase::GetInstance(); if (fileIO && !fileIO->IsReadOnly(assetPath)) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveComponent.cpp index 2a09ba0471..5004108132 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveComponent.cpp @@ -236,7 +236,7 @@ namespace AzToolsFramework { AZStd::string commandLineArgs = Platform::GetListFilesInArchiveCommand(archivePath); - auto parseOutput = [respCallback, taskHandle, &fileEntries](bool exitCode, AZStd::string consoleOutput) + auto parseOutput = [respCallback, &fileEntries](bool exitCode, AZStd::string consoleOutput) { Platform::ParseConsoleOutputFromListFilesInArchive(consoleOutput, fileEntries); AZ::TickBus::QueueFunction(respCallback, exitCode, AZStd::move(consoleOutput)); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetUtils.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetUtils.cpp index 92c8d37540..6e55d9f97c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetUtils.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetUtils.cpp @@ -97,7 +97,7 @@ namespace AzToolsFramework::AssetUtils struct EnabledPlatformsVisitor : AZ::SettingsRegistryInterface::Visitor { - void Visit(AZStd::string_view path, AZStd::string_view valueName, AZ::SettingsRegistryInterface::Type, AZStd::string_view value); + void Visit(AZStd::string_view path, AZStd::string_view valueName, AZ::SettingsRegistryInterface::Type, AZStd::string_view value) override; AZStd::vector m_enabledPlatforms; }; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.cpp index c729ac4d6f..acf935e6dc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.cpp @@ -31,10 +31,10 @@ namespace AzToolsFramework AssetBrowserFilterModel::AssetBrowserFilterModel(QObject* parent) : QSortFilterProxyModel(parent) { - m_showColumn.insert(aznumeric_cast(AssetBrowserEntry::Column::DisplayName)); + m_shownColumns.insert(aznumeric_cast(AssetBrowserEntry::Column::DisplayName)); if (ed_useNewAssetBrowserTableView) { - m_showColumn.insert(aznumeric_cast(AssetBrowserEntry::Column::Path)); + m_shownColumns.insert(aznumeric_cast(AssetBrowserEntry::Column::Path)); } m_collator.setNumericMode(true); AssetBrowserComponentNotificationBus::Handler::BusConnect(); @@ -96,7 +96,7 @@ namespace AzToolsFramework bool AssetBrowserFilterModel::filterAcceptsColumn(int source_column, const QModelIndex&) const { //if the column is in the set we want to show it - return m_showColumn.find(source_column) != m_showColumn.end(); + return m_shownColumns.find(source_column) != m_shownColumns.end(); } bool AssetBrowserFilterModel::lessThan(const QModelIndex& source_left, const QModelIndex& source_right) const @@ -134,7 +134,7 @@ namespace AzToolsFramework { const auto& subFilters = compFilter->GetSubFilters(); const auto& compFilterIter = AZStd::find_if(subFilters.cbegin(), subFilters.cend(), - [subFilters](FilterConstType filter) -> bool + [](FilterConstType filter) -> bool { const auto assetTypeFilter = qobject_cast>(filter); return !assetTypeFilter.isNull(); @@ -146,7 +146,7 @@ namespace AzToolsFramework } const auto& compositeStringFilterIter = AZStd::find_if(subFilters.cbegin(), subFilters.cend(), - [subFilters](FilterConstType filter) -> bool + [](FilterConstType filter) -> bool { // The real StringFilter is really a CompositeFilter with just one StringFilter in its subfilter list // To know if it is actually a StringFilter we have to get that subfilter and check if it is a Stringfilter. diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.h index 2b91158f0e..5d3ad0e1b0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.h @@ -27,6 +27,8 @@ namespace AzToolsFramework { namespace AssetBrowser { + using ShownColumnsSet = AZStd::fixed_unordered_set(AssetBrowserEntry::Column::Count)>; + class AssetBrowserFilterModel : public QSortFilterProxyModel , public AssetBrowserComponentNotificationBus::Handler @@ -61,11 +63,11 @@ namespace AzToolsFramework void filterUpdatedSlot(); protected: - //set for filtering columns - //if the column is in the set the column is not filtered and is shown - AZStd::fixed_unordered_set(AssetBrowserEntry::Column::Count)> m_showColumn; + // Set for filtering columns + // If the column is in the set the column is not filtered and is shown + ShownColumnsSet m_shownColumns; bool m_alreadyRecomputingFilters = false; - //asset source name match filter + //Asset source name match filter FilterConstType m_filter; AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 4251: class '...' needs to have dll-interface to be used by clients of class '...' QWeakPointer m_stringFilter; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserTableModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserTableModel.cpp index efa47e600d..fdbd4287ce 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserTableModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserTableModel.cpp @@ -16,7 +16,6 @@ namespace AzToolsFramework AssetBrowserTableModel::AssetBrowserTableModel(QObject* parent /* = nullptr */) : QSortFilterProxyModel(parent) { - setDynamicSortFilter(false); } void AssetBrowserTableModel::setSourceModel(QAbstractItemModel* sourceModel) @@ -25,19 +24,47 @@ namespace AzToolsFramework AZ_Assert( m_filterModel, "Error in AssetBrowserTableModel initialization, class expects source model to be an AssetBrowserFilterModel."); + connect(sourceModel, &QAbstractItemModel::rowsInserted, this, &AssetBrowserTableModel::UpdateTableModelMaps); + connect(sourceModel, &QAbstractItemModel::rowsRemoved, this, &AssetBrowserTableModel::UpdateTableModelMaps); + connect(sourceModel, &QAbstractItemModel::modelAboutToBeReset, this, &AssetBrowserTableModel::beginResetModel); + connect( + sourceModel, &QAbstractItemModel::modelReset, this, + [this]() + { + { + QSignalBlocker sb(this); + UpdateTableModelMaps(); + } + endResetModel(); + }); + connect(sourceModel, &QAbstractItemModel::layoutChanged, this, &AssetBrowserTableModel::UpdateTableModelMaps); + connect(sourceModel, &QAbstractItemModel::dataChanged, this, &AssetBrowserTableModel::SourceDataChanged); + + QSortFilterProxyModel::setSourceModel(sourceModel); } QModelIndex AssetBrowserTableModel::mapToSource(const QModelIndex& proxyIndex) const { - Q_ASSERT(!proxyIndex.isValid() || proxyIndex.model() == this); - if (!proxyIndex.isValid()) + Q_ASSERT(!proxyIndex.isValid() || proxyIndex.model() != this); + if (!proxyIndex.isValid() || !m_indexMap.contains(proxyIndex.row())) { return QModelIndex(); } return m_indexMap[proxyIndex.row()]; } + QModelIndex AssetBrowserTableModel::mapFromSource(const QModelIndex& sourceIndex) const + { + Q_ASSERT(!sourceIndex.isValid() || sourceIndex.model() == sourceModel()); + if (!sourceIndex.isValid() || !m_rowMap.contains(sourceIndex)) + { + return QModelIndex(); + } + + return createIndex(m_rowMap[sourceIndex], sourceIndex.column()); + } + QVariant AssetBrowserTableModel::headerData(int section, Qt::Orientation orientation, int role) const { if (role == Qt::DisplayRole && orientation == Qt::Horizontal) @@ -49,20 +76,8 @@ namespace AzToolsFramework QVariant AssetBrowserTableModel::data(const QModelIndex& index, int role) const { - auto sourceIndex = mapToSource(index); - if (!sourceIndex.isValid()) - { - return QVariant(); - } - - AssetBrowserEntry* entry = GetAssetEntry(sourceIndex); - if (entry == nullptr) - { - AZ_Assert(false, "AssetBrowserTableModel - QModelIndex does not reference an AssetEntry. Source model is not valid."); - return QVariant(); - } - - return sourceIndex.data(role); + Q_ASSERT(index.isValid() && index.model() == this); + return sourceModel()->data(mapToSource(index), role); } QModelIndex AssetBrowserTableModel::parent([[maybe_unused]] const QModelIndex& child) const @@ -76,14 +91,28 @@ namespace AzToolsFramework return QModelIndex(); } + void AssetBrowserTableModel::SourceDataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight) + { + for (int row = topLeft.row(); row <= bottomRight.row(); ++row) + { + if (!m_indexMap.contains(row)) + { + UpdateTableModelMaps(); + return; + } + } + } + QModelIndex AssetBrowserTableModel::index(int row, int column, const QModelIndex& parent) const { + Q_ASSERT(!parent.isValid()); + return parent.isValid() ? QModelIndex() : createIndex(row, column, m_indexMap[row].internalPointer()); } int AssetBrowserTableModel::rowCount(const QModelIndex& parent) const { - return !parent.isValid() ? m_indexMap.size() : 0; + return !parent.isValid() ? m_indexMap.size() : sourceModel()->rowCount(parent); } int AssetBrowserTableModel::BuildTableModelMap( @@ -102,14 +131,12 @@ namespace AzToolsFramework { QModelIndex index = model->index(currentRow, 0, parent); AssetBrowserEntry* entry = GetAssetEntry(m_filterModel->mapToSource(index)); - // We only want to see the source assets. - if (entry->GetEntryType() == AssetBrowserEntry::AssetEntryType::Source) + // We only want to see source and product assets. + if (entry->GetEntryType() == AssetBrowserEntry::AssetEntryType::Source || + entry->GetEntryType() == AssetBrowserEntry::AssetEntryType::Product) { - beginInsertRows(parent, row, row); m_indexMap[row] = index; - endInsertRows(); - - Q_EMIT dataChanged(index, index); + m_rowMap[index] = row; ++row; ++m_displayedItemsCounter; } @@ -143,12 +170,8 @@ namespace AzToolsFramework void AssetBrowserTableModel::UpdateTableModelMaps() { emit layoutAboutToBeChanged(); - if (!m_indexMap.isEmpty()) - { - beginRemoveRows(m_indexMap.first(), m_indexMap.first().row(), m_indexMap.last().row()); - m_indexMap.clear(); - endRemoveRows(); - } + m_indexMap.clear(); + m_rowMap.clear(); AzToolsFramework::EditorSettingsAPIBus::BroadcastResult( m_numberOfItemsDisplayed, &AzToolsFramework::EditorSettingsAPIBus::Handler::GetMaxNumberOfItemsShownInSearchView); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserTableModel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserTableModel.h index d80e2bd093..55dcbb1532 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserTableModel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserTableModel.h @@ -21,8 +21,7 @@ namespace AzToolsFramework class AssetBrowserFilterModel; class AssetBrowserEntry; - class AssetBrowserTableModel - : public QSortFilterProxyModel + class AssetBrowserTableModel : public QSortFilterProxyModel { Q_OBJECT @@ -30,12 +29,11 @@ namespace AzToolsFramework AZ_CLASS_ALLOCATOR(AssetBrowserTableModel, AZ::SystemAllocator, 0); explicit AssetBrowserTableModel(QObject* parent = nullptr); - void UpdateTableModelMaps(); - //////////////////////////////////////////////////////////////////// // QSortFilterProxyModel void setSourceModel(QAbstractItemModel* sourceModel) override; QModelIndex mapToSource(const QModelIndex& proxyIndex) const override; + QModelIndex mapFromSource(const QModelIndex &sourceIndex) const override; QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const override; QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; QModelIndex parent(const QModelIndex& child) const override; @@ -45,16 +43,21 @@ namespace AzToolsFramework int rowCount(const QModelIndex& parent = QModelIndex()) const override; QVariant headerData(int section, Qt::Orientation orientation, int role /* = Qt::DisplayRole */) const override; //////////////////////////////////////////////////////////////////// - private: AssetBrowserEntry* GetAssetEntry(QModelIndex index) const; int BuildTableModelMap(const QAbstractItemModel* model, const QModelIndex& parent = QModelIndex(), int row = 0); + public slots: + void UpdateTableModelMaps(); + + private slots: + void SourceDataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight); private: int m_numberOfItemsDisplayed = 50; int m_displayedItemsCounter = 0; QPointer m_filterModel; QMap m_indexMap; + QMap m_rowMap; }; } // namespace AssetBrowser } // namespace AzToolsFramework diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.cpp index 11e1ba018f..76b634b51e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.cpp @@ -9,9 +9,11 @@ #include #include +#include #include #include +#include #include #include #include @@ -26,6 +28,11 @@ AZ_PUSH_DISABLE_WARNING(4251 4244, "-Wunknown-warning-option") // disable warnin #include AZ_POP_DISABLE_WARNING +AZ_CVAR( + bool, ed_hideAssetPickerPathColumn, false, nullptr, AZ::ConsoleFunctorFlags::Null, + "Hide AssetPicker path column for a clearer view."); +AZ_CVAR_EXTERNED(bool, ed_useNewAssetBrowserTableView); + namespace AzToolsFramework { namespace AssetBrowser @@ -34,6 +41,7 @@ namespace AzToolsFramework : QDialog(parent) , m_ui(new Ui::AssetPickerDialogClass()) , m_filterModel(new AssetBrowserFilterModel(parent)) + , m_tableModel(new AssetBrowserTableModel(parent)) , m_selection(selection) , m_hasFilter(false) { @@ -97,6 +105,56 @@ namespace AzToolsFramework m_persistentState = AZ::UserSettings::CreateFind(AZ::Crc32(("AssetBrowserTreeView_Dialog_" + name).toUtf8().data()), AZ::UserSettings::CT_GLOBAL); + m_ui->m_assetBrowserTableViewWidget->setVisible(false); + if (ed_useNewAssetBrowserTableView) + { + m_ui->m_assetBrowserTreeViewWidget->setVisible(false); + m_ui->m_assetBrowserTableViewWidget->setVisible(true); + m_tableModel->setSourceModel(m_filterModel.get()); + m_ui->m_assetBrowserTableViewWidget->setModel(m_tableModel.get()); + + m_ui->m_assetBrowserTableViewWidget->SetName("AssetBrowserTableView_" + name); + m_ui->m_assetBrowserTableViewWidget->setDragEnabled(false); + m_ui->m_assetBrowserTableViewWidget->setSelectionMode( + selection.GetMultiselect() ? QAbstractItemView::SelectionMode::ExtendedSelection + : QAbstractItemView::SelectionMode::SingleSelection); + + if (ed_hideAssetPickerPathColumn) + { + m_ui->m_assetBrowserTableViewWidget->hideColumn(1); + } + + // if the current selection is invalid, disable the Ok button + m_ui->m_buttonBox->button(QDialogButtonBox::Ok)->setEnabled(EvaluateSelection()); + + connect( + m_filterModel.data(), &AssetBrowserFilterModel::filterChanged, this, + [this]() + { + m_tableModel->UpdateTableModelMaps(); + }); + + connect( + m_ui->m_assetBrowserTableViewWidget, &AssetBrowserTableView::selectionChangedSignal, this, + [this](const QItemSelection&, const QItemSelection&) + { + AssetPickerDialog::SelectionChangedSlot(); + }); + + connect(m_ui->m_assetBrowserTableViewWidget, &QAbstractItemView::doubleClicked, this, &AssetPickerDialog::DoubleClickedSlot); + + connect( + m_ui->m_assetBrowserTableViewWidget, &AssetBrowserTableView::ClearStringFilter, m_ui->m_searchWidget, + &SearchWidget::ClearStringFilter); + + connect( + m_ui->m_assetBrowserTableViewWidget, &AssetBrowserTableView::ClearTypeFilter, m_ui->m_searchWidget, + &SearchWidget::ClearTypeFilter); + + m_ui->m_assetBrowserTableViewWidget->SetName("AssetBrowserTableView_main"); + m_tableModel->UpdateTableModelMaps(); + } + QTimer::singleShot(0, this, &AssetPickerDialog::RestoreState); SelectionChangedSlot(); } @@ -134,6 +192,7 @@ namespace AzToolsFramework { m_ui->m_assetBrowserTreeViewWidget->expandAll(); }); + m_tableModel->UpdateTableModelMaps(); } if (m_hasFilter && !hasFilter) @@ -166,7 +225,8 @@ namespace AzToolsFramework bool AssetPickerDialog::EvaluateSelection() const { - auto selectedAssets = m_ui->m_assetBrowserTreeViewWidget->GetSelectedAssets(); + auto selectedAssets = m_ui->m_assetBrowserTreeViewWidget->isVisible() ? m_ui->m_assetBrowserTreeViewWidget->GetSelectedAssets() + : m_ui->m_assetBrowserTableViewWidget->GetSelectedAssets(); // exactly one item must be selected, even if multi-select option is disabled, still good practice to check if (selectedAssets.empty()) { @@ -197,7 +257,10 @@ namespace AzToolsFramework void AssetPickerDialog::UpdatePreview() const { - auto selectedAssets = m_ui->m_assetBrowserTreeViewWidget->GetSelectedAssets(); + auto selectedAssets = m_ui->m_assetBrowserTreeViewWidget->isVisible() + ? m_ui->m_assetBrowserTreeViewWidget->GetSelectedAssets() + : m_ui->m_assetBrowserTableViewWidget->GetSelectedAssets(); + ; if (selectedAssets.size() != 1) { m_ui->m_previewerFrame->Clear(); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.h index 89eca2f4e3..bab265c134 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.h @@ -33,6 +33,7 @@ namespace AzToolsFramework { class ProductAssetBrowserEntry; class AssetBrowserFilterModel; + class AssetBrowserTableModel; class AssetBrowserModel; class AssetSelectionModel; @@ -69,6 +70,7 @@ namespace AzToolsFramework QScopedPointer m_ui; AssetBrowserModel* m_assetBrowserModel = nullptr; QScopedPointer m_filterModel; + QScopedPointer m_tableModel; AssetSelectionModel& m_selection; bool m_hasFilter; AZStd::unique_ptr m_filterStateSaver; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.ui b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.ui index 3dd0c0d861..b11ffb3990 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.ui +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.ui @@ -142,6 +142,9 @@ + + + @@ -197,6 +200,11 @@
AzToolsFramework/AssetBrowser/Previewer/PreviewerFrame.h
1 + + AzToolsFramework::AssetBrowser::AssetBrowserTableView + QTableView +
AzToolsFramework/AssetBrowser/Views/AssetBrowserTableView.h
+
diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserFolderWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserFolderWidget.cpp index 7e2b0859a6..d918cad2a2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserFolderWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserFolderWidget.cpp @@ -81,7 +81,7 @@ namespace AzToolsFramework mainLayout->addWidget(m_viewStack); - connect(actionGroup, &QActionGroup::triggered, this, [this, thumbnailViewAction, listViewAction, sizeComboBox](QAction* action) { + connect(actionGroup, &QActionGroup::triggered, this, [this, thumbnailViewAction, sizeComboBox](QAction* action) { if (action == thumbnailViewAction) { m_viewStack->setCurrentWidget(m_thumbnailView); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserTableView.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserTableView.h index e5426037bf..5fbdab2ec5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserTableView.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserTableView.h @@ -53,7 +53,6 @@ namespace AzToolsFramework // AssetBrowserComponentNotificationBus void OnAssetBrowserComponentReady() override; ////////////////////////////////////////////////////////////////////////// - Q_SIGNALS: void selectionChangedSignal(const QItemSelection& selected, const QItemSelection& deselected); void ClearStringFilter(); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.cpp index 7daf573c99..2e8e4ef639 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.cpp @@ -939,6 +939,34 @@ namespace AzToolsFramework jobinfo.m_warningCount = jobDatabaseEntry.m_warningCount; jobinfo.m_errorCount = jobDatabaseEntry.m_errorCount; } + + bool GetDatabaseInfoResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::databaseInfoHandler handler); + bool GetScanFolderResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::scanFolderHandler handler); + bool GetSourceResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::sourceHandler handler); + bool GetSourceAndScanfolderResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::combinedSourceScanFolderHandler handler); + bool GetSourceDependencyResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::sourceFileDependencyHandler handler); + bool GetJobResultSimple(const char* name, SQLite::Statement* statement, AssetDatabaseConnection::jobHandler handler); + bool GetJobResult( + const char* callName, + SQLite::Statement* statement, + AssetDatabaseConnection::jobHandler handler, + AZ::Uuid builderGuid = AZ::Uuid::CreateNull(), + const char* jobKey = nullptr, + AssetSystem::JobStatus status = AssetSystem::JobStatus::Any); + bool GetProductResultSimple(const char* name, SQLite::Statement* statement, AssetDatabaseConnection::productHandler handler); + bool GetProductResult( + const char* callName, + SQLite::Statement* statement, + AssetDatabaseConnection::productHandler handler, + AZ::Uuid builderGuid = AZ::Uuid::CreateNull(), + const char* jobKey = nullptr, + AssetSystem::JobStatus status = AssetSystem::JobStatus::Any); + bool GetLegacySubIDsResult(const char* callname, SQLite::Statement* statement, AssetDatabaseConnection::legacySubIDsHandler handler); + bool GetProductDependencyResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::productDependencyHandler handler); + bool GetProductDependencyAndPathResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::productDependencyAndPathHandler handler); + bool GetMissingProductDependencyResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::missingProductDependencyHandler handler); + bool GetCombinedDependencyResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::combinedProductDependencyHandler handler); + bool GetFileResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::fileHandler handler); } ////////////////////////////////////////////////////////////////////////// diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.h index 8672ad4a15..d9c83107e3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.h @@ -65,6 +65,7 @@ namespace AzToolsFramework AddedScanTimeSecondsSinceEpochField = 29, ChangedSortFunctionFromQSortToStdStableSort = 30, RemoveOutputPrefixFromScanFolders, + AddedSourceIndexForSourceDependencyTable, //Add all new versions before this DatabaseVersionCount, LatestVersion = DatabaseVersionCount - 1 @@ -655,26 +656,6 @@ namespace AzToolsFramework // before every query, since validating it essentially must makes sure it exists. AZStd::unordered_set m_validatedTables; }; - - namespace - { - //boiler plate - bool GetDatabaseInfoResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::databaseInfoHandler handler); - bool GetScanFolderResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::scanFolderHandler handler); - bool GetSourceResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::sourceHandler handler); - bool GetSourceAndScanfolderResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::combinedSourceScanFolderHandler handler); - bool GetSourceDependencyResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::sourceFileDependencyHandler handler); - bool GetJobResultSimple(const char* name, SQLite::Statement* statement, AssetDatabaseConnection::jobHandler handler); - bool GetJobResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::jobHandler handler, AZ::Uuid builderGuid = AZ::Uuid::CreateNull(), const char* jobKey = nullptr, AssetSystem::JobStatus status = AssetSystem::JobStatus::Any); - bool GetProductResultSimple(const char* name, SQLite::Statement* statement, AssetDatabaseConnection::productHandler handler); - bool GetProductResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::productHandler handler, AZ::Uuid builderGuid = AZ::Uuid::CreateNull(), const char* jobKey = nullptr, AssetSystem::JobStatus status = AssetSystem::JobStatus::Any); - bool GetLegacySubIDsResult(const char* callname, SQLite::Statement* statement, AssetDatabaseConnection::legacySubIDsHandler handler); - bool GetProductDependencyResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::productDependencyHandler handler); - bool GetProductDependencyAndPathResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::productDependencyAndPathHandler handler); - bool GetMissingProductDependencyResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::missingProductDependencyHandler handler); - bool GetCombinedDependencyResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::combinedProductDependencyHandler handler); - bool GetFileResult(const char* callName, SQLite::Statement* statement, AssetDatabaseConnection::fileHandler handler); - } } // namespace AssetDatabase }// namespace AzToolsFramework diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.cpp index 744b87d753..77b9185e82 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.cpp @@ -37,6 +37,10 @@ AZ_POP_DISABLE_WARNING #include #include +#include + +#include + #include #include @@ -46,9 +50,6 @@ AZ_POP_DISABLE_WARNING #include #include #include -AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 'QFileInfo::d_ptr': class 'QSharedDataPointer' needs to have dll-interface to be used by clients of class 'QFileInfo' -#include -AZ_POP_DISABLE_WARNING #include namespace AzToolsFramework @@ -57,7 +58,7 @@ namespace AzToolsFramework { using AssetCheckoutCallback = AZStd::function; - void AssetCheckoutCommon(const AZ::Data::AssetId& id, AZ::Data::Asset asset, AZ::SerializeContext* serializeContext, AssetCheckoutCallback assetCheckoutAndSaveCallback) + void AssetCheckoutCommon(const AZ::Data::AssetId& id, AZ::Data::Asset asset, [[maybe_unused]] AZ::SerializeContext* serializeContext, AssetCheckoutCallback assetCheckoutAndSaveCallback) { AZStd::string assetPath; AZ::Data::AssetCatalogRequestBus::BroadcastResult(assetPath, &AZ::Data::AssetCatalogRequests::GetAssetPathById, id); @@ -74,7 +75,7 @@ namespace AzToolsFramework { using SCCommandBus = SourceControlCommandBus; SCCommandBus::Broadcast(&SCCommandBus::Events::RequestEdit, assetFullPath.c_str(), true, - [id, asset, assetFullPath, serializeContext, assetCheckoutAndSaveCallback](bool /*success*/, const SourceControlFileInfo& info) + [id, asset, assetFullPath, assetCheckoutAndSaveCallback](bool /*success*/, const SourceControlFileInfo& info) { if (!info.IsReadOnly()) { @@ -360,7 +361,7 @@ namespace AzToolsFramework if (savedCallback) { auto conn = AZStd::make_shared(); - *conn = connect(this, &AssetEditorWidget::OnAssetSavedSignal, this, [this, conn, savedCallback]() + *conn = connect(this, &AssetEditorWidget::OnAssetSavedSignal, this, [conn, savedCallback]() { disconnect(*conn); savedCallback(); @@ -414,7 +415,7 @@ namespace AzToolsFramework filter.append(")"); } - const QString saveAs = QFileDialog::getSaveFileName(nullptr, tr("Save As..."), m_userSettings->m_lastSavePath.c_str(), filter); + const QString saveAs = AzQtComponents::FileDialog::GetSaveFileName(AzToolsFramework::GetActiveWindow(), tr("Save As..."), m_userSettings->m_lastSavePath.c_str(), filter); return SaveImpl(asset, saveAs); } @@ -720,7 +721,7 @@ namespace AzToolsFramework AZ::Data::AssetInfo assetInfo; AZ::Data::AssetCatalogRequestBus::BroadcastResult(assetInfo, &AZ::Data::AssetCatalogRequests::GetAssetInfoById, assetId); if (assetInfo.m_assetType == m_inMemoryAsset.GetType() - && strstr(m_expectedAddedAssetPath.c_str(), assetInfo.m_relativePath.c_str()) != 0) + && strstr(m_expectedAddedAssetPath.c_str(), assetInfo.m_relativePath.c_str()) != nullptr) { m_expectedAddedAssetPath.clear(); m_recentlyAddedAssetPath = assetInfo.m_relativePath; @@ -902,7 +903,7 @@ namespace AzToolsFramework statusString = QString("%1"); } - statusString = statusString.arg(m_currentAsset).arg(m_queuedAssetStatus); + statusString = statusString.arg(m_currentAsset); if (!m_queuedAssetStatus.isEmpty()) { @@ -920,7 +921,7 @@ namespace AzToolsFramework void AssetEditorWidget::SetupHeader() { - QString nameString = QString("%1").arg(m_currentAsset).arg(m_queuedAssetStatus); + QString nameString = QString("%1").arg(m_currentAsset); m_header->setName(nameString); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFrameworkModule.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFrameworkModule.cpp index 2d687db00f..97f52e253b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFrameworkModule.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFrameworkModule.cpp @@ -52,6 +52,8 @@ #include #include +AZ_DEFINE_BUDGET(AzToolsFramework); + namespace AzToolsFramework { AzToolsFrameworkModule::AzToolsFrameworkModule() diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.cpp index d4c4fa1e65..d05a2dcc4b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.cpp @@ -103,7 +103,7 @@ namespace AzToolsFramework newData.clear(); AZ::IO::ByteContainerStream ms(&newData); - AZ::SerializeContext* sc = NULL; + AZ::SerializeContext* sc = nullptr; EBUS_EVENT_RESULT(sc, AZ::ComponentApplicationBus, GetSerializeContext); AZ_Assert(sc, "Serialization context not found!"); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.cpp index 33b2a14b89..6854663db7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.cpp @@ -34,7 +34,7 @@ namespace AzToolsFramework void SelectionCommand::Post() { - UndoSystem::UndoStack* undoStack = NULL; + UndoSystem::UndoStack* undoStack = nullptr; EBUS_EVENT_RESULT(undoStack, AzToolsFramework::ToolsApplicationRequests::Bus, GetUndoStack); if (undoStack) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIComponent.cpp index 68ea0119d9..30a7c603bd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIComponent.cpp @@ -262,7 +262,7 @@ namespace AzToolsFramework m_serializeContext->EnumerateDerived( [&typeNameList, entityType](const AZ::SerializeContext::ClassData* componentClass, const AZ::Uuid& knownType) -> bool { - AZ_UNUSED(knownType) + AZ_UNUSED(knownType); if (!componentClass->m_editData) { diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityHelpers.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityHelpers.cpp index 0b0358d613..6ed133c830 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityHelpers.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityHelpers.cpp @@ -1324,7 +1324,7 @@ namespace AzToolsFramework AZ::SliceComponent::EntityAncestorList::const_iterator ancestorIter = ancestors.begin(); // Skip the first, that would be a regular slice root and not a subslice root, which was already checked. ++ancestorIter; - for (ancestorIter; ancestorIter != ancestors.end(); ++ancestorIter) + for (; ancestorIter != ancestors.end(); ++ancestorIter) { const AZ::SliceComponent::Ancestor& ancestor = *ancestorIter; if (!ancestor.m_entity || !SliceUtilities::IsRootEntity(*ancestor.m_entity)) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipService.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipService.cpp index 7ac3b7be8f..9e7e48cbaa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipService.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipService.cpp @@ -98,7 +98,6 @@ namespace AzToolsFramework void SliceEditorEntityOwnershipService::OnSlicePreInstantiate(const AZ::Data::AssetId& sliceAssetId, const AZ::SliceComponent::SliceInstanceAddress& sliceAddress) { AZ_PROFILE_FUNCTION(AzToolsFramework); - const AzFramework::SliceInstantiationTicket ticket = *AzFramework::SliceInstantiationResultBus::GetCurrentBusId(); // Start an undo that will wrap the entire slice instantiation event (unable to do this at a higher level since this is queued up by AzFramework and there's no undo concept at that level) ToolsApplicationRequests::Bus::Broadcast(&ToolsApplicationRequests::Bus::Events::BeginUndoBatch, "Slice Instantiation"); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Input/QtEventToAzInputManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Input/QtEventToAzInputManager.cpp index d39ade5527..5fcf7e11d3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Input/QtEventToAzInputManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Input/QtEventToAzInputManager.cpp @@ -158,6 +158,16 @@ namespace AzToolsFramework SetImplementation(nullptr); } + void QtEventToAzInputMapper::EditorQtMouseDevice::SetSystemCursorState(const AzFramework::SystemCursorState systemCursorState) + { + m_systemCursorState = systemCursorState; + } + + AzFramework::SystemCursorState QtEventToAzInputMapper::EditorQtMouseDevice::GetSystemCursorState() const + { + return m_systemCursorState; + } + QtEventToAzInputMapper::QtEventToAzInputMapper(QWidget* sourceWidget, int syntheticDeviceId) : QObject(sourceWidget) , m_sourceWidget(sourceWidget) @@ -210,12 +220,15 @@ namespace AzToolsFramework if (m_capturingCursor != enabled) { m_capturingCursor = enabled; + if (m_capturingCursor) { + m_mouseDevice->SetSystemCursorState(AzFramework::SystemCursorState::ConstrainedAndHidden); qApp->setOverrideCursor(Qt::BlankCursor); } else { + m_mouseDevice->SetSystemCursorState(AzFramework::SystemCursorState::UnconstrainedAndVisible); qApp->restoreOverrideCursor(); } } @@ -238,10 +251,22 @@ namespace AzToolsFramework return false; } - // If our focus changes, go ahead and reset all input devices. if (eventType == QEvent::FocusIn || eventType == QEvent::FocusOut) { + // If our focus changes, go ahead and reset all input devices. HandleFocusChange(event); + + // If we focus in on the source widget and the mouse is contained in its + // bounds, refresh the cached cursor position to ensure it is up to date (this + // ensures cursor positions are refreshed correctly with context menu focus changes) + if (eventType == QEvent::FocusIn) + { + const auto widgetCursorPosition = m_sourceWidget->mapFromGlobal(QCursor::pos()); + if (m_sourceWidget->geometry().contains(widgetCursorPosition)) + { + HandleMouseMoveEvent(widgetCursorPosition); + } + } } // Map key events to input channels. // ShortcutOverride is used in lieu of KeyPress for high priority input channels like Alt @@ -249,7 +274,7 @@ namespace AzToolsFramework else if ( eventType == QEvent::Type::KeyPress || eventType == QEvent::Type::KeyRelease || eventType == QEvent::Type::ShortcutOverride) { - QKeyEvent* keyEvent = static_cast(event); + auto keyEvent = static_cast(event); HandleKeyEvent(keyEvent); } // Map mouse events to input channels. @@ -257,20 +282,20 @@ namespace AzToolsFramework eventType == QEvent::Type::MouseButtonPress || eventType == QEvent::Type::MouseButtonRelease || eventType == QEvent::Type::MouseButtonDblClick) { - QMouseEvent* mouseEvent = static_cast(event); + auto mouseEvent = static_cast(event); HandleMouseButtonEvent(mouseEvent); } // Map mouse movement to the movement input channels. // This includes SystemCursorPosition alongside Movement::X and Movement::Y. else if (eventType == QEvent::Type::MouseMove) { - QMouseEvent* mouseEvent = static_cast(event); - HandleMouseMoveEvent(mouseEvent); + auto mouseEvent = static_cast(event); + HandleMouseMoveEvent(mouseEvent->pos()); } // Map wheel events to the mouse Z movement channel. else if (eventType == QEvent::Type::Wheel) { - QWheelEvent* wheelEvent = static_cast(event); + auto wheelEvent = static_cast(event); HandleWheelEvent(wheelEvent); } @@ -345,9 +370,8 @@ namespace AzToolsFramework return QPoint{ denormalizedX, denormalizedY }; } - void QtEventToAzInputMapper::HandleMouseMoveEvent(QMouseEvent* mouseEvent) + void QtEventToAzInputMapper::HandleMouseMoveEvent(const QPoint& cursorPosition) { - const QPoint cursorPosition = mouseEvent->pos(); const QPoint cursorDelta = cursorPosition - m_previousCursorPosition; m_mouseDevice->m_cursorPositionData2D->m_normalizedPosition = WidgetPositionToNormalizedPosition(cursorPosition); @@ -357,17 +381,14 @@ namespace AzToolsFramework if (m_capturingCursor) { - // Reset our cursor position to the previous point. - const QPoint targetScreenPosition = m_sourceWidget->mapToGlobal(m_previousCursorPosition); - AzQtComponents::SetCursorPos(targetScreenPosition); - - // Even though we just set the cursor position, there are edge cases such as remote desktop that will leave - // the cursor position unchanged. For safety, we re-cache our last cursor position for delta generation. - const QPoint actualWidgetPosition = m_sourceWidget->mapFromGlobal(QCursor::pos()); - m_mouseDevice->m_cursorPositionData2D->m_normalizedPosition = WidgetPositionToNormalizedPosition(actualWidgetPosition); + // Reset our cursor position to the previous point + const QPoint screenCursorPosition = m_sourceWidget->mapToGlobal(m_previousCursorPosition); + AzQtComponents::SetCursorPos(screenCursorPosition); + } + else + { + m_previousCursorPosition = cursorPosition; } - - m_previousCursorPosition = cursorPosition; } void QtEventToAzInputMapper::HandleKeyEvent(QKeyEvent* keyEvent) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Input/QtEventToAzInputManager.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Input/QtEventToAzInputManager.h index 6e73bf4f9c..aaf3fb6295 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Input/QtEventToAzInputManager.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Input/QtEventToAzInputManager.h @@ -105,7 +105,14 @@ namespace AzToolsFramework public: EditorQtMouseDevice(AzFramework::InputDeviceId id); + // AzFramework::InputDeviceMouse overrides ... + void SetSystemCursorState(AzFramework::SystemCursorState systemCursorState) override; + AzFramework::SystemCursorState GetSystemCursorState() const override; + friend class QtEventToAzInputMapper; + + private: + AzFramework::SystemCursorState m_systemCursorState = AzFramework::SystemCursorState::UnconstrainedAndVisible; }; // Emits InputChannelUpdated if channel has transitioned in state (i.e. has gone from active to inactive or vice versa). @@ -122,7 +129,7 @@ namespace AzToolsFramework // Handle mouse click events. void HandleMouseButtonEvent(QMouseEvent* mouseEvent); // Handle mouse move events. - void HandleMouseMoveEvent(QMouseEvent* mouseEvent); + void HandleMouseMoveEvent(const QPoint& cursorPosition); // Handles key press / release events (or ShortcutOverride events for keys listed in m_highPriorityKeys). void HandleKeyEvent(QKeyEvent* keyEvent); // Handles mouse wheel events. diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/EditorVertexSelection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/EditorVertexSelection.cpp index f49df5d029..81f573672b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/EditorVertexSelection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/EditorVertexSelection.cpp @@ -895,7 +895,7 @@ namespace AzToolsFramework // calculate average position of selected vertices for translation manipulator MidpointCalculator midpointCalculator; m_translationManipulator->Process( - [this, &midpointCalculator, fixedVertices](typename IndexedTranslationManipulator::VertexLookup& vertex) + [&midpointCalculator, fixedVertices](typename IndexedTranslationManipulator::VertexLookup& vertex) { Vertex v; bool found = false; @@ -1306,7 +1306,7 @@ namespace AzToolsFramework void EditorVertexSelectionVariable::PrepareActions() { ActionOverride deleteAction = CreateDeleteAction( - s_deleteVerticesTitle, s_duplicateVerticesDesc, + s_deleteVerticesTitle, s_deleteVerticesDesc, [this]() { DestroySelected(); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.cpp index 043f864245..54e7f7608c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.cpp @@ -650,7 +650,10 @@ namespace AzToolsFramework AZStd::unique_ptr Instance::DetachContainerEntity() { - m_instanceEntityMapper->UnregisterEntity(m_containerEntity->GetId()); + if (m_containerEntity) + { + m_instanceEntityMapper->UnregisterEntity(m_containerEntity->GetId()); + } return AZStd::move(m_containerEntity); } } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplatePropagator.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplatePropagator.cpp index 36b39f3a72..6b281bcbae 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplatePropagator.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplatePropagator.cpp @@ -262,8 +262,6 @@ namespace AzToolsFramework void InstanceToTemplatePropagator::AddPatchesToLink(const PrefabDom& patches, Link& link) { PrefabDom& linkDom = link.GetLinkDom(); - PrefabDomValueReference linkPatchesReference = - PrefabDomUtils::FindPrefabDomValue(linkDom, PrefabDomUtils::PatchesName); /* If the original allocator the patches were created with gets destroyed, then the patches would become garbage in the diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Link/Link.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Link/Link.cpp index 940a2787cb..800a90c622 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Link/Link.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Link/Link.cpp @@ -181,10 +181,10 @@ namespace AzToolsFramework PrefabDomUtils::ApplyPatches(sourceTemplateDomCopy, targetTemplatePrefabDom.GetAllocator(), patchesReference->get()); linkedInstanceDom.CopyFrom(sourceTemplateDomCopy, targetTemplatePrefabDom.GetAllocator()); - PrefabDomValueReference sourceTemplateName = + [[maybe_unused]] PrefabDomValueReference sourceTemplateName = PrefabDomUtils::FindPrefabDomValue(sourceTemplateDomCopy, PrefabDomUtils::SourceName); AZ_Assert(sourceTemplateName && sourceTemplateName->get().IsString(), "A valid source template name couldn't be found"); - PrefabDomValueReference targetTemplateName = + [[maybe_unused]] PrefabDomValueReference targetTemplateName = PrefabDomUtils::FindPrefabDomValue(targetTemplatePrefabDom, PrefabDomUtils::SourceName); AZ_Assert(targetTemplateName && targetTemplateName->get().IsString(), "A valid target template name couldn't be found"); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomUtils.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomUtils.cpp index dcc14d3b91..f60759f77e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomUtils.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomUtils.cpp @@ -253,6 +253,15 @@ namespace AzToolsFramework settings.m_metadata.Add(&entityIdMapper); settings.m_metadata.Create(newlyAddedEntities); + AZStd::string scratchBuffer; + auto issueReportingCallback = [&scratchBuffer]( + AZStd::string_view message, AZ::JsonSerializationResult::ResultCode result, + AZStd::string_view path) -> AZ::JsonSerializationResult::ResultCode + { + return Internal::JsonIssueReporter(scratchBuffer, message, result, path); + }; + settings.m_reporting = AZStd::move(issueReportingCallback); + AZ::JsonSerializationResult::ResultCode result = AZ::JsonSerialization::Load(instance, prefabDom, settings); AZ::Data::AssetManager::Instance().ResumeAssetRelease(); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoader.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoader.cpp index 8be3b402fa..666386d4aa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoader.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoader.cpp @@ -11,11 +11,12 @@ #include #include +#include #include #include +#include #include -#include #include #include #include @@ -147,7 +148,7 @@ namespace AzToolsFramework } // Read Template's prefab file from disk and parse Prefab DOM from file. - AZ::Outcome readPrefabFileResult = AzFramework::FileFunc::ReadJsonFromString(fileContent); + AZ::Outcome readPrefabFileResult = AZ::JsonSerializationUtils::ReadJsonString(fileContent); if (!readPrefabFileResult.IsSuccess()) { AZ_Error( @@ -359,7 +360,7 @@ namespace AzToolsFramework return false; } - auto outcome = AzFramework::FileFunc::WriteJsonFile(domAndFilepath->first, GetFullPath(domAndFilepath->second)); + auto outcome = AZ::JsonSerializationUtils::WriteJsonFile(domAndFilepath->first, GetFullPath(domAndFilepath->second).Native()); if (!outcome.IsSuccess()) { AZ_Error( @@ -400,7 +401,7 @@ namespace AzToolsFramework return false; } - auto outcome = AzFramework::FileFunc::WriteJsonFile(domAndFilepath->first, absolutePath); + auto outcome = AZ::JsonSerializationUtils::WriteJsonFile(domAndFilepath->first, absolutePath.Native()); if (!outcome.IsSuccess()) { AZ_Error( @@ -423,7 +424,7 @@ namespace AzToolsFramework return false; } - auto outcome = AzFramework::FileFunc::WriteJsonToString(domAndFilepath->first, output); + auto outcome = AZ::JsonSerializationUtils::WriteJsonString(domAndFilepath->first, output); if (!outcome.IsSuccess()) { AZ_Error( diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.cpp index cdb1e9a2ad..c412033362 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.cpp @@ -1259,12 +1259,12 @@ namespace AzToolsFramework auto& containerEntity = *containerEntityPtr.release(); auto editorPrefabComponent = containerEntity.FindComponent(); containerEntity.Deactivate(); - const bool editorPrefabComponentRemoved = containerEntity.RemoveComponent(editorPrefabComponent); + [[maybe_unused]] const bool editorPrefabComponentRemoved = containerEntity.RemoveComponent(editorPrefabComponent); AZ_Assert(editorPrefabComponentRemoved, "Remove EditorPrefabComponent failed."); delete editorPrefabComponent; containerEntity.Activate(); - const bool containerEntityAdded = parentInstance.AddEntity(containerEntity); + [[maybe_unused]] const bool containerEntityAdded = parentInstance.AddEntity(containerEntity); AZ_Assert(containerEntityAdded, "Add target Instance's container entity to its parent Instance failed."); EntityIdList entityIds; @@ -1281,7 +1281,7 @@ namespace AzToolsFramework [&](AZStd::unique_ptr entityPtr) { auto& entity = *entityPtr.release(); - const bool entityAdded = parentInstance.AddEntity(entity); + [[maybe_unused]] const bool entityAdded = parentInstance.AddEntity(entity); AZ_Assert(entityAdded, "Add target Instance's entity to its parent Instance failed."); entityIds.emplace_back(entity.GetId()); @@ -1298,9 +1298,6 @@ namespace AzToolsFramework command->RunRedo(); } - const auto instanceTemplateId = instancePtr->GetTemplateId(); - auto parentContainerEntityId = parentInstance.GetContainerEntityId(); - instancePtr->DetachNestedInstances( [&](AZStd::unique_ptr detachedNestedInstance) { diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponent.cpp index a2ef30d1f7..a4fbd1e251 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponent.cpp @@ -463,7 +463,7 @@ namespace AzToolsFramework linkId, templateId, templateToDelete.GetFilePath().c_str()); } - result = m_templateToLinkIdsMap.erase(templateToLinkIterator) != 0; + result = m_templateToLinkIdsMap.erase(templateToLinkIterator) != nullptr; AZ_Assert(result, "Prefab - PrefabSystemComponent::RemoveTemplate - " "Failed to remove Template with Id '%llu' on file path '%s' " @@ -858,7 +858,7 @@ namespace AzToolsFramework PrefabDomValue& instance = instanceIterator->value; AZ_Assert(instance.IsObject(), "Nested instance DOM provided is not a valid JSON object."); - PrefabDomValueReference sourceTemplateName = PrefabDomUtils::FindPrefabDomValue(instance, PrefabDomUtils::SourceName); + [[maybe_unused]] PrefabDomValueReference sourceTemplateName = PrefabDomUtils::FindPrefabDomValue(instance, PrefabDomUtils::SourceName); AZ_Assert(sourceTemplateName, "Couldn't find source template name in the DOM of the nested instance while creating a link."); AZ_Assert( sourceTemplateName->get() == sourceTemplate.GetFilePath().c_str(), diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.cpp index fc64e0b5b3..fe3555a853 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.cpp @@ -262,7 +262,7 @@ namespace AzToolsFramework instanceDom.CopyFrom(instanceDomRef->get(), instanceDom.GetAllocator()); //apply the patch to the template within the target - AZ::JsonSerializationResult::ResultCode result = PrefabDomUtils::ApplyPatches(instanceDom, instanceDom.GetAllocator(), patch); + [[maybe_unused]] AZ::JsonSerializationResult::ResultCode result = PrefabDomUtils::ApplyPatches(instanceDom, instanceDom.GetAllocator(), patch); AZ_Error( "Prefab", diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabCatchmentProcessor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabCatchmentProcessor.cpp index c455873036..7b7107ae3e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabCatchmentProcessor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabCatchmentProcessor.cpp @@ -65,16 +65,24 @@ namespace AzToolsFramework::Prefab::PrefabConversionUtils AzFramework::Spawnable::EntityList& entities = spawnable->GetEntities(); for (auto it = entities.begin(); it != entities.end(); ) { - (*it)->InvalidateDependencies(); - AZ::Entity::DependencySortOutcome evaluation = (*it)->EvaluateDependenciesGetDetails(); - if (evaluation.IsSuccess()) + if (*it) { - ++it; + (*it)->InvalidateDependencies(); + AZ::Entity::DependencySortOutcome evaluation = (*it)->EvaluateDependenciesGetDetails(); + if (evaluation.IsSuccess()) + { + ++it; + } + else + { + AZ_Error( + "Prefabs", false, "Entity '%s' %s cannot be activated for the following reason: %s", (*it)->GetName().c_str(), + (*it)->GetId().ToString().c_str(), evaluation.GetError().m_message.c_str()); + it = entities.erase(it); + } } else { - AZ_Error("Prefabs", false, "Entity '%s' %s cannot be activated for the following reason: %s", - (*it)->GetName().c_str(), (*it)->GetId().ToString().c_str(), evaluation.GetError().m_message.c_str()); it = entities.erase(it); } } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.cpp index 02fc2c2c40..aca667b9aa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.cpp @@ -461,7 +461,7 @@ namespace AzToolsFramework msgBox.setStandardButtons(QMessageBox::Cancel); msgBox.setDefaultButton(QMessageBox::Yes); msgBox.setDetailedText(message.c_str()); - const int response = msgBox.exec(); + msgBox.exec(); if (msgBox.clickedButton() == moveButton) { @@ -2043,7 +2043,7 @@ namespace AzToolsFramework QAction* confirmSelected = new QAction(detachMenu); confirmationMessageBox->addAction(confirmSelected); - QObject::connect(reassignToAction, &QAction::triggered, [reassignToAction, confirmationMessageBox, selectedEntity, ancestors, currentAncestorIndex]() mutable + QObject::connect(reassignToAction, &QAction::triggered, [confirmationMessageBox, ancestors, currentAncestorIndex]() mutable { if (confirmationMessageBox->exec() == QDialog::Accepted) { @@ -4094,7 +4094,7 @@ namespace AzToolsFramework using SCCommandBus = AzToolsFramework::SourceControlCommandBus; SCCommandBus::Broadcast(&SCCommandBus::Events::RequestEdit, fullFilePath.c_str(), true, - [sliceEntity, fullFilePath, tmpFileName, tmpFilesaved](bool /*success*/, const AzToolsFramework::SourceControlFileInfo& info) + [fullFilePath, tmpFileName, tmpFilesaved](bool /*success*/, const AzToolsFramework::SourceControlFileInfo& info) { if (!info.IsReadOnly()) { @@ -4200,8 +4200,6 @@ namespace AzToolsFramework if (canPush) { - AZ::Data::AssetId targetSliceAssetId = sliceAncestryToPushTo.at(0).m_sliceAddress.GetReference()->GetSliceAsset().GetId(); - //remember we're trying to push to this root, so we don't try to push to any others size_t ancestrySize = sliceAncestryToPushTo.size(); rootAncestorPushList.push_back(sliceAncestryToPushTo[ancestrySize-1].m_sliceAddress.GetReference()->GetSliceAsset().GetId()); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.cpp index 4ad409507e..3bd12b1ad3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.cpp @@ -1315,7 +1315,7 @@ namespace AzToolsFramework void PerforceComponent::ThreadWorker() { m_ProcessThreadID = AZStd::this_thread::get_id(); - while (1) + while (true) { // block until signaled: m_WorkerSemaphore.acquire(); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.cpp index 91f70f619a..6b8f331de7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.cpp @@ -23,7 +23,6 @@ namespace AzToolsFramework LoadingThumbnail::LoadingThumbnail() : Thumbnail(MAKE_TKEY(ThumbnailKey)) - , m_angle(0) { auto absoluteIconPath = AZ::IO::FixedMaxPath(AZ::Utils::GetEnginePath()) / LoadingIconPath; m_loadingMovie.setFileName(absoluteIconPath.c_str()); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.h index 811e2e09b7..cbf7ec5489 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.h @@ -37,7 +37,6 @@ namespace AzToolsFramework void OnTick(float deltaTime, AZ::ScriptTimePoint /*time*/) override; private: - float m_angle; QMovie m_loadingMovie; }; } // namespace Thumbnailer diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.cpp index da12a4bd7a..cc350c8107 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.cpp @@ -38,7 +38,7 @@ namespace AZ AttributeDynamicScriptValue(const DynamicSerializableField& value) : m_value(value) {} - virtual ~AttributeDynamicScriptValue() + ~AttributeDynamicScriptValue() override { m_value.DestroyData(); } @@ -1031,15 +1031,15 @@ namespace AzToolsFramework ->Attribute("EditButton", "") ->Attribute("EditDescription", "Open in Lua Editor") ->Attribute("EditCallback", &ScriptEditorComponent::LaunchLuaEditor) - ->DataElement(0, &ScriptEditorComponent::m_scriptComponent, "Script properties", "The script template") + ->DataElement(nullptr, &ScriptEditorComponent::m_scriptComponent, "Script properties", "The script template") ->SetDynamicEditDataProvider(&ScriptEditorComponent::GetScriptPropertyEditData) ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) ; ec->Class("Script Component", "Adding scripting functionality to the entity!") - ->DataElement(0, &AzFramework::ScriptComponent::m_properties, "Properties", "Lua script properties") + ->DataElement(nullptr, &AzFramework::ScriptComponent::m_properties, "Properties", "Lua script properties") ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - ->DataElement(0, &AzFramework::ScriptComponent::m_script, "Asset", "") + ->DataElement(nullptr, &AzFramework::ScriptComponent::m_script, "Asset", "") ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::Hide) ->Attribute(AZ::Edit::Attributes::SliceFlags, AZ::Edit::SliceFlags::NotPushable) // Only the editor-component's script asset needs to be slice-pushable. ; @@ -1048,9 +1048,9 @@ namespace AzToolsFramework ClassElement(AZ::Edit::ClassElements::EditorData, "ScriptPropertyGroup's class attributes.")-> Attribute(AZ::Edit::Attributes::NameLabelOverride, &AzFramework::ScriptPropertyGroup::m_name)-> Attribute(AZ::Edit::Attributes::AutoExpand, true)-> - DataElement(0, &AzFramework::ScriptPropertyGroup::m_properties, "m_properties", "Properties in this property group")-> + DataElement(nullptr, &AzFramework::ScriptPropertyGroup::m_properties, "m_properties", "Properties in this property group")-> Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)-> - DataElement(0, &AzFramework::ScriptPropertyGroup::m_groups, "m_groups", "Subgroups in this property group")-> + DataElement(nullptr, &AzFramework::ScriptPropertyGroup::m_groups, "m_groups", "Subgroups in this property group")-> Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly); ec->Class("Script Property", "Base class for script properties")-> @@ -1060,50 +1060,50 @@ namespace AzToolsFramework ec->Class("Script Property (bool)", "A script boolean property")-> ClassElement(AZ::Edit::ClassElements::EditorData, "ScriptPropertyGroup's class attributes.")-> Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)-> - DataElement(0, &AZ::ScriptPropertyBoolean::m_value, "m_value", "A boolean")-> + DataElement(nullptr, &AZ::ScriptPropertyBoolean::m_value, "m_value", "A boolean")-> Attribute(AZ::Edit::Attributes::NameLabelOverride, &AZ::ScriptProperty::m_name); ec->Class("Script Property (number)", "A script number property")-> ClassElement(AZ::Edit::ClassElements::EditorData, "ScriptPropertyGroup's class attributes.")-> Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)-> - DataElement(0, &AZ::ScriptPropertyNumber::m_value, "m_value", "A number")-> + DataElement(nullptr, &AZ::ScriptPropertyNumber::m_value, "m_value", "A number")-> Attribute(AZ::Edit::Attributes::NameLabelOverride, &AZ::ScriptProperty::m_name); ec->Class("Script Property (string)", "A script string property")-> ClassElement(AZ::Edit::ClassElements::EditorData, "ScriptPropertyGroup's class attributes.")-> Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)-> - DataElement(0, &AZ::ScriptPropertyString::m_value, "m_value", "A string")-> + DataElement(nullptr, &AZ::ScriptPropertyString::m_value, "m_value", "A string")-> Attribute(AZ::Edit::Attributes::NameLabelOverride, &AZ::ScriptProperty::m_name); ec->Class("Script Property (object)", "A script object property")-> ClassElement(AZ::Edit::ClassElements::EditorData, "ScriptPropertyGroup's class attributes.")-> Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)-> - DataElement(0, &AZ::ScriptPropertyGenericClass::m_value, "m_value", "An object")-> + DataElement(nullptr, &AZ::ScriptPropertyGenericClass::m_value, "m_value", "An object")-> Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly); ec->Class("Script Property Array(bool)", "A script bool array property")-> ClassElement(AZ::Edit::ClassElements::EditorData, "ScriptPropertyBooleanArray's class attributes.")-> Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)-> - DataElement(0, &AZ::ScriptPropertyBooleanArray::m_values, "m_value", "An object")-> + DataElement(nullptr, &AZ::ScriptPropertyBooleanArray::m_values, "m_value", "An object")-> Attribute(AZ::Edit::Attributes::NameLabelOverride, &AZ::ScriptProperty::m_name); ec->Class("Script Property Array(number)", "A script number array property")-> ClassElement(AZ::Edit::ClassElements::EditorData, "ScriptPropertyNumberArray's class attributes.")-> Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)-> - DataElement(0, &AZ::ScriptPropertyNumberArray::m_values, "m_value", "An object")-> + DataElement(nullptr, &AZ::ScriptPropertyNumberArray::m_values, "m_value", "An object")-> Attribute(AZ::Edit::Attributes::NameLabelOverride, &AZ::ScriptProperty::m_name); ec->Class("Script Property Array(string)", "A script string array property")-> ClassElement(AZ::Edit::ClassElements::EditorData, "ScriptPropertyStringArray's class attributes.")-> Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)-> - DataElement(0, &AZ::ScriptPropertyStringArray::m_values, "m_value", "An object")-> + DataElement(nullptr, &AZ::ScriptPropertyStringArray::m_values, "m_value", "An object")-> Attribute(AZ::Edit::Attributes::NameLabelOverride, &AZ::ScriptProperty::m_name); ec->Class("Script Property Array(object)", "A script object array property")-> ClassElement(AZ::Edit::ClassElements::EditorData, "ScriptPropertyGenericClassArray's class attributes.")-> Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)-> Attribute(AZ::Edit::Attributes::DynamicElementType, &AZ::ScriptPropertyGenericClassArray::GetElementTypeUuid)-> - DataElement(0, &AZ::ScriptPropertyGenericClassArray::m_values, "m_value", "An object")-> + DataElement(nullptr, &AZ::ScriptPropertyGenericClassArray::m_values, "m_value", "An object")-> ElementAttribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)-> Attribute(AZ::Edit::Attributes::NameLabelOverride, &AZ::ScriptProperty::m_name); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/LayerUiHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/LayerUiHandler.cpp index d3dd556ae2..b0eee96abc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/LayerUiHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/LayerUiHandler.cpp @@ -111,9 +111,6 @@ namespace AzToolsFramework painter, option.rect.left() - 1, option.rect.top(), option.rect.bottom(), m_layerBorderBottomColor, layerColor); } - QModelIndex nameColumn = index.sibling(index.row(), EntityOutlinerListModel::Column::ColumnName); - QModelIndex sibling = index.sibling(index.row() + 1, index.column()); - QPoint lineBottomLeft(option.rect.bottomLeft()); QPoint lineTopLeft(option.rect.topLeft()); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.cpp index 2ed70d81b8..4dd352646c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.cpp @@ -17,21 +17,21 @@ namespace LegacyFramework { const char* appName() { - const char* result = NULL; + const char* result = nullptr; EBUS_EVENT_RESULT(result, FrameworkApplicationMessages::Bus, GetApplicationName); return result; } const char* appModule() { - const char* result = NULL; + const char* result = nullptr; EBUS_EVENT_RESULT(result, FrameworkApplicationMessages::Bus, GetApplicationModule); return result; } const char* appDir() { - const char* result = NULL; + const char* result = nullptr; EBUS_EVENT_RESULT(result, FrameworkApplicationMessages::Bus, GetApplicationDirectory); return result; } @@ -74,7 +74,7 @@ namespace LegacyFramework // helper function which retrieves the serialize context and asserts if its not found. AZ::SerializeContext* GetSerializeContext() { - AZ::SerializeContext* serializeContext = NULL; + AZ::SerializeContext* serializeContext = nullptr; EBUS_EVENT_RESULT(serializeContext, AZ::ComponentApplicationBus, GetSerializeContext); AZ_Assert(serializeContext, "No serialize context"); return serializeContext; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp index 503cbc1d65..95ea5397e7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp @@ -35,10 +35,8 @@ #include #include #include -#include #include -#include #ifdef AZ_PLATFORM_WINDOWS #include "shlobj.h" @@ -50,7 +48,7 @@ AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") // 'QFileInfo::d_ptr': class 'QSharedDataPointer' needs to have dll-interface to be used by clients of class 'QFileInfo' #include -AZ_POP_DISABLE_OVERRIDE_WARNING +AZ_POP_DISABLE_WARNING #include #include #include @@ -239,7 +237,7 @@ namespace LegacyFramework { m_applicationEntity->Deactivate(); delete m_applicationEntity; - m_applicationEntity = NULL; + m_applicationEntity = nullptr; } AZ::SystemTickBus::ExecuteQueuedEvents(); @@ -251,7 +249,7 @@ namespace LegacyFramework #endif delete m_ptrCommandLineParser; - m_ptrCommandLineParser = NULL; + m_ptrCommandLineParser = nullptr; CoreMessageBus::Handler::BusDisconnect(); FrameworkApplicationMessages::Handler::BusDisconnect(); @@ -271,7 +269,7 @@ namespace LegacyFramework { m_applicationEntity->Deactivate(); delete m_applicationEntity; - m_applicationEntity = NULL; + m_applicationEntity = nullptr; } } @@ -485,8 +483,6 @@ namespace LegacyFramework void Application::CreateApplicationComponents() { EnsureComponentCreated(AzFramework::TargetManagementComponent::RTTI_Type()); - EnsureComponentCreated(AzFramework::DrillerNetworkConsoleComponent::RTTI_Type()); - EnsureComponentCreated(AzFramework::DrillerNetworkAgentComponent::RTTI_Type()); } void Application::CreateSystemComponents() @@ -507,8 +503,6 @@ namespace LegacyFramework ComponentApplication::RegisterCoreComponents(); RegisterComponentDescriptor(AzFramework::TargetManagementComponent::CreateDescriptor()); - RegisterComponentDescriptor(AzFramework::DrillerNetworkConsoleComponent::CreateDescriptor()); - RegisterComponentDescriptor(AzFramework::DrillerNetworkAgentComponent::CreateDescriptor()); RegisterComponentDescriptor(AzToolsFramework::Framework::CreateDescriptor()); } } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp index bc16b29830..98e06b77f3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp @@ -144,9 +144,9 @@ namespace AzToolsFramework qInstallMessageHandler(myMessageOutput); } - virtual ~AZQtApplication() + ~AZQtApplication() override { - qInstallMessageHandler(NULL); + qInstallMessageHandler(nullptr); } }; @@ -201,9 +201,9 @@ namespace AzToolsFramework // enable the built-in stylesheet by default: bool enableStyleSheet = true; - const AzFramework::CommandLine* comp = NULL; + const AzFramework::CommandLine* comp = nullptr; EBUS_EVENT_RESULT(comp, LegacyFramework::FrameworkApplicationMessages::Bus, GetCommandLineParser); - if (comp != NULL) + if (comp != nullptr) { if (comp->HasSwitch("nostyle")) { @@ -275,18 +275,18 @@ namespace AzToolsFramework // see still need to clean up: m_ptrTicker->cancel(); QApplication::processEvents(); - AZ::ComponentApplication* pApp = NULL; + AZ::ComponentApplication* pApp = nullptr; EBUS_EVENT_RESULT(pApp, AZ::ComponentApplicationBus, GetApplication); if (pApp) { pApp->Tick(); } azdestroy(m_ptrTicker); - m_ptrTicker = NULL; + m_ptrTicker = nullptr; } } - Framework::~Framework(void) + Framework::~Framework() { AZ::SystemTickBus::Handler::BusDisconnect(); @@ -299,7 +299,7 @@ namespace AzToolsFramework delete m_ActionChangeProject; m_ActionChangeProject = nullptr; - pApplication = NULL; + pApplication = nullptr; } // once we set the project, we can then tell all our other windows to restore our state. @@ -360,7 +360,7 @@ namespace AzToolsFramework } m_bTicking = true; // Tick the component app. - AZ::ComponentApplication* pApp = NULL; + AZ::ComponentApplication* pApp = nullptr; EBUS_EVENT_RESULT(pApp, AZ::ComponentApplicationBus, GetApplication); if (pApp) { @@ -491,7 +491,7 @@ namespace AzToolsFramework // we successfully got permission to quit! // pump the tickbus one last time! // QApplication::processEvents(); - AZ::ComponentApplication* pApp = NULL; + AZ::ComponentApplication* pApp = nullptr; EBUS_EVENT_RESULT(pApp, AZ::ComponentApplicationBus, GetApplication); if (pApp) { @@ -501,7 +501,7 @@ namespace AzToolsFramework m_ptrTicker->cancel(); azdestroy(m_ptrTicker); - m_ptrTicker = NULL; + m_ptrTicker = nullptr; QApplication::quit(); } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkPreferences.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkPreferences.cpp index 6318bc3e6e..72bef700d7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkPreferences.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkPreferences.cpp @@ -38,7 +38,7 @@ namespace AzToolsFramework else { delete m_View; - m_View = NULL; + m_View = nullptr; } } void Framework::PreferencesAccepted() @@ -59,11 +59,11 @@ namespace AzToolsFramework if (m_View) { delete m_View; - m_View = NULL; + m_View = nullptr; } if (m_Model) { - m_Model = NULL; + m_Model = nullptr; } } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.cpp index 55c42e2535..ef8bf42713 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.cpp @@ -61,7 +61,7 @@ namespace AzToolsFramework , m_impl(new BaseLogPanel::Impl) { m_impl->storageID = 0; - this->setLayout(aznew LogPanelLayout(NULL)); + this->setLayout(aznew LogPanelLayout(nullptr)); m_impl->pTabWidget = new AzQtComponents::TabWidget(this); m_impl->pTabWidget->setObjectName(QString::fromUtf8("tabWidget")); @@ -601,7 +601,7 @@ namespace AzToolsFramework { if (index >= (int)m_children.size()) { - return NULL; + return nullptr; } return m_children[index]; @@ -609,11 +609,11 @@ namespace AzToolsFramework QLayoutItem* LogPanelLayout::takeAt(int index) { - QLayoutItem* pItem = NULL; + QLayoutItem* pItem = nullptr; if (index >= (int)m_children.size()) { - return NULL; + return nullptr; } pItem = m_children[index]; @@ -657,7 +657,6 @@ namespace AzToolsFramework // if we have any elements, the last element is top right aligned: QLayoutItem* pItem = m_children[m_children.size() - 1]; QSize lastItemSize = pItem->minimumSize(); - QPoint topRight = effectiveRect.topRight(); QRect topRightCorner(effectiveRect.topRight() - QPoint(lastItemSize.width(), 0), lastItemSize); pItem->setGeometry(topRightCorner); } @@ -861,7 +860,7 @@ namespace AzToolsFramework return richLabel; } - return NULL; + return nullptr; } bool LogPanelItemDelegate::editorEvent(QEvent* event, QAbstractItemModel* model, const QStyleOptionViewItem& option, const QModelIndex& index) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledLogPanel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledLogPanel.cpp index 1542a5f5ab..f550dbdc87 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledLogPanel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledLogPanel.cpp @@ -322,7 +322,7 @@ namespace AzToolsFramework actionList.removeAll(m_actionSelectAll); } - QMenu::exec(actionList, QCursor::pos(), 0, this); + QMenu::exec(actionList, QCursor::pos(), nullptr, this); } void StyledLogTab::CopySelected() diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutliner.qss b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutliner.qss index 8e569eb134..15ff8b1b67 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutliner.qss +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutliner.qss @@ -43,7 +43,6 @@ AzToolsFramework--EntityOutlinerCheckBox padding: 0; padding-right: 2px; line-height: 0px; - font-size: 0px; margin: 0px; max-height: 20px; max-width: 18px; @@ -59,7 +58,6 @@ AzToolsFramework--EntityOutlinerCheckBox::indicator spacing: 0px; padding: 0px; line-height: 0px; - font-size: 0px; margin: 3px 0 0 0; max-width: 18px; width: 18px; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.cpp index 380d6876da..b9180f8ef6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.cpp @@ -1106,8 +1106,6 @@ namespace AzToolsFramework QMimeData* EntityOutlinerListModel::mimeData(const QModelIndexList& indexes) const { AZ_PROFILE_FUNCTION(AzToolsFramework); - AZ::TypeId uuid1 = AZ::AzTypeInfo::Uuid(); - AZ::TypeId uuid2 = AZ::AzTypeInfo::Uuid(); EditorEntityIdContainer entityIdList; for (const QModelIndex& index : indexes) @@ -1334,13 +1332,11 @@ namespace AzToolsFramework QueueEntityUpdate(entityId); } - void EntityOutlinerListModel::OnEntityInfoUpdatedRemoveChildBegin(AZ::EntityId parentId, AZ::EntityId childId) + void EntityOutlinerListModel::OnEntityInfoUpdatedRemoveChildBegin([[maybe_unused]] AZ::EntityId parentId, [[maybe_unused]] AZ::EntityId childId) { //add/remove operations trigger selection change signals which assert and break undo/redo operations in progress in inspector etc. //so disallow selection updates until change is complete emit EnableSelectionUpdates(false); - auto parentIndex = GetIndexFromEntity(parentId); - auto childIndex = GetIndexFromEntity(childId); beginResetModel(); } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/LevelRootUiHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/LevelRootUiHandler.cpp index 708a6d9b13..73a28a3edc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/LevelRootUiHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/LevelRootUiHandler.cpp @@ -99,5 +99,6 @@ namespace AzToolsFramework // Draw border at the bottom painter->drawLine(rect.bottomLeft(), rect.bottomRight()); + painter->restore(); } } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationManager.cpp index ad3ac9e69f..ca09bbe88d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationManager.cpp @@ -192,7 +192,7 @@ namespace AzToolsFramework QAction* createAction = menu->addAction(QObject::tr("Create Prefab...")); createAction->setToolTip(QObject::tr("Creates a prefab out of the currently selected entities.")); - QObject::connect(createAction, &QAction::triggered, createAction, [this, selectedEntities] { + QObject::connect(createAction, &QAction::triggered, createAction, [selectedEntities] { ContextMenu_CreatePrefab(selectedEntities); }); } @@ -206,7 +206,7 @@ namespace AzToolsFramework instantiateAction->setToolTip(QObject::tr("Instantiates a prefab file in the scene.")); QObject::connect( - instantiateAction, &QAction::triggered, instantiateAction, [this] { ContextMenu_InstantiatePrefab(); }); + instantiateAction, &QAction::triggered, instantiateAction, [] { ContextMenu_InstantiatePrefab(); }); } menu->addSeparator(); @@ -231,7 +231,7 @@ namespace AzToolsFramework QAction* editAction = menu->addAction(QObject::tr("Edit Prefab")); editAction->setToolTip(QObject::tr("Edit the prefab in focus mode.")); - QObject::connect(editAction, &QAction::triggered, editAction, [this, selectedEntity] { + QObject::connect(editAction, &QAction::triggered, editAction, [selectedEntity] { ContextMenu_EditPrefab(selectedEntity); }); @@ -248,7 +248,7 @@ namespace AzToolsFramework QAction* saveAction = menu->addAction(QObject::tr("Save Prefab to file")); saveAction->setToolTip(QObject::tr("Save the changes to the prefab to disk.")); - QObject::connect(saveAction, &QAction::triggered, saveAction, [this, selectedEntity] { + QObject::connect(saveAction, &QAction::triggered, saveAction, [selectedEntity] { ContextMenu_SavePrefab(selectedEntity); }); @@ -264,7 +264,7 @@ namespace AzToolsFramework } QAction* deleteAction = menu->addAction(QObject::tr("Delete")); - QObject::connect(deleteAction, &QAction::triggered, deleteAction, [this] { ContextMenu_DeleteSelected(); }); + QObject::connect(deleteAction, &QAction::triggered, deleteAction, [] { ContextMenu_DeleteSelected(); }); if (selectedEntities.size() == 0 || (selectedEntities.size() == 1 && s_prefabPublicInterface->IsLevelInstanceContainerEntity(selectedEntities[0]))) { @@ -282,7 +282,7 @@ namespace AzToolsFramework QAction* detachPrefabAction = menu->addAction(QObject::tr("Detach Prefab...")); QObject::connect( detachPrefabAction, &QAction::triggered, detachPrefabAction, - [this, selectedEntity] + [selectedEntity] { ContextMenu_DetachPrefab(selectedEntity); }); @@ -1029,7 +1029,7 @@ namespace AzToolsFramework msgBox.setStandardButtons(QMessageBox::Cancel); msgBox.setDefaultButton(QMessageBox::Yes); msgBox.setDetailedText(message.c_str()); - const int response = msgBox.exec(); + msgBox.exec(); if (msgBox.clickedButton() == moveButton) { diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.cpp index fbbf55d0ad..85676df243 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.cpp @@ -397,7 +397,7 @@ namespace AzToolsFramework AzQtComponents::CardNotification * notification = CreateNotification(message); const QPushButton * featureButton = notification->addButtonFeature(tr("Continue")); - connect(featureButton, &QPushButton::clicked, this, [this, notification]() + connect(featureButton, &QPushButton::clicked, this, [notification]() { notification->close(); }); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.hxx index bd44d513fd..b2140868da 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.hxx @@ -135,7 +135,6 @@ namespace AzToolsFramework QIcon m_warningIcon; ReflectedPropertyEditor* m_propertyEditor = nullptr; - QVBoxLayout* m_mainLayout = nullptr; AZ::SerializeContext* m_serializeContext; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.cpp index 223a573c55..87527502dd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.cpp @@ -2352,6 +2352,13 @@ namespace AzToolsFramework { QMenu* revertMenu = nullptr; + auto addRevertMenu = [&menu]() + { + QMenu* revertOverridesMenu = menu.addMenu(tr("Revert overrides")); + revertOverridesMenu->setToolTipsVisible(true); + return revertOverridesMenu; + }; + //check for changes on selected property if (componentClassData) { @@ -2372,8 +2379,7 @@ namespace AzToolsFramework } // Only add the "Revert overrides" menu option if it belongs to a slice - revertMenu = menu.addMenu(tr("Revert overrides")); - revertMenu->setToolTipsVisible(true); + revertMenu = addRevertMenu(); revertMenu->setEnabled(false); if (fieldNode) @@ -2447,6 +2453,10 @@ namespace AzToolsFramework if (isPartOfSlice && hasSliceChanges) { + if (!revertMenu) + { + revertMenu = addRevertMenu(); + } revertMenu->setEnabled(true); QAction* revertComponentAction = revertMenu->addAction(tr("Component")); @@ -2487,11 +2497,15 @@ namespace AzToolsFramework relevantEntities.push_back(id); } + if (!revertMenu) + { + revertMenu = addRevertMenu(); + } revertMenu->setEnabled(true); QAction* revertAction = revertMenu->addAction(QObject::tr("Entity")); revertAction->setToolTip(QObject::tr("This will revert all component properties on this entity to the last saved.")); - QObject::connect(revertAction, &QAction::triggered, [this, relevantEntities] + QObject::connect(revertAction, &QAction::triggered, [relevantEntities] { SliceEditorEntityOwnershipServiceRequestBus::Broadcast( &SliceEditorEntityOwnershipServiceRequests::ResetEntitiesToSliceDefaults, relevantEntities); @@ -4394,7 +4408,6 @@ namespace AzToolsFramework { ResetDrag(event); - Qt::MouseButtons realButtons = QApplication::mouseButtons(); if (QApplication::overrideCursor() && !(event->buttons() & Qt::LeftButton)) { QApplication::restoreOverrideCursor(); @@ -4606,7 +4619,6 @@ namespace AzToolsFramework bool EntityPropertyEditor::GetComponentsAtDropEventPosition(QDropEvent* event, AZ::Entity::ComponentArrayType& targetComponents) { const QPoint globalPos(mapToGlobal(event->pos())); - const QRect globalRect(GetInflatedRectFromPoint(globalPos, kComponentEditorDropTargetPrecision)); //get component editor(s) where drop will occur ComponentEditor* targetComponentEditor = GetReorderDropTarget( diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.cpp index fccabbf205..7fefb04872 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.cpp @@ -236,7 +236,7 @@ namespace AzToolsFramework AZ_Assert(container, "This node is NOT a container node!"); const AZ::SerializeContext::ClassElement* containerClassElement = container->GetElement(container->GetDefaultElementNameCrc()); - AZ_Assert(containerClassElement != NULL, "We should have a valid default element in the container, otherwise we don't know what elements to make!"); + AZ_Assert(containerClassElement != nullptr, "We should have a valid default element in the container, otherwise we don't know what elements to make!"); if (!containerClassElement) { return false; @@ -261,7 +261,7 @@ namespace AzToolsFramework AZ_Assert(newDataAddress, "Faliled to create new element for the continer!"); // cast to base type (if needed) void* basePtr = m_context->DownCast(newDataAddress, classData->m_typeId, containerClassElement->m_typeId, classData->m_azRtti, containerClassElement->m_azRtti); - AZ_Assert(basePtr != NULL, "Can't cast container element %s to %s, make sure classes are registered in the system and not generics!", classData->m_name, containerClassElement->m_name); + AZ_Assert(basePtr != nullptr, "Can't cast container element %s to %s, make sure classes are registered in the system and not generics!", classData->m_name, containerClassElement->m_name); *reinterpret_cast(dataAddress) = basePtr; // store the pointer in the class /// Store the element in the container container->StoreElement(GetInstance(i), dataAddress); @@ -608,7 +608,7 @@ namespace AzToolsFramework AZ_Assert(sc, "sc can't be NULL!"); AZ_Assert(m_rootInstances.size() > 0, "No root instances have been added to this hierarchy!"); - m_curParentNode = NULL; + m_curParentNode = nullptr; m_isMerging = false; m_instances.clear(); m_children.clear(); @@ -636,7 +636,7 @@ namespace AzToolsFramework for (size_t i = 1; i < m_rootInstances.size(); ++i) { - m_curParentNode = NULL; + m_curParentNode = nullptr; m_isMerging = true; m_matched = false; sc->EnumerateInstanceConst( @@ -956,7 +956,7 @@ namespace AzToolsFramework } } - InstanceDataNode* node = NULL; + InstanceDataNode* node = nullptr; // Extra steps need to be taken when we are merging if (m_isMerging) { diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.cpp index 4d95479e33..c07191fda2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.cpp @@ -349,7 +349,7 @@ namespace AzToolsFramework if (pAssetType) { - (*pAssetType) = 0; + (*pAssetType) = nullptr; } if (!pData) @@ -529,7 +529,7 @@ namespace AzToolsFramework if (m_errorButton) { // If the button is already active, disconnect its pressed handler so we don't get multiple popups - disconnect(m_errorButton, &QPushButton::pressed, this, 0); + disconnect(m_errorButton, &QPushButton::pressed, this, nullptr); } else { @@ -548,7 +548,7 @@ namespace AzToolsFramework // Connect pressed to opening the error dialog // Must capture this for call to QObject::connect - connect(m_errorButton, &QPushButton::pressed, this, [this, errorLog]() { + connect(m_errorButton, &QPushButton::pressed, this, [errorLog]() { // Create the dialog for the log panel, and set the layout QDialog* logDialog = new QDialog(); logDialog->setMinimumSize(1024, 400); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.cpp index 094204e5a6..4a1e969e41 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.cpp @@ -93,24 +93,24 @@ namespace AzToolsFramework void BoolPropertyComboBoxHandler::ConsumeAttribute(PropertyBoolComboBoxCtrl* GUI, AZ::u32 attrib, PropertyAttributeReader* attrValue, const char* debugName) { - (void)GUI; - (void)attrib; - (void)attrValue; - (void)debugName; + AZ_UNUSED(GUI); + AZ_UNUSED(attrib); + AZ_UNUSED(attrValue); + AZ_UNUSED(debugName); } void BoolPropertyComboBoxHandler::WriteGUIValuesIntoProperty(size_t index, PropertyBoolComboBoxCtrl* GUI, property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); bool val = GUI->value(); instance = static_cast(val); } bool BoolPropertyComboBoxHandler::ReadValuesIntoGUI(size_t index, PropertyBoolComboBoxCtrl* GUI, const property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); bool val = instance; GUI->setValue(val); return false; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.cpp index 84d7d37585..38a7f426db 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.cpp @@ -137,7 +137,7 @@ namespace AzToolsFramework Q_UNUSED(debugName) } - AZ::u32 U32CRCHandler::GetHandlerName(void) const + AZ::u32 U32CRCHandler::GetHandlerName() const { return AZ::Edit::UIHandlers::Crc; } @@ -173,16 +173,16 @@ namespace AzToolsFramework void U32CRCHandler::WriteGUIValuesIntoProperty(size_t index, PropertyCRCCtrl* GUI, AZ::u32& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); AZ::u32 val = GUI->value(); instance = static_cast(val); } bool U32CRCHandler::ReadValuesIntoGUI(size_t index, PropertyCRCCtrl* GUI, const AZ::u32& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); GUI->setValue(instance); return false; } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.cpp index 2534df50b6..13c5c8bfac 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.cpp @@ -373,8 +373,8 @@ namespace AzToolsFramework void AZColorPropertyHandler::WriteGUIValuesIntoProperty(size_t index, PropertyColorCtrl* GUI, property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); QColor val = GUI->value(); AZ::Color asAZColor((float)val.redF(), (float)val.greenF(), (float)val.blueF(), (float)val.alphaF()); instance = static_cast(asAZColor); @@ -382,8 +382,8 @@ namespace AzToolsFramework bool AZColorPropertyHandler::ReadValuesIntoGUI(size_t index, PropertyColorCtrl* GUI, const property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); AZ::Vector4 asVector4 = static_cast(instance); QColor asQColor; asQColor.setRedF((qreal)asVector4.GetX()); @@ -410,8 +410,8 @@ namespace AzToolsFramework } void Vector3ColorPropertyHandler::WriteGUIValuesIntoProperty(size_t index, PropertyColorCtrl* GUI, property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); QColor val = GUI->value(); AZ::Vector3 asVector3((float)val.redF(), (float)val.greenF(), (float)val.blueF()); instance = static_cast(asVector3); @@ -419,8 +419,8 @@ namespace AzToolsFramework bool Vector3ColorPropertyHandler::ReadValuesIntoGUI(size_t index, PropertyColorCtrl* GUI, const property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); AZ::Vector3 asVector3 = static_cast(instance); QColor asQColor; asQColor.setRedF((qreal)asVector3.GetX()); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.cpp index 0b9120bcce..64ba3b604b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.cpp @@ -305,24 +305,24 @@ namespace AzToolsFramework void doublePropertySliderHandler::WriteGUIValuesIntoProperty(size_t index, PropertyDoubleSliderCtrl* GUI, property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); double val = GUI->value(); instance = static_cast(val); } void floatPropertySliderHandler::WriteGUIValuesIntoProperty(size_t index, PropertyDoubleSliderCtrl* GUI, property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); double val = GUI->value(); instance = static_cast(val); } bool doublePropertySliderHandler::ReadValuesIntoGUI(size_t index, PropertyDoubleSliderCtrl* GUI, const property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); GUI->blockSignals(true); GUI->setValue(instance); GUI->blockSignals(false); @@ -331,8 +331,8 @@ namespace AzToolsFramework bool floatPropertySliderHandler::ReadValuesIntoGUI(size_t index, PropertyDoubleSliderCtrl* GUI, const property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); GUI->blockSignals(true); GUI->setValue(instance); GUI->blockSignals(false); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.cpp index 58f1192f7c..6842b50d80 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.cpp @@ -363,32 +363,32 @@ namespace AzToolsFramework void doublePropertySpinboxHandler::WriteGUIValuesIntoProperty(size_t index, PropertyDoubleSpinCtrl* GUI, property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); double val = GUI->value() / GUI->multiplier(); instance = static_cast(val); } void floatPropertySpinboxHandler::WriteGUIValuesIntoProperty(size_t index, PropertyDoubleSpinCtrl* GUI, property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); double val = GUI->value() / GUI->multiplier(); instance = static_cast(val); } bool doublePropertySpinboxHandler::ReadValuesIntoGUI(size_t index, PropertyDoubleSpinCtrl* GUI, const property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); GUI->setValue(instance * GUI->multiplier()); return false; } bool floatPropertySpinboxHandler::ReadValuesIntoGUI(size_t index, PropertyDoubleSpinCtrl* GUI, const property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); GUI->setValue(instance * GUI->multiplier()); return false; } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI.h index 415a87f984..9ab896ab9d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI.h @@ -5,7 +5,10 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ +#pragma once + #include +#include #include #include #include @@ -14,8 +17,6 @@ #include #include "PropertyEditorAPI_Internals.h" -#pragma once - class QWidget; class QCheckBox; class QLabel; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI_Internals.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI_Internals.h index 8b53121776..ecd27baed4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI_Internals.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI_Internals.h @@ -25,6 +25,8 @@ class QColor; class QString; class QPoint; +AZ_DECLARE_BUDGET(AzToolsFramework); + namespace AzToolsFramework { namespace Components diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.cpp index 424a110c49..f98638fd69 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.cpp @@ -518,8 +518,8 @@ namespace AzToolsFramework void EntityIdPropertyHandler::WriteGUIValuesIntoProperty(size_t index, PropertyEntityIdCtrl* GUI, property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); instance = GUI->GetEntityId(); } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.cpp index 678693ea32..2eabe64333 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.cpp @@ -225,7 +225,7 @@ namespace AzToolsFramework if (!pHandlerFound) { // does a base class have a handler? - AZ::SerializeContext* sc = NULL; + AZ::SerializeContext* sc = nullptr; EBUS_EVENT_RESULT(sc, AZ::ComponentApplicationBus, GetSerializeContext); AZStd::vector classes; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.cpp index ea02e93c96..feb2a9e2ad 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.cpp @@ -142,16 +142,16 @@ namespace AzToolsFramework void StringPropertyLineEditHandler::WriteGUIValuesIntoProperty(size_t index, PropertyStringLineEditCtrl* GUI, property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); AZStd::string val = GUI->value(); instance = static_cast(val); } bool StringPropertyLineEditHandler::ReadValuesIntoGUI(size_t index, PropertyStringLineEditCtrl* GUI, const property_t& instance, InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); AZStd::string val = instance; GUI->setValue(val); return false; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.cpp index 87df1eff1b..0ad874d1f6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.cpp @@ -254,9 +254,9 @@ namespace AzToolsFramework void QueueInvalidationIfSharedData(InternalReflectedPropertyEditorEvents* sender, PropertyModificationRefreshLevel level, const AZStd::set& sourceInstanceSet) override; // PropertyEditorGUIMessages::Bus::Handler - virtual void RequestWrite(QWidget* editorGUI) override; - virtual void AddElementsToParentContainer(QWidget* editorGUI, size_t numElements, const InstanceDataNode::FillDataClassCallback& fillDataCallback) override; - virtual void RequestRefresh(PropertyModificationRefreshLevel) override; + void RequestWrite(QWidget* editorGUI) override; + void AddElementsToParentContainer(QWidget* editorGUI, size_t numElements, const InstanceDataNode::FillDataClassCallback& fillDataCallback) override; + void RequestRefresh(PropertyModificationRefreshLevel) override; void RequestPropertyNotify(QWidget* editorGUI) override; void OnEditingFinished(QWidget* editorGUI) override; }; @@ -890,7 +890,7 @@ namespace AzToolsFramework { instance.Build(m_impl->m_context, AZ::SerializeContext::ENUM_ACCESS_FOR_READ, m_impl->m_dynamicEditDataProvider, m_impl->m_editorParent); m_impl->FilterNode(instance.GetRootNode(), filter); - m_impl->AddProperty(instance.GetRootNode(), NULL, 0); + m_impl->AddProperty(instance.GetRootNode(), nullptr, 0); } m_impl->UpdateExpansionState(); @@ -1077,7 +1077,7 @@ namespace AzToolsFramework PropertyRowWidget* ReflectedPropertyEditor::Impl::CreateOrPullFromPool() { - PropertyRowWidget* newWidget = NULL; + PropertyRowWidget* newWidget = nullptr; if (m_widgetPool.empty()) { newWidget = aznew PropertyRowWidget(m_containerWidget); @@ -1184,7 +1184,7 @@ namespace AzToolsFramework { // re-create the tab order, based on vertical position in the list. - QWidget* pLastWidget = NULL; + QWidget* pLastWidget = nullptr; for (AZStd::size_t pos = 0; pos < m_impl->m_widgetsInDisplayOrder.size(); ++pos) { @@ -2141,7 +2141,7 @@ namespace AzToolsFramework AZStd::shared_ptr keyToAdd(nullptr); bool createdElement = pContainerNode->CreateContainerElement(CreateContainerElementSelectClassCallback, - [this, pContainerNode, promptForValue, &keyToAdd](void* dataPtr, const AZ::SerializeContext::ClassElement* classElement, bool noDefaultData, AZ::SerializeContext*) -> bool + [pContainerNode, promptForValue, &keyToAdd](void* dataPtr, const AZ::SerializeContext::ClassElement* classElement, bool noDefaultData, AZ::SerializeContext*) -> bool { bool handled = false; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.cpp index 849b8d1705..e5fd3351ae 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.cpp @@ -195,17 +195,17 @@ namespace AzToolsFramework , m_criteriaOperator(FilterOperatorType::Or) , m_suppressCriteriaChanged(false) { - m_mainLayout = new QVBoxLayout(NULL); + m_mainLayout = new QVBoxLayout(nullptr); m_mainLayout->setSizeConstraint(QLayout::SetMinimumSize); m_mainLayout->setContentsMargins(0, 0, 0, 0); - QHBoxLayout* secondaryLayout = new QHBoxLayout(NULL); + QHBoxLayout* secondaryLayout = new QHBoxLayout(nullptr); secondaryLayout->setSizeConstraint(QLayout::SetMinimumSize); secondaryLayout->setContentsMargins(0, 0, 0, 0); - m_filterLayout = new QHBoxLayout(NULL); + m_filterLayout = new QHBoxLayout(nullptr); m_tagLayout = new FlowLayout(nullptr); m_tagLayout->setAlignment(Qt::AlignLeft); - QHBoxLayout* filterTextLayout = new QHBoxLayout(NULL); + QHBoxLayout* filterTextLayout = new QHBoxLayout(nullptr); filterTextLayout->setSizeConstraint(QLayout::SetMinimumSize); filterTextLayout->setContentsMargins(0, 0, 0, 0); filterTextLayout->setSpacing(0); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.cpp index 04754ac8a4..76f91b438e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.cpp @@ -2525,11 +2525,11 @@ namespace AzToolsFramework { // This is an approximate measurement of how much this slice proliferates within the currently-loaded level. // Down the line we'll actually query the asset DB's dependency tree, summing up instances. - + AZ_UNUSED(levelSlice); // Prevent unused warning in release builds AZ_Warning("SlicePush", levelSlice, "SlicePushWidget::CalculateReferenceCount could not find root slice, displayed counts will be inaccurate!"); size_t instanceCount = 0; AZ::Data::AssetBus::EnumerateHandlersId(assetId, - [&instanceCount, assetId, levelSlice] (AZ::Data::AssetEvents* handler) -> bool + [&instanceCount, assetId] (AZ::Data::AssetEvents* handler) -> bool { AZ::SliceComponent* component = azrtti_cast(handler); if (component) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.hxx index 64debe12bb..496f8b439f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.hxx @@ -111,7 +111,6 @@ namespace AzToolsFramework QTreeWidget* m_sliceDependentsTree; ///< Tree widget for fields (left side) QTreeWidget* m_sliceDependencyTree; ///< Tree widget for slice targets (right side) - QLabel* m_infoLabel; ///< Label above slice tree describing selection QVBoxLayout* m_bottomLayout; ///< Bottom layout containing optional status messages, legend and buttons }; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.cpp index 75c8c607c6..e71910f4fc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.cpp @@ -41,7 +41,7 @@ namespace AzToolsFramework { } - virtual ~QTreeViewStateSaverData() + ~QTreeViewStateSaverData() override { } @@ -213,7 +213,7 @@ namespace AzToolsFramework } } - void ApplySnapshot(QTreeView* treeView) + void ApplySnapshot(QTreeView* treeView) override { Q_ASSERT(treeView && treeView->model()); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.hxx index 408791558a..f0f6711cda 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.hxx @@ -132,7 +132,6 @@ namespace AzToolsFramework QPointer m_dataModel; QPointer m_selectionModel; AZStd::intrusive_ptr m_data; - bool m_defaultToExpandIndexes = false; Q_DISABLE_COPY(QTreeViewStateSaver) }; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoCacheInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoCacheInterface.h index 39b23bc449..ef3d6c191d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoCacheInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoCacheInterface.h @@ -9,8 +9,11 @@ #pragma once #include +#include #include +AZ_DECLARE_BUDGET(AzToolsFramework); + namespace AzToolsFramework { namespace UndoSystem diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.cpp index 6608e87784..8d30359562 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.cpp @@ -115,7 +115,7 @@ namespace UnitTest handled, AzToolsFramework::GetEntityContextId(), &EditorInteractionSystemViewportSelectionRequestBus::Events::InternalHandleMouseViewportInteraction, AzToolsFramework::ViewportInteraction::MouseInteractionEvent( - mouseInteraction, AzToolsFramework::ViewportInteraction::MouseEvent::Down)); + mouseInteraction, AzToolsFramework::ViewportInteraction::MouseEvent::Down, /*captured=*/false)); return handled; } } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/EditorContextMenu.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/EditorContextMenu.cpp index ff13bce531..394aa3fe5c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/EditorContextMenu.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/EditorContextMenu.cpp @@ -41,7 +41,8 @@ namespace AzToolsFramework ViewportInteraction::QPointFromScreenPoint(mouseInteraction.m_mouseInteraction.m_mousePick.m_screenCoordinates); // if the mouse hasn't moved, open the pop-up menu - if ((currentScreenCoords - contextMenu.m_clickPoint).manhattanLength() < ed_contextMenuDisplayThreshold) + if ((currentScreenCoords - contextMenu.m_clickPoint).manhattanLength() < ed_contextMenuDisplayThreshold && + !mouseInteraction.m_captured) { QWidget* parent = nullptr; ViewportInteraction::MainEditorViewportInteractionRequestBus::EventResult( diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportMessages.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportMessages.h index 543d5fb3a5..f6ba87a0ec 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportMessages.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportMessages.h @@ -275,9 +275,7 @@ namespace AzToolsFramework virtual void BeginCursorCapture() = 0; //! Restores the cursor and ends locking it in place, allowing it to be moved freely. virtual void EndCursorCapture() = 0; - //! Gets the most recent recorded cursor position in the viewport in screen space coordinates. - virtual AzFramework::ScreenPoint ViewportCursorScreenPosition() = 0; - //! Is mouse over viewport. + //! Is the mouse over the viewport. virtual bool IsMouseOver() const = 0; protected: diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportTypes.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportTypes.h index 1cfb0dbe74..bc1d277609 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportTypes.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportTypes.h @@ -212,9 +212,10 @@ namespace AzToolsFramework static void Reflect(AZ::SerializeContext& context); //! Constructor to create a default MouseInteractionEvent - MouseInteractionEvent(MouseInteraction mouseInteraction, const MouseEvent mouseEvent) + MouseInteractionEvent(MouseInteraction mouseInteraction, const MouseEvent mouseEvent, const bool captured) : m_mouseInteraction(std::move(mouseInteraction)) , m_mouseEvent(mouseEvent) + , m_captured(captured) { } @@ -228,6 +229,7 @@ namespace AzToolsFramework MouseInteraction m_mouseInteraction; //!< Mouse state. MouseEvent m_mouseEvent; //!< Mouse event. + bool m_captured = false; //!< Is the mouse cursor being captured during the event. //! Special friend function to return the mouse wheel delta (scroll amount) //! if the event was of type MouseEvent::Wheel. diff --git a/Code/Framework/AzToolsFramework/Tests/AssetFileInfoListComparison.cpp b/Code/Framework/AzToolsFramework/Tests/AssetFileInfoListComparison.cpp index 5ad68a2c1c..ad80b5c39d 100644 --- a/Code/Framework/AzToolsFramework/Tests/AssetFileInfoListComparison.cpp +++ b/Code/Framework/AzToolsFramework/Tests/AssetFileInfoListComparison.cpp @@ -65,7 +65,8 @@ namespace UnitTest AzToolsFramework::AssetSeedManager assetSeedManager; AzFramework::AssetRegistry assetRegistry; - const AZStd::string assetRoot = AzToolsFramework::PlatformAddressedAssetCatalog::GetAssetRootForPlatform(AzFramework::PlatformId::PC); + const AZ::PlatformId thisPlatform = AZ::PlatformHelper::GetPlatformIdFromName(AZ::OSPlatformToDefaultAssetPlatform(AZ_TRAIT_OS_PLATFORM_CODENAME)); + const AZStd::string assetRoot = AzToolsFramework::PlatformAddressedAssetCatalog::GetAssetRootForPlatform(thisPlatform); for (int idx = 0; idx < TotalAssets; idx++) { @@ -113,17 +114,18 @@ namespace UnitTest // Currently I am serializing the asset registry to disk // and invoking the LoadCatalog API to populate the asset catalog created by the azframework app. - AZStd::string pcCatalogFile = AzToolsFramework::PlatformAddressedAssetCatalog::GetCatalogRegistryPathForPlatform(AzFramework::PlatformId::PC); + const AZStd::string catalogFile = AzToolsFramework::PlatformAddressedAssetCatalog::GetCatalogRegistryPathForPlatform(thisPlatform); - bool catalogSaved = AzFramework::AssetCatalog::SaveCatalog(pcCatalogFile.c_str(), &assetRegistry); + bool catalogSaved = AzFramework::AssetCatalog::SaveCatalog(catalogFile.c_str(), &assetRegistry); EXPECT_TRUE(catalogSaved) << "Unable to save the asset catalog file.\n"; - m_pcCatalog = new AzToolsFramework::PlatformAddressedAssetCatalog(AzFramework::PlatformId::PC); + m_catalog = new AzToolsFramework::PlatformAddressedAssetCatalog(thisPlatform); - assetSeedManager.AddSeedAsset(m_assets[0], AzFramework::PlatformFlags::Platform_PC); - assetSeedManager.AddSeedAsset(m_assets[1], AzFramework::PlatformFlags::Platform_PC); + const auto thisPlatformFlags = AZ::PlatformHelper::GetPlatformFlag(AZ::OSPlatformToDefaultAssetPlatform(AZ_TRAIT_OS_PLATFORM_CODENAME)); + assetSeedManager.AddSeedAsset(m_assets[0], thisPlatformFlags); + assetSeedManager.AddSeedAsset(m_assets[1], thisPlatformFlags); - bool firstAssetFileInfoListSaved = assetSeedManager.SaveAssetFileInfo(TempFiles[FileIndex::FirstAssetFileInfoList], AzFramework::PlatformFlags::Platform_PC, {}); + bool firstAssetFileInfoListSaved = assetSeedManager.SaveAssetFileInfo(TempFiles[FileIndex::FirstAssetFileInfoList], thisPlatformFlags, {}); EXPECT_TRUE(firstAssetFileInfoListSaved); // Modify contents of asset2 @@ -156,10 +158,10 @@ namespace UnitTest GTEST_FATAL_FAILURE_(AZStd::string::format("Unable to open asset file.\n").c_str()); } - assetSeedManager.RemoveSeedAsset(m_assets[0], AzFramework::PlatformFlags::Platform_PC); - assetSeedManager.AddSeedAsset(m_assets[5], AzFramework::PlatformFlags::Platform_PC); + assetSeedManager.RemoveSeedAsset(m_assets[0], thisPlatformFlags); + assetSeedManager.AddSeedAsset(m_assets[5], thisPlatformFlags); - bool secondAssetFileInfoListSaved = assetSeedManager.SaveAssetFileInfo(TempFiles[FileIndex::SecondAssetFileInfoList], AzFramework::PlatformFlags::Platform_PC, {}); + bool secondAssetFileInfoListSaved = assetSeedManager.SaveAssetFileInfo(TempFiles[FileIndex::SecondAssetFileInfoList], thisPlatformFlags, {}); EXPECT_TRUE(secondAssetFileInfoListSaved); } @@ -202,7 +204,7 @@ namespace UnitTest AZ_TEST_STOP_TRACE_SUPPRESSION(1); // deleting from asset cache folder } - delete m_pcCatalog; + delete m_catalog; m_application->Stop(); delete m_application; @@ -754,7 +756,7 @@ namespace UnitTest ToolsTestApplication* m_application = nullptr; UnitTest::ScopedTemporaryDirectory m_tempDir; - AzToolsFramework::PlatformAddressedAssetCatalog* m_pcCatalog = nullptr; + AzToolsFramework::PlatformAddressedAssetCatalog* m_catalog = nullptr; AZ::IO::FileIOStream m_fileStreams[TotalAssets]; AZ::Data::AssetId m_assets[TotalAssets]; AZStd::string m_assetsPath[TotalAssets]; diff --git a/Code/Framework/AzToolsFramework/Tests/AssetSeedManager.cpp b/Code/Framework/AzToolsFramework/Tests/AssetSeedManager.cpp index 4083608370..24488f3ed3 100644 --- a/Code/Framework/AzToolsFramework/Tests/AssetSeedManager.cpp +++ b/Code/Framework/AzToolsFramework/Tests/AssetSeedManager.cpp @@ -219,7 +219,7 @@ namespace UnitTest delete m_application; } - AZ::Data::AssetInfo GetAssetInfoById(const AZ::Data::AssetId& id) + AZ::Data::AssetInfo GetAssetInfoById(const AZ::Data::AssetId& id) override { auto foundIter = m_assetRegistry->m_assetIdToInfo.find(id); if (foundIter != m_assetRegistry->m_assetIdToInfo.end()) diff --git a/Code/Framework/AzToolsFramework/Tests/ComponentAddRemove.cpp b/Code/Framework/AzToolsFramework/Tests/ComponentAddRemove.cpp index 3225639fff..e416efc5c6 100644 --- a/Code/Framework/AzToolsFramework/Tests/ComponentAddRemove.cpp +++ b/Code/Framework/AzToolsFramework/Tests/ComponentAddRemove.cpp @@ -1117,7 +1117,6 @@ namespace UnitTest const char* GetAppRoot() const override { return nullptr; } const char* GetEngineRoot() const override { return nullptr; } const char* GetExecutableFolder() const override { return nullptr; } - Debug::DrillerManager* GetDrillerManager() override { return nullptr; } void EnumerateEntities(const EntityCallback& /*callback*/) override {} void QueryApplicationType(AZ::ApplicationTypeQuery& /*appType*/) const override {} ////////////////////////////////////////////////////////////////////////// @@ -1203,7 +1202,7 @@ namespace UnitTest AZ_COMPONENT(HiddenComponent, "{E4D2AD8B-3930-46FC-837A-8DDFCA0FB1AF}", AzToolsFramework::Components::EditorComponentBase); static Component* s_wasDeleted; - virtual ~HiddenComponent() + ~HiddenComponent() override { s_wasDeleted = this; } diff --git a/Code/Framework/AzToolsFramework/Tests/EditorTransformComponentSelectionTests.cpp b/Code/Framework/AzToolsFramework/Tests/EditorTransformComponentSelectionTests.cpp index e95f7aa271..c1c158d0f9 100644 --- a/Code/Framework/AzToolsFramework/Tests/EditorTransformComponentSelectionTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/EditorTransformComponentSelectionTests.cpp @@ -1579,7 +1579,7 @@ namespace UnitTest /////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Given AZ::Entity* entity = nullptr; - const AZ::EntityId entityId = CreateDefaultEditorEntity("Entity", &entity); + CreateDefaultEditorEntity("Entity", &entity); entity->Deactivate(); const auto* entityInfoComponent = entity->CreateComponent(); diff --git a/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntitySearchComponentTests.cpp b/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntitySearchComponentTests.cpp index db92085e98..2c757f8e9e 100644 --- a/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntitySearchComponentTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntitySearchComponentTests.cpp @@ -66,7 +66,7 @@ namespace AzToolsFramework { } - virtual ~EntitySearch_TestComponent1() override + ~EntitySearch_TestComponent1() override {} private: @@ -123,7 +123,7 @@ namespace AzToolsFramework { } - virtual ~EntitySearch_TestComponent2() override + ~EntitySearch_TestComponent2() override {} private: diff --git a/Code/Framework/AzToolsFramework/Tests/EntityIdQLabelTests.cpp b/Code/Framework/AzToolsFramework/Tests/EntityIdQLabelTests.cpp index b6b428cc11..486224c011 100644 --- a/Code/Framework/AzToolsFramework/Tests/EntityIdQLabelTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/EntityIdQLabelTests.cpp @@ -55,7 +55,7 @@ namespace UnitTest AzToolsFramework::EditorRequests::Bus::Handler::BusConnect(); } - ~EditorRequestHandlerTest() + ~EditorRequestHandlerTest() override { AzToolsFramework::EditorRequests::Bus::Handler::BusDisconnect(); } diff --git a/Code/Framework/AzToolsFramework/Tests/EntityInspectorTests.cpp b/Code/Framework/AzToolsFramework/Tests/EntityInspectorTests.cpp index 9af74c7996..0fbc7eba98 100644 --- a/Code/Framework/AzToolsFramework/Tests/EntityInspectorTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/EntityInspectorTests.cpp @@ -67,7 +67,7 @@ namespace UnitTest services.push_back(AZ_CRC("InspectorTestService1")); } - virtual ~Inspector_TestComponent1() override + ~Inspector_TestComponent1() override { } @@ -136,7 +136,7 @@ namespace UnitTest services.push_back(AZ_CRC("InspectorTestService2")); } - virtual ~Inspector_TestComponent2() override + ~Inspector_TestComponent2() override { } @@ -205,7 +205,7 @@ namespace UnitTest services.push_back(AZ_CRC("InspectorTestService3")); } - virtual ~Inspector_TestComponent3() override + ~Inspector_TestComponent3() override { } diff --git a/Code/Framework/AzToolsFramework/Tests/FileFunc.cpp b/Code/Framework/AzToolsFramework/Tests/FileFunc.cpp index 80b1576b33..94b32f9e41 100644 --- a/Code/Framework/AzToolsFramework/Tests/FileFunc.cpp +++ b/Code/Framework/AzToolsFramework/Tests/FileFunc.cpp @@ -26,26 +26,12 @@ #include #include -namespace AzFramework -{ - namespace FileFunc - { - namespace Internal - { - AZ::Outcome UpdateCfgContents(AZStd::string& cfgContents, const AZStd::list& updateRules); - AZ::Outcome UpdateCfgContents(AZStd::string& cfgContents, const AZStd::string& header, const AZStd::string& key, const AZStd::string& value); - AZ::Outcome WriteJsonToStream(const rapidjson::Document& document, AZ::IO::GenericStream& stream, - WriteJsonSettings settings = WriteJsonSettings{}); - } - } -} - namespace UnitTest { class FileFuncTest : public ScopedAllocatorSetupFixture { public: - void SetUp() + void SetUp() override { m_prevFileIO = AZ::IO::FileIOBase::GetInstance(); AZ::IO::FileIOBase::SetInstance(nullptr); @@ -62,110 +48,6 @@ namespace UnitTest AZ::IO::FileIOBase* m_prevFileIO; }; - TEST_F(FileFuncTest, UpdateCfgContents_InValidInput_Fail) - { - AZStd::string cfgContents = "[Foo]\n"; - AZStd::list updateRules; - - updateRules.push_back(AZStd::string("Foo/one*1")); - auto result = AzFramework::FileFunc::Internal::UpdateCfgContents(cfgContents, updateRules); - ASSERT_FALSE(result.IsSuccess()); - } - - TEST_F(FileFuncTest, UpdateCfgContents_ValidInput_Success) - { - AZStd::string cfgContents = - "[Foo]\n" - "one =2 \n" - "two= 3\n" - "three = 4\n" - "\n" - "[Bar]\n" - "four=3\n" - "five=3\n" - "six=3\n" - "eight=3\n"; - - AZStd::list updateRules; - - updateRules.push_back(AZStd::string("Foo/one=1")); - updateRules.push_back(AZStd::string("Foo/two=2")); - updateRules.push_back(AZStd::string("three=3")); - auto result = AzFramework::FileFunc::Internal::UpdateCfgContents(cfgContents, updateRules); - EXPECT_TRUE(result.IsSuccess()); - - AZStd::string compareCfgContents = - "[Foo]\n" - "one =1\n" - "two= 2\n" - "three = 3\n" - "\n" - "[Bar]\n" - "four=3\n" - "five=3\n" - "six=3\n" - "eight=3\n"; - - bool equals = cfgContents.compare(compareCfgContents) == 0; - ASSERT_TRUE(equals); - } - - TEST_F(FileFuncTest, UpdateCfgContents_ValidInputNewEntrySameHeader_Success) - { - AZStd::string cfgContents = - "[Foo]\n" - "one =2 \n" - "two= 3\n" - "three = 4\n"; - - AZStd::string header("[Foo]"); - AZStd::string key("four"); - AZStd::string value("4"); - auto result = AzFramework::FileFunc::Internal::UpdateCfgContents(cfgContents, header, key, value); - EXPECT_TRUE(result.IsSuccess()); - - AZStd::string compareCfgContents = - "[Foo]\n" - "four=4\n" - "one =2 \n" - "two= 3\n" - "three = 4\n"; - - bool equals = cfgContents.compare(compareCfgContents) == 0; - ASSERT_TRUE(equals); - } - - TEST_F(FileFuncTest, UpdateCfgContents_ValidInputNewEntryDifferentHeader_Success) - { - AZStd::string cfgContents = - ";Sample Data\n" - "[Foo]\n" - "one =2 \n" - "two= 3\n" - "three = 4\n"; - - AZStd::list updateRules; - - AZStd::string header("[Bar]"); - AZStd::string key("four"); - AZStd::string value("4"); - auto result = AzFramework::FileFunc::Internal::UpdateCfgContents(cfgContents, header, key, value); - EXPECT_TRUE(result.IsSuccess()); - - AZStd::string compareCfgContents = - ";Sample Data\n" - "[Foo]\n" - "one =2 \n" - "two= 3\n" - "three = 4\n" - "\n" - "[Bar]\n" - "four=4\n"; - - bool equals = cfgContents.compare(compareCfgContents) == 0; - ASSERT_TRUE(equals); - } - static bool CreateDummyFile(const QString& fullPathToFile, const QString& tempStr = {}) { QFileInfo fi(fullPathToFile); @@ -268,213 +150,4 @@ namespace UnitTest ASSERT_NE(findElement, result.GetValue().end()); } } - - class JsonFileFuncTest - : public FrameworkApplicationFixture - { - protected: - void SetUp() override - { - FrameworkApplicationFixture::SetUp(); - - AZ::SettingsRegistryInterface* registry = AZ::SettingsRegistry::Get(); - auto projectPathKey = - AZ::SettingsRegistryInterface::FixedValueString(AZ::SettingsRegistryMergeUtils::BootstrapSettingsRootKey) + "/project_path"; - registry->Set(projectPathKey, "AutomatedTesting"); - AZ::SettingsRegistryMergeUtils::MergeSettingsToRegistry_AddRuntimeFilePaths(*registry); - - m_serializeContext = AZStd::make_unique(); - m_jsonRegistrationContext = AZStd::make_unique(); - m_jsonSystemComponent = AZStd::make_unique(); - - m_serializationSettings.m_serializeContext = m_serializeContext.get(); - m_serializationSettings.m_registrationContext = m_jsonRegistrationContext.get(); - - m_deserializationSettings.m_serializeContext = m_serializeContext.get(); - m_deserializationSettings.m_registrationContext = m_jsonRegistrationContext.get(); - - m_jsonSystemComponent->Reflect(m_jsonRegistrationContext.get()); - } - - void TearDown() override - { - m_jsonRegistrationContext->EnableRemoveReflection(); - m_jsonSystemComponent->Reflect(m_jsonRegistrationContext.get()); - m_jsonRegistrationContext->DisableRemoveReflection(); - - m_jsonRegistrationContext.reset(); - m_serializeContext.reset(); - m_jsonSystemComponent.reset(); - - FrameworkApplicationFixture::TearDown(); - } - - AZStd::unique_ptr m_serializeContext; - AZStd::unique_ptr m_jsonRegistrationContext; - AZStd::unique_ptr m_jsonSystemComponent; - - AZ::JsonSerializerSettings m_serializationSettings; - AZ::JsonDeserializerSettings m_deserializationSettings; - }; - - TEST_F(JsonFileFuncTest, WriteJsonString_ValidJson_ExpectSuccess) - { - rapidjson::Document document; - document.SetObject(); - document.AddMember("a", 1, document.GetAllocator()); - document.AddMember("b", 2, document.GetAllocator()); - document.AddMember("c", 3, document.GetAllocator()); - - AZStd::string expectedJsonText = - R"({ - "a": 1, - "b": 2, - "c": 3 - })"; - expectedJsonText.erase(AZStd::remove_if(expectedJsonText.begin(), expectedJsonText.end(), ::isspace), expectedJsonText.end()); - - AZStd::string outString; - AZ::Outcome result = AzFramework::FileFunc::WriteJsonToString(document, outString); - EXPECT_TRUE(result.IsSuccess()); - - outString.erase(AZStd::remove_if(outString.begin(), outString.end(), ::isspace), outString.end()); - EXPECT_EQ(expectedJsonText, outString) << "expected:\n" << expectedJsonText.c_str() << "\nactual:\n" << outString.c_str(); - } - - TEST_F(JsonFileFuncTest, WriteJsonStream_ValidJson_ExpectSuccess) - { - rapidjson::Document document; - document.SetObject(); - document.AddMember("a", 1, document.GetAllocator()); - document.AddMember("b", 2, document.GetAllocator()); - document.AddMember("c", 3, document.GetAllocator()); - - AZStd::string expectedJsonText = - R"({ - "a": 1, - "b": 2, - "c": 3 - })"; - expectedJsonText.erase(AZStd::remove_if(expectedJsonText.begin(), expectedJsonText.end(), ::isspace), expectedJsonText.end()); - - AZStd::vector outBuffer; - AZ::IO::ByteContainerStream> outStream{ &outBuffer }; - AZ::Outcome result = AzFramework::FileFunc::Internal::WriteJsonToStream(document, outStream); - EXPECT_TRUE(result.IsSuccess()); - - outBuffer.push_back(0); - AZStd::string outString = outBuffer.data(); - outString.erase(AZStd::remove_if(outString.begin(), outString.end(), ::isspace), outString.end()); - EXPECT_EQ(expectedJsonText, outString) << "expected:\n" << expectedJsonText.c_str() << "\nactual:\n" << outString.c_str(); - } - - TEST_F(JsonFileFuncTest, WriteJsonFile_ValidJson_ExpectSuccess) - { - AZ::Test::ScopedAutoTempDirectory tempDir; - - rapidjson::Document document; - document.SetObject(); - document.AddMember("a", 1, document.GetAllocator()); - document.AddMember("b", 2, document.GetAllocator()); - document.AddMember("c", 3, document.GetAllocator()); - - AZStd::string expectedJsonText = - R"({ - "a": 1, - "b": 2, - "c": 3 - })"; - expectedJsonText.erase(AZStd::remove_if(expectedJsonText.begin(), expectedJsonText.end(), ::isspace), expectedJsonText.end()); - - AZStd::string pathStr; - AzFramework::StringFunc::Path::ConstructFull(tempDir.GetDirectory(), "test.json", pathStr, true); - - // Write the JSON to a file - AZ::IO::Path path(pathStr); - AZ::Outcome saveResult = AzFramework::FileFunc::WriteJsonFile(document, path); - EXPECT_TRUE(saveResult.IsSuccess()); - - // Verify that the contents of the file is what we expect - AZ::Outcome readResult = AZ::Utils::ReadFile(pathStr); - EXPECT_TRUE(readResult.IsSuccess()); - AZStd::string outString(readResult.TakeValue()); - outString.erase(AZStd::remove_if(outString.begin(), outString.end(), ::isspace), outString.end()); - EXPECT_EQ(outString, expectedJsonText); - - // Clean up - AZ::IO::FileIOBase::GetInstance()->Remove(path.c_str()); - } - - TEST_F(JsonFileFuncTest, ReadJsonString_ValidJson_ExpectSuccess) - { - const char* jsonText = - R"( - { - "a": 1, - "b": 2, - "c": 3 - })"; - - AZ::Outcome result = AzFramework::FileFunc::ReadJsonFromString(jsonText); - - EXPECT_TRUE(result.IsSuccess()); - EXPECT_TRUE(result.GetValue().IsObject()); - EXPECT_TRUE(result.GetValue().HasMember("a")); - EXPECT_TRUE(result.GetValue().HasMember("b")); - EXPECT_TRUE(result.GetValue().HasMember("c")); - EXPECT_EQ(result.GetValue()["a"].GetInt(), 1); - EXPECT_EQ(result.GetValue()["b"].GetInt(), 2); - EXPECT_EQ(result.GetValue()["c"].GetInt(), 3); - } - - TEST_F(JsonFileFuncTest, ReadJsonString_InvalidJson_ErrorReportsLineNumber) - { - const char* jsonText = - R"( - { - "a": "This line is missing a comma" - "b": 2, - "c": 3 - } - )"; - - AZ::Outcome result = AzFramework::FileFunc::ReadJsonFromString(jsonText); - - EXPECT_FALSE(result.IsSuccess()); - EXPECT_TRUE(result.GetError().find("JSON parse error at line 4:") == 0); - } - - TEST_F(JsonFileFuncTest, ReadJsonFile_ValidJson_ExpectSuccess) - { - AZ::Test::ScopedAutoTempDirectory tempDir; - - const char* inputJsonText = - R"({ - "a": 1, - "b": 2, - "c": 3 - })"; - - rapidjson::Document expectedDocument; - expectedDocument.SetObject(); - expectedDocument.AddMember("a", 1, expectedDocument.GetAllocator()); - expectedDocument.AddMember("b", 2, expectedDocument.GetAllocator()); - expectedDocument.AddMember("c", 3, expectedDocument.GetAllocator()); - - // Create test file - AZStd::string path; - AzFramework::StringFunc::Path::ConstructFull(tempDir.GetDirectory(), "test.json", path, true); - AZ::Outcome writeResult = AZ::Utils::WriteFile(inputJsonText, path); - EXPECT_TRUE(writeResult.IsSuccess()); - - - // Read the JSON from the test file - AZ::Outcome readResult = AzFramework::FileFunc::ReadJsonFile(path); - EXPECT_TRUE(readResult.IsSuccess()); - - EXPECT_EQ(expectedDocument, readResult.GetValue()); - - // Clean up - AZ::IO::FileIOBase::GetInstance()->Remove(path.c_str()); - } } // namespace UnitTest diff --git a/Code/Framework/AzToolsFramework/Tests/InstanceDataHierarchy.cpp b/Code/Framework/AzToolsFramework/Tests/InstanceDataHierarchy.cpp index 806a3bbab2..4d144d0d1b 100644 --- a/Code/Framework/AzToolsFramework/Tests/InstanceDataHierarchy.cpp +++ b/Code/Framework/AzToolsFramework/Tests/InstanceDataHierarchy.cpp @@ -104,15 +104,15 @@ namespace UnitTest if (AZ::EditContext* edit = serializeContext->GetEditContext()) { edit->Class("Test Component", "A test component") - ->DataElement(0, &TestComponent::m_float, "Float Field", "A float field") - ->DataElement(0, &TestComponent::m_string, "String Field", "A string field") - ->DataElement(0, &TestComponent::m_normalContainer, "Normal Container", "A container") - ->DataElement(0, &TestComponent::m_pointerContainer, "Pointer Container", "A container") - ->DataElement(0, &TestComponent::m_subData, "Struct Field", "A sub data type") + ->DataElement(nullptr, &TestComponent::m_float, "Float Field", "A float field") + ->DataElement(nullptr, &TestComponent::m_string, "String Field", "A string field") + ->DataElement(nullptr, &TestComponent::m_normalContainer, "Normal Container", "A container") + ->DataElement(nullptr, &TestComponent::m_pointerContainer, "Pointer Container", "A container") + ->DataElement(nullptr, &TestComponent::m_subData, "Struct Field", "A sub data type") ; edit->Class("Test Component", "A test component") - ->DataElement(0, &SubData::m_int, "Int Field", "An int") + ->DataElement(nullptr, &SubData::m_int, "Int Field", "An int") ; } } @@ -156,7 +156,7 @@ namespace UnitTest { } - ~InstanceDataHierarchyBasicTest() + ~InstanceDataHierarchyBasicTest() override { } @@ -481,7 +481,7 @@ namespace UnitTest { } - ~InstanceDataHierarchyCopyContainerChangesTest() + ~InstanceDataHierarchyCopyContainerChangesTest() override { } @@ -680,8 +680,8 @@ namespace UnitTest ; edit->Class("Enum Container", "Test container that has an external enum") - ->DataElement(0, &EnumContainer::m_enum, "Enum Field", "An enum value") - ->DataElement(0, &EnumContainer::m_enumVector, "Enum Vector Field", "A vector of enum values") + ->DataElement(nullptr, &EnumContainer::m_enum, "Enum Field", "An enum value") + ->DataElement(nullptr, &EnumContainer::m_enumVector, "Enum Vector Field", "A vector of enum values") ; } } @@ -776,21 +776,21 @@ namespace UnitTest { edit->Class("Group Test Component", "Testing normal groups and toggle groups") ->ClassElement(AZ::Edit::ClassElements::EditorData, "") - ->DataElement(0, &GroupTestComponent::m_float, "Float Field", "A float field") + ->DataElement(nullptr, &GroupTestComponent::m_float, "Float Field", "A float field") ->ClassElement(AZ::Edit::ClassElements::Group, "Normal Group") - ->DataElement(0, &GroupTestComponent::m_groupFloat, "Float Field", "A float field") - ->DataElement(0, &GroupTestComponent::m_subGroupForNormal, "Struct Field", "A sub data type") + ->DataElement(nullptr, &GroupTestComponent::m_groupFloat, "Float Field", "A float field") + ->DataElement(nullptr, &GroupTestComponent::m_subGroupForNormal, "Struct Field", "A sub data type") ->GroupElementToggle("Group Toggle", &GroupTestComponent::m_groupToggle) - ->DataElement(0, &GroupTestComponent::m_toggleGroupInt, "Normal Integer", "An Integer") - ->DataElement(0, &GroupTestComponent::m_subGroupForToggle, "Struct Field", "A sub data type") + ->DataElement(nullptr, &GroupTestComponent::m_toggleGroupInt, "Normal Integer", "An Integer") + ->DataElement(nullptr, &GroupTestComponent::m_subGroupForToggle, "Struct Field", "A sub data type") ; edit->Class("SubGroup Test Component", "Testing nested normal groups and toggle groups") ->ClassElement(AZ::Edit::ClassElements::EditorData, "") ->ClassElement(AZ::Edit::ClassElements::Group, "Normal SubGroup") - ->DataElement(0, &SubData::m_int, "SubGroup Int Field", "An int") + ->DataElement(nullptr, &SubData::m_int, "SubGroup Int Field", "An int") ->GroupElementToggle("SubGroup Toggle", &SubData::m_bool) - ->DataElement(0, &SubData::m_float, "SubGroup Float Field", "An int") + ->DataElement(nullptr, &SubData::m_float, "SubGroup Float Field", "An int") ; } } @@ -974,7 +974,7 @@ namespace UnitTest { } - void InsertAndVerifyKeys(AZ::SerializeContext::IDataContainer* container, void* key, void* instance, const AZ::SerializeContext::ClassElement* classElement) const + void InsertAndVerifyKeys(AZ::SerializeContext::IDataContainer* container, void* key, void* instance, const AZ::SerializeContext::ClassElement* classElement) const override { T* keyContainer = reinterpret_cast(key); for (const T& keyToInsert : keysToInsert) @@ -1258,7 +1258,7 @@ namespace UnitTest { editContext->Class("Test", "") ->UIElement("TestHandler", "UIElement") - ->DataElement(0, &UIElementContainer::m_data) + ->DataElement(nullptr, &UIElementContainer::m_data) ->UIElement(AZ_CRC("TestHandler2"), "UIElement2") ; } @@ -1322,8 +1322,8 @@ namespace UnitTest { // By default, DataElements accept multi-edit and UIElements do not editContext->Class("Test", "") - ->DataElement(0, &AggregatedContainer::m_aggregated) - ->DataElement(0, &AggregatedContainer::m_notAggregated) + ->DataElement(nullptr, &AggregatedContainer::m_aggregated) + ->DataElement(nullptr, &AggregatedContainer::m_notAggregated) ->Attribute(AZ::Edit::Attributes::AcceptsMultiEdit, false) ->UIElement("TestHandler", "aggregatedUIElement") ->Attribute(AZ::Edit::Attributes::AcceptsMultiEdit, true) diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabEntityAliasTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabEntityAliasTests.cpp index 78be56e6ba..6158394f20 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabEntityAliasTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabEntityAliasTests.cpp @@ -160,9 +160,6 @@ namespace UnitTest ASSERT_TRUE(secondRootInstance); - // Find the new instances versions of the new and referenced entities using the aliases we saved - AZ::EntityId secondNewEntityId = secondRootInstance->GetEntityId(newEntityAlias); - InstanceOptionalReference secondNestedInstance = secondRootInstance->FindNestedInstance(nestedAlias); ASSERT_TRUE(secondNestedInstance); AZ::EntityId secondReferencedEntityId = secondNestedInstance->get().GetEntityId(referencedEntityAlias); diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabInstantiateTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabInstantiateTests.cpp index 11efe07e90..09aac8dcf5 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabInstantiateTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabInstantiateTests.cpp @@ -33,7 +33,8 @@ namespace UnitTest CompareInstances(*firstInstance, *secondInstance, true, false); } - TEST_F(PrefabInstantiateTest, PrefabInstantiate_TripleNestingTemplate_InstantiateSucceeds) + // TODO: Issue #3398 will re-enable + TEST_F(PrefabInstantiateTest, DISABLED_PrefabInstantiate_TripleNestingTemplate_InstantiateSucceeds) { AZ::Entity* newEntity = CreateEntity("New Entity"); AzToolsFramework::EditorEntityContextRequestBus::Broadcast( diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDomUtils.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDomUtils.cpp index b8d2ce63f5..334f01fc3a 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDomUtils.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDomUtils.cpp @@ -132,7 +132,7 @@ namespace UnitTest PrefabDomUtils::FindPrefabDomValue(valueADom, PrefabDomUtils::LinkIdName); PrefabDomValueConstReference expectedNestedInstanceDomLinkId = PrefabDomUtils::FindPrefabDomValue(valueBDom, PrefabDomUtils::LinkIdName); - ComparePrefabDomValues(actualNestedInstanceDomLinkId, actualNestedInstanceDomLinkId); + ComparePrefabDomValues(actualNestedInstanceDomLinkId, expectedNestedInstanceDomLinkId); } if (shouldCompareContainerEntities) diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoLinkTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoLinkTests.cpp index e506159fd2..8fafe1f177 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoLinkTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoLinkTests.cpp @@ -97,7 +97,7 @@ namespace UnitTest //apply the patch PrefabDom& templateDomReference = m_prefabSystemComponent->FindTemplateDom(nestedTemplateId); - AZ::JsonSerializationResult::ResultCode result = + [[maybe_unused]] AZ::JsonSerializationResult::ResultCode result = PrefabDomUtils::ApplyPatches(templateDomReference, templateDomReference.GetAllocator(), patch); AZ_Error("Prefab", result.GetOutcome() == AZ::JsonSerializationResult::Outcomes::Success, diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoTests.cpp index 912f642118..5c68b30e8f 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoTests.cpp @@ -99,7 +99,6 @@ namespace UnitTest //create single entity AZ::Entity* newEntity = CreateEntity("New Entity", false); ASSERT_TRUE(newEntity); - AZ::EntityId entityId = newEntity->GetId(); //create a first instance where the entity will be added AZStd::unique_ptr testInstance = m_prefabSystemComponent->CreatePrefab({}, {}, "test/path"); diff --git a/Code/Framework/AzToolsFramework/Tests/PropertyTreeEditorTests.cpp b/Code/Framework/AzToolsFramework/Tests/PropertyTreeEditorTests.cpp index 1c1e063592..91e53f1650 100644 --- a/Code/Framework/AzToolsFramework/Tests/PropertyTreeEditorTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/PropertyTreeEditorTests.cpp @@ -73,7 +73,7 @@ namespace UnitTest if (AZ::EditContext* editContext = serializeContext->GetEditContext()) { editContext->Class("TestSimpleAsset", "Test data block for a simple asset mock data block") - ->DataElement(0, &TestSimpleAsset::m_data, "My Data", "A test bool value.") + ->DataElement(nullptr, &TestSimpleAsset::m_data, "My Data", "A test bool value.") ; } } @@ -171,7 +171,7 @@ namespace UnitTest ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::HideChildren) ->DataElement(AZ::Edit::UIHandlers::Default, &PropertyTreeEditorTester::m_myReadOnlyShort, "My Read Only", "A test read only node.") ->Attribute(AZ::Edit::Attributes::ReadOnly, true) - ->DataElement(0, &PropertyTreeEditorTester::m_mySubBlock, "My Sub Block", "sub block test") + ->DataElement(nullptr, &PropertyTreeEditorTester::m_mySubBlock, "My Sub Block", "sub block test") ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) ->Attribute(AZ::Edit::Attributes::AutoExpand, true) ->ClassElement(AZ::Edit::ClassElements::Group, "Grouped") diff --git a/Code/Framework/AzToolsFramework/Tests/SQLiteConnectionTests.cpp b/Code/Framework/AzToolsFramework/Tests/SQLiteConnectionTests.cpp index b2fa44c271..8e273992ac 100644 --- a/Code/Framework/AzToolsFramework/Tests/SQLiteConnectionTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/SQLiteConnectionTests.cpp @@ -31,7 +31,7 @@ namespace UnitTest { } - ~SQLiteTest() = default; + ~SQLiteTest() override = default; void SetUp() override { diff --git a/Code/Framework/AzToolsFramework/Tests/Script/ScriptEntityTests.cpp b/Code/Framework/AzToolsFramework/Tests/Script/ScriptEntityTests.cpp index 2aa180cfc0..cdb8fea513 100644 --- a/Code/Framework/AzToolsFramework/Tests/Script/ScriptEntityTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Script/ScriptEntityTests.cpp @@ -28,7 +28,7 @@ namespace UnitTest ScriptContext* m_scriptContext; - ~EntityScriptTest() + ~EntityScriptTest() override { } diff --git a/Code/Framework/AzToolsFramework/Tests/Slice.cpp b/Code/Framework/AzToolsFramework/Tests/Slice.cpp index dd374826a5..58865df345 100644 --- a/Code/Framework/AzToolsFramework/Tests/Slice.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Slice.cpp @@ -225,7 +225,7 @@ namespace UnitTest tempAssetEntity = aznew AZ::Entity("TestEntity1"); tempAssetEntity->CreateComponent(); - AZ::Data::AssetId sliceAssetId1 = SaveAsSlice(tempAssetEntity); + SaveAsSlice(tempAssetEntity); tempAssetEntity = nullptr; AZ::SliceComponent::EntityList slice1EntitiesA = InstantiateSlice(sliceAssetId0); @@ -457,7 +457,7 @@ namespace UnitTest { AZ::Debug::TraceMessageBus::Handler::BusConnect(); } - ~SliceTestWarningInterceptor() + ~SliceTestWarningInterceptor() override { AZ::Debug::TraceMessageBus::Handler::BusDisconnect(); } diff --git a/Code/Framework/AzToolsFramework/Tests/ToolsComponents/EditorLayerComponentTests.cpp b/Code/Framework/AzToolsFramework/Tests/ToolsComponents/EditorLayerComponentTests.cpp index 19cf1ad325..2f1d93c109 100644 --- a/Code/Framework/AzToolsFramework/Tests/ToolsComponents/EditorLayerComponentTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/ToolsComponents/EditorLayerComponentTests.cpp @@ -401,7 +401,7 @@ namespace AzToolsFramework TEST_F(EditorLayerComponentTest, LayerTests_TwoLayersUniqueNames_LayerNameIsValid) { - EntityAndLayerComponent secondLayer = CreateEntityWithLayer("UniqueLayerName"); + CreateEntityWithLayer("UniqueLayerName"); bool isLayerNameValid = true; AzToolsFramework::Layers::EditorLayerComponentRequestBus::EventResult( isLayerNameValid, @@ -412,7 +412,7 @@ namespace AzToolsFramework TEST_F(EditorLayerComponentTest, LayerTests_TwoLayersConflictingNames_LayerNameIsNotValid) { - EntityAndLayerComponent secondLayer = CreateEntityWithLayer(m_entityName); + CreateEntityWithLayer(m_entityName); bool isLayerNameValid = true; AzToolsFramework::Layers::EditorLayerComponentRequestBus::EventResult( isLayerNameValid, diff --git a/Code/Framework/AzToolsFramework/Tests/TransformComponent.cpp b/Code/Framework/AzToolsFramework/Tests/TransformComponent.cpp index 57ba0f998b..4fbebc8526 100644 --- a/Code/Framework/AzToolsFramework/Tests/TransformComponent.cpp +++ b/Code/Framework/AzToolsFramework/Tests/TransformComponent.cpp @@ -713,7 +713,6 @@ namespace UnitTest TransformBus::Event(m_childId, &TransformBus::Events::SetParentRelative, AZ::EntityId()); - childLocalPos; TransformBus::EventResult(childLocalPos, m_childId, &TransformBus::Events::GetLocalTranslation); EXPECT_TRUE(childLocalPos == expectedChildLocalPos); diff --git a/Code/Framework/AzToolsFramework/Tests/UndoStack.cpp b/Code/Framework/AzToolsFramework/Tests/UndoStack.cpp index f9b84c6130..ca32097341 100644 --- a/Code/Framework/AzToolsFramework/Tests/UndoStack.cpp +++ b/Code/Framework/AzToolsFramework/Tests/UndoStack.cpp @@ -413,7 +413,7 @@ namespace UnitTest *m_completedFlag = false; } - ~UndoDestructorTest() + ~UndoDestructorTest() override { *m_completedFlag = true; } diff --git a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiDisplayTests.cpp b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiDisplayTests.cpp index e1896af4db..ddfcde34b2 100644 --- a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiDisplayTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiDisplayTests.cpp @@ -28,7 +28,7 @@ namespace UnitTest public: ViewportUiDisplayTestFixture() = default; - void SetUp() + void SetUp() override { m_buttonGroup = AZStd::make_shared(); m_buttonGroup->AddButton(""); @@ -36,7 +36,7 @@ namespace UnitTest m_mockRenderOverlay = new QWidget(); } - void TearDown() + void TearDown() override { m_buttonGroup.reset(); delete m_parentWidget; diff --git a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiManagerTests.cpp b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiManagerTests.cpp index 16a49577d1..676b9c5e35 100644 --- a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiManagerTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiManagerTests.cpp @@ -26,7 +26,7 @@ namespace UnitTest { public: ViewportUiManagerTestable() = default; - ~ViewportUiManagerTestable() = default; + ~ViewportUiManagerTestable() override = default; const AZStd::unordered_map>& GetClusterMap() { @@ -84,12 +84,12 @@ namespace UnitTest ViewportManagerWrapper m_viewportManagerWrapper; - void SetUp() + void SetUp() override { m_viewportManagerWrapper.Create(); } - void TearDown() + void TearDown() override { m_viewportManagerWrapper.Destroy(); } @@ -168,7 +168,7 @@ namespace UnitTest m_viewportManagerWrapper.GetMockRenderOverlay()->setVisible(true); auto clusterId = m_viewportManagerWrapper.GetViewportManager()->CreateCluster(AzToolsFramework::ViewportUi::Alignment::TopLeft); - auto buttonId = m_viewportManagerWrapper.GetViewportManager()->CreateClusterButton(clusterId, ""); + m_viewportManagerWrapper.GetViewportManager()->CreateClusterButton(clusterId, ""); m_viewportManagerWrapper.GetViewportManager()->Update(); m_viewportManagerWrapper.GetViewportManager()->SetClusterVisible(clusterId, false); diff --git a/Code/Framework/GridMate/GridMate/Carrier/Carrier.cpp b/Code/Framework/GridMate/GridMate/Carrier/Carrier.cpp index 0285a7fc02..095f392501 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/Carrier.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/Carrier.cpp @@ -591,13 +591,13 @@ namespace GridMate ThreadMessage(MainThreadMsg mtm) : m_code(mtm) - , m_connection(NULL) - , m_threadConnection(NULL) + , m_connection(nullptr) + , m_threadConnection(nullptr) {} ThreadMessage(CarrierThreadMsg ctm) : m_code(ctm) - , m_connection(NULL) - , m_threadConnection(NULL) + , m_connection(nullptr) + , m_threadConnection(nullptr) {} int m_code; @@ -787,7 +787,7 @@ namespace GridMate AZ_FORCE_INLINE ThreadMessage* PopCarrierThreadMessage() { AZStd::lock_guard l(m_carrierMsgQueueLock); - ThreadMessage* res = NULL; + ThreadMessage* res = nullptr; if (!m_carrierMsgQueue.empty()) { res = m_carrierMsgQueue.front(); @@ -799,7 +799,7 @@ namespace GridMate AZ_FORCE_INLINE ThreadMessage* PopMainThreadMessage() { AZStd::lock_guard l(m_mainMsgQueueLock); - ThreadMessage* res = NULL; + ThreadMessage* res = nullptr; if (!m_mainMsgQueue.empty()) { res = m_mainMsgQueue.front(); @@ -1120,7 +1120,7 @@ using namespace GridMate; ////////////////////////////////////////////////////////////////////////// Connection::Connection(CarrierThread* threadOwner, const AZStd::string& address) : m_threadOwner(threadOwner) - , m_threadConn(NULL) + , m_threadConn(nullptr) , m_fullAddress(address) , m_state(Carrier::CST_CONNECTING) { @@ -1139,7 +1139,7 @@ Connection::Connection(CarrierThread* threadOwner, const AZStd::string& address) Connection::~Connection() { - AZ_Error("GridMate", m_threadConn.load(AZStd::memory_order_acquire) == NULL, "We must detach the thread connection first!"); + AZ_Error("GridMate", m_threadConn.load(AZStd::memory_order_acquire) == nullptr, "We must detach the thread connection first!"); // Make sure render thread doesn't reference is at this point... it's too late for (unsigned int i = 0; i < AZ_ARRAY_SIZE(m_toSend); ++i) { @@ -1172,7 +1172,7 @@ Connection::~Connection() ThreadConnection::ThreadConnection(CarrierThread* threadOwner) : m_threadOwner(threadOwner) - , m_mainConnection(NULL) + , m_mainConnection(nullptr) , m_dataGramSeqNum(1) // IMPORTANT to start with 1 if we have not received any datagrams we will confirm a datagram with value of 0. , m_lastAckedDatagram(0) , m_lastReceivedDatagramTime(AZStd::chrono::system_clock::now()) @@ -1196,7 +1196,7 @@ ThreadConnection::ThreadConnection(CarrierThread* threadOwner) ThreadConnection::~ThreadConnection() { - AZ_Error("GridMate", m_mainConnection == NULL || m_mainConnection->m_threadConn.load() == NULL, "We should have unbound the thread connection by now!"); + AZ_Error("GridMate", m_mainConnection == nullptr || m_mainConnection->m_threadConn.load() == nullptr, "We should have unbound the thread connection by now!"); for (unsigned char iChannel = 0; iChannel < k_maxNumberOfChannels; ++iChannel) { @@ -1215,8 +1215,8 @@ ThreadConnection::~ThreadConnection() m_threadOwner->FreeDatagram(dgram); } - m_target->m_threadConnection = NULL; - m_target = NULL; + m_target->m_threadConnection = nullptr; + m_target = nullptr; m_threadOwner->RemoveConnectionToSend(this); AZ_Error("GridMate", !IsLinked(), "Connection still linked!"); @@ -1245,7 +1245,7 @@ CarrierThread::CarrierThread(const CarrierDesc& desc, AZStd::shared_ptrGetMaxSendSize(), @@ -1452,7 +1452,7 @@ void CarrierThread::NotifyRateUpdate(ThreadConnection* conn) float rtt = lifetime.m_rtt > 1.f ? lifetime.m_rtt : 100.f; //For unknown RTT use conservative 100ms to avoid buffer bloat //Note: using lifetime RTT as stand-in for smoothed RTT float ratef = (1010 * (cState.m_congestionWindow)) / rtt; //Add 10% to allow rate increases until buffer fills up - constexpr float max_rate = azlossy_cast(0x7FFFFFFF); + [[maybe_unused]] constexpr float max_rate = azlossy_cast(0x7FFFFFFF); AZ_Assert(ratef <= max_rate, " ratef %f > 0x7FFFFFFF", ratef); bytesPerSecond = static_cast(ratef); @@ -1667,7 +1667,7 @@ CarrierThread::UpdateReceive() ReadBuffer readBuffer(kCarrierEndian, data, recvDataGramSize); ThreadConnection* conn = nullptr; - if (fromAddress->m_threadConnection != NULL) + if (fromAddress->m_threadConnection != nullptr) { conn = fromAddress->m_threadConnection; receivedConnections.insert(conn); @@ -2214,7 +2214,7 @@ CarrierThread::UpdateStats() for (ThreadConnectionList::iterator iConn = m_threadConnections.begin(); iConn != m_threadConnections.end(); ++iConn) { ThreadConnection* conn = *iConn; - if (conn->m_mainConnection == NULL) + if (conn->m_mainConnection == nullptr) { continue; } @@ -2267,40 +2267,40 @@ CarrierThread::ThreadPump() // Process messages for us { ThreadMessage* msg; - while ((msg = PopCarrierThreadMessage()) != NULL) + while ((msg = PopCarrierThreadMessage()) != nullptr) { switch (msg->m_code) { case CTM_CONNECT: { - AZ_Assert(msg->m_connection != NULL, "You must provide a valid connection pointer!"); + AZ_Assert(msg->m_connection != nullptr, "You must provide a valid connection pointer!"); // if this connect was initiated from a remote machine msg->threadConnection will be != NULL ThreadConnection* conn = msg->m_threadConnection; if (!conn) { // The main thread is initiating this connection AZStd::intrusive_ptr driverAddress = m_driver->CreateDriverAddress(msg->m_connection->m_fullAddress); - if (driverAddress->m_threadConnection != NULL) + if (driverAddress->m_threadConnection != nullptr) { AZ_TracePrintf("GridMate", "Thread connection to %s already exists!\n", driverAddress->ToString().c_str()); // we already have such thread connection conn = driverAddress->m_threadConnection; // make sure the existing connection is not bound - AZ_Assert(conn->m_mainConnection == NULL, "This thread connection should be unbound!"); + AZ_Assert(conn->m_mainConnection == nullptr, "This thread connection should be unbound!"); } else { conn = MakeNewConnection(driverAddress); } } - AZ_Assert(conn->m_mainConnection == NULL || conn->m_mainConnection == msg->m_connection, "This thread connection should be unbound or bound to the imcomming main connection!"); + AZ_Assert(conn->m_mainConnection == nullptr || conn->m_mainConnection == msg->m_connection, "This thread connection should be unbound or bound to the imcomming main connection!"); conn->m_mainConnection = msg->m_connection; - AZ_Assert(conn->m_mainConnection->m_threadConn.load() == NULL || conn->m_mainConnection->m_threadConn.load() == conn, "This main connection should be unbound or bound to us!"); + AZ_Assert(conn->m_mainConnection->m_threadConn.load() == nullptr || conn->m_mainConnection->m_threadConn.load() == conn, "This main connection should be unbound or bound to us!"); conn->m_mainConnection->m_threadConn = conn; } break; case CTM_DISCONNECT: { - AZ_Assert(msg->m_connection != NULL, "You must provide a valid connection pointer!"); + AZ_Assert(msg->m_connection != nullptr, "You must provide a valid connection pointer!"); ThreadConnection* tc = msg->m_connection->m_threadConn; if (tc && !tc->m_isDisconnecting) { @@ -2312,7 +2312,7 @@ CarrierThread::ThreadPump() } break; case CTM_DELETE_CONNECTION: { - ThreadConnection* tc = NULL; + ThreadConnection* tc = nullptr; tc = msg->m_threadConnection; if (tc) { @@ -2339,7 +2339,7 @@ CarrierThread::ThreadPump() ThreadMessage* mtm = aznew ThreadMessage(MTM_DELETE_CONNECTION); mtm->m_connection = msg->m_connection; RemoveConnectionToSend(mtm->m_threadConnection); - mtm->m_threadConnection = NULL; + mtm->m_threadConnection = nullptr; mtm->m_disconnectReason = msg->m_disconnectReason; PushMainThreadMessage(mtm); } @@ -2413,10 +2413,10 @@ CarrierThread::ThreadPump() if (tc->m_mainConnection) { RemoveConnectionToSend(tc); - tc->m_mainConnection->m_threadConn = NULL; + tc->m_mainConnection->m_threadConn = nullptr; ThreadMessage* mtm = aznew ThreadMessage(MTM_DELETE_CONNECTION); mtm->m_connection = tc->m_mainConnection; - mtm->m_threadConnection = NULL; + mtm->m_threadConnection = nullptr; mtm->m_disconnectReason = CarrierDisconnectReason::DISCONNECT_SHUTTING_DOWN; PushMainThreadMessage(mtm); } @@ -2582,7 +2582,7 @@ void CarrierThread::WriteAckData(ThreadConnection* connection, WriteBuffer& writ // Generate ACK bits SequenceNumber lastToAck; // last received datagram SequenceNumber firstToAck; // first received datagram (still in the list) - unsigned char* ackHistoryBits = NULL; + unsigned char* ackHistoryBits = nullptr; unsigned char ackNumHistoryBytes = 0; unsigned char ackHistoryBitsStorage[DataGramHistoryList::m_datagramHistoryMaxNumberOfBytes]; @@ -2736,7 +2736,7 @@ CarrierThread::ReadAckData(ThreadConnection* connection, ReadBuffer& readBuffer) return; } - if (connection != NULL && isAckData) + if (connection != nullptr && isAckData) { if (firstToAck != lastToAck) { @@ -3707,12 +3707,12 @@ CarrierImpl::~CarrierImpl() } delete m_thread; - m_thread = NULL; + m_thread = nullptr; if (m_ownHandshake) { delete m_handshake; - m_handshake = NULL; + m_handshake = nullptr; } } @@ -4235,13 +4235,13 @@ CarrierImpl::ProcessMainThreadMessages() // Process messages from the carrier thread { ThreadMessage* msg; - while ((msg = m_thread->PopMainThreadMessage()) != NULL) + while ((msg = m_thread->PopMainThreadMessage()) != nullptr) { switch (msg->m_code) { case MTM_NEW_CONNECTION: { - Connection* conn = NULL; + Connection* conn = nullptr; // check if we don't have it in the list. for(auto& c : m_connections) { @@ -4255,8 +4255,8 @@ CarrierImpl::ProcessMainThreadMessages() { // we already have such connection ThreadConnection* threadConn = conn->m_threadConn.load(AZStd::memory_order_acquire); - AZ_Assert(threadConn == NULL || threadConn == msg->m_threadConnection, "This main connection 0x%08x (%s) already have bound thread connection 0x%08x->0x%08x!", conn, conn->m_fullAddress.c_str(), threadConn, threadConn->m_mainConnection); - if (threadConn == NULL) + AZ_Assert(threadConn == nullptr || threadConn == msg->m_threadConnection, "This main connection 0x%08x (%s) already have bound thread connection 0x%08x->0x%08x!", conn, conn->m_fullAddress.c_str(), threadConn, threadConn->m_mainConnection); + if (threadConn == nullptr) { // request a bind we have not already ThreadMessage* ctm = aznew ThreadMessage(CTM_CONNECT); @@ -4283,23 +4283,23 @@ CarrierImpl::ProcessMainThreadMessages() // we will not even make a connection ThreadMessage* ctm = aznew ThreadMessage(CTM_DELETE_CONNECTION); ctm->m_threadConnection = msg->m_threadConnection; - ctm->m_connection = NULL; + ctm->m_connection = nullptr; ctm->m_disconnectReason = CarrierDisconnectReason::DISCONNECT_HANDSHAKE_REJECTED; m_thread->PushCarrierThreadMessage(ctm); } } break; case MTM_DISCONNECT: { - AZ_Assert(msg->m_connection != NULL, "You must provide a valid connection pointer!"); + AZ_Assert(msg->m_connection != nullptr, "You must provide a valid connection pointer!"); DisconnectRequest(msg->m_connection, msg->m_disconnectReason); } break; case MTM_DISCONNECT_TIMEOUT: { - AZ_Assert(msg->m_connection != NULL, "You must provide a valid connection pointer!"); + AZ_Assert(msg->m_connection != nullptr, "You must provide a valid connection pointer!"); if (msg->m_connection->m_state == Carrier::CST_DISCONNECTING) { // unbind from the thread connection and inform carrier thread to delete it. - ThreadConnection* threadConn = msg->m_connection->m_threadConn.exchange(NULL); + ThreadConnection* threadConn = msg->m_connection->m_threadConn.exchange(nullptr); msg->m_connection->m_state = Carrier::CST_DISCONNECTED; ThreadMessage* ctm = aznew ThreadMessage(CTM_DELETE_CONNECTION); ctm->m_connection = msg->m_connection; @@ -4311,7 +4311,7 @@ CarrierImpl::ProcessMainThreadMessages() } break; case MTM_DELETE_CONNECTION: { - AZ_Assert(msg->m_connection != NULL, "You must provide a valid connection pointer!"); + AZ_Assert(msg->m_connection != nullptr, "You must provide a valid connection pointer!"); DeleteConnection(msg->m_connection, msg->m_disconnectReason); } break; case MTM_ON_ERROR: @@ -4534,7 +4534,7 @@ CarrierImpl::ProcessSystemMessages() // Delete connection conn->m_state = Carrier::CST_DISCONNECTED; // unbind from the thread connection and inform carrier thread to delete it. - ThreadConnection* threadConn = conn->m_threadConn.exchange(NULL); + ThreadConnection* threadConn = conn->m_threadConn.exchange(nullptr); ThreadMessage* ctm = aznew ThreadMessage(CTM_DELETE_CONNECTION); ctm->m_connection = conn; ctm->m_threadConnection = threadConn; @@ -4829,7 +4829,7 @@ CarrierImpl::GetTime() void CarrierImpl::DebugDeleteConnection(ConnectionID id) { - if (id == InvalidConnectionID && m_thread != NULL) + if (id == InvalidConnectionID && m_thread != nullptr) { return; } @@ -4844,7 +4844,7 @@ CarrierImpl::DebugDeleteConnection(ConnectionID id) // Delete connection conn->m_state = Carrier::CST_DISCONNECTED; // unbind from the thread connection and inform carrier thread to delete it. - ThreadConnection* threadConn = conn->m_threadConn.exchange(NULL); + ThreadConnection* threadConn = conn->m_threadConn.exchange(nullptr); ThreadMessage* ctm = aznew ThreadMessage(CTM_DELETE_CONNECTION); ctm->m_connection = conn; ctm->m_threadConnection = threadConn; @@ -4914,7 +4914,7 @@ DefaultCarrier::Create(const CarrierDesc& desc, IGridMate* gridMate) AZStd::string CarrierEventsBase::ReasonToString(CarrierDisconnectReason reason) { - const char* reasonStr = 0; + const char* reasonStr = nullptr; switch (reason) { case CarrierDisconnectReason::DISCONNECT_USER_REQUESTED: diff --git a/Code/Framework/GridMate/GridMate/Carrier/DefaultTrafficControl.cpp b/Code/Framework/GridMate/GridMate/Carrier/DefaultTrafficControl.cpp index f9280d9918..8743e50e83 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/DefaultTrafficControl.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/DefaultTrafficControl.cpp @@ -58,8 +58,8 @@ DefaultTrafficControl::~DefaultTrafficControl() void DefaultTrafficControl::OnConnect(TrafficControlConnectionId id, const AZStd::intrusive_ptr& address) { - AZ_Assert(id->m_trafficData == NULL, "We have already assigned traffic data to this connection!"); - if (id->m_trafficData != NULL) + AZ_Assert(id->m_trafficData == nullptr, "We have already assigned traffic data to this connection!"); + if (id->m_trafficData != nullptr) { return; } @@ -100,7 +100,7 @@ void DefaultTrafficControl::OnDisconnect(TrafficControlConnectionId id) { ConnectionData* cd = reinterpret_cast(id->m_trafficData); - id->m_trafficData = NULL; + id->m_trafficData = nullptr; bool isFound = false; for (ConnectionListType::iterator i = m_connections.begin(); i != m_connections.end(); ++i) { diff --git a/Code/Framework/GridMate/GridMate/Carrier/SecureSocketDriver.cpp b/Code/Framework/GridMate/GridMate/Carrier/SecureSocketDriver.cpp index 031e8561ec..630f81d89f 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/SecureSocketDriver.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/SecureSocketDriver.cpp @@ -151,16 +151,6 @@ namespace GridMate writeBuffer.Write(PackByte(value)); } - AZ_INLINE static AZ::u32 CalculatePeerCRC32(const SecureSocketDriver::AddrPtr& from) - { - // Calculate CRC32 from remote address - AZ::u32 port = from->GetPort(); - AZ::Crc32 crc; - crc.Add(from->GetIP().c_str()); - crc.Add(&port, sizeof(port)); - return crc; - } - // Structures // struct RecordHeader // 13 bytes = DTLS1_RT_HEADER_LENGTH diff --git a/Code/Framework/GridMate/GridMate/Carrier/SocketDriver.cpp b/Code/Framework/GridMate/GridMate/Carrier/SocketDriver.cpp index 08c5408848..91fc1ca69b 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/SocketDriver.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/SocketDriver.cpp @@ -1081,7 +1081,7 @@ namespace GridMate }; sockaddr* sockAddr = reinterpret_cast(&sockAddrIn6); socklen_t sockAddrLen = sizeof(sockAddrIn6); - from = NULL; + from = nullptr; unsigned int recvd = m_platformDriver->Receive(data, maxDataSize, sockAddr, sockAddrLen, resultCode); @@ -1207,7 +1207,7 @@ namespace GridMate unsigned int port; if (!AddressToIPPort(address, ip, port)) { - return NULL; + return nullptr; } SocketDriverAddress drvAddr(this, ip, port); @@ -1313,7 +1313,7 @@ namespace GridMate fd_set fdwrite; FD_ZERO(&fdwrite); FD_SET(m_socket, &fdwrite); - select(FD_SETSIZE, 0, &fdwrite, 0, 0); + select(FD_SETSIZE, nullptr, &fdwrite, nullptr, nullptr); continue; } @@ -1376,7 +1376,7 @@ namespace GridMate FD_SET(m_socket, &fdread); timeval t = Platform::GetTimeValue(timeOut); - int result = select(FD_SETSIZE, &fdread, 0, 0, &t); + int result = select(FD_SETSIZE, &fdread, nullptr, nullptr, &t); if (result > 0) { m_parent.m_isStoppedWaitForData = true; diff --git a/Code/Framework/GridMate/GridMate/Carrier/StreamSecureSocketDriver.cpp b/Code/Framework/GridMate/GridMate/Carrier/StreamSecureSocketDriver.cpp index 759a2b5e47..647b34e1b9 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/StreamSecureSocketDriver.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/StreamSecureSocketDriver.cpp @@ -343,7 +343,7 @@ namespace GridMate break; } } - while (0); + while (false); // did everything successfully create and/or allocate? if (m_ssl && m_bioIn && m_bioOut && m_scratch) diff --git a/Code/Framework/GridMate/GridMate/GridMate.cpp b/Code/Framework/GridMate/GridMate/GridMate.cpp index 538dc6d853..22b4fd7af6 100644 --- a/Code/Framework/GridMate/GridMate/GridMate.cpp +++ b/Code/Framework/GridMate/GridMate/GridMate.cpp @@ -6,6 +6,7 @@ * */ +#include #include #include @@ -14,6 +15,8 @@ #include #include +AZ_DEFINE_BUDGET(GridMate); + namespace GridMate { class GridMateImpl @@ -33,7 +36,7 @@ namespace GridMate AZ_CLASS_ALLOCATOR(GridMateImpl, GridMateAllocator, 0); GridMateImpl(const GridMateDesc& desc); - virtual ~GridMateImpl(); + ~GridMateImpl() override; void Update() override; diff --git a/Code/Framework/GridMate/GridMate/Replica/Replica.cpp b/Code/Framework/GridMate/GridMate/Replica/Replica.cpp index c1de3b71f2..a05b92a7a0 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Replica.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/Replica.cpp @@ -777,7 +777,7 @@ namespace GridMate CtorContextBase::s_pCur->m_members.push_back(this); } //----------------------------------------------------------------------------- - CtorContextBase* CtorContextBase::s_pCur = NULL; + CtorContextBase* CtorContextBase::s_pCur = nullptr; //----------------------------------------------------------------------------- CtorContextBase::CtorContextBase() { diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaDefs.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaDefs.h index 737b121d03..e2fee41228 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaDefs.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaDefs.h @@ -5,11 +5,9 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#ifndef GM_REPLICADEFS_H -#define GM_REPLICADEFS_H - -/// \file ReplicaChunk.h +#pragma once +#include #include namespace GridMate @@ -80,4 +78,5 @@ namespace GridMate static const ZoneMask ZoneMask_All = (ZoneMask) - 1; } // namespace Gridmate -#endif // GM_REPLICADEFS_H +AZ_DECLARE_BUDGET(GridMate); + diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaMgr.cpp b/Code/Framework/GridMate/GridMate/Replica/ReplicaMgr.cpp index 2582710aa7..7a56393bd5 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaMgr.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaMgr.cpp @@ -460,7 +460,7 @@ namespace GridMate { return iter->second; } - return NULL; + return nullptr; } //----------------------------------------------------------------------------- RepIdSeed ReplicaManager::ReserveIdBlock(PeerId requestor) @@ -995,7 +995,7 @@ namespace GridMate AZ_Assert(iObj->second, "Detected NULL replica pointer in replica map! (id=0x%x)", replicaId); return iObj->second; } - return ReplicaPtr(NULL); + return ReplicaPtr(nullptr); } //----------------------------------------------------------------------------- void ReplicaManager::_Unmarshal(ReadBuffer& rb, ReplicaPeer* pFrom) diff --git a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaMarshalTasks.cpp b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaMarshalTasks.cpp index f5e6e0f5a6..c1d6905e14 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaMarshalTasks.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaMarshalTasks.cpp @@ -6,8 +6,6 @@ * */ -#include - #include #include #include diff --git a/Code/Framework/GridMate/GridMate/Session/LANSession.cpp b/Code/Framework/GridMate/GridMate/Session/LANSession.cpp index e4e1c9e9b6..223085cf13 100644 --- a/Code/Framework/GridMate/GridMate/Session/LANSession.cpp +++ b/Code/Framework/GridMate/GridMate/Session/LANSession.cpp @@ -52,13 +52,13 @@ namespace GridMate MemberIDCompact GetID() const { return m_id; } - virtual AZStd::string ToString() const + AZStd::string ToString() const override { return AZStd::string::format("%x", m_id); } - virtual AZStd::string ToAddress() const { return m_address; } - virtual MemberIDCompact Compact() const { return m_id; } - virtual bool IsValid() const { return m_id != 0; } + AZStd::string ToAddress() const override { return m_address; } + MemberIDCompact Compact() const override { return m_id; } + bool IsValid() const override { return m_id != 0; } private: MemberIDCompact m_id; @@ -285,9 +285,9 @@ namespace GridMate static const char* GetChunkName() { return "GridMateLANMember"; } /// return an abstracted member id. (member ID is world unique but unrelated to player ID it's related to the session). - virtual const MemberID& GetId() const { return m_memberId; } + const MemberID& GetId() const override { return m_memberId; } /// returns a base player id, it's implementation is platform dependent. (NOT supported) - virtual const PlayerId* GetPlayerId() const { return nullptr; } + const PlayerId* GetPlayerId() const override { return nullptr; } /// Remote member ctor. LANMember(ConnectionID connId, const LANMemberID& id, LANSession* session); @@ -321,16 +321,16 @@ namespace GridMate friend class LANSessionService; public: GM_CLASS_ALLOCATOR(LANSearch); - virtual ~LANSearch(); + ~LANSearch() override; /// Return true if the search has finished, otherwise false. - virtual unsigned int GetNumResults() const { return static_cast(m_results.size()); } - virtual const SearchInfo* GetResult(unsigned int index) const { return &m_results[index]; } - virtual void AbortSearch(); + unsigned int GetNumResults() const override { return static_cast(m_results.size()); } + const SearchInfo* GetResult(unsigned int index) const override { return &m_results[index]; } + void AbortSearch() override; private: LANSearch(const LANSearchParams& searchParams, SessionService* service); - virtual void Update(); + void Update() override; void SearchDone(); Driver* m_driver; diff --git a/Code/Framework/GridMate/GridMate/Session/Session.cpp b/Code/Framework/GridMate/GridMate/Session/Session.cpp index 471e21127c..b731d82b71 100644 --- a/Code/Framework/GridMate/GridMate/Session/Session.cpp +++ b/Code/Framework/GridMate/GridMate/Session/Session.cpp @@ -63,40 +63,40 @@ namespace GridMate typedef unordered_set AddressSetType; GridSessionHandshake(unsigned int handshakeTimeoutMS, const VersionType& version); - virtual ~GridSessionHandshake() {} + ~GridSessionHandshake() override {} ////////////////////////////////////////////////////////////////////////// // Handshake /// Called from the system to write initial handshake data. - virtual void OnInitiate(ConnectionID id, WriteBuffer& wb); + void OnInitiate(ConnectionID id, WriteBuffer& wb) override; /** * Called when a system receives a handshake initiation from another system. * You can write a reply in the WriteBuffer. * return true if you accept this connection and false if you reject it. */ - virtual HandshakeErrorCode OnReceiveRequest(ConnectionID id, ReadBuffer& rb, WriteBuffer& wb); + HandshakeErrorCode OnReceiveRequest(ConnectionID id, ReadBuffer& rb, WriteBuffer& wb) override; /** * If we already have a valid connection and we receive another connection request, the system will * call this function to verify the state of the connection. */ - virtual bool OnConfirmRequest(ConnectionID id, ReadBuffer& rb); + bool OnConfirmRequest(ConnectionID id, ReadBuffer& rb) override; /** * Called when we receive Ack from the other system on our initial data \ref OnInitiate. * return true to accept the ack or false to reject the handshake. */ - virtual bool OnReceiveAck(ConnectionID id, ReadBuffer& rb) { (void)id; (void)rb; return true; } // we don't do any further filtering + bool OnReceiveAck(ConnectionID id, ReadBuffer& rb) override { (void)id; (void)rb; return true; } // we don't do any further filtering /** * Called when we receive Ack from the other system while we were connected. This callback is called * so we can just confirm that our connection is valid! */ - virtual bool OnConfirmAck(ConnectionID id, ReadBuffer& rb) { (void)id; (void)rb; return true; } // we don't do any further filtering + bool OnConfirmAck(ConnectionID id, ReadBuffer& rb) override { (void)id; (void)rb; return true; } // we don't do any further filtering /// Return true if you want to reject early reject a connection. - virtual bool OnNewConnection(const AZStd::string& address); + bool OnNewConnection(const AZStd::string& address) override; /// Called when we close a connection. - virtual void OnDisconnect(ConnectionID id); + void OnDisconnect(ConnectionID id) override; /// Return timeout in milliseconds of the handshake procedure. - virtual unsigned int GetHandshakeTimeOutMS() const { return m_handshakeTimeOutMS; } + unsigned int GetHandshakeTimeOutMS() const override { return m_handshakeTimeOutMS; } ////////////////////////////////////////////////////////////////////////// void BanAddress(AZStd::string address); diff --git a/Code/Framework/GridMate/Tests/Carrier.cpp b/Code/Framework/GridMate/Tests/Carrier.cpp index 8d3ec4eef6..5b18a80221 100644 --- a/Code/Framework/GridMate/Tests/Carrier.cpp +++ b/Code/Framework/GridMate/Tests/Carrier.cpp @@ -90,7 +90,7 @@ public: { } - ~CarrierCallbacksHandler() + ~CarrierCallbacksHandler() override { CarrierEventBus::Handler::BusDisconnect(); } @@ -1707,7 +1707,7 @@ TEST_F(GridMateCarrierTestFixture, Test_GetSocketErrorString) static constexpr char posixErrorWouldBlockPosixErrStr[] = "Resource temporarily unavailable"; azsnprintf(expectedBuffer.data(), expectedBuffer.size()-1 , "%s", posixErrorWouldBlockPosixErrStr); #else - azsnprintf(expectedBuffer.data(), expectedBuffer.size()-1 , "%d", AZ_EWOULDBLOCK); + azsnprintf(expectedBuffer.data(), expectedBuffer.size()-1 , "%ld", AZ_EWOULDBLOCK); #endif // !AZ_TRAIT_USE_POSIX_STRERROR_R EXPECT_STREQ(expectedBuffer.data(), socketErrorString); EXPECT_STREQ(expectedBuffer.data(), buffer.data()); diff --git a/Code/Framework/GridMate/Tests/CarrierStreamSocketDriverTests.cpp b/Code/Framework/GridMate/Tests/CarrierStreamSocketDriverTests.cpp index 6af6a6ab87..8ec3ad540f 100644 --- a/Code/Framework/GridMate/Tests/CarrierStreamSocketDriverTests.cpp +++ b/Code/Framework/GridMate/Tests/CarrierStreamSocketDriverTests.cpp @@ -65,7 +65,7 @@ public: { } - ~CarrierStreamCallbacksHandler() + ~CarrierStreamCallbacksHandler() override { if (m_active) { diff --git a/Code/Framework/GridMate/Tests/ReplicaBehavior.cpp b/Code/Framework/GridMate/Tests/ReplicaBehavior.cpp index 22771cc035..f6f88d2dff 100644 --- a/Code/Framework/GridMate/Tests/ReplicaBehavior.cpp +++ b/Code/Framework/GridMate/Tests/ReplicaBehavior.cpp @@ -282,7 +282,7 @@ namespace ReplicaBehavior { GM_CLASS_ALLOCATOR(EntityLikeScriptReplicaChunk); EntityLikeScriptReplicaChunk(); - ~EntityLikeScriptReplicaChunk() = default; + ~EntityLikeScriptReplicaChunk() override = default; ////////////////////////////////////////////////////////////////////// //! GridMate::ReplicaChunk overrides. @@ -296,7 +296,7 @@ namespace ReplicaBehavior { int GetMaxServerProperties() const { return k_maxScriptableDataSets; } - AZ::u32 CalculateDirtyDataSetMask(MarshalContext& marshalContext); + AZ::u32 CalculateDirtyDataSetMask(MarshalContext& marshalContext) override; EntityLikeScriptDataSet m_scriptDataSets[k_maxScriptableDataSets]; AZ::u32 m_enabledDataSetMask; @@ -815,7 +815,7 @@ namespace ReplicaBehavior { m_replicaId = m_sessions[sHost].GetReplicaMgr().AddPrimary(replica); } - ~Integ_ReplicaDefaultDataSetDriller() + ~Integ_ReplicaDefaultDataSetDriller() override { m_driller.BusDisconnect(); } @@ -928,7 +928,7 @@ namespace ReplicaBehavior { m_replicaU8Id = m_sessions[sHost].GetReplicaMgr().AddPrimary(replica2); } - ~Integ_Replica_ComparePackingBoolsVsU8() + ~Integ_Replica_ComparePackingBoolsVsU8() override { m_driller.BusDisconnect(); } @@ -1057,7 +1057,7 @@ namespace ReplicaBehavior { m_replicaId = m_sessions[sHost].GetReplicaMgr().AddPrimary(replica); } - ~Integ_CheckDataSetStreamIsntWrittenMoreThanNecessary() + ~Integ_CheckDataSetStreamIsntWrittenMoreThanNecessary() override { m_driller.BusDisconnect(); } @@ -1154,7 +1154,7 @@ namespace ReplicaBehavior { m_replicaId = m_sessions[sHost].GetReplicaMgr().AddPrimary(replica); } - ~Integ_CheckDataSetStreamIsntWrittenMoreThanNecessaryOnceDirty() + ~Integ_CheckDataSetStreamIsntWrittenMoreThanNecessaryOnceDirty() override { m_driller.BusDisconnect(); } @@ -1248,7 +1248,7 @@ namespace ReplicaBehavior { m_replicaId = m_sessions[sHost].GetReplicaMgr().AddPrimary(replica); } - ~Integ_CheckReplicaIsntSentWithNoChanges() + ~Integ_CheckReplicaIsntSentWithNoChanges() override { m_driller.BusDisconnect(); } @@ -1359,7 +1359,7 @@ namespace ReplicaBehavior { m_replicaId = m_sessions[sHost].GetReplicaMgr().AddPrimary(replica); } - ~Integ_CheckEntityScriptReplicaIsntSentWithNoChanges() + ~Integ_CheckEntityScriptReplicaIsntSentWithNoChanges() override { m_driller.BusDisconnect(); } diff --git a/Code/Framework/GridMate/Tests/ReplicaMedium.cpp b/Code/Framework/GridMate/Tests/ReplicaMedium.cpp index c1148c4fdb..61fe9d65b2 100644 --- a/Code/Framework/GridMate/Tests/ReplicaMedium.cpp +++ b/Code/Framework/GridMate/Tests/ReplicaMedium.cpp @@ -601,7 +601,7 @@ class MPSession { public: - ~MPSession() + ~MPSession() override { CarrierEventBus::Handler::BusDisconnect(); } @@ -2007,7 +2007,7 @@ public: m_replicaId = m_sessions[sHost].GetReplicaMgr().AddPrimary(replica); } - ~Integ_ReplicaDriller() + ~Integ_ReplicaDriller() override { m_driller.BusDisconnect(); } @@ -2893,7 +2893,7 @@ public: m_replicaId = m_sessions[sHost].GetReplicaMgr().AddPrimary(replica); } - ~ReplicaACKfeedbackTestFixture() + ~ReplicaACKfeedbackTestFixture() override { m_driller.BusDisconnect(); } diff --git a/Code/Framework/GridMate/Tests/ReplicaSmall.cpp b/Code/Framework/GridMate/Tests/ReplicaSmall.cpp index ede2a9a195..d71789ae90 100644 --- a/Code/Framework/GridMate/Tests/ReplicaSmall.cpp +++ b/Code/Framework/GridMate/Tests/ReplicaSmall.cpp @@ -254,7 +254,7 @@ public: s_nInstances++; } - ~OfflineChunk() + ~OfflineChunk() override { s_nInstances--; } @@ -273,7 +273,7 @@ public: return true; } - bool IsReplicaMigratable() { return true; } + bool IsReplicaMigratable() override { return true; } DataSet m_data1; DataSet::BindInterface m_data2; @@ -388,7 +388,7 @@ public: // If data set was not changed it should remain as non-dirty even after several PrepareData calls for (auto i = 0; i < 10; ++i) { - auto pdr = chunk->Data1.PrepareData(EndianType::BigEndian, 0); + [[maybe_unused]] auto pdr = chunk->Data1.PrepareData(EndianType::BigEndian, 0); AZ_TEST_ASSERT(chunk->Data1.IsDefaultValue() == true); } diff --git a/Code/Framework/GridMate/Tests/Session.cpp b/Code/Framework/GridMate/Tests/Session.cpp index 0c5baef483..d4f56871c5 100644 --- a/Code/Framework/GridMate/Tests/Session.cpp +++ b/Code/Framework/GridMate/Tests/Session.cpp @@ -71,7 +71,7 @@ namespace UnitTest AZ_TEST_ASSERT(GridMate::LANSessionServiceBus::FindFirstHandler(m_clientGridMate) != nullptr); ////////////////////////////////////////////////////////////////////////// } - virtual ~Integ_LANSessionMatchmakingParamsTest() + ~Integ_LANSessionMatchmakingParamsTest() override { SessionEventBus::MultiHandler::BusDisconnect(m_gridMate); SessionEventBus::MultiHandler::BusDisconnect(m_clientGridMate); @@ -290,7 +290,7 @@ namespace UnitTest AZ_TEST_ASSERT(LANSessionServiceBus::FindFirstHandler(m_peers[i].m_gridMate) != nullptr); } } - virtual ~Integ_LANSessionTest() + ~Integ_LANSessionTest() override { StopGridMateService(m_peers[0].m_gridMate); @@ -645,7 +645,7 @@ namespace UnitTest } } - virtual ~Integ_LANMultipleSessionTest() + ~Integ_LANMultipleSessionTest() override { GridMate::StopGridMateService(m_gridMates[0]); @@ -884,7 +884,7 @@ namespace UnitTest } } - virtual ~Integ_LANLatencySessionTest() + ~Integ_LANLatencySessionTest() override { StopGridMateService(m_gridMates[0]); @@ -1283,7 +1283,7 @@ namespace UnitTest //StartDrilling("lanmigration"); } - virtual ~Integ_LANSessionMigarationTestTest() + ~Integ_LANSessionMigarationTestTest() override { StopGridMateService(m_gridMates[0]); @@ -1597,7 +1597,7 @@ namespace UnitTest //StartDrilling("lanmigration2"); } - virtual ~Integ_LANSessionMigarationTestTest2() + ~Integ_LANSessionMigarationTestTest2() override { StopGridMateService(m_gridMates[0]); diff --git a/Code/Framework/GridMate/Tests/gridmate_test_files.cmake b/Code/Framework/GridMate/Tests/gridmate_test_files.cmake index 7b2ae2e8ab..3ff67f8eda 100644 --- a/Code/Framework/GridMate/Tests/gridmate_test_files.cmake +++ b/Code/Framework/GridMate/Tests/gridmate_test_files.cmake @@ -8,7 +8,6 @@ set(FILES test_Main.cpp - TestProfiler.cpp Tests.h Session.cpp Serialize.cpp @@ -16,7 +15,6 @@ set(FILES ReplicaSmall.cpp ReplicaMedium.cpp ReplicaBehavior.cpp - Replica.cpp StreamSecureSocketDriverTests.cpp StreamSocketDriverTests.cpp CarrierStreamSocketDriverTests.cpp diff --git a/Code/Framework/GridMate/Tests/test_Main.cpp b/Code/Framework/GridMate/Tests/test_Main.cpp index 7fc71ef125..cbe4a09ef4 100644 --- a/Code/Framework/GridMate/Tests/test_Main.cpp +++ b/Code/Framework/GridMate/Tests/test_Main.cpp @@ -14,12 +14,12 @@ struct GridMateTestEnvironment : public AZ::Test::ITestEnvironment , public AZ::Debug::TraceMessageBus::Handler { - void SetupEnvironment() override final + void SetupEnvironment() final { AZ::AllocatorInstance::Create(); BusConnect(); } - void TeardownEnvironment() override final + void TeardownEnvironment() final { BusDisconnect(); AZ::AllocatorInstance::Destroy(); diff --git a/Code/LauncherUnified/CMakeLists.txt b/Code/LauncherUnified/CMakeLists.txt index 079156632c..c3d152a777 100644 --- a/Code/LauncherUnified/CMakeLists.txt +++ b/Code/LauncherUnified/CMakeLists.txt @@ -94,3 +94,25 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) endif() +################################################################################ +# Install +################################################################################ + +ly_install_files( + FILES + launcher_generator.cmake + launcher_project_files.cmake + LauncherProject.cpp + StaticModules.in + DESTINATION LauncherGenerator +) +ly_install_directory( + DIRECTORIES + Platform/${PAL_PLATFORM_NAME} + Platform/Common + DESTINATION LauncherGenerator/Platform +) +ly_install_files( + FILES FindLauncherGenerator.cmake + DESTINATION cmake +) diff --git a/Code/LauncherUnified/Launcher.cpp b/Code/LauncherUnified/Launcher.cpp index 30db54dab2..07da69cbe9 100644 --- a/Code/LauncherUnified/Launcher.cpp +++ b/Code/LauncherUnified/Launcher.cpp @@ -451,8 +451,6 @@ namespace O3DELauncher // The command line overrides are stored in the following fixed strings // until the ComponentApplication constructor can parse the command line parameters FixedValueString projectNameOptionOverride; - FixedValueString projectPathOptionOverride; - FixedValueString enginePathOptionOverride; // Insert the project_name option to the front const AZStd::string_view launcherProjectName = GetProjectName(); @@ -467,6 +465,8 @@ namespace O3DELauncher // Non-host platforms cannot use the project path that is #defined within the launcher. // In this case the the result of AZ::Utils::GetDefaultAppRoot is used instead #if !AZ_TRAIT_OS_IS_HOST_OS_PLATFORM + FixedValueString projectPathOptionOverride; + FixedValueString enginePathOptionOverride; AZStd::string_view projectPath; // Make sure the defaultAppRootPath variable is in scope long enough until the projectPath string_view is used below AZStd::optional defaultAppRootPath = AZ::Utils::GetDefaultAppRootPath(); diff --git a/Code/LauncherUnified/Launcher.h b/Code/LauncherUnified/Launcher.h index 5ff6009e43..7c4c09c19f 100644 --- a/Code/LauncherUnified/Launcher.h +++ b/Code/LauncherUnified/Launcher.h @@ -10,7 +10,9 @@ #include // for AZ_COMMAND_LINE_LEN #include #include +#include #include +#include struct IOutputPrintSink; @@ -34,7 +36,7 @@ namespace O3DELauncher #define COMMAND_LINE_ARG_COUNT_LIMIT (AZ_COMMAND_LINE_LEN+1) / 2 // Assume that the limit to how many arguments we can maintain is the max buffer size divided by 2 // to account for an argument and a spec in between each argument (with the worse case scenario being - + struct PlatformMainInfo { typedef bool (*ResourceLimitUpdater)(); @@ -69,7 +71,7 @@ namespace O3DELauncher void* m_window = nullptr; //!< maps to \ref SSystemInitParams::hWnd void* m_instance = nullptr; //!< maps to \ref SSystemInitParams::hInstance - IOutputPrintSink* m_printSink = nullptr; //!< maps to \ref SSystemInitParams::pPrintSync + IOutputPrintSink* m_printSink = nullptr; //!< maps to \ref SSystemInitParams::pPrintSync }; enum class ReturnCode : unsigned char diff --git a/Code/LauncherUnified/launcher_generator.cmake b/Code/LauncherUnified/launcher_generator.cmake index 9c8a6b8f16..b30f752c85 100644 --- a/Code/LauncherUnified/launcher_generator.cmake +++ b/Code/LauncherUnified/launcher_generator.cmake @@ -6,8 +6,8 @@ # # - set_property(GLOBAL PROPERTY LAUNCHER_UNIFIED_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) + # Launcher targets for a project need to be generated when configuring a project. # When building the engine source, this file will be included by LauncherUnified's CMakeLists.txt # When using an installed engine, this file will be included by the FindLauncherGenerator.cmake script @@ -121,6 +121,7 @@ foreach(project_name project_path IN ZIP_LISTS LY_PROJECTS_TARGET_NAME LY_PROJEC set_target_properties(${project_name}.GameLauncher PROPERTIES FOLDER ${project_name} + LY_PROJECT_NAME ${project_name} ) # After ensuring that we correctly support DPI scaling, this should be switched to "PerMonitor" @@ -129,6 +130,9 @@ foreach(project_name project_path IN ZIP_LISTS LY_PROJECTS_TARGET_NAME LY_PROJEC set_property(TARGET ${project_name}.GameLauncher APPEND PROPERTY VS_DEBUGGER_COMMAND_ARGUMENTS "--project-path=\"${LY_DEFAULT_PROJECT_PATH}\"") endif() + # Associate the Clients Gem Variant with each projects GameLauncher + ly_set_gem_variant_to_load(TARGETS ${project_name}.GameLauncher VARIANTS Clients) + ################################################################################ # Server ################################################################################ @@ -168,11 +172,15 @@ foreach(project_name project_path IN ZIP_LISTS LY_PROJECTS_TARGET_NAME LY_PROJEC set_target_properties(${project_name}.ServerLauncher PROPERTIES FOLDER ${project_name} + LY_PROJECT_NAME ${project_name} ) if(LY_DEFAULT_PROJECT_PATH) set_property(TARGET ${project_name}.ServerLauncher APPEND PROPERTY VS_DEBUGGER_COMMAND_ARGUMENTS "--project-path=\"${LY_DEFAULT_PROJECT_PATH}\"") endif() + + # Associate the Servers Gem Variant with each projects ServerLauncher + ly_set_gem_variant_to_load(TARGETS ${project_name}.ServerLauncher VARIANTS Servers) endif() endif() diff --git a/Code/LauncherUnified/launcher_project_files.cmake b/Code/LauncherUnified/launcher_project_files.cmake index 9f5bacbce5..2276631fbe 100644 --- a/Code/LauncherUnified/launcher_project_files.cmake +++ b/Code/LauncherUnified/launcher_project_files.cmake @@ -9,4 +9,5 @@ set(FILES LauncherProject.cpp StaticModules.in + launcher_generator.cmake ) diff --git a/Code/Legacy/CryCommon/AndroidSpecific.h b/Code/Legacy/CryCommon/AndroidSpecific.h index cf4359ba47..cf63e58015 100644 --- a/Code/Legacy/CryCommon/AndroidSpecific.h +++ b/Code/Legacy/CryCommon/AndroidSpecific.h @@ -109,9 +109,6 @@ typedef unsigned char byte; #define INVALID_FILE_ATTRIBUTES (-1) -#define DEFINE_ALIGNED_DATA(type, name, alignment) \ - type __attribute__ ((aligned(alignment))) name; - #include "LinuxSpecific.h" // these functions do not exist int the wchar.h header #undef wscasecomp diff --git a/Code/Legacy/CryCommon/AppleSpecific.h b/Code/Legacy/CryCommon/AppleSpecific.h index cd3146403a..e4c4fadb89 100644 --- a/Code/Legacy/CryCommon/AppleSpecific.h +++ b/Code/Legacy/CryCommon/AppleSpecific.h @@ -13,10 +13,6 @@ #define CRYINCLUDE_CRYCOMMON_APPLESPECIFIC_H #pragma once -#if defined(__clang__) -#pragma diagnostic ignore "-W#pragma-messages" -#endif - ////////////////////////////////////////////////////////////////////////// // Standard includes. ////////////////////////////////////////////////////////////////////////// @@ -126,10 +122,6 @@ typedef uint8 byte; #define STDMETHODCALLTYPE #endif -#define _ALIGN(num) \ - __attribute__ ((aligned(num))) \ - AZ_POP_DISABLE_WARNING - #define _PACK __attribute__ ((packed)) // Safe memory freeing @@ -265,9 +257,6 @@ typedef union _LARGE_INTEGER #define INVALID_FILE_ATTRIBUTES (-1) -#define DEFINE_ALIGNED_DATA(type, name, alignment) \ - type __attribute__ ((aligned(alignment))) name; - #define BST_UNCHECKED 0x0000 #ifndef HRESULT_VALUES_DEFINED diff --git a/Code/Legacy/CryCommon/CMakeLists.txt b/Code/Legacy/CryCommon/CMakeLists.txt index ce89757b5c..1556c6a099 100644 --- a/Code/Legacy/CryCommon/CMakeLists.txt +++ b/Code/Legacy/CryCommon/CMakeLists.txt @@ -6,15 +6,21 @@ # # +ly_get_list_relative_pal_filename(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME}) + ly_add_target( NAME CryCommon STATIC NAMESPACE Legacy FILES_CMAKE crycommon_files.cmake + ${pal_dir}/crycommon_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake # Required for restricted platforms + PLATFORM_INCLUDE_FILES + ${pal_dir}/crycommon_${PAL_PLATFORM_NAME_LOWERCASE}.cmake # Required for restricted platforms INCLUDE_DIRECTORIES PUBLIC . # Lots of code without CryCommon/ .. # Dangerous since exports Legacy's path (client code can do CrySystem/ without depending on that target) + ${pal_dir} # Required for restricted platforms BUILD_DEPENDENCIES PUBLIC AZ::AzCore diff --git a/Code/Legacy/CryCommon/Common_TypeInfo.cpp b/Code/Legacy/CryCommon/Common_TypeInfo.cpp index 6a295c696f..ccb28cbc3d 100644 --- a/Code/Legacy/CryCommon/Common_TypeInfo.cpp +++ b/Code/Legacy/CryCommon/Common_TypeInfo.cpp @@ -7,150 +7,10 @@ */ -#include "TypeInfo_impl.h" #include "Cry_Geo.h" - -STRUCT_INFO_T_BEGIN(Vec2_tpl, class, F) -VAR_INFO(x) -VAR_INFO(y) -STRUCT_INFO_T_END(Vec2_tpl, class, F) - +#include "Cry_Color.h" #include "Cry_Vector3.h" -STRUCT_INFO_T_BEGIN(Vec3_tpl, typename, F) -VAR_INFO(x) -VAR_INFO(y) -VAR_INFO(z) -STRUCT_INFO_T_END(Vec3_tpl, typename, F) - -typedef TFixed TFixedUChar_1_255_0; -STRUCT_INFO_T_INSTANTIATE(Vec3_tpl, TFixedUChar_1_255_0) - -STRUCT_INFO_T_BEGIN(Vec4_tpl, typename, F) -VAR_INFO(x) -VAR_INFO(y) -VAR_INFO(z) -VAR_INFO(w) -STRUCT_INFO_T_END(Vec4_tpl, typename, F) - -STRUCT_INFO_T_INSTANTIATE(Vec4_tpl, short) - -STRUCT_INFO_T_BEGIN(Ang3_tpl, typename, F) -VAR_INFO(x) -VAR_INFO(y) -VAR_INFO(z) -STRUCT_INFO_T_END(Ang3_tpl, typename, F) - -STRUCT_INFO_T_BEGIN(Plane_tpl, typename, F) -VAR_INFO(n) -VAR_INFO(d) -STRUCT_INFO_T_END(Plane_tpl, typename, F) - -//----------------------------------------------------------------- -//#include "Cry_Quat_info.h" -STRUCT_INFO_T_BEGIN(Quat_tpl, typename, F) -VAR_INFO(v) -VAR_INFO(w) -STRUCT_INFO_T_END(Quat_tpl, typename, F) - -STRUCT_INFO_T_INSTANTIATE(Quat_tpl, float) - -STRUCT_INFO_T_BEGIN(QuatT_tpl, typename, F) -VAR_INFO(q) -VAR_INFO(t) -STRUCT_INFO_T_END(QuatT_tpl, typename, F) - -STRUCT_INFO_T_INSTANTIATE(QuatT_tpl, float) - -STRUCT_INFO_T_BEGIN(QuatTS_tpl, typename, F) -VAR_INFO(q) -VAR_INFO(t) -VAR_INFO(s) -STRUCT_INFO_T_END(QuatTS_tpl, typename, F) - -STRUCT_INFO_T_BEGIN(DualQuat_tpl, typename, F) -VAR_INFO(nq) -VAR_INFO(dq) -STRUCT_INFO_T_END(DualQuat_tpl, typename, F) - - -//------------------------------------------------------------ -//#include "Cry_Matrix_info.h" -STRUCT_INFO_T_BEGIN(Matrix33_tpl, typename, F) -VAR_INFO(m00) -VAR_INFO(m01) -VAR_INFO(m02) -VAR_INFO(m10) -VAR_INFO(m11) -VAR_INFO(m12) -VAR_INFO(m20) -VAR_INFO(m21) -VAR_INFO(m22) -STRUCT_INFO_T_END(Matrix33_tpl, typename, F) - -STRUCT_INFO_T_BEGIN(Matrix34_tpl, typename, F) -VAR_INFO(m00) -VAR_INFO(m01) -VAR_INFO(m02) -VAR_INFO(m03) -VAR_INFO(m10) -VAR_INFO(m11) -VAR_INFO(m12) -VAR_INFO(m13) -VAR_INFO(m20) -VAR_INFO(m21) -VAR_INFO(m22) -VAR_INFO(m23) -STRUCT_INFO_T_END(Matrix34_tpl, typename, F) - -STRUCT_INFO_T_INSTANTIATE(Matrix34_tpl, float) - -STRUCT_INFO_T_BEGIN(Matrix44_tpl, typename, F) -VAR_INFO(m00) -VAR_INFO(m01) -VAR_INFO(m02) -VAR_INFO(m03) -VAR_INFO(m10) -VAR_INFO(m11) -VAR_INFO(m12) -VAR_INFO(m13) -VAR_INFO(m20) -VAR_INFO(m21) -VAR_INFO(m22) -VAR_INFO(m23) -VAR_INFO(m30) -VAR_INFO(m31) -VAR_INFO(m32) -VAR_INFO(m33) -STRUCT_INFO_T_END(Matrix44_tpl, typename, F) - - -//#include "Cry_Color_info.h" -STRUCT_INFO_T_BEGIN(Color_tpl, class, T) -VAR_INFO(r) -VAR_INFO(g) -VAR_INFO(b) -VAR_INFO(a) -STRUCT_INFO_T_END(Color_tpl, class, T) - -STRUCT_INFO_T_INSTANTIATE(Color_tpl, unsigned char) - -//#include "Cry_Geo_info.h" -STRUCT_INFO_BEGIN(AABB) -VAR_INFO(min) -VAR_INFO(max) -STRUCT_INFO_END(AABB) - -STRUCT_INFO_BEGIN(RectF) -VAR_INFO(x) -VAR_INFO(y) -VAR_INFO(w) -VAR_INFO(h) -STRUCT_INFO_END(RectF) - -#include "TimeValue_info.h" -#include "CryHalf_info.h" - // Manually instantiate templates as needed here. template struct Vec3_tpl; template struct Vec4_tpl; diff --git a/Code/Legacy/CryCommon/CryArray.h b/Code/Legacy/CryCommon/CryArray.h deleted file mode 100644 index b4878ec25a..0000000000 --- a/Code/Legacy/CryCommon/CryArray.h +++ /dev/null @@ -1,1322 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef CRYINCLUDE_CRYCOMMON_CRYARRAY_H -#define CRYINCLUDE_CRYCOMMON_CRYARRAY_H -#pragma once - -#include -#include - -//--------------------------------------------------------------------------- -// Convenient iteration macros - -#define for_ptr(T, it, b, e) for (T* it = (b), * _e = (e); it != _e; ++it) -#define for_array_ptr(T, it, arr) for_ptr (T, it, (arr).begin(), (arr).end()) -#define for_array(i, arr) for (int i = 0, _e = (arr).size(); i < _e; i++) - -//--------------------------------------------------------------------------- -// Specify semantics for moving objects. -// If raw_movable() is true, objects will be moved with memmove(). -// If false, with the templated move_init() function. -template -bool raw_movable([[maybe_unused]] T const& dest) -{ - return false; -} - -// This container was written before C++11 and move semantics. As a result, it attempts -// to fake move semantics where possible by constructing over top of existing instances. -// This works great, unless the type being operated on has internal pointers to its own -// memory space (for instance a string with SSO, or COW semantics). -template -struct fake_move_helper -{ - static void move(T& dest, T& source) - { - ::new(&dest) T(source); - source.~T(); - } -}; - -// Generic move function: transfer an existing source object to uninitialized dest address. -// Addresses must not overlap (requirement on caller). -// May be specialized for specific types, to provide a more optimal move. -// For types that can be trivially moved (memcpy), do not specialize move_init, rather specialize raw_movable to return true. -template -void move_init(T& dest, T& source) -{ - assert(&dest != &source); - fake_move_helper::move(dest, source); -} - -/*--------------------------------------------------------------------------- -Public classes: - - Array - StaticArray - DynArray - StaticDynArray - -Support classes are placed in namespaces NArray and NAlloc to reduce global name usage. ----------------------------------------------------------------------------*/ - -namespace NArray -{ - // We should never have these defined as macros. - #undef min - #undef max - - // Define our own min/max here, to avoid including entire . - template - inline T min(T a, T b) - { return a < b ? a : b; } - template - inline T max(T a, T b) - { return a > b ? a : b; } - - // Automatic inference of signed from unsigned int type. - template - struct IntTraits - { - typedef T TSigned; - }; - - template<> - struct IntTraits - { - typedef int TSigned; - }; - template<> - struct IntTraits - { - typedef int64 TSigned; - }; -#if !defined(LINUX) && !defined(APPLE) - template<> - struct IntTraits - { - typedef long TSigned; - }; -#endif - - /*--------------------------------------------------------------------------- - // STORAGE prototype for Array. - struct Storage - { - template - struct Store - { - [const] T* begin() [const]; - I size() const; - }; - }; - ---------------------------------------------------------------------------*/ - - //--------------------------------------------------------------------------- - // ArrayStorage: Default STORAGE Array. - // Simply contains a pointer and count to an existing array, - // performs no allocation or deallocation. - - struct ArrayStorage - { - template - struct Store - { - // Construction. - Store() - : m_aElems(0) - , m_nCount(0) - {} - Store(T* elems, I count) - : m_aElems(elems) - , m_nCount(count) - {} - Store(T* start, T* finish) - : m_aElems(start) - , m_nCount(check_cast(finish - start)) - {} - - void set(T* elems, I count) - { - m_aElems = elems; - m_nCount = count; - } - - // Basic storage. - CONST_VAR_FUNCTION(T * begin(), - { return m_aElems; - }) - inline I size() const - { return m_nCount; } - - // Modifiers, alter range in place. - void erase_front(I count = 1) - { - assert(count >= 0 && count <= m_nCount); - m_nCount -= count; - m_aElems += count; - } - - void erase_back(I count = 1) - { - assert(count >= 0 && count <= m_nCount); - m_nCount -= count; - } - - void resize(I count) - { - assert(count >= 0 && count <= m_nCount); - m_nCount = count; - } - - protected: - T* m_aElems; - I m_nCount; - }; - }; - - //--------------------------------------------------------------------------- - // StaticArrayStorage: STORAGE scheme with a statically sized member array. - - template - struct StaticArrayStorage - { - template - struct Store - { - // Basic storage. - CONST_VAR_FUNCTION(T * begin(), - { return m_aElems; - }) - inline static I size() - { return (I)nSIZE; } - - protected: - T m_aElems[nSIZE]; - }; - }; -}; - -//--------------------------------------------------------------------------- -// Array: Non-growing array. -// S serves as base class, and implements storage scheme: begin(), size() - -template< class T, class I = int, class STORE = NArray::ArrayStorage > -struct Array - : STORE::template Store -{ - typedef typename STORE::template Store S; - - // Tedious redundancy. - using S::size; - using S::begin; - - // STL-compatible typedefs. - typedef T value_type; - typedef T* pointer; - typedef const T* const_pointer; - typedef T& reference; - typedef const T& const_reference; - - typedef T* iterator; - typedef const T* const_iterator; - - typedef I size_type; - typedef typename NArray::IntTraits::TSigned - difference_type; - - typedef Array array; - typedef Array const_array; - - // Construction. - Array() - {} - - // Forward single- and double-argument constructors. - template - explicit Array(const In& i) - : S(i) - {} - - template - Array(const In1& i1, const In2& i2) - : S(i1, i2) - {} - - // Accessors. - inline bool empty() const - { return size() == 0; } - inline size_type size_mem() const - { return size() * sizeof(T); } - - CONST_VAR_FUNCTION(T * data(), - { return begin(); - }) - - CONST_VAR_FUNCTION(T * end(), - { return begin() + size(); - }) - - CONST_VAR_FUNCTION(T * rbegin(), - { return begin() + size() - 1; - }) - - CONST_VAR_FUNCTION(T * rend(), - { return begin() - 1; - }) - - CONST_VAR_FUNCTION(T & front(), - { - assert(!empty()); - return *begin(); - }) - - CONST_VAR_FUNCTION(T & back(), - { - assert(!empty()); - return *rbegin(); - }) - - CONST_VAR_FUNCTION(T & at(size_type i), - { - CRY_ASSERT_TRACE(i >= 0 && i < size(), ("Index %lld is out of range (array size is %lld)", (long long int) i, (long long int) size())); - return begin()[i]; - }) - - CONST_VAR_FUNCTION(T & operator [](size_type i), - { - CRY_ASSERT_TRACE(i >= 0 && i < size(), ("Index %lld is out of range (array size is %lld)", (long long int) i, (long long int) size())); - return begin()[i]; - }) - - // Conversion to canonical array type. - operator array() - { return array(begin(), size()); } - operator const_array() const - { - return const_array(begin(), size()); - } - - // Additional conversion via operator() to full or sub array. - array operator ()(size_type i, size_type count) - { - assert(i >= 0 && i + count <= size()); - return array(begin() + i, count); - } - const_array operator ()(size_type i, size_type count) const - { - assert(i >= 0 && i + count <= size()); - return const_array(begin() + i, count); - } - - array operator ()(size_type i = 0) - { return (*this)(i, size() - i); } - const_array operator ()(size_type i = 0) const - { return (*this)(i, size() - i); } - - // Basic element assignment functions. - - // Copy values to existing elements. - void fill(const T& val) - { - for_array_ptr (T, it, *this) - * it = val; - } - - void copy(const_array source) - { - assert(source.size() >= size()); - const T* s = source.begin(); - for_array_ptr (T, it, *this) - * it = *s++; - } - - // Raw element construct/destruct functions. - iterator init() - { - for_array_ptr (T, it, *this) - new(it) T; - return begin(); - } - iterator init(const T& val) - { - for_array_ptr (T, it, *this) - new(it) T(val); - return begin(); - } - iterator init(const_array source) - { - assert(source.size() >= size()); - assert(source.end() <= begin() || source.begin() >= end()); - const_iterator s = source.begin(); - for_array_ptr (T, it, *this) - new(it) T(*s++); - return begin(); - } - - iterator move_init(array source) - { - assert(source.size() >= size()); - iterator s = source.begin(); - if (s != begin()) - { - if (raw_movable(*s)) - { - memmove(begin(), s, size_mem()); - } - else if (s > begin() || source.end() <= begin()) - { - for_array_ptr (T, it, *this) - ::move_init(*it, *s++); - } - else - { - s += size(); - for (iterator it = end(); it > begin(); ) - { - ::move_init(*--it, *--s); - } - } - } - return begin(); - } - - void destroy() - { - // Destroy in reverse order, to complement construction order. - for (iterator it = rbegin(); it > rend(); --it) - { - it->~T(); - } - } -}; - -// Type-inferring constructor. - -template -inline Array ArrayT(T* elems, I count) -{ - return Array(elems, count); -} - -template -inline Array ArrayT(T* start, T* finish) -{ - return Array(start, finish); -} - -// StaticArray -// A superior alternative to static C arrays. -// Provides standard STL-like Array interface, including bounds-checking. -// standard: Type array[256]; -// structured: StaticArray array; - -template -struct StaticArray - : Array< T, I, NArray::StaticArrayStorage > -{ -}; - -//--------------------------------------------------------------------------- -// Specify allocation for dynamic arrays - -namespace NAlloc -{ - // Multi-purpose allocation function prototype - // pMem = 0, nSize != 0: allocate new mem, nSize = actual amount alloced - // pMem != 0, nSize = 0: deallcate mem - // pMem != 0, nSize != 0: nSize = actual amount allocated - typedef void* (* Allocator)(void* pMem, size_t& nSize, size_t nAlign, bool bSlack); - - // - // Allocation utilities - // - - inline size_t realloc_size(size_t nMinSize) - { - // Choose an efficient realloc size, when growing an existing (non-zero) block. - // Find the next power-of-two, minus a bit of presumed system alloc overhead. - static const size_t nMinAlloc = 32; - static const size_t nOverhead = 16; - static const size_t nDoubleLimit = - sizeof(size_t) < 8 ? 1 << 12 // 32-bit system - : 1 << 16; // >= 64-bit system - - nMinSize += nOverhead; - size_t nAlloc = nMinAlloc; - while (nAlloc < nMinSize) - { - nAlloc <<= 1; - } - if (nAlloc > nDoubleLimit) - { - size_t nAlign = NArray::max(nAlloc >> 3, nDoubleLimit); - nAlloc = Align(nMinSize, nAlign); - } - return nAlloc - nOverhead; - } - - template - T* reallocate(A& allocator, T* old_elems, I old_size, I& new_size, size_t alignment = 1, bool allow_slack = false) - { - T* new_elems; - if (new_size) - { - size_t new_bytes = new_size * sizeof(T); - new_elems = (T*) allocator.alloc(0, new_bytes, alignment, allow_slack); - assert(IsAligned(new_elems, alignment)); - assert(new_bytes >= new_size * sizeof(T)); - new_size = check_cast(new_bytes / sizeof(T)); - } - else - { - new_elems = 0; - } - - if (old_elems) - { - Array old_elems_array(old_elems, old_size); - if (new_elems) - { - // Move elements. - ArrayT(new_elems, NArray::min(old_size, new_size)).move_init(old_elems_array); - } - - // Dealloc old. - old_elems_array.destroy(); // call destructors - size_t zero = 0; - allocator.alloc(old_elems, zero, alignment); - } - - return new_elems; - } - - template - inline size_t get_alloc_size(const A& allocator, const void* pMem, size_t nSize, size_t nAlign) - { - non_const(allocator).alloc((void*)pMem, nSize, nAlign); - return nSize; - } - - struct AllocFunction - { - Allocator m_Function; - - void* alloc(void* pMem, size_t& nSize, size_t nAlign, bool bSlack = false) - { - return m_Function(pMem, nSize, nAlign, bSlack); - } - }; - - // Adds prefix bytes to allocation, preserving alignment - template - struct AllocPrefix - : A - { - void* alloc(void* pMem, size_t& nSize, size_t nAlign, bool bSlack = false) - { - // Adjust pointer and size for prefix bytes - nAlign = NArray::max(nAlign, alignof(Prefix)); - size_t nPrefixSize = Align(sizeof(Prefix), nAlign); - - if (pMem) - { - pMem = (char*)pMem - nPrefixSize; - } - if (nSize) - { - nSize = Align(nSize, nSizeAlign); - nSize += nPrefixSize; - } - - pMem = A::alloc(pMem, nSize, nAlign, bSlack); - - if (nSize) - { - nSize -= nPrefixSize; - } - if (pMem) - { - pMem = (char*)pMem + nPrefixSize; - } - return pMem; - } - }; - - // Stores and retrieves allocator function in memory, for compatibility with diverse allocators - template - struct AllocCompatible - { - void* alloc(void* pMem, size_t& nSize, size_t nAlign, bool bSlack = false) - { - nAlign = NArray::max(nAlign, alignof(Allocator)); - if (pMem) - { - // Retrieve original allocation function, for dealloc or size query - AllocPrefix alloc_prefix; - alloc_prefix.m_Function = ((Allocator*)pMem)[-1]; - return alloc_prefix.alloc(pMem, nSize, nAlign, bSlack); - } - else if (nSize) - { - // Allocate new with this module's base_allocator, storing pointer to function - AllocPrefix alloc_prefix; - pMem = alloc_prefix.alloc(pMem, nSize, nAlign, bSlack); - if (pMem) - { - ((Allocator*)pMem)[-1] = &A::alloc; - } - } - return pMem; - } - }; - - //--------------------------------------------------------------------------- - // Allocators for DynArray. - - // Standard CryModule memory allocation, using aligned versions - struct ModuleAlloc - { - static void* alloc(void* pMem, size_t& nSize, size_t nAlign, bool bSlack = false) - { - if (pMem) - { - if (nSize) - { - // Return memory usage, adding presumed alignment padding - if (nAlign > sizeof(size_t)) - { - nSize += nAlign - sizeof(size_t); - } - } - else - { - // Dealloc - CryModuleMemalignFree(pMem); - } - } - else if (nSize) - { - // Alloc - if (bSlack) - { - nSize = realloc_size(nSize); - } - return CryModuleMemalign(nSize, nAlign); - } - return 0; - } - }; - - // Standard allocator for DynArray stores a compatibility pointer in the memory - typedef AllocCompatible StandardAlloc; -}; - -//--------------------------------------------------------------------------- -// Storage schemes for dynamic arrays -namespace NArray -{ - //--------------------------------------------------------------------------- - // SmallDynStorage: STORAGE scheme for DynArray. - // Array is just a single pointer, size and capacity information stored before the array data. - - template - struct SmallDynStorage - { - template - struct Store - : private A - { - struct Header - { - static const I nCAP_BIT = I(1) << (sizeof(I) * 8 - 1); - - ILINE char* data() const - { - assert(IsAligned(this, sizeof(I))); - return (char*)(this + 1); - } - ILINE bool is_null() const - { return m_nSizeCap == 0; } - ILINE I size() const - { return m_nSizeCap & ~nCAP_BIT; } - - I capacity() const - { - I aligned_bytes = static_cast(Align(size() * sizeof(T), sizeof(I))); - if (m_nSizeCap & nCAP_BIT) - { - // Capacity stored in word following data - return *(I*)(data() + aligned_bytes); - } - else - { - // Capacity - size < sizeof(I) - return aligned_bytes / sizeof(T); - } - } - - void set_sizes(I s, I c) - { - // Store size, and assert against overflow. - assert(s <= c); - m_nSizeCap = s; - I aligned_bytes = static_cast(Align(s * sizeof(T), sizeof(I))); - if (c * sizeof(T) >= aligned_bytes + sizeof(I)) - { - // Has extra capacity, more than word-alignment - m_nSizeCap |= nCAP_BIT; - *(I*)(data() + aligned_bytes) = c; - } - assert(size() == s); - assert(capacity() == c); - } - - protected: - I m_nSizeCap; // Store allocation size, with last bit indicating extra capacity. - - public: - - static T* null_header() - { - // m_aElems is never 0, for empty array points to a static empty header. - // Declare a big enough static var to account for alignment. - struct EmptyHeader - { - Header head; - char pad[alignof(T)]; - }; - static EmptyHeader s_EmptyHeader; - - // The actual header pointer can be anywhere in the struct, it's all initialized to 0. - static T* s_EmptyElems = (T*)Align(s_EmptyHeader.pad, alignof(T)); - - return s_EmptyElems; - } - }; - - // Construction. - Store() - { - set_null(); - } - - Store(const A& a) - : A(a) - { - set_null(); - } - - // Basic storage. - CONST_VAR_FUNCTION(T * begin(), - { return m_aElems; - }) - inline I size() const - { return header()->size(); } - inline I capacity() const - { return header()->capacity(); } - size_t get_alloc_size() const - { return is_null() ? 0 : NAlloc::get_alloc_size(allocator(), begin(), capacity() * sizeof(T), alignof(T)); } - - void resize_raw(I new_size, bool allow_slack = false) - { - I new_cap = capacity(); - if (allow_slack ? new_size > new_cap : new_size != new_cap) - { - new_cap = new_size; - m_aElems = NAlloc::reallocate(allocator(), header()->is_null() ? 0 : m_aElems, size(), new_cap, alignof(T), allow_slack); - if (!m_aElems) - { - set_null(); - return; - } - } - header()->set_sizes(new_size, new_cap); - } - - protected: - - T* m_aElems; - - CONST_VAR_FUNCTION(Header * header(), - { - assert(m_aElems); - return ((Header*)m_aElems) - 1; - }) - - void set_null() - { m_aElems = Header::null_header(); } - bool is_null() const - { return header()->is_null(); } - - typedef NAlloc::AllocPrefix AP; - - AP& allocator() - { - static_assert(sizeof(AP) == sizeof(A)); - return *(AP*)this; - } - const AP& allocator() const - { - return *(const AP*)this; - } - }; - }; - - //--------------------------------------------------------------------------- - // StaticDynStorage: STORAGE scheme with a statically sized member array. - - template - struct StaticDynStorage - { - template - struct Store - : ArrayStorage::Store - { - Store() - : ArrayStorage::Store((T*)Align(m_aData, alignof(T)), 0) {} - - static I capacity() - { return (I)nSIZE; } - static size_t get_alloc_size() - { return 0; } - - void resize_raw(I new_size, [[maybe_unused]] bool allow_slack = false) - { - // cannot realloc, just set size - assert(new_size >= 0 && new_size <= capacity()); - this->m_nCount = new_size; - } - - protected: - - char m_aData[nSIZE * sizeof(T) + alignof(T) - 1]; // Storage for elems, deferred construction - }; - }; -}; - -// Legacy base class of DynArray, only used for read-only access -#define DynArrayRef DynArray - -//--------------------------------------------------------------------------- -// DynArray: Extension of Array allowing dynamic allocation. -// S specifies storage scheme, as with Array, but adds resize(), capacity(), ... -// A specifies the actual memory allocation function: alloc() - -// NOTE: This version has been re-based on AZStd::vector for correctness and performance -// The original implementation has been retained as LegacyDynArray below, for the few -// cases where we must retain the old internal behavior -template< class T, class I = int, class STORE = NArray::SmallDynStorage<> > -struct DynArray - : public AZStd::vector -{ - typedef AZStd::vector vector_base; - using value_type = typename vector_base::value_type; - using size_type = I; - using iterator = typename vector_base::iterator; - using const_iterator = typename vector_base::const_iterator; - - using vector_base::begin; - using vector_base::end; - - DynArray() - : vector_base::vector() - { - } - - explicit DynArray(size_type numElements) - : vector_base::vector(numElements) - { - } - - DynArray(size_type numElements, const T& value) - : vector_base::vector(numElements, value) - { - } - - // Ignore any specialized allocators, they all pull from the LegacyAllocator now - // Because we mandate that all DynArrays use the StdLegacyAllocator, matching allocators - // isn't meaningful here, so it's factored out - // Note that the STORE/S& is ignored entirely, because we do not support sharing storage - // between 2 DynArrays anymore. LegacyDynArray can still do that, but this feature is no longer used - template >::value>> - explicit DynArray(const S&) - : vector_base::vector() - { - } - - size_type capacity() const - { - return static_cast(vector_base::capacity()); - } - - size_type size() const - { - return static_cast(vector_base::size()); - } - - size_type available() const - { - return capacity() - size(); - } - - size_type get_alloc_size() const - { - return capacity() * sizeof(T); - } - - // Grow array, return iterator to new raw elems. - iterator grow_raw(size_type count = 1, bool /*allow_slack*/ = true) - { - vector_base::resize(size() + count); - return end() - count; - } - - iterator grow(size_type count) - { - return grow_raw(count); - } - iterator grow(size_type count, const T& val) - { - vector_base::reserve(size() + count); - for (size_type idx = 0; idx < count; ++idx) - { - vector_base::push_back(val); - } - return end() - count; - } - - void shrink() - { - // Realloc memory to exact array size. - vector_base::shrink_to_fit(); - } - - void resize(size_type newSize) - { - vector_base::resize(newSize); - } - - void resize(size_type new_size, const T& val) - { - size_type s = size(); - if (new_size > s) - { - grow(new_size - s, val); - } - else - { - pop_back(s - new_size); - } - } - - void assign(const_iterator first, const_iterator last) - { - vector_base::assign(first, last); - } - - void assign(size_type n, const T& val) - { - clear(); - grow(n, val); - } - - iterator push_back() - { - return grow(1); - } - iterator push_back(const T& val) - { - vector_base::push_back(val); - return vector_base::end() - 1; - } - iterator push_back(const DynArray& other) - { - return insert(end(), other.begin(), other.end()); - } - - iterator insert_raw(iterator pos, size_type count = 1) - { - // Grow array, return iterator to inserted raw elems. - assert(pos >= begin() && pos <= end()); - vector_base::insert(pos, count, T()); - return pos; - } - - iterator insert(iterator it, const T& val) - { - vector_base::insert(it, 1, val); - return it; - } - iterator insert(iterator it, size_type count, const T& val) - { - vector_base::insert(it, count, val); - return it; - } - iterator insert(iterator it, const_iterator start, const_iterator finish) - { - vector_base::insert(it, start, finish); - return it; - } - - iterator insert(size_type pos) - { - return insert_raw(begin() + pos); - } - iterator insert(size_type pos, const T& val) - { - iterator it = insert_raw(begin() + pos); - *it = val; - return it; - } - - void pop_back(size_type count = 1, [[maybe_unused]] bool allow_slack = true) - { - // Destroy erased elems, change size without reallocing. - assert(count >= 0 && count <= size()); - for (size_type idx = 0; idx < count; ++idx) - { - vector_base::pop_back(); - } - } - - iterator erase(iterator pos) - { - return vector_base::erase(pos); - } - - iterator erase(iterator start, iterator finish) - { - AZ_Assert(start >= begin() && finish >= start && finish <= end(), "DynArray: Erasure range out of bounds"); - - // Copy over erased elems, destroy those at end. - iterator it = start, e = end(); - while (finish < e) - { - *it++ = *finish++; - } - pop_back(check_cast(finish - it)); - return it; - } - - iterator erase(size_type pos, size_type count = 1) - { - return erase(begin() + pos, begin() + pos + count); - } - - void clear() - { - vector_base::clear(); - vector_base::shrink_to_fit(); - } -}; - -//--------------------------------------------------------------------------- -// Original Cry DynArray -//--------------------------------------------------------------------------- -template< class T, class I = int, class STORE = NArray::SmallDynStorage<> > -struct LegacyDynArray - : Array< T, I, STORE > -{ - typedef LegacyDynArray self_type; - typedef Array super_type; - typedef typename STORE::template Store S; - - // Tedious redundancy for GCC. - using_type(super_type, size_type); - using_type(super_type, iterator); - using_type(super_type, const_iterator); - using_type(super_type, array); - using_type(super_type, const_array); - - using super_type::size; - using super_type::capacity; - using super_type::begin; - using super_type::end; - using super_type::at; - using super_type::copy; - using super_type::init; - using super_type::destroy; - - // - // Construction. - // - LegacyDynArray() - {} - - LegacyDynArray(size_type count) - { - grow(count); - } - LegacyDynArray(size_type count, const T& val) - { - grow(count, val); - } - -#if !defined(_DISALLOW_INITIALIZER_LISTS) - // Initializer-list - LegacyDynArray(std::initializer_list l) - { - push_back(Array(l.begin(), l.size())); - } -#endif - - // Copying from a generic array type. - LegacyDynArray(const_array a) - { - push_back(a); - } - self_type& operator =(const_array a) - { - if (a.begin() >= begin() && a.end() <= end()) - { - // Assigning from (partial) self; remove undesired elements. - erase((T*)a.end(), end()); - erase(begin(), (T*)a.begin()); - } - else - { - // Assert no overlap. - assert(a.end() <= begin() || a.begin() >= end()); - if (a.size() == size()) - { - // If same size, perform element copy. - copy(a); - } - else - { - // If different sizes, destroy then copy init elements. - pop_back(size()); - push_back(a); - } - } - return *this; - } - - // Copy init/assign. - inline LegacyDynArray(const self_type& a) - { - push_back(a()); - } - inline self_type& operator =(const self_type& a) - { - return *this = a(); - } - - // Init/assign from basic storage type. - inline LegacyDynArray(const S& a) - { - push_back(const_array(a.begin(), a.size())); - } - inline self_type& operator =(const S& a) - { - return *this = const_array(a.begin(), a.size()); - } - - inline ~LegacyDynArray() - { - destroy(); - S::resize_raw(0); - } - - void swap(self_type& a) - { - // Swap storage structures, no element copying - S temp = static_cast(*this); - static_cast(*this) = static_cast(a); - static_cast(a) = temp; - } - - inline size_type available() const - { - return capacity() - size(); - } - - // - // Allocation modifiers. - // - - void reserve(size_type count) - { - if (count > capacity()) - { - I s = size(); - S::resize_raw(count, false); - S::resize_raw(s, true); - } - } - - // Grow array, return iterator to new raw elems. - iterator grow_raw(size_type count = 1, bool allow_slack = true) - { - S::resize_raw(size() + count, allow_slack); - return end() - count; - } - Array append_raw(size_type count = 1, bool allow_slack = true) - { - return Array(grow_raw(count, allow_slack), count); - } - - iterator grow(size_type count) - { - return append_raw(count).init(); - } - iterator grow(size_type count, const T& val) - { - return append_raw(count).init(val); - } - - void shrink() - { - // Realloc memory to exact array size. - S::resize_raw(size()); - } - - void resize(size_type new_size) - { - size_type s = size(); - if (new_size > s) - { - append_raw(new_size - s, false).init(); - } - else - { - pop_back(s - new_size, false); - } - } - void resize(size_type new_size, const T& val) - { - size_type s = size(); - if (new_size > s) - { - append_raw(new_size - s, false).init(val); - } - else - { - pop_back(s - new_size, false); - } - } - - void assign(size_type n, const T& val) - { - resize(n); - fill(val); - } - - void assign(const_iterator start, const_iterator finish) - { - *this = const_array(start, finish); - } - - iterator push_back() - { - return grow(1); - } - iterator push_back(const T& val) - { - return grow(1, val); - } - iterator push_back(const_array a) - { - return append_raw(a.size(), false).init(a); - } - - array insert_raw(iterator pos, size_type count = 1) - { - // Grow array, return iterator to inserted raw elems. - assert(pos >= begin() && pos <= end()); - size_t i = pos - begin(); - append_raw(count); - (*this)(i + count).move_init((*this)(i)); - return (*this)(i, count); - } - - iterator insert(iterator it, const T& val) - { - return insert_raw(it, 1).init(val); - } - iterator insert(iterator it, size_type count, const T& val) - { - return insert_raw(it, count).init(val); - } - iterator insert(iterator it, const_iterator start, const_iterator finish) - { - return insert(it, const_array(start, finish)); - } - iterator insert(iterator it, const_array a) - { - return insert_raw(it, a.size()).init(a); - } - - iterator insert(size_type pos) - { - return insert_raw(&at(pos)).init(); - } - iterator insert(size_type pos, const T& val) - { - return insert_raw(&at(pos)).init(val); - } - iterator insert(size_type pos, const_array a) - { - return insert_raw(&at(pos), a.size()).init(a); - } - - void pop_back(size_type count = 1, bool allow_slack = true) - { - // Destroy erased elems, change size without reallocing. - assert(count >= 0 && count <= size()); - size_type new_size = size() - count; - (*this)(new_size).destroy(); - S::resize_raw(new_size, allow_slack); - } - - iterator erase(iterator start, iterator finish) - { - assert(start >= begin() && finish >= start && finish <= end()); - - // Copy over erased elems, destroy those at end. - iterator it = start, e = end(); - while (finish < e) - { - *it++ = *finish++; - } - pop_back(check_cast(finish - it)); - return it; - } - - iterator erase(iterator it) - { - return erase(it, it + 1); - } - - iterator erase(size_type pos, size_type count = 1) - { - return erase(begin() + pos, begin() + pos + count); - } - - void clear() - { - destroy(); - S::resize_raw(0); - } -}; - -template -struct StaticDynArray - : LegacyDynArray< T, I, NArray::StaticDynStorage > -{ -}; - - - - #include "CryPodArray.h" - - -#endif // CRYINCLUDE_CRYCOMMON_CRYARRAY_H diff --git a/Code/Legacy/CryCommon/CryCommon.cpp b/Code/Legacy/CryCommon/CryCommon.cpp deleted file mode 100644 index e2eb7c78a8..0000000000 --- a/Code/Legacy/CryCommon/CryCommon.cpp +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - - -// This contains compiled code that is used by other projects in the solution. -// Because we don't want static DLL dependencies, the CryCommon project is not compiled into a library. -// Instead, this .cpp file is included in every project which needs it. -// But we also include it in the CryCommon project (disabled in the build), -// so that CryCommon can have the same editable settings as other projects. - -// Set this to 1 to get an output of some pre-defined compiler symbols. - -#if 0 - -#ifdef _WIN32 -#pragma message("_WIN32") -#endif -#ifdef _WIN64 -#pragma message("_WIN64") -#endif - -#ifdef _M_IX86 -#pragma message("_M_IX86") -#endif -#ifdef _M_PPC -#pragma message("_M_PPC") -#endif - -#ifdef _DEBUG -#pragma message("_DEBUG") -#endif - -#ifdef _DLL -#pragma message("_DLL") -#endif -#ifdef _USRDLL -#pragma message("_USRDLL") -#endif -#ifdef _MT -#pragma message("_MT") -#endif - -#endif - -#include - -#include "TypeInfo_impl.h" diff --git a/Code/Legacy/CryCommon/CryCustomTypes.h b/Code/Legacy/CryCommon/CryCustomTypes.h deleted file mode 100644 index 58a6bc9306..0000000000 --- a/Code/Legacy/CryCommon/CryCustomTypes.h +++ /dev/null @@ -1,1204 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Derived CTypeInfos for structs, enums, etc. -// Compressed numerical types and associated TypeInfos - - -#ifndef CRYINCLUDE_CRYCOMMON_CRYCUSTOMTYPES_H -#define CRYINCLUDE_CRYCOMMON_CRYCUSTOMTYPES_H -#pragma once - -#include "CryTypeInfo.h" -#include -#include -#include -#include - -#define STATIC_CONST(T, name, val) \ - static inline T name() { static T t = val; return t; } - -#define ARRAY_COUNT(arr) (sizeof(arr) / sizeof *(arr)) -#define ARRAY_VAR(arr) ArrayT(&(arr)[0], (int)ARRAY_COUNT(arr)) - -//--------------------------------------------------------------------------- -// String helper function. - -template -inline bool HasString(const T& val, FToString flags, const void* def_data = 0) -{ - if (flags.SkipDefault) - { - if (val == (def_data ? *(const T*)def_data : T())) - { - return false; - } - } - return true; -} - -float NumToFromString(float val, int digits, bool floating, char buffer[], int buf_size); - -template -AZStd::string NumToString(T val, int min_digits, int max_digits, bool floating) -{ - char buffer[64]; - float f(val); - for (int digits = min_digits; digits < max_digits; digits++) - { - if (T(NumToFromString(f, digits, floating, buffer, 64)) == val) - { - break; - } - } - return buffer; -} - -//--------------------------------------------------------------------------- -// TypeInfo for structs - -struct CStructInfo - : CTypeInfo -{ - CStructInfo(cstr name, size_t size, size_t align, Array vars = Array(), Array templates = Array()); - virtual bool IsType(CTypeInfo const& Info) const; - virtual AZStd::string ToString(const void* data, FToString flags = 0, const void* def_data = 0) const; - virtual bool FromString(void* data, cstr str, FFromString flags = 0) const; - virtual bool ToValue(const void* data, void* value, const CTypeInfo& typeVal) const; - virtual bool FromValue(void* data, const void* value, const CTypeInfo& typeVal) const; - virtual bool ValueEqual(const void* data, const void* def_data) const; - virtual void SwapEndian(void* pData, size_t nCount, bool bWriting) const; - virtual void GetMemoryUsage(ICrySizer* pSizer, void const* data) const; - - virtual const CVarInfo* NextSubVar(const CVarInfo* pPrev, bool bRecurseBase = false) const; - virtual const CVarInfo* FindSubVar(cstr name) const; - - virtual CTypeInfo const* const* NextTemplateType(CTypeInfo const* const* pPrev) const - { - pPrev = pPrev ? pPrev + 1 : TemplateTypes.begin(); - return pPrev < TemplateTypes.end() ? pPrev : 0; - } - -protected: - Array Vars; - AZStd::fixed_string<16> EndianDesc; // Encodes instructions for endian swapping. - bool HasBitfields; - Array TemplateTypes; - - void MakeEndianDesc(); - size_t AddEndianDesc(cstr desc, size_t dim, size_t elem_size); - bool IsCompatibleType(CTypeInfo const& Info) const; -}; - -//--------------------------------------------------------------------------- -// Template TypeInfo for base types, using global To/FromString functions. - -template -struct TTypeInfo - : CTypeInfo -{ - TTypeInfo(cstr name) - : CTypeInfo(name, sizeof(T), alignof(T)) - {} - - virtual bool ToValue(const void* data, void* value, const CTypeInfo& typeVal) const - { - if (&typeVal == this) - { - return *(T*)value = *(const T*)data, true; - } - return false; - } - virtual bool FromValue(void* data, const void* value, const CTypeInfo& typeVal) const - { - if (&typeVal == this) - { - return *(T*)data = *(const T*)value, true; - } - return false; - } - - virtual AZStd::string ToString(const void* data, FToString flags = 0, const void* def_data = 0) const - { - if (!HasString(*(const T*)data, flags, def_data)) - { - return AZStd::string(); - } - return ::ToString(*(const T*)data); - } - virtual bool FromString(void* data, cstr str, FFromString flags = 0) const - { - if (!*str) - { - if (!flags.SkipEmpty) - { - *(T*)data = T(); - } - return true; - } - return ::FromString(*(T*)data, str); - } - virtual bool ValueEqual(const void* data, const void* def_data = 0) const - { - return *(const T*)data == (def_data ? *(const T*)def_data : T()); - } - - virtual void GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer, [[maybe_unused]] void const* data) const - {} -}; - -//--------------------------------------------------------------------------- -// Template TypeInfo for modified types (e.g. compressed, range-limited) - -template -struct TProxyTypeInfo - : CTypeInfo -{ - TProxyTypeInfo(cstr name) - : CTypeInfo(name, sizeof(S), alignof(S)) - {} - - virtual bool IsType(CTypeInfo const& Info) const - { return &Info == this || ValTypeInfo().IsType(Info); } - - virtual bool ToValue(const void* data, void* value, const CTypeInfo& typeVal) const - { - if (&typeVal == this) - { - *(S*)value = *(const S*)data; - return true; - } - T val = T(*(const S*)data); - return ValTypeInfo().ToValue(&val, value, typeVal); - } - virtual bool FromValue(void* data, const void* value, const CTypeInfo& typeVal) const - { - if (&typeVal == this) - { - *(S*)data = *(const S*)value; - return true; - } - T val; - if (ValTypeInfo().FromValue(&val, value, typeVal)) - { - *(S*)data = S(val); - return true; - } - return false; - } - - virtual AZStd::string ToString(const void* data, FToString flags = 0, const void* def_data = 0) const - { - T val = T(*(const S*)data); - T def_val = def_data ? T(*(const S*)def_data) : T(); - return ValTypeInfo().ToString(&val, flags, &def_val); - } - virtual bool FromString(void* data, cstr str, FFromString flags = 0) const - { - T val; - if (!*str) - { - if (!flags.SkipEmpty) - { - *(S*)data = S(); - } - return true; - } - if (!TypeInfo(&val).FromString(&val, str)) - { - return false; - } - *(S*)data = S(val); - return true; - } - - // Forward additional TypeInfo functions. - virtual bool GetLimit(ENumericLimit eLimit, float& fVal) const - { return ValTypeInfo().GetLimit(eLimit, fVal); } - virtual cstr EnumElem(uint nIndex) const - { return ValTypeInfo().EnumElem(nIndex); } - -protected: - - static const CTypeInfo& ValTypeInfo() - { return TypeInfo((T*)0); } -}; - -//--------------------------------------------------------------------------- -// Customisation for string. - -template<> -inline AZStd::string TTypeInfo::ToString(const void* data, FToString flags, const void* def_data) const -{ - const AZStd::string& val = *(const AZStd::string*)data; - if (def_data && flags.SkipDefault) - { - if (val == *(const AZStd::string*)def_data) - { - return AZStd::string(); - } - } - return val; -} - -template<> -inline bool TTypeInfo::FromString(void* data, cstr str, FFromString flags) const -{ - if (!*str && flags.SkipEmpty) - { - return true; - } - *(AZStd::string*)data = str; - return true; -} - -template<> -void TTypeInfo::GetMemoryUsage(ICrySizer* pSizer, void const* data) const; - -//--------------------------------------------------------------------------- -// -// TypeInfo for small integer types. - - -template -struct TIntTraits -{ - static const bool bSIGNED - = T(-1) < T(0); - - static const T nMIN_FACTOR - = bSIGNED ? T(-1) : T(0); - - static const size_t nPOS_BITS - = sizeof(T) * 8 - bSIGNED; - - static const T nMIN = std::numeric_limits::min(); - - static const T nMAX = std::numeric_limits::max(); -}; - -template -struct TIntType -{}; - -template<> -struct TIntType<1> -{ - typedef int8 TType; -}; -template<> -struct TIntType<2> -{ - typedef int16 TType; -}; -template<> -struct TIntType<4> -{ - typedef int32 TType; -}; -template<> -struct TIntType<8> -{ - typedef int64 TType; -}; - -template -inline bool ConvertInt(D& dest, S src) -{ - if constexpr (TIntTraits::nPOS_BITS < TIntTraits::nPOS_BITS) - { - src = clamp_tpl(src, S(TIntTraits::nMIN), S(TIntTraits::nMAX)); - } - else if constexpr (TIntTraits::bSIGNED < TIntTraits::bSIGNED) - { - src = max(src, S(0)); - } - - dest = D(src); - assert(S(dest) == src); - return true; -} - -template -inline bool ConvertInt(D& dest, const void* src, const CTypeInfo& typeSrc) -{ - if (typeSrc.IsType()) - { - switch (typeSrc.Size) - { - case 1: - return ConvertInt(dest, *(const int8*)src); - case 2: - return ConvertInt(dest, *(const int16*)src); - case 4: - return ConvertInt(dest, *(const int32*)src); - case 8: - return ConvertInt(dest, *(const int64*)src); - } - } - else if (typeSrc.IsType()) - { - switch (typeSrc.Size) - { - case 1: - return ConvertInt(dest, *(const uint8*)src); - case 2: - return ConvertInt(dest, *(const uint16*)src); - case 4: - return ConvertInt(dest, *(const uint32*)src); - case 8: - return ConvertInt(dest, *(const uint64*)src); - } - } - return false; -} - -template -inline bool ConvertInt(void* dest, const CTypeInfo& typeDest, S src) -{ - if (typeDest.IsType()) - { - switch (typeDest.Size) - { - case 1: - return ConvertInt(*(int8*)dest, src); - case 2: - return ConvertInt(*(int16*)dest, src); - case 4: - return ConvertInt(*(int32*)dest, src); - case 8: - return ConvertInt(*(int64*)dest, src); - } - } - else if (typeDest.IsType()) - { - switch (typeDest.Size) - { - case 1: - return ConvertInt(*(uint8*)dest, src); - case 2: - return ConvertInt(*(uint16*)dest, src); - case 4: - return ConvertInt(*(uint32*)dest, src); - case 8: - return ConvertInt(*(uint64*)dest, src); - } - } - return false; -} - -template -struct TIntTypeInfo - : TTypeInfo -{ - TIntTypeInfo(cstr name) - : TTypeInfo(name) - {} - - virtual bool IsType(CTypeInfo const& Info) const - { return &Info == this || &Info == (TIntTraits::bSIGNED ? &TypeInfo((int*)0) : &TypeInfo((uint*)0)); } - - virtual bool GetLimit(ENumericLimit eLimit, float& fVal) const - { - if (eLimit == eLimit_Min) - { - return fVal = float(TIntTraits::nMIN), true; - } - if (eLimit == eLimit_Max) - { - return fVal = float(TIntTraits::nMAX), true; - } - if (eLimit == eLimit_Step) - { - return fVal = 1.f, true; - } - return false; - } - - // Override to allow int conversion - virtual bool FromValue(void* data, const void* value, const CTypeInfo& typeVal) const - { return ConvertInt(*(T*)data, value, typeVal); } - virtual bool ToValue(const void* data, void* value, const CTypeInfo& typeVal) const - { return ConvertInt(value, typeVal, *(const T*)data); } -}; - -//--------------------------------------------------------------------------- -// Store any type, such as an enum, in a small int. - -template -struct TRangedType -{ - typedef TRangedType TThis; - - TRangedType(T init = T(nDEFAULT)) - : m_Val(init) - { - CheckRange(m_Val); - } - - operator T() const - { - return m_Val; - } - - CUSTOM_STRUCT_INFO(CCustomInfo) - -protected: - T m_Val; - - static bool HasMin() - { return nMIN > INT_MIN; } - static bool HasMax() - { return nMAX < INT_MAX; } - - static bool CheckRange(T& val) - { - if (HasMin() && val < T(nMIN)) - { - val = T(nMIN); - return false; - } - else if (HasMax() && val > T(nMAX)) - { - val = T(nMAX); - return false; - } - return true; - } - - // Adaptor TypeInfo for specifying limits, and implementing range checking - struct CCustomInfo - : TProxyTypeInfo - { - CCustomInfo() - : TProxyTypeInfo(::TypeInfo((T*) 0).Name) - {} - - virtual bool GetLimit(ENumericLimit eLimit, float& fVal) const - { - if (eLimit == eLimit_Min && HasMin()) - { - return fVal = T(nMIN), true; - } - if (eLimit == eLimit_Max && HasMax()) - { - return fVal = T(nMAX), true; - } - return ::TypeInfo((T*)0).GetLimit(eLimit, fVal); - } - }; -}; - -//--------------------------------------------------------------------------- -// Store any type, such as an enum, in a small int. - -template -struct TSmall -{ - typedef TSmall TThis; - typedef T TValue; - - inline TSmall(T val = T(nDefault)) - { - set(val); - } - void set(T val = T(nDefault)) - { - m_Val = S(val) - S(nOffset); - - // The unary operator+() forces integer promotion to happen and thus - // induces a call to operator T(), which allows the equality operator to work. - assert(+(*this) == val); - } - - inline operator T() const - { return T(T(m_Val) + nOffset); } - inline T operator +() const - { return T(T(m_Val) + nOffset); } - - CUSTOM_STRUCT_INFO(CCustomInfo) - -protected: - S m_Val; - - struct CCustomInfo - : TProxyTypeInfo - { - CCustomInfo() - : TProxyTypeInfo("TSmall<>") - {} - - virtual bool GetLimit(ENumericLimit eLimit, float& fVal) const - { - if (eLimit == eLimit_Min) - { - return fVal = float(TIntTraits::nMIN + nOffset), true; - } - if (eLimit == eLimit_Max) - { - return fVal = float(TIntTraits::nMAX + nOffset), true; - } - if (eLimit == eLimit_Step) - { - return fVal = 1.f, true; - } - return false; - } - }; -}; - -//--------------------------------------------------------------------------- -// Quantise a float linearly in an int. -template::nMAX, bool bTRUNC = false> -struct TFixed -{ - typedef float TValue; - - inline TFixed() - : m_Store(0) - {} - - inline TFixed(float fIn) - { - float fStore = ToStore(fIn); - fStore = clamp_tpl(fStore, float(TIntTraits::nMIN_FACTOR * nQUANT), float(nQUANT)); - m_Store = bTRUNC ? S(fStore) : fStore < 0.f ? S(fStore - 0.5f) : S(fStore + 0.5f); - } - - // Conversion. - inline operator float() const - { return FromStore(m_Store); } - inline float operator +() const - { return FromStore(m_Store); } - inline bool operator !() const - { return !m_Store; } - - inline bool operator ==(const TFixed& x) const - { return m_Store == x.m_Store; } - inline bool operator ==(float x) const - { return m_Store == TFixed(x); } - inline S GetStore() const - { return m_Store; } - - static S GetMaxStore() - { return nQUANT; } - static float GetMaxValue() - { return float(nLIMIT); } - - CUSTOM_STRUCT_INFO(CCustomInfo) - -protected: - S m_Store; - - typedef TFixed TThis; - - static const int nMAX = nLIMIT; - static const int nMIN = TIntTraits::nMIN_FACTOR * nLIMIT; - - static inline float ToStore(float f) - { return f * float(nQUANT) / float(nLIMIT); } - static inline float FromStore(float f) - { return f * float(nLIMIT) / float(nQUANT); } - - // TypeInfo implementation. - struct CCustomInfo - : TProxyTypeInfo - { - CCustomInfo() - : TProxyTypeInfo("TFixed<>") - {} - - virtual bool GetLimit(ENumericLimit eLimit, float& fVal) const - { - if (eLimit == eLimit_Min) - { - return fVal = float(nMIN), true; - } - if (eLimit == eLimit_Max) - { - return fVal = float(nMAX), true; - } - if (eLimit == eLimit_Step) - { - return fVal = FromStore(1.f), true; - } - return false; - } - - // Override ToString: Limit to significant digits. - virtual AZStd::string ToString(const void* data, FToString flags = 0, const void* def_data = 0) const - { - if (!HasString(*(const S*)data, flags, def_data)) - { - return AZStd::string(); - } - static int digits = int_ceil(log10f(float(nQUANT))); - return NumToString(*(const TFixed*)data, 1, digits + 3, true); - } - }; -}; - - -// Define the canonical float-to-byte quantisation. -typedef TFixed UnitFloat8; - -#ifdef COMPRESSED_FLOATS - -//--------------------------------------------------------------------------- -// A floating point number, with templated storage size (and sign), and number of exponent bits -template -struct TFloat -{ - typedef float TValue; - - ILINE TFloat() - : m_Store(0) - {} - - ILINE TFloat(float fIn) - : m_Store(FromFloat(fIn)) - {} - - ILINE operator float() const - { return ToFloat(m_Store); } - ILINE float operator +() const - { return ToFloat(m_Store); } - - ILINE bool operator !() const - { return !m_Store; } - - ILINE bool operator ==(TFloat x) const - { return m_Store == x.m_Store; } - ILINE bool operator ==(float x) const - { return float(*this) == x; } - - inline TFloat& operator *=(float x) - { return *this = *this * x; } - - ILINE uint32 partial_float_conversion() const - { return (0 == m_Store) ? 0 : ToFloatCore(m_Store); } - - STATIC_CONST(float, fMAX, ToFloat(TIntTraits::nMAX)); - STATIC_CONST(float, fPOS_MIN, ToFloat(1 << nMANT_BITS)); - STATIC_CONST(float, fMIN, -fMAX() * (float)TIntTraits::bSIGNED); - - CUSTOM_STRUCT_INFO(CCustomInfo) - -protected: - S m_Store; - - typedef TFloat TThis; - - static const S nBITS = sizeof(S) * 8; - static const S nSIGN = TIntTraits::bSIGNED; - static const S nMANT_BITS = nBITS - nEXP_BITS - nSIGN; - static const S nSIGN_MASK = S(nSIGN << (nBITS - 1)); - static const S nMANT_MASK = (S(1) << nMANT_BITS) - 1; - static const S nEXP_MASK = ~S(nMANT_MASK | nSIGN_MASK); - static const int nEXP_MAX = 1 << (nEXP_BITS - 1), - nEXP_MIN = 1 - nEXP_MAX; - - STATIC_CONST(float, fROUNDER, 1.f + fPOS_MIN() * 0.5f); - - static inline S FromFloat(float fIn) - { - static_assert(sizeof(S) <= 4); - static_assert(nEXP_BITS > 0 && nEXP_BITS <= 8 && nEXP_BITS < sizeof(S) * 8 - 4); - - // Clamp to allowed range. - float fClamped = clamp_tpl(fIn * fROUNDER(), fMIN(), fMAX()); - - // Bit shift to convert from IEEE float32. - uint32 uBits = *(const uint32*)&fClamped; - - // Convert exp. - int32 iExp = (uBits >> 23) & 0xFF; - iExp -= 127 + nEXP_MIN; - IF (iExp < 0, 0) - { - // Underflow. - return 0; - } - - // Reduce mantissa. - uint32 uMant = uBits >> (23 - nMANT_BITS); - - S bits = (uMant & nMANT_MASK) - | (iExp << nMANT_BITS) - | ((uBits >> (32 - nBITS)) & nSIGN_MASK); - - #ifdef _DEBUG - fIn = clamp_tpl(fIn, fMIN(), fMAX()); - float fErr = fabs(ToFloat(bits) - fIn); - float fMaxErr = fabs(fIn) / float(1 << nMANT_BITS); - assert(fErr <= fMaxErr); - #endif - - return bits; - } - - static inline uint32 ToFloatCore(S bits) - { - // Extract FP components. - uint32 uBits = bits & nMANT_MASK, - uExp = (bits & ~nSIGN_MASK) >> nMANT_BITS, - uSign = bits & nSIGN_MASK; - - // Shift to 32-bit. - uBits <<= 23 - nMANT_BITS; - uBits |= (uExp + 127 + nEXP_MIN) << 23; - uBits |= uSign << (32 - nBITS); - - return uBits; - } - - static ILINE float ToFloat(S bits) - { - IF (bits == 0, 0) - { - return 0.f; - } - - uint32 uBits = ToFloatCore(bits); - return *(float*)&uBits; - } - - // TypeInfo implementation. - struct CCustomInfo - : TProxyTypeInfo - { - CCustomInfo() - : TProxyTypeInfo("TFloat<>") - {} - - virtual bool GetLimit(ENumericLimit eLimit, float& fVal) const - { - if (eLimit == eLimit_Min) - { - return fVal = fMIN(), true; - } - if (eLimit == eLimit_Max) - { - return fVal = fMAX(), true; - } - if (eLimit == eLimit_Step) - { - return fVal = fPOS_MIN(), true; - } - return false; - } - - // Override ToString: Limit to significant digits. - virtual string ToString(const void* data, FToString flags = 0, const void* def_data = 0) const - { - if (!HasString(*(const S*)data, flags, def_data)) - { - return string(); - } - static int digits = int_ceil(log10f(1 << nMANT_BITS)); - return NumToString(*(const TFloat*)data, 1, digits + 3, true); - } - }; -}; - -// Canonical float16 types, with range ~= 64K. -typedef TFloat SFloat16; -typedef TFloat UFloat16; - -template -ILINE T partial_float_cast(const SFloat16& s) { return static_cast(s.partial_float_conversion()); } - -template -ILINE T partial_float_cast(const UFloat16& u) { return static_cast(u.partial_float_conversion()); } - -#ifdef _DEBUG - -// Classes for unit tests. -template -void TestValues(T val) -{ - T2 val2 = val; - T2 val2c; - - bool b = TypeInfo(&val2c).FromValue(&val2c, val); - assert(b); - assert(val2 == val2c); - b = TypeInfo(&val2c).ToValue(&val2c, val); - assert(b); - assert(val2 == T2(val)); -} - -template -void TestTypes(T val) -{ - T2 val2 = val; - string s = TypeInfo(&val2).ToString(&val2); - bool b = TypeInfo(&val).FromString(&val, s); - assert(b); - assert(val2 == T2(val)); - - TestValues(val); -} - -template -void TestType(T val) -{ - TestTypes(val); -} - -#endif // _DEBUG - -#endif // COMPRESSED_FLOATS - -//--------------------------------------------------------------------------- -// TypeInfo for enums - -//--------------------------------------------------------------------------- -// Implement data features based on enum definition -/* - interface EnumDef - { - typedef TInt; - uint Count(); - TInt Value(uint i); - cstr Name(uint i); - bool MatchName(uint i, cstr str); - cstr ToName(TInt value); - } const -*/ - -template -struct TEnumInfo - : TIntTypeInfo - , TEnumDef -{ - TEnumInfo(cstr name) - : TIntTypeInfo(name) {} - - virtual cstr EnumElem(uint nIndex) const - { - if (nIndex < TEnumDef::Count()) - { - cstr name = TEnumDef::Name(nIndex); - if (*name != '_') - { - return name; - } - } - return 0; - } - - virtual bool FromValue(void* data, const void* value, const CTypeInfo& typeVal) const - { - TInt val; - if (ConvertInt(val, value, typeVal)) - { - if (TEnumDef::ToName(val)) - { - return *(TInt*)data = val, true; - } - } - return false; - } - - virtual AZStd::string ToString(const void* data, FToString flags, const void* def_data) const - { - TInt val = *(const TInt*)(data); - if (flags.SkipDefault && val == (def_data ? *(const TInt*)def_data : TInt(0))) - { - return AZStd::string(); - } - - if (cstr sName = TEnumDef::ToName(val)) - { - return sName; - } - - // Unmatched value, return as number. - return ::ToString(val); - } - - virtual bool FromString(void* data, cstr str, FFromString flags) const - { - if (!*str) - { - if (!flags.SkipEmpty) - { - *(TInt*)data = (TInt)0; - } - return true; - } - - for (int i = 0, count = TEnumDef::Count(); i < count; i++) - { - if (TEnumDef::MatchName(i, str)) - { - return *(TInt*)data = check_cast(TEnumDef::Value(i)), true; - } - } - - // No match, attempt numeric or bool conversion. - if (::FromString(*(TInt*)data, str)) - { - return true; - } - - bool b; - if (::FromString(b, str)) - { - return *(TInt*)data = b, true; - } - - return false; - } -}; - -//--------------------------------------------------------------------------- -// TypeInfo for regular enums - -struct CSimpleEnumDef -{ - void Init(Array names, char* enum_str); - - // TEnumDef implementations - ILINE uint Count() const - { return asNames.size(); } - ILINE static uint Value(uint i) - { return i; } - ILINE cstr Name(uint i) const - { return asNames[i]; } - ILINE bool MatchName(uint i, cstr str) const - { - cstr name = asNames[i]; - if (*name == '_') - { - name++; - } - return azstricmp(name, str) == 0; - } - ILINE cstr ToName(uint value) const - { - if (value < Count()) - { - return asNames[value]; - } - return 0; - } - -protected: - - Array asNames; -}; - -struct CSimpleEnumInfo - : TEnumInfo -{ - CSimpleEnumInfo(cstr name, Array names, char* enum_str) - : TEnumInfo(name) - { - Init(names, enum_str); - } -}; - -// Define a regular small enum with TypeInfo - -#define DEFINE_ENUM_VALUE(EType, E, TInt) \ - TInt Value; \ - ILINE EType(E val = E(0)) \ - : Value(aznumeric_caster(val)) {} \ - ILINE operator E() const { return E(Value); } \ - ILINE E operator +() const { return E(Value); } \ - -#define DEFINE_ENUM(EType, ...) \ - struct EType \ - { \ - enum E { __VA_ARGS__, _count }; \ - typedef uint8 TInt; \ - DEFINE_ENUM_VALUE(EType, E, TInt) \ - ILINE static uint Count() { return _count; } \ - static const CSimpleEnumInfo& TypeInfo() { \ - static cstr names[_count]; \ - static char enum_str[] = #__VA_ARGS__; \ - static CSimpleEnumInfo info( #EType, Array(&names[0], _count), enum_str); \ - return info; \ - } \ - }; - -//--------------------------------------------------------------------------- -// TypeInfo for irregular enums - -struct CEnumDef -{ - typedef int64 TValue; - - struct SElem - { - TValue Value; - cstr Name; - }; - - void Init(Array elems, char* enum_str = 0); - - // TEnumDef implementations - ILINE uint Count() const - { return Elems.size(); } - ILINE TValue Value(uint i) const - { return Elems[i].Value; } - ILINE cstr Name(uint i) const - { return *Elems[i].Name ? Elems[i].Name + nPrefixLength : ""; } - bool MatchName(uint i, cstr str) const; - cstr ToName(TValue val) const; - - struct SInit - { - static LegacyDynArray* s_pElems; - - static void Init(LegacyDynArray& elems) - { - s_pElems = &elems; - } - SInit() - { - TValue val = s_pElems->empty() ? 0 : s_pElems->back().Value + 1; - s_pElems->push_back()->Value = val; - } - SInit(TValue val) - { - s_pElems->push_back()->Value = val; - } - }; - -protected: - - Array Elems; - TValue MinValue; - bool bRegular; - uint nPrefixLength; -}; - -template -struct CEnumInfo - : TEnumInfo -{ - CEnumInfo(cstr name, Array elems, char* enum_str = 0) - : TEnumInfo(name) - { - CEnumDef::Init(elems, enum_str); - } -}; - -struct CEnumDefUuid - : public TTypeInfo -{ - struct SElem - { - AZ::Uuid Value; - cstr Name; - }; - - CEnumDefUuid(cstr name, Array elems, char* enum_str = 0) - : TTypeInfo(name) - { - CEnumDefUuid::Init(elems, enum_str); - } - void Init(Array elems, char* enum_str = 0); - - // TEnumDef implementations - ILINE uint Count() const - { - return Elems.size(); - } - ILINE AZ::Uuid Value(uint i) const - { - return Elems[i].Value; - } - ILINE cstr Name(uint i) const - { - return *Elems[i].Name ? Elems[i].Name + nPrefixLength : ""; - } - bool MatchName(uint i, cstr str) const; - cstr ToName(AZ::Uuid val) const; - - cstr EnumElem(uint nIndex) const override - { - if (nIndex < Count()) - { - cstr name = Name(nIndex); - if (*name != '_') - { - return name; - } - } - return 0; - } - - bool FromValue(void* data, const void* value, const CTypeInfo& typeVal) const override - { - if (&typeVal == this) - { - const AZ::Uuid& valueUuid = *reinterpret_cast(value); - if (ToName(valueUuid)) - { - AZ::Uuid& dataUuid = *reinterpret_cast(data); - dataUuid = valueUuid; - return true; - } - } - return false; - } - - AZStd::string ToString(const void* data, FToString flags, const void* def_data) const override - { - const AZ::Uuid& uuidData = *reinterpret_cast(data); - const AZ::Uuid& defUuidData = *reinterpret_cast(def_data); - if (flags.SkipDefault && uuidData == (def_data ? defUuidData : AZ::Uuid::CreateNull())) - { - return AZStd::string(); - } - - if (cstr sName = ToName(uuidData)) - { - return sName; - } - - return AZStd::string(); - } - - bool FromString(void* data, cstr str, FFromString flags) const override - { - AZ::Uuid& uuidData = *reinterpret_cast(data); - if (!*str) - { - if (!flags.SkipEmpty) - { - uuidData = AZ::Uuid::CreateNull(); - } - return true; - } - - for (int i = 0, count = Count(); i < count; i++) - { - if (MatchName(i, str)) - { - uuidData = Value(i); - return true; - } - } - - return false; - } - -protected: - - Array Elems; - bool bRegular; - uint nPrefixLength; -}; - -#endif // CRYINCLUDE_CRYCOMMON_CRYCUSTOMTYPES_H diff --git a/Code/Legacy/CryCommon/CryHalf.inl b/Code/Legacy/CryCommon/CryHalf.inl index b0d322f418..a9683540e1 100644 --- a/Code/Legacy/CryCommon/CryHalf.inl +++ b/Code/Legacy/CryCommon/CryHalf.inl @@ -141,7 +141,6 @@ struct CryHalf2 void GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer) const {} - AUTO_STRUCT_INFO }; struct CryHalf4 @@ -197,7 +196,6 @@ struct CryHalf4 void GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer) const {} - AUTO_STRUCT_INFO }; #endif // #ifndef CRY_HALF_INL diff --git a/Code/Legacy/CryCommon/CryHalf_info.h b/Code/Legacy/CryCommon/CryHalf_info.h deleted file mode 100644 index 8e4105f8b2..0000000000 --- a/Code/Legacy/CryCommon/CryHalf_info.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef CRYINCLUDE_CRYCOMMON_CRYHALF_INFO_H -#define CRYINCLUDE_CRYCOMMON_CRYHALF_INFO_H -#pragma once - -#include "CryHalf.inl" - -STRUCT_INFO_BEGIN(CryHalf2) -STRUCT_VAR_INFO(x, TYPE_INFO(CryHalf)) -STRUCT_VAR_INFO(y, TYPE_INFO(CryHalf)) -STRUCT_INFO_END(CryHalf2) - -STRUCT_INFO_BEGIN(CryHalf4) -STRUCT_VAR_INFO(x, TYPE_INFO(CryHalf)) -STRUCT_VAR_INFO(y, TYPE_INFO(CryHalf)) -STRUCT_VAR_INFO(z, TYPE_INFO(CryHalf)) -STRUCT_VAR_INFO(w, TYPE_INFO(CryHalf)) -STRUCT_INFO_END(CryHalf4) - -#endif // CRYINCLUDE_CRYCOMMON_CRYHALF_INFO_H diff --git a/Code/Legacy/CryCommon/CryHeaders.h b/Code/Legacy/CryCommon/CryHeaders.h deleted file mode 100644 index 49ea28ee0e..0000000000 --- a/Code/Legacy/CryCommon/CryHeaders.h +++ /dev/null @@ -1,1506 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef CRYINCLUDE_CRYCOMMON_CRYHEADERS_H -#define CRYINCLUDE_CRYCOMMON_CRYHEADERS_H -#pragma once - - -#include "BaseTypes.h" -#include "Cry_Math.h" - -#ifdef MAX_SUB_MATERIALS -// This checks that the values are in sync in the different files. -static_assert(MAX_SUB_MATERIALS == 128); -#else - #define MAX_SUB_MATERIALS 128 -#endif - -#include "CryEndian.h" - -// Chunk type must fit into uint16 -enum ChunkTypes -{ - ChunkType_ANY = 0, - - ChunkType_Mesh = 0x1000, // was 0xCCCC0000 in chunk files with versions <= 0x745 - ChunkType_Helper, - ChunkType_VertAnim, - ChunkType_BoneAnim, - ChunkType_GeomNameList, // obsolete - ChunkType_BoneNameList, - ChunkType_MtlList, // obsolete - ChunkType_MRM, // obsolete - ChunkType_SceneProps, // obsolete - ChunkType_Light, // obsolete - ChunkType_PatchMesh, // not implemented - ChunkType_Node, - ChunkType_Mtl, // obsolete - ChunkType_Controller, - ChunkType_Timing, - ChunkType_BoneMesh, - ChunkType_BoneLightBinding, // obsolete. describes the lights binded to bones - ChunkType_MeshMorphTarget, // describes a morph target of a mesh chunk - ChunkType_BoneInitialPos, // describes the initial position (4x3 matrix) of each bone; just an array of 4x3 matrices - ChunkType_SourceInfo, // describes the source from which the cgf was exported: source max file, machine and user - ChunkType_MtlName, // material name - ChunkType_ExportFlags, // Special export flags. - ChunkType_DataStream, // Stream data. - ChunkType_MeshSubsets, // Array of mesh subsets. - ChunkType_MeshPhysicsData, // Physicalized mesh data. - - // these are the new compiled chunks for characters - ChunkType_CompiledBones = 0x2000, // was 0xACDC0000 in chunk files with versions <= 0x745 - ChunkType_CompiledPhysicalBones, - ChunkType_CompiledMorphTargets, - ChunkType_CompiledPhysicalProxies, - ChunkType_CompiledIntFaces, - ChunkType_CompiledIntSkinVertices, - ChunkType_CompiledExt2IntMap, - - ChunkType_BreakablePhysics = 0x3000, // was 0xAAFC0000 in chunk files with versions <= 0x745 - ChunkType_FaceMap, // obsolete - ChunkType_MotionParameters, - ChunkType_FootPlantInfo, // obsolete - ChunkType_BonesBoxes, - ChunkType_FoliageInfo, - ChunkType_Timestamp, - ChunkType_GlobalAnimationHeaderCAF, - ChunkType_GlobalAnimationHeaderAIM, - ChunkType_BspTreeData -}; - -enum ECgfStreamType -{ - CGF_STREAM_POSITIONS, - CGF_STREAM_NORMALS, - CGF_STREAM_TEXCOORDS, - CGF_STREAM_COLORS, - CGF_STREAM_COLORS2, - CGF_STREAM_INDICES, - CGF_STREAM_TANGENTS, - CGF_STREAM_DUMMY0_, // used to be CGF_STREAM_SHCOEFFS, dummy is needed to keep existing assets loadable - CGF_STREAM_DUMMY1_, // used to be CGF_STREAM_SHAPEDEFORMATION, dummy is needed to keep existing assets loadable - CGF_STREAM_BONEMAPPING, - CGF_STREAM_FACEMAP, - CGF_STREAM_VERT_MATS, - CGF_STREAM_QTANGENTS, - CGF_STREAM_SKINDATA, - CGF_STREAM_DUMMY2_, // used to be old console specific, dummy is needed to keep existing assets loadable - CGF_STREAM_P3S_C4B_T2S, - CGF_STREAM_NUM_TYPES -}; - -////////////////////////////////////////////////////////////////////////// -enum EPhysicsGeomType -{ - PHYS_GEOM_TYPE_NONE = -1, - PHYS_GEOM_TYPE_DEFAULT = 0x1000 + 0, - PHYS_GEOM_TYPE_NO_COLLIDE = 0x1000 + 1, - PHYS_GEOM_TYPE_OBSTRUCT = 0x1000 + 2, - - PHYS_GEOM_TYPE_DEFAULT_PROXY = 0x1000 + 0x100, // Default physicalization, but only proxy (NoDraw geometry). -}; - -struct CryVertex -{ - Vec3 p; //position - Vec3 n; //normal vector - - AUTO_STRUCT_INFO -}; - -struct CryFace -{ - int v0, v1, v2; //vertex indices - int MatID; //mat ID - - int& operator [] (int i) {return (&v0)[i]; } - int operator [] (int i) const {return (&v0)[i]; } - bool isDegenerate () const {return v0 == v1 || v1 == v2 || v2 == v0; } - - AUTO_STRUCT_INFO -}; - -struct CryUV -{ - float u, v; //texture coordinates - AUTO_STRUCT_INFO -}; - -struct CrySkinVtx -{ - int bVolumetric; - int idx[4]; - float w[4]; - Matrix33 M; - - AUTO_STRUCT_INFO -}; - -////////////////////////////////////////////////////////////////////////// -struct CryLink -{ - int BoneID; - Vec3 offset; - float Blending; - - AUTO_STRUCT_INFO -}; - -struct CryIRGB -{ - unsigned char r, g, b; - AUTO_STRUCT_INFO -}; - -struct NAME_ENTITY -{ - char name[64]; -}; - -struct phys_geometry; - -struct CryBonePhysics -{ - phys_geometry* pPhysGeom; // id of a separate mesh for this bone // MUST not be in File Structures!!! - // additional joint parameters - int flags; - float min[3], max[3]; - float spring_angle[3]; - float spring_tension[3]; - float damping[3]; - float framemtx[3][3]; -}; - -// the compatible between 32- and 64-bits structure -struct CryBonePhysics_Comp -{ - int nPhysGeom; // id of a separate mesh for this bone - // additional joint parameters - int flags; - float min[3], max[3]; - float spring_angle[3]; - float spring_tension[3]; - float damping[3]; - float framemtx[3][3]; - - AUTO_STRUCT_INFO -}; - -#define __copy3(MEMBER) left.MEMBER[0] = right.MEMBER[0]; left.MEMBER[1] = right.MEMBER[1]; left.MEMBER[2] = right.MEMBER[2]; -inline void CopyPhysInfo(CryBonePhysics& left, const CryBonePhysics_Comp& right) -{ - left.pPhysGeom = (phys_geometry*)(INT_PTR)right.nPhysGeom; - left.flags = right.flags; - __copy3(min); - __copy3(max); - __copy3(spring_angle); - __copy3(spring_tension); - __copy3(damping); - __copy3(framemtx[0]); - __copy3(framemtx[1]); - __copy3(framemtx[2]); -} -inline void CopyPhysInfo(CryBonePhysics_Comp& left, const CryBonePhysics& right) -{ - left.nPhysGeom = (int)(INT_PTR)right.pPhysGeom; - left.flags = right.flags; - __copy3(min); - __copy3(max); - __copy3(spring_angle); - __copy3(spring_tension); - __copy3(damping); - __copy3(framemtx[0]); - __copy3(framemtx[1]); - __copy3(framemtx[2]); -} -#undef __copy3 - -struct CryBoneDescData -{ - unsigned int m_nControllerID; // unic id of bone (generated from bone name in the max) - - // [Sergiy] physics info for different lods - // lod 0 is the physics of alive body, lod 1 is the physics of a dead body - CryBonePhysics m_PhysInfo[2]; - float m_fMass; - - Matrix34 m_DefaultW2B; //intitalpose matrix World2Bone - Matrix34 m_DefaultB2W; //intitalpose matrix Bone2World - - enum - { - kBoneNameMaxSize = 256, - }; - char m_arrBoneName[CryBoneDescData::kBoneNameMaxSize]; - - int m_nLimbId; // set by model state class - - // this bone parent is this[m_nOffsetParent], 0 if the bone is root. Normally this is <= 0 - int m_nOffsetParent; - - // The whole hierarchy of bones is kept in one big array that belongs to the ModelState - // Each bone that has children has its own range of bone objects in that array, - // and this points to the beginning of that range and defines the number of bones. - unsigned m_numChildren; - // the beginning of the subarray of children is at this[m_nOffsetChildren] - // this is 0 if there are no children - int m_nOffsetChildren; -}; - -struct CryBoneDescData_Comp -{ - unsigned int m_nControllerID; // unique id of bone (generated from bone name) - - // [Sergiy] physics info for different lods - // lod 0 is the physics of alive body, lod 1 is the physics of a dead body - CryBonePhysics_Comp m_PhysInfo[2]; - float m_fMass; - - Matrix34 m_DefaultW2B; //intitalpose matrix World2Bone - Matrix34 m_DefaultB2W; //intitalpose matrix Bone2World - - char m_arrBoneName[256]; - - int m_nLimbId; // set by model state class - - // this bone parent is this[m_nOffsetParent], 0 if the bone is root. Normally this is <= 0 - int m_nOffsetParent; - - // The whole hierarchy of bones is kept in one big array that belongs to the ModelState - // Each bone that has children has its own range of bone objects in that array, - // and this points to the beginning of that range and defines the number of bones. - unsigned m_numChildren; - // the beginning of the subarray of children is at this[m_nOffsetChildren] - // this is 0 if there are no children - int m_nOffsetChildren; - - AUTO_STRUCT_INFO -}; - -inline void CopyBoneDescData(CryBoneDescData_Comp& left, const CryBoneDescData& right) -{ - left.m_nControllerID = right.m_nControllerID; - - CopyPhysInfo(left.m_PhysInfo[0], right.m_PhysInfo[0]); - CopyPhysInfo(left.m_PhysInfo[1], right.m_PhysInfo[1]); - - left.m_fMass = right.m_fMass; - left.m_DefaultW2B = right.m_DefaultW2B; - left.m_DefaultB2W = right.m_DefaultB2W; - memcpy(left.m_arrBoneName, right.m_arrBoneName, sizeof(left.m_arrBoneName)); - left.m_nLimbId = right.m_nLimbId; - left.m_nOffsetParent = right.m_nOffsetParent; - left.m_numChildren = right.m_numChildren; - left.m_nOffsetChildren = right.m_nOffsetChildren; -} - -struct BONE_ENTITY -{ - int BoneID; - int ParentID; - int nChildren; - - // Id of controller (CRC32 From name of bone). - unsigned int ControllerID; - - char prop[32]; - CryBonePhysics_Comp phys; - - AUTO_STRUCT_INFO -}; - -struct KEY_HEADER -{ - int KeyTime; //in ticks - AUTO_STRUCT_INFO -}; - -struct RANGE_ENTITY -{ - char name[32]; - int start; - int end; - AUTO_STRUCT_INFO -}; - -//======================================== -//Timing Chunk Header -//======================================== -struct TIMING_CHUNK_DESC_0918 -{ - enum - { - VERSION = 0x0918 - }; - - f32 m_SecsPerTick; // seconds/ticks - int32 m_TicksPerFrame; // ticks/Frame - - RANGE_ENTITY global_range; // covers all of the time ranges - int qqqqnSubRanges; - - AUTO_STRUCT_INFO -}; - - -struct SPEED_CHUNK_DESC_2 -{ - enum - { - VERSION = 0x0922 - }; - - float Speed; - float Distance; - float Slope; - uint32 AnimFlags; - f32 MoveDir[3]; - QuatT StartPosition; - AUTO_STRUCT_INFO -}; - - -struct MotionParams905 -{ - uint32 m_nAssetFlags; - uint32 m_nCompression; - - int32 m_nTicksPerFrame; - f32 m_fSecsPerTick; - int32 m_nStart; - int32 m_nEnd; - - f32 m_fMoveSpeed; - f32 m_fTurnSpeed; - f32 m_fAssetTurn; - f32 m_fDistance; - f32 m_fSlope; - - QuatT m_StartLocation; - QuatT m_EndLocation; - - f32 m_LHeelStart, m_LHeelEnd; - f32 m_LToe0Start, m_LToe0End; - f32 m_RHeelStart, m_RHeelEnd; - f32 m_RToe0Start, m_RToe0End; - - MotionParams905() - { - m_nAssetFlags = 0; - m_nCompression = std::numeric_limits::max(); - m_nTicksPerFrame = 0; - m_fSecsPerTick = 0; - m_nStart = 0; - m_nEnd = 0; - - m_fMoveSpeed = -1; - m_fTurnSpeed = -1; - m_fAssetTurn = -1; - m_fDistance = -1; - m_fSlope = -1; - - m_LHeelStart = -1; - m_LHeelEnd = -1; - m_LToe0Start = -1; - m_LToe0End = -1; - m_RHeelStart = -1; - m_RHeelEnd = -1; - m_RToe0Start = -1; - m_RToe0End = -1; - - m_StartLocation.SetIdentity(); - m_EndLocation.SetIdentity(); - } -}; - - -struct CHUNK_MOTION_PARAMETERS -{ - enum - { - VERSION = 0x0925 - }; - - MotionParams905 mp; -}; - - - -struct CHUNK_GAHCAF_INFO -{ - enum - { - VERSION = 0x0971 - }; - enum - { - FILEPATH_SIZE = 256 - }; - - uint32 m_Flags; - char m_FilePath[FILEPATH_SIZE]; - uint32 m_FilePathCRC32; - uint32 m_FilePathDBACRC32; - - f32 m_LHeelStart, m_LHeelEnd; - f32 m_LToe0Start, m_LToe0End; - f32 m_RHeelStart, m_RHeelEnd; - f32 m_RToe0Start, m_RToe0End; - - f32 m_fStartSec; //asset-feature: Start time in seconds. - f32 m_fEndSec; //asset-feature: End time in seconds. - f32 m_fTotalDuration; //asset-feature: asset-feature: total duration in seconds. - uint32 m_nControllers; - - //locator information - QuatT m_StartLocation; - QuatT m_LastLocatorKey; - Vec3 m_vVelocity; //asset-feature: the velocity vector for this asset - f32 m_fDistance; //asset-feature: the absolute distance this objects is moving - f32 m_fSpeed; //asset-feature: speed (meters in second) - f32 m_fSlope; //asset-feature: uphill-downhill measured in degrees - f32 m_fTurnSpeed; //asset-feature: turning speed per second - f32 m_fAssetTurn; //asset-feature: radiant between first and last frame -}; - - - - -struct CHUNK_GAHAIM_INFO -{ - struct VirtualExampleInit2 - { - Vec2 polar; - uint8 i0, i1, i2, i3; - f32 w0, w1, w2, w3; - }; - struct VirtualExample - { - uint8 i0, i1, i2, i3; - int16 v0, v1, v2, v3; - }; - - enum - { - VERSION = 0x0970 - }; - enum - { - XGRID = 17 - }; - enum - { - YGRID = 9 - }; - enum - { - FILEPATH_SIZE = 256 - }; - - uint32 m_Flags; - char m_FilePath[FILEPATH_SIZE]; - uint32 m_FilePathCRC32; - - f32 m_fStartSec; //asset-feature: Start time in seconds. - f32 m_fEndSec; //asset-feature: End time in seconds. - f32 m_fTotalDuration; //asset-feature: asset-feature: total duration in seconds. - - uint32 m_AnimTokenCRC32; - - uint64 m_nExist; - Quat m_MiddleAimPoseRot; - Quat m_MiddleAimPose; - VirtualExample m_PolarGrid[XGRID * YGRID]; - uint32 m_numAimPoses; -}; - - -//======================================== -//Material Chunk Header -//======================================== - -////////////////////////////////////////////////////////////////////////// -#define MTL_NAME_CHUNK_DESC_0800_MAX_SUB_MATERIALS (32) -struct MTL_NAME_CHUNK_DESC_0800 -{ - enum - { - VERSION = 0x0800 - }; - enum EFlags - { - FLAG_MULTI_MATERIAL = 0x0001, // Have sub materials info. - FLAG_SUB_MATERIAL = 0x0002, // This is sub material. - FLAG_SH_COEFFS = 0x0004, // This material should get spherical harmonics coefficients computed. - FLAG_SH_2SIDED = 0x0008, // This material will be used as 2 sided in the sh precomputation - FLAG_SH_AMBIENT = 0x0010, // This material will get an ambient sh term(to not shadow it entirely) - }; - - int nFlags; // see EFlags. - int nFlags2; - char name[128]; //material/shader name - int nPhysicalizeType; - int nSubMaterials; - int nSubMatChunkId[MTL_NAME_CHUNK_DESC_0800_MAX_SUB_MATERIALS]; - int nAdvancedDataChunkId; - float sh_opacity; - int reserve[32]; - - AUTO_STRUCT_INFO -}; - -struct MTL_NAME_CHUNK_DESC_0802 -{ - enum - { - VERSION = 0x0802 - }; - - char name[128]; //material/shader name - int nSubMaterials; - - // Data continues from here. - // 1) if nSubMaterials is 0, this is a single-material: we store physicalization type of the material (int32). - // 2) if nSubMaterials is not 0, this is a multi-material: we store nSubMaterials physicalization types (int32 - // value for each sub-material). After the physicalization types we store chain of ASCIIZ names of sub-materials. - - AUTO_STRUCT_INFO -}; - -//======================================== -//Mesh Chunk Header -//======================================== - -struct MESH_CHUNK_DESC_0745 -{ - // Versions 0x0744 and 0x0745 are *exactly* the same. - // Version number was increased from 0x0744 to 0x0745 just because - // it was the only way to inform *old* (existing) executables that - // NODE_CHUNK_DESC(!) chunk format was changed and cannot be read - // by them (old CLoaderCGF::LoadNodeChunk() didn't check - // NODE_CHUNK_DESC's version number). - enum - { - VERSION = 0x0745 - }; - enum - { - COMPATIBLE_OLD_VERSION = 0x0744 - }; - - enum EFlags1 - { - FLAG1_BONE_INFO = 0x01, - }; - enum EFlags2 - { - FLAG2_HAS_VERTEX_COLOR = 0x01, - FLAG2_HAS_VERTEX_ALPHA = 0x02, - FLAG2_HAS_TOPOLOGY_IDS = 0x04, - }; - unsigned char flags1; - unsigned char flags2; - int nVerts; - int nTVerts; // # of texture vertices (0 or nVerts) - int nFaces; - int VertAnimID; // id of the related vertAnim chunk if present. otherwise it is -1 - - AUTO_STRUCT_INFO -}; - -// Compiled Mesh chunk. -struct MESH_CHUNK_DESC_0801 -{ - // Versions 0x0800 and 0x0801 are *exactly* the same. - // Version number was increased from 0x0800 to 0x0801 just because - // it was the only way to inform *old* (existing) executables that - // NODE_CHUNK_DESC(!) chunk format was changed and cannot be read - // by them (old CLoaderCGF::LoadNodeChunk() didn't check - // NODE_CHUNK_DESC's version number). - enum - { - VERSION = 0x0801 - }; - enum - { - COMPATIBLE_OLD_VERSION = 0x0800 - }; - - enum EFlags - { - MESH_IS_EMPTY = 0x0001, // Empty mesh (no streams are saved) - HAS_TEX_MAPPING_DENSITY = 0x0002, // texMappingDensity contains a valid value - HAS_EXTRA_WEIGHTS = 0x0004, // The weight stream will have weights for influences 5-8 - HAS_FACE_AREA = 0x0008, // geometricMeanFaceArea contains a valid value - }; - - int nFlags; // @see EFlags - int nFlags2; - - // Just for info. - int nVerts; // Number of vertices. - int nIndices; // Number of indices. - int nSubsets; // Number of mesh subsets. - - int nSubsetsChunkId; // Chunk id of subsets. (Must be ChunkType_MeshSubsets) - int nVertAnimID; // id of the related vertAnim chunk if present. otherwise it is -1 - - // ChunkIDs of data streams (Must be ChunkType_DataStream). - int GetStreamChunkID(ECgfStreamType streamType, [[maybe_unused]] int streamIndex) const - { - // Ignore streamIndex since all chunks with version 0x0801 have only one stream per type - return nStreamChunkID[streamType]; - } - int nStreamChunkID[ECgfStreamType::CGF_STREAM_NUM_TYPES]; // Index is one of ECgfStreamType values. - - // Chunk IDs of physical mesh data. (Must be ChunkType_MeshPhysicsData) - int nPhysicsDataChunkId[4]; - - // Bounding box of the mesh. - Vec3 bboxMin; - Vec3 bboxMax; - - float texMappingDensity; - float geometricMeanFaceArea; - int reserved[31]; - AUTO_STRUCT_INFO -}; - -struct MESH_CHUNK_DESC_0802 -{ - // Version 0x0802 adds an additional dimention to the nStreamChunkID array to allow for multiple streams of the same type - enum - { - VERSION = 0x0802 - }; - enum - { - COMPATIBLE_OLD_VERSION = 0x0802 - }; - - enum EFlags - { - MESH_IS_EMPTY = 0x0001, // Empty mesh (no streams are saved) - HAS_TEX_MAPPING_DENSITY = 0x0002, // texMappingDensity contains a valid value - HAS_EXTRA_WEIGHTS = 0x0004, // The weight stream will have weights for influences 5-8 - HAS_FACE_AREA = 0x0008, // geometricMeanFaceArea contains a valid value - }; - - int nFlags; // @see EFlags - int nFlags2; - - // Just for info. - int nVerts; // Number of vertices. - int nIndices; // Number of indices. - int nSubsets; // Number of mesh subsets. - - int nSubsetsChunkId; // Chunk id of subsets. (Must be ChunkType_MeshSubsets) - int nVertAnimID; // id of the related vertAnim chunk if present. otherwise it is -1 - - // ChunkIDs of data streams (Must be ChunkType_DataStream). - int GetStreamChunkID(ECgfStreamType streamType, int streamIndex) const - { - return nStreamChunkID[streamType][streamIndex]; - } - int nStreamChunkID[ECgfStreamType::CGF_STREAM_NUM_TYPES][8]; // [ECgfStreamType value][streamIndex] e.g. [CGF_STREAM_TEXCOORDS][1] to get UV set 1 - - // Chunk IDs of physical mesh data. (Must be ChunkType_MeshPhysicsData) - int nPhysicsDataChunkId[4]; - - // Bounding box of the mesh. - Vec3 bboxMin; - Vec3 bboxMax; - - float texMappingDensity; - float geometricMeanFaceArea; - int reserved[31]; - AUTO_STRUCT_INFO -}; - - -////////////////////////////////////////////////////////////////////////// -// Stream chunk contains data about a mesh data stream (positions, normals, etc...) -////////////////////////////////////////////////////////////////////////// -struct STREAM_DATA_CHUNK_DESC_0800 -{ - enum - { - VERSION = 0x0800 - }; - - enum EFlags { }; // Not implemented. - - int nFlags; - int nStreamType; // Stream type one of ECgfStreamType. - int nCount; // Number of elements. - int nElementSize; // Element Size. - int reserved[2]; - - // Data starts here at the end of the chunk.. - //char streamData[nCount*nElementSize]; - - AUTO_STRUCT_INFO -}; - -struct STREAM_DATA_CHUNK_DESC_0801 -{ - enum - { - VERSION = 0x0801 - }; - - enum EFlags { }; // Not implemented. - - int nFlags; - int nStreamType; // Stream type one of ECgfStreamType. - int nStreamIndex; // To handle multiple streams of the same type - int nCount; // Number of elements. - int nElementSize; // Element Size. - int reserved[2]; - - // Data starts here at the end of the chunk.. - //char streamData[nCount*nElementSize]; - - AUTO_STRUCT_INFO -}; - -////////////////////////////////////////////////////////////////////////// -// Contains array of mesh subsets. -// Each subset holds an info about material id, indices ranges etc... -////////////////////////////////////////////////////////////////////////// -struct MESH_SUBSETS_CHUNK_DESC_0800 -{ - enum - { - VERSION = 0x0800 - }; - - enum EFlags - { - SH_HAS_DECOMPR_MAT = 0x0001, // obsolete - BONEINDICES = 0x0002, - HAS_SUBSET_TEXEL_DENSITY = 0x0004, - }; - - int nFlags; - int nCount; // Number of elements. - int reserved[2]; - - struct MeshSubset - { - int nFirstIndexId; - int nNumIndices; - int nFirstVertId; - int nNumVerts; - int nMatID; // Material sub-object Id. - float fRadius; - Vec3 vCenter; - - AUTO_STRUCT_INFO - }; - - struct MeshBoneIDs - { - uint32 numBoneIDs; - uint16 arrBoneIDs[0x80]; - - AUTO_STRUCT_INFO - }; - - struct MeshSubsetTexelDensity - { - float texelDensity; - - AUTO_STRUCT_INFO - }; - - // Data starts here at the end of the chunk. - //Subset streamData[nCount]; - - MESH_SUBSETS_CHUNK_DESC_0800() - : nFlags(0) - , nCount(0) - { - } - - AUTO_STRUCT_INFO -}; - -////////////////////////////////////////////////////////////////////////// -// Contain array of mesh subsets. -// Each subset holds an info about material id, indices ranges etc... -////////////////////////////////////////////////////////////////////////// -struct MESH_PHYSICS_DATA_CHUNK_DESC_0800 -{ - enum - { - VERSION = 0x0800 - }; - - int nDataSize; // Size of physical data at the end of the chunk. - int nFlags; - int nTetrahedraDataSize; - int nTetrahedraChunkId; // Chunk of physics Tetrahedra data. - int reserved[2]; - - // Data starts here at the end of the chunk. - //char physicsData[nDataSize]; - //char tetrahedraData[nTetrahedraDataSize]; - - AUTO_STRUCT_INFO -}; - - -struct VERTANIM_CHUNK_DESC_0744 -{ - enum - { - VERSION = 0x0744 - }; - - int GeomID; // ID of the related mesh chunk - int nKeys; // # of keys - int nVerts; // # of vertices this object has - int nFaces; // # of faces this object has (for double check purpose) - - AUTO_STRUCT_INFO -}; - -typedef VERTANIM_CHUNK_DESC_0744 VERTANIM_CHUNK_DESC; -#define VERTANIM_CHUNK_DESC_VERSION VERTANIM_CHUNK_DESC_0744::VERSION - -//======================================== -//Bone Anim Chunk Header -//======================================== - -struct BONEANIM_CHUNK_DESC_0290 -{ - enum - { - VERSION = 0x0290 - }; - - int nBones; - - AUTO_STRUCT_INFO -}; - -//======================================== -//Bonelist Chunk Header -//======================================== - -// this structure describes the bone names -// it's followed by numEntities packed \0-terminated strings, the list terminated by double-\0 -struct BONENAMELIST_CHUNK_DESC_0745 -{ - enum - { - VERSION = 0x0745 - }; - - int numEntities; - AUTO_STRUCT_INFO -}; - - -struct COMPILED_BONE_CHUNK_DESC_0800 -{ - enum - { - VERSION = 0x0800 - }; - - char reserved[32]; - AUTO_STRUCT_INFO -}; - -struct COMPILED_PHYSICALBONE_CHUNK_DESC_0800 -{ - enum - { - VERSION = 0x0800 - }; - - char reserved[32]; - AUTO_STRUCT_INFO -}; - -struct COMPILED_PHYSICALPROXY_CHUNK_DESC_0800 -{ - enum - { - VERSION = 0x0800 - }; - - uint32 numPhysicalProxies; - AUTO_STRUCT_INFO -}; - -struct COMPILED_MORPHTARGETS_CHUNK_DESC_0800 -{ - enum - { - VERSION = 0x0800, VERSION1 = 0x801 - }; - - uint32 numMorphTargets; - AUTO_STRUCT_INFO -}; - - -struct COMPILED_INTFACES_CHUNK_DESC_0800 -{ - enum - { - VERSION = 0x0800 - }; - - AUTO_STRUCT_INFO -}; - -struct COMPILED_INTSKINVERTICES_CHUNK_DESC_0800 -{ - enum - { - VERSION = 0x0800 - }; - - char reserved[32]; - AUTO_STRUCT_INFO -}; - -struct COMPILED_EXT2INTMAP_CHUNK_DESC_0800 -{ - enum - { - VERSION = 0x0800 - }; - - AUTO_STRUCT_INFO -}; - -struct COMPILED_BONEBOXES_CHUNK_DESC_0800 -{ - enum - { - VERSION = 0x0800, VERSION1 = 0x801 - }; - - AUTO_STRUCT_INFO -}; - -// Keyframe and Timing Primitives __________________________________________________________________________________________________________________ -struct BaseKey -{ - int time; - AUTO_STRUCT_INFO -}; - -struct BaseTCB -{ - float t, c, b; - float ein, eout; - AUTO_STRUCT_INFO -}; - -struct BaseKey1 - : BaseKey -{ - float val; - AUTO_STRUCT_INFO -}; -struct BaseKey3 - : BaseKey -{ - Vec3 val; - AUTO_STRUCT_INFO -}; -struct BaseKeyQ - : BaseKey -{ - CryQuat val; - AUTO_STRUCT_INFO -}; - -struct CryLin1Key - : BaseKey1 -{ - AUTO_STRUCT_INFO -}; -struct CryLin3Key - : BaseKey3 -{ - AUTO_STRUCT_INFO -}; -struct CryLinQKey - : BaseKeyQ -{ - AUTO_STRUCT_INFO -}; -struct CryTCB1Key - : BaseKey1 - , BaseTCB -{ - AUTO_STRUCT_INFO -}; -struct CryTCB3Key - : BaseKey3 - , BaseTCB -{ - AUTO_STRUCT_INFO -}; -struct CryTCBQKey - : BaseKeyQ - , BaseTCB -{ - AUTO_STRUCT_INFO -}; -struct CryBez1Key - : BaseKey1 -{ - float intan, outtan; - AUTO_STRUCT_INFO -}; -struct CryBez3Key - : BaseKey3 -{ - Vec3 intan, outtan; - AUTO_STRUCT_INFO -}; -struct CryBezQKey - : BaseKeyQ -{ - AUTO_STRUCT_INFO -}; - -struct CryKeyPQLog -{ - int nTime; - Vec3 vPos; - Vec3 vRotLog; // logarithm of the rotation - - // resets to initial position/rotation/time - void reset () - { - nTime = 0; - vPos.x = vPos.y = vPos.z = 0; - vRotLog.x = vRotLog.y = vRotLog.z = 0; - } - - AUTO_STRUCT_INFO -}; - -//======================================== -//Controller Chunk Header -//======================================== -enum CtrlTypes -{ - CTRL_NONE, - CTRL_CRYBONE, - CTRL_LINEER1, CTRL_LINEER3, CTRL_LINEERQ, - CTRL_BEZIER1, CTRL_BEZIER3, CTRL_BEZIERQ, - CTRL_TCB1, CTRL_TCB3, CTRL_TCBQ, - CTRL_BSPLINE_2O, // 2-byte fixed values, open - CTRL_BSPLINE_1O, // 1-byte fixed values, open - CTRL_BSPLINE_2C, // 2-byte fixed values, closed - CTRL_BSPLINE_1C, // 1-byte fixed values, closed - CTRL_CONST // constant position&rotation -}; - -enum CtrlFlags -{ - CTRL_ORT_CYCLE = 0x01, - CTRL_ORT_LOOP = 0x02 -}; - -// Used to store TCB-controllers in .anm files -struct CONTROLLER_CHUNK_DESC_0826 -{ - enum - { - VERSION = 0x0826 - }; - - CtrlTypes type; //one ot the CtrlTypes values - int nKeys; // # of keys this controller has; toatl # of knots (positional and orientational) in the case of B-Spline - - //unsigned short nSubCtrl; // # of sub controllers; not used now/reserved - unsigned int nFlags; // Flags of controller. - //int nSubCtrl; // # of sub controllers; not used now/reserved - - unsigned nControllerId; // unique generated in exporter id based on crc32 of bone name - - AUTO_STRUCT_INFO -}; - -// Format used to store uncompressed sampled animation exported from DCC into .i_caf files (earlier .caf) -struct CONTROLLER_CHUNK_DESC_0827 -{ - enum - { - VERSION = 0x0827 - }; - unsigned numKeys; - unsigned nControllerId; - - AUTO_STRUCT_INFO -}; - -// Unused format (was it introduced to fix missing header in 827?) -struct CONTROLLER_CHUNK_DESC_0828 -{ - enum - { - VERSION = 0x0828 - }; -}; - -struct CONTROLLER_CHUNK_DESC_0829 -{ - enum - { - VERSION = 0x0829 - }; - - enum - { - eKeyTimeRotation = 0, eKeyTimePosition = 1, eKeyTimeScale = 2 - }; - - unsigned int nControllerId; - - uint16 numRotationKeys; - uint16 numPositionKeys; - uint8 RotationFormat; - uint8 RotationTimeFormat; - uint8 PositionFormat; - uint8 PositionKeysInfo; - uint8 PositionTimeFormat; - uint8 TracksAligned; - - AUTO_STRUCT_INFO -}; - -// Added new controller flags field, correspond to v827 and v829 respectively -struct CONTROLLER_CHUNK_DESC_0830 -{ - enum - { - VERSION = 0x830 - }; - - CONTROLLER_CHUNK_DESC_0830(){} - - CONTROLLER_CHUNK_DESC_0830(const CONTROLLER_CHUNK_DESC_0827* oldChunk) - : numKeys(oldChunk->numKeys) - , nControllerId(oldChunk->nControllerId) - , nFlags(0) - {} - - unsigned numKeys; - unsigned nControllerId; - unsigned nFlags; - - AUTO_STRUCT_INFO -}; - -struct CONTROLLER_CHUNK_DESC_0831 -{ - enum - { - VERSION = 0x831 - }; - - CONTROLLER_CHUNK_DESC_0831(){} - - CONTROLLER_CHUNK_DESC_0831(const CONTROLLER_CHUNK_DESC_0829* oldChunk) - : nControllerId(oldChunk->nControllerId) - , nFlags(0) - , numPositionKeys(oldChunk->numPositionKeys) - , numRotationKeys(oldChunk->numRotationKeys) - , RotationFormat(oldChunk->RotationFormat) - , RotationTimeFormat(oldChunk->RotationTimeFormat) - , PositionFormat(oldChunk->PositionFormat) - , PositionKeysInfo(oldChunk->PositionKeysInfo) - , PositionTimeFormat(oldChunk->PositionTimeFormat) - , TracksAligned(oldChunk->TracksAligned) - {} - - enum - { - eKeyTimeRotation = 0, eKeyTimePosition = 1, eKeyTimeScale = 2 - }; - - unsigned int nControllerId; - unsigned int nFlags; - - uint16 numRotationKeys; - uint16 numPositionKeys; - uint8 RotationFormat; - uint8 RotationTimeFormat; - uint8 PositionFormat; - uint8 PositionKeysInfo; - uint8 PositionTimeFormat; - uint8 TracksAligned; - - AUTO_STRUCT_INFO -}; - -struct CONTROLLER_CHUNK_DESC_0905 -{ - enum - { - VERSION = 0x0905 - }; - - uint32 numKeyPos; - uint32 numKeyRot; - uint32 numKeyTime; - uint32 numAnims; - AUTO_STRUCT_INFO -}; - -//======================================== -//Node Chunk Header -//======================================== -struct NODE_CHUNK_DESC_0824 -{ - // Versions 0x0823 and 0x0824 have exactly same layout. - // The only difference between 0x0823 and 0x0824 is that some members - // are now named _obsoleteXXX_ and are not filled/used in 0x0824. - enum - { - VERSION = 0x0824 - }; - enum - { - COMPATIBLE_OLD_VERSION = 0x0823 - }; - - char name[64]; - - int ObjectID; // ID of this node's object chunk (if present) - int ParentID; // chunk ID of the parent Node's chunk - int nChildren; // # of children Nodes - int MatID; // Material chunk No - - uint8 _obsoleteA_[4]; // uint8 IsGroupHead; uint8 IsGroupMember; uint8 _padding_[2]. not used anymore. - - float tm[4][4]; // transformation matrix - - float _obsoleteB_[3]; // position component of the matrix, stored as Vec3. not used anymore. - float _obsoleteC_[4]; // rotation component of the matrix, stored as CryQuat. not used anymore. - float _obsoleteD_[3]; // scale component of the matrix, stored as Vec3. not used anymore. - - int pos_cont_id; // position controller chunk id - int rot_cont_id; // rotation controller chunk id - int scl_cont_id; // scale controller chunk id - - int PropStrLen; // length of the property string - - AUTO_STRUCT_INFO -}; - -//======================================== -//Helper Chunk Header -//======================================== -enum HelperTypes -{ - HP_POINT = 0, - HP_DUMMY = 1, - HP_XREF = 2, - HP_CAMERA = 3, - HP_GEOMETRY = 4 -}; - -struct HELPER_CHUNK_DESC_0744 -{ - enum - { - VERSION = 0x0744 - }; - - HelperTypes type; // one of the HelperTypes values - Vec3 size; // size in local x,y,z axises (for dummy only) - - AUTO_STRUCT_INFO -}; - -typedef HELPER_CHUNK_DESC_0744 HELPER_CHUNK_DESC; -#define HELPER_CHUNK_DESC_VERSION HELPER_CHUNK_DESC::VERSION - - -// ChunkType_MeshMorphTarget - morph target of a mesh chunk -// This chunk contains only the information about the vertices that are changed in the mesh -// This chunk is followed by an array of numMorphVertices structures SMeshMorphTargetVertex, -// immediately followed by the name (null-terminated, variable-length string) of the morph target. -// The string is after the array because of future alignment considerations; it may be padded with 0s. -struct MESHMORPHTARGET_CHUNK_DESC_0001 -{ - enum - { - VERSION = 0x0001 - }; - uint32 nChunkIdMesh; // the chunk id of the mesh chunk (ChunkType_Mesh) for which this morph target is - uint32 numMorphVertices; // number of MORPHED vertices - - AUTO_STRUCT_INFO -}; - - -// an array of these structures follows the MESHMORPHTARGET_CHUNK_DESC_0001 -// there are numMorphVertices of them -struct SMeshMorphTargetVertex -{ - uint32 nVertexId; // vertex index in the original (mesh) array of vertices - Vec3 ptVertex; // the target point of the morph target - void GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer) const{} - AUTO_STRUCT_INFO -}; - -struct SMeshMorphTargetHeader -{ - uint32 MeshID; - uint32 NameLength; //size of the name string - uint32 numIntVertices; //type SMeshMorphTargetVertex - uint32 numExtVertices; //type SMeshMorphTargetVertex - - AUTO_STRUCT_INFO -}; - -struct SMeshPhysicalProxyHeader -{ - uint32 ChunkID; - uint32 numPoints; - uint32 numIndices; - uint32 numMaterials; - - AUTO_STRUCT_INFO -}; - -// -// ChunkType_BoneInitialPos - describes the initial position (4x3 matrix) of each bone; just an array of 4x3 matrices -// This structure is followed by -struct BONEINITIALPOS_CHUNK_DESC_0001 -{ - enum - { - VERSION = 0x0001 - }; - // the chunk id of the mesh chunk (ChunkType_Mesh) with bone info for which these bone initial positions are applicable. - // there might be some unused bones here as well. There must be the same number of bones as in the other chunks - they're placed - // in BoneId order. - unsigned nChunkIdMesh; - // this is the number of bone initial pose matrices here - unsigned numBones; - - AUTO_STRUCT_INFO -}; - -// an array of these matrices follows the BONEINITIALPOS_CHUNK_DESC_0001 header -// there are numBones of them -// TO BE REPLACED WITH Matrix43 -struct SBoneInitPosMatrix -{ - float mx[4][3]; - float* operator [] (int i) {return mx[i]; } - const float* operator [] (int i) const {return mx[i]; } - const Vec3& getOrt (int nOrt) const {return *(const Vec3*)(mx[nOrt]); } - - AUTO_STRUCT_INFO -}; - -////////////////////////////////////////////////////////////////////////// -// Custom Attributes chunk description. -////////////////////////////////////////////////////////////////////////// -struct EXPORT_FLAGS_CHUNK_DESC -{ - enum - { - VERSION = 0x0001 - }; - enum EFlags - { - MERGE_ALL_NODES = 0x0001, - HAVE_AUTO_LODS = 0x0002, - USE_CUSTOM_NORMALS = 0x0004, - WANT_F32_VERTICES = 0x0008, - EIGHT_WEIGHTS_PER_VERTEX = 0x0010, - //START: Prevent reprocessing skinning data for skinned CGF - SKINNED_CGF = 0x0020, - //END: Prevent reprocessing skinning data for skinned CGF - }; - enum ESrcFlags - { - FROM_MAX_EXPORTER = 0x0000, - FROM_COLLADA_XSI = 0x1001, - FROM_COLLADA_MAX = 0x1002, - FROM_COLLADA_MAYA = 0x1003, - }; - - unsigned int flags; // @see EFlags - unsigned int rc_version[4]; // Resource compiler version. - char rc_version_string[16]; // Version as a string. - unsigned int assetAuthorTool; - unsigned int authorToolVersion; - unsigned int reserved[30]; - - AUTO_STRUCT_INFO -}; - -struct BREAKABLE_PHYSICS_CHUNK_DESC -{ - enum - { - VERSION = 0x0001 - }; - - unsigned int granularity; - int nMode; - int nRetVtx; - int nRetTets; - int nReserved[10]; - - AUTO_STRUCT_INFO -}; - -struct FOLIAGE_INFO_CHUNK_DESC -{ - enum - { - //START: Add Skinned Geometry (.CGF) export type (for touch bending vegetation) - VERSION = 0x0001, - VERSION2 = 0x0002 - //END: Add Skinned Geometry (.CGF) export type (for touch bending vegetation) - }; - - int nSpines; - int nSpineVtx; - int nSkinnedVtx; - int nBoneIds; - - AUTO_STRUCT_INFO -}; - -struct FOLIAGE_SPINE_SUB_CHUNK -{ - unsigned char nVtx; - char _paddingA_[3]; - float len; - Vec3 navg; - unsigned char iAttachSpine; - unsigned char iAttachSeg; - char _paddingB_[2]; - - AUTO_STRUCT_INFO -}; - -#endif // CRYINCLUDE_CRYCOMMON_CRYHEADERS_H diff --git a/Code/Legacy/CryCommon/CryHeaders_info.cpp b/Code/Legacy/CryCommon/CryHeaders_info.cpp deleted file mode 100644 index 3487055013..0000000000 --- a/Code/Legacy/CryCommon/CryHeaders_info.cpp +++ /dev/null @@ -1,486 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#include "TypeInfo_impl.h" -#include "CryHeaders.h" - -STRUCT_INFO_BEGIN(CryVertex) -STRUCT_VAR_INFO(p, TYPE_INFO(Vec3)) -STRUCT_VAR_INFO(n, TYPE_INFO(Vec3)) -STRUCT_INFO_END(CryVertex) - -STRUCT_INFO_BEGIN(CryFace) -STRUCT_VAR_INFO(v0, TYPE_INFO(int)) -STRUCT_VAR_INFO(v1, TYPE_INFO(int)) -STRUCT_VAR_INFO(v2, TYPE_INFO(int)) -STRUCT_VAR_INFO(MatID, TYPE_INFO(int)) -STRUCT_INFO_END(CryFace) - -STRUCT_INFO_BEGIN(CryUV) -STRUCT_VAR_INFO(u, TYPE_INFO(float)) -STRUCT_VAR_INFO(v, TYPE_INFO(float)) -STRUCT_INFO_END(CryUV) - -STRUCT_INFO_BEGIN(CrySkinVtx) -STRUCT_VAR_INFO(bVolumetric, TYPE_INFO(int)) -STRUCT_VAR_INFO(idx, TYPE_INFO_ARRAY(4, TYPE_INFO(int))) -STRUCT_VAR_INFO(w, TYPE_INFO_ARRAY(4, TYPE_INFO(float))) -STRUCT_VAR_INFO(M, TYPE_INFO(Matrix33)) -STRUCT_INFO_END(CrySkinVtx) - -STRUCT_INFO_BEGIN(CryLink) -STRUCT_VAR_INFO(BoneID, TYPE_INFO(int)) -STRUCT_VAR_INFO(offset, TYPE_INFO(Vec3)) -STRUCT_VAR_INFO(Blending, TYPE_INFO(float)) -STRUCT_INFO_END(CryLink) - -STRUCT_INFO_BEGIN(CryIRGB) -STRUCT_VAR_INFO(r, TYPE_INFO(unsigned char)) -STRUCT_VAR_INFO(g, TYPE_INFO(unsigned char)) -STRUCT_VAR_INFO(b, TYPE_INFO(unsigned char)) -STRUCT_INFO_END(CryIRGB) - -STRUCT_INFO_BEGIN(CryBonePhysics_Comp) -STRUCT_VAR_INFO(nPhysGeom, TYPE_INFO(int)) -STRUCT_VAR_INFO(flags, TYPE_INFO(int)) -STRUCT_VAR_INFO(min, TYPE_ARRAY(3, TYPE_INFO(float))) -STRUCT_VAR_INFO(max, TYPE_ARRAY(3, TYPE_INFO(float))) -STRUCT_VAR_INFO(spring_angle, TYPE_ARRAY(3, TYPE_INFO(float))) -STRUCT_VAR_INFO(spring_tension, TYPE_ARRAY(3, TYPE_INFO(float))) -STRUCT_VAR_INFO(damping, TYPE_ARRAY(3, TYPE_INFO(float))) -STRUCT_VAR_INFO(framemtx, TYPE_ARRAY(3, TYPE_ARRAY(3, TYPE_INFO(float)))) -STRUCT_INFO_END(CryBonePhysics_Comp) - -STRUCT_INFO_BEGIN(CryBoneDescData_Comp) -STRUCT_VAR_INFO(m_nControllerID, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(m_PhysInfo, TYPE_ARRAY(2, TYPE_INFO(BONE_PHYSICS_COMP))) -STRUCT_VAR_INFO(m_fMass, TYPE_INFO(float)) -STRUCT_VAR_INFO(m_DefaultW2B, TYPE_INFO(Matrix34)) -STRUCT_VAR_INFO(m_DefaultB2W, TYPE_INFO(Matrix34)) -STRUCT_VAR_INFO(m_arrBoneName, TYPE_ARRAY(256, TYPE_INFO(char))) -STRUCT_VAR_INFO(m_nLimbId, TYPE_INFO(int)) -STRUCT_VAR_INFO(m_nOffsetParent, TYPE_INFO(int)) -STRUCT_VAR_INFO(m_numChildren, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(m_nOffsetChildren, TYPE_INFO(int)) -STRUCT_INFO_END(CryBoneDescData_Comp) - -STRUCT_INFO_BEGIN(BONE_ENTITY) -STRUCT_VAR_INFO(BoneID, TYPE_INFO(int)) -STRUCT_VAR_INFO(ParentID, TYPE_INFO(int)) -STRUCT_VAR_INFO(nChildren, TYPE_INFO(int)) -STRUCT_VAR_INFO(ControllerID, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(prop, TYPE_ARRAY(32, TYPE_INFO(char))) -STRUCT_VAR_INFO(phys, TYPE_INFO(BONE_PHYSICS_COMP)) -STRUCT_INFO_END(BONE_ENTITY) - -ENUM_INFO_BEGIN(ChunkTypes) -ENUM_ELEM_INFO(, ChunkType_ANY) -ENUM_ELEM_INFO(, ChunkType_Mesh) -ENUM_ELEM_INFO(, ChunkType_Helper) -ENUM_ELEM_INFO(, ChunkType_VertAnim) -ENUM_ELEM_INFO(, ChunkType_BoneAnim) -ENUM_ELEM_INFO(, ChunkType_GeomNameList) -ENUM_ELEM_INFO(, ChunkType_BoneNameList) -ENUM_ELEM_INFO(, ChunkType_MtlList) -ENUM_ELEM_INFO(, ChunkType_MRM) -ENUM_ELEM_INFO(, ChunkType_SceneProps) -ENUM_ELEM_INFO(, ChunkType_Light) -ENUM_ELEM_INFO(, ChunkType_PatchMesh) -ENUM_ELEM_INFO(, ChunkType_Node) -ENUM_ELEM_INFO(, ChunkType_Mtl) -ENUM_ELEM_INFO(, ChunkType_Controller) -ENUM_ELEM_INFO(, ChunkType_Timing) -ENUM_ELEM_INFO(, ChunkType_BoneMesh) -ENUM_ELEM_INFO(, ChunkType_BoneLightBinding) -ENUM_ELEM_INFO(, ChunkType_MeshMorphTarget) -ENUM_ELEM_INFO(, ChunkType_BoneInitialPos) -ENUM_ELEM_INFO(, ChunkType_SourceInfo) -ENUM_ELEM_INFO(, ChunkType_MtlName) -ENUM_ELEM_INFO(, ChunkType_ExportFlags) -ENUM_ELEM_INFO(, ChunkType_DataStream) -ENUM_ELEM_INFO(, ChunkType_MeshSubsets) -ENUM_ELEM_INFO(, ChunkType_MeshPhysicsData) -ENUM_ELEM_INFO(, ChunkType_CompiledBones) -ENUM_ELEM_INFO(, ChunkType_CompiledPhysicalBones) -ENUM_ELEM_INFO(, ChunkType_CompiledMorphTargets) -ENUM_ELEM_INFO(, ChunkType_CompiledPhysicalProxies) -ENUM_ELEM_INFO(, ChunkType_CompiledIntFaces) -ENUM_ELEM_INFO(, ChunkType_CompiledIntSkinVertices) -ENUM_ELEM_INFO(, ChunkType_CompiledExt2IntMap) -ENUM_ELEM_INFO(, ChunkType_BreakablePhysics) -ENUM_ELEM_INFO(, ChunkType_FaceMap) -ENUM_ELEM_INFO(, ChunkType_MotionParameters) -ENUM_ELEM_INFO(, ChunkType_FootPlantInfo) -ENUM_ELEM_INFO(, ChunkType_BonesBoxes) -ENUM_ELEM_INFO(, ChunkType_FoliageInfo) -ENUM_INFO_END(ChunkTypes) - -STRUCT_INFO_BEGIN(RANGE_ENTITY) -STRUCT_VAR_INFO(name, TYPE_ARRAY(32, TYPE_INFO(char))) -STRUCT_VAR_INFO(start, TYPE_INFO(int)) -STRUCT_VAR_INFO(end, TYPE_INFO(int)) -STRUCT_INFO_END(RANGE_ENTITY) - -STRUCT_INFO_BEGIN(TIMING_CHUNK_DESC_0918) -STRUCT_VAR_INFO(m_SecsPerTick, TYPE_INFO(float)) -STRUCT_VAR_INFO(m_TicksPerFrame, TYPE_INFO(int)) -STRUCT_VAR_INFO(global_range, TYPE_INFO(RANGE_ENTITY)) -STRUCT_VAR_INFO(qqqqnSubRanges, TYPE_INFO(int)) -STRUCT_INFO_END(TIMING_CHUNK_DESC_0918) - - -STRUCT_INFO_BEGIN(SPEED_CHUNK_DESC_2) -STRUCT_VAR_INFO(Speed, TYPE_INFO(float)) -STRUCT_VAR_INFO(Distance, TYPE_INFO(float)) -STRUCT_VAR_INFO(Slope, TYPE_INFO(float)) -STRUCT_VAR_INFO(AnimFlags, TYPE_INFO(int)) -STRUCT_VAR_INFO(MoveDir, TYPE_ARRAY(3, TYPE_INFO(f32))) -STRUCT_VAR_INFO(StartPosition, TYPE_INFO(QuatT)) -STRUCT_INFO_END(SPEED_CHUNK_DESC_2) - -STRUCT_INFO_BEGIN(MTL_NAME_CHUNK_DESC_0800) -STRUCT_VAR_INFO(nFlags, TYPE_INFO(int)) -STRUCT_VAR_INFO(nFlags2, TYPE_INFO(int)) -STRUCT_VAR_INFO(name, TYPE_ARRAY(128, TYPE_INFO(char))) -STRUCT_VAR_INFO(nPhysicalizeType, TYPE_INFO(int)) -STRUCT_VAR_INFO(nSubMaterials, TYPE_INFO(int)) -STRUCT_VAR_INFO(nSubMatChunkId, TYPE_ARRAY(MTL_NAME_CHUNK_DESC_0800_MAX_SUB_MATERIALS, TYPE_INFO(int))) -STRUCT_VAR_INFO(nAdvancedDataChunkId, TYPE_INFO(int)) -STRUCT_VAR_INFO(sh_opacity, TYPE_INFO(float)) -STRUCT_VAR_INFO(reserve, TYPE_ARRAY(32, TYPE_INFO(int))) -STRUCT_INFO_END(MTL_NAME_CHUNK_DESC_0800) - -STRUCT_INFO_BEGIN(MTL_NAME_CHUNK_DESC_0802) -STRUCT_VAR_INFO(name, TYPE_ARRAY(128, TYPE_INFO(char))) -STRUCT_VAR_INFO(nSubMaterials, TYPE_INFO(int)) -STRUCT_INFO_END(MTL_NAME_CHUNK_DESC_0802) - -STRUCT_INFO_BEGIN(MESH_CHUNK_DESC_0745) -STRUCT_VAR_INFO(flags1, TYPE_INFO(unsigned char)) -STRUCT_VAR_INFO(flags2, TYPE_INFO(unsigned char)) -STRUCT_VAR_INFO(nVerts, TYPE_INFO(int)) -STRUCT_VAR_INFO(nTVerts, TYPE_INFO(int)) -STRUCT_VAR_INFO(nFaces, TYPE_INFO(int)) -STRUCT_VAR_INFO(VertAnimID, TYPE_INFO(int)) -STRUCT_INFO_END(MESH_CHUNK_DESC_0745) - -STRUCT_INFO_BEGIN(MESH_CHUNK_DESC_0801) -STRUCT_VAR_INFO(nFlags, TYPE_INFO(int)) -STRUCT_VAR_INFO(nFlags2, TYPE_INFO(int)) -STRUCT_VAR_INFO(nVerts, TYPE_INFO(int)) -STRUCT_VAR_INFO(nIndices, TYPE_INFO(int)) -STRUCT_VAR_INFO(nSubsets, TYPE_INFO(int)) -STRUCT_VAR_INFO(nSubsetsChunkId, TYPE_INFO(int)) -STRUCT_VAR_INFO(nVertAnimID, TYPE_INFO(int)) -STRUCT_VAR_INFO(nStreamChunkID, TYPE_ARRAY(16, TYPE_INFO(int))) -STRUCT_VAR_INFO(nPhysicsDataChunkId, TYPE_ARRAY(4, TYPE_INFO(int))) -STRUCT_VAR_INFO(bboxMin, TYPE_INFO(Vec3)) -STRUCT_VAR_INFO(bboxMax, TYPE_INFO(Vec3)) -STRUCT_VAR_INFO(texMappingDensity, TYPE_INFO(float)) -STRUCT_VAR_INFO(geometricMeanFaceArea, TYPE_INFO(float)) -STRUCT_VAR_INFO(reserved, TYPE_ARRAY(30, TYPE_INFO(int))) -STRUCT_INFO_END(MESH_CHUNK_DESC_0801) - -STRUCT_INFO_BEGIN(MESH_CHUNK_DESC_0802) -STRUCT_VAR_INFO(nFlags, TYPE_INFO(int)) -STRUCT_VAR_INFO(nFlags2, TYPE_INFO(int)) -STRUCT_VAR_INFO(nVerts, TYPE_INFO(int)) -STRUCT_VAR_INFO(nIndices, TYPE_INFO(int)) -STRUCT_VAR_INFO(nSubsets, TYPE_INFO(int)) -STRUCT_VAR_INFO(nSubsetsChunkId, TYPE_INFO(int)) -STRUCT_VAR_INFO(nVertAnimID, TYPE_INFO(int)) -STRUCT_VAR_INFO(nStreamChunkID, TYPE_ARRAY(16, TYPE_ARRAY(8, TYPE_INFO(int)))) -STRUCT_VAR_INFO(nPhysicsDataChunkId, TYPE_ARRAY(4, TYPE_INFO(int))) -STRUCT_VAR_INFO(bboxMin, TYPE_INFO(Vec3)) -STRUCT_VAR_INFO(bboxMax, TYPE_INFO(Vec3)) -STRUCT_VAR_INFO(texMappingDensity, TYPE_INFO(float)) -STRUCT_VAR_INFO(geometricMeanFaceArea, TYPE_INFO(float)) -STRUCT_VAR_INFO(reserved, TYPE_ARRAY(30, TYPE_INFO(int))) -STRUCT_INFO_END(MESH_CHUNK_DESC_0802) - -STRUCT_INFO_BEGIN(STREAM_DATA_CHUNK_DESC_0800) -STRUCT_VAR_INFO(nFlags, TYPE_INFO(int)) -STRUCT_VAR_INFO(nStreamType, TYPE_INFO(int)) -STRUCT_VAR_INFO(nCount, TYPE_INFO(int)) -STRUCT_VAR_INFO(nElementSize, TYPE_INFO(int)) -STRUCT_VAR_INFO(reserved, TYPE_ARRAY(2, TYPE_INFO(int))) -STRUCT_INFO_END(STREAM_DATA_CHUNK_DESC_0800) - -STRUCT_INFO_BEGIN(STREAM_DATA_CHUNK_DESC_0801) -STRUCT_VAR_INFO(nFlags, TYPE_INFO(int)) -STRUCT_VAR_INFO(nStreamType, TYPE_INFO(int)) -STRUCT_VAR_INFO(nStreamIndex, TYPE_INFO(int)) -STRUCT_VAR_INFO(nCount, TYPE_INFO(int)) -STRUCT_VAR_INFO(nElementSize, TYPE_INFO(int)) -STRUCT_VAR_INFO(reserved, TYPE_ARRAY(2, TYPE_INFO(int))) -STRUCT_INFO_END(STREAM_DATA_CHUNK_DESC_0801) - -STRUCT_INFO_BEGIN(MESH_SUBSETS_CHUNK_DESC_0800::MeshSubset) -STRUCT_VAR_INFO(nFirstIndexId, TYPE_INFO(int)) -STRUCT_VAR_INFO(nNumIndices, TYPE_INFO(int)) -STRUCT_VAR_INFO(nFirstVertId, TYPE_INFO(int)) -STRUCT_VAR_INFO(nNumVerts, TYPE_INFO(int)) -STRUCT_VAR_INFO(nMatID, TYPE_INFO(int)) -STRUCT_VAR_INFO(fRadius, TYPE_INFO(float)) -STRUCT_VAR_INFO(vCenter, TYPE_INFO(Vec3)) -STRUCT_INFO_END(MESH_SUBSETS_CHUNK_DESC_0800::MeshSubset) - -STRUCT_INFO_BEGIN(MESH_SUBSETS_CHUNK_DESC_0800::MeshBoneIDs) -STRUCT_VAR_INFO(numBoneIDs, TYPE_INFO(uint32)) -STRUCT_VAR_INFO(arrBoneIDs, TYPE_ARRAY(128, TYPE_INFO(uint16))) -STRUCT_INFO_END(MESH_SUBSETS_CHUNK_DESC_0800::MeshBoneIDs) - -STRUCT_INFO_BEGIN(MESH_SUBSETS_CHUNK_DESC_0800::MeshSubsetTexelDensity) -STRUCT_VAR_INFO(texelDensity, TYPE_INFO(float)) -STRUCT_INFO_END(MESH_SUBSETS_CHUNK_DESC_0800::MeshSubsetTexelDensity) - - -STRUCT_INFO_BEGIN(MESH_SUBSETS_CHUNK_DESC_0800) -STRUCT_VAR_INFO(nFlags, TYPE_INFO(int)) -STRUCT_VAR_INFO(nCount, TYPE_INFO(int)) -STRUCT_VAR_INFO(reserved, TYPE_ARRAY(2, TYPE_INFO(int))) -STRUCT_INFO_END(MESH_SUBSETS_CHUNK_DESC_0800) - -STRUCT_INFO_BEGIN(MESH_PHYSICS_DATA_CHUNK_DESC_0800) -STRUCT_VAR_INFO(nDataSize, TYPE_INFO(int)) -STRUCT_VAR_INFO(nFlags, TYPE_INFO(int)) -STRUCT_VAR_INFO(nTetrahedraDataSize, TYPE_INFO(int)) -STRUCT_VAR_INFO(nTetrahedraChunkId, TYPE_INFO(int)) -STRUCT_VAR_INFO(reserved, TYPE_ARRAY(2, TYPE_INFO(int))) -STRUCT_INFO_END(MESH_PHYSICS_DATA_CHUNK_DESC_0800) - -STRUCT_INFO_BEGIN(BONEANIM_CHUNK_DESC_0290) -STRUCT_VAR_INFO(nBones, TYPE_INFO(int)) -STRUCT_INFO_END(BONEANIM_CHUNK_DESC_0290) - -STRUCT_INFO_BEGIN(BONENAMELIST_CHUNK_DESC_0745) -STRUCT_VAR_INFO(numEntities, TYPE_INFO(int)) -STRUCT_INFO_END(BONENAMELIST_CHUNK_DESC_0745) - -STRUCT_INFO_BEGIN(COMPILED_BONE_CHUNK_DESC_0800) -STRUCT_VAR_INFO(reserved, TYPE_ARRAY(32, TYPE_INFO(char))) -STRUCT_INFO_END(COMPILED_BONE_CHUNK_DESC_0800) - -STRUCT_INFO_BEGIN(COMPILED_PHYSICALBONE_CHUNK_DESC_0800) -STRUCT_VAR_INFO(reserved, TYPE_ARRAY(32, TYPE_INFO(char))) -STRUCT_INFO_END(COMPILED_PHYSICALBONE_CHUNK_DESC_0800) - -STRUCT_INFO_BEGIN(COMPILED_PHYSICALPROXY_CHUNK_DESC_0800) -STRUCT_VAR_INFO(numPhysicalProxies, TYPE_INFO(uint32)) -STRUCT_INFO_END(COMPILED_PHYSICALPROXY_CHUNK_DESC_0800) - -STRUCT_INFO_BEGIN(COMPILED_MORPHTARGETS_CHUNK_DESC_0800) -STRUCT_VAR_INFO(numMorphTargets, TYPE_INFO(uint32)) -STRUCT_INFO_END(COMPILED_MORPHTARGETS_CHUNK_DESC_0800) - -STRUCT_INFO_BEGIN(COMPILED_INTSKINVERTICES_CHUNK_DESC_0800) -STRUCT_VAR_INFO(reserved, TYPE_ARRAY(32, TYPE_INFO(char))) -STRUCT_INFO_END(COMPILED_INTSKINVERTICES_CHUNK_DESC_0800) - -STRUCT_INFO_BEGIN(BaseKey) -STRUCT_VAR_INFO(time, TYPE_INFO(int)) -STRUCT_INFO_END(BaseKey) - -STRUCT_INFO_BEGIN(BaseTCB) -STRUCT_VAR_INFO(t, TYPE_INFO(float)) -STRUCT_VAR_INFO(c, TYPE_INFO(float)) -STRUCT_VAR_INFO(b, TYPE_INFO(float)) -STRUCT_VAR_INFO(ein, TYPE_INFO(float)) -STRUCT_VAR_INFO(eout, TYPE_INFO(float)) -STRUCT_INFO_END(BaseTCB) - -STRUCT_INFO_BEGIN(BaseKey3) -STRUCT_BASE_INFO(BaseKey) -STRUCT_VAR_INFO(val, TYPE_INFO(Vec3)) -STRUCT_INFO_END(BaseKey3) - -STRUCT_INFO_BEGIN(BaseKeyQ) -STRUCT_BASE_INFO(BaseKey) -STRUCT_VAR_INFO(val, TYPE_INFO(CryQuat)) -STRUCT_INFO_END(BaseKeyQ) - -STRUCT_INFO_BEGIN(CryTCB3Key) -STRUCT_BASE_INFO(BaseKey3) -STRUCT_BASE_INFO(BaseTCB) -STRUCT_INFO_END(CryTCB3Key) - -STRUCT_INFO_BEGIN(CryTCBQKey) -STRUCT_BASE_INFO(BaseKeyQ) -STRUCT_BASE_INFO(BaseTCB) -STRUCT_INFO_END(CryTCBQKey) - -STRUCT_INFO_BEGIN(CryKeyPQLog) -STRUCT_VAR_INFO(nTime, TYPE_INFO(int)) -STRUCT_VAR_INFO(vPos, TYPE_INFO(Vec3)) -STRUCT_VAR_INFO(vRotLog, TYPE_INFO(Vec3)) -STRUCT_INFO_END(CryKeyPQLog) - -ENUM_INFO_BEGIN(CtrlTypes) -ENUM_ELEM_INFO(, CTRL_NONE) -ENUM_ELEM_INFO(, CTRL_CRYBONE) -ENUM_ELEM_INFO(, CTRL_LINEER1) -ENUM_ELEM_INFO(, CTRL_LINEER3) -ENUM_ELEM_INFO(, CTRL_LINEERQ) -ENUM_ELEM_INFO(, CTRL_BEZIER1) -ENUM_ELEM_INFO(, CTRL_BEZIER3) -ENUM_ELEM_INFO(, CTRL_BEZIERQ) -ENUM_ELEM_INFO(, CTRL_TCB1) -ENUM_ELEM_INFO(, CTRL_TCB3) -ENUM_ELEM_INFO(, CTRL_TCBQ) -ENUM_ELEM_INFO(, CTRL_BSPLINE_2O) -ENUM_ELEM_INFO(, CTRL_BSPLINE_1O) -ENUM_ELEM_INFO(, CTRL_BSPLINE_2C) -ENUM_ELEM_INFO(, CTRL_BSPLINE_1C) -ENUM_ELEM_INFO(, CTRL_CONST) -ENUM_INFO_END(CtrlTypes) - -STRUCT_INFO_BEGIN(CONTROLLER_CHUNK_DESC_0826) -STRUCT_VAR_INFO(type, TYPE_INFO(CtrlTypes)) -STRUCT_VAR_INFO(nKeys, TYPE_INFO(int)) -STRUCT_VAR_INFO(nFlags, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(nControllerId, TYPE_INFO(unsigned int)) -STRUCT_INFO_END(CONTROLLER_CHUNK_DESC_0826) - -STRUCT_INFO_BEGIN(CONTROLLER_CHUNK_DESC_0827) -STRUCT_VAR_INFO(numKeys, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(nControllerId, TYPE_INFO(unsigned int)) -STRUCT_INFO_END(CONTROLLER_CHUNK_DESC_0827) - -STRUCT_INFO_BEGIN(CONTROLLER_CHUNK_DESC_0829) -STRUCT_VAR_INFO(nControllerId, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(numRotationKeys, TYPE_INFO(uint16)) -STRUCT_VAR_INFO(numPositionKeys, TYPE_INFO(uint16)) -STRUCT_VAR_INFO(RotationFormat, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(RotationTimeFormat, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(PositionFormat, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(PositionKeysInfo, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(PositionTimeFormat, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(TracksAligned, TYPE_INFO(uint8)) -STRUCT_INFO_END(CONTROLLER_CHUNK_DESC_0829) - -STRUCT_INFO_BEGIN(CONTROLLER_CHUNK_DESC_0830) -STRUCT_VAR_INFO(numKeys, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(nFlags, Type_info(unsigned int)) -STRUCT_VAR_INFO(nControllerId, TYPE_INFO(unsigned int)) -STRUCT_INFO_END(CONTROLLER_CHUNK_DESC_0830) - -STRUCT_INFO_BEGIN(CONTROLLER_CHUNK_DESC_0831) -STRUCT_VAR_INFO(nControllerId, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(nFlags, Type_info(unsigned int)) -STRUCT_VAR_INFO(numRotationKeys, TYPE_INFO(uint16)) -STRUCT_VAR_INFO(numPositionKeys, TYPE_INFO(uint16)) -STRUCT_VAR_INFO(RotationFormat, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(RotationTimeFormat, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(PositionFormat, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(PositionKeysInfo, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(PositionTimeFormat, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(TracksAligned, TYPE_INFO(uint8)) -STRUCT_INFO_END(CONTROLLER_CHUNK_DESC_0831) - -STRUCT_INFO_BEGIN(CONTROLLER_CHUNK_DESC_0905) -STRUCT_VAR_INFO(numKeyPos, TYPE_INFO(uint32)) -STRUCT_VAR_INFO(numKeyRot, TYPE_INFO(uint32)) -STRUCT_VAR_INFO(numKeyTime, TYPE_INFO(uint32)) -STRUCT_VAR_INFO(numAnims, TYPE_INFO(uint32)) -STRUCT_INFO_END(CONTROLLER_CHUNK_DESC_0905) - -STRUCT_INFO_BEGIN(NODE_CHUNK_DESC_0824) -STRUCT_VAR_INFO(name, TYPE_ARRAY(64, TYPE_INFO(char))) -STRUCT_VAR_INFO(ObjectID, TYPE_INFO(int)) -STRUCT_VAR_INFO(ParentID, TYPE_INFO(int)) -STRUCT_VAR_INFO(nChildren, TYPE_INFO(int)) -STRUCT_VAR_INFO(MatID, TYPE_INFO(int)) -STRUCT_VAR_INFO(_obsoleteA_, TYPE_ARRAY(4, TYPE_INFO(uint8))) -STRUCT_VAR_INFO(tm, TYPE_ARRAY(4, TYPE_ARRAY(4, TYPE_INFO(float)))) -STRUCT_VAR_INFO(_obsoleteB_, TYPE_ARRAY(3, TYPE_INFO(float))) -STRUCT_VAR_INFO(_obsoleteC_, TYPE_ARRAY(4, TYPE_INFO(float))) -STRUCT_VAR_INFO(_obsoleteD_, TYPE_ARRAY(3, TYPE_INFO(float))) -STRUCT_VAR_INFO(pos_cont_id, TYPE_INFO(int)) -STRUCT_VAR_INFO(rot_cont_id, TYPE_INFO(int)) -STRUCT_VAR_INFO(scl_cont_id, TYPE_INFO(int)) -STRUCT_VAR_INFO(PropStrLen, TYPE_INFO(int)) -STRUCT_INFO_END(NODE_CHUNK_DESC_0824) - -ENUM_INFO_BEGIN(HelperTypes) -ENUM_ELEM_INFO(, HP_POINT) -ENUM_ELEM_INFO(, HP_DUMMY) -ENUM_ELEM_INFO(, HP_XREF) -ENUM_ELEM_INFO(, HP_CAMERA) -ENUM_ELEM_INFO(, HP_GEOMETRY) -ENUM_INFO_END(HelperTypes) - -STRUCT_INFO_BEGIN(HELPER_CHUNK_DESC_0744) -STRUCT_VAR_INFO(type, TYPE_INFO(HelperTypes)) -STRUCT_VAR_INFO(size, TYPE_INFO(Vec3)) -STRUCT_INFO_END(HELPER_CHUNK_DESC_0744) - -STRUCT_INFO_BEGIN(MESHMORPHTARGET_CHUNK_DESC_0001) -STRUCT_VAR_INFO(nChunkIdMesh, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(numMorphVertices, TYPE_INFO(unsigned int)) -STRUCT_INFO_END(MESHMORPHTARGET_CHUNK_DESC_0001) - -STRUCT_INFO_BEGIN(SMeshMorphTargetVertex) -STRUCT_VAR_INFO(nVertexId, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(ptVertex, TYPE_INFO(Vec3)) -STRUCT_INFO_END(SMeshMorphTargetVertex) - -STRUCT_INFO_BEGIN(SMeshMorphTargetHeader) -STRUCT_VAR_INFO(MeshID, TYPE_INFO(uint32)) -STRUCT_VAR_INFO(NameLength, TYPE_INFO(uint32)) -STRUCT_VAR_INFO(numIntVertices, TYPE_INFO(uint32)) -STRUCT_VAR_INFO(numExtVertices, TYPE_INFO(uint32)) -STRUCT_INFO_END(SMeshMorphTargetHeader) - -STRUCT_INFO_BEGIN(SMeshPhysicalProxyHeader) -STRUCT_VAR_INFO(ChunkID, TYPE_INFO(uint32)) -STRUCT_VAR_INFO(numPoints, TYPE_INFO(uint32)) -STRUCT_VAR_INFO(numIndices, TYPE_INFO(uint32)) -STRUCT_VAR_INFO(numMaterials, TYPE_INFO(uint32)) -STRUCT_INFO_END(SMeshPhysicalProxyHeader) - -STRUCT_INFO_BEGIN(BONEINITIALPOS_CHUNK_DESC_0001) -STRUCT_VAR_INFO(nChunkIdMesh, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(numBones, TYPE_INFO(unsigned int)) -STRUCT_INFO_END(BONEINITIALPOS_CHUNK_DESC_0001) - -STRUCT_INFO_BEGIN(SBoneInitPosMatrix) -STRUCT_VAR_INFO(mx, TYPE_ARRAY(4, TYPE_ARRAY(3, TYPE_INFO(float)))) -STRUCT_INFO_END(SBoneInitPosMatrix) - -STRUCT_INFO_BEGIN(EXPORT_FLAGS_CHUNK_DESC) -STRUCT_VAR_INFO(flags, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(rc_version, TYPE_ARRAY(4, TYPE_INFO(unsigned int))) -STRUCT_VAR_INFO(rc_version_string, TYPE_ARRAY(16, TYPE_INFO(char))) -STRUCT_VAR_INFO(assetAuthorTool, TYPE_INFO(uint32)) -STRUCT_VAR_INFO(authorToolVersion, TYPE_INFO(uint32)) -STRUCT_VAR_INFO(reserved, TYPE_ARRAY(30, TYPE_INFO(unsigned int))) -STRUCT_INFO_END(EXPORT_FLAGS_CHUNK_DESC) - -STRUCT_INFO_BEGIN(BREAKABLE_PHYSICS_CHUNK_DESC) -STRUCT_VAR_INFO(granularity, TYPE_INFO(unsigned int)) -STRUCT_VAR_INFO(nMode, TYPE_INFO(int)) -STRUCT_VAR_INFO(nRetVtx, TYPE_INFO(int)) -STRUCT_VAR_INFO(nRetTets, TYPE_INFO(int)) -STRUCT_VAR_INFO(nReserved, TYPE_ARRAY(10, TYPE_INFO(int))) -STRUCT_INFO_END(BREAKABLE_PHYSICS_CHUNK_DESC) - -STRUCT_INFO_BEGIN(FOLIAGE_INFO_CHUNK_DESC) -STRUCT_VAR_INFO(nSpines, TYPE_INFO(int)) -STRUCT_VAR_INFO(nSpineVtx, TYPE_INFO(int)) -STRUCT_VAR_INFO(nSkinnedVtx, TYPE_INFO(int)) -STRUCT_VAR_INFO(nBoneIds, TYPE_INFO(int)) -STRUCT_INFO_END(FOLIAGE_INFO_CHUNK_DESC) - -STRUCT_INFO_BEGIN(FOLIAGE_SPINE_SUB_CHUNK) -STRUCT_VAR_INFO(nVtx, TYPE_INFO(char)) -STRUCT_VAR_INFO(len, TYPE_INFO(float)) -STRUCT_VAR_INFO(navg, TYPE_INFO(Vec3)) -STRUCT_VAR_INFO(iAttachSpine, TYPE_INFO(unsigned char)) -STRUCT_VAR_INFO(iAttachSeg, TYPE_INFO(unsigned char)) -STRUCT_INFO_END(FOLIAGE_SPINE_SUB_CHUNK) diff --git a/Code/Legacy/CryCommon/CryLibrary.h b/Code/Legacy/CryCommon/CryLibrary.h index a034a2a04b..995ba0abc5 100644 --- a/Code/Legacy/CryCommon/CryLibrary.h +++ b/Code/Legacy/CryCommon/CryLibrary.h @@ -92,23 +92,21 @@ using DetachEnvironmentFunction = void(*)(); #define HMODULE void* static const char* gEnvName("MODULE_PATH"); -static const char* GetModulePath() +inline const char* GetModulePath() { return getenv(gEnvName); } -static void SetModulePath(const char* pModulePath) +inline void SetModulePath(const char* pModulePath) { setenv(gEnvName, pModulePath ? pModulePath : "", true); } // bInModulePath is only ever set to false in RC, because rc needs to load dlls from a $PATH that // it has modified to include .. -static HMODULE CryLoadLibrary(const char* libName, bool bLazy = false, bool bInModulePath = true) +inline HMODULE CryLoadLibrary(const char* libName, bool bLazy = false, bool bInModulePath = true) { const char* libPath = nullptr; - char pathBuffer[MAX_PATH] = {0}; - libPath = libName; #if !defined(AZ_PLATFORM_ANDROID) @@ -135,6 +133,7 @@ static HMODULE CryLoadLibrary(const char* libName, bool bLazy = false, bool bInM } #endif } + char pathBuffer[MAX_PATH] = {0}; sprintf_s(pathBuffer, "%s/%s", modulePath, libName); libPath = pathBuffer; } @@ -161,7 +160,7 @@ static HMODULE CryLoadLibrary(const char* libName, bool bLazy = false, bool bInM return module; } -static bool CryFreeLibrary(void* lib) +inline bool CryFreeLibrary(void* lib) { if (lib) { diff --git a/Code/Legacy/CryCommon/CryName.h b/Code/Legacy/CryCommon/CryName.h deleted file mode 100644 index b9b3799dd7..0000000000 --- a/Code/Legacy/CryCommon/CryName.h +++ /dev/null @@ -1,564 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef CRYINCLUDE_CRYCOMMON_CRYNAME_H -#define CRYINCLUDE_CRYCOMMON_CRYNAME_H -#pragma once - -#include -#include -#include -#include -#include - -class CNameTable; - - -struct INameTable -{ - virtual ~INameTable(){} - - // Name entry header, immediately after this header in memory starts actual string data. - struct SNameEntry - { - enum - { - TAG = 0xdeadbeef - }; - - int nTag; // tag to ensure that this is actually a name entry - // Reference count of this string. - int nRefCount; - // Current length of string. - int nLength; - // Size of memory allocated at the end of this class. - int nAllocSize; - // Here in memory starts character buffer of size nAllocSize. - //char data[nAllocSize] - - const char* GetStr() { return (char*)(this + 1); } - void AddRef() { nRefCount++; /*InterlockedIncrement(&_header()->nRefCount);*/}; - int Release() { return --nRefCount; }; - int GetMemoryUsage() { return static_cast(sizeof(SNameEntry) + strlen(GetStr())); } - int GetLength(){return nLength; } - }; - - - // Finds an existing name table entry, or creates a new one if not found. - virtual INameTable::SNameEntry* GetEntry(const char* str) = 0; - // Only finds an existing name table entry, return 0 if not found. - virtual INameTable::SNameEntry* FindEntry(const char* str) = 0; - // Release existing name table entry. - virtual void Release(SNameEntry* pEntry) = 0; - virtual int GetMemoryUsage() = 0; - virtual int GetNumberOfEntries() = 0; - - // Output all names from the table to log. - virtual void LogNames() = 0; - - virtual void GetMemoryUsage(ICrySizer* pSizer) const = 0; -}; - -////////////////////////////////////////////////////////////////////////// -class CNameTable - : public INameTable -{ -private: - typedef AZStd::unordered_map, stl::equality_string_caseless > NameMap; - NameMap m_nameMap; - -public: - CNameTable() - { - // Ensure that SNameEntry is an aligned size - static_assert(sizeof(INameTable::SNameEntry) % sizeof(void*) == 0, "SNameEntry must be an aligned size"); - } - - ~CNameTable() - { - for (NameMap::iterator it = m_nameMap.begin(); it != m_nameMap.end(); ++it) - { - CryModuleFree(it->second); - } - } - - // Only finds an existing name table entry, return 0 if not found. - virtual INameTable::SNameEntry* FindEntry(const char* str) - { - SNameEntry* pEntry = stl::find_in_map(m_nameMap, str, 0); - return pEntry; - } - - // Finds an existing name table entry, or creates a new one if not found. - virtual INameTable::SNameEntry* GetEntry(const char* str) - { - SNameEntry* pEntry = FindEntry(str); - if (!pEntry) - { - // Create a new entry. - size_t nLen = strlen(str); - size_t allocLen = sizeof(SNameEntry) + (nLen + 1) * sizeof(char); - pEntry = (SNameEntry*)CryModuleMalloc(allocLen); - assert(pEntry != NULL); - pEntry->nTag = SNameEntry::TAG; - pEntry->nRefCount = 0; - pEntry->nLength = static_cast(nLen); - pEntry->nAllocSize = static_cast(allocLen); - // Copy string to the end of name entry. - char* pEntryStr = const_cast(pEntry->GetStr()); - memcpy(pEntryStr, str, nLen + 1); - // put in map. - //m_nameMap.insert( NameMap::value_type(pEntry->GetStr(),pEntry) ); - m_nameMap[pEntry->GetStr()] = pEntry; - } - return pEntry; - } - - // Release existing name table entry. - virtual void Release(SNameEntry* pEntry) - { - assert(pEntry); - m_nameMap.erase(pEntry->GetStr()); - CryModuleFree(pEntry); - } - virtual int GetMemoryUsage() - { - int nSize = 0; - NameMap::iterator it; - int n = 0; - for (it = m_nameMap.begin(); it != m_nameMap.end(); it++) - { - nSize += static_cast(strlen(it->first)); - nSize += it->second->GetMemoryUsage(); - n++; - } - nSize += n * 8; - - return nSize; - } - virtual void GetMemoryUsage(ICrySizer* pSizer) const - { - pSizer->AddObject(this, sizeof(*this)); - pSizer->AddContainer(m_nameMap); - } - virtual int GetNumberOfEntries() - { - return static_cast(m_nameMap.size()); - } - - // Log all names inside CryName table. - virtual void LogNames() - { - NameMap::iterator it; - for (it = m_nameMap.begin(); it != m_nameMap.end(); ++it) - { - SNameEntry* pNameEntry = it->second; - CryLog("[%4d] %s", pNameEntry->nLength, pNameEntry->GetStr()); - } - } -}; - -/////////////////////////////////////////////////////////////////////////////// -// Class CCryName. -////////////////////////////////////////////////////////////////////////// -class CCryName -{ -public: - CCryName(); - CCryName(const CCryName& n); - explicit CCryName(const char* s); - CCryName(const char* s, bool bOnlyFind); - ~CCryName(); - - CCryName& operator=(const CCryName& n); - CCryName& operator=(const char* s); - - bool operator==(const CCryName& n) const; - bool operator!=(const CCryName& n) const; - - bool operator==(const char* s) const; - bool operator!=(const char* s) const; - - bool operator<(const CCryName& n) const; - bool operator>(const CCryName& n) const; - - bool empty() const { return !m_str || !m_str[0]; } - void reset() { _release(m_str); m_str = 0; } - void addref() { _addref(m_str); } - - const char* c_str() const - { - return (m_str) ? m_str : ""; - } - int length() const { return _length(); }; - - static bool find(const char* str) { return GetNameTable()->FindEntry(str) != 0; } - void GetMemoryUsage(ICrySizer* pSizer) const - { - //pSizer->AddObject(m_str); - pSizer->AddObject(GetNameTable()); // cause for slowness? - } - static int GetMemoryUsage() - { -#ifdef USE_STATIC_NAME_TABLE - CNameTable* pTable = GetNameTable(); -#else - INameTable* pTable = GetNameTable(); -#endif - return pTable->GetMemoryUsage(); - } - static int GetNumberOfEntries() - { -#ifdef USE_STATIC_NAME_TABLE - CNameTable* pTable = GetNameTable(); -#else - INameTable* pTable = GetNameTable(); -#endif - return pTable->GetNumberOfEntries(); - } - - // Compare functor for sorting CCryNames lexically. - struct CmpLex - { - bool operator () (const CCryName& n1, const CCryName& n2) const - { - return strcmp(n1.c_str(), n2.c_str()) < 0; - } - }; - -private: - typedef INameTable::SNameEntry SNameEntry; - -#ifdef USE_STATIC_NAME_TABLE - static CNameTable* GetNameTable() - { - // Note: can not use a 'static CNameTable sTable' here, because that - // implies a static destruction order depenency - the name table is - // accessed from static destructor calls. - static CNameTable* table = NULL; - - if (table == NULL) - { - table = new CNameTable(); - } - return table; - } -#else - //static INameTable* GetNameTable() { return GetISystem()->GetINameTable(); } - static INameTable* GetNameTable() - { - assert(gEnv && gEnv->pNameTable); - return gEnv->pNameTable; - } -#endif - - SNameEntry* _entry(const char* pBuffer) const - { - CRY_ASSERT(pBuffer); - CRY_ASSERT((((SNameEntry*)pBuffer) - 1)->nTag == SNameEntry::TAG); - return ((SNameEntry*)pBuffer) - 1; - } - void _release(const char* pBuffer) - { - if (pBuffer && _entry(pBuffer)->Release() <= 0 && gEnv) - { - GetNameTable()->Release(_entry(pBuffer)); - } - } - int _length() const { return (m_str) ? _entry(m_str)->nLength : 0; }; - void _addref(const char* pBuffer) - { - if (pBuffer) - { - _entry(pBuffer)->AddRef(); - } - } - - - const char* m_str; -}; - -////////////////////////////////////////////////////////////////////////// - -////////////////////////////////////////////////////////////////////////// -// CryName -////////////////////////////////////////////////////////////////////////// -inline CCryName::CCryName() -{ - m_str = 0; -} - -////////////////////////////////////////////////////////////////////////// -inline CCryName::CCryName(const CCryName& n) -{ - _addref(n.m_str); - m_str = n.m_str; -} - -////////////////////////////////////////////////////////////////////////// -inline CCryName::CCryName(const char* s) -{ - m_str = 0; - *this = s; -} - -////////////////////////////////////////////////////////////////////////// -inline CCryName::CCryName(const char* s, [[maybe_unused]] bool bOnlyFind) -{ - assert(s); - m_str = 0; - if (*s) // if not empty - { - SNameEntry* pNameEntry = GetNameTable()->FindEntry(s); - if (pNameEntry) - { - m_str = pNameEntry->GetStr(); - _addref(m_str); - } - } -} - -inline CCryName::~CCryName() -{ - _release(m_str); -} - -////////////////////////////////////////////////////////////////////////// -inline CCryName& CCryName::operator=(const CCryName& n) -{ - if (m_str != n.m_str) - { - _release(m_str); - m_str = n.m_str; - _addref(m_str); - } - return *this; -} - -////////////////////////////////////////////////////////////////////////// -inline CCryName& CCryName::operator=(const char* s) -{ - assert(s); - const char* pBuf = 0; - if (s && *s) // if not empty - { - pBuf = GetNameTable()->GetEntry(s)->GetStr(); - } - if (m_str != pBuf) - { - _release(m_str); - m_str = pBuf; - _addref(m_str); - } - return *this; -} - - -////////////////////////////////////////////////////////////////////////// -inline bool CCryName::operator==(const CCryName& n) const -{ - return m_str == n.m_str; -} - -inline bool CCryName::operator!=(const CCryName& n) const -{ - return !(*this == n); -} - -inline bool CCryName::operator==(const char* str) const -{ - return m_str && _stricmp(m_str, str) == 0; -} - -inline bool CCryName::operator!=(const char* str) const -{ - if (!m_str) - { - return true; - } - return _stricmp(m_str, str) != 0; -} - -inline bool CCryName::operator<(const CCryName& n) const -{ - return m_str < n.m_str; -} - -inline bool CCryName::operator>(const CCryName& n) const -{ - return m_str > n.m_str; -} - -inline bool operator==(const AZStd::string& s, const CCryName& n) -{ - return s == n.c_str(); -} -inline bool operator!=(const AZStd::string& s, const CCryName& n) -{ - return s != n.c_str(); -} - -inline bool operator==(const char* s, const CCryName& n) -{ - return n == s; -} -inline bool operator!=(const char* s, const CCryName& n) -{ - return n != s; -} - - -/////////////////////////////////////////////////////////////////////////////// -// Class CCryNameCRC. -////////////////////////////////////////////////////////////////////////// -class CCryNameCRC -{ -public: - CCryNameCRC(); - CCryNameCRC(const CCryNameCRC& n); - CCryNameCRC(const char* s); - CCryNameCRC(const char* s, bool bOnlyFind); - explicit CCryNameCRC(uint32 n) { m_nID = n; } // We use "explicit" to prevent comparison of strings with ints due to implicit conversion. - ~CCryNameCRC(); - - CCryNameCRC& operator=(const CCryNameCRC& n); - CCryNameCRC& operator=(const char* s); - - bool operator==(const CCryNameCRC& n) const; - bool operator!=(const CCryNameCRC& n) const; - - bool operator==(const char* s) const; - bool operator!=(const char* s) const; - - bool operator<(const CCryNameCRC& n) const; - bool operator>(const CCryNameCRC& n) const; - - bool empty() const { return m_nID == 0; } - void reset() { m_nID = 0; } - uint32 get() const { return m_nID; } - void add(int nAdd) { m_nID += nAdd; } - - AUTO_STRUCT_INFO - - void GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer) const { /*nothing*/} -private: - - uint32 m_nID; -}; - -////////////////////////////////////////////////////////////////////////// -// CCryNameCRC -////////////////////////////////////////////////////////////////////////// -inline CCryNameCRC::CCryNameCRC() -{ - m_nID = 0; -} - -////////////////////////////////////////////////////////////////////////// -inline CCryNameCRC::CCryNameCRC(const CCryNameCRC& n) -{ - m_nID = n.m_nID; -} - -////////////////////////////////////////////////////////////////////////// -inline CCryNameCRC::CCryNameCRC(const char* s) -{ - m_nID = 0; - *this = s; -} - -inline CCryNameCRC::~CCryNameCRC() -{ - m_nID = 0; -} - -////////////////////////////////////////////////////////////////////////// -inline CCryNameCRC& CCryNameCRC::operator=(const CCryNameCRC& n) -{ - m_nID = n.m_nID; - return *this; -} - -////////////////////////////////////////////////////////////////////////// -inline CCryNameCRC& CCryNameCRC::operator=(const char* s) -{ - assert(s); - if (*s) // if not empty - { - m_nID = CCrc32::ComputeLowercase(s); - } - return *this; -} - - -////////////////////////////////////////////////////////////////////////// -inline bool CCryNameCRC::operator==(const CCryNameCRC& n) const -{ - return m_nID == n.m_nID; -} - -inline bool CCryNameCRC::operator!=(const CCryNameCRC& n) const -{ - return !(*this == n); -} - -inline bool CCryNameCRC::operator==(const char* str) const -{ - assert(str); - if (*str) // if not empty - { - uint32 nID = CCrc32::ComputeLowercase(str); - return m_nID == nID; - } - return m_nID == 0; -} - -inline bool CCryNameCRC::operator!=(const char* str) const -{ - if (!m_nID) - { - return true; - } - if (*str) // if not empty - { - uint32 nID = CCrc32::ComputeLowercase(str); - return m_nID != nID; - } - return false; -} - -inline bool CCryNameCRC::operator<(const CCryNameCRC& n) const -{ - return m_nID < n.m_nID; -} - -inline bool CCryNameCRC::operator>(const CCryNameCRC& n) const -{ - return m_nID > n.m_nID; -} - -inline bool operator==(const AZStd::string& s, const CCryNameCRC& n) -{ - return n == s.c_str(); -} -inline bool operator!=(const AZStd::string& s, const CCryNameCRC& n) -{ - return n != s.c_str(); -} - -inline bool operator==(const char* s, const CCryNameCRC& n) -{ - return n == s; -} -inline bool operator!=(const char* s, const CCryNameCRC& n) -{ - return n != s; -} - -#endif // CRYINCLUDE_CRYCOMMON_CRYNAME_H diff --git a/Code/Legacy/CryCommon/CrySizer.h b/Code/Legacy/CryCommon/CrySizer.h index 3f9eed84f6..27323368ab 100644 --- a/Code/Legacy/CryCommon/CrySizer.h +++ b/Code/Legacy/CryCommon/CrySizer.h @@ -24,7 +24,6 @@ #include "Cry_Math.h" #include -#include #include #include #include @@ -36,7 +35,6 @@ struct AABB; struct SVF_P3F; struct SVF_P3F_C4B_T2F; -struct SVF_P3F_C4B_T2S; struct SVF_P3S_C4B_T2S; struct SPipTangents; @@ -237,7 +235,6 @@ public: void AddObject(const AABB&) {} void AddObject(const SVF_P3F&) {} void AddObject(const SVF_P3F_C4B_T2F&) {} - void AddObject(const SVF_P3F_C4B_T2S&) {} void AddObject(const SVF_P3S_C4B_T2S&) {} void AddObject(const SPipTangents&) {} void AddObject([[maybe_unused]] const AZ::Vector3& rObj) {} @@ -301,26 +298,6 @@ public: } } - template - void AddObject(const DynArray& rVector) - { - if (rVector.empty()) - { - this->AddObject(rVector.begin(), rVector.get_alloc_size()); - return; - } - - if (!this->AddObject(rVector.begin(), rVector.get_alloc_size())) - { - return; - } - - for (typename DynArray::const_iterator it = rVector.begin(); it != rVector.end(); ++it) - { - this->AddObject(*it); - } - } - template void AddObject(const PodArray& rVector) { diff --git a/Code/Legacy/CryCommon/CryTypeInfo.cpp b/Code/Legacy/CryCommon/CryTypeInfo.cpp deleted file mode 100644 index 82743f7eef..0000000000 --- a/Code/Legacy/CryCommon/CryTypeInfo.cpp +++ /dev/null @@ -1,1472 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Implementation of TypeInfo classes and functions. - -#include -#include "CryTypeInfo.h" -#include "CryCustomTypes.h" -#include "Cry_Math.h" -#include "CrySizer.h" -#include "CryEndian.h" -#include "TypeInfo_impl.h" -#include - -// Traits -#if defined(AZ_RESTRICTED_PLATFORM) - #include AZ_RESTRICTED_FILE(CryTypeInfo_cpp) -#elif defined(LINUX) || defined(APPLE) -#define CRYTYPEINFO_CPP_TRAIT_DEFINE_LTOA_S 1 -#endif - -#if CRYTYPEINFO_CPP_TRAIT_DEFINE_LTOA_S - -char* _ltoa_s(long value, char* string, size_t size, int32 radix) -{ - if (10 == radix) - { - sprintf_s(string, size, "%ld", value); - } - else - { - sprintf_s(string, size, "%lx", value); - } - return(string); -} - - -char* _i64toa_s(int64 value, char* string, size_t size, int32 radix) -{ - if (10 == radix) - { - sprintf_s(string, size, "%llu", (unsigned long long)value); - } - else - { - sprintf_s(string, size, "%llx", (unsigned long long)value); - } - return(string); -} - -char* _ultoa_s(uint32 value, char* string, size_t size, int32 radix) -{ - if (10 == radix) - { - sprintf_s(string, size, "%.d", value); - } - else - { - sprintf_s(string, size, "%.x", value); - } - return(string); -} - -#endif //LINUX || MAC - -////////////////////////////////////////////////////////////////////// -// Case-insensitive comparison helpers. - -class StrNoCase -{ -public: - inline StrNoCase(cstr str) - : m_Str(str) {} - inline bool operator == (cstr str) const { return azstricmp(m_Str, str) == 0; } - inline bool operator != (cstr str) const { return azstricmp(m_Str, str) != 0; } -private: - cstr m_Str; -}; - -// Default Endian swap function, forwards to TypeInfo. -void SwapEndian(const CTypeInfo& Info, [[maybe_unused]] size_t nSizeCheck, void* data, size_t nCount, bool bWriting) -{ - assert(nSizeCheck == Info.Size); - Info.SwapEndian(data, nCount, bWriting); -} - -////////////////////////////////////////////////////////////////////// -// Basic TypeInfo implementations. - -// Basic type infos. - -DEFINE_TYPE_INFO(void, CTypeInfo, ("void", 0, 0)) - -TYPE_INFO_BASIC(bool) -TYPE_INFO_BASIC(char) -TYPE_INFO_BASIC(wchar_t) - -TYPE_INFO_INT(signed char) -TYPE_INFO_INT(unsigned char) -TYPE_INFO_INT(short) -TYPE_INFO_INT(unsigned short) -TYPE_INFO_INT(int) -TYPE_INFO_INT(unsigned int) -TYPE_INFO_INT(long) -TYPE_INFO_INT(unsigned long) -TYPE_INFO_INT(int64) -TYPE_INFO_INT(uint64) - -TYPE_INFO_BASIC(float) -TYPE_INFO_BASIC(double) - -TYPE_INFO_BASIC(AZStd::string) - - -const CTypeInfo&PtrTypeInfo() -{ - static CTypeInfo Info(TYPE_INFO_NAME(void*), sizeof(void*), alignof(void*)); - return Info; -} - -////////////////////////////////////////////////////////////////////// -// Basic type info implementations. - -// String conversion functions needed by TypeInfo. - -// bool -AZStd::string ToString(bool const& val) -{ - return val ? "true" : "false"; -} - -bool FromString(bool& val, cstr s) -{ - if (!strcmp(s, "0") || !azstricmp(s, "false")) - { - val = false; - return true; - } - if (!strcmp(s, "1") || !azstricmp(s, "true")) - { - val = true; - return true; - } - return false; -} - -// int64 -AZStd::string ToString(int64 const& val) -{ - char buffer[64]; - _i64toa_s(val, buffer, sizeof(buffer), 10); - return buffer; -} -// uint64 -AZStd::string ToString(uint64 const& val) -{ - char buffer[64]; - sprintf_s(buffer, "%" PRIu64, val); - return buffer; -} - - - -// long -AZStd::string ToString(long const& val) -{ - char buffer[64]; - _ltoa_s(val, buffer, sizeof(buffer), 10); - return buffer; -} - -// ulong -AZStd::string ToString(unsigned long const& val) -{ - char buffer[64]; - _ultoa_s(val, buffer, sizeof(buffer), 10); - return buffer; -} - -template -bool ClampedIntFromString(T& val, const char* s) -{ - bool signbit = *s == '-'; - s += signbit; - if (signbit && !TIntTraits::bSIGNED) - { - // Negative number on unsigned. - val = T(0); - return true; - } - - uint digit = (uint8) * s - '0'; - if (digit > 9) - { - // No digits. - return false; - } - - // Extract digits until overflow. - T v = static_cast(digit); - while ((digit = (uint8) * ++s - '0') <= 9) - { - T vnew = static_cast(v * 10 + digit); - if (vnew < v) - { - // Overflow. - if (signbit) - { - val = TIntTraits::nMIN; - } - else - { - val = TIntTraits::nMAX; - } - return true; - } - v = vnew; - } - - val = signbit ? ~v + 1 : v; - return true; -} - -bool FromString(int64& val, const char* s) { return ClampedIntFromString(val, s); } -bool FromString(uint64& val, const char* s) { return ClampedIntFromString(val, s); } - -bool FromString(long& val, const char* s) { return ClampedIntFromString(val, s); } -bool FromString(unsigned long& val, const char* s) { return ClampedIntFromString(val, s); } - -AZStd::string ToString(int const& val) { return ToString(long(val)); } -bool FromString(int& val, const char* s) { return ClampedIntFromString(val, s); } - -AZStd::string ToString(unsigned int const& val) { return ToString((unsigned long)(val)); } -bool FromString(unsigned int& val, const char* s) { return ClampedIntFromString(val, s); } - -AZStd::string ToString(short const& val) { return ToString(long(val)); } -bool FromString(short& val, const char* s) { return ClampedIntFromString(val, s); } - -AZStd::string ToString(unsigned short const& val) { return ToString((unsigned long)(val)); } -bool FromString(unsigned short& val, const char* s) { return ClampedIntFromString(val, s); } - -AZStd::string ToString(char const& val) { return ToString(long(val)); } -bool FromString(char& val, const char* s) { return ClampedIntFromString(val, s); } - -AZStd::string ToString(wchar_t const& val) { return ToString(long(val)); } -bool FromString(wchar_t& val, const char* s) { return ClampedIntFromString(val, s); } - -AZStd::string ToString(signed char const& val) { return ToString(long(val)); } -bool FromString(signed char& val, const char* s) { return ClampedIntFromString(val, s); } - -AZStd::string ToString(unsigned char const& val) { return ToString((unsigned long)(val)); } -bool FromString(unsigned char& val, const char* s) { return ClampedIntFromString(val, s); } - -AZStd::string ToString(const AZ::Uuid& val) -{ - return val.ToString(); -} - -bool FromString(AZ::Uuid& val, const char* s) -{ - val = AZ::Uuid(s); - return true; -} - -float NumToFromString(float val, int digits, bool floating, char buffer[], int buf_size) -{ - assert(buf_size >= 32); - if (floating) - { - if (val >= powf(10.f, float(digits))) - { - sprintf_s(buffer, buf_size, "%.0f", val); - } - else - { - sprintf_s(buffer, buf_size, "%.*g", digits, val); - } - } - else - { - sprintf_s(buffer, buf_size, "%.*f", digits, float(val)); - } -#if !defined(NDEBUG) - int readCount = -#endif - azsscanf(buffer, "%g", &val); - assert(readCount == 1); - return val; -} - -// double -AZStd::string ToString(double const& val) -{ - char buffer[64]; - sprintf_s(buffer, "%.16g", val); - return buffer; -} -bool FromString(double& val, const char* s) -{ - return azsscanf(s, "%lg", &val) == 1; -} - -// float -AZStd::string ToString(float const& val) -{ - char buffer[64]; - for (int digits = 7; digits < 10; digits++) - { - if (NumToFromString(val, digits, true, buffer, 64) == val) - { - break; - } - } - return buffer; -} - -bool FromString(float& val, const char* s) -{ - return azsscanf(s, "%g", &val) == 1; -} - - - -// string override. -template <> -void TTypeInfo::GetMemoryUsage(ICrySizer* pSizer, void const* data) const -{ - // CRAIG: just a temp hack to try and get things working -#if !defined(LINUX) && !defined(APPLE) - pSizer->AddString(*(AZStd::string*)data); -#endif -} - -#if defined(TEST_TYPEINFO) && defined(_DEBUG) - -struct STypeInfoTest -{ - STypeInfoTest() - { - TestType(AZStd::string("well")); - - TestType(true); - - TestType(int8(-0x12)); - TestType(uint8(0x87)); - TestType(int16(-0x1234)); - TestType(uint16(0x8765)); - TestType(int32(-0x12345678)); - TestType(uint32(0x87654321)); - TestType(int64(-0x123456789ABCDEF0LL)); - TestType(uint64(0xFEDCBA9876543210LL)); - - TestType(float(1234.5678)); - TestType(float(12345678)); - TestType(float(12345678e-20)); - TestType(float(12345678e20)); - - TestType(double(987654321.0123456789)); - TestType(double(9876543210123456789.0)); - TestType(double(9876543210123456789e-40)); - TestType(double(9876543210123456789e40)); - } -}; -static STypeInfoTest _TypeInfoTest; - -#endif //TEST_TYPEINFO - - -////////////////////////////////////////////////////////////////////// -// CTypeInfo implementation - -//--------------------------------------------------------------------------- -// Endian helper functions. - -void CTypeInfo::SwapEndian(void* pData, size_t nCount, [[maybe_unused]] bool bWriting) const -{ - switch (Size) - { - case 1: - break; - case 2: - ::SwapEndianBase((uint16*)pData, nCount); - break; - case 4: - ::SwapEndianBase((uint32*)pData, nCount); - break; - case 8: - ::SwapEndianBase((uint64*)pData, nCount); - break; - default: - assert(0); - } -} - -// If attr name is found, return pointer to start of value text; else 0. -static cstr FindAttr(cstr attrs, cstr name) -{ - size_t name_len = strlen(name); - while (attrs) - { - attrs = strchr(attrs, '<'); - if (!attrs) - { - return 0; - } - - attrs++; - size_t attr_len = strcspn(attrs, "=>"); - if (attr_len == name_len && _strnicmp(attrs, name, name_len) == 0) - { - attrs += attr_len; - if (*attrs == '=') - { - ++attrs; - } - return attrs; - } - attrs += attr_len; - if (*attrs == '=') - { - attrs = strchr(attrs + 1, '>'); - } - } - return 0; -} - -bool CTypeInfo::CVarInfo::GetAttr(cstr name) const -{ - return FindAttr(Attrs, name) != 0; -} - -bool CTypeInfo::CVarInfo::GetAttr(cstr name, AZStd::string& val) const -{ - cstr valstr = FindAttr(Attrs, name); - if (!valstr) - { - return false; - } - - // Find attr delimiter. - cstr end = strchr(valstr, '>'); - if (!end) - { - return false; - } - - // Strip quotes. - if (*valstr == '"') - { - valstr++; - if (end - valstr > 1 && end[-1] == '"') - { - end--; - } - } - val = AZStd::string(valstr, end - valstr); - return true; -} - -bool CTypeInfo::CVarInfo::GetAttr(cstr name, float& val) const -{ - cstr valstr = FindAttr(Attrs, name); - if (!valstr) - { - return false; - } - val = (float)atof(valstr); - return true; -} - -cstr CTypeInfo::CVarInfo::GetComment() const -{ - cstr send = strrchr(Attrs, '>'); - if (send) - { - do - { - ++send; - } while (*send == ' '); - return send; - } - else - { - return Attrs; - } -} - -////////////////////////////////////////////////////////////////////// -// CStructInfo implementation - -inline cstr DisplayName(cstr name) -{ - // Skip prefixes in Name. - cstr dname = name; - while (islower((unsigned char)*dname) || *dname == '_') - { - dname++; - } - if (isupper((unsigned char)*dname)) - { - return dname; - } - else - { - return name; - } -} - -CStructInfo::CStructInfo(cstr name, size_t size, size_t align, Array vars, Array templates) - : CTypeInfo(name, size, align) - , Vars(vars) - , TemplateTypes(templates) - , HasBitfields(false) -{ - // Process and validate offsets and sizes. - if (Vars.size() > 0) - { - size = 0; - int bitoffset = 0; - - for (int i = 0; i < Vars.size(); i++) - { - CStructInfo::CVarInfo& var = Vars[i]; - - // Convert name. - var.Name = DisplayName(var.Name); - - if (var.bBitfield) - { - HasBitfields = true; - if (bitoffset > 0) - { - // Continuing bitfield. - var.Offset = Vars[i - 1].Offset; - var.BitWordWidth = Vars[i - 1].BitWordWidth; - - if (bitoffset + var.ArrayDim > var.GetSize() * 8) - { - // Overflows word, start on next one. - bitoffset = 0; - size += var.GetSize(); - } - } - - if (bitoffset == 0) - { - var.Offset = check_cast(size); - - // Detect real word size of bitfield, from offset of next field. - size_t next_offset = Size; - for (int j = i + 1; j < Vars.size(); j++) - { - if (!Vars[j].bBitfield) - { - next_offset = Vars[j].Offset; - break; - } - } - assert(next_offset > size); - size_t wordsize = min(next_offset - size, var.Type.Size); - size = next_offset; - switch (wordsize) - { - case 1: - var.BitWordWidth = 0; - break; - case 2: - var.BitWordWidth = 1; - break; - case 4: - var.BitWordWidth = 2; - break; - case 8: - var.BitWordWidth = 3; - break; - default: - assert(0); - } - } - - assert(var.ArrayDim <= var.GetSize() * 8); - var.BitOffset = bitoffset; - bitoffset += var.ArrayDim; - } - else - { - bitoffset = 0; - if (var.Offset >= size) - { - size = var.Offset + var.GetSize(); - } - } - } - assert(Align(size, Alignment) == Align(Size, Alignment)); - } -} - -size_t EndianDescSize(cstr desc) -{ - // Iterate the endian descriptor. - size_t nSize = 0; - for (; *desc; desc++) - { - size_t count = *desc & 0x3F; - size_t nType = *(uint8*)desc >> 6; - nSize += count << nType; - } - return nSize; -} - -size_t CStructInfo::AddEndianDesc(cstr desc, size_t dim, size_t elem_size) -{ - if (dim == 0) - { - return 0; - } - - size_t endian_size = EndianDescSize(desc); - size_t total_size = elem_size * (dim - 1) + endian_size; - - if (desc[1] || (endian_size < elem_size && dim > 1)) - { - // Composite endian descriptor, replicate it. - assert(endian_size <= elem_size); - assert(elem_size - endian_size < 0x40); - while (dim-- > 0) - { - EndianDesc += (cstr)desc; - if (dim > 1 && endian_size < elem_size) - { - EndianDesc += char(0x40 | (elem_size - endian_size)); - } - } - } - else - { - // Single endian component. Replicate using count field. - size_t subdim = desc[0] & 0x3F; - dim *= subdim; - if (!EndianDesc.empty()) - { - // Combine with previous component if possible. - char prevdesc = *(EndianDesc.end() - 1); - if ((prevdesc & ~0x3F) == (desc[0] & ~0x3F)) - { - // Combine with previous char. - size_t maxdim = min(dim, size_t(0x3F - (prevdesc & 0x3F))); - prevdesc += check_cast(maxdim); - EndianDesc.erase(EndianDesc.length() - 1, 1); - EndianDesc.append(1, prevdesc); - dim -= maxdim; - } - } - for (; dim > 0x3F; dim -= 0x3F) - { - EndianDesc += desc[0] | 0x3F; - } - if (dim > 0) - { - EndianDesc += check_cast((desc[0] & ~0x3F) | dim); - } - } - - return total_size; -} - -bool CStructInfo::FromValue(void* data, const void* value, const CTypeInfo& typeVal) const -{ - if (IsCompatibleType(typeVal)) - { - bool bOK = true; - int i = 0; - for AllSubVars(pToVar, typeVal) - { - if (!Vars[i].Type.FromValue(Vars[i].GetAddress(data), pToVar->GetAddress(value), pToVar->Type)) - { - bOK = false; - } - i++; - } - return bOK; - } - - // Check all subclasses. - for (int i = 0; i < Vars.size() && Vars[i].IsBaseClass(); i++) - { - if (Vars[i].Type.FromValue(Vars[i].GetAddress(data), value, typeVal)) - { - return true; - } - } - return false; -} - -bool CStructInfo::ToValue(const void* data, void* value, const CTypeInfo& typeVal) const -{ - if (IsCompatibleType(typeVal)) - { - bool bOK = true; - int i = 0; - for AllSubVars(pToVar, typeVal) - { - if (!Vars[i].Type.ToValue(Vars[i].GetAddress(data), pToVar->GetAddress(value), pToVar->Type)) - { - bOK = false; - } - i++; - } - return bOK; - } - - // Check all subclasses. - for (int i = 0; i < Vars.size() && Vars[i].IsBaseClass(); i++) - { - if (Vars[i].Type.ToValue(Vars[i].GetAddress(data), value, typeVal)) - { - return true; - } - } - return false; -} - -// Parse structs as comma-separated values. - -/* , 1, ,2 1,2 - - Top 1 ,2 1,2 ; strip trail commas - Child Named 1 (,2) (1,2) ; strip trail commas, paren if internal commas - Nameless , 1, ,2 1,2 ; -*/ - -static void StripCommas(AZStd::string& str) -{ - size_t nLast = str.size(); - while (nLast > 0 && str[nLast - 1] == ',') - { - nLast--; - } - str.resize(nLast); -} - -AZStd::string CStructInfo::ToString(const void* data, FToString flags, const void* def_data) const -{ - AZStd::string str; // Return str. - - for (int i = 0; i < Vars.size(); i++) - { - // Handling of empty values: Skip trailing empty values. - // If there are intermediate empty values, replace them with non-empty ones. - const CVarInfo& var = Vars[i]; - - if (!var.IsInline()) - { - // Named sub var or struct. - if (!flags.NamedFields && i > 0) - { - str += ","; - } - - AZStd::string substr = var.ToString(data, FToString(flags).Sub(0), def_data); - - if (flags.SkipDefault && substr.empty()) - { - continue; - } - - if (flags.NamedFields) - { - if (*str.c_str()) - { - str += ","; - } - if (*var.Name) - { - str += var.Name; - str += "="; - } - } - if (substr.find(',') != AZStd::string::npos || substr.find('=') != AZStd::string::npos) - { - // Encase nested composite types in parens. - str += "("; - str += substr; - str += ")"; - } - else - { - str += substr; - } - } - else - { - // Nameless base struct. Treat children as inline. - str += var.ToString(data, FToString(flags).Sub(1), def_data); - } - } - - if (flags.SkipDefault && !flags.Sub) - { - StripCommas(str); - } - return str; -} - -// Retrieve and return one subelement from src, advancing the pointer. -// Copy to tempstr if necessary. - -typedef AZStd::fixed_string<256> CTempStr; - -void ParseElement(cstr& src, cstr& varname, cstr& val, CTempStr& tempstr) -{ - varname = val = 0; - - while (*src == ' ') - { - src++; - } - if (!*src) - { - return; - } - - // Find end of var assignment. - int nest = 0; - cstr eq = 0; - - cstr end; - for (end = src; *end; end++) - { - if (*end == '(') - { - nest++; - } - else if (*end == ')') - { - nest--; - } - else if (nest == 0) - { - if (*end == '=' && !eq) - { - eq = end; - } - else if (*end == ',') - { - break; - } - } - } - - // Advance src past element. - val = src; - src = end; - - if (*src == ',') - { - src++; - } - - if (eq) - { - varname = val; - val = eq + 1; - } - - PREFAST_ASSUME(val); - if (*val == '(' && end[-1] == ')') - { - // Remove parens. - val++; - end--; - } - - if (eq) - { - if (*end) - { - // Must copy sub string to temp. - val = tempstr.c_str() + (val - varname); - eq = tempstr.c_str() + (eq - varname); - tempstr.assign(varname, end); - varname = tempstr.c_str(); - non_const(*eq) = 0; - } - else - { - // Copy just varname to temp, return val in place. - tempstr.assign(varname, eq); - varname = tempstr.c_str(); - } - } - else if (*end) - { - // Must copy sub string to temp. - tempstr.assign(val, end); - val = tempstr.c_str(); - } - - // Else can return val without copying. -} - -bool CStructInfo::FromString(void* data, cstr str, FFromString flags) const -{ - if (!flags.SkipEmpty) - { - // Initialise all to default - for (int i = 0; i < Vars.size(); i++) - { - Vars[i].FromString(data, ""); - } - } - - CTempStr tempstr; - const CVarInfo* pVar = 0; - int nErrors = 0; - - while (*str) - { - cstr varname, val; - ParseElement(str, varname, val, tempstr); - - if (varname) - { - pVar = FindSubVar(varname); - } - else - { - pVar = NextSubVar(pVar, true); - } - if (pVar) - { - if (*val || !flags.SkipEmpty) - { - nErrors += !pVar->FromString(data, val, flags); - } - } - else - { - nErrors++; - } - } - - return !nErrors; -} - -bool CStructInfo::ValueEqual(const void* data, const void* def_data) const -{ - for (int i = 0; i < Vars.size(); i++) - { - const CVarInfo& var = Vars[i]; - if (!var.Type.ValueEqual((char*)data + var.Offset, (def_data ? (char*)def_data + var.Offset : 0))) - { - return false; - } - } - return true; -} - -void CStructInfo::SwapEndian(void* data, size_t nCount, bool bWriting) const -{ - non_const(*this).MakeEndianDesc(); - - if (EndianDesc.length() == 1 && !HasBitfields && EndianDescSize(EndianDesc.c_str()) == Size) - { - // Optimised array swap. - size_t nElems = (EndianDesc[0u] & 0x3F) * nCount; - switch (EndianDesc[0u] & 0xC0) - { - case 0: // Skip bytes - break; - case 0x40: // Swap 2 bytes - ::SwapEndianBase((uint16*)data, nElems); - break; - case 0x80: // Swap 4 bytes - ::SwapEndianBase((uint32*)data, nElems); - break; - case 0xC0: // Swap 8 bytes - ::SwapEndianBase((uint64*)data, nElems); - break; - } - return; - } - - for (; nCount-- > 0; data = (char*)data + Size) - { - // First swap bits. - // Iterate the endian descriptor. - void* step = data; - for (cstr desc = EndianDesc.c_str(); *desc; desc++) - { - size_t nElems = *desc & 0x3F; - switch (*desc & 0xC0) - { - case 0: // Skip bytes - step = (uint8*)step + nElems; - break; - case 0x40: // Swap 2 bytes - ::SwapEndianBase((uint16*)step, nElems); - step = (uint16*)step + nElems; - break; - case 0x80: // Swap 4 bytes - ::SwapEndianBase((uint32*)step, nElems); - step = (uint32*)step + nElems; - break; - case 0xC0: // Swap 8 bytes - ::SwapEndianBase((uint64*)step, nElems); - step = (uint64*)step + nElems; - break; - } - } - - // Then bitfields if needed. - if (HasBitfields) - { - uint64 uOrigBits = 0, uNewBits = 0; - for (int i = 0; i < Vars.size(); i++) - { - CVarInfo const& var = Vars[i]; - if (var.bBitfield) - { - // Reverse location of all bitfields in word. - size_t nWordBits = var.GetElemSize() * 8; - assert(nWordBits <= 64); - if (var.BitOffset == 0) - { - // Initialise bitfield swapping. - var.Type.ToValue(var.GetAddress(data), uOrigBits); - uNewBits = 0; - } - size_t nSrcOffset = (GetPlatformEndian() == eLittleEndian) == bWriting ? var.BitOffset : nWordBits - var.GetBits() - var.BitOffset; - size_t nDstOffset = nWordBits - var.GetBits() - nSrcOffset; - - uint64 uFieldVal = uOrigBits >> nSrcOffset; - uFieldVal &= ((1 << var.GetBits()) - 1); - uNewBits |= uFieldVal << nDstOffset; - var.Type.FromValue(var.GetAddress(data), uNewBits); - } - } - } - } -} - -void CStructInfo::MakeEndianDesc() -{ - if (!EndianDesc.empty()) - { - return; - } - - size_t last_offset = 0; - for (int i = 0; i < Vars.size(); i++) - { - CVarInfo const& var = Vars[i]; - bool bUnionAlias = var.bBitfield ? var.BitOffset > 0 : var.Offset < last_offset; - if (!bUnionAlias) - { - // Add endian desc for member. - cstr subdesc = 0; - if (var.Type.HasSubVars()) - { - // Struct-computed endian desc. - CStructInfo const& infoSub = static_cast(var.Type); - non_const(infoSub).MakeEndianDesc(); - subdesc = infoSub.EndianDesc.c_str(); - if (!*subdesc) - { - // No swapping. - continue; - } - } - else - { - // Basic type. - switch (var.GetElemSize()) - { - case 0: - case 1: - continue; // No swapping needed. - case 2: - subdesc = "\x41"; - break; - case 4: - subdesc = "\x81"; - break; - case 8: - subdesc = "\xC1"; - break; - default: - assert(0); - } - } - - // Apply any padding to current offset. - assert(last_offset <= var.Offset); - if (last_offset < var.Offset) - { - last_offset += AddEndianDesc("\x01", var.Offset - last_offset, 1); - } - last_offset += AddEndianDesc(subdesc, var.GetDim(), var.GetElemSize()); - } - } -} - -void CStructInfo::GetMemoryUsage(ICrySizer* pSizer, void const* data) const -{ - for (int i = 0; i < Vars.size(); i++) - { - Vars[i].Type.GetMemoryUsage(pSizer, (char*)data + Vars[i].Offset); - } -} - -const CTypeInfo::CVarInfo* CStructInfo::NextSubVar(const CVarInfo* pPrev, bool bRecurseBase) const -{ - if (pPrev >= Vars.begin() && pPrev < Vars.end()) - { - // pPrev is within this struct's vars - if (++pPrev < Vars.end()) - { - return pPrev; - } - return 0; - } - - if (Vars.empty()) - { - return 0; - } - - if (bRecurseBase) - { - // Recurse into inline base structs - const CVarInfo* pBase = Vars.begin(); - if (pBase->IsInline()) - { - if (const CVarInfo* pNext = pBase->Type.NextSubVar(pPrev, true)) - { - return pNext; - } - if (++pBase < Vars.end()) - { - return pBase; - } - return 0; - } - } - - if (!pPrev) - { - // Return first var - return Vars.begin(); - } - - return 0; -} - -const CTypeInfo::CVarInfo* CStructInfo::FindSubVar(cstr name) const -{ - static int s_nLast = 0; - int nSize = Vars.size(); - if (s_nLast >= nSize) - { - s_nLast = 0; - } - - for (int i = s_nLast, iEnd = s_nLast + nSize; i < iEnd; i++) - { - int v = i >= nSize ? i - nSize : i; - const CVarInfo& var = Vars[v]; - if (var.Type.Size > 0 && StrNoCase(var.GetName()) == name) - { - s_nLast = v; - return &var; - } - if (var.IsBaseClass()) - { - if (const CVarInfo* pSubVar = var.Type.FindSubVar(name)) - { - return pSubVar; - } - } - } - return 0; -} - -bool CStructInfo::IsCompatibleType(CTypeInfo const& Info) const -{ - if (this == &Info) - { - return true; - } - - if (!TemplateTypes.empty() && Info.IsTemplate() && strcmp(Name, Info.Name) == 0) - { - CTypeInfo const* const* pA = NextTemplateType(0); - CTypeInfo const* const* pB = Info.NextTemplateType(0); - - while (pA && pB && (*pA)->IsType(**pB)) - { - pA = Info.NextTemplateType(pA); - pB = Info.NextTemplateType(pB); - } - return !pA && !pB; - } - - return false; -} - -bool CStructInfo::IsType(CTypeInfo const& Info) const -{ - if (IsCompatibleType(Info)) - { - return true; - } - - // Check all subclasses. - for (int i = 0; i < Vars.size() && Vars[i].IsBaseClass(); i++) - { - if (Vars[i].Type.IsType(Info)) - { - return true; - } - } - return false; -} - -////////////////////////////////////////////////////////////////////// -// CSimpleEnumDef implementation - -cstr ParseNextEnum(char*& rs) -{ - char* s = rs; - while (isspace(*s)) - { - s++; - } - if (!*s) - { - return 0; - } - - cstr se = s; - while (isalnum(*s) || *s == '_') - { - s++; - } - - if (*s == ',') - { - *s++ = 0; - } - else if (*s) - { - *s++ = 0; - while (*s && *s != ',') - { - s++; - } - if (*s) - { - s++; - } - } - rs = s; - return se; -} - -void CSimpleEnumDef::Init(Array names, char* enum_str) -{ - asNames = names; - - // Split copy of enums string into elements, store in array. - int i = 0; - while (cstr se = ParseNextEnum(enum_str)) - { - asNames[i++] = se; - } -} - -////////////////////////////////////////////////////////////////////// -// CEnumDef implementation - -void CEnumDef::Init(Array elems, char* enum_str) -{ - Elems = elems; - MinValue = 0; - bRegular = true; - nPrefixLength = 0; - - if (enum_str) - { - // Parse enum names from str - int i = 0; - while (cstr se = ParseNextEnum(enum_str)) - { - Elems[i++].Name = se; - } - } - - // Analyse names and values. - if (!elems.empty()) - { - cstr sPrefix = ""; - MinValue = Elems[0].Value; - for (int i = 0; i < elems.size(); i++) - { - if (Elems[i].Value != i + Elems[0].Value) - { - bRegular = false; - } - MinValue = min(MinValue, Elems[i].Value); - - // Find common prefix. - cstr sElem = Elems[i].Name; - if (*sElem) - { - if (!*sPrefix) - { - sPrefix = sElem; - nPrefixLength = static_cast(strlen(sPrefix)); - } - else - { - uint p = 0; - while (p < nPrefixLength && sElem[p] == sPrefix[p]) - { - p++; - } - nPrefixLength = p; - } - } - } - - // Ensure prefix is on underscore boundary. - while (nPrefixLength > 0 && sPrefix[nPrefixLength - 1] != '_') - { - nPrefixLength--; - } - } -} - -bool CEnumDef::MatchName(uint i, cstr str) const -{ - cstr name = Elems[i].Name; - if (*name && nPrefixLength) - { - if (azstricmp(name + nPrefixLength, str) == 0) - { - return true; - } - } - if (*name == '_') - { - name++; - } - return azstricmp(name, str) == 0; -} - -cstr CEnumDef::ToName(TValue value) const -{ - // Find matching element. - if (bRegular) - { - TValue index = value - MinValue; - if (index >= 0 && index < Elems.size()) - { - return Name((uint)index); - } - } - else - { - for (int i = 0; i < Elems.size(); i++) - { - if (Elems[i].Value == value) - { - return Name(i); - } - } - } - - // No match - return 0; -} - -LegacyDynArray* CEnumDef::SInit::s_pElems = 0; - -void CEnumDefUuid::Init(Array elems, char* enum_str) -{ - Elems = elems; - bRegular = false; - nPrefixLength = 0; - - if (enum_str) - { - // Parse enum names from str - int i = 0; - while (cstr se = ParseNextEnum(enum_str)) - { - Elems[i++].Name = se; - } - } - - // Analyse names and values. - if (!elems.empty()) - { - cstr sPrefix = ""; - for (int i = 0; i < elems.size(); i++) - { - // Find common prefix. - cstr sElem = Elems[i].Name; - if (*sElem) - { - if (!*sPrefix) - { - sPrefix = sElem; - nPrefixLength = static_cast(strlen(sPrefix)); - } - else - { - uint p = 0; - while (p < nPrefixLength && sElem[p] == sPrefix[p]) - { - p++; - } - nPrefixLength = p; - } - } - } - - // Ensure prefix is on underscore boundary. - while (nPrefixLength > 0 && sPrefix[nPrefixLength - 1] != '_') - { - nPrefixLength--; - } - } -} - -bool CEnumDefUuid::MatchName(uint i, cstr str) const -{ - cstr name = Elems[i].Name; - if (*name && nPrefixLength) - { - if (azstricmp(name + nPrefixLength, str) == 0) - { - return true; - } - } - if (*name == '_') - { - name++; - } - return azstricmp(name, str) == 0; -} - -cstr CEnumDefUuid::ToName(AZ::Uuid value) const -{ - // Find matching element. - for (int i = 0; i < Elems.size(); ++i) - { - if (Elems[i].Value == value) - { - return Elems[i].Name; - } - } - // No match - return 0; -} diff --git a/Code/Legacy/CryCommon/CryTypeInfo.h b/Code/Legacy/CryCommon/CryTypeInfo.h deleted file mode 100644 index 0bd734492a..0000000000 --- a/Code/Legacy/CryCommon/CryTypeInfo.h +++ /dev/null @@ -1,223 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Declaration of CTypeInfo and related types. - - -#ifndef CRYINCLUDE_CRYCOMMON_CRYTYPEINFO_H -#define CRYINCLUDE_CRYCOMMON_CRYTYPEINFO_H -#pragma once - -#include -#include "CryArray.h" -#include "Options.h" -#include "TypeInfo_decl.h" - -class ICrySizer; - -class CCryName; -AZStd::string ToString(CCryName const& val); -bool FromString(CCryName& val, const char* s); - -//--------------------------------------------------------------------------- -// Specify options for converting data to/from strings -struct FToString -{ - OPT_STRUCT(FToString) - OPT_VAR(bool, SkipDefault) // Omit default values on writing. - OPT_VAR(bool, NamedFields) // Add Name= text to sub-values. - OPT_VAR(bool, Sub) // Write sub-structures (internal usage). -}; - -struct FFromString -{ - OPT_STRUCT(FFromString) - OPT_VAR(bool, SkipEmpty) // Do not set values from empty strings (otherwise, set to zero). -}; - -// Specify which limits a variable has -enum ENumericLimit -{ - eLimit_Min, - eLimit_Max, - eLimit_SoftMin, - eLimit_SoftMax, - eLimit_MinIsInfinite, - eLimit_Step, -}; - -//--------------------------------------------------------------------------- -// Type info base class, and default implementation - -struct CTypeInfo -{ - cstr Name; - size_t Size; - size_t Alignment; - - CTypeInfo(cstr name, size_t size, size_t align) - : Name(name) - , Size(size) - , Alignment(align) {} - - virtual ~CTypeInfo() - {} - - // - // Inheritance. - // - virtual bool IsType(CTypeInfo const& Info) const - { return this == &Info; } - - template - bool IsType() const - { return IsType(TypeInfo((T*)0)); } - - // - // Data access interface. - // - - // Convert value to string. - virtual AZStd::string ToString([[maybe_unused]] const void* data, [[maybe_unused]] FToString flags = 0, [[maybe_unused]] const void* def_data = 0) const - { return ""; } - - // Write value from string, return success. - virtual bool FromString([[maybe_unused]] void* data, [[maybe_unused]] cstr str, [[maybe_unused]] FFromString flags = 0) const - { return false; } - - // Read and write values of a specified type. - virtual bool ToValue([[maybe_unused]] const void* data, [[maybe_unused]] void* value, [[maybe_unused]] const CTypeInfo& typeVal) const - { return false; } - - virtual bool FromValue([[maybe_unused]] void* data, [[maybe_unused]] const void* value, [[maybe_unused]] const CTypeInfo& typeVal) const - { return false; } - - // Templated interface to above functions. - template - bool ToValue(const void* data, T& value) const - { return ToValue(data, &value, TypeInfo(&value)); } - template - bool FromValue(void* data, const T& value) const - { return FromValue(data, &value, TypeInfo(&value)); } - - virtual bool ValueEqual(const void* data, const void* def_data = 0) const - { return ToString(data, FToString().SkipDefault(1), def_data).empty(); } - - virtual bool GetLimit([[maybe_unused]] ENumericLimit eLimit, [[maybe_unused]] float& fVal) const - { return false; } - - // Convert numeric formats from big-to-little endian or vice versa. - // Swaps bitfield order as well (which may be separate from integer bit order). - virtual void SwapEndian(void* pData, size_t nCount, bool bWriting) const; - - // Track memory used by any internal structures (not counting object size itself). - // Add to CrySizer as needed, return remaining mem count. - virtual void GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer, [[maybe_unused]] const void* data) const - {} - - // - // Structure interface. - // - struct CVarInfo - { - const CTypeInfo& Type; // Info for type of variable. - cstr Name; // Display name of variable. - cstr Attrs; // Var-specific attribute string, of form: - // "" for each attr, concatenated. - // Remaining text considered as comment. - uint32 Offset; // Offset in bytes from struct start. - uint32 ArrayDim : 22, // Number of array elements, or bits if bitfield. - bBaseClass : 1, // Sub-var is actually a base class. - bBitfield : 1, // Var is a bitfield, ArrayDim is number of bits. - BitOffset : 6, // Additional offset in bits for bitfields. - // Bit offset is computed in declaration order; on some platforms, it goes high to low. - BitWordWidth : 2; // Width of bitfield = 1 byte << BitWordWidth - - - // Accessors. - cstr GetName() const { return Name; } - size_t GetDim() const { return bBitfield ? 1 : ArrayDim; } - size_t GetSize() const { return bBitfield ? (size_t)1 << BitWordWidth : Type.Size* ArrayDim; } - size_t GetElemSize() const { return bBitfield ? (size_t)1 << BitWordWidth : Type.Size; } - size_t GetBits() const { return bBitfield ? ArrayDim : ArrayDim* Type.Size* 8; } - bool IsBaseClass() const { return bBaseClass; } - bool IsInline() const - { - if (bBaseClass && Offset == 0) - { - const CVarInfo* pFirst = Type.NextSubVar(0); - if (pFirst) - { - return pFirst->IsBaseClass(); - } - } - return false; - } - - bool GetLimit(ENumericLimit eLimit, float& fVal) const - { - return Type.GetLimit(eLimit, fVal); - } - - // Useful functions. - void* GetAddress(void* base) const - { - return (char*)base + Offset; - } - const void* GetAddress(const void* base) const - { - return (const char*)base + Offset; - } - bool FromString(void* base, cstr str, FFromString flags = 0) const - { - assert(!bBitfield); - return Type.FromString((char*)base + Offset, str, flags); - } - AZStd::string ToString(const void* base, FToString flags = 0, const void* def_base = 0) const - { - assert(!bBitfield); - return Type.ToString((const char*)base + Offset, flags, def_base ? (const char*)def_base + Offset : 0); - } - - // Attribute access. Not fast. - bool GetAttr(cstr name) const; - bool GetAttr(cstr name, float& val) const; - bool GetAttr(cstr name, AZStd::string& val) const; - - // Comment, excluding attributes. - cstr GetComment() const; - }; - - // Structure var iteration. - virtual CVarInfo const* NextSubVar([[maybe_unused]] CVarInfo const* pPrev, [[maybe_unused]] bool bRecurseBase = false) const - { return 0; } - inline bool HasSubVars() const - { return NextSubVar(0) != 0; } - #define AllSubVars(pVar, Info) \ - (const CTypeInfo::CVarInfo* pVar = (Info).NextSubVar(0); pVar; pVar = (Info).NextSubVar(pVar)) - - // Named var search. - virtual const CVarInfo* FindSubVar([[maybe_unused]] cstr name) const - { return 0; } - - virtual CTypeInfo const* const* NextTemplateType([[maybe_unused]] CTypeInfo const* const* pPrev) const - { return 0; } - inline bool IsTemplate() const - { return NextTemplateType(0) != 0; } - - // - // String enumeration interface. - // Return sequential strings in enumeration, then 0 when out of range. - // String/int conversion is handled by ToString/FromString. - // - virtual cstr EnumElem([[maybe_unused]] uint nIndex) const { return 0; } -}; - - -#endif // CRYINCLUDE_CRYCOMMON_CRYTYPEINFO_H diff --git a/Code/Legacy/CryCommon/CryVersion.h b/Code/Legacy/CryCommon/CryVersion.h index 0f84e02b6b..e6ed15408d 100644 --- a/Code/Legacy/CryCommon/CryVersion.h +++ b/Code/Legacy/CryCommon/CryVersion.h @@ -43,7 +43,7 @@ struct SFileVersion t[len] = 0; char* p; - char* next = nullptr; + [[maybe_unused]] char* next = nullptr; [[maybe_unused]] size_t strmax = sizeof(t); p = azstrtok(t, &strmax, ".", &next); if (!p) diff --git a/Code/Legacy/CryCommon/Cry_Camera.h b/Code/Legacy/CryCommon/Cry_Camera.h index 851611c8a6..852467d787 100644 --- a/Code/Legacy/CryCommon/Cry_Camera.h +++ b/Code/Legacy/CryCommon/Cry_Camera.h @@ -17,8 +17,6 @@ //DOC-IGNORE-BEGIN #include #include -#include -#include //DOC-IGNORE-END ////////////////////////////////////////////////////////////////////// @@ -547,7 +545,7 @@ public: ILINE void SetMatrixNoUpdate(const Matrix34& mat) { assert(mat.IsOrthonormal()); m_Matrix = mat; }; ILINE const Matrix34& GetMatrix() const { return m_Matrix; }; ILINE Vec3 GetViewdir() const { return m_Matrix.GetColumn1(); }; - + ILINE void SetEntityRotation(const Quat& entityRot) { m_entityRot = entityRot; } ILINE Quat GetEntityRotation() { return m_entityRot; } ILINE void SetEntityPos(const Vec3& entityPos) { m_entityPos = entityPos; } @@ -557,9 +555,6 @@ public: ILINE Vec3 GetPosition() const { return m_Matrix.GetTranslation(); } ILINE void SetPosition(const Vec3& p) { m_Matrix.SetTranslation(p); UpdateFrustum(); } ILINE void SetPositionNoUpdate(const Vec3& p) { m_Matrix.SetTranslation(p); } - ILINE bool Project(const Vec3& p, Vec3& result, Vec2i topLeft = Vec2i(0, 0), Vec2i widthHeight = Vec2i(0, 0)) const; - ILINE bool Unproject(const Vec3& viewportPos, Vec3& result, Vec2i topLeft = Vec2i(0, 0), Vec2i widthHeight = Vec2i(0, 0)) const; - ILINE void CalcScreenBounds(int* vOut, const AABB* pAABB, int nWidth, int nHeight) const; ILINE Vec3 GetUp() const { return m_Matrix.GetColumn2(); } //------------------------------------------------------------ @@ -630,11 +625,6 @@ public: uint8 IsAABBVisible_EH(const ::AABB& aabb, bool* pAllInside) const; uint8 IsAABBVisible_EH(const ::AABB& aabb) const; - // Multi-camera - bool IsAABBVisible_EHM(const ::AABB& aabb, bool* pAllInside) const; - bool IsAABBVisible_EM(const ::AABB& aabb) const; - bool IsAABBVisible_FM(const ::AABB& aabb) const; - //OBB-frustum test bool IsOBBVisible_F(const Vec3& wpos, const OBB& obb) const; uint8 IsOBBVisible_FH(const Vec3& wpos, const OBB& obb) const; @@ -652,7 +642,6 @@ public: SetFrustum(640, 480); m_zrangeMin = 0.0f; m_zrangeMax = 1.0f; - m_pMultiCamera = NULL; m_pPortal = NULL; m_JustActivated = 0; m_nPosX = m_nPosY = m_nSizeX = m_nSizeY = 0; @@ -708,8 +697,8 @@ private: Vec3 m_edge_flt; // this is the left/upper vertex of the far-clip-plane f32 m_asymLeft, m_asymRight, m_asymBottom, m_asymTop; // Shift to create asymmetric frustum (only used for GPU culling of tessellated objects) - f32 m_asymLeftProj, m_asymRightProj, m_asymBottomProj, m_asymTopProj; - f32 m_asymLeftFar, m_asymRightFar, m_asymBottomFar, m_asymTopFar; + f32 m_asymLeftProj, m_asymRightProj, m_asymBottomProj, m_asymTopProj; + f32 m_asymLeftFar, m_asymRightFar, m_asymBottomFar, m_asymTopFar; //usually we update these values every frame (they depend on m_Matrix) Vec3 m_cltp, m_crtp, m_clbp, m_crbp; //this are the 4 vertices of the projection-plane in cam-space @@ -778,7 +767,6 @@ public: uint16 x1, y1, x2, y2; }; ScissorInfo m_ScissorInfo; - class PodArray* m_pMultiCamera; // maybe used for culling instead of this camera Vec3 m_OccPosition; //Position for calculate occlusions (needed for portals rendering) inline const Vec3& GetOccPos() const { return(m_OccPosition); } @@ -894,190 +882,6 @@ ILINE Vec3 CCamera::CreateViewdir(const Ang3& ypr) return Vec3(-sz * cx, cz * cx, sx); //calculate the view-direction } -// Description -//
-//p=world space position
-//result=spreen space pos
-//retval=is visible on screen
-// 
-ILINE bool CCamera::Project(const Vec3& p, Vec3& result, Vec2i topLeft, Vec2i widthHeight) const -{ - Matrix44A mProj, mView; - Vec4 in, transformed, projected; - - mathMatrixPerspectiveFov(&mProj, GetFov(), GetProjRatio(), GetNearPlane(), GetFarPlane()); - - mathMatrixLookAt(&mView, GetPosition(), GetPosition() + GetViewdir(), GetUp()); - - int pViewport[4] = {0, 0, GetViewSurfaceX(), GetViewSurfaceZ()}; - - if (!topLeft.IsZero() || !widthHeight.IsZero()) - { - pViewport[0] = topLeft.x; - pViewport[1] = topLeft.y; - pViewport[2] = widthHeight.x; - pViewport[3] = widthHeight.y; - } - - in.x = p.x; - in.y = p.y; - in.z = p.z; - in.w = 1.0f; - mathVec4Transform((f32*)&transformed, (f32*)&mView, (f32*)&in); - - bool visible = transformed.z < 0.0f; - - mathVec4Transform((f32*)&projected, (f32*)&mProj, (f32*)&transformed); - - if (projected.w == 0.0f) - { - result = Vec3(0.f, 0.f, 0.f); - return false; - } - - projected.x /= projected.w; - projected.y /= projected.w; - projected.z /= projected.w; - - visible = visible && (fabs_tpl(projected.x) <= 1.0f) && (fabs_tpl(projected.y) <= 1.0f); - - //output coords - result.x = pViewport[0] + (1 + projected.x) * pViewport[2] / 2; - result.y = pViewport[1] + (1 - projected.y) * pViewport[3] / 2; //flip coords for y axis - result.z = projected.z; - - return visible; -} - -ILINE bool CCamera::Unproject(const Vec3& viewportPos, Vec3& result, Vec2i topLeft, Vec2i widthHeight) const -{ - Matrix44A mProj, mView; - - mathMatrixPerspectiveFov(&mProj, GetFov(), GetProjRatio(), GetNearPlane(), GetFarPlane()); - mathMatrixLookAt(&mView, GetPosition(), GetPosition() + GetViewdir(), Vec3(0, 0, 1)); - - int viewport[4] = {0, 0, GetViewSurfaceX(), GetViewSurfaceZ()}; - - if (!topLeft.IsZero() || !widthHeight.IsZero()) - { - viewport[0] = topLeft.x; - viewport[1] = topLeft.y; - viewport[2] = widthHeight.x; - viewport[3] = widthHeight.y; - } - - Vec4 vIn; - vIn.x = (viewportPos.x - viewport[0]) * 2 / viewport[2] - 1.0f; - vIn.y = (viewportPos.y - viewport[1]) * 2 / viewport[3] - 1.0f; - vIn.z = viewportPos.z; - vIn.w = 1.0; - - Matrix44A m; - const float* proj = mProj.GetData(); - const float* view = mView.GetData(); - float* mdata = m.GetData(); - for (int i = 0; i < 4; i++) - { - float ai0 = proj[i], ai1 = proj[4 + i], ai2 = proj[8 + i], ai3 = proj[12 + i]; - mdata[i] = ai0 * view[0] + ai1 * view[1] + ai2 * view[2] + ai3 * view[3]; - mdata[4 + i] = ai0 * view[4] + ai1 * view[5] + ai2 * view[6] + ai3 * view[7]; - mdata[8 + i] = ai0 * view[8] + ai1 * view[9] + ai2 * view[10] + ai3 * view[11]; - mdata[12 + i] = ai0 * view[12] + ai1 * view[13] + ai2 * view[14] + ai3 * view[15]; - } - - m.Invert(); - if (!m.IsValid()) - { - return false; - } - - Vec4 vOut = vIn * m; - if (vOut.w == 0.0) - { - return false; - } - - result = Vec3(vOut.x / vOut.w, vOut.y / vOut.w, vOut.z / vOut.w); - - return true; -} - -ILINE void CCamera::CalcScreenBounds(int* vOut, const AABB* pAABB, int nWidth, int nHeight) const -{ - Matrix44A mProj, mView, mVP; - mathMatrixPerspectiveFov(&mProj, GetFov(), GetProjRatio(), GetNearPlane(), GetFarPlane()); - mathMatrixLookAt(&mView, GetPosition(), GetPosition() + GetViewdir(), GetMatrix().GetColumn2()); - mVP = mView * mProj; - - Vec3 verts[8]; - - Vec2i topLeft = Vec2i(0, 0); - Vec2i widthHeight = Vec2i(nWidth, nHeight); - float pViewport[4] = {0.0f, 0.0f, (float)widthHeight.x, (float)widthHeight.y}; - - float x0 = 9999.9f, x1 = -9999.9f, y0 = 9999.9f, y1 = -9999.9f; - float fIntersect = 1.0f; - - Vec3 vDir = GetViewdir(); - Vec3 vPos = GetPosition(); - float d = vPos.Dot(vDir); - - verts[0] = Vec3(pAABB->min.x, pAABB->min.y, pAABB->min.z); - verts[1] = Vec3(pAABB->max.x, pAABB->min.y, pAABB->min.z); - verts[2] = Vec3(pAABB->min.x, pAABB->max.y, pAABB->min.z); - verts[3] = Vec3(pAABB->max.x, pAABB->max.y, pAABB->min.z); - verts[4] = Vec3(pAABB->min.x, pAABB->min.y, pAABB->max.z); - verts[5] = Vec3(pAABB->max.x, pAABB->min.y, pAABB->max.z); - verts[6] = Vec3(pAABB->min.x, pAABB->max.y, pAABB->max.z); - verts[7] = Vec3(pAABB->max.x, pAABB->max.y, pAABB->max.z); - - for (int i = 0; i < 8; i++) - { - float fDist = verts[i].Dot(vDir) - d; - fDist = (float)fsel(fDist, 0.0f, -fDist); - - //Project(verts[i],vertsOut[i], topLeft, widthHeight); - - Vec3 result = Vec3(0.0f, 0.0f, 0.0f); - Vec4 transformed, projected, vIn; - - vIn = Vec4(verts[i].x, verts[i].y, verts[i].z, 1.0f); - - mathVec4Transform((f32*)&projected, (f32*)&mVP, (f32*)&vIn); - - fIntersect = (float)fsel(-projected.w, 0.0f, 1.0f); - - if (!fzero(fIntersect) && !fzero(projected.w)) - { - projected.x /= projected.w; - projected.y /= projected.w; - projected.z /= projected.w; - - //output coords - result.x = pViewport[0] + (1.0f + projected.x) * pViewport[2] / 2.0f; - result.y = pViewport[1] + (1.0f - projected.y) * pViewport[3] / 2.0f; //flip coords for y axis - result.z = projected.z; - } - else - { - vOut[0] = topLeft.x; - vOut[1] = topLeft.y; - vOut[2] = widthHeight.x; - vOut[3] = widthHeight.y; - return; - } - - x0 = min(x0, result.x); - x1 = max(x1, result.x); - y0 = min(y0, result.y); - y1 = max(y1, result.y); - } - - vOut[0] = (int)max(0.0f, min(pViewport[2], x0)); - vOut[1] = (int)max(0.0f, min(pViewport[3], y0)); - vOut[2] = (int)max(0.0f, min(pViewport[2], x1)); - vOut[3] = (int)max(0.0f, min(pViewport[3], y1)); -} //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- @@ -1118,7 +922,7 @@ inline void CCamera::SetFrustum(int nWidth, int nHeight, f32 FOV, f32 nearplane, //Apply asym shift to the camera frustum - Necessary for properly culling tessellated objects in VR //These are applied in UpdateFrustum to the camera space frustum planes - //Can't apply asym shift to frustum edges here. That would only apply to the top left corner + //Can't apply asym shift to frustum edges here. That would only apply to the top left corner //rather than the whole frustum. It would also interfere with shadow map application //m_asym is at the near plane, we want it at the projection plane too @@ -1764,102 +1568,6 @@ inline uint8 CCamera::IsAABBVisible_EH(const AABB& aabb) const return AdditionalCheck(aabb); //result is either "exclusion" or "overlap" } -// Description: -// Makes culling taking into account presence of m_pMultiCamera -// If m_pMultiCamera exists - object is visible if at least one of cameras see's it -// -// return values: -// true - box visible -// true - not visible -inline bool CCamera::IsAABBVisible_EHM(const AABB& aabb, bool* pAllInside) const -{ - assert(pAllInside && *pAllInside == false); - - if (!m_pMultiCamera) // use main camera - { - return IsAABBVisible_EH(aabb, pAllInside) != CULL_EXCLUSION; - } - - bool bVisible = false; - - for (int i = 0; i < m_pMultiCamera->Count(); i++) - { - bool bAllIn = false; - - if (m_pMultiCamera->GetAt(i).IsAABBVisible_EH(aabb, &bAllIn)) - { - bVisible = true; - - // don't break here always because another camera may include bbox completely - if (bAllIn) - { - *pAllInside = true; - break; - } - } - } - - return bVisible; -} - -// Description: -// Makes culling taking into account presence of m_pMultiCamera -// If m_pMultiCamera exists - object is visible if at least one of cameras see's it -// -// return values: -// true - box visible -// true - not visible -ILINE bool CCamera::IsAABBVisible_EM(const AABB& aabb) const -{ - if (!m_pMultiCamera) // use main camera - { - return IsAABBVisible_E(aabb) != CULL_EXCLUSION; - } - - // check several parallel cameras - object is visible if at least one camera see's it - - for (int i = 0; i < m_pMultiCamera->Count(); i++) - { - if (m_pMultiCamera->GetAt(i).IsAABBVisible_E(aabb)) - { - return true; - } - } - - return false; -} - - -// Description: -// Makes culling taking into account presence of m_pMultiCamera -// If m_pMultiCamera exists - object is visible if at least one of cameras see's it -// -// return values: -// true - box visible -// true - not visible -ILINE bool CCamera::IsAABBVisible_FM(const AABB& aabb) const -{ - PrefetchLine(&aabb, sizeof(AABB)); - - if (!m_pMultiCamera) // use main camera - { - return IsAABBVisible_F(aabb) != CULL_EXCLUSION; - } - - // check several parallel cameras - object is visible if at least one camera see's it - - for (int i = 0; i < m_pMultiCamera->Count(); i++) - { - if (m_pMultiCamera->GetAt(i).IsAABBVisible_F(aabb)) - { - return true; - } - } - - return false; -} - - // Description @@ -2146,7 +1854,7 @@ inline uint8 CCamera::IsOBBVisible_EH(const Vec3& wpos, const OBB& obb, f32 usca //--- ADDITIONAL-TEST --- //------------------------------------------------------------------------------ -extern _MS_ALIGN(64) uint32 BoxSides[]; +alignas(64) extern uint32 BoxSides[]; // Description: // A box can easily straddle one of the view-frustum planes far diff --git a/Code/Legacy/CryCommon/Cry_Color.h b/Code/Legacy/CryCommon/Cry_Color.h index abb79c6662..4f00f0c373 100644 --- a/Code/Legacy/CryCommon/Cry_Color.h +++ b/Code/Legacy/CryCommon/Cry_Color.h @@ -14,9 +14,9 @@ #define CRYINCLUDE_CRYCOMMON_CRY_COLOR_H #pragma once -#include #include #include +#include "Cry_Math.h" ILINE float FClamp(float X, float Min, float Max) { @@ -362,8 +362,6 @@ struct Color_tpl AZStd::array primitiveArray = { { r, g, b, a } }; return primitiveArray; } - - AUTO_STRUCT_INFO }; diff --git a/Code/Legacy/CryCommon/Cry_Geo.h b/Code/Legacy/CryCommon/Cry_Geo.h index 0df130f1e6..95213c62dc 100644 --- a/Code/Legacy/CryCommon/Cry_Geo.h +++ b/Code/Legacy/CryCommon/Cry_Geo.h @@ -54,7 +54,6 @@ enum EGeomForm MaxGeomForm }; -AUTO_TYPE_INFO(EGeomForm) enum EGeomType { @@ -63,7 +62,6 @@ enum EGeomType GeomType_Physics, GeomType_Render, }; -AUTO_TYPE_INFO(EGeomType) struct PosNorm { @@ -104,7 +102,6 @@ struct RectF , h(1) { } - AUTO_STRUCT_INFO }; struct RectI @@ -705,8 +702,6 @@ struct AABB result.Add(c.mTip); return result; } - - AUTO_STRUCT_INFO }; ILINE bool IsEquivalent(const AABB& a, const AABB& b, float epsilon = VEC_EPSILON) @@ -1067,20 +1062,6 @@ public: } }; -////////////////////////////////////////////////////////////////////////// -#include "Cry_GeoDistance.h" -#include "Cry_GeoOverlap.h" -#include "Cry_GeoIntersect.h" - - - - - - - - - - ///////////////////////////////////////////////////////////////////////// //this is some special engine stuff, should be moved to a better location ///////////////////////////////////////////////////////////////////////// diff --git a/Code/Legacy/CryCommon/Cry_GeoDistance.h b/Code/Legacy/CryCommon/Cry_GeoDistance.h index c85845466c..46a863d68c 100644 --- a/Code/Legacy/CryCommon/Cry_GeoDistance.h +++ b/Code/Legacy/CryCommon/Cry_GeoDistance.h @@ -8,605 +8,16 @@ // Description : Common distance-computations - - -#ifndef CRYINCLUDE_CRYCOMMON_CRY_GEODISTANCE_H -#define CRYINCLUDE_CRYCOMMON_CRY_GEODISTANCE_H #pragma once #include -#include #include #ifdef max #undef max #endif -namespace Intersect -{ - bool Lineseg_Triangle(const Lineseg& lineseg, const Vec3& v0, const Vec3& v1, const Vec3& v2, Vec3& output, float* outT); -} - namespace Distance { - template - ILINE F Point_Point(const Vec3_tpl& p1, const Vec3_tpl& p2) - { - return sqrt_tpl(square(p1.x - p2.x) + square(p1.y - p2.y) + square(p1.z - p2.z)); - } - - template - ILINE F Point_PointSq(const Vec3_tpl& p1, const Vec3_tpl& p2) - { - return square(p1.x - p2.x) + square(p1.y - p2.y) + square(p1.z - p2.z); - } - - template - ILINE F Point_Point2DSq(const Vec3_tpl& p1, const Vec3_tpl& p2) - { - return square(p1.x - p2.x) + square(p1.y - p2.y); - } - - template - ILINE F Point_Point2D(const Vec3_tpl& p1, const Vec3_tpl& p2) - { - return sqrt_tpl(square(p1.x - p2.x) + square(p1.y - p2.y)); - } - - // Description: - // Distance: Origin_Triangle2D. - // Calculate the closest distance of a triangle in XY-plane to the coordinate origin. - // it is assumed that the z-values of the triangle are all in the same plane. - // Return Value: - // The 3d-position of the closest point on the triangle. - // Example: - // Vec3 result = Distance::Origin_Triangle2D( triangle ); - template - ILINE Vec3_tpl Origin_Triangle2D(const Triangle_tpl& t) - { - Vec3_tpl a = t.v0; - Vec3_tpl b = t.v1; - Vec3_tpl c = t.v2; - //check if (0,0,0) is inside or in fron of any triangle sides. - uint32 flag = ((a.x * (a.y - b.y) - a.y * (a.x - b.x)) < 0) | (((b.x * (b.y - c.y) - b.y * (b.x - c.x)) < 0) << 1) | (((c.x * (c.y - a.y) - c.y * (c.x - a.x)) < 0) << 2); - switch (flag) - { - case 0: - return Vec3_tpl(0, 0, a.z); //center is inside of triangle - case 1: - if ((a | (b - a)) > 0.0f) - { - flag = 5; - } - else if ((b | (a - b)) > 0.0f) - { - flag = 3; - } - break; - case 2: - if ((b | (c - b)) > 0.0f) - { - flag = 3; - } - else if ((c | (b - c)) > 0.0f) - { - flag = 6; - } - break; - case 3: - return b; //vertex B is closed - case 4: - if ((c | (a - c)) > 0.0f) - { - flag = 6; - } - else if ((a | (c - a)) > 0.0f) - { - flag = 5; - } - break; - case 5: - return a; //vertex A is closed - case 6: - return c; //vertex C is closed - } - //check again using expanded area - switch (flag) - { - case 1: - { - Vec3_tpl n = (b - a).GetNormalized(); - return n * (-a | n) + a; - } - case 2: - { - Vec3_tpl n = (c - b).GetNormalized(); - return n * (-b | n) + b; - } - case 3: - return b; - case 4: - { - Vec3_tpl n = (a - c).GetNormalized(); - return n * (-c | n) + c; - } - case 5: - return a; - case 6: - return c; - } - return Vec3_tpl(0, 0, 0); - } - - ILINE hwvec3 Origin_Triangle2D(const hwvec3& a, const hwvec3& b, const hwvec3& c) - { - const hwvec3 vZero = HWV3Zero(); - const hwvec3 aNeg = HWV3Negate(a); - const hwvec3 bNeg = HWV3Negate(b); - const hwvec3 cNeg = HWV3Negate(c); - - const hwvec3 vASubB = HWVSub(a, b); - const hwvec3 vBSubA = HWVSub(b, a); - const hwvec3 vASubC = HWVSub(a, c); - const hwvec3 vCSubA = HWVSub(c, a); - const hwvec3 vBSubC = HWVSub(b, c); - const hwvec3 vCSubB = HWVSub(c, b); - - HWV4PermuteControl(vSwapXY, HWV_PERMUTE_0Y, HWV_PERMUTE_0X, HWV_PERMUTE_0Z, HWV_PERMUTE_0W); - - const hwvec3 aPerm = HWV3PermuteWord(a, a, vSwapXY); - const hwvec3 vACombined = HWVMultiply(aPerm, vASubB); - - //Yes, this is the right way around, check the non-vectorized version below :) - const simdf vAY = HWV3SplatXToSIMDF(vACombined); - const simdf vAX = HWV3SplatYToSIMDF(vACombined); - - - const hwvec3 bPerm = HWV3PermuteWord(b, b, vSwapXY); - const hwvec3 vBCombined = HWVMultiply(bPerm, vBSubC); - - const simdf vBY = HWV3SplatXToSIMDF(vBCombined); - const simdf vBX = HWV3SplatYToSIMDF(vBCombined); - - - const hwvec3 cPerm = HWV3PermuteWord(c, c, vSwapXY); - const hwvec3 vCCombined = HWVMultiply(cPerm, vCSubA); - - const simdf vCY = HWV3SplatXToSIMDF(vCCombined); - const simdf vCX = HWV3SplatYToSIMDF(vCCombined); - - - //check if (0,0,0) is inside or in front of any triangle sides. - bool subflag0 = SIMDFLessThanB(vAX, vAY); - bool subflag1 = SIMDFLessThanB(vBX, vBY); - bool subflag2 = SIMDFLessThanB(vCX, vCY); - - uint32 flag = ((uint32)subflag0) | ((uint32)(subflag1 << 1)) | ((uint32)(subflag2 << 2)); - - switch (flag) - { - case 0: - { - HWV4PermuteControl(selectz, HWV_PERMUTE_1X, HWV_PERMUTE_1Y, HWV_PERMUTE_0Z, HWV_PERMUTE_1W); - return HWV3PermuteWord(a, vZero, selectz); //center is inside of triangle - } - case 1: - { - if (SIMDFLessThanB(HWV3AsSIMDF(vZero), HWV3Dot(a, vBSubA))) - { - flag = 5; - } - else if (SIMDFLessThanB(HWV3AsSIMDF(vZero), HWV3Dot(b, vASubB))) - { - flag = 3; - } - break; - } - case 2: - { - if (SIMDFLessThanB(HWV3AsSIMDF(vZero), HWV3Dot(b, vCSubB))) - { - flag = 3; - } - else if (SIMDFLessThanB(HWV3AsSIMDF(vZero), HWV3Dot(c, vBSubC))) - { - flag = 6; - } - break; - } - case 3: - return b; //vertex B is closed - case 4: - { - if (SIMDFLessThanB(HWV3AsSIMDF(vZero), HWV3Dot(c, vASubC))) - { - flag = 6; - } - else if (SIMDFLessThanB(HWV3AsSIMDF(vZero), HWV3Dot(a, vCSubA))) - { - flag = 5; - } - break; - } - case 5: - return a; //vertex A is closed - case 6: - return c; //vertex C is closed - } - - switch (flag) - { - case 1: - { - //hwvec3 n = HWV3Normalize(vBSubA); - simdf nLengthSq = HWV3Dot(vBSubA, vBSubA); - simdf invLengthSq = SIMDFReciprocal(nLengthSq); - return HWVMultiplySIMDFAdd(vBSubA, SIMDFMult(HWV3Dot(aNeg, vBSubA), invLengthSq), a); - } - case 2: - { - simdf nLengthSq = HWV3Dot(vCSubB, vCSubB); - simdf invLengthSq = SIMDFReciprocal(nLengthSq); - return HWVMultiplySIMDFAdd(vCSubB, SIMDFMult(HWV3Dot(bNeg, vCSubB), invLengthSq), b); - } - case 3: - return b; - case 4: - { - simdf nLengthSq = HWV3Dot(vASubC, vASubC); - simdf invLengthSq = SIMDFReciprocal(nLengthSq); - return HWVMultiplySIMDFAdd(vASubC, SIMDFMult(HWV3Dot(cNeg, vASubC), invLengthSq), c); - } - case 5: - return a; - case 6: - return c; - } - - // switch (flag) { - // case 1: { Vec3_tpl n=(b-a).GetNormalized(); return n*(-a|n)+a; } - // case 2: { Vec3_tpl n=(c-b).GetNormalized(); return n*(-b|n)+b; } - // case 3: return b; - // case 4: { Vec3_tpl n=(a-c).GetNormalized(); return n*(-c|n)+c; } - // case 5: return a; - // case 6: return c; - // } - - return vZero; - } - - - // Description: - // Distance: Point_Triangle. - // Calculate the closest distance of a point to a triangle in 3d-space. - // Return value: - // The squared distance. - // Example: - // float result = Distance::Point_Triangle( pos, triangle ); - template - ILINE F Point_TriangleSq(const Vec3_tpl& p, const Triangle_tpl& t) - { - //translate triangle into origin - Vec3_tpl a = t.v0 - p; - Vec3_tpl b = t.v1 - p; - Vec3_tpl c = t.v2 - p; - //transform triangle into XY-plane to simplify the test - Matrix33_tpl r33 = Matrix33_tpl::CreateRotationV0V1(((b - a) % (a - c)).GetNormalized(), Vec3(0, 0, 1)); - Vec3_tpl h = Origin_Triangle2D(Triangle_tpl(r33 * a, r33 * b, r33 * c)); - return (h | h); //return squared distance - } - - inline simdf Point_TriangleByPointsSq(const hwvec3& p, const hwvec3& t0, const hwvec3& t1, const hwvec3& t2) - { - //translate triangle into origin - - HWV3Constant(kUp, 0.0f, 0.0f, 1.0f); - - const hwvec3 a = HWVSub(t0, p); - const hwvec3 b = HWVSub(t1, p); - const hwvec3 c = HWVSub(t2, p); - - const hwvec3 baDiff = HWVSub(b, a); - const hwvec3 acDiff = HWVSub(a, c); - - const hwvec3 cross = HWVCross(baDiff, acDiff); - - const hwvec3 crossNormalized = HWV3Normalize(cross); - - hwmtx33 r33 = HWMtx33CreateRotationV0V1(crossNormalized, kUp); - - hwmtx33 r33opt = HWMtx33GetOptimized(r33); - - //transform triangle into XY-plane to simplify the test - const hwvec3 aRot = HWMtx33RotateVecOpt(r33opt, a); - const hwvec3 bRot = HWMtx33RotateVecOpt(r33opt, b); - const hwvec3 cRot = HWMtx33RotateVecOpt(r33opt, c); - - hwvec3 h = Origin_Triangle2D(aRot, bRot, cRot); - - return HWV3Dot(h, h); - } - - template - ILINE F Point_Triangle(const Vec3_tpl& p, const Triangle_tpl& t) - { - return sqrt_tpl(Point_TriangleSq(p, t)); - } - - // Description: - // Distance: Point_Triangle. - // Calculate the closest distance of a point to a triangle in 3d-space. - // The function returns the squared distance and the 3d-position of the - // closest point on the triangle. - // Example: - // float result = Distance::Point_Triangle( pos, triangle, output ); - template - ILINE F Point_TriangleSq(const Vec3_tpl& p, const Triangle_tpl& t, Vec3_tpl& output) - { - //translate triangle into origin - Vec3_tpl a = t.v0 - p; - Vec3_tpl b = t.v1 - p; - Vec3_tpl c = t.v2 - p; - //transform triangle into XY-plane to simplify the test - Matrix33_tpl r33 = Matrix33_tpl::CreateRotationV0V1(((b - a) % (a - c)).GetNormalized(), Vec3_tpl(0, 0, 1)); - Vec3_tpl h = Origin_Triangle2D(Triangle_tpl(r33 * a, r33 * b, r33 * c)); - output = h * r33 + p; - return (h | h); //return squared distance - } - - template - ILINE F Point_Triangle(const Vec3_tpl& p, const Triangle_tpl& t, Vec3_tpl& output) - { - return sqrt_tpl(Point_TriangleSq(p, t, output)); - } - - // Description: - // Squared distance from point to triangle, optionally returning the triangle position in - // parameteric form. - template - ILINE F Point_TriangleSq(const Vec3_tpl& point, const Triangle_tpl& triangle, F* pT0, F* pT1) - { - Vec3 diff = triangle.v0 - point; - const Vec3 edge0 = triangle.v1 - triangle.v0; - const Vec3 edge1 = triangle.v2 - triangle.v0; - F fA00 = edge0.GetLengthSquared(); - F fA01 = edge0.Dot(edge1); - F fA11 = edge1.GetLengthSquared(); - F fB0 = diff.Dot(edge0); - F fB1 = diff.Dot(edge1); - F fC = diff.GetLengthSquared(); - F fDet = abs(fA00 * fA11 - fA01 * fA01); - F fS = fA01 * fB1 - fA11 * fB0; - F fT = fA01 * fB0 - fA00 * fB1; - F fSqrDist; - - if (fS + fT <= fDet) - { - if (fS < (F)0.0) - { - if (fT < (F)0.0) // region 4 - { - if (fB0 < (F)0.0) - { - fT = (F)0.0; - if (-fB0 >= fA00) - { - fS = (F)1.0; - fSqrDist = fA00 + ((F)2.0) * fB0 + fC; - } - else - { - fS = -fB0 / fA00; - fSqrDist = fB0 * fS + fC; - } - } - else - { - fS = (F)0.0; - if (fB1 >= (F)0.0) - { - fT = (F)0.0; - fSqrDist = fC; - } - else if (-fB1 >= fA11) - { - fT = (F)1.0; - fSqrDist = fA11 + ((F)2.0) * fB1 + fC; - } - else - { - fT = -fB1 / fA11; - fSqrDist = fB1 * fT + fC; - } - } - } - else // region 3 - { - fS = (F)0.0; - if (fB1 >= (F)0.0) - { - fT = (F)0.0; - fSqrDist = fC; - } - else if (-fB1 >= fA11) - { - fT = (F)1.0; - fSqrDist = fA11 + ((F)2.0) * fB1 + fC; - } - else - { - fT = -fB1 / fA11; - fSqrDist = fB1 * fT + fC; - } - } - } - else if (fT < (F)0.0) // region 5 - { - fT = (F)0.0; - if (fB0 >= (F)0.0) - { - fS = (F)0.0; - fSqrDist = fC; - } - else if (-fB0 >= fA00) - { - fS = (F)1.0; - fSqrDist = fA00 + ((F)2.0) * fB0 + fC; - } - else - { - fS = -fB0 / fA00; - fSqrDist = fB0 * fS + fC; - } - } - else // region 0 - { - // minimum at interior point - F fInvDet = ((F)1.0) / fDet; - fS *= fInvDet; - fT *= fInvDet; - fSqrDist = fS * (fA00 * fS + fA01 * fT + ((F)2.0) * fB0) + - fT * (fA01 * fS + fA11 * fT + ((F)2.0) * fB1) + fC; - } - } - else - { - F fTmp0, fTmp1, fNumer, fDenom; - - if (fS < (F)0.0) // region 2 - { - fTmp0 = fA01 + fB0; - fTmp1 = fA11 + fB1; - if (fTmp1 > fTmp0) - { - fNumer = fTmp1 - fTmp0; - fDenom = fA00 - 2.0f * fA01 + fA11; - if (fNumer >= fDenom) - { - fS = (F)1.0; - fT = (F)0.0; - fSqrDist = fA00 + ((F)2.0) * fB0 + fC; - } - else - { - fS = fNumer / fDenom; - fT = (F)1.0 - fS; - fSqrDist = fS * (fA00 * fS + fA01 * fT + 2.0f * fB0) + - fT * (fA01 * fS + fA11 * fT + ((F)2.0) * fB1) + fC; - } - } - else - { - fS = (F)0.0; - if (fTmp1 <= (F)0.0) - { - fT = (F)1.0; - fSqrDist = fA11 + ((F)2.0) * fB1 + fC; - } - else if (fB1 >= (F)0.0) - { - fT = (F)0.0; - fSqrDist = fC; - } - else - { - fT = -fB1 / fA11; - fSqrDist = fB1 * fT + fC; - } - } - } - else if (fT < (F)0.0) // region 6 - { - fTmp0 = fA01 + fB1; - fTmp1 = fA00 + fB0; - if (fTmp1 > fTmp0) - { - fNumer = fTmp1 - fTmp0; - fDenom = fA00 - ((F)2.0) * fA01 + fA11; - if (fNumer >= fDenom) - { - fT = (F)1.0; - fS = (F)0.0; - fSqrDist = fA11 + ((F)2.0) * fB1 + fC; - } - else - { - fT = fNumer / fDenom; - fS = (F)1.0 - fT; - fSqrDist = fS * (fA00 * fS + fA01 * fT + ((F)2.0) * fB0) + - fT * (fA01 * fS + fA11 * fT + ((F)2.0) * fB1) + fC; - } - } - else - { - fT = (F)0.0; - if (fTmp1 <= (F)0.0) - { - fS = (F)1.0; - fSqrDist = fA00 + ((F)2.0) * fB0 + fC; - } - else if (fB0 >= (F)0.0) - { - fS = (F)0.0; - fSqrDist = fC; - } - else - { - fS = -fB0 / fA00; - fSqrDist = fB0 * fS + fC; - } - } - } - else // region 1 - { - fNumer = fA11 + fB1 - fA01 - fB0; - if (fNumer <= (F)0.0) - { - fS = (F)0.0; - fT = (F)1.0; - fSqrDist = fA11 + ((F)2.0) * fB1 + fC; - } - else - { - fDenom = fA00 - 2.0f * fA01 + fA11; - if (fNumer >= fDenom) - { - fS = (F)1.0; - fT = (F)0.0; - fSqrDist = fA00 + ((F)2.0) * fB0 + fC; - } - else - { - fS = fNumer / fDenom; - fT = (F)1.0 - fS; - fSqrDist = fS * (fA00 * fS + fA01 * fT + ((F)2.0) * fB0) + - fT * (fA01 * fS + fA11 * fT + ((F)2.0) * fB1) + fC; - } - } - } - } - - if (pT0) - { - *pT0 = fS; - } - - if (pT1) - { - *pT1 = fT; - } - - return abs(fSqrDist); - } - - // Description: - // Distance from point to triangle, optionally returning the triangle position in - // parameteric form. - template - ILINE F Point_Triangle(const Vec3_tpl& point, const Triangle_tpl& triangle, F* pT0, F* pT1) - { - return sqrt_tpl(Point_TriangleSq(point, triangle, pT0, pT1)); - } - //---------------------------------------------------------------------------------- /// Returns squared distance from a point to a line segment and also the "t value" (from 0 to 1) of the /// closest point on the line segment @@ -648,264 +59,6 @@ namespace Distance { return sqrt_tpl(Point_LinesegSq(p, lineseg, fT)); } - - //---------------------------------------------------------------------------------- - /// Returns squared distance from a point to a line segment, ignoring the z coordinates - //---------------------------------------------------------------------------------- - template - ILINE F Point_Lineseg2DSq(const Vec3_tpl& p, const Lineseg& lineseg) - { - F dspx = p.x - lineseg.start.x, dspy = p.y - lineseg.start.y; - F dsex = lineseg.end.x - lineseg.start.x, dsey = lineseg.end.y - lineseg.start.y; - - F denom = (dsex * dsex + dsey * dsey); - F t; - if (denom > 1e-7) - { - t = (F)(dspx * dsex + dspy * dsey) / denom; - t = clamp_tpl(t, 0.0f, 1.0f); - } - else - { - t = 0; - } - - F dx = dsex * t - dspx; - F dy = dsey * t - dspy; - - return dx * dx + dy * dy; - } - - //---------------------------------------------------------------------------------- - /// Returns squared distance from a point to a line segment and also the "t value" (from 0 to 1) of the - /// closest point on the line segment, ignoring the z coordinates - //---------------------------------------------------------------------------------- - template - ILINE F Point_Lineseg2DSq(Vec3_tpl p, Lineseg lineseg, F& fT) - { - p.z = 0.0f; - lineseg.start.z = 0.0f; - lineseg.end.z = 0.0f; - return Point_LinesegSq(p, lineseg, fT); - } - - /// Returns distance from a point to a line segment, ignoring the z coordinates - template - ILINE F Point_Lineseg2D(const Vec3_tpl& p, const Lineseg& lineseg, F& fT) - { - return sqrt_tpl(Point_Lineseg2DSq(p, lineseg, fT)); - } - - /// Returns the squared distance from a point to a line as defined by two points (for accuracy - /// in some situations), and also the closest position on the line - template - ILINE F Point_LineSq(const Vec3_tpl& vPoint, - const Vec3_tpl& vLineStart, const Vec3_tpl& vLineEnd, Vec3_tpl& linePt) - { - Vec3_tpl dir; - Vec3_tpl pointVector; - - if ((vPoint - vLineStart).GetLengthSquared() > (vPoint - vLineEnd).GetLengthSquared()) - { - dir = vLineStart - vLineEnd; - pointVector = vPoint - vLineEnd; - linePt = vLineEnd; - } - else - { - dir = vLineEnd - vLineStart; - pointVector = vPoint - vLineStart; - linePt = vLineStart; - } - - F dirLen2 = dir.GetLengthSquared(); - if (dirLen2 <= 0.0f) - { - return pointVector.GetLengthSquared(); - } - dir /= sqrt_tpl(dirLen2); - - F t0 = pointVector.Dot(dir); - linePt += t0 * dir; - return (vPoint - linePt).GetLengthSquared(); - } - - /// Returns the distance from a point to a line as defined by two points (for accuracy - /// in some situations) - template - ILINE F Point_Line(const Vec3_tpl& vPoint, - const Vec3_tpl& vLineStart, const Vec3_tpl& vLineEnd, Vec3_tpl& linePt) - { - return sqrt_tpl(Point_LineSq(vPoint, vLineStart, vLineEnd, linePt)); - } - - /// In 2D. The returned linePt will have 0 z value - template - ILINE F Point_Line2DSq(Vec3_tpl vPoint, - Vec3_tpl vLineStart, Vec3_tpl vLineEnd, Vec3_tpl& linePt) - { - vPoint.z = 0.0f; - vLineStart.z = 0.0f; - vLineEnd.z = 0.0f; - return Point_LineSq(vPoint, vLineStart, vLineEnd, linePt); - } - - /// In 2D. The returned linePt will have 0 z value - template - ILINE F Point_Line2D(const Vec3_tpl& vPoint, - const Vec3_tpl& vLineStart, const Vec3_tpl& vLineEnd, Vec3_tpl& linePt) - { - return sqrt_tpl(Point_Line2DSq(vPoint, vLineStart, vLineEnd, linePt)); - } - - - /// Returns squared distance from a point to a polygon _edge_, together with the closest point on - /// the edge of the polygon. Can use the same point in/out - template - inline F Point_Polygon2DSq(const Vec3_tpl p, const VecContainer& polygon, Vec3_tpl& polyPos, Vec3_tpl* pNormal = NULL) - { - typename VecContainer::const_iterator li = polygon.begin(); - typename VecContainer::const_iterator liend = polygon.end(); - polyPos.x = polyPos.y = polyPos.z = 0.f; - float bestDist = std::numeric_limits::max(); - for (; li != liend; ++li) - { - typename VecContainer::const_iterator linext = li; - ++linext; - if (linext == liend) - { - linext = polygon.begin(); - } - const Vec3_tpl& l0 = *li; - const Vec3_tpl& l1 = *linext; - - float f; - float thisDist = Distance::Point_Lineseg2DSq(p, Lineseg(l0, l1), f); - if (thisDist < bestDist) - { - bestDist = thisDist; - polyPos = l0 + f * (l1 - l0); - if (pNormal) - { - Vec3_tpl vPolyseg = l1 - l0; - Vec3_tpl vIntSeg = (polyPos - p); - pNormal->x = vPolyseg.y; - pNormal->y = -vPolyseg.x; - pNormal->z = 0; - pNormal->NormalizeSafe(); - // returns the normal towards the start point of the intersecting segment - if ((vIntSeg.Dot(*pNormal)) > 0) - { - pNormal->x = -pNormal->x; - pNormal->y = -pNormal->y; - } - } - } - } - return bestDist; - } - - //---------------------------------------------------------------------------------- - /// Calculate squared distance between two line segments - //---------------------------------------------------------------------------------- - template - ILINE F Lineseg_Lineseg2DSq(const Lineseg& seg0, const Lineseg& seg1) - { - const F Epsilon = (F)0.0000001; - - Vec3_tpl delta = seg1.start - seg0.start; - - Vec3_tpl dir0 = seg0.end - seg0.start; - Vec3_tpl dir1 = seg1.end - seg1.start; - - F det = dir0.x * dir1.y - dir0.y * dir1.x; - F det0 = delta.x * dir1.y - delta.y * dir1.x; - F det1 = delta.x * dir0.y - delta.y * dir0.x; - - F absDet = fabs_tpl(det); - - if (absDet >= Epsilon) - { - F invDet = (F)1.0 / det; - - F a = det0 * invDet; - F b = det1 * invDet; - - if ((a <= (F)1.0) && (a >= (F)0.0) && (b <= (F)1.0) && (b >= (F)0.0)) - { - return (F)0.0; - } - } - - return min(Distance::Point_Lineseg2DSq(seg0.start, seg1), min(Distance::Point_Lineseg2DSq(seg0.end, seg1), - min(Distance::Point_Lineseg2DSq(seg1.start, seg0), Distance::Point_Lineseg2DSq(seg1.end, seg0)))); - } - - /// Returns squared distance from a lineseg to a polygon, together with the closest point on - /// the edge of the polygon. Can use the same point in/out - template - inline float Lineseg_Polygon2DSq(const Lineseg& line, const VecContainer& polygon) - { - typename VecContainer::const_iterator li = polygon.begin(); - typename VecContainer::const_iterator liend = polygon.end(); - - float bestDistSq = std::numeric_limits::max(); - for (; li != liend; ++li) - { - typename VecContainer::const_iterator linext = li; - ++linext; - if (linext == liend) - { - linext = polygon.begin(); - } - - float thisDistSq = Distance::Lineseg_Lineseg2DSq(line, Lineseg(*li, *linext)); - if (thisDistSq < bestDistSq) - { - bestDistSq = thisDistSq; - } - } - - return bestDistSq; - } - - /// Returns distance from a point to a polygon _edge_, together with the closest point on - /// the edge of the polygon - template - inline F Point_Polygon2D(const Vec3_tpl p, const VecContainer& polygon, Vec3_tpl& polyPos, Vec3_tpl* pNormal = NULL) - { - return sqrt_tpl(Point_Polygon2DSq(p, polygon, polyPos, pNormal)); - } - - - //! \brief Get the distance squared from a point to an OBB. - //! \param point Vec3 indicating the point to test - //! \param obb OBB indicating the Obb to test - //! \return float Closest distance squared from the point to the obb. - template - AZ_INLINE F Point_OBBSq(const Vec3_tpl& point, const OBB& obb) - { - F distanceSquared = 0; - const Vec3 v = point - obb.c; // box center to point - for (int i = 0; i < 3; ++i) - { - F d = v.Dot(obb.m33.GetColumn(i)); - F ex = 0; - F halfLength = obb.h[i]; - if (d < -halfLength) - { - ex = d + halfLength; - } - else if (d > halfLength) - { - ex = d - halfLength; - } - distanceSquared += sqr(ex); - } - - return distanceSquared; - } - //! \brief Get the distance squared from a Point to a Cylinder. //! \param point AZ::Vector3 The point to test distance against the cylinder //! \param cylinderAxisEndA AZ::Vector3 One end of the cylinder axis (centered in the circle) @@ -917,7 +70,7 @@ namespace Distance { const AZ::Vector3& cylinderAxisEndA, const AZ::Vector3& cylinderAxisEndB, float radius - ) + ) { // Use the cylinder axis' center point to determine distance by // splitting into Voronoi regions and using symmetry. @@ -972,723 +125,4 @@ namespace Distance { return distanceSquared; } - //---------------------------------------------------------------------------------- - // Distance: Point_AABB - //---------------------------------------------------------------------------------- - // Calculate the closest distance of a point to a AABB in 3d-space. - // The function returns the squared distance. - // optionally the closest point on the hull is calculated - // - // Example: - // float result = Distance::Point_AABBSq( pos, aabb ); - //---------------------------------------------------------------------------------- - template - ILINE F Point_AABBSq(const Vec3_tpl& vPoint, const AABB& aabb) - { - F fDist2 = 0; - - F min0Diff = (F)aabb.min[0] - (F)vPoint[0]; - fDist2 = (F)fsel(min0Diff, fDist2 + sqr(min0Diff), fDist2); - F max0Diff = (F)vPoint[0] - (F)aabb.max[0]; - fDist2 = (F)fsel(max0Diff, fDist2 + sqr(max0Diff), fDist2); - - F min1Diff = (F)aabb.min[1] - (F)vPoint[1]; - fDist2 = (F)fsel(min1Diff, fDist2 + sqr(min1Diff), fDist2); - F max1Diff = (F)vPoint[1] - (F)aabb.max[1]; - fDist2 = (F)fsel(max1Diff, fDist2 + sqr(max1Diff), fDist2); - - F min2Diff = (F)aabb.min[2] - (F)vPoint[2]; - fDist2 = (F)fsel(min2Diff, fDist2 + sqr(min2Diff), fDist2); - F max2Diff = (F)vPoint[2] - (F)aabb.max[2]; - fDist2 = (F)fsel(max2Diff, fDist2 + sqr(max2Diff), fDist2); - - return fDist2; - } - - template - ILINE F Point_AABBSq(const Vec3_tpl& vPoint, const AABB& aabb, Vec3_tpl& vClosest) - { - F fDist2 = Point_AABBSq(vPoint, aabb); - - vClosest = vPoint; - if (!iszero(fDist2)) - { - // vPoint is outside the AABB - vClosest.x = max(vClosest.x, aabb.min.x); - vClosest.x = min(vClosest.x, aabb.max.x); - vClosest.y = max(vClosest.y, aabb.min.y); - vClosest.y = min(vClosest.y, aabb.max.y); - vClosest.z = max(vClosest.z, aabb.min.z); - vClosest.z = min(vClosest.z, aabb.max.z); - } - else - { - // vPoint is inside the AABB - uint16 nSubBox = 0; - F fHalf = 2; - - F fMiddleX = ((aabb.max.x - aabb.min.x) / fHalf) + aabb.min.x; - F fMiddleY = ((aabb.max.y - aabb.min.y) / fHalf) + aabb.min.y; - F fMiddleZ = ((aabb.max.z - aabb.min.z) / fHalf) + aabb.min.z; - - if (vPoint.x < fMiddleX) - { - nSubBox |= 0x001; // Is Left - } - if (vPoint.y < fMiddleY) - { - nSubBox |= 0x010; // Is Rear - } - if (vPoint.z < fMiddleZ) - { - nSubBox |= 0x100; // Is Low - } - F fDistanceToX = 0; - F fDistanceToY = 0; - F fDistanceToZ = 0; - - F fNewX, fNewY, fNewZ; - - switch (nSubBox & 0xFFF) - { - case 0x000: - // Is Right/Front/Top - fDistanceToX = aabb.max.x - vPoint.x; - fDistanceToY = aabb.max.y - vPoint.y; - fDistanceToZ = aabb.max.z - vPoint.z; - - fNewX = aabb.max.x; - fNewY = aabb.max.y; - fNewZ = aabb.max.z; - - break; - case 0x001: - // Is Left/Front/Top - fDistanceToX = vPoint.x - aabb.min.x; - fDistanceToY = aabb.max.y - vPoint.y; - fDistanceToZ = aabb.max.z - vPoint.z; - - fNewX = aabb.min.x; - fNewY = aabb.max.y; - fNewZ = aabb.max.z; - - break; - case 0x010: - // Is Right/Rear/Top - fDistanceToX = aabb.max.x - vPoint.x; - fDistanceToY = vPoint.y - aabb.min.y; - fDistanceToZ = aabb.max.z - vPoint.z; - - fNewX = aabb.max.x; - fNewY = aabb.min.y; - fNewZ = aabb.max.z; - - break; - case 0x011: - // Is Left/Rear/Top - fDistanceToX = vPoint.x - aabb.min.x; - fDistanceToY = vPoint.y - aabb.min.y; - fDistanceToZ = aabb.max.z - vPoint.z; - - fNewX = aabb.min.x; - fNewY = aabb.min.y; - fNewZ = aabb.max.z; - - break; - case 0x100: - // Is Right/Front/Low - fDistanceToX = aabb.max.x - vPoint.x; - fDistanceToY = aabb.max.y - vPoint.y; - fDistanceToZ = vPoint.z - aabb.min.z; - - fNewX = aabb.max.x; - fNewY = aabb.max.y; - fNewZ = aabb.min.z; - - break; - case 0x101: - // Is Left/Front/Low - fDistanceToX = vPoint.x - aabb.min.x; - fDistanceToY = aabb.max.y - vPoint.y; - fDistanceToZ = vPoint.z - aabb.min.z; - - fNewX = aabb.min.x; - fNewY = aabb.max.y; - fNewZ = aabb.min.z; - - break; - case 0x110: - // Is Right/Rear/Low - fDistanceToX = aabb.max.x - vPoint.x; - fDistanceToY = vPoint.y - aabb.min.y; - fDistanceToZ = vPoint.z - aabb.min.z; - - fNewX = aabb.max.x; - fNewY = aabb.min.y; - fNewZ = aabb.min.z; - - break; - case 0x111: - // Is Left/Rear/Low - fDistanceToX = vPoint.x - aabb.min.x; - fDistanceToY = vPoint.y - aabb.min.y; - fDistanceToZ = vPoint.z - aabb.min.z; - - fNewX = aabb.min.x; - fNewY = aabb.min.y; - fNewZ = aabb.min.z; - - break; - default: - fNewX = fNewY = fNewZ = 0; - break; - } - - if (fDistanceToX < fDistanceToY && fDistanceToX < fDistanceToZ) - { - vClosest.x = fNewX; - } - - if (fDistanceToY < fDistanceToX && fDistanceToY < fDistanceToZ) - { - vClosest.y = fNewY; - } - - if (fDistanceToZ < fDistanceToX && fDistanceToZ < fDistanceToY) - { - vClosest.z = fNewZ; - } - - fDist2 = vClosest.GetSquaredDistance(vPoint); - } - return fDist2; - } - - //---------------------------------------------------------------------------------- - // Distance: Sphere_Triangle - //---------------------------------------------------------------------------------- - // Calculate the closest distance of a sphere to a triangle in 3d-space. - // The function returns the squared distance. If sphere and triangle overlaps, - // the returned distance is 0 - // - // Example: - // float result = Distance::Point_TriangleSq( pos, triangle ); - //---------------------------------------------------------------------------------- - template - ILINE F Sphere_TriangleSq(const ::Sphere& s, const Triangle_tpl& t) - { - F sqdistance = Distance::Point_TriangleSq(s.center, t) - (s.radius * s.radius); - if (sqdistance < 0) - { - sqdistance = 0; - } - return sqdistance; - } - - template - ILINE F Sphere_TriangleSq(const ::Sphere& s, const Triangle_tpl& t, Vec3_tpl& output) - { - F sqdistance = Distance::Point_TriangleSq(s.center, t, output) - (s.radius * s.radius); - if (sqdistance < 0) - { - sqdistance = 0; - } - return sqdistance; - } - - //---------------------------------------------------------------------------------- - /// Calculate squared distance between two line segments, along with the optional - /// parameters of the closest points - //---------------------------------------------------------------------------------- - template - ILINE F Lineseg_LinesegSq(const Lineseg& seg0, const Lineseg seg1, F* t0, F* t1) - { - Vec3 diff = seg0.start - seg1.start; - Vec3 delta0 = seg0.end - seg0.start; - Vec3 delta1 = seg1.end - seg1.start; - F fA00 = delta0.GetLengthSquared(); - F fA01 = -delta0.Dot(delta1); - F fA11 = delta1.GetLengthSquared(); - F fB0 = diff.Dot(delta0); - F fC = diff.GetLengthSquared(); - F fDet = abs(fA00 * fA11 - fA01 * fA01); - F fB1, fS, fT, fSqrDist, fTmp; - - if (fDet > (F) 0.0) - { - // line segments are not parallel - fB1 = -diff.Dot(delta1); - fS = fA01 * fB1 - fA11 * fB0; - fT = fA01 * fB0 - fA00 * fB1; - - if (fS >= (F)0.0) - { - if (fS <= fDet) - { - if (fT >= (F)0.0) - { - if (fT <= fDet) // region 0 (interior) - { - // minimum at two interior points of 3D lines - F fInvDet = ((F)1.0) / fDet; - fS *= fInvDet; - fT *= fInvDet; - fSqrDist = fS * (fA00 * fS + fA01 * fT + ((F)2.0) * fB0) + - fT * (fA01 * fS + fA11 * fT + ((F)2.0) * fB1) + fC; - } - else // region 3 (side) - { - fT = (F)1.0; - fTmp = fA01 + fB0; - if (fTmp >= (F)0.0) - { - fS = (F)0.0; - fSqrDist = fA11 + ((F)2.0) * fB1 + fC; - } - else if (-fTmp >= fA00) - { - fS = (F)1.0; - fSqrDist = fA00 + fA11 + fC + ((F)2.0) * (fB1 + fTmp); - } - else - { - fS = -fTmp / fA00; - fSqrDist = fTmp * fS + fA11 + ((F)2.0) * fB1 + fC; - } - } - } - else // region 7 (side) - { - fT = (F)0.0; - if (fB0 >= (F)0.0) - { - fS = (F)0.0; - fSqrDist = fC; - } - else if (-fB0 >= fA00) - { - fS = (F)1.0; - fSqrDist = fA00 + ((F)2.0) * fB0 + fC; - } - else - { - fS = -fB0 / fA00; - fSqrDist = fB0 * fS + fC; - } - } - } - else - { - if (fT >= (F)0.0) - { - if (fT <= fDet) // region 1 (side) - { - fS = (F)1.0; - fTmp = fA01 + fB1; - if (fTmp >= (F)0.0) - { - fT = (F)0.0; - fSqrDist = fA00 + ((F)2.0) * fB0 + fC; - } - else if (-fTmp >= fA11) - { - fT = (F)1.0; - fSqrDist = fA00 + fA11 + fC + ((F)2.0) * (fB0 + fTmp); - } - else - { - fT = -fTmp / fA11; - fSqrDist = fTmp * fT + fA00 + ((F)2.0) * fB0 + fC; - } - } - else // region 2 (corner) - { - fTmp = fA01 + fB0; - if (-fTmp <= fA00) - { - fT = (F)1.0; - if (fTmp >= (F)0.0) - { - fS = (F)0.0; - fSqrDist = fA11 + ((F)2.0) * fB1 + fC; - } - else - { - fS = -fTmp / fA00; - fSqrDist = fTmp * fS + fA11 + ((F)2.0) * fB1 + fC; - } - } - else - { - fS = (F)1.0; - fTmp = fA01 + fB1; - if (fTmp >= (F)0.0) - { - fT = (F)0.0; - fSqrDist = fA00 + ((F)2.0) * fB0 + fC; - } - else if (-fTmp >= fA11) - { - fT = (F)1.0; - fSqrDist = fA00 + fA11 + fC + - ((F)2.0) * (fB0 + fTmp); - } - else - { - fT = -fTmp / fA11; - fSqrDist = fTmp * fT + fA00 + ((F)2.0) * fB0 + fC; - } - } - } - } - else // region 8 (corner) - { - if (-fB0 < fA00) - { - fT = (F)0.0; - if (fB0 >= (F)0.0) - { - fS = (F)0.0; - fSqrDist = fC; - } - else - { - fS = -fB0 / fA00; - fSqrDist = fB0 * fS + fC; - } - } - else - { - fS = (F)1.0; - fTmp = fA01 + fB1; - if (fTmp >= (F)0.0) - { - fT = (F)0.0; - fSqrDist = fA00 + ((F)2.0) * fB0 + fC; - } - else if (-fTmp >= fA11) - { - fT = (F)1.0; - fSqrDist = fA00 + fA11 + fC + ((F)2.0) * (fB0 + fTmp); - } - else - { - fT = -fTmp / fA11; - fSqrDist = fTmp * fT + fA00 + ((F)2.0) * fB0 + fC; - } - } - } - } - } - else - { - if (fT >= (F)0.0) - { - if (fT <= fDet) // region 5 (side) - { - fS = (F)0.0; - if (fB1 >= (F)0.0) - { - fT = (F)0.0; - fSqrDist = fC; - } - else if (-fB1 >= fA11) - { - fT = (F)1.0; - fSqrDist = fA11 + ((F)2.0) * fB1 + fC; - } - else - { - fT = -fB1 / fA11; - fSqrDist = fB1 * fT + fC; - } - } - else // region 4 (corner) - { - fTmp = fA01 + fB0; - if (fTmp < (F)0.0) - { - fT = (F)1.0; - if (-fTmp >= fA00) - { - fS = (F)1.0; - fSqrDist = fA00 + fA11 + fC + ((F)2.0) * (fB1 + fTmp); - } - else - { - fS = -fTmp / fA00; - fSqrDist = fTmp * fS + fA11 + ((F)2.0) * fB1 + fC; - } - } - else - { - fS = (F)0.0; - if (fB1 >= (F)0.0) - { - fT = (F)0.0; - fSqrDist = fC; - } - else if (-fB1 >= fA11) - { - fT = (F)1.0; - fSqrDist = fA11 + ((F)2.0) * fB1 + fC; - } - else - { - fT = -fB1 / fA11; - fSqrDist = fB1 * fT + fC; - } - } - } - } - else // region 6 (corner) - { - if (fB0 < (F)0.0) - { - fT = (F)0.0; - if (-fB0 >= fA00) - { - fS = (F)1.0; - fSqrDist = fA00 + ((F)2.0) * fB0 + fC; - } - else - { - fS = -fB0 / fA00; - fSqrDist = fB0 * fS + fC; - } - } - else - { - fS = (F)0.0; - if (fB1 >= (F)0.0) - { - fT = (F)0.0; - fSqrDist = fC; - } - else if (-fB1 >= fA11) - { - fT = (F)1.0; - fSqrDist = fA11 + ((F)2.0) * fB1 + fC; - } - else - { - fT = -fB1 / fA11; - fSqrDist = fB1 * fT + fC; - } - } - } - } - } - else - { - // line segments are parallel - if (fA01 > (F)0.0) - { - // direction vectors form an obtuse angle - if (fB0 >= (F)0.0) - { - fS = (F)0.0; - fT = (F)0.0; - fSqrDist = fC; - } - else if (-fB0 <= fA00) - { - fS = -fB0 / fA00; - fT = (F)0.0; - fSqrDist = fB0 * fS + fC; - } - else - { - fB1 = -diff.Dot(delta1); - fS = (F)1.0; - fTmp = fA00 + fB0; - if (-fTmp >= fA01) - { - fT = (F)1.0; - fSqrDist = fA00 + fA11 + fC + ((F)2.0) * (fA01 + fB0 + fB1); - } - else - { - fT = -fTmp / fA01; - fSqrDist = fA00 + ((F)2.0) * fB0 + fC + fT * (fA11 * fT + - ((F)2.0) * (fA01 + fB1)); - } - } - } - else - { - // direction vectors form an acute angle - if (-fB0 >= fA00) - { - fS = (F)1.0; - fT = (F)0.0; - fSqrDist = fA00 + ((F)2.0) * fB0 + fC; - } - else if (fB0 <= (F)0.0) - { - fS = -fB0 / fA00; - fT = (F)0.0; - fSqrDist = fB0 * fS + fC; - } - else - { - fB1 = -diff.Dot(delta1); - fS = (F)0.0; - if (fB0 >= -fA01) - { - fT = (F)1.0; - fSqrDist = fA11 + ((F)2.0) * fB1 + fC; - } - else - { - fT = -fB0 / fA01; - fSqrDist = fC + fT * (((F)2.0) * fB1 + fA11 * fT); - } - } - } - } - - if (t0) - { - *t0 = fS; - } - - if (t1) - { - *t1 = fT; - } - - return abs(fSqrDist); - } - - /// Calculate distance between two line segments, along with the optional - /// parameters of the closest points - template - ILINE F Lineseg_Lineseg(const Lineseg& seg0, const Lineseg seg1, F* s, F* t) - { - return sqrt_tpl(Lineseg_LinesegSq(seg0, seg1, s, t)); - } - - //---------------------------------------------------------------------------------- - /// Squared distance from line segment to triangle. Optionally returns the parameters - /// describing the closest points - //---------------------------------------------------------------------------------- - template - ILINE F Lineseg_TriangleSq(const Lineseg_tpl& seg, const Triangle_tpl& triangle, - F* segT, F* triT0, F* triT1) - { - Vec3_tpl intersection; - if (Intersect::Lineseg_Triangle(seg, triangle.v0, triangle.v1, triangle.v2, intersection, segT)) - { - if (triT0 || triT1) - { - const Vec3_tpl v0v1 = triangle.v1 - triangle.v0; - Lineseg_tpl projPtOnV0V2(intersection, intersection - v0v1); - Lineseg_tpl v0v2(triangle.v0, triangle.v2); - Lineseg_LinesegSq(projPtOnV0V2, v0v2, triT0, triT1); - } - return 0.0f; - } - - // compare segment to all three edges of the triangle - F s, t, u; - F distEdgeSq = Distance::Lineseg_LinesegSq(seg, Lineseg(triangle.v0, triangle.v1), &s, &t); - F distSq = distEdgeSq; - if (segT) - { - *segT = s; - } - if (triT0) - { - *triT0 = t; - } - if (triT1) - { - *triT1 = 0.0f; - } - - distEdgeSq = Distance::Lineseg_LinesegSq(seg, Lineseg(triangle.v0, triangle.v2), &s, &t); - if (distEdgeSq < distSq) - { - distSq = distEdgeSq; - if (segT) - { - *segT = s; - } - if (triT0) - { - *triT0 = 0.0f; - } - if (triT1) - { - *triT1 = t; - } - } - distEdgeSq = Distance::Lineseg_LinesegSq(seg, Lineseg(triangle.v1, triangle.v2), &s, &t); - if (distEdgeSq < distSq) - { - distSq = distEdgeSq; - if (segT) - { - *segT = s; - } - if (triT0) - { - *triT0 = 1.0f - t; - } - if (triT1) - { - *triT1 = t; - } - } - - // compare segment end points to triangle interior - F startTriSq = Distance::Point_TriangleSq(seg.start, triangle, &t, &u); - if (startTriSq < distSq) - { - distSq = startTriSq; - if (segT) - { - *segT = 0.0f; - } - if (triT0) - { - *triT0 = t; - } - if (triT1) - { - *triT1 = u; - } - } - F endTriSq = Distance::Point_TriangleSq(seg.end, triangle, &t, &u); - if (endTriSq < distSq) - { - distSq = endTriSq; - if (segT) - { - *segT = 1.0f; - } - if (triT0) - { - *triT0 = t; - } - if (triT1) - { - *triT1 = u; - } - } - return distSq; - } - - /// Distance from line segment to triangle. Optionally returns the parameters - /// describing the closest points - template - ILINE F Lineseg_Triangle(const Lineseg_tpl& seg, const Triangle_tpl& triangle, - F* segT, F* triT0, F* triT1) - { - return sqrt_tpl(Lineseg_TriangleSq(seg, triangle, segT, triT0, triT1)); - } } //namespace Distance - - -#endif // CRYINCLUDE_CRYCOMMON_CRY_GEODISTANCE_H diff --git a/Code/Legacy/CryCommon/Cry_GeoIntersect.h b/Code/Legacy/CryCommon/Cry_GeoIntersect.h index 7e7c42b216..e9e77bd016 100644 --- a/Code/Legacy/CryCommon/Cry_GeoIntersect.h +++ b/Code/Legacy/CryCommon/Cry_GeoIntersect.h @@ -8,19 +8,14 @@ // Description : Common intersection-tests - - -#ifndef CRYINCLUDE_CRYCOMMON_CRY_GEOINTERSECT_H -#define CRYINCLUDE_CRYCOMMON_CRY_GEOINTERSECT_H #pragma once - #include namespace Intersect { inline bool Ray_Plane(const Ray& ray, const Plane_tpl& plane, Vec3& output, bool bSingleSidePlane = true) { - float cosine = plane.n | ray.direction; + float cosine = plane.n | ray.direction; //REJECTION 1: if "line-direction" is perpendicular to "plane-normal", an intersection is not possible! That means ray is parallel // to the plane @@ -33,9 +28,9 @@ namespace Intersect { return false; } - float numer = plane.DistFromPlane(ray.origin); - float fLength = -numer / cosine; - output = ray.origin + (ray.direction * fLength); + float numer = plane.DistFromPlane(ray.origin); + float fLength = -numer / cosine; + output = ray.origin + (ray.direction * fLength); //skip, if cutting-point is "behind" ray.origin if (fLength < 0.0f) { @@ -45,232 +40,6 @@ namespace Intersect { return true; //intersection occurred } - inline bool Line_Plane(const Line& line, const Plane_tpl& plane, Vec3& output, bool bSingleSidePlane = true) - { - float cosine = plane.n | line.direction; - - //REJECTION 1: if "line-direction" is perpendicular to "plane-normal", an intersection is not possible! That means ray is parallel - // to the plane - //REJECTION 2: if bSingleSidePlane == true we deal with single-sided planes. That means - // if "line-direction" is pointing in the same direction as "the plane-normal", - // an intersection is not possible! - if ((cosine == 0.0f) || // normal is orthogonal to vector, cant intersect - (bSingleSidePlane && (cosine > 0.0f))) // we are trying to find an intersection in the same direction as the plane normal - { - return false; - } - - //an intersection is possible: calculate the exact point! - float perpdist = plane | line.pointonline; - float pd_c = -perpdist / cosine; - output = line.pointonline + (line.direction * pd_c); - - return true; //intersection occurred - } - - // Algorithm description: - // http://softsurfer.com/Archive/algorithm_0104/algorithm_0104B.htm#Line-Plane%20Intersection - template - inline bool Segment_Plane(const Lineseg_tpl& segment, const Plane_tpl& plane, Vec3_tpl& vOutput, bool bSingleSidePlane = true) - { - Vec3_tpl vSegment = segment.end - segment.start; - T planeNormalDotSegment = plane.n | vSegment; - - //REJECTION 1: if "line-direction" is perpendicular to "plane-normal", an intersection is not possible! That means ray is parallel - // to the plane - //REJECTION 2: if bSingleSidePlane == true we deal with single-sided planes. That means - // if "line-direction" is pointing in the same direction as "the plane-normal", - // an intersection is not possible! - if ((planeNormalDotSegment == T(0)) || // normal is orthogonal to vector, cant intersect - (bSingleSidePlane && (planeNormalDotSegment > T(0)))) // we are trying to find an intersection in the same direction as the plane normal - { - return false; - } - - // n Dot (segment.start - closest_point_in_plane) = 1 * DistFromPlane(segment.start) * cos(0) = DistFromPlane(segment.start) - T distanceToStart = plane.DistFromPlane(segment.start); - T scale = -distanceToStart / planeNormalDotSegment; - vOutput = segment.start + (vSegment * scale); - - // skip, if segment start and ends in one side of the plane - if ((scale < T(0)) || (scale > T(1))) - { - return false; - } - - return true; //intersection occurred - } - - /// Intersection between two line segments in 2D (ignoring z coordinate). The two parametric - /// values are set to between 0 and 1 if intersection occurs. If intersection does not occur - /// their values will indicate the parametric values for intersection of the lines extended - /// beyond the segment lengths. Parallel lines will result in a negative result, but the parametric - /// values will both be equal to 0.5 - template - inline bool Lineseg_Lineseg2D(const Lineseg_tpl& lineA, const Lineseg_tpl& lineB, F& outA, F& outB) - { - const F Epsilon = (F)0.0000001; - - Vec3_tpl delta = lineB.start - lineA.start; - - Vec3_tpl dirA = lineA.end - lineA.start; - Vec3_tpl dirB = lineB.end - lineB.start; - - F det = dirA.x * dirB.y - dirA.y * dirB.x; - F detA = delta.x * dirB.y - delta.y * dirB.x; - F detB = delta.x * dirA.y - delta.y * dirA.x; - - F absDet = fabs_tpl(det); - - if (absDet >= Epsilon) - { - F invDet = (F)1.0 / det; - - F a = detA * invDet; - F b = detB * invDet; - outA = a; - outB = b; - - if ((a > (F)1.0) || (a < (F)0.0) || (b > (F)1.0) || (b < (F)0.0)) - { - return false; - } - } - else - { - outA = outB = (F)0.5; - - return false; - } - - return true; - } - - /// Calculates the intersection between a line segment and a polygon, in 2D (i.e. - /// ignoring z coordinate). The VecContainer should be a container of Vec3 such - /// that we can traverse it using iterators. intersectionPoint is set to the intersection - /// point or the end of the segment, if no intersection. - template - inline bool Lineseg_Polygon2D(const Lineseg& lineseg, VecIterator polygonBegin, VecIterator polygonEnd, Vec3& intersectionPoint, Vec3* pNormal = NULL, bool bForceNormalOutwards = false) - { - intersectionPoint = lineseg.end; - bool gotIntersection = false; - - float tmin = 1.0f; - - VecIterator iend = polygonEnd; - VecIterator li, linext; - Lineseg intersectSegment; - for (li = polygonBegin; li != iend; ++li) - { - linext = li; - ++linext; - if (linext == iend) - { - linext = polygonBegin; - } - Lineseg segmentPoly(*li, *linext); - float s, t; - if (Intersect::Lineseg_Lineseg2D(lineseg, segmentPoly, s, t)) - { - if (s < 0.00001f || s > 0.99999f || t < 0.00001f || t > 0.99999f) - { - continue; - } - if (s < tmin) - { - tmin = s; - gotIntersection = true; - intersectSegment = segmentPoly; - } - } - } - - intersectionPoint = lineseg.start + tmin * (lineseg.end - lineseg.start); - - if (pNormal && gotIntersection) - { - Vec3 vPolyseg = intersectSegment.end - intersectSegment.start; - Vec3 vIntSeg = (lineseg.end - lineseg.start); - pNormal->x = vPolyseg.y; - pNormal->y = -vPolyseg.x; - pNormal->z = 0; - pNormal->NormalizeSafe(); - // returns the normal towards the start point of the intersecting segment (if it's not forced to be outwards) - if (!bForceNormalOutwards && vIntSeg.Dot(*pNormal) > 0) - { - pNormal->x = -pNormal->x; - pNormal->y = -pNormal->y; - } - } - return gotIntersection; - } - - template - inline bool Lineseg_Polygon2D(const Lineseg& lineseg, const VecContainer& polygon, Vec3& intersectionPoint, Vec3* pNormal = NULL, bool bForceNormalOutwards = false) - { - return Lineseg_Polygon2D(lineseg, polygon.begin(), polygon.end(), intersectionPoint, pNormal, bForceNormalOutwards); - } - - /* - * calculates intersection between a line and a triangle. - * IMPORTANT: this is a single-sided intersection test. That means its not enough - * that the triangle and line overlap, its also important that the triangle - * is "visible" when you are looking along the line-direction. - * - * If you need a double-sided test, you'll have to call this function twice with - * reversed order of triangle vertices. - * - * return values - * if there is an intertection the functions return "true" and stores the - * 3d-intersection point in "output". if the function returns "false" the value in - * "output" is undefined - * - */ - inline bool Line_Triangle(const Line& line, const Vec3& v0, const Vec3& v1, const Vec3& v2, Vec3& output) - { - const float Epsilon = 0.0000001f; - - Vec3 edgeA = v1 - v0; - Vec3 edgeB = v2 - v0; - - Vec3 dir = line.direction; - - Vec3 p = dir.Cross(edgeA); - Vec3 t = line.pointonline - v0; - Vec3 q = t.Cross(edgeB); - - float dot = edgeB.Dot(p); - - float u = t.Dot(p); - float v = dir.Dot(q); - - float DotGreaterThanEpsilon = dot - Epsilon; - float VGreaterEqualThanZero = v; - float UGreaterEqualThanZero = u; - float UVLessThanDot = dot - (u + v); - float ULessThanDot = dot - u; - - float UVGreaterEqualThanZero = (float)fsel(VGreaterEqualThanZero, UGreaterEqualThanZero, VGreaterEqualThanZero); - float UUVLessThanDot = (float)fsel(UVLessThanDot, ULessThanDot, UVLessThanDot); - float BothGood = (float)fsel(UVGreaterEqualThanZero, UUVLessThanDot, UVGreaterEqualThanZero); - float AllGood = (float)fsel(DotGreaterThanEpsilon, BothGood, DotGreaterThanEpsilon); - - if (AllGood < 0.0f) - { - return false; - } - - float dt = edgeA.Dot(q) / dot; - - Vec3 result = (dir * dt) + line.pointonline; - output = result; - - return true; - } - - - /* * calculates intersection between a ray and a triangle. * IMPORTANT: this is a single-sided intersection test. That means its not sufficient @@ -329,80 +98,6 @@ namespace Intersect { return AfterStart >= 0.0f; } - - - /* - * Description: - * Calculates intersection between a line-segment and a triangle. - * Remarks: - * IMPORTANT: this is a single-sided intersection test. That means its not sufficient - * that the triangle and line-segment overlap, its also important that the triangle - * is "visible" when you are looking along the linesegment from "start" to "end". - * Notes: - * If you need a double-sided test, you'll have to call this function twice with - * reversed order of triangle vertices. - * - * Return value: - * If there is an intertection the the functions return "true" and stores the - * 3d-intersection point in "output". if the function returns "false" the value in - * "output" is undefined. If pT is non-zero then if there is an intersection the "t-value" - * (from 0-1) is also returned (unmodified if there is no intersection). - */ - inline bool Lineseg_Triangle(const Lineseg& lineseg, const Vec3& v0, const Vec3& v1, const Vec3& v2, Vec3& output, - float* outT = 0) - { - const float Epsilon = 0.0000001f; - - Vec3 edgeA = v1 - v0; - Vec3 edgeB = v2 - v0; - - Vec3 dir = lineseg.end - lineseg.start; - - Vec3 p = dir.Cross(edgeA); - Vec3 t = lineseg.start - v0; - Vec3 q = t.Cross(edgeB); - - float dot = edgeB.Dot(p); - - float u = t.Dot(p); - float v = dir.Dot(q); - - float DotGreaterThanEpsilon = dot - Epsilon; - float VGreaterEqualThanZero = v; - float UGreaterEqualThanZero = u; - float UVLessThanDot = dot - (u + v); - float ULessThanDot = dot - u; - - float UVGreaterEqualThanZero = (float)fsel(VGreaterEqualThanZero, UGreaterEqualThanZero, VGreaterEqualThanZero); - float UUVLessThanDot = (float)fsel(UVLessThanDot, ULessThanDot, UVLessThanDot); - float BothGood = (float)fsel(UVGreaterEqualThanZero, UUVLessThanDot, UVGreaterEqualThanZero); - float AllGood = (float)fsel(DotGreaterThanEpsilon, BothGood, DotGreaterThanEpsilon); - - if (AllGood < 0.0f) - { - return false; - } - - float dt = edgeA.Dot(q) / dot; - - Vec3 result = (dir * dt) + lineseg.start; - output = result; - - float AfterStart = (result - lineseg.start).Dot(dir); - float BeforeEnd = -(result - lineseg.end).Dot(dir); - float Within = (float)fsel(AfterStart, BeforeEnd, AfterStart); - - if (outT) - { - *outT = dt; - } - - return Within >= 0.0f; - } - - - - //---------------------------------------------------------------------------------- // Ray_AABB // @@ -466,359 +161,6 @@ namespace Intersect { return 0x00;//no intersection } - - - //---------------------------------------------------------------------------------- - // Ray_OBB - // - // just ONE intersection point is calculated, and thats the entry point - - // Lineseg and OBB are assumed to be in the same space - // - //--- 0x00 = no intersection (output undefined) ---- - //--- 0x01 = intersection (intersection point in output) -------------- - //--- 0x02 = start of Lineseg is inside the OBB (ls.start is output) - //---------------------------------------------------------------------------------- - inline uint8 Ray_OBB(const Ray& ray, const Vec3& pos, const OBB& obb, Vec3& output1) - { - AABB aabb(obb.c - obb.h, obb.c + obb.h); - Ray aray((ray.origin - pos) * obb.m33, ray.direction * obb.m33); - - uint8 cflags; - float cosine; - Vec3 cut; - //-------------------------------------------------------------------------------------- - //---- check if "aray.origin" is inside of AABB --------------------------- - //-------------------------------------------------------------------------------------- - cflags = (aray.origin.x > aabb.min.x) << 0; - cflags |= (aray.origin.x < aabb.max.x) << 1; - cflags |= (aray.origin.y > aabb.min.y) << 2; - cflags |= (aray.origin.y < aabb.max.y) << 3; - cflags |= (aray.origin.z > aabb.min.z) << 4; - cflags |= (aray.origin.z < aabb.max.z) << 5; - if (cflags == 0x3f) - { - output1 = aray.origin; - return 0x02; - } - - //-------------------------------------------------------------------------------------- - //---- check intersection with planes ------------------------------ - //-------------------------------------------------------------------------------------- - for (int i = 0; i < 3; i++) - { - if ((aray.direction[i] > 0) && (aray.origin[i] < aabb.min[i])) - { - cosine = (-aray.origin[i] + aabb.min[i]) / aray.direction[i]; - cut[i] = aabb.min[i]; - cut[incm3(i)] = aray.origin[incm3(i)] + (aray.direction[incm3(i)] * cosine); - cut[decm3(i)] = aray.origin[decm3(i)] + (aray.direction[decm3(i)] * cosine); - if ((cut[incm3(i)] > aabb.min[incm3(i)]) && (cut[incm3(i)] < aabb.max[incm3(i)]) && (cut[decm3(i)] > aabb.min[decm3(i)]) && (cut[decm3(i)] < aabb.max[decm3(i)])) - { - output1 = obb.m33 * cut + pos; - return 0x01; - } - } - if ((aray.direction[i] < 0) && (aray.origin[i] > aabb.max[i])) - { - cosine = (+aray.origin[i] - aabb.max[i]) / aray.direction[i]; - cut[i] = aabb.max[i]; - cut[incm3(i)] = aray.origin[incm3(i)] - (aray.direction[incm3(i)] * cosine); - cut[decm3(i)] = aray.origin[decm3(i)] - (aray.direction[decm3(i)] * cosine); - if ((cut[incm3(i)] > aabb.min[incm3(i)]) && (cut[incm3(i)] < aabb.max[incm3(i)]) && (cut[decm3(i)] > aabb.min[decm3(i)]) && (cut[decm3(i)] < aabb.max[decm3(i)])) - { - output1 = obb.m33 * cut + pos; - return 0x01; - } - } - } - return 0x00;//no intersection - } - - //---------------------------------------------------------------------------------- - // Lineseg_AABB - // - // just ONE intersection point is calculated, and thats the entry point - - // Lineseg and AABB are assumed to be in the same space - // - //--- 0x00 = no intersection (output undefined) -------------------------- - //--- 0x01 = intersection (intersection point in output) -------------- - //--- 0x02 = start of Lineseg is inside the AABB (ls.start is output) - //---------------------------------------------------------------------------------- - inline uint8 Lineseg_AABB(const Lineseg& ls, const AABB& aabb, Vec3& output1) - { - uint8 cflags; - float cosine; - Vec3 cut; - Vec3 lnormal = (ls.start - ls.end).GetNormalized(); - //-------------------------------------------------------------------------------------- - //---- check if "ls.start" is inside of AABB --------------------------- - //-------------------------------------------------------------------------------------- - cflags = (ls.start.x > aabb.min.x) << 0; - cflags |= (ls.start.x < aabb.max.x) << 1; - cflags |= (ls.start.y > aabb.min.y) << 2; - cflags |= (ls.start.y < aabb.max.y) << 3; - cflags |= (ls.start.z > aabb.min.z) << 4; - cflags |= (ls.start.z < aabb.max.z) << 5; - if (cflags == 0x3f) - { - //ls.start is inside of aabb - output1 = ls.start; - return 0x02; - } - - //-------------------------------------------------------------------------------------- - //---- check intersection with x-planes ------------------------------ - //-------------------------------------------------------------------------------------- - if (lnormal.x) - { - if ((ls.start.x < aabb.min.x) && (ls.end.x > aabb.min.x)) - { - cosine = (-ls.start.x + (+aabb.min.x)) / lnormal.x; - cut(aabb.min.x, ls.start.y + (lnormal.y * cosine), ls.start.z + (lnormal.z * cosine)); - //check if cut-point is inside YZ-plane border - if ((cut.y > aabb.min.y) && (cut.y < aabb.max.y) && (cut.z > aabb.min.z) && (cut.z < aabb.max.z)) - { - output1 = cut; - return 0x01; - } - } - if ((ls.start.x > aabb.max.x) && (ls.end.x < aabb.max.x)) - { - cosine = (+ls.start.x + (-aabb.max.x)) / lnormal.x; - cut(aabb.max.x, ls.start.y - (lnormal.y * cosine), ls.start.z - (lnormal.z * cosine)); - //check if cut-point is inside YZ-plane border - if ((cut.y > aabb.min.y) && (cut.y < aabb.max.y) && (cut.z > aabb.min.z) && (cut.z < aabb.max.z)) - { - output1 = cut; - return 0x01; - } - } - } - //-------------------------------------------------------------------------------------- - //---- check intersection with z-planes ------------------------------ - //-------------------------------------------------------------------------------------- - if (lnormal.z) - { - if ((ls.start.z < aabb.min.z) && (ls.end.z > aabb.min.z)) - { - cosine = (-ls.start.z + (+aabb.min.z)) / lnormal.z; - cut(ls.start.x + (lnormal.x * cosine), ls.start.y + (lnormal.y * cosine), aabb.min.z); - //check if cut-point is inside XY-plane border - if ((cut.x > aabb.min.x) && (cut.x < aabb.max.x) && (cut.y > aabb.min.y) && (cut.y < aabb.max.y)) - { - output1 = cut; - return 0x01; - } - } - if ((ls.start.z > aabb.max.z) && (ls.end.z < aabb.max.z)) - { - cosine = (+ls.start.z + (-aabb.max.z)) / lnormal.z; - cut(ls.start.x - (lnormal.x * cosine), ls.start.y - (lnormal.y * cosine), aabb.max.z); - //check if cut-point is inside XY-plane border - if ((cut.x > aabb.min.x) && (cut.x < aabb.max.x) && (cut.y > aabb.min.y) && (cut.y < aabb.max.y)) - { - output1 = cut; - return 0x01; - } - } - } - //-------------------------------------------------------------------------------------- - //---- check intersection with y-planes ------------------------------ - //-------------------------------------------------------------------------------------- - if (lnormal.y) - { - if ((ls.start.y < aabb.min.y) && (ls.end.y > aabb.min.y)) - { - cosine = (-ls.start.y + (+aabb.min.y)) / lnormal.y; - cut(ls.start.x + (lnormal.x * cosine), aabb.min.y, ls.start.z + (lnormal.z * cosine)); - //check if cut-point is inside XZ-plane border - if ((cut.x > aabb.min.x) && (cut.x < aabb.max.x) && (cut.z > aabb.min.z) && (cut.z < aabb.max.z)) - { - output1 = cut; - return 0x01; - } - } - if ((ls.start.y > aabb.max.y) && (ls.end.y < aabb.max.y)) - { - cosine = (+ls.start.y + (-aabb.max.y)) / lnormal.y; - cut(ls.start.x - (lnormal.x * cosine), aabb.max.y, ls.start.z - (lnormal.z * cosine)); - //check if cut-point is inside XZ-plane border - if ((cut.x > aabb.min.x) && (cut.x < aabb.max.x) && (cut.z > aabb.min.z) && (cut.z < aabb.max.z)) - { - output1 = cut; - return 0x01; - } - } - } - //no intersection - return 0x00; - } - - - - //---------------------------------------------------------------------------------- - // Lineseg_OBB - // - // just ONE intersection point is calculated, and thats the entry point - - // Lineseg and OBB are assumed to be in the same space - // - //--- 0x00 = no intersection (output undefined) -------------------------- - //--- 0x01 = intersection (intersection point in output) -------------- - //--- 0x02 = start of Lineseg is inside the OBB (ls.start is output) - //---------------------------------------------------------------------------------- - inline uint8 Lineseg_OBB(const Lineseg& lseg, const Vec3& pos, const OBB& obb, Vec3& output1) - { - AABB aabb(obb.c - obb.h, obb.c + obb.h); - Lineseg ls((lseg.start - pos) * obb.m33, (lseg.end - pos) * obb.m33); - - uint8 cflags; - float cosine; - Vec3 cut; - Vec3 lnormal = (ls.start - ls.end).GetNormalized(); - //-------------------------------------------------------------------------------------- - //---- check if "ls.start" is inside of AABB --------------------------- - //-------------------------------------------------------------------------------------- - cflags = (ls.start.x > aabb.min.x) << 0; - cflags |= (ls.start.x < aabb.max.x) << 1; - cflags |= (ls.start.y > aabb.min.y) << 2; - cflags |= (ls.start.y < aabb.max.y) << 3; - cflags |= (ls.start.z > aabb.min.z) << 4; - cflags |= (ls.start.z < aabb.max.z) << 5; - if (cflags == 0x3f) - { - //ls.start is inside of aabb - output1 = obb.m33 * ls.start + pos; - return 0x02; - } - - //-------------------------------------------------------------------------------------- - //---- check intersection with x-planes ------------------------------ - //-------------------------------------------------------------------------------------- - if (lnormal.x) - { - if ((ls.start.x < aabb.min.x) && (ls.end.x > aabb.min.x)) - { - cosine = (-ls.start.x + (+aabb.min.x)) / lnormal.x; - cut(aabb.min.x, ls.start.y + (lnormal.y * cosine), ls.start.z + (lnormal.z * cosine)); - //check if cut-point is inside YZ-plane border - if ((cut.y > aabb.min.y) && (cut.y < aabb.max.y) && (cut.z > aabb.min.z) && (cut.z < aabb.max.z)) - { - output1 = obb.m33 * cut + pos; - return 0x01; - } - } - if ((ls.start.x > aabb.max.x) && (ls.end.x < aabb.max.x)) - { - cosine = (+ls.start.x + (-aabb.max.x)) / lnormal.x; - cut(aabb.max.x, ls.start.y - (lnormal.y * cosine), ls.start.z - (lnormal.z * cosine)); - //check if cut-point is inside YZ-plane border - if ((cut.y > aabb.min.y) && (cut.y < aabb.max.y) && (cut.z > aabb.min.z) && (cut.z < aabb.max.z)) - { - output1 = obb.m33 * cut + pos; - return 0x01; - } - } - } - //-------------------------------------------------------------------------------------- - //---- check intersection with z-planes ------------------------------ - //-------------------------------------------------------------------------------------- - if (lnormal.z) - { - if ((ls.start.z < aabb.min.z) && (ls.end.z > aabb.min.z)) - { - cosine = (-ls.start.z + (+aabb.min.z)) / lnormal.z; - cut(ls.start.x + (lnormal.x * cosine), ls.start.y + (lnormal.y * cosine), aabb.min.z); - //check if cut-point is inside XY-plane border - if ((cut.x > aabb.min.x) && (cut.x < aabb.max.x) && (cut.y > aabb.min.y) && (cut.y < aabb.max.y)) - { - output1 = obb.m33 * cut + pos; - return 0x01; - } - } - if ((ls.start.z > aabb.max.z) && (ls.end.z < aabb.max.z)) - { - cosine = (+ls.start.z + (-aabb.max.z)) / lnormal.z; - cut(ls.start.x - (lnormal.x * cosine), ls.start.y - (lnormal.y * cosine), aabb.max.z); - //check if cut-point is inside XY-plane border - if ((cut.x > aabb.min.x) && (cut.x < aabb.max.x) && (cut.y > aabb.min.y) && (cut.y < aabb.max.y)) - { - output1 = obb.m33 * cut + pos; - return 0x01; - } - } - } - //-------------------------------------------------------------------------------------- - //---- check intersection with y-planes ------------------------------ - //-------------------------------------------------------------------------------------- - if (lnormal.y) - { - if ((ls.start.y < aabb.min.y) && (ls.end.y > aabb.min.y)) - { - cosine = (-ls.start.y + (+aabb.min.y)) / lnormal.y; - cut(ls.start.x + (lnormal.x * cosine), aabb.min.y, ls.start.z + (lnormal.z * cosine)); - //check if cut-point is inside XZ-plane border - if ((cut.x > aabb.min.x) && (cut.x < aabb.max.x) && (cut.z > aabb.min.z) && (cut.z < aabb.max.z)) - { - output1 = obb.m33 * cut + pos; - return 0x01; - } - } - if ((ls.start.y > aabb.max.y) && (ls.end.y < aabb.max.y)) - { - cosine = (+ls.start.y + (-aabb.max.y)) / lnormal.y; - cut(ls.start.x - (lnormal.x * cosine), aabb.max.y, ls.start.z - (lnormal.z * cosine)); - //check if cut-point is inside XZ-plane border - if ((cut.x > aabb.min.x) && (cut.x < aabb.max.x) && (cut.z > aabb.min.z) && (cut.z < aabb.max.z)) - { - output1 = obb.m33 * cut + pos; - return 0x01; - } - } - } - //no intersection - return 0x00; - } - - - - //---------------------------------------------------------------------------------- - //--- 0x00 = no intersection -------------------------- - //--- 0x01 = not possible -- - //--- 0x02 = not possible -- - //--- 0x03 = two intersection, lineseg has ENTRY and EXIT point -- - //---------------------------------------------------------------------------------- - - inline unsigned char Line_Sphere(const Line& line, const ::Sphere& s, Vec3& i0, Vec3& i1) - { - Vec3 end = line.pointonline + line.direction; - - float a = line.direction | line.direction; - float b = (line.direction | (line.pointonline - s.center)) * 2.0f; - float c = ((line.pointonline - s.center) | (line.pointonline - s.center)) - (s.radius * s.radius); - - float desc = (b * b) - (4 * a * c); - - unsigned char intersection = 0; - if (desc >= 0.0f) - { - float lamba0 = (-b - sqrt_tpl(desc)) / (2.0f * a); - //_stprintf(d3dApp.token,"lamba0: %20.12f",lamba0); - //d3dApp.m_pFont->DrawText( 2, d3dApp.PrintY, D3DCOLOR_ARGB(255,255,255,0), d3dApp.token ); d3dApp.PrintY+=20; - i0 = line.pointonline + ((end - line.pointonline) * lamba0); - intersection = 1; - - float lamba1 = (-b + sqrt_tpl(desc)) / (2.0f * a); - //_stprintf(d3dApp.token,"lamba1: %20.12f",lamba1); - //d3dApp.m_pFont->DrawText( 2, d3dApp.PrintY, D3DCOLOR_ARGB(255,255,255,0), d3dApp.token ); d3dApp.PrintY+=20; - i1 = line.pointonline + ((end - line.pointonline) * lamba1); - intersection |= 2; - } - - return intersection; - } - - - //---------------------------------------------------------------------------------- //--- 0x00 = no intersection -------------------------- //--- 0x01 = not possible -- @@ -873,87 +215,4 @@ namespace Intersect { } return false; } - - - - //---------------------------------------------------------------------------------- - //--- 0x00 = no intersection -------------------------- - //--- 0x01 = one intersection, lineseg has just an ENTRY point but no EXIT point (ls.end is inside the sphere) -- - //--- 0x02 = one intersection, lineseg has just an EXIT point but no ENTRY point (ls.start is inside the sphere) -- - //--- 0x03 = two intersection, lineseg has ENTRY and EXIT point -- - //---------------------------------------------------------------------------------- - inline unsigned char Lineseg_Sphere(const Lineseg& ls, const ::Sphere& s, Vec3& i0, Vec3& i1) - { - Vec3 dir = (ls.end - ls.start); - - float a = dir | dir; - if (a == 0.0f) - { - return 0; - } - - float b = (dir | (ls.start - s.center)) * 2.0f; - float c = ((ls.start - s.center) | (ls.start - s.center)) - (s.radius * s.radius); - float desc = (b * b) - (4 * a * c); - - unsigned char intersection = 0; - if (desc >= 0.0f) - { - float lamba0 = (-b - sqrt_tpl(desc)) / (2.0f * a); - if (lamba0 > 0.0f) - { - i0 = ls.start + ((ls.end - ls.start) * lamba0); - //skip, if 1st cutting-point is "in front" of ls.end - if (((i0 - ls.end) | dir) > 0) - { - return 0; - } - intersection = 0x01; - } - - float lamba1 = (-b + sqrt_tpl(desc)) / (2.0f * a); - if (lamba1 > 0.0f) - { - i1 = ls.start + ((ls.end - ls.start) * lamba1); - //skip, if 2nd cutting-point is "in front" of ls.end (=ls.end is inside sphere) - if (((i1 - ls.end) | dir) > 0) - { - return intersection; - } - intersection |= 0x02; - } - } - return intersection; - } - - - inline bool Lineseg_SphereFirst(const Lineseg& lineseg, const ::Sphere& s, Vec3& intPoint) - { - Vec3 p2; - uint8 res = Lineseg_Sphere(lineseg, s, intPoint, p2); - if (res == 2) - { - intPoint = p2; - } - if (res > 1) - { - return true; - } - return false; - } -}; //CIntersect - - - - - - - - - - - - - - -#endif // CRYINCLUDE_CRYCOMMON_CRY_GEOINTERSECT_H +} //Intersect diff --git a/Code/Legacy/CryCommon/Cry_GeoOverlap.h b/Code/Legacy/CryCommon/Cry_GeoOverlap.h deleted file mode 100644 index badb4a1edd..0000000000 --- a/Code/Legacy/CryCommon/Cry_GeoOverlap.h +++ /dev/null @@ -1,2040 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Common overlap-tests - - -#ifndef CRYINCLUDE_CRYCOMMON_CRY_GEOOVERLAP_H -#define CRYINCLUDE_CRYCOMMON_CRY_GEOOVERLAP_H -#pragma once - -#include -#include - -namespace Distance -{ - template - ILINE F Point_TriangleSq(const Vec3_tpl& p, const Triangle_tpl& t); - template - ILINE F Point_Lineseg2DSq(Vec3_tpl p, Lineseg lineseg, F& fT); - simdf Point_TriangleByPointsSq(const hwvec3& p, const hwvec3& t0, const hwvec3& t1, const hwvec3& t2); -} - - -namespace Overlap { - ILINE void FINDMINMAX(const f32 x0, const f32 x1, const f32 x2, f32& min_value, f32& max_value) - { - min_value = max_value = x0; - min_value = min(x1, min_value); - max_value = max(x1, max_value); - min_value = min(x2, min_value); - max_value = max(x2, max_value); - } - - inline bool Lineseg_AABB2D(const Lineseg&, const AABB&); - ILINE bool AABB_AABB2D(const AABB&, const AABB&); - - //////////////////////////////////////////////////////////////// - // Checks if the point is inside an AABB - /* inline bool Point_AABB(const Vec3 &p, const Vec3 &mins,const Vec3 &maxs) - { - if ((p.x>=mins.x && p.x<=maxs.x) && (p.y>=mins.y && p.y<=maxs.y) && (p.z>=mins.z && p.z<=maxs.z)) return (true); - return (false); - }*/ - - // Description: - // Checks if the point is inside an AABB - // The min value of the AABB is inclusive - // The max value of the AABB is exclusive - ILINE bool Point_AABB(const Vec3& p, const AABB& aabb) - { - return ((p.x >= aabb.min.x && p.x < aabb.max.x) && (p.y >= aabb.min.y && p.y < aabb.max.y) && (p.z >= aabb.min.z && p.z < aabb.max.z)); - } - - // Description: - // Checks if the point is inside a 2D AABB - // The min value of the AABB is inclusive - // The max value of the AABB is exclusive - template - ILINE bool Point_AABB2D(const PtType& p, const AABB& aabb) - { - return ((p.x >= aabb.min.x && p.x < aabb.max.x) && (p.y >= aabb.min.y && p.y < aabb.max.y)); - } - - // Description: - // Checks if the point is inside an AABB - // The min and max value of the AABB is inclusive - ILINE bool Point_AABB_MaxInclusive(const Vec3& p, const AABB& aabb) - { - return ((p.x >= aabb.min.x && p.x <= aabb.max.x) && (p.y >= aabb.min.y && p.y <= aabb.max.y) && (p.z >= aabb.min.z && p.z <= aabb.max.z)); - } - - // Description: - // Checks if the point is inside a 2D AABB - // The min and max value of the AABB is inclusive - template - ILINE bool Point_AABB2D_MaxInclusive(const PtType& p, const AABB& aabb) - { - return ((p.x >= aabb.min.x && p.x <= aabb.max.x) && (p.y >= aabb.min.y && p.y <= aabb.max.y)); - } - - // Description: - // Checks if a point is inside an OBB. - // Example: - // bool result=Overlap::Point_OBB( point, obb ); - ILINE bool Point_OBB(const Vec3& p, const Vec3& wpos, const OBB& obb) - { - AABB aabb = AABB(obb.c - obb.h, obb.c + obb.h); - Vec3 t = (p - wpos) * obb.m33; - return ((t.x >= aabb.min.x && t.x <= aabb.max.x) && (t.y >= aabb.min.y && t.y <= aabb.max.y) && (t.z >= aabb.min.z && t.z <= aabb.max.z)); - } - - // Description: - // Checks if a point is inside a sphere. - // Example: - // bool result=Overlap::Point_Sphere( point, sphere ); - ILINE bool Point_Sphere(const Vec3& p, const ::Sphere& s) - { - Vec3 distc = p - s.center; - f32 sqrad = s.radius * s.radius; - return (sqrad > (distc | distc)); - } - - /// Two line segments, in 2D (ignore z) - inline bool Lineseg_Lineseg2D(const Lineseg& lineA, const Lineseg& lineB) - { - const float Epsilon = 0.0000001f; - - Vec3 delta = lineB.start - lineA.start; - - Vec3 dirA = lineA.end - lineA.start; - Vec3 dirB = lineB.end - lineB.start; - - float det = dirA.x * dirB.y - dirA.y * dirB.x; - float detA = delta.x * dirB.y - delta.y * dirB.x; - float detB = delta.x * dirA.y - delta.y * dirA.x; - - float absDet = fabs_tpl(det); - - if (absDet >= Epsilon) - { - float invDet = 1.0f / det; - - float a = detA * invDet; - float b = detB * invDet; - - if ((a > 1.0f) || (a < 0.0f) || (b > 1.0f) || (b < 0.0f)) - { - return false; - } - } - else - { - return false; - } - - return true; - } - - - - /// Check if a point is within a polygon, in 2D (i.e. ignoring z coordinate) - /// The VecContainer should be a container of Vec3_tpl such that we can traverse - /// it using iterators. - /// - /// This works by checking all the lines that start/end above/below the point - /// and counting how many have the point on the right/left side. If the - /// point is inside, then left/right counts should be odd - if outside then - /// even. If it's on the edge then this algorithm will return an arbitrary - /// result. This is basically the same as casting a ray horizontally and - /// counting the intersections. - /// Don't mess with putting tolerances etc in this code, or chaning the < - /// to <= etc in case you're worried about the "ray" going through a vertex. - /// the only issue is when the point is on the edge - if you're worried about - /// that then use the separate function that indicates if a point is within - /// a certain tolerance of an edge. - template - inline bool Point_Polygon2D(const PtType& p, const VecContainer& polygon, const AABB* pAABBPolygon = 0) - { - if (pAABBPolygon && !Overlap::Point_AABB2D(p, *pAABBPolygon)) - { - return false; - } - - int count = 0; - - typename VecContainer::const_iterator li, linext; - typename VecContainer::const_iterator liend = polygon.end(); - for (li = polygon.begin(); li != liend; ++li) - { - linext = li; - ++linext; - if (linext == liend) - { - linext = polygon.begin(); - } - const PtType& l0 = *li; - const PtType& l1 = *linext; - - if ((((l1.y <= p.y) && (p.y < l0.y)) || - ((l0.y <= p.y) && (p.y < l1.y))) && - (p.x < (l0.x - l1.x) * (p.y - l1.y) / (l0.y - l1.y) + l1.x)) - { - count = !count; - } - } - return (0 != count); - } - - template - inline bool Point_Polygon2D(const PtType& p, const PtType* polygon, size_t vertexCount, const AABB* pAABBPolygon = 0) - { - if (pAABBPolygon && !Overlap::Point_AABB2D(p, *pAABBPolygon)) - { - return false; - } - - bool count = false; - - for (size_t i = 0; i < vertexCount; ++i) - { - const PtType l0 = polygon[i % vertexCount]; - const PtType l1 = polygon[(i + 1) % vertexCount]; - - if ((((l1.y <= p.y) && (p.y < l0.y)) || - ((l0.y <= p.y) && (p.y < l1.y))) && - (p.x < (l0.x - l1.x) * (p.y - l1.y) / (l0.y - l1.y) + l1.x)) - { - count = !count; - } - } - - return count; - } - - - template - inline bool Circle_Polygon2D(const Vec3_tpl& p, F radius, const VecContainer& polygon) - { - if (Overlap::Point_Polygon2D(p, polygon)) - { - return true; - } - typename VecContainer::const_iterator li, linext; - typename VecContainer::const_iterator liend = polygon.end(); - for (li = polygon.begin(); li != liend; ++li) - { - linext = li; - ++linext; - if (linext == liend) - { - linext = polygon.begin(); - } - const Vec3_tpl& l0 = *li; - const Vec3_tpl& l1 = *linext; - float junk; - if (Distance::Point_Lineseg2DSq(p, Lineseg(l0, l1), junk) < square(radius)) - { - return true; - } - } - return false; - } - /// Checks if a line segment overlaps a polygon (defined by a container of sorted - /// points) in 2D (ignoring z). If you know the polygon AABB pass it in (z is ignored) - template - inline bool Lineseg_Polygon2D(const Lineseg& lineseg, - const VecContainer& polygon, - const AABB* pAABBPolygon = 0) - { - if (pAABBPolygon && !Overlap::Lineseg_AABB2D(lineseg, *pAABBPolygon)) - { - return false; - } - - typename VecContainer::const_iterator it; - for (it = polygon.begin(); it != polygon.end(); ++it) - { - typename VecContainer::const_iterator itNext = it; - ++itNext; - if (itNext == polygon.end()) - { - itNext = polygon.begin(); - } - - Lineseg polySeg(*it, *itNext); - if (Lineseg_Lineseg2D(lineseg, polySeg)) - { - return true; - } - } - return false; - } - - /// Checks for overlap of two polygons in 2D (ignoring z) - template - inline bool Polygon_Polygon2D(const VecContainerA& polygonA, const VecContainerB& polygonB, - const AABB* pAABBA = 0, const AABB* pAABBB = 0) - { - const typename VecContainerA::const_iterator itEndA = polygonA.end(); - const typename VecContainerB::const_iterator itEndB = polygonB.end(); - typename VecContainerA::const_iterator itA; - typename VecContainerB::const_iterator itB; - - AABB aabbA, aabbB; - if (!pAABBA) - { - pAABBA = &aabbA; - aabbA.Reset(); - for (itA = polygonA.begin(); itA != itEndA; ++itA) - { - aabbA.Add(*itA); - } - } - if (!pAABBB) - { - pAABBB = &aabbB; - aabbB.Reset(); - for (itB = polygonB.begin(); itB != itEndB; ++itB) - { - aabbB.Add(*itB); - } - } - - // AABB - if (!Overlap::AABB_AABB2D(*pAABBA, *pAABBB)) - { - return false; - } - - // points of A in B - for (itA = polygonA.begin(); itA != itEndA; ++itA) - { - if (Point_Polygon2D(*itA, polygonB, pAABBB)) - { - return true; - } - } - // points of B in A - for (itB = polygonB.begin(); itB != itEndB; ++itB) - { - if (Point_Polygon2D(*itB, polygonA, pAABBA)) - { - return true; - } - } - // segments of one A against B - for (itA = polygonA.begin(); itA != itEndA; ++itA) - { - typename VecContainerA::const_iterator itNext = itA; - ++itNext; - if (itNext == itEndA) - { - itNext = polygonA.begin(); - } - if (Lineseg_Polygon2D(Lineseg(*itA, *itNext), polygonB, pAABBB)) - { - return true; - } - } - return false; - } - - - /// Checks if a triangle (defined by three vertices) overlaps a polygon (defined - /// by a container of sorted points), all in 2D only (ignoring z). - template - inline bool Triangle_Polygon2D(const Vec3_tpl& p0, const Vec3_tpl& p1, const Vec3_tpl& p2, - const VecContainer& polygon) - { - // Check for triangle points within the poly - if (Point_Polygon2D(p0, polygon)) - { - return true; - } - if (Point_Polygon2D(p1, polygon)) - { - return true; - } - if (Point_Polygon2D(p2, polygon)) - { - return true; - } - - // check the poly points against the triangle - static std::vector triangle; - triangle.clear(); - triangle.push_back(p0); - triangle.push_back(p1); - triangle.push_back(p2); - - typename VecContainer::const_iterator it; - for (it = polygon.begin(); it != polygon.end(); ++it) - { - if (Point_Polygon2D(*it, triangle)) - { - return true; - } - } - - // finally check the edges - if (Overlap::Lineseg_Polygon2D(Lineseg(p0, p1), polygon)) - { - return true; - } - if (Overlap::Lineseg_Polygon2D(Lineseg(p1, p2), polygon)) - { - return true; - } - if (Overlap::Lineseg_Polygon2D(Lineseg(p2, p0), polygon)) - { - return true; - } - return false; - } - - //----------------------------------------------------------------------------------------- - - - //! check if a Lineseg and a Sphere overlap - inline bool Lineseg_Sphere(const Lineseg& ls, const ::Sphere& s) - { - float radius2 = s.radius * s.radius; - - //check if one of the two edpoints of the line is inside the sphere - Vec3 diff = ls.end - s.center; - if (diff.x * diff.x + diff.y * diff.y + diff.z * diff.z <= radius2) - { - return true; - } - - Vec3 AC = s.center - ls.start; - if (AC.x * AC.x + AC.y * AC.y + AC.z * AC.z <= radius2) - { - return true; - } - - //check distance from the sphere to the line - Vec3 AB = ls.end - ls.start; - - float r = (AC.x * AB.x + AC.y * AB.y + AC.z * AB.z) / (AB.x * AB.x + AB.y * AB.y + AB.z * AB.z); - - //projection falls outside the line - if (r < 0 || r > 1) - { - return false; - } - - //check if the distance from the line to the center of the sphere is less than radius - Vec3 point = ls.start + r * AB; - if ((point.x - s.center.x) * (point.x - s.center.x) + (point.y - s.center.y) * (point.y - s.center.y) + (point.z - s.center.z) * (point.z - s.center.z) > radius2) - { - return false; - } - - return true; - } - - - /*! - * we use the SEPARATING AXIS TEST to check if a Linesegment overlap an AABB. - * - * Example: - * bool result=Overlap::Lineseg_AABB( ls, pos,aabb ); - */ - inline bool Lineseg_AABB (const Lineseg& ls, const AABB& aabb) - { - //calculate the half-length-vectors of the AABB - Vec3 h = (aabb.max - aabb.min) * 0.5f; - //"t" is the transfer-vector from one center to the other - Vec3 t = (ls.start + ls.end) * 0.5f - (aabb.max + aabb.min) * 0.5f; - //calculate line-direction - Vec3 ld = (ls.end - ls.start) * 0.5f; - if (fabsf(t.x) > (h.x + fabsf(ld.x))) - { - return 0; - } - if (fabsf(t.y) > (h.y + fabsf(ld.y))) - { - return 0; - } - if (fabsf(t.z) > (h.z + fabsf(ld.z))) - { - return 0; - } - if (fabsf(t.z * ld.y - t.y * ld.z) > (fabsf(h.y * ld.z) + fabsf(h.z * ld.y))) - { - return 0; - } - if (fabsf(t.x * ld.z - t.z * ld.x) > (fabsf(h.x * ld.z) + fabsf(h.z * ld.x))) - { - return 0; - } - if (fabsf(t.y * ld.x - t.x * ld.y) > (fabsf(h.x * ld.y) + fabsf(h.y * ld.x))) - { - return 0; - } - return 1; //no separating axis found, objects overlap - } - - /// 2D seaparating axis test - ignores z - inline bool Lineseg_AABB2D (const Lineseg& ls, const AABB& aabb) - { - //calculate the half-length-vectors of the AABB - Vec3 h = (aabb.max - aabb.min) * 0.5f; - //"t" is the transfer-vector from one center to the other - Vec3 t = (ls.start + ls.end) * 0.5f - (aabb.max + aabb.min) * 0.5f; - //calculate line-direction - Vec3 ld = (ls.end - ls.start) * 0.5f; - if (fabsf(t.x) > (h.x + fabsf(ld.x))) - { - return 0; - } - if (fabsf(t.y) > (h.y + fabsf(ld.y))) - { - return 0; - } - if (fabsf(t.y * ld.x - t.x * ld.y) > (fabsf(h.x * ld.y) + fabsf(h.y * ld.x))) - { - return 0; - } - return 1; //no separating axis found, objects overlap - } - - - - /*! - * we use the SEPARATING AXIS TEST to check if two OBB's overlap. - * - * Example: - * bool result=Overlap::Lineseg_OBB( lineseg, pos,obb ); - */ - inline bool Lineseg_OBB (const Lineseg& ls, const Vec3& pos, const OBB& obb) - { - //the new center-position of Lineseg and OBB in world-space - Vec3 wposobb = obb.m33 * obb.c + pos; - Vec3 wposls = (ls.start + ls.end) * 0.5f; - //"t" is the transfer-vector from one center to the other - Vec3 t = (wposls - wposobb) * obb.m33; - //calculate line-direction in local obb-space - Vec3 ld = ((ls.end - ls.start) * obb.m33) * 0.5f; - if (fabsf(t.x) > (obb.h.x + fabsf(ld.x))) - { - return 0; - } - if (fabsf(t.y) > (obb.h.y + fabsf(ld.y))) - { - return 0; - } - if (fabsf(t.z) > (obb.h.z + fabsf(ld.z))) - { - return 0; - } - if (fabsf(t.z * ld.y - t.y * ld.z) > (fabsf(obb.h.y * ld.z) + fabsf(obb.h.z * ld.y))) - { - return 0; - } - if (fabsf(t.x * ld.z - t.z * ld.x) > (fabsf(obb.h.x * ld.z) + fabsf(obb.h.z * ld.x))) - { - return 0; - } - if (fabsf(t.y * ld.x - t.x * ld.y) > (fabsf(obb.h.x * ld.y) + fabsf(obb.h.y * ld.x))) - { - return 0; - } - return 1; //no separating axis found, objects overlap - } - - - - - /*! - * - * overlap-test between a line and a triangle. - * IMPORTANT: this is a single-sided test. That means its not enough - * that the triangle and line overlap, its also important that the triangle - * is "visible" when you are looking along the line-direction. - * - * If you need a double-sided test, you'll have to call this function twice with - * reversed order of triangle vertices. - * - * return values - * return "true" if line and triangle overlap. - * - */ - inline bool Line_Triangle(const Line& line, const Vec3& v0, const Vec3& v1, const Vec3& v2) - { - const float Epsilon = 0.0000001f; - - Vec3 edgeA = v1 - v0; - Vec3 edgeB = v2 - v0; - - Vec3 dir = line.direction; - - Vec3 p = dir.Cross(edgeA); - Vec3 t = line.pointonline - v0; - Vec3 q = t.Cross(edgeB); - - float dot = edgeB.Dot(p); - - float u = t.Dot(p); - float v = dir.Dot(q); - - float DotGreaterThanEpsilon = dot - Epsilon; - float VGreaterEqualThanZero = v; - float UGreaterEqualThanZero = u; - float UVLessThanDot = dot - (u + v); - float ULessThanDot = dot - u; - - float UVGreaterEqualThanZero = (float)fsel(VGreaterEqualThanZero, UGreaterEqualThanZero, VGreaterEqualThanZero); - float UUVLessThanDot = (float)fsel(UVLessThanDot, ULessThanDot, UVLessThanDot); - float BothGood = (float)fsel(UVGreaterEqualThanZero, UUVLessThanDot, UVGreaterEqualThanZero); - float AllGood = (float)fsel(DotGreaterThanEpsilon, BothGood, DotGreaterThanEpsilon); - - return AllGood >= 0.0f; - } - - - /*! - * - * overlap-test between a ray and a triangle. - * IMPORTANT: this is a single-sided test. That means its not sufficient - * that the triangle and ray overlap, its also important that the triangle - * is "visible" when you are looking from the origin along the ray-direction. - * - * If you need a double-sided test, you'll have to call this function twice with - * reversed order of triangle vertices. - * - * return values - * return "true" if ray and triangle overlap. - */ - inline bool Ray_Triangle(const Ray& ray, const Vec3& v0, const Vec3& v1, const Vec3& v2) - { - const float Epsilon = 0.0000001f; - - Vec3 edgeA = v1 - v0; - Vec3 edgeB = v2 - v0; - - Vec3 dir = ray.direction; - - Vec3 p = dir.Cross(edgeA); - Vec3 t = ray.origin - v0; - Vec3 q = t.Cross(edgeB); - - float dot = edgeB.Dot(p); - - float u = t.Dot(p); - float v = dir.Dot(q); - - float DotGreaterThanEpsilon = dot - Epsilon; - float VGreaterEqualThanZero = v; - float UGreaterEqualThanZero = u; - float UVLessThanDot = dot - (u + v); - float ULessThanDot = dot - u; - - float UVGreaterEqualThanZero = (float)fsel(VGreaterEqualThanZero, UGreaterEqualThanZero, VGreaterEqualThanZero); - float UUVLessThanDot = (float)fsel(UVLessThanDot, ULessThanDot, UVLessThanDot); - float BothGood = (float)fsel(UVGreaterEqualThanZero, UUVLessThanDot, UVGreaterEqualThanZero); - float AllGood = (float)fsel(DotGreaterThanEpsilon, BothGood, DotGreaterThanEpsilon); - - if (AllGood < 0.0f) - { - return false; - } - - float dt = edgeA.Dot(q) / dot; - - Vec3 result = (dir * dt) + ray.origin; - - float AfterStart = (result - ray.origin).Dot(dir); - - return AfterStart >= 0.0f; - } - - /*! - * - * overlap-test between line-segment and a triangle. - * IMPORTANT: this is a single-sided test. That means its not sufficient - * that the triangle and line-segment overlap, its also important that the triangle - * is "visible" when you are looking along the linesegment from "start" to "end". - * - * If you need a double-sided test, you'll have to call this function twice with - * reversed order of triangle vertices. - * - * return values - * return "true" if linesegment and triangle overlap. - */ - inline bool Lineseg_Triangle(const Lineseg& lineseg, const Vec3& v0, const Vec3& v1, const Vec3& v2) - { - const float Epsilon = 0.0000001f; - - Vec3 edgeA = v1 - v0; - Vec3 edgeB = v2 - v0; - - Vec3 dir = lineseg.end - lineseg.start; - - Vec3 p = dir.Cross(edgeA); - Vec3 t = lineseg.start - v0; - Vec3 q = t.Cross(edgeB); - - float dot = edgeB.Dot(p); - - float u = t.Dot(p); - float v = dir.Dot(q); - - float DotGreaterThanEpsilon = dot - Epsilon; - float VGreaterEqualThanZero = v; - float UGreaterEqualThanZero = u; - float UVLessThanDot = dot - (u + v); - float ULessThanDot = dot - u; - - float UVGreaterEqualThanZero = (float)fsel(VGreaterEqualThanZero, UGreaterEqualThanZero, VGreaterEqualThanZero); - float UUVLessThanDot = (float)fsel(UVLessThanDot, ULessThanDot, UVLessThanDot); - float BothGood = (float)fsel(UVGreaterEqualThanZero, UUVLessThanDot, UVGreaterEqualThanZero); - float AllGood = (float)fsel(DotGreaterThanEpsilon, BothGood, DotGreaterThanEpsilon); - - if (AllGood < 0.0f) - { - return false; - } - - float dt = edgeA.Dot(q) / dot; - - Vec3 result = (dir * dt) + lineseg.start; - - float AfterStart = (result - lineseg.start).Dot(dir); - float BeforeEnd = -(result - lineseg.end).Dot(dir); - float Within = (float)fsel(AfterStart, BeforeEnd, AfterStart); - - return Within >= 0.0f; - } - - /*---------------------------------------------------------------------------------- - * Sphere_AABB - * Sphere and AABB are assumed to be in the same space - * - * Example: - * bool result=Overlap::Sphere_AABB_Inside( sphere, aabb ); - * - * 0 = no overlap - * 1 = overlap - *----------------------------------------------------------------------------------*/ - ILINE bool Sphere_AABB(const ::Sphere& s, const AABB& aabb) - { - Vec3 center(s.center); - - Vec3 aabb_min(aabb.min); - Vec3 aabb_max(aabb.max); - - float radiusSq = s.radius * s.radius; - - float x = (float)fsel(aabb_min.x - center.x, center.x - aabb_min.x, fsel(center.x - aabb_max.x, center.x - aabb_max.x, 0.0f)); - float y = (float)fsel(aabb_min.y - center.y, center.y - aabb_min.y, fsel(center.y - aabb_max.y, center.y - aabb_max.y, 0.0f)); - float z = (float)fsel(aabb_min.z - center.z, center.z - aabb_min.z, fsel(center.z - aabb_max.z, center.z - aabb_max.z, 0.0f)); - - return (x * x + y * y + z * z) < radiusSq; - } - - // As Sphere_AABB but ignores z parts - ILINE bool Sphere_AABB2D(const ::Sphere& s, const AABB& aabb) - { - Vec3 center(s.center); - - Vec3 aabb_min(aabb.min); - Vec3 aabb_max(aabb.max); - - float radiusSq = s.radius * s.radius; - - float x = (float)fsel(aabb_min.x - center.x, center.x - aabb_min.x, fsel(center.x - aabb_max.x, center.x - aabb_max.x, 0.0f)); - float y = (float)fsel(aabb_min.y - center.y, center.y - aabb_min.y, fsel(center.y - aabb_max.y, center.y - aabb_max.y, 0.0f)); - - return (x * x + y * y) < radiusSq; - } - - - /*! - * - * conventional method to check if a Sphere and an AABB overlap, - * or if the Sphere is completely inside the AABB. - * Sphere and AABB are assumed to be in the same space - * - * Example: - * bool result=Overlap::Sphere_AABB_Inside( sphere, aabb ); - * - * return values: - * 0x00 = no overlap - * 0x01 = Sphere and AABB overlap - * 0x02 = Sphere in inside AABB - */ - ILINE char Sphere_AABB_Inside(const ::Sphere& s, const AABB& aabb) - { - if (Sphere_AABB(s, aabb)) - { - Vec3 amin = aabb.min - s.center; - Vec3 amax = aabb.max - s.center; - if (amin.x >= (-s.radius)) - { - return 1; - } - if (amin.y >= (-s.radius)) - { - return 1; - } - if (amin.z >= (-s.radius)) - { - return 1; - } - if (amax.x <= (+s.radius)) - { - return 1; - } - if (amax.y <= (+s.radius)) - { - return 1; - } - if (amax.z <= (+s.radius)) - { - return 1; - } - //yes, its inside - return 2; - } - return 0; - } - - //---------------------------------------------------------------------------------- - // Sphere_OBB - // VERY IMPORTANT: Sphere is assumed to be in the space of the OBB, otherwise it won't work - // - //--- 0 = no overlap --------------------------- - //--- 1 = overlap ----------------- - //---------------------------------------------------------------------------------- - inline bool Sphere_OBB(const ::Sphere& s, const OBB& obb) - { - //first we transform the sphere-center into the AABB-space of the OBB - Vec3 SphereInOBBSpace = s.center * obb.m33; - //the rest ist the same as the "Overlap::Sphere_AABB" calculation - float quatradius = s.radius * s.radius; - Vec3 quat(0, 0, 0); - AABB aabb = AABB(obb.c - obb.h, obb.c + obb.h); - if (SphereInOBBSpace.x < aabb.min.x) - { - quat.x = SphereInOBBSpace.x - aabb.min.x; - } - else if (SphereInOBBSpace.x > aabb.max.x) - { - quat.x = SphereInOBBSpace.x - aabb.max.x; - } - if (SphereInOBBSpace.y < aabb.min.y) - { - quat.y = SphereInOBBSpace.y - aabb.min.y; - } - else if (SphereInOBBSpace.y > aabb.max.y) - { - quat.y = SphereInOBBSpace.y - aabb.max.y; - } - if (SphereInOBBSpace.z < aabb.min.z) - { - quat.z = SphereInOBBSpace.z - aabb.min.z; - } - else if (SphereInOBBSpace.z > aabb.max.z) - { - quat.z = SphereInOBBSpace.z - aabb.max.z; - } - return((quat | quat) < quatradius); - } - - - //---------------------------------------------------------------------------------- - // Sphere_Sphere overlap test - // - //--- 0 = no overlap --------------------------- - //--- 1 = overlap ----------------- - //---------------------------------------------------------------------------------- - inline bool Sphere_Sphere(const ::Sphere& s1, const ::Sphere& s2) - { - Vec3 distc = s1.center - s2.center; - f32 sqrad = (s1.radius + s2.radius) * (s1.radius + s2.radius); - return (sqrad > (distc | distc)); - } - - ILINE bool HWVSphere_HWVSphere(const HWVSphere& s1, const HWVSphere& s2) - { - simdf fTotalRadius = SIMDFAdd(s1.radius, s2.radius); - hwvec3 distc = HWVSub(s1.center, s2.center); - simdf fTotalRadiusSqr = SIMDFMult(fTotalRadius, fTotalRadius); - simdf fDistanceSqr = HWV3Dot(distc, distc); - return SIMDFLessThanEqualB(fDistanceSqr, fTotalRadiusSqr); - } - - //---------------------------------------------------------------------------------- - // Sphere_Triangle overlap test - // - //--- 0 = no overlap --------------------------- - //--- 1 = overlap ----------------- - //---------------------------------------------------------------------------------- - template - ILINE bool Sphere_Triangle(const ::Sphere& s, const Triangle_tpl& t) - { - //create a "bouding sphere" around triangle for fast rejection test - Vec3_tpl middle = (t.v0 + t.v1 + t.v2) * (1 / 3.0f); - Vec3_tpl ov0 = t.v0 - middle; - Vec3_tpl ov1 = t.v1 - middle; - Vec3_tpl ov2 = t.v2 - middle; - F SqRad0 = (ov0 | ov0); - F SqRad1 = (ov1 | ov1); - F SqRad2 = (ov2 | ov2); - - SqRad0 = (F)fsel(SqRad0 - SqRad1, SqRad0, SqRad1); - SqRad0 = (F)fsel(SqRad0 - SqRad2, SqRad0, SqRad2); - - //first simple rejection-test... - if (Sphere_Sphere(s, ::Sphere(middle, sqrt_tpl(SqRad0))) == 0) - { - return 0; //overlap not possible - } - //...and now the hardcore-test! - if ((s.radius * s.radius) < Distance::Point_TriangleSq(s.center, t)) - { - return 0; - } - return 1; //sphere and triangle are overlapping - } - - ILINE bool HWVSphere_TriangleFromPoints(const HWVSphere& s, const hwvec3& t0, const hwvec3& t1, const hwvec3& t2) - { - //create a "bounding sphere" around triangle for fast rejection test - SIMDFConstant(fOneThird, 1.0f / 3.0f); - - hwvec3 middle = HWVMultiplySIMDF(HWVAdd(t0, HWVAdd(t1, t2)), fOneThird); - - hwvec3 ov0 = HWVSub(t0, middle); - hwvec3 ov1 = HWVSub(t1, middle); - hwvec3 ov2 = HWVSub(t2, middle); - - simdf SqRad0 = HWV3Dot(ov0, ov0); - simdf SqRad1 = HWV3Dot(ov1, ov1); - simdf SqRad2 = HWV3Dot(ov2, ov2); - - SqRad0 = SIMDFMax(SqRad0, SqRad1); - SqRad0 = SIMDFMax(SqRad0, SqRad2); - - //first simple rejection-test... - //if( HWVSphere_HWVSphere(s, HWVSphere(middle, SIMDFSqrtEstFast(SqRad0)))==0 ) - if (HWVSphere_HWVSphere(s, HWVSphere(middle, SIMDFSqrtEst(SqRad0))) == 0) - { - return 0; //overlap not possible - } - else - { - //...and now the hardcore-test! - simdf fRadiusSq = SIMDFMult(s.radius, s.radius); - simdf fDistToTriangleSq = Distance::Point_TriangleByPointsSq(s.center, t0, t1, t2); - - return SIMDFLessThanEqualB(fDistToTriangleSq, fRadiusSq); - } - } - - /*! - * - * we use the SEPARATING AXIS TEST to check if a triangle and AABB overlap. - * - * Example: - * bool result=Overlap::AABB_Triangle( pos,aabb, tv0,tv1,tv2 ); - * - */ - inline bool AABB_Triangle (const AABB& aabb, const Vec3& tv0, const Vec3& tv1, const Vec3& tv2) - { - //------ convert AABB into half-length AABB ----------- - Vec3 h = (aabb.max - aabb.min) * 0.5f; //calculate the half-length-vectors - Vec3 c = (aabb.max + aabb.min) * 0.5f; //the center is relative to the PIVOT - - //move everything so that the boxcenter is in (0,0,0) - Vec3 v0 = tv0 - c; - Vec3 v1 = tv1 - c; - Vec3 v2 = tv2 - c; - - //compute triangle edges - Vec3 e0 = v1 - v0; - Vec3 e1 = v2 - v1; - Vec3 e2 = v0 - v2; - - //-------------------------------------------------------------------------------------- - // use SEPARATING AXIS THEOREM to test overlap between AABB and triangle - // cross-product(edge from triangle, {x,y,z}-direction), this are 3x3=9 tests - //-------------------------------------------------------------------------------------- - float min, max, p0, p1, p2, rad, fex, fey, fez; - fex = fabsf(e0.x); - fey = fabsf(e0.y); - fez = fabsf(e0.z); - - //AXISTEST_X01(e0.z, e0.y, fez, fey); - p0 = e0.z * v0.y - e0.y * v0.z; - p2 = e0.z * v2.y - e0.y * v2.z; - if (p0 < p2) - { - min = p0; - max = p2; - } - else - { - min = p2; - max = p0; - } - rad = fez * h.y + fey * h.z; - if (min > rad || max < -rad) - { - return 0; - } - - //AXISTEST_Y02(e0.z, e0.x, fez, fex); - p0 = -e0.z * v0.x + e0.x * v0.z; - p2 = -e0.z * v2.x + e0.x * v2.z; - if (p0 < p2) - { - min = p0; - max = p2; - } - else - { - min = p2; - max = p0; - } - rad = fez * h.x + fex * h.z; - if (min > rad || max < -rad) - { - return 0; - } - - //AXISTEST_Z12(e0.y, e0.x, fey, fex); - p1 = e0.y * v1.x - e0.x * v1.y; - p2 = e0.y * v2.x - e0.x * v2.y; - if (p2 < p1) - { - min = p2; - max = p1; - } - else - { - min = p1; - max = p2; - } - rad = fey * h.x + fex * h.y; - if (min > rad || max < -rad) - { - return 0; - } - - //----------------------------------------------- - - fex = fabsf(e1.x); - fey = fabsf(e1.y); - fez = fabsf(e1.z); - //AXISTEST_X01(e1.z, e1.y, fez, fey); - p0 = e1.z * v0.y - e1.y * v0.z; - p2 = e1.z * v2.y - e1.y * v2.z; - if (p0 < p2) - { - min = p0; - max = p2; - } - else - { - min = p2; - max = p0; - } - rad = fez * h.y + fey * h.z; - if (min > rad || max < -rad) - { - return 0; - } - - //AXISTEST_Y02(e1.z, e1.x, fez, fex); - p0 = -e1.z * v0.x + e1.x * v0.z; - p2 = -e1.z * v2.x + e1.x * v2.z; - if (p0 < p2) - { - min = p0; - max = p2; - } - else - { - min = p2; - max = p0; - } - rad = fez * h.x + fex * h.z; - if (min > rad || max < -rad) - { - return 0; - } - - //AXISTEST_Z0(e1.y, e1.x, fey, fex); - p0 = e1.y * v0.x - e1.x * v0.y; - p1 = e1.y * v1.x - e1.x * v1.y; - if (p0 < p1) - { - min = p0; - max = p1; - } - else - { - min = p1; - max = p0; - } - rad = fey * h.x + fex * h.y; - if (min > rad || max < -rad) - { - return 0; - } - - //----------------------------------------------- - - fex = fabsf(e2.x); - fey = fabsf(e2.y); - fez = fabsf(e2.z); - //AXISTEST_X2(e2.z, e2.y, fez, fey); - p0 = e2.z * v0.y - e2.y * v0.z; - p1 = e2.z * v1.y - e2.y * v1.z; - if (p0 < p1) - { - min = p0; - max = p1; - } - else - { - min = p1; - max = p0; - } - rad = fez * h.y + fey * h.z; - if (min > rad || max < -rad) - { - return 0; - } - - //AXISTEST_Y1(e2.z, e2.x, fez, fex); - p0 = -e2.z * v0.x + e2.x * v0.z; - p1 = -e2.z * v1.x + e2.x * v1.z; - if (p0 < p1) - { - min = p0; - max = p1; - } - else - { - min = p1; - max = p0; - } - rad = fez * h.x + fex * h.z; - if (min > rad || max < -rad) - { - return 0; - } - - //AXISTEST_Z12(e2.y, e2.x, fey, fex); - p1 = e2.y * v1.x - e2.x * v1.y; - p2 = e2.y * v2.x - e2.x * v2.y; - if (p2 < p1) - { - min = p2; - max = p1; - } - else - { - min = p1; - max = p2; - } - rad = fey * h.x + fex * h.y; - if (min > rad || max < -rad) - { - return 0; - } - - //the {x,y,z}-directions (actually, since we use the AABB of the triangle we don't even need to test these) - //first test overlap in the {x,y,z}-directions - //find min, max of the triangle each direction, and test for overlap in that direction -- - //this is equivalent to testing a minimal AABB around the triangle against the AABB - AABB taabb; - FINDMINMAX(v0.x, v1.x, v2.x, taabb.min.x, taabb.max.x); - FINDMINMAX(v0.y, v1.y, v2.y, taabb.min.y, taabb.max.y); - FINDMINMAX(v0.z, v1.z, v2.z, taabb.min.z, taabb.max.z); - - //test in X-direction - FINDMINMAX(v0.x, v1.x, v2.x, taabb.min.x, taabb.max.x); - if (taabb.min.x > h.x || taabb.max.x < -h.x) - { - return 0; - } - - //test in Y-direction - FINDMINMAX(v0.y, v1.y, v2.y, taabb.min.y, taabb.max.y); - if (taabb.min.y > h.y || taabb.max.y < -h.y) - { - return 0; - } - - //test in Z-direction - FINDMINMAX(v0.z, v1.z, v2.z, taabb.min.z, taabb.max.z); - if (taabb.min.z > h.z || taabb.max.z < -h.z) - { - return 0; - } - - //test if the box intersects the plane of the triangle - //compute plane equation of triangle: normal*x+d=0 - Plane_tpl plane = Plane_tpl::CreatePlane((e0 % e1), v0); - - Vec3 vmin, vmax; - if (plane.n.x > 0.0f) - { - vmin.x = -h.x; - vmax.x = +h.x; - } - else - { - vmin.x = +h.x; - vmax.x = -h.x; - } - if (plane.n.y > 0.0f) - { - vmin.y = -h.y; - vmax.y = +h.y; - } - else - { - vmin.y = +h.y; - vmax.y = -h.y; - } - if (plane.n.z > 0.0f) - { - vmin.z = -h.z; - vmax.z = +h.z; - } - else - { - vmin.z = +h.z; - vmax.z = -h.z; - } - if ((plane | vmin) > 0.0f) - { - return 0; - } - if ((plane | vmax) < 0.0f) - { - return 0; - } - return 1; - } - - - - /*! - * - * we use the SEPARATING AXIS TEST to check if a triangle and an OBB overlaps. - * - * Example: - * bool result=Overlap::OBB_Trinagle( pos1,obb1, tv0,tv1,tv2 ); - * - */ - inline bool OBB_Triangle(const Vec3& pos, const OBB& obb, const Vec3& tv0, const Vec3& tv1, const Vec3& tv2) - { - Vec3 p = obb.m33 * obb.c + pos; //the new center-position in world-space - - //move everything so that the boxcenter is in (0,0,0) - Vec3 v0 = (tv0 - p) * obb.m33; //pre-transform - Vec3 v1 = (tv1 - p) * obb.m33; //pre-transform - Vec3 v2 = (tv2 - p) * obb.m33; //pre-transform - - - //compute triangle edges - Vec3 e0 = v1 - v0; - Vec3 e1 = v2 - v1; - Vec3 e2 = v0 - v2; - - //-------------------------------------------------------------------------------------- - // use SEPARATING AXIS THEOREM to test intersection between AABB and triangle - // cross-product(edge from triangle, {x,y,z}-direction), this are 3x3=9 tests - //-------------------------------------------------------------------------------------- - float min, max, p0, p1, p2, rad, fex, fey, fez; - fex = fabsf(e0.x); - fey = fabsf(e0.y); - fez = fabsf(e0.z); - - //AXISTEST_X01(e0.z, e0.y, fez, fey); - p0 = e0.z * v0.y - e0.y * v0.z; - p2 = e0.z * v2.y - e0.y * v2.z; - if (p0 < p2) - { - min = p0; - max = p2; - } - else - { - min = p2; - max = p0; - } - rad = fez * obb.h.y + fey * obb.h.z; - if (min > rad || max < -rad) - { - return 0; - } - - //AXISTEST_Y02(e0.z, e0.x, fez, fex); - p0 = -e0.z * v0.x + e0.x * v0.z; - p2 = -e0.z * v2.x + e0.x * v2.z; - if (p0 < p2) - { - min = p0; - max = p2; - } - else - { - min = p2; - max = p0; - } - rad = fez * obb.h.x + fex * obb.h.z; - if (min > rad || max < -rad) - { - return 0; - } - - //AXISTEST_Z12(e0.y, e0.x, fey, fex); - p1 = e0.y * v1.x - e0.x * v1.y; - p2 = e0.y * v2.x - e0.x * v2.y; - if (p2 < p1) - { - min = p2; - max = p1; - } - else - { - min = p1; - max = p2; - } - rad = fey * obb.h.x + fex * obb.h.y; - if (min > rad || max < -rad) - { - return 0; - } - - //----------------------------------------------- - - fex = fabsf(e1.x); - fey = fabsf(e1.y); - fez = fabsf(e1.z); - //AXISTEST_X01(e1.z, e1.y, fez, fey); - p0 = e1.z * v0.y - e1.y * v0.z; - p2 = e1.z * v2.y - e1.y * v2.z; - if (p0 < p2) - { - min = p0; - max = p2; - } - else - { - min = p2; - max = p0; - } - rad = fez * obb.h.y + fey * obb.h.z; - if (min > rad || max < -rad) - { - return 0; - } - - //AXISTEST_Y02(e1.z, e1.x, fez, fex); - p0 = -e1.z * v0.x + e1.x * v0.z; - p2 = -e1.z * v2.x + e1.x * v2.z; - if (p0 < p2) - { - min = p0; - max = p2; - } - else - { - min = p2; - max = p0; - } - rad = fez * obb.h.x + fex * obb.h.z; - if (min > rad || max < -rad) - { - return 0; - } - - //AXISTEST_Z0(e1.y, e1.x, fey, fex); - p0 = e1.y * v0.x - e1.x * v0.y; - p1 = e1.y * v1.x - e1.x * v1.y; - if (p0 < p1) - { - min = p0; - max = p1; - } - else - { - min = p1; - max = p0; - } - rad = fey * obb.h.x + fex * obb.h.y; - if (min > rad || max < -rad) - { - return 0; - } - - //----------------------------------------------- - - fex = fabsf(e2.x); - fey = fabsf(e2.y); - fez = fabsf(e2.z); - //AXISTEST_X2(e2.z, e2.y, fez, fey); - p0 = e2.z * v0.y - e2.y * v0.z; - p1 = e2.z * v1.y - e2.y * v1.z; - if (p0 < p1) - { - min = p0; - max = p1; - } - else - { - min = p1; - max = p0; - } - rad = fez * obb.h.y + fey * obb.h.z; - if (min > rad || max < -rad) - { - return 0; - } - - //AXISTEST_Y1(e2.z, e2.x, fez, fex); - p0 = -e2.z * v0.x + e2.x * v0.z; - p1 = -e2.z * v1.x + e2.x * v1.z; - if (p0 < p1) - { - min = p0; - max = p1; - } - else - { - min = p1; - max = p0; - } - rad = fez * obb.h.x + fex * obb.h.z; - if (min > rad || max < -rad) - { - return 0; - } - - //AXISTEST_Z12(e2.y, e2.x, fey, fex); - p1 = e2.y * v1.x - e2.x * v1.y; - p2 = e2.y * v2.x - e2.x * v2.y; - if (p2 < p1) - { - min = p2; - max = p1; - } - else - { - min = p1; - max = p2; - } - rad = fey * obb.h.x + fex * obb.h.y; - if (min > rad || max < -rad) - { - return 0; - } - - //the {x,y,z}-directions (actually, since we use the AABB of the triangle we don't even need to test these) - //first test overlap in the {x,y,z}-directions - //find min, max of the triangle each direction, and test for overlap in that direction -- - //this is equivalent to testing a minimal AABB around the triangle against the AABB - AABB taabb; - FINDMINMAX(v0.x, v1.x, v2.x, taabb.min.x, taabb.max.x); - FINDMINMAX(v0.y, v1.y, v2.y, taabb.min.y, taabb.max.y); - FINDMINMAX(v0.z, v1.z, v2.z, taabb.min.z, taabb.max.z); - - // test in X-direction - FINDMINMAX(v0.x, v1.x, v2.x, taabb.min.x, taabb.max.x); - if (taabb.min.x > obb.h.x || taabb.max.x < -obb.h.x) - { - return 0; - } - - // test in Y-direction - FINDMINMAX(v0.y, v1.y, v2.y, taabb.min.y, taabb.max.y); - if (taabb.min.y > obb.h.y || taabb.max.y < -obb.h.y) - { - return 0; - } - - // test in Z-direction - FINDMINMAX(v0.z, v1.z, v2.z, taabb.min.z, taabb.max.z); - if (taabb.min.z > obb.h.z || taabb.max.z < -obb.h.z) - { - return 0; - } - - //test if the box overlaps the plane of the triangle - //compute plane equation of triangle: normal*x+d=0 - Plane_tpl plane = Plane_tpl::CreatePlane((e0 % e1), v0); - - Vec3 vmin, vmax; - if (plane.n.x > 0.0f) - { - vmin.x = -obb.h.x; - vmax.x = +obb.h.x; - } - else - { - vmin.x = +obb.h.x; - vmax.x = -obb.h.x; - } - if (plane.n.y > 0.0f) - { - vmin.y = -obb.h.y; - vmax.y = +obb.h.y; - } - else - { - vmin.y = +obb.h.y; - vmax.y = -obb.h.y; - } - if (plane.n.z > 0.0f) - { - vmin.z = -obb.h.z; - vmax.z = +obb.h.z; - } - else - { - vmin.z = +obb.h.z; - vmax.z = -obb.h.z; - } - if ((plane | vmin) > 0.0f) - { - return 0; - } - if ((plane | vmax) < 0.0f) - { - return 0; - } - return 1; - } - - - - - - - - - - /*! - * - * conventional method to check if two AABB's overlap. - * both AABBs are assumed to be in the same space - * - * Example: - * bool result=Overlap::AABB_AABB( aabb1, aabb2 ); - * - */ - ILINE bool AABB_AABB(const AABB& aabb1, const AABB& aabb2) - { - if (aabb1.min.x >= aabb2.max.x) - { - return 0; - } - if (aabb1.min.y >= aabb2.max.y) - { - return 0; - } - if (aabb1.min.z >= aabb2.max.z) - { - return 0; - } - if (aabb1.max.x <= aabb2.min.x) - { - return 0; - } - if (aabb1.max.y <= aabb2.min.y) - { - return 0; - } - if (aabb1.max.z <= aabb2.min.z) - { - return 0; - } - return 1; //the aabb's overlap - } - - /// AABB overlap test - but ignores z values - ILINE bool AABB_AABB2D(const AABB& aabb1, const AABB& aabb2) - { - if (aabb1.min.x >= aabb2.max.x) - { - return 0; - } - if (aabb1.min.y >= aabb2.max.y) - { - return 0; - } - if (aabb1.max.x <= aabb2.min.x) - { - return 0; - } - if (aabb1.max.y <= aabb2.min.y) - { - return 0; - } - return 1; //the aabb's overlap - } - - - /*! - * - * Conventional method to check if two AABB's overlap. - * Both AABBs are in local object space. Used the position-vector - * to translate them into world-space - * - * Example: - * bool result=Overlap::AABB_AABB( pos1,aabb1, pos2,aabb2 ); - * - */ - ILINE bool AABB_AABB(const Vec3& pos1, const AABB& aabb1, const Vec3& pos2, const AABB& aabb2) - { - AABB waabb1(aabb1.min + pos1, aabb1.max + pos1); - AABB waabb2(aabb2.min + pos2, aabb2.max + pos2); - return AABB_AABB(waabb1, waabb2); - } - - - /*! - * - * conventional method to check if two AABB's overlap - * or if AABB1 is comletely inside AABB2. - * both AABBs are assumed to be in the same space - * - * Example: - * bool result=Overlap::AABB_AABB_Inside( aabb1, aabb2 ); - * - * return values: - * 0x00 = no overlap - * 0x01 = both AABBs one overlap - * 0x02 = AABB1 in inside AABB2 - */ - ILINE char AABB_AABB_Inside(const AABB& aabb1, const AABB& aabb2) - { - if (AABB_AABB(aabb1, aabb2)) - { - if (aabb1.min.x <= aabb2.min.x) - { - return 1; - } - if (aabb1.min.y <= aabb2.min.y) - { - return 1; - } - if (aabb1.min.z <= aabb2.min.z) - { - return 1; - } - if (aabb1.max.x >= aabb2.max.x) - { - return 1; - } - if (aabb1.max.y >= aabb2.max.y) - { - return 1; - } - if (aabb1.max.z >= aabb2.max.z) - { - return 1; - } - //yes, its inside - return 2; - } - return 0; - } - - - /*! - * - * we use the SEPARATING AXIS TEST to check if and AABB and an OBB overlap. - * - * Example: - * bool result=Overlap::AABB_OBB( aabb, pos,obb ); - * - */ - inline bool AABB_OBB (const AABB& aabb, const Vec3& pos, const OBB& obb) - { - Vec3 h = (aabb.max - aabb.min) * 0.5f; //calculate the half-length-vectors - Vec3 c = (aabb.max + aabb.min) * 0.5f; //the center in world-space - - //"t" is the transfer-vector from one center to the other - Vec3 t = obb.m33 * obb.c + pos - c; - - f32 ra, rb; - - //-------------------------------------------------------------------------- - //-- we use the vectors "1,0,0","0,1,0" and "0,0,1" as separating axis - //-------------------------------------------------------------------------- - rb = fabsf(obb.m33.m00 * obb.h.x) + fabsf(obb.m33.m01 * obb.h.y) + fabsf(obb.m33.m02 * obb.h.z); - if (fabsf(t.x) > (fabsf(h.x) + rb)) - { - return 0; - } - rb = fabsf(obb.m33.m10 * obb.h.x) + fabsf(obb.m33.m11 * obb.h.y) + fabsf(obb.m33.m12 * obb.h.z); - if (fabsf(t.y) > (fabsf(h.y) + rb)) - { - return 0; - } - rb = fabsf(obb.m33.m20 * obb.h.x) + fabsf(obb.m33.m21 * obb.h.y) + fabsf(obb.m33.m22 * obb.h.z); - if (fabsf(t.z) > (fabsf(h.z) + rb)) - { - return 0; - } - - //-------------------------------------------------------------------------- - //-- we use the orientation-vectors "Mx","My" and "Mz" as separating axis - //-------------------------------------------------------------------------- - ra = fabsf(obb.m33.m00 * h.x) + fabsf(obb.m33.m10 * h.y) + fabsf(obb.m33.m20 * h.z); - if (fabsf(t | Vec3(obb.m33.m00, obb.m33.m10, obb.m33.m20)) > (ra + obb.h.x)) - { - return 0; - } - ra = fabsf(obb.m33.m01 * h.x) + fabsf(obb.m33.m11 * h.y) + fabsf(obb.m33.m21 * h.z); - if (fabsf(t | Vec3(obb.m33.m01, obb.m33.m11, obb.m33.m21)) > (ra + obb.h.y)) - { - return 0; - } - ra = fabsf(obb.m33.m02 * h.x) + fabsf(obb.m33.m12 * h.y) + fabsf(obb.m33.m22 * h.z); - if (fabsf(t | Vec3(obb.m33.m02, obb.m33.m12, obb.m33.m22)) > (ra + obb.h.z)) - { - return 0; - } - - //--------------------------------------------------------------------- - //---- using 9 cross products we generate new separating axis - //--------------------------------------------------------------------- - const float e0 = h.x + h.y + h.z, e1 = obb.h.x + obb.h.y + obb.h.z, e = (e0 + e1 - fabsf(e0 - e1)) * 0.0001f; - ra = h.y * fabsf(obb.m33.m20) + h.z * fabsf(obb.m33.m10); - rb = obb.h.y * fabsf(obb.m33.m02) + obb.h.z * fabsf(obb.m33.m01); - if (fabsf(t.z * obb.m33.m10 - t.y * obb.m33.m20) > (ra + rb) + e) - { - return 0; - } - ra = h.y * fabsf(obb.m33.m21) + h.z * fabsf(obb.m33.m11); - rb = obb.h.x * fabsf(obb.m33.m02) + obb.h.z * fabsf(obb.m33.m00); - if (fabsf(t.z * obb.m33.m11 - t.y * obb.m33.m21) > (ra + rb) + e) - { - return 0; - } - ra = h.y * fabsf(obb.m33.m22) + h.z * fabsf(obb.m33.m12); - rb = obb.h.x * fabsf(obb.m33.m01) + obb.h.y * fabsf(obb.m33.m00); - if (fabsf(t.z * obb.m33.m12 - t.y * obb.m33.m22) > (ra + rb) + e) - { - return 0; - } - - - ra = h.x * fabsf(obb.m33.m20) + h.z * fabsf(obb.m33.m00); - rb = obb.h.y * fabsf(obb.m33.m12) + obb.h.z * fabsf(obb.m33.m11); - if (fabsf(t.x * obb.m33.m20 - t.z * obb.m33.m00) > (ra + rb) + e) - { - return 0; - } - ra = h.x * fabsf(obb.m33.m21) + h.z * fabsf(obb.m33.m01); - rb = obb.h.x * fabsf(obb.m33.m12) + obb.h.z * fabsf(obb.m33.m10); - if (fabsf(t.x * obb.m33.m21 - t.z * obb.m33.m01) > (ra + rb) + e) - { - return 0; - } - ra = h.x * fabsf(obb.m33.m22) + h.z * fabsf(obb.m33.m02); - rb = obb.h.x * fabsf(obb.m33.m11) + obb.h.y * fabsf(obb.m33.m10); - if (fabsf(t.x * obb.m33.m22 - t.z * obb.m33.m02) > (ra + rb) + e) - { - return 0; - } - - - ra = h.x * fabsf(obb.m33.m10) + h.y * fabsf(obb.m33.m00); - rb = obb.h.y * fabsf(obb.m33.m22) + obb.h.z * fabsf(obb.m33.m21); - if (fabsf(t.y * obb.m33.m00 - t.x * obb.m33.m10) > (ra + rb) + e) - { - return 0; - } - ra = h.x * fabsf(obb.m33.m11) + h.y * fabsf(obb.m33.m01); - rb = obb.h.x * fabsf(obb.m33.m22) + obb.h.z * fabsf(obb.m33.m20); - if (fabsf(t.y * obb.m33.m01 - t.x * obb.m33.m11) > (ra + rb) + e) - { - return 0; - } - ra = h.x * fabsf(obb.m33.m12) + h.y * fabsf(obb.m33.m02); - rb = obb.h.x * fabsf(obb.m33.m21) + obb.h.y * fabsf(obb.m33.m20); - if (fabsf(t.y * obb.m33.m02 - t.x * obb.m33.m12) > (ra + rb) + e) - { - return 0; - } - - //no separating axis found, we have an intersection - return 1; - } - - /*! - * - * we use the SEPARATING AXIS TEST to check if two OBB's overlap. - * - * Example: - * bool result=Overlap::OBB_OBB( pos1,obb1, pos2,obb2 ); - * - */ - inline bool OBB_OBB (const Vec3& pos1, const OBB& obb1, const Vec3& pos2, const OBB& obb2) - { - //tranform obb2 in local space of obb1 - Matrix33 M = obb1.m33.T() * obb2.m33; - - //the new center-position in world-space - Vec3 p1 = obb1.m33 * obb1.c + pos1; - Vec3 p2 = obb2.m33 * obb2.c + pos2; - - //"t" is the transfer-vector from one center to the other - Vec3 t = (p2 - p1) * obb1.m33; - - float ra, rb; - - //-------------------------------------------------------------------------- - //-- we use the vectors "1,0,0","0,1,0" and "0,0,1" as separating axis - //-------------------------------------------------------------------------- - rb = fabsf(M.m00 * obb2.h.x) + fabsf(M.m01 * obb2.h.y) + fabsf(M.m02 * obb2.h.z); - if (fabsf(t.x) > (fabsf(obb1.h.x) + rb)) - { - return 0; - } - rb = fabsf(M.m10 * obb2.h.x) + fabsf(M.m11 * obb2.h.y) + fabsf(M.m12 * obb2.h.z); - if (fabsf(t.y) > (fabsf(obb1.h.y) + rb)) - { - return 0; - } - rb = fabsf(M.m20 * obb2.h.x) + fabsf(M.m21 * obb2.h.y) + fabsf(M.m22 * obb2.h.z); - if (fabsf(t.z) > (fabsf(obb1.h.z) + rb)) - { - return 0; - } - - //-------------------------------------------------------------------------- - //-- we use the orientation-vectors "Mx","My" and "Mz" as separating axis - //-------------------------------------------------------------------------- - ra = fabsf(M.m00 * obb1.h.x) + fabsf(M.m10 * obb1.h.y) + fabsf(M.m20 * obb1.h.z); - if (fabsf(t | Vec3(M.m00, M.m10, M.m20)) > (ra + obb2.h.x)) - { - return 0; - } - ra = fabsf(M.m01 * obb1.h.x) + fabsf(M.m11 * obb1.h.y) + fabsf(M.m21 * obb1.h.z); - if (fabsf(t | Vec3(M.m01, M.m11, M.m21)) > (ra + obb2.h.y)) - { - return 0; - } - ra = fabsf(M.m02 * obb1.h.x) + fabsf(M.m12 * obb1.h.y) + fabsf(M.m22 * obb1.h.z); - if (fabsf(t | Vec3(M.m02, M.m12, M.m22)) > (ra + obb2.h.z)) - { - return 0; - } - - //--------------------------------------------------------------------- - //---- using 9 cross products we generate new separating axis - //--------------------------------------------------------------------- - ra = obb1.h.y * fabsf(M.m20) + obb1.h.z * fabsf(M.m10); - rb = obb2.h.y * fabsf(M.m02) + obb2.h.z * fabsf(M.m01); - if (fabsf(t.z * M.m10 - t.y * M.m20) > (ra + rb)) - { - return 0; - } - ra = obb1.h.y * fabsf(M.m21) + obb1.h.z * fabsf(M.m11); - rb = obb2.h.x * fabsf(M.m02) + obb2.h.z * fabsf(M.m00); - if (fabsf(t.z * M.m11 - t.y * M.m21) > (ra + rb)) - { - return 0; - } - ra = obb1.h.y * fabsf(M.m22) + obb1.h.z * fabsf(M.m12); - rb = obb2.h.x * fabsf(M.m01) + obb2.h.y * fabsf(M.m00); - if (fabsf(t.z * M.m12 - t.y * M.m22) > (ra + rb)) - { - return 0; - } - - - ra = obb1.h.x * fabsf(M.m20) + obb1.h.z * fabsf(M.m00); - rb = obb2.h.y * fabsf(M.m12) + obb2.h.z * fabsf(M.m11); - if (fabsf(t.x * M.m20 - t.z * M.m00) > (ra + rb)) - { - return 0; - } - ra = obb1.h.x * fabsf(M.m21) + obb1.h.z * fabsf(M.m01); - rb = obb2.h.x * fabsf(M.m12) + obb2.h.z * fabsf(M.m10); - if (fabsf(t.x * M.m21 - t.z * M.m01) > (ra + rb)) - { - return 0; - } - ra = obb1.h.x * fabsf(M.m22) + obb1.h.z * fabsf(M.m02); - rb = obb2.h.x * fabsf(M.m11) + obb2.h.y * fabsf(M.m10); - if (fabsf(t.x * M.m22 - t.z * M.m02) > (ra + rb)) - { - return 0; - } - - - ra = obb1.h.x * fabsf(M.m10) + obb1.h.y * fabsf(M.m00); - rb = obb2.h.y * fabsf(M.m22) + obb2.h.z * fabsf(M.m21); - if (fabsf(t.y * M.m00 - t.x * M.m10) > (ra + rb)) - { - return 0; - } - ra = obb1.h.x * fabsf(M.m11) + obb1.h.y * fabsf(M.m01); - rb = obb2.h.x * fabsf(M.m22) + obb2.h.z * fabsf(M.m20); - if (fabsf(t.y * M.m01 - t.x * M.m11) > (ra + rb)) - { - return 0; - } - ra = obb1.h.x * fabsf(M.m12) + obb1.h.y * fabsf(M.m02); - rb = obb2.h.x * fabsf(M.m21) + obb2.h.y * fabsf(M.m20); - if (fabsf(t.y * M.m02 - t.x * M.m12) > (ra + rb)) - { - return 0; - } - - return 1; //no separating axis found, we have an overlap - } - - - - - - -#define PLANE_X 0 -#define PLANE_Y 1 -#define PLANE_Z 2 -#define PLANE_NON_AXIAL 3 - - //! check if the point is inside a triangle - inline bool PointInTriangle(const Vec3& point, const Vec3& v0, const Vec3& v1, const Vec3& v2, const Vec3& normal) - { - float xt, yt; - Vec3 nn; - - int p1, p2; - - nn = normal; - nn.x = (float)fabs(nn.x); - nn.y = (float)fabs(nn.y); - nn.z = (float)fabs(nn.z); - - if ((nn.x >= nn.y) && (nn.x >= nn.z)) - { - xt = point.y; - yt = point.z; - p1 = PLANE_Y; - p2 = PLANE_Z; - } - else - if ((nn.y >= nn.x) && (nn.y >= nn.z)) - { - xt = point.x; - yt = point.z; - p1 = PLANE_X; - p2 = PLANE_Z; - } - else - { - xt = point.x; - yt = point.y; - p1 = PLANE_X; - p2 = PLANE_Y; - } - - float Ax, Ay, Bx, By; - float s; - - bool front = false; - bool back = false; - - - Ax = (v0)[p1]; - Bx = (v1)[p1]; - Ay = (v0)[p2]; - By = (v1)[p2]; - - s = ((Ay - yt) * (Bx - Ax) - (Ax - xt) * (By - Ay)); - - if (s >= 0) - { - if (back) - { - return (false); - } - front = true; - } - else - { - if (front) - { - return (false); - } - back = true; - } - - Ax = (v1)[p1]; - Bx = (v2)[p1]; - Ay = (v1)[p2]; - By = (v2)[p2]; - - s = ((Ay - yt) * (Bx - Ax) - (Ax - xt) * (By - Ay)); - - if (s >= 0) - { - if (back) - { - return (false); - } - front = true; - } - else - { - if (front) - { - return (false); - } - back = true; - } - - Ax = (v2)[p1]; - Bx = (v0)[p1]; - Ay = (v2)[p2]; - By = (v0)[p2]; - - s = ((Ay - yt) * (Bx - Ax) - (Ax - xt) * (By - Ay)); - - if (s >= 0) - { - if (back) - { - return (false); - } - front = true; - } - else - { - if (front) - { - return (false); - } - back = true; - } - - return (true); - } -} - - - -#endif // CRYINCLUDE_CRYCOMMON_CRY_GEOOVERLAP_H diff --git a/Code/Legacy/CryCommon/Cry_Math.h b/Code/Legacy/CryCommon/Cry_Math.h index 91ceebd51a..74a18e8910 100644 --- a/Code/Legacy/CryCommon/Cry_Math.h +++ b/Code/Legacy/CryCommon/Cry_Math.h @@ -18,7 +18,7 @@ #include "Cry_ValidNumber.h" #include // eLittleEndian #include -#include +//#include #include /////////////////////////////////////////////////////////////////////////////// // Forward declarations // @@ -592,14 +592,12 @@ enum type_identity #include "Cry_Vector2.h" #include "Cry_Vector3.h" #include "Cry_Vector4.h" -#include "Cry_MatrixDiag.h" #include "Cry_Matrix33.h" #include "Cry_Matrix34.h" #include "Cry_Matrix44.h" #include "Cry_Quat.h" #include "Cry_HWVector3.h" #include "Cry_HWMatrix.h" -#include "Cry_XOptimise.h" ////////////////////////////////////////////////////////////////////////// diff --git a/Code/Legacy/CryCommon/Cry_Matrix33.h b/Code/Legacy/CryCommon/Cry_Matrix33.h index f6cdc43b59..9e0b12fafa 100644 --- a/Code/Legacy/CryCommon/Cry_Matrix33.h +++ b/Code/Legacy/CryCommon/Cry_Matrix33.h @@ -177,44 +177,6 @@ struct Matrix33_tpl m22 = F(vz.z); } - - - - - //CONSTRUCTOR for identical float-types. It converts a Diag33 into a Matrix33. - //Matrix33(diag33); - ILINE Matrix33_tpl(const Diag33_tpl&d) - { - assert(d.IsValid()); - m00 = d.x; - m01 = 0; - m02 = 0; - m10 = 0; - m11 = d.y; - m12 = 0; - m20 = 0; - m21 = 0; - m22 = d.z; - } - //CONSTRUCTOR for different float-types. It converts a Diag33 into a Matrix33 and also converts between double/float. - //Matrix33(diag33); - template - ILINE Matrix33_tpl(const Diag33_tpl&d) - { - assert(d.IsValid()); - m00 = F(d.x); - m01 = 0; - m02 = 0; - m10 = 0; - m11 = F(d.y); - m12 = 0; - m20 = 0; - m21 = 0; - m22 = F(d.z); - } - - - //CONSTRUCTOR for identical float-types //Matrix33 m=m33; ILINE Matrix33_tpl(const Matrix33_tpl&m) @@ -1232,8 +1194,6 @@ struct Matrix33_tpl return true; } - - AUTO_STRUCT_INFO }; /////////////////////////////////////////////////////////////////////////////// @@ -1243,7 +1203,6 @@ struct Matrix33_tpl typedef Matrix33_tpl Matrix33; //always 32 bit typedef Matrix33_tpl Matrix33d; //always 64 bit typedef Matrix33_tpl Matrix33r; //variable float precision. depending on the target system it can be between 32, 64 or 80 bit -typedef _MS_ALIGN(16) Matrix33_tpl _ALIGN (16) Matrix33A; //---------------------------------------------------------------------------------- //---------------------------------------------------------------------------------- @@ -1253,40 +1212,6 @@ typedef _MS_ALIGN(16) Matrix33_tpl _ALIGN (16) Matrix33A; //---------------------------------------------------------------------------------- //---------------------------------------------------------------------------------- -template -ILINE Matrix33_tpl operator*(const Matrix33_tpl& l, const Diag33_tpl& r) -{ - assert(l.IsValid()); - assert(r.IsValid()); - Matrix33_tpl res; - res.m00 = l.m00 * r.x; - res.m01 = l.m01 * r.y; - res.m02 = l.m02 * r.z; - res.m10 = l.m10 * r.x; - res.m11 = l.m11 * r.y; - res.m12 = l.m12 * r.z; - res.m20 = l.m20 * r.x; - res.m21 = l.m21 * r.y; - res.m22 = l.m22 * r.z; - return res; -} -template -ILINE Matrix33_tpl& operator *= (Matrix33_tpl& l, const Diag33_tpl& r) -{ - assert(l.IsValid()); - assert(r.IsValid()); - l.m00 *= r.x; - l.m01 *= r.y; - l.m02 *= r.z; - l.m10 *= r.x; - l.m11 *= r.y; - l.m12 *= r.z; - l.m20 *= r.x; - l.m21 *= r.y; - l.m22 *= r.z; - return l; -} - //Matrix33 operations with another Matrix33 template ILINE Matrix33_tpl operator * (const Matrix33_tpl& l, const Matrix33_tpl& r) diff --git a/Code/Legacy/CryCommon/Cry_Matrix34.h b/Code/Legacy/CryCommon/Cry_Matrix34.h index 0cc0c02d5f..0659d3bc47 100644 --- a/Code/Legacy/CryCommon/Cry_Matrix34.h +++ b/Code/Legacy/CryCommon/Cry_Matrix34.h @@ -1213,8 +1213,6 @@ struct Matrix34_tpl m.m23 = pdotn * n.z; return m; } - - AUTO_STRUCT_INFO }; /////////////////////////////////////////////////////////////////////////////// @@ -1224,7 +1222,11 @@ struct Matrix34_tpl typedef Matrix34_tpl Matrix34; //always 32 bit typedef Matrix34_tpl Matrix34d;//always 64 bit typedef Matrix34_tpl Matrix34r;//variable float precision. depending on the target system it can be between 32, 64 or bit -typedef _MS_ALIGN(16) Matrix34_tpl _ALIGN (16) Matrix34A; +#if AZ_COMPILER_MSVC + typedef __declspec(align(16)) Matrix34_tpl Matrix34A; +#elif AZ_COMPILER_CLANG + typedef Matrix34_tpl __attribute__((aligned(16))) Matrix34A; +#endif //---------------------------------------------------------------------------------- //---------------------------------------------------------------------------------- @@ -1277,43 +1279,6 @@ ILINE Vec3_tpl operator * (const Matrix34_tpl& m, const Vec3_tpl& p) return tp; } - -template -ILINE Matrix34_tpl operator*(const Matrix34_tpl& l, const Diag33_tpl& r) -{ - assert(l.IsValid()); - assert(r.IsValid()); - Matrix34_tpl m; - m.m00 = l.m00 * r.x; - m.m01 = l.m01 * r.y; - m.m02 = l.m02 * r.z; - m.m03 = l.m03; - m.m10 = l.m10 * r.x; - m.m11 = l.m11 * r.y; - m.m12 = l.m12 * r.z; - m.m13 = l.m13; - m.m20 = l.m20 * r.x; - m.m21 = l.m21 * r.y; - m.m22 = l.m22 * r.z; - m.m23 = l.m23; - return m; -} -template -ILINE Matrix34_tpl& operator *= (Matrix34_tpl& l, const Diag33_tpl& r) -{ - assert(l.IsValid()); - assert(r.IsValid()); - l.m00 *= r.x; - l.m01 *= r.y; - l.m02 *= r.z; - l.m10 *= r.x; - l.m11 *= r.y; - l.m12 *= r.z; - l.m20 *= r.x; - l.m21 *= r.y; - l.m22 *= r.z; - return l; -} template ILINE Matrix34_tpl operator + (const Matrix34_tpl& l, const Matrix34_tpl& r) { diff --git a/Code/Legacy/CryCommon/Cry_Matrix44.h b/Code/Legacy/CryCommon/Cry_Matrix44.h index cf0b790b0a..20d7494e16 100644 --- a/Code/Legacy/CryCommon/Cry_Matrix44.h +++ b/Code/Legacy/CryCommon/Cry_Matrix44.h @@ -655,8 +655,6 @@ struct Matrix44_tpl (fabs_tpl(m0.m30 - m1.m30) <= e) && (fabs_tpl(m0.m31 - m1.m31) <= e) && (fabs_tpl(m0.m32 - m1.m32) <= e) && (fabs_tpl(m0.m33 - m1.m33) <= e) ); } - - AUTO_STRUCT_INFO }; /////////////////////////////////////////////////////////////////////////////// @@ -666,7 +664,11 @@ struct Matrix44_tpl typedef Matrix44_tpl Matrix44; //always 32 bit typedef Matrix44_tpl Matrix44d; //always 64 bit typedef Matrix44_tpl Matrix44r; //variable float precision. depending on the target system it can be between 32, 64 or 80 bit -typedef _MS_ALIGN(16) Matrix44_tpl _ALIGN (16) Matrix44A; +#if AZ_COMPILER_MSVC + typedef __declspec(align(16)) Matrix44_tpl Matrix44A; +#elif AZ_COMPILER_CLANG + typedef Matrix44_tpl __attribute__((aligned(16))) Matrix44A; +#endif //---------------------------------------------------------------------------------- //---------------------------------------------------------------------------------- @@ -676,63 +678,6 @@ typedef _MS_ALIGN(16) Matrix44_tpl _ALIGN (16) Matrix44A; //---------------------------------------------------------------------------------- //---------------------------------------------------------------------------------- -/*! -* Implements the multiplication operator: Matrix44=Matrix44*Matrix33diag -* -* Matrix44 and Matrix33diag are specified in collumn order. -* AxB = operation B followed by operation A. -* This operation takes 12 mults. -* -* Example: -* Matrix33diag diag(1,2,3); -* Matrix44 m44=CreateRotationZ33(3.14192f); -* Matrix44 result=m44*diag; -*/ -template -ILINE Matrix44_tpl operator * (const Matrix44_tpl& l, const Diag33_tpl& r) -{ - assert(l.IsValid()); - assert(r.IsValid()); - Matrix44_tpl m; - m.m00 = l.m00 * r.x; - m.m01 = l.m01 * r.y; - m.m02 = l.m02 * r.z; - m.m03 = l.m03; - m.m10 = l.m10 * r.x; - m.m11 = l.m11 * r.y; - m.m12 = l.m12 * r.z; - m.m13 = l.m13; - m.m20 = l.m20 * r.x; - m.m21 = l.m21 * r.y; - m.m22 = l.m22 * r.z; - m.m23 = l.m23; - m.m30 = l.m30 * r.x; - m.m31 = l.m31 * r.y; - m.m32 = l.m32 * r.z; - m.m33 = l.m33; - return m; -} -template -ILINE Matrix44_tpl& operator *= (Matrix44_tpl& l, const Diag33_tpl& r) -{ - assert(l.IsValid()); - assert(r.IsValid()); - l.m00 *= r.x; - l.m01 *= r.y; - l.m02 *= r.z; - l.m10 *= r.x; - l.m11 *= r.y; - l.m12 *= r.z; - l.m20 *= r.x; - l.m21 *= r.y; - l.m22 *= r.z; - l.m30 *= r.x; - l.m31 *= r.y; - l.m32 *= r.z; - return l; -} - - /*! * Implements the multiplication operator: Matrix44=Matrix44*Matrix33 * diff --git a/Code/Legacy/CryCommon/Cry_MatrixDiag.h b/Code/Legacy/CryCommon/Cry_MatrixDiag.h deleted file mode 100644 index 897265049e..0000000000 --- a/Code/Legacy/CryCommon/Cry_MatrixDiag.h +++ /dev/null @@ -1,192 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Common matrix class - - -#ifndef CRYINCLUDE_CRYCOMMON_CRY_MATRIXDIAG_H -#define CRYINCLUDE_CRYCOMMON_CRY_MATRIXDIAG_H -#pragma once - - -/////////////////////////////////////////////////////////////////////////////// -/////////////////////////////////////////////////////////////////////////////// -/////////////////////////////////////////////////////////////////////////////// -// struct Diag33_tpl -/////////////////////////////////////////////////////////////////////////////// -/////////////////////////////////////////////////////////////////////////////// -/////////////////////////////////////////////////////////////////////////////// - -template -struct Diag33_tpl -{ - F x, y, z; - -#ifdef _DEBUG - ILINE Diag33_tpl() - { - if constexpr (sizeof(F) == 4) - { - uint32* p = alias_cast(&x); - p[0] = F32NAN; - p[1] = F32NAN; - p[2] = F32NAN; - } - if constexpr (sizeof(F) == 8) - { - uint64* p = alias_cast(&x); - p[0] = F64NAN; - p[1] = F64NAN; - p[2] = F64NAN; - } - } -#else - ILINE Diag33_tpl() {}; -#endif - - - Diag33_tpl(F dx, F dy, F dz) { x = dx; y = dy; z = dz; } - Diag33_tpl(const Vec3_tpl& v) { x = v.x; y = v.y; z = v.z; } - template - const Diag33_tpl& operator=(const Vec3_tpl& v) { x = v.x; y = v.y; z = v.z; return *this; } - Diag33_tpl& operator=(const Diag33_tpl& diag) { x = diag.x; y = diag.y; z = diag.z; return *this; } - template - Diag33_tpl& operator=(const Diag33_tpl& diag) { x = diag.x; y = diag.y; z = diag.z; return *this; } - - const void SetIdentity() { x = y = z = 1; } - Diag33_tpl(type_identity) { x = y = z = 1; } - - const Diag33_tpl& zero() { x = y = z = 0; return *this; } - - Diag33_tpl& fabs() { x = fabs_tpl(x); y = fabs_tpl(y); z = fabs_tpl(z); return *this; } - - Diag33_tpl& invert() // in-place inversion - { - F det = determinant(); - if (det == 0) - { - return *this; - } - det = (F)1.0 / det; - F oldata[3]; - oldata[0] = x; - oldata[1] = y; - oldata[2] = z; - x = oldata[1] * oldata[2] * det; - y = oldata[0] * oldata[2] * det; - z = oldata[0] * oldata[1] * det; - return *this; - } - - /*! - * Linear-Interpolation between Diag33(lerp) - * - * Example: - * Diag33 r=Diag33::CreateLerp( p, q, 0.345f ); - */ - ILINE void SetLerp(const Diag33_tpl& p, const Diag33_tpl& q, F t) - { - x = p.x * (1.0f - t) + q.x * t; - y = p.y * (1.0f - t) + q.y * t; - z = p.z * (1.0f - t) + q.z * t; - } - ILINE static Diag33_tpl CreateLerp(const Diag33_tpl& p, const Diag33_tpl& q, F t) - { - Diag33_tpl d; - d.x = p.x * (1.0f - t) + q.x * t; - d.y = p.y * (1.0f - t) + q.y * t; - d.z = p.z * (1.0f - t) + q.z * t; - return d; - } - - F determinant() const { return x * y * z; } - - ILINE bool IsValid() const - { - if (!NumberValid(x)) - { - return false; - } - if (!NumberValid(y)) - { - return false; - } - if (!NumberValid(z)) - { - return false; - } - return true; - } -}; - -/////////////////////////////////////////////////////////////////////////////// -// Typedefs // -/////////////////////////////////////////////////////////////////////////////// - -typedef Diag33_tpl Diag33; //always 32 bit -typedef Diag33_tpl Diag33d;//always 64 bit -typedef Diag33_tpl Diag33r;//variable float precision. depending on the target system it can be between 32, 64 or 80 bit - - -template -Diag33_tpl operator*(const Diag33_tpl& l, const Diag33_tpl& r) -{ - return Diag33_tpl(l.x * r.x, l.y * r.y, l.z * r.z); -} - -template -Matrix33_tpl operator*(const Diag33_tpl& l, const Matrix33_tpl& r) -{ - Matrix33_tpl res; - res.m00 = r.m00 * l.x; - res.m01 = r.m01 * l.x; - res.m02 = r.m02 * l.x; - res.m10 = r.m10 * l.y; - res.m11 = r.m11 * l.y; - res.m12 = r.m12 * l.y; - res.m20 = r.m20 * l.z; - res.m21 = r.m21 * l.z; - res.m22 = r.m22 * l.z; - return res; -} -template -Matrix34_tpl operator*(const Diag33_tpl& l, const Matrix34_tpl& r) -{ - Matrix34_tpl m; - m.m00 = l.x * r.m00; - m.m01 = l.x * r.m01; - m.m02 = l.x * r.m02; - m.m03 = l.x * r.m03; - m.m10 = l.y * r.m10; - m.m11 = l.y * r.m11; - m.m12 = l.y * r.m12; - m.m13 = l.y * r.m13; - m.m20 = l.z * r.m20; - m.m21 = l.z * r.m21; - m.m22 = l.z * r.m22; - m.m23 = l.z * r.m23; - return m; -} - -template -Vec3_tpl operator *(const Diag33_tpl& mtx, const Vec3_tpl& vec) -{ - return Vec3_tpl(mtx.x * vec.x, mtx.y * vec.y, mtx.z * vec.z); -} - -template -Vec3_tpl operator *(const Vec3_tpl& vec, const Diag33_tpl& mtx) -{ - return Vec3_tpl(mtx.x * vec.x, mtx.y * vec.y, mtx.z * vec.z); -} - - - -#endif // CRYINCLUDE_CRYCOMMON_CRY_MATRIXDIAG_H - diff --git a/Code/Legacy/CryCommon/Cry_Quat.h b/Code/Legacy/CryCommon/Cry_Quat.h index 15b3c11334..a18d8a2ad9 100644 --- a/Code/Legacy/CryCommon/Cry_Quat.h +++ b/Code/Legacy/CryCommon/Cry_Quat.h @@ -888,9 +888,6 @@ struct Quat_tpl { return CreateNlerp(IDENTITY, *this, scale); } - - - AUTO_STRUCT_INFO }; @@ -908,14 +905,6 @@ typedef Quat_tpl CryQuat; typedef Quat_tpl quaternionf; typedef Quat_tpl quaternion; -// alligned versions -#ifndef MAX_API_NUM -typedef DEFINE_ALIGNED_DATA (Quat, QuatA, 16); // typedef __declspec(align(16)) Quat_tpl CryQuatA; -typedef DEFINE_ALIGNED_DATA (Quatd, QuatrA, 32); // typedef __declspec(align(16)) Quat_tpl quaternionfA; -#endif - - - /*! * * The "inner product" or "dot product" operation. @@ -1417,19 +1406,12 @@ struct QuatT_tpl { return QuatT_tpl(t * scale, q.GetScaled(scale)); } - - AUTO_STRUCT_INFO }; typedef QuatT_tpl QuatT; //always 32 bit typedef QuatT_tpl QuatTd;//always 64 bit typedef QuatT_tpl QuatTr;//variable float precision. depending on the target system it can be between 32, 64 or bit -// alligned versions -typedef DEFINE_ALIGNED_DATA (QuatT, QuatTA, 32); //wastest 4byte per quatT // typedef __declspec(align(16)) Quat_tpl QuatTA; -typedef DEFINE_ALIGNED_DATA (QuatTd, QuatTrA, 16); // typedef __declspec(align(16)) Quat_tpl QuatTrA; - - /*! * * Implements the multiplication operator: QuatT=Quatpos*Quat @@ -1703,18 +1685,12 @@ struct QuatTS_tpl ILINE Vec3_tpl GetRow0() const { return q.GetRow0(); } ILINE Vec3_tpl GetRow1() const { return q.GetRow1(); } ILINE Vec3_tpl GetRow2() const { return q.GetRow2(); } - - AUTO_STRUCT_INFO }; typedef QuatTS_tpl QuatTS; //always 64 bit typedef QuatTS_tpl QuatTSd;//always 64 bit typedef QuatTS_tpl QuatTSr;//variable float precision. depending on the target system it can be between 32, 64 or 80 bit -// alligned versions -typedef DEFINE_ALIGNED_DATA (QuatTS, QuatTSA, 16); // typedef __declspec(align(16)) Quat_tpl QuatTSA; -typedef DEFINE_ALIGNED_DATA (QuatTSd, QuatTSrA, 64); // typedef __declspec(align(16)) QuatTS_tpl QuatTSrA; - template ILINE QuatTS_tpl operator * (const QuatTS_tpl& a, const Quat_tpl& b) { @@ -1964,19 +1940,12 @@ struct QuatTNS_tpl ILINE Vec3_tpl GetRow0() const { return q.GetRow0(); } ILINE Vec3_tpl GetRow1() const { return q.GetRow1(); } ILINE Vec3_tpl GetRow2() const { return q.GetRow2(); } - - AUTO_STRUCT_INFO }; typedef QuatTNS_tpl QuatTNS; typedef QuatTNS_tpl QuatTNSr; typedef QuatTNS_tpl QuatTNS_f64; -// alligned versions -typedef DEFINE_ALIGNED_DATA (QuatTNS, QuatTNSA, 16); -typedef DEFINE_ALIGNED_DATA (QuatTNSr, QuatTNSrA, 64); -typedef DEFINE_ALIGNED_DATA (QuatTNS_f64, QuatTNS_f64A, 64); - template ILINE QuatTNS_tpl operator * (const QuatTNS_tpl& a, const Quat_tpl& b) { @@ -2119,8 +2088,6 @@ struct DualQuat_tpl nq *= norm; dq *= norm; } - - AUTO_STRUCT_INFO }; #ifndef MAX_API_NUM diff --git a/Code/Legacy/CryCommon/Cry_Vector2.h b/Code/Legacy/CryCommon/Cry_Vector2.h index f17259d70f..a8722c1b02 100644 --- a/Code/Legacy/CryCommon/Cry_Vector2.h +++ b/Code/Legacy/CryCommon/Cry_Vector2.h @@ -295,8 +295,6 @@ struct Vec2_tpl { return sqrt_tpl((x - vec1.x) * (x - vec1.x) + (y - vec1.y) * (y - vec1.y)); } - - AUTO_STRUCT_INFO }; /////////////////////////////////////////////////////////////////////////////// diff --git a/Code/Legacy/CryCommon/Cry_Vector3.h b/Code/Legacy/CryCommon/Cry_Vector3.h index 7b735df0fa..bd1cc11430 100644 --- a/Code/Legacy/CryCommon/Cry_Vector3.h +++ b/Code/Legacy/CryCommon/Cry_Vector3.h @@ -845,8 +845,6 @@ struct Vec3_tpl { return Vec3_tpl(y * v.z - z * v.y, z * v.x - x * v.z, x * v.y - y * v.x); } - - AUTO_STRUCT_INFO }; // dot product (2 versions) @@ -1175,8 +1173,6 @@ struct Ang3_tpl } return true; } - - AUTO_STRUCT_INFO }; typedef Ang3_tpl Ang3; @@ -1406,8 +1402,6 @@ struct Plane_tpl Vec3_tpl MirrorPosition(const Vec3_tpl& i) { return i - n * (2 * ((n | i) + d)); } ILINE bool IsValid() const { return !n.IsZeroFast(); } //A plane with a zero normal isn't valid. - - AUTO_STRUCT_INFO }; typedef Plane_tpl Plane; //always 32 bit diff --git a/Code/Legacy/CryCommon/Cry_Vector4.h b/Code/Legacy/CryCommon/Cry_Vector4.h index bafeefe00b..bbb3395fb3 100644 --- a/Code/Legacy/CryCommon/Cry_Vector4.h +++ b/Code/Legacy/CryCommon/Cry_Vector4.h @@ -227,8 +227,6 @@ struct Vec4_tpl ILINE void SetLerp(const Vec4_tpl& p, const Vec4_tpl& q, F t) { *this = p * (1.0f - t) + q * t; } ILINE static Vec4_tpl CreateLerp(const Vec4_tpl& p, const Vec4_tpl& q, F t) { return p * (1.0f - t) + q * t; } - - AUTO_STRUCT_INFO }; diff --git a/Code/Legacy/CryCommon/Cry_XOptimise.h b/Code/Legacy/CryCommon/Cry_XOptimise.h deleted file mode 100644 index bc05c16fbc..0000000000 --- a/Code/Legacy/CryCommon/Cry_XOptimise.h +++ /dev/null @@ -1,566 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Misc mathematical functions - - -#ifndef CRYINCLUDE_CRYCOMMON_CRY_XOPTIMISE_H -#define CRYINCLUDE_CRYCOMMON_CRY_XOPTIMISE_H -#pragma once - -#include - - - - -inline float AngleMod(float a) -{ - a = (float)((360.0 / 65536) * ((int)(a * (65536 / 360.0)) & 65535)); - return a; -} - -inline float AngleModRad(float a) -{ - a = (float)((gf_PI2 / 65536) * ((int)(a * (65536 / gf_PI2)) & 65535)); - return a; -} -inline unsigned short Degr2Word(float f) -{ - return (unsigned short)(AngleMod(f) / 360.0f * 65536.0f); -} -inline float Word2Degr(unsigned short s) -{ - return (float)s / 65536.0f * 360.0f; -} - -#if defined(_CPU_X86) -ILINE float __fastcall Ffabs(float f) -{ - *((unsigned*) &f) &= ~0x80000000; - return (f); -} -#else -inline float Ffabs(float x) { return fabsf(x); } -#endif - - - -#define mathMatrixRotationZ(pOut, angle) (*(Matrix44*)pOut) = GetTransposed44(Matrix44(Matrix34::CreateRotationZ(angle))) -#define mathMatrixRotationY(pOut, angle) (*(Matrix44*)pOut) = GetTransposed44(Matrix44(Matrix34::CreateRotationY(angle))) -#define mathMatrixRotationX(pOut, angle) (*(Matrix44*)pOut) = GetTransposed44(Matrix44(Matrix34::CreateRotationX(angle))) -#define mathMatrixTranslation(pOut, x, y, z) (*(Matrix44*)pOut) = GetTransposed44(Matrix44(Matrix34::CreateTranslationMat(Vec3(x, y, z)))) -#define mathMatrixScaling(pOut, sx, sy, sz) (*(Matrix44*)pOut) = GetTransposed44(Matrix44(Matrix34::CreateScale(Vec3(sx, sy, sz)))) - -template -inline void ExchangeVals(T& X, T& Y) -{ - const T Tmp = X; - X = Y; - Y = Tmp; -} - - -inline void mathMatrixPerspectiveFov(Matrix44A* pMatr, f32 fovY, f32 Aspect, f32 zn, f32 zf) -{ - f32 yScale = 1.0f / tan_tpl(fovY / 2.0f); - f32 xScale = yScale / Aspect; - - f32 m22 = f32(f64(zf) / (f64(zn) - f64(zf))); - f32 m32 = f32(f64(zn) * f64(zf) / (f64(zn) - f64(zf))); - - (*pMatr)(0, 0) = xScale; - (*pMatr)(0, 1) = 0; - (*pMatr)(0, 2) = 0; - (*pMatr)(0, 3) = 0; - (*pMatr)(1, 0) = 0; - (*pMatr)(1, 1) = yScale; - (*pMatr)(1, 2) = 0; - (*pMatr)(1, 3) = 0; - (*pMatr)(2, 0) = 0; - (*pMatr)(2, 1) = 0; - (*pMatr)(2, 2) = m22; - (*pMatr)(2, 3) = -1.0f; - (*pMatr)(3, 0) = 0; - (*pMatr)(3, 1) = 0; - (*pMatr)(3, 2) = m32; - (*pMatr)(3, 3) = 0; -} - - - -inline void mathMatrixOrtho(Matrix44A* pMatr, f32 w, f32 h, f32 zn, f32 zf) -{ - f32 m22 = f32(1.0 / (f64(zn) - f64(zf))); - f32 m32 = f32(f64(zn) / (f64(zn) - f64(zf))); - - (*pMatr)(0, 0) = 2.0f / w; - (*pMatr)(0, 1) = 0; - (*pMatr)(0, 2) = 0; - (*pMatr)(0, 3) = 0; - (*pMatr)(1, 0) = 0; - (*pMatr)(1, 1) = 2.0f / h; - (*pMatr)(1, 2) = 0; - (*pMatr)(1, 3) = 0; - (*pMatr)(2, 0) = 0; - (*pMatr)(2, 1) = 0; - (*pMatr)(2, 2) = m22; - (*pMatr)(2, 3) = 0; - (*pMatr)(3, 0) = 0; - (*pMatr)(3, 1) = 0; - (*pMatr)(3, 2) = m32; - (*pMatr)(3, 3) = 1; -} - -inline void mathMatrixOrthoOffCenter(Matrix44A* pMatr, f32 l, f32 r, f32 b, f32 t, f32 zn, f32 zf) -{ - f32 m22 = f32(1.0 / (f64(zn) - f64(zf))); - f32 m32 = f32(f64(zn) / (f64(zn) - f64(zf))); - - (*pMatr)(0, 0) = 2.0f / (r - l); - (*pMatr)(0, 1) = 0; - (*pMatr)(0, 2) = 0; - (*pMatr)(0, 3) = 0; - (*pMatr)(1, 0) = 0; - (*pMatr)(1, 1) = 2.0f / (t - b); - (*pMatr)(1, 2) = 0; - (*pMatr)(1, 3) = 0; - (*pMatr)(2, 0) = 0; - (*pMatr)(2, 1) = 0; - (*pMatr)(2, 2) = m22; - (*pMatr)(2, 3) = 0; - (*pMatr)(3, 0) = (l + r) / (l - r); - (*pMatr)(3, 1) = (t + b) / (b - t); - (*pMatr)(3, 2) = m32; - (*pMatr)(3, 3) = 1.0f; -} - - -inline void mathMatrixOrthoOffCenterLH(Matrix44A* pMatr, f32 l, f32 r, f32 b, f32 t, f32 zn, f32 zf) -{ - f32 m22 = f32(1.0 / (f64(zf) - f64(zn))); - f32 m32 = f32(f64(zn) / (f64(zn) - f64(zf))); - - (*pMatr)(0, 0) = 2.0f / (r - l); - (*pMatr)(0, 1) = 0; - (*pMatr)(0, 2) = 0; - (*pMatr)(0, 3) = 0; - (*pMatr)(1, 0) = 0; - (*pMatr)(1, 1) = 2.0f / (t - b); - (*pMatr)(1, 2) = 0; - (*pMatr)(1, 3) = 0; - (*pMatr)(2, 0) = 0; - (*pMatr)(2, 1) = 0; - (*pMatr)(2, 2) = m22; - (*pMatr)(2, 3) = 0; - (*pMatr)(3, 0) = (l + r) / (l - r); - (*pMatr)(3, 1) = (t + b) / (b - t); - (*pMatr)(3, 2) = m32; - (*pMatr)(3, 3) = 1.0f; -} - - -inline void mathMatrixPerspectiveOffCenter(Matrix44A* pMatr, f32 l, f32 r, f32 b, f32 t, f32 zn, f32 zf) -{ - f32 m22 = f32(f64(zf) / (f64(zn) - f64(zf))); - f32 m32 = f32(f64(zn) * f64(zf) / (f64(zn) - f64(zf))); - - (*pMatr)(0, 0) = 2 * zn / (r - l); - (*pMatr)(0, 1) = 0; - (*pMatr)(0, 2) = 0; - (*pMatr)(0, 3) = 0; - (*pMatr)(1, 0) = 0; - (*pMatr)(1, 1) = 2 * zn / (t - b); - (*pMatr)(1, 2) = 0; - (*pMatr)(1, 3) = 0; - (*pMatr)(2, 0) = (l + r) / (r - l); - (*pMatr)(2, 1) = (t + b) / (t - b); - (*pMatr)(2, 2) = m22; - (*pMatr)(2, 3) = -1; - (*pMatr)(3, 0) = 0; - (*pMatr)(3, 1) = 0; - (*pMatr)(3, 2) = m32; - (*pMatr)(3, 3) = 0; -} - -inline void mathMatrixPerspectiveOffCenterReverseDepth(Matrix44A* pMatr, f32 l, f32 r, f32 b, f32 t, f32 zn, f32 zf) -{ - f32 m22 = f32(-f64(zn) / (f64(zn) - f64(zf))); - f32 m32 = f32(-f64(zn) * f64(zf) / (f64(zn) - f64(zf))); - - (*pMatr)(0, 0) = 2 * zn / (r - l); - (*pMatr)(0, 1) = 0; - (*pMatr)(0, 2) = 0; - (*pMatr)(0, 3) = 0; - (*pMatr)(1, 0) = 0; - (*pMatr)(1, 1) = 2 * zn / (t - b); - (*pMatr)(1, 2) = 0; - (*pMatr)(1, 3) = 0; - (*pMatr)(2, 0) = (l + r) / (r - l); - (*pMatr)(2, 1) = (t + b) / (t - b); - (*pMatr)(2, 2) = m22; - (*pMatr)(2, 3) = -1; - (*pMatr)(3, 0) = 0; - (*pMatr)(3, 1) = 0; - (*pMatr)(3, 2) = m32; - (*pMatr)(3, 3) = 0; -} - -//RH -inline void mathMatrixLookAt(Matrix44A* pMatr, const Vec3& Eye, const Vec3& At, const Vec3& Up) -{ - Vec3 vLightDir = (Eye - At); - Vec3 zaxis = vLightDir.GetNormalized(); - Vec3 xaxis = (Up.Cross(zaxis)).GetNormalized(); - Vec3 yaxis = zaxis.Cross(xaxis); - - (*pMatr)(0, 0) = xaxis.x; - (*pMatr)(0, 1) = yaxis.x; - (*pMatr)(0, 2) = zaxis.x; - (*pMatr)(0, 3) = 0; - (*pMatr)(1, 0) = xaxis.y; - (*pMatr)(1, 1) = yaxis.y; - (*pMatr)(1, 2) = zaxis.y; - (*pMatr)(1, 3) = 0; - (*pMatr)(2, 0) = xaxis.z; - (*pMatr)(2, 1) = yaxis.z; - (*pMatr)(2, 2) = zaxis.z; - (*pMatr)(2, 3) = 0; - (*pMatr)(3, 0) = -xaxis.Dot(Eye); - (*pMatr)(3, 1) = -yaxis.Dot(Eye); - (*pMatr)(3, 2) = -zaxis.Dot(Eye); - (*pMatr)(3, 3) = 1; -} - -inline bool mathMatrixPerspectiveFovInverse(Matrix44_tpl* pResult, const Matrix44A* pProjFov) -{ - if ((*pProjFov)(0, 1) == 0.0f && (*pProjFov)(0, 2) == 0.0f && (*pProjFov)(0, 3) == 0.0f && - (*pProjFov)(1, 0) == 0.0f && (*pProjFov)(1, 2) == 0.0f && (*pProjFov)(1, 3) == 0.0f && - (*pProjFov)(3, 0) == 0.0f && (*pProjFov)(3, 1) == 0.0f && (*pProjFov)(3, 2) != 0.0f) - { - (*pResult)(0, 0) = 1.0 / (*pProjFov).m00; - (*pResult)(0, 1) = 0; - (*pResult)(0, 2) = 0; - (*pResult)(0, 3) = 0; - (*pResult)(1, 0) = 0; - (*pResult)(1, 1) = 1.0 / (*pProjFov).m11; - (*pResult)(1, 2) = 0; - (*pResult)(1, 3) = 0; - (*pResult)(2, 0) = 0; - (*pResult)(2, 1) = 0; - (*pResult)(2, 2) = 0; - (*pResult)(2, 3) = 1.0 / (*pProjFov).m32; - (*pResult)(3, 0) = (*pProjFov).m20 / (*pProjFov).m00; - (*pResult)(3, 1) = (*pProjFov).m21 / (*pProjFov).m11; - (*pResult)(3, 2) = -1; - (*pResult)(3, 3) = (*pProjFov).m22 / (*pProjFov).m32; - - return true; - } - - return false; -} - -template -inline void mathMatrixLookAtInverse(Matrix44_tpl* pResult, const Matrix44_tpl* pLookAt) -{ - (*pResult)(0, 0) = (*pLookAt).m00; - (*pResult)(0, 1) = (*pLookAt).m10; - (*pResult)(0, 2) = (*pLookAt).m20; - (*pResult)(0, 3) = (*pLookAt).m03; - (*pResult)(1, 0) = (*pLookAt).m01; - (*pResult)(1, 1) = (*pLookAt).m11; - (*pResult)(1, 2) = (*pLookAt).m21; - (*pResult)(1, 3) = (*pLookAt).m13; - (*pResult)(2, 0) = (*pLookAt).m02; - (*pResult)(2, 1) = (*pLookAt).m12; - (*pResult)(2, 2) = (*pLookAt).m22; - (*pResult)(2, 3) = (*pLookAt).m23; - - (*pResult)(3, 0) = T_out(-(f64((*pLookAt).m00) * f64((*pLookAt).m30) + f64((*pLookAt).m01) * f64((*pLookAt).m31) + f64((*pLookAt).m02) * f64((*pLookAt).m32))); - (*pResult)(3, 1) = T_out(-(f64((*pLookAt).m10) * f64((*pLookAt).m30) + f64((*pLookAt).m11) * f64((*pLookAt).m31) + f64((*pLookAt).m12) * f64((*pLookAt).m32))); - (*pResult)(3, 2) = T_out(-(f64((*pLookAt).m20) * f64((*pLookAt).m30) + f64((*pLookAt).m21) * f64((*pLookAt).m31) + f64((*pLookAt).m22) * f64((*pLookAt).m32))); - (*pResult)(3, 3) = (*pLookAt).m33; -}; - -inline void mathVec4Transform(f32 out[4], const f32 m[16], const f32 in[4]) -{ -#define M(row, col) m[col * 4 + row] - out[0] = M(0, 0) * in[0] + M(0, 1) * in[1] + M(0, 2) * in[2] + M(0, 3) * in[3]; - out[1] = M(1, 0) * in[0] + M(1, 1) * in[1] + M(1, 2) * in[2] + M(1, 3) * in[3]; - out[2] = M(2, 0) * in[0] + M(2, 1) * in[1] + M(2, 2) * in[2] + M(2, 3) * in[3]; - out[3] = M(3, 0) * in[0] + M(3, 1) * in[1] + M(3, 2) * in[2] + M(3, 3) * in[3]; -#undef M -} - -//fix: replace by 3x4 Matrix transformation and move to crymath -inline void mathVec3Transform(f32 out[4], const f32 m[16], const f32 in[3]) -{ -#define M(row, col) m[col * 4 + row] - out[0] = M(0, 0) * in[0] + M(0, 1) * in[1] + M(0, 2) * in[2] + M(0, 3) * 1.0f; - out[1] = M(1, 0) * in[0] + M(1, 1) * in[1] + M(1, 2) * in[2] + M(1, 3) * 1.0f; - out[2] = M(2, 0) * in[0] + M(2, 1) * in[1] + M(2, 2) * in[2] + M(2, 3) * 1.0f; - out[3] = M(3, 0) * in[0] + M(3, 1) * in[1] + M(3, 2) * in[2] + M(3, 3) * 1.0f; -#undef M -} - -#define mathVec3TransformF(pOut, pV, pM) mathVec3Transform((f32*)pOut, (const f32*)pM, (f32*)pV) -#define mathVec4TransformF(pOut, pV, pM) mathVec4Transform((f32*)pOut, (const f32*)pM, (f32*)pV) -#define mathVec3NormalizeF(pOut, pV) (*(Vec3*)pOut) = (((Vec3*)pV)->GetNormalizedSafe()) -#define mathVec2NormalizeF(pOut, pV) (*(Vec2*)pOut) = (((Vec2*)pV)->GetNormalizedSafe()) - - -//fix replace viewport by int16 array -//fix for d3d viewport -inline f32 mathVec3Project(Vec3* pvWin, const Vec3* pvObj, const int32 pViewport[4], const Matrix44A* pProjection, const Matrix44A* pView, const Matrix44A* pWorld) -{ - Vec4 in, out; - - in.x = pvObj->x; - in.y = pvObj->y; - in.z = pvObj->z; - in.w = 1.0f; - mathVec4Transform((f32*)&out, (f32*)pWorld, (f32*)&in); - mathVec4Transform((f32*)&in, (f32*)pView, (f32*)&out); - mathVec4Transform((f32*)&out, (f32*)pProjection, (f32*)&in); - - if (out.w == 0.0f) - { - return 0.f; - } - - out.x /= out.w; - out.y /= out.w; - out.z /= out.w; - - //output coords - pvWin->x = pViewport[0] + (1 + out.x) * pViewport[2] / 2; - pvWin->y = pViewport[1] + (1 - out.y) * pViewport[3] / 2; //flip coords for y axis - - //FIX: update fViewportMinZ fViewportMaxZ support for Viewport everywhere - float fViewportMinZ = 0, fViewportMaxZ = 1.0f; - - pvWin->z = fViewportMinZ + out.z * (fViewportMaxZ - fViewportMinZ); - - return out.w; -} - -inline Vec3* mathVec3UnProject(Vec3* pvObj, const Vec3* pvWin, const int32 pViewport[4], const Matrix44A* pProjection, const Matrix44A* pView, const Matrix44A* pWorld, [[maybe_unused]] int32 OptFlags) -{ - Matrix44A m, mA; - Vec4 in, out; - - //FIX: update fViewportMinZ fViewportMaxZ support for Viewport everywhere - float fViewportMinZ = 0, fViewportMaxZ = 1.0f; - - in.x = (pvWin->x - pViewport[0]) * 2 / pViewport[2] - 1.0f; - in.y = 1.0f - ((pvWin->y - pViewport[1]) * 2 / pViewport[3]); //flip coords for y axis - in.z = (pvWin->z - fViewportMinZ) / (fViewportMaxZ - fViewportMinZ); - in.w = 1.0f; - - //prepare inverse projection matrix - mA = ((*pWorld) * (*pView)) * (*pProjection); - m = mA.GetInverted(); - - mathVec4Transform((f32*)&out, m.GetData(), (f32*)&in); - if (out.w == 0.0f) - { - return NULL; - } - - pvObj->x = out.x / out.w; - pvObj->y = out.y / out.w; - pvObj->z = out.z / out.w; - - return pvObj; -} - - -inline Vec3* mathVec3ProjectArray(Vec3* pOut, uint32 OutStride, const Vec3* pV, uint32 VStride, const int32 pViewport[4], const Matrix44A* pProjection, const Matrix44A* pView, const Matrix44A* pWorld, uint32 n, int32) -{ - Matrix44A m; - Vec4 in, out; - - int8* pOutT = (int8*)pOut; - int8* pInT = (int8*)pV; - - Vec3* pvWin; - Vec3* pvObj; - - //FIX: update fViewportMinZ fViewportMaxZ support for Viewport everywhere - float fViewportMinZ = 0, fViewportMaxZ = 1.0f; - - m = ((*pWorld) * (*pView)) * (*pProjection); - - for (uint32 i = 0; i < n; i++) - { - pvObj = (Vec3*)pInT; - pvWin = (Vec3*)pOutT; - - in.x = pvObj->x; - in.y = pvObj->y; - in.z = pvObj->z; - in.w = 1.0f; - - mathVec4Transform((f32*)&out, m.GetData(), (f32*)&in); - - if (out.w == 0.0f) - { - return NULL; - } - - float fInvW = 1.0f / out.w; - out.x *= fInvW; - out.y *= fInvW; - out.z *= fInvW; - - //output coords - pvWin->x = pViewport[0] + (1 + out.x) * pViewport[2] / 2; - pvWin->y = pViewport[1] + (1 - out.y) * pViewport[3] / 2; //flip coords for y axis - - pvWin->z = fViewportMinZ + out.z * (fViewportMaxZ - fViewportMinZ); - - pOutT += OutStride; - pInT += VStride; - } - - return pOut; -} - - -inline Vec3* mathVec3UnprojectArray(Vec3* pOut, uint32 OutStride, const Vec3* pV, uint32 VStride, const int32 pViewport[4], const Matrix44* pProjection, const Matrix44* pView, const Matrix44* pWorld, uint32 n, [[maybe_unused]] int32 OptFlags) -{ - Vec4 in, out; - Matrix44 m, mA; - - int8* pOutT = (int8*)pOut; - int8* pInT = (int8*)pV; - - Vec3* pvWin; - Vec3* pvObj; - - //FIX: update fViewportMinZ fViewportMaxZ support for Viewport everywhere - float fViewportMinZ = 0, fViewportMaxZ = 1.0f; - - mA = ((*pWorld) * (*pView)) * (*pProjection); - m = mA.GetInverted(); - - for (uint32 i = 0; i < n; i++) - { - pvWin = (Vec3*)pInT; - pvObj = (Vec3*)pOutT; - - in.x = (pvWin->x - pViewport[0]) * 2 / pViewport[2] - 1.0f; - in.y = 1.0f - ((pvWin->y - pViewport[1]) * 2 / pViewport[3]); //flip coords for y axis - in.z = (pvWin->z - fViewportMinZ) / (fViewportMaxZ - fViewportMinZ); - in.w = 1.0f; - - mathVec4Transform((f32*)&out, m.GetData(), (f32*)&in); - - assert(out.w != 0.0f); - - if (out.w == 0.0f) - { - return NULL; - } - - pvObj->x = out.x / out.w; - pvObj->y = out.y / out.w; - pvObj->z = out.z / out.w; - - pOutT += OutStride; - pInT += VStride; - } - - return pOut; -} - - - - -/***************************************************** -MISC FUNCTIONS -*****************************************************/ - -////////////////////////////////////////////////////////////////////////// -#if defined(_CPU_X86) -inline int fastftol_positive(float f) -{ - int i; - - f -= 0.5f; -#if defined(_MSC_VER) - __asm fld [f] - __asm fistp [i] -#elif defined(__GNUC__) - __asm__ ("fld %[f]\n fistpl %[i]" : [i] "+m" (i) : [f] "m" (f)); -#else -#error -#endif - return i; -} -#else -inline int fastftol_positive (float f) -{ - assert(f >= 0.f); - return (int)floorf(f); -} -#endif - - - -////////////////////////////////////////////////////////////////////////// -#if defined(_CPU_X86) -inline int fastround_positive(float f) -{ - int i; - assert(f >= 0.f); -#if defined(_MSC_VER) - __asm fld [f] - __asm fistp [i] -#elif defined(__GNUC__) - __asm__ ("fld %[f]\n fistpl %[i]" : [i] "+m" (i) : [f] "m" (f)); -#else -#error -#endif - return i; -} -#else -inline int fastround_positive(float f) -{ - assert(f >= 0.f); - return (int) (f + 0.5f); -} -#endif - - - -////////////////////////////////////////////////////////////////////////// -#if defined(_CPU_X86) -ILINE int __fastcall FtoI(float x) -{ - int t; -#if defined(_MSC_VER) - __asm - { - fld x - fistp t - } -#elif defined(__GNUC__) - __asm__ ("fld %[x]\n fistpl %[t]" : [t] "+m" (t) : [x] "m" (x)); -#else -#error -#endif - return t; -} -#else -inline int FtoI(float x) { return (int)x; } -#endif - -#endif // CRYINCLUDE_CRYCOMMON_CRY_XOPTIMISE_H - diff --git a/Code/Legacy/CryCommon/FrameProfiler.h b/Code/Legacy/CryCommon/FrameProfiler.h deleted file mode 100644 index ac6d3a52a1..0000000000 --- a/Code/Legacy/CryCommon/FrameProfiler.h +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#pragma once - -#include - -#define SUBSYSTEM_DEFINES \ - X(PROFILE_ANY, "Any") \ - X(PROFILE_RENDERER, "Renderer") \ - X(PROFILE_3DENGINE, "3DEngine") \ - X(PROFILE_PARTICLE, "Particle") \ - X(PROFILE_AI, "AI") \ - X(PROFILE_ANIMATION, "Animation") \ - X(PROFILE_MOVIE, "Movie") \ - X(PROFILE_ENTITY, "Entity") \ - X(PROFILE_UI, "UI") \ - X(PROFILE_NETWORK, "Network") \ - X(PROFILE_PHYSICS, "Physics") \ - X(PROFILE_SCRIPT, "Script") \ - X(PROFILE_SCRIPT_CFUNC, "Script C Functions") \ - X(PROFILE_AUDIO, "Audio") \ - X(PROFILE_EDITOR, "Editor") \ - X(PROFILE_SYSTEM, "System") \ - X(PROFILE_ACTION, "Action") \ - X(PROFILE_GAME, "Game") \ - X(PROFILE_INPUT, "Input") \ - X(PROFILE_SYNC, "Sync") \ - X(PROFILE_NETWORK_TRAFFIC, "Network Traffic") \ - X(PROFILE_DEVICE, "Device") - -#define X(Subsystem, SubsystemName) Subsystem, -enum EProfiledSubsystem -{ - SUBSYSTEM_DEFINES - PROFILE_LAST_SUBSYSTEM -}; -#undef X - -#include - - - -#define FUNCTION_PROFILER_LEGACYONLY(pISystem, subsystem) - -#define FUNCTION_PROFILER(pISystem, subsystem) - -#define FUNCTION_PROFILER_FAST(pISystem, subsystem, bProfileEnabled) - -#define FUNCTION_PROFILER_ALWAYS(pISystem, subsystem) - -#define FRAME_PROFILER_LEGACYONLY(szProfilerName, pISystem, subsystem) - -#define FRAME_PROFILER(szProfilerName, pISystem, subsystem) - -#define FRAME_PROFILER_FAST(szProfilerName, pISystem, subsystem, bProfileEnabled) - -#define FUNCTION_PROFILER_SYS(subsystem) - -#define STALL_PROFILER(cause) - diff --git a/Code/Legacy/CryCommon/HMDBus.h b/Code/Legacy/CryCommon/HMDBus.h index 674b7ffd1e..dab4c28668 100644 --- a/Code/Legacy/CryCommon/HMDBus.h +++ b/Code/Legacy/CryCommon/HMDBus.h @@ -12,7 +12,6 @@ #include #include #include -#include #include #include #include @@ -36,7 +35,7 @@ namespace AZ * Event triggered when an HMD initializes successfully */ virtual void OnHMDInitialized() {} - + /** * Event triggered when an HMD shuts down */ @@ -56,7 +55,7 @@ namespace AZ virtual ~HMDInitBus() {} /// - /// Attempt to initialize this device. If initialization is initially successful (device exists and is able to startup) then this device should connect to the + /// Attempt to initialize this device. If initialization is initially successful (device exists and is able to startup) then this device should connect to the /// HMDDeviceRequestBus in order to be used as an HMD from the main Open 3D Engine system. /// /// @return If true, initialization fully succeeded. @@ -120,21 +119,10 @@ namespace AZ }; /// - /// Get per-eye camera info from the device. The specific info to get is defined in the EyeCameraInfo struct. This function can be used to setup - /// rendering cameras per-eye. Note that each eye may have different projection matrix information. - /// - /// @param eye The specific eye to get camera data for. - /// @param nearPlane Near distance for the main render camera. - /// @param farPlane Far distance for the main render camera. - /// @param cameraInfo Returned camera information for this particular eye. - /// - virtual void GetPerEyeCameraInfo([[maybe_unused]] const EStereoEye eye, [[maybe_unused]] const float nearPlane, [[maybe_unused]] const float farPlane, [[maybe_unused]] PerEyeCameraInfo& cameraInfo) {} - - /// /// Update the HMD's internal state and handle events /// This is NOT where tracking is updated. This is for game-time /// events such as controllers connecting/disconnecting or - /// certain compositor events being triggered. + /// certain compositor events being triggered. /// virtual void UpdateInternalState() {} @@ -164,9 +152,9 @@ namespace AZ /// /// Retrieve the latest tracking state that was cached since the last call /// to UpdateTrackingStates. - /// - /// TODO: Differentiate between tracking states viable for rendering and - /// tracking states viable for game simulation. + /// + /// TODO: Differentiate between tracking states viable for rendering and + /// tracking states viable for game simulation. /// virtual TrackingState* GetTrackingState() { return nullptr; } @@ -196,7 +184,7 @@ namespace AZ /// /// Set the current tracking level of the HMD. Supported tracking levels are defined in struct TrackingLevel. - /// + /// /// @param level The tracking level we want to use with this HMD /// virtual void SetTrackingLevel([[maybe_unused]] const AZ::VR::HMDTrackingLevel level) {} @@ -209,7 +197,7 @@ namespace AZ /// /// Enable/disable debugging for this device. The device can decide what the most appropriate debugging information is /// displayed to the user (e.g. HMD position, performance info, latency timing, etc.). - /// + /// /// @param enable Set to true to enable debugging /// virtual void EnableDebugging([[maybe_unused]] bool enable) {} @@ -230,16 +218,16 @@ namespace AZ virtual HMDDeviceInfo* GetDeviceInfo() { return nullptr; } /// - /// Get whether or not the HMD has been initialized. The HMD has been initialized when it has fully established an interface - /// with its necessary SDK and is ready to be used. - /// + /// Get whether or not the HMD has been initialized. The HMD has been initialized when it has fully established an interface + /// with its necessary SDK and is ready to be used. + /// /// @return True if the device has been initialized and is usable /// virtual bool IsInitialized() { return false; } /// /// Get the play space of the device, if exists - /// + /// /// @return True if the device has been initialized and is usable /// virtual const Playspace* GetPlayspace() { return nullptr; } @@ -251,21 +239,13 @@ namespace AZ /// virtual void UpdateTrackingStates() {} - /// - /// Retrieves the current index into the VR system's swapchain that should be used. - /// This only really need to be overridden by VR implementations that keep track - /// of an internal swapchain like Oculus. OpenVR will handle swapchains - /// internally and can just return 0. - /// - virtual AZ::u32 GetSwapchainIndex([[maybe_unused]] const EStereoEye& eye) { return 0; } - protected: }; using HMDDeviceRequestBus = AZ::EBus; /// - /// Bus to define HMD debugging. This includes visualization of any HMD-specific objects as well as any + /// Bus to define HMD debugging. This includes visualization of any HMD-specific objects as well as any /// VR performance metrics displayed in the HMD. /// class HMDDebuggerBus diff --git a/Code/Legacy/CryCommon/HeapAllocator.h b/Code/Legacy/CryCommon/HeapAllocator.h deleted file mode 100644 index da5d23e06f..0000000000 --- a/Code/Legacy/CryCommon/HeapAllocator.h +++ /dev/null @@ -1,457 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef CRYINCLUDE_CRYCOMMON_HEAPALLOCATOR_H -#define CRYINCLUDE_CRYCOMMON_HEAPALLOCATOR_H -#pragma once - - -#include "Synchronization.h" -#include "Options.h" - -#include - -//--------------------------------------------------------------------------- -#define bMEM_ACCESS_CHECK 0 -#define bMEM_HEAP_CHECK 0 - -namespace stl -{ - class HeapSysAllocator - { - public: - static void* SysAlloc(size_t nSize) - { return CryModuleMalloc(nSize); } - static void SysDealloc(void* ptr) - { CryModuleFree(ptr); } - }; - - class GlobalHeapSysAllocator - { - public: - static void* SysAlloc(size_t nSize) - { - return CryModuleMalloc(nSize); - } - static void SysDealloc(void* ptr) - { - CryModuleFree(ptr); - } - }; - - // Round up to next multiple of nAlign. Handles any positive integer. - inline size_t RoundUpTo(size_t nSize, size_t nAlign) - { - assert(nAlign > 0); - nSize += nAlign - 1; - return nSize - nSize % nAlign; - } - - /*--------------------------------------------------------------------------- - HeapAllocator - A memory pool that can allocate arbitrary amounts of memory of arbitrary size - and alignment. The heap may be freed all at once. Individual block deallocation - is not provided. - - Usable as a base class to implement more general-purpose allocators that - track, free, and reuse individual memory blocks. - - The class can optionally support multi-threading, using the second - template parameter. By default it is multithread-safe. - See Synchronization.h. - - Allocation details: Maintains a linked list of pages. - All pages after first are in order of most free memory first. - Allocations are from the smallest free page available. - - ---------------------------------------------------------------------------*/ - - struct SMemoryUsage - { - size_t nAlloc, nUsed; - - SMemoryUsage(size_t _nAlloc = 0, size_t _nUsed = 0) - : nAlloc(_nAlloc) - , nUsed(_nUsed) - { - Validate(); - } - - size_t nFree() const - { - return nAlloc - nUsed; - } - void Validate() const - { - assert(nUsed <= nAlloc); - } - void Clear() - { - nAlloc = nUsed = 0; - } - - void operator += (SMemoryUsage const& op) - { - nAlloc += op.nAlloc; - nUsed += op.nUsed; - } - }; - - ////////////////////////////////////////////////////////////////////////// - struct FHeap - { - OPT_STRUCT(FHeap) - OPT_VAR(size_t, PageSize); // Pages allocated at this size, or multiple thereof if needed. - OPT_VAR(bool, SinglePage) // Only 1 page allowed (fixed alloc) - OPT_VAR(bool, FreeWhenEmpty) // Release all memory when no longer used - }; - - template - class HeapAllocator - : public FHeap - , public L - , private SysAl - { - public: - - typedef AutoLock Lock; - - enum - { - DefaultAlignment = sizeof(void*) - }; - enum - { - DefaultPageSize = 0x1000 - }; - - private: - - struct PageNode - { - PageNode* pNext; - char* pEndAlloc; - char* pEndUsed; - - char* StartUsed() const - { - return (char*)(this + 1); - } - - PageNode(size_t nAlloc) - { - pNext = 0; - pEndAlloc = (char*)this + nAlloc; - pEndUsed = StartUsed(); - } - - void* Allocate(size_t nSize, size_t nAlign) - { - // Align current mem. - char* pNew = Align(pEndUsed, nAlign); - if (pNew + nSize > pEndAlloc) - { - return 0; - } - pEndUsed = pNew + nSize; - return pNew; - } - - bool CanAllocate(size_t nSize, size_t nAlign) - { - return Align(pEndUsed, nAlign) + nSize <= pEndAlloc; - } - - void Reset() - { - pEndUsed = StartUsed(); - } - - size_t GetMemoryAlloc() const - { - return pEndAlloc - (char*)this; - } - size_t GetMemoryUsed() const - { - return pEndUsed - StartUsed(); - } - size_t GetMemoryFree() const - { - return pEndAlloc - pEndUsed; - } - - void Validate() const - { - assert(pEndAlloc >= (char*)this); - assert(pEndUsed >= StartUsed() && pEndUsed <= pEndAlloc); - } - - bool CheckPtr(void* ptr) const - { - return (char*)ptr >= StartUsed() && (char*)ptr < pEndUsed; - } - }; - - public: - - HeapAllocator(FHeap opts = 0) - : FHeap(opts) - , _pPageList(0) - { - PageSize = max(Align(PageSize, DefaultPageSize), DefaultPageSize); - } - - ~HeapAllocator() - { - Clear(); - } - - // - // Raw memory allocation. - // - void* Allocate(const Lock& lock, size_t nSize, size_t nAlign = DefaultAlignment) - { - for (;; ) - { - // Try allocating from head page first. - if (_pPageList) - { - if (void* ptr = _pPageList->Allocate(nSize, nAlign)) - { - _TotalMem.nUsed += nSize; - return ptr; - } - - if (_pPageList->pNext && _pPageList->pNext->GetMemoryFree() > _pPageList->GetMemoryFree()) - { - SortPage(lock, _pPageList); - Validate(lock); - - // Try allocating from new head, which has the most free memory. - // If this fails, we know no further pages will succeed. - if (void* ptr = _pPageList->Allocate(nSize, nAlign)) - { - _TotalMem.nUsed += nSize; - return ptr; - } - } - if (SinglePage) - { - return 0; - } - } - - // Allocate the new page of the required size. - size_t nAllocSize = Align(sizeof(PageNode), nAlign) + nSize; - nAllocSize = RoundUpTo(nAllocSize, PageSize); - - void* pAlloc = this->SysAlloc(nAllocSize); - PageNode* pPageNode = new(pAlloc) PageNode(nAllocSize); - - // Insert at head of list. - pPageNode->pNext = _pPageList; - _pPageList = pPageNode; - - _TotalMem.nAlloc += nAllocSize; - - Validate(lock); - } - } - - void Deallocate([[maybe_unused]] const Lock& lock, [[maybe_unused]] void* ptr, size_t nSize) - { - // Just to maintain counts, can't reuse memory. - assert(CheckPtr(lock, ptr)); - assert(_TotalMem.nUsed >= nSize); - _TotalMem.nUsed -= nSize; - } - - // - // Templated type allocation. - // - template - T* New(size_t nAlign = 0) - { - void* pMemory = Allocate(Lock(*this), sizeof(T), nAlign ? nAlign : alignof(T)); - return pMemory ? new(pMemory) T : 0; - } - - template - T* NewArray(size_t nCount, size_t nAlign = 0) - { - void* pMemory = Allocate(Lock(*this), sizeof(T) * nCount, nAlign ? nAlign : alignof(T)); - return pMemory ? new(pMemory) T[nCount] : 0; - } - - // - // Maintenance. - // - SMemoryUsage GetTotalMemory(const Lock&) - { - return _TotalMem; - } - SMemoryUsage GetTotalMemory() - { - Lock lock(*this); - return _TotalMem; - } - - // Facility to defer freeing of dead pages during memory release calls. - struct FreeMemLock - : Lock - { - struct PageNode* _pPageList; - - FreeMemLock(L& lock) - : Lock(lock) - , _pPageList(0) {} - - ~FreeMemLock() - { - while (_pPageList != 0) - { - // Read the "next" pointer before deleting. - PageNode* pNext = _pPageList->pNext; - - // Delete the current page. - SysAl::SysDealloc(_pPageList); - - // Move to the next page in the list. - _pPageList = pNext; - } - } - }; - - void Clear(FreeMemLock& lock) - { - // Remove the pages from the object. - Validate(lock); - lock._pPageList = _pPageList; - _pPageList = 0; - _TotalMem.Clear(); - } - - void Clear() - { - FreeMemLock lock(*this); - Clear(lock); - } - - void Reset(const Lock& lock) - { - // Reset all pages, allowing memory re-use. - Validate(lock); - size_t nPrevSize = ~0; - for (PageNode** ppPage = &_pPageList; *ppPage; ) - { - (*ppPage)->Reset(); - if ((*ppPage)->GetMemoryAlloc() > nPrevSize) - { - // Move page to sorted location near beginning. - SortPage(lock, *ppPage); - - // ppPage is now next page, so continue loop. - continue; - } - nPrevSize = (*ppPage)->GetMemoryAlloc(); - ppPage = &(*ppPage)->pNext; - } - _TotalMem.nUsed = 0; - Validate(lock); - } - - void Reset() - { - Reset(Lock(*this)); - } - - // - // Validation. - // - bool CheckPtr(const Lock&, void* ptr) const - { - if (!ptr) - { - return true; - } - for (PageNode* pNode = _pPageList; pNode; pNode = pNode->pNext) - { - if (pNode->CheckPtr(ptr)) - { - return true; - } - } - return false; - } - - void Validate(const Lock&) const - { - #ifdef _DEBUG - // Check page validity, and memory counts. - SMemoryUsage MemCheck; - - for (PageNode* pPage = _pPageList; pPage; pPage = pPage->pNext) - { - pPage->Validate(); - if (pPage != _pPageList && pPage->pNext) - { - assert(pPage->GetMemoryFree() >= pPage->pNext->GetMemoryFree()); - } - MemCheck.nAlloc += pPage->GetMemoryAlloc(); - MemCheck.nUsed += pPage->GetMemoryUsed(); - } - assert(MemCheck.nAlloc == _TotalMem.nAlloc); - assert(MemCheck.nUsed >= _TotalMem.nUsed); - #endif - - #if bMEM_HEAP_CHECK - static int nCount = 0, nInterval = 0; - if (nCount++ >= nInterval) - { - nInterval++; - nCount = 0; - } - #endif - } - - void GetMemoryUsage(ICrySizer* pSizer) const - { - Lock lock(non_const(*this)); - for (PageNode* pNode = _pPageList; pNode; pNode = pNode->pNext) - { - pSizer->AddObject(pNode, pNode->GetMemoryAlloc()); - } - } - - private: - - void SortPage(const Lock&, PageNode*& rpPage) - { - // Unlink rpPage. - PageNode* pPage = rpPage; - rpPage = pPage->pNext; - - // Insert into list based on free memory. - PageNode** ppBefore = &_pPageList; - while (*ppBefore && (*ppBefore)->GetMemoryFree() > pPage->GetMemoryFree()) - { - ppBefore = &(*ppBefore)->pNext; - } - - // Link before rpList. - pPage->pNext = *ppBefore; - *ppBefore = pPage; - } - - PageNode* _pPageList; // All allocated pages. - SMemoryUsage _TotalMem; // Track memory allocated and used. - }; -} - -#endif // CRYINCLUDE_CRYCOMMON_HEAPALLOCATOR_H diff --git a/Code/Legacy/CryCommon/IConsole.h b/Code/Legacy/CryCommon/IConsole.h index e03de35aa1..f68a82f9dc 100644 --- a/Code/Legacy/CryCommon/IConsole.h +++ b/Code/Legacy/CryCommon/IConsole.h @@ -6,12 +6,11 @@ * */ - -#ifndef CRYINCLUDE_CRYCOMMON_ICONSOLE_H -#define CRYINCLUDE_CRYCOMMON_ICONSOLE_H #pragma once #include +#include +#include struct SFunctor; @@ -119,10 +118,6 @@ struct IConsoleVarSink // }; -#if defined(GetCommandLine) -#undef GetCommandLine -#endif - // Interface to the arguments of the console command. struct IConsoleCmdArgs { @@ -454,24 +449,6 @@ struct IConsole virtual void DumpKeyBinds(IKeyBindDumpSink* pCallback) = 0; virtual const char* FindKeyBind(const char* sCmd) const = 0; - ////////////////////////////////////////////////////////////////////////// - // Hashing of cvars (for anti-cheat). Separates setting of range, calculation, - // and retrieval of result so calculation can be done at a known safe point - // (e.g end of frame) when we know cvars won't be modified or in temporary state - - // Get Number of cvars that can be hashed - virtual int GetNumCheatVars() = 0; - // Set the range of cvars - virtual void SetCheatVarHashRange(size_t firstVar, size_t lastVar) = 0; - // Calculate the hash from current cvars - virtual void CalcCheatVarHash() = 0; - // Since hash is calculated async, check if it's completed - virtual bool IsHashCalculated() = 0; - // Get the hash calculated - virtual uint64 GetCheatVarHash() = 0; - virtual void PrintCheatVars(bool bUseLastHashRange) = 0; - virtual char* GetCheatVarAt(uint32 nOffset) = 0; - ////////////////////////////////////////////////////////////////////////// // Console variable sink. // Adds a new console variables sink callback. @@ -644,19 +621,6 @@ struct ICVar // Returns an ID to use when getting or removing the functor virtual uint64 AddOnChangeFunctor(const SFunctor& pChangeFunctor) = 0; - ////////////////////////////////////////////////////////////////////////// - // Returns the number of registered on change functos. - virtual uint64 GetNumberOfOnChangeFunctors() const = 0; - - ////////////////////////////////////////////////////////////////////////// - // Returns the functors with the specified id. - virtual const SFunctor& GetOnChangeFunctor(uint64 nFunctorId) const = 0; - - ////////////////////////////////////////////////////////////////////////// - // Removes an on change functor - // returns true if removal was successful. - virtual bool RemoveOnChangeFunctor(uint64 nFunctorId) = 0; - ////////////////////////////////////////////////////////////////////////// // Get the current callback function. virtual ConsoleVarFunc GetOnChangeCallback() const = 0; @@ -685,5 +649,3 @@ struct ICVar // Set the data probe string value of the variable virtual void SetDataProbeString(const char* pDataProbeString) = 0; }; - -#endif // CRYINCLUDE_CRYCOMMON_ICONSOLE_H diff --git a/Code/Legacy/CryCommon/IEntityRenderState.h b/Code/Legacy/CryCommon/IEntityRenderState.h index e9f041ba17..b459a6acaa 100644 --- a/Code/Legacy/CryCommon/IEntityRenderState.h +++ b/Code/Legacy/CryCommon/IEntityRenderState.h @@ -6,21 +6,23 @@ * */ - -#ifndef CRYINCLUDE_CRYCOMMON_IENTITYRENDERSTATE_H -#define CRYINCLUDE_CRYCOMMON_IENTITYRENDERSTATE_H #pragma once +#include "IStatObj.h" + #include #include #include +#include -namespace AZ + +namespace AZ { class Vector2; } struct IMaterial; +struct IRenderNode; struct IVisArea; struct SRenderingPassInfo; struct SRendItemSorter; @@ -28,761 +30,16 @@ struct SFrameLodInfo; struct pe_params_area; struct pe_articgeomparams; -// @NOTE: When removing an item from this enum, replace it with a dummy - ID's from this enum are stored in data and should not change. -enum EERType -{ - eERType_NotRenderNode, - eERType_Dummy_10, - eERType_Dummy8, - eERType_Light, - eERType_Cloud, - eERType_TerrainSystem, // used to be eERType_Dummy_1 which used to be eERType_VoxelObject, preserve order for compatibility - eERType_FogVolume, - eERType_Decal, - eERType_Dummy_6, // used to be eERType_ParticleEmitter, preserve order for compatibility - eERType_WaterVolume, - eERType_Dummy_5, // used to be eERType_WaterWave, preserve order for compatibility - eERType_Dummy_7, // used to be eERType_Road, preserve order for compatibility - eERType_DistanceCloud, - eERType_VolumeObject, - eERType_Dummy_0, // used to be eERType_AutoCubeMap, preserve order for compatibility - eERType_Rope, - eERType_PrismObject, - eERType_Dummy_2, // used to be eERType_IsoMesh, preserve order for compatibility - eERType_Dummy_4, - eERType_RenderComponent, - eERType_GameEffect, - eERType_BreakableGlass, - eERType_Dummy_3, // used to be eERType_LightShape, preserve order for compatibility - eERType_Dummy_9, - eERType_GeomCache, - eERType_StaticMeshRenderComponent, - eERType_DynamicMeshRenderComponent, - eERType_SkinnedMeshRenderComponent, - eERType_TypesNum, // MUST BE AT END TOTAL NUMBER OF ERTYPES -}; - -enum ERNListType -{ - eRNListType_Unknown, - eRNListType_DecalsAndRoads, - eRNListType_ListsNum, - eRNListType_First = eRNListType_Unknown, // This should be the last member - // And it counts on eRNListType_Unknown - // being the first enum element. -}; - -enum EOcclusionObjectType -{ - eoot_OCCLUDER, - eoot_OCEAN, - eoot_OCCELL, - eoot_OCCELL_OCCLUDER, - eoot_OBJECT, - eoot_OBJECT_TO_LIGHT, - eoot_TERRAIN_NODE, - eoot_PORTAL, -}; - -// RenderNode flags - -#define ERF_GOOD_OCCLUDER BIT(0) -#define ERF_PROCEDURAL BIT(1) -#define ERF_CLONE_SOURCE BIT(2) // set if this object was cloned from another one -#define ERF_CASTSHADOWMAPS BIT(3) // if you ever set this flag, be sure also to set ERF_HAS_CASTSHADOWMAPS -#define ERF_RENDER_ALWAYS BIT(4) -#define ERF_DYNAMIC_DISTANCESHADOWS BIT(5) -#define ERF_HIDABLE BIT(6) -#define ERF_HIDABLE_SECONDARY BIT(7) -#define ERF_HIDDEN BIT(8) -#define ERF_SELECTED BIT(9) -#define ERF_PROCEDURAL_ENTITY BIT(10) // this is an object generated at runtime which has a limited lifetime (matches procedural entity) -#define ERF_OUTDOORONLY BIT(11) -#define ERF_NODYNWATER BIT(12) -#define ERF_EXCLUDE_FROM_TRIANGULATION BIT(13) -#define ERF_REGISTER_BY_BBOX BIT(14) -#define ERF_STATIC_INSTANCING BIT(15) -#define ERF_VOXELIZE_STATIC BIT(16) -#define ERF_NO_PHYSICS BIT(17) -#define ERF_NO_DECALNODE_DECALS BIT(18) -#define ERF_REGISTER_BY_POSITION BIT(19) -#define ERF_COMPONENT_ENTITY BIT(20) -#define ERF_RECVWIND BIT(21) -#define ERF_COLLISION_PROXY BIT(22) // Collision proxy is a special object that is only visible in editor -// and used for physical collisions with player and vehicles. -#define ERF_LOD_BBOX_BASED BIT(23) // Lod changes based on bounding boxes. -#define ERF_SPEC_BIT0 BIT(24) // Bit0 of min config specification. -#define ERF_SPEC_BIT1 BIT(25) // Bit1 of min config specification. -#define ERF_SPEC_BIT2 BIT(26) // Bit2 of min config specification. -#define ERF_SPEC_BITS_MASK (ERF_SPEC_BIT0 | ERF_SPEC_BIT1 | ERF_SPEC_BIT2) // Bit mask of the min spec bits. -#define ERF_SPEC_BITS_SHIFT (24) // Bit offset of the ERF_SPEC_BIT0. -#define ERF_RAYCAST_PROXY BIT(27) // raycast proxy is only used for raycasting -#define ERF_HUD BIT(28) // Hud object that can avoid some visibility tests -#define ERF_RAIN_OCCLUDER BIT(29) // Is used for rain occlusion map -#define ERF_HAS_CASTSHADOWMAPS BIT(30) // at one point had ERF_CASTSHADOWMAPS set -#define ERF_ACTIVE_LAYER BIT(31) // the node is on a currently active layer - -struct IShadowCaster -{ - // - virtual ~IShadowCaster(){} - virtual bool HasOcclusionmap([[maybe_unused]] int nLod, [[maybe_unused]] IRenderNode* pLightOwner) { return false; } - virtual CLodValue ComputeLod(int wantedLod, [[maybe_unused]] const SRenderingPassInfo& passInfo) { return CLodValue(wantedLod); } - virtual void Render(const SRendParams& RendParams, const SRenderingPassInfo& passInfo) = 0; - virtual const AABB GetBBoxVirtual() = 0; - virtual void FillBBox(AABB& aabb) = 0; - virtual EERType GetRenderNodeType() = 0; - virtual bool IsRenderNode() { return true; } - // - uint8 m_cStaticShadowLod; -}; - -// Optional filter function for octree queries to perform custom filtering of the results. -// return true to keep the render node, false to filter it out. -using ObjectTreeQueryFilterCallback = AZStd::function; - -struct IOctreeNode -{ -public: - virtual ~IOctreeNode() {}; - - virtual void GetObjectsByType(PodArray& lstObjects, EERType objType, const AABB* pBBox, ObjectTreeQueryFilterCallback filterCallback = nullptr) = 0; - - struct CVisArea* m_pVisArea; -}; - -struct SLodDistDissolveTransitionState -{ - float fStartDist; - int8 nOldLod; - int8 nNewLod; - bool bFarside; -}; - -struct SLightInfo -{ - bool operator == (const SLightInfo& other) const - { return other.vPos.IsEquivalent(vPos, 0.1f) && fabs(other.fRadius - fRadius) < 0.1f; } - Vec3 vPos; - float fRadius; - bool bAffecting; -}; - struct IRenderNode - : public IShadowCaster { - enum EInternalFlags - { - DECAL_OWNER = BIT(0), // Owns some decals. - REQUIRES_NEAREST_CUBEMAP = BIT(1), // Pick nearest cube map - UPDATE_DECALS = BIT(2), // The node changed geometry - decals must be updated. - REQUIRES_FORWARD_RENDERING = BIT(3), // Special shadow processing needed. - WAS_INVISIBLE = BIT(4), // Was invisible last frame. - WAS_IN_VISAREA = BIT(5), // Was inside vis-ares last frame. - WAS_FARAWAY = BIT(6), // Was considered 'far away' for the purposes of physics deactivation. - HAS_OCCLUSION_PROXY = BIT(7) // This node has occlusion proxy. - }; - - IRenderNode() - { - m_dwRndFlags = 0; - m_fViewDistanceMultiplier = static_cast(IRenderNode::VIEW_DISTANCE_MULTIPLIER_MAX); // By default object is not limited by distance. - m_ucLodRatio = 100; - m_pOcNode = 0; - m_fWSMaxViewDist = 0; - m_nInternalFlags = 0; - m_nMaterialLayers = 0; - m_pRNTmpData = NULL; - m_pPrev = m_pNext = NULL; - m_nSID = 0; - m_cShadowLodBias = 0; - m_cStaticShadowLod = 0; - } - - virtual bool CanExecuteRenderAsJob() { return false; } - - // - // Debug info about object. - virtual const char* GetName() const = 0; - virtual const char* GetEntityClassName() const = 0; - virtual AZStd::string GetDebugString([[maybe_unused]] char type = 0) const { return ""; } - virtual float GetImportance() const { return 1.f; } - - // Description: - // Releases IRenderNode. - virtual void ReleaseNode([[maybe_unused]] bool bImmediate = false) { delete this; } - - - virtual IRenderNode* Clone() const { return NULL; } - - // Description: - // Sets render node transformation matrix. - virtual void SetMatrix([[maybe_unused]] const Matrix34& mat) {} - - // Description: - // Gets local bounds of the render node. - virtual void GetLocalBounds(AABB& bbox) { AABB WSBBox(GetBBox()); bbox = AABB(WSBBox.min - GetPos(true), WSBBox.max - GetPos(true)); } - - virtual Vec3 GetPos(bool bWorldOnly = true) const = 0; - virtual const AABB GetBBox() const = 0; - virtual void FillBBox(AABB& aabb) { aabb = GetBBox(); } - virtual void SetBBox(const AABB& WSBBox) = 0; - - virtual void SetScale([[maybe_unused]] const Vec3& scale) {} - - //Get the scales assuming the scale is uniform or per column as needed. - virtual float GetUniformScale() { return 1.0f; } - virtual float GetColumnScale([[maybe_unused]] int column) { return 1.0f; } - - // Summary: - // Changes the world coordinates position of this node by delta - // Don't forget to call this base function when overriding it. - virtual void OffsetPosition(const Vec3& delta) = 0; - - // Return true when the node is initialized and ready to render - virtual bool IsReady() const { return true; } - - // Summary: - // Renders node geometry - virtual void Render(const struct SRendParams& EntDrawParams, const SRenderingPassInfo& passInfo) = 0; - - // Hides/disables node in renderer. - virtual void Hide(bool bHide) { SetRndFlags(ERF_HIDDEN, bHide); } - bool IsHidden() const { return (GetRndFlags() & ERF_HIDDEN) != 0; } - // Gives access to object components. - virtual struct IStatObj* GetEntityStatObj(unsigned int nPartId = 0, unsigned int nSubPartId = 0, Matrix34A* pMatrix = NULL, bool bReturnOnlyVisible = false); - virtual _smart_ptr GetEntitySlotMaterial([[maybe_unused]] unsigned int nPartId, [[maybe_unused]] bool bReturnOnlyVisible = false, [[maybe_unused]] bool* pbDrawNear = NULL) { return NULL; } - virtual void SetEntityStatObj([[maybe_unused]] unsigned int nSlot, [[maybe_unused]] IStatObj* pStatObj, [[maybe_unused]] const Matrix34A* pMatrix = NULL) {}; - virtual int GetSlotCount() const { return 1; } - - // Summary: - // Returns IRenderMesh of the object. - virtual struct IRenderMesh* GetRenderMesh([[maybe_unused]] int nLod) { return 0; }; - - // Description: - // Allows to adjust default lod distance settings, - // if fLodRatio is 100 - default lod distance is used. - virtual void SetLodRatio(int nLodRatio) { m_ucLodRatio = static_cast(min(255, max(0, nLodRatio))); } - - // Summary: - // Gets material layers mask. - virtual uint8 GetMaterialLayers() const { return m_nMaterialLayers; } - - - // Summary - // Physicalizes if it isn't already. - virtual void CheckPhysicalized() {}; - - // Summary: - // Physicalizes node. - virtual void Physicalize([[maybe_unused]] bool bInstant = false) {} - - virtual ~IRenderNode() { assert(!m_pRNTmpData); }; - - // Summary: - // Sets override material for this instance. - virtual void SetMaterial(_smart_ptr pMat) = 0; - // Summary: - // Queries override material of this instance. - virtual _smart_ptr GetMaterial(Vec3* pHitPos = NULL) = 0; - virtual _smart_ptr GetMaterialOverride() = 0; - virtual void GetMaterials(AZStd::vector<_smart_ptr>& materials) - { - _smart_ptr currentMaterial = GetMaterialOverride(); - if (!currentMaterial) - { - currentMaterial = GetMaterial(); - } - if (currentMaterial) - { - materials.push_back(currentMaterial); - } + struct IStatObj* GetEntityStatObj(unsigned int = 0, unsigned int = 0, Matrix34A* = NULL, bool = false) { + return nullptr; } - // Used by the editor during export - virtual void SetCollisionClassIndex([[maybe_unused]] int tableIndex) {} - - virtual int GetEditorObjectId() { return 0; } - virtual void SetEditorObjectId([[maybe_unused]] int nEditorObjectId) {} - virtual void SetStatObjGroupIndex([[maybe_unused]] int nVegetationGroupIndex) { } - virtual int GetStatObjGroupId() const { return -1; } - virtual void SetLayerId([[maybe_unused]] uint16 nLayerId) { } - virtual uint16 GetLayerId() { return 0; } - virtual float GetMaxViewDist() = 0; - - virtual EERType GetRenderNodeType() = 0; - virtual bool IsAllocatedOutsideOf3DEngineDLL() - { - return GetRenderNodeType() == eERType_RenderComponent || - GetRenderNodeType() == eERType_StaticMeshRenderComponent || - GetRenderNodeType() == eERType_DynamicMeshRenderComponent || - GetRenderNodeType() == eERType_SkinnedMeshRenderComponent; - } - virtual void Dephysicalize([[maybe_unused]] bool bKeepIfReferenced = false) {} - virtual void Dematerialize() {} - virtual void GetMemoryUsage(ICrySizer* pSizer) const = 0; - - virtual void Precache() {}; - - virtual const AABB GetBBoxVirtual() { return GetBBox(); } - - // virtual float GetLodForDistance(float fDistance) { return 0; } - - virtual void OnRenderNodeBecomeVisible([[maybe_unused]] const SRenderingPassInfo& passInfo) {} - virtual void OnPhysAreaChange() {} - - virtual bool IsMovableByGame() const { return false; } - - virtual uint8 GetSortPriority() { return 0; } - - // Types of voxelization for objects and lights - enum EVoxelGIMode : int - { - VM_None = 0, // No voxelization - VM_Static, // Incremental or asynchronous lazy voxelization - VM_Dynamic, // Real-time every-frame voxelization on GPU - }; - - virtual EVoxelGIMode GetVoxelGIMode() { return VM_None; } - virtual void SetDesiredVoxelGIMode([[maybe_unused]] EVoxelGIMode voxelMode) {} - - virtual void SetMinSpec(int nMinSpec) { m_dwRndFlags &= ~ERF_SPEC_BITS_MASK; m_dwRndFlags |= (nMinSpec << ERF_SPEC_BITS_SHIFT) & ERF_SPEC_BITS_MASK; }; - - // Description: - // Allows to adjust default max view distance settings, - // if fMaxViewDistRatio is 1.0f - default max view distance is used. - virtual void SetViewDistanceMultiplier(float fViewDistanceMultiplier); - // - - void CopyIRenderNodeData(IRenderNode* pDest) const - { - pDest->m_fWSMaxViewDist = m_fWSMaxViewDist; - pDest->m_dwRndFlags = m_dwRndFlags; - //pDest->m_pOcNode = m_pOcNode; // Removed to stop the registering from earlying out. - pDest->m_fViewDistanceMultiplier = m_fViewDistanceMultiplier; - pDest->m_ucLodRatio = m_ucLodRatio; - pDest->m_cShadowLodBias = m_cShadowLodBias; - pDest->m_cStaticShadowLod = m_cStaticShadowLod; - pDest->m_nInternalFlags = m_nInternalFlags; - pDest->m_nMaterialLayers = m_nMaterialLayers; - //pDestBrush->m_pRNTmpData //If this is copied from the source render node, there are two - // pointers to the same data, and if either is deleted, there will - // be a crash when the dangling pointer is used on the other - } - - // Rendering flags. - ILINE void SetRndFlags(unsigned int dwFlags) { m_dwRndFlags = dwFlags; } - ILINE void SetRndFlags(unsigned int dwFlags, bool bEnable) - { - if (bEnable) - { - SetRndFlags(m_dwRndFlags | dwFlags); - } - else - { - SetRndFlags(m_dwRndFlags & (~dwFlags)); - } - } - ILINE unsigned int GetRndFlags() const { return m_dwRndFlags; } - - // Object draw frames (set if was drawn). - ILINE void SetDrawFrame(int nFrameID, int nRecursionLevel) - { - assert(m_pRNTmpData); - int* pDrawFrames = (int*)m_pRNTmpData; - pDrawFrames[nRecursionLevel] = nFrameID; - } - - ILINE int GetDrawFrame(int nRecursionLevel = 0) const - { - IF (!m_pRNTmpData, 0) - { - return 0; - } - - int* pDrawFrames = (int*)m_pRNTmpData; - return pDrawFrames[nRecursionLevel]; - } - - // Returns: - // Current VisArea or null if in outdoors or entity was not registered in 3dengine. - ILINE IVisArea* GetEntityVisArea() const { return m_pOcNode ? (IVisArea*)(m_pOcNode->m_pVisArea) : NULL; } - - // Summary: - // Makes object visible at any distance. - ILINE void SetViewDistUnlimited() { SetViewDistanceMultiplier(100.0f); } - - // Summary: - // Retrieves the view distance settings. - ILINE float GetViewDistanceMultiplier() const - { - return m_fViewDistanceMultiplier; - } - - // Summary: - // Returns lod distance ratio. - ILINE int GetLodRatio() const { return m_ucLodRatio; } - - // Summary: - // Returns lod distance ratio - ILINE float GetLodRatioNormalized() const { return 0.01f * m_ucLodRatio; } - - virtual bool GetLodDistances([[maybe_unused]] const SFrameLodInfo& frameLodInfo, [[maybe_unused]] float* distances) const { return false; } - - // Returns distance for first lod change, not factoring in distance multiplier or lod ratio - virtual float GetFirstLodDistance() const { return FLT_MAX; } - - // Description: - // Bias value to add to the regular lod - virtual void SetShadowLodBias(int8 nShadowLodBias) { m_cShadowLodBias = nShadowLodBias; } - - // Summary: - // Returns lod distance ratio. - ILINE int GetShadowLodBias() const { return m_cShadowLodBias; } - - // Summary: - // Sets material layers mask. - ILINE void SetMaterialLayers(uint8 nMtlLayers) { m_nMaterialLayers = nMtlLayers; } - - ILINE int GetMinSpec() const { return (m_dwRndFlags & ERF_SPEC_BITS_MASK) >> ERF_SPEC_BITS_SHIFT; }; - - static const ERNListType GetRenderNodeListId(const EERType eRType) - { - switch (eRType) - { - case eERType_Decal: - return eRNListType_DecalsAndRoads; - default: - return eRNListType_Unknown; - } - } - - virtual AZ::EntityId GetEntityId() { return AZ::EntityId(); } - - ////////////////////////////////////////////////////////////////////////// - // Variables - ////////////////////////////////////////////////////////////////////////// - -public: - - // Every sector has linked list of IRenderNode objects. - IRenderNode* m_pNext, * m_pPrev; - - // Current objects tree cell. - IOctreeNode* m_pOcNode; - - // Pointer to temporary data allocated only for currently visible objects. - struct CRNTmpData* m_pRNTmpData; - - // Max view distance. - float m_fWSMaxViewDist; - - // Render flags. - int m_dwRndFlags; - - // Shadow LOD bias - // Set to SHADOW_LODBIAS_DISABLE to disable any shadow lod overrides for this rendernode - static const int8 SHADOW_LODBIAS_DISABLE = -128; - int8 m_cShadowLodBias; - - // Segment Id - int m_nSID; + int GetSlotCount() const { return 1; } // Max view distance settings. - static const int VIEW_DISTANCE_MULTIPLIER_MAX = 100; - float m_fViewDistanceMultiplier; + static constexpr int VIEW_DISTANCE_MULTIPLIER_MAX = 100; - // LOD settings. - unsigned char m_ucLodRatio; - - // Flags for render node internal usage, one or more bits from EInternalFlags. - unsigned char m_nInternalFlags; - - // Material layers bitmask -> which material layers are active. - unsigned char m_nMaterialLayers; }; - -inline void IRenderNode::SetViewDistanceMultiplier(float fViewDistanceMultiplier) -{ - fViewDistanceMultiplier = CLAMP(fViewDistanceMultiplier, 0.0f, 100.0f); - if (fabs(m_fViewDistanceMultiplier - fViewDistanceMultiplier) > FLT_EPSILON) - { - m_fViewDistanceMultiplier = fViewDistanceMultiplier; - } -} - - -/////////////////////////////////////////////////////////////////////////////// -inline IStatObj* IRenderNode::GetEntityStatObj([[maybe_unused]] unsigned int nPartId, [[maybe_unused]] unsigned int nSubPartId, [[maybe_unused]] Matrix34A* pMatrix, [[maybe_unused]] bool bReturnOnlyVisible) -{ - return 0; -} - - -//We must use interfaces instead of unsafe type casts and unnecessary includes - -struct ILightSource - : public IRenderNode -{ - // - virtual void SetLightProperties(const CDLight& light) = 0; - virtual CDLight& GetLightProperties() = 0; - virtual const Matrix34& GetMatrix() = 0; - virtual struct ShadowMapFrustum* GetShadowFrustum(int nId = 0) = 0; - virtual bool IsLightAreasVisible() = 0; - virtual void SetCastingException(IRenderNode* pNotCaster) = 0; - virtual void SetName(const char* name) = 0; - // -}; - -struct SCloudMovementProperties -{ - bool m_autoMove; - Vec3 m_speed; - Vec3 m_spaceLoopBox; - float m_fadeDistance; -}; - -// Summary: -// ICloudRenderNode is an interface to the Cloud Render Node object. -struct ICloudRenderNode - : public IRenderNode -{ - // - // Description: - // Loads a cloud from a cloud description XML file. - virtual bool LoadCloud(const char* sCloudFilename) = 0; - virtual bool LoadCloudFromXml(XmlNodeRef cloudNode) = 0; - virtual void SetMovementProperties(const SCloudMovementProperties& properties) = 0; - // -}; - -// Summary: -// IVoxelObject is an interface to the Voxel Object Render Node object. -struct IVoxelObject - : public IRenderNode -{ - // - virtual void SetCompiledData(void* pData, int nSize, uint8 ucChildId, EEndian eEndian) = 0; - virtual void SetObjectName(const char* pName) = 0; - virtual void SetMatrix(const Matrix34& mat) = 0; - virtual bool ResetTransformation() = 0; - virtual void InterpolateVoxelData() = 0; - virtual void SetFlags(int nFlags) = 0; - virtual void Regenerate() = 0; - virtual void CopyHM() = 0; - virtual bool IsEmpty() = 0; - // -}; - -// Summary: -// IFogVolumeRenderNode is an interface to the Fog Volume Render Node object. -struct SFogVolumeProperties -{ - // Common parameters. - // Center position & rotation values are taken from the entity matrix. - - int m_volumeType; - Vec3 m_size; - ColorF m_color; - bool m_useGlobalFogColor; - bool m_ignoresVisAreas; - bool m_affectsThisAreaOnly; - float m_globalDensity; - float m_densityOffset; - float m_softEdges; - float m_fHDRDynamic; // 0 to get the same results in LDR, <0 to get darker, >0 to get brighter. - float m_nearCutoff; - - float m_heightFallOffDirLong; // Height based fog specifics. - float m_heightFallOffDirLati; // Height based fog specifics. - float m_heightFallOffShift; // Height based fog specifics. - float m_heightFallOffScale; // Height based fog specifics. - - float m_rampStart; - float m_rampEnd; - float m_rampInfluence; - float m_windInfluence; - float m_densityNoiseScale; - float m_densityNoiseOffset; - float m_densityNoiseTimeFrequency; - Vec3 m_densityNoiseFrequency; -}; - -struct IFogVolumeRenderNode - : public IRenderNode -{ - // - virtual void SetFogVolumeProperties(const SFogVolumeProperties& properties) = 0; - virtual const Matrix34& GetMatrix() const = 0; - - virtual void FadeGlobalDensity(float fadeTime, float newGlobalDensity) = 0; - // -}; - -// LY renderer system spec levels. -enum class EngineSpec : AZ::u32 -{ - Low = 1, - Medium, - High, - VeryHigh, - Never = UINT_MAX, -}; - -struct SDecalProperties -{ - SDecalProperties() - { - m_projectionType = ePlanar; - m_sortPrio = 0; - m_deferred = false; - m_pos = Vec3(0.0f, 0.0f, 0.0f); - m_normal = Vec3(0.0f, 0.0f, 1.0f); - m_explicitRightUpFront = Matrix33::CreateIdentity(); - m_radius = 1.0f; - m_depth = 1.0f; - m_opacity = 1.0f; - m_angleAttenuation = 1.0f; - m_maxViewDist = 8000.0f; - m_minSpec = EngineSpec::Low; - } - - enum EProjectionType : int - { - ePlanar, - eProjectOnTerrain, - eProjectOnTerrainAndStaticObjects - }; - - EProjectionType m_projectionType; - uint8 m_sortPrio; - uint8 m_deferred; - Vec3 m_pos; - Vec3 m_normal; - Matrix33 m_explicitRightUpFront; - float m_radius; - float m_depth; - const char* m_pMaterialName; - float m_opacity; - float m_angleAttenuation; - float m_maxViewDist; - EngineSpec m_minSpec; -}; - -// Description: -// IDecalRenderNode is an interface to the Decal Render Node object. -struct IDecalRenderNode - : public IRenderNode -{ - // - virtual void SetDecalProperties(const SDecalProperties& properties) = 0; - virtual const SDecalProperties* GetDecalProperties() const = 0; - virtual const Matrix34& GetMatrix() = 0; - virtual void CleanUpOldDecals() = 0; - // -}; - -// Description: -// IWaterVolumeRenderNode is an interface to the Water Volume Render Node object. -struct IWaterVolumeRenderNode - : public IRenderNode -{ - enum EWaterVolumeType - { - eWVT_Unknown, - eWVT_Ocean, - eWVT_Area, - eWVT_River - }; - - // - // Description: - // Sets if the render node is attached to a parent entity - // This must be called right after the object construction if it is the case - // Only supported for Areas (not rivers or ocean) - virtual void SetAreaAttachedToEntity() = 0; - - virtual void SetFogDensity(float fogDensity) = 0; - virtual float GetFogDensity() const = 0; - virtual void SetFogColor(const Vec3& fogColor) = 0; - virtual void SetFogColorAffectedBySun(bool enable) = 0; - virtual void SetFogShadowing(float fogShadowing) = 0; - - virtual void SetCapFogAtVolumeDepth(bool capFog) = 0; - virtual void SetVolumeDepth(float volumeDepth) = 0; - virtual void SetStreamSpeed(float streamSpeed) = 0; - - virtual void SetCaustics(bool caustics) = 0; - virtual void SetCausticIntensity(float causticIntensity) = 0; - virtual void SetCausticTiling(float causticTiling) = 0; - virtual void SetCausticHeight(float causticHeight) = 0; - virtual void SetAuxPhysParams(pe_params_area*) = 0; - - virtual void CreateOcean(uint64 volumeID, /* TBD */ bool keepSerializationParams = false) = 0; - virtual void CreateArea(uint64 volumeID, const Vec3* pVertices, unsigned int numVertices, const Vec2& surfUVScale, const Plane_tpl& fogPlane, bool keepSerializationParams = false, int nSID = -1) = 0; - virtual void CreateRiver(uint64 volumeID, const Vec3* pVertices, unsigned int numVertices, float uTexCoordBegin, float uTexCoordEnd, const Vec2& surfUVScale, const Plane_tpl& fogPlane, bool keepSerializationParams = false, int nSID = -1) = 0; - virtual void CreateRiver(uint64 volumeID, const AZStd::vector& verticies, const AZ::Transform& transform, float uTexCoordBegin, float uTexCoordEnd, const AZ::Vector2& surfUVScale, const AZ::Plane& fogPlane, bool keepSerializationParams = false, int nSID = -1) = 0; - - virtual void SetAreaPhysicsArea(const Vec3* pVertices, unsigned int numVertices, bool keepSerializationParams = false) = 0; - virtual void SetRiverPhysicsArea(const Vec3* pVertices, unsigned int numVertices, bool keepSerializationParams = false) = 0; - virtual void SetRiverPhysicsArea(const AZStd::vector& verticies, const AZ::Transform& transform, bool keepSerializationParams = false) = 0; - - // - - // This flag is used to account for legacy entities which used to serialize the node without parent objects. - // Now there are runtime components which spawn the rendering node, however we need to support legacy code as well. - // Remove this flag when legacy entities are removed entirely - bool m_hasToBeSerialised = true; -}; - -// Description: -// IDistanceCloudRenderNode is an interface to the Distance Cloud Render Node object. -struct SDistanceCloudProperties -{ - Vec3 m_pos; - float m_sizeX; - float m_sizeY; - float m_rotationZ; - const char* m_pMaterialName; -}; - -struct IDistanceCloudRenderNode - : public IRenderNode -{ - virtual void SetProperties(const SDistanceCloudProperties& properties) = 0; -}; - -struct SVolumeObjectProperties -{ -}; - -struct SVolumeObjectMovementProperties -{ - bool m_autoMove; - Vec3 m_speed; - Vec3 m_spaceLoopBox; - float m_fadeDistance; -}; - -// Description: -// IVolumeObjectRenderNode is an interface to the Volume Object Render Node object. -struct IVolumeObjectRenderNode - : public IRenderNode -{ - // - virtual void LoadVolumeData(const char* filePath) = 0; - virtual void SetProperties(const SVolumeObjectProperties& properties) = 0; - virtual void SetMovementProperties(const SVolumeObjectMovementProperties& properties) = 0; - // -}; - -#if !defined(EXCLUDE_DOCUMENTATION_PURPOSE) -struct IPrismRenderNode - : public IRenderNode -{ -}; -#endif // EXCLUDE_DOCUMENTATION_PURPOSE - -#endif // CRYINCLUDE_CRYCOMMON_IENTITYRENDERSTATE_H diff --git a/Code/Legacy/CryCommon/IEntityRenderState_info.cpp b/Code/Legacy/CryCommon/IEntityRenderState_info.cpp deleted file mode 100644 index 762c741214..0000000000 --- a/Code/Legacy/CryCommon/IEntityRenderState_info.cpp +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#include "TypeInfo_impl.h" -#include // <> required for Interfuscator - -ENUM_INFO_BEGIN(EERType) -ENUM_ELEM_INFO(, eERType_NotRenderNode) -ENUM_ELEM_INFO(, eERType_Dummy_10) -ENUM_ELEM_INFO(, eERType_Light) -ENUM_ELEM_INFO(, eERType_Cloud) -ENUM_ELEM_INFO(, eERType_TerrainSystem) -ENUM_ELEM_INFO(, eERType_FogVolume) -ENUM_ELEM_INFO(, eERType_Decal) -ENUM_ELEM_INFO(, eERType_Dummy_6) -ENUM_ELEM_INFO(, eERType_WaterVolume) -ENUM_ELEM_INFO(, eERType_Dummy_7) -ENUM_ELEM_INFO(, eERType_DistanceCloud) -ENUM_ELEM_INFO(, eERType_VolumeObject) -ENUM_ELEM_INFO(, eERType_Dummy_0) -ENUM_ELEM_INFO(, eERType_Rope) -ENUM_ELEM_INFO(, eERType_PrismObject) -ENUM_ELEM_INFO(, eERType_Dummy_2) -ENUM_ELEM_INFO(, eERType_Dummy_4) -ENUM_ELEM_INFO(, eERType_RenderComponent) -ENUM_ELEM_INFO(, eERType_StaticMeshRenderComponent) -ENUM_ELEM_INFO(, eERType_DynamicMeshRenderComponent) -ENUM_ELEM_INFO(, eERType_SkinnedMeshRenderComponent) -ENUM_ELEM_INFO(, eERType_GameEffect) -ENUM_ELEM_INFO(, eERType_BreakableGlass) -ENUM_ELEM_INFO(, eERType_Dummy_3) -ENUM_ELEM_INFO(, eERType_Dummy_9) -ENUM_ELEM_INFO(, eERType_GeomCache) -ENUM_ELEM_INFO(, eERType_TypesNum) -ENUM_INFO_END(EERType) diff --git a/Code/Legacy/CryCommon/IFont.h b/Code/Legacy/CryCommon/IFont.h index 41e9f5653a..15cc6568bf 100644 --- a/Code/Legacy/CryCommon/IFont.h +++ b/Code/Legacy/CryCommon/IFont.h @@ -19,6 +19,7 @@ #include #include +#include #include struct ISystem; diff --git a/Code/Legacy/CryCommon/IIndexedMesh.h b/Code/Legacy/CryCommon/IIndexedMesh.h index 87c3df98bd..a84cebacb3 100644 --- a/Code/Legacy/CryCommon/IIndexedMesh.h +++ b/Code/Legacy/CryCommon/IIndexedMesh.h @@ -7,15 +7,12 @@ */ -#ifndef CRYINCLUDE_CRYCOMMON_IINDEXEDMESH_H -#define CRYINCLUDE_CRYCOMMON_IINDEXEDMESH_H #pragma once -#include "CryHeaders.h" #include "Cry_Color.h" #include "StlUtils.h" #include "CryEndian.h" -#include + #include // for AABB #include #include @@ -57,74 +54,16 @@ public: t = other.y; } - void ExportTo(Vec2f16& other) const - { - other = Vec2f16(s, t); - } - - void ExportTo(float& others, float& othert) const - { - others = s; - othert = t; - } - - bool operator ==(const SMeshTexCoord& other) const - { - return (s == other.s) && (t == other.t); - } - - bool operator !=(const SMeshTexCoord& other) const - { - return !(*this == other); - } - - bool operator <(const SMeshTexCoord& other) const - { - return (s != other.s) ? (s < other.s) : (t < other.t); - } - - bool IsEquivalent(const Vec2& other, float epsilon = 0.003f) const - { - return - (fabs_tpl(s - other.x) <= epsilon) && - (fabs_tpl(t - other.y) <= epsilon); - } - bool IsEquivalent(const SMeshTexCoord& other, float epsilon = 0.00005f) const { return (fabs_tpl(s - other.s) <= epsilon) && (fabs_tpl(t - other.t) <= epsilon); } - ILINE Vec2 GetUV() const { return Vec2(s, t); } - - void GetUV(Vec2& otheruv) const - { - otheruv = GetUV(); - } - - void GetUV(Vec4& otheruv) const - { - otheruv = Vec4(s, t, 0.0f, 1.0f); - } - - void Lerp(const SMeshTexCoord& other, float pos) - { - Vec2 texA; - Vec2 texB; - this->GetUV(); - other.GetUV(); - - texA.SetLerp(texA, texB, pos); - - *this = SMeshTexCoord(texA); - } - - AUTO_STRUCT_INFO }; // Description: @@ -144,75 +83,6 @@ public: b = otherb; a = othera; } - - explicit SMeshColor(const Vec4& otherc) - { - r = aznumeric_caster(FtoI(otherc.x)); - g = aznumeric_caster(FtoI(otherc.y)); - b = aznumeric_caster(FtoI(otherc.z)); - a = aznumeric_caster(FtoI(otherc.w)); - } - - void TransferRGBTo(SMeshColor& other) const - { - other.r = r; - other.g = g; - other.b = b; - } - - void TransferATo(SMeshColor& other) const - { - other.a = a; - } - - void MaskA(uint8 maska) - { - a &= maska; - } - - bool operator ==(const SMeshColor& other) const - { - return (r == other.r) && (g == other.g) && (b == other.b) && (a == other.a); - } - - bool operator !=(const SMeshColor& other) const - { - return !(*this == other); - } - - bool operator <(const SMeshColor& other) const - { - return (r != other.r) ? (r < other.r) : (g != other.g) ? (g < other.g) : (b != other.b) ? (b < other.b) : (a < other.a); - } - - ILINE ColorB GetRGBA() const - { - return ColorB(r, g, b, a); - } - - void GetRGBA(ColorB& otherc) const - { - otherc = GetRGBA(); - } - - void GetRGBA(Vec4& otherc) const - { - otherc = Vec4(r, g, b, a); - } - - void Lerp(const SMeshColor& other, float pos) - { - Vec4 clrA; - Vec4 clrB; - this->GetRGBA(clrA); - other.GetRGBA(clrB); - - clrA.SetLerp(clrA, clrB, pos); - - *this = SMeshColor(clrA); - } - - AUTO_STRUCT_INFO }; @@ -222,8 +92,6 @@ struct SMeshFace { int v[3]; // indices to vertex, normals and optionally tangent basis arrays unsigned char nSubset; // index to mesh subsets array. - - AUTO_STRUCT_INFO }; // Description: @@ -241,380 +109,11 @@ public: Normal = othern; } - bool operator ==(const SMeshNormal& othern) const - { - return (Normal.x == othern.Normal.x) && (Normal.y == othern.Normal.y) && (Normal.z == othern.Normal.z); - } + Vec3 GetN() const { return Normal; } - bool operator !=(const SMeshNormal& othern) const - { - return !(*this == othern); - } - - bool operator <(const SMeshNormal& othern) const - { - return (Normal.x != othern.Normal.x) ? (Normal.x < othern.Normal.x) : (Normal.y != othern.Normal.y) ? (Normal.y < othern.Normal.y) : (Normal.z < othern.Normal.z); - } - - bool IsEquivalent(const Vec3& othern, float epsilon = 0.00005f) const - { - return - Normal.IsEquivalent(othern, epsilon); - } - - bool IsEquivalent(const SMeshNormal& othern, float epsilon = 0.00005f) const - { - return - IsEquivalent(othern.Normal, epsilon); - } - - ILINE Vec3 GetN() const - { - return Normal; - } - - void GetN(Vec3& othern) const - { - othern = GetN(); - } - - void RotateBy(const Matrix33& rot) - { - Normal = rot * Normal; - } - - void RotateSafelyBy(const Matrix33& rot) - { - Normal = rot * Normal; - // normalize in case "rot" wasn't length-preserving - Normal.Normalize(); - } - - void RotateBy(const Matrix34& trn) - { - Normal = trn.TransformVector(Normal); - } - - void RotateSafelyBy(const Matrix34& trn) - { - Normal = trn.TransformVector(Normal); - // normalize in case "trn" wasn't length-preserving - Normal.Normalize(); - } - - void Slerp(const SMeshNormal& other, float pos) - { - Vec3 nrmA = this->GetN(); - Vec3 nrmB = other.GetN(); - - nrmA.Normalize(); - nrmB.Normalize(); - - nrmA.SetSlerp(nrmA, nrmB, pos); - - *this = SMeshNormal(nrmA); - } - - AUTO_STRUCT_INFO }; -// Description: -// Mesh tangents (tangent space normals). -struct SMeshTangents -{ - SMeshTangents() {} - -private: - Vec4sf Tangent; - Vec4sf Bitangent; - -public: - explicit SMeshTangents(const Vec4sf& othert, const Vec4sf& otherb) - { - Tangent = othert; - Bitangent = otherb; - } - - explicit SMeshTangents(const SPipTangents& other) - { - Tangent = other.Tangent; - Bitangent = other.Bitangent; - } - - explicit SMeshTangents(const Vec4& othert, const Vec4& otherb) - { - Tangent = PackingSNorm::tPackF2Bv(othert); - Bitangent = PackingSNorm::tPackF2Bv(otherb); - } - - explicit SMeshTangents(const Vec3& othert, const Vec3& otherb, const Vec3& othern) - { - // TODO: can be optimized to use only integer arithmetic - int16 othersign = 1; - if (othert.Cross(otherb).Dot(othern) < 0) - { - othersign = -1; - } - - Tangent = Vec4sf(PackingSNorm::tPackF2B(othert.x), PackingSNorm::tPackF2B(othert.y), PackingSNorm::tPackF2B(othert.z), PackingSNorm::tPackS2B(othersign)); - Bitangent = Vec4sf(PackingSNorm::tPackF2B(otherb.x), PackingSNorm::tPackF2B(otherb.y), PackingSNorm::tPackF2B(otherb.z), PackingSNorm::tPackS2B(othersign)); - } - - explicit SMeshTangents(const Vec3& othert, const Vec3& otherb, const int16& othersign) - { - Tangent = Vec4sf(PackingSNorm::tPackF2B(othert.x), PackingSNorm::tPackF2B(othert.y), PackingSNorm::tPackF2B(othert.z), PackingSNorm::tPackS2B(othersign)); - Bitangent = Vec4sf(PackingSNorm::tPackF2B(otherb.x), PackingSNorm::tPackF2B(otherb.y), PackingSNorm::tPackF2B(otherb.z), PackingSNorm::tPackS2B(othersign)); - } - - void ExportTo(Vec4sf& othert, Vec4sf& otherb) const - { - othert = Tangent; - otherb = Bitangent; - } - - void ExportTo(SPipTangents& other) const - { - other.Tangent = Tangent; - other.Bitangent = Bitangent; - } - - bool operator ==(const SMeshTangents& other) const - { - return - Tangent[0] == other.Tangent[0] || - Tangent[1] == other.Tangent[1] || - Tangent[2] == other.Tangent[2] || - Tangent[3] == other.Tangent[3] || - Bitangent[0] == other.Bitangent[0] || - Bitangent[1] == other.Bitangent[1] || - Bitangent[2] == other.Bitangent[2] || - Bitangent[3] == other.Bitangent[3]; - } - - bool operator !=(const SMeshTangents& other) const - { - return !(*this == other); - } - - bool IsEquivalent(const Vec3& othert, const Vec3& otherb, const int16& othersign, float epsilon = 0.01f) const - { - // TODO: can be optimized to use only integer arithmetic - Vec4 tng, btg; - GetTB(tng, btg); - - Vec3 tng3(tng.x, tng.y, tng.z); - Vec3 btg3(btg.x, btg.y, btg.z); - - return - (tng.w == othersign) && - (btg.w == othersign) && - (tng3.Dot(othert) >= (1.0f - epsilon)) && - (btg3.Dot(otherb) >= (1.0f - epsilon)); - } - - void GetTB(Vec4sf& othert, Vec4sf& otherb) const - { - othert = Tangent; - otherb = Bitangent; - } - - void GetTB(Vec4& othert, Vec4& otherb) const - { - othert = PackingSNorm::tPackB2F(Tangent); - otherb = PackingSNorm::tPackB2F(Bitangent); - } - - void GetTB(Vec3& othert, Vec3& otherb) const - { - const Vec4 t = PackingSNorm::tPackB2F(Tangent); - const Vec4 b = PackingSNorm::tPackB2F(Bitangent); - - othert = Vec3(t.x, t.y, t.z); - otherb = Vec3(b.x, b.y, b.z); - } - - ILINE Vec3 GetN() const - { - Vec4 tng, btg; - GetTB(tng, btg); - - Vec3 tng3(tng.x, tng.y, tng.z); - Vec3 btg3(btg.x, btg.y, btg.z); - - // assumes w 1 or -1 - return tng3.Cross(btg3) * tng.w; - } - - void GetN(Vec3& othern) const - { - othern = GetN(); - } - - void GetTBN(Vec3& othert, Vec3& otherb, Vec3& othern) const - { - Vec4 tng, btg; - GetTB(tng, btg); - - Vec3 tng3(tng.x, tng.y, tng.z); - Vec3 btg3(btg.x, btg.y, btg.z); - - // assumes w 1 or -1 - othert = tng3; - otherb = btg3; - othern = tng3.Cross(btg3) * tng.w; - } - - ILINE int16 GetR() const - { - return PackingSNorm::tPackB2S(Tangent.w); - } - - void GetR(int16& sign) const - { - sign = GetR(); - } - - void RotateBy(const Matrix33& rot) - { - Vec4 tng, btg; - GetTB(tng, btg); - - Vec3 tng3(tng.x, tng.y, tng.z); - Vec3 btg3(btg.x, btg.y, btg.z); - - tng3 = rot * tng3; - btg3 = rot * btg3; - - *this = SMeshTangents(tng3, btg3, PackingSNorm::tPackB2S(Tangent.w)); - } - - void RotateSafelyBy(const Matrix33& rot) - { - Vec4 tng, btg; - GetTB(tng, btg); - - Vec3 tng3(tng.x, tng.y, tng.z); - Vec3 btg3(btg.x, btg.y, btg.z); - - tng3 = rot * tng3; - btg3 = rot * btg3; - - // normalize in case "rot" wasn't length-preserving - tng3.Normalize(); - btg3.Normalize(); - - *this = SMeshTangents(tng3, btg3, PackingSNorm::tPackB2S(Tangent.w)); - } - - void RotateBy(const Matrix34& trn) - { - Vec4 tng, btg; - GetTB(tng, btg); - - Vec3 tng3(tng.x, tng.y, tng.z); - Vec3 btg3(btg.x, btg.y, btg.z); - - tng3 = trn.TransformVector(tng3); - btg3 = trn.TransformVector(btg3); - - *this = SMeshTangents(tng3, btg3, PackingSNorm::tPackB2S(Tangent.w)); - } - - void RotateSafelyBy(const Matrix34& trn) - { - Vec4 tng, btg; - GetTB(tng, btg); - - Vec3 tng3(tng.x, tng.y, tng.z); - Vec3 btg3(btg.x, btg.y, btg.z); - - tng3 = trn.TransformVector(tng3); - btg3 = trn.TransformVector(btg3); - - // normalize in case "rot" wasn't length-preserving - tng3.Normalize(); - btg3.Normalize(); - - *this = SMeshTangents(tng3, btg3, PackingSNorm::tPackB2S(Tangent.w)); - } - - void SlerpTowards(const SMeshTangents& other, const SMeshNormal& normal, float pos) - { - Vec3 tngA, btgA; - Vec3 tngB, btgB; - this->GetTB(tngA, btgA); - other.GetTB(tngB, btgB); - - // Q: necessary? - tngA.Normalize(); - tngB.Normalize(); - btgA.Normalize(); - btgB.Normalize(); - - tngA.SetSlerp(tngA, tngB, pos); - btgA.SetSlerp(btgA, btgB, pos); - - *this = SMeshTangents(tngA, btgA, normal.GetN()); - } - - AUTO_STRUCT_INFO -}; - -struct SMeshQTangents -{ - SMeshQTangents() {} - -private: - Vec4sf TangentBitangent; - -public: - explicit SMeshQTangents(const SPipQTangents& other) - { - TangentBitangent = other.QTangent; - } - - explicit SMeshQTangents(const Quat& other) - { - TangentBitangent.x = PackingSNorm::tPackF2B(other.v.x); - TangentBitangent.y = PackingSNorm::tPackF2B(other.v.y); - TangentBitangent.z = PackingSNorm::tPackF2B(other.v.z); - TangentBitangent.w = PackingSNorm::tPackF2B(other.w); - } - - void ExportTo(SPipQTangents& other) - { - other.QTangent = TangentBitangent; - } - - ILINE Quat GetQ() const - { - Quat q; - - q.v.x = PackingSNorm::tPackB2F(TangentBitangent.x); - q.v.y = PackingSNorm::tPackB2F(TangentBitangent.y); - q.v.z = PackingSNorm::tPackB2F(TangentBitangent.z); - q.w = PackingSNorm::tPackB2F(TangentBitangent.w); - - return q; - } - - AUTO_STRUCT_INFO -}; - -// Description: -// for skinning every vertex has 4 bones and 4 weights. -struct SMeshBoneMapping_uint16 -{ - typedef uint16 BoneId; - typedef uint8 Weight; - - BoneId boneIds[4]; - Weight weights[4]; - - AUTO_STRUCT_INFO -}; - struct SMeshBoneMapping_uint8 { typedef uint8 BoneId; @@ -622,27 +121,8 @@ struct SMeshBoneMapping_uint8 BoneId boneIds[4]; Weight weights[4]; - - AUTO_STRUCT_INFO }; -//START: Add LOD support for touch bending vegetation -struct SMeshBoneMappingInfo_uint8 -{ - SMeshBoneMappingInfo_uint8(int vertexCount) - { - //Will be deleted by ~SFoliageInfoCGF() - pBoneMapping = new SMeshBoneMapping_uint8[vertexCount]; - nVertexCount = vertexCount; - } - - int nVertexCount; - struct SMeshBoneMapping_uint8* pBoneMapping; - - AUTO_STRUCT_INFO -}; -//END: Add LOD support for touch bending vegetation - // Subset of mesh is a continuous range of vertices and indices that share same material. struct SMeshSubset { @@ -672,1530 +152,11 @@ struct SMeshSubset , nNumVerts(0) , nMatID(0) , nMatFlags(0) - , nPhysicalizeType(PHYS_GEOM_TYPE_DEFAULT) + , nPhysicalizeType(0x1000) , vertexFormat(eVF_P3S_C4B_T2S) { } - void GetMemoryUsage([[maybe_unused]] class ICrySizer* pSizer) const - { - } - - // fix numVerts - void FixRanges(vtx_idx* pIndices) - { - int startVertexToMerge = nFirstVertId; - int startIndexToMerge = nFirstIndexId; - int numIndiciesToMerge = nNumIndices; - // find good min and max AGAIN - int maxVertexInUse = 0; - for (int n = 0; n < numIndiciesToMerge; n++) - { - int i = (int)pIndices[n + startIndexToMerge]; - startVertexToMerge = (i < startVertexToMerge ? i : startVertexToMerge);// min - maxVertexInUse = (i > maxVertexInUse ? i : maxVertexInUse);// max - } - nNumVerts = maxVertexInUse - startVertexToMerge + 1; - } -}; - -class CMeshHelpers -{ -public: - template - static bool ComputeTexMappingAreas( - size_t indexCount, const TIndex* pIndices, - size_t vertexCount, - const TPosition* pPositions, size_t stridePositions, - const TTexCoordinates* pTexCoords, size_t strideTexCoords, - float& computedPosArea, float& computedTexArea, const char*& errorText) - { - static const float minPosArea = 10e-6f; - static const float minTexArea = 10e-8f; - - computedPosArea = 0; - computedTexArea = 0; - errorText = "?"; - - if (indexCount <= 0) - { - errorText = "index count is 0"; - return false; - } - - if (vertexCount <= 0) - { - errorText = "vertex count is 0"; - return false; - } - - if ((pIndices == NULL) || (pPositions == NULL)) - { - errorText = "indices and/or positions are NULL"; - return false; - } - - if (pTexCoords == NULL) - { - errorText = "texture coordinates are NULL"; - return false; - } - - if (indexCount % 3 != 0) - { - assert(0); - errorText = "bad number of indices"; - return false; - } - - // Compute average geometry area of face - - int count = 0; - float posAreaSum = 0; - float texAreaSum = 0; - for (size_t i = 0; i < indexCount; i += 3) - { - const size_t index0 = pIndices[i]; - const size_t index1 = pIndices[i + 1]; - const size_t index2 = pIndices[i + 2]; - - if ((index0 >= vertexCount) || (index1 >= vertexCount) || (index2 >= vertexCount)) - { - errorText = "bad vertex index detected"; - return false; - } - - const Vec3 pos0 = ToVec3(*(const TPosition*) (((const char*)pPositions) + index0 * stridePositions)); - const Vec3 pos1 = ToVec3(*(const TPosition*) (((const char*)pPositions) + index1 * stridePositions)); - const Vec3 pos2 = ToVec3(*(const TPosition*) (((const char*)pPositions) + index2 * stridePositions)); - - const Vec2 tex0 = ToVec2(*(const TTexCoordinates*) (((const char*)pTexCoords) + index0 * strideTexCoords)); - const Vec2 tex1 = ToVec2(*(const TTexCoordinates*) (((const char*)pTexCoords) + index1 * strideTexCoords)); - const Vec2 tex2 = ToVec2(*(const TTexCoordinates*) (((const char*)pTexCoords) + index2 * strideTexCoords)); - - const float posArea = ((pos1 - pos0).Cross(pos2 - pos0)).GetLength() * 0.5f; - const float texArea = fabsf((tex1 - tex0).Cross(tex2 - tex0)) * 0.5f; - - if ((posArea >= minPosArea) && (texArea >= minTexArea)) - { - posAreaSum += posArea; - texAreaSum += texArea; - ++count; - } - } - - if (count == 0 || (posAreaSum < minPosArea) || (texAreaSum < minTexArea)) - { - errorText = "faces are too small or have stretched mapping"; - return false; - } - - computedPosArea = posAreaSum; - computedTexArea = texAreaSum; - return true; - } - - template - static bool CollectFaceAreas(size_t indexCount, const vtx_idx* pIndices, size_t vertexCount, - const TPosition* pPositions, size_t stridePositions, std::vector& areas) - { - static const float minFaceArea = 10e-6f; - - if (indexCount % 3 != 0) - { - return false; - } - - areas.reserve(areas.size() + indexCount / 3); - - for (size_t i = 0; i < indexCount; i += 3) - { - const uint index0 = pIndices[i]; - const uint index1 = pIndices[i + 1]; - const uint index2 = pIndices[i + 2]; - - if ((index0 >= vertexCount) || (index1 >= vertexCount) || (index2 >= vertexCount)) - { - return false; - } - - const Vec3 pos0 = ToVec3(*(const TPosition*) (((const char*)pPositions) + index0 * stridePositions)); - const Vec3 pos1 = ToVec3(*(const TPosition*) (((const char*)pPositions) + index1 * stridePositions)); - const Vec3 pos2 = ToVec3(*(const TPosition*) (((const char*)pPositions) + index2 * stridePositions)); - - const float faceArea = ((pos1 - pos0).Cross(pos2 - pos0)).GetLength() * 0.5f; - - if (faceArea >= minFaceArea) - { - areas.push_back(faceArea); - } - } - - return true; - } - -private: - template - inline static Vec3 ToVec3(const T& v) - { - return v.ToVec3(); - } - - template - inline static Vec2 ToVec2(const T& v) - { - Vec2 uv; - v.GetUV(uv); - - return uv; - } -}; - -template <> -inline Vec3 CMeshHelpers::ToVec3(const Vec3& v) -{ - return v; -} - -template <> -inline Vec2 CMeshHelpers::ToVec2(const Vec2& v) -{ - return v; -} - -template <> -inline Vec2 CMeshHelpers::ToVec2(const Vec2f16& v) -{ - return v.ToVec2(); -} - -template <> -inline Vec2 CMeshHelpers::ToVec2(const SMeshTexCoord& v) -{ - return v.GetUV(); -} - - -////////////////////////////////////////////////////////////////////////// -// Description: -// General purpose mesh class. -////////////////////////////////////////////////////////////////////////// -class CMesh -{ -public: - // e.g. no more than 8 positions, 8 colors, 8 uv sets, etc. - const static uint maxStreamsPerType = 8; - enum EStream - { - POSITIONS = 0, - POSITIONSF16, - NORMALS, - FACES, - TOPOLOGY_IDS, - TEXCOORDS, - COLORS, - INDICES, - TANGENTS, - BONEMAPPING, - VERT_MATS, - QTANGENTS, - P3S_C4B_T2S, - - EXTRABONEMAPPING, // Extra stream. Does not have a stream ID in the CGF. Its data is saved at the end of the BONEMAPPING stream. - - LAST_STREAM, - }; - - SMeshFace* m_pFaces; // faces are used in mesh processing/compilation - int32* m_pTopologyIds; - - // geometry data - vtx_idx* m_pIndices; // indices are used for the final render-mesh - Vec3* m_pPositions; - Vec3f16* m_pPositionsF16; - - SMeshNormal* m_pNorms; - SMeshTangents* m_pTangents; - SMeshQTangents* m_pQTangents; - SMeshTexCoord* m_pTexCoord; - SMeshColor* m_pColor0; - SMeshColor* m_pColor1; - - int* m_pVertMats; - SVF_P3S_C4B_T2S* m_pP3S_C4B_T2S; - - SMeshBoneMapping_uint16* m_pBoneMapping; //bone-mapping for the final render-mesh - SMeshBoneMapping_uint16* m_pExtraBoneMapping; //bone indices and weights for bones 5 to 8. - - int m_nCoorCount; //number of texture coordinates in m_pTexCoord array - int m_streamSize[LAST_STREAM][maxStreamsPerType]; - - // Bounding box. - AABB m_bbox; - - // Array of mesh subsets. - DynArray m_subsets; - - // Mask that indicate if this stream is using not allocated in Mesh pointer; - // ex. if (m_sharedStreamMasks[0] & (1< the 1st normals stream is shared - // if (m_sharedStreamMasks[1] & (1< the 2nd uv set stream is shared - uint32 m_sharedStreamMasks[maxStreamsPerType]; - - // Texture space area divided by geometry area. Zero if cannot compute. - float m_texMappingDensity; - - // Geometric mean value calculated from the areas of this mesh faces. - float m_geometricMeanFaceArea; - - ////////////////////////////////////////////////////////////////////////// - void GetMemoryUsage(class ICrySizer* pSizer) const - { - pSizer->AddObject(this, sizeof(*this)); - pSizer->AddObject(m_subsets); - - for (int streamType = 0; streamType < LAST_STREAM; streamType++) - { - for (int streamIndex = 0; streamIndex < GetNumberOfStreamsByType(streamType); ++streamIndex) - { - void* pStream; - int nElementSize = 0; - GetStreamInfo(streamType, streamIndex, pStream, nElementSize); - pSizer->AddObject(pStream, m_streamSize[streamType][streamIndex] * nElementSize); - } - } - } - - ////////////////////////////////////////////////////////////////////////// - CMesh() - { - m_pFaces = NULL; - m_pTopologyIds = NULL; - m_pIndices = NULL; - m_pPositions = NULL; - m_pPositionsF16 = NULL; - m_pNorms = NULL; - m_pTangents = NULL; - m_pQTangents = NULL; - m_pTexCoord = NULL; - m_pColor0 = NULL; - m_pColor1 = NULL; - m_pVertMats = NULL; - m_pP3S_C4B_T2S = NULL; - m_pBoneMapping = NULL; - m_pExtraBoneMapping = NULL; - - m_nCoorCount = 0; - - memset(m_texCoords, 0, sizeof(m_texCoords)); - memset(m_streamSize, 0, sizeof(m_streamSize)); - - m_bbox.Reset(); - - memset(m_sharedStreamMasks, 0, sizeof(m_sharedStreamMasks)); - - m_texMappingDensity = 0.0f; - m_geometricMeanFaceArea = 0.0f; - } - - virtual ~CMesh() - { - FreeStreams(); - } - - void FreeStreams() - { - for (int streamType = 0; streamType < LAST_STREAM; ++streamType) - { - for (int streamIndex = 0; streamIndex < GetNumberOfStreamsByType(streamType); ++streamIndex) - { - ReallocStream(streamType, streamIndex, 0); - } - } - } - - int GetFaceCount() const - { - return m_streamSize[FACES][0]; - } - int GetVertexCount() const - { - return max(max(m_streamSize[POSITIONS][0], m_streamSize[POSITIONSF16][0]), m_streamSize[P3S_C4B_T2S][0]); - } - int GetTexCoordCount() const - { - return m_nCoorCount; - } - int GetTangentCount() const - { - return m_streamSize[TANGENTS][0]; - } - int GetSubSetCount() const - { - return m_subsets.size(); - } - int GetIndexCount() const - { - return m_streamSize[INDICES][0]; - } - - void SetFaceCount(int nNewCount) - { - ReallocStream(FACES, 0, nNewCount); - } - - void SetVertexCount(int nNewCount) - { - if (GetVertexCount() != nNewCount || GetVertexCount() == 0) - { - ReallocStream(POSITIONS, 0, nNewCount); - ReallocStream(POSITIONSF16, 0, 0); - ReallocStream(NORMALS, 0, nNewCount); - - if (m_pColor0) - { - ReallocStream(COLORS, 0, nNewCount); - } - - if (m_pColor1) - { - ReallocStream(COLORS, 1, nNewCount); - } - - if (m_pVertMats) - { - ReallocStream(VERT_MATS, 0, nNewCount); - } - } - } - - void SetTexCoordsCount(int nNewCount) - { - if (m_nCoorCount != nNewCount || m_nCoorCount == 0) - { - ReallocStream(TEXCOORDS, 0, nNewCount); - m_nCoorCount = nNewCount; - } - } - - void SetTexCoordsAndTangentsCount(int nNewCount) - { - if (m_nCoorCount != nNewCount || m_nCoorCount == 0) - { - ReallocStream(TEXCOORDS, 0, nNewCount); - ReallocStream(TANGENTS, 0, nNewCount); - m_nCoorCount = nNewCount; - } - } - - void SetIndexCount(int nNewCount) - { - ReallocStream(INDICES, 0, nNewCount); - } - // Once m_pTexCoords, m_pColors, etc. are wrapped in vectors, return the size of the vector - // or if we go with fixed size arrays, with a bunch of nullptrs, maybe just return the fixed size or the number of non-null ptrs - int GetNumberOfStreamsByType(int streamType) const - { - if (streamType == COLORS || streamType == TEXCOORDS) - { - return 2; - } - return 1; - } - - bool Has32BitPositions(void) const - { - return m_pPositions != nullptr; - } - - bool Has16BitPositions(void) const - { - return m_pPositionsF16 != nullptr; - } - - bool IsUVSetEmptyForSubmesh(uint submeshIndex, uint uvSet) - { - // Get a pointer to the uv set - SMeshTexCoord* texCoords = nullptr; - if (uvSet == 0) - { - texCoords = m_pTexCoord; - } - else - { - texCoords = m_texCoords[uvSet]; - } - - if (texCoords) - { - // Iterate through the vertices for the submesh - Vec2 emptyTexCoord = Vec2(0.0f, 0.0f); - for (int i = m_subsets[submeshIndex].nFirstVertId; i < m_subsets[submeshIndex].nFirstVertId + m_subsets[submeshIndex].nNumVerts; ++i) - { - // If any of the texture coordinates for the given uv set are non-zero, return false. - if (texCoords[i].GetUV() != emptyTexCoord) - { - return false; - } - } - } - // If no valid texture coordinates are found for submesh for the given uv set, return true. - return true; - } - - void SetSubmeshVertexFormats(void) - { - EVertexFormat desiredFormat = eVF_Unknown; - for (int submeshIndex = 0; submeshIndex < m_subsets.size(); ++submeshIndex) - { - // Choose float or short based on the precision of the positions - if (this->Has32BitPositions()) - { - // Choose one or two uv sets - if (IsUVSetEmptyForSubmesh(submeshIndex, 1)) - { - desiredFormat = eVF_P3F_C4B_T2F; - } - else - { - desiredFormat = eVF_P3F_C4B_T2F_T2F; - } - } - else if (this->Has16BitPositions()) - { - // Choose one or two uv sets - if (IsUVSetEmptyForSubmesh(submeshIndex, 1)) - { - desiredFormat = eVF_P3S_C4B_T2S; - } - else - { - desiredFormat = eVF_P3S_C4B_T2S_T2S; - } - } - else - { - AZ_Assert(false, "Submesh does not contain positions"); - } - - // Set the vertex format for the submesh - m_subsets[submeshIndex].vertexFormat = AZ::Vertex::Format(desiredFormat); - } - } - - AZ::Vertex::Format GetVertexFormatForSubmesh(int submeshIndex) const - { - assert(submeshIndex < m_subsets.size()); - - return m_subsets[submeshIndex].vertexFormat; - } - - AZ::Vertex::Format GetMeshGroupVertexFormat() const - { - AZ::Vertex::Format meshGroupFormat; - for (int submeshIndex = 0; submeshIndex < m_subsets.size(); ++submeshIndex) - { - if (m_subsets[submeshIndex].vertexFormat > meshGroupFormat) - { - meshGroupFormat = m_subsets[submeshIndex].vertexFormat; - } - } - - return meshGroupFormat; - } - - // Set specific stream type as shared. If there are multiple streams for a given type (such as multiple uv sets), then all streams of that type will be marked as shared - void SetSharedStream(int streamType, int streamIndex, void* pStream, int nElementCount) - { - AZ_Assert(streamType >= 0 && streamType < LAST_STREAM && streamIndex < maxStreamsPerType, "Stream type %d outside of allowable range (%d to %d) of CMesh::EStream, or stream index %d exceeds the maximum number of vertex streams (%d) per type.", streamType, 0, CMesh::LAST_STREAM, streamIndex, maxStreamsPerType); - if ((m_sharedStreamMasks[streamIndex] & (1 << streamType)) == 0) - { - ReallocStream(streamType, streamIndex, 0); - m_sharedStreamMasks[streamIndex] |= (1 << streamType); - } - SetStreamData(streamType, streamIndex, pStream, nElementCount); - } - - template - T* GetStreamPtrAndElementCount(int streamType, int streamIndex, int* pElementCount = 0) const - { - void* pStream = 0; - int nElementSize = 0; - GetStreamInfo(streamType, streamIndex, pStream, nElementSize); - - if (nElementSize != sizeof(T)) - { - AZ_Assert(false, "The element size %d returned by GetStreamInfo does not match the size %d of type T", nElementSize, sizeof(T)); - pStream = 0; - } - - const int nElementCount = (pStream ? this->m_streamSize[streamType][streamIndex] : 0); - - if (pElementCount) - { - *pElementCount = nElementCount; - } - return (T*)pStream; - } - - template - T* GetStreamPtr(int streamType, int streamIndex = 0) const - { - void* pStream = 0; - int nElementSize = 0; - GetStreamInfo(streamType, streamIndex, pStream, nElementSize); - - if (nElementSize != sizeof(T)) - { - AZ_Assert(false, "The element size %d returned by GetStreamInfo does not match the size %d of type T", nElementSize, sizeof(T)); - pStream = 0; - } - - return (T*)pStream; - } - - void GetStreamInfo(int streamType, int streamIndex, void*& pStream, int& nElementSize) const - { - pStream = 0; - nElementSize = 0; - AZ_Assert(streamType >= 0 && streamType < LAST_STREAM && streamIndex < maxStreamsPerType, "Stream type %d outside of allowable range (%d to %d) of CMesh::EStream, or stream index %d exceeds the maximum number of vertex streams (%d) per type.", streamType, 0, CMesh::LAST_STREAM, streamIndex, maxStreamsPerType); - - switch (streamType) - { - case POSITIONS: - pStream = m_pPositions; - nElementSize = sizeof(Vec3); - break; - case POSITIONSF16: - pStream = m_pPositionsF16; - nElementSize = sizeof(Vec3f16); - break; - case NORMALS: - pStream = m_pNorms; - nElementSize = sizeof(Vec3); - break; - case VERT_MATS: - pStream = m_pVertMats; - nElementSize = sizeof(int); - break; - case FACES: - pStream = m_pFaces; - nElementSize = sizeof(SMeshFace); - break; - case TOPOLOGY_IDS: - pStream = m_pTopologyIds; - nElementSize = sizeof(int32); - break; - case TEXCOORDS: - if (streamIndex == 0) - { - pStream = m_pTexCoord; - } - else - { - pStream = m_texCoords[streamIndex]; - } - nElementSize = sizeof(SMeshTexCoord); - break; - case COLORS: - if (streamIndex == 0) - { - pStream = m_pColor0; - } - else - { - pStream = m_pColor1; - } - nElementSize = sizeof(SMeshColor); - break; - case INDICES: - pStream = m_pIndices; - nElementSize = sizeof(vtx_idx); - break; - case TANGENTS: - pStream = m_pTangents; - nElementSize = sizeof(SMeshTangents); - break; - case QTANGENTS: - pStream = m_pQTangents; - nElementSize = sizeof(SMeshQTangents); - break; - case BONEMAPPING: - pStream = m_pBoneMapping; - nElementSize = sizeof(SMeshBoneMapping_uint16); - break; - case EXTRABONEMAPPING: - pStream = m_pExtraBoneMapping; - nElementSize = sizeof(SMeshBoneMapping_uint16); - break; - case P3S_C4B_T2S: - pStream = m_pP3S_C4B_T2S; - nElementSize = sizeof(SVF_P3S_C4B_T2S); - break; - default: - AZ_Assert(false, "Unknown stream"); - break; - } - } - - - virtual void ReallocStream(int streamType, int streamIndex, int nNewCount) - { - if (streamType < 0 || streamType >= LAST_STREAM || streamIndex >= maxStreamsPerType) - { - AZ_Assert(false, "Stream type %d outside of allowable range (%d to %d) of CMesh::EStream, or stream index %d exceeds the maximum number of vertex streams (%d) per type.", streamType, 0, CMesh::LAST_STREAM, streamIndex, maxStreamsPerType); - return; - } - - if (m_sharedStreamMasks[streamIndex] & (1 << streamType)) - { - m_sharedStreamMasks[streamIndex] &= ~(1 << streamType); - - if (nNewCount <= 0) - { - SetStreamData(streamType, 0, nullptr, 0); - } - else - { - const int nOldCount = m_streamSize[streamType][streamIndex]; - void* pOldElements = 0; - int nElementSize = 0; - GetStreamInfo(streamType, streamIndex, pOldElements, nElementSize); - - void* const pNewElements = realloc(0, nNewCount * nElementSize); - if (!pNewElements) - { - AZ_Assert(false, "Allocation failed"); - SetStreamData(streamType, streamIndex, nullptr, 0); - return; - } - - if (nOldCount > 0) - { - memcpy(pNewElements, pOldElements, min(nOldCount, nNewCount) * nElementSize); - } - if (nNewCount > nOldCount) - { - memset((char*)pNewElements + nOldCount * nElementSize, 0, (nNewCount - nOldCount) * nElementSize); - } - - SetStreamData(streamType, streamIndex, pNewElements, nNewCount); - } - } - else - { - const int nOldCount = m_streamSize[streamType][streamIndex]; - if (nOldCount == nNewCount) - { - // stream already has required size - return; - } - - void* pOldElements = 0; - int nElementSize = 0; - GetStreamInfo(streamType, streamIndex, pOldElements, nElementSize); - - if (nNewCount <= 0) - { - free(pOldElements); - SetStreamData(streamType, streamIndex, nullptr, 0); - } - else - { - void* const pNewElements = realloc(pOldElements, nNewCount * nElementSize); - if (!pNewElements) - { - AZ_Assert(false, "Allocation failed"); - free(pOldElements); - SetStreamData(streamType, streamIndex, nullptr, 0); - return; - } - - if (nNewCount > nOldCount) - { - memset((char*)pNewElements + nOldCount * nElementSize, 0, (nNewCount - nOldCount) * nElementSize); - } - - SetStreamData(streamType, streamIndex, pNewElements, nNewCount); - } - } - } - - // Copy mesh from source mesh. - void Copy(const CMesh& mesh) - { - for (int streamType = 0; streamType < LAST_STREAM; streamType++) - { - for (int streamIndex = 0; streamIndex < GetNumberOfStreamsByType(streamType); ++streamIndex) - { - ReallocStream(streamType, streamIndex, mesh.m_streamSize[streamType][streamIndex]); - if (mesh.m_streamSize[streamType][streamIndex] > 0) - { - void* pSrcStream = 0; - void* pTrgStream = 0; - int nElementSize = 0; - mesh.GetStreamInfo(streamType, streamIndex, pSrcStream, nElementSize); - GetStreamInfo(streamType, streamIndex, pTrgStream, nElementSize); - if (pSrcStream && pTrgStream) - { - memcpy(pTrgStream, pSrcStream, m_streamSize[streamType][streamIndex] * nElementSize); - } - } - } - } - m_bbox = mesh.m_bbox; - m_subsets = mesh.m_subsets; - m_texMappingDensity = mesh.m_texMappingDensity; - m_geometricMeanFaceArea = mesh.m_geometricMeanFaceArea; - } - - bool CompareStreams(const CMesh& mesh) const - { - for (int streamType = 0; streamType < LAST_STREAM; streamType++) - { - for (int streamIndex = 0; streamIndex < GetNumberOfStreamsByType(streamType); ++streamIndex) - { - if (m_streamSize[streamType][streamIndex] != mesh.m_streamSize[streamType][streamIndex]) - { - return false; - } - - if (m_streamSize[streamType][streamIndex]) - { - void* pStream1 = 0; - void* pStream2 = 0; - int nElementSize1 = 0; - int nElementSize2 = 0; - GetStreamInfo(streamType, streamIndex, pStream1, nElementSize1); - mesh.GetStreamInfo(streamType, streamIndex, pStream2, nElementSize2); - - assert(nElementSize1 == nElementSize2); - - if ((pStream1 && !pStream2) || (!pStream1 && pStream2)) - { - return false; - } - - if (pStream1 && pStream2) - { - if (memcmp(pStream1, pStream2, m_streamSize[streamType][streamIndex] * nElementSize1) != 0) - { - return false; - } - } - } - } - } - return true; - } - - // Add streams from source mesh to the end of existing streams. - const char* Append(const CMesh& mesh) - { - return Append(mesh, 0, -1, 0, -1); - } - - // Add streams from source mesh to the end of existing streams. - const char* Append(const CMesh& mesh, int fromVertex, int vertexCount, int fromFace, int faceCount) - { - if (GetIndexCount() > 0 || mesh.GetIndexCount() > 0) - { - assert(0); - return "Cmesh::Append() cannot handle meshes with indices, it can handle faces only"; - } - - // Non-ranged requests should start from 0th element and element count should be <0. - if ((vertexCount < 0 && fromVertex != 0) || (faceCount < 0 && fromFace != 0)) - { - assert(0); - return "Cmesh::Append(): Bad CMesh parameters"; - } - if (vertexCount < 0) - { - vertexCount = mesh.GetVertexCount(); - } - if (faceCount < 0) - { - faceCount = mesh.GetFaceCount(); - } - - const int oldVertexCount = GetVertexCount(); - const int oldFaceCount = GetFaceCount(); - const int nOldCoorCount = GetTexCoordCount(); - - if (GetTexCoordCount() != 0 && GetTexCoordCount() != oldVertexCount) - { - assert(0); - return "Cmesh::Append(): Mismatch in target CMesh vert/tcoord counts"; - } - - if (mesh.GetTexCoordCount() != 0 && mesh.GetTexCoordCount() != mesh.GetVertexCount()) - { - assert(0); - return "Cmesh::Append(): Mismatch in source CMesh vert/tcoord counts"; - } - - for (int streamType = 0; streamType < LAST_STREAM; ++streamType) - { - for (int streamIndex = 0; streamIndex < GetNumberOfStreamsByType(streamType); ++streamIndex) - { - const int oldCount = (streamType == FACES) ? oldFaceCount : oldVertexCount; - - const int from = (streamType == FACES) ? fromFace : fromVertex; - const int count = (streamType == FACES) ? faceCount : vertexCount; - - const int oldStreamSize = m_streamSize[streamType][streamIndex]; - const int streamSize = mesh.m_streamSize[streamType][streamIndex]; - - if (oldStreamSize <= 0 && (count <= 0 || streamSize <= 0)) - { - continue; - } - - ReallocStream(streamType, streamIndex, oldCount + count); - - if (count > 0) - { - void* pSrcStream = 0; - void* pTrgStream = 0; - int srcElementSize = 0; - int trgElementSize = 0; - mesh.GetStreamInfo(streamType, streamIndex, pSrcStream, srcElementSize); - GetStreamInfo(streamType, streamIndex, pTrgStream, trgElementSize); - - assert(srcElementSize == trgElementSize); - - if (pSrcStream && pTrgStream) - { - memcpy( - (char*)pTrgStream + oldCount * trgElementSize, - (char*)pSrcStream + from * srcElementSize, - count * srcElementSize); - } - } - } - } - - { - const int nOffset = oldVertexCount - fromVertex; - const int newFaceCount = GetFaceCount(); - - for (int i = oldFaceCount; i < newFaceCount; ++i) - { - m_pFaces[i].v[0] += nOffset; - m_pFaces[i].v[1] += nOffset; - m_pFaces[i].v[2] += nOffset; - } - } - - m_bbox.Add(mesh.m_bbox.min); - m_bbox.Add(mesh.m_bbox.max); - - return 0; - } - - void RemoveRangeFromStream(int streamType, int streamIndex, int nFirst, int nCount) - { - if (streamType < 0 || streamType >= LAST_STREAM || streamIndex >= maxStreamsPerType) - { - AZ_Assert(false, "Stream type %d outside of allowable range (%d to %d) of CMesh::EStream, or stream index %d exceeds the maximum number of vertex streams (%d) per type.", streamType, 0, CMesh::LAST_STREAM, streamIndex, maxStreamsPerType); - return; - } - - if (m_sharedStreamMasks[streamIndex] & (1 << streamType)) - { - // Make shared stream non-shared - ReallocStream(streamType, streamIndex, m_streamSize[streamType][streamIndex]); - } - - const int nTotalCount = m_streamSize[streamType][streamIndex]; - - int nElementSize; - void* pStream = 0; - GetStreamInfo(streamType, streamIndex, pStream, nElementSize); - - if (nFirst >= nTotalCount || nTotalCount <= 0 || pStream == 0) - { - return; - } - if (nFirst + nCount > nTotalCount) - { - nCount = nTotalCount - nFirst; - } - if (nCount <= 0) - { - return; - } - - const int nTailCount = nTotalCount - (nFirst + nCount); - if (nTailCount > 0) - { - char* const pRangeStart = (char*)pStream + nFirst * nElementSize; - char* const pRangeEnd = (char*)pStream + (nFirst + nCount) * nElementSize; - memmove(pRangeStart, pRangeEnd, nTailCount * nElementSize); - } - - ReallocStream(streamType, streamIndex, nTotalCount - nCount); - } - - bool Validate(const char** const ppErrorDescription) const - { - const int vertexCount = GetVertexCount(); - const int faceCount = GetFaceCount(); - const int indexCount = GetIndexCount(); - - if ((faceCount <= 0) && (indexCount <= 0)) - { - if (vertexCount > 0) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "no any indices, but vertices exist"; - } - return false; - } - } - - if ((uint)vertexCount > (sizeof(vtx_idx) == 2 ? 0xffff : 0x7fffffff)) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = - (sizeof(vtx_idx) == 2) - ? "vertex count is greater or equal than 64K" - : "vertex count is greater or equal than 2G"; - } - return false; - } - - if (faceCount > 0) - { - if (vertexCount <= 0) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "no any vertices, but faces exist"; - } - return false; - } - } - - if (indexCount > 0) - { - if (vertexCount <= 0) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "no any vertices, but indices exist"; - } - return false; - } - } - - for (int i = 0; i < faceCount; ++i) - { - const SMeshFace& face = m_pFaces[i]; - for (int j = 0; j < 3; ++j) - { - const int v = face.v[j]; - if ((v < 0) || (v >= vertexCount)) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "a face refers vertex outside of vertex array"; - } - return false; - } - } - } - - for (int i = 0; i < indexCount; i++) - { - if ((uint)m_pIndices[i] >= (uint)vertexCount) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "an index refers vertex outside of vertex array"; - } - return false; - } - } - - if (GetTexCoordCount() != 0 && GetTexCoordCount() != vertexCount) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "number of texture coordinates is different from number of vertices"; - } - return false; - } - - if (!_finite(m_bbox.min.x) || !_finite(m_bbox.min.y) || !_finite(m_bbox.min.z) || - !_finite(m_bbox.max.x) || !_finite(m_bbox.max.y) || !_finite(m_bbox.max.z)) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "bounding box contains damaged data"; - } - return false; - } - - if (m_bbox.IsReset()) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "bounding box is not set"; - } - return false; - } - - if (m_bbox.max.x < m_bbox.min.x || - m_bbox.max.y < m_bbox.min.y || - m_bbox.max.z < m_bbox.min.z) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "bounding box min is greater than max"; - } - return false; - } - - if (m_bbox.min.GetDistance(m_bbox.max) < 0.001f) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "bounding box is less than 1 mm in size"; - } - return false; - } - - for (int s = 0, subsetCount = m_subsets.size(); s < subsetCount; ++s) - { - const SMeshSubset& subset = m_subsets[s]; - - if (subset.nNumIndices <= 0) - { - if (subset.nNumVerts > 0) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "a mesh subset without indices contains vertices"; - } - return false; - } - continue; - } - else if (subset.nNumVerts <= 0) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "a mesh subset has indices but vertices are missing"; - } - return false; - } - - if (subset.nFirstIndexId < 0) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "a mesh subset has negative start position in index array"; - } - return false; - } - if (subset.nFirstIndexId + subset.nNumIndices > indexCount) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "a mesh subset refers indices outside of index array"; - } - return false; - } - if (subset.nFirstVertId < 0) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "a mesh subset has negative start position in vertex array"; - } - return false; - } - if (subset.nFirstVertId + subset.nNumVerts > vertexCount) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "a mesh subset refers vertices outside of vertex array"; - } - return false; - } - - for (int ii = subset.nFirstIndexId; ii < subset.nFirstIndexId + subset.nNumIndices; ++ii) - { - const uint index = m_pIndices[ii]; - if (index < (uint)subset.nFirstVertId) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "a mesh subset refers a vertex lying before subset vertices"; - } - return false; - } - if (index >= (uint)(subset.nFirstVertId + subset.nNumVerts)) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "a mesh subset refers a vertex lying after subset vertices"; - } - return false; - } - - Vec3 p(ZERO); - const Vec3* pp = &p; - if (m_pPositions) - { - pp = &m_pPositions[index]; - } - else if (m_pPositionsF16) - { - p = m_pPositionsF16[index].ToVec3(); - } - else if (m_pP3S_C4B_T2S) - { - p = m_pP3S_C4B_T2S[index].xyz.ToVec3(); - } - if (!_finite(pp->x)) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "a mesh subset contains a vertex with damaged x component"; - } - return false; - } - if (!_finite(pp->y)) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "a mesh subset contains a vertex with damaged y component"; - } - return false; - } - if (!_finite(pp->z)) - { - if (ppErrorDescription) - { - ppErrorDescription[0] = "a mesh subset contains a vertex with damaged z component"; - } - return false; - } - } - } - - return true; - } - - bool ComputeSubsetTexMappingAreas( - size_t subsetIndex, - float& computedPosArea, float& computedTexArea, const char*& errorText) - { - computedPosArea = 0.0f; - computedTexArea = 0.0f; - errorText = ""; - - if (subsetIndex >= (size_t)m_subsets.size()) - { - errorText = "subset index is bad"; - return false; - } - - if (GetIndexCount() <= 0) - { - errorText = "missing indices"; - return false; - } - - if ((GetVertexCount() <= 0) || ((m_pPositions == NULL) && (m_pPositionsF16 == NULL))) - { - errorText = "missing vertices"; - return false; - } - - if ((m_pTexCoord == NULL) || (GetTexCoordCount() <= 0)) - { - errorText = "missing texture coordinates"; - return false; - } - - const SMeshSubset& subset = m_subsets[subsetIndex]; - - if ((subset.nNumIndices <= 0) || (subset.nFirstIndexId < 0)) - { - errorText = "missing or bad indices in subset"; - return false; - } - - bool ok; - if (m_pPositions) - { - ok = CMeshHelpers::ComputeTexMappingAreas( - subset.nNumIndices, &m_pIndices[subset.nFirstIndexId], - GetVertexCount(), - &m_pPositions[0], sizeof(m_pPositions[0]), - &m_pTexCoord[0], sizeof(m_pTexCoord[0]), - computedPosArea, computedTexArea, errorText); - } - else - { - ok = CMeshHelpers::ComputeTexMappingAreas( - subset.nNumIndices, &m_pIndices[subset.nFirstIndexId], - GetVertexCount(), - &m_pPositionsF16[0], sizeof(m_pPositionsF16[0]), - &m_pTexCoord[0], sizeof(m_pTexCoord[0]), - computedPosArea, computedTexArea, errorText); - } - - return ok; - } - - // note: this function doesn't work for "old" uncompressed meshes (with faces instead of indices) - bool RecomputeTexMappingDensity() - { - m_texMappingDensity = 0; - - if (GetFaceCount() > 0) - { - // uncompressed mesh - not supported - return false; - } - - if ((GetIndexCount() <= 0) || (GetVertexCount() <= 0) || ((m_pPositions == NULL) && (m_pPositionsF16 == NULL))) - { - return false; - } - - if ((m_pTexCoord == NULL) || (GetTexCoordCount() <= 0)) - { - return false; - } - - float totalPosArea = 0; - float totalTexArea = 0; - - for (size_t i = 0, count = m_subsets.size(); i < count; ++i) - { - - float posArea; - float texArea; - const char* errorText = ""; - - const bool ok = ComputeSubsetTexMappingAreas(i, posArea, texArea, errorText); - - if (ok) - { - totalPosArea += posArea; - totalTexArea += texArea; - } - } - - if (totalPosArea <= 0) - { - return false; - } - - m_texMappingDensity = totalTexArea / totalPosArea; - return true; - } - - bool RecomputeGeometricMeanFaceArea() - { - m_geometricMeanFaceArea = 0.0f; - - if (GetFaceCount() > 0) - { - // uncompressed mesh - not supported - return false; - } - - if ((GetIndexCount() <= 0) || (GetVertexCount() <= 0) || ((m_pPositions == NULL) && (m_pPositionsF16 == NULL))) - { - return false; - } - - std::vector areas; - const size_t subsetCount = m_subsets.size(); - - for (size_t i = 0; i < subsetCount; ++i) - { - CollectSubsetFaceAreas(m_subsets[i], areas); - } - - const size_t areasCount = areas.size(); - if (areasCount == 0) - { - return false; - } - - float fGeometricTotal = 0.0f; - for (size_t i = 0; i < areasCount; ++i) - { - fGeometricTotal += logf(areas[i]); - } - - m_geometricMeanFaceArea = expf(fGeometricTotal / areasCount); - - assert(m_geometricMeanFaceArea > 0.0f); - - return true; - } - - bool CollectSubsetFaceAreas(const SMeshSubset& subset, std::vector& areas) - { - if ((subset.nNumIndices <= 0) || (subset.nFirstIndexId < 0)) - { - return false; - } - - bool ok = false; - if (m_pPositions != NULL) - { - ok = CMeshHelpers::CollectFaceAreas(subset.nNumIndices, &m_pIndices[subset.nFirstIndexId], - GetVertexCount(), &m_pPositions[0], sizeof(m_pPositions[0]), areas); - } - else if (m_pPositionsF16 != NULL) - { - ok = CMeshHelpers::CollectFaceAreas(subset.nNumIndices, &m_pIndices[subset.nFirstIndexId], - GetVertexCount(), &m_pPositionsF16[0], sizeof(m_pPositionsF16[0]), areas); - } - - return ok; - } - - ////////////////////////////////////////////////////////////////////////// - // Estimates the size of the render mesh. - uint32 EstimateRenderMeshMemoryUsage() const - { - const size_t cSizeStream[VSF_NUM] = { - 0U, - sizeof(SPipTangents), // VSF_TANGENTS - sizeof(SPipQTangents), // VSF_QTANGENTS - sizeof(SVF_W4B_I4S), // VSF_HWSKIN_INFO - sizeof(SVF_P3F), // VSF_VERTEX_VELOCITY -#if ENABLE_NORMALSTREAM_SUPPORT - sizeof(SPipNormal), // VSF_NORMALS -#endif - }; - - uint32 nMeshSize = 0; - uint32 activeStreams = (GetVertexCount()) ? 1U << VSF_GENERAL : 0U; - activeStreams |= - (m_pQTangents) ? (1U << VSF_QTANGENTS) : - (m_pTangents) ? (1U << VSF_TANGENTS) : 0U; - if (m_pBoneMapping) - { - activeStreams |= 1U << VSF_HWSKIN_INFO; - } - for (uint32 i = 0; i < VSF_NUM; i++) - { - if (activeStreams & (1U << i)) - { - nMeshSize += static_cast(((i == VSF_GENERAL) ? sizeof(SVF_P3S_C4B_T2S) : cSizeStream[i]) * GetVertexCount()); - nMeshSize += TARGET_DEFAULT_ALIGN - (nMeshSize & (TARGET_DEFAULT_ALIGN - 1)); - } - } - if (GetIndexCount()) - { - nMeshSize += GetIndexCount() * sizeof(vtx_idx); - nMeshSize += TARGET_DEFAULT_ALIGN - (nMeshSize & (TARGET_DEFAULT_ALIGN - 1)); - } - - return nMeshSize; - } - ////////////////////////////////////////////////////////////////////////// - - // This function used when we do not have an actual mesh, but only vertex/index count of it. - static uint32 ApproximateRenderMeshMemoryUsage(int nVertexCount, int nIndexCount) - { - uint32 nMeshSize = 0; - nMeshSize += nVertexCount * sizeof(SVF_P3S_C4B_T2S); - nMeshSize += nVertexCount * sizeof(SPipTangents); - - nMeshSize += nIndexCount * sizeof(vtx_idx); - return nMeshSize; - } - -private: - // Set stream size. - void SetStreamData(int streamType, int streamIndex, void* pStream, int nNewCount) - { - if (streamType < 0 || streamType >= LAST_STREAM || streamIndex >= maxStreamsPerType) - { - AZ_Assert(false, "Stream type %d outside of allowable range (%d to %d) of CMesh::EStream, or stream index %d exceeds the maximum number of vertex streams (%d) per type.", streamType, 0, CMesh::LAST_STREAM, streamIndex, maxStreamsPerType); - return; - } - m_streamSize[streamType][streamIndex] = nNewCount; - switch (streamType) - { - case POSITIONS: - m_pPositions = (Vec3*)pStream; - break; - case POSITIONSF16: - m_pPositionsF16 = (Vec3f16*)pStream; - break; - case NORMALS: - m_pNorms = (SMeshNormal*)pStream; - break; - case VERT_MATS: - m_pVertMats = (int*)pStream; - break; - case FACES: - m_pFaces = (SMeshFace*)pStream; - break; - case TOPOLOGY_IDS: - m_pTopologyIds = (int32*)pStream; - break; - case TEXCOORDS: - if (streamIndex == 0) - { - m_pTexCoord = (SMeshTexCoord*)pStream; - } - else - { - m_texCoords[streamIndex] = (SMeshTexCoord*)pStream; - } - m_nCoorCount = nNewCount; - break; - case COLORS: - if (streamIndex == 0) - { - m_pColor0 = (SMeshColor*)pStream; - } - else - { - m_pColor1 = (SMeshColor*)pStream; - } - break; - case INDICES: - m_pIndices = (vtx_idx*)pStream; - break; - case TANGENTS: - m_pTangents = (SMeshTangents*)pStream; - break; - case QTANGENTS: - m_pQTangents = (SMeshQTangents*)pStream; - break; - case BONEMAPPING: - m_pBoneMapping = (SMeshBoneMapping_uint16*)pStream; - break; - case EXTRABONEMAPPING: - m_pExtraBoneMapping = (SMeshBoneMapping_uint16*)pStream; - break; - case P3S_C4B_T2S: - m_pP3S_C4B_T2S = (SVF_P3S_C4B_T2S*)pStream; - m_nCoorCount = nNewCount; - break; - default: - AZ_Assert(false, "Unknown stream"); - break; - } - } - - SMeshTexCoord* m_texCoords[maxStreamsPerType]; }; // Description: @@ -2229,10 +190,6 @@ struct IIndexedMesh //! Gives read-only access to mesh data virtual void GetMeshDescription(SMeshDescription& meshDesc) const = 0; - virtual CMesh* GetMesh() = 0; - - virtual void SetMesh(CMesh& mesh) = 0; - /*! Frees vertex and face streams. Calling this function invalidates SMeshDescription pointers */ virtual void FreeStreams() = 0; @@ -2248,54 +205,17 @@ struct IIndexedMesh /*! Reallocates vertices, normals and colors. Calling this function invalidates SMeshDescription pointers */ virtual void SetVertexCount(int nNewCount) = 0; - /*! Reallocates colors. Calling this function invalidates SMeshDescription pointers */ - virtual void SetColorCount(int nNewCount) = 0; - //! Return number of allocated texture coordinates virtual int GetTexCoordCount() const = 0; - /*! Reallocates texture coordinates. Calling this function invalidates SMeshDescription pointers */ - virtual void SetTexCoordCount(int nNewCount, int numStreams = 1) = 0; - - //! Return number of allocated tangents. - virtual int GetTangentCount() const = 0; - - /*! Reallocates tangents. Calling this function invalidates SMeshDescription pointers */ - virtual void SetTangentCount(int nNewCount) = 0; - // Get number of indices in the mesh. virtual int GetIndexCount() const = 0; - // Set number of indices in the mesh. - virtual void SetIndexCount(int nNewCount) = 0; - - // Allocates m_pBoneMapping in CMesh - virtual void AllocateBoneMapping() = 0; - ////////////////////////////////////////////////////////////////////////// // Subset access. ////////////////////////////////////////////////////////////////////////// virtual int GetSubSetCount() const = 0; - virtual void SetSubSetCount(int nSubsets) = 0; virtual const SMeshSubset& GetSubSet(int nIndex) const = 0; - virtual void SetSubsetBounds(int nIndex, const Vec3& vCenter, float fRadius) = 0; - virtual void SetSubsetIndexVertexRanges(int nIndex, int nFirstIndexId, int nNumIndices, int nFirstVertId, int nNumVerts) = 0; - virtual void SetSubsetMaterialId(int nIndex, int nMatID) = 0; - virtual void SetSubsetMaterialProperties(int nIndex, int nMatFlags, int nPhysicalizeType, const AZ::Vertex::Format& vertexFormat) = 0; - ////////////////////////////////////////////////////////////////////////// - // Mesh bounding box. - ////////////////////////////////////////////////////////////////////////// - virtual void SetBBox(const AABB& box) = 0; - virtual AABB GetBBox() const = 0; - virtual void CalcBBox() = 0; - - virtual void RestoreFacesFromIndices() = 0; // - - // Optimizes mesh - virtual void Optimize(const char* szComment = NULL) = 0; }; - - -#endif // CRYINCLUDE_CRYCOMMON_IINDEXEDMESH_H diff --git a/Code/Legacy/CryCommon/IIndexedMesh_info.cpp b/Code/Legacy/CryCommon/IIndexedMesh_info.cpp deleted file mode 100644 index fe15ab7949..0000000000 --- a/Code/Legacy/CryCommon/IIndexedMesh_info.cpp +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#include "TypeInfo_impl.h" -#include // <> required for Interfuscator - -STRUCT_INFO_BEGIN(SMeshTexCoord) -STRUCT_VAR_INFO(s, TYPE_INFO(float)) -STRUCT_VAR_INFO(t, TYPE_INFO(float)) -STRUCT_INFO_END(SMeshTexCoord) - -STRUCT_INFO_BEGIN(SMeshNormal) -STRUCT_VAR_INFO(Normal, TYPE_INFO(Vec3)) -STRUCT_INFO_END(SMeshNormal) - -STRUCT_INFO_BEGIN(SMeshColor) -STRUCT_VAR_INFO(r, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(g, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(b, TYPE_INFO(uint8)) -STRUCT_VAR_INFO(a, TYPE_INFO(uint8)) -STRUCT_INFO_END(SMeshColor) - -STRUCT_INFO_BEGIN(SMeshTangents) -STRUCT_VAR_INFO(Tangent, TYPE_INFO(Vec4sf)) -STRUCT_VAR_INFO(Bitangent, TYPE_INFO(Vec4sf)) -STRUCT_INFO_END(SMeshTangents) - -STRUCT_INFO_BEGIN(SMeshQTangents) -STRUCT_VAR_INFO(TangentBitangent, TYPE_INFO(Vec4sf)) -STRUCT_INFO_END(SMeshQTangents) - -STRUCT_INFO_BEGIN(SMeshBoneMapping_uint16) -STRUCT_VAR_INFO(boneIds, TYPE_ARRAY(4, TYPE_INFO(SMeshBoneMapping_uint16::BoneId))) -STRUCT_VAR_INFO(weights, TYPE_ARRAY(4, TYPE_INFO(SMeshBoneMapping_uint16::Weight))) -STRUCT_INFO_END(SMeshBoneMapping_uint16) - -STRUCT_INFO_BEGIN(SMeshBoneMapping_uint8) -STRUCT_VAR_INFO(boneIds, TYPE_ARRAY(4, TYPE_INFO(SMeshBoneMapping_uint8::BoneId))) -STRUCT_VAR_INFO(weights, TYPE_ARRAY(4, TYPE_INFO(SMeshBoneMapping_uint8::Weight))) -STRUCT_INFO_END(SMeshBoneMapping_uint8) diff --git a/Code/Legacy/CryCommon/ILocalizationManager.h b/Code/Legacy/CryCommon/ILocalizationManager.h index 2cba093f21..0f0ba88250 100644 --- a/Code/Legacy/CryCommon/ILocalizationManager.h +++ b/Code/Legacy/CryCommon/ILocalizationManager.h @@ -73,11 +73,11 @@ struct SLocalizedSoundInfoGame bool bIsIntercepted; // SoundMoods. - int nNumSoundMoods; + size_t nNumSoundMoods; SLocalizedAdvancesSoundEntry* pSoundMoods; // EventParameters. - int nNumEventParameters; + size_t nNumEventParameters; SLocalizedAdvancesSoundEntry* pEventParameters; }; diff --git a/Code/Legacy/CryCommon/IMaterial.h b/Code/Legacy/CryCommon/IMaterial.h index 83f9140be7..1b3ef258ce 100644 --- a/Code/Legacy/CryCommon/IMaterial.h +++ b/Code/Legacy/CryCommon/IMaterial.h @@ -8,47 +8,14 @@ // Description : IMaterial interface declaration. - - -#ifndef CRYINCLUDE_CRYCOMMON_IMATERIAL_H -#define CRYINCLUDE_CRYCOMMON_IMATERIAL_H #pragma once -struct ISurfaceType; -struct ISurfaceTypeManager; -class ICrySizer; - -enum EEfResTextures : int; // Need to specify a fixed size for the forward declare to work on clang -struct IRenderShaderResources; -struct SEfTexModificator; -struct SInputShaderResources; - -struct SShaderItem; -struct SShaderParam; -struct IShader; -struct IShaderPublicParams; -struct IMaterial; -struct IMaterialManager; -struct CMaterialCGF; -struct CRenderChunk; -struct IRenderMesh; - -#include -#include #include #include -#ifdef MAX_SUB_MATERIALS -// This checks that the values are in sync in the different files. -static_assert(MAX_SUB_MATERIALS == 128); -#else -#define MAX_SUB_MATERIALS 128 -#endif - -// Special names for materials. -#define MTL_SPECIAL_NAME_COLLISION_PROXY "collision_proxy" -#define MTL_SPECIAL_NAME_COLLISION_PROXY_VEHICLE "nomaterial_vehicle" -#define MTL_SPECIAL_NAME_RAYCAST_PROXY "raycast_proxy" +struct IShader; +struct ISurfaceType; +struct SShaderItem; namespace AZ { @@ -68,511 +35,15 @@ namespace AZ using MaterialNotificationEventBus = AZ::EBus; } -enum -{ - MAX_STREAM_PREDICTION_ZONES = 2 -}; - -////////////////////////////////////////////////////////////////////////// -// Description: -// IMaterial is an interface to the material object, SShaderItem host which is a combination of IShader and SShaderInputResources. -// Material bind together rendering algorithm (Shader) and resources needed to render this shader, textures, colors, etc... -// All materials except for pure sub material childs have a unique name which directly represent .mtl file on disk. -// Ex: "Materials/Fire/Burn" -// Materials can be created by Sandbox MaterialEditor. -////////////////////////////////////////////////////////////////////////// -enum EMaterialFlags -{ - MTL_FLAG_WIRE = 0x0001, // Use wire frame rendering for this material. - MTL_FLAG_2SIDED = 0x0002, // Use 2 Sided rendering for this material. - MTL_FLAG_ADDITIVE = 0x0004, // Use Additive blending for this material. - //MTL_FLAG_DETAIL_DECAL = 0x0008, // UNUSED RESERVED FOR LEGACY REASONS - MTL_FLAG_LIGHTING = 0x0010, // Should lighting be applied on this material. - MTL_FLAG_NOSHADOW = 0x0020, // Material do not cast shadows. - MTL_FLAG_ALWAYS_USED = 0x0040, // When set forces material to be export even if not explicitly used. - MTL_FLAG_PURE_CHILD = 0x0080, // Not shared sub material, sub material unique to his parent multi material. - MTL_FLAG_MULTI_SUBMTL = 0x0100, // This material is a multi sub material. - MTL_FLAG_NOPHYSICALIZE = 0x0200, // Should not physicalize this material. - MTL_FLAG_NODRAW = 0x0400, // Do not render this material. - MTL_FLAG_NOPREVIEW = 0x0800, // Cannot preview the material. - MTL_FLAG_NOTINSTANCED = 0x1000, // Do not instantiate this material. - MTL_FLAG_COLLISION_PROXY = 0x2000, // This material is the collision proxy. - MTL_FLAG_SCATTER = 0x4000, // Use scattering for this material - MTL_FLAG_REQUIRE_FORWARD_RENDERING = 0x8000, // This material has to be rendered in forward rendering passes (alpha/additive blended) - MTL_FLAG_NON_REMOVABLE = 0x10000, // Material with this flag once created are never removed from material manager (Used for decal materials, this flag should not be saved). - MTL_FLAG_HIDEONBREAK = 0x20000, // Non-physicalized subsets with such materials will be removed after the object breaks - MTL_FLAG_UIMATERIAL = 0x40000, // Used for UI in Editor. Don't need show it DB. - MTL_64BIT_SHADERGENMASK = 0x80000, // ShaderGen mask is remapped - MTL_FLAG_RAYCAST_PROXY = 0x100000, - MTL_FLAG_REQUIRE_NEAREST_CUBEMAP = 0x200000, // materials with alpha blending requires special processing for shadows - MTL_FLAG_CONSOLE_MAT = 0x400000, - MTL_FLAG_DELETE_PENDING = 0x800000, // Internal use only - MTL_FLAG_BLEND_TERRAIN = 0x1000000, - MTL_FLAG_IS_TERRAIN = 0x2000000,// indication to the loader - Terrain type - MTL_FLAG_IS_SKY = 0x4000000,// indication to the loader - Sky type - MTL_FLAG_FOG_VOLUME_SHADING_QUALITY_HIGH= 0x8000000 // high vertex shading quality behaves more accurately with fog volumes. -}; - -#define MTL_FLAGS_SAVE_MASK (MTL_FLAG_WIRE | MTL_FLAG_2SIDED | MTL_FLAG_ADDITIVE | MTL_FLAG_LIGHTING | \ - MTL_FLAG_NOSHADOW | MTL_FLAG_MULTI_SUBMTL | MTL_FLAG_SCATTER | MTL_FLAG_REQUIRE_FORWARD_RENDERING | MTL_FLAG_FOG_VOLUME_SHADING_QUALITY_HIGH | MTL_FLAG_HIDEONBREAK | MTL_FLAG_UIMATERIAL | MTL_64BIT_SHADERGENMASK | MTL_FLAG_REQUIRE_NEAREST_CUBEMAP | MTL_FLAG_CONSOLE_MAT | MTL_FLAG_BLEND_TERRAIN) - -// Post effects flags -enum EPostEffectFlags -{ - POST_EFFECT_GHOST = 0x1, - POST_EFFECT_HOLOGRAM = 0x2, - - POST_EFFECT_MASK = POST_EFFECT_GHOST | POST_EFFECT_HOLOGRAM -}; - -// Bit offsets for shader layer flags -enum EMaterialLayerFlags -{ - // Active layers flags - MTL_LAYER_FROZEN = 0x0001, - MTL_LAYER_WET = 0x0002, - MTL_LAYER_DYNAMICFROZEN = 0x0008, - - // Usage flags - MTL_LAYER_USAGE_NODRAW = 0x0001, // Layer is disabled - MTL_LAYER_USAGE_REPLACEBASE = 0x0002, // Replace base pass rendering with layer - optimization - MTL_LAYER_USAGE_FADEOUT = 0x0004, // Layer doesn't render but still causes parent to fade out - - // Blend offsets - MTL_LAYER_BLEND_FROZEN = 0xff000000, - MTL_LAYER_BLEND_WET = 0x00fe0000, - MTL_LAYER_BLEND_DYNAMICFROZEN = 0x000000ff, - - MTL_LAYER_FROZEN_MASK = 0xff, - MTL_LAYER_WET_MASK = 0xfe, // bit stolen - MTL_LAYER_DYNAMICFROZEN_MASK = 0xff, - - MTL_LAYER_BLEND_MASK = (MTL_LAYER_BLEND_FROZEN | MTL_LAYER_BLEND_WET | MTL_LAYER_BLEND_DYNAMICFROZEN), - - // Slot count - MTL_LAYER_MAX_SLOTS = 3 -}; - -// copy flags -enum EMaterialCopyFlags -{ - // copy flags - MTL_COPY_DEFAULT = 0, - MTL_COPY_NAME = BIT(0), - MTL_COPY_TEXTURES = BIT(1), -}; - -struct IMaterialHelpers -{ - virtual ~IMaterialHelpers() {} - - ////////////////////////////////////////////////////////////////////////// - virtual EEfResTextures FindTexSlot(const char* texName) const = 0; - virtual const char* FindTexName(EEfResTextures texSlot) const = 0; - virtual const char* LookupTexName(EEfResTextures texSlot) const = 0; - virtual const char* LookupTexDesc(EEfResTextures texSlot) const = 0; - virtual const char* LookupTexEnum(EEfResTextures texSlot) const = 0; - virtual const char* LookupTexSuffix(EEfResTextures texSlot) const = 0; - virtual bool IsAdjustableTexSlot(EEfResTextures texSlot) const = 0; - - ////////////////////////////////////////////////////////////////////////// - virtual bool SetGetMaterialParamFloat(IRenderShaderResources& pShaderResources, const char* sParamName, float& v, bool bGet) const = 0; - virtual bool SetGetMaterialParamVec3(IRenderShaderResources& pShaderResources, const char* sParamName, Vec3& v, bool bGet) const = 0; - - ////////////////////////////////////////////////////////////////////////// - virtual void SetTexModFromXml(SEfTexModificator& pShaderResources, const XmlNodeRef& node) const = 0; - virtual void SetXmlFromTexMod(const SEfTexModificator& pShaderResources, XmlNodeRef& node) const = 0; - - ////////////////////////////////////////////////////////////////////////// - virtual void SetTexturesFromXml(SInputShaderResources& pShaderResources, const XmlNodeRef& node) const = 0; - virtual void SetXmlFromTextures( SInputShaderResources& pShaderResources, XmlNodeRef& node) const = 0; - - ////////////////////////////////////////////////////////////////////////// - virtual void SetVertexDeformFromXml(SInputShaderResources& pShaderResources, const XmlNodeRef& node) const = 0; - virtual void SetXmlFromVertexDeform(const SInputShaderResources& pShaderResources, XmlNodeRef& node) const = 0; - - ////////////////////////////////////////////////////////////////////////// - virtual void SetLightingFromXml(SInputShaderResources& pShaderResources, const XmlNodeRef& node) const = 0; - virtual void SetXmlFromLighting(const SInputShaderResources& pShaderResources, XmlNodeRef& node) const = 0; - - ////////////////////////////////////////////////////////////////////////// - virtual void SetShaderParamsFromXml(SInputShaderResources& pShaderResources, const XmlNodeRef& node) const = 0; - virtual void SetXmlFromShaderParams(const SInputShaderResources& pShaderResources, XmlNodeRef& node) const = 0; - - ////////////////////////////////////////////////////////////////////////// - virtual void MigrateXmlLegacyData(SInputShaderResources& pShaderResources, const XmlNodeRef& node) const = 0; -}; - -////////////////////////////////////////////////////////////////////////////////////// -// Description: -// IMaterialLayer is group of material layer properties. -// Each layer is composed of shader item, specific layer textures, lod info, etc -struct IMaterialLayer -{ - // - virtual ~IMaterialLayer(){} - // Reference counting - virtual void AddRef() = 0; - virtual void Release() = 0; - - // Description: - // - Enable/disable layer usage - virtual void Enable(bool bEnable = true) = 0; - // Description: - // - Check if layer enabled - virtual bool IsEnabled() const = 0; - // Description: - // - Enable/disable fade out - virtual void FadeOut(bool bFadeOut = true) = 0; - // Description: - // - Check if layer fades out - virtual bool DoesFadeOut() const = 0; - // Description: - // - Set shader item - virtual void SetShaderItem(const _smart_ptr pParentMtl, const SShaderItem& pShaderItem) = 0; - // Description: - // - Return shader item - virtual const SShaderItem& GetShaderItem() const = 0; - virtual SShaderItem& GetShaderItem() = 0; - // Description: - // - Set layer usage flags - virtual void SetFlags(uint8 nFlags) = 0; - // Description: - // - Get layer usage flags - virtual uint8 GetFlags() const = 0; - - // todo: layer specific textures support - // - // -}; - struct IMaterial { // TODO: Remove it! - //! default texture mapping - uint8 m_ucDefautMappingAxis; - float m_fDefautMappingScale; - // - virtual ~IMaterial() {}; - - ////////////////////////////////////////////////////////////////////////// - // Reference counting. - ////////////////////////////////////////////////////////////////////////// + virtual ~IMaterial() {} virtual void AddRef() = 0; virtual void Release() = 0; - virtual int GetNumRefs() = 0; - virtual IMaterialHelpers& GetMaterialHelpers() = 0; - virtual IMaterialManager* GetMaterialManager() = 0; - - ////////////////////////////////////////////////////////////////////////// - // material name - ////////////////////////////////////////////////////////////////////////// - //! Set material name, (Do not use this directly - virtual void SetName(const char* pName) = 0; - //! Returns material name. - virtual const char* GetName() const = 0; - - //! Set/get shader name. The shader name may include technique name so it could be deferent than GetShaderItem()->m_pShader->GetName(). - virtual void SetShaderName(const char* pName) = 0; - virtual const char* GetShaderName() const = 0; - - //! Material flags. - //! @see EMaterialFlags - virtual void SetFlags(int flags) = 0; - virtual int GetFlags() const = 0; - virtual void UpdateFlags() = 0; - - // Returns true if this is the default material. - virtual bool IsDefault() = 0; - - virtual int GetSurfaceTypeId() = 0; - - // Assign a different surface type to this material. - virtual void SetSurfaceType(const char* sSurfaceTypeName) = 0; - - virtual ISurfaceType* GetSurfaceType() = 0; - - // shader item - virtual void ReleaseCurrentShaderItem() = 0; - virtual void SetShaderItem(const SShaderItem& _ShaderItem) = 0; - // [Alexey] EF_LoadShaderItem return value with RefCount = 1, so if you'll use SetShaderItem after EF_LoadShaderItem use Assign function - virtual void AssignShaderItem(const SShaderItem& _ShaderItem) = 0; virtual SShaderItem& GetShaderItem() = 0; virtual const SShaderItem& GetShaderItem() const = 0; - // Returns shader item for correct sub material or for single material. - // Even if this is not sub material or nSubMtlSlot is invalid it will return valid renderable shader item. - virtual SShaderItem& GetShaderItem(int nSubMtlSlot) = 0; - virtual const SShaderItem& GetShaderItem(int nSubMtlSlot) const = 0; - - // Returns true if streamed in - virtual bool IsStreamedIn(const int nMinPrecacheRoundIds[MAX_STREAM_PREDICTION_ZONES], IRenderMesh* pRenderMesh) const = 0; - - ////////////////////////////////////////////////////////////////////////// - // Sub materials access. - ////////////////////////////////////////////////////////////////////////// - //! Returns number of child sub materials holded by this material. - virtual void SetSubMtlCount(int numSubMtl) = 0; - //! Returns number of child sub materials holded by this material. - virtual int GetSubMtlCount() = 0; - //! Return sub material at specified index. - virtual _smart_ptr GetSubMtl(int nSlot) = 0; - // Assign material to the sub mtl slot. - // Must first allocate slots using SetSubMtlCount. - virtual void SetSubMtl(int nSlot, _smart_ptr pMtl) = 0; - - ////////////////////////////////////////////////////////////////////////// - // Layers access. - ////////////////////////////////////////////////////////////////////////// - //! Returns number of layers in this material. - virtual void SetLayerCount(uint32 nCount) = 0; - //! Returns number of layers in this material. - virtual uint32 GetLayerCount() const = 0; - //! Set layer at slot id (### MUST ALOCATE SLOTS FIRST ### USING SetLayerCount) - virtual void SetLayer(uint32 nSlot, IMaterialLayer* pLayer) = 0; - //! Return active layer - virtual const IMaterialLayer* GetLayer(uint8 nLayersMask, uint8 nLayersUsageMask) const = 0; - //! Return layer at slot id - virtual const IMaterialLayer* GetLayer(uint32 nSlot) const = 0; - //! Create a new layer - virtual IMaterialLayer* CreateLayer() = 0; - - ////////////////////////////////////////////////////////////////////////// - // Always get a valid material. - // If not multi material return this material. - // If Multi material return Default material if wrong id. - virtual _smart_ptr GetSafeSubMtl(int nSlot) = 0; - - // Description: - // Fill an array of integeres representing surface ids of the sub materials or the material itself. - // Arguments: - // pSurfaceIdsTable is a pointer to the array of int with size enough to hold MAX_SUB_MATERIALS surface type ids. - // Return: - // number of filled items. - virtual int FillSurfaceTypeIds(int pSurfaceIdsTable[]) = 0; - - ////////////////////////////////////////////////////////////////////////// - // UserData used to link with the Editor. - ////////////////////////////////////////////////////////////////////////// - virtual void SetUserData(void* pUserData) = 0; - virtual void* GetUserData() const = 0; - - ////////////////////////////////////////////////////////////////////////// - //! Set or get a material parameter value. - //! \param sParamName - Name of the parameter - //! \param v - Input or output value depending on bGet - //! \param bGet - If true, v is an output; if false, v is an input - //! \param allowShaderParam - If true, and sParamName is not a built-in parameter of the Material, then custom shader parameters will be searched as well. Defaults to false to preserve legacy behavior. - //! \param materialIndex - Index of the sub-material if this is a material group - //! return - True if sParamName was found - virtual bool SetGetMaterialParamFloat(const char* sParamName, float& v, bool bGet, bool allowShaderParam = false, int materialIndex = 0) = 0; - //! Set or get a material parameter value. - //! \param sParamName - Name of the parameter - //! \param v - Input or output value depending on bGet - //! \param bGet - If true, v is an output; if false, v is an input - //! \param allowShaderParam - If true, and sParamName is not a built-in parameter of the Material, then custom shader parameters will be searched as well. Defaults to false to preserve legacy behavior. - //! \param materialIndex - Index of the sub-material if this is a material group - //! return - True if sParamName was found - virtual bool SetGetMaterialParamVec3(const char* sParamName, Vec3& v, bool bGet, bool allowShaderParam = false, int materialIndex = 0) = 0; - //! Set or get a material parameter value. - //! \param sParamName - Name of the parameter - //! \param v - Input or output value depending on bGet - //! \param bGet - If true, v is an output; if false, v is an input - //! \param allowShaderParam - If true, and sParamName is not a built-in parameter of the Material, then custom shader parameters will be searched as well. Defaults to false to preserve legacy behavior. - //! \param materialIndex - Index of the sub-material if this is a material group - //! return - True if sParamName was found - virtual bool SetGetMaterialParamVec4(const char* sParamName, Vec4& v, bool bGet, bool allowShaderParam = false, int materialIndex = 0) = 0; - - virtual void SetDirty(bool dirty = true) = 0; - virtual bool IsDirty() const = 0; - - //! Returns true if the material is the parent of a group of materials - virtual bool IsMaterialGroup() const = 0; - - //! Returns true if the material is a single material belongs to a material group - virtual bool IsSubMaterial() const = 0; - - virtual void GetMemoryUsage(ICrySizer* pSizer) const = 0; - - virtual size_t GetResourceMemoryUsage(ICrySizer* pSizer) = 0; - - ////////////////////////////////////////////////////////////////////////// - // Makes this specific material enter sketch mode. - // Current supported sketch modes: - // - 0, no sketch. - // - 1, normal sketch mode. - // - 2, fast sketch mode. - virtual void SetSketchMode(int mode) = 0; - - // Sets FT_DONT_STREAM flag for all textures used by the material - // If a stream is already in process, this will stop the stream and flush the device texture - virtual void DisableTextureStreaming() = 0; - ////////////////////////////////////////////////////////////////////////// - // Tells to texture streamer to start loading textures asynchronously - ////////////////////////////////////////////////////////////////////////// - virtual void RequestTexturesLoading(const float fMipFactor) = 0; - - virtual void PrecacheMaterial(const float fEntDistance, struct IRenderMesh* pRenderMesh, bool bFullUpdate, bool bDrawNear = false) = 0; - - // Estimates texture memory usage for this material - // When nMatID is not negative only caluclate for one sub-material - virtual int GetTextureMemoryUsage(ICrySizer* pSizer, int nMatID = -1) = 0; - - // Set & retrieve a material link name - // This value by itself is not used by the material system per-se and hence - // has no real effect, however it is used on a higher level to tie related materials - // together, for example by procedural breakable glass to determine which material to - // switch to. - virtual void SetMaterialLinkName(const char* name) = 0; - virtual const char* GetMaterialLinkName() const = 0; - virtual void SetKeepLowResSysCopyForDiffTex() = 0; - - virtual uint32 GetDccMaterialHash() const = 0; - virtual void SetDccMaterialHash(uint32 hash) = 0; - - virtual void UpdateShaderItems() = 0; - - // }; - - - -////////////////////////////////////////////////////////////////////////// -// Description: -// IMaterialManagerListener is a callback interface to listenen -// for special events of material manager, (used by Editor). -struct IMaterialManagerListener -{ - // - virtual ~IMaterialManagerListener(){} - // Called when material manager tries to load a material. - // nLoadingFlags - Zero or a bitwise combination of the flagas defined in ELoadingFlags. - virtual void OnCreateMaterial(_smart_ptr pMaterial) = 0; - virtual void OnDeleteMaterial(_smart_ptr pMaterial) = 0; - virtual bool IsCurrentMaterial(_smart_ptr pMaterial) const = 0; - // -}; - -using IMaterialRef = _smart_ptr; -////////////////////////////////////////////////////////////////////////// -// Description: -// IMaterialManager interface provide access to the material manager -// implemented in 3d engine. -struct IMaterialManager -{ - //! Loading flags - enum ELoadingFlags - { - ELoadingFlagsPreviewMode = BIT(0), - }; - - // - virtual ~IMaterialManager(){} - - virtual void GetMemoryUsage(ICrySizer* pSizer) const = 0; - - // Summary: - // Creates a new material object and register it with the material manager - // Return Value: - // A newly created object derived from IMaterial. - virtual _smart_ptr CreateMaterial(const char* sMtlName, int nMtlFlags = 0) = 0; - - // Summary: - // Renames a material object - // Note: - // Do not use IMaterial::SetName directly. - // Arguments: - // pMtl - Pointer to a material object - // sNewName - New name to assign to the material - virtual void RenameMaterial(_smart_ptr pMtl, const char* sNewName) = 0; - - // Description: - // Finds named material. - virtual _smart_ptr FindMaterial(const char* sMtlName) const = 0; - - // Description: - // Loads material. - // nLoadingFlags - Zero or a bitwise combination of the values defined in ELoadingFlags. - virtual _smart_ptr LoadMaterial(const char* sMtlName, bool bMakeIfNotFound = true, bool bNonremovable = false, unsigned long nLoadingFlags = 0) = 0; - - // Description: - // Loads material from xml. - virtual _smart_ptr LoadMaterialFromXml(const char* sMtlName, XmlNodeRef mtlNode) = 0; - - // Description: - // Reloads the material from disk. - virtual void ReloadMaterial(_smart_ptr pMtl) = 0; - - // Description: - // Saves material. - virtual bool SaveMaterial(XmlNodeRef mtlNode, _smart_ptr pMtl) = 0; - - // Description: - // Clone single material or multi sub material. - // Arguments: - // nSubMtl - when negative all sub materials of MultiSubMtl are cloned, if positive only specified slot is cloned. - virtual _smart_ptr CloneMaterial(_smart_ptr pMtl, int nSubMtl = -1) = 0; - - // Description: - // Copy single material. - virtual void CopyMaterial(_smart_ptr pMtlSrc, _smart_ptr pMtlDest, EMaterialCopyFlags flags) = 0; - - // Description: - // Clone MultiSubMtl material. - // Arguments: - // sSubMtlName - name of the sub-material to clone, if NULL all submaterial are cloned. - virtual _smart_ptr CloneMultiMaterial(_smart_ptr pMtl, const char* sSubMtlName = 0) = 0; - - // Description: - // Associate a special listener callback with material manager inside 3d engine. - // This listener callback is used primerly by the editor. - virtual void SetListener(IMaterialManagerListener* pListener) = 0; - - // Description: - // Retrieve a default engine material. - virtual _smart_ptr GetDefaultMaterial() = 0; - - // Description: - // Retrieve a default engine material for terrain layer - virtual _smart_ptr GetDefaultTerrainLayerMaterial() = 0; - - // Description: - // Retrieve a default engine material with material layers presets. - virtual _smart_ptr GetDefaultLayersMaterial() = 0; - - // Description: - // Retrieve a default engine material for drawing helpers. - virtual _smart_ptr GetDefaultHelperMaterial() = 0; - - // Description: - // Retrieve surface type by name. - virtual ISurfaceType* GetSurfaceTypeByName(const char* sSurfaceTypeName, const char* sWhy = NULL) = 0; - virtual int GetSurfaceTypeIdByName(const char* sSurfaceTypeName, const char* sWhy = NULL) = 0; - // Description: - // Retrieve surface type by unique surface type id. - virtual ISurfaceType* GetSurfaceType(int nSurfaceTypeId, const char* sWhy = NULL) = 0; - // Description: - // Retrieve interface to surface type manager. - virtual ISurfaceTypeManager* GetSurfaceTypeManager() = 0; - - // Get IMaterial pointer from the CGF material structure. - // nLoadingFlags - Zero, or a bitwise combination of the enum items from ELoadingFlags. - virtual _smart_ptr LoadCGFMaterial(CMaterialCGF* pMaterialCGF, const char* sCgfFilename, unsigned long nLoadingFlags = 0) = 0; - - // for statistics - call once to get the count (pData==0), again to get the data(pData!=0) - virtual void GetLoadedMaterials(AZStd::vector<_smart_ptr>* pData, uint32& nObjCount) const = 0; - - // Updates material data in the renderer - virtual void RefreshMaterialRuntime() = 0; - - //// Forcing to create ISurfaceTypeManager - //virtual void CreateSurfaceTypeManager() = 0; - //// Forcing to destroy ISurfaceTypeManager - //virtual void ReleaseSurfaceTypeManager() = 0; - - // -}; - -#endif // CRYINCLUDE_CRYCOMMON_IMATERIAL_H diff --git a/Code/Legacy/CryCommon/IMovieSystem.h b/Code/Legacy/CryCommon/IMovieSystem.h index 915dc925bf..b5302b58f5 100644 --- a/Code/Legacy/CryCommon/IMovieSystem.h +++ b/Code/Legacy/CryCommon/IMovieSystem.h @@ -20,10 +20,7 @@ #include #include #include -#include -#include -#include -#include +#include // forward declaration. struct IAnimTrack; @@ -116,7 +113,7 @@ public: { *this = name; } - + CAnimParamType(AnimParamType type) { *this = type; @@ -378,7 +375,7 @@ struct IAnimTrack virtual int GetSubTrackCount() const = 0; // Retrieve pointer the specfied sub track. virtual IAnimTrack* GetSubTrack(int nIndex) const = 0; - virtual const char* GetSubTrackName(int nIndex) const = 0; + virtual AZStd::string GetSubTrackName(int nIndex) const = 0; virtual void SetSubTrackName(int nIndex, const char* name) = 0; ////////////////////////////////////////////////////////////////////////// @@ -625,7 +622,7 @@ public: , valueType(_valueType) , flags(_flags) {}; - const char* name; // parameter name. + AZStd::string name; // parameter name. CAnimParamType paramType; // parameter id. AnimValueType valueType; // value type, defines type of track to use for animating this parameter. ESupportedParamFlags flags; // combination of flags from ESupportedParamFlags. @@ -738,7 +735,7 @@ public: // Returns name of supported parameter of this animation node or NULL if not available // Arguments: // paramType - parameter id - virtual const char* GetParamName(const CAnimParamType& paramType) const = 0; + virtual AZStd::string GetParamName(const CAnimParamType& paramType) const = 0; // Description: // Returns the params value type @@ -838,7 +835,7 @@ public: // override this method to handle explicit setting of time virtual void TimeChanged([[maybe_unused]] float newTime) {}; - // Compares all of the node's track values at the given time with the associated property value and + // Compares all of the node's track values at the given time with the associated property value and // sets a key at that time if they are different to match the latter // Returns the number of keys set virtual int SetKeysForChangedTrackValues([[maybe_unused]] float time) { return 0; }; @@ -1309,7 +1306,7 @@ struct IMovieSystem // Disable Fixed Step cvars and return to previous settings virtual void DisableFixedStepForCapture() = 0; - + // Signal the capturing start. virtual void StartCapture(const ICaptureKey& key, int frame) = 0; diff --git a/Code/Legacy/CryCommon/INavigationSystem.h b/Code/Legacy/CryCommon/INavigationSystem.h index 6253f815bf..f88fccafff 100644 --- a/Code/Legacy/CryCommon/INavigationSystem.h +++ b/Code/Legacy/CryCommon/INavigationSystem.h @@ -11,10 +11,12 @@ #define CRYINCLUDE_CRYCOMMON_INAVIGATIONSYSTEM_H #pragma once +#include "CryCommon/Cry_Geo.h" + #include #include -#include +#include struct IOffMeshNavigationManager; @@ -47,7 +49,6 @@ typedef TNavigationID NavigationMeshID; typedef TNavigationID NavigationAgentTypeID; typedef TNavigationID NavigationVolumeID; typedef AZStd::function NavigationMeshChangeCallback; -typedef AZStd::function NavigationMeshEntityCallback; struct INavigationSystemUser { @@ -141,7 +142,6 @@ struct INavigationSystem virtual NavigationMeshID CreateMesh(const char* name, NavigationAgentTypeID agentTypeID, const CreateMeshParams& params, NavigationMeshID requestedID) = 0; virtual void DestroyMesh(NavigationMeshID meshID) = 0; - virtual void SetMeshEntityCallback(NavigationAgentTypeID agentTypeID, const NavigationMeshEntityCallback& callback) = 0; virtual void AddMeshChangeCallback(NavigationAgentTypeID agentTypeID, const NavigationMeshChangeCallback& callback) = 0; virtual void RemoveMeshChangeCallback(NavigationAgentTypeID agentTypeID, const NavigationMeshChangeCallback& callback) = 0; diff --git a/Code/Legacy/CryCommon/IPathfinder.h b/Code/Legacy/CryCommon/IPathfinder.h index 781e379cf9..7a05321c99 100644 --- a/Code/Legacy/CryCommon/IPathfinder.h +++ b/Code/Legacy/CryCommon/IPathfinder.h @@ -15,11 +15,12 @@ struct IAIPathAgent; #include #include -#include #include #include +#include #include +#include #include #include @@ -131,8 +132,7 @@ struct NavigationBlocker Location location; }; -typedef DynArray NavigationBlockers; - +using NavigationBlockers = AZStd::vector; //==================================================================== // PathPointDescriptor @@ -240,8 +240,7 @@ struct PathfindingExtraConstraint UConstraint constraint; }; -typedef DynArray PathfindingExtraConstraints; - +using PathfindingExtraConstraints = AZStd::vector; struct PathfindRequest { @@ -557,26 +556,6 @@ public: virtual void Draw(const Vec3& drawOffset = ZERO) const = 0; virtual void Dump(const char* name) const = 0; - bool ArePathsEqual(const INavPath& otherNavPath) - { - const TPathPoints& path1 = this->GetPath(); - const TPathPoints& path2 = otherNavPath.GetPath(); - const TPathPoints::size_type path1Size = path1.size(); - const TPathPoints::size_type path2Size = path2.size(); - if (path1Size != path2Size) - { - return false; - } - - TPathPoints::const_iterator path1It = path1.begin(); - TPathPoints::const_iterator path1End = path1.end(); - TPathPoints::const_iterator path2It = path2.begin(); - - typedef std::pair TMismatchResult; - - TMismatchResult result = std::mismatch(path1It, path1End, path2It, PathPointDescriptor::ArePointsEquivalent); - return result.first == path1.end(); - } }; using INavPathPtr = AZStd::shared_ptr; diff --git a/Code/Legacy/CryCommon/IPhysics.h b/Code/Legacy/CryCommon/IPhysics.h deleted file mode 100644 index f2097ddf36..0000000000 --- a/Code/Legacy/CryCommon/IPhysics.h +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef CRYINCLUDE_CRYCOMMON_IPHYSICS_H -#define CRYINCLUDE_CRYCOMMON_IPHYSICS_H -#pragma once - - -// -#ifdef PHYSICS_EXPORTS - #define CRYPHYSICS_API DLL_EXPORT -#else - #define CRYPHYSICS_API DLL_IMPORT -#endif - -#define vector_class Vec3_tpl - - -#include - -////////////////////////////////////////////////////////////////////////// -// IDs that can be used for foreign id. -////////////////////////////////////////////////////////////////////////// -enum EPhysicsForeignIds -{ - PHYS_FOREIGN_ID_TERRAIN = 0, - PHYS_FOREIGN_ID_STATIC = 1, - PHYS_FOREIGN_ID_ENTITY = 2, - PHYS_FOREIGN_ID_FOLIAGE = 3, - PHYS_FOREIGN_ID_ROPE = 4, - PHYS_FOREIGN_ID_SOUND_OBSTRUCTION = 5, - PHYS_FOREIGN_ID_SOUND_PROXY_OBSTRUCTION = 6, - PHYS_FOREIGN_ID_SOUND_REVERB_OBSTRUCTION = 7, - PHYS_FOREIGN_ID_WATERVOLUME = 8, - PHYS_FOREIGN_ID_BREAKABLE_GLASS = 9, - PHYS_FOREIGN_ID_BREAKABLE_GLASS_FRAGMENT = 10, - PHYS_FOREIGN_ID_RIGID_PARTICLE = 11, - PHYS_FOREIGN_ID_RESERVED1 = 12, - PHYS_FOREIGN_ID_RAGDOLL = 13, - PHYS_FOREIGN_ID_COMPONENT_ENTITY = 14, - - PHYS_FOREIGN_ID_USER = 100, // All user defined foreign ids should start from this enum. -}; - - -//#include "utils.h" -#include "Cry_Math.h" -#include "primitives.h" -#include // <> required for Interfuscator - - -#endif // CRYINCLUDE_CRYCOMMON_IPHYSICS_H diff --git a/Code/Legacy/CryCommon/IPostEffectGroup.h b/Code/Legacy/CryCommon/IPostEffectGroup.h deleted file mode 100644 index d8452b75ab..0000000000 --- a/Code/Legacy/CryCommon/IPostEffectGroup.h +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#pragma once - -#include - -typedef AZStd::variant PostEffectGroupParam; - -// A prioritized group of postprocessing effect parameters. -// These are defined in XML files and can be enabled or disabled using flow graph or Lua scripts. -// Effect groups can also optionally specify blend curves to smoothly transition between effects, whether to stay enabled until explicitly disabled, -// and whether to make effect strength based on distance from the camera. -class IPostEffectGroup -{ -public: - virtual ~IPostEffectGroup(){} - - virtual const char* GetName() const = 0; - virtual void SetEnable(bool enable) = 0; - virtual bool GetEnable() const = 0; - virtual unsigned int GetPriority() const = 0; - virtual bool GetHold() const = 0; - virtual float GetFadeDistance() const = 0; - virtual void SetParam(const char* name, const PostEffectGroupParam& value) = 0; - virtual PostEffectGroupParam* GetParam(const char* name) = 0; - virtual void ClearParams() = 0; - // Increases the strength of the effects based on distance from the camera each time it's called. The effect strength is cleared each frame. - // Only applies to effect groups with the fadeDistance attribute set. - virtual void ApplyAtPosition(const Vec3& position) = 0; -}; - -typedef AZStd::list PostEffectGroupList; - -class IPostEffectGroupManager -{ -public: - virtual ~IPostEffectGroupManager(){} - - virtual IPostEffectGroup* GetGroup(const char* name) = 0; - virtual IPostEffectGroup* GetGroup(const unsigned int index) = 0; - virtual const unsigned int GetGroupCount() = 0; - // Returns a list of IPostEffectGroups who had their Enabled state toggled this frame - virtual const PostEffectGroupList& GetGroupsToggledThisFrame() = 0; -}; diff --git a/Code/Legacy/CryCommon/IRenderAuxGeom.h b/Code/Legacy/CryCommon/IRenderAuxGeom.h index ab3c1036d5..d487cb483f 100644 --- a/Code/Legacy/CryCommon/IRenderAuxGeom.h +++ b/Code/Legacy/CryCommon/IRenderAuxGeom.h @@ -6,16 +6,12 @@ * */ - -#ifndef CRYINCLUDE_CRYCOMMON_IRENDERAUXGEOM_H -#define CRYINCLUDE_CRYCOMMON_IRENDERAUXGEOM_H #pragma once - -struct SAuxGeomRenderFlags; - +#include "Cry_Color.h" #include "IRenderer.h" +struct SAuxGeomRenderFlags; enum EBoundingBoxDrawStyle { @@ -833,6 +829,3 @@ inline CRenderAuxGeomRenderFlagsRestore::~CRenderAuxGeomRenderFlagsRestore() { m_pRender->SetRenderFlags(m_backuppedRenderFlags); } - - -#endif // CRYINCLUDE_CRYCOMMON_IRENDERAUXGEOM_H diff --git a/Code/Legacy/CryCommon/IRenderMesh.h b/Code/Legacy/CryCommon/IRenderMesh.h deleted file mode 100644 index 062c949043..0000000000 --- a/Code/Legacy/CryCommon/IRenderMesh.h +++ /dev/null @@ -1,309 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef CRYINCLUDE_CRYCOMMON_IRENDERMESH_H -#define CRYINCLUDE_CRYCOMMON_IRENDERMESH_H -#pragma once - -#include "VertexFormats.h" -#include -#include -#include // PublicRenderPrimitiveType -#include -#include -#include - -class CMesh; -struct CRenderChunk; -class CRenderObject; -struct SSkinningData; -struct IMaterial; -struct IShader; -struct IIndexedMesh; -struct SMRendTexVert; -struct UCol; -struct GeomInfo; - -struct TFace; -struct SMeshSubset; -struct SRenderingPassInfo; -struct SRendItemSorter; -struct SRenderObjectModifier; - -namespace AZ -{ - namespace Vertex - { - class Format; - } -} - -enum eRenderPrimitiveType : int8; - -// Keep this in sync with BUFFER_USAGE hints DevBuffer.h -enum ERenderMeshType -{ - eRMT_Immmutable = 0, - eRMT_Static = 1, - eRMT_Dynamic = 2, - eRMT_Transient = 3, -}; - - -#define FSM_VERTEX_VELOCITY 1 -#define FSM_NO_TANGENTS 2 -#define FSM_CREATE_DEVICE_MESH 4 -#define FSM_SETMESH_ASYNC 8 -#define FSM_ENABLE_NORMALSTREAM 16 -#define FSM_IGNORE_TEXELDENSITY 32 - -// Invalidate video buffer flags -#define FMINV_STREAM 1 -#define FMINV_STREAM_MASK ((1 << VSF_NUM) - 1) -#define FMINV_INDICES 0x100 -#define FMINV_ALL -1 - -// Stream lock flags -#define FSL_READ 0x01 -#define FSL_WRITE 0x02 -#define FSL_DYNAMIC 0x04 -#define FSL_DISCARD 0x08 -#define FSL_VIDEO 0x10 -#define FSL_SYSTEM 0x20 -#define FSL_INSTANCED 0x40 -#define FSL_NONSTALL_MAP 0x80 // Map must not stall for VB/IB locking -#define FSL_VBIBPUSHDOWN 0x100 // Push down from vram on demand if target architecture supports it, used internally -#define FSL_DIRECT 0x200 // Access VRAM directly if target architecture supports it, used internally -#define FSL_LOCKED 0x400 // Internal use -#define FSL_SYSTEM_CREATE (FSL_WRITE | FSL_DISCARD | FSL_SYSTEM) -#define FSL_SYSTEM_UPDATE (FSL_WRITE | FSL_SYSTEM) -#define FSL_VIDEO_CREATE (FSL_WRITE | FSL_DISCARD | FSL_VIDEO) -#define FSL_VIDEO_UPDATE (FSL_WRITE | FSL_VIDEO) - -#define FSL_ASYNC_DEFER_COPY (1u << 1) -#define FSL_FREE_AFTER_ASYNC (2u << 1) - -struct IRenderMesh -{ - enum EMemoryUsageArgument - { - MEM_USAGE_COMBINED, - MEM_USAGE_ONLY_SYSTEM, - MEM_USAGE_ONLY_VIDEO, - MEM_USAGE_ONLY_STREAMS, - }; - - // Render mesh initialization parameters, that can be used to create RenderMesh from raw pointers. - struct SInitParamerers - { - AZ::Vertex::Format vertexFormat; - ERenderMeshType eType; - - void* pVertBuffer; - int nVertexCount; - SPipTangents* pTangents; - SPipNormal* pNormals; - vtx_idx* pIndices; - int nIndexCount; - PublicRenderPrimitiveType nPrimetiveType; - int nRenderChunkCount; - int nClientTextureBindID; - bool bOnlyVideoBuffer; - bool bPrecache; - bool bLockForThreadAccess; - - SInitParamerers() - : vertexFormat(eVF_P3F_C4B_T2F) - , eType(eRMT_Static) - , pVertBuffer(0) - , nVertexCount(0) - , pTangents(0) - , pNormals(0) - , pIndices(0) - , nIndexCount(0) - , nPrimetiveType(prtTriangleList) - , nRenderChunkCount(0) - , nClientTextureBindID(0) - , bOnlyVideoBuffer(false) - , bPrecache(true) - , bLockForThreadAccess(false) {} - }; - - struct ThreadAccessLock - { - ThreadAccessLock(IRenderMesh* pRM) - : m_pRM(pRM) - { - m_pRM->LockForThreadAccess(); - } - - ~ThreadAccessLock() - { - m_pRM->UnLockForThreadAccess(); - } - - private: - ThreadAccessLock(const ThreadAccessLock&); - ThreadAccessLock& operator = (const ThreadAccessLock&); - - private: - IRenderMesh* m_pRM; - }; - - // - virtual ~IRenderMesh(){} - - ////////////////////////////////////////////////////////////////////////// - // Reference Counting. - virtual void AddRef() = 0; - virtual int Release() = 0; - ////////////////////////////////////////////////////////////////////////// - - // Prevent rendering if video memory could not been allocated for it - virtual bool CanRender() = 0; - - // Returns type name given to the render mesh on creation time. - virtual const char* GetTypeName() = 0; - // Returns the name of the source given to the render mesh on creation time. - virtual const char* GetSourceName() const = 0; - - virtual int GetIndicesCount() = 0; - virtual int GetVerticesCount() = 0; - virtual AZ::Vertex::Format GetVertexFormat() = 0; - virtual ERenderMeshType GetMeshType() = 0; - virtual float GetGeometricMeanFaceArea() const = 0; - - virtual bool CheckUpdate(uint32 nStreamMask) = 0; - virtual int GetStreamStride(int nStream) const = 0; - - virtual const uintptr_t GetVBStream(int nStream) const = 0; - virtual const uintptr_t GetIBStream() const = 0; - virtual int GetNumVerts() const = 0; - virtual int GetNumInds() const = 0; - virtual const eRenderPrimitiveType GetPrimitiveType() const = 0; - - virtual void SetSkinned(bool bSkinned = true) = 0; - virtual uint GetSkinningWeightCount() const = 0; - - // Create render buffers from render mesh. Returns the final size of the render mesh or ~0U on failure - virtual size_t SetMesh(CMesh& mesh, int nSecColorsSetOffset, uint32 flags, bool requiresLock) = 0; - virtual void CopyTo(IRenderMesh* pDst, int nAppendVtx = 0, bool bDynamic = false, bool fullCopy = true) = 0; - virtual void SetSkinningDataVegetation(struct SMeshBoneMapping_uint8* pBoneMapping) = 0; - virtual void SetSkinningDataCharacter(CMesh& mesh, struct SMeshBoneMapping_uint16* pBoneMapping, struct SMeshBoneMapping_uint16* pExtraBoneMapping) = 0; - // Creates an indexed mesh from this render mesh (accepts an optional pointer to an IIndexedMesh object that should be used) - virtual IIndexedMesh* GetIndexedMesh(IIndexedMesh* pIdxMesh = 0) = 0; - virtual int GetRenderChunksCount(_smart_ptr pMat, int& nRenderTrisCount) = 0; - - virtual IRenderMesh* GenerateMorphWeights() = 0; - virtual IRenderMesh* GetMorphBuddy() = 0; - virtual void SetMorphBuddy(IRenderMesh* pMorph) = 0; - - virtual bool UpdateVertices(const void* pVertBuffer, int nVertCount, int nOffset, int nStream, uint32 copyFlags, bool requiresLock = true) = 0; - virtual bool UpdateIndices(const vtx_idx* pNewInds, int nInds, int nOffsInd, uint32 copyFlags, bool requiresLock = true) = 0; - virtual void SetCustomTexID(int nCustomTID) = 0; - virtual void SetChunk(int nIndex, CRenderChunk& chunk) = 0; - virtual void SetChunk(_smart_ptr pNewMat, int nFirstVertId, int nVertCount, int nFirstIndexId, int nIndexCount, float texelAreaDensity, const AZ::Vertex::Format& vertexFormat, int nMatID = 0) = 0; - - // Assign array of render chunks. - // Initializes render element for each render chunk. - virtual void SetRenderChunks(CRenderChunk* pChunksArray, int nCount, bool bSubObjectChunks) = 0; - - virtual void GenerateQTangents() = 0; - virtual void CreateChunksSkinned() = 0; - virtual void NextDrawSkinned() = 0; - virtual IRenderMesh* GetVertexContainer() = 0; - virtual void SetVertexContainer(IRenderMesh* pBuf) = 0; - virtual TRenderChunkArray& GetChunks() = 0; - virtual TRenderChunkArray& GetChunksSkinned() = 0; - virtual TRenderChunkArray& GetChunksSubObjects() = 0; - virtual void SetBBox(const Vec3& vBoxMin, const Vec3& vBoxMax) = 0; - virtual void GetBBox(Vec3& vBoxMin, Vec3& vBoxMax) = 0; - virtual void UpdateBBoxFromMesh() = 0; - virtual uint32* GetPhysVertexMap() = 0; - virtual bool IsEmpty() = 0; - - virtual byte* GetPosPtrNoCache(int32& nStride, uint32 nFlags) = 0; - virtual byte* GetPosPtr(int32& nStride, uint32 nFlags) = 0; - virtual byte* GetColorPtr(int32& nStride, uint32 nFlags) = 0; - virtual byte* GetNormPtr(int32& nStride, uint32 nFlags) = 0; - //! Returns a pointer to the first uv coordinate in the interleaved vertex stream - virtual byte* GetUVPtrNoCache(int32& nStride, uint32 nFlags, uint32 uvSetIndex = 0) = 0; - /*! Get a pointer to the mesh's uv coordinates and the stride from the beginning of one uv coordinate to the next - \param[out] nStride The stride in between successive uv coordinates. - \param nFlags Stream lock flags (FSL_READ, FSL_WRITE, etc) - \param uvSetIndex Which uv set to retrieve (defaults to 0) - \return A pointer to cached uvs which contains all of the uv coordinates contiguous in memory, or as a fallback a pointer to the first uv coordinate in the interleaved vertex stream - Either way, nStride is set such that the caller can use it to iterate over the data in the same way regardless of which pointer was returned - Returns nullptr if there is no uv coordinate stream at the given index - */ - virtual byte* GetUVPtr(int32& nStride, uint32 nFlags, uint32 uvSetIndex = 0) = 0; - - virtual byte* GetTangentPtr(int32& nStride, uint32 nFlags) = 0; - virtual byte* GetQTangentPtr(int32& nStride, uint32 nFlags) = 0; - - virtual byte* GetHWSkinPtr(int32& nStride, uint32 nFlags, bool remapped = false) = 0; - virtual byte* GetVelocityPtr(int32& nStride, uint32 nFlags) = 0; - - virtual void UnlockStream(int nStream) = 0; - virtual void UnlockIndexStream() = 0; - - virtual vtx_idx* GetIndexPtr(uint32 nFlags, int32 nOffset = 0) = 0; - virtual const PodArray >* GetTrisForPosition(const Vec3& vPos, _smart_ptr pMaterial) = 0; - - virtual float GetExtent(EGeomForm eForm) = 0; - virtual void GetRandomPos(PosNorm& ran, EGeomForm eForm, SSkinningData const* pSkinning = NULL) = 0; - - virtual void Render(const struct SRendParams& rParams, CRenderObject* pObj, _smart_ptr pMaterial, const SRenderingPassInfo& passInfo, bool bSkinned = false) = 0; - virtual void Render(CRenderObject* pObj, const SRenderingPassInfo& passInfo, const SRendItemSorter& rendItemSorter) = 0; - virtual void AddRenderElements(_smart_ptr pIMatInfo, CRenderObject* pObj, const SRenderingPassInfo& passInfo, int nSortId = EFSLIST_GENERAL, int nAW = 1) = 0; - virtual void AddRE(_smart_ptr pMaterial, CRenderObject* pObj, IShader* pEf, const SRenderingPassInfo& passInfo, int nList, int nAW, const SRendItemSorter& rendItemSorter) = 0; - virtual void SetREUserData(float* pfCustomData, float fFogScale = 0, float fAlpha = 1) = 0; - - // Debug draw this render mesh. - virtual void DebugDraw(const struct SGeometryDebugDrawInfo& info, uint32 nVisibleChunksMask = ~0, float fExtrdueScale = 0.01f) = 0; - - // Returns mesh memory usage and add it to the CrySizer (if not NULL). - // Arguments: - // pSizer - Sizer interface, can be NULL if caller only want to calculate size - // nType - see EMemoryUsageArgument - virtual size_t GetMemoryUsage(ICrySizer* pSizer, EMemoryUsageArgument nType) const = 0; - virtual void GetMemoryUsage(ICrySizer* pSizer) const = 0; - - // Get allocated only in video memory or only in system memory. - virtual int GetAllocatedBytes(bool bVideoMem) const = 0; - virtual float GetAverageTrisNumPerChunk(_smart_ptr pMat) = 0; - virtual int GetTextureMemoryUsage(const _smart_ptr pMaterial, ICrySizer* pSizer = NULL, bool bStreamedIn = true) const = 0; - virtual void KeepSysMesh(bool keep) = 0; // HACK: temp workaround for GDC-888 - virtual void UnKeepSysMesh() = 0; - virtual void SetMeshLod(int nLod) = 0; - - virtual void LockForThreadAccess() = 0; - virtual void UnLockForThreadAccess() = 0; - - // Sets the async update state - will sync before rendering to this - virtual volatile int* SetAsyncUpdateState(void) = 0; - virtual void CreateRemappedBoneIndicesPair(const DynArray& arrRemapTable, const uint pairGuid) = 0; - virtual void ReleaseRemappedBoneIndicesPair(const uint pairGuid) = 0; - - virtual void OffsetPosition(const Vec3& delta) = 0; - // -}; - -struct SBufferStream -{ - void* m_pLocalData; // pointer to buffer data - uintptr_t m_BufferHdl; - SBufferStream() - { - m_pLocalData = NULL; - m_BufferHdl = ~0u; - } -}; - -#endif // CRYINCLUDE_CRYCOMMON_IRENDERMESH_H diff --git a/Code/Legacy/CryCommon/IRenderer.h b/Code/Legacy/CryCommon/IRenderer.h index 254f1933de..ab185b3bbc 100644 --- a/Code/Legacy/CryCommon/IRenderer.h +++ b/Code/Legacy/CryCommon/IRenderer.h @@ -9,481 +9,13 @@ #pragma once -#include "Cry_Geo.h" #include "Cry_Camera.h" -#include "ITexture.h" -#include "Cry_Vector2.h" -#include "Cry_Vector3.h" -#include "Cry_Matrix33.h" -#include "Cry_Color.h" -#include "smartptr.h" -#include // <> required for Interfuscator -#include "smartptr.h" +#include "VertexFormats.h" + #include #include -// forward declarations -struct SRenderingPassInfo; -struct SRTStack; -struct SFogVolumeData; -// Callback used for DXTCompress -typedef void (* MIPDXTcallback)(const void* buffer, size_t count, void* userData); - -typedef void (* GpuCallbackFunc)(DWORD context); - -// Callback for shadercache miss -typedef void (* ShaderCacheMissCallback)(const char* acShaderRequest); - -struct ICaptureFrameListener -{ - virtual ~ICaptureFrameListener (){} - virtual bool OnNeedFrameData(unsigned char*& pConvertedTextureBuf) = 0; - virtual void OnFrameCaptured(void) = 0; - virtual int OnGetFrameWidth(void) = 0; - virtual int OnGetFrameHeight(void) = 0; - virtual int OnCaptureFrameBegin(int* pTexHandle) = 0; - - enum ECaptureFrameFlags - { - eCFF_NoCaptureThisFrame = (0 << 1), - eCFF_CaptureThisFrame = (1 << 1), - }; -}; - -// Forward declarations. -////////////////////////////////////////////////////////////////////// -typedef void* WIN_HWND; -typedef void* WIN_HINSTANCE; -typedef void* WIN_HDC; -typedef void* WIN_HGLRC; - -class CREMesh; -class CMesh; -//class CImage; -struct CStatObj; -class CVegetation; -struct ShadowMapFrustum; -struct IStatObj; -class CObjManager; -struct SPrimitiveGroup; -class CRendElementBase; -class CRenderObject; -class CTexMan; -//class ColorF; -class CShadowVolEdge; -class CCamera; -class CDLight; -struct SDeferredLightVolume; -struct ILog; -struct IConsole; -struct ICVar; -struct ITimer; -struct ISystem; -class IGPUParticleEngine; -class ICrySizer; -struct IRenderAuxGeom; -struct SREPointSpriteCreateParams; -struct SPointSpriteVertex; -struct RenderLMData; -struct SShaderParam; -struct SSkyLightRenderParams; -struct SParticleRenderInfo; -struct SParticleAddJobCompare; -struct IColorGradingController; -class IStereoRenderer; -struct IFFont; -struct IFFont_RenderProxy; -struct STextDrawContext; -struct IRenderMesh; -struct ShadowFrustumMGPUCache; -struct IAsyncTextureCompileListener; -struct IClipVolume; -struct SClipVolumeBlendInfo; -class CRenderView; -struct SDynTexture2; -class CTexture; -enum ETexPool : int; - -////////////////////////////////////////////////////////////////////// -typedef unsigned char bvec4[4]; -typedef float vec4_t[4]; -typedef unsigned char byte; -typedef float vec2_t[2]; - -//DOC-IGNORE-BEGIN -#include "Cry_Color.h" -#include "Tarray.h" - -#include -//DOC-IGNORE-END - -#define MAX_NUM_VIEWPORTS 7 - -// Query types for CryInd editor (used in EF_Query() function). -enum ERenderQueryTypes -{ - EFQ_DeleteMemoryArrayPtr = 1, - EFQ_DeleteMemoryPtr, - EFQ_GetShaderCombinations, - EFQ_SetShaderCombinations, - EFQ_CloseShaderCombinations, - - EFQ_MainThreadList, - EFQ_RenderThreadList, - EFQ_RenderMultithreaded, - - EFQ_RecurseLevel, - EFQ_IncrementFrameID, - EFQ_DeviceLost, - EFQ_LightSource, - - EFQ_Alloc_APITextures, - EFQ_Alloc_APIMesh, - - // Memory allocated by meshes in system memory. - EFQ_Alloc_Mesh_SysMem, - EFQ_Mesh_Count, - - EFQ_HDRModeEnabled, - EFQ_ParticlesTessellation, - EFQ_WaterTessellation, - EFQ_MeshTessellation, - EFQ_GetShadowPoolFrustumsNum, - EFQ_GetShadowPoolAllocThisFrameNum, - EFQ_GetShadowMaskChannelsNum, - EFQ_GetTiledShadingSkippedLightsNum, - - // Description: - // Query will return all textures in the renderer, - // pass pointer to an SRendererQueryGetAllTexturesParam instance - EFQ_GetAllTextures, - - // Description: - // Release resources allocated by GetAllTextures query - // pass pointer to an SRendererQueryGetAllTexturesParam instance, populated by EFQ_GetAllTextures - EFQ_GetAllTexturesRelease, - - // Description: - // Query will return all IRenderMesh objects in the renderer, - // Pass an array pointer to be allocated and filled with the IRendermesh pointers. The calling function is responsible for freeing this memory. - // This was originally a two pass process, but proved to be non-thread-safe, leading to buffer overruns and underruns. - EFQ_GetAllMeshes, - - // Summary: - // Multigpu (crossfire/sli) is enabled. - EFQ_MultiGPUEnabled, - EFQ_SetDrawNearFov, - EFQ_GetDrawNearFov, - EFQ_TextureStreamingEnabled, - EFQ_MSAAEnabled, - EFQ_AAMode, - - EFQ_Fullscreen, - EFQ_GetTexStreamingInfo, - EFQ_GetMeshPoolInfo, - - // Description: - // True when shading is done in linear space, de-gamma on texture lookup, gamma on frame buffer writing (sRGB), false otherwise. - EFQ_sLinearSpaceShadingEnabled, - - // The percentages of overscan borders for left/right and top/bottom to adjust the title safe area. - EFQ_OverscanBorders, - - // Get num active post effects - EFQ_NumActivePostEffects, - - // Get size of textures memory pool - EFQ_TexturesPoolSize, - EFQ_RenderTargetPoolSize, - - EFQ_GetShaderCacheInfo, - - EFQ_GetFogCullDistance, - EFQ_GetMaxRenderObjectsNum, - - EFQ_IsRenderLoadingThreadActive, - - EFQ_GetSkinningDataPoolSize, - - EFQ_GetViewportDownscaleFactor, - EFQ_ReverseDepthEnabled, - - EFQ_GetLastD3DDebugMessage -}; - -struct ID3DDebugMessage -{ -public: - virtual void Release() = 0; - virtual const char* GetMessage() const = 0; - -protected: - ID3DDebugMessage() {} - virtual ~ID3DDebugMessage() {} -}; - -enum EScreenAspectRatio -{ - eAspect_Unknown, - eAspect_4_3, - eAspect_16_9, - eAspect_16_10, -}; - -class SBoundingVolume -{ -public: - SBoundingVolume() - : m_vCenter(0, 0, 0) - , m_fRadius(0) {} - ~SBoundingVolume() {} - - void SetCenter(const Vec3& center) { m_vCenter = center; } - void SetRadius(float radius) { m_fRadius = radius; } - const Vec3& GetCenter() const { return m_vCenter; } - float GetRadius() const { return m_fRadius; } - -protected: - Vec3 m_vCenter; - float m_fRadius; -}; - -class SMinMaxBox - : public SBoundingVolume -{ -public: - SMinMaxBox() - { - Clear(); - } - SMinMaxBox(const Vec3& min, const Vec3& max) : - m_min(min), - m_max(max) - { - UpdateSphere(); - } - - // Summary: - // Destructor - virtual ~SMinMaxBox() {} - - void AddPoint(const Vec3& pt) - { - if (pt.x > m_max.x) - { - m_max.x = pt.x; - } - if (pt.x < m_min.x) - { - m_min.x = pt.x; - } - - if (pt.y > m_max.y) - { - m_max.y = pt.y; - } - if (pt.y < m_min.y) - { - m_min.y = pt.y; - } - - if (pt.z > m_max.z) - { - m_max.z = pt.z; - } - if (pt.z < m_min.z) - { - m_min.z = pt.z; - } - - // Summary: - // Updates the center and radius. - UpdateSphere(); - } - void AddPoint(float x, float y, float z) - { - AddPoint(Vec3(x, y, z)); - } - - void Union(const SMinMaxBox& box) { AddPoint(box.GetMin()); AddPoint(box.GetMax()); } - - const Vec3& GetMin() const { return m_min; } - const Vec3& GetMax() const { return m_max; } - - void SetMin(const Vec3& min) { m_min = min; UpdateSphere(); } - void SetMax(const Vec3& max) { m_max = max; UpdateSphere(); } - - float GetWidthInX() const { return m_max.x - m_min.x; } - float GetWidthInY() const { return m_max.y - m_min.y; } - float GetWidthInZ() const { return m_max.z - m_min.z; } - - bool PointInBBox(const Vec3& pt) const; - - bool ViewFrustumCull(const CameraViewParameters& viewParameters, const Matrix44& mat); - - void Transform(const Matrix34& mat) - { - Vec3 verts[8]; - CalcVerts(verts); - Clear(); - for (int i = 0; i < 8; i++) - { - AddPoint(mat.TransformPoint(verts[i])); - } - } - - // Summary: - // Resets the bounding box. - void Clear() - { - m_min = Vec3(999999.0f, 999999.0f, 999999.0f); - m_max = Vec3(-999999.0f, -999999.0f, -999999.0f); - } - -protected: - void UpdateSphere() - { - m_vCenter = m_min; - m_vCenter += m_max; - m_vCenter *= 0.5f; - - Vec3 rad = m_max; - rad -= m_vCenter; - m_fRadius = rad.len(); - } - void CalcVerts(Vec3 pVerts[8]) const - { - pVerts[0].Set(m_max.x, m_max.y, m_max.z); - pVerts[4].Set(m_max.x, m_max.y, m_min.z); - pVerts[1].Set(m_min.x, m_max.y, m_max.z); - pVerts[5].Set(m_min.x, m_max.y, m_min.z); - pVerts[2].Set(m_min.x, m_min.y, m_max.z); - pVerts[6].Set(m_min.x, m_min.y, m_min.z); - pVerts[3].Set(m_max.x, m_min.y, m_max.z); - pVerts[7].Set(m_max.x, m_min.y, m_min.z); - } - -private: - Vec3 m_min; // Original object space BV. - Vec3 m_max; -}; - - - -////////////////////////////////////////////////////////////////////// -// All possible primitive types - -enum PublicRenderPrimitiveType -{ - prtTriangleList, - prtTriangleStrip, - prtLineList, - prtLineStrip -}; - -////////////////////////////////////////////////////////////////////// -#define R_CULL_DISABLE 0 -#define R_CULL_NONE 0 -#define R_CULL_FRONT 1 -#define R_CULL_BACK 2 - -////////////////////////////////////////////////////////////////////// -#define R_DEFAULT_LODBIAS 0 - -////////////////////////////////////////////////////////////////////// -#define R_SOLID_MODE 0 -#define R_WIREFRAME_MODE 1 - -#define R_DX9_RENDERER 2 -#define R_DX11_RENDERER 3 -#define R_NULL_RENDERER 4 -#define R_CUBAGL_RENDERER 5 -#define R_GL_RENDERER 6 -#define R_METAL_RENDERER 7 -#define R_DX12_RENDERER 8 - -////////////////////////////////////////////////////////////////////// -// Render features - -#define RFT_FREE_0x1 0x1 -#define RFT_ALLOW_RECTTEX 0x2 -#define RFT_OCCLUSIONQUERY 0x4 -#define RFT_FREE_0x8 0x8 -#define RFT_HWGAMMA 0x10 -#define RFT_FREE_0x20 0x20 -#define RFT_COMPRESSTEXTURE 0x40 -#define RFT_FREE_0x80 0x80 -#define RFT_ALLOWANISOTROPIC 0x100 // Allows anisotropic texture filtering. -#define RFT_SUPPORTZBIAS 0x200 -#define RFT_FREE_0x400 0x400 -#define RFT_FREE_0x800 0x800 -#define RFT_FREE_0x1000 0x1000 -#define RFT_FREE_0x2000 0x2000 -#define RFT_OCCLUSIONTEST 0x8000 // Support hardware occlusion test. - -#define RFT_HW_ARM_MALI 0x04000 // Unclassified ARM (MALI) hardware. -#define RFT_HW_INTEL 0x10000 // Unclassified intel hardware. -#define RFT_HW_QUALCOMM 0x10000 // Unclassified Qualcomm hardware -#define RFT_HW_ATI 0x20000 // Unclassified ATI hardware. -#define RFT_HW_NVIDIA 0x40000 // Unclassified NVidia hardware. -#define RFT_HW_MASK 0x74000 // Graphics chip mask. - -#define RFT_HW_HDR 0x80000 // Hardware supports high dynamic range rendering. - -#define RFT_HW_SM20 0x100000 // Shader model 2.0 -#define RFT_HW_SM2X 0x200000 // Shader model 2.X -#define RFT_HW_SM30 0x400000 // Shader model 3.0 -#define RFT_HW_SM40 0x800000 // Shader model 4.0 -#define RFT_HW_SM50 0x1000000 // Shader model 5.0 - -#define RFT_FREE_0x2000000 0x2000000 -#define RFT_FREE_0x4000000 0x4000000 -#define RFT_FREE_0x8000000 0x8000000 - -#define RFT_HW_VERTEX_STRUCTUREDBUF 0x10000000 // Supports Structured Buffers in the Vertex Shader. -#define RFT_RGBA 0x20000000 // RGBA order (otherwise BGRA). -#define RFT_COMPUTE_SHADERS 0x40000000 // Compute Shaders support -#define RFT_HW_VERTEXTEXTURES 0x80000000 // Vertex texture fetching supported. - -//==================================================================== -// PrecacheResources flags - -#define FPR_NEEDLIGHT 1 -#define FPR_2D 2 -#define FPR_HIGHPRIORITY 4 -#define FPR_SYNCRONOUS 8 -#define FPR_STARTLOADING 16 -#define FPR_SINGLE_FRAME_PRIORITY_UPDATE 32 - -//===================================================================== -// SetRenderTarget flags -#define SRF_SCREENTARGET 1 -#define SRF_USE_ORIG_DEPTHBUF 2 -#define SRF_USE_ORIG_DEPTHBUF_MSAA 4 - -//==================================================================== -// Draw shaders flags (EF_EndEf3d) - -#define SHDF_ALLOWHDR BIT(0) -#define SHDF_CUBEMAPGEN BIT(1) -#define SHDF_ZPASS BIT(2) -#define SHDF_ZPASS_ONLY BIT(3) -#define SHDF_DO_NOT_CLEAR_Z_BUFFER BIT(4) -#define SHDF_ALLOWPOSTPROCESS BIT(5) -#define SHDF_ALLOW_AO BIT(8) -#define SHDF_ALLOW_WATER BIT(9) -#define SHDF_NOASYNC BIT(10) -#define SHDF_NO_DRAWNEAR BIT(11) -#define SHDF_STREAM_SYNC BIT(13) -#define SHDF_NO_SHADOWGEN BIT(15) - -////////////////////////////////////////////////////////////////////// -// Virtual screen size -const float VIRTUAL_SCREEN_WIDTH = 800.0f; -const float VIRTUAL_SCREEN_HEIGHT = 600.0f; - -////////////////////////////////////////////////////////////////////// -// Object states + // Object states #define OS_ALPHA_BLEND 0x1 #define OS_ADD_BLEND 0x2 #define OS_MULTIPLY_BLEND 0x4 @@ -520,7 +52,6 @@ const float VIRTUAL_SCREEN_HEIGHT = 600.0f; #define GS_BLDST_ONE_A_ZERO 0x90 // separate alpha blend state #define GS_BLDST_ONEMINUSSRC1ALPHA 0xa0 // dual source blending - #define GS_DEPTHWRITE 0x00000100 #define GS_COLMASK_RT1 0x00000200 @@ -555,8 +86,8 @@ const float VIRTUAL_SCREEN_HEIGHT = 600.0f; #define GS_STENCIL 0x00800000 #define GS_BLEND_OP_MASK 0x03000000 -#define GS_BLOP_MAX 0x01000000 -#define GS_BLOP_MIN 0x02000000 +#define GS_BLOP_MAX 0x01000000 +#define GS_BLOP_MIN 0x02000000 // Separate alpha blend mode #define GS_BLALPHA_MASK 0x0c000000 @@ -568,181 +99,28 @@ const float VIRTUAL_SCREEN_HEIGHT = 600.0f; #define GS_ALPHATEST_LESS 0x20000000 #define GS_ALPHATEST_GEQUAL 0x40000000 #define GS_ALPHATEST_LEQUAL 0x80000000 +////////////////////////////////////////////////////////////////////// +#define R_SOLID_MODE 0 +#define R_WIREFRAME_MODE 1 -#define FORMAT_8_BIT 8 -#define FORMAT_24_BIT 24 -#define FORMAT_32_BIT 32 +#define MAX_NUM_VIEWPORTS 7 -//================================================================== -// StencilStates -//Note: If these are altered, g_StencilFuncLookup and g_StencilOpLookup arrays -// need to be updated in turn - -#define FSS_STENCFUNC_ALWAYS 0x0 -#define FSS_STENCFUNC_NEVER 0x1 -#define FSS_STENCFUNC_LESS 0x2 -#define FSS_STENCFUNC_LEQUAL 0x3 -#define FSS_STENCFUNC_GREATER 0x4 -#define FSS_STENCFUNC_GEQUAL 0x5 -#define FSS_STENCFUNC_EQUAL 0x6 -#define FSS_STENCFUNC_NOTEQUAL 0x7 -#define FSS_STENCFUNC_MASK 0x7 - -#define FSS_STENCIL_TWOSIDED 0x8 - -#define FSS_CCW_SHIFT 16 - -#define FSS_STENCOP_KEEP 0x0 -#define FSS_STENCOP_REPLACE 0x1 -#define FSS_STENCOP_INCR 0x2 -#define FSS_STENCOP_DECR 0x3 -#define FSS_STENCOP_ZERO 0x4 -#define FSS_STENCOP_INCR_WRAP 0x5 -#define FSS_STENCOP_DECR_WRAP 0x6 -#define FSS_STENCOP_INVERT 0x7 - -#define FSS_STENCFAIL_SHIFT 4 -#define FSS_STENCFAIL_MASK (0x7 << FSS_STENCFAIL_SHIFT) - -#define FSS_STENCZFAIL_SHIFT 8 -#define FSS_STENCZFAIL_MASK (0x7 << FSS_STENCZFAIL_SHIFT) - -#define FSS_STENCPASS_SHIFT 12 -#define FSS_STENCPASS_MASK (0x7 << FSS_STENCPASS_SHIFT) - -#define STENC_FUNC(op) (op) -#define STENC_CCW_FUNC(op) (op << FSS_CCW_SHIFT) -#define STENCOP_FAIL(op) (op << FSS_STENCFAIL_SHIFT) -#define STENCOP_ZFAIL(op) (op << FSS_STENCZFAIL_SHIFT) -#define STENCOP_PASS(op) (op << FSS_STENCPASS_SHIFT) -#define STENCOP_CCW_FAIL(op) (op << (FSS_STENCFAIL_SHIFT + FSS_CCW_SHIFT)) -#define STENCOP_CCW_ZFAIL(op) (op << (FSS_STENCZFAIL_SHIFT + FSS_CCW_SHIFT)) -#define STENCOP_CCW_PASS(op) (op << (FSS_STENCPASS_SHIFT + FSS_CCW_SHIFT)) - -//Stencil masks -#define BIT_STENCIL_RESERVED 0x80 -#define BIT_STENCIL_INSIDE_CLIPVOLUME 0x40 -#define STENC_VALID_BITS_NUM 7 -#define STENC_MAX_REF ((1 << STENC_VALID_BITS_NUM) - 1) - -// Read FrameBuffer type -enum ERB_Type -{ - eRB_BackBuffer, - eRB_FrontBuffer, - eRB_ShadowBuffer -}; - -enum EVertexCostTypes -{ - EVCT_STATIC = 0, - EVCT_VEGETATION, - EVCT_SKINNED, - EVCT_NUM -}; +constexpr float UIDRAW_TEXTSIZEFACTOR = 12.0f; +constexpr float MIN_RESOLUTION_SCALE = 0.25f; +constexpr float MAX_RESOLUTION_SCALE = 4.0f; ////////////////////////////////////////////////////////////////////// +// All possible primitive types -struct SDispFormat +enum class PublicRenderPrimitiveType { - int m_Width; - int m_Height; - int m_BPP; + prtTriangleList, + prtTriangleStrip, + prtLineList, + prtLineStrip }; -struct SAAFormat -{ - char szDescr[64]; - int nSamples; - int nQuality; -}; - -// Summary: -// Info about Terrain sector texturing. -struct SSectorTextureSet -{ - SSectorTextureSet(unsigned short nT0) - { - nTex0 = nT0; - fTexOffsetX = fTexOffsetY = 0; - fTexScale = 1.f; - } - - unsigned short nTex0; - float fTexOffsetX, fTexOffsetY, fTexScale; -}; - -struct IRenderNode; -struct SShaderItem; - -#ifdef SUPPORT_HW_MOUSE_CURSOR -class IHWMouseCursor -{ -public: - virtual ~IHWMouseCursor() {} - virtual void SetPosition(int x, int y) = 0; - virtual void Show() = 0; - virtual void Hide() = 0; -}; -#endif - -////////////////////////////////////////////////////////////////////// -//DOC-IGNORE-BEGIN -#include // <> required for Interfuscator -//DOC-IGNORE-END -#include - -// Flags passed in function FreeResources. -#define FRR_SHADERS 1 -#define FRR_SHADERTEXTURES 2 -#define FRR_TEXTURES 4 -#define FRR_SYSTEM 8 -#define FRR_RESTORE 0x10 -#define FRR_REINITHW 0x20 -#define FRR_DELETED_MESHES 0x40 -#define FRR_FLUSH_TEXTURESTREAMING 0x80 -#define FRR_OBJECTS 0x100 -#define FRR_RENDERELEMENTS 0x200 -#define FRR_RP_BUFFERS 0x400 -#define FRR_SYSTEM_RESOURCES 0x800 -#define FRR_POST_EFFECTS 0x1000 -#define FRR_ALL -1 - -// Refresh render resources flags. -// Flags passed in function RefreshResources. -#define FRO_SHADERS 1 -#define FRO_SHADERTEXTURES 2 -#define FRO_TEXTURES 4 -#define FRO_GEOMETRY 8 -#define FRO_FORCERELOAD 0x10 - -//============================================================================= -// Shaders render target stuff. - -#define FRT_CLEAR_DEPTH 0x1 -#define FRT_CLEAR_STENCIL 0x2 -#define FRT_CLEAR_COLOR 0x4 -#define FRT_CLEAR (FRT_CLEAR_COLOR | FRT_CLEAR_DEPTH | FRT_CLEAR_STENCIL) -#define FRT_CLEAR_FOGCOLOR 0x8 -#define FRT_CLEAR_IMMEDIATE 0x10 -#define FRT_CLEAR_COLORMASK 0x20 -#define FRT_CLEAR_RESET_VIEWPORT 0x40 - -#define FRT_CAMERA_REFLECTED_WATERPLANE 0x40 -#define FRT_CAMERA_REFLECTED_PLANE 0x80 -#define FRT_CAMERA_CURRENT 0x100 - -#define FRT_USE_FRONTCLIPPLANE 0x200 -#define FRT_USE_BACKCLIPPLANE 0x400 - -#define FRT_GENERATE_MIPS 0x800 - -#define FRT_RENDTYPE_CUROBJECT 0x1000 -#define FRT_RENDTYPE_CURSCENE 0x2000 -#define FRT_RENDTYPE_RECURSIVECURSCENE 0x4000 -#define FRT_RENDTYPE_COPYSCENE 0x8000 - // Summary: // Flags used in DrawText function. // See also: @@ -751,48 +129,26 @@ public: // Text must be fixed pixel size. enum EDrawTextFlags { - eDrawText_Left = 0, // default left alignment if neither Center or Right are specified - eDrawText_Center = BIT(0), // centered alignment, otherwise right or left - eDrawText_Right = BIT(1), // right alignment, otherwise center or left - eDrawText_CenterV = BIT(2), // center vertically, otherwise top - eDrawText_Bottom = BIT(3), // bottom alignment + eDrawText_Left = 0, // default left alignment if neither Center or Right are specified + eDrawText_Center = BIT(0), // centered alignment, otherwise right or left + eDrawText_Right = BIT(1), // right alignment, otherwise center or left + eDrawText_CenterV = BIT(2), // center vertically, otherwise top + eDrawText_Bottom = BIT(3), // bottom alignment - eDrawText_2D = BIT(4), // 3 component vector is used for xy screen position, otherwise it's 3d world space position + eDrawText_2D = BIT(4), // 3 component vector is used for xy screen position, otherwise it's 3d world space position - eDrawText_FixedSize = BIT(5), // font size is defined in the actual pixel resolution, otherwise it's in the virtual 800x600 - eDrawText_800x600 = BIT(6), // position are specified in the virtual 800x600 resolution, otherwise coordinates are in pixels + eDrawText_FixedSize = BIT(5), // font size is defined in the actual pixel resolution, otherwise it's in the virtual 800x600 + eDrawText_800x600 = BIT(6), // position are specified in the virtual 800x600 resolution, otherwise coordinates are in pixels - eDrawText_Monospace = BIT(7), // non proportional font rendering (Font width is same for all characters) + eDrawText_Monospace = BIT(7), // non proportional font rendering (Font width is same for all characters) - eDrawText_Framed = BIT(8), // draw a transparent, rectangular frame behind the text to ease readability independent from the background + eDrawText_Framed = BIT(8), // draw a transparent, rectangular frame behind the text to ease readability independent from the background - eDrawText_DepthTest = BIT(9), // text should be occluded by world geometry using the depth buffer + eDrawText_DepthTest = BIT(9), // text should be occluded by world geometry using the depth buffer eDrawText_IgnoreOverscan = BIT(10), // ignore the overscan borders, text should be drawn at the location specified - eDrawText_UseTransform = BIT(11), // use a transform for the text + eDrawText_UseTransform = BIT(11), // use a transform for the text }; -// Debug stats/views for Partial resolves -// if REFRACTION_PARTIAL_RESOLVE_DEBUG_VIEWS is enabled, make sure REFRACTION_PARTIAL_RESOLVE_STATS is too -#if defined(PERFORMANCE_BUILD) - #define REFRACTION_PARTIAL_RESOLVE_STATS 1 - #define REFRACTION_PARTIAL_RESOLVE_DEBUG_VIEWS 0 -#elif defined(_RELEASE) // note: _RELEASE is defined in PERFORMANCE_BUILD, so this check must come second - #define REFRACTION_PARTIAL_RESOLVE_STATS 0 - #define REFRACTION_PARTIAL_RESOLVE_DEBUG_VIEWS 0 -#else - #define REFRACTION_PARTIAL_RESOLVE_STATS 1 - #define REFRACTION_PARTIAL_RESOLVE_DEBUG_VIEWS 1 -#endif - -#if REFRACTION_PARTIAL_RESOLVE_DEBUG_VIEWS -enum ERefractionPartialResolvesDebugViews -{ - eRPR_DEBUG_VIEW_2D_AREA = 1, - eRPR_DEBUG_VIEW_3D_BOUNDS, - eRPR_DEBUG_VIEW_2D_AREA_OVERLAY -}; -#endif - ////////////////////////////////////////////////////////////////////////// // Description: // This structure used in DrawText method of renderer. @@ -821,25 +177,6 @@ struct SDrawTextInfo } }; -#define UIDRAW_TEXTSIZEFACTOR (12.0f) -#define MIN_RESOLUTION_SCALE (0.25f) -#define MAX_RESOLUTION_SCALE (4.0f) - -#if defined(AZ_RESTRICTED_PLATFORM) - #include AZ_RESTRICTED_FILE(IRenderer_h) -#else -//SLI/CROSSFIRE GPU maximum count - #define MAX_GPU_NUM 4 -#endif - -#define MAX_FRAME_ID_STEP_PER_FRAME 20 -const int MAX_GSM_LODS_NUM = 16; - -const f32 DRAW_NEAREST_MIN = 0.03f; -const f32 DRAW_NEAREST_MAX = 40.0f; - -//=================================================================== - ////////////////////////////////////////////////////////////////////// struct IRenderDebugListener { @@ -848,1609 +185,23 @@ struct IRenderDebugListener virtual void OnDebugDraw() = 0; }; -////////////////////////////////////////////////////////////////////// -struct ILoadtimeCallback +struct DynUiPrimitive : public AZStd::intrusive_slist_node { - virtual void LoadtimeUpdate(float fDeltaTime) = 0; - virtual void LoadtimeRender() = 0; - virtual ~ILoadtimeCallback(){} -}; - -////////////////////////////////////////////////////////////////////// -struct ISyncMainWithRenderListener -{ - virtual void SyncMainWithRender() = 0; - virtual ~ISyncMainWithRenderListener(){} -}; - -////////////////////////////////////////////////////////////////////// -enum ERenderType -{ - eRT_Undefined, - eRT_Null, - eRT_DX11, - eRT_DX12, - eRT_Provo, - eRT_OpenGL, - eRT_Metal, - eRT_Jasper, -}; - -////////////////////////////////////////////////////////////////////// -// Enum for types of deferred lights -enum eDeferredLightType -{ - eDLT_DeferredLight = 0, - - eDLT_NumShadowCastingLights = eDLT_DeferredLight + 1, - // these lights cannot cast shadows - eDLT_DeferredCubemap = eDLT_NumShadowCastingLights, - eDLT_DeferredAmbientLight, - eDLT_NumLightTypes, -}; - -const float RENDERER_LIGHT_UNIT_SCALE = 10000.0f; // Scale factor between photometric and internal light units - -////////////////////////////////////////////////////////////////////// -struct SCustomRenderInitArgs -{ - bool appStartedFromMediaCenter; -}; - -#if defined(ANDROID) -enum -{ - CULL_SIZEX = 128 -}; -enum -{ - CULL_SIZEY = 64 -}; -#else -enum -{ - CULL_SIZEX = 256 -}; -enum -{ - CULL_SIZEY = 128 -}; -#endif - -////////////////////////////////////////////////////////////////////// -// Description: -// Z-buffer as occlusion buffer definitions: used, shared and initialized in engine and renderer. -struct SHWOccZBuffer -{ - uint32* pHardwareZBuffer; - uint32* pZBufferVMem; - uint32 ZBufferSizeX; - uint32 ZBufferSizeY; - uint32 HardwareZBufferRSXOff; - uint32 ZBufferVMemRSXOff; - uint32 pad[2]; // Keep 32 byte aligned - SHWOccZBuffer() - : pHardwareZBuffer(NULL) - , pZBufferVMem(NULL) - , ZBufferSizeX(CULL_SIZEX) - , ZBufferSizeY(CULL_SIZEY) - , ZBufferVMemRSXOff(0) - , HardwareZBufferRSXOff(0){} -}; - -class ITextureStreamListener -{ -public: - virtual void OnCreatedStreamedTexture(void* pHandle, const char* name, int nMips, int nMinMipAvailable) = 0; - virtual void OnDestroyedStreamedTexture(void* pHandle) = 0; - virtual void OnTextureWantsMip(void* pHandle, int nMinMip) = 0; - virtual void OnTextureHasMip(void* pHandle, int nMinMip) = 0; - virtual void OnBegunUsingTextures(void** pHandles, size_t numHandles) = 0; - virtual void OnEndedUsingTextures(void** pHandle, size_t numHandles) = 0; - -protected: - virtual ~ITextureStreamListener() {} -}; - -enum eDolbyVisionMode -{ - eDVM_Disabled, - eDVM_RGBPQ, - eDVM_Vision, -}; - -enum ERenderPipelineProfilerStats -{ - eRPPSTATS_OverallFrame = 0, - eRPPSTATS_Recursion, - - // Scene - eRPPSTATS_SceneOverall, - eRPPSTATS_SceneDecals, - eRPPSTATS_SceneForward, - eRPPSTATS_SceneWater, - - // Shadows - eRPPSTATS_ShadowsOverall, - eRPPSTATS_ShadowsSun, - eRPPSTATS_ShadowsSunCustom, - eRPPSTATS_ShadowsLocal, - - // Lighting - eRPPSTATS_LightingOverall, - eRPPSTATS_LightingGI, - - // VFX - eRPPSTATS_VfxOverall, - eRPPSTATS_VfxTransparent, - eRPPSTATS_VfxFog, - eRPPSTATS_VfxFlares, - - // Individual Total Illumination stats - eRPPSTATS_TI_INJECT_CLEAR, - eRPPSTATS_TI_VOXELIZE, - eRPPSTATS_TI_INJECT_AIR, - eRPPSTATS_TI_INJECT_LIGHT, - eRPPSTATS_TI_INJECT_REFL0, - eRPPSTATS_TI_INJECT_REFL1, - eRPPSTATS_TI_INJECT_DYNL, - eRPPSTATS_TI_NID_DIFF, - eRPPSTATS_TI_GEN_DIFF, - eRPPSTATS_TI_GEN_SPEC, - eRPPSTATS_TI_GEN_AIR, - eRPPSTATS_TI_DEMOSAIC_DIFF, - eRPPSTATS_TI_DEMOSAIC_SPEC, - eRPPSTATS_TI_UPSCALE_DIFF, - eRPPSTATS_TI_UPSCALE_SPEC, - - RPPSTATS_NUM -}; - -struct RPProfilerStats -{ - float gpuTime; - float gpuTimeSmoothed; - float gpuTimeMax; - float cpuTime; - uint32 numDIPs; - uint32 numPolys; - - // Internal - float _gpuTimeMaxNew; -}; - -struct TransformationMatrices -{ - Matrix44A m_viewMatrix; - Matrix44A m_projectMatrix; -}; - -struct ISvoRenderer -{ - virtual bool IsShaderItemUsedForVoxelization([[maybe_unused]] SShaderItem& rShaderItem, [[maybe_unused]] IRenderNode* pRN){ return false; } - virtual void Release(){} -}; - -////////////////////////////////////////////////////////////////////// -struct SRenderPipeline; -struct SRenderThread; -struct SShaderTechnique; -struct SShaderPass; -struct SDepthTexture; -struct SRenderTileInfo; - -class CShaderMan; -class CDeviceBufferManager; -class CShaderResources; -class PerInstanceConstantBufferPool; - -namespace AZ { - class Plane; - namespace Vertex { - class Format; - } -} -enum eRenderPrimitiveType : int8; -enum RenderIndexType : int; - -struct IRenderAPI -{ -}; - -struct IRenderer - : public IRenderAPI -{ - virtual ~IRenderer(){} - - virtual void AddRenderDebugListener(IRenderDebugListener* pRenderDebugListener) = 0; - virtual void RemoveRenderDebugListener(IRenderDebugListener* pRenderDebugListener) = 0; - - virtual ERenderType GetRenderType() const = 0; - - virtual const char* GetRenderDescription() const - { - return "CryRenderer"; - } - - // Summary: - // Initializes the renderer, params are self-explanatory. - virtual WIN_HWND Init(int x, int y, int width, int height, unsigned int cbpp, int zbpp, int sbits, bool fullscreen, bool isEditor, WIN_HINSTANCE hinst, WIN_HWND Glhwnd = 0, bool bReInit = false, const SCustomRenderInitArgs* pCustomArgs = 0, bool bShaderCacheGen = false) = 0; - virtual void PostInit() = 0; - - virtual bool IsPost3DRendererEnabled() const { return false; } - - virtual int GetFeatures() = 0; - virtual const void SetApiVersion(const AZStd::string& apiVersion) = 0; - virtual const void SetAdapterDescription(const AZStd::string& adapterDescription) = 0; - virtual const AZStd::string& GetApiVersion() const = 0; - virtual const AZStd::string& GetAdapterDescription() const = 0; - virtual void GetVideoMemoryUsageStats(size_t& vidMemUsedThisFrame, size_t& vidMemUsedRecently, bool bGetPoolsSizes = false) = 0; - virtual int GetNumGeomInstances() const = 0; - virtual int GetNumGeomInstanceDrawCalls() const = 0; - virtual int GetCurrentNumberOfDrawCalls() const = 0; - virtual void GetCurrentNumberOfDrawCalls(int& nGeneral, int& nShadowGen) const = 0; - //Sums DIP counts for the EFSLIST_* passes that match the submitted mask. - //Compose the mask with bitwise arithmetic, use (1 << EFSLIST_*) per list. - //e.g. to sum general and transparent, pass in ( (1 << EFSLIST_GENERAL) | (1 << EFSLIST_TRANSP) ) - virtual int GetCurrentNumberOfDrawCalls(uint32 EFSListMask) const = 0; - virtual float GetCurrentDrawCallRTTimes(uint32 EFSListMask) const = 0; - - virtual void SetDebugRenderNode(IRenderNode* pRenderNode) = 0; - virtual bool IsDebugRenderNode(IRenderNode* pRenderNode) const = 0; - - ///////////////////////////////////////////////////////////////////////////////// - // Render-context management - ///////////////////////////////////////////////////////////////////////////////// - virtual bool DeleteContext(WIN_HWND hWnd) = 0; - virtual bool CreateContext(WIN_HWND hWnd, bool bAllowMSAA = false, int SSX = 1, int SSY = 1) = 0; - virtual bool SetCurrentContext(WIN_HWND hWnd) = 0; - virtual void MakeMainContextActive() = 0; - virtual WIN_HWND GetCurrentContextHWND() = 0; - virtual bool IsCurrentContextMainVP() = 0; - - // Summary: - // Gets height of the current viewport. - virtual int GetCurrentContextViewportHeight() const = 0; - - // Summary: - // Gets width of the current viewport. - virtual int GetCurrentContextViewportWidth() const = 0; - ///////////////////////////////////////////////////////////////////////////////// - - // Summary: - // Shuts down the renderer. - virtual void ShutDown(bool bReInit = false) = 0; - virtual void ShutDownFast() = 0; - - // Description: - // Creates array of all supported video formats (except low resolution formats). - // Return value: - // Number of formats in memory. - virtual int EnumDisplayFormats(SDispFormat* Formats) = 0; - - // Summary: - // Returns all supported by video card video AA formats. - virtual int EnumAAFormats(SAAFormat* Formats) = 0; - - // Summary: - // Changes resolution of the window/device (doesn't require to reload the level. - virtual bool ChangeResolution(int nNewWidth, int nNewHeight, int nNewColDepth, int nNewRefreshHZ, bool bFullScreen, bool bForceReset) = 0; - - // Note: - // Should be called at the beginning of every frame. - virtual void BeginFrame() = 0; - - // Summary: - // Creates default system shaders and textures. - virtual void InitSystemResources(int nFlags) = 0; - virtual void InitTexturesSemantics() = 0; - - // Summary: - // Frees the allocated resources. - virtual void FreeResources(int nFlags) = 0; - - // Summary: - // Shuts down the renderer. - virtual void Release() = 0; - - // See also: - // r_ShowDynTextures - virtual void RenderDebug(bool bRenderStats = true) = 0; - - // Note: - // Should be called at the end of every frame. - virtual void EndFrame() = 0; - - // Force a swap on the backbuffer - virtual void ForceSwapBuffers() = 0; - - // Summary: - // Try to flush the render thread commands to keep the render thread active during - // level loading, but simpy return if the render thread is still busy - virtual void TryFlush() = 0; - - virtual void GetViewport(int* x, int* y, int* width, int* height) const = 0; - virtual void SetViewport(int x, int y, int width, int height, int id = 0) = 0; - virtual void SetRenderTile(f32 nTilesPosX = 0.f, f32 nTilesPosY = 0.f, f32 nTilesGridSizeX = 1.f, f32 nTilesGridSizeY = 1.f) = 0; - virtual void SetScissor(int x = 0, int y = 0, int width = 0, int height = 0) = 0; - virtual Matrix44A& GetViewProjectionMatrix() = 0; - virtual void SetTranspOrigCameraProjMatrix(Matrix44A& matrix) = 0; - - virtual EScreenAspectRatio GetScreenAspect(int nWidth, int nHeight) = 0; - - virtual Vec2 SetViewportDownscale(float xscale, float yscale) = 0; - virtual void SetViewParameters(const CameraViewParameters& viewParameters) = 0; // Direct setter - virtual void ApplyViewParameters(const CameraViewParameters& viewParameters) = 0; // Uses CameraViewParameters to create matrices. - - // Summary: - // Draws user primitives. - virtual void DrawDynVB(SVF_P3F_C4B_T2F* pBuf, uint16* pInds, int nVerts, int nInds, PublicRenderPrimitiveType nPrimType) = 0; - - struct DynUiPrimitive : public AZStd::intrusive_slist_node - { - SVF_P2F_C4B_T2F_F4B* m_vertices = nullptr; - uint16* m_indices = nullptr; - int m_numVertices = 0; - int m_numIndices = 0; - }; - - using DynUiPrimitiveList = AZStd::intrusive_slist>; - - // Summary: - // Draws a list of UI primitives as one draw call (if using separate render thread) - virtual void DrawDynUiPrimitiveList(DynUiPrimitiveList& primitives, int totalNumVertices, int totalNumIndices) = 0; - - // Summary: - // Sets the renderer camera. - virtual void SetCamera(const CCamera& cam) = 0; - - // Summary: - // Gets the renderer camera. - virtual const CCamera& GetCamera() = 0; - - virtual CRenderView* GetRenderViewForThread(int nThreadID) = 0; - // Summary: - // Gets the renderer previous camera. - //virtual const CCamera& GetCameraPrev() = 0; - - // Summary: - // Sets delta gamma. - virtual bool SetGammaDelta(float fGamma) = 0; - - // Summary: - // Restores gamma - // Note: - // Reset gamma setting if not in fullscreen mode. - virtual void RestoreGamma(void) = 0; - - // Summary: - // Changes display size. - virtual bool ChangeDisplay(unsigned int width, unsigned int height, unsigned int cbpp) = 0; - - // Summary: - // Changes viewport size. - virtual void ChangeViewport(unsigned int x, unsigned int y, unsigned int width, unsigned int height, bool bMainViewport = false, float scaleWidth = 1.0f, float scaleHeight = 1.0f) = 0; - - // Summary: - // Saves source data to a Tga file. - // Note: - // Should not be here. - virtual bool SaveTga(unsigned char* sourcedata, int sourceformat, int w, int h, const char* filename, bool flip) const = 0; - - // Summary: - // Sets the current binded texture. - virtual void SetTexture(int tnum) = 0; - - // Summary: - // Sets the current bound texture for the given texture unit - virtual void SetTexture(int tnum, int nUnit) = 0; - - // Summary: - // Sets the white texture. - virtual void SetWhiteTexture() = 0; - - // Summary: - // Gets the white texture Id. - virtual int GetWhiteTextureId() const = 0; - - // Summary: - // Gets the white texture Id. - virtual int GetBlackTextureId() const = 0; - - // Summary: - // Draws a 2d image on the screen. - // Example: - // Hud etc. - virtual void Draw2dImage(float xpos, float ypos, float w, float h, int texture_id, float s0 = 0, float t0 = 0, float s1 = 1, float t1 = 1, float angle = 0, float r = 1, float g = 1, float b = 1, float a = 1, float z = 1) = 0; - - virtual void Draw2dImageStretchMode(bool stretch) = 0; - - // Summary: - // Adds a 2d image that should be drawn on the screen to an internal render list. The list can be drawn with Draw2dImageList. - // If several images will be drawn, using this function is more efficient than calling Draw2dImage as it allows better batching. - // The function supports placing images in stereo 3d space. - // Arguments: - // stereoDepth - Places image in stereo 3d space. The depth is specified in camera space, the stereo params are the same that - // are used for the scene. A value of 0 is handled as a special case and always places the image on the screen plane. - virtual void Push2dImage(float xpos, float ypos, float w, float h, int texture_id, float s0 = 0, float t0 = 0, float s1 = 1, float t1 = 1, float angle = 0, float r = 1, float g = 1, float b = 1, float a = 1, float z = 1, float stereoDepth = 0) = 0; - - // Summary: - // Draws all images to the screen that were collected with Push2dImage. - virtual void Draw2dImageList() = 0; - - // Summary: - // Draws a image using the current matrix. - virtual void DrawImage(float xpos, float ypos, float w, float h, int texture_id, float s0, float t0, float s1, float t1, float r, float g, float b, float a, bool filtered = true) = 0; - - // Description: - // Draws a image using the current matrix, more flexible than DrawImage - // order for s and t: 0=left_top, 1=right_top, 2=right_bottom, 3=left_bottom. - virtual void DrawImageWithUV(float xpos, float ypos, float z, float width, float height, int texture_id, float* s, float* t, float r = 1, float g = 1, float b = 1, float a = 1, bool filtered = true) = 0; - - // Summary: - // Sets the polygon mode with Push, Pop restores the last used one - // Example: - // Wireframe, solid. - virtual void PushWireframeMode(int mode) = 0; - virtual void PopWireframeMode() = 0; - - // Summary: - // Gets height of the main rendering resolution. - virtual int GetHeight() const = 0; - - // Summary: - // Gets width of the main rendering resolution. - virtual int GetWidth() const = 0; - - // Summary: - // Gets Pixel Aspect Ratio. - virtual float GetPixelAspectRatio() const = 0; - - // Summary: - // Gets the height of the overlay viewport where UI and debug output are rendered. - virtual int GetOverlayHeight() const = 0; - - // Summary: - // Gets the width of the overlay viewport where UI and debug output are rendered. - virtual int GetOverlayWidth() const = 0; - - // Summary: - // Gets the maximum dimension for a square custom render resolution. - virtual int GetMaxSquareRasterDimension() const = 0; - - // Summary: - // Switches subsequent rendering from the internal backbuffer to the native resolution backbuffer if available. - virtual void SwitchToNativeResolutionBackbuffer() = 0; - - // Summary: - // Gets memory status information - virtual void GetMemoryUsage(ICrySizer* Sizer) = 0; - - // Summary: - // Gets textures streaming bandwidth information - virtual void GetBandwidthStats(float* fBandwidthRequested) = 0; - - // Summary: - // Sets an event listener for texture streaming updates - virtual void SetTextureStreamListener(ITextureStreamListener* pListener) = 0; - - // Summary: - // Populates a CPU-side occlusion buffer with the contents from the previous frame's downsampled depth buffer. - // This will be called from a job thread within the occlusion system. - virtual int GetOcclusionBuffer(uint16* pOutOcclBuffer, Matrix44* pmCamBuffer) = 0; - - // Summary: - // Gets a screenshot and save to a file - // Returns: - // true=success - virtual bool ScreenShot(const char* filename = NULL, int width = 0) = 0; - - // Summary: - // Gets current bpp. - virtual int GetColorBpp() = 0; - - // Summary: - // Gets current z-buffer depth. - virtual int GetDepthBpp() = 0; - - // Summary: - // Gets current stencil bits. - virtual int GetStencilBpp() = 0; - - // Summary: - // Returns true if stereo rendering is enabled. - virtual bool IsStereoEnabled() const = 0; - - // Summary: - // Returns values of nearest rendering z-range max - virtual float GetNearestRangeMax() const = 0; - - // Summary: - // Returns the PerInstanceConstantBufferPool - virtual PerInstanceConstantBufferPool* GetPerInstanceConstantBufferPoolPointer() = 0; - - // Summary: - // Projects to screen. - // Returns true if successful. - virtual bool ProjectToScreen( - float ptx, float pty, float ptz, - float* sx, float* sy, float* sz) = 0; - - // Summary: - // Unprojects to screen. - virtual int UnProject( - float sx, float sy, float sz, - float* px, float* py, float* pz, - const float modelMatrix[16], - const float projMatrix[16], - const int viewport[4]) = 0; - - // Summary: - // Unprojects from screen. - virtual int UnProjectFromScreen( - float sx, float sy, float sz, - float* px, float* py, float* pz) = 0; - - // Remarks: - // For editor. - virtual void GetModelViewMatrix(float* mat) = 0; - - // Remarks: - // For editor. - virtual void GetProjectionMatrix(float* mat) = 0; - - virtual bool WriteDDS(const byte* dat, int wdt, int hgt, int Size, const char* name, ETEX_Format eF, int NumMips) = 0; - virtual bool WriteTGA(const byte* dat, int wdt, int hgt, const char* name, int src_bits_per_pixel, int dest_bits_per_pixel) = 0; - virtual bool WriteJPG(const byte* dat, int wdt, int hgt, char* name, int src_bits_per_pixel, int nQuality = 100) = 0; - - ///////////////////////////////////////////////////////////////////////////////// - //Replacement functions for Font - - static const bool FontCreateTextureGenMipsDefaultValue = false; - virtual int FontCreateTexture(int Width, int Height, byte* pData, ETEX_Format eTF = eTF_R8G8B8A8, bool genMips = FontCreateTextureGenMipsDefaultValue, const char* textureName = nullptr) = 0; - virtual bool FontUpdateTexture(int nTexId, int X, int Y, int USize, int VSize, byte* pData) = 0; - virtual void FontSetTexture(int nTexId, int nFilterMode) = 0; - virtual void FontSetRenderingState(bool overrideViewProjMatrices, TransformationMatrices& backupMatrices) = 0; - virtual void FontSetBlending(int src, int dst, int baseState) = 0; - virtual void FontRestoreRenderingState(bool overrideViewProjMatrices, const TransformationMatrices& restoringMatrices) = 0; - - virtual bool FlushRTCommands(bool bWait, bool bImmediatelly, bool bForce) = 0; - virtual void DrawStringU(IFFont_RenderProxy* pFont, float x, float y, float z, const char* pStr, bool asciiMultiLine, const STextDrawContext& ctx) const = 0; - - virtual int RT_CurThreadList() = 0; - - ///////////////////////////////////////////////////////////////////////////////// - // External interface for shaders - ///////////////////////////////////////////////////////////////////////////////// - virtual bool EF_PrecacheResource(SShaderItem* pSI, float fMipFactor, float fTimeToReady, int Flags, int nUpdateId, int nCounter = 1) = 0; - virtual bool EF_PrecacheResource(IShader* pSH, float fMipFactor, float fTimeToReady, int Flags) = 0; - virtual bool EF_PrecacheResource(ITexture* pTP, float fMipFactor, float fTimeToReady, int Flags, int nUpdateId, int nCounter = 1) = 0; - virtual bool EF_PrecacheResource(IRenderMesh* pPB, _smart_ptr pMaterial, float fMipFactor, float fTimeToReady, int Flags, int nUpdateId) = 0; - virtual bool EF_PrecacheResource(CDLight* pLS, float fMipFactor, float fTimeToReady, int Flags, int nUpdateId) = 0; - - virtual ITexture* EF_CreateCompositeTexture(int type, const char* szName, int nWidth, int nHeight, int nDepth, int nMips, int nFlags, ETEX_Format eTF, const STexComposition* pCompositions, size_t nCompositions, int8 nPriority = -1) = 0; - - virtual void PostLevelLoading() = 0; - virtual void PostLevelUnload() = 0; - - virtual CRenderObject* EF_AddPolygonToScene(SShaderItem& si, int numPts, const SVF_P3F_C4B_T2F* verts, const SPipTangents* tangs, CRenderObject* obj, const SRenderingPassInfo& passInfo, uint16* inds, int ninds, int nAW, const SRendItemSorter& rendItemSorter) = 0; - virtual CRenderObject* EF_AddPolygonToScene(SShaderItem& si, CRenderObject* obj, const SRenderingPassInfo& passInfo, int numPts, int ninds, SVF_P3F_C4B_T2F*& verts, SPipTangents*& tangs, uint16*& inds, int nAW, const SRendItemSorter& rendItemSorter) = 0; - - // This is a workaround for when an editor viewport needs to do immediate rendering - // in the editor. Specifically, global constants are updated in a deferred fashion, so - // if a viewport (like the lens flare view) starts doing main-thread rendering, those - // parameters are not bound. - virtual void ForceUpdateGlobalShaderParameters() {} - - ///////////////////////////////////////////////////////////////////////////////// - // Shaders/Shaders management ///////////////////////////////////////////////////////////////////////////////// - - virtual const char* EF_GetShaderMissLogPath() = 0; - - ///////////////////////////////////////////////////////////////////////////////// - virtual AZStd::string* EF_GetShaderNames(int& nNumShaders) = 0; - // Summary: - // Reloads file - virtual bool EF_ReloadFile (const char* szFileName) = 0; - // Summary: - // Reloads file at any time the renderer feels to do so (no guarantees, but likely on next frame update) - // Is threadsafe - virtual bool EF_ReloadFile_Request (const char* szFileName) = 0; - - // Summary: - // Remaps shader gen mask to common global mask. - virtual uint64 EF_GetRemapedShaderMaskGen(const char* name, uint64 nMaskGen = 0, bool bFixup = 0) = 0; - - virtual uint64 EF_GetShaderGlobalMaskGenFromString(const char* szShaderName, const char* szShaderGen, uint64 nMaskGen = 0) = 0; - virtual AZStd::string EF_GetStringFromShaderGlobalMaskGen(const char* szShaderName, uint64 nMaskGen = 0) = 0; - - virtual const SShaderProfile& GetShaderProfile(EShaderType eST) const = 0; - virtual void EF_SetShaderQuality(EShaderType eST, EShaderQuality eSQ) = 0; - - // Summary: - // Gets renderer quality. - virtual ERenderQuality EF_GetRenderQuality() const = 0; - // Summary: - // Gets shader type quality. - virtual EShaderQuality EF_GetShaderQuality(EShaderType eST) = 0; - // Summary: - // Loads shader item for name (name). - virtual SShaderItem EF_LoadShaderItem (const char* szName, bool bShare, int flags = 0, SInputShaderResources* Res = NULL, uint64 nMaskGen = 0) = 0; - // Summary: - // Loads shader for name (name). - virtual IShader* EF_LoadShader (const char* name, int flags = 0, uint64 nMaskGen = 0) = 0; - // Summary: - // Reinitializes all shader files (build hash tables). - virtual void EF_ReloadShaderFiles (int nCategory) = 0; - // Summary: - // Reloads all texture files. - virtual void EF_ReloadTextures () = 0; - // Summary: - // Gets texture object by ID. - virtual ITexture* EF_GetTextureByID(int Id) = 0; - // Summary: - // Gets texture object by Name. - virtual ITexture* EF_GetTextureByName(const char* name, uint32 flags = 0) = 0; - // Summary: - // Loads the texture for name(nameTex). - virtual ITexture* EF_LoadTexture(const char* nameTex, uint32 flags = 0) = 0; - virtual ITexture* EF_LoadCubemapTexture(const char* nameTex, uint32 flags = 0) = 0; - // Summary: - // Loads default texture whose life cycle is managed by Texture Manager, do not try to release them by yourself! - virtual ITexture* EF_LoadDefaultTexture(const char* nameTex) = 0; - - // Summary: - // Loads lightmap for name. - virtual int EF_LoadLightmap (const char* name) = 0; - - // Summary: - // Starts using of the shaders (return first index for allow recursions). - virtual void EF_StartEf (const SRenderingPassInfo& passInfo) = 0; - - virtual SRenderObjData* EF_GetObjData(CRenderObject* pObj, bool bCreate, int nThreadID) = 0; - - // Summary: - // Gets CRenderObject for RE transformation. - //Get temporary RenderObject - virtual CRenderObject* EF_GetObject_Temp (int nThreadID) = 0; - - //Get permanent RenderObject - virtual CRenderObject* EF_DuplicateRO(CRenderObject* pObj, const SRenderingPassInfo& passInfo) = 0; - - // Summary: - // Adds shader to the list. - virtual void EF_AddEf (IRenderElement* pRE, SShaderItem& pSH, CRenderObject* pObj, const SRenderingPassInfo& passInfo, int nList, int nAW, const SRendItemSorter& rendItemSorter) = 0; - - //! Draw all shaded REs in the list - virtual void EF_EndEf3D (int nFlags, int nPrecacheUpdateId, int nNearPrecacheUpdateId, const SRenderingPassInfo& passInfo) = 0; - - virtual void EF_InvokeShadowMapRenderJobs(int nFlags) = 0; - - // Dynamic lights - void EF_ClearLightsList() {}; // For FC Compatibility. - virtual bool EF_IsFakeDLight (const CDLight* Source) = 0; - virtual void EF_ADDDlight(CDLight* Source, const SRenderingPassInfo& passInfo) = 0; - virtual bool EF_UpdateDLight(SRenderLight* pDL) = 0; - virtual bool EF_AddDeferredDecal([[maybe_unused]] const SDeferredDecal& rDecal){return true; } - - // Deferred lights/vis areas - - virtual int EF_AddDeferredLight(const CDLight& pLight, float fMult, const SRenderingPassInfo& passInfo, const SRendItemSorter& rendItemSorter) = 0; - virtual uint32 EF_GetDeferredLightsNum(eDeferredLightType eLightType = eDLT_DeferredLight) = 0; - virtual void EF_ClearDeferredLightsList() = 0; - - virtual uint8 EF_AddDeferredClipVolume(const IClipVolume* pClipVolume) = 0; - virtual bool EF_SetDeferredClipVolumeBlendData(const IClipVolume* pClipVolume, const SClipVolumeBlendInfo& blendInfo) = 0; - virtual void EF_ClearDeferredClipVolumesList() = 0; - - // called in between levels to free up memory - virtual void EF_ReleaseDeferredData() = 0; - - // called in between levels to free up memory - virtual void EF_ReleaseInputShaderResource(SInputShaderResources* pRes) = 0; - - ////////////////////////////////////////////////////////////////////////// - // Post processing effects interfaces - - virtual void EF_SetPostEffectParam(const char* pParam, float fValue, bool bForceValue = false) = 0; - virtual void EF_SetPostEffectParamVec4(const char* pParam, const Vec4& pValue, bool bForceValue = false) = 0; - virtual void EF_SetPostEffectParamString(const char* pParam, const char* pszArg) = 0; - - virtual void EF_GetPostEffectParam(const char* pParam, float& fValue) = 0; - virtual void EF_GetPostEffectParamVec4(const char* pParam, Vec4& pValue) = 0; - virtual void EF_GetPostEffectParamString(const char* pParam, const char*& pszArg) = 0; - - virtual int32 EF_GetPostEffectID(const char* pPostEffectName) = 0; - - virtual void EF_ResetPostEffects(bool bOnSpecChange = false) = 0; - - virtual void SyncPostEffects() = 0; - - virtual void EF_DisableTemporalEffects() = 0; - - ////////////////////////////////////////////////////////////////////////// - - virtual void EF_AddWaterSimHit(const Vec3& vPos, float scale, float strength) = 0; - virtual void EF_DrawWaterSimHits() = 0; - - ///////////////////////////////////////////////////////////////////////////////// - // 2d interface for the shaders - ///////////////////////////////////////////////////////////////////////////////// - virtual void EF_EndEf2D(bool bSort) = 0; - - // Summary: - // Returns various Renderer Settings, see ERenderQueryTypes. - // Arguments: - // Query - e.g. EFQ_GetShaderCombinations. - // rInOut - Input/Output Parameter, depends on the query if written to/read from, or both - void EF_Query(ERenderQueryTypes eQuery) - { - EF_QueryImpl(eQuery, NULL, 0, NULL, 0); - } - template - void EF_Query(ERenderQueryTypes eQuery, T& rInOut) - { - EF_QueryImpl(eQuery, static_cast(&rInOut), sizeof(T), NULL, 0); - } - template - void EF_Query(ERenderQueryTypes eQuery, T0& rInOut0, T1& rInOut1) - { - EF_QueryImpl(eQuery, static_cast(&rInOut0), sizeof(T0), static_cast(&rInOut1), sizeof(T1)); - } - - // Summary: - // Toggles render mesh garbage collection - // Arguments: - // Param - - virtual void ForceGC() = 0; - - // Remarks: - // For stats. - virtual int GetPolyCount() const = 0; - virtual void GetPolyCount(int& nPolygons, int& nShadowVolPolys) const = 0; - - // Note: - // 3d engine set this color to fog color. - virtual void SetClearColor(const Vec3& vColor) = 0; - - virtual void SetClearBackground(bool bClearBackground) = 0; - - // Summary: - // Creates/deletes RenderMesh object. - virtual _smart_ptr CreateRenderMesh( - const char* szType - , const char* szSourceName - , IRenderMesh::SInitParamerers* pInitParams = NULL - , ERenderMeshType eBufType = eRMT_Static - ) = 0; - - virtual _smart_ptr CreateRenderMeshInitialized( - const void* pVertBuffer, int nVertCount, const AZ::Vertex::Format& vertexFormat, - const vtx_idx* pIndices, int nIndices, - const PublicRenderPrimitiveType nPrimetiveType, const char* szType, const char* szSourceName, ERenderMeshType eBufType = eRMT_Static, - int nMatInfoCount = 1, int nClientTextureBindID = 0, - bool (* PrepareBufferCallback)(IRenderMesh*, bool) = NULL, - void* CustomData = NULL, - bool bOnlyVideoBuffer = false, - bool bPrecache = true, - const SPipTangents* pTangents = NULL, bool bLockForThreadAcc = false, Vec3* pNormals = NULL) = 0; - - //Pass false to get a frameID that increments by one each frame. For this case the increment happens in the game thread at the beginning of the frame. - virtual int GetFrameID(bool bIncludeRecursiveCalls = true) = 0; - - virtual void MakeMatrix(const Vec3& pos, const Vec3& angles, const Vec3& scale, Matrix34* mat) = 0; - - // Description: - // Draws text queued. - // Note: - // Position can be in 3d or in 2d depending on the flags. - virtual void DrawTextQueued(Vec3 pos, SDrawTextInfo& ti, const char* format, va_list args) = 0; - - // Description: - // Draws text queued. - // Note: - // Position can be in 3d or in 2d depending on the flags. - virtual void DrawTextQueued(Vec3 pos, SDrawTextInfo& ti, const char* text) = 0; - - ////////////////////////////////////////////////////////////////////// - - virtual float ScaleCoordX(float value) const = 0; - virtual float ScaleCoordY(float value) const = 0; - virtual void ScaleCoord(float& x, float& y) const = 0; - - virtual void SetState(int State, int AlphaRef = -1) = 0; - virtual void SetCullMode (int mode = R_CULL_BACK) = 0; - virtual void SetStencilState(int st, uint32 nStencRef, uint32 nStencMask, uint32 nStencWriteMask, bool bForceFullReadMask = false) = 0; - - virtual void PushProfileMarker(const char* label) = 0; - virtual void PopProfileMarker(const char* label) = 0; - - virtual bool EnableFog(bool enable) = 0; - virtual void SetFogColor(const ColorF& color) = 0; - - virtual void SetColorOp(byte eCo, byte eAo, byte eCa, byte eAa) = 0; - virtual void SetSrgbWrite(bool srgbWrite) = 0; - - // for one frame allows to disable limit of texture streaming requests - virtual void RequestFlushAllPendingTextureStreamingJobs([[maybe_unused]] int nFrames) { } - - // allows to dynamically adjust texture streaming load depending on game conditions - virtual void SetTexturesStreamingGlobalMipFactor([[maybe_unused]] float fFactor) { } - - ////////////////////////////////////////////////////////////////////// - // Summary: - // Interface for auxiliary geometry (for debugging, editor purposes, etc.) - virtual IRenderAuxGeom* GetIRenderAuxGeom(void* jobID = 0) = 0; - ////////////////////////////////////////////////////////////////////// - - // Interface for renderer side SVO - virtual ISvoRenderer* GetISvoRenderer() { return 0; } - - virtual IColorGradingController* GetIColorGradingController() = 0; - virtual IStereoRenderer* GetIStereoRenderer() = 0; - - virtual ITexture* Create2DTexture(const char* name, int width, int height, int numMips, int flags, unsigned char* data, ETEX_Format format) = 0; - virtual void TextToScreen(float x, float y, const char* format, ...) PRINTF_PARAMS(4, 5) = 0; - virtual void TextToScreenColor(int x, int y, float r, float g, float b, float a, const char* format, ...) PRINTF_PARAMS(8, 9) = 0; - virtual void ResetToDefault() = 0; - virtual void SetMaterialColor(float r, float g, float b, float a) = 0; - - // Sets default Blend, DepthStencil and Raster states. - virtual void SetDefaultRenderStates() = 0; - - virtual void Graph(byte* g, int x, int y, int wdt, int hgt, int nC, int type, const char* text, ColorF& color, float fScale) = 0; - virtual void EF_RenderTextMessages() = 0; - - virtual void ClearTargetsImmediately(uint32 nFlags) = 0; - virtual void ClearTargetsImmediately(uint32 nFlags, const ColorF& Colors, float fDepth) = 0; - virtual void ClearTargetsImmediately(uint32 nFlags, const ColorF& Colors) = 0; - virtual void ClearTargetsImmediately(uint32 nFlags, float fDepth) = 0; - - virtual void ClearTargetsLater(uint32 nFlags) = 0; - virtual void ClearTargetsLater(uint32 nFlags, const ColorF& Colors, float fDepth) = 0; - virtual void ClearTargetsLater(uint32 nFlags, const ColorF& Colors) = 0; - virtual void ClearTargetsLater(uint32 nFlags, float fDepth) = 0; - - virtual void ReadFrameBuffer(unsigned char* pRGB, int nImageX, int nSizeX, int nSizeY, ERB_Type eRBType, bool bRGBA, int nScaledX = -1, int nScaledY = -1) = 0; - virtual void ReadFrameBufferFast(uint32* pDstARGBA8, int dstWidth, int dstHeight, bool BGRA = true) = 0; - - // Note: - // The following functions will be removed. - virtual void EnableVSync(bool enable) = 0; - - virtual void CreateResourceAsync(SResourceAsync* Resource) = 0; - virtual void ReleaseResourceAsync(SResourceAsync* Resource) = 0; - virtual void ReleaseResourceAsync(AZStd::unique_ptr pResource) = 0; - virtual unsigned int DownLoadToVideoMemory(const byte* data, int w, int h, ETEX_Format eTFSrc, ETEX_Format eTFDst, int nummipmap, bool repeat = true, int filter = FILTER_BILINEAR, int Id = 0, const char* szCacheName = NULL, int flags = 0, EEndian eEndian = eLittleEndian, RectI* pRegion = NULL, bool bAsynDevTexCreation = false) = 0; - virtual unsigned int DownLoadToVideoMemory3D(const byte* data, int w, int h, int d, ETEX_Format eTFSrc, ETEX_Format eTFDst, int nummipmap, bool repeat = true, int filter = FILTER_BILINEAR, int Id = 0, const char* szCacheName = NULL, int flags = 0, EEndian eEndian = eLittleEndian, RectI* pRegion = NULL, bool bAsynDevTexCreation = false) = 0; - virtual unsigned int DownLoadToVideoMemoryCube(const byte* data, int w, int h, ETEX_Format eTFSrc, ETEX_Format eTFDst, int nummipmap, bool repeat = true, int filter = FILTER_BILINEAR, int Id = 0, const char* szCacheName = NULL, int flags = 0, EEndian eEndian = eLittleEndian, RectI* pRegion = NULL, bool bAsynDevTexCreation = false) = 0; - virtual void UpdateTextureInVideoMemory(uint32 tnum, const byte* newdata, int posx, int posy, int w, int h, ETEX_Format eTFSrc = eTF_B8G8R8, int posz = 0, int sizez = 1) = 0; - - virtual bool DXTCompress(const byte* raw_data, int nWidth, int nHeight, ETEX_Format eTF, bool bUseHW, bool bGenMips, int nSrcBytesPerPix, MIPDXTcallback callback) = 0; - virtual bool DXTDecompress(const byte* srcData, size_t srcFileSize, byte* dstData, int nWidth, int nHeight, int nMips, ETEX_Format eSrcTF, bool bUseHW, int nDstBytesPerPix) = 0; - virtual void RemoveTexture(unsigned int TextureId) = 0; - virtual void DeleteFont(IFFont* font) = 0; - - ///////////////////////////////////////////////////////////////////////////////////////////////////// - // This routines uses 2 destination surfaces. It triggers a backbuffer copy to one of its surfaces, - // and then copies the other surface to system memory. This hopefully will remove any - // CPU stalls due to the rect lock call since the buffer will already be in system - // memory when it is called - // Inputs : - // pDstARGBA8 : Pointer to a buffer that will hold the captured frame (should be at least 4*dstWidth*dstHieght for RGBA surface) - // destinationWidth : Width of the frame to copy - // destinationHeight : Height of the frame to copy - // - // Note : If dstWidth or dstHeight is larger than the current surface dimensions, the dimensions - // of the surface are used for the copy - // - virtual bool CaptureFrameBufferFast(unsigned char* pDstRGBA8, int destinationWidth, int destinationHeight) = 0; - - - ///////////////////////////////////////////////////////////////////////////////////////////////////// - // Copy a captured surface to a buffer - // - // Inputs : - // pDstARGBA8 : Pointer to a buffer that will hold the captured frame (should be at least 4*dstWidth*dstHieght for RGBA surface) - // destinationWidth : Width of the frame to copy - // destinationHeight : Height of the frame to copy - // - // Note : If dstWidth or dstHeight is larger than the current surface dimensions, the dimensions - // of the surface are used for the copy - // - virtual bool CopyFrameBufferFast(unsigned char* pDstRGBA8, int destinationWidth, int destinationHeight) = 0; - - - - ///////////////////////////////////////////////////////////////////////////////////////////////////// - // This routine registers a callback address that is called when a new frame is available - // Inputs : - // pCapture : Address of the ICaptureFrameListener object - // - // Outputs : returns true if successful, otherwise false - // - virtual bool RegisterCaptureFrame(ICaptureFrameListener* pCapture) = 0; - - ///////////////////////////////////////////////////////////////////////////////////////////////////// - // This routine unregisters a callback address that was previously registered - // Inputs : - // pCapture : Address of the ICaptureFrameListener object to unregister - // - // Outputs : returns true if successful, otherwise false - // - virtual bool UnRegisterCaptureFrame(ICaptureFrameListener* pCapture) = 0; - - - ///////////////////////////////////////////////////////////////////////////////////////////////////// - // This routine initializes 2 destination surfaces for use by the CaptureFrameBufferFast routine - // It also, captures the current backbuffer into one of the created surfaces - // - // Inputs : - // bufferWidth : Width of capture buffer, on consoles the scaling is done on the GPU. Pass in 0 (the default) to use backbuffer dimensions - // bufferHeight : Height of capture buffer. - // - // Outputs : returns true if surfaces were created otherwise returns false - // - virtual bool InitCaptureFrameBufferFast(uint32 bufferWidth = 0, uint32 bufferHeight = 0) = 0; - - ///////////////////////////////////////////////////////////////////////////////////////////////////// - // This routine releases the 2 surfaces used for frame capture by the CaptureFrameBufferFast routine - // - // Inputs : None - // - // Returns : None - // - virtual void CloseCaptureFrameBufferFast(void) = 0; - - - ///////////////////////////////////////////////////////////////////////////////////////////////////// - // This routine checks for any frame buffer callbacks that are needed and calls them - // - // Inputs : None - // - // Outputs : None - // - virtual void CaptureFrameBufferCallBack(void) = 0; - - virtual void RegisterSyncWithMainListener(ISyncMainWithRenderListener* pListener) = 0; - virtual void RemoveSyncWithMainListener(const ISyncMainWithRenderListener* pListener) = 0; - - virtual void Set2DMode(uint32 orthoX, uint32 orthoY, TransformationMatrices& backupMatrices, float znear = -1e10f, float zfar = 1e10f) = 0; - virtual void Unset2DMode(const TransformationMatrices& restoringMatrices) = 0; - virtual void Set2DModeNonZeroTopLeft(float orthoLeft, float orthoTop, float orthoWidth, float orthoHeight, TransformationMatrices& backupMatrices, float znear = -1e10f, float zfar = 1e10f) = 0; - - virtual int ScreenToTexture(int nTexID) = 0; - virtual void EnableSwapBuffers(bool bEnable) = 0; - virtual WIN_HWND GetHWND() = 0; - - // Set the window icon to be displayed on the output window. - // The parameter is the path to a DDS texture file to be used as the icon. - // For best results, pass a square power-of-two sized texture, with a mip-chain. - virtual bool SetWindowIcon(const char* path) = 0; - - virtual void OnEntityDeleted(struct IRenderNode* pRenderNode) = 0; - - virtual int CreateRenderTarget(const char* name, int nWidth, int nHeight, const ColorF& clearColor, ETEX_Format eTF) = 0; - virtual bool DestroyRenderTarget (int nHandle) = 0; - virtual bool ResizeRenderTarget(int nHandle, int nWidth, int nHeight) = 0; - virtual bool SetRenderTarget(int nHandle, SDepthTexture* pDepthSurf = nullptr) = 0; - virtual SDepthTexture* CreateDepthSurface(int nWidth, int nHeight, bool shaderResourceView = false) = 0; - virtual void DestroyDepthSurface(SDepthTexture* pDepthSurf) = 0; - - // Note: - // Used for pausing timer related stuff. - // Example: - // For texture animations, and shader 'time' parameter. - virtual void PauseTimer(bool bPause) = 0; - - // Description: - // Creates an Interface to the public params container. - // Return: - // Created IShaderPublicParams interface. - virtual IShaderPublicParams* CreateShaderPublicParams() = 0; - - virtual void GetThreadIDs(threadID& mainThreadID, threadID& renderThreadID) const = 0; - - struct SArtProfileData - { - enum EArtProfileUnit - { - eArtProfileUnit_GPU = 0, - eArtProfileUnit_CPU, - eArtProfile_NumUnits - }; - - enum EArtProfileSections - { - eArtProfile_Shadows = 0, - eArtProfile_ZPass, - eArtProfile_Decals, - eArtProfile_Lighting, - eArtProfile_Opaque, - eArtProfile_Transparent, - eArtProfile_Max, - }; - - float times[eArtProfile_Max]; - float budgets[eArtProfile_Max]; - float total, budgetTotal; - - // detailed values for anything that is grouped together and can be timed - enum EBreakdownDetailValues - { - // Lighting - eArtProfileDetail_LightsAmbient, - eArtProfileDetail_LightsCubemaps, - eArtProfileDetail_LightsDeferred, - eArtProfileDetail_LightsShadowMaps, // just the cost of the shadow maps - - // Transparent - eArtProfileDetail_Reflections, - eArtProfileDetail_Caustics, - eArtProfileDetail_RefractionOverhead, // partial resolves - eArtProfileDetail_Rain, - eArtProfileDetail_LensOptics, - - eArtProfileDetail_Max, - }; - - float breakdowns[eArtProfileDetail_Max]; - - int batches, drawcalls, processedLights; - -#if defined(ENABLE_ART_RT_TIME_ESTIMATE) - int numStandardBatches; - int numStandardDrawCalls; - int numLightDrawCalls; - float actualRenderTimeMinusPost; - float actualRenderTimePost; - float actualMiscRTTime; - float actualTotalRTTime; -#endif - }; - - virtual void EnableGPUTimers2(bool bEnabled) = 0; - virtual void AllowGPUTimers2(bool bAllow) = 0; - virtual const RPProfilerStats* GetRPPStats(ERenderPipelineProfilerStats eStat, bool bCalledFromMainThread = true) const = 0; - virtual const RPProfilerStats* GetRPPStatsArray(bool bCalledFromMainThread = true) const = 0; - - virtual int GetPolygonCountByType(uint32 EFSList, EVertexCostTypes vct, uint32 z, bool bCalledFromMainThread = true) = 0; - - virtual void SetCloudShadowsParams(int nTexID, const Vec3& speed, float tiling, bool invert, float brightness) = 0; - virtual uint16 PushFogVolumeContribution(const SFogVolumeData& fogVolData, const SRenderingPassInfo& passInfo) = 0; - virtual void PushFogVolume(class CREFogVolume* pFogVolume, const SRenderingPassInfo& passInfo) = 0; - - virtual int GetMaxTextureSize() = 0; - - virtual const char* GetTextureFormatName(ETEX_Format eTF) = 0; - virtual int GetTextureFormatDataSize(int nWidth, int nHeight, int nDepth, int nMips, ETEX_Format eTF) = 0; - - virtual void SetDefaultMaterials(_smart_ptr pDefMat, _smart_ptr pTerrainDefMat) = 0; - - virtual IGPUParticleEngine* GetGPUParticleEngine() const { return 0; } - - virtual uint32 GetActiveGPUCount() const = 0; - virtual ShadowFrustumMGPUCache* GetShadowFrustumMGPUCache() = 0; - virtual const StaticArray& GetCachedShadowsResolution() const = 0; - virtual void SetCachedShadowsResolution(const StaticArray& arrResolutions) = 0; - virtual void UpdateCachedShadowsLodCount(int nGsmLods) const = 0; - - virtual void SetTexturePrecaching(bool stat) = 0; - - //platform specific - virtual void RT_InsertGpuCallback(uint32 context, GpuCallbackFunc callback) = 0; - virtual void EnablePipelineProfiler(bool bEnable) = 0; - - struct SRenderTimes - { - float fWaitForMain; - float fWaitForRender; - float fWaitForGPU; - float fTimeProcessedRT; - float fTimeProcessedRTScene; //The part of the render thread between the "SCENE" profiler labels - float fTimeProcessedGPU; - float fTimeGPUIdlePercent; - }; - virtual void GetRenderTimes(SRenderTimes& outTimes) = 0; - virtual float GetGPUFrameTime() = 0; - - // Enable the batch mode if the meshpools are used to enable quick and dirty flushes. - virtual void EnableBatchMode(bool enable) = 0; - // Flag level unloading in progress to disable f.i. rendermesh creation requests - virtual void EnableLevelUnloading(bool enable) = 0; - // Function to handle cleanup required if a level load fails - virtual void OnLevelLoadFailed() = 0; - - struct SDrawCallCountInfo - { - static const uint32 MESH_NAME_LENGTH = 32; - static const uint32 TYPE_NAME_LENGTH = 16; - - SDrawCallCountInfo() - : pPos(0, 0, 0) - , nZpass(0) - , nShadows(0) - , nGeneral(0) - , nTransparent(0) - , nMisc(0) - { - meshName[0] = '\0'; - typeName[0] = '\0'; - } - - void Update(CRenderObject* pObj, IRenderMesh* pRM); - - Vec3 pPos; - uint8 nZpass, nShadows, nGeneral, nTransparent, nMisc; - char meshName[MESH_NAME_LENGTH]; - char typeName[TYPE_NAME_LENGTH]; - }; - - //Debug draw call info (per node) - typedef AZStd::unordered_map< IRenderNode*, IRenderer::SDrawCallCountInfo, AZStd::hash, AZStd::equal_to, AZ::StdLegacyAllocator > RNDrawcallsMapNode; - typedef RNDrawcallsMapNode::iterator RNDrawcallsMapNodeItor; - - //Debug draw call info (per mesh) - typedef AZStd::unordered_map< IRenderMesh*, IRenderer::SDrawCallCountInfo, AZStd::hash, AZStd::equal_to, AZ::StdLegacyAllocator > RNDrawcallsMapMesh; - typedef RNDrawcallsMapMesh::iterator RNDrawcallsMapMeshItor; - -#if !defined(_RELEASE) - //Get draw call info for frame - virtual RNDrawcallsMapMesh& GetDrawCallsInfoPerMesh(bool mainThread = true) = 0; - virtual RNDrawcallsMapMesh& GetDrawCallsInfoPerMeshPreviousFrame(bool mainThread = true) = 0; - virtual RNDrawcallsMapNode& GetDrawCallsInfoPerNodePreviousFrame(bool mainThread = true) = 0; - virtual int GetDrawCallsPerNode(IRenderNode* pRenderNode) = 0; - virtual void ForceRemoveNodeFromDrawCallsMap(IRenderNode* pNode) = 0; -#endif - - virtual void CollectDrawCallsInfo(bool status) = 0; - virtual void CollectDrawCallsInfoPerNode(bool status) = 0; - - ////////////////////////////////////////////////////////////////////////// - // Summary: - // Helper functions to draw text. - ////////////////////////////////////////////////////////////////////////// - void DrawLabel(Vec3 pos, float font_size, const char* label_text, ...) PRINTF_PARAMS(4, 5) - { - va_list args; - va_start(args, label_text); - SDrawTextInfo ti; - ti.xscale = ti.yscale = font_size; - ti.flags = eDrawText_FixedSize | eDrawText_800x600; - DrawTextQueued(pos, ti, label_text, args); - va_end(args); - } - - void DrawLabelEx(Vec3 pos, float font_size, const float* pfColor, bool bFixedSize, bool bCenter, const char* label_text, ...) PRINTF_PARAMS(7, 8) - { - va_list args; - va_start(args, label_text); - SDrawTextInfo ti; - ti.xscale = ti.yscale = font_size; - ti.flags = ((bFixedSize) ? eDrawText_FixedSize : 0) | ((bCenter) ? eDrawText_Center : 0) | eDrawText_800x600; - if (pfColor) - { - ti.color[0] = pfColor[0]; - ti.color[1] = pfColor[1]; - ti.color[2] = pfColor[2]; - ti.color[3] = pfColor[3]; - } - DrawTextQueued(pos, ti, label_text, args); - va_end(args); - } - - void Draw2dLabelEx(float x, float y, float font_size, const ColorF& fColor, EDrawTextFlags flags, const char* label_text, ...) PRINTF_PARAMS(7, 8) - { - va_list args; - va_start(args, label_text); - SDrawTextInfo ti; - ti.xscale = ti.yscale = font_size; - ti.flags = flags; - { - ti.color[0] = fColor[0]; - ti.color[1] = fColor[1]; - ti.color[2] = fColor[2]; - ti.color[3] = fColor[3]; - } - DrawTextQueued(Vec3(x, y, 0.5f), ti, label_text, args); - va_end(args); - } - - void Draw2dLabel(float x, float y, float font_size, const float* pfColor, bool bCenter, const char* label_text, ...) PRINTF_PARAMS(7, 8) - { - va_list args; - va_start(args, label_text); - SDrawTextInfo ti; - ti.xscale = ti.yscale = font_size; - ti.flags = eDrawText_2D | eDrawText_800x600 | eDrawText_FixedSize | ((bCenter) ? eDrawText_Center : 0); - if (pfColor) - { - ti.color[0] = pfColor[0]; - ti.color[1] = pfColor[1]; - ti.color[2] = pfColor[2]; - ti.color[3] = pfColor[3]; - } - DrawTextQueued(Vec3(x, y, 0.5f), ti, label_text, args); - va_end(args); - } - - void Draw2dLabel(float x, float y, float font_size, const ColorF& fColor, bool bCenter, const char* label_text, ...) PRINTF_PARAMS(7, 8) - { - va_list args; - va_start(args, label_text); - SDrawTextInfo ti; - ti.xscale = ti.yscale = font_size; - ti.flags = eDrawText_2D | eDrawText_800x600 | eDrawText_FixedSize | ((bCenter) ? eDrawText_Center : 0); - { - ti.color[0] = fColor[0]; - ti.color[1] = fColor[1]; - ti.color[2] = fColor[2]; - ti.color[3] = fColor[3]; - } - DrawTextQueued(Vec3(x, y, 0.5f), ti, label_text, args); - va_end(args); - } - - // BLM - Added override that takes flags manually, so we can draw monospaced, etc. - void Draw2dLabelWithFlags(float x, float y, float font_size, const ColorF& fColor, uint32 flags, const char* label_text, ...) PRINTF_PARAMS(7, 8) - { - va_list args; - va_start(args, label_text); - SDrawTextInfo ti; - ti.xscale = ti.yscale = font_size; - ti.flags = flags; - { - ti.color[0] = fColor[0]; - ti.color[1] = fColor[1]; - ti.color[2] = fColor[2]; - ti.color[3] = fColor[3]; - } - DrawTextQueued(Vec3(x, y, 0.5f), ti, label_text, args); - va_end(args); - } - - /** - * Used to determine if the renderer has loaded default system - * textures yet. - * - * Some textures like s_ptexWhite aren't available until this is true. - * - * @return True if the renderer has loaded default resources - */ - virtual bool HasLoadedDefaultResources() { return false; } - - // Summary: - virtual SSkinningData* EF_CreateSkinningData(uint32 nNumBones, bool bNeedJobSyncVar, bool bUseMatrixSkinning = false) = 0; - virtual SSkinningData* EF_CreateRemappedSkinningData(uint32 nNumBones, SSkinningData* pSourceSkinningData, uint32 nCustomDataSize, uint32 pairGuid) = 0; - virtual void EF_ClearSkinningDataPool() = 0; - virtual int EF_GetSkinningPoolID() = 0; - - virtual void ClearShaderItem(SShaderItem* pShaderItem) = 0; - virtual void UpdateShaderItem(SShaderItem* pShaderItem, _smart_ptr pMaterial) = 0; - virtual void ForceUpdateShaderItem(SShaderItem* pShaderItem, _smart_ptr pMaterial) = 0; - virtual void RefreshShaderResourceConstants(SShaderItem* pShaderItem, IMaterial* pMaterial) = 0; - - // Summary: - // Determine if a switch to stereo mode will occur at the start of the next frame - virtual bool IsStereoModeChangePending() = 0; - - // Summary: - // Lock/Unlock the video memory buffer used by particles when using the jobsystem - virtual void LockParticleVideoMemory(uint32 nId) = 0; - virtual void UnLockParticleVideoMemory(uint32 nId) = 0; - - // Summary: - // tell the renderer that we will begin/stop spawning jobs which generate SRendItems - virtual void BeginSpawningGeneratingRendItemJobs(int nThreadID) = 0; - virtual void BeginSpawningShadowGeneratingRendItemJobs(int nThreadID) = 0; - virtual void EndSpawningGeneratingRendItemJobs() = 0; - - virtual void StartLoadtimePlayback(ILoadtimeCallback* pCallback) = 0; - virtual void StopLoadtimePlayback() = 0; - - // Summary: - // get the shared job state for SRendItem Generating jobs - virtual AZ::LegacyJobExecutor* GetGenerateRendItemJobExecutor() = 0; - virtual AZ::LegacyJobExecutor* GetGenerateShadowRendItemJobExecutor() = 0; - virtual AZ::LegacyJobExecutor* GetGenerateRendItemJobExecutorPreProcess() = 0; - virtual AZ::LegacyJobExecutor* GetFinalizeRendItemJobExecutor(int nThreadID) = 0; - virtual AZ::LegacyJobExecutor* GetFinalizeShadowRendItemJobExecutor(int nThreadID) = 0; - - virtual void FlushPendingTextureTasks() = 0; - - virtual void SetShadowJittering(float fShadowJittering) = 0; - virtual float GetShadowJittering() const = 0; - - virtual bool LoadShaderStartupCache() = 0; - virtual void UnloadShaderStartupCache() = 0; - - virtual bool LoadShaderLevelCache() = 0; - virtual void UnloadShaderLevelCache() = 0; - - virtual void StartScreenShot([[maybe_unused]] int e_ScreenShot) {}; - virtual void EndScreenShot([[maybe_unused]] int e_ScreenShot) {}; - - // Sets a renderer tracked cvar - virtual void SetRendererCVar(ICVar* pCVar, const char* pArgText, bool bSilentMode = false) = 0; - - // Get the render piepline - virtual SRenderPipeline* GetRenderPipeline() = 0; - - // Get the sahder manager - virtual CShaderMan* GetShaderManager() = 0; - - // Get render thread - virtual SRenderThread* GetRenderThread() = 0; - - // Get premade white texture - virtual ITexture* GetWhiteTexture() = 0; - - // Get the texture for the name and format given - virtual ITexture* GetTextureForName(const char* name, uint32 nFlags, ETEX_Format eFormat) = 0; - - // Get the camera view parameters - virtual const CameraViewParameters& GetViewParameters() = 0; - - // Get frame reset number - virtual uint32 GetFrameReset() = 0; - - // Get original depth buffer - virtual SDepthTexture* GetDepthBufferOrig() = 0; - - // Get width of backbuffer - virtual uint32 GetBackBufferWidth() = 0; - - // Get height of backbuffer - virtual uint32 GetBackBufferHeight() = 0; - - // Get the device buffer manager - virtual CDeviceBufferManager* GetDeviceBufferManager() = 0; - - // Get render tile info - virtual const SRenderTileInfo* GetRenderTileInfo() const = 0; - - // Returns precomputed identity matrix - virtual Matrix44A GetIdentityMatrix() = 0; - - // Get current GPU group Id. Used for tracking which GPU is being used - virtual int32 RT_GetCurrGpuID() const = 0; - - // Generate the next texture id - virtual int GenerateTextureId() = 0; - - // Set culling mode - virtual void SetCull(ECull eCull, bool bSkipMirrorCull = false) = 0; - - // Draw a 2D quad - virtual void DrawQuad(float x0, float y0, float x1, float y1, const ColorF& color, float z = 1.0f, float s0 = 0.0f, float t0 = 0.0f, float s1 = 1.0f, float t1 = 1.0f) = 0; - - // Draw a quad - virtual void DrawQuad3D(const Vec3& v0, const Vec3& v1, const Vec3& v2, const Vec3& v3, const ColorF& color, float ftx0, float fty0, float ftx1, float fty1) = 0; - - // Resets render pipeline state - virtual void FX_ResetPipe() = 0; - - // Gets an (existing) depth surface of the dimensions given - virtual SDepthTexture* FX_GetDepthSurface(int nWidth, int nHeight, bool bAA, bool shaderResourceView = false) = 0; - - // Check to see if buffers are full and if so flush - virtual void FX_CheckOverflow(int nVerts, int nInds, IRenderElement* re, int* nNewVerts = nullptr, int* nNewInds = nullptr) = 0; - - // Perform pre render work - virtual void FX_PreRender(int Stage) = 0; - - // Perform post render work - virtual void FX_PostRender() = 0; - - // Set render states - virtual void FX_SetState(int st, int AlphaRef = -1, int RestoreState = 0) = 0; - - // Commit render states - virtual void FX_CommitStates(const SShaderTechnique* pTech, const SShaderPass* pPass, bool bUseMaterialState) = 0; - - // Commit changes made thus dar - virtual void FX_Commit(bool bAllowDIP = false) = 0; - - // Sets vertex declaration - virtual long FX_SetVertexDeclaration(int StreamMask, const AZ::Vertex::Format& vertexFormat) = 0; - - // Draw indexed prim - virtual void FX_DrawIndexedPrimitive(eRenderPrimitiveType eType, int nVBOffset, int nMinVertexIndex, int nVerticesCount, int nStartIndex, int nNumIndices, bool bInstanced = false) = 0; - - // Set Index stream - virtual long FX_SetIStream(const void* pB, uint32 nOffs, RenderIndexType idxType) = 0; - - // Set vertex stream - virtual long FX_SetVStream(int nID, const void* pB, uint32 nOffs, uint32 nStride, uint32 nFreq = 1) = 0; - - // Draw primitives - virtual void FX_DrawPrimitive(eRenderPrimitiveType eType, int nStartVertex, int nVerticesCount, int nInstanceVertices = 0) = 0; - - // Clear texture - virtual void FX_ClearTarget(ITexture* pTex) = 0; - - // Clear depth - virtual void FX_ClearTarget(SDepthTexture* pTex) = 0; - - // Set render target - virtual bool FX_SetRenderTarget(int nTarget, void* pTargetSurf, SDepthTexture* pDepthTarget, uint32 nTileCount = 1) = 0; - - // Pushes render target - virtual bool FX_PushRenderTarget(int nTarget, void* pTargetSurf, SDepthTexture* pDepthTarget, uint32 nTileCount = 1) = 0; - - // Sets up the render target - virtual bool FX_SetRenderTarget(int nTarget, CTexture* pTarget, SDepthTexture* pDepthTarget, bool bPush = false, int nCMSide = -1, bool bScreenVP = false, uint32 nTileCount = 1) = 0; - - // Push render target - virtual bool FX_PushRenderTarget(int nTarget, CTexture* pTarget, SDepthTexture* pDepthTarget, int nCMSide = -1, bool bScreenVP = false, uint32 nTileCount = 1) = 0; - - // Restore render target - virtual bool FX_RestoreRenderTarget(int nTarget) = 0; - - // Pop render target - virtual bool FX_PopRenderTarget(int nTarget) = 0; - - // Set active render targets - virtual void FX_SetActiveRenderTargets(bool bAllowDIP = false) = 0; - - // Start an effect / shader / etc.. - virtual void FX_Start(CShader* ef, int nTech, CShaderResources* Res, IRenderElement* re) = 0; - - // Pop render target on render thread - virtual void RT_PopRenderTarget(int nTarget) = 0; - - // Sets viewport dimensions on render thread - virtual void RT_SetViewport(int x, int y, int width, int height, int id = -1) = 0; - - // Push render target on render thread - virtual void RT_PushRenderTarget(int nTarget, CTexture* pTex, SDepthTexture* pDS, int nS) = 0; - - // Setup scissors rect - virtual void EF_Scissor(bool bEnable, int sX, int sY, int sWdt, int sHgt) = 0; - -#ifdef SUPPORT_HW_MOUSE_CURSOR - virtual IHWMouseCursor* GetIHWMouseCursor() = 0; -#endif - - virtual int GetRecursionLevel() = 0; - - virtual int GetIntegerConfigurationValue(const char* varName, int defaultValue) = 0; - virtual float GetFloatConfigurationValue(const char* varName, float defaultValue) = 0; - virtual bool GetBooleanConfigurationValue(const char* varName, bool defaultValue) = 0; - - // Methods exposed to external libraries - virtual void ApplyDepthTextureState(int unit, int nFilter, bool clamp) = 0; - virtual ITexture* GetZTargetTexture() = 0; - virtual int GetTextureState(const STexState& TS) = 0; - virtual uint32 TextureDataSize(uint32 nWidth, uint32 nHeight, uint32 nDepth, uint32 nMips, uint32 nSlices, ETEX_Format eTF, ETEX_TileMode eTM = eTM_None) = 0; - virtual void ApplyForID(int nID, int nTUnit, int nTState, int nTexMaterialSlot, int nSUnit, bool useWhiteDefault) = 0; - virtual ITexture* Create3DTexture(const char* szName, int nWidth, int nHeight, int nDepth, int nMips, int nFlags, const byte* pData, ETEX_Format eTFSrc, ETEX_Format eTFDst) = 0; - virtual bool IsTextureExist(const ITexture* pTex) = 0; - virtual const char* NameForTextureFormat(ETEX_Format eTF) = 0; - virtual const char* NameForTextureType(ETEX_Type eTT) = 0; - virtual bool IsVideoThreadModeEnabled() = 0; - virtual IDynTexture* CreateDynTexture2(uint32 nWidth, uint32 nHeight, uint32 nTexFlags, const char* szSource, ETexPool eTexPool) = 0; - virtual uint32 GetCurrentTextureAtlasSize() = 0; - - virtual void BeginProfilerSection(const char* name, uint32 eProfileLabelFlags = 0) = 0; - virtual void EndProfilerSection(const char* name) = 0; - virtual void AddProfilerLabel(const char* name) = 0; - -private: - // use private for EF_Query to prevent client code to submit arbitrary combinations of output data/size - virtual void EF_QueryImpl(ERenderQueryTypes eQuery, void* pInOut0, uint32 nInOutSize0, void* pInOut1, uint32 nInOutSize1) = 0; -}; - -struct SShaderCacheStatistics -{ - size_t m_nTotalLevelShaderCacheMisses; - size_t m_nGlobalShaderCacheMisses; - size_t m_nNumShaderAsyncCompiles; - bool m_bShaderCompileActive; - - SShaderCacheStatistics() - : m_nTotalLevelShaderCacheMisses(0) - , m_nGlobalShaderCacheMisses(0) - , m_nNumShaderAsyncCompiles(0) - , m_bShaderCompileActive(false) - {} -}; - -// The statistics about the pool for render mesh data -// Note: -struct SMeshPoolStatistics -{ - // The size of the mesh data size in bytes - size_t nPoolSize; - - // The amount of memory currently in use in the pool - size_t nPoolInUse; - - // The highest amount of memory allocated within the mesh data pool - size_t nPoolInUsePeak; - - // The size of the mesh data size in bytes - size_t nInstancePoolSize; - - // The amount of memory currently in use in the pool - size_t nInstancePoolInUse; - - // The highest amount of memory allocated within the mesh data pool - size_t nInstancePoolInUsePeak; - - size_t nFallbacks; - size_t nInstanceFallbacks; - size_t nFlushes; - - SMeshPoolStatistics() - : nPoolSize() - , nPoolInUse() - , nInstancePoolSize() - , nInstancePoolInUse() - , nInstancePoolInUsePeak() - , nFallbacks() - , nInstanceFallbacks() - , nFlushes() - {} -}; - -struct SRendererQueryGetAllTexturesParam -{ - SRendererQueryGetAllTexturesParam() - : pTextures(NULL) - , numTextures(0) - { - } - - _smart_ptr* pTextures; - uint32 numTextures; -}; - - -////////////////////////////////////////////////////////////////////// - -#define STRIPTYPE_NONE 0 -#define STRIPTYPE_ONLYLISTS 1 -#define STRIPTYPE_SINGLESTRIP 2 -#define STRIPTYPE_MULTIPLESTRIPS 3 -#define STRIPTYPE_DEFAULT 4 - -///////////////////////////////////////////////////////////////////// - -struct IRenderMesh; - -//DOC-IGNORE-BEGIN -#include "VertexFormats.h" -//DOC-IGNORE-END - -struct SRestLightingInfo -{ - SRestLightingInfo() - { - averDir.zero(); - averCol = Col_Black; - refPoint.zero(); - } - Vec3 averDir; - ColorF averCol; - Vec3 refPoint; + SVF_P2F_C4B_T2F_F4B* m_vertices = nullptr; + uint16* m_indices = nullptr; + int m_numVertices = 0; + int m_numIndices = 0; }; +using DynUiPrimitiveList = AZStd::intrusive_slist>; class CLodValue { public: - CLodValue() - { - m_nLodA = -1; - m_nLodB = -1; - m_nDissolveRef = 0; - } + CLodValue() = default; CLodValue(int nLodA) { m_nLodA = aznumeric_caster(nLodA); - m_nLodB = -1; - m_nDissolveRef = 0; } CLodValue(int nLodA, uint8 nDissolveRef, int nLodB) @@ -2467,140 +218,7 @@ public: uint8 DissolveRefB() const { return 255 - m_nDissolveRef; } private: - int16 m_nLodA; - int16 m_nLodB; - uint8 m_nDissolveRef; -}; - -// Description: -// Structure used to pass render parameters to Render() functions of IStatObj and ICharInstance. -struct SRendParams -{ - SRendParams() - { - memset(this, 0, sizeof(SRendParams)); - fAlpha = 1.f; - fRenderQuality = 1.f; - nRenderList = EFSLIST_GENERAL; - nAfterWater = 1; - mRenderFirstContainer = false; - NoDecalReceiver = false; - } - - // Summary: - // object transformations. - Matrix34* pMatrix; - struct SInstancingInfo* pInstInfo; - // Summary: - // object previous transformations - motion blur specific. - Matrix34* pPrevMatrix; - // Summary: - // VisArea that contains this object, used for RAM-ambient cube query - IVisArea* m_pVisArea; - // Summary: - // Override material. - _smart_ptr pMaterial; - // Summary: - // Weights stream for deform morphs. - IRenderMesh* pWeights; - // Summary: - // Object Id for objects identification in renderer. - struct IRenderNode* pRenderNode; - // Summary: - // Unique object Id for objects identification in renderer. - void* pInstance; - // Summary: - // TerrainTexInfo for grass. - struct SSectorTextureSet* pTerrainTexInfo; - // Summary: - // storage for LOD transition states. - struct CRNTmpData** ppRNTmpData; - // Summary: - // dynamic render data object which can be set by the game - AZStd::vector* pShaderParams; - // Summary: - // Ambient color for the object. - ColorF AmbientColor; - // Summary: - // Custom sorting offset. - float fCustomSortOffset; - // Summary: - // Object alpha. - float fAlpha; - // Summary: - // Distance from camera. - float fDistance; - // Summary: - // Quality of shaders rendering. - float fRenderQuality; - // Summary: - // Light mask to specify which light to use on the object. - uint32 nDLightMask; - // Summary: - // Approximate information about the lights not included into nDLightMask. - // SRestLightingInfo restLightInfo; - // Summary: - // CRenderObject flags. - int32 dwFObjFlags; - // Summary: - // Material layers blending amount - uint32 nMaterialLayersBlend; - // Summary: - // Vision modes params - uint32 nVisionParams; - // Summary: - // Vision modes params - uint32 nHUDSilhouettesParams; - // Summary: - // Defines what pieces of pre-broken geometry has to be rendered - uint64 nSubObjHideMask; - - // Defines per object float custom data - float fCustomData[4]; - - // Custom TextureID - int16 nTextureID; - - // Defines per object custom flags - uint16 nCustomFlags; - - // The LOD value compute for rendering - CLodValue lodValue; - - // Defines per object custom data - uint8 nCustomData; - - // Summary: - // Defines per object DissolveRef value if used by shader. - uint8 nDissolveRef; - // Summary: - // per-instance vis area stencil ref id - uint8 nClipVolumeStencilRef; - // Summary: - // Custom offset for sorting by distance. - uint8 nAfterWater; - - // Summary: - // Material layers bitmask -> which material layers are active. - uint8 nMaterialLayers; - - // Summary: - // Force a sort value for render elements. - uint8 nRenderList; - // Summary: - // Special sorter to ensure correct ordering even if parts of the 3DEngine are run in parallel - uint32 rendItemSorter; - // Summary: - // Render the first particle container only, instead of all the containers - bool mRenderFirstContainer; - - // Summary: - // Check if the preview would Show Wireframe - Vera,Confetti - bool bIsShowWireframe; - - //Summary: - // Force drawing static instead of deformable meshes - bool bForceDrawStatic; - - bool NoDecalReceiver; + int16 m_nLodA = -1; + int16 m_nLodB = -1; + uint8 m_nDissolveRef = 0; }; diff --git a/Code/Legacy/CryCommon/ISerialize.h b/Code/Legacy/CryCommon/ISerialize.h index b153a52487..82ba9aef0d 100644 --- a/Code/Legacy/CryCommon/ISerialize.h +++ b/Code/Legacy/CryCommon/ISerialize.h @@ -17,7 +17,6 @@ #include #include #include "MiniQueue.h" -#include #include #include #include @@ -105,8 +104,6 @@ struct SNetObjectID } void GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer) const { /*nothing*/} - - AUTO_STRUCT_INFO }; // this enumeration details what "kind" of serialization we are @@ -154,8 +151,6 @@ private: ////////////////////////////////////////////////////////////////////////// struct SSerializeString { - AUTO_STRUCT_INFO - SSerializeString() {}; SSerializeString(const SSerializeString& src) { m_str.assign(src.c_str()); }; explicit SSerializeString(const char* sbegin, const char* send) @@ -571,8 +566,6 @@ public: CONTAINER_VALUE(std::list, push_back); CONTAINER_VALUE(std::set, insert); CONTAINER_VALUE(std::deque, push_back); - CONTAINER_VALUE(VectorSet, insert); - CONTAINER_VALUE(DynArray, insert); PAIR_CONTAINER_VALUE(std::list, push_back); PAIR_CONTAINER_VALUE(std::vector, push_back); diff --git a/Code/Legacy/CryCommon/IShader.h b/Code/Legacy/CryCommon/IShader.h index 6ae3bd73df..e9a00d3b76 100644 --- a/Code/Legacy/CryCommon/IShader.h +++ b/Code/Legacy/CryCommon/IShader.h @@ -6,163 +6,35 @@ * */ - // Description : Shaders common interface. - - -#ifndef CRYINCLUDE_CRYCOMMON_ISHADER_H -#define CRYINCLUDE_CRYCOMMON_ISHADER_H #pragma once - #if defined(LINUX) || defined(APPLE) #include #endif #include "smartptr.h" -#include "Cry_Vector2.h" #include "Cry_Vector3.h" -#include "Cry_Matrix33.h" #include "Cry_Color.h" -#include "smartptr.h" -#include // <> required for Interfuscator -#include "smartptr.h" #include "VertexFormats.h" #include -#include -#include - -#include "Cry_XOptimise.h" -#include -#include - -struct IMaterial; -class CRendElementBase; -class CRenderObject; -class CREMesh; -struct IRenderMesh; -struct IShader; -struct IVisArea; -class CShader; -class CRendElement; -class CRendElementBase; -class ITexAnim; -struct SShaderPass; -struct SShaderItem; -class ITexture; -struct IMaterial; -struct SParam; -struct SShaderSerializeContext; -struct IAnimNode; -struct SSkinningData; -struct SSTexSamplerFX; -struct SShaderTextureSlot; -struct IRenderElement; - -namespace AZ -{ - class LegacyJobExecutor; - - namespace Vertex - { - class Format; - } -} - -//================================================================ -// Summary: -// Geometry Culling type. -enum ECull -{ - eCULL_Back = 0, // Back culling flag. - eCULL_Front, // Front culling flag. - eCULL_None // No culling flag. -}; - -enum ERenderResource -{ - eRR_Unknown, - eRR_Mesh, - eRR_Texture, - eRR_Shader, - eRR_ShaderResource, -}; enum EEfResTextures : int // This needs a fixed size so the enum can be forward declared (needed by IMaterial.h) { EFTT_DIFFUSE = 0, EFTT_NORMALS, EFTT_SPECULAR, - EFTT_ENV, - EFTT_DETAIL_OVERLAY, - EFTT_SECOND_SMOOTHNESS, - EFTT_HEIGHT, - EFTT_DECAL_OVERLAY, - EFTT_SUBSURFACE, - EFTT_CUSTOM, - EFTT_CUSTOM_SECONDARY, EFTT_OPACITY, EFTT_SMOOTHNESS, EFTT_EMITTANCE, - EFTT_OCCLUSION, - EFTT_SPECULAR_2, - EFTT_MAX, EFTT_UNKNOWN = EFTT_MAX }; -enum EEfResSamplers -{ - EFSS_ANISO_HIGH = 0, - EFSS_ANISO_LOW, - EFSS_TRILINEAR, - EFSS_BILINEAR, - EFSS_TRILINEAR_CLAMP, - EFSS_BILINEAR_CLAMP, - EFSS_ANISO_HIGH_BORDER, - EFSS_TRILINEAR_BORDER, - - EFSS_MAX, -}; - -//========================================================================= - -// Summary: -// Array Pointers for Shaders. - -enum ESrcPointer -{ - eSrcPointer_Unknown, - eSrcPointer_Vert, - eSrcPointer_Color, - eSrcPointer_Tex, - eSrcPointer_TexLM, - eSrcPointer_Normal, - eSrcPointer_Tangent, - eSrcPointer_Max, -}; - -struct SWaveForm; -struct SWaveForm2; - -#define FRF_REFRACTIVE 1 -// FREE 2 -#define FRF_HEAT 4 -#define MAX_HEATSCALE 4 - #if !defined(MAX_JOINT_AMOUNT) #error MAX_JOINT_AMOUNT is not defined #endif -#if (MAX_JOINT_AMOUNT <= 256) -typedef uint8 JointIdType; -#else -typedef uint16 JointIdType; -#endif - -// The soft maximum cap for the sliders for emissive intensity. Also used to clamp legacy glow calculations in MaterialHelpers::MigrateXmlLegacyData. -// Note this is a "soft max" because the Emissive Intensity slider is capped at 200, but values higher than 200 may be entered in the text field. -#define EMISSIVE_INTENSITY_SOFT_MAX 200.0f //========================================================================= @@ -178,21 +50,14 @@ enum EParamType eType_STRING, eType_FCOLOR, eType_VECTOR, - eType_TEXTURE_HANDLE, - eType_CAMERA, - eType_FCOLORA, // with alpha channel }; -enum ESamplerType -{ - eSType_UNKNOWN, - eSType_Sampler, - eSType_SamplerComp, -}; +struct IShader; +class CCamera; union UParamVal { - byte m_Byte; + int8 m_Byte; bool m_Bool; short m_Short; int m_Int; @@ -203,2340 +68,20 @@ union UParamVal CCamera* m_pCamera; }; -// Note: -// In order to facilitate the memory allocation tracking, we're using here this class; -// if you don't like it, please write a substitute for all string within the project and use them everywhere. struct SShaderParam { AZStd::string m_Name; - AZStd::string m_Script; UParamVal m_Value; EParamType m_Type; - uint8 m_eSemantic; - uint8 m_Pad[3] = { 0 }; - - inline void Construct() - { - memset(&m_Value, 0, sizeof(m_Value)); - m_Type = eType_UNKNOWN; - m_eSemantic = 0; - m_Name.clear(); - m_Script.clear(); - } - inline SShaderParam() - { - Construct(); - } - size_t Size() - { - size_t nSize = sizeof(*this); - if (m_Type == eType_STRING) - { - nSize += strlen (m_Value.m_String) + 1; - } - - return nSize; - } - void GetMemoryUsage(ICrySizer* pSizer) const - { - pSizer->AddObject(m_Script); - if (m_Type == eType_STRING) - { - pSizer->AddObject(m_Value.m_String, strlen (m_Value.m_String) + 1); - } - } - - inline void Destroy() - { - if (m_Type == eType_STRING) - { - delete [] m_Value.m_String; - } - } - inline ~SShaderParam() - { - Destroy(); - } - inline SShaderParam (const SShaderParam& src) - { - m_Name = src.m_Name; - m_Script = src.m_Script; - m_Type = src.m_Type; - m_eSemantic = src.m_eSemantic; - if (m_Type == eType_STRING) - { - const size_t len = strlen(src.m_Value.m_String) + 1; - m_Value.m_String = new char[len]; - azstrcpy(m_Value.m_String, len, src.m_Value.m_String); - } - else - { - m_Value = src.m_Value; - } - } - inline SShaderParam& operator = (const SShaderParam& src) - { - this->~SShaderParam(); - new(this)SShaderParam(src); - return *this; - } - - static bool SetParam(const char* name, AZStd::vector* Params, const UParamVal& pr) - { - uint32 i; - for (i = 0; i < (uint32)Params->size(); i++) - { - SShaderParam* sp = &(*Params)[i]; - if (!sp || &sp->m_Value == &pr) - { - continue; - } - if (azstricmp(sp->m_Name.c_str(), name) == 0) - { - if (sp->m_Type == eType_STRING) - { - delete[] sp->m_Value.m_String; - } - - - switch (sp->m_Type) - { - case eType_FLOAT: - sp->m_Value.m_Float = pr.m_Float; - break; - case eType_SHORT: - sp->m_Value.m_Short = pr.m_Short; - break; - case eType_INT: - case eType_TEXTURE_HANDLE: - sp->m_Value.m_Int = pr.m_Int; - break; - - case eType_VECTOR: - sp->m_Value.m_Vector[0] = pr.m_Vector[0]; - sp->m_Value.m_Vector[1] = pr.m_Vector[1]; - sp->m_Value.m_Vector[2] = pr.m_Vector[2]; - break; - - case eType_FCOLOR: - case eType_FCOLORA: - sp->m_Value.m_Color[0] = pr.m_Color[0]; - sp->m_Value.m_Color[1] = pr.m_Color[1]; - sp->m_Value.m_Color[2] = pr.m_Color[2]; - sp->m_Value.m_Color[3] = pr.m_Color[3]; - break; - - case eType_STRING: - { - char* str = pr.m_String; - const size_t len = strlen(str) + 1; - sp->m_Value.m_String = new char [len]; - azstrcpy(sp->m_Value.m_String, len, str); - } - break; - } - break; - } - } - if (i == Params->size()) - { - return false; - } - return true; - } - static bool GetValue(const char* szName, AZStd::vector* Params, float* v, int nID); - - static bool GetValue(uint8 eSemantic, AZStd::vector* Params, float* v, int nID); - - inline void CopyValue(const SShaderParam& src) - { - if (m_Type == eType_STRING && this != &src) - { - delete[] m_Value.m_String; - - if (src.m_Type == eType_STRING) - { - size_t size = strlen(src.m_Value.m_String) + 1; - m_Value.m_String = new char[size]; - azstrcpy(m_Value.m_String, size, src.m_Value.m_String); - return; - } - } - - m_Value = src.m_Value; - } - - inline void CopyValueNoString(const SShaderParam& src) - { - assert(m_Type != eType_STRING && src.m_Type != eType_STRING); - - m_Value = src.m_Value; - } - - inline void CopyType(const SShaderParam& src) - { - m_Type = src.m_Type; - } }; - -// Description: -// IShaderPublicParams can be used to hold a collection of the shader public params. -// Manipulate this collection, and use them during rendering by submit to the SRendParams. -struct IShaderPublicParams -{ - // - virtual ~IShaderPublicParams(){} - virtual void AddRef() = 0; - virtual void Release() = 0; - - // Description: - // Changes number of parameters in collection. - virtual void SetParamCount(int nParam) = 0; - - // Description: - // Retrieves number of parameters in collection. - virtual int GetParamCount() const = 0; - - // Description: - // Retrieves shader public parameter at specified index of the collection. - virtual SShaderParam& GetParam(int nIndex) = 0; - virtual const SShaderParam& GetParam(int nIndex) const = 0; - - // Description: - // Retrieves shader public parameter at specified index of the collection. - virtual SShaderParam* GetParamByName(const char* pszName) = 0; - virtual const SShaderParam* GetParamByName(const char* pszName) const = 0; - - virtual SShaderParam* GetParamBySemantic(uint8 eParamSemantic) = 0; - virtual const SShaderParam* GetParamBySemantic(uint8 eParamSemantic) const = 0; - - // Description: - // Sets a shader parameter (and if doesn't exists, add it to the parameters list). - virtual void SetParam(const char* pszName, UParamVal& pParam, EParamType nType = eType_FLOAT, uint8 eSemantic = 0) = 0; - - // Description: - // Assigns shader public parameter at specified index of the collection. - virtual void SetParam(int nIndex, const SShaderParam& param) = 0; - - // Description: - // Assigns existing shader parameters list. - virtual void SetShaderParams(const AZStd::vector& pParams) = 0; - - // Description: - // Adds a new shader public parameter at the end of the collection. - virtual void AddParam(const SShaderParam& param) = 0; - - // Description: - // Removes a shader public parameter - virtual void RemoveParamByName(const char* pszName) = 0; - virtual void RemoveParamBySemantic(uint8 eParamSemantic) = 0; - - // Description: - // Assigns collection of shader public parameters to the specified render params structure. - virtual void AssignToRenderParams(struct SRendParams& rParams) = 0; - - virtual uint8 GetSemanticByName(const char* pszName) = 0; - - // Description: - // Gets shader parameters. - virtual AZStd::vector* GetShaderParams() = 0; - virtual const AZStd::vector* GetShaderParams() const = 0; - // -}; - -//================================================================================= - -class CInputLightMaterial -{ -public: - CInputLightMaterial() - : m_Diffuse(0, 0, 0, 0) - , m_Specular(0, 0, 0, 0) - , m_Emittance(1, 1, 1, 0) - , m_Opacity(0) - , m_Smoothness(0) - { - // memset() - for (int i = 0; i < EFTT_MAX; i++) - { - m_Channels[i][0] = 0.0f, - m_Channels[i][1] = 1.0f; - } - } - - // scale & bias - ColorF m_Channels[EFTT_MAX][2]; - - // TODO: these will go away - ColorF m_Diffuse; - ColorF m_Specular; - ColorF m_Emittance; // RGB: Color, Alpha: Intensity (kcd/m2 or kilonits) - float m_Opacity; - float m_Smoothness; - - inline friend bool operator == (const CInputLightMaterial& m1, const CInputLightMaterial& m2) - { - return !memcmp(&m1, &m2, CInputLightMaterial::Size()); - } - - inline static int Size() - { - int nSize = sizeof(CInputLightMaterial); - return nSize; - } -}; - -class CTexture; -class CTexAnim; -#include - -// Summary: -// Vertex modificators definitions (must be 16 bit flag). - -#define MDV_BENDING 0x100 -#define MDV_DET_BENDING 0x200 -#define MDV_DET_BENDING_GRASS 0x400 -#define MDV_WIND 0x800 -#define MDV_DEPTH_OFFSET 0x2000 - -// Does the vertex shader require position-invariant compilation? -// This would be true of shaders rendering multiple times with different vertex shaders - for example during zprepass and the gbuffer pass -// Note this is different than the technique flag FHF_POSITION_INVARIANT as that does custom behavior for terrain -#define MDV_POSITION_INVARIANT 0x4000 - -// Summary: -// Deformations/Morphing types. -enum EDeformType -{ - eDT_Unknown = 0, - eDT_SinWave = 1, - eDT_SinWaveUsingVtxColor = 2, - eDT_Bulge = 3, - eDT_Squeeze = 4, - eDT_Perlin2D = 5, - eDT_Perlin3D = 6, - eDT_FromCenter = 7, - eDT_Bending = 8, - eDT_ProcFlare = 9, - eDT_AutoSprite = 10, - eDT_Beam = 11, - eDT_FixedOffset = 12, -}; - -// Summary: -// Wave form evaluator flags. -enum EWaveForm -{ - eWF_None, - eWF_Sin, - eWF_HalfSin, - eWF_InvHalfSin, - eWF_Square, - eWF_Triangle, - eWF_SawTooth, - eWF_InvSawTooth, - eWF_Hill, - eWF_InvHill, -}; - -#define WFF_CLAMP 1 -#define WFF_LERP 2 - -// Summary: -// Wave form definition. -struct SWaveForm -{ - EWaveForm m_eWFType; - byte m_Flags; - - float m_Level; - float m_Level1; - float m_Amp; - float m_Amp1; - float m_Phase; - float m_Phase1; - float m_Freq; - float m_Freq1; - - SWaveForm(EWaveForm eWFType, float fLevel, float fAmp, float fPhase, float fFreq) - { - m_eWFType = eWFType; - m_Level = m_Level1 = fLevel; - m_Amp = m_Amp1 = fAmp; - m_Phase = m_Phase1 = fPhase; - m_Freq = m_Freq1 = fFreq; - } - - int Size() - { - int nSize = sizeof(SWaveForm); - return nSize; - } - SWaveForm() - { - memset(this, 0, sizeof(SWaveForm)); - } - bool operator == (const SWaveForm& wf) const - { - if (m_eWFType == wf.m_eWFType && m_Level == wf.m_Level && m_Amp == wf.m_Amp && m_Phase == wf.m_Phase && m_Freq == wf.m_Freq && m_Level1 == wf.m_Level1 && m_Amp1 == wf.m_Amp1 && m_Phase1 == wf.m_Phase1 && m_Freq1 == wf.m_Freq1 && m_Flags == wf.m_Flags) - { - return true; - } - return false; - } - - SWaveForm& operator += (const SWaveForm& wf) - { - m_Level += wf.m_Level; - m_Level1 += wf.m_Level1; - m_Amp += wf.m_Amp; - m_Amp1 += wf.m_Amp1; - m_Phase += wf.m_Phase; - m_Phase1 += wf.m_Phase1; - m_Freq += wf.m_Freq; - m_Freq1 += wf.m_Freq1; - return *this; - } -}; - -struct SWaveForm2 -{ - EWaveForm m_eWFType; - - float m_Level; - float m_Amp; - float m_Phase; - float m_Freq; - - SWaveForm2() - { - memset(this, 0, sizeof(SWaveForm2)); - } - bool operator == (const SWaveForm2& wf) const - { - if (m_eWFType == wf.m_eWFType && m_Level == wf.m_Level && m_Amp == wf.m_Amp && m_Phase == wf.m_Phase && m_Freq == wf.m_Freq) - { - return true; - } - return false; - } - - SWaveForm2& operator += (const SWaveForm2& wf) - { - m_Level += wf.m_Level; - m_Amp += wf.m_Amp; - m_Phase += wf.m_Phase; - m_Freq += wf.m_Freq; - return *this; - } -}; - -struct SDeformInfo -{ - EDeformType m_eType; - SWaveForm2 m_WaveX; - float m_fDividerX; - Vec3 m_vNoiseScale; - - SDeformInfo() - { - m_eType = eDT_Unknown; - m_fDividerX = 0.01f; - m_vNoiseScale = Vec3(1, 1, 1); - } - - inline bool operator == (const SDeformInfo& m) - { - if (m_eType == m.m_eType && - m_WaveX == m.m_WaveX && - m_vNoiseScale == m.m_vNoiseScale && - m_fDividerX == m.m_fDividerX) - { - return true; - } - - return false; - } - - int Size() - { - return sizeof(SDeformInfo); - } - - void GetMemoryUsage(ICrySizer* pSizer) const - { - pSizer->Add(*this); - } -}; - -//============================================================================== -// CRenderObject - -////////////////////////////////////////////////////////////////////// -// CRenderObject::m_ObjFlags: Flags used by shader pipeline - -enum ERenderObjectFlags -{ - FOB_VERTEX_VELOCITY = BIT(0), - FOB_RENDER_TRANS_AFTER_DOF = BIT(1), //transparencies rendered after depth of field - //Unused = BIT(2), - FOB_RENDER_AFTER_POSTPROCESSING = BIT(3), - FOB_OWNER_GEOMETRY = BIT(4), - FOB_MESH_SUBSET_INDICES = BIT(5), - FOB_SELECTED = BIT(6), - FOB_RENDERER_IDENDITY_OBJECT = BIT(7), - FOB_GLOBAL_ILLUMINATION = BIT(8), - FOB_NO_FOG = BIT(9), - FOB_DECAL = BIT(10), - FOB_OCTAGONAL = BIT(11), - FOB_POINT_SPRITE = BIT(13), - FOB_SOFT_PARTICLE = BIT(14), - FOB_REQUIRES_RESOLVE = BIT(15), - FOB_UPDATED_RTMASK = BIT(16), - FOB_AFTER_WATER = BIT(17), - FOB_BENDED = BIT(18), - FOB_ZPREPASS = BIT(19), - FOB_PARTICLE_SHADOWS = BIT(20), - FOB_DISSOLVE = BIT(21), - FOB_MOTION_BLUR = BIT(22), - FOB_NEAREST = BIT(23), // [Rendered in Camera Space] - FOB_SKINNED = BIT(24), - FOB_DISSOLVE_OUT = BIT(25), - FOB_DYNAMIC_OBJECT = BIT(26), - FOB_ALLOW_TESSELLATION = BIT(27), - FOB_DECAL_TEXGEN_2D = BIT(28), - FOB_IN_DOORS = BIT(29), - FOB_HAS_PREVMATRIX = BIT(30), - FOB_LIGHTVOLUME = BIT(31), - - FOB_DECAL_MASK = (FOB_DECAL | FOB_DECAL_TEXGEN_2D), - FOB_PARTICLE_MASK = (FOB_SOFT_PARTICLE | FOB_NO_FOG | FOB_GLOBAL_ILLUMINATION | FOB_PARTICLE_SHADOWS | FOB_NEAREST | FOB_MOTION_BLUR | FOB_LIGHTVOLUME | FOB_ALLOW_TESSELLATION | FOB_IN_DOORS | FOB_AFTER_WATER), - - // WARNING: FOB_MASK_AFFECTS_MERGING must start from 0x10000/bit 16 (important for instancing). - FOB_MASK_AFFECTS_MERGING_GEOM = (FOB_ZPREPASS | FOB_SKINNED | FOB_BENDED | FOB_DYNAMIC_OBJECT | FOB_ALLOW_TESSELLATION | FOB_NEAREST), - FOB_MASK_AFFECTS_MERGING = (FOB_ZPREPASS | FOB_MOTION_BLUR | FOB_HAS_PREVMATRIX | FOB_SKINNED | FOB_BENDED | FOB_PARTICLE_SHADOWS | FOB_AFTER_WATER | FOB_DISSOLVE | FOB_DISSOLVE_OUT | FOB_NEAREST | FOB_DYNAMIC_OBJECT | FOB_ALLOW_TESSELLATION) -}; - -struct SSkyInfo -{ - ITexture* m_SkyBox[3]; - float m_fSkyLayerHeight; - - int Size() - { - int nSize = sizeof(SSkyInfo); - return nSize; - } - SSkyInfo() - { - memset(this, 0, sizeof(SSkyInfo)); - } -}; - -struct SBending -{ - Vec2 m_vBending; - float m_fMainBendingScale; - SWaveForm2 m_Waves[2]; - - SBending() - { - m_vBending.zero(); - m_fMainBendingScale = 1.f; - } - - Vec4 GetShaderConstants(float realTime) const; - void GetShaderConstantsStatic(float realTime, Vec4* vBendInfo) const; -}; - -// Description: -// Interface for the skinnable objects (renderer calls its functions to get the skinning data). -// should only created by EF_CreateSkinningData -_MS_ALIGN(16) struct SSkinningData -{ - uint32 nNumBones; - uint32 nHWSkinningFlags; - DualQuat* pBoneQuatsS; - Matrix34* pBoneMatrices; - JointIdType* pRemapTable; - AZ::LegacyJobExecutor* pAsyncJobExecutor; - AZ::LegacyJobExecutor* pAsyncDataJobExecutor; - SSkinningData* pPreviousSkinningRenderData; // used for motion blur - uint32 remapGUID; - void* pCharInstCB; // used if per char instance cbs are available in renderdll (d3d11+); - // members below are for Software Skinning - void* pCustomData; // client specific data, used for example for sw-skinning on animation side - SSkinningData* pNextSkinningData; // List to the next element which needs SW-Skinning -} _ALIGN(16); - -struct SRenderObjData -{ - uintptr_t m_uniqueObjectId; - - SSkinningData* m_pSkinningData; - - float m_fTempVars[10]; // Different useful vars (ObjVal component in shaders) - - // using a pointer, the client code has to ensure that the data stays valid - const AZStd::vector* m_pShaderParams; - - uint32 m_nHUDSilhouetteParams; - - uint64 m_nSubObjHideMask; - - union - { - SBending* m_pBending; - }; - - SBending* m_BendingPrev; - - uint16 m_FogVolumeContribIdx[2]; - - uint16 m_nLightID; - uint16 m_LightVolumeId; - - uint8 m_screenBounds[4]; - - uint16 m_nCustomFlags; - uint8 m_nCustomData; - - SRenderObjData() - { - Init(); - } - - void Init() - { - m_nSubObjHideMask = 0; - m_uniqueObjectId = 0; - m_nLightID = 0; - m_LightVolumeId = 0; - m_pSkinningData = NULL; - m_screenBounds[0] = m_screenBounds[1] = m_screenBounds[2] = m_screenBounds[3] = 0; - m_nCustomData = 0; - m_nCustomFlags = 0; - m_nHUDSilhouetteParams = 0; - m_pBending = nullptr; - m_BendingPrev = nullptr; - m_pShaderParams = nullptr; - m_FogVolumeContribIdx[0] = m_FogVolumeContribIdx[1] = static_cast(-1); - - // The following should be changed to be something like 0xac to indicate invalid data so that by default - // data that was not set will break render features and will be traced (otherwise, default 0 just might pass) - memset(m_fTempVars, 0, 10 * sizeof(float)); - } - - void SetShaderParams(const AZStd::vector* pShaderParams) - { - m_pShaderParams = pShaderParams; - } - - void GetMemoryUsage(ICrySizer* pSizer) const - { - AZ_UNUSED(pSizer); - } -} _ALIGN(16); - -////////////////////////////////////////////////////////////////////// -// Objects using in shader pipeline - - -// Summary: -// Same as in the 3dEngine. -#define MAX_LIGHTS_NUM 32 - -struct ShadowMapFrustum; - -////////////////////////////////////////////////////////////////////// -/// -/// Objects using in shader pipeline -/// Single rendering item, that can be created from 3DEngine and persist across multiple frames -/// It can be compiled into the platform specific efficient rendering compiled object. -/// -////////////////////////////////////////////////////////////////////// -_MS_ALIGN(16) class CRenderObject -{ -public: - AZ_CLASS_ALLOCATOR(CRenderObject, AZ::LegacyAllocator, 0); - - struct SInstanceInfo - { - Matrix34 m_Matrix; - ColorF m_AmbColor; - }; - - struct SInstanceData - { - Matrix34 m_MatInst; - Vec4 m_vBendInfo; - Vec4 m_vDissolveInfo; - }; - - struct PerInstanceConstantBufferKey - { - PerInstanceConstantBufferKey() - : m_Id{0xFFFF} - , m_IndirectId{0xFF} - {} - - inline bool IsValid() const - { - return m_Id != 0xFFFF; - } - - AZ::u16 m_Id; - AZ::u8 m_IndirectId; - }; - - ////////////////////////////////////////////////////////////////////////// - SInstanceInfo m_II; //!< Per instance data - - uint64 m_ObjFlags; //!< Combination of FOB_ flags. - uint32 m_Id; - - float m_fAlpha; //!< Object alpha. - float m_fDistance; //!< Distance to the object. - - union - { - float m_fSort; //!< Custom sort value. - uint16 m_nSort; - }; - - uint64 m_nRTMask; //!< Shader runtime modification flags - uint16 m_nMDV; //!< Vertex modifier flags for Shader. - uint16 m_nRenderQuality; //!< 65535 - full quality, 0 - lowest quality, used by CStatObj - int16 m_nTextureID; //!< Custom texture id. - - union - { - uint8 m_breakableGlassSubFragIndex; - uint8 m_ParticleObjFlags; - }; - uint8 m_nClipVolumeStencilRef; //!< Per instance vis area stencil reference ID - uint8 m_DissolveRef; //!< Dissolve value - uint8 m_RState; //!< Render state used for object - - bool m_NoDecalReceiver; - - uint32 m_nMaterialLayers; //!< Which mtl layers active and how much to blend them - - IRenderNode* m_pRenderNode; //!< Will define instance id. - _smart_ptr m_pCurrMaterial; //!< Parent material used for render object. - IRenderElement* m_pRE; //!< RenderElement used by this CRenderObject - - PerInstanceConstantBufferKey m_PerInstanceConstantBufferKey; - - //! Embedded SRenderObjData, optional data carried by CRenderObject - SRenderObjData m_data; - -public: - - ////////////////////////////////////////////////////////////////////////// - // Methods - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - /// Constructor - ////////////////////////////////////////////////////////////////////////// - CRenderObject() - : m_Id(~0u) - { - Init(); - } - ~CRenderObject() {}; - - //========================================================================================================= - - inline Vec3 GetTranslation() const { return m_II.m_Matrix.GetTranslation(); } - inline float GetScaleX() const { return sqrt_tpl(m_II.m_Matrix(0, 0) * m_II.m_Matrix(0, 0) + m_II.m_Matrix(0, 1) * m_II.m_Matrix(0, 1) + m_II.m_Matrix(0, 2) * m_II.m_Matrix(0, 2)); } - inline float GetScaleZ() const { return sqrt_tpl(m_II.m_Matrix(2, 0) * m_II.m_Matrix(2, 0) + m_II.m_Matrix(2, 1) * m_II.m_Matrix(2, 1) + m_II.m_Matrix(2, 2) * m_II.m_Matrix(2, 2)); } - - inline void Init() - { - m_ObjFlags = 0; - m_nRenderQuality = 65535; - - m_RState = 0; - m_fDistance = 0.0f; - - m_nClipVolumeStencilRef = 0; - m_nMaterialLayers = 0; - m_DissolveRef = 0; - - m_nMDV = 0; - m_fSort = 0; - - m_II.m_AmbColor = Col_White; - m_fAlpha = 1.0f; - m_nTextureID = -1; - m_pCurrMaterial = nullptr; - m_pRE = nullptr; - m_PerInstanceConstantBufferKey = {}; - - m_nRTMask = 0; - m_pRenderNode = NULL; - - m_NoDecalReceiver = false; - m_data.Init(); - } - void AssignId(uint32 id) { m_Id = id; } - - ILINE Matrix34A& GetMatrix() { return m_II.m_Matrix; } - - ILINE SRenderObjData* GetObjData() - { - return &m_data; - } - - IRenderElement* GetRE() { return m_pRE; } - void SetRE(IRenderElement* re) { m_pRE = re; } - -protected: - - // Disallow copy (potential bugs with PERMANENT objects) - // alwasy use IRendeer::EF_DuplicateRO if you want a copy - // of a CRenderObject - CRenderObject& operator= (CRenderObject& other) = default; - - void CloneObject(CRenderObject* srcObj) - { - *this = *srcObj; - } - - friend class CRenderer; -} _ALIGN(16); - -enum EResClassName -{ - eRCN_Texture, - eRCN_Shader, -}; - -// className: CTexture, CHWShader_VS, CHWShader_PS, CShader -struct SResourceAsync -{ - AZ_CLASS_ALLOCATOR(SResourceAsync, AZ::SystemAllocator, 0); - int nReady; // 0: Not ready; 1: Ready; -1: Error - byte* pData; - EResClassName eClassName; // Resource class name - char* Name; // Resource name - union - { - // CTexture parameters - struct - { - int nWidth, nHeight, nMips, nTexFlags, nFormat, nTexId; - }; - // CShader parameters - struct - { - int nShaderFlags; - }; - }; - void* pResource; // Pointer to created resource - - SResourceAsync() - { - memset(this, 0, sizeof(SResourceAsync)); - } - - ~SResourceAsync() - { - delete Name; - } -}; - -#include "IRenderer.h" - -//============================================================================== - -// Summary: -// Color operations flags. -enum EColorOp -{ - eCO_NOSET = 0, - eCO_DISABLE = 1, - eCO_REPLACE = 2, - eCO_DECAL = 3, - eCO_ARG2 = 4, - eCO_MODULATE = 5, - eCO_MODULATE2X = 6, - eCO_MODULATE4X = 7, - eCO_BLENDDIFFUSEALPHA = 8, - eCO_BLENDTEXTUREALPHA = 9, - eCO_DETAIL = 10, - eCO_ADD = 11, - eCO_ADDSIGNED = 12, - eCO_ADDSIGNED2X = 13, - eCO_MULTIPLYADD = 14, - eCO_BUMPENVMAP = 15, - eCO_BLEND = 16, - eCO_MODULATEALPHA_ADDCOLOR = 17, - eCO_MODULATECOLOR_ADDALPHA = 18, - eCO_MODULATEINVALPHA_ADDCOLOR = 19, - eCO_MODULATEINVCOLOR_ADDALPHA = 20, - eCO_DOTPRODUCT3 = 21, - eCO_LERP = 22, - eCO_SUBTRACT = 23, - eCO_MODULATE_METAL_FONT_SPECIAL_MODE = 24, -}; - -enum EColorArg -{ - eCA_Unknown, - eCA_Specular, - eCA_Texture, - eCA_Texture1, - eCA_Normal, - eCA_Diffuse, - eCA_Previous, - eCA_Constant, -}; - -#define DEF_TEXARG0 (eCA_Texture | (eCA_Diffuse << 3)) -#define DEF_TEXARG1 (eCA_Texture | (eCA_Previous << 3)) - -enum ETexModRotateType -{ - ETMR_NoChange, - ETMR_Fixed, - ETMR_Constant, - ETMR_Oscillated, - ETMR_Max -}; - -enum ETexModMoveType -{ - ETMM_NoChange, - ETMM_Fixed, - ETMM_Constant, - ETMM_Jitter, - ETMM_Pan, - ETMM_Stretch, - ETMM_StretchRepeat, - ETMM_Max -}; - -enum ETexGenType -{ - ETG_Stream, - ETG_World, - ETG_Camera, - ETG_Max -}; - -#define CASE_TEXMOD(var_name) \ - if (!_stricmp(#var_name, szParamName)) \ - { \ - var_name = fValue; \ - return true; \ - } \ - -#define CASE_TEXMODANGLE(var_name) \ - if (!_stricmp(#var_name, szParamName)) \ - { \ - var_name = Degr2Word(fValue); \ - return true; \ - } \ - -#define CASE_TEXMODBYTE(var_name) \ - if (!_stricmp(#var_name, szParamName)) \ - { \ - var_name = (byte)fValue; \ - return true; \ - } \ - -#define CASE_TEXMODBOOL(var_name) \ - if (!_stricmp(#var_name, szParamName)) \ - { \ - var_name = (fValue == 1.f); \ - return true; \ - } \ - -struct SEfTexModificator -{ - AZ_CLASS_ALLOCATOR(SEfTexModificator, AZ::SystemAllocator, 0); - bool SetMember(const char* szParamName, float fValue) - { - CASE_TEXMODBYTE(m_eTGType); - CASE_TEXMODBYTE(m_eRotType); - CASE_TEXMODBYTE(m_eMoveType[0]); - CASE_TEXMODBYTE(m_eMoveType[1]); - CASE_TEXMODBOOL(m_bTexGenProjected); - - CASE_TEXMOD(m_Tiling[0]); - CASE_TEXMOD(m_Tiling[1]); - CASE_TEXMOD(m_Tiling[2]); - CASE_TEXMOD(m_Offs[0]); - CASE_TEXMOD(m_Offs[1]); - CASE_TEXMOD(m_Offs[2]); - - CASE_TEXMODANGLE(m_Rot[0]); - CASE_TEXMODANGLE(m_Rot[1]); - CASE_TEXMODANGLE(m_Rot[2]); - CASE_TEXMODANGLE(m_RotOscRate[0]); - CASE_TEXMODANGLE(m_RotOscRate[1]); - CASE_TEXMODANGLE(m_RotOscRate[2]); - CASE_TEXMODANGLE(m_RotOscAmplitude[0]); - CASE_TEXMODANGLE(m_RotOscAmplitude[1]); - CASE_TEXMODANGLE(m_RotOscAmplitude[2]); - CASE_TEXMODANGLE(m_RotOscPhase[0]); - CASE_TEXMODANGLE(m_RotOscPhase[1]); - CASE_TEXMODANGLE(m_RotOscPhase[2]); - CASE_TEXMOD(m_RotOscCenter[0]); - CASE_TEXMOD(m_RotOscCenter[1]); - CASE_TEXMOD(m_RotOscCenter[2]); - - CASE_TEXMOD(m_OscRate[0]); - CASE_TEXMOD(m_OscRate[1]); - CASE_TEXMOD(m_OscAmplitude[0]); - CASE_TEXMOD(m_OscAmplitude[1]); - CASE_TEXMOD(m_OscPhase[0]); - CASE_TEXMOD(m_OscPhase[1]); - - return false; - } - - _MS_ALIGN(16) Matrix44 m_TexGenMatrix _ALIGN(16); - _MS_ALIGN(16) Matrix44 m_TexMatrix _ALIGN(16); - - float m_Tiling[3]; - float m_Offs[3]; - - float m_RotOscCenter[3]; - - float m_OscRate[2]; - float m_OscAmplitude[2]; - float m_OscPhase[2]; - - // This members are used only during updating of the matrices - float m_LastTime[2]; - float m_CurrentJitter[2]; - - uint16 m_RotOscPhase[3]; - uint16 m_Rot[3]; - uint16 m_RotOscRate[3]; - uint16 m_RotOscAmplitude[3]; - - uint8 m_eTGType; - uint8 m_eRotType; - uint8 m_eMoveType[2]; - bool m_bTexGenProjected; - - void Reset() - { - memset(this, 0, sizeof(*this)); - m_Tiling[0] = m_Tiling[1] = 1.0f; - } - inline SEfTexModificator() - { - Reset(); - } - inline SEfTexModificator(const SEfTexModificator& m) - { - if (&m != this) - { - memcpy(this, &m, sizeof(*this)); - } - } - SEfTexModificator& operator = (const SEfTexModificator& src) - { - if (&src != this) - { - this->~SEfTexModificator(); - new(this)SEfTexModificator(src); - } - return *this; - } - int Size() - { - return sizeof(*this); - } - - inline bool operator != (const SEfTexModificator& m) - { - return memcmp(this, &m, sizeof(*this)) != 0; - } - - inline bool isModified() - { - return ( m_eMoveType[0] != ETMM_NoChange || - m_eMoveType[1] != ETMM_NoChange || - m_eRotType != ETMR_NoChange || - m_Offs[0] != 0.0f || - m_Offs[1] != 0.0f || - m_Tiling[0] != 1.0f || - m_Tiling[1] != 1.0f || - m_Rot[0] != 0.0f || - m_Rot[1] != 0.0f || - m_Rot[2] != 0.0f ); - } -}; - -inline bool IsTextureModifierSupportedForTextureMap(EEfResTextures texture) -{ - // Custom uv modifiers are currently only supported for diffuse, detail, decal, 2nd diffuse, and emittance texture maps - if (texture == EFTT_DIFFUSE || texture == EFTT_DETAIL_OVERLAY || texture == EFTT_DECAL_OVERLAY || texture == EFTT_CUSTOM || texture == EFTT_EMITTANCE) - { - return true; - } - - return false; -} - -////////////////////////////////////////////////////////////////////// -#define FILTER_NONE -1 -#define FILTER_POINT 0 -#define FILTER_LINEAR 1 -#define FILTER_BILINEAR 2 -#define FILTER_TRILINEAR 3 -#define FILTER_ANISO2X 4 -#define FILTER_ANISO4X 5 -#define FILTER_ANISO8X 6 -#define FILTER_ANISO16X 7 - -////////////////////////////////////////////////////////////////////// -#define TADDR_WRAP 0 -#define TADDR_CLAMP 1 -#define TADDR_MIRROR 2 -#define TADDR_BORDER 3 - -//============================================================================== -//------------------------------------------------------------------------------ -struct STexState -{ - struct - { - signed char m_nMinFilter : 8; - signed char m_nMagFilter : 8; - signed char m_nMipFilter : 8; - signed char m_nAddressU : 8; - signed char m_nAddressV : 8; - signed char m_nAddressW : 8; - signed char m_nAnisotropy : 8; - signed char padding : 8; - }; - DWORD m_dwBorderColor; - float m_MipBias; - void* m_pDeviceState; - bool m_bActive; - bool m_bComparison; - bool m_bSRGBLookup; - byte m_bPAD; - // NOTE: There are 4 more pad bytes that exist here because m_pDeviceState is a 64-bit pointer. - uint32 m_PadBytes; - - STexState () - { - // Make sure we clear everything, including "invisible" pad bytes. - memset(this, 0, sizeof(*this)); - } - STexState(int nFilter, bool bClamp) - { - memset(this, 0, sizeof(*this)); - int nAddress = bClamp ? TADDR_CLAMP : TADDR_WRAP; - SetFilterMode(nFilter); - SetClampMode(nAddress, nAddress, nAddress); - SetBorderColor(0); - } - STexState(int nFilter, int nAddressU, int nAddressV, int nAddressW, unsigned int borderColor) - { - memset(this, 0, sizeof(*this)); - SetFilterMode(nFilter); - SetClampMode(nAddressU, nAddressV, nAddressW); - SetBorderColor(borderColor); - } - - void Destroy(); - void Init(const STexState& src); - - ~STexState() { Destroy(); } - STexState(const STexState& src) { Init(src); } - STexState& operator = (const STexState& src) - { - this->~STexState(); - new(this)STexState(src); - return *this; - } - _inline friend bool operator == (const STexState& m1, const STexState& m2) - { - return (*(uint64*)&m1 == *(uint64*)&m2 && m1.m_dwBorderColor == m2.m_dwBorderColor && - m1.m_bActive == m2.m_bActive && m1.m_bComparison == m2.m_bComparison && m1.m_bSRGBLookup == m2.m_bSRGBLookup && - m1.m_MipBias == m2.m_MipBias); - } - void Release() - { - delete this; - } - - bool SetFilterMode(int nFilter); - bool SetClampMode(int nAddressU, int nAddressV, int nAddressW); - void SetBorderColor(DWORD dwColor); - void SetComparisonFilter(bool bEnable); - void PostCreate(); -}; - - -struct IRenderTarget -{ - virtual ~IRenderTarget(){} - virtual void Release() = 0; - virtual void AddRef() = 0; -}; - -//============================================================================== -// FX shader texture sampler (description) -//------------------------------------------------------------------------------ -struct STexSamplerFX -{ -#if SHADER_REFLECT_TEXTURE_SLOTS - AZStd::string m_szUIName; - AZStd::string m_szUIDescription; -#endif - - AZStd::string m_szName; - AZStd::string m_szTexture; - - union - { - struct SHRenderTarget* m_pTarget; - IRenderTarget* m_pITarget; - }; - - int16 m_nTexState; - byte m_eTexType; // ETEX_Type e.g. eTT_2D or eTT_Cube - byte m_nSlotId; // EFTT_ index if it references one of the material texture slots, EFTT_MAX otherwise - uint32 m_nTexFlags; - - STexSamplerFX() - { - m_nTexState = -1; - m_eTexType = eTT_2D; - m_nSlotId = EFTT_MAX; - m_nTexFlags = 0; - m_pTarget = NULL; - } - - ~STexSamplerFX() - { - SAFE_RELEASE(m_pITarget); - } - - size_t Size() - { - size_t nSize = sizeof(*this); - nSize += m_szName.capacity(); - nSize += m_szTexture.capacity(); -#if SHADER_REFLECT_TEXTURE_SLOTS - nSize += m_szUIName.capacity(); - nSize += m_szUIDescription.capacity(); -#endif - return nSize; - } - - void GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer) const - { - } - - uint32 GetTexFlags() { return m_nTexFlags; } - void Update(); - void PostLoad(); - NO_INLINE STexSamplerFX (const STexSamplerFX& src) - { - m_pITarget = src.m_pITarget; - if (m_pITarget) - { - m_pITarget->AddRef(); - } - m_szName = src.m_szName; - m_szTexture = src.m_szTexture; - m_nSlotId = src.m_nSlotId; - m_eTexType = src.m_eTexType; - m_nTexFlags = src.m_nTexFlags; - m_nTexState = src.m_nTexState; - -#if SHADER_REFLECT_TEXTURE_SLOTS - m_szUIName = src.m_szUIName; - m_szUIDescription = src.m_szUIDescription; -#endif - } - NO_INLINE STexSamplerFX& operator = (const STexSamplerFX& src) - { - this->~STexSamplerFX(); - new(this)STexSamplerFX(src); - return *this; - } - _inline friend bool operator != (const STexSamplerFX& m1, const STexSamplerFX& m2) - { - if (m1.m_szTexture != m2.m_szTexture || m1.m_eTexType != m2.m_eTexType || m1.m_nTexFlags != m2.m_nTexFlags) - { - return true; - } - return false; - } - _inline bool operator == (const STexSamplerFX& m1) - { - return !(*this != m1); - } - - bool Export(SShaderSerializeContext& SC); - bool Import(SShaderSerializeContext& SC, SSTexSamplerFX* pTS); -}; - - -//============================================================================== -// Resource texture sampler (runtime) -//------------------------------------------------------------------------------ -struct STexSamplerRT -{ - union - { - CTexture* m_pTex; - ITexture* m_pITex; - }; - - union - { - struct SHRenderTarget* m_pTarget; - IRenderTarget* m_pITarget; - }; - - union - { - CTexAnim* m_pAnimInfo; - ITexAnim* m_pIAnimInfo; - }; - - uint32 m_nTexFlags; - int16 m_nTexState; - - uint8 m_eTexType; // ETEX_Type e.g. eTT_2D or eTT_Cube - int8 m_nSamplerSlot; - int8 m_nTextureSlot; - - bool m_bGlobal; - - STexSamplerRT() - { - m_nTexState = -1; - m_pTex = NULL; - m_eTexType = eTT_2D; - m_nTexFlags = 0; - m_pTarget = NULL; - m_pAnimInfo = NULL; - m_nSamplerSlot = -1; - m_nTextureSlot = -1; - m_bGlobal = false; - } - ~STexSamplerRT() - { - Cleanup(); - } - - void Cleanup() - { - SAFE_RELEASE(m_pITex); - // TODO: ref counted deleting of m_pAnimInfo & m_pTarget! - CW - SAFE_RELEASE(m_pITarget); - SAFE_RELEASE(m_pIAnimInfo); - } - int Size() const - { - int nSize = sizeof(*this); - return nSize; - } - - void GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer) const - { - } - - uint32 GetTexFlags() const { return m_nTexFlags; } - void Update(); - void PostLoad(); - - NO_INLINE STexSamplerRT (const STexSamplerRT& src) - { - m_pITex = src.m_pITex; - if (m_pITex) - { - m_pITex->AddRef(); - } - m_pITarget = src.m_pITarget; - if (m_pITarget) - { - m_pITarget->AddRef(); - } - m_pIAnimInfo = src.m_pIAnimInfo; - if (m_pIAnimInfo) - { - m_pIAnimInfo->AddRef(); - } - m_eTexType = src.m_eTexType; - m_nTexFlags = src.m_nTexFlags; - m_nTexState = src.m_nTexState; - m_nSamplerSlot = src.m_nSamplerSlot; - m_nTextureSlot = src.m_nTextureSlot; - m_bGlobal = src.m_bGlobal; - } - NO_INLINE STexSamplerRT& operator = (const STexSamplerRT& src) - { - this->~STexSamplerRT(); - new(this)STexSamplerRT(src); - return *this; - } - STexSamplerRT (const STexSamplerFX& src) - { - m_pITex = NULL; - m_pAnimInfo = NULL; - m_pITarget = src.m_pITarget; - if (m_pITarget) - { - m_pITarget->AddRef(); - } - m_eTexType = src.m_eTexType; - m_nTexFlags = src.m_nTexFlags; - m_nTexState = src.m_nTexState; - m_nSamplerSlot = -1; - m_nTextureSlot = -1; - m_bGlobal = (src.m_nTexFlags & FT_FROMIMAGE) != 0; - } - inline bool operator != (const STexSamplerRT& m) const - { - if (m_pTex != m.m_pTex || m_eTexType != m.m_eTexType || m_nTexFlags != m.m_nTexFlags || m_nTexState != m.m_nTexState) - { - return true; - } - return false; - } -}; - -//============================================================================== -//------------------------------------------------------------------------------ -struct SEfResTextureExt -{ - int32 m_nFrameUpdated; - int32 m_nUpdateFlags; - int32 m_nLastRecursionLevel; - SEfTexModificator* m_pTexModifier; - - SEfResTextureExt () - { - m_nFrameUpdated = -1; - m_nUpdateFlags = 0; - m_nLastRecursionLevel = 0; - m_pTexModifier = nullptr; - } - ~SEfResTextureExt () - { - Cleanup(); - } - void Cleanup() - { - SAFE_DELETE(m_pTexModifier); - } - inline bool operator != (const SEfResTextureExt& m) const - { - if (m_pTexModifier && m.m_pTexModifier) - { - return *m_pTexModifier != *m.m_pTexModifier; - } - if (!m_pTexModifier && !m.m_pTexModifier) - { - return false; - } - return true; - } - SEfResTextureExt(const SEfResTextureExt& src) - { - if (&src != this) - { - Cleanup(); - if (src.m_pTexModifier) - { - m_pTexModifier = new SEfTexModificator; - * m_pTexModifier = *src.m_pTexModifier; - } - m_nFrameUpdated = -1; - m_nUpdateFlags = src.m_nUpdateFlags; - m_nLastRecursionLevel = -1; - } - } - SEfResTextureExt& operator = (const SEfResTextureExt& src) - { - if (&src != this) - { - Cleanup(); - new(this)SEfResTextureExt(src); - } - return *this; - } - - void CopyTo(SEfResTextureExt* pTo) const - { - if (pTo && pTo != this) - { - pTo->Cleanup(); - pTo->m_nFrameUpdated = -1; - pTo->m_nUpdateFlags = m_nUpdateFlags; - pTo->m_nLastRecursionLevel = -1; - pTo->m_pTexModifier = nullptr; - if (m_pTexModifier) - { - pTo->m_pTexModifier = new SEfTexModificator; - *(pTo->m_pTexModifier) = *m_pTexModifier; - } - } - } - inline int Size() const - { - int nSize = sizeof(SEfResTextureExt); - if (m_pTexModifier) - { - nSize += m_pTexModifier->Size(); - } - return nSize; - } -}; - -//============================================================================== -// SEfResTexture - holds the actual data representing a texture and its associated -// sampler and modulator properties. -//------------------------------------------------------------------------------ -struct SEfResTexture -{ - AZStd::string m_Name; - bool m_bUTile; - bool m_bVTile; - signed char m_Filter; - - STexSamplerRT m_Sampler; - SEfResTextureExt m_Ext; - - void UpdateForCreate(int nTSlot); - void Update(int nTSlot); - void UpdateWithModifier(int nTSlot); - - inline bool operator != (const SEfResTexture& m) const - { - if (_stricmp(m_Name.c_str(), m.m_Name.c_str()) != 0 || - m_bUTile != m.m_bUTile || - m_bVTile != m.m_bVTile || - m_Filter != m.m_Filter || - m_Ext != m.m_Ext || - m_Sampler != m.m_Sampler) - { - return true; - } - return false; - } - - inline bool IsHasModificators() const - { - return (m_Ext.m_pTexModifier != NULL); - } - - //! Find out if the texture has modulator and if it requires per frame computation change - bool IsNeedTexTransform() const - { - if (!m_Ext.m_pTexModifier) - { - return false; - } - if (m_Ext.m_pTexModifier->m_eRotType != ETMR_NoChange || m_Ext.m_pTexModifier->m_eMoveType[0] != ETMM_NoChange || m_Ext.m_pTexModifier->m_eMoveType[1] != ETMM_NoChange) - { - return true; - } - return false; - } - - bool IsNeedTexGen() const - { - if (!m_Ext.m_pTexModifier) - { - return false; - } - if (m_Ext.m_pTexModifier->m_eTGType != ETG_Stream) - { - return true; - } - return false; - } - - inline float GetTiling(int n) const - { - if (!m_Ext.m_pTexModifier) - { - return 1.0f; - } - return m_Ext.m_pTexModifier->m_Tiling[n]; - } - - inline float GetOffset(int n) const - { - if (!m_Ext.m_pTexModifier) - { - return 0; - } - return m_Ext.m_pTexModifier->m_Offs[n]; - } - - inline SEfTexModificator* AddModificator() - { - if (!m_Ext.m_pTexModifier) - { - m_Ext.m_pTexModifier = new SEfTexModificator; - } - return m_Ext.m_pTexModifier; - } - - inline SEfTexModificator* GetModificator() const - { - if (!m_Ext.m_pTexModifier) - { - static SEfTexModificator dummy; - dummy.Reset(); - return &dummy; - } - - return m_Ext.m_pTexModifier; - } - - size_t Size() const - { - size_t nSize = sizeof(SEfResTexture) - sizeof(STexSamplerRT) - sizeof(SEfResTextureExt); - nSize += m_Name.size(); - nSize += m_Sampler.Size(); - nSize += m_Ext.Size(); - - return nSize; - } - - void GetMemoryUsage(ICrySizer* pSizer) const - { - pSizer->Add(*this); - pSizer->AddObject(m_Name); - pSizer->AddObject(m_Sampler); - } - - void Cleanup() - { - m_Sampler.Cleanup(); - m_Ext.Cleanup(); - } - - ~SEfResTexture() - { - Cleanup(); - } - - void Reset() - { - m_bUTile = true; - m_bVTile = true; - m_Filter = FILTER_NONE; - SAFE_DELETE(m_Ext.m_pTexModifier); - m_Ext.m_nFrameUpdated = -1; - } - - SEfResTexture (const SEfResTexture& src) - { - if (&src != this) - { - Cleanup(); - m_Sampler = src.m_Sampler; - m_Ext = src.m_Ext; - m_Name = src.m_Name; - m_bUTile = src.m_bUTile; - m_bVTile = src.m_bVTile; - m_Filter = src.m_Filter; - } - } - - SEfResTexture& operator = (const SEfResTexture& src) - { - if (&src != this) - { - Cleanup(); - new(this)SEfResTexture(src); - } - return *this; - } - void CopyTo(SEfResTexture* pTo) const - { - if (pTo && (pTo != this)) - { - pTo->Cleanup(); - pTo->m_Sampler = m_Sampler; - m_Ext.CopyTo(&pTo->m_Ext); - pTo->m_Name = m_Name; - pTo->m_bUTile = m_bUTile; - pTo->m_bVTile = m_bVTile; - pTo->m_Filter = m_Filter; - } - } - - SEfResTexture() - { - Reset(); - } -}; - -//============================================================================== -//------------------------------------------------------------------------------ -struct SBaseShaderResources -{ - AZStd::vector m_ShaderParams; - AZStd::string m_TexturePath; - const char* m_szMaterialName; - - float m_AlphaRef; - uint32 m_ResFlags; - - uint16 m_SortPrio; - - uint8 m_VoxelCoverage; - - size_t Size() const - { - size_t nSize = sizeof(SBaseShaderResources) + m_ShaderParams.size() * sizeof(SShaderParam); - return nSize; - } - - void GetMemoryUsage(ICrySizer* pSizer) const - { - pSizer->AddObject(m_ShaderParams); - } - - SBaseShaderResources& operator=(const SBaseShaderResources& src) - { - if (&src != this) - { - ReleaseParams(); - m_szMaterialName = src.m_szMaterialName; - m_ResFlags = src.m_ResFlags; - m_AlphaRef = src.m_AlphaRef; - m_VoxelCoverage = src.m_VoxelCoverage; - m_SortPrio = src.m_SortPrio; - m_ShaderParams = src.m_ShaderParams; - } - return *this; - } - - SBaseShaderResources() - { - m_ResFlags = 0; - m_AlphaRef = 0; - m_VoxelCoverage = 255; - m_SortPrio = 0; - m_szMaterialName = NULL; - } - - void ReleaseParams() - { - m_ShaderParams.clear(); - } - - virtual ~SBaseShaderResources() - { - ReleaseParams(); - } -}; - -//------------------------------------------------------------------------------ -typedef uint16 ResourceSlotIndex; -typedef AZStd::unordered_map TexturesResourcesMap; -typedef AZStd::unordered_map TexturesSlotsUsageMap; -//------------------------------------------------------------------------------ - struct IRenderShaderResources { - // - virtual void AddRef() = 0; virtual void UpdateConstants(IShader* pSH) = 0; - virtual void CloneConstants(const IRenderShaderResources* pSrc) = 0; - virtual bool HasLMConstants() const = 0; - // properties - virtual void ToInputLM(CInputLightMaterial& lm) = 0; - virtual void SetInputLM(const CInputLightMaterial& lm) = 0; - - virtual ColorF GetColorValue(EEfResTextures slot) const = 0; virtual void SetColorValue(EEfResTextures slot, const ColorF& color) = 0; - - virtual float GetStrengthValue(EEfResTextures slot) const = 0; virtual void SetStrengthValue(EEfResTextures slot, float value) = 0; - - // configs - virtual const float& GetAlphaRef() const = 0; - virtual void SetAlphaRef(float v) = 0; - - virtual int GetResFlags() = 0; - virtual void SetMtlLayerNoDrawFlags(uint8 nFlags) = 0; - virtual uint8 GetMtlLayerNoDrawFlags() const = 0; - virtual SSkyInfo* GetSkyInfo() = 0; - virtual void SetMaterialName(const char* szName) = 0; - - virtual bool TextureSlotExists(ResourceSlotIndex slotId) const = 0; - virtual SEfResTexture* GetTextureResource(ResourceSlotIndex slotId) = 0; - virtual TexturesResourcesMap* GetTexturesResourceMap() = 0; virtual AZStd::vector& GetParameters() = 0; - - virtual ColorF GetFinalEmittance() = 0; - virtual float GetVoxelCoverage() = 0; - - virtual ~IRenderShaderResources() {} - virtual void Release() = 0; - virtual void ConvertToInputResource(struct SInputShaderResources* pDst) = 0; - virtual IRenderShaderResources* Clone() const = 0; - virtual void SetShaderParams(struct SInputShaderResources* pDst, IShader* pSH) = 0; - - virtual size_t GetResourceMemoryUsage(ICrySizer* pSizer) = 0; - - virtual void GetMemoryUsage(ICrySizer* pSizer) const = 0; - // - - inline bool IsEmissive() const - { - // worst: *reinterpret_cast(&) > 0x00000000 - // causes value to pass from FPU to CPU registers - return GetStrengthValue(EFTT_EMITTANCE) > 0.0f; - } - inline bool IsTransparent() const - { - // worst: *reinterpret_cast(&) < 0x3f800000 - // causes value to pass from FPU to CPU registers - return GetStrengthValue(EFTT_OPACITY) < 1.0f; - } - inline bool IsAlphaTested() const - { - return GetAlphaRef() > 0.0f; - } - inline bool IsInvisible() const - { - const float o = GetStrengthValue(EFTT_OPACITY); - const float a = GetAlphaRef(); - - return o == 0.0f || a == 1.0f || o <= a; - } -}; - - -struct SInputShaderResources - : public SBaseShaderResources -{ - CInputLightMaterial m_LMaterial; - TexturesResourcesMap m_TexturesResourcesMap; // a map of all textures resources used by the shader by name - SDeformInfo m_DeformInfo; - - size_t Size() const - { - size_t nSize = SBaseShaderResources::Size();// -sizeof(SEfResTexture) * m_TexturesResourcesMap.size(); - nSize += m_TexturePath.size(); - nSize += sizeof(SDeformInfo); - - for (auto& iter : m_TexturesResourcesMap) - { - nSize += iter.second.Size(); - } - return nSize; - } - - SInputShaderResources& operator=(const SInputShaderResources& src) - { - if (&src != this) - { - Cleanup(); // this will also remove all texture slots - SBaseShaderResources::operator = (src); - m_TexturePath = src.m_TexturePath; - m_DeformInfo = src.m_DeformInfo; - m_TexturesResourcesMap = src.m_TexturesResourcesMap; - m_LMaterial = src.m_LMaterial; - } - return *this; - } - - SInputShaderResources() {} - SInputShaderResources(struct IRenderShaderResources* pSrc) - { - pSrc->ConvertToInputResource(this); - m_ShaderParams = pSrc->GetParameters(); - } - - void Cleanup() - { - m_TexturesResourcesMap.clear(); - } - - virtual ~SInputShaderResources() - { - Cleanup(); - } - - bool IsEmpty(ResourceSlotIndex nTSlot) const - { - auto iter = m_TexturesResourcesMap.find(nTSlot); - return (iter != m_TexturesResourcesMap.end()) ? iter->second.m_Name.empty() : true; - } - - SEfResTexture* GetTextureResource(ResourceSlotIndex slotId) - { - auto iter = m_TexturesResourcesMap.find(slotId); - return (iter != m_TexturesResourcesMap.end()) ? &iter->second : nullptr; - } - - inline TexturesResourcesMap* GetTexturesResourceMap() - { - return &m_TexturesResourcesMap; - } -}; - -//=================================================================================== -// Shader gen structure (used for automatic shader script generating). - -// -#define SHGF_HIDDEN 1 -#define SHGF_PRECACHE 2 -#define SHGF_AUTO_PRECACHE 4 -#define SHGF_LOWSPEC_AUTO_PRECACHE 8 -#define SHGF_RUNTIME 0x10 - -#define SHGD_LM_DIFFUSE 0x1 -#define SHGD_TEX_DETAIL 0x2 -#define SHGD_TEX_NORMALS 0x4 -#define SHGD_TEX_ENVCM 0x8 -#define SHGD_TEX_SPECULAR 0x10 -#define SHGD_TEX_SECOND_SMOOTHNESS 0x20 -#define SHGD_TEX_HEIGHT 0x40 -#define SHGD_TEX_SUBSURFACE 0x80 -#define SHGD_HW_BILINEARFP16 0x100 -#define SHGD_HW_SEPARATEFP16 0x200 -#define SHGD_HW_ORBIS 0x800 -#define SHGD_TEX_CUSTOM 0x1000 -#define SHGD_TEX_CUSTOM_SECONDARY 0x2000 -#define SHGD_TEX_DECAL 0x4000 -#define SHGD_TEX_OCC 0x8000 -#define SHGD_TEX_SPECULAR_2 0x10000 -#define SHGD_HW_GLES3 0x20000 -#define SHGD_USER_ENABLED 0x40000 -#define SHGD_HW_SAA 0x80000 -#define SHGD_TEX_EMITTANCE 0x100000 -#define SHGD_HW_DX10 0x200000 -#define SHGD_HW_DX11 0x400000 -#define SHGD_HW_GL4 0x800000 -#define SHGD_HW_WATER_TESSELLATION 0x1000000 -#define SHGD_HW_SILHOUETTE_POM 0x2000000 -// Confetti Nicholas Baldwin: adding metal shader language support -#define SHGD_HW_METAL 0x4000000 -#define SHGD_TEX_MASK ( SHGD_TEX_DETAIL | SHGD_TEX_NORMALS | SHGD_TEX_ENVCM | SHGD_TEX_SPECULAR | SHGD_TEX_SECOND_SMOOTHNESS | \ - SHGD_TEX_HEIGHT | SHGD_TEX_SUBSURFACE | SHGD_TEX_CUSTOM | SHGD_TEX_CUSTOM_SECONDARY | SHGD_TEX_DECAL | \ - SHGD_TEX_OCC | SHGD_TEX_SPECULAR_2 | SHGD_TEX_EMITTANCE) - - -//------------------------------------------------------------------------------ -// Texture slot descriptor for shader -//------------------------------------------------------------------------------ -struct SShaderTextureSlot -{ - SShaderTextureSlot() - { - m_TexType = eTT_MaxTexType; - } - - AZStd::string m_Name; - AZStd::string m_Description; - byte m_TexType; // 2D, 3D, Cube etc.. - - void GetMemoryUsage(ICrySizer* pSizer) const - { - pSizer->AddObject(m_Name); - pSizer->AddObject(m_Description); - pSizer->AddObject(m_TexType); - } -}; - -//------------------------------------------------------------------------------ -// Shader's used texture slots -//------------------------------------------------------------------------------ -/* [Shader System] - To Do: bring that back to life after testing -struct SShaderTexSlots -{ - uint32 m_nRefCount; - TexturesSlotsUsageMap m_UsedTextureSlots; - - SShaderTexSlots() - { - m_nRefCount = 1; - } - - ~SShaderTexSlots() - { - for (auto& iter : m_UsedTextureSlots ) - { - SAFE_DELETE( iter.second ); - } - m_UsedTextureSlots.clear(); - } - void Release() - { - m_nRefCount--; - if (!m_nRefCount) - { - delete this; - } - } - - void GetMemoryUsage(ICrySizer* pSizer) const - { - pSizer->AddObject(m_UsedTextureSlots); - } - - SShaderTextureSlot* GetUsedTextureSlot(uint16 slotId) - { - auto iter = m_UsedTextureSlots.find(slotId); - return (iter != m_UsedTextureSlots.end()) ? iter->second : nullptr; - } -}; -*/ - -// [Shader System] - To Do: replace this with the code above after testing -struct SShaderTexSlots -{ - uint32 m_nRefCount; - SShaderTextureSlot* m_UsedTextureSlots[EFTT_MAX]; - SShaderTexSlots() - { - m_nRefCount = 1; - memset(m_UsedTextureSlots, 0, sizeof(m_UsedTextureSlots)); - } - ~SShaderTexSlots() - { - uint32 i; - for (i = 0; i < EFTT_MAX; i++) - { - SShaderTextureSlot* pSlot = m_UsedTextureSlots[i]; - SAFE_DELETE(pSlot); - } - } - void Release() - { - m_nRefCount--; - if (!m_nRefCount) - { - delete this; - } - } - - void GetMemoryUsage(ICrySizer* pSizer) const - { - pSizer->AddObject(m_UsedTextureSlots); - } -}; - -//=================================================================================== - -enum EShaderType -{ - eST_All = -1, // To set all with one call. - - eST_General = 0, - eST_Metal, - eST_Glass, - eST_Ice, - eST_Shadow, - eST_Water, - eST_FX, - eST_PostProcess, - eST_HDR, - eST_Sky, - eST_Compute, - eST_Max // To define array size. -}; - -enum EShaderDrawType -{ - eSHDT_General, - eSHDT_Light, - eSHDT_Shadow, - eSHDT_Terrain, - eSHDT_Overlay, - eSHDT_OceanShore, - eSHDT_Fur, - eSHDT_NoDraw, - eSHDT_CustomDraw, - eSHDT_Sky, - eSHDT_Volume -}; - -enum EShaderQuality -{ - eSQ_Low = 0, - eSQ_Medium = 1, - eSQ_High = 2, - eSQ_VeryHigh = 3, - eSQ_Max = 4 -}; - -enum ERenderQuality -{ - eRQ_Low = 0, - eRQ_Medium = 1, - eRQ_High = 2, - eRQ_VeryHigh = 3, - eRQ_Max = 4 -}; - -// Summary: -// Shader profile flags . -#define SPF_LOADNORMALALPHA 0x1 - -struct SShaderProfile -{ - SShaderProfile() - : m_iShaderProfileQuality(eSQ_High) - , m_nShaderProfileFlags(SPF_LOADNORMALALPHA) - { - } - - EShaderQuality GetShaderQuality() const - { - return (EShaderQuality)CLAMP(m_iShaderProfileQuality, 0, eSQ_VeryHigh); - } - - void SetShaderQuality(const EShaderQuality& rValue) - { - m_iShaderProfileQuality = (int)rValue; - } - - // ---------------------------------------------------------------- - - int m_iShaderProfileQuality; // EShaderQuality e.g. eSQ_Medium, use Get/Set functions if possible - uint32 m_nShaderProfileFlags; // SPF_... -}; - -//==================================================================================== -// Phys. material flags - -#define MATF_NOCLIP 1 - -//==================================================================================== -// Registered shader techniques ID's - -enum EShaderTechniqueID -{ - TTYPE_GENERAL = -1, - TTYPE_Z = 0, - TTYPE_SHADOWGEN, - TTYPE_GLOWPASS, - TTYPE_MOTIONBLURPASS, - TTYPE_CUSTOMRENDERPASS, - TTYPE_EFFECTLAYER, - TTYPE_SOFTALPHATESTPASS, - TTYPE_WATERREFLPASS, - TTYPE_WATERCAUSTICPASS, - TTYPE_ZPREPASS, - TTYPE_PARTICLESTHICKNESSPASS, - - // PC specific techniques must go after this point, to support shader serializing - // TTYPE_CONSOLE_MAX must equal TTYPE_MAX for console - TTYPE_CONSOLE_MAX, - TTYPE_DEBUG = TTYPE_CONSOLE_MAX, - - TTYPE_MAX -}; - -//==================================================================================== - -// EFSLIST_ lists -// Note - declaration order/index value has no explicit meaning. - -enum ERenderListID -{ - EFSLIST_INVALID = 0, // Don't use, internally used. - EFSLIST_PREPROCESS, // Pre-process items. - EFSLIST_GENERAL, // Opaque ambient_light+shadow passes. - EFSLIST_SHADOW_GEN, // Shadow map generation. - EFSLIST_DECAL, // Opaque or transparent decals. - EFSLIST_WATER_VOLUMES, // After decals. - EFSLIST_TRANSP, // Sorted by distance under-water render items. - EFSLIST_WATER, // Water-ocean render items. - EFSLIST_HDRPOSTPROCESS, // Hdr post-processing screen effects. - EFSLIST_AFTER_HDRPOSTPROCESS, // After hdr post-processing screen effects. - EFSLIST_POSTPROCESS, // Post-processing screen effects. - EFSLIST_AFTER_POSTPROCESS, // After post-processing screen effects. - EFSLIST_SHADOW_PASS, // Shadow mask generation (usually from from shadow maps). - EFSLIST_DEFERRED_PREPROCESS, // Pre-process before deferred passes. - EFSLIST_SKIN, // Skin rendering pre-process - EFSLIST_HALFRES_PARTICLES, // Half resolution particles - EFSLIST_PARTICLES_THICKNESS, // Particles thickness passes - EFSLIST_LENSOPTICS, // Lens-optics processing - EFSLIST_VOXELIZE, // Mesh voxelization - EFSLIST_EYE_OVERLAY, // Eye overlay layer requires special processing - EFSLIST_FOG_VOLUME, // Fog density injection passes. - EFSLIST_GPU_PARTICLE_CUBEMAP_COLLISION, // Cubemaps for GPU particle cubemap depth collision - EFSLIST_REFRACTIVE_SURFACE, // After decals, used for instance for the water surface that comes with water volumes. - - EFSLIST_NUM -}; - -//================================================================ -// Different preprocess flags for shaders that require preprocessing (like recursive render to texture, screen effects, visibility check, ...) -// SShader->m_nPreprocess flags in priority order - -#define SPRID_FIRST 25 -#define SPRID_SCANTEXWATER 26 -#define FSPR_SCANTEXWATER (1 << SPRID_SCANTEXWATER) -#define SPRID_SCANTEX 27 -#define FSPR_SCANTEX (1 << SPRID_SCANTEX) -#define SPRID_SCANLCM 28 -#define FSPR_SCANLCM (1 << SPRID_SCANLCM) -#define SPRID_GENSPRITES_DEPRECATED 29 -#define FSPR_GENSPRITES_DEPRECATED (1 << SPRID_GENSPRITES_DEPRECATED) -#define SPRID_CUSTOMTEXTURE 30 -#define FSPR_CUSTOMTEXTURE (1 << SPRID_CUSTOMTEXTURE) -#define SPRID_GENCLOUDS 31 -#define FSPR_GENCLOUDS (1 << SPRID_GENCLOUDS) - -#define FSPR_MASK 0xfff00000 -#define FSPR_MAX (1 << 31) - -#define FEF_DONTSETTEXTURES 1 // Set: explicit setting of samplers (e.g. tex->Apply(1,nTexStatePoint)), not set: set sampler by sematics (e.g. $ZTarget). -#define FEF_DONTSETSTATES 2 - -// SShader::m_Flags -// Different useful flags -#define EF_RELOAD 1 // Shader needs tangent vectors array. -#define EF_FORCE_RELOAD 2 -#define EF_RELOADED 4 -#define EF_NODRAW 8 -#define EF_HASCULL 0x10 -#define EF_SUPPORTSDEFERREDSHADING_MIXED 0x20 -#define EF_SUPPORTSDEFERREDSHADING_FULL 0x40 -#define EF_SUPPORTSDEFERREDSHADING (EF_SUPPORTSDEFERREDSHADING_MIXED | EF_SUPPORTSDEFERREDSHADING_FULL) -#define EF_DECAL 0x80 -#define EF_LOADED 0x100 -#define EF_LOCALCONSTANTS 0x200 -#define EF_BUILD_TREE 0x400 -#define EF_LIGHTSTYLE 0x800 -#define EF_NOCHUNKMERGING 0x1000 -#define EF_SUNFLARES 0x2000 -#define EF_NEEDNORMALS 0x4000 // Need normals operations. -#define EF_OFFSETBUMP 0x8000 -#define EF_NOTFOUND 0x10000 -#define EF_DEFAULT 0x20000 -#define EF_SKY 0x40000 -#define EF_USELIGHTS 0x80000 -#define EF_ALLOW3DC 0x100000 -#define EF_FOGSHADER 0x200000 -#define EF_FAILED_IMPORT 0x400000 // Currently just for debug, can be removed if necessary -#define EF_PRECACHESHADER 0x800000 -#define EF_FORCEREFRACTIONUPDATE 0x1000000 -#define EF_SUPPORTSINSTANCING_CONST 0x2000000 -#define EF_SUPPORTSINSTANCING_ATTR 0x4000000 -#define EF_SUPPORTSINSTANCING (EF_SUPPORTSINSTANCING_CONST | EF_SUPPORTSINSTANCING_ATTR) -#define EF_WATERPARTICLE 0x8000000 -#define EF_CLIENTEFFECT 0x10000000 -#define EF_SYSTEM 0x20000000 -#define EF_REFRACTIVE 0x40000000 -#define EF_NOPREVIEW 0x80000000 - -#define EF_PARSE_MASK (EF_SUPPORTSINSTANCING | EF_SKY | EF_HASCULL | EF_USELIGHTS | EF_REFRACTIVE) - - -// SShader::Flags2 -// Additional Different useful flags - -#define EF2_PREPR_GENSPRITES_DEPRECATED 0x1 -#define EF2_PREPR_GENCLOUDS 0x2 -#define EF2_PREPR_SCANWATER 0x4 -#define EF2_NOCASTSHADOWS 0x8 -#define EF2_NODRAW 0x10 -#define EF2_HASOPAQUE 0x40 -#define EF2_AFTERHDRPOSTPROCESS 0x80 -#define EF2_DONTSORTBYDIST 0x100 -#define EF2_FORCE_WATERPASS 0x200 -#define EF2_FORCE_GENERALPASS 0x400 -#define EF2_AFTERPOSTPROCESS 0x800 -#define EF2_IGNORERESOURCESTATES 0x1000 -#define EF2_EYE_OVERLAY 0x2000 -#define EF2_FORCE_TRANSPASS 0x4000 -#define EF2_DEFAULTVERTEXFORMAT 0x8000 -#define EF2_FORCE_ZPASS 0x10000 -#define EF2_FORCE_DRAWLAST 0x20000 -#define EF2_FORCE_DRAWAFTERWATER 0x40000 -// free 0x80000 -#define EF2_DEPTH_FIXUP 0x100000 -#define EF2_SINGLELIGHTPASS 0x200000 -#define EF2_FORCE_DRAWFIRST 0x400000 -#define EF2_HAIR 0x800000 -#define EF2_DETAILBUMPMAPPING 0x1000000 -#define EF2_HASALPHATEST 0x2000000 -#define EF2_HASALPHABLEND 0x4000000 -#define EF2_ZPREPASS 0x8000000 -#define EF2_VERTEXCOLORS 0x10000000 -#define EF2_SKINPASS 0x20000000 -#define EF2_HW_TESSELLATION 0x40000000 -#define EF2_ALPHABLENDSHADOWS 0x80000000 - -class CCryNameR; -class CCryNameTSCRC; -struct IShader -{ -public: - // - virtual ~IShader(){} - virtual int GetID() = 0; - virtual int AddRef() = 0; - virtual int Release() = 0; - virtual int ReleaseForce() = 0; - - virtual const char* GetName() = 0; - virtual const char* GetName() const = 0; - virtual int GetFlags() const = 0; - virtual int GetFlags2() const = 0; - virtual void SetFlags2(int Flags) = 0; - virtual void ClearFlags2(int Flags) = 0; - virtual bool Reload(int nFlags, const char* szShaderName) = 0; - virtual AZStd::vector& GetPublicParams() = 0; - virtual int GetTexId () = 0; - virtual ITexture* GetBaseTexture(int* nPass, int* nTU) = 0; - virtual unsigned int GetUsedTextureTypes(void) = 0; - virtual SShaderTexSlots* GetUsedTextureSlots(int nTechnique) = 0; - virtual ECull GetCull(void) = 0; - virtual int Size(int Flags) = 0; - virtual uint64 GetGenerationMask() = 0; - virtual size_t GetNumberOfUVSets() = 0; - virtual int GetTechniqueID(int nTechnique, int nRegisteredTechnique) = 0; - virtual AZ::Vertex::Format GetVertexFormat(void) = 0; - - // D3D Effects interface - virtual bool FXSetTechnique(const CCryNameTSCRC& Name) = 0; - virtual bool FXSetPSFloat(const CCryNameR& NameParam, const Vec4 fParams[], int nParams) = 0; - virtual bool FXSetCSFloat(const CCryNameR& NameParam, const Vec4 fParams[], int nParams) = 0; - virtual bool FXSetVSFloat(const CCryNameR& NameParam, const Vec4 fParams[], int nParams) = 0; - virtual bool FXSetGSFloat(const CCryNameR& NameParam, const Vec4 fParams[], int nParams) = 0; - - virtual bool FXSetPSFloat(const char* NameParam, const Vec4 fParams[], int nParams) = 0; - virtual bool FXSetCSFloat(const char* NameParam, const Vec4 fParams[], int nParams) = 0; - virtual bool FXSetVSFloat(const char* NameParam, const Vec4 fParams[], int nParams) = 0; - virtual bool FXSetGSFloat(const char* NameParam, const Vec4 fParams[], int nParams) = 0; - - virtual bool FXBegin(uint32* uiPassCount, uint32 nFlags) = 0; - virtual bool FXBeginPass(uint32 uiPass) = 0; - virtual bool FXCommit(const uint32 nFlags) = 0; - virtual bool FXEndPass() = 0; - virtual bool FXEnd() = 0; - - virtual EShaderType GetShaderType() = 0; - virtual EShaderDrawType GetShaderDrawType() const = 0; - virtual uint32 GetVertexModificator() = 0; - - virtual void GetMemoryUsage(ICrySizer* pSizer) const = 0; - // - - static uint32 GetTextureSlot(EEfResTextures textureType) { return (uint32)textureType; } }; struct SShaderItem @@ -2546,169 +91,11 @@ struct SShaderItem int32 m_nTechnique; uint32 m_nPreprocessFlags; - SShaderItem() - { - m_pShader = NULL; - m_pShaderResources = NULL; - m_nTechnique = -1; - m_nPreprocessFlags = 1; - } - SShaderItem(IShader* pSH) - { - m_pShader = pSH; - m_pShaderResources = NULL; - m_nTechnique = -1; - m_nPreprocessFlags = 1; - } - SShaderItem(IShader* pSH, IRenderShaderResources* pRS) - { - m_pShader = pSH; - m_pShaderResources = pRS; - m_nTechnique = -1; - m_nPreprocessFlags = 1; - } - SShaderItem(IShader* pSH, IRenderShaderResources* pRS, int nTechnique) - { - m_pShader = pSH; - m_pShaderResources = pRS; - m_nTechnique = nTechnique; - m_nPreprocessFlags = 1; - } - - uint32 PostLoad(); bool Update(); bool RefreshResourceConstants(); - // Note: - // If you change this function please check bTransparent variable in CRenderMesh::Render(). - // See also: - // CRenderMesh::Render() - inline bool IsZWrite() const - { - IShader* pSH = m_pShader; - if (pSH->GetFlags() & (EF_NODRAW | EF_DECAL)) - { - return false; - } - if (pSH->GetFlags2() & EF2_FORCE_ZPASS) - { - return true; - } - if (m_pShaderResources && m_pShaderResources->IsTransparent()) - { - return false; - } - return true; - } inline struct SShaderTechnique* GetTechnique() const; - bool IsMergable(SShaderItem& PrevSI); - - void GetMemoryUsage(ICrySizer* pSizer) const - { - pSizer->AddObject(m_pShader); - pSizer->AddObject(m_pShaderResources); - } }; - -////////////////////////////////////////////////////////////////////// -// define before including - -struct CRenderChunk -{ - bool m_bUsesBones; - CREMesh* pRE; // Pointer to the mesh. - - float m_texelAreaDensity; - - uint32 nFirstIndexId; - uint32 nNumIndices; - - uint32 nFirstVertId; - uint32 nNumVerts; - - uint16 m_nMatFlags; // Material flags from originally assigned material @see EMaterialFlags. - uint16 m_nMatID; // Material Sub-object id. - - // Index of sub-object that this chunk originates from, used by sub-object hide mask. - // @see IStatObj::GetSubObject - uint32 nSubObjectIndex; - - AZ::Vertex::Format m_vertexFormat; - - ////////////////////////////////////////////////////////////////////////// - CRenderChunk() - : m_bUsesBones(false) - , pRE(0) - , m_texelAreaDensity(1.0f) - , nFirstIndexId(0) - , nNumIndices(0) - , nFirstVertId(0) - , nNumVerts(0) - , m_nMatFlags(0) - , m_nMatID(0) - , nSubObjectIndex(0) - , m_vertexFormat(eVF_P3F_C4B_T2F) - { - } - - int Size() const; - - void GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer) const - { - } -}; - -typedef DynArray TRenderChunkArray; - -////////////////////////////////////////////////////////////////////// -// DLights - -enum eDynamicLightFlags -{ - DLF_AREA_SPEC_TEX = BIT(0), - DLF_DIRECTIONAL = BIT(1), - DLF_BOX_PROJECTED_CM = BIT(2), - // BIT(3) DEPRECATED, Available for use - DLF_POST_3D_RENDERER = BIT(4), - DLF_CASTSHADOW_MAPS = BIT(5), - DLF_POINT = BIT(6), - DLF_PROJECT = BIT(7), - DLF_LIGHT_BEAM = BIT(8), - DLF_IGNORES_VISAREAS = BIT(10), - DLF_DEFERRED_CUBEMAPS = BIT(11), - DLF_HAS_CLIP_VOLUME = BIT(12), - DLF_DISABLED = BIT(13), - DLF_AREA_LIGHT = BIT(14), - DLF_USE_FOR_SVOGI = BIT(15), - // UNUSED = BIT(16), - DLF_FAKE = BIT(17), // No lighting, used for Flares, beams and such. - DLF_SUN = BIT(18), - DLF_LM = BIT(19), - DLF_THIS_AREA_ONLY = BIT(20), // Affects only current area/sector. - DLF_AMBIENT = BIT(21), // Ambient light (has name indicates, used for replacing ambient) - DLF_INDOOR_ONLY = BIT(22), // Do not affect height map. - DLF_VOLUMETRIC_FOG = BIT(23), // Affects volumetric fog. - DLF_ATTACH_TO_SUN = BIT(24), // Add only to Light Propagation Volume if it's possible. - DLF_TRACKVIEW_TIMESCRUBBING = BIT(25), // Add only to Light Propagation Volume if it's possible. - DLF_VOLUMETRIC_FOG_ONLY = BIT(26), // Affects only volumetric fog. - DLF_DEFERRED_LIGHT = BIT(27), // DEPRECATED. Remove once deferred shading by default - DLF_SPECULAROCCLUSION = BIT(28), // DEPRECATED. Remove all dependencies editor side, etc - DLF_DIFFUSEOCCLUSION = BIT(29), - DLF_CAST_TERRAIN_SHADOWS = BIT(30), // Include terrain in shadow casters - - DLF_LIGHTTYPE_MASK = (DLF_DIRECTIONAL | DLF_POINT | DLF_PROJECT | DLF_AREA_LIGHT) -}; - - -//Area light types -#define DLAT_SPHERE 0x1 -#define DLAT_RECTANGLE 0x2 -#define DLAT_POINT 0x4 - -#define DL_SHADOW_UPDATE_SHIFT 8 - -#include // <> required for Interfuscator - struct IAnimNode; struct ILightAnimWrapper @@ -2729,581 +116,3 @@ protected: IAnimNode* m_pNode; }; -struct SOpticsInstanceParameters -{ - SOpticsInstanceParameters(float brightness = 0.0f, float size = 0.0f, const ColorF& color = ColorF(), bool valid = false) : - m_brightness(brightness), - m_size(size), m_color(color), - m_isValid(valid) {} - - float m_brightness; - float m_size; - ColorF m_color; - bool m_isValid; -}; - -#define MAX_RECURSION_LEVELS 2 - -struct SRenderLight -{ - SRenderLight() - { - memset(this, 0, sizeof(SRenderLight)); - m_fLightFrustumAngle = 45.0f; - m_fRadius = 4.0f; - m_fBaseRadius = 4.0f; - m_SpecMult = m_BaseSpecMult = 1.0f; - m_ProjMatrix.SetIdentity(); - m_ObjMatrix.SetIdentity(); - m_BaseObjMatrix.SetIdentity(); - m_sName = ""; - m_pLightAnim = NULL; - m_fAreaWidth = 1; - m_fAreaHeight = 1; - m_fBoxWidth = 1.0f; - m_fBoxHeight = 1.0f; - m_fBoxLength = 1.0f; - m_fTimeScrubbed = 0.0f; - - m_fShadowBias = 1.0f; - m_fShadowSlopeBias = 1.0f; - m_fShadowResolutionScale = 1.0f; - m_nShadowMinResolution = 0; - m_fShadowUpdateMinRadius = m_fRadius; - m_nShadowUpdateRatio = 1 << DL_SHADOW_UPDATE_SHIFT; - m_nEntityId = (uint32) - 1; - m_LensOpticsFrustumAngle = 255; - m_nAttenFalloffMax = 255; - m_fAttenuationBulbSize = 0.1f; - m_fProbeAttenuation = 1.0f; - m_lightId = -1; - } - - const Vec3& GetPosition() const - { - return m_Origin; - } - void SetPosition(const Vec3& vPos) - { - m_BaseOrigin = vPos; - m_Origin = vPos; - } - - // Summary: - // Use this instead of m_Color. - void SetLightColor(const ColorF& cColor) - { - m_Color = cColor; - m_BaseColor = cColor; - } - - ITexture* GetDiffuseCubemap() const - { - return m_pDiffuseCubemap; - } - - ITexture* GetSpecularCubemap() const - { - return m_pSpecularCubemap; - } - - ITexture* GetLightTexture() const - { - return m_pLightImage ? m_pLightImage : NULL; - } - - void SetOpticsParams(const SOpticsInstanceParameters& params) - { - m_opticsParams = params; - } - - const SOpticsInstanceParameters& GetOpticsParams() const - { - return m_opticsParams; - } - - void GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer) const { /*LATER*/} - - void AcquireResources() - { - if (m_Shader.m_pShader) - { - m_Shader.m_pShader->AddRef(); - } - if (m_pLightImage) - { - m_pLightImage->AddRef(); - } - if (m_pDiffuseCubemap) - { - m_pDiffuseCubemap->AddRef(); - } - if (m_pSpecularCubemap) - { - m_pSpecularCubemap->AddRef(); - } - if (m_pLightAnim) - { - m_pLightAnim->AddRef(); - } - if (m_pLightAttenMap) - { - m_pLightAttenMap->AddRef(); - } - } - - void DropResources() - { - SAFE_RELEASE(m_Shader.m_pShader); - SAFE_RELEASE(m_pLightImage); - SAFE_RELEASE(m_pDiffuseCubemap); - SAFE_RELEASE(m_pSpecularCubemap); - SAFE_RELEASE(m_pLightAnim); - SAFE_RELEASE(m_pLightAttenMap); - } - - void SetAnimSpeed(float fAnimSpeed) - { - m_nAnimSpeed = aznumeric_caster(int_round(min(fAnimSpeed * 255.0f / 4.0f, 255.0f))); // Assuming speed multiplier in range [0, 4] - } - - float GetAnimSpeed() const - { - return ((float) m_nAnimSpeed) * (4.0f / 255.0f); - } - - void SetFalloffMax(float fMax) - { - m_nAttenFalloffMax = aznumeric_caster(int_round(fMax * 255.0f)); - } - - float GetFalloffMax() const - { - return ((float) m_nAttenFalloffMax) / 255.0f; - } - - // Calculate the scissor rectangle in screenspace that encompasses this light. These values are used to set - // the hardware scissor rect in order to clip the min/max 2d extents for the light. - // These values must be calculated and read on the render thread due to the VR tracking updates performed on the render thread. - void CalculateScissorRect(); - - //========================================================================================================================= - - // Commonly used on most code paths (64 bytes) - int16 m_Id; // Shader id - uint8 m_nStencilRef[2]; - uint32 m_n3DEngineUpdateFrameID; - uint32 m_nEntityId; // Unique entity id - uint32 m_Flags; // light flags (DLF_etc). - Vec3 m_Origin; // World space position - float m_fRadius; // xyz= Origin, w=Radius. (Do not change order) - ColorF m_Color; // w component unused - todo pack spec mul into alpha (post c3 - touches quite some code) - float m_SpecMult; // Specular multiplier - float m_fHDRDynamic; // 0 to get the same results in HDR, <0 to get darker, >0 to get brighter. - int16 m_sX; // Scissor parameters (2d extent). - int16 m_sY; - int16 m_sWidth; - int16 m_sHeight; - int m_lightId; - - // Env. probes - ITexture* m_pDiffuseCubemap; // Very small cubemap texture to make a lookup for diffuse. - ITexture* m_pSpecularCubemap; // Cubemap texture to make a lookup for local specular. - Vec3 m_ProbeExtents; - float m_fBoxWidth; - float m_fBoxHeight; - float m_fBoxLength; - float m_fProbeAttenuation; // Can be used fade out distant probes, or to manually blend between multiple co-located probes - uint8 m_nAttenFalloffMax; - uint8 m_nSortPriority; - - // Shadow map fields - struct ILightSource* m_pOwner; - ShadowMapFrustum** m_pShadowMapFrustums; - float m_fShadowBias; - float m_fShadowSlopeBias; - float m_fShadowResolutionScale; - float m_fShadowUpdateMinRadius; - uint16 m_nShadowMinResolution; - uint16 m_nShadowUpdateRatio; - uint8 m_ShadowChanMask : 4; - uint8 m_ShadowMaskIndex : 4; - - // Projector - ITexture* m_pLightAttenMap; // User can specify custom light attenuation gradient - ITexture* m_pLightImage; - Matrix44 m_ProjMatrix; - Matrix34 m_ObjMatrix; - float m_fLightFrustumAngle; - float m_fProjectorNearPlane; - - // Misc fields. todo: put in cold data struct (post c3 - touches quite some code) - const char* m_sName; // Optional name of the light source. - SShaderItem m_Shader; // Shader item - CRenderObject* m_pObject[MAX_RECURSION_LEVELS]; // Object for light coronas and light flares. - ILightAnimWrapper* m_pLightAnim; - - Matrix34 m_BaseObjMatrix; - float m_fTimeScrubbed; - Vec3 m_BaseOrigin; // World space position. - float m_fBaseRadius; // Base radius - ColorF m_BaseColor; // w component unused.. - float m_BaseSpecMult; - - float m_fAttenuationBulbSize; - - float m_fAreaWidth; - float m_fAreaHeight; - - float m_fFogRadialLobe; // The blend ratio of two radial lobe for volumetric fog. - - AZ::u8 m_nAnimSpeed; - AZ::u8 m_nLightStyle; - AZ::u8 m_nLightPhase; - AZ::u8 m_LensOpticsFrustumAngle; // from 0 to 255, The range will be adjusted from 0 to 360 when used. - - IClipVolume* m_pClipVolumes[2]; - - SOpticsInstanceParameters m_opticsParams; // Per instance optics parameters -}; - -////////////////////////////////////////////////////////////////////// -class CDLight - : public SRenderLight -{ -public: - CDLight() - : SRenderLight() - { - } - - ~CDLight() - { - DropResources(); - } - - // Summary: - // Good for debugging. - bool IsOk() const - { - for (int i = 0; i < 3; ++i) - { - if (m_Color[i] < 0 || m_Color[i] > 100.0f || _isnan(m_Color[i])) - { - return false; - } - if (m_BaseColor[i] < 0 || m_BaseColor[i] > 100.0f || _isnan(m_BaseColor[i])) - { - return false; - } - } - return true; - } - - CDLight(const CDLight& other) - { - operator=(other); - } - - CDLight& operator=(const CDLight& dl) - { - if (this == &dl) - { - return *this; - } - - DropResources(); - - m_pOwner = dl.m_pOwner; - memcpy(m_pObject, dl.m_pObject, sizeof(m_pObject)); - m_Shader = dl.m_Shader; - m_pShadowMapFrustums = dl.m_pShadowMapFrustums; - m_pDiffuseCubemap = dl.m_pDiffuseCubemap; - m_pSpecularCubemap = dl.m_pSpecularCubemap; - m_pLightImage = dl.m_pLightImage; - m_pLightAttenMap = dl.m_pLightAttenMap; - m_sName = dl.m_sName; - m_ProjMatrix = dl.m_ProjMatrix; - m_ObjMatrix = dl.m_ObjMatrix; - m_BaseObjMatrix = dl.m_BaseObjMatrix; - m_Color = dl.m_Color; - m_BaseColor = dl.m_BaseColor; - m_Origin = dl.m_Origin; - m_BaseOrigin = dl.m_BaseOrigin; - m_fRadius = dl.m_fRadius; - m_fBaseRadius = dl.m_fBaseRadius; - m_ProbeExtents = dl.m_ProbeExtents; - m_SpecMult = dl.m_SpecMult; - m_BaseSpecMult = dl.m_BaseSpecMult; - m_fShadowBias = dl.m_fShadowBias; - m_fShadowSlopeBias = dl.m_fShadowSlopeBias; - m_fShadowResolutionScale = dl.m_fShadowResolutionScale; - m_fHDRDynamic = dl.m_fHDRDynamic; - m_LensOpticsFrustumAngle = dl.m_LensOpticsFrustumAngle; - m_fLightFrustumAngle = dl.m_fLightFrustumAngle; - m_fProjectorNearPlane = dl.m_fProjectorNearPlane; - m_Flags = dl.m_Flags; - m_Id = dl.m_Id; - m_n3DEngineUpdateFrameID = dl.m_n3DEngineUpdateFrameID; - m_sX = dl.m_sX; - m_sY = dl.m_sY; - m_sWidth = dl.m_sWidth; - m_sHeight = dl.m_sHeight; - m_nLightStyle = dl.m_nLightStyle; - m_nLightPhase = dl.m_nLightPhase; - m_ShadowChanMask = dl.m_ShadowChanMask; - m_pLightAnim = dl.m_pLightAnim; - m_fAreaWidth = dl.m_fAreaWidth; - m_fAreaHeight = dl.m_fAreaHeight; - m_fBoxWidth = dl.m_fBoxWidth; - m_fBoxHeight = dl.m_fBoxHeight; - m_fBoxLength = dl.m_fBoxLength; - m_fTimeScrubbed = dl.m_fTimeScrubbed; - m_nShadowMinResolution = dl.m_nShadowMinResolution; - m_fShadowUpdateMinRadius = dl.m_fShadowUpdateMinRadius; - m_nShadowUpdateRatio = dl.m_nShadowUpdateRatio; - m_nAnimSpeed = dl.m_nAnimSpeed; - m_nSortPriority = dl.m_nSortPriority; - m_nAttenFalloffMax = dl.m_nAttenFalloffMax; - m_fProbeAttenuation = dl.m_fProbeAttenuation; - m_fAttenuationBulbSize = dl.m_fAttenuationBulbSize; - m_fFogRadialLobe = dl.m_fFogRadialLobe; - m_nEntityId = dl.m_nEntityId; - memcpy(m_nStencilRef, dl.m_nStencilRef, sizeof(m_nStencilRef)); - memcpy(m_pClipVolumes, dl.m_pClipVolumes, sizeof(m_pClipVolumes)); - m_opticsParams = dl.m_opticsParams; - AcquireResources(); - - return *this; - } - - // Summary: - // Use this instead of m_Color. - const ColorF& GetFinalColor([[maybe_unused]] const ColorF& cColor) const - { - return m_Color; - } - - // Summary: - // Use this instead of m_Color. - void SetSpecularMult(float fSpecMult) - { - m_SpecMult = fSpecMult; - m_BaseSpecMult = fSpecMult; - } - - void SetShadowBiasParams(float fShadowBias, float fShadowSlopeBias) - { - m_fShadowBias = fShadowBias; - m_fShadowSlopeBias = fShadowSlopeBias; - } - - // Summary: - // Use this instead of m_Color. - const float& GetSpecularMult() const - { - return m_SpecMult; - } - void SetMatrix(const Matrix34& Matrix, bool reset = true) - { - // Scale the cubemap to adjust the default 45 degree 1/2 angle fustrum to - // the desired angle (0 to 90 degrees). - float scaleFactor = tan_tpl((90.0f - m_fLightFrustumAngle) * gf_PI / 180.0f); - m_ProjMatrix = Matrix33(Matrix) * Matrix33::CreateScale(Vec3(1, scaleFactor, scaleFactor)); - Matrix44 transMat; - transMat.SetIdentity(); - transMat(3, 0) = -Matrix(0, 3); - transMat(3, 1) = -Matrix(1, 3); - transMat(3, 2) = -Matrix(2, 3); - m_ProjMatrix = transMat * m_ProjMatrix; - m_ObjMatrix = Matrix; - - // Remove any scale - m_ObjMatrix.GetColumn0().NormalizeSafe(Vec3_OneX); - m_ObjMatrix.GetColumn1().NormalizeSafe(Vec3_OneY); - m_ObjMatrix.GetColumn2().NormalizeSafe(Vec3_OneZ); - - if (reset) - { - m_BaseObjMatrix = m_ObjMatrix; - } - } - - void SetSpecularCubemap(ITexture* texture) - { - m_pSpecularCubemap = texture; - } - - void SetDiffuseCubemap(ITexture* texture) - { - m_pDiffuseCubemap = texture; - } - - void ReleaseCubemaps() - { - SAFE_RELEASE(m_pSpecularCubemap); - SAFE_RELEASE(m_pDiffuseCubemap); - } -}; - -#define DECAL_HAS_NORMAL_MAP (1 << 0) -#define DECAL_STATIC (1 << 1) -#define DECAL_HAS_SPECULAR_MAP (1 << 2) - -struct SDeferredDecal -{ - SDeferredDecal() - { - ZeroStruct(*this); - rectTexture.w = rectTexture.h = 1.f; - angleAttenuation = 1.0f; - } - - Matrix34 projMatrix; // defines where projection should be applied in the world - _smart_ptr pMaterial; // decal material - float fAlpha; // transparency of decal, used mostly for distance fading - float fGrowAlphaRef; - float angleAttenuation; - RectF rectTexture; // subset of texture to render - uint32 nFlags; - uint8 nSortOrder; // user defined sort order -}; - -// Summary: -// Runtime shader flags for HW skinning. -enum EHWSkinningRuntimeFlags -{ - eHWS_MotionBlured = 0x04, - eHWS_Skinning_DQ_Linear = 0x08, // Convert dual-quaternions to matrices on the GPU - eHWS_Skinning_Matrix = 0x10, // Pass float3x4 skinning matrices directly to the GPU -}; - -// Enum of data types that can be used as bones on GPU for skinning -enum EBoneTypes -{ - eBoneType_DualQuat = 0, - eBoneType_Matrix, - eBoneType_Count, -}; - -// Summary: -// Shader graph support. -enum EGrBlockType -{ - eGrBlock_Unknown, - eGrBlock_VertexInput, - eGrBlock_VertexOutput, - eGrBlock_PixelInput, - eGrBlock_PixelOutput, - eGrBlock_Texture, - eGrBlock_Sampler, - eGrBlock_Function, - eGrBlock_Constant, -}; - -enum EGrBlockSamplerType -{ - eGrBlockSampler_Unknown, - eGrBlockSampler_2D, - eGrBlockSampler_3D, - eGrBlockSampler_Cube, - eGrBlockSampler_Bias2D, - eGrBlockSampler_BiasCube, -}; - -enum EGrNodeType -{ - eGrNode_Unknown, - eGrNode_Input, - eGrNode_Output, -}; - -enum EGrNodeFormat -{ - eGrNodeFormat_Unknown, - eGrNodeFormat_Float, - eGrNodeFormat_Vector, - eGrNodeFormat_Matrix, - eGrNodeFormat_Int, - eGrNodeFormat_Bool, - eGrNodeFormat_Texture2D, - eGrNodeFormat_Texture3D, - eGrNodeFormat_TextureCUBE, -}; - -enum EGrNodeIOSemantic -{ - eGrNodeIOSemantic_Unknown, - eGrNodeIOSemantic_Custom, - eGrNodeIOSemantic_VPos, - eGrNodeIOSemantic_Color0, - eGrNodeIOSemantic_Color1, - eGrNodeIOSemantic_Color2, - eGrNodeIOSemantic_Color3, - eGrNodeIOSemantic_Normal, - eGrNodeIOSemantic_TexCoord0, - eGrNodeIOSemantic_TexCoord1, - eGrNodeIOSemantic_TexCoord2, - eGrNodeIOSemantic_TexCoord3, - eGrNodeIOSemantic_TexCoord4, - eGrNodeIOSemantic_TexCoord5, - eGrNodeIOSemantic_TexCoord6, - eGrNodeIOSemantic_TexCoord7, - eGrNodeIOSemantic_Tangent, - eGrNodeIOSemantic_Binormal, -}; - -struct SShaderGraphFunction -{ - AZStd::string m_Data; - AZStd::string m_Name; - std::vector inParams; - std::vector outParams; - std::vector szInTypes; - std::vector szOutTypes; -}; - -struct SShaderGraphNode -{ - EGrNodeType m_eType; - EGrNodeFormat m_eFormat; - EGrNodeIOSemantic m_eSemantic; - AZStd::string m_CustomSemantics; - AZStd::string m_Name; - bool m_bEditable; - bool m_bWasAdded; - SShaderGraphFunction* m_pFunction; - AZStd::vector m_Properties; - - SShaderGraphNode() - { - m_eType = eGrNode_Unknown; - m_eFormat = eGrNodeFormat_Unknown; - m_eSemantic = eGrNodeIOSemantic_Unknown; - m_bEditable = false; - m_bWasAdded = false; - m_pFunction = NULL; - } - ~SShaderGraphNode(); -}; - - -typedef std::vector FXShaderGraphNodes; -typedef FXShaderGraphNodes::iterator FXShaderGraphNodeItor; - -struct SShaderGraphBlock -{ - EGrBlockType m_eType; - EGrBlockSamplerType m_eSamplerType; - AZStd::string m_ClassName; - FXShaderGraphNodes m_Nodes; - - ~SShaderGraphBlock(); -}; - -typedef std::vector FXShaderGraphBlocks; -typedef FXShaderGraphBlocks::iterator FXShaderGraphBlocksItor; - -#include - -#endif // CRYINCLUDE_CRYCOMMON_ISHADER_H diff --git a/Code/Legacy/CryCommon/ISplines.h b/Code/Legacy/CryCommon/ISplines.h index 2353489163..a1c5c674b0 100644 --- a/Code/Legacy/CryCommon/ISplines.h +++ b/Code/Legacy/CryCommon/ISplines.h @@ -11,8 +11,8 @@ #define CRYINCLUDE_CRYCOMMON_ISPLINES_H #pragma once -#include #include +#include ////////////////////////////////////////////////////////////////////////// @@ -638,7 +638,7 @@ namespace spline ////////////////////////////////////////////////////////////////////////// static void Reflect(AZ::SerializeContext* serializeContext) {} - + inline void add_ref() { ++m_refCount; diff --git a/Code/Legacy/CryCommon/IStatObj.h b/Code/Legacy/CryCommon/IStatObj.h index 4921ab3a25..b2cde275c5 100644 --- a/Code/Legacy/CryCommon/IStatObj.h +++ b/Code/Legacy/CryCommon/IStatObj.h @@ -17,14 +17,13 @@ struct ShadowMapFrustum; struct SRenderingPassInfo; struct SRendItemSorter; -struct IShader; +struct ITetrLattice; struct SPhysGeomArray; struct CStatObj; class CRenderObject; class CDLight; class IReadStream; -class CRenderObject; class CLodValue; @@ -35,13 +34,12 @@ struct phys_geometry; struct IChunkFile; // General forward declaration. -class CRenderObject; struct SMeshLodInfo; -#include "CryHeaders.h" +#include "Cry_Color.h" #include "Cry_Math.h" #include "Cry_Geo.h" -#include "IPhysics.h" +#include "CrySizer.h" #define MAX_STATOBJ_LODS_NUM 6 @@ -148,70 +146,6 @@ enum EFileStreamingStatus ecss_Ready }; -// Interface for streaming of objects like CStatObj. -struct IStreamable -{ - struct SInstancePriorityInfo - { - int nRoundId; - float fMaxImportance; - }; - - IStreamable() - { - ZeroStruct(m_arrUpdateStreamingPrioriryRoundInfo); - m_eStreamingStatus = ecss_NotLoaded; - fCurImportance = 0; - m_nSelectedFrameId = 0; - m_nStatsInUse = 0; - } - - bool UpdateStreamingPrioriryLowLevel(float fImportance, int nRoundId, bool bFullUpdate) - { - bool bRegister = false; - - if (m_arrUpdateStreamingPrioriryRoundInfo[0].nRoundId != nRoundId) - { - if (!m_arrUpdateStreamingPrioriryRoundInfo[0].nRoundId) - { - bRegister = true; - } - - m_arrUpdateStreamingPrioriryRoundInfo[1] = m_arrUpdateStreamingPrioriryRoundInfo[0]; - - m_arrUpdateStreamingPrioriryRoundInfo[0].nRoundId = nRoundId; - m_arrUpdateStreamingPrioriryRoundInfo[0].fMaxImportance = fImportance; - } - else - { - m_arrUpdateStreamingPrioriryRoundInfo[0].fMaxImportance = max(m_arrUpdateStreamingPrioriryRoundInfo[0].fMaxImportance, fImportance); - } - - if (bFullUpdate) - { - m_arrUpdateStreamingPrioriryRoundInfo[1] = m_arrUpdateStreamingPrioriryRoundInfo[0]; - m_arrUpdateStreamingPrioriryRoundInfo[1].nRoundId--; - } - - return bRegister; - } - - // - virtual ~IStreamable(){} - virtual void StartStreaming(bool bFinishNow, IReadStream_AutoPtr* ppStream) = 0; - virtual int GetStreamableContentMemoryUsage(bool bJustForDebug = false) = 0; - virtual void ReleaseStreamableContent() = 0; - virtual void GetStreamableName(AZStd::string& sName) = 0; - virtual uint32 GetLastDrawMainFrameId() = 0; - virtual bool IsUnloadable() const = 0; - - SInstancePriorityInfo m_arrUpdateStreamingPrioriryRoundInfo[2]; - float fCurImportance; - EFileStreamingStatus m_eStreamingStatus; - uint32 m_nSelectedFrameId : 31; - uint32 m_nStatsInUse : 1; -}; - struct SMeshBoneMapping_uint8; struct SSpine; struct SMeshColor; @@ -219,7 +153,6 @@ struct SMeshColor; // Summary: // Interface to hold static object data struct IStatObj - : public IStreamable { //! Loading flags enum ELoadingFlags @@ -260,50 +193,6 @@ struct IStatObj }; ////////////////////////////////////////////////////////////////////////// - // Statistics information about this object. - struct SStatistics - { - int nVertices; - int nVerticesPerLod[MAX_STATOBJ_LODS_NUM]; - int nIndices; - int nIndicesPerLod[MAX_STATOBJ_LODS_NUM]; - int nMeshSize; - int nMeshSizeLoaded; - int nPhysProxySize; - int nPhysProxySizeMax; - int nPhysPrimitives; - int nDrawCalls; - int nLods; - int nSubMeshCount; - int nNumRefs; - bool bSplitLods; // Lods split between files. - - // Optional texture sizer. - ICrySizer* pTextureSizer; - ICrySizer* pTextureSizer2; - - SStatistics() { Reset(); } - - void Reset() - { - pTextureSizer = NULL; - pTextureSizer2 = NULL; - nVertices = 0; - nIndices = 0; - nMeshSize = 0; - nMeshSizeLoaded = 0; - nNumRefs = 0; - nPhysProxySize = 0; - nPhysPrimitives = 0; - nDrawCalls = 0; - nLods = 0; - nSubMeshCount = 0; - bSplitLods = false; - ZeroStruct(nVerticesPerLod); - ZeroStruct(nIndicesPerLod); - } - }; - // // Description: // Increase the reference count of the object. @@ -335,10 +224,6 @@ struct IStatObj // Retrieves the internal flag m_nVehicleOnlyPhysics. virtual unsigned int GetVehicleOnlyPhysics() = 0; - // Description: - // Retrieves the internal flag m_nIdMaterialBreakable. - virtual int GetIDMatBreakable() = 0; - // Description: // Retrieves the internal flag m_bBreakableByGame. virtual unsigned int GetBreakableByGame() = 0; @@ -362,34 +247,6 @@ struct IStatObj //! Access to rendering geometry for indoor engine ( optimized vert arrays, lists of shader pointers ) virtual struct IRenderMesh* GetRenderMesh() = 0; - // Description: - // Returns the physical representation of the object. - // Arguments: - // nType - one of PHYS_GEOM_TYPE_'s, or an explicit slot index - // Return Value: - // A pointer to a phys_geometry structure. - // Summary: - // Get the physic representation - virtual phys_geometry* GetPhysGeom(int nType = PHYS_GEOM_TYPE_DEFAULT) = 0; - - // Description: - // Updates rendermesh's vertices, normals, and tangents with the data provided - // Summary: - // Updates vertices in the range [iVtx0..iVtx0+nVtx-1], vertices are in their original order - // (as they are physicalized). Clones the object if necessary to make the modifications - // Return Value: - // modified IStatObj (a clone or this one, if it's already a clone) - virtual IStatObj* UpdateVertices(strided_pointer pVtx, strided_pointer pNormals, int iVtx0, int nVtx, int* pVtxMap = 0, float rscale = 1.f) = 0; - - // Description: - // Skins rendermesh's vertices based on skeleton vertices - // Summary: - // Skins vertices based on mtxSkelToMesh[pSkelVtx[i]] - // Clones the object if necessary to make the modifications - // Return Value: - // modified IStatObj (a clone or this one, if it's already a clone) - virtual IStatObj* SkinVertices(strided_pointer pSkelVtx, const Matrix34& mtxSkelToMesh) = 0; - // Description: // Sets and replaces the physical representation of the object. // Arguments: @@ -399,10 +256,6 @@ struct IStatObj // Set the physic representation virtual void SetPhysGeom(phys_geometry* pPhysGeom, int nType = 0) = 0; - // Description: - // Returns a tetrahedral lattice, if any (used for breakable objects) - virtual ITetrLattice* GetTetrLattice() = 0; - virtual float GetAIVegetationRadius() const = 0; virtual void SetAIVegetationRadius(float radius) = 0; @@ -433,18 +286,6 @@ struct IStatObj // Get the minimal bounding box component virtual Vec3 GetBoxMax() = 0; - // Return Value: - // A Vec3 object containing the bounding box center. - // Summary: - // Get the center of bounding box - virtual const Vec3 GetVegCenter() = 0; - - // Arguments: - // Minimum bounding box component - // Summary: - // Set the minimum bounding box component - virtual void SetBBoxMin(const Vec3& vBBoxMin) = 0; - // Arguments: // Minimum bounding box component // Summary: @@ -504,17 +345,9 @@ struct IStatObj virtual int FindNearesLoadedLOD(int nLodIn, bool bSearchUp = false) = 0; virtual int FindHighestLOD(int nBias) = 0; - virtual bool LoadCGF(const char* filename, bool bLod, unsigned long nLoadingFlags, const void* pData, const int nDataSize) = 0; - virtual void DisableStreaming() = 0; - virtual void TryMergeSubObjects(bool bFromStreaming) = 0; - virtual bool IsUnloadable() const = 0; - virtual void SetCanUnload(bool value) = 0; - virtual AZStd::string& GetFileName() = 0; virtual const AZStd::string& GetFileName() const = 0; - virtual const AZStd::string& GetCGFNodeName() const = 0; - // Summary: // Returns the filename of the object // Return Value: @@ -529,25 +362,6 @@ struct IStatObj // None virtual void SetFilePath(const char* szFileName) = 0; - // Summary: - // Returns the name of the geometry - // Return Value: - // A null terminated string which contains the name of the geometry - virtual const char* GetGeoName() = 0; - - // Summary: - // Sets the name of the geometry - virtual void SetGeoName(const char* szGeoName) = 0; - - // Summary: - // Compares if another object is the same - // Arguments: - // szFileName - Filename of the object to compare - // szGeomName - Geometry name of the object to compare (optional) - // Return Value: - // A boolean which equals to true in case both object are the same, or false in the opposite case. - virtual bool IsSameObject(const char* szFileName, const char* szGeomName) = 0; - // Description: // Will return the position of the helper named in the argument. The // helper should have been specified during the exporting process of @@ -635,15 +449,6 @@ struct IStatObj // adds a new sub object virtual IStatObj::SSubObject& AddSubObject(IStatObj* pStatObj) = 0; - // Summary: - // Adds subobjects to pent, meshes as parts, joint helpers as breakable joints - virtual int PhysicalizeSubobjects(IPhysicalEntity* pent, const Matrix34* pMtx, float mass, float density = 0.0f, int id0 = 0, strided_pointer pJointsIdMap = 0, const char* szPropsOverride = 0) = 0; - // Summary: - // Adds all phys geometries to pent, assigns ids starting from id; takes mass and density from the StatObj properties if not set in pgp - // for compound objects calls PhysicalizeSubobjects - // returns the physical id of the last physicalized part - virtual int Physicalize(IPhysicalEntity* pent, pe_geomparams* pgp, int id = 0, const char* szPropsOverride = 0) = 0; - virtual bool IsDeformable() = 0; ////////////////////////////////////////////////////////////////////////// @@ -690,9 +495,6 @@ struct IStatObj // hides all non-physicalized geometry, clones the object if necessary virtual IStatObj* HideFoliage() = 0; - // serializes the StatObj's mesh into a stream - virtual int Serialize(TSerialize ser) = 0; - // Get object properties as loaded from CGF. virtual const char* GetProperties() = 0; @@ -713,9 +515,6 @@ struct IStatObj // Debug Draw this static object. virtual void DebugDraw(const struct SGeometryDebugDrawInfo& info, float fExtrdueScale = 0.01f) = 0; - // Fill statistics about the level. - virtual void GetStatistics(SStatistics& stats) = 0; - // Returns initial hide mask virtual uint64 GetInitialHideMask() = 0; @@ -768,12 +567,6 @@ struct IStatObj virtual bool UpdateStreamableComponents(float fImportance, const Matrix34A& objMatrix, bool bFullUpdate, int nNewLod) = 0; - virtual void RenderInternal(CRenderObject* pRenderObject, uint64 nSubObjectHideMask, const CLodValue& lodValue, const SRenderingPassInfo& passInfo, const SRendItemSorter& rendItemSorter, bool forceStaticDraw) = 0; - virtual void RenderObjectInternal(CRenderObject* pRenderObject, int nLod, uint8 uLodDissolveRef, bool dissolveOut, const SRenderingPassInfo& passInfo, const SRendItemSorter& rendItemSorter, bool forceStaticDraw) = 0; - virtual void RenderSubObject(CRenderObject* pRenderObject, int nLod, int nSubObjId, const Matrix34A& renderTM, const SRenderingPassInfo& passInfo, const SRendItemSorter& rendItemSorter, bool forceStaticDraw) = 0; - virtual void RenderSubObjectInternal(CRenderObject* pRenderObject, int nLod, const SRenderingPassInfo& passInfo, const SRendItemSorter& rendItemSorter, bool forceStaticDraw) = 0; - virtual void RenderRenderMesh(CRenderObject* pObj, struct SInstancingInfo* pInstInfo, const SRenderingPassInfo& passInfo, const SRendItemSorter& rendItemSorter) = 0; - virtual SPhysGeomArray& GetArrPhysGeomInfo() = 0; virtual bool IsLodsAreLoadedFromSeparateFile() = 0; diff --git a/Code/Legacy/CryCommon/IStereoRenderer.h b/Code/Legacy/CryCommon/IStereoRenderer.h deleted file mode 100644 index 63fba6d214..0000000000 --- a/Code/Legacy/CryCommon/IStereoRenderer.h +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef __ISTEREORENDERER_H__ -#define __ISTEREORENDERER_H__ - -#pragma once - -#include "StereoRendererBus.h" - -enum EStereoEye -{ - STEREO_EYE_LEFT = 0, - STEREO_EYE_RIGHT = 1, - STEREO_EYE_COUNT -}; - -enum EStereoDevice -{ - STEREO_DEVICE_NONE = 0, - STEREO_DEVICE_FRAMECOMP = 1, - STEREO_DEVICE_HDMI = 2, - STEREO_DEVICE_DRIVER = 3, //!< Nvidia and AMD drivers. - STEREO_DEVICE_DUALHEAD = 4, - STEREO_DEVICE_COUNT, - - STEREO_DEVICE_DEFAULT = 100 //!< Auto-detect device. -}; - -enum EStereoMode -{ - STEREO_MODE_NO_STEREO = 0, //!< Stereo disabled. - STEREO_MODE_DUAL_RENDERING = 1, - STEREO_MODE_COUNT, -}; - -enum EStereoOutput -{ - STEREO_OUTPUT_STANDARD = 0, - STEREO_OUTPUT_IZ3D = 1, - STEREO_OUTPUT_CHECKERBOARD = 2, - STEREO_OUTPUT_ABOVE_AND_BELOW = 3, - STEREO_OUTPUT_SIDE_BY_SIDE = 4, - STEREO_OUTPUT_LINE_BY_LINE = 5, - STEREO_OUTPUT_ANAGLYPH = 6, - STEREO_OUTPUT_HMD = 7, - STEREO_OUTPUT_COUNT, -}; - -enum EStereoDeviceState -{ - STEREO_DEVSTATE_OK = 0, - STEREO_DEVSTATE_UNSUPPORTED_DEVICE, - STEREO_DEVSTATE_REQ_1080P, - STEREO_DEVSTATE_REQ_FRAMEPACKED, - STEREO_DEVSTATE_BAD_DRIVER, - STEREO_DEVSTATE_REQ_FULLSCREEN -}; - -class IStereoRenderer - : public AZ::StereoRendererRequestBus::Handler -{ -public: - enum EHmdRender - { - eHR_Eyes = 0, - eHR_Latency - }; - - // - virtual ~IStereoRenderer(){} - - virtual EStereoDevice GetDevice() = 0; - virtual EStereoDeviceState GetDeviceState() = 0; - virtual void GetInfo(EStereoDevice* device, EStereoMode* mode, EStereoOutput* output, EStereoDeviceState* state) const = 0; - - virtual bool GetStereoEnabled() = 0; - virtual float GetStereoStrength() = 0; - virtual float GetMaxSeparationScene(bool half = true) = 0; - virtual float GetZeroParallaxPlaneDist() = 0; - - virtual void OnHmdDeviceChanged() = 0; - - virtual void OnResolutionChanged() {} - - virtual void GetNVControlValues(bool& stereoEnabled, float& stereoStrength) = 0; - // - - enum class Status - { - kRenderingFirstEye, - kRenderingSecondEye, - kIdle ///< Not currently rendering to either eye. - }; - - virtual Status GetStatus() const = 0; -}; - -#endif diff --git a/Code/Legacy/CryCommon/ISystem.h b/Code/Legacy/CryCommon/ISystem.h index 74153eb39b..722e73c774 100644 --- a/Code/Legacy/CryCommon/ISystem.h +++ b/Code/Legacy/CryCommon/ISystem.h @@ -624,8 +624,6 @@ struct SSystemGlobalEnvironment ISystem* pSystem = nullptr; ILog* pLog; IMovieSystem* pMovieSystem; - INameTable* pNameTable; - IRenderer* pRenderer; ILyShine* pLyShine; SharedEnvironmentInstance* pSharedEnvironment; @@ -852,7 +850,6 @@ struct ISystem // virtual IViewSystem* GetIViewSystem() = 0; virtual ILevelSystem* GetILevelSystem() = 0; - virtual INameTable* GetINameTable() = 0; virtual ICmdLine* GetICmdLine() = 0; virtual ILog* GetILog() = 0; virtual AZ::IO::IArchive* GetIPak() = 0; @@ -1098,62 +1095,6 @@ struct ISystem using CrySystemNotificationBus = AZ::EBus; }; -#if defined(USE_DISK_PROFILER) - -struct DiskOperationInfo -{ - DiskOperationInfo() - : m_nSeeksCount(0) - , m_nFileOpenCount(0) - , m_nFileReadCount(0) - , m_dOperationSize(0.) - , m_dOperationTime(0.) {} - int m_nSeeksCount; - int m_nFileOpenCount; - int m_nFileReadCount; - double m_dOperationTime; - double m_dOperationSize; - - DiskOperationInfo& operator -= (const DiskOperationInfo& rv) - { - m_nSeeksCount -= rv.m_nSeeksCount; - m_nFileOpenCount -= rv.m_nFileOpenCount; - m_nFileReadCount -= rv.m_nFileReadCount; - m_dOperationSize -= rv.m_dOperationSize; - m_dOperationTime -= rv.m_dOperationTime; - return *this; - } - - DiskOperationInfo& operator += (const DiskOperationInfo& rv) - { - m_nSeeksCount += rv.m_nSeeksCount; - m_nFileOpenCount += rv.m_nFileOpenCount; - m_nFileReadCount += rv.m_nFileReadCount; - m_dOperationSize += rv.m_dOperationSize; - m_dOperationTime += rv.m_dOperationTime; - return *this; - } - - DiskOperationInfo operator - (const DiskOperationInfo& rv) - { - DiskOperationInfo res(*this); - return res -= rv; - } - - DiskOperationInfo operator + (const DiskOperationInfo& rv) - { - DiskOperationInfo res(*this); - return res += rv; - } -}; - -#endif - -#define LOADING_TIME_PROFILE_SECTION -#define LOADING_TIME_PROFILE_SECTION_ARGS(...) -#define LOADING_TIME_PROFILE_SECTION_NAMED(sectionName) -#define LOADING_TIME_PROFILE_SECTION_NAMED_ARGS(sectionName, ...) - ////////////////////////////////////////////////////////////////////////// // CrySystem DLL Exports. ////////////////////////////////////////////////////////////////////////// @@ -1373,9 +1314,6 @@ namespace Detail bool IsConstCVar() const { return true; } void SetOnChangeCallback(ConsoleVarFunc pChangeFunc) { (void)pChangeFunc; } uint64 AddOnChangeFunctor(const SFunctor& pChangeFunctor) { (void)pChangeFunctor; return 0; } - uint64 GetNumberOfOnChangeFunctors() const { return 0; } - const SFunctor& GetOnChangeFunctor([[maybe_unused]] uint64 nFunctorIndex) const { InvalidAccess(); SFunctor* pNull = nullptr; return *pNull; } - bool RemoveOnChangeFunctor([[maybe_unused]] const uint64 nElement) { return true; } ConsoleVarFunc GetOnChangeCallback() const { InvalidAccess(); return NULL; } void GetMemoryUsage([[maybe_unused]] class ICrySizer* pSizer) const {} int GetRealIVal() const { return GetIVal(); } @@ -1654,11 +1592,4 @@ inline void CryLogAlways(const char* format, ...) } #endif // EXCLUDE_NORMAL_LOG - -////////////////////////////////////////////////////////////////////////// -// Additional headers. -////////////////////////////////////////////////////////////////////////// -#include - #endif // CRYINCLUDE_CRYCOMMON_ISYSTEM_H - diff --git a/Code/Legacy/CryCommon/ITexture.h b/Code/Legacy/CryCommon/ITexture.h index 170e3b6709..b370005f83 100644 --- a/Code/Legacy/CryCommon/ITexture.h +++ b/Code/Legacy/CryCommon/ITexture.h @@ -5,60 +5,12 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ - - -#ifndef CRYINCLUDE_CRYCOMMON_ITEXTURE_H -#define CRYINCLUDE_CRYCOMMON_ITEXTURE_H #pragma once -#include - -#include "Cry_Math.h" -#include "Cry_Color.h" -#include "Tarray.h" -#include -class CTexture; - -#ifndef COMPILER_SUPPORTS_ENUM_SPECIFICATION -# if defined(_MSC_VER) -# define COMPILER_SUPPORTS_ENUM_SPECIFICATION 1 -# else -# define COMPILER_SUPPORTS_ENUM_SPECIFICATION 0 -# endif -#endif - -#if COMPILER_SUPPORTS_ENUM_SPECIFICATION -enum ETEX_Type : uint8 -#else -typedef uint8 ETEX_Type; -enum eTEX_Type -#endif -{ - eTT_1D = 0, - eTT_2D, - eTT_3D, - eTT_Cube, - eTT_CubeArray, - eTT_Dyn2D, - eTT_User, - eTT_NearestCube, - - eTT_2DArray, - eTT_2DMS, - - eTT_Auto2D, - - eTT_MaxTexType, // not used -}; - +#include // Texture formats -#if COMPILER_SUPPORTS_ENUM_SPECIFICATION -enum ETEX_Format : uint8 -#else -typedef uint8 ETEX_Format; -enum eTEX_Format -#endif +enum ETEX_Format : AZ::u8 { eTF_Unknown = 0, eTF_R8G8B8A8S, @@ -147,277 +99,20 @@ enum eTEX_Format eTF_MaxFormat // unused, must be always the last in the list }; -#if COMPILER_SUPPORTS_ENUM_SPECIFICATION -enum ETEX_TileMode : uint8 -#else -typedef uint8 ETEX_TileMode; -enum eTEX_TileMode -#endif -{ - eTM_None = 0, - eTM_LinearPadded, - eTM_Optimal, -}; - - -enum ETextureFlags -{ - FT_NOMIPS = 0x00000001, - FT_TEX_NORMAL_MAP = 0x00000002, - FT_TEX_WAS_NOT_PRE_TILED = 0x00000004, - FT_USAGE_DEPTHSTENCIL = 0x00000008, - FT_USAGE_ALLOWREADSRGB = 0x00000010, - FT_FILESINGLE = 0x00000020, // suppress loading of additional files like _DDNDIF (faster, RC can tag the file for that) - FT_TEX_FONT = 0x00000040, - FT_HAS_ATTACHED_ALPHA = 0x00000080, - FT_USAGE_UNORDERED_ACCESS = 0x00000100, - FT_USAGE_READBACK = 0x00000200, - FT_USAGE_MSAA = 0x00000400, - FT_FORCE_MIPS = 0x00000800, - FT_USAGE_RENDERTARGET = 0x00001000, - FT_USAGE_DYNAMIC = 0x00002000, - FT_STAGE_READBACK = 0x00004000, - FT_STAGE_UPLOAD = 0x00008000, - FT_DONT_RELEASE = 0x00010000, - FT_ASYNC_PREPARE = 0x00020000, - FT_DONT_STREAM = 0x00040000, -#if defined(AZ_RESTRICTED_PLATFORM) - #include AZ_RESTRICTED_FILE(ITexture_h) -#endif - -#if defined(AZ_RESTRICTED_SECTION_IMPLEMENTED) - #undef AZ_RESTRICTED_SECTION_IMPLEMENTED -#else -#if defined(AZ_PLATFORM_IOS) - FT_USAGE_MEMORYLESS = 0x00080000, //reusing an unused bit for ios -#else - FT_USAGE_PREDICATED_TILING = 0x00080000, //unused -#endif -#endif - FT_FAILED = 0x00100000, - FT_FROMIMAGE = 0x00200000, - FT_STATE_CLAMP = 0x00400000, - FT_USAGE_ATLAS = 0x00800000, - FT_ALPHA = 0x01000000, - FT_REPLICATE_TO_ALL_SIDES = 0x02000000, - FT_KEEP_LOWRES_SYSCOPY = 0x04000000, // keep low res copy in system memory for voxelization on CPU - FT_SPLITTED = 0x08000000, // for split dds files - FT_USE_HTILE = 0x10000000, - FT_IGNORE_PRECACHE = 0x20000000, - FT_COMPOSITE = 0x40000000, - FT_USAGE_UAV_RWTEXTURE = 0x80000000, -}; - struct SDepthTexture; -struct STextureStreamingStats -{ - STextureStreamingStats(bool bComputeTexturesPerFrame) - : bComputeReuquiredTexturesPerFrame(bComputeTexturesPerFrame) - { - nMaxPoolSize = 0; - nCurrentPoolSize = 0; - nStreamedTexturesSize = 0; - nStaticTexturesSize = 0; - nThroughput = 0; - nNumTexturesPerFrame = 0; - nRequiredStreamedTexturesSize = 0; - nRequiredStreamedTexturesCount = 0; - bPoolOverflow = false; - bPoolOverflowTotally = false; - fPoolFragmentation = 0.0f; - } - size_t nMaxPoolSize; - size_t nCurrentPoolSize; - size_t nStreamedTexturesSize; - size_t nStaticTexturesSize; - uint32 nNumTexturesPerFrame; - size_t nThroughput; - size_t nRequiredStreamedTexturesSize; - uint32 nRequiredStreamedTexturesCount; - float fPoolFragmentation; - uint32 bPoolOverflow : 1; - uint32 bPoolOverflowTotally : 1; - const bool bComputeReuquiredTexturesPerFrame; -}; - - ////////////////////////////////////////////////////////////////////// // Texture object interface -class CDeviceTexture; class ITexture { protected: virtual ~ITexture() {} public: - - // virtual int AddRef() = 0; virtual int Release() = 0; virtual int ReleaseForce() = 0; - virtual const ColorF& GetClearColor() const = 0; - virtual const ETEX_Format GetDstFormat() const = 0; - virtual const ETEX_Format GetSrcFormat() const = 0; - virtual const ETEX_Type GetTexType() const = 0; - virtual void ApplyTexture(int nTUnit, int nState = -1) = 0; virtual const char* GetName() const = 0; - virtual const int GetWidth() const = 0; - virtual const int GetHeight() const = 0; - virtual const int GetDepth() const = 0; - virtual const int GetTextureID() const = 0; - virtual const uint32 GetFlags() const = 0; - virtual const int GetNumMips() const = 0; - virtual const int GetRequiredMip() const = 0; - virtual const int GetDeviceDataSize() const = 0; - virtual const int GetDataSize() const = 0; - virtual const ETEX_Type GetTextureType() const = 0; - // Sets the texture type of the texture to be used before the texture is loaded. - // Once the texture is loaded the type from the file will overwrite whatever - // value was set here. - virtual void SetTextureType(ETEX_Type type) = 0; - virtual const bool IsTextureLoaded() const = 0; - virtual void PrecacheAsynchronously(float fMipFactor, int nFlags, int nUpdateId, int nCounter = 1) = 0; - virtual uint8* GetData32(int nSide = 0, int nLevel = 0, uint8* pDst = NULL, ETEX_Format eDstFormat = eTF_R8G8B8A8) = 0; - virtual bool SetFilter(int nFilter) = 0; // FILTER_ flags - virtual void SetClamp(bool bEnable) = 0; // Texture addressing set - virtual float GetAvgBrightness() const = 0; - - virtual int StreamCalculateMipsSigned(float fMipFactor) const = 0; - virtual int GetStreamableMipNumber() const = 0; - virtual int GetStreamableMemoryUsage(int nStartMip) const = 0; - virtual int GetMinLoadedMip() const = 0; - - using StagingHook = AZStd::function; - virtual void Readback(AZ::u32 subresourceIndex, StagingHook callback) = 0; - - virtual bool Reload() = 0; - // Used for debugging/profiling. - virtual const char* GetFormatName() const = 0; - virtual const char* GetTypeName() const = 0; - virtual const bool IsStreamedVirtual() const = 0; - virtual const bool IsShared() const = 0; - virtual const bool IsStreamable() const = 0; - virtual bool IsStreamedIn(const int nMinPrecacheRoundIds[2]) const = 0; - virtual const int GetAccessFrameId() const = 0; - - virtual const ETEX_Format GetTextureDstFormat() const = 0; - virtual const ETEX_Format GetTextureSrcFormat() const = 0; - - virtual bool IsPostponed() const = 0; - virtual const bool IsParticularMipStreamed(float fMipFactor) const = 0; - - // get low res system memory (used for CPU voxelization) - virtual const ColorB* GetLowResSystemCopy([[maybe_unused]] uint16& nWidth, [[maybe_unused]] uint16& nHeight, [[maybe_unused]] int** ppLowResSystemCopyAtlasId) { return 0; } - - // - - void GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer) const - { - static_assert(eTT_MaxTexType <= 255); - static_assert(eTF_MaxFormat <= 255); - /*LATER*/ - } - - virtual void SetKeepSystemCopy(bool bKeepSystemCopy) = 0; - virtual void UpdateTextureRegion(const uint8_t* data, int nX, int nY, int nZ, int USize, int VSize, int ZSize, ETEX_Format eTFSrc) = 0; - virtual CDeviceTexture* GetDevTexture() const = 0; - -}; - -struct STextureLoadData -{ - void* m_pData; - size_t m_DataSize; - int m_Width; - int m_Height; - ETEX_Format m_Format; - int m_NumMips; - int m_nFlags; - ITexture* m_pTexture; - STextureLoadData() - : m_pData(nullptr) - , m_Width(0) - , m_Height(0) - , m_Format(eTF_Unknown) - , m_NumMips(0) - , m_nFlags(0) - , m_pTexture(nullptr) - { - } - ~STextureLoadData() - { - if (m_pData) - { - CryModuleFree(m_pData); - } - } - - static void* AllocateData(size_t dataSize) - { - return CryModuleMalloc(dataSize); - } -}; -struct ITextureLoadHandler -{ - virtual ~ITextureLoadHandler() {} - virtual bool LoadTextureData(const char* path, STextureLoadData& loadData) = 0; - virtual bool SupportsExtension(const char* ext) const = 0; - virtual void Update() = 0; }; //========================================================================================= - -class IDynTexture -{ -public: - enum - { - fNeedRegenerate = 1ul << 0, - }; - // - virtual ~IDynTexture(){} - virtual void Release() = 0; - virtual void GetSubImageRect(uint32& nX, uint32& nY, uint32& nWidth, uint32& nHeight) = 0; - virtual void GetImageRect(uint32& nX, uint32& nY, uint32& nWidth, uint32& nHeight) = 0; - virtual int GetTextureID() = 0; - virtual void Lock() = 0; - virtual void UnLock() = 0; - virtual int GetWidth() = 0; - virtual int GetHeight() = 0; - virtual bool IsValid() = 0; - virtual uint8 GetFlags() const = 0; - virtual void SetFlags([[maybe_unused]] uint8 flags) {} - virtual bool Update(int nNewWidth, int nNewHeight) = 0; - virtual void Apply(int nTUnit, int nTS = -1) = 0; - virtual bool ClearRT() = 0; - virtual bool SetRT(int nRT, bool bPush, struct SDepthTexture* pDepthSurf, bool bScreenVP = false) = 0; - virtual bool SetRectStates() = 0; - virtual bool RestoreRT(int nRT, bool bPop) = 0; - virtual ITexture* GetTexture() = 0; - virtual void SetUpdateMask() = 0; - virtual void ResetUpdateMask() = 0; - virtual bool IsSecondFrame() = 0; - virtual bool GetImageData32([[maybe_unused]] uint8* pData, [[maybe_unused]] int nDataSize) { return 0; } - // -}; - -// Animating Texture sequence definition -class ITexAnim -{ -public: - virtual ~ITexAnim() {}; - virtual void Release() = 0; - virtual void AddRef() = 0; -}; - -struct AZ_DEPRECATED(STexAnim, "STexAnim has been deprecated and replaced by the abstract interface ITexAnim above and CTexAnim in RenderDLL/Common/Textures/Texture.h. This was done to keep proper ref counting between CryRenderDLL and EditorLib.") {}; - -struct STexComposition -{ - _smart_ptr pTexture; - uint16 nSrcSlice; - uint16 nDstSlice; -}; - -#endif // CRYINCLUDE_CRYCOMMON_ITEXTURE_H diff --git a/Code/Legacy/CryCommon/IViewSystem.h b/Code/Legacy/CryCommon/IViewSystem.h index 583c0982c9..d8514aadf6 100644 --- a/Code/Legacy/CryCommon/IViewSystem.h +++ b/Code/Legacy/CryCommon/IViewSystem.h @@ -9,12 +9,8 @@ // Description : View System interfaces. - -#ifndef CRYINCLUDE_CRYACTION_IVIEWSYSTEM_H -#define CRYINCLUDE_CRYACTION_IVIEWSYSTEM_H #pragma once -#include #include #include @@ -233,7 +229,6 @@ struct IView virtual CCamera& GetCamera() = 0; virtual const CCamera& GetCamera() const = 0; - virtual void Serialize(TSerialize ser) = 0; virtual void PostSerialize() = 0; virtual void SetCurrentParams(SViewParams& params) = 0; virtual const SViewParams* GetCurrentParams() = 0; @@ -281,7 +276,6 @@ struct IViewSystem virtual bool AddListener(IViewSystemListener* pListener) = 0; virtual bool RemoveListener(IViewSystemListener* pListener) = 0; - virtual void Serialize(TSerialize ser) = 0; virtual void PostSerialize() = 0; // Get default distance to near clipping plane. @@ -299,5 +293,3 @@ struct IViewSystem virtual void SetControlAudioListeners(bool const bActive) = 0; virtual void ForceUpdate(float elapsed) = 0; }; - -#endif // CRYINCLUDE_CRYACTION_IVIEWSYSTEM_H diff --git a/Code/Legacy/CryCommon/IXml.h b/Code/Legacy/CryCommon/IXml.h index 80c2415f9c..2434b44664 100644 --- a/Code/Legacy/CryCommon/IXml.h +++ b/Code/Legacy/CryCommon/IXml.h @@ -745,7 +745,7 @@ private: void Update() { - if (m_index >= 0 && m_index < m_parentNode->getChildCount()) + if (m_index < m_parentNode->getChildCount()) { m_currentChildNode = m_parentNode->getChild(static_cast(m_index)); } diff --git a/Code/Legacy/CryCommon/Linux32Specific.h b/Code/Legacy/CryCommon/Linux32Specific.h index 6812ddb818..bb9931021b 100644 --- a/Code/Legacy/CryCommon/Linux32Specific.h +++ b/Code/Legacy/CryCommon/Linux32Specific.h @@ -91,9 +91,6 @@ typedef unsigned char byte; #define INVALID_FILE_ATTRIBUTES (-1) -#define DEFINE_ALIGNED_DATA(type, name, alignment) \ - type __attribute__ ((aligned(alignment))) name; - #include "LinuxSpecific.h" #define TARGET_DEFAULT_ALIGN (0x4U) diff --git a/Code/Legacy/CryCommon/Linux64Specific.h b/Code/Legacy/CryCommon/Linux64Specific.h index 4dcb5f1e84..07cb92f207 100644 --- a/Code/Legacy/CryCommon/Linux64Specific.h +++ b/Code/Legacy/CryCommon/Linux64Specific.h @@ -97,9 +97,6 @@ typedef uint8 byte; #define INVALID_FILE_ATTRIBUTES (-1) -#define DEFINE_ALIGNED_DATA(type, name, alignment) \ - type __attribute__ ((aligned(alignment))) name; - #include "LinuxSpecific.h" #define TARGET_DEFAULT_ALIGN (0x8U) diff --git a/Code/Legacy/CryCommon/LinuxSpecific.h b/Code/Legacy/CryCommon/LinuxSpecific.h index 17b465d4cb..b3e75476c9 100644 --- a/Code/Legacy/CryCommon/LinuxSpecific.h +++ b/Code/Legacy/CryCommon/LinuxSpecific.h @@ -83,10 +83,6 @@ typedef float FLOAT; #define STDMETHODCALLTYPE #endif -#define _ALIGN(num) \ - __attribute__ ((aligned(num))) \ - AZ_POP_DISABLE_WARNING - #define _PACK __attribute__ ((packed)) // Safe memory freeing diff --git a/Code/Legacy/CryCommon/LyShine/Animation/IUiAnimation.h b/Code/Legacy/CryCommon/LyShine/Animation/IUiAnimation.h index e04fb6ada7..be449bb6ad 100644 --- a/Code/Legacy/CryCommon/LyShine/Animation/IUiAnimation.h +++ b/Code/Legacy/CryCommon/LyShine/Animation/IUiAnimation.h @@ -10,9 +10,6 @@ #include #include #include -#include -#include -#include #include #include #include @@ -191,7 +188,7 @@ public: private: EUiAnimParamType m_type; - CCryName m_name; + AZStd::string m_name; }; // The data required to identify a specific parameter/property on an AZ component on an AZ entity @@ -442,7 +439,7 @@ struct IUiAnimTrack virtual int GetSubTrackCount() const = 0; // Retrieve pointer the specfied sub track. virtual IUiAnimTrack* GetSubTrack(int nIndex) const = 0; - virtual const char* GetSubTrackName(int nIndex) const = 0; + virtual AZStd::string GetSubTrackName(int nIndex) const = 0; virtual void SetSubTrackName(int nIndex, const char* name) = 0; ////////////////////////////////////////////////////////////////////////// @@ -634,7 +631,7 @@ public: virtual void SetName(const char* name) = 0; //! Get node name. - virtual const char* GetName() = 0; + virtual AZStd::string GetName() = 0; // Get Type of this node. virtual EUiAnimNodeType GetType() const = 0; @@ -710,13 +707,13 @@ public: // Returns name of supported parameter of this animation node or NULL if not available // Arguments: // paramType - parameter id - virtual const char* GetParamName(const CUiAnimParamType& paramType) const = 0; + virtual AZStd::string GetParamName(const CUiAnimParamType& paramType) const = 0; // Description: // Returns name of supported parameter of this animation node or NULL if not available // Arguments: // paramType - parameter id - virtual const char* GetParamNameForTrack(const CUiAnimParamType& paramType, [[maybe_unused]] const IUiAnimTrack* track) const { return GetParamName(paramType); } + virtual AZStd::string GetParamNameForTrack(const CUiAnimParamType& paramType, [[maybe_unused]] const IUiAnimTrack* track) const { return GetParamName(paramType); } // Description: // Returns the params value type diff --git a/Code/Legacy/CryCommon/LyShine/IDraw2d.h b/Code/Legacy/CryCommon/LyShine/IDraw2d.h index a8c7af7411..3bfa3a1c14 100644 --- a/Code/Legacy/CryCommon/LyShine/IDraw2d.h +++ b/Code/Legacy/CryCommon/LyShine/IDraw2d.h @@ -12,9 +12,6 @@ #include #include -// Forward declarations -struct IFFont; - //////////////////////////////////////////////////////////////////////////////////////////////////// //! Class for 2D drawing in screen space // @@ -58,55 +55,6 @@ public: // types MAX_TEXT_STRING_LENGTH = 1024, }; - enum : int - { - //! Constant that indicates the built-in default value should be used - UseDefault = -1 - }; - - //! Struct used to pass additional image options. - // - //! If this is not passed then the defaults below are used - struct ImageOptions - { - int blendMode; //!< default is GS_BLSRC_SRCALPHA|GS_BLDST_ONEMINUSSRCALPHA - AZ::Vector3 color; //!< default is (1,1,1) - Rounding pixelRounding; //!< default is Rounding::Nearest - int baseState; //!< Additional flags for SetState. Default is GS_NODEPTHTEST - }; - - //! Struct used to pass additional text options - mostly ones that do not change from call to call. - // - //! If this is not passed then the defaults below are used - struct TextOptions - { - AZStd::string fontName; //!< default is "default" - unsigned int effectIndex; //!< default is 0 - AZ::Vector3 color; //!< default is (1,1,1) - HAlign horizontalAlignment; //!< default is HAlign::Left - VAlign verticalAlignment; //!< default is VAlign::Top - AZ::Vector2 dropShadowOffset; //!< default is (0,0), zero offset means no drop shadow is drawn - AZ::Color dropShadowColor; //!< default is (0,0,0,0), zero alpha means no drop shadow is drawn - float rotation; //!< default is 0 - int baseState; //!< Additional flags for SetState. Default is GS_NODEPTHTEST - }; - - //! Used to pass in arrays of vertices (e.g. to DrawQuad) - struct VertexPosColUV - { - VertexPosColUV(){} - VertexPosColUV(const AZ::Vector2& inPos, const AZ::Color& inColor, const AZ::Vector2& inUV) - { - position = inPos; - color = inColor; - uv = inUV; - } - - AZ::Vector2 position; //!< 2D position of vertex - AZ::Color color; //!< Float color - AZ::Vector2 uv; //!< Texture coordinate - }; - public: // member functions //! Implement virtual destructor just for safety. diff --git a/Code/Legacy/CryCommon/LyShine/IRenderGraph.h b/Code/Legacy/CryCommon/LyShine/IRenderGraph.h index 561e07243b..716e0f7417 100644 --- a/Code/Legacy/CryCommon/LyShine/IRenderGraph.h +++ b/Code/Legacy/CryCommon/LyShine/IRenderGraph.h @@ -8,6 +8,7 @@ #pragma once #include +#include #include namespace AZ @@ -48,20 +49,11 @@ namespace LyShine //! End rendering to a texture virtual void EndRenderToTexture() = 0; - //! Add an indexed triangle list primitive to the render graph with given render state - virtual void AddPrimitive(IRenderer::DynUiPrimitive* primitive, ITexture* texture, - bool isClampTextureMode, bool isTextureSRGB, bool isTexturePremultipliedAlpha, BlendMode blendMode) = 0; - - //! Add an indexed triangle list primitive to the render graph which will use maskTexture as an alpha (gradient) mask - virtual void AddAlphaMaskPrimitive(IRenderer::DynUiPrimitive* primitive, - ITexture* texture, ITexture* maskTexture, - bool isClampTextureMode, bool isTextureSRGB, bool isTexturePremultipliedAlpha, BlendMode blendMode) = 0; - //! Get a dynamic quad primitive that can be added as an image primitive to the render graph //! The graph handles the allocation of this DynUiPrimitive and deletes it when the graph is reset //! This can be used if the UI component doesn't want to own the storage of the primitive. Used infrequently, //! e.g. for the selection rect on a text component. - virtual IRenderer::DynUiPrimitive* GetDynamicQuadPrimitive(const AZ::Vector2* positions, uint32 packedColor) = 0; + virtual DynUiPrimitive* GetDynamicQuadPrimitive(const AZ::Vector2* positions, uint32 packedColor) = 0; //---- Functions for supporting masking (used during creation of the graph, not rendering ) ---- diff --git a/Code/Legacy/CryCommon/LyShine/UiBase.h b/Code/Legacy/CryCommon/LyShine/UiBase.h index af6314be2c..5eef06b94e 100644 --- a/Code/Legacy/CryCommon/LyShine/UiBase.h +++ b/Code/Legacy/CryCommon/LyShine/UiBase.h @@ -12,10 +12,12 @@ #include #include #include +#include #include #include #include +#include // This is a workaround for AZCore including WinUser.h which defines DrawText to be DrawTextA #ifdef DrawText @@ -44,7 +46,7 @@ namespace LyShine typedef AZStd::string StringType; // not yet decided if we should use wchar_t or UTF8 //! Used for passing lists of entities - typedef DynArray EntityArray; + typedef AZStd::vector EntityArray; enum class BlendMode { diff --git a/Code/Legacy/CryCommon/MemoryAccess.h b/Code/Legacy/CryCommon/MemoryAccess.h deleted file mode 100644 index 8343c961a8..0000000000 --- a/Code/Legacy/CryCommon/MemoryAccess.h +++ /dev/null @@ -1,567 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Misc mathematical functions - -#pragma once - - -#include - -// Section dictionary -#if defined(AZ_RESTRICTED_PLATFORM) -#undef AZ_RESTRICTED_SECTION -#define MEMORYACCESS_H_SECTION_TRAITS 1 -#define MEMORYACCESS_H_SECTION_CRYPREFETCH 2 -#endif - -// Traits -#if defined(AZ_RESTRICTED_PLATFORM) - #define AZ_RESTRICTED_SECTION MEMORYACCESS_H_SECTION_TRAITS - #include AZ_RESTRICTED_FILE(MemoryAccess_h) -#else -#define MEMORYACCESS_H_TRAIT_USE_LEGACY_PREFETCHLINE 1 -#endif - -#if MEMORYACCESS_H_TRAIT_USE_LEGACY_PREFETCHLINE -#define PrefetchLine(ptr, off) cryPrefetchT0SSE((void*)((UINT_PTR)ptr + off)) -#else -#define PrefetchLine(ptr, off) (void)(0) -#endif -#define ResetLine128(ptr, off) (void)(0) -#define FlushLine128(ptr, off) (void)(0) - - - -//======================================================================================== - -// cryMemcpy flags -#define MC_CPU_TO_GPU 0x10 -#define MC_GPU_TO_CPU 0x20 -#define MC_CPU_TO_CPU 0x40 - -extern int g_CpuFlags; - -// -#define CPUF_SSE 0x01 -#define CPUF_SSE2 0x02 -#define CPUF_3DNOW 0x04 -#define CPUF_MMX 0x08 -#define CPUF_SSE3 0x10 -#define CPUF_F16C 0x20 -#define CPUF_SSE41 0x40 - -#ifdef _CPU_SSE - -#ifdef _CPU_X86 -#include -#endif - -#define _MM_PREFETCH(MemPtr, Hint) _mm_prefetch((MemPtr), (Hint)); -#define _MM_PREFETCH_LOOP(nCount, MemPtr, Hint) { for (int p = 0; p < nCount; p += 64) { _mm_prefetch((const char*)(MemPtr) + p, Hint); } \ -} -#else //_CPU_SSE -#define _MM_PREFETCH(MemPtr, Hint) -#define _MM_PREFETCH_LOOP(nCount, MemPtr, Hint) -#endif //_CPU_SSE - -void cryMemcpy(void* Dst, const void* Src, int Count); -#if defined(LINUX) || defined(APPLE) -// Define this for Mac and Linux since it is used with the pthread sources - #define mymemcpy16 memcpy -#endif - - -//========================================================================================== -// 3DNow! optimizations - -#if defined _CPU_X86 && !defined(LINUX) && !defined(APPLE) -// *************************************************************************** -inline void cryPrecacheSSE(const void* src, int nbytes) -{ - _asm - { - mov esi, src - mov ecx, nbytes - // 64 bytes per pass - shr ecx, 6 - jz endLabel - -loopMemToL1: - prefetchnta 64[ESI] // Prefetch next loop, non-temporal - prefetchnta 96[ESI] - - movq mm1, 0[ESI]// Read in source data - movq mm2, 8[ESI] - movq mm3, 16[ESI] - movq mm4, 24[ESI] - movq mm5, 32[ESI] - movq mm6, 40[ESI] - movq mm7, 48[ESI] - movq mm0, 56[ESI] - - add esi, 64 - dec ecx - jnz loopMemToL1 - - emms - -endLabel: - } -} - - -#endif - - - -ILINE void cryPrefetchT0SSE(const void* src) -{ -#if defined(WIN32) && !defined(WIN64) - _asm - { - mov esi, src - prefetchT0 [ESI] // Prefetch - } -#else - _MM_PREFETCH((char*)src, _MM_HINT_T0); -#endif -} - -//================================================================================= - -// Very optimized memcpy() routine for AMD Athlon and Duron family. -// This code uses any of FOUR different basic copy methods, depending -// on the transfer size. -// NOTE: Since this code uses MOVNTQ (also known as "Non-Temporal MOV" or -// "Streaming Store"), and also uses the software prefetch instructions, -// be sure you're running on Athlon/Duron or other recent CPU before calling! - -#define TINY_BLOCK_COPY 64 // Upper limit for movsd type copy. -// The smallest copy uses the X86 "movsd" instruction, in an optimized -// form which is an "unrolled loop". - -#define IN_CACHE_COPY 64 * 1024 // Upper limit for movq/movq copy w/SW prefetch. -// Next is a copy that uses the MMX registers to copy 8 bytes at a time, -// also using the "unrolled loop" optimization. This code uses -// the software prefetch instruction to get the data into the cache. - -#define UNCACHED_COPY 197 * 1024 // Upper limit for movq/movntq w/SW prefetch. -// For larger blocks, which will spill beyond the cache, it's faster to -// use the Streaming Store instruction MOVNTQ. This write instruction -// bypasses the cache and writes straight to main memory. This code also -// uses the software prefetch instruction to pre-read the data. -// USE 64 * 1024 FOR THIS VALUE IF YOU'RE ALWAYS FILLING A "CLEAN CACHE". - -#define BLOCK_PREFETCH_COPY infinity // No limit for movq/movntq w/block prefetch. -#define CACHEBLOCK 80h // Number of 64-byte blocks (cache lines) for block prefetch. -// For the largest size blocks, a special technique called Block Prefetch -// can be used to accelerate the read operations. Block Prefetch reads -// one address per cache line, for a series of cache lines, in a short loop. -// This is faster than using software prefetch. The technique is great for -// getting maximum read bandwidth, especially in DDR memory systems. - - -#if defined _CPU_X86 && !defined(LINUX) && !defined(APPLE) -// Inline assembly syntax for use with Visual C++ -inline void cryMemcpy(void* Dst, const void* Src, int Count) -{ - if (g_CpuFlags & CPUF_SSE) - { - __asm - { - mov ecx, [Count]; - number of bytes to copy - mov edi, [Dst]; - destination - mov esi, [Src]; - source - mov ebx, ecx; - keep a copy of count - - cld - cmp ecx, TINY_BLOCK_COPY - jb $memcpy_ic_3; - tiny ? skip mmx copy - - cmp ecx, 32 * 1024; - dont align between 32k - 64k because - jbe $memcpy_do_align; - it appears to be slower - cmp ecx, 64*1024 - jbe $memcpy_align_done - $memcpy_do_align : - mov ecx, 8; - a trick thats faster than rep movsb ... - sub ecx, edi; - align destination to qword - and ecx, 111b; - get the low bits - sub ebx, ecx; - update copy count - neg ecx; - set up to jump into the array - add ecx, offset $memcpy_align_done - jmp ecx; - jump to array of movsbs - - align 4 - movsb - movsb - movsb - movsb - movsb - movsb - movsb - movsb - -$memcpy_align_done:; - destination is dword aligned - mov ecx, ebx; - number of bytes left to copy - shr ecx, 6; - get 64 - byte block count - jz $memcpy_ic_2; - finish the last few bytes - - cmp ecx, IN_CACHE_COPY / 64; - too big 4 cache ? use uncached copy - jae $memcpy_uc_test - - // This is small block copy that uses the MMX registers to copy 8 bytes - // at a time. It uses the "unrolled loop" optimization, and also uses - // the software prefetch instruction to get the data into the cache. - align 16 - $memcpy_ic_1 :; - 64 - byte block copies, in - cache copy - - prefetchnta [esi + (200 * 64 / 34 + 192)]; - start reading ahead - - movq mm0, [esi + 0]; - read 64 bits - movq mm1, [esi + 8] - movq [edi + 0], mm0; - write 64 bits - movq [edi + 8], mm1; -note: the normal movq writes the - movq mm2, [esi + 16]; - data to cache; - a cache line will be - movq mm3, [esi + 24]; - allocated as needed, to store the data - movq [edi + 16], mm2 - movq [edi + 24], mm3 - movq mm0, [esi + 32] - movq mm1, [esi + 40] - movq [edi + 32], mm0 - movq [edi + 40], mm1 - movq mm2, [esi + 48] - movq mm3, [esi + 56] - movq [edi + 48], mm2 - movq [edi + 56], mm3 - - add esi, 64; - update source pointer - add edi, 64; - update destination pointer - dec ecx; - count down - jnz $memcpy_ic_1; - last 64 - byte block ? - - $memcpy_ic_2 : - mov ecx, ebx; - has valid low 6 bits of the byte count -$memcpy_ic_3: - shr ecx, 2; - dword count - and ecx, 1111b; - only look at the "remainder" bits - neg ecx; - set up to jump into the array - add ecx, offset $memcpy_last_few - jmp ecx; - jump to array of movsds - -$memcpy_uc_test: - cmp ecx, UNCACHED_COPY / 64; - big enough ? use block prefetch copy - jae $memcpy_bp_1 - - $memcpy_64_test : - or ecx, ecx; - tail end of block prefetch will jump here - jz $memcpy_ic_2; - no more 64 - byte blocks left - - // For larger blocks, which will spill beyond the cache, it's faster to - // use the Streaming Store instruction MOVNTQ. This write instruction - // bypasses the cache and writes straight to main memory. This code also - // uses the software prefetch instruction to pre-read the data. - align 16 -$memcpy_uc_1:; - 64 - byte blocks, uncached copy - - prefetchnta [esi + (200 * 64 / 34 + 192)]; - start reading ahead - - movq mm0, [esi + 0]; - read 64 bits - add edi, 64; - update destination pointer - movq mm1, [esi + 8] - add esi, 64; - update source pointer - movq mm2, [esi - 48] - movntq [edi - 64], mm0; - write 64 bits, bypassing the cache - movq mm0, [esi - 40]; -note: movntq also prevents the CPU - movntq [edi - 56], mm1; - from READING the destination address - movq mm1, [esi - 32]; - into the cache, only to be over - written - movntq [edi - 48], mm2; - so that also helps performance - movq mm2, [esi - 24] - movntq [edi - 40], mm0 - movq mm0, [esi - 16] - movntq [edi - 32], mm1 - movq mm1, [esi - 8] - movntq [edi - 24], mm2 - movntq [edi - 16], mm0 - dec ecx - movntq [edi - 8], mm1 - jnz $memcpy_uc_1; - last 64 - byte block ? - - jmp $memcpy_ic_2; - almost done - - // For the largest size blocks, a special technique called Block Prefetch - // can be used to accelerate the read operations. Block Prefetch reads - // one address per cache line, for a series of cache lines, in a short loop. - // This is faster than using software prefetch. The technique is great for - // getting maximum read bandwidth, especially in DDR memory systems. - $memcpy_bp_1 :; - large blocks, block prefetch copy - - cmp ecx, CACHEBLOCK; - big enough to run another prefetch loop ? - jl $memcpy_64_test; - no, back to regular uncached copy - - mov eax, CACHEBLOCK / 2; - block prefetch loop, unrolled 2X - add esi, CACHEBLOCK* 64; - move to the top of the block - align 16 - $memcpy_bp_2 : - mov edx, [esi - 64]; - grab one address per cache line - mov edx, [esi - 128]; - grab one address per cache line - sub esi, 128; - go reverse order to suppress HW prefetcher - dec eax; - count down the cache lines - jnz $memcpy_bp_2; - keep grabbing more lines into cache - - mov eax, CACHEBLOCK; - now that its in cache, do - { - the copy - align 16 -$memcpy_bp_3: - movq mm0, [esi ]; - } read 64 bits - movq mm1, [esi + 8] - movq mm2, [esi + 16] - movq mm3, [esi + 24] - movq mm4, [esi + 32] - movq mm5, [esi + 40] - movq mm6, [esi + 48] - movq mm7, [esi + 56] - add esi, 64; - update source pointer - movntq [edi ], mm0; - write 64 bits, bypassing cache - movntq [edi + 8], mm1; -note: movntq also prevents the CPU - movntq [edi + 16], mm2; - from READING the destination address - movntq [edi + 24], mm3; - into the cache, only to be over - written, - movntq [edi + 32], mm4; - so that also helps performance - movntq [edi + 40], mm5 - movntq [edi + 48], mm6 - movntq [edi + 56], mm7 - add edi, 64; - update dest pointer - - dec eax; - count down - - jnz $memcpy_bp_3; - keep copying - sub ecx, CACHEBLOCK; - update the 64 - byte block count - jmp $memcpy_bp_1; - keep processing chunks - - // The smallest copy uses the X86 "movsd" instruction, in an optimized - // form which is an "unrolled loop". Then it handles the last few bytes. - align 4 - movsd - movsd; - perform last 1 - 15 dword copies - movsd - movsd - movsd - movsd - movsd - movsd - movsd - movsd; - perform last 1 - 7 dword copies - movsd - movsd - movsd - movsd - movsd - movsd - -$memcpy_last_few:; - dword aligned from before movsds - mov ecx, ebx; - has valid low 2 bits of the byte count - and ecx, 11b; - the last few cows must come home - jz $memcpy_final; - no more, lets leave - rep movsb; - the last 1, 2, or 3 bytes - -$memcpy_final: - emms; - clean up the MMX state - sfence; - flush the write buffer - // mov eax, [dest] ; ret value = destination pointer - } - } - else - { - memcpy(Dst, Src, Count); - } -} - -inline void cryPrefetch(const void* Src, int nCount) -{ - nCount >>= 6; - if (nCount > 0) - { - _asm - { - mov esi, Src; - mov ecx, nCount; -mPr0: - align 16 - dec ecx; - mov eax, [esi]; - mov eax, 0; - lea esi, [esi + 40h]; - jne mPr0; - } - } - else - { - _asm - { - mov esi, Src; - mov ecx, nCount; -mPr1: - align 16 - inc ecx; - mov eax, [esi]; - mov eax, 0; - lea esi, [esi - 40h]; - jne mPr1; - } - } -} - -inline void cryMemcpy (void* inDst, const void* inSrc, int nCount, int nFlags) -{ - cryMemcpy(inDst, inSrc, nCount); -} - -//========================================================================================== -// SSE optimizations - - -#else - -const int PREFNTA_BLOCK = 0x4000; - -ILINE void cryMemcpy(void* Dst, const void* Src, int n) -{ - char* dst = (char*)Dst; - char* src = (char*)Src; - while (n > PREFNTA_BLOCK) - { - _MM_PREFETCH_LOOP(PREFNTA_BLOCK, src, _MM_HINT_NTA); - - memcpy(dst, src, PREFNTA_BLOCK); - src += PREFNTA_BLOCK; - dst += PREFNTA_BLOCK; - n -= PREFNTA_BLOCK; - } - _MM_PREFETCH_LOOP(n, src, _MM_HINT_NTA); - memcpy(dst, src, n); -} - -ILINE void cryMemcpy(void* Dst, const void* Src, int n, [[maybe_unused]] int nFlags) -{ - char* dst = (char*)Dst; - char* src = (char*)Src; - while (n > PREFNTA_BLOCK) - { - _MM_PREFETCH_LOOP(PREFNTA_BLOCK, src, _MM_HINT_NTA); - memcpy(dst, src, PREFNTA_BLOCK); - src += PREFNTA_BLOCK; - dst += PREFNTA_BLOCK; - n -= PREFNTA_BLOCK; - } - _MM_PREFETCH_LOOP(n, src, _MM_HINT_NTA); - memcpy(dst, src, n); -} - - -#endif - - -#if defined(AZ_RESTRICTED_PLATFORM) - #define AZ_RESTRICTED_SECTION MEMORYACCESS_H_SECTION_CRYPREFETCH - #include AZ_RESTRICTED_FILE(MemoryAccess_h) -#endif -#if defined(AZ_RESTRICTED_SECTION_IMPLEMENTED) -#undef AZ_RESTRICTED_SECTION_IMPLEMENTED -#else -//implement something usual to bring one memory location into L1 data cache -ILINE void CryPrefetch(const void* const cpSrc) -{ - cryPrefetchT0SSE(cpSrc); -} -#endif - -#define CryPrefetchInl CryPrefetch diff --git a/Code/Legacy/CryCommon/Mocks/ICVarMock.h b/Code/Legacy/CryCommon/Mocks/ICVarMock.h index 9fad05cc35..08f4471ad1 100644 --- a/Code/Legacy/CryCommon/Mocks/ICVarMock.h +++ b/Code/Legacy/CryCommon/Mocks/ICVarMock.h @@ -36,9 +36,6 @@ public: MOCK_CONST_METHOD0(IsConstCVar, bool()); MOCK_METHOD1(SetOnChangeCallback, void(ConsoleVarFunc)); MOCK_METHOD1(AddOnChangeFunctor, uint64(const SFunctor& pChangeFunctor)); - MOCK_CONST_METHOD0(GetNumberOfOnChangeFunctors, uint64()); - MOCK_CONST_METHOD1(GetOnChangeFunctor, const SFunctor&(uint64)); - MOCK_METHOD1(RemoveOnChangeFunctor, bool(uint64)); MOCK_CONST_METHOD0(GetOnChangeCallback, ConsoleVarFunc()); MOCK_CONST_METHOD1(GetMemoryUsage, void(class ICrySizer* pSizer)); MOCK_CONST_METHOD0(GetRealIVal, int()); diff --git a/Code/Legacy/CryCommon/Mocks/IConsoleMock.h b/Code/Legacy/CryCommon/Mocks/IConsoleMock.h index b416aa5f11..9c947b9c0f 100644 --- a/Code/Legacy/CryCommon/Mocks/IConsoleMock.h +++ b/Code/Legacy/CryCommon/Mocks/IConsoleMock.h @@ -69,13 +69,6 @@ public: MOCK_METHOD1(SetInputLine, void (const char* szLine)); MOCK_METHOD1(DumpKeyBinds, void (IKeyBindDumpSink * pCallback)); MOCK_CONST_METHOD1(FindKeyBind, const char*(const char* sCmd)); - MOCK_METHOD0(GetNumCheatVars, int ()); - MOCK_METHOD2(SetCheatVarHashRange, void (size_t firstVar, size_t lastVar)); - MOCK_METHOD0(CalcCheatVarHash, void ()); - MOCK_METHOD0(IsHashCalculated, bool ()); - MOCK_METHOD0(GetCheatVarHash, uint64 ()); - MOCK_METHOD1(PrintCheatVars, void (bool bUseLastHashRange)); - MOCK_METHOD1(GetCheatVarAt, char* (uint32 nOffset)); MOCK_METHOD1(AddConsoleVarSink, void (IConsoleVarSink * pSink)); MOCK_METHOD1(RemoveConsoleVarSink, void (IConsoleVarSink * pSink)); MOCK_METHOD1(GetHistoryElement, const char*(bool bUpOrDown)); diff --git a/Code/Legacy/CryCommon/Mocks/IRendererMock.h b/Code/Legacy/CryCommon/Mocks/IRendererMock.h deleted file mode 100644 index be9c1eec8b..0000000000 --- a/Code/Legacy/CryCommon/Mocks/IRendererMock.h +++ /dev/null @@ -1,854 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#pragma once - -#include -#include - -struct SRendItemSorter {}; -struct SRenderingPassInfo {}; -struct SClipVolumeBlendInfo {}; -struct SFogVolumeData {}; - -// the following was generated using google's python script to autogenerate mocks. -// however, it needed some hand-editing to make it work, so if you add functions to IRenderer, -// it will probably be better to just manually add them here than try to run the script again -// hand-edits are marked with 'hand-edit'. Everything else was autogenerated. - -class IRendererMock - : public IRenderer -{ -public: - MOCK_METHOD1(AddRenderDebugListener, - void(IRenderDebugListener * pRenderDebugListener)); - MOCK_METHOD1(RemoveRenderDebugListener, - void(IRenderDebugListener * pRenderDebugListener)); - MOCK_CONST_METHOD0(GetRenderType, - ERenderType()); - - // Hand-edit: Googlemock cannot handle 14 param functions. - WIN_HWND Init(int, int, int, int, unsigned int, int, int, bool, bool, WIN_HINSTANCE, WIN_HWND = 0, - bool = false, const SCustomRenderInitArgs* = 0, bool = false) override { return nullptr; } - - MOCK_METHOD0(PostInit, - void()); - MOCK_CONST_METHOD0(IsPost3DRendererEnabled, - bool()); - MOCK_METHOD0(GetFeatures, - int()); - - // Hand-edit: Googlemock doesn't like 'const void' as a return type: - const void SetApiVersion(const AZStd::string&) override {} - const void SetAdapterDescription(const AZStd::string&) override {} - - MOCK_CONST_METHOD0(GetApiVersion, - const AZStd::string& ()); - MOCK_CONST_METHOD0(GetAdapterDescription, - const AZStd::string& ()); - MOCK_METHOD3(GetVideoMemoryUsageStats, - void(size_t&, size_t&, bool)); - MOCK_CONST_METHOD0(GetNumGeomInstances, - int()); - MOCK_CONST_METHOD0(GetNumGeomInstanceDrawCalls, - int()); - MOCK_CONST_METHOD0(GetCurrentNumberOfDrawCalls, - int()); - MOCK_CONST_METHOD2(GetCurrentNumberOfDrawCalls, - void(int& nGeneral, int& nShadowGen)); - MOCK_CONST_METHOD1(GetCurrentNumberOfDrawCalls, - int(uint32 EFSListMask)); - MOCK_CONST_METHOD1(GetCurrentDrawCallRTTimes, - float(uint32 EFSListMask)); - MOCK_METHOD1(SetDebugRenderNode, - void(IRenderNode * pRenderNode)); - MOCK_CONST_METHOD1(IsDebugRenderNode, - bool(IRenderNode * pRenderNode)); - MOCK_METHOD1(DeleteContext, - bool(WIN_HWND hWnd)); - MOCK_METHOD4(CreateContext, - bool(WIN_HWND, bool, int, int)); - MOCK_METHOD1(SetCurrentContext, - bool(WIN_HWND hWnd)); - MOCK_METHOD0(MakeMainContextActive, - void()); - MOCK_METHOD0(GetCurrentContextHWND, - WIN_HWND()); - MOCK_METHOD0(IsCurrentContextMainVP, - bool()); - MOCK_CONST_METHOD0(GetCurrentContextViewportHeight, - int()); - MOCK_CONST_METHOD0(GetCurrentContextViewportWidth, - int()); - MOCK_METHOD1(ShutDown, - void(bool)); - MOCK_METHOD0(ShutDownFast, - void()); - MOCK_METHOD1(EnumDisplayFormats, - int(SDispFormat * Formats)); - MOCK_METHOD1(EnumAAFormats, - int(SAAFormat * Formats)); - MOCK_METHOD6(ChangeResolution, - bool(int nNewWidth, int nNewHeight, int nNewColDepth, int nNewRefreshHZ, bool bFullScreen, bool bForceReset)); - MOCK_METHOD0(BeginFrame, - void()); - MOCK_METHOD1(InitSystemResources, - void(int nFlags)); - MOCK_METHOD0(InitTexturesSemantics, - void()); - MOCK_METHOD1(FreeResources, - void(int nFlags)); - MOCK_METHOD0(Release, - void()); - MOCK_METHOD1(RenderDebug, - void(bool)); - MOCK_METHOD0(EndFrame, - void()); - MOCK_METHOD0(ForceSwapBuffers, - void()); - MOCK_METHOD0(TryFlush, - void()); - MOCK_CONST_METHOD4(GetViewport, - void(int* x, int* y, int* width, int* height)); - MOCK_METHOD5(SetViewport, - void(int, int, int, int, int)); - MOCK_METHOD4(SetRenderTile, - void(f32, f32, f32, f32)); - MOCK_METHOD4(SetScissor, - void(int, int, int, int)); - MOCK_METHOD0(GetViewProjectionMatrix, - Matrix44A & ()); - MOCK_METHOD1(SetTranspOrigCameraProjMatrix, - void(Matrix44A & matrix)); - MOCK_METHOD2(GetScreenAspect, - EScreenAspectRatio(int nWidth, int nHeight)); - MOCK_METHOD2(SetViewportDownscale, - Vec2(float xscale, float yscale)); - MOCK_METHOD1(SetViewParameters, - void(const CameraViewParameters& viewParameters)); - MOCK_METHOD1(ApplyViewParameters, - void(const CameraViewParameters& viewParameters)); - MOCK_METHOD5(DrawDynVB, - void(SVF_P3F_C4B_T2F * pBuf, uint16 * pInds, int nVerts, int nInds, PublicRenderPrimitiveType nPrimType)); - - // Hand-edit: google mock has issues with DynUiPrimitiveList - void DrawDynUiPrimitiveList([[maybe_unused]] DynUiPrimitiveList& primitives, [[maybe_unused]] int totalNumVertices, [[maybe_unused]] int totalNumIndices) override { return; } - - MOCK_METHOD1(SetCamera, - void(const CCamera& cam)); - MOCK_METHOD0(GetCamera, - const CCamera& ()); - MOCK_METHOD1(GetRenderViewForThread, - CRenderView * (int nThreadID)); - MOCK_METHOD1(SetGammaDelta, - bool(float fGamma)); - MOCK_METHOD0(RestoreGamma, - void(void)); - MOCK_METHOD3(ChangeDisplay, - bool(unsigned int width, unsigned int height, unsigned int cbpp)); - MOCK_METHOD7(ChangeViewport, - void(unsigned int, unsigned int, unsigned int, unsigned int, bool, float, float)); - MOCK_CONST_METHOD6(SaveTga, - bool(unsigned char* sourcedata, int sourceformat, int w, int h, const char* filename, bool flip)); - MOCK_METHOD1(SetTexture, - void(int tnum)); - MOCK_METHOD2(SetTexture, - void(int tnum, int nUnit)); - MOCK_METHOD0(SetWhiteTexture, - void()); - MOCK_CONST_METHOD0(GetWhiteTextureId, - int()); - MOCK_CONST_METHOD0(GetBlackTextureId, - int()); - - // Hand-edit: google mock can only do up to 10 parameters - void Draw2dImage(float, float, float, float, int, float, float, float, float, float, float, float, float, float, float) override {}; - MOCK_METHOD1(Draw2dImageStretchMode, - void(bool stretch)); - - // Hand-edit: google mock can only do up to 10 parameters - void Push2dImage(float, float, float, float, int, float, float, float, float, float, float, float, float, float, float, float) override {}; - - MOCK_METHOD0(Draw2dImageList, - void()); - - // Hand-edit: Hand-edit: google mock can only do up to 10 parameters - void DrawImage(float, float, float, float, int, float, float, float, float, float, float, float, float, bool) override {} - - // Hand-edit: google mock can only do up to 10 parameters - void DrawImageWithUV(float, float, float, float, float, int, float*, float*, float, float, float, float, bool) override {} - - MOCK_METHOD1(PushWireframeMode, - void(int mode)); - MOCK_METHOD0(PopWireframeMode, - void()); - MOCK_CONST_METHOD0(GetHeight, - int()); - MOCK_CONST_METHOD0(GetWidth, - int()); - MOCK_CONST_METHOD0(GetPixelAspectRatio, - float()); - MOCK_CONST_METHOD0(GetOverlayHeight, - int()); - MOCK_CONST_METHOD0(GetOverlayWidth, - int()); - MOCK_CONST_METHOD0(GetMaxSquareRasterDimension, - int()); - MOCK_METHOD0(SwitchToNativeResolutionBackbuffer, - void()); - MOCK_METHOD1(GetMemoryUsage, - void(ICrySizer * Sizer)); - MOCK_METHOD1(GetBandwidthStats, - void(float* fBandwidthRequested)); - MOCK_METHOD1(SetTextureStreamListener, - void(ITextureStreamListener * pListener)); - MOCK_METHOD2(GetOcclusionBuffer, - int(uint16 * pOutOcclBuffer, Matrix44 * pmCamBuffer)); - MOCK_METHOD2(ScreenShot, - bool(const char*, int)); - MOCK_METHOD0(GetColorBpp, - int()); - MOCK_METHOD0(GetDepthBpp, - int()); - MOCK_METHOD0(GetStencilBpp, - int()); - MOCK_CONST_METHOD0(IsStereoEnabled, - bool()); - MOCK_CONST_METHOD0(GetNearestRangeMax, - float()); - MOCK_METHOD0(GetPerInstanceConstantBufferPoolPointer, - PerInstanceConstantBufferPool * ()); - MOCK_METHOD6(ProjectToScreen, - bool(float ptx, float pty, float ptz, float* sx, float* sy, float* sz)); - MOCK_METHOD9(UnProject, - int(float sx, float sy, float sz, float* px, float* py, float* pz, const float modelMatrix[16], const float projMatrix[16], const int viewport[4])); - MOCK_METHOD6(UnProjectFromScreen, - int(float sx, float sy, float sz, float* px, float* py, float* pz)); - MOCK_METHOD1(GetModelViewMatrix, - void(float* mat)); - MOCK_METHOD1(GetProjectionMatrix, - void(float* mat)); - MOCK_METHOD7(WriteDDS, - bool(const byte * dat, int wdt, int hgt, int Size, const char* name, ETEX_Format eF, int NumMips)); - MOCK_METHOD6(WriteTGA, - bool(const byte * dat, int wdt, int hgt, const char* name, int src_bits_per_pixel, int dest_bits_per_pixel)); - MOCK_METHOD6(WriteJPG, - bool(const byte*, int, int, char*, int, int)); - MOCK_METHOD6(FontCreateTexture, - int(int, int, byte*, ETEX_Format, bool, const char*)); - MOCK_METHOD6(FontUpdateTexture, - bool(int nTexId, int X, int Y, int USize, int VSize, byte * pData)); - MOCK_METHOD2(FontSetTexture, - void(int nTexId, int nFilterMode)); - MOCK_METHOD2(FontSetRenderingState, - void(bool overrideViewProjMatrices, TransformationMatrices & backupMatrices)); - MOCK_METHOD3(FontSetBlending, - void(int src, int dst, int baseState)); - MOCK_METHOD2(FontRestoreRenderingState, - void(bool overrideViewProjMatrices, const TransformationMatrices& restoringMatrices)); - MOCK_METHOD3(FlushRTCommands, - bool(bool bWait, bool bImmediatelly, bool bForce)); - MOCK_CONST_METHOD7(DrawStringU, - void(IFFont_RenderProxy * pFont, float x, float y, float z, const char* pStr, bool asciiMultiLine, const STextDrawContext& ctx)); - MOCK_METHOD0(RT_CurThreadList, - int()); - MOCK_METHOD6(EF_PrecacheResource, - bool(SShaderItem*, float, float, int, int, int)); - MOCK_METHOD4(EF_PrecacheResource, - bool(IShader * pSH, float fMipFactor, float fTimeToReady, int Flags)); - MOCK_METHOD6(EF_PrecacheResource, - bool(ITexture*, float, float, int, int, int)); - MOCK_METHOD6(EF_PrecacheResource, - bool(IRenderMesh * pPB, _smart_ptr pMaterial, float fMipFactor, float fTimeToReady, int Flags, int nUpdateId)); - MOCK_METHOD5(EF_PrecacheResource, - bool(CDLight * pLS, float fMipFactor, float fTimeToReady, int Flags, int nUpdateId)); - - // Hand-edit: google mock can only do up to 10 parameters - ITexture* EF_CreateCompositeTexture([[maybe_unused]] int type, [[maybe_unused]] const char* szName, [[maybe_unused]] int nWidth, [[maybe_unused]] int nHeight, [[maybe_unused]] int nDepth, [[maybe_unused]] int nMips, [[maybe_unused]] int nFlags, [[maybe_unused]] ETEX_Format eTF, [[maybe_unused]] const STexComposition* pCompositions, [[maybe_unused]] size_t nCompositions, [[maybe_unused]] int8 nPriority = -1) override { return nullptr; } - - MOCK_METHOD0(PostLevelLoading, - void()); - MOCK_METHOD0(PostLevelUnload, - void()); - MOCK_METHOD10(EF_AddPolygonToScene, - CRenderObject * (SShaderItem & si, int numPts, const SVF_P3F_C4B_T2F * verts, const SPipTangents * tangs, CRenderObject * obj, const SRenderingPassInfo& passInfo, uint16 * inds, int ninds, int nAW, const SRendItemSorter& rendItemSorter)); - MOCK_METHOD10(EF_AddPolygonToScene, - CRenderObject * (SShaderItem & si, CRenderObject * obj, const SRenderingPassInfo& passInfo, int numPts, int ninds, SVF_P3F_C4B_T2F * &verts, SPipTangents * &tangs, uint16 * &inds, int nAW, const SRendItemSorter& rendItemSorter)); - MOCK_METHOD0(ForceUpdateGlobalShaderParameters, - void()); - MOCK_METHOD0(EF_GetShaderMissLogPath, - const char*()); - MOCK_METHOD1(EF_GetShaderNames, - AZStd::string * (int& nNumShaders)); - MOCK_METHOD1(EF_ReloadFile, - bool(const char* szFileName)); - MOCK_METHOD1(EF_ReloadFile_Request, - bool(const char* szFileName)); - MOCK_METHOD3(EF_GetRemapedShaderMaskGen, - uint64(const char*, uint64, bool)); - MOCK_METHOD3(EF_GetShaderGlobalMaskGenFromString, - uint64(const char*, const char*, uint64)); - MOCK_METHOD2(EF_GetStringFromShaderGlobalMaskGen, - AZStd::string(const char*, uint64)); - MOCK_CONST_METHOD1(GetShaderProfile, - const SShaderProfile& (EShaderType eST)); - MOCK_METHOD2(EF_SetShaderQuality, - void(EShaderType eST, EShaderQuality eSQ)); - MOCK_CONST_METHOD0(EF_GetRenderQuality, - ERenderQuality()); - MOCK_METHOD1(EF_GetShaderQuality, - EShaderQuality(EShaderType eST)); - MOCK_METHOD5(EF_LoadShaderItem, - SShaderItem(const char*, bool, int, SInputShaderResources*, uint64)); - MOCK_METHOD3(EF_LoadShader, - IShader * (const char*, int, uint64)); - MOCK_METHOD1(EF_ReloadShaderFiles, - void(int nCategory)); - MOCK_METHOD0(EF_ReloadTextures, - void()); - MOCK_METHOD1(EF_GetTextureByID, - ITexture * (int Id)); - MOCK_METHOD2(EF_GetTextureByName, - ITexture * (const char*, uint32)); - MOCK_METHOD2(EF_LoadTexture, - ITexture * (const char*, uint32)); - MOCK_METHOD2(EF_LoadCubemapTexture, - ITexture * (const char*, uint32)); - MOCK_METHOD1(EF_LoadDefaultTexture, - ITexture * (const char* nameTex)); - MOCK_METHOD1(EF_LoadLightmap, - int(const char* name)); - MOCK_METHOD1(EF_StartEf, - void(const SRenderingPassInfo& passInfo)); - MOCK_METHOD3(EF_GetObjData, - SRenderObjData * (CRenderObject * pObj, bool bCreate, int nThreadID)); - MOCK_METHOD1(EF_GetObject_Temp, - CRenderObject * (int nThreadID)); - MOCK_METHOD2(EF_DuplicateRO, - CRenderObject * (CRenderObject * pObj, const SRenderingPassInfo& passInfo)); - MOCK_METHOD7(EF_AddEf, - void(IRenderElement * pRE, SShaderItem & pSH, CRenderObject * pObj, const SRenderingPassInfo& passInfo, int nList, int nAW, const SRendItemSorter& rendItemSorter)); - MOCK_METHOD4(EF_EndEf3D, - void(int nFlags, int nPrecacheUpdateId, int nNearPrecacheUpdateId, const SRenderingPassInfo& passInfo)); - MOCK_METHOD1(EF_InvokeShadowMapRenderJobs, - void(int nFlags)); - MOCK_METHOD1(EF_IsFakeDLight, - bool(const CDLight * Source)); - MOCK_METHOD2(EF_ADDDlight, - void(CDLight * Source, const SRenderingPassInfo& passInfo)); - MOCK_METHOD1(EF_UpdateDLight, - bool(SRenderLight * pDL)); - MOCK_METHOD1(EF_AddDeferredDecal, - bool(const SDeferredDecal& rDecal)); - MOCK_METHOD4(EF_AddDeferredLight, - int(const CDLight& pLight, float fMult, const SRenderingPassInfo& passInfo, const SRendItemSorter& rendItemSorter)); - MOCK_METHOD1(EF_GetDeferredLightsNum, - uint32(eDeferredLightType)); - MOCK_METHOD0(EF_ClearDeferredLightsList, - void()); - MOCK_METHOD1(EF_AddDeferredClipVolume, - uint8(const IClipVolume * pClipVolume)); - MOCK_METHOD2(EF_SetDeferredClipVolumeBlendData, - bool(const IClipVolume * pClipVolume, const SClipVolumeBlendInfo& blendInfo)); - MOCK_METHOD0(EF_ClearDeferredClipVolumesList, - void()); - MOCK_METHOD0(EF_ReleaseDeferredData, - void()); - MOCK_METHOD1(EF_ReleaseInputShaderResource, - void(SInputShaderResources * pRes)); - MOCK_METHOD3(EF_SetPostEffectParam, - void(const char*, float, bool)); - MOCK_METHOD3(EF_SetPostEffectParamVec4, - void(const char*, const Vec4&, bool)); - MOCK_METHOD2(EF_SetPostEffectParamString, - void(const char* pParam, const char* pszArg)); - MOCK_METHOD2(EF_GetPostEffectParam, - void(const char* pParam, float& fValue)); - MOCK_METHOD2(EF_GetPostEffectParamVec4, - void(const char* pParam, Vec4 & pValue)); - MOCK_METHOD2(EF_GetPostEffectParamString, - void(const char* pParam, const char* & pszArg)); - MOCK_METHOD1(EF_GetPostEffectID, - int32(const char* pPostEffectName)); - MOCK_METHOD1(EF_ResetPostEffects, - void(bool)); - MOCK_METHOD0(SyncPostEffects, - void()); - MOCK_METHOD0(EF_DisableTemporalEffects, - void()); - MOCK_METHOD3(EF_AddWaterSimHit, - void(const Vec3& vPos, float scale, float strength)); - MOCK_METHOD0(EF_DrawWaterSimHits, - void()); - MOCK_METHOD1(EF_EndEf2D, - void(bool bSort)); - MOCK_METHOD0(ForceGC, - void()); - MOCK_CONST_METHOD0(GetPolyCount, - int()); - MOCK_CONST_METHOD2(GetPolyCount, - void(int& nPolygons, int& nShadowVolPolys)); - MOCK_METHOD1(SetClearColor, - void(const Vec3& vColor)); - MOCK_METHOD1(SetClearBackground, - void(bool bClearBackground)); - MOCK_METHOD4(CreateRenderMesh, - _smart_ptr(const char*, const char*, IRenderMesh::SInitParamerers*, ERenderMeshType)); - - // Hand-edit: google mock can only do up to 10 parameters - virtual _smart_ptr CreateRenderMeshInitialized( - const void*, int, const AZ::Vertex::Format&, const vtx_idx*, int, const PublicRenderPrimitiveType, - const char*, const char*, ERenderMeshType = eRMT_Static, int = 1, int = 0, - [[maybe_unused]] bool (*PrepareBufferCallback)(IRenderMesh*, bool) = nullptr, void* = nullptr, bool = false, bool = true, - const SPipTangents* = nullptr, bool = false, Vec3* = nullptr) - { - return _smart_ptr(); - } - - MOCK_METHOD1(GetFrameID, - int(bool)); - MOCK_CONST_METHOD0(GetCameraFrameID, - int()); - MOCK_CONST_METHOD0(IsRenderToTextureActive, - bool()); - MOCK_METHOD4(MakeMatrix, - void(const Vec3& pos, const Vec3& angles, const Vec3& scale, Matrix34 * mat)); - MOCK_METHOD4(DrawTextQueued, - void(Vec3 pos, SDrawTextInfo & ti, const char* format, va_list args)); - MOCK_METHOD3(DrawTextQueued, - void(Vec3 pos, SDrawTextInfo & ti, const char* text)); - MOCK_CONST_METHOD1(ScaleCoordX, - float(float value)); - MOCK_CONST_METHOD1(ScaleCoordY, - float(float value)); - MOCK_CONST_METHOD2(ScaleCoord, - void(float& x, float& y)); - MOCK_METHOD2(SetState, - void(int, int)); - MOCK_METHOD1(SetCullMode, - void(int)); - MOCK_METHOD5(SetStencilState, - void(int, uint32, uint32, uint32, bool)); - MOCK_METHOD1(PushProfileMarker, - void(const char* label)); - MOCK_METHOD1(PopProfileMarker, - void(const char* label)); - MOCK_METHOD1(EnableFog, - bool(bool enable)); - MOCK_METHOD1(SetFogColor, - void(const ColorF& color)); - MOCK_METHOD4(SetColorOp, - void(byte eCo, byte eAo, byte eCa, byte eAa)); - MOCK_METHOD1(SetSrgbWrite, - void(bool srgbWrite)); - MOCK_METHOD1(RequestFlushAllPendingTextureStreamingJobs, - void(int nFrames)); - MOCK_METHOD1(SetTexturesStreamingGlobalMipFactor, - void(float fFactor)); - MOCK_METHOD1(GetIRenderAuxGeom, - IRenderAuxGeom * (void*)); - MOCK_METHOD0(GetISvoRenderer, - ISvoRenderer * ()); - MOCK_METHOD0(GetIColorGradingController, - IColorGradingController * ()); - MOCK_METHOD0(GetIStereoRenderer, - IStereoRenderer * ()); - MOCK_METHOD7(Create2DTexture, - ITexture * (const char* name, int width, int height, int numMips, int flags, unsigned char* data, ETEX_Format format)); - - void TextToScreen([[maybe_unused]] float x, [[maybe_unused]] float y, [[maybe_unused]] const char* format, ...) override {} - void TextToScreenColor([[maybe_unused]] int x, [[maybe_unused]] int y, [[maybe_unused]] float r, [[maybe_unused]] float g, [[maybe_unused]] float b, [[maybe_unused]] float a, [[maybe_unused]] const char* format, ...) override {} - - MOCK_METHOD0(ResetToDefault, - void()); - MOCK_METHOD4(SetMaterialColor, - void(float r, float g, float b, float a)); - MOCK_METHOD0(SetDefaultRenderStates, - void()); - MOCK_METHOD10(Graph, - void(byte * g, int x, int y, int wdt, int hgt, int nC, int type, const char* text, ColorF & color, float fScale)); - MOCK_METHOD0(EF_RenderTextMessages, - void()); - MOCK_METHOD1(ClearTargetsImmediately, - void(uint32 nFlags)); - MOCK_METHOD3(ClearTargetsImmediately, - void(uint32 nFlags, const ColorF& Colors, float fDepth)); - MOCK_METHOD2(ClearTargetsImmediately, - void(uint32 nFlags, const ColorF& Colors)); - MOCK_METHOD2(ClearTargetsImmediately, - void(uint32 nFlags, float fDepth)); - MOCK_METHOD1(ClearTargetsLater, - void(uint32 nFlags)); - MOCK_METHOD3(ClearTargetsLater, - void(uint32 nFlags, const ColorF& Colors, float fDepth)); - MOCK_METHOD2(ClearTargetsLater, - void(uint32 nFlags, const ColorF& Colors)); - MOCK_METHOD2(ClearTargetsLater, - void(uint32 nFlags, float fDepth)); - MOCK_METHOD8(ReadFrameBuffer, - void(unsigned char*, int, int, int, ERB_Type, bool, int, int)); - MOCK_METHOD4(ReadFrameBufferFast, - void(uint32*, int, int, bool)); - MOCK_METHOD1(EnableVSync, - void(bool enable)); - MOCK_METHOD1(CreateResourceAsync, - void(SResourceAsync * Resource)); - MOCK_METHOD1(ReleaseResourceAsync, - void(SResourceAsync * Resource)); - MOCK_METHOD1(ReleaseResourceAsync, - void(AZStd::unique_ptr Resource)); - - // Hand-edit: google mock can only do up to 10 parameters - unsigned int DownLoadToVideoMemory(const byte*, int, int, ETEX_Format, ETEX_Format, int, bool = true, - int = FILTER_BILINEAR, int = 0, const char* = nullptr, int = 0, EEndian = eLittleEndian, - RectI* = nullptr, bool = false) override { return 0; } - - unsigned int DownLoadToVideoMemory3D(const byte*, int, int, [[maybe_unused]] int d, ETEX_Format, ETEX_Format, int, bool = true, - int = FILTER_BILINEAR, int = 0, const char* = nullptr, int = 0, EEndian = eLittleEndian, - RectI* = nullptr, bool = false) override { return 0; } - - unsigned int DownLoadToVideoMemoryCube(const byte*, int, int, ETEX_Format, ETEX_Format, int, bool = true, - int = FILTER_BILINEAR, int = 0, const char* = nullptr, int = 0, EEndian = eLittleEndian, - RectI* = nullptr, bool = false) override { return 0; } - - MOCK_METHOD9(UpdateTextureInVideoMemory, - void(uint32, const byte*, int, int, int, int, ETEX_Format, int, int)); - MOCK_METHOD8(DXTCompress, - bool(const byte * raw_data, int nWidth, int nHeight, ETEX_Format eTF, bool bUseHW, bool bGenMips, int nSrcBytesPerPix, MIPDXTcallback callback)); - MOCK_METHOD9(DXTDecompress, - bool(const byte * srcData, size_t srcFileSize, byte * dstData, int nWidth, int nHeight, int nMips, ETEX_Format eSrcTF, bool bUseHW, int nDstBytesPerPix)); - MOCK_METHOD1(RemoveTexture, - void(unsigned int TextureId)); - MOCK_METHOD1(DeleteFont, - void(IFFont * font)); - MOCK_METHOD3(CaptureFrameBufferFast, - bool(unsigned char* pDstRGBA8, int destinationWidth, int destinationHeight)); - MOCK_METHOD3(CopyFrameBufferFast, - bool(unsigned char* pDstRGBA8, int destinationWidth, int destinationHeight)); - MOCK_METHOD1(RegisterCaptureFrame, - bool(ICaptureFrameListener * pCapture)); - MOCK_METHOD1(UnRegisterCaptureFrame, - bool(ICaptureFrameListener * pCapture)); - MOCK_METHOD2(InitCaptureFrameBufferFast, - bool(uint32, uint32)); - MOCK_METHOD0(CloseCaptureFrameBufferFast, - void(void)); - MOCK_METHOD0(CaptureFrameBufferCallBack, - void(void)); - MOCK_METHOD1(RegisterSyncWithMainListener, - void(ISyncMainWithRenderListener * pListener)); - MOCK_METHOD1(RemoveSyncWithMainListener, - void(const ISyncMainWithRenderListener * pListener)); - MOCK_METHOD5(Set2DMode, - void(uint32, uint32, TransformationMatrices&, float, float)); - MOCK_METHOD1(Unset2DMode, - void(const TransformationMatrices& restoringMatrices)); - MOCK_METHOD7(Set2DModeNonZeroTopLeft, - void(float, float, float, float, TransformationMatrices&, float, float)); - MOCK_METHOD1(ScreenToTexture, - int(int nTexID)); - MOCK_METHOD1(EnableSwapBuffers, - void(bool bEnable)); - MOCK_METHOD0(GetHWND, - WIN_HWND()); - MOCK_METHOD1(SetWindowIcon, - bool(const char* path)); - MOCK_METHOD1(OnEntityDeleted, - void(struct IRenderNode* pRenderNode)); - MOCK_METHOD5(CreateRenderTarget, - int(const char* name, int nWidth, int nHeight, const ColorF& clearColor, ETEX_Format eTF)); - MOCK_METHOD1(DestroyRenderTarget, - bool(int nHandle)); - MOCK_METHOD3(ResizeRenderTarget, - bool(int nHandle, int nWidth, int nHeight)); - MOCK_METHOD2(SetRenderTarget, - bool(int, SDepthTexture*)); - MOCK_METHOD3(CreateDepthSurface, - SDepthTexture * (int, int, bool)); - MOCK_METHOD1(DestroyDepthSurface, - void(SDepthTexture * pDepthSurf)); - MOCK_METHOD1(PauseTimer, - void(bool bPause)); - MOCK_METHOD0(CreateShaderPublicParams, - IShaderPublicParams * ()); - MOCK_CONST_METHOD2(GetThreadIDs, - void(threadID & mainThreadID, threadID & renderThreadID)); - MOCK_METHOD1(EnableGPUTimers2, - void(bool bEnabled)); - MOCK_METHOD1(AllowGPUTimers2, - void(bool bAllow)); - MOCK_CONST_METHOD2(GetRPPStats, - const RPProfilerStats * (ERenderPipelineProfilerStats, bool)); - MOCK_CONST_METHOD1(GetRPPStatsArray, - const RPProfilerStats * (bool)); - MOCK_METHOD4(GetPolygonCountByType, - int(uint32, EVertexCostTypes, uint32, bool)); - MOCK_METHOD5(SetCloudShadowsParams, - void(int nTexID, const Vec3& speed, float tiling, bool invert, float brightness)); - MOCK_METHOD2(PushFogVolumeContribution, - uint16(const SFogVolumeData& fogVolData, const SRenderingPassInfo& passInfo)); - MOCK_METHOD2(PushFogVolume, - void(class CREFogVolume * pFogVolume, const SRenderingPassInfo& passInfo)); - MOCK_METHOD0(GetMaxTextureSize, - int()); - MOCK_METHOD1(GetTextureFormatName, - const char*(ETEX_Format eTF)); - MOCK_METHOD5(GetTextureFormatDataSize, - int(int nWidth, int nHeight, int nDepth, int nMips, ETEX_Format eTF)); - MOCK_METHOD2(SetDefaultMaterials, - void(_smart_ptr pDefMat, _smart_ptr pTerrainDefMat)); - MOCK_CONST_METHOD0(GetGPUParticleEngine, - IGPUParticleEngine * ()); - MOCK_CONST_METHOD0(GetActiveGPUCount, - uint32()); - MOCK_METHOD0(GetShadowFrustumMGPUCache, - ShadowFrustumMGPUCache * ()); - - MOCK_CONST_METHOD0(GetCachedShadowsResolution, - const StaticArray&()); - - MOCK_METHOD1(SetCachedShadowsResolution, - void(const StaticArray&arrResolutions)); - MOCK_CONST_METHOD1(UpdateCachedShadowsLodCount, - void(int nGsmLods)); - MOCK_METHOD1(SetTexturePrecaching, - void(bool stat)); - MOCK_METHOD2(RT_InsertGpuCallback, - void(uint32 context, GpuCallbackFunc callback)); - MOCK_METHOD1(EnablePipelineProfiler, - void(bool bEnable)); - MOCK_METHOD1(GetRenderTimes, - void(SRenderTimes & outTimes)); - MOCK_METHOD0(GetGPUFrameTime, - float()); - MOCK_METHOD1(EnableBatchMode, - void(bool enable)); - MOCK_METHOD1(EnableLevelUnloading, - void(bool enable)); - MOCK_METHOD0(OnLevelLoadFailed, - void()); -#if !defined(_RELEASE) - MOCK_METHOD1(GetDrawCallsInfoPerMesh, - RNDrawcallsMapMesh & (bool)); - MOCK_METHOD1(GetDrawCallsInfoPerMeshPreviousFrame, - RNDrawcallsMapMesh & (bool)); - MOCK_METHOD1(GetDrawCallsInfoPerNodePreviousFrame, - RNDrawcallsMapNode & (bool)); - MOCK_METHOD1(GetDrawCallsPerNode, - int(IRenderNode * pRenderNode)); - MOCK_METHOD1(ForceRemoveNodeFromDrawCallsMap, - void(IRenderNode * pNode)); -#endif - MOCK_METHOD1(CollectDrawCallsInfo, - void(bool status)); - MOCK_METHOD1(CollectDrawCallsInfoPerNode, - void(bool status)); - MOCK_METHOD0(HasLoadedDefaultResources, - bool()); - MOCK_METHOD3(EF_CreateSkinningData, - SSkinningData * (uint32, bool, bool)); - MOCK_METHOD4(EF_CreateRemappedSkinningData, - SSkinningData * (uint32 nNumBones, SSkinningData * pSourceSkinningData, uint32 nCustomDataSize, uint32 pairGuid)); - MOCK_METHOD0(EF_ClearSkinningDataPool, - void()); - MOCK_METHOD0(EF_GetSkinningPoolID, - int()); - MOCK_METHOD1(ClearShaderItem, - void(SShaderItem * pShaderItem)); - MOCK_METHOD2(UpdateShaderItem, - void(SShaderItem * pShaderItem, _smart_ptr pMaterial)); - MOCK_METHOD2(ForceUpdateShaderItem, - void(SShaderItem * pShaderItem, _smart_ptr pMaterial)); - MOCK_METHOD2(RefreshShaderResourceConstants, - void(SShaderItem * pShaderItem, IMaterial * pMaterial)); - MOCK_METHOD0(IsStereoModeChangePending, - bool()); - MOCK_METHOD1(LockParticleVideoMemory, - void(uint32 nId)); - MOCK_METHOD1(UnLockParticleVideoMemory, - void(uint32 nId)); - MOCK_METHOD1(BeginSpawningGeneratingRendItemJobs, - void(int nThreadID)); - MOCK_METHOD1(BeginSpawningShadowGeneratingRendItemJobs, - void(int nThreadID)); - MOCK_METHOD0(EndSpawningGeneratingRendItemJobs, - void()); - MOCK_METHOD1(StartLoadtimePlayback, - void(ILoadtimeCallback* pCallback)); - MOCK_METHOD0(StopLoadtimePlayback, - void()); - - MOCK_METHOD0(GetGenerateRendItemJobExecutor, - AZ::LegacyJobExecutor*()); - MOCK_METHOD0(GetGenerateShadowRendItemJobExecutor, - AZ::LegacyJobExecutor*()); - MOCK_METHOD0(GetGenerateRendItemJobExecutorPreProcess, - AZ::LegacyJobExecutor*()); - MOCK_METHOD1(GetFinalizeRendItemJobExecutor, - AZ::LegacyJobExecutor*(int nThreadID)); - MOCK_METHOD1(GetFinalizeShadowRendItemJobExecutor, - AZ::LegacyJobExecutor*(int nThreadID)); - MOCK_METHOD0(FlushPendingTextureTasks, - void()); - MOCK_METHOD1(SetShadowJittering, - void(float fShadowJittering)); - MOCK_CONST_METHOD0(GetShadowJittering, - float()); - MOCK_METHOD0(LoadShaderStartupCache, - bool()); - MOCK_METHOD0(UnloadShaderStartupCache, - void()); - MOCK_METHOD0(LoadShaderLevelCache, - bool()); - MOCK_METHOD0(UnloadShaderLevelCache, - void()); - MOCK_METHOD1(StartScreenShot, - void(int e_ScreenShot)); - MOCK_METHOD1(EndScreenShot, - void(int e_ScreenShot)); - MOCK_METHOD3(SetRendererCVar, - void(ICVar*, const char*, bool)); - MOCK_METHOD0(GetRenderPipeline, - SRenderPipeline * ()); - MOCK_METHOD0(GetShaderManager, - CShaderMan * ()); - MOCK_METHOD0(GetRenderThread, - SRenderThread * ()); - MOCK_METHOD0(GetWhiteTexture, - ITexture * ()); - MOCK_METHOD3(GetTextureForName, - ITexture * (const char* name, uint32 nFlags, ETEX_Format eFormat)); - MOCK_METHOD0(GetViewParameters, - const CameraViewParameters& ()); - MOCK_METHOD0(GetFrameReset, - uint32()); - MOCK_METHOD0(GetDepthBufferOrig, - SDepthTexture * ()); - MOCK_METHOD0(GetBackBufferWidth, - uint32()); - MOCK_METHOD0(GetBackBufferHeight, - uint32()); - MOCK_METHOD0(GetDeviceBufferManager, - CDeviceBufferManager * ()); - MOCK_CONST_METHOD0(GetRenderTileInfo, - const SRenderTileInfo * ()); - MOCK_METHOD0(GetIdentityMatrix, - Matrix44A()); - MOCK_CONST_METHOD0(RT_GetCurrGpuID, - int32()); - MOCK_METHOD0(GenerateTextureId, - int()); - MOCK_METHOD2(SetCull, - void(ECull, bool)); - MOCK_METHOD10(DrawQuad, - void(float x0, float y0, float x1, float y1, const ColorF& color, float z, float s0, float t0, float s1, float t1)); - MOCK_METHOD9(DrawQuad3D, - void(const Vec3& v0, const Vec3& v1, const Vec3& v2, const Vec3& v3, const ColorF& color, float ftx0, float fty0, float ftx1, float fty1)); - MOCK_METHOD0(FX_ResetPipe, - void()); - MOCK_METHOD4(FX_GetDepthSurface, - SDepthTexture * (int, int, bool, bool)); - MOCK_METHOD5(FX_CheckOverflow, - void(int, int, IRenderElement*, int*, int*)); - MOCK_METHOD1(FX_PreRender, - void(int Stage)); - MOCK_METHOD0(FX_PostRender, - void()); - MOCK_METHOD3(FX_SetState, - void(int, int, int)); - MOCK_METHOD3(FX_CommitStates, - void(const SShaderTechnique * pTech, const SShaderPass * pPass, bool bUseMaterialState)); - MOCK_METHOD1(FX_Commit, - void(bool)); - MOCK_METHOD2(FX_SetVertexDeclaration, - long(int StreamMask, const AZ::Vertex::Format& vertexFormat)); - MOCK_METHOD7(FX_DrawIndexedPrimitive, - void(eRenderPrimitiveType, int, int, int, int, int, bool)); - MOCK_METHOD3(FX_SetIStream, - long(const void* pB, uint32 nOffs, RenderIndexType idxType)); - MOCK_METHOD5(FX_SetVStream, - long(int, const void*, uint32, uint32, uint32)); - MOCK_METHOD4(FX_DrawPrimitive, - void(eRenderPrimitiveType, int, int, int)); - MOCK_METHOD1(FX_ClearTarget, - void(ITexture * pTex)); - MOCK_METHOD1(FX_ClearTarget, - void(SDepthTexture * pTex)); - MOCK_METHOD4(FX_SetRenderTarget, - bool(int, void*, SDepthTexture*, uint32)); - MOCK_METHOD4(FX_PushRenderTarget, - bool(int, void*, SDepthTexture*, uint32)); - MOCK_METHOD7(FX_SetRenderTarget, - bool(int, CTexture*, SDepthTexture*, bool, int, bool, uint32)); - MOCK_METHOD6(FX_PushRenderTarget, - bool(int, CTexture*, SDepthTexture*, int, bool, uint32)); - MOCK_METHOD1(FX_RestoreRenderTarget, - bool(int nTarget)); - MOCK_METHOD1(FX_PopRenderTarget, - bool(int nTarget)); - MOCK_METHOD1(FX_SetActiveRenderTargets, - void(bool bAllowDIP)); - MOCK_METHOD4(FX_Start, - void(CShader * ef, int nTech, CShaderResources * Res, IRenderElement * re)); - MOCK_METHOD1(RT_PopRenderTarget, - void(int nTarget)); - MOCK_METHOD5(RT_SetViewport, - void(int, int, int, int, int)); - MOCK_METHOD4(RT_PushRenderTarget, - void(int nTarget, CTexture * pTex, SDepthTexture * pDS, int nS)); - MOCK_METHOD5(EF_Scissor, - void(bool bEnable, int sX, int sY, int sWdt, int sHgt)); - -#ifdef SUPPORT_HW_MOUSE_CURSOR - MOCK_METHOD0(GetIHWMouseCursor, - IHWMouseCursor * ()); -#endif - - MOCK_METHOD0(GetRecursionLevel, - int()); - MOCK_METHOD2(GetIntegerConfigurationValue, - int(const char* varName, int defaultValue)); - MOCK_METHOD2(GetFloatConfigurationValue, - float(const char* varName, float defaultValue)); - MOCK_METHOD2(GetBooleanConfigurationValue, - bool(const char* varName, bool defaultValue)); - MOCK_METHOD3(ApplyDepthTextureState, - void(int unit, int nFilter, bool clamp)); - MOCK_METHOD0(GetZTargetTexture, - ITexture * ()); - MOCK_METHOD1(GetTextureState, - int(const STexState& TS)); - MOCK_METHOD7(TextureDataSize, - uint32(uint32, uint32, uint32, uint32, uint32, ETEX_Format, ETEX_TileMode)); - MOCK_METHOD6(ApplyForID, - void(int nID, int nTUnit, int nTState, int nTexMaterialSlot, int nSUnit, bool useWhiteDefault)); - MOCK_METHOD9(Create3DTexture, - ITexture * (const char* szName, int nWidth, int nHeight, int nDepth, int nMips, int nFlags, const byte * pData, ETEX_Format eTFSrc, ETEX_Format eTFDst)); - MOCK_METHOD1(IsTextureExist, - bool(const ITexture * pTex)); - MOCK_METHOD1(NameForTextureFormat, - const char*(ETEX_Format eTF)); - MOCK_METHOD1(NameForTextureType, - const char*(ETEX_Type eTT)); - MOCK_METHOD0(IsVideoThreadModeEnabled, - bool()); - MOCK_METHOD5(CreateDynTexture2, - IDynTexture * (uint32 nWidth, uint32 nHeight, uint32 nTexFlags, const char* szSource, ETexPool eTexPool)); - MOCK_METHOD0(GetCurrentTextureAtlasSize, - uint32()); - MOCK_METHOD2(BeginProfilerSection, - void(const char*, uint32)); - MOCK_METHOD1(EndProfilerSection, - void(const char*)); - MOCK_METHOD1(AddProfilerLabel, - void(const char*)); - - MOCK_METHOD5(EF_QueryImpl, - void(ERenderQueryTypes eQuery, void* pInOut0, uint32 nInOutSize0, void* pInOut1, uint32 nInOutSize1)); -}; - - diff --git a/Code/Legacy/CryCommon/Mocks/ISystemMock.h b/Code/Legacy/CryCommon/Mocks/ISystemMock.h index c4566537b1..9d41b9e77d 100644 --- a/Code/Legacy/CryCommon/Mocks/ISystemMock.h +++ b/Code/Legacy/CryCommon/Mocks/ISystemMock.h @@ -60,8 +60,6 @@ public: IViewSystem * ()); MOCK_METHOD0(GetILevelSystem, ILevelSystem * ()); - MOCK_METHOD0(GetINameTable, - INameTable * ()); MOCK_METHOD0(GetICmdLine, ICmdLine * ()); MOCK_METHOD0(GetILog, diff --git a/Code/Legacy/CryCommon/Mocks/ITextureMock.h b/Code/Legacy/CryCommon/Mocks/ITextureMock.h index 1a9bca9082..8dc657195c 100644 --- a/Code/Legacy/CryCommon/Mocks/ITextureMock.h +++ b/Code/Legacy/CryCommon/Mocks/ITextureMock.h @@ -20,154 +20,6 @@ public: int()); MOCK_METHOD0(ReleaseForce, int()); - MOCK_CONST_METHOD0(GetClearColor, - const ColorF& ()); - MOCK_CONST_METHOD0(GetDstFormat, - const ETEX_Format()); - MOCK_CONST_METHOD0(GetSrcFormat, - const ETEX_Format()); - MOCK_CONST_METHOD0(GetTexType, - const ETEX_Type()); - MOCK_METHOD2(ApplyTexture, - void(int, int)); MOCK_CONST_METHOD0(GetName, const char*()); - MOCK_CONST_METHOD0(GetWidth, - const int()); - MOCK_CONST_METHOD0(GetHeight, - const int()); - MOCK_CONST_METHOD0(GetDepth, - const int()); - MOCK_CONST_METHOD0(GetTextureID, - const int()); - MOCK_CONST_METHOD0(GetFlags, - const uint32()); - MOCK_CONST_METHOD0(GetNumMips, - const int()); - MOCK_CONST_METHOD0(GetRequiredMip, - const int()); - MOCK_CONST_METHOD0(GetDeviceDataSize, - const int()); - MOCK_CONST_METHOD0(GetDataSize, - const int()); - MOCK_CONST_METHOD0(GetTextureType, - const ETEX_Type()); - MOCK_METHOD1(SetTextureType, - void(ETEX_Type type)); - MOCK_CONST_METHOD0(IsTextureLoaded, - const bool()); - MOCK_METHOD4(PrecacheAsynchronously, - void(float, int, int, int)); - MOCK_METHOD4(GetData32, - uint8 * (int nSide, int nLevel, uint8 * pDst, ETEX_Format eDstFormat)); - MOCK_METHOD1(SetFilter, - bool(int nFilter)); - MOCK_METHOD1(SetClamp, - void(bool bEnable)); - MOCK_CONST_METHOD0(GetAvgBrightness, - float()); - MOCK_CONST_METHOD1(StreamCalculateMipsSigned, - int(float fMipFactor)); - MOCK_CONST_METHOD0(GetStreamableMipNumber, - int()); - MOCK_CONST_METHOD1(GetStreamableMemoryUsage, - int(int nStartMip)); - MOCK_CONST_METHOD0(GetMinLoadedMip, - int()); - MOCK_METHOD2(Readback, - void(AZ::u32 subresourceIndex, StagingHook callback)); - MOCK_METHOD0(Reload, - bool()); - MOCK_CONST_METHOD0(GetFormatName, - const char*()); - MOCK_CONST_METHOD0(GetTypeName, - const char*()); - MOCK_CONST_METHOD0(IsStreamedVirtual, - const bool()); - MOCK_CONST_METHOD0(IsShared, - const bool()); - MOCK_CONST_METHOD0(IsStreamable, - const bool()); - MOCK_CONST_METHOD1(IsStreamedIn, - bool(const int nMinPrecacheRoundIds[2])); - MOCK_CONST_METHOD0(GetAccessFrameId, - const int()); - MOCK_CONST_METHOD0(GetTextureDstFormat, - const ETEX_Format()); - MOCK_CONST_METHOD0(GetTextureSrcFormat, - const ETEX_Format()); - MOCK_CONST_METHOD0(IsPostponed, - bool()); - MOCK_CONST_METHOD1(IsParticularMipStreamed, - const bool(float fMipFactor)); - MOCK_METHOD3(GetLowResSystemCopy, - const ColorB * (uint16 & nWidth, uint16 & nHeight, int** ppLowResSystemCopyAtlasId)); - MOCK_METHOD1(SetKeepSystemCopy, - void(bool bKeepSystemCopy)); - MOCK_METHOD8(UpdateTextureRegion, - void(const uint8_t * data, int nX, int nY, int nZ, int USize, int VSize, int ZSize, ETEX_Format eTFSrc)); - MOCK_CONST_METHOD0(GetDevTexture, - CDeviceTexture * ()); -}; - -class ITextureLoadHandlerMock - : public ITextureLoadHandler -{ -public: - MOCK_METHOD2(LoadTextureData, - bool(const char* path, STextureLoadData & loadData)); - MOCK_CONST_METHOD1(SupportsExtension, - bool(const char* ext)); - MOCK_METHOD0(Update, - void()); -}; - -class IDynTextureMock - : public IDynTexture -{ -public: - MOCK_METHOD0(Release, - void()); - MOCK_METHOD4(GetSubImageRect, - void(uint32 & nX, uint32 & nY, uint32 & nWidth, uint32 & nHeight)); - MOCK_METHOD4(GetImageRect, - void(uint32 & nX, uint32 & nY, uint32 & nWidth, uint32 & nHeight)); - MOCK_METHOD0(GetTextureID, - int()); - MOCK_METHOD0(Lock, - void()); - MOCK_METHOD0(UnLock, - void()); - MOCK_METHOD0(GetWidth, - int()); - MOCK_METHOD0(GetHeight, - int()); - MOCK_METHOD0(IsValid, - bool()); - MOCK_CONST_METHOD0(GetFlags, - uint8()); - MOCK_METHOD1(SetFlags, - void(uint8 flags)); - MOCK_METHOD2(Update, - bool(int nNewWidth, int nNewHeight)); - MOCK_METHOD2(Apply, - void(int, int)); - MOCK_METHOD0(ClearRT, - bool()); - MOCK_METHOD4(SetRT, - bool(int nRT, bool bPush, struct SDepthTexture* pDepthSurf, bool bScreenVP)); - MOCK_METHOD0(SetRectStates, - bool()); - MOCK_METHOD2(RestoreRT, - bool(int nRT, bool bPop)); - MOCK_METHOD0(GetTexture, - ITexture * ()); - MOCK_METHOD0(SetUpdateMask, - void()); - MOCK_METHOD0(ResetUpdateMask, - void()); - MOCK_METHOD0(IsSecondFrame, - bool()); - MOCK_METHOD2(GetImageData32, - bool(uint8 * pData, int nDataSize)); }; diff --git a/Code/Legacy/CryCommon/Options.h b/Code/Legacy/CryCommon/Options.h deleted file mode 100644 index 935c8bd371..0000000000 --- a/Code/Legacy/CryCommon/Options.h +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Facilities for defining and combining general-purpose or specific options, for functions or structs. - - -#ifndef CRYINCLUDE_CRYCOMMON_OPTIONS_H -#define CRYINCLUDE_CRYCOMMON_OPTIONS_H -#pragma once - - -// Facilities for collecting options in a struct, and quickly constructing them. -// Used, for example, as construction argument. Safer and more informative than bool arguments. -// -// Example: -// struct FObjectOpts; -// struct CObject { CObject(FObjectOpts = ZERO); }; -// CObject object_def(); -// CObject object( FObjectOpts().Size(8).AllowGrowth(true) ); - -template -struct TOptVar -{ - typedef T TValue; - - TOptVar() - : _val(T(NInit)) - { - offset(this); - } - TOptVar(T val) - : _val(val) {} - - operator T () const - { - return _val; - } - T operator ()() const - { return _val; } - T operator +() const - { return _val; } - bool operator !() const - { return !_val; } - - TContainer& operator()(T val) - { - _val = val; - return *(TContainer*)((char*)this - offset()); - } - -private: - T _val; - - static size_t offset(void* self = 0) - { - static size_t _offset = TContainer::static_offset(self); - return _offset; - } -}; - -#define OPT_STRUCT(TOpts) \ - typedef TOpts TThis; typedef uint TInt; \ - static size_t static_offset(void* var) { static void* _first = var; return (char*)var - (char*)_first; } \ - TOpts([[maybe_unused]] void* p = 0) {} \ - TOpts operator()() const { return TOpts(*this); } \ - -#define OPT_VAR(Type, Var) \ - enum E##Var {}; TOptVar Var; \ - -#define OPT_VAR_INIT(Type, Var, init) \ - enum E##Var {}; TOptVar Var; \ - -#define BIT_STRUCT(Struc, Int) \ - typedef Struc TThis; typedef Int TInt; \ - TInt Mask() const { return *(const TInt*)this; } \ - TInt& Mask() { return *(TInt*)this; } \ - Struc(TInt init = 0) { static_assert(sizeof(TThis) == sizeof(TInt)); Mask() = init; } \ - -#define BIT_VAR(Var) \ - TInt _##Var : 1; \ - bool Var() const { return _##Var; } \ - TThis& Var(bool val) { _##Var = val; return *this; } \ - -#endif // CRYINCLUDE_CRYCOMMON_OPTIONS_H diff --git a/Code/Legacy/CryCommon/Platform/Android/crycommon_android.cmake b/Code/Legacy/CryCommon/Platform/Android/crycommon_android.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CryCommon/Platform/Android/crycommon_android.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CryCommon/Platform/Android/crycommon_android_files.cmake b/Code/Legacy/CryCommon/Platform/Android/crycommon_android_files.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CryCommon/Platform/Android/crycommon_android_files.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CryCommon/Platform/Linux/crycommon_linux.cmake b/Code/Legacy/CryCommon/Platform/Linux/crycommon_linux.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CryCommon/Platform/Linux/crycommon_linux.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CryCommon/Platform/Linux/crycommon_linux_files.cmake b/Code/Legacy/CryCommon/Platform/Linux/crycommon_linux_files.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CryCommon/Platform/Linux/crycommon_linux_files.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CryCommon/Platform/Mac/crycommon_mac.cmake b/Code/Legacy/CryCommon/Platform/Mac/crycommon_mac.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CryCommon/Platform/Mac/crycommon_mac.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CryCommon/Platform/Mac/crycommon_mac_files.cmake b/Code/Legacy/CryCommon/Platform/Mac/crycommon_mac_files.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CryCommon/Platform/Mac/crycommon_mac_files.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CryCommon/Platform/Windows/crycommon_windows.cmake b/Code/Legacy/CryCommon/Platform/Windows/crycommon_windows.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CryCommon/Platform/Windows/crycommon_windows.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CryCommon/Platform/Windows/crycommon_windows_files.cmake b/Code/Legacy/CryCommon/Platform/Windows/crycommon_windows_files.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CryCommon/Platform/Windows/crycommon_windows_files.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CryCommon/Platform/iOS/crycommon_ios.cmake b/Code/Legacy/CryCommon/Platform/iOS/crycommon_ios.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CryCommon/Platform/iOS/crycommon_ios.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CryCommon/Platform/iOS/crycommon_ios_files.cmake b/Code/Legacy/CryCommon/Platform/iOS/crycommon_ios_files.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CryCommon/Platform/iOS/crycommon_ios_files.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CryCommon/PoolAllocator.h b/Code/Legacy/CryCommon/PoolAllocator.h deleted file mode 100644 index 9125c87c51..0000000000 --- a/Code/Legacy/CryCommon/PoolAllocator.h +++ /dev/null @@ -1,507 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef CRYINCLUDE_CRYCOMMON_POOLALLOCATOR_H -#define CRYINCLUDE_CRYCOMMON_POOLALLOCATOR_H -#pragma once - - -//--------------------------------------------------------------------------- -// Memory allocation class. Allocates, frees, and reuses fixed-size blocks of -// memory, a scheme sometimes known as Simple Segregated Memory. -// -// Allocation is amortized constant time. The normal case is very fast - -// basically just a couple of dereferences. If many blocks are allocated, -// the system may occasionally need to allocate a further bucket of blocks -// for itself. Deallocation is strictly fast constant time. -// -// Each PoolAllocator allocates blocks of a single size and alignment, specified -// by template arguments. There is no per-block space overhead, except for -// alignment. The free list mechanism uses the memory of the block itself -// when it is deallocated. -// -// In this implementation memory claimed by the system is never deallocated, -// until the entire allocator is deallocated. This is to ensure fast -// allocation/deallocation - reference counting the bucket quickly would -// require a pointer to the bucket be stored, whereas now no memory is used -// while the block is allocated. -// -// The class can optionally support multi-threading, using the second -// template parameter. By default it is multithread-safe. -// See Synchronization.h. -// -// The class is implemented using a HeapAllocator. -//--------------------------------------------------------------------------- - -#include "HeapAllocator.h" - -namespace stl -{ - ////////////////////////////////////////////////////////////////////////// - // Fixed-size pool allocator, using a shared heap. - template - class SharedSizePoolAllocator - { - template - friend struct PoolCommonAllocator; - protected: - - using_type(THeap, Lock); - - struct ObjectNode - { - ObjectNode* pNext; - }; - - static size_t AllocSize(size_t nSize) - { - return max(nSize, sizeof(ObjectNode)); - } - static size_t AllocAlign(size_t nSize, size_t nAlign) - { - return nAlign > 0 ? nAlign : min(nSize, alignof(void*)); - } - - public: - - SharedSizePoolAllocator(THeap& heap, size_t nSize, size_t nAlign = 0) - : _pHeap(&heap) - , _nAllocSize(AllocSize(nSize)) - , _nAllocAlign(AllocAlign(nSize, nAlign)) - , _pFreeList(0) - { - } - - ~SharedSizePoolAllocator() - { - // All allocated objects should be freed by now. - Lock lock(*_pHeap); - Validate(lock); - for (ObjectNode* pFree = _pFreeList; pFree; ) - { - ObjectNode* pNext = pFree->pNext; - _pHeap->Deallocate(lock, pFree, _nAllocSize); - pFree = pNext; - } - } - - // Raw allocation. - void* Allocate() - { - Lock lock(*_pHeap); - if (_pFreeList) - { - ObjectNode* pFree = _pFreeList; - _pFreeList = _pFreeList->pNext; - Validate(lock); - _Counts.nUsed++; - return pFree; - } - - // No free pointer, allocate a new one. - void* pNewMemory = _pHeap->Allocate(lock, _nAllocSize, _nAllocAlign); - if (pNewMemory) - { - _Counts.nUsed++; - _Counts.nAlloc++; - Validate(lock); - } - return pNewMemory; - } - - void Deallocate(void* pObject) - { - Deallocate(Lock(*_pHeap), pObject); - } - - SMemoryUsage GetCounts() const - { - Lock lock(*_pHeap); - return _Counts; - } - SMemoryUsage GetTotalMemory(const Lock&) const - { - return SMemoryUsage(_Counts.nAlloc * _nAllocSize, _Counts.nUsed * _nAllocSize); - } - - protected: - - void Deallocate(const Lock& lock, void* pObject) - { - if (pObject) - { - assert(_pHeap->CheckPtr(lock, pObject)); - - ObjectNode* pNode = static_cast(pObject); - - // Add the object to the front of the free list. - pNode->pNext = _pFreeList; - _pFreeList = pNode; - _Counts.nUsed--; - Validate(lock); - } - } - - void Validate(const Lock& lock) const - { - _pHeap->Validate(lock); - _Counts.Validate(); - assert(_Counts.nAlloc * _nAllocSize <= _pHeap->GetTotalMemory(lock).nUsed); - } - - void Reset(const Lock&, [[maybe_unused]] bool bForce = false) - { - assert(bForce || _Counts.nUsed == 0); - _Counts.Clear(); - _pFreeList = 0; - } - - protected: - const size_t _nAllocSize, _nAllocAlign; - SMemoryUsage _Counts; - - THeap* _pHeap; - ObjectNode* _pFreeList; - }; - - ////////////////////////////////////////////////////////////////////////// - struct SPoolMemoryUsage - : SMemoryUsage - { - size_t nPool; - - SPoolMemoryUsage(size_t _nAlloc = 0, size_t _nPool = 0, size_t _nUsed = 0) - : SMemoryUsage(_nAlloc, _nUsed) - , nPool(_nPool) - { - // These values are pulled from 3 atomic variables and not guaranteed to be a perfect "snapshot" - // Of the current state of the pool memory usage (e.g. Used may be > max, etc) - // Patch the values so that they make sense (it won't be wrong, just mildly out of date) - // This is done to prevent sticking expensive mutexes or potentially forever blocking semaphores in the pool - if (nUsed > nPool) - { - nPool = nUsed; - } - - assert(nPool <= nAlloc); - } - - size_t nPoolFree() const - { - return nPool - nUsed; - } - size_t nNonPoolFree() const - { - return nAlloc - nPool; - } - - void Clear() - { - nAlloc = nUsed = nPool = 0; - } - - void operator += (SPoolMemoryUsage const& op) - { - nAlloc += op.nAlloc; - nPool += op.nPool; - nUsed += op.nUsed; - } - }; - - ////////////////////////////////////////////////////////////////////////// - // SizePoolAllocator with owned heap - template - class SizePoolAllocator - : protected THeap - , public SharedSizePoolAllocator - { - typedef SharedSizePoolAllocator TPool; - - using_type(THeap, Lock); - using_type(THeap, FreeMemLock); - using TPool::AllocSize; - using TPool::_Counts; - using TPool::_nAllocSize; - - public: - - SizePoolAllocator(size_t nSize, size_t nAlign = 0, FHeap opts = 0) - : THeap(opts.PageSize(opts.PageSize * AllocSize(nSize))) - , TPool(*this, nSize, nAlign) - { - } - - using TPool::Allocate; - using THeap::GetMemoryUsage; - - void Deallocate(void* pObject) - { - FreeMemLock lock(*this); - TPool::Deallocate(lock, pObject); - if (THeap::FreeWhenEmpty && _Counts.nUsed == 0) - { - TPool::Reset(lock); - THeap::Clear(lock); - } - } - - void FreeMemoryIfEmpty() - { - FreeMemLock lock(*this); - if (_Counts.nUsed == 0) - { - TPool::Reset(lock); - THeap::Clear(lock); - } - } - - void ResetMemory() - { - FreeMemLock lock(*this); - TPool::Reset(lock); - THeap::Reset(lock); - } - - void FreeMemory() - { - FreeMemLock lock(*this); - TPool::Reset(lock); - THeap::Clear(lock); - } - - - void FreeMemoryForce() - { - FreeMemLock lock(*this); - TPool::Reset(lock, true); - THeap::Clear(lock); - } - - SPoolMemoryUsage GetTotalMemory() - { - Lock lock(*this); - return SPoolMemoryUsage(THeap::GetTotalMemory(lock).nAlloc, _Counts.nAlloc * _nAllocSize, _Counts.nUsed * _nAllocSize); - } - }; - - ////////////////////////////////////////////////////////////////////////// - // Templated size version of SizePoolAllocator - template - class PoolAllocator - : public SizePoolAllocator< HeapAllocator > - { - public: - PoolAllocator(FHeap opts = 0) - : SizePoolAllocator< HeapAllocator >(S, A, opts) - { - } - }; - - ////////////////////////////////////////////////////////////////////////// - template - class PoolAllocatorNoMT - : public SizePoolAllocator< HeapAllocator > - { - public: - PoolAllocatorNoMT(FHeap opts = 0) - : SizePoolAllocator< HeapAllocator >(S, A, opts) - { - } - }; - - ////////////////////////////////////////////////////////////////////////// - template - class TPoolAllocator - : public SizePoolAllocator< HeapAllocator > - { - typedef SizePoolAllocator< HeapAllocator > TSizePool; - - public: - - using TSizePool::Allocate; - using TSizePool::Deallocate; - - TPoolAllocator(FHeap opts = 0) - : TSizePool(sizeof(T), max(alignof(T), A), opts) - {} - - T* New() - { - return new(Allocate())T(); - } - - template - T* New(const I& init) - { - return new(Allocate())T(init); - } - - void Delete(T* ptr) - { - if (ptr) - { - ptr->~T(); - Deallocate(ptr); - } - } - }; - - // Legacy verbose typedefs. - typedef PSyncNone PoolAllocatorSynchronizationSinglethreaded; - typedef PSyncMultiThread PoolAllocatorSynchronizationMultithreaded; - - ////////////////////////////////////////////////////////////////////////// - // Allocator maintaining multiple type-specific pools, sharing a common heap source. - template - struct PoolCommonAllocator - : protected THeap - { - typedef SharedSizePoolAllocator TPool; - - using_type(THeap, Lock); - using_type(THeap, FreeMemLock); - - struct TPoolNode - : SharedSizePoolAllocator - { - TPoolNode* pNext; - - TPoolNode(THeap& heap, TPoolNode*& pList, size_t nSize, size_t nAlign) - : SharedSizePoolAllocator(heap, nSize, nAlign) - { - pNext = pList; - pList = this; - } - }; - - public: - - PoolCommonAllocator() - : _pPoolList(0) - { - } - ~PoolCommonAllocator() - { - TPoolNode* pPool = _pPoolList; - while (pPool) - { - TPoolNode* pNextPool = pPool->pNext; - delete pPool; - pPool = pNextPool; - } - } - - TPool* CreatePool(size_t nSize, size_t nAlign = 0) - { - return new TPoolNode(*this, _pPoolList, nSize, nAlign); - } - - SPoolMemoryUsage GetTotalMemory() - { - Lock lock(*this); - SMemoryUsage mem; - for (TPoolNode* pPool = _pPoolList; pPool; pPool = pPool->pNext) - { - mem += pPool->GetTotalMemory(lock); - } - return SPoolMemoryUsage(THeap::GetTotalMemory(lock).nAlloc, mem.nAlloc, mem.nUsed); - } - - bool FreeMemory(bool bDeallocate = true) - { - FreeMemLock lock(*this); - for (TPoolNode* pPool = _pPoolList; pPool; pPool = pPool->pNext) - { - if (pPool->GetTotalMemory(lock).nUsed) - { - return false; - } - } - - for (TPoolNode* pPool = _pPoolList; pPool; pPool = pPool->pNext) - { - pPool->Reset(lock); - } - - if (bDeallocate) - { - THeap::Clear(lock); - } - else - { - THeap::Reset(lock); - } - return true; - } - - protected: - TPoolNode* _pPoolList; - }; - - ////////////////////////////////////////////////////////////////////////// - // The additional TInstancer type provides a way of instantiating multiple instances - // of this class, without static variables. - template - struct StaticPoolCommonAllocator - { - ILINE static PoolCommonAllocator& StaticAllocator() - { - static PoolCommonAllocator s_Allocator; - return s_Allocator; - } - - typedef SharedSizePoolAllocator TPool; - - template - ILINE static TPool& TypeAllocator() - { - static TPool* sp_Pool = CreatePoolOnGlobalHeap(sizeof(T), alignof(T)); - return *sp_Pool; - } - - template - ILINE static void* Allocate(T*& p) - { return p = (T*)TypeAllocator().Allocate(); } - - template - ILINE static void Deallocate(T* p) - { return TypeAllocator().Deallocate(p); } - - template - static T* New() - { return new(TypeAllocator().Allocate())T(); } - - template - static T* New(const I& init) - { return new(TypeAllocator().Allocate())T(init); } - - template - static void Delete(T* ptr) - { - if (ptr) - { - ptr->~T(); - TypeAllocator().Deallocate(ptr); - } - } - - static SPoolMemoryUsage GetTotalMemory() - { return StaticAllocator().GetTotalMemory(); } - - private: - - ILINE static TPool* CreatePoolOnGlobalHeap(size_t nSize, size_t nAlign = 0) - { - return StaticAllocator().CreatePool(nSize, nAlign); - } - }; -}; - - -#endif // CRYINCLUDE_CRYCOMMON_POOLALLOCATOR_H diff --git a/Code/Legacy/CryCommon/StaticInstance.h b/Code/Legacy/CryCommon/StaticInstance.h index 70739a0a3c..8e14606abf 100644 --- a/Code/Legacy/CryCommon/StaticInstance.h +++ b/Code/Legacy/CryCommon/StaticInstance.h @@ -7,13 +7,24 @@ */ #pragma once +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include template class StaticInstanceSpecialization { }; -// Specializations for std::vector and std::map which allows us to modify the +// Specializations for std::vector and std::map which allows us to modify the // least amount of legacy code by mirroring the std APIs that are in use // These are not intended to be complete, just enough to shim existing legacy code template @@ -30,7 +41,7 @@ public: using size_type = typename Container::size_type; template - AZ_FORCE_INLINE + AZ_FORCE_INLINE typename AZStd::enable_if::value, reference>::type operator[](Integral index) { @@ -322,7 +333,7 @@ public: using size_type = typename Container::size_type; using pair_iter_bool = std::pair; - + AZ_FORCE_INLINE iterator begin() { @@ -360,7 +371,7 @@ public: } template - AZ_FORCE_INLINE + AZ_FORCE_INLINE typename AZStd::enable_if::value, mapped_type&>::type operator[](const K2& keylike) { diff --git a/Code/Legacy/CryCommon/StereoRendererBus.h b/Code/Legacy/CryCommon/StereoRendererBus.h deleted file mode 100644 index 370bbaef27..0000000000 --- a/Code/Legacy/CryCommon/StereoRendererBus.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#pragma once - -#include - -namespace AZ -{ - /// - /// The Stereo Renderer bus allows other systems to query various properties on the stereo renderer - /// - class StereoRendererBus - : public EBusTraits - { - public: - - ////////////////////////////////////////////////////////////////////////// - // EBus Traits - static const EBusHandlerPolicy HandlerPolicy = EBusHandlerPolicy::Multiple; - static const EBusAddressPolicy AddressPolicy = EBusAddressPolicy::Single; - using MutexType = AZStd::recursive_mutex; - ////////////////////////////////////////////////////////////////////////// - - virtual ~StereoRendererBus() {} - - /// - /// Return whether the renderer is rendering to the HMD - /// - /// @return True if rendering to the HMD - /// - virtual bool IsRenderingToHMD() { return false; } - - protected: - }; - - using StereoRendererRequestBus = EBus < StereoRendererBus >; -} diff --git a/Code/Legacy/CryCommon/StlUtils.h b/Code/Legacy/CryCommon/StlUtils.h index d7e5697593..4aafd4dd0e 100644 --- a/Code/Legacy/CryCommon/StlUtils.h +++ b/Code/Legacy/CryCommon/StlUtils.h @@ -9,14 +9,13 @@ // Description : Various convenience utility functions for STL and alike // Used in Animation subsystem, and in some tools -#ifndef CRYINCLUDE_CRYCOMMON_STLUTILS_H -#define CRYINCLUDE_CRYCOMMON_STLUTILS_H #pragma once #include #include #include #include +#include #if (defined(LINUX) || defined(APPLE)) #include "platform.h" @@ -527,58 +526,6 @@ namespace stl // typedef AZStd::unordered_map, stl::equality_string_insensitive > StringToIntHash; ////////////////////////////////////////////////////////////////////////// - ////////////////////////////////////////////////////////////////////////// - // useful when the key is already the result of an hash function - // key needs to be convertible to size_t - ////////////////////////////////////////////////////////////////////////// - template - class hash_simple - { - public: - enum // parameters for hash table - { - bucket_size = 4, // 0 < bucket_size - min_buckets = 8 - };// min_buckets = 2 ^^ N, 0 < N - - size_t operator()(const Key& key) const - { - return size_t(key); - }; - bool operator()(const Key& key1, const Key& key2) const - { - return key1 < key2; - } - }; - - // simple hash class that has the avalanche property (a change in one bit affects all others) - // ... use this if you have uint32 key values! - class hash_uint32 - { - public: - enum // parameters for hash table - { - bucket_size = 4, // 0 < bucket_size - min_buckets = 8 // min_buckets = 2 ^^ N, 0 < N - }; - - ILINE size_t operator()(uint32 a) const - { - a = (a + 0x7ed55d16) + (a << 12); - a = (a ^ 0xc761c23c) ^ (a >> 19); - a = (a + 0x165667b1) + (a << 5); - a = (a + 0xd3a2646c) ^ (a << 9); - a = (a + 0xfd7046c5) + (a << 3); - a = (a ^ 0xb55a4f09) ^ (a >> 16); - return a; - }; - bool operator()(uint32 key1, uint32 key2) const - { - return key1 < key2; - } - }; - - ////////////////////////////////////////////////////////////////////////// //! Case sensitive string hash ////////////////////////////////////////////////////////////////////////// @@ -655,130 +602,6 @@ namespace stl } }; - - // Support for both Microsoft and SGI kind of hash_map. - -#if defined(_STLP_HASH_MAP) || defined(APPLE) || defined(LINUX) - // STL Port - template > - struct hash_compare - { - enum - { // parameters for hash table - bucket_size = 4, // 0 < bucket_size - min_buckets = 8 // min_buckets = 2 ^^ N, 0 < N - }; - - size_t operator()(const _Key& _Keyval) const - { - // return hash value. - uint32 a = _Keyval; - a = (a + 0x7ed55d16) + (a << 12); - a = (a ^ 0xc761c23c) ^ (a >> 19); - a = (a + 0x165667b1) + (a << 5); - a = (a + 0xd3a2646c) ^ (a << 9); - a = (a + 0xfd7046c5) + (a << 3); - a = (a ^ 0xb55a4f09) ^ (a >> 16); - return a; - } - - // Less then function. - bool operator()(const _Key& _Keyval1, const _Key& _Keyval2) const - { // test if _Keyval1 ordered before _Keyval2 - _Predicate comp; - return (comp(_Keyval1, _Keyval2)); - } - }; - - template - struct stlport_hash_equal - { - // Equal function. - bool operator()(const Key& k1, const Key& k2) const - { - HashFunc less; - // !(k1 < k2) && !(k2 < k1) - return !less(k1, k2) && !less(k2, k1); - } - }; - - template , class Alloc = std::allocator< std::pair > > - struct hash_map - : public std__hash_map, Alloc> - { - hash_map() - : std__hash_map, Alloc>(HashFunc::min_buckets) {} - }; - - template , class Alloc = std::allocator< std::pair > > - struct hash_multimap - : public std__hash_multimap, Alloc> - { - hash_multimap() - : std__hash_multimap, Alloc>(HashFunc::min_buckets) {} - }; -#endif - - ////////////////////////////////////////////////////////////////////////// - template - class intrusive_linked_list_node - { - public: - intrusive_linked_list_node() { link_to_intrusive_list(static_cast(this)); } - // Not virtual by design - ~intrusive_linked_list_node() { unlink_from_intrusive_list(static_cast(this)); } - - static T* get_intrusive_list_root() { return m_root_intrusive; }; - - static void link_to_intrusive_list(T* pNode) - { - if (m_root_intrusive) - { - // Add to the beginning of the list. - T* head = m_root_intrusive; - pNode->m_prev_intrusive = 0; - pNode->m_next_intrusive = head; - head->m_prev_intrusive = pNode; - m_root_intrusive = pNode; - } - else - { - m_root_intrusive = pNode; - pNode->m_prev_intrusive = 0; - pNode->m_next_intrusive = 0; - } - } - static void unlink_from_intrusive_list(T* pNode) - { - if (pNode == m_root_intrusive) // if head of list. - { - m_root_intrusive = pNode->m_next_intrusive; - if (m_root_intrusive) - { - m_root_intrusive->m_prev_intrusive = 0; - } - } - else - { - if (pNode->m_prev_intrusive) - { - pNode->m_prev_intrusive->m_next_intrusive = pNode->m_next_intrusive; - } - if (pNode->m_next_intrusive) - { - pNode->m_next_intrusive->m_prev_intrusive = pNode->m_prev_intrusive; - } - } - pNode->m_next_intrusive = 0; - pNode->m_prev_intrusive = 0; - } - - public: - static T* m_root_intrusive; - T* m_next_intrusive; - T* m_prev_intrusive; - }; - template inline void reconstruct(T& t) { @@ -860,30 +683,6 @@ namespace stl } }; - template - struct scoped_set - { - scoped_set(T& ref, T val) - : m_ref(&ref) - , m_oldVal(ref) - { - ref = val; - } - - ~scoped_set() - { - (*m_ref) = m_oldVal; - } - - private: - scoped_set(const scoped_set& other); - scoped_set& operator = (const scoped_set& other); - - private: - T* m_ref; - T m_oldVal; - }; - template inline void for_each_array(T (&buffer)[Length], Func func) { @@ -910,64 +709,6 @@ namespace stl template<> \ Class * stl::intrusive_linked_list_node::m_root_intrusive = nullptr; - -// Performs a less-than compare on a serial sequence space, such that earlier values compare less-than later values. -// Unlike a normal integral value, this accounts for overflowing the limit of the underlying type. -// For example, assuming a 2-bit unsigned underlying type (with possible values 0, 1, 2 and 3), the following will hold: 0 < 1 && 1 < 2 && 2 < 3 && 3 < 0 -// Assuming two equal values V1 and V2, V2 can be incremented up to "(2 ^ (bits - 1) - 1)" times and V1 < V2 will continue to hold. -// See also RFC-1982 that documents this http://tools.ietf.org/html/rfc1982 -template -struct SSerialCompare -{ - static_assert(std::is_integral::value && std::is_unsigned::value, "T must be an unsigned integral type"); - - static const T limit = (T(1) << (sizeof(T) * 8 - 1)); - - bool operator()(T lhs, T rhs) - { - return ((lhs < rhs) && (rhs - lhs < limit)) || ((lhs > rhs) && (lhs - rhs > limit)); - } -}; - -template -unsigned sizeOfVP(Container& arr) -{ - int i; - unsigned size = 0; - for (i = 0; i < (int)arr.size(); i++) - { - typename Container::value_type& T = arr[i]; - size += T->Size(); - } - size += (arr.capacity() - arr.size()) * sizeof(typename Container::value_type); - return size; -} - -template -unsigned sizeOfV(Container& arr) -{ - int i; - unsigned size = 0; - for (i = 0; i < (int)arr.size(); i++) - { - typename Container::value_type& T = arr[i]; - size += T.Size(); - } - size += (arr.capacity() - arr.size()) * sizeof(typename Container::value_type); - return size; -} -template -unsigned sizeOfA(Container& arr) -{ - int i; - unsigned size = 0; - for (i = 0; i < arr.size(); i++) - { - typename Container::value_type& T = arr[i]; - size += T.Size(); - } - return size; -} // define the maplikestruct, used to approximate the memory requirements for a map node namespace stl { @@ -1027,5 +768,3 @@ unsigned sizeOfMapS(Map& map) size += map.size() * sizeof(stl::MapLikeStruct); return size; } - -#endif // CRYINCLUDE_CRYCOMMON_STLUTILS_H diff --git a/Code/Legacy/CryCommon/Tarray.h b/Code/Legacy/CryCommon/Tarray.h deleted file mode 100644 index 77c27f0ef8..0000000000 --- a/Code/Legacy/CryCommon/Tarray.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef CRYINCLUDE_CRYCOMMON_TARRAY_H -#define CRYINCLUDE_CRYCOMMON_TARRAY_H -#pragma once - - -#include -#include -#include - -#ifndef CLAMP -#define CLAMP(X, mn, mx) ((X) < (mn) ? (mn) : ((X) < (mx) ? (X) : (mx))) -#endif - -#ifndef SATURATE -#define SATURATE(X) clamp_tpl(X, 0.f, 1.f) -#endif - -#ifndef SATURATEB -#define SATURATEB(X) CLAMP(X, 0, 255) -#endif - -#ifndef LERP -#define LERP(A, B, Alpha) ((A) + (Alpha) * ((B)-(A))) -#endif - -// Safe memory freeing -#ifndef SAFE_DELETE -#define SAFE_DELETE(p) { if (p) { delete (p); (p) = NULL; } \ -} -#endif - -#ifndef SAFE_DELETE_ARRAY -#define SAFE_DELETE_ARRAY(p) { if (p) { delete[] (p); (p) = NULL; } \ -} -#endif - -#ifndef SAFE_RELEASE -#define SAFE_RELEASE(p) { if (p) { (p)->Release(); (p) = NULL; } \ -} -#endif - -#ifndef SAFE_RELEASE_FORCE -#define SAFE_RELEASE_FORCE(p) { if (p) { (p)->ReleaseForce(); (p) = NULL; } \ -} -#endif - -#endif // CRYINCLUDE_CRYCOMMON_TARRAY_H diff --git a/Code/Legacy/CryCommon/TimeValue.h b/Code/Legacy/CryCommon/TimeValue.h index abe37c8608..14f402eb3d 100644 --- a/Code/Legacy/CryCommon/TimeValue.h +++ b/Code/Legacy/CryCommon/TimeValue.h @@ -164,8 +164,6 @@ public: ILINE bool operator==(const CTimeValue& inRhs) const { return m_lValue == inRhs.m_lValue; }; ILINE bool operator!=(const CTimeValue& inRhs) const { return m_lValue != inRhs.m_lValue; }; - AUTO_STRUCT_INFO - void GetMemoryStatistics(class ICrySizer*) const { /*nothing*/} private: // ---------------------------------------------------------- diff --git a/Code/Legacy/CryCommon/TimeValue_info.h b/Code/Legacy/CryCommon/TimeValue_info.h deleted file mode 100644 index 4de34e7997..0000000000 --- a/Code/Legacy/CryCommon/TimeValue_info.h +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef CRYINCLUDE_CRYCOMMON_TIMEVALUE_INFO_H -#define CRYINCLUDE_CRYCOMMON_TIMEVALUE_INFO_H -#pragma once - -#include "TimeValue.h" - -STRUCT_INFO_BEGIN(CTimeValue) -STRUCT_VAR_INFO(m_lValue, TYPE_INFO(int64)) -STRUCT_INFO_END(CTimeValue) - - -#endif // CRYINCLUDE_CRYCOMMON_TIMEVALUE_INFO_H diff --git a/Code/Legacy/CryCommon/TypeInfo_decl.h b/Code/Legacy/CryCommon/TypeInfo_decl.h deleted file mode 100644 index 28a0b370a9..0000000000 --- a/Code/Legacy/CryCommon/TypeInfo_decl.h +++ /dev/null @@ -1,120 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Macros and other definitions needed for TypeInfo declarations. - - -#ifndef CRYINCLUDE_CRYCOMMON_TYPEINFO_DECL_H -#define CRYINCLUDE_CRYCOMMON_TYPEINFO_DECL_H -#pragma once - -#include -#include - -////////////////////////////////////////////////////////////////////////// -// Meta-type support. -////////////////////////////////////////////////////////////////////////// - -// Currently enable type info for all platforms. -#if !defined(ENABLE_TYPE_INFO) -#define ENABLE_TYPE_INFO -#endif -#ifdef ENABLE_TYPE_INFO - -struct CTypeInfo; - -// If TypeInfo exists for T, it is accessed via TypeInfo(T*). -// Default TypeInfo() is implemented by a struct member function. -template -inline const CTypeInfo& TypeInfo(const T* t) -{ - return t->TypeInfo(); -} - -// Declare a class's TypeInfo member -#define STRUCT_INFO \ - const CTypeInfo&TypeInfo() const; - -#define NULL_STRUCT_INFO \ - const CTypeInfo&TypeInfo() const { return *(CTypeInfo*)0; } - -// Declare an override for a type without TypeInfo() member (e.g. basic type) -#define DECLARE_TYPE_INFO(Type) \ - template<> \ - const CTypeInfo&TypeInfo(const Type*); - -// Template version. -#define DECLARE_TYPE_INFO_T(Type) \ - template \ - const CTypeInfo&TypeInfo(const Type*); - -// Type info declaration, with additional prototypes for string conversions. -#define BASIC_TYPE_INFO(Type) \ - AZStd::string ToString(Type const & val); \ - bool FromString(Type & val, const char* s); \ - DECLARE_TYPE_INFO(Type) - -#define CUSTOM_STRUCT_INFO(Struct) \ - const CTypeInfo&TypeInfo() const \ - { static Struct Info; return Info; } - -#else // ENABLE_TYPE_INFO - -#define STRUCT_INFO -#define NULL_STRUCT_INFO -#define DECLARE_TYPE_INFO(Type) -#define DECLARE_TYPE_INFO_T(Type) -#define BASIC_TYPE_INFO(T) - -#endif // ENABLE_TYPE_INFO - -// Specify automatic tool generation of TypeInfo bodies. -#define AUTO_STRUCT_INFO STRUCT_INFO -#define AUTO_TYPE_INFO DECLARE_TYPE_INFO -#define AUTO_TYPE_INFO_T DECLARE_TYPE_INFO_T - -// Obsolete "LOCAL" versions (all infos now generated in local files). -#define AUTO_STRUCT_INFO_LOCAL STRUCT_INFO -#define AUTO_TYPE_INFO_LOCAL DECLARE_TYPE_INFO -#define AUTO_TYPE_INFO_LOCAL_T DECLARE_TYPE_INFO_T - -// Overrides for basic types. -DECLARE_TYPE_INFO(void) - -BASIC_TYPE_INFO(bool) -BASIC_TYPE_INFO(char) -BASIC_TYPE_INFO(wchar_t) -BASIC_TYPE_INFO(signed char) -BASIC_TYPE_INFO(unsigned char) -BASIC_TYPE_INFO(short) -BASIC_TYPE_INFO(unsigned short) -BASIC_TYPE_INFO(int) -BASIC_TYPE_INFO(unsigned int) -BASIC_TYPE_INFO(long) -BASIC_TYPE_INFO(unsigned long) -BASIC_TYPE_INFO(int64) -BASIC_TYPE_INFO(uint64) - -BASIC_TYPE_INFO(float) -BASIC_TYPE_INFO(double) - -BASIC_TYPE_INFO(AZ::Uuid) - -DECLARE_TYPE_INFO(AZStd::string) - -// All pointers share same TypeInfo. -const CTypeInfo&PtrTypeInfo(); -template -inline const CTypeInfo& TypeInfo([[maybe_unused]] T** t) -{ - return PtrTypeInfo(); -} - - -#endif // CRYINCLUDE_CRYCOMMON_TYPEINFO_DECL_H diff --git a/Code/Legacy/CryCommon/TypeInfo_impl.h b/Code/Legacy/CryCommon/TypeInfo_impl.h deleted file mode 100644 index 9c4bb6bca7..0000000000 --- a/Code/Legacy/CryCommon/TypeInfo_impl.h +++ /dev/null @@ -1,213 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : Declaration of CTypeInfo, and other things to access meta-type info. - - -#ifndef CRYINCLUDE_CRYCOMMON_TYPEINFO_IMPL_H -#define CRYINCLUDE_CRYCOMMON_TYPEINFO_IMPL_H -#pragma once - - -#include "CryCustomTypes.h" - -#define ENABLE_TYPE_INFO_NAMES 1 - -//--------------------------------------------------------------------------- -// DECLARATION MACROS -// Used to construct meta TypeInfo objects in AutoTypeInfo files. -// Two possible levels of TypeInfo: default, with size and offset info only, allowing Endian conversion; -// and full, with string, attr, and enum info, allowing UI and serialisation. -// The full version is selected by the ENABLE_TYPE_INFO_NAMES macro. - -#ifdef ENABLE_TYPE_INFO - - #ifndef ENABLE_TYPE_INFO_NAMES -// This symbol must be defined only once per module. - #define ENABLE_TYPE_INFO_NAMES 0 - #endif - - #if ENABLE_TYPE_INFO_NAMES - #define TYPE_INFO_NAME(n) #n - #else - #define TYPE_INFO_NAME(n) "" - #endif - #define TYPE_INFO_NAME_T(n) #n "<>" - -// Set of template functions for automatically returning the base element type for any scalar or array variable. - -template -inline T& ElemType(T* at) -{ return *at; } - -template -inline T& ElemType(T (*at)[N]) -{ return **at; } - -template -inline T& ElemType(T (*at)[N][N2]) -{ return ***at; } - -template -inline T& ElemType(T (*at)[N][N2][N3]) -{ return ****at; } - -template -inline T& ValType([[maybe_unused]] T t) -{ static T _t; return _t; } - -//--------------------------------------------------------------------------- -// Macros for constructing StructInfos (invoked by AutoTypeInfo.h) - - #define DEFINE_TYPE_INFO(T, Type, Args) \ - template<> \ - const CTypeInfo&TypeInfo(const T*) \ - { static Type Info Args; return Info; } \ - - #define STRUCT_INFO_EMPTY_BODY(T) \ - { \ - static CStructInfo Info(#T, sizeof(T), alignof(T)); \ - return Info; \ - } \ - - #define STRUCT_INFO_EMPTY(T) \ - const CTypeInfo&T::TypeInfo() const \ - STRUCT_INFO_EMPTY_BODY(T) \ - - #define STRUCT_INFO_T_EMPTY(T, Key, Arg) \ - template \ - STRUCT_INFO_EMPTY(T) - - #define STRUCT_INFO_TYPE_EMPTY(T) \ - DEFINE_TYPE_INFO(T, CStructInfo, (#T, sizeof(T), alignof(T))) - - #define STRUCT_INFO_TYPE_T_EMPTY(T, TArgs, TDecl) \ - template TDecl const CTypeInfo&TypeInfo(const T TArgs*) \ - STRUCT_INFO_EMPTY_BODY(T TArgs) \ - -// Define TypeInfo for a primitive type, without string conversion. - #define TYPE_INFO_PLAIN(T) DEFINE_TYPE_INFO(T, CTypeInfo, (#T, sizeof(T), alignof(T))) - -// Define TypeInfo for a basic type (undecomposable as far as TypeInfo cares), with external string converters. - #define TYPE_INFO_BASIC(T) DEFINE_TYPE_INFO(T, TTypeInfo, (#T)) - -// Variant for int types, allowing conversion between sizes. - #define TYPE_INFO_INT(T) DEFINE_TYPE_INFO(T, TIntTypeInfo, (#T)) - - #define STRUCT_INFO_BEGIN(T) \ - const CTypeInfo&T::TypeInfo() const { \ - static CStructInfo::CVarInfo Vars[] = { \ - - #define STRUCT_INFO_END(T) \ - }; \ - static CStructInfo Info(#T, sizeof(T), alignof(T), ARRAY_VAR(Vars)); \ - return Info; \ - } - - #define BASE_INFO_ATTRS(BaseType, Attrs) \ - { ::TypeInfo((const BaseType*)this), "", Attrs, uint32((char*)static_cast(this) - (char*)this), 1, 1, 0, 0, 0 }, - - #define BASE_INFO(BaseType) BASE_INFO_ATTRS(BaseType, "") - - #define ALIAS_INFO_ATTRS(AliasName, VarName, Attrs) \ - { ::TypeInfo(&ElemType(&VarName)), TYPE_INFO_NAME(AliasName), Attrs, uint32((char*)&VarName - (char*)this), sizeof(VarName) / sizeof(ElemType(&VarName)), 0, 0, 0, 0 }, - - #define ALIAS_INFO_STRINGNAME_ATTR(AliasStringName, VarName, Attrs) \ - { ::TypeInfo(&ElemType(&VarName)), AliasStringName, Attrs, uint32((char*)&VarName - (char*)this), sizeof(VarName) / sizeof(ElemType(&VarName)), 0, 0, 0, 0 }, - - #define VAR_INFO_ATTRS(VarName, Attrs) \ - ALIAS_INFO_ATTRS(VarName, VarName, Attrs) - - #define VAR_INFO(VarName) \ - VAR_INFO_ATTRS(VarName, "") - - #define ALIAS_INFO(AliasName, VarName) \ - ALIAS_INFO_ATTRS(AliasName, VarName, "") - - #define ATTRS_INFO(Attrs) \ - { ::TypeInfo((void*)0), "", Attrs, 0, 0, 0, 0, 0, 0 }, - - #define BITFIELD_INFO(VarName, Bits) \ - { ::TypeInfo(&ValType(VarName)), TYPE_INFO_NAME(VarName), "", 0, Bits, 0, 1, 0, 0 }, - -// Conversion macros for older system. - #define STRUCT_BASE_INFO(BaseType) BASE_INFO(BaseType) - #define STRUCT_VAR_INFO(VarName, InfoName) VAR_INFO(VarName) - #define STRUCT_BITFIELD_INFO(VarName, VarType, Bits) BITFIELD_INFO(VarName, Bits) - -// Template versions - -template -Array TypeInfoArray1(T const* pt) -{ - static CTypeInfo const* s_info = &::TypeInfo(pt); - return ArrayT(&s_info, 1); -} - - #define STRUCT_INFO_T_BEGIN(T, Key, Arg) \ - template \ - STRUCT_INFO_BEGIN(T) - - #define STRUCT_INFO_T_END(T, Key, Arg) \ - }; \ - static CStructInfo Info(#T "<>", sizeof(T), alignof(T), ARRAY_VAR(Vars), TypeInfoArray1((Arg*)0)); \ - return Info; \ - } - - #define STRUCT_INFO_T2_BEGIN(T, Key1, Arg1, Key2, Arg2) \ - template \ - const CTypeInfo&T::TypeInfo() const { \ - typedef T TThis; \ - static CStructInfo::CVarInfo Vars[] = { \ - - #define STRUCT_INFO_T2_END(T, Key1, Arg1, Key2, Arg2) \ - }; \ - static CTypeInfo const* TemplateTypes[] = { &::TypeInfo((Arg1*)0), &::TypeInfo((Arg2*)0) }; \ - static CStructInfo Info(#T "<,>", sizeof(TThis), alignof(TThis), ARRAY_VAR(Vars), ARRAY_VAR(TemplateTypes)); \ - return Info; \ - } - - #define STRUCT_INFO_T_INSTANTIATE(T, TArgs) \ - template const CTypeInfo& T::TypeInfo() const; - -//--------------------------------------------------------------------------- -// Enum type info - - #if ENABLE_TYPE_INFO_NAMES - -// Enums represented as full CEnumInfo types, with string conversion. - #define ENUM_INFO_BEGIN(T) \ - template<> \ - const CTypeInfo&TypeInfo(const T*) { \ - static CEnumDef::SElem Elems[] = { \ - - #define ENUM_INFO_END(T) \ - }; \ - typedef TIntType::TType TInt; \ - static CEnumInfo Info(#T, ARRAY_VAR(Elems)); \ - return Info; \ - } \ - - #define ENUM_ELEM_INFO(Scope, Elem) \ - { Scope Elem, #Elem }, - - #else // ENABLE_TYPE_INFO_NAMES - -// Enums represented as simple types, with no elements or string conversion. - #define ENUM_INFO_BEGIN(T) \ - TYPE_INFO_PLAIN(T) \ - - #define ENUM_INFO_END(T) - #define ENUM_ELEM_INFO(Scope, Elem) - - #endif // ENABLE_TYPE_INFO_NAMES - -#endif // ENABLE_TYPE_INFO - -#endif // CRYINCLUDE_CRYCOMMON_TYPEINFO_IMPL_H diff --git a/Code/Legacy/CryCommon/VectorMap.h b/Code/Legacy/CryCommon/VectorMap.h index 75b1562c4d..6fce90b4ec 100644 --- a/Code/Legacy/CryCommon/VectorMap.h +++ b/Code/Legacy/CryCommon/VectorMap.h @@ -411,7 +411,6 @@ typename VectorMap::iterator VectorMap::lower_bound(cons { int count = static_cast(m_entries.size()); iterator first = m_entries.begin(); - iterator last = m_entries.end(); for (; 0 < count; ) { // divide and conquer, find half that contains answer int count2 = count / 2; @@ -434,7 +433,6 @@ typename VectorMap::const_iterator VectorMap::lower_boun { int count = static_cast(m_entries.size()); const_iterator first = m_entries.begin(); - const_iterator last = m_entries.end(); for (; 0 < count; ) { // divide and conquer, find half that contains answer int count2 = count / 2; diff --git a/Code/Legacy/CryCommon/VectorSet.h b/Code/Legacy/CryCommon/VectorSet.h deleted file mode 100644 index 15b05e62ef..0000000000 --- a/Code/Legacy/CryCommon/VectorSet.h +++ /dev/null @@ -1,492 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : std::set replacement implemented using sorted vector. - - -#ifndef CRYINCLUDE_CRYCOMMON_VECTORSET_H -#define CRYINCLUDE_CRYCOMMON_VECTORSET_H -#pragma once - - -//-------------------------------------------------------------------------- -// VectorSet -// -// Usage Notes: -// This class is designed to be an (almost, see below) drop-in replacement -// for std::set. It features an almost identical interface, but it is -// implemented using a sorted vector rather than a tree. This is in most -// cases more efficient, as there is less dynamic memory allocation and -// pointer dereferencing. -// -// ************************************************************************* -// PLEASE NOTE: There is one vital difference between std::set and VectorSet -// that you will need to note before trying to replace std::set. Since -// VectorSet is implemented using a vector, iterators can and will be -// invalidated by many operations, such as insertions and deletions, and -// due to sorting potentially even normal lookups. Please Please PLEASE make -// sure that you are not storing any iterators to this class. -// ************************************************************************* -// -// The class varies from the std::set API in that two of the erase methods -// methods are not of void return type but return an iterator - this is -// required in practice because they invalidate iterators, as noted above. -// -// * iterator erase(iterator where); -// * iterator erase(iterator first, iterator last); -// -// It also adds operator[] to the API. -// -// -// Performance Notes: -// -// This class uses the empty base optimization hack to allow comparison -// predicate objects that have no state to take up no space in the object. -// As a result the size of the overall VectorMap instance is the same as -// that of the std::vector it uses to store the elements. -// -// In addition to the normal map interface, this class provides the -// following members that can be used to manage memory requirements: -// -// * void reserve(size_type count); -// Allocate enough space for count elements (see vector::reserve()). -// -// * size_type capacity() const; -// Report how many elements can be stored without reallocating (see -// vector::capacity()). -// -// * void resize(size_type new_size, const_reference x=key_type()); -// see vector::resize()). -// -//-------------------------------------------------------------------------- - -template , typename A = AZ::StdLegacyAllocator > -class VectorSet - : private T // Empty base optimization -{ -public: - typedef K key_type; - typedef A allocator_type; - typedef T key_compare; - typedef T value_compare; - typedef AZStd::vector container_type; - typedef typename container_type::iterator iterator; - typedef typename container_type::const_iterator const_iterator; - typedef typename container_type::reverse_iterator reverse_iterator; - typedef typename container_type::const_reverse_iterator const_reverse_iterator; - typedef typename container_type::size_type size_type; - typedef typename container_type::difference_type difference_type; - typedef key_type& reference; - typedef const key_type& const_reference; - typedef key_type* pointer; - typedef const key_type* const_pointer; - - VectorSet(); - explicit VectorSet(const key_compare& comp); - explicit VectorSet(const key_compare& comp, const allocator_type& allocator); - VectorSet(const VectorSet& right); - template - VectorSet(InputIterator first, InputIterator last); - template - VectorSet(InputIterator first, InputIterator last, const key_compare& comp); - template - VectorSet(InputIterator first, InputIterator last, const key_compare& comp, const allocator_type& allocator); - void SwapElementsWithVector(container_type& elementVector); - const_iterator begin() const; - iterator begin(); - size_type capacity() const; - void resize(size_type __new_size, const_reference __x = key_type()); - void clear(); - size_type count(const_reference key) const; - bool empty() const; - const_iterator end() const; - iterator end(); - std::pair equal_range(const_reference key) const; - std::pair equal_range(const_reference key); - iterator erase(iterator where); // See documentation above - iterator erase(iterator first, iterator last); // See documentation above - size_t erase(const_reference key); - iterator find(const_reference key); - const_iterator find(const_reference key) const; - allocator_type get_allocator() const; - std::pair insert(const_reference value); - iterator insert(iterator _Where, const_reference value); - template - void insert(InputIterator first, InputIterator last); - key_compare key_comp() const; - const_iterator lower_bound(const_reference key) const; - iterator lower_bound(const_reference key); - size_type max_size() const; - const_reverse_iterator rbegin() const; - reverse_iterator rbegin(); - const_reverse_iterator rend() const; - reverse_iterator rend(); - void reserve(size_type count); - size_type size() const; - void swap(VectorSet& right); - const_iterator upper_bound(const_reference key) const; - iterator upper_bound(const_reference key); - value_compare value_comp() const; - reference operator[](int index); // See documentation above - const_reference operator[](int index) const; // See documentation above - - template - void GetMemoryUsage(Sizer* pSizer) const - { - pSizer->AddObject(m_entries); - } -private: - container_type m_entries; -}; - -template -VectorSet::VectorSet() -{ -} - -template -VectorSet::VectorSet(const key_compare& comp) - : key_compare(comp) -{ -} - -template -VectorSet::VectorSet(const key_compare& comp, const allocator_type& allocator) - : key_compare(comp) - , m_entries(allocator) -{ -} - -template -VectorSet::VectorSet(const VectorSet& right) - : key_compare(right) - , m_entries(right.m_entries) -{ -} - -template -template -VectorSet::VectorSet(InputIterator first, InputIterator last) -{ - for (; first != last; ++first) - { - m_entries.push_back(*first); - } - std::sort(m_entries.begin(), m_entries.end(), static_cast(*this)); -} - -template -template -VectorSet::VectorSet(InputIterator first, InputIterator last, const key_compare& comp) - : key_compare(comp) -{ - for (; first != last; ++first) - { - m_entries.push_back(*first); - } - std::sort(m_entries.begin(), m_entries.end(), static_cast(*this)); -} - -template -template -VectorSet::VectorSet(InputIterator first, InputIterator last, const key_compare& comp, const allocator_type& allocator) - : key_compare(comp) - , m_entries(allocator) -{ - for (; first != last; ++first) - { - m_entries.push_back(*first); - } - std::sort(m_entries.begin(), m_entries.end(), static_cast(*this)); -} - -template -void VectorSet::SwapElementsWithVector(container_type& elementVector) -{ - m_entries.swap(elementVector); - std::sort(m_entries.begin(), m_entries.end(), static_cast(*this)); -} - -template -typename VectorSet::const_iterator VectorSet::begin() const -{ - return m_entries.begin(); -} - -template -typename VectorSet::iterator VectorSet::begin() -{ - return m_entries.begin(); -} - -template -typename VectorSet::size_type VectorSet::capacity() const -{ - return m_entries.capacity(); -} - -template -void VectorSet::clear() -{ - m_entries.clear(); -} - -template -void VectorSet::resize(size_type __new_size, const_reference __x) -{ - m_entries.resize(__new_size, __x); -} - -template -typename VectorSet::size_type VectorSet::count(const_reference key) const -{ - return size_type(std::binary_search(m_entries.begin(), m_entries.end(), key, static_cast(*this))); -} - -template -bool VectorSet::empty() const -{ - return m_entries.empty(); -} - -template -typename VectorSet::const_iterator VectorSet::end() const -{ - return m_entries.end(); -} - -template -typename VectorSet::iterator VectorSet::end() -{ - return m_entries.end(); -} - -template -std::pair::const_iterator, typename VectorSet::const_iterator> VectorSet::equal_range(const_reference key) const -{ - const_iterator lower = lower_bound(key); - if (lower != m_entries.end() && key_compare::operator()(key, *lower)) - { - lower = m_entries.end(); - } - const_iterator upper = lower; - if (upper != m_entries.end()) - { - ++upper; - } - return std::make_pair(lower, upper); -} - -template -std::pair::iterator, typename VectorSet::iterator> VectorSet::equal_range(const_reference key) -{ - iterator lower = lower_bound(key); - if (lower != m_entries.end() && key_compare::operator()(key, *lower)) - { - lower = m_entries.end(); - } - iterator upper = lower; - if (upper != m_entries.end()) - { - ++upper; - } - return std::make_pair(lower, upper); -} - -template -typename VectorSet::iterator VectorSet::erase(iterator where) -{ - return m_entries.erase(where); -} - -template -typename VectorSet::iterator VectorSet::erase(iterator first, iterator last) -{ - return m_entries.erase(first, last); -} - -template -size_t VectorSet::erase(const_reference key) -{ - iterator where = find(key); - - if (where != m_entries.end()) - { - // Note erasing entries does not invalidate the sort - no need to trigger a re-sort. - m_entries.erase(where); - return 1; - } - - return 0; -} - -template -typename VectorSet::iterator VectorSet::find(const_reference key) -{ - iterator it = lower_bound(key); - if (it != m_entries.end() && key_compare::operator()(key, *it)) - { - it = m_entries.end(); - } - return it; -} - -template -typename VectorSet::const_iterator VectorSet::find(const_reference key) const -{ - const_iterator it = lower_bound(key); - if (it != m_entries.end() && key_compare::operator()(key, *it)) - { - it = m_entries.end(); - } - return it; -} - -template -typename VectorSet::allocator_type VectorSet::get_allocator() const -{ - return m_entries.get_allocator(); -} - -template -std::pair::iterator, bool> VectorSet::insert(const_reference value) -{ - iterator it = lower_bound(value); - bool insertionMade = false; - if (it == m_entries.end() || key_compare::operator()(value, (*it))) - { - it = m_entries.insert(it, value), insertionMade = true; - } - return std::make_pair(it, insertionMade); -} - -template -typename VectorSet::iterator VectorSet::insert(iterator where, const_reference value) -{ - return insert(value); -} - -template -template -void VectorSet::insert(InputIterator first, InputIterator last) -{ - for (; first != last; ++first) - { - insert(*first); - } -} - -template -typename VectorSet::key_compare VectorSet::key_comp() const -{ - return static_cast(*this); -} - -template -typename VectorSet::const_iterator VectorSet::lower_bound(const_reference key) const -{ - return std::lower_bound(m_entries.begin(), m_entries.end(), key, static_cast(*this)); -} - -template -typename VectorSet::iterator VectorSet::lower_bound(const_reference key) -{ - return std::lower_bound(m_entries.begin(), m_entries.end(), key, static_cast(*this)); -} - -template -typename VectorSet::size_type VectorSet::max_size() const -{ - return m_entries.max_size(); -} - -template -typename VectorSet::const_reverse_iterator VectorSet::rbegin() const -{ - return m_entries.rbegin(); -} - -template -typename VectorSet::reverse_iterator VectorSet::rbegin() -{ - return m_entries.rbegin(); -} - -template -typename VectorSet::const_reverse_iterator VectorSet::rend() const -{ - return m_entries.rend(); -} - -template -typename VectorSet::reverse_iterator VectorSet::rend() -{ - return m_entries.rend(); -} - -template -void VectorSet::reserve(size_type count) -{ - m_entries.reserve(count); -} - -template -typename VectorSet::size_type VectorSet::size() const -{ - return m_entries.size(); -} - -template -void VectorSet::swap(VectorSet& other) -{ - m_entries.swap(other.m_entries); - std::swap(static_cast(*this), static_cast(other)); -} - -template -typename VectorSet::const_iterator VectorSet::upper_bound(const_reference key) const -{ - const_iterator upper = lower_bound(key); - if (upper != m_entries.end() && !key_compare::operator()(key, *upper)) - { - ++upper; - } - return upper; -} - -template -typename VectorSet::iterator VectorSet::upper_bound(const_reference key) -{ - iterator upper = lower_bound(key); - if (upper != m_entries.end() && !key_compare::operator()(key, *upper)) - { - ++upper; - } - return upper; -} - -template -typename VectorSet::value_compare VectorSet::value_comp() const -{ - return static_cast(*this); -} - -template -typename VectorSet::reference VectorSet::operator[](int index) -{ - return m_entries[index]; -} - -template -typename VectorSet::const_reference VectorSet::operator[](int index) const -{ - return m_entries[index]; -} - -#endif // CRYINCLUDE_CRYCOMMON_VECTORSET_H diff --git a/Code/Legacy/CryCommon/Vertex.h b/Code/Legacy/CryCommon/Vertex.h index b9e0b25d38..f4e8f71a56 100644 --- a/Code/Legacy/CryCommon/Vertex.h +++ b/Code/Legacy/CryCommon/Vertex.h @@ -9,6 +9,9 @@ #include #include #include +#include +#include + namespace AZ { namespace Vertex @@ -77,7 +80,7 @@ namespace AZ UInt32_4, NumTypes - }; + }; struct AttributeTypeData { @@ -127,15 +130,15 @@ namespace AZ return (static_cast(type) << kUsageBitCount) | static_cast(usage); } static AttributeUsage GetUsage(const uint8 attribute) - { + { return static_cast(attribute & kUsageMask); } static AttributeType GetType(const uint8 attribute) - { + { return static_cast((attribute & kTypeMask) >> kUsageBitCount); } static uint8 GetByteLength(const uint8 attribute) - { + { return AttributeTypeDataTable[(uint)GetType(attribute)].byteSize; } static const AZStd::string& GetSemanticName(uint8 attribute) @@ -167,126 +170,22 @@ namespace AZ AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); m_enum = eVF_P3F_C4B_T2F; break; - case eVF_P3F_C4B_T2F_T2F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Byte_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - m_enum = eVF_P3F_C4B_T2F_T2F; - break; case eVF_P3S_C4B_T2S: AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float16_4));// vec3f16 is backed by a CryHalf4 AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Byte_4)); AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float16_2)); m_enum = eVF_P3S_C4B_T2S; break; - case eVF_P3S_C4B_T2S_T2S: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float16_4));// vec3f16 is backed by a CryHalf4 - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Byte_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float16_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float16_2)); - m_enum = eVF_P3S_C4B_T2S_T2S; - break; - case eVF_P3S_N4B_C4B_T2S: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float16_4));// vec3f16 is backed by a CryHalf4 - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Normal, AttributeType::Byte_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Byte_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float16_2)); - m_enum = eVF_P3S_N4B_C4B_T2S; - break; - case eVF_P3F_C4B_T4B_N3F2: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Byte_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Byte_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Tangent, AttributeType::Float32_3));//x-axis - AddAttribute(Attribute::CreateAttribute(AttributeUsage::BiTangent, AttributeType::Float32_3));//y-axis -#ifdef PARTICLE_MOTION_BLUR // Nonfunctional and disabled. - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3));//prevPos - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Tangent, AttributeType::Float32_3));//prevXTan - AddAttribute(Attribute::CreateAttribute(AttributeUsage::BiTangent, AttributeType::Float32_3));//prevYTan -#endif - m_enum = eVF_P3F_C4B_T4B_N3F2;// Particles. - break; - case eVF_TP3F_C4B_T2F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Byte_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - m_enum = eVF_TP3F_C4B_T2F;// Fonts (28 bytes). - break; - case eVF_TP3F_T2F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_TP3F_T2F_T3F; - break; - case eVF_P3F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_T3F; // Miscellaneus. - break; - case eVF_P3F_T2F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_T2F_T3F; - break; // Additional streams - case eVF_T2F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - m_enum = eVF_T2F; // Light maps TC (8 bytes). - break; case eVF_W4B_I4S:// Skinned weights/indices stream. AddAttribute(Attribute::CreateAttribute(AttributeUsage::Weights, AttributeType::Byte_4)); AddAttribute(Attribute::CreateAttribute(AttributeUsage::Indices, AttributeType::UInt16_4)); m_enum = eVF_W4B_I4S; break; - case eVF_C4B_C4B:// SH coefficients. - // We use the "Weights" usage since sh coefs use an unknown usage of 4 bytes. - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Weights, AttributeType::Byte_4)); //coef0 - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Weights, AttributeType::Byte_4)); //coef1 - m_enum = eVF_C4B_C4B; - break; - case eVF_P3F_P3F_I4B:// Shape deformation stream. - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); //thin - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); //fat - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Indices, AttributeType::Byte_4)); - m_enum = eVF_P3F_P3F_I4B; - break; case eVF_P3F:// Velocity stream. AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); m_enum = eVF_P3F; break; - case eVF_C4B_T2S: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Byte_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float16_2)); - m_enum = eVF_C4B_T2S;// General (Position is merged with Tangent stream) - break; - case eVF_P2F_T4F_C4F: // Lens effects simulation - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - m_enum = eVF_P2F_T4F_C4F; - break; - case eVF_P2F_T4F_T4F_C4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - m_enum = eVF_P2F_T4F_T4F_C4F; - break; - case eVF_P2S_N4B_C4B_T1F:// terrain - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float16_2));// xy-coordinates in terrain - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Normal, AttributeType::Byte_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Byte_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1));// z-coordinate in terrain - m_enum = eVF_P2S_N4B_C4B_T1F; - break; - case eVF_P3F_C4B_T2S: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Byte_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float16_2)); - m_enum = eVF_P3F_C4B_T2S; - break; case eVF_P2F_C4B_T2F_F4B: AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_2)); AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Byte_4)); @@ -299,546 +198,6 @@ namespace AZ AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Byte_4)); m_enum = eVF_P3F_C4B; break; - case eVF_P3F_C4F_T2F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - m_enum = eVF_P3F_C4F_T2F; - break; - case eVF_P3F_C4F_T2F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_C4F_T2F_T3F; - break; - case eVF_P3F_C4F_T2F_T3F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_C4F_T2F_T3F_T3F; - break; - case eVF_P3F_C4F_T2F_T1F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - m_enum = eVF_P3F_C4F_T2F_T1F; - break; - case eVF_P3F_C4F_T2F_T1F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_C4F_T2F_T1F_T3F; - break; - case eVF_P3F_C4F_T2F_T1F_T3F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_C4F_T2F_T1F_T3F_T3F; - break; - case eVF_P3F_C4F_T4F_T2F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - m_enum = eVF_P3F_C4F_T4F_T2F; - break; - case eVF_P3F_C4F_T4F_T2F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_C4F_T4F_T2F_T3F; - break; - case eVF_P3F_C4F_T4F_T2F_T3F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_C4F_T4F_T2F_T3F_T3F; - break; - case eVF_P3F_C4F_T4F_T2F_T1F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - m_enum = eVF_P3F_C4F_T4F_T2F_T1F; - break; - case eVF_P3F_C4F_T4F_T2F_T1F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_C4F_T4F_T2F_T1F_T3F; - break; - case eVF_P3F_C4F_T4F_T2F_T1F_T3F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_C4F_T4F_T2F_T1F_T3F_T3F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T3F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T3F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T3F_T3F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T1F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T1F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T3F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T3F; - break; - case eVF_P4F_T2F_C4F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P4F_T2F_C4F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T4F; - break; - case eVF_P3F_C4F_T2F_T3F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T3F_T4F; - break; - case eVF_P3F_C4F_T2F_T3F_T3F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T3F_T3F_T4F; - break; - case eVF_P3F_C4F_T2F_T1F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T1F_T4F; - break; - case eVF_P3F_C4F_T2F_T1F_T3F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T1F_T3F_T4F; - break; - case eVF_P3F_C4F_T2F_T1F_T3F_T3F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T1F_T3F_T3F_T4F; - break; - case eVF_P3F_C4F_T4F_T2F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T4F_T2F_T4F; - break; - case eVF_P3F_C4F_T4F_T2F_T3F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T4F_T2F_T3F_T4F; - break; - case eVF_P3F_C4F_T4F_T2F_T3F_T3F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T4F_T2F_T3F_T3F_T4F; - break; - case eVF_P3F_C4F_T4F_T2F_T1F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T4F_T2F_T1F_T4F; - break; - case eVF_P3F_C4F_T4F_T2F_T1F_T3F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T4F_T2F_T1F_T3F_T4F; - break; - case eVF_P3F_C4F_T4F_T2F_T1F_T3F_T3F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T4F_T2F_T1F_T3F_T3F_T4F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T4F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T3F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T3F_T4F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T3F_T3F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T3F_T3F_T4F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T1F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T1F_T4F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T4F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T3F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T3F_T4F; - break; - case eVF_P4F_T2F_C4F_T4F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P4F_T2F_C4F_T4F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T3F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T3F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T3F_T3F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T3F_T3F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T1F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T1F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T1F_T3F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T1F_T3F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T1F_T3F_T3F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T1F_T3F_T3F_T4F_T4F; - break; - case eVF_P3F_C4F_T4F_T2F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T4F_T2F_T4F_T4F; - break; - case eVF_P3F_C4F_T4F_T2F_T3F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T4F_T2F_T3F_T4F_T4F; - break; - case eVF_P3F_C4F_T4F_T2F_T3F_T3F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T4F_T2F_T3F_T3F_T4F_T4F; - break; - case eVF_P3F_C4F_T4F_T2F_T1F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T4F_T2F_T1F_T4F_T4F; - break; - case eVF_P3F_C4F_T4F_T2F_T1F_T3F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T4F_T2F_T1F_T3F_T4F_T4F; - break; - case eVF_P3F_C4F_T4F_T2F_T1F_T3F_T3F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T4F_T2F_T1F_T3F_T3F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T3F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T3F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T3F_T3F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T3F_T3F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T1F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T1F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T4F_T4F; - break; - case eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T3F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_1)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_3)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T3F_T4F_T4F; - break; - case eVF_P4F_T2F_C4F_T4F_T4F_T4F_T4F: - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Position, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_2)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::Color, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - AddAttribute(Attribute::CreateAttribute(AttributeUsage::TexCoord, AttributeType::Float32_4)); - m_enum = eVF_P4F_T2F_C4F_T4F_T4F_T4F_T4F; - break; case eVF_Max: default: AZ_Error("VF", false, "Invalid vertex format"); @@ -854,115 +213,19 @@ namespace AZ static const uint8 kHas16BitFloatTexCoords = 0x2; static const uint8 kHas32BitFloatTexCoords = 0x1; - - //! Helper function to check to see if the vertex format has a position attribute that uses 16 bit floats for the underlying type - bool Has16BitFloatPosition() const - { - return (m_flags & kHas16BitFloatPosition) != 0x0; - } - - //! Helper function to check to see if the vertex format has a texture coordinate attribute that uses 16 bit floats for the underlying type - bool Has16BitFloatTextureCoordinates() const - { - return (m_flags & kHas16BitFloatTexCoords) != 0x0; - } - - //! Helper function to check to see if the vertex format has a texture coordinate attribute that uses 32 bit floats for the underlying type - bool Has32BitFloatTextureCoordinates() const - { - return (m_flags & kHas32BitFloatTexCoords) != 0x0; - } - uint32 GetAttributeUsageCount(AttributeUsage usage) const { return (uint32)m_attributeUsageCounts[(uint)usage]; } - bool TryGetAttributeOffsetAndType(AttributeUsage usage, uint32 index, uint& outOffset, AttributeType& outType) const - { - outOffset = 0; - outType = AttributeType::NumTypes; - for (uint ii=0; ii < m_numAttributes; ++ii) - { - uint8 attribute = m_vertexAttributes[ii]; - if (Attribute::GetUsage(attribute) == usage) - { - if (index == 0) - { - outType = Attribute::GetType(attribute); - return true; - } - else - { - --index; - } - } - outOffset += Attribute::GetByteLength(attribute); - } - return false; - } - - uint8 GetAttributeByteLength(AttributeUsage usage) const - { - for (uint ii = 0; ii < m_numAttributes; ++ii) - { - uint8 attribute = m_vertexAttributes[ii]; - if (Attribute::GetUsage(attribute) == usage) - { - return Attribute::GetByteLength(attribute); - } - } - return 0; - } - - const uint8* GetAttributes( uint32 &outCount) const { outCount = m_numAttributes; return m_vertexAttributes; } - //! Return true if the vertex format is a superset of the input - bool IsSupersetOf(const AZ::Vertex::Format& input) const - { - uint32 count = 0; - const uint8* attributes = input.GetAttributes(count); - for ( uint8 ii=0; ii(stride); } - + #ifdef PARTICLE_MOTION_BLUR @@ -1056,34 +319,5 @@ namespace AZ uint8 m_flags = 0x0; }; - - // bNeedNormals=1 - float normals; bNeedNormals=2 - byte normals //waltont TODO (this was copied as is from vertexformats.h) this comment is out of date and the function does not even use all the parameters. This should be replaceable with the new vertex class, and should be replaced when refactoring CHWShader_D3D::mfVertexFormat which handles the shader parsing/serialization - _inline Format VertFormatForComponents([[maybe_unused]] bool bNeedCol, [[maybe_unused]] bool bHasTC, bool bHasTC2, bool bHasPS, bool bHasNormal) - { - AZ::Vertex::Format RequestedVertFormat; - - if (bHasPS) - { - RequestedVertFormat = AZ::Vertex::Format(eVF_P3F_C4B_T4B_N3F2); - } - else - if (bHasNormal) - { - RequestedVertFormat = AZ::Vertex::Format(eVF_P3S_N4B_C4B_T2S); - } - else - { - if (!bHasTC2) - { - RequestedVertFormat = AZ::Vertex::Format(eVF_P3S_C4B_T2S); - } - else - { - RequestedVertFormat = AZ::Vertex::Format(eVF_P3F_C4B_T2F_T2F); - } - } - - return RequestedVertFormat; - } } } diff --git a/Code/Legacy/CryCommon/VertexFormats.h b/Code/Legacy/CryCommon/VertexFormats.h index 2231d4dfd0..8f5d0f0923 100644 --- a/Code/Legacy/CryCommon/VertexFormats.h +++ b/Code/Legacy/CryCommon/VertexFormats.h @@ -7,12 +7,9 @@ */ -#ifndef CRYINCLUDE_CRYCOMMON_VERTEXFORMATS_H -#define CRYINCLUDE_CRYCOMMON_VERTEXFORMATS_H - #pragma once -#include +#include // Stream Configuration options #define ENABLE_NORMALSTREAM_SUPPORT 1 @@ -22,94 +19,16 @@ enum EVertexFormat : uint8 // Base stream eVF_P3F_C4B_T2F, - eVF_P3F_C4B_T2F_T2F, eVF_P3S_C4B_T2S, - eVF_P3S_C4B_T2S_T2S, // For UV2 support - eVF_P3S_N4B_C4B_T2S, - - eVF_P3F_C4B_T4B_N3F2, // Particles. - eVF_TP3F_C4B_T2F, // Fonts (28 bytes). - eVF_TP3F_T2F_T3F, // Miscellaneus. - eVF_P3F_T3F, // Miscellaneus. (AuxGeom) - eVF_P3F_T2F_T3F, // Miscellaneus. // Additional streams - eVF_T2F, // Light maps TC (8 bytes). eVF_W4B_I4S, // Skinned weights/indices stream. - eVF_C4B_C4B, // SH coefficients. - eVF_P3F_P3F_I4B, // Shape deformation stream. eVF_P3F, // Velocity stream. - eVF_C4B_T2S, // General (Position is merged with Tangent stream) - // Lens effects simulation - eVF_P2F_T4F_C4F, // primary - eVF_P2F_T4F_T4F_C4F, - eVF_P2S_N4B_C4B_T1F, - eVF_P3F_C4B_T2S, eVF_P2F_C4B_T2F_F4B, // UI eVF_P3F_C4B,// Auxiliary geometry - - - eVF_P3F_C4F_T2F, //numbering for tracking the new vertex formats and for comparison with testing 23 - eVF_P3F_C4F_T2F_T3F, - eVF_P3F_C4F_T2F_T3F_T3F, - eVF_P3F_C4F_T2F_T1F, - eVF_P3F_C4F_T2F_T1F_T3F, - eVF_P3F_C4F_T2F_T1F_T3F_T3F, - eVF_P3F_C4F_T4F_T2F, - eVF_P3F_C4F_T4F_T2F_T3F, //30 - eVF_P3F_C4F_T4F_T2F_T3F_T3F, - eVF_P3F_C4F_T4F_T2F_T1F, - eVF_P3F_C4F_T4F_T2F_T1F_T3F, - eVF_P3F_C4F_T4F_T2F_T1F_T3F_T3F, - eVF_P3F_C4F_T2F_T2F_T1F, //35 - eVF_P3F_C4F_T2F_T2F_T1F_T3F, - eVF_P3F_C4F_T2F_T2F_T1F_T3F_T3F, - eVF_P3F_C4F_T2F_T2F_T1F_T1F, - eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F, - eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T3F, //40 - eVF_P4F_T2F_C4F_T4F_T4F, - eVF_P3F_C4F_T2F_T4F, - eVF_P3F_C4F_T2F_T3F_T4F, - eVF_P3F_C4F_T2F_T3F_T3F_T4F, - eVF_P3F_C4F_T2F_T1F_T4F, //45 - eVF_P3F_C4F_T2F_T1F_T3F_T4F, - eVF_P3F_C4F_T2F_T1F_T3F_T3F_T4F, - eVF_P3F_C4F_T4F_T2F_T4F, - eVF_P3F_C4F_T4F_T2F_T3F_T4F, - eVF_P3F_C4F_T4F_T2F_T3F_T3F_T4F, //50 - eVF_P3F_C4F_T4F_T2F_T1F_T4F, - eVF_P3F_C4F_T4F_T2F_T1F_T3F_T4F, - eVF_P3F_C4F_T4F_T2F_T1F_T3F_T3F_T4F, - eVF_P3F_C4F_T2F_T2F_T1F_T4F, - eVF_P3F_C4F_T2F_T2F_T1F_T3F_T4F, //55 - eVF_P3F_C4F_T2F_T2F_T1F_T3F_T3F_T4F, - eVF_P3F_C4F_T2F_T2F_T1F_T1F_T4F, - eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T4F, - eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T3F_T4F, - eVF_P4F_T2F_C4F_T4F_T4F_T4F, //60 - eVF_P3F_C4F_T2F_T4F_T4F, - eVF_P3F_C4F_T2F_T3F_T4F_T4F, - eVF_P3F_C4F_T2F_T3F_T3F_T4F_T4F, - eVF_P3F_C4F_T2F_T1F_T4F_T4F, - eVF_P3F_C4F_T2F_T1F_T3F_T4F_T4F, //65 - eVF_P3F_C4F_T2F_T1F_T3F_T3F_T4F_T4F, - eVF_P3F_C4F_T4F_T2F_T4F_T4F, - eVF_P3F_C4F_T4F_T2F_T3F_T4F_T4F, - eVF_P3F_C4F_T4F_T2F_T3F_T3F_T4F_T4F, - eVF_P3F_C4F_T4F_T2F_T1F_T4F_T4F, //70 - eVF_P3F_C4F_T4F_T2F_T1F_T3F_T4F_T4F, - eVF_P3F_C4F_T4F_T2F_T1F_T3F_T3F_T4F_T4F, - eVF_P3F_C4F_T2F_T2F_T1F_T4F_T4F, - eVF_P3F_C4F_T2F_T2F_T1F_T3F_T4F_T4F, - eVF_P3F_C4F_T2F_T2F_T1F_T3F_T3F_T4F_T4F, //75 - eVF_P3F_C4F_T2F_T2F_T1F_T1F_T4F_T4F, - eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T4F_T4F, - eVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T3F_T4F_T4F, - eVF_P4F_T2F_C4F_T4F_T4F_T4F_T4F, - eVF_Max, }; @@ -143,8 +62,6 @@ struct UCol (bcolor[2] - 128.0f) / 127.5f ); } - - AUTO_STRUCT_INFO }; struct Vec3f16 @@ -242,14 +159,6 @@ struct SVF_P3F_C4B_T2F Vec2 st; }; -struct SVF_P3F_C4B_T2F_T2F -{ - Vec3 xyz; - UCol color; - Vec2 st; - Vec2 st2; -}; - struct SVF_P2F_C4B_T2F_F4B { Vec2 xy; @@ -261,743 +170,23 @@ struct SVF_P2F_C4B_T2F_F4B uint8 pad; }; -struct SVF_TP3F_C4B_T2F //Fonts -{ - Vec4 pos; - UCol color; - Vec2 st; -}; struct SVF_P3S_C4B_T2S { Vec3f16 xyz; UCol color; Vec2f16 st; - - AUTO_STRUCT_INFO }; -struct SVF_P3S_C4B_T2S_T2S -{ - Vec3f16 xyz; - UCol color; - Vec2f16 st; - Vec2f16 st2; - - AUTO_STRUCT_INFO -}; - -struct SVF_P3F_C4B_T2S -{ - Vec3 xyz; - UCol color; - Vec2f16 st; -}; - -struct SVF_P3S_N4B_C4B_T2S -{ - Vec3f16 xyz; - UCol normal; - UCol color; - Vec2f16 st; -}; - -struct SVF_P2S_N4B_C4B_T1F -{ - CryHalf2 xy; - UCol normal; - UCol color; - float z; -}; - -struct SVF_T2F -{ - Vec2 st; -}; struct SVF_W4B_I4S { UCol weights; uint16 indices[4]; }; -struct SVF_C4B_C4B -{ - UCol coef0; - UCol coef1; -}; -struct SVF_P3F_P3F_I4B -{ - Vec3 thin; - Vec3 fat; - UCol index; -}; + struct SVF_P3F { Vec3 xyz; }; -struct SVF_P3F_T3F -{ - Vec3 p; - Vec3 st; -}; -struct SVF_P3F_T2F_T3F -{ - Vec3 p; - Vec2 st0; - Vec3 st1; -}; -struct SVF_TP3F_T2F_T3F -{ - Vec4 p; - Vec2 st0; - Vec3 st1; -}; -struct SVF_P2F_T4F_C4F -{ - Vec2 p; - Vec4 st; - Vec4 color; -}; - -struct SVF_P2F_T4F_T4F_C4F -{ - Vec2 p; - Vec4 st; - Vec4 st2; - Vec4 color; -}; - -struct SVF_P3F_C4B_I4B_PS4F -{ - Vec3 xyz; - Vec2 prevXaxis; - Vec2 prevYaxis; - UCol color; - Vec3 prevPos; - struct SpriteInfo - { - uint8 tex_x, tex_y, tex_z, backlight; // xyzw - } info; - Vec2 xaxis; - Vec2 yaxis; -}; - -struct SVF_P3F_C4B_T4B_N3F2 -{ - Vec3 xyz; - UCol color; - UCol st; // st is used as a color, even though st usually refers to a TexCoord - Vec3 xaxis; - Vec3 yaxis; -#ifdef PARTICLE_MOTION_BLUR - Vec3 prevPos; - Vec3 prevXTan; - Vec3 prevYTan; -#endif -}; - -struct SVF_C4B_T2S -{ - UCol color; - Vec2f16 st; -}; - -struct SVF_P3F_C4F_T2F -{ - Vec3 xyz; - Vec4 color; - Vec2 st; -}; - -struct SVF_P3F_C4F_T2F_T3F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec3 st1; -}; - -struct SVF_P3F_C4F_T2F_T3F_T3F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec3 st1; - Vec3 st2; -}; - -struct SVF_P3F_C4F_T2F_T1F -{ - Vec3 xyz; - Vec4 color; - Vec2 st; - float z; -}; - -struct SVF_P3F_C4F_T2F_T1F_T3F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - float z; - Vec3 st1; -}; - -struct SVF_P3F_C4F_T2F_T1F_T3F_T3F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - float z; - Vec3 st1; - Vec3 st2; -}; - - -struct SVF_P3F_C4F_T4F_T2F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; -}; - -struct SVF_P3F_C4F_T4F_T2F_T3F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - Vec3 st2; -}; - -struct SVF_P3F_C4F_T4F_T2F_T3F_T3F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - Vec3 st2; - Vec3 st3; -}; - -struct SVF_P3F_C4F_T4F_T2F_T1F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - float z; -}; - -struct SVF_P3F_C4F_T4F_T2F_T1F_T3F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - float z; - Vec3 st2; -}; - -struct SVF_P3F_C4F_T4F_T2F_T1F_T3F_T3F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - float z; - Vec3 st2; - Vec3 st3; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T3F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z; - Vec3 st2; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T3F_T3F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z; - Vec3 st2; - Vec3 st3; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T1F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z0; - float z1; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z0; - float z1; - Vec3 st2; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T3F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z0; - float z1; - Vec3 st2; - Vec3 st3; -}; - -struct SVF_P4F_T2F_C4F_T4F_T4F -{ - Vec4 xyzw; - Vec2 st0; - Vec4 color; - Vec4 st1; - Vec4 st2; -}; - -struct SVF_P3F_C4F_T2F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec4 st1; -}; - -struct SVF_P3F_C4F_T2F_T3F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec3 st1; - Vec4 st2; -}; - -struct SVF_P3F_C4F_T2F_T3F_T3F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec3 st1; - Vec3 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T2F_T1F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - float z; - Vec4 st1; -}; - -struct SVF_P3F_C4F_T2F_T1F_T3F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - float z; - Vec3 st1; - Vec4 st2; -}; - -struct SVF_P3F_C4F_T2F_T1F_T3F_T3F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - float z; - Vec3 st1; - Vec3 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T4F_T2F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - Vec4 st2; -}; - -struct SVF_P3F_C4F_T4F_T2F_T3F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - Vec3 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T4F_T2F_T3F_T3F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - Vec3 st2; - Vec3 st3; - Vec4 st4; -}; - -struct SVF_P3F_C4F_T4F_T2F_T1F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - float z; - Vec4 st2; -}; - -struct SVF_P3F_C4F_T4F_T2F_T1F_T3F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - float z; - Vec3 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T4F_T2F_T1F_T3F_T3F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - float z; - Vec3 st2; - Vec3 st3; - Vec4 st4; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z; - Vec4 st2; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T3F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z; - Vec3 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T3F_T3F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z; - Vec3 st2; - Vec3 st3; - Vec4 st4; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T1F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z0; - float z1; - Vec4 st2; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z0; - float z1; - Vec3 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T3F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z0; - float z1; - Vec3 st2; - Vec3 st3; - Vec4 st4; -}; - -struct SVF_P4F_T2F_C4F_T4F_T4F_T4F -{ - Vec4 xyzw; - Vec2 st0; - Vec4 color; - Vec4 st1; - Vec4 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T2F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec4 st1; - Vec4 st2; -}; - -struct SVF_P3F_C4F_T2F_T3F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec3 st1; - Vec4 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T2F_T3F_T3F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec3 st1; - Vec3 st2; - Vec4 st3; - Vec4 st4; -}; - -struct SVF_P3F_C4F_T2F_T1F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - float z; - Vec4 st1; - Vec4 st2; -}; - -struct SVF_P3F_C4F_T2F_T1F_T3F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - float z; - Vec3 st1; - Vec4 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T2F_T1F_T3F_T3F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - float z; - Vec3 st1; - Vec3 st2; - Vec4 st3; - Vec4 st4; -}; - -struct SVF_P3F_C4F_T4F_T2F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - Vec4 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T4F_T2F_T3F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - Vec3 st2; - Vec4 st3; - Vec4 st4; -}; - -struct SVF_P3F_C4F_T4F_T2F_T3F_T3F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - Vec3 st2; - Vec3 st3; - Vec4 st4; - Vec4 st5; -}; - -struct SVF_P3F_C4F_T4F_T2F_T1F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - float z; - Vec4 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T4F_T2F_T1F_T3F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - float z; - Vec3 st2; - Vec4 st3; - Vec4 st4; -}; - -struct SVF_P3F_C4F_T4F_T2F_T1F_T3F_T3F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec4 st0; - Vec2 st1; - float z; - Vec3 st2; - Vec3 st3; - Vec4 st4; - Vec4 st5; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z; - Vec4 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T3F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z; - Vec3 st2; - Vec4 st3; - Vec4 st4; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T3F_T3F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z; - Vec3 st2; - Vec3 st3; - Vec4 st4; - Vec4 st5; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T1F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z0; - float z1; - Vec4 st2; - Vec4 st3; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z0; - float z1; - Vec3 st2; - Vec4 st3; - Vec4 st4; -}; - -struct SVF_P3F_C4F_T2F_T2F_T1F_T1F_T3F_T3F_T4F_T4F -{ - Vec3 xyz; - Vec4 color; - Vec2 st0; - Vec2 st1; - float z0; - float z1; - Vec3 st2; - Vec3 st3; - Vec4 st4; - Vec4 st5; -}; - -struct SVF_P4F_T2F_C4F_T4F_T4F_T4F_T4F -{ - Vec4 xyzw; - Vec2 st0; - Vec4 color; - Vec4 st1; - Vec4 st2; - Vec4 st3; - Vec4 st4; -}; - //============================================================= // Signed norm value packing [-1,+1] @@ -1240,8 +429,6 @@ public: *this = SPipTangents(tng3, btg3, PackingSNorm::tPackB2S(Tangent.w)); } - - friend struct SMeshTangents; }; struct SPipQTangents @@ -1290,8 +477,6 @@ public: const Quat q = GetQ(); return q.GetColumn2() * (q.w < 0.0f ? -1.0f : +1.0f); } - - friend struct SMeshQTangents; }; struct SPipNormal @@ -1328,8 +513,6 @@ struct SPipNormal // normalize in case "trn" wasn't length-preserving *this = SPipNormal(trn.TransformVector(*this).normalize()); } - - friend struct SMeshNormal; }; //================================================================================================== @@ -1364,24 +547,4 @@ enum EStreamIDs VSF_MORPHBUDDY_WEIGHTS = 15, // Morphing weights }; -// Stream Masks (Used during updating) -enum EStreamMasks -{ - VSM_GENERAL = 1 << VSF_GENERAL, - VSM_TANGENTS = ((1 << VSF_TANGENTS) | (1 << VSF_QTANGENTS)), - VSM_HWSKIN = 1 << VSF_HWSKIN_INFO, - VSM_VERTEX_VELOCITY = 1 << VSF_VERTEX_VELOCITY, -# if ENABLE_NORMALSTREAM_SUPPORT - VSM_NORMALS = 1 << VSF_NORMALS, -#endif - - VSM_MORPHBUDDY = 1 << VSF_MORPHBUDDY, - VSM_INSTANCED = 1 << VSF_INSTANCED, - - VSM_MASK = ((1 << VSF_NUM) - 1), -}; - //================================================================================================================== - -#endif // CRYINCLUDE_CRYCOMMON_VERTEXFORMATS_H - diff --git a/Code/Legacy/CryCommon/Win32specific.h b/Code/Legacy/CryCommon/Win32specific.h index 62d32138b4..4fa116166b 100644 --- a/Code/Legacy/CryCommon/Win32specific.h +++ b/Code/Legacy/CryCommon/Win32specific.h @@ -101,12 +101,6 @@ int64 CryGetTicksPerSec(); } #endif -#define _MS_ALIGN(num) \ - AZ_PUSH_DISABLE_WARNING(4324, "-Wunknown-warning-option") \ - __declspec(align(num)) - -#define DEFINE_ALIGNED_DATA(type, name, alignment) _declspec(align(alignment)) type name; - #ifndef FILE_ATTRIBUTE_NORMAL #define FILE_ATTRIBUTE_NORMAL 0x00000080 #endif diff --git a/Code/Legacy/CryCommon/Win64specific.h b/Code/Legacy/CryCommon/Win64specific.h index 47c9c1aad9..e8c1b87f4d 100644 --- a/Code/Legacy/CryCommon/Win64specific.h +++ b/Code/Legacy/CryCommon/Win64specific.h @@ -84,12 +84,6 @@ int64 CryGetTicksPerSec(); } #endif -#define _MS_ALIGN(num) \ - AZ_PUSH_DISABLE_WARNING(4324, "-Wunknown-warning-option") \ - __declspec(align(num)) - -#define DEFINE_ALIGNED_DATA(type, name, alignment) _declspec(align(alignment)) type name; - #ifndef FILE_ATTRIBUTE_NORMAL #define FILE_ATTRIBUTE_NORMAL 0x00000080 #endif diff --git a/Code/Legacy/CryCommon/WinBase.cpp b/Code/Legacy/CryCommon/WinBase.cpp index ae646e9e1c..8473417d4a 100644 --- a/Code/Legacy/CryCommon/WinBase.cpp +++ b/Code/Legacy/CryCommon/WinBase.cpp @@ -86,10 +86,6 @@ typedef struct stat FS_STAT_TYPE; #else typedef struct stat64 FS_STAT_TYPE; #endif -static const int FS_O_RDWR = O_RDWR; -static const int FS_O_RDONLY = O_RDONLY; -static const int FS_O_WRONLY = O_WRONLY; -static const FS_ERRNO_TYPE FS_EISDIR = EISDIR; #include @@ -829,7 +825,7 @@ const int comparePathNames(const char* cpFirst, const char* cpSecond, unsigned i return memicmp(first.c_str(), second.c_str(), length); } -#if defined(LINUX) || defined(APPLE) || defined(DEFINE_FIX_ONE_PATH_ELEMENT) +#if FIX_FILENAME_CASE static bool FixOnePathElement(char* path) { if (*path == '\0') @@ -1193,9 +1189,7 @@ DLL_EXPORT void OutputDebugString(const char* outputString) typedef DIR* FS_DIR_TYPE; typedef dirent FS_DIRENT_TYPE; static const FS_ERRNO_TYPE FS_ENOENT = ENOENT; -static const FS_ERRNO_TYPE FS_EINVAL = EINVAL; static const FS_DIR_TYPE FS_DIR_NULL = NULL; -static const unsigned char FS_TYPE_DIRECTORY = DT_DIR; typedef int FS_ERRNO_TYPE; @@ -1305,13 +1299,8 @@ const bool GetFilenameNoCase char* slash; const char* dirname; char* name; - FS_ERRNO_TYPE fsErr = 0; - FS_DIRENT_TYPE dirent; - uint64_t direntSize = 0; - FS_DIR_TYPE fd = FS_DIR_NULL; - if ( - (pAdjustedFilename) == (char*)-1) + if ((pAdjustedFilename) == (char*)-1) { return false; } @@ -1343,9 +1332,6 @@ const bool GetFilenameNoCase #endif // Scan for the file. - bool found = false; - bool skipScan = false; - if (slash) { *slash = '/'; diff --git a/Code/Legacy/CryCommon/crycommon_files.cmake b/Code/Legacy/CryCommon/crycommon_files.cmake index ba11de0215..2f5030ccc4 100644 --- a/Code/Legacy/CryCommon/crycommon_files.cmake +++ b/Code/Legacy/CryCommon/crycommon_files.cmake @@ -7,18 +7,15 @@ # set(FILES - CryCommon.cpp IAudioInterfacesCommonData.h IAudioSystem.h ICmdLine.h IConsole.h IEntityRenderState.h - IEntityRenderState_info.cpp IFont.h IFunctorBase.h IGem.h IIndexedMesh.h - IIndexedMesh_info.cpp ILevelSystem.h ILocalizationManager.h LocalizationManagerBus.h @@ -27,19 +24,15 @@ set(FILES IMaterial.h IMiniLog.h IMovieSystem.h - IPhysics.h - IPostEffectGroup.h IProcess.h IReadWriteXMLSink.h IRenderAuxGeom.h IRenderer.h - IRenderMesh.h ISerialize.h IShader.h ISplines.h IStatObj.h StatObjBus.h - IStereoRenderer.h ISurfaceType.h ISystem.h ITexture.h @@ -49,46 +42,32 @@ set(FILES IWindowMessageHandler.h IXml.h MicrophoneBus.h - physinterface.h HMDBus.h VRCommon.h - StereoRendererBus.h INavigationSystem.h IMNM.h SFunctor.h FunctorBaseFunction.h FunctorBaseMember.h - stridedptr.h - Options.h SerializationTypes.h CryEndian.h CryRandomInternal.h Random.h LCGRandom.h - CryTypeInfo.cpp BaseTypes.h - MemoryAccess.h AnimKey.h BitFiddling.h Common_TypeInfo.cpp - CryArray.h CryAssert.h CryCrc32.h - CryCustomTypes.h CryFile.h - CryHeaders.h - CryHeaders_info.cpp CryListenerSet.h CryLegacyAllocator.h - CryName.h CryPath.h CryPodArray.h CrySizer.h CrySystemBus.h - CryTypeInfo.h CryVersion.h - FrameProfiler.h - HeapAllocator.h LegacyAllocator.cpp LegacyAllocator.h MetaUtils.h @@ -96,8 +75,6 @@ set(FILES MultiThread_Containers.h NullAudioSystem.h PNoise3.h - PoolAllocator.h - primitives.h ProjectDefines.h Range.h ScopedVariableSetter.h @@ -106,14 +83,9 @@ set(FILES smartptr.h StlUtils.h Synchronization.h - Tarray.h Timer.h TimeValue.h - TimeValue_info.h - TypeInfo_decl.h - TypeInfo_impl.h VectorMap.h - VectorSet.h VertexFormats.h XMLBinaryHeaders.h RenderBus.h @@ -121,21 +93,17 @@ set(FILES Cry_Matrix33.h Cry_Matrix34.h Cry_Matrix44.h - Cry_MatrixDiag.h Cry_Vector4.h Cry_Camera.h Cry_Color.h Cry_Geo.h Cry_GeoDistance.h Cry_GeoIntersect.h - Cry_GeoOverlap.h Cry_Math.h Cry_Quat.h Cry_ValidNumber.h Cry_Vector2.h Cry_Vector3.h - Cry_XOptimise.h - CryHalf_info.h CryHalf.inl MathConversion.h Cry_HWMatrix.h diff --git a/Code/Legacy/CryCommon/crycommon_testing_files.cmake b/Code/Legacy/CryCommon/crycommon_testing_files.cmake index b3769c4f63..9c3427d529 100644 --- a/Code/Legacy/CryCommon/crycommon_testing_files.cmake +++ b/Code/Legacy/CryCommon/crycommon_testing_files.cmake @@ -14,7 +14,6 @@ set(FILES Mocks/ISystemMock.h Mocks/ITimerMock.h Mocks/ICVarMock.h - Mocks/IRendererMock.h Mocks/ITextureMock.h Mocks/IRemoteConsoleMock.h ) diff --git a/Code/Legacy/CryCommon/physinterface.h b/Code/Legacy/CryCommon/physinterface.h deleted file mode 100644 index b1aaa5aef4..0000000000 --- a/Code/Legacy/CryCommon/physinterface.h +++ /dev/null @@ -1,3679 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -// Description : declarations of all physics interfaces and structures - - -#ifndef CRYINCLUDE_CRYCOMMON_PHYSINTERFACE_H -#define CRYINCLUDE_CRYCOMMON_PHYSINTERFACE_H -#pragma once - - -#include - -#include "Cry_Geo.h" -#include "stridedptr.h" -#include "primitives.h" -#ifdef NEED_ENDIAN_SWAP - #include "CryEndian.h" -#endif - -#include - -#include - -////////////////////////////////////////////////////////////////////////// -// Physics defines. -////////////////////////////////////////////////////////////////////////// - -enum EPE_Params -{ - ePE_params_pos = 0, - ePE_player_dimensions = 1, - ePE_params_car = 2, - ePE_params_particle = 3, - ePE_player_dynamics = 4, - ePE_params_joint = 5, - ePE_params_part = 6, - ePE_params_sensors = 7, - ePE_params_articulated_body = 8, - ePE_params_outer_entity = 9, - ePE_simulation_params = 10, - ePE_params_foreign_data = 11, - ePE_params_buoyancy = 12, - ePE_params_rope = 13, - ePE_params_bbox = 14, - ePE_params_flags = 15, - ePE_params_wheel = 16, - ePE_params_softbody = 17, - ePE_params_area = 18, - ePE_tetrlattice_params = 19, - ePE_params_ground_plane = 20, - ePE_params_structural_joint = 21, - ePE_params_waterman = 22, - ePE_params_timeout = 23, - ePE_params_skeleton = 24, - ePE_params_structural_initial_velocity = 25, - ePE_params_collision_class = 26, - - ePE_Params_Count -}; - -enum EPE_Action -{ - ePE_action_move = 1, - ePE_action_impulse = 2, - ePE_action_drive = 3, - ePE_action_reset = 4, - ePE_action_add_constraint = 5, - ePE_action_update_constraint = 6, - ePE_action_register_coll_event = 7, - ePE_action_awake = 8, - ePE_action_remove_all_parts = 9, - ePE_action_set_velocity = 10, - ePE_action_attach_points = 11, - ePE_action_target_vtx = 12, - ePE_action_reset_part_mtx = 13, - ePE_action_notify = 14, - ePE_action_auto_part_detachment = 15, - ePE_action_move_parts = 16, - ePE_action_batch_parts_update = 17, - ePE_action_slice = 18, - pPE_action_syncliving = 19, - - ePE_Action_Count -}; - -enum EPE_GeomParams -{ - ePE_geomparams = 0, - ePE_cargeomparams = 1, - ePE_articgeomparams = 2, - - ePE_GeomParams_Count -}; - -enum EPE_Status -{ - ePE_status_pos = 1, - ePE_status_living = 2, - ePE_status_vehicle = 4, - ePE_status_wheel = 5, - ePE_status_joint = 6, - ePE_status_awake = 7, - ePE_status_dynamics = 8, - ePE_status_collisions = 9, - ePE_status_id = 10, - ePE_status_timeslices = 11, - ePE_status_nparts = 12, - ePE_status_contains_point = 13, - ePE_status_rope = 14, - ePE_status_vehicle_abilities = 15, - ePE_status_placeholder = 16, - ePE_status_softvtx = 17, - ePE_status_sensors = 18, - ePE_status_sample_contact_area = 19, - ePE_status_caps = 20, - ePE_status_check_stance = 21, - ePE_status_waterman = 22, - ePE_status_area = 23, - ePE_status_extent = 24, - ePE_status_random = 25, - ePE_status_constraint = 26, - ePE_status_netpos = 27, - - ePE_Status_Count -}; - -enum pe_type -{ - PE_NONE = 0, PE_STATIC = 1, PE_RIGID = 2, PE_WHEELEDVEHICLE = 3, PE_LIVING = 4, PE_PARTICLE = 5, PE_ARTICULATED = 6, PE_ROPE = 7, PE_SOFT = 8, PE_AREA = 9 -}; -enum sim_class -{ - SC_STATIC = 0, SC_SLEEPING_RIGID = 1, SC_ACTIVE_RIGID = 2, SC_LIVING = 3, SC_INDEPENDENT = 4, SC_TRIGGER = 6, SC_DELETED = 7 -}; -struct IGeometry; -struct IPhysicalEntity; -struct IGeomManager; -struct IPhysRenderer; -class ICrySizer; -struct IDeferredPhysicsEvent; -struct ILog; -IPhysicalEntity* const WORLD_ENTITY = (IPhysicalEntity*)-10; - -#ifndef USE_IMPROVED_RIGID_ENTITY_SYNCHRONISATION -# define USE_IMPROVED_RIGID_ENTITY_SYNCHRONISATION 1 -#endif - -/** - * 64-bit wrapper for foreign data on physical entities. - * Int and pointer values are regularly stored in foreign data, but we now also support - * 64-bit unsigned integers (AZ::EntityId). - * - Supports implicit two-way conversion as integer, pointer, int, or 64-bit unsigned integer. - * - Supports casting to typed pointers for compatibility with original void* foreign data. - */ -class PhysicsForeignData final -{ -public: - - PhysicsForeignData() - : m_data(0) {} - - /// Explicit or implicit creation from pointer, int, or unsigned int types. - PhysicsForeignData(void* data) - : m_data(reinterpret_cast(data)) {} - PhysicsForeignData(int data) - : m_data(static_cast(data)) {} - PhysicsForeignData(uint64 data) - : m_data(static_cast(data)) {} - - /// Comparison operators. - bool operator==(const PhysicsForeignData& rhs) const - { - return m_data == rhs.m_data; - } - - bool operator!=(const PhysicsForeignData& rhs) const - { - return m_data != rhs.m_data; - } - - template - bool operator==(T* data) const - { - return reinterpret_cast(m_data) == data; - } - - template - bool operator==(const T* data) const - { - return reinterpret_cast(m_data) == data; - } - - bool operator==(int data) const - { - return static_cast(m_data) == data; - } - - bool operator==(uint64 data) const - { - return m_data == data; - } - - /// Using CryPhysics' existing pattern for marking fields as unused. - void MarkUnused() - { - m_data = uint64(1 << 31); - } - - bool IsUnused() const - { - return m_data == uint64(1 << 31); - } - - /// Bool operator for: if (foreignData) - operator bool() const - { - return m_data != 0; - } - - /// Void* cast conversion - operator void*() const - { - return reinterpret_cast(m_data); - } - - /// int cast conversion - operator int() const - { - return static_cast(m_data); - } - - /// 64-bit unsigned int cast conversion - operator uint64() const - { - return m_data; - } - - /// Cast conversion to pointers or arbitrary types. - template - operator T*() const - { - return reinterpret_cast(m_data); - } - -private: - - uint64 m_data; ///< Underlying 64-bit storage. -}; - -///////////////////////////////////////////////////////////////////////////////////// -//////////////////////////// IPhysicsStreamer Interface ///////////////////////////// -///////////////////////////////////////////////////////////////////////////////////// - -// this is a callback interface for on-demand physicalization, physics gets a pointer to an implementation -struct IPhysicsStreamer -{ - // - virtual ~IPhysicsStreamer(){} - // called whenever a placeholder (created through CreatePhysicalPlaceholder) requests a full entity - virtual int CreatePhysicalEntity(PhysicsForeignData foreignData, int iForeignData, int iForeignFlags) = 0; - // called whenever a placeholder-owned entity expires - virtual int DestroyPhysicalEntity(IPhysicalEntity* pent) = 0; - // called when on-demand entities in a box need to be physicalized - // (the grid is activated once RegisterBBoxInPODGrid is called) - virtual int CreatePhysicalEntitiesInBox(const Vec3& boxMin, const Vec3& boxMax) = 0; - // called when on-demand physicalized box expires. - // the streamer is expected to delete those that have a 0 refcounter, and keep the rest - virtual int DestroyPhysicalEntitiesInBox(const Vec3& boxMin, const Vec3& boxMax) = 0; - // -}; - -///////////////////////////////////////////////////////////////////////////////////// -/////////////////////////////// IPhysRenderer Interface ///////////////////////////// -///////////////////////////////////////////////////////////////////////////////////// - -// this is a callback interface for debug rendering, physics gets a pointer to an implementation -struct IPhysRenderer -{ - // - virtual ~IPhysRenderer(){} - // draws helpers for the specified geometry (idxColor is in 0..7 range) - virtual void DrawGeometry(IGeometry* pGeom, struct geom_world_data* pgwd, int idxColor = 0, int bSlowFadein = 0, const Vec3& sweepDir = Vec3(0)) = 0; - // draws a line for wireframe helpers - virtual void DrawLine(const Vec3& pt0, const Vec3& pt1, int idxColor = 0, int bSlowFadein = 0) = 0; - // gets a descriptive name of the phys entity's owner (used solely for debug output) - virtual const char* GetForeignName(PhysicsForeignData foreignData, int iForeignData, int iForeignFlags) = 0; - // draws a text line (stauration is 0..1 and is currently used to represent stress level on a breakable joint) - virtual void DrawText(const Vec3& pt, const char* txt, int idxColor, float saturation = 0) = 0; - // sets an offset that is to be added to all subsequent draw requests - virtual Vec3 SetOffset(const Vec3& offs = Vec3(ZERO)) = 0; - // draw a frame or a partial frame using a scale for the axes. - // pnt is the world space position - // axes are the 3 axes normalized - // scale is a scale applied on the axes - // limits are the x, y, z radians for the Y, Z, X plane. If the pointer is not null, limits will be drawn in form of arcs. - // bitfield for what axes are locked - virtual void DrawFrame(const Vec3& pnt, const Vec3* axes, const float scale, const Vec3* limits, const int axes_locked) = 0; - // -}; - -class CMemStream -{ // For "fastload" serialization -public: - - ILINE CMemStream(bool swap) - { - Prealloc(); - m_iPos = 0; - bDeleteBuf = true; - bSwapEndian = swap; - bMeasureOnly = 0; - } - - ILINE CMemStream(void* pbuf, int sz, bool swap) - { - m_pBuf = (char*)pbuf; - m_nSize = sz; - m_iPos = 0; - bDeleteBuf = false; - bSwapEndian = swap; - bMeasureOnly = 0; - } - ILINE CMemStream() - { - m_pBuf = (char*)m_dummyBuf; - m_iPos = 0; - m_nSize = 0; - bDeleteBuf = false; - bSwapEndian = false; - bMeasureOnly = -1; - } - - virtual ~CMemStream() - { - if (bDeleteBuf) - { - CryModuleFree(m_pBuf); - } - } - virtual void Prealloc() - { - m_pBuf = (char*)CryModuleMalloc(m_nSize = 0x1000); - } - - ILINE void* GetBuf() { return m_pBuf; } - ILINE int GetUsedSize() { return m_iPos; } - ILINE int GetAllocatedSize() { return m_nSize; } - - template - ILINE void Write(const ftype& op) { Write(&op, sizeof(op)); } - ILINE void Write(const void* pbuf, int sz) - { -#if defined(MEMSTREAM_DEBUG) - if (bMeasureOnly <= 0 && m_nSize && m_iPos + sz > m_nSize) - { - printf("overflow: %d + %d >= %d\n", m_iPos, sz, m_nSize); - } -#endif - if (!bMeasureOnly) - { - if (m_iPos + sz > m_nSize) - { - GrowBuf(sz); - } - memcpy(m_pBuf + m_iPos, pbuf, (unsigned int)sz); - } - m_iPos += sz; - } - - virtual void GrowBuf(int sz) - { - int prevsz = m_nSize; - char* prevbuf = m_pBuf; - m_pBuf = (char*)CryModuleMalloc(m_nSize = (m_iPos + sz - 1 & ~0xFFF) + 0x1000); - memcpy(m_pBuf, prevbuf, (unsigned int)prevsz); - CryModuleFree(prevbuf); - } - - template - ILINE void Read(ftype& op) - { - ReadRaw(&op, sizeof(op)); -#if defined (NEED_ENDIAN_SWAP) - if (bSwapEndian) - { - SwapEndian(op); - } -#endif - } - - template - ILINE ftype Read() - { - ftype val; - Read(val); - return val; - } - template - ILINE void ReadType(ftype* op, int count = 1) - { - ReadRaw(op, sizeof(*op) * count); -#if defined (NEED_ENDIAN_SWAP) - if (bSwapEndian) - { - while (count-- > 0) - { - SwapEndian(*op++); - } - } -#endif - } - ILINE void ReadRaw(void* pbuf, int sz) - { -#if defined(MEMSTREAM_DEBUG) - if (bMeasureOnly <= 0 && m_nSize && m_iPos + sz > m_nSize) - { - printf("overflow: %d + %d >= %d\n", m_iPos, sz, m_nSize); - } -#endif - memcpy(pbuf, (m_pBuf + m_iPos), (unsigned int)sz); - m_iPos += sz; - } - - char* m_pBuf, m_dummyBuf[4]; - int m_iPos, m_nSize; - bool bDeleteBuf; - bool bSwapEndian; - int bMeasureOnly; -}; - - -// Workaround for bug in GCC 4.8. The kind of access patterns here leads to an internal -// compiler error in GCC 4.8 when optimizing with debug symbols. Two possible solutions -// are available, compile in Profile mode without debug symbols or remove optimizations -// in the code where the bug occurs -// see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59776 -#if defined(_PROFILE) && !defined(__clang__) && (__GNUC__ == 4) && (__GNUC_MINOR__ == 8) -// Cannot use #pragma GCC optimize("O0") because it causes a system crash when using -// the gcc compiler for another platform -#define CRY_GCC48_AVOID_OPTIMIZE __attribute__((optimize("-O0"))) -#else -#define CRY_GCC48_AVOID_OPTIMIZE -#endif -// unused_marker deliberately fills a variable with invalid data, -// so that later is_unused() can check whether it was initialized -// (this is used in all physics params/status/action structures) -class unused_marker -{ -public: - union f2i - { - float f; - uint32 i; - }; - union d2i - { - double d; - uint32 i[2]; - }; - unused_marker() {} - unused_marker& operator,(float& x) CRY_GCC48_AVOID_OPTIMIZE; - unused_marker& operator,(double& x) CRY_GCC48_AVOID_OPTIMIZE; - unused_marker& operator,(int& x) CRY_GCC48_AVOID_OPTIMIZE; - unused_marker& operator,(unsigned int& x) CRY_GCC48_AVOID_OPTIMIZE; - unused_marker& operator,(PhysicsForeignData& x) CRY_GCC48_AVOID_OPTIMIZE; - template - unused_marker& operator,(ref*& x) { x = (ref*)-1; return *this; } - template - unused_marker& operator,(Vec3_tpl& x) { return *this, x.x; } - template - unused_marker& operator,(Quat_tpl& x) { return *this, x.w; } - template - unused_marker& operator,(strided_pointer& x) { return *this, x.data; } -}; -inline unused_marker& unused_marker::operator,(float& x) { *alias_cast(&x) = 0xFFBFFFFF; return *this; } -inline unused_marker& unused_marker::operator,(double& x) { (alias_cast(&x))[false ? 1 : 0] = 0xFFF7FFFF; return *this; } -inline unused_marker& unused_marker::operator,(int& x) { x = 1 << 31; return *this; } -inline unused_marker& unused_marker::operator,(unsigned int& x) { x = 1u << 31; return *this; } -inline unused_marker& unused_marker::operator,(PhysicsForeignData& x) { x.MarkUnused(); return *this; } - -#undef CRY_GCC48_AVOID_OPTIMIZE - -inline bool is_unused(const float& x) { unused_marker::f2i u; u.f = x; return (u.i & 0xFFA00000) == 0xFFA00000; } - -inline bool is_unused(int x) { return x == 1 << 31; } -inline bool is_unused(unsigned int x) { return x == 1u << 31; } -inline bool is_unused(const PhysicsForeignData& x) { return x.IsUnused(); } -template -bool is_unused(ref* x) { return x == (ref*)-1; } -template -bool is_unused(strided_pointer x) { return is_unused(x.data); } -template -bool is_unused(const Ang3_tpl& x) { return is_unused(x.x); } -template -bool is_unused(const Vec3_tpl& x) { return is_unused(x.x); } -template -bool is_unused(const Quat_tpl& x) { return is_unused(x.w); } -inline bool is_unused(const double& x) { unused_marker::d2i u; u.d = x; return (u.i[eLittleEndian ? 1 : 0] & 0xFFF40000) == 0xFFF40000; } -#define MARK_UNUSED unused_marker(), - - -// validators do nothing in the interface, but inside the physics they are redefined -// so that they check the input for consistency and report errors -#if !defined(VALIDATOR_LOG) -#define VALIDATOR_LOG(pLog, str) -#define VALIDATORS_START -#define VALIDATOR(member) -#define VALIDATOR_NORM(member) -#define VALIDATOR_NORM_MSG(member, msg, member1) -#define VALIDATOR_RANGE(member, minval, maxval) -#define VALIDATOR_RANGE2(member, minval, maxval) -#define VALIDATORS_END -#endif - - - -////////// physics entity collision filtering class enums ///////////////// - -enum pe_collision_class -{ - /// reserved basic collision classes - collision_class_terrain = 1 << 0, - collision_class_wheeled = 1 << 1, - collision_class_living = 1 << 2, - collision_class_articulated = 1 << 3, - collision_class_soft = 1 << 4, - collision_class_rope = 1 << 5, - collision_class_particle = 1 << 6, - // begin game specific ones from this enum - collision_class_game = 1 << 10, -}; - -struct SCollisionClass -{ - uint32 type; // collision_class flags to identify the enity - uint32 ignore; // another entity will be ignored if *any* of these bits are set in its type - - SCollisionClass() {} - - SCollisionClass(uint32 t, uint32 i) - { - type = t; - ignore = i; - } -}; - -ILINE int IgnoreCollision(const SCollisionClass& a, const SCollisionClass& b) -{ - return (a.type & b.ignore) | (b.type & a.ignore); -} - - - -// in physics interface [almost] all parameters are passed via structures -// this allows having stable interface methods and flexible default arguments system - -////////////////////////// Params structures ///////////////////// - -////////// common params -struct pe_params -{ - int type; -}; - -struct pe_params_pos - : pe_params // Sets position and orientation of entity -{ - enum entype - { - type_id = ePE_params_pos - }; - pe_params_pos() - { - type = type_id; - MARK_UNUSED pos, scale, q, iSimClass; - pMtx3x4 = 0; - pMtx3x3 = 0; - bRecalcBounds = 1; - bEntGridUseOBB = 0; - } - - Vec3 pos; - quaternionf q; - float scale; // note that since there's no per-entity scale, it gets 'baked' into individual parts' scales - Matrix34* pMtx3x4; // optional position+orientation - Matrix33* pMtx3x3; // optional orientation via 3x3 matrix - int iSimClass; // see the sim_class enum - int bRecalcBounds; // tells to recompute the bounding boxes - bool bEntGridUseOBB; // whether or not to use part OBBs rather than object AABB when registering in the entity grid - - VALIDATORS_START - VALIDATOR(pos) - VALIDATOR_NORM_MSG(q, "(perhaps non-uniform scaling was used?)", pos) - VALIDATOR(scale) - VALIDATORS_END -}; - -struct pe_params_bbox - : pe_params -{ - enum entype - { - type_id = ePE_params_bbox - }; - pe_params_bbox() { type = type_id; MARK_UNUSED BBox[0], BBox[1]; } - Vec3 BBox[2]; // force this bounding box (note that if the entity recomputes it later, it'll override this) - - VALIDATORS_START - VALIDATOR(BBox[0]) - VALIDATOR(BBox[1]) - VALIDATORS_END -}; - -struct pe_params_outer_entity - : pe_params -{ - enum entype - { - type_id = ePE_params_outer_entity - }; - pe_params_outer_entity() { type = type_id; pOuterEntity = 0; pBoundingGeometry = 0; } - - IPhysicalEntity* pOuterEntity; // outer entity is used to group together SC_INDEPENDENT entities (example: ropes on a tree trunk) - IGeometry* pBoundingGeometry; // optional geometry to test containment (used in pe_status_contains_point) -}; - -struct ITetrLattice; - -struct pe_params_part - : pe_params // Sets geometrical parameters of entity part -{ - enum entype - { - type_id = ePE_params_part - }; - pe_params_part() - { - type = type_id; - MARK_UNUSED pos, q, scale, partid, ipart, mass, density, pPhysGeom, pPhysGeomProxy, idmatBreakable, pLattice, pMatMapping, minContactDist, flagsCond, idSkeleton, invTimeStep, idParent; - pMtx3x4 = 0; - pMtx3x3 = 0; - bRecalcBBox = 1; - bAddrefGeoms = 0; - flagsOR = flagsColliderOR = 0; - flagsAND = flagsColliderAND = (unsigned)-1; - } - - int partid; // partid identifier of part - int ipart; // optionally, internal part slot number - int bRecalcBBox; // whether entity's bounding box should be recalculated - Vec3 pos; - quaternionf q; - float scale; - Matrix34* pMtx3x4; // optional position+orientation - Matrix33* pMtx3x3; // optional orientation via 3x3 matrix - unsigned int flagsCond; // if partid and ipart are not specified, check for parts with flagsCond set - unsigned int flagsOR, flagsAND; // new flags = (flags & flagsAND) | flagsOR - unsigned int flagsColliderOR, flagsColliderAND; - float mass; // either mass of density should be set; mass = density*volume - float density; - float minContactDist; // threshold for contact points generation - struct phys_geometry* pPhysGeom, * pPhysGeomProxy; // if present and different from pPhysGeomProxy, pPhysGeom is used for raytracing - int idmatBreakable; // if >=0, the part is procedurally breakable with this mat_id (see AddExplosionShape) - ITetrLattice* pLattice; // lattice is used for soft bodies and procedural structural breaking - int idSkeleton; // part with this id becomes this part's deformation skeleton - int* pMatMapping; // material mapping table for this part - int nMats; // number of pMatMapping entries - float invTimeStep; // 1.0f/time_step, ragdolls will compute joint's velocity if this and position is set - int bAddrefGeoms; // AddRef returned geometries if used in GetParams - int idParent; // parent for hierarchical breaking; it hides all children until at least one of them breaks off - - VALIDATORS_START - VALIDATOR(pos) - VALIDATOR_NORM_MSG(q, "(perhaps non-uniform scaling was used in the asset?)", pt) - VALIDATOR(scale) - VALIDATORS_END -}; - -struct pe_params_sensors - : pe_params // Attaches optional ray sensors to an entity; only living entities support it -{ - enum entype - { - type_id = ePE_params_sensors - }; - pe_params_sensors() { type = type_id; nSensors = 0; pOrigins = 0; pDirections = 0; } - - int nSensors; // nSensors number of sensors - const Vec3* pOrigins; // pOrigins sensors origins in entity CS - const Vec3* pDirections; // pDirections sensors directions (dir*ray length) in entity CS -}; - -struct pe_simulation_params - : pe_params -{ - enum entype - { - type_id = ePE_simulation_params - }; - pe_simulation_params() - { - type = type_id; - MARK_UNUSED maxTimeStep, gravity, minEnergy, damping, iSimClass, - dampingFreefall, gravityFreefall, mass, density, maxLoggedCollisions, maxRotVel, disablePreCG, maxFriction, collTypes; - } - - int iSimClass; - float maxTimeStep; // maximum time step that entity can accept (larger steps will be split) - float minEnergy; // minimun of kinetic energy below which entity falls asleep (divided by mass) - float damping; // damped velocity = oridinal velocity * (1 - damping*time interval) - Vec3 gravity; // per-entity gravity (note that if there are any phys areas with gravity, they will override it unless pef_ignore_areas is set - float dampingFreefall; // damping and gravity used when there are no collisions, - Vec3 gravityFreefall; // NOTE: if left unused, gravity value will be substituted (if provided) - float maxRotVel; // rotational velocity is clamped to this value - float mass; // either mass of density should be set; mass = density*volume - float density; - int maxLoggedCollisions; // maximum EventPhysCollisions reported per frame (only supported by rigid bodies/ragdolls/vehicles) - int disablePreCG; // disables Pre-CG solver for the group this body is in (recommended for balls) - float maxFriction; // sets upper friction limit for this object and all objects it's currently in contact with - int collTypes; // collision types (a combination of ent_xxx flags) -}; - -struct pe_params_foreign_data - : pe_params -{ - enum entype - { - type_id = ePE_params_foreign_data - }; - pe_params_foreign_data() { type = type_id; MARK_UNUSED pForeignData, iForeignData, iForeignFlags; iForeignFlagsAND = -1; iForeignFlagsOR = 0; } - - PhysicsForeignData pForeignData; // foreign data is an arbitrary pointer used to associate physical entity with its owner object - int iForeignData; // foreign data types (defined in IPhysics.h) - int iForeignFlags; // any flags the owner wants to store - int iForeignFlagsAND, iForeignFlagsOR; // when setting, flagsNew = flags & flagsAND | flagsOR -}; - -struct pe_params_buoyancy - : pe_params -{ - enum entype - { - type_id = ePE_params_buoyancy - }; - pe_params_buoyancy() - { - type = type_id; - iMedium = 0; - MARK_UNUSED waterDensity, kwaterDensity, waterDamping, - waterPlane.n, waterPlane.origin, waterEmin, waterResistance, kwaterResistance, waterFlow, flowVariance; - }; - - float waterDensity; // overrides water density from the current water volume for an entity; sets for water areas - float kwaterDensity; // scales water density from the current water volume (used for entities only) - // NOTE: for entities , waterDensity override is stored as kwaterDensity relative to the global area's density - float waterDamping; // uniform damping while submerged, will be scaled with submerged fraction - float waterResistance, kwaterResistance; // water's medium resistance; same comments on water and kwater.. apply - Vec3 waterFlow; // flow's movement vector; can only be set for a water area - float flowVariance; // not yet supported - primitives::plane waterPlane; // positive normal = above the water surface - float waterEmin; // sleep energy while floating with no contacts (see minEnergy in pe_simulation_params) - int iMedium; // 0 for water, 1 for air -}; - -enum phentity_flags -{ - // PE_PARTICLE-specific flags - particle_single_contact = 0x01, // full stop after first contact - particle_constant_orientation = 0x02, // forces constant orientation - particle_no_roll = 0x04, // 'sliding' mode; entity's 'normal' vector axis will be alinged with the ground normal - particle_no_path_alignment = 0x08, // unless set, entity's y axis will be aligned along the movement trajectory - particle_no_spin = 0x10, // disables spinning while flying - particle_no_self_collisions = 0x100, // disables collisions with other particles - particle_no_impulse = 0x200, // particle will not add hit impulse (expecting that some other system will) - - // PE_LIVING-specific flags - lef_push_objects = 0x01, lef_push_players = 0x02, // push objects and players during contacts - lef_snap_velocities = 0x04, // quantizes velocities after each step (was ised in MP for precise deterministic sync) - lef_loosen_stuck_checks = 0x08, // don't do additional intersection checks after each step (recommended for NPCs to improve performance) - lef_report_sliding_contacts = 0x10, // unless set, 'grazing' contacts are not reported - - // PE_ROPE-specific flags - rope_findiff_attached_vel = 0x01, // approximate velocity of the parent object as v = (pos1-pos0)/time_interval - rope_no_solver = 0x02, // no velocity solver; will rely on stiffness (if set) and positional length enforcement - rope_ignore_attachments = 0x4, // no collisions with objects the rope is attached to - rope_target_vtx_rel0 = 0x08, rope_target_vtx_rel1 = 0x10, // whether target vertices are set in the parent entity's frame - rope_subdivide_segs = 0x100, // turns on 'dynamic subdivision' mode (only in this mode contacts in a strained state are handled correctly) - rope_no_tears = 0x200, // rope will not tear when it reaches its force limit, but stretch - rope_collides = 0x200000, // rope will collide with objects other than the terrain - rope_collides_with_terrain = 0x400000, // rope will collide with the terrain - rope_collides_with_attachment = 0x80, // rope will collide with the objects it's attached to even if the other collision flags are not set - rope_no_stiffness_when_colliding = 0x10000000, // rope will use stiffness 0 if it has contacts - - // PE_SOFT-specific flags - se_skip_longest_edges = 0x01, // the longest edge in each triangle with not participate in the solver - se_rigid_core = 0x02, // soft body will have an additional rigid body core - - // PE_RIGID-specific flags (note that PE_ARTICULATED and PE_WHEELEDVEHICLE are derived from it) - ref_use_simple_solver = 0x01, // use penalty-based solver (obsolete) - ref_no_splashes = 0x04, // will not generate EventPhysCollisions when contacting water - ref_checksum_received = 0x04, ref_checksum_outofsync = 0x08, // obsolete - ref_small_and_fast = 0x100, // entity will trace rays against alive characters; set internally unless overriden - - // PE_ARTICULATED-specific flags - aef_recorded_physics = 0x02, // specifies a an entity that contains pre-baked physics simulation - - // PE_WHEELEDVEHICLE-specific flags - wwef_fake_inner_wheels = 0x08, // exclude wheels between the first and the last one from the solver - // (only wheels with non-0 suspension are considered) - - // general flags - pef_parts_traceable = 0x10, // each entity part will be registered separately in the entity grid - pef_disabled = 0x20, // entity will not be simulated - pef_never_break = 0x40, // entity will not break or deform other objects - pef_deforming = 0x80, // entity undergoes a dynamic breaking/deforming - pef_pushable_by_players = 0x200, // entity can be pushed by playerd - pef_traceable = 0x400, particle_traceable = 0x400, rope_traceable = 0x400, // entity is registered in the entity grid - pef_update = 0x800, // only entities with this flag are updated if ent_flagged_only is used in TimeStep() - pef_monitor_state_changes = 0x1000, // generate immediate events for simulation class changed (typically rigid bodies falling asleep) - pef_monitor_collisions = 0x2000, // generate immediate events for collisions - pef_monitor_env_changes = 0x4000, // generate immediate events when something breaks nearby - pef_never_affect_triggers = 0x8000, // don't generate events when moving through triggers - pef_invisible = 0x10000, // will apply certain optimizations for invisible entities - pef_ignore_ocean = 0x20000, // entity will ignore global water area - pef_fixed_damping = 0x40000, // entity will force its damping onto the entire group - pef_monitor_poststep = 0x80000, // entity will generate immediate post step events - pef_always_notify_on_deletion = 0x100000, // when deleted, entity will awake objects around it even if it's not referenced (has refcount 0) - pef_override_impulse_scale = 0x200000, // entity will ignore breakImpulseScale in PhysVars - pef_players_can_break = 0x400000, // playes can break the entiy by bumping into it - pef_cannot_squash_players = 0x10000000, // entity will never trigger 'squashed' state when colliding with players - pef_ignore_areas = 0x800000, // entity will ignore phys areas (gravity and water) - pef_log_state_changes = 0x1000000, // entity will log simulation class change events - pef_log_collisions = 0x2000000, // entity will log collision events - pef_log_env_changes = 0x4000000, // entity will log EventPhysEnvChange when something breaks nearby - pef_log_poststep = 0x8000000, // entity will log EventPhysPostStep events -}; - -struct pe_params_flags - : pe_params -{ - enum entype - { - type_id = ePE_params_flags - }; - pe_params_flags() { type = type_id; MARK_UNUSED flags, flagsOR, flagsAND; } - unsigned int flags; - unsigned int flagsOR; // when setting, flagsNew = (flags set ? flags:flagsOld) & flagsAND | flagsOR - unsigned int flagsAND; // when getting, only flags is filled -}; - - -struct pe_params_collision_class - : pe_params -{ - enum entype - { - type_id = ePE_params_collision_class - }; - pe_params_collision_class() { type = type_id; collisionClassOR.type = collisionClassOR.ignore = 0; collisionClassAND.type = collisionClassAND.ignore = (unsigned)-1; } - SCollisionClass collisionClassOR; // When getting both collisionClassOR and collisionClassAND are filled out - SCollisionClass collisionClassAND; // When setting first collisionClassAND is applied to mask bits, then collisionClassOR is applied to turn on collision bits -}; - -struct pe_params_ground_plane - : pe_params -{ - // used for breakable objects; pieces that are below ground (at least partially) stay in the entity - enum entype - { - type_id = ePE_params_ground_plane - }; - pe_params_ground_plane() { type = type_id; iPlane = 0; MARK_UNUSED ground.origin, ground.n; } - int iPlane; // index of the plane to be set (-1 removes existing planes) - primitives::plane ground; -}; - -enum special_joint_ids -{ - joint_impulse = 1000000 -}; -struct pe_params_structural_joint - : pe_params -{ - enum entype - { - type_id = ePE_params_structural_joint - }; - pe_params_structural_joint() - { - type = type_id; - id = 0; - bReplaceExisting = 0; - MARK_UNUSED idx, partid[0], partid[1], pt, n, maxForcePush, maxForcePull, maxForceShift, maxTorqueBend, maxTorqueTwist, damageAccum, damageAccumThresh, - bBreakable, szSensor, bBroken, partidEpicenter, axisx, limitConstraint, bConstraintWillIgnoreCollisions, dampingConstraint; - } - - int id; // joint's 'foreign' identifier - int idx; // joint's internal index - int bReplaceExisting; // if not set, SetParams will add a new joint even if id is already used - int partid[2]; // ids of the parts this joint connects (-1 for ground) - Vec3 pt; // point in entity space - Vec3 n; // push/pull direction in entity space - Vec3 axisx; // x axis in entity frame; only used for joints that can become dynamic constraints - float maxForcePush, maxForcePull, maxForceShift; // linear force limits - float maxTorqueBend, maxTorqueTwist; // angular force (torque) limits - float damageAccum, damageAccumThresh; // fraction of tension that gets accumulated, can be used to emulate an health system - Vec3 limitConstraint; // x=min angle, y=max angle, z=force limit - int bBreakable; // joint is at all breakable - int bConstraintWillIgnoreCollisions; // dynamic constraints will have constraint_ignore_buddy flag - int bDirectBreaksOnly; // joint can only be broken by direct impulses to one of the parts it connects - float dampingConstraint; // dynamic constraint's damping - float szSensor; // sensor geometry size; used to re-attach the joint when parts break off - int bBroken; // joint is broken - int partidEpicenter; // tension recomputation will start from this part (used for network playback, for instance) -}; - -struct pe_params_structural_initial_velocity - : pe_params -{ - // Setting of initial velocities of parts before breaking joints on clients through pe_params_structural_joint - enum entype - { - type_id = ePE_params_structural_initial_velocity - }; - pe_params_structural_initial_velocity() { type = type_id; } - - int partid; // id of the part to prepare for breakage - Vec3 v; // Initial velocity - Vec3 w; // Initial ang velocity -}; - - -struct pe_params_timeout - : pe_params -{ - // entities can be forced to go to sleep after some time without external impulses - enum entype - { - type_id = ePE_params_timeout - }; - pe_params_timeout() { type = type_id; MARK_UNUSED timeIdle, maxTimeIdle; } - float timeIdle; // current 'idle' time (time without any 'prods' from outside) - float maxTimeIdle; // sleep when timeIdle>maxTimeIdle; 0 turns this feature off -}; - -struct pe_params_skeleton - : pe_params -{ - // skeleton is a hidden mesh that uses cloth simulation to skin the main physics geometry - enum entype - { - type_id = ePE_params_skeleton - }; - pe_params_skeleton() { type = type_id; MARK_UNUSED partid, ipart, stiffness, thickness, maxStretch, maxImpulse, timeStep, nSteps, hardness, explosionScale, bReset; } - - int partid; // id of the skinned part - int ipart; // ..or its internal index - float stiffness; // skeleton's hardness against bending and shearing - float thickness; // skeleton's thickness for collisions - float maxStretch; // skeleton's maximal stretching - float maxImpulse; // skeleton impulse cap - float timeStep; // time step, used to simulate the skeleton (typically small) - int nSteps; // number of skeleton sub-steps per each structure update - float hardness; // skeleton's hardness against stretching - float explosionScale; // skeleton's explosion impulse scale - int bReset; // resets the skeleton to its original pose -}; - - -////////// articulated entity params -enum joint_flags -{ - angle0_locked = 1, all_angles_locked = 7, angle0_limit_reached = 010, angle0_auto_kd = 0100, joint_no_gravity = 01000, - joint_isolated_accelerations = 02000, joint_expand_hinge = 04000, angle0_gimbal_locked = 010000, - joint_dashpot_reached = 0100000, joint_ignore_impulses = 0200000 -}; - -struct pe_params_joint - : pe_params -{ - enum entype - { - type_id = ePE_params_joint - }; - pe_params_joint() - { - type = type_id; - for (int i = 0; i < 3; i++) - { - MARK_UNUSED limits[0][i], limits[1][i], qdashpot[i], kdashpot[i], bounciness[i], q[i], qext[i], ks[i], kd[i], qtarget[i]; - } - bNoUpdate = 0; - pMtx0 = 0; - flagsPivot = 3; - MARK_UNUSED flags, q0, pivot, ranimationTimeStep, nSelfCollidingParts, animationTimeStep, op[0]; - } - - unsigned int flags; // should be a combination of angle0,1,2_locked, angle0,1,2_auto_kd, joint_no_gravity - int flagsPivot; // if bit 0 is set, update pivot point in parent frame, if bit 1 - in child - Vec3 pivot; // joint pivot in entity CS - quaternionf q0; // orientation of child in parent coordinates that corresponds to angles (0,0,0) - Matrix33* pMtx0; // same as q0 - Vec3 limits[2]; // limits for each angle - Vec3 bounciness; // bounciness for each angle (applied when limit is reached) - Vec3 ks, kd; // stiffness and damping koefficients for each angle angular spring - Vec3 qdashpot; // limit vicinity where joints starts resisting movement - Vec3 kdashpot; // when dashpot is activated, this is roughly the angular speed, stopped in 2 sec - Ang3 q; // angles values - Ang3 qext; // additional angles values (angle[i] = q[i]+qext[i]; only q[i] is taken into account - // while calculating spring torque - Ang3 qtarget; - int op[2]; // body identifiers of parent (optional) and child respectively - int nSelfCollidingParts, * pSelfCollidingParts; // part ids of only parts that should be checked for self-collision - int bNoUpdate; // omit recalculation of body parameters after changing this joint - float animationTimeStep; // used to calculate joint velocities of animation - float ranimationTimeStep; // 1/animation time step, can be not specified (specifying just saves extra division operation) - - VALIDATORS_START - VALIDATOR(pivot) - VALIDATOR_NORM(q0) - VALIDATOR(q) - VALIDATOR(qext) - VALIDATORS_END -}; - -struct pe_params_articulated_body - : pe_params -{ - enum entype - { - type_id = ePE_params_articulated_body - }; - pe_params_articulated_body() - { - type = type_id; - MARK_UNUSED bGrounded, bInheritVel, bCheckCollisions, bCollisionResp, nJointsAlloc; - MARK_UNUSED bGrounded, bInheritVel, bCheckCollisions, bCollisionResp, a, wa, w, v, pivot, scaleBounceResponse, posHostPivot, qHostPivot; - MARK_UNUSED bAwake, pHost, nCollLyingMode, gravityLyingMode, dampingLyingMode, minEnergyLyingMode, iSimType, iSimTypeLyingMode, nRoots; - bApply_dqext = 0; - bRecalcJoints = 1; - } - - int bGrounded; // whether body's pivot is firmly attached to something or free - int bCheckCollisions; // only works with bCollisionResp set - int bCollisionResp; // when on, uses 'ragdoll' simulation mode, when off - 'skeleton' (for hit simulation on alive actors) - Vec3 pivot; // attachment position for grounded entities - Vec3 a; // acceleration of the ground for grounded entities - Vec3 wa; // angular acceleration of the ground for grounded entities - Vec3 w; // angular velocity of the ground for grounded entities - Vec3 v; // linear velocity of the ground for grounded entities - float scaleBounceResponse; // scales impulsive torque that is applied at a joint that has just reached its limit - int bApply_dqext; // adds current dqext to joints velocities. dqext is the speed of external animation and is calculated each time - // qext is set for joint (as difference between new value and current value, multiplied by inverse of animation timestep) - int bAwake; // current state - - IPhysicalEntity* pHost; // 'ground' entity - Vec3 posHostPivot; // attachment position inside pHost - quaternionf qHostPivot; - int bInheritVel; // take pHost velocity into account during the simulation - - int nCollLyingMode; // number of contacts that triggers 'lying mode' - Vec3 gravityLyingMode; // gravity override in lying mode - float dampingLyingMode; // damping override - float minEnergyLyingMode; // sleep speed override - int iSimType; // simulation type: 0-'joint-based', 1-'body-based'; fast motion forces joint-based mode automatically - int iSimTypeLyingMode; // simulation type override - int nRoots; // only used in GetParams - int nJointsAlloc; // pre-allocates this amount of joints and parts - - int bRecalcJoints; // re-build geometry positions from joint agnles -}; - -////////// living entity params - -struct pe_player_dimensions - : pe_params -{ - enum entype - { - type_id = ePE_player_dimensions - }; - pe_player_dimensions() - : dirUnproj(0, 0, 1) - , maxUnproj(0) - { - type = type_id; - MARK_UNUSED sizeCollider, heightPivot, heightCollider, heightEye, heightHead, headRadius, bUseCapsule, groundContactEps; - } - - float heightPivot; // offset from central ground position that is considered entity center - float heightEye; // vertical offset of camera - Vec3 sizeCollider; // collision cylinder dimensions - float heightCollider; // vertical offset of collision geometry center - float headRadius; // radius of the 'head' geometry (used for camera offset) - float heightHead; // center.z of the head geometry - Vec3 dirUnproj; // unprojection direction to test in case the new position overlaps with the environment (can be 0 for 'auto') - float maxUnproj; // maximum allowed unprojection - int bUseCapsule; // switches between capsule and cylinder collider geometry - float groundContactEps; // the amount that the living needs to move upwards before ground contact is lost. defaults to which ever is greater 0.004, or 0.01*geometryHeight - - VALIDATORS_START - VALIDATOR(heightPivot) - VALIDATOR(heightEye) - VALIDATOR_RANGE2(sizeCollider, 0, 100) - VALIDATORS_END -}; - -struct pe_player_dynamics - : pe_params -{ - enum entype - { - type_id = ePE_player_dynamics - }; - pe_player_dynamics() - { - type = type_id; - MARK_UNUSED kInertia, kInertiaAccel, kAirControl, gravity, gravity.z, nodSpeed, mass, bSwimming, surface_idx, bActive, collTypes, pLivingEntToIgnore; - MARK_UNUSED minSlideAngle, maxClimbAngle, maxJumpAngle, minFallAngle, kAirResistance, maxVelGround, timeImpulseRecover, bReleaseGroundColliderWhenNotActive; - } - - float kInertia; // inertia koefficient, the more it is, the less inertia is; 0 means no inertia - float kInertiaAccel; // inertia on acceleration - float kAirControl; // air control coefficient 0..1, 1 - special value (total control of movement) - float kAirResistance; // standard air resistance - Vec3 gravity; // gravity vector - float nodSpeed; // vertical camera shake speed after landings - int bSwimming; // whether entity is swimming (is not bound to ground plane) - float mass; // mass (in kg) - int surface_idx; // surface identifier for collisions - float minSlideAngle; // if surface slope is more than this angle, player starts sliding (angle is in degrees) - float maxClimbAngle; // player cannot climb surface which slope is steeper than this angle (angle is in degrees) - float maxJumpAngle; // player is not allowed to jump towards ground if this angle is exceeded (angle is in degrees) - float minFallAngle; // player starts falling when slope is steeper than this (angle is in degrees) - float maxVelGround; // player cannot stand on surfaces that are moving faster than this - float timeImpulseRecover; // forcefully turns on inertia for that duration after receiving an impulse - int collTypes; // entity types to check collisions against - IPhysicalEntity* pLivingEntToIgnore; // ignore collisions with this *living entity* (doesn't work with other entity types) - int bActive; // 0 disables all simulation for the character, apart from moving along the requested velocity - int bReleaseGroundColliderWhenNotActive; // when not 0, if the living entity is not active, the ground collider, if any, will be explicitly released during the simulation step. -}; - -////////// particle entity params - -struct pe_params_particle - : pe_params -{ - enum entype - { - type_id = ePE_params_particle - }; - pe_params_particle() - { - type = type_id; - MARK_UNUSED mass, size, thickness, wspin, accThrust, kAirResistance, kWaterResistance, velocity, heading, accLift, accThrust, gravity, waterGravity; - MARK_UNUSED surface_idx, normal, q0, minBounceVel, rollAxis, flags, pColliderToIgnore, iPierceability, areaCheckPeriod, minVel, collTypes, dontPlayHitEffect; - } - - unsigned int flags; // see entity flags - float mass; - float size; // pseudo-radius - float thickness; // thickness when lying on a surface (if left unused, size will be used) - Vec3 heading; // direction of movement - float velocity; // velocity along "heading" - float kAirResistance; // air resistance koefficient, F = kv - float kWaterResistance; // same for water - float accThrust; // acceleration along direction of movement - float accLift; // acceleration that lifts particle with the current speed - int surface_idx; - Vec3 wspin; // angular velocity - Vec3 gravity; // stores this gravity and uses it if the current area's gravity is equal to the global gravity - Vec3 waterGravity; // gravity when underwater - Vec3 normal; // aligns this direction with the surface normal when sliding - Vec3 rollAxis; // aligns this directon with the roll axis when rolling (0,0,0 to disable alignment) - quaternionf q0; // initial orientation (zero means x along direction of movement, z up) - float minBounceVel; // velocity threshold for bouncing->sliding switch - float minVel; // sleep speed threshold - IPhysicalEntity* pColliderToIgnore; // physical entity to ignore during collisions - int iPierceability; // pierceability for ray tests; pierceble hits slow the particle down, but don't stop it - int collTypes; // 'objtype' passed to RayWorldntersection - int areaCheckPeriod; // how often (in frames) world area checks are made - int dontPlayHitEffect; // prevent playing of material FX from now on - - VALIDATORS_START - VALIDATOR(mass) - VALIDATOR(size) - VALIDATOR(thickness) - VALIDATOR_NORM(heading) - VALIDATOR_NORM(q0) - VALIDATORS_END -}; - -////////// vehicle entity params - -struct pe_params_car - : pe_params -{ - enum entype - { - type_id = ePE_params_car - }; - pe_params_car() - { - type = type_id; - MARK_UNUSED engineMaxRPM, iIntegrationType, axleFriction, enginePower, maxSteer, maxTimeStep, minEnergy, damping, brakeTorque; - MARK_UNUSED engineMinRPM, engineShiftUpRPM, engineShiftDownRPM, engineIdleRPM, engineStartRPM, clutchSpeed, nGears, gearRatios, kStabilizer; - MARK_UNUSED slipThreshold, gearDirSwitchRPM, kDynFriction, minBrakingFriction, maxBrakingFriction, steerTrackNeutralTurn, maxGear, minGear, pullTilt; - MARK_UNUSED maxTilt, bKeepTractionWhenTilted; - } - - float axleFriction; // friction torque at axes divided by mass of vehicle - float enginePower; // power of engine (about 10,000 - 100,000) - float maxSteer; // maximum steering angle - float engineMaxRPM; // engine torque decreases to 0 after reaching this rotation speed - float brakeTorque; // torque applied when breaking using the engine - int iIntegrationType; // for suspensions; 0-explicit Euler, 1-implicit Euler - float maxTimeStep; // maximum time step when vehicle has only wheel contacts - float minEnergy; // minimum awake energy when vehicle has only wheel contacts - float damping; // damping when vehicle has only wheel contacts - float minBrakingFriction; // limits the the tire friction when handbraked - float maxBrakingFriction; // limits the the tire friction when handbraked - float kStabilizer; // stabilizer force, as a multiplier for kStiffness of respective suspensions - int nWheels; // the number of wheels - float engineMinRPM; // disengages the clutch when falling behind this limit, if braking with the engine - float engineShiftUpRPM; // RPM threshold for for automatic gear switching - float engineShiftDownRPM; - float engineIdleRPM; // RPM for idle state - float engineStartRPM; // sets this RPM when activating the engine - float clutchSpeed; // clutch engagement/disengagement speed - int nGears; - float* gearRatios; // assumes 0-backward gear, 1-neutral, 2 and above - forward - int maxGear, minGear; // additional gear index clamping - float slipThreshold; // lateral speed threshold for switchig a wheel to a 'slipping' mode - float gearDirSwitchRPM; // RPM threshold for switching back and forward gears - float kDynFriction; // friction modifier for sliping wheels - float steerTrackNeutralTurn; // for tracked vehicles, steering angle that causes equal but opposite forces on tracks - float pullTilt; // for tracked vehicles, tilt angle of pulling force towards ground - float maxTilt; // maximum wheel contact normal tilt (left or right) after which it acts as a locked part of the hull; it's a cosine of the angle - int bKeepTractionWhenTilted; // keeps wheel traction in tilted mode -}; - -struct pe_params_wheel - : pe_params -{ - enum entype - { - type_id = ePE_params_wheel - }; - pe_params_wheel() - { - type = type_id; - iWheel = 0; - MARK_UNUSED bDriving, iAxle, suspLenMax, suspLenInitial, minFriction, maxFriction, surface_idx, bCanBrake, bBlocked, - bRayCast, kStiffness, kDamping, kLatFriction, Tscale, w, bCanSteer, kStiffnessWeight; - } - - int iWheel; - int bDriving; - int iAxle; // wheels on the same axle align their coordinates (if only slightly misaligned) - // and apply stabilizer force (if set); axle<0 means the wheel does not affect the physics - int bCanBrake; // handbrake applies - int bBlocked; // locks the wheel (acts like a forced handbrake) - int bCanSteer; // can this wheel steer, 0 or 1 - float suspLenMax; // full suspension length (relaxed) - float suspLenInitial; // length in the initial state (used for automatic computations) - float minFriction; // surface friction is cropped to this min-max range - float maxFriction; - int surface_idx; - int bRayCast; // uses raycasts instead of cylinders - float kStiffness; // if 0, will be computed based on mass distribution, lenMax, and lenInitial - float kStiffnessWeight; // When autocalculating stiffness use this weight for this wheel. Note weights for wheels in front of the centre of mass do not influence the weights of wheels behind the centre of mass - // By default all weights are 1.0 and the sum doesn't have to add up to 1.0! - // Also a <=0 weight will leave the wheel out of the autocalculation. It will be get a stiffness of weight*mass*gravity/defaultLength/numWheels. weight=-1 is a good starting point for these wheels - float kDamping; // absolute value if >=0, otherwise -(fraction of 0-oscillation damping) - float kLatFriction; // lateral friction scale (doesn't apply when on handbrake) - float Tscale; // optional driving torque scale - float w; // rotational velocity; it's computed automatically, but can be overriden if needed -}; - -////////// rope entity params - -struct pe_params_rope - : pe_params -{ - enum entype - { - type_id = ePE_params_rope - }; - pe_params_rope() - { - type = type_id; - //START: Per bone UDP for stiffness, damping and thickness for touch bending vegetation - MARK_UNUSED length, mass, collDist, surface_idx, friction, nSegments, pPoints.data, pVelocities.data, pDamping, pStiffness, pThickness; - //END: Per bone UDP for stiffness, damping and thickness for touch bending vegetation - MARK_UNUSED pEntTiedTo[0], ptTiedTo[0], idPartTiedTo[0], pEntTiedTo[1], ptTiedTo[1], idPartTiedTo[1], stiffnessAnim, maxForce, - flagsCollider, nMaxSubVtx, stiffnessDecayAnim, dampingAnim, bTargetPoseActive, wind, windVariance, airResistance, waterResistance, density, collTypes, - jointLimit, jointLimitDecay, sensorRadius, frictionPull, stiffness, collisionBBox[0], penaltyScale, maxIters, attachmentZone, minSegLen, unprojLimit, noCollDist, hingeAxis; - bLocalPtTied = 0; - } - - float length; // 'target' length; 0 is allowed for ropes with dynamic subdivision - float mass; - float collDist; // thickness for collisions - int surface_idx; // for collision reports; friction is overriden - float friction; // friction for free state and lateral friction in strained state - float frictionPull; // friction in pull direction in strained state - float stiffness; // stiffness against stretching (used in the solver; it's *not* a spring, though) - float stiffnessAnim; // shape-preservation stiffness - float stiffnessDecayAnim; // the final shape stiffness will be interpolated from full to full*(1-decay) at the end - float dampingAnim; // damping for shape preservation forces - int bTargetPoseActive; // 0-no target pose (no shape-preservation stiffness), - // 1-simplified target pose (vertices are pulled directly to targets) - // 2-physically correct target pose (the rope applies penalty torques at joints) - Vec3 wind; // local wind in addition to one from phys areas - float windVariance; // wariance (applied to local only) - float airResistance; // needs to be >0 in order to be affetcted by the wind - float waterResistance; // medium resistance when underwater - float density; // used only to compute buoyancy - float jointLimit; // joint rotation limit (doesn't work when both ends are tied) - float jointLimitDecay; // joint limit change (0..1) towards the unattached rope end; can be positive or negative - float sensorRadius; // size of the sensor used to re-attach the rope if the host entity breaks - float maxForce; // force limit; when breached, the rope will detach itself unless rope_no_tears is set - float penaltyScale; // for the solver in strained state with subdivision on - float attachmentZone; // don't register solver contacts within this distance around attachment points (subdivision mode) - float minSegLen; // delete segments below this length in subdivision mode - float unprojLimit; // rotational unprojection limit per frame (no-subdivision mode) - float noCollDist; // fraction of the segment near the attachment point that doesn't collide (no-subdivision mode) - int maxIters; // tweak for the internal vertex solver - int nSegments; // segment count, changin will reset vertex positions - int flagsCollider; // only collide with entity parts flagged this way - int collTypes; // a selection of ent_xxx flags to collide against - int nMaxSubVtx; // maximum internal vertices per segment in subdivision mode - Vec3 collisionBBox[2]; // bbox for entity proximity query in host's space - // (used make all ropes belonging to one host share the same box, to automatically reuse the query results) - Vec3 hingeAxis; // only allow rotation around this axis (in parent's frame if rope_target_vtx_rel is set) - strided_pointer pPoints; - strided_pointer pVelocities; - - IPhysicalEntity* pEntTiedTo[2]; - int bLocalPtTied; // ptTiedTo is in tied part's local coordinates - Vec3 ptTiedTo[2]; - int idPartTiedTo[2]; - //START: Per bone UDP for stiffness, damping and thickness for touch bending vegetation - float* pDamping; - float* pStiffness; - float* pThickness; - //END: Per bone UDP for stiffness, damping and thickness for touch bending vegetation -}; - -////////// soft entity params - -struct pe_params_softbody - : pe_params -{ - enum entype - { - type_id = ePE_params_softbody - }; - pe_params_softbody() - { - type = type_id; - MARK_UNUSED thickness, maxSafeStep, ks, kdRatio, airResistance, wind, windVariance, nMaxIters, - accuracy, friction, impulseScale, explosionScale, collisionImpulseScale, maxCollisionImpulse, collTypes, waterResistance, massDecay, - shapeStiffnessNorm, shapeStiffnessTang, stiffnessAnim, stiffnessDecayAnim, dampingAnim, maxDistAnim, hostSpaceSim; - } - - float thickness; // thickness for collisions - float maxSafeStep; // time step cap - float ks; // stiffness against stretching (for soft bodies, <0 means fraction of maximum stable) - float kdRatio; // damping in stretch direction, in fractions of 0-oscillation damping - float friction; // overrides material friction - float waterResistance; - float airResistance; - Vec3 wind; // wind in addition to phys area wind - float windVariance; // wind variance, in fractions of 1 (currently changes 4 times/sec) - int nMaxIters; // tweak for the solver (complexity = O(nMaxIters*numVertices)) - float accuracy; // accuracy for the solver (velocity) - float impulseScale; // scale general incoming impulses - float explosionScale; // scale impulses from explosions - float collisionImpulseScale; // not used - float maxCollisionImpulse; // not used - int collTypes; // combination of ent_... flags - float massDecay; // decreases mass from attached points to free ends; mass_free = mass_attached/(1+decay) (can impove stability) - float shapeStiffnessNorm; // resistance to bending - float shapeStiffnessTang; // resistance to shearing - float stiffnessAnim; // strength of linear target pose pull - float stiffnessDecayAnim; // decay of stiffnessAnim - float dampingAnim; // damping for target pose pull - float maxDistAnim; // max deviation from the target pose at the rim; uses stiffnessDecalAnim to scale down closer to attached vtx - float hostSpaceSim; // 0 - world-space simulation, 1 - fully host-space simulation -}; - -/////////// area params - -struct params_wavesim -{ - params_wavesim() { MARK_UNUSED timeStep, waveSpeed, dampingCenter, dampingRim, minhSpread, minVel, simDepth, heightLimit, resistance; } - float timeStep; // fixed timestep used for the simulation - float waveSpeed; // wave propagation speed - float simDepth; // assumed height of moving water layer (relative to cell size) - float heightLimit; // hard limit on height changes (relative to cell size) - float resistance; // rate of velocity transfer from floating objects - float dampingCenter; // damping in the central tile - float dampingRim; // damping in the outer tiles - float minhSpread; // minimum height perturbation that activates a neighbouring tile - float minVel; // sleep speed threshold -}; - -struct pe_params_area - : pe_params -{ - enum entype - { - type_id = ePE_params_area - }; - pe_params_area() { type = type_id; MARK_UNUSED gravity, bUniform, damping, falloff0, bUseCallback, pGeom, volume, borderPad, bConvexBorder, objectVolumeThreshold, cellSize, growthReserve, volumeAccuracy; } - // water/air area params are set through pe_params_buoyancy - - Vec3 gravity; // see also bUniform - float falloff0; // parametric distance (0..1) where falloff starts - int bUniform; // gravity has same direction in every point or always points to the center - int bUseCallback; // will generate immediate EventPhysArea when needs to apply params to an entity - float damping; // uniform damping - IGeometry* pGeom; // phys geometry used in the area - float volume; // the area will try to maintain this volume by adjusting water level - float volumeAccuracy; // accuracy of level computation based on volume (in fractions of the volume) - float borderPad; // after adjusting level, expand the border by this distance - int bConvexBorder; // forces convex border after water level adjustments - float objectVolumeThreshold; // only consider entities larger than this for level adjustment (set in fractions of area volume) - float cellSize; // cell size for wave simulation - params_wavesim waveSim; - float growthReserve; // assume this area increase during level adjustment (only used for wave simulation) -}; - - -////////// water manager params - -struct pe_params_waterman - : pe_params - , params_wavesim -{ - enum entype - { - type_id = ePE_params_waterman - }; - pe_params_waterman() - { - type = type_id; - MARK_UNUSED posViewer, nExtraTiles, nCells, tileSize, timeStep, waveSpeed, - dampingCenter, dampingRim, minhSpread, minVel, simDepth, heightLimit, resistance; - } - - Vec3 posViewer; // water will only be simulated around this point - int nExtraTiles; // number of additional tiles in each direction around the one below posViewer (so total = (nExtarTiles*2+1)^2) - int nCells; // number of cells in each tile - float tileSize; -}; - - -////////////////////////// Action structures ///////////////////// - -////////// common actions -struct pe_action -{ - int type; -}; - -struct pe_action_impulse - : pe_action -{ - enum entype - { - type_id = ePE_action_impulse - }; - pe_action_impulse() { type = type_id; impulse.Set(0, 0, 0); MARK_UNUSED point, angImpulse, partid, ipart; iApplyTime = 2; iSource = 0; } - - Vec3 impulse; - Vec3 angImpulse; // optional - Vec3 point; // point of application, in world CS, optional - int partid; // receiver part identifier - int ipart; // alternatively, part index can be used - int iApplyTime; // 0-apply immediately, 1-apply before the next time step, 2-apply after the next time step - int iSource; // reserved for internal use - - VALIDATORS_START - VALIDATOR_RANGE2(impulse, 0, 1E12f) - VALIDATOR_RANGE2(angImpulse, 0, 1E8f) - VALIDATOR_RANGE2(point, 0, 1E6f) - VALIDATOR_RANGE(ipart, 0, 10000) - VALIDATORS_END -}; - -struct pe_action_reset - : pe_action // Resets dynamic state of an entity -{ - enum entype - { - type_id = ePE_action_reset - }; - pe_action_reset() { type = type_id; bClearContacts = 1; } - int bClearContacts; -}; - -enum constrflags // see pe_action_add_constraint -{ - local_frames = 1, // pt and qframe are in respective entities' coordinate frames - world_frames = 2, // pt and qframe are in the world frame - local_frames_part = 4, // pt and qframe are if respective entity parts' coordinate frames - constraint_inactive = 0x100, // constraint does nothing, except applying _ignore_buddy if set - constraint_ignore_buddy = 0x200, // disables collisions between the constrained entities - constraint_line = 0x400, // position if constrained to a line - constraint_plane = 0x800, // position is constrained to a plane - constraint_free_position = 0x1000, // position is unconstrained - constraint_no_rotation = 0x2000, // relative rotation is fully constrained - constraint_no_enforcement = 0x4000, // disables positional enforcement during fast movement (currently disabled unconditionally) - constraint_no_tears = 0x8000 // constraint is not deleted when force limit is reached -}; - -struct pe_action_add_constraint - : pe_action -{ - enum entype - { - type_id = ePE_action_add_constraint - }; - pe_action_add_constraint() - { - type = type_id; - pBuddy = 0; - flags = world_frames; - MARK_UNUSED id, pt[0], pt[1], partid[0], partid[1], qframe[0], qframe[1], xlimits[0], yzlimits[0], - pConstraintEntity, damping, sensorRadius, maxPullForce, maxBendTorque; - } - int id; // if not set, will be auto-assigned; return value of Action() - IPhysicalEntity* pBuddy; // the second constrained entity; can be WORLD_ENTITY for static attachments - Vec3 pt[2]; // pt[0] must be set; if pt[1] is not set, assumed to be equal to pt[1] - int partid[2]; // if not set, the first part is assumed - quaternionf qframe[2]; // constraint frames for constraint angles computation; if not set, identity in the specified frame is assumed - float xlimits[2]; // rotation limits around x axis ("twist"); if xlimits[0]>=[1], x axis is locked - float yzlimits[2]; // combined yz-rotation - "bending" of x axis; yzlimits[0] is ignored and assumed to be 0 during simulation - unsigned int flags; // see enum constrflags - float damping; // internal constraint damping - float sensorRadius; // used for sampling environment and re-attaching the constraint when something breaks - float maxPullForce, maxBendTorque; // positional and rotational force limits - IPhysicalEntity* pConstraintEntity; // used internally for creating dynamic rope constraints -}; - -struct pe_action_update_constraint - : pe_action -{ - enum entype - { - type_id = ePE_action_update_constraint - }; - pe_action_update_constraint() - { - type = type_id; - MARK_UNUSED idConstraint, pt[0], pt[1], qframe[0], qframe[1], maxPullForce, maxBendTorque, damping; - flagsOR = 0; - flagsAND = (unsigned int)-1; - bRemove = 0; - flags = world_frames; - } - int idConstraint; // doesn't have to be unique - can update several constraints with one id; if not set, updates all constraints - unsigned int flagsOR; - unsigned int flagsAND; - int bRemove; // permanently delete the constraint - Vec3 pt[2]; // local_frames_part is not supported currently - quaternionf qframe[2]; // update to constraint frames - float maxPullForce, maxBendTorque; - float damping; - int flags; // generally it's better to use flagsOR and/or flagsAND -}; - -struct pe_action_register_coll_event - : pe_action -{ - // this can be used to ask an entity to post a fake collision event to the log - enum entype - { - type_id = ePE_action_register_coll_event - }; - pe_action_register_coll_event() { type = type_id; MARK_UNUSED vSelf; } - - Vec3 pt; // collision point - Vec3 n; // collision normal - Vec3 v; // collider's velocity at pt - Vec3 vSelf; // optional override for the current entity's velocity at pt - float collMass; // collider's mass - IPhysicalEntity* pCollider; // collider entity - int partid[2]; - int idmat[2]; - short iPrim[2]; -}; - -struct pe_action_awake - : pe_action -{ - enum entype - { - type_id = ePE_action_awake - }; - pe_action_awake() { type = type_id; bAwake = 1; MARK_UNUSED minAwakeTime; } - int bAwake; - float minAwakeTime; // minimum time to stay awake after executing the action; supported only by some entity types -}; - -struct pe_action_remove_all_parts - : pe_action -{ - enum entype - { - type_id = ePE_action_remove_all_parts - }; - pe_action_remove_all_parts() { type = type_id; } -}; - -struct pe_action_reset_part_mtx - : pe_action -{ - // this will bake the part's matrix into the entity's matrix and clear the former - enum entype - { - type_id = ePE_action_reset_part_mtx - }; - pe_action_reset_part_mtx() { type = type_id; MARK_UNUSED ipart, partid; } - int ipart; - int partid; -}; - -struct pe_action_set_velocity - : pe_action -{ - enum entype - { - type_id = ePE_action_set_velocity - }; - pe_action_set_velocity() { type = type_id; MARK_UNUSED ipart, partid, v, w; bRotationAroundPivot = 0; } - int ipart; // if part is not set, vel is applied to the whole entity; the distinction makes sense only for ragdolls - int partid; - Vec3 v, w; - int bRotationAroundPivot; // if set, w is rotation around the entity's pivot, otherwise around its center of mass - - VALIDATORS_START - VALIDATOR_RANGE2(v, 0, 1E5f) - VALIDATOR_RANGE2(w, 0, 1E5f) - VALIDATORS_END -}; - -struct pe_action_notify - : pe_action -{ - enum entype - { - type_id = ePE_action_notify - }; - enum encodes - { - ParentChange = 0 - }; // the entity this one is attached to moved; only ropes handle it ATM, by immediately enforcing length - pe_action_notify() { type = type_id; iCode = ParentChange; } - int iCode; -}; - -struct pe_action_auto_part_detachment - : pe_action -{ - // this is used to PE_ARTICULATED entities with pre-baked physics simulation - enum entype - { - type_id = ePE_action_auto_part_detachment - }; - pe_action_auto_part_detachment() { type = type_id; MARK_UNUSED threshold, autoDetachmentDist; } - float threshold; // each part will receive a breakable joint with this force limit (which is assumed to be set in fractions of gravity) - float autoDetachmentDist; // additionally, a part will auto-detach itself once it's farther than that from the entity's pivot -}; - -struct pe_action_move_parts - : pe_action -{ - // this will move parts from one entity to another - enum entype - { - type_id = ePE_action_move_parts - }; - int idStart, idEnd; - int idOffset; // added once parts are in the new entity - IPhysicalEntity* pTarget; - Matrix34 mtxRel; // mtxInNewEntity = mtxRel*mtxCurrent - pe_action_move_parts() { type = type_id; idStart = 0; idEnd = 1 << 30; idOffset = 0; mtxRel.SetIdentity(); pTarget = 0; } -}; - -struct pe_action_batch_parts_update - : pe_action -{ - // updates positions of all parts from arrays - enum entype - { - type_id = ePE_action_batch_parts_update - }; - pe_action_batch_parts_update() { type = type_id; qOffs.SetIdentity(); posOffs.zero(); numParts = 0; pnumParts = 0; pIds = 0; pValidator = 0; } - int* pIds; - strided_pointer qParts; - strided_pointer posParts; - int numParts; - int* pnumParts; - quaternionf qOffs; // extra rotation - Vec3 posOffs; // extra offset - struct Validator - { - virtual ~Validator() {} - virtual bool Lock() = 0; - virtual void Unlock() = 0; - }* pValidator; -}; - -struct pe_action_slice - : pe_action -{ - // slices entity's geometry with a shape - enum entype - { - type_id = ePE_action_slice - }; - pe_action_slice() { type = type_id; MARK_UNUSED ipart, partid; npt = 3; } - int ipart; - int partid; - Vec3* pt; - int npt; // only 3 is supported currently -}; - -////////// living entity actions - -struct pe_action_move - : pe_action // movement request for living entities -{ - enum entype - { - type_id = ePE_action_move - }; - pe_action_move() { type = type_id; iJump = 0; dt = 0; MARK_UNUSED dir; } - - Vec3 dir; // requested velocity vector - int iJump; // jump mode - 1-instant velocity change, 2-just adds to current velocity - float dt; // time interval for this action (doesn't need to be set normally) - - VALIDATORS_START - VALIDATOR_RANGE2(dir, 0, 1000) - VALIDATOR_RANGE(dt, 0, 2) - VALIDATORS_END -}; - -struct pe_action_syncliving - : pe_action // syncing living entity physics -{ - enum entype - { - type_id = pPE_action_syncliving - }; - pe_action_syncliving() { type = type_id; pos.zero(); vel.zero(); velRequested.zero(); } - Vec3 pos; - Vec3 vel; - Vec3 velRequested; -}; - -////////// vehicle entity actions - -struct pe_action_drive - : pe_action -{ - enum entype - { - type_id = ePE_action_drive - }; - pe_action_drive() { type = type_id; MARK_UNUSED pedal, dpedal, steer, dsteer, bHandBrake, clutch, iGear; ackermanOffset = 0.f; } - - float pedal; // engine pedal absolute value; active pedal always awakes the entity - float dpedal; // engine pedal delta - float steer; // steering angle absolute value - float ackermanOffset; // apply ackerman steering, 0.0 -> normal driving front wheels steer, back fixed. 1.0 -> front fixed, back steer. 0.5 -> both front and back steer - float dsteer; // steering angle delta - float clutch; // forces clutch; 0..1 - int bHandBrake; // removing handbrake will automatically awaken the vehicle if it's sleeping - int iGear; // 0-back; 1-neutral; 2+-forward -}; - -////////// rope entity actions - -struct pe_action_target_vtx - : pe_action -{ - enum entype - { - type_id = ePE_action_target_vtx - }; - pe_action_target_vtx() { type = type_id; MARK_UNUSED points, nPoints; posHost.zero(); qHost.SetIdentity(); } - - int nPoints; - Vec3* points; // coordinate frame is world, unless the rope has one of rope_target_vtx_rel flags - Vec3 posHost; // world position of the host the vertices are attached to - Quat qHost; -}; - -////////// soft entity actions - -struct pe_action_attach_points - : pe_action -{ - enum entype - { - type_id = ePE_action_attach_points - }; - pe_action_attach_points() { type = type_id; MARK_UNUSED partid, points; nPoints = 1; pEntity = WORLD_ENTITY; bLocal = 0; } - - IPhysicalEntity* pEntity; - int partid; - int* piVtx; // vertex indices to be attached to pEntity.partid - Vec3* points; // can set the desired attachment points; if not set, current positions are fixed in the target's frame - int nPoints; - int bLocal; // if true, points are in the attached part's CS -}; - -////////////////////////// Status structures ///////////////////// - -////////// common statuses -struct pe_status -{ - int type; -}; - -enum status_pos_flags -{ - status_local = 1, status_thread_safe = 2, status_addref_geoms = 4 -}; - -struct pe_status_pos - : pe_status -{ - enum entype - { - type_id = ePE_status_pos - }; - pe_status_pos() { type = type_id; ipart = partid = -1; flags = 0; pMtx3x4 = 0; pMtx3x3 = 0; iSimClass = 0; timeBack = 0; } - - int partid; // part identifier, -1 for entire entity - int ipart; // optionally, part slot index - unsigned int flags; // status_local if part coordinates should be returned in entity CS rather than world CS - unsigned int flagsOR; // boolean OR for all parts flags of the object (or just flags for the selected part) - unsigned int flagsAND; // boolean AND for all parts flags of the object (or just flags for the selected part) - Vec3 pos; // position of center - Vec3 BBox[2]; // bounding box relative to pos (bbox[0]-min, bbox[1]-max) - quaternionf q; - float scale; - int iSimClass; - Matrix34* pMtx3x4; // optional 3x4 transformation matrix - Matrix33* pMtx3x3; // optional 3x3 rotation+scale matrix - IGeometry* pGeom, * pGeomProxy; - float timeBack; // can retrieve previous position; only supported by rigid entities; pos and q; one step back -}; - -// Only works when USE_IMPROVED_RIGID_ENTITY_SYNCHRONISATION is 1 -struct pe_status_netpos - : pe_status -{ - enum entype - { - type_id = ePE_status_netpos - }; - pe_status_netpos() { type = type_id; } - - Vec3 pos; - quaternionf rot; - Vec3 vel; - Vec3 angvel; - float timeOffset; -}; - -struct pe_status_extent - : pe_status // Caches eForm extent of entity in pGeo -{ - enum entype - { - type_id = ePE_status_extent - }; - pe_status_extent() { type = type_id; eForm = EGeomForm(-1); extent = 0; } - - EGeomForm eForm; - float extent; -}; - -struct pe_status_random - : pe_status_extent // Generates random pos on entity, also caches extent -{ - enum entype - { - type_id = ePE_status_random - }; - pe_status_random() { type = type_id; ran.vPos.zero(); ran.vNorm.zero(); } - PosNorm ran; -}; - -struct pe_status_sensors - : pe_status // Requests status of attached to the entity sensors -{ - enum entype - { - type_id = ePE_status_sensors - }; - pe_status_sensors() { type = type_id; } - - Vec3* pPoints; // pointer to array of points where sensors touch environment (assigned by physical entity) - Vec3* pNormals; // pointer to array of surface normals at points where sensors touch environment - unsigned int flags; // bitmask of flags, bit==1 - sensor touched environment -}; - -struct pe_status_dynamics - : pe_status -{ - enum entype - { - type_id = ePE_status_dynamics - }; - pe_status_dynamics() - : v(ZERO) - , w(ZERO) - , a(ZERO) - , wa(ZERO) - , centerOfMass(ZERO) - { - MARK_UNUSED partid, ipart; - type = type_id; - mass = energy = 0; - nContacts = 0; - time_interval = 0; - submergedFraction = 0; - } - - int partid; - int ipart; - Vec3 v; // velocity - Vec3 w; // angular velocity - Vec3 a; // linear acceleration - Vec3 wa; // angular acceleration - Vec3 centerOfMass; - float submergedFraction; // percentage of the entity that is underwater; 0..1. not supported for individual parts - float mass; // entity's or part's mass - float energy; // kinetic energy; only supported by PE_ARTICULATED currently - int nContacts; - float time_interval; // not used -}; - -struct coll_history_item -{ - Vec3 pt; // collision area center - Vec3 n; // collision normal in entity CS - Vec3 v[2]; // velocities of contacting bodies at the point of impact - float mass[2]; // masses of contacting bodies - float age; // age of collision event - int idCollider; // id of collider (not a pointer, since collider can be destroyed before history item is queried) - int partid[2]; - int idmat[2]; // 0-this body material, 1-collider material -}; - -struct pe_status_collisions - : pe_status -{ - // obsolete, replaced with EventPhysCollision events - enum entype - { - type_id = ePE_status_collisions - }; - pe_status_collisions() { type = type_id; age = 0; len = 1; pHistory = 0; bClearHistory = 0; } - - coll_history_item* pHistory; // pointer to a user-provided array of history items - int len; // length of this array - float age; // maximum age of collision events (older events are ignored) - int bClearHistory; -}; - -struct pe_status_id - : pe_status -{ - // retrives surface id from geometry - enum entype - { - type_id = ePE_status_id - }; - pe_status_id() { type = type_id; ipart = partid = -1; bUseProxy = 1; } - - int ipart; - int partid; - int iPrim; // primitive index (only makes sense for meshes) - int iFeature; // feature id inside the primitive; doesn't affect the result currently - int bUseProxy; // use pPhysGeomProxy or pPhysGeom - int id; // surface id -}; - -struct pe_status_timeslices - : pe_status -{ - // only implemented for PE_LIVING and is obsolete, although still supported - enum entype - { - type_id = ePE_status_timeslices - }; - pe_status_timeslices() { type = type_id; pTimeSlices = 0; sz = 1; precision = 0.0001f; MARK_UNUSED time_interval; } - - float* pTimeSlices; - int sz; - float precision; // time surplus below this threshhold will be discarded - float time_interval; // if unused, time elapsed since the last action will be used -}; - -struct pe_status_nparts - : pe_status // GetStuts will return the number of parts -{ - enum entype - { - type_id = ePE_status_nparts - }; - pe_status_nparts() { type = type_id; } -}; - -struct pe_status_awake - : pe_status -{ - enum entype - { - type_id = ePE_status_awake - }; - pe_status_awake() { type = type_id; lag = 0; } - int lag; // GetStatus returns 1 ("awake") if the entity fell asleep later than this amount of frames before -}; - -struct pe_status_contains_point - : pe_status -{ - enum entype - { - type_id = ePE_status_contains_point - }; - pe_status_contains_point() { type = type_id; } - Vec3 pt; -}; - -struct pe_status_placeholder - : pe_status -{ - enum entype - { - type_id = ePE_status_placeholder - }; - pe_status_placeholder() { type = type_id; } - IPhysicalEntity* pFullEntity; // if called on a placeholder, returns the corresponding full entity -}; - -struct pe_status_sample_contact_area - : pe_status -{ - enum entype - { - type_id = ePE_status_sample_contact_area - }; - pe_status_sample_contact_area() { type = type_id; } - Vec3 ptTest; // checks if ptTest, projected along dirTest falls inside the convex hull of this entity's contacts - Vec3 dirTest; -}; - -struct pe_status_caps - : pe_status -{ - enum entype - { - type_id = ePE_status_caps - }; - pe_status_caps() { type = type_id; } - unsigned int bCanAlterOrientation; // the entity can change orientation that is explicitly set from outside (by baking it into parts/geometries) -}; - -struct pe_status_constraint - : pe_status -{ - enum entype - { - type_id = ePE_status_constraint - }; - pe_status_constraint() { type = type_id; idx = -1; } - int id; - int idx; - int flags; - Vec3 pt[2]; - Vec3 n; - IPhysicalEntity* pBuddyEntity; - IPhysicalEntity* pConstraintEntity; -}; - -////////// area status - -struct pe_status_area - : pe_status -{ - enum entype - { - type_id = ePE_status_area - }; - pe_status_area() { type = type_id; bUniformOnly = false; ctr.zero(); size.zero(); vel.zero(); MARK_UNUSED gravity; pLockUpdate = 0; pSurface = 0; } - - // inputs. - Vec3 ctr, size; // query bounds - Vec3 vel; - bool bUniformOnly; - - // outputs. - Vec3 gravity; - pe_params_buoyancy pb; - volatile int* pLockUpdate; - IGeometry* pSurface; -}; - -////////// living entity statuses - -struct pe_status_living - : pe_status -{ - enum entype - { - type_id = ePE_status_living - }; - pe_status_living() { type = type_id; } - - int bFlying; // whether entity has no contact with ground - float timeFlying; // for how long the entity was flying - Vec3 camOffset; // camera offset - Vec3 vel; // actual velocity (as rate of position change) - Vec3 velUnconstrained; // 'physical' movement velocity - Vec3 velRequested; // velocity requested in the last action - Vec3 velGround; // velocity of the object entity is standing on - float groundHeight; // position where the last contact with the ground occured - Vec3 groundSlope; - int groundSurfaceIdx; - int groundSurfaceIdxAux; // contact with the ground that also has default collision flags - IPhysicalEntity* pGroundCollider; // only returns an actual entity if the ground collider is not static - int iGroundColliderPart; - float timeSinceStanceChange; - //int bOnStairs; // tries to detect repeated abrupt ground height changes - int bStuck; // tries to detect cases when the entity cannot move as before because of collisions - volatile int* pLockStep; // internal timestepping lock - int iCurTime; // quantised time - int bSquashed; // entity is being pushed by heavy objects from opposite directions -}; - -struct pe_status_check_stance - : pe_status -{ - // checks whether new dimensions cause collisions; params have the same meaning as in pe_player_dimensions - enum entype - { - type_id = ePE_status_check_stance - }; - pe_status_check_stance() - : dirUnproj(0, 0, 1) - , unproj(0) { type = type_id; MARK_UNUSED pos, q, sizeCollider, heightCollider, bUseCapsule; } - - Vec3 pos; - quaternionf q; - Vec3 sizeCollider; - float heightCollider; - Vec3 dirUnproj; - float unproj; - int bUseCapsule; -}; - -////////// vehicle entity statuses - -struct pe_status_vehicle - : pe_status -{ - enum entype - { - type_id = ePE_status_vehicle - }; - pe_status_vehicle() { type = type_id; } - - float steer; // current steering angle - float pedal; // current engine pedal - int bHandBrake; // nonzero if handbrake is on - float footbrake; // nonzero if footbrake is pressed (range 0..1) - Vec3 vel; - int bWheelContact; // nonzero if at least one wheel touches ground - int iCurGear; - float engineRPM; - float clutch; - float drivingTorque; - int nActiveColliders; // number of non-static contacting entities -}; - -struct pe_status_wheel - : pe_status -{ - enum entype - { - type_id = ePE_status_wheel - }; - pe_status_wheel() { type = type_id; iWheel = 0; MARK_UNUSED partid; } - int iWheel; - int partid; - - int bContact; // nonzero if wheel touches ground - Vec3 ptContact; // point where wheel touches ground - Vec3 normContact; // contact normal - float w; // rotation speed - int bSlip; - Vec3 velSlip; // slip velocity - int contactSurfaceIdx; - float friction; // current friction applied - float suspLen; // current suspension spring length - float suspLenFull; // relaxed suspension spring length - float suspLen0; // initial suspension spring length - float r; // wheel radius - float torque; // driving torque - float steer; // current streeing angle - IPhysicalEntity* pCollider; -}; - -struct pe_status_vehicle_abilities - : pe_status -{ - enum entype - { - type_id = ePE_status_vehicle_abilities - }; - pe_status_vehicle_abilities() { type = type_id; MARK_UNUSED steer; } - - float steer; // should be set to requested steering angle - Vec3 rotPivot; // returns turning circle center - float maxVelocity; // calculates maximum velocity of forward movement along a plane (steer is ignored) -}; - -////////// articulated entity statuses - -struct pe_status_joint - : pe_status -{ - enum entype - { - type_id = ePE_status_joint - }; - pe_status_joint() { type = type_id; MARK_UNUSED partid, idChildBody; } - - int idChildBody; // requested joint is identified by child body id - int partid; // ..or, alternatively, by any of parts that belong to it - unsigned int flags; // joint flags - Ang3 q; // current joint angles (controlled by physics) - Ang3 qext; // external angles (from animation) - Ang3 dq; // current joint angular velocities - quaternionf quat0; // orientation of child inside parent that corresponds to 0 angles -}; - -////////// rope entity statuses - -struct pe_status_rope - : pe_status -{ - enum entype - { - type_id = ePE_status_rope - }; - pe_status_rope() - : pContactEnts(0) - { - type = type_id; - pPoints = pVelocities = pVtx = pContactNorms = 0; - nCollStat = nCollDyn = bTargetPoseActive = bStrained = 0; - stiffnessAnim = timeLastActive = 0; - nVtx = 0; - lock = 0; - } - - int nSegments; - Vec3* pPoints; // expects the caller to provide an array of nSegments+1, if 0, no points are returned - Vec3* pVelocities; // expects the caller to provide an array of nSegments+1, if 0, no velocities are returned - int nCollStat, nCollDyn; // number of rope contacts with static and dynamic objects - int bTargetPoseActive; // current traget pose mode (0, 1, or 2) - float stiffnessAnim; // current target pose stiffness - int bStrained; // whether the rope is strained, either along a line or wrapped around objects - strided_pointer pContactEnts; // returns a pointer to internal data, the caller doesn't need to provide it - int nVtx; // current number of vertices, used for ropes with dynamic subdivision - Vec3* pVtx; // expects the caller to provide the array - Vec3* pContactNorms; // normals for points (not vertices), expects a pointer from the caller - float timeLastActive; // physics time when the rope was last active (not asleep) - Vec3 posHost; // host (the entity part it's attached to) position that corresponds to the returned state - quaternionf qHost; // host's orientation - int lock; // for subdivided ropes: +1 to leave read-locked, -1 to release from a previously read-locked state; 0 - local locking only -}; - -////////// soft entity statuses - -enum ESSVFlags -{ - eSSV_LockPos = 1, // locks vertices (soft entity won't be able to update them until released) - eSSV_UnlockPos = 2 // release the vertices -}; - -struct pe_status_softvtx - : pe_status -{ - enum entype - { - type_id = ePE_status_softvtx - }; - pe_status_softvtx() - : pVtx(0) - , pNormals(0) { type = type_id; pVtxMap = 0; flags = 0; } - - int nVtx; - strided_pointer pVtx; // a pointer to an internal data; doesn't need to be filled - strided_pointer pNormals; // a pointer to an internal data; doesn't need to be filled - int* pVtxMap; // mapping table mesh vertex->simulated vertex (can be 0) - IGeometry* pMesh; // phys mesh that reflects the simulated data - int flags; // see ESSVFlags - quaternionf qHost; // host's orientation - Vec3 posHost; // host (the entity part it's attached to) position that corresponds to the returned state - Vec3 pos; // entity position that corresponds to the returned state - quaternionf q; // entity's orientation -}; - -////////// waterman statuses - -struct SWaterTileBase -{ - int bActive; - float* ph; // heights - Vec3* pvel; // velocities -}; - -struct pe_status_waterman - : pe_status -{ - enum entype - { - type_id = ePE_status_waterman - }; - pe_status_waterman() { type = type_id; } - - int bActive; - Matrix33 R; - Vec3 origin; - int nTiles, nCells; // number of tiles and cells in one dimension - SWaterTileBase** pTiles; // nTiles^2 entries -}; - -////////////////////////// Geometry structures ///////////////////// - -////////// common geometries -enum geom_flags -{ - // collisions between parts are checked if (part0->flagsCollider & part1->flags) !=0 - geom_colltype0 = 0x0001, geom_colltype1 = 0x0002, geom_colltype2 = 0x0004, geom_colltype3 = 0x0008, geom_colltype4 = 0x0010, - geom_colltype5 = 0x0020, geom_colltype6 = 0x0040, geom_colltype7 = 0x0080, geom_colltype8 = 0x0100, geom_colltype9 = 0x0200, - geom_colltype10 = 0x0400, geom_colltype11 = 0x0800, geom_colltype12 = 0x1000, geom_colltype13 = 0x2000, geom_colltype14 = 0x4000, - geom_colltype_ray = 0x8000, // special colltype used by raytracing by default - geom_floats = 0x10000, // colltype required to apply buoyancy - geom_proxy = 0x20000, // only used in AddGeometry to specify that this geometry should go to pPhysGeomProxy - geom_structure_changes = 0x40000, // part is breaking/deforming - geom_can_modify = 0x80000, // geometry is cloned and is used in this entity only - geom_squashy = 0x100000, // part has 'soft' collisions (used for tree foliage proxy) - geom_log_interactions = 0x200000, // part will post EventPhysBBoxOverlap whenever something happens inside its bbox - geom_monitor_contacts = 0x400000, // part needs collision callback from the solver (used internally) - geom_manually_breakable = 0x800000, // part is breakable outside the physics - geom_no_coll_response = 0x1000000, // collisions are detected and reported, but not processed - geom_mat_substitutor = 0x2000000, // geometry is used to change other collision's material id if the collision point is inside it - geom_break_approximation = 0x4000000, // applies capsule approximation after breaking (used for tree trunks) - geom_no_particle_impulse = 0x8000000, // phys particles don't apply impulses to this part; should be used in flagsCollider - geom_destroyed_on_break = 0x2000000, // should be used in flagsCollider - // mnemonic group names - geom_colltype_player = geom_colltype1, geom_colltype_explosion = geom_colltype2, - geom_colltype_vehicle = geom_colltype3, geom_colltype_foliage = geom_colltype4, geom_colltype_debris = geom_colltype5, - geom_colltype_foliage_proxy = geom_colltype13, geom_colltype_obstruct = geom_colltype14, - geom_colltype_solid = 0x0FFF & ~geom_colltype_explosion, geom_collides = 0xFFFF -}; - - - -struct pe_geomparams -{ - enum entype - { - type_id = ePE_geomparams - }; - pe_geomparams() - { - type = type_id; - density = mass = 0; - pos.Set(0, 0, 0); - q.SetIdentity(); - bRecalcBBox = 1; - flags = geom_colltype_solid | geom_colltype_ray | geom_floats | geom_colltype_explosion; - flagsCollider = geom_colltype0; - pMtx3x4 = 0; - pMtx3x3 = 0; - scale = 1.0f; - pLattice = 0; - pMatMapping = 0; - nMats = 0; - MARK_UNUSED surface_idx, minContactDist, idmatBreakable; - } - - int type; - float density; // 0 if mass is used - float mass; // 0 if density is used - Vec3 pos; // offset from object's geometrical pivot - quaternionf q; // orientation relative to object - float scale; - Matrix34* pMtx3x4; // optional full transform matrix - Matrix33* pMtx3x3; // optional 3x3 orintation+scale matrix - int surface_idx; // surface identifier (used if corresponding CGeometry does not contain materials) - unsigned int flags, flagsCollider; - float minContactDist; // contacts closer then this threshold are merged - int idmatBreakable; // index for procedural (boolean) breakability - ITetrLattice* pLattice; // optional tetrahedral lattice (for lattice breaking and soft bodies) - int* pMatMapping; // mapping of mat ids from geometry to final mat ids - int nMats; - int bRecalcBBox; // recalculate all bbox info after the part is added - - VALIDATORS_START - VALIDATOR_RANGE(density, -1E8, 1E8) - VALIDATOR_RANGE(mass, -1E8, 1E8) - VALIDATOR(pos) - VALIDATOR_NORM_MSG(q, "(perhaps non-uniform scaling was used in the asset?)", pt) - VALIDATORS_END -}; - -////////// articulated entity geometries - -struct pe_articgeomparams - : pe_geomparams -{ - enum entype - { - type_id = ePE_articgeomparams - }; - pe_articgeomparams() { type = type_id; idbody = 0; } - pe_articgeomparams(pe_geomparams& src) - { - type = type_id; - density = src.density; - mass = src.mass; - pos = src.pos; - q = src.q; - scale = src.scale; - surface_idx = src.surface_idx; - pLattice = src.pLattice; - pMatMapping = src.pMatMapping; - nMats = src.nMats; - pMtx3x4 = src.pMtx3x4; - pMtx3x3 = src.pMtx3x3; - flags = src.flags; - flagsCollider = src.flagsCollider; - idbody = 0; - idmatBreakable = src.idmatBreakable; - bRecalcBBox = src.bRecalcBBox; - if (!is_unused(src.minContactDist)) - { - minContactDist = src.minContactDist; - } - else - { - MARK_UNUSED minContactDist; - } - } - int idbody; // id of the subbody this geometry is attached to, the 1st add geometry specifies frame CS of this subbody -}; - -////////// vehicle entity geometries - -const int NMAXWHEELS = 30; -struct pe_cargeomparams - : pe_geomparams -{ - enum entype - { - type_id = ePE_cargeomparams - }; - pe_cargeomparams() - : pe_geomparams() { type = type_id; MARK_UNUSED bDriving, minFriction, maxFriction, bRayCast, kLatFriction; bCanBrake = 1; bCanSteer = 1; kStiffnessWeight = 1.f; } - pe_cargeomparams(pe_geomparams& src) - { - type = type_id; - density = src.density; - mass = src.mass; - pos = src.pos; - q = src.q; - surface_idx = src.surface_idx; - idmatBreakable = src.idmatBreakable; - pLattice = src.pLattice; - pMatMapping = src.pMatMapping; - nMats = src.nMats; - pMtx3x4 = src.pMtx3x4; - pMtx3x3 = src.pMtx3x3; - flags = src.flags; - flagsCollider = src.flagsCollider; - MARK_UNUSED bDriving, minFriction, maxFriction, bRayCast; - bCanBrake = 1, bCanSteer = 1; - kStiffnessWeight = 1.f; - } - int bDriving; // whether wheel is driving, -1 - geometry os not a wheel - int iAxle; // wheel axle, currently not used - int bCanBrake; // whether the wheel is locked during handbrakes - int bRayCast; // whether the wheel use simple raycasting instead of geometry sweep check - int bCanSteer; // wheel the wheel can steer - Vec3 pivot; // upper suspension point in vehicle CS - float lenMax; // relaxed suspension length - float lenInitial; // current suspension length (assumed to be length in rest state) - float kStiffness; // suspension stiffness, if 0 - calculate from lenMax, lenInitial, and vehicle mass and geometry - float kStiffnessWeight; // When autocalculating stiffness use this weight for this wheel. Note weights for wheels in front of the centre of mass do not influence the weights of wheels behind the centre of mass - float kDamping; // suspension damping, if <0 - calculate as -kdamping*(approximate zero oscillations damping) - float minFriction, maxFriction; // additional friction limits for tire friction - float kLatFriction; // coefficient for lateral friction -}; - -///////////////// tetrahedra lattice params //////////////////////// - -struct pe_tetrlattice_params - : pe_params -{ - enum entype - { - type_id = ePE_tetrlattice_params - }; - pe_tetrlattice_params() - { - type = type_id; - MARK_UNUSED nMaxCracks, maxForcePush, maxForcePull, maxForceShift, maxTorqueTwist, maxTorqueBend, crackWeaken, density; - } - - int nMaxCracks; // maximum cracks per update - float maxForcePush, maxForcePull, maxForceShift; // linear force limits - float maxTorqueTwist, maxTorqueBend; // angular force limits - float crackWeaken; // weakens faces neighbouring a newly generated crack (0..1) - float density; // also affects all force limits -}; - -///////////////////////////////////////////////////////////////////////////////////// -//////////////////////////// IGeometry Interface //////////////////////////////////// -///////////////////////////////////////////////////////////////////////////////////// - -struct geom_world_data // geometry orientation for Intersect() requests -{ - geom_world_data() - { - v.Set(0, 0, 0); - w.Set(0, 0, 0); - offset.Set(0, 0, 0); - R.SetIdentity(); - centerOfMass.Set(0, 0, 0); - scale = 1.0f; - iStartNode = 0; - } - Vec3 offset; - Matrix33 R; - float scale; - Vec3 v, w; // used to give hints about unprojection direction - Vec3 centerOfMass; // w is rotation around this point - int iStartNode; // for warm-starting (checks collisions in this node first) -}; - -struct intersection_params -{ - intersection_params() - { - iUnprojectionMode = 0; - vrel_min = 1E-6f; - time_interval = 100.0f; - maxSurfaceGapAngle = 1.0f * float(g_PI / 180); - pGlobalContacts = 0; - minAxisDist = 0; - bSweepTest = false; - centerOfRotation.Set(0, 0, 0); - axisContactNormal.Set(0, 0, 1); - unprojectionPlaneNormal.Set(0, 0, 0); - axisOfRotation.Set(0, 0, 0); - bKeepPrevContacts = false; - bStopAtFirstTri = false; - ptOutsidePivot[0].Set(1E11f, 1E11f, 1E11f); - ptOutsidePivot[1].Set(1E11f, 1E11f, 1E11f); - maxUnproj = 1E10f; - bNoAreaContacts = false; - bNoBorder = false; - bNoIntersection = 0; - bExactBorder = 0; - bThreadSafe = bThreadSafeMesh = 0; - } - int iUnprojectionMode; // 0-angular, 1-rotational - Vec3 centerOfRotation; // for mode 1 only - Vec3 axisOfRotation; // if left 0, will be set based on collision area normal - float time_interval; // used to set unprojection limits - float vrel_min; // if local relative velocity in contact area is above this, unprojects along its derection; otherwise along area normal - float maxSurfaceGapAngle; // theshold for generating area contacts - float minAxisDist; // disables rotational unprojection if contact point is closer than this to the axis - Vec3 unprojectionPlaneNormal; // restrict linear unprojection to this plane - Vec3 axisContactNormal; // a mild hint about possible contact normal - float maxUnproj; // unprojections longer than this are discarded - Vec3 ptOutsidePivot[2]; // discard contacts that are not facing outward wrt this point - bool bSweepTest; // requests a linear sweep test along v*time_interval (v from geom_world_data) - bool bKeepPrevContacts; // append results to existing contact buffer - bool bStopAtFirstTri; // stop after the first collision is detected - bool bNoAreaContacts; // don't try to detect contact areas - bool bNoBorder; // don't trace contact border - int bExactBorder; // always tries to return a consequtive border (useful for boolean ops) - int bNoIntersection; // don't find all intersection points (only applies to primitive-primitive collisions) - int bBothConvex; // (output) both operands were convex - int bThreadSafe; // set if it's known that no other thread will contend for the internal intersection data (only used in PrimitiveWorldIntersection now) - int bThreadSafeMesh; // set if it's known that no other thread will try to modify the colliding geometry - geom_contact* pGlobalContacts; // pointer to thread's global contact buffer -}; - -struct phys_geometry -{ - IGeometry* pGeom; - Vec3 Ibody; // tensor of inertia in body frame - quaternionf q; // body frame - Vec3 origin; - float V; // volume - int nRefCount; - int surface_idx; // used for primitives and meshes without per-face ids - int* pMatMapping; // mat mapping; can later be overridden inside entity part - int nMats; - PhysicsForeignData pForeignData; // any external pointer to be associated with phys geometry -}; - -struct bop_newvtx -{ - int idx; // vertex index in the resulting A phys mesh - int iBvtx; // -1 if intersection vertex, >=0 if B vertex - int idxTri[2]; // intersecting triangles' foreign indices -}; - -struct bop_newtri -{ - int idxNew; // a newly generated foreign index (can be remapped later) - int iop; // triangle source 0=A, 1=B - int idxOrg; // original (triangulated) triangle's foreign index - int iVtx[3]; // for each vertex, existing vertex index if >=0, -(new vertex index+1) if <0 - float areaOrg; // original triangle's area - Vec3 area[3]; // areas of compementary triangles for each vertex (divide by original tri area to get barycentric coords) -}; - -struct bop_vtxweld -{ - void set(int _ivtxDst, int _ivtxWelded) { ivtxDst = _ivtxDst; ivtxWelded = _ivtxWelded; } - int ivtxDst : 16; // ivtxWelded is getting replaced with ivtxDst - int ivtxWelded : 16; -}; - -struct bop_TJfix -{ - void set(int _iACJ, int _iAC, int _iABC, int _iCA, int _iTJvtx) { iACJ = _iACJ; iAC = _iAC; iABC = _iABC; iCA = _iCA; iTJvtx = _iTJvtx; } - // A _____J____ C (ACJ is a thin triangle on top of ABC; J is 'the junction vertex') - // \ . / in ABC: set A->Jnew - // \ . / in ACJ: set J->Jnew, A -> A from original ABC, C -> B from original ABC - // \/ - // B - int iABC; // big triangle's foreign idx - int iACJ; // small triangle's foreign idx - int iCA; // CA edge number in ABC - int iAC; // AC edge number in ACJ - int iTJvtx; // J vertex index -}; - -struct bop_meshupdate_thunk -{ - bop_meshupdate_thunk() { prevRef = nextRef = this; } - virtual ~bop_meshupdate_thunk() { prevRef->nextRef = nextRef; nextRef->prevRef = prevRef; prevRef = nextRef = this; } - bop_meshupdate_thunk* prevRef, * nextRef; -}; - -struct bop_meshupdate - : bop_meshupdate_thunk -{ - bop_meshupdate() { Reset(); } - virtual ~bop_meshupdate(); - - void Reset() - { - pRemovedVtx = 0; - pRemovedTri = 0; - pNewVtx = 0; - pNewTri = 0; - pWeldedVtx = 0; - pTJFixes = 0; - pMovedBoxes = 0; - nRemovedVtx = nRemovedTri = nNewVtx = nNewTri = nWeldedVtx = nTJFixes = nMovedBoxes = 0; - next = 0; - pMesh[0] = pMesh[1] = 0; - relScale = 1.0f; - } - - IGeometry* pMesh[2]; // 0-dst (A), 1-src (B) - int* pRemovedVtx; - int nRemovedVtx; - int* pRemovedTri; - int nRemovedTri; - bop_newvtx* pNewVtx; - int nNewVtx; - bop_newtri* pNewTri; - int nNewTri; - bop_vtxweld* pWeldedVtx; - int nWeldedVtx; - bop_TJfix* pTJFixes; - int nTJFixes; - bop_meshupdate* next; - primitives::box* pMovedBoxes; - int nMovedBoxes; - float relScale; -}; - -struct trinfo -{ - trinfo& operator=(trinfo& src) { ibuddy[0] = src.ibuddy[0]; ibuddy[1] = src.ibuddy[1]; ibuddy[2] = src.ibuddy[2]; return *this; } - index_t ibuddy[3]; -}; - -struct mesh_island // mesh island is a connected group of trinagles -{ - int itri; // first triangle - int nTris; // trinagle count - int iParent; // outer island is V<0 - int iChild; // first islands inside it with V<0 - int iNext; // maintains a linked list of iChild's inside iParent - float V; // can be negative (means it represents an inner surface) - Vec3 center; // geometrical center - int bProcessed; // for internal use -}; - -struct tri2isle // maintains a linked triangle list inside an island -{ - unsigned int inext : 16; - unsigned int isle : 15; - unsigned int bFree : 1; -}; - -struct mesh_data - : primitives::primitive -{ - index_t* pIndices; - char* pMats; - int* pForeignIdx; // an int associated with each face - strided_pointer pVertices; - Vec3* pNormals; - int* pVtxMap; // original vertex index->merged vertex index - trinfo* pTopology; // neighbours for each triangle's edge - int nTris, nVertices; - mesh_island* pIslands; - int nIslands; - tri2isle* pTri2Island; - int flags; -}; - -const int BOP_NEWIDX0 = 0x8000000; - -enum geomtypes -{ - GEOM_TRIMESH = primitives::triangle::type, GEOM_HEIGHTFIELD = primitives::heightfield::type, GEOM_CYLINDER = primitives::cylinder::type, - GEOM_CAPSULE = primitives::capsule::type, GEOM_RAY = primitives::ray::type, GEOM_SPHERE = primitives::sphere::type, - GEOM_BOX = primitives::box::type, GEOM_VOXELGRID = primitives::voxelgrid::type -}; -enum foreigntypes -{ - DATA_OWNED_OBJECT = 1, DATA_MESHUPDATE = -1, DATA_UNUSED = -2 -}; - -enum meshflags -{ - // mesh_shared_... flags mean that the mesh will not attempt to free the corresponding array upon deletion - mesh_shared_vtx = 1, mesh_shared_idx = 2, mesh_shared_mats = 4, mesh_shared_foreign_idx = 8, mesh_shared_normals = 0x10, - // bounding volume flags (if several are specified in CreateMesh(), the best fitting one will be used) - mesh_OBB = 0x20, mesh_AABB = 0x40, mesh_SingleBB = 0x80, mesh_AABB_rotated = 0x40000, mesh_VoxelGrid = 0x80000, - // mesh_multicontact is a hint on how many contacts per node to expect; 0-one contact, 2-no limit, 1-balanced - mesh_multicontact0 = 0x100, mesh_multicontact1 = 0x200, mesh_multicontact2 = 0x400, - // mesh_approx flags are used in CreateMesh to specify which primitive approximations to try - mesh_approx_cylinder = 0x800, mesh_approx_box = 0x1000, mesh_approx_sphere = 0x2000, mesh_approx_capsule = 0x200000, - mesh_keep_vtxmap = 0x8000, // keeps vertex map after adjacent vertices were merged - mesh_keep_vtxmap_for_saving = 0x10000, // deletes vertex map after loading - mesh_no_vtx_merge = 0x20000, // does not attempt to merge adjacent vertices - mesh_always_static = 0x100000, // simplifies phys mass properties calculation if by just setting them to 0 - mesh_full_serialization = 0x400000, // mesh will save all data to stream unconditionally - mesh_transient = 0x800000, // all mesh allocations will go to a flushable pool - mesh_no_booleans = 0x1000000, // disables boolean operations on the mesh - mesh_AABB_plane_optimise = 0x4000, // aabb generation is faster since it assumes the tri's are in a plane and distributed uniformly - mesh_no_filter = 0x2000000 // doesn't attempt to filter away degenerate triangles -}; -enum meshAuxData -{ - mesh_data_materials = 1, mesh_data_foreign_idx = 2, mesh_data_vtxmap = 4 -}; // used in DestroyAuxiliaryMeshData - -struct IOwnedObject -{ - // - virtual ~IOwnedObject(){} - virtual int Release() = 0; - // -}; - -struct SOcclusionCubeMap; - -struct IGeometry -{ - struct SBoxificationParams - { - SBoxificationParams() { minFaceArea = sqr(0.4f); distFilter = 0.2f; voxResolution = 100; maxFaceTiltAngle = DEG2RAD(10); minLayerFilling = 0.5f; maxLayerReusage = 0.8f; maxVoxIslandConnections = 0.5f; } - float minFaceArea; // ignore patches smaller than this in the box growing process - float distFilter; // smooth away details smaller than this (in terms of linear size) - int voxResolution; // resolution of the grid in the longest direction - float maxFaceTiltAngle; // tolerance for patch alignment with box faces - float minLayerFilling; // stop growing boxes once layer fill percentage falls below this - float maxLayerReusage; // stop growing a box if it goes through already used cells (> than this percentage) - float maxVoxIslandConnections; // ignore isolated voxel islands that have more than this amount of connections to the used ones - }; - // - virtual ~IGeometry(){} - virtual int GetType() = 0; // see enum geomtypes - virtual int AddRef() = 0; - virtual void Release() = 0; - virtual void Lock(int bWrite = 1) = 0; // locks the geometry for reading or writing - virtual void Unlock(int bWrite = 1) = 0; // bWrite should match the preceding Lock - virtual void GetBBox(primitives::box* pbox) = 0; // possibly oriented bbox (depends on BV tree type) - virtual int CalcPhysicalProperties(phys_geometry* pgeom) = 0; // O(num_triangles) for meshes, unless mesh_always_static is set - virtual int PointInsideStatus(const Vec3& pt) = 0; // for meshes, will create an auxiliary hashgrid for acceleration - // IntersectLocked - the main function for geomtries. pdata1,pdata2,pparams can be 0 - defaults will be assumed. - // returns a pointer to an internal thread-specific contact buffer, locked with the lock argument - virtual int IntersectLocked(IGeometry* pCollider, geom_world_data* pdata1, geom_world_data* pdata2, intersection_params* pparams, geom_contact*& pcontacts, AZStd::spin_mutex& lock) = 0; - virtual int IntersectLocked(IGeometry* pCollider, geom_world_data* pdata1, geom_world_data* pdata2, intersection_params* pparams, geom_contact*& pcontacts, AZStd::spin_mutex& lock, int iCaller) = 0; - // Intersect - same as Intersect, but doesn't lock pcontacts - virtual int Intersect(IGeometry* pCollider, geom_world_data* pdata1, geom_world_data* pdata2, intersection_params* pparams, geom_contact*& pcontacts) = 0; - // FindClosestPoint - for non-convex meshes only does local search, doesn't guarantee global minimum - // iFeature's format: (feature type: 2-face, 1-edge, 0-vertex)<<9 | feature index - // if ptdst0 and ptdst1 are different, searches for a closest point on a line segment - // ptres[0] is the closest point on the geometry, ptres[1] - on the test line segment - virtual int FindClosestPoint(geom_world_data* pgwd, int& iPrim, int& iFeature, const Vec3& ptdst0, const Vec3& ptdst1, Vec3* ptres, int nMaxIters = 10) = 0; - // CalcVolumetricPressure: a fairly correct computation of volumetric pressure with inverse-quadratic falloff (ex: explosions) - // for a surface fragment dS, impulse is: k*dS*cos(surface_normal,direction to epicenter) / max(rmin, distance to epicenter)^2 - // returns integral impulse and angular impulse - virtual void CalcVolumetricPressure(geom_world_data* gwd, const Vec3& epicenter, float k, float rmin, const Vec3& centerOfMass, Vec3& P, Vec3& L) = 0; - // CalculateBuoyancy: computes the submerged volume (return value) and the mass center of the submerged part - virtual float CalculateBuoyancy(const primitives::plane* pplane, const geom_world_data* pgwd, Vec3& submergedMassCenter) = 0; - // CalculateMediumResistance: computes medium resistance integral of the surface; self flow of the medium should be baked into pgwd - // for a surface fragment dS with normal n and velocity v impulse is: -n*max(0,n*v) (can be scaled by the medium resistance coeff. later) - virtual void CalculateMediumResistance(const primitives::plane* pplane, const geom_world_data* pgwd, Vec3& dPres, Vec3& dLres) = 0; - // DrawWireframe: draws physics helpers; iLevel>0 will draaw a level in the bounding volume tree - virtual void DrawWireframe(IPhysRenderer* pRenderer, geom_world_data* gwd, int iLevel, int idxColor) = 0; - virtual int GetPrimitiveId(int iPrim, int iFeature) = 0; // get material id for a primitive (iFeature is ignored currently) - // GetPrimitive: expects a valid pprim pointer, type depends on GetType; meshes return primitives::triangle - virtual int GetPrimitive(int iPrim, primitives::primitive* pprim) = 0; - virtual int GetForeignIdx(int iPrim) = 0; // only works for meshes - virtual Vec3 GetNormal(int iPrim, const Vec3& pt) = 0; // only implemented for meshes currently; pt is ignored - virtual int GetFeature(int iPrim, int iFeature, Vec3* pt) = 0; // returns vertices of face, edge, or vertex; only for boxes and meshes currently - virtual int IsConvex(float tolerance) = 0; - // PrepareForRayTest: creates an auxiliary hash structure for short rays test acceleration - virtual void PrepareForRayTest(float raylen) = 0; // raylen - 'expected' ray length to optimize the hash for - // BuildOcclusionCubemap: cubemap projection-based occlusion (used for explosions); pGrids are 6 [nRes^2] arrays - // iMode: 0 - update cubemap in pGrid0; 1 - build cubemap in pGrid1, grow edges by nGrow cells, and compare with pGrid0 - // all geometry closer than rmin is ignored (to avoid large projection scale); same if farther than rmax - virtual float BuildOcclusionCubemap(geom_world_data* pgwd, int iMode, SOcclusionCubeMap* cubemap0, SOcclusionCubeMap* cubemap1, int nGrow) = 0; - virtual void GetMemoryStatistics(ICrySizer* pSizer) = 0; - virtual void Save(CMemStream& stm) = 0; - virtual void Load(CMemStream& stm) = 0; - // Load: meshes can avoid storing vertex, index, and mat id data, in this case same arrays should be provided during loading - virtual void Load(CMemStream& stm, strided_pointer pVertices, strided_pointer pIndices, char* pIds) = 0; - virtual int GetPrimitiveCount() = 0; - virtual const primitives::primitive* GetData() = 0; // returns an pointer to an internal structure; for meshes returns mesh_data - virtual void SetData(const primitives::primitive*) = 0; // not supported by meshes - virtual float GetVolume() = 0; - virtual Vec3 GetCenter() = 0; - // Subtract: performs boolean subtraction; if bLogUpdates==1, will create bop_meshupdate inside the mesh - virtual int Subtract(IGeometry* pGeom, geom_world_data* pdata1, geom_world_data* pdata2, int bLogUpdates = 1) = 0; - virtual int GetSubtractionsCount() = 0; // number of Subtract()s the mesh has survived so far - // GetForeignData: returns a pointer associated with the geometry - // special: GetForeignData(DATA_MESHUPDATE) returns the internal bop_meshupdate list (does not interfere with the main foreign pointer) - virtual PhysicsForeignData GetForeignData(int iForeignData = 0) = 0; - virtual int GetiForeignData() = 0; // foreign data type - virtual void SetForeignData(PhysicsForeignData pForeignData, int iForeignData) = 0; - virtual int GetErrorCount() = 0; // for meshes, the number of edges that don't belong to exactly 2 triangles - virtual void DestroyAuxilaryMeshData(int idata) = 0; // see meshAuxData enum - virtual void RemapForeignIdx(int* pCurForeignIdx, int* pNewForeignIdx, int nTris) = 0; // used in rendermesh-physics sync after boolean ops - virtual void AppendVertices(Vec3* pVtx, int* pVtxMap, int nVtx) = 0; // used in rendermesh-physics sync after boolean ops - virtual float GetExtent(EGeomForm eForm) const = 0; - virtual void GetRandomPos(PosNorm& ran, EGeomForm eForm) const = 0; - virtual void CompactMemory() = 0; // used only by non-breakable meshes to compact non-shared vertices into same contingous block of memory - // Boxify: attempts to build a set of boxes covering the geometry's volume (only supported by trimeshes) - virtual int Boxify(primitives::box* pboxes, int nMaxBoxes, const SBoxificationParams& params) = 0; - // Sanity check the geometry. i.e. its tree doesn't have an excessive depth. returns 0 if fails - virtual int SanityCheck() = 0; - // -}; - - -///////////////////////////////////////////////////////////////////////////////////// -//////////////////////////// IGeometryManager Interface ///////////////////////////// -///////////////////////////////////////////////////////////////////////////////////// - -struct SMeshBVParams {}; - -struct SBVTreeParams - : SMeshBVParams -{ - int nMinTrisPerNode; // if a split creates a node with - virtual ~ITetrLattice(){} - virtual int SetParams(const pe_params*) = 0; // only accepts pe_tetrlattice_params - virtual int GetParams(pe_params*) = 0; - virtual void DrawWireframe(IPhysRenderer* pRenderer, geom_world_data* gwd, int idxColor) = 0; - virtual IGeometry* CreateSkinMesh(int nMaxTrisPerBVNode = 8) = 0; // builds triangle mesh for exterior faces - virtual int CheckPoint(const Vec3& pt, int* idx, float* w) = 0; // check if a point is inside any tetrahedron, fills barycentric weights[4] - virtual void Release() = 0; - // -}; - -struct IBreakableGrid2d -{ - // - virtual ~IBreakableGrid2d(){} - // BreakIntoChunks: emulates fracure in the grid around pt with dimensions r x ry - // ptout receives a pointer to a vertex array - // return value is an allocated array of indices, 3 per triangle, -1 marks contour end, -2 array end - // maxPatchTris tells to unite broken trianges into patches of up to this size; 0 means broken triangles are discarded - // jointhresh (0..1) affects the way triangles unite into patches - // seed bootsraps the RNG if >=0 - // hole edges are filtered to removes corners sharper than filterAng (except those that are formed by several joined triangles) - virtual int* BreakIntoChunks(const vector2df& pt, float r, vector2df*& ptout, int maxPatchTris, float jointhresh, int seed = -1, float filterAng = 0.0f, float ry = 0.0f) = 0; - virtual primitives::grid* GetGridData() = 0; - virtual bool IsEmpty() = 0; - virtual void Release() = 0; - virtual float GetFracture() = 0; // destroyed percentage so far - virtual void GetMemoryStatistics(ICrySizer* pSizer) const = 0; - // -}; - - -struct IGeomManager -{ - // - virtual ~IGeomManager(){} - virtual void InitGeoman() = 0; - virtual void ShutDownGeoman() = 0; - - // CreateMesh - depending on flags (see enum meshflags) can create either a mesh or a primitive that approximates - // approx_tolerance is the approximation tolerance in relative units - // pMats are per-face material ids (which can later be mapped via pMatMapping) - // pForeignIdx store any user data per face (internally indices might be sorted when building BV structure, pForegnIdx will reflect that) - virtual IGeometry* CreateMesh(strided_pointer pVertices, strided_pointer pIndices, char* pMats, int* pForeignIdx, int nTris, int flags, float approx_tolerance = 0.05f, int nMinTrisPerNode = 2, int nMaxTrisPerNode = 4, float favorAABB = 1.0f) = 0; - virtual IGeometry* CreateMesh(strided_pointer pVertices, strided_pointer pIndices, char* pMats, int* pForeignIdx, int nTris, int flags, float approx_tolerance, SMeshBVParams* pParams) = 0; // this version can take SVoxGridParams in pParams, if mesh_VoxelGrid is set - virtual IGeometry* CreatePrimitive(int type, const primitives::primitive* pprim) = 0; // used to create primitives explicitly - virtual void DestroyGeometry(IGeometry* pGeom) = 0; // just calls Release() on pGeom - - // RegisterGeometry: creates a phys_geometry structure for IGeometry, computes mass properties - // phys_geometries are managed in pools internally; the new structure has nRefCount 1 - // defSurfaceIdx will be used (until overwritten in entity part) if the geometry doesn't have per-face materials - virtual phys_geometry* RegisterGeometry(IGeometry* pGeom, int defSurfaceIdx = 0, int* pMatMapping = 0, int nMats = 0) = 0; - virtual int AddRefGeometry(phys_geometry* pgeom) = 0; - virtual int UnregisterGeometry(phys_geometry* pgeom) = 0; // decreases nRefCount, frees the pool slot if <=0 - virtual void SetGeomMatMapping(phys_geometry* pgeom, int* pMatMapping, int nMats) = 0; - - virtual void SaveGeometry(CMemStream& stm, IGeometry* pGeom) = 0; - virtual IGeometry* LoadGeometry(CMemStream& stm, strided_pointer pVertices, strided_pointer pIndices, char* pMats) = 0; - virtual void SavePhysGeometry(CMemStream& stm, phys_geometry* pgeom) = 0; - virtual phys_geometry* LoadPhysGeometry(CMemStream& stm, strided_pointer pVertices, strided_pointer pIndices, char* pIds) = 0; - virtual IGeometry* CloneGeometry(IGeometry* pGeom) = 0; - - virtual ITetrLattice* CreateTetrLattice(const Vec3* pt, int npt, const int* pTets, int nTets) = 0; - // RegisterCrack: cracks are used for ITertLattice-induced breaking to subtract a shape whenever a tetrahedral face breaks - // pVtx specify 3 control vertices; when applying, they are affinely stretched to match the broken face's corners - // idmat is breakability index - virtual int RegisterCrack(IGeometry* pGeom, Vec3* pVtx, int idmat) = 0; - virtual void UnregisterCrack(int id) = 0; - virtual void UnregisterAllCracks(void (* OnRemoveGeom)(IGeometry* pGeom) = 0) = 0; - // GetCrackGeom - creates a stretched crack based on the three corner vertices (pt[3]) - // pgwd receives it world transformation - virtual IGeometry* GetCrackGeom(const Vec3* pt, int idmat, geom_world_data* pgwd) = 0; - - // GenerateBreakebleGrid - creates a perturbed regular grid of points - // ptsrc's bbox is split into a nCells grid (with an additional border) - // vertices are randomly perturbed up to 0.4 cell size (seed can bootstrap the randomizer) - // ptsrc is "painted" into the grid, snapping the closest grid vertices to ptsrc (but no new ones are created at this stage) - // bStatic is ignored currently - virtual IBreakableGrid2d* GenerateBreakableGrid(vector2df* ptsrc, int npt, const vector2di& nCells, int bStatic = 1, int seed = -1) = 0; - - virtual void ReleaseGeomsImmediately(bool bReleaseImmediately) = 0; - // -}; - - -///////////////////////////////////////////////////////////////////////////////////// -////////////////////////////// IPhysUtils Interface ///////////////////////////////// -///////////////////////////////////////////////////////////////////////////////////// - -typedef void* (* qhullmalloc)(size_t); - -struct IPhysUtils -{ - // - virtual ~IPhysUtils(){} - // CoverPolygonWithCircles - attempts to fits circles to roughly cover a polygon (can used to generate round spalshes over an area) - // bConsecutive is false, uses convex hull of the points - // center is a pre-calculated geometrical center of pt's - // outputs data into centers and radii arrays, which use global buffers; returns the number of circles - virtual int CoverPolygonWithCircles(strided_pointer pt, int npt, bool bConsecutive, const vector2df& center, vector2df*& centers, float*& radii, float minCircleRadius) = 0; - virtual int qhull(strided_pointer pts, int npts, index_t*& pTris, qhullmalloc qmalloc = 0) = 0; - virtual void DeletePointer(void* pdata) = 0; // should be used to free data allocated in physics - virtual int TriangulatePoly(vector2df* pVtx, int nVtx, int* pTris, int szTriBuf) = 0; - // -}; - -///////////////////////////////////////////////////////////////////////////////////// -//////////////////////////// IPhysicalEntity Interface ////////////////////////////// -///////////////////////////////////////////////////////////////////////////////////// - -enum snapshot_flags -{ - ssf_compensate_time_diff = 1, ssf_checksum_only = 2, ssf_no_update = 4 -}; - -struct IPhysicalEntity -{ - // - virtual ~IPhysicalEntity(){} - virtual pe_type GetType() const = 0; // returns pe_type - - virtual int AddRef() = 0; - virtual int Release() = 0; - - // SetParams - changes parameters; can be queued and executed later if the physics is busy (unless bThreadSafe is flagged) - // returns !0 if successful - virtual int SetParams(const pe_params* params, int bThreadSafe = 0) = 0; - virtual int GetParams(pe_params* params) const = 0; // uses the same structures as SetParams; returns !0 if successful - virtual int GetStatus(pe_status* status) const = 0; // generally returns >0 if successful, but some pe_status'es have special meaning - virtual int Action(const pe_action*, int bThreadSafe = 0) = 0; // like SetParams, can get queued - - // AddGeometry - add a new entity part, containing pgeom; request can get queued - // params can be specialized depending on the entity type - // id is a requested geometry id (expected to be unique), if -1 - assign automatically - // returns geometry id (0..some number), -1 means error - virtual int AddGeometry(phys_geometry* pgeom, pe_geomparams* params, int id = -1, int bThreadSafe = 0) = 0; - virtual void RemoveGeometry(int id, int bThreadSafe = 0) = 0; // returns !0 if successful; can get queued - - virtual PhysicsForeignData GetForeignData(int itype = 0) const = 0; // returns entity's pForeignData if itype matches iForeignData, 0 otherwise - virtual int GetiForeignData() const = 0; // returns entity's iForegnData - - virtual int GetStateSnapshot(class CStream& stm, float time_back = 0, int flags = 0) = 0; // obsolete, was used in Far Cry - virtual int GetStateSnapshot(TSerialize ser, float time_back = 0, int flags = 0) = 0; - virtual int SetStateFromSnapshot(class CStream& stm, int flags = 0) = 0; // obsolete - virtual int PostSetStateFromSnapshot() = 0; // obsolete - virtual unsigned int GetStateChecksum() = 0; // obsolete - virtual void SetNetworkAuthority(int authoritive = -1, int paused = -1) = 0; // -1 dont change, 0 - set to false, 1 - set to true - - virtual int SetStateFromSnapshot(TSerialize ser, int flags = 0) = 0; - virtual int SetStateFromTypedSnapshot(TSerialize ser, int type, int flags = 0) = 0; - virtual int GetStateSnapshotTxt(char* txtbuf, int szbuf, float time_back = 0) = 0; // packs state into ASCII text - virtual void SetStateFromSnapshotTxt(const char* txtbuf, int szbuf) = 0; - - // DoStep: evolves entity in time. Normally this is called from PhysicalWorld::TimeStep - virtual int DoStep(float time_interval) = 0; - virtual int DoStep(float time_interval, int iCaller) = 0; - virtual void StartStep(float time_interval) = 0; // must be called before DoStep - virtual void StepBack(float time_interval) = 0; - - virtual void GetMemoryStatistics(ICrySizer* pSizer) const = 0; - // -}; - - -///////////////////////////////////////////////////////////////////////////////////// -//////////////////////////// IPhysicsEventClient Interface ////////////////////////// -///////////////////////////////////////////////////////////////////////////////////// - -struct IPhysicsEventClient // obsolete, replaced with event system (EventPhys...) -{ // - virtual ~IPhysicsEventClient(){} - virtual void OnBBoxOverlap(IPhysicalEntity* pEntity, PhysicsForeignData pForeignData, int iForeignData, IPhysicalEntity* pCollider, void* pColliderForeignData, int iColliderForeignData) = 0; - virtual void OnStateChange(IPhysicalEntity* pEntity, PhysicsForeignData pForeignData, int iForeignData, int iOldSimClass, int iNewSimClass) = 0; - virtual void OnCollision(IPhysicalEntity* pEntity, PhysicsForeignData pForeignData, int iForeignData, coll_history_item* pCollision) = 0; - virtual int OnImpulse(IPhysicalEntity* pEntity, PhysicsForeignData pForeignData, int iForeignData, pe_action_impulse* impulse) = 0; - virtual void OnPostStep(IPhysicalEntity* pEntity, PhysicsForeignData pForeignData, int iForeignData, float dt) = 0; - // -}; - -///////////////////////////////////////////////////////////////////////////////////// -///////////////////////////// IPhysicalWorld Interface ////////////////////////////// -///////////////////////////////////////////////////////////////////////////////////// - -enum draw_helper_flags -{ - pe_helper_collisions = 1, pe_helper_geometry = 2, pe_helper_bbox = 4, pe_helper_lattice = 8 -}; -enum surface_flags -{ - sf_pierceable_mask = 0x0F, sf_max_pierceable = 0x0F, sf_important = 0x200, sf_manually_breakable = 0x400, sf_matbreakable_bit = 16 -}; -#define sf_pierceability(i) (i) -#define sf_matbreakable(i) (((i) + 1) << sf_matbreakable_bit) -enum rwi_flags // see RayWorldIntersection -{ - rwi_ignore_terrain_holes = 0x20, rwi_ignore_noncolliding = 0x40, rwi_ignore_back_faces = 0x80, rwi_ignore_solid_back_faces = 0x100, - rwi_pierceability_mask = 0x0F, rwi_pierceability0 = 0, rwi_stop_at_pierceable = 0x0F, - rwi_separate_important_hits = sf_important, // among pierceble hits, materials with sf_important will have priority - rwi_colltype_bit = 16, // used to manually specify collision geometry types (default is geom_colltype_ray) - rwi_colltype_any = 0x400, // if several colltype flag are specified, switches between requiring all or any of them in a geometry - rwi_queue = 0x800, // queues the RWI request, when done it'll generate EventPhysRWIResult - rwi_force_pierceable_noncoll = 0x1000, // non-colliding geometries will be treated as pierceable regardless of the actual material - rwi_update_last_hit = 0x4000, // update phitLast with the current hit results (should be set if the last hit should be reused for a "warm" start) - rwi_any_hit = 0x8000 // returns the first found hit for meshes, not necessarily the closets -}; -#define rwi_pierceability(pty) (pty) -#define rwi_colltype_all(colltypes) ((colltypes) << rwi_colltype_bit) -#define rwi_colltype_any(colltypes) ((colltypes) << rwi_colltype_bit | rwi_colltype_any) -enum entity_query_flags // see GetEntitiesInBox and RayWorldIntersection -{ - ent_static = 1, ent_sleeping_rigid = 2, ent_rigid = 4, ent_living = 8, ent_independent = 16, ent_deleted = 128, ent_terrain = 0x100, - ent_all = ent_static | ent_sleeping_rigid | ent_rigid | ent_living | ent_independent | ent_terrain, - ent_flagged_only = pef_update, ent_skip_flagged = pef_update * 2, // "flagged" meas has pef_update set - ent_areas = 32, ent_triggers = 64, - ent_ignore_noncolliding = 0x10000, - ent_sort_by_mass = 0x20000, // sort by mass in ascending order - ent_allocate_list = 0x40000, // if not set, the function will return an internal pointer - ent_addref_results = 0x100000, // will call AddRef on each entity in the list (expecting the caller call Release) - ent_water = 0x200, // can only be used in RayWorldIntersection - ent_no_ondemand_activation = 0x80000, // can only be used in RayWorldIntersection - ent_delayed_deformations = 0x80000 // queues procedural breakage requests; can only be used in SimulateExplosion -}; -enum phys_locks -{ - PLOCK_WORLD_STEP = 1, PLOCK_CALLER0, PLOCK_CALLER1, PLOCK_QUEUE, PLOCK_AREAS -}; - -struct phys_profile_info -{ - IPhysicalEntity* pEntity; - int nTicks, nCalls; - int nTicksLast, nCallsLast; - int nTicksAvg; - float nCallsAvg; - int nTicksPeak, nCallsPeak, peakAge; - int nTicksStep; - int id; - const char* pName; -}; - -struct phys_job_info -{ - int jobType; - int nInvocations; - int nFallbacks; - int64 nTicks, nLatency, nLatencyAbs; - int64 nTicksPeak, nLatencyPeak, nLatencyAbsPeak, peakAge; - const char* pName; -}; - -struct SolverSettings -{ - int nMaxStackSizeMC; // def 8 - float maxMassRatioMC; // def 50 - int nMaxMCiters; // def 1400 - int nMinMCiters; // def 4 - int nMaxMCitersHopeless; // def 400 - float accuracyMC; // def 0.005 - float accuracyLCPCG; // def 0.005 - int nMaxContacts; // def 150 - int nMaxPlaneContacts; // def 7 - int nMaxPlaneContactsDistress; // def 4 - int nMaxLCPCGsubiters; // def 120 - int nMaxLCPCGsubitersFinal; // def 250 - int nMaxLCPCGmicroiters; - int nMaxLCPCGmicroitersFinal; - int nMaxLCPCGiters; // def 5 - float minLCPCGimprovement; // def 0.1 - int nMaxLCPCGFruitlessIters; // def 4 - float accuracyLCPCGnoimprovement; // def 0.05 - float minSeparationSpeed; // def 0.02 - float maxvCG; - float maxwCG; - float maxvUnproj; - int bCGUnprojVel; - float maxMCMassRatio; - float maxMCVel; - int maxLCPCGContacts; -}; - -enum entity_out_of_bounds_flags -{ - raycast_out_of_bounds = 1, // Affects ray casts. NB, ray casting out of bounds entities can cause performance issues - get_entities_out_of_bounds = 2, // Affects GetEntitiesAround. -}; - -struct PhysicsVars - : SolverSettings -{ - int bFlyMode; - int iCollisionMode; - int bSingleStepMode; - int bDoStep; - float fixedTimestep; - float timeGranularity; - float maxWorldStep; - int iDrawHelpers; - int iOutOfBounds; - float maxContactGap; - float maxContactGapPlayer; - float minBounceSpeed; - int bProhibitUnprojection; - int bUseDistanceContacts; - float unprojVelScale; - float maxUnprojVel; - float maxUnprojVelRope; - int bEnforceContacts; - int nMaxSubsteps; - int nMaxSurfaces; - Vec3 gravity; - int nGroupDamping; - float groupDamping; - int nMaxSubstepsLargeGroup; - int nBodiesLargeGroup; - int bBreakOnValidation; - int bLogActiveObjects; - int bProfileEntities; - int bProfileFunx; - int bProfileGroups; - int nGEBMaxCells; - int nMaxEntityCells; - int nMaxAreaCells; - float maxVel; - float maxVelPlayers; - float maxVelBones; - float maxContactGapSimple; - float penaltyScale; - int bSkipRedundantColldet; - int bLimitSimpleSolverEnergy; - int nMaxEntityContacts; - int bLogLatticeTension; - int nMaxLatticeIters; - int bLogStructureChanges; - float tickBreakable; - float approxCapsLen; - int nMaxApproxCaps; - int bPlayersCanBreak; - float lastTimeStep; - int bMultithreaded; - float breakImpulseScale; - float rtimeGranularity; - float massLimitDebris; - int flagsColliderDebris; - int flagsANDDebris; - int maxRopeColliderSize; - int maxSplashesPerObj; - float splashDist0, minSplashForce0, minSplashVel0; - float splashDist1, minSplashForce1, minSplashVel1; - int bDebugExplosions; - float jointGravityStep; - float jointDmgAccum; - float jointDmgAccumThresh; - float timeScalePlayers; - float threadLag; - int numThreads; - int physCPU; - int physWorkerCPU; - Vec3 helperOffset; - int64 ticksPerSecond; - // net-synchronization related -#if USE_IMPROVED_RIGID_ENTITY_SYNCHRONISATION - float netInterpTime; - float netExtrapMaxTime; - int netSequenceFrequency; - int netDebugDraw; -#else - float netMinSnapDist; - float netVelSnapMul; - float netMinSnapDot; - float netAngSnapMul; - float netSmoothTime; -#endif - - int bEntGridUseOBB; - int nStartupOverloadChecks; - float breakageMinAxisInertia; // For procedural breaking, each axis must have a minium inertia compared to the axis with the largest inertia (0.01-1.00) - - int bForceSyncPhysics; -}; - -struct ray_hit -{ - float dist; - IPhysicalEntity* pCollider; - int ipart; - int partid; - short surface_idx; - short idmatOrg; // original material index, not mapped with material mapping - int foreignIdx; - int iNode; // BV tree node that had the intersection; can be used for "warm start" next time - Vec3 pt; - Vec3 n; // surface normal - int bTerrain; // global terrain hit - int iPrim; // hit triangle index - ray_hit* next; // reserved for internal use, do not change -}; - -struct ray_hit_cached // used in conjunction with rwi_reuse_last_hit -{ - ray_hit_cached() { pCollider = 0; ipart = 0; } - ray_hit_cached(const ray_hit& hit) { pCollider = hit.pCollider; ipart = hit.ipart; iNode = hit.iNode; } - ray_hit_cached& operator=(const ray_hit& hit) { pCollider = hit.pCollider; ipart = hit.ipart; iNode = hit.iNode; return *this; } - - IPhysicalEntity* pCollider; - int ipart; - int iNode; -}; - -#ifndef PWI_NAME_TAG -#define PWI_NAME_TAG "PrimitiveWorldIntersection" -#endif -#ifndef RWI_NAME_TAG -#define RWI_NAME_TAG "RayWorldIntersection" -#endif - -struct pe_explosion // see SimulateExplosion -{ - pe_explosion() { nOccRes = 0; nGrow = 0; rminOcc = 0.1f; holeSize = 0; explDir.Set(0, 0, 1); iholeType = 0; forceDeformEntities = false; } - Vec3 epicenter; // epicenter for the occlusion computation - Vec3 epicenterImp; // epicenter for impulse computation - // the impulse a surface fragment with area dS and normal n gets is: dS*k*n*max(0,n*dir_to_epicenter)/max(rmin, dist_to_epicenter)^2 - // k is selected in such way that at impulsivePressureAtR = k/r^2 - float rmin, rmax, r; - float impulsivePressureAtR; - int nOccRes; // resolution of the occlusion map (0 disables) - int nGrow; // grow occlusion projections by this amount of cells to allow explosion to reach around corners a bit - float rminOcc; // ignores geometry closer than this for occlusion computations - float holeSize; // explosion shape for iholeType will be scaled by this holeSize / shape's declared size - Vec3 explDir; // hit direction, for aligning the explosion boolean shape - int iholeType; // breakability index for the explosion (<0 disables) - bool forceDeformEntities; // force deformation even if breakImpulseScale is zero - // filled as results - IPhysicalEntity** pAffectedEnts; - float* pAffectedEntsExposure; // 0..1 exposure, computed from the occlusion map - int nAffectedEnts; -}; - -// Physics events can be logged or immediate. The former are posted to the event queue and the client handler is called -// during PumpLoggedEvents function. The latter are call client handlers immediately when they happen, which is likely -// to be inside the physics thread, so the handler must be thread-safe. -// In most cases, in order to generate events the entity must have the corresponding flag set -// Important Note: Please keep event ids contigous in respect to being stereo or mono events -struct EventPhys -{ - EventPhys* next; - int idval; -}; - -struct EventPhysStereo - : EventPhys // base for two-entity events, ids 0-2 -{ - IPhysicalEntity* pEntity[2]; - PhysicsForeignData pForeignData[2]; - int iForeignData[2]; -}; - -struct EventPhysMono - : EventPhys // base for one-entity events, ids 3-16 -{ - IPhysicalEntity* pEntity; - PhysicsForeignData pForeignData; - int iForeignData; -}; - -struct EventPhysBBoxOverlap - : EventPhysStereo // generated by triggers and parts with geom_log_interactions -{ - enum entype - { - id = 0, flagsCall = 0, flagsLog = 0 - }; - EventPhysBBoxOverlap() { idval = id; } -}; - -enum EventPhysCollisionState -{ - EPC_DEFERRED_INITIAL, EPC_DEFERRED_REQUEUE, EPC_DEFERRED_FINISHED -}; - -struct EventPhysCollision - : EventPhysStereo -{ - enum entype - { - id = 2, flagsCall = pef_monitor_collisions, flagsLog = pef_log_collisions - }; - EventPhysCollision() { idval = id; pEntContact = 0; iPrim[0] = iPrim[1] = -1; deferredState = EPC_DEFERRED_INITIAL; fDecalPlacementTestMaxSize = 1000.f; } - int idCollider; // in addition to pEntity[1] - Vec3 pt; // contact point in world coordinates - Vec3 n; // contact normal - Vec3 vloc[2]; // velocities at the contact point - float mass[2]; - int partid[2]; - short idmat[2]; - short iPrim[2]; - float penetration; // contact's penetration depth - float normImpulse; // impulse applied by the solver to resolve the collision - float radius; // some characteristic size of the contact area - void* pEntContact; // reserved for internal use - char deferredState; // EventPhysCollisionState - char deferredResult; // stores the result returned by the deferred event - float fDecalPlacementTestMaxSize; // maximum allowed size of decals caused by this collision -}; - -struct EventPhysStateChange - : EventPhysMono // triggered by simclass changes, even those caused by SetParams -{ - enum entype - { - id = 8, flagsCall = pef_monitor_state_changes, flagsLog = pef_log_state_changes - }; - EventPhysStateChange() { idval = id; } - int iSimClass[2]; - float timeIdle; // how long the entity stayed without external activation (such as impulses) - Vec3 BBoxOld[2]; - Vec3 BBoxNew[2]; -}; - -struct EventPhysEnvChange - : EventPhysMono // called when something around the entityy breaks -{ - enum entype - { - id = 3, flagsCall = pef_monitor_env_changes, flagsLog = pef_log_env_changes - }; - enum encode - { - EntStructureChange = 0 - }; - EventPhysEnvChange() { idval = id; } - int iCode; - IPhysicalEntity* pentSrc; // entity that broke - IPhysicalEntity* pentNew; // new entity that broke off the original one -}; - -struct EventPhysPostStep - : EventPhysMono // entity has just completed its step -{ - enum entype - { - id = 4, flagsCall = pef_monitor_poststep, flagsLog = pef_log_poststep - }; - EventPhysPostStep() { idval = id; } - float dt; - Vec3 pos; - quaternionf q; - int idStep; // world's internal step count -}; - -struct EventPhysUpdateMesh - : EventPhysMono // physics mesh changed -{ - enum entype - { - id = 5, flagsCall = 1, flagsLog = 2 - }; - enum reason - { - ReasonExplosion, ReasonFracture, ReasonRequest, ReasonDeform - }; - EventPhysUpdateMesh() { idval = id; idx = -1; pMesh = 0; } - int partid; - int bInvalid; - int iReason; // see enum reason - IGeometry* pMesh; // ->GetForeignData(DATA_MESHUPDATE) returns a list of bop_meshupdates - bop_meshupdate* pLastUpdate; // the last mesh update for at moment when the event was generated - Matrix34 mtxSkelToMesh; // skeleton's frame -> mesh's frame transform - IGeometry* pMeshSkel; // for deformable bodies - int idx; // used for event deferring by listeners -}; - -struct EventPhysCreateEntityPart - : EventPhysMono // a part broke off an existing entity -{ - enum entype - { - id = 6, flagsCall = 1, flagsLog = 2 - }; - enum reason - { - ReasonMeshSplit, ReasonJointsBroken - }; - EventPhysCreateEntityPart() { idval = id; idx = -1; } - IPhysicalEntity* pEntNew; // new physical entity (has type PE_RIGID) - int partidSrc; // original part id - int partidNew; // part id assigned to it in the new entity - int nTotParts; // total number of parts that broke off during this update (each will have its own event) - int bInvalid; // generated mesh was invalid (degenerate or flipped) - int iReason; - Vec3 breakImpulse; // impulse that initiated the breaking - Vec3 breakAngImpulse; - Vec3 v; // initial vel of ejected product - Vec3 w; // initial ang vel of ejected product - float breakSize; // if caused by an explosion, the explosion's rmin - float cutRadius; // if updated mesh was successfully approximated with capsules, this is their cross section at the point of breakage - Vec3 cutPtLoc[2]; // the cut's center in both entities' frames - Vec3 cutDirLoc[2]; // the cut area's normal - IGeometry* pMeshNew; // new mesh if was caused by boolean breaking, 0 if by joint breaking (i.e. no new mesh was created) - bop_meshupdate* pLastUpdate; // last meshupdate for the moment the event was reported - int idx; // used for event deferring by listeners -}; - -struct EventPhysRemoveEntityParts - : EventPhysMono -{ - enum entype - { - id = 7, flagsCall = 1, flagsLog = 2 - }; - EventPhysRemoveEntityParts() { idval = id; idOffs = 0; } - unsigned int partIds[4]; // remove parts with ids corresponding to the set bits in partIds[], +idOffs - int idOffs; - float massOrg; // entity's mass before the parts were removed -}; - -struct EventPhysRevealEntityPart - : EventPhysMono -{ - enum entype - { - id = 13, flagsCall = 1, flagsLog = 2 - }; - EventPhysRevealEntityPart() { idval = id; } - int partId; // id of a part that was hidden due to hierarchical breakability, but should be revealed now -}; - -struct EventPhysJointBroken - : EventPhysStereo -{ - enum entype - { - id = 1, flagsCall = 1, flagsLog = 2 - }; - EventPhysJointBroken() { idval = id; } - int idJoint; - int bJoint; // structural joint if 1, dynamics constraint if 0 - int partidEpicenter; // the "seed" part during the update - Vec3 pt; // joint's position in the entity frame - Vec3 n; // joint's z axis - int partid[2]; - int partmat[2]; // material id from the parts' first primitive - IPhysicalEntity* pNewEntity[2]; // only set for broken constraints -}; - -struct EventPhysRWIResult - : EventPhysMono -{ - enum entype - { - id = 9, flagsCall = 0, flagsLog = 0 - }; - EventPhysRWIResult() { idval = id; } - int (* OnEvent)(const EventPhysRWIResult*); - ray_hit* pHits; - int nHits, nMaxHits; - int bHitsFromPool; // 1 if hits reside in the internal physics hits pool -}; - -struct EventPhysPWIResult - : EventPhysMono -{ - enum entype - { - id = 10, flagsCall = 0, flagsLog = 0 - }; - EventPhysPWIResult() { idval = id; } - int (* OnEvent)(const EventPhysPWIResult*); - float dist; - Vec3 pt; - Vec3 n; - int idxMat; - int partId; -}; - -struct EventPhysArea - : EventPhysMono // for callback phys areas -{ - enum entype - { - id = 11, flagsCall = 0, flagsLog = 0 - }; - EventPhysArea() { idval = id; } - - Vec3 pt; // entity's center - Vec3 ptref; // for splines - closest point on spline to pt; for normal areas - area's world position - Vec3 dirref; // for splines, calculated force direction - pe_params_buoyancy pb; // can be filled by the caller - Vec3 gravity; // can be filled by the caller - IPhysicalEntity* pent; // the entity that entered the area and caused this event -}; - -struct EventPhysAreaChange - : EventPhysMono -{ - enum entype - { - id = 12, flagsCall = 0, flagsLog = 0 - }; - EventPhysAreaChange() { idval = id; pContainer = 0; } - - Vec3 boxAffected[2]; - quaternion q; - Vec3 pos; - float depth; - IPhysicalEntity* pContainer; - quaternion qContainer; - Vec3 posContainer; -}; - -struct EventPhysEntityDeleted - : EventPhysMono -{ - enum entype - { - id = 14, flagsCall = 0, flagsLog = 0 - }; - EventPhysEntityDeleted() { idval = id; } - int mode; -}; - -struct EventPhysPostPump - : EventPhys -{ - enum entype - { - id = 15, flagsCall = 0, flagsLog = 0 - }; - EventPhysPostPump() { idval = id; } -}; - -const int EVENT_TYPES_NUM = 16; - -// Physical entity iterator interface. This interface is used to traverse trough all the physical entities in an physical world. In a way, -// this iterator works a lot like a stl iterator. -struct IPhysicalEntityIt -{ - // - virtual ~IPhysicalEntityIt(){} - virtual void AddRef() = 0; - virtual void Release() = 0; // Deletes this iterator and frees any memory it might have allocated. - - virtual bool IsEnd() = 0; // Check whether current iterator position is the end position. - virtual IPhysicalEntity* Next() = 0; // returns the entity that the iterator points to before it goes to the next - virtual IPhysicalEntity* This() = 0; // returns the entity that the iterator points to - virtual void MoveFirst() = 0; // positions the iterator at the begining of the entity list - // -}; - - - -#endif // CRYINCLUDE_CRYCOMMON_PHYSINTERFACE_H diff --git a/Code/Legacy/CryCommon/platform.h b/Code/Legacy/CryCommon/platform.h index 1b541a293e..37f0636c3a 100644 --- a/Code/Legacy/CryCommon/platform.h +++ b/Code/Legacy/CryCommon/platform.h @@ -353,12 +353,6 @@ void SetFlags(T& dest, U flags, bool b) #include AZ_RESTRICTED_FILE(platform_h) #endif -// Include support for meta-type data. -#include "TypeInfo_decl.h" - -// Include array. -#include - bool CrySetFileAttributes(const char* lpFileName, uint32 dwFileAttributes); threadID CryGetCurrentThreadId(); @@ -372,16 +366,6 @@ threadID CryGetCurrentThreadId(); #define __PACKED #endif -// Fallback for Alignment macro of GCC/CLANG (must be after the class definition) -#if !defined(_ALIGN) - #define _ALIGN(num) AZ_POP_DISABLE_WARNING -#endif - -// Fallback for Alignment macro of MSVC (must be before the class definition) -#if !defined(_MS_ALIGN) - #define _MS_ALIGN(num) AZ_PUSH_DISABLE_WARNING(4324, "-Wunknown-warning-option") -#endif - #if defined(AZ_RESTRICTED_PLATFORM) #define AZ_RESTRICTED_SECTION PLATFORM_H_SECTION_13 #include AZ_RESTRICTED_FILE(platform_h) diff --git a/Code/Legacy/CryCommon/platform_impl.cpp b/Code/Legacy/CryCommon/platform_impl.cpp index ecc196a49f..d61bfe6ee4 100644 --- a/Code/Legacy/CryCommon/platform_impl.cpp +++ b/Code/Legacy/CryCommon/platform_impl.cpp @@ -18,6 +18,7 @@ #include #include + // Section dictionary #if defined(AZ_RESTRICTED_PLATFORM) #define PLATFORM_IMPL_H_SECTION_TRAITS 1 @@ -339,7 +340,7 @@ inline void CryDebugStr([[maybe_unused]] const char* format, ...) */ } -_MS_ALIGN(64) uint32 BoxSides[0x40 * 8] = { +alignas(64) uint32 BoxSides[0x40 * 8] = { 0, 0, 0, 0, 0, 0, 0, 0, //00 0, 4, 6, 2, 0, 0, 0, 4, //01 7, 5, 1, 3, 0, 0, 0, 4, //02 diff --git a/Code/Legacy/CryCommon/primitives.h b/Code/Legacy/CryCommon/primitives.h deleted file mode 100644 index e44690a977..0000000000 --- a/Code/Legacy/CryCommon/primitives.h +++ /dev/null @@ -1,294 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef CRYINCLUDE_CRYCOMMON_PRIMITIVES_H -#define CRYINCLUDE_CRYCOMMON_PRIMITIVES_H -#pragma once - - - -typedef int index_t; -enum -{ - PHYS_MAX_INDICES = 1 << 30 -}; - -#include "stridedptr.h" - -namespace primitives { - ////////////////////////// primitives ////////////////////// - - struct primitive - { - }; - - struct box - : primitive - { - enum entype - { - type = 0 - }; - Matrix33 Basis; // v_box = Basis*v_world; Basis = Rotation.T() - int bOriented; - Vec3 center; - Vec3 size; - AUTO_STRUCT_INFO - }; - - struct triangle - : primitive - { - enum entype - { - type = 1 - }; - Vec3 pt[3]; - Vec3 n; - AUTO_STRUCT_INFO - }; - - struct indexed_triangle - : triangle - { - int idx; - AUTO_STRUCT_INFO - }; - - typedef float (* getHeightCallback)(int ix, int iy); - typedef unsigned char (* getSurfTypeCallback)(int ix, int iy); - - struct grid - : primitive - { - Matrix33 Basis; - int bOriented; - Vec3 origin; - vector2df step, stepr; - vector2di size; - vector2di stride; - int bCyclic; - grid() { bCyclic = 0; } - int inrange(int ix, int iy) { return bCyclic | -((ix - size.x & - 1 - ix & iy - size.y & - 1 - iy) >> 31); } - int getcell_safe(int ix, int iy) { int mask = -inrange(ix, iy); return (iy & size.y - 1) * stride.y + (ix & size.x - 1) * stride.x & mask | size.x * size.y & ~mask; } - int crop(int i, int icoord, int bAllowBorder = 1) { int brd = bAllowBorder + (1 << 30 & - bCyclic); return max(-brd, min(size[icoord] - 1 + brd, i)); } - vector2di cropxy(const vector2di& ic, int bAllowBorder = 1) { int brd = bAllowBorder + (1 << 30 & - bCyclic); return vector2di(max(-brd, min(size.x - 1 + brd, ic.x)), max(-brd, min(size.y - 1 + brd, ic.y))); } - int iscyclic() { return bCyclic; } - AUTO_STRUCT_INFO - }; - - struct heightfield - : grid - { - enum entype - { - type = 2 - }; - heightfield& operator=(const heightfield& src) - { - step = src.step; - stepr = src.stepr; - size = src.size; - stride = src.stride; - heightscale = src.heightscale; - typemask = src.typemask; - typehole = src.typehole; - typepower = src.typepower; - fpGetHeightCallback = src.fpGetHeightCallback; - fpGetSurfTypeCallback = src.fpGetSurfTypeCallback; - return *this; - } - - ILINE float getheight(int ix, int iy) const - { - float result = (*fpGetHeightCallback)(ix, iy); - return result * heightscale; - } - ILINE int gettype(int ix, int iy) const - { - int itype = (((*fpGetSurfTypeCallback)(ix, iy)) & typemask) >> typepower, idelta = itype - typehole; - return itype | ((idelta - 1) >> 31 ^ idelta >> 31); - } - - float heightscale; - unsigned short typemask; - int typehole; - int typepower; - getHeightCallback fpGetHeightCallback; - getSurfTypeCallback fpGetSurfTypeCallback; - }; - - struct ray - : primitive - { - enum entype - { - type = 3 - }; - Vec3 origin; - Vec3 dir; - AUTO_STRUCT_INFO - }; - - struct sphere - : primitive - { - enum entype - { - type = 4 - }; - Vec3 center; - float r; - AUTO_STRUCT_INFO - }; - - struct cylinder - : primitive - { - enum entype - { - type = 5 - }; - Vec3 center; - Vec3 axis; - float r, hh; - AUTO_STRUCT_INFO - }; - - struct capsule - : cylinder - { - enum entype - { - type = 6 - }; - AUTO_STRUCT_INFO - }; - - struct grid3d - : primitive - { - Matrix33 Basis; - int bOriented; - Vec3 origin; - Vec3 step, stepr; - Vec3i size; - Vec3i stride; - }; - - struct voxelgrid - : grid3d - { - enum entype - { - type = 7 - }; - Matrix33 R; - Vec3 offset; - float scale, rscale; - strided_pointer pVtx; - index_t* pIndices; - Vec3* pNormals; - char* pIds; - int* pCellTris; - int* pTriBuf; - }; - - struct plane - : primitive - { - enum entype - { - type = 8 - }; - Vec3 n; - Vec3 origin; - AUTO_STRUCT_INFO - }; - - struct coord_plane - : plane - { - Vec3 axes[2]; - AUTO_STRUCT_INFO - }; -} - -AUTO_TYPE_INFO(primitives::getHeightCallback) -AUTO_TYPE_INFO(primitives::getSurfTypeCallback) - -struct prim_inters -{ - prim_inters() { minPtDist2 = 0.0f; ptbest.zero(); } - Vec3 pt[2]; - Vec3 n; - unsigned char iFeature[2][2]; - float minPtDist2; - short id[2]; - int iNode[2]; - Vec3* ptborder; - int nborderpt, nbordersz; - Vec3 ptbest; - int nBestPtVal; -}; - -struct contact -{ - real t, taux; - Vec3 pt; - Vec3 n; - unsigned int iFeature[2]; -}; - -const int NPRIMS = 8; // since plane is currently not supported in collision checks - -///////////////////// geometry contact structures /////////////////// - -struct geom_contact_area -{ - enum entype - { - polygon, polyline - }; - int type; - int npt; - int nmaxpt; - float minedge; - int* piPrim[2]; - int* piFeature[2]; - Vec3* pt; - Vec3 n1; // normal of other object surface (or edge) -}; - -const int IFEAT_LOG2 = 23; -const int IDXMASK = ~(0xFF << IFEAT_LOG2); -const int TRIEND = 0x80 << IFEAT_LOG2; - -struct geom_contact -{ - real t; - Vec3 pt; - Vec3 n; - Vec3 dir; // unprojection direction - int iUnprojMode; - float vel; // original velocity along this direction, <0 if least squares normal was used - int id[2]; // external ids for colliding geometry parts - int iPrim[2]; - int iFeature[2]; - int iNode[2]; // BV-tree nodes of contacting primitives - Vec3* ptborder; // intersection border - int (*idxborder)[2]; // primitive index | primitive's feature's id << IFEAT_LOG2 - int nborderpt; - int bClosed; - Vec3 center; - bool bBorderConsecutive; - geom_contact_area* parea; -}; - -#endif // CRYINCLUDE_CRYCOMMON_PRIMITIVES_H diff --git a/Code/Legacy/CryCommon/smartptr.h b/Code/Legacy/CryCommon/smartptr.h index baf51d5030..ec2b437696 100644 --- a/Code/Legacy/CryCommon/smartptr.h +++ b/Code/Legacy/CryCommon/smartptr.h @@ -146,8 +146,6 @@ public: { std::swap(p, other.p); } - - AUTO_STRUCT_INFO }; template diff --git a/Code/Legacy/CryCommon/stridedptr.h b/Code/Legacy/CryCommon/stridedptr.h deleted file mode 100644 index 8a74aa97b1..0000000000 --- a/Code/Legacy/CryCommon/stridedptr.h +++ /dev/null @@ -1,114 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - - -#ifndef CRYINCLUDE_CRYCOMMON_STRIDEDPTR_H -#define CRYINCLUDE_CRYCOMMON_STRIDEDPTR_H -#pragma once - -#include -#include - -template -class strided_pointer -{ -public: - strided_pointer() - : data(0) - , iStride(sizeof(dtype)) - { - } - - strided_pointer(dtype* pdata, int32 stride = sizeof(dtype)) - : data(pdata) - , iStride(stride) - { - } - - template - strided_pointer(dtype1* pdata) - { - set(pdata, sizeof(dtype1)); - } - - template - strided_pointer(const strided_pointer& src) - { - set(src.data, src.iStride); - } - - template - ILINE strided_pointer& operator=(const strided_pointer& src) - { - set(src.data, src.iStride); - return *this; - } - - ILINE dtype& operator[](int32 idx) { return *(dtype*)((char*)data + idx * iStride); } - ILINE const dtype& operator[](int32 idx) const { return *(const dtype*)((const char*)data + idx * iStride); } - ILINE strided_pointer operator+(int32 idx) const { return strided_pointer((dtype*)((char*)data + idx * iStride), iStride); } - ILINE strided_pointer operator-(int32 idx) const { return strided_pointer((dtype*)((char*)data - idx * iStride), iStride); } - - ILINE operator bool() const - { - return data != 0; - } - -private: - template - ILINE void set(dtype1* pdata, int32 stride) - { -# if !defined(eLittleEndian) -# error eLittleEndian is not defined, please include CryEndian.h. -# endif - static_assert(metautils::is_const::value || !metautils::is_const::value); - // note: we allow xint32 -> xint16 converting - static_assert( - (metautils::is_same::type, typename metautils::remove_const::type>::value || - ((metautils::is_same::type, sint32>::value || - metautils::is_same::type, uint32>::value || - metautils::is_same::type, sint16>::value || - metautils::is_same::type, uint16>::value) && - (metautils::is_same::type, sint16>::value || - metautils::is_same::type, uint16>::value)))); - data = (dtype*)pdata + (sizeof(dtype1) / sizeof(dtype) - 1) * (int)eLittleEndian; - iStride = stride; - } - -private: - // Prevents assignment of a structure member's address by mistake: - // stridedPtrObject = &myStruct.member; - // Use explicit constructor instead: - // stridedPtrObject = strided_pointer(&myStruct.member, sizeof(myStruct)); - // - // Keep it private and non-implemented. - strided_pointer& operator=(dtype* pdata); - - // Prevents using the address directly by mistake: - // memcpy(destination, stridedPtrObject, sizeof(baseType) * n); - // Use address of the first element instead: - // memcpy(destination, &stridedPtrObject[0], stridedPtrObject.iStride * n); - // - // Keep it private and non-implemented. - operator void*() const; - - // Prevents direct dereferencing to avoid confusing it with "normal" pointers: - // val = *stridedPtrObject; - // Use operator [] instead: - // val = stridedPtrObject[0]; - // - // Keep it private and non-implemented. - dtype& operator*() const; - -public: - dtype* data; - int32 iStride; -}; - - -#endif // CRYINCLUDE_CRYCOMMON_STRIDEDPTR_H diff --git a/Code/Legacy/CrySystem/AZCoreLogSink.h b/Code/Legacy/CrySystem/AZCoreLogSink.h index d9e815841c..e824c4c172 100644 --- a/Code/Legacy/CrySystem/AZCoreLogSink.h +++ b/Code/Legacy/CrySystem/AZCoreLogSink.h @@ -51,10 +51,10 @@ public: static bool IsCryLogReady() { - static bool hasSetCVar = false; bool ready = gEnv && gEnv->pSystem && gEnv->pLog; #ifdef _RELEASE + static bool hasSetCVar = false; if(!hasSetCVar && ready) { // AZ logging only has a concept of 3 levels (error, warning, info) but cry logging has 4 levels (..., messaging). If info level is set, we'll turn on messaging as well diff --git a/Code/Legacy/CrySystem/CMakeLists.txt b/Code/Legacy/CrySystem/CMakeLists.txt index 57e33c4cc0..9e1cf92267 100644 --- a/Code/Legacy/CrySystem/CMakeLists.txt +++ b/Code/Legacy/CrySystem/CMakeLists.txt @@ -6,6 +6,8 @@ # # +ly_get_list_relative_pal_filename(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME}) + add_subdirectory(XML) ly_add_target( @@ -13,9 +15,13 @@ ly_add_target( NAMESPACE Legacy FILES_CMAKE crysystem_files.cmake + ${pal_dir}/platform_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake # Required for restricted platforms + PLATFORM_INCLUDE_FILES + ${pal_dir}/platform_${PAL_PLATFORM_NAME_LOWERCASE}.cmake # Required for restricted platforms INCLUDE_DIRECTORIES PUBLIC . + ${pal_dir} # Required for restricted platforms BUILD_DEPENDENCIES PRIVATE 3rdParty::expat diff --git a/Code/Legacy/CrySystem/ConsoleBatchFile.cpp b/Code/Legacy/CrySystem/ConsoleBatchFile.cpp index 3d46716873..d3a0ccf4de 100644 --- a/Code/Legacy/CrySystem/ConsoleBatchFile.cpp +++ b/Code/Legacy/CrySystem/ConsoleBatchFile.cpp @@ -87,7 +87,7 @@ bool CConsoleBatchFile::ExecuteConfigFile(const char* sFilename) CCryFile file; { - const char* szLog = "Executing console batch file (try game,config,root):"; + [[maybe_unused]] const char* szLog = "Executing console batch file (try game,config,root):"; AZStd::string filenameLog; AZStd::string sfn = PathUtil::GetFile(filename); diff --git a/Code/Legacy/CrySystem/CrySystem_precompiled.h b/Code/Legacy/CrySystem/CrySystem_precompiled.h index daf1c335e4..79fbbd92be 100644 --- a/Code/Legacy/CrySystem/CrySystem_precompiled.h +++ b/Code/Legacy/CrySystem/CrySystem_precompiled.h @@ -99,7 +99,6 @@ inline int RoundToClosestMB(size_t memSize) #include #include #include -#include #include #include #include diff --git a/Code/Legacy/CrySystem/DebugCallStack.cpp b/Code/Legacy/CrySystem/DebugCallStack.cpp index cdfc5de21e..bea6c8c035 100644 --- a/Code/Legacy/CrySystem/DebugCallStack.cpp +++ b/Code/Legacy/CrySystem/DebugCallStack.cpp @@ -284,7 +284,7 @@ int DebugCallStack::handleException(EXCEPTION_POINTERS* exception_pointer) char excAddr[80]; WriteLineToLog(""); sprintf_s(excAddr, "0x%04X:0x%p", exception_pointer->ContextRecord->SegCs, exception_pointer->ExceptionRecord->ExceptionAddress); - sprintf_s(excCode, "0x%08X", exception_pointer->ExceptionRecord->ExceptionCode); + sprintf_s(excCode, "0x%08lX", exception_pointer->ExceptionRecord->ExceptionCode); WriteLineToLog("Exception: %s, at Address: %s", excCode, excAddr); } @@ -445,7 +445,7 @@ void DebugCallStack::LogExceptionInfo(EXCEPTION_POINTERS* pex) else { sprintf_s(excAddr, "0x%04X:0x%p", pex->ContextRecord->SegCs, pex->ExceptionRecord->ExceptionAddress); - sprintf_s(excCode, "0x%08X", pex->ExceptionRecord->ExceptionCode); + sprintf_s(excCode, "0x%08lX", pex->ExceptionRecord->ExceptionCode); excName = TranslateExceptionCode(pex->ExceptionRecord->ExceptionCode); azstrcpy(desc, AZ_ARRAY_SIZE(desc), ""); sprintf_s(excDesc, "%s\r\n%s", excName, desc); diff --git a/Code/Legacy/CrySystem/LevelSystem/LevelSystem.cpp b/Code/Legacy/CrySystem/LevelSystem/LevelSystem.cpp index bb2f36e69c..fe87c3f784 100644 --- a/Code/Legacy/CrySystem/LevelSystem/LevelSystem.cpp +++ b/Code/Legacy/CrySystem/LevelSystem/LevelSystem.cpp @@ -16,6 +16,7 @@ #include "CryPath.h" #include +#include #include #include @@ -45,8 +46,6 @@ void CLevelInfo::GetMemoryUsage(ICrySizer* pSizer) const ////////////////////////////////////////////////////////////////////////// bool CLevelInfo::OpenLevelPak() { - LOADING_TIME_PROFILE_SECTION; - bool usePrefabSystemForLevels = false; AzFramework::ApplicationRequests::Bus::BroadcastResult( usePrefabSystemForLevels, &AzFramework::ApplicationRequests::IsPrefabSystemForLevelsEnabled); @@ -69,8 +68,6 @@ bool CLevelInfo::OpenLevelPak() ////////////////////////////////////////////////////////////////////////// void CLevelInfo::CloseLevelPak() { - LOADING_TIME_PROFILE_SECTION; - bool usePrefabSystemForLevels = false; AzFramework::ApplicationRequests::Bus::BroadcastResult( usePrefabSystemForLevels, &AzFramework::ApplicationRequests::IsPrefabSystemForLevelsEnabled); @@ -190,7 +187,6 @@ CLevelSystem::CLevelSystem(ISystem* pSystem, const char* levelsFolder) , m_pCurrentLevel(0) , m_pLoadingLevelInfo(0) { - LOADING_TIME_PROFILE_SECTION; CRY_ASSERT(pSystem); //if (!gEnv->IsEditor()) @@ -297,8 +293,6 @@ void CLevelSystem::ScanFolder(const char* subfolder, bool modFolder) AZStd::unordered_set pakList; - const bool allowFileSystem = true; - const uint32_t skipPakFiles = 1; AZ::IO::ArchiveFileIterator handle = pPak->FindFirst(search.c_str(), AZ::IO::IArchive::eFileSearchType_AllowOnDiskOnly); if (handle) @@ -566,8 +560,6 @@ ILevel* CLevelSystem::LoadLevelInternal(const char* _levelName) // Not remove a scope!!! { - LOADING_TIME_PROFILE_SECTION; - //m_levelLoadStartTime = gEnv->pTimer->GetAsyncTime(); CLevelInfo* pLevelInfo = GetLevelInfoInternal(levelName); @@ -582,7 +574,6 @@ ILevel* CLevelSystem::LoadLevelInternal(const char* _levelName) m_bLevelLoaded = false; - const bool bLoadingSameLevel = azstricmp(m_lastLevelName.c_str(), levelName) == 0; m_lastLevelName = levelName; delete m_pCurrentLevel; @@ -746,8 +737,6 @@ void CLevelSystem::OnLoadingStart(const char* levelName) GetISystem()->GetISystemEventDispatcher()->OnSystemEvent(ESYSTEM_EVENT_LEVEL_LOAD_START, 0, 0); - LOADING_TIME_PROFILE_SECTION(gEnv->pSystem); - for (AZStd::vector::const_iterator it = m_listeners.begin(); it != m_listeners.end(); ++it) { (*it)->OnLoadingStart(levelName); diff --git a/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp b/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp index b37b257f5b..72d74ea1c1 100644 --- a/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp +++ b/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp @@ -55,10 +55,8 @@ namespace LegacyLevelSystem AZ_CONSOLEFREEFUNC(UnloadLevel, AZ::ConsoleFunctorFlags::Null, "Unloads the current level"); //------------------------------------------------------------------------ - SpawnableLevelSystem::SpawnableLevelSystem(ISystem* pSystem) - : m_pSystem(pSystem) + SpawnableLevelSystem::SpawnableLevelSystem([[maybe_unused]] ISystem* pSystem) { - LOADING_TIME_PROFILE_SECTION; CRY_ASSERT(pSystem); m_fLastLevelLoadTime = 0; @@ -248,8 +246,6 @@ namespace LegacyLevelSystem // This scope is specifically used for marking a loading time profile section { - LOADING_TIME_PROFILE_SECTION; - m_bLevelLoaded = false; m_lastLevelName = levelName; gEnv->pConsole->SetScrollMax(600); @@ -388,8 +384,6 @@ namespace LegacyLevelSystem GetISystem()->GetISystemEventDispatcher()->OnSystemEvent(ESYSTEM_EVENT_LEVEL_LOAD_START, 0, 0); - LOADING_TIME_PROFILE_SECTION(gEnv->pSystem); - for (auto& listener : m_listeners) { listener->OnLoadingStart(levelName); diff --git a/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.h b/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.h index 858a0b24f0..0a7b821262 100644 --- a/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.h +++ b/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.h @@ -66,8 +66,6 @@ class SpawnableLevelSystem void LogLoadingTime(); - ISystem* m_pSystem{nullptr}; - AZStd::string m_lastLevelName; float m_fLastLevelLoadTime{0.0f}; float m_fLastTime{0.0f}; diff --git a/Code/Legacy/CrySystem/LocalizedStringManager.cpp b/Code/Legacy/CrySystem/LocalizedStringManager.cpp index db77eda3e8..365c71252c 100644 --- a/Code/Legacy/CrySystem/LocalizedStringManager.cpp +++ b/Code/Legacy/CrySystem/LocalizedStringManager.cpp @@ -20,18 +20,23 @@ #include "System.h" // to access InitLocalization() #include #include +#include #include #include #include #include #include +#include #define MAX_CELL_COUNT 32 // CVAR names +#if !defined(_RELEASE) const char c_sys_localization_debug[] = "sys_localization_debug"; const char c_sys_localization_encode[] = "sys_localization_encode"; +#endif // !defined(_RELEASE) + #define LOC_WINDOW "Localization" const char c_sys_localization_format[] = "sys_localization_format"; @@ -209,7 +214,7 @@ CLocalizedStringsManager::CLocalizedStringsManager(ISystem* pSystem) AZStd::string sPath; const AZStd::string sLocalizationFolder(PathUtil::GetLocalizationFolder()); ILocalizationManager::TLocalizationBitfield availableLanguages = 0; - + AZ::IO::FileIOBase* fileIO = AZ::IO::FileIOBase::GetInstance(); // test language name against supported languages for (int i = 0; i < ILocalizationManager::ePILID_MAX_OR_INVALID; i++) @@ -872,7 +877,6 @@ inline YesNoType ToYesNoType(const char* szString) // Loads a string-table from a Excel XML Spreadsheet file. bool CLocalizedStringsManager::DoLoadExcelXmlSpreadsheet(const char* sFileName, uint8 nTagID, bool bReload) { - LOADING_TIME_PROFILE_SECTION_ARGS(sFileName) if (!m_pLanguage) { return false; @@ -1319,7 +1323,7 @@ bool CLocalizedStringsManager::DoLoadExcelXmlSpreadsheet(const char* sFileName, } //Compute the CRC32 of the key - keyCRC = CCrc32::Compute(szLowerCaseKey); + keyCRC = AZ::Crc32(szLowerCaseKey); if (m_cvarLocalizationDebug >= 3) { CryLogAlways(" CRC32: 0x%8X, Key: %s", keyCRC, szLowerCaseKey); @@ -1507,7 +1511,7 @@ bool CLocalizedStringsManager::DoLoadExcelXmlSpreadsheet(const char* sFileName, if (m_cvarLocalizationEncode == 1) { pEncoder->Finalize(); - + { uint8 compressionBuffer[COMPRESSION_FIXED_BUFFER_LENGTH]; //uint8 decompressionBuffer[COMPRESSION_FIXED_BUFFER_LENGTH]; @@ -1647,7 +1651,7 @@ bool CLocalizedStringsManager::DoLoadAGSXmlDocument(const char* sFileName, uint8 } lowerKey = keyString; AZStd::to_lower(lowerKey.begin(), lowerKey.end()); - keyCRC = CCrc32::Compute(lowerKey.c_str()); + keyCRC = AZ::Crc32(lowerKey); if (m_cvarLocalizationDebug >= 3) { CryLogAlways(" CRC32: 0%8X, Key: %s", keyCRC, lowerKey.c_str()); @@ -1753,9 +1757,9 @@ void CLocalizedStringsManager::ReloadData() void CLocalizedStringsManager::AddLocalizedString(SLanguage* pLanguage, SLocalizedStringEntry* pEntry, const uint32 keyCRC32) { pLanguage->m_vLocalizedStrings.push_back(pEntry); - int nId = (int)pLanguage->m_vLocalizedStrings.size() - 1; + [[maybe_unused]] int nId = (int)pLanguage->m_vLocalizedStrings.size() - 1; pLanguage->m_keysMap[keyCRC32] = pEntry; - + if (m_cvarLocalizationDebug >= 2) { CryLog(" Add new string <%u> with ID %d to <%s>", keyCRC32, nId, pLanguage->sLanguage.c_str()); @@ -1861,7 +1865,7 @@ void CLocalizedStringsManager::LocalizeAndSubstituteInternal(AZStd::string& locS startIndex += substituteOut.length(); } startIndex = locString.find_first_of('{', startIndex); - endIndex = locString.find_first_of('}', startIndex); + endIndex = locString.find_first_of('}', startIndex); } } #if defined(LOG_DECOMP_TIMES) @@ -1899,7 +1903,6 @@ static void LogDecompTimer(__int64 nTotalTicks, __int64 nDecompTicks, __int64 nA AZStd::string CLocalizedStringsManager::SLocalizedStringEntry::GetTranslatedText(const SLanguage* pLanguage) const { - FUNCTION_PROFILER_FAST(GetISystem(), PROFILE_SYSTEM, g_bProfilerEnabled); if ((flags & IS_COMPRESSED) != 0) { #if defined(LOG_DECOMP_TIMES) @@ -1926,11 +1929,9 @@ AZStd::string CLocalizedStringsManager::SLocalizedStringEntry::GetTranslatedText #endif //LOG_DECOMP_TIMES #if !defined(NDEBUG) - size_t len = -#endif - strnlen((const char*)decompressionBuffer, COMPRESSION_FIXED_BUFFER_LENGTH); + size_t len = strnlen((const char*)decompressionBuffer, COMPRESSION_FIXED_BUFFER_LENGTH); assert(len < COMPRESSION_FIXED_BUFFER_LENGTH && "Buffer not null-terminated"); - +#endif #if defined(LOG_DECOMP_TIMES) nAllocTicks = CryGetTicks(); @@ -2003,7 +2004,7 @@ bool CLocalizedStringsManager::LocalizeLabel(const char* sLabel, AZStd::string& // Label sign. if (sLabel[0] == '@') { - uint32 labelCRC32 = CCrc32::ComputeLowercase(sLabel + 1); // skip @ character. + uint32 labelCRC32 = AZ::Crc32(sLabel + 1); // skip @ character. { AutoLock lock(m_cs); //Lock here, to prevent strings etc being modified underneath this lookup SLocalizedStringEntry* entry = stl::find_in_map(m_pLanguage->m_keysMap, labelCRC32, NULL); @@ -2052,10 +2053,10 @@ bool CLocalizedStringsManager::GetEnglishString(const char* sKey, AZStd::string& // Label sign. if (sKey[0] == '@') { - uint32 keyCRC32 = CCrc32::ComputeLowercase(sKey + 1); + uint32 keyCRC32 = AZ::Crc32(sKey + 1); { - AutoLock lock(m_cs); //Lock here, to prevent strings etc being modified underneath this lookup - SLocalizedStringEntry* entry = stl::find_in_map(m_pLanguage->m_keysMap, keyCRC32, NULL); // skip @ character. + AutoLock lock(m_cs); // Lock here, to prevent strings etc being modified underneath this lookup + SLocalizedStringEntry* entry = stl::find_in_map(m_pLanguage->m_keysMap, keyCRC32, NULL); // skip @ character. if (entry != NULL && entry->pEditorExtension != NULL) { sLocalizedString = entry->pEditorExtension->sOriginalText; @@ -2063,7 +2064,7 @@ bool CLocalizedStringsManager::GetEnglishString(const char* sKey, AZStd::string& } else { - keyCRC32 = CCrc32::ComputeLowercase(sKey); + keyCRC32 = AZ::Crc32(sKey); entry = stl::find_in_map(m_pLanguage->m_keysMap, keyCRC32, NULL); if (entry != NULL && entry->pEditorExtension != NULL) { @@ -2081,7 +2082,8 @@ bool CLocalizedStringsManager::GetEnglishString(const char* sKey, AZStd::string& } else { - // CryWarning( VALIDATOR_MODULE_SYSTEM,VALIDATOR_WARNING,"Not a valid localized string Label <%s>, must start with @ symbol", sKey ); + // CryWarning( VALIDATOR_MODULE_SYSTEM,VALIDATOR_WARNING,"Not a valid localized string Label <%s>, must start with @ symbol", sKey + // ); } sLocalizedString = sKey; @@ -2094,7 +2096,7 @@ bool CLocalizedStringsManager::IsLocalizedInfoFound(const char* sKey) { return false; } - uint32 keyCRC32 = CCrc32::ComputeLowercase(sKey); + uint32 keyCRC32 = AZ::Crc32(sKey); { AutoLock lock(m_cs); //Lock here, to prevent strings etc being modified underneath this lookup const SLocalizedStringEntry* entry = stl::find_in_map(m_pLanguage->m_keysMap, keyCRC32, NULL); @@ -2110,7 +2112,7 @@ bool CLocalizedStringsManager::GetLocalizedInfoByKey(const char* sKey, SLocalize return false; } - uint32 keyCRC32 = CCrc32::ComputeLowercase(sKey); + uint32 keyCRC32 = AZ::Crc32(sKey); { AutoLock lock(m_cs); //Lock here, to prevent strings etc being modified underneath this lookup const SLocalizedStringEntry* entry = stl::find_in_map(m_pLanguage->m_keysMap, keyCRC32, NULL); @@ -2141,7 +2143,7 @@ bool CLocalizedStringsManager::GetLocalizedInfoByKey(const char* sKey, SLocalize bool bResult = false; - uint32 keyCRC32 = CCrc32::ComputeLowercase(sKey); + uint32 keyCRC32 = AZ::Crc32(sKey); { AutoLock lock(m_cs); //Lock here, to prevent strings etc being modified underneath this lookup const SLocalizedStringEntry* pEntry = stl::find_in_map(m_pLanguage->m_keysMap, keyCRC32, NULL); @@ -2294,7 +2296,7 @@ bool CLocalizedStringsManager::GetSubtitle(const char* sKeyOrLabel, AZStd::strin ++sKeyOrLabel; } - uint32 keyCRC32 = CCrc32::ComputeLowercase(sKeyOrLabel); + uint32 keyCRC32 = AZ::Crc32(sKeyOrLabel); { AutoLock lock(m_cs); //Lock here, to prevent strings etc being modified underneath this lookup const SLocalizedStringEntry* pEntry = stl::find_in_map(m_pLanguage->m_keysMap, keyCRC32, NULL); @@ -2458,7 +2460,7 @@ namespace { "nl-NL", 0x0413 }, // Dutch (The Netherlands) { "fi-FI", 0x040b }, // Finnish { "sv-SE", 0x041d }, // Swedish - { "cs-CZ", 0x0405 }, // Czech + { "cs-CZ", 0x0405 }, // Czech { "no-NO", 0x0414 }, // Norwegian (Norway) { "ar-SA", 0x0401 }, // Arabic (Saudi Arabia) { "da-DK", 0x0406 }, // Danish (Denmark) diff --git a/Code/Legacy/CrySystem/LocalizedStringManager.h b/Code/Legacy/CrySystem/LocalizedStringManager.h index 283eaa79bf..1fba05f9ac 100644 --- a/Code/Legacy/CrySystem/LocalizedStringManager.h +++ b/Code/Legacy/CrySystem/LocalizedStringManager.h @@ -10,9 +10,11 @@ #pragma once #include +#include #include #include #include +#include #include "Huffman.h" @@ -153,9 +155,9 @@ private: CryHalf fVolume; CryHalf fRadioRatio; // SoundMoods - DynArray SoundMoods; + AZStd::vector SoundMoods; // EventParameters - DynArray EventParameters; + AZStd::vector EventParameters; // ~audio specific part // subtitle & radio flags @@ -312,5 +314,3 @@ private: mutable AZStd::mutex m_cs; typedef AZStd::lock_guard AutoLock; }; - - diff --git a/Code/Legacy/CrySystem/Log.cpp b/Code/Legacy/CrySystem/Log.cpp index be2816c890..68b9621f74 100644 --- a/Code/Legacy/CrySystem/Log.cpp +++ b/Code/Legacy/CrySystem/Log.cpp @@ -44,7 +44,7 @@ namespace LogCVars int max_backup_directory_size_mb = 200; //200MB default }; -#ifndef _RELEASE +#if defined(SUPPORT_LOG_IDENTER) static CLog::LogStringType indentString (" "); #endif @@ -396,8 +396,6 @@ void CLog::LogV(const ELogType type, [[maybe_unused]]int flags, const char* szFo } } - FUNCTION_PROFILER(GetISystem(), PROFILE_SYSTEM); - LOADING_TIME_PROFILE_SECTION(GetISystem()); bool bfile = false, bconsole = false; const char* szCommand = szFormat; @@ -444,8 +442,6 @@ void CLog::LogV(const ELogType type, [[maybe_unused]]int flags, const char* szFo return; } - LogStringType tempString; - char szBuffer[MAX_WARNING_LENGTH + 32]; char* szString = szBuffer; char* szAfterColour = szString; @@ -575,8 +571,6 @@ void CLog::LogPlus(const char* szFormat, ...) return; } - LOADING_TIME_PROFILE_SECTION(GetISystem()); - if (!szFormat) { return; @@ -750,7 +744,7 @@ void CLog::LogToConsolePlus(const char* szFormat, ...) ////////////////////////////////////////////////////////////////////// -static void RemoveColorCodeInPlace(CLog::LogStringType& rStr) +[[maybe_unused]] static void RemoveColorCodeInPlace(CLog::LogStringType& rStr) { char* s = (char*)rStr.c_str(); char* d = s; @@ -1189,7 +1183,6 @@ void CLog::LogToFile(const char* szFormat, ...) ////////////////////////////////////////////////////////////////////// void CLog::CreateBackupFile() const { - LOADING_TIME_PROFILE_SECTION; if (!m_backupLogs) { return; @@ -1297,7 +1290,7 @@ void CLog::CheckAndPruneBackupLogs() const AZStd::list fileInfoList; // Now that we've copied the new log over, lets check the size of the backup folder and trim it as necessary to keep it within appropriate limits - AZ::IO::Result res = fileSystem->FindFiles(LOG_BACKUP_PATH, "*", + fileSystem->FindFiles(LOG_BACKUP_PATH, "*", [&totalBackupDirectorySize, &fileSystem, &fileInfoList](const char* fileName) { AZ::u64 size; @@ -1445,8 +1438,6 @@ void CLog::RemoveCallback(ILogCallback* pCallback) ////////////////////////////////////////////////////////////////////////// void CLog::Update() { - FUNCTION_PROFILER_FAST(m_pSystem, PROFILE_SYSTEM, g_bProfilerEnabled); - if (CryGetCurrentThreadId() == m_nMainThreadId) { if (!m_threadSafeMsgQueue.empty()) diff --git a/Code/Legacy/CrySystem/Platform/Android/platform_android.cmake b/Code/Legacy/CrySystem/Platform/Android/platform_android.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CrySystem/Platform/Android/platform_android.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CrySystem/Platform/Android/platform_android_files.cmake b/Code/Legacy/CrySystem/Platform/Android/platform_android_files.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CrySystem/Platform/Android/platform_android_files.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CrySystem/Platform/Linux/platform_linux.cmake b/Code/Legacy/CrySystem/Platform/Linux/platform_linux.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CrySystem/Platform/Linux/platform_linux.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CrySystem/Platform/Linux/platform_linux_files.cmake b/Code/Legacy/CrySystem/Platform/Linux/platform_linux_files.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CrySystem/Platform/Linux/platform_linux_files.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CrySystem/Platform/Mac/platform_mac.cmake b/Code/Legacy/CrySystem/Platform/Mac/platform_mac.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CrySystem/Platform/Mac/platform_mac.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CrySystem/Platform/Mac/platform_mac_files.cmake b/Code/Legacy/CrySystem/Platform/Mac/platform_mac_files.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CrySystem/Platform/Mac/platform_mac_files.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CrySystem/Platform/Windows/platform_windows.cmake b/Code/Legacy/CrySystem/Platform/Windows/platform_windows.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CrySystem/Platform/Windows/platform_windows.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CrySystem/Platform/Windows/platform_windows_files.cmake b/Code/Legacy/CrySystem/Platform/Windows/platform_windows_files.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CrySystem/Platform/Windows/platform_windows_files.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CrySystem/Platform/iOS/platform_ios.cmake b/Code/Legacy/CrySystem/Platform/iOS/platform_ios.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CrySystem/Platform/iOS/platform_ios.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CrySystem/Platform/iOS/platform_ios_files.cmake b/Code/Legacy/CrySystem/Platform/iOS/platform_ios_files.cmake new file mode 100644 index 0000000000..7a325ca97e --- /dev/null +++ b/Code/Legacy/CrySystem/Platform/iOS/platform_ios_files.cmake @@ -0,0 +1,7 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# diff --git a/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.h b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.h index f6c59a384a..23edafa736 100644 --- a/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.h +++ b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.h @@ -11,8 +11,9 @@ #define CRYINCLUDE_CRYSYSTEM_REMOTECONSOLE_REMOTECONSOLE_H #pragma once -#include -#include +#include +#include +#include #if !defined(RELEASE) || defined(RELEASE_LOGGING) || defined(ENABLE_PROFILING_CODE) #define USE_REMOTE_CONSOLE diff --git a/Code/Legacy/CrySystem/SimpleStringPool.h b/Code/Legacy/CrySystem/SimpleStringPool.h index d1a618425c..13be471f9e 100644 --- a/Code/Legacy/CrySystem/SimpleStringPool.h +++ b/Code/Legacy/CrySystem/SimpleStringPool.h @@ -12,7 +12,7 @@ #pragma once #include "ISystem.h" - +#include #include //TODO: Pull most of this into a cpp file! @@ -265,23 +265,6 @@ public: return ret; } - void GetMemoryUsage(ICrySizer* pSizer) const - { - BLOCK* pBlock = m_blocks; - while (pBlock) - { - pSizer->AddObject(pBlock, offsetof(BLOCK, s) + pBlock->size * sizeof(char)); - pBlock = pBlock->next; - } - - pBlock = m_free_blocks; - while (pBlock) - { - pSizer->AddObject(pBlock, offsetof(BLOCK, s) + pBlock->size * sizeof(char)); - pBlock = pBlock->next; - } - } - private: CSimpleStringPool(const CSimpleStringPool&); CSimpleStringPool& operator = (const CSimpleStringPool&); diff --git a/Code/Legacy/CrySystem/System.cpp b/Code/Legacy/CrySystem/System.cpp index d848160b3e..0f0a62f8c6 100644 --- a/Code/Legacy/CrySystem/System.cpp +++ b/Code/Legacy/CrySystem/System.cpp @@ -19,12 +19,17 @@ #include "CryLibrary.h" #include #include +#include +#include #include #include #include +#include +#include #include #include #include +#include #include #include #include @@ -164,60 +169,6 @@ SSystemCVars g_cvars; #include #include "AZCoreLogSink.h" -#if defined(ANDROID) -namespace -{ - struct Callstack - { - Callstack() - : addrs(NULL) - , ignore(0) - , count(0) - { - } - Callstack(void** addrs, size_t ignore, size_t count) - { - this->addrs = addrs; - this->ignore = ignore; - this->count = count; - } - void** addrs; - size_t ignore; - size_t count; - }; - - static _Unwind_Reason_Code trace_func(struct _Unwind_Context* context, void* arg) - { - Callstack* cs = static_cast(arg); - if (cs->count) - { - void* ip = (void*) _Unwind_GetIP(context); - if (ip) - { - if (cs->ignore) - { - cs->ignore--; - } - else - { - cs->addrs[0] = ip; - cs->addrs++; - cs->count--; - } - } - } - return _URC_NO_REASON; - } - - static int Backtrace(void** addrs, size_t ignore, size_t size) - { - Callstack cs(addrs, ignore, size); - _Unwind_Backtrace(trace_func, (void*) &cs); - return size - cs.count; - } -} -#endif - ///////////////////////////////////////////////////////////////////////////////// // System Implementation. ////////////////////////////////////////////////////////////////////////// @@ -255,7 +206,6 @@ CSystem::CSystem(SharedEnvironmentInstance* pSharedEnvironment) // Initialize global environment interface pointers. m_env.pSystem = this; m_env.pTimer = &m_Time; - m_env.pNameTable = &m_nameTable; m_env.bIgnoreAllAsserts = false; m_env.bNoAssertDialog = false; @@ -659,8 +609,6 @@ ISystem* CSystem::GetCrySystem() ////////////////////////////////////////////////////////////////////////// void CSystem::SleepIfNeeded() { - FUNCTION_PROFILER_FAST(this, PROFILE_SYSTEM, g_bProfilerEnabled); - ITimer* const pTimer = gEnv->pTimer; static bool firstCall = true; @@ -695,7 +643,7 @@ void CSystem::SleepIfNeeded() allowStallCatchup = true; float totalElapsed = (now - prevNow.Front()).GetSeconds(); - float wantSleepTime = CLAMP(minTime * (prevNow.Size() - 1) - totalElapsed, 0, (minTime - elapsed) * 0.9f); + float wantSleepTime = AZStd::clamp(minTime * (prevNow.Size() - 1) - totalElapsed, 0.0f, (minTime - elapsed) * 0.9f); static float sleepTime = 0; sleepTime = (15 * sleepTime + wantSleepTime) / 16; int sleepMS = (int)(1000.0f * sleepTime + 0.5f); @@ -738,7 +686,6 @@ bool CSystem::UpdatePreTickBus(int updateFlags, int nPauseMode) _mm_setcsr(_mm_getcsr() & ~0x280 | (g_cvars.sys_float_exceptions > 0 ? 0 : 0x280)); #endif //WIN32 - FUNCTION_PROFILER_LEGACYONLY(GetISystem(), PROFILE_SYSTEM); AZ_TRACE_METHOD(); m_nUpdateCounter++; @@ -832,8 +779,6 @@ bool CSystem::UpdatePreTickBus(int updateFlags, int nPauseMode) //limit frame rate if vsync is turned off //for consoles this is done inside renderthread to be vsync dependent { - FRAME_PROFILER_LEGACYONLY("FRAME_CAP", gEnv->pSystem, PROFILE_SYSTEM); - AZ_TRACE_METHOD_NAME("FrameLimiter"); static ICVar* pSysMaxFPS = NULL; static ICVar* pVSync = NULL; @@ -882,7 +827,6 @@ bool CSystem::UpdatePreTickBus(int updateFlags, int nPauseMode) //update console system if (m_env.pConsole) { - FRAME_PROFILER("SysUpdate:Console", this, PROFILE_SYSTEM); m_env.pConsole->Update(); } @@ -898,7 +842,6 @@ bool CSystem::UpdatePreTickBus(int updateFlags, int nPauseMode) // Run movie system pre-update if (!bNoUpdate) { - FRAME_PROFILER("SysUpdate:UpdateMovieSystem", this, PROFILE_SYSTEM); UpdateMovieSystem(updateFlags, fMovieFrameTime, true); } @@ -914,7 +857,6 @@ bool CSystem::UpdatePostTickBus(int updateFlags, int /*nPauseMode*/) if (!m_bNoUpdate) { const float fMovieFrameTime = m_Time.GetFrameTime(ITimer::ETIMER_UI); - FRAME_PROFILER("SysUpdate:UpdateMovieSystem", this, PROFILE_SYSTEM); UpdateMovieSystem(updateFlags, fMovieFrameTime, false); } @@ -922,7 +864,6 @@ bool CSystem::UpdatePostTickBus(int updateFlags, int /*nPauseMode*/) // Update sound system if (!m_bNoUpdate) { - FRAME_PROFILER("SysUpdate:UpdateAudioSystems", this, PROFILE_SYSTEM); UpdateAudioSystems(); } @@ -949,10 +890,7 @@ bool CSystem::UpdatePostTickBus(int updateFlags, int /*nPauseMode*/) m_updateTimes.push_back(std::make_pair(cur_time, updateTime)); } - { - FRAME_PROFILER("SysUpdate - SystemEventDispatcher::Update", this, PROFILE_SYSTEM); - m_pSystemEventDispatcher->Update(); - } + m_pSystemEventDispatcher->Update(); if (!gEnv->IsEditing() && m_eRuntimeState == ESYSTEM_EVENT_LEVEL_GAMEPLAY_START) { @@ -973,8 +911,6 @@ bool CSystem::UpdateLoadtime() void CSystem::UpdateAudioSystems() { - AZ_TRACE_METHOD(); - FRAME_PROFILER_LEGACYONLY("SysUpdate:Audio", this, PROFILE_SYSTEM); Audio::AudioSystemRequestBus::Broadcast(&Audio::AudioSystemRequestBus::Events::ExternalUpdate); } @@ -1044,15 +980,12 @@ IXmlUtils* CSystem::GetXmlUtils() ////////////////////////////////////////////////////////////////////////// XmlNodeRef CSystem::LoadXmlFromFile(const char* sFilename, bool bReuseStrings) { - LOADING_TIME_PROFILE_SECTION_ARGS(sFilename); - return m_pXMLUtils->LoadXmlFromFile(sFilename, bReuseStrings); } ////////////////////////////////////////////////////////////////////////// XmlNodeRef CSystem::LoadXmlFromBuffer(const char* buffer, size_t size, bool bReuseStrings, bool bSuppressWarnings) { - LOADING_TIME_PROFILE_SECTION return m_pXMLUtils->LoadXmlFromBuffer(buffer, size, bReuseStrings, bSuppressWarnings); } @@ -1262,9 +1195,6 @@ ILocalizationManager* CSystem::GetLocalizationManager() ////////////////////////////////////////////////////////////////////////// void CSystem::debug_GetCallStackRaw(void** callstack, uint32& callstackLength) { - uint32 callstackCapacity = callstackLength; - uint32 nNumStackFramesToSkip = 1; - memset(callstack, 0, sizeof(void*) * callstackLength); #if !defined(ANDROID) @@ -1272,6 +1202,8 @@ void CSystem::debug_GetCallStackRaw(void** callstack, uint32& callstackLength) #endif #if AZ_LEGACY_CRYSYSTEM_TRAIT_CAPTURESTACK + uint32 nNumStackFramesToSkip = 1; + uint32 callstackCapacity = callstackLength; if (callstackCapacity > 0x40) { callstackCapacity = 0x40; @@ -1535,7 +1467,7 @@ void CSystem::SetSystemGlobalState(const ESystemGlobalState systemGlobalState) if (gEnv && gEnv->pTimer) { const CTimeValue endTime = gEnv->pTimer->GetAsyncTime(); - const float numSeconds = endTime.GetDifferenceInSeconds(s_startTime); + [[maybe_unused]] const float numSeconds = endTime.GetDifferenceInSeconds(s_startTime); CryLog("SetGlobalState %d->%d '%s'->'%s' %3.1f seconds", m_systemGlobalState, systemGlobalState, CSystem::GetSystemGlobalStateName(m_systemGlobalState), CSystem::GetSystemGlobalStateName(systemGlobalState), @@ -1720,10 +1652,10 @@ bool CSystem::HandleMessage([[maybe_unused]] HWND hWnd, UINT uMsg, WPARAM wParam AZStd::array rawInputBytesArray; LPBYTE rawInputBytes = rawInputBytesArray.data(); - const UINT bytesCopied = GetRawInputData((HRAWINPUT)lParam, RID_INPUT, rawInputBytes, &rawInputSize, rawInputHeaderSize); + [[maybe_unused]] const UINT bytesCopied = GetRawInputData((HRAWINPUT)lParam, RID_INPUT, rawInputBytes, &rawInputSize, rawInputHeaderSize); CRY_ASSERT(bytesCopied == rawInputSize); - RAWINPUT* rawInput = (RAWINPUT*)rawInputBytes; + [[maybe_unused]] RAWINPUT* rawInput = (RAWINPUT*)rawInputBytes; CRY_ASSERT(rawInput); AzFramework::RawInputNotificationBusWindows::Broadcast(&AzFramework::RawInputNotificationsWindows::OnRawInputEvent, *rawInput); diff --git a/Code/Legacy/CrySystem/System.h b/Code/Legacy/CrySystem/System.h index 952de817e7..738ffd4bfb 100644 --- a/Code/Legacy/CrySystem/System.h +++ b/Code/Legacy/CrySystem/System.h @@ -11,13 +11,11 @@ #include #include -#include #include #include "Timer.h" #include #include "CmdLine.h" -#include "CryName.h" #include #include "RenderBus.h" @@ -25,6 +23,7 @@ #include #include +#include namespace AzFramework { @@ -330,7 +329,6 @@ public: ICryFont* GetICryFont(){ return m_env.pCryFont; } ILog* GetILog(){ return m_env.pLog; } ICmdLine* GetICmdLine(){ return m_pCmdLine; } - INameTable* GetINameTable() { return m_env.pNameTable; }; IViewSystem* GetIViewSystem(); ILevelSystem* GetILevelSystem(); ISystemEventDispatcher* GetISystemEventDispatcher() { return m_pSystemEventDispatcher; } @@ -490,27 +488,27 @@ private: // ------------------------------------------------------ // System environment. SSystemGlobalEnvironment m_env; - CTimer m_Time; //!< - bool m_bInitializedSuccessfully; //!< true if the system completed all initialization steps - bool m_bRelaunch; //!< relaunching the app or not (true beforerelaunch) - int m_iLoadingMode; //!< Game is loading w/o changing context (0 not, 1 quickloading, 2 full loading) - bool m_bTestMode; //!< If running in testing mode. - bool m_bEditor; //!< If running in Editor. - bool m_bNoCrashDialog; - bool m_bNoErrorReportWindow; + CTimer m_Time; //!< + bool m_bInitializedSuccessfully; //!< true if the system completed all initialization steps + bool m_bRelaunch; //!< relaunching the app or not (true beforerelaunch) + int m_iLoadingMode; //!< Game is loading w/o changing context (0 not, 1 quickloading, 2 full loading) + bool m_bTestMode; //!< If running in testing mode. + bool m_bEditor; //!< If running in Editor. + bool m_bNoCrashDialog; + bool m_bNoErrorReportWindow; bool m_bPreviewMode; //!< If running in Preview mode. - bool m_bDedicatedServer; //!< If running as Dedicated server. - bool m_bIgnoreUpdates; //!< When set to true will ignore Update and Render calls, - bool m_bForceNonDevMode; //!< true when running on a cheat protected server or a client that is connected to it (not used in singlplayer) - bool m_bWasInDevMode; //!< Set to true if was in dev mode. - bool m_bInDevMode; //!< Set to true if was in dev mode. + bool m_bDedicatedServer; //!< If running as Dedicated server. + bool m_bIgnoreUpdates; //!< When set to true will ignore Update and Render calls, + bool m_bForceNonDevMode; //!< true when running on a cheat protected server or a client that is connected to it (not used in singlplayer) + bool m_bWasInDevMode; //!< Set to true if was in dev mode. + bool m_bInDevMode; //!< Set to true if was in dev mode. bool m_bGameFolderWritable;//!< True when verified that current game folder have write access. - int m_ttMemStatSS; //!< Time to memstat screenshot - bool m_bDrawConsole; //!< Set to true if OK to draw the console. - bool m_bDrawUI; //!< Set to true if OK to draw UI. + int m_ttMemStatSS; //!< Time to memstat screenshot + bool m_bDrawConsole; //!< Set to true if OK to draw the console. + bool m_bDrawUI; //!< Set to true if OK to draw UI. - std::map > m_moduleDLLHandles; + std::map > m_moduleDLLHandles; //! current active process IProcess* m_pProcess; @@ -632,9 +630,6 @@ private: // ------------------------------------------------------ class CLocalizedStringsManager* m_pLocalizationManager; - // Name table. - CNameTable m_nameTable; - ESystemConfigSpec m_nServerConfigSpec; ESystemConfigSpec m_nMaxConfigSpec; ESystemConfigPlatform m_ConfigPlatform; diff --git a/Code/Legacy/CrySystem/SystemCFG.cpp b/Code/Legacy/CrySystem/SystemCFG.cpp index 57de0be909..0f67fdc2e1 100644 --- a/Code/Legacy/CrySystem/SystemCFG.cpp +++ b/Code/Legacy/CrySystem/SystemCFG.cpp @@ -180,7 +180,7 @@ void CSystem::LogVersion() strftime(s, 128, "%d %b %y (%H %M %S)", today); #endif - const SFileVersion& ver = GetFileVersion(); + [[maybe_unused]] const SFileVersion& ver = GetFileVersion(); CryLogAlways("BackupNameAttachment=\" Build(%d) %s\" -- used by backup system\n", ver.v[0], s); // read by CreateBackupFile() @@ -251,7 +251,7 @@ void CSystem::LogVersion() ////////////////////////////////////////////////////////////////////////// void CSystem::LogBuildInfo() { - auto projectName = AZ::Utils::GetProjectName(); + [[maybe_unused]] auto projectName = AZ::Utils::GetProjectName(); CryLogAlways("GameName: %s", projectName.c_str()); CryLogAlways("BuildTime: " __DATE__ " " __TIME__); } diff --git a/Code/Legacy/CrySystem/SystemEventDispatcher.cpp b/Code/Legacy/CrySystem/SystemEventDispatcher.cpp index 525bf1a005..8e4e36b453 100644 --- a/Code/Legacy/CrySystem/SystemEventDispatcher.cpp +++ b/Code/Legacy/CrySystem/SystemEventDispatcher.cpp @@ -9,6 +9,7 @@ #include "CrySystem_precompiled.h" #include "SystemEventDispatcher.h" +#include CSystemEventDispatcher::CSystemEventDispatcher() : m_listeners(0) diff --git a/Code/Legacy/CrySystem/SystemInit.cpp b/Code/Legacy/CrySystem/SystemInit.cpp index 08292a6353..d5efff2748 100644 --- a/Code/Legacy/CrySystem/SystemInit.cpp +++ b/Code/Legacy/CrySystem/SystemInit.cpp @@ -97,7 +97,6 @@ #include #include #include -#include #if defined(ANDROID) #include @@ -258,8 +257,8 @@ static void CmdCrashTest(IConsoleCmdArgs* pArgs) { float a = 1.0f; memset(&a, 0, sizeof(a)); - float* b = &a; - float c = 3; + [[maybe_unused]] float* b = &a; + [[maybe_unused]] float c = 3; CryLog("%f", (c / *b)); } break; @@ -432,8 +431,6 @@ AZStd::unique_ptr CSystem::LoadDynamiclibrary(const cha ////////////////////////////////////////////////////////////////////////// AZStd::unique_ptr CSystem::LoadDLL(const char* dllName) { - LOADING_TIME_PROFILE_SECTION(GetISystem()); - AZ_TracePrintf(AZ_TRACE_SYSTEM_WINDOW, "Loading DLL: %s", dllName); AZStd::unique_ptr handle = LoadDynamiclibrary(dllName); @@ -476,7 +473,7 @@ bool CSystem::UnloadDLL(const char* dllName) { bool isSuccess = false; - CCryNameCRC key(dllName); + AZ::Crc32 key(dllName); AZStd::unique_ptr empty; AZStd::unique_ptr& hModule = stl::find_in_map_ref(m_moduleDLLHandles, key, empty); if ((hModule) && (hModule->IsLoaded())) @@ -612,8 +609,6 @@ AZStd::wstring GetErrorStringUnsupportedGPU(const char* gpuName, unsigned int gp ///////////////////////////////////////////////////////////////////////////////// bool CSystem::InitConsole() { - LOADING_TIME_PROFILE_SECTION(GetISystem()); - if (m_env.pConsole) { m_env.pConsole->Init(this); @@ -662,7 +657,6 @@ ICVar* CSystem::attachVariable (const char* szVarName, int* pContainer, const ch ///////////////////////////////////////////////////////////////////////////////// bool CSystem::InitFileSystem() { - LOADING_TIME_PROFILE_SECTION; using namespace AzFramework::AssetSystem; if (m_pUserCallback) @@ -748,11 +742,8 @@ void CSystem::ShutdownFileSystem() ///////////////////////////////////////////////////////////////////////////////// bool CSystem::InitFileSystem_LoadEngineFolders(const SSystemInitParams&) { - LOADING_TIME_PROFILE_SECTION; - { - LoadConfiguration(m_systemConfigName.c_str()); - AZ_Printf(AZ_TRACE_SYSTEM_WINDOW, "Loading system configuration from %s...", m_systemConfigName.c_str()); - } + LoadConfiguration(m_systemConfigName.c_str()); + AZ_Printf(AZ_TRACE_SYSTEM_WINDOW, "Loading system configuration from %s...", m_systemConfigName.c_str()); #if defined(AZ_PLATFORM_ANDROID) AZ::Android::Utils::SetLoadFilesToMemory(m_sys_load_files_to_memory->GetString()); @@ -783,8 +774,6 @@ bool CSystem::InitFileSystem_LoadEngineFolders(const SSystemInitParams&) ////////////////////////////////////////////////////////////////////////// bool CSystem::InitAudioSystem(const SSystemInitParams& initParams) { - LOADING_TIME_PROFILE_SECTION(GetISystem()); - if (!Audio::Gem::AudioSystemGemRequestBus::HasHandlers()) { // AudioSystem Gem has not been enabled for this project. @@ -826,8 +815,6 @@ bool CSystem::InitAudioSystem(const SSystemInitParams& initParams) ////////////////////////////////////////////////////////////////////////// bool CSystem::InitVTuneProfiler() { - LOADING_TIME_PROFILE_SECTION(GetISystem()); - #ifdef PROFILE_WITH_VTUNE WIN_HMODULE hModule = LoadDLL("VTuneApi.dll"); @@ -855,7 +842,6 @@ bool CSystem::InitVTuneProfiler() ////////////////////////////////////////////////////////////////////////// void CSystem::InitLocalization() { - LOADING_TIME_PROFILE_SECTION(GetISystem()); // Set the localization folder ICVar* pCVar = m_env.pConsole != 0 ? m_env.pConsole->GetCVar("sys_localization_folder") : 0; if (pCVar) @@ -917,8 +903,6 @@ void CSystem::OpenBasicPaks() } bBasicPaksLoaded = true; - LOADING_TIME_PROFILE_SECTION; - // open pak files constexpr AZStd::string_view paksFolder = "@assets@/*.pak"; // (@assets@ assumed) m_env.pCryPak->OpenPacks(paksFolder); @@ -1153,8 +1137,6 @@ bool CSystem::Init(const SSystemInitParams& startupParams) gEnv = &m_env; } - LOADING_TIME_PROFILE_SECTION; - SetSystemGlobalState(ESYSTEM_GLOBAL_STATE_INIT); gEnv->mMainThreadId = GetCurrentThreadId(); //Set this ASAP on startup @@ -1185,7 +1167,7 @@ bool CSystem::Init(const SSystemInitParams& startupParams) { azConsole->LinkDeferredFunctors(AZ::ConsoleFunctorBase::GetDeferredHead()); } - + if (auto settingsRegistry = AZ::SettingsRegistry::Get(); settingsRegistry) { AZ::SettingsRegistryInterface::FixedValueString assetPlatform; @@ -1626,6 +1608,9 @@ AZ_POP_DISABLE_WARNING // Send out EBus event EBUS_EVENT(CrySystemEventBus, OnCrySystemInitialized, *this, startupParams); + // Execute any deferred commands that uses the CVar commands that were just registered + AZ::Interface::Get()->ExecuteDeferredConsoleCommands(); + // Verify that the Maestro Gem initialized the movie system correctly. This can be removed if and when Maestro is not a required Gem if (gEnv->IsEditor() && !gEnv->pMovieSystem) { @@ -1641,7 +1626,7 @@ AZ_POP_DISABLE_WARNING m_bInitializedSuccessfully = true; - return (true); + return true; } @@ -1693,46 +1678,6 @@ void CmdSetAwsLogLevel(IConsoleCmdArgs* pArgs) } } -void CmdDrillToFile(IConsoleCmdArgs* pArgs) -{ - if (azstricmp(pArgs->GetArg(0), "DrillerStop") == 0) - { - EBUS_EVENT(AzFramework::DrillerConsoleCommandBus, StopDrillerSession, AZ::Crc32("DefaultDrillerSession")); - } - else - { - if (pArgs->GetArgCount() > 1) - { - AZ::Debug::DrillerManager::DrillerListType drillersToEnable; - for (int iArg = 1; iArg < pArgs->GetArgCount(); ++iArg) - { - if (azstricmp(pArgs->GetArg(iArg), "Replica") == 0) - { - drillersToEnable.push_back(); - drillersToEnable.back().id = AZ::Crc32("ReplicaDriller"); - } - else if (azstricmp(pArgs->GetArg(iArg), "Carrier") == 0) - { - drillersToEnable.push_back(); - drillersToEnable.back().id = AZ::Crc32("CarrierDriller"); - } - else - { - CryLogAlways("Driller %s not supported.", pArgs->GetArg(iArg)); - } - } - EBUS_EVENT(AzFramework::DrillerConsoleCommandBus, StartDrillerSession, drillersToEnable, AZ::Crc32("DefaultDrillerSession")); - } - else - { - CryLogAlways("Syntax: DrillerStart [Driller1] [Driller2] [...]"); - CryLogAlways("Supported Drillers:"); - CryLogAlways(" Carrier"); - CryLogAlways(" Replica"); - } - } -} - ////////////////////////////////////////////////////////////////////////// void CSystem::CreateSystemVars() { @@ -1875,19 +1820,6 @@ void CSystem::CreateSystemVars() "Usage: e_EntitySuppressionLevel [0-infinity]\n" "Default is 0 (off)"); -#if defined(WIN32) || defined(WIN64) - const uint32 nJobSystemDefaultCoreNumber = 8; -#define AZ_RESTRICTED_SECTION_IMPLEMENTED -#elif defined(AZ_RESTRICTED_PLATFORM) -#define AZ_RESTRICTED_SECTION SYSTEMINIT_CPP_SECTION_11 -#include AZ_RESTRICTED_FILE(SystemInit_cpp) -#endif -#if defined(AZ_RESTRICTED_SECTION_IMPLEMENTED) -#undef AZ_RESTRICTED_SECTION_IMPLEMENTED -#else - const uint32 nJobSystemDefaultCoreNumber = 4; -#endif - m_sys_firstlaunch = REGISTER_INT("sys_firstlaunch", 0, 0, "Indicates that the game was run for the first time."); @@ -2111,9 +2043,6 @@ void CSystem::CreateSystemVars() // By default it is now enabled. Modify system.cfg or game.cfg to disable it REGISTER_INT("sys_enableCanvasEditor", 1, VF_NULL, "Enables the UI Canvas Editor"); - REGISTER_COMMAND_DEV_ONLY("DrillerStart", CmdDrillToFile, VF_DEV_ONLY, "Start a driller capture."); - REGISTER_COMMAND_DEV_ONLY("DrillerStop", CmdDrillToFile, VF_DEV_ONLY, "Stop a driller capture."); - REGISTER_COMMAND("sys_SetLogLevel", CmdSetAwsLogLevel, 0, "Set AWS log level [0 - 6]."); } diff --git a/Code/Legacy/CrySystem/Timer.cpp b/Code/Legacy/CrySystem/Timer.cpp index d411e76875..1e1b6859e1 100644 --- a/Code/Legacy/CrySystem/Timer.cpp +++ b/Code/Legacy/CrySystem/Timer.cpp @@ -550,7 +550,7 @@ void CTimer::Serialize(TSerialize ser) if (m_TimeDebug) { - const int64 now = CryGetTicks(); + [[maybe_unused]] const int64 now = CryGetTicks(); CryLogAlways("[CTimer]: Serialize: Last=%lld Now=%lld Off=%lld Async=%f CurrTime=%f UI=%f", (long long)m_lLastTime, (long long)now, (long long)m_lOffsetTime, GetAsyncCurTime(), GetCurrTime(ETIMER_GAME), GetCurrTime(ETIMER_UI)); } } @@ -700,8 +700,8 @@ void CTimer::EnableFixedTimeMode([[maybe_unused]] bool enable, [[maybe_unused]] void CTimer::SetOffsetToMatchGameTime(int64 ticks) { - const int64 previousOffset = m_lOffsetTime; - const float previousGameTime = GetCurrTime(ETIMER_GAME); + [[maybe_unused]] const int64 previousOffset = m_lOffsetTime; + [[maybe_unused]] const float previousGameTime = GetCurrTime(ETIMER_GAME); m_lOffsetTime = ticks - m_lLastTime; RefreshGameTime(m_lLastTime); diff --git a/Code/Legacy/CrySystem/ViewSystem/View.cpp b/Code/Legacy/CrySystem/ViewSystem/View.cpp index 7b3883f014..36cd891e3e 100644 --- a/Code/Legacy/CrySystem/ViewSystem/View.cpp +++ b/Code/Legacy/CrySystem/ViewSystem/View.cpp @@ -13,7 +13,6 @@ #include #include "View.h" #include -#include #include #include #include @@ -541,13 +540,13 @@ void CView::GetMemoryUsage(ICrySizer* s) const s->AddObject(m_shakes); } -void CView::Serialize(TSerialize ser) -{ - if (ser.IsReading()) - { - ResetShaking(); - } -} +//void CView::Serialize(TSerialize ser) +//{ +// if (ser.IsReading()) +// { +// ResetShaking(); +// } +//} void CView::PostSerialize() { diff --git a/Code/Legacy/CrySystem/ViewSystem/View.h b/Code/Legacy/CrySystem/ViewSystem/View.h index 58d7e64869..689c254897 100644 --- a/Code/Legacy/CrySystem/ViewSystem/View.h +++ b/Code/Legacy/CrySystem/ViewSystem/View.h @@ -15,6 +15,7 @@ #include class CGameObject; +struct ISystem; namespace LegacyViewSystem { @@ -106,7 +107,6 @@ public: virtual void SetActive(const bool bActive); // ~IView - void Serialize(TSerialize ser) override; void PostSerialize() override; CCamera& GetCamera() override { return m_camera; } const CCamera& GetCamera() const override { return m_camera; } diff --git a/Code/Legacy/CrySystem/ViewSystem/ViewSystem.cpp b/Code/Legacy/CrySystem/ViewSystem/ViewSystem.cpp index 7cdb62d45a..1d141a5e13 100644 --- a/Code/Legacy/CrySystem/ViewSystem/ViewSystem.cpp +++ b/Code/Legacy/CrySystem/ViewSystem/ViewSystem.cpp @@ -172,8 +172,6 @@ CViewSystem::~CViewSystem() //------------------------------------------------------------------------ void CViewSystem::Update(float frameTime) { - FUNCTION_PROFILER(GetISystem(), PROFILE_ACTION); - if (gEnv->IsDedicated()) { return; @@ -619,16 +617,16 @@ void CViewSystem::GetMemoryUsage(ICrySizer* s) const s->AddContainer(m_views); } -void CViewSystem::Serialize(TSerialize ser) -{ - TViewMap::iterator iter = m_views.begin(); - TViewMap::iterator iterEnd = m_views.end(); - while (iter != iterEnd) - { - iter->second->Serialize(ser); - ++iter; - } -} +//void CViewSystem::Serialize(TSerialize ser) +//{ +// TViewMap::iterator iter = m_views.begin(); +// TViewMap::iterator iterEnd = m_views.end(); +// while (iter != iterEnd) +// { +// iter->second->Serialize(ser); +// ++iter; +// } +//} void CViewSystem::PostSerialize() { diff --git a/Code/Legacy/CrySystem/ViewSystem/ViewSystem.h b/Code/Legacy/CrySystem/ViewSystem/ViewSystem.h index 644a197e46..dd49e09e04 100644 --- a/Code/Legacy/CrySystem/ViewSystem/ViewSystem.h +++ b/Code/Legacy/CrySystem/ViewSystem/ViewSystem.h @@ -53,7 +53,6 @@ public: virtual unsigned int GetViewId(IView* pView); virtual unsigned int GetActiveViewId(); - virtual void Serialize(TSerialize ser); virtual void PostSerialize(); virtual IView* GetViewByEntityId(const AZ::EntityId& id, bool forceCreate); diff --git a/Code/Legacy/CrySystem/XConsole.cpp b/Code/Legacy/CrySystem/XConsole.cpp index 46eea1528c..bb8316981a 100644 --- a/Code/Legacy/CrySystem/XConsole.cpp +++ b/Code/Legacy/CrySystem/XConsole.cpp @@ -20,8 +20,8 @@ #include #include #include -#include -#include +#include +#include #include "ConsoleHelpGen.h" // CConsoleHelpGen #include @@ -1762,7 +1762,7 @@ void CXConsole::ExecuteString(const char* command, const bool bSilentMode, const AZ::StringFunc::TrimWhiteSpace(str, true, false); // Unroll the exec command - + bool unroll = (0 == AZ::StringFunc::Find(str, "exec", 0, false, false)); if (unroll) @@ -2891,75 +2891,6 @@ int CXConsole::GetNumVisibleVars() return numVars; } - -////////////////////////////////////////////////////////////////////////// -bool CXConsole::IsHashCalculated() -{ - return m_bCheatHashDirty == false; -} - -////////////////////////////////////////////////////////////////////////// -int CXConsole::GetNumCheatVars() -{ - return static_cast(m_randomCheckedVariables.size()); -} - -////////////////////////////////////////////////////////////////////////// -uint64 CXConsole::GetCheatVarHash() -{ - return m_nCheatHash; -} - -////////////////////////////////////////////////////////////////////////// -void CXConsole::SetCheatVarHashRange(size_t firstVar, size_t lastVar) -{ - // check inputs are sane -#if !defined(NDEBUG) - size_t numVars = GetNumCheatVars(); - assert(firstVar < numVars && lastVar < numVars && lastVar >= firstVar); -#endif - -#if defined(DEFENCE_CVAR_HASH_LOGGING) - if (m_bCheatHashDirty) - { - CryLog("HASHING: WARNING - trying to set up new cvar hash range while existing hash still calculating!"); - } -#endif - - m_nCheatHashRangeFirst = firstVar; - m_nCheatHashRangeLast = lastVar; - m_bCheatHashDirty = true; -} - -////////////////////////////////////////////////////////////////////////// -void CXConsole::CalcCheatVarHash() -{ - if (!m_bCheatHashDirty) - { - return; - } - - CCrc32 runningNameCrc32; - CCrc32 runningNameValueCrc32; - - AddCVarsToHash(m_randomCheckedVariables.begin() + m_nCheatHashRangeFirst, m_randomCheckedVariables.begin() + m_nCheatHashRangeLast, runningNameCrc32, runningNameValueCrc32); - AddCVarsToHash(m_alwaysCheckedVariables.begin(), m_alwaysCheckedVariables.end() - 1, runningNameCrc32, runningNameValueCrc32); - - // store hash - m_nCheatHash = (((uint64)runningNameCrc32.Get()) << 32) | runningNameValueCrc32.Get(); - m_bCheatHashDirty = false; - -#if defined(DEFENCE_CVAR_HASH_LOGGING) - if (!gEnv->IsDedicated()) - { - CryLog("HASHING: Range %d->%d = %llx(%x,%x), max cvars = %d", m_nCheatHashRangeFirst, m_nCheatHashRangeLast, - m_nCheatHash, runningNameCrc32.Get(), runningNameValueCrc32.Get(), - GetNumCheatVars()); - PrintCheatVars(true); - } -#endif -} - void CXConsole::AddCVarsToHash(ConsoleVariablesVector::const_iterator begin, ConsoleVariablesVector::const_iterator end, CCrc32& runningNameCrc32, CCrc32& runningNameValueCrc32) { for (ConsoleVariablesVector::const_iterator it = begin; it <= end; ++it) @@ -2974,162 +2905,6 @@ void CXConsole::AddCVarsToHash(ConsoleVariablesVector::const_iterator begin, Con } } -void CXConsole::CmdDumpAllAnticheatVars([[maybe_unused]] IConsoleCmdArgs* pArgs) -{ -#if defined(DEFENCE_CVAR_HASH_LOGGING) - CXConsole* pConsole = (CXConsole*)gEnv->pConsole; - - if (pConsole->IsHashCalculated()) - { - CryLog("HASHING: Displaying Full Anticheat Cvar list:"); - pConsole->PrintCheatVars(false); - } - else - { - CryLogAlways("DumpAllAnticheatVars - cannot complete, cheat vars are in a state of flux, please retry."); - } -#endif -} - -void CXConsole::CmdDumpLastHashedAnticheatVars([[maybe_unused]] IConsoleCmdArgs* pArgs) -{ -#if defined(DEFENCE_CVAR_HASH_LOGGING) - CXConsole* pConsole = (CXConsole*)gEnv->pConsole; - - if (pConsole->IsHashCalculated()) - { - CryLog("HASHING: Displaying Last Hashed Anticheat Cvar list:"); - pConsole->PrintCheatVars(true); - } - else - { - CryLogAlways("DumpLastHashedAnticheatVars - cannot complete, cheat vars are in a state of flux, please retry."); - } -#endif -} - -void CXConsole::PrintCheatVars([[maybe_unused]] bool bUseLastHashRange) -{ -#if defined(DEFENCE_CVAR_HASH_LOGGING) - if (m_bCheatHashDirty) - { - return; - } - - size_t i = 0; - char floatFormatBuf[64]; - - size_t nStart = 0; - size_t nEnd = m_mapVariables.size(); - - if (bUseLastHashRange) - { - nStart = m_nCheatHashRangeFirst; - nEnd = m_nCheatHashRangeLast; - } - - // iterate over all const cvars in our range - // then hash the string. - CryLog("VF_CHEAT & ~VF_CHEAT_NOCHECK list:"); - - ConsoleVariablesMap::const_iterator it, end = m_mapVariables.end(); - for (it = m_mapVariables.begin(); it != end; ++it) - { - // only count cheat cvars - if ((it->second->GetFlags() & VF_CHEAT) == 0 || - (it->second->GetFlags() & VF_CHEAT_NOCHECK) != 0) - { - continue; - } - - // count up - i++; - - // if we haven't reached the first var, or have passed the last var, break out - if (i - 1 < nStart) - { - continue; - } - if (i - 1 > nEnd) - { - break; - } - - // add name & variable to string. We add both since adding only the value could cause - // many collisions with variables all having value 0 or all 1. - string hashStr = it->first; - if (it->second->GetType() == CVAR_FLOAT) - { - sprintf(floatFormatBuf, "%.1g", it->second->GetFVal()); - hashStr += floatFormatBuf; - } - else - { - hashStr += it->second->GetString(); - } - - CryLog("%s", hashStr.c_str()); - } - - // iterate over any must-check variables - CryLog("VF_CHEAT_ALWAYS_CHECK list:"); - - for (it = m_mapVariables.begin(); it != end; ++it) - { - // only count cheat cvars - if ((it->second->GetFlags() & VF_CHEAT_ALWAYS_CHECK) == 0) - { - continue; - } - - // add name & variable to string. We add both since adding only the value could cause - // many collisions with variables all having value 0 or all 1. - string hashStr = it->first; - hashStr += it->second->GetString(); - - CryLog("%s", hashStr.c_str()); - } -#endif -} - -char* CXConsole::GetCheatVarAt(uint32 nOffset) -{ - if (m_bCheatHashDirty) - { - return NULL; - } - - size_t i = 0; - size_t nStart = nOffset; - - // iterate over all const cvars in our range - // then hash the string. - ConsoleVariablesMap::const_iterator it, end = m_mapVariables.end(); - for (it = m_mapVariables.begin(); it != end; ++it) - { - // only count cheat cvars - if ((it->second->GetFlags() & VF_CHEAT) == 0 || - (it->second->GetFlags() & VF_CHEAT_NOCHECK) != 0) - { - continue; - } - - // count up - i++; - - // if we haven't reached the first var continue - if (i - 1 < nStart) - { - continue; - } - - return (char*)it->first; - } - - return NULL; -} - - ////////////////////////////////////////////////////////////////////////// size_t CXConsole::GetSortedVars(AZStd::vector& pszArray, const char* szPrefix) { diff --git a/Code/Legacy/CrySystem/XConsole.h b/Code/Legacy/CrySystem/XConsole.h index 67d9371e8d..3ff9824e6f 100644 --- a/Code/Legacy/CrySystem/XConsole.h +++ b/Code/Legacy/CrySystem/XConsole.h @@ -182,11 +182,6 @@ public: virtual int GetNumVars(); virtual int GetNumVisibleVars(); virtual size_t GetSortedVars(AZStd::vector& pszArray, const char* szPrefix = 0); - virtual int GetNumCheatVars(); - virtual void SetCheatVarHashRange(size_t firstVar, size_t lastVar); - virtual void CalcCheatVarHash(); - virtual bool IsHashCalculated(); - virtual uint64 GetCheatVarHash(); virtual void FindVar(const char* substr); virtual const char* AutoComplete(const char* substr); virtual const char* AutoCompletePrev(const char* substr); @@ -231,9 +226,6 @@ public: // 0 if the operation failed ICVar* RegisterCVarGroup(const char* sName, const char* szFileName); - virtual void PrintCheatVars(bool bUseLastHashRange); - virtual char* GetCheatVarAt(uint32 nOffset); - void SetProcessingGroup(bool isGroup) { m_bIsProcessingGroup = isGroup; } bool GetIsProcessingGroup(void) const { return m_bIsProcessingGroup; } @@ -286,9 +278,6 @@ protected: // ------------------------------------------------------------------ static const char* GetFlagsString(const uint32 dwFlags); - static void CmdDumpAllAnticheatVars(IConsoleCmdArgs* pArgs); - static void CmdDumpLastHashedAnticheatVars(IConsoleCmdArgs* pArgs); - private: // ---------------------------------------------------------- typedef std::map ConsoleVariablesMap; // key points into string stored in ICVar or in .exe/.dll diff --git a/Code/Legacy/CrySystem/XConsoleVariable.cpp b/Code/Legacy/CrySystem/XConsoleVariable.cpp index ab6ed0b078..efd5ecd495 100644 --- a/Code/Legacy/CrySystem/XConsoleVariable.cpp +++ b/Code/Legacy/CrySystem/XConsoleVariable.cpp @@ -129,40 +129,6 @@ uint64 CXConsoleVariableBase::AddOnChangeFunctor(const SFunctor& pChangeFunctor) return newId; } -uint64 CXConsoleVariableBase::GetNumberOfOnChangeFunctors() const -{ - return m_changeFunctors.size(); -} - -const SFunctor& CXConsoleVariableBase::GetOnChangeFunctor(uint64 nFunctorId) const -{ - auto predicate = [nFunctorId](const std::pair& entry) -> bool { return entry.first == nFunctorId; }; - auto changeFunctor = std::find_if(m_changeFunctors.begin(), m_changeFunctors.end(), predicate); - if (changeFunctor != m_changeFunctors.end()) - { - return (*changeFunctor).second; - } - - static SFunctor sDummyFunctor; - assert(false && "[CXConsoleVariableBase::GetOnChangeFunctor] Trying to get a functor for an id that does not exist."); - - return sDummyFunctor; -} - -bool CXConsoleVariableBase::RemoveOnChangeFunctor(const uint64 nFunctorId) -{ - auto predicate = [nFunctorId](const std::pair& entry) -> bool { return entry.first == nFunctorId; }; - auto changeFunctor = std::find_if(m_changeFunctors.begin(), m_changeFunctors.end(), predicate); - - if (changeFunctor != m_changeFunctors.end()) - { - m_changeFunctors.erase(changeFunctor); - return true; - } - - return false; -} - ConsoleVarFunc CXConsoleVariableBase::GetOnChangeCallback() const { return m_pChangeFunc; diff --git a/Code/Legacy/CrySystem/XConsoleVariable.h b/Code/Legacy/CrySystem/XConsoleVariable.h index 122389407f..f761287b41 100644 --- a/Code/Legacy/CrySystem/XConsoleVariable.h +++ b/Code/Legacy/CrySystem/XConsoleVariable.h @@ -108,9 +108,6 @@ public: virtual void ForceSet(const char* s); virtual void SetOnChangeCallback(ConsoleVarFunc pChangeFunc); virtual uint64 AddOnChangeFunctor(const SFunctor& pChangeFunctor) override; - virtual bool RemoveOnChangeFunctor(const uint64 nFunctorId) override; - virtual uint64 GetNumberOfOnChangeFunctors() const; - virtual const SFunctor& GetOnChangeFunctor(uint64 nFunctorId) const override; virtual ConsoleVarFunc GetOnChangeCallback() const; virtual bool ShouldReset() const { return (m_nFlags & VF_RESETTABLE) != 0; } @@ -250,7 +247,7 @@ public: virtual void GetMemoryUsage(class ICrySizer* pSizer) const { pSizer->AddObject(this, sizeof(*this)); } private: // -------------------------------------------------------------------------------------------- - AZStd::string m_sValue; + AZStd::string m_sValue; AZStd::string m_sDefault; //!< }; @@ -315,7 +312,7 @@ public: virtual void GetMemoryUsage(class ICrySizer* pSizer) const { pSizer->AddObject(this, sizeof(*this)); } protected: // -------------------------------------------------------------------------------------------- - int m_iValue; + int m_iValue; int m_iDefault; //!< }; @@ -382,7 +379,7 @@ public: virtual void GetMemoryUsage(class ICrySizer* pSizer) const { pSizer->AddObject(this, sizeof(*this)); } protected: // -------------------------------------------------------------------------------------------- - int64 m_iValue; + int64 m_iValue; int64 m_iDefault; //!< }; @@ -488,7 +485,7 @@ protected: private: // -------------------------------------------------------------------------------------------- - float m_fValue; + float m_fValue; float m_fDefault; //!< }; @@ -578,7 +575,7 @@ public: virtual void GetMemoryUsage(class ICrySizer* pSizer) const { pSizer->AddObject(this, sizeof(*this)); } private: // -------------------------------------------------------------------------------------------- - int& m_iValue; + int& m_iValue; int m_iDefault; //!< }; diff --git a/Code/Legacy/CrySystem/XML/XmlUtils.cpp b/Code/Legacy/CrySystem/XML/XmlUtils.cpp index ecc10508f1..56944eb344 100644 --- a/Code/Legacy/CrySystem/XML/XmlUtils.cpp +++ b/Code/Legacy/CrySystem/XML/XmlUtils.cpp @@ -24,7 +24,6 @@ #include ////////////////////////////////////////////////////////////////////////// -CXmlNode_PoolAlloc* g_pCXmlNode_PoolAlloc = 0; #ifdef CRY_COLLECT_XML_NODE_STATS SXmlNodeStats* g_pCXmlNode_Stats = 0; #endif @@ -35,11 +34,9 @@ extern bool g_bEnableBinaryXmlLoading; CXmlUtils::CXmlUtils(ISystem* pSystem) { m_pSystem = pSystem; - m_pSystem->GetISystemEventDispatcher()->RegisterListener(this); // create IReadWriteXMLSink object m_pReadWriteXMLSink = new CReadWriteXMLSink(); - g_pCXmlNode_PoolAlloc = new CXmlNode_PoolAlloc; #ifdef CRY_COLLECT_XML_NODE_STATS g_pCXmlNode_Stats = new SXmlNodeStats(); #endif @@ -53,8 +50,6 @@ CXmlUtils::CXmlUtils(ISystem* pSystem) ////////////////////////////////////////////////////////////////////////// CXmlUtils::~CXmlUtils() { - m_pSystem->GetISystemEventDispatcher()->RemoveListener(this); - delete g_pCXmlNode_PoolAlloc; #ifdef CRY_COLLECT_XML_NODE_STATS delete g_pCXmlNode_Stats; #endif @@ -200,13 +195,8 @@ IXmlSerializer* CXmlUtils::CreateXmlSerializer() } ////////////////////////////////////////////////////////////////////////// -void CXmlUtils::GetMemoryUsage(ICrySizer* pSizer) +void CXmlUtils::GetMemoryUsage([[maybe_unused]] ICrySizer* pSizer) { - { - SIZER_COMPONENT_NAME(pSizer, "Nodes"); - g_pCXmlNode_PoolAlloc->GetMemoryUsage(pSizer); - } - #ifdef CRY_COLLECT_XML_NODE_STATS // yes, slow std::vector rootNodes; @@ -260,18 +250,6 @@ void CXmlUtils::GetMemoryUsage(ICrySizer* pSizer) #endif } -////////////////////////////////////////////////////////////////////////// -void CXmlUtils::OnSystemEvent(ESystemEvent event, [[maybe_unused]] UINT_PTR wparam, [[maybe_unused]] UINT_PTR lparam) -{ - switch (event) - { - case ESYSTEM_EVENT_LEVEL_POST_UNLOAD: - case ESYSTEM_EVENT_LEVEL_LOAD_END: - g_pCXmlNode_PoolAlloc->FreeMemoryIfEmpty(); - break; - } -} - ////////////////////////////////////////////////////////////////////////// class CXmlBinaryDataWriterFile : public XMLBinary::IDataWriter diff --git a/Code/Legacy/CrySystem/XML/XmlUtils.h b/Code/Legacy/CrySystem/XML/XmlUtils.h index 8e44b86e41..d81dc4b642 100644 --- a/Code/Legacy/CrySystem/XML/XmlUtils.h +++ b/Code/Legacy/CrySystem/XML/XmlUtils.h @@ -27,7 +27,6 @@ class CXMLPatcher; ////////////////////////////////////////////////////////////////////////// class CXmlUtils : public IXmlUtils - , public ISystemEventListener { public: CXmlUtils(ISystem* pSystem); @@ -62,12 +61,6 @@ public: virtual IXmlTableReader* CreateXmlTableReader(); ////////////////////////////////////////////////////////////////////////// - ////////////////////////////////////////////////////////////////////////// - // ISystemEventListener - ////////////////////////////////////////////////////////////////////////// - virtual void OnSystemEvent(ESystemEvent event, UINT_PTR wparam, UINT_PTR lparam); - ////////////////////////////////////////////////////////////////////////// - ////////////////////////////////////////////////////////////////////////// virtual void GetMemoryUsage(ICrySizer* pSizer); diff --git a/Code/Legacy/CrySystem/XML/xml.cpp b/Code/Legacy/CrySystem/XML/xml.cpp index adbfcc5f3e..cc3ea7f820 100644 --- a/Code/Legacy/CrySystem/XML/xml.cpp +++ b/Code/Legacy/CrySystem/XML/xml.cpp @@ -1293,7 +1293,6 @@ XmlString CXmlNode::getXMLUnsafe(int level, char* tmpBuffer, uint32 sizeOfTmpBuf // TODO: those 2 saving functions are a bit messy. should probably make a separate one for the use of PlatformAPI bool CXmlNode::saveToFile(const char* fileName) { - const size_t chunkSizeBytes = (15 * 1024); if (!fileName) { return false; @@ -1310,6 +1309,7 @@ bool CXmlNode::saveToFile(const char* fileName) gEnv->pCryPak->FClose(fileHandle); return true; #else + constexpr size_t chunkSizeBytes = (15 * 1024); bool ret = saveToFile(fileName, chunkSizeBytes, fileHandle); gEnv->pCryPak->FClose(fileHandle); return ret; @@ -1675,8 +1675,6 @@ XmlNodeRef XmlParserImp::ParseBuffer(const char* buffer, size_t bufLen, XmlStrin ////////////////////////////////////////////////////////////////////////// XmlNodeRef XmlParserImp::ParseFile(const char* filename, XmlString& errorString, bool bCleanPools) { - LOADING_TIME_PROFILE_SECTION(GetISystem()); - if (!filename) { return 0; @@ -1739,8 +1737,6 @@ XmlNodeRef XmlParserImp::ParseFile(const char* filename, XmlString& errorString, if (g_bEnableBinaryXmlLoading) { - LOADING_TIME_PROFILE_SECTION_NAMED("XMLBinaryReader::Parse"); - XMLBinary::XMLBinaryReader reader; XMLBinary::XMLBinaryReader::EResult result; root = reader.LoadFromBuffer(XMLBinary::XMLBinaryReader::eBufferMemoryHandling_TakeOwnership, pFileContents, fileSize, result); @@ -1760,21 +1756,9 @@ XmlNodeRef XmlParserImp::ParseFile(const char* filename, XmlString& errorString, { // not binary XML - refuse to load if in scripts dir and not in bin xml to help reduce hacking // wish we could compile the text xml parser out, but too much work to get everything moved over - static const char SCRIPTS_DIR[] = "Scripts/"; - AZStd::fixed_string<32> strScripts("S"); - strScripts += "c"; - strScripts += "r"; - strScripts += "i"; - strScripts += "p"; - strScripts += "t"; - strScripts += "s"; - strScripts += "/"; + constexpr AZStd::fixed_string<32> strScripts{"Scripts/"}; // exclude files and PAKs from Mods folder - AZStd::fixed_string<8> modsStr("M"); - modsStr += "o"; - modsStr += "d"; - modsStr += "s"; - modsStr += "/"; + constexpr AZStd::fixed_string<8> modsStr{"Mods/"}; if (_strnicmp(filename, strScripts.c_str(), strScripts.length()) == 0 && _strnicmp(adjustedFilename.c_str(), modsStr.c_str(), modsStr.length()) != 0 && _strnicmp(pakPath.c_str(), modsStr.c_str(), modsStr.length()) != 0) diff --git a/Code/Legacy/CrySystem/XML/xml.h b/Code/Legacy/CrySystem/XML/xml.h index cb20c351f4..912767eae7 100644 --- a/Code/Legacy/CrySystem/XML/xml.h +++ b/Code/Legacy/CrySystem/XML/xml.h @@ -6,14 +6,10 @@ * */ - -#ifndef CRYINCLUDE_CRYSYSTEM_XML_XML_H -#define CRYINCLUDE_CRYSYSTEM_XML_XML_H #pragma once #include -#include #include #include "IXml.h" @@ -344,9 +340,6 @@ private: friend class XmlParserImp; }; -typedef stl::PoolAllocatorNoMT CXmlNode_PoolAlloc; -extern CXmlNode_PoolAlloc* g_pCXmlNode_PoolAlloc; - #ifdef CRY_COLLECT_XML_NODE_STATS typedef std::set TXmlNodeSet; // yes, slow, but really only for one-shot debugging struct SXmlNodeStats @@ -361,35 +354,6 @@ struct SXmlNodeStats extern SXmlNodeStats* g_pCXmlNode_Stats; #endif -/* -////////////////////////////////////////////////////////////////////////// -inline void* CXmlNode::operator new( size_t nSize ) -{ - void *ptr = g_pCXmlNode_PoolAlloc->Allocate(); - if (ptr) - { - memset( ptr,0,nSize ); // Clear objects memory. -#ifdef CRY_COLLECT_XML_NODE_STATS - g_pCXmlNode_Stats->nodeSet.insert(reinterpret_cast (ptr)); - ++g_pCXmlNode_Stats->nAllocs; -#endif - } - return ptr; -} - -////////////////////////////////////////////////////////////////////////// -inline void CXmlNode::operator delete( void *ptr ) -{ - if (ptr) - { - g_pCXmlNode_PoolAlloc->Deallocate(ptr); -#ifdef CRY_COLLECT_XML_NODE_STATS - g_pCXmlNode_Stats->nodeSet.erase(reinterpret_cast (ptr)); - ++g_pCXmlNode_Stats->nFrees; -#endif - } -} -*/ ////////////////////////////////////////////////////////////////////////// // @@ -434,6 +398,3 @@ private: unsigned int m_nAllocated; std::stack m_pNodePool; }; - - -#endif // CRYINCLUDE_CRYSYSTEM_XML_XML_H diff --git a/Code/Tools/AssetBundler/source/ui/AddSeedDialog.h b/Code/Tools/AssetBundler/source/ui/AddSeedDialog.h index 436db64693..c24e724994 100644 --- a/Code/Tools/AssetBundler/source/ui/AddSeedDialog.h +++ b/Code/Tools/AssetBundler/source/ui/AddSeedDialog.h @@ -47,7 +47,6 @@ namespace AssetBundler QSharedPointer m_ui; QString m_platformSpecificCachePath; - bool m_isAddSeedDialog = false; AZStd::string m_fileName; diff --git a/Code/Tools/AssetBundler/source/utils/applicationManager.cpp b/Code/Tools/AssetBundler/source/utils/applicationManager.cpp index f9b779a2d7..0742035c1a 100644 --- a/Code/Tools/AssetBundler/source/utils/applicationManager.cpp +++ b/Code/Tools/AssetBundler/source/utils/applicationManager.cpp @@ -23,7 +23,6 @@ #include #include -#include #include #include #include @@ -169,7 +168,6 @@ namespace AssetBundler if (*iter == azrtti_typeid() || *iter == azrtti_typeid() || *iter == azrtti_typeid() || - *iter == azrtti_typeid() || *iter == azrtti_typeid()) { // Asset Bundler does not require the above components to be active @@ -1401,7 +1399,7 @@ namespace AssetBundler AZStd::string_view{ AZ::Utils::GetEnginePath() }, AZStd::string_view{ AZ::Utils::GetEnginePath() }, AZStd::string_view{ AZ::Utils::GetProjectPath() }); - auto platformsString = AzFramework::PlatformHelper::GetCommaSeparatedPlatformList(platformFlags); + [[maybe_unused]] auto platformsString = AzFramework::PlatformHelper::GetCommaSeparatedPlatformList(platformFlags); AZ_TracePrintf(AppWindowName, "No platform specified, defaulting to platforms ( %s ).\n", platformsString.c_str()); return platformFlags; diff --git a/Code/Tools/AssetBundler/source/utils/utils.cpp b/Code/Tools/AssetBundler/source/utils/utils.cpp index 12830166b7..6daf3c571b 100644 --- a/Code/Tools/AssetBundler/source/utils/utils.cpp +++ b/Code/Tools/AssetBundler/source/utils/utils.cpp @@ -110,7 +110,6 @@ namespace AssetBundler const char RestrictedDirectoryName[] = "restricted"; const char PlatformsDirectoryName[] = "Platforms"; const char GemsDirectoryName[] = "Gems"; - const char GemsAssetsDirectoryName[] = "Assets"; const char GemsSeedFileName[] = "seedList"; const char EngineSeedFileName[] = "SeedAssetList"; diff --git a/Code/Tools/AssetProcessor/AssetBuilder/CMakeLists.txt b/Code/Tools/AssetProcessor/AssetBuilder/CMakeLists.txt index 64655c5164..6baa99d43b 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/CMakeLists.txt +++ b/Code/Tools/AssetProcessor/AssetBuilder/CMakeLists.txt @@ -39,6 +39,7 @@ ly_add_source_properties( ) if(TARGET AssetBuilder) + ly_set_gem_variant_to_load(TARGETS AssetBuilder VARIANTS Builders) # Adds the AssetBuilder target as a C preprocessor define so that it can be used as a Settings Registry # specialization in order to look up the generated .setreg which contains the dependencies # specified for the AssetBuilder in the /Gem/Code/CMakeLists via ly_add_project_dependencies diff --git a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.cpp b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.cpp index b5cb0dbd04..d6c4661c15 100644 --- a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.cpp @@ -74,6 +74,10 @@ namespace AssetBuilderSDK { return AssetBuilderSDK::Platform_PC; } + if (azstricmp(newPlatformName, "linux") == 0) + { + return AssetBuilderSDK::Platform_LINUX; + } if (azstricmp(newPlatformName, "android") == 0) { return AssetBuilderSDK::Platform_ANDROID; diff --git a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.h b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.h index cea1a530f2..c85c45dd3e 100644 --- a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.h +++ b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.h @@ -144,15 +144,16 @@ namespace AssetBuilderSDK { Platform_NONE = 0x00, Platform_PC = 0x01, - Platform_ANDROID = 0x02, - Platform_IOS = 0x04, - Platform_MAC = 0x08, + Platform_LINUX = 0x02, + Platform_ANDROID = 0x04, + Platform_IOS = 0x08, + Platform_MAC = 0x10, Platform_PROVO = 0x20, Platform_SALEM = 0x40, Platform_JASPER = 0x80, //! if you add a new platform entry to this enum, you must add it to allplatforms as well otherwise that platform would not be considered valid. - AllPlatforms = Platform_PC | Platform_ANDROID | Platform_IOS | Platform_MAC | Platform_PROVO | Platform_SALEM | Platform_JASPER + AllPlatforms = Platform_PC | Platform_LINUX | Platform_ANDROID | Platform_IOS | Platform_MAC | Platform_PROVO | Platform_SALEM | Platform_JASPER }; #endif // defined(ENABLE_LEGACY_PLATFORMFLAGS_SUPPORT) //! Map data structure to holder parameters that are passed into a job for ProcessJob requests. diff --git a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/SerializationDependencies.cpp b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/SerializationDependencies.cpp index 06d076dcfe..9e826faabb 100644 --- a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/SerializationDependencies.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/SerializationDependencies.cpp @@ -101,7 +101,6 @@ namespace AssetBuilderSDK for (const auto& thisEntry : productDependencySet) { - constexpr int flags = 0; productDependencies.emplace_back(thisEntry.first, thisEntry.second); } } diff --git a/Code/Tools/AssetProcessor/CMakeLists.txt b/Code/Tools/AssetProcessor/CMakeLists.txt index f10e4a9e05..431a167163 100644 --- a/Code/Tools/AssetProcessor/CMakeLists.txt +++ b/Code/Tools/AssetProcessor/CMakeLists.txt @@ -81,6 +81,7 @@ ly_add_target( # specialization in order to look up the generated .setreg which contains the dependencies # specified for the target. if(TARGET AssetProcessor) + ly_set_gem_variant_to_load(TARGETS AssetProcessor VARIANTS Builders) set_source_files_properties( native/AssetProcessorBuildTarget.cpp PROPERTIES @@ -130,6 +131,7 @@ endif() # specialization in order to look up the generated .setreg which contains the dependencies # specified for the target. if(TARGET AssetProcessorBatch) + ly_set_gem_variant_to_load(TARGETS AssetProcessorBatch VARIANTS Builders) set_source_files_properties( native/AssetProcessorBatchBuildTarget.cpp PROPERTIES diff --git a/Code/Tools/AssetProcessor/Platform/Linux/native/FileWatcher/FileWatcher_linux.cpp b/Code/Tools/AssetProcessor/Platform/Linux/native/FileWatcher/FileWatcher_linux.cpp index 96f3dfb5e6..ea458ba826 100644 --- a/Code/Tools/AssetProcessor/Platform/Linux/native/FileWatcher/FileWatcher_linux.cpp +++ b/Code/Tools/AssetProcessor/Platform/Linux/native/FileWatcher/FileWatcher_linux.cpp @@ -192,7 +192,6 @@ void FolderRootWatch::WatchFolderLoop() for (size_t index=0; indexname; if (event->mask & (IN_CREATE | IN_DELETE | IN_MODIFY | IN_MOVE )) { diff --git a/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json b/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json index 2c6bbd2282..52b242ba4a 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json +++ b/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json @@ -33,6 +33,7 @@ { "idiom" : "mac", "size" : "256x256", + "filename" : "icon_256x256.png", "scale" : "1x" }, { @@ -43,7 +44,6 @@ { "size" : "512x512", "idiom" : "mac", - "filename" : "icon_512x512.png", "scale" : "1x" }, { diff --git a/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256x256.png b/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256x256.png new file mode 100644 index 0000000000..50610c7ff4 --- /dev/null +++ b/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256x256.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f16c891aaa1686a3735fe84c7a69c3cef24e68af7baa86bf2f54ab4d51b71e8 +size 8489 diff --git a/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512x512.png b/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512x512.png deleted file mode 100644 index 99123c81ee..0000000000 --- a/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512x512.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a396a13d3bc7ca074cdc6fdd072ba18c2e359bd24408783809b6c90adf23e22a -size 21937 diff --git a/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AssetProcessorAppIcon.appiconset/Contents.json b/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AssetProcessorAppIcon.appiconset/Contents.json index 2c6bbd2282..52b242ba4a 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AssetProcessorAppIcon.appiconset/Contents.json +++ b/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AssetProcessorAppIcon.appiconset/Contents.json @@ -33,6 +33,7 @@ { "idiom" : "mac", "size" : "256x256", + "filename" : "icon_256x256.png", "scale" : "1x" }, { @@ -43,7 +44,6 @@ { "size" : "512x512", "idiom" : "mac", - "filename" : "icon_512x512.png", "scale" : "1x" }, { diff --git a/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AssetProcessorAppIcon.appiconset/icon_256x256.png b/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AssetProcessorAppIcon.appiconset/icon_256x256.png new file mode 100644 index 0000000000..50610c7ff4 --- /dev/null +++ b/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AssetProcessorAppIcon.appiconset/icon_256x256.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f16c891aaa1686a3735fe84c7a69c3cef24e68af7baa86bf2f54ab4d51b71e8 +size 8489 diff --git a/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AssetProcessorAppIcon.appiconset/icon_512x512.png b/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AssetProcessorAppIcon.appiconset/icon_512x512.png deleted file mode 100644 index 99123c81ee..0000000000 --- a/Code/Tools/AssetProcessor/Platform/Mac/Images.xcassets/AssetProcessorAppIcon.appiconset/icon_512x512.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a396a13d3bc7ca074cdc6fdd072ba18c2e359bd24408783809b6c90adf23e22a -size 21937 diff --git a/Code/Tools/AssetProcessor/Platform/Mac/main_dummy.cpp b/Code/Tools/AssetProcessor/Platform/Mac/main_dummy.cpp index 12832cc488..3eed37e555 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/main_dummy.cpp +++ b/Code/Tools/AssetProcessor/Platform/Mac/main_dummy.cpp @@ -66,8 +66,8 @@ int main(int argc, char* argv[]) processLaunchInfo.m_environmentVariables = &envVars; processLaunchInfo.m_showWindow = true; - AzFramework::ProcessWatcher* processWatcher = AzFramework::ProcessWatcher::LaunchProcess(processLaunchInfo, AzFramework::ProcessCommunicationType::COMMUNICATOR_TYPE_NONE); - + AzFramework::ProcessLauncher::LaunchUnwatchedProcess(processLaunchInfo); + application.Destroy(); return 0; diff --git a/Code/Tools/AssetProcessor/native/AssetDatabase/AssetDatabase.cpp b/Code/Tools/AssetProcessor/native/AssetDatabase/AssetDatabase.cpp index 8c334c4468..9be991eb0b 100644 --- a/Code/Tools/AssetProcessor/native/AssetDatabase/AssetDatabase.cpp +++ b/Code/Tools/AssetProcessor/native/AssetDatabase/AssetDatabase.cpp @@ -174,12 +174,6 @@ namespace AssetProcessor static const char* CREATEINDEX_TYPEOFDEPENDENCY_SOURCEDEPENDENCY = "AssetProcessor::CreateIndexTypeOfDependency_SourceDependency"; static const char* CREATEINDEX_TYPEOFDEPENDENCY_SOURCEDEPENDENCY_STATEMENT = "CREATE INDEX IF NOT EXISTS TypeOfDependency_SourceDependency ON SourceDependency (TypeOfDependency);"; - - static const char* CREATEINDEX_SCANFOLDERS_SOURCES = "AssetProcesser::CreateIndexScanFoldersSources"; - static const char* CREATEINDEX_SCANFOLDERS_SOURCES_STATEMENT = - "CREATE INDEX IF NOT EXISTS ScanFolders_Sources ON Sources (ScanFolderPK);"; - static const char* DROPINDEX_SCANFOLDERS_SOURCES_STATEMENT = - "DROP INDEX IF EXISTS ScanFolders_Sources_idx;"; static const char* CREATEINDEX_SCANFOLDERS_SOURCES_SCANFOLDER = "AssetProcesser::CreateIndexScanFoldersSourcesScanFolder"; static const char* CREATEINDEX_SCANFOLDERS_SOURCES_SCANFOLDER_STATEMENT = @@ -188,20 +182,14 @@ namespace AssetProcessor static const char* CREATEINDEX_SOURCES_JOBS = "AssetProcesser::CreateIndexSourcesJobs"; static const char* CREATEINDEX_SOURCES_JOBS_STATEMENT = "CREATE INDEX IF NOT EXISTS Sources_Jobs ON Jobs (SourcePK);"; - static const char* DROPINDEX_SOURCES_JOBS_STATEMENT = - "DROP INDEX IF EXISTS Sources_Jobs_idx;"; static const char* CREATEINDEX_JOBS_PRODUCTS = "AssetProcesser::CreateIndexJobsProducts"; static const char* CREATEINDEX_JOBS_PRODUCTS_STATEMENT = "CREATE INDEX IF NOT EXISTS Jobs_Products ON Products (JobPK);"; - static const char* DROPINDEX_JOBS_PRODUCTS_STATEMENT = - "DROP INDEX IF EXISTS Jobs_Products_idx;"; static const char* CREATEINDEX_SOURCE_NAME = "AssetProcessor::CreateIndexSourceName"; static const char* CREATEINDEX_SOURCE_NAME_STATEMENT = "CREATE INDEX IF NOT EXISTS Sources_SourceName ON Sources (SourceName);"; - static const char* DROPINDEX_SOURCE_NAME_STATEMENT = - "DROP INDEX IF EXISTS Sources_SourceName_idx;"; static const char* CREATEINDEX_SOURCE_GUID = "AssetProcessor::CreateIndexSourceGuid"; static const char* CREATEINDEX_SOURCE_GUID_STATEMENT = @@ -210,8 +198,6 @@ namespace AssetProcessor static const char* CREATEINDEX_PRODUCT_NAME = "AssetProcessor::CreateIndexProductName"; static const char* CREATEINDEX_PRODUCT_NAME_STATEMENT = "CREATE INDEX IF NOT EXISTS Products_ProductName ON Products (ProductName);"; - static const char* DROPINDEX_PRODUCT_NAME_STATEMENT = - "DROP INDEX IF EXISTS Products_ProductName_idx;"; static const char* CREATEINDEX_PRODUCT_SUBID = "AssetProcessor::CreateIndexProductSubID"; static const char* CREATEINDEX_PRODUCT_SUBID_STATEMENT = @@ -772,6 +758,14 @@ namespace AssetProcessor "FileID = :fileid;"; static const auto s_DeleteFileQuery = MakeSqlQuery(DELETE_FILE, DELETE_FILE_STATEMENT, LOG_NAME, SqlParam(":fileid")); + + static const char* CREATEINDEX_SOURCEDEPENDENCY_SOURCE = "AssetProcesser::CreateIndexSourceSourceDependency"; + static const char* CREATEINDEX_SOURCEDEPENDENCY_SOURCE_STATEMENT = + "CREATE INDEX IF NOT EXISTS Source_SourceDependency ON SourceDependency (Source);"; + + static const char* DROPINDEX_BUILDERGUID_SOURCE_SOURCEDEPENDENCY = "AssetProcesser::DropIndexBuilderGuid_Source_SourceDependency"; + static const char* DROPINDEX_BUILDERGUID_SOURCE_SOURCEDEPENDENCY_STATEMENT = + "DROP INDEX IF EXISTS BuilderGuid_Source_SourceDependency;"; } AssetDatabaseConnection::AssetDatabaseConnection() @@ -1047,6 +1041,15 @@ namespace AssetProcessor // sqlite doesn't not support altering a table to remove a column // This is fine as the extra OutputPrefix column will not be queried + if (foundVersion == AssetDatabase::DatabaseVersion::RemoveOutputPrefixFromScanFolders) + { + if (m_databaseConnection->ExecuteOneOffStatement(DROPINDEX_BUILDERGUID_SOURCE_SOURCEDEPENDENCY) && m_databaseConnection->ExecuteOneOffStatement(CREATEINDEX_SOURCEDEPENDENCY_SOURCE)) + { + foundVersion = AssetDatabase::DatabaseVersion::AddedSourceIndexForSourceDependencyTable; + AZ_TracePrintf(AssetProcessor::ConsoleChannel, "Upgraded Asset Database to version %i (AddedSourceIndexForSourceDependencyTable)\n", foundVersion) + } + } + if (foundVersion == CurrentDatabaseVersion()) { dropAllTables = false; @@ -1320,6 +1323,12 @@ namespace AssetProcessor m_databaseConnection->AddStatement(CREATEINDEX_SCANFOLDERS_FILES, CREATEINDEX_SCANFOLDERS_FILES_STATEMENT); m_createStatements.push_back(CREATEINDEX_SCANFOLDERS_FILES); + m_databaseConnection->AddStatement(CREATEINDEX_SOURCEDEPENDENCY_SOURCE, CREATEINDEX_SOURCEDEPENDENCY_SOURCE_STATEMENT); + m_createStatements.push_back(CREATEINDEX_SOURCEDEPENDENCY_SOURCE); + + m_databaseConnection->AddStatement(DROPINDEX_BUILDERGUID_SOURCE_SOURCEDEPENDENCY, DROPINDEX_BUILDERGUID_SOURCE_SOURCEDEPENDENCY_STATEMENT); + m_createStatements.push_back(DROPINDEX_BUILDERGUID_SOURCE_SOURCEDEPENDENCY); + m_databaseConnection->AddStatement(DELETE_AUTO_SUCCEED_JOBS, DELETE_AUTO_SUCCEED_JOBS_STATEMENT); } diff --git a/Code/Tools/AssetProcessor/native/AssetManager/AssetRequestHandler.h b/Code/Tools/AssetProcessor/native/AssetManager/AssetRequestHandler.h index 5ebd507685..5fcb2ca730 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/AssetRequestHandler.h +++ b/Code/Tools/AssetProcessor/native/AssetManager/AssetRequestHandler.h @@ -115,7 +115,7 @@ namespace AssetProcessor { static constexpr unsigned int MessageType = TRequest::MessageType; - m_messageHandlers[MessageType] = [this, handler = AZStd::move(handler)](MessageData messageData) + m_messageHandlers[MessageType] = [handler = AZStd::move(handler)](MessageData messageData) { MessageData downcastData = messageData; diff --git a/Code/Tools/AssetProcessor/native/InternalBuilders/SettingsRegistryBuilder.cpp b/Code/Tools/AssetProcessor/native/InternalBuilders/SettingsRegistryBuilder.cpp index 9781c200fd..7c88c4324c 100644 --- a/Code/Tools/AssetProcessor/native/InternalBuilders/SettingsRegistryBuilder.cpp +++ b/Code/Tools/AssetProcessor/native/InternalBuilders/SettingsRegistryBuilder.cpp @@ -337,7 +337,7 @@ namespace AssetProcessor // Merge the Project User and User home settings registry only in non-release builds constexpr bool executeRegDumpCommands = false; AZ::CommandLine* commandLine{}; - AZ::ComponentApplicationBus::Broadcast([®istry, &commandLine](AZ::ComponentApplicationRequests* appRequests) + AZ::ComponentApplicationBus::Broadcast([&commandLine](AZ::ComponentApplicationRequests* appRequests) { commandLine = appRequests->GetAzCommandLine(); }); diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/rcjob.cpp b/Code/Tools/AssetProcessor/native/resourcecompiler/rcjob.cpp index eacff14180..aaf6496f7b 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/rcjob.cpp +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/rcjob.cpp @@ -22,7 +22,6 @@ namespace { - unsigned long s_jobSerial = 1; bool s_typesRegistered = false; // You have up to 60 minutes to finish processing an asset. // This was increased from 10 to account for PVRTC compression diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/rcjoblistmodel.cpp b/Code/Tools/AssetProcessor/native/resourcecompiler/rcjoblistmodel.cpp index d22823b496..a64e3bf5b9 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/rcjoblistmodel.cpp +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/rcjoblistmodel.cpp @@ -197,11 +197,11 @@ namespace AssetProcessor m_jobsInFlight.insert(rcJob); - for(size_t jobIndex = m_jobs.size() - 1; jobIndex >= 0; --jobIndex) + for(int jobIndex = static_cast(m_jobs.size()) - 1; jobIndex >= 0; --jobIndex) { if(m_jobs[jobIndex] == rcJob) { - Q_EMIT dataChanged(index(aznumeric_caster(jobIndex), 0, QModelIndex()), index(aznumeric_caster(jobIndex), 0, QModelIndex())); + Q_EMIT dataChanged(index(jobIndex, 0, QModelIndex()), index(jobIndex, 0, QModelIndex())); return; } } @@ -240,7 +240,7 @@ namespace AssetProcessor foundInQueue = m_jobsInQueueLookup.erase(foundInQueue); } - for (size_t jobIndex = m_jobs.size() - 1; jobIndex >= 0; --jobIndex) + for (int jobIndex = static_cast(m_jobs.size()) - 1; jobIndex >= 0; --jobIndex) { if(m_jobs[jobIndex] == rcJob) { @@ -251,7 +251,7 @@ namespace AssetProcessor #if defined(DEBUG_RCJOB_MODEL) AZ_TracePrintf(AssetProcessor::DebugChannel, "JobTrace =>JobCompleted(%i %s,%s,%s)\n", rcJob, rcJob->GetJobEntry().m_databaseSourceName.toUtf8().constData(), rcJob->GetPlatformInfo().m_identifier.c_str(), rcJob->GetJobKey().toUtf8().constData()); #endif - beginRemoveRows(QModelIndex(), aznumeric_caster(jobIndex), aznumeric_caster(jobIndex)); + beginRemoveRows(QModelIndex(), jobIndex, jobIndex); m_jobs.erase(m_jobs.begin() + jobIndex); endRemoveRows(); diff --git a/Code/Tools/AssetProcessor/native/tests/assetmanager/AssetProcessorManagerTest.cpp b/Code/Tools/AssetProcessor/native/tests/assetmanager/AssetProcessorManagerTest.cpp index 10ecc411ab..48a86dc5f6 100644 --- a/Code/Tools/AssetProcessor/native/tests/assetmanager/AssetProcessorManagerTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/assetmanager/AssetProcessorManagerTest.cpp @@ -3500,7 +3500,6 @@ TEST_F(AssetProcessorManagerTest, JobDependencyOrderOnce_MultipleJobs_EmitOK) using namespace AssetProcessor; using namespace AssetBuilderSDK; - AZ::Uuid dummyBuilderUUID = AZ::Uuid::CreateRandom(); QDir tempPath(m_tempDir.path()); QString watchFolderPath = tempPath.absoluteFilePath("subfolder1"); const ScanFolderInfo* scanFolder = m_config->GetScanFolderByPath(watchFolderPath); diff --git a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCBuilderTest.cpp b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCBuilderTest.cpp index 2465be2b33..9b2a12ecad 100644 --- a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCBuilderTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCBuilderTest.cpp @@ -447,7 +447,6 @@ TEST_F(RCBuilderTest, ProcessLegacyRCJob_ProcessStandardSingleJob_Valid) TEST_F(RCBuilderTest, ProcessLegacyRCJob_ProcessCopySingleJob_Valid) { AZStd::string name = "test"; - AZ::Uuid builderUuid = AZ::Uuid::CreateRandom(); AZ::Uuid assetTypeUUid = AZ::Uuid::CreateRandom(); MockRCCompiler* mockRC = new MockRCCompiler(); TestInternalRecognizerBasedBuilder test(mockRC); @@ -506,7 +505,6 @@ TEST_F(RCBuilderTest, MatchTempFileToSkip_SkipRCFiles_false) TEST_F(RCBuilderTest, ProcessJob_ProcessStandardRCSingleJob_Valid) { - AZ::Uuid assetTypeUUid = AZ::Uuid::CreateRandom(); MockRCCompiler* mockRC = new MockRCCompiler(); TestInternalRecognizerBasedBuilder test(mockRC); MockRecognizerConfiguration configuration; @@ -536,7 +534,6 @@ TEST_F(RCBuilderTest, ProcessJob_ProcessStandardRCSingleJob_Valid) TEST_F(RCBuilderTest, ProcessJob_ProcessStandardRCSingleJob_Failed) { - AZ::Uuid assetTypeUUid = AZ::Uuid::CreateRandom(); MockRCCompiler* mockRC = new MockRCCompiler(); TestInternalRecognizerBasedBuilder test(mockRC); MockRecognizerConfiguration configuration; @@ -564,7 +561,6 @@ TEST_F(RCBuilderTest, ProcessJob_ProcessStandardRCSingleJob_Failed) TEST_F(RCBuilderTest, ProcessJob_ProcessStandardCopySingleJob_Valid) { - AZ::Uuid assetTypeUUid = AZ::Uuid::CreateRandom(); MockRCCompiler* mockRC = new MockRCCompiler(); TestInternalRecognizerBasedBuilder test(mockRC); MockRecognizerConfiguration configuration; @@ -590,7 +586,6 @@ TEST_F(RCBuilderTest, ProcessJob_ProcessStandardCopySingleJob_Valid) TEST_F(RCBuilderTest, ProcessJob_ProcessStandardSkippedSingleJob_Invalid) { - AZ::Uuid assetTypeUUid = AZ::Uuid::CreateRandom(); MockRCCompiler* mockRC = new MockRCCompiler(); TestInternalRecognizerBasedBuilder test(mockRC); MockRecognizerConfiguration configuration; diff --git a/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeModel.cpp b/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeModel.cpp index 1fcdd62cf7..88fbe5a204 100644 --- a/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeModel.cpp +++ b/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeModel.cpp @@ -87,8 +87,6 @@ namespace AssetProcessor return; } - QModelIndex newIndicesStart; - AssetTreeItem* parentItem = m_root.get(); // Use posix path separator for each child item AZ::IO::Path currentFullFolderPath(AZ::IO::PosixPathSeparator); diff --git a/Code/Tools/AssetProcessor/native/unittests/AssetProcessingStateDataUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/AssetProcessingStateDataUnitTests.cpp index 1c9e29c4e8..e19b95a76b 100644 --- a/Code/Tools/AssetProcessor/native/unittests/AssetProcessingStateDataUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/AssetProcessingStateDataUnitTests.cpp @@ -715,12 +715,7 @@ void AssetProcessingStateDataUnitTest::DataTest(AssetProcessor::AssetDatabaseCon //try retrieving this source by id UNIT_TEST_EXPECT_TRUE(stateData->GetJobByJobID(job.m_jobID, job)); - if (job.m_jobID == AzToolsFramework::AssetDatabase::InvalidEntryId || - job.m_jobID != job.m_jobID || - job.m_sourcePK != job.m_sourcePK || - job.m_jobKey != job.m_jobKey || - job.m_fingerprint != job.m_fingerprint || - job.m_platform != job.m_platform) + if (job.m_jobID == AzToolsFramework::AssetDatabase::InvalidEntryId) { Q_EMIT UnitTestFailed("AssetProcessingStateDataTest Failed - GetJobByJobID failed"); return; diff --git a/Code/Tools/AssetProcessor/native/unittests/RCcontrollerUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/RCcontrollerUnitTests.cpp index 0f5fea5eb9..5b15a6a552 100644 --- a/Code/Tools/AssetProcessor/native/unittests/RCcontrollerUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/RCcontrollerUnitTests.cpp @@ -604,14 +604,14 @@ void RCcontrollerUnitTests::RunRCControllerTests() m_rcController.m_RCJobListModel.addNewJob(jobA); bool beginWorkA = false; - QObject::connect(jobA, &RCJob::BeginWork, this, [this, &beginWorkA]() + QObject::connect(jobA, &RCJob::BeginWork, this, [&beginWorkA]() { beginWorkA = true; } ); bool jobFinishedA = false; - QObject::connect(jobA, &RCJob::JobFinished, this, [this, &jobFinishedA](AssetBuilderSDK::ProcessJobResponse /*result*/) + QObject::connect(jobA, &RCJob::JobFinished, this, [&jobFinishedA](AssetBuilderSDK::ProcessJobResponse /*result*/) { jobFinishedA = true; } @@ -655,7 +655,7 @@ void RCcontrollerUnitTests::RunRCControllerTests() ); bool jobFinishedB = false; - QObject::connect(jobB, &RCJob::JobFinished, this, [this, &jobFinishedB](AssetBuilderSDK::ProcessJobResponse /*result*/) + QObject::connect(jobB, &RCJob::JobFinished, this, [&jobFinishedB](AssetBuilderSDK::ProcessJobResponse /*result*/) { jobFinishedB = true; } diff --git a/Code/Tools/AssetProcessor/native/unittests/UtilitiesUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/UtilitiesUnitTests.cpp index ed6fa4b8b4..bbeafda342 100644 --- a/Code/Tools/AssetProcessor/native/unittests/UtilitiesUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/UtilitiesUnitTests.cpp @@ -30,15 +30,6 @@ using namespace AssetProcessor; namespace AssetProcessor { - const char* const TEST_BOOTSTRAP_DATA = - "project_path = TestProject \r\n\ - assets = pc \r\n\ - -- ip and port of the asset processor.Only if you need to change defaults \r\n\ - -- remote_ip = 127.0.0.1 \r\n\ - windows_remote_ip = 127.0.0.7 \r\n\ - remote_port = 45645 \r\n\ - assetProcessor_branch_token = 0xDD814240"; - // simple utility class to make sure threads join and don't cause asserts // if the unit test exits early. class AutoThreadJoiner final @@ -319,13 +310,6 @@ void UtilitiesUnitTests::StartTest() // --------------- TEST FilePatternMatcher { - const char* wildcardMatch[] = { - "*.cfg", - "*.txt", - "abf*.llm" - "sdf.c*", - "a.bcd" - }; { AssetBuilderSDK::FilePatternMatcher extensionWildcardTest(AssetBuilderSDK::AssetBuilderPattern("*.cfg", AssetBuilderSDK::AssetBuilderPattern::Wildcard)); UNIT_TEST_EXPECT_TRUE(extensionWildcardTest.MatchesPath(AZStd::string("foo.cfg"))); diff --git a/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.cpp b/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.cpp index b90364e1c5..4e0bc7e434 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.cpp @@ -1209,7 +1209,7 @@ void ApplicationManagerBase::InitFileProcessor() AssetProcessor::ThreadController* fileProcessorHelper = new AssetProcessor::ThreadController(); addRunningThread(fileProcessorHelper); - m_fileProcessor.reset(fileProcessorHelper->initialize([this, &fileProcessorHelper]() + m_fileProcessor.reset(fileProcessorHelper->initialize([this]() { return new AssetProcessor::FileProcessor(m_platformConfiguration); })); diff --git a/Code/Tools/AssetProcessor/native/utilities/ByteArrayStream.cpp b/Code/Tools/AssetProcessor/native/utilities/ByteArrayStream.cpp index 187c872e08..4a7128be88 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ByteArrayStream.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/ByteArrayStream.cpp @@ -52,7 +52,6 @@ namespace AssetProcessor SizeType finalPosition = GenericStream::ComputeSeekPosition(bytes, mode); AZ_Assert(finalPosition < INT_MAX, "Overflow of SizeType to int in ByteArrayStream."); - AZ_Assert(finalPosition >= 0, "underflow in seek in ByteArrayStream"); AZ_Assert(finalPosition <= m_activeArray->size(), "You cant seek beyond end of file"); // safety clamp! diff --git a/Code/Tools/AssetProcessor/native/utilities/PlatformConfiguration.cpp b/Code/Tools/AssetProcessor/native/utilities/PlatformConfiguration.cpp index 07106614cf..a1bc508899 100644 --- a/Code/Tools/AssetProcessor/native/utilities/PlatformConfiguration.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/PlatformConfiguration.cpp @@ -681,7 +681,6 @@ namespace AssetProcessor const char AssetConfigPlatformDir[] = "AssetProcessorConfig/"; const char AssetProcessorPlatformConfigFileName[] = "AssetProcessorPlatformConfig.ini"; - const char RestrictedPlatformDir[] = "restricted"; PlatformConfiguration::PlatformConfiguration(QObject* pParent) : QObject(pParent) diff --git a/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp b/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp index 5e005c117d..85801bdf8a 100644 --- a/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp @@ -57,9 +57,6 @@ #include -// windows headers bring in a macro which conflicts GetCommandLine -#undef GetCommandLine - namespace AssetUtilsInternal { static const unsigned int g_RetryWaitInterval = 250; // The amount of time that we are waiting for retry. @@ -72,11 +69,6 @@ namespace AssetUtilsInternal bool FileCopyMoveWithTimeout(QString sourceFile, QString outputFile, bool isCopy, unsigned int waitTimeInSeconds) { - if (waitTimeInSeconds < 0) - { - AZ_Warning("Asset Processor", waitTimeInSeconds >= 0, "Invalid timeout specified by the user"); - waitTimeInSeconds = 0; - } bool failureOccurredOnce = false; // used for logging. bool operationSucceeded = false; QFile outFile(outputFile); @@ -1404,7 +1396,6 @@ namespace AssetUtilities QString inputName; QString platformName; QString jobDescription; - AZ::Uuid guid = AZ::Uuid::CreateNull(); using namespace AzToolsFramework::AssetDatabase; diff --git a/Code/Tools/AssetProcessor/testdata/config_regular/AssetProcessorPlatformConfig.setreg b/Code/Tools/AssetProcessor/testdata/config_regular/AssetProcessorPlatformConfig.setreg index c43996f3d5..e4bee1b6de 100644 --- a/Code/Tools/AssetProcessor/testdata/config_regular/AssetProcessorPlatformConfig.setreg +++ b/Code/Tools/AssetProcessor/testdata/config_regular/AssetProcessorPlatformConfig.setreg @@ -14,6 +14,9 @@ "Platform server": { "tags": "server" }, + "Platform linux": { + "tags": "tools,renderer" + }, "Platforms": { "android": "enabled", "server": "enabled" diff --git a/Code/Tools/AssetProcessor/testdata/config_regular_platform_scanfolder/AssetProcessorPlatformConfig.setreg b/Code/Tools/AssetProcessor/testdata/config_regular_platform_scanfolder/AssetProcessorPlatformConfig.setreg index 5fe1071fd5..c8fd13bf1f 100644 --- a/Code/Tools/AssetProcessor/testdata/config_regular_platform_scanfolder/AssetProcessorPlatformConfig.setreg +++ b/Code/Tools/AssetProcessor/testdata/config_regular_platform_scanfolder/AssetProcessorPlatformConfig.setreg @@ -14,6 +14,9 @@ "Platform mac": { "tags": "tools,renderer" }, + "Platform linux": { + "tags": "tools,renderer" + }, "Platform server": { "tags": "server" }, @@ -110,4 +113,4 @@ } } } -} \ No newline at end of file +} diff --git a/Code/Tools/AzTestRunner/Platform/Android/platform_android.cpp b/Code/Tools/AzTestRunner/Platform/Android/platform_android.cpp index 1e4f731b9a..9e0ea304ef 100644 --- a/Code/Tools/AzTestRunner/Platform/Android/platform_android.cpp +++ b/Code/Tools/AzTestRunner/Platform/Android/platform_android.cpp @@ -64,7 +64,7 @@ namespace AzTestRunner { static char cwd_buffer[AZ_MAX_PATH_LEN] = { '\0' }; - AZ::Utils::ExecutablePathResult result = AZ::Utils::GetExecutableDirectory(cwd_buffer, AZ_ARRAY_SIZE(cwd_buffer)); + [[maybe_unused]] AZ::Utils::ExecutablePathResult result = AZ::Utils::GetExecutableDirectory(cwd_buffer, AZ_ARRAY_SIZE(cwd_buffer)); AZ_Assert(result == AZ::Utils::ExecutablePathResult::Success, "Error retrieving executable path"); return static_cast(cwd_buffer); diff --git a/Code/Tools/GridHub/GridHub/main.cpp b/Code/Tools/GridHub/GridHub/main.cpp index bfb82efd0d..3b853910be 100644 --- a/Code/Tools/GridHub/GridHub/main.cpp +++ b/Code/Tools/GridHub/GridHub/main.cpp @@ -361,7 +361,7 @@ public: else { // remove from start up folder - DeleteFile(fullLinkName); + DeleteFileW(fullLinkName); } #endif #if AZ_TRAIT_OS_PLATFORM_APPLE diff --git a/Code/Tools/ProjectManager/Resources/ProjectManager.qss b/Code/Tools/ProjectManager/Resources/ProjectManager.qss index 74acc1c7ef..17c5077d83 100644 --- a/Code/Tools/ProjectManager/Resources/ProjectManager.qss +++ b/Code/Tools/ProjectManager/Resources/ProjectManager.qss @@ -20,8 +20,7 @@ QPushButton:focus { QTabBar { background-color: transparent; } -QTabWidget::tab-bar -{ +QTabWidget::tab-bar { left: 78px; /* make room for the logo */ } QTabBar::tab { @@ -32,27 +31,35 @@ QTabBar::tab { margin-right:40px; border-bottom: 3px solid transparent; } -QTabBar::tab:text -{ +QTabBar::tab:text { text-align:left; } QTabWidget::pane { background-color: #333333; border:0 none; } -QTabBar::tab:selected -{ +QTabBar::tab:selected { + background-color: transparent; border-bottom: 3px solid #1e70eb; color: #1e70eb; + font-weight: 500; } -QTabBar::tab:hover -{ +QTabBar::tab:hover { color: #1e70eb; + font-weight: 500; } -QTabBar::tab:pressed -{ +QTabBar::tab:pressed { color: #0e60eb; } +QTabBar::focus { + outline: 0px; + outline: none; + outline-style: none; +} +QTabBar::tab:focus { + background-color: #525252; + color: #4082eb; +} /************** General (Forms) **************/ @@ -150,15 +157,16 @@ QTabBar::tab:pressed font-size:14px; text-align:left; margin:0; - padding-top:10px; - padding-bottom:-5px; - min-height:15px; - max-height:15px; + padding-top:0px; + padding-bottom:0px; + min-height:20px; + max-height:20px; } #headerSubTitle { font-size:24px; text-align:left; margin:0; + padding-top:-5px; min-height:42px; max-height:42px; } @@ -206,6 +214,10 @@ QTabBar::tab:pressed stop: 0 #555555, stop: 1.0 #777777); } +#horizontalSeparatingLine { + color: #666666; +} + /************** Project Settings **************/ #projectSettings { margin-top:42px; @@ -286,8 +298,6 @@ QTabBar::tab:pressed border:none; } - - #projectSettingsTab::tab-bar { left: 60px; } @@ -353,6 +363,10 @@ QTabBar::tab:pressed color: #1e70eb; } +#firstTimeContent > QPushButton:focus { + border: 1px solid #1e70eb; +} + #firstTimeContent > QPushButton:pressed { border: 1px solid #0e60eb; color: #0e60eb; @@ -393,7 +407,8 @@ QTabBar::tab:pressed } #projectButton > #labelButton:hover, -#projectButton > #labelButton:pressed { +#projectButton > #labelButton:pressed, +#projectButton > #labelButton:focus { border:1px solid #1e70eb; } diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogHeaderWidget.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogHeaderWidget.cpp index ac8cf5d794..909cd93cda 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogHeaderWidget.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogHeaderWidget.cpp @@ -117,7 +117,7 @@ namespace O3DE::ProjectManager gemNames.reserve(gems.size()); for (const QModelIndex& modelIndex : gems) { - gemNames.push_back(GemModel::GetName(modelIndex)); + gemNames.push_back(GemModel::GetDisplayName(modelIndex)); } return gemNames; } diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.cpp index 863f611ec8..04d4d6999b 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.cpp @@ -156,7 +156,7 @@ namespace O3DE::ProjectManager if (!result.IsSuccess()) { QMessageBox::critical(nullptr, "Operation failed", - QString("Cannot add gem %1 to project.\n\nError:\n%2").arg(GemModel::GetName(modelIndex), result.GetError().c_str())); + QString("Cannot add gem %1 to project.\n\nError:\n%2").arg(GemModel::GetDisplayName(modelIndex), result.GetError().c_str())); return false; } @@ -169,7 +169,7 @@ namespace O3DE::ProjectManager if (!result.IsSuccess()) { QMessageBox::critical(nullptr, "Operation failed", - QString("Cannot remove gem %1 from project.\n\nError:\n%2").arg(GemModel::GetName(modelIndex), result.GetError().c_str())); + QString("Cannot remove gem %1 from project.\n\nError:\n%2").arg(GemModel::GetDisplayName(modelIndex), result.GetError().c_str())); return false; } diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemInspector.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemInspector.cpp index 6c1f5f6fec..6dd6c52612 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemInspector.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemInspector.cpp @@ -58,7 +58,7 @@ namespace O3DE::ProjectManager m_mainWidget->hide(); } - m_nameLabel->setText(m_model->GetName(modelIndex)); + m_nameLabel->setText(m_model->GetDisplayName(modelIndex)); m_creatorLabel->setText(m_model->GetCreator(modelIndex)); m_summaryLabel->setText(m_model->GetSummary(modelIndex)); diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp index 21bb56daef..99a2cd8db7 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp @@ -75,7 +75,7 @@ namespace O3DE::ProjectManager } // Gem name - QString gemName = GemModel::GetName(modelIndex); + QString gemName = GemModel::GetDisplayName(modelIndex); QFont gemNameFont(options.font); const int firstColumnMaxTextWidth = s_summaryStartX - 30; gemNameFont.setPixelSize(static_cast(s_gemNameFontSize)); diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.cpp index 3781106bdc..7daea174e7 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.cpp @@ -30,6 +30,7 @@ namespace O3DE::ProjectManager item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable); item->setData(gemInfo.m_name, RoleName); + item->setData(gemInfo.m_displayName, RoleDisplayName); item->setData(gemInfo.m_creator, RoleCreator); item->setData(gemInfo.m_gemOrigin, RoleGemOrigin); item->setData(aznumeric_cast(gemInfo.m_platforms), RolePlatforms); @@ -64,6 +65,20 @@ namespace O3DE::ProjectManager return modelIndex.data(RoleName).toString(); } + QString GemModel::GetDisplayName(const QModelIndex& modelIndex) + { + QString displayName = modelIndex.data(RoleDisplayName).toString(); + + if (displayName.isEmpty()) + { + return GetName(modelIndex); + } + else + { + return displayName; + } + } + QString GemModel::GetCreator(const QModelIndex& modelIndex) { return modelIndex.data(RoleCreator).toString(); @@ -117,7 +132,7 @@ namespace O3DE::ProjectManager QModelIndex modelIndex = FindIndexByNameString(dependingGemString); if (modelIndex.isValid()) { - dependingGemString = GetName(modelIndex); + dependingGemString = GetDisplayName(modelIndex); } } } diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.h index 19172d8073..ce004ee875 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.h @@ -37,6 +37,7 @@ namespace O3DE::ProjectManager QStringList GetConflictingGemNames(const QModelIndex& modelIndex); static QString GetName(const QModelIndex& modelIndex); + static QString GetDisplayName(const QModelIndex& modelIndex); static QString GetCreator(const QModelIndex& modelIndex); static GemInfo::GemOrigin GetGemOrigin(const QModelIndex& modelIndex); static GemInfo::Platforms GetPlatforms(const QModelIndex& modelIndex); @@ -69,6 +70,7 @@ namespace O3DE::ProjectManager enum UserRole { RoleName = Qt::UserRole, + RoleDisplayName, RoleCreator, RoleGemOrigin, RolePlatforms, diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDelegate.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDelegate.cpp index 0d5f752858..0ca5ca836f 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDelegate.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDelegate.cpp @@ -51,7 +51,7 @@ namespace O3DE::ProjectManager painter->fillRect(itemRect, itemBackgroundColor); // Gem name - QString gemName = GemModel::GetName(modelIndex); + QString gemName = GemModel::GetDisplayName(modelIndex); QFont gemNameFont(options.font); const int firstColumnMaxTextWidth = s_summaryStartX - 30; gemName = QFontMetrics(gemNameFont).elidedText(gemName, Qt::TextElideMode::ElideRight, firstColumnMaxTextWidth); diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemSortFilterProxyModel.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemSortFilterProxyModel.cpp index fbcf395910..6edfced6e5 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemSortFilterProxyModel.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemSortFilterProxyModel.cpp @@ -28,9 +28,26 @@ namespace O3DE::ProjectManager return false; } - if (!m_sourceModel->GetName(sourceIndex).contains(m_searchString, Qt::CaseInsensitive)) + // Search Bar + if (!m_sourceModel->GetDisplayName(sourceIndex).contains(m_searchString, Qt::CaseInsensitive) && + !m_sourceModel->GetName(sourceIndex).contains(m_searchString, Qt::CaseInsensitive) && + !m_sourceModel->GetCreator(sourceIndex).contains(m_searchString, Qt::CaseInsensitive) && + !m_sourceModel->GetSummary(sourceIndex).contains(m_searchString, Qt::CaseInsensitive)) { - return false; + bool foundFeature = false; + for (const QString& feature : m_sourceModel->GetFeatures(sourceIndex)) + { + if (feature.contains(m_searchString, Qt::CaseInsensitive)) + { + foundFeature = true; + break; + } + } + + if (!foundFeature) + { + return false; + } } // Gem status diff --git a/Code/Tools/ProjectManager/Source/ProjectBuilderController.cpp b/Code/Tools/ProjectManager/Source/ProjectBuilderController.cpp index 0ff963e539..7981e9d758 100644 --- a/Code/Tools/ProjectManager/Source/ProjectBuilderController.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectBuilderController.cpp @@ -52,6 +52,7 @@ namespace O3DE::ProjectManager if (projectButton) { + projectButton->SetProjectBuilding(); projectButton->SetProjectButtonAction(tr("Cancel Build"), [this] { HandleCancel(); }); if (m_lastProgress != 0) @@ -111,6 +112,10 @@ namespace O3DE::ProjectManager emit Done(false); return; } + else + { + m_projectInfo.m_buildFailed = false; + } emit Done(true); } diff --git a/Code/Tools/ProjectManager/Source/ProjectButtonWidget.cpp b/Code/Tools/ProjectManager/Source/ProjectButtonWidget.cpp index 82b4e8d84a..0f51524341 100644 --- a/Code/Tools/ProjectManager/Source/ProjectButtonWidget.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectButtonWidget.cpp @@ -162,22 +162,9 @@ namespace O3DE::ProjectManager QDesktopServices::openUrl(m_logUrl); } - ProjectButton::ProjectButton(const ProjectInfo& projectInfo, QWidget* parent, bool processing) + ProjectButton::ProjectButton(const ProjectInfo& projectInfo, QWidget* parent) : QFrame(parent) , m_projectInfo(projectInfo) - { - BaseSetup(); - if (processing) - { - ProcessingSetup(); - } - else - { - ReadySetup(); - } - } - - void ProjectButton::BaseSetup() { setObjectName("projectButton"); @@ -199,50 +186,64 @@ namespace O3DE::ProjectManager } m_projectImageLabel->setPixmap(QPixmap(projectPreviewPath).scaled(m_projectImageLabel->size(), Qt::KeepAspectRatioByExpanding)); - m_projectFooter = new QFrame(this); + QFrame* projectFooter = new QFrame(this); QHBoxLayout* hLayout = new QHBoxLayout(); hLayout->setContentsMargins(0, 0, 0, 0); - m_projectFooter->setLayout(hLayout); + projectFooter->setLayout(hLayout); { QLabel* projectNameLabel = new QLabel(m_projectInfo.GetProjectDisplayName(), this); + projectNameLabel->setToolTip(m_projectInfo.m_path); hLayout->addWidget(projectNameLabel); + + QMenu* menu = new QMenu(this); + menu->addAction(tr("Edit Project Settings..."), this, [this]() { emit EditProject(m_projectInfo.m_path); }); + menu->addAction(tr("Build"), this, [this]() { emit BuildProject(m_projectInfo); }); + menu->addSeparator(); + menu->addAction(tr("Open Project folder..."), this, [this]() + { + AzQtComponents::ShowFileOnDesktop(m_projectInfo.m_path); + }); + menu->addSeparator(); + menu->addAction(tr("Duplicate"), this, [this]() { emit CopyProject(m_projectInfo); }); + menu->addSeparator(); + menu->addAction(tr("Remove from O3DE"), this, [this]() { emit RemoveProject(m_projectInfo.m_path); }); + menu->addAction(tr("Delete this Project"), this, [this]() { emit DeleteProject(m_projectInfo.m_path); }); + + m_projectMenuButton = new QPushButton(this); + m_projectMenuButton->setObjectName("projectMenuButton"); + m_projectMenuButton->setMenu(menu); + hLayout->addWidget(m_projectMenuButton); } - vLayout->addWidget(m_projectFooter); + vLayout->addWidget(projectFooter); + + connect(m_projectImageLabel->GetOpenEditorButton(), &QPushButton::clicked, [this](){ emit OpenProject(m_projectInfo.m_path); }); } - void ProjectButton::ProcessingSetup() + const ProjectInfo& ProjectButton::GetProjectInfo() const { - m_projectImageLabel->SetEnabled(false); - m_projectImageLabel->SetOverlayText(tr("Processing...\n\n")); + return m_projectInfo; + } + + void ProjectButton::RestoreDefaultState() + { + m_projectImageLabel->SetEnabled(true); + m_projectImageLabel->SetOverlayText(""); + m_projectMenuButton->setVisible(true); QProgressBar* progressBar = m_projectImageLabel->GetProgressBar(); - progressBar->setVisible(true); + progressBar->setVisible(false); progressBar->setValue(0); - } - void ProjectButton::ReadySetup() - { - connect(m_projectImageLabel->GetOpenEditorButton(), &QPushButton::clicked, [this](){ emit OpenProject(m_projectInfo.m_path); }); + QPushButton* projectActionButton = m_projectImageLabel->GetActionButton(); + projectActionButton->setVisible(false); + if (m_actionButtonConnection) + { + disconnect(m_actionButtonConnection); + } - QMenu* menu = new QMenu(this); - menu->addAction(tr("Edit Project Settings..."), this, [this]() { emit EditProject(m_projectInfo.m_path); }); - menu->addAction(tr("Build"), this, [this]() { emit BuildProject(m_projectInfo); }); - menu->addSeparator(); - menu->addAction(tr("Open Project folder..."), this, [this]() - { - AzQtComponents::ShowFileOnDesktop(m_projectInfo.m_path); - }); - menu->addSeparator(); - menu->addAction(tr("Duplicate"), this, [this]() { emit CopyProject(m_projectInfo); }); - menu->addSeparator(); - menu->addAction(tr("Remove from O3DE"), this, [this]() { emit RemoveProject(m_projectInfo.m_path); }); - menu->addAction(tr("Delete this Project"), this, [this]() { emit DeleteProject(m_projectInfo.m_path); }); - - QPushButton* projectMenuButton = new QPushButton(this); - projectMenuButton->setObjectName("projectMenuButton"); - projectMenuButton->setMenu(menu); - m_projectFooter->layout()->addWidget(projectMenuButton); + m_projectImageLabel->GetWarningIcon()->setVisible(false); + m_projectImageLabel->GetWarningLabel()->setVisible(false); } void ProjectButton::SetProjectButtonAction(const QString& text, AZStd::function lambda) @@ -292,9 +293,15 @@ namespace O3DE::ProjectManager SetProjectButtonAction(tr("Build Project"), [this]() { emit BuildProject(m_projectInfo); }); } - void ProjectButton::BuildThisProject() + void ProjectButton::SetProjectBuilding() { - emit BuildProject(m_projectInfo); + m_projectImageLabel->SetEnabled(false); + m_projectImageLabel->SetOverlayText(tr("Building...\n\n")); + m_projectMenuButton->setVisible(false); + + QProgressBar* progressBar = m_projectImageLabel->GetProgressBar(); + progressBar->setVisible(true); + progressBar->setValue(0); } void ProjectButton::SetLaunchButtonEnabled(bool enabled) diff --git a/Code/Tools/ProjectManager/Source/ProjectButtonWidget.h b/Code/Tools/ProjectManager/Source/ProjectButtonWidget.h index ff352e0afd..9f64b74eab 100644 --- a/Code/Tools/ProjectManager/Source/ProjectButtonWidget.h +++ b/Code/Tools/ProjectManager/Source/ProjectButtonWidget.h @@ -56,13 +56,14 @@ namespace O3DE::ProjectManager void OnLinkActivated(const QString& link); private: - QVBoxLayout* m_buildOverlayLayout; - QLabel* m_overlayLabel; - QProgressBar* m_progressBar; - QPushButton* m_openEditorButton; - QPushButton* m_actionButton; - QLabel* m_warningText; - QLabel* m_warningIcon; + QVBoxLayout* m_buildOverlayLayout = nullptr; + QLabel* m_overlayLabel = nullptr; + QProgressBar* m_progressBar = nullptr; + QPushButton* m_openEditorButton = nullptr; + QPushButton* m_actionButton = nullptr; + QLabel* m_warningText = nullptr; + QLabel* m_warningIcon = nullptr; + QUrl m_logUrl; bool m_enabled = true; }; @@ -73,13 +74,18 @@ namespace O3DE::ProjectManager Q_OBJECT // AUTOMOC public: - explicit ProjectButton(const ProjectInfo& m_projectInfo, QWidget* parent = nullptr, bool processing = false); + explicit ProjectButton(const ProjectInfo& m_projectInfo, QWidget* parent = nullptr); ~ProjectButton() = default; + const ProjectInfo& GetProjectInfo() const; + + void RestoreDefaultState(); + void SetProjectButtonAction(const QString& text, AZStd::function lambda); void SetProjectBuildButtonAction(); void SetBuildLogsLink(const QUrl& logUrl); void ShowBuildFailed(bool show, const QUrl& logUrl); + void SetProjectBuilding(); void SetLaunchButtonEnabled(bool enabled); void SetButtonOverlayText(const QString& text); @@ -95,17 +101,14 @@ namespace O3DE::ProjectManager void BuildProject(const ProjectInfo& projectInfo); private: - void BaseSetup(); - void ProcessingSetup(); - void ReadySetup(); void enterEvent(QEvent* event) override; void leaveEvent(QEvent* event) override; - void BuildThisProject(); ProjectInfo m_projectInfo; - LabelButton* m_projectImageLabel; - QFrame* m_projectFooter; - QLayout* m_requiresBuildLayout; + + LabelButton* m_projectImageLabel = nullptr; + QPushButton* m_projectMenuButton = nullptr; + QLayout* m_requiresBuildLayout = nullptr; QMetaObject::Connection m_actionButtonConnection; }; diff --git a/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp b/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp index e27eedd122..81d4047db5 100644 --- a/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp @@ -65,12 +65,20 @@ namespace O3DE::ProjectManager vLayout->addWidget(m_stack); connect(reinterpret_cast(parent), &ScreensCtrl::NotifyBuildProject, this, &ProjectsScreen::SuggestBuildProject); + + // Will focus whatever button it finds so the Project tab is not focused on start-up + QTimer::singleShot(0, this, [this] + { + QPushButton* foundButton = m_stack->currentWidget()->findChild(); + if (foundButton) + { + foundButton->setFocus(); + } + }); } ProjectsScreen::~ProjectsScreen() - { - delete m_currentBuilder; } QFrame* ProjectsScreen::CreateFirstTimeContent() @@ -114,10 +122,8 @@ namespace O3DE::ProjectManager return frame; } - QFrame* ProjectsScreen::CreateProjectsContent(QString buildProjectPath, ProjectButton** projectButton) + QFrame* ProjectsScreen::CreateProjectsContent() { - RemoveInvalidProjects(); - QFrame* frame = new QFrame(this); frame->setObjectName("projectsContent"); { @@ -126,7 +132,7 @@ namespace O3DE::ProjectManager layout->setContentsMargins(0, 0, 0, 0); frame->setLayout(layout); - QFrame* header = new QFrame(this); + QFrame* header = new QFrame(frame); QHBoxLayout* headerLayout = new QHBoxLayout(); { QLabel* titleLabel = new QLabel(tr("My Projects"), this); @@ -150,87 +156,34 @@ namespace O3DE::ProjectManager layout->addWidget(header); - // Get all projects and create a horizontal scrolling list of them - auto projectsResult = PythonBindingsInterface::Get()->GetProjects(); - if (projectsResult.IsSuccess() && !projectsResult.GetValue().isEmpty()) - { - QScrollArea* projectsScrollArea = new QScrollArea(this); - QWidget* scrollWidget = new QWidget(); + QScrollArea* projectsScrollArea = new QScrollArea(this); + QWidget* scrollWidget = new QWidget(); - FlowLayout* flowLayout = new FlowLayout(0, s_spacerSize, s_spacerSize); - scrollWidget->setLayout(flowLayout); + m_projectsFlowLayout = new FlowLayout(0, s_spacerSize, s_spacerSize); + scrollWidget->setLayout(m_projectsFlowLayout); - projectsScrollArea->setWidget(scrollWidget); - projectsScrollArea->setWidgetResizable(true); + projectsScrollArea->setWidget(scrollWidget); + projectsScrollArea->setWidgetResizable(true); - QVector nonProcessingProjects; - buildProjectPath = QDir::fromNativeSeparators(buildProjectPath); - for (auto& project : projectsResult.GetValue()) - { - if (projectButton && !*projectButton) - { - if (QDir::fromNativeSeparators(project.m_path) == buildProjectPath) - { - *projectButton = CreateProjectButton(project, flowLayout, true); - continue; - } - } + ResetProjectsContent(); - nonProcessingProjects.append(project); - } - - for (auto& project : nonProcessingProjects) - { - ProjectButton* projectButtonWidget = CreateProjectButton(project, flowLayout); - - if (BuildQueueContainsProject(project.m_path)) - { - projectButtonWidget->SetProjectButtonAction(tr("Cancel Queued Build"), - [this, project] - { - UnqueueBuildProject(project); - SuggestBuildProjectMsg(project, false); - }); - } - else if (RequiresBuildProjectIterator(project.m_path) != m_requiresBuild.end()) - { - auto buildProjectIterator = RequiresBuildProjectIterator(project.m_path); - if (buildProjectIterator != m_requiresBuild.end()) - { - if (buildProjectIterator->m_buildFailed) - { - projectButtonWidget->ShowBuildFailed(true, buildProjectIterator->m_logUrl); - } - else - { - projectButtonWidget->SetProjectBuildButtonAction(); - } - } - - } - } - - layout->addWidget(projectsScrollArea); - } + layout->addWidget(projectsScrollArea); } return frame; } - ProjectButton* ProjectsScreen::CreateProjectButton(ProjectInfo& project, QLayout* flowLayout, bool processing) + ProjectButton* ProjectsScreen::CreateProjectButton(const ProjectInfo& project) { - ProjectButton* projectButton = new ProjectButton(project, this, processing); + ProjectButton* projectButton = new ProjectButton(project, this); + m_projectButtons.insert(QDir::toNativeSeparators(project.m_path), projectButton); + m_projectsFlowLayout->addWidget(projectButton); - flowLayout->addWidget(projectButton); - - if (!processing) - { - connect(projectButton, &ProjectButton::OpenProject, this, &ProjectsScreen::HandleOpenProject); - connect(projectButton, &ProjectButton::EditProject, this, &ProjectsScreen::HandleEditProject); - connect(projectButton, &ProjectButton::CopyProject, this, &ProjectsScreen::HandleCopyProject); - connect(projectButton, &ProjectButton::RemoveProject, this, &ProjectsScreen::HandleRemoveProject); - connect(projectButton, &ProjectButton::DeleteProject, this, &ProjectsScreen::HandleDeleteProject); - } + connect(projectButton, &ProjectButton::OpenProject, this, &ProjectsScreen::HandleOpenProject); + connect(projectButton, &ProjectButton::EditProject, this, &ProjectsScreen::HandleEditProject); + connect(projectButton, &ProjectButton::CopyProject, this, &ProjectsScreen::HandleCopyProject); + connect(projectButton, &ProjectButton::RemoveProject, this, &ProjectsScreen::HandleRemoveProject); + connect(projectButton, &ProjectButton::DeleteProject, this, &ProjectsScreen::HandleDeleteProject); connect(projectButton, &ProjectButton::BuildProject, this, &ProjectsScreen::QueueBuildProject); return projectButton; @@ -238,29 +191,129 @@ namespace O3DE::ProjectManager void ProjectsScreen::ResetProjectsContent() { - // refresh the projects content by re-creating it for now - if (m_projectsContent) + RemoveInvalidProjects(); + + // Get all projects and create a vertical scrolling list of them + // Sort building and queued projects first + auto projectsResult = PythonBindingsInterface::Get()->GetProjects(); + if (projectsResult.IsSuccess() && !projectsResult.GetValue().isEmpty()) { - m_stack->removeWidget(m_projectsContent); - m_projectsContent->deleteLater(); + QVector projectsVector = projectsResult.GetValue(); + // If a project path is in this set then the button for it will be kept + QSet keepProject; + for (const ProjectInfo& project : projectsVector) + { + keepProject.insert(QDir::toNativeSeparators(project.m_path)); + } + + // Clear flow and delete buttons for removed projects + auto projectButtonsIter = m_projectButtons.begin(); + while (projectButtonsIter != m_projectButtons.end()) + { + m_projectsFlowLayout->removeWidget(projectButtonsIter.value()); + + if (!keepProject.contains(projectButtonsIter.key())) + { + projectButtonsIter.value()->deleteLater(); + projectButtonsIter = m_projectButtons.erase(projectButtonsIter); + } + else + { + ++projectButtonsIter; + } + } + + QString buildProjectPath = ""; + if (m_currentBuilder) + { + buildProjectPath = QDir::toNativeSeparators(m_currentBuilder->GetProjectInfo().m_path); + } + + // Put currently building project in front, then queued projects, then sorts alphabetically + std::sort(projectsVector.begin(), projectsVector.end(), [buildProjectPath, this](const ProjectInfo& arg1, const ProjectInfo& arg2) + { + if (arg1.m_path == buildProjectPath) + { + return true; + } + else if (arg2.m_path == buildProjectPath) + { + return false; + } + + bool arg1InBuildQueue = BuildQueueContainsProject(arg1.m_path); + bool arg2InBuildQueue = BuildQueueContainsProject(arg2.m_path); + if (arg1InBuildQueue && !arg2InBuildQueue) + { + return true; + } + else if (!arg1InBuildQueue && arg2InBuildQueue) + { + return false; + } + else + { + return arg1.m_displayName.toLower() < arg2.m_displayName.toLower(); + } + }); + + // Add any missing project buttons and restore buttons to default state + for (const ProjectInfo& project : projectsVector) + { + if (!m_projectButtons.contains(QDir::toNativeSeparators(project.m_path))) + { + m_projectButtons.insert(QDir::toNativeSeparators(project.m_path), CreateProjectButton(project)); + } + else + { + auto projectButtonIter = m_projectButtons.find(QDir::toNativeSeparators(project.m_path)); + if (projectButtonIter != m_projectButtons.end()) + { + projectButtonIter.value()->RestoreDefaultState(); + m_projectsFlowLayout->addWidget(projectButtonIter.value()); + } + } + } + + // Setup building button again + auto buildProjectIter = m_projectButtons.find(buildProjectPath); + if (buildProjectIter != m_projectButtons.end()) + { + m_currentBuilder->SetProjectButton(buildProjectIter.value()); + } + + for (const ProjectInfo& project : m_buildQueue) + { + auto projectIter = m_projectButtons.find(QDir::toNativeSeparators(project.m_path)); + if (projectIter != m_projectButtons.end()) + { + projectIter.value()->SetProjectButtonAction( + tr("Cancel Queued Build"), + [this, project] + { + UnqueueBuildProject(project); + SuggestBuildProjectMsg(project, false); + }); + } + } + + for (const ProjectInfo& project : m_requiresBuild) + { + auto projectIter = m_projectButtons.find(QDir::toNativeSeparators(project.m_path)); + if (projectIter != m_projectButtons.end()) + { + if (project.m_buildFailed) + { + projectIter.value()->ShowBuildFailed(true, project.m_logUrl); + } + else + { + projectIter.value()->SetProjectBuildButtonAction(); + } + } + } } - m_background.load(":/Backgrounds/DefaultBackground.jpg"); - - // Make sure to update builder with latest Project Button - if (m_currentBuilder) - { - ProjectButton* projectButtonPtr = nullptr; - - m_projectsContent = CreateProjectsContent(m_currentBuilder->GetProjectInfo().m_path, &projectButtonPtr); - m_currentBuilder->SetProjectButton(projectButtonPtr); - } - else - { - m_projectsContent = CreateProjectsContent(); - } - - m_stack->addWidget(m_projectsContent); m_stack->setCurrentWidget(m_projectsContent); } @@ -360,7 +413,7 @@ namespace O3DE::ProjectManager constexpr int waitTimeInMs = 3000; QTimer::singleShot( waitTimeInMs, this, - [this, button] + [button] { if (button) { @@ -466,7 +519,7 @@ namespace O3DE::ProjectManager if (m_buildQueue.empty() && !m_currentBuilder) { StartProjectBuild(projectInfo); - // Projects Content is already reset in fuction + // Projects Content is already reset in function } else { @@ -491,6 +544,7 @@ namespace O3DE::ProjectManager } else { + m_background.load(":/Backgrounds/DefaultBackground.jpg"); ResetProjectsContent(); } } diff --git a/Code/Tools/ProjectManager/Source/ProjectsScreen.h b/Code/Tools/ProjectManager/Source/ProjectsScreen.h index 45605ab678..859f8d0eae 100644 --- a/Code/Tools/ProjectManager/Source/ProjectsScreen.h +++ b/Code/Tools/ProjectManager/Source/ProjectsScreen.h @@ -18,6 +18,7 @@ QT_FORWARD_DECLARE_CLASS(QPaintEvent) QT_FORWARD_DECLARE_CLASS(QFrame) QT_FORWARD_DECLARE_CLASS(QStackedWidget) QT_FORWARD_DECLARE_CLASS(QLayout) +QT_FORWARD_DECLARE_CLASS(FlowLayout) namespace O3DE::ProjectManager { @@ -59,8 +60,8 @@ namespace O3DE::ProjectManager private: QFrame* CreateFirstTimeContent(); - QFrame* CreateProjectsContent(QString buildProjectPath = "", ProjectButton** projectButton = nullptr); - ProjectButton* CreateProjectButton(ProjectInfo& project, QLayout* flowLayout, bool processing = false); + QFrame* CreateProjectsContent(); + ProjectButton* CreateProjectButton(const ProjectInfo& project); void ResetProjectsContent(); bool ShouldDisplayFirstTimeContent(); bool RemoveInvalidProjects(); @@ -75,7 +76,9 @@ namespace O3DE::ProjectManager QPixmap m_background; QFrame* m_firstTimeContent = nullptr; QFrame* m_projectsContent = nullptr; + FlowLayout* m_projectsFlowLayout = nullptr; QStackedWidget* m_stack = nullptr; + QHash m_projectButtons; QList m_requiresBuild; QQueue m_buildQueue; ProjectBuilderController* m_currentBuilder = nullptr; diff --git a/Code/Tools/ProjectManager/Source/ScreensCtrl.cpp b/Code/Tools/ProjectManager/Source/ScreensCtrl.cpp index 30b8ef1d34..df0bdb29f4 100644 --- a/Code/Tools/ProjectManager/Source/ScreensCtrl.cpp +++ b/Code/Tools/ProjectManager/Source/ScreensCtrl.cpp @@ -30,6 +30,7 @@ namespace O3DE::ProjectManager // add a tab widget at the bottom of the stack m_tabWidget = new QTabWidget(); + m_tabWidget->tabBar()->setFocusPolicy(Qt::TabFocus); m_screenStack->addWidget(m_tabWidget); connect(m_tabWidget, &QTabWidget::currentChanged, this, &ScreensCtrl::TabChanged); } diff --git a/Code/Tools/ProjectManager/Source/ScreensCtrl.h b/Code/Tools/ProjectManager/Source/ScreensCtrl.h index f046adbe78..7132d64dd0 100644 --- a/Code/Tools/ProjectManager/Source/ScreensCtrl.h +++ b/Code/Tools/ProjectManager/Source/ScreensCtrl.h @@ -19,7 +19,7 @@ QT_FORWARD_DECLARE_CLASS(QTabWidget) namespace O3DE::ProjectManager { - class ScreenWidget; + QT_FORWARD_DECLARE_CLASS(ScreenWidget); class ScreensCtrl : public QWidget diff --git a/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.cpp b/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.cpp index 6aba261cd2..e1b6d740e2 100644 --- a/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.cpp +++ b/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.cpp @@ -54,6 +54,7 @@ namespace O3DE::ProjectManager QTabWidget* tabWidget = new QTabWidget(); tabWidget->setObjectName("projectSettingsTab"); tabWidget->tabBar()->setObjectName("projectSettingsTabBar"); + tabWidget->tabBar()->setFocusPolicy(Qt::TabFocus); tabWidget->addTab(m_updateSettingsScreen, tr("General")); QPushButton* gemsButton = new QPushButton(tr("Configure Gems"), this); diff --git a/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.cpp b/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.cpp index a4e7bd24fa..d0e9e6a760 100644 --- a/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.cpp +++ b/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.cpp @@ -383,6 +383,13 @@ void SRemoteClient::Run() bool ok = true; bool autoCompleteDoneSent = false; + + // Send a message that is used to verify that the Remote Console connected + SNoDataEvent connectMessage; + SRemoteEventFactory::GetInst()->WriteToBuffer(&connectMessage, szBuff, size, kDefaultBufferSize); + ok &= SendPackage(szBuff, size); + ok &= RecvPackage(szBuff, size); + ok &= m_pServer->ReadBuffer(szBuff, size); while (ok) { // read data @@ -531,6 +538,7 @@ SRemoteEventFactory::SRemoteEventFactory() REGISTER_EVENT_NODATA(eCET_Strobo_FrameInfoStart); REGISTER_EVENT_STRING(eCET_Strobo_FrameInfoAdd); + REGISTER_EVENT_NODATA(eCET_ConnectMessage); } ///////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.h b/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.h index 7e22be5735..d9a6f7aba6 100644 --- a/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.h +++ b/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.h @@ -60,6 +60,7 @@ enum EConsoleEventType eCET_Strobo_FrameInfoStart, eCET_Strobo_FrameInfoAdd, + eCET_ConnectMessage, }; struct SRemoteEventFactory; diff --git a/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpAnimationImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpAnimationImporter.cpp index 16f8d85509..a5b286bbc6 100644 --- a/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpAnimationImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpAnimationImporter.cpp @@ -652,7 +652,6 @@ namespace AZ aiAnimMesh* aiAnimMesh = mesh->mAnimMeshes[meshIdx]; AZStd::string_view nodeName(aiAnimMesh->mName.C_Str()); - const AZ::u32 maxKeys = static_cast(keys.size()); AZ::u32 keyIdx = 0; for (AZ::u32 frame = 0; frame < numKeyFrames; ++frame) { diff --git a/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpColorStreamImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpColorStreamImporter.cpp index 4043f529df..f9b3de6df1 100644 --- a/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpColorStreamImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpColorStreamImporter.cpp @@ -57,7 +57,7 @@ namespace AZ // This node has at least one mesh, verify that the color channel counts are the same for all meshes. const unsigned int expectedColorChannels = scene->mMeshes[currentNode->mMeshes[0]]->GetNumColorChannels(); - const bool allMeshesHaveSameNumberOfColorChannels = + [[maybe_unused]] const bool allMeshesHaveSameNumberOfColorChannels = AZStd::all_of(currentNode->mMeshes + 1, currentNode->mMeshes + currentNode->mNumMeshes, [scene, expectedColorChannels](const unsigned int meshIndex) { return scene->mMeshes[meshIndex]->GetNumColorChannels() == expectedColorChannels; diff --git a/Code/Tools/SceneAPI/SceneBuilder/SceneSystem.cpp b/Code/Tools/SceneAPI/SceneBuilder/SceneSystem.cpp index e9117b780a..ebe907706d 100644 --- a/Code/Tools/SceneAPI/SceneBuilder/SceneSystem.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/SceneSystem.cpp @@ -105,7 +105,6 @@ namespace AZ } break; } - AZ::Matrix4x4 inverse = currentCoordMatrix.GetInverseTransform(); AZ::Matrix4x4 adjustmatrix = targetCoordMatrix * currentCoordMatrix.GetInverseTransform(); m_adjustTransform.reset(new DataTypes::MatrixType(AssImpSDKWrapper::AssImpTypeConverter::ToTransform(adjustmatrix))); m_adjustTransformInverse.reset(new DataTypes::MatrixType(m_adjustTransform->GetInverseFull())); diff --git a/Code/Tools/SceneAPI/SceneCore/Components/SceneSystemComponent.h b/Code/Tools/SceneAPI/SceneCore/Components/SceneSystemComponent.h index a9ce974a59..296d791f9a 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/SceneSystemComponent.h +++ b/Code/Tools/SceneAPI/SceneCore/Components/SceneSystemComponent.h @@ -19,8 +19,7 @@ namespace AZ { // Scene system components are components that can be used to create system components // in situations where the full initialization and/or construction of regular - // system components don't apply such as in the Project Configurator's advanced - // settings and the ResourceCompilerScene. + // system components don't apply such as in the ResourceCompilerScene. class SCENE_CORE_CLASS SceneSystemComponent : public AZ::Component { diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Scene.h b/Code/Tools/SceneAPI/SceneCore/Containers/Scene.h index c96ebd25e1..49320c4592 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Scene.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Scene.h @@ -63,7 +63,7 @@ namespace AZ SceneGraph m_graph; SceneManifest m_manifest; SceneOrientation m_originalOrientation = SceneOrientation::YUp; - AZ_POP_DISABLE_OVERRIDE_WARNING + AZ_POP_DISABLE_WARNING }; } // Containers } // SceneAPI diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.cpp b/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.cpp index 8bbe9e2ed3..d68b6c52d4 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.cpp @@ -21,10 +21,10 @@ #include #include #include +#include #include #include #include -#include #include #include #include @@ -163,8 +163,7 @@ namespace AZ return false; } - AZ::IO::Path fileIoPath(absoluteFilePath); - auto saveToFileOutcome = AzFramework::FileFunc::WriteJsonFile(saveToJsonOutcome.GetValue(), fileIoPath); + auto saveToFileOutcome = AZ::JsonSerializationUtils::WriteJsonFile(saveToJsonOutcome.GetValue(), absoluteFilePath); if (!saveToFileOutcome.IsSuccess()) { AZ_Error(ErrorWindowName, false, "%s%s", errorMsg.c_str(), saveToFileOutcome.GetError().c_str()); @@ -309,7 +308,7 @@ namespace AZ else { // Attempt to read the stream as JSON - auto readJsonOutcome = AzFramework::FileFunc::ReadJsonFromString(fileContents); + auto readJsonOutcome = AZ::JsonSerializationUtils::ReadJsonString(fileContents); AZStd::string errorMsg; if (!readJsonOutcome.IsSuccess()) { diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.h b/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.h index 00df1bca21..4386d4fd8c 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.h @@ -106,7 +106,7 @@ namespace AZ AZ_PUSH_DISABLE_WARNING(4251, "-Wunknown-warning-option") StorageLookup m_storageLookup; ValueStorage m_values; - AZ_POP_DISABLE_OVERRIDE_WARNING + AZ_POP_DISABLE_WARNING }; } // Containers } // SceneAPI diff --git a/Code/Tools/SceneAPI/SceneCore/DllMain.cpp b/Code/Tools/SceneAPI/SceneCore/DllMain.cpp index 27a5ee238f..408b516f84 100644 --- a/Code/Tools/SceneAPI/SceneCore/DllMain.cpp +++ b/Code/Tools/SceneAPI/SceneCore/DllMain.cpp @@ -137,7 +137,7 @@ namespace AZ // Check if this library hasn't already been reflected. This can happen as the ResourceCompilerScene needs // to explicitly load and reflect the SceneAPI libraries to discover the available extension, while - // Gems with system components need to do the same in the Project Configurator. + // Gems with system components need to do the same in the Project Manager. if (context && (context->IsRemovingReflection() || !context->FindClassData(AZ::SceneAPI::DataTypes::IGroup::TYPEINFO_Uuid()))) { AZ::SceneAPI::DataTypes::IManifestObject::Reflect(context); diff --git a/Code/Tools/SceneAPI/SceneCore/SceneBuilderDependencyBus.h b/Code/Tools/SceneAPI/SceneCore/SceneBuilderDependencyBus.h index 6500b5ca28..752d4a431f 100644 --- a/Code/Tools/SceneAPI/SceneCore/SceneBuilderDependencyBus.h +++ b/Code/Tools/SceneAPI/SceneCore/SceneBuilderDependencyBus.h @@ -24,7 +24,12 @@ namespace AZ : public AZ::EBusTraits { public: - virtual void ReportJobDependencies(JobDependencyList& jobDependencyList, const char* platformIdentifier) = 0; + //! Builders can implement this function to add job dependencies on other assets that may be used in the scene file conversion process. + virtual void ReportJobDependencies(JobDependencyList& jobDependencyList, const char* platformIdentifier) { AZ_UNUSED(jobDependencyList); AZ_UNUSED(platformIdentifier); } + + //! Builders can implement this function to append to the job analysis fingerprint. This can be used to trigger rebuilds when global configuration changes. + //! See also AssetBuilderDesc::m_analysisFingerprint. + virtual void AddFingerprintInfo(AZStd::set& fingerprintInfo) { AZ_UNUSED(fingerprintInfo); } }; using SceneBuilderDependencyBus = EBus; } // namespace SceneAPI diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneBehaviorTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneBehaviorTests.cpp index adcdfd3083..3bf75e2d9b 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneBehaviorTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneBehaviorTests.cpp @@ -371,7 +371,6 @@ namespace AZ::SceneAPI::Containers MOCK_CONST_METHOD0(GetAppRoot, const char*()); MOCK_CONST_METHOD0(GetEngineRoot, const char*()); MOCK_CONST_METHOD0(GetExecutableFolder, const char* ()); - MOCK_METHOD0(GetDrillerManager, AZ::Debug::DrillerManager* ()); MOCK_CONST_METHOD1(QueryApplicationType, void(AZ::ApplicationTypeQuery&)); }; diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneGraphTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneGraphTests.cpp index b57f284003..87e2cbdbde 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneGraphTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneGraphTests.cpp @@ -332,7 +332,7 @@ namespace AZ { SceneGraph testSceneGraph; AZStd::shared_ptr testDataObject = AZStd::make_shared(); - SceneGraph::NodeIndex firstChildNodeIndex = testSceneGraph.AddChild(testSceneGraph.GetRoot(), "FirstChild", AZStd::move(testDataObject)); + testSceneGraph.AddChild(testSceneGraph.GetRoot(), "FirstChild", AZStd::move(testDataObject)); testDataObject = AZStd::make_shared(); SceneGraph::NodeIndex testNodeIndex = testSceneGraph.AddChild(testSceneGraph.GetRoot(), "SecondChild", AZStd::move(testDataObject)); @@ -350,7 +350,7 @@ namespace AZ SceneGraph::NodeIndex testRootNodeIndex = testSceneGraph.AddChild(testSceneGraph.GetRoot(), "testRoot", AZStd::move(testDataObject)); testDataObject = AZStd::make_shared(); - SceneGraph::NodeIndex firstChildNodeIndex = testSceneGraph.AddChild(testRootNodeIndex, "FirstChild", AZStd::move(testDataObject)); + testSceneGraph.AddChild(testRootNodeIndex, "FirstChild", AZStd::move(testDataObject)); testDataObject = AZStd::make_shared(); SceneGraph::NodeIndex testNodeIndex = testSceneGraph.AddChild(testRootNodeIndex, "SecondChild", AZStd::move(testDataObject)); @@ -371,10 +371,10 @@ namespace AZ SceneGraph::NodeIndex testRootNodeSiblingIndex = testSceneGraph.AddChild(testSceneGraph.GetRoot(), "testRootSibling", AZStd::move(testDataObject)); testDataObject = AZStd::make_shared(); - SceneGraph::NodeIndex firstChildNodeIndex = testSceneGraph.AddChild(testRootNodeIndex, "FirstChild", AZStd::move(testDataObject)); + testSceneGraph.AddChild(testRootNodeIndex, "FirstChild", AZStd::move(testDataObject)); testDataObject = AZStd::make_shared(); - SceneGraph::NodeIndex testNodeIndex = testSceneGraph.AddChild(testRootNodeIndex, "SecondChild", AZStd::move(testDataObject)); + testSceneGraph.AddChild(testRootNodeIndex, "SecondChild", AZStd::move(testDataObject)); SceneGraph::NodeIndex foundIndex = testSceneGraph.Find(testRootNodeSiblingIndex, "SecondChild"); EXPECT_FALSE(foundIndex.IsValid()); @@ -475,7 +475,7 @@ namespace AZ AZStd::string expectedNodeName("TestNode"); - SceneGraph::NodeIndex testNodeIndex = testSceneGraph.AddChild(testSceneGraph.GetRoot(), expectedNodeName.c_str()); + testSceneGraph.AddChild(testSceneGraph.GetRoot(), expectedNodeName.c_str()); SceneGraph::NodeIndex foundIndex = testSceneGraph.Find(expectedNodeName); ASSERT_TRUE(foundIndex.IsValid()); const SceneGraph::Name& nodeName = testSceneGraph.GetNodeName(foundIndex); diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneManifestTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneManifestTests.cpp index 875e433bb7..1766395626 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneManifestTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneManifestTests.cpp @@ -14,8 +14,8 @@ #include #include #include +#include #include -#include #include #include #include @@ -325,7 +325,7 @@ namespace AZ ASSERT_TRUE(writeToJsonResult.IsSuccess()); AZStd::string jsonText; - auto writeToStringResult = AzFramework::FileFunc::WriteJsonToString(writeToJsonResult.GetValue(), jsonText); + auto writeToStringResult = AZ::JsonSerializationUtils::WriteJsonString(writeToJsonResult.GetValue(), jsonText); ASSERT_TRUE(writeToStringResult.IsSuccess()); MockSceneManifest loaded; @@ -340,7 +340,7 @@ namespace AZ ASSERT_TRUE(writeToJsonResult.IsSuccess()); AZStd::string jsonText; - auto writeToStringResult = AzFramework::FileFunc::WriteJsonToString(writeToJsonResult.GetValue(), jsonText); + auto writeToStringResult = AZ::JsonSerializationUtils::WriteJsonString(writeToJsonResult.GetValue(), jsonText); ASSERT_TRUE(writeToStringResult.IsSuccess()); MockSceneManifest loaded; @@ -371,7 +371,7 @@ namespace AZ ASSERT_TRUE(writeToJsonResult.IsSuccess()); AZStd::string jsonText; - auto writeToStringResult = AzFramework::FileFunc::WriteJsonToString(writeToJsonResult.GetValue(), jsonText); + auto writeToStringResult = AZ::JsonSerializationUtils::WriteJsonString(writeToJsonResult.GetValue(), jsonText); ASSERT_TRUE(writeToStringResult.IsSuccess()); // Deserialize JSON diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/PairIteratorTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/PairIteratorTests.cpp index d80f54dfb5..2437d8557e 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/PairIteratorTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/PairIteratorTests.cpp @@ -19,6 +19,18 @@ #include #include +// This test gives trouble with /permissive-, the following instantiation workarounds the missing resolution +namespace std +{ + template<> + void iter_swap( + AZ::SceneAPI::Containers::Views::PairIterator lhs, + AZ::SceneAPI::Containers::Views::PairIterator rhs) + { + AZStd::iter_swap(lhs, rhs); + } +} + namespace AZ { namespace SceneAPI diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphDownwardsIteratorTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphDownwardsIteratorTests.cpp index fbecbe635c..84892373bf 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphDownwardsIteratorTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphDownwardsIteratorTests.cpp @@ -303,7 +303,6 @@ namespace AZ TYPED_TEST_P(SceneGraphDownwardsIteratorContext, Algorithms_FindIf_FindsValue3InNodeAdotC) { using Traversal = typename SceneGraphDownwardsIteratorContext::Traversal; - SceneGraph::NodeIndex index = this->m_graph.Find("A.C"); auto sceneView = MakeSceneGraphDownwardsView(this->m_graph, this->m_graph.GetContentStorage().begin()); auto result = AZStd::find_if(sceneView.begin(), sceneView.end(), [](const AZStd::shared_ptr& object) -> bool diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/CoordinateSystemConverter.h b/Code/Tools/SceneAPI/SceneCore/Utilities/CoordinateSystemConverter.h index 24f7243b32..11ba8cd391 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/CoordinateSystemConverter.h +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/CoordinateSystemConverter.h @@ -55,7 +55,7 @@ namespace AZ::SceneAPI AZ::Transform m_targetTransform; AZ::Transform m_conversionTransform; AZ::Transform m_conversionTransformInversed; - AZ_POP_DISABLE_OVERRIDE_WARNING + AZ_POP_DISABLE_WARNING AZ::u32 m_targetBasisIndices[3]; bool m_needsConversion; bool m_sourceRightHanded; diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MaterialData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/MaterialData.cpp index d58a89a110..117a1196f8 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MaterialData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MaterialData.cpp @@ -230,6 +230,19 @@ namespace AZ return m_uniqueId; } + namespace Helper + { + template + T ReturnOptionalValue(AZStd::optional value) + { + if (!value) + { + return {}; + } + return value.value(); + } + } + void MaterialData::Reflect(ReflectContext* context) { SerializeContext* serializeContext = azrtti_cast(context); @@ -285,6 +298,76 @@ namespace AZ ->DataElement(AZ::Edit::UIHandlers::Default, &MaterialData::m_useAOMap, "Use Ambient Occlusion Map", "True to use an ambient occlusion map, false to ignore it."); } } + + BehaviorContext* behaviorContext = azrtti_cast(context); + if (behaviorContext) + { + behaviorContext->Class() + ->Attribute(AZ::Script::Attributes::ExcludeFrom, AZ::Script::Attributes::ExcludeFlags::All) + ->Attribute(AZ::Script::Attributes::Scope, AZ::Script::Attributes::ScopeFlags::Common) + ->Attribute(AZ::Script::Attributes::Module, "scene"); + + using namespace Helper; + using DataTypes::IMaterialData; + + behaviorContext->Class() + ->Attribute(AZ::Script::Attributes::Scope, AZ::Script::Attributes::ScopeFlags::Common) + ->Attribute(AZ::Script::Attributes::Module, "scene") + ->Constant("AmbientOcclusion", BehaviorConstant(TextureMapType::AmbientOcclusion)) + ->Constant("BaseColor", BehaviorConstant(TextureMapType::BaseColor)) + ->Constant("Bump", BehaviorConstant(TextureMapType::Bump)) + ->Constant("Diffuse", BehaviorConstant(TextureMapType::Diffuse)) + ->Constant("Emissive", BehaviorConstant(TextureMapType::Emissive)) + ->Constant("Metallic", BehaviorConstant(TextureMapType::Metallic)) + ->Constant("Normal", BehaviorConstant(TextureMapType::Normal)) + ->Constant("Roughness", BehaviorConstant(TextureMapType::Roughness)) + ->Constant("Specular", BehaviorConstant(TextureMapType::Specular)) + ->Method("GetTexture", &MaterialData::GetTexture) + ->Method("GetMaterialName", &MaterialData::GetMaterialName) + ->Method("IsNoDraw", &MaterialData::IsNoDraw) + ->Method("GetDiffuseColor", &MaterialData::GetDiffuseColor) + ->Method("GetSpecularColor", &MaterialData::GetSpecularColor) + ->Method("GetEmissiveColor", &MaterialData::GetEmissiveColor) + ->Method("GetOpacity", &MaterialData::GetOpacity) + ->Method("GetUniqueId", &MaterialData::GetUniqueId) + ->Method("GetShininess", &MaterialData::GetShininess) + ->Method("GetUseColorMap", [](const MaterialData& self) + { + return ReturnOptionalValue(self.GetUseColorMap()); + }) + ->Method("GetBaseColor", [](const MaterialData& self) + { + return ReturnOptionalValue(self.GetBaseColor()); + }) + ->Method("GetUseMetallicMap", [](const MaterialData& self) + { + return ReturnOptionalValue(self.GetUseMetallicMap()); + }) + ->Method("GetMetallicFactor", [](const MaterialData& self) + { + return ReturnOptionalValue(self.GetMetallicFactor()); + }) + ->Method("GetUseRoughnessMap", [](const MaterialData& self) + { + return ReturnOptionalValue(self.GetUseRoughnessMap()); + }) + ->Method("GetRoughnessFactor", [](const MaterialData& self) + { + return ReturnOptionalValue(self.GetRoughnessFactor()); + }) + ->Method("GetUseEmissiveMap", [](const MaterialData& self) + { + return ReturnOptionalValue(self.GetUseEmissiveMap()); + }) + ->Method("GetEmissiveIntensity", [](const MaterialData& self) + { + return ReturnOptionalValue(self.GetEmissiveIntensity()); + }) + ->Method("GetUseAOMap", [](const MaterialData& self) + { + return ReturnOptionalValue(self.GetUseAOMap()); + }); + } } } // namespace GraphData } // namespace SceneData diff --git a/Code/Tools/SceneAPI/SceneData/ReflectionRegistrar.cpp b/Code/Tools/SceneAPI/SceneData/ReflectionRegistrar.cpp index e32eff3471..7d0b5c72b1 100644 --- a/Code/Tools/SceneAPI/SceneData/ReflectionRegistrar.cpp +++ b/Code/Tools/SceneAPI/SceneData/ReflectionRegistrar.cpp @@ -49,7 +49,7 @@ namespace AZ { // Check if this library hasn't already been reflected. This can happen as the ResourceCompilerScene needs // to explicitly load and reflect the SceneAPI libraries to discover the available extension, while - // Gems with system components need to do the same in the Project Configurator. + // Gems with system components need to do the same in the Project Manager. if (!context->IsRemovingReflection() && context->FindClassData(SceneData::MeshGroup::TYPEINFO_Uuid())) { return; diff --git a/Code/Tools/SceneAPI/SceneData/Tests/GraphData/GraphDataBehaviorTests.cpp b/Code/Tools/SceneAPI/SceneData/Tests/GraphData/GraphDataBehaviorTests.cpp index ab0fa79e62..4a2d206cc7 100644 --- a/Code/Tools/SceneAPI/SceneData/Tests/GraphData/GraphDataBehaviorTests.cpp +++ b/Code/Tools/SceneAPI/SceneData/Tests/GraphData/GraphDataBehaviorTests.cpp @@ -14,6 +14,7 @@ #include #include #include +#include #include #include @@ -27,6 +28,7 @@ #include #include #include +#include namespace AZ { @@ -145,6 +147,38 @@ namespace AZ blendShapeData->SetVertexIndexToControlPointIndexMap(2, 0); return true; } + else if (data.get_type_info().m_id == azrtti_typeid()) + { + auto* materialDataData = AZStd::any_cast(&data); + materialDataData->SetBaseColor(AZStd::make_optional(AZ::Vector3(0.1, 0.2, 0.3))); + materialDataData->SetDiffuseColor({ 0.3, 0.4, 0.5 }); + materialDataData->SetEmissiveColor({ 0.4, 0.5, 0.6 }); + materialDataData->SetEmissiveIntensity(AZStd::make_optional(0.789f)); + materialDataData->SetMaterialName("TestMaterialName"); + materialDataData->SetMetallicFactor(AZStd::make_optional(0.123f)); + materialDataData->SetNoDraw(true); + materialDataData->SetOpacity(0.7); + materialDataData->SetRoughnessFactor(AZStd::make_optional(0.456f)); + materialDataData->SetShininess(1.23); + materialDataData->SetSpecularColor({ 0.8, 0.9, 1.0 }); + materialDataData->SetUseAOMap(AZStd::make_optional(true)); + materialDataData->SetUseColorMap(AZStd::make_optional(true)); + materialDataData->SetUseMetallicMap(AZStd::make_optional(true)); + materialDataData->SetUseRoughnessMap(AZStd::make_optional(true)); + materialDataData->SetUseEmissiveMap(AZStd::make_optional(true)); + materialDataData->SetUniqueId(102938); + materialDataData->SetTexture(AZ::SceneAPI::DataTypes::IMaterialData::TextureMapType::AmbientOcclusion, "ambientocclusion"); + materialDataData->SetTexture(AZ::SceneAPI::DataTypes::IMaterialData::TextureMapType::BaseColor, "basecolor"); + materialDataData->SetTexture(AZ::SceneAPI::DataTypes::IMaterialData::TextureMapType::Bump, "bump"); + materialDataData->SetTexture(AZ::SceneAPI::DataTypes::IMaterialData::TextureMapType::Diffuse, "diffuse"); + materialDataData->SetTexture(AZ::SceneAPI::DataTypes::IMaterialData::TextureMapType::Emissive, "emissive"); + materialDataData->SetTexture(AZ::SceneAPI::DataTypes::IMaterialData::TextureMapType::Metallic, "metallic"); + materialDataData->SetTexture(AZ::SceneAPI::DataTypes::IMaterialData::TextureMapType::Normal, "normal"); + materialDataData->SetTexture(AZ::SceneAPI::DataTypes::IMaterialData::TextureMapType::Roughness, "roughness"); + materialDataData->SetTexture(AZ::SceneAPI::DataTypes::IMaterialData::TextureMapType::Specular, "specular"); + return true; + } + return false; } @@ -337,7 +371,7 @@ namespace AZ ExpectExecute("TestExpectFloatEquals(tangentData.z, 0.19)"); ExpectExecute("TestExpectFloatEquals(tangentData.w, 0.29)"); ExpectExecute("TestExpectIntegerEquals(meshVertexTangentData:GetTangentSetIndex(), 2)"); - ExpectExecute("TestExpectTrue(meshVertexTangentData:GetGenerationMethod(), MeshVertexTangentData.EMotionFX)"); + ExpectExecute("TestExpectTrue(meshVertexTangentData:GetGenerationMethod(), MeshVertexTangentData.MikkT)"); } TEST_F(GrapDatahBehaviorScriptTest, SceneGraph_AnimationData_AccessWorks) @@ -449,6 +483,49 @@ namespace AZ ExpectExecute("TestExpectFloatEquals(blendShapeData:GetBitangent(2).y, 0.3)"); ExpectExecute("TestExpectFloatEquals(blendShapeData:GetBitangent(2).z, 0.4)"); } + + TEST_F(GrapDatahBehaviorScriptTest, SceneGraph_MaterialData_AccessWorks) + { + ExpectExecute("materialData = MaterialData()"); + ExpectExecute("TestExpectTrue(materialData ~= nil)"); + ExpectExecute("TestExpectTrue(materialData:IsNoDraw() == false)"); + ExpectExecute("TestExpectTrue(materialData:GetUseColorMap() == false)"); + ExpectExecute("TestExpectTrue(materialData:GetUseMetallicMap() == false)"); + ExpectExecute("TestExpectTrue(materialData:GetUseRoughnessMap() == false)"); + ExpectExecute("TestExpectTrue(materialData:GetUseEmissiveMap() == false)"); + ExpectExecute("TestExpectTrue(materialData:GetUseAOMap() == false)"); + ExpectExecute("MockGraphData.FillData(materialData)"); + ExpectExecute("TestExpectTrue(materialData:IsNoDraw())"); + ExpectExecute("TestExpectTrue(materialData:GetUseColorMap())"); + ExpectExecute("TestExpectTrue(materialData:GetUseMetallicMap())"); + ExpectExecute("TestExpectTrue(materialData:GetUseRoughnessMap())"); + ExpectExecute("TestExpectTrue(materialData:GetUseEmissiveMap())"); + ExpectExecute("TestExpectTrue(materialData:GetUseAOMap())"); + ExpectExecute("TestExpectFloatEquals(materialData:GetMetallicFactor(), 0.123)"); + ExpectExecute("TestExpectFloatEquals(materialData:GetRoughnessFactor(), 0.456)"); + ExpectExecute("TestExpectFloatEquals(materialData:GetEmissiveIntensity(), 0.789)"); + ExpectExecute("TestExpectFloatEquals(materialData:GetOpacity(), 0.7)"); + ExpectExecute("TestExpectFloatEquals(materialData:GetShininess(), 1.23)"); + ExpectExecute("TestExpectTrue(materialData:GetMaterialName() == 'TestMaterialName')"); + ExpectExecute("TestExpectFloatEquals(materialData:GetBaseColor().x, 0.1)"); + ExpectExecute("TestExpectFloatEquals(materialData:GetBaseColor().y, 0.2)"); + ExpectExecute("TestExpectFloatEquals(materialData:GetBaseColor().z, 0.3)"); + ExpectExecute("TestExpectFloatEquals(materialData:GetDiffuseColor().x, 0.3)"); + ExpectExecute("TestExpectFloatEquals(materialData:GetDiffuseColor().y, 0.4)"); + ExpectExecute("TestExpectFloatEquals(materialData:GetDiffuseColor().z, 0.5)"); + ExpectExecute("TestExpectFloatEquals(materialData:GetEmissiveColor().x, 0.4)"); + ExpectExecute("TestExpectFloatEquals(materialData:GetEmissiveColor().y, 0.5)"); + ExpectExecute("TestExpectFloatEquals(materialData:GetEmissiveColor().z, 0.6)"); + ExpectExecute("TestExpectIntegerEquals(materialData:GetUniqueId(), 102938)"); + ExpectExecute("TestExpectTrue(materialData:GetTexture(MaterialData.AmbientOcclusion) == 'ambientocclusion')"); + ExpectExecute("TestExpectTrue(materialData:GetTexture(MaterialData.Bump) == 'bump')"); + ExpectExecute("TestExpectTrue(materialData:GetTexture(MaterialData.Diffuse) == 'diffuse')"); + ExpectExecute("TestExpectTrue(materialData:GetTexture(MaterialData.Emissive) == 'emissive')"); + ExpectExecute("TestExpectTrue(materialData:GetTexture(MaterialData.Metallic) == 'metallic')"); + ExpectExecute("TestExpectTrue(materialData:GetTexture(MaterialData.Normal) == 'normal')"); + ExpectExecute("TestExpectTrue(materialData:GetTexture(MaterialData.Roughness) == 'roughness')"); + ExpectExecute("TestExpectTrue(materialData:GetTexture(MaterialData.Specular) == 'specular')"); + } } } } diff --git a/Code/Tools/SceneAPI/SceneData/Tests/SceneManifest/SceneManifestRuleTests.cpp b/Code/Tools/SceneAPI/SceneData/Tests/SceneManifest/SceneManifestRuleTests.cpp index 428788f626..e0d5cca484 100644 --- a/Code/Tools/SceneAPI/SceneData/Tests/SceneManifest/SceneManifestRuleTests.cpp +++ b/Code/Tools/SceneAPI/SceneData/Tests/SceneManifest/SceneManifestRuleTests.cpp @@ -20,12 +20,12 @@ #include #include #include +#include #include #include #include #include #include -#include namespace AZ { @@ -154,7 +154,7 @@ namespace AZ ASSERT_TRUE(writeToJsonResult.IsSuccess()); AZStd::string jsonText; - auto writeToStringResult = AzFramework::FileFunc::WriteJsonToString(writeToJsonResult.GetValue(), jsonText); + auto writeToStringResult = AZ::JsonSerializationUtils::WriteJsonString(writeToJsonResult.GetValue(), jsonText); ASSERT_TRUE(writeToStringResult.IsSuccess()); EXPECT_THAT(jsonText.c_str(), ::testing::HasSubstr(R"("$type": "MockRotationRule")")); EXPECT_THAT(jsonText.c_str(), ::testing::HasSubstr(R"("rotation": [)")); @@ -191,7 +191,7 @@ namespace AZ ASSERT_TRUE(writeToJsonResult.IsSuccess()); AZStd::string jsonText; - auto writeToStringResult = AzFramework::FileFunc::WriteJsonToString(writeToJsonResult.GetValue(), jsonText); + auto writeToStringResult = AZ::JsonSerializationUtils::WriteJsonString(writeToJsonResult.GetValue(), jsonText); ASSERT_TRUE(writeToStringResult.IsSuccess()); EXPECT_THAT(jsonText.c_str(), ::testing::HasSubstr(R"("$type": "MockRotationRule")")); EXPECT_THAT(jsonText.c_str(), ::testing::HasSubstr(R"("rotation": [)")); @@ -230,7 +230,7 @@ namespace AZ ASSERT_TRUE(writeToJsonResult.IsSuccess()); AZStd::string jsonText; - auto writeToStringResult = AzFramework::FileFunc::WriteJsonToString(writeToJsonResult.GetValue(), jsonText); + auto writeToStringResult = AZ::JsonSerializationUtils::WriteJsonString(writeToJsonResult.GetValue(), jsonText); ASSERT_TRUE(writeToStringResult.IsSuccess()); EXPECT_THAT(jsonText.c_str(), ::testing::HasSubstr(R"("$type": "CoordinateSystemRule")")); EXPECT_THAT(jsonText.c_str(), ::testing::HasSubstr(R"("useAdvancedData": true,)")); diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowWidget.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowWidget.cpp index e9d83002e9..2672555850 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowWidget.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowWidget.cpp @@ -149,7 +149,7 @@ namespace AZ hider->setLayout(layout2); layoutOriginal->addWidget(hider); - connect(toolButton, &QToolButton::clicked, this, [this, hider, parentWidget, toolButton] + connect(toolButton, &QToolButton::clicked, this, [this, hider, toolButton] { m_expanded = !m_expanded; if (m_expanded) diff --git a/Code/Tools/SerializeContextTools/Converter.cpp b/Code/Tools/SerializeContextTools/Converter.cpp index 38e114855a..eff5f140d5 100644 --- a/Code/Tools/SerializeContextTools/Converter.cpp +++ b/Code/Tools/SerializeContextTools/Converter.cpp @@ -82,7 +82,7 @@ namespace AZ AZ_Printf("Convert", "Converting '%s'\n", filePath.c_str()); PathDocumentContainer documents; - auto callback = [&result, &documents, &extension, &convertSettings, &verifySettings, skipVerify] + auto callback = [&result, &documents, &convertSettings, &verifySettings, skipVerify] (void* classPtr, const Uuid& classId, SerializeContext* /*context*/) { rapidjson::Document document; @@ -346,7 +346,7 @@ namespace AZ // Convert the supplied file list to an absolute path AZStd::optional absFilePath = AZ::Utils::ConvertToAbsolutePath(configFileView); AZ::IO::FixedMaxPath configFilePath = absFilePath ? *absFilePath : configFileView; - auto callback = [&documents, &outputExtension, &configFilePath](AZ::IO::PathView configFileView, bool isFile) -> bool + auto callback = [&documents, &configFilePath](AZ::IO::PathView configFileView, bool isFile) -> bool { if (configFileView == "." || configFileView == "..") { diff --git a/Code/Tools/Standalone/CMakeLists.txt b/Code/Tools/Standalone/CMakeLists.txt index a8242022a8..78047dd6cf 100644 --- a/Code/Tools/Standalone/CMakeLists.txt +++ b/Code/Tools/Standalone/CMakeLists.txt @@ -38,34 +38,3 @@ ly_add_target( PRIVATE STANDALONETOOLS_ENABLE_LUA_IDE ) - -ly_add_target( - NAME Profiler APPLICATION - NAMESPACE AZ - AUTOMOC - AUTOUIC - AUTORCC - FILES_CMAKE - standalone_tools_files.cmake - profiler_files.cmake - Platform/${PAL_PLATFORM_NAME}/profiler_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake - INCLUDE_DIRECTORIES - PRIVATE - . - Source/Editor - Source/Driller - Source/Driller/Carrier - Source/Driller/Profiler - Source/Driller/IO - BUILD_DEPENDENCIES - PRIVATE - Legacy::CryCommon - AZ::AzCore - AZ::AzFramework - AZ::AzToolsFramework - AZ::GridMate - ${additional_dependencies} - COMPILE_DEFINITIONS - PRIVATE - STANDALONETOOLS_ENABLE_PROFILER -) diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.cpp deleted file mode 100644 index 3152862d80..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.cpp +++ /dev/null @@ -1,84 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "AnnotationHeaderView.hxx" -#include "AnnotationsDataView.hxx" -#include "Annotations.hxx" -#include - -namespace Driller -{ - static const int k_contractedSize = 20; - static const int k_textWidth = 153; - - AnnotationHeaderView::AnnotationHeaderView(AnnotationsProvider* ptrAnnotations, QWidget* parent, Qt::WindowFlags flags) - : QWidget(parent, flags) - , m_ptrAnnotations(ptrAnnotations) - { - setupUi(this); - - m_State.m_EndFrame = -1; - m_State.m_FramesInView = 10; - m_State.m_FrameOffset = 0; - - annotationDataView->RegisterAnnotationHeaderView(this, m_ptrAnnotations); - annotationDataView->setAutoFillBackground(true); - - connect(configureAnnotations, SIGNAL(pressed()), this, SIGNAL(OnOptionsClick())); - connect(annotationDataView, SIGNAL(InformOfMouseOverAnnotation(const Annotation&)), this, SIGNAL(InformOfMouseOverAnnotation(const Annotation&))); - connect(annotationDataView, SIGNAL(InformOfClickAnnotation(const Annotation&)), this, SIGNAL(InformOfClickAnnotation(const Annotation&))); - connect(m_ptrAnnotations, SIGNAL(AnnotationDataInvalidated()), this, SLOT(RefreshView())); - - annotationDataView->update(); - - QSize size = annotationDataView->size(); - int nextHeight = size.height(); - - (void)nextHeight; - } - - QSize AnnotationHeaderView::sizeHint() const - { - return QSize(0, k_contractedSize); - } - - - AnnotationHeaderView::~AnnotationHeaderView() - { - } - - void AnnotationHeaderView::RefreshView() - { - annotationDataView->update(); - } - - void AnnotationHeaderView::SetEndFrame(FrameNumberType frameNum) - { - QSize size = annotationDataView->size(); - int nextHeight = size.height(); - - (void)nextHeight; - - m_State.m_EndFrame = frameNum; - annotationDataView->update(); - } - - void AnnotationHeaderView::SetSliderOffset(FrameNumberType frameNum) - { - m_State.m_FrameOffset = frameNum; - annotationDataView->update(); - } - - void AnnotationHeaderView::SetDataPointsInView(int count) - { - m_State.m_FramesInView = count; - annotationDataView->update(); - } -} - -#include diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.hxx deleted file mode 100644 index 41f40b93ce..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.hxx +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef ANNOTATION_HEADER_VIEW_HXX -#define ANNOTATION_HEADER_VIEW_HXX - -#if !defined(Q_MOC_RUN) -#include -#include - -#include - -#include -#include -#include -#endif - - -namespace Driller -{ - class AnnotationsProvider; - class AnnotationsDataView; - class Annotation; - - /** The annotation header view runs along the top of the channels, and shows annotation blips that can be hovered over. - * this gives nice hit boxes for clicking that are not a sliver thick. - */ - - class AnnotationHeaderView : public QWidget, private Ui::AnnotationHeaderView - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(AnnotationHeaderView,AZ::SystemAllocator,0); - AnnotationHeaderView(AnnotationsProvider* ptrAnnotations, QWidget* parent = NULL, Qt::WindowFlags flags = Qt::WindowFlags()); - virtual ~AnnotationHeaderView(void); - - struct HeaderViewState - { - int m_EndFrame; - int m_FramesInView; - int m_FrameOffset; - }; - - const HeaderViewState& GetState() { return m_State; } - - void SetDataPointsInView( int count ); - void SetEndFrame( FrameNumberType frame ); - void SetSliderOffset( FrameNumberType frame ); - -signals: - void OnOptionsClick(); - void InformOfMouseOverAnnotation(const Annotation& annotation); - void InformOfClickAnnotation(const Annotation& annotation); - public slots: - void RefreshView(); - - private: - HeaderViewState m_State; - - AnnotationsProvider *m_ptrAnnotations; - - virtual QSize sizeHint() const; - - }; - -} - - -#endif // ANNOTATION_HEADER_VIEW_HXX diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.ui b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.ui deleted file mode 100644 index a8f10135e8..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.ui +++ /dev/null @@ -1,178 +0,0 @@ - - - AnnotationHeaderView - - - - 0 - 0 - 1023 - 38 - - - - - 0 - 0 - - - - Form - - - true - - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - - - - QFrame::NoFrame - - - QFrame::Plain - - - 0 - - - - 0 - - - 0 - - - 3 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - - 250 - 0 - - - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 8 - - - 0 - - - 8 - - - 3 - - - - - - 0 - 0 - - - - - 0 - 0 - - - - Configure which messages are annotated on the display - - - Qt::LeftToRight - - - Configure Annotations - - - - :/driller/settings_icon:/driller/settings_icon - - - - - - - - - - - 0 - 0 - - - - true - - - - - - - - - - - Driller::AnnotationsDataView - QWidget -
Source/Driller/Annotations/AnnotationsDataView.hxx
- 1 -
-
- - - - -
diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.cpp deleted file mode 100644 index c59a956670..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.cpp +++ /dev/null @@ -1,405 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "Annotations.hxx" -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include - -namespace Driller -{ - // stores the settings that are saved into the file and transported from user to user to accompany drill files. - // as always, this is just a dumb container and does not need encapsulation - class AnnotationWorkspaceSettings - : public AZ::UserSettings - { - public: - AZ_RTTI(AnnotationWorkspaceSettings, "{431EFFCF-C3C5-4BB3-8246-E452E11D4FF8}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(AnnotationWorkspaceSettings, AZ::SystemAllocator, 0); - - ChannelContainer m_ActiveAnnotationChannels; - ChannelCRCContainer m_ActiveAnnotationChannelCRCs; - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Version(2) - ->Field("m_ActiveAnnotationChannels", &AnnotationWorkspaceSettings::m_ActiveAnnotationChannels) - ->Field("m_ActiveAnnotationChannelCRCs", &AnnotationWorkspaceSettings::m_ActiveAnnotationChannelCRCs); - } - } - }; - - // stores the data that goes with the user preferences, even without a workspace file - // mainly gui stuff... - // as always, this is just a dumb container and does not need encapsulation - class AnnotationUserSettings - : public AZ::UserSettings - { - public: - AZ_RTTI(AnnotationUserSettings, "{D3584846-0574-4B63-9693-4F3265CDE16D}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(AnnotationUserSettings, AZ::SystemAllocator, 0); - - ChannelContainer m_KnownAnnotationChannels; // keeps track of all annotation channels ever seen - AZStd::unordered_map m_customizedColors; - - AZ::u32 GetRGBAColorForChannel(AZ::u32 channelNameCRC) - { - auto found = m_customizedColors.find(channelNameCRC); - if (found != m_customizedColors.end()) - { - return found->second; - } - - AZ::u32 num_different_colors = 7; - QColor col; - float sat = .9f; - float val = .9f; - col.setHsvF((float)(channelNameCRC % num_different_colors) / (float(num_different_colors)), sat, val); - QRgb rgbColor = col.rgba(); - return rgbColor; - } - - void SetRGBAColorForChannel(AZ::u32 channelNameCRC, AZ::u32 rgbaColor) - { - m_customizedColors[channelNameCRC] = rgbaColor; - } - - void ResetColorForChannel(AZ::u32 channelNameCRC) - { - m_customizedColors.erase(channelNameCRC); - } - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Version(1) - ->Field("m_KnownAnnotationChannels", &AnnotationUserSettings::m_KnownAnnotationChannels) - ->Field("m_customizedColors", &AnnotationUserSettings::m_customizedColors); - } - } - }; - - void AnnotationsProvider::Reflect(AZ::ReflectContext* context) - { - AnnotationWorkspaceSettings::Reflect(context); - AnnotationUserSettings::Reflect(context); - } - - Annotation::Annotation() - { - m_ChannelCRC = 0; - m_eventIndex = 0; - m_frameIndex = 0; - } - - Annotation::Annotation(AZ::s64 eventID, FrameNumberType frame, const char* text, const char* channel) - { - m_eventIndex = eventID; - m_frameIndex = frame; - m_text = text; - m_channel = channel; - m_ChannelCRC = AZ::Crc32(m_channel.c_str()); - } - - Annotation::Annotation(const Annotation& other) - { - *this = other; - } - - Annotation::Annotation(Annotation&& other) - { - *this = AZStd::move(other); - } - - Annotation& Annotation::operator=(Annotation&& other) - { - if (this != &other) - { - m_eventIndex = other.m_eventIndex; - m_frameIndex = other.m_frameIndex; - m_text = AZStd::move(other.m_text); - m_channel = AZStd::move(other.m_channel); - m_ChannelCRC = other.m_ChannelCRC; - } - return *this; - } - - Annotation& Annotation::operator=(const Annotation& other) - { - if (this != &other) - { - m_eventIndex = other.m_eventIndex; - m_frameIndex = other.m_frameIndex; - m_text = other.m_text; - m_channel = other.m_channel; - m_ChannelCRC = other.m_ChannelCRC; - } - return *this; - } - - AnnotationsProvider::AnnotationsProvider(QObject* pParent) - : QObject(pParent) - { - m_bVectorDirty = false; - - /// load user settings and workspace settings from usersettings component to persist state - - m_ptrUserSettings = AZ::UserSettings::CreateFind(AZ_CRC("ANNOT_USERSETTINGS", 0x3ddaa4f1), AZ::UserSettings::CT_GLOBAL); - m_ptrWorkspaceSettings = AZ::UserSettings::CreateFind(AZ_CRC("ANNOT_WORKSPACESETTINGS", 0xf7ca8dd3), AZ::UserSettings::CT_GLOBAL); - } - - AnnotationsProvider::~AnnotationsProvider() - { - AZ::UserSettings::Release(m_ptrUserSettings); - AZ::UserSettings::Release(m_ptrWorkspaceSettings); - } - - - void AnnotationsProvider::LoadSettingsFromWorkspace(WorkspaceSettingsProvider* ptrProvider) - { - AnnotationWorkspaceSettings* rawPtr = ptrProvider->FindSetting(AZ_CRC("ANNOTATIONWORKSPACE", 0x28319f66)); - if (rawPtr) - { - m_ptrWorkspaceSettings->m_ActiveAnnotationChannels = rawPtr->m_ActiveAnnotationChannels; - m_ptrWorkspaceSettings->m_ActiveAnnotationChannelCRCs = rawPtr->m_ActiveAnnotationChannelCRCs; - - // aggregate missing channels: - for (auto it = m_ptrWorkspaceSettings->m_ActiveAnnotationChannels.begin(); it != m_ptrWorkspaceSettings->m_ActiveAnnotationChannels.end(); ++it) - { - NotifyOfChannelExistence(it->c_str()); - } - } - } - - void AnnotationsProvider::SaveSettingsToWorkspace(WorkspaceSettingsProvider* ptrProvider) - { - AnnotationWorkspaceSettings* rawPtr = ptrProvider->CreateSetting(AZ_CRC("ANNOTATIONWORKSPACE", 0x28319f66)); - rawPtr->m_ActiveAnnotationChannels = m_ptrWorkspaceSettings->m_ActiveAnnotationChannels; - rawPtr->m_ActiveAnnotationChannelCRCs = m_ptrWorkspaceSettings->m_ActiveAnnotationChannelCRCs; - } - - // returns the end of the vector (ie, the invalid iterator) - AnnotationsProvider::ConstAnnotationIterator AnnotationsProvider::GetEnd() const - { - AZ_Assert(!m_bVectorDirty, "You may not interrogate the annotations provider before it is finalized"); - - return m_currentAnnotations.end(); - } - - // returns iterator to the first annotation thats on the frame given (or the end iterator) - AnnotationsProvider::ConstAnnotationIterator AnnotationsProvider::GetFirstAnnotationForFrame(FrameNumberType frameIndex) const - { - AZ_Assert(!m_bVectorDirty, "You may not interrogate the annotations provider before it is finalized"); - - // do we have annotations for that framE? - FrameIndexToCurrentMap::const_iterator it = m_frameToIndex.find(frameIndex); - if (it == m_frameToIndex.end()) - { - return GetEnd(); - } - - return m_currentAnnotations.begin() + it->second; - } - - // returns iterator to the first annotation that is foer that event # (or the end iterator) - AnnotationsProvider::ConstAnnotationIterator AnnotationsProvider::GetAnnotationForEvent(EventNumberType eventIndex) const - { - AZ_Assert(!m_bVectorDirty, "You may not interrogate the annotations provider before it is finalized"); - - // do we have annotations for that event index? - EventIndexToCurrentMap::const_iterator it = m_eventToIndex.find(eventIndex); - if (it == m_eventToIndex.end()) - { - return GetEnd(); - } - - return m_currentAnnotations.begin() + it->second; - } - - // note:: claims ownership of the data in annotation. - void AnnotationsProvider::AddAnnotation(Annotation&& target) - { - if (m_eventToIndex.find(target.GetEventIndex()) != m_eventToIndex.end()) - { - return; - } - - // can we do this quickly and easily? - if ( - (!m_bVectorDirty) && // if we're not already going to need to sort, and... - ( - (m_currentAnnotations.empty()) || // we either have no annotations or... - (m_currentAnnotations.back().GetEventIndex() < target.GetEventIndex()) // the fresh annotation belongs at the end anyway and we will not need to re-sort. - ) - ) - { - // we're adding annotations onto the end, so we will not have to sort, we can just accumulate the data. - - m_eventToIndex[target.GetEventIndex()] = m_currentAnnotations.size(); - - // if its the first annotation for this frame, we can also add it: - if (m_frameToIndex.find(target.GetFrameIndex()) == m_frameToIndex.end()) - { - m_frameToIndex[target.GetFrameIndex()] = m_currentAnnotations.size(); - } - - m_currentAnnotations.push_back(target); - } - else - { - // we're adding annotations out of order, we have to re-sort: - m_currentAnnotations.push_back(target); - m_bVectorDirty = true; - } - } - - - // called by the main controller to sort and build the map cache. - void AnnotationsProvider::Finalize() - { - /* - // temp: add some fake annots - AddAnnotation(Annotation(5, 10, "Test annotation", "tracker")); - AddAnnotation(Annotation(15, 110, "Test annotation2", "tracker1")); - AddAnnotation(Annotation(25, 210, "Test annotatio3n", "tracker2")); - AddAnnotation(Annotation(35, 310, "Test annotation4", "tracker3")); - */ - - if (!m_bVectorDirty) - { - emit AnnotationDataInvalidated(); - - return; - } - - m_frameToIndex.clear(); - m_eventToIndex.clear(); - - // sort them so they are in order from beginning to end: - AZStd::sort( - m_currentAnnotations.begin(), - m_currentAnnotations.end(), - [](const Annotation& a, const Annotation& b) -> bool - { - return a.GetEventIndex() < b.GetEventIndex(); - } - ); - - // now build the lookup tables: - FrameNumberType lastFrameIndex = -1; - for (AZStd::size_t idx = 0, endIdx = m_currentAnnotations.size(); idx < endIdx; ++idx) - { - const Annotation& current = m_currentAnnotations[idx]; - m_eventToIndex[current.GetEventIndex()] = idx; - if (lastFrameIndex != current.GetFrameIndex()) - { - m_frameToIndex[current.GetFrameIndex()] = idx; - lastFrameIndex = current.GetFrameIndex(); - } - } - - emit AnnotationDataInvalidated(); - - m_bVectorDirty = false; - } - - const ChannelContainer& AnnotationsProvider::GetAllKnownChannels() const - { - return m_ptrUserSettings->m_KnownAnnotationChannels; - } - - void AnnotationsProvider::GetCurrentlyEnabledChannelCRCs(ChannelCRCContainer& target) const - { - target.insert(m_ptrWorkspaceSettings->m_ActiveAnnotationChannelCRCs.begin(), m_ptrWorkspaceSettings->m_ActiveAnnotationChannelCRCs.end()); - } - - // let us know that a channel exists: - void AnnotationsProvider::NotifyOfChannelExistence(const char* name) - { - if (m_ptrUserSettings->m_KnownAnnotationChannels.insert(name).second) - { - emit KnownAnnotationsChanged(); - } - } - - void AnnotationsProvider::SetChannelEnabled(const char* channelName, bool enabled) - { - if (enabled) - { - if (m_ptrWorkspaceSettings->m_ActiveAnnotationChannels.insert(channelName).second) - { - m_ptrWorkspaceSettings->m_ActiveAnnotationChannelCRCs.insert(AZ::Crc32(channelName)); - NotifyOfChannelExistence(channelName); - emit SelectedAnnotationsChanged(); - } - } - else - { - AZ::u32 channelCRC = AZ::Crc32(channelName); - if (IsChannelEnabled(channelCRC)) - { - m_ptrWorkspaceSettings->m_ActiveAnnotationChannels.erase(channelName); - m_ptrWorkspaceSettings->m_ActiveAnnotationChannelCRCs.erase(channelCRC); - emit SelectedAnnotationsChanged(); - } - } - } - - QColor AnnotationsProvider::GetColorForChannel(AZ::u32 channelNameCRC) const - { - QRgb rgbaValue = m_ptrUserSettings->GetRGBAColorForChannel(channelNameCRC); - return QColor(rgbaValue); - } - - void AnnotationsProvider::SetColorForChannel(AZ::u32 channelNameCRC, QColor newColor) - { - QRgb rgbaValue = newColor.rgba(); - m_ptrUserSettings->SetRGBAColorForChannel(channelNameCRC, rgbaValue); - - if (IsChannelEnabled(channelNameCRC)) - { - // update displays - emit SelectedAnnotationsChanged(); - } - } - - void AnnotationsProvider::ResetColorForChannel(AZ::u32 channelNameCRC) - { - m_ptrUserSettings->ResetColorForChannel(channelNameCRC); - } - - bool AnnotationsProvider::IsChannelEnabled(AZ::u32 channelNameCRC) const - { - return (m_ptrWorkspaceSettings->m_ActiveAnnotationChannelCRCs.find(channelNameCRC) != m_ptrWorkspaceSettings->m_ActiveAnnotationChannelCRCs.end()); - } - - void AnnotationsProvider::Clear() - { - m_frameToIndex.clear(); - m_eventToIndex.clear(); - m_currentAnnotations.clear(); - m_bVectorDirty = false; - } -} - -#include diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.hxx deleted file mode 100644 index d87e8d61e4..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.hxx +++ /dev/null @@ -1,135 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_ANNOTATIONS_H -#define DRILLER_ANNOTATIONS_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include -#include -#include -#include - -#include -#endif - -#pragma once - -namespace AZ { class ReflectContext; } - -namespace Driller -{ - // ------------------------------------------------------------------------------------------------------------ - // Annotation - // represents one annotation returned or fed into the annotations interface. - class Annotation - { - public: - AZ_CLASS_ALLOCATOR(Annotation, AZ::SystemAllocator, 0); - Annotation(); - Annotation(AZ::s64 eventID, FrameNumberType frame, const char* text, const char* channel); - Annotation(const Annotation& other); - Annotation(Annotation&& other); - Annotation& operator=(Annotation&& other); - Annotation& operator=(const Annotation& other); - - AZ::s64 GetEventIndex() const { return m_eventIndex; } - FrameNumberType GetFrameIndex() const { return m_frameIndex; } - const AZStd::string& GetText() const { return m_text; } - const AZStd::string& GetChannel() const { return m_channel; } - const AZ::u32 GetChannelCRC() const { return m_ChannelCRC; } - - private: - AZ::s64 m_eventIndex; - FrameNumberType m_frameIndex; - AZStd::string m_text; - AZStd::string m_channel; - AZ::u32 m_ChannelCRC; - }; - - // ------------------------------------------------------------------------------------------------------------ - // AnnotationsProviderInterface - // a class which provides annotation information to the parts of the system that care about annotations. - // other parts of the system that want to know what annotations occur where will be given a pointer to this guy - // and they will ask him what they need to know. - // PLEASE NOTE: This is essentially a live cache of what's currently in the view range and is for rendering only. - // its essentially destroyed and recreated every frame. - - class AnnotationWorkspaceSettings; - class AnnotationUserSettings; - class WorkspaceSettingsProvider; - - // contains a set of channel names - typedef AZStd::unordered_set ChannelContainer; - typedef AZStd::unordered_set ChannelCRCContainer; - - class AnnotationsProvider - : public QObject - { - Q_OBJECT - public: - AZ_CLASS_ALLOCATOR(AnnotationsProvider, AZ::SystemAllocator, 0); - - typedef AZStd::vector AnnotationContainer; - typedef AnnotationContainer::const_iterator ConstAnnotationIterator; - - // graph renderers need to know what color to draw annotations, and what annotations exist given a particular event or frame: - ConstAnnotationIterator GetEnd() const; // returns the end of the vector (ie, the invalid iterator) - ConstAnnotationIterator GetFirstAnnotationForFrame(FrameNumberType frameIndex) const; // returns iterator to the first annotation thats on the frame given (or the end iterator) - ConstAnnotationIterator GetAnnotationForEvent(EventNumberType eventIndex) const; // returns iterator to the first annotation that is for that event # (or the end iterator) - - // claims ownership of the given annotation, via r-value ref. This is used during populate. - void AddAnnotation(Annotation&& target); - - // configure a channel - void ConfigureChannel(const char* channel, QColor color); - - AnnotationsProvider(QObject* pParent = NULL); - ~AnnotationsProvider(); - - // called by the main controller to sort and build the map cache. - void Finalize(); - void Clear(); - static void Reflect(AZ::ReflectContext* context); - - // --- channel management --- - const ChannelContainer& GetAllKnownChannels() const; - void GetCurrentlyEnabledChannelCRCs(ChannelCRCContainer& target) const; - void NotifyOfChannelExistence(const char* name); - void SetChannelEnabled(const char* channelName, bool enabled); - bool IsChannelEnabled(AZ::u32 channelNameCRC) const; - QColor GetColorForChannel(AZ::u32 channelNameCRC) const; // each channel has a color, this is configured externally. - void SetColorForChannel(AZ::u32 channelNameCRC, QColor newColor); // each channel has a color, this is configured externally. - void ResetColorForChannel(AZ::u32 channelNameCRC); // each channel has a color, this is configured externally. - - void LoadSettingsFromWorkspace(WorkspaceSettingsProvider* ptrProvider); - void SaveSettingsToWorkspace(WorkspaceSettingsProvider* ptrProvider); - signals: - void KnownAnnotationsChanged(); - void SelectedAnnotationsChanged(); - void AnnotationDataInvalidated(); - - protected: - AnnotationContainer m_currentAnnotations; - typedef AZStd::unordered_map EventIndexToCurrentMap; // maps from event index to index in our vector. - typedef AZStd::unordered_map FrameIndexToCurrentMap; // maps from frame index to index in our vector. - EventIndexToCurrentMap m_eventToIndex; - FrameIndexToCurrentMap m_frameToIndex; - - // housekeeping - bool m_bVectorDirty; - - AZStd::intrusive_ptr m_ptrWorkspaceSettings; // loaded from workspace and user settings. // crc(somethingelse) - AZStd::intrusive_ptr m_ptrUserSettings; // loaded only from user settings / CRC(whatever) - }; -} - -#endif//DRILLER_ANNOTATIONS_H diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.cpp deleted file mode 100644 index a928abd564..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.cpp +++ /dev/null @@ -1,211 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "AnnotationsDataView.hxx" -#include "AnnotationHeaderView.hxx" -#include "Annotations.hxx" - -#include -#include -#include -#include - -namespace Driller -{ - static const float adv_arrow_width = 8.0f; - - AnnotationsDataView::AnnotationsDataView(QWidget* parent) - : QWidget(parent) - , m_ptrHeaderView(nullptr) - , m_ptrAnnotations(nullptr) - { - setAttribute(Qt::WA_OpaquePaintEvent, true); - setMouseTracking(true); - } - - AnnotationsDataView::~AnnotationsDataView() - { - } - - void AnnotationsDataView::RegisterAnnotationHeaderView(AnnotationHeaderView* header, AnnotationsProvider* annotations) - { - m_ptrHeaderView = header; - m_ptrAnnotations = annotations; - } - - int AnnotationsDataView::PositionToFrame(const QPoint& pt) - { - QRect wrect = rect(); - - int frame = m_ptrHeaderView->GetState().m_FrameOffset + m_ptrHeaderView->GetState().m_FramesInView - 1; - frame = frame <= m_ptrHeaderView->GetState().m_EndFrame ? frame : m_ptrHeaderView->GetState().m_EndFrame; - - int rOffset = wrect.width() - pt.x(); - int rCell = (int)((float)rOffset / GetBarWidth()); - int retFrame = frame - rCell; - - //AZ_TracePrintf("Driller","Click Frame Raw Input = %d\n", retFrame); - - return retFrame; - } - - float AnnotationsDataView::GetBarWidth() - { - return ((float)(rect().width()) / (float)(m_ptrHeaderView->GetState().m_FramesInView)); - } - - void AnnotationsDataView::paintEvent(QPaintEvent* event) - { - (void)event; - - m_ClickableAreas.clear(); - - QPen pen; - pen.setWidth(1); - QBrush brush; - brush.setStyle(Qt::SolidPattern); - pen.setBrush(brush); - - QPainter painter(this); - painter.setRenderHint(QPainter::Antialiasing, true); - painter.setRenderHint(QPainter::TextAntialiasing, true); - - painter.setPen(pen); - painter.fillRect(rect(), Qt::black); - - int frame = m_ptrHeaderView->GetState().m_FrameOffset + m_ptrHeaderView->GetState().m_FramesInView - 1; - frame = frame <= m_ptrHeaderView->GetState().m_EndFrame ? frame : m_ptrHeaderView->GetState().m_EndFrame; - - QRect wrect = rect(); - - float barWidth = GetBarWidth(); - int barWidthHalf = (int)(barWidth / 2.0f); - - QPen fatPen(QColor(255, 255, 255, 255)); - fatPen.setWidth(2); - fatPen.setCapStyle(Qt::FlatCap); - - if (m_ptrHeaderView->GetState().m_EndFrame) - { - float rightEdgeOfBar = (float)wrect.right(); - float leftEdgeOfBar = rightEdgeOfBar - barWidth; - - while (frame >= 0 && rightEdgeOfBar >= wrect.left()) - { - int actualLeftEdge = (int)floorf(leftEdgeOfBar); - - float center = (float)(actualLeftEdge + barWidthHalf) + 0.5f; - - // annotations? - AnnotationsProvider::ConstAnnotationIterator it = m_ptrAnnotations->GetFirstAnnotationForFrame(frame); - AnnotationsProvider::ConstAnnotationIterator endIt = m_ptrAnnotations->GetEnd(); - - while ((it != endIt) && (it->GetFrameIndex() == frame)) - { - QPainterPath newPath; - QPolygonF newPolygon; - newPolygon << QPointF(center - adv_arrow_width, 1.0f) << QPointF(center, wrect.height() - 1.0f) << QPointF(center + adv_arrow_width, 1.0f); - newPath.addPolygon(newPolygon); - newPath.closeSubpath(); - - if (m_eventsToHighlight.find(it->GetEventIndex()) != m_eventsToHighlight.end()) - { - painter.setPen(fatPen); - painter.setBrush(m_ptrAnnotations->GetColorForChannel(it->GetChannelCRC())); - } - else - { - painter.setPen(QColor(0, 0, 0, 0)); - painter.setBrush(m_ptrAnnotations->GetColorForChannel(it->GetChannelCRC())); - } - painter.drawPath(newPath); - m_ClickableAreas[it->GetEventIndex()] = newPath; - ++it; - } - - --frame; - rightEdgeOfBar -= barWidth; - leftEdgeOfBar -= barWidth; - } - } - } - - void AnnotationsDataView::mouseMoveEvent(QMouseEvent* event) - { - AZStd::unordered_set newEventsToHighlight; - - for (auto it = m_ClickableAreas.begin(); it != m_ClickableAreas.end(); ++it) - { - if (it->second.contains(event->pos())) - { - auto annot = m_ptrAnnotations->GetAnnotationForEvent(it->first); - if (annot != m_ptrAnnotations->GetEnd()) - { - newEventsToHighlight.insert(annot->GetEventIndex()); - emit InformOfMouseOverAnnotation(*annot); - } - } - } - - bool doUpdate = false; - // did our highlight change? - for (auto it = newEventsToHighlight.begin(); it != newEventsToHighlight.end(); ++it) - { - if (m_eventsToHighlight.find(*it) == m_eventsToHighlight.end()) - { - doUpdate = true; - break; - } - } - - // did our highlight change? - if (!doUpdate) - { - for (auto it = m_eventsToHighlight.begin(); it != m_eventsToHighlight.end(); ++it) - { - if (newEventsToHighlight.find(*it) == newEventsToHighlight.end()) - { - doUpdate = true; - break; - } - } - } - - if (doUpdate) - { - newEventsToHighlight.swap(m_eventsToHighlight); - update(); - } - - // find the first annotation within a margin: - event->ignore(); - } - - void AnnotationsDataView::mousePressEvent(QMouseEvent* event) - { - for (auto it = m_ClickableAreas.begin(); it != m_ClickableAreas.end(); ++it) - { - if (it->second.contains(event->pos())) - { - auto annot = m_ptrAnnotations->GetAnnotationForEvent(it->first); - if (annot != m_ptrAnnotations->GetEnd()) - { - emit InformOfClickAnnotation(*annot); - } - } - } - event->ignore(); - } - - void AnnotationsDataView::mouseReleaseEvent(QMouseEvent* event) - { - event->ignore(); - } -} - -#include diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.hxx deleted file mode 100644 index d6da50e0c0..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.hxx +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef ANNOTATIONS_DATA_VIEW -#define ANNOTATIONS_DATA_VIEW - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include - -#include -#endif - -namespace Driller -{ - class AnnotationsProvider; - class Annotation; - class AnnotationHeaderView; - /** Annotations Data View just shows the annotations that are available in a horizontal strip with indicators for easy clickability. - */ - - class AnnotationsDataView : public QWidget - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(AnnotationsDataView, AZ::SystemAllocator, 0); - AnnotationsDataView(QWidget* parent = nullptr); - virtual ~AnnotationsDataView(); - - void RegisterAnnotationHeaderView(AnnotationHeaderView* header, AnnotationsProvider* annotations); - - int PositionToFrame( const QPoint &pt ); - - float GetBarWidth(); - - virtual void paintEvent( QPaintEvent *event ); - virtual void mouseMoveEvent( QMouseEvent *event ); - virtual void mousePressEvent( QMouseEvent *event ); - virtual void mouseReleaseEvent( QMouseEvent *event ); - -signals: - void InformOfMouseOverAnnotation(const Annotation& annotation); - void InformOfClickAnnotation(const Annotation& annotation); - private: - typedef AZStd::unordered_map EventIndexToClickablePath; - EventIndexToClickablePath m_ClickableAreas; - AZStd::unordered_set m_eventsToHighlight; - - AnnotationsProvider *m_ptrAnnotations; - AnnotationHeaderView *m_ptrHeaderView; - }; -} - -#endif // ANNOTATIONS_DATA_VIEW diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.cpp deleted file mode 100644 index b107e6be23..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.cpp +++ /dev/null @@ -1,250 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "AnnotationsDataView_Events.hxx" -#include "AnnotationsHeaderView_Events.hxx" -#include "Annotations.hxx" -#include - -#include -#include -#include -#include - -namespace Driller -{ - static const float adv_events_arrow_width = 8.0f; - - AnnotationsDataView_Events::AnnotationsDataView_Events(AnnotationHeaderView_Events* header, AnnotationsProvider* annotations) - : QWidget(header) - , m_ptrHeaderView(header) - , m_ptrAnnotations(annotations) - , m_ptrAxis(NULL) - { - setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); - setFixedHeight(18); - setAutoFillBackground(false); - setAttribute(Qt::WA_OpaquePaintEvent, true); - setMouseTracking(true); - m_CurrentFrameNumber = 0; - } - - void AnnotationsDataView_Events::AttachToAxis(Charts::Axis* pAxis) - { - if (m_ptrAxis) - { - disconnect(m_ptrAxis, SIGNAL(destroyed(QObject*)), this, SLOT(OnAxisDestroyed())); - disconnect(m_ptrAxis, SIGNAL(Invalidated()), this, SLOT(OnAxisInvalidated())); - } - - m_ptrAxis = pAxis; - if (pAxis) - { - connect(m_ptrAxis, SIGNAL(destroyed(QObject*)), this, SLOT(OnAxisDestroyed())); - connect(m_ptrAxis, SIGNAL(Invalidated()), this, SLOT(OnAxisInvalidated())); - } - } - - void AnnotationsDataView_Events::OnAxisDestroyed() - { - m_ptrAxis = NULL; - update(); - } - - void AnnotationsDataView_Events::OnAxisInvalidated() - { - update(); - } - - AnnotationsDataView_Events::~AnnotationsDataView_Events() - { - } - - void AnnotationsDataView_Events::paintEvent(QPaintEvent* event) - { - (void)event; - - m_ClickableAreas.clear(); - - // scan for annotations - - - - // fill with black - QPainter painter(this); - painter.fillRect(rect(), Qt::black); - - if (!m_ptrAxis) - { - return; - } - - if (!m_ptrAxis->GetValid()) - { - return; - } - - QRectF drawRange = rect(); - // adjust for inset: - - drawRange.adjust(2.0f, 0.0f, -4.0f, 0.0f); - float leftEdge = (float)drawRange.left(); - float drawRangeWidth = (float)drawRange.width(); - - AZ::s64 eventIndexStart = (AZ::s64)m_ptrAxis->GetWindowMin(); - AZ::s64 eventIndexEnd = (AZ::s64)m_ptrAxis->GetWindowMax() + 1; - float eventIndexRange = ((float)m_ptrAxis->GetWindowMax() - (float)m_ptrAxis->GetWindowMin()); // this is the domain range - - - if (eventIndexRange <= 0.0f) - { - return; - } - - float oneEventWidthInPixels = drawRangeWidth / eventIndexRange; - float halfEventWidth = oneEventWidthInPixels * 0.5f; - - // find the first event within that range: - QPen fatPen(QColor(255, 255, 255, 255)); - fatPen.setWidth(2); - fatPen.setCapStyle(Qt::FlatCap); - - AnnotationsProvider::ConstAnnotationIterator it = m_ptrAnnotations->GetFirstAnnotationForFrame(m_CurrentFrameNumber); - AnnotationsProvider::ConstAnnotationIterator endIt = m_ptrAnnotations->GetEnd(); - - // now keep going until we hit the end of the range: - while (it != endIt) - { - if (it->GetEventIndex() >= eventIndexEnd) - { - break; - } - - if (it->GetEventIndex() < eventIndexStart) - { - ++it; - continue; // we're within the zoom - } - - // transform that event ID into the window domain: - - - float eventRatio = ((float)it->GetEventIndex() - m_ptrAxis->GetWindowMin()) / eventIndexRange; - - float center = floorf(leftEdge + (drawRangeWidth * eventRatio)); - - center += (float)drawRange.left(); - center += halfEventWidth; - - QPainterPath newPath; - QPolygonF newPolygon; - newPolygon << QPointF(center - adv_events_arrow_width, 1.0f) << QPointF(center, drawRange.height() - 1.0f) << QPointF(center + adv_events_arrow_width, 1.0f); - newPath.addPolygon(newPolygon); - newPath.closeSubpath(); - - if (m_eventsToHighlight.find(it->GetEventIndex()) != m_eventsToHighlight.end()) - { - painter.setPen(fatPen); - painter.setBrush(m_ptrAnnotations->GetColorForChannel(it->GetChannelCRC())); - } - else - { - painter.setPen(QColor(0, 0, 0, 0)); - painter.setBrush(m_ptrAnnotations->GetColorForChannel(it->GetChannelCRC())); - } - painter.drawPath(newPath); - m_ClickableAreas[it->GetEventIndex()] = newPath; - ++it; - } - } - - void AnnotationsDataView_Events::mouseMoveEvent(QMouseEvent* event) - { - AZStd::unordered_set newEventsToHighlight; - - for (auto it = m_ClickableAreas.begin(); it != m_ClickableAreas.end(); ++it) - { - if (it->second.contains(event->pos())) - { - auto annot = m_ptrAnnotations->GetAnnotationForEvent(it->first); - if (annot != m_ptrAnnotations->GetEnd()) - { - newEventsToHighlight.insert(annot->GetEventIndex()); - emit InformOfMouseOverAnnotation(*annot); - } - } - } - - bool doUpdate = false; - // did our highlight change? - for (auto it = newEventsToHighlight.begin(); it != newEventsToHighlight.end(); ++it) - { - if (m_eventsToHighlight.find(*it) == m_eventsToHighlight.end()) - { - doUpdate = true; - break; - } - } - - // did our highlight change? - if (!doUpdate) - { - for (auto it = m_eventsToHighlight.begin(); it != m_eventsToHighlight.end(); ++it) - { - if (newEventsToHighlight.find(*it) == newEventsToHighlight.end()) - { - doUpdate = true; - break; - } - } - } - - if (doUpdate) - { - newEventsToHighlight.swap(m_eventsToHighlight); - update(); - } - - // find the first annotation within a margin: - event->ignore(); - } - - void AnnotationsDataView_Events::mousePressEvent(QMouseEvent* event) - { - for (auto it = m_ClickableAreas.begin(); it != m_ClickableAreas.end(); ++it) - { - if (it->second.contains(event->pos())) - { - auto annot = m_ptrAnnotations->GetAnnotationForEvent(it->first); - if (annot != m_ptrAnnotations->GetEnd()) - { - emit InformOfClickAnnotation(*annot); - } - } - } - event->ignore(); - } - - - void AnnotationsDataView_Events::mouseReleaseEvent(QMouseEvent* event) - { - event->ignore(); - } - - void AnnotationsDataView_Events::OnScrubberFrameUpdate(FrameNumberType newFramenumber) - { - if (newFramenumber != m_CurrentFrameNumber) - { - m_CurrentFrameNumber = newFramenumber; - // we don't update here because we wait for the new range to be set - //update(); - } - } -} - -#include diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.hxx deleted file mode 100644 index 4a9c8a7810..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.hxx +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef ANNOTATIONS_DATA_VIEW_EVENTS_HXX -#define ANNOTATIONS_DATA_VIEW_EVENTS_HXX - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include - -#include - -#include "Source/Driller/DrillerDataTypes.h" -#endif - -namespace Charts -{ - class Axis; -} - -namespace Driller -{ - class AnnotationsProvider; - class Annotation; - class AnnotationHeaderView_Events; - /** Annotations Data View just shows the annotations that are available in a horizontal strip with indicators for easy clickability. - * This flavor of the view is supposed to operate on individual events instead of individual frames and is supposed to sit above the event driller track - * But it can actually work on any track thats willing to provide it with an axis. - */ - - class AnnotationsDataView_Events : public QWidget - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(AnnotationsDataView_Events, AZ::SystemAllocator, 0); - AnnotationsDataView_Events( AnnotationHeaderView_Events* header, AnnotationsProvider *annotations ); - virtual ~AnnotationsDataView_Events(); - - void AttachToAxis(Charts::Axis *pAxis); - - virtual void paintEvent( QPaintEvent *event ); - virtual void mouseMoveEvent( QMouseEvent *event ); - virtual void mousePressEvent( QMouseEvent *event ); - virtual void mouseReleaseEvent( QMouseEvent *event ); - - signals: - void InformOfMouseOverAnnotation(const Annotation& annotation); - void InformOfClickAnnotation(const Annotation& annotation); - private: - typedef AZStd::unordered_map EventIndexToClickablePath; - - EventIndexToClickablePath m_ClickableAreas; - AZStd::unordered_set m_eventsToHighlight; - QPainter *m_Painter; - Charts::Axis *m_ptrAxis; - - AnnotationsProvider *m_ptrAnnotations; - AnnotationHeaderView_Events *m_ptrHeaderView; - FrameNumberType m_CurrentFrameNumber; - - const Annotation* GetNearestAnnotationToMousePoint(QPoint pos) const; - - public slots: - void OnAxisInvalidated(); - void OnAxisDestroyed(); - void OnScrubberFrameUpdate(FrameNumberType newFrameNumber); - }; -} - -#endif // ANNOTATIONS_DATA_VIEW diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.cpp deleted file mode 100644 index f8db607b51..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.cpp +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "AnnotationsHeaderView_Events.hxx" -#include "AnnotationsDataView_Events.hxx" -#include "Annotations.hxx" -#include - -namespace Driller -{ - static const int k_eventContractedSize = 18; - - AnnotationHeaderView_Events::AnnotationHeaderView_Events(QWidget* parent, Qt::WindowFlags flags) - : QWidget(parent, flags) - , m_ptrAnnotations(NULL) - { - this->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); - this->setFixedHeight(k_eventContractedSize); - this->setAutoFillBackground(true); - - QHBoxLayout* mainLayout = new QHBoxLayout(this); - this->setLayout(mainLayout); - - mainLayout->setContentsMargins(0, 0, 0, 0); - mainLayout->setSpacing(0); - } - - void AnnotationHeaderView_Events::OnScrubberFrameUpdate(FrameNumberType newFrame) - { - if (m_ptrDataView) - { - m_ptrDataView->OnScrubberFrameUpdate(newFrame); - } - } - - QSize AnnotationHeaderView_Events::sizeHint() const - { - return QSize(0, k_eventContractedSize); - } - - void AnnotationHeaderView_Events::ControllerSizeChanged(QSize newSize) - { - (void)newSize; - } - - AnnotationHeaderView_Events::~AnnotationHeaderView_Events() - { - } - - void AnnotationHeaderView_Events::AttachToAxis(AnnotationsProvider* ptrAnnotations, Charts::Axis* target) - { - m_ptrAnnotations = ptrAnnotations; - m_ptrDataView = aznew AnnotationsDataView_Events(this, ptrAnnotations); - - connect(m_ptrDataView, SIGNAL(InformOfMouseOverAnnotation(const Annotation&)), this, SIGNAL(InformOfMouseOverAnnotation(const Annotation&))); - connect(m_ptrDataView, SIGNAL(InformOfClickAnnotation(const Annotation&)), this, SIGNAL(InformOfClickAnnotation(const Annotation&))); - connect(m_ptrAnnotations, SIGNAL(AnnotationDataInvalidated()), this, SLOT(RefreshView())); - - layout()->addWidget(m_ptrDataView); - m_ptrDataView->AttachToAxis(target); - } - - void AnnotationHeaderView_Events::RefreshView() - { - m_ptrDataView->update(); - } -} - -#include diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.hxx deleted file mode 100644 index 98eb6246d6..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.hxx +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef ANNOTATION_HEADER_VIEW_EVENTS_HXX -#define ANNOTATION_HEADER_VIEW_EVENTS_HXX - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include - -#include "Source/Driller/DrillerDataTypes.h" -#endif - -namespace Charts -{ - class Axis; -} - -namespace Driller -{ - class AnnotationsProvider; - class AnnotationsDataView_Events; - class Annotation; - - /** This version of the annotations header view sits above the per-frame events widget (near the bottom of hte main view). - * Its job is to show annotations that happen within a single frame (on an event-by-event basis!) - * It can actually work on any track thats willing to provide it with an axis. - */ - - class AnnotationHeaderView_Events : public QWidget - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(AnnotationHeaderView_Events,AZ::SystemAllocator,0); - AnnotationHeaderView_Events(QWidget* parent = NULL, Qt::WindowFlags flags = Qt::WindowFlags()); - virtual ~AnnotationHeaderView_Events(void); - - void AttachToAxis(AnnotationsProvider* ptrAnnotations, Charts::Axis *target); -signals: - void InformOfMouseOverAnnotation(const Annotation& annotation); - void InformOfClickAnnotation(const Annotation& annotation); - -public slots: - void RefreshView(); - void ControllerSizeChanged(QSize newSize); - void OnScrubberFrameUpdate(FrameNumberType newFrame); - private: - AnnotationsProvider *m_ptrAnnotations; - AnnotationsDataView_Events *m_ptrDataView; - - virtual QSize sizeHint() const; - - }; - -} - - -#endif // ANNOTATION_HEADER_VIEW_HXX diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsDialog.ui b/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsDialog.ui deleted file mode 100644 index 185f7b9eba..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsDialog.ui +++ /dev/null @@ -1,151 +0,0 @@ - - - configureAnnotationsDialog - - - - 0 - 0 - 446 - 168 - - - - Configure Annotations - - - true - - - false - - - - 2 - - - 4 - - - 4 - - - 4 - - - 4 - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - Display Annotations From the Selected Features - - - - - - - Qt::Horizontal - - - QSizePolicy::MinimumExpanding - - - - 5 - 0 - - - - - - - - - 0 - 0 - - - - - 200 - 0 - - - - - 16777215 - 16777215 - - - - Search Annotations - - - - - - - - - - false - - - true - - - false - - - false - - - true - - - 60 - - - true - - - true - - - false - - - 30 - - - - - - - - diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.cpp deleted file mode 100644 index b66ffa1047..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.cpp +++ /dev/null @@ -1,248 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include "ConfigureAnnotationsWindow.hxx" -#include -#include -#include -#include -#include - -#include -#include -#include - -namespace Driller -{ - ////////////////////////////// - // ConfigureAnnotationsModel - ////////////////////////////// - int ConfigureAnnotationsModel::rowCount(const QModelIndex& index) const - { - if (index == QModelIndex()) - { - return (int)m_cache.size(); - } - return 0; - } - - int ConfigureAnnotationsModel::columnCount(const QModelIndex& index) const - { - (void)index; - return 1; - } - - Qt::ItemFlags ConfigureAnnotationsModel::flags(const QModelIndex& index) const - { - if (index == QModelIndex()) - { - return Qt::ItemFlags(); - } - - if (index.column() == 0) - { - return Qt::ItemIsUserCheckable | Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsEditable; - } - - return Qt::ItemIsSelectable | Qt::ItemIsEnabled; - } - - bool ConfigureAnnotationsModel::setData(const QModelIndex& index, const QVariant& value, int role) - { - if (role == Qt::CheckStateRole) - { - Qt::CheckState newState = (Qt::CheckState)value.toInt(); - if (index.column() == 0) - { - if (index.row() < (int)m_cache.size()) - { - Qt::CheckState oldEnabled = m_ptrProvider->IsChannelEnabled(AZ::Crc32(m_cache[index.row()].toUtf8().data())) ? Qt::Checked : Qt::Unchecked; - - if (newState != oldEnabled) - { - m_ptrProvider->SetChannelEnabled(m_cache[index.row()].toUtf8().data(), newState == Qt::Checked ? true : false); - return true; - } - } - } - } - else if (role == AzToolsFramework::ColorPickerDelegate::COLOR_PICKER_ROLE) - { - QColor newColor = qvariant_cast(value); - AZ::u32 crcOfChannel = AZ::Crc32(m_cache[index.row()].toUtf8().data()); - m_ptrProvider->SetColorForChannel(crcOfChannel, newColor); - m_cachedColorIcons[index.row()] = CreatePixmapForColor(newColor); - } - return false; - } - - QVariant ConfigureAnnotationsModel::data(const QModelIndex& index, int role) const - { - if (index == QModelIndex()) - { - return QVariant(); - } - - if (index.column() == 0) - { - switch (role) - { - case Qt::CheckStateRole: - { - AZ::u32 crcvalue = AZ::Crc32(m_cache[index.row()].toUtf8().data()); - return QVariant(m_ptrProvider->IsChannelEnabled(crcvalue) ? QVariant(Qt::Checked) : QVariant(Qt::Unchecked)); - } - case Qt::DecorationRole: - { - return m_cachedColorIcons[index.row()]; - } - case Qt::DisplayRole: - { - return m_cache[index.row()]; - } - case AzToolsFramework::ColorPickerDelegate::COLOR_PICKER_ROLE: - { - AZ::u32 crcvalue = AZ::Crc32(m_cache[index.row()].toUtf8().data()); - QColor channelColor = m_ptrProvider->GetColorForChannel(crcvalue); - return QVariant(channelColor); - } - } - } - - return QVariant(); - } - - QVariant ConfigureAnnotationsModel::headerData (int section, Qt::Orientation orientation, int role) const - { - (void)orientation; - - if (role == Qt::DisplayRole) - { - switch (section) - { - case 0: - return QVariant(tr("Annotation Type")); - break; - } - - return QVariant(); - } - else if (role == Qt::TextAlignmentRole) - { - if (section == 0) - { - return QVariant(Qt::AlignVCenter | Qt::AlignLeft); - } - } - - return QVariant(); - } - - QPixmap ConfigureAnnotationsModel::CreatePixmapForColor(QColor color) - { - QPixmap pixmap(16, 16); - { - QPainter painter(&pixmap); - painter.fillRect(0, 0, 16, 16, Qt::black); - painter.fillRect(1, 1, 15, 15, color); - } - return pixmap; - } - - - void ConfigureAnnotationsModel::Recache() - { - beginResetModel(); - m_cache.clear(); - m_cachedColorIcons.clear(); - AZStd::for_each(m_ptrProvider->GetAllKnownChannels().begin(), m_ptrProvider->GetAllKnownChannels().end(), - [this](const AZStd::string& value) - { - m_cache.push_back(QString::fromUtf8(value.c_str())); - QColor channelColor = m_ptrProvider->GetColorForChannel(AZ::Crc32(value.c_str())); - - m_cachedColorIcons.push_back(CreatePixmapForColor(channelColor)); - }); - endResetModel(); - } - - ConfigureAnnotationsModel::ConfigureAnnotationsModel(AnnotationsProvider* ptrProvider, QObject* pParent) - : QAbstractTableModel(pParent) - { - m_ptrProvider = ptrProvider; - connect(ptrProvider, &AnnotationsProvider::KnownAnnotationsChanged, this, &ConfigureAnnotationsModel::Recache); - Recache(); - } - - ConfigureAnnotationsModel::~ConfigureAnnotationsModel() - { - } - - /////////////////////////////// - // ConfigureAnnotationsWindow - /////////////////////////////// - - ConfigureAnnotationsWindow::ConfigureAnnotationsWindow(QWidget* pParent /* = NULL */) - : QDialog(pParent) - , m_proxyModel(nullptr) - { - m_ptrLoadedUI = azcreate(Ui::configureAnnotationsDialog, ()); - m_ptrLoadedUI->setupUi(this); - } - - ConfigureAnnotationsWindow::~ConfigureAnnotationsWindow() - { - AZStd::intrusive_ptr pState = AZ::UserSettings::CreateFind(AZ_CRC("CONFIGURE ANNOTATIONS WINDOW", 0x581c6568), AZ::UserSettings::CT_GLOBAL); - if (pState) - { - pState->CaptureGeometry(this); - } - - azdestroy(m_ptrLoadedUI); - } - - void ConfigureAnnotationsWindow::Initialize(AnnotationsProvider* ptrProvider) - { - m_ptrProvider = ptrProvider; - m_ptrModel = aznew ConfigureAnnotationsModel(ptrProvider, this); - - m_proxyModel = new QSortFilterProxyModel(this); - m_proxyModel->setDynamicSortFilter(false); - m_proxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive); - m_proxyModel->setSortCaseSensitivity(Qt::CaseInsensitive); - m_proxyModel->setSourceModel(m_ptrModel); - - m_ptrLoadedUI->statusTable->setSelectionBehavior(QAbstractItemView::SelectRows); - m_ptrLoadedUI->statusTable->setModel(m_proxyModel); - m_ptrLoadedUI->statusTable->setItemDelegate(aznew AzToolsFramework::ColorPickerDelegate(this)); - m_ptrLoadedUI->statusTable->horizontalHeader()->setSortIndicator(0, Qt::AscendingOrder); - - connect(m_ptrLoadedUI->searchField, SIGNAL(textChanged(const QString&)), this, SLOT(OnFilterChanged(const QString&))); - - AZStd::intrusive_ptr windowState = AZ::UserSettings::Find(AZ_CRC("CONFIGURE ANNOTATIONS WINDOW", 0x581c6568), AZ::UserSettings::CT_GLOBAL); - - if (windowState) - { - windowState->RestoreGeometry(this); - } - } - - void ConfigureAnnotationsWindow::OnFilterChanged(const QString& filter) - { - m_proxyModel->setFilterFixedString(filter); - } - - void ConfigureAnnotationsWindow::closeEvent (QCloseEvent* e) - { - e->accept(); - deleteLater(); - } -} - -#include diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.hxx deleted file mode 100644 index 7c9c91203f..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.hxx +++ /dev/null @@ -1,91 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef CONFIGURE_ANNOTATIONS_WINDOW_H -#define CONFIGURE_ANNOTATIONS_WINDOW_H - -#pragma once - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include -#endif - -class QSortFilterProxyModel; - -namespace Ui -{ - class configureAnnotationsDialog; -} - -namespace Driller -{ - class AnnotationsProvider; - class ConfigureAnnotationsModel; - - class ConfigureAnnotationsWindow : public QDialog - { - Q_OBJECT - public: - AZ_CLASS_ALLOCATOR(ConfigureAnnotationsWindow, AZ::SystemAllocator, 0); - - ConfigureAnnotationsWindow(QWidget *pParent = NULL); - virtual ~ConfigureAnnotationsWindow(); - - void Initialize(AnnotationsProvider* ptrProvider); - - public slots: - void OnFilterChanged(const QString&); - - protected: - Ui::configureAnnotationsDialog* m_ptrLoadedUI; - QSortFilterProxyModel* m_proxyModel; - ConfigureAnnotationsModel* m_ptrModel; - AnnotationsProvider* m_ptrProvider; - virtual void closeEvent ( QCloseEvent * e ); - }; - - - class ConfigureAnnotationsModel : public QAbstractTableModel - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(ConfigureAnnotationsModel, AZ::SystemAllocator, 0); - - //////////////////////////////////////////////////////////////////////////////////////////////// - // QAbstractTableModel - int rowCount(const QModelIndex& index = QModelIndex()) const override; - int columnCount(const QModelIndex& index = QModelIndex()) const override; - Qt::ItemFlags flags(const QModelIndex &index) const override; - - QVariant data(const QModelIndex& index, int role) const override; - bool setData(const QModelIndex &index, const QVariant &value, int role) override; - QVariant headerData ( int section, Qt::Orientation orientation, int role ) const override; - //////////////////////////////////////////////////////////////////////////////////////////////// - - ConfigureAnnotationsModel(AnnotationsProvider* ptrProvider, QObject *pParent = NULL); - - virtual ~ConfigureAnnotationsModel(); - - private: - AnnotationsProvider* m_ptrProvider; - AZStd::vector m_cache; - AZStd::vector m_cachedColorIcons; - - QPixmap CreatePixmapForColor(QColor color); - - private slots: - void Recache(); - }; - - -} - -#endif //CONFIGURE_ANNOTATIONS_WINDOW_H diff --git a/Code/Tools/Standalone/Source/Driller/AreaChart.cpp b/Code/Tools/Standalone/Source/Driller/AreaChart.cpp deleted file mode 100644 index fef31aaaf3..0000000000 --- a/Code/Tools/Standalone/Source/Driller/AreaChart.cpp +++ /dev/null @@ -1,639 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#include -#include - -#include - -#include -#include - -#include -#include -#include - -namespace AreaChart -{ - /////////////// - // LineSeries - /////////////// - - LineSeries::LineSeries(AreaChart* owner, size_t seriesId, const QString& name, const QColor& color, size_t seriesSize) - : m_owner(owner) - , m_seriesId(seriesId) - , m_name(name) - , m_color(color) - , m_highlighted(false) - , m_enabled(true) - , m_hasData(false) - { - if (seriesSize > 0) - { - m_linePoints.reserve(seriesSize); - } - } - - LineSeries::~LineSeries() - { - } - - size_t LineSeries::GetSeriesId() const - { - return m_seriesId; - } - - void LineSeries::AddPoint(const LinePoint& linePoint) - { - // Handle simple case first - if (m_linePoints.empty() || m_linePoints.back().m_position < linePoint.m_position) - { - m_hasData |= linePoint.m_value > 0; - m_linePoints.push_back(linePoint); - } - else - { - // TODO: Handle the case of out of order insertion - AZ_Error("LineSeries",false,"Trying to add series point out of order. Unsupported behavior"); - } - } - - void LineSeries::Reset() - { - m_linePoints.clear(); - } - - bool LineSeries::IsHighlighted() const - { - return m_highlighted; - } - - bool LineSeries::IsEnabled() const - { - return m_enabled && m_hasData; - } - - const QColor& LineSeries::GetColor() const - { - return m_color; - } - - void LineSeries::ResetPainterPath() - { - // Kind of silly that QPainterPath doesn't have a clear. - m_painterPath = QPainterPath(); - } - - QPainterPath& LineSeries::GetPainterPath() - { - return m_painterPath; - } - - const QPainterPath& LineSeries::GetPainterPath() const - { - return m_painterPath; - } - - ////////////// - // AreaChart - ////////////// - - const size_t AreaChart::k_invalidSeriesId = static_cast(-1); - - AreaChart::AreaChart(QWidget* parent) - : QWidget(parent) - , m_inspectionSeries(k_invalidSeriesId) - , m_sizingDirty(true) - , m_regenGraph(true) - , m_axisMin(0) - , m_horizontalAxis(nullptr) - , m_verticalAxis(nullptr) - , m_insetTop(16) - , m_insetBottom(24) - , m_insetLeft(56) - , m_insetRight(16) - , m_widgetBackground(32,32,32,255) - , m_graphBackground(Qt::black) - { - setStyleSheet(QString("QToolTip { border: 1px solid white; padding: 1px; background: black; color: white; }")); - - m_axisMax = m_axisMin; - } - - AreaChart::~AreaChart() - { - delete m_horizontalAxis; - delete m_verticalAxis; - } - - bool AreaChart::IsMouseInspectionEnabled() const - { - return hasMouseTracking(); - } - - void AreaChart::EnableMouseInspection(bool enabled) - { - setMouseTracking(enabled); - } - - void AreaChart::SetMinimumValueRange(unsigned int value) - { - m_axisMin = value; - - m_axisMax = m_axisMin; - - for (auto& sizingPair : m_maxSizing) - { - if (sizingPair.second > m_axisMax) - { - m_axisMax = sizingPair.second; - } - } - - m_regenGraph = true; - update(); - } - - void AreaChart::ResetChart() - { - m_axisMax = m_axisMin; - m_maxSizing.clear(); - m_lineSeries.clear(); - m_markers.clear(); - - m_sizingDirty = true; - m_regenGraph = true; - - update(); - } - - void AreaChart::ConfigureVerticalAxis(QString label, unsigned int minimumHeight) - { - if (minimumHeight >= 0) - { - SetMinimumValueRange(minimumHeight); - } - - if (m_verticalAxis == nullptr) - { - m_verticalAxis = aznew Charts::Axis(); - } - - if (m_verticalAxis) - { - m_verticalAxis->SetLabel(label); - m_verticalAxis->SetAxisRange(0.0f, static_cast(m_axisMax)); - } - } - - void AreaChart::ConfigureHorizontalAxis(QString label, int minimum, int maximum) - { - if (m_horizontalAxis == nullptr) - { - m_horizontalAxis = aznew Charts::Axis(); - } - - if (m_horizontalAxis) - { - m_horizontalAxis->SetLabel(label); - m_horizontalAxis->SetAxisRange(static_cast(minimum), static_cast(maximum)); - } - } - - void AreaChart::ResetSeries(AZ::u32 seriesId) - { - if (!IsValidSeriesId(seriesId)) - { - return; - } - - m_lineSeries[seriesId].Reset(); - } - - size_t AreaChart::CreateSeries(const QString& name, const QColor& color, size_t size) - { - size_t seriesKey = m_lineSeries.size(); - AZ_Error("AreaChart", seriesKey != k_invalidSeriesId,"Trying to use invalid key for series Id. Too many Area Series created."); - - if (size <= 0) - { - size = m_maxSizing.size(); - } - - m_lineSeries.emplace_back(this, seriesKey, name, color, size); - - return seriesKey; - } - - void AreaChart::AddPoint(size_t seriesId, int position, unsigned int value) - { - AZ_PROFILE_FUNCTION(AzToolsFramework); - LinePoint linePoint(position,value); - AddPoint(seriesId,linePoint); - } - - void AreaChart::AddPoint(size_t seriesId, const LinePoint& linePoint) - { - AZ_PROFILE_FUNCTION(AzToolsFramework); - if (!IsValidSeriesId(seriesId)) - { - AZ_Error("AreaChart", false, "Invalid SeriesId given."); - return; - } - - LineSeries& lineSeries = m_lineSeries[seriesId]; - - lineSeries.AddPoint(linePoint); - - auto sizingIter = m_maxSizing.find(linePoint.m_position); - - if (sizingIter != m_maxSizing.end()) - { - sizingIter->second += linePoint.m_value; - - if (sizingIter->second > m_axisMax) - { - m_axisMax = sizingIter->second; - } - } - else - { - m_maxSizing[linePoint.m_position] = linePoint.m_value; - - if (linePoint.m_value > m_axisMax) - { - m_axisMax = linePoint.m_value; - } - } - - m_regenGraph = true; - update(); - } - - void AreaChart::SetSeriesHighlight(size_t seriesId, bool highlighted) - { - if (IsValidSeriesId(seriesId)) - { - LineSeries& lineSeries = m_lineSeries[seriesId]; - - lineSeries.m_highlighted = highlighted; - - update(); - } - } - - void AreaChart::SetSeriesEnabled(size_t seriesId, bool enabled) - { - if (IsValidSeriesId(seriesId)) - { - LineSeries& lineSeries = m_lineSeries[seriesId]; - - lineSeries.m_enabled = enabled; - - // Need to regen our graph data here, since we've removed one from the listing - m_regenGraph = true; - update(); - } - } - - void AreaChart::AddMarker(Charts::AxisType axis, int position, const QColor& color) - { - m_markers.emplace_back(axis, position, color); - } - - void AreaChart::mouseMoveEvent(QMouseEvent* mouseEvent) - { - if (IsMouseInspectionEnabled()) - { - QPoint mousePos = mouseEvent->pos(); - size_t hoveredArea = k_invalidSeriesId; - - if (m_graphRect.contains(mousePos) && m_hitAreas.size() > 0) - { - int offset = mousePos.x() - m_graphRect.left(); - - size_t counter = static_cast(static_cast(offset) / (static_cast(m_graphRect.width())/m_hitAreas.size())); - - bool escape = false; - - // Need to handle the areas right at the edge of the polygons - for (int i = -1; i <= 1; ++i) - { - if ((counter+i) < 0 || (counter + i) >= m_hitAreas.size()) - { - continue; - } - - const AZStd::vector& hitAreas = m_hitAreas[counter + i]; - - for (const HitArea& hitArea : hitAreas) - { - QPolygon polygon = hitArea.m_polygon; - - if (hitArea.m_polygon.containsPoint(mousePos,Qt::OddEvenFill)) - { - hoveredArea = hitArea.m_seriesId; - escape = true; - break; - } - } - - if (escape) - { - break; - } - } - } - - if (hoveredArea != m_inspectionSeries) - { - m_inspectionSeries = hoveredArea; - update(); - - // Signal out which series we are inspecting - emit InspectedSeries(m_inspectionSeries); - } - } - } - - void AreaChart::leaveEvent(QEvent* event) - { - (void)event; - - if (m_inspectionSeries != k_invalidSeriesId) - { - m_inspectionSeries = k_invalidSeriesId; - update(); - - // Signal out which series we are inspecting - emit InspectedSeries(m_inspectionSeries); - } - - if (m_clicked) - { - m_clicked = false; - } - } - - void AreaChart::mousePressEvent(QMouseEvent* mouseEvent) - { - if (IsMouseInspectionEnabled()) - { - m_clicked = true; - m_mouseDownPoint = mouseEvent->pos(); - } - } - - void AreaChart::mouseReleaseEvent(QMouseEvent* mouseEvent) - { - if (IsMouseInspectionEnabled() && m_clicked) - { - QPoint upPoint = mouseEvent->pos(); - - // Want it to be roughly the same spot. - if ((m_mouseDownPoint - upPoint).manhattanLength() < 20) - { - int closestValue = 0; - if (m_horizontalAxis && m_graphRect.width() > 0) - { - float ratio = static_cast(upPoint.x() - m_graphRect.left()) / static_cast(m_graphRect.width()); - closestValue = static_cast(m_horizontalAxis->GetRangeMin()) + static_cast((m_horizontalAxis->GetRange() * ratio) + 0.5f); - } - - emit SelectedSeries(m_inspectionSeries, closestValue); - } - } - } - - void AreaChart::resizeEvent(QResizeEvent* event) - { - (void)event; - - m_sizingDirty = true; - update(); - } - - void AreaChart::paintEvent(QPaintEvent* event) - { - AZ_PROFILE_FUNCTION(AzToolsFramework); - (void)event; - - if (m_sizingDirty) - { - m_sizingDirty = false; - m_regenGraph = true; - - QPoint topLeft(rect().left() + m_insetLeft, rect().top() + m_insetTop); - QPoint bottomRight(rect().right() - m_insetRight, rect().bottom() - m_insetBottom); - - m_graphRect = QRect(topLeft,bottomRight); - } - - if (m_regenGraph) - { - AZ_PROFILE_FUNCTION(AzToolsFramework); - m_regenGraph = false; - - if (m_verticalAxis) - { - m_verticalAxis->SetAxisRange(0.0f, static_cast(m_axisMax)); - } - - m_hitAreas.clear(); - m_hitAreas.reserve(m_maxSizing.size()); - m_hitAreas.resize(m_maxSizing.size()); - - // Running tally of samples that we need to keep track of to manipulate our way through - AZStd::vector runningTotal(m_maxSizing.size(), 0); - - for (LineSeries& lineSeries : m_lineSeries) - { - unsigned int counter = 0; - - // Would have to special case out the single data point sample - if (lineSeries.IsEnabled() && lineSeries.m_linePoints.size() > 1) - { - unsigned int currentValue = lineSeries.m_linePoints[counter].m_value; - - unsigned int bottomLeft = runningTotal[counter]; - unsigned int topLeft = bottomLeft + currentValue; - - runningTotal[counter] = topLeft; - ++counter; - - lineSeries.ResetPainterPath(); - QPainterPath& painterPath = lineSeries.GetPainterPath(); - - AZ_Assert(runningTotal.size() == lineSeries.m_linePoints.size(), "Mismatched/missing sample values given to AreaChart"); - for (; counter < lineSeries.m_linePoints.size(); ++counter) - { - currentValue = lineSeries.m_linePoints[counter].m_value; - - unsigned int bottomRight = runningTotal[counter]; - unsigned int topRight = bottomRight + currentValue; - - runningTotal[counter] = topRight; - - QPolygon polygon; - polygon.append(ConvertToGraphPoint(counter - 1, bottomLeft)); - polygon.append(ConvertToGraphPoint(counter - 1, topLeft)); - polygon.append(ConvertToGraphPoint(counter, topRight)); - polygon.append(ConvertToGraphPoint(counter, bottomRight)); - - painterPath.addPolygon(polygon); - - m_hitAreas[counter].emplace_back(polygon, lineSeries.GetSeriesId()); - - bottomLeft = bottomRight; - topLeft = topRight; - } - } - } - } - - { - QPen pen; - QBrush brush; - QPainter p(this); - - p.fillRect(rect(),m_widgetBackground); - p.fillRect(m_graphRect, m_graphBackground); - - QRect widgetBounds = rect(); - - if (m_horizontalAxis) - { - m_horizontalAxis->PaintAxis(Charts::AxisType::Horizontal, &p, widgetBounds, m_graphRect, nullptr); - } - - if (m_verticalAxis) - { - m_verticalAxis->PaintAxis(Charts::AxisType::Vertical, &p, widgetBounds, m_graphRect, nullptr); - } - - p.setClipRect(m_graphRect.left(), m_graphRect.top() - 1, m_graphRect.width() + 2, m_graphRect.height() + 2); - - brush.setStyle(Qt::SolidPattern); - - pen.setStyle(Qt::SolidLine); - pen.setWidth(2); - - for (LineSeries& lineSeries : m_lineSeries) - { - if (!lineSeries.IsEnabled()) - { - continue; - } - - brush.setColor(lineSeries.GetColor()); - p.fillPath(lineSeries.GetPainterPath(), brush); - - if (lineSeries.IsHighlighted() - || lineSeries.GetSeriesId() == m_inspectionSeries) - { - // Then highlight it - pen.setColor(Qt::white); - p.setPen(pen); - - p.drawPath(lineSeries.GetPainterPath()); - } - } - - brush.setStyle(Qt::SolidPattern); - - pen.setStyle(Qt::SolidLine); - pen.setColor( m_graphBackground ); - pen.setWidth(2); - - p.setPen(pen); - - for (GraphMarker& marker : m_markers) - { - brush.setColor(marker.m_color); - switch (marker.m_axis) - { - case Charts::AxisType::Horizontal: - { - static const int k_barWidth = 4; - static const int k_halfWidth = k_barWidth / 2; - - if (!AZ::IsClose(m_horizontalAxis->GetRange(),0.0f,0.01f) ) - { - float minRange = m_horizontalAxis->GetRangeMin(); - - float ratio = (marker.m_position - minRange) / m_horizontalAxis->GetRange(); - ratio = AZStd::GetMin(1.0f, ratio); - - QPoint startPoint; - startPoint.setX(m_graphRect.left() + static_cast(m_graphRect.width() * ratio) - k_halfWidth); - startPoint.setY(m_graphRect.top()); - - p.fillRect(startPoint.x(), startPoint.y(), k_barWidth, m_graphRect.height(), brush); - p.drawRect(startPoint.x(), startPoint.y() + 1, k_barWidth, m_graphRect.height() - 1); - } - break; - } - case Charts::AxisType::Vertical: - { - QPoint startPoint = ConvertToGraphPoint(0, static_cast(marker.m_position)); - startPoint.setX(m_graphRect.right()); - - p.fillRect(startPoint.x(), startPoint.y(), m_graphRect.width(), 2, brush); - p.drawRect(startPoint.x(), startPoint.y(), m_graphRect.width(), 2); - break; - } - default: - AZ_Error("Standalone Tools", false, "Unknown axis type given to marker."); - }; - } - } - } - - Charts::Axis* AreaChart::GetAxis(Charts::AxisType axisType) - { - switch (axisType) - { - case Charts::AxisType::Horizontal: - return m_horizontalAxis; - case Charts::AxisType::Vertical: - return m_verticalAxis; - default: - AZ_Error("AreaChart", false, "Unknown AxisType."); - return nullptr; - } - } - - bool AreaChart::IsValidSeriesId(size_t seriesId) const - { - return seriesId < m_lineSeries.size(); - } - - QPoint AreaChart::ConvertToGraphPoint(int index, unsigned int value) - { - QPoint graphPoint(m_graphRect.bottomLeft()); - - int maxSizes = static_cast(m_maxSizing.size()); - - if (m_horizontalAxis) - { - maxSizes = AZStd::GetMax(maxSizes, static_cast(m_horizontalAxis->GetRange())); - } - - if (maxSizes >= 2) - { - // -1, since the index is 0 based. - graphPoint.setX(m_graphRect.left() + static_cast(m_graphRect.width() * (static_cast(index) / static_cast(maxSizes - 1)))); - } - - if (m_axisMax > 0) - { - graphPoint.setY(m_graphRect.bottom() - static_cast(m_graphRect.height() * (static_cast(value) / static_cast(m_axisMax)))); - } - - return graphPoint; - } -} diff --git a/Code/Tools/Standalone/Source/Driller/AreaChart.hxx b/Code/Tools/Standalone/Source/Driller/AreaChart.hxx deleted file mode 100644 index 6e41734d07..0000000000 --- a/Code/Tools/Standalone/Source/Driller/AreaChart.hxx +++ /dev/null @@ -1,212 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#pragma once -#ifndef PROFILER_AREACHART_H -#define PROFILER_AREACHART_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include -#include -#include - -#include -#endif - -namespace Charts -{ - class Axis; -} - -namespace AreaChart -{ - class AreaChart; - - struct LinePoint - { - public: - LinePoint(int position, unsigned int value) - : m_position(position) - , m_value(value) - { - } - - int m_position; - unsigned int m_value; - }; - - class LineSeries - { - private: - friend class AreaChart; - - typedef AZStd::vector< LinePoint > LinePoints; - - public: - LineSeries(AreaChart* owner, size_t seriesId, const QString& name, const QColor& color, size_t seriesSize = 0); - ~LineSeries(); - - size_t GetSeriesId() const; - void AddPoint(const LinePoint& linePoint); - void Reset(); - - bool IsHighlighted() const; - bool IsEnabled() const; - - const QColor& GetColor() const; - - void ResetPainterPath(); - - QPainterPath& GetPainterPath(); - const QPainterPath& GetPainterPath() const; - - private: - - AreaChart* m_owner; - LinePoints m_linePoints; - - size_t m_seriesId; - QString m_name; - QColor m_color; - - QPainterPath m_painterPath; - bool m_highlighted; - bool m_enabled; - bool m_hasData; - }; - - class AreaChart - : public QWidget - { - Q_OBJECT - Q_PROPERTY(int insetTop MEMBER m_insetTop) - Q_PROPERTY(int insetBottom MEMBER m_insetBottom) - Q_PROPERTY(int insetLeft MEMBER m_insetLeft) - Q_PROPERTY(int insetRight MEMBER m_insetRight) - Q_PROPERTY(QColor widgetBackground MEMBER m_widgetBackground) - Q_PROPERTY(QColor graphBackground MEMBER m_graphBackground) - - struct HitArea - { - HitArea(const QPolygon& polygon, size_t seriesId) - : m_polygon(polygon) - , m_seriesId(seriesId) - { - } - - QPolygon m_polygon; - size_t m_seriesId; - }; - - struct GraphMarker - { - GraphMarker(Charts::AxisType axis, int position, const QColor& color) - : m_axis(axis) - , m_position(position) - , m_color(color) - { - } - - Charts::AxisType m_axis; - int m_position; - QColor m_color; - }; - - public: - static const size_t k_invalidSeriesId; - - AreaChart(QWidget* parent = nullptr); - ~AreaChart(); - - bool IsMouseInspectionEnabled() const; - void EnableMouseInspection(bool enabled); - - void ResetChart(); - - void ConfigureVerticalAxis(QString label, unsigned int minimumHeight = -1); - void ConfigureHorizontalAxis(QString label, int minimum, int maximum); - - size_t CreateSeries(const QString& name, const QColor& color, size_t size = 0); - void ResetSeries(AZ::u32); - - // Methods of adding points - void AddPoint(size_t seriesId, int position, unsigned int value); - void AddPoint(size_t seriesId, const LinePoint& linePoint); - - // Methods of manipulating series - void SetSeriesHighlight(size_t seriesId, bool highlighted); - void SetSeriesEnabled(size_t seriesId, bool enabled); - - // Methods of adding markers - void AddMarker(Charts::AxisType axis, int position, const QColor& color); - - public slots: - - signals: - void InspectedSeries(size_t seriesId); - void SelectedSeries(size_t seriesId, int position); - - protected: - - // Mouse Inspection - void mouseMoveEvent(QMouseEvent* mouseEvent) override; - void leaveEvent(QEvent* mouseEvent) override; - - // Mouse clicks - void mousePressEvent(QMouseEvent* mouseEvent) override; - void mouseReleaseEvent(QMouseEvent* mouseEvent) override; - - void resizeEvent(QResizeEvent* resizeEvent) override; - void paintEvent(QPaintEvent* paintEvent) override; - - private: - - void SetMinimumValueRange(unsigned int value); - Charts::Axis* GetAxis(Charts::AxisType axisType); - - bool IsValidSeriesId(size_t seriesId) const; - - QPoint ConvertToGraphPoint(int index, unsigned int value); - - AZStd::vector< GraphMarker > m_markers; - AZStd::vector< LineSeries > m_lineSeries; - - AZStd::unordered_map m_maxSizing; - - size_t m_inspectionSeries; - - size_t m_mouseOverArea; - AZStd::vector< AZStd::vector > m_hitAreas; - - bool m_clicked; - QPoint m_mouseDownPoint; - - QRect m_graphRect; - bool m_sizingDirty; - bool m_regenGraph; - - unsigned int m_axisMin; - unsigned int m_axisMax; - - Charts::Axis* m_horizontalAxis; - Charts::Axis* m_verticalAxis; - - // Styling - int m_insetTop; - int m_insetBottom; - int m_insetLeft; - int m_insetRight; - QColor m_widgetBackground; - QColor m_graphBackground; - }; - -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Axis.cpp b/Code/Tools/Standalone/Source/Driller/Axis.cpp deleted file mode 100644 index 6c55f668da..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Axis.cpp +++ /dev/null @@ -1,648 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include - -#include "Axis.hxx" - -namespace Charts -{ - ////////////////////////////////////////////////////////////////////////// - Axis::Axis(QObject* pParent) - : QObject(pParent) - , m_lockRange(true) - , m_lockZoom(true) - , m_lockRight(false) - , m_autoWindow(true) - , m_rangeMin(0) - , m_rangeMax(0) - , m_windowMax(0) - , m_windowMin(0) - , m_rangeMaxInitialized(false) - , m_rangeMinInitialized(false) - {} - Axis::~Axis() - { - } - - bool Axis::GetValid() const - { - return ((m_rangeMinInitialized) && (m_rangeMaxInitialized) && (m_rangeMin < m_rangeMax) && (m_windowMin < m_windowMax)); - } - - void Axis::Clear() - { - bool wasValid = GetValid(); - - m_rangeMinInitialized = false; - m_rangeMaxInitialized = false; - m_rangeMax = m_rangeMin = m_windowMax = m_windowMin = 0.0f; - - if (wasValid) - { - emit Invalidated(); - } - } - - void Axis::SetAxisRange(float minimum, float maximum) - { - float oldRangeMin = m_rangeMin; - float oldRangeMax = m_rangeMax; - float oldWindowMin = m_windowMin; - float oldWindowMax = m_windowMax; - - bool wasValid = GetValid(); - - if (m_lockRight) - { - m_windowMin += maximum - m_rangeMax; - m_windowMax = m_rangeMax; - } - m_rangeMin = minimum; - m_rangeMax = maximum; - - if (m_autoWindow && !m_lockRight) - { - m_windowMin = m_rangeMin; - m_windowMax = m_rangeMax; - } - - m_rangeMinInitialized = true; - m_rangeMaxInitialized = true; - - if ((oldRangeMax != m_rangeMax) || - (oldRangeMin != m_rangeMin) || - (oldWindowMin != m_windowMin) || - (oldWindowMax != m_windowMax) || - (wasValid != GetValid())) - { - emit Invalidated(); - } - } - - void Axis::AddAxisRange(float value) - { - bool updateValues = false; - float minRange = m_rangeMin; - float maxRange = m_rangeMax; - - if ((value < m_rangeMin) || !m_rangeMinInitialized) - { - updateValues = true; - minRange = value; - } - - if ((m_rangeMax < value) || !m_rangeMaxInitialized) - { - updateValues = true; - maxRange = value; - } - - if (updateValues) - { - SetAxisRange(minRange, maxRange); - } - } - - void Axis::SetRangeMax(float rangemax) - { - SetAxisRange(m_rangeMin, rangemax); - } - - void Axis::SetRangeMin(float rangemin) - { - SetAxisRange(rangemin, m_rangeMax); - } - - void Axis::UpdateWindowRange(float delta) - { - if (delta != 0.0f) - { - m_windowMax += delta; - m_windowMin += delta; - if (m_windowMax > m_rangeMax) - { - delta = m_windowMax - m_rangeMax; - m_windowMax -= delta; - m_windowMin -= delta; - } - - if (m_windowMin < m_rangeMin) - { - delta = m_rangeMin - m_windowMin; - m_windowMax += delta; - m_windowMin += delta; - } - - emit Invalidated(); - } - } - - void Axis::SetViewFull() - { - float oldWindowMin = m_windowMin; - float oldWindowMax = m_windowMax; - - m_autoWindow = true; - m_windowMin = m_rangeMin; - m_windowMax = m_rangeMax; - - if ( - (oldWindowMin != m_windowMin) || - (oldWindowMax != m_windowMax) - ) - { - emit Invalidated(); - } - } - - void Axis::SetLabel(QString newLabel) - { - if (m_label != newLabel) - { - m_label = newLabel; - emit Invalidated(); - } - } - - bool Axis::GetLockedRight() const - { - return m_lockRight; - } - - bool Axis::GetLockedRange() const - { - return m_lockRange; - } - - bool Axis::GetLockedZoom() const - { - return m_lockZoom; - } - - void Axis::SetLockedRange(bool newValue) - { - m_lockRange = newValue; - } - - void Axis::SetLockedZoom(bool newValue) - { - m_lockZoom = newValue; - } - - void Axis::SetLockedRight(bool newValue) - { - m_lockRight = newValue; - } - - void Axis::SetAutoWindow(bool autoWindow) - { - m_autoWindow = autoWindow; - } - - bool Axis::GetAutoWindow() const - { - return m_autoWindow; - } - - QString Axis::GetLabel() const - { - return m_label; - } - - float Axis::GetWindowMin() const - { - return m_windowMin; - } - - float Axis::GetWindowMax() const - { - return m_windowMax; - } - - float Axis::GetRangeMin() const - { - return m_rangeMin; - } - - float Axis::GetRangeMax() const - { - return m_rangeMax; - } - - void Axis::SetWindowMin(float newValue) - { - if (m_windowMin != newValue) - { - m_windowMin = newValue; - emit Invalidated(); - } - } - - void Axis::SetWindowMax(float newValue) - { - if (m_windowMax != newValue) - { - m_windowMax = newValue; - emit Invalidated(); - } - } - - float Axis::GetWindowRange() const - { - if (!GetValid()) - { - return 1.0f; - } - return m_windowMax - m_windowMin; - } - - float Axis::GetRange() const - { - if (!GetValid()) - { - return 1.0f; - } - return m_rangeMax - m_rangeMin; - } - - // focuspoint is a number from 0 to 1 that indicates how far along that axis the focal point is - // for example on a horizontal axis, 0 is the start, or GetwindowMin(), and 1 is the end, GetWindowMaX() - - void Axis::Drag(float delta) - { - if (!GetValid()) - { - return; - } - - if (GetLockedRange()) - { - return; - } - - UpdateWindowRange(delta); - } - - void Axis::ZoomToRange(float windowMin, float windowMax, bool clamp) - { - if (!GetValid()) - { - return; - } - - float oldmin = m_windowMin; - float oldmax = m_windowMax; - m_windowMin = windowMin; - m_windowMax = windowMax; - - if (clamp) - { - if (m_windowMin < m_rangeMin) - { - m_windowMin = m_rangeMin; - } - - if (m_windowMax > m_rangeMax) - { - m_windowMax = m_rangeMax; - } - } - - if ((m_windowMin != oldmin) || (m_windowMax != oldmax)) - { - emit Invalidated(); - } - } - - void Axis::Zoom(float ratio, float steps, float zoomLimit) - { - if (!GetValid()) - { - return; - } - - if (GetLockedRight()) - { - ratio = 1.0f; - } - if (!GetLockedZoom()) - { - SetAutoWindow(false); - - float testMin = GetWindowMin(); - float testMax = GetWindowMax(); - - testMin -= float(GetWindowRange()) * 0.05f * ratio * -steps; - testMax += float(GetWindowRange()) * 0.05f * (1.0f - ratio) * -steps; - - if ((testMax - testMin) > 0.0f) - { - if (testMax > GetRangeMax()) - { - float offset = GetRangeMax() - testMax; - testMax += offset; - testMin += offset; - } - if (testMin < GetRangeMin()) - { - float offset = testMin - GetRangeMin(); - testMax -= offset; - testMin -= offset; - } - if (testMax - testMin >= zoomLimit) - { - SetWindowMin(testMin); - SetWindowMax(testMax); - } - if ((testMax - testMin) > (GetRangeMax() - GetRangeMin())) - { - SetViewFull(); - } - } - } - } - - // given a width of a view in pixels, subdivide it and return a vector of domain units that - // satisfy a human outlook on domain values: - float Axis::ComputeAxisDivisions(float pixelWidth, AZStd::vector& domainPointsOut, float minPixels, float maxPixels, bool allowFractions) - { - if (!GetValid()) - { - return 1.0f; - } - - float divisor = 1.0f; - float windowRange = GetWindowRange(); - - // compute the divisor - float currentDivisionWidthInPixels = pixelWidth / (windowRange / divisor); - while (currentDivisionWidthInPixels > maxPixels) - { - // drop it down by 0.5 then by 0.1 - divisor /= 2.0f; - currentDivisionWidthInPixels = pixelWidth / (windowRange / divisor); - if (currentDivisionWidthInPixels <= maxPixels) - { - break; - } - - divisor *= 0.2f; // 0.5f * 0.2f = 0.1 - currentDivisionWidthInPixels = pixelWidth / (windowRange / divisor); - } - // the min pixels is an absolute requirement to prevent text from overlapping - // which is why we apply that constraint LAST. - // so for example, if window shows 100 units, and divisor is 2.0, then that would yield 50 pieces. - // 50 pieces over the span of 1000 pixels is 1000 / 50, 20 pixels each; - // 100 pieces would be (num pieces / pixel space to draw in) pixels - while (currentDivisionWidthInPixels < minPixels) - { - // the division width is too small, there are too many pieces. Make fewer pieces by choosing a larger - // divisor - // drop it down by 0.5 then by 0.1 - divisor *= 5.0f; - currentDivisionWidthInPixels = pixelWidth / (windowRange / divisor); - if (currentDivisionWidthInPixels >= minPixels) - { - break; - } - - divisor *= 2.0f; - currentDivisionWidthInPixels = pixelWidth / (windowRange / divisor); - } - - if ((divisor < 1.0f) && (!allowFractions)) - { - divisor = 1.0f; - } - - - // now lay out the domain starting with the first unit of that number: - float startingUnit = floorf(m_windowMin / divisor) * divisor; - - // to retain precision we are going to try to do the math around the origin. - startingUnit -= m_windowMin; - AZStd::size_t maximumAllowedUnitsBeforeSomethingTerribleHasOccurred = (AZStd::size_t)(pixelWidth / 4.0f); - - // so for example if we've decided that the divisor is 10 units, and the window min is 12.5, then it will go to 1.25, chop off the .25, and go back to 10 - while (startingUnit <= windowRange) - { - if (startingUnit >= 0.0f) - { - domainPointsOut.push_back(startingUnit + m_windowMin); - } - startingUnit += divisor; - - if (domainPointsOut.size() > maximumAllowedUnitsBeforeSomethingTerribleHasOccurred) - { - break; // you can put a break point here, but it usually means that we've lost enough precision. Change your axis range or numbering scheme! - } - } - - return divisor; - } - void Axis::PaintAxis(AxisType axisType, QPainter* painter, const QRect& widgetBounds, const QRect& graphBounds, QAbstractAxisFormatter* formatter) - { - switch (axisType) - { - case AxisType::Horizontal: - PaintAsHorizontalAxis(painter, widgetBounds, graphBounds, formatter); - break; - case AxisType::Vertical: - PaintAsVerticalAxis(painter, widgetBounds, graphBounds, formatter); - break; - default: - break; - } - } - - void Axis::PaintAsVerticalAxis(QPainter* painter, const QRect& widgetBounds, const QRect& graphBounds, QAbstractAxisFormatter* formatter) - { - (void)widgetBounds; - - const QColor axisBrush = QColor(255, 255, 0, 255); - const QColor axisPen = QColor(0, 255, 255, 255); - const QColor dottedColor(64, 64, 64, 255); - const QColor solidColor(0, 255, 255, 255); - - QBrush brush; - QPen pen; - - brush.setColor(axisBrush); - pen.setColor(axisPen); - painter->setPen(pen); - - QFont currentFont = painter->font(); - currentFont.setPointSize(currentFont.pointSize() - 1); - painter->setFont(currentFont); - - int w = painter->fontMetrics().horizontalAdvance(GetLabel()); - int h = painter->fontMetrics().height(); - - int centerHeight = graphBounds.top() + (graphBounds.height() / 2); - - DrawRotatedText(GetLabel(), painter, 270, h, centerHeight + w / 2, 1.25f); - - currentFont.setPointSize(currentFont.pointSize() + 1); - painter->setFont(currentFont); - - QPoint startPoint = graphBounds.topLeft(); - QPoint endPoint = graphBounds.bottomLeft(); - - int height = endPoint.y() - startPoint.y(); - int fontH = painter->fontMetrics().height(); - - if (height == 0) - { - height = 1; - } - - AZStd::vector divisions; - divisions.reserve(10); - - float divisionSize = ComputeAxisDivisions(static_cast(height), divisions, fontH * 2.0f, fontH * 2.0f); - - QPen dottedPen; - dottedPen.setStyle(Qt::DotLine); - dottedPen.setColor(dottedColor); - - QBrush solidBrush; - QPen solidPen; - solidPen.setStyle(Qt::SolidLine); - solidPen.setColor(solidColor); - solidPen.setWidth(1); - - float fullRange = fabs(GetWindowRange()); - - for (float division : divisions) - { - float ratio = static_cast(division - GetWindowMin()) / fullRange; - - QPoint lineStart; - lineStart.setX(endPoint.x()); - lineStart.setY(endPoint.y() - static_cast(height*ratio)); - - QPoint lineEnd(static_cast(lineStart.x() + graphBounds.width()), lineStart.y()); - - painter->setPen(dottedPen); - painter->drawLine(lineStart, lineEnd); - - QString text; - - if (formatter) - { - text = formatter->convertAxisValueToText(Charts::AxisType::Vertical, division, divisions.front(), divisions.back(), divisionSize); - } - else - { - text = QString("%1").arg((AZ::s64)division); - } - - int textW = painter->fontMetrics().horizontalAdvance(text); - painter->setPen(solidPen); - painter->drawText(lineStart.x() - textW - 2, (int)lineStart.y() + fontH / 2, text); - } - } - - void Axis::PaintAsHorizontalAxis(QPainter* painter, const QRect& widgetBounds, const QRect& graphBounds, QAbstractAxisFormatter* formatter) - { - const QColor axisBrush = QColor(255, 255, 0, 255); - const QColor axisPen = QColor(0, 255, 255, 255); - const QColor dottedColor(64, 64, 64,255); - const QColor solidColor(0, 255, 255, 255); - - QBrush brush; - QPen pen; - - brush.setColor(axisBrush); - pen.setColor(axisPen); - painter->setPen(pen); - - QFont currentFont = painter->font(); - currentFont.setPointSize(currentFont.pointSize() - 1); - painter->setFont(currentFont); - - painter->drawText(0, 0, widgetBounds.width(), widgetBounds.height(), Qt::AlignHCenter | Qt::AlignBottom, GetLabel()); - - currentFont.setPointSize(currentFont.pointSize() + 1); - painter->setFont(currentFont); - - QPoint startPoint = graphBounds.bottomLeft(); - QPoint endPoint = graphBounds.bottomRight(); - int width = endPoint.x() - startPoint.x(); - - if (width == 0) - { - width = 1; - } - - float textSpaceRequired = (float)painter->fontMetrics().horizontalAdvance("9,999,999.99"); - - int fontH = painter->fontMetrics().height(); - - AZStd::vector divisions; - divisions.reserve(10); - - float divisionSize = ComputeAxisDivisions(static_cast(width), divisions, textSpaceRequired, textSpaceRequired); - - QPen dottedPen; - dottedPen.setStyle(Qt::DotLine); - dottedPen.setColor(dottedColor); - - QBrush solidBrush; - QPen solidPen; - solidPen.setStyle(Qt::SolidLine); - solidPen.setColor(solidColor); - solidPen.setWidth(1); - - float fullRange = fabs(GetWindowRange()); - - for (float division : divisions) - { - float ratio = float(division - GetWindowMin()) / fullRange; - - QPoint lineStart; - lineStart.setX(startPoint.x() + static_cast(width*ratio)); - lineStart.setY(startPoint.y()); - - QPoint lineEnd(lineStart.x(), static_cast(startPoint.y() - graphBounds.height())); - - painter->setPen(dottedPen); - painter->drawLine(lineStart, lineEnd); - - QString text; - - if (formatter) - { - text = formatter->convertAxisValueToText(Charts::AxisType::Horizontal, division, divisions.front(), divisions.back(), divisionSize); - } - else - { - text = QString("%1").arg((AZ::s64)division); - } - - int textW = painter->fontMetrics().horizontalAdvance(text); - - painter->setPen(solidPen); - painter->drawText(lineStart.x() - textW / 2, startPoint.y() + fontH, text); - } - } - - void Axis::DrawRotatedText(QString text, QPainter *painter, float degrees, int x, int y, float scale) - { - painter->save(); - painter->translate(x, y); - painter->scale(scale, scale); - painter->rotate(degrees); - painter->drawText(0, 0, text); - painter->restore(); - } -} - -#include diff --git a/Code/Tools/Standalone/Source/Driller/Axis.hxx b/Code/Tools/Standalone/Source/Driller/Axis.hxx deleted file mode 100644 index a9231307b7..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Axis.hxx +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef CHART_AXIS_H -#define CHART_AXIS_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include - -#include -#include -#endif - -class QPainter; - -#pragma once - -namespace Charts -{ - // the Axis represents one axis on a chart. its float-based - // it contains information about window range and domain range. - class Axis : public QObject - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(Axis,AZ::SystemAllocator,0); - Axis(QObject* pParent = NULL); - ~Axis(); // not virtual - - public: - bool GetValid() const; - bool GetAutoWindow() const; - QString GetLabel() const; - float GetWindowMin() const; - float GetWindowMax() const; - float GetRangeMin() const; - float GetRangeMax() const; - float GetWindowRange() const; - float GetRange() const; - bool GetLockedZoom() const; - bool GetLockedRange() const; - bool GetLockedRight() const; - void Zoom(float focusPoint, float steps, float zoomLimit ); - void ZoomToRange(float windowMin, float windowMax, bool clamp); - - void PaintAxis(AxisType axisType, QPainter* painter, const QRect& widgetBounds, const QRect& graphBounds, QAbstractAxisFormatter* formatter); - - float ComputeAxisDivisions(float pixelWidth, AZStd::vector& domainPointsOut, float minPixels, float maxPixels, bool allowFractions = true); - -signals: - void Invalidated(); // something has happened which should cause anyone using this axis to update themselves. - -public slots: - void SetAxisRange( float minimum, float maximum ); - void AddAxisRange( float value ); - void SetViewFull(); - void SetLabel(QString newLabel); - void SetLockedRight(bool lockRight); - void SetLockedRange(bool locked); // cannot pan - void SetLockedZoom(bool locked); // cannot zoom. - void Clear(); - void SetAutoWindow( bool autoWindow ); - void SetWindowMin(float newValue); - void SetWindowMax(float newValue); - void UpdateWindowRange(float delta); - void SetRangeMax(float rangemax); - void SetRangeMin(float rangemin); - void Drag(float delta); - - private: - - void PaintAsVerticalAxis(QPainter* painter, const QRect& widgetBounds, const QRect& graphBounds, QAbstractAxisFormatter* formatter); - void PaintAsHorizontalAxis(QPainter* painter, const QRect& widgetBounds, const QRect& graphBounds, QAbstractAxisFormatter* formatter); - void DrawRotatedText(QString text, QPainter *painter, float degrees, int x, int y, float scale); - - QString m_label; - float m_rangeMin; - float m_rangeMax; - float m_windowMin; - float m_windowMax; - bool m_lockZoom; // zoom is always to the range - bool m_lockRange; // you may only pan - bool m_lockRight; - bool m_autoWindow; - bool m_rangeMinInitialized; - bool m_rangeMaxInitialized; // these are false until you init them, and the axis is invalid until such a time. - }; -} - - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/CSVExportSettings.h b/Code/Tools/Standalone/Source/Driller/CSVExportSettings.h deleted file mode 100644 index c7fc45d25d..0000000000 --- a/Code/Tools/Standalone/Source/Driller/CSVExportSettings.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_CSVEXPORTSETTINGS_H -#define DRILLER_CSVEXPORTSETTINGS_H - -#include -#include - -#pragma once - -namespace Driller -{ - class CSVExportSettings - { - public: - AZ_CLASS_ALLOCATOR(CSVExportSettings, AZ::SystemAllocator, 0); - - CSVExportSettings() - : m_shouldExportColumnDescriptor(true) - { - } - - virtual ~CSVExportSettings() - { - } - - void SetShouldExportColumnDescriptors(bool shouldExport) - { - m_shouldExportColumnDescriptor = shouldExport; - } - - bool ShouldExportColumnDescriptors() const - { - return m_shouldExportColumnDescriptor; - } - - private: - bool m_shouldExportColumnDescriptor; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.cpp deleted file mode 100644 index 6e943ae2c0..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.cpp +++ /dev/null @@ -1,392 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include - -#include "CarrierDataAggregator.hxx" -#include -#include "CarrierDataEvents.h" -#include "CarrierDataView.hxx" - -namespace Driller -{ - ///////////////////////////// - // CarrierCSVExportSettings - ///////////////////////////// - CarrierExportSettings::CarrierExportSettings() - { - m_columnDescriptors = - { - {ExportField::Data_Sent, "Data Sent(Bytes)"}, - {ExportField::Data_Received, "Data Received(Bytes)"}, - {ExportField::Data_Resent, "Data Resent(Bytes)"}, - {ExportField::Data_Acked, "Data Acked(Bytes)"}, - {ExportField::Packets_Sent, "Packets Sent"}, - {ExportField::Packets_Received, "Packets Received"}, - {ExportField::Packets_Lost, "Packets Lost"}, - {ExportField::Packets_Acked, "Packets Acked"}, - {ExportField::Packet_RTT, "Packet Round Trip Time"}, - {ExportField::Packet_Loss, "Packet Loss(%)"}, - {ExportField::Effective_Data_Sent, "Effective Data Sent(Bytes)"}, - {ExportField::Effective_Data_Received, "Effective Data Received(Bytes)"}, - {ExportField::Effective_Data_Resent, "Effective Data Resent(Bytes)"}, - {ExportField::Effective_Data_Acked, "Effective Data Acked(Bytes)"}, - {ExportField::Effective_Packets_Sent, "Effective Packets Sent"}, - {ExportField::Effective_Packets_Received, "Effective Packets Received"}, - {ExportField::Effective_Packets_Lost, "Effective Packets Lost"}, - {ExportField::Effective_Packets_Acked, "Effective Packets Acked"}, - {ExportField::Effective_Packet_RTT, "Effective Packet Round Trip Time"}, - {ExportField::Effective_Packet_Loss, "Effective Packet Loss(%)"} - }; - - m_exportOrdering = - { - ExportField::Data_Sent, - ExportField::Effective_Data_Sent, - ExportField::Data_Received, - ExportField::Effective_Data_Received, - ExportField::Data_Resent, - ExportField::Effective_Data_Resent, - ExportField::Data_Acked, - ExportField::Effective_Data_Acked, - ExportField::Packets_Sent, - ExportField::Effective_Packets_Sent, - ExportField::Packets_Received, - ExportField::Effective_Packets_Received, - ExportField::Packets_Lost, - ExportField::Effective_Packets_Lost, - ExportField::Packets_Acked, - ExportField::Effective_Packets_Acked, - ExportField::Packet_RTT, - ExportField::Effective_Packet_RTT, - ExportField::Packet_Loss, - ExportField::Effective_Packet_Loss - }; - - for (const AZStd::pair< ExportField, AZStd::string >& item : m_columnDescriptors) - { - m_stringToExportEnum[item.second] = item.first; - } - } - - void CarrierExportSettings::GetExportItems(QStringList& items) const - { - for (const AZStd::pair< CarrierExportField, AZStd::string>& item : m_columnDescriptors) - { - items.push_back(QString(item.second.c_str())); - } - } - - void CarrierExportSettings::GetActiveExportItems(QStringList& items) const - { - for (CarrierExportField currentField : m_exportOrdering) - { - if (currentField != CarrierExportField::UNKNOWN) - { - items.push_back(QString(FindColumnDescriptor(currentField).c_str())); - } - } - } - - void CarrierExportSettings::UpdateExportOrdering(const QStringList& activeItems) - { - m_exportOrdering.clear(); - - for (const QString& activeItem : activeItems) - { - ExportField field = FindExportFieldFromDescriptor(activeItem.toStdString().c_str()); - - AZ_Assert(field != ExportField::UNKNOWN, "Unknown descriptor %s", activeItem.toStdString().c_str()); - if (field != ExportField::UNKNOWN) - { - m_exportOrdering.push_back(field); - } - } - } - - const AZStd::vector< CarrierExportField >& CarrierExportSettings::GetExportOrder() const - { - return m_exportOrdering; - } - - const AZStd::string& CarrierExportSettings::FindColumnDescriptor(ExportField exportField) const - { - static const AZStd::string emptyDescriptor; - - AZStd::unordered_map::const_iterator descriptorIter = m_columnDescriptors.find(exportField); - - if (descriptorIter == m_columnDescriptors.end()) - { - AZ_Assert(false, "Unknown column descriptor in Carrier CSV Export"); - return emptyDescriptor; - } - else - { - return descriptorIter->second; - } - } - - CarrierExportField CarrierExportSettings::FindExportFieldFromDescriptor(const char* columnDescriptor) const - { - AZStd::unordered_map::const_iterator exportIter = m_stringToExportEnum.find(columnDescriptor); - - ExportField retVal = ExportField::UNKNOWN; - - if (exportIter != m_stringToExportEnum.end()) - { - retVal = exportIter->second; - } - - return retVal; - } - - ////////////////////////// - // CarrierDataAggregator - ////////////////////////// - float CarrierDataAggregator::GetTValueAtFrame(FrameNumberType frame, AZ::s64 maxValue) - { - float valueAtFrame = 0.0f; - - size_t numEventsAtFrame = NumOfEventsAtFrame(frame); - for (EventNumberType i = m_frameToEventIndex[frame]; i < static_cast(m_frameToEventIndex[frame] + numEventsAtFrame); i++) - { - CarrierDataEvent* event = static_cast(m_events[i]); - // Consider the aggregation a sum of all data send and received (i.e. total bandwidth used). - valueAtFrame += event->mLastSecond.mDataSend + event->mLastSecond.mDataReceived; - } - - if (valueAtFrame >= maxValue) - { - return 1.0f; - } - - if (valueAtFrame == 0.0f) - { - return -1.0f; - } - - float tValue = (valueAtFrame / (maxValue * 2)) - 1.0f; - return tValue; - } - - CarrierDataAggregator::CarrierDataAggregator(int identity) - : Aggregator(identity) - , m_parser(this) - { - } - - CustomizeCSVExportWidget* CarrierDataAggregator::CreateCSVExportCustomizationWidget() - { - return aznew GenericCustomizeCSVExportWidget(m_csvExportSettings); - } - - float CarrierDataAggregator::ValueAtFrame(FrameNumberType frame) - { - return GetTValueAtFrame(frame, (1024 * 20)); - } - - QColor CarrierDataAggregator::GetColor() const - { - return QColor(255, 0, 0); - } - - QString CarrierDataAggregator::GetName() const - { - return QString("Carrier"); - } - - QString CarrierDataAggregator::GetChannelName() const - { - return ChannelName(); - } - - QString CarrierDataAggregator::GetDescription() const - { - return QString("GridMate Carrier Data"); - } - - QString CarrierDataAggregator::GetToolTip() const - { - return QString("Information about overall bandwidth usage"); - } - - AZ::Uuid CarrierDataAggregator::GetID() const - { - return AZ::Uuid("{927B208C-28E8-4BE7-BF4E-629D98F7097F}"); - } - - QWidget* CarrierDataAggregator::DrillDownRequest(FrameNumberType frame) - { - (void)frame; - - // Always provide a full view of the driller data. - FrameNumberType lastFrame = static_cast(m_frameToEventIndex.size() - 1); - - // This pointer is cleaned up by qt when the window is closed. - return aznew CarrierDataView(0, lastFrame, this); - } - - void CarrierDataAggregator::OptionsRequest() - { - } - - void CarrierDataAggregator::ExportColumnDescriptorToCSV(AZ::IO::SystemFile& file, CSVExportSettings* exportSettings) - { - CarrierExportSettings* carrierExportSettings = static_cast(exportSettings); - const AZStd::vector< CarrierExportField >& exportOrdering = carrierExportSettings->GetExportOrder(); - - bool addComma = false; - - for (CarrierExportField currentField : exportOrdering) - { - if (addComma) - { - file.Write(",", 1); - } - - const AZStd::string& columnDescriptor = carrierExportSettings->FindColumnDescriptor(currentField); - file.Write(columnDescriptor.c_str(), columnDescriptor.size()); - addComma = true; - } - - file.Write("\n", 1); - } - - void CarrierDataAggregator::ExportEventToCSV(AZ::IO::SystemFile& file, const DrillerEvent* drillerEvent, CSVExportSettings* exportSettings) - { - const CarrierDataEvent* carrierEvent = static_cast(drillerEvent); - - CarrierExportSettings* carrierExportSettings = static_cast(exportSettings); - - const AZStd::vector< CarrierExportField >& exportOrdering = carrierExportSettings->GetExportOrder(); - bool addComma = false; - - AZStd::string number; - - for (CarrierExportField currentField : exportOrdering) - { - if (addComma) - { - file.Write(",", 1); - } - - switch (currentField) - { - case CarrierExportField::Data_Sent: - { - AZStd::to_string(number, carrierEvent->mLastSecond.mDataSend); - break; - } - case CarrierExportField::Data_Received: - { - AZStd::to_string(number, carrierEvent->mLastSecond.mDataReceived); - break; - } - case CarrierExportField::Data_Resent: - { - AZStd::to_string(number, carrierEvent->mLastSecond.mDataResent); - break; - } - case CarrierExportField::Data_Acked: - { - AZStd::to_string(number, carrierEvent->mLastSecond.mDataAcked); - break; - } - case CarrierExportField::Packets_Sent: - { - AZStd::to_string(number, carrierEvent->mLastSecond.mPacketSend); - break; - } - case CarrierExportField::Packets_Received: - { - AZStd::to_string(number, carrierEvent->mLastSecond.mPacketReceived); - break; - } - case CarrierExportField::Packets_Lost: - { - AZStd::to_string(number, carrierEvent->mLastSecond.mPacketLost); - break; - } - case CarrierExportField::Packets_Acked: - { - AZStd::to_string(number, carrierEvent->mLastSecond.mPacketAcked); - break; - } - case CarrierExportField::Packet_RTT: - { - AZStd::to_string(number, carrierEvent->mLastSecond.mRTT); - break; - } - case CarrierExportField::Packet_Loss: - { - AZStd::to_string(number, carrierEvent->mLastSecond.mPacketLoss); - break; - } - case CarrierExportField::Effective_Data_Sent: - { - AZStd::to_string(number, carrierEvent->mEffectiveLastSecond.mDataSend); - break; - } - case CarrierExportField::Effective_Data_Received: - { - AZStd::to_string(number, carrierEvent->mEffectiveLastSecond.mDataReceived); - break; - } - case CarrierExportField::Effective_Data_Resent: - { - AZStd::to_string(number, carrierEvent->mEffectiveLastSecond.mDataResent); - break; - } - case CarrierExportField::Effective_Data_Acked: - { - AZStd::to_string(number, carrierEvent->mEffectiveLastSecond.mDataAcked); - break; - } - case CarrierExportField::Effective_Packets_Sent: - { - AZStd::to_string(number, carrierEvent->mEffectiveLastSecond.mPacketSend); - break; - } - case CarrierExportField::Effective_Packets_Received: - { - AZStd::to_string(number, carrierEvent->mEffectiveLastSecond.mPacketReceived); - break; - } - case CarrierExportField::Effective_Packets_Lost: - { - AZStd::to_string(number, carrierEvent->mEffectiveLastSecond.mPacketLost); - break; - } - case CarrierExportField::Effective_Packets_Acked: - { - AZStd::to_string(number, carrierEvent->mEffectiveLastSecond.mPacketAcked); - break; - } - case CarrierExportField::Effective_Packet_RTT: - { - AZStd::to_string(number, carrierEvent->mEffectiveLastSecond.mRTT); - break; - } - case CarrierExportField::Effective_Packet_Loss: - { - AZStd::to_string(number, carrierEvent->mEffectiveLastSecond.mPacketLoss); - break; - } - default: - AZ_Assert(false, "Unknown CarrierExportField"); - break; - } - - file.Write(number.c_str(), number.size()); - addComma = true; - } - - file.Write("\n", 1); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.hxx deleted file mode 100644 index 9981148135..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.hxx +++ /dev/null @@ -1,154 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_CARRIER_DATAAGGREGATOR_H -#define DRILLER_CARRIER_DATAAGGREGATOR_H - -#if !defined(Q_MOC_RUN) -#include "Source/Driller/DrillerAggregator.hxx" -#include "CarrierDataParser.h" - -#include "Source/Driller/GenericCustomizeCSVExportWidget.hxx" -#endif - -namespace Driller -{ - struct CarrierData; -} - -namespace Driller -{ - class CarrierDataView; - - class CarrierExportSettings - : public GenericCSVExportSettings - { - public: - enum class ExportField - { - Data_Sent, - Data_Received, - Data_Resent, - Data_Acked, - Packets_Sent, - Packets_Received, - Packets_Lost, - Packets_Acked, - Packet_RTT, - Packet_Loss, - Effective_Data_Sent, - Effective_Data_Received, - Effective_Data_Resent, - Effective_Data_Acked, - Effective_Packets_Sent, - Effective_Packets_Received, - Effective_Packets_Lost, - Effective_Packets_Acked, - Effective_Packet_RTT, - Effective_Packet_Loss, - - UNKNOWN - }; - - private: - AZStd::unordered_map m_columnDescriptors; - AZStd::unordered_map m_stringToExportEnum; - AZStd::vector< ExportField > m_exportOrdering; - - public: - AZ_CLASS_ALLOCATOR(CarrierExportSettings, AZ::SystemAllocator, 0); - - CarrierExportSettings(); - - void GetExportItems(QStringList& items) const override; - void GetActiveExportItems(QStringList& items) const override; - - const AZStd::vector< ExportField >& GetExportOrder() const; - const AZStd::string& FindColumnDescriptor(ExportField exportField) const; - - protected: - void UpdateExportOrdering(const QStringList& activeItems) override; - - private: - ExportField FindExportFieldFromDescriptor(const char* descriptor) const; - }; - - typedef CarrierExportSettings::ExportField CarrierExportField; - - class CarrierDataAggregator : public Aggregator - { - Q_OBJECT - public: - AZ_CLASS_ALLOCATOR(CarrierDataAggregator, AZ::SystemAllocator, 0); - - CarrierDataAggregator(int identity = 0); - - static AZ::u32 DrillerId() { return AZ_CRC("CarrierDriller"); } - - // Driller::Aggregator. - AZ::u32 GetDrillerId() const override - { - return DrillerId(); - } - - static const char* ChannelName() { return "GridMate"; } - - AZ::Crc32 GetChannelId() const override - { - return AZ::Crc32(ChannelName()); - } - - - AZ::Debug::DrillerHandlerParser* GetDrillerDataParser() override - { - return &m_parser; - } - - bool CanExportToCSV() const override - { - return true; - } - - CustomizeCSVExportWidget* CreateCSVExportCustomizationWidget() override; - - // Driller::Aggregator. - void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*) override {} - void ActivateWorkspaceSettings(WorkspaceSettingsProvider*) override {} - void SaveSettingsToWorkspace(WorkspaceSettingsProvider*) override {} - - public slots: - // Driller::Aggregator. - float ValueAtFrame(FrameNumberType frame) override; - QColor GetColor() const override; - QString GetName() const override; - QString GetChannelName() const override; - QString GetDescription() const override; - QString GetToolTip() const override; - AZ::Uuid GetID() const override; - QWidget* DrillDownRequest(FrameNumberType frame) override; - void OptionsRequest() override; - - protected: - void ExportColumnDescriptorToCSV(AZ::IO::SystemFile& file, CSVExportSettings* exportSettings) override; - void ExportEventToCSV(AZ::IO::SystemFile& file, const DrillerEvent* drillerEvent, CSVExportSettings* exportSettings) override; - - private: - - // Aggregate all data events in a particular frame and return a normalized - // value in the range [-1,1] based on the min/max range [0,maxValue]. - float GetTValueAtFrame(FrameNumberType frame, AZ::s64 maxValue); - - CarrierExportSettings m_csvExportSettings; - - // A parser that will parse carrier driller XML data and add events back - // into this aggregator. - CarrierDataParser m_parser; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataEvents.h b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataEvents.h deleted file mode 100644 index 3947d593c8..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataEvents.h +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_CARRIER_DATAEVENTS_H -#define DRILLER_CARRIER_DATAEVENTS_H - -#include -#include -#include -#include "Source/Driller/DrillerEvent.h" - -namespace Driller -{ - namespace Carrier - { - enum CarrierEventType - { - CET_INFO = 1 - }; - } - - struct CarrierData - { - AZ::s32 mDataSend; //< Data sent (bytes). - AZ::s32 mDataReceived; //< Data received (bytes). - AZ::s32 mDataResent; //< Data resent (bytes). - AZ::s32 mDataAcked; //< Data acknowledged (bytes). - AZ::s32 mPacketSend; //< Number of packets sent. - AZ::s32 mPacketReceived; //< Number of packets received. - AZ::s32 mPacketLost; //< Number of packets lost. - AZ::s32 mPacketAcked; //< Number of packets acknowledged. - float mRTT; //< Round-trip time. - float mPacketLoss; //< Packet loss percentage. - }; - - class CarrierDataEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(CarrierDataEvent, AZ::SystemAllocator, 0); - - CarrierDataEvent() - : DrillerEvent(Carrier::CET_INFO) - , mID("") - { - }; - - virtual void StepForward(Aggregator* data) { (void)data; }; - virtual void StepBackward(Aggregator* data) { (void)data; }; - - AZStd::string mID; - CarrierData mLastSecond; - CarrierData mEffectiveLastSecond; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.cpp deleted file mode 100644 index 1595487994..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.cpp +++ /dev/null @@ -1,131 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "CarrierDataEvents.h" -#include "CarrierDataAggregator.hxx" -#include "CarrierDataParser.h" - -namespace Driller -{ - CarrierDataParser::CarrierDataParser(CarrierDataAggregator* m_aggregator) - : DrillerHandlerParser(false) - , m_currentType(CDT_NONE) - , m_aggregator(m_aggregator) - { - } - - CarrierDataParser::~CarrierDataParser() - { - } - - AZ::Debug::DrillerHandlerParser* CarrierDataParser::OnEnterTag(AZ::u32 tagName) - { - // Start of a new event. - if (tagName == AZ_CRC("Statistics")) - { - m_currentType = CDT_STATISTICS; - m_aggregator->AddEvent(aznew CarrierDataEvent); - return this; - } - else if (tagName == AZ_CRC("LastSecond")) - { - m_currentType = CDT_LAST_SECOND; - return this; - } - else if (tagName == AZ_CRC("EffectiveLastSecond")) - { - m_currentType = CDT_EFFECTIVE_LAST_SECOND; - return this; - } - else - { - return nullptr; - } - } - - void CarrierDataParser::OnExitTag(AZ::Debug::DrillerHandlerParser* handler, AZ::u32 tagName) - { - (void)handler; - - if (tagName == AZ_CRC("LastSecond") || tagName == AZ_CRC("EffectiveLastSecond")) - { - m_currentType = CDT_NONE; - } - } - - void CarrierDataParser::OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode) - { - // Ignore unsupported tags. - if (m_currentType == CDT_NONE) - { - return; - } - - CarrierDataEvent* event = static_cast(m_aggregator->GetEvents().back()); - - if (m_currentType == CDT_STATISTICS) - { - dataNode.Read(event->mID); - return; - } - - CarrierData* eventData = nullptr; - switch (m_currentType) - { - case CDT_LAST_SECOND: - eventData = &event->mLastSecond; - break; - case CDT_EFFECTIVE_LAST_SECOND: - eventData = &event->mEffectiveLastSecond; - break; - default: - return; - } - - if (dataNode.m_name == AZ_CRC("DataSend")) - { - dataNode.Read(eventData->mDataSend); - } - else if (dataNode.m_name == AZ_CRC("DataReceived")) - { - dataNode.Read(eventData->mDataReceived); - } - else if (dataNode.m_name == AZ_CRC("DataResent")) - { - dataNode.Read(eventData->mDataResent); - } - else if (dataNode.m_name == AZ_CRC("DataAcked")) - { - dataNode.Read(eventData->mDataAcked); - } - else if (dataNode.m_name == AZ_CRC("PacketSend")) - { - dataNode.Read(eventData->mPacketSend); - } - else if (dataNode.m_name == AZ_CRC("PacketReceived")) - { - dataNode.Read(eventData->mPacketReceived); - } - else if (dataNode.m_name == AZ_CRC("PacketLost")) - { - dataNode.Read(eventData->mPacketLost); - } - else if (dataNode.m_name == AZ_CRC("PacketAcked")) - { - dataNode.Read(eventData->mPacketAcked); - } - else if (dataNode.m_name == AZ_CRC("PacketLoss")) - { - dataNode.Read(eventData->mPacketLoss); - } - else if (dataNode.m_name == AZ_CRC("rtt")) - { - dataNode.Read(eventData->mRTT); - } - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.h b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.h deleted file mode 100644 index 069065e03e..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.h +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_CARRIER_DATAPARSER_H -#define DRILLER_CARRIER_DATAPARSER_H - -#include -#include "CarrierDataEvents.h" - -namespace Driller -{ - class CarrierDataAggregator; - - enum CarrierDataType - { - CDT_NONE, - CDT_STATISTICS, - CDT_LAST_SECOND, - CDT_EFFECTIVE_LAST_SECOND - }; - - class CarrierDataParser - : public AZ::Debug::DrillerHandlerParser - { - public: - // The parser will add events to a CarrierDataAggregator instance. - CarrierDataParser(CarrierDataAggregator* m_aggregator); - virtual ~CarrierDataParser(); - - // AZ::Debug::DrillerHandlerParser: Callbacks for entering, leaving and finding data - // while parsing the driller XML data. - AZ::Debug::DrillerHandlerParser* OnEnterTag(AZ::u32 tagName) override; - void OnExitTag(AZ::Debug::DrillerHandlerParser* handler, AZ::u32 tagName) override; - void OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode) override; - - private: - // The current tag type while parsing the driller XML data. - CarrierDataType m_currentType; - - // The aggregator where events are added as a result of parsing the XML data. - CarrierDataAggregator* m_aggregator; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.cpp b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.cpp deleted file mode 100644 index f7d456522a..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.cpp +++ /dev/null @@ -1,268 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include "CarrierDataEvents.h" -#include "CarrierDataAggregator.hxx" -#include "CarrierDataView.hxx" -#include "CarrierOperationTelemetryEvent.h" - -#include "Source/Driller/DrillerOperationTelemetryEvent.h" - -#include -#include -#include - -namespace Driller -{ - static AZ::s64 GetLargestDataValue(const CarrierDataView::DataPointList& dataPointList) - { - AZ::s64 maxDataValue = 0; - for (auto dataPoint = dataPointList.begin(); dataPoint != dataPointList.end(); dataPoint++) - { - if (dataPoint->second > maxDataValue) - { - maxDataValue = static_cast(dataPoint->second); - } - } - return maxDataValue; - } - - static void BuildEventList(const CarrierDataAggregator* aggr, - FrameNumberType startFrame, - FrameNumberType endFrame, - AZStd::vector& eventIdxList) - { - eventIdxList.clear(); - for (FrameNumberType frame = startFrame; frame <= endFrame; frame++) - { - size_t numEvents = aggr->NumOfEventsAtFrame(frame); - if (numEvents == 0) - { - continue; - } - - EventNumberType firstEventIdx = aggr->GetFirstIndexAtFrame(frame); - for (EventNumberType eventIdx = firstEventIdx; eventIdx < static_cast(firstEventIdx + numEvents); eventIdx++) - { - eventIdxList.push_back(eventIdx); - } - } - } - - static void GetEventIds(const CarrierDataAggregator* aggr, - FrameNumberType startFrame, - FrameNumberType endFrameIdx, - AZStd::set& ids) - { - ids.clear(); - for (FrameNumberType frameId = startFrame; frameId <= endFrameIdx; frameId++) - { - size_t numEvents = aggr->NumOfEventsAtFrame(frameId); - EventNumberType firstEventIndex = aggr->GetFirstIndexAtFrame(frameId); - for (EventNumberType eventIndex = firstEventIndex; eventIndex < static_cast(firstEventIndex + numEvents); eventIndex++) - { - CarrierDataEvent* event = static_cast(aggr->GetEvents()[eventIndex]); - ids.insert(event->mID); - } - } - } - - CarrierDataView::CarrierDataView(FrameNumberType startFrame, FrameNumberType endFrame, const CarrierDataAggregator* aggregator) - : QDialog() - , mStartFrame(0) - , mEndFrame(0) - , m_lifespanTelemetry("CarrierDataView") - { - // Create a window defined in CarrierDataView.ui. - m_gui = azcreate(Ui::CarrierDataView, ()); - m_gui->setupUi(this); - - setAttribute(Qt::WA_DeleteOnClose, true); - setWindowFlags(windowFlags() | Qt::WindowMaximizeButtonHint); - - mStartFrame = startFrame; - mEndFrame = endFrame; - mAggregator = aggregator; - - // Prepare the dialog. - show(); - raise(); - activateWindow(); - setFocus(); - - setWindowTitle(aggregator->GetDialogTitle()); - - // Find all unique ids and add them to the drop down box. - AZStd::set ids; - GetEventIds(aggregator, startFrame, endFrame, ids); - - for (auto id = ids.begin(); id != ids.end(); id++) - { - m_gui->Filter->addItem((*id).c_str()); - } - - QObject::connect(m_gui->Filter, SIGNAL(currentIndexChanged(int)), this, SLOT(OnCurrentFilterChanged())); - - // Update the charts based on the current filter. - OnCurrentFilterChanged(); - } - - CarrierDataView::~CarrierDataView() - { - azdestroy(m_gui); - } - - void CarrierDataView::OnCurrentFilterChanged() - { - AZStd::string currentId = AZStd::string(m_gui->Filter->currentText().toUtf8().constData()); - SetupAllCharts(currentId, mAggregator, mStartFrame, mEndFrame); - - CarrierOperationTelemetryEvent filterChanged; - filterChanged.SetAttribute("IPFilterChanged", ""); - filterChanged.Log(); - } - - void CarrierDataView::SetupAllCharts(AZStd::string id, - const CarrierDataAggregator* aggr, - FrameNumberType startFrame, - FrameNumberType endFrame) - { - AZStd::vector eventIdxList; - BuildEventList(aggr, startFrame, endFrame, eventIdxList); - - DataPointList send; - DataPointList recv; - DataPointList effectiveSend; - DataPointList effectiveRecv; - DataPointList pktSend; - DataPointList pktRecv; - DataPointList rtt; - DataPointList loss; - - EventNumberType eventIndex = 0; - for (auto eventItr = eventIdxList.begin(); eventItr != eventIdxList.end(); eventItr++) - { - EventNumberType realEventIndex = *eventItr; - CarrierDataEvent* event = static_cast(aggr->GetEvents()[realEventIndex]); - - if (event->mID.compare(id) != 0) - { - continue; - } - - // Total bytes sent and received. - send.push_back(DataPoint(eventIndex, static_cast(event->mLastSecond.mDataSend))); - recv.push_back(DataPoint(eventIndex, static_cast(event->mLastSecond.mDataReceived))); - // Effective bytes sent and received ( - effectiveSend.push_back(DataPoint(eventIndex, static_cast(event->mEffectiveLastSecond.mDataSend))); - effectiveRecv.push_back(DataPoint(eventIndex, static_cast(event->mEffectiveLastSecond.mDataReceived))); - // Total packets send and received. - pktSend.push_back(DataPoint(eventIndex, static_cast(event->mLastSecond.mPacketSend))); - pktRecv.push_back(DataPoint(eventIndex, static_cast(event->mLastSecond.mPacketReceived))); - // RTT - rtt.push_back(DataPoint(eventIndex, event->mLastSecond.mRTT)); - // Loss - loss.push_back(DataPoint(eventIndex, event->mLastSecond.mPacketLoss)); - - eventIndex++; - } - - SetupDualBytesChart(m_gui->sendRecvDataStrip, send, recv); - SetupDualBytesChart(m_gui->effectiveSendRecvDataStrip, effectiveSend, effectiveRecv); - SetupDualPacketChart(m_gui->packetSendRecvDataStrip, pktSend, pktRecv); - SetupTimeChart(m_gui->rttDataStrip, rtt); - } - - void CarrierDataView::SetupDualBytesChart(StripChart::DataStrip* chart, const DataPointList& bytes0, const DataPointList& bytes1) - { - chart->Reset(); - AZ::s64 maxSend = GetLargestDataValue(bytes0); - AZ::s64 maxRecv = GetLargestDataValue(bytes1); - chart->AddAxis("Seconds", 0.0f, static_cast(bytes0.size() > bytes1.size() ? bytes0.size() : bytes1.size()), false); - chart->AddAxis("Bytes/second", 0.0f, (maxSend > maxRecv ? maxSend : maxRecv) * 1.2f, false); - - int sendChannel = chart->AddChannel("Bytes0"); - int recvChannel = chart->AddChannel("Bytes1"); - chart->SetChannelColor(sendChannel, QColor(0, 255, 0)); - chart->SetChannelStyle(sendChannel, StripChart::Channel::STYLE_CONNECTED_LINE); - chart->SetChannelColor(recvChannel, QColor(255, 0, 0)); - chart->SetChannelStyle(recvChannel, StripChart::Channel::STYLE_CONNECTED_LINE); - - for (auto dataPoint = bytes0.begin(); dataPoint != bytes0.end(); dataPoint++) - { - chart->AddData(sendChannel, 0, static_cast(dataPoint->first), dataPoint->second); - } - - for (auto dataPoint = bytes1.begin(); dataPoint != bytes1.end(); dataPoint++) - { - chart->AddData(recvChannel, 0, static_cast(dataPoint->first), dataPoint->second); - } - } - - void CarrierDataView::SetupDualPacketChart(StripChart::DataStrip* chart, const DataPointList& packets0, const DataPointList& packets1) - { - chart->Reset(); - AZ::s64 maxSend = GetLargestDataValue(packets0); - AZ::s64 maxRecv = GetLargestDataValue(packets1); - chart->AddAxis("Seconds", 0.0f, static_cast(packets0.size() > packets1.size() ? packets0.size() : packets1.size()), false); - chart->AddAxis("Packets/second", 0.0f, (maxSend > maxRecv ? maxSend : maxRecv) * 1.2f, false); - - int sendChannel = chart->AddChannel("Bytes0"); - int recvChannel = chart->AddChannel("Bytes1"); - chart->SetChannelColor(sendChannel, QColor(0, 255, 0)); - chart->SetChannelStyle(sendChannel, StripChart::Channel::STYLE_CONNECTED_LINE); - chart->SetChannelColor(recvChannel, QColor(255, 0, 0)); - chart->SetChannelStyle(recvChannel, StripChart::Channel::STYLE_CONNECTED_LINE); - - for (auto dataPoint = packets0.begin(); dataPoint != packets0.end(); dataPoint++) - { - chart->AddData(sendChannel, 0, static_cast(dataPoint->first), dataPoint->second); - } - - for (auto dataPoint = packets1.begin(); dataPoint != packets1.end(); dataPoint++) - { - chart->AddData(recvChannel, 0, static_cast(dataPoint->first), dataPoint->second); - } - } - - void CarrierDataView::SetupTimeChart(StripChart::DataStrip* chart, const DataPointList& time) - { - chart->Reset(); - - AZ::s64 maxRTT = GetLargestDataValue(time); - chart->AddAxis("Seconds", 0.0f, static_cast(time.size()), false); - chart->AddAxis("Milliseconds", 0.0f, maxRTT * 1.2f); - - int channel = chart->AddChannel("RTT"); - chart->SetChannelColor(channel, QColor(255, 0, 255)); - chart->SetChannelStyle(channel, StripChart::Channel::STYLE_CONNECTED_LINE); - - for (auto dataPoint = time.begin(); dataPoint != time.end(); dataPoint++) - { - chart->AddData(channel, 0, static_cast(dataPoint->first), dataPoint->second); - } - } - - void CarrierDataView::SetupPercentageChart(StripChart::DataStrip* chart, const DataPointList& percentage) - { - chart->Reset(); - - chart->AddAxis("Seconds", 0.0f, static_cast(percentage.size()), false); - chart->AddAxis("Percentage", 0.0f, 100.0f); - - int channel = chart->AddChannel("Loss"); - chart->SetChannelColor(channel, QColor(255, 255, 255)); - chart->SetChannelStyle(channel, StripChart::Channel::STYLE_CONNECTED_LINE); - - for (auto dataPoint = percentage.begin(); dataPoint != percentage.end(); dataPoint++) - { - chart->AddData(channel, 0, static_cast(dataPoint->first), dataPoint->second); - } - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.hxx b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.hxx deleted file mode 100644 index 114954a15a..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.hxx +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef CARRIER_DATAVIEW_H -#define CARRIER_DATAVIEW_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include - -#include "Source/Driller/StripChart.hxx" -#include "Source/Driller/DrillerOperationTelemetryEvent.h" -#include "Source/Driller/DrillerDataTypes.h" -#endif - -namespace Ui -{ - class CarrierDataView; -} - -namespace Driller -{ - class CarrierDataAggregator; - - class CarrierDataView - : public QDialog - { - Q_OBJECT - public: - AZ_CLASS_ALLOCATOR(CarrierDataView, AZ::SystemAllocator, 0); - CarrierDataView(FrameNumberType startFrame, FrameNumberType endFrame, const CarrierDataAggregator* aggr); - virtual ~CarrierDataView(); - - // A data point is made up of a x and y value (first and second respectively) - // which can be plotted onto a XY chart. - typedef AZStd::pair DataPoint; - typedef AZStd::vector DataPointList; - - public slots: - void OnCurrentFilterChanged(); - - private: - void SetupAllCharts(AZStd::string id, - const CarrierDataAggregator* aggr, - FrameNumberType startFrame, - FrameNumberType endFrame); - - void SetupDualBytesChart(StripChart::DataStrip* chart, const DataPointList& bytes0, const DataPointList& bytes1); - void SetupDualPacketChart(StripChart::DataStrip* chart, const DataPointList& packets1, const DataPointList& packets2); - void SetupTimeChart(StripChart::DataStrip* chart, const DataPointList& time); - void SetupPercentageChart(StripChart::DataStrip* chart, const DataPointList& percentage); - - const CarrierDataAggregator* mAggregator; - FrameNumberType mStartFrame, mEndFrame; - - DrillerWindowLifepsanTelemetry m_lifespanTelemetry; - - // A QT widget defined in CarrierDataView.ui and compiled into ui_CarrierDataView.hpp. - Ui::CarrierDataView* m_gui; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.ui b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.ui deleted file mode 100644 index 915744e1a7..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.ui +++ /dev/null @@ -1,327 +0,0 @@ - - - CarrierDataView - - - - 0 - 0 - 1000 - 825 - - - - Carrier Data View - - - - - - - - - 0 - 32 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 2 - - - 1 - - - 1 - - - 1 - - - 1 - - - - - - - - - - - - 0 - 1 - - - - - 0 - 128 - - - - - - 70 - 20 - 111 - 20 - - - - - 10 - 75 - true - - - - false - - - QLabel { color : rgb(0, 255, 0); } - - - Total Send - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 70 - 40 - 111 - 20 - - - - - 10 - 75 - true - - - - QLabel { color : rgb(255, 0, 0); } - - - Total Received - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - - - 0 - 1 - - - - - 0 - 128 - - - - - - 70 - 20 - 141 - 20 - - - - - 10 - 75 - true - - - - false - - - QLabel { color : rgb(0, 255, 0); } - - - User Data Send - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 70 - 40 - 141 - 20 - - - - - 10 - 75 - true - - - - QLabel { color : rgb(255, 0, 0); } - - - User Data Received - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - - - 0 - 1 - - - - - 0 - 128 - - - - - - 70 - 20 - 141 - 20 - - - - - 10 - 75 - true - - - - false - - - QLabel { color : rgb(0, 255, 0); } - - - Packets Send - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 70 - 40 - 141 - 20 - - - - - 10 - 75 - true - - - - QLabel { color : rgb(255, 0, 0); } - - - Packets Received - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - - - 0 - 1 - - - - - 0 - 128 - - - - - - 70 - 20 - 181 - 20 - - - - - 10 - 75 - true - - - - false - - - QLabel { color : rgb(255, 0, 255); } - - - Return Trip Time (Latency) - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - - - - - StripChart::DataStrip - QWidget -
../StripChart.hxx
- 1 -
-
- - -
diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierOperationTelemetryEvent.h b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierOperationTelemetryEvent.h deleted file mode 100644 index d4c7d004ef..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierOperationTelemetryEvent.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#ifndef DRILLER_CARRIER_CARRIEROPERATIONTELEMETRYEVENT_H -#define DRILLER_CARRIER_CARRIEROPERATIONTELEMETRYEVENT_H - -#include "Source/Telemetry/TelemetryEvent.h" - -namespace Driller -{ - class CarrierOperationTelemetryEvent - : public Telemetry::TelemetryEvent - { - public: - CarrierOperationTelemetryEvent() - : Telemetry::TelemetryEvent("CarrierDataViewOperation") - { - } - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.cpp b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.cpp deleted file mode 100644 index 95fb586500..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.cpp +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#include "Source/Driller/ChannelConfigurationDialog.hxx" -#include - -namespace Driller -{ - ChannelConfigurationDialog::ChannelConfigurationDialog(QWidget* parent) - : QDialog(parent) - { - setAttribute(Qt::WA_DeleteOnClose, true); - setWindowFlags(windowFlags() | Qt::WindowMaximizeButtonHint | Qt::WindowMinimizeButtonHint); - - QMargins margins(0, 0, 0, 0); - setContentsMargins(margins); - } - - ChannelConfigurationDialog::~ChannelConfigurationDialog() - { - emit DialogClosed(this); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.hxx b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.hxx deleted file mode 100644 index 1baf205077..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.hxx +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#pragma once -#ifndef PROFILER_CHANNELCONFIGURATIONDIALOG_H -#define PROFILER_CHANNELCONFIGURATIONDIALOG_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#include -#endif - -namespace Driller -{ - class ChannelConfigurationDialog - : public QDialog - { - Q_OBJECT; - - public: - AZ_CLASS_ALLOCATOR(ChannelConfigurationDialog,AZ::SystemAllocator,0); - - ChannelConfigurationDialog(QWidget* parent = nullptr); - ~ChannelConfigurationDialog(); - - signals: - - void DialogClosed(QDialog* dialog); - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.cpp b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.cpp deleted file mode 100644 index 689b87f2b2..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.cpp +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#include -#include - -namespace Driller -{ - /////////////////////////////// - // ChannelConfigurationWidget - /////////////////////////////// - - ChannelConfigurationWidget::ChannelConfigurationWidget(QWidget* parent) - : QWidget(parent) - { - } -} diff --git a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.hxx b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.hxx deleted file mode 100644 index 3f64e1b52c..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.hxx +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#pragma once -#ifndef PROFILER_CHANNELCONFIGURATIONWIDGET_H -#define PROFILER_CHANNELCONFIGURATIONWIDGET_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#include -#endif - -namespace Driller -{ - class ChannelConfigurationWidget - : public QWidget - { - Q_OBJECT - public: - AZ_CLASS_ALLOCATOR(ChannelConfigurationWidget, AZ::SystemAllocator,0); - - ChannelConfigurationWidget(QWidget* parent = nullptr); - ~ChannelConfigurationWidget() = default; - - public slots: - signals: - void ConfigurationChanged(); - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/ChannelControl.cpp b/Code/Tools/Standalone/Source/Driller/ChannelControl.cpp deleted file mode 100644 index a98f93be98..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChannelControl.cpp +++ /dev/null @@ -1,484 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "ChannelControl.hxx" -#include - -#include "Annotations/Annotations.hxx" -#include "ChannelDataView.hxx" -#include "ChannelProfilerWidget.hxx" -#include "DrillerAggregator.hxx" -#include "DrillerMainWindowMessages.h" -#include "Source/Driller/ChannelConfigurationDialog.hxx" -#include "Source/Driller/ChannelConfigurationWidget.hxx" -#include "Source/Driller/CollapsiblePanel.hxx" -#include "Source/Driller/CustomizeCSVExportWidget.hxx" -#include "Source/Driller/DrillerOperationTelemetryEvent.h" - -namespace Driller -{ - ChannelControl::ChannelControl(const char* channelName, AnnotationsProvider* ptrAnnotations, QWidget* parent, Qt::WindowFlags flags) - : QWidget(parent, flags) - , m_isSetup(false) - , m_captureMode(CaptureMode::Unknown) - , m_channelId(channelName) - , m_configurationDialog(nullptr) - { - setupUi(this); - - m_State.m_EndFrame = -1; - m_State.m_FramesInView = 10; // magic numbers (this matches the default drop-down menu option) - m_State.m_ContractedHeight = false; - m_State.m_ScrubberFrame = 0; - m_State.m_FrameOffset = 0; - m_State.m_LoopBegin = 0; - m_State.m_LoopEnd = 0; - - this->channelName->setText(channelName ? channelName : "Channel Name Here"); - - channelDataView->RegisterToChannel(this, ptrAnnotations); - channelDataView->setAutoFillBackground(true); - - configChannel->setVisible(false); - - connect(channelDataView, SIGNAL(InformOfMouseClick(Qt::MouseButton, FrameNumberType, FrameNumberType, int)), SIGNAL(InformOfMouseClick(Qt::MouseButton, FrameNumberType, FrameNumberType, int))); - connect(channelDataView, SIGNAL(InformOfMouseMove(FrameNumberType, FrameNumberType, int)), SIGNAL(InformOfMouseMove(FrameNumberType, FrameNumberType, int))); - connect(channelDataView, SIGNAL(InformOfMouseRelease(Qt::MouseButton, FrameNumberType, FrameNumberType, int)), SIGNAL(InformOfMouseRelease(Qt::MouseButton, FrameNumberType, FrameNumberType, int))); - connect(channelDataView, SIGNAL(InformOfMouseWheel(FrameNumberType, int, FrameNumberType, int)), SIGNAL(InformOfMouseWheel(FrameNumberType, int, FrameNumberType, int))); - connect(configChannel, SIGNAL(clicked()), SLOT(OnConfigureChannel())); - - ConfigureUI(); - } - - ChannelControl::~ChannelControl() - { - if (m_configurationDialog) - { - m_configurationDialog->close(); - } - m_configurationDialog = nullptr; - - QList::iterator iter = m_OpenDrills.begin(); - while (iter != m_OpenDrills.end()) - { - delete *iter; - ++iter; - } - m_OpenDrills.clear(); - } - - bool ChannelControl::IsInCaptureMode(CaptureMode captureMode) const - { - return m_captureMode == captureMode; - } - - void ChannelControl::SetCaptureMode(CaptureMode captureMode) - { - if (captureMode != m_captureMode) - { - m_captureMode = captureMode; - - ConfigureUI(); - - emit OnCaptureModeChanged(m_captureMode); - } - } - - void ChannelControl::OnContractedToggled(bool toggleState) - { - (void)toggleState; - - // We're going to want to contract this eventually. So keeping the function - // to avoid unwiring all of the other methods, while we transition - /* - m_Contracted->setChecked(toggleState); - - if (toggleState) // MINIMIZED - { - m_State.m_ContractedHeight = true; - m_Info->hide(); - setFixedHeight(k_contractedSize); - QIcon eyecon(":/general/expand"); - m_Contracted->setIcon(eyecon); - } - else // NORMAL - { - m_State.m_ContractedHeight = false; - m_Info->show(); - this->setFixedHeight(k_expandedSize); - QIcon eyecon(":/general/contract"); - m_Contracted->setIcon(eyecon); - } - emit ExpandedContracted(); - */ - } - - void ChannelControl::OnSuccessfulDrillDown(QWidget* drillerWidget) - { - if (drillerWidget) - { - connect(drillerWidget, SIGNAL(destroyed(QObject*)), this, SLOT(OnDrillDestroyed(QObject*))); - m_OpenDrills.push_back(drillerWidget); - } - } - - void ChannelControl::OnDrillDestroyed(QObject* drill) - { - QWidget* qw = qobject_cast(drill); - m_OpenDrills.removeOne(qw); - } - - void ChannelControl::OnShowCommand() - { - //todo: phughes consider auto-hide toggle to control this behavior - - //QList::iterator ptiter = m_OpenDrillsPositions.begin(); - //QList::iterator iter = m_OpenDrills.begin(); - //while (iter != m_OpenDrills.end()) - //{ - // (*iter)->show(); - // (*iter)->move(*ptiter); - // ++iter; - // ++ptiter; - //} - } - - void ChannelControl::OnHideCommand() - { - //todo: phughes consider auto-hide toggle to control this behavior - - //m_OpenDrillsPositions.clear(); - //QList::iterator iter = m_OpenDrills.begin(); - //while (iter != m_OpenDrills.end()) - //{ - // if (*iter) - // { - // m_OpenDrillsPositions.push_back((*iter)->pos()); - // (*iter)->hide(); - // } - // ++iter; - //} - } - - bool ChannelControl::IsSetup() const - { - return m_isSetup; - } - - void ChannelControl::SignalSetup() - { - m_isSetup = true; - - ConfigureUI(); - } - - bool ChannelControl::IsActive() const - { - bool isActive = false; - - for (ChannelProfilerWidget* profiler : m_profilerWidgets) - { - if (profiler->IsActive()) - { - isActive = true; - break; - } - } - - return isActive; - } - - const AZStd::list< ChannelProfilerWidget* >& ChannelControl::GetProfilers() const - { - return m_profilerWidgets; - } - - ChannelProfilerWidget* ChannelControl::GetMainProfiler() const - { - ChannelProfilerWidget* retVal = nullptr; - - for (ChannelProfilerWidget* profiler : m_profilerWidgets) - { - if (profiler->IsActive()) - { - retVal = profiler; - break; - } - } - - return retVal; - } - - ChannelProfilerWidget* ChannelControl::AddAggregator(Aggregator* aggregator) - { - ChannelProfilerWidget* retVal = nullptr; - - for (ChannelProfilerWidget* profiler : m_profilerWidgets) - { - if (profiler->GetID() == aggregator->GetID()) - { - AZ_Warning("ChannelControl", false, "Trying to register two aggregators with the same ID"); - retVal = profiler; - break; - } - } - - if (retVal == nullptr) - { - retVal = aznew ChannelProfilerWidget(this, aggregator); - - if (retVal != nullptr) - { - ConnectProfilerWidget(retVal); - - profilerLayout->addWidget(retVal); - m_profilerWidgets.push_back(retVal); - - aggregator->AnnotateChannelView(channelDataView); - - if (aggregator->HasConfigurations()) - { - configChannel->setVisible(true); - } - - connect(aggregator, SIGNAL(NormalizedRangeChanged()), SLOT(OnNormalizedRangeChanged())); - } - } - - return retVal; - } - - bool ChannelControl::RemoveAggregator(Aggregator* aggregator) - { - bool removed = false; - - for (auto profilerIter = m_profilerWidgets.begin(); - profilerIter != m_profilerWidgets.end(); - ++profilerIter) - { - if ((*profilerIter)->GetID() == aggregator->GetID()) - { - removed = true; - m_profilerWidgets.erase(profilerIter); - break; - } - } - - AZ_Warning("ChannelControl", removed, "Trying to remove aggregator from the wrong Channel Control"); - return removed; - } - - void ChannelControl::SetAllProfilersEnabled(bool enabled) - { - for (ChannelProfilerWidget* profiler : m_profilerWidgets) - { - profiler->SetIsActive(enabled); - } - } - - AZ::Crc32 ChannelControl::GetChannelId() const - { - return m_channelId; - } - - void ChannelControl::SetEndFrame(FrameNumberType endFrame) - { - channelDataView->DirtyGraphData(); - m_State.m_EndFrame = endFrame; - channelDataView->update(); - } - - void ChannelControl::SetSliderOffset(FrameNumberType frameOffset) - { - channelDataView->DirtyGraphData(); - m_State.m_FrameOffset = frameOffset; - //AZ_TracePrintf("Driller"," SetSliderOffset %d = %d - %d\n", m_State.m_FrameOffset, m_State.m_EndFrame, frame); - channelDataView->update(); - } - - void ChannelControl::SetLoopBegin(FrameNumberType frameNum) - { - if (m_State.m_LoopBegin != frameNum) - { - m_State.m_LoopBegin = frameNum; - - FrameNumberType lastFrame = m_State.m_FrameOffset + m_State.m_FramesInView - 1; - - if (frameNum < m_State.m_FrameOffset) - { - emit RequestScrollToFrame(frameNum); - } - else if (frameNum > lastFrame) - { - emit RequestScrollToFrame(m_State.m_FrameOffset + (frameNum - lastFrame)); - } - - channelDataView->update(); - } - } - void ChannelControl::SetLoopEnd(FrameNumberType frameNum) - { - if (m_State.m_LoopEnd != frameNum) - { - m_State.m_LoopEnd = frameNum; - - FrameNumberType lastFrame = m_State.m_FrameOffset + m_State.m_FramesInView - 1; - - if (frameNum < m_State.m_FrameOffset) - { - emit RequestScrollToFrame(frameNum); - } - else if (frameNum > lastFrame) - { - emit RequestScrollToFrame(m_State.m_FrameOffset + (frameNum - lastFrame)); - } - - channelDataView->update(); - } - } - - void ChannelControl::SetScrubberFrame(FrameNumberType frameNum) - { - if (m_State.m_ScrubberFrame != frameNum) - { - m_State.m_ScrubberFrame = frameNum; - - FrameNumberType lastFrame = m_State.m_FrameOffset + m_State.m_FramesInView - 1; - - if (frameNum < m_State.m_FrameOffset) - { - emit RequestScrollToFrame(frameNum); - } - else if (frameNum > lastFrame) - { - emit RequestScrollToFrame(m_State.m_FrameOffset + (frameNum - lastFrame)); - } - - channelDataView->update(); - } - } - - void ChannelControl::SetDataPointsInView(FrameNumberType count) - { - m_State.m_FramesInView = count; - channelDataView->DirtyGraphData(); - channelDataView->update(); - } - - void ChannelControl::OnRefreshView() - { - channelDataView->update(); - } - - void ChannelControl::OnActivationChanged(ChannelProfilerWidget* profilerWidget, bool activated) - { - if (activated) - { - profilerWidget->GetAggregator()->AnnotateChannelView(channelDataView); - } - else - { - profilerWidget->GetAggregator()->RemoveChannelAnnotation(channelDataView); - } - - channelDataView->DirtyGraphData(); - channelDataView->update(); - } - - void ChannelControl::OnConfigureChannel() - { - if (m_configurationDialog == nullptr) - { - m_configurationDialog = aznew ChannelConfigurationDialog(); - QVBoxLayout* layout = new QVBoxLayout(); - - QMargins contentMargins(3,5,3,5); - layout->setContentsMargins(contentMargins); - layout->setSpacing(5); - - for (ChannelProfilerWidget* profilerWidget : m_profilerWidgets) - { - if (profilerWidget->IsActive()) - { - ChannelConfigurationWidget* configurationWidget = profilerWidget->CreateConfigurationWidget(); - - if (configurationWidget) - { - connect(configurationWidget, SIGNAL(ConfigurationChanged()), SLOT(OnConfigurationChanged())); - layout->addWidget(configurationWidget); - } - } - } - - m_configurationDialog->setLayout(layout); - m_configurationDialog->show(); - m_configurationDialog->setFocus(); - - connect(m_configurationDialog, SIGNAL(DialogClosed(QDialog*)), SLOT(OnDialogClosed(QDialog*))); - - m_configurationDialog->setWindowTitle(QString("%1's Channel Configurations.").arg(channelName->text())); - } - - if (m_configurationDialog->isMinimized()) - { - m_configurationDialog->showNormal(); - } - - m_configurationDialog->raise(); - m_configurationDialog->activateWindow(); - } - - void ChannelControl::OnDialogClosed(QDialog* dialog) - { - if (m_configurationDialog == dialog) - { - m_configurationDialog = nullptr; - } - } - - void ChannelControl::OnConfigurationChanged() - { - if (IsInCaptureMode(CaptureMode::Inspecting)) - { - for (ChannelProfilerWidget* profilerWidget : m_profilerWidgets) - { - profilerWidget->GetAggregator()->OnConfigurationChanged(); - } - - // Force the channel data view to regrab all of the aggregator data. - channelDataView->RefreshGraphData(); - } - } - - void ChannelControl::OnNormalizedRangeChanged() - { - // Only want to allow this while we are inspecting. - // Otherwise just too much noise with the incoming data. - if (IsInCaptureMode(CaptureMode::Inspecting)) - { - channelDataView->RefreshGraphData(); - } - } - - void ChannelControl::ConnectProfilerWidget(ChannelProfilerWidget* profilerWidget) - { - connect(this, SIGNAL(OnCaptureModeChanged(CaptureMode)), profilerWidget, SLOT(SetCaptureMode(CaptureMode))); - - connect(profilerWidget, SIGNAL(OnActivationChanged(ChannelProfilerWidget*, bool)), this, SLOT(OnActivationChanged(ChannelProfilerWidget*, bool))); - - profilerWidget->SetCaptureMode(m_captureMode); - } - - void ChannelControl::ConfigureUI() - { - if (IsSetup()) - { - configChannel->setEnabled(!IsInCaptureMode(CaptureMode::Capturing)); - } - } -} diff --git a/Code/Tools/Standalone/Source/Driller/ChannelControl.hxx b/Code/Tools/Standalone/Source/Driller/ChannelControl.hxx deleted file mode 100644 index 4da56bd5f4..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChannelControl.hxx +++ /dev/null @@ -1,133 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef CHANNEL_CONTROL_H -#define CHANNEL_CONTROL_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#include - -#include "DrillerNetworkMessages.h" - -#include "Source/Driller/DrillerDataTypes.h" - -// Generated Files -#include -#endif - -namespace Driller -{ - class AnnotationsProvider; - class ChannelConfigurationDialog; - - /* - Channel Control intermediates between one data Aggregator, the application's main window, and the renderer. - This maintains state used by the renderer and passes changes both up and down via signal/slot. - */ - - class ChannelControl - : public QWidget - , private Ui::ChannelControl - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(ChannelControl,AZ::SystemAllocator,0); - ChannelControl( const char* channelName, AnnotationsProvider* ptrAnnotations, QWidget* parent = NULL, Qt::WindowFlags flags = Qt::WindowFlags()); - virtual ~ChannelControl(void); - - struct - { - FrameNumberType m_EndFrame; - FrameNumberType m_FramesInView; - int m_ContractedHeight; - FrameNumberType m_ScrubberFrame; - FrameNumberType m_FrameOffset; - FrameNumberType m_LoopBegin; - FrameNumberType m_LoopEnd; - } m_State; - - bool m_isLive; - - QList m_OpenDrills; - QList m_OpenDrillsPositions; - - bool IsSetup() const; - void SignalSetup(); - - bool IsActive() const; - const AZStd::list< ChannelProfilerWidget* >& GetProfilers() const; - - // Temporary solution, since eventually we'll want to display all of the information - // we have at once. For now, since we can only have one. Get a "main" window. - ChannelProfilerWidget* GetMainProfiler() const; - ChannelProfilerWidget* AddAggregator(Aggregator* aggregator); - bool RemoveAggregator(Aggregator* aggregator); - - void SetAllProfilersEnabled(bool enabled); - AZ::Crc32 GetChannelId() const; - - void SetDataPointsInView( FrameNumberType count ); - void SetEndFrame( FrameNumberType frame ); - void SetSliderOffset( FrameNumberType frame ); - void SetLoopBegin( FrameNumberType frame ); - void SetLoopEnd( FrameNumberType frame ); - - bool IsInCaptureMode(CaptureMode captureMode) const; - - public slots: - void SetCaptureMode(CaptureMode captureMode); - void OnContractedToggled( bool toggleState ); - void OnSuccessfulDrillDown(QWidget* drillerWidget); - void SetScrubberFrame( FrameNumberType frame ); - void OnDrillDestroyed(QObject *drill); - void OnShowCommand(); - void OnHideCommand(); - void OnRefreshView(); - void OnActivationChanged(ChannelProfilerWidget*,bool activated); - void OnConfigureChannel(); - void OnDialogClosed(QDialog* dialog); - - void OnConfigurationChanged(); - void OnNormalizedRangeChanged(); - - signals: - - void OnCaptureModeChanged(CaptureMode captureMode); - void RequestScrollToFrame( FrameNumberType frame ); - void InformOfMouseClick(Qt::MouseButton button, FrameNumberType frame, FrameNumberType range, int modifiers ); - void InformOfMouseMove( FrameNumberType frame, FrameNumberType range, int modifiers ); - void InformOfMouseRelease(Qt::MouseButton button, FrameNumberType frame, FrameNumberType range, int modifiers ); - void InformOfMouseWheel( FrameNumberType frame, int wheelAmount, FrameNumberType range, int modifiers ); - QWidget* DrillDownRequest(FrameNumberType atFrame); - void OptionsRequest(); - void ExpandedContracted(); - - void AddConfigurationWidgets(QLayout* configurationLayout); - - QString GetInspectionFileName() const; - - private: - - void ConnectProfilerWidget(ChannelProfilerWidget* profilerWidget); - void ConfigureUI(); - - bool m_isSetup; - - CaptureMode m_captureMode; - AZ::Crc32 m_channelId; - AZStd::list< ChannelProfilerWidget* > m_profilerWidgets; - - ChannelConfigurationDialog* m_configurationDialog; - }; -} - - -#endif // CHANNEL_CONTROL_H diff --git a/Code/Tools/Standalone/Source/Driller/ChannelControl.ui b/Code/Tools/Standalone/Source/Driller/ChannelControl.ui deleted file mode 100644 index 165e00e64b..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChannelControl.ui +++ /dev/null @@ -1,218 +0,0 @@ - - - ChannelControl - - - - 0 - 0 - 1023 - 74 - - - - - 0 - 0 - - - - Form - - - true - - - - - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - - 250 - 0 - - - - - - - QFrame::NoFrame - - - QFrame::Raised - - - 0 - - - - 0 - - - 3 - - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 0 - - - 5 - - - 0 - - - - - - 0 - 0 - - - - - 0 - 0 - - - - - 14 - - - - - - - - - - - - 0 - 0 - - - - ... - - - - :/driller/settings_icon:/driller/settings_icon - - - - - - - - - - QFrame::NoFrame - - - QFrame::Raised - - - 0 - - - - 0 - - - 5 - - - 0 - - - 0 - - - 0 - - - - - 5 - - - 5 - - - 0 - - - - - - - - - - - - - - 0 - 0 - - - - - - - - - Driller::ChannelDataView - QWidget -
Source/Driller/ChannelDataView.hxx
- 1 -
-
- - - - -
diff --git a/Code/Tools/Standalone/Source/Driller/ChannelDataView.cpp b/Code/Tools/Standalone/Source/Driller/ChannelDataView.cpp deleted file mode 100644 index 27922f47a3..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChannelDataView.cpp +++ /dev/null @@ -1,875 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include - -#include "ChannelDataView.hxx" -#include - -#include "ChannelControl.hxx" -#include "ChannelProfilerWidget.hxx" -#include "DrillerAggregator.hxx" -#include "Annotations/Annotations.hxx" - -#include -#include -#include -#include -#include - -namespace Driller -{ - static const int k_contractedSize = 28; - static const int k_expandedSize = 64; - static const int k_textWidth = 128; - - static const int k_barHeight = 5; - - //////////////////////// - // AggregatorDataPoint - //////////////////////// - AggregatorDataPoint::AggregatorDataPoint() - : m_isActive(true) - , m_isShowingOverlay(false) - , m_shouldOutline(false) - { - } - - AggregatorDataPoint::AggregatorDataPoint(QRect rectangle, ChannelProfilerWidget* profilerWidget) - : m_visualBlock(rectangle) - , m_isActive(true) - , m_isShowingOverlay(false) - , m_shouldOutline(false) - - { - m_combinedProfilers.insert(profilerWidget); - } - - void AggregatorDataPoint::Draw(QPainter& painter, int leftEdge, float barWidth) - { - QColor drawColor; - QColor outlineColor; - - m_isActive = false; - - for (ChannelProfilerWidget* currentProfiler : m_combinedProfilers) - { - if (currentProfiler->IsActive()) - { - if (m_isActive) - { - drawColor = QColor(255, 255, 255); - outlineColor = QColor(255, 255, 0); - break; - } - else - { - m_isActive = true; - drawColor = currentProfiler->GetAggregator()->GetColor(); - - // right now this should never be used. If it eventually is used, we'll probably - // want to add a flow to the aggregators to pass along this color. For now - // some silly wrapping to do something noticeable. - outlineColor = QColor((drawColor.red() + 100) % 255, (drawColor.green() + 100) % 255, (drawColor.blue() + 100) % 255); - } - } - } - - if (m_isActive) - { - const int upAmount = static_cast(ceilf(k_barHeight * 0.5f)); - - int centerHeight = m_visualBlock.center().y(); - int topEdge = static_cast(centerHeight - upAmount); - - if (m_shouldOutline) - { - static const int k_outlineSize = 1; - - painter.fillRect( - leftEdge, - topEdge, - static_cast(barWidth), - k_barHeight, - outlineColor); - - painter.fillRect( - leftEdge + k_outlineSize, - (int)topEdge + k_outlineSize, - (int)barWidth - (2 * k_outlineSize), // overdraw on dense data > 1 event per pixel, optimize later - k_barHeight - (2 * k_outlineSize), - drawColor); - } - else - { - painter.fillRect( - leftEdge, - topEdge, - static_cast(barWidth), - k_barHeight, - drawColor); - } - } - } - - bool AggregatorDataPoint::IntersectsDataPoint(const AggregatorDataPoint& dataPoint) - { - return m_visualBlock.intersects(dataPoint.m_visualBlock); - } - - bool AggregatorDataPoint::ContainsPoint(const QPoint& point) - { - // Don't want to collide if we aren't visible. - if (m_isActive) - { - // Our Visual block's horizontal information is only valid when it is created. - // After that we lazily update information, so the only valid information that the block maintins is the vertical. - // So we're going to rely on the DataView to manage the horizontal collision, and we'll manage the vertical. - return (m_visualBlock.bottom() > point.y() && m_visualBlock.top() <= point.y()); - } - else - { - return false; - } - } - - void AggregatorDataPoint::AddAggregatorDataPoint(const AggregatorDataPoint& dataPoint) - { - m_drawColor = QColor(255, 255, 255); - - // dataPointBottomRight - QPoint dpBR = dataPoint.m_visualBlock.bottomRight(); - - // dataPointTopLeft - QPoint dpTL = dataPoint.m_visualBlock.topLeft(); - - // visualBlockBottomRight - QPoint vbBR = m_visualBlock.bottomRight(); - - // visualBlockTopLeft - QPoint vbTL = m_visualBlock.topLeft(); - - QPoint bottomRight(AZStd::GetMax(dpBR.x(), vbBR.x()), AZStd::GetMax(dpBR.y(), vbBR.y())); - QPoint topLeft(AZStd::GetMin(dpTL.x(), vbTL.x()), AZStd::GetMin(dpTL.y(), vbTL.y())); - - m_visualBlock = QRect(topLeft, bottomRight); - - m_combinedProfilers.insert(dataPoint.m_combinedProfilers.begin(), dataPoint.m_combinedProfilers.end()); - } - - bool AggregatorDataPoint::SetOverlayEnabled(bool enabled) - { - if (m_isShowingOverlay != enabled) - { - m_isShowingOverlay = enabled; - - if (m_isShowingOverlay) - { - int activeProfilers = 0; - QString toolTip = "Multiple Profiler(s)"; - - for (ChannelProfilerWidget* channelProfiler : m_combinedProfilers) - { - if (channelProfiler->IsActive()) - { - ++activeProfilers; - toolTip.append(QString("
- %1").arg(channelProfiler->GetName())); - } - } - - if (activeProfilers >= 2) - { - m_shouldOutline = true; - - // Since QToolTip::HideText doesn't seem to actually do anything, I'm trying to show - // a second tool tip while the first one is being displayed. However, - // if I use the same string for the tool tip, it doesn't actually update the position. - // But since the cursor has moved away from the original postion, it begins the countdown - // timer to hide the tool tip. Meaning, the new tool tip I was trying to generate hides. - // Going to alternatingly append a space to the end to force it to be different to - // avoid this nonsense. - { - static bool k_dumbToolTipHack = false; - if (k_dumbToolTipHack) - { - toolTip.append(" "); - } - - k_dumbToolTipHack = !k_dumbToolTipHack; - } - - QToolTip::showText(QCursor::pos(), toolTip); - } - else - { - m_shouldOutline = false; - } - } - else - { - m_shouldOutline = false; - QToolTip::hideText(); - } - - return true; - } - - return false; - } - - ///////////////// - // BudgetMarker - ///////////////// - - BudgetMarker::BudgetMarker(float value, QColor& drawColor) - : m_value(value) - , m_drawColor(drawColor) - { - } - - BudgetMarker::~BudgetMarker() - { - } - - float BudgetMarker::GetValue() const - { - return m_value; - } - - const QColor& BudgetMarker::GetColor() const - { - return m_drawColor; - } - - //////////////////// - // ChannelDataView - //////////////////// - ChannelDataView::ChannelDataView(QWidget* parent) - : QWidget(parent) - , m_Channel(nullptr) - , m_ptrAnnotations(nullptr) - , m_minFrame(-1) - , m_maxFrame(-1) - , m_highlightedFrame(-1) - , m_lastFrame(0) - , m_xOffset(0) - , m_initializeDrag(false) - , m_dragInitialized(false) - , m_shouldIgnorePoint(false) - , m_mouseGrabbed(false) - , m_dirtyGraph(true) - { - setAutoFillBackground(true); - setAttribute(Qt::WA_OpaquePaintEvent, true); - - setMouseTracking(true); - } - - ChannelDataView::~ChannelDataView() - { - } - - void ChannelDataView::RegisterToChannel(ChannelControl* channel, AnnotationsProvider* annotations) - { - m_Channel = channel; - m_ptrAnnotations = annotations; - } - - int ChannelDataView::FrameToPosition(FrameNumberType frameNumber) - { - int localOffset = 0; - FrameNumberType frameDifference = 0; - - if (frameNumber < m_Channel->m_State.m_FrameOffset) - { - frameDifference = frameNumber - m_Channel->m_State.m_FrameOffset; - } - else if (frameNumber >= (m_Channel->m_State.m_FrameOffset + (m_Channel->m_State.m_FramesInView - 1))) - { - frameDifference = frameNumber - (m_Channel->m_State.m_FrameOffset + (m_Channel->m_State.m_FramesInView - 1)); - localOffset = rect().width(); - } - - localOffset += static_cast(GetBarWidth() * frameDifference); - - return mapToGlobal(QPoint(localOffset, 0)).x(); - } - - FrameNumberType ChannelDataView::PositionToFrame(const QPoint& pt) - { - QRect wrect = rect(); - - FrameNumberType frame = m_Channel->m_State.m_FrameOffset + m_Channel->m_State.m_FramesInView - 1; - frame = frame <= m_Channel->m_State.m_EndFrame ? frame : m_Channel->m_State.m_EndFrame; - - float pct = (float)pt.x() / (float)wrect.width(); - FrameNumberType rCell = m_Channel->m_State.m_FramesInView - 1 - (int)((float)m_Channel->m_State.m_FramesInView * pct); - FrameNumberType retFrame = frame - rCell; - - return retFrame; - } - - FrameNumberType ChannelDataView::FramesPerPixel() - { - FrameNumberType range = PositionToFrame(QPoint(0, 0)) - PositionToFrame(QPoint(1, 0)); - return(range > 0 ? range : 1); - } - - float ChannelDataView::GetBarWidth() - { - return ((float)(rect().width()) / (float)(m_Channel->m_State.m_FramesInView)); - } - - void ChannelDataView::paintEvent(QPaintEvent* event) - { - (void)event; - - if (m_dirtyGraph) - { - m_dirtyGraph = false; - RecalculateGraphedPoints(); - } - - QPen pen; - pen.setWidth(1); - QBrush brush; - brush.setStyle(Qt::SolidPattern); - pen.setBrush(brush); - - QPainter painter(this); - - painter.setPen(pen); - painter.fillRect(rect(), Qt::black); - - FrameNumberType frame = m_Channel->m_State.m_FrameOffset + m_Channel->m_State.m_FramesInView - 1; - frame = frame <= m_Channel->m_State.m_EndFrame ? frame : m_Channel->m_State.m_EndFrame; - - QRect wrect = rect(); - - float barWidth = GetBarWidth(); - int barWidthHalf = (int)(barWidth / 2.0f); - float drawBarWidth = ((barWidth - 1.0f) < 1.0f ? 1.0f : (barWidth - 1.0f)); - - if (m_Channel->IsActive()) - { - // PLAYBACK LOOP MARKERS - if (m_Channel->m_State.m_LoopBegin >= frame - m_Channel->m_State.m_FramesInView) - { - float l = rect().right() - barWidth / 2.0f - 1 - barWidth * (frame - m_Channel->m_State.m_LoopBegin); - painter.fillRect((int)l, 0, 2, rect().height(), QColor(255, 255, 0, 255)); - } - if (m_Channel->m_State.m_LoopEnd >= frame - m_Channel->m_State.m_FramesInView) - { - float l = rect().right() - barWidth / 2.0f - 1 - barWidth * (frame - m_Channel->m_State.m_LoopEnd); - painter.fillRect((int)l, 0, 2, rect().height(), QColor(255, 255, 0, 255)); - } - } - - brush.setStyle(Qt::Dense2Pattern); - brush.setColor(Qt::red); - int wrectHeight = wrect.height() / (m_Channel->m_State.m_ContractedHeight ? 2 : 1); - - if (m_Channel->IsActive() && m_Channel->m_State.m_EndFrame) - { - // SCRUBBER - if (m_Channel->m_State.m_ScrubberFrame >= frame - m_Channel->m_State.m_FramesInView) - { - float l = rect().right()-GetBarWidth()/2.0f - 1 - GetBarWidth() * (frame - m_Channel->m_State.m_ScrubberFrame); - painter.fillRect( (int)l, 0, 2, rect().height(), brush ); - } - - float rightEdgeOfBar = (float)wrect.right(); - float leftEdgeOfBar = rightEdgeOfBar - barWidth; - - AZStd::list< ChannelProfilerWidget* > activeProfilers; - - for (ChannelProfilerWidget* profiler : m_Channel->GetProfilers()) - { - if (profiler->IsActive()) - { - activeProfilers.push_back(profiler); - } - } - - while (frame >= 0 && rightEdgeOfBar >= wrect.left()) - { - int actualLeftEdge = (int)floorf(leftEdgeOfBar); - - // Graph out precomputed points. - DataPointList& dataPointList = m_graphedPoints[frame]; - - for (AggregatorDataPoint& dataPoint : dataPointList) - { - dataPoint.Draw(painter, actualLeftEdge, drawBarWidth); - } - - // annotations? - AnnotationsProvider::ConstAnnotationIterator it = m_ptrAnnotations->GetFirstAnnotationForFrame(frame); - AnnotationsProvider::ConstAnnotationIterator endIt = m_ptrAnnotations->GetEnd(); - - if (it != endIt) - { - painter.fillRect(actualLeftEdge + barWidthHalf, 0, 1, wrectHeight, m_ptrAnnotations->GetColorForChannel(it->GetChannelCRC())); - //++it; - } - - --frame; - rightEdgeOfBar -= barWidth; - leftEdgeOfBar -= barWidth; - } - - // Styling the budget markers. - // Mildly ugly, but not a lot of pixels to work with - // to make it look better. - pen = QPen(Qt::black); - pen.setWidth(1); - - painter.setPen(pen); - brush.setStyle(Qt::BrushStyle::SolidPattern); - - // Budget Markers - for (BudgetMarkerMap::value_type& mapPair : m_budgetMarkers) - { - BudgetMarker& budgetMarker = mapPair.second; - - QColor drawColor = budgetMarker.GetColor(); - - QRect sizeRect = rect(); - int x = rect().left(); - float normalizedValue = ((budgetMarker.GetValue() + 1.0f) / 2.0f); - int y = static_cast(rect().bottom() - (rect().height() * normalizedValue)); - int width = rect().width(); - int height = 4; - brush.setColor(drawColor); - - // Want to make sure we always draw the entire box. - if (y > rect().bottom() - height) - { - y = rect().bottom() - height; - } - - painter.fillRect( - x, - y, - width, - height, - brush); - - painter.drawRect( - x, - y, - width, - height); - } - } - } - - void ChannelDataView::mouseMoveEvent(QMouseEvent* event) - { - if (m_Channel->IsInCaptureMode(CaptureMode::Capturing)) - { - return; - } - - if (m_Channel->IsActive()) - { - if (m_mouseGrabbed) - { - if (m_shouldIgnorePoint && event->globalPos() == m_centerPoint) - { - m_shouldIgnorePoint = false; - return; - } - - QPoint mousePoint = event->globalPos(); - int mouseDelta = (mousePoint.x() - m_centerPoint.x()); - - if (m_initializeDrag) - { - m_initializeDrag = false; - m_dragInitialized = true; - - QApplication::setOverrideCursor(QCursor(Qt::BlankCursor)); - - QRect screenGeometry = QApplication::primaryScreen()->geometry(); - m_centerPoint = screenGeometry.center(); - - mouseDelta = (mousePoint.x() - mapToGlobal(m_simulatedPoint).x()); - } - - m_simulatedPoint.setX(m_simulatedPoint.x() + mouseDelta); - - QPoint framePoint = m_simulatedPoint; - framePoint.setX(framePoint.x() + m_xOffset); - - FrameNumberType frame = PositionToFrame(framePoint); - FrameNumberType framesPerPixel = FramesPerPixel(); - - // raw frame, sanitized by the controller - emit InformOfMouseMove(frame, framesPerPixel, event->modifiers()); - event->ignore(); - - QRect boundingRect = rect(); - - m_shouldIgnorePoint = true; - QCursor::setPos(m_centerPoint); - m_xOffset += mouseDelta; - - if (!boundingRect.contains(m_simulatedPoint)) - { - m_simulatedPoint.setX(AZ::GetClamp(m_simulatedPoint.x(), boundingRect.left(), boundingRect.right())); - } - else - { - m_xOffset = 0; - } - - if (m_lastFrame != frame) - { - m_lastFrame = frame; - - if (framesPerPixel == 1) - { - int barWidth = static_cast(ceilf(GetBarWidth())); - m_xOffset %= barWidth; - } - else - { - m_xOffset = 0; - } - } - - // Can't scroll beyond the minimum frame. - if (m_lastFrame == 0 && m_xOffset < 0) - { - m_xOffset = 0; - } - // Can't scroll beyond the maximum frame. - else if (m_lastFrame == m_Channel->m_State.m_EndFrame && m_xOffset > 0) - { - m_xOffset = 0; - } - } - // If we aren't dragging, we need to deal with highlighting - else - { - QPoint pos = event->localPos().toPoint(); - - // This guy expects relative position to parent. Not local space. - FrameNumberType frameNumber = PositionToFrame(event->pos()); - - FramePointMapping::iterator dataPointIter = m_graphedPoints.find(frameNumber); - - if (dataPointIter != m_graphedPoints.end()) - { - if (frameNumber != m_highlightedFrame) - { - RemoveHighlight(); - } - - bool needsUpdate = false; - - DataPointList& dataPointList = dataPointIter->second; - AggregatorDataPoint* overlayPoint = nullptr; - - for (AggregatorDataPoint& dataPoint : dataPointList) - { - if (dataPoint.ContainsPoint(pos)) - { - m_highlightedFrame = frameNumber; - overlayPoint = &dataPoint; - } - else if (dataPoint.SetOverlayEnabled(false)) - { - needsUpdate = true; - } - } - - if (overlayPoint) - { - if (overlayPoint->SetOverlayEnabled(true)) - { - needsUpdate = true; - } - } - else - { - m_highlightedFrame = -1; - } - - if (needsUpdate) - { - update(); - } - } - else - { - RemoveHighlight(); - } - } - } - } - - void ChannelDataView::mousePressEvent(QMouseEvent* event) - { - if (!m_Channel->IsInCaptureMode(CaptureMode::Capturing) && m_Channel->IsActive()) - { - emit InformOfMouseClick(event->button(), PositionToFrame(event->pos()), FramesPerPixel(), event->modifiers()); - event->ignore(); - - // Only want to perform dragging actions on left clicks. - if (event->button() == Qt::LeftButton) - { - grabMouse(); - - m_initializeDrag = true; - m_simulatedPoint = event->pos(); - - m_mouseGrabbed = true; - m_xOffset = 0; - - m_lastFrame = m_Channel->m_State.m_ScrubberFrame; - } - } - } - - void ChannelDataView::mouseReleaseEvent(QMouseEvent* event) - { - if (!m_Channel->IsInCaptureMode(CaptureMode::Capturing) && m_Channel->IsActive()) - { - if (m_mouseGrabbed) - { - FrameNumberType frame = PositionToFrame(m_simulatedPoint); - emit InformOfMouseRelease(event->button(), frame, FramesPerPixel(), event->modifiers()); - event->ignore(); - - m_mouseGrabbed = false; - - if (m_dragInitialized) - { - m_shouldIgnorePoint = true; - - QCursor::setPos(mapToGlobal(m_simulatedPoint)); - QApplication::restoreOverrideCursor(); - } - - releaseMouse(); - } - } - } - - void ChannelDataView::wheelEvent(QWheelEvent* event) - { - if (event->angleDelta().y() == 0) - { - event->accept(); - return; - } - - emit InformOfMouseWheel(PositionToFrame(event->position().toPoint()), event->angleDelta().y(), FramesPerPixel(), event->modifiers()); - event->ignore(); - } - - void ChannelDataView::leaveEvent(QEvent* event) - { - (void)event; - RemoveHighlight(); - } - - void ChannelDataView::DirtyGraphData() - { - m_dirtyGraph = true; - } - - void ChannelDataView::RefreshGraphData() - { - for (ChannelProfilerWidget* profilerWidget : m_Channel->GetProfilers()) - { - profilerWidget->GetAggregator()->AnnotateChannelView(this); - } - - m_graphedPoints.clear(); - DirtyGraphData(); - update(); - } - - BudgetMarkerTicket ChannelDataView::AddBudgetMarker(float value, QColor color) - { - ++m_budgetMarkerCounter; - - if (m_budgetMarkerCounter == 0 || m_budgetMarkers.find(m_budgetMarkerCounter) != m_budgetMarkers.end()) - { - BudgetMarkerTicket startTicket = m_budgetMarkerCounter; - - do - { - ++m_budgetMarkerCounter; - } while ((m_budgetMarkerCounter == 0 || m_budgetMarkers.find(m_budgetMarkerCounter) != m_budgetMarkers.end()) && m_budgetMarkerCounter != startTicket); - - AZ_Assert(m_budgetMarkers.find(m_budgetMarkerCounter) == m_budgetMarkers.end(),"Ran out of tickets inside of budget marker creation."); - } - - m_budgetMarkers.insert(BudgetMarkerMap::value_type(m_budgetMarkerCounter, BudgetMarker(value, color))); - return m_budgetMarkerCounter; - } - - void ChannelDataView::RemoveBudgetMarker(BudgetMarkerTicket ticket) - { - m_budgetMarkers.erase(ticket); - } - - void ChannelDataView::resizeEvent(QResizeEvent* newSize) - { - QWidget::resizeEvent(newSize); - - // Graph data relies on the size of the graph, so we need to update it whenever we resize. - DirtyGraphData(); - } - - void ChannelDataView::RecalculateGraphedPoints() - { - FrameNumberType frame = m_Channel->m_State.m_FrameOffset + m_Channel->m_State.m_FramesInView - 1; - frame = AZ::GetMin(frame, m_Channel->m_State.m_EndFrame); - - QRect wrect = rect(); - int wrectHeight = wrect.height() / (m_Channel->m_State.m_ContractedHeight ? 2 : 1); - - float barWidth = GetBarWidth(); - - if (m_Channel->m_State.m_EndFrame) - { - float vRange = (float)(wrectHeight - k_barHeight); - float half = vRange / 2.0f; - - float rectBarWidth = (barWidth < 1.0f ? 1.0f : barWidth); - - float rightEdgeOfBar = (float)wrect.right(); - float leftEdgeOfBar = rightEdgeOfBar - barWidth; - - FrameNumberType newMax = frame; - - while (frame >= 0 && rightEdgeOfBar >= wrect.left()) - { - // If the frame is a new frame we need to parse it's data. - if (m_graphedPoints.find(frame) == m_graphedPoints.end()) - { - int actualLeftEdge = (int)floorf(leftEdgeOfBar); - int actualWidth = (int)floorf(rectBarWidth - 1.0f); - - if (actualWidth < 1) - { - actualWidth = 1; - } - - AZStd::list dataPoints; - - for (ChannelProfilerWidget* currentProfiler : m_Channel->GetProfilers()) - { - float vaf = currentProfiler->GetAggregator()->ValueAtFrame(frame); - int topOfBar = (int)(half - (vaf * half)); - - QRect drawRect(actualLeftEdge, topOfBar, actualWidth, k_barHeight); - - dataPoints.emplace_back(drawRect, currentProfiler); - } - - while (!dataPoints.empty()) - { - AggregatorDataPoint currentPoint = dataPoints.front(); - dataPoints.pop_front(); - - bool intersected = false; - AZStd::list::iterator aggregatorIter = dataPoints.begin(); - - do - { - intersected = false; - aggregatorIter = dataPoints.begin(); - - while (aggregatorIter != dataPoints.end()) - { - if (currentPoint.IntersectsDataPoint((*aggregatorIter))) - { - intersected = true; - currentPoint.AddAggregatorDataPoint((*aggregatorIter)); - aggregatorIter = dataPoints.erase(aggregatorIter); - } - else - { - ++aggregatorIter; - } - } - } while (intersected); - - m_graphedPoints[frame].push_back(currentPoint); - } - } - - --frame; - rightEdgeOfBar -= barWidth; - leftEdgeOfBar -= barWidth; - } - - FrameNumberType newMin = AZ::GetMax(0, frame + 1); - - if (m_minFrame >= 0) - { - while (m_minFrame < newMin) - { - m_graphedPoints.erase(m_minFrame); - ++m_minFrame; - } - } - - m_minFrame = newMin; - - if (m_maxFrame >= 0) - { - while (m_maxFrame >= 0 && m_maxFrame > newMax) - { - m_graphedPoints.erase(m_maxFrame); - --m_maxFrame; - } - } - - m_maxFrame = newMax; - } - else - { - m_minFrame = -1; - m_maxFrame = -1; - m_graphedPoints.clear(); - } - } - - void ChannelDataView::RemoveHighlight() - { - if (m_highlightedFrame >= 0) - { - FramePointMapping::iterator dataPointIter = m_graphedPoints.find(m_highlightedFrame); - - if (dataPointIter != m_graphedPoints.end()) - { - bool needsUpdate = false; - DataPointList& dataPointList = dataPointIter->second; - - for (AggregatorDataPoint& dataPoint : dataPointList) - { - needsUpdate = dataPoint.SetOverlayEnabled(false) || needsUpdate; - } - - if (needsUpdate) - { - update(); - } - } - - m_highlightedFrame = -1; - } - } -} diff --git a/Code/Tools/Standalone/Source/Driller/ChannelDataView.hxx b/Code/Tools/Standalone/Source/Driller/ChannelDataView.hxx deleted file mode 100644 index b12f9c021e..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChannelDataView.hxx +++ /dev/null @@ -1,162 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef CHANNEL_DATA_VIEW_H -#define CHANNEL_DATA_VIEW_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include - -#include - -#include "Source/Driller/DrillerDataTypes.h" -#endif - -namespace Driller -{ - class AnnotationsProvider; - class ChannelControl; - class ChannelDataView; - class ChannelProfilerWidget; - class Aggregator; - - class AggregatorDataPoint - { - public: - AggregatorDataPoint(); - AggregatorDataPoint(QRect rectangle,ChannelProfilerWidget* profiler); - - void Draw(QPainter& painter, int leftEdge, float barWidth); - bool ContainsPoint(const QPoint& point); - - bool IntersectsDataPoint(const AggregatorDataPoint& dataPoint); - void AddAggregatorDataPoint(const AggregatorDataPoint& dataPoint); - - bool SetOverlayEnabled(bool enabled); - - private: - - bool m_isActive; - bool m_isShowingOverlay; - bool m_shouldOutline; - QColor m_drawColor; - QRect m_visualBlock; - - AZStd::unordered_set< ChannelProfilerWidget* > m_combinedProfilers; - }; - - class BudgetMarker - { - public: - BudgetMarker(float value, QColor& drawColor); - ~BudgetMarker(); - - float GetValue() const; - const QColor& GetColor() const; - - private: - - float m_value; - QColor m_drawColor; - }; - - typedef unsigned int BudgetMarkerTicket; - - /* - Channel Data View handles all rendering of the scrolling data graph. - To do this it caches pointer access to its owning Channel - and pulls state information directly from there. - - Mouse events are passed upwards to its owning Channel via signal/slot. - */ - - class ChannelDataView : public QWidget - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(ChannelDataView, AZ::SystemAllocator, 0); - ChannelDataView( QWidget* parent = nullptr ); - - virtual ~ChannelDataView(); - - void RegisterToChannel(ChannelControl* channel, AnnotationsProvider* annotations); - - QPainter *m_Painter; - ChannelControl *m_Channel; - AnnotationsProvider *m_ptrAnnotations; - - int FrameToPosition(FrameNumberType frameNumber); - FrameNumberType PositionToFrame( const QPoint &pt ); - FrameNumberType FramesPerPixel(); - - float GetBarWidth(); - - virtual void paintEvent( QPaintEvent *event ); - virtual void mouseMoveEvent( QMouseEvent *event ); - virtual void mousePressEvent( QMouseEvent *event ); - virtual void mouseReleaseEvent( QMouseEvent *event ); - virtual void wheelEvent(QWheelEvent *event); - virtual void leaveEvent( QEvent* event ); - - void DirtyGraphData(); - void RefreshGraphData(); - - BudgetMarkerTicket AddBudgetMarker(float value, QColor color); - void RemoveBudgetMarker(BudgetMarkerTicket ticket); - -signals: - void InformOfMouseClick(Qt::MouseButton button, FrameNumberType frame, FrameNumberType range, int modifiers ); - void InformOfMouseMove( FrameNumberType frame, FrameNumberType range, int modifiers ); - void InformOfMouseRelease(Qt::MouseButton button, FrameNumberType frame, FrameNumberType range, int modifiers ); - void InformOfMouseWheel( FrameNumberType frame, int wheelAmount, FrameNumberType range, int modifiers ); - - protected: - void resizeEvent(QResizeEvent* event) override; - - private: - - void RecalculateGraphedPoints(); - void RemoveHighlight(); - - typedef AZStd::list< AggregatorDataPoint > DataPointList; - typedef AZStd::unordered_map FramePointMapping; - - typedef AZStd::unordered_map BudgetMarkerMap; - - BudgetMarkerTicket m_budgetMarkerCounter; - BudgetMarkerMap m_budgetMarkers; - - FramePointMapping m_graphedPoints; - AZStd::list< ChannelProfilerWidget* > m_profilerWidgets; - - FrameNumberType m_minFrame; - FrameNumberType m_maxFrame; - FrameNumberType m_highlightedFrame; - - FrameNumberType m_lastFrame; - int m_xOffset; - - bool m_initializeDrag; - bool m_dragInitialized; - - bool m_shouldIgnorePoint; - - QPoint m_simulatedPoint; - QPoint m_centerPoint; - - bool m_mouseGrabbed; - bool m_dirtyGraph; - }; - -} - - -#endif // CHANNEL_DATA_VIEW_H diff --git a/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.cpp b/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.cpp deleted file mode 100644 index b596fa023a..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.cpp +++ /dev/null @@ -1,292 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#include "Source/Driller/ChannelProfilerWidget.hxx" -#include - -#include "Source/Driller/DrillerAggregator.hxx" -#include "Source/Driller/ChannelControl.hxx" -#include "Source/Driller/CollapsiblePanel.hxx" -#include "Source/Driller/CustomizeCSVExportWidget.hxx" -#include "Source/Driller/DrillerOperationTelemetryEvent.h" - -#include -#include -#include - -namespace Driller -{ - void ColorizeIcon(QIcon& icon, const char* iconPath, Aggregator* aggregator) - { - QImage alphaImage(iconPath); - alphaImage = alphaImage.convertToFormat(QImage::Format_ARGB32_Premultiplied); - - QImage colorizedImage(alphaImage.width(), alphaImage.height(), QImage::Format_ARGB32_Premultiplied); - - QColor color = aggregator->GetColor(); - color.setAlphaF(1.0f); - - QPainter painter; - painter.begin(&colorizedImage); - painter.setCompositionMode(QPainter::CompositionMode_Source); - painter.fillRect(colorizedImage.rect(), color); - painter.end(); - - colorizedImage.setAlphaChannel(alphaImage); - - icon.addPixmap(QPixmap::fromImage(colorizedImage)); - } - - ChannelProfilerWidget::ChannelProfilerWidget(ChannelControl* channelControl, Aggregator* aggregator) - : QWidget(channelControl) - , m_channelControl(channelControl) - , m_drilledWidget(nullptr) - , m_aggregator(aggregator) - , m_captureMode(CaptureMode::Unknown) - , m_isActive(true) - , m_activeIcon() - , m_inactiveIcon() - { - setupUi(this); - - connect(this, SIGNAL(DrillDownRequest(FrameNumberType)), m_aggregator, SLOT(DrillDownRequest(FrameNumberType))); - connect(this, SIGNAL(ExportToCSVRequest(const char*, CSVExportSettings*)), m_aggregator, SLOT(ExportToCSVRequest(const char*, CSVExportSettings*))); - - connect(m_aggregator, SIGNAL(GetInspectionFileName()), m_channelControl, SIGNAL(GetInspectionFileName())); - - connect(profilerName, SIGNAL(clicked()), this, SLOT(OnActivationToggled())); - connect(enableChannel, SIGNAL(clicked()), this, SLOT(OnActivationToggled())); - //connect(channelOptions,SIGNAL(clicked()),this, SLOT(OnConfigureChannel())); - connect(drillDown, SIGNAL(clicked()), this, SLOT(OnDrillDown())); - connect(exportData, SIGNAL(clicked()), this, SLOT(OnExportToCSV())); - - ColorizeIcon(m_activeIcon, ":/driller/active_color_swatch", aggregator); - ColorizeIcon(m_inactiveIcon, ":/driller/inactive_color_swatch", aggregator); - - profilerName->setToolTip(aggregator->GetToolTip()); - profilerName->setText(GetName()); - - UpdateActivationIcon(); - ConfigureUI(); - } - - ChannelProfilerWidget::~ChannelProfilerWidget() - { - } - - Aggregator* ChannelProfilerWidget::GetAggregator() const - { - return m_aggregator; - } - - bool ChannelProfilerWidget::IsActive() const - { - return m_isActive; - } - - void ChannelProfilerWidget::SetIsActive(bool isActive) - { - if (m_isActive != isActive) - { - m_isActive = isActive; - UpdateActivationIcon(); - - if (m_aggregator && m_captureMode == Driller::CaptureMode::Configuration) - { - m_aggregator->EnableCapture(isActive); - } - - emit OnActivationChanged(this, m_isActive); - } - } - - QString ChannelProfilerWidget::GetName() const - { - return (m_aggregator ? m_aggregator->GetName() : "Unknown Profiler"); - } - - AZ::Uuid ChannelProfilerWidget::GetID() - { - return (m_aggregator ? m_aggregator->GetID() : AZ::Uuid::CreateNull()); - } - - ChannelConfigurationWidget* ChannelProfilerWidget::CreateConfigurationWidget() - { - ChannelConfigurationWidget* configurationWidget = nullptr; - - if (m_aggregator) - { - configurationWidget = m_aggregator->CreateConfigurationWidget(); - } - - return configurationWidget; - } - - void ChannelProfilerWidget::OnActivationToggled() - { - SetIsActive(!IsActive()); - } - - void ChannelProfilerWidget::SetCaptureMode(CaptureMode captureMode) - { - if (m_captureMode != captureMode) - { - m_captureMode = captureMode; - - ConfigureUI(); - } - } - - void ChannelProfilerWidget::OnDrillDown() - { - if (m_channelControl && IsInCaptureMode(CaptureMode::Inspecting)) - { - char traceStr[AZ::Uuid::MaxStringBuffer]; - m_aggregator->GetID().ToString(traceStr, AZ_ARRAY_SIZE(traceStr)); - AZ_TracePrintf("Driller", "Drill Down ID = %s\n", traceStr); - - if (m_drilledWidget == nullptr) - { - m_drilledWidget = emit DrillDownRequest(m_channelControl->m_State.m_ScrubberFrame); - if (m_drilledWidget) - { - connect(m_drilledWidget, SIGNAL(destroyed(QObject*)), this, SLOT(OnDrillDestroyed(QObject*))); - emit OnSuccessfulDrillDown(m_drilledWidget); - } - } - else - { - if (m_drilledWidget->isMinimized()) - { - m_drilledWidget->showNormal(); - } - - m_drilledWidget->raise(); - m_drilledWidget->activateWindow(); - } - } - } - - void ChannelProfilerWidget::OnDrillDestroyed(QObject* widget) - { - if (widget == m_drilledWidget) - { - m_drilledWidget = nullptr; - } - } - - void ChannelProfilerWidget::OnExportToCSV() - { - DrillerOperationTelemetryEvent exportToCSVEvent; - exportToCSVEvent.SetAttribute("ExportToCSV", m_aggregator->GetName().toStdString().c_str()); - exportToCSVEvent.Log(); - - char traceStr[AZ::Uuid::MaxStringBuffer]; - m_aggregator->GetID().ToString(traceStr, AZ_ARRAY_SIZE(traceStr)); - AZ_TracePrintf("Driller", "Export Request for ID = %s\n", traceStr); - - QFileDialog fileDialog; - - CustomizeCSVExportWidget* customizeWidget = m_aggregator->CreateCSVExportCustomizationWidget(); - - // Always use the Qt dialog for consistency - fileDialog.setOption(QFileDialog::DontUseNativeDialog, true); - fileDialog.setAcceptMode(QFileDialog::AcceptSave); - fileDialog.setWindowTitle(QString("Export %1 To CSV").arg(m_aggregator->GetName())); - fileDialog.setNameFilter("CSV (*.csv)"); - fileDialog.setDefaultSuffix("csv"); - - if (customizeWidget) - { - CollapsiblePanel* collapsiblePanel = aznew CollapsiblePanel(&fileDialog); - - collapsiblePanel->SetTitle("Customize"); - collapsiblePanel->SetContent(customizeWidget); - - // I don't know why the decided to use a GridLayout here instead of nested layouts. But whatever. - QGridLayout* gridLayout = static_cast(fileDialog.layout()); - int numRows = gridLayout->rowCount(); - - gridLayout->addWidget(collapsiblePanel, numRows, 0, 1, gridLayout->columnCount()); - } - - QString fileName; - if (fileDialog.exec()) - { - QStringList fileList = fileDialog.selectedFiles(); - - for (const QString& file : fileList) - { - if (!file.isEmpty()) - { - fileName = file; - break; - } - } - } - - if (!fileName.isEmpty()) - { - CSVExportSettings* exportSettings = nullptr; - - if (customizeWidget) - { - customizeWidget->FinalizeSettings(); - exportSettings = customizeWidget->GetExportSettings(); - } - - emit ExportToCSVRequest(fileName.toStdString().c_str(), exportSettings); - } - } - - bool ChannelProfilerWidget::AllowCSVExport() const - { - return (m_aggregator ? m_aggregator->CanExportToCSV() : false); - } - - void ChannelProfilerWidget::UpdateActivationIcon() - { - if (IsActive()) - { - enableChannel->setIcon(m_activeIcon); - } - else - { - enableChannel->setIcon(m_inactiveIcon); - } - } - - bool ChannelProfilerWidget::IsInCaptureMode(CaptureMode captureMode) const - { - return m_captureMode == captureMode; - } - - void ChannelProfilerWidget::ConfigureUI() - { - switch (m_captureMode) - { - case CaptureMode::Configuration: - enableChannel->setEnabled(true); - drillDown->setVisible(false); - exportData->setVisible(false); - break; - case CaptureMode::Capturing: - enableChannel->setEnabled(false); - drillDown->setVisible(false); - exportData->setVisible(false); - break; - case CaptureMode::Inspecting: - enableChannel->setEnabled(true); - drillDown->setVisible(true); - exportData->setVisible(AllowCSVExport()); - exportData->setEnabled(AllowCSVExport()); - break; - default: - break; - } - } -} diff --git a/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.hxx b/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.hxx deleted file mode 100644 index 307a3084df..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.hxx +++ /dev/null @@ -1,92 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#pragma once - -#ifndef DRILLER_CHANNELPROFILERWIDGET_H -#define DRILLER_CHANNELPROFILERWIDGET_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#include - -#include "Source/Driller/DrillerDataTypes.h" - -// Generated Files -#include -#endif - -namespace Driller -{ - class Aggregator; - class ChannelControl; - class CSVExportSettings; - class ChannelConfigurationWidget; - - class ChannelProfilerWidget - : public QWidget - , private Ui::ChannelProfilerWidget - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(ChannelProfilerWidget, AZ::SystemAllocator,0); - - ChannelProfilerWidget(ChannelControl* channelControl, Aggregator* aggregator); - virtual ~ChannelProfilerWidget(); - - Aggregator* GetAggregator() const; - - bool IsActive() const; - void SetIsActive(bool isActive); - - QString GetName() const; - AZ::Uuid GetID(); - - ChannelConfigurationWidget* CreateConfigurationWidget(); - - public slots: - void OnActivationToggled(); - void SetCaptureMode(CaptureMode mode); - - void OnDrillDown(); - void OnDrillDestroyed(QObject* drill); - - void OnExportToCSV(); - - signals: - void OnActivationChanged(ChannelProfilerWidget*,bool activated); - - QWidget* DrillDownRequest(FrameNumberType atFrame); - void ExportToCSVRequest(const char* filename, CSVExportSettings* customizeWidget); - - void OnSuccessfulDrillDown(QWidget* widget); - - private: - - bool AllowCSVExport() const; - void UpdateActivationIcon(); - - bool IsInCaptureMode(CaptureMode captureMode) const; - void ConfigureUI(); - - ChannelControl* m_channelControl; - QWidget* m_drilledWidget; - Aggregator* m_aggregator; - - CaptureMode m_captureMode; - bool m_isActive; - - QImage m_inactiveImage; - QImage m_activeImage; - QIcon m_activeIcon; - QIcon m_inactiveIcon; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.ui b/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.ui deleted file mode 100644 index 67e117a20d..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.ui +++ /dev/null @@ -1,150 +0,0 @@ - - - ChannelProfilerWidget - - - - 0 - 0 - 374 - 28 - - - - ChannelProfilerWidget - - - - 3 - - - 9 - - - 0 - - - 0 - - - 0 - - - - - Toggle this Profiler On/Off - - - - - - - 12 - 12 - - - - - - - - - 13 - - - - - - - - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 2 - - - 0 - - - 0 - - - 4 - - - 0 - - - - - Save to CSV - - - ... - - - - :/driller/export_button_enabled - :/driller/export_button_disabled - :/driller/export_button_disabled:/driller/export_button_enabled - - - - 20 - 20 - - - - - - - - Detailed Profiling Information - - - ... - - - - :/driller/drill_down_enabled - :/driller/drill_down_disabled - :/driller/drill_down_disabled:/driller/drill_down_enabled - - - - 20 - 20 - - - - - - - - - - - - AzToolsFramework::ClickableLabel - QLabel -
AzToolsFramework/UI/UICore/ClickableLabel.hxx
-
-
- - - - -
diff --git a/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.cpp b/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.cpp deleted file mode 100644 index 33c1dc66d4..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.cpp +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "ChartNumberFormats.h" - -namespace DrillerCharts -{ - QString FriendlyFormat(AZ::s64 n) - { - QString str; - - str = QString("%L1").arg(n); - - //if (n < 0) - //{ - // str = "-"; - //} - - //AZ::s64 b = n / 1000000000l; - //n %= 1000000000l; - - //AZ::s64 m = n / 1000000l; - //n %= 1000000l; - - //AZ::s64 k = n / 1000l; - //n %= 1000l; - - //if (b) - //{ - // str += QString("%0b").arg(abs(b)); - //} - //if (m) - //{ - // str += QString("%0m").arg(abs(m)); - //} - //if (k) - //{ - // str += QString("%0k").arg(abs(k)); - //} - //if (n) - //{ - // str += QString("%0").arg(abs(n)); - //} - - return str; - } -} diff --git a/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.h b/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.h deleted file mode 100644 index 6c20f1dfda..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef CHARTNUMBERFORMATS_H -#define CHARTNUMBERFORMATS_H - -#include -#include - -#pragma once - -namespace DrillerCharts -{ - QString FriendlyFormat(AZ::s64 n); -} - -#endif //CHARTNUMBERFORMATS_H diff --git a/Code/Tools/Standalone/Source/Driller/ChartTypes.cpp b/Code/Tools/Standalone/Source/Driller/ChartTypes.cpp deleted file mode 100644 index 3a01b80c41..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChartTypes.cpp +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#include "Source/Driller/ChartTypes.hxx" -#include - -namespace Charts -{ - QAbstractAxisFormatter::QAbstractAxisFormatter(QObject* parent) - : QObject(parent) - { - } -} diff --git a/Code/Tools/Standalone/Source/Driller/ChartTypes.hxx b/Code/Tools/Standalone/Source/Driller/ChartTypes.hxx deleted file mode 100644 index 897df65ff3..0000000000 --- a/Code/Tools/Standalone/Source/Driller/ChartTypes.hxx +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#pragma once -#ifndef PROFILER_CHARTTYPES_H -#define PROFILER_CHARTTYPES_H - -#if !defined(Q_MOC_RUN) -#include -#endif - -namespace Charts -{ - enum class AxisType - { - Horizontal, - Vertical - }; - - // Plug this guy into the chart if you wish to custom format axes - class QAbstractAxisFormatter : public QObject - { - Q_OBJECT - public: - QAbstractAxisFormatter(QObject *pParent); - - /** convertAxisValueToText - * Expects you to return a QString with the value for the axis. - * value : value it wants the label for. - * minDisplayedValue : what value is at the bottom of the axis in the display - * maxDisplayedValue : what value is at the top of this axis in the display - * divisionSize : what each tickmark is, in domain units. - * So for example, if the axis is from 938 to 2114 and its got a tickmark every 250, and it wants to know what you'd like it to draw for 1250 - * then you'll get Value = 1250, minDisplayedValue = 1000, maxDisplayedValue = 2000, divisionSize = 250. - */ - virtual QString convertAxisValueToText(AxisType axisType, float value, float minDisplayedValue, float maxDisplayedValue, float divisionSize) = 0; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.cpp b/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.cpp deleted file mode 100644 index 9ef3779849..0000000000 --- a/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.cpp +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "CollapsiblePanel.hxx" -#include -#include - -namespace Driller -{ - CollapsiblePanel::CollapsiblePanel(QWidget* parent) - : QWidget(parent) - , m_isCollapsed(false) - , m_content(nullptr) - , m_gui(nullptr) - { - m_gui = azcreate(Ui::CollapsiblePanel, ()); - m_gui->setupUi(this); - - // Default to collapsed, need to initialize the variable to true to trigger the delta. - SetCollapsed(true); - - QObject::connect(m_gui->stateIcon, SIGNAL(clicked()), this, SLOT(OnClicked())); - } - - CollapsiblePanel::~CollapsiblePanel() - { - azdestroy(m_gui); - m_gui = nullptr; - } - - void CollapsiblePanel::SetTitle(const QString& title) - { - m_gui->description->setText(title); - } - - void CollapsiblePanel::SetContent(QWidget* content) - { - if (m_content) - { - m_gui->contentLayout->removeWidget(content); - m_content = nullptr; - } - - m_content = content; - - if (m_content) - { - m_gui->contentLayout->addWidget(m_content); - } - } - - void CollapsiblePanel::SetCollapsed(bool collapsed) - { - if (m_isCollapsed != collapsed) - { - m_isCollapsed = collapsed; - - m_gui->groupBox->setVisible(!m_isCollapsed); - - if (m_isCollapsed) - { - m_gui->stateIcon->setArrowType(Qt::RightArrow); - emit Collapsed(); - } - else - { - m_gui->stateIcon->setArrowType(Qt::DownArrow); - emit Expanded(); - } - } - } - - bool CollapsiblePanel::IsCollapsed() const - { - return m_isCollapsed; - } - - void CollapsiblePanel::OnClicked() - { - SetCollapsed(!m_isCollapsed); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.hxx b/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.hxx deleted file mode 100644 index df207b9247..0000000000 --- a/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.hxx +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_COLLAPSIBLEPANEL_H -#define DRILLER_COLLAPSIBLEPANEL_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#pragma once - -#include -#endif - -namespace Ui -{ - class CollapsiblePanel; -} - -namespace Driller -{ - class CollapsiblePanel - : public QWidget - { - Q_OBJECT - public: - AZ_CLASS_ALLOCATOR(CollapsiblePanel, AZ::SystemAllocator, 0); - - CollapsiblePanel(QWidget* parent = nullptr); - ~CollapsiblePanel(); - - void SetTitle(const QString& title); - void SetContent(QWidget* content); - - void SetCollapsed(bool collapsed); - bool IsCollapsed() const; - - public slots: - void OnClicked(); - - signals: - void Collapsed(); - void Expanded(); - - private: - - bool m_isCollapsed; - - QWidget* m_content; - Ui::CollapsiblePanel* m_gui; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.ui b/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.ui deleted file mode 100644 index 83f057ee94..0000000000 --- a/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.ui +++ /dev/null @@ -1,125 +0,0 @@ - - - CollapsiblePanel - - - - 0 - 0 - 591 - 421 - - - - Form - - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 5 - - - 5 - - - 0 - - - 0 - - - 0 - - - - - ... - - - - - - - - 10 - - - - Panel Name ggggMMMWWWW - - - - - - - - - - - 0 - 0 - - - - - - - - 0 - - - 10 - - - 0 - - - 0 - - - 0 - - - - - 0 - - - - - - - - - - - diff --git a/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.cpp b/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.cpp deleted file mode 100644 index 72130b5300..0000000000 --- a/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.cpp +++ /dev/null @@ -1,254 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#include - -#include "CombinedEventsControl.hxx" -#include - -#include "Annotations/AnnotationsHeaderView_Events.hxx" -#include "Axis.hxx" -#include "CollapsiblePanel.hxx" -#include "ChannelDataView.hxx" -#include "DrillerAggregator.hxx" -#include "DrillerEvent.h" -#include "DrillerMainWindowMessages.h" - -#include - -using namespace Racetrack; - -namespace Driller -{ - static const int k_raceTrackMinSize = 50; - static const int k_eventTrackSize = 20; - - CombinedEventsControl::CombinedEventsControl(QWidget* parent, Qt::WindowFlags flags) - : QDockWidget(parent, flags) - { - m_ScrubberIndex = 0; - - m_FirstIndex = 0; - m_LastIndex = 0; - - QWidget* nullBar = new QWidget(); - setTitleBarWidget(nullBar); - - setFeatures(QDockWidget::NoDockWidgetFeatures); - setAllowedAreas(Qt::BottomDockWidgetArea); - - m_collapsiblePanel = new CollapsiblePanel(this); - this->setWidget(m_collapsiblePanel); - - m_Contents = new QWidget(this); - m_Contents->setGeometry(0, 22, 542, 34); - m_Contents->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum); - QVBoxLayout* layout = new QVBoxLayout(); - - layout->setMargin(0); - layout->setSpacing(2); - - m_Contents->setLayout(layout); - m_collapsiblePanel->SetContent(m_Contents); - m_collapsiblePanel->SetTitle("Detailed Event View"); - - m_EventTrack = aznew CEQDataTrack(this); - m_EventTrack->SetupAxis("", 0.0f, 1.0f, false); - m_EventTrack->SetMarkerColor(Qt::darkMagenta); - m_EventTrack->setMinimumHeight(k_raceTrackMinSize); - - m_annotationHeaderView = aznew AnnotationHeaderView_Events(this); - - m_Contents->layout()->addWidget(m_annotationHeaderView); - m_Contents->layout()->addWidget(m_EventTrack); - - m_EventTrack->installEventFilter(this); - - connect(m_EventTrack, SIGNAL(EventRequestEventFocus(Driller::EventNumberType)), this, SLOT(OnEventTrackRequestEventFocus(Driller::EventNumberType))); - } - - void CombinedEventsControl::SetIdentity(int identity) - { - m_identity = identity; - DrillerEventWindowMessages::Handler::BusConnect(m_identity); - } - - bool CombinedEventsControl::eventFilter(QObject* obj, QEvent* event) - { - if (event->type() == QEvent::Resize) - { - if (obj == m_EventTrack) - { - QRect eventTrackGeometry = m_EventTrack->geometry(); - QSize actualSize = QSize(eventTrackGeometry.x(), eventTrackGeometry.height()); - emit InfoAreaGeometryChanged(actualSize); - } - } - - // hand it to the owner - return QObject::eventFilter(obj, event); - } - - Charts::Axis* CombinedEventsControl::GetAxis() const - { - return m_EventTrack->GetAxis(); - } - - - CombinedEventsControl::~CombinedEventsControl() - { - DrillerEventWindowMessages::Handler::BusDisconnect(m_identity); - - if (m_EventTrack) - { - delete m_EventTrack; - } - } - - void CombinedEventsControl::ClearAggregatorList() - { - m_Aggregators.clear(); - m_EventTrack->Clear(); - m_EventTrack->setMinimumHeight(k_raceTrackMinSize); - - m_ScrubberIndex = 0; - m_FirstIndex = 0; - m_LastIndex = 0; - } - - void CombinedEventsControl::AddAggregatorList(DrillerNetworkMessages::AggregatorList& theList) - { - // m_EventStrip clear all existing channels and the channel axis - m_EventTrack->Clear(); - for (DrillerNetworkMessages::AggregatorList::iterator iter = theList.begin(); iter != theList.end(); ++iter) - { - m_Aggregators.push_back(*iter); - - int channelID = m_EventTrack->AddChannel((*iter)->GetName()); - m_EventTrack->SetChannelColor(channelID, (*iter)->GetColor()); - } - - m_EventTrack->setMinimumHeight(k_raceTrackMinSize + static_cast(m_Aggregators.size()) * k_eventTrackSize); - } - void CombinedEventsControl::AddAggregator(Aggregator& theAggregator) - { - m_Aggregators.push_back(&theAggregator); - - int channelID = m_EventTrack->AddChannel(theAggregator.GetName()); - m_EventTrack->SetChannelColor(channelID, theAggregator.GetColor()); - - m_EventTrack->setMinimumHeight(k_raceTrackMinSize + static_cast(m_Aggregators.size()) * k_eventTrackSize); - } - - void CombinedEventsControl::SetAnnotationsProvider(AnnotationsProvider* ptrAnnotations) - { - m_annotationHeaderView->AttachToAxis(ptrAnnotations, GetAxis()); - } - - void CombinedEventsControl::SetEndFrame(FrameNumberType /*frame*/) - { - m_EventTrack->update(); - } - - void CombinedEventsControl::SetSliderOffset(FrameNumberType /*frame*/) - { - } - - void CombinedEventsControl::MouseClickInformed(int newValue) - { - emit InformOfMouseClick(newValue, 1, 0); - } - - void CombinedEventsControl::MouseMoveInformed(int newValue) - { - emit InformOfMouseMove(newValue, 1, 0); - } - - void CombinedEventsControl::OnEventScrubberboxChanged(int newValue) - { - emit EventRequestEventFocus(static_cast(newValue)); - } - - void CombinedEventsControl::SetScrubberFrame(FrameNumberType frame) - { - m_EventTrack->GetAxis()->Clear(); - - int temp_m_FirstIndex = 0x7fffffff; - int temp_m_LastIndex = 0; - - AZ::s64 highestCount = 0; - int channelIdx = 0; - for (AZStd::list::iterator iter = m_Aggregators.begin(); iter != m_Aggregators.end(); ++iter, ++channelIdx) - { - m_EventTrack->ClearData(channelIdx); - - size_t numEvents = (*iter)->NumOfEventsAtFrame(frame); - - if (numEvents) - { - highestCount += numEvents; - EventNumberType eventIndexOffset = (*iter)->GetFirstIndexAtFrame(frame); - - for (EventNumberType eventIndex = 0; eventIndex < static_cast(numEvents); ++eventIndex) - { - DrillerEvent* dep = (*iter)->GetEvents()[ eventIndex + eventIndexOffset ]; - AZ::s64 geid = dep->GetGlobalEventId(); - - temp_m_FirstIndex = (int)geid < temp_m_FirstIndex ? (int)geid : temp_m_FirstIndex; - temp_m_LastIndex = (int)geid > temp_m_LastIndex ? (int)geid : temp_m_LastIndex; - - //AZ_TracePrintf("LUA","First %d Last %d\n",temp_m_FirstIndex, temp_m_LastIndex); - - m_EventTrack->AddData(channelIdx, (float)geid, (float)channelIdx); - } - } - } - - m_FirstIndex = temp_m_FirstIndex; - m_LastIndex = temp_m_LastIndex; - - m_EventTrack->GetAxis()->SetAxisRange((float)m_FirstIndex, (float)m_LastIndex); - m_EventTrack->GetAxis()->SetViewFull(); - SanitizeScrubberIndex(); - emit EventRequestEventFocus(m_ScrubberIndex); - } - - void CombinedEventsControl::OnEventTrackRequestEventFocus(Driller::EventNumberType eventIndex) - { - emit EventRequestEventFocus(eventIndex); - } - - ////////////////////////////////////////////////////////////////////////// - // Event Window Messages - void CombinedEventsControl::EventFocusChanged(EventNumberType eventIdx) - { - m_ScrubberIndex = eventIdx; - SanitizeScrubberIndex(); - m_EventTrack->SetMarkerPosition((float)m_ScrubberIndex); - } - - void CombinedEventsControl::SanitizeScrubberIndex() - { - m_ScrubberIndex = m_ScrubberIndex < m_FirstIndex ? m_FirstIndex : m_ScrubberIndex; - m_ScrubberIndex = m_ScrubberIndex > m_LastIndex ? m_LastIndex : m_ScrubberIndex; - } - - - ////////////////////////////////////////////////////////////////////////// - CEQDataTrack::CEQDataTrack(QWidget* parent, Qt::WindowFlags flags) - : DataRacetrack(parent, flags) - { - m_InsetT = 4; - m_InsetB = 12; - SetZeroBasedAxisNumbering(true); - setAutoFillBackground(false); - setAttribute(Qt::WA_OpaquePaintEvent, true); - } - CEQDataTrack::~CEQDataTrack() - { - } -} diff --git a/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.hxx b/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.hxx deleted file mode 100644 index 3882d81356..0000000000 --- a/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.hxx +++ /dev/null @@ -1,116 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef COMBINEDEVENTS_CONTROL_H -#define COMBINEDEVENTS_CONTROL_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#include -#include - -#include "DrillerNetworkMessages.h" -#include "DrillerMainWindowMessages.h" -#include "RacetrackChart.hxx" -#include "Annotations/AnnotationsHeaderView_Events.hxx" -#endif - -namespace Charts -{ - class Axis; -} - -namespace Driller -{ - class Aggregator; - class CEQDataTrack; - class CollapsiblePanel; - class AnnotationsProvider; - - /* - Channel Control intermediates between one data Aggregator, the application's main window, and the renderer. - This maintains state used by the renderer and passes changes both up and down via signal/slot. - */ - - class CombinedEventsControl - : public QDockWidget - , public Driller::DrillerEventWindowMessages::Bus::Handler - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(CombinedEventsControl,AZ::SystemAllocator,0); - CombinedEventsControl( QWidget* parent = NULL, Qt::WindowFlags flags = Qt::WindowFlags()); - virtual ~CombinedEventsControl(void); - - void SetIdentity(int identity); - - void ClearAggregatorList(); - void AddAggregatorList(DrillerNetworkMessages::AggregatorList &theList); - void AddAggregator(Aggregator &theAggregator); - - void SetAnnotationsProvider(AnnotationsProvider* ptrAnnotations); - - AZStd::listm_Aggregators; - - int m_identity; - EventNumberType m_ScrubberIndex; - void SanitizeScrubberIndex(); - - QWidget *m_Contents; - - CollapsiblePanel* m_collapsiblePanel; - - AnnotationHeaderView_Events* m_annotationHeaderView; - CEQDataTrack* m_EventTrack; - - int m_FirstIndex; - int m_LastIndex; - int m_IndexCount; - - void SetActive( int active ); - void SetEndFrame( FrameNumberType frame ); - void SetSliderOffset( FrameNumberType frame ); - - Charts::Axis* GetAxis() const; - - virtual void EventFocusChanged(EventNumberType eventIdx); - - protected: - bool eventFilter(QObject *obj, QEvent *event); - - public slots: - void MouseClickInformed( int newValue ); - void MouseMoveInformed( int newValue ); - void OnEventScrubberboxChanged( int newValue ); - void SetScrubberFrame( FrameNumberType frame ); - void OnEventTrackRequestEventFocus(Driller::EventNumberType); - - signals: - void InformOfMouseClick( int newValue, int range, int modifiers ); - void InformOfMouseMove( int newValue, int range, int modifiers ); - void InfoAreaGeometryChanged ( QSize newSize); - void EventRequestEventFocus(EventNumberType); - }; - - class CEQDataTrack - : public Racetrack::DataRacetrack - { - Q_OBJECT; - public: - - AZ_CLASS_ALLOCATOR(CEQDataTrack,AZ::SystemAllocator,0); - CEQDataTrack( QWidget* parent = NULL, Qt::WindowFlags flags = Qt::WindowFlags()); - virtual ~CEQDataTrack(void); - }; - -} - - -#endif // COMBINEDEVENTS_CONTROL_H diff --git a/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.cpp b/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.cpp deleted file mode 100644 index 16650d0852..0000000000 --- a/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.cpp +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "Source/Driller/CustomizeCSVExportWidget.hxx" -#include - -#include "Source/Driller/CSVExportSettings.h" - -namespace Driller -{ - ///////////////////////////// - // CustomizeCSVExportWidget - ///////////////////////////// - - CustomizeCSVExportWidget::CustomizeCSVExportWidget(CSVExportSettings& exportSettings, QWidget* parent) - : QWidget(parent) - , m_exportSettings(exportSettings) - { - } - - CustomizeCSVExportWidget::~CustomizeCSVExportWidget() - { - } - - CSVExportSettings* CustomizeCSVExportWidget::GetExportSettings() const - { - return (&m_exportSettings); - } - - void CustomizeCSVExportWidget::OnShouldExportStateDescriptorChecked(int state) - { - m_exportSettings.SetShouldExportColumnDescriptors(state == Qt::Checked); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.hxx b/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.hxx deleted file mode 100644 index 75ea714fcd..0000000000 --- a/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.hxx +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_CUSTOMIZECSVEXPORTWIDGET_H -#define DRILLER_CUSTOMIZECSVEXPORTWIDGET_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#pragma once - -#include -#endif - -namespace Driller -{ - class CSVExportSettings; - - class CustomizeCSVExportWidget : public QWidget - { - Q_OBJECT - public: - CustomizeCSVExportWidget(CSVExportSettings& customSettings, QWidget* parent); - virtual ~CustomizeCSVExportWidget(); - - virtual void FinalizeSettings() = 0; - CSVExportSettings* GetExportSettings() const; - - public slots: - void OnShouldExportStateDescriptorChecked(int); - - protected: - CSVExportSettings& m_exportSettings; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/DoubleListSelector.cpp b/Code/Tools/Standalone/Source/Driller/DoubleListSelector.cpp deleted file mode 100644 index d352719e22..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DoubleListSelector.cpp +++ /dev/null @@ -1,145 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "DoubleListSelector.hxx" -#include -#include - -namespace Driller -{ - /////////////////////// - // DoubleListSelector - /////////////////////// - - DoubleListSelector::DoubleListSelector(QWidget* parent) - : QWidget(parent) - , m_gui(new Ui::DoubleListSelector()) - { - m_gui->setupUi(this); - - m_gui->activateButton->setAutoDefault(false); - m_gui->deactivateButton->setAutoDefault(false); - - QObject::connect(m_gui->activateButton, SIGNAL(clicked()), this, SLOT(activateSelected())); - QObject::connect(m_gui->deactivateButton, SIGNAL(clicked()), this, SLOT(deactivateSelected())); - } - - DoubleListSelector::~DoubleListSelector() - { - delete m_gui; - } - - void DoubleListSelector::setItemList(const QStringList& items, bool maintainActiveList) - { - if (maintainActiveList) - { - m_gui->inactiveList->clearItems(); - - const QStringList& activeItems = m_gui->activeList->getAllItems(); - - QStringList newActiveItems; - QStringList inactiveItems; - - for (const QString& currentItem : items) - { - if (activeItems.contains(currentItem)) - { - newActiveItems.push_back(currentItem); - } - else - { - inactiveItems.push_back(currentItem); - } - } - - m_gui->activeList->clearItems(); - - m_gui->inactiveList->addItems(inactiveItems); - m_gui->activeList->addItems(newActiveItems); - - emit ActiveItemsChanged(); - } - else - { - m_gui->inactiveList->clearItems(); - m_gui->inactiveList->addItems(items); - m_gui->activeList->clearItems(); - } - } - - void DoubleListSelector::setActiveItems(const QStringList& items) - { - QStringList inactiveItems = m_gui->inactiveList->getAllItems(); - const QStringList& activeItems = m_gui->activeList->getAllItems(); - - inactiveItems.append(activeItems); - - m_gui->inactiveList->clearItems(); - m_gui->activeList->clearItems(); - - for (const QString& currentItem : items) - { - QStringList::iterator itemIter = inactiveItems.begin(); - - while (itemIter != inactiveItems.end()) - { - if ((*itemIter).compare(currentItem) == 0) - { - inactiveItems.erase(itemIter); - break; - } - - ++itemIter; - } - } - - m_gui->inactiveList->addItems(inactiveItems); - m_gui->activeList->addItems(items); - - emit ActiveItemsChanged(); - } - - const QStringList& DoubleListSelector::getActiveItems() const - { - return m_gui->activeList->getAllItems(); - } - - void DoubleListSelector::setActiveTitle(const QString& title) - { - m_gui->activeGroupBox->setTitle(title); - } - - void DoubleListSelector::setInactiveTitle(const QString& title) - { - m_gui->inactiveGroupBox->setTitle(title); - } - - void DoubleListSelector::activateSelected() - { - QStringList activateItems; - - m_gui->inactiveList->getSelectedItems(activateItems); - m_gui->inactiveList->removeSelected(); - - m_gui->activeList->addItems(activateItems); - - emit ActiveItemsChanged(); - } - - void DoubleListSelector::deactivateSelected() - { - QStringList activateItems; - - m_gui->activeList->getSelectedItems(activateItems); - m_gui->activeList->removeSelected(); - - m_gui->inactiveList->addItems(activateItems); - - emit ActiveItemsChanged(); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/DoubleListSelector.hxx b/Code/Tools/Standalone/Source/Driller/DoubleListSelector.hxx deleted file mode 100644 index ce733868e9..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DoubleListSelector.hxx +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef AZTOOLSFRAMEWORK_UI_UICORE_DOUBLELISTSELECTOR_H -#define AZTOOLSFRAMEWORK_UI_UICORE_DOUBLELISTSELECTOR_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#pragma once - -#include -#endif - -namespace Ui -{ - class DoubleListSelector; -} - -namespace Driller -{ - class DoubleListSelector - : public QWidget - { - Q_OBJECT - - public: - AZ_CLASS_ALLOCATOR(DoubleListSelector, AZ::SystemAllocator,0); - - explicit DoubleListSelector(QWidget* parent = nullptr); - ~DoubleListSelector(); - - void setItemList(const QStringList& items, bool maintainActiveList = true); - void setActiveItems(const QStringList& items); - - const QStringList& getActiveItems() const; - - void setActiveTitle(const QString& title); - void setInactiveTitle(const QString& title); - - public slots: - void activateSelected(); - void deactivateSelected(); - - signals: - void ActiveItemsChanged(); - - private: - - Ui::DoubleListSelector* m_gui; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/DoubleListSelector.ui b/Code/Tools/Standalone/Source/Driller/DoubleListSelector.ui deleted file mode 100644 index c7d4d74483..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DoubleListSelector.ui +++ /dev/null @@ -1,174 +0,0 @@ - - - DoubleListSelector - - - - 0 - 0 - 527 - 449 - - - - Form - - - - - - - 0 - 0 - - - - Inactive - - - - - - - - - - - - - 50 - 0 - - - - - 75 - 16777215 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 5 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - Qt::Vertical - - - - 50 - 40 - - - - - - - - - 0 - 0 - - - - - 0 - 0 - - - - >> - - - false - - - - - - - - 0 - 0 - - - - - 0 - 0 - - - - << - - - false - - - - - - - Qt::Vertical - - - - 50 - 40 - - - - - - - - - - - - 0 - 0 - - - - Active - - - - - - - - - - - - - Driller::FilteredListView - QWidget -
Source/Driller/FilteredListView.hxx
- 1 -
-
- - -
diff --git a/Code/Tools/Standalone/Source/Driller/DrillerAggregator.cpp b/Code/Tools/Standalone/Source/Driller/DrillerAggregator.cpp deleted file mode 100644 index bd88e8afbb..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerAggregator.cpp +++ /dev/null @@ -1,223 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "DrillerAggregator.hxx" -#include - -#include "DrillerEvent.h" - -#include -#include -#include - -#include "Source/Driller/CSVExportSettings.h" - -#include - -namespace Driller -{ - class AggregatorSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(AggregatorSavedState, "{9AAB69CE-8061-4CB6-8387-DB60FD8DBB75}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(AggregatorSavedState, AZ::SystemAllocator, 0); - AggregatorSavedState() {} - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Version(1) - ; - } - } - }; - - ////////////////////////////////////////////////////////////////////////// - Aggregator::Aggregator(int identity) - : QObject() - , m_identity(identity) - , m_currentEvent(Driller::kInvalidEventIndex) - , m_isCaptureEnabled(true) - { - DrillerMainWindowMessages::Handler::BusConnect(m_identity); - DrillerWorkspaceWindowMessages::Handler::BusConnect(m_identity); - - // subclassed aggregators should work with settingsDocument at this point - // to retrieve state - } - Aggregator::~Aggregator() - { - // subclassed aggregators should work with settingsDocument at this point - // to store the current state so it can be retrieved when constructed again - - DrillerWorkspaceWindowMessages::Handler::BusDisconnect(m_identity); - DrillerMainWindowMessages::Handler::BusDisconnect(m_identity); - - for (EventListType::iterator it = m_events.begin(); it != m_events.end(); ++it) - { - delete *it; - } - } - - void Aggregator::Reset() - { - for (EventListType::iterator it = m_events.begin(); it != m_events.end(); ++it) - { - delete *it; - } - - m_events.clear(); - m_frameToEventIndex.clear(); - m_currentEvent = kInvalidEventIndex; - } - bool Aggregator::IsValid() - { - return m_events.size() > 0; - } - - void Aggregator::AddNewFrame() - { - m_frameToEventIndex.push_back(m_events.size()); - } - - bool Aggregator::DataAtFrame(FrameNumberType frame) - { - return NumOfEventsAtFrame(frame) > 0; - } - - void Aggregator::ExportToCSVRequest(const char* filename, CSVExportSettings* exportSettings) - { - AZ::IO::SystemFile exportFile; - - if (exportFile.Open(filename, AZ::IO::SystemFile::SF_OPEN_CREATE | AZ::IO::SystemFile::SF_OPEN_WRITE_ONLY)) - { - if (exportSettings == nullptr || exportSettings->ShouldExportColumnDescriptors()) - { - ExportColumnDescriptorToCSV(exportFile, exportSettings); - } - - for (DrillerEvent* drillerEvent : m_events) - { - ExportEventToCSV(exportFile, drillerEvent, exportSettings); - } - - exportFile.Close(); - } - else - { - QMessageBox::critical(nullptr, "Error Opening File", QString("Could not open file %1").arg(filename), QMessageBox::Ok); - } - } - - size_t Aggregator::NumOfEventsAtFrame(FrameNumberType frame) const - { - size_t numFrames = m_frameToEventIndex.size(); - if (numFrames == 1) - { - return m_events.size(); - } - - if (frame == numFrames - 1) - { - return m_events.size() - m_frameToEventIndex[frame]; // last frame - } - - if (numFrames >= 2) - { - EventNumberType ftei1 = m_frameToEventIndex[frame + 1]; - EventNumberType ftei0 = m_frameToEventIndex[frame]; - size_t fte = (ftei1 - ftei0); - return fte; - } - - return 0; - } - - QString Aggregator::GetDialogTitle() const - { - return QString("%1 - %2").arg(GetName()).arg(GetInspectionFileName()); - } - - void Aggregator::FrameChanged(FrameNumberType frame) - { - size_t numFrames = m_frameToEventIndex.size(); - if (numFrames) - { - EventNumberType targetEventIndex; - - if (frame == numFrames - 1) - { - targetEventIndex = m_events.size() - 1; - } - else - { - targetEventIndex = m_frameToEventIndex[frame + 1]; - - // the current targetEventIndex belongs to the next frame "frame+1" minus 1 - --targetEventIndex; - } - - EventChanged(targetEventIndex); - } - } - - void Aggregator::EventChanged(EventNumberType eventIndex) - { - if (eventIndex == m_currentEvent) - { - return; - } - - // TODO: If we are at the end and we click at the start, we can start from the START as it's a known state - if (eventIndex > m_currentEvent) - { - // forward (m_currentEvent has already been executed so start currentEvent+1) - for (EventNumberType i = m_currentEvent + 1; i <= eventIndex; ++i) - { - m_events[i]->StepForward(this); - } - } - else if (eventIndex < m_currentEvent) - { - // backward (current event has executed so revert it - for (EventNumberType i = m_currentEvent; i > eventIndex; --i) - { - m_events[i]->StepBackward(this); - } - } - - m_currentEvent = eventIndex; - emit OnDataCurrentEventChanged(); - } - - void Aggregator::ExportColumnDescriptorToCSV(AZ::IO::SystemFile& file, CSVExportSettings* exportSettings) - { - (void)file; - (void)exportSettings; - } - - void Aggregator::ExportEventToCSV(AZ::IO::SystemFile& file, const DrillerEvent* drillerEvent, CSVExportSettings* exportSettings) - { - (void)file; - (void)drillerEvent; - (void)exportSettings; - } - - void Aggregator::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - AggregatorSavedState::Reflect(context); - } - } -} diff --git a/Code/Tools/Standalone/Source/Driller/DrillerAggregator.hxx b/Code/Tools/Standalone/Source/Driller/DrillerAggregator.hxx deleted file mode 100644 index cf370a4571..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerAggregator.hxx +++ /dev/null @@ -1,155 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_DRILLERAGGREGATOR_H -#define DRILLER_DRILLERAGGREGATOR_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include - -#include "DrillerMainWindowMessages.h" -#include "DrillerDataTypes.h" - -#include -#include -#endif - -namespace AZ -{ - namespace IO - { - class SystemFile; - } - class ReflectContext; -} - -namespace Driller -{ - class DrillerEvent; - class AnnotationsProvider; - class CSVExportSettings; - class CustomizeCSVExportWidget; - - class ChannelDataView; - class ChannelConfigurationWidget; - - /* - Aggregator is a pure virtual data source that packages its data - into easily digestible, single frame chunks for external consumption. - It is a pull, not a push, source. - - Separately, aggregators are responsible for handling their own Options and Drill Down displays. - */ - - class Aggregator - : public QObject - , public Driller::DrillerMainWindowMessages::Bus::Handler - , public Driller::DrillerWorkspaceWindowMessages::Bus::Handler - { - Q_OBJECT; - public: - typedef AZStd::vector EventListType; - typedef AZStd::vector FrameToEventIndexType; - - Aggregator(int identity); - virtual ~Aggregator(); - // MainWindow Bus Commands - - virtual AZ::Crc32 GetChannelId() const { return 0; } - virtual AZ::u32 GetDrillerId() const { return 0; } - virtual AZ::Debug::DrillerHandlerParser* GetDrillerDataParser() { return nullptr; } - virtual void EnableCapture(bool enabled) { m_isCaptureEnabled = enabled; } - bool IsCaptureEnabled() const { return m_isCaptureEnabled; } - int GetIdentity() const { return m_identity; } - - virtual bool CanExportToCSV() const { return false; } - virtual CustomizeCSVExportWidget* CreateCSVExportCustomizationWidget() { return nullptr; } - - virtual bool HasConfigurations() const { return false; } - virtual ChannelConfigurationWidget* CreateConfigurationWidget() { return nullptr; } - virtual void OnConfigurationChanged() { } - - virtual void AnnotateChannelView(ChannelDataView* dataView) { (void)dataView; } - virtual void RemoveChannelAnnotation(ChannelDataView* dataView) { (void)dataView; } - - /// reset for another data run - virtual void Reset(); - virtual bool IsValid(); - - /// Make a game frame. - virtual void AddNewFrame(); - /// Adds new event. We can have many events (or none) for each game frame. - void AddEvent(DrillerEvent* event) { m_events.push_back(event); emit OnDataAddEvent();} - void FinalizeEvent() { emit OnEventFinalized(m_events.back()); } - EventListType& GetEvents() { return m_events; } - const EventListType& GetEvents() const { return m_events; } - size_t NumOfEventsAtFrame(FrameNumberType frame) const; - EventNumberType GetCurrentEvent() const { return m_currentEvent; } - - EventNumberType GetFirstIndexAtFrame(FrameNumberType frame ) const { return m_frameToEventIndex[frame]; } - - size_t GetFrameCount() const { return m_frameToEventIndex.size(); } - - // ----- annotation functionality ---- - - // emit all annotations that match the provider's filter, given the start and end frame: - virtual void EmitAllAnnotationsForFrameRange( FrameNumberType startFrameInclusive, FrameNumberType endFrameInclusive , AnnotationsProvider* ptrProvider) { (void)startFrameInclusive; (void)endFrameInclusive; (void)ptrProvider; } - - // emit all channels that you are aware of existing within that frame range (You may emit duplicate channels, they will be ignored) - virtual void EmitAnnotationChannelsForFrameRange( FrameNumberType startFrameInclusive, FrameNumberType endFrameInclusive , AnnotationsProvider* ptrProvider) { (void)startFrameInclusive; (void)endFrameInclusive; (void)ptrProvider; } - - QString GetDialogTitle() const; - - signals: - - void NormalizedRangeChanged(); - - void OnDataCurrentEventChanged(); - void OnDataAddEvent(); - void OnEventFinalized(DrillerEvent* event); - - QString GetInspectionFileName() const; - - public slots: - // Queries - virtual bool DataAtFrame(FrameNumberType frame ); - virtual float ValueAtFrame(FrameNumberType frame ) = 0; - virtual QColor GetColor() const = 0; - virtual QString GetChannelName() const = 0; - virtual QString GetName() const = 0; - virtual QString GetDescription() const = 0; - virtual QString GetToolTip() const = 0; - virtual QString GetDrillDownIcon() { return ":/general/callstack"; } - virtual AZ::Uuid GetID() const = 0; - virtual QWidget* DrillDownRequest(FrameNumberType atFrame) = 0; - virtual void OptionsRequest() = 0; - - void ExportToCSVRequest(const char* filename, CSVExportSettings* exportSettings); - - protected: - Aggregator(const Aggregator&) = delete; - virtual void FrameChanged(FrameNumberType frame); - virtual void EventChanged(EventNumberType eventIndex); - - virtual void ExportColumnDescriptorToCSV(AZ::IO::SystemFile& file, CSVExportSettings* exportSettings); - virtual void ExportEventToCSV(AZ::IO::SystemFile& file, const DrillerEvent* drillerEvent, CSVExportSettings* exportSettings); - - EventNumberType m_currentEvent; ///< Current event points last executed event - EventListType m_events; - FrameToEventIndexType m_frameToEventIndex; - bool m_isCaptureEnabled; - int m_identity; - - public: - static void Reflect(AZ::ReflectContext* context); - }; -} - -#endif //DRILLER_DRILLERAGGREGATOR_H diff --git a/Code/Tools/Standalone/Source/Driller/DrillerAggregatorOptions.hxx b/Code/Tools/Standalone/Source/Driller/DrillerAggregatorOptions.hxx deleted file mode 100644 index 966f0fbcd6..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerAggregatorOptions.hxx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_DRILLERAGGREGATOR_OPTIONS_H -#define DRILLER_DRILLERAGGREGATOR_OPTIONS_H - -#include "QtGui/qcolor.h" - -namespace Driller -{ - class Aggregator; - - class AggregatorOptions - { - public: - - AggregatorOptions( Aggregator *owner ) - : m_Owner(owner) - { - } - virtual ~AggregatorOptions() - { - } - - Aggregator *m_Owner; - }; -} - -#endif //DRILLER_DRILLERAGGREGATOR_OPTIONS_H diff --git a/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.cpp b/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.cpp deleted file mode 100644 index 7f39136649..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.cpp +++ /dev/null @@ -1,1952 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "DrillerCaptureWindow.hxx" -#include - -#include "DrillerMainWindowMessages.h" -#include "DrillerAggregator.hxx" -#include "ChannelControl.hxx" -#include "ChannelProfilerWidget.hxx" -#include "CombinedEventsControl.hxx" -#include "DrillerDataContainer.h" -#include "DrillerMainWindow.hxx" -#include "DrillerOperationTelemetryEvent.h" -#include "Workspaces/Workspace.h" - -#include -#include - -#include -#include -#include -#include - -#include "QtGui/QPalette" -#include "Annotations/AnnotationHeaderView.hxx" -#include "Annotations/ConfigureAnnotationsWindow.hxx" - -#include - -#include - -#include -#include -#include -#include -#include -#include -#include -#include - -void initSharedResources() -{ - Q_INIT_RESOURCE(sharedResources); -} - -namespace -{ - const char* drillerDebugName = "Driller"; - const char* drillerInfoName = "Driller"; - const char* baseTempFileName = "drillercapture.drl"; -} - -namespace Driller -{ - class DrillerCaptureWindowSavedState - : public AzToolsFramework::MainWindowSavedState - { - public: - AZ_RTTI(DrillerCaptureWindowSavedState, "{19721873-2FB0-4B5B-BCFC-C774FEC7687A}", AzToolsFramework::MainWindowSavedState); - AZ_CLASS_ALLOCATOR(DrillerCaptureWindowSavedState, AZ::SystemAllocator, 0); - - AZStd::list m_ChannelIDs; - int m_fpsValue; - FrameNumberType m_scrubberCurrentFrame; - EventNumberType m_scrubberCurrentEvent; - FrameNumberType m_playbackLoopBegin; - FrameNumberType m_playbackLoopEnd; - AZStd::string m_priorSaveFolder; - - DrillerCaptureWindowSavedState() - : m_fpsValue(60) - , m_scrubberCurrentFrame(0) - , m_scrubberCurrentEvent(0) - , m_playbackLoopBegin(0) - , m_playbackLoopEnd(0) - {} - - void Init(const QByteArray& windowState, const QByteArray& windowGeom) - { - AzToolsFramework::MainWindowSavedState::Init(windowState, windowGeom); - } - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_ChannelIDs", &DrillerCaptureWindowSavedState::m_ChannelIDs) - ->Field("m_fpsValue", &DrillerCaptureWindowSavedState::m_fpsValue) - ->Field("m_scrubberCurrentFrame", &DrillerCaptureWindowSavedState::m_scrubberCurrentFrame) - ->Field("m_scrubberCurrentEvent", &DrillerCaptureWindowSavedState::m_scrubberCurrentEvent) - ->Field("m_playbackLoopBegin", &DrillerCaptureWindowSavedState::m_playbackLoopBegin) - ->Field("m_playbackLoopEnd", &DrillerCaptureWindowSavedState::m_playbackLoopEnd) - ->Field("m_priorSaveFolder", &DrillerCaptureWindowSavedState::m_priorSaveFolder) - ->Version(8); - } - } - }; - - // WORKSPACES are files loaded and stored independent of the global application - // designed to be used for DRL data specific view settings and to pass around - class DrillerCaptureWindowWorkspace - : public AZ::UserSettings - { - public: - AZ_RTTI(DrillerCaptureWindowWorkspace, "{EB67D4B6-41F5-4CED-85F1-E98586036BC6}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(DrillerCaptureWindowWorkspace, AZ::SystemAllocator, 0); - - DrillerCaptureWindowWorkspace() {} - - AZStd::list m_ChannelIDs; - AZStd::string m_matchingDataFileName; - FrameNumberType m_scrubberCurrentFrame; - FrameNumberType m_frameRangeBegin; - FrameNumberType m_frameRangeEnd; - FrameNumberType m_visibleFrames; - int m_sliderPosition; - EventNumberType m_scrubberCurrentEvent; - - FrameNumberType m_playbackLoopBegin; - FrameNumberType m_playbackLoopEnd; - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_ChannelIDs", &DrillerCaptureWindowWorkspace::m_ChannelIDs) - ->Field("m_matchingDataFileName", &DrillerCaptureWindowWorkspace::m_matchingDataFileName) - ->Field("m_scrubberCurrentFrame", &DrillerCaptureWindowWorkspace::m_scrubberCurrentFrame) - ->Field("m_frameRangeBegin", &DrillerCaptureWindowWorkspace::m_frameRangeBegin) - ->Field("m_frameRangeEnd", &DrillerCaptureWindowWorkspace::m_frameRangeEnd) - ->Field("m_visibleFrames", &DrillerCaptureWindowWorkspace::m_visibleFrames) - ->Field("m_playbackLoopBegin", &DrillerCaptureWindowWorkspace::m_playbackLoopBegin) - ->Field("m_playbackLoopEnd", &DrillerCaptureWindowWorkspace::m_playbackLoopEnd) - ->Field("m_sliderPosition", &DrillerCaptureWindowWorkspace::m_sliderPosition) - ->Field("m_scrubberCurrentEvent", &DrillerCaptureWindowWorkspace::m_scrubberCurrentEvent) - ->Version(6); - } - } - }; -} - -namespace Driller -{ - extern AZ::Uuid ContextID; - - const int DrillerCaptureWindow::s_availableFrameQuantities[] = { 30, 60, 120, 240, 480, 960, 0 }; - - ////////////////////////////////////////////////////////////////////////// - //DrillerCaptureWindow - DrillerCaptureWindow::DrillerCaptureWindow(CaptureMode captureMode, int identity, QWidget* parent, Qt::WindowFlags flags) - : QDockWidget(parent, flags) - , m_captureMode(captureMode) - , m_identity(identity) - , m_windowStateCRC(0) - { - initSharedResources(); - - AZStd::string windowStateStr = AZStd::string::format("DRILLER CAPTURE WINDOW STATE %i", m_identity); - m_windowStateCRC = AZ::Crc32(windowStateStr.c_str()); - - m_captureIsDirty = false; - - m_playbackIsActive = false; - m_draggingPlaybackLoopBegin = false; - m_draggingPlaybackLoopEnd = false; - m_draggingAnything = false; - m_manipulatingScrollBar = false; - m_frameRangeEnd = 0; - m_frameRangeBegin = 0; - m_ptrConfigureAnnotationsWindow = NULL; - m_isLoadingFile = false; - m_TargetConnected = false; - m_captureIsDirty = false; - m_bForceNextScrub = true; - m_captureId = 0; - - m_gui = azcreate(Ui::DrillerCaptureWindow, ()); - m_gui->setupUi(this); - - if (IsInCaptureMode(CaptureMode::Inspecting)) - { - setFeatures(QDockWidget::DockWidgetClosable); - } - - m_gui->combinedEventsWidget->SetIdentity(m_identity); - - // Removing the title bar, since it's meaningless for us. - setTitleBarWidget(new QWidget()); - - connect(m_gui->playButton, SIGNAL(toggled(bool)), this, SLOT(OnPlayToggled(bool))); - - if (IsInLiveMode()) - { - connect(m_gui->captureButton, SIGNAL(toggled(bool)), this, SLOT(OnCaptureToggled(bool))); - } - else - { - m_gui->captureButton->setDisabled(true); - } - - connect(m_gui->frameScrubberBox, SIGNAL(valueChanged(int)), this, SLOT(OnFrameScrubberboxChanged(int))); - connect(m_gui->controlScrollBar, SIGNAL(sliderPressed()), this, SLOT(OnSliderPressed())); - connect(m_gui->controlScrollBar, SIGNAL(sliderMoved(int)), this, SLOT(OnNewSliderValue(int))); - connect(m_gui->controlScrollBar, SIGNAL(valueChanged(int)), this, SLOT(OnNewSliderValue(int))); - - QMenu* quantMenu = new QMenu(this); - - QSignalMapper* ptrMapper = new QSignalMapper(this); - int numQuantsAvailable = sizeof(s_availableFrameQuantities) / sizeof(int); - for (int idx = 0; idx < numQuantsAvailable; ++idx) - { - int thisQuant = s_availableFrameQuantities[idx]; - - QString label = thisQuant ? tr("%1 frames").arg(s_availableFrameQuantities[idx]) : tr("All frames"); - - // connect to mapper: - QAction* act = new QAction(label, this); - connect(act, SIGNAL(triggered()), ptrMapper, SLOT(map())); - ptrMapper->setMapping(act, thisQuant); - quantMenu->addAction(act); - } - connect(ptrMapper, SIGNAL(mapped(int)), this, SLOT(OnQuantMenuFinal(int))); - - m_gui->quantityButton->setText("120 frames"); - m_gui->quantityButton->setMenu(quantMenu); - - m_gui->scrollArea->setBackgroundRole(QPalette::Dark); - DrillerNetworkMessages::Handler::BusConnect(m_identity); - - m_visibleFrames = 120; - - QString tmpCapturePath = PrepTempFile(baseTempFileName); - m_data = aznew DrillerDataContainer(m_identity, tmpCapturePath.toUtf8().data()); - - connect(this, SIGNAL(ScrubberFrameUpdate(FrameNumberType)), m_gui->combinedEventsWidget, SLOT(SetScrubberFrame(FrameNumberType))); - - m_ptrAnnotationsHeaderView = aznew AnnotationHeaderView(&m_AnnotationProvider, this); - m_gui->channelLayout->addWidget(m_ptrAnnotationsHeaderView); - - connect(m_ptrAnnotationsHeaderView, SIGNAL(OnOptionsClick()), this, SLOT(OnAnnotationOptionsClick())); - connect(m_ptrAnnotationsHeaderView, SIGNAL(InformOfMouseOverAnnotation(const Annotation&)), this, SLOT(InformOfMouseOverAnnotation(const Annotation&))); - connect(m_ptrAnnotationsHeaderView, SIGNAL(InformOfClickAnnotation(const Annotation&)), this, SLOT(InformOfClickAnnotation(const Annotation&))); - connect(&m_AnnotationProvider, SIGNAL(SelectedAnnotationsChanged()), this, SLOT(OnSelectedAnnotationChannelsChanged())); - - // button state maintenance courtesy of the TargetManagerClient bus message(s) we handle - m_gui->captureButton->setEnabled(false); - - if (IsInLiveMode()) - { - AzFramework::TargetManagerClient::Bus::Handler::BusConnect(); - } - - StateReset(); - - m_gui->combinedEventsWidget->SetAnnotationsProvider(&m_AnnotationProvider); - - connect(m_gui->combinedEventsWidget->m_annotationHeaderView, SIGNAL(InformOfMouseOverAnnotation(const Annotation&)), this, SLOT(InformOfMouseOverAnnotation(const Annotation&))); - connect(m_gui->combinedEventsWidget->m_annotationHeaderView, SIGNAL(InformOfClickAnnotation(const Annotation&)), this, SLOT(InformOfClickAnnotation(const Annotation&))); - connect(this, SIGNAL(ScrubberFrameUpdate(FrameNumberType)), m_gui->combinedEventsWidget->m_annotationHeaderView, SLOT(OnScrubberFrameUpdate(FrameNumberType))); - connect(m_gui->actionClose, SIGNAL(triggered()), this, SLOT(OnCloseFile())); - - connect(m_gui->combinedEventsWidget, SIGNAL(EventRequestEventFocus(EventNumberType)), this, SLOT(EventRequestEventFocus(EventNumberType))); - - UpdateLiveControls(); - emit CaptureWindowSetToLive(IsInLiveMode()); - - RestoreWindowState(); - QTimer::singleShot(0, this, SLOT(OnUpdateScrollSize())); - - DrillerCaptureWindowRequestBus::Handler::BusConnect(m_identity); - } - - DrillerCaptureWindow::~DrillerCaptureWindow(void) - { - DrillerCaptureWindowRequestBus::Handler::BusDisconnect(m_identity); - DrillerNetworkMessages::Handler::BusDisconnect(m_identity); - AzFramework::TargetManagerClient::Bus::Handler::BusDisconnect(); - - delete m_data; - azdestroy(m_gui); - } - - bool DrillerCaptureWindow::event(QEvent* evt) - { - if (evt->type() == QEvent::WindowActivate) - { - emit CaptureWindowSetToLive(static_cast(IsInLiveMode())); - } - - // parent class - return QDockWidget::event(evt); - } - - ////////////////////////////////////////////////////////////////////////// - // internal workings - void DrillerCaptureWindow::StateReset() - { - if (m_visibleFrames == m_frameRangeEnd - m_frameRangeBegin + 1) - { - // full range was visible. - OnQuantMenuFinal(120); - } - - OnPlayToggled(false); - SetPlaybackLoopBegin(0); - SetPlaybackLoopEnd(0); - SetFrameRangeBegin(0); - SetFrameRangeEnd(0); - SetScrubberFrame(0); - m_bForceNextScrub = true; - - for (auto iter = m_channels.begin(); iter != m_channels.end(); ++iter) - { - (*iter)->SetEndFrame(0); - } - - m_ptrAnnotationsHeaderView->SetEndFrame(0); - } - - void DrillerCaptureWindow::UpdateLiveControls() - { - bool isViewingStoredData = IsInCaptureMode(CaptureMode::Inspecting); - - // these overlapping frames must be both hidden and then one made visible - // otherwise the containing window is forced wide enough to support both - // which overrides previous sizes and leaves a ton of dead space behind - m_gui->targetFrame->setVisible(!isViewingStoredData); - - m_gui->playButton->setVisible(isViewingStoredData); - m_gui->frameFPS->setVisible(isViewingStoredData); - m_gui->frameScrubberBox->setEnabled(isViewingStoredData); - - // For now, we're not sure if we want to keep this, or expand on it - // going ahead. So for now we'll just hide it. - m_gui->combinedEventsWidget->setVisible(false); - - if (IsInCaptureMode(CaptureMode::Configuration)) - { - m_gui->frame->setVisible(false); - m_gui->quantityButton->setVisible(false); - } - else - { - m_gui->frame->setVisible(true); - m_gui->quantityButton->setVisible(true); - } - - emit CaptureWindowSetToLive(!isViewingStoredData); - } - - void DrillerCaptureWindow::SetCaptureMode(CaptureMode captureMode) - { - if (m_captureMode != captureMode) - { - m_captureMode = captureMode; - emit OnCaptureModeChange(m_captureMode); - } - } - - void DrillerCaptureWindow::ResetCaptureControls() - { - // Reset the state of the UI Controls - m_currentDataFilename = ""; - SetCaptureMode(CaptureMode::Configuration); - OnCloseFile(); - m_data->CloseCaptureData(); - m_data->CreateAggregators(); - UpdateLiveControls(); - } - - bool DrillerCaptureWindow::IsInLiveMode() const - { - return IsInCaptureMode(CaptureMode::Capturing) || IsInCaptureMode(CaptureMode::Configuration); - } - - bool DrillerCaptureWindow::IsInCaptureMode(CaptureMode captureMode) const - { - return m_captureMode == captureMode; - } - - void DrillerCaptureWindow::ClearExistingChannels() - { - ClearChannelDisplay(true); - } - - void DrillerCaptureWindow::ClearChannelDisplay(bool withDeletion) - { - if (withDeletion) - { - m_gui->combinedEventsWidget->ClearAggregatorList(); - - for (auto iter = m_channels.begin(); iter != m_channels.end(); ++iter) - { - m_gui->channelLayout->removeWidget(*iter); - delete *iter; - } - m_channels.clear(); - } - else - { - for (auto iter = m_channels.begin(); iter != m_channels.end(); ++iter) - { - m_gui->channelLayout->removeWidget(*iter); - } - } - - // layouts take one message process to update their sizes, we need to queue a refresh of our scroll area at the end of the event queue - // so that the sizeHint() will be correct. - QTimer::singleShot(0, this, SLOT(OnUpdateScrollSize())); - } - - void DrillerCaptureWindow::SortChannels() - { - SortedChannels temp; - - // two passes, first pushes active channels and second pushes the remaining inactive channels - // this maintains the relative order of the list within categories to avoid surprises - for (ChannelControl* channelControl : m_channels) - { - if (channelControl->IsActive()) - { - temp.push_back(channelControl); - } - } - - for (ChannelControl* channelControl : m_channels) - { - if (!channelControl->IsActive()) - { - channelControl->OnContractedToggled(false); - temp.push_back(channelControl); - } - } - - m_channels.clear(); - m_channels = temp; - temp.clear(); - } - - void DrillerCaptureWindow::PopulateChannelDisplay() - { - for (auto iter = m_channels.begin(); iter != m_channels.end(); ++iter) - { - m_gui->channelLayout->addWidget(*iter); - (*iter)->SetDataPointsInView(m_visibleFrames); - } - // layouts take one message process to update their sizes, we need to queue a refresh of our scroll area at the end of the event queue - // so that the sizeHint() will be correct. - QTimer::singleShot(0, this, SLOT(OnUpdateScrollSize())); - } - - void DrillerCaptureWindow::OnUpdateScrollSize() - { - // this just tells the scroll area to tell its layout that it has a new sizehint - m_gui->scrollArea->updateGeometry(); - } - - ChannelControl* DrillerCaptureWindow::FindChannelControl(Aggregator* aggregator) - { - ChannelControl* retVal = nullptr; - - QString channelName = aggregator->GetChannelName(); - AZ::Crc32 groupCRC = AZ::Crc32(channelName.toStdString().c_str()); - - for (ChannelControl* channelControl : m_channels) - { - if (groupCRC == channelControl->GetChannelId()) - { - retVal = channelControl; - break; - } - } - - if (retVal == nullptr) - { - retVal = aznew ChannelControl(channelName.toStdString().c_str(), &m_AnnotationProvider); - - if (retVal) - { - m_channels.push_back(retVal); - } - } - - return retVal; - } - - void DrillerCaptureWindow::AddChannelDisplay(ChannelControl* cc) - { - m_gui->channelLayout->addWidget(cc); - - // layouts take one message process to update their sizes, we need to queue a refresh of our scroll area at the end of the event queue - // so that the sizeHint() will be correct. - QTimer::singleShot(0, this, SLOT(OnUpdateScrollSize())); - } - - ////////////////////////////////////////////////////////////////////////// - // Driller Network Messages - void DrillerCaptureWindow::ConnectedToNetwork() - { - if (m_isLoadingFile) - { - return; - } - - if (IsInCaptureMode(CaptureMode::Inspecting)) - { - return; - } - - StateReset(); - } - - void DrillerCaptureWindow::ConnectChannelControl(ChannelControl* dc) - { - if (!dc->IsSetup()) - { - connect(dc, SIGNAL(GetInspectionFileName()), this, SLOT(GetOpenFileName())); - connect(dc, SIGNAL(RequestScrollToFrame(FrameNumberType)), this, SLOT(HandleScrollToFrameRequest(FrameNumberType))); - connect(dc, SIGNAL(InformOfMouseClick(Qt::MouseButton, FrameNumberType, FrameNumberType, int)), this, SLOT(OnChannelControlMouseDown(Qt::MouseButton, FrameNumberType, FrameNumberType, int))); - connect(dc, SIGNAL(InformOfMouseMove(FrameNumberType, FrameNumberType, int)), this, SLOT(OnChannelControlMouseMove(FrameNumberType, FrameNumberType, int))); - connect(dc, SIGNAL(InformOfMouseRelease(Qt::MouseButton, FrameNumberType, FrameNumberType, int)), this, SLOT(OnChannelControlMouseUp(Qt::MouseButton, FrameNumberType, FrameNumberType, int))); - connect(dc, SIGNAL(InformOfMouseWheel(FrameNumberType, int, FrameNumberType, int)), this, SLOT(OnChannelControlMouseWheel(FrameNumberType, int, FrameNumberType, int))); - connect(dc, SIGNAL(ExpandedContracted()), this, SLOT(OnUpdateScrollSize())); - - connect(this, SIGNAL(ScrubberFrameUpdate(FrameNumberType)), dc, SLOT(SetScrubberFrame(FrameNumberType))); - connect(this, SIGNAL(ShowYourself()), dc, SLOT(OnShowCommand())); - connect(this, SIGNAL(HideYourself()), dc, SLOT(OnHideCommand())); - connect(this, SIGNAL(OnCaptureModeChange(CaptureMode)), dc, SLOT(SetCaptureMode(CaptureMode))); - - dc->SetCaptureMode(m_captureMode); - - dc->SignalSetup(); - } - } - - // target that you're connected to knows what aggregators are ready. - void DrillerCaptureWindow::NewAggregatorsAvailable() - { - if (m_isLoadingFile) - { - return; - } - - if (IsInCaptureMode(CaptureMode::Inspecting)) - { - return; - } - - // otherwise, make em, if we're live. - m_data->CreateAggregators(); - } - - // incoming driller bus message - void DrillerCaptureWindow::NewAggregatorList(AggregatorList& theList) - { - ClearExistingChannels(); - - if (theList.size()) - { - for (AggregatorList::iterator iter = theList.begin(); iter != theList.end(); ++iter) - { - ChannelControl* channelControl = FindChannelControl((*iter)); - ConnectChannelControl(channelControl); - - ChannelProfilerWidget* profilerWidget = channelControl->AddAggregator((*iter)); - - if (profilerWidget) - { - // defaults to active - // restore previous inactive state if GUIDs match - bool wasInactive = (m_inactiveChannels.find(profilerWidget->GetID()) != m_inactiveChannels.end()); - profilerWidget->SetIsActive(!wasInactive); - } - } - - PopulateChannelDisplay(); - - m_gui->combinedEventsWidget->AddAggregatorList(theList); - m_gui->captureButton->setEnabled(true); - } - } - - void DrillerCaptureWindow::AddAggregator(Aggregator& theAggregator) - { - ChannelControl* channelControl = FindChannelControl(&theAggregator); - - if (!channelControl->IsSetup()) - { - ConnectChannelControl(channelControl); - AddChannelDisplay(channelControl); - } - - ChannelProfilerWidget* profilerWidget = channelControl->AddAggregator(&theAggregator); - - if (profilerWidget) - { - // defaults to active - // restore previous inactive state if GUIDs match - int wasInactive = (m_inactiveChannels.find(profilerWidget->GetID()) != m_inactiveChannels.end()); - profilerWidget->SetIsActive(!wasInactive); - } - - m_gui->captureButton->setEnabled(true); - m_gui->combinedEventsWidget->AddAggregator(theAggregator); - } - - void DrillerCaptureWindow::DiscardAggregators() - { - ClearExistingChannels(); - m_gui->captureButton->setEnabled(false); - } - - // incoming driller bus message - void DrillerCaptureWindow::DisconnectedFromNetwork() - { - //todo: phughes message the user or something - } - - void DrillerCaptureWindow::UpdateEndFrameInControls() - { - if (!m_isLoadingFile) - { - for (auto iter = m_channels.begin(); iter != m_channels.end(); ++iter) - { - (*iter)->SetEndFrame(m_frameRangeEnd); - } - m_ptrAnnotationsHeaderView->SetEndFrame(m_frameRangeEnd); - } - } - - QString DrillerCaptureWindow::GetOpenFileName() const - { - AZ_Error("DrillerCaptureWindow", IsInCaptureMode(CaptureMode::Inspecting), "Trying to get file name in non-inspected case"); - return m_currentDataFilename; - } - - // incoming driller bus message - void DrillerCaptureWindow::EndFrame(FrameNumberType frame) - { - // if we're loading a file then we do not scrub these live: - SetFrameRangeEnd(frame); - UpdateEndFrameInControls(); - } - - // incoming driller bus message - void DrillerCaptureWindow::ScrubberFrame(FrameNumberType frame) - { - emit ScrubberFrameUpdate(frame); - m_gui->frameScrubberBox->setValue(static_cast(frame)); - } - - ////////////////////////////////////////////////////////////////////////// - // Data Viewer Request Messages - void DrillerCaptureWindow::EventRequestEventFocus(EventNumberType eventIdx) - { - m_scrubberCurrentEvent = eventIdx; - - EBUS_EVENT_ID(m_identity, Driller::DrillerEventWindowMessages::Bus, EventFocusChanged, eventIdx); - } - - void DrillerCaptureWindow::SetScrubberEvent(EventNumberType eventIdx) - { - EventRequestEventFocus(eventIdx); - } - - ////////////////////////////////////////////////////////////////////////// - // GUI Messages - void DrillerCaptureWindow::OnCaptureToggled(bool toggleState) - { - DrillerOperationTelemetryEvent captureEvent; - - if (toggleState) - { - captureEvent.SetAttribute("StartDataCapture", ""); - captureEvent.SetMetric("CaptureId", m_captureId); - - QString activeChannels; - - bool appendComma = false; - - for (ChannelControl* channel : m_channels) - { - const AZStd::list< ChannelProfilerWidget* >& profilers = channel->GetProfilers(); - - for (ChannelProfilerWidget* profiler : profilers) - { - if (profiler->IsActive()) - { - if (appendComma) - { - activeChannels.append(","); - } - - appendComma = true; - activeChannels.append(profiler->GetName()); - } - } - } - - captureEvent.SetAttribute("ActiveChannels", activeChannels.toStdString().c_str()); - - AZ_TracePrintf(drillerInfoName, "Capture ON, starting a new data session\n"); - OnPlayToggled(false); - m_gui->captureButton->setText(tr("Stop Capture")); - m_gui->captureButton->setToolTip(tr("Stop Capturing Driller Data")); - StateReset(); - - SetCaptureMode(CaptureMode::Capturing); - - m_AnnotationProvider.Clear(); - - ClearChannelDisplay(false); - SortChannels(); - PopulateChannelDisplay(); - - if (m_data) - { - m_data->StartDrilling(); - } - - SetCaptureDirty(true); - UpdateLiveControls(); - } - else - { - captureEvent.SetAttribute("StopDataCapture", ""); - captureEvent.SetMetric("CaptureId", m_captureId); - - ++m_captureId; - - AZ_TracePrintf(drillerInfoName, "Capture OFF, freezing data for analysis\n"); - m_gui->captureButton->setText(tr("Capture")); - m_gui->captureButton->setToolTip(tr("Begin Capturing Driller Data")); - - bool wascapturing = IsInCaptureMode(CaptureMode::Capturing); - - CaptureMode::Inspecting; - emit OnCaptureModeChange(m_captureMode); - - if (m_data) - { - m_data->StopDrilling(); - } - - if (wascapturing) - { - OnSaveDrillerFile(); - ScrubberToEnd(); - SetFrameRangeEnd(0); - // counting on the OnSave to recognize the TMP file from the capture and copy appropriately - // and setting it to our currently active data file - } - } - - captureEvent.Log(); - - update(); - } - - void DrillerCaptureWindow::SetCaptureDirty(bool isDirty) - { - m_captureIsDirty = isDirty; - } - - void DrillerCaptureWindow::OnMenuCloseCurrentWindow() - { - AZ_TracePrintf(drillerDebugName, "Close requested\n"); - - OnCaptureToggled(false); - OnCloseFile(); - - EBUS_EVENT(AzToolsFramework::FrameworkMessages::Bus, RequestMainWindowClose, ContextID); - } - - void DrillerCaptureWindow::OnOpen() - { - AZ_TracePrintf(drillerDebugName, "Open requested\n"); - - this->show(); - emit ShowYourself(); - } - - void DrillerCaptureWindow::OnClose() - { - OnCloseFile(); - } - - void DrillerCaptureWindow::OnCloseFile() - { - SaveWindowState(); - - if (IsInCaptureMode(CaptureMode::Inspecting)) - { - AZ_TracePrintf(drillerDebugName, "Close requested of file\n"); - m_data->CloseCaptureData(); - this->close(); - deleteLater(); - } - } - - void DrillerCaptureWindow::OnContractAllChannels() - { - for (auto iter = m_channels.begin(); iter != m_channels.end(); ++iter) - { - (*iter)->OnContractedToggled(true); - } - } - - void DrillerCaptureWindow::OnExpandAllChannels() - { - for (auto iter = m_channels.begin(); iter != m_channels.end(); ++iter) - { - (*iter)->OnContractedToggled(false); - } - } - - void DrillerCaptureWindow::OnDisableAllChannels() - { - for (ChannelControl* channelControl : m_channels) - { - channelControl->SetAllProfilersEnabled(false); - } - } - void DrillerCaptureWindow::OnEnableAllChannels() - { - for (ChannelControl* channelControl : m_channels) - { - channelControl->SetAllProfilersEnabled(true); - } - } - - void DrillerCaptureWindow::OnToBegin() - { - ScrubberToBegin(); - m_gui->controlScrollBar->setValue(m_frameRangeBegin); - } - - void DrillerCaptureWindow::OnToEnd() - { - // set the scroll view to scroll to the end: - ScrubberToEnd(); - } - - void DrillerCaptureWindow::OnPlayToggled(bool toggleState) - { - if (toggleState) - { - m_gui->playButton->setText(tr("Stop")); - m_gui->playButton->setToolTip(tr("Stop recorded session playback")); - m_playbackIsActive = true; - OnCaptureToggled(false); - int msec = 1000 / m_gui->fpsBox->value(); - QTimer::singleShot(msec, this, SLOT(PlaybackTick())); - } - else - { - m_gui->playButton->setText(tr("Play")); - m_gui->playButton->setToolTip(tr("Playback recorded session")); - m_gui->playButton->blockSignals(true); - m_gui->playButton->setChecked(false); - m_gui->playButton->blockSignals(false); - m_playbackIsActive = false; - } - } - - void DrillerCaptureWindow::PlaybackTick() - { - if (m_playbackIsActive) - { - if (m_scrubberCurrentFrame >= m_playbackLoopEnd) - { - SetScrubberFrame(m_playbackLoopBegin); - } - else if (m_scrubberCurrentFrame < m_playbackLoopBegin) - { - SetScrubberFrame(m_playbackLoopBegin); - } - else - { - SetScrubberFrame(m_scrubberCurrentFrame + 1); - } - - FocusScrollbar(m_scrubberCurrentFrame - (m_visibleFrames / 2)); - - int msec = 1000 / m_gui->fpsBox->value(); - QTimer::singleShot(msec, this, SLOT(PlaybackTick())); - } - } - - void DrillerCaptureWindow::OnSliderPressed() - { - if (m_playbackIsActive) - { - OnPlayToggled(false); - } - } - - void DrillerCaptureWindow::OnNewSliderValue(int newValue) - { - if (!m_manipulatingScrollBar && m_playbackIsActive) - { - OnPlayToggled(false); - } - - for (auto iter = m_channels.begin(); iter != m_channels.end(); ++iter) - { - (*iter)->SetSliderOffset(newValue); - } - - m_ptrAnnotationsHeaderView->SetSliderOffset(newValue); - } - - void DrillerCaptureWindow::OnFrameScrubberboxChanged(int newValue) - { - SetScrubberFrame(newValue); - } - - void DrillerCaptureWindow::OnQuantMenuFinal(int range) - { - FrameNumberType frameRange = static_cast(range); - - if (frameRange <= 1) - { - frameRange = m_frameRangeEnd - m_frameRangeBegin + 1; - } - m_visibleFrames = frameRange; - - m_gui->quantityButton->setText(QString("%1 frames").arg(frameRange)); - - for (auto iter = m_channels.begin(); iter != m_channels.end(); ++iter) - { - (*iter)->SetDataPointsInView(frameRange); - } - m_ptrAnnotationsHeaderView->SetDataPointsInView(frameRange); - } - - void DrillerCaptureWindow::FocusScrollbar(FrameNumberType focusFrame) - { - m_manipulatingScrollBar = true; - - // range of motion for the scrollbar covers the off-window area, not the total - FrameNumberType range = m_frameRangeEnd - m_visibleFrames + 1; - range = range >= m_frameRangeBegin ? range : m_frameRangeBegin; - - m_gui->controlScrollBar->setRange(m_frameRangeBegin, range); - - FrameNumberType curVal = focusFrame < 0 ? 0 : focusFrame; - curVal = focusFrame > range ? range : focusFrame; - m_gui->controlScrollBar->setValue(curVal); - - m_manipulatingScrollBar = false; - } - - ////////////////////////////////////////////////////////////////////////// - // State Control and Maintenance - void DrillerCaptureWindow::ScrubberToBegin() - { - SetScrubberFrame(GetFrameRangeBegin()); - } - - void DrillerCaptureWindow::ScrubberToEnd() - { - SetScrubberFrame(GetFrameRangeEnd()); - } - - void DrillerCaptureWindow::HandleScrollToFrameRequest(FrameNumberType frame) - { - FocusScrollbar(frame); - } - - void DrillerCaptureWindow::OnChannelControlMouseDown(Qt::MouseButton whichButton, FrameNumberType frame, FrameNumberType range, int modifiers) - { - // If we aren't inspecting data, we don't to mess around with anything. - if (!IsInCaptureMode(CaptureMode::Inspecting)) - { - return; - } - - if (modifiers & Qt::AltModifier) - { - if (whichButton == Qt::LeftButton) - { - SetPlaybackLoopBegin(frame); - } - if (whichButton == Qt::RightButton) - { - SetPlaybackLoopEnd(frame); - } - return; - } - - // Don't want to fight the user for control, relinquish our manipulation once they start doing stuff. - if (m_playbackIsActive) - { - OnPlayToggled(false); - } - - // we grab with the left button, pan with the right. - if (whichButton == Qt::LeftButton) - { - m_draggingAnything = true; - - if (abs(frame - m_playbackLoopBegin) <= range) - { - m_draggingPlaybackLoopBegin = true; - m_draggingPlaybackLoopEnd = false; - } - else if (abs(frame - m_playbackLoopEnd) <= range) - { - m_draggingPlaybackLoopBegin = false; - m_draggingPlaybackLoopEnd = true; - } - else - { - m_draggingPlaybackLoopBegin = false; - m_draggingPlaybackLoopEnd = false; - - SetScrubberFrame(frame); - } - } - } - - void DrillerCaptureWindow::OnChannelControlMouseMove(FrameNumberType frame, FrameNumberType range, int modifiers) - { - (void)range; - (void)modifiers; - - //ShowDrillerChannelTip(frame); - - if (m_draggingAnything) - { - if (m_draggingPlaybackLoopBegin) - { - SetPlaybackLoopBegin(frame); - } - else if (m_draggingPlaybackLoopEnd) - { - SetPlaybackLoopEnd(frame); - } - else - { - SetScrubberFrame(frame); - } - } - } - - void DrillerCaptureWindow::OnChannelControlMouseUp(Qt::MouseButton whichButton, FrameNumberType frame, FrameNumberType range, int modifiers) - { - (void)range; - (void)modifiers; - (void)frame; - - if (whichButton == Qt::LeftButton) - { - m_draggingAnything = false; - } - } - - void DrillerCaptureWindow::OnChannelControlMouseWheel(FrameNumberType frame, int wheelAmount, FrameNumberType range, int modifiers) - { - (void)range; - (void)modifiers; - - FrameNumberType currentVisibleFrames = m_visibleFrames; - bool zoomingIn = wheelAmount > 0; - if (zoomingIn) - { - // zooming in: - // find the next step DOWN from where we are and set our quant zoom to that - // since its from zoomed all the way in to out. The last element is assumed the special one. - - if (currentVisibleFrames == s_availableFrameQuantities[0]) - { - return; - } - - // before we zoom in, where is the given frame within our scroll area? - int leftSideOfScreen = m_gui->controlScrollBar->value(); - float fraction = (float)(frame - leftSideOfScreen) / (float)m_visibleFrames; - - int numQuantsAvailable = sizeof(s_availableFrameQuantities) / sizeof(int); - int quantChosen = -1; - for (int quantIndex = numQuantsAvailable - 2; quantIndex >= 0; --quantIndex) - { - if (currentVisibleFrames > s_availableFrameQuantities[quantIndex]) - { - quantChosen = s_availableFrameQuantities[quantIndex]; - break; - } - } - - if (quantChosen != -1) - { - OnQuantMenuFinal(quantChosen); - - // we want to focus the scrollbar at the same fraction as before - FocusScrollbar(frame - (int)((float)m_visibleFrames * fraction)); - } - } - else - { - // zooming out: - // find the next step DOWN from where we are and set our quant zoom to that - // since its from zoomed all the way in to out. The last element is assumed the special one. - - FrameNumberType fullRange = m_frameRangeEnd - m_frameRangeBegin + 1; - - if (currentVisibleFrames == fullRange) - { - return; - } - - int leftSideOfScreen = m_gui->controlScrollBar->value(); - float fraction = (float)(frame - leftSideOfScreen) / (float)m_visibleFrames; - - int numQuantsAvailable = sizeof(s_availableFrameQuantities) / sizeof(int); - - int quantChosen = -1; - for (int quantIndex = 0; quantIndex < numQuantsAvailable - 1; ++quantIndex) - { - if (currentVisibleFrames < s_availableFrameQuantities[quantIndex]) - { - quantChosen = s_availableFrameQuantities[quantIndex]; - break; - } - } - - if (quantChosen != -1) - { - OnQuantMenuFinal(quantChosen); - FocusScrollbar(frame - (int)((float)m_visibleFrames * fraction)); - } - } - } - - void DrillerCaptureWindow::SetScrubberFrame(FrameNumberType frame) - { - if ((!m_bForceNextScrub) && (frame == m_scrubberCurrentFrame)) - { - return; - } - - m_bForceNextScrub = false; - - m_scrubberCurrentFrame = frame >= m_frameRangeBegin ? frame : m_frameRangeBegin; - m_scrubberCurrentFrame = m_scrubberCurrentFrame <= m_frameRangeEnd ? m_scrubberCurrentFrame : m_frameRangeEnd; - - UpdateFrameScrubberbox(); - - ScrubberFrame(m_scrubberCurrentFrame); - - EBUS_EVENT_ID(m_identity, Driller::DrillerMainWindowMessages::Bus, FrameChanged, m_scrubberCurrentFrame); - m_AnnotationProvider.Finalize(); - } - - void DrillerCaptureWindow::SetPlaybackLoopBegin(FrameNumberType frame) - { - m_playbackLoopBegin = frame >= m_frameRangeBegin ? frame : m_frameRangeBegin; - m_playbackLoopBegin = m_playbackLoopBegin <= m_frameRangeEnd ? m_playbackLoopBegin : m_frameRangeEnd; - - m_playbackLoopEnd = m_playbackLoopEnd >= m_playbackLoopBegin ? m_playbackLoopEnd : m_playbackLoopBegin; - m_playbackLoopEnd = m_playbackLoopEnd <= m_frameRangeEnd ? m_playbackLoopEnd : m_frameRangeEnd; - - EBUS_EVENT_ID(m_identity, Driller::DrillerMainWindowMessages::Bus, PlaybackLoopBeginChanged, m_playbackLoopBegin); - - UpdatePlaybackLoopPoints(); - } - - void DrillerCaptureWindow::SetPlaybackLoopEnd(FrameNumberType frame) - { - m_playbackLoopEnd = frame >= m_frameRangeBegin ? frame : m_frameRangeBegin; - m_playbackLoopEnd = m_playbackLoopEnd <= m_frameRangeEnd ? m_playbackLoopEnd : m_frameRangeEnd; - - m_playbackLoopBegin = m_playbackLoopBegin >= m_playbackLoopEnd ? m_playbackLoopEnd : m_playbackLoopBegin; - m_playbackLoopBegin = m_playbackLoopBegin >= m_frameRangeBegin ? m_playbackLoopBegin : m_frameRangeBegin; - - EBUS_EVENT_ID(m_identity, Driller::DrillerMainWindowMessages::Bus, PlaybackLoopEndChanged, m_playbackLoopEnd); - - UpdatePlaybackLoopPoints(); - } - - void DrillerCaptureWindow::UpdatePlaybackLoopPoints() - { - for (auto iter = m_channels.begin(); iter != m_channels.end(); ++iter) - { - (*iter)->SetLoopBegin(m_playbackLoopBegin); - (*iter)->SetLoopEnd(m_playbackLoopEnd); - } - } - - void DrillerCaptureWindow::SetFrameRangeBegin(FrameNumberType frame) - { - m_frameRangeBegin = frame; - - SetPlaybackLoopBegin(m_playbackLoopBegin); - SetPlaybackLoopEnd(m_playbackLoopEnd); - SetScrubberFrame(m_scrubberCurrentFrame); - UpdateFrameScrubberbox(); - UpdateScrollbar(); - } - - void DrillerCaptureWindow::SetFrameRangeEnd(FrameNumberType frame) - { - // if the scrubber/loop is on the last frame we always advance it to the new end - bool setScrubberToo = m_scrubberCurrentFrame == m_frameRangeEnd; - bool setEndloopToo = m_playbackLoopEnd == m_frameRangeEnd; - - FrameNumberType range = m_frameRangeEnd - m_visibleFrames + 1; - range = range >= m_frameRangeBegin ? range : m_frameRangeBegin; - - FrameNumberType priorFrameRangeEnd = m_frameRangeEnd; - - int diff = static_cast(frame - m_frameRangeEnd); - m_frameRangeEnd = frame; - - if (priorFrameRangeEnd < m_frameRangeEnd) - { - for (ChannelControl* channelControl : m_channels) - { - for (ChannelProfilerWidget* channelProfiler : channelControl->GetProfilers()) - { - Aggregator* aggregator = channelProfiler->GetAggregator(); - if (aggregator != nullptr) - { - aggregator->EmitAnnotationChannelsForFrameRange(priorFrameRangeEnd, m_frameRangeEnd, &m_AnnotationProvider); - aggregator->EmitAllAnnotationsForFrameRange(priorFrameRangeEnd, m_frameRangeEnd, &m_AnnotationProvider); - } - } - } - } - - if (!m_isLoadingFile) - { - SetScrubberFrame(setScrubberToo ? m_frameRangeEnd : m_scrubberCurrentFrame); - - SetPlaybackLoopBegin(m_playbackLoopBegin); - SetPlaybackLoopEnd(setEndloopToo ? m_frameRangeEnd : m_playbackLoopEnd); - UpdateFrameScrubberbox(); - UpdateScrollbar(diff); - } - } - - void DrillerCaptureWindow::UpdateFrameScrubberbox() - { - m_gui->frameScrubberBox->setRange(m_frameRangeBegin, m_frameRangeEnd); - m_gui->frameScrubberBox->setValue(m_scrubberCurrentFrame); - } - - void DrillerCaptureWindow::UpdateScrollbar(int diff) - { - int curVal = m_gui->controlScrollBar->value(); - - // range of motion for the scrollbar covers the off-window area, not the total - FrameNumberType range = m_frameRangeEnd - m_visibleFrames + 1; - range = range >= m_frameRangeBegin ? range : m_frameRangeBegin; - - m_gui->controlScrollBar->setRange(m_frameRangeBegin, range); - if (m_gui->controlScrollBar->value() >= range - 1) - { - m_gui->controlScrollBar->setValue(static_cast(range)); - } - else if (diff) - { - m_gui->controlScrollBar->setValue(static_cast(curVal)); - } - } - - ////////////////////////////////////////////////////////////////////////// - // when the Editor Main window is requested to close, it is not destroyed. - ////////////////////////////////////////////////////////////////////////// - // Qt Events - void DrillerCaptureWindow::closeEvent(QCloseEvent* event) - { - OnCloseFile(); - event->ignore(); - } - - void DrillerCaptureWindow::showEvent(QShowEvent* /*event*/) - { - emit ShowYourself(); - } - void DrillerCaptureWindow::hideEvent(QHideEvent* /*event*/) - { - emit HideYourself(); - } - - bool DrillerCaptureWindow::OnGetPermissionToShutDown() - { - OnCaptureToggled(false); - - bool willShutDown = true; - - ClearChannelDisplay(true); - - AZ_TracePrintf(drillerDebugName, " willShutDown == %d\n", (int)willShutDown); - return willShutDown; - } - - void DrillerCaptureWindow::ScrubToFrameRequest(FrameNumberType frame) - { - if (m_playbackIsActive) - { - OnPlayToggled(false); - } - - SetScrubberFrame(frame); - } - - void DrillerCaptureWindow::SaveWindowState() - { - m_inactiveChannels.clear(); - - for (auto iter = m_channels.begin(); iter != m_channels.end(); ++iter) - { - const AZStd::list< ChannelProfilerWidget*>& profilers = (*iter)->GetProfilers(); - - for (ChannelProfilerWidget* profiler : profilers) - { - if (!profiler->IsActive()) - { - m_inactiveChannels.insert(profiler->GetID()); - } - } - } - - // build state and store it. - auto newState = AZ::UserSettings::CreateFind(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - //newState->Init(saveState(), saveGeometry()); - newState->m_ChannelIDs.clear(); - for (AZStd::set::iterator iter = m_inactiveChannels.begin(); iter != m_inactiveChannels.end(); ++iter) - { - newState->m_ChannelIDs.push_back(*iter); - } - - newState->m_fpsValue = m_gui->fpsBox->value(); - - newState->m_scrubberCurrentFrame = m_scrubberCurrentFrame; - newState->m_playbackLoopBegin = m_playbackLoopBegin; - newState->m_playbackLoopEnd = m_playbackLoopEnd; - newState->m_scrubberCurrentEvent = m_scrubberCurrentEvent; - } - - void DrillerCaptureWindow::RestoreWindowState() // call this after you have rebuilt everything. - { - // load the state from our state block: - auto savedState = AZ::UserSettings::Find(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - if (savedState) - { - QByteArray geomData((const char*)savedState->m_windowGeometry.data(), (int)savedState->m_windowGeometry.size()); - QByteArray stateData((const char*)savedState->GetWindowState().data(), (int)savedState->GetWindowState().size()); - - restoreGeometry(geomData); - if (this->isMaximized()) - { - this->showNormal(); - this->showMaximized(); - } - //restoreState(stateData); - - m_inactiveChannels.clear(); - for (auto iter = savedState->m_ChannelIDs.begin(); iter != savedState->m_ChannelIDs.end(); ++iter) - { - m_inactiveChannels.insert(*iter); - } - - m_gui->fpsBox->setValue(savedState->m_fpsValue); - - SetScrubberFrame(savedState->m_scrubberCurrentFrame); - SetPlaybackLoopBegin(savedState->m_playbackLoopBegin); - SetPlaybackLoopEnd(savedState->m_playbackLoopEnd); - SetScrubberEvent(savedState->m_scrubberCurrentEvent); - } - else - { - // default state! - } - } - - void DrillerCaptureWindow::OnOpenDrillerFile() - { - auto paths = QStandardPaths::standardLocations(QStandardPaths::DocumentsLocation); - QString capturePath; - if (paths.isEmpty()) - { - paths = QStandardPaths::standardLocations(QStandardPaths::TempLocation); - } - if (!paths.isEmpty()) - { - capturePath = paths.first(); - } - - QString fileName = QFileDialog::getOpenFileName(this, "Open Driller File", capturePath, "Driller Files (*.drl)"); - if (!fileName.isNull()) - { - OnOpenDrillerFile(fileName); - } - } - - void DrillerCaptureWindow::OnOpenDrillerFile(QString fileName) - { - if (m_data) - { - QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); - m_AnnotationProvider.Clear(); - - SetCaptureDirty(false); - m_currentDataFilename = fileName; - - m_isLoadingFile = true; - m_data->LoadCaptureData(fileName.toUtf8().data()); - m_isLoadingFile = false; - - SetCaptureMode(CaptureMode::Inspecting); - - m_bForceNextScrub = true; - EndFrame(m_frameRangeEnd); - SetPlaybackLoopBegin(0); - SetPlaybackLoopEnd(m_frameRangeEnd); - - OnQuantMenuFinal(m_visibleFrames); - - UpdateLiveControls(); - m_bForceNextScrub = true; - - ScrubberToEnd(); - QApplication::restoreOverrideCursor(); - } - } - - void DrillerCaptureWindow::OnOpenDrillerFileForWorkspace(QString fileName, QString workspaceFileName) - { - if (m_data) - { - QString successFileName; - - // does a file local to our given Workspace DRW exist? It gets preference on load. - QString localFileName(workspaceFileName.left(workspaceFileName.size() - 3) + "drl"); - if (AZ::IO::SystemFile::Exists(localFileName.toUtf8().data())) - { - successFileName = localFileName; - } - // does the workspace's suggested file exist? - else if (AZ::IO::SystemFile::Exists(fileName.toUtf8().data())) - { - successFileName = fileName; - } - // fall through to prompting the user for a DRL to use - else - { - QString userFileName = QFileDialog::getOpenFileName(this, "Find Driller File", localFileName, "Driller Files (*.drl)"); - if (!userFileName.isNull()) - { - successFileName = userFileName; - } - } - - if (!successFileName.isEmpty() && !successFileName.isNull()) - { - SetCaptureDirty(false); - m_currentDataFilename = successFileName; - - m_isLoadingFile = true; - m_data->LoadCaptureData(m_currentDataFilename.toUtf8().data()); - m_isLoadingFile = false; - - SetCaptureMode(CaptureMode::Inspecting); - - m_bForceNextScrub = true; - EndFrame(m_frameRangeEnd); - - OnQuantMenuFinal(m_visibleFrames); - m_bForceNextScrub = true; - ScrubberToEnd(); - UpdateLiveControls(); - } - } - } - - void DrillerCaptureWindow::RepopulateAnnotations() - { - // re-query all the annotations now that you have your settings. - m_AnnotationProvider.Clear(); - - if (m_frameRangeEnd != 0) - { - for (ChannelControl* channelControl : m_channels) - { - for (ChannelProfilerWidget* profiler : channelControl->GetProfilers()) - { - Aggregator* aggregator = profiler->GetAggregator(); - - if (aggregator != nullptr) - { - aggregator->EmitAnnotationChannelsForFrameRange(0, m_frameRangeEnd, &m_AnnotationProvider); - aggregator->EmitAllAnnotationsForFrameRange(0, m_frameRangeEnd, &m_AnnotationProvider); - } - } - } - } - m_AnnotationProvider.Finalize(); - } - - void DrillerCaptureWindow::OnOpenWorkspaceFile(QString workspaceFileName, bool openDrillerFileAlso) - { - OnCaptureToggled(false); - - if (m_data) - { - m_AnnotationProvider.Clear(); - // 1: spawn a new local settings object using the DRW - if (!AZ::IO::SystemFile::Exists(workspaceFileName.toUtf8().data())) - { - QMessageBox::warning(this, tr("File not found"), tr("Unable to find the specified file '%1'").arg(workspaceFileName), QMessageBox::Ok, QMessageBox::Ok); - return; - } - - WorkspaceSettingsProvider* provider = WorkspaceSettingsProvider::CreateFromFile(workspaceFileName.toUtf8().data()); - if (!provider) - { - QMessageBox::warning(this, tr("Corrupted file?"), tr("Unable to parse the specified file '%1'").arg(workspaceFileName), QMessageBox::Ok, QMessageBox::Ok); - return; - } - - // 2: extract therefrom the associated DRL file - AZStd::string windowStateStr = AZStd::string::format("DRILLER CAPTURE WINDOW WORKSPACE"); - AZ::u32 workspaceCRC = AZ::Crc32(windowStateStr.c_str()); - - DrillerCaptureWindowWorkspace* workspace = provider->FindSetting(workspaceCRC); - if (!workspace) - { - QMessageBox::warning(this, tr("Corrupted file?"), tr("Specified file '%1' does not appear to contain a workspace.").arg(workspaceFileName), QMessageBox::Ok, QMessageBox::Ok); - return; - } - - m_inactiveChannels.clear(); - for (auto iter = workspace->m_ChannelIDs.begin(); iter != workspace->m_ChannelIDs.end(); ++iter) - { - m_inactiveChannels.insert(*iter); - } - - // 3: load that data, which in turn clears and re-instantiates all needed aggregators - // other side effects include changing the current filename and replacing any current data loaded - if (openDrillerFileAlso) - { - m_isLoadingFile = true; - OnOpenDrillerFileForWorkspace(QString(workspace->m_matchingDataFileName.c_str()), workspaceFileName); - m_isLoadingFile = false; - } - - SetCaptureMode(CaptureMode::Inspecting); - - // 4: extract from the DRW any settings that I have saved there - // 5: synchronous EBUS message that informs all the aggregators that new settings are available - EBUS_EVENT_ID(m_identity, Driller::DrillerWorkspaceWindowMessages::Bus, ApplySettingsFromWorkspace, provider); - m_AnnotationProvider.LoadSettingsFromWorkspace(provider); - - // 6: aggregators are responsible for checking if any of their data dialogs are required, and open them - - EBUS_EVENT_ID(m_identity, Driller::DrillerWorkspaceWindowMessages::Bus, ActivateWorkspaceSettings, provider); - - // 7: main window itself should load its settings, which will include the current scrubber frame - m_scrubberCurrentFrame = 0; - m_scrubberCurrentEvent = 0; - m_playbackLoopBegin = 0; - m_playbackLoopEnd = 0; - - SetFrameRangeBegin(workspace->m_frameRangeBegin); - SetFrameRangeEnd(workspace->m_frameRangeEnd); - m_bForceNextScrub = true; - SetScrubberFrame(workspace->m_scrubberCurrentFrame); - SetPlaybackLoopBegin(workspace->m_playbackLoopBegin); - SetPlaybackLoopEnd(workspace->m_playbackLoopEnd); - OnQuantMenuFinal(workspace->m_visibleFrames); - m_gui->controlScrollBar->setSliderPosition(workspace->m_sliderPosition); - - SetScrubberEvent(workspace->m_scrubberCurrentEvent); - - // 8: close the local settings DRW - delete provider; - - RepopulateAnnotations(); - } - } - - void DrillerCaptureWindow::OnApplyWorkspaceFile(QString fileName) - { - if (!fileName.isNull()) - { - if (m_data) - { - OnOpenWorkspaceFile(fileName, false); - } - } - } - - void DrillerCaptureWindow::OnSaveWorkspaceFile(QString fileName, bool automated) - { - if (!fileName.isNull()) - { - if (m_data) - { - // 1: spawn a new local settings object using the DRW - WorkspaceSettingsProvider provider; - - // 2: push my own settings into the DRW - // plus logic to copy/rename tmp DRL files - AZStd::string windowStateStr = AZStd::string::format("DRILLER CAPTURE WINDOW WORKSPACE"); - AZ::u32 workspaceCRC = AZ::Crc32(windowStateStr.c_str()); - - DrillerCaptureWindowWorkspace* workspace = provider.CreateSetting(workspaceCRC); - if (!automated) - { - m_currentDataFilename = PrepDataFileForSaving(m_currentDataFilename, fileName); - } - workspace->m_matchingDataFileName = m_currentDataFilename.toUtf8().data(); - - m_inactiveChannels.clear(); - for (ChannelControl* channelControl : m_channels) - { - for (ChannelProfilerWidget* profilerWidget : channelControl->GetProfilers()) - { - if (!profilerWidget->IsActive()) - { - m_inactiveChannels.insert(profilerWidget->GetID()); - } - } - } - - workspace->m_ChannelIDs.clear(); - for (AZStd::set::iterator iter = m_inactiveChannels.begin(); iter != m_inactiveChannels.end(); ++iter) - { - workspace->m_ChannelIDs.push_back(*iter); - } - workspace->m_scrubberCurrentFrame = m_scrubberCurrentFrame; - workspace->m_frameRangeBegin = m_frameRangeBegin; - workspace->m_frameRangeEnd = m_frameRangeEnd; - workspace->m_visibleFrames = m_visibleFrames; - workspace->m_scrubberCurrentEvent = m_scrubberCurrentEvent; - - workspace->m_playbackLoopBegin = m_playbackLoopBegin; - workspace->m_playbackLoopEnd = m_playbackLoopEnd; - workspace->m_sliderPosition = m_gui->controlScrollBar->sliderPosition(); - - // 3: synchronous EBUS message that informs all the aggregators to push their own settings into the DRW - // 4: aggregators are responsible for dealing with their display view dialogs internally - EBUS_EVENT_ID(m_identity, Driller::DrillerWorkspaceWindowMessages::Bus, SaveSettingsToWorkspace, &provider); - m_AnnotationProvider.SaveSettingsToWorkspace(&provider); - - if (!provider.WriteToFile(fileName.toUtf8().data())) - { - SetCaptureDirty(true); - QMessageBox::warning(this, tr("Could not save workspace"), tr("Unable to write data to the specified file '%1'").arg(fileName), QMessageBox::Ok, QMessageBox::Ok); - } - else - { - SetCaptureDirty(false); - } - UpdateLiveControls(); - } - } - } - - void DrillerCaptureWindow::OnSaveDrillerFile() - { - if (m_frameRangeEnd <= 0) - { - if (m_identity == 0) - { - ResetCaptureControls(); - } - return; - } - - QString saveCapturePath; - QString tempWorkspaceName; - - auto newState = AZ::UserSettings::CreateFind(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - if (!newState->m_priorSaveFolder.empty()) - { - saveCapturePath = newState->m_priorSaveFolder.data(); - } - else - { - auto paths = QStandardPaths::standardLocations(QStandardPaths::DocumentsLocation); - - if (paths.isEmpty()) - { - paths = QStandardPaths::standardLocations(QStandardPaths::TempLocation); - } - - if (!paths.isEmpty()) - { - saveCapturePath = paths.first(); - } - } - - bool success = false; - - while (!success) - { - QString sourcename = m_tmpCaptureFilename; - - if (!m_currentDataFilename.isEmpty()) - { - sourcename = m_currentDataFilename; - } - - QString fileName = QFileDialog::getSaveFileName(this, "Save Driller File As...", saveCapturePath, "Driller Files (*.drl)"); - if (!fileName.isNull()) - { - SetCaptureDirty(false); - if (sourcename == fileName) - { - QMessageBox::warning(this, tr("Unable to save"), tr("You can't save a data file over itself ( '%1' to '%2' )").arg(sourcename).arg(fileName)); - } - else - { - (void)QFile::remove(fileName); - success = QFile::copy(sourcename, fileName); - if (success) - { - m_currentDataFilename = fileName; - - { - QTemporaryFile f; - f.setAutoRemove(false); - if (f.open()) - { - tempWorkspaceName = f.fileName(); - } - } - if (!tempWorkspaceName.isEmpty()) - { - OnSaveWorkspaceFile(tempWorkspaceName, true); - } - - ResetCaptureControls(); - - EBUS_EVENT(Driller::DrillerDataViewMessages::Bus, EventRequestOpenWorkspace, tempWorkspaceName.toUtf8().data()); - auto deleteResult = QFile::remove(tempWorkspaceName); - if (!deleteResult) - { - QMessageBox::warning(this, tr("Can't delete temp file"), tr("File = ( %1 )").arg(tempWorkspaceName)); - } - - return; - } - else - { - QMessageBox::warning(this, tr("Unable to save"), tr("Could not copy '%1' to '%2'").arg(sourcename).arg(fileName)); - } - } - } - - if (fileName.isNull() || m_identity == 0) // close this window if no file named OR this is a LIVE channel - { - ResetCaptureControls(); - return; - } - } - } - - QString DrillerCaptureWindow::PrepDataFileForSaving(QString filename, QString workspaceName) - { - // is this a TMP file? - QString tempPath = QStandardPaths::writableLocation(QStandardPaths::TempLocation); - if (filename.contains(tempPath, Qt::CaseInsensitive)) - { - // yes := rename to match workspace - QString newFilename(workspaceName.left(workspaceName.size() - 3) + "drl"); - // and then copy - QFile::copy(filename, newFilename); - m_currentDataFilename = newFilename; - UpdateLiveControls(); - return newFilename; - } - - return filename; - } - - QString DrillerCaptureWindow::PrepTempFile(QString filename) - { - QString tmpCapturePath = QStandardPaths::writableLocation(QStandardPaths::TempLocation); - tmpCapturePath = QDir(tmpCapturePath).absoluteFilePath(filename); - m_tmpCaptureFilename = tmpCapturePath; - m_currentDataFilename = m_tmpCaptureFilename; - return tmpCapturePath; - } - - void DrillerCaptureWindow::OnAnnotationOptionsClick() - { - // show the annotations configure window: - if (m_ptrConfigureAnnotationsWindow) - { - m_ptrConfigureAnnotationsWindow->raise(); - } - else - { - m_ptrConfigureAnnotationsWindow = aznew ConfigureAnnotationsWindow(this); - m_ptrConfigureAnnotationsWindow->Initialize(&m_AnnotationProvider); - connect(m_ptrConfigureAnnotationsWindow, SIGNAL(destroyed(QObject*)), this, SLOT(OnAnnotationsDialogDestroyed())); - m_ptrConfigureAnnotationsWindow->show(); - } - } - - void DrillerCaptureWindow::OnSelectedAnnotationChannelsChanged() - { - // rebuild the annotations. - RepopulateAnnotations(); - // update the views. - } - - - void DrillerCaptureWindow::OnAnnotationsDialogDestroyed() - { - m_ptrConfigureAnnotationsWindow = NULL; - } - - void DrillerCaptureWindow::InformOfMouseOverAnnotation(const Annotation& annotation) - { - if (m_collectedAnnotations.empty()) - { - QTimer::singleShot(0, this, SLOT(CommitAnnotationsCollected())); - } - m_collectedAnnotations.push_back(annotation); - } - - void DrillerCaptureWindow::CommitAnnotationsCollected() - { - FrameNumberType frameCounter = -1; - QString finalText; - AZ::u32 priorCRC = 0; - - AZStd::sort(m_collectedAnnotations.begin(), m_collectedAnnotations.end(), - [](const Annotation& first, const Annotation& second) - { - return first.GetEventIndex() < second.GetEventIndex(); - } - ); - - int numConcated = 0; - for (auto iter = m_collectedAnnotations.begin(); iter != m_collectedAnnotations.end(); ++iter) - { - if (numConcated > 10) - { - int numRemaining = (int)m_collectedAnnotations.size() - numConcated; - finalText += QString("... and %1 other annotations").arg(numRemaining); - break; - } - ++numConcated; - - const Annotation& annot = *iter; - if ((annot.GetFrameIndex() == frameCounter) && (priorCRC == annot.GetChannelCRC())) - { - finalText += QString("Event %1: '%2'
").arg(annot.GetEventIndex()).arg(annot.GetText().c_str()); - } - else if (annot.GetFrameIndex() == frameCounter) - { - finalText += QString("%2
Event %3: '%4'
").arg(annot.GetChannel().c_str()).arg(annot.GetEventIndex()).arg(annot.GetText().c_str()); - } - else - { - finalText += QString("Frame %1
%2
Event %3: '%4'
").arg(annot.GetFrameIndex()).arg(annot.GetChannel().c_str()).arg(annot.GetEventIndex()).arg(annot.GetText().c_str()); - } - - frameCounter = annot.GetFrameIndex(); - priorCRC = annot.GetChannelCRC(); - } - - QToolTip::showText(QCursor::pos(), finalText); - m_collectedAnnotations.clear(); - } - - void DrillerCaptureWindow::InformOfClickAnnotation(const Annotation& annotation) - { - (void)annotation; - } - - ////////////////////////////////////////////////////////////////////////// - // Target Manager Messages - void DrillerCaptureWindow::DesiredTargetConnected(bool connected) - { - m_TargetConnected = connected; - - if (IsInCaptureMode(CaptureMode::Inspecting)) - { - return; - } - - // - have an existing capture? - // - - ask to save it - if (IsInCaptureMode(CaptureMode::Capturing)) - { - OnSaveDrillerFile(); - } - - QString tmpCapturePath; - - if (connected) - { - SetScrubberFrame(0); - SetFrameRangeBegin(0); - SetFrameRangeEnd(0); - SetCaptureDirty(false); - - tmpCapturePath = PrepTempFile(baseTempFileName); - } - else - { - SetScrubberFrame(0); - SetFrameRangeBegin(0); - SetFrameRangeEnd(0); - SetCaptureDirty(false); - - m_gui->captureButton->setEnabled(false); - m_gui->captureButton->setText(tr("Capture")); - m_gui->captureButton->setToolTip(tr("Begin Capturing Driller Data")); - - tmpCapturePath.clear(); - } - - UpdateLiveControls(); - } - - void DrillerCaptureWindow::Reflect(AZ::ReflectContext* context) - { - // data container is the one place that knows about all the aggregators - // and indeed is responsible for creating them - DrillerDataContainer::Reflect(context); - DrillerCaptureWindowWorkspace::Reflect(context); - DrillerCaptureWindowSavedState::Reflect(context); - AnnotationsProvider::Reflect(context); - - AZ::BehaviorContext* behaviorContext = azrtti_cast(context); - if (behaviorContext) - { - behaviorContext->Class("DrillerCaptureWindow")-> - Method("ShowWindow", &DrillerCaptureWindow::OnOpen)-> - Method("HideWindow", &DrillerCaptureWindow::OnClose); - } - } -}//namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.hxx b/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.hxx deleted file mode 100644 index 91374c6ff2..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.hxx +++ /dev/null @@ -1,269 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_DrillerCaptureWindow_H -#define DRILLER_DrillerCaptureWindow_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include -#include - -#include "DrillerNetworkMessages.h" -#include "DrillerMainWindowMessages.h" -#include "AzFramework/TargetManagement/TargetManagementAPI.h" -#include -#include "Workspaces/Workspace.h" -#include "Annotations/Annotations.hxx" - - -#pragma once - -class QMenu; -class QAction; -class QToolbar; -class QSettings; - -#include -#include -#include -#endif - -namespace Ui -{ - class DrillerCaptureWindow; -} - -namespace Driller -{ - class ChannelControl; - class DrillerDataContainer; - class CombinedEventsControl; - class AnnotationHeaderView; - class ConfigureAnnotationsWindow; - - /* - This is the original guts of the singular Driller Main Window - - Home of the real commands, channels created from external aggregators when connected, and the floating control panel. - All inputs end up here where they are interpreted and passed downwards to all channels, to maintain consistency. - */ - - ////////////////////////////////////////////////////////////////////////// - //Main Window - class DrillerCaptureWindow - : public QDockWidget - , public Driller::DrillerNetworkMessages::Bus::Handler - , public Driller::DrillerCaptureWindowRequestBus::Handler - , private AzFramework::TargetManagerClient::Bus::Handler - { - Q_OBJECT; - public: - AZ_TYPE_INFO(DrillerCaptureWindow, "08AF3402-FCFA-4441-910D-9F994BD0D146"); - AZ_CLASS_ALLOCATOR(DrillerCaptureWindow,AZ::SystemAllocator,0); - DrillerCaptureWindow(CaptureMode captureMode, int identity, QWidget* parent = NULL, Qt::WindowFlags flags = Qt::WindowFlags()); - DrillerCaptureWindow(const DrillerCaptureWindow&) - : m_identity(0) - { - // TODO: Once AZ_NO_COPY macros is in the branch in use it! - AZ_Assert(false, "You can't copy this class!"); - } - virtual ~DrillerCaptureWindow(void); - - bool OnGetPermissionToShutDown(); - - // DrillerCaptureWindowRequestBus - void ScrubToFrameRequest(FrameNumberType frameType) override; - - public: - - // Driller network messages - virtual void ConnectedToNetwork(); - virtual void NewAggregatorList( AggregatorList &theList ); - virtual void AddAggregator( Aggregator &theAggregator ); - virtual void DiscardAggregators(); - virtual void DisconnectedFromNetwork(); - virtual void EndFrame(FrameNumberType frame); - virtual void NewAggregatorsAvailable(); - - // Data Viewer request messages - // implement AzFramework::TargetManagerClient::Bus::Handler - void DesiredTargetConnected(bool connected); - - public: - // MainWindow Messages and states. - void SaveWindowState(); - AZStd::set m_inactiveChannels; - - void OnContractAllChannels(); - void OnExpandAllChannels(); - void OnDisableAllChannels(); - void OnEnableAllChannels(); - QString GetDataFileName() { return m_currentDataFilename; } - - private: - // how the main window identifies us - const int m_identity; - CaptureMode m_captureMode; - - // internal workings - typedef QList SortedChannels; - SortedChannels m_channels; - - void SetCaptureMode(CaptureMode captureMode); - void ResetCaptureControls(); - bool IsInLiveMode() const; - bool IsInCaptureMode(CaptureMode captureMode) const; - - void ClearExistingChannels(); - void ClearChannelDisplay( bool withDeletion ); - void SortChannels(); - void PopulateChannelDisplay(); - ChannelControl* FindChannelControl(Aggregator* aggregator); - void AddChannelDisplay(ChannelControl *); - - protected: - // Qt Events - virtual void closeEvent(QCloseEvent* event); - virtual void showEvent( QShowEvent * event ); - virtual void hideEvent( QHideEvent * event ); - virtual bool event(QEvent *evt); - - ////////////////////////////////////////////////////////////////////////// - void StateReset(); - QString PrepDataFileForSaving( QString filename, QString workspaceName ); - QString PrepTempFile( QString filename ); - - void ScrubberToBegin(); - void ScrubberToEnd(); - void SetScrubberFrame( FrameNumberType frame ); - FrameNumberType GetScrubberFrame() { return m_scrubberCurrentFrame; } - void SetPlaybackLoopBegin( FrameNumberType frame ); - FrameNumberType GetPlaybackLoopBegin() { return m_playbackLoopBegin; } - void SetPlaybackLoopEnd( FrameNumberType frame ); - FrameNumberType GetPlaybackLoopEnd() { return m_playbackLoopEnd; } - void SetFrameRangeBegin( FrameNumberType frame ); - FrameNumberType GetFrameRangeBegin() { return m_frameRangeBegin; } - void SetFrameRangeEnd( FrameNumberType frame); - FrameNumberType GetFrameRangeEnd() { return m_frameRangeEnd; } - - void UpdateFrameScrubberbox(); - void ScrubberFrame(FrameNumberType frame); - - void UpdateEventScrubberbox(); - void SetScrubberEvent( EventNumberType eventIdx ); - - void UpdateScrollbar( int diff = 0 ); - void FocusScrollbar( FrameNumberType focusFrame ); - void UpdatePlaybackLoopPoints(); - - void ConnectChannelControl(ChannelControl *dc); - - void SetCaptureDirty( bool isDirty ); - - void UpdateLiveControls(); - - AZ::u32 m_windowStateCRC; - - FrameNumberType m_scrubberCurrentFrame; - FrameNumberType m_frameRangeBegin; - FrameNumberType m_frameRangeEnd; - FrameNumberType m_visibleFrames; - EventNumberType m_scrubberCurrentEvent; - bool m_captureIsDirty; - - int m_playbackIsActive; - FrameNumberType m_playbackLoopBegin; - FrameNumberType m_playbackLoopEnd; - bool m_draggingPlaybackLoopBegin; - bool m_draggingPlaybackLoopEnd; - bool m_draggingAnything; - bool m_manipulatingScrollBar; - DrillerDataContainer* m_data; ///< Pointer to driller data class. - QString m_tmpCaptureFilename; - QString m_currentDataFilename; - AnnotationsProvider m_AnnotationProvider; - - bool m_isLoadingFile; - - AnnotationHeaderView* m_ptrAnnotationsHeaderView; - ConfigureAnnotationsWindow *m_ptrConfigureAnnotationsWindow; - AZStd::vector m_collectedAnnotations; - bool m_bForceNextScrub; - - int m_captureId; - - // are we viewing stored data or are we live drilling? - bool m_TargetConnected; - ////////////////////////////////////////////////////////////////////////// - - static const int s_availableFrameQuantities[]; - - public slots: - void RepopulateAnnotations(); - void RestoreWindowState(); - void OnMenuCloseCurrentWindow(); - void OnOpen(); - void OnClose(); - void OnCloseFile(); - void OnToBegin(); - void OnToEnd(); - void OnPlayToggled(bool toggleState); - void OnCaptureToggled(bool toggleState); - void OnSliderPressed(); - void OnNewSliderValue(int newValue); - void OnFrameScrubberboxChanged(int newValue); - void OnQuantMenuFinal( int range ); - void HandleScrollToFrameRequest( FrameNumberType frame); - void OnChannelControlMouseDown( Qt::MouseButton whichButton, FrameNumberType frame, FrameNumberType range, int modifiers ); - void OnChannelControlMouseMove( FrameNumberType frame, FrameNumberType range, int modifiers ); - void OnChannelControlMouseUp( Qt::MouseButton whichButton, FrameNumberType frame, FrameNumberType range, int modifiers ); - void OnChannelControlMouseWheel( FrameNumberType frame, int wheelAmount, FrameNumberType range, int modifiers ); - void OnOpenDrillerFile(); - void OnOpenDrillerFile(QString fileName); - void OnOpenDrillerFileForWorkspace(QString fileName, QString workspaceFileName); - void OnOpenWorkspaceFile(QString fileName, bool openDrillerFileAlso); // just open it - void OnApplyWorkspaceFile(QString fileName); - void OnSaveDrillerFile(); - void OnSaveWorkspaceFile(QString fileName, bool automated = false); - - void PlaybackTick(); - void OnUpdateScrollSize(); - void EventRequestEventFocus(EventNumberType eventIdx); - - // --- annotations: - void OnSelectedAnnotationChannelsChanged(); - void OnAnnotationOptionsClick(); - void InformOfMouseOverAnnotation(const Annotation& annotation); - void InformOfClickAnnotation(const Annotation& annotation); - void OnAnnotationsDialogDestroyed(); - void CommitAnnotationsCollected(); - - void UpdateEndFrameInControls(); - - QString GetOpenFileName() const; - -signals: - void ScrubberFrameUpdate( FrameNumberType frame ); - void ShowYourself(); - void HideYourself(); - void OnCaptureModeChange(CaptureMode); - void CaptureWindowSetToLive(bool); - - public: - static void Reflect(AZ::ReflectContext* context); - - private: - - Ui::DrillerCaptureWindow* m_gui; - }; -} - -#endif //DRILLER_DrillerCaptureWindow_H diff --git a/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.ui b/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.ui deleted file mode 100644 index 5d53341e1c..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.ui +++ /dev/null @@ -1,610 +0,0 @@ - - - DrillerCaptureWindow - - - - 0 - 0 - 1046 - 497 - - - - - 0 - 0 - - - - - 677 - 177 - - - - - :/general/hex_profiler_icon:/general/hex_profiler_icon - - - true - - - - - - QDockWidget::NoDockWidgetFeatures - - - Qt::BottomDockWidgetArea|Qt::TopDockWidgetArea - - - Driller - - - - false - - - - - - - 0 - - - 2 - - - 2 - - - 2 - - - 2 - - - - - 2 - - - 2 - - - 2 - - - 2 - - - - - QFrame::NoFrame - - - QFrame::Plain - - - - 0 - - - 2 - - - 2 - - - 2 - - - - - - 0 - 0 - - - - - 128 - 0 - - - - Select the target Application to be profiled. - - - Target: None - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 60 - 16777215 - - - - Begin capturing Application data - - - Capture - - - C - - - true - - - - - - - - - - QFrame::NoFrame - - - QFrame::Plain - - - 0 - - - - 2 - - - 6 - - - 2 - - - 2 - - - 2 - - - - - - 0 - 0 - - - - - 16777215 - 16777215 - - - - Playback Speed - - - true - - - - - - - - 0 - 0 - - - - - 50 - 0 - - - - Playback FPS - - - 1 - - - 60 - - - 60 - - - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 80 - 26 - - - - - - - Play - - - Space - - - true - - - - - - - Qt::Horizontal - - - - 0 - 30 - - - - - - - - QFrame::NoFrame - - - QFrame::Plain - - - - 1 - - - 2 - - - 3 - - - 2 - - - 2 - - - - - Frame - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - Scrubbed Frame - - - 0 - - - 100000 - - - 0 - - - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - The number of frames visible in the graphs - - - Show: 1000 - - - - 72 - 32 - - - - QToolButton::MenuButtonPopup - - - Qt::ToolButtonTextOnly - - - - - - - - - - - - - 0 - 0 - - - - Qt::ScrollBarAsNeeded - - - Qt::ScrollBarAsNeeded - - - QAbstractScrollArea::AdjustIgnored - - - true - - - Qt::AlignJustify|Qt::AlignTop - - - - - 0 - 0 - 1040 - 16 - - - - - 0 - 0 - - - - - 3 - - - QLayout::SetNoConstraint - - - 0 - - - 0 - - - 0 - - - 3 - - - - - - - - - - 0 - 0 - - - - QFrame::NoFrame - - - QFrame::Raised - - - 0 - - - - 0 - - - 0 - - - 2 - - - 0 - - - 14 - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 250 - 20 - - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - - - - - - - - 0 - 0 - - - - - 0 - 0 - - - - true - - - - - - - Qt::Vertical - - - QSizePolicy::MinimumExpanding - - - - 0 - 0 - - - - - - - - - Capture - - - Start Capturing Data From the Active Drills - - - C - - - - - Freeze - - - Stop Capturing From the Drills and Freeze the Data - - - S - - - - - Close Current File - - - Ctrl+F4 - - - - - - Driller::CombinedEventsControl - QWidget -
CombinedEventsControl.hxx
- 1 -
- - AzToolsFramework::AZAutoSizingScrollArea - QScrollArea -
AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.hxx
- 1 -
- - AzToolsFramework::TargetSelectorButton - QPushButton -
AzToolsFramework/UI/UICore/TargetSelectorButton.hxx
-
-
- - fpsBox - frameScrubberBox - - - - - -
diff --git a/Code/Tools/Standalone/Source/Driller/DrillerContext.cpp b/Code/Tools/Standalone/Source/Driller/DrillerContext.cpp deleted file mode 100644 index ab69fe714c..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerContext.cpp +++ /dev/null @@ -1,299 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "DrillerContext.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace Driller -{ - const char* DrillerDebugName = "Profiler"; - const char* DrillerInfoName = "Profiler"; - - class DrillerSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(DrillerSavedState, "{CBA064FC-B144-4B9D-92B8-F696B0A15E4D}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(DrillerSavedState, AZ::SystemAllocator, 0); - - bool m_MainDrillerWindowIsVisible; - bool m_MainDrillerWindowIsOpen; - - DrillerSavedState() - : m_MainDrillerWindowIsVisible(true) - , m_MainDrillerWindowIsOpen(true) {} - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Version(1) - ->Field("m_MainDrillerWindowIsVisible", &DrillerSavedState::m_MainDrillerWindowIsVisible) - ->Field("m_MainDrillerWindowIsOpen", &DrillerSavedState::m_MainDrillerWindowIsOpen); - } - } - }; - - AZ::Uuid ContextID("FB8B7094-63FF-4CD1-9857-3AEFA8E2CFDC"); - - - ////////////////////////////////////////////////////////////////////////// - //Context - Context::Context() - : m_pDrillerMainWindow(NULL) - { - } - - Context::~Context() - { - } - - ////////////////////////////////////////////////////////////////////////// - // AZ::Component - void Context::Init() - { - } - - void Context::Activate() - { - ContextInterface::Handler::BusConnect(ContextID); - LegacyFramework::CoreMessageBus::Handler::BusConnect(); - - AzToolsFramework::MainWindowDescription desc; - desc.name = "Profiler"; - desc.ContextID = ContextID; - desc.hotkeyDesc = AzToolsFramework::HotkeyDescription(AZ_CRC("DrillerOpen", 0x1cbbd497), "Ctrl+Shift+D", "Open Profiler", "General", 1, AzToolsFramework::HotkeyDescription::SCOPE_WINDOW); - EBUS_EVENT(AzToolsFramework::FrameworkMessages::Bus, AddComponentInfo, desc); - - bool connectedToAssetProcessor = false; - - // When the AssetProcessor is already launched it should take less than a second to perform a connection - // but when the AssetProcessor needs to be launch it could take up to 15 seconds to have the AssetProcessor initialize - // and able to negotiate a connection when running a debug build - // and to negotiate a connection - - AzFramework::AssetSystem::ConnectionSettings connectionSettings; - AzFramework::AssetSystem::ReadConnectionSettingsFromSettingsRegistry(connectionSettings); - connectionSettings.m_connectionDirection = AzFramework::AssetSystem::ConnectionSettings::ConnectionDirection::ConnectToAssetProcessor; - connectionSettings.m_connectionIdentifier = desc.name; - AzFramework::AssetSystemRequestBus::BroadcastResult(connectedToAssetProcessor, - &AzFramework::AssetSystemRequestBus::Events::EstablishAssetProcessorConnection, connectionSettings); - } - - void Context::Deactivate() - { - LegacyFramework::CoreMessageBus::Handler::BusDisconnect(); - ContextInterface::Handler::BusDisconnect(ContextID); - } - - void Context::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - DrillerMainWindow::Reflect(context); - DrillerSavedState::Reflect(context); - - serialize->Class() - ->Version(1) - ; - } - } - - void Context::ApplicationDeactivated() - { - } - - void Context::ApplicationActivated() - { - } - - void Context::ApplicationShow(AZ::Uuid id) - { - if (ContextID == id) - { - ProvisionalShowAndFocus(true); - } - } - void Context::ApplicationHide(AZ::Uuid id) - { - if (ContextID == id) - { - m_pDrillerMainWindow->hide(); - AZStd::intrusive_ptr newState = AZ::UserSettings::CreateFind(AZ_CRC("LUA DRILLER CONTEXT STATE", 0x95052376), AZ::UserSettings::CT_GLOBAL); - newState->m_MainDrillerWindowIsVisible = false; - } - } - - void Context::ApplicationCensus() - { - AZStd::intrusive_ptr newState = AZ::UserSettings::CreateFind(AZ_CRC("LUA DRILLER CONTEXT STATE", 0x95052376), AZ::UserSettings::CT_GLOBAL); - EBUS_EVENT(AzToolsFramework::FrameworkMessages::Bus, ApplicationCensusReply, newState->m_MainDrillerWindowIsVisible); - } - - - ////////////////////////////////////////////////////////////////////////// - // EditorFramework CoreMessages - void Context::OnRestoreState() - { - const AZStd::string k_launchString = "launch"; - const AZStd::string k_drillerString = "driller"; - - bool GUIMode = true; - EBUS_EVENT_RESULT(GUIMode, LegacyFramework::FrameworkApplicationMessages::Bus, IsRunningInGUIMode); - if (!GUIMode) - { - return; - } - - const AzFramework::CommandLine* commandLine = nullptr; - - EBUS_EVENT_RESULT(commandLine, LegacyFramework::FrameworkApplicationMessages::Bus, GetCommandLineParser); - - bool forceShow = false; - bool forceHide = false; - - if (commandLine->HasSwitch(k_launchString)) - { - forceHide = true; - - size_t numSwitchValues = commandLine->GetNumSwitchValues(k_launchString); - - for (size_t i = 0; i < numSwitchValues; ++i) - { - AZStd::string inputValue = commandLine->GetSwitchValue(k_launchString, i); - - if (inputValue.compare(k_drillerString) == 0) - { - forceShow = true; - forceHide = false; - } - } - } - - ProvisionalShowAndFocus(forceShow, forceHide); - } - - bool Context::OnGetPermissionToShutDown() // until everyone returns true, we can't shut down. - { - AZ_TracePrintf(DrillerDebugName, "Context::OnGetPermissionToShutDown()\n"); - - if (m_pDrillerMainWindow) - { - if (!m_pDrillerMainWindow->OnGetPermissionToShutDown()) - { - return false; - } - } - - return true; - } - - // until everyone returns true, we can't shut down. - bool Context::CheckOkayToShutDown() - { - if (m_pDrillerMainWindow) - { - // confirmation that we're quitting. - if (m_pDrillerMainWindow->isVisible()) - { - m_pDrillerMainWindow->setEnabled(false); - m_pDrillerMainWindow->hide(); - } - } - - return true; - } - - void Context::OnSaveState() - { - // notify main view to persist? - if (m_pDrillerMainWindow) - { - m_pDrillerMainWindow->SaveWindowState(); - } - } - - void Context::OnDestroyState() - { - if (m_pDrillerMainWindow) - { - delete m_pDrillerMainWindow; - } - m_pDrillerMainWindow = NULL; - } - - ////////////////////////////////////////////////////////////////////////// - // Utility - void Context::ProvisionalShowAndFocus(bool forcedShow, bool forcedHide) - { - AZStd::intrusive_ptr newState = AZ::UserSettings::CreateFind(AZ_CRC("LUA DRILLER CONTEXT STATE", 0x95052376), AZ::UserSettings::CT_GLOBAL); - - if (forcedShow) - { - newState->m_MainDrillerWindowIsOpen = true; - newState->m_MainDrillerWindowIsVisible = true; - } - else if (forcedHide) - { - newState->m_MainDrillerWindowIsOpen = false; - newState->m_MainDrillerWindowIsVisible = false; - } - - if (newState->m_MainDrillerWindowIsOpen) - { - if (newState->m_MainDrillerWindowIsVisible) - { - if (!m_pDrillerMainWindow) - { - m_pDrillerMainWindow = aznew DrillerMainWindow(); - } - - m_pDrillerMainWindow->show(); - m_pDrillerMainWindow->raise(); - m_pDrillerMainWindow->activateWindow(); - m_pDrillerMainWindow->setFocus(); - } - else - { - if (m_pDrillerMainWindow) - { - m_pDrillerMainWindow->hide(); - } - } - } - } - - - ////////////////////////////////////////////////////////////////////////// - //ContextInterface - - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - - void Context::ShowDrillerView() - { - ProvisionalShowAndFocus(true); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/DrillerContext.h b/Code/Tools/Standalone/Source/Driller/DrillerContext.h deleted file mode 100644 index 018c1f58b5..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerContext.h +++ /dev/null @@ -1,101 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include -#include -#include -#include -#include -#include "DrillerContextInterface.h" -#include "DrillerMainWindow.hxx" - -#include - -#pragma once - - -namespace Driller -{ - ////////////////////////////////////////////////////////////////////////// - // Context - // all editor components are responsible for maintaining the list of documents they are responsible for - // and setting up editing facilities on those asset types in that "space". - // editor contexts are components and have component ID's because we will communicate to them via buses. - - // this is the data side of drilling. - // for example, data flow, discovery, that sort of thing. - - class Context - : public AZ::Component - , private LegacyFramework::CoreMessageBus::Handler - , private ContextInterface::Handler - { - friend class ContextFactory; - public: - AZ_COMPONENT(Driller::Context, "{60EC92BD-1D96-4E37-AB46-DF89A5497617}") - - Context(); - virtual ~Context(); - - ////////////////////////////////////////////////////////////////////////// - // AZ::Component - virtual void Init(); - virtual void Activate(); - virtual void Deactivate(); - static void Reflect(AZ::ReflectContext* context); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // EditorFramework CoreMessages - virtual void OnRestoreState(); // sent when everything is registered up and ready to go, this is what bootstraps stuff to get going. - virtual bool OnGetPermissionToShutDown(); - virtual bool CheckOkayToShutDown(); - virtual void OnSaveState(); // sent to everything when the app is about to shut down - do what you need to do. - virtual void OnDestroyState(); - virtual void ApplicationDeactivated(); - virtual void ApplicationActivated(); - virtual void ApplicationShow(AZ::Uuid id); - virtual void ApplicationHide(AZ::Uuid id); - virtual void ApplicationCensus(); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // EditorFramework::AssetManagementMessages - //virtual bool RawFileOpenRequested(const EditorFramework::RegisteredAssetType& registeredTypeID, const char *fullPathName); - ////////////////////////////////////////////////////////////////////////// - - virtual void ShowDrillerView(); - - ////////////////////////////////////////////////////////////////////////// - // internal data structure for the class/member/property reference panel - // this is what we serialize and work with - DrillerMainWindow* m_pDrillerMainWindow; - - private: - - // utility - void ProvisionalShowAndFocus(bool forceShow = false, bool forceHide = false); - }; - - class ClassReferenceItem - : public QStandardItem - { - public: - AZ_CLASS_ALLOCATOR(ClassReferenceItem, AZ::SystemAllocator, 0); - - ClassReferenceItem(const QIcon& icon, const QString& text, size_t id); - ClassReferenceItem(const QString& text, size_t id); - ~ClassReferenceItem() {} - - size_t GetTypeID() {return m_ID; } - protected: - size_t m_ID; - }; -}; - diff --git a/Code/Tools/Standalone/Source/Driller/DrillerContextInterface.h b/Code/Tools/Standalone/Source/Driller/DrillerContextInterface.h deleted file mode 100644 index 4fe88e83e5..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerContextInterface.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLERCONTEXTINTERFACE_H -#define DRILLERCONTEXTINTERFACE_H - -#include -#include -#include - -namespace Driller -{ - class ContextInterface - : public LegacyFramework::EditorContextMessages - { - public: - typedef AZ::EBus Bus; - typedef Bus::Handler Handler; - - virtual void ShowDrillerView() = 0; - }; -} - -#endif //DRILLERCONTEXTINTERFACE_H diff --git a/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.cpp b/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.cpp deleted file mode 100644 index 061ead6b03..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.cpp +++ /dev/null @@ -1,283 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "DrillerDataContainer.h" - -#include -#include -#include - -#include // temp for DebugHackProcessFile - -#include // metadata is stored this way - -#include "Unsupported/UnsupportedDataAggregator.hxx" -#include "Memory/MemoryDataAggregator.hxx" -#include "Trace/TraceMessageDataAggregator.hxx" -#include "Profiler/ProfilerDataAggregator.hxx" -#include "Carrier/CarrierDataAggregator.hxx" -#include "Replica/ReplicaDataAggregator.hxx" -#include "Rendering/VRAM/VRAMDataAggregator.hxx" -#include "EventTrace/EventTraceDataAggregator.h" -// IMPORTANT: include new aggregators above - - -namespace Driller -{ - class DrillerDataHandler : public AZ::Debug::DrillerHandlerParser - { - public: - AZ_CLASS_ALLOCATOR(DrillerDataHandler,AZ::SystemAllocator,0) - - DrillerDataHandler(int identity, DrillerDataContainer* container) - : AZ::Debug::DrillerHandlerParser(/*true*/false) - , m_identity(identity) - , m_currentFrame(-1) - , m_dataContainer(container) - , m_dataParser(nullptr) - { - m_drillerSessionInfo.m_platform = static_cast(AZ::g_currentPlatform); /// Init with current platform so no endian swapping till we read all the initial settings. - m_inputStream.SetStringPool(&m_stringPool); - m_dataParser = aznew AZ::Debug::DrillerSAXParserHandler(this); - } - - ~DrillerDataHandler() - { - delete m_dataParser; - } - - virtual AZ::Debug::DrillerHandlerParser* OnEnterTag(AZ::u32 tagName) - { - if( tagName == AZ_CRC("StartData", 0xecf3f53f) ) - return &m_drillerSessionInfo; - if( tagName == AZ_CRC("Frame", 0xb5f83ccd) ) - return this; - for(DrillerNetworkMessages::AggregatorList::iterator it = m_dataContainer->m_aggregators.begin(); it != m_dataContainer->m_aggregators.end(); ++it) - { - if( (*it)->GetDrillerId() == tagName ) - return (*it)->GetDrillerDataParser(); - } - - AZ_TracePrintf("Driller", "We should never get here as we should have added 'Unsupported driller(s)' in OnExitTag('StartData')"); - return nullptr; - } - - virtual void OnExitTag(DrillerHandlerParser* handler, AZ::u32 tagName) - { - (void)handler; - if( tagName == AZ_CRC("StartData", 0xecf3f53f) ) - { - // create all drillers that were in the session data - for(AZ::Debug::DrillerManager::DrillerListType::iterator itDriller = m_drillerSessionInfo.m_drillers.begin(); itDriller != m_drillerSessionInfo.m_drillers.end(); ++itDriller ) - { - AZ::u32 drillerId = itDriller->id; - bool isCreated = false; - for(DrillerNetworkMessages::AggregatorList::iterator it = m_dataContainer->m_aggregators.begin(); it != m_dataContainer->m_aggregators.end(); ++it) - { - if( (*it)->GetDrillerId() == drillerId ) - { - isCreated = true; - break; - } - } - - if( !isCreated ) - { - // Create the aggregator, if the driller is missing add UnsupportedAggregator - Aggregator* aggr = m_dataContainer->CreateAggregator(drillerId, true); - if( aggr ) - m_dataContainer->m_aggregators.push_back(aggr); - - // two ways to add aggregators: - // 1) "NewAggregatorList" send an entire list which replaces the current setup, which is most efficient - // 2) "AddAggregator" send a single aggregator which gets appended - EBUS_EVENT_ID(m_identity, DrillerNetworkMessages::Bus,AddAggregator, *m_dataContainer->m_aggregators.back()); - } - } - } - } - - virtual void OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode) - { - if( dataNode.m_name == AZ_CRC("FrameNum", 0x85a1a919) ) - { - // Send event that previous frame has finished - if( m_currentFrame != -1 ) - { - EBUS_EVENT_ID(m_identity, DrillerNetworkMessages::Bus,EndFrame, m_currentFrame); - } - dataNode.Read(m_currentFrame); - for(DrillerNetworkMessages::AggregatorList::iterator it = m_dataContainer->m_aggregators.begin(); it != m_dataContainer->m_aggregators.end(); ++it) - { - (*it)->AddNewFrame(); - } - } - } - - void ProcessStream(const char* streamIdentifier, const void* data, unsigned int dataSize) - { - m_inputStream.SetData(streamIdentifier, data, dataSize); - m_dataParser->ProcessStream(m_inputStream); - } - - AZ::Debug::DrillerStartdataHandler m_drillerSessionInfo; - int m_currentFrame; - DrillerDataContainer* m_dataContainer; - AZ::Debug::DrillerSAXParserHandler* m_dataParser; - AZ::Debug::DrillerInputMemoryStream m_inputStream; - AZ::Debug::DrillerDefaultStringPool m_stringPool; - int m_identity; - }; - - DrillerDataContainer::DrillerDataContainer(int identity, const char* tmpCaptureFilename) - : m_dataHandler(nullptr) - , m_identity(identity) - , m_tmpCaptureFilename(tmpCaptureFilename) - { - AzFramework::DrillerNetworkConsoleEventBus::Handler::BusConnect(); - EBUS_EVENT(AzFramework::DrillerNetworkConsoleCommandBus, EnumerateAvailableDrillers); - } - - DrillerDataContainer::~DrillerDataContainer() - { - AzFramework::DrillerNetworkConsoleEventBus::Handler::BusDisconnect(); - DestroyAggregators(); - - delete m_dataHandler; - } - - void DrillerDataContainer::OnReceivedDrillerEnumeration(const AzFramework::DrillerInfoListType& availableDrillers) - { - // TODO: Decide how the available driller list should influence the behavior of the driller - // display. For now we will display whatever is available. - m_availableDrillers = availableDrillers; - EBUS_EVENT_ID(m_identity, DrillerNetworkMessages::Bus, NewAggregatorsAvailable); - } - - void DrillerDataContainer::CreateAggregators() - { - DestroyAggregators(); - - if (m_availableDrillers.size()) - { - for (size_t i = 0; i < m_availableDrillers.size(); ++i) - { - Aggregator* aggr = CreateAggregator(m_availableDrillers[i].m_id, true); - if( aggr ) - m_aggregators.push_back(aggr); - } - } - EBUS_EVENT_ID(m_identity, DrillerNetworkMessages::Bus, NewAggregatorList,m_aggregators); - } - - void DrillerDataContainer::DestroyAggregators() - { - EBUS_EVENT_ID(m_identity, DrillerNetworkMessages::Bus, DiscardAggregators); - - for(DrillerNetworkMessages::AggregatorList::iterator it = m_aggregators.begin(); it != m_aggregators.end(); ++it ) - delete *it; - m_aggregators.clear(); - } - - Aggregator* DrillerDataContainer::CreateAggregator(AZ::u32 id, bool createUnsupported) - { - if( id == MemoryDataAggregator::DrillerId() ) - { - return aznew MemoryDataAggregator(m_identity); - } - else if( id == TraceMessageDataAggregator::DrillerId() ) - { - return aznew TraceMessageDataAggregator(m_identity); - } - else if (id == ProfilerDataAggregator::DrillerId() ) - { - return aznew ProfilerDataAggregator(m_identity); - } - else if(id == CarrierDataAggregator::DrillerId()) - { - return aznew CarrierDataAggregator(m_identity); - } - else if(id == ReplicaDataAggregator::DrillerId()) - { - return aznew ReplicaDataAggregator(m_identity); - } - else if(id == VRAM::VRAMDataAggregator::DrillerId()) - { - return aznew VRAM::VRAMDataAggregator(m_identity); - } - else if (id == EventTraceDataAggregator::DrillerId()) - { - return aznew EventTraceDataAggregator(m_identity); - } - // IMPORTANT: Add new aggregators here - - return createUnsupported ? aznew UnsupportedDataAggregator(id) : nullptr; - } - - void DrillerDataContainer::ProcessIncomingDrillerData(const char* streamIdentifier, const void* data, size_t dataSize) - { - AZ_Assert(m_dataHandler,"You must have a valid data handler parser to parse the data!"); - m_dataHandler->ProcessStream(streamIdentifier, data, static_cast(dataSize)); - } - - void DrillerDataContainer::OnDrillerConnectionLost() - { - StopDrilling(); - } - - void DrillerDataContainer::StartDrilling() - { - DrillerEvent::ResetGlobalEventId(); - - AzFramework::DrillerListType drillersToStart; - for(DrillerNetworkMessages::AggregatorList::iterator it = m_aggregators.begin(); it != m_aggregators.end(); ++it) - { - (*it)->Reset(); - - if ((*it)->IsCaptureEnabled()) - { - drillersToStart.push_back((*it)->GetDrillerId()); - } - } - if (drillersToStart.size()) - { - delete m_dataHandler; - m_dataHandler = aznew DrillerDataHandler(m_identity, this); - - AzFramework::DrillerRemoteSession::StartDrilling(drillersToStart, m_tmpCaptureFilename.c_str()); - } - } - - void DrillerDataContainer::LoadCaptureData(const char* fileName) - { - DrillerEvent::ResetGlobalEventId(); - // Reset data - DestroyAggregators(); - - AZStd::string baseFilename( fileName ); - - delete m_dataHandler; - m_dataHandler = aznew DrillerDataHandler(m_identity, this); - AzFramework::DrillerRemoteSession::LoadCaptureData(fileName); - } - - void DrillerDataContainer::CloseCaptureData() - { - StopDrilling(); - DestroyAggregators(); - } - - void DrillerDataContainer::Reflect(AZ::ReflectContext* context) - { - MemoryDataAggregator::Reflect(context); - TraceMessageDataAggregator::Reflect(context); - ProfilerDataAggregator::Reflect(context); - ReplicaDataAggregator::Reflect(context); - } - -}//namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.h b/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.h deleted file mode 100644 index 4aebfe2edc..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.h +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_DRILLER_DATA_CONTAINER -#define DRILLER_DRILLER_DATA_CONTAINER - -#include - -#include "DrillerNetworkMessages.h" - -#include "AzFramework/Driller/RemoteDrillerInterface.h" - -namespace DH -{ - namespace Debug - { - class DrillerInputMemoryStream; - } -} - -namespace Driller -{ - class DrillerDataHandler; - - /** - * Driller data container. Contains all the data (aggregators) - * for a driller session. It interfaces with with DrillerSession - * for local file caching (TODO) and remote data transfer. - */ - class DrillerDataContainer - : public AzFramework::DrillerRemoteSession - , public AzFramework::DrillerNetworkConsoleEventBus::Handler - { - friend class DrillerDataHandler; - - public: - AZ_CLASS_ALLOCATOR(DrillerDataContainer, AZ::SystemAllocator, 0) - - DrillerDataContainer(int identity, const char* tmpCaptureFilename); - ~DrillerDataContainer(); - - ////////////////////////////////////////////////////////////////////////// - // DrillerRemoteSession - virtual void ProcessIncomingDrillerData(const char* streamIdentifier, const void* data, size_t dataSize); - virtual void OnDrillerConnectionLost(); - ////////////////////////////////////////////////////////////////////////// - - ////////////////////////////////////////////////////////////////////////// - // DrillerNetworkConsoleEvents - virtual void OnReceivedDrillerEnumeration(const AzFramework::DrillerInfoListType& availableDrillers); - ////////////////////////////////////////////////////////////////////////// - - void StartDrilling(); - void LoadCaptureData(const char* fileName); - void CloseCaptureData(); - void CreateAggregators(); - - protected: - void DestroyAggregators(); - Aggregator* CreateAggregator(AZ::u32 id, bool createUnsupported = false); - - DrillerNetworkMessages::AggregatorList m_aggregators; - DrillerDataHandler* m_dataHandler; - AzFramework::DrillerInfoListType m_availableDrillers; - AZStd::string m_tmpCaptureFilename; - int m_identity; - - public: - // data container is the one place that knows about all the aggregators - // and indeed is responsible for creating them - // and thus the best place to centralize their reflection - static void Reflect(AZ::ReflectContext* context); - }; -} - -#endif //DRILLER_DRILLER_DATA_CONTAINER -#pragma once diff --git a/Code/Tools/Standalone/Source/Driller/DrillerDataTypes.h b/Code/Tools/Standalone/Source/Driller/DrillerDataTypes.h deleted file mode 100644 index 128b2f381a..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerDataTypes.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_DATATYPES_H -#define DRILLER_DATATYPES_H - -#include - -namespace Driller -{ - typedef AZ::s32 FrameNumberType; - typedef AZ::s64 EventNumberType; - - static const EventNumberType kInvalidEventIndex = -1; - - enum class CaptureMode - { - Unknown, - Configuration, - Capturing, - Inspecting - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/DrillerEvent.cpp b/Code/Tools/Standalone/Source/Driller/DrillerEvent.cpp deleted file mode 100644 index e16d6ee8d4..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerEvent.cpp +++ /dev/null @@ -1,16 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "DrillerEvent.h" - -namespace Driller -{ - ////////////////////////////////////////////////////////////////////////// - // Globals - unsigned int DrillerEvent::s_globalEventId = 0; -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/DrillerEvent.h b/Code/Tools/Standalone/Source/Driller/DrillerEvent.h deleted file mode 100644 index 619a82de60..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerEvent.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_DRILLER_EVENT_H -#define DRILLER_DRILLER_EVENT_H - -#include - -namespace Driller -{ - class Aggregator; - - /** - * Base class for a driller events. All events collected in aggregators should use this class as a base. - * - * IMPORTANT: It's very important to note that DrillerEvents will NEVER be removed during a driller session - * this allows you to RELY on the fact that data which the event contains will be present at all times. This is important - * because it's heavily used to support StepBackward/StepForward in sequential driller events (almost all driller events are deltas - * and in that sense they are sequential - we can't just jump to a state directly). - */ - class DrillerEvent - { - public: - AZ_RTTI(DrillerEvent, "{3B0B15CF-A359-47AA-B8D3-DCEFA39BD097}"); - DrillerEvent(unsigned int eventType) - : m_eventType(eventType) - , m_globalEventId(s_globalEventId++) {} - virtual ~DrillerEvent() {} - - virtual void StepForward(Aggregator* data) = 0; - virtual void StepBackward(Aggregator* data) = 0; - - static inline unsigned int GetNumGlobalEvents() { return s_globalEventId; } - static inline void ResetGlobalEventId() { s_globalEventId = 0; } - - unsigned int GetGlobalEventId() const { return m_globalEventId; } - unsigned int GetEventType() const { return m_eventType; } - - protected: - unsigned int m_eventType; - unsigned int m_globalEventId; ///< Event unique ID, which is the global event index (in order) too. - - private: - static unsigned int s_globalEventId; ///< Current number of events used in all aggregators. - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/DrillerMainChannelsView.ui b/Code/Tools/Standalone/Source/Driller/DrillerMainChannelsView.ui deleted file mode 100644 index f3fec8d95e..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerMainChannelsView.ui +++ /dev/null @@ -1,147 +0,0 @@ - - - channelsViewWidget - - - - 0 - 0 - 1041 - 777 - - - - Channels View - - - - 0 - - - 2 - - - 2 - - - 2 - - - 2 - - - - - - 0 - 0 - - - - Qt::ScrollBarAlwaysOn - - - Qt::ScrollBarAlwaysOff - - - true - - - Qt::AlignJustify|Qt::AlignTop - - - - - 0 - 0 - 1018 - 591 - - - - - 2 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - - - - Qt::Horizontal - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 20 - 25 - - - - - - - - - - - - 0 - 0 - - - - - 0 - 128 - - - - - - - - - Driller::CombinedEventsControl - QWidget -
combinedeventscontrol.hxx
- 1 -
- - Driller::AnnotationHeaderView_Events - QWidget -
Source/riller/Annotations/annotationsheaderview_events.hxx
- 1 -
- - UIFramework::DHAutoSizingScrollArea - QScrollArea -
UICore/DHAutoSizingScrollArea.hxx
- 1 -
-
- - -
diff --git a/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.cpp b/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.cpp deleted file mode 100644 index 4fa06ecdc0..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.cpp +++ /dev/null @@ -1,509 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "DrillerMainWindow.hxx" -#include - -#include "DrillerCaptureWindow.hxx" - -#include "DrillerMainWindowMessages.h" -#include "DrillerAggregator.hxx" -#include "ChannelControl.hxx" -#include "CombinedEventsControl.hxx" -#include "DrillerDataContainer.h" -#include "Workspaces/Workspace.h" - -#include -#include -#include -#include -#include -#include - -#include - -#include - -#include - -#include -#include -#include -#include -#include -#include - -namespace Driller::MainWindow -{ - const char* drillerDebugName = "Driller"; -} - -namespace Driller -{ - class DrillerMainWindowSavedState - : public AzToolsFramework::MainWindowSavedState - { - public: - AZ_RTTI(DrillerMainWindowSavedState, "{77A8D5DB-38EB-4F9B-BEA2-F42D725A8177}", AzToolsFramework::MainWindowSavedState); - AZ_CLASS_ALLOCATOR(DrillerMainWindowSavedState, AZ::SystemAllocator, 0); - - AZStd::string m_priorSaveFolder; - AZStd::string m_priorOpenFolder; - - DrillerMainWindowSavedState() {} - - void Init(const QByteArray& windowState, const QByteArray& windowGeom) - { - AzToolsFramework::MainWindowSavedState::Init(windowState, windowGeom); - } - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_priorSaveFolder", &DrillerMainWindowSavedState::m_priorSaveFolder) - ->Field("m_priorOpenFolder", &DrillerMainWindowSavedState::m_priorOpenFolder) - ->Version(8); - } - } - }; - - // WORKSPACES are files loaded and stored independent of the global application - // designed to be used for DRL data specific view settings and to pass around - class DrillerMainWindowWorkspace - : public AZ::UserSettings - { - public: - AZ_RTTI(DrillerMainWindowWorkspace, "{E7DAC981-84E9-490E-AF1B-DADC116B3B10}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(DrillerMainWindowWorkspace, AZ::SystemAllocator, 0); - - AZStd::vector m_openDataFileNames; - - DrillerMainWindowWorkspace() {} - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_openDataFileNames", &DrillerMainWindowWorkspace::m_openDataFileNames) - ->Version(8); - } - } - }; -} - -namespace Driller -{ - extern AZ::Uuid ContextID; - - Driller::DrillerMainWindow* s_drillerMainWindowScriptPtr = NULL; // for script access - - int DrillerMainWindow::m_ascendingIdentity = 0; - - ////////////////////////////////////////////////////////////////////////// - //DrillerMainWindow - DrillerMainWindow::DrillerMainWindow(QWidget* parent, Qt::WindowFlags flags) - : QMainWindow(parent, flags) - { - s_drillerMainWindowScriptPtr = this; - - m_isLoadingFile = false; - m_panningMainView = false; - m_panningMainViewStartPoint = 0; - - m_gui = azcreate(Ui::DrillerMainWindow, ()); - m_gui->setupUi(this); - - QMenu* theMenu = new QMenu(this); - (void)theMenu->addAction( - "Close Profiler App", - this, - SLOT(OnMenuCloseCurrentWindow()), - QKeySequence("Alt+F4") - ); - - EBUS_EVENT(AzToolsFramework::FrameworkMessages::Bus, PopulateApplicationMenu, theMenu); - menuBar()->insertMenu(m_gui->menuDriller->menuAction(), theMenu); - - connect(m_gui->actionContract, SIGNAL(triggered()), this, SLOT(OnContractAllChannels())); - connect(m_gui->actionExpand, SIGNAL(triggered()), this, SLOT(OnExpandAllChannels())); - connect(m_gui->actionDisable, SIGNAL(triggered()), this, SLOT(OnDisableAllChannels())); - connect(m_gui->actionEnable, SIGNAL(triggered()), this, SLOT(OnEnableAllChannels())); - - DrillerDataViewMessages::Handler::BusConnect(); - - QTimer::singleShot(0, this, SLOT(RestoreWindowState())); - - AzFramework::TargetManagerClient::Bus::Handler::BusConnect(); - - m_gui->actionSave->setEnabled(false); - m_gui->actionSaveWorkspace->setEnabled(true); - - // default identity == 0 Live tab - auto captureWindow = aznew DrillerCaptureWindow(CaptureMode::Configuration, m_ascendingIdentity, this); - captureWindow->setAttribute(Qt::WA_DeleteOnClose, true); - - m_captureWindows.insert(AZStd::make_pair(captureWindow, m_ascendingIdentity)); - ++m_ascendingIdentity; - - m_gui->tabbedContents->addTab(captureWindow, QString("LIVE")); - - // Enabling close buttons on our widgets, and hiding the close button on the live - // tab for now. - m_gui->tabbedContents->setTabsClosable(true); - m_gui->tabbedContents->tabBar()->setTabButton(0, QTabBar::ButtonPosition::RightSide, nullptr); - m_gui->tabbedContents->tabBar()->setTabButton(0, QTabBar::ButtonPosition::LeftSide, nullptr); - - connect(m_gui->tabbedContents, SIGNAL(currentChanged(int)), this, SLOT(OnTabChanged(int))); - connect(m_gui->tabbedContents, SIGNAL(tabCloseRequested(int)), this, SLOT(CloseTab(int))); - - connect(captureWindow, SIGNAL(destroyed(QObject*)), this, SLOT(OnCaptureWindowDestroyed(QObject*))); - - EBUS_EVENT(LegacyFramework::CustomMenusMessages::Bus, RegisterMenu, LegacyFramework::CustomMenusCommon::Driller::Application, theMenu); - EBUS_EVENT(LegacyFramework::CustomMenusMessages::Bus, RegisterMenu, LegacyFramework::CustomMenusCommon::Driller::DrillerMenu, m_gui->menuDriller); - EBUS_EVENT(LegacyFramework::CustomMenusMessages::Bus, RegisterMenu, LegacyFramework::CustomMenusCommon::Driller::Channels, m_gui->menuChannels); - - UpdateTabBarDisplay(); - } - - DrillerMainWindow::~DrillerMainWindow(void) - { - AzFramework::TargetManagerClient::Bus::Handler::BusDisconnect(); - - s_drillerMainWindowScriptPtr = NULL; - DrillerDataViewMessages::Handler::BusDisconnect(); - - azdestroy(m_gui); - } - - void DrillerMainWindow::OnTabChanged(int toWhich) - { - // first tab is always Live - if (toWhich) - { - m_gui->actionSave->setEnabled(true); - } - else - { - m_gui->actionSave->setEnabled(false); - } - } - - void DrillerMainWindow::CloseTab(int closeTab) - { - // We never want to close the live tab. - if (closeTab != 0) - { - DrillerCaptureWindow* captureWindow = static_cast(m_gui->tabbedContents->widget(closeTab)); - - if (captureWindow) - { - captureWindow->OnClose(); - } - } - } - - void DrillerMainWindow::OnCaptureWindowDestroyed(QObject* cWindow) - { - auto captureWindow = static_cast(cWindow); - m_gui->tabbedContents->removeTab(m_gui->tabbedContents->indexOf(captureWindow)); - m_captureWindows.erase(captureWindow); - - UpdateTabBarDisplay(); - } - - ////////////////////////////////////////////////////////////////////////// - // Data Viewer Request Messages - void DrillerMainWindow::EventRequestOpenFile(AZStd::string fileName) - { - OnOpenDrillerFile(fileName.c_str()); - } - void DrillerMainWindow::EventRequestOpenWorkspace(AZStd::string fileName) - { - OnOpenWorkspaceFile(fileName.c_str(), true); - } - - ////////////////////////////////////////////////////////////////////////// - // GUI Messages - void DrillerMainWindow::OnMenuCloseCurrentWindow() - { - AZ_TracePrintf(Driller::MainWindow::drillerDebugName, "Close requested\n"); - - SaveWindowState(); - - EBUS_EVENT(AzToolsFramework::FrameworkMessages::Bus, RequestMainWindowClose, ContextID); - } - - void DrillerMainWindow::OnOpen() - { - AZ_TracePrintf(Driller::MainWindow::drillerDebugName, "Open requested\n"); - - this->show(); - emit ShowYourself(); - } - - void DrillerMainWindow::OnClose() - { - AZ_TracePrintf(Driller::MainWindow::drillerDebugName, "Close requested of window (not file)\n"); - } - - void DrillerMainWindow::OnContractAllChannels() - { - static_cast(m_gui->tabbedContents->currentWidget())->OnContractAllChannels(); - } - void DrillerMainWindow::OnExpandAllChannels() - { - static_cast(m_gui->tabbedContents->currentWidget())->OnExpandAllChannels(); - } - void DrillerMainWindow::OnDisableAllChannels() - { - static_cast(m_gui->tabbedContents->currentWidget())->OnDisableAllChannels(); - } - void DrillerMainWindow::OnEnableAllChannels() - { - static_cast(m_gui->tabbedContents->currentWidget())->OnEnableAllChannels(); - } - - ////////////////////////////////////////////////////////////////////////// - // when the Editor Main window is requested to close, it is not destroyed. - ////////////////////////////////////////////////////////////////////////// - // Qt Events - void DrillerMainWindow::closeEvent(QCloseEvent* event) - { - OnMenuCloseCurrentWindow(); - event->ignore(); - } - - void DrillerMainWindow::showEvent(QShowEvent* /*event*/) - { - emit ShowYourself(); - } - void DrillerMainWindow::hideEvent(QHideEvent* /*event*/) - { - emit HideYourself(); - } - - bool DrillerMainWindow::OnGetPermissionToShutDown() - { - for (auto idx = 0; idx < m_gui->tabbedContents->count(); ++idx) - { - bool willShutDown = static_cast(m_gui->tabbedContents->widget(idx))->OnGetPermissionToShutDown(); - if (!willShutDown) - { - AZ_TracePrintf(Driller::MainWindow::drillerDebugName, " ShutDown Denied\n"); - return false; - } - } - - AZ_TracePrintf(Driller::MainWindow::drillerDebugName, " willShutDown == 1\n"); - return true; - } - - void DrillerMainWindow::SaveWindowState() - { - // build state and store it. - auto newState = AZ::UserSettings::CreateFind(AZ_CRC("DRILLER MAIN WINDOW STATE", 0x9c98b7f6), AZ::UserSettings::CT_GLOBAL); - newState->Init(saveState(), saveGeometry()); - - for (auto iter = m_captureWindows.begin(); iter != m_captureWindows.end(); ++iter) - { - iter->first->SaveWindowState(); - } - } - - void DrillerMainWindow::UpdateTabBarDisplay() - { - // We will always have one window open(live), and we don't want to show - // the tab bar unless we have more then one. - m_gui->tabbedContents->tabBar()->setVisible(m_captureWindows.size() > 1); - } - - void DrillerMainWindow::RestoreWindowState() // call this after you have rebuilt everything. - { - // load the state from our state block: - auto savedState = AZ::UserSettings::Find(AZ_CRC("DRILLER MAIN WINDOW STATE", 0x9c98b7f6), AZ::UserSettings::CT_GLOBAL); - if (savedState) - { - QByteArray geomData((const char*)savedState->m_windowGeometry.data(), (int)savedState->m_windowGeometry.size()); - QByteArray stateData((const char*)savedState->GetWindowState().data(), (int)savedState->GetWindowState().size()); - - restoreGeometry(geomData); - if (this->isMaximized()) - { - this->showNormal(); - this->showMaximized(); - } - restoreState(stateData); - } - else - { - // default state! - } - } - - void DrillerMainWindow::OnOpenDrillerFile() - { - QString capturePath; - - auto newState = AZ::UserSettings::CreateFind(AZ_CRC("DRILLER MAIN WINDOW STATE", 0x9c98b7f6), AZ::UserSettings::CT_GLOBAL); - if (!newState->m_priorOpenFolder.empty()) - { - capturePath = newState->m_priorOpenFolder.data(); - } - else - { - capturePath = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); - - if (capturePath.isEmpty()) - { - capturePath = QStandardPaths::writableLocation(QStandardPaths::TempLocation); - } - } - - QString fileName = QFileDialog::getOpenFileName(this, "Open Driller File", capturePath, "Driller Files (*.drl)"); - if (!fileName.isNull()) - { - OnOpenDrillerFile(fileName); - newState->m_priorOpenFolder = QFileInfo(fileName).dir().canonicalPath().toUtf8().data(); - } - } - - void DrillerMainWindow::OnOpenDrillerFile(QString fileName) - { - auto captureWindow = aznew DrillerCaptureWindow(CaptureMode::Inspecting, m_ascendingIdentity, this); - if (captureWindow) - { - m_captureWindows.insert(AZStd::make_pair(captureWindow, m_ascendingIdentity)); - ++m_ascendingIdentity; - - captureWindow->OnOpenDrillerFile(fileName); - connect(captureWindow, SIGNAL(destroyed(QObject*)), this, SLOT(OnCaptureWindowDestroyed(QObject*))); - - m_gui->tabbedContents->setCurrentIndex(m_gui->tabbedContents->addTab(captureWindow, fileName)); - UpdateTabBarDisplay(); - } - } - - void DrillerMainWindow::OnOpenWorkspaceFile() - { - QString capturePath; - - auto newState = AZ::UserSettings::CreateFind(AZ_CRC("DRILLER MAIN WINDOW STATE", 0x9c98b7f6), AZ::UserSettings::CT_GLOBAL); - if (!newState->m_priorOpenFolder.empty()) - { - capturePath = newState->m_priorOpenFolder.data(); - } - else - { - capturePath = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); - if (capturePath.isEmpty()) - { - capturePath = QStandardPaths::writableLocation(QStandardPaths::TempLocation); - } - } - - QString workspaceFileName = QFileDialog::getOpenFileName(this, tr("Open Workspace File"), capturePath, tr("Workspace Files (*.drw)")); - if (!workspaceFileName.isNull()) - { - OnOpenWorkspaceFile(workspaceFileName, true); - } - } - - void DrillerMainWindow::OnOpenWorkspaceFile(QString workspaceFileName, bool openDrillerFileAlso) - { - auto captureWindow = aznew DrillerCaptureWindow(CaptureMode::Inspecting, m_ascendingIdentity, this); - if (captureWindow) - { - m_captureWindows.insert(AZStd::make_pair(captureWindow, m_ascendingIdentity)); - ++m_ascendingIdentity; - - captureWindow->OnOpenWorkspaceFile(workspaceFileName, openDrillerFileAlso); - connect(captureWindow, SIGNAL(destroyed(QObject*)), this, SLOT(OnCaptureWindowDestroyed(QObject*))); - - m_gui->tabbedContents->setCurrentIndex(m_gui->tabbedContents->addTab(captureWindow, captureWindow->GetDataFileName())); - UpdateTabBarDisplay(); - } - } - - void DrillerMainWindow::OnApplyWorkspaceFile() - { - QString capturePath; - - auto newState = AZ::UserSettings::CreateFind(AZ_CRC("DRILLER MAIN WINDOW STATE", 0x9c98b7f6), AZ::UserSettings::CT_GLOBAL); - if (!newState->m_priorOpenFolder.empty()) - { - capturePath = newState->m_priorOpenFolder.data(); - } - else - { - capturePath = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); - if (capturePath.isEmpty()) - { - capturePath = QStandardPaths::writableLocation(QStandardPaths::TempLocation); - } - } - - QString fileName = QFileDialog::getOpenFileName(this, "Apply Workspace", capturePath, "Workspace Files (*.drw)"); - if (!fileName.isNull()) - { - static_cast(m_gui->tabbedContents->currentWidget())->OnApplyWorkspaceFile(fileName); - } - } - - void DrillerMainWindow::OnSaveWorkspaceFile() - { - QString capturePath; - - auto newState = AZ::UserSettings::CreateFind(AZ_CRC("DRILLER MAIN WINDOW STATE", 0x9c98b7f6), AZ::UserSettings::CT_GLOBAL); - if (!newState->m_priorOpenFolder.empty()) - { - capturePath = newState->m_priorOpenFolder.data(); - } - else - { - capturePath = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); - if (capturePath.isEmpty()) - { - capturePath = QStandardPaths::writableLocation(QStandardPaths::TempLocation); - } - } - - QString fileName = QFileDialog::getSaveFileName(this, "Save Workspace", capturePath, "Workspace Files (*.drw)"); - if (!fileName.isNull()) - { - static_cast(m_gui->tabbedContents->currentWidget())->OnSaveWorkspaceFile(fileName); - } - } - - ////////////////////////////////////////////////////////////////////////// - // Target Manager Messages - void DrillerMainWindow::Reflect(AZ::ReflectContext* context) - { - // data container is the one place that knows about all the aggregators - // and indeed is responsible for creating them - Driller::WorkspaceSettingsProvider::Reflect(context); - DrillerMainWindowWorkspace::Reflect(context); - DrillerMainWindowSavedState::Reflect(context); - DrillerCaptureWindow::Reflect(context); - - // reflect data for script, serialization, editing... - AZ::BehaviorContext* behaviorContext = azrtti_cast(context); - if (behaviorContext) - { - behaviorContext->Class("DrillerMainWindow")-> - Method("ShowWindow", &DrillerMainWindow::OnOpen)-> - Method("HideWindow", &DrillerMainWindow::OnClose); - - behaviorContext->Property("DrillerMainWindow", BehaviorValueGetter(&s_drillerMainWindowScriptPtr), nullptr); - } - } -}//namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.hxx b/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.hxx deleted file mode 100644 index f8d5cfa233..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.hxx +++ /dev/null @@ -1,139 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_DRILLERMAINWINDOW_H -#define DRILLER_DRILLERMAINWINDOW_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include -#include -#include -#include "Workspaces/Workspace.h" -#include "DrillerNetworkMessages.h" -#include "DrillerMainWindowMessages.h" - -#pragma once - -class QMenu; -class QAction; -class QToolbar; -class QDockWidget; -class QSettings; - -#include -#endif - -namespace Ui -{ - class DrillerMainWindow; -} - -namespace Driller -{ - class ChannelControl; - class DrillerDataContainer; - class CombinedEventsControl; - class DrillerCaptureWindow; - - /* - Driller Main Window : Now with simultaneous data sets - - Home of the real commands, channels created from external aggregators when connected, and the floating control panel. - All inputs end up here where they are interpreted and passed downwards to all channels, to maintain consistency. - */ - - ////////////////////////////////////////////////////////////////////////// - //Main Window - class DrillerMainWindow - : public QMainWindow - , public Driller::DrillerDataViewMessages::Bus::Handler - , private AzFramework::TargetManagerClient::Bus::Handler - { - Q_OBJECT; - public: - AZ_TYPE_INFO(DrillerMainWindow, "{91E48678-AEF8-474F-BB20-DDC51ACAA43A}"); - AZ_CLASS_ALLOCATOR(DrillerMainWindow,AZ::SystemAllocator,0); - DrillerMainWindow(QWidget* parent = NULL, Qt::WindowFlags flags = Qt::WindowFlags()); - virtual ~DrillerMainWindow(void); - DrillerMainWindow(const DrillerMainWindow&) - { - // TODO: Once AZ_NO_COPY macros is in the branch in use it! - AZ_Assert(false, "You can't copy this class!"); - } - - bool OnGetPermissionToShutDown(); - - public: - - // Data Viewer request messages - void EventRequestOpenFile(AZStd::string fileName) override; - void EventRequestOpenWorkspace(AZStd::string fileName) override; - - public: - // MainWindow Messages and states. - void SaveWindowState(); - - private: - // internal workings - void UpdateTabBarDisplay(); - - protected: - static int m_ascendingIdentity; - AZStd::map m_captureWindows; - - // Qt Events - virtual void closeEvent(QCloseEvent* event); - virtual void showEvent( QShowEvent * event ); - virtual void hideEvent( QHideEvent * event ); - - bool m_panningMainView; - int m_panningMainViewStartPoint; - - QString m_tmpCaptureFilename; - QString m_currentDataFilename; - - bool m_isLoadingFile; - bool m_bForceNextScrub; - - public slots: - void RestoreWindowState(); - void OnMenuCloseCurrentWindow(); - void OnOpen(); - void OnClose(); - void OnContractAllChannels(); - void OnExpandAllChannels(); - void OnDisableAllChannels(); - void OnEnableAllChannels(); - void OnOpenDrillerFile(); - void OnOpenDrillerFile(QString fileName); - void OnOpenWorkspaceFile(); // prompt user - void OnOpenWorkspaceFile(QString fileName, bool openDrillerFileAlso); // just open it - void OnApplyWorkspaceFile(); - void OnSaveWorkspaceFile(); - void OnCaptureWindowDestroyed(QObject*); - void OnTabChanged(int toWhich); - void CloseTab(int closeTab); - -signals: - void ScrubberFrameUpdate( int frame ); - void ShowYourself(); - void HideYourself(); - - public: - static void Reflect(AZ::ReflectContext* context); - - private: - - Ui::DrillerMainWindow* m_gui; - }; -} - -#endif //DRILLER_DRILLERMAINWINDOW_H diff --git a/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.ui b/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.ui deleted file mode 100644 index 4352c3dba1..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.ui +++ /dev/null @@ -1,245 +0,0 @@ - - - DrillerMainWindow - - - - 0 - 0 - 704 - 595 - - - - - 0 - 0 - - - - Profiler (PREVIEW) - - - - :/general/hex_profiler_icon:/general/hex_profiler_icon - - - QMainWindow::AllowNestedDocks|QMainWindow::AnimatedDocks - - - - - 0 - - - 2 - - - 2 - - - 2 - - - 2 - - - - - -1 - - - - - - - - - 0 - 0 - 704 - 21 - - - - - File - - - - - - - - - - Channels - - - - - - - - - - Capture - - - Start Capturing Data From the Active Drills - - - C - - - - - Freeze - - - Stop Capturing From the Drills and Freeze the Data - - - S - - - - - Contract All - - - - - Expand All - - - - - Disable All - - - Do not record any drill data - - - - - Enable All - - - Record incoming drill data - - - - - Open Data - - - Ctrl+O - - - - - Open Workspace - - - Replace your current environment with both DRL data and a matching Workspace setup - - - - - Apply Workspace - - - Apply this Workspace setup but leave the current DRL data untouched - - - - - Save Data - - - Ctrl+S - - - - - Save Workspace - - - - - - - - - actionOpen - triggered() - DrillerMainWindow - OnOpenDrillerFile() - - - -1 - -1 - - - 387 - 302 - - - - - actionOpenWorkspace - triggered() - DrillerMainWindow - OnOpenWorkspaceFile() - - - -1 - -1 - - - 387 - 302 - - - - - actionApplyWorkspace - triggered() - DrillerMainWindow - OnApplyWorkspaceFile() - - - -1 - -1 - - - 387 - 302 - - - - - actionSaveWorkspace - triggered() - DrillerMainWindow - OnSaveWorkspaceFile() - - - -1 - -1 - - - 387 - 302 - - - - - - OnOpenDrillerFile() - OnOpenWorkspaceFile() - OnApplyWorkspaceFile() - OnSaveWorkspaceFile() - - diff --git a/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.h b/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.h deleted file mode 100644 index b90ccce66d..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.h +++ /dev/null @@ -1,128 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_DRILLERMAINWINDOWMESSAGES_H -#define DRILLER_DRILLERMAINWINDOWMESSAGES_H - -#include -#include - -#include -#include - -#pragma once - -namespace Driller -{ - // messages going FROM the Driller Main Window Context TO anyone interested in frame scrubber control - class DrillerMainWindowMessages - : public AZ::EBusTraits - { - public: - ////////////////////////////////////////////////////////////////////////// - // Bus configuration - static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::ById; // components have an actual ID that they report back on - static const AZ::EBusHandlerPolicy HandlerPolicy = AZ:: EBusHandlerPolicy::Multiple; // we can have multiple listeners - ////////////////////////////////////////////////////////////////////////// - typedef int BusIdType; - typedef AZ::EBus Bus; - typedef Bus::Handler Handler; - - virtual void FrameChanged(FrameNumberType frame) = 0; - virtual void PlaybackLoopBeginChanged(FrameNumberType frame){(void)frame; } - virtual void PlaybackLoopEndChanged(FrameNumberType frame){(void)frame; } - /// Important: eventIndex is the event index for the aggregator, NOT global event id. - virtual void EventChanged(EventNumberType eventIndex) = 0; - - virtual ~DrillerMainWindowMessages() {} - }; - - // messages going FROM the main window TO (data viewers) anyone interested in event actions - class DrillerEventWindowMessages - : public AZ::EBusTraits - { - public: - ////////////////////////////////////////////////////////////////////////// - // Bus configuration - static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::ById; // components have an actual ID that they report back on - static const AZ::EBusHandlerPolicy HandlerPolicy = AZ:: EBusHandlerPolicy::Multiple; // we can have multiple listeners - ////////////////////////////////////////////////////////////////////////// - typedef int BusIdType; - typedef AZ::EBus Bus; - typedef Bus::Handler Handler; - - virtual void EventFocusChanged(EventNumberType eventIdx) = 0; - - virtual ~DrillerEventWindowMessages() {} - }; - - // messages going FROM the main window TO (aggregators and their data viewers) anyone using Driller Workspace files - class WorkspaceSettingsProvider; - class DrillerWorkspaceWindowMessages - : public AZ::EBusTraits - { - public: - - ////////////////////////////////////////////////////////////////////////// - // Bus configuration - static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::ById; // components have an actual ID that they report back on - static const AZ::EBusHandlerPolicy HandlerPolicy = AZ:: EBusHandlerPolicy::Multiple; // we can have multiple listeners - ////////////////////////////////////////////////////////////////////////// - typedef int BusIdType; - typedef AZ::EBus Bus; - typedef Bus::Handler Handler; - - // overlay anything you want from the provider into your internal state. - virtual void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*) = 0; - - // now open windows / etc that are specified in your internal saved state. - virtual void ActivateWorkspaceSettings(WorkspaceSettingsProvider*) = 0; - virtual void SaveSettingsToWorkspace(WorkspaceSettingsProvider*) = 0; - - virtual ~DrillerWorkspaceWindowMessages() {} - }; - - // messages going FROM any data viewers TO the global window to request action - class DrillerDataViewMessages - : public AZ::EBusTraits - { - public: - ////////////////////////////////////////////////////////////////////////// - // Bus configuration - static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::Single; // we have one bus that we always broadcast to - static const AZ::EBusHandlerPolicy HandlerPolicy = AZ:: EBusHandlerPolicy::Multiple; // we can have multiple listeners - ////////////////////////////////////////////////////////////////////////// - typedef AZ::EBus Bus; - typedef Bus::Handler Handler; - - //virtual void EventRequestEventFocus(AZ::s64 eventIdx) = 0; - virtual void EventRequestOpenFile(AZStd::string fileName) = 0; - virtual void EventRequestOpenWorkspace(AZStd::string fileName) = 0; - - virtual ~DrillerDataViewMessages() {} - }; - - // messages going FROM any data viewers TO the capture window - class DrillerCaptureWindowInterface : public AZ::EBusTraits - { - public: - ////////////////////////////////////////////////////////////////////////// - // Bus configuration - static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::ById; // components have an actual ID that they report back on - static const AZ::EBusHandlerPolicy HandlerPolicy = AZ:: EBusHandlerPolicy::Multiple; // we can have multiple listeners - ////////////////////////////////////////////////////////////////////////// - typedef int BusIdType; - - virtual void ScrubToFrameRequest(FrameNumberType frameType) = 0; - }; - - typedef AZ::EBus DrillerCaptureWindowRequestBus; - -} - -#endif//DRILLER_DRILLERMAINWINDOWMESSAGES_H diff --git a/Code/Tools/Standalone/Source/Driller/DrillerNetworkMessages.h b/Code/Tools/Standalone/Source/Driller/DrillerNetworkMessages.h deleted file mode 100644 index ca39689278..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerNetworkMessages.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_DRILLERNETWORKMESSAGES_H -#define DRILLER_DRILLERNETWORKMESSAGES_H - -#include -#include - -#include - -#pragma once - -namespace Driller -{ - // forward declarations - class Aggregator; - - // messages going FROM the Driller Network TO anyone interested in watching data (ie. driller main window) - - class DrillerNetworkMessages - : public AZ::EBusTraits - { - public: - ////////////////////////////////////////////////////////////////////////// - // Bus configuration - static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::ById; // components have an actual ID that they report back on - static const AZ::EBusHandlerPolicy HandlerPolicy = AZ:: EBusHandlerPolicy::Multiple; // we can have multiple listeners - ////////////////////////////////////////////////////////////////////////// - typedef int BusIdType; - typedef AZ::EBus Bus; - typedef Bus::Handler Handler; - - typedef AZStd::vector AggregatorList; - - virtual void ConnectedToNetwork() = 0; - virtual void NewAggregatorList(AggregatorList& theList) = 0; - virtual void AddAggregator(Aggregator& theAggregator) = 0; - virtual void DiscardAggregators() = 0; - virtual void DisconnectedFromNetwork() = 0; - virtual void EndFrame(int frame) = 0; - virtual void NewAggregatorsAvailable() = 0; - - virtual ~DrillerNetworkMessages() {} - }; -} - -#endif//DRILLER_DRILLERNETWORKMESSAGES_H diff --git a/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.cpp b/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.cpp deleted file mode 100644 index 25bc2871a9..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.cpp +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#include "DrillerOperationTelemetryEvent.h" - -namespace Driller -{ - static int k_windowId = 0; - - DrillerWindowLifepsanTelemetry::DrillerWindowLifepsanTelemetry(const char* windowName) - : m_windowId(k_windowId++) - , m_windowName(windowName) - { - m_telemetryEvent.SetAttribute("WindowOpen", m_windowName); - m_telemetryEvent.SetMetric("WindowId", m_windowId); - m_telemetryEvent.Log(); - m_telemetryEvent.ResetEvent(); - } - - DrillerWindowLifepsanTelemetry::~DrillerWindowLifepsanTelemetry() - { - m_telemetryEvent.SetAttribute("WindowClose", m_windowName); - m_telemetryEvent.SetMetric("WindowId", m_windowId); - m_telemetryEvent.Log(); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.h b/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.h deleted file mode 100644 index 8df7806ba3..0000000000 --- a/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_DRILLEROPERATIONTELEMETRYEVENT_H -#define DRILLER_DRILLEROPERATIONTELEMETRYEVENT_H - -#include - -#include "Source/Telemetry/TelemetryEvent.h" - -namespace Driller -{ - // A class for any general Driller Operations(i.e. something which doesn't strictly related - // to a specific window, for those a localized window operation should be used). - class DrillerOperationTelemetryEvent - : public Telemetry::TelemetryEvent - { - public: - DrillerOperationTelemetryEvent() - : Telemetry::TelemetryEvent("DrillerOperation") - { - } - }; - - class DrillerWindowLifepsanTelemetry - { - public: - DrillerWindowLifepsanTelemetry(const char* windowName); - virtual ~DrillerWindowLifepsanTelemetry(); - - private: - int m_windowId; - AZStd::string m_windowName; - DrillerOperationTelemetryEvent m_telemetryEvent; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.cpp deleted file mode 100644 index 1d90140dd4..0000000000 --- a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.cpp +++ /dev/null @@ -1,224 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include -#include - -#include -#include - -#include "EventTraceDataAggregator.h" -#include "EventTraceEvents.h" - -#include - -#include -#include -#include -#include - -namespace Driller -{ - namespace Platform - { - void LaunchExplorerSelect(const QString& filePath); - } - - namespace - { - const QString ExportFolder = "EventTrace"; - } - - EventTraceDataAggregator::EventTraceDataAggregator(int identity) - : Aggregator(identity) - { - m_parser.SetAggregator(this); - } - - EventTraceDataAggregator::~EventTraceDataAggregator() - { - } - - float EventTraceDataAggregator::ValueAtFrame(FrameNumberType frame) - { - const float maxEventsPerFrame = 1000.0f; // just a scale number - float numEventsPerFrame = static_cast(NumOfEventsAtFrame(frame)); - return AZStd::GetMin(numEventsPerFrame / maxEventsPerFrame, 1.0f) * 2.0f - 1.0f; - } - - QColor EventTraceDataAggregator::GetColor() const - { - return QColor(0, 255, 255); - } - - QString EventTraceDataAggregator::GetName() const - { - return "Chrome Tracing"; - } - - QString EventTraceDataAggregator::GetChannelName() const - { - return ChannelName(); - } - - QString EventTraceDataAggregator::GetDescription() const - { - return "Timed scope driller"; - } - - QString EventTraceDataAggregator::GetToolTip() const - { - return "Timed scope event profiler which exports to Chrome Tracing"; - } - - AZ::Uuid EventTraceDataAggregator::GetID() const - { - return AZ::Uuid("{3E47A533-55A4-4E36-B420-063270E4D5DF}"); - } - - rapidjson::Document EventTraceDataAggregator::MakeJsonRepresentation( - FrameNumberType frameBegin, - FrameNumberType frameEnd) const - { - AZ_Assert(frameBegin >= 0 && frameEnd < GetFrameCount() && frameBegin <= frameEnd, "Invalid frame range for chrome trace export"); - - rapidjson::Document rootObj(rapidjson::kObjectType); - auto& allocator = rootObj.GetAllocator(); - - rapidjson::Value traceEvents(rapidjson::kArrayType); - - auto addMemberStr = [&allocator](rapidjson::Value& obj, const char* key, const char* str) - { - rapidjson::Value k(rapidjson::StringRef(key), allocator); - rapidjson::Value v(rapidjson::StringRef(str), allocator); - obj.AddMember(k.Move(), v.Move(), allocator); - }; - - auto addMemberU64 = [&allocator](rapidjson::Value& obj, const char* key, AZ::u64 value) - { - rapidjson::Value k(rapidjson::StringRef(key), allocator); - rapidjson::Value v(static_cast(value)); - obj.AddMember(k.Move(), v.Move(), allocator); - }; - - auto addMemberObj = [&allocator](rapidjson::Value& obj, const char* key, rapidjson::Value& value) - { - rapidjson::Value k(rapidjson::StringRef(key), allocator); - obj.AddMember(k.Move(), value.Move(), allocator); - }; - - const EventNumberType FrameBeginIndex = GetFirstIndexAtFrame(frameBegin); - const EventNumberType FrameEndIndex = GetFirstIndexAtFrame(frameEnd) + NumOfEventsAtFrame(frameEnd); - - for (EventNumberType index = FrameBeginIndex; index < FrameEndIndex; ++index) - { - const DrillerEvent& event = static_cast(*GetEvents()[index]); - - switch (event.GetEventType()) - { - case EventTrace::ET_SLICE: - { - const EventTrace::SliceEvent& slice = static_cast(event); - rapidjson::Value obj(rapidjson::kObjectType); - addMemberStr(obj, "name", slice.m_Name); - addMemberStr(obj, "cat", slice.m_Category); - addMemberStr(obj, "ph", "X"); - addMemberU64(obj, "ts", slice.m_Timestamp); - addMemberU64(obj, "dur", slice.m_Duration); - addMemberU64(obj, "tid", slice.m_ThreadId); - addMemberU64(obj, "pid", 0); - - traceEvents.PushBack(obj, allocator); - } break; - - case EventTrace::ET_INSTANT: - { - const EventTrace::InstantEvent& instant = static_cast(event); - - rapidjson::Value obj(rapidjson::kObjectType); - addMemberStr(obj, "name", instant.m_Name); - addMemberStr(obj, "cat", instant.m_Category); - addMemberStr(obj, "ph", "i"); - addMemberU64(obj, "ts", instant.m_Timestamp); - addMemberStr(obj, "s", instant.GetScopeName()); - addMemberU64(obj, "tid", instant.m_ThreadId); - addMemberU64(obj, "pid", 0); - - traceEvents.PushBack(obj, allocator); - - } break; - - case EventTrace::ET_THREAD_INFO: - { - const EventTrace::ThreadInfoEvent& threadInfo = static_cast(event); - rapidjson::Value obj(rapidjson::kObjectType); - - rapidjson::Value args(rapidjson::kObjectType); - addMemberStr(args, "name", threadInfo.m_Name); - - addMemberStr(obj, "name", "thread_name"); - addMemberStr(obj, "ph", "M"); - addMemberU64(obj, "pid", 0); - addMemberU64(obj, "tid", threadInfo.m_ThreadId); - addMemberObj(obj, "args", args); - - traceEvents.PushBack(obj, allocator); - } break; - } - } - - addMemberObj(rootObj, "traceEvents", traceEvents); - return rootObj; - } - - QWidget* EventTraceDataAggregator::DrillDownRequest(FrameNumberType atFrame) - { - const FrameNumberType FrameCountToExport = 10; - const FrameNumberType FrameCountToExportDiv2 = FrameCountToExport / 2; - - QString filename = "Frame_" + QString::number(atFrame) + ".chrometrace"; - QFileInfo fileInfo(QCoreApplication::applicationDirPath() + "/" + ExportFolder, filename); - ExportChromeTrace(fileInfo.absoluteFilePath(), atFrame - FrameCountToExportDiv2, atFrame + FrameCountToExportDiv2); - Platform::LaunchExplorerSelect(fileInfo.absoluteFilePath()); - return nullptr; - } - - void EventTraceDataAggregator::ExportChromeTrace(const QString& filename, FrameNumberType frameStart, FrameNumberType frameEnd) const - { - AZ::IO::SystemFile exportFile; - if (exportFile.Open(filename.toStdString().c_str(), AZ::IO::SystemFile::SF_OPEN_CREATE | AZ::IO::SystemFile::SF_OPEN_CREATE_PATH | AZ::IO::SystemFile::SF_OPEN_WRITE_ONLY)) - { - ExportChromeTrace(exportFile, frameStart, frameEnd); - } - exportFile.Close(); - } - - void EventTraceDataAggregator::ExportChromeTrace(AZ::IO::SystemFile& file, FrameNumberType frameStart, FrameNumberType frameEnd) const - { - frameStart = AZStd::max(frameStart, 0); - frameEnd = AZStd::min(frameEnd, (FrameNumberType)GetFrameCount() - 1); - - if (frameStart <= frameEnd) - { - rapidjson::Document jsonRep = MakeJsonRepresentation(frameStart, frameEnd); - - rapidjson::StringBuffer buffer; - rapidjson::Writer writer(buffer); - jsonRep.Accept(writer); - - file.Write(buffer.GetString(), buffer.GetSize()); - } - } - - void EventTraceDataAggregator::ExportColumnDescriptorToCSV(AZ::IO::SystemFile& file, CSVExportSettings* exportSettings) - { - (void)exportSettings; - ExportChromeTrace(file, 0, (FrameNumberType)GetFrameCount() - 1); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.h b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.h deleted file mode 100644 index 0437e04017..0000000000 --- a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.h +++ /dev/null @@ -1,91 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#pragma once - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include "EventTraceDataParser.h" - -#include -#include - -#include -#endif - -namespace Driller -{ - class EventTraceDataAggregator - : public Aggregator - { - Q_OBJECT; - public: - AZ_RTTI(EventTraceDataAggregator, "{D82CC9CF-5477-4A3E-8809-C064D19963F8}"); - AZ_CLASS_ALLOCATOR(EventTraceDataAggregator, AZ::SystemAllocator, 0); - - EventTraceDataAggregator(int identity = 0); - virtual ~EventTraceDataAggregator(); - - static AZ::u32 DrillerId() - { - return EventTraceDataParser::GetDrillerId(); - } - - AZ::u32 GetDrillerId() const override - { - return DrillerId(); - } - - static const char* ChannelName() - { - return "ChromeTracing"; - } - - AZ::Crc32 GetChannelId() const override - { - return AZ::Crc32(ChannelName()); - } - - AZ::Debug::DrillerHandlerParser* GetDrillerDataParser() override - { - return &m_parser; - } - - bool CanExportToCSV() const override - { - return true; - } - - void ExportColumnDescriptorToCSV(AZ::IO::SystemFile& file, CSVExportSettings* exportSettings) override; - - void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*) override {} - void ActivateWorkspaceSettings(WorkspaceSettingsProvider*) override {} - void SaveSettingsToWorkspace(WorkspaceSettingsProvider*) override {} - - public slots: - float ValueAtFrame(FrameNumberType frame) override; - QColor GetColor() const override; - QString GetChannelName() const override; - QString GetName() const override; - QString GetDescription() const override; - QString GetToolTip() const override; - AZ::Uuid GetID() const override; - void OptionsRequest() override {} - - QWidget* DrillDownRequest(FrameNumberType frame) override; - - private: - rapidjson::Document MakeJsonRepresentation(FrameNumberType frameStart, FrameNumberType frameEnd) const; - void ExportChromeTrace(AZ::IO::SystemFile& file, FrameNumberType frameStart, FrameNumberType frameEnd) const; - void ExportChromeTrace(const QString& filename, FrameNumberType frameStart, FrameNumberType frameEnd) const; - - EventTraceDataParser m_parser; - }; -} diff --git a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.cpp b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.cpp deleted file mode 100644 index 73f2452212..0000000000 --- a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.cpp +++ /dev/null @@ -1,106 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "EventTraceDataParser.h" -#include "EventTraceDataAggregator.h" -#include "EventTraceEvents.h" - -namespace Driller -{ - AZ::Debug::DrillerHandlerParser* EventTraceDataParser::OnEnterTag(AZ::u32 tagName) - { - AZ_Assert(m_data, "You must set a valid aggregator before we can process the data!"); - if (tagName == AZ_CRC("Slice")) - { - m_data->AddEvent(aznew EventTrace::SliceEvent()); - return this; - } - else if (tagName == AZ_CRC("Instant")) - { - m_data->AddEvent(aznew EventTrace::InstantEvent()); - return this; - } - else if (tagName == AZ_CRC("ThreadInfo")) - { - m_data->AddEvent(aznew EventTrace::ThreadInfoEvent()); - return this; - } - return nullptr; - } - - void EventTraceDataParser::OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode) - { - AZ_Assert(m_data, "You must set a valid aggregator before we can process the data!"); - - DrillerEvent& drillerEvent = static_cast(*m_data->GetEvents().back()); - - switch (drillerEvent.GetEventType()) - { - case EventTrace::ET_SLICE: - { - EventTrace::SliceEvent& slice = static_cast(drillerEvent); - if (dataNode.m_name == AZ_CRC("Name")) - { - slice.m_Name = dataNode.ReadPooledString(); - } - if (dataNode.m_name == AZ_CRC("Category")) - { - slice.m_Category = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("ThreadId")) - { - dataNode.Read(slice.m_ThreadId); - } - else if (dataNode.m_name == AZ_CRC("Timestamp")) - { - dataNode.Read(slice.m_Timestamp); - } - else if (dataNode.m_name == AZ_CRC("Duration")) - { - dataNode.Read(slice.m_Duration); - } - } break; - - case EventTrace::ET_INSTANT: - { - EventTrace::InstantEvent& instant = static_cast(drillerEvent); - if (dataNode.m_name == AZ_CRC("Name")) - { - instant.m_Name = dataNode.ReadPooledString(); - } - if (dataNode.m_name == AZ_CRC("Category")) - { - instant.m_Category = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("ThreadId")) - { - dataNode.Read(instant.m_ThreadId); - } - else if (dataNode.m_name == AZ_CRC("Timestamp")) - { - dataNode.Read(instant.m_Timestamp); - } - - } break; - - case EventTrace::ET_THREAD_INFO: - { - EventTrace::ThreadInfoEvent& threadInfo = static_cast(drillerEvent); - if (dataNode.m_name == AZ_CRC("Name")) - { - threadInfo.m_Name = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("ThreadId")) - { - dataNode.Read(threadInfo.m_ThreadId); - } - - } break; - } - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.h b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.h deleted file mode 100644 index b41dd1ee01..0000000000 --- a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#pragma once - -#include - -namespace Driller -{ - class EventTraceDataAggregator; - - class EventTraceDataParser - : public AZ::Debug::DrillerHandlerParser - { - public: - EventTraceDataParser() - : m_data(NULL) - {} - - static AZ::u32 GetDrillerId() - { - return AZ_CRC("EventTraceDriller"); - } - - void SetAggregator(EventTraceDataAggregator* data) - { - m_data = data; - } - - virtual AZ::Debug::DrillerHandlerParser* OnEnterTag(AZ::u32 tagName); - virtual void OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode); - - protected: - EventTraceDataAggregator* m_data; - }; -} diff --git a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceEvents.h b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceEvents.h deleted file mode 100644 index 6458a6729b..0000000000 --- a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceEvents.h +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#pragma once - -#include -#include - -namespace Driller -{ - namespace EventTrace - { - enum EventType - { - ET_SLICE, - ET_INSTANT, - ET_THREAD_INFO - }; - - class SliceEvent : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(SliceEvent, AZ::SystemAllocator, 0) - - SliceEvent() - : DrillerEvent(ET_SLICE) - , m_Name{ "" } - , m_Category{ "" } - , m_ThreadId{} - , m_Timestamp{} - , m_Duration{} - {} - - // no stepping as we can just traverse the list of events - virtual void StepForward(Aggregator* data) { (void)data; } - virtual void StepBackward(Aggregator* data) { (void)data; } - - const char* m_Name; - const char* m_Category; - size_t m_ThreadId; - AZStd::sys_time_t m_Timestamp; - AZStd::sys_time_t m_Duration; - }; - - class InstantEvent : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(InstantEvent, AZ::SystemAllocator, 0) - - InstantEvent() - : DrillerEvent(ET_INSTANT) - , m_Name{ "" } - , m_Category{ "" } - , m_ThreadId{} - , m_Timestamp{} - {} - - // no stepping as we can just traverse the list of events - virtual void StepForward(Aggregator* data) { (void)data; } - virtual void StepBackward(Aggregator* data) { (void)data; } - - const char* GetScopeName() const - { - return (m_ThreadId == 0) ? "g" : "t"; - } - - const char* m_Name; - const char* m_Category; - size_t m_ThreadId; - AZStd::sys_time_t m_Timestamp; - }; - - class ThreadInfoEvent : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(ThreadInfoEvent, AZ::SystemAllocator, 0) - - ThreadInfoEvent() - : DrillerEvent(ET_THREAD_INFO) - , m_ThreadId{} - , m_Name{ "" } - {} - - // no stepping as we can just traverse the list of events - virtual void StepForward(Aggregator* data) { (void)data; } - virtual void StepBackward(Aggregator* data) { (void)data; } - - size_t m_ThreadId; - const char* m_Name; - }; - } - -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/FilteredListView.cpp b/Code/Tools/Standalone/Source/Driller/FilteredListView.cpp deleted file mode 100644 index 66e32e7d05..0000000000 --- a/Code/Tools/Standalone/Source/Driller/FilteredListView.cpp +++ /dev/null @@ -1,212 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "Source/Driller/FilteredListView.hxx" -#include -#include - -#include -#include - -#include - -namespace Driller -{ - ///////////////////// - // FilteredListView - ///////////////////// - - FilteredListView::FilteredListView(QWidget* parent) - : QWidget(parent) - , m_gui(new Ui::FilteredListView()) - , m_enableCustomOrdering(true) - { - m_gui->setupUi(this); - - m_stringListModel.setStringList(m_stringList); - m_filteredModel.setSourceModel(&m_stringListModel); - - m_gui->listView->setModel(&m_filteredModel); - m_gui->listView->setEditTriggers(QAbstractItemView::NoEditTriggers); - - QObject::connect(m_gui->filter, SIGNAL(textChanged(const QString&)), this, SLOT(filterEdited(const QString&))); - QObject::connect(m_gui->moveUp, SIGNAL(clicked()), this, SLOT(moveSelectionUp())); - QObject::connect(m_gui->moveDown, SIGNAL(clicked()), this, SLOT(moveSelectionDown())); - - m_gui->moveUp->setAutoDefault(false); - m_gui->moveDown->setAutoDefault(false); - } - - FilteredListView::~FilteredListView() - { - delete m_gui; - } - - void FilteredListView::addItem(const char* item) - { - m_stringList.push_back(QString(item)); - m_stringListModel.setStringList(m_stringList); - } - - void FilteredListView::addItems(const QStringList& items) - { - m_stringList.append(items); - m_stringListModel.setStringList(m_stringList); - } - - void FilteredListView::removeItem(const char* item) - { - m_stringList.removeOne(QString(item)); - m_stringListModel.setStringList(m_stringList); - } - - void FilteredListView::removeItems(const QStringList& items) - { - for (const QString& item : items) - { - m_stringList.removeOne(item); - } - - m_stringListModel.setStringList(m_stringList); - } - - void FilteredListView::clearItems() - { - m_stringList.clear(); - m_stringListModel.setStringList(m_stringList); - } - - void FilteredListView::removeSelected() - { - const QModelIndexList& selectedIndexes = m_gui->listView->selectionModel()->selectedIndexes(); - - for (const QModelIndex& modelIndex : selectedIndexes) - { - QString item = modelIndex.data(Qt::DisplayRole).toString(); - - m_stringList.removeOne(item); - } - - m_gui->listView->selectionModel()->clearSelection(); - m_stringListModel.setStringList(m_stringList); - } - - const QStringList& FilteredListView::getAllItems() const - { - return m_stringList; - } - - void FilteredListView::getSelectedItems(QStringList& selectedItems) const - { - const QModelIndexList& selectedIndexes = m_gui->listView->selectionModel()->selectedIndexes(); - - for (const QModelIndex& modelIndex : selectedIndexes) - { - QString item = modelIndex.data(Qt::DisplayRole).toString(); - selectedItems.push_back(item); - } - } - - void FilteredListView::enableCustomOrdering(bool enabled) - { - m_enableCustomOrdering = enabled; - - setButtonsEnabled(m_enableCustomOrdering); - } - - void FilteredListView::filterEdited(const QString& eventFilter) - { - m_gui->listView->selectionModel()->clearSelection(); - m_filteredModel.setFilterRegExp(eventFilter); - setButtonsEnabled(eventFilter.isEmpty() && m_enableCustomOrdering); - } - - void FilteredListView::moveSelectionUp() - { - const QModelIndexList& selectedIndexes = m_gui->listView->selectionModel()->selectedIndexes(); - - AZStd::set sortedIndexes; - - for (const QModelIndex& index : selectedIndexes) - { - sortedIndexes.insert(index.row()); - } - - int lastSelectedRow = -1; - AZStd::unordered_set selectedRows; - - for (int row : sortedIndexes) - { - if (row > 0 && row > lastSelectedRow + 1) - { - m_stringList.swapItemsAt(row, row - 1); - - // Update the row to reflect it's new position. - row = row - 1; - } - - lastSelectedRow = row; - selectedRows.insert(row); - } - - m_gui->listView->selectionModel()->clear(); - - m_stringListModel.setStringList(m_stringList); - - for (int row : selectedRows) - { - m_gui->listView->selectionModel()->select(m_stringListModel.index(row, 0), QItemSelectionModel::Select); - } - } - - void FilteredListView::moveSelectionDown() - { - const QModelIndexList& selectedIndexes = m_gui->listView->selectionModel()->selectedIndexes(); - - AZStd::set sortedIndexes; - - for (const QModelIndex& index : selectedIndexes) - { - sortedIndexes.insert(index.row()); - } - - int lastSelectedRow = m_stringList.size(); - AZStd::unordered_set selectedRows; - - for (AZStd::set::reverse_iterator iter = sortedIndexes.rbegin(); - iter != sortedIndexes.rend(); - ++iter) - { - int row = (*iter); - - if (row < m_stringList.size() - 1 && row < lastSelectedRow - 1) - { - m_stringList.swapItemsAt(row, row + 1); - row = row + 1; - } - - lastSelectedRow = row; - selectedRows.insert(row); - } - - m_gui->listView->selectionModel()->clear(); - - m_stringListModel.setStringList(m_stringList); - - for (int row : selectedRows) - { - m_gui->listView->selectionModel()->select(m_stringListModel.index(row, 0), QItemSelectionModel::Select); - } - } - - void FilteredListView::setButtonsEnabled(bool enabled) - { - m_gui->moveDown->setEnabled(enabled); - m_gui->moveUp->setEnabled(enabled); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/FilteredListView.hxx b/Code/Tools/Standalone/Source/Driller/FilteredListView.hxx deleted file mode 100644 index 3c2531157d..0000000000 --- a/Code/Tools/Standalone/Source/Driller/FilteredListView.hxx +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef AZTOOLSFRAMEWORK_UI_UICORE_FILTEREDLISTVIEW_H -#define AZTOOLSFRAMEWORK_UI_UICORE_FILTEREDLISTVIEW_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#pragma once - -#include -#include -#include -#include -#include -#endif - -namespace Ui -{ - class FilteredListView; -} - -namespace Driller -{ - // This widget allows for easy access to a filtered list view that can also be rearranged by the user. - // Useful for things like determining column order, or export fields. - class FilteredListView - : public QWidget - { - Q_OBJECT - - // Apparently we can't just have a non-sorted model... - class FilteredProxyModel : public QSortFilterProxyModel - { - void sort(int column, Qt::SortOrder order) - { - (void) column; (void)order; - } - }; - - public: - AZ_CLASS_ALLOCATOR(FilteredListView, AZ::SystemAllocator,0); - - explicit FilteredListView(QWidget* parent = nullptr); - ~FilteredListView(); - - void addItem(const char* item); - void addItems(const QStringList& items); - - void removeItem(const char* item); - void removeItems(const QStringList& items); - - void clearItems(); - - void removeSelected(); - - void setFilterString(const char* filterString); - const char* getFilterString() const; - - const QStringList& getAllItems() const; - void getSelectedItems(QStringList& selectedItems) const; - - void enableCustomOrdering(bool enabled); - - public slots: - void filterEdited(const QString& eventFilter); - void moveSelectionUp(); - void moveSelectionDown(); - - private: - - void setButtonsEnabled(bool enabled); - - Ui::FilteredListView* m_gui; - bool m_enableCustomOrdering; - FilteredProxyModel m_filteredModel; - QStringListModel m_stringListModel; - QStringList m_stringList; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/FilteredListView.ui b/Code/Tools/Standalone/Source/Driller/FilteredListView.ui deleted file mode 100644 index 5b182f766f..0000000000 --- a/Code/Tools/Standalone/Source/Driller/FilteredListView.ui +++ /dev/null @@ -1,124 +0,0 @@ - - - FilteredListView - - - - 0 - 0 - 320 - 463 - - - - Form - - - - 5 - - - 5 - - - 5 - - - 5 - - - 5 - - - - - - - - false - - - false - - - QAbstractItemView::ExtendedSelection - - - QAbstractItemView::SelectRows - - - false - - - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - ^ - - - false - - - false - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 50 - 20 - - - - - - - - V - - - false - - - - - - - - - - - diff --git a/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.cpp b/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.cpp deleted file mode 100644 index 59884c9b0e..0000000000 --- a/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.cpp +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "Source/Driller/GenericCustomizeCSVExportWidget.hxx" -#include -#include - -namespace Driller -{ - //////////////////////////////////// - // GenericCustomizeCSVExportWidget - //////////////////////////////////// - - GenericCustomizeCSVExportWidget::GenericCustomizeCSVExportWidget(GenericCSVExportSettings& genericSettings, QWidget* parent) - : CustomizeCSVExportWidget(genericSettings, parent) - , m_exportFieldsDirty(false) - , m_gui(nullptr) - { - m_gui = azcreate(Ui::GenericCustomizeCSVExportWidget, ()); - m_gui->setupUi(this); - - QStringList items; - genericSettings.GetExportItems(items); - m_gui->exportFieldSelector->setItemList(items); - - items.clear(); - - genericSettings.GetActiveExportItems(items); - m_gui->exportFieldSelector->setActiveItems(items); - items.clear(); - - m_gui->exportFieldSelector->setActiveTitle("Exported Fields"); - m_gui->exportFieldSelector->setInactiveTitle("Unused Fields"); - - QObject::connect(m_gui->exportFieldSelector, SIGNAL(ActiveItemsChanged()), this, SLOT(OnActiveItemsChanged())); - QObject::connect(m_gui->addDescriptor, SIGNAL(stateChanged(int)), this, SLOT(OnShouldExportStateDescriptorChecked(int))); - } - - GenericCustomizeCSVExportWidget::~GenericCustomizeCSVExportWidget() - { - azdestroy(m_gui); - } - - void GenericCustomizeCSVExportWidget::FinalizeSettings() - { - if (m_exportFieldsDirty) - { - m_exportFieldsDirty = false; - - GenericCSVExportSettings& exportSettings = static_cast(m_exportSettings); - const QStringList& activeItems = m_gui->exportFieldSelector->getActiveItems(); - - exportSettings.UpdateExportOrdering(activeItems); - } - } - - void GenericCustomizeCSVExportWidget::OnActiveItemsChanged() - { - m_exportFieldsDirty = true; - } -} diff --git a/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.hxx b/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.hxx deleted file mode 100644 index 970e3d53c6..0000000000 --- a/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.hxx +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_GENERICCUSTOMIZECSVEXPORTPANEL_H -#define DRILLER_GENERICCUSTOMIZECSVEXPORTPANEL_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include - -#pragma once - -#include "Source/Driller/CustomizeCSVExportWidget.hxx" -#include "Source/Driller/CSVExportSettings.h" -#endif - -namespace Ui -{ - class GenericCustomizeCSVExportWidget; -} - -namespace Driller -{ - class GenericCSVExportSettings; - - class GenericCustomizeCSVExportWidget - : public CustomizeCSVExportWidget - { - Q_OBJECT - public: - AZ_CLASS_ALLOCATOR(GenericCustomizeCSVExportWidget, AZ::SystemAllocator, 0); - - GenericCustomizeCSVExportWidget(GenericCSVExportSettings& exportSettings, QWidget* parent = nullptr); - ~GenericCustomizeCSVExportWidget(); - - void FinalizeSettings() override; - - public slots: - - void OnActiveItemsChanged(); - - private: - - bool m_exportFieldsDirty; - - Ui::GenericCustomizeCSVExportWidget* m_gui; - }; - - class GenericCSVExportSettings - : public CSVExportSettings - { - friend class GenericCustomizeCSVExportWidget; - public: - GenericCSVExportSettings() - { - } - - virtual void GetExportItems(QStringList& items) const = 0; - virtual void GetActiveExportItems(QStringList& items) const = 0; - - protected: - virtual void UpdateExportOrdering(const QStringList& items) = 0; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.ui b/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.ui deleted file mode 100644 index 5aa2839707..0000000000 --- a/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.ui +++ /dev/null @@ -1,74 +0,0 @@ - - - GenericCustomizeCSVExportWidget - - - - 0 - 0 - 887 - 413 - - - - Form - - - - - - - 0 - 0 - - - - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - - - Add Column Descriptor - - - true - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - - Driller::DoubleListSelector - QWidget -
Source/Driller/DoubleListSelector.hxx
- 1 -
-
- - -
diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataAggregator.cpp deleted file mode 100644 index 5e4f0a2323..0000000000 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataAggregator.cpp +++ /dev/null @@ -1,584 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "StreamerDataAggregator.hxx" -#include - -#include "StreamerDrillerDialog.hxx" -#include "StreamerEvents.h" -#include -#include -#include "Woodpecker/Driller/Workspaces/Workspace.h" - -#include -#include - -namespace Driller -{ - class StreamerDataAggregatorSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(StreamerDataAggregatorSavedState, "{0174A3EE-C555-482F-9E7B-7D67D9B4B0A7}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(StreamerDataAggregatorSavedState, AZ::SystemAllocator, 0); - StreamerDataAggregatorSavedState() {} - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Version(1) - ; - } - } - }; - - // WORKSPACES are files loaded and stored independent of the global application - // designed to be used for DRL data specific view settings and to pass around - class StreamerDataAggregatorWorkspace - : public AZ::UserSettings - { - public: - AZ_RTTI(StreamerDataAggregatorWorkspace, "{D35E8CCA-6FA7-47F6-8A24-8E12EF237E40}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(StreamerDataAggregatorWorkspace, AZ::SystemAllocator, 0); - - int m_activeViewCount; - AZStd::vector m_activeViewTypes; - - StreamerDataAggregatorWorkspace() - : m_activeViewCount(0) - {} - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_activeViewCount", &StreamerDataAggregatorWorkspace::m_activeViewCount) - ->Field("m_activeViewTypes", &StreamerDataAggregatorWorkspace::m_activeViewTypes) - ->Version(1); - } - } - }; - - ////////////////////////////////////////////////////////////////////////// - StreamerDataAggregator::StreamerDataAggregator(int identity) - : Aggregator(identity) - , m_activeViewCount(0) - , m_highwaterFrame(-1) - { - m_parser.SetAggregator(this); - ResetTrackingInfo(); - } - - StreamerDataAggregator::~StreamerDataAggregator() - { - KillAllViews(); - } - - // gross generalization of activity based on total number of all events this frame - float StreamerDataAggregator::ValueAtFrame(FrameNumberType frame) - { - const float maxEventsPerFrame = 10.0f; // just a scale number - float numEventsPerFrame = static_cast(NumOfEventsAtFrame(frame)); - return AZStd::GetMin(numEventsPerFrame / maxEventsPerFrame, 1.0f) * 2.0f - 1.0f; - } - - QColor StreamerDataAggregator::GetColor() const - { - return QColor(0, 255, 255); - } - - QString StreamerDataAggregator::GetName() const - { - return "Streamer"; - } - - QString StreamerDataAggregator::GetChannelName() const - { - return ChannelName(); - } - - QString StreamerDataAggregator::GetDescription() const - { - return "Streamer events driller"; - } - - QString StreamerDataAggregator::GetToolTip() const - { - return "Streamer Events"; - } - - AZ::Uuid StreamerDataAggregator::GetID() const - { - return AZ::Uuid("{9A2854C8-8106-4075-9287-3E047821D934}"); - } - - QWidget* StreamerDataAggregator::DrillDownRequest(FrameNumberType frame) - { - StreamerDrillerDialog* dialog = NULL; - - AZ::u32 availableIdx = 0; - bool foundASpot = true; - do - { - foundASpot = true; - for (DataViewMap::iterator iter = m_dataViews.begin(); iter != m_dataViews.end(); ++iter) - { - if (iter->second == availableIdx) - { - foundASpot = false; - ++availableIdx; - break; - } - } - } while (!foundASpot); - - dialog = aznew StreamerDrillerDialog(this, frame, (1024 * GetIdentity()) + availableIdx); - if (dialog) - { - m_dataViews[dialog] = availableIdx; - connect(dialog, SIGNAL(destroyed(QObject*)), this, SLOT(OnDataViewDestroyed(QObject*))); - ++m_activeViewCount; - } - - return dialog; - } - - QWidget* StreamerDataAggregator::DrillDownRequest(FrameNumberType frame, int type) - { - StreamerDrillerDialog* view = static_cast(DrillDownRequest(frame)); - if (view) - { - view->SetChartType(type); - } - - return view; - } - - void StreamerDataAggregator::OptionsRequest() - { - QMenu* popupMenu = new QMenu(); - QMenu* cachedHitsTypeMenu = new QMenu(tr("Cached Hits")); - cachedHitsTypeMenu->addAction(tr("Do Not Report Cache Hits")); - cachedHitsTypeMenu->addAction(tr("Report Cache Hits")); - popupMenu->addMenu(cachedHitsTypeMenu); - QAction* act = cachedHitsTypeMenu->exec(QCursor::pos()); - if (act) - { - if (act->text() == tr("Report Cache Hits")) - { - m_parser.AllowCacheHitsInReportedStream(true); - } - if (act->text() == tr("Do Not Report Cache Hits")) - { - m_parser.AllowCacheHitsInReportedStream(false); - } - } - } - - void StreamerDataAggregator::OnDataViewDestroyed(QObject* dataView) - { - m_dataViews.erase(dataView); - --m_activeViewCount; - } - - void StreamerDataAggregator::KillAllViews() - { - do - { - DataViewMap::iterator iter = m_dataViews.begin(); - if (iter != m_dataViews.end()) - { - delete iter->first; - continue; - } - break; - } while (1); - } - - void StreamerDataAggregator::ApplySettingsFromWorkspace(WorkspaceSettingsProvider* provider) - { - StreamerDataAggregatorWorkspace* workspace = provider->FindSetting(AZ_CRC("STREAMER DATA AGGREGATOR WORKSPACE", 0x105be192)); - if (workspace) - { - m_activeViewCount = workspace->m_activeViewCount; - } - } - void StreamerDataAggregator::ActivateWorkspaceSettings(WorkspaceSettingsProvider* provider) - { - StreamerDataAggregatorWorkspace* workspace = provider->FindSetting(AZ_CRC("STREAMER DATA AGGREGATOR WORKSPACE", 0x105be192)); - if (workspace) - { - // kill all existing data view windows in preparation of opening the workspace specified ones - KillAllViews(); - - // the internal count should be 0 from the above house cleaning - // and incremented back up from the workspace instantiations - m_activeViewCount = 0; - for (int i = 0; i < workspace->m_activeViewCount; ++i) - { - //// start this check to default - int discoveredType = 0; - if (workspace->m_activeViewTypes.size() > i) - { - discoveredType = workspace->m_activeViewTypes[i]; - } - - Driller::StreamerDrillerDialog* dataView = qobject_cast(DrillDownRequest(1, discoveredType)); - if (dataView) - { - // apply will overlay the workspace settings on top of the local user settings - dataView->ApplySettingsFromWorkspace(provider); - // activate will do the heavy lifting - dataView->ActivateWorkspaceSettings(provider); - } - } - } - } - void StreamerDataAggregator::SaveSettingsToWorkspace(WorkspaceSettingsProvider* provider) - { - StreamerDataAggregatorWorkspace* workspace = provider->CreateSetting(AZ_CRC("STREAMER DATA AGGREGATOR WORKSPACE", 0x105be192)); - if (workspace) - { - workspace->m_activeViewTypes.clear(); - workspace->m_activeViewCount = m_activeViewCount; - - for (DataViewMap::iterator iter = m_dataViews.begin(); iter != m_dataViews.end(); ++iter) - { - Driller::StreamerDrillerDialog* dataView = qobject_cast(iter->first); - if (dataView) - { - workspace->m_activeViewTypes.push_back(dataView->GetViewType()); - dataView->SaveSettingsToWorkspace(provider); - } - } - } - } - - //========================================================================= - // Reset - // [7/10/2013] - //========================================================================= - void StreamerDataAggregator::Reset() - { - m_devices.clear(); - m_streams.clear(); - m_requests.clear(); - m_seeksInfo.clear(); - ResetTrackingInfo(); - } - - void StreamerDataAggregator::ResetTrackingInfo() - { - m_seekTracking.clear(); - m_highwaterFrame = -1; - - // default device with ID := 0 - SeekTrackingInfo seekTrackingInfo; - seekTrackingInfo.m_currentStreamId = 0; - seekTrackingInfo.m_offset = 0; - m_seekTracking.insert(AZStd::make_pair(0, seekTrackingInfo)); - } - - void StreamerDataAggregator::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - StreamerDataAggregatorSavedState::Reflect(context); - StreamerDataAggregatorWorkspace::Reflect(context); - StreamerDrillerDialog::Reflect(context); - - serialize->Class() - ->Version(1) - ; - } - } - - void StreamerDataAggregator::AdvanceToFrame(FrameNumberType frame) - { - while (m_highwaterFrame < frame) - { - ++m_highwaterFrame; - FrameChanged(m_highwaterFrame); - - m_frameInfo.push_back(); - m_frameInfo.back().m_computedSeeksCount = 0; - m_frameInfo.back().m_computedThroughput = 0; - - AZ::s64 numEvents = NumOfEventsAtFrame(m_highwaterFrame); - if (numEvents) - { - AZ::s64 firstIndex = GetFirstIndexAtFrame(m_highwaterFrame); - - for (AZ::s64 idx = 0; idx < numEvents; ++idx) - { - DrillerEvent* dep = m_events[ idx + firstIndex ]; - AZ::u64 geid = dep->GetGlobalEventId(); - - switch (dep->GetEventType()) - { - case Driller::Streamer::SET_DEVICE_MOUNTED: - { - SeekTrackingInfo seekTrackingInfo; - seekTrackingInfo.m_currentStreamId = 0; - seekTrackingInfo.m_offset = 0; - m_seekTracking.insert(AZStd::make_pair(static_cast(dep)->m_deviceData.m_id, seekTrackingInfo)); - break; - } - case Driller::Streamer::SET_DEVICE_UNMOUNTED: - { - m_seekTracking.erase(static_cast(dep)->m_unmountedDeviceData->m_id); - break; - } - case Driller::Streamer::SET_ADD_REQUEST: - { - break; - } - case Driller::Streamer::SET_CANCEL_REQUEST: - case Driller::Streamer::SET_RESCHEDULE_REQUEST: - case Driller::Streamer::SET_COMPLETE_REQUEST: - { - break; - } - case Driller::Streamer::SET_REGISTER_STREAM: - case Driller::Streamer::SET_UNREGISTER_STREAM: - { - break; - } - // m_stream := possibly NULL in these two cases - case Driller::Streamer::SET_OPERATION_START: - { - auto depEvt = static_cast(dep); - if (depEvt->m_stream) - { - auto trackedDevice = m_seekTracking.find(depEvt->m_stream->m_deviceId); - if (trackedDevice == m_seekTracking.end()) - { - SeekTrackingInfo seekTrackingInfo; - seekTrackingInfo.m_currentStreamId = 0; - seekTrackingInfo.m_offset = 0; - - m_seekTracking.insert(AZStd::make_pair(depEvt->m_stream->m_deviceId, seekTrackingInfo)); - trackedDevice = m_seekTracking.find(depEvt->m_stream->m_deviceId); - } - // reasons a device might SEEK - if (trackedDevice->second.m_currentStreamId != depEvt->m_streamId) - { - if ( - (depEvt->m_stream->m_isCompressed && depEvt->m_operation.m_type == Streamer::SOP_COMPRESSOR_READ) - || - (!depEvt->m_stream->m_isCompressed) - ) - { - m_frameInfo.back().m_seekInfo.push_back(); - m_frameInfo.back().m_seekInfo.back().m_eventId = geid; - m_frameInfo.back().m_seekInfo.back().m_eventReason = SEEK_EVENT_SWITCH; - trackedDevice->second.m_currentStreamId = depEvt->m_streamId; - trackedDevice->second.m_offset = depEvt->m_operation.m_offset; - ++m_frameInfo.back().m_computedSeeksCount; - m_seeksInfo.insert(AZStd::make_pair(geid, SEEK_EVENT_SWITCH)); - } - } - else if (trackedDevice->second.m_offset != depEvt->m_operation.m_offset) - { - if ( - (depEvt->m_stream->m_isCompressed && depEvt->m_operation.m_type == Streamer::SOP_COMPRESSOR_READ) - || - (!depEvt->m_stream->m_isCompressed) - ) - { - m_frameInfo.back().m_seekInfo.push_back(); - m_frameInfo.back().m_seekInfo.back().m_eventId = geid; - m_frameInfo.back().m_seekInfo.back().m_eventReason = SEEK_EVENT_SKIP; - trackedDevice->second.m_offset = depEvt->m_operation.m_offset; - ++m_frameInfo.back().m_computedSeeksCount; - m_seeksInfo.insert(AZStd::make_pair(geid, SEEK_EVENT_SKIP)); - } - } - } - break; - } - case Driller::Streamer::SET_OPERATION_COMPLETE: - { - auto depEvt = azdynamic_cast(dep); - - if (depEvt->m_stream) - { - m_frameInfo.back().m_transferInfo.push_back(); - m_frameInfo.back().m_transferInfo.back().m_eventId = geid; - m_frameInfo.back().m_transferInfo.back().m_eventReason = (TransferEventType)(depEvt->m_type); - - auto trackedDevice = m_seekTracking.find(depEvt->m_stream->m_deviceId); - if (trackedDevice == m_seekTracking.end()) - { - SeekTrackingInfo seekTrackingInfo; - seekTrackingInfo.m_currentStreamId = 0; - seekTrackingInfo.m_offset = 0; - - m_seekTracking.insert(AZStd::make_pair(depEvt->m_stream->m_deviceId, seekTrackingInfo)); - trackedDevice = m_seekTracking.find(depEvt->m_stream->m_deviceId); - } - - if (depEvt->m_stream->m_isCompressed) - { - if (static_cast(depEvt->m_type) == TRANSFER_EVENT_COMPRESSOR_READ || static_cast(depEvt->m_type) == TRANSFER_EVENT_COMPRESSOR_WRITE) - { - m_frameInfo.back().m_transferInfo.back().m_byteCount = depEvt->m_bytesTransferred; - m_frameInfo.back().m_computedThroughput += depEvt->m_bytesTransferred; - trackedDevice->second.m_offset += depEvt->m_bytesTransferred; - } - } - else - { - m_frameInfo.back().m_transferInfo.back().m_byteCount = depEvt->m_bytesTransferred; - m_frameInfo.back().m_computedThroughput += depEvt->m_bytesTransferred; - trackedDevice->second.m_offset += depEvt->m_bytesTransferred; - } - } - break; - } - } - } - } - } - } - - const char* StreamerDataAggregator::GetFilenameFromStreamId(unsigned int globalEventId, AZ::u64 streamId) - { - // starting at eventId, skip backwards through the events until a register stream is found - while (1) - { - if (globalEventId > m_events.size()) - { - break; - } - auto event = m_events[globalEventId]; - auto registerEvent = azdynamic_cast(event); - if (registerEvent && registerEvent->m_streamData.m_id == streamId) - { - return registerEvent->m_streamData.m_name; - } - - if (globalEventId == 0) - { - break; - } - - --globalEventId; - } - - return ""; - } - - const char* StreamerDataAggregator::GetDebugNameFromStreamId(unsigned int globalEventId, AZ::u64 streamId) - { - // starting at eventId, skip backwards through the events until a request added (which has debug info) is found - while (1) - { - if (globalEventId > m_events.size()) - { - break; - } - auto event = m_events[globalEventId]; - auto requestEvent = azdynamic_cast(event); - if (requestEvent && requestEvent->m_requestData.m_streamId == streamId) - { - if (requestEvent->m_requestData.m_debugName) - { - return requestEvent->m_requestData.m_debugName; - } - else - { - return ""; - } - } - - if (globalEventId == 0) - { - break; - } - - --globalEventId; - } - - return ""; - } - - - const AZ::u64 StreamerDataAggregator::GetOffsetFromStreamId(unsigned int globalEventId, AZ::u64 streamId) - { - // starting at eventId, skip backwards through the events until the start operation related to this ID is found - while (1) - { - if (globalEventId > m_events.size()) - { - break; - } - auto event = m_events[globalEventId]; - auto startEvent = azdynamic_cast(event); - if (startEvent && startEvent->m_streamId == streamId) - { - return startEvent->m_operation.m_offset; - } - - if (globalEventId == 0) - { - break; - } - - --globalEventId; - } - - return 0; - } - - float StreamerDataAggregator::ThroughputAtFrame(FrameNumberType frame) - { - if (frame >= 0) - { - AdvanceToFrame(frame); - return (float)m_frameInfo[frame].m_computedThroughput; - } - - return 0.0f; - } - float StreamerDataAggregator::SeeksAtFrame(FrameNumberType frame) - { - if (frame >= 0) - { - AdvanceToFrame(frame); - return (float)m_frameInfo[frame].m_computedSeeksCount; - } - - return 0.0f; - } - Driller::StreamerDataAggregator::TransferBreakoutType& StreamerDataAggregator::ThroughputAtFrameBreakout(FrameNumberType frame) - { - AdvanceToFrame(frame); - return m_frameInfo[frame].m_transferInfo; - } - Driller::StreamerDataAggregator::SeeksBreakoutType& StreamerDataAggregator::SeeksAtFrameBreakout(FrameNumberType frame) - { - AdvanceToFrame(frame); - return m_frameInfo[frame].m_seekInfo; - } - StreamerDataAggregator::SeekEventType StreamerDataAggregator::GetSeekType(AZ::s64 id) - { - auto iter = m_seeksInfo.find(id); - if (iter != m_seeksInfo.end()) - { - return iter->second; - } - return SEEK_EVENT_NONE; - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataParser.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataParser.cpp deleted file mode 100644 index 733f32c004..0000000000 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataParser.cpp +++ /dev/null @@ -1,327 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "StreamerDataAggregator.hxx" - -namespace Driller -{ - AZ::Debug::DrillerHandlerParser* StreamerDrillerHandlerParser::OnEnterTag(AZ::u32 tagName) - { - AZ_Assert(m_data, "You must set a valid memory aggregator before we can process the data!"); - - if (tagName == AZ_CRC("OnDeviceMounted", 0xc6bdd55e)) - { - m_subTag = ST_DEVICE_MOUNTED; - m_data->AddEvent(aznew StreamerMountDeviceEvent()); - return this; - } - else if (tagName == AZ_CRC("OnRegisterStream", 0x893513c1)) - { - m_subTag = ST_STREAM_REGISTER; - m_data->AddEvent(aznew StreamerRegisterStreamEvent()); - return this; - } - else if (tagName == AZ_CRC("OnReadCacheHit", 0xd4535712)) - { - m_subTag = ST_READ_CACHE_HIT; - if (m_allowCacheHitsInReportedStream) - { - m_data->AddEvent(aznew StreamerReadCacheHit()); - } - return this; - } - else if (tagName == AZ_CRC("OnAddRequest", 0xee41c96e)) - { - m_subTag = ST_REQUEST_ADD; - m_data->AddEvent(aznew StreamerAddRequestEvent()); - return this; - } - else if (tagName == AZ_CRC("OnCompleteRequest", 0x7f6b66f7)) - { - m_subTag = ST_REQUEST_COMPLETE; - m_data->AddEvent(aznew StreamerCompleteRequestEvent()); - return this; - } - else if (tagName == AZ_CRC("OnRescheduleRequest", 0x883b3e85)) - { - m_subTag = ST_REQUEST_RESCHEDULE; - m_data->AddEvent(aznew StreamerRescheduleRequestEvent()); - return this; - } - else if (tagName == AZ_CRC("OnRead", 0xd7714b7b)) - { - m_subTag = ST_OPERATION_READ; - m_data->AddEvent(aznew StreamerOperationStartEvent(Streamer::SOP_READ)); - return this; - } - else if (tagName == AZ_CRC("OnReadComplete", 0x0efa014b)) - { - m_subTag = ST_OPERATION_READ_COMPLETE; - m_data->AddEvent(aznew StreamerOperationCompleteEvent(Streamer::SOP_READ)); - return this; - } - else if (tagName == AZ_CRC("OnWrite", 0x6925001a)) - { - m_subTag = ST_OPERATION_WRITE; - m_data->AddEvent(aznew StreamerOperationStartEvent(Streamer::SOP_WRITE)); - return this; - } - else if (tagName == AZ_CRC("OnWriteComplete", 0x6c5f7c79)) - { - m_subTag = ST_OPERATION_WRITE_COMPLETE; - m_data->AddEvent(aznew StreamerOperationCompleteEvent(Streamer::SOP_WRITE)); - return this; - } - else if (tagName == AZ_CRC("OnCompressorRead", 0xbd093b22)) - { - m_subTag = ST_OPERATION_COMPRESSOR_READ; - m_data->AddEvent(aznew StreamerOperationStartEvent(Streamer::SOP_COMPRESSOR_READ)); - return this; - } - else if (tagName == AZ_CRC("OnCompressorReadComplete", 0x9c08d9cd)) - { - m_subTag = ST_OPERATION_COMPRESSOR_READ_COMPLETE; - m_data->AddEvent(aznew StreamerOperationCompleteEvent(Streamer::SOP_COMPRESSOR_READ)); - return this; - } - else if (tagName == AZ_CRC("OnCompressorWrite", 0x7bf8913a)) - { - m_subTag = ST_OPERATION_COMPRESSOR_WRITE; - m_data->AddEvent(aznew StreamerOperationStartEvent(Streamer::SOP_COMPRESSOR_WRITE)); - return this; - } - else if (tagName == AZ_CRC("OnCompressorWriteComplete", 0x6816a8b4)) - { - m_subTag = ST_OPERATION_COMPRESSOR_WRITE_COMPLETE; - m_data->AddEvent(aznew StreamerOperationCompleteEvent(Streamer::SOP_COMPRESSOR_WRITE)); - return this; - } - else - { - m_subTag = ST_NONE; - } - return NULL; - } - - void StreamerDrillerHandlerParser::OnExitTag(DrillerHandlerParser* handler, AZ::u32 tagName) - { - (void)tagName; - if (handler != nullptr) - { - m_subTag = ST_NONE; // we have only one level just go back to the default state - } - } - - void StreamerDrillerHandlerParser::OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode) - { - AZ_Assert(m_data, "You must set a valid memory aggregator before we can process the data!"); - (void)dataNode; - switch (m_subTag) - { - case ST_NONE: - { - if (dataNode.m_name == AZ_CRC("OnDeviceUnmounted", 0x7395545a)) - { - StreamerUnmountDeviceEvent* event = aznew StreamerUnmountDeviceEvent(); - dataNode.Read(event->m_deviceId); - m_data->AddEvent(event); - } - else if (dataNode.m_name == AZ_CRC("OnUnregisterStream", 0x3374d0cb)) - { - StreamerUnregisterStreamEvent* event = aznew StreamerUnregisterStreamEvent(); - dataNode.Read(event->m_streamId); - m_data->AddEvent(event); - } - else if (dataNode.m_name == AZ_CRC("OnCancelRequest", 0x89d4ea74)) - { - StreamerCancelRequestEvent* event = aznew StreamerCancelRequestEvent(); - dataNode.Read(event->m_requestId); - m_data->AddEvent(event); - } - } break; - case ST_DEVICE_MOUNTED: - { - StreamerMountDeviceEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("DeviceId", 0x383bcd03)) - { - dataNode.Read(event->m_deviceData.m_id); - } - else if (dataNode.m_name == AZ_CRC("Name", 0x5e237e06)) - { - event->m_deviceData.m_name = dataNode.ReadPooledString(); - } - } break; - case ST_STREAM_REGISTER: - { - StreamerRegisterStreamEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("DeviceId", 0x383bcd03)) - { - dataNode.Read(event->m_streamData.m_deviceId); - } - else if (dataNode.m_name == AZ_CRC("StreamId", 0x7597546f)) - { - dataNode.Read(event->m_streamData.m_id); - } - else if (dataNode.m_name == AZ_CRC("Name", 0x5e237e06)) - { - event->m_streamData.m_name = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("Flags", 0x0b0541ba)) - { - dataNode.Read(event->m_streamData.m_flags); - } - else if (dataNode.m_name == AZ_CRC("Size", 0xf7c0246a)) - { - dataNode.Read(event->m_streamData.m_size); - } - else if (dataNode.m_name == AZ_CRC("IsCompressed", 0xdd32876c)) - { - dataNode.Read(event->m_streamData.m_isCompressed); - } - } break; - case ST_READ_CACHE_HIT: - { - if (m_allowCacheHitsInReportedStream) - { - StreamerReadCacheHit* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("StreamId", 0x7597546f)) - { - dataNode.Read(event->m_streamId); - } - else if (dataNode.m_name == AZ_CRC("Offset", 0x590acad0)) - { - dataNode.Read(event->m_offset); - } - else if (dataNode.m_name == AZ_CRC("Size", 0xf7c0246a)) - { - dataNode.Read(event->m_size); - } - else if (dataNode.m_name == AZ_CRC("DebugName", 0x6c3ea120)) - { - event->m_debugName = dataNode.ReadPooledString(); - } - } - } break; - case ST_REQUEST_ADD: - { - StreamerAddRequestEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("RequestId", 0x34e754a3)) - { - dataNode.Read(event->m_requestData.m_id); - } - else if (dataNode.m_name == AZ_CRC("StreamId", 0x7597546f)) - { - dataNode.Read(event->m_requestData.m_streamId); - } - else if (dataNode.m_name == AZ_CRC("Offset", 0x590acad0)) - { - dataNode.Read(event->m_requestData.m_offset); - } - else if (dataNode.m_name == AZ_CRC("Size", 0xf7c0246a)) - { - dataNode.Read(event->m_requestData.m_size); - } - else if (dataNode.m_name == AZ_CRC("Deadline", 0xb74774f2)) - { - dataNode.Read(event->m_requestData.m_deadline); - } - else if (dataNode.m_name == AZ_CRC("Priority", 0x62a6dc27)) - { - dataNode.Read(event->m_requestData.m_priority); - } - else if (dataNode.m_name == AZ_CRC("Operation", 0x1981a66d)) - { - dataNode.Read(event->m_requestData.m_operation); - } - else if (dataNode.m_name == AZ_CRC("DebugName", 0x6c3ea120)) - { - event->m_requestData.m_debugName = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("Timestamp", 0xa5d6e63e)) - { - dataNode.Read(event->m_timeStamp); - } - } break; - case ST_REQUEST_COMPLETE: - { - StreamerCompleteRequestEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("RequestId", 0x34e754a3)) - { - dataNode.Read(event->m_requestId); - } - else if (dataNode.m_name == AZ_CRC("State", 0xa393d2fb)) - { - dataNode.Read(event->m_state); - } - else if (dataNode.m_name == AZ_CRC("Timestamp", 0xa5d6e63e)) - { - dataNode.Read(event->m_timeStamp); - } - } break; - case ST_REQUEST_RESCHEDULE: - { - StreamerRescheduleRequestEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("RequestId", 0x34e754a3)) - { - dataNode.Read(event->m_requestId); - } - else if (dataNode.m_name == AZ_CRC("NewDeadLine", 0x184cc661)) - { - dataNode.Read(event->m_newDeadline); - } - else if (dataNode.m_name == AZ_CRC("NewPriority", 0xcdad6eb4)) - { - dataNode.Read(event->m_newPriority); - } - } break; - case ST_OPERATION_READ: - case ST_OPERATION_WRITE: - case ST_OPERATION_COMPRESSOR_READ: - case ST_OPERATION_COMPRESSOR_WRITE: - { - StreamerOperationStartEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("StreamId", 0x7597546f)) - { - dataNode.Read(event->m_streamId); - } - else if (dataNode.m_name == AZ_CRC("Size", 0xf7c0246a)) - { - dataNode.Read(event->m_operation.m_size); - } - else if (dataNode.m_name == AZ_CRC("Offset", 0x590acad0)) - { - dataNode.Read(event->m_operation.m_offset); - } - else if (dataNode.m_name == AZ_CRC("Timestamp", 0xa5d6e63e)) - { - dataNode.Read(event->m_timeStamp); - } - } break; - - case ST_OPERATION_READ_COMPLETE: - case ST_OPERATION_WRITE_COMPLETE: - case ST_OPERATION_COMPRESSOR_READ_COMPLETE: - case ST_OPERATION_COMPRESSOR_WRITE_COMPLETE: - { - StreamerOperationCompleteEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("StreamId", 0x7597546f)) - { - dataNode.Read(event->m_streamId); - } - else if (dataNode.m_name == AZ_CRC("bytesTransferred", 0x35684b99)) - { - dataNode.Read(event->m_bytesTransferred); - } - else if (dataNode.m_name == AZ_CRC("Timestamp", 0xa5d6e63e)) - { - dataNode.Read(event->m_timeStamp); - } - } break; - } - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataView.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataView.cpp deleted file mode 100644 index 6e9786e1cd..0000000000 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataView.cpp +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "StreamerDataView.hxx" -#include - -#include -#include - -namespace Driller -{ - StreamerDrillerTableView::StreamerDrillerTableView(QWidget* pParent) - : QTableView(pParent) - , m_isScrollAfterInsert(true) - { - setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); - m_scheduledMaxScroll = false; - } - - StreamerDrillerTableView::~StreamerDrillerTableView() - { - } - - void StreamerDrillerTableView::rowsAboutToBeInserted() - { - m_isScrollAfterInsert = IsAtMaxScroll(); - } - - void StreamerDrillerTableView::rowsInserted() - { - if ((m_isScrollAfterInsert) && (!m_scheduledMaxScroll)) - { - m_scheduledMaxScroll = true; - QTimer::singleShot(0, this, SLOT(doScrollToBottom())); - } - } - - void StreamerDrillerTableView::doScrollToBottom() - { - m_scheduledMaxScroll = false; - scrollToBottom(); - m_isScrollAfterInsert = true; - } - - bool StreamerDrillerTableView::IsAtMaxScroll() const - { - return (verticalScrollBar()->value() == verticalScrollBar()->maximum()); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerDrillerDialog.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerDrillerDialog.cpp deleted file mode 100644 index 98262c5311..0000000000 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerDrillerDialog.cpp +++ /dev/null @@ -1,1527 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "StreamerDrillerDialog.hxx" -#include - -#include "StreamerDataAggregator.hxx" -#include "StreamerEvents.h" - -#include -#include -#include -#include -#include - -#include - -#include -#include -#include -#include - -namespace Driller -{ - class StreamerDrillerDialogSavedState; - - // NB: update StreamerDataView.hxx GetXxxxColumn() calls to return matching numbers to SDM_ enums - - enum - { - SDM_NAME = 0, - SDM_DEBUG_NAME, - SDM_EVENT_TYPE, - SDM_OPERATION, - SDM_DELTA_TIME, - SDM_DATA_TRANSFER, - SDM_READ_SIZE, - SDM_OFFSET, - SDM_TOTAL - }; - static const char* SDM_STRING[] = { - "Name", - "Debug Name", - "Event Type", - "Operation", - "uSec Used", - "Data Transfer", - "Read Size", - "Offset", - }; - enum - { - VIEW_TYPE_THROUGHPUT = 0, - VIEW_TYPE_SEEKINFO - }; - - static const char* eventTypeToString[] = - { - "Show All Events", - "Device Mounted", - "Device UnMounted", - "Register Stream", - "UnRegister Stream", - "Cache Hit", - "Request Added", - "Request Canceled", - "Request Rescheduled", - "Request Completed", - "Operation Start", - "Operation Complete", - NULL - }; - static const int eventTypeFromIndex[] = { -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; - - static const char* operationTypeToString[] = - { - "All Operations", - "Invalid", - "Read", - "Write", - "Compressor Read", - "Compressor Write", - NULL - }; - static const int operationTypeFromIndex[] = { -1, 0, 1, 2, 3, 4 }; - - static const char* secondsToDisplayString[] = - { - "10 Seconds", - "15 Seconds", - "30 Seconds", - "60 Seconds", - NULL - }; - static const int secondsFromIndex[] = { 10, 15, 30, 60, 0 }; - - static const char* tableLengthToDisplayString[] = - { - "All Events", - " 1K Events", - " 5K Events", - "10K Events", - "50K Events", - "Playback Start Relative", - NULL - }; - static const int tableLengthFromIndex[] = { 0, 1000, 5000, 10000, 50000, -1, 0 }; - - static const char* chartTypeToDisplayString[] = - { - "Throughput", - "Seek Count", - NULL - }; - static const int chartTypeFromIndex[] = { 0, 1 }; - - static const char* seekTypeToString[] = - { - "", - "Skip Position", - "Switch Streams", - NULL - }; - - class StreamerDrillerDialogLocal - : public AZ::UserSettings - { - public: - AZ_RTTI(StreamerDrillerDialogLocal, "{FBC1032F-A1DE-40CB-97E1-8C5014E31850}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(StreamerDrillerDialogLocal, AZ::SystemAllocator, 0); - - AZStd::vector m_tableColumnStorage; - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_tableColumnStorage", &StreamerDrillerDialogLocal::m_tableColumnStorage) - ->Version(1); - } - } - }; - - class StreamerDrillerDialogSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(StreamerDrillerDialogSavedState, "{F97F6145-10D6-4C7F-87DB-FD268EB0EF21}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(StreamerDrillerDialogSavedState, AZ::SystemAllocator, 0); - - int m_viewType; - bool m_autoZoom; - float m_manualZoomMin; // if we're not automatically zooming, then we remember the prior zoom to re-apply it - float m_manualZoomMax; - int m_chartLengthInSeconds; - AZStd::string m_chartNameFilter; - int m_chartOperationFilter; - int m_chartEventFilter; - int m_tableEventLimiter; - FrameNumberType m_frameDeltaLock; - - StreamerDrillerDialogSavedState() - { - m_viewType = VIEW_TYPE_THROUGHPUT; - m_autoZoom = true; - m_manualZoomMin = 2000000000.0f; - m_manualZoomMax = -2000000000.0f; - m_chartLengthInSeconds = 10; - // -1 := no filter and 0..n := filtered by type - m_chartOperationFilter = -1; - m_chartEventFilter = -1; - m_tableEventLimiter = 0; - m_frameDeltaLock = 0; - } - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_viewType", &StreamerDrillerDialogSavedState::m_viewType) - ->Field("m_autoZoom", &StreamerDrillerDialogSavedState::m_autoZoom) - ->Field("m_manualZoomMin", &StreamerDrillerDialogSavedState::m_manualZoomMin) - ->Field("m_manualZoomMax", &StreamerDrillerDialogSavedState::m_manualZoomMax) - ->Field("m_chartLengthInSeconds", &StreamerDrillerDialogSavedState::m_chartLengthInSeconds) - ->Field("m_chartNameFilter", &StreamerDrillerDialogSavedState::m_chartNameFilter) - ->Field("m_chartOperationFilter", &StreamerDrillerDialogSavedState::m_chartOperationFilter) - ->Field("m_chartEventFilter", &StreamerDrillerDialogSavedState::m_chartEventFilter) - ->Field("m_tableEventLimiter", &StreamerDrillerDialogSavedState::m_tableEventLimiter) - ->Field("m_frameDeltaLock", &StreamerDrillerDialogSavedState::m_frameDeltaLock) - ->Version(8); - } - } - }; - - ////////////////////////////////////////////////////////////////////////// - // Qt supports A "filter proxy model" - // you have a normal model - // and then you wrap that model in a filter proxy model. - // this allows you to filter the inner model and feed the outer (filtered) model to the view. - - // this particular filter model lets you specify search criteria in the Window or the Message field - class StreamerFilterModel - : public QSortFilterProxyModel - { - public: - AZ_CLASS_ALLOCATOR(StreamerFilterModel, AZ::SystemAllocator, 0); - int m_nameColumn; - int m_eventColumn; - int m_operationColumn; - StreamerDataAggregator* m_dataSource; - - QString m_currentNameFilter; - int m_currentEventFilter; - int m_currentOperationFilter; - - FrameNumberType m_frameDeltaLock; - - StreamerFilterModel(StreamerDataAggregator* dataSource, int nameColumn, int eventColumn, int operationColumn, QObject* pParent) - : QSortFilterProxyModel(pParent) - { - m_dataSource = dataSource; - m_nameColumn = nameColumn; - m_eventColumn = eventColumn; - m_operationColumn = operationColumn; - m_currentEventFilter = eventTypeFromIndex[0]; - m_currentOperationFilter = operationTypeFromIndex[0]; - m_frameDeltaLock = 0; - } - - void InvalidateFilter() - { - invalidateFilter(); - } - void SetDeltaLock(FrameNumberType lock) - { - m_frameDeltaLock = lock; - invalidateFilter(); - } - void UpdateNameFilter(const QString& newFilter) - { - if (newFilter.compare(m_currentNameFilter) != 0) - { - if (m_nameColumn >= 0) - { - m_currentNameFilter = newFilter; - invalidateFilter(); - } - } - } - void UpdateEventFilter(int newFilter) - { - if (newFilter != m_currentEventFilter) - { - if (m_eventColumn >= 0) - { - m_currentEventFilter = newFilter; - invalidateFilter(); - } - } - } - void UpdateOperationFilter(int newFilter) - { - if (newFilter != m_currentOperationFilter) - { - if (m_operationColumn >= 0) - { - m_currentOperationFilter = newFilter; - invalidateFilter(); - } - } - } - - protected: - virtual bool filterAcceptsRow(int source_row, const QModelIndex& /*source parent*/) const - { - StreamerDrillerLogModel* ptrModel = static_cast(sourceModel()); - - if (!ptrModel) - { - return true; - } - - EventNumberType firstIndex = ptrModel->GetAggregator()->GetFirstIndexAtFrame(m_frameDeltaLock); - EventNumberType rowEventIndex = ptrModel->RowToGlobalEventIndex(source_row); - if (firstIndex == Driller::kInvalidEventIndex - || rowEventIndex == Driller::kInvalidEventIndex - || rowEventIndex < firstIndex) - { - return false; - } - - AZ_Assert(rowEventIndex < static_cast(m_dataSource->GetEvents().size()), "EventIndex outside of Events vector size."); - - auto pEvt = m_dataSource->GetEvents()[rowEventIndex]; - - if (m_currentNameFilter.size()) - { - QString sourceName = ptrModel->data(source_row, m_nameColumn, Qt::DisplayRole).toString(); - QString sourceDebugName = ptrModel->data(source_row, m_nameColumn + 1, Qt::DisplayRole).toString(); - if ( - (!sourceName.contains(m_currentNameFilter, Qt::CaseInsensitive)) - && - (!sourceDebugName.contains(m_currentNameFilter, Qt::CaseInsensitive)) - ) - { - return false; - } - } - - if (m_currentEventFilter != eventTypeFromIndex[0]) - { - if ((unsigned int)m_currentEventFilter != pEvt->GetEventType()) - { - return false; - } - } - if (m_currentOperationFilter != operationTypeFromIndex[0]) - { - if (pEvt->GetEventType() == Driller::Streamer::SET_OPERATION_COMPLETE) - { - auto completeOp = static_cast(pEvt); - if (m_currentOperationFilter == completeOp->m_type) - { - return true; - } - } - - return false; - } - - return true; - } - }; - - ////////////////////////////////////////////////////////////////////////// - StreamerAxisFormatter::StreamerAxisFormatter(QObject* pParent) - : QAbstractAxisFormatter(pParent) - { - m_dataType = DATA_TYPE_BYTES_PER_SECOND; - m_lastAxisValueForScaling = 1.0f; - } - - QString StreamerAxisFormatter::formatMegabytes(float value) - { - // data is in Bytes per Second! - // so how big is the division size? - if (m_lastAxisValueForScaling > 499999.0f) // greater than half MB - { - return QObject::tr("%1Mb/s").arg(QString::number(value / 1000000.0f, 'f', 1)); - } - else if (m_lastAxisValueForScaling > 1000.0f) // greater than one K - { - if (m_lastAxisValueForScaling > 1000.0f) // whole milliseconds - { - return QObject::tr("%1%2").arg(QString::number(value / 1000.0f, 'f', 0)).arg("Kb/s"); - } - else - { - return QObject::tr("%1%2").arg(QString::number(value / 1000.0f, 'f', 1)).arg("Kb/s"); - } - } - else if (m_lastAxisValueForScaling > 1.0f) - { - return QObject::tr("%1B/s").arg((int)value); - } - else - { - return QObject::tr("%1B/s").arg(QString::number((double)value, 'f', 2)); - } - } - - void StreamerAxisFormatter::SetDataType(int type) - { - m_dataType = type; - } - - QString StreamerAxisFormatter::convertAxisValueToText(Charts::AxisType axis, float value, float /*minDisplayedValue*/, float /*maxDisplayedValue*/, float divisionSize) - { - if (axis == Charts::AxisType::Vertical) - { - m_lastAxisValueForScaling = divisionSize; - if (m_dataType == DATA_TYPE_BYTES_PER_SECOND) - { - return formatMegabytes(value); - } - else - { - return QObject::tr("%1%2").arg(QString::number(value, 'f', 0)).arg("/s"); - } - } - else - { - return QString::number((int)value); - } - }; - - ////////////////////////////////////////////////////////////////////////// - StreamerDrillerDialog::StreamerDrillerDialog(StreamerDataAggregator* aggregator, FrameNumberType atFrame, int profilerIndex) - : QDialog() - , m_aggregator(aggregator) - , m_frame(atFrame) - , m_viewIndex(profilerIndex) - , m_isDeltaLocked(false) - , frameModulo(10) - { - m_gui = azcreate(Ui::StreamerDrillerDialog, ()); - m_gui->setupUi(this); - - setAttribute(Qt::WA_DeleteOnClose, true); - setWindowFlags((this->windowFlags() | Qt::WindowMaximizeButtonHint | Qt::WindowMinimizeButtonHint) & ~(Qt::WindowContextHelpButtonHint)); - - setWindowTitle(aggregator->GetDialogTitle()); - - show(); - raise(); - activateWindow(); - setFocus(); - - m_axisFormatter = aznew StreamerAxisFormatter(this); - m_gui->widgetDataStrip->SetAxisTextFormatter(m_axisFormatter); - - this->layout()->addWidget(m_gui->widgetTableView); - - m_gui->widgetTableView->horizontalHeader()->setSectionsMovable(true); - m_gui->widgetTableView->horizontalHeader()->setSectionResizeMode(QHeaderView::Interactive); - m_gui->widgetTableView->horizontalHeader()->setStretchLastSection(false); - m_gui->widgetTableView->verticalHeader()->setSectionResizeMode(QHeaderView::Fixed); - m_gui->widgetTableView->verticalHeader()->setStretchLastSection(false); - m_gui->widgetTableView->verticalHeader()->setSectionsMovable(false); - m_gui->widgetTableView->verticalHeader()->hide(); - - m_ptrOriginalModel = aznew StreamerDrillerLogModel(aggregator, this); - m_ptrFilter = aznew StreamerFilterModel(m_aggregator, m_gui->widgetTableView->GetNameColumn(), m_gui->widgetTableView->GetEventColumn(), m_gui->widgetTableView->GetOperationColumn(), this); - m_ptrFilter->setSourceModel(m_ptrOriginalModel); - m_gui->widgetTableView->setModel(m_ptrFilter); - - // context menu - actionSelectAll = new QAction(tr("Select All"), this); - connect(actionSelectAll, SIGNAL(triggered()), this, SLOT(SelectAll())); - - actionSelectNone = new QAction(tr("Select None"), this); - connect(actionSelectNone, SIGNAL(triggered()), this, SLOT(SelectNone())); - - actionCopySelected = new QAction(tr("Copy Selected Row(s)"), this); - actionCopySelected->setShortcutContext(Qt::WidgetWithChildrenShortcut); - connect(actionCopySelected, SIGNAL(triggered()), this, SLOT(CopySelected())); - - actionCopyAll = new QAction(tr("Copy All Rows"), this); - connect(actionCopyAll, SIGNAL(triggered()), this, SLOT(CopyAll())); - - // context menu for the table - m_gui->widgetTableView->setContextMenuPolicy(Qt::ActionsContextMenu); - m_gui->widgetTableView->addAction(actionSelectAll); - m_gui->widgetTableView->addAction(actionSelectNone); - m_gui->widgetTableView->addAction(actionCopySelected); - m_gui->widgetTableView->addAction(actionCopyAll); - - connect(aggregator, SIGNAL(destroyed(QObject*)), this, SLOT(OnDataDestroyed())); - - connect(m_ptrFilter, SIGNAL(rowsAboutToBeInserted(const QModelIndex &, int, int)), m_gui->widgetTableView, SLOT(rowsAboutToBeInserted())); - connect(m_ptrFilter, SIGNAL(rowsInserted(const QModelIndex &, int, int)), m_gui->widgetTableView, SLOT(rowsInserted())); - connect(m_gui->nameFilter, SIGNAL(textChanged(const QString &)), this, SLOT(onTextChangeWindowFilter(const QString&))); - - connect(m_ptrFilter, SIGNAL(rowsInserted(const QModelIndex &, int, int)), this, SLOT(UpdateSummary())); - connect(m_ptrFilter, SIGNAL(rowsRemoved(const QModelIndex &, int, int)), this, SLOT(UpdateSummary())); - connect(m_ptrFilter, SIGNAL(modelReset()), this, SLOT(UpdateSummary())); - - connect(m_ptrOriginalModel, SIGNAL(rowsInserted(const QModelIndex &, int, int)), this, SLOT(UpdateSummary())); - connect(m_ptrOriginalModel, SIGNAL(rowsRemoved(const QModelIndex &, int, int)), this, SLOT(UpdateSummary())); - connect(m_ptrOriginalModel, SIGNAL(modelReset()), this, SLOT(UpdateSummary())); - - connect(m_gui->checkBoxAutoZoom, SIGNAL(toggled(bool)), this, SLOT(OnAutoZoomChange(bool))); - - { - QMenu* eventMenu = new QMenu(this); - - for (int i = 0; eventTypeToString[i]; ++i) - { - eventMenu->addAction(CreateEventFilterAction(eventTypeToString[i], eventTypeFromIndex[i])); - } - - m_gui->eventTypeFilterButton->setText(eventTypeToString[0]); - m_gui->eventTypeFilterButton->setMenu(eventMenu); - } - { - QMenu* operationMenu = new QMenu(this); - - for (int i = 0; operationTypeToString[i]; ++i) - { - operationMenu->addAction(CreateOperationFilterAction(operationTypeToString[i], operationTypeFromIndex[i])); - } - - m_gui->operationTypeFilterButton->setText(operationTypeToString[0]); - m_gui->operationTypeFilterButton->setMenu(operationMenu); - } - { - QMenu* secondsMenu = new QMenu(this); - for (int i = 0; secondsToDisplayString[i]; ++i) - { - secondsMenu->addAction(CreateSecondsMenuAction(secondsToDisplayString[i], secondsFromIndex[i])); - } - - m_gui->chartLengthButton->setText(secondsToDisplayString[0]); - m_gui->chartLengthButton->setMenu(secondsMenu); - } - { - QMenu* chartTypeMenu = new QMenu(this); - for (int i = 0; chartTypeToDisplayString[i]; ++i) - { - chartTypeMenu->addAction(CreateChartTypeMenuAction(chartTypeToDisplayString[i], chartTypeFromIndex[i])); - } - - m_gui->chartTypeButton->setText(chartTypeToDisplayString[0]); - m_gui->chartTypeButton->setMenu(chartTypeMenu); - } - { - QMenu* tableLengthMenu = new QMenu(this); - for (int i = 0; tableLengthToDisplayString[i]; ++i) - { - tableLengthMenu->addAction(CreateTableLengthMenuAction(tableLengthToDisplayString[i], i)); - } - - m_gui->tableLengthButton->setText(tableLengthToDisplayString[0]); - m_gui->tableLengthButton->setMenu(tableLengthMenu); - } - - DrillerMainWindowMessages::Handler::BusConnect(m_aggregator->GetIdentity()); - DrillerEventWindowMessages::Handler::BusConnect(m_aggregator->GetIdentity()); - - AZStd::string windowStateStr = AZStd::string::format("STREAMER DATA VIEW WINDOW STATE %i", m_viewIndex); - m_windowStateCRC = AZ::Crc32(windowStateStr.c_str()); - AZStd::intrusive_ptr windowState = AZ::UserSettings::Find(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - if (windowState) - { - windowState->RestoreGeometry(this); - } - - AZStd::string tableStateStr = AZStd::string::format("STREAMER TABLE VIEW STATE %i", m_viewIndex); - m_tableStateCRC = AZ::Crc32(tableStateStr.c_str()); - auto tableState = AZ::UserSettings::Find(m_tableStateCRC, AZ::UserSettings::CT_GLOBAL); - if (tableState) - { - QByteArray treeData((const char*)tableState->m_tableColumnStorage.data(), (int)tableState->m_tableColumnStorage.size()); - m_gui->widgetTableView->horizontalHeader()->restoreState(treeData); - } - - AZStd::string dataViewStateStr = AZStd::string::format("STREAMER DATA VIEW STATE %i", m_viewIndex); - m_dataViewStateCRC = AZ::Crc32(dataViewStateStr.c_str()); - m_persistentState = AZ::UserSettings::CreateFind(m_dataViewStateCRC, AZ::UserSettings::CT_GLOBAL); - ApplyPersistentState(); - - FrameChanged(atFrame); - } - - StreamerDrillerDialog::~StreamerDrillerDialog() - { - SaveOnExit(); - azdestroy(m_gui); - } - - QAction* StreamerDrillerDialog::CreateSecondsMenuAction(QString qs, int seconds) - { - QAction* act = new QAction(qs, this); - act->setObjectName(qs); - act->setProperty("Seconds", seconds); - connect(act, SIGNAL(triggered()), this, SLOT(OnSecondsMenu())); - return act; - } - QAction* StreamerDrillerDialog::CreateTableLengthMenuAction(QString qs, int limit) - { - QAction* act = new QAction(qs, this); - act->setObjectName(qs); - act->setProperty("Limit", limit); - connect(act, SIGNAL(triggered()), this, SLOT(OnTableLengthMenu())); - return act; - } - QAction* StreamerDrillerDialog::CreateChartTypeMenuAction(QString qs, int dataType) - { - QAction* act = new QAction(qs, this); - act->setObjectName(qs); - act->setProperty("DataType", dataType); - connect(act, SIGNAL(triggered()), this, SLOT(OnDataTypeMenu())); - return act; - } - - QAction* StreamerDrillerDialog::CreateEventFilterAction(QString qs, int eventType) - { - QAction* act = new QAction(qs, this); - act->setObjectName(qs); - act->setProperty("EventType", eventType); - connect(act, SIGNAL(triggered()), this, SLOT(OnEventFilterMenu())); - return act; - } - - QAction* StreamerDrillerDialog::CreateOperationFilterAction(QString qs, int operationType) - { - QAction* act = new QAction(qs, this); - act->setObjectName(qs); - act->setProperty("OperationType", operationType); - connect(act, SIGNAL(triggered()), this, SLOT(OnOperationFilterMenu())); - return act; - } - - void StreamerDrillerDialog::SaveOnExit() - { - auto tableState = AZ::UserSettings::CreateFind(m_tableStateCRC, AZ::UserSettings::CT_GLOBAL); - if (tableState) - { - if (m_gui->widgetTableView && m_gui->widgetTableView->horizontalHeader()) - { - QByteArray qba = m_gui->widgetTableView->horizontalHeader()->saveState(); - tableState->m_tableColumnStorage.assign((AZ::u8*)qba.begin(), (AZ::u8*)qba.end()); - } - } - - auto pState = AZ::UserSettings::CreateFind(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - if (m_persistentState) - { - pState->CaptureGeometry(this); - } - } - void StreamerDrillerDialog::hideEvent(QHideEvent* evt) - { - QDialog::hideEvent(evt); - } - void StreamerDrillerDialog::closeEvent(QCloseEvent* evt) - { - QDialog::closeEvent(evt); - } - void StreamerDrillerDialog::OnDataDestroyed() - { - deleteLater(); - } - - void StreamerDrillerDialog::onTextChangeWindowFilter(const QString& newText) - { - m_ptrFilter->UpdateNameFilter(newText); - m_persistentState->m_chartNameFilter = newText.toUtf8().data(); - } - void StreamerDrillerDialog::OnEventFilterMenu() - { - QAction* qa = qobject_cast(sender()); - if (qa) - { - m_gui->eventTypeFilterButton->setText(qa->objectName()); - int eventType = qa->property("EventType").toInt(); - m_ptrFilter->UpdateEventFilter(eventType); - m_persistentState->m_chartEventFilter = eventType; - } - } - void StreamerDrillerDialog::OnOperationFilterMenu() - { - QAction* qa = qobject_cast(sender()); - if (qa) - { - m_gui->operationTypeFilterButton->setText(qa->objectName()); - int operationType = qa->property("OperationType").toInt(); - m_ptrFilter->UpdateOperationFilter(operationType); - m_persistentState->m_chartOperationFilter = operationType; - } - } - void StreamerDrillerDialog::OnSecondsMenu() - { - QAction* qa = qobject_cast(sender()); - if (qa) - { - m_gui->chartLengthButton->setText(qa->objectName()); - int seconds = qa->property("Seconds").toInt(); - SetChartLength(seconds); - } - } - void StreamerDrillerDialog::OnTableLengthMenu() - { - QAction* qa = qobject_cast(sender()); - if (qa) - { - int limit = qa->property("Limit").toInt(); - OnTableLengthMenu(limit); - } - } - void StreamerDrillerDialog::OnTableLengthMenu(int limit) - { - if (tableLengthFromIndex[limit] >= 0) - { - m_gui->tableLengthButton->setText(tableLengthToDisplayString[limit]); - m_persistentState->m_tableEventLimiter = limit; - m_isDeltaLocked = false; - SetTableLengthLimit(tableLengthFromIndex[limit]); - m_ptrFilter->SetDeltaLock(0); - } - else - { - m_gui->tableLengthButton->setText(QString("Delta:%1").arg(m_frame)); - m_isDeltaLocked = true; - m_ptrFilter->SetDeltaLock(m_persistentState->m_frameDeltaLock); - } - - BuildChart(m_frame, m_persistentState->m_viewType, m_persistentState->m_chartLengthInSeconds); - } - void StreamerDrillerDialog::OnDataTypeMenu() - { - QAction* qa = qobject_cast(sender()); - if (qa) - { - OnDataTypeMenu(qa->property("DataType").toInt()); - } - } - void StreamerDrillerDialog::OnDataTypeMenu(int type) - { - m_gui->chartTypeButton->setText(chartTypeToDisplayString[type]); - m_persistentState->m_viewType = type; - SetChartType(type); - m_axisFormatter->SetDataType(type); - } - void StreamerDrillerDialog::OnAutoZoomChange(bool newValue) - { - if (!newValue) - { - m_persistentState->m_autoZoom = false; - m_gui->widgetDataStrip->GetWindowRange(Charts::AxisType::Vertical, m_persistentState->m_manualZoomMin, m_persistentState->m_manualZoomMax); - } - else - { - m_persistentState->m_autoZoom = true; - m_persistentState->m_manualZoomMin = 2000000000.0f; - m_persistentState->m_manualZoomMax = -2000000000.0f; - } - BuildChart(m_frame, m_persistentState->m_viewType, m_persistentState->m_chartLengthInSeconds); - } - void StreamerDrillerDialog::SetChartLength(int newLength) - { - m_persistentState->m_chartLengthInSeconds = newLength; - BuildChart(m_frame, m_persistentState->m_viewType, newLength); - } - void StreamerDrillerDialog::SetChartType(int newType) - { - BuildChart(m_frame, newType, m_persistentState->m_chartLengthInSeconds); - } - void StreamerDrillerDialog::SetTableLengthLimit(int limit) - { - m_ptrOriginalModel->SetLengthLimit(limit); - m_ptrFilter->InvalidateFilter(); - } - int StreamerDrillerDialog::GetViewType() - { - return m_persistentState->m_viewType; - } - - // Backing code to the context menu - void StreamerDrillerDialog::SelectAll() - { - m_gui->widgetTableView->selectAll(); - } - - void StreamerDrillerDialog::SelectNone() - { - m_gui->widgetTableView->clearSelection(); - } - - QString StreamerDrillerDialog::ConvertRowToText(const QModelIndex& row) - { - auto pModel = m_ptrFilter; - - if (!pModel) - { - return QString(); - } - - int columnCount = pModel->columnCount(); - QString finalString = ""; - - QModelIndex sourceRow = m_ptrFilter->mapToSource(row); - - for (int column = 0; column < columnCount; ++column) - { - QString displayString = m_ptrOriginalModel->data(sourceRow.row(), column, Qt::DisplayRole).toString(); - if ((column != 0) && (finalString.length() > 0)) - { - finalString += "; "; - } - if (displayString.length()) - { - finalString += displayString.toUtf8().data(); - } - else - { - // must enforce some length even on empty strings in the table - // so that comma-delimiters output properly - finalString += " "; - } - } - finalString += "\n"; - - return finalString; - } - - void StreamerDrillerDialog::CopySelected() - { - auto pModel = m_ptrFilter; - if (!pModel) - { - return; - } - - AZStd::string accumulator; - QItemSelectionModel* selectionModel = m_gui->widgetTableView->selectionModel(); - QModelIndexList indices = selectionModel->selectedRows(); - for (QModelIndexList::iterator iter = indices.begin(); iter != indices.end(); ++iter) - { - QString res = this->ConvertRowToText(*iter); - accumulator += res.toUtf8().data(); - } - - if (accumulator.size()) - { - QClipboard* clipboard = QApplication::clipboard(); - if (clipboard) - { - clipboard->setText(accumulator.c_str()); - } - } - } - - void StreamerDrillerDialog::CopyAll() - { - auto pModel = m_ptrFilter; - if (!pModel) - { - return; - } - - QString finalString = ""; - - int numRows = pModel->rowCount(); - for (int rowIdx = 0; rowIdx < numRows; ++rowIdx) - { - QModelIndex idx = pModel->index(rowIdx, 0); - finalString += this->ConvertRowToText(idx); - } - - QClipboard* clipboard = QApplication::clipboard(); - - if (clipboard) - { - clipboard->setText(finalString); - } - } - - void StreamerDrillerDialog::ApplyPersistentState() - { - onTextChangeWindowFilter(m_persistentState->m_chartNameFilter.c_str()); - OnDataTypeMenu(m_persistentState->m_viewType); - - m_gui->tableLengthButton->setText(tableLengthToDisplayString[m_persistentState->m_tableEventLimiter]); - SetTableLengthLimit(tableLengthFromIndex[m_persistentState->m_tableEventLimiter]); - - if (m_isDeltaLocked) - { - m_gui->tableLengthButton->setText(QString("Delta:%1").arg(m_persistentState->m_frameDeltaLock)); - m_ptrFilter->SetDeltaLock(m_persistentState->m_frameDeltaLock); - } - else - { - m_ptrFilter->SetDeltaLock(0); - } - - m_gui->checkBoxAutoZoom->setChecked(m_persistentState->m_autoZoom); - OnAutoZoomChange(m_persistentState->m_autoZoom); - - for (int i = 0; secondsFromIndex[i]; ++i) - { - if (m_persistentState->m_chartLengthInSeconds == secondsFromIndex[i]) - { - m_gui->chartLengthButton->setText(secondsToDisplayString[i]); - break; - } - } - - BuildChart(m_frame, m_persistentState->m_viewType, m_persistentState->m_chartLengthInSeconds); // full seconds, 60 frames per entry on the chart, modulo even seconds - - UpdateSummary(); - } - - void StreamerDrillerDialog::ApplySettingsFromWorkspace(WorkspaceSettingsProvider* provider) - { - AZStd::string workspaceStateStr = AZStd::string::format("STREAMER DATA VIEW WORKSPACE STATE %i", m_viewIndex); - AZ::u32 workspaceStateCRC = AZ::Crc32(workspaceStateStr.c_str()); - - StreamerDrillerDialogSavedState* workspace = provider->FindSetting(workspaceStateCRC); - if (workspace) - { - *m_persistentState = *workspace; - } - } - - void StreamerDrillerDialog::ActivateWorkspaceSettings(WorkspaceSettingsProvider*) - { - ApplyPersistentState(); - } - - void StreamerDrillerDialog::FrameChanged(FrameNumberType frame) - { - m_frame = frame; - BuildChart(m_frame, m_persistentState->m_viewType, m_persistentState->m_chartLengthInSeconds); // full seconds, 60 frames per entry on the chart, modulo even seconds - } - - void StreamerDrillerDialog::PlaybackLoopBeginChanged(FrameNumberType frame) - { - m_persistentState->m_frameDeltaLock = frame; - FrameNumberType lockedFrame = m_isDeltaLocked ? m_persistentState->m_frameDeltaLock : 0; - m_ptrFilter->SetDeltaLock(lockedFrame); - BuildChart(m_frame, m_persistentState->m_viewType, m_persistentState->m_chartLengthInSeconds); // full seconds, 60 frames per entry on the chart, modulo even seconds - } - - void StreamerDrillerDialog::BuildChart(FrameNumberType atFrame, int viewType, int howFar) - { - BuildAllLabels(atFrame, viewType); - - FrameNumberType lockedFrame = m_isDeltaLocked ? m_persistentState->m_frameDeltaLock : 0; - const char* vAxisLabel[] = {"Transfer", "Seek"}; - - m_gui->widgetDataStrip->Reset(); - FrameNumberType flooredFrame = (atFrame + frameModulo - 1) / frameModulo; - float calculatedFrame = (float)(flooredFrame - howFar >= 0 ? flooredFrame - howFar : 0); - m_gui->widgetDataStrip->AddAxis("Time", calculatedFrame, (float)calculatedFrame + howFar, true, true); - m_gui->widgetDataStrip->AddAxis(vAxisLabel[viewType], m_persistentState->m_manualZoomMin, m_persistentState->m_manualZoomMax, false, false); - int channelID = m_gui->widgetDataStrip->AddChannel("ThroughputOrSeeks"); - m_gui->widgetDataStrip->SetChannelStyle(channelID, StripChart::Channel::STYLE_CONNECTED_LINE); - m_gui->widgetDataStrip->SetChannelColor(channelID, Qt::green); - - FrameNumberType currentFrame = atFrame - (atFrame % frameModulo) - 1; - float accumulator = 0; - - while (howFar > 0 && currentFrame >= (lockedFrame - frameModulo)) - { - FrameNumberType displayFrame = currentFrame; - float thisSecond = 0.0f; - - if (viewType == VIEW_TYPE_THROUGHPUT) - { - while ((currentFrame % frameModulo) && (currentFrame >= 0)) - { - thisSecond += m_aggregator->ThroughputAtFrame(currentFrame); - accumulator += m_aggregator->ThroughputAtFrame(currentFrame); - --currentFrame; - } - ; - thisSecond += m_aggregator->ThroughputAtFrame(currentFrame); - accumulator += m_aggregator->ThroughputAtFrame(currentFrame); - } - else if (viewType == VIEW_TYPE_SEEKINFO) - { - while ((currentFrame % frameModulo) && (currentFrame >= 0)) - { - thisSecond += m_aggregator->SeeksAtFrame(currentFrame); - accumulator += m_aggregator->SeeksAtFrame(currentFrame); - --currentFrame; - } - ; - thisSecond += m_aggregator->SeeksAtFrame(currentFrame); - accumulator += m_aggregator->SeeksAtFrame(currentFrame); - } - - m_gui->widgetDataStrip->AddData(channelID, displayFrame / frameModulo, (float)displayFrame / (float)frameModulo, thisSecond * (60.0f / (float)frameModulo)); - - --currentFrame; - --howFar; - } - - if (m_persistentState->m_autoZoom) - { - m_gui->widgetDataStrip->ZoomExtents(Charts::AxisType::Vertical); - } - else - { - m_gui->widgetDataStrip->ZoomManual(Charts::AxisType::Vertical, m_persistentState->m_manualZoomMin, m_persistentState->m_manualZoomMax); - } - } - - void StreamerDrillerDialog::BuildAllLabels(FrameNumberType atFrame, int viewType) - { - FrameNumberType currentFrame = atFrame; - float accumulateDelta = 0; - FrameNumberType lockedFrame = m_isDeltaLocked ? m_persistentState->m_frameDeltaLock : 0; - - while (currentFrame >= lockedFrame) - { - if (viewType == VIEW_TYPE_THROUGHPUT) - { - accumulateDelta += m_aggregator->ThroughputAtFrame(currentFrame); - } - else if (viewType == VIEW_TYPE_SEEKINFO) - { - accumulateDelta += m_aggregator->SeeksAtFrame(currentFrame); - } - - --currentFrame; - } - - QString deltaString = UpdateDeltaLabel(accumulateDelta); - - float accumulateTime = float(atFrame - lockedFrame + 1) / 60.0f; - QString timeString = QString("T=%1s").arg(QString::number(accumulateTime, 'f', 1)); - - float accumulateAverage = 0.0f; - if (atFrame >= lockedFrame) - { - if (viewType == VIEW_TYPE_THROUGHPUT) - { - accumulateAverage = m_aggregator->ThroughputAtFrame(atFrame); - } - else if (viewType == VIEW_TYPE_SEEKINFO) - { - accumulateAverage = m_aggregator->SeeksAtFrame(atFrame); - } - } - QString averageString = UpdateAverageLabel(accumulateAverage); - QString eventsString = UpdateSummary(); - - QString finalString = eventsString + QString(" ") + deltaString + QString(" ") + averageString + QString(" ") + timeString; - m_gui->summaryLabel->setText(finalString); - - m_gui->summaryLabel->update(); - } - - QString StreamerDrillerDialog::UpdateSummary() - { - int filterRows = m_ptrFilter->rowCount(); - int originalRows = m_ptrOriginalModel->rowCount(); - - return QString("[%1 / %2]").arg(filterRows).arg(originalRows); - } - - QString StreamerDrillerDialog::UpdateDeltaLabel(float accumulator) - { - if (m_persistentState->m_viewType == VIEW_TYPE_THROUGHPUT) - { - QString formattedBytes = FormatMegabytes(accumulator); - return QString("Data=%1").arg(formattedBytes); - } - else - { - return QString("Seek=%1").arg(QString::number(accumulator, 'f', 0)); - } - } - - QString StreamerDrillerDialog::UpdateAverageLabel(float accumulator) - { - if (m_persistentState->m_viewType == VIEW_TYPE_THROUGHPUT) - { - QString formattedBytes = FormatMegabytes(accumulator); - return QString("Now=%1").arg(formattedBytes); - } - else - { - return QString("Seek=%1").arg(QString::number(accumulator, 'f', 0)); - } - } - - QString StreamerDrillerDialog::FormatMegabytes(float value) - { - // data is in Bytes - // so how big is the division size? - if (value > 499999.0f) // greater than half MB - { - return QObject::tr("%1Mb").arg(QString::number(value / 1000000.0f, 'f', 1)); - } - else if (value > 1000.0f) // greater than one K - { - if (value > 1000.0f) // whole milliseconds - { - return QObject::tr("%1%2").arg(QString::number(value / 1000.0f, 'f', 0)).arg("Kb"); - } - else - { - return QObject::tr("%1%2").arg(QString::number(value / 1000.0f, 'f', 1)).arg("Kb"); - } - } - else if (value > 1.0f) - { - return QObject::tr("%1B").arg((int)value); - } - else - { - return QObject::tr("%1B").arg(QString::number((double)value, 'f', 2)); - } - } - - void StreamerDrillerDialog::EventFocusChanged(EventNumberType /*eventIdx*/) - { - } - - void StreamerDrillerDialog::SaveSettingsToWorkspace(WorkspaceSettingsProvider* provider) - { - AZStd::string workspaceStateStr = AZStd::string::format("STREAMER DATA VIEW WORKSPACE STATE %i", m_viewIndex); - AZ::u32 workspaceStateCRC = AZ::Crc32(workspaceStateStr.c_str()); - { - StreamerDrillerDialogSavedState* workspace = provider->CreateSetting(workspaceStateCRC); - if (workspace) - { - *workspace = *m_persistentState; - } - } - } - - void StreamerDrillerDialog::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - StreamerDrillerDialogSavedState::Reflect(context); - StreamerDrillerDialogLocal::Reflect(context); - } - } - - ////////////////////////////////////////////////////////////////////////// - ////////////////////////////////////////////////////////////////////////// - // StreamerDrillerLogModel - ////////////////////////////////////////////////////////////////////////// - ////////////////////////////////////////////////////////////////////////// - StreamerDrillerLogModel::StreamerDrillerLogModel(StreamerDataAggregator* data, QObject* pParent) - : QAbstractTableModel(pParent) - , m_data(data) - , m_lastShownEvent(-1) - , m_lengthLimit(0) - { - connect(data, SIGNAL(OnDataCurrentEventChanged()), this, SLOT(OnDataCurrentEventChanged())); - connect(data, SIGNAL(OnDataAddEvent()), this, SLOT(OnDataAddEvent())); - - m_lastShownEvent = m_data->GetCurrentEvent(); - } - - StreamerDrillerLogModel::~StreamerDrillerLogModel() - { - } - - void StreamerDrillerLogModel::OnDataCurrentEventChanged() - { - // real source data changes operate in real space, not the window of the length limited - int limitStore = m_lengthLimit; - SetLengthLimit(0); - - AZ::s64 currentEvent = m_data->GetCurrentEvent(); - // NOTE: we add +1 to all events, because we are EXECUTING the current event (so it must be shown) - if (m_lastShownEvent > currentEvent) - { - // remove rows - beginRemoveRows(QModelIndex(), (int)currentEvent + 1, (int)m_lastShownEvent); - endRemoveRows(); - } - else if (m_lastShownEvent < currentEvent) - { - // add rows - beginInsertRows(QModelIndex(), (int)m_lastShownEvent + 1, (int)currentEvent); - endInsertRows(); - } - m_lastShownEvent = currentEvent; - - SetLengthLimit(limitStore); - } - - void StreamerDrillerLogModel::OnDataAddEvent() - { - } - - void StreamerDrillerLogModel::SetLengthLimit(int limit) - { - beginResetModel(); - m_lengthLimit = limit; - endResetModel(); - } - - int StreamerDrillerLogModel::rowCount(const QModelIndex&) const - { - AZ::s64 currentEvent = m_data->GetCurrentEvent(); - if (m_lengthLimit && (m_lengthLimit < (currentEvent + 1))) - { - return m_lengthLimit; - } - return (int)currentEvent + 1; - } - int StreamerDrillerLogModel::columnCount(const QModelIndex&) const - { - return SDM_TOTAL; - } - Qt::ItemFlags StreamerDrillerLogModel::flags(const QModelIndex& index) const - { - if (!index.isValid()) - { - return Qt::ItemIsEnabled; - } - - return QAbstractItemModel::flags(index); - } - - QVariant StreamerDrillerLogModel::headerData (int section, Qt::Orientation orientation, int role) const - { - if (role == Qt::DisplayRole) - { - if (orientation == Qt::Horizontal) - { - return QVariant(SDM_STRING[section]); - } - // purposefully ignoring the ::Vertical orientation as part of an optimiztion - } - - return QVariant(); - } - - EventNumberType StreamerDrillerLogModel::RowToGlobalEventIndex(int row) - { - EventNumberType currentEvent = m_data->GetCurrentEvent(); - if (m_lengthLimit && (m_lengthLimit < (currentEvent + 1))) - { - row = row + (int)currentEvent - m_lengthLimit + 1; - } - - return row; - } - - QVariant StreamerDrillerLogModel::data(const QModelIndex& index, int role) const - { - return data(index.row(), index.column(), role); - } - - QVariant StreamerDrillerLogModel::data(int row, int column, int role) const - { - AZ::s64 currentEvent = m_data->GetCurrentEvent(); - if (m_lengthLimit && (m_lengthLimit < (currentEvent + 1))) - { - row = row + (int)currentEvent - m_lengthLimit + 1; - } - - return data(m_data->GetEvents()[row], row, column, role); - } - - QVariant StreamerDrillerLogModel::data(DrillerEvent* event, int row, int column, int role) const - { - using namespace AZ::Debug; - - const bool dummyCompressedFlag = false; // placeholder until set from stream info - - if (role == Qt::DisplayRole) - { - // COLUMN ------------------------------------------------------------- - if (column == SDM_NAME) - { - switch (event->GetEventType()) - { - case Driller::Streamer::SET_DEVICE_MOUNTED: - { - return QVariant(QString(static_cast(event)->m_deviceData.m_name)); - break; - } - case Driller::Streamer::SET_DEVICE_UNMOUNTED: - { - return QVariant(QString(static_cast(event)->m_unmountedDeviceData->m_name)); - break; - } - case Driller::Streamer::SET_REGISTER_STREAM: - { - return QVariant(QString(static_cast(event)->m_streamData.m_name)); - break; - } - case Driller::Streamer::SET_UNREGISTER_STREAM: - { - auto depEvt = static_cast(event); - if (depEvt && depEvt->m_removedStreamData) - { - return QVariant(QString(depEvt->m_removedStreamData->m_name)); - } - return QVariant(QString(m_data->GetFilenameFromStreamId(row, depEvt->m_streamId))); - break; - } - case Driller::Streamer::SET_ADD_REQUEST: - { - auto depEvt = static_cast(event); - return QVariant(QString(m_data->GetFilenameFromStreamId(row, depEvt->m_requestData.m_streamId))); - break; - } - case Driller::Streamer::SET_CANCEL_REQUEST: - { - return QVariant(QString(m_data->GetFilenameFromStreamId(row, static_cast(event)->m_cancelledRequestData->m_streamId))); - break; - } - case Driller::Streamer::SET_RESCHEDULE_REQUEST: - { - return QVariant(QString(m_data->GetFilenameFromStreamId(row, static_cast(event)->m_rescheduledRequestData->m_streamId))); - break; - } - case Driller::Streamer::SET_COMPLETE_REQUEST: - { - auto depEvt = static_cast(event); - return QVariant(QString(m_data->GetFilenameFromStreamId(row, depEvt->m_removedRequest->m_streamId))); - break; - } - case Driller::Streamer::SET_OPERATION_START: - { - auto depEvt = static_cast(event); - return QVariant(QString("%1").arg(m_data->GetFilenameFromStreamId(row, depEvt->m_streamId))); - break; - } - case Driller::Streamer::SET_OPERATION_COMPLETE: - { - auto depEvt = static_cast(event); - return QVariant(QString("%1").arg(m_data->GetFilenameFromStreamId(row, depEvt->m_streamId))); - break; - } - } - } - // COLUMN ------------------------------------------------------------- - if (column == SDM_DEBUG_NAME) - { - switch (event->GetEventType()) - { - case Driller::Streamer::SET_ADD_REQUEST: - { - auto depEvt = static_cast(event); - if (depEvt->m_requestData.m_debugName) - { - return QVariant(QString(depEvt->m_requestData.m_debugName)); - } - break; - } - case Driller::Streamer::SET_CANCEL_REQUEST: - { - return QVariant(QString(static_cast(event)->m_cancelledRequestData->m_debugName)); - break; - } - case Driller::Streamer::SET_RESCHEDULE_REQUEST: - { - return QVariant(QString(static_cast(event)->m_rescheduledRequestData->m_debugName)); - break; - } - case Driller::Streamer::SET_COMPLETE_REQUEST: - { - auto depEvt = static_cast(event); - if (depEvt->m_removedRequest->m_debugName) - { - return QVariant(QString(depEvt->m_removedRequest->m_debugName)); - } - break; - } - case Driller::Streamer::SET_OPERATION_START: - { - auto depEvt = static_cast(event); - return QVariant(QString("%1").arg(m_data->GetDebugNameFromStreamId(row, depEvt->m_streamId))); - break; - } - case Driller::Streamer::SET_OPERATION_COMPLETE: - { - auto depEvt = static_cast(event); - return QVariant(QString("%1").arg(m_data->GetDebugNameFromStreamId(row, depEvt->m_streamId))); - break; - } - } - } - // COLUMN ------------------------------------------------------------- - else if (column == SDM_EVENT_TYPE) - { - return QVariant(QString(eventTypeToString[ event->GetEventType() + 1 ])); - } - // COLUMN ------------------------------------------------------------- - else if (column == SDM_OPERATION) - { - switch (event->GetEventType()) - { - case Driller::Streamer::SET_OPERATION_COMPLETE: - { - return QVariant(QString(operationTypeToString[ static_cast(event)->m_type + 1 ])); - break; - } - } - } - // COLUMN ------------------------------------------------------------- - else if (column == SDM_DELTA_TIME) - { - switch (event->GetEventType()) - { - case Driller::Streamer::SET_OPERATION_START: - { - auto depEvt = static_cast(event); - - StreamerDataAggregator::SeekEventType seekType = m_data->GetSeekType(depEvt->GetGlobalEventId()); - QString seekNotice = seekTypeToString[seekType]; - - return QVariant(QString("%1").arg(seekNotice)); - break; - } - case Driller::Streamer::SET_ADD_REQUEST: - { - // this is a delta between this new request and a previous completion - // useful to determine slack time in incoming request sequences - auto depEvt = static_cast(event); - - int backtrackRow = row - 1; - while (backtrackRow >= 0) - { - DrillerEvent* pastEvent = m_data->GetEvents()[backtrackRow]; - if (pastEvent->GetEventType() == Driller::Streamer::SET_COMPLETE_REQUEST) - { - auto olderRequest = static_cast(pastEvent); - return QVariant(QString("%L1").arg(depEvt->m_timeStamp - olderRequest->m_timeStamp)); - } - - --backtrackRow; - } - break; - } - case Driller::Streamer::SET_COMPLETE_REQUEST: - { - auto thisEvent = static_cast(event); - - int backtrackRow = row - 1; - while (backtrackRow >= 0) - { - DrillerEvent* pastEvent = m_data->GetEvents()[backtrackRow]; - if (pastEvent->GetEventType() == Driller::Streamer::SET_ADD_REQUEST) - { - auto originalRequest = static_cast(pastEvent); - if (thisEvent->m_requestId == originalRequest->m_requestData.m_id) - { - return QVariant(QString("%L1").arg(thisEvent->m_timeStamp - originalRequest->m_timeStamp)); - } - } - - --backtrackRow; - } - break; - } - case Driller::Streamer::SET_OPERATION_COMPLETE: - { - auto thisEvent = static_cast(event); - - int backtrackRow = row - 1; - while (backtrackRow >= 0) - { - DrillerEvent* pastEvent = m_data->GetEvents()[backtrackRow]; - if (pastEvent->GetEventType() == Driller::Streamer::SET_OPERATION_START) - { - auto originalOperation = static_cast(pastEvent); - if (thisEvent->m_streamId == originalOperation->m_streamId) - { - return QVariant(QString("%L1").arg(thisEvent->m_timeStamp - originalOperation->m_timeStamp)); - } - } - - --backtrackRow; - } - break; - } - } - } - // COLUMN ------------------------------------------------------------- - else if (column == SDM_DATA_TRANSFER) - { - switch (event->GetEventType()) - { - case Driller::Streamer::SET_OPERATION_COMPLETE: - { - auto socEvent = static_cast(event); - - if (dummyCompressedFlag) - { - if (static_cast(socEvent->m_type) == StreamerDataAggregator::TRANSFER_EVENT_COMPRESSOR_READ || static_cast(socEvent->m_type) == StreamerDataAggregator::TRANSFER_EVENT_COMPRESSOR_WRITE) - { - return QVariant(QString("%1").arg(socEvent->m_bytesTransferred)); - } - } - else - { - return QVariant(QString("%1").arg(socEvent->m_bytesTransferred)); - } - - break; - } - } - } - // COLUMN ------------------------------------------------------------- - else if (column == SDM_READ_SIZE) - { - switch (event->GetEventType()) - { - case Driller::Streamer::SET_ADD_REQUEST: - { - return QVariant(QString("%1").arg(static_cast(event)->m_requestData.m_size)); - break; - } - case Driller::Streamer::SET_COMPLETE_REQUEST: - { - return QVariant(QString("%1").arg(static_cast(event)->m_removedRequest->m_size)); - break; - } - } - } - else if (column == SDM_OFFSET) - { - switch (event->GetEventType()) - { - case Driller::Streamer::SET_ADD_REQUEST: - { - StreamerAddRequestEvent* actualData = static_cast(event); - return QVariant(QString::number(actualData->m_requestData.m_offset)); - } - break; - case Driller::Streamer::SET_OPERATION_START: - { - StreamerOperationStartEvent* actualData = static_cast(event); - return QVariant(QString::number(actualData->m_operation.m_offset)); - } - break; - } - } - } - - return QVariant(); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerEvents.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerEvents.cpp deleted file mode 100644 index 78e2e1c611..0000000000 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerEvents.cpp +++ /dev/null @@ -1,228 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "StreamerEvents.h" - -#include "StreamerDataAggregator.hxx" - -namespace Driller -{ - void StreamerMountDeviceEvent::StepForward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - aggr->m_devices.push_back(&m_deviceData); - } - - void StreamerMountDeviceEvent::StepBackward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - StreamerDataAggregator::DeviceArrayType::iterator it = AZStd::find(aggr->m_devices.begin(), aggr->m_devices.end(), &m_deviceData); - if (it != aggr->m_devices.end()) // we can potentially not have registered the device if we did NOT capture the full state! TODO: warn about this - { - aggr->m_devices.erase(it); - } - } - - void StreamerUnmountDeviceEvent::StepForward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - for (StreamerDataAggregator::DeviceArrayType::iterator it = aggr->m_devices.begin(); it != aggr->m_devices.end(); ++it) - { - if ((*it)->m_id == m_deviceId) - { - m_unmountedDeviceData = *it; - aggr->m_devices.erase(it); - break; - } - } - } - - void StreamerUnmountDeviceEvent::StepBackward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - aggr->m_devices.push_back(m_unmountedDeviceData); - } - - void StreamerRegisterStreamEvent::StepForward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - aggr->m_streams.insert(AZStd::make_pair(m_streamData.m_id, &m_streamData)); - } - - void StreamerRegisterStreamEvent::StepBackward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - aggr->m_streams.erase(m_streamData.m_id); - } - - void StreamerUnregisterStreamEvent::StepForward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - StreamerDataAggregator::StreamMapType::iterator it = aggr->m_streams.find(m_streamId); - if (it != aggr->m_streams.end()) - { - m_removedStreamData = it->second; - aggr->m_streams.erase(it); - } - } - - void StreamerUnregisterStreamEvent::StepBackward(Aggregator* data) - { - if (m_removedStreamData != nullptr) - { - StreamerDataAggregator* aggr = static_cast(data); - aggr->m_streams.insert(AZStd::make_pair(m_streamId, m_removedStreamData)); - } - } - - void StreamerReadCacheHit::StepForward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - (void)aggr; // Add to read cache hit map - } - - void StreamerReadCacheHit::StepBackward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - (void)aggr; // Remove from read cache hit map - } - - void StreamerAddRequestEvent::StepForward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - aggr->m_requests.insert(AZStd::make_pair(m_requestData.m_id, &m_requestData)); - } - - void StreamerAddRequestEvent::StepBackward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - aggr->m_requests.erase(m_requestData.m_id); - } - - void StreamerCompleteRequestEvent::StepForward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - StreamerDataAggregator::RequestMapType::iterator it = aggr->m_requests.find(m_requestId); - if (it != aggr->m_requests.end()) - { - m_removedRequest = it->second; - m_oldState = m_removedRequest->m_completeState; - m_removedRequest->m_completeState = m_state; - aggr->m_requests.erase(it); - } - else - { - // TODO warn, this is possible if we did not capture the full state from the beginning - } - } - - void StreamerCompleteRequestEvent::StepBackward(Aggregator* data) - { - if (m_removedRequest != nullptr) - { - StreamerDataAggregator* aggr = static_cast(data); - m_removedRequest->m_completeState = m_oldState; - aggr->m_requests.insert(AZStd::make_pair(m_requestId, m_removedRequest)); - } - } - - void StreamerCancelRequestEvent::StepForward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - StreamerDataAggregator::RequestMapType::iterator it = aggr->m_requests.find(m_requestId); - if (it != aggr->m_requests.end()) - { - m_cancelledRequestData = it->second; - aggr->m_requests.erase(it); - } - } - - void StreamerCancelRequestEvent::StepBackward(Aggregator* data) - { - if (m_cancelledRequestData != nullptr) - { - StreamerDataAggregator* aggr = static_cast(data); - aggr->m_requests.insert(AZStd::make_pair(m_requestId, m_cancelledRequestData)); - } - } - - - void StreamerRescheduleRequestEvent::StepForward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - StreamerDataAggregator::RequestMapType::iterator it = aggr->m_requests.find(m_requestId); - if (it != aggr->m_requests.end()) - { - m_rescheduledRequestData = it->second; - m_oldDeadline = m_rescheduledRequestData->m_deadline; - m_oldPriority = m_rescheduledRequestData->m_priority; - m_rescheduledRequestData->m_deadline = m_newDeadline; - m_rescheduledRequestData->m_priority = m_newPriority; - } - else - { - // TODO warn, this is possible if we did not capture the full state from the beginning - } - } - - void StreamerRescheduleRequestEvent::StepBackward(Aggregator* data) - { - (void)data; - if (m_rescheduledRequestData != nullptr) - { - m_rescheduledRequestData->m_deadline = m_oldDeadline; - m_rescheduledRequestData->m_priority = m_oldPriority; - } - } - - void StreamerOperationStartEvent::StepForward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - StreamerDataAggregator::StreamMapType::iterator it = aggr->m_streams.find(m_streamId); - if (it != aggr->m_streams.end()) - { - m_stream = it->second; - m_previousOperation = m_stream->m_operation; - m_stream->m_operation = &m_operation; - } - else - { - // TODO warn in a smart way too many warnings while scrubbing - //AZ_Warning("Streamer Driller",false,"Operation could not find a stream 0x%08x this can be ok deoending on the streamer mode (if it captures the inital state or not)!",m_streamId); - } - } - - void StreamerOperationStartEvent::StepBackward(Aggregator* data) - { - (void)data; - if (m_stream != nullptr) - { - m_stream->m_operation = m_previousOperation; - } - } - - void StreamerOperationCompleteEvent::StepForward(Aggregator* data) - { - StreamerDataAggregator* aggr = static_cast(data); - StreamerDataAggregator::StreamMapType::iterator it = aggr->m_streams.find(m_streamId); - if (it != aggr->m_streams.end()) - { - m_stream = it->second; - m_stream->m_operation->m_bytesTransferred = m_bytesTransferred; - } - } - - void StreamerOperationCompleteEvent::StepBackward(Aggregator* data) - { - (void)data; - if (m_stream != nullptr) - { - m_stream->m_operation->m_bytesTransferred = 0; - } - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.cpp deleted file mode 100644 index 71d0cf3975..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.cpp +++ /dev/null @@ -1,271 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "MemoryDataAggregator.hxx" -#include -#include "MemoryDataView.hxx" - -#include "MemoryEvents.h" -#include -#include -#include "Source/Driller/Workspaces/Workspace.h" - -namespace Driller -{ - class MemoryDataAggregatorSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(MemoryDataAggregatorSavedState, "{9A117AF1-842B-43C4-8E98-F08E8080579A}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(MemoryDataAggregatorSavedState, AZ::SystemAllocator, 0); - MemoryDataAggregatorSavedState() - : m_activeViewCount(0) - {} - - int m_activeViewCount; - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_activeViewCount", &MemoryDataAggregatorSavedState::m_activeViewCount) - ->Version(2); - } - } - }; - - class MemoryDataAggregatorWorkspace - : public AZ::UserSettings - { - public: - AZ_RTTI(MemoryDataAggregatorWorkspace, "{4CBE496B-1CC3-4219-A0E2-D88850F6BCFD}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(MemoryDataAggregatorWorkspace, AZ::SystemAllocator, 0); - - int m_activeViewCount; - - MemoryDataAggregatorWorkspace() - : m_activeViewCount(0) - {} - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_activeViewCount", &MemoryDataAggregatorWorkspace::m_activeViewCount) - ->Version(2); - } - } - }; - - ////////////////////////////////////////////////////////////////////////// - MemoryDataAggregator::MemoryDataAggregator(int identity) - : Aggregator(identity) - { - m_parser.SetAggregator(this); - - m_persistentState = AZ::UserSettings::CreateFind(AZ_CRC("MEMORY DATA AGGREGATOR SAVED STATE", 0x672155eb), AZ::UserSettings::CT_GLOBAL); - AZ_Assert(m_persistentState, "Persistent State is NULL?"); - } - - MemoryDataAggregator::~MemoryDataAggregator() - { - KillAllViews(); - } - - float MemoryDataAggregator::ValueAtFrame(FrameNumberType frame) - { - const float maxEventsPerFrame = 1000.0f; // just a scale number - float numEventsPerFrame = static_cast(NumOfEventsAtFrame(frame)); - return AZStd::GetMin(numEventsPerFrame / maxEventsPerFrame, 1.0f) * 2.0f - 1.0f; - } - - QColor MemoryDataAggregator::GetColor() const - { - return QColor(255, 0, 0); - } - - QString MemoryDataAggregator::GetName() const - { - return "Memory"; - } - - QString MemoryDataAggregator::GetChannelName() const - { - return ChannelName(); - } - - QString MemoryDataAggregator::GetDescription() const - { - return "Memory allocations driller"; - } - - QString MemoryDataAggregator::GetToolTip() const - { - return "Information about Memory allocations"; - } - - AZ::Uuid MemoryDataAggregator::GetID() const - { - return AZ::Uuid("{D97E63EC-D85C-4DBB-B7CD-B092E2AB3A63}"); - } - - QWidget* MemoryDataAggregator::DrillDownRequest(FrameNumberType frame) - { - AZ::u32 availableIdx = 0; - bool foundASpot = true; - do - { - foundASpot = true; - for (DataViewMap::iterator iter = m_dataViews.begin(); iter != m_dataViews.end(); ++iter) - { - if (iter->second == availableIdx) - { - foundASpot = false; - ++availableIdx; - break; - } - } - } while (!foundASpot); - - Driller::MemoryDataView* dv = NULL; - if (m_events.size()) - { - dv = aznew Driller::MemoryDataView(this, frame, (1024 * GetIdentity()) + availableIdx); - if (dv) - { - m_dataViews[dv] = availableIdx; - connect(dv, SIGNAL(destroyed(QObject*)), this, SLOT(OnDataViewDestroyed(QObject*))); - ++m_persistentState->m_activeViewCount; - } - } - - return dv; - } - void MemoryDataAggregator::OptionsRequest() - { - } - void MemoryDataAggregator::OnDataViewDestroyed(QObject* dataView) - { - m_dataViews.erase(static_cast(dataView)); - --m_persistentState->m_activeViewCount; - } - - MemoryDataAggregator::AllocatorInfoArrayType::iterator MemoryDataAggregator::FindAllocatorById(AZ::u64 id) - { - for (MemoryDataAggregator::AllocatorInfoArrayType::iterator alIt = m_allocators.begin(); alIt != m_allocators.end(); ++alIt) - { - if ((*alIt)->m_id == id) - { - return alIt; - } - } - return m_allocators.end(); - } - - MemoryDataAggregator::AllocatorInfoArrayType::iterator MemoryDataAggregator::FindAllocatorByRecordsId(AZ::u64 recordsId) - { - for (MemoryDataAggregator::AllocatorInfoArrayType::iterator alIt = m_allocators.begin(); alIt != m_allocators.end(); ++alIt) - { - if ((*alIt)->m_recordsId == recordsId) - { - return alIt; - } - } - return m_allocators.end(); - } - - void MemoryDataAggregator::KillAllViews() - { - do - { - DataViewMap::iterator iter = m_dataViews.begin(); - if (iter != m_dataViews.end()) - { - iter->first->hide(); - delete iter->first; - continue; - } - break; - } while (1); - } - - void MemoryDataAggregator::ApplySettingsFromWorkspace(WorkspaceSettingsProvider* provider) - { - MemoryDataAggregatorWorkspace* workspace = provider->FindSetting(AZ_CRC("MEMORY DATA AGGREGATOR WORKSPACE", 0x41ee95bc)); - if (workspace) - { - m_persistentState->m_activeViewCount = workspace->m_activeViewCount; - } - } - void MemoryDataAggregator::ActivateWorkspaceSettings(WorkspaceSettingsProvider* provider) - { - MemoryDataAggregatorWorkspace* workspace = provider->FindSetting(AZ_CRC("MEMORY DATA AGGREGATOR WORKSPACE", 0x41ee95bc)); - if (workspace) - { - // kill all existing data view windows in preparation of opening the workspace specified ones - KillAllViews(); - - // the internal count should be 0 from the above house cleaning - // and incremented back up from the workspace instantiations - m_persistentState->m_activeViewCount = 0; - for (int i = 0; i < workspace->m_activeViewCount; ++i) - { - // driller must be created at (frame > 0) for it to have a valid tree to display - Driller::MemoryDataView* dataView = qobject_cast(DrillDownRequest(1)); - if (dataView) - { - // apply will overlay the workspace settings on top of the local user settings - dataView->ApplySettingsFromWorkspace(provider); - // activate will do the heavy lifting - dataView->ActivateWorkspaceSettings(provider); - } - } - } - } - void MemoryDataAggregator::SaveSettingsToWorkspace(WorkspaceSettingsProvider* provider) - { - MemoryDataAggregatorWorkspace* workspace = provider->CreateSetting(AZ_CRC("MEMORY DATA AGGREGATOR WORKSPACE", 0x41ee95bc)); - if (workspace) - { - workspace->m_activeViewCount = m_persistentState->m_activeViewCount; - - for (DataViewMap::iterator iter = m_dataViews.begin(); iter != m_dataViews.end(); ++iter) - { - iter->first->SaveSettingsToWorkspace(provider); - } - } - } - - //========================================================================= - // Reset - // [7/10/2013] - //========================================================================= - void MemoryDataAggregator::Reset() - { - m_allocators.clear(); - } - - void MemoryDataAggregator::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - MemoryDataAggregatorSavedState::Reflect(context); - MemoryDataAggregatorWorkspace::Reflect(context); - MemoryDataView::Reflect(context); - - serialize->Class() - ->Version(1) - ->SerializeWithNoData(); - } - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.hxx deleted file mode 100644 index f124d55947..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.hxx +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_MEMORY_DATAAGGREGATOR_TESTS_H -#define DRILLER_MEMORY_DATAAGGREGATOR_TESTS_H - -#if !defined(Q_MOC_RUN) -#include "Source/Driller/DrillerAggregator.hxx" -#include "Source/Driller/DrillerAggregatorOptions.hxx" - -#include - -#include "MemoryDataParser.h" -#include "MemoryDataView.hxx" -#endif - -namespace Driller -{ - namespace Memory - { - struct AllocationInfo; - struct AllocatorInfo; - } - class MemoryDataAggregatorSavedState; - - /** - * Memory data drilling aggregator. - */ - class MemoryDataAggregator : public Aggregator - { - friend class MemoryDataView; - MemoryDataAggregator(const MemoryDataAggregator&) = delete; - Q_OBJECT; - public: - AZ_RTTI(MemoryDataAggregator, "{18589F5B-B9F0-4893-90E7-95C6E08DF798}"); - AZ_CLASS_ALLOCATOR(MemoryDataAggregator,AZ::SystemAllocator,0); - - MemoryDataAggregator(int identity = 0); - virtual ~MemoryDataAggregator(); - - static AZ::u32 DrillerId() { return MemoryDrillerHandlerParser::GetDrillerId(); } - virtual AZ::u32 GetDrillerId() const override { return DrillerId(); } - - static const char* ChannelName() { return "Memory"; } - virtual AZ::Crc32 GetChannelId() const override { return AZ::Crc32(ChannelName()); } - - virtual AZ::Debug::DrillerHandlerParser* GetDrillerDataParser() { return &m_parser; } - - virtual void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*); - virtual void ActivateWorkspaceSettings(WorkspaceSettingsProvider *); - virtual void SaveSettingsToWorkspace(WorkspaceSettingsProvider*); - - void KillAllViews(); - - ////////////////////////////////////////////////////////////////////////// - // Aggregator - virtual void Reset(); - public slots: - float ValueAtFrame( FrameNumberType frame ) override; - QColor GetColor() const override; - QString GetChannelName() const override; - QString GetName() const override; - QString GetDescription() const override; - QString GetToolTip() const override; - AZ::Uuid GetID() const override; - QWidget* DrillDownRequest(FrameNumberType frame) override; - void OptionsRequest() override; - void OnDataViewDestroyed(QObject*); - - //protected: - public: - typedef AZStd::vector AllocatorInfoArrayType; - - AllocatorInfoArrayType::iterator FindAllocatorById(AZ::u64 id); - AllocatorInfoArrayType::iterator FindAllocatorByRecordsId(AZ::u64 recordsId); - AllocatorInfoArrayType::iterator GetAllocatorEnd() { return m_allocators.end(); } - - AllocatorInfoArrayType m_allocators; ///< Current state of allocators - MemoryDrillerHandlerParser m_parser; ///< Parser for this aggregator - - typedef AZStd::unordered_map DataViewMap; - DataViewMap m_dataViews; /// track active dialog indexes - AZStd::intrusive_ptr m_persistentState; - - static void Reflect(AZ::ReflectContext* context); - }; - -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.cpp deleted file mode 100644 index 4ced538257..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.cpp +++ /dev/null @@ -1,172 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "MemoryDataParser.h" -#include "MemoryDataAggregator.hxx" -#include "MemoryEvents.h" - -namespace Driller -{ - AZ::Debug::DrillerHandlerParser* MemoryDrillerHandlerParser::OnEnterTag(AZ::u32 tagName) - { - AZ_Assert(m_data, "You must set a valid memory aggregator before we can process the data!"); - - if (tagName == AZ_CRC("RegisterAllocator", 0x19f08114)) - { - m_subTag = ST_REGISTER_ALLOCATOR; - m_data->AddEvent(aznew MemoryDrillerRegisterAllocatorEvent()); - return this; // m_registerAllocatorHanler - } - else if (tagName == AZ_CRC("RegisterAllocation", 0x992a9780)) - { - m_subTag = ST_REGISTER_ALLOCATION; - m_data->AddEvent(aznew MemoryDrillerRegisterAllocationEvent()); - return this; // m_registerAllocation - } - else if (tagName == AZ_CRC("UnRegisterAllocation", 0xea5dc4cd)) - { - m_subTag = ST_UNREGISTER_ALLOCATION; - m_data->AddEvent(aznew MemoryDrillerUnregisterAllocationEvent()); - return this; // m_unregisterAllocation - } - else if (tagName == AZ_CRC("ResizeAllocation", 0x8a9c78dc)) - { - m_subTag = ST_RESIZE_ALLOCATION; - m_data->AddEvent(aznew MemoryDrillerResizeAllocationEvent()); - return this; // m_resizeAllocation - } - else - { - m_subTag = ST_NONE; - } - return NULL; - } - - void MemoryDrillerHandlerParser::OnExitTag(DrillerHandlerParser* handler, AZ::u32 tagName) - { - (void)tagName; - if (handler != NULL) - { - m_subTag = ST_NONE; // we have only one level just go back to the default state - } - } - - void MemoryDrillerHandlerParser::OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode) - { - AZ_Assert(m_data, "You must set a valid memory aggregator before we can process the data!"); - - switch (m_subTag) - { - case ST_NONE: - { - if (dataNode.m_name == AZ_CRC("UnregisterAllocator", 0xb2b54f93)) - { - AZ::u64 allocatorId; - dataNode.Read(allocatorId); - MemoryDrillerUnregisterAllocatorEvent* event = aznew MemoryDrillerUnregisterAllocatorEvent(); - event->m_allocatorId = allocatorId; - m_data->AddEvent(event); - } - } break; - case ST_REGISTER_ALLOCATOR: - { - MemoryDrillerRegisterAllocatorEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("Name", 0x5e237e06)) - { - event->m_allocatorInfo.m_name = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("Id", 0xbf396750)) - { - dataNode.Read(event->m_allocatorInfo.m_id); - } - else if (dataNode.m_name == AZ_CRC("Capacity", 0xb5e8b174)) - { - dataNode.Read(event->m_allocatorInfo.m_capacity); - } - else if (dataNode.m_name == AZ_CRC("RecordsId", 0x7caaca88)) - { - dataNode.Read(event->m_allocatorInfo.m_recordsId); - } - else if (dataNode.m_name == AZ_CRC("RecordsMode", 0x764c147a)) - { - dataNode.Read(event->m_allocatorInfo.m_recordMode); - } - else if (dataNode.m_name == AZ_CRC("NumStackLevels", 0xad9cff15)) - { - dataNode.Read(event->m_allocatorInfo.m_numStackLevels); - } - } break; - case ST_REGISTER_ALLOCATION: - { - MemoryDrillerRegisterAllocationEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("RecordsId", 0x7caaca88)) - { - dataNode.Read(event->m_allocationInfo.m_recordsId); - } - else if (dataNode.m_name == AZ_CRC("Address", 0x0d4e6f81)) - { - dataNode.Read(event->m_address); - } - else if (dataNode.m_name == AZ_CRC("Alignment", 0x2cce1e5c)) - { - dataNode.Read(event->m_allocationInfo.m_alignment); - } - else if (dataNode.m_name == AZ_CRC("Size", 0xf7c0246a)) - { - dataNode.Read(event->m_allocationInfo.m_size); - } - else if (dataNode.m_name == AZ_CRC("Name", 0x5e237e06)) - { - event->m_allocationInfo.m_name = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("FileName", 0x3c0be965)) - { - event->m_allocationInfo.m_fileName = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("FileLine", 0xb33c2395)) - { - dataNode.Read(event->m_allocationInfo.m_fileLine); - } - else if (dataNode.m_name == AZ_CRC("Stack", 0x41a87b6a)) - { - // TODO: we can pool that stack memory - event->m_allocationInfo.m_stackFrames = reinterpret_cast(azmalloc(dataNode.m_dataSize)); - dataNode.Read(event->m_allocationInfo.m_stackFrames, dataNode.m_dataSize); - } - } break; - case ST_UNREGISTER_ALLOCATION: - { - MemoryDrillerUnregisterAllocationEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("RecordsId", 0x7caaca88)) - { - dataNode.Read(event->m_recordsId); - } - else if (dataNode.m_name == AZ_CRC("Address", 0x0d4e6f81)) - { - dataNode.Read(event->m_address); - } - } break; - case ST_RESIZE_ALLOCATION: - { - MemoryDrillerResizeAllocationEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("RecordsId", 0x7caaca88)) - { - dataNode.Read(event->m_recordsId); - } - else if (dataNode.m_name == AZ_CRC("Address", 0x0d4e6f81)) - { - dataNode.Read(event->m_address); - } - else if (dataNode.m_name == AZ_CRC("Size", 0xf7c0246a)) - { - dataNode.Read(event->m_newSize); - } - } break; - } - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.h b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.h deleted file mode 100644 index c7dad612d7..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.h +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_MEMORY_DRILLER_PARSER_H -#define DRILLER_MEMORY_DRILLER_PARSER_H - -#include - -namespace Driller -{ - class MemoryDataAggregator; - - class MemoryDrillerHandlerParser - : public AZ::Debug::DrillerHandlerParser - { - public: - enum SubTags - { - ST_NONE = 0, - ST_REGISTER_ALLOCATOR, - ST_REGISTER_ALLOCATION, - ST_UNREGISTER_ALLOCATION, - ST_RESIZE_ALLOCATION, - }; - - MemoryDrillerHandlerParser() - : m_subTag(ST_NONE) - , m_data(NULL) - {} - - static AZ::u32 GetDrillerId() { return AZ_CRC("MemoryDriller", 0x1b31269d); } - - void SetAggregator(MemoryDataAggregator* data) { m_data = data; } - - virtual AZ::Debug::DrillerHandlerParser* OnEnterTag(AZ::u32 tagName); - virtual void OnExitTag(DrillerHandlerParser* handler, AZ::u32 tagName); - virtual void OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode); - - protected: - SubTags m_subTag; - MemoryDataAggregator* m_data; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.cpp b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.cpp deleted file mode 100644 index 3ccad8fae0..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.cpp +++ /dev/null @@ -1,642 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "MemoryDataView.hxx" -#include - -#include "MemoryDataAggregator.hxx" -#include "MemoryEvents.h" -#include "Source/Driller/DrillerEvent.h" -#include - -#include "Source/Driller/ChannelDataView.hxx" -#include "Source/Driller/DrillerMainWindowMessages.h" - -#include -#include - -#include - -#include -#include -#include - -namespace Driller -{ - static const char* frameRangeToDisplayString[] = - { - "Show 1 Frame", - "Show 2 Frames", - "Show 5 Frames", - "Show 15 Frames", - "Show 30 Frames", - "Show 60 Frames", - "Show 120 Frames", - NULL - }; - static const int frameRangeFromIndex[] = { 1, 2, 5, 15, 30, 60, 120, 0 }; - - MemoryAxisFormatter::MemoryAxisFormatter(QObject* pParent) - : QAbstractAxisFormatter(pParent) - { - } - - QString MemoryAxisFormatter::formatMemorySize(float value, float scalingValue) - { - // data is in whole byte numbers. - - // so how big is the division size? - if (scalingValue > 128.0f * 1024.0f) // greater than a 0.1 mb - { - if (scalingValue > 1024.0f * 1024.0f) // whole seconds - { - return QObject::tr("%1MB").arg(QString::number(value / (1024.0f * 1024.0f), 'f', 0)); - } - else - { - return QObject::tr("%1MB").arg(QString::number(value / (1024.0f * 1024.0f), 'f', 1)); - } - } - else if (scalingValue > 128.0f) // greater than a 128 bytes - { - if (scalingValue > 1024.0f) // whole kilobytes - { - return QObject::tr("%1KB").arg(QString::number(value / 1024.0f, 'f', 0)); - } - else - { - return QObject::tr("%1KB").arg(QString::number(value / 1024, 'f', 1)); - } - } - else - { - return QObject::tr("%1B").arg((AZ::s64)value); - } - } - - - QString MemoryAxisFormatter::convertAxisValueToText(Charts::AxisType axis, float value, float /*minDisplayedValue*/, float /*maxDisplayedValue*/, float divisionSize) - { - if (axis == Charts::AxisType::Vertical) - { - return formatMemorySize(value, divisionSize); - } - else - { - return QString::number((int)value); - } - }; - - - class MemoryDataViewSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(MemoryDataViewSavedState, "{1F25755D-8477-48B3-AAB5-6CDBB4152723}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(MemoryDataViewSavedState, AZ::SystemAllocator, 0); - - AZStd::string m_filterMenuString; - AZ::u64 m_filterId; - int m_frameRange; - bool m_autoZoom; - float m_manualZoomMin; // if we're not automatically zooming, then we remember the prior zoom to re-apply it - float m_manualZoomMax; - - MemoryDataViewSavedState() - : m_filterMenuString("Filter: All") - , m_filterId(0) - , m_frameRange(1) - , m_autoZoom(true) - , m_manualZoomMin(2000000000.0f) - , m_manualZoomMax(-2000000000.0f) - {} - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_filterMenuString", &MemoryDataViewSavedState::m_filterMenuString) - ->Field("m_filterId", &MemoryDataViewSavedState::m_filterId) - ->Field("m_frameRange", &MemoryDataViewSavedState::m_frameRange) - ->Field("m_autoZoom", &MemoryDataViewSavedState::m_autoZoom) - ->Field("m_manualZoomMin", &MemoryDataViewSavedState::m_manualZoomMin) - ->Field("m_manualZoomMax", &MemoryDataViewSavedState::m_manualZoomMax) - ->Version(3); - } - } - }; - - - MemoryDataView::MemoryDataView(MemoryDataAggregator* aggregator, FrameNumberType atFrame, int profilerIndex) - : QDialog() - , m_aggregator(aggregator) - , m_Frame(atFrame) - , m_HighestFrameSoFar(-1) - , m_viewIndex(profilerIndex) - { - setAttribute(Qt::WA_DeleteOnClose, true); - setWindowFlags(windowFlags() | Qt::WindowMaximizeButtonHint); - - m_ScrubberIndex = 0; - - show(); - raise(); - activateWindow(); - setFocus(); - - m_gui = azcreate(Ui::MemoryDataView, ()); - m_gui->setupUi(this); - - setWindowTitle(QString("Memory Data View %1 from %2").arg(profilerIndex).arg(aggregator->GetIdentity())); - - m_ptrFormatter = aznew MemoryAxisFormatter(this); - m_gui->widgetDataStrip->SetAxisTextFormatter(m_ptrFormatter); - - connect(m_aggregator, SIGNAL(destroyed(QObject*)), this, SLOT(OnDataDestroyed())); - - connect(m_gui->widgetDataStrip, SIGNAL(onMouseLeftDownDomainValue(float)), this, SLOT(onMouseLeftDownDomainValue(float))); - connect(m_gui->widgetDataStrip, SIGNAL(onMouseLeftDragDomainValue(float)), this, SLOT(onMouseLeftDragDomainValue(float))); - - connect(m_gui->widgetDataStrip, SIGNAL(onMouseOverDataPoint(int, AZ::u64, float, float)), this, SLOT(onMouseOverDataPoint(int, AZ::u64, float, float))); - connect(m_gui->widgetDataStrip, SIGNAL(onMouseOverNothing(float, float)), this, SLOT(onMouseOverNothing(float, float))); - - connect(m_gui->checkLockRight, SIGNAL(stateChanged(int)), this, SLOT(OnCheckLockRight(int))); - connect(m_gui->buttonViewFull, SIGNAL(pressed()), this, SLOT(OnViewFull())); - - connect(m_gui->filterButton, SIGNAL(pressed()), this, SLOT(OnFilterButton())); - - connect(m_gui->checkBoxAutoZoom, SIGNAL(toggled(bool)), this, SLOT(OnAutoZoomChange(bool))); - - { - QMenu* frameRangeMenu = new QMenu(this); - for (int i = 0; frameRangeToDisplayString[i]; ++i) - { - frameRangeMenu->addAction(CreateFrameRangeMenuAction(frameRangeToDisplayString[i], frameRangeFromIndex[i])); - } - - m_gui->frameRangeButton->setText(frameRangeToDisplayString[0]); - m_gui->frameRangeButton->setMenu(frameRangeMenu); - } - - m_aggregatorIdentityCached = m_aggregator->GetIdentity(); - DrillerMainWindowMessages::Handler::BusConnect(m_aggregatorIdentityCached); - DrillerEventWindowMessages::Handler::BusConnect(m_aggregatorIdentityCached); - - AZStd::string windowStateStr = AZStd::string::format("MEMORY DATA VIEW WINDOW STATE %i", m_viewIndex); - m_windowStateCRC = AZ::Crc32(windowStateStr.c_str()); - AZStd::intrusive_ptr windowState = AZ::UserSettings::Find(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - if (windowState) - { - windowState->RestoreGeometry(this); - } - - AZStd::string dataViewStateStr = AZStd::string::format("MEMORY DATA VIEW STATE %i", m_viewIndex); - m_viewStateCRC = AZ::Crc32(dataViewStateStr.c_str()); - m_persistentState = AZ::UserSettings::CreateFind(m_viewStateCRC, AZ::UserSettings::CT_GLOBAL); - ApplyPersistentState(); - - SetFrameNumber(); - } - - MemoryDataView::~MemoryDataView() - { - SaveOnExit(); - azdestroy(m_gui); - } - - void MemoryDataView::SaveOnExit() - { - DrillerEventWindowMessages::Handler::BusDisconnect(m_aggregatorIdentityCached); - DrillerMainWindowMessages::Handler::BusDisconnect(m_aggregatorIdentityCached); - - AZStd::intrusive_ptr pState = AZ::UserSettings::CreateFind(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - pState->CaptureGeometry(this); - } - void MemoryDataView::hideEvent(QHideEvent* evt) - { - QDialog::hideEvent(evt); - } - void MemoryDataView::closeEvent(QCloseEvent* evt) - { - QDialog::closeEvent(evt); - } - void MemoryDataView::OnDataDestroyed() - { - deleteLater(); - } - - QAction* MemoryDataView::CreateFrameRangeMenuAction(QString qs, int range) - { - QAction* act = new QAction(qs, this); - act->setObjectName(qs); - act->setProperty("Range", range); - connect(act, SIGNAL(triggered()), this, SLOT(OnFrameRangeMenu())); - return act; - } - - QAction* MemoryDataView::CreateFilterSelectorAction(QString qs, AZ::u64 id) - { - QAction* act = new QAction(qs, this); - act->setObjectName(qs); - act->setData(id); - connect(act, SIGNAL(triggered()), this, SLOT(OnFilterSelectorMenu())); - return act; - } - - void MemoryDataView::OnFrameRangeMenu() - { - QAction* qa = qobject_cast(sender()); - if (qa) - { - m_gui->frameRangeButton->setText(qa->objectName()); - int range = qa->property("Range").toInt(); - m_persistentState->m_frameRange = range; - - // force a new data build - SetFrameNumber(); - update(); - } - } - - void MemoryDataView::OnFilterButton() - { - QMenu* filterIDMenu = new QMenu(this); - filterIDMenu->addAction(CreateFilterSelectorAction("Filter: All", 0)); - - for (auto iter = m_aggregator->m_allocators.begin(); iter != m_aggregator->m_allocators.end(); ++iter) - { - filterIDMenu->addAction(CreateFilterSelectorAction(QString("Filter: %1").arg((*iter)->m_name), (*iter)->m_id)); - } - - filterIDMenu->exec(QCursor::pos()); - delete filterIDMenu; - } - - void MemoryDataView::OnFilterSelectorMenu() - { - QAction* qa = qobject_cast(sender()); - if (qa) - { - OnFilterSelectorMenu(qa->objectName(), qa->data().toULongLong()); - } - } - - void MemoryDataView::OnFilterSelectorMenu(QString fromMenu, AZ::u64 id) - { - m_gui->filterButton->setText(fromMenu); - - m_persistentState->m_filterMenuString = fromMenu.toUtf8().data(); - m_persistentState->m_filterId = id; - - // force a new data build - SetFrameNumber(); - update(); - } - - void MemoryDataView::OnAutoZoomChange(bool newValue) - { - if (!newValue) - { - m_persistentState->m_autoZoom = false; - m_gui->widgetDataStrip->GetWindowRange(Charts::AxisType::Vertical, m_persistentState->m_manualZoomMin, m_persistentState->m_manualZoomMax); - } - else - { - m_persistentState->m_autoZoom = true; - m_persistentState->m_manualZoomMin = 2000000000.0f; - m_persistentState->m_manualZoomMax = -2000000000.0f; - } - - UpdateChart(); - } - - void MemoryDataView::ApplyPersistentState() - { - if (m_persistentState) - { - m_gui->checkBoxAutoZoom->setChecked(m_persistentState->m_autoZoom); - OnAutoZoomChange(m_persistentState->m_autoZoom); - - OnFilterSelectorMenu(m_persistentState->m_filterMenuString.c_str(), m_persistentState->m_filterId); - m_gui->frameRangeButton->setText(frameRangeToDisplayString[0]); - for (int i = 0; frameRangeFromIndex[i]; ++i) - { - if (m_persistentState->m_frameRange == frameRangeFromIndex[i]) - { - m_gui->frameRangeButton->setText(frameRangeToDisplayString[i]); - break; - } - } - } - } - - void MemoryDataView::ApplySettingsFromWorkspace(WorkspaceSettingsProvider* provider) - { - AZStd::string workspaceStateStr = AZStd::string::format("MEMORY DATA VIEW WORKSPACE STATE %i", m_viewIndex); - AZ::u32 workspaceStateCRC = AZ::Crc32(workspaceStateStr.c_str()); - - if (m_persistentState) - { - MemoryDataViewSavedState* workspace = provider->FindSetting(workspaceStateCRC); - if (workspace) - { - m_persistentState->m_filterMenuString = workspace->m_filterMenuString; - m_persistentState->m_filterId = workspace->m_filterId; - m_persistentState->m_frameRange = workspace->m_frameRange; - } - } - } - - void MemoryDataView::ActivateWorkspaceSettings(WorkspaceSettingsProvider*) - { - ApplyPersistentState(); - } - - void MemoryDataView::SaveSettingsToWorkspace(WorkspaceSettingsProvider* provider) - { - AZStd::string workspaceStateStr = AZStd::string::format("MEMORY DATA VIEW WORKSPACE STATE %i", m_viewIndex); - AZ::u32 workspaceStateCRC = AZ::Crc32(workspaceStateStr.c_str()); - - if (m_persistentState) - { - MemoryDataViewSavedState* workspace = provider->CreateSetting(workspaceStateCRC); - if (workspace) - { - workspace->m_filterMenuString = m_persistentState->m_filterMenuString; - workspace->m_filterId = m_persistentState->m_filterId; - workspace->m_frameRange = m_persistentState->m_frameRange; - } - } - } - - void MemoryDataView::onMouseOverDataPoint(int channelID, AZ::u64 sampleID, float primaryAxisValue, float dependentAxisValue) - { - (void)primaryAxisValue; - (void)dependentAxisValue; - (void)channelID; - DrillerEvent* dep = m_aggregator->GetEvents()[ sampleID ]; - QString finalText; - - // highlight both channels - - m_gui->widgetDataStrip->SetChannelSampleHighlight(0, sampleID, true); - m_gui->widgetDataStrip->SetChannelSampleHighlight(1, sampleID, true); - - switch (dep->GetEventType()) - { - case Driller::Memory::MET_REGISTER_ALLOCATION: - { - Memory::AllocationInfo* mai = &static_cast(dep)->m_allocationInfo; - - finalText = tr("ALLOCATE %1
%2:%3
%4") - .arg(m_ptrFormatter->formatMemorySize((float)mai->m_size, (float)mai->m_size)) - .arg(mai->m_fileName ? mai->m_fileName : "") - .arg(mai->m_fileLine) - .arg(mai->m_name ? mai->m_name : ""); - } - break; - case Driller::Memory::MET_UNREGISTER_ALLOCATION: - { - MemoryDrillerUnregisterAllocationEvent* uae = static_cast(dep); - if (uae->m_removedAllocationInfo) - { - finalText = tr("DEALLOCATE %1
%2:%3
%4") - .arg(m_ptrFormatter->formatMemorySize((float)uae->m_removedAllocationInfo->m_size, (float)uae->m_removedAllocationInfo->m_size)) - .arg(uae->m_removedAllocationInfo->m_fileName ? uae->m_removedAllocationInfo->m_fileName : "") - .arg(uae->m_removedAllocationInfo->m_fileLine) - .arg(uae->m_removedAllocationInfo->m_name ? uae->m_removedAllocationInfo->m_name : ""); - } - else - { - finalText = tr("DEALLOCATE UNKNOWN "); - } - } - break; - case Driller::Memory::MET_RESIZE_ALLOCATION: - { - MemoryDrillerResizeAllocationEvent* rae = static_cast(dep); - if (rae->m_modifiedAllocationInfo) - { - finalText = tr("RESIZE %1 TO %2
%3:%4
%5") - .arg(m_ptrFormatter->formatMemorySize((float)rae->m_oldSize, (float)rae->m_oldSize)) - .arg(m_ptrFormatter->formatMemorySize((float)rae->m_newSize, (float)rae->m_newSize)) - .arg(rae->m_modifiedAllocationInfo->m_fileName ? rae->m_modifiedAllocationInfo->m_fileName : "") - .arg(rae->m_modifiedAllocationInfo->m_fileLine) - .arg(rae->m_modifiedAllocationInfo->m_name ? rae->m_modifiedAllocationInfo->m_name : ""); - } - else - { - finalText = tr("RESIZE UNKNOWN %1 TO %2") - .arg(m_ptrFormatter->formatMemorySize((float)rae->m_oldSize, (float)rae->m_oldSize)) - .arg(m_ptrFormatter->formatMemorySize((float)rae->m_newSize, (float)rae->m_newSize)); - } - } - break; - } - - if (finalText.length() > 0) - { - if (QApplication::activeWindow() == this) - { - QToolTip::showText(m_gui->widgetDataStrip->mapToGlobal(QPoint(0, -10)), finalText, m_gui->widgetDataStrip); - } - } - } - - void MemoryDataView::onMouseOverNothing(float primaryAxisValue, float dependentAxisValue) - { - (void)primaryAxisValue; - (void)dependentAxisValue; - m_gui->widgetDataStrip->SetChannelSampleHighlight(0, 0, false); - m_gui->widgetDataStrip->SetChannelSampleHighlight(1, 0, false); - QToolTip::hideText(); - } - - void MemoryDataView::onMouseLeftDownDomainValue(float domainValue) - { - AZ::s64 globalEvtID = (AZ::s64)(domainValue); - emit EventRequestEventFocus(globalEvtID); - } - - void MemoryDataView::onMouseLeftDragDomainValue(float domainValue) - { - AZ::s64 globalEvtID = (AZ::s64)(domainValue); - emit EventRequestEventFocus(globalEvtID); - } - - - void MemoryDataView::FrameChanged(FrameNumberType frame) - { - m_Frame = frame; - m_aggregator->FrameChanged(frame); - SetFrameNumber(); - OnViewFull(); - } - - void MemoryDataView::SetFrameNumber() - { - if (m_persistentState->m_filterId) - { - auto found = m_aggregator->FindAllocatorById(m_persistentState->m_filterId); - if (found == m_aggregator->GetAllocatorEnd()) - { - m_gui->progressBar->hide(); - } - else - { - Memory::AllocatorInfo* pinfo = (*found); - if (pinfo->m_capacity) - { - m_gui->progressBar->show(); - int newValue = (int)(((double)pinfo->m_allocatedMemory / (double)pinfo->m_capacity) * 100.0); - if (m_gui->progressBar->value() != newValue) - { - m_gui->progressBar->setValue(newValue); - m_gui->progressBar->setFormat(QString("%1 / %2") - .arg(MemoryAxisFormatter::formatMemorySize((float)pinfo->m_allocatedMemory, (float)pinfo->m_allocatedMemory * 0.1f)) - .arg(MemoryAxisFormatter::formatMemorySize((float)pinfo->m_capacity, (float)pinfo->m_capacity * 0.1f))); - } - } - else - { - m_gui->progressBar->hide(); - } - } - } - else - { - m_gui->progressBar->hide(); - } - - UpdateChart(); - } - - void MemoryDataView::UpdateChart() - { - m_gui->widgetDataStrip->Reset(); - - m_gui->widgetDataStrip->AddAxis("Event", 0.0f, 1.0f, false, false); - m_gui->widgetDataStrip->AddAxis("Size", m_persistentState->m_manualZoomMin, m_persistentState->m_manualZoomMax, true, true); - - m_gui->widgetDataStrip->AddChannel("Total Change"); - m_gui->widgetDataStrip->SetChannelColor(0, QColor(255, 64, 255, 255)); - m_gui->widgetDataStrip->SetChannelStyle(0, StripChart::Channel::STYLE_CONNECTED_LINE); - - m_gui->widgetDataStrip->AddChannel("Delta"); - m_gui->widgetDataStrip->SetChannelColor(1, QColor(255, 255, 0, 255)); - m_gui->widgetDataStrip->SetChannelStyle(1, StripChart::Channel::STYLE_PLUSMINUS); - - if (m_aggregator->IsValid()) - { - float accumulator = 0.0f; - - int frameOffset = m_persistentState->m_frameRange - 1; - if ((m_Frame - frameOffset) < 0) - { - frameOffset = 0; - } - - for (EventNumberType index = m_aggregator->m_frameToEventIndex[m_Frame - frameOffset]; index < static_cast(m_aggregator->m_frameToEventIndex[m_Frame] + m_aggregator->NumOfEventsAtFrame(m_Frame)); ++index) - { - DrillerEvent* dep = m_aggregator->GetEvents()[ index ]; - unsigned int gevtID = dep->GetGlobalEventId(); - - switch (dep->GetEventType()) - { - case Driller::Memory::MET_REGISTER_ALLOCATION: - { - auto mai = static_cast(dep); - if (m_persistentState->m_filterId && m_persistentState->m_filterId != mai->m_modifiedAllocatorInfo->m_id) - { - continue; // outer for() loop - } - accumulator += mai->m_allocationInfo.m_size; - m_gui->widgetDataStrip->AddData(1, (AZ::u64)index, (float)(gevtID), (float)mai->m_allocationInfo.m_size); - } - break; - case Driller::Memory::MET_UNREGISTER_ALLOCATION: - { - auto uae = static_cast(dep); - if (m_persistentState->m_filterId && m_persistentState->m_filterId != uae->m_modifiedAllocatorInfo->m_id) - { - continue; // outer for() loop - } - float uaeValue = (float)(uae->m_removedAllocationInfo != NULL ? uae->m_removedAllocationInfo->m_size : 0.0f); - accumulator -= uaeValue; - m_gui->widgetDataStrip->AddData(1, (AZ::u64)index, (float)(gevtID), -uaeValue); - } - break; - case Driller::Memory::MET_RESIZE_ALLOCATION: - { - auto rae = static_cast(dep); - if (rae->m_modifiedAllocationInfo) - { - auto testIter = m_aggregator->FindAllocatorByRecordsId(rae->m_modifiedAllocationInfo->m_recordsId); - if (testIter != m_aggregator->m_allocators.end()) - { - if (m_persistentState->m_filterId && m_persistentState->m_filterId != (*testIter)->m_id) - { - continue; // outer for() loop - } - } - } - accumulator += rae->m_newSize - rae->m_oldSize; - m_gui->widgetDataStrip->AddData(1, (AZ::u64)index, (float)(gevtID), (float)rae->m_newSize - (float)rae->m_oldSize); - } - break; - } - - m_gui->widgetDataStrip->AddData(0, (AZ::u64)index, (float)(gevtID), accumulator); - } - - FrameNumberType hCalculated = m_Frame - m_persistentState->m_frameRange + 1; - if (hCalculated < 0) - { - hCalculated = 0; - } - - float h1 = (float)(m_aggregator->GetEvents()[ m_aggregator->m_frameToEventIndex[hCalculated] ]->GetGlobalEventId()); - float h2 = (float)(m_aggregator->GetEvents()[ m_aggregator->m_frameToEventIndex[m_Frame] + m_aggregator->NumOfEventsAtFrame(m_Frame) - 1 ]->GetGlobalEventId()); - m_gui->widgetDataStrip->SetWindowRange(Charts::AxisType::Horizontal, h1, h2); - - if (m_persistentState->m_autoZoom) - { - m_gui->widgetDataStrip->ZoomExtents(Charts::AxisType::Vertical); - } - else - { - m_gui->widgetDataStrip->SetWindowRange(Charts::AxisType::Vertical, m_persistentState->m_manualZoomMin, m_persistentState->m_manualZoomMax); - m_gui->widgetDataStrip->ZoomManual(Charts::AxisType::Vertical, m_persistentState->m_manualZoomMin, m_persistentState->m_manualZoomMax); - } - } - } - - void MemoryDataView::OnViewFull() - { - m_gui->widgetDataStrip->SetViewFull(); - } - void MemoryDataView::OnCheckLockRight(int state) - { - m_gui->widgetDataStrip->SetLockRight(state ? true : false); - } - - ////////////////////////////////////////////////////////////////////////// - // Event Window Messages - void MemoryDataView::EventFocusChanged(EventNumberType eventIdx) - { - m_ScrubberIndex = eventIdx; - m_gui->widgetDataStrip->SetMarkerPosition((float)m_ScrubberIndex); - } - - void MemoryDataView::Reflect(AZ::ReflectContext* context) - { - MemoryDataViewSavedState::Reflect(context); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.hxx b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.hxx deleted file mode 100644 index 69dc1a8650..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.hxx +++ /dev/null @@ -1,126 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef MEMORYDATAVIEW_H -#define MEMORYDATAVIEW_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#include -#include -#include -#include -#endif - -namespace AZ { class ReflectContext; } - -namespace Ui -{ - class MemoryDataView; -} - -namespace Driller -{ - /* - A modeless dialog that combines custom drawing and active widgets. - */ - - class MemoryAxisFormatter : public Charts::QAbstractAxisFormatter - { - Q_OBJECT - public: - AZ_CLASS_ALLOCATOR(MemoryAxisFormatter, AZ::SystemAllocator, 0); - MemoryAxisFormatter(QObject *pParent); - - static QString formatMemorySize(float value, float scalingValue); - virtual QString convertAxisValueToText(Charts::AxisType axis, float value, float minDisplayedValue, float maxDisplayedValue, float divisionSize); - - private: - - }; - - class MemoryDataAggregator; - class MemoryDataViewSavedState; - - class MemoryDataView - : public QDialog - , public Driller::DrillerMainWindowMessages::Bus::Handler - , public Driller::DrillerEventWindowMessages::Bus::Handler - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(MemoryDataView,AZ::SystemAllocator,0); - MemoryDataView( MemoryDataAggregator *aggregator, FrameNumberType atFrame, int profilerIndex ); - virtual ~MemoryDataView(void); - - MemoryDataAggregator *m_aggregator; - int m_aggregatorIdentityCached; - FrameNumberType m_Frame; - int m_HighestFrameSoFar; - EventNumberType m_ScrubberIndex; - AZ::u32 m_windowStateCRC; - int m_viewIndex; - AZ::u32 m_viewStateCRC; - - void SetFrameNumber(); - void UpdateChart(); - - // NB: These three methods mimic the workspace bus. - // Because the ProfilerDataAggregator can't know to open these DataView windows - // until after the EBUS message has gone out, the owning aggregator must - // first create these windows and then pass along the provider manually - void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*); - void ActivateWorkspaceSettings(WorkspaceSettingsProvider*); - void SaveSettingsToWorkspace(WorkspaceSettingsProvider*); - void ApplyPersistentState(); - - AZStd::intrusive_ptr m_persistentState; - - QAction * CreateFilterSelectorAction( QString qs, AZ::u64 id ); - QAction *CreateFrameRangeMenuAction( QString qs, int range ); - - void SaveOnExit(); - virtual void closeEvent(QCloseEvent *evt); - virtual void hideEvent(QHideEvent *evt); - - public: - // MainWindow Bus Commands - void FrameChanged(FrameNumberType frame) override; - void EventFocusChanged(EventNumberType eventIndex) override; - void EventChanged(EventNumberType /*eventIndex*/) override{} - - static void Reflect(AZ::ReflectContext* context); - - public slots: - void OnDataDestroyed(); - void OnViewFull(); - void OnCheckLockRight(int state); - void onMouseLeftDownDomainValue(float domainValue); - void onMouseLeftDragDomainValue(float domainValue); - void onMouseOverDataPoint(int channelID, AZ::u64 sampleID, float primaryAxisValue, float dependentAxisValue); - void onMouseOverNothing(float primaryAxisValue, float dependentAxisValue); - void OnFilterButton(); - void OnFilterSelectorMenu(); - void OnFilterSelectorMenu( QString fromMenu, AZ::u64 id ); - void OnFrameRangeMenu(); - void OnAutoZoomChange(bool); - -signals: - void EventRequestEventFocus(AZ::s64); - - private: - Ui::MemoryDataView* m_gui; - MemoryAxisFormatter *m_ptrFormatter; - }; - -} - - -#endif // MEMORYDATAVIEW_H diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.ui b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.ui deleted file mode 100644 index 6740cfcb82..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.ui +++ /dev/null @@ -1,188 +0,0 @@ - - - MemoryDataView - - - - 0 - 0 - 684 - 302 - - - - Memory Data View - - - - - - - - - 0 - 0 - - - - - 224 - 86 - - - - - - - - - - - 0 - 0 - - - - - 0 - 24 - - - - - 16777215 - 24 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 3 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - - 64 - 16777215 - - - - View Full - - - - - - - - 0 - 0 - - - - Filter: All - - - - - - - Show 1 Frame - - - - - - - - 84 - 16777215 - - - - Lock Right - - - - - - - Autozoom - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - 1 - 0 - - - - 0 - - - Qt::AlignCenter - - - true - - - %p % used - - - - - - - - - - - StripChart::DataStrip - QWidget -
../StripChart.hxx
- 1 -
-
- - -
diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.cpp b/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.cpp deleted file mode 100644 index 3ed07f5f29..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.cpp +++ /dev/null @@ -1,161 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "MemoryEvents.h" - -#include "MemoryDataAggregator.hxx" - -namespace Driller -{ - void MemoryDrillerRegisterAllocatorEvent::StepForward(Aggregator* data) - { - MemoryDataAggregator* aggr = static_cast(data); - // add to list of active allocators - aggr->m_allocators.push_back(&m_allocatorInfo); - } - - void MemoryDrillerRegisterAllocatorEvent::StepBackward(Aggregator* data) - { - MemoryDataAggregator* aggr = static_cast(data); - // remove from the list of active allocators - aggr->m_allocators.erase(AZStd::find(aggr->m_allocators.begin(), aggr->m_allocators.end(), &m_allocatorInfo)); - } - - void MemoryDrillerUnregisterAllocatorEvent::StepForward(Aggregator* data) - { - MemoryDataAggregator* aggr = static_cast(data); - MemoryDataAggregator::AllocatorInfoArrayType::iterator alIt = aggr->FindAllocatorById(m_allocatorId); - m_removedAllocatorInfo = *alIt; - aggr->m_allocators.erase(alIt); - } - - void MemoryDrillerUnregisterAllocatorEvent::StepBackward(Aggregator* data) - { - MemoryDataAggregator* aggr = static_cast(data); - aggr->m_allocators.push_back(m_removedAllocatorInfo); - } - - void MemoryDrillerRegisterAllocationEvent::StepForward(Aggregator* data) - { - if (m_modifiedAllocatorInfo == nullptr) - { - MemoryDataAggregator* aggr = static_cast(data); - MemoryDataAggregator::AllocatorInfoArrayType::iterator infoIter = aggr->FindAllocatorByRecordsId(m_allocationInfo.m_recordsId); - - if (infoIter == aggr->GetAllocatorEnd()) - { - AZ_Assert(false, "MemoryDriller - Invalid RecordsId"); - return; - } - - m_modifiedAllocatorInfo = (*infoIter); - } - // add to map of allocations - m_modifiedAllocatorInfo->m_allocations.insert(AZStd::make_pair(m_address, &m_allocationInfo)); - m_modifiedAllocatorInfo->m_allocatedMemory += m_allocationInfo.m_size; - } - - void MemoryDrillerRegisterAllocationEvent::StepBackward(Aggregator* data) - { - if (m_modifiedAllocatorInfo == nullptr) - { - MemoryDataAggregator* aggr = static_cast(data); - MemoryDataAggregator::AllocatorInfoArrayType::iterator infoIter = aggr->FindAllocatorByRecordsId(m_allocationInfo.m_recordsId); - - if (infoIter == aggr->GetAllocatorEnd()) - { - AZ_Assert(false, "MemoryDriller - Invalid RecordsId"); - return; - } - - m_modifiedAllocatorInfo = (*infoIter); - } - - // remove from the list of active allocators - m_modifiedAllocatorInfo->m_allocations.erase(m_address); - m_modifiedAllocatorInfo->m_allocatedMemory -= m_allocationInfo.m_size; - } - - void MemoryDrillerUnregisterAllocationEvent::StepForward(Aggregator* data) - { - if (m_modifiedAllocatorInfo == nullptr) - { - MemoryDataAggregator* aggr = static_cast(data); - // removed from the map of allocations - MemoryDataAggregator::AllocatorInfoArrayType::iterator infoIter = aggr->FindAllocatorByRecordsId(m_recordsId); - - if (infoIter == aggr->GetAllocatorEnd()) - { - AZ_Assert(false, "MemoryDriller - Invalid RecordsId"); - return; - } - - m_modifiedAllocatorInfo = (*infoIter); - } - - Memory::AllocatorInfo::AllocationMapType::iterator allocIt = m_modifiedAllocatorInfo->m_allocations.find(m_address); - m_removedAllocationInfo = allocIt->second; - // we're UNALLOCATING, so subract: - m_modifiedAllocatorInfo->m_allocatedMemory -= m_removedAllocationInfo->m_size; - m_modifiedAllocatorInfo->m_allocations.erase(m_address); - } - - void MemoryDrillerUnregisterAllocationEvent::StepBackward(Aggregator* data) - { - if (m_modifiedAllocatorInfo == nullptr) - { - MemoryDataAggregator* aggr = static_cast(data); - // removed from the map of allocations - MemoryDataAggregator::AllocatorInfoArrayType::iterator infoIter = aggr->FindAllocatorByRecordsId(m_recordsId); - - if (infoIter == aggr->GetAllocatorEnd()) - { - AZ_Assert(false, "MemoryDriller - Invalid RecordsId"); - return; - } - - m_modifiedAllocatorInfo = (*infoIter); - } - - // add back to the map of allocations - auto insertionPair = AZStd::make_pair(m_address, m_removedAllocationInfo); - m_modifiedAllocatorInfo->m_allocations.insert(insertionPair); - - // we're doing the opposite of unallocating, which is allocating, so we add: - m_modifiedAllocatorInfo->m_allocatedMemory += m_removedAllocationInfo->m_size; - } - - void MemoryDrillerResizeAllocationEvent::StepForward(Aggregator* data) - { - if (m_modifiedAllocationInfo == nullptr) - { - MemoryDataAggregator* aggr = static_cast(data); - // change the allocation size - m_modifiedAllocatorInfo = *aggr->FindAllocatorByRecordsId(m_recordsId); - Memory::AllocatorInfo::AllocationMapType::iterator allocIt = m_modifiedAllocatorInfo->m_allocations.find(m_address); - m_modifiedAllocationInfo = allocIt->second; - } - - // reallocating remove old size and add new size: - m_oldSize = m_modifiedAllocationInfo->m_size; - m_modifiedAllocationInfo->m_size = m_newSize; - - m_modifiedAllocatorInfo->m_allocatedMemory -= m_oldSize; - m_modifiedAllocatorInfo->m_allocatedMemory += m_newSize; - } - - void MemoryDrillerResizeAllocationEvent::StepBackward(Aggregator* data) - { - (void)data; - // restore the old size - m_modifiedAllocationInfo->m_size = m_oldSize; - - m_modifiedAllocatorInfo->m_allocatedMemory -= m_newSize; - m_modifiedAllocatorInfo->m_allocatedMemory += m_oldSize; - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.h b/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.h deleted file mode 100644 index e9ee33a0ef..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.h +++ /dev/null @@ -1,183 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_MEMORY_EVENTS_H -#define DRILLER_MEMORY_EVENTS_H - -#include "Source/Driller/DrillerEvent.h" - -#include - -namespace Driller -{ - namespace Memory - { - struct AllocationInfo - { - AllocationInfo() - : m_recordsId(0) - , m_name(nullptr) - , m_alignment(0) - , m_size(0) - , m_fileName(nullptr) - , m_fileLine(0) - , m_stackFrames(nullptr) - {} - AZ::u64 m_recordsId; - const char* m_name; - unsigned int m_alignment; - AZ::u64 m_size; - const char* m_fileName; - int m_fileLine; - AZ::u64* m_stackFrames; - }; - - struct AllocatorInfo - { - AllocatorInfo() - : m_id(0) - , m_recordsId(0) - , m_name(nullptr) - , m_capacity(0) - , m_recordMode(AZ::Debug::AllocationRecords::RECORD_NO_RECORDS) - , m_numStackLevels(0) - , m_allocatedMemory(0) - {} - AZ::u64 m_id; - AZ::u64 m_recordsId; - const char* m_name; - AZ::u64 m_capacity; - char m_recordMode; - char m_numStackLevels; - typedef AZStd::unordered_map AllocationMapType; - AllocationMapType m_allocations; ///< Current state of allocations - size_t m_allocatedMemory; ///< Number of bytes of allocated memory. - }; - - enum MemoryEventType - { - MET_REGISTER_ALLOCATOR = 0, - MET_UNREGISTER_ALLOCATOR, - MET_REGISTER_ALLOCATION, - MET_RESIZE_ALLOCATION, - MET_UNREGISTER_ALLOCATION, - }; - } - - class MemoryDrillerRegisterAllocatorEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(MemoryDrillerRegisterAllocatorEvent, AZ::SystemAllocator, 0) - - MemoryDrillerRegisterAllocatorEvent() - : DrillerEvent(Memory::MET_REGISTER_ALLOCATOR) {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - Memory::AllocatorInfo m_allocatorInfo; - }; - - class MemoryDrillerUnregisterAllocatorEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(MemoryDrillerUnregisterAllocatorEvent, AZ::SystemAllocator, 0) - - MemoryDrillerUnregisterAllocatorEvent() - : DrillerEvent(Memory::MET_UNREGISTER_ALLOCATOR) - , m_allocatorId(0) - , m_removedAllocatorInfo(nullptr) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - AZ::u64 m_allocatorId; - Memory::AllocatorInfo* m_removedAllocatorInfo; - }; - - class MemoryDrillerRegisterAllocationEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(MemoryDrillerRegisterAllocationEvent, AZ::SystemAllocator, 0) - - MemoryDrillerRegisterAllocationEvent() - : DrillerEvent(Memory::MET_REGISTER_ALLOCATION) - , m_address(0) - , m_modifiedAllocatorInfo(nullptr) - {} - - ~MemoryDrillerRegisterAllocationEvent() - { - if (m_allocationInfo.m_stackFrames) - { - azfree(m_allocationInfo.m_stackFrames); - } - } - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - AZ::u64 m_address; - Memory::AllocationInfo m_allocationInfo; - Memory::AllocatorInfo* m_modifiedAllocatorInfo; - }; - - class MemoryDrillerUnregisterAllocationEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(MemoryDrillerUnregisterAllocationEvent, AZ::SystemAllocator, 0) - - MemoryDrillerUnregisterAllocationEvent() - : DrillerEvent(Memory::MET_UNREGISTER_ALLOCATION) - , m_recordsId(0) - , m_address(0) - , m_removedAllocationInfo(nullptr) - , m_modifiedAllocatorInfo(nullptr) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - AZ::u64 m_recordsId; - AZ::u64 m_address; - Memory::AllocationInfo* m_removedAllocationInfo; - Memory::AllocatorInfo* m_modifiedAllocatorInfo; - }; - - class MemoryDrillerResizeAllocationEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(MemoryDrillerResizeAllocationEvent, AZ::SystemAllocator, 0) - - MemoryDrillerResizeAllocationEvent() - : DrillerEvent(Memory::MET_RESIZE_ALLOCATION) - , m_recordsId(0) - , m_address(0) - , m_newSize(0) - , m_oldSize(0) - , m_modifiedAllocationInfo(nullptr) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - AZ::u64 m_recordsId; - AZ::u64 m_address; - AZ::u64 m_newSize; - AZ::u64 m_oldSize; - Memory::AllocationInfo* m_modifiedAllocationInfo; - Memory::AllocatorInfo* m_modifiedAllocatorInfo; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.cpp deleted file mode 100644 index e67f8e329f..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.cpp +++ /dev/null @@ -1,465 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "ProfilerDataAggregator.hxx" -#include - -#include "ProfilerDataView.hxx" -#include "ProfilerEvents.h" -#include -#include -#include "Source/Driller/Workspaces/Workspace.h" - -namespace Driller -{ - // used against m_roiVersion to silently clear and reinitialize on internal updates - static const int dataAggregatorVersion = 2; - - // USER SETTINGS are local only, global settings to the application - // designed to be used for window placement, global preferences, that kind of thing - class ProfilerDataAggregatorSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(ProfilerDataAggregatorSavedState, "{98494FFE-783F-48A7-A35F-714138425640}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(ProfilerDataAggregatorSavedState, AZ::SystemAllocator, 0); - - struct RegisterOfInterest - { - AZ_RTTI(RegisterOfInterest, "{885335FD-79D1-4462-B637-177FC0FCF01C}"); - AZStd::string m_name; - float m_dataScale; - int m_usesDelta; - int m_useSubValue; - - virtual ~RegisterOfInterest() {} - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_name", &RegisterOfInterest::m_name) - ->Field("m_dataScale", &RegisterOfInterest::m_dataScale) - ->Field("m_usesDelta", &RegisterOfInterest::m_usesDelta) - ->Field("m_useSubValue", &RegisterOfInterest::m_useSubValue) - ->Version(3); - } - } - }; - - int m_activeViewCount; - - AZStd::vector m_registersOfInterest; - int m_roiVersion; - - ProfilerDataAggregatorSavedState() - : m_activeViewCount(0) - , m_roiVersion(1) - {} - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - RegisterOfInterest::Reflect(context); - - serialize->Class() - ->Field("m_activeViewCount", &ProfilerDataAggregatorSavedState::m_activeViewCount) - ->Field("m_registersOfInterest", &ProfilerDataAggregatorSavedState::m_registersOfInterest) - ->Field("m_roiVersion", &ProfilerDataAggregatorSavedState::m_roiVersion) - ->Version(7); - } - } - }; - - // WORKSPACES are files loaded and stored independent of the global application - // designed to be used for DRL data specific view settings and to pass around - class ProfilerDataAggregatorWorkspace - : public AZ::UserSettings - { - public: - AZ_RTTI(ProfilerDataAggregatorWorkspace, "{2C41A0B1-E200-448D-8727-5109DF877B0E}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(ProfilerDataAggregatorWorkspace, AZ::SystemAllocator, 0); - - int m_activeViewCount; - AZStd::vector m_activeViewTypes; - - ProfilerDataAggregatorWorkspace() - : m_activeViewCount(0) - {} - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_activeViewCount", &ProfilerDataAggregatorWorkspace::m_activeViewCount) - ->Field("m_activeViewTypes", &ProfilerDataAggregatorWorkspace::m_activeViewTypes) - ->Version(3); - } - } - }; - - - ////////////////////////////////////////////////////////////////////////// - ProfilerDataAggregator::ProfilerDataAggregator(int identity) - : Aggregator(identity) - , m_currentDisplayRegister(0) - , m_dataView(nullptr) - { - m_parser.SetAggregator(this); - - // find state and restore it - m_persistentState = AZ::UserSettings::CreateFind(AZ_CRC("PROFILER DATA AGGREGATOR SAVED STATE", 0x49c357f6), AZ::UserSettings::CT_GLOBAL); - AZ_Assert(m_persistentState, "Persistent State is NULL?"); - // please see ::dataAggregatorVersion to control updates - if (m_persistentState->m_registersOfInterest.empty() || m_persistentState->m_roiVersion != dataAggregatorVersion) - { - m_persistentState->m_registersOfInterest.clear(); - m_persistentState->m_registersOfInterest.push_back(); - m_persistentState->m_registersOfInterest[0].m_name = "Component application tick function"; - m_persistentState->m_registersOfInterest[0].m_dataScale = 1.0f / 64000.0f; - m_persistentState->m_registersOfInterest[0].m_usesDelta = 1; // this is a delta time calculated on the fly here - m_persistentState->m_registersOfInterest[0].m_useSubValue = 0; // user data 0 is m_time from the register union - } - - m_allRegistersOfInterestInData.clear(); - if (!m_persistentState->m_registersOfInterest.empty()) - { - m_allRegistersOfInterestInData.resize(m_persistentState->m_registersOfInterest.size(), NULL); - m_allCorrespondingIdsForRegistersOfInterestInData.resize(m_persistentState->m_registersOfInterest.size(), 0); - } - } - - ProfilerDataAggregator::~ProfilerDataAggregator() - { - KillAllViews(); - } - - // this aggregator has to dive deeper into the source data - // to synthesize a meaningful -1...+1 value for the main display - float ProfilerDataAggregator::ValueAtFrame(FrameNumberType frame) - { - size_t numEvents = NumOfEventsAtFrame(frame); - if (numEvents && frame > 0) - { - for (EventNumberType eventIndex = m_frameToEventIndex[frame]; eventIndex < static_cast(m_frameToEventIndex[frame] + numEvents); ++eventIndex) - { - DrillerEvent* drillerEvent = drillerEvent = GetEvents()[ eventIndex ]; - if (drillerEvent->GetEventType() == Driller::Profiler::PET_UPDATE_REGISTER) - { - Driller::ProfilerDrillerUpdateRegisterEvent* reg = static_cast(drillerEvent); - for (auto iter = m_allCorrespondingIdsForRegistersOfInterestInData.begin(); iter != m_allCorrespondingIdsForRegistersOfInterestInData.end(); ++iter) - { - if (reg->GetRegisterId() == *iter) - { - float t = 0.0f; - if (m_persistentState->m_registersOfInterest[m_currentDisplayRegister].m_usesDelta) - { - switch (m_persistentState->m_registersOfInterest[m_currentDisplayRegister].m_useSubValue) - { - case 0: - t = (float)(reg->GetData().m_valueData.m_value1 - (reg->GetPreviousSample() == NULL ? 0 : reg->GetPreviousSample()->GetData().m_valueData.m_value1)); - break; - case 1: - t = (float)(reg->GetData().m_valueData.m_value2 - (reg->GetPreviousSample() == NULL ? 0 : reg->GetPreviousSample()->GetData().m_valueData.m_value2)); - break; - case 2: - t = (float)(reg->GetData().m_valueData.m_value3 - (reg->GetPreviousSample() == NULL ? 0 : reg->GetPreviousSample()->GetData().m_valueData.m_value3)); - break; - case 3: - t = (float)(reg->GetData().m_valueData.m_value4 - (reg->GetPreviousSample() == NULL ? 0 : reg->GetPreviousSample()->GetData().m_valueData.m_value4)); - break; - } - } - else - { - switch (m_persistentState->m_registersOfInterest[m_currentDisplayRegister].m_useSubValue) - { - case 0: - t = (float)reg->GetData().m_valueData.m_value1; - break; - case 1: - t = (float)reg->GetData().m_valueData.m_value2; - break; - case 2: - t = (float)reg->GetData().m_valueData.m_value3; - break; - case 3: - t = (float)reg->GetData().m_valueData.m_value4; - break; - } - } - - t *= m_persistentState->m_registersOfInterest[m_currentDisplayRegister].m_dataScale; - t = t * 2.0f - 1.0f; - t = t > 1.0f ? 1.0f : t; - t = t < -1.0f ? -1.0f : t; - return t; - } - } - } - } - } - - return -1.0f; - } - - QColor ProfilerDataAggregator::GetColor() const - { - return QColor(255, 127, 0); - } - - QString ProfilerDataAggregator::GetName() const - { - return "CPU"; - } - - QString ProfilerDataAggregator::GetChannelName() const - { - return ChannelName(); - } - - QString ProfilerDataAggregator::GetDescription() const - { - return "Profiler Driller"; - } - - QString ProfilerDataAggregator::GetToolTip() const - { - return "Information about CPU usage time and function usage tracking)"; - } - - AZ::Uuid ProfilerDataAggregator::GetID() const - { - return AZ::Uuid("{A6DB5318-82BF-416B-BF3D-FFD187329845}"); - } - - QWidget* ProfilerDataAggregator::DrillDownRequest(FrameNumberType frame) - { - return DrillDownRequest(frame, Profiler::RegisterInfo::PRT_TIME); - } - - QWidget* ProfilerDataAggregator::DrillDownRequest(FrameNumberType frame, int viewType) - { - Driller::ProfilerDataView* pdv = NULL; - - if (m_dataView) - { - KillAllViews(); - } - - pdv = aznew Driller::ProfilerDataView(this, frame, 0, viewType); - if (pdv) - { - m_dataView = pdv; - connect(pdv, SIGNAL(destroyed(QObject*)), this, SLOT(OnDataViewDestroyed(QObject*))); - ++m_persistentState->m_activeViewCount; - } - - return pdv; - } - - void ProfilerDataAggregator::OptionsRequest() - { - char output[64]; - GetID().ToString(output, AZ_ARRAY_SIZE(output), true, true); - AZ_TracePrintf("Driller", "Options Request for ProfilerDataAggregator %s\n", output); - } - - void ProfilerDataAggregator::OnDataViewDestroyed(QObject* dataView) - { - if (dataView == m_dataView) - { - m_dataView = nullptr; - --m_persistentState->m_activeViewCount; - } - } - - void ProfilerDataAggregator::KillAllViews() - { - if (m_dataView) - { - QObject* object = m_dataView; - OnDataViewDestroyed(m_dataView); - m_dataView = nullptr; - delete object; - } - } - - void ProfilerDataAggregator::ApplySettingsFromWorkspace(WorkspaceSettingsProvider* provider) - { - ProfilerDataAggregatorWorkspace* workspace = provider->FindSetting(AZ_CRC("PROFILER DATA AGGREGATOR WORKSPACE", 0xfdb6cb89)); - if (workspace) - { - m_persistentState->m_activeViewCount = workspace->m_activeViewCount; - } - } - void ProfilerDataAggregator::ActivateWorkspaceSettings(WorkspaceSettingsProvider* provider) - { - ProfilerDataAggregatorWorkspace* workspace = provider->FindSetting(AZ_CRC("PROFILER DATA AGGREGATOR WORKSPACE", 0xfdb6cb89)); - if (workspace) - { - // kill all existing data view windows in preparation of opening the workspace specified ones - KillAllViews(); - - // the internal count should be 0 from the above house cleaning - // and incremented back up from the workspace instantiations - m_persistentState->m_activeViewCount = 0; - for (int i = 0; i < workspace->m_activeViewCount; ++i) - { - // older workspaces will not have any active view types - // therefore this check to default PRT_TIME - int discoveredType = Profiler::RegisterInfo::PRT_TIME; - if (workspace->m_activeViewTypes.size() > i) - { - discoveredType = workspace->m_activeViewTypes[i]; - } - - Driller::ProfilerDataView* dataView = qobject_cast(DrillDownRequest(1, discoveredType)); - if (dataView) - { - // apply will overlay the workspace settings on top of the local user settings - dataView->ApplySettingsFromWorkspace(provider); - // activate will do the heavy lifting - dataView->ActivateWorkspaceSettings(provider); - } - } - } - } - void ProfilerDataAggregator::SaveSettingsToWorkspace(WorkspaceSettingsProvider* provider) - { - ProfilerDataAggregatorWorkspace* workspace = provider->CreateSetting(AZ_CRC("PROFILER DATA AGGREGATOR WORKSPACE", 0xfdb6cb89)); - if (workspace) - { - workspace->m_activeViewTypes.clear(); - workspace->m_activeViewCount = m_persistentState->m_activeViewCount; - - if (m_dataView) - { - Driller::ProfilerDataView* dataView = qobject_cast(m_dataView); - - if (dataView) - { - workspace->m_activeViewTypes.push_back(dataView->GetViewType()); - dataView->SaveSettingsToWorkspace(provider); - } - } - } - } - - //========================================================================= - // OnEventLoaded - // [7/10/2013] - //========================================================================= - void ProfilerDataAggregator::OnEventLoaded(DrillerEvent* event) - { - switch (event->GetEventType()) - { - case Profiler::PET_NEW_REGISTER: - { - Driller::ProfilerDrillerNewRegisterEvent* reg = static_cast(event); - - for (AZStd::size_t idx = 0; idx < m_persistentState->m_registersOfInterest.size(); ++idx) - { - AZStd::string registerName; - if (reg->GetInfo().m_name == NULL) - { - registerName = AZStd::string::format("%s(%d)" - , reg->GetInfo().m_function ? reg->GetInfo().m_function : "N/A" - , reg->GetInfo().m_line); - } - else - { - registerName = reg->GetInfo().m_name; - } - - if (!qstricmp(registerName.data(), m_persistentState->m_registersOfInterest[idx].m_name.data())) - { - m_allRegistersOfInterestInData[idx] = reg; - m_allCorrespondingIdsForRegistersOfInterestInData[idx] = reg->GetInfo().m_id; - } - } - - if (m_lifeTimeThreads.find(reg->GetInfo().m_threadId) == m_lifeTimeThreads.end()) - { - // this register belongs to a thread which was not AZStd::thread or was NOT reported to the - // AZStd::ThreadEventBus. This is possible for middleware and so on. Although we should attempt - // to report those threads too (the best we can, with some name at least) - // as of now just add the id. - // NB: threadId can be be defaulted at 0 if this is an older data set - // in which case we do not add it to the threads - if (reg->GetInfo().m_threadId != 0) - { - if (m_lifeTimeThreads.find(reg->GetInfo().m_threadId) == m_lifeTimeThreads.end()) - { - m_lifeTimeThreads.insert(AZStd::make_pair(reg->GetInfo().m_threadId, nullptr)); - } - } - } - break; - } - case Profiler::PET_UPDATE_REGISTER: - { - Driller::ProfilerDrillerUpdateRegisterEvent* reg = static_cast(event); - - for (AZStd::size_t idx = 0; idx < m_allCorrespondingIdsForRegistersOfInterestInData.size(); ++idx) - { - if (reg->GetRegisterId() == m_allCorrespondingIdsForRegistersOfInterestInData[idx]) - { - reg->PreComputeForward(m_allRegistersOfInterestInData[idx]); - } - } - } - break; - - case Profiler::PET_ENTER_THREAD: - { - // make sure we have a valid list with all the threads in the world - ProfilerDrillerEnterThreadEvent* newThread = static_cast(event); - if (m_lifeTimeThreads.find(newThread->m_threadId) == m_lifeTimeThreads.end()) - { - m_lifeTimeThreads.insert(AZStd::make_pair(newThread->m_threadId, newThread)); - } - } break; - } - } - - //========================================================================= - // Reset() - // [7/10/2013] - //========================================================================= - void ProfilerDataAggregator::Reset() - { - m_systems.clear(); - m_threads.clear(); - m_lifeTimeThreads.clear(); - m_registers.clear(); - - KillAllViews(); - } - - void ProfilerDataAggregator::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - ProfilerDataAggregatorSavedState::Reflect(context); - ProfilerDataAggregatorWorkspace::Reflect(context); - ProfilerDataView::Reflect(context); - - serialize->Class() - ->Version(1) - ->SerializeWithNoData(); - } - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.hxx deleted file mode 100644 index 85a2841f39..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.hxx +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_PROFILER_DATAAGGREGATOR_TESTS_H -#define DRILLER_PROFILER_DATAAGGREGATOR_TESTS_H - -#if !defined(Q_MOC_RUN) -#include "Source/Driller/DrillerAggregator.hxx" -#include "Source/Driller/DrillerAggregatorOptions.hxx" -#include "AzCore/std/string/string.h" -#include "AzCore/std/containers/map.h" -#include "AzCore/RTTI/RTTI.h" -#include "AzCore/Memory/SystemAllocator.h" - -#include "ProfilerDataParser.h" -#endif - -namespace AZ -{ - class SerializeContext; -} - -namespace Driller -{ - class ProfilerDrillerNewRegisterEvent; - class ProfilerDrillerEnterThreadEvent; - class ProfilerDrillerRegisterSystemEvent; - class ProfilerDataAggregatorSavedState; - - /** - * Profiler data drilling aggregator. - */ - class ProfilerDataAggregator : public Aggregator - { - friend class ProfilerDataView; - ProfilerDataAggregator(const ProfilerDataAggregator&) = delete; - Q_OBJECT; - public: - AZ_RTTI(ProfilerDataAggregator, "{0DDEB1EA-0D49-4A5E-866A-885F51231FDA}"); - AZ_CLASS_ALLOCATOR(ProfilerDataAggregator,AZ::SystemAllocator,0); - - ProfilerDataAggregator(int identity = 0); - virtual ~ProfilerDataAggregator(); - - static AZ::u32 DrillerId() { return ProfilerDrillerHandlerParser::GetDrillerId(); } - virtual AZ::u32 GetDrillerId() const { return DrillerId(); } - - static const char* ChannelName() { return "Timing"; } - virtual AZ::Crc32 GetChannelId() const override { return AZ::Crc32(ChannelName()); } - - virtual AZ::Debug::DrillerHandlerParser* GetDrillerDataParser() { return &m_parser; } - - virtual void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*); - virtual void ActivateWorkspaceSettings(WorkspaceSettingsProvider*); - virtual void SaveSettingsToWorkspace(WorkspaceSettingsProvider*); - - /// Called after an event has been loaded - void OnEventLoaded(DrillerEvent* event); - - void KillAllViews(); - - ////////////////////////////////////////////////////////////////////////// - // Aggregator - - virtual void Reset(); - - public slots: - float ValueAtFrame( FrameNumberType frame ) override; - QColor GetColor() const override; - QString GetName() const override; - QString GetChannelName() const override; - QString GetDescription() const override; - QString GetToolTip() const override; - AZ::Uuid GetID() const override; - QWidget* DrillDownRequest(FrameNumberType frame) override; - QWidget* DrillDownRequest(FrameNumberType frame, int viewType); - virtual void OptionsRequest(); - void OnDataViewDestroyed(QObject*); - - //protected: - public: - typedef AZStd::unordered_map RegisterMapType; - typedef AZStd::unordered_map ThreadMapType; - typedef AZStd::multimap ThreadMultiMapType; - typedef AZStd::unordered_map SystemMapType; - - /** - * Map with all systems in use (system is a logical group of registers, - * which we can enable/disable sampling in order to improve performance and data granularity - */ - SystemMapType m_systems; - ThreadMapType m_threads; ///< Map with all the threads which are currently running. - /** - * Map with all the threads we have ever encountered. - * IMPORTANT: Thread which were NOT reported to AZStd::ThreadEventBus - * will still be in the map, but the ProfilerDrillerEnterThreadEvent* pointer will be null. - * make sure your code accounts for that. - */ - ThreadMultiMapType m_lifeTimeThreads; - RegisterMapType m_registers; - - AZStd::vector m_allRegistersOfInterestInData; - AZStd::vector m_allCorrespondingIdsForRegistersOfInterestInData; - AZ::u64 m_currentDisplayRegister; - - QObject* m_dataView; - ProfilerDrillerHandlerParser m_parser; ///< Parser for this aggregator - - AZStd::intrusive_ptr m_persistentState; - - static void Reflect(AZ::ReflectContext* context); - }; - -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.cpp deleted file mode 100644 index 5714d75b0f..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.cpp +++ /dev/null @@ -1,1517 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include - -#include -#include - -#include "ProfilerDataPanel.hxx" -#include -#include "ProfilerDataAggregator.hxx" -#include - -#include "Source/Driller/StripChart.hxx" -#include "Source/Driller/DrillerAggregator.hxx" -#include "Source/Driller/Profiler/ProfilerOperationTelemetryEvent.h" - -#include "ProfilerEvents.h" - -#include -#include -#include -#include -#include -#include - -namespace Driller -{ - enum - { - PDM_FUNCTIONNAME = 0, - PDM_COMMENT, - PDM_EXCLUSIVE_TIME, - PDM_INCLUSIVE_TIME, - PDM_EXCLUSIVE_PCT, - PDM_INCLUSIVE_PCT, - PDM_CALLS, - PDM_CHILDREN_TIME, - PDM_ACCUMULATED_TIME, - PDM_CHILDREN_CALLS, - PDM_ACCUMULATED_CALLS, - PDM_THREAD_ID, - PDM_TIME_TOTAL - }; - static const char* PDM_TIME_STRING[] = { - "Function", - "Comment", - "Excl. Time (Micro)", - "Incl. Time (Micro)", - "Excl. Pct", - "Incl. Pct", - "Calls", - "Child Time (Micro)", - "Total Time (Micro)", - "Child Calls", - "Total Calls", - "Thread ID" - }; - enum - { - PDM_NUMERIC_DATA_ROLE = Qt::UserRole + 1 - }; - - enum - { - PDM_VALUE_FUNCTIONNAME = 0, - PDM_VALUE_COMMENT, - PDM_VALUE_1, - PDM_VALUE_2, - PDM_VALUE_3, - PDM_VALUE_4, - PDM_VALUE_5, - PDM_VALUE_THREAD_ID, - PDM_VALUE_TOTAL - }; - static const char* PDM_VALUE_STRING[] = { - "Function", - "Comment", - "Value 1", - "Value 2", - "Value 3", - "Value 4", - "Value 5", - "Thread ID" - }; - - int ProfilerDataModel::m_colorIndexTracker = 0; - - class ProfilerFilterModel - : public QSortFilterProxyModel - { - public: - AZ_CLASS_ALLOCATOR(ProfilerFilterModel, AZ::SystemAllocator, 0); - ProfilerFilterModel(QObject* pParent) - : QSortFilterProxyModel(pParent) - { - setFilterCaseSensitivity(Qt::CaseSensitive); - setDynamicSortFilter(false); - } - protected: - virtual bool lessThan(const QModelIndex& left, const QModelIndex& right) const - { - switch (left.column()) - { - case PDM_FUNCTIONNAME: - case PDM_COMMENT: - return QSortFilterProxyModel::lessThan(left, right); - break; - default: - AZ::u64 leftNumber = 0; - AZ::u64 rightNumber = 0; - // inner switch sanity check that we only pull numbers from numeric fields and default the rest to 0<0 false - switch (left.column()) - { - case PDM_INCLUSIVE_TIME: - case PDM_EXCLUSIVE_TIME: - case PDM_INCLUSIVE_PCT: - case PDM_EXCLUSIVE_PCT: - case PDM_CHILDREN_TIME: - case PDM_ACCUMULATED_TIME: - case PDM_CALLS: - case PDM_CHILDREN_CALLS: - case PDM_ACCUMULATED_CALLS: - case PDM_THREAD_ID: - QVariant retrievedColumnLeft = sourceModel()->data(left, PDM_NUMERIC_DATA_ROLE); - QVariant retrievedColumnRight = sourceModel()->data(right, PDM_NUMERIC_DATA_ROLE); - - leftNumber = retrievedColumnLeft.toULongLong(); - rightNumber = retrievedColumnRight.toULongLong(); - - break; - } - - return leftNumber < rightNumber; - break; - } - } - }; - - class ProfilerValueFilterModel - : public QSortFilterProxyModel - { - public: - AZ_CLASS_ALLOCATOR(ProfilerValueFilterModel, AZ::SystemAllocator, 0); - ProfilerValueFilterModel(QObject* pParent) - : QSortFilterProxyModel(pParent) - { - setFilterCaseSensitivity(Qt::CaseSensitive); - setDynamicSortFilter(false); - } - protected: - virtual bool lessThan(const QModelIndex& left, const QModelIndex& right) const - { - switch (left.column()) - { - case PDM_FUNCTIONNAME: - case PDM_COMMENT: - return QSortFilterProxyModel::lessThan(left, right); - break; - default: - AZ::u64 leftNumber = 0; - AZ::u64 rightNumber = 0; - // inner switch sanity check that we only pull numbers from numeric fields and default the rest to 0<0 false - switch (left.column()) - { - case PDM_VALUE_1: - case PDM_VALUE_2: - case PDM_VALUE_3: - case PDM_VALUE_4: - case PDM_VALUE_5: - case PDM_VALUE_THREAD_ID: - QVariant retrievedColumnLeft = sourceModel()->data(left, PDM_NUMERIC_DATA_ROLE); - QVariant retrievedColumnRight = sourceModel()->data(right, PDM_NUMERIC_DATA_ROLE); - - leftNumber = retrievedColumnLeft.toULongLong(); - rightNumber = retrievedColumnRight.toULongLong(); - - break; - } - - return leftNumber < rightNumber; - break; - } - } - }; - - ProfilerAxisFormatter::ProfilerAxisFormatter(QObject* pParent, int whichTypeOfRegister) - : QAbstractAxisFormatter(pParent) - { - m_lastAxisValueForScaling = 1.0f; - m_whatKindOfRegister = whichTypeOfRegister; - } - - QString ProfilerAxisFormatter::formatMicroseconds(float value) - { - // data is in microseconds! - // so how big is the division size? - if (m_lastAxisValueForScaling > 100000.0f) // greater than a 0.1 second per division - { - if (m_lastAxisValueForScaling > 1000000.0f) // whole seconds - { - return QObject::tr("%1s").arg(QString::number(value / 1000000.0f, 'f', 0)); - } - else - { - return QObject::tr("%1s").arg(QString::number(value / 1000000.0f, 'f', 1)); - } - } - else if (m_lastAxisValueForScaling > 100.0f) // greater than a 0.1 millisecond per division - { - if (m_lastAxisValueForScaling > 1000.0f) // whole milliseconds - { - return QObject::tr("%1%2").arg(QString::number(value / 1000.0f, 'f', 0)).arg("ms"); - } - else - { - return QObject::tr("%1%2").arg(QString::number(value / 1000.0f, 'f', 1)).arg("ms"); - } - } - else if (m_lastAxisValueForScaling > 1.0f) - { - return QObject::tr("%1%2s").arg((int)value).arg(QChar(0x00b5)); - } - else - { - return QObject::tr("%1%2s").arg(QString::number((double)value, 'f', 2)).arg(QChar(0x00b5)); - } - } - - QString ProfilerAxisFormatter::convertAxisValueToText(Charts::AxisType axis, float value, float /*minDisplayedValue*/, float /*maxDisplayedValue*/, float divisionSize) - { - if (axis == Charts::AxisType::Vertical) - { - if (m_whatKindOfRegister == (int)Profiler::RegisterInfo::PRT_TIME) - { - m_lastAxisValueForScaling = divisionSize; - return formatMicroseconds(value); - } - else - { - return QString::number(value); - } - } - else - { - return QString::number((int)value); - } - }; - - - /////////////////////// - // ProfilerDataWidget - /////////////////////// - - ProfilerDataWidget::ProfilerDataWidget(QWidget* parent) - : AzToolsFramework::QTreeViewWithStateSaving(parent) - , m_dataModel(NULL) - { - m_cachedChart = NULL; - m_cachedColumn = PDM_EXCLUSIVE_TIME; - m_autoZoom = true; - m_cachedFlatView = false; - m_cachedDeltaData = true; - m_manualZoomMin = 2000000000.0f; - m_manualZoomMax = -2000000000.0f; - m_iLastHighlightedChannel = -1; - - setFocusPolicy(Qt::StrongFocus); // required for key press handling - - setEnabled(true); - setSortingEnabled(true); - sortByColumn(0, Qt::AscendingOrder); - header()->setSectionResizeMode(QHeaderView::Interactive); - header()->setSectionsMovable(true); - header()->setStretchLastSection(false); - setUniformRowHeights(true); - - connect(this, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(OnDoubleClicked(const QModelIndex &))); - } - - ProfilerDataWidget::~ProfilerDataWidget() - { - //m_stateSaver->Detach(); - - if (m_dataModel) - { - delete m_dataModel; - } - } - - void ProfilerDataWidget::SetViewType(int viewType) - { - m_viewType = viewType; - if (m_viewType == Profiler::RegisterInfo::PRT_TIME) - { - m_dataModel = new ProfilerDataModel(); - if (m_dataModel) - { - m_filterModel = aznew ProfilerFilterModel(this); - m_filterModel->setSourceModel(m_dataModel); - setModel(m_filterModel); - } - } - if (m_viewType == Profiler::RegisterInfo::PRT_VALUE) - { - m_dataModel = new ProfilerCounterDataModel(); - if (m_dataModel) - { - m_filterModel = aznew ProfilerValueFilterModel(this); - m_filterModel->setSourceModel(m_dataModel); - setModel(m_filterModel); - } - } - - AZ_Assert(m_dataModel, "SetViewType has an invalid argument, profiler data model cannot be created!"); - } - - void ProfilerDataWidget::OnChartTypeMenu() - { - QAction* qa = qobject_cast(sender()); - if (qa) - { - OnChartTypeMenu(qa->objectName()); - } - } - - void ProfilerDataWidget::OnChartTypeMenu(QString typeStr) - { - ProfilerOperationTelemetryEvent chartTypeChanged; - - int newValue = 0; - - if (m_viewType == Profiler::RegisterInfo::PRT_TIME) - { - newValue = PDM_EXCLUSIVE_TIME; - - chartTypeChanged.SetAttribute("ChartTimeType", typeStr.toStdString().c_str()); - - if (typeStr == "Incl.Time") - { - newValue = PDM_INCLUSIVE_TIME; - } - if (typeStr == "Excl.Time") - { - newValue = PDM_EXCLUSIVE_TIME; - } - if (typeStr == "Calls") - { - newValue = PDM_CALLS; - } - if (typeStr == "Acc.Time") - { - newValue = PDM_ACCUMULATED_TIME; - } - if (typeStr == "Acc.Calls") - { - newValue = PDM_ACCUMULATED_CALLS; - } - } - else if (m_viewType == Profiler::RegisterInfo::PRT_VALUE) - { - newValue = PDM_VALUE_1; - - chartTypeChanged.SetAttribute("ChartValueType", typeStr.toStdString().c_str()); - - if (typeStr == "Value 1") - { - newValue = PDM_VALUE_1; - } - if (typeStr == "Value 2") - { - newValue = PDM_VALUE_2; - } - if (typeStr == "Value 3") - { - newValue = PDM_VALUE_3; - } - if (typeStr == "Value 4") - { - newValue = PDM_VALUE_4; - } - if (typeStr == "Value 5") - { - newValue = PDM_VALUE_5; - } - } - - chartTypeChanged.Log(); - m_cachedColumn = newValue; - RedrawChart(); - } - - void ProfilerDataWidget::BeginDataModelUpdate() - { - PauseTreeViewSaving(); - - m_dataModel->BeginAddRegisters(); - } - - void ProfilerDataWidget::EndDataModelUpdate() - { - m_dataModel->EndAddRegisters(); - - // this will capture any changes/zoom to the chart by the user - if ((!m_autoZoom) && (m_cachedChart)) - { - m_cachedChart->GetWindowRange(Charts::AxisType::Vertical, m_manualZoomMin, m_manualZoomMax); - } - - UnpauseTreeViewSaving(); - ApplyTreeViewSnapshot(); - } - - void ProfilerDataWidget::OnExpandAll() - { - expandAll(); - CaptureTreeViewSnapshot(); // expand all doesn't signal, this captures the fully open tree - - // now that column organization is being stored in user settings - // I'm disabling this so the user isn't surprised by his view suddenly changing - //resizeColumnToContents( 0 ); - } - - void ProfilerDataWidget::OnHideSelected() - { - m_iLastHighlightedChannel = -1; - QModelIndexList list = selectionModel()->selectedIndexes(); - foreach (QModelIndex index, list) - { - if (index.column() == 0) - { - QModelIndex sourceIndex = m_filterModel->mapToSource(index); - const Driller::ProfilerDrillerUpdateRegisterEvent* tp = (Driller::ProfilerDrillerUpdateRegisterEvent*)(sourceIndex.internalPointer()); - if (tp) - { - if (m_dataModel->m_enabledChartingMap.find(tp->GetRegister()->GetInfo().m_id) != m_dataModel->m_enabledChartingMap.end()) - { - m_dataModel->m_enabledChartingMap[ tp->GetRegister()->GetInfo().m_id ] = 0; - QModelIndex column0(m_dataModel->index(index.row(), 0)); - emit dataChanged(column0, column0); - } - } - } - } - update(); - RedrawChart(); - } - - void ProfilerDataWidget::OnShowSelected() - { - QModelIndexList list = selectionModel()->selectedIndexes(); - foreach (QModelIndex index, list) - { - if (index.column() == 0) - { - QModelIndex sourceIndex = m_filterModel->mapToSource(index); - const Driller::ProfilerDrillerUpdateRegisterEvent* tp = (Driller::ProfilerDrillerUpdateRegisterEvent*)(sourceIndex.internalPointer()); - if (tp) - { - if (m_dataModel->m_enabledChartingMap.find(tp->GetRegister()->GetInfo().m_id) != m_dataModel->m_enabledChartingMap.end()) - { - m_dataModel->m_enabledChartingMap[ tp->GetRegister()->GetInfo().m_id ] = 1; - QModelIndex column0(m_dataModel->index(index.row(), 0)); - emit dataChanged(column0, column0); - } - } - } - } - update(); - RedrawChart(); - } - - void ProfilerDataWidget::OnInvertHidden() - { - AZStd::map::iterator iter = m_dataModel->m_enabledChartingMap.begin(); - while (iter != m_dataModel->m_enabledChartingMap.end()) - { - int current = iter->second; - iter->second = !current; - ++iter; - } - update(); - RedrawChart(); - } - - void ProfilerDataWidget::OnHideAll() - { - m_iLastHighlightedChannel = -1; - AZStd::map::iterator iter = m_dataModel->m_enabledChartingMap.begin(); - while (iter != m_dataModel->m_enabledChartingMap.end()) - { - iter->second = 0; - ++iter; - } - update(); - RedrawChart(); - } - - void ProfilerDataWidget::OnShowAll() - { - AZStd::map::iterator iter = m_dataModel->m_enabledChartingMap.begin(); - while (iter != m_dataModel->m_enabledChartingMap.end()) - { - iter->second = 1; - ++iter; - } - update(); - RedrawChart(); - } - - void ProfilerDataWidget::OnAutoZoomChange(bool newValue) - { - if (!newValue) - { - m_autoZoom = false; - m_cachedChart->GetWindowRange(Charts::AxisType::Vertical, m_manualZoomMin, m_manualZoomMax); - } - else - { - m_autoZoom = true; - m_manualZoomMin = 2000000000.0f; - m_manualZoomMax = -2000000000.0f; - } - update(); - RedrawChart(); - } - - void ProfilerDataWidget::OnFlatView(bool isOn) - { - m_cachedFlatView = isOn; - m_dataModel->SetFlatView(m_cachedFlatView); - - update(); - RedrawChart(); - } - - void ProfilerDataWidget::OnDeltaData(bool isOn) - { - m_cachedDeltaData = isOn; - m_dataModel->SetDeltaData(m_cachedDeltaData); - - update(); - RedrawChart(); - } - - void ProfilerDataWidget::OnDoubleClicked(const QModelIndex& index) - { - if (index.isValid()) - { - QModelIndex sourceIndex = m_filterModel->mapToSource(index); - const Driller::ProfilerDrillerUpdateRegisterEvent* tp = (Driller::ProfilerDrillerUpdateRegisterEvent*)(sourceIndex.internalPointer()); - if (tp) - { - if (m_dataModel->m_enabledChartingMap.find(tp->GetRegister()->GetInfo().m_id) != m_dataModel->m_enabledChartingMap.end()) - { - int current = m_dataModel->m_enabledChartingMap.find(tp->GetRegister()->GetInfo().m_id)->second; - m_dataModel->m_enabledChartingMap[ tp->GetRegister()->GetInfo().m_id ] = !current; - QModelIndex column0(m_dataModel->index(index.row(), 0)); - emit dataChanged(column0, column0); // no matter where we clicked, update only column 0 - RedrawChart(); - } - } - } - } - - void ProfilerDataWidget::selectionChanged(const QItemSelection& selected, const QItemSelection& deselected) - { - QTreeView::selectionChanged(selected, deselected); - } - - void ProfilerDataWidget::RedrawChart() - { - if (m_cachedChart) - { - m_iLastHighlightedChannel = -1; - m_cachedChart->Reset(); - - m_cachedChart->AddAxis("Frame", static_cast(m_cachedStartFrame), static_cast(m_cachedStartFrame + m_cachedDisplayRange), true, true); - m_cachedChart->AddAxis("", m_manualZoomMin, m_manualZoomMax, false, false); - - m_cachedChart->SetDataDirty(); - } - } - - void ProfilerDataWidget::ConfigureChart(StripChart::DataStrip* chart, FrameNumberType atFrame, int howFar, FrameNumberType frameCount) - { - (void)frameCount; - // this can be NULL - if (chart) - { - // stored against the need to update on local selection changes, and used internally - if (m_cachedChart != chart) - { - m_cachedChart = chart; - ProfilerAxisFormatter* prf = aznew ProfilerAxisFormatter(this, (int)m_viewType); - m_cachedChart->SetAxisTextFormatter(prf); - m_formatter = prf; - - m_cachedChart->AttachDataSourceWidget(this); - } - - m_cachedDisplayRange = howFar; - - m_cachedCurrentFrame = atFrame; - m_cachedEndFrame = atFrame; - m_cachedStartFrame = AZStd::GetMax(atFrame - m_cachedDisplayRange, 0); - - RedrawChart(); - } - } - - void ProfilerDataWidget::ProvideData(StripChart::DataStrip* chart) - { - PlotTimeHistory(chart); - } - - void ProfilerDataWidget::onMouseOverNothing(float primaryAxisValue, float dependentAxisValue) - { - (void)primaryAxisValue; - (void)dependentAxisValue; - if (m_iLastHighlightedChannel != -1) - { - m_cachedChart->SetChannelHighlight(m_iLastHighlightedChannel, false); - m_iLastHighlightedChannel = -1; - m_dataModel->SetHighlightedRegisterID(0); - } - } - - void ProfilerDataWidget::onMouseOverDataPoint(int channelID, AZ::u64 sampleID, float primaryAxisValue, float dependentAxisValue) - { - if (!m_cachedChart) - { - return; - } - - (void)primaryAxisValue; - - auto found = m_ChannelsToRegisters.find(channelID); - if (found == m_ChannelsToRegisters.end()) - { - return; - } - const Driller::ProfilerDrillerNewRegisterEvent* currentRegister = found->second; - - if (!currentRegister) - { - return; - } - - if (m_iLastHighlightedChannel != -1) - { - m_cachedChart->SetChannelHighlight(m_iLastHighlightedChannel, false); - m_iLastHighlightedChannel = -1; - m_dataModel->SetHighlightedRegisterID(0); - } - - m_iLastHighlightedChannel = channelID; - m_cachedChart->SetChannelHighlight(m_iLastHighlightedChannel, true); - auto foundChannel = m_ChannelsToRegisters.find(channelID); - if (foundChannel != m_ChannelsToRegisters.end()) - { - m_dataModel->SetHighlightedRegisterID(foundChannel->second->GetInfo().m_id); - } - - const Driller::ProfilerDrillerUpdateRegisterEvent* previousRegister = currentRegister->GetLastSample(); - while ((previousRegister) && (previousRegister->GetGlobalEventId() != (unsigned int)sampleID)) - { - previousRegister = previousRegister->GetPreviousSample(); - } - - if (previousRegister) - { - QString tooltip; - QString identifier = tr("%1(%2) %3") - .arg(currentRegister->GetInfo().m_function ? currentRegister->GetInfo().m_function : "???") - .arg(currentRegister->GetInfo().m_line) - .arg(currentRegister->GetInfo().m_name ? QString("'%1'").arg(currentRegister->GetInfo().m_name) : ""); - - if (previousRegister->GetRegister()->GetInfo().m_type == Profiler::RegisterInfo::PRT_TIME) - { - QString displayValue; - - switch (m_cachedColumn) - { - case PDM_INCLUSIVE_TIME: - displayValue = tr("Inclusive: %1").arg(m_formatter->formatMicroseconds(dependentAxisValue)); - break; - case PDM_EXCLUSIVE_TIME: - displayValue = tr("Exclusive: %1").arg(m_formatter->formatMicroseconds(dependentAxisValue)); - break; - case PDM_CALLS: - displayValue = tr("%1 calls").arg((int)dependentAxisValue); - break; - case PDM_ACCUMULATED_TIME: - displayValue = tr("Accumulated: %1%").arg(m_formatter->formatMicroseconds(dependentAxisValue)); - break; - case PDM_ACCUMULATED_CALLS: - displayValue = tr("%1 accumulated calls").arg((int)dependentAxisValue); - break; - } - - tooltip = QString("%1: %2").arg(identifier).arg(displayValue); - - if (QApplication::activeWindow() == this->parent()) - { - QToolTip::showText(m_cachedChart->mapToGlobal(QPoint(0, 0)), tooltip, m_cachedChart); - } - } - else - { - // value register: - } - } - } - - void ProfilerDataWidget::PlotTimeHistory(StripChart::DataStrip* chart) - { - m_ChannelsToRegisters.clear(); - - if (chart) - { - float maxVerticalValue = 0; - - chart->SetMarkerColor(QColor(255, 0, 0)); - chart->SetMarkerPosition(static_cast(m_cachedCurrentFrame)); - - chart->StartBatchDataAdd(); - - for (const Driller::ProfilerDrillerUpdateRegisterEvent* currentRegister : m_dataModel->m_profilerDrillerUpdateRegisterEvents) - { - const Driller::ProfilerDrillerUpdateRegisterEvent* previousRegister = currentRegister->GetPreviousSample(); - - if (previousRegister) - { - if (m_dataModel->m_enabledChartingMap.find(currentRegister->GetRegister()->GetInfo().m_id)->second) - { - FrameNumberType localAtFrame = m_cachedCurrentFrame; - FrameNumberType localHowFar = m_cachedDisplayRange; - - int channelID = -1; - const Driller::ProfilerDrillerNewRegisterEvent* reg = currentRegister->GetRegister(); - if (reg) - { - if ((reg->GetInfo().m_name) && (strlen(reg->GetInfo().m_name) > 0)) - { - channelID = chart->AddChannel(reg->GetInfo().m_name); - } - else if ((reg->GetInfo().m_function) && (strlen(reg->GetInfo().m_function) > 0)) - { - channelID = chart->AddChannel(tr("%1(%2)").arg(reg->GetInfo().m_function).arg(reg->GetInfo().m_line)); - } - else - { - channelID = chart->AddChannel(tr("Unknown Register:%1").arg(reg->GetInfo().m_id)); - } - - chart->SetChannelStyle(channelID, StripChart::Channel::STYLE_CONNECTED_LINE); - chart->SetChannelColor(channelID, m_dataModel->m_colorMap.find(currentRegister->GetRegister()->GetInfo().m_id)->second); - } - else - { - channelID = chart->AddChannel("NULL"); - chart->SetChannelStyle(channelID, StripChart::Channel::STYLE_CONNECTED_LINE); - chart->SetChannelColor(channelID, m_dataModel->m_colorMap.find(0)->second); - } - - // If we don't have a valid channel ID skip over. - if (!chart->IsValidChannelId(channelID)) - { - continue; - } - - m_ChannelsToRegisters[channelID] = reg; - - while (localAtFrame >= 0 && localHowFar >= 0) - { - float sample = 0.0f; - - if (m_viewType == Profiler::RegisterInfo::PRT_TIME) - { - switch (m_cachedColumn) - { - case PDM_INCLUSIVE_TIME: - sample = (float)(currentRegister->GetData().m_timeData.m_time - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_time)); - break; - case PDM_EXCLUSIVE_TIME: - sample = (float)(((currentRegister->GetData().m_timeData.m_time - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_time)) - (currentRegister->GetData().m_timeData.m_childrenTime - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_childrenTime)))); - break; - case PDM_CALLS: - sample = (float)(currentRegister->GetData().m_timeData.m_calls - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_calls)); - break; - case PDM_ACCUMULATED_TIME: - sample = (float)(currentRegister->GetData().m_timeData.m_time); - break; - case PDM_ACCUMULATED_CALLS: - sample = (float)(currentRegister->GetData().m_timeData.m_calls); - break; - } - } - else if (m_viewType == Profiler::RegisterInfo::PRT_VALUE) - { - AZ::u64 columnNumber = 0; - AZ::u64 columnDelta = 0; - - switch (m_cachedColumn) - { - case PDM_VALUE_1: - columnNumber = currentRegister->GetData().m_valueData.m_value1; - break; - case PDM_VALUE_2: - columnNumber = currentRegister->GetData().m_valueData.m_value2; - break; - case PDM_VALUE_3: - columnNumber = currentRegister->GetData().m_valueData.m_value3; - break; - case PDM_VALUE_4: - columnNumber = currentRegister->GetData().m_valueData.m_value4; - break; - case PDM_VALUE_5: - columnNumber = currentRegister->GetData().m_valueData.m_value5; - break; - case PDM_VALUE_THREAD_ID: - columnNumber = currentRegister->GetRegister()->GetInfo().m_threadId; - break; - } - if (m_cachedDeltaData) - { - switch (m_cachedColumn) - { - case PDM_VALUE_1: - columnDelta = (previousRegister == NULL ? 0 : previousRegister->GetData().m_valueData.m_value1); - break; - case PDM_VALUE_2: - columnDelta = (previousRegister == NULL ? 0 : previousRegister->GetData().m_valueData.m_value2); - break; - case PDM_VALUE_3: - columnDelta = (previousRegister == NULL ? 0 : previousRegister->GetData().m_valueData.m_value3); - break; - case PDM_VALUE_4: - columnDelta = (previousRegister == NULL ? 0 : previousRegister->GetData().m_valueData.m_value4); - break; - case PDM_VALUE_5: - columnDelta = (previousRegister == NULL ? 0 : previousRegister->GetData().m_valueData.m_value5); - break; - } - } - - sample = (float)(columnNumber - columnDelta); - } - - maxVerticalValue = AZStd::GetMax(sample, maxVerticalValue); - - chart->AddBatchedData(channelID, currentRegister->GetGlobalEventId(), (float)localAtFrame, sample); - - currentRegister = previousRegister; - if (!currentRegister) - { - break; - } - previousRegister = currentRegister->GetPreviousSample(); - - --localAtFrame; - --localHowFar; - } - } - } - } - - // Always assume 0 as the minimum - chart->SetWindowRange(Charts::AxisType::Vertical, 0, maxVerticalValue); - - // Adding one here so I can actually see the scrubber mark. - float minValue = 0.0f; - float maxValue = 0.0f; - if (chart->GetAxisRange(Charts::AxisType::Horizontal, minValue, maxValue)) - { - chart->SetWindowRange(Charts::AxisType::Horizontal, minValue, maxValue + 0.5f); - } - - chart->EndBatchDataAdd(); - } - - if (m_autoZoom) - { - chart->ZoomExtents(Charts::AxisType::Vertical); - } - else - { - chart->ZoomManual(Charts::AxisType::Vertical, m_manualZoomMin, m_manualZoomMax); - } - - } - - //------------------------------------------------------------------------ - - ProfilerDataModel::ProfilerDataModel() - { - m_SourceAggregator = NULL; - m_cachedFlatView = false; - m_highlightedRegisterID = 0; - } - - ProfilerDataModel::~ProfilerDataModel() - { - EmptyTheEventCache(); - m_colorMap.clear(); - m_iconMap.clear(); - m_enabledChartingMap.clear(); - } - - QVariant ProfilerDataModel::headerData (int section, Qt::Orientation orientation, int role) const - { - (void)orientation; - - if (role == Qt::DisplayRole) - { - return QVariant(PDM_TIME_STRING[section]); - } - - return QVariant(); - } - - QVariant ProfilerDataModel::data (const QModelIndex& index, int role) const - { - if (index.isValid() && m_SourceAggregator && m_SourceAggregator->IsValid()) - { - const Driller::ProfilerDrillerUpdateRegisterEvent* registerEvent = static_cast(index.internalPointer()); - - if (role == Qt::BackgroundRole) - { - if (m_highlightedRegisterID != 0) - { - if (registerEvent->GetRegisterId() == m_highlightedRegisterID) - { - return QVariant::fromValue(QColor(94, 94, 178, 255)); - } - } - } - // a color swatch to match register to chart, or black if not drawn to the chart - if (role == Qt::DecorationRole && index.column() == 0 /*COLOR SWATCH*/) - { - if (registerEvent->GetRegister()) - { - if (m_enabledChartingMap.find(registerEvent->GetRegister()->GetInfo().m_id) != m_enabledChartingMap.end()) - { - if (m_enabledChartingMap.find(registerEvent->GetRegister()->GetInfo().m_id)->second) - { - return QVariant(m_iconMap.find(registerEvent->GetRegister()->GetInfo().m_id)->second); - } - else - { - return QVariant(m_iconMap.find(0)->second); - } - } - else - { - return QVariant(m_iconMap.find(0)->second); - } - } - } - if (role == Qt::DisplayRole || role == PDM_NUMERIC_DATA_ROLE) - { - const Driller::ProfilerDrillerUpdateRegisterEvent* currentRegister = registerEvent; - const Driller::ProfilerDrillerUpdateRegisterEvent* previousRegister = currentRegister->GetPreviousSample(); - - if (role == Qt::DisplayRole) - { - switch (index.column()) - { - case PDM_FUNCTIONNAME: - if (currentRegister->GetRegister()) - { - AZStd::string name = AZStd::string::format("%s(%d)" - , currentRegister->GetRegister()->GetInfo().m_function ? currentRegister->GetRegister()->GetInfo().m_function : "N/A" - , currentRegister->GetRegister()->GetInfo().m_line); - return QVariant(name.c_str()); - } - else - { - return QVariant("N/A"); - } - break; - case PDM_COMMENT: - return QVariant(QString(currentRegister->GetRegister() ? currentRegister->GetRegister()->GetInfo().m_name ? currentRegister->GetRegister()->GetInfo().m_name : "" : "")); - break; - } - } - - AZ::u64 columnNumber = 0; - - switch (index.column()) - { - case PDM_INCLUSIVE_TIME: - columnNumber = currentRegister->GetData().m_timeData.m_time - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_time); - break; - case PDM_EXCLUSIVE_TIME: - columnNumber = (currentRegister->GetData().m_timeData.m_time - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_time)) - (currentRegister->GetData().m_timeData.m_childrenTime - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_childrenTime)); - break; - case PDM_INCLUSIVE_PCT: - columnNumber = currentRegister->GetData().m_timeData.m_time - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_time); - break; - case PDM_EXCLUSIVE_PCT: - columnNumber = (currentRegister->GetData().m_timeData.m_time - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_time)) - (currentRegister->GetData().m_timeData.m_childrenTime - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_childrenTime)); - break; - case PDM_CHILDREN_TIME: - columnNumber = currentRegister->GetData().m_timeData.m_childrenTime - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_childrenTime); - break; - case PDM_ACCUMULATED_TIME: - columnNumber = currentRegister->GetData().m_timeData.m_time; - break; - case PDM_CALLS: - columnNumber = currentRegister->GetData().m_timeData.m_calls - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_calls); - break; - case PDM_CHILDREN_CALLS: - columnNumber = currentRegister->GetData().m_timeData.m_childrenCalls - (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_childrenCalls); - break; - case PDM_ACCUMULATED_CALLS: - columnNumber = currentRegister->GetData().m_timeData.m_calls; - break; - case PDM_THREAD_ID: - columnNumber = currentRegister->GetRegister()->GetInfo().m_threadId; - break; - } - - if (role == Qt::DisplayRole) - { - if (index.column() == PDM_INCLUSIVE_PCT || index.column() == PDM_EXCLUSIVE_PCT) - { - float percent = (float)columnNumber / (float)m_totalTime; - return QVariant(QString::number(percent * 100.0f, 'f', 2)); - } - if (index.column() == PDM_THREAD_ID) - { - return QVariant(QString("%1").arg(columnNumber)); - } - else - { - return QVariant(QString("%L1").arg(columnNumber)); - } - } - else if (role == PDM_NUMERIC_DATA_ROLE) - { - return QVariant(columnNumber); - } - - return QVariant(); - } - } - - return QVariant(); - } - - Qt::ItemFlags ProfilerDataModel::flags (const QModelIndex& index) const - { - if (!index.isValid()) - { - return Qt::ItemFlags(); - } - - return Qt::ItemIsSelectable | Qt::ItemIsEnabled; - } - - QModelIndex ProfilerDataModel::index (int row, int column, const QModelIndex& parent) const - { - if (hasIndex(row, column, parent) && m_SourceAggregator && m_SourceAggregator->IsValid()) - { - if (m_cachedFlatView) - { - // look up the rowTh data item - return createIndex(row, column, (void*)(m_profilerDrillerUpdateRegisterEvents[row])); - } - - if (!parent.isValid()) - { - // look up the rowTh data item with no parent itself - int foundCount = 0; - DVVector::const_iterator iter = m_profilerDrillerUpdateRegisterEvents.begin(); - while (iter != m_profilerDrillerUpdateRegisterEvents.end()) - { - if ((*iter)->GetData().m_timeData.m_lastParentRegisterId == 0) - { - if (foundCount == row) - { - return createIndex(row, column, (void*)(*iter)); - } - - ++foundCount; - } - ++iter; - } - } - else - { - Driller::ProfilerDrillerUpdateRegisterEvent* registerEvent = static_cast(parent.internalPointer()); - // look up the rowTh data item with pt as a parent - int foundCount = 0; - DVVector::const_iterator iter = m_profilerDrillerUpdateRegisterEvents.begin(); - while (iter != m_profilerDrillerUpdateRegisterEvents.end()) - { - if ((*iter)->GetData().m_timeData.m_lastParentRegisterId == registerEvent->GetRegister()->GetInfo().m_id) - { - if (foundCount == row) - { - return createIndex(row, column, (void*)(*iter)); - } - ++foundCount; - } - ++iter; - } - } - } - - return QModelIndex(); - } - - QModelIndex ProfilerDataModel::parent (const QModelIndex& index) const - { - if (m_cachedFlatView) - { - return QModelIndex(); - } - if (index.isValid() && m_SourceAggregator && m_SourceAggregator->IsValid()) - { - Driller::ProfilerDrillerUpdateRegisterEvent* childItem = static_cast(index.internalPointer()); - - DVVector::const_iterator mainIter = m_profilerDrillerUpdateRegisterEvents.begin(); - while (mainIter != m_profilerDrillerUpdateRegisterEvents.end()) - { - // 0th frame the updates haven't been linked to their registers yet, that happens on 1st - // this is a guard against that - if ((*mainIter)->GetRegister()) - { - if ((*mainIter)->GetRegister()->GetInfo().m_id == childItem->GetData().m_timeData.m_lastParentRegisterId) - { - // row() should be the parent's row in it's own parent - int parentRow = 0; - DVVector::const_iterator parentIter = m_profilerDrillerUpdateRegisterEvents.begin(); - while (parentIter != m_profilerDrillerUpdateRegisterEvents.end()) - { - if ((*parentIter)->GetRegister()->GetData().m_timeData.m_lastParentRegisterId == (*mainIter)->GetData().m_timeData.m_lastParentRegisterId) - { - if (*parentIter == *mainIter) - { - return createIndex(parentRow, 0, (void*)(*mainIter)); - } - ++parentRow; - } - ++parentIter; - } - } - } - - ++mainIter; - } - } - - return QModelIndex(); - } - - int ProfilerDataModel::rowCount (const QModelIndex& parent) const - { - int foundCount = 0; - - if (m_SourceAggregator && m_SourceAggregator->IsValid()) - { - if (m_cachedFlatView && !parent.isValid()) - { - foundCount = (int)m_profilerDrillerUpdateRegisterEvents.size(); - } - else if (m_cachedFlatView) - { - foundCount = 0; - } - else if (!parent.isValid()) - { - // count data items with no parent id - DVVector::const_iterator iter = m_profilerDrillerUpdateRegisterEvents.begin(); - while (iter != m_profilerDrillerUpdateRegisterEvents.end()) - { - if ((*iter)->GetData().m_timeData.m_lastParentRegisterId == 0) - { - ++foundCount; - } - ++iter; - } - } - else - { - Driller::ProfilerDrillerUpdateRegisterEvent* registerEvent = static_cast(parent.internalPointer()); - // count data items with pt as a parent - DVVector::const_iterator iter = m_profilerDrillerUpdateRegisterEvents.begin(); - while (iter != m_profilerDrillerUpdateRegisterEvents.end()) - { - // 0th frame the updates haven't been linked to their registers yet, that happens on 1st - // this is a guard against that - if (registerEvent->GetRegister()) - { - if ((*iter)->GetData().m_timeData.m_lastParentRegisterId == registerEvent->GetRegister()->GetInfo().m_id) - { - ++foundCount; - } - } - ++iter; - } - } - } - - return foundCount; - } - - int ProfilerDataModel::columnCount (const QModelIndex& /*parent*/) const - { - return PDM_TIME_TOTAL; - } - - void ProfilerDataModel::EmptyTheEventCache() - { - m_profilerDrillerUpdateRegisterEvents.clear(); - } - void ProfilerDataModel::BeginAddRegisters() - { - beginResetModel(); - EmptyTheEventCache(); - m_totalTime = 0; - } - void ProfilerDataModel::AddRegister(const Driller::ProfilerDrillerUpdateRegisterEvent* newData) - { - if (newData->GetRegister()) - { - if (newData->GetRegister()->GetInfo().m_type == Profiler::RegisterInfo::PRT_TIME) - { - m_profilerDrillerUpdateRegisterEvents.push_back(newData); - - const Driller::ProfilerDrillerUpdateRegisterEvent* currentRegister = newData; - const Driller::ProfilerDrillerUpdateRegisterEvent* previousRegister = currentRegister->GetPreviousSample(); - - const AZ::u64 previousRegisterTime = (previousRegister == nullptr ? 0 : previousRegister->GetData().m_timeData.m_time); - const AZ::u64 registerDeltaTime = currentRegister->GetData().m_timeData.m_time - previousRegisterTime; - - const AZ::u64 previousChildTime = (previousRegister == NULL ? 0 : previousRegister->GetData().m_timeData.m_childrenTime); - const AZ::u64 childDeltaTime = currentRegister->GetData().m_timeData.m_childrenTime - previousChildTime; - - AZ::u64 t = registerDeltaTime - childDeltaTime; - m_totalTime += t; - } - } - } - - void ProfilerDataModel::EndAddRegisters() - { - Recolor(); - endResetModel(); - } - void ProfilerDataModel::SetAggregator(Driller::ProfilerDataAggregator* aggregator) - { - m_SourceAggregator = aggregator; - } - - QColor ProfilerDataModel::GetColorByIndex(int colorIdx, int maxNumColors) - { - QColor col; - float sat = .9f; - float val = .9f; - col.setHsvF((float)(colorIdx % maxNumColors) / (float(maxNumColors)), sat, val); - return col; - } - - // lazy build of a mapping between Event ID# and QColor for chart display(s) - void ProfilerDataModel::Recolor() - { - // these two numbers used to cycle broadly around the color wheel - // so that proximal entries are never too similar in hue - const int magicNumber = 32; // magic number - const int magicIncrement = 5; - - // black for disabled on the chart - if (m_colorMap.find(0) == m_colorMap.end()) - { - QPixmap pixmap(16, 16); - QPainter painter(&pixmap); - painter.setBrush(Qt::black); - painter.drawRect(0, 0, 16, 16); - QIcon itemIcon(pixmap); - m_iconMap[ 0 ] = itemIcon; - } - - DVVector::const_iterator iter = m_profilerDrillerUpdateRegisterEvents.begin(); - while (iter != m_profilerDrillerUpdateRegisterEvents.end()) - { - if ((*iter)->GetRegister()) - { - if (m_colorMap.find((*iter)->GetRegister()->GetInfo().m_id) == m_colorMap.end()) - { - // charting map and color map always in lockstep - m_enabledChartingMap[ (*iter)->GetRegister()->GetInfo().m_id ] = 1; - - QColor qc = GetColorByIndex(m_colorIndexTracker, magicNumber); - m_colorMap[ (*iter)->GetRegister()->GetInfo().m_id ] = qc; - - QPixmap pixmap(16, 16); - QPainter painter(&pixmap); - painter.setBrush(qc); - painter.drawRect(0, 0, 16, 16); - QIcon itemIcon(pixmap); - m_iconMap[ (*iter)->GetRegister()->GetInfo().m_id ] = itemIcon; - - m_colorIndexTracker += magicIncrement; - } - } - - ++iter; - } - } - - void ProfilerDataModel::SetFlatView(bool on) - { - emit layoutAboutToBeChanged(); - m_cachedFlatView = on; - emit layoutChanged(); - } - - void ProfilerDataModel::SetDeltaData(bool on) - { - emit layoutAboutToBeChanged(); - m_cachedDeltaData = on; - emit layoutChanged(); - } - - void ProfilerDataModel::SetHighlightedRegisterID(AZ::u64 regid) - { - if (m_highlightedRegisterID != regid) - { - m_highlightedRegisterID = regid; - emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1)); - } - } - - - //------------------------------------------------------------------------ - - ProfilerCounterDataModel::ProfilerCounterDataModel() - { - } - - ProfilerCounterDataModel::~ProfilerCounterDataModel() - { - } - void ProfilerCounterDataModel::AddRegister(const Driller::ProfilerDrillerUpdateRegisterEvent* newData) - { - if (newData->GetRegister()) - { - if (newData->GetRegister()->GetInfo().m_type == Profiler::RegisterInfo::PRT_VALUE) - { - m_profilerDrillerUpdateRegisterEvents.push_back(newData); - } - } - } - - QVariant ProfilerCounterDataModel::headerData (int section, Qt::Orientation orientation, int role) const - { - (void)orientation; - - if (role == Qt::DisplayRole) - { - return QVariant(PDM_VALUE_STRING[section]); - } - - return QVariant(); - } - - QVariant ProfilerCounterDataModel::data (const QModelIndex& index, int role) const - { - if (index.isValid() && m_SourceAggregator && m_SourceAggregator->IsValid()) - { - const Driller::ProfilerDrillerUpdateRegisterEvent* registerEvent = static_cast(index.internalPointer()); - - if (role == Qt::BackgroundRole) - { - if (m_highlightedRegisterID != 0) - { - if (registerEvent->GetRegisterId() == m_highlightedRegisterID) - { - return QVariant::fromValue(QColor(94, 94, 178, 255)); - } - } - } - // a color swatch to match register to chart, or black if not drawn to the chart - if (role == Qt::DecorationRole && index.column() == 0 /*COLOR SWATCH*/) - { - if (registerEvent->GetRegister()) - { - if (m_enabledChartingMap.find(registerEvent->GetRegister()->GetInfo().m_id) != m_enabledChartingMap.end()) - { - if (m_enabledChartingMap.find(registerEvent->GetRegister()->GetInfo().m_id)->second) - { - return QVariant(m_iconMap.find(registerEvent->GetRegister()->GetInfo().m_id)->second); - } - else - { - return QVariant(m_iconMap.find(0)->second); - } - } - else - { - return QVariant(m_iconMap.find(0)->second); - } - } - } - if (role == Qt::DisplayRole || role == PDM_NUMERIC_DATA_ROLE) - { - const Driller::ProfilerDrillerUpdateRegisterEvent* currentRegister = registerEvent; - const Driller::ProfilerDrillerUpdateRegisterEvent* previousRegister = currentRegister->GetPreviousSample(); - - if (role == Qt::DisplayRole) - { - switch (index.column()) - { - case PDM_FUNCTIONNAME: - if (currentRegister->GetRegister()) - { - AZStd::string name = AZStd::string::format("%s(%d)" - , currentRegister->GetRegister()->GetInfo().m_function ? currentRegister->GetRegister()->GetInfo().m_function : "N/A" - , currentRegister->GetRegister()->GetInfo().m_line); - return QVariant(name.c_str()); - } - else - { - return QVariant("N/A"); - } - break; - case PDM_COMMENT: - return QVariant(QString(currentRegister->GetRegister() ? currentRegister->GetRegister()->GetInfo().m_name ? currentRegister->GetRegister()->GetInfo().m_name : "" : "")); - break; - } - } - - AZ::u64 columnNumber = 0; - AZ::u64 columnDelta = 0; - - switch (index.column()) - { - case PDM_VALUE_1: - columnNumber = currentRegister->GetData().m_valueData.m_value1; - break; - case PDM_VALUE_2: - columnNumber = currentRegister->GetData().m_valueData.m_value2; - break; - case PDM_VALUE_3: - columnNumber = currentRegister->GetData().m_valueData.m_value3; - break; - case PDM_VALUE_4: - columnNumber = currentRegister->GetData().m_valueData.m_value4; - break; - case PDM_VALUE_5: - columnNumber = currentRegister->GetData().m_valueData.m_value5; - break; - case PDM_VALUE_THREAD_ID: - columnNumber = currentRegister->GetRegister()->GetInfo().m_threadId; - break; - } - if (m_cachedDeltaData) - { - switch (index.column()) - { - case PDM_VALUE_1: - columnDelta = (previousRegister == NULL ? 0 : previousRegister->GetData().m_valueData.m_value1); - break; - case PDM_VALUE_2: - columnDelta = (previousRegister == NULL ? 0 : previousRegister->GetData().m_valueData.m_value2); - break; - case PDM_VALUE_3: - columnDelta = (previousRegister == NULL ? 0 : previousRegister->GetData().m_valueData.m_value3); - break; - case PDM_VALUE_4: - columnDelta = (previousRegister == NULL ? 0 : previousRegister->GetData().m_valueData.m_value4); - break; - case PDM_VALUE_5: - columnDelta = (previousRegister == NULL ? 0 : previousRegister->GetData().m_valueData.m_value5); - break; - } - } - - columnNumber -= columnDelta; - - if (role == Qt::DisplayRole) - { - if (index.column() == PDM_VALUE_THREAD_ID) - { - return QVariant(QString("%1").arg(columnNumber)); - } - else - { - return QVariant(QString("%L1").arg(columnNumber)); - } - } - else if (role == PDM_NUMERIC_DATA_ROLE) - { - return QVariant(columnNumber); - } - - return QVariant(); - } - } - - return QVariant(); - } - - int ProfilerCounterDataModel::columnCount (const QModelIndex& /*parent*/) const - { - return PDM_VALUE_TOTAL; - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.hxx b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.hxx deleted file mode 100644 index 9d31204ba8..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.hxx +++ /dev/null @@ -1,199 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef PROFILER_DATA_PANEL_H -#define PROFILER_DATA_PANEL_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include - -#include -#include -#include -#include - -#include - -#include -#endif - -namespace StripChart -{ - class DataStrip; -} - -class QSortFilterProxyModel; - -#pragma once - - -namespace Driller -{ - class Aggregator; - class ProfilerDrillerUpdateRegisterEvent; - class ProfilerDataAggregator; - class ProfilerFilterModel; - class ProfilerDrillerNewRegisterEvent; - - class ProfilerDataModel : public QAbstractItemModel - { - Q_OBJECT; - - public: - - friend class ProfilerDataWidget; - - ProfilerDataModel(); - ~ProfilerDataModel(); - - virtual QVariant data ( const QModelIndex & index, int role = Qt::DisplayRole ) const; - virtual Qt::ItemFlags flags ( const QModelIndex & index ) const; - virtual QModelIndex index ( int row, int column, const QModelIndex & parent = QModelIndex() ) const; - virtual QModelIndex parent ( const QModelIndex & index ) const; - virtual int rowCount ( const QModelIndex & parent = QModelIndex() ) const; - virtual int columnCount ( const QModelIndex & parent = QModelIndex() ) const; - virtual QVariant headerData ( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const; - - void EmptyTheEventCache(); - void BeginAddRegisters(); - virtual void AddRegister( const Driller::ProfilerDrillerUpdateRegisterEvent *newData ); - void SetAggregator( Driller::ProfilerDataAggregator *aggregator ); - void EndAddRegisters(); - void Recolor(); - void SetFlatView( bool on ); - void SetDeltaData( bool on ); - - void SetHighlightedRegisterID(AZ::u64 regid); - - protected: - // the data = a tree of accumulated profiled events - // cached locally as a vector of pointers into the aggregator data block because - // the aggregator data block is a stream of different types of events - typedef AZStd::vector DVVector; // aggregator hosted pointers guaranteed to not disappear - DVVector m_profilerDrillerUpdateRegisterEvents; - Driller::ProfilerDataAggregator *m_SourceAggregator; - - QColor GetColorByIndex( int colorIdx, int maxNumColors ); - static int m_colorIndexTracker; - AZStd::map m_colorMap; - AZStd::map m_iconMap; - AZStd::map m_enabledChartingMap; - AZ::u64 m_totalTime; // used in percentage calculation - bool m_cachedFlatView; - bool m_cachedDeltaData; - AZ::u64 m_highlightedRegisterID; - QPersistentModelIndex m_LastHighlightedRegister; - }; - - class ProfilerCounterDataModel : public ProfilerDataModel - { - Q_OBJECT; - - public: - - friend class ProfilerDataWidget; - - ProfilerCounterDataModel(); - ~ProfilerCounterDataModel(); - - virtual QVariant data ( const QModelIndex & index, int role = Qt::DisplayRole ) const; - virtual int columnCount ( const QModelIndex & parent = QModelIndex() ) const; - virtual QVariant headerData ( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const; - virtual void AddRegister( const Driller::ProfilerDrillerUpdateRegisterEvent *newData ); - }; - - class ProfilerAxisFormatter : public Charts::QAbstractAxisFormatter - { - Q_OBJECT - public: - AZ_CLASS_ALLOCATOR(ProfilerAxisFormatter, AZ::SystemAllocator, 0); - ProfilerAxisFormatter(QObject *pParent, int whichTypeOfRegister); - - QString formatMicroseconds(float value); - virtual QString convertAxisValueToText(Charts::AxisType axis, float value, float minDisplayedValue, float maxDisplayedValue, float divisionSize); - - private: - float m_lastAxisValueForScaling; - int m_whatKindOfRegister; - - }; - - class ProfilerDataWidget - : public AzToolsFramework::QTreeViewWithStateSaving - { - Q_OBJECT; - public: - - friend class ProfilerDataView; - - ProfilerDataWidget( QWidget * parent = 0 ); - virtual ~ProfilerDataWidget(); - - void SetViewType(int viewType); - void BeginDataModelUpdate(); - void EndDataModelUpdate(); - void ConfigureChart( StripChart::DataStrip *chart, FrameNumberType atFrame, int howFar, FrameNumberType frameCount ); - - public slots: - void OnExpandAll(); - void OnHideSelected(); - void OnShowSelected(); - void OnInvertHidden(); - void OnHideAll(); - void OnShowAll(); - void OnChartTypeMenu(); - void OnChartTypeMenu(QString typeStr); - void OnAutoZoomChange(bool newValue); - void OnFlatView(bool); - void OnDeltaData(bool); - void ProvideData(StripChart::DataStrip*); - - protected: - - void RedrawChart(); - void PlotTimeHistory( StripChart::DataStrip *chart ); - - ProfilerDataModel *m_dataModel; - QSortFilterProxyModel* m_filterModel; - StripChart::DataStrip *m_cachedChart; - ProfilerAxisFormatter* m_formatter; - - FrameNumberType m_cachedStartFrame; - FrameNumberType m_cachedEndFrame; - FrameNumberType m_cachedCurrentFrame; - FrameNumberType m_cachedDisplayRange; - - int m_cachedColumn; - bool m_autoZoom; // do we automatically zoom extents? - float m_manualZoomMin; // if we're not automatically zooming, then we remember the prior zoom to re-apply it - float m_manualZoomMax; - bool m_cachedFlatView; - bool m_cachedDeltaData; - - int m_viewType; - - typedef AZStd::unordered_map ChannelIDToRegisterMap; - - ChannelIDToRegisterMap m_ChannelsToRegisters; - - int m_iLastHighlightedChannel; - - public slots: - void OnDoubleClicked( const QModelIndex & ); - void selectionChanged( const QItemSelection & selected, const QItemSelection & deselected ); - void onMouseOverDataPoint(int channelID, AZ::u64 sampleID,float primaryAxisValue, float dependentAxisValue); - void onMouseOverNothing(float primaryAxisValue, float dependentAxisValue); - }; - - -} - -#endif //PROFILER_DATA_PANEL_H diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.cpp deleted file mode 100644 index d8daa26b53..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.cpp +++ /dev/null @@ -1,255 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "ProfilerDataParser.h" -#include "ProfilerDataAggregator.hxx" -#include "ProfilerEvents.h" - -namespace Driller -{ - AZ::Debug::DrillerHandlerParser* ProfilerDrillerHandlerParser::OnEnterTag(AZ::u32 tagName) - { - AZ_Assert(m_data, "You must set a valid memory aggregator before we can process the data!"); - - if (tagName == AZ_CRC("NewRegister", 0xf0f2f287)) - { - m_subTag = ST_NEW_REGSTER; - m_data->AddEvent(aznew ProfilerDrillerNewRegisterEvent()); - return this; - } - else if (tagName == AZ_CRC("UpdateRegister", 0x6c00b890)) - { - m_subTag = ST_UPDATE_REGSTER; - m_data->AddEvent(aznew ProfilerDrillerUpdateRegisterEvent()); - return this; - } - else if (tagName == AZ_CRC("ThreadEnter", 0x60e4acfb)) - { - m_subTag = ST_ENTER_THREAD; - m_data->AddEvent(aznew ProfilerDrillerEnterThreadEvent()); - return this; - } - else if (tagName == AZ_CRC("OnThreadExit", 0x16042db9)) - { - m_subTag = ST_EXIT_THREAD; - m_data->AddEvent(aznew ProfilerDrillerExitThreadEvent()); - return this; - } - else if (tagName == AZ_CRC("RegisterSystem", 0x957739ef)) - { - m_subTag = ST_REGISTER_SYSTEM; - m_data->AddEvent(aznew ProfilerDrillerRegisterSystemEvent()); - return this; - } - else if (tagName == AZ_CRC("UnregisterSystem", 0xa20538e4)) - { - m_subTag = ST_UNREGISTER_SYSTEM; - m_data->AddEvent(aznew ProfilerDrillerUnregisterSystemEvent()); - return this; - } - else - { - m_subTag = ST_NONE; - } - return nullptr; - } - - void ProfilerDrillerHandlerParser::OnExitTag(DrillerHandlerParser* handler, AZ::u32 tagName) - { - (void)tagName; - if (handler != nullptr) - { - if (m_subTag != ST_NONE) - { - m_data->OnEventLoaded(m_data->GetEvents().back()); - m_subTag = ST_NONE; // we have only one level just go back to the default state - } - } - } - - void ProfilerDrillerHandlerParser::OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode) - { - AZ_Assert(m_data, "You must set a valid memory aggregator before we can process the data!"); - - switch (m_subTag) - { - case ST_NEW_REGSTER: - { - ProfilerDrillerNewRegisterEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("Id", 0xbf396750)) - { - dataNode.Read(event->m_registerInfo.m_id); - } - else if (dataNode.m_name == AZ_CRC("ThreadId", 0xd0fd9043)) - { - dataNode.Read(event->m_registerInfo.m_threadId); - } - else if (dataNode.m_name == AZ_CRC("Name", 0x5e237e06)) - { - event->m_registerInfo.m_name = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("Function", 0xcaae163d)) - { - event->m_registerInfo.m_function = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("Line", 0xd114b4f6)) - { - dataNode.Read(event->m_registerInfo.m_line); - } - else if (dataNode.m_name == AZ_CRC("SystemId", 0x0dfecf6f)) - { - dataNode.Read(event->m_registerInfo.m_systemId); - } - else if (dataNode.m_name == AZ_CRC("Type", 0x8cde5729)) - { - dataNode.Read(event->m_registerInfo.m_type); - } - else if (dataNode.m_name == AZ_CRC("Time", 0x6f949845)) - { - dataNode.Read(event->m_registerData.m_timeData.m_time); - } - else if (dataNode.m_name == AZ_CRC("ChildrenTime", 0x46162d3f)) - { - dataNode.Read(event->m_registerData.m_timeData.m_childrenTime); - } - else if (dataNode.m_name == AZ_CRC("Calls", 0xdaa35c8f)) - { - dataNode.Read(event->m_registerData.m_timeData.m_calls); - } - else if (dataNode.m_name == AZ_CRC("ChildrenCalls", 0x6a5a4618)) - { - dataNode.Read(event->m_registerData.m_timeData.m_childrenCalls); - } - else if (dataNode.m_name == AZ_CRC("ParentId", 0x856a684c)) - { - dataNode.Read(event->m_registerData.m_timeData.m_lastParentRegisterId); - } - else if (dataNode.m_name == AZ_CRC("Value1", 0xa2756c5a)) - { - dataNode.Read(event->m_registerData.m_valueData.m_value1); - } - else if (dataNode.m_name == AZ_CRC("Value2", 0x3b7c3de0)) - { - dataNode.Read(event->m_registerData.m_valueData.m_value2); - } - else if (dataNode.m_name == AZ_CRC("Value3", 0x4c7b0d76)) - { - dataNode.Read(event->m_registerData.m_valueData.m_value3); - } - else if (dataNode.m_name == AZ_CRC("Value4", 0xd21f98d5)) - { - dataNode.Read(event->m_registerData.m_valueData.m_value4); - } - else if (dataNode.m_name == AZ_CRC("Value5", 0xa518a843)) - { - dataNode.Read(event->m_registerData.m_valueData.m_value5); - } - } break; - case ST_UPDATE_REGSTER: - { - ProfilerDrillerUpdateRegisterEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("Id", 0xbf396750)) - { - dataNode.Read(event->m_registerId); - } - else if (dataNode.m_name == AZ_CRC("Time", 0x6f949845)) - { - dataNode.Read(event->m_registerData.m_timeData.m_time); - } - else if (dataNode.m_name == AZ_CRC("ChildrenTime", 0x46162d3f)) - { - dataNode.Read(event->m_registerData.m_timeData.m_childrenTime); - } - else if (dataNode.m_name == AZ_CRC("Calls", 0xdaa35c8f)) - { - dataNode.Read(event->m_registerData.m_timeData.m_calls); - } - else if (dataNode.m_name == AZ_CRC("ChildrenCalls", 0x6a5a4618)) - { - dataNode.Read(event->m_registerData.m_timeData.m_childrenCalls); - } - else if (dataNode.m_name == AZ_CRC("ParentId", 0x856a684c)) - { - dataNode.Read(event->m_registerData.m_timeData.m_lastParentRegisterId); - } - else if (dataNode.m_name == AZ_CRC("Value1", 0xa2756c5a)) - { - dataNode.Read(event->m_registerData.m_valueData.m_value1); - } - else if (dataNode.m_name == AZ_CRC("Value2", 0x3b7c3de0)) - { - dataNode.Read(event->m_registerData.m_valueData.m_value2); - } - else if (dataNode.m_name == AZ_CRC("Value3", 0x4c7b0d76)) - { - dataNode.Read(event->m_registerData.m_valueData.m_value3); - } - else if (dataNode.m_name == AZ_CRC("Value4", 0xd21f98d5)) - { - dataNode.Read(event->m_registerData.m_valueData.m_value4); - } - else if (dataNode.m_name == AZ_CRC("Value5", 0xa518a843)) - { - dataNode.Read(event->m_registerData.m_valueData.m_value5); - } - } break; - case ST_ENTER_THREAD: - { - ProfilerDrillerEnterThreadEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("Id", 0xbf396750)) - { - dataNode.Read(event->m_threadId); - } - else if (dataNode.m_name == AZ_CRC("Name", 0x5e237e06)) - { - event->m_threadName = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("CpuId", 0xdf558508)) - { - dataNode.Read(event->m_cpuId); - } - else if (dataNode.m_name == AZ_CRC("Priority", 0x62a6dc27)) - { - dataNode.Read(event->m_priority); - } - else if (dataNode.m_name == AZ_CRC("StackSize", 0x9cfaf35b)) - { - dataNode.Read(event->m_stackSize); - } - } break; - case ST_EXIT_THREAD: - { - ProfilerDrillerExitThreadEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("Id", 0xbf396750)) - { - dataNode.Read(event->m_threadId); - } - } break; - case ST_REGISTER_SYSTEM: - { - ProfilerDrillerRegisterSystemEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("Id", 0xbf396750)) - { - dataNode.Read(event->m_systemId); - } - else if (dataNode.m_name == AZ_CRC("Name", 0x5e237e06)) - { - event->m_name = dataNode.ReadPooledString(); - } - } break; - case ST_UNREGISTER_SYSTEM: - { - ProfilerDrillerUnregisterSystemEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("Id", 0xbf396750)) - { - dataNode.Read(event->m_systemId); - } - } break; - } - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.h b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.h deleted file mode 100644 index 78b7f10b55..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_PROFILER_DRILLER_PARSER_H -#define DRILLER_PROFILER_DRILLER_PARSER_H - -#include - -namespace Driller -{ - class ProfilerDataAggregator; - - class ProfilerDrillerHandlerParser - : public AZ::Debug::DrillerHandlerParser - { - public: - enum SubTags - { - ST_NONE = 0, - ST_NEW_REGSTER, - ST_UPDATE_REGSTER, - ST_ENTER_THREAD, - ST_EXIT_THREAD, - ST_REGISTER_SYSTEM, - ST_UNREGISTER_SYSTEM, - }; - - ProfilerDrillerHandlerParser() - : m_subTag(ST_NONE) - , m_data(NULL) - {} - - static AZ::u32 GetDrillerId() { return AZ_CRC("ProfilerDriller", 0x172c5268); } - - void SetAggregator(ProfilerDataAggregator* data) { m_data = data; } - - virtual AZ::Debug::DrillerHandlerParser* OnEnterTag(AZ::u32 tagName); - virtual void OnExitTag(DrillerHandlerParser* handler, AZ::u32 tagName); - virtual void OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode); - - protected: - SubTags m_subTag; - ProfilerDataAggregator* m_data; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.cpp deleted file mode 100644 index 26bcb82fea..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.cpp +++ /dev/null @@ -1,628 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "ProfilerDataView.hxx" -#include - -#include "ProfilerDataAggregator.hxx" - -#include "ProfilerEvents.h" -#include "Source/Driller/DrillerEvent.h" - -#include "Source/Driller/ChannelDataView.hxx" -#include "Source/Driller/DrillerMainWindowMessages.h" -#include "Source/Driller/Profiler/ProfilerOperationTelemetryEvent.h" - -#include -#include - -#include -#include -#include - -#include - -#include -#include - -namespace Driller -{ - static const char* menuLengthStrings[] = - { - "60 Frames", - "120 Frames", - "240 Frames", - "480 Frames", - NULL - }; - static const char* menuTypeStrings[] = - { - "Incl.Time", - "Excl.Time", - "Calls", - "Acc.Time", - "Acc.Calls", - NULL - }; - static const int menuTypeViews[] = - { - Profiler::RegisterInfo::PRT_TIME, - Profiler::RegisterInfo::PRT_TIME, - Profiler::RegisterInfo::PRT_VALUE, - Profiler::RegisterInfo::PRT_TIME, - Profiler::RegisterInfo::PRT_VALUE - }; - static const char* menuValueTypeStrings[] = - { - "Value 1", - "Value 2", - "Value 3", - "Value 4", - "Value 5", - NULL - }; - - class ProfilerDataViewLocal - : public AZ::UserSettings - { - public: - AZ_RTTI(ProfilerDataViewLocal, "{7E893482-98BC-4017-B52B-5A36D325976B}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(ProfilerDataViewLocal, AZ::SystemAllocator, 0); - - AZStd::vector m_treeColumnStorage; - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_treeColumnStorage", &ProfilerDataViewLocal::m_treeColumnStorage) - ->Version(1); - } - } - }; - - class ProfilerDataViewSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(ProfilerDataViewSavedState, "{432824F6-4078-49F6-BE9E-357EF71B8AB8}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(ProfilerDataViewSavedState, AZ::SystemAllocator, 0); - - AZStd::string m_chartLengthStr; - AZStd::string m_chartTypeStr; - AZStd::string m_threadIDStr; - AZ::u64 m_threadID; - bool m_autoZoom; - bool m_flatView; - bool m_deltaData; - AZStd::vector< AZStd::string > m_treeExpansionData; - - ProfilerDataViewSavedState() - : m_chartLengthStr(menuLengthStrings[0]) - , m_chartTypeStr(menuTypeStrings[0]) - , m_threadIDStr("All Threads") - , m_threadID(0) - , m_autoZoom(true) - , m_flatView(false) - , m_deltaData(true) - {} - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_chartLengthStr", &ProfilerDataViewSavedState::m_chartLengthStr) - ->Field("m_chartTypeStr", &ProfilerDataViewSavedState::m_chartTypeStr) - ->Field("m_threadIDStr", &ProfilerDataViewSavedState::m_threadIDStr) - ->Field("m_threadID", &ProfilerDataViewSavedState::m_threadID) - ->Field("m_flatView", &ProfilerDataViewSavedState::m_flatView) - ->Field("m_treeExpansionData", &ProfilerDataViewSavedState::m_treeExpansionData) - ->Field("m_autoZoom", &ProfilerDataViewSavedState::m_autoZoom) - ->Field("m_deltaData", &ProfilerDataViewSavedState::m_deltaData) - ->Version(10); - } - } - }; - - ProfilerDataView::ProfilerDataView(ProfilerDataAggregator* aggregator, FrameNumberType atFrame, int profilerIndex, int viewType) - : QDialog() - , m_aggregator(aggregator) - , m_frame(atFrame) - , m_chartLength(60) - , m_windowStateCRC(0) - , m_dataViewStateCRC(0) - , m_viewIndex(profilerIndex) - , m_filterThreadID(0) - , m_viewType(viewType) - , m_lifespanTelemetry("ProfilerDataView") - { - setAttribute(Qt::WA_DeleteOnClose, true); - setWindowFlags(windowFlags() | Qt::WindowMaximizeButtonHint); - - show(); - raise(); - activateWindow(); - setFocus(); - - m_gui = azcreate(Ui::ProfilerDataView, ()); - m_gui->setupUi(this); - - QByteArray fileName = m_aggregator->GetInspectionFileName().toUtf8(); - - AZStd::string treeViewStateStr = AZStd::string::format("PROFILER DATA TREE VIEW STATE %s", fileName.data()); - AZ::u32 treeViewCrc = AZ::Crc32(treeViewStateStr.c_str()); - m_gui->widgetProfilerData->InitializeTreeViewSaving(treeViewCrc); - - for (int i = 0; menuTypeStrings[i]; ++i) - { - m_chartTypeStringToViewType.insert(AZStd::make_pair(menuTypeStrings[i], menuTypeViews[i])); - } - - m_gui->widgetProfilerData->SetViewType(m_viewType); - setWindowTitle(m_aggregator->GetDialogTitle()); - - connect(m_aggregator, SIGNAL(destroyed(QObject*)), this, SLOT(OnDataDestroyed())); - - connect(m_gui->pushButton_ExpandAll, SIGNAL(clicked()), m_gui->widgetProfilerData, SLOT(OnExpandAll())); - connect(m_gui->pushButton_ExpandAll, SIGNAL(released()), this, SLOT(OnSanityCheck())); - connect(m_gui->pushButton_HideSelected, SIGNAL(clicked()), m_gui->widgetProfilerData, SLOT(OnHideSelected())); - connect(m_gui->pushButton_ShowSelected, SIGNAL(clicked()), m_gui->widgetProfilerData, SLOT(OnShowSelected())); - connect(m_gui->pushButton_InvertHidden, SIGNAL(clicked()), m_gui->widgetProfilerData, SLOT(OnInvertHidden())); - connect(m_gui->pushButton_HideAll, SIGNAL(clicked()), m_gui->widgetProfilerData, SLOT(OnHideAll())); - connect(m_gui->pushButton_ShowAll, SIGNAL(clicked()), m_gui->widgetProfilerData, SLOT(OnShowAll())); - connect(m_gui->checkBoxAutoZoom, SIGNAL(toggled(bool)), m_gui->widgetProfilerData, SLOT(OnAutoZoomChange(bool))); - connect(m_gui->checkBoxFlatView, SIGNAL(toggled(bool)), m_gui->widgetProfilerData, SLOT(OnFlatView(bool))); - connect(m_gui->checkBoxDelta, SIGNAL(toggled(bool)), m_gui->widgetProfilerData, SLOT(OnDeltaData(bool))); - - connect(m_gui->widgetDataStrip, SIGNAL(onMouseOverDataPoint(int, AZ::u64, float, float)), m_gui->widgetProfilerData, SLOT(onMouseOverDataPoint(int, AZ::u64, float, float))); - connect(m_gui->widgetDataStrip, SIGNAL(onMouseOverNothing(float, float)), m_gui->widgetProfilerData, SLOT(onMouseOverNothing(float, float))); - - m_gui->checkBoxAutoZoom->setChecked(true); - m_gui->checkBoxFlatView->setChecked(false); - - if (m_viewType == Profiler::RegisterInfo::PRT_TIME) - { - QMenu* chartTypeMenu = new QMenu(this); - - for (int i = 0; menuTypeStrings[i]; ++i) - { - chartTypeMenu->addAction(CreateChartTypeAction(menuTypeStrings[i])); - } - - m_gui->chartTypeButton->setText("Excl.Time"); - m_gui->chartTypeButton->setMenu(chartTypeMenu); - } - else if (m_viewType == Profiler::RegisterInfo::PRT_VALUE) - { - QMenu* chartTypeMenu = new QMenu(this); - - for (int i = 0; menuValueTypeStrings[i]; ++i) - { - chartTypeMenu->addAction(CreateChartTypeAction(menuValueTypeStrings[i])); - } - - m_gui->chartTypeButton->setText("Value 1"); - m_gui->chartTypeButton->setMenu(chartTypeMenu); - } - - QMenu* chartLengthMenu = new QMenu(this); - - for (int i = 0; menuLengthStrings[i]; ++i) - { - chartLengthMenu->addAction(CreateChartLengthAction(menuLengthStrings[i])); - } - - connect(m_gui->threadSelectorButton, SIGNAL(clicked()), this, SLOT(OnThreadSelectorButtonClick())); - - m_gui->chartLengthButton->setText("60 Frames"); - m_gui->chartLengthButton->setMenu(chartLengthMenu); - - m_aggregatorIdentityCached = m_aggregator->GetIdentity(); - DrillerMainWindowMessages::Handler::BusConnect(m_aggregatorIdentityCached); - DrillerEventWindowMessages::Handler::BusConnect(m_aggregatorIdentityCached); - - m_gui->widgetDataStrip->AddAxis("Frame", 0.0f, 1.0f, false); - m_gui->widgetDataStrip->AddAxis("", -1.0f, 1.0f, true); - - SetFrameNumber(); - - AZStd::string windowStateStr = AZStd::string::format("PROFILER DATA VIEW WINDOW STATE %i", m_viewIndex); - m_windowStateCRC = AZ::Crc32(windowStateStr.c_str()); - AZStd::intrusive_ptr windowState = AZ::UserSettings::Find(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - if (windowState) - { - windowState->RestoreGeometry(this); - } - - AZStd::string treeStateStr = AZStd::string::format("PROFILER DATA VIEW LOCAL STATE %i", m_viewIndex); - m_treeStateCRC = AZ::Crc32(treeStateStr.c_str()); - auto treeState = AZ::UserSettings::Find(m_treeStateCRC, AZ::UserSettings::CT_GLOBAL); - if (treeState) - { - QByteArray treeData((const char*)treeState->m_treeColumnStorage.data(), (int)treeState->m_treeColumnStorage.size()); - m_gui->widgetProfilerData->header()->restoreState(treeData); - } - - AZStd::string dataViewStateStr = AZStd::string::format("PROFILER DATA VIEW STATE %i", m_viewIndex); - m_dataViewStateCRC = AZ::Crc32(dataViewStateStr.c_str()); - m_persistentState = AZ::UserSettings::CreateFind(m_dataViewStateCRC, AZ::UserSettings::CT_GLOBAL); - ApplyPersistentState(); - } - - ProfilerDataView::~ProfilerDataView() - { - SaveOnExit(); - azdestroy(m_gui); - } - - QAction* ProfilerDataView::CreateChartTypeAction(QString qs) - { - QAction* act = new QAction(qs, this); - act->setObjectName(qs); - connect(act, SIGNAL(triggered()), this, SLOT(OnChartTypeMenu())); - connect(act, SIGNAL(triggered()), m_gui->widgetProfilerData, SLOT(OnChartTypeMenu())); - return act; - } - - QAction* ProfilerDataView::CreateChartLengthAction(QString qs) - { - QAction* act = new QAction(qs, this); - act->setObjectName(qs); - connect(act, SIGNAL(triggered()), this, SLOT(OnChartLengthMenu())); - return act; - } - - QAction* ProfilerDataView::CreateThreadSelectorAction(QString qs, AZ::u64 id) - { - QAction* act = new QAction(qs, this); - act->setObjectName(qs); - act->setData(id); - connect(act, SIGNAL(triggered()), this, SLOT(OnThreadSelectorMenu())); - return act; - } - - void ProfilerDataView::OnThreadSelectorButtonClick() - { - QMenu* threadIDMenu = new QMenu(this); - threadIDMenu->addAction(CreateThreadSelectorAction("All Threads", 0)); - - for (auto iter = m_aggregator->m_lifeTimeThreads.begin(); iter != m_aggregator->m_lifeTimeThreads.end(); ++iter) - { - auto threadID = iter->first; - threadIDMenu->addAction(CreateThreadSelectorAction(QString("Thread = %1").arg(threadID), threadID)); - } - - threadIDMenu->exec(QCursor::pos()); - delete threadIDMenu; - } - - void ProfilerDataView::OnSanityCheck() - { - AZ_TracePrintf("ProfilerDataView", "Released"); - } - - void ProfilerDataView::ApplyPersistentState() - { - if (m_persistentState) - { - // the bridge between our AZStd::string storage and QT's own string type - QString lengthMenuText(m_persistentState->m_chartLengthStr.c_str()); - OnChartLengthMenu(lengthMenuText); - - QString typeMenuText(m_persistentState->m_chartTypeStr.c_str()); - if (IsStringCompatibleWithType(m_persistentState->m_chartTypeStr)) - { - OnChartTypeMenu(typeMenuText); - } - - QString threadMenuText(m_persistentState->m_threadIDStr.c_str()); - OnThreadSelectorMenu(threadMenuText, m_persistentState->m_threadID); - - m_gui->checkBoxAutoZoom->setChecked(m_persistentState->m_autoZoom); - m_gui->checkBoxFlatView->setChecked(m_persistentState->m_flatView); - m_gui->checkBoxDelta->setChecked(m_persistentState->m_deltaData); - m_gui->widgetProfilerData->OnAutoZoomChange(m_persistentState->m_autoZoom); - m_gui->widgetProfilerData->OnFlatView(m_persistentState->m_flatView); - m_gui->widgetProfilerData->OnDeltaData(m_persistentState->m_deltaData); - - QSet qSetQString; - AZStd::vector< AZStd::string >::iterator iter = m_persistentState->m_treeExpansionData.begin(); - while (iter != m_persistentState->m_treeExpansionData.end()) - { - qSetQString.insert(QString(iter->c_str())); - ++iter; - } - - m_gui->widgetProfilerData->ReadTreeViewStateFrom(qSetQString); - } - } - - bool ProfilerDataView::IsStringCompatibleWithType(AZStd::string candidateStr) - { - if (m_viewType == Profiler::RegisterInfo::PRT_TIME) - { - for (int i = 0; menuTypeStrings[i]; ++i) - { - if (candidateStr == menuTypeStrings[i]) - { - return true; - } - } - } - if (m_viewType == Profiler::RegisterInfo::PRT_VALUE) - { - for (int i = 0; menuValueTypeStrings[i]; ++i) - { - if (candidateStr == menuValueTypeStrings[i]) - { - return true; - } - } - } - - return false; - } - - void ProfilerDataView::OnChartTypeMenu() - { - QAction* qa = qobject_cast(sender()); - if (qa) - { - OnChartTypeMenu(qa->objectName()); - } - } - - void ProfilerDataView::OnChartTypeMenu(QString menuText) - { - m_gui->chartTypeButton->setText(menuText); - m_gui->widgetProfilerData->OnChartTypeMenu(menuText); - } - - void ProfilerDataView::OnChartLengthMenu() - { - QAction* qa = qobject_cast(sender()); - if (qa) - { - OnChartLengthMenu(qa->objectName()); - } - } - - void ProfilerDataView::OnChartLengthMenu(QString fromMenu) - { - ProfilerOperationTelemetryEvent chartLengthChange; - chartLengthChange.SetAttribute("ChartLength", fromMenu.toStdString().c_str()); - chartLengthChange.Log(); - - m_gui->chartLengthButton->setText(fromMenu); - - if (fromMenu == "60 Frames") - { - m_chartLength = 60; - } - if (fromMenu == "120 Frames") - { - m_chartLength = 120; - } - if (fromMenu == "240 Frames") - { - m_chartLength = 240; - } - if (fromMenu == "480 Frames") - { - m_chartLength = 480; - } - - SetFrameNumber(); - } - - void ProfilerDataView::OnThreadSelectorMenu() - { - QAction* qa = qobject_cast(sender()); - if (qa) - { - OnThreadSelectorMenu(qa->objectName(), qa->data().toULongLong()); - } - } - - void ProfilerDataView::OnThreadSelectorMenu(QString fromMenu, AZ::u64 id) - { - const char* k_changeThreadFilter = "ThreadFilter"; - - ProfilerOperationTelemetryEvent threadSelector; - - m_gui->threadSelectorButton->setText(fromMenu); - m_persistentState->m_threadIDStr = fromMenu.toUtf8().data(); - m_persistentState->m_threadID = id; - - if (id == 0) - { - threadSelector.SetAttribute(k_changeThreadFilter, "All Threads"); - m_filterThreadID = 0; - } - else - { - threadSelector.SetAttribute(k_changeThreadFilter, m_persistentState->m_threadIDStr); - m_filterThreadID = id; - } - - threadSelector.Log(); - - // force a new data set - SetFrameNumber(); - } - - void ProfilerDataView::SaveOnExit() - { - auto treeState = AZ::UserSettings::CreateFind(m_treeStateCRC, AZ::UserSettings::CT_GLOBAL); - if (treeState) - { - if (m_gui->widgetProfilerData && m_gui->widgetProfilerData->header()) - { - QByteArray qba = m_gui->widgetProfilerData->header()->saveState(); - treeState->m_treeColumnStorage.assign((AZ::u8*)qba.begin(), (AZ::u8*)qba.end()); - } - } - - auto pState = AZ::UserSettings::CreateFind(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - if (m_persistentState) - { - if ( - m_gui->chartLengthButton - && m_gui->chartTypeButton - && m_gui->threadSelectorButton - && m_gui->checkBoxAutoZoom - && m_gui->checkBoxDelta - && m_gui->widgetProfilerData - && m_gui->widgetProfilerData->IsTreeViewSavingReady() - ) - { - pState->CaptureGeometry(this); - m_persistentState->m_chartLengthStr = m_gui->chartLengthButton->text().toUtf8().data(); - m_persistentState->m_chartTypeStr = m_gui->chartTypeButton->text().toUtf8().data(); - m_persistentState->m_threadIDStr = m_gui->threadSelectorButton->text().toUtf8().data(); - m_persistentState->m_autoZoom = (int)m_gui->checkBoxAutoZoom->isChecked(); - m_persistentState->m_flatView = (int)m_gui->checkBoxFlatView->isChecked(); - m_persistentState->m_deltaData = (int)m_gui->checkBoxDelta->isChecked(); - - m_persistentState->m_treeExpansionData.clear(); - QSet qSetQString; - m_gui->widgetProfilerData->WriteTreeViewStateTo(qSetQString); - QSet::iterator iter = qSetQString.begin(); - for (auto iterStrings = qSetQString.begin(); iterStrings != qSetQString.end(); ++iterStrings) - { - m_persistentState->m_treeExpansionData.push_back(iterStrings->toUtf8().data()); - } - } - } - } - void ProfilerDataView::hideEvent(QHideEvent* evt) - { - QDialog::hideEvent(evt); - } - void ProfilerDataView::closeEvent(QCloseEvent* evt) - { - DrillerEventWindowMessages::Handler::BusDisconnect(m_aggregatorIdentityCached); - DrillerMainWindowMessages::Handler::BusDisconnect(m_aggregatorIdentityCached); - QDialog::closeEvent(evt); - } - void ProfilerDataView::OnDataDestroyed() - { - deleteLater(); - } - - void ProfilerDataView::FrameChanged(FrameNumberType frame) - { - m_frame = frame; - SetFrameNumber(); - } - - void ProfilerDataView::SetFrameNumber() - { - size_t numEvents = m_aggregator->NumOfEventsAtFrame(m_frame); - - m_aggregator->FrameChanged(m_frame); - - m_gui->widgetProfilerData->BeginDataModelUpdate(); - - if (numEvents) - { - m_gui->widgetProfilerData->m_dataModel->SetAggregator(m_aggregator); - - for (EventNumberType eventIndex = m_aggregator->m_frameToEventIndex[m_frame]; eventIndex < static_cast(m_aggregator->m_frameToEventIndex[m_frame] + numEvents); ++eventIndex) - { - Driller::DrillerEvent* dep = m_aggregator->GetEvents()[ eventIndex ]; - if (dep->GetEventType() == Driller::Profiler::PET_UPDATE_REGISTER) - { - Driller::ProfilerDrillerUpdateRegisterEvent* regEvt = static_cast(dep); - - if (regEvt->GetRegister()) - { - if (m_filterThreadID == 0 || regEvt->GetRegister()->GetInfo().m_threadId == m_filterThreadID) - { - m_gui->widgetProfilerData->m_dataModel->AddRegister(regEvt); - } - } - } - } - - m_gui->widgetProfilerData->EndDataModelUpdate(); - - // build the chart - // this data view responsible for length of history setting and deciding what kind of data is displayed - // that data panel, which owns the data model, responsible for each register on/off and charting - m_gui->widgetProfilerData->ConfigureChart(m_gui->widgetDataStrip, m_frame, m_chartLength, static_cast(m_aggregator->GetFrameCount())); // magic number 60 = frame count to go back in time - } - } - - - void ProfilerDataView::ApplySettingsFromWorkspace(WorkspaceSettingsProvider* provider) - { - AZStd::string workspaceStateStr = AZStd::string::format("PROFILER DATA VIEW WORKSPACE STATE %i", m_viewIndex); - AZ::u32 workspaceStateCRC = AZ::Crc32(workspaceStateStr.c_str()); - - if (m_persistentState) - { - ProfilerDataViewSavedState* workspace = provider->FindSetting(workspaceStateCRC); - if (workspace) - { - m_persistentState->m_chartLengthStr = workspace->m_chartLengthStr; - m_persistentState->m_chartTypeStr = workspace->m_chartTypeStr; - m_persistentState->m_threadIDStr = workspace->m_threadIDStr; - m_persistentState->m_threadID = workspace->m_threadID; - m_persistentState->m_flatView = workspace->m_flatView; - m_persistentState->m_autoZoom = workspace->m_autoZoom; - m_persistentState->m_deltaData = workspace->m_deltaData; - m_persistentState->m_treeExpansionData = workspace->m_treeExpansionData; - } - } - } - - void ProfilerDataView::ActivateWorkspaceSettings(WorkspaceSettingsProvider*) - { - ApplyPersistentState(); - } - - void ProfilerDataView::SaveSettingsToWorkspace(WorkspaceSettingsProvider* provider) - { - AZStd::string workspaceStateStr = AZStd::string::format("PROFILER DATA VIEW WORKSPACE STATE %i", m_viewIndex); - AZ::u32 workspaceStateCRC = AZ::Crc32(workspaceStateStr.c_str()); - - if (m_persistentState) - { - ProfilerDataViewSavedState* workspace = provider->CreateSetting(workspaceStateCRC); - if (workspace) - { - workspace->m_chartLengthStr = m_persistentState->m_chartLengthStr; - workspace->m_chartTypeStr = m_persistentState->m_chartTypeStr; - workspace->m_threadIDStr = m_persistentState->m_threadIDStr; - workspace->m_threadID = m_persistentState->m_threadID; - workspace->m_flatView = m_persistentState->m_flatView; - workspace->m_autoZoom = m_persistentState->m_autoZoom; - workspace->m_deltaData = m_persistentState->m_deltaData; - workspace->m_treeExpansionData = m_persistentState->m_treeExpansionData; - } - } - } - - void ProfilerDataView::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - ProfilerDataViewSavedState::Reflect(context); - ProfilerDataViewLocal::Reflect(context); - - // Driller doesn't use AzToolsFramework directly, so we have to initialize the serialization for the QTreeViewStateSaver - AzToolsFramework::QTreeViewWithStateSaving::Reflect(context); - } - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.hxx b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.hxx deleted file mode 100644 index 44ca07617c..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.hxx +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef PROFILERDATAVIEW_H -#define PROFILERDATAVIEW_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include - -#include "Source/Driller/DrillerMainWindowMessages.h" -#include "Source/Driller/DrillerOperationTelemetryEvent.h" - -#include -#include - -#include "Source/Driller/DrillerDataTypes.h" -#endif - -namespace Ui -{ - class ProfilerDataView; -} - -namespace AZ { class ReflectContext; } - -namespace Driller -{ - class ProfilerDataAggregator; - class ProfilerDataViewSavedState; - - class ProfilerDataView - : public QDialog - , public Driller::DrillerMainWindowMessages::Bus::Handler - , public Driller::DrillerEventWindowMessages::Bus::Handler - { - Q_OBJECT - public: - AZ_CLASS_ALLOCATOR(ProfilerDataView,AZ::SystemAllocator,0); - ProfilerDataView( ProfilerDataAggregator *aggregator, FrameNumberType atFrame, int profilerIndex, int viewType ); - virtual ~ProfilerDataView(void); - - void SetFrameNumber(); - // called after loading user settings or applying workspace settings on top of local user settings - int GetViewType() { return m_viewType; } - - // MainWindow Bus Commands - void FrameChanged(FrameNumberType frame) override; - void EventFocusChanged(EventNumberType /*eventIndex*/ ) override { }; - void EventChanged(EventNumberType /*eventIndex*/) override {} - - // NB: These three methods mimic the workspace bus. - // Because the ProfilerDataAggregator can't know to open these DataView windows - // until after the EBUS message has gone out, the owning aggregator must - // first create these windows and then pass along the provider manually - void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*); - void ActivateWorkspaceSettings(WorkspaceSettingsProvider*); - void SaveSettingsToWorkspace(WorkspaceSettingsProvider*); - void ApplyPersistentState(); - - void SaveOnExit(); - virtual void closeEvent(QCloseEvent *evt); - virtual void hideEvent(QHideEvent *evt); - - ProfilerDataAggregator *m_aggregator; - // persistent state is used as if they were internal variables, - // though they reside in a storage class - // this lasts for the entire lifetime of this object - AZStd::intrusive_ptr m_persistentState; - - FrameNumberType m_frame; - int m_aggregatorIdentityCached; - AZ::u32 m_windowStateCRC; - AZ::u32 m_dataViewStateCRC; - int m_viewIndex; - QMenu *m_threadIDMenu; - AZ::u64 m_filterThreadID; - int m_viewType; - AZ::u32 m_treeStateCRC; - AZStd::unordered_map m_chartTypeStringToViewType; - - public: - - QAction *CreateChartTypeAction( QString qs ); - QAction *CreateChartLengthAction( QString qs ); - QAction *CreateThreadSelectorAction( QString qs, AZ::u64 id ); - void ClearThreadSelectorActions(); - bool IsStringCompatibleWithType(AZStd::string candidateStr); - - int m_chartLength; - - - public: - static void Reflect(AZ::ReflectContext* context); - - public slots: - void OnDataDestroyed(); - void OnChartTypeMenu(); - void OnChartTypeMenu( QString fromMenu ); - void OnChartLengthMenu(); - void OnChartLengthMenu( QString fromMenu ); - void OnThreadSelectorMenu(); - void OnThreadSelectorMenu( QString fromMenu, AZ::u64 id ); - void OnThreadSelectorButtonClick(); - void OnSanityCheck(); - - private: - DrillerWindowLifepsanTelemetry m_lifespanTelemetry; - Ui::ProfilerDataView* m_gui; - }; - -} - - -#endif // PROFILERDATAVIEW_H diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.ui b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.ui deleted file mode 100644 index e4b6b3e229..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.ui +++ /dev/null @@ -1,490 +0,0 @@ - - - ProfilerDataView - - - - 0 - 0 - 1075 - 320 - - - - Profiler Data View - - - - 4 - - - 4 - - - 4 - - - 4 - - - - - - - - 0 - 1 - - - - - 0 - 128 - - - - - - - - - 0 - 32 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 2 - - - 1 - - - 1 - - - 1 - - - 1 - - - - - - 0 - 0 - - - - - 85 - 0 - - - - Qt::NoFocus - - - Hides the selected rows in the tree - - - Hide Selected - - - - - - - - 0 - 0 - - - - - 85 - 0 - - - - Qt::NoFocus - - - Shows the selected rows in the tree - - - Show Selected - - - - - - - - 0 - 0 - - - - - 85 - 0 - - - - Qt::NoFocus - - - Hides all rows in the tree - - - Hide All - - - - - - - - 0 - 0 - - - - - 85 - 0 - - - - Qt::NoFocus - - - Shows all rows in the tree - - - Show All - - - - - - - - 0 - 0 - - - - - 85 - 0 - - - - Qt::NoFocus - - - Inverts what is showing and hiding in the tree - - - Invert - - - - - - - - 0 - 0 - - - - - 85 - 0 - - - - Qt::NoFocus - - - Expands all rows in the tree - - - Expand Tree - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 25 - 20 - - - - - - - - - 0 - 0 - - - - - 85 - 0 - - - - Qt::NoFocus - - - What threads are being displayed in the graph/tree - - - All Threads - - - - - - - - 0 - 0 - - - - - 85 - 0 - - - - Qt::NoFocus - - - What information is being graphed - - - Excl.Time - - - - - - - - 0 - 0 - - - - - 85 - 0 - - - - Qt::NoFocus - - - How many history frames the graph displays - - - 60 Frames - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 5 - 20 - - - - - - - - - 48 - 16777215 - - - - Delta - - - true - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - Autozoom - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 64 - 16777215 - - - - Flattens the tree structure - - - Flat View - - - - - - - Qt::Horizontal - - - - 0 - 0 - - - - - - - - - - - - 0 - 2 - - - - - 224 - 128 - - - - true - - - QAbstractItemView::ExtendedSelection - - - Qt::ElideMiddle - - - true - - - true - - - false - - - false - - - 128 - - - 64 - - - - - - - - - - StripChart::DataStrip - QWidget -
../StripChart.hxx
- 1 -
- - Driller::ProfilerDataWidget - QTreeView -
ProfilerDataPanel.hxx
- 1 -
-
- - -
diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.cpp deleted file mode 100644 index aa1ad4ae89..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.cpp +++ /dev/null @@ -1,168 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "ProfilerEvents.h" - -#include "ProfilerDataAggregator.hxx" - -namespace Driller -{ - //========================================================================= - // ProfilerDrillerUpdateRegisterEvent::StepForward - // [6/3/2013] - //========================================================================= - void ProfilerDrillerUpdateRegisterEvent::StepForward(Aggregator* data) - { - ProfilerDataAggregator* aggr = static_cast(data); - - ProfilerDataAggregator::RegisterMapType::iterator it = aggr->m_registers.find(m_registerId); - if (it != aggr->m_registers.end()) - { - m_register = it->second; - m_previousSample = m_register->m_lastUpdate; - m_register->m_lastUpdate = this; - } - } - - //========================================================================= - // ProfilerDrillerUpdateRegisterEvent::PreProcess - //========================================================================= - void ProfilerDrillerUpdateRegisterEvent::PreComputeForward(ProfilerDrillerNewRegisterEvent* newEvt) - { - m_register = newEvt; - m_previousSample = m_register->m_lastPrecomputed; - m_register->m_lastPrecomputed = this; - } - - //========================================================================= - // ProfilerDrillerUpdateRegisterEvent::StepBackward - // [6/3/2013] - //========================================================================= - void ProfilerDrillerUpdateRegisterEvent::StepBackward(Aggregator* data) - { - (void)data; - - if (m_register) - { - m_register->m_lastUpdate = m_previousSample; - } - } - - //========================================================================= - // ProfilerDrillerNewRegisterEvent::StepForward - // [6/3/2013] - //========================================================================= - void ProfilerDrillerNewRegisterEvent::StepForward(Aggregator* data) - { - ProfilerDataAggregator* aggr = static_cast(data); - aggr->m_registers.insert(AZStd::make_pair(m_registerInfo.m_id, this)); - } - - //========================================================================= - // ProfilerDrillerNewRegisterEvent::StepBackward - // [6/3/2013] - //========================================================================= - void ProfilerDrillerNewRegisterEvent::StepBackward(Aggregator* data) - { - ProfilerDataAggregator* aggr = static_cast(data); - // NOTE: we can store the iterator in this register class, this way we can avoid this search - // as of now search should be fast (at least as fast as insert) plus I am avoiding including "ProfilerDataAggregator.hxx" - // into the header file. - aggr->m_registers.erase(m_registerInfo.m_id); - } - - //========================================================================= - // ProfilerDrillerEnterThreadEvent::StepForward - // [6/3/2013] - //========================================================================= - void ProfilerDrillerEnterThreadEvent::StepForward(Aggregator* data) - { - ProfilerDataAggregator* aggr = static_cast(data); - aggr->m_threads.insert(AZStd::make_pair(m_threadId, this)); - } - - //========================================================================= - // ProfilerDrillerEnterThreadEvent::StepBackward - // [6/3/2013] - //========================================================================= - void ProfilerDrillerEnterThreadEvent::StepBackward(Aggregator* data) - { - ProfilerDataAggregator* aggr = static_cast(data); - // NOTE: we can store the iterator in this register class, this way we can avoid this search - // as of now search should be fast (at least as fast as insert) plus I am avoiding including "ProfilerDataAggregator.hxx" - // into the header file. - aggr->m_threads.erase(m_threadId); - } - - //========================================================================= - // ProfilerDrillerExitThreadEvent::StepForward - // [6/3/2013] - //========================================================================= - void ProfilerDrillerExitThreadEvent::StepForward(Aggregator* data) - { - ProfilerDataAggregator* aggr = static_cast(data); - ProfilerDataAggregator::ThreadMapType::iterator it = aggr->m_threads.find(m_threadId); - m_threadData = it->second; - aggr->m_threads.erase(it); - } - - //========================================================================= - // ProfilerDrillerEnterThreadEvent::StepBackward - // [6/3/2013] - //========================================================================= - void ProfilerDrillerExitThreadEvent::StepBackward(Aggregator* data) - { - ProfilerDataAggregator* aggr = static_cast(data); - aggr->m_threads.insert(AZStd::make_pair(m_threadId, m_threadData)); - } - - //========================================================================= - // ProfilerDrillerRegisterSystemEvent::StepForward - // [6/3/2013] - //========================================================================= - void ProfilerDrillerRegisterSystemEvent::StepForward(Aggregator* data) - { - ProfilerDataAggregator* aggr = static_cast(data); - aggr->m_systems.insert(AZStd::make_pair(m_systemId, this)); - } - - //========================================================================= - // ProfilerDrillerEnterThreadEvent::StepBackward - // [6/3/2013] - //========================================================================= - void ProfilerDrillerRegisterSystemEvent::StepBackward(Aggregator* data) - { - ProfilerDataAggregator* aggr = static_cast(data); - // NOTE: we can store the iterator in this register class, this way we can avoid this search - // as of now search should be fast (at least as fast as insert) plus I am avoiding including "ProfilerDataAggregator.hxx" - // into the header file. - aggr->m_threads.erase(m_systemId); - } - - //========================================================================= - // ProfilerDrillerUnregisterSystemEvent::StepForward - // [6/3/2013] - //========================================================================= - void ProfilerDrillerUnregisterSystemEvent::StepForward(Aggregator* data) - { - ProfilerDataAggregator* aggr = static_cast(data); - ProfilerDataAggregator::SystemMapType::iterator it = aggr->m_systems.find(m_systemId); - m_systemData = it->second; - aggr->m_systems.erase(it); - } - - //========================================================================= - // ProfilerDrillerUnregisterSystemEvent::StepBackward - // [6/3/2013] - //========================================================================= - void ProfilerDrillerUnregisterSystemEvent::StepBackward(Aggregator* data) - { - ProfilerDataAggregator* aggr = static_cast(data); - aggr->m_systems.insert(AZStd::make_pair(m_systemId, m_systemData)); - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.h b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.h deleted file mode 100644 index 7963a080b8..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.h +++ /dev/null @@ -1,237 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_PROFILER_EVENTS_H -#define DRILLER_PROFILER_EVENTS_H - -#include "Source/Driller/DrillerEvent.h" -#include - -namespace Driller -{ - namespace Profiler - { - /// Time register data. - struct TimeData - { - AZ::u64 m_time; ///< Total inclusive time current and children in microseconds. - AZ::u64 m_childrenTime; ///< Time taken by child profilers in microseconds. - AZ::s64 m_calls; ///< Number of calls for this register. - AZ::s64 m_childrenCalls;///< Number of children calls. - AZ::u64 m_lastParentRegisterId; ///< Id of the last parent register. - }; - - /// Value register data. - struct ValuesData - { - AZ::s64 m_value1; - AZ::s64 m_value2; - AZ::s64 m_value3; - AZ::s64 m_value4; - AZ::s64 m_value5; - }; - - /// Data that will change every frame (technically only when registers are called) - struct RegisterData - { - RegisterData() - { - m_valueData.m_value1 = 0; - m_valueData.m_value2 = 0; - m_valueData.m_value3 = 0; - m_valueData.m_value4 = 0; - m_valueData.m_value5 = 0; - } - - union - { - TimeData m_timeData; - ValuesData m_valueData; - }; - }; - - /// Data that never changes - struct RegisterInfo - { - RegisterInfo() - : m_id(0) - , m_threadId(0) - , m_name(nullptr) - , m_function(nullptr) - , m_line(-1) - , m_systemId(0) - {} - - enum Type - { - PRT_TIME = 0, ///< Time register - RegisterData::m_time data is used. - PRT_VALUE, ///< Value register - RegisterData::m_values data is used. - }; - - unsigned char m_type; ///< Register type (time or values) - AZ::u64 m_id; ///< Register id (technically the pointer during execution). - AZ::u64 m_threadId; ///< Native thread handle (AZStd::native_thread_id_type) typically a pointer too. - const char* m_name; ///< Name/description of the register it's optional for time registers. - const char* m_function; ///< Name of the function which we are sampling. - int m_line; ///< Line in the code where this register is created (start sampling). - AZ::u32 m_systemId; ///< Crc32 of the system name provided by the user. - }; - - enum ProfilerEventType - { - PET_NEW_REGISTER = 0, - PET_UPDATE_REGISTER, - PET_ENTER_THREAD, - PET_EXIT_THREAD, - PET_REGISTER_SYSTEM, - PET_UNREGISTER_SYSTEM, - }; - } - - class ProfilerDrillerNewRegisterEvent; - class ProfilerDataAggregator; - - class ProfilerDrillerUpdateRegisterEvent - : public DrillerEvent - { - friend class ProfilerDrillerNewRegisterEvent; - friend class ProfilerDrillerHandlerParser; - public: - AZ_CLASS_ALLOCATOR(ProfilerDrillerUpdateRegisterEvent, AZ::SystemAllocator, 0) - - ProfilerDrillerUpdateRegisterEvent() - : DrillerEvent(Profiler::PET_UPDATE_REGISTER) - , m_register(nullptr) - , m_previousSample(nullptr) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - void PreComputeForward(ProfilerDrillerNewRegisterEvent* newEvt); - - const Profiler::RegisterData& GetData() const { return m_registerData; } - const ProfilerDrillerNewRegisterEvent* GetRegister() const { return m_register; } - const ProfilerDrillerUpdateRegisterEvent* GetPreviousSample() const { return m_previousSample; } - const AZ::u64 GetRegisterId() const { return m_registerId; } - - private: - AZ::u64 m_registerId; ///< Id if the register. - Profiler::RegisterData m_registerData; ///< Register sample data. - ProfilerDrillerNewRegisterEvent* m_register; ///< Cached pointer to the register. - ProfilerDrillerUpdateRegisterEvent* m_previousSample; ///< Pointer to the previous register values (null if this is the first sample). - }; - - class ProfilerDrillerNewRegisterEvent - : public DrillerEvent - { - friend class ProfilerDrillerUpdateRegisterEvent; - friend class ProfilerDrillerHandlerParser; - public: - AZ_CLASS_ALLOCATOR(ProfilerDrillerNewRegisterEvent, AZ::SystemAllocator, 0) - - ProfilerDrillerNewRegisterEvent() - : DrillerEvent(Profiler::PET_NEW_REGISTER) - , m_lastUpdate(nullptr) - , m_lastPrecomputed(nullptr) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - const Profiler::RegisterData& GetData() const { return m_lastUpdate ? m_lastUpdate->m_registerData : m_registerData; } - const Profiler::RegisterInfo& GetInfo() const { return m_registerInfo; } - const ProfilerDrillerUpdateRegisterEvent* GetLastSample() const { return m_lastUpdate; } - - private: - Profiler::RegisterInfo m_registerInfo; ///< Register information. - Profiler::RegisterData m_registerData; ///< Register sample data. - - // m_lastUpdate is actually also the current scrubber frame for that register. - ProfilerDrillerUpdateRegisterEvent* m_lastUpdate; ///< Pointer to the last set of RegisterData (null if there is not last set) - - // because we precompute a small number of registers in order to show the note track in the main view, we need - // a seperate pointer to the prior precomputed data. - ProfilerDrillerUpdateRegisterEvent* m_lastPrecomputed; - }; - - class ProfilerDrillerEnterThreadEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(ProfilerDrillerEnterThreadEvent, AZ::SystemAllocator, 0) - - ProfilerDrillerEnterThreadEvent() - : DrillerEvent(Profiler::PET_ENTER_THREAD) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - AZ::u64 m_threadId; - const char* m_threadName; ///< Debug name of thread if one is provided. - AZ::s32 m_cpuId; ///< If of the CPU where this thread should run. - AZ::s32 m_priority; - AZ::u32 m_stackSize; - }; - - class ProfilerDrillerExitThreadEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(ProfilerDrillerExitThreadEvent, AZ::SystemAllocator, 0) - - ProfilerDrillerExitThreadEvent() - : DrillerEvent(Profiler::PET_EXIT_THREAD) - , m_threadData(nullptr) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - AZ::u64 m_threadId; - ProfilerDrillerEnterThreadEvent* m_threadData; - }; - - class ProfilerDrillerRegisterSystemEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(ProfilerDrillerRegisterSystemEvent, AZ::SystemAllocator, 0) - - ProfilerDrillerRegisterSystemEvent() - : DrillerEvent(Profiler::PET_REGISTER_SYSTEM) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - AZ::u32 m_systemId; - const char* m_name; ///< Debug name of thread system. - }; - - class ProfilerDrillerUnregisterSystemEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(ProfilerDrillerUnregisterSystemEvent, AZ::SystemAllocator, 0) - - ProfilerDrillerUnregisterSystemEvent() - : DrillerEvent(Profiler::PET_UNREGISTER_SYSTEM) - , m_systemData(nullptr) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - AZ::u32 m_systemId; - ProfilerDrillerRegisterSystemEvent* m_systemData; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerOperationTelemetryEvent.h b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerOperationTelemetryEvent.h deleted file mode 100644 index ce8956698a..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerOperationTelemetryEvent.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#ifndef DRILLER_PROFILER_PROFILEROPERATIONTELEMETRYEVENT_H -#define DRILLER_PROFILER_PROFILEROPERATIONTELEMETRYEVENT_H - -#include "Source/Telemetry/TelemetryEvent.h" - -namespace Driller -{ - class ProfilerOperationTelemetryEvent - : public Telemetry::TelemetryEvent - { - public: - ProfilerOperationTelemetryEvent() - : Telemetry::TelemetryEvent("ProfileDataViewOperation") - { - } - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/RacetrackChart.cpp b/Code/Tools/Standalone/Source/Driller/RacetrackChart.cpp deleted file mode 100644 index bf87f7da43..0000000000 --- a/Code/Tools/Standalone/Source/Driller/RacetrackChart.cpp +++ /dev/null @@ -1,608 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "RacetrackChart.hxx" -#include -#include "DrillerMainWindowMessages.h" -#include "Axis.hxx" -#include "ChartNumberFormats.h" - -#include -#include -#include -#include - -namespace Racetrack -{ - ////////////////////////////////////////////////////////////////////////// - DataRacetrack::DataRacetrack(QWidget* parent, Qt::WindowFlags flags) - : QWidget(parent, flags) - , m_Axis(NULL) - , m_InsetL(2) - , m_InsetR(2) - , m_InsetT(2) - , m_InsetB(32) - , m_IsDragging(false) - , m_ZoomLimit(15) - , m_IsLeftDragging(false) - , m_ZeroBasedAxisDisplay(false) - { - m_Axis = aznew Charts::Axis(this); - connect(m_Axis, SIGNAL(Invalidated()), this, SLOT(OnAxisInvalidated())); - this->setMouseTracking(true); - m_iChannelHighlight = -1; - } - - Charts::Axis* DataRacetrack::GetAxis() const - { - return m_Axis; - } - - void DataRacetrack::OnAxisInvalidated() - { - update(); - } - - DataRacetrack::~DataRacetrack() - { - } - - void DataRacetrack::SetZoomLimit(float limit) - { - m_ZoomLimit = limit; - } - - int DataRacetrack::AddChannel(QString name) - { - int id = (int)m_Channels.size(); - m_Channels.push_back(); - m_Channels[id].SetName(name); - - return id; - } - - void DataRacetrack::SetChannelColor(int channelID, QColor color) - { - m_Channels[channelID].SetColor(color); - } - - void DataRacetrack::SetZeroBasedAxisNumbering(bool tf) - { - m_ZeroBasedAxisDisplay = tf; - update(); - } - - void DataRacetrack::SetMarkerColor(QColor qc) - { - m_MarkerColor = qc; - update(); - } - void DataRacetrack::SetMarkerPosition(float qposn) - { - m_MarkerPosition = qposn; - update(); - } - - - void DataRacetrack::AddData(int channelID, float h, float v) - { - m_Channels[channelID].m_Data.push_back(); - m_Channels[channelID].m_Data.back().first = h; - m_Channels[channelID].m_Data.back().second = v; - } - - void DataRacetrack::Clear() - { - m_Axis->Clear(); - m_Channels.clear(); - } - - void DataRacetrack::ClearData(int channelID) - { - if (channelID < m_Channels.size()) - { - m_Channels[channelID].m_Data.clear(); - } - } - - - void DataRacetrack::SetupAxis(QString label, float minimum, float maximum, bool locked) - { - m_Axis->SetLabel(label); - m_Axis->SetAxisRange(minimum, maximum); - m_Axis->SetLockedRange(locked); - } - - void DataRacetrack::Zoom(QPoint pt, int steps) - { - if (m_Axis->GetValid()) - { - if (m_Inset.intersects(QRect(pt, pt))) - { - float ratio = float(pt.x() - m_Inset.left()) / float(m_Inset.width()); - if (m_Axis->GetLockedRight()) - { - ratio = 1.0f; - } - if (!m_Axis->GetLockedRange()) - { - m_Axis->SetAutoWindow(false); - - float testMin = m_Axis->GetWindowMin(); - float testMax = m_Axis->GetWindowMax(); - - testMin -= float(m_Axis->GetWindowMax() - m_Axis->GetWindowMin()) * 0.05f * ratio * float(-steps); - testMax += float(m_Axis->GetWindowMax() - m_Axis->GetWindowMin()) * 0.05f * (1.0f - ratio) * float(-steps); - if ((testMax - testMin) > 0.0f) - { - if (testMax > m_Axis->GetRangeMax()) - { - float offset = m_Axis->GetRangeMax() - testMax; - testMax += offset; - testMin += offset; - } - if (testMin < m_Axis->GetRangeMin()) - { - float offset = testMin - m_Axis->GetRangeMin(); - testMax -= offset; - testMin -= offset; - } - if ((float)m_Inset.width() / (testMax - testMin) < m_ZoomLimit) - { - m_Axis->SetWindowMin(testMin); - m_Axis->SetWindowMax(testMax); - } - - if ((testMax - testMin) > (m_Axis->GetRangeMax() - m_Axis->GetRangeMin())) - { - m_Axis->SetViewFull(); - } - } - } - } - } - } - - void DataRacetrack::Drag(int deltaX) - { - if (m_Axis->GetValid()) - { - if (!m_Axis->GetLockedRange() && !m_Axis->GetLockedRight()) - { - // delta is in pixels. Convert to domain units: - - float pixelWidth = (float)m_Inset.width(); - float domainWidth = m_Axis->GetWindowMax() - m_Axis->GetWindowMin(); - float domainPerPixel = domainWidth / pixelWidth; - float deltaInDomain = domainPerPixel * (float)deltaX; - - if (m_Axis->GetWindowMin() + deltaInDomain > m_Axis->GetRangeMin() && m_Axis->GetWindowMax() + deltaInDomain < m_Axis->GetRangeMax()) - { - m_Axis->SetAutoWindow(false); - m_Axis->UpdateWindowRange((float)deltaInDomain); - } - } - } - } - - QPoint DataRacetrack::Transform(float v) - { - QPoint pt; - - if (m_Axis->GetValid()) - { - if ((v >= m_Axis->GetWindowMin()) && (v <= m_Axis->GetWindowMax())) - { - float fullRange = fabs(m_Axis->GetWindowMax() - m_Axis->GetWindowMin()); - - float ratio = float(v - m_Axis->GetWindowMin()) / fullRange; - pt.setY(m_Inset.bottom() - int((float(m_Inset.height()) * ratio))); - } - } - - return pt; - } - - TransformResult DataRacetrack::Transform(float h, QPoint& outPoint) - { - TransformResult tr = INVALID_RANGE; - QPoint pt(0, 0); - - if (m_Axis->GetValid()) - { - if (h < m_Axis->GetWindowMin()) - { - tr = OUTSIDE_LEFT; - pt.setX(m_Inset.left()); - } - else if (h > m_Axis->GetWindowMax()) - { - tr = OUTSIDE_RIGHT; - pt.setX(m_Inset.left() + m_Inset.width()); - } - else - { - tr = INSIDE_RANGE; - - float fullRange = fabs(m_Axis->GetWindowMax() - m_Axis->GetWindowMin()); - float ratio = float(h - m_Axis->GetWindowMin()) / fullRange; - pt.setX(m_Inset.left() + int((float(m_Inset.width()) * ratio))); - } - } - - outPoint = pt; - return tr; - } - - void DataRacetrack::wheelEvent (QWheelEvent* event) - { - if (!m_Axis->GetValid()) - { - return; - } - - int numDegrees = event->angleDelta().y() / 8; - int numSteps = numDegrees / 15; - // +step := zoom IN - // -step := zoom OUT - QPoint zoomPt = event->position().toPoint() - m_Inset.topLeft(); - - Zoom(zoomPt, numSteps); - - update(); - - event->accept(); - } - void DataRacetrack::mouseMoveEvent (QMouseEvent* event) - { - if (!m_Axis->GetValid()) - { - return; - } - if (m_IsDragging) - { - // far far did we move in the DOMAIN? - QPoint pt = m_DragTracker - event->pos(); - Drag(pt.x()); - m_DragTracker = event->pos(); - update(); - } - else - { - if (m_IsLeftDragging) - { - float fullRange = fabs(m_Axis->GetWindowMax() - m_Axis->GetWindowMin()); - float ratio = (float)(event->pos().x() - m_InsetL) / (float)(width() - m_InsetL - m_InsetR); - float localValue = fullRange * ratio; - Driller::EventNumberType globalEvtID = (Driller::EventNumberType)(m_Axis->GetWindowMin() + localValue); - - emit EventRequestEventFocus(globalEvtID); - } - else - { - int oldChannelHighlight = m_iChannelHighlight; - m_iChannelHighlight = -1; - if (m_Channels.size() > 0) - { - if (m_Inset.contains(event->pos())) - { - QPoint offset = event->pos() - m_Inset.topLeft(); - float ratio = (float)offset.y() / m_Inset.height(); - if (ratio < 1.0f) - { - // so which channel is it over? - int channel = (int)(ratio * (float)m_Channels.size()); - if (m_iChannelHighlight != channel) - { - m_iChannelHighlight = channel; - } - } - } - } - - if (oldChannelHighlight != m_iChannelHighlight) - { - update(); - } - } - } - } - void DataRacetrack::mousePressEvent (QMouseEvent* event) - { - if (!m_Axis->GetValid()) - { - return; - } - - if (event->button() == Qt::RightButton) - { - m_IsDragging = true; - m_DragTracker = event->pos(); - } - else if (event->button() == Qt::LeftButton) - { - m_IsLeftDragging = true; - - float fullRange = fabs(m_Axis->GetWindowMax() - m_Axis->GetWindowMin()); - float ratio = (float)(event->pos().x() - m_Inset.x()) / (float)(width() - m_InsetL - m_InsetR); - float localValue = fullRange * ratio; - Driller::EventNumberType globalEvtID = (Driller::EventNumberType)(m_Axis->GetWindowMin() + localValue); - - emit EventRequestEventFocus(globalEvtID); - } - - event->accept(); - } - - void DataRacetrack::leaveEvent(QEvent*) - { - if (m_iChannelHighlight != -1) - { - m_iChannelHighlight = -1; - update(); - } - } - - void DataRacetrack::mouseReleaseEvent (QMouseEvent* event) - { - if (!m_Axis->GetValid()) - { - return; - } - - if (event->button() == Qt::RightButton) - { - m_IsDragging = false; - } - else - { - if (m_IsLeftDragging) - { - m_IsLeftDragging = false; - } - } - - event->accept(); - } - void DataRacetrack::resizeEvent(QResizeEvent* event) - { - RecalculateInset(); - event->ignore(); - } - - void DataRacetrack::RecalculateInset() - { - m_Inset = QRect(m_InsetL, m_InsetT, rect().width() - m_InsetL - m_InsetR, rect().height() - m_InsetT - m_InsetB); - } - - void DataRacetrack::paintEvent(QPaintEvent* event) - { - (void)event; - - QPen pen; - pen.setWidth(1); - QBrush brush; - brush.setStyle(Qt::SolidPattern); - pen.setBrush(brush); - - QPainter p(this); - p.setPen(pen); - - p.fillRect(rect(), QColor(32, 32, 32, 255)); - p.fillRect(m_Inset, Qt::black); - - brush.setColor(QColor(255, 255, 0, 255)); - pen.setColor(QColor(0, 255, 255, 255)); - p.setPen(pen); - - if (m_Channels.empty()) - { - return; - } - - if (!m_Axis->GetValid()) - { - return; - } - - // HORIZ - if (m_Axis) - { - int barHeight = m_Inset.height() / (int)m_Channels.size() - (int)m_Channels.size(); - - p.drawText(0, 0, rect().width(), rect().height(), Qt::AlignHCenter | Qt::AlignBottom, m_Axis->GetLabel()); - - pen.setStyle(Qt::DashDotLine); - pen.setColor(QColor(72, 72, 72, 255)); - p.setPen(pen); - RenderHorizCallouts(&p); - - TransformResult tr1, tr2; - QPoint pt1, pt2; - tr1 = Transform(m_Axis->GetWindowMin(), pt1); - tr2 = Transform(m_Axis->GetWindowMin() + 1.0f, pt2); - int drawWidth = pt2.x() - pt1.x() + 1; - - int chidx = 0; - for (Channels::iterator chiter = m_Channels.begin(); chiter != m_Channels.end(); ++chiter, ++chidx) - { - Channel& cptr = *chiter; - - - pen.setStyle(Qt::SolidLine); - brush.setColor(chiter->m_Color); - brush.setStyle(Qt::SolidPattern); - pen.setColor(chiter->m_Color); - pen.setBrush(brush); - p.setPen(pen); - - { - float start(0.0f), last(0.0f), current(0.0f); - TransformResult startTR, lastTR; - - AZStd::vector< AZStd::pair >::iterator datiter = cptr.m_Data.begin(); - if (datiter != cptr.m_Data.end()) - { - start = datiter->first; - last = datiter->first; - current = datiter->first; - ++datiter; - while (datiter != cptr.m_Data.end()) - { - current = datiter->first; - ++datiter; - if ((current == last + 1) && (datiter != cptr.m_Data.end())) - { - last = current; - } - else - { - QPoint drawPtS, drawPtL; - startTR = Transform(start, drawPtS); - lastTR = Transform(last, drawPtL); - - if ((startTR == INSIDE_RANGE && lastTR == INSIDE_RANGE) || (startTR != lastTR)) - { - p.fillRect(m_Inset.x() + drawPtS.x(), m_Inset.y() + chidx * barHeight + 1, drawPtL.x() - drawPtS.x() + drawWidth, barHeight, chiter->m_Color); - } - - start = current; - last = current; - } - } - - QPoint drawPtS, drawPtL; - startTR = Transform(start, drawPtS); - lastTR = Transform(last, drawPtL); - if ((startTR == INSIDE_RANGE && lastTR == INSIDE_RANGE) || (startTR != lastTR)) - { - p.fillRect(m_Inset.x() + drawPtS.x(), m_Inset.y() + chidx * barHeight + 1, drawPtL.x() - drawPtS.x() + drawWidth, barHeight, chiter->m_Color); - } - } - } - - // draw the name of the current channel as a highlight: - if (chidx == m_iChannelHighlight) - { - QRect textRect(m_Inset.x() + 8, m_Inset.y() + chidx * barHeight + 1, m_Inset.width() - 16, barHeight); - p.setPen(QPen(QColor(255, 255, 255, 255))); - QRect bound = p.boundingRect(textRect, Qt::AlignVCenter | Qt::AlignLeft, cptr.m_Name); - bound.adjust(-2, -2, 2, 2); - p.fillRect(bound, QColor(0, 0, 0, 128)); - p.drawText(textRect, Qt::AlignVCenter | Qt::AlignLeft, cptr.m_Name); - } - } - - pen.setStyle(Qt::SolidLine); - brush.setStyle(Qt::SolidPattern); - brush.setColor(Qt::black); - pen.setColor(Qt::black); - p.setPen(pen); - - if (drawWidth >= m_ZoomLimit) - { - for (float tickWalker = floorf(m_Axis->GetWindowMin()); tickWalker < ceilf(m_Axis->GetWindowMax()); tickWalker += 1.0f) - { - QPoint markerPt; - if (Transform(tickWalker, markerPt) == INSIDE_RANGE) - { - p.drawLine(m_Inset.x() + markerPt.x(), 0, m_Inset.x() + markerPt.x(), m_Inset.y() + m_Inset.height()); - } - } - } - - brush.setStyle(Qt::Dense2Pattern); - brush.setColor(m_MarkerColor); - pen.setColor(m_MarkerColor); - p.setPen(pen); - - QPoint markerPt; - if (Transform(m_MarkerPosition + 0.5f, markerPt) == INSIDE_RANGE) - { - int xDrawPos = m_Inset.x() + markerPt.x(); - int yDrawPos = m_Inset.y() + m_Inset.height(); - p.drawLine(xDrawPos, 0, xDrawPos, m_Inset.y() + m_Inset.height()); - - // event ID overlay at the bottom of the bar - const float frameWidth = 10.0f; - QPen selPen (QColor(255, 255, 255, 255)); - selPen.setWidth(1); - p.setPen(selPen); - p.setBrush(QColor(0, 0, 0, 255)); - int xOffset = xDrawPos - (int)frameWidth < 0 ? xDrawPos + (int)frameWidth : 0; - xOffset = xDrawPos + xOffset + (int)(frameWidth * 7.0f) > m_Inset.width() ? (int)(-frameWidth * 7.0f) : xOffset; - p.drawRect(xDrawPos - (int)frameWidth + xOffset, yDrawPos - 8, (int)(frameWidth * 7.0f), 16); - p.setBrush(QColor(255, 255, 255, 255)); - int eventNum = (int)(m_MarkerPosition); - - QString frameText = DrillerCharts::FriendlyFormat((AZ::s64)eventNum); - - p.drawText(xDrawPos - (int)frameWidth + 2 + xOffset, yDrawPos + 4, frameText); - } - } - } - - void DataRacetrack::RenderHorizCallouts(QPainter* painter) - { - float textSpaceRequired = (float)painter->fontMetrics().horizontalAdvance("9,999,999.99"); - int fontH = painter->fontMetrics().height(); - - AZStd::vector divisions; - divisions.reserve(10); - m_Axis->ComputeAxisDivisions((float)m_Inset.width(), divisions, textSpaceRequired, textSpaceRequired, false); - - QPen dottedPen; - dottedPen.setStyle(Qt::DotLine); - dottedPen.setColor(QColor(64, 64, 64, 255)); - dottedPen.setWidth(1); - QBrush solidBrush; - QPen solidPen; - solidPen.setStyle(Qt::SolidLine); - solidPen.setColor(QColor(0, 255, 255, 255)); - solidPen.setWidth(1); - - for (auto it = divisions.begin(); it != divisions.end(); ++it) - { - float currentUnit = *it; - QPoint leftEdge; - - // offset by a half becuase we want to slice through the middle of these event tracks. - currentUnit += 0.5f; - - Transform(currentUnit, leftEdge); - - currentUnit -= 0.5f; - - leftEdge += m_Inset.topLeft(); - - QPoint leftline((int)leftEdge.x(), m_Inset.bottom()); - QPoint leftend = leftline - QPoint(0, m_Inset.height()); - painter->setPen(dottedPen); - painter->drawLine(leftline, leftend); - - QString text; - text = QString("%1").number(currentUnit, 'f', 0); - - int textW = painter->fontMetrics().horizontalAdvance(text); - - painter->setPen(solidPen); - painter->drawText((int)leftEdge.x() - textW / 2, m_Inset.bottom() + fontH, text); - } - } - - - void DataRacetrack::DrawRotatedText(QString text, QPainter* painter, float degrees, int x, int y, float scale) - { - painter->save(); - painter->translate(x, y); - painter->scale(scale, scale); - painter->rotate(degrees); - painter->drawText(0, 0, text); - painter->restore(); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/RacetrackChart.hxx b/Code/Tools/Standalone/Source/Driller/RacetrackChart.hxx deleted file mode 100644 index ee4610bcdc..0000000000 --- a/Code/Tools/Standalone/Source/Driller/RacetrackChart.hxx +++ /dev/null @@ -1,128 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef RACETRACKCHART_H -#define RACETRACKCHART_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include - -#include "Source/Driller/DrillerDataTypes.h" -#endif - -namespace Charts -{ - class Axis; -} - - -namespace Racetrack -{ - typedef enum - { - OUTSIDE_LEFT = -1, - INSIDE_RANGE = 0, - OUTSIDE_RIGHT = 1, - INVALID_RANGE = 2 - } TransformResult; - - struct Channel - { - AZ_CLASS_ALLOCATOR(Channel,AZ::SystemAllocator,0); - Channel() : m_Color(QColor(255,255,0,255)) {} - - void SetName( QString name ) { m_Name = name; } - void SetColor( QColor &color ) { m_Color = color; } - - QString m_Name; - AZStd::vector< AZStd::pair > m_Data; - QColor m_Color; - }; - - - class DataRacetrack - : public QWidget - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(DataRacetrack,AZ::SystemAllocator,0); - DataRacetrack( QWidget* parent = NULL, Qt::WindowFlags flags = Qt::WindowFlags()); - virtual ~DataRacetrack(void); - - void SetupAxis(QString label, float minimum, float maximum, bool locked = true ); - - int AddChannel( QString name ); - void AddData( int channelID, float h, float v = 0.0f ); - void Clear(); - void ClearData( int channelID ); - void SetChannelColor( int channelID, QColor color ); - void SetZoomLimit( float limit ); - void SetZeroBasedAxisNumbering( bool tf ); - - void SetMarkerColor(QColor qc); - void SetMarkerPosition(float qposn); - - Charts::Axis *GetAxis() const; - public slots: - - protected: - virtual void wheelEvent ( QWheelEvent * event ); - virtual void mouseMoveEvent ( QMouseEvent * event ); - virtual void mousePressEvent ( QMouseEvent * event ); - virtual void mouseReleaseEvent ( QMouseEvent * event ); - virtual void resizeEvent( QResizeEvent * event ); - virtual void leaveEvent(QEvent *); - - protected: - int m_InsetL; - int m_InsetR; - int m_InsetT; - int m_InsetB; - QRect m_Inset; - float m_ZoomLimit; - - typedef AZStd::vector Channels; - Channels m_Channels; - QPoint m_DragTracker; - - bool m_IsDragging; - bool m_IsLeftDragging; - - Charts::Axis *m_Axis; - // first submission = horizontal - - QColor m_MarkerColor; - float m_MarkerPosition; - bool m_ZeroBasedAxisDisplay; - int m_iChannelHighlight; - - // internal ops - virtual void paintEvent(QPaintEvent *event); - void DrawRotatedText(QString text, QPainter *painter, float degrees, int x, int y, float scale = 1.0f); - void RecurseVert(QPainter *painter, float step, float ratio ); - void RenderHorizCallouts( QPainter *painter ); - void RecalculateInset(); - void Zoom( QPoint pt, int steps ); - void Drag( int deltaX); - QPoint Transform( float h ); - TransformResult Transform( float h, QPoint &outQPoint ); - - public slots: - void OnAxisInvalidated(); - -signals: - void EventRequestEventFocus(Driller::EventNumberType); - }; - -} - - -#endif //RACETRACKCHART_H diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.cpp deleted file mode 100644 index 09cda0d0b8..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.cpp +++ /dev/null @@ -1,377 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "VRAMDataAggregator.hxx" -#include -#include "VRAMEvents.h" -#include -#include -#include "Source/Driller/Workspaces/Workspace.h" - -namespace Driller -{ - namespace VRAM - { - //========================================================================= - - enum class ExportField - { - RESOURCE_NAME, - ALLOCATION_SIZE, - UNKNOWN - }; - - /** - * VRAM CSV export settings - */ - class VRAMExportSettings - : public GenericCSVExportSettings - { - public: - AZ_CLASS_ALLOCATOR(VRAMExportSettings, AZ::SystemAllocator, 0); - - VRAMExportSettings() - { - m_columnDescriptors = - { - {ExportField::RESOURCE_NAME, "Resource Name"}, - {ExportField::ALLOCATION_SIZE, "VRAM Allocation Size"}, - }; - - m_exportOrdering = - { - ExportField::RESOURCE_NAME, - ExportField::ALLOCATION_SIZE, - }; - - for (const AZStd::pair< ExportField, AZStd::string >& item : m_columnDescriptors) - { - m_stringToExportEnum[item.second] = item.first; - } - } - - virtual void GetExportItems(QStringList& items) const - { - for (const AZStd::pair< ExportField, AZStd::string>& item : m_columnDescriptors) - { - items.push_back(QString(item.second.c_str())); - } - } - - virtual void GetActiveExportItems(QStringList& items) const - { - for (ExportField currentField : m_exportOrdering) - { - if (currentField != ExportField::UNKNOWN) - { - items.push_back(QString(FindColumnDescriptor(currentField).c_str())); - } - } - } - - const AZStd::vector< ExportField >& GetExportOrder() const - { - return m_exportOrdering; - } - - const AZStd::string& FindColumnDescriptor(ExportField exportField) const - { - static const AZStd::string emptyDescriptor; - - AZStd::unordered_map::const_iterator descriptorIter = m_columnDescriptors.find(exportField); - - if (descriptorIter == m_columnDescriptors.end()) - { - AZ_Warning("Standalone Tools", false, "Unknown column descriptor in VRAM CSV Export"); - return emptyDescriptor; - } - else - { - return descriptorIter->second; - } - } - - protected: - virtual void UpdateExportOrdering(const QStringList& activeItems) - { - m_exportOrdering.clear(); - - for (const QString& activeItem : activeItems) - { - ExportField field = FindExportFieldFromDescriptor(activeItem.toStdString().c_str()); - - AZ_Warning("Standalone Tools", field != ExportField::UNKNOWN, "Unknown descriptor %s", activeItem.toStdString().c_str()); - if (field != ExportField::UNKNOWN) - { - m_exportOrdering.push_back(field); - } - } - } - - private: - ExportField FindExportFieldFromDescriptor(const char* columnDescriptor) const - { - AZStd::unordered_map::const_iterator exportIter = m_stringToExportEnum.find(columnDescriptor); - - ExportField retVal = ExportField::UNKNOWN; - - if (exportIter != m_stringToExportEnum.end()) - { - retVal = exportIter->second; - } - - return retVal; - } - - AZStd::unordered_map< ExportField, AZStd::string > m_columnDescriptors; - AZStd::unordered_map< AZStd::string, ExportField > m_stringToExportEnum; - AZStd::vector< ExportField > m_exportOrdering; - }; - - //========================================================================= - - VRAMDataAggregator::VRAMDataAggregator(int identity) - : Aggregator(identity) - { - m_parser.SetAggregator(this); - m_csvExportSettings = aznew VRAMExportSettings(); - } - - VRAMDataAggregator::~VRAMDataAggregator() - { - delete m_csvExportSettings; - } - - float VRAMDataAggregator::ValueAtFrame(FrameNumberType frame) - { - const float maxEventsPerFrame = 1000.0f; // just a scale number - float numEventsPerFrame = static_cast(NumOfEventsAtFrame(frame)); - return AZStd::GetMin(numEventsPerFrame / maxEventsPerFrame, 1.0f) * 2.0f - 1.0f; - } - - QColor VRAMDataAggregator::GetColor() const - { - return QColor(0, 255, 255); - } - - QString VRAMDataAggregator::GetName() const - { - return "VRAM"; - } - - QString VRAMDataAggregator::GetChannelName() const - { - return ChannelName(); - } - - QString VRAMDataAggregator::GetDescription() const - { - return "VRAM allocations driller"; - } - - QString VRAMDataAggregator::GetToolTip() const - { - return "Information about VRAM allocations"; - } - - AZ::Uuid VRAMDataAggregator::GetID() const - { - return AZ::Uuid("{9D895E46-6CF7-4AA1-AC8F-79D8B6FB202E}"); - } - - bool VRAMDataAggregator::RegisterCategory(AZ::u32 categoryId, CategoryInfo* categoryInfo) - { - for (CategoryInfoArrayType::iterator iter = m_categories.begin(); iter != m_categories.end(); ++iter) - { - if ((*iter)->m_categoryId == categoryId) - { - AZ_Assert(0, "Category %u has already been registered", categoryId); - return false; - } - } - - m_categories.push_back(categoryInfo); - return true; - } - - bool VRAMDataAggregator::UnregisterCategory(AZ::u32 categoryId) - { - for (CategoryInfoArrayType::iterator iter = m_categories.begin(); iter != m_categories.end(); ++iter) - { - if ((*iter)->m_categoryId == categoryId) - { - m_categories.erase(iter); - return true; - } - } - - AZ_Assert(0, "Attempting to unregister a category %u which has not been registered", categoryId); - return false; - } - - CategoryInfo* VRAMDataAggregator::FindCategory(AZ::u32 categoryId) - { - for (CategoryInfoArrayType::iterator iter = m_categories.begin(); iter != m_categories.end(); ++iter) - { - if ((*iter)->m_categoryId == categoryId) - { - return (*iter); - } - } - return nullptr; - } - - AllocationInfo* VRAMDataAggregator::FindAndRemoveAllocation(AZ::u64 address) - { - for (CategoryInfoArrayType::iterator iter = m_categories.begin(); iter != m_categories.end(); ++iter) - { - CategoryInfo* category = *iter; - AllocationMapType::iterator allocIt = category->m_allocations.find(address); - if (allocIt != category->m_allocations.end()) - { - AllocationInfo* allocInfo = allocIt->second; - - // Deallocation, so subtract and remove from the allocation table - category->m_allocatedMemory -= allocInfo->m_size; - category->m_allocations.erase(address); - - return allocInfo; - } - } - - return nullptr; - } - - void VRAMDataAggregator::Reset() - { - m_categories.clear(); - } - - //========================================================================= - - CustomizeCSVExportWidget* VRAMDataAggregator::CreateCSVExportCustomizationWidget() - { - return aznew GenericCustomizeCSVExportWidget(*m_csvExportSettings); - } - - void VRAMDataAggregator::ExportCategoryHeaderToCSV(AZ::IO::SystemFile& file) - { - const AZStd::string categoryHeader = AZStd::string("Category,Number of Allocations, Memory Usage,\n"); - file.Write(categoryHeader.c_str(), categoryHeader.size()); - - for (VRAM::CategoryInfo* currentCategory : m_categories) - { - const AZStd::string categoryInfo = AZStd::string::format("%s,%zu,%zu,\n", currentCategory->m_categoryName, currentCategory->m_allocations.size(), currentCategory->m_allocatedMemory); - file.Write(categoryInfo.c_str(), categoryInfo.size()); - } - - file.Write("\n", 1); - } - - void VRAMDataAggregator::ExportColumnDescriptorToCSV(AZ::IO::SystemFile& file, CSVExportSettings* exportSettings) - { - // Write the category information at the top of the file - ExportCategoryHeaderToCSV(file); - - VRAMExportSettings* vramExportSettings = static_cast(exportSettings); - const AZStd::vector< ExportField >& exportOrdering = vramExportSettings->GetExportOrder(); - - bool addComma = false; - - // Now export all of our VRAM allocations - for (ExportField currentField : exportOrdering) - { - if (addComma) - { - file.Write(",", 1); - } - - const AZStd::string& columnDescriptor = vramExportSettings->FindColumnDescriptor(currentField); - file.Write(columnDescriptor.c_str(), columnDescriptor.size()); - addComma = true; - } - - file.Write("\n", 1); - } - - void VRAMDataAggregator::ExportEventToCSV(AZ::IO::SystemFile& file, const DrillerEvent* drillerEvent, CSVExportSettings* exportSettings) - { - // We don't care about logging the category registration events - if (azrtti_istypeof(drillerEvent)) - { - return; - } - - bool isDeallocation = azrtti_istypeof(drillerEvent); - AZ_Assert(azrtti_istypeof(drillerEvent) || isDeallocation, "Invalid Event"); - - const VRAM::AllocationInfo* allocationInformation = nullptr; - if (isDeallocation) - { - const VRAMDrillerUnregisterAllocationEvent* vramDeallocationEvent = static_cast(drillerEvent); - allocationInformation = vramDeallocationEvent->m_removedAllocationInfo; - } - else - { - const VRAMDrillerRegisterAllocationEvent* vramAllocationEvent = static_cast(drillerEvent); - allocationInformation = &vramAllocationEvent->m_allocationInfo; - } - - if (allocationInformation == nullptr) - { - AZ_Warning("System", 0, "Error: Allocation information not found for VRAM tracking event"); - return; - } - - VRAMExportSettings* vramExportSettings = static_cast(exportSettings); - const AZStd::vector< ExportField >& exportOrdering = vramExportSettings->GetExportOrder(); - - bool addComma = false; - AZStd::string field; - - for (ExportField currentField : exportOrdering) - { - if (addComma) - { - file.Write(",", 1); - } - - switch (currentField) - { - case ExportField::RESOURCE_NAME: - { - field = allocationInformation->m_name; - break; - } - case ExportField::ALLOCATION_SIZE: - { - if (isDeallocation) - { - field = AZStd::string::format("-%llu", allocationInformation->m_size); - } - else - { - field = AZStd::string::format("%llu", allocationInformation->m_size); - } - break; - } - default: - AZ_Warning("Standalone Tools", false, "Unknown Export Field for VRAMDataAggreagtor"); - break; - } - - file.Write(field.c_str(), field.length()); - addComma = true; - } - - file.Write("\n", 1); - } - - //========================================================================= - } // namespace VRAM -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.hxx deleted file mode 100644 index ae1d544e89..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.hxx +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_VRAM_DATAAGGREGATOR_H -#define DRILLER_VRAM_DATAAGGREGATOR_H - -#if !defined(Q_MOC_RUN) -#include "Source/Driller/DrillerAggregator.hxx" -#include "Source/Driller/DrillerAggregatorOptions.hxx" -#include "Source/Driller/GenericCustomizeCSVExportWidget.hxx" -#include "VRAMDataParser.h" -#include "AzCore/std/string/string.h" -#include "AzCore/RTTI/RTTI.h" -#endif - -namespace Driller -{ - namespace VRAM - { - //========================================================================= - - struct CategoryInfo; - typedef AZStd::list CategoryInfoArrayType; - - /** - * VRAM data drilling aggregator - */ - class VRAMDataAggregator - : public Aggregator - { - Q_OBJECT; - public: - AZ_RTTI(VRAMDataAggregator, "{D17F2623-A980-4A08-9CEB-B8F89C811C1C}"); - AZ_CLASS_ALLOCATOR(VRAMDataAggregator, AZ::SystemAllocator, 0); - - VRAMDataAggregator(int identity = 0); - virtual ~VRAMDataAggregator(); - - static AZ::u32 DrillerId() - { - return VRAMDrillerHandlerParser::GetDrillerId(); - } - - AZ::u32 GetDrillerId() const override - { - return DrillerId(); - } - - static const char* ChannelName() - { - return "VRAM"; - } - - AZ::Crc32 GetChannelId() const override - { - return AZ::Crc32(ChannelName()); - } - - AZ::Debug::DrillerHandlerParser* GetDrillerDataParser() override - { - return &m_parser; - } - - bool CanExportToCSV() const override - { - return true; - } - - CustomizeCSVExportWidget* CreateCSVExportCustomizationWidget(); - - bool RegisterCategory(AZ::u32 categoryId, CategoryInfo* categoryInfo); - bool UnregisterCategory(AZ::u32 categoryId); - CategoryInfo* FindCategory(AZ::u32 categoryId); - - // Search all categories for this address, remove it from the hash table and return its allocation info. - struct AllocationInfo* FindAndRemoveAllocation( AZ::u64 address ); - - void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*) override {} - void ActivateWorkspaceSettings(WorkspaceSettingsProvider*) override {} - void SaveSettingsToWorkspace(WorkspaceSettingsProvider*) override {} - - void Reset() override; - - public slots: - float ValueAtFrame(FrameNumberType frame) override; - QColor GetColor() const override; - QString GetChannelName() const override; - QString GetName() const override; - QString GetDescription() const override; - QString GetToolTip() const override; - AZ::Uuid GetID() const override; - void OptionsRequest() override {} - QWidget* DrillDownRequest(FrameNumberType frame) override - { - // Create a Qt view window to show a graph view of the VRAM usage - (void)frame; - return nullptr; - } - - protected: - void ExportColumnDescriptorToCSV(AZ::IO::SystemFile& file, CSVExportSettings* exportSettings) override; - void ExportEventToCSV(AZ::IO::SystemFile& file, const DrillerEvent* drillerEvent, CSVExportSettings* exportSettings) override; - void ExportCategoryHeaderToCSV(AZ::IO::SystemFile& file); - - class VRAMExportSettings* m_csvExportSettings; - VRAMDrillerHandlerParser m_parser; - - // Different categories of VRAM allocations and all of the allocations that live in that category. - CategoryInfoArrayType m_categories; - }; - - //========================================================================= - } // namespace VRAM -} // namespace Driller - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.cpp deleted file mode 100644 index 419f48d9a3..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.cpp +++ /dev/null @@ -1,148 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "VRAMDataParser.h" -#include "VRAMDataAggregator.hxx" -#include "VRAMEvents.h" - -namespace Driller -{ - namespace VRAM - { - AZ::Debug::DrillerHandlerParser* VRAMDrillerHandlerParser::OnEnterTag(AZ::u32 tagName) - { - AZ_Assert(m_data, "You must set a valid VRAM aggregator before we can process the data!"); - - if (tagName == AZ_CRC("RegisterAllocation", 0x992a9780)) - { - m_subTag = ST_REGISTER_ALLOCATION; - m_data->AddEvent(aznew VRAMDrillerRegisterAllocationEvent()); - return this; - } - else if (tagName == AZ_CRC("UnRegisterAllocation", 0xea5dc4cd)) - { - m_subTag = ST_UNREGISTER_ALLOCATION; - m_data->AddEvent(aznew VRAMDrillerUnregisterAllocationEvent()); - return this; - } - else if (tagName == AZ_CRC("RegisterCategory")) - { - m_subTag = ST_REGISTER_CATEGORY; - m_data->AddEvent(aznew VRAMDrillerRegisterCategoryEvent()); - return this; - } - else if (tagName == AZ_CRC("UnregisterCategory")) - { - m_subTag = ST_UNREGISTER_CATEGORY; - m_data->AddEvent(aznew VRAMDrillerUnregisterCategoryEvent()); - return this; - } - else - { - m_subTag = ST_NONE; - } - return NULL; - } - - void VRAMDrillerHandlerParser::OnExitTag(DrillerHandlerParser* handler, AZ::u32 tagName) - { - (void)tagName; - if (handler != NULL) - { - m_subTag = ST_NONE; // we have only one level just go back to the default state - } - } - - void VRAMDrillerHandlerParser::OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode) - { - AZ_Assert(m_data, "You must set a valid VRAM aggregator before we can process the data!"); - - switch (m_subTag) - { - case ST_REGISTER_ALLOCATION: - { - VRAMDrillerRegisterAllocationEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("Category")) - { - dataNode.Read(event->m_allocationInfo.m_category); - } - else if (dataNode.m_name == AZ_CRC("Subcategory")) - { - dataNode.Read(event->m_allocationInfo.m_subcategory); - } - else if (dataNode.m_name == AZ_CRC("Address", 0x0d4e6f81)) - { - dataNode.Read(event->m_address); - } - else if (dataNode.m_name == AZ_CRC("Size", 0xf7c0246a)) - { - dataNode.Read(event->m_allocationInfo.m_size); - } - else if (dataNode.m_name == AZ_CRC("Name", 0x5e237e06)) - { - event->m_allocationInfo.m_name = dataNode.ReadPooledString(); - } - } - break; - - case ST_UNREGISTER_ALLOCATION: - { - VRAMDrillerUnregisterAllocationEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("Address", 0x0d4e6f81)) - { - dataNode.Read(event->m_address); - } - } - break; - - case ST_REGISTER_CATEGORY: - { - VRAMDrillerRegisterCategoryEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("Category")) - { - dataNode.Read(event->m_categoryId); - event->m_categoryInfo.m_categoryId = event->m_categoryId; - } - else if (dataNode.m_name == AZ_CRC("CategoryName")) - { - event->m_categoryInfo.m_categoryName = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("SubcategoryId")) - { - // NOTE: "SubcategoryId" and "SubcategoryName" have to be done in two separate Read events. - // The SubcategoryId read will create a SubcategoryInfo, and we assume when we hit SubcategoryName that we had just registered a new SubcategoryId on the previous read. - unsigned int subcategoryId = 0; - dataNode.Read(subcategoryId); - event->m_categoryInfo.m_subcategories.push_back(SubcategoryInfo(subcategoryId)); - } - else if (dataNode.m_name == AZ_CRC("SubcategoryName")) - { - AZ_Assert(event->m_categoryInfo.m_subcategories.size(), "Error: Found a SubcategoryName data tag, but did not find a previous SubcategoryId tag"); - - // Get the most recently registered subcategory - SubcategoryInfo& subcategory = event->m_categoryInfo.m_subcategories[event->m_categoryInfo.m_subcategories.size() - 1]; - AZ_Assert(subcategory.m_subcategoryName == nullptr, "Error: Subcategory 0x%08x already has a SubcategoryName", subcategory.m_subcategoryId); - - subcategory.m_subcategoryName = dataNode.ReadPooledString(); - } - } - break; - - case ST_UNREGISTER_CATEGORY: - { - VRAMDrillerUnregisterCategoryEvent* event = static_cast(m_data->GetEvents().back()); - if (dataNode.m_name == AZ_CRC("Category")) - { - dataNode.Read(event->m_categoryId); - } - } - break; - } - } - } // namespace VRAM -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.h b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.h deleted file mode 100644 index d66ac32516..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.h +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_VRAM_DRILLER_PARSER_H -#define DRILLER_VRAM_DRILLER_PARSER_H - -#include - -namespace Driller -{ - namespace VRAM - { - //========================================================================= - - class VRAMDataAggregator; - - class VRAMDrillerHandlerParser - : public AZ::Debug::DrillerHandlerParser - { - public: - enum SubTags - { - ST_NONE = 0, - ST_REGISTER_ALLOCATION, - ST_UNREGISTER_ALLOCATION, - ST_REGISTER_CATEGORY, - ST_UNREGISTER_CATEGORY - }; - - VRAMDrillerHandlerParser() - : m_subTag(ST_NONE) - , m_data(NULL) - {} - - static AZ::u32 GetDrillerId() - { - return AZ_CRC("VRAMDriller"); - } - - void SetAggregator(VRAMDataAggregator* data) - { - m_data = data; - } - - virtual AZ::Debug::DrillerHandlerParser* OnEnterTag(AZ::u32 tagName); - virtual void OnExitTag(DrillerHandlerParser* handler, AZ::u32 tagName); - virtual void OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode); - - protected: - SubTags m_subTag; - VRAMDataAggregator* m_data; - }; - - //========================================================================= - } -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.cpp b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.cpp deleted file mode 100644 index b0b85beb6b..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.cpp +++ /dev/null @@ -1,125 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "VRAMEvents.h" -#include "VRAMDataAggregator.hxx" - -namespace Driller -{ - namespace VRAM - { - //========================================================================= - - CategoryInfo* GetCategory(Aggregator* data, AZ::u32 categoryId) - { - VRAMDataAggregator* aggregator = static_cast(data); - CategoryInfo* category = aggregator->FindCategory(categoryId); - - if (category == nullptr) - { - AZ_Assert(false, "VRAMDriller - Invalid Category"); - return nullptr; - } - return category; - } - - //========================================================================= - - void VRAMDrillerRegisterAllocationEvent::StepForward(Aggregator* data) - { - CategoryInfo* m_categoryInfo = GetCategory(data, m_allocationInfo.m_category); - if (!m_categoryInfo) - { - return; - } - - // Add the allocation - m_categoryInfo->m_allocations.insert(AZStd::make_pair(m_address, &m_allocationInfo)); - m_categoryInfo->m_allocatedMemory += m_allocationInfo.m_size; - } - - void VRAMDrillerRegisterAllocationEvent::StepBackward(Aggregator* data) - { - CategoryInfo* m_categoryInfo = GetCategory(data, m_allocationInfo.m_category); - if (!m_categoryInfo) - { - return; - } - - // Remove the allocation - m_categoryInfo->m_allocations.erase(m_address); - m_categoryInfo->m_allocatedMemory -= m_allocationInfo.m_size; - } - - //========================================================================= - - void VRAMDrillerUnregisterAllocationEvent::StepForward(Aggregator* data) - { - VRAMDataAggregator* aggregator = static_cast(data); - m_removedAllocationInfo = aggregator->FindAndRemoveAllocation(m_address); - - if (!m_removedAllocationInfo) - { - AZ_Warning("System", 0, "Error: Allocation not found for VRAMDrillerUnregisterAllocationEvent"); - } - } - - void VRAMDrillerUnregisterAllocationEvent::StepBackward(Aggregator* data) - { - if (m_removedAllocationInfo == nullptr) - { - AZ_Warning("System", 0, "Error: Allocation not found for VRAMDrillerUnregisterAllocationEvent"); - return; - } - - CategoryInfo* m_categoryInfo = GetCategory(data, m_removedAllocationInfo->m_category); - if (!m_categoryInfo) - { - return; - } - - // "Reallocation" - auto insertionPair = AZStd::make_pair(m_address, m_removedAllocationInfo); - m_categoryInfo->m_allocations.insert(insertionPair); - - // The opposite of deallocation, which is allocating, so we add: - m_categoryInfo->m_allocatedMemory += m_removedAllocationInfo->m_size; - } - - //========================================================================= - - void VRAMDrillerRegisterCategoryEvent::StepForward(Aggregator* data) - { - VRAMDataAggregator* aggregator = static_cast(data); - aggregator->RegisterCategory(m_categoryId, &m_categoryInfo); - } - - void VRAMDrillerRegisterCategoryEvent::StepBackward(Aggregator* data) - { - VRAMDataAggregator* aggregator = static_cast(data); - aggregator->UnregisterCategory(m_categoryId); - } - - //========================================================================= - - void VRAMDrillerUnregisterCategoryEvent::StepForward(Aggregator* data) - { - // TODO: Need to get m_unregisteredCategoryInfo from the category we are unregistering so we can re-register the category on StepBackward - VRAMDataAggregator* aggregator = static_cast(data); - aggregator->UnregisterCategory(m_categoryId); - } - - void VRAMDrillerUnregisterCategoryEvent::StepBackward(Aggregator* data) - { - VRAMDataAggregator* aggregator = static_cast(data); - aggregator->RegisterCategory(m_categoryId, &m_unregisteredCategoryInfo); - } - - //========================================================================= - } // namespace VRAM -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.h b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.h deleted file mode 100644 index 88cb6a69e4..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.h +++ /dev/null @@ -1,159 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_VRAM_EVENTS_H -#define DRILLER_VRAM_EVENTS_H - -#include "Source/Driller/DrillerEvent.h" -#include - -namespace Driller -{ - namespace VRAM - { - //========================================================================= - - struct AllocationInfo - { - // This is an index for which category this allocation belongs to - AZ::u32 m_category = 0; - - // This is an index for which subcategory this allocation belongs to - AZ::u32 m_subcategory = 0; - - const char* m_name = nullptr; - AZ::u64 m_size = 0; - }; - - struct SubcategoryInfo - { - SubcategoryInfo(AZ::u32 subcategoryId) - : m_subcategoryId(subcategoryId) - {} - - SubcategoryInfo(AZ::u32 subcategoryId, const char* subcategoryName) - : m_subcategoryId(subcategoryId) - , m_subcategoryName(subcategoryName) - {} - - AZ::u32 m_subcategoryId = 0; - const char* m_subcategoryName = nullptr; - }; - - typedef AZStd::unordered_map AllocationMapType; - typedef AZStd::vector SubcategoryVectorType; - - struct CategoryInfo - { - const char* m_categoryName = nullptr; - AZ::u32 m_categoryId = 0; - - // The total amount of memory allocated for this category. - // Note that this amount may be different - size_t m_allocatedMemory = 0; - - // Map of all allocations - AllocationMapType m_allocations; - - // Container of all subcategories - SubcategoryVectorType m_subcategories; - }; - - enum VRAMEventType - { - ET_REGISTER_ALLOCATION, - ET_UNREGISTER_ALLOCATION, - ET_REGISTER_CATEGORY, - ET_UNREGISTER_CATEGORY - }; - - //========================================================================= - - class VRAMDrillerRegisterAllocationEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(VRAMDrillerRegisterAllocationEvent, AZ::SystemAllocator, 0) - AZ_RTTI(VRAMDrillerRegisterAllocationEvent, "{458DE527-390F-479E-A5AA-408EF44DB93F}", DrillerEvent); - - VRAMDrillerRegisterAllocationEvent() - : DrillerEvent(VRAM::ET_REGISTER_ALLOCATION) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - AZ::u64 m_address = 0; - VRAM::AllocationInfo m_allocationInfo; - }; - - //========================================================================= - - class VRAMDrillerUnregisterAllocationEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(VRAMDrillerUnregisterAllocationEvent, AZ::SystemAllocator, 0) - AZ_RTTI(VRAMDrillerUnregisterAllocationEvent, "{674F8DE3-11C1-4B1E-B0A5-EB45B5F72F68}", DrillerEvent); - - VRAMDrillerUnregisterAllocationEvent() - : DrillerEvent(VRAM::ET_UNREGISTER_ALLOCATION) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - AZ::u64 m_address = 0; - AllocationInfo* m_removedAllocationInfo = nullptr; - }; - - //========================================================================= - - class VRAMDrillerRegisterCategoryEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(VRAMDrillerRegisterCategoryEvent, AZ::SystemAllocator, 0) - AZ_RTTI(VRAMDrillerUnregisterAllocationEvent, "{F024BA49-E8C9-4699-B999-9E6F988CFF8E}", DrillerEvent); - - VRAMDrillerRegisterCategoryEvent() - : DrillerEvent(VRAM::ET_REGISTER_CATEGORY) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - AZ::u32 m_categoryId = 0; - CategoryInfo m_categoryInfo; - }; - - //========================================================================= - - class VRAMDrillerUnregisterCategoryEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(VRAMDrillerUnregisterCategoryEvent, AZ::SystemAllocator, 0) - AZ_RTTI(VRAMDrillerUnregisterCategoryEvent, "{6549C4A4-70E4-47AD-8688-47C00543197A}", DrillerEvent); - - VRAMDrillerUnregisterCategoryEvent() - : DrillerEvent(VRAM::ET_UNREGISTER_CATEGORY) - {} - - virtual void StepForward(Aggregator* data); - virtual void StepBackward(Aggregator* data); - - AZ::u32 m_categoryId = 0; - CategoryInfo m_unregisteredCategoryInfo; - }; - - //========================================================================= - } // namespace VRAM -} // namespace Driller - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.h b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.h deleted file mode 100644 index 2db8966a2e..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.h +++ /dev/null @@ -1,674 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_BASEDETAILVIEW_H -#define DRILLER_REPLICA_BASEDETAILVIEW_H - -#include -#include -#include -#include -#include - -#include -#include -#include -#include - -#include - -#include "Source/Driller/StripChart.hxx" -#include "Source/Driller/Replica/BaseDetailViewQObject.hxx" -#include "Source/Driller/Replica/ReplicaBandwidthChartData.h" -#include "Source/Driller/Replica/ReplicaDisplayHelpers.h" -#include "Source/Driller/Replica/ReplicaDisplayTypes.h" -#include "Source/Driller/Replica/ReplicaDataView.hxx" -#include "Source/Driller/Replica/ReplicaTreeViewModel.hxx" -#include "Source/Driller/Replica/BaseDetailViewSavedState.h" - -#include - -namespace Driller -{ - template - class BaseDetailTreeViewModel; - - template - class BaseDetailView - : public BaseDetailViewQObject - { - typedef AZStd::unordered_set IdSet; - - friend class BaseDetailTreeViewModel; - friend class ReplicaDataView; - - protected: - - enum class DisplayMode - { - Unknown = -2, - Start, - Active, - Aggregate, - End - }; - - enum class DetailMode - { - Unknown = -2, - Start, - Low, - Medium, - High, - End - }; - - public: - AZ_CLASS_ALLOCATOR(BaseDetailView, AZ::SystemAllocator, 0); - - BaseDetailView(ReplicaDataView* replicaDataView) - : BaseDetailViewQObject(nullptr) - , m_displayMode(DisplayMode::Unknown) - , m_detailMode(DetailMode::Low) - , m_bandwidthUsageDisplayType(ReplicaDisplayTypes::BUDT_COMBINED) - , m_windowStateCRC(0) - , m_splitterStateCRC(0) - , m_treeStateCRC(0) - , m_replicaDataView(replicaDataView) - , m_gui(nullptr) - { - setAttribute(Qt::WA_DeleteOnClose, true); - setWindowFlags(windowFlags() | Qt::WindowMaximizeButtonHint | Qt::WindowMinimizeButtonHint); - - m_gui = azcreate(Ui::BaseDetailView, ()); - m_gui->setupUi(this); - - for (int i = static_cast(DetailMode::Start) + 1; i < static_cast(DetailMode::End); ++i) - { - switch (static_cast(i)) - { - case DetailMode::High: - m_gui->graphDetailType->addItem("High"); - break; - case DetailMode::Medium: - m_gui->graphDetailType->addItem("Medium"); - break; - case DetailMode::Low: - m_gui->graphDetailType->addItem("Low"); - break; - default: - AZ_Error("Standalone Tools", false, "Unknown GraphDetailMode."); - m_gui->graphDetailType->addItem("???"); - break; - } - } - - m_gui->graphDetailType->setCurrentIndex(static_cast(m_detailMode)); - - for (int i = ReplicaDisplayTypes::BUDT_START + 1; i < ReplicaDisplayTypes::BUDT_END; ++i) - { - switch (i) - { - case ReplicaDisplayTypes::BUDT_COMBINED: - m_gui->bandwidthUsageDisplayType->addItem(ReplicaDisplayTypes::DisplayNames::BUDT_COMBINED_NAME); - break; - case ReplicaDisplayTypes::BUDT_SENT: - m_gui->bandwidthUsageDisplayType->addItem(ReplicaDisplayTypes::DisplayNames::BUDT_SENT_NAME); - break; - case ReplicaDisplayTypes::BUDT_RECEIVED: - m_gui->bandwidthUsageDisplayType->addItem(ReplicaDisplayTypes::DisplayNames::BUDT_RECEIVED_NAME); - break; - default: - AZ_Error("StandaloneTools", false, "Unknown Bandwidth Usage Display Type"); - m_gui->bandwidthUsageDisplayType->addItem("???"); - break; - } - } - - m_gui->bandwidthUsageDisplayType->setCurrentIndex(m_bandwidthUsageDisplayType); - - SetupSignals(m_replicaDataView,m_gui); - } - - void LoadSavedState() - { - m_windowStateCRC = CreateWindowGeometryCRC(); - - AZStd::intrusive_ptr windowState = AZ::UserSettings::Find(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - - if (windowState) - { - windowState->RestoreGeometry(this); - } - - m_splitterStateCRC = CreateSplitterStateCRC(); - - auto splitterState = AZ::UserSettings::Find(m_splitterStateCRC, AZ::UserSettings::CT_GLOBAL); - - if (splitterState) - { - QByteArray splitterData((const char*)splitterState->m_splitterStorage.data(), (int)splitterState->m_splitterStorage.size()); - m_gui->splitter->restoreState(splitterData); - } - - m_treeStateCRC = CreateTreeStateCRC(); - - auto treeState = AZ::UserSettings::Find(m_treeStateCRC, AZ::UserSettings::CT_GLOBAL); - - if (treeState) - { - QByteArray treeData((const char*)treeState->m_treeColumnStorage.data(), (int)treeState->m_treeColumnStorage.size()); - m_gui->treeView->header()->restoreState(treeData); - } - } - - ~BaseDetailView() - { - // Save out whatever data we want to save out. - auto pState = AZ::UserSettings::CreateFind(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - if (pState) - { - pState->CaptureGeometry(this); - } - - auto splitterState = AZ::UserSettings::CreateFind(m_splitterStateCRC, AZ::UserSettings::CT_GLOBAL); - if (splitterState) - { - QByteArray qba = m_gui->splitter->saveState(); - splitterState->m_splitterStorage.assign((AZ::u8*)qba.begin(), (AZ::u8*)qba.end()); - } - - auto treeState = AZ::UserSettings::CreateFind(m_treeStateCRC, AZ::UserSettings::CT_GLOBAL); - if (treeState) - { - if (m_gui->treeView && m_gui->treeView->header()) - { - QByteArray qba = m_gui->treeView->header()->saveState(); - treeState->m_treeColumnStorage.assign((AZ::u8*)qba.begin(), (AZ::u8*)qba.end()); - } - } - - if (m_replicaDataView) - { - m_replicaDataView->SignalDialogClosed(this); - } - - azdestroy(m_gui); - } - - void RedrawGraph() - { - AZ_PROFILE_FUNCTION(AzToolsFramework); - switch (m_displayMode) - { - case DisplayMode::Active: - DrawActiveGraph(); - break; - case DisplayMode::Aggregate: - DrawAggregateGraph(); - break; - default: - AZ_Error("BaseDetailView", false, "Trying to display unknown graph configuration."); - } - } - - void SetupTreeView() - { - m_gui->treeView->reset(); - - m_gui->treeView->setSelectionMode(QAbstractItemView::ExtendedSelection); - m_gui->treeView->setExpandsOnDoubleClick(false); - - - m_gui->treeView->header()->setSectionResizeMode(QHeaderView::Interactive); - m_gui->treeView->header()->setStretchLastSection(false); - - OnSetupTreeView(); - SetupTreeViewSignals(m_gui->treeView); - } - - public: - virtual const typename ReplicaBandwidthChartData::FrameMap & GetFrameData() const = 0; - virtual BaseDetailDisplayHelper* FindDetailDisplay(const Key& id) = 0; - virtual const BaseDetailDisplayHelper* FindDetailDisplay(const Key& id) const = 0; - - virtual BaseDetailDisplayHelper* FindAggregateDisplay() { return nullptr; } - virtual Key FindAggregateID() const { return Key(); } - - protected: - void OnDataRangeChanged() override - { - InitializeDisplayData(); - RedrawGraph(); - ShowTreeFrame(m_replicaDataView->GetCurrentFrame()); - } - - void SetAllEnabled(bool enabled) override - { - BaseDetailDisplayHelper* aggregateDisplay = FindAggregateDisplay(); - - if (aggregateDisplay) - { - aggregateDisplay->m_graphEnabled = enabled; - - BaseDisplayHelper* displayHelper = aggregateDisplay->GetDataSetDisplayHelper(); - displayHelper->m_graphEnabled = false; - - const AZStd::vector< BaseDisplayHelper* >& dataSets = displayHelper->GetChildren(); - - for (BaseDisplayHelper* dataSet : dataSets) - { - dataSet->m_graphEnabled = enabled; - } - - displayHelper = aggregateDisplay->GetRPCDisplayHelper(); - displayHelper->m_graphEnabled = false; - - const AZStd::vector< BaseDisplayHelper* >& rpcs = displayHelper->GetChildren(); - - for (BaseDisplayHelper* rpc : rpcs) - { - rpc->m_graphEnabled = enabled; - } - } - - for (Key& currentId : m_activeIds) - { - BaseDetailDisplayHelper* detailHelper = FindDetailDisplay(currentId); - detailHelper->m_graphEnabled = enabled; - - BaseDisplayHelper* displayHelper = detailHelper->GetDataSetDisplayHelper(); - displayHelper->m_graphEnabled = enabled; - - const AZStd::vector< BaseDisplayHelper* >& dataSets = displayHelper->GetChildren(); - - for (BaseDisplayHelper* dataSet : dataSets) - { - dataSet->m_graphEnabled = enabled; - } - - displayHelper = detailHelper->GetRPCDisplayHelper(); - displayHelper->m_graphEnabled = enabled; - - const AZStd::vector< BaseDisplayHelper* >& rpcs = displayHelper->GetChildren(); - - for (BaseDisplayHelper* rpc : rpcs) - { - rpc->m_graphEnabled = enabled; - } - } - - LayoutChanged(); - RedrawGraph(); - } - - void SetSelectedEnabled(bool enabled) override - { - QModelIndexList selection = m_gui->treeView->selectionModel()->selectedIndexes(); - - for (QModelIndex& index : selection) - { - static_cast(index.internalPointer())->m_graphEnabled = enabled; - } - - LayoutChanged(); - RedrawGraph(); - } - - void OnCollapseAll() override - { - m_gui->treeView->collapseAll(); - } - - void OnExpandAll() override - { - m_gui->treeView->expandAll(); - } - - void OnDoubleClicked(const QModelIndex& clickedIndex) override - { - if (!clickedIndex.isValid()) - { - return; - } - - BaseDisplayHelper* displayHelper = static_cast(clickedIndex.internalPointer()); - - displayHelper->m_graphEnabled = !displayHelper->m_graphEnabled; - - LayoutChanged(); - RedrawGraph(); - } - - void OnSelectionChanged(const QItemSelection& selected, const QItemSelection& deselected) override - { - for (const QModelIndex& selectedIndex : selected.indexes()) - { - BaseDisplayHelper* displayHelper = static_cast(selectedIndex.internalPointer()); - - displayHelper->m_selected = true; - displayHelper->m_areaGraphPlotHelper.SetHighlighted(displayHelper->m_selected); - } - - for (const QModelIndex& deselectedIndex : deselected.indexes()) - { - BaseDisplayHelper* displayHelper = static_cast(deselectedIndex.internalPointer()); - - displayHelper->m_selected = false; - displayHelper->m_areaGraphPlotHelper.SetHighlighted(displayHelper->m_selected); - } - } - - void OnUpdateDisplay(const QModelIndex& startIndex, const QModelIndex& endIndex) override - { - (void)startIndex; - (void)endIndex; - - RedrawGraph(); - } - - void OnDisplayModeChanged(int displayMode) override - { - if (displayMode > static_cast(DisplayMode::Start) && displayMode < static_cast(DisplayMode::End)) - { - if (m_displayMode != static_cast(displayMode)) - { - m_displayMode = static_cast(displayMode); - - InitializeDisplayData(); - SetupTreeView(); - RedrawGraph(); - } - } - } - - void OnGraphDetailChanged(int graphDetail) override - { - if (graphDetail > static_cast(DetailMode::Start) && graphDetail < static_cast(DetailMode::End)) - { - if (m_detailMode != static_cast(graphDetail)) - { - m_detailMode = static_cast(graphDetail); - RedrawGraph(); - } - } - } - - void OnBandwidthDisplayUsageTypeChanged(int bandwidthUsageType) - { - if (bandwidthUsageType > ReplicaDisplayTypes::BUDT_START && bandwidthUsageType < ReplicaDisplayTypes::BUDT_END) - { - if (m_bandwidthUsageDisplayType != static_cast(bandwidthUsageType)) - { - m_bandwidthUsageDisplayType = static_cast(bandwidthUsageType); - RedrawGraph(); - } - } - } - - void OnInspectedSeries(size_t seriesId) - { - (void)seriesId; - - // Nothing to see here - } - - void OnSelectedSeries(size_t seriesId, int position) - { - (void)seriesId; - - EBUS_EVENT_ID(m_replicaDataView->GetCaptureWindowIdentity(), DrillerCaptureWindowRequestBus, ScrubToFrameRequest, position); - } - - bool IsInDisplayMode(DisplayMode displayMode) - { - return m_displayMode == displayMode; - } - - protected: - - void SignalDataViewDestroyed(ReplicaDataView* dataView) - { - if (dataView == m_replicaDataView) - { - m_replicaDataView = nullptr; - } - - close(); - } - - virtual void InitializeDisplayData() = 0; - virtual void LayoutChanged() = 0; - virtual void OnSetupTreeView() = 0; - virtual void ShowTreeFrame(FrameNumberType frameId) = 0; - - virtual AZ::u32 CreateWindowGeometryCRC() = 0; - virtual AZ::u32 CreateSplitterStateCRC() = 0; - virtual AZ::u32 CreateTreeStateCRC() = 0; - - DisplayMode m_displayMode; - DetailMode m_detailMode; - - ReplicaDisplayTypes::BandwidthUsageDisplayType m_bandwidthUsageDisplayType; - - AZ::u32 m_windowStateCRC; - AZ::u32 m_splitterStateCRC; - AZ::u32 m_treeStateCRC; - - ReplicaDataView* m_replicaDataView; - IdSet m_activeIds; - IdSet m_activeInspectedIds; - Ui::BaseDetailView* m_gui; - - private: - void DrawActiveGraph(); - void DrawHighDetailActiveGraph(BaseDetailDisplayHelper* detailDisplayHelper, const BandwidthUsageContainer* usageContainer, FrameNumberType frameId); - void DrawMediumDetailActiveGraph(BaseDetailDisplayHelper* detailDisplayHelper, const BandwidthUsageContainer* usageContainer, FrameNumberType frameId); - void DrawLowDetailActiveGraph(BaseDetailDisplayHelper* detailDisplayHelper, const BandwidthUsageContainer* usageContainer, FrameNumberType frameId); - - void DrawAggregateGraph(); - - void PlotBatchedGraphData(AreaGraphPlotHelper& areaPlotHelper, FrameNumberType frameId, const BandwidthUsageAggregator& usageAggregator) - { - switch (m_bandwidthUsageDisplayType) - { - case ReplicaDisplayTypes::BUDT_COMBINED: - areaPlotHelper.PlotBatchedData(frameId, static_cast(usageAggregator.m_bytesSent + usageAggregator.m_bytesReceived)); - break; - case ReplicaDisplayTypes::BUDT_SENT: - areaPlotHelper.PlotBatchedData(frameId, static_cast(usageAggregator.m_bytesSent)); - break; - case ReplicaDisplayTypes::BUDT_RECEIVED: - areaPlotHelper.PlotBatchedData(frameId, static_cast(usageAggregator.m_bytesReceived)); - break; - default: - AZ_Error("BaseDetailView", false, "Unknown bandwidth usage display type."); - } - } - - void ConfigureBaseDetailDisplayHelper(BaseDetailDisplayHelper* detailDisplayHelper); - - void ConfigureGraphAxis() - { - const QColor markerColor(Qt::red); - m_gui->areaChart->ResetChart(); - m_gui->areaChart->ConfigureVerticalAxis("Bandwidth Usage", m_replicaDataView->GetAverageFrameBandwidthBudget()); - m_gui->areaChart->ConfigureHorizontalAxis("Frame", static_cast(m_replicaDataView->GetAxisStartFrame()), static_cast(m_replicaDataView->GetAxisEndFrame())); - m_gui->areaChart->AddMarker(Charts::AxisType::Horizontal, static_cast(m_replicaDataView->GetCurrentFrame()), markerColor); - } - }; - - template - class BaseDetailTreeViewModel - : public ReplicaTreeViewModel - { - typedef ReplicaBandwidthChartData BandwidthChartData; - public: - AZ_CLASS_ALLOCATOR(BaseDetailTreeViewModel, AZ::SystemAllocator, 0); - BaseDetailTreeViewModel(BaseDetailView* detailView) - : ReplicaTreeViewModel(nullptr) - , m_baseDetailView(detailView) - { - } - - void RefreshView(FrameNumberType frameId) - { - AZ_PROFILE_FUNCTION(AzToolsFramework); - AZStd::unordered_set< Key > discoveredSet; - - m_tableViewOrdering.clear(); - - if (m_baseDetailView->IsInDisplayMode(BaseDetailView::DisplayMode::Active)) - { - if (m_baseDetailView->m_replicaDataView->HideInactiveInspectedElements()) - { - m_tableViewOrdering.insert(m_tableViewOrdering.begin(), m_baseDetailView->m_activeInspectedIds.begin(), m_baseDetailView->m_activeInspectedIds.end()); - } - else - { - m_tableViewOrdering.insert(m_tableViewOrdering.begin(), m_baseDetailView->m_activeIds.begin(), m_baseDetailView->m_activeIds.end()); - } - - } - - const typename BandwidthChartData::FrameMap& frameMap = m_baseDetailView->GetFrameData(); - auto frameIter = frameMap.find(frameId); - - BaseDetailDisplayHelper* aggregateDisplayHelper = m_baseDetailView->FindAggregateDisplay(); - - if (aggregateDisplayHelper && m_baseDetailView->IsInDisplayMode(BaseDetailView::DisplayMode::Aggregate)) - { - aggregateDisplayHelper->ResetBandwidthUsage(); - - if (m_baseDetailView->m_replicaDataView->HideInactiveInspectedElements()) - { - if (frameIter != frameMap.end()) - { - m_tableViewOrdering.push_back(m_baseDetailView->FindAggregateID()); - } - } - else - { - m_tableViewOrdering.push_back(m_baseDetailView->FindAggregateID()); - } - } - else - { - aggregateDisplayHelper = nullptr; - } - - if (frameIter != frameMap.end()) - { - const typename BandwidthChartData::BandwidthUsageMap* usageMap = frameIter->second; - - for (typename BandwidthChartData::BandwidthUsageMap::const_iterator usageIter = usageMap->begin(); - usageIter != usageMap->end(); - ++usageIter) - { - const BandwidthUsageContainer* usageContainer = usageIter->second; - - const Key& idKey = usageIter->first; - - BaseDetailDisplayHelper* detailHelper = m_baseDetailView->FindDetailDisplay(idKey); - - if (detailHelper) - { - auto insert = discoveredSet.insert(idKey); - - if (insert.second) - { - detailHelper->ResetBandwidthUsage(); - } - - DataSetDisplayFilter* dataSetDisplayFilter = detailHelper->GetDataSetDisplayHelper(); - - if (dataSetDisplayFilter) - { - const BandwidthUsageContainer::UsageAggregationMap& dataSetUsage = usageContainer->GetDataTypeUsageAggregation(BandwidthUsage::DataType::DATA_SET); - - for (const auto& usagePair : dataSetUsage) - { - const BandwidthUsage& currentUsage = usagePair.second; - - detailHelper->AddDataSetUsage(currentUsage); - - if (aggregateDisplayHelper) - { - aggregateDisplayHelper->AddDataSetUsage(currentUsage); - } - } - } - - RPCDisplayFilter* rpcDisplayFilter = detailHelper->GetRPCDisplayHelper(); - - if (rpcDisplayFilter) - { - const BandwidthUsageContainer::UsageAggregationMap& rpcUsage = usageContainer->GetDataTypeUsageAggregation(BandwidthUsage::DataType::REMOTE_PROCEDURE_CALL); - - for (const auto& usagePair : rpcUsage) - { - const BandwidthUsage& currentUsage = usagePair.second; - - detailHelper->AddRPCUsage(currentUsage); - - if (aggregateDisplayHelper) - { - aggregateDisplayHelper->AddRPCUsage(currentUsage); - } - } - } - } - } - } - else - { - if (aggregateDisplayHelper) - { - aggregateDisplayHelper->ResetBandwidthUsage(); - } - - for (Key& currentId : m_tableViewOrdering) - { - BaseDetailDisplayHelper* detailDisplayHelper = m_baseDetailView->FindDetailDisplay(currentId); - - if (detailDisplayHelper) - { - detailDisplayHelper->ResetBandwidthUsage(); - } - } - } - - AZStd::sort(m_tableViewOrdering.begin(), m_tableViewOrdering.end(), AZStd::less()); - - layoutChanged(); - } - - protected: - - int GetRootRowCount() const override - { - return static_cast(m_tableViewOrdering.size()); - } - - const BaseDisplayHelper* FindDisplayHelperAtRoot(int row) const override - { - if (row < 0 || row >= m_tableViewOrdering.size()) - { - return nullptr; - } - - return m_baseDetailView->FindDetailDisplay(m_tableViewOrdering[row]); - } - - BaseDetailView* m_baseDetailView; - AZStd::vector< Key > m_tableViewOrdering; - }; -} - -#include "BaseDetailView.inl" -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.inl b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.inl deleted file mode 100644 index 07aaff4ba3..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.inl +++ /dev/null @@ -1,456 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -namespace Driller -{ - template - void BaseDetailView::DrawActiveGraph() - { - const BandwidthUsageContainer emptyContainer; - const typename ReplicaBandwidthChartData::BandwidthUsageMap s_emptyMap; - - ConfigureGraphAxis(); - - for (const Key& currentId : m_activeIds) - { - BaseDetailDisplayHelper* detailDisplayHelper = FindDetailDisplay(currentId); - - ConfigureBaseDetailDisplayHelper(detailDisplayHelper); - } - - const typename ReplicaBandwidthChartData::FrameMap& frameMap = GetFrameData(); - - for (FrameNumberType frameId = m_replicaDataView->GetStartFrame(); frameId <= m_replicaDataView->GetEndFrame(); ++frameId) - { - typename ReplicaBandwidthChartData::FrameMap::const_iterator frameIter = frameMap.find(frameId); - const typename ReplicaBandwidthChartData::BandwidthUsageMap* usageMap = nullptr; - - if (frameIter != frameMap.end()) - { - usageMap = frameIter->second; - } - else - { - usageMap = &s_emptyMap; - } - - AZ_Assert(usageMap != nullptr,"Null pointer added to data map"); - if (usageMap == nullptr) - { - continue; - } - - for (const Key& currentId : m_activeIds) - { - const BandwidthUsageContainer* usageContainer = &emptyContainer; - typename ReplicaBandwidthChartData::BandwidthUsageMap::const_iterator usageIter = usageMap->find(currentId); - - if (usageIter != usageMap->end()) - { - usageContainer = usageIter->second; - } - else - { - usageContainer = &emptyContainer; - } - - BaseDetailDisplayHelper* detailDisplayHelper = FindDetailDisplay(currentId); - - switch (m_detailMode) - { - case DetailMode::Low: - DrawLowDetailActiveGraph(detailDisplayHelper,usageContainer,frameId); - break; - case DetailMode::Medium: - DrawMediumDetailActiveGraph(detailDisplayHelper, usageContainer, frameId); - break; - case DetailMode::High: - DrawHighDetailActiveGraph(detailDisplayHelper, usageContainer, frameId); - break; - default: - break; - } - } - } - } - - template - void BaseDetailView::DrawLowDetailActiveGraph(BaseDetailDisplayHelper* detailDisplayHelper, const BandwidthUsageContainer* usageContainer, FrameNumberType frameId) - { - if (detailDisplayHelper->m_graphEnabled) - { - BandwidthUsageAggregator usageAggregator; - usageAggregator.m_bytesSent = usageContainer->GetTotalBytesSent(); - usageAggregator.m_bytesReceived = usageContainer->GetTotalBytesReceived(); - - PlotBatchedGraphData(detailDisplayHelper->m_areaGraphPlotHelper, frameId, usageAggregator); - } - } - - template - void BaseDetailView::DrawMediumDetailActiveGraph(BaseDetailDisplayHelper* detailDisplayHelper, const BandwidthUsageContainer* usageContainer, FrameNumberType frameId) - { - DataSetDisplayFilter* dataSetFilter = detailDisplayHelper->GetDataSetDisplayHelper(); - - if (dataSetFilter && dataSetFilter->m_graphEnabled) - { - BandwidthUsageAggregator overallDataSetUsage; - const BandwidthUsageContainer::UsageAggregationMap& dataSetUsage = usageContainer->GetDataTypeUsageAggregation(BandwidthUsage::DataType::DATA_SET); - - const AZStd::vector< BaseDisplayHelper* >& dataSets = dataSetFilter->GetChildren(); - - for (BaseDisplayHelper* helper : dataSets) - { - KeyedDisplayHelper* dataSet = static_cast*>(helper); - const BandwidthUsageContainer::UsageAggregationMap::const_iterator usageIter = dataSetUsage.find(dataSet->GetKey()); - - if (usageIter != dataSetUsage.end()) - { - const BandwidthUsage& currentUsage = usageIter->second; - overallDataSetUsage.m_bytesSent += currentUsage.m_usageAggregator.m_bytesSent; - overallDataSetUsage.m_bytesReceived += currentUsage.m_usageAggregator.m_bytesReceived; - } - } - - PlotBatchedGraphData(dataSetFilter->m_areaGraphPlotHelper, frameId, overallDataSetUsage); - } - - RPCDisplayFilter* rpcFilter = detailDisplayHelper->GetRPCDisplayHelper(); - - if (rpcFilter && rpcFilter->m_graphEnabled) - { - BandwidthUsageAggregator overallRPCUsage; - const BandwidthUsageContainer::UsageAggregationMap& rpcUsage = usageContainer->GetDataTypeUsageAggregation(BandwidthUsage::DataType::REMOTE_PROCEDURE_CALL); - - const AZStd::vector< BaseDisplayHelper* >& rpcs = rpcFilter->GetChildren(); - - for (BaseDisplayHelper* helper : rpcs) - { - KeyedDisplayHelper* rpc = static_cast*>(helper); - const BandwidthUsageContainer::UsageAggregationMap::const_iterator usageIter = rpcUsage.find(rpc->GetKey()); - - if (usageIter != rpcUsage.end()) - { - const BandwidthUsage& currentUsage = usageIter->second; - - overallRPCUsage.m_bytesSent += currentUsage.m_usageAggregator.m_bytesSent; - overallRPCUsage.m_bytesReceived += currentUsage.m_usageAggregator.m_bytesReceived; - } - } - - PlotBatchedGraphData(rpcFilter->m_areaGraphPlotHelper, frameId, overallRPCUsage); - } - } - - template - void BaseDetailView::DrawHighDetailActiveGraph(BaseDetailDisplayHelper* detailDisplayHelper, const BandwidthUsageContainer* usageContainer, FrameNumberType frameId) - { - DataSetDisplayFilter* dataSetFilter = detailDisplayHelper->GetDataSetDisplayHelper(); - - if (dataSetFilter) - { - const BandwidthUsageContainer::UsageAggregationMap& dataSetUsage = usageContainer->GetDataTypeUsageAggregation(BandwidthUsage::DataType::DATA_SET); - const AZStd::vector< BaseDisplayHelper* >& dataSets = dataSetFilter->GetChildren(); - - for (BaseDisplayHelper* helper : dataSets) - { - if (helper->m_graphEnabled) - { - KeyedDisplayHelper* dataSet = static_cast*>(helper); - const BandwidthUsageContainer::UsageAggregationMap::const_iterator usageIter = dataSetUsage.find(dataSet->GetKey()); - - if (usageIter == dataSetUsage.end()) - { - const BandwidthUsageAggregator emptyUsage; - PlotBatchedGraphData(dataSet->m_areaGraphPlotHelper, frameId, emptyUsage); - } - else - { - const BandwidthUsage& currentUsage = usageIter->second; - PlotBatchedGraphData(dataSet->m_areaGraphPlotHelper, frameId, currentUsage.m_usageAggregator); - } - } - } - } - - RPCDisplayFilter* rpcFilter = detailDisplayHelper->GetRPCDisplayHelper(); - - if (rpcFilter) - { - const BandwidthUsageContainer::UsageAggregationMap& rpcUsage = usageContainer->GetDataTypeUsageAggregation(BandwidthUsage::DataType::REMOTE_PROCEDURE_CALL); - - const AZStd::vector< BaseDisplayHelper* >& rpcs = rpcFilter->GetChildren(); - - for (BaseDisplayHelper* helper : rpcs) - { - if (helper->m_graphEnabled) - { - KeyedDisplayHelper* rpc = static_cast*>(helper); - const BandwidthUsageContainer::UsageAggregationMap::const_iterator usageIter = rpcUsage.find(rpc->GetKey()); - - if (usageIter == rpcUsage.end()) - { - const BandwidthUsageAggregator emptyUsage; - PlotBatchedGraphData(rpc->m_areaGraphPlotHelper, frameId, emptyUsage); - } - else - { - const BandwidthUsage& currentUsage = usageIter->second; - PlotBatchedGraphData(rpc->m_areaGraphPlotHelper, frameId, currentUsage.m_usageAggregator); - } - } - } - } - } - - // GRAPHCHANGE - template - void BaseDetailView::DrawAggregateGraph() - { - BandwidthUsageContainer emptyContainer; - - ConfigureGraphAxis(); - - BaseDetailDisplayHelper* aggregateDisplayHelper = FindAggregateDisplay(); - - ConfigureBaseDetailDisplayHelper(aggregateDisplayHelper); - - const typename ReplicaBandwidthChartData::FrameMap& frameMap = GetFrameData(); - - for (FrameNumberType frameId = m_replicaDataView->GetStartFrame(); frameId <= m_replicaDataView->GetEndFrame(); ++frameId) - { - typename ReplicaBandwidthChartData::FrameMap::const_iterator frameIter = frameMap.find(frameId); - const typename ReplicaBandwidthChartData::BandwidthUsageMap* usageMap = nullptr; - - if (frameIter != frameMap.end()) - { - usageMap = frameIter->second; - } - else - { - static typename ReplicaBandwidthChartData::BandwidthUsageMap s_emptyMap; - usageMap = &s_emptyMap; - } - - AZ_Assert(usageMap != nullptr,"Null pointer added to data map"); - if (usageMap == nullptr) - { - continue; - } - - BandwidthUsageAggregator overallUsageAggregator; - - BandwidthUsageAggregator overallDataSetUsage; - AZStd::unordered_map dataSetAggregators; - DataSetDisplayFilter* dataSetFilter = aggregateDisplayHelper->GetDataSetDisplayHelper(); - - BandwidthUsageAggregator overallRPCUsage; - AZStd::unordered_map rpcAggregators; - RPCDisplayFilter* rpcFilter = aggregateDisplayHelper->GetRPCDisplayHelper(); - - for (const Key& currentId : m_activeIds) - { - const BandwidthUsageContainer* usageContainer = nullptr; - typename ReplicaBandwidthChartData::BandwidthUsageMap::const_iterator usageIter = usageMap->find(currentId); - - if (usageIter != usageMap->end()) - { - usageContainer = usageIter->second; - - overallUsageAggregator.m_bytesSent += usageContainer->GetTotalBytesSent(); - overallUsageAggregator.m_bytesReceived += usageContainer->GetTotalBytesReceived(); - } - else - { - usageContainer = &emptyContainer; - } - - if (dataSetFilter) - { - const BandwidthUsageContainer::UsageAggregationMap& dataSetUsage = usageContainer->GetDataTypeUsageAggregation(BandwidthUsage::DataType::DATA_SET); - - const AZStd::vector< BaseDisplayHelper* >& dataSets = dataSetFilter->GetChildren(); - - for (BaseDisplayHelper* helper : dataSets) - { - KeyedDisplayHelper* dataSet = static_cast*>(helper); - const BandwidthUsageContainer::UsageAggregationMap::const_iterator usageAggIter = dataSetUsage.find(dataSet->GetKey()); - - if (usageAggIter != dataSetUsage.end()) - { - const BandwidthUsage& currentUsage = usageAggIter->second; - - overallDataSetUsage.m_bytesSent += currentUsage.m_usageAggregator.m_bytesSent; - overallDataSetUsage.m_bytesReceived += currentUsage.m_usageAggregator.m_bytesReceived; - - if (helper->m_graphEnabled) - { - BandwidthUsageAggregator& dataSetAggregator = dataSetAggregators[dataSet->GetKey()]; - dataSetAggregator.m_bytesSent += currentUsage.m_usageAggregator.m_bytesSent; - dataSetAggregator.m_bytesReceived += currentUsage.m_usageAggregator.m_bytesReceived; - } - } - } - } - - if (rpcFilter) - { - const BandwidthUsageContainer::UsageAggregationMap& rpcUsage = usageContainer->GetDataTypeUsageAggregation(BandwidthUsage::DataType::REMOTE_PROCEDURE_CALL); - - const AZStd::vector< BaseDisplayHelper* >& rpcs = rpcFilter->GetChildren(); - - for (BaseDisplayHelper* helper : rpcs) - { - KeyedDisplayHelper* rpc = static_cast*>(helper); - const BandwidthUsageContainer::UsageAggregationMap::const_iterator usageAggIter = rpcUsage.find(rpc->GetKey()); - - if (usageAggIter != rpcUsage.end()) - { - const BandwidthUsage& currentUsage = usageAggIter->second; - - overallRPCUsage.m_bytesSent += currentUsage.m_usageAggregator.m_bytesSent; - overallRPCUsage.m_bytesReceived += currentUsage.m_usageAggregator.m_bytesReceived; - - if (helper->m_graphEnabled) - { - BandwidthUsageAggregator& rpcAggregator = rpcAggregators[rpc->GetKey()]; - rpcAggregator.m_bytesSent += currentUsage.m_usageAggregator.m_bytesSent; - rpcAggregator.m_bytesReceived += currentUsage.m_usageAggregator.m_bytesReceived; - } - } - } - } - } - - if (m_detailMode == DetailMode::Low) - { - if (aggregateDisplayHelper->m_graphEnabled) - { - PlotBatchedGraphData(aggregateDisplayHelper->m_areaGraphPlotHelper, frameId, overallUsageAggregator); - } - } - else if (m_detailMode == DetailMode::Medium) - { - if (dataSetFilter && dataSetFilter->m_graphEnabled) - { - PlotBatchedGraphData(dataSetFilter->m_areaGraphPlotHelper, frameId, overallDataSetUsage); - } - - if (rpcFilter && rpcFilter->m_graphEnabled) - { - PlotBatchedGraphData(rpcFilter->m_areaGraphPlotHelper, frameId, overallRPCUsage); - } - } - else if (m_detailMode == DetailMode::High) - { - if (dataSetFilter) - { - const AZStd::vector< BaseDisplayHelper* >& dataSets = dataSetFilter->GetChildren(); - for (BaseDisplayHelper* helper : dataSets) - { - if (!helper->m_graphEnabled) - { - continue; - } - - KeyedDisplayHelper* dataSet = static_cast*>(helper); - BandwidthUsageAggregator& dataSetAggregator = dataSetAggregators[dataSet->GetKey()]; - - PlotBatchedGraphData(helper->m_areaGraphPlotHelper, frameId, dataSetAggregator); - } - } - - if (rpcFilter) - { - const AZStd::vector< BaseDisplayHelper* >& rpcs = rpcFilter->GetChildren(); - for (BaseDisplayHelper* helper : rpcs) - { - if (!helper->m_graphEnabled) - { - continue; - } - - KeyedDisplayHelper* rpc = static_cast*>(helper); - BandwidthUsageAggregator& rpcAggregator = rpcAggregators[rpc->GetKey()]; - - PlotBatchedGraphData(helper->m_areaGraphPlotHelper, frameId, rpcAggregator); - } - } - } - } - } - - template - void BaseDetailView::ConfigureBaseDetailDisplayHelper(BaseDetailDisplayHelper* detailDisplayHelper) - { - detailDisplayHelper->ResetGraphConfiguration(); - - if (detailDisplayHelper->m_graphEnabled && m_detailMode == DetailMode::Low) - { - detailDisplayHelper->m_areaGraphPlotHelper.SetupPlotHelper(m_gui->areaChart, detailDisplayHelper->GetDisplayName(), m_replicaDataView->GetActiveFrameCount()); - detailDisplayHelper->m_areaGraphPlotHelper.SetHighlighted(detailDisplayHelper->m_selected); - } - - if (m_detailMode == DetailMode::Medium || m_detailMode == DetailMode::High) - { - RPCDisplayFilter* rpcFilter = detailDisplayHelper->GetRPCDisplayHelper(); - - if (rpcFilter) - { - if (m_detailMode == DetailMode::Medium) - { - if (rpcFilter->m_graphEnabled) - { - rpcFilter->m_areaGraphPlotHelper.SetupPlotHelper(m_gui->areaChart, rpcFilter->GetDisplayName(), m_replicaDataView->GetActiveFrameCount()); - rpcFilter->m_areaGraphPlotHelper.SetHighlighted(rpcFilter->m_selected); - } - } - else if (m_detailMode == DetailMode::High) - { - const AZStd::vector< BaseDisplayHelper* >& rpcs = rpcFilter->GetChildren(); - - for (BaseDisplayHelper* helper : rpcs) - { - if (helper->m_graphEnabled) - { - helper->m_areaGraphPlotHelper.SetupPlotHelper(m_gui->areaChart, helper->GetDisplayName(), m_replicaDataView->GetActiveFrameCount()); - helper->m_areaGraphPlotHelper.SetHighlighted(helper->m_selected); - } - } - } - } - - DataSetDisplayFilter* dataSetFilter = detailDisplayHelper->GetDataSetDisplayHelper(); - - if (dataSetFilter) - { - if (m_detailMode == DetailMode::Medium) - { - if (dataSetFilter->m_graphEnabled) - { - dataSetFilter->m_areaGraphPlotHelper.SetupPlotHelper(m_gui->areaChart, dataSetFilter->GetDisplayName(), m_replicaDataView->GetActiveFrameCount()); - dataSetFilter->m_areaGraphPlotHelper.SetHighlighted(dataSetFilter->m_selected); - } - } - else if (m_detailMode == DetailMode::High) - { - const AZStd::vector< BaseDisplayHelper* >& dataSets = dataSetFilter->GetChildren(); - - for (BaseDisplayHelper* helper : dataSets) - { - if (helper->m_graphEnabled) - { - helper->m_areaGraphPlotHelper.SetupPlotHelper(m_gui->areaChart, dataSetFilter->GetDisplayName(), m_replicaDataView->GetActiveFrameCount()); - helper->m_areaGraphPlotHelper.SetHighlighted(helper->m_selected); - } - } - } - } - } - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.cpp b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.cpp deleted file mode 100644 index 4c71c2bf57..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.cpp +++ /dev/null @@ -1,122 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "BaseDetailViewQObject.hxx" -#include -#include - -#include "Source/Driller/AreaChart.hxx" -#include "Source/Driller/Replica/ReplicaDataView.hxx" - -namespace Driller -{ - BaseDetailViewQObject::BaseDetailViewQObject(QWidget* parent) - : QDialog(parent) - { - } - - void BaseDetailViewQObject::SetupSignals(ReplicaDataView* dataView, Ui::BaseDetailView* detailView) - { - QObject::connect(dataView,SIGNAL(DataRangeChanged()),this,SLOT(DataRangeChanged())); - QObject::connect(detailView->treeView,SIGNAL(doubleClicked(const QModelIndex&)),this,SLOT(DoubleClicked(const QModelIndex&))); - QObject::connect(detailView->bandwidthUsageDisplayType, SIGNAL(currentIndexChanged(int)), this, SLOT(BandwidthDisplayUsageTypeChanged(int))); - QObject::connect(detailView->graphDetailType, SIGNAL(currentIndexChanged(int)), this, SLOT(GraphDetailChanged(int))); - - detailView->areaChart->EnableMouseInspection(true); - - QObject::connect(detailView->areaChart, SIGNAL(InspectedSeries(size_t)), this, SLOT(InspectedSeries(size_t))); - QObject::connect(detailView->areaChart, SIGNAL(SelectedSeries(size_t, int)), this, SLOT(SelectedSeries(size_t, int))); - - QObject::connect(detailView->configToolbar,SIGNAL(hideAll()),this,SLOT(HideAll())); - QObject::connect(detailView->configToolbar,SIGNAL(hideSelected()),this,SLOT(HideSelected())); - QObject::connect(detailView->configToolbar,SIGNAL(showAll()),this,SLOT(ShowAll())); - QObject::connect(detailView->configToolbar,SIGNAL(showSelected()),this,SLOT(ShowSelected())); - QObject::connect(detailView->configToolbar,SIGNAL(collapseAll()),this,SLOT(CollapseAll())); - QObject::connect(detailView->configToolbar,SIGNAL(expandAll()),this,SLOT(ExpandAll())); - } - - void BaseDetailViewQObject::SetupTreeViewSignals(QTreeView* treeView) - { - QObject::connect(treeView->selectionModel(),SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),this, SLOT(SelectionChanged(const QItemSelection&, const QItemSelection&))); - } - - void BaseDetailViewQObject::DataRangeChanged() - { - OnDataRangeChanged(); - } - - void BaseDetailViewQObject::HideAll() - { - SetAllEnabled(false); - } - - void BaseDetailViewQObject::ShowAll() - { - SetAllEnabled(true); - } - - void BaseDetailViewQObject::HideSelected() - { - SetSelectedEnabled(false); - } - - void BaseDetailViewQObject::ShowSelected() - { - SetSelectedEnabled(true); - } - - void BaseDetailViewQObject::CollapseAll() - { - OnCollapseAll(); - } - - void BaseDetailViewQObject::ExpandAll() - { - OnExpandAll(); - } - - void BaseDetailViewQObject::DoubleClicked(const QModelIndex& index) - { - OnDoubleClicked(index); - } - - void BaseDetailViewQObject::SelectionChanged(const QItemSelection& selected, const QItemSelection& deselected) - { - OnSelectionChanged(selected,deselected); - } - - void BaseDetailViewQObject::UpdateDisplay(const QModelIndex& startIndex, const QModelIndex& endIndex) - { - OnUpdateDisplay(startIndex,endIndex); - } - - void BaseDetailViewQObject::DisplayModeChanged(int aggregationType) - { - OnDisplayModeChanged(aggregationType); - } - - void BaseDetailViewQObject::GraphDetailChanged(int graphDetailType) - { - OnGraphDetailChanged(graphDetailType); - } - - void BaseDetailViewQObject::BandwidthDisplayUsageTypeChanged(int bandwidthUsageType) - { - OnBandwidthDisplayUsageTypeChanged(bandwidthUsageType); - } - - void BaseDetailViewQObject::InspectedSeries(size_t seriesId) - { - OnInspectedSeries(seriesId); - } - - void BaseDetailViewQObject::SelectedSeries(size_t seriesId, int position) - { - OnSelectedSeries(seriesId, position); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.hxx b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.hxx deleted file mode 100644 index 16dbaed6fa..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.hxx +++ /dev/null @@ -1,88 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_BASEDETAILVIEWQOBJECT_H -#define DRILLER_REPLICA_BASEDETAILVIEWQOBJECT_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#include -#include -#endif - -namespace Ui -{ - class BaseDetailView; -} - -namespace Driller -{ - class ReplicaDataView; - - // This class is a work around because QT does not play nicely with templates. - // So I'm going to do all of my Qt related signalling here and just pass it along - // to a virtual function. - class BaseDetailViewQObject : public QDialog - { - Q_OBJECT - public: - - AZ_CLASS_ALLOCATOR(BaseDetailViewQObject, AZ::SystemAllocator,0); - - BaseDetailViewQObject(QWidget* parent = nullptr); - - void SetupSignals(ReplicaDataView* dataView, Ui::BaseDetailView* detailView); - void SetupTreeViewSignals(QTreeView* treeView); - - public slots: - void DataRangeChanged(); - void HideAll(); - void ShowAll(); - - void HideSelected(); - void ShowSelected(); - - void CollapseAll(); - void ExpandAll(); - - void DoubleClicked(const QModelIndex& index); - void SelectionChanged(const QItemSelection& selected, const QItemSelection& deselected); - void UpdateDisplay(const QModelIndex& startIndex, const QModelIndex& endIndex); - - void DisplayModeChanged(int); - void GraphDetailChanged(int); - void BandwidthDisplayUsageTypeChanged(int); - - void InspectedSeries(size_t seriesId); - void SelectedSeries(size_t seriesId, int position); - - protected: - virtual void OnDataRangeChanged() = 0; - - virtual void SetAllEnabled(bool enabled) = 0; - virtual void SetSelectedEnabled(bool enabled) = 0; - - virtual void OnCollapseAll() = 0; - virtual void OnExpandAll() = 0; - - virtual void OnDoubleClicked(const QModelIndex& index) = 0; - virtual void OnSelectionChanged(const QItemSelection& selected, const QItemSelection& deselected) = 0; - virtual void OnUpdateDisplay(const QModelIndex& startIndex, const QModelIndex& endIndex) = 0; - - virtual void OnDisplayModeChanged(int) = 0; - virtual void OnGraphDetailChanged(int) = 0; - virtual void OnBandwidthDisplayUsageTypeChanged(int) = 0; - - virtual void OnInspectedSeries(size_t seriesId) = 0; - virtual void OnSelectedSeries(size_t seriesId, int position) = 0; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewSavedState.h b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewSavedState.h deleted file mode 100644 index 8c16507c42..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewSavedState.h +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_BASEDETAILVIEWSAVEDSTATE_H -#define DRILLER_REPLICA_BASEDETAILVIEWSAVEDSTATE_H - -#include -#include -#include - -namespace Driller -{ - class BaseDetailViewSplitterSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(BaseDetailViewSplitterSavedState, "{280A523E-9A7F-4E23-BAF8-1F6084AB77D6}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(BaseDetailViewSplitterSavedState, AZ::SystemAllocator, 0); - - AZStd::vector< AZ::u8 > m_splitterStorage; - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - - if (serialize) - { - serialize->Class() - ->Field("m_splitterStorage", &BaseDetailViewSplitterSavedState::m_splitterStorage) - ->Version(1); - ; - } - } - }; - - class BaseDetailViewTreeSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(BaseDetailViewTreeSavedState, "{4B3ED3CE-5446-4DCD-98D3-62B577A75786}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(BaseDetailViewTreeSavedState, AZ::SystemAllocator, 0); - - AZStd::vector m_treeColumnStorage; - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - - if (serialize) - { - serialize->Class() - ->Field("m_treeColumnStorage", &BaseDetailViewTreeSavedState::m_treeColumnStorage) - ->Version(1); - } - } - }; -} -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.cpp b/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.cpp deleted file mode 100644 index 54bdf1a77e..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.cpp +++ /dev/null @@ -1,746 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#include - -#include -#include - -#include "OverallReplicaDetailView.hxx" -#include -#include - -#include "ReplicaChunkUsageDataContainers.h" -#include "ReplicaDataAggregator.hxx" -#include "ReplicaDataEvents.h" -#include "ReplicaUsageDataContainers.h" - -#include "Source/Driller/DrillerMainWindowMessages.h" -#include "Source/Driller/DrillerOperationTelemetryEvent.h" -#include "Source/Driller/Replica/ReplicaDataView.hxx" -#include "Source/Driller/Replica/ReplicaDisplayHelpers.h" -#include "Source/Driller/Workspaces/Workspace.h" - -namespace Driller -{ - //////////////////////// - // TreeModelSavedState - //////////////////////// - class TreeModelSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(TreeModelSavedState, "{36103E46-2503-4EEE-BA4B-2650E25A5B26}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(TreeModelSavedState, AZ::SystemAllocator, 0); - - AZStd::vector m_treeColumnStorage; - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - - if (serialize) - { - serialize->Class() - ->Field("m_treeColumnStorage", &TreeModelSavedState::m_treeColumnStorage) - ->Version(1); - } - } - }; - - //////////////////////////////// - // OverallReplicaTreeViewModel - //////////////////////////////// - - OverallReplicaTreeViewModel::OverallReplicaTreeViewModel(AbstractOverallReplicaDetailView* overallDetailView) - : BaseOverallTreeViewModel(overallDetailView) - { - } - - int OverallReplicaTreeViewModel::columnCount(const QModelIndex& parentIndex) const - { - (void)parentIndex; - - return CD_COUNT; - } - - QVariant OverallReplicaTreeViewModel::data(const QModelIndex& index, int role) const - { - const bool relativeValue = true; - const bool absoluteValue = false; - - const BaseDisplayHelper* baseDisplay = static_cast(index.internalPointer()); - - switch (index.column()) - { - case CD_DISPLAY_NAME: - return displayNameData(baseDisplay, role); - case CD_REPLICA_ID: - { - if (role == Qt::DisplayRole || role == Qt::UserRole) - { - AZ::u64 replicaId = 0; - - const BaseDisplayHelper* currentDisplay = baseDisplay; - - while (currentDisplay != nullptr && !azrtti_istypeof(currentDisplay)) - { - currentDisplay = currentDisplay->GetParent(); - } - - if (currentDisplay) - { - const OverallReplicaDetailDisplayHelper* replicaDisplay = static_cast(currentDisplay); - replicaId = replicaDisplay->GetReplicaId(); - } - - if (role == Qt::DisplayRole) - { - return FormattingHelper::ReplicaID(replicaId); - } - else - { - return QVariant(replicaId); - } - } - } - break; - case CD_TOTAL_SENT: - return totalSentData(baseDisplay, role); - case CD_AVG_SENT_FRAME: - return avgSentPerFrameData(baseDisplay, role); - case CD_AVG_SENT_SECOND: - return avgSentPerSecondData(baseDisplay, role); - case CD_PARENT_PERCENT_SENT: - return percentOfSentData(baseDisplay, role, relativeValue); - case CD_TOTAL_PERCENT_SENT: - return percentOfSentData(baseDisplay, role, absoluteValue); - case CD_TOTAL_RECEIVED: - return totalReceivedData(baseDisplay, role); - case CD_AVG_RECEIVED_FRAME: - return avgReceivedPerFrameData(baseDisplay, role); - case CD_AVG_RECEIVED_SECOND: - return avgReceivedPerSecondData(baseDisplay, role); - case CD_PARENT_PERCENT_RECEIVED: - return percentOfReceivedData(baseDisplay, role, relativeValue); - case CD_TOTAL_PERCENT_RECEIVED: - return percentOfReceivedData(baseDisplay, role, absoluteValue); - default: - AZ_Warning("OverallReplicaTreeViewModel", false, "Unknown Column"); - break; - } - - return QVariant(); - } - - QVariant OverallReplicaTreeViewModel::headerData(int section, Qt::Orientation orientation, int role) const - { - if (role == Qt::DisplayRole) - { - if (orientation == Qt::Horizontal) - { - switch (section) - { - case CD_DISPLAY_NAME: - return QString("Name"); - case CD_REPLICA_ID: - return QString("ReplicaId"); - case CD_TOTAL_SENT: - return QString("Sent Bytes"); - case CD_AVG_SENT_FRAME: - return QString("Sent Bytes/Frame"); - case CD_AVG_SENT_SECOND: - return QString("Sent Bytes/Second"); - case CD_PARENT_PERCENT_SENT: - return QString("% of Parent Sent"); - case CD_TOTAL_PERCENT_SENT: - return QString("% of Total Sent"); - case CD_TOTAL_RECEIVED: - return QString("Received Bytes"); - case CD_AVG_RECEIVED_FRAME: - return QString("Received Bytes/Frame"); - case CD_AVG_RECEIVED_SECOND: - return QString("Received Bytes/Second"); - case CD_PARENT_PERCENT_RECEIVED: - return QString("% of Parent Received"); - case CD_TOTAL_PERCENT_RECEIVED: - return QString("% of Total Received"); - } - } - } - - return QVariant(); - } - - const BaseDisplayHelper* OverallReplicaTreeViewModel::FindDisplayHelperAtRoot(int row) const - { - if (row < 0 || row >= m_tableViewOrdering.size()) - { - return nullptr; - } - - return m_overallReplicaDetailView->FindReplicaDisplayHelper(m_tableViewOrdering[row]); - } - - ///////////////////////////////////////// - // OverallReplicaChunkTypeTreeViewModel - ///////////////////////////////////////// - - OverallReplicaChunkTypeTreeViewModel::OverallReplicaChunkTypeTreeViewModel(AbstractOverallReplicaDetailView* overallDetailView) - : BaseOverallTreeViewModel(overallDetailView) - { - } - - int OverallReplicaChunkTypeTreeViewModel::columnCount(const QModelIndex& parentIndex) const - { - (void)parentIndex; - - return CD_COUNT; - } - - QVariant OverallReplicaChunkTypeTreeViewModel::data(const QModelIndex& index, int role) const - { - const bool relativeValue = true; - const bool absoluteValue = false; - - const BaseDisplayHelper* baseDisplay = static_cast(index.internalPointer()); - - switch (index.column()) - { - case CD_DISPLAY_NAME: - return displayNameData(baseDisplay, role); - case CD_TOTAL_SENT: - return totalSentData(baseDisplay, role); - case CD_AVG_SENT_FRAME: - return avgSentPerFrameData(baseDisplay, role); - case CD_AVG_SENT_SECOND: - return avgSentPerSecondData(baseDisplay, role); - case CD_PARENT_PERCENT_SENT: - return percentOfSentData(baseDisplay, role, relativeValue); - case CD_TOTAL_PERCENT_SENT: - return percentOfSentData(baseDisplay, role, absoluteValue); - case CD_TOTAL_RECEIVED: - return totalReceivedData(baseDisplay, role); - case CD_AVG_RECEIVED_FRAME: - return avgReceivedPerFrameData(baseDisplay, role); - case CD_AVG_RECEIVED_SECOND: - return avgReceivedPerSecondData(baseDisplay, role); - case CD_PARENT_PERCENT_RECEIVED: - return percentOfReceivedData(baseDisplay, role, relativeValue); - case CD_TOTAL_PERCENT_RECEIVED: - return percentOfReceivedData(baseDisplay, role, absoluteValue); - default: - AZ_Warning("OverallReplicaTreeViewModel", false, "Unknown Column"); - break; - } - - return QVariant(); - } - - QVariant OverallReplicaChunkTypeTreeViewModel::headerData(int section, Qt::Orientation orientation, int role) const - { - if (role == Qt::DisplayRole) - { - if (orientation == Qt::Horizontal) - { - switch (section) - { - case CD_DISPLAY_NAME: - return QString("Name"); - case CD_TOTAL_SENT: - return QString("Sent Bytes"); - case CD_AVG_SENT_FRAME: - return QString("Sent Bytes/Frame"); - case CD_AVG_SENT_SECOND: - return QString("Sent Bytes/Second"); - case CD_PARENT_PERCENT_SENT: - return QString("% of Parent Sent"); - case CD_TOTAL_PERCENT_SENT: - return QString("% of Total Sent"); - case CD_TOTAL_RECEIVED: - return QString("Received Bytes"); - case CD_AVG_RECEIVED_FRAME: - return QString("Received Bytes/Frame"); - case CD_AVG_RECEIVED_SECOND: - return QString("Received Bytes/Second"); - case CD_PARENT_PERCENT_RECEIVED: - return QString("% of Parent Received"); - case CD_TOTAL_PERCENT_RECEIVED: - return QString("% of Total Received"); - } - } - } - - return QVariant(); - } - - const BaseDisplayHelper* OverallReplicaChunkTypeTreeViewModel::FindDisplayHelperAtRoot(int row) const - { - if (row < 0 || row >= m_tableViewOrdering.size()) - { - return nullptr; - } - - return m_overallReplicaDetailView->FindReplicaChunkTypeDisplayHelper(m_tableViewOrdering[row]); - } - - ///////////////////////////// - // OverallReplicaDetailView - ///////////////////////////// - - const char* OverallReplicaDetailView::WINDOW_STATE_FORMAT = "OVERALL_REPLICA_DETAIL_VIEW_WINDOW_STATE"; - const char* OverallReplicaDetailView::REPLICA_TREE_STATE_FORMAT = "OVERALL_REPLICA_DETAIL_VIEW_TREE_STATE"; - const char* OverallReplicaDetailView::REPLICA_CHUNK_TREE_STATE_FORMAT = "OVERALL_REPLICA_CHUNK_DETAIL_VIEW_TREE_STATE"; - - OverallReplicaDetailView::OverallReplicaDetailView(ReplicaDataView* dataView, const ReplicaDataAggregator& dataAggregator) - : AbstractOverallReplicaDetailView() - , m_lifespanTelemetry("OverallReplicaDetailView") - , m_replicaDataView(dataView) - , m_windowStateCRC(AZ::Crc32(WINDOW_STATE_FORMAT)) - , m_replicaTreeStateCRC(AZ::Crc32(REPLICA_TREE_STATE_FORMAT)) - , m_replicaChunkTreeStateCRC(AZ::Crc32(REPLICA_CHUNK_TREE_STATE_FORMAT)) - , m_dataAggregator(dataAggregator) - , m_overallReplicaModel(this) - , m_replicaFilterProxyModel(this) - , m_overallChunkTypeModel(this) - , m_replicaChunkTypeFilterProxyModel(this) - { - setAttribute(Qt::WA_DeleteOnClose, true); - setWindowFlags(windowFlags() | Qt::WindowMaximizeButtonHint | Qt::WindowMinimizeButtonHint); - - m_gui = azcreate(Ui::OverallReplicaDetailView, ()); - m_gui->setupUi(this); - - show(); - raise(); - activateWindow(); - setFocus(); - - QString titleName("Overall Replica Usage - %2"); - this->setWindowTitle(titleName.arg(m_dataAggregator.GetInspectionFileName())); - - // Loading up saved state - AZStd::intrusive_ptr windowState = AZ::UserSettings::Find(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - - if (windowState) - { - windowState->RestoreGeometry(this); - } - auto treeState = AZ::UserSettings::Find(m_replicaTreeStateCRC, AZ::UserSettings::CT_GLOBAL); - - if (treeState) - { - QByteArray treeData((const char*)treeState->m_treeColumnStorage.data(), (int)treeState->m_treeColumnStorage.size()); - m_gui->overallReplicaUsage->header()->restoreState(treeData); - } - - treeState = AZ::UserSettings::Find(m_replicaChunkTreeStateCRC, AZ::UserSettings::CT_GLOBAL); - - if (treeState) - { - QByteArray treeData((const char*)treeState->m_treeColumnStorage.data(), (int)treeState->m_treeColumnStorage.size()); - m_gui->overallChunkTypeUsage->header()->restoreState(treeData); - } - - m_gui->startFrame->setMinimum(0); - m_gui->startFrame->setValue(0); - - m_gui->endFrame->setMaximum(static_cast(m_dataAggregator.GetFrameCount()) - 1); - m_gui->endFrame->setValue(static_cast(m_dataAggregator.GetFrameCount() - 1)); - - m_changeTimer.setInterval(500); - m_changeTimer.setSingleShot(true); - - UpdateFrameBoundaries(); - ParseData(); - SetupTreeView(); - UpdateDisplay(); - - QObject::connect(m_gui->startFrame, SIGNAL(valueChanged(int)), this, SLOT(QueueUpdate(int))); - QObject::connect(m_gui->endFrame, SIGNAL(valueChanged(int)), this, SLOT(QueueUpdate(int))); - QObject::connect(m_gui->framesPerSecond, SIGNAL(valueChanged(int)),this,SLOT(OnFPSChanged(int))); - connect(&m_changeTimer, SIGNAL(timeout()), SLOT(OnDataRangeChanged())); - } - - OverallReplicaDetailView::~OverallReplicaDetailView() - { - ClearData(); - - // Save out whatever data we want to save out. - auto pState = AZ::UserSettings::CreateFind(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - if (pState) - { - pState->CaptureGeometry(this); - } - - auto treeState = AZ::UserSettings::CreateFind(m_replicaTreeStateCRC, AZ::UserSettings::CT_GLOBAL); - if (treeState) - { - if (m_gui->overallReplicaUsage && m_gui->overallReplicaUsage->header()) - { - QByteArray qba = m_gui->overallReplicaUsage->header()->saveState(); - treeState->m_treeColumnStorage.assign((AZ::u8*)qba.begin(), (AZ::u8*)qba.end()); - } - } - - treeState = AZ::UserSettings::CreateFind(m_replicaChunkTreeStateCRC, AZ::UserSettings::CT_GLOBAL); - if (treeState) - { - if (m_gui->overallChunkTypeUsage && m_gui->overallChunkTypeUsage->header()) - { - QByteArray qba = m_gui->overallChunkTypeUsage->header()->saveState(); - treeState->m_treeColumnStorage.assign((AZ::u8*)qba.begin(), (AZ::u8*)qba.end()); - } - } - - if (m_replicaDataView) - { - m_replicaDataView->SignalDialogClosed(this); - } - - azdestroy(m_gui); - } - - int OverallReplicaDetailView::GetFrameRange() const - { - return m_frameRange; - } - - int OverallReplicaDetailView::GetFPS() const - { - return m_gui->framesPerSecond->value(); - } - - void OverallReplicaDetailView::SignalDataViewDestroyed(ReplicaDataView* replicaDataView) - { - if (m_replicaDataView == replicaDataView) - { - m_replicaDataView = nullptr; - } - - close(); - } - - void OverallReplicaDetailView::ApplySettingsFromWorkspace(WorkspaceSettingsProvider*) - { - } - - void OverallReplicaDetailView::ActivateWorkspaceSettings(WorkspaceSettingsProvider*) - { - } - - void OverallReplicaDetailView::SaveSettingsToWorkspace(WorkspaceSettingsProvider*) - { - } - - void OverallReplicaDetailView::ApplyPersistentState() - { - } - - void OverallReplicaDetailView::Reflect(AZ::ReflectContext* context) - { - (void)context; - } - - void OverallReplicaDetailView::OnFPSChanged(int fps) - { - (void)fps; - - UpdateDisplay(); - } - - void OverallReplicaDetailView::QueueUpdate(int ignoredFrame) - { - (void)ignoredFrame; - - m_changeTimer.start(); - } - - void OverallReplicaDetailView::OnDataRangeChanged() - { - ParseData(); - UpdateFrameBoundaries(); - UpdateDisplay(); - } - - OverallReplicaDetailDisplayHelper* OverallReplicaDetailView::CreateReplicaDisplayHelper(const char* replicaName, AZ::u64 replicaId) - { - OverallReplicaDetailDisplayHelper* detailDisplay = nullptr; - - ReplicaDisplayHelperMap::iterator displayIter = m_replicaDisplayHelpers.find(replicaId); - - if (displayIter == m_replicaDisplayHelpers.end()) - { - detailDisplay = aznew OverallReplicaDetailDisplayHelper(replicaName, replicaId); - m_replicaDisplayHelpers.insert(ReplicaDisplayHelperMap::value_type(replicaId, detailDisplay)); - - m_overallReplicaModel.m_tableViewOrdering.push_back(replicaId); - } - else - { - detailDisplay = displayIter->second; - } - - return detailDisplay; - } - - OverallReplicaDetailDisplayHelper* OverallReplicaDetailView::FindReplicaDisplayHelper(AZ::u64 replicaId) - { - OverallReplicaDetailDisplayHelper* detailDisplay = nullptr; - - ReplicaDisplayHelperMap::iterator displayIter = m_replicaDisplayHelpers.find(replicaId); - - if (displayIter != m_replicaDisplayHelpers.end()) - { - detailDisplay = displayIter->second; - } - - return detailDisplay; - } - - ReplicaChunkDetailDisplayHelper* OverallReplicaDetailView::CreateReplicaChunkTypeDisplayHelper(const AZStd::string& chunkTypeName, AZ::u32 chunkIndex) - { - ReplicaChunkDetailDisplayHelper* detailDisplay = nullptr; - - ReplicaChunkTypeDisplayHelperMap::iterator displayIter = m_replicaChunkTypeDisplayHelpers.find(chunkTypeName); - - if (displayIter == m_replicaChunkTypeDisplayHelpers.end()) - { - detailDisplay = aznew ReplicaChunkDetailDisplayHelper(chunkTypeName.c_str(), chunkIndex); - m_replicaChunkTypeDisplayHelpers.insert(ReplicaChunkTypeDisplayHelperMap::value_type(chunkTypeName, detailDisplay)); - - m_overallChunkTypeModel.m_tableViewOrdering.push_back(chunkTypeName); - } - else - { - detailDisplay = displayIter->second; - } - - return detailDisplay; - } - - ReplicaChunkDetailDisplayHelper* OverallReplicaDetailView::FindReplicaChunkTypeDisplayHelper(const AZStd::string& chunkTypeName) - { - ReplicaChunkDetailDisplayHelper* detailDisplay = nullptr; - - ReplicaChunkTypeDisplayHelperMap::iterator displayIter = m_replicaChunkTypeDisplayHelpers.find(chunkTypeName); - - if (displayIter != m_replicaChunkTypeDisplayHelpers.end()) - { - detailDisplay = displayIter->second; - } - - return detailDisplay; - } - - void OverallReplicaDetailView::SaveOnExit() - { - } - - void OverallReplicaDetailView::UpdateFrameBoundaries() - { - m_gui->startFrame->setMaximum(m_gui->endFrame->value()); - m_gui->endFrame->setMinimum(m_gui->startFrame->value()); - - m_frameRange = (m_gui->endFrame->value() - m_gui->startFrame->value()) + 1; - - if (m_frameRange <= 0) - { - m_frameRange = 1; - } - } - - void OverallReplicaDetailView::ParseData() - { - // Not the best approach. But this shouldn't update all that frequently. - ClearData(); - - FrameNumberType startFrame = static_cast(m_gui->startFrame->value()); - FrameNumberType endFrame = static_cast(m_gui->endFrame->value()); - - EventNumberType startIndex = m_dataAggregator.GetFirstIndexAtFrame(startFrame); - EventNumberType endIndex = m_dataAggregator.GetFirstIndexAtFrame(endFrame) + m_dataAggregator.NumOfEventsAtFrame(endFrame); - - const Aggregator::EventListType& events = m_dataAggregator.GetEvents(); - - for (EventNumberType currentIndex = startIndex; currentIndex < endIndex; ++currentIndex) - { - ReplicaChunkEvent* chunkEvent = static_cast(events[currentIndex]); - - // Since I process each event twice, I need to do the total aggregation seperately. - if (chunkEvent->GetEventType() == Replica::RET_CHUNK_DATASET_SENT - || chunkEvent->GetEventType() == Replica::RET_CHUNK_RPC_SENT) - { - m_totalUsageAggregator.m_bytesSent += chunkEvent->GetUsageBytes(); - } - else - { - m_totalUsageAggregator.m_bytesReceived += chunkEvent->GetUsageBytes(); - } - - ProcessForReplica(chunkEvent); - ProcessForReplicaChunk(chunkEvent); - } - } - - void OverallReplicaDetailView::ProcessForReplica(ReplicaChunkEvent* chunkEvent) - { - const char* replicaName = chunkEvent->GetReplicaName(); - AZ::u64 replicaId = chunkEvent->GetReplicaId(); - - OverallReplicaDetailDisplayHelper* replicaDisplayHelper = CreateReplicaDisplayHelper(replicaName, replicaId); - - if (replicaDisplayHelper) - { - if (chunkEvent->GetEventType() == Replica::RET_CHUNK_DATASET_SENT - || chunkEvent->GetEventType() == Replica::RET_CHUNK_RPC_SENT) - { - replicaDisplayHelper->m_bandwidthUsageAggregator.m_bytesSent += chunkEvent->GetUsageBytes(); - } - else if (chunkEvent->GetEventType() == Replica::RET_CHUNK_RPC_RECEIVED - || chunkEvent->GetEventType() == Replica::RET_CHUNK_DATASET_RECEIVED) - { - replicaDisplayHelper->m_bandwidthUsageAggregator.m_bytesReceived += chunkEvent->GetUsageBytes(); - } - - ReplicaChunkDetailDisplayHelper* chunkDetailDisplayHelper = replicaDisplayHelper->FindReplicaChunk(chunkEvent->GetReplicaChunkIndex()); - - if (chunkDetailDisplayHelper == nullptr) - { - chunkDetailDisplayHelper = replicaDisplayHelper->CreateReplicaChunkDisplayHelper(chunkEvent->GetChunkTypeName(), chunkEvent->GetReplicaChunkIndex()); - } - - ProcessForBaseDetailDisplayHelper(chunkEvent, chunkDetailDisplayHelper); - } - } - - void OverallReplicaDetailView::ProcessForReplicaChunk(ReplicaChunkEvent* chunkEvent) - { - AZ::u32 chunkId = chunkEvent->GetReplicaChunkIndex(); - AZStd::string chunkTypeName = chunkEvent->GetChunkTypeName(); - - ReplicaChunkDetailDisplayHelper* chunkDisplayHelper = CreateReplicaChunkTypeDisplayHelper(chunkTypeName, chunkId); - - if (chunkDisplayHelper) - { - ProcessForBaseDetailDisplayHelper(chunkEvent, chunkDisplayHelper); - } - } - - void OverallReplicaDetailView::ProcessForBaseDetailDisplayHelper(ReplicaChunkEvent* chunkEvent, BaseDetailDisplayHelper* detailDisplayHelper) - { - if (chunkEvent->GetEventType() == Replica::RET_CHUNK_DATASET_SENT - || chunkEvent->GetEventType() == Replica::RET_CHUNK_DATASET_RECEIVED) - { - ReplicaChunkDataSetEvent* dataSetEvent = static_cast(chunkEvent); - - detailDisplayHelper->SetupDataSet(dataSetEvent->GetIndex(), dataSetEvent->GetDataSetName()); - - DataSetDisplayFilter* dataSetDisplayFilter = detailDisplayHelper->GetDataSetDisplayHelper(); - DataSetDisplayHelper* dataSetDisplayHelper = detailDisplayHelper->FindDataSet(dataSetEvent->GetIndex()); - - if (chunkEvent->GetEventType() == Replica::RET_CHUNK_DATASET_SENT) - { - detailDisplayHelper->m_bandwidthUsageAggregator.m_bytesSent += chunkEvent->GetUsageBytes(); - dataSetDisplayFilter->m_bandwidthUsageAggregator.m_bytesSent += chunkEvent->GetUsageBytes(); - dataSetDisplayHelper->m_bandwidthUsageAggregator.m_bytesSent += chunkEvent->GetUsageBytes(); - } - else - { - detailDisplayHelper->m_bandwidthUsageAggregator.m_bytesReceived += chunkEvent->GetUsageBytes(); - dataSetDisplayFilter->m_bandwidthUsageAggregator.m_bytesReceived += chunkEvent->GetUsageBytes(); - dataSetDisplayHelper->m_bandwidthUsageAggregator.m_bytesReceived += chunkEvent->GetUsageBytes(); - } - } - else - { - ReplicaChunkRPCEvent* rpcEvent = static_cast(chunkEvent); - - detailDisplayHelper->SetupRPC(rpcEvent->GetIndex(), rpcEvent->GetRPCName()); - - RPCDisplayFilter* rpcDisplayFilter = detailDisplayHelper->GetRPCDisplayHelper(); - RPCDisplayHelper* rpcDisplayHelper = detailDisplayHelper->FindRPC(rpcEvent->GetIndex()); - - if (chunkEvent->GetEventType() == Replica::RET_CHUNK_RPC_SENT) - { - detailDisplayHelper->m_bandwidthUsageAggregator.m_bytesSent += chunkEvent->GetUsageBytes(); - rpcDisplayFilter->m_bandwidthUsageAggregator.m_bytesSent += chunkEvent->GetUsageBytes(); - rpcDisplayHelper->m_bandwidthUsageAggregator.m_bytesSent += chunkEvent->GetUsageBytes(); - } - else - { - detailDisplayHelper->m_bandwidthUsageAggregator.m_bytesReceived += chunkEvent->GetUsageBytes(); - rpcDisplayFilter->m_bandwidthUsageAggregator.m_bytesReceived += chunkEvent->GetUsageBytes(); - rpcDisplayHelper->m_bandwidthUsageAggregator.m_bytesReceived += chunkEvent->GetUsageBytes(); - } - } - } - - void OverallReplicaDetailView::ClearData() - { - for (auto& mapPair : m_replicaDisplayHelpers) - { - delete mapPair.second; - } - m_replicaDisplayHelpers.clear(); - m_overallReplicaModel.m_tableViewOrdering.clear(); - - for (auto& mapPair : m_replicaChunkTypeDisplayHelpers) - { - delete mapPair.second; - } - m_replicaChunkTypeDisplayHelpers.clear(); - m_overallChunkTypeModel.m_tableViewOrdering.clear(); - - m_totalUsageAggregator.m_bytesSent = 0; - m_totalUsageAggregator.m_bytesReceived = 0; - } - - void OverallReplicaDetailView::UpdateDisplay() - { - int frameRange = GetFrameRange(); - - // Sent Total - m_gui->totalBytesSent->setText(QString::number(m_totalUsageAggregator.m_bytesSent)); - - size_t avgBytesPerFrame = m_totalUsageAggregator.m_bytesSent / frameRange; - m_gui->avgBytesSentFrame->setText(QString::number(avgBytesPerFrame)); - m_gui->avgBytesSentSecond->setText(QString::number(avgBytesPerFrame * GetFPS())); - - // Received Total - m_gui->totalBytesReceived->setText(QString::number(m_totalUsageAggregator.m_bytesReceived)); - - avgBytesPerFrame = m_totalUsageAggregator.m_bytesReceived / frameRange; - m_gui->avgBytesReceivedFrame->setText(QString::number(avgBytesPerFrame)); - m_gui->avgBytesReceivedSecond->setText(QString::number(avgBytesPerFrame * GetFPS())); - - m_overallChunkTypeModel.layoutChanged(); - m_overallReplicaModel.layoutChanged(); - } - - void OverallReplicaDetailView::SetupTreeView() - { - SetupReplicaTreeView(); - SetupReplicaChunkTypeTreeView(); - } - - void OverallReplicaDetailView::SetupReplicaTreeView() - { - m_replicaFilterProxyModel.setSortRole(Qt::UserRole); - m_replicaFilterProxyModel.setSourceModel(&m_overallReplicaModel); - - m_gui->overallReplicaUsage->setModel(&m_replicaFilterProxyModel); - } - - void OverallReplicaDetailView::SetupReplicaChunkTypeTreeView() - { - m_replicaChunkTypeFilterProxyModel.setSortRole(Qt::UserRole); - m_replicaChunkTypeFilterProxyModel.setSourceModel(&m_overallChunkTypeModel); - - m_gui->overallChunkTypeUsage->setModel(&m_replicaChunkTypeFilterProxyModel); - } -}; diff --git a/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.hxx b/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.hxx deleted file mode 100644 index 9232f678d7..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.hxx +++ /dev/null @@ -1,470 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef PROFILER_REPLICA_OVERALLDETAILVIEW_H -#define PROFILER_REPLICA_OVERALLDETAILVIEW_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include - -#include "Source/Driller/DrillerMainWindowMessages.h" -#include "Source/Driller/DrillerOperationTelemetryEvent.h" - -#include "Source/Driller/DrillerDataTypes.h" -#include "Source/Driller/Replica/ReplicaDisplayHelpers.h" -#include "Source/Driller/Replica/ReplicaTreeViewModel.hxx" - -#include "ReplicaBandwidthChartData.h" -#endif - -namespace Ui -{ - class OverallReplicaDetailView; -} - -namespace AZ { class ReflectContext; } - -namespace Driller -{ - class OverallReplicaDetailView; - class ReplicaDataView; - - class ReplicaDataAggregator; - - class ReplicaChunkDataEvent; - class ReplicaChunkReceivedDataEvent; - class ReplicaChunkSentDataEvent; - - class AbstractOverallReplicaDetailView - : public QDialog - { - template - friend class BaseOverallTreeViewModel; - - friend class OverallReplicaTreeViewModel; - friend class OverallReplicaChunkTypeTreeViewModel; - - Q_OBJECT - public: - virtual int GetFrameRange() const = 0; - virtual int GetFPS() const = 0; - - protected: - virtual OverallReplicaDetailDisplayHelper* FindReplicaDisplayHelper(AZ::u64 replicaId) = 0; - virtual ReplicaChunkDetailDisplayHelper* FindReplicaChunkTypeDisplayHelper(const AZStd::string& chunkTypeName) = 0; - - BandwidthUsageAggregator m_totalUsageAggregator; - }; - - template - class BaseOverallTreeViewModel : public ReplicaTreeViewModel - { - public: - AZ_CLASS_ALLOCATOR(BaseOverallTreeViewModel, AZ::SystemAllocator,0); - BaseOverallTreeViewModel(AbstractOverallReplicaDetailView* overallDetailView) - : m_overallReplicaDetailView(overallDetailView) - { - } - - AZStd::vector< Key > m_tableViewOrdering; - - protected: - - int GetRootRowCount() const override - { - return static_cast(m_tableViewOrdering.size()); - } - - QVariant displayNameData(const BaseDisplayHelper* baseDisplay, int role) const - { - if (role == Qt::DisplayRole || role == Qt::UserRole) - { - QString displayName = baseDisplay->GetDisplayName(); - - if (displayName.isEmpty()) - { - return QString(""); - } - else - { - return displayName; - } - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignVCenter); - } - - return QVariant(); - } - - QVariant totalSentData(const BaseDisplayHelper* baseDisplay, int role) const - { - if (role == Qt::DisplayRole) - { - return QString::number(baseDisplay->m_bandwidthUsageAggregator.m_bytesSent); - } - else if (role == Qt::UserRole) - { - return baseDisplay->m_bandwidthUsageAggregator.m_bytesSent; - } - - return QVariant(); - } - - QVariant totalReceivedData(const BaseDisplayHelper* baseDisplay, int role) const - { - if (role == Qt::DisplayRole) - { - return QString::number(baseDisplay->m_bandwidthUsageAggregator.m_bytesReceived); - } - else if (role == Qt::UserRole) - { - return baseDisplay->m_bandwidthUsageAggregator.m_bytesReceived; - } - - return QVariant(); - } - - QVariant avgSentPerFrameData(const BaseDisplayHelper* baseDisplay, int role) const - { - if (role == Qt::DisplayRole) - { - return QString::number(baseDisplay->m_bandwidthUsageAggregator.m_bytesSent/m_overallReplicaDetailView->GetFrameRange()); - } - else if (role == Qt::UserRole) - { - return baseDisplay->m_bandwidthUsageAggregator.m_bytesSent/m_overallReplicaDetailView->GetFrameRange(); - } - - return QVariant(); - } - - QVariant avgReceivedPerFrameData(const BaseDisplayHelper* baseDisplay, int role) const - { - if (role == Qt::DisplayRole) - { - return QString::number(baseDisplay->m_bandwidthUsageAggregator.m_bytesReceived/m_overallReplicaDetailView->GetFrameRange()); - } - else if (role == Qt::UserRole) - { - return baseDisplay->m_bandwidthUsageAggregator.m_bytesReceived/m_overallReplicaDetailView->GetFrameRange(); - } - - return QVariant(); - } - - QVariant avgSentPerSecondData(const BaseDisplayHelper* baseDisplay, int role) const - { - if (role == Qt::DisplayRole) - { - return QString::number((baseDisplay->m_bandwidthUsageAggregator.m_bytesSent/m_overallReplicaDetailView->GetFrameRange()) * m_overallReplicaDetailView->GetFPS()); - } - else if (role == Qt::UserRole) - { - return (baseDisplay->m_bandwidthUsageAggregator.m_bytesSent/m_overallReplicaDetailView->GetFrameRange()) * m_overallReplicaDetailView->GetFPS(); - } - - return QVariant(); - } - - QVariant avgReceivedPerSecondData(const BaseDisplayHelper* baseDisplay, int role) const - { - if (role == Qt::DisplayRole) - { - return QString::number((baseDisplay->m_bandwidthUsageAggregator.m_bytesReceived/m_overallReplicaDetailView->GetFrameRange()) * m_overallReplicaDetailView->GetFPS()); - } - else if (role == Qt::UserRole) - { - return (baseDisplay->m_bandwidthUsageAggregator.m_bytesReceived/m_overallReplicaDetailView->GetFrameRange()) * m_overallReplicaDetailView->GetFPS(); - } - - return QVariant(); - } - - QVariant percentOfSentData(const BaseDisplayHelper* baseDisplay, int role, bool isRelative) const - { - if (role == Qt::DisplayRole || role == Qt::UserRole) - { - size_t denominator = m_overallReplicaDetailView->m_totalUsageAggregator.m_bytesSent; - - if (isRelative) - { - const BaseDisplayHelper* parentHelper = baseDisplay->GetParent(); - if (parentHelper) - { - denominator = parentHelper->m_bandwidthUsageAggregator.m_bytesSent; - } - } - - if (denominator == 0) - { - if (role == Qt::DisplayRole) - { - return QString::number(0,'f',3); - } - else - { - return QVariant(0.0f); - } - } - else - { - float value = static_cast(baseDisplay->m_bandwidthUsageAggregator.m_bytesSent)/static_cast(denominator)*100.0f; - - if (role == Qt::DisplayRole) - { - return QString::number(value,'f',3); - } - else - { - return QVariant(value); - } - } - } - - return QVariant(); - } - - QVariant percentOfReceivedData(const BaseDisplayHelper* baseDisplay, int role, bool isRelative) const - { - if (role == Qt::DisplayRole || role == Qt::UserRole) - { - size_t denominator = m_overallReplicaDetailView->m_totalUsageAggregator.m_bytesReceived; - - if (isRelative) - { - const BaseDisplayHelper* parentHelper = baseDisplay->GetParent(); - if (parentHelper) - { - denominator = parentHelper->m_bandwidthUsageAggregator.m_bytesReceived; - } - } - - if (denominator == 0) - { - if (role == Qt::DisplayRole) - { - return QString::number(0,'f',3); - } - else - { - return QVariant(0.0f); - } - } - else - { - float value = static_cast(baseDisplay->m_bandwidthUsageAggregator.m_bytesReceived)/static_cast(denominator)*100.0f; - - if (role == Qt::DisplayRole) - { - return QString::number(value,'f',3); - } - else - { - return QVariant(value); - } - } - } - - return QVariant(); - } - - AbstractOverallReplicaDetailView* m_overallReplicaDetailView; - }; - - class OverallReplicaTreeViewModel : public BaseOverallTreeViewModel - { - public: - enum ColumnDescriptor - { - // Forcing the index to start at 0 - CD_INDEX_FORCE = -1, - - // Ordering of this enum determines the display order in the tree - CD_DISPLAY_NAME, - CD_REPLICA_ID, - - CD_TOTAL_SENT, - CD_AVG_SENT_FRAME, - CD_AVG_SENT_SECOND, - CD_PARENT_PERCENT_SENT, - CD_TOTAL_PERCENT_SENT, - - CD_TOTAL_RECEIVED, - CD_AVG_RECEIVED_FRAME, - CD_AVG_RECEIVED_SECOND, - CD_PARENT_PERCENT_RECEIVED, - CD_TOTAL_PERCENT_RECEIVED, - - // Used for sizing of the TableView. Anything after this won't be displayed. - CD_COUNT - }; - - AZ_CLASS_ALLOCATOR(OverallReplicaTreeViewModel, AZ::SystemAllocator,0); - OverallReplicaTreeViewModel(AbstractOverallReplicaDetailView* overallDetailView); - - int columnCount(const QModelIndex& parentIndex = QModelIndex()) const override; - QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; - QVariant headerData(int section, Qt::Orientation orientation, int role) const override; - - protected: - const BaseDisplayHelper* FindDisplayHelperAtRoot(int row) const; - }; - - class OverallReplicaChunkTypeTreeViewModel : public BaseOverallTreeViewModel - { - public: - enum ColumnDescriptor - { - // Forcing the index to start at 0 - CD_INDEX_FORCE = -1, - - // Ordering of this enum determines the display order in the tree - CD_DISPLAY_NAME, - - CD_TOTAL_SENT, - CD_AVG_SENT_FRAME, - CD_AVG_SENT_SECOND, - CD_PARENT_PERCENT_SENT, - CD_TOTAL_PERCENT_SENT, - - CD_TOTAL_RECEIVED, - CD_AVG_RECEIVED_FRAME, - CD_AVG_RECEIVED_SECOND, - CD_PARENT_PERCENT_RECEIVED, - CD_TOTAL_PERCENT_RECEIVED, - - // Used for sizing of the TableView. Anything after this won't be displayed. - CD_COUNT - }; - - AZ_CLASS_ALLOCATOR(OverallReplicaChunkTypeTreeViewModel, AZ::SystemAllocator,0); - OverallReplicaChunkTypeTreeViewModel(AbstractOverallReplicaDetailView* overallDetailView); - - int columnCount(const QModelIndex& parentIndex = QModelIndex()) const override; - QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; - QVariant headerData(int section, Qt::Orientation orientation, int role) const override; - - protected: - const BaseDisplayHelper* FindDisplayHelperAtRoot(int row) const; - }; - - class OverallReplicaDetailView - : public AbstractOverallReplicaDetailView - { - private: - - Q_OBJECT - - template - friend class BaseOverallTreeViewModel; - - friend class OverallReplicaTreeViewModel; - friend class OverallReplicaChunkTypeTreeViewModel; - - typedef AZStd::unordered_map ReplicaDisplayHelperMap; - typedef AZStd::unordered_map ReplicaChunkTypeDisplayHelperMap; - - static const char* WINDOW_STATE_FORMAT; - static const char* REPLICA_TREE_STATE_FORMAT; - static const char* REPLICA_CHUNK_TREE_STATE_FORMAT; - - public: - AZ_CLASS_ALLOCATOR(OverallReplicaDetailView, AZ::SystemAllocator, 0); - - OverallReplicaDetailView(ReplicaDataView* dataView, const ReplicaDataAggregator& dataAggregator); - ~OverallReplicaDetailView(); - - int GetFrameRange() const override; - int GetFPS() const override; - - void SignalDataViewDestroyed(ReplicaDataView* replicaDataView); - - void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*); - void ActivateWorkspaceSettings(WorkspaceSettingsProvider*); - void SaveSettingsToWorkspace(WorkspaceSettingsProvider*); - void ApplyPersistentState(); - - static void Reflect(AZ::ReflectContext* context); - - public slots: - - void OnFPSChanged(int); - - void QueueUpdate(int); - void OnDataRangeChanged(); - - private: - - OverallReplicaDetailDisplayHelper* CreateReplicaDisplayHelper(const char* replicaName, AZ::u64 replicaId); - OverallReplicaDetailDisplayHelper* FindReplicaDisplayHelper(AZ::u64 replicaId); - - ReplicaChunkDetailDisplayHelper* CreateReplicaChunkTypeDisplayHelper(const AZStd::string& chunkTypeName, AZ::u32 chunkIndex); - ReplicaChunkDetailDisplayHelper* FindReplicaChunkTypeDisplayHelper(const AZStd::string& chunkTypeName); - - void SaveOnExit(); - void UpdateFrameBoundaries(); - - void ParseData(); - void ProcessForReplica(ReplicaChunkEvent* chunkEvent); - void ProcessForReplicaChunk(ReplicaChunkEvent* chunkEvent); - void ProcessForBaseDetailDisplayHelper(ReplicaChunkEvent* chunkEvent, BaseDetailDisplayHelper* baseDetailDisplayHelper); - - void ClearData(); - - void UpdateDisplay(); - - void SetupTreeView(); - void SetupReplicaTreeView(); - void SetupReplicaChunkTypeTreeView(); - - // Window Telemetry - DrillerWindowLifepsanTelemetry m_lifespanTelemetry; - - ReplicaDataView* m_replicaDataView; - - // Window Saved State - AZ::Crc32 m_windowStateCRC; - AZ::Crc32 m_replicaTreeStateCRC; - AZ::Crc32 m_replicaChunkTreeStateCRC; - - // General Data Source - const ReplicaDataAggregator& m_dataAggregator; - - // Cached data - int m_frameRange; - - // UX niceties - QTimer m_changeTimer; - - // Display features for the Replica usage table - OverallReplicaTreeViewModel m_overallReplicaModel; - QSortFilterProxyModel m_replicaFilterProxyModel; - ReplicaDisplayHelperMap m_replicaDisplayHelpers; - - // Display features for the ReplicaChunkType usage table - OverallReplicaChunkTypeTreeViewModel m_overallChunkTypeModel; - QSortFilterProxyModel m_replicaChunkTypeFilterProxyModel; - ReplicaChunkTypeDisplayHelperMap m_replicaChunkTypeDisplayHelpers; - - Ui::OverallReplicaDetailView* m_gui; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.cpp deleted file mode 100644 index d455f8ae29..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.cpp +++ /dev/null @@ -1,397 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include - -#include "ReplicaBandwidthChartData.h" - -namespace Driller -{ - //////////////////// - // GraphPlotHelper - //////////////////// - - GraphPlotHelper::GraphPlotHelper(const QColor& displayColor) - : m_color(displayColor) - , m_channelId(StripChart::DataStrip::s_invalidChannelId) - , m_zeroOutLine(false) - , m_initializeLine(false) - , m_lastHorizontalValue(0.0f) - { - } - - void GraphPlotHelper::Reset() - { - m_initializeLine = true; - m_zeroOutLine = false; - m_channelId = StripChart::DataStrip::s_invalidChannelId; - m_lastHorizontalValue = 0.0f; - } - - bool GraphPlotHelper::IsSetup() const - { - return m_channelId != StripChart::DataStrip::s_invalidChannelId; - } - - void GraphPlotHelper::SetupPlotHelper(StripChart::DataStrip* chart, const char* channelName, float startValue) - { - if (chart == nullptr) - { - return; - } - - AZ_Assert(m_channelId == StripChart::DataStrip::s_invalidChannelId, "Double registering the GraphPlotHelper"); - - m_channelId = chart->AddChannel(channelName); - chart->SetChannelStyle(m_channelId, StripChart::Channel::STYLE_CONNECTED_LINE); - chart->SetChannelColor(m_channelId, m_color); - - m_lastHorizontalValue = startValue; - } - - void GraphPlotHelper::PlotData(StripChart::DataStrip* chart, float tickSize, float horizontalValue, float verticalValue, bool forceDraw) - { - if (chart == nullptr) - { - return; - } - - if (!IsSetup()) - { - SetupPlotHelper(chart, "", horizontalValue); - } - - bool hasData = !AZ::IsClose(verticalValue, 0.0f, 0.001f); - - float stepDifference = horizontalValue - m_lastHorizontalValue; - - if (m_zeroOutLine || hasData || forceDraw || m_initializeLine) - { - if (!hasData) - { - if (m_zeroOutLine) - { - chart->AddData(m_channelId, 0, m_lastHorizontalValue + tickSize, 0.0f); - } - else if (m_initializeLine) - { - chart->AddData(m_channelId, 0, m_lastHorizontalValue, 0.0f); - } - } - - if (stepDifference > tickSize + 0.001f) - { - chart->AddData(m_channelId, 0, horizontalValue - tickSize, 0.0f); - } - - m_initializeLine = false; - m_zeroOutLine = hasData; - m_lastHorizontalValue = horizontalValue; - - chart->AddData(m_channelId, 0, horizontalValue, verticalValue); - } - } - - void GraphPlotHelper::PlotBatchedData(StripChart::DataStrip* chart, float tickSize, float horizontalValue, float verticalValue, bool forceDraw) - { - bool hasData = !AZ::IsClose(verticalValue, 0.0f, 0.001f); - - float stepDifference = horizontalValue - m_lastHorizontalValue; - - if (m_zeroOutLine || hasData || forceDraw || m_initializeLine) - { - if (!hasData) - { - if (m_zeroOutLine) - { - chart->AddBatchedData(m_channelId, 0, m_lastHorizontalValue + tickSize, 0.0f); - } - else if (m_initializeLine) - { - chart->AddBatchedData(m_channelId, 0, m_lastHorizontalValue, 0.0f); - } - } - - if (stepDifference > tickSize + 0.001f) - { - chart->AddBatchedData(m_channelId, 0, horizontalValue - tickSize, 0.0f); - } - - m_initializeLine = false; - m_zeroOutLine = hasData; - m_lastHorizontalValue = horizontalValue; - - chart->AddBatchedData(m_channelId, 0, horizontalValue, verticalValue); - } - } - - void GraphPlotHelper::SetHighlight(StripChart::DataStrip* chart, bool highlight) - { - if (chart == nullptr || m_channelId == StripChart::DataStrip::s_invalidChannelId) - { - return; - } - - chart->SetChannelHighlight(m_channelId, highlight); - } - - void GraphPlotHelper::ZeroOutLine(float lastHorizontalValue, float tickSize, StripChart::DataStrip* chart) - { - if (m_zeroOutLine && !AZ::IsClose(lastHorizontalValue, m_lastHorizontalValue, 0.001f)) - { - chart->AddData(m_channelId, 0, m_lastHorizontalValue + tickSize, 0.0f); - } - } - - //////////////////////// - // AreaGraphPlotHelper - //////////////////////// - - AreaGraphPlotHelper::AreaGraphPlotHelper(const QColor& displayColor) - : m_color(displayColor) - , m_areaChart(nullptr) - , m_seriesId(AreaChart::AreaChart::k_invalidSeriesId) - { - } - - bool AreaGraphPlotHelper::IsSetup() const - { - return m_areaChart != nullptr && m_seriesId != AreaChart::AreaChart::k_invalidSeriesId; - } - - void AreaGraphPlotHelper::Reset() - { - m_areaChart = nullptr; - m_seriesId = AreaChart::AreaChart::k_invalidSeriesId; - } - - void AreaGraphPlotHelper::SetupPlotHelper(AreaChart::AreaChart* chart, const char* channelName, size_t seriesSize) - { - AZ_Error("AreaGraphPlotHelper", !IsSetup(), "Plot Helper is already setup."); - if (IsSetup()) - { - Reset(); - } - - QString name(channelName); - - m_areaChart = chart; - m_seriesId = m_areaChart->CreateSeries(name, m_color,seriesSize); - } - - void AreaGraphPlotHelper::PlotData(int position, unsigned int value) - { - if (IsSetup()) - { - m_areaChart->AddPoint(m_seriesId, position, value); - } - } - - void AreaGraphPlotHelper::PlotBatchedData(int position, unsigned int value) - { - m_areaChart->AddPoint(m_seriesId, position, value); - } - - void AreaGraphPlotHelper::SetHighlighted(bool highlighted) - { - if (IsSetup()) - { - m_areaChart->SetSeriesHighlight(m_seriesId, highlighted); - } - } - - void AreaGraphPlotHelper::SetEnabled(bool enabled) - { - if (IsSetup()) - { - m_areaChart->SetSeriesEnabled(m_seriesId, enabled); - } - } - - bool AreaGraphPlotHelper::IsSeries(size_t seriesId) const - { - if (m_seriesId == AreaChart::AreaChart::k_invalidSeriesId) - { - return false; - } - else - { - return m_seriesId == seriesId; - } - } - - ////////////////////////////// - // BandwidthUsageAggregator - ////////////////////////////// - - BandwidthUsageAggregator::BandwidthUsageAggregator() - : m_bytesSent(0) - , m_bytesReceived(0) - { - } - - void BandwidthUsageAggregator::Reset() - { - m_bytesSent = 0; - m_bytesReceived = 0; - } - - //////////////////////////// - // BandwidthUsageContainer - //////////////////////////// - - BandwidthUsageContainer::BandwidthUsageContainer() - { - m_dataTypeAggregationMap.insert(DataTypeAggreationMap::value_type(BandwidthUsage::DataType::DATA_SET, UsageAggregationMap())); - m_dataTypeAggregationMap.insert(DataTypeAggreationMap::value_type(BandwidthUsage::DataType::REMOTE_PROCEDURE_CALL, UsageAggregationMap())); - } - - BandwidthUsageContainer::~BandwidthUsageContainer() - { - } - - void BandwidthUsageContainer::ProcessChunkEvent(const ReplicaChunkEvent* chunkEvent) - { - BandwidthUsage* bandwidthUsage = nullptr; - - if (azrtti_istypeof(chunkEvent)) - { - const ReplicaChunkDataSetEvent* dataSetEvent = static_cast(chunkEvent); - - size_t index = dataSetEvent->GetIndex(); - - UsageAggregationMap& dataSetAggregationMap = m_dataTypeAggregationMap[BandwidthUsage::DataType::DATA_SET]; - - UsageAggregationMap::iterator usageIter = dataSetAggregationMap.find(index); - - if (usageIter == dataSetAggregationMap.end()) - { - BandwidthUsage usage; - - usage.m_dataType = BandwidthUsage::DataType::DATA_SET; - usage.m_identifier = dataSetEvent->GetDataSetName(); - usage.m_index = dataSetEvent->GetIndex(); - - usageIter = dataSetAggregationMap.insert(UsageAggregationMap::value_type(index, usage)).first; - } - - bandwidthUsage = (&usageIter->second); - - if (azrtti_istypeof(dataSetEvent)) - { - m_totalUsageAggregator.m_bytesSent += dataSetEvent->GetUsageBytes(); - bandwidthUsage->m_usageAggregator.m_bytesSent += dataSetEvent->GetUsageBytes(); - OnProcessSentDataSet(static_cast(dataSetEvent)); - } - else if (azrtti_istypeof(dataSetEvent)) - { - m_totalUsageAggregator.m_bytesReceived += dataSetEvent->GetUsageBytes(); - bandwidthUsage->m_usageAggregator.m_bytesReceived += dataSetEvent->GetUsageBytes(); - OnProcessReceivedDataSet(static_cast(dataSetEvent)); - } - else - { - AZ_Error("Standalone Tools", false, "Unknown event type in BadnwidthUsageContainer::ProcessChunkEvent."); - } - } - else if (azrtti_istypeof(chunkEvent)) - { - const ReplicaChunkRPCEvent* rpcEvent = static_cast(chunkEvent); - - size_t index = rpcEvent->GetIndex(); - - UsageAggregationMap& rpcUsageAggregationMap = m_dataTypeAggregationMap[BandwidthUsage::DataType::REMOTE_PROCEDURE_CALL]; - - UsageAggregationMap::iterator usageIter = rpcUsageAggregationMap.find(index); - - if (usageIter == rpcUsageAggregationMap.end()) - { - BandwidthUsage usage; - - usage.m_dataType = BandwidthUsage::DataType::REMOTE_PROCEDURE_CALL; - usage.m_identifier = rpcEvent->GetRPCName(); - usage.m_index = rpcEvent->GetIndex(); - - usageIter = rpcUsageAggregationMap.insert(UsageAggregationMap::value_type(index, usage)).first; - } - - bandwidthUsage = (&usageIter->second); - - if (azrtti_istypeof(rpcEvent)) - { - m_totalUsageAggregator.m_bytesSent += rpcEvent->GetUsageBytes(); - bandwidthUsage->m_usageAggregator.m_bytesSent += rpcEvent->GetUsageBytes(); - OnProcessSentRPC(static_cast(rpcEvent)); - } - else if (azrtti_istypeof(rpcEvent)) - { - m_totalUsageAggregator.m_bytesReceived += rpcEvent->GetUsageBytes(); - bandwidthUsage->m_usageAggregator.m_bytesReceived += rpcEvent->GetUsageBytes(); - OnProcessReceivedRPC(static_cast(rpcEvent)); - } - else - { - AZ_Error("Standalone Tools", false, "Unknown event type in BadnwidthUsageContainer::ProcessChunkEvent."); - } - } - else - { - AZ_Error("Standalone Tools", false, "Unknown event type in BadnwidthUsageContainer::ProcessChunkEvent."); - } - } - - size_t BandwidthUsageContainer::GetTotalBytesSent() const - { - return m_totalUsageAggregator.m_bytesSent; - } - - size_t BandwidthUsageContainer::GetTotalBytesReceived() const - { - return m_totalUsageAggregator.m_bytesReceived; - } - - size_t BandwidthUsageContainer::GetTotalBandwidthUsage() const - { - return GetTotalBytesSent() + GetTotalBytesReceived(); - } - - const BandwidthUsageContainer::UsageAggregationMap& BandwidthUsageContainer::GetDataTypeUsageAggregation(BandwidthUsage::DataType dataType) const - { - static UsageAggregationMap s_emptyMap; - - DataTypeAggreationMap::const_iterator dataTypeIterator = m_dataTypeAggregationMap.find(dataType); - - AZ_Error("Standalone Tools", dataTypeIterator != m_dataTypeAggregationMap.end(), "Use of Unknown DataType inside of GetDataTypeUsageAggreation"); - if (dataTypeIterator != m_dataTypeAggregationMap.end()) - { - return dataTypeIterator->second; - } - - return s_emptyMap; - } - - void BandwidthUsageContainer::OnProcessSentDataSet(const ReplicaChunkSentDataSetEvent* sentData) - { - (void)sentData; - } - - void BandwidthUsageContainer::OnProcessReceivedDataSet(const ReplicaChunkReceivedDataSetEvent* receivedData) - { - (void)receivedData; - } - - void BandwidthUsageContainer::OnProcessSentRPC(const ReplicaChunkSentRPCEvent* sentData) - { - (void)sentData; - } - - void BandwidthUsageContainer::OnProcessReceivedRPC(const ReplicaChunkReceivedRPCEvent* receivedData) - { - (void)receivedData; - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.h deleted file mode 100644 index 618dd54a89..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.h +++ /dev/null @@ -1,401 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_BANDWIDTHCHARTDATA_H -#define DRILLER_REPLICA_BANDWIDTHCHARTDATA_H - -#include -#include -#include -#include -#include -#include - -#include -#include - -#include "ReplicaDataEvents.h" -#include "Source/Driller/StripChart.hxx" -#include "Source/Driller/AreaChart.hxx" - -#include "Source/Driller/DrillerDataTypes.h" - -#include - -namespace Driller -{ - // Graph Helper - class GraphPlotHelper - { - public: - GraphPlotHelper(const QColor& displayColor); - - void Reset(); - bool IsSetup() const; - void SetupPlotHelper(StripChart::DataStrip* chart, const char* channelName, float startValue); - void PlotData(StripChart::DataStrip* chart, float tickSize, float horizontalValue, float verticalValue, bool forceDraw); - - // Call this if you are going to do safety checks and don't want the GraphPlotHelper to do that. - // i.e. if your adding a bunch of data in a row, you'll want to safety check once, then add all the data here. - void PlotBatchedData(StripChart::DataStrip* chart, float tickSize, float horizontalValue, float verticalValue, bool forceDraw); - - void SetHighlight(StripChart::DataStrip* chart, bool highlight); - void ZeroOutLine(float lastHorizontalValue, float tickSize, StripChart::DataStrip* chart); - - private: - QColor m_color; - int m_channelId; - bool m_zeroOutLine; - bool m_initializeLine; - float m_lastHorizontalValue; - }; - - class AreaGraphPlotHelper - { - public: - AreaGraphPlotHelper(const QColor& displayColor); - - bool IsSetup() const; - void Reset(); - - void SetupPlotHelper(AreaChart::AreaChart* chart, const char* channelName, size_t seriesSize = 0); - - void PlotData(int position, unsigned int value); - void PlotBatchedData(int position, unsigned int value); - - void SetHighlighted(bool highlighted); - void SetEnabled(bool enabled); - - bool IsSeries(size_t seriesId) const; - - private: - - QColor m_color; - - AreaChart::AreaChart* m_areaChart; - size_t m_seriesId; - }; - - struct BandwidthUsageAggregator - { - BandwidthUsageAggregator(); - - void Reset(); - - quint64 m_bytesSent; - quint64 m_bytesReceived; - }; - - struct BandwidthUsage - { - enum class DataType - { - UNKNOWN, - DATA_SET, - REMOTE_PROCEDURE_CALL - }; - - DataType m_dataType = DataType::UNKNOWN; - BandwidthUsageAggregator m_usageAggregator; - - size_t m_index; - AZStd::string m_identifier; - }; - - class BandwidthUsageContainer - { - public: - typedef AZStd::unordered_map UsageAggregationMap; - typedef AZStd::unordered_map DataTypeAggreationMap; - - AZ_CLASS_ALLOCATOR(BandwidthUsageContainer, AZ::SystemAllocator, 0); - - BandwidthUsageContainer(); - virtual ~BandwidthUsageContainer(); - - void ProcessChunkEvent(const ReplicaChunkEvent* chunkEvent); - - size_t GetTotalBytesSent() const; - size_t GetTotalBytesReceived() const; - size_t GetTotalBandwidthUsage() const; - - const UsageAggregationMap& GetDataTypeUsageAggregation(BandwidthUsage::DataType dataType) const; - - protected: - virtual void OnProcessSentDataSet(const ReplicaChunkSentDataSetEvent* sentData); - virtual void OnProcessReceivedDataSet(const ReplicaChunkReceivedDataSetEvent* receivedData); - - virtual void OnProcessSentRPC(const ReplicaChunkSentRPCEvent* sentData); - virtual void OnProcessReceivedRPC(const ReplicaChunkReceivedRPCEvent* receivedData); - - private: - DataTypeAggreationMap m_dataTypeAggregationMap; - - BandwidthUsageAggregator m_totalUsageAggregator; - }; - - template - class ReplicaBandwidthChartData - { - public: - typedef AZStd::unordered_map BandwidthUsageMap; - typedef AZStd::unordered_map FrameMap; - - public: - AZ_CLASS_ALLOCATOR(ReplicaBandwidthChartData, AZ::SystemAllocator, 0); - - ReplicaBandwidthChartData(const QColor& color) - : m_color(color) - , m_enabled(true) - , m_selected(false) - , m_inspected(false) - , m_areaGraphPlotHelper(color) - { - QPixmap pixmap(16, 16); - QPainter painter(&pixmap); - painter.setBrush(m_color); - painter.drawRect(0, 0, 16, 16); - - m_icon.addPixmap(pixmap); - } - - virtual ~ReplicaBandwidthChartData() - { - for (typename FrameMap::iterator frameIter = m_frameMapping.begin(); - frameIter != m_frameMapping.end(); - ++frameIter) - { - BandwidthUsageMap* bandwidthUsageMap = frameIter->second; - - for (typename BandwidthUsageMap::iterator usageIter = bandwidthUsageMap->begin(); - usageIter != bandwidthUsageMap->end(); - ++usageIter) - { - delete usageIter->second; - } - - azdestroy(bandwidthUsageMap); - } - } - - virtual const char* GetAxisName() const = 0; - - const QColor& GetColor() const - { - return m_color; - } - - const QIcon& GetIcon() const - { - if (m_enabled) - { - return m_icon; - } - else - { - static bool s_doOnce = true; - static QIcon s_blackIcon; - - if (s_doOnce) - { - s_doOnce = false; - - QPixmap pixmap(16, 16); - QPainter painter(&pixmap); - painter.setBrush(Qt::black); - painter.drawRect(0, 0, 16, 16); - - s_blackIcon.addPixmap(pixmap); - } - - return s_blackIcon; - } - } - - bool HasUsageForFrame(FrameNumberType frame) const - { - return m_frameMapping.find(frame) != m_frameMapping.end(); - } - - const BandwidthUsageMap& FindUsageForFrame(FrameNumberType frameId) const - { - static const BandwidthUsageMap emptyMap; - - typename FrameMap::const_iterator frameIter = m_frameMapping.find(frameId); - - if (frameIter == m_frameMapping.end()) - { - return emptyMap; - } - else - { - return (*frameIter->second); - } - } - - const FrameMap& GetUsageForAllFrames() const - { - return m_frameMapping; - } - - size_t GetSentUsageForFrame(FrameNumberType frameId) const - { - size_t totalSentUsage = 0; - const BandwidthUsageMap& frameMap = FindUsageForFrame(frameId); - - for (auto frameIter = frameMap.begin(); - frameIter != frameMap.end(); - ++frameIter) - { - totalSentUsage += frameIter->second->GetTotalBytesSent(); - } - - return totalSentUsage; - } - - size_t GetReceivedUsageForFrame(FrameNumberType frameId) const - { - size_t totalReceivedUsage = 0; - - const BandwidthUsageMap& frameMap = FindUsageForFrame(frameId); - - for (auto frameIter = frameMap.begin(); - frameIter != frameMap.end(); - ++frameIter) - { - totalReceivedUsage += frameIter->second->GetTotalBytesReceived(); - } - - return totalReceivedUsage; - } - - const FrameMap& GetAllFrames() const - { - return m_frameMapping; - } - - AZ::s64 GetActiveFrameCount() const - { - return m_frameMapping.size(); - } - - void SetEnabled(bool enabled) - { - m_enabled = enabled; - } - - bool IsEnabled() const - { - return m_enabled; - } - - void SetSelected(bool selected) - { - m_selected = selected; - } - - bool IsSelected() const - { - return m_selected; - } - - void SetInspected(bool inspected) - { - m_inspected = inspected; - } - - bool IsInspected() const - { - return m_inspected; - } - - AreaGraphPlotHelper& GetAreaGraphPlotHelper() - { - return m_areaGraphPlotHelper; - } - - void ProcessReplicaChunkEvent(FrameNumberType frameId, const ReplicaChunkEvent* chunkEvent) - { - BandwidthUsageContainer* container = GetUsageForFrame(frameId, chunkEvent); - - if (container) - { - container->ProcessChunkEvent(chunkEvent); - } - } - - protected: - - BandwidthUsageMap* GetUsageForFrame(FrameNumberType frameId) - { - BandwidthUsageMap* retVal = nullptr; - - typename FrameMap::iterator frameIter = m_frameMapping.find(frameId); - - if (frameIter == m_frameMapping.end()) - { - retVal = azcreate(BandwidthUsageMap, ()); - - if (retVal) - { - m_frameMapping.insert(typename FrameMap::value_type(frameId, retVal)); - } - } - else - { - retVal = frameIter->second; - } - - return retVal; - } - - BandwidthUsageContainer* GetUsageForFrame(FrameNumberType frameId, const ReplicaChunkEvent* chunkEvent) - { - BandwidthUsageContainer* chunkContainer = nullptr; - BandwidthUsageMap* usageMap = GetUsageForFrame(frameId); - - if (usageMap) - { - T usageKey = GetKeyFromEvent(chunkEvent); - typename BandwidthUsageMap::iterator chunkIter = usageMap->find(usageKey); - - if (chunkIter == usageMap->end()) - { - chunkContainer = CreateBandwidthUsage(chunkEvent); - - if (chunkContainer) - { - usageMap->insert(typename BandwidthUsageMap::value_type(usageKey, chunkContainer)); - } - } - else - { - chunkContainer = static_cast(chunkIter->second); - } - } - - return chunkContainer; - } - - virtual BandwidthUsageContainer* CreateBandwidthUsage(const ReplicaChunkEvent* chunkEvent) = 0; - virtual T GetKeyFromEvent(const ReplicaChunkEvent* chunkEvent) const = 0; - - private: - - QIcon m_icon; - QColor m_color; - - FrameMap m_frameMapping; - bool m_enabled; - bool m_selected; - bool m_inspected; - - AreaGraphPlotHelper m_areaGraphPlotHelper; - }; -} -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.cpp deleted file mode 100644 index 5a35b095e3..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.cpp +++ /dev/null @@ -1,430 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include - -#include "ReplicaChunkTypeDetailView.h" - -#include - -#include "ReplicaChunkUsageDataContainers.h" -#include "ReplicaDataAggregator.hxx" - -namespace Driller -{ - //////////////////////////////////// - // ReplicaChunkTypeDetailViewModel - //////////////////////////////////// - - ReplicaChunkTypeDetailViewModel::ReplicaChunkTypeDetailViewModel(ReplicaChunkTypeDetailView* chunkDetailView) - : BaseDetailTreeViewModel(chunkDetailView) - { - } - - int ReplicaChunkTypeDetailViewModel::columnCount(const QModelIndex& parentIndex) const - { - (void)parentIndex; - - return static_cast(CD_COUNT); - } - - QVariant ReplicaChunkTypeDetailViewModel::data(const QModelIndex& index, int role) const - { - const BaseDisplayHelper* baseDisplay = static_cast(index.internalPointer()); - - if (role == Qt::BackgroundRole) - { - if (baseDisplay->m_inspected) - { - return QVariant::fromValue(QColor(94, 94, 178, 255)); - } - } - else - { - switch (index.column()) - { - case CD_DISPLAY_NAME: - if (role == Qt::DecorationRole) - { - if (baseDisplay->HasIcon()) - { - return baseDisplay->GetIcon(); - } - } - else if (role == Qt::DisplayRole) - { - QString displayName = baseDisplay->GetDisplayName(); - - if (displayName.isEmpty()) - { - return QString(""); - } - else - { - return displayName; - } - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignVCenter); - } - - break; - case CD_REPLICA_ID: - { - if (role == Qt::DisplayRole) - { - AZ::u64 replicaId = 0; - - const BaseDisplayHelper* currentDisplay = baseDisplay; - - while (currentDisplay != nullptr && !azrtti_istypeof(currentDisplay)) - { - currentDisplay = currentDisplay->GetParent(); - } - - if (currentDisplay) - { - const ReplicaDetailDisplayHelper* replicaDisplay = static_cast(currentDisplay); - replicaId = replicaDisplay->GetReplicaId(); - } - - return FormattingHelper::ReplicaID(replicaId); - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - } - break; - case CD_TOTAL_SENT: - if (role == Qt::DisplayRole) - { - return QString::number(baseDisplay->m_bandwidthUsageAggregator.m_bytesSent); - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - break; - case CD_TOTAL_RECEIVED: - if (role == Qt::DisplayRole) - { - return QString::number(baseDisplay->m_bandwidthUsageAggregator.m_bytesReceived); - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - break; - case CD_RPC_COUNT: - if (role == Qt::DisplayRole) - { - if (azrtti_istypeof(baseDisplay)) - { - size_t count = 0; - - for (BaseDisplayHelper* displayHelper : baseDisplay->GetChildren()) - { - count += displayHelper->GetChildren().size(); - } - - return QString::number(count); - } - else if (azrtti_istypeof(baseDisplay)) - { - return QString::number(baseDisplay->GetChildren().size()); - } - } - break; - default: - AZ_Assert(false,"Unknown column index %i",index.column()); - break; - } - } - - return QVariant(); - } - - QVariant ReplicaChunkTypeDetailViewModel::headerData(int section, Qt::Orientation orientation, int role) const - { - if (role == Qt::DisplayRole) - { - if (orientation == Qt::Horizontal) - { - switch (section) - { - case CD_DISPLAY_NAME: - return QString("Name"); - case CD_REPLICA_ID: - return QString("ReplicaId"); - case CD_TOTAL_SENT: - return QString("Sent Bytes"); - case CD_TOTAL_RECEIVED: - return QString("Received Bytes"); - case CD_RPC_COUNT: - return QString("RPC Count"); - default: - AZ_Assert(false, "Unknown section index %i", section); - break; - } - } - } - - return QVariant(); - } - - /////////////////////////////// - // ReplicaChunkTypeDetailView - /////////////////////////////// - ReplicaChunkTypeDetailView::ReplicaChunkTypeDetailView(ReplicaDataView* replicaDataView, ReplicaChunkTypeDataContainer* chunkTypeDataContainer) - : BaseDetailView(replicaDataView) - , m_inspectedSeries(AreaChart::AreaChart::k_invalidSeriesId) - , m_aggregateDisplayHelper(nullptr) - , m_replicaChunkData(chunkTypeDataContainer) - , m_chunkTypeDetailView(this) - , m_lifespanTelemetry("ReplicaChunkTypeDetailView") - { - QString replicaChunkType = QString("%1").arg(chunkTypeDataContainer->GetChunkType()); - - show(); - raise(); - activateWindow(); - setFocus(); - - setWindowTitle(QString("%1's breakdown - %2").arg(replicaChunkType).arg(replicaDataView->m_aggregator->GetInspectionFileName())); - - m_gui->replicaName->setText(replicaChunkType); - - // Ordering here needs to match ordering in BaseDetailView.h - m_gui->aggregationTypeComboBox->addItem(QString("Replica")); - m_gui->aggregationTypeComboBox->addItem(QString("Combined")); - - if (m_gui->aggregationTypeComboBox->count() == 1) - { - m_gui->aggregationTypeComboBox->setEditable(false); - m_gui->aggregationTypeComboBox->setEnabled(false); - } - - QObject::connect((&m_chunkTypeDetailView), SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)), this, SLOT(UpdateDisplay(const QModelIndex&, const QModelIndex&))); - QObject::connect(m_gui->aggregationTypeComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(DisplayModeChanged(int))); - - m_gui->aggregationTypeComboBox->setCurrentIndex(static_cast(DisplayMode::Aggregate)); - } - - ReplicaChunkTypeDetailView::~ReplicaChunkTypeDetailView() - { - for (ReplicaDetailDisplayMap::iterator displayIter = m_replicaDisplayMapping.begin(); - displayIter != m_replicaDisplayMapping.end(); - ++displayIter) - { - delete displayIter->second; - } - } - - const ReplicaBandwidthChartData::FrameMap& ReplicaChunkTypeDetailView::GetFrameData() const - { - return m_replicaChunkData->GetAllFrames(); - } - - BaseDetailDisplayHelper* ReplicaChunkTypeDetailView::FindDetailDisplay(const AZ::u64& replicaId) - { - BaseDetailDisplayHelper* retVal = nullptr; - - ReplicaDetailDisplayMap::iterator displayIter = m_replicaDisplayMapping.find(replicaId); - - if (displayIter != m_replicaDisplayMapping.end()) - { - retVal = displayIter->second; - } - - return retVal; - } - - const BaseDetailDisplayHelper* ReplicaChunkTypeDetailView::FindDetailDisplay(const AZ::u64& replicaId) const - { - const BaseDetailDisplayHelper* retVal = nullptr; - - ReplicaDetailDisplayMap::const_iterator displayIter = m_replicaDisplayMapping.find(replicaId); - - if (displayIter != m_replicaDisplayMapping.end()) - { - retVal = displayIter->second; - } - - return retVal; - } - - void ReplicaChunkTypeDetailView::InitializeDisplayData() - { - m_activeIds.clear(); - m_activeInspectedIds.clear(); - - BaseDetailDisplayHelper* aggregateDisplayHelper = FindAggregateDisplay(); - - if (aggregateDisplayHelper) - { - aggregateDisplayHelper->GetDataSetDisplayHelper()->ClearActiveDisplay(); - aggregateDisplayHelper->GetRPCDisplayHelper()->ClearActiveDisplay(); - } - - const ReplicaChunkTypeDataContainer::FrameMap& frameMap = m_replicaChunkData->GetAllFrames(); - - for (FrameNumberType currentFrame = m_replicaDataView->GetStartFrame(); currentFrame <= m_replicaDataView->GetEndFrame(); ++currentFrame) - { - ReplicaChunkTypeDataContainer::FrameMap::const_iterator frameIter = frameMap.find(currentFrame); - - if (frameIter == frameMap.end()) - { - continue; - } - - const ReplicaChunkTypeDataContainer::BandwidthUsageMap* usageMap = frameIter->second; - - for (ReplicaChunkTypeDataContainer::BandwidthUsageMap::const_iterator usageIter = usageMap->begin(); - usageIter != usageMap->end(); - ++usageIter) - { - ReplicaBandwidthUsage* bandwidthUsage = static_cast(usageIter->second); - - ReplicaDetailDisplayMap::iterator displayIter = m_replicaDisplayMapping.find(bandwidthUsage->GetReplicaId()); - ReplicaDetailDisplayHelper* replicaDisplay = nullptr; - - if (displayIter == m_replicaDisplayMapping.end()) - { - replicaDisplay = aznew ReplicaDetailDisplayHelper(bandwidthUsage->GetReplicaName(), bandwidthUsage->GetReplicaId()); - - if (replicaDisplay) - { - m_replicaDisplayMapping.insert(AZStd::make_pair(replicaDisplay->GetReplicaId(), replicaDisplay)); - } - } - else - { - replicaDisplay = displayIter->second; - } - - // Consider sending along an overall descriptor of the replcia so we can easily setup the display instead - // of iterating blindly over our detail information trying to get a sense of what the thing is. - if (replicaDisplay) - { - if (currentFrame == m_replicaDataView->GetCurrentFrame()) - { - m_activeInspectedIds.insert(replicaDisplay->GetReplicaId()); - } - - // First time we add an object in we want to reset it's display. - if (m_activeIds.insert(replicaDisplay->GetReplicaId()).second) - { - replicaDisplay->GetDataSetDisplayHelper()->ClearActiveDisplay(); - replicaDisplay->GetRPCDisplayHelper()->ClearActiveDisplay(); - } - - const ReplicaBandwidthUsage::UsageAggregationMap& dataSetBandwidthUsage = bandwidthUsage->GetDataTypeUsageAggregation(BandwidthUsage::DataType::DATA_SET); - - for (const auto& usagePair : dataSetBandwidthUsage) - { - const BandwidthUsage& currentUsage = usagePair.second; - - replicaDisplay->SetupDataSet(currentUsage.m_index, currentUsage.m_identifier.c_str()); - - if (aggregateDisplayHelper) - { - aggregateDisplayHelper->SetupDataSet(currentUsage.m_index, currentUsage.m_identifier.c_str()); - } - } - - const ReplicaBandwidthUsage::UsageAggregationMap& rpcBandwidthUsage = bandwidthUsage->GetDataTypeUsageAggregation(BandwidthUsage::DataType::REMOTE_PROCEDURE_CALL); - - for (const auto& usagePair : rpcBandwidthUsage) - { - const BandwidthUsage& currentUsage = usagePair.second; - - replicaDisplay->SetupRPC(currentUsage.m_index, currentUsage.m_identifier.c_str()); - - if (aggregateDisplayHelper) - { - aggregateDisplayHelper->SetupRPC(currentUsage.m_index, currentUsage.m_identifier.c_str()); - } - } - } - } - } - } - - BaseDetailDisplayHelper* ReplicaChunkTypeDetailView::FindAggregateDisplay() - { - if (m_aggregateDisplayHelper == nullptr) - { - m_aggregateDisplayHelper = aznew ReplicaDetailDisplayHelper("Combined Usage", FindAggregateID()); - m_replicaDisplayMapping.insert(AZStd::make_pair(m_aggregateDisplayHelper->GetReplicaId(), m_aggregateDisplayHelper)); - } - - return m_aggregateDisplayHelper; - } - - AZ::u64 ReplicaChunkTypeDetailView::FindAggregateID() const - { - return 0; - } - - void ReplicaChunkTypeDetailView::LayoutChanged() - { - m_chunkTypeDetailView.layoutChanged(); - } - - void ReplicaChunkTypeDetailView::OnSetupTreeView() - { - m_gui->treeView->setModel(&m_chunkTypeDetailView); - ShowTreeFrame(m_replicaDataView->GetCurrentFrame()); - } - - void ReplicaChunkTypeDetailView::ShowTreeFrame(FrameNumberType frameId) - { - m_chunkTypeDetailView.RefreshView(frameId); - } - - AZ::u32 ReplicaChunkTypeDetailView::CreateWindowGeometryCRC() - { - return AZ::Crc32("REPLICA_CHUNK_DETAIL_VIEW_WINDOW_STATE"); - } - - AZ::u32 ReplicaChunkTypeDetailView::CreateSplitterStateCRC() - { - return AZ::Crc32("REPLICA_CHUNK_DETAIL_VIEW_SPLITTER_STATE"); - } - - AZ::u32 ReplicaChunkTypeDetailView::CreateTreeStateCRC() - { - return AZ::Crc32("REPLICA_CHUNK_DETAIL_VIEW_TREE_STATE"); - } - - void ReplicaChunkTypeDetailView::OnInspectedSeries(size_t seriesId) - { - if (m_inspectedSeries != seriesId) - { - m_inspectedSeries = seriesId; - - // TODO: Handle expanding the tree and scrolling to the selected value. - for (auto& mapPair : m_replicaDisplayMapping) - { - BaseDetailDisplayHelper* displayHelper = mapPair.second; - - displayHelper->InspectSeries(m_inspectedSeries); - } - - if (m_aggregateDisplayHelper) - { - m_aggregateDisplayHelper->InspectSeries(m_inspectedSeries); - } - - m_chunkTypeDetailView.layoutChanged(); - } - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.h deleted file mode 100644 index 16b2ba7cba..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.h +++ /dev/null @@ -1,118 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_REPLICACHUNKTYPEDETAILVIEW_H -#define DRILLER_REPLICA_REPLICACHUNKTYPEDETAILVIEW_H - -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include - -#include "Source/Driller/StripChart.hxx" -#include "Source/Driller/Replica/ReplicaDisplayHelpers.h" -#include "Source/Driller/Replica/ReplicaDataView.hxx" - -#include "Source/Driller/Replica/BaseDetailView.h" - -namespace Ui -{ - class ReplicaDetailView; -} - -namespace Driller -{ - class ReplicaBandwidthUsage; - class ReplicaChunkTypeDetailView; - - class ReplicaChunkTypeDetailViewModel - : public BaseDetailTreeViewModel - { - public: - enum ColumnDescriptor - { - // Forcing the index to start at 0 - CD_INDEX_FORCE = -1, - - // Ordering of this enum determines the display order - CD_DISPLAY_NAME, - CD_REPLICA_ID, - CD_TOTAL_SENT, - CD_TOTAL_RECEIVED, - CD_RPC_COUNT, - - // Used for sizing of the TableView. Anything after this won't be displayed. - CD_COUNT - }; - - AZ_CLASS_ALLOCATOR(ReplicaChunkTypeDetailViewModel, AZ::SystemAllocator, 0); - ReplicaChunkTypeDetailViewModel(ReplicaChunkTypeDetailView* detailView); - - int columnCount(const QModelIndex& parentIndex = QModelIndex()) const override; - - QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; - QVariant headerData(int section, Qt::Orientation orientation, int role) const override; - }; - - class ReplicaChunkTypeDetailView - : public BaseDetailView - { - typedef AZStd::unordered_map ReplicaDetailDisplayMap; - - friend class ReplicaChunkTypeDetailViewModel; - - public: - AZ_CLASS_ALLOCATOR(ReplicaChunkTypeDetailView, AZ::SystemAllocator, 0); - - ReplicaChunkTypeDetailView(ReplicaDataView* replicaDataView, ReplicaChunkTypeDataContainer* chunkTypeDataContainer); - ~ReplicaChunkTypeDetailView(); - - const ReplicaBandwidthChartData::FrameMap& GetFrameData() const override; - BaseDetailDisplayHelper* FindDetailDisplay(const AZ::u64& replicaId) override; - const BaseDetailDisplayHelper* FindDetailDisplay(const AZ::u64& replicaId) const override; - - BaseDetailDisplayHelper* FindAggregateDisplay() override; - AZ::u64 FindAggregateID() const override; - - protected: - - void InitializeDisplayData() override; - - void LayoutChanged() override; - void OnSetupTreeView() override; - void ShowTreeFrame(FrameNumberType frameId) override; - - AZ::u32 CreateWindowGeometryCRC() override; - AZ::u32 CreateSplitterStateCRC() override; - AZ::u32 CreateTreeStateCRC() override; - - void OnInspectedSeries(size_t seriesId); - - private: - - size_t m_inspectedSeries; - - ReplicaDetailDisplayHelper* m_aggregateDisplayHelper; - - ReplicaDetailDisplayMap m_replicaDisplayMapping; - ReplicaChunkTypeDataContainer* m_replicaChunkData; - - ReplicaChunkTypeDetailViewModel m_chunkTypeDetailView; - - DrillerWindowLifepsanTelemetry m_lifespanTelemetry; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.cpp deleted file mode 100644 index 28bcf29daa..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.cpp +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "ReplicaChunkUsageDataContainers.h" - -#include "Source/Driller/StripChart.hxx" -#include "ReplicaDataEvents.h" - -#include "Source/Driller/Replica/ReplicaDisplayHelpers.h" - -namespace Driller -{ - ////////////////////////// - // ReplicaBandwidthUsage - ////////////////////////// - - ReplicaBandwidthUsage::ReplicaBandwidthUsage(const char* replicaName, AZ::u64 replicaId) - : m_replicaName(replicaName) - , m_replicaId(replicaId) - { - } - - AZ::u64 ReplicaBandwidthUsage::GetReplicaId() const - { - return m_replicaId; - } - - const char* ReplicaBandwidthUsage::GetReplicaName() const - { - return m_replicaName.c_str(); - } - - ////////////////////////////////// - // ReplicaChunkTypeDataContainer - ////////////////////////////////// - - ReplicaChunkTypeDataContainer::ReplicaChunkTypeDataContainer(const char* replicaType, const QColor& displayColor) - : ReplicaBandwidthChartData(displayColor) - , m_replicaType(replicaType) - { - } - - const char* ReplicaChunkTypeDataContainer::GetChunkType() const - { - return m_replicaType.c_str(); - } - - const char* ReplicaChunkTypeDataContainer::GetAxisName() const - { - return GetChunkType(); - } - - BandwidthUsageContainer* ReplicaChunkTypeDataContainer::CreateBandwidthUsage(const ReplicaChunkEvent* dataEvent) - { - return aznew ReplicaBandwidthUsage(dataEvent->GetReplicaName(), dataEvent->GetReplicaId()); - } - - AZ::u64 ReplicaChunkTypeDataContainer::GetKeyFromEvent(const ReplicaChunkEvent* dataEvent) const - { - return dataEvent->GetReplicaId(); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.h deleted file mode 100644 index 946359b006..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.h +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_CHUNK_USAGE_DATA_CONTAINER_H -#define DRILLER_REPLICA_CHUNK_USAGE_DATA_CONTAINER_H - -#include -#include -#include -#include -#include -#include - -#include - -#include "ReplicaBandwidthChartData.h" - -namespace Driller -{ - class ReplicaDataAggregator; - class ReplicaChunkEvent; - class ReplicaDataView; - - class BaseDetailDisplayHelper; - - class ReplicaBandwidthUsage - : public BandwidthUsageContainer - { - public: - AZ_CLASS_ALLOCATOR(ReplicaBandwidthUsage, AZ::SystemAllocator, 0); - ReplicaBandwidthUsage(const char* replicaName, AZ::u64 replicaId); - - AZ::u64 GetReplicaId() const; - const char* GetReplicaName() const; - - private: - AZStd::string m_replicaName; - AZ::u64 m_replicaId; - }; - - class ReplicaChunkTypeDataContainer - : public ReplicaBandwidthChartData - { - public: - AZ_CLASS_ALLOCATOR(ReplicaChunkTypeDataContainer, AZ::SystemAllocator, 0); - - ReplicaChunkTypeDataContainer(const char* replicaType, const QColor& displayColor); - - const char* GetChunkType() const; - const char* GetAxisName() const override; - - protected: - BandwidthUsageContainer* CreateBandwidthUsage(const ReplicaChunkEvent* dataEvent) override; - AZ::u64 GetKeyFromEvent(const ReplicaChunkEvent* dataEvent) const override; - - private: - - ReplicaBandwidthUsage* GetReplicaForFrame(AZ::u64 frameId, const ReplicaChunkEvent* dataEvent); - - AZStd::string m_replicaType; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.cpp deleted file mode 100644 index 9cc2c9ae10..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.cpp +++ /dev/null @@ -1,690 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include -#include -#include -#include - -#include "ReplicaDataAggregator.hxx" -#include - -#include "ReplicaDataEvents.h" -#include "ReplicaDataView.hxx" - -#include "Source/Driller/Workspaces/Workspace.h" -#include "Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.hxx" -#include "Source/Driller/ChannelDataView.hxx" - -namespace Driller -{ - //////////////////////////////////// - // ReplicaDataAggregatorSavedState - //////////////////////////////////// - - class ReplicaDataAggregatorSavedState : public AZ::UserSettings - { - public: - AZ_RTTI(ReplicaDataAggregatorSavedState, "{599BCB69-C521-4EFD-9D79-C09790907F81}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(ReplicaDataAggregatorSavedState, AZ::SystemAllocator, 0); - - ReplicaDataAggregatorSavedState() - { - } - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - - if (serialize) - { - serialize->Class() - ->Version(1) - ->Field("FrameBudget", &ReplicaDataConfigurationSettings::m_averageFrameBudget) - ->Field("DisplayType", &ReplicaDataConfigurationSettings::m_configurationDisplay) - ->Field("FrameRate", &ReplicaDataConfigurationSettings::m_frameRate) - ; - - serialize->Class() - ->Version(2) - ->Field("ConfigurationSettings",&ReplicaDataAggregatorSavedState::m_configurationSettings) - ; - } - } - - ReplicaDataConfigurationSettings m_configurationSettings; - }; - - /////////////////////////////////// - // ReplicaDataAggregatorWorkspace - /////////////////////////////////// - - class ReplicaDataAggregatorWorkspace : public AZ::UserSettings - { - public: - AZ_RTTI(ReplicaDataAggregatorWorkspace, "{EF501646-46BB-4C20-83C9-4C6816294448}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(ReplicaDataAggregatorWorkspace,AZ::SystemAllocator,0); - - AZStd::vector m_activeViewIndexes; - - ReplicaDataAggregatorWorkspace() - { - } - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_activeViewIndexes",&ReplicaDataAggregatorWorkspace::m_activeViewIndexes) - ->Version(1); - } - } - }; - - //////////////////////////////////// - // ReplicaExportSettingsSavedState - //////////////////////////////////// - - class ReplicaExportSettingsSavedState : public AZ::UserSettings - { - public: - AZ_RTTI(ReplicaExportSettingsSavedState,"{5CE5D03E-04A9-4D28-91D4-5587E0643E84}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(ReplicaExportSettingsSavedState,AZ::SystemAllocator,0); - - bool m_exportColumnDescriptors; - AZStd::vector< int > m_exportOrdering; - - ReplicaExportSettingsSavedState() - : m_exportColumnDescriptors(true) - { - } - - void Init() - { - m_exportOrdering = - { - static_cast(ReplicaExportSettings::ExportField::Name), - static_cast(ReplicaExportSettings::ExportField::Id), - static_cast(ReplicaExportSettings::ExportField::ChunkType), - static_cast(ReplicaExportSettings::ExportField::UsageType), - static_cast(ReplicaExportSettings::ExportField::UsageIdentifier), - static_cast(ReplicaExportSettings::ExportField::Bytes_Sent), - static_cast(ReplicaExportSettings::ExportField::Bytes_Received), - }; - } - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_exportColumnDescriptors",&ReplicaExportSettingsSavedState::m_exportColumnDescriptors) - ->Field("m_exportOrdering",&ReplicaExportSettingsSavedState::m_exportOrdering) - ->Version(1); - } - } - }; - - ////////////////////////// - // ReplicaExportSettings - ////////////////////////// - - const char* ReplicaExportSettings::REPLICA_CSV_EXPORT_SETTINGS = "REPLICA_CSV_EXPORT_SETTINGS"; - - ReplicaExportSettings::ReplicaExportSettings() - { - m_columnDescriptors = - { - { ExportField::Name, "Replica Name"}, - { ExportField::Id, "Replica Id"}, - { ExportField::ChunkType,"ReplicaChunk Type"}, - { ExportField::UsageType,"Usage Type"}, - { ExportField::UsageIdentifier,"Usage Identifier"}, - { ExportField::Bytes_Sent,"Data Sent(Bytes)"}, - { ExportField::Bytes_Received,"Data Received(Bytes)"}, - }; - - for (const AZStd::pair< ExportField, AZStd::string >& item : m_columnDescriptors) - { - m_stringToExportEnum[item.second] = item.first; - } - } - - void ReplicaExportSettings::LoadSettings() - { - m_persistentState = AZ::UserSettings::Find(AZ_CRC(REPLICA_CSV_EXPORT_SETTINGS), AZ::UserSettings::CT_GLOBAL); - - if (m_persistentState == nullptr) - { - m_persistentState = AZ::UserSettings::CreateFind(AZ_CRC(REPLICA_CSV_EXPORT_SETTINGS), AZ::UserSettings::CT_GLOBAL); - m_persistentState->Init(); - } - } - - void ReplicaExportSettings::GetExportItems(QStringList& items) const - { - for (const AZStd::pair< ReplicaExportField, AZStd::string>& item : m_columnDescriptors) - { - items.push_back(QString(item.second.c_str())); - } - } - - void ReplicaExportSettings::GetActiveExportItems(QStringList& items) const - { - for (unsigned int i=0; i < m_persistentState->m_exportOrdering.size(); ++i) - { - ReplicaExportField currentField = static_cast(m_persistentState->m_exportOrdering[i]); - - if (currentField != ReplicaExportField::UNKNOWN) - { - items.push_back(QString(FindColumnDescriptor(currentField).c_str())); - } - } - } - - void ReplicaExportSettings::UpdateExportOrdering(const QStringList& activeItems) - { - m_persistentState->m_exportOrdering.clear(); - - for (const QString& activeItem : activeItems) - { - ExportField field = FindExportFieldFromDescriptor(activeItem.toStdString().c_str()); - - AZ_Warning("Standalone Tools",field != ExportField::UNKNOWN,"Unknown descriptor %s",activeItem.toStdString().c_str()); - if (field != ExportField::UNKNOWN) - { - m_persistentState->m_exportOrdering.push_back(static_cast(field)); - } - } - - m_persistentState->m_exportColumnDescriptors = this->ShouldExportColumnDescriptors(); - } - - const AZStd::vector< int >& ReplicaExportSettings::GetExportOrder() const - { - return m_persistentState->m_exportOrdering; - } - - const AZStd::string& ReplicaExportSettings::FindColumnDescriptor(ExportField exportField) const - { - static const AZStd::string emptyDescriptor; - - AZStd::unordered_map::const_iterator descriptorIter = m_columnDescriptors.find(exportField); - - if (descriptorIter == m_columnDescriptors.end()) - { - AZ_Warning("Standalone Tools",false,"Unknown column descriptor in Carrier CSV Export"); - return emptyDescriptor; - } - else - { - return descriptorIter->second; - } - } - - ReplicaExportField ReplicaExportSettings::FindExportFieldFromDescriptor(const char* columnDescriptor) const - { - AZStd::unordered_map::const_iterator exportIter = m_stringToExportEnum.find(columnDescriptor); - - ExportField retVal = ExportField::UNKNOWN; - - if (exportIter != m_stringToExportEnum.end()) - { - retVal = exportIter->second; - } - - return retVal; - } - - ////////////////////////// - // ReplicaDataAggregator - ////////////////////////// - - const char* ReplicaDataAggregator::REPLICA_AGGREGATOR_SAVED_STATE = "REPLICA_DATA_AGGREGATOR_SAVED_STATE"; - const char* ReplicaDataAggregator::REPLICA_AGGREGATOR_WORKSPACE = "REPLICA_DATA_AGGREGATOR_WORKSPACE"; - - ReplicaDataAggregator::ReplicaDataAggregator(int identity) - : Aggregator(identity) - , m_parser(this) - , m_budgetMarkerTicket(0) - , m_processingFrame(0) - , m_currentFrameUsage(0.0f) - , m_maxFrameUsage(0.0f) - , m_normalizingValue(1.0f) - { - // find state and restore it - m_persistentState = AZ::UserSettings::CreateFind(AZ_CRC(REPLICA_AGGREGATOR_SAVED_STATE), AZ::UserSettings::CT_GLOBAL); - m_csvExportSettings.LoadSettings(); - - OnConfigurationChanged(); - - connect(this, SIGNAL(OnEventFinalized(DrillerEvent*)), SLOT(ProcessDrillerEvent(DrillerEvent*))); - } - - ReplicaDataAggregator::~ReplicaDataAggregator() - { - // Clear out our open data views - while (!m_openDataViews.empty()) - { - delete m_openDataViews.front(); - } - } - - CustomizeCSVExportWidget* ReplicaDataAggregator::CreateCSVExportCustomizationWidget() - { - return aznew GenericCustomizeCSVExportWidget(m_csvExportSettings); - } - - bool ReplicaDataAggregator::HasConfigurations() const - { - return true; - } - - ChannelConfigurationWidget* ReplicaDataAggregator::CreateConfigurationWidget() - { - return aznew ReplicaDataAggregatorConfigurationPanel(m_persistentState->m_configurationSettings); - } - - void ReplicaDataAggregator::OnConfigurationChanged() - { - // Adding a bit of fluff room into average frame budget in order to give it a bit of extra space above it - // so the line is really clear. - float normalizingValue = m_normalizingValue; - - // Only allow the maximum usage to double our specified budget to avoid losing too much fidelity - // for outlier data. - float maxUsage = AZ::GetMin(m_maxFrameUsage,m_persistentState->m_configurationSettings.m_averageFrameBudget * 2.0f); - - m_normalizingValue = AZStd::max(maxUsage, m_persistentState->m_configurationSettings.m_averageFrameBudget); - m_normalizingValue = AZStd::GetMax(1.0f, m_normalizingValue); - - if (!AZ::IsClose(normalizingValue,m_normalizingValue,0.001f)) - { - emit NormalizedRangeChanged(); - } - } - - void ReplicaDataAggregator::AnnotateChannelView(ChannelDataView* channelDataView) - { - RemoveChannelAnnotation(channelDataView); - - float budgetMarker = (2.0f * (m_persistentState->m_configurationSettings.m_averageFrameBudget / m_normalizingValue) - 1.0f); - - QColor color = GetColor(); - color.setRed(AZStd::min(color.red() + 50, 255)); - color.setGreen(AZStd::min(color.green() + 50, 255)); - color.setBlue(AZStd::min(color.blue() + 50, 255)); - - m_budgetMarkerTicket = channelDataView->AddBudgetMarker(budgetMarker, color); - } - - void ReplicaDataAggregator::RemoveChannelAnnotation(ChannelDataView* channelDataView) - { - if (m_budgetMarkerTicket != 0) - { - channelDataView->RemoveBudgetMarker(m_budgetMarkerTicket); - m_budgetMarkerTicket = 0; - } - } - - float ReplicaDataAggregator::ValueAtFrame(FrameNumberType frame) - { - size_t totalChunkBandwidth = 0; - - const EventListType& eventList = GetEvents(); - - // If we have an event, do some fancy color coding. - AZ::s64 numEvents = NumOfEventsAtFrame(frame); - AZ::s64 startIndex = GetFirstIndexAtFrame(frame); - - for (AZ::s64 i = 0; i < numEvents; ++i) - { - ReplicaChunkEvent* replicaChunkEvent = static_cast(eventList[startIndex + i]); - - totalChunkBandwidth += replicaChunkEvent->GetUsageBytes(); - } - - return AZStd::min(1.0f, static_cast(totalChunkBandwidth) / m_normalizingValue)*2.0f - 1.0f; - } - - void ReplicaDataAggregator::OnDataViewDestroyed(QObject* object) - { - for (AZStd::vector::iterator dataViewIter = m_openDataViews.begin(); - dataViewIter != m_openDataViews.end(); - ++dataViewIter) - { - if ((*dataViewIter) == object) - { - m_openDataViews.erase(dataViewIter); - break; - } - } - } - - void ReplicaDataAggregator::ProcessDrillerEvent(DrillerEvent* drillerEvent) - { - size_t currentFrame = GetFrameCount(); - - if (currentFrame != m_processingFrame) - { - m_processingFrame = currentFrame; - m_currentFrameUsage = 0; - } - - ReplicaChunkEvent* replicaChunkEvent = static_cast(drillerEvent); - m_currentFrameUsage += replicaChunkEvent->GetUsageBytes(); - - if (m_currentFrameUsage > m_maxFrameUsage) - { - m_maxFrameUsage = m_currentFrameUsage; - OnConfigurationChanged(); - } - } - - void ReplicaDataAggregator::ApplySettingsFromWorkspace(WorkspaceSettingsProvider* settingsProvider) - { - (void)settingsProvider; - } - - void ReplicaDataAggregator::ActivateWorkspaceSettings(WorkspaceSettingsProvider* settingsProvider) - { - ReplicaDataAggregatorWorkspace* workspace = settingsProvider->FindSetting(AZ_CRC(REPLICA_AGGREGATOR_WORKSPACE)); - - if (workspace) - { - // Clear out our open data views - while (!m_openDataViews.empty()) - { - delete m_openDataViews.front(); - } - - for (int i=0; i < workspace->m_activeViewIndexes.size(); ++i) - { - ReplicaDataView* dataView = aznew ReplicaDataView(workspace->m_activeViewIndexes[i],1,this); - RegisterReplicaDataView(dataView); - - dataView->ApplySettingsFromWorkspace(settingsProvider); - dataView->ActivateWorkspaceSettings(settingsProvider); - } - } - } - - void ReplicaDataAggregator::SaveSettingsToWorkspace(WorkspaceSettingsProvider* settingsProvider) - { - ReplicaDataAggregatorWorkspace* workspace = settingsProvider->CreateSetting(AZ_CRC(REPLICA_AGGREGATOR_WORKSPACE)); - - if (workspace) - { - workspace->m_activeViewIndexes.clear(); - - for (ReplicaDataView* dataView : m_openDataViews) - { - workspace->m_activeViewIndexes.push_back(dataView->GetDataViewIndex()); - dataView->SaveSettingsToWorkspace(settingsProvider); - } - } - } - - unsigned int ReplicaDataAggregator::GetAverageFrameBandwidthBudget() const - { - return static_cast(m_persistentState->m_configurationSettings.m_averageFrameBudget); - } - - QColor ReplicaDataAggregator::GetColor() const - { - return QColor(0, 0, 255); - } - - QString ReplicaDataAggregator::GetName() const - { - return QString("Replica activity"); - } - - QString ReplicaDataAggregator::GetChannelName() const - { - return ChannelName(); - } - - QString ReplicaDataAggregator::GetDescription() const - { - return QString("GridMate Replica Usage Per Frame"); - } - - QString ReplicaDataAggregator::GetToolTip() const - { - return QString("Information about Replica's, DataSet's, and RPC's"); - } - - AZ::Uuid ReplicaDataAggregator::GetID() const - { - return AZ::Uuid("{1252CBE9-111B-4CD3-AF10-FFAE9566B2FF}"); - } - - QWidget* ReplicaDataAggregator::DrillDownRequest(FrameNumberType frame) - { - unsigned int replicaDataViewIndex = static_cast(m_openDataViews.size()); - - // We only push to the back, so the list will be ordered with the highest index - // being at the back. - // Not exactly bulletproof, but simple(and if they want to open 4 billion windows to cause a slight error, more power to them). - if (!m_openDataViews.empty()) - { - replicaDataViewIndex = m_openDataViews.back()->GetDataViewIndex() + 1; - } - - ReplicaDataView* retVal = aznew ReplicaDataView(replicaDataViewIndex, frame, this); - RegisterReplicaDataView(retVal); - - return retVal; - } - - void ReplicaDataAggregator::OptionsRequest() - { - } - - void ReplicaDataAggregator::ExportColumnDescriptorToCSV(AZ::IO::SystemFile& file, CSVExportSettings* exportSettings) - { - ReplicaExportSettings* replicaExportSettings = static_cast(exportSettings); - const AZStd::vector< int >& exportOrdering = replicaExportSettings->GetExportOrder(); - - bool addComma = false; - - for (int fieldId : exportOrdering) - { - ReplicaExportField currentField = static_cast(fieldId); - - if (addComma) - { - file.Write(",",1); - } - - const AZStd::string& columnDescriptor = replicaExportSettings->FindColumnDescriptor(currentField); - file.Write(columnDescriptor.c_str(),columnDescriptor.size()); - addComma = true; - } - - file.Write("\n",1); - } - - void ReplicaDataAggregator::ExportEventToCSV(AZ::IO::SystemFile& file, const DrillerEvent* drillerEvent, CSVExportSettings* exportSettings) - { - AZ_Assert(azrtti_istypeof(drillerEvent),"Invalid Event"); - const ReplicaChunkEvent* replicaChunkEvent = static_cast(drillerEvent); - - ReplicaExportSettings* replicaExportSettings = static_cast(exportSettings); - - const AZStd::vector< int >& exportOrdering = replicaExportSettings->GetExportOrder(); - bool addComma = false; - - AZStd::string field; - - for (int fieldId : exportOrdering) - { - ReplicaExportField currentField = static_cast(fieldId); - - if (addComma) - { - file.Write(",",1); - } - - switch (currentField) - { - case ReplicaExportField::Name: - { - field = replicaChunkEvent->GetReplicaName(); - break; - } - case ReplicaExportField::Id: - { - AZStd::to_string(field,replicaChunkEvent->GetReplicaId()); - break; - } - case ReplicaExportField::ChunkType: - { - field = replicaChunkEvent->GetChunkTypeName(); - break; - } - case ReplicaExportField::UsageType: - { - switch (replicaChunkEvent->GetEventType()) - { - case Replica::RET_CHUNK_DATASET_SENT: - case Replica::RET_CHUNK_DATASET_RECEIVED: - { - field = "DataSet"; - break; - } - case Replica::RET_CHUNK_RPC_SENT: - case Replica::RET_CHUNK_RPC_RECEIVED: - { - field = "RPC"; - break; - } - default: - AZ_Warning("Standalone Tools",false,"Unknown Event Type for Replica Event"); - break; - } - break; - } - case ReplicaExportField::UsageIdentifier: - { - if (azrtti_istypeof(replicaChunkEvent)) - { - const ReplicaChunkSentDataSetEvent* dataSetEvent = static_cast(replicaChunkEvent); - field = dataSetEvent->GetDataSetName(); - } - else if (azrtti_istypeof(replicaChunkEvent)) - { - const ReplicaChunkReceivedDataSetEvent* dataSetEvent = static_cast(replicaChunkEvent); - field = dataSetEvent->GetDataSetName(); - } - else if (azrtti_istypeof(replicaChunkEvent)) - { - const ReplicaChunkSentRPCEvent* rpcEvent = static_cast(replicaChunkEvent); - field = rpcEvent->GetRPCName(); - } - else if (azrtti_istypeof(replicaChunkEvent)) - { - const ReplicaChunkReceivedRPCEvent* rpcEvent = static_cast(replicaChunkEvent); - field = rpcEvent->GetRPCName(); - } - else - { - AZ_Warning("Standalone Tools",false,"Invalid ReplicaEvent Type Usage"); - } - - break; - } - case ReplicaExportField::Bytes_Sent: - { - switch (replicaChunkEvent->GetEventType()) - { - case Replica::RET_CHUNK_RPC_SENT: - case Replica::RET_CHUNK_DATASET_SENT: - { - field = AZStd::to_string(static_cast(replicaChunkEvent->GetUsageBytes())); - break; - } - case Replica::RET_CHUNK_RPC_RECEIVED: - case Replica::RET_CHUNK_DATASET_RECEIVED: - { - field = "0"; - break; - } - default: - AZ_Warning("Standalone Tools",false,"Unknown EventType for ReplicaEvent"); - break; - } - break; - } - case ReplicaExportField::Bytes_Received: - { - switch (replicaChunkEvent->GetEventType()) - { - case Replica::RET_CHUNK_RPC_SENT: - case Replica::RET_CHUNK_DATASET_SENT: - { - field = "0"; - break; - } - case Replica::RET_CHUNK_RPC_RECEIVED: - case Replica::RET_CHUNK_DATASET_RECEIVED: - { - field = AZStd::to_string(static_cast(replicaChunkEvent->GetUsageBytes())); - break; - } - default: - AZ_Warning("Standalone Tools",false,"Unknown EventType for ReplicaEvent"); - break; - } - break; - } - default: - AZ_Warning("Standalone Tools",false,"Unknown Export Field for ReplicaDataAggreagtor"); - break; - } - - file.Write(field.c_str(),field.length()); - addComma = true; - } - - file.Write("\n",1); - } - - void ReplicaDataAggregator::RegisterReplicaDataView(ReplicaDataView* replicaDataView) - { - if (replicaDataView) - { - m_openDataViews.push_back(replicaDataView); - - connect(replicaDataView,SIGNAL(destroyed(QObject*)),this,SLOT(OnDataViewDestroyed(QObject*))); - } - } - - void ReplicaDataAggregator::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - - if (serialize) - { - ReplicaDataView::Reflect(context); - - ReplicaExportSettingsSavedState::Reflect(context); - ReplicaDataAggregatorSavedState::Reflect(context); - ReplicaDataAggregatorWorkspace::Reflect(context); - - serialize->Class() - ->Version(1) - ->SerializeWithNoData(); - } - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.hxx deleted file mode 100644 index 66c0b9d179..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.hxx +++ /dev/null @@ -1,203 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_DATAAGGREGATOR_H -#define DRILLER_REPLICA_DATAAGGREGATOR_H - -#if !defined(Q_MOC_RUN) -#include "Source/Driller/DrillerAggregator.hxx" -#include "ReplicaDataParser.h" - -#include "GridMate/Drillers/ReplicaDriller.h" - -#include "Source/Driller/GenericCustomizeCSVExportWidget.hxx" -#include -#endif - -namespace Driller -{ - class ReplicaDataView; - class ReplicaDataAggregatorSavedState; - class ReplicaExportSettingsSavedState; - - class ReplicaExportSettings - : public GenericCSVExportSettings - { - // Serialization Keys - static const char* REPLICA_CSV_EXPORT_SETTINGS; - - public: - enum class ExportField - { - Name = 0, - Id, - ChunkType, - UsageType, - UsageIdentifier, - Bytes_Sent, - Bytes_Received, - UNKNOWN - }; - - private: - AZStd::unordered_map< ExportField, AZStd::string > m_columnDescriptors; - AZStd::unordered_map< AZStd::string, ExportField > m_stringToExportEnum; - - AZStd::intrusive_ptr m_persistentState; - - public: - AZ_CLASS_ALLOCATOR(ReplicaExportSettings, AZ::SystemAllocator, 0); - - ReplicaExportSettings(); - - void LoadSettings(); - - void GetExportItems(QStringList& items) const override; - void GetActiveExportItems(QStringList& items) const override; - - const AZStd::vector< int >& GetExportOrder() const; - const AZStd::string& FindColumnDescriptor(ExportField exportField) const; - protected: - void UpdateExportOrdering(const QStringList& activeItems) override; - - private: - ExportField FindExportFieldFromDescriptor(const char* descriptor) const; - }; - - struct ReplicaDataConfigurationSettings - { - public: - enum ConfigurationDisplayType - { - CDT_Start = -1, - - CDT_Frame, - CDT_Second, - CDT_Minute, - - CDT_Max - }; - - AZ_TYPE_INFO(ReplicaDataConfigurationSettings, "{7A075B8E-DCAF-47A1-96CF-2CA3A44F38EF}"); - - ReplicaDataConfigurationSettings() - : m_averageFrameBudget(1024.0f * 10.0f) - , m_configurationDisplay(CDT_Frame) - , m_frameRate(60) - { - } - - // Actual data to be used in the display settings - float m_averageFrameBudget; - - // Information needed purely for the display - ConfigurationDisplayType m_configurationDisplay; - unsigned int m_frameRate; - }; - - typedef ReplicaExportSettings::ExportField ReplicaExportField; - - class ReplicaDataAggregator : public Aggregator - { - Q_OBJECT - - // Serialization Keys - static const char* REPLICA_AGGREGATOR_SAVED_STATE; - static const char* REPLICA_AGGREGATOR_WORKSPACE; - public: - AZ_RTTI(ReplicaDataAggregator, "{764A4084-E579-4811-89D5-3ADA0632358D}"); - AZ_CLASS_ALLOCATOR(ReplicaDataAggregator, AZ::SystemAllocator, 0); - - ReplicaDataAggregator(int identity = 0); - ~ReplicaDataAggregator(); - - static AZ::u32 DrillerId() { return GridMate::Debug::ReplicaDriller::Tags::REPLICA_DRILLER; } - - AZ::u32 GetDrillerId() const override - { - return ReplicaDataAggregator::DrillerId(); - } - - static const char* ChannelName() { return "GridMate"; } - - AZ::Crc32 GetChannelId() const override - { - return AZ::Crc32(ChannelName()); - } - - AZ::Debug::DrillerHandlerParser* GetDrillerDataParser() override - { - return &m_parser; - } - - bool CanExportToCSV() const override - { - return true; - } - - CustomizeCSVExportWidget* CreateCSVExportCustomizationWidget() override; - - bool HasConfigurations() const; - ChannelConfigurationWidget* CreateConfigurationWidget() override; - void OnConfigurationChanged() override; - - void AnnotateChannelView(ChannelDataView* channelDataView) override; - void RemoveChannelAnnotation(ChannelDataView* channelDataView) override; - - // Driller::Aggregator. - void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*) override; - void ActivateWorkspaceSettings(WorkspaceSettingsProvider*) override; - void SaveSettingsToWorkspace(WorkspaceSettingsProvider*) override; - - static void Reflect(AZ::ReflectContext* context); - - // ReplicaDataAggregator - unsigned int GetAverageFrameBandwidthBudget() const; - - public slots: - // Driller::Aggregator - float ValueAtFrame(FrameNumberType frame) override; - QColor GetColor() const override; - QString GetName() const override; - QString GetChannelName() const override; - QString GetDescription() const override; - QString GetToolTip() const override; - AZ::Uuid GetID() const override; - QWidget* DrillDownRequest(FrameNumberType frame) override; - void OptionsRequest() override; - void OnDataViewDestroyed(QObject* object); - - void ProcessDrillerEvent(DrillerEvent* drillerEvent); - - protected: - void ExportColumnDescriptorToCSV(AZ::IO::SystemFile& file,CSVExportSettings* exportSettings) override; - void ExportEventToCSV(AZ::IO::SystemFile& file, const DrillerEvent* drillerEvent,CSVExportSettings* exportSettings) override; - - private: - ReplicaDataAggregator(const ReplicaDataAggregator&) = delete; - void RegisterReplicaDataView(ReplicaDataView* replicaDataView); - - ReplicaExportSettings m_csvExportSettings; - ReplicaDataParser m_parser; - - unsigned int m_budgetMarkerTicket; - - size_t m_processingFrame; - - float m_currentFrameUsage; - float m_maxFrameUsage; - - float m_normalizingValue; - - AZStd::vector< ReplicaDataView* > m_openDataViews; - - AZStd::intrusive_ptr m_persistentState; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.cpp deleted file mode 100644 index 91098eab54..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.cpp +++ /dev/null @@ -1,171 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#include -#include - -namespace Driller -{ - //////////////////////////////////////////// - // ReplicaDataAggregatorConfigurationPanel - //////////////////////////////////////////// - - ReplicaDataAggregatorConfigurationPanel::ReplicaDataAggregatorConfigurationPanel(ReplicaDataConfigurationSettings& configurationSettings) - : m_configurationSettings(configurationSettings) - { - setupUi(this); - - InitUI(); - - connect(fpsSpinBox, SIGNAL(valueChanged(int)), SLOT(OnFPSChanged(int))); - connect(unitSelector, SIGNAL(currentIndexChanged(int)), SLOT(OnTypeChanged(int))); - connect(budgetSpinBox, SIGNAL(valueChanged(int)), SLOT(OnBudgetChanged(int))); - - m_changeTimer.setInterval(500); - m_changeTimer.setSingleShot(true); - - connect(&m_changeTimer, SIGNAL(timeout()), SLOT(OnTimeout())); - } - - ReplicaDataAggregatorConfigurationPanel::~ReplicaDataAggregatorConfigurationPanel() - { - } - - void ReplicaDataAggregatorConfigurationPanel::InitUI() - { - fpsSpinBox->setValue(m_configurationSettings.m_frameRate); - - for (unsigned int i = 0; i < static_cast(ReplicaDataConfigurationSettings::CDT_Max); ++i) - { - switch (static_cast(i)) - { - case ReplicaDataConfigurationSettings::CDT_Frame: - unitSelector->addItem("Bytes per Frame"); - break; - case ReplicaDataConfigurationSettings::CDT_Second: - unitSelector->addItem("Bytes per Second"); - break; - case ReplicaDataConfigurationSettings::CDT_Minute: - unitSelector->addItem("Bytes per Minute"); - break; - default: - unitSelector->addItem("???"); - AZ_Error("ReplicaDataAggregatorConfigurationPanel", false, "Unhandled unit given to ReplicaDataConfigurationSettings."); - break; - } - } - - int displayConfiguration = static_cast(m_configurationSettings.m_configurationDisplay); - - if (displayConfiguration >= 0 && displayConfiguration < static_cast(ReplicaDataConfigurationSettings::CDT_Max)) - { - unitSelector->setCurrentIndex(displayConfiguration); - } - - DisplayTypeDescriptor(); - UpdateBudgetDisplay(); - } - - void ReplicaDataAggregatorConfigurationPanel::OnBudgetChanged(int value) - { - float budget = static_cast(value); - switch (m_configurationSettings.m_configurationDisplay) - { - case ReplicaDataConfigurationSettings::CDT_Frame: - // Don't need to do anything on Seconds - break; - case ReplicaDataConfigurationSettings::CDT_Minute: - budget = budget / 60.0f; - // Fall through to the seconds. - case ReplicaDataConfigurationSettings::CDT_Second: - budget = budget / static_cast(m_configurationSettings.m_frameRate); - break; - default: - AZ_Error("ReplicaDataAggregatorConfigurationPanel", false, "Unknown configuraiton display given."); - break; - } - - m_configurationSettings.m_averageFrameBudget = static_cast(budget); - - m_changeTimer.start(); - } - - void ReplicaDataAggregatorConfigurationPanel::OnTypeChanged(int type) - { - if (type >= 0 && type < static_cast(ReplicaDataConfigurationSettings::CDT_Max)) - { - m_configurationSettings.m_configurationDisplay = static_cast(type); - - DisplayTypeDescriptor(); - UpdateBudgetDisplay(); - } - } - - void ReplicaDataAggregatorConfigurationPanel::OnFPSChanged(int fps) - { - // We don't want the budget to change when we switch FPS - // but we may need to update the value we actually store. - // so we'll store the original value - int budget = budgetSpinBox->value(); - - m_configurationSettings.m_frameRate = fps; - - // Then fake setting that value to recalculate using the - // new frame rate correctly. - OnBudgetChanged(budget); - } - - void ReplicaDataAggregatorConfigurationPanel::OnTimeout() - { - emit ConfigurationChanged(); - } - - void ReplicaDataAggregatorConfigurationPanel::DisplayTypeDescriptor() - { - switch (m_configurationSettings.m_configurationDisplay) - { - case ReplicaDataConfigurationSettings::CDT_Frame: - unitLabel->setText("Frame"); - break; - case ReplicaDataConfigurationSettings::CDT_Second: - unitLabel->setText("Second"); - break; - case ReplicaDataConfigurationSettings::CDT_Minute: - unitLabel->setText("Minute"); - break; - default: - unitLabel->setText("???"); - AZ_Error("ReplicaDataAggregatorCOnfigurationPanel", false, "Unknown unit configuration."); - } - } - - void ReplicaDataAggregatorConfigurationPanel::UpdateBudgetDisplay() - { - float displayValue = m_configurationSettings.m_averageFrameBudget; - - switch (m_configurationSettings.m_configurationDisplay) - { - case ReplicaDataConfigurationSettings::CDT_Frame: - // Frame is good as is. - break; - case ReplicaDataConfigurationSettings::CDT_Minute: - // Multiply by 60 then let it fall through into the conversion to seconds. - displayValue *= 60; - case ReplicaDataConfigurationSettings::CDT_Second: - // For seconds, multiply the average frame budget, by the frame rate. - displayValue *= m_configurationSettings.m_frameRate; - break; - default: - AZ_Error("ReplicaDataAggregationConfigurationPanel", false, "Unknown configuration type given."); - } - - budgetSpinBox->setValue(static_cast(displayValue)); - } - - -#undef TOSTRING -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.hxx b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.hxx deleted file mode 100644 index 9293c7ed39..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.hxx +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#pragma once - -#ifndef DRILLER_REPLICA_REPLICADATAAGGREGATORCONFIGURATIONPANEL_H -#define DRILLER_REPLICA_REPLICADATAAGGREGATORCONFIGURATIONPANEL_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#include -#include - -// Generated File -#include - -#include -#include -#endif - -namespace Driller -{ - class ReplicaDataAggregatorConfigurationPanel - : public ChannelConfigurationWidget - , private Ui::ReplicaDataAggregatorConfigurationPanel - { - Q_OBJECT - public: - AZ_CLASS_ALLOCATOR(ReplicaDataAggregatorConfigurationPanel, AZ::SystemAllocator, 0); - - ReplicaDataAggregatorConfigurationPanel(ReplicaDataConfigurationSettings& configurationSettings); - ~ReplicaDataAggregatorConfigurationPanel(); - - public slots: - void OnBudgetChanged(int budget); - void OnTypeChanged(int type); - void OnFPSChanged(int fps); - - void OnTimeout(); - - private: - - void InitUI(); - - void DisplayTypeDescriptor(); - void UpdateBudgetDisplay(); - - ReplicaDataConfigurationSettings& m_configurationSettings; - QTimer m_changeTimer; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.ui b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.ui deleted file mode 100644 index f0eff2308d..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.ui +++ /dev/null @@ -1,345 +0,0 @@ - - - ReplicaDataAggregatorConfigurationPanel - - - - 0 - 0 - 354 - 127 - - - - Form - - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - Replica Data Aggregator Configuration - - - - 5 - - - 10 - - - 5 - - - 0 - - - 0 - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 6 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - - 120 - 0 - - - - Qt::LeftToRight - - - Unit of Measure - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 115 - 0 - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 120 - 0 - - - - Bandwidth Usage Budget - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 115 - 0 - - - - 999999999 - - - - - - - - 0 - 0 - - - - bytes per - - - - - - - Frame - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - Qt::Horizontal - - - - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 120 - 0 - - - - FPS - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 0 - - - - - - - - 115 - 0 - - - - 1 - - - 240 - - - 60 - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - - - - - - - - diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataEvents.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataEvents.h deleted file mode 100644 index 18e325435a..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataEvents.h +++ /dev/null @@ -1,291 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_DATAEVENTS_H -#define DRILLER_REPLICA_DATAEVENTS_H - -#include -#include -#include -#include -#include - -#include "Source/Driller/DrillerEvent.h" - -namespace Driller -{ - namespace Replica - { - enum ReplicaEventType - { - RET_CHUNK_DATASET_SENT = 0, - RET_CHUNK_DATASET_RECEIVED, - RET_CHUNK_RPC_SENT, - RET_CHUNK_RPC_RECEIVED - }; - } - - class ReplicaChunkEvent - : public DrillerEvent - { - protected: - ReplicaChunkEvent(Replica::ReplicaEventType eventType) - : DrillerEvent(static_cast(eventType)) - , m_replicaId(0) - , m_replicaChunkId(0) - , m_replicaChunkIndex(std::numeric_limits::max()) - , m_timeProcessed(0) - , m_usageBytes(0) - { - } - - public: - - AZ_CLASS_ALLOCATOR(ReplicaChunkEvent, AZ::SystemAllocator, 0); - AZ_RTTI(ReplicaChunkEvent, "{76B2DCFB-2D63-4B11-AD18-48843209FF26}", DrillerEvent); - - void SetReplicaName(const char* replicaName) - { - m_replicaName = replicaName; - } - - const char* GetReplicaName() const - { - return m_replicaName.c_str(); - } - - void SetReplicaChunkIndex(AZ::u32 index) - { - m_replicaChunkIndex = index; - } - - AZ::u32 GetReplicaChunkIndex() const - { - return m_replicaChunkIndex; - } - - void SetChunkTypeName(const char* chunkTypeName) - { - m_chunkTypeName = chunkTypeName; - - // Temporary measure to maintain data integrity - if (m_replicaChunkIndex == std::numeric_limits::max()) - { - m_replicaChunkIndex = static_cast(AZ::Crc32(chunkTypeName)); - } - } - - const char* GetChunkTypeName() const - { - return m_chunkTypeName.c_str(); - } - - void SetUsageBytes(size_t usageBytes) - { - m_usageBytes = usageBytes; - } - - size_t GetUsageBytes() const - { - return m_usageBytes; - } - - void SetReplicaId(AZ::u64 replicaId) - { - m_replicaId = replicaId; - } - - AZ::u64 GetReplicaId() const - { - return m_replicaId; - } - - void SetReplicaChunkId(AZ::u64 replicaChunkId) - { - m_replicaChunkId = replicaChunkId; - } - - AZ::u64 GetReplicaChunkId() const - { - return m_replicaChunkId; - } - - void SetTimeProcssed(const AZStd::chrono::milliseconds& timeProcessed) - { - m_timeProcessed = timeProcessed; - } - - AZStd::chrono::milliseconds GetTimeProcessed() const - { - return m_timeProcessed; - } - - void StepForward(Aggregator* data) override { (void)data; }; - void StepBackward(Aggregator* data) override { (void)data; }; - - private: - AZStd::string m_replicaName; - AZStd::string m_chunkTypeName; - - AZ::u64 m_replicaId; - AZ::u64 m_replicaChunkId; - - AZ::u32 m_replicaChunkIndex; - - AZStd::chrono::milliseconds m_timeProcessed; - - size_t m_usageBytes; - }; - - class ReplicaChunkDataSetEvent - : public ReplicaChunkEvent - { - protected: - ReplicaChunkDataSetEvent(Replica::ReplicaEventType eventType) - : ReplicaChunkEvent(eventType) - , m_hasIndex(false) - , m_index(0) - { - } - - public: - AZ_RTTI(ReplicaChunkDataSetEvent, "{39D9C3E7-B119-4C9C-BC70-DB4890A131FD}", ReplicaChunkEvent); - - void SetDataSetName(const char* dataSetName) - { - m_dataSetName = dataSetName; - } - - const char* GetDataSetName() const - { - return m_dataSetName.c_str(); - } - - void SetIndex(size_t dataSetIndex) - { - m_hasIndex = true; - m_index = dataSetIndex; - } - - size_t GetIndex() const - { - return m_index; - } - - bool HasIndex() const - { - return m_hasIndex; - } - - private: - AZStd::string m_dataSetName; - bool m_hasIndex; - size_t m_index; - }; - - class ReplicaChunkRPCEvent - : public ReplicaChunkEvent - { - protected: - ReplicaChunkRPCEvent(Replica::ReplicaEventType eventType) - : ReplicaChunkEvent(eventType) - , m_hasIndex(false) - , m_index(0) - { - } - - public: - AZ_CLASS_ALLOCATOR(ReplicaChunkDataSetEvent, AZ::SystemAllocator, 0); - AZ_RTTI(ReplicaChunkRPCEvent, "{27213952-E66A-4DE7-A60D-683895A5A973}", ReplicaChunkEvent); - - void SetRPCName(const char* rpcName) - { - m_RPCName = rpcName; - } - - const char* GetRPCName() const - { - return m_RPCName.c_str(); - } - - void SetIndex(size_t rpcIndex) - { - m_hasIndex = true; - m_index = rpcIndex; - } - - size_t GetIndex() const - { - return m_index; - } - - bool HasIndex() const - { - return m_hasIndex; - } - - private: - AZStd::string m_RPCName; - bool m_hasIndex; - size_t m_index; - }; - - class ReplicaChunkSentDataSetEvent - : public ReplicaChunkDataSetEvent - { - public: - AZ_CLASS_ALLOCATOR(ReplicaChunkSentDataSetEvent, AZ::SystemAllocator, 0); - AZ_RTTI(ReplicaChunkSentDataSetEvent, "{2B6BDB9C-4465-4BC6-BB80-73CD85A0B818}", ReplicaChunkDataSetEvent); - - ReplicaChunkSentDataSetEvent() - : ReplicaChunkDataSetEvent(Replica::RET_CHUNK_DATASET_SENT) - { - } - }; - - class ReplicaChunkReceivedDataSetEvent - : public ReplicaChunkDataSetEvent - { - public: - AZ_CLASS_ALLOCATOR(ReplicaChunkReceivedDataSetEvent, AZ::SystemAllocator, 0); - AZ_RTTI(ReplicaChunkReceivedDataSetEvent, "{138F7C4A-3727-4565-9395-673E43BC325C}", ReplicaChunkDataSetEvent); - - ReplicaChunkReceivedDataSetEvent() - : ReplicaChunkDataSetEvent(Replica::RET_CHUNK_DATASET_RECEIVED) - { - } - }; - - class ReplicaChunkSentRPCEvent - : public ReplicaChunkRPCEvent - { - public: - AZ_CLASS_ALLOCATOR(ReplicaChunkSentRPCEvent, AZ::SystemAllocator, 0); - AZ_RTTI(ReplicaChunkSentRPCEvent, "{04E9EE7E-5F41-4566-B584-0C671B2E09DE}", ReplicaChunkRPCEvent); - - ReplicaChunkSentRPCEvent() - : ReplicaChunkRPCEvent(Replica::RET_CHUNK_RPC_SENT) - { - } - }; - - class ReplicaChunkReceivedRPCEvent - : public ReplicaChunkRPCEvent - { - public: - AZ_CLASS_ALLOCATOR(ReplicaChunkReceivedRPCEvent, AZ::SystemAllocator, 0); - AZ_RTTI(ReplicaChunkReceivedRPCEvent, "{68482B1F-8A70-4152-9014-714B46641A12}", ReplicaChunkRPCEvent); - - ReplicaChunkReceivedRPCEvent() - : ReplicaChunkRPCEvent(Replica::RET_CHUNK_RPC_RECEIVED) - { - } - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.cpp deleted file mode 100644 index 26a40f46c3..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.cpp +++ /dev/null @@ -1,217 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "ReplicaDataParser.h" - -#include "ReplicaDataAggregator.hxx" -#include "ReplicaDataEvents.h" - -#include "GridMate/Drillers/ReplicaDriller.h" - -namespace Driller -{ - ////////////////////// - // ReplicaDataParser - ////////////////////// - - ReplicaDataParser::ReplicaDataParser(ReplicaDataAggregator* aggregator) - : DrillerHandlerParser(false) - , m_currentType(Replica::DataType::NONE) - , m_aggregator(aggregator) - { - } - - AZ::Debug::DrillerHandlerParser* ReplicaDataParser::OnEnterTag(AZ::u32 tagName) - { - if (tagName == GridMate::Debug::ReplicaDriller::Tags::CHUNK_SEND_DATASET) - { - AZ_Assert(m_currentType == Replica::DataType::NONE, "ERROR: Bad flow received."); - - ReplicaChunkSentDataSetEvent* newEvent = aznew ReplicaChunkSentDataSetEvent; - - if (newEvent) - { - m_currentType = Replica::DataType::SENT_REPLICA_CHUNK; - m_aggregator->AddEvent(newEvent); - return this; - } - } - else if (tagName == GridMate::Debug::ReplicaDriller::Tags::CHUNK_RECEIVE_DATASET) - { - AZ_Assert(m_currentType == Replica::DataType::NONE, "ERROR: Bad flow received."); - - ReplicaChunkReceivedDataSetEvent* newEvent = aznew ReplicaChunkReceivedDataSetEvent; - - if (newEvent) - { - m_currentType = Replica::DataType::RECEIVED_REPLICA_CHUNK; - m_aggregator->AddEvent(newEvent); - return this; - } - } - else if (tagName == GridMate::Debug::ReplicaDriller::Tags::CHUNK_SEND_RPC) - { - AZ_Assert(m_currentType == Replica::DataType::NONE, "ERROR: Bad flow received."); - - ReplicaChunkSentRPCEvent* newEvent = aznew ReplicaChunkSentRPCEvent; - - if (newEvent) - { - m_currentType = Replica::DataType::SENT_REPLICA_CHUNK; - m_aggregator->AddEvent(newEvent); - return this; - } - } - else if (tagName == GridMate::Debug::ReplicaDriller::Tags::CHUNK_RECEIVE_RPC) - { - AZ_Assert(m_currentType == Replica::DataType::NONE, "ERROR: Bad flow received."); - - ReplicaChunkReceivedRPCEvent* newEvent = aznew ReplicaChunkReceivedRPCEvent; - - if (newEvent) - { - m_currentType = Replica::DataType::RECEIVED_REPLICA_CHUNK; - m_aggregator->AddEvent(newEvent); - return this; - } - } - - return nullptr; - } - - void ReplicaDataParser::OnExitTag(AZ::Debug::DrillerHandlerParser* handler, AZ::u32 tagName) - { - (void)handler; - - if (tagName == GridMate::Debug::ReplicaDriller::Tags::CHUNK_SEND_DATASET - || tagName == GridMate::Debug::ReplicaDriller::Tags::CHUNK_RECEIVE_DATASET - || tagName == GridMate::Debug::ReplicaDriller::Tags::CHUNK_SEND_RPC - || tagName == GridMate::Debug::ReplicaDriller::Tags::CHUNK_RECEIVE_RPC) - { - m_currentType = Replica::DataType::NONE; - m_aggregator->FinalizeEvent(); - } - } - - void ReplicaDataParser::OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode) - { - if (m_currentType == Replica::DataType::NONE - || m_aggregator->GetEvents().empty()) - { - return; - } - - ProcessReplicaChunk(dataNode); - - switch (m_currentType) - { - case Replica::DataType::SENT_REPLICA_CHUNK: - ProcessSentReplicaChunk(dataNode); - break; - case Replica::DataType::RECEIVED_REPLICA_CHUNK: - ProcessReceivedReplicaChunk(dataNode); - break; - default: - break; - } - } - - void ReplicaDataParser::ProcessReplicaChunk(const AZ::Debug::DrillerSAXParser::Data& dataNode) - { - ReplicaChunkEvent* receivedEvent = static_cast(m_aggregator->GetEvents().back()); - - if (dataNode.m_name == GridMate::Debug::ReplicaDriller::Tags::CHUNK_TYPE) - { - AZStd::string chunkType; - dataNode.Read(chunkType); - - receivedEvent->SetChunkTypeName(chunkType.c_str()); - } - else if (dataNode.m_name == GridMate::Debug::ReplicaDriller::Tags::CHUNK_INDEX) - { - AZ::u32 chunkIndex; - dataNode.Read(chunkIndex); - - receivedEvent->SetReplicaChunkIndex(chunkIndex); - } - else if (dataNode.m_name == GridMate::Debug::ReplicaDriller::Tags::SIZE) - { - size_t usageBytes; - dataNode.Read(usageBytes); - - receivedEvent->SetUsageBytes(usageBytes); - } - else if (dataNode.m_name == GridMate::Debug::ReplicaDriller::Tags::REPLICA_ID) - { - AZ::u32 replicaId; - dataNode.Read(replicaId); - - receivedEvent->SetReplicaId(replicaId); - } - else if (dataNode.m_name == GridMate::Debug::ReplicaDriller::Tags::REPLICA_NAME) - { - AZStd::string replicaName; - dataNode.Read(replicaName); - - receivedEvent->SetReplicaName(replicaName.c_str()); - } - else if (dataNode.m_name == GridMate::Debug::ReplicaDriller::Tags::TIME_PROCESSED_MILLISEC) - { - AZStd::sys_time_t time; - dataNode.Read(time); - - AZStd::chrono::milliseconds timeMS(time); - receivedEvent->SetTimeProcssed(timeMS); - } - else if (dataNode.m_name == GridMate::Debug::ReplicaDriller::Tags::DATA_SET_NAME) - { - AZStd::string dataSetName; - dataNode.Read(dataSetName); - - ReplicaChunkDataSetEvent* dataSetEvent = static_cast(receivedEvent); - - dataSetEvent->SetDataSetName(dataSetName.c_str()); - } - else if (dataNode.m_name == GridMate::Debug::ReplicaDriller::Tags::DATA_SET_INDEX) - { - size_t dataSetIndex; - dataNode.Read(dataSetIndex); - - ReplicaChunkDataSetEvent* dataSetEvent = static_cast(receivedEvent); - - dataSetEvent->SetIndex(dataSetIndex); - } - else if (dataNode.m_name == GridMate::Debug::ReplicaDriller::Tags::RPC_NAME) - { - AZStd::string rpcName; - dataNode.Read(rpcName); - - ReplicaChunkRPCEvent* rpcEvent = static_cast(receivedEvent); - - rpcEvent->SetRPCName(rpcName.c_str()); - } - else if (dataNode.m_name == GridMate::Debug::ReplicaDriller::Tags::RPC_INDEX) - { - size_t rpcIndex; - dataNode.Read(rpcIndex); - - ReplicaChunkRPCEvent* rpcEvent = static_cast(receivedEvent); - rpcEvent->SetIndex(rpcIndex); - } - } - - void ReplicaDataParser::ProcessSentReplicaChunk(const AZ::Debug::DrillerSAXParser::Data& dataNode) - { - (void)dataNode; - } - - void ReplicaDataParser::ProcessReceivedReplicaChunk(const AZ::Debug::DrillerSAXParser::Data& dataNode) - { - (void)dataNode; - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.h deleted file mode 100644 index 0b6e6c6347..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.h +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_DATAPARSER_H -#define DRILLER_REPLICA_DATAPARSER_H - -#include - -namespace Driller -{ - class ReplicaDataAggregator; - - namespace Replica - { - enum class DataType - { - NONE, - SENT_REPLICA_CHUNK, - RECEIVED_REPLICA_CHUNK - }; - } - - class ReplicaDataParser - : public AZ::Debug::DrillerHandlerParser - { - public: - ReplicaDataParser(ReplicaDataAggregator* aggregator); - - AZ::Debug::DrillerHandlerParser* OnEnterTag(AZ::u32 tagName) override; - void OnExitTag(AZ::Debug::DrillerHandlerParser* handler, AZ::u32 tagName) override; - void OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode) override; - - private: - - void ProcessReplicaChunk(const AZ::Debug::DrillerSAXParser::Data& dataNode); - void ProcessSentReplicaChunk(const AZ::Debug::DrillerSAXParser::Data& dataNode); - void ProcessReceivedReplicaChunk(const AZ::Debug::DrillerSAXParser::Data& dataNode); - - Replica::DataType m_currentType; - - ReplicaDataAggregator* m_aggregator; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.cpp deleted file mode 100644 index be4c7d14ff..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.cpp +++ /dev/null @@ -1,1808 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include -#include -#include -#include - -#include -#include - -#include -#include - -#include "ReplicaDataView.hxx" -#include - -#include "BaseDetailView.h" -#include "ReplicaChunkTypeDetailView.h" -#include "ReplicaChunkUsageDataContainers.h" -#include "ReplicaDataAggregator.hxx" -#include "ReplicaDataEvents.h" -#include "ReplicaDetailView.h" -#include "ReplicaOperationTelemetryEvent.h" -#include "ReplicaUsageDataContainers.h" - -#include "Source/Driller/DrillerMainWindowMessages.h" -#include "Source/Driller/DrillerOperationTelemetryEvent.h" -#include "Source/Driller/Replica/OverallReplicaDetailView.hxx" -#include "Source/Driller/Replica/ReplicaDisplayHelpers.h" -#include "Source/Driller/Workspaces/Workspace.h" - -namespace Driller -{ - ////////////////////////////// - // ReplicaDataViewSavedState - ////////////////////////////// - - class ReplicaDataViewSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(ReplicaDataViewSavedState, "{8C5CA0D3-CD56-4972-83E5-2A7D3217E8FE}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(ReplicaDataViewSavedState, AZ::SystemAllocator, 0); - - int m_displayTimeType; - int m_displayDataType; - int m_displayRange; - int m_bandwidthUsageDisplayType; - int m_tableFilterType; - - ReplicaDataViewSavedState() - : m_displayDataType(ReplicaDataView::DDT_START + 1) - , m_displayRange(30) - , m_bandwidthUsageDisplayType(ReplicaDisplayTypes::BUDT_START + 1) - , m_tableFilterType(ReplicaDataView::TFT_START + 1) - { - } - - void CopyStateFrom(const ReplicaDataViewSavedState* source) - { - m_displayTimeType = source->m_displayTimeType; - m_displayDataType = source->m_displayDataType; - m_displayRange = source->m_displayRange; - m_bandwidthUsageDisplayType = source->m_bandwidthUsageDisplayType; - m_tableFilterType = source->m_tableFilterType; - } - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_displayDataType", &ReplicaDataViewSavedState::m_displayDataType) - ->Field("m_displayRange", &ReplicaDataViewSavedState::m_displayRange) - ->Field("m_bandwidthUsageDisplayType",&ReplicaDataViewSavedState::m_bandwidthUsageDisplayType) - ->Field("m_tableFilterType", &ReplicaDataViewSavedState::m_tableFilterType) - ->Version(4); - } - } - }; - - //////////////////////////////////////// - // ReplicaDataViewTableModelSavedState - //////////////////////////////////////// - - class ReplicaDataViewTableModelSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(ReplicaDataViewTableModelSavedState, "{36103E46-2503-4EEE-BA4B-2650E25A5B26}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(ReplicaDataViewTableModelSavedState, AZ::SystemAllocator, 0); - - AZStd::vector m_treeColumnStorage; - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - - if (serialize) - { - serialize->Class() - ->Field("m_treeColumnStorage", &ReplicaDataViewTableModelSavedState::m_treeColumnStorage) - ->Version(1); - } - } - }; - - ////////////////////////////////////// - // ReplicaDataViewSplitterSavedState - ////////////////////////////////////// - - class ReplicaDataViewSplitterSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(ReplicaDataViewSplitterSavedState, "{E698D9E8-D8E9-4115-87E7-2BEEBE5F7FB3}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(ReplicaDataViewSplitterSavedState, AZ::SystemAllocator, 0); - - AZStd::vector m_splitterSavedState; - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - - if (serialize) - { - serialize->Class() - ->Field("m_splitterSavedState", &ReplicaDataViewSplitterSavedState::m_splitterSavedState) - ->Version(1) - ; - } - } - }; - - ////////////////////////// - // ReplicaTableViewModel - ////////////////////////// - - ReplicaTableViewModel::ReplicaTableViewModel(ReplicaDataView* replicaDataView) - : QAbstractTableModel(replicaDataView) - , m_replicaDataView(replicaDataView) - { - } - - void ReplicaTableViewModel::RefreshView() - { - m_replicaIds.clear(); - - if (m_replicaDataView->HideInactiveInspectedElements()) - { - m_replicaIds.insert(m_replicaIds.begin(), m_replicaDataView->m_activeInspectedReplicaIds.begin(), m_replicaDataView->m_activeInspectedReplicaIds.end()); - } - else - { - m_replicaIds.insert(m_replicaIds.begin(), m_replicaDataView->m_activeReplicaIds.begin(), m_replicaDataView->m_activeReplicaIds.end()); - } - - AZStd::sort(m_replicaIds.begin(), m_replicaIds.end(), AZStd::less()); - - layoutChanged(); - } - - int ReplicaTableViewModel::rowCount(const QModelIndex& parentIndex) const - { - (void)parentIndex; - - return static_cast(m_replicaIds.size()); - } - - int ReplicaTableViewModel::columnCount(const QModelIndex& parentIndex) const - { - (void)parentIndex; - - return CD_COUNT; - } - - Qt::ItemFlags ReplicaTableViewModel::flags(const QModelIndex& index) const - { - Qt::ItemFlags flags = QAbstractTableModel::flags(index); - - switch (index.column()) - { - case CD_INSPECT: - flags &= ~(Qt::ItemIsSelectable); - break; - default: - break; - } - - return flags; - } - - - QVariant ReplicaTableViewModel::data(const QModelIndex& index, int role) const - { - AZ::u64 replicaId = GetReplicaIdFromIndex(index); - - ReplicaDataContainer* replicaContainer = m_replicaDataView->FindReplicaData(replicaId); - - - if (replicaContainer != nullptr) - { - if (role == Qt::BackgroundRole) - { - if (replicaContainer->IsInspected()) - { - return QVariant::fromValue(QColor(94, 94, 178, 255)); - } - } - else - { - switch (index.column()) - { - case CD_REPLICA_ID: - if (role == Qt::DisplayRole) - { - return FormattingHelper::ReplicaID(replicaContainer->GetReplicaId()); - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - break; - case CD_TOTAL_SENT: - if (role == Qt::DisplayRole) - { - return QString::number(replicaContainer->GetSentUsageForFrame(m_replicaDataView->GetCurrentFrame())); - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - break; - case CD_TOTAL_RECEIVED: - if (role == Qt::DisplayRole) - { - return QString::number(replicaContainer->GetReceivedUsageForFrame(m_replicaDataView->GetCurrentFrame())); - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - break; - case CD_REPLICA_NAME: - if (role == Qt::DecorationRole) - { - return replicaContainer->GetIcon(); - } - else if (role == Qt::DisplayRole) - { - AZStd::string replicaName = replicaContainer->GetReplicaName(); - return QString(replicaName.empty() ? "" : replicaName.c_str()); - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignLeft | Qt::AlignVCenter); - } - break; - case CD_INSPECT: - if (role == Qt::DecorationRole || role == Qt::SizeHintRole) - { - QPixmap pixmap = QPixmap(":/general/inspect_icon"); - - if (role == Qt::DecorationRole) - { - return pixmap; - } - else if (role == Qt::SizeHintRole) - { - return pixmap.size(); - } - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - break; - default: - AZ_Assert(false,"Unknown column index %i",index.column()); - break; - } - } - } - - return QVariant(); - } - - QVariant ReplicaTableViewModel::headerData(int section, Qt::Orientation orientation, int role) const - { - if (role == Qt::DisplayRole) - { - if (orientation == Qt::Horizontal) - { - switch (section) - { - case CD_REPLICA_ID: - return QString("Replica ID"); - case CD_TOTAL_SENT: - return QString("Sent Bytes"); - case CD_TOTAL_RECEIVED: - return QString("Received Bytes"); - case CD_REPLICA_NAME: - return QString("Replica Name"); - case CD_INSPECT: - return QString(""); - default: - AZ_Assert(false, "Unknown section index %i", section); - break; - } - } - } - - return QVariant(); - } - - AZ::u64 ReplicaTableViewModel::GetReplicaIdFromIndex(const QModelIndex& index) const - { - return GetReplicaIdForRow(index.row()); - } - - AZ::u64 ReplicaTableViewModel::GetReplicaIdForRow(int row) const - { - if (row < 0 || row >= m_replicaIds.size()) - { - return 0; - } - - return m_replicaIds[row]; - } - - /////////////////////////////////// - // ReplicaChunkTypeTableViewModel - /////////////////////////////////// - - ReplicaChunkTypeTableViewModel::ReplicaChunkTypeTableViewModel(ReplicaDataView* replicaDataView) - : QAbstractTableModel(replicaDataView) - , m_replicaDataView(replicaDataView) - { - } - - void ReplicaChunkTypeTableViewModel::RefreshView() - { - m_replicaChunkTypes.clear(); - - if (m_replicaDataView->HideInactiveInspectedElements()) - { - m_replicaChunkTypes.insert(m_replicaChunkTypes.begin(), m_replicaDataView->m_activeInspectedChunkTypes.begin(), m_replicaDataView->m_activeInspectedChunkTypes.end()); - } - else - { - m_replicaChunkTypes.insert(m_replicaChunkTypes.begin(), m_replicaDataView->m_activeChunkTypes.begin(), m_replicaDataView->m_activeChunkTypes.end()); - } - - AZStd::sort(m_replicaChunkTypes.begin(), m_replicaChunkTypes.end(), AZStd::less()); - layoutChanged(); - } - - int ReplicaChunkTypeTableViewModel::rowCount(const QModelIndex& parentIndex) const - { - (void)parentIndex; - - return static_cast(m_replicaChunkTypes.size()); - } - - int ReplicaChunkTypeTableViewModel::columnCount(const QModelIndex& parentIndex) const - { - (void)parentIndex; - - return CD_COUNT; - } - - Qt::ItemFlags ReplicaChunkTypeTableViewModel::flags(const QModelIndex& index) const - { - Qt::ItemFlags flags = QAbstractTableModel::flags(index); - - switch (index.column()) - { - case CD_INSPECT: - flags &= ~(Qt::ItemIsSelectable); - break; - default: - break; - } - - return flags; - } - - QVariant ReplicaChunkTypeTableViewModel::data(const QModelIndex& index, int role) const - { - const char* chunkType = GetReplicaChunkTypeFromIndex(index); - ReplicaChunkTypeDataContainer* replicaChunkTypeContainer = m_replicaDataView->FindReplicaChunkTypeData(chunkType); - - if (replicaChunkTypeContainer != nullptr) - { - if (role == Qt::BackgroundRole) - { - if (replicaChunkTypeContainer->IsInspected()) - { - return QVariant::fromValue(QColor(94, 94, 178, 255)); - } - } - else - { - switch (index.column()) - { - case CD_CHUNK_TYPE: - if (role == Qt::DecorationRole) - { - return replicaChunkTypeContainer->GetIcon(); - } - else if (role == Qt::DisplayRole) - { - AZStd::string chunkTypeString = replicaChunkTypeContainer->GetChunkType(); - return QString(chunkTypeString.empty() ? "" : chunkTypeString.c_str()); - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - break; - case CD_TOTAL_SENT: - if (role == Qt::DisplayRole) - { - return QString::number(replicaChunkTypeContainer->GetSentUsageForFrame(m_replicaDataView->GetCurrentFrame())); - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - break; - case CD_TOTAL_RECEIVED: - if (role == Qt::DisplayRole) - { - return QString::number(replicaChunkTypeContainer->GetReceivedUsageForFrame(m_replicaDataView->GetCurrentFrame())); - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - break; - case CD_INSPECT: - if (role == Qt::DecorationRole || role == Qt::SizeHintRole) - { - QPixmap pixmap = QPixmap(":/general/inspect_icon"); - - if (role == Qt::DecorationRole) - { - return pixmap; - } - else if (role == Qt::SizeHintRole) - { - return pixmap.size(); - } - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - break; - default: - AZ_Assert(false,"Unknown column index %i",index.column()); - break; - } - } - } - - return QVariant(); - } - - QVariant ReplicaChunkTypeTableViewModel::headerData(int section, Qt::Orientation orientation, int role) const - { - if (role == Qt::DisplayRole) - { - if (orientation == Qt::Horizontal) - { - switch (section) - { - case CD_CHUNK_TYPE: - return QString("Chunk Type"); - case CD_TOTAL_SENT: - return QString("Sent Bytes"); - case CD_TOTAL_RECEIVED: - return QString("Received Bytes"); - case CD_INSPECT: - return QString(""); - default: - AZ_Assert(false, "Unknown section index %i", section); - break; - } - } - } - - return QVariant(); - } - - const char* ReplicaChunkTypeTableViewModel::GetReplicaChunkTypeFromIndex(const QModelIndex& index) const - { - return GetReplicaChunkTypeForRow(index.row()); - } - - const char* ReplicaChunkTypeTableViewModel::GetReplicaChunkTypeForRow(int row) const - { - const char* retVal = nullptr; - - if (row < 0 || row >= m_replicaChunkTypes.size()) - { - return retVal; - } - - retVal = m_replicaChunkTypes[row].c_str(); - - return retVal; - } - - //////////////////////// - // ChartZoomMaintainer - //////////////////////// - - ReplicaDataView::ChartZoomMaintainer::ChartZoomMaintainer() - : m_axis(Charts::AxisType::Horizontal) - , m_minValue(0.0f) - , m_maxValue(1.0f) - { - } - - void ReplicaDataView::ChartZoomMaintainer::GetZoomFromChart(StripChart::DataStrip& chart, Charts::AxisType axis) - { - m_axis = axis; - - bool gotWindowRange = chart.GetWindowRange(axis, m_minValue, m_maxValue); - - float minRange; - float maxRange; - - bool gotAxisRange = chart.GetAxisRange(axis, minRange, maxRange); - - if (gotWindowRange && gotAxisRange) - { - float range = maxRange - minRange; - - if (AZ::IsClose(maxRange, minRange, 0.01f)) - { - range = 1.0f; - } - - m_minValue /= range; - m_maxValue /= range; - } - else - { - m_minValue = 0.0f; - m_maxValue = 1.0f; - } - } - - void ReplicaDataView::ChartZoomMaintainer::SetZoomOnChart(StripChart::DataStrip& chart, Charts::AxisType axis) - { - AZ_Assert(axis == m_axis, "Warning: Manipulating different axis from when zoom was set"); - - float minRange; - float maxRange; - - bool gotRange = chart.GetAxisRange(axis, minRange, maxRange); - - if (gotRange) - { - float range = maxRange - minRange; - - if (AZ::IsClose(maxRange, minRange, 0.01f)) - { - range = 1.0f; - } - - chart.ZoomManual(axis, range * m_minValue, range * m_maxValue); - } - } - - //////////////////// - // ReplicaDataView - //////////////////// - const char* ReplicaDataView::DDT_REPLICA_NAME = "Replica"; - const char* ReplicaDataView::DDT_CHUNK_NAME = "Chunk Type"; - - const char* ReplicaDataView::WINDOW_STATE_FORMAT = "REPLICA_DATA_VIEW_WINDOW_STATE_%u"; - const char* ReplicaDataView::SPLITTER_STATE_FORMAT = "REPLICA_DATA_VIEW_SPLITTER_STATE_%u"; - const char* ReplicaDataView::TABLE_STATE_FORMAT = "REPLICA_DATA_VIEW_TABLE_STATE_%u"; - const char* ReplicaDataView::DATA_VIEW_STATE_FORMAT = "REPLICA_DATA_VIEW_DATA_VIEW_STATE_%u"; - const char* ReplicaDataView::DATA_VIEW_WORKSPACE_FORMAT = "REPLICA_DATA_VIEW_WORKSPACE_%u"; - - const int ReplicaDataView::INSPECT_ICON_COLUMN_SIZE = 32; - - ReplicaDataView::ReplicaDataView(unsigned int dataViewIndex, FrameNumberType currentFrame, const ReplicaDataAggregator* aggregator) - : QDialog() - , m_dataViewIndex(dataViewIndex) - , m_inspectedSeries(AreaChart::AreaChart::k_invalidSeriesId) - , m_windowStateCRC(0) - , m_splitterStateCRC(0) - , m_tableViewCRC(0) - , m_dataViewCRC(0) - , m_aggregatorIdentity(aggregator->GetIdentity()) - , m_aggregator(aggregator) - , m_currentFrame(currentFrame) - , m_startFrame(0) - , m_endFrame(0) - , m_overallReplicaDetailView(nullptr) - , m_replicaTypeTableView(this) - , m_replicaChunkTypeTableView(this) - , m_lifespanTelemetry("ReplicaDataView") - { - setAttribute(Qt::WA_DeleteOnClose, true); - setWindowFlags(windowFlags() | Qt::WindowMaximizeButtonHint | Qt::WindowMinimizeButtonHint); - - // Create a window defined in CarrierDataView.ui. - m_gui = azcreate(Ui::ReplicaDataView, ()); - m_gui->setupUi(this); - - show(); - raise(); - activateWindow(); - setFocus(); - - m_gui->areaChart->ConfigureVerticalAxis("Bandwidth Usage", GetAverageFrameBandwidthBudget()); - m_gui->areaChart->EnableMouseInspection(true); - - this->setWindowTitle(m_aggregator->GetDialogTitle()); - - for (int i = DDT_START + 1; i < DDT_END; ++i) - { - switch (i) - { - case DDT_REPLICA: - m_gui->dataSelectionComboBox->addItem(QString(DDT_REPLICA_NAME)); - break; - case DDT_CHUNK: - m_gui->dataSelectionComboBox->addItem(QString(DDT_CHUNK_NAME)); - break; - default: - break; - } - } - - if (m_gui->dataSelectionComboBox->count() == 1) - { - m_gui->dataSelectionComboBox->setEditable(false); - m_gui->dataSelectionComboBox->setEnabled(false); - } - - for (int i = ReplicaDisplayTypes::BUDT_START + 1; i < ReplicaDisplayTypes::BUDT_END; ++i) - { - switch (i) - { - case ReplicaDisplayTypes::BUDT_COMBINED: - m_gui->bandwidthUsageComboBox->addItem(QString(ReplicaDisplayTypes::DisplayNames::BUDT_COMBINED_NAME)); - break; - case ReplicaDisplayTypes::BUDT_SENT: - m_gui->bandwidthUsageComboBox->addItem(QString(ReplicaDisplayTypes::DisplayNames::BUDT_SENT_NAME)); - break; - case ReplicaDisplayTypes::BUDT_RECEIVED: - m_gui->bandwidthUsageComboBox->addItem(QString(ReplicaDisplayTypes::DisplayNames::BUDT_RECEIVED_NAME)); - break; - default: - break; - } - } - - if (m_gui->bandwidthUsageComboBox->count() == 1) - { - m_gui->dataSelectionComboBox->setEditable(false); - m_gui->dataSelectionComboBox->setEnabled(false); - } - - for (int i = TFT_START + 1; i < TFT_END; ++i) - { - switch (i) - { - case TFT_NONE: - m_gui->tableFilterComboBox->addItem("No Filter"); - break; - case TFT_ACTIVE_ONLY: - m_gui->tableFilterComboBox->addItem("Active Types"); - break; - } - } - - if (m_gui->tableFilterComboBox->count() == 1) - { - m_gui->tableFilterComboBox->setEditable(false); - m_gui->tableFilterComboBox->setEnabled(false); - } - - m_gui->drillerConfigToolbar->enableTreeCommands(false); - - AZStd::string serializationString = AZStd::string::format(WINDOW_STATE_FORMAT, m_dataViewIndex); - m_windowStateCRC = AZ::Crc32(serializationString.c_str()); - - AZStd::intrusive_ptr windowState = AZ::UserSettings::Find(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - - if (windowState) - { - windowState->RestoreGeometry(this); - } - - serializationString = AZStd::string::format(DATA_VIEW_STATE_FORMAT, m_dataViewIndex); - m_dataViewCRC = AZ::Crc32(serializationString.c_str()); - m_persistentState = AZ::UserSettings::CreateFind(m_dataViewCRC, AZ::UserSettings::CT_GLOBAL); - - ApplyPersistentState(); - - // do the table state formatting - serializationString = AZStd::string::format(TABLE_STATE_FORMAT, m_dataViewIndex); - m_tableViewCRC = AZ::Crc32(serializationString.c_str()); - auto treeState = AZ::UserSettings::Find(m_tableViewCRC, AZ::UserSettings::CT_GLOBAL); - - if (treeState) - { - QByteArray treeData((const char*)treeState->m_treeColumnStorage.data(), (int)treeState->m_treeColumnStorage.size()); - m_gui->tableView->horizontalHeader()->restoreState(treeData); - } - - serializationString = AZStd::string::format(SPLITTER_STATE_FORMAT, m_dataViewIndex); - m_splitterStateCRC = AZ::Crc32(serializationString.c_str()); - auto splitterState = AZ::UserSettings::Find(m_splitterStateCRC,AZ::UserSettings::CT_GLOBAL); - - if (splitterState) - { - QByteArray splitterData((const char*)splitterState->m_splitterSavedState.data(), (int)splitterState->m_splitterSavedState.size()); - m_gui->splitter->restoreState(splitterData); - } - - DrillerMainWindowMessages::Handler::BusConnect(m_aggregatorIdentity); - DrillerEventWindowMessages::Handler::BusConnect(m_aggregatorIdentity); - - QObject::connect((&m_replicaTypeTableView), SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)), this, SLOT(UpdateDisplay(const QModelIndex&, const QModelIndex&))); - QObject::connect((&m_replicaChunkTypeTableView), SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)), this, SLOT(UpdateDisplay(const QModelIndex&, const QModelIndex&))); - - QObject::connect(m_gui->tableView, SIGNAL(clicked(const QModelIndex&)), this, SLOT(OnCellClicked(const QModelIndex&))); - QObject::connect(m_gui->tableView, SIGNAL(doubleClicked(const QModelIndex&)), this, SLOT(OnDoubleClicked(const QModelIndex&))); - - QObject::connect(m_gui->drillerConfigToolbar, SIGNAL(hideAll()), this, SLOT(HideAll())); - QObject::connect(m_gui->drillerConfigToolbar, SIGNAL(hideSelected()), this, SLOT(HideSelected())); - QObject::connect(m_gui->drillerConfigToolbar, SIGNAL(showAll()), this, SLOT(ShowAll())); - QObject::connect(m_gui->drillerConfigToolbar, SIGNAL(showSelected()), this, SLOT(ShowSelected())); - - QObject::connect(m_gui->showOverallStatistics,SIGNAL(clicked()),this,SLOT(OnShowOverallStatistics())); - QObject::connect(m_gui->displayRange, SIGNAL(valueChanged(int)), this, SLOT(OnDisplayRangeChanged(int))); - QObject::connect(m_gui->dataSelectionComboBox,SIGNAL(currentIndexChanged(int)),this,SLOT(OnDataTypeChanged(int))); - QObject::connect(m_gui->bandwidthUsageComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(OnBandwidthUsageDisplayTypeChanged(int))); - QObject::connect(m_gui->tableFilterComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(OnTableFilterTypeChanged(int))); - - QObject::connect(m_gui->areaChart, SIGNAL(InspectedSeries(size_t)), this, SLOT(OnInspectedSeries(size_t))); - QObject::connect(m_gui->areaChart, SIGNAL(SelectedSeries(size_t,int)), this, SLOT(OnSelectedSeries(size_t, int))); - } - - ReplicaDataView::~ReplicaDataView() - { - DrillerEventWindowMessages::Handler::BusDisconnect(m_aggregatorIdentity); - DrillerMainWindowMessages::Handler::BusDisconnect(m_aggregatorIdentity); - - // Save out whatever data we want to save out. - auto pState = AZ::UserSettings::CreateFind(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - if (pState) - { - pState->CaptureGeometry(this); - } - - auto splitterState = AZ::UserSettings::CreateFind(m_splitterStateCRC, AZ::UserSettings::CT_GLOBAL); - if (splitterState) - { - QByteArray qba = m_gui->splitter->saveState(); - splitterState->m_splitterSavedState.assign((AZ::u8*)qba.begin(), (AZ::u8*)qba.end()); - } - - auto treeState = AZ::UserSettings::CreateFind(m_tableViewCRC, AZ::UserSettings::CT_GLOBAL); - if (treeState) - { - if (m_gui->tableView && m_gui->tableView->horizontalHeader()) - { - QByteArray qba = m_gui->tableView->horizontalHeader()->saveState(); - treeState->m_treeColumnStorage.assign((AZ::u8*)qba.begin(), (AZ::u8*)qba.end()); - } - } - - for (ReplicaDataMap::iterator replicaIter = m_replicaData.begin(); - replicaIter != m_replicaData.end(); - ++replicaIter) - { - delete replicaIter->second; - } - - m_replicaData.clear(); - - for (ReplicaChunkTypeDataMap::iterator chunkIter = m_replicaChunkTypeData.begin(); - chunkIter != m_replicaChunkTypeData.end(); - ++chunkIter) - { - delete chunkIter->second; - } - m_replicaChunkTypeData.clear(); - - for (ReplicaDetailView* view : m_spawnedReplicaDetailViews) - { - view->SignalDataViewDestroyed(this); - view->close(); - } - - for (ReplicaChunkTypeDetailView* view : m_spawnedChunkDetailViews) - { - view->SignalDataViewDestroyed(this); - view->close(); - } - - if (m_overallReplicaDetailView) - { - m_overallReplicaDetailView->SignalDataViewDestroyed(this); - m_overallReplicaDetailView->close(); - m_overallReplicaDetailView = nullptr; - } - - azdestroy(m_gui); - } - - void ReplicaDataView::FrameChanged(FrameNumberType frame) - { - int displayRange = GetDisplayRange(); - int halfRange = displayRange / 2; - - m_currentFrame = frame; - - m_startFrame = AZStd::GetMax(m_currentFrame - halfRange, 0); - - if (m_startFrame == 0) - { - m_endFrame = AZStd::GetMin(m_startFrame + displayRange, static_cast(m_aggregator->GetFrameCount())); - } - else - { - m_endFrame = AZStd::GetMin(m_currentFrame + halfRange, static_cast(m_aggregator->GetFrameCount())); - } - - if (m_endFrame == m_aggregator->GetFrameCount()) - { - m_startFrame = AZStd::GetMax(m_endFrame - displayRange, 0); - } - - UpdateData(); - - RefreshGraph(); - RefreshTableView(); - - emit DataRangeChanged(); - } - - void ReplicaDataView::EventFocusChanged(EventNumberType eventIndex) - { - (void)eventIndex; - } - - void ReplicaDataView::EventChanged(EventNumberType eventIndex) - { - (void)eventIndex; - } - - float ReplicaDataView::GetAxisStartFrame() const - { - return static_cast(m_startFrame); - } - - FrameNumberType ReplicaDataView::GetStartFrame() const - { - return m_startFrame; - } - - float ReplicaDataView::GetAxisEndFrame() const - { - return static_cast(AZStd::GetMax(m_endFrame, GetDisplayRange())); - } - - FrameNumberType ReplicaDataView::GetEndFrame() const - { - return m_endFrame; - } - - FrameNumberType ReplicaDataView::GetActiveFrameCount() const - { - return GetDisplayRange(); - } - - FrameNumberType ReplicaDataView::GetCurrentFrame() const - { - return m_currentFrame; - } - - bool ReplicaDataView::HideInactiveInspectedElements() const - { - return m_persistentState->m_tableFilterType == TFT_ACTIVE_ONLY; - } - - int ReplicaDataView::GetCaptureWindowIdentity() const - { - return m_aggregator->GetIdentity(); - } - - unsigned int ReplicaDataView::GetAverageFrameBandwidthBudget() const - { - return m_aggregator->GetAverageFrameBandwidthBudget(); - } - - void ReplicaDataView::DrawFrameGraph() - { - const QColor markerColor(Qt::red); - BandwidthUsageAggregator maximumUsageAggregator; - - m_gui->areaChart->ResetChart(); - m_gui->areaChart->ConfigureHorizontalAxis("Frame", static_cast(GetAxisStartFrame()), static_cast(GetAxisEndFrame())); - - m_gui->areaChart->AddMarker(Charts::AxisType::Horizontal, static_cast(GetCurrentFrame()), markerColor); - - switch (GetDisplayDataType()) - { - case DDT_REPLICA: - for (auto replicaIter = m_replicaData.begin(); - replicaIter != m_replicaData.end(); - ++replicaIter) - { - ReplicaDataContainer* container = replicaIter->second; - - container->GetAreaGraphPlotHelper().Reset(); - PlotChartDataForFrames(container); - } - break; - case DDT_CHUNK: - for (auto chunkIter = m_replicaChunkTypeData.begin(); - chunkIter != m_replicaChunkTypeData.end(); - ++chunkIter) - { - ReplicaChunkTypeDataContainer* container = chunkIter->second; - - container->GetAreaGraphPlotHelper().Reset(); - PlotChartDataForFrames(container); - } - break; - default: - AZ_Assert(false,"ERROR: Unknown display data type"); - break; - } - } - - void ReplicaDataView::SignalDialogClosed(QDialog* dialog) - { - if (dialog == m_overallReplicaDetailView) - { - m_overallReplicaDetailView = nullptr; - return; - } - - for (AZStd::vector< ReplicaDetailView* >::iterator dialogIter = m_spawnedReplicaDetailViews.begin(); - dialogIter != m_spawnedReplicaDetailViews.end(); - ++dialogIter) - { - if ((*dialogIter) == dialog) - { - m_spawnedReplicaDetailViews.erase(dialogIter); - return; - } - } - - for (AZStd::vector< ReplicaChunkTypeDetailView* >::iterator dialogIter = m_spawnedChunkDetailViews.begin(); - dialogIter != m_spawnedChunkDetailViews.end(); - ++dialogIter) - { - if ((*dialogIter) == dialog) - { - m_spawnedChunkDetailViews.erase(dialogIter); - return; - } - } - } - - unsigned int ReplicaDataView::GetDataViewIndex() const - { - return m_dataViewIndex; - } - - void ReplicaDataView::ApplySettingsFromWorkspace(WorkspaceSettingsProvider* settingsProvider) - { - AZStd::string workspaceStateStr = AZStd::string::format(DATA_VIEW_WORKSPACE_FORMAT, GetDataViewIndex()); - AZ::u32 workspaceStateCRC = AZ::Crc32(workspaceStateStr.c_str()); - - if (m_persistentState) - { - ReplicaDataViewSavedState* workspace = settingsProvider->FindSetting(workspaceStateCRC); - - if (workspace) - { - m_persistentState->CopyStateFrom(workspace); - } - } - } - - void ReplicaDataView::ActivateWorkspaceSettings(WorkspaceSettingsProvider* settingsProvider) - { - (void)settingsProvider; - - ApplyPersistentState(); - } - - void ReplicaDataView::SaveSettingsToWorkspace(WorkspaceSettingsProvider* settingsProvider) - { - AZStd::string workspaceStateStr = AZStd::string::format(DATA_VIEW_WORKSPACE_FORMAT, GetDataViewIndex()); - AZ::u32 workspaceStateCRC = AZ::Crc32(workspaceStateStr.c_str()); - - if (m_persistentState) - { - ReplicaDataViewSavedState* workspace = settingsProvider->CreateSetting(workspaceStateCRC); - - if (workspace) - { - workspace->CopyStateFrom(m_persistentState.get()); - } - } - } - - void ReplicaDataView::ApplyPersistentState() - { - if (m_persistentState) - { - m_gui->dataSelectionComboBox->setCurrentIndex(m_persistentState->m_displayDataType); - m_gui->bandwidthUsageComboBox->setCurrentIndex(m_persistentState->m_bandwidthUsageDisplayType); - m_gui->tableFilterComboBox->setCurrentIndex(m_persistentState->m_tableFilterType); - - m_gui->displayRange->setValue(m_persistentState->m_displayRange); - - SetupTableView(); - FrameChanged(GetCurrentFrame()); - } - } - - void ReplicaDataView::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - ReplicaDataViewSavedState::Reflect(context); - ReplicaDataViewTableModelSavedState::Reflect(context); - ReplicaDataViewSplitterSavedState::Reflect(context); - - BaseDetailViewSplitterSavedState::Reflect(context); - BaseDetailViewTreeSavedState::Reflect(context); - } - } - - void ReplicaDataView::ReplicaSelectionChanged(const QItemSelection& selected, const QItemSelection& deselected) - { - if (GetDisplayDataType() != DDT_REPLICA) - { - return; - } - - if (!selected.indexes().empty()) - { - for (const QModelIndex& selectedIndex : selected.indexes()) - { - AZ::u64 replicaId = m_replicaTypeTableView.GetReplicaIdFromIndex(selectedIndex); - ReplicaDataContainer* container = FindReplicaData(replicaId); - - if (container != nullptr) - { - container->SetSelected(true); - - const bool isHighlighted = true; - container->GetAreaGraphPlotHelper().SetHighlighted(isHighlighted); - } - } - } - - if (!deselected.empty()) - { - for (const QModelIndex& deselectedIndex : deselected.indexes()) - { - AZ::u64 replicaId = m_replicaTypeTableView.GetReplicaIdFromIndex(deselectedIndex); - ReplicaDataContainer* container = FindReplicaData(replicaId); - - if (container != nullptr) - { - container->SetSelected(false); - - const bool isHighlighted = false; - container->GetAreaGraphPlotHelper().SetHighlighted(isHighlighted); - } - } - } - } - - void ReplicaDataView::ChunkSelectionChanged(const QItemSelection& selected, const QItemSelection& deselected) - { - if (GetDisplayDataType() != DDT_CHUNK) - { - return; - } - - if (!selected.indexes().empty()) - { - for (const QModelIndex& selectedIndex : selected.indexes()) - { - const char* chunkType = m_replicaChunkTypeTableView.GetReplicaChunkTypeFromIndex(selectedIndex); - ReplicaChunkTypeDataContainer* container = FindReplicaChunkTypeData(chunkType); - - if (container != nullptr) - { - container->SetSelected(true); - - const bool isHighlighted = true; - container->GetAreaGraphPlotHelper().SetHighlighted(isHighlighted); - } - } - } - - if (!deselected.empty()) - { - AZStd::unordered_set rowSets; - for (const QModelIndex& deselectedIndex : deselected.indexes()) - { - const char* chunkType = m_replicaChunkTypeTableView.GetReplicaChunkTypeFromIndex(deselectedIndex); - ReplicaChunkTypeDataContainer* container = FindReplicaChunkTypeData(chunkType); - - if (container != nullptr) - { - container->SetSelected(false); - - const bool isHighlighted = false; - container->GetAreaGraphPlotHelper().SetHighlighted(isHighlighted); - } - } - } - } - - void ReplicaDataView::OnDisplayRangeChanged(int displayRange) - { - ReplicaOperationTelemetryEvent displayRangeEvent; - displayRangeEvent.SetMetric("DisplayRange", displayRange); - displayRangeEvent.Log(); - - m_persistentState->m_displayRange = displayRange; - FrameChanged(GetCurrentFrame()); - } - - void ReplicaDataView::HideAll() - { - SetAllEnabled(false); - } - - void ReplicaDataView::ShowAll() - { - SetAllEnabled(true); - } - - void ReplicaDataView::SetAllEnabled(bool enabled) - { - switch (GetDisplayDataType()) - { - case DDT_REPLICA: - { - for (AZ::u64 replicaId : m_activeReplicaIds) - { - ReplicaDataContainer* dataContainer = m_replicaData[replicaId]; - dataContainer->SetEnabled(enabled); - dataContainer->GetAreaGraphPlotHelper().SetEnabled(enabled); - } - - m_replicaTypeTableView.layoutChanged(); - break; - } - case DDT_CHUNK: - { - for (AZStd::string chunkType : m_activeChunkTypes) - { - ReplicaChunkTypeDataContainer* dataContainer = m_replicaChunkTypeData[chunkType]; - dataContainer->SetEnabled(enabled); - dataContainer->GetAreaGraphPlotHelper().SetEnabled(enabled); - } - - m_replicaChunkTypeTableView.layoutChanged(); - break; - } - default: - AZ_Assert(false, "Unknown Display Data Type"); - break; - } - } - - void ReplicaDataView::HideSelected() - { - SetSelectedEnabled(false); - } - - void ReplicaDataView::ShowSelected() - { - SetSelectedEnabled(true); - } - - void ReplicaDataView::SetSelectedEnabled(bool enabled) - { - switch (GetDisplayDataType()) - { - case DDT_REPLICA: - { - for (AZ::u64 replicaId : m_activeReplicaIds) - { - ReplicaDataContainer* dataContainer = m_replicaData[replicaId]; - - if (dataContainer->IsSelected()) - { - dataContainer->SetEnabled(enabled); - } - } - - m_replicaTypeTableView.layoutChanged(); - break; - } - case DDT_CHUNK: - { - for (AZStd::string chunkType : m_activeChunkTypes) - { - ReplicaChunkTypeDataContainer* dataContainer = m_replicaChunkTypeData[chunkType]; - - if (dataContainer->IsSelected()) - { - dataContainer->SetEnabled(enabled); - } - } - - m_replicaChunkTypeTableView.layoutChanged(); - break; - } - default: - AZ_Assert(false, "Unknown Data Display Type"); - break; - } - - m_replicaChunkTypeTableView.layoutChanged(); - RefreshGraph(); - } - - void ReplicaDataView::UpdateDisplay(const QModelIndex& startIndex, const QModelIndex& endIndex) - { - (void)startIndex; - (void)endIndex; - - RefreshGraph(); - } - - void ReplicaDataView::RefreshGraph() - { - DrawFrameGraph(); - } - - void ReplicaDataView::OnCellClicked(const QModelIndex& index) - { - if (!index.isValid()) - { - return; - } - - switch (GetDisplayDataType()) - { - case DDT_REPLICA: - if (index.column() == ReplicaTableViewModel::CD_INSPECT) - { - InspectReplica(index.row()); - } - break; - case DDT_CHUNK: - if (index.column() == ReplicaChunkTypeTableViewModel::CD_INSPECT) - { - InspectChunkType(index.row()); - } - break; - default: - AZ_Assert(false, "ERROR: Unknown Display Data Type"); - break; - } - } - - void ReplicaDataView::OnDoubleClicked(const QModelIndex& index) - { - if (!index.isValid()) - { - return; - } - - switch (GetDisplayDataType()) - { - case DDT_REPLICA: - { - if (index.column() != ReplicaTableViewModel::CD_INSPECT) - { - AZ::u64 replicaId = m_replicaTypeTableView.GetReplicaIdFromIndex(index); - - ReplicaDataContainer* dataContainer = FindReplicaData(replicaId); - dataContainer->SetEnabled(!dataContainer->IsEnabled()); - dataContainer->GetAreaGraphPlotHelper().SetEnabled(dataContainer->IsEnabled()); - } - break; - } - case DDT_CHUNK: - { - if (index.column() != ReplicaChunkTypeTableViewModel::CD_INSPECT) - { - const char* chunkType = m_replicaChunkTypeTableView.GetReplicaChunkTypeFromIndex(index); - - ReplicaChunkTypeDataContainer* dataContainer = FindReplicaChunkTypeData(chunkType); - dataContainer->SetEnabled(!dataContainer->IsEnabled()); - dataContainer->GetAreaGraphPlotHelper().SetEnabled(dataContainer->IsEnabled()); - } - break; - } - default: - AZ_Assert(false, "ERROR: Unknown Display Data Type"); - break; - } - } - - void ReplicaDataView::OnDataTypeChanged(int selectedIndex) - { - AZ_Error("StandaloneTools", selectedIndex > DDT_START && selectedIndex < DDT_END, "selectedIndex for DataType is out of enum range."); - - if (selectedIndex > DDT_START && selectedIndex < DDT_END) - { - m_persistentState->m_displayDataType = static_cast(selectedIndex); - ParseActiveItems(); - SetupTableView(); - RefreshGraph(); - - ReplicaOperationTelemetryEvent dataTypeChanged; - - switch (m_persistentState->m_displayDataType) - { - case DDT_CHUNK: - { - dataTypeChanged.SetAttribute("DisplayDataType", DDT_CHUNK_NAME); - break; - } - case DDT_REPLICA: - { - dataTypeChanged.SetAttribute("DisplayDataType", DDT_REPLICA_NAME); - break; - } - default: - { - dataTypeChanged.SetAttribute("Change Display Data Type", "Unknown"); - } - } - - dataTypeChanged.Log(); - } - } - - void ReplicaDataView::OnBandwidthUsageDisplayTypeChanged(int selectedIndex) - { - AZ_Error("StandaloneTools", selectedIndex > ReplicaDisplayTypes::BUDT_START && selectedIndex < ReplicaDisplayTypes::BUDT_END, "Invalid index for BandwidthUsageDisplay"); - - if (selectedIndex > ReplicaDisplayTypes::BUDT_START && selectedIndex < ReplicaDisplayTypes::BUDT_END) - { - m_persistentState->m_bandwidthUsageDisplayType = static_cast(selectedIndex); - - RefreshGraph(); - - ReplicaOperationTelemetryEvent bandwidthDisplayChanged; - - switch (m_persistentState->m_displayDataType) - { - case ReplicaDisplayTypes::BUDT_COMBINED: - { - bandwidthDisplayChanged.SetAttribute("BandwidthUsageDisplayType", ReplicaDisplayTypes::DisplayNames::BUDT_COMBINED_NAME); - break; - } - case ReplicaDisplayTypes::BUDT_SENT: - { - bandwidthDisplayChanged.SetAttribute("BandwidthUsageDisplayType", ReplicaDisplayTypes::DisplayNames::BUDT_SENT_NAME); - break; - } - case ReplicaDisplayTypes::BUDT_RECEIVED: - { - bandwidthDisplayChanged.SetAttribute("BandwidthUsageDisplayType", ReplicaDisplayTypes::DisplayNames::BUDT_RECEIVED_NAME); - break; - } - default: - { - bandwidthDisplayChanged.SetAttribute("Change Display Data Type", "Unknown"); - } - } - - bandwidthDisplayChanged.Log(); - } - } - - void ReplicaDataView::OnTableFilterTypeChanged(int selectedIndex) - { - AZ_Error("StandaloneTools", selectedIndex > TFT_START && selectedIndex < TFT_END, "Invalid index for TableFilterType"); - - if (selectedIndex > TFT_START && selectedIndex < TFT_END) - { - m_persistentState->m_tableFilterType = static_cast(selectedIndex); - RefreshTableView(); - - ReplicaOperationTelemetryEvent displayFilterChangedEvent; - - switch (m_persistentState->m_tableFilterType) - { - case TFT_NONE: - { - displayFilterChangedEvent.SetAttribute("TableFilterType", "None"); - break; - } - case TFT_ACTIVE_ONLY: - { - displayFilterChangedEvent.SetAttribute("TableFilterType", "Active Only"); - break; - } - default: - { - displayFilterChangedEvent.SetAttribute("TableFilterType", "Unknown"); - } - } - - displayFilterChangedEvent.Log(); - } - } - - void ReplicaDataView::OnShowOverallStatistics() - { - if (m_overallReplicaDetailView == nullptr) - { - m_overallReplicaDetailView = aznew OverallReplicaDetailView(this, (*m_aggregator)); - } - else - { - if (m_overallReplicaDetailView->isMinimized()) - { - m_overallReplicaDetailView->showNormal(); - } - - m_overallReplicaDetailView->raise(); - m_overallReplicaDetailView->activateWindow(); - } - } - - void ReplicaDataView::OnInspectedSeries(size_t seriesId) - { - if (m_inspectedSeries != seriesId) - { - m_inspectedSeries = seriesId; - - // This could be improved by using a map. But might not be necessary. - if (GetDisplayDataType() == DDT_REPLICA) - { - for (auto& mapPair : m_replicaData) - { - ReplicaDataContainer* container = mapPair.second; - - container->SetInspected(container->GetAreaGraphPlotHelper().IsSeries(seriesId)); - } - - m_replicaTypeTableView.layoutChanged(); - } - else if (GetDisplayDataType() == DDT_CHUNK) - { - for (auto& mapPair : m_replicaChunkTypeData) - { - ReplicaChunkTypeDataContainer* container = mapPair.second; - - container->SetInspected(container->GetAreaGraphPlotHelper().IsSeries(seriesId)); - } - - m_replicaChunkTypeTableView.layoutChanged(); - } - } - } - - void ReplicaDataView::OnSelectedSeries(size_t seriesId, int position) - { - (void)seriesId; - - EBUS_EVENT_ID(GetCaptureWindowIdentity(), DrillerCaptureWindowRequestBus, ScrubToFrameRequest, position); - } - - void ReplicaDataView::InspectReplica(int tableRow) - { - AZ::u64 replicaId = m_replicaTypeTableView.GetReplicaIdForRow(tableRow); - ReplicaDataContainer* replicaContainer = FindReplicaData(replicaId); - - ReplicaDetailView* replicaDetailView = aznew ReplicaDetailView(this, replicaContainer); - replicaDetailView->LoadSavedState(); - m_spawnedReplicaDetailViews.push_back(replicaDetailView); - } - - void ReplicaDataView::InspectChunkType(int tableRow) - { - const char* chunkType = m_replicaChunkTypeTableView.GetReplicaChunkTypeForRow(tableRow); - ReplicaChunkTypeDataContainer* chunkContainer = FindReplicaChunkTypeData(chunkType); - - ReplicaChunkTypeDetailView* replicaDetailView = aznew ReplicaChunkTypeDetailView(this, chunkContainer); - replicaDetailView->LoadSavedState(); - m_spawnedChunkDetailViews.push_back(replicaDetailView); - } - - void ReplicaDataView::RefreshTableView() - { - switch (GetDisplayDataType()) - { - case DDT_REPLICA: - m_replicaTypeTableView.RefreshView(); - break; - case DDT_CHUNK: - m_replicaChunkTypeTableView.RefreshView(); - break; - default: - break; - } - } - - void ReplicaDataView::SetupTableView() - { - m_gui->tableView->reset(); - - switch (GetDisplayDataType()) - { - case DDT_REPLICA: - SetupReplicaTableView(); - break; - case DDT_CHUNK: - SetupChunkTableView(); - break; - default: - break; - } - - RefreshTableView(); - } - - void ReplicaDataView::SetupReplicaTableView() - { - m_gui->tableView->setModel(&m_replicaTypeTableView); - m_gui->tableView->verticalHeader()->hide(); - - m_gui->tableView->horizontalHeader()->reset(); - - // I think this will fix the sizing issue, but until we update to 5.6 we don't get it! AWESOME - //m_gui->tableView->horizontalHeader()->resetDefaultSectionSize(); - - for (int i = 0; i < m_replicaTypeTableView.columnCount(); ++i) - { - m_gui->tableView->horizontalHeader()->resizeSection(i, m_gui->tableView->horizontalHeader()->defaultSectionSize()); - } - - // QT Persists the section resize mode after you call reset on the table, and on the column header. - // It's pretty special. - // Going to manually remove the information to avoid something looking really stupid. - if (ReplicaChunkTypeTableViewModel::CD_INSPECT < m_replicaTypeTableView.columnCount()) - { - m_gui->tableView->horizontalHeader()->setSectionResizeMode(ReplicaChunkTypeTableViewModel::CD_INSPECT, QHeaderView::Interactive); - } - - m_gui->tableView->horizontalHeader()->setSectionsClickable(false); - m_gui->tableView->horizontalHeader()->setSectionResizeMode(ReplicaTableViewModel::CD_INSPECT, QHeaderView::Fixed); - m_gui->tableView->horizontalHeader()->resizeSection(ReplicaTableViewModel::CD_INSPECT, INSPECT_ICON_COLUMN_SIZE); - - m_gui->tableView->setSelectionBehavior(QAbstractItemView::SelectRows); - m_gui->tableView->setAlternatingRowColors(true); - - m_gui->tableView->setItemDelegateForColumn(ReplicaTableViewModel::CD_INSPECT, new InspectIconItemDelegate(Qt::AlignCenter, m_gui->tableView)); - - QObject::connect(m_gui->tableView->selectionModel(), SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)), this, SLOT(ReplicaSelectionChanged(const QItemSelection&, const QItemSelection&))); - } - - void ReplicaDataView::SetupChunkTableView() - { - m_gui->tableView->setModel(&m_replicaChunkTypeTableView); - m_gui->tableView->verticalHeader()->hide(); - - m_gui->tableView->horizontalHeader()->reset(); - - // I think this will fix the sizing issue, but until we update to 5.6 we don't get it! AWESOME - //m_gui->tableView->horizontalHeader()->resetDefaultSectionSize(); - - for (int i = 0; i < m_replicaChunkTypeTableView.columnCount(); ++i) - { - m_gui->tableView->horizontalHeader()->resizeSection(i, m_gui->tableView->horizontalHeader()->defaultSectionSize()); - } - - // QT Persists the section resize mode after you call reset on the table, and on the column header. - // It's pretty special. - // Going to manually remove the information to avoid something looking really stupid. - if (ReplicaTableViewModel::CD_INSPECT < m_replicaChunkTypeTableView.columnCount()) - { - m_gui->tableView->horizontalHeader()->setSectionResizeMode(ReplicaTableViewModel::CD_INSPECT, QHeaderView::Interactive); - } - - m_gui->tableView->horizontalHeader()->setSectionsClickable(false); - m_gui->tableView->horizontalHeader()->setSectionResizeMode(ReplicaChunkTypeTableViewModel::CD_INSPECT, QHeaderView::Fixed); - m_gui->tableView->horizontalHeader()->resizeSection(ReplicaChunkTypeTableViewModel::CD_INSPECT, INSPECT_ICON_COLUMN_SIZE); - - m_gui->tableView->setSelectionBehavior(QAbstractItemView::SelectRows); - m_gui->tableView->setAlternatingRowColors(true); - - m_gui->tableView->setItemDelegateForColumn(ReplicaChunkTypeTableViewModel::CD_INSPECT, new InspectIconItemDelegate(Qt::AlignCenter, m_gui->tableView)); - - QObject::connect(m_gui->tableView->selectionModel(), SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)), this, SLOT(ChunkSelectionChanged(const QItemSelection&, const QItemSelection&))); - } - - void ReplicaDataView::UpdateData() - { - for (FrameNumberType frameId = GetStartFrame(); frameId <= GetEndFrame(); ++frameId) - { - ParseFrameData(frameId); - } - - ParseActiveItems(); - } - - void ReplicaDataView::ParseFrameData(FrameNumberType frameId) - { - AZ_PROFILE_FUNCTION(AzToolsFramework); - if (frameId < 0 || frameId >= m_aggregator->GetFrameCount() || m_parsedFrames.find(frameId) != m_parsedFrames.end()) - { - return; - } - - m_parsedFrames.insert(frameId); - - size_t numEvents = m_aggregator->NumOfEventsAtFrame(frameId); - - if (numEvents > 0) - { - const ReplicaDataAggregator::EventListType& events = m_aggregator->GetEvents(); - - EventNumberType startIndex = m_aggregator->GetFirstIndexAtFrame(frameId); - for (EventNumberType eventId = startIndex; eventId < static_cast(startIndex + numEvents); ++eventId) - { - const ReplicaChunkEvent* replicaChunkEvent = static_cast(events[eventId]); - - // Parsing events by ReplicaId - AZ::u64 replicaId = replicaChunkEvent->GetReplicaId(); - ReplicaDataMap::iterator replicaIter = m_replicaData.find(replicaId); - ReplicaDataContainer* replicaDataContainer = nullptr; - - if (replicaIter == m_replicaData.end()) - { - replicaDataContainer = aznew ReplicaDataContainer(replicaChunkEvent->GetReplicaName(), replicaId, GetRandomDisplayColor()); - - if (replicaDataContainer) - { - m_replicaData.insert(ReplicaDataMap::value_type(replicaId, replicaDataContainer)); - } - } - else - { - replicaDataContainer = replicaIter->second; - } - - // Parsing events by ReplicaChunkType - const AZStd::string& replicaChunkType = replicaChunkEvent->GetChunkTypeName(); - ReplicaChunkTypeDataMap::iterator replicaChunkIter = m_replicaChunkTypeData.find(replicaChunkType); - ReplicaChunkTypeDataContainer* replicaChunkDataContainer = nullptr; - - if (replicaChunkIter == m_replicaChunkTypeData.end()) - { - replicaChunkDataContainer = aznew ReplicaChunkTypeDataContainer(replicaChunkType.c_str(), GetRandomDisplayColor()); - - if (replicaChunkDataContainer) - { - m_replicaChunkTypeData.insert(ReplicaChunkTypeDataMap::value_type(replicaChunkType, replicaChunkDataContainer)); - } - } - else - { - replicaChunkDataContainer = replicaChunkIter->second; - } - - if (replicaDataContainer) - { - replicaDataContainer->ProcessReplicaChunkEvent(frameId, replicaChunkEvent); - } - - if (replicaChunkDataContainer) - { - replicaChunkDataContainer->ProcessReplicaChunkEvent(frameId, replicaChunkEvent); - } - } - } - } - - - void ReplicaDataView::ParseActiveItems() - { - switch (GetDisplayDataType()) - { - case DDT_REPLICA: - m_activeReplicaIds.clear(); - m_activeInspectedReplicaIds.clear(); - - for (AZStd::pair& replicaItem : m_replicaData) - { - ReplicaDataContainer* dataContainer = replicaItem.second; - - for (FrameNumberType frameId = GetStartFrame(); frameId <= GetEndFrame(); ++frameId) - { - if (dataContainer->HasUsageForFrame(frameId)) - { - m_activeReplicaIds.insert(replicaItem.first); - - if (dataContainer->HasUsageForFrame(GetCurrentFrame())) - { - m_activeInspectedReplicaIds.insert(replicaItem.first); - } - - break; - } - } - } - break; - case DDT_CHUNK: - m_activeChunkTypes.clear(); - m_activeInspectedChunkTypes.clear(); - - for (AZStd::pair& chunkItem : m_replicaChunkTypeData) - { - ReplicaChunkTypeDataContainer* dataContainer = chunkItem.second; - - for (FrameNumberType frameId = GetStartFrame(); frameId <= GetEndFrame(); ++frameId) - { - if (dataContainer->HasUsageForFrame(frameId)) - { - m_activeChunkTypes.insert(chunkItem.first); - - if (dataContainer->HasUsageForFrame(GetCurrentFrame())) - { - m_activeInspectedChunkTypes.insert(chunkItem.first); - } - - break; - } - } - } - break; - default: - AZ_Assert(false, "Unknown Display Data Type"); - break; - } - } - - int ReplicaDataView::GetDisplayRange() const - { - return m_persistentState->m_displayRange; - } - - ReplicaDataView::DisplayDataType ReplicaDataView::GetDisplayDataType() const - { - return static_cast(m_persistentState->m_displayDataType); - } - - ReplicaDisplayTypes::BandwidthUsageDisplayType ReplicaDataView::GetBandwidthUsageDisplayType() const - { - return static_cast(m_persistentState->m_bandwidthUsageDisplayType); - } - - ReplicaDataContainer* ReplicaDataView::FindReplicaData(AZ::u64 replicaId) const - { - ReplicaDataContainer* retVal = nullptr; - - ReplicaDataMap::const_iterator replicaIter = m_replicaData.find(replicaId); - - if (replicaIter != m_replicaData.end()) - { - retVal = replicaIter->second; - } - - return retVal; - } - - ReplicaChunkTypeDataContainer* ReplicaDataView::FindReplicaChunkTypeData(const char* chunkType) const - { - ReplicaChunkTypeDataContainer* retVal = nullptr; - - if (chunkType == nullptr) - { - return retVal; - } - - ReplicaChunkTypeDataMap::const_iterator chunkTypeIter = m_replicaChunkTypeData.find(AZStd::string(chunkType)); - - if (chunkTypeIter != m_replicaChunkTypeData.end()) - { - retVal = chunkTypeIter->second; - } - - return retVal; - } -} - diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.hxx b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.hxx deleted file mode 100644 index 20833fe4e5..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.hxx +++ /dev/null @@ -1,438 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef REPLICADATAVIEW_H -#define REPLICADATAVIEW_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include - -#include "Source/Driller/DrillerMainWindowMessages.h" -#include "Source/Driller/DrillerOperationTelemetryEvent.h" - -#include "Source/Driller/StripChart.hxx" -#include "Source/Driller/AreaChart.hxx" -#include "Source/Driller/DrillerDataTypes.h" -#include "Source/Driller/Replica/ReplicaDisplayHelpers.h" -#include "Source/Driller/Replica/ReplicaDisplayTypes.h" -#include "Source/Driller/Replica/ReplicaTreeViewModel.hxx" - -#include -#include - -#include "ReplicaBandwidthChartData.h" -#endif - -namespace AZ { class ReflectContext; } - -namespace Driller -{ - class ReplicaDataAggregator; - - class ReplicaChunkDataEvent; - class ReplicaChunkReceivedDataEvent; - class ReplicaChunkSentDataEvent; - class ReplicaDataView; - class ReplicaTableViewModel; - class ReplicaDataContainer; - class ReplicaChunkTypeDataContainer; - - class ReplicaDetailView; - class ReplicaChunkTypeDetailView; - - class ReplicaDataViewSavedState; - - class OverallReplicaDetailView; - - class FormattingHelper - { - public: - static QString ReplicaID(AZ::u64 replicaId) - { - return QString("0x%1").arg(QString::number(replicaId,16).toUpper()); - } - }; - - // Icon Item Delegate - class InspectIconItemDelegate : public QStyledItemDelegate - { - Q_OBJECT - public: - explicit InspectIconItemDelegate(Qt::Alignment alignment, QObject* parent = 0) - : QStyledItemDelegate(parent) - , m_alignment(alignment) - { - - } - - void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override - { - auto opt = option; - opt.decorationAlignment = m_alignment; - QStyledItemDelegate::paint(painter,opt,index); - } - - private: - Qt::Alignment m_alignment; - }; - - // Should be a private class, but Q_OBJECT doesn't support it. - class ReplicaTableViewModel : public QAbstractTableModel - { - Q_OBJECT - - public: - - enum ColumnDescriptor - { - CD_INDEX_FORCE = -1, - - // Ordering of this enum determines the display order. - CD_REPLICA_NAME, - CD_REPLICA_ID, - CD_TOTAL_SENT, - CD_TOTAL_RECEIVED, - CD_INSPECT, - - // Used for sizing of the TableView. Anything after this won't be displayed. - CD_COUNT, - - }; - - AZ_CLASS_ALLOCATOR(ReplicaTableViewModel, AZ::SystemAllocator, 0); - ReplicaTableViewModel(ReplicaDataView* replicaDataView); - - void RefreshView(); - - int rowCount(const QModelIndex& parentIndex = QModelIndex()) const override; - int columnCount(const QModelIndex& parentIndex = QModelIndex()) const override; - - QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; - - QVariant headerData(int section, Qt::Orientation orientation, int role) const override; - - Qt::ItemFlags flags(const QModelIndex& index) const override; - - AZ::u64 GetReplicaIdFromIndex(const QModelIndex& index) const; - AZ::u64 GetReplicaIdForRow(int row) const; - - private: - - ReplicaDataView* m_replicaDataView; - AZStd::vector m_replicaIds; - }; - - class ReplicaChunkTypeTableViewModel : public QAbstractTableModel - { - Q_OBJECT - - public: - - enum ColumnDescriptor - { - CD_INDEX_FORCE = -1, - - // Ordering of this enum determines the display order. - CD_CHUNK_TYPE, - CD_TOTAL_SENT, - CD_TOTAL_RECEIVED, - CD_INSPECT, - - CD_COUNT - }; - - AZ_CLASS_ALLOCATOR(ReplicaChunkTypeTableViewModel, AZ::SystemAllocator, 0); - - ReplicaChunkTypeTableViewModel(ReplicaDataView* replicaDataView); - - void RefreshView(); - - int rowCount(const QModelIndex& parentIndex = QModelIndex()) const override; - int columnCount(const QModelIndex& parentIndex = QModelIndex()) const override; - - QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; - - QVariant headerData(int section, Qt::Orientation orientation, int role) const override; - - Qt::ItemFlags flags(const QModelIndex& index) const override; - - const char* GetReplicaChunkTypeFromIndex(const QModelIndex& index) const; - const char* GetReplicaChunkTypeForRow(int row) const; - - private: - - ReplicaDataView* m_replicaDataView; - AZStd::vector m_replicaChunkTypes; - }; - - class ReplicaDataView - : public QDialog - , public Driller::DrillerMainWindowMessages::Bus::Handler - , public Driller::DrillerEventWindowMessages::Bus::Handler - { - Q_OBJECT - - private: - - friend class ReplicaDataViewSavedState; - friend class ReplicaDataViewConfigurationDialog; - - friend class ReplicaChunkTypeTableViewModel; - friend class ReplicaChunkTypeDetailView; - - friend class ReplicaTableViewModel; - friend class ReplicaDetailView; - - enum DisplayDataType - { - DDT_START = -1, - - DDT_REPLICA, - DDT_CHUNK, - - DDT_END - }; - - enum TableFilterType - { - TFT_START = -1, - - TFT_NONE, - TFT_ACTIVE_ONLY, - - TFT_END - }; - - static const char* DDT_REPLICA_NAME; - static const char* DDT_CHUNK_NAME; - - // Serialization Keys - static const char* WINDOW_STATE_FORMAT; - static const char* SPLITTER_STATE_FORMAT; - static const char* TABLE_STATE_FORMAT; - static const char* DATA_VIEW_STATE_FORMAT; - - static const char* DATA_VIEW_WORKSPACE_FORMAT; - - // Sizing keys - static const int INSPECT_ICON_COLUMN_SIZE; - - public: - - struct ChartZoomMaintainer - { - public: - ChartZoomMaintainer(); - - void GetZoomFromChart(StripChart::DataStrip& chart, Charts::AxisType axis); - void SetZoomOnChart(StripChart::DataStrip& chart, Charts::AxisType axis); - - private: - - Charts::AxisType m_axis; - float m_minValue; - float m_maxValue; - }; - - public: - - AZ_CLASS_ALLOCATOR(ReplicaDataView, AZ::SystemAllocator, 0); - - ReplicaDataView(unsigned int dataViewIndex, FrameNumberType currentFrame, const ReplicaDataAggregator* aggr); - virtual ~ReplicaDataView(); - - // MainWindow Bus Commands - void FrameChanged(FrameNumberType frame) override; - void EventFocusChanged(EventNumberType eventIndex) override; - void EventChanged(EventNumberType eventIndex) override; - - float GetAxisStartFrame() const; - FrameNumberType GetStartFrame() const; - - float GetAxisEndFrame() const; - FrameNumberType GetEndFrame() const; - - FrameNumberType GetActiveFrameCount() const; - FrameNumberType GetCurrentFrame() const; - - bool HideInactiveInspectedElements() const; - - int GetCaptureWindowIdentity() const; - unsigned int GetAverageFrameBandwidthBudget() const; - - void SignalDialogClosed(QDialog* dialog); - - unsigned int GetDataViewIndex() const; - - // Mimicing the workspace bus, but these need to be invoked manually - // by the object that creates these windows(since it creates these in response - // to these events). - void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*); - void ActivateWorkspaceSettings(WorkspaceSettingsProvider*); - void SaveSettingsToWorkspace(WorkspaceSettingsProvider*); - void ApplyPersistentState(); - - static void Reflect(AZ::ReflectContext* context); - - public slots: - - void UpdateDisplay(const QModelIndex& startIndex, const QModelIndex& endIndex); - - void RefreshGraph(); - void ReplicaSelectionChanged(const QItemSelection& selected, const QItemSelection& deselected); - void ChunkSelectionChanged(const QItemSelection& selected, const QItemSelection& deselected); - void OnDisplayRangeChanged(int); - - void HideAll(); - void ShowAll(); - void SetAllEnabled(bool enabled); - - void HideSelected(); - void ShowSelected(); - void SetSelectedEnabled(bool enabled); - - void OnCellClicked(const QModelIndex& index); - void OnDoubleClicked(const QModelIndex& idnex); - - void OnDataTypeChanged(int selectedIndex); - void OnBandwidthUsageDisplayTypeChanged(int selectedIndex); - void OnTableFilterTypeChanged(int selectedIndex); - - void OnShowOverallStatistics(); - - void OnInspectedSeries(size_t seriesId); - void OnSelectedSeries(size_t seriesId, int position); - - signals: - - void DataRangeChanged(); - - private: - - void SaveOnExit(); - - void InspectReplica(int tableRow); - void InspectChunkType(int tableRow); - - void RefreshTableView(); - void SetupTableView(); - void SetupReplicaTableView(); - void SetupChunkTableView(); - - void DrawFrameGraph(); - - template - void PlotChartDataForFrames(ReplicaBandwidthChartData* chartData) - { - AreaGraphPlotHelper& areaPlotHelper = chartData->GetAreaGraphPlotHelper(); - areaPlotHelper.SetupPlotHelper(m_gui->areaChart, chartData->GetAxisName(),chartData->GetAllFrames().size()); - - if (!areaPlotHelper.IsSetup()) - { - return; - } - - areaPlotHelper.SetHighlighted(chartData->IsSelected()); - areaPlotHelper.SetEnabled(chartData->IsEnabled()); - - ReplicaDisplayTypes::BandwidthUsageDisplayType bandwidthDisplayType = GetBandwidthUsageDisplayType(); - - for (FrameNumberType frameId = GetStartFrame(); frameId <= GetEndFrame(); ++frameId) - { - size_t sentDataUsage = chartData->GetSentUsageForFrame(frameId); - size_t receivedDataUsage = chartData->GetReceivedUsageForFrame(frameId); - - switch (bandwidthDisplayType) - { - case ReplicaDisplayTypes::BUDT_COMBINED: - areaPlotHelper.PlotBatchedData(frameId, static_cast(sentDataUsage + receivedDataUsage)); - break; - case ReplicaDisplayTypes::BUDT_SENT: - areaPlotHelper.PlotBatchedData(frameId, static_cast(sentDataUsage)); - break; - case ReplicaDisplayTypes::BUDT_RECEIVED: - areaPlotHelper.PlotBatchedData(frameId, static_cast(receivedDataUsage)); - break; - default: - AZ_Error("Standalone Tools", false, "Unknown bandwidth display type."); - break; - } - } - } - - void InitializeData(); - void UpdateData(); - void ParseFrameData(FrameNumberType frameId); - void ParseActiveItems(); - - int GetDisplayRange() const; - DisplayDataType GetDisplayDataType() const; - ReplicaDisplayTypes::BandwidthUsageDisplayType GetBandwidthUsageDisplayType() const; - - ReplicaDataContainer* FindReplicaData(AZ::u64 replicaId) const; - ReplicaChunkTypeDataContainer* FindReplicaChunkTypeData(const char* chunkType) const; - - typedef AZStd::unordered_map ReplicaDataMap; - typedef AZStd::unordered_set ReplicaIdSet; - - typedef AZStd::unordered_map ReplicaChunkTypeDataMap; - typedef AZStd::unordered_set ReplicaChunkTypeSet; - - // Used for ordering in the table view/quick mapping of Row -> ReplicaID - ReplicaDataMap m_replicaData; - ReplicaIdSet m_activeReplicaIds; - ReplicaIdSet m_activeInspectedReplicaIds; - ReplicaTableViewModel m_replicaTypeTableView; - - ReplicaChunkTypeDataMap m_replicaChunkTypeData; - ReplicaChunkTypeSet m_activeChunkTypes; - ReplicaChunkTypeSet m_activeInspectedChunkTypes; - ReplicaChunkTypeTableViewModel m_replicaChunkTypeTableView; - - unsigned int m_dataViewIndex; - size_t m_inspectedSeries; - - AZ::u32 m_windowStateCRC; - AZ::u32 m_splitterStateCRC; - AZ::u32 m_tableViewCRC; - AZ::u32 m_dataViewCRC; - - int m_aggregatorIdentity; - const ReplicaDataAggregator* m_aggregator; - - FrameNumberType m_startFrame; - FrameNumberType m_endFrame; - FrameNumberType m_currentFrame; - - AZStd::unordered_set< FrameNumberType > m_parsedFrames; - - OverallReplicaDetailView* m_overallReplicaDetailView; - AZStd::vector< ReplicaDetailView* > m_spawnedReplicaDetailViews; - AZStd::vector< ReplicaChunkTypeDetailView* > m_spawnedChunkDetailViews; - - // Information about the window that we might want to save out - AZStd::intrusive_ptr m_persistentState; - - DrillerWindowLifepsanTelemetry m_lifespanTelemetry; - - Ui::ReplicaDataView* m_gui; - }; -} - -#endif // REPLICADATAVIEW_H diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataViewConfigDialog.ui b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataViewConfigDialog.ui deleted file mode 100644 index 567eed74e4..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataViewConfigDialog.ui +++ /dev/null @@ -1,106 +0,0 @@ - - - ReplicaDataViewConfigDialog - - - - 0 - 0 - 322 - 89 - - - - Replica Data View Configuration - - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 5 - - - 5 - - - 0 - - - 5 - - - 0 - - - - - Controls the number of frames displayed on the Replica Data View and Replica Detail View. - - - Display Range - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 0 - 0 - - - - 99999 - - - - - - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - - - Remove Inactive Replica's From Inspected Frame View - - - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.cpp deleted file mode 100644 index 0e653e982b..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.cpp +++ /dev/null @@ -1,346 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include - -#include "ReplicaDetailView.h" -#include - -#include "ReplicaDataAggregator.hxx" -#include "ReplicaUsageDataContainers.h" - - -namespace Driller -{ - /////////////////////////// - // ReplicaDetailViewModel - /////////////////////////// - - ReplicaDetailViewModel::ReplicaDetailViewModel(ReplicaDetailView* detailView) - : BaseDetailTreeViewModel(detailView) - { - } - - int ReplicaDetailViewModel::columnCount(const QModelIndex& parentIndex) const - { - (void)parentIndex; - - return static_cast(CD_COUNT); - } - - QVariant ReplicaDetailViewModel::data(const QModelIndex& index, int role) const - { - const BaseDisplayHelper* baseDisplay = static_cast(index.internalPointer()); - - if (role == Qt::BackgroundRole) - { - if (baseDisplay->m_inspected) - { - return QVariant::fromValue(QColor(94, 94, 178, 255)); - } - } - else - { - switch (index.column()) - { - case CD_DISPLAY_NAME: - if (role == Qt::DecorationRole) - { - if (baseDisplay->HasIcon()) - { - return baseDisplay->GetIcon(); - } - } - else if (role == Qt::DisplayRole) - { - return baseDisplay->GetDisplayName(); - } - break; - case CD_TOTAL_SENT: - if (role == Qt::DisplayRole) - { - return QString::number(baseDisplay->m_bandwidthUsageAggregator.m_bytesSent); - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - break; - case CD_TOTAL_RECEIVED: - if (role == Qt::DisplayRole) - { - return QString::number(baseDisplay->m_bandwidthUsageAggregator.m_bytesReceived); - } - else if (role == Qt::TextAlignmentRole) - { - return QVariant(Qt::AlignCenter); - } - break; - case CD_RPC_COUNT: - if (role == Qt::DisplayRole) - { - if (azrtti_istypeof(baseDisplay)) - { - size_t count = 0; - - for (BaseDisplayHelper* displayHelper : baseDisplay->GetChildren()) - { - count += displayHelper->GetChildren().size(); - } - - return QString::number(count); - } - else if (azrtti_istypeof(baseDisplay)) - { - return QString::number(baseDisplay->GetChildren().size()); - } - } - break; - default: - AZ_Assert(false,"Unknown column index %i",index.column()); - break; - } - } - - return QVariant(); - } - - - QVariant ReplicaDetailViewModel::headerData(int section, Qt::Orientation orientation, int role) const - { - if (role == Qt::DisplayRole) - { - if (orientation == Qt::Horizontal) - { - switch (section) - { - case CD_DISPLAY_NAME: - return QString("Display Name"); - case CD_TOTAL_SENT: - return QString("Sent Bytes"); - case CD_TOTAL_RECEIVED: - return QString("Received Bytes"); - case CD_RPC_COUNT: - return QString("RPC Count"); - default: - AZ_Assert(false, "Unknown section index %i", section); - break; - } - } - } - - return QVariant(); - } - - ////////////////////// - // ReplicaDetailView - ////////////////////// - ReplicaDetailView::ReplicaDetailView(ReplicaDataView* replicaDataView, ReplicaDataContainer* dataContainer) - : BaseDetailView(replicaDataView) - , m_inspectedSeries(AreaChart::AreaChart::k_invalidSeriesId) - , m_replicaData(dataContainer) - , m_replicaDetailView(this) - , m_lifespanTelemetry("ReplicaDetailView") - { - QString replicaName = QString("%1 (%2)").arg(QString(dataContainer->GetReplicaName())).arg(FormattingHelper::ReplicaID(dataContainer->GetReplicaId())); - - show(); - raise(); - activateWindow(); - setFocus(); - - setWindowTitle(QString("%1's ReplicaChunk Breakdown - %2").arg(replicaName).arg(replicaDataView->m_aggregator->GetInspectionFileName())); - - m_gui->replicaName->setText(replicaName); - - m_gui->aggregationTypeComboBox->addItem(QString("Replica Chunk")); - - if (m_gui->aggregationTypeComboBox->count() == 1) - { - m_gui->aggregationTypeComboBox->setEditable(false); - m_gui->aggregationTypeComboBox->setEnabled(false); - } - - QObject::connect((&m_replicaDetailView), SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)), this, SLOT(UpdateDisplay(const QModelIndex&, const QModelIndex&))); - QObject::connect(m_gui->aggregationTypeComboBox,SIGNAL(currentIndexChanged(int)),this,SLOT(DisplayModeChanged(int))); - QObject::connect(m_gui->bandwidthUsageDisplayType, SIGNAL(currentIndexChanged(int)), this, SLOT(BandwidthDisplayUsageTypeChanged(int))); - QObject::connect(m_gui->graphDetailType, SIGNAL(currentIndexChanged(int)), this, SLOT(GraphDetailChanged(int))); - - DisplayModeChanged(static_cast(DisplayMode::Active)); - } - - ReplicaDetailView::~ReplicaDetailView() - { - for (ChunkDetailDisplayMap::iterator displayIter = m_typeDisplayMapping.begin(); - displayIter != m_typeDisplayMapping.end(); - ++displayIter) - { - delete displayIter->second; - } - } - - const ReplicaBandwidthChartData::FrameMap& ReplicaDetailView::GetFrameData() const - { - return m_replicaData->GetAllFrames(); - } - - BaseDetailDisplayHelper* ReplicaDetailView::FindDetailDisplay(const AZ::u32& chunkIndex) - { - BaseDetailDisplayHelper* retVal = nullptr; - - ChunkDetailDisplayMap::iterator displayIter = m_typeDisplayMapping.find(chunkIndex); - - if (displayIter != m_typeDisplayMapping.end()) - { - retVal = displayIter->second; - } - - return retVal; - } - - const BaseDetailDisplayHelper* ReplicaDetailView::FindDetailDisplay(const AZ::u32& chunkIndex) const - { - const BaseDetailDisplayHelper* retVal = nullptr; - - ChunkDetailDisplayMap::const_iterator displayIter = m_typeDisplayMapping.find(chunkIndex); - - if (displayIter != m_typeDisplayMapping.end()) - { - retVal = displayIter->second; - } - - return retVal; - } - - void ReplicaDetailView::InitializeDisplayData() - { - m_activeIds.clear(); - m_activeInspectedIds.clear(); - - const ReplicaDataContainer::FrameMap& frameMap = m_replicaData->GetAllFrames(); - - for (FrameNumberType currentFrame = m_replicaDataView->GetStartFrame(); currentFrame <= m_replicaDataView->GetEndFrame(); ++currentFrame) - { - ReplicaDataContainer::FrameMap::const_iterator frameIter = frameMap.find(currentFrame); - - if (frameIter == frameMap.end()) - { - continue; - } - - const ReplicaDataContainer::BandwidthUsageMap* usageMap = frameIter->second; - - for (ReplicaDataContainer::BandwidthUsageMap::const_iterator usageIter = usageMap->begin(); - usageIter != usageMap->end(); - ++usageIter) - { - ReplicaChunkBandwidthUsage* bandwidthUsage = static_cast(usageIter->second); - - ChunkDetailDisplayMap::iterator displayIter = m_typeDisplayMapping.find(bandwidthUsage->GetChunkIndex()); - - ReplicaChunkDetailDisplayHelper* chunkTypeDisplay = nullptr; - - if (displayIter == m_typeDisplayMapping.end()) - { - chunkTypeDisplay = aznew ReplicaChunkDetailDisplayHelper(bandwidthUsage->GetChunkTypeName(), bandwidthUsage->GetChunkIndex()); - - if (chunkTypeDisplay) - { - m_typeDisplayMapping.insert(AZStd::make_pair(bandwidthUsage->GetChunkIndex(), chunkTypeDisplay)); - } - } - else - { - chunkTypeDisplay = displayIter->second; - } - - // Consider sending along an overall descriptor of the replcia so we can easily setup the display instead - // of iterating blindly over our detail information trying to get a sense of what the thing is. - if (chunkTypeDisplay) - { - if (currentFrame == m_replicaDataView->GetCurrentFrame()) - { - m_activeInspectedIds.insert(chunkTypeDisplay->GetChunkIndex()); - } - - if (m_activeIds.insert(chunkTypeDisplay->GetChunkIndex()).second) - { - chunkTypeDisplay->GetDataSetDisplayHelper()->ClearActiveDisplay(); - chunkTypeDisplay->GetRPCDisplayHelper()->ClearActiveDisplay(); - } - - const ReplicaChunkBandwidthUsage::UsageAggregationMap& dataSetUsage = bandwidthUsage->GetDataTypeUsageAggregation(BandwidthUsage::DataType::DATA_SET); - - for (const auto& usagePair : dataSetUsage) - { - const BandwidthUsage& currentUsage = usagePair.second; - chunkTypeDisplay->SetupDataSet(currentUsage.m_index, currentUsage.m_identifier.c_str()); - } - - const ReplicaChunkBandwidthUsage::UsageAggregationMap& rpcUsage = bandwidthUsage->GetDataTypeUsageAggregation(BandwidthUsage::DataType::REMOTE_PROCEDURE_CALL); - - for (const auto& usagePair : rpcUsage) - { - const BandwidthUsage& currentUsage = usagePair.second; - chunkTypeDisplay->SetupRPC(currentUsage.m_index, currentUsage.m_identifier.c_str()); - } - } - } - } - } - - void ReplicaDetailView::LayoutChanged() - { - m_replicaDetailView.layoutChanged(); - } - - void ReplicaDetailView::OnSetupTreeView() - { - m_gui->treeView->setModel(&m_replicaDetailView); - ShowTreeFrame(m_replicaDataView->GetCurrentFrame()); - } - - void ReplicaDetailView::ShowTreeFrame(FrameNumberType frameId) - { - m_replicaDetailView.RefreshView(frameId); - } - - AZ::u32 ReplicaDetailView::CreateWindowGeometryCRC() - { - return AZ::Crc32("REPLICA_DETAIL_VIEW_WINDOW_STATE"); - } - - AZ::u32 ReplicaDetailView::CreateSplitterStateCRC() - { - return AZ::Crc32("REPLICA_DETAIL_VIEW_SPLITTER_STATE"); - } - - AZ::u32 ReplicaDetailView::CreateTreeStateCRC() - { - return AZ::Crc32("REPLICA_DETAIL_VIEW_TREE_STATE"); - } - - void ReplicaDetailView::OnInspectedSeries(size_t seriesId) - { - if (m_inspectedSeries != seriesId) - { - m_inspectedSeries = seriesId; - - // TODO: Handle expanding the tree and scrolling to the selected value. - for (auto& mapPair : m_typeDisplayMapping) - { - BaseDetailDisplayHelper* displayHelper = mapPair.second; - - displayHelper->m_inspected = displayHelper->m_areaGraphPlotHelper.IsSeries(m_inspectedSeries); - } - - m_replicaDetailView.layoutChanged(); - } - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.h deleted file mode 100644 index 136da9003c..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.h +++ /dev/null @@ -1,116 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_REPLICADETAILVIEW_H -#define DRILLER_REPLICA_REPLICADETAILVIEW_H - -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include - -#include "Source/Driller/DrillerMainWindowMessages.h" -#include "Source/Driller/StripChart.hxx" -#include "Source/Driller/Replica/ReplicaDataView.hxx" -#include "Source/Driller/Replica/ReplicaDisplayHelpers.h" - -#include "Source/Driller/Replica/BaseDetailView.h" - -namespace Ui -{ - class ReplicaDetailView; -} - -namespace AZ { class ReflectContext; } - -namespace Driller -{ - class ReplicaDetailView; - class ReplicaChunkBandwidthUsage; - - class ReplicaDetailViewModel - : public BaseDetailTreeViewModel - { - public: - enum ColumnDescriptor - { - CD_INDEX_FORCE = -1, - - // Ordering of this enum determines the display order - CD_DISPLAY_NAME, - CD_TOTAL_SENT, - CD_TOTAL_RECEIVED, - CD_RPC_COUNT, - - // Used for sizing of the TableView. Anything after this won't be displayed. - CD_COUNT - }; - - AZ_CLASS_ALLOCATOR(ReplicaDetailViewModel, AZ::SystemAllocator, 0); - ReplicaDetailViewModel(ReplicaDetailView* detailView); - - int columnCount(const QModelIndex& parentIndex = QModelIndex()) const override; - - QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; - QVariant headerData(int section, Qt::Orientation orientation, int role) const override; - }; - - class ReplicaDetailView - : public BaseDetailView - { - typedef AZStd::unordered_map ChunkDetailDisplayMap; - - friend class ReplicaDetailViewModel; - - public: - AZ_CLASS_ALLOCATOR(ReplicaDetailView, AZ::SystemAllocator, 0); - - ReplicaDetailView(ReplicaDataView* replicaDataView, ReplicaDataContainer* dataContainer); - ~ReplicaDetailView(); - - const ReplicaBandwidthChartData::FrameMap& GetFrameData() const override; - BaseDetailDisplayHelper* FindDetailDisplay(const AZ::u32& chunkIndex) override; - const BaseDetailDisplayHelper* FindDetailDisplay(const AZ::u32& chunkIndex) const override; - - protected: - - void InitializeDisplayData() override; - - void LayoutChanged() override; - void OnSetupTreeView() override; - void ShowTreeFrame(FrameNumberType frameId) override; - - AZ::u32 CreateWindowGeometryCRC() override; - AZ::u32 CreateSplitterStateCRC() override; - AZ::u32 CreateTreeStateCRC() override; - - void OnInspectedSeries(size_t seriesId) override; - - private: - - size_t m_inspectedSeries; - - ChunkDetailDisplayMap m_typeDisplayMapping; - ReplicaDataContainer* m_replicaData; - - ReplicaDetailViewModel m_replicaDetailView; - - DrillerWindowLifepsanTelemetry m_lifespanTelemetry; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.cpp deleted file mode 100644 index 0fad38a2ea..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.cpp +++ /dev/null @@ -1,568 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include -#include -#include - -#include "Source/Driller/Replica/ReplicaDisplayHelpers.h" - -#include "Source/Driller/StripChart.hxx" - -#include -#include - -namespace Driller -{ - QColor GetRandomDisplayColor() - { - static AZ::SimpleLcgRandom s_randomGenerator(AZStd::chrono::system_clock::now().time_since_epoch().count()); - // Narrowing the range to avoid excessively dark colors - return QColor(50 + s_randomGenerator.GetRandom() % 206, 50 + s_randomGenerator.GetRandom() % 206, 50 + s_randomGenerator.GetRandom() % 206); - } - - ////////////////////// - // BaseDisplayHelper - ////////////////////// - - BaseDisplayHelper::BaseDisplayHelper() - : m_graphEnabled(true) - , m_selected(false) - , m_inspected(false) - , m_color(GetRandomDisplayColor()) - , m_areaGraphPlotHelper(m_color) - , m_sentGraphPlot(m_color) - , m_iconEnabled(true) - , m_parent(nullptr) - { - QPixmap pixmap(16, 16); - QPainter painter(&pixmap); - painter.setBrush(m_color); - painter.drawRect(0, 0, 16, 16); - - m_icon.addPixmap(pixmap); - } - - BaseDisplayHelper::~BaseDisplayHelper() - { - for (BaseDisplayHelper* helper : m_children) - { - // Can't remove objects from the tree display since it messes with the - // index ordering. So if we get into this error, just keep it there, but we won't delete it. - if (helper->m_parent == this) - { - delete helper; - } - } - - m_children.clear(); - } - - void BaseDisplayHelper::Reset() - { - m_graphEnabled = true; - m_selected = false; - - for (BaseDisplayHelper* helper : m_children) - { - helper->Reset(); - } - - OnReset(); - ResetGraphConfiguration(); - ResetBandwidthUsage(); - } - - void BaseDisplayHelper::ResetGraphConfiguration() - { - m_areaGraphPlotHelper.Reset(); - - for (BaseDisplayHelper* helper : m_children) - { - helper->ResetGraphConfiguration(); - } - - OnResetGraphConfiguration(); - } - - void BaseDisplayHelper::ResetBandwidthUsage() - { - m_bandwidthUsageAggregator.Reset(); - - for (BaseDisplayHelper* helper : m_children) - { - helper->ResetBandwidthUsage(); - } - - OnResetBandwidthUsage(); - } - - int BaseDisplayHelper::AddChild(BaseDisplayHelper* baseDisplayHelper) - { - if (baseDisplayHelper == nullptr) - { - return -1; - } - - AZ_Assert(baseDisplayHelper->m_parent == nullptr, "Adding Leaf node to two parents in tree."); - - int index = static_cast(m_children.size()); - m_children.push_back(baseDisplayHelper); - - baseDisplayHelper->m_parent = this; - - return index; - } - - void BaseDisplayHelper::DetachChild(BaseDisplayHelper* baseDisplayHelper) - { - if (baseDisplayHelper == nullptr) - { - return; - } - - AZ_Error("BaseDisplayHelper", baseDisplayHelper->m_parent == this, "Detaching a leaf node from the wrong parent."); - - if (baseDisplayHelper->m_parent == this) - { - for (AZStd::vector< BaseDisplayHelper* >::iterator displayIter = m_children.begin(); - displayIter != m_children.end(); - ++displayIter) - { - if ((*displayIter) == baseDisplayHelper) - { - baseDisplayHelper->m_parent = nullptr; - m_children.erase(displayIter); - break; - } - } - } - } - - void BaseDisplayHelper::InspectSeries(size_t seriesId) - { - m_inspected = m_areaGraphPlotHelper.IsSeries(seriesId); - - for (BaseDisplayHelper* child : m_children) - { - child->InspectSeries(seriesId); - } - } - - BaseDisplayHelper* BaseDisplayHelper::FindChildByRow(int row) - { - BaseDisplayHelper* retVal = nullptr; - - if (row >= 0 && row < m_children.size()) - { - retVal = m_children[row]; - } - - return retVal; - } - - const BaseDisplayHelper* BaseDisplayHelper::FindChildByRow(int row) const - { - const BaseDisplayHelper* retVal = nullptr; - - if (row >= 0 && row < m_children.size()) - { - retVal = m_children[row]; - } - - return retVal; - } - - size_t BaseDisplayHelper::GetTreeRowCount() const - { - return m_children.size(); - } - - int BaseDisplayHelper::GetChildIndex(const BaseDisplayHelper* helper) const - { - int index = -1; - - for (size_t i = 0; i < m_children.size(); ++i) - { - if (m_children[i] == helper) - { - index = static_cast(i); - break; - } - } - - return index; - } - - void BaseDisplayHelper::SetIconEnabled(bool iconEnabled) - { - m_iconEnabled = iconEnabled; - } - - bool BaseDisplayHelper::HasIcon() const - { - return m_iconEnabled; - } - - const QIcon& BaseDisplayHelper::GetIcon() const - { - if (m_graphEnabled) - { - return m_icon; - } - else - { - static QIcon s_blackIcon; - static bool s_doOnce = true; - - if (s_doOnce) - { - s_doOnce = false; - - QPixmap pixmap(16, 16); - QPainter painter(&pixmap); - painter.setBrush(Qt::black); - painter.drawRect(0, 0, 16, 16); - - s_blackIcon.addPixmap(pixmap); - } - - return s_blackIcon; - } - } - - const AZStd::vector< BaseDisplayHelper* >& BaseDisplayHelper::GetChildren() const - { - return m_children; - } - - const BaseDisplayHelper* BaseDisplayHelper::GetParent() const - { - return m_parent; - } - - void BaseDisplayHelper::DetachAllChildren() - { - for (BaseDisplayHelper* helper : m_children) - { - helper->m_parent = nullptr; - } - - m_children.clear(); - } - - void BaseDisplayHelper::OnReset() - { - } - - void BaseDisplayHelper::OnResetGraphConfiguration() - { - } - - void BaseDisplayHelper::OnResetBandwidthUsage() - { - } - - ///////////////////////// - // DataSetDisplayHelper - ///////////////////////// - - DataSetDisplayHelper::DataSetDisplayHelper(size_t dataSetIndex) - : KeyedDisplayHelper(dataSetIndex) - { - } - - void DataSetDisplayHelper::SetDisplayName(const char* displayName) - { - if (displayName) - { - m_dataSetName = displayName; - } - else - { - m_dataSetName.clear(); - } - } - - const char* DataSetDisplayHelper::GetDisplayName() const - { - return m_dataSetName.c_str(); - } - - ///////////////////// - // RPCDisplayHelper - ///////////////////// - - /////////////////////////////// - // RPCInvokationDisplayHelper - /////////////////////////////// - - RPCDisplayHelper::RPCInvokationDisplayHelper::RPCInvokationDisplayHelper(const AZStd::string& rpcName, int counter) - { - SetIconEnabled(false); - m_rpcName = AZStd::string::format("%s_%i",rpcName.c_str(),counter); - } - - const char* RPCDisplayHelper::RPCInvokationDisplayHelper::GetDisplayName() const - { - return m_rpcName.c_str(); - } - - RPCDisplayHelper::RPCDisplayHelper(size_t rpcIndex) - : KeyedDisplayHelper(rpcIndex) - { - } - - void RPCDisplayHelper::AddInvokation(const BandwidthUsage& bandwidthUsage) - { - m_bandwidthUsageAggregator.m_bytesSent += bandwidthUsage.m_usageAggregator.m_bytesSent; - m_bandwidthUsageAggregator.m_bytesReceived += bandwidthUsage.m_usageAggregator.m_bytesReceived; - - RPCInvokationDisplayHelper* invokationDisplayHelper = aznew RPCInvokationDisplayHelper(m_rpcName,static_cast(GetChildren().size())); - - invokationDisplayHelper->m_bandwidthUsageAggregator.m_bytesSent += bandwidthUsage.m_usageAggregator.m_bytesSent; - invokationDisplayHelper->m_bandwidthUsageAggregator.m_bytesReceived += bandwidthUsage.m_usageAggregator.m_bytesReceived; - - AddChild(invokationDisplayHelper); - } - - void RPCDisplayHelper::SetDisplayName(const char* displayName) - { - m_rpcName = displayName; - } - - const char* RPCDisplayHelper::GetDisplayName() const - { - return m_rpcName.c_str(); - } - - void RPCDisplayHelper::OnResetBandwidthUsage() - { - DetachAllChildren(); - } - - //////////////////////////// - // BaseDetailDisplayHelper - //////////////////////////// - - BaseDetailDisplayHelper::BaseDetailDisplayHelper() - : m_rpcDisplayFilter(aznew RPCDisplayFilter()) - , m_dataSetDisplayFilter(aznew DataSetDisplayFilter()) - { - AddChild(m_rpcDisplayFilter); - AddChild(m_dataSetDisplayFilter); - } - - BaseDetailDisplayHelper::~BaseDetailDisplayHelper() - { - m_rpcDisplayFilter = nullptr; - m_dataSetDisplayFilter = nullptr; - } - - RPCDisplayHelper* BaseDetailDisplayHelper::FindRPC(size_t rpcIndex) - { - AZ_Error("BaseDetailDisplayHelper", m_rpcDisplayFilter->HasDisplayHelperForKey(rpcIndex), "Invalid RPC Index"); - return m_rpcDisplayFilter->FindDisplayHelperFromKey(rpcIndex); - } - - const RPCDisplayHelper* BaseDetailDisplayHelper::FindRPC(size_t rpcIndex) const - { - return m_rpcDisplayFilter->FindDisplayHelperFromKey(rpcIndex); - } - - void BaseDetailDisplayHelper::SetupRPC(size_t index, const char* rpcName) - { - if (!m_rpcDisplayFilter->HasDisplayHelperForKey(index)) - { - RPCDisplayHelper* rpcDisplayHelper = m_rpcDisplayFilter->CreateDisplayHelperFromKey(index); - rpcDisplayHelper->SetDisplayName(rpcName); - } - } - - void BaseDetailDisplayHelper::AddRPCUsage(const BandwidthUsage& bandwidthUsage) - { - m_bandwidthUsageAggregator.m_bytesSent += bandwidthUsage.m_usageAggregator.m_bytesSent; - m_bandwidthUsageAggregator.m_bytesReceived += bandwidthUsage.m_usageAggregator.m_bytesReceived; - - m_rpcDisplayFilter->m_bandwidthUsageAggregator.m_bytesSent += bandwidthUsage.m_usageAggregator.m_bytesSent; - m_rpcDisplayFilter->m_bandwidthUsageAggregator.m_bytesReceived += bandwidthUsage.m_usageAggregator.m_bytesReceived; - - RPCDisplayHelper* rpcDisplay = FindRPC(bandwidthUsage.m_index); - - if (rpcDisplay) - { - rpcDisplay->AddInvokation(bandwidthUsage); - } - } - - RPCDisplayFilter* BaseDetailDisplayHelper::GetRPCDisplayHelper() - { - return m_rpcDisplayFilter; - } - - DataSetDisplayHelper* BaseDetailDisplayHelper::FindDataSet(size_t dataSetIndex) - { - AZ_Error("BaseDetailDisplayHelper", m_dataSetDisplayFilter->HasDisplayHelperForKey(dataSetIndex), "Invalid DataSetIndex"); - return m_dataSetDisplayFilter->FindDisplayHelperFromKey(dataSetIndex); - } - - const DataSetDisplayHelper* BaseDetailDisplayHelper::FindDataSet(size_t dataSetIndex) const - { - return m_dataSetDisplayFilter->FindDisplayHelperFromKey(dataSetIndex); - } - - void BaseDetailDisplayHelper::SetupDataSet(size_t dataSetIndex, const char* dataSetName) - { - if (!m_dataSetDisplayFilter->HasDisplayHelperForKey(dataSetIndex)) - { - DataSetDisplayHelper* displayHelper = m_dataSetDisplayFilter->CreateDisplayHelperFromKey(dataSetIndex); - displayHelper->SetDisplayName(dataSetName); - } - } - - void BaseDetailDisplayHelper::AddDataSetUsage(const BandwidthUsage& bandwidthUsage) - { - m_bandwidthUsageAggregator.m_bytesSent += bandwidthUsage.m_usageAggregator.m_bytesSent; - m_bandwidthUsageAggregator.m_bytesReceived += bandwidthUsage.m_usageAggregator.m_bytesReceived; - - m_dataSetDisplayFilter->m_bandwidthUsageAggregator.m_bytesSent += bandwidthUsage.m_usageAggregator.m_bytesSent; - m_dataSetDisplayFilter->m_bandwidthUsageAggregator.m_bytesReceived += bandwidthUsage.m_usageAggregator.m_bytesReceived; - - DataSetDisplayHelper* dataSetDisplay = FindDataSet(bandwidthUsage.m_index); - - if (dataSetDisplay) - { - dataSetDisplay->m_bandwidthUsageAggregator.m_bytesSent += bandwidthUsage.m_usageAggregator.m_bytesSent; - dataSetDisplay->m_bandwidthUsageAggregator.m_bytesReceived += bandwidthUsage.m_usageAggregator.m_bytesReceived; - } - } - - DataSetDisplayFilter* BaseDetailDisplayHelper::GetDataSetDisplayHelper() - { - return m_dataSetDisplayFilter; - } - - - //////////////////////////////////// - // ReplicaChunkDetailDisplayHelper - //////////////////////////////////// - - ReplicaChunkDetailDisplayHelper::ReplicaChunkDetailDisplayHelper(const char* chunkTypeName, AZ::u32 chunkIndex) - : m_chunkTypeName(chunkTypeName) - , m_chunkIndex(chunkIndex) - { - } - - AZ::u32 ReplicaChunkDetailDisplayHelper::GetChunkIndex() const - { - return m_chunkIndex; - } - - const char* ReplicaChunkDetailDisplayHelper::GetChunkTypeName() const - { - return m_chunkTypeName.c_str(); - } - - const char* ReplicaChunkDetailDisplayHelper::GetDisplayName() const - { - return GetChunkTypeName(); - } - - /////////////////////////////// - // ReplicaDetailDisplayHelper - /////////////////////////////// - - ReplicaDetailDisplayHelper::ReplicaDetailDisplayHelper(const char* replicaName, AZ::u64 replicaId) - : m_replicaName(replicaName) - , m_replicaId(replicaId) - { - } - - AZ::u64 ReplicaDetailDisplayHelper::GetReplicaId() const - { - return m_replicaId; - } - - const char* ReplicaDetailDisplayHelper::GetReplicaName() const - { - return m_replicaName.c_str(); - } - - const char* ReplicaDetailDisplayHelper::GetDisplayName() const - { - return GetReplicaName(); - } - - ////////////////////////////////////// - // OverallReplicaDetailDisplayHelper - ////////////////////////////////////// - - OverallReplicaDetailDisplayHelper::OverallReplicaDetailDisplayHelper(const char* replicaName, AZ::u64 replicaId) - : m_replicaName(replicaName) - , m_replicaId(replicaId) - { - } - - OverallReplicaDetailDisplayHelper::~OverallReplicaDetailDisplayHelper() - { - DetachAllChildren(); - - for (auto& mapPair : m_replicaChunks) - { - delete mapPair.second; - } - } - - AZ::u64 OverallReplicaDetailDisplayHelper::GetReplicaId() const - { - return m_replicaId; - } - - const char* OverallReplicaDetailDisplayHelper::GetReplicaName() const - { - return m_replicaName.c_str(); - } - - const char* OverallReplicaDetailDisplayHelper::GetDisplayName() const - { - return GetReplicaName(); - } - - ReplicaChunkDetailDisplayHelper* OverallReplicaDetailDisplayHelper::CreateReplicaChunkDisplayHelper(const AZStd::string& chunkName, AZ::u32 chunkIndex) - { - ReplicaChunkDetailDisplayHelper* displayHelper = nullptr; - - auto chunkIter = m_replicaChunks.find(chunkIndex); - - AZ_Error("OverallReplicaDetailDisplayHelper", chunkIter == m_replicaChunks.end(), "Trying to create two replica chunks with the same chunk index for a given replica."); - - if (chunkIter == m_replicaChunks.end()) - { - displayHelper = aznew ReplicaChunkDetailDisplayHelper(chunkName.c_str(), chunkIndex); - m_replicaChunks.emplace(chunkIndex, displayHelper); - - AddChild(displayHelper); - } - - return displayHelper; - } - - ReplicaChunkDetailDisplayHelper* OverallReplicaDetailDisplayHelper::FindReplicaChunk(AZ::u32 chunkIndex) - { - ReplicaChunkDetailDisplayHelper* detailDisplayHelper = nullptr; - - auto chunkIter = m_replicaChunks.find(chunkIndex); - if (chunkIter != m_replicaChunks.end()) - { - detailDisplayHelper = chunkIter->second; - } - - return detailDisplayHelper; - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.h deleted file mode 100644 index 61407bd208..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.h +++ /dev/null @@ -1,512 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_REPLICADISPLAYHELPERS_H -#define DRILLER_REPLICA_REPLICADISPLAYHELPERS_H - -#include -#include -#include -#include - -#include -#include -#include - -#include -#include - -// QModelIndex -#include - -#include "Source/Driller/DrillerDataTypes.h" -#include "Source/Driller/Replica/ReplicaBandwidthChartData.h" - -namespace StripChart -{ - class DataStrip; -} - -namespace Driller -{ - QColor GetRandomDisplayColor(); - - // Combo TreeView/Graph Display - class BaseDisplayHelper; - - class BaseDisplayHelper - { - public: - AZ_CLASS_ALLOCATOR(BaseDisplayHelper, AZ::SystemAllocator, 0); - AZ_RTTI(BaseDisplayHelper, "{8F84783A-B924-4081-9F6E-51524071B7BB}"); - - BaseDisplayHelper(); - virtual ~BaseDisplayHelper(); - - void Reset(); - void ResetGraphConfiguration(); - void ResetBandwidthUsage(); - - virtual int AddChild(BaseDisplayHelper* baseDisplayHelper); - virtual void DetachChild(BaseDisplayHelper* baseDisplayHelper); - - void InspectSeries(size_t seriesId); - - virtual BaseDisplayHelper* FindChildByRow(int row); - virtual const BaseDisplayHelper* FindChildByRow(int row) const; - virtual size_t GetTreeRowCount() const; - - virtual int GetChildIndex(const BaseDisplayHelper* helper) const; - - virtual const char* GetDisplayName() const = 0; - - void SetIconEnabled(bool iconEnabled); - bool HasIcon() const; - const QIcon& GetIcon() const; - - const AZStd::vector< BaseDisplayHelper* >& GetChildren() const; - - const BaseDisplayHelper* GetParent() const; - - // Information needed for graphing - bool m_graphEnabled; - bool m_selected; - bool m_inspected; - - QColor m_color; - - BandwidthUsageAggregator m_bandwidthUsageAggregator; - AreaGraphPlotHelper m_areaGraphPlotHelper; - - GraphPlotHelper m_sentGraphPlot; - - protected: - - virtual void DetachAllChildren(); - - virtual void OnReset(); - virtual void OnResetGraphConfiguration(); - virtual void OnResetBandwidthUsage(); - - private: - - bool m_iconEnabled; - QIcon m_icon; - - BaseDisplayHelper* m_parent; - - AZStd::vector< BaseDisplayHelper* > m_children; - }; - - template - class KeyedDisplayHelper - : public BaseDisplayHelper - { - public: - KeyedDisplayHelper(Key key) - : m_key(key) - {} - - const Key& GetKey() const - { - return m_key; - } - - private: - Key m_key; - }; - - template - class FilteredDisplayHelper - : public BaseDisplayHelper - { - typedef AZStd::unordered_map< Key, int > KeyToIndexMapping; - public: - AZ_CLASS_ALLOCATOR(FilteredDisplayHelper, AZ::SystemAllocator, 0); - - FilteredDisplayHelper(const char* displayName) - : m_displayName(displayName) - { - } - - virtual ~FilteredDisplayHelper() - { - DetachAllChildren(); - - for (auto& mapPair : m_displayHelperMap) - { - delete mapPair.second; - } - } - - const char* GetDisplayName() const override - { - return m_displayName.c_str(); - } - - int AddChild(BaseDisplayHelper* baseDisplayHelper) override - { - AZ_Assert(false, "Unsupported behavior"); - (void)baseDisplayHelper; - return -1; - } - - int GetChildIndex(const BaseDisplayHelper* helper) const override - { - const KeyedDisplayHelper* keyedHelper = static_cast*>(helper); - - const Key& key = keyedHelper->GetKey(); - - int foundIndex = -1; - - for (size_t i = 0; i < m_displayOrdering.size(); ++i) - { - if (m_displayOrdering[i] == key) - { - foundIndex = static_cast(i); - break; - } - } - - return foundIndex; - } - - bool HasDisplayHelperForKey(const Key& key) const - { - return m_keyMapping.find(key) != m_keyMapping.end(); - } - - DisplayType* CreateDisplayHelperFromKey(const Key& key) - { - DisplayType* retVal = nullptr; - - typename AZStd::unordered_map< Key, DisplayType* >::iterator helperIter = m_displayHelperMap.find(key); - - if (helperIter == m_displayHelperMap.end()) - { - retVal = aznew DisplayType(key); - m_displayHelperMap[key] = retVal; - } - else - { - retVal = m_displayHelperMap[key]; - } - - typename KeyToIndexMapping::iterator indexIter = m_keyMapping.find(key); - - if (indexIter == m_keyMapping.end()) - { - if (retVal) - { - int index = BaseDisplayHelper::AddChild(retVal); - m_keyMapping[key] = index; - } - } - - if (m_activeDisplay.insert(key).second) - { - m_displayOrdering.push_back(key); - } - - return retVal; - } - - DisplayType* FindDisplayHelperFromKey(const Key& key) - { - DisplayType* retVal = nullptr; - - typename KeyToIndexMapping::iterator indexIter = m_keyMapping.find(key); - - if (indexIter != m_keyMapping.end()) - { - retVal = static_cast(BaseDisplayHelper::FindChildByRow(indexIter->second)); - } - - return retVal; - } - - const DisplayType* FindDisplayHelperFromKey(const Key& key) const - { - const DisplayType* retVal = nullptr; - - typename KeyToIndexMapping::const_iterator indexIter = m_keyMapping.find(key); - - if (indexIter != m_keyMapping.end()) - { - retVal = static_cast(BaseDisplayHelper::FindChildByRow(indexIter->second)); - } - - return retVal; - } - - BaseDisplayHelper* FindChildByRow(int row) override - { - DisplayType* retVal = nullptr; - - if (row >= 0 && row < m_displayOrdering.size()) - { - Key key = m_displayOrdering[row]; - retVal = FindDisplayHelperFromKey(key); - } - - return retVal; - } - - const DisplayType* FindChildByRow(int row) const override - { - const DisplayType* retVal = nullptr; - - if (row >= 0 && row < m_displayOrdering.size()) - { - Key key = m_displayOrdering[row]; - retVal = FindDisplayHelperFromKey(key); - } - - return retVal; - } - - size_t GetTreeRowCount() const override - { - return m_displayOrdering.size(); - } - - void ClearActiveDisplay() - { - DetachAllChildren(); - - m_activeDisplay.clear(); - m_keyMapping.clear(); - m_displayOrdering.clear(); - } - - protected: - void OnChildActivated(BaseDisplayHelper* helper, int index) - { - const KeyedDisplayHelper* keyedHelper = static_cast*>(helper); - const Key& key = keyedHelper->GetKey(); - - m_keyMapping[key] = index; - - if (m_activeDisplay.insert(key).second) - { - m_displayOrdering.push_back(key); - } - } - - void OnChildDeactivated(BaseDisplayHelper* helper) - { - const KeyedDisplayHelper* keyedHelper = static_cast*>(helper); - const Key& key = keyedHelper->GetKey(); - - m_displayOrdering.erase(m_displayOrdering.begin() + m_keyMapping[key]); - m_keyMapping.erase(key); - m_activeDisplay.erase(key); - } - - private: - - void OnReset() override - { - m_keyMapping.clear(); - m_activeDisplay.clear(); - m_displayOrdering.clear(); - } - - void OnResetGraphConfiguration() override - { - } - - AZStd::string m_displayName; - - KeyToIndexMapping m_keyMapping; - AZStd::unordered_set< Key > m_activeDisplay; - AZStd::vector< Key > m_displayOrdering; - - AZStd::unordered_map< Key, DisplayType* > m_displayHelperMap; - }; - - class DataSetDisplayHelper - : public KeyedDisplayHelper - { - public: - AZ_CLASS_ALLOCATOR(DataSetDisplayHelper, AZ::SystemAllocator, 0); - AZ_RTTI(DataSetDisplayHelper, "{74A47E69-1DF5-40E7-A471-BF84B62182A8}", BaseDisplayHelper); - - DataSetDisplayHelper(size_t dataSetIndex); - - void SetDisplayName(const char* displayName); - const char* GetDisplayName() const override; - - private: - - AZStd::string m_dataSetName; - }; - - class DataSetDisplayFilter - : public FilteredDisplayHelper - { - public: - AZ_CLASS_ALLOCATOR(DataSetDisplayFilter, AZ::SystemAllocator, 0); - AZ_RTTI(DataSetDisplayFilter, "{C0B802CD-5551-48C0-95C2-41607D42A2E1}", BaseDisplayHelper); - - DataSetDisplayFilter() - : FilteredDisplayHelper("DataSets") - { - } - }; - - class RPCDisplayHelper - : public KeyedDisplayHelper - { - private: - class RPCInvokationDisplayHelper - : public BaseDisplayHelper - { - public: - AZ_CLASS_ALLOCATOR(RPCInvokationDisplayHelper, AZ::SystemAllocator, 0); - - RPCInvokationDisplayHelper(const AZStd::string& name, int count); - - const char* GetDisplayName() const override; - - private: - - AZStd::string m_rpcName; - }; - - public: - AZ_CLASS_ALLOCATOR(RPCDisplayHelper, AZ::SystemAllocator, 0); - AZ_RTTI(RPCDisplayHelper, "{564003A2-7880-441A-AC51-5397730C2E31}", BaseDisplayHelper); - - RPCDisplayHelper(size_t rpcName); - - void AddInvokation(const BandwidthUsage& bandwidthUsage); - - void SetDisplayName(const char* displayName); - const char* GetDisplayName() const override; - - protected: - - void OnResetBandwidthUsage() override; - - private: - - AZStd::string m_rpcName; - }; - - class RPCDisplayFilter - : public FilteredDisplayHelper - { - public: - AZ_CLASS_ALLOCATOR(DataSetDisplayFilter, AZ::SystemAllocator, 0); - AZ_RTTI(RPCDisplayFilter, "{1AF8368E-C5AF-4936-85C5-BA67E62FF871}", BaseDisplayHelper); - - RPCDisplayFilter() - : FilteredDisplayHelper("RPCs") - { - } - }; - - class BaseDetailDisplayHelper - : public BaseDisplayHelper - { - public: - AZ_CLASS_ALLOCATOR(BaseDetailDisplayHelper, AZ::SystemAllocator, 0); - AZ_RTTI(BaseDetailDisplayHelper, "{22B3809C-20A5-407B-9302-7890CEF4821D}", BaseDisplayHelper); - - BaseDetailDisplayHelper(); - virtual ~BaseDetailDisplayHelper(); - - RPCDisplayHelper* FindRPC(size_t rpcIndex); - const RPCDisplayHelper* FindRPC(size_t rpcIndex) const; - void SetupRPC(size_t rpcIndex, const char* rpcName); - void AddRPCUsage(const BandwidthUsage& currentUsage); - - RPCDisplayFilter* GetRPCDisplayHelper(); - - DataSetDisplayHelper* FindDataSet(size_t dataSetIndex); - const DataSetDisplayHelper* FindDataSet(size_t dataSetIndex) const; - void SetupDataSet(size_t dataSetIndex, const char* dataSetName); - void AddDataSetUsage(const BandwidthUsage& currentUsage); - - DataSetDisplayFilter* GetDataSetDisplayHelper(); - - protected: - - RPCDisplayFilter* m_rpcDisplayFilter; - DataSetDisplayFilter* m_dataSetDisplayFilter; - }; - - class ReplicaChunkDetailDisplayHelper - : public BaseDetailDisplayHelper - { - public: - AZ_CLASS_ALLOCATOR(ReplicaChunkDetailDisplayHelper, AZ::SystemAllocator, 0); - AZ_RTTI(ReplicaChunkDetailDisplayHelper, "{9DBE2EFE-AA89-4527-A003-1EE08B9E3DB7}", BaseDetailDisplayHelper); - - ReplicaChunkDetailDisplayHelper(const char* chunkTypeName, AZ::u32 chunkIndex); - - AZ::u32 GetChunkIndex() const; - const char* GetChunkTypeName() const; - - const char* GetDisplayName() const override; - private: - - AZStd::string m_chunkTypeName; - int m_chunkIndex; - }; - - class ReplicaDetailDisplayHelper - : public BaseDetailDisplayHelper - { - public: - AZ_CLASS_ALLOCATOR(ReplicaDetailDisplayHelper, AZ::SystemAllocator, 0); - AZ_RTTI(ReplicaDetailDisplayHelper, "{9DBE2EFE-AA89-4527-A003-1EE08B9E3DB7}", BaseDetailDisplayHelper); - - ReplicaDetailDisplayHelper(const char* replicaName, AZ::u64 replicaId); - - AZ::u64 GetReplicaId() const; - const char* GetReplicaName() const; - - const char* GetDisplayName() const override; - - private: - - AZStd::string m_replicaName; - AZ::u64 m_replicaId; - }; - - class OverallReplicaDetailDisplayHelper - : public BaseDisplayHelper - { - public: - AZ_CLASS_ALLOCATOR(OverallReplicaDetailDisplayHelper, AZ::SystemAllocator, 0); - AZ_RTTI(OverallReplicaDetailDisplayHelper, "{1CE46BA7-DA92-4C4E-8294-F5E096D14622}", BaseDisplayHelper); - - OverallReplicaDetailDisplayHelper(const char* replicaName, AZ::u64 replicaId); - ~OverallReplicaDetailDisplayHelper(); - - AZ::u64 GetReplicaId() const; - const char* GetReplicaName() const; - - const char* GetDisplayName() const override; - - bool HasReplicaChunk(int chunkIndex); - ReplicaChunkDetailDisplayHelper* CreateReplicaChunkDisplayHelper(const AZStd::string& chunkName, AZ::u32 chunkIndex); - ReplicaChunkDetailDisplayHelper* FindReplicaChunk(AZ::u32 chunkIndex); - - private: - - AZStd::string m_replicaName; - AZ::u64 m_replicaId; - - AZStd::unordered_map m_replicaChunks; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.cpp deleted file mode 100644 index fcd4a3e237..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.cpp +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#include "Source/Driller/Replica/ReplicaDisplayTypes.h" - -namespace ReplicaDisplayTypes -{ - ///////////////// - // DisplayNames - ///////////////// - const char* DisplayNames::BUDT_SENT_NAME = "Sent"; - const char* DisplayNames::BUDT_RECEIVED_NAME = "Received"; - const char* DisplayNames::BUDT_COMBINED_NAME = "Combined"; -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.h deleted file mode 100644 index 1fdbc8651b..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#pragma once - -namespace ReplicaDisplayTypes -{ - enum BandwidthUsageDisplayType - { - BUDT_START = -1, - - BUDT_COMBINED, - BUDT_SENT, - BUDT_RECEIVED, - - BUDT_END - }; - - class DisplayNames - { - public: - static const char* BUDT_SENT_NAME; - static const char* BUDT_RECEIVED_NAME; - static const char* BUDT_COMBINED_NAME; - }; -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.cpp deleted file mode 100644 index aca8deb616..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.cpp +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "ReplicaDrillerConfigToolbar.hxx" -#include -#include - -namespace Driller -{ - ReplicaDrillerConfigToolbar::ReplicaDrillerConfigToolbar(QWidget* parent) - : QWidget(parent) - , m_gui(new Ui::ReplicaDrillerConfigToolbar) - { - m_gui->setupUi(this); - - m_gui->hideAll->setAutoDefault(false); - m_gui->hideSelected->setAutoDefault(false); - m_gui->showAll->setAutoDefault(false); - m_gui->showSelected->setAutoDefault(false); - m_gui->collapseAll->setAutoDefault(false); - m_gui->expandAll->setAutoDefault(false); - - QObject::connect(m_gui->hideAll, SIGNAL(clicked()), this, SIGNAL(hideAll())); - QObject::connect(m_gui->hideSelected, SIGNAL(clicked()), this, SIGNAL(hideSelected())); - QObject::connect(m_gui->showAll, SIGNAL(clicked()), this, SIGNAL(showAll())); - QObject::connect(m_gui->showSelected, SIGNAL(clicked()), this, SIGNAL(showSelected())); - QObject::connect(m_gui->collapseAll, SIGNAL(clicked()), this, SIGNAL(collapseAll())); - QObject::connect(m_gui->expandAll, SIGNAL(clicked()), this, SIGNAL(expandAll())); - } - - ReplicaDrillerConfigToolbar::~ReplicaDrillerConfigToolbar() - { - delete m_gui; - } - - void ReplicaDrillerConfigToolbar::enableTreeCommands(bool enabled) - { - m_gui->collapseAll->setVisible(enabled); - m_gui->expandAll->setVisible(enabled); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.hxx b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.hxx deleted file mode 100644 index 92501b1ebe..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.hxx +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_REPLICADRILLERCONFIGTOOLBAR_H -#define DRILLER_REPLICA_REPLICADRILLERCONFIGTOOLBAR_H - -#if !defined(Q_MOC_RUN) -#include -#include - -#pragma once - -#include -#endif - -namespace Ui -{ - class ReplicaDrillerConfigToolbar; -} - -namespace Driller -{ - class ReplicaDrillerConfigToolbar - : public QWidget - { - Q_OBJECT - - public: - AZ_CLASS_ALLOCATOR(ReplicaDrillerConfigToolbar, AZ::SystemAllocator,0); - - explicit ReplicaDrillerConfigToolbar(QWidget* parent = nullptr); - ~ReplicaDrillerConfigToolbar(); - - void enableTreeCommands(bool enabled); - - public: - signals: - void hideSelected(); - void showSelected(); - - void hideAll(); - void showAll(); - - void collapseAll(); - void expandAll(); - - private: - - Ui::ReplicaDrillerConfigToolbar* m_gui; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.ui b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.ui deleted file mode 100644 index 1ebeb59bd4..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.ui +++ /dev/null @@ -1,158 +0,0 @@ - - - ReplicaDrillerConfigToolbar - - - - 0 - 0 - 871 - 60 - - - - - 0 - 0 - - - - Form - - - - 2 - - - 2 - - - 2 - - - 2 - - - - - 0 - - - 8 - - - - - - 0 - 0 - - - - - 0 - 0 - - - - Hide Selected - - - - - - - - 0 - 0 - - - - Show Selected - - - - - - - - 0 - 0 - - - - - 0 - 0 - - - - Hide All - - - - - - - - 0 - 0 - - - - - 1 - 0 - - - - Show All - - - - - - - - 0 - 0 - - - - Collapse All - - - - - - - - 0 - 0 - - - - Expand Alll - - - - - - - - - Qt::Horizontal - - - - 40 - 0 - - - - - - - - - diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaOperationTelemetryEvent.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaOperationTelemetryEvent.h deleted file mode 100644 index 3eb78a8b10..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaOperationTelemetryEvent.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#ifndef DRILLER_REPLICA_REPLICAOPERATIONTELEMETRYEVENT_H -#define DRILLER_REPLICA_REPLICAOPERATIONTELEMETRYEVENT_H - -#include "Source/Telemetry/TelemetryEvent.h" - -namespace Driller -{ - class ReplicaOperationTelemetryEvent - : public Telemetry::TelemetryEvent - { - public: - ReplicaOperationTelemetryEvent() - : Telemetry::TelemetryEvent("ReplicaDataViewOperation") - { - } - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.cpp deleted file mode 100644 index 0321a64f62..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.cpp +++ /dev/null @@ -1,88 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "Source/Driller/Replica/ReplicaTreeViewModel.hxx" -#include - -namespace Driller -{ - ReplicaTreeViewModel::ReplicaTreeViewModel(QObject* parent) - : QAbstractItemModel(parent) - { - } - - ReplicaTreeViewModel::~ReplicaTreeViewModel() - { - } - - int ReplicaTreeViewModel::rowCount(const QModelIndex& parentIndex) const - { - int rowCount = 0; - - if (!parentIndex.isValid()) - { - rowCount = GetRootRowCount(); - } - else - { - const BaseDisplayHelper* displayHelper = static_cast(parentIndex.internalPointer()); - rowCount = static_cast(displayHelper->GetTreeRowCount()); - } - - return rowCount; - } - - QModelIndex ReplicaTreeViewModel::index(int row, int column, const QModelIndex& parent) const - { - if (!parent.isValid()) - { - const BaseDisplayHelper* baseDisplayHelper = FindDisplayHelperAtRoot(row); - - if (baseDisplayHelper) - { - return createIndex(row, column, (void*)(baseDisplayHelper)); - } - else - { - return QModelIndex(); - } - } - else - { - const BaseDisplayHelper* parentHelper = static_cast(parent.internalPointer()); - const BaseDisplayHelper* displayHelper = parentHelper->FindChildByRow(row); - - if (displayHelper) - { - return createIndex(row, column, (void*)(displayHelper)); - } - else - { - AZ_Assert(false, "Invalid Tree Structure"); - } - } - - return QModelIndex(); - } - - QModelIndex ReplicaTreeViewModel::parent(const QModelIndex& index) const - { - if (index.isValid()) - { - const BaseDisplayHelper* displayHelper = static_cast(index.internalPointer()); - const BaseDisplayHelper* parent = displayHelper->GetParent(); - - if (parent) - { - return createIndex(parent->GetChildIndex(displayHelper), 0, (void*)(parent)); - } - } - - return QModelIndex(); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.hxx b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.hxx deleted file mode 100644 index 743af15f53..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.hxx +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_REPLICATREEVIEWMODELS_H -#define DRILLER_REPLICA_REPLICATREEVIEWMODELS_H - -#if !defined(Q_MOC_RUN) -#include - -#include "Source/Driller/Replica/ReplicaDisplayHelpers.h" -#endif - -namespace Driller -{ - - class ReplicaTreeViewModel - : public QAbstractItemModel - { - Q_OBJECT - - protected: - ReplicaTreeViewModel(QObject* parent = nullptr); - - public: - AZ_CLASS_ALLOCATOR(ReplicaTreeViewModel,AZ::SystemAllocator,0); - - virtual ~ReplicaTreeViewModel(); - - int rowCount(const QModelIndex& parentIndex = QModelIndex()) const override; - QModelIndex index(int row, int column, const QModelIndex& parent) const; - QModelIndex parent(const QModelIndex& index) const; - - protected: - - virtual int GetRootRowCount() const = 0; - virtual const BaseDisplayHelper* FindDisplayHelperAtRoot(int row) const = 0; - }; - -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.cpp deleted file mode 100644 index 929fb85d2c..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.cpp +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "ReplicaUsageDataContainers.h" - -#include "Source/Driller/StripChart.hxx" -#include "ReplicaDataEvents.h" - -namespace Driller -{ - /////////////////////////////// - // ReplicaChunkBandwidthUsage - /////////////////////////////// - - ReplicaChunkBandwidthUsage::ReplicaChunkBandwidthUsage(const char* chunkTypeName, AZ::u32 chunkIndex) - : m_chunkIndex(chunkIndex) - , m_chunkTypeName(chunkTypeName) - { - } - - AZ::u32 ReplicaChunkBandwidthUsage::GetChunkIndex() const - { - return m_chunkIndex; - } - - const char* ReplicaChunkBandwidthUsage::GetChunkTypeName() const - { - return m_chunkTypeName.c_str(); - } - - ///////////////////////// - // ReplicaDataContainer - ///////////////////////// - - ReplicaDataContainer::ReplicaDataContainer(const char* replicaName, AZ::u64 replicaId, const QColor& displayColor) - : ReplicaBandwidthChartData(displayColor) - , m_replicaName(replicaName) - , m_replicaId(replicaId) - { - } - - const char* ReplicaDataContainer::GetReplicaName() const - { - return m_replicaName.c_str(); - } - - AZ::u64 ReplicaDataContainer::GetReplicaId() const - { - return m_replicaId; - } - - const char* ReplicaDataContainer::GetAxisName() const - { - return GetReplicaName(); - } - - BandwidthUsageContainer* ReplicaDataContainer::CreateBandwidthUsage(const ReplicaChunkEvent* chunkEvent) - { - return aznew ReplicaChunkBandwidthUsage(chunkEvent->GetChunkTypeName(), chunkEvent->GetReplicaChunkIndex()); - } - - AZ::u32 ReplicaDataContainer::GetKeyFromEvent(const ReplicaChunkEvent* chunkEvent) const - { - return chunkEvent->GetReplicaChunkIndex(); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.h deleted file mode 100644 index 46f653792b..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.h +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_REPLICA_USAGE_DATA_CONTAINER_H -#define DRILLER_REPLICA_USAGE_DATA_CONTAINER_H - -#include -#include -#include -#include -#include - -#include - -#include "ReplicaBandwidthChartData.h" - -namespace Driller -{ - class ReplicaDataAggregator; - class ReplicaDataView; - - class ReplicaChunkBandwidthUsage - : public BandwidthUsageContainer - { - public: - AZ_CLASS_ALLOCATOR(ReplicaChunkBandwidthUsage, AZ::SystemAllocator, 0); - - ReplicaChunkBandwidthUsage(const char* chunkTypeName, AZ::u32 chunkIndex); - - AZ::u32 GetChunkIndex() const; - const char* GetChunkTypeName() const; - - private: - AZStd::string m_chunkTypeName; - AZ::u32 m_chunkIndex; - }; - - class ReplicaDataContainer - : public ReplicaBandwidthChartData - { - public: - AZ_CLASS_ALLOCATOR(ReplicaDataContainer, AZ::SystemAllocator, 0); - - ReplicaDataContainer(const char* replicaName, AZ::u64 replicaId, const QColor& displayColor); - - const char* GetReplicaName() const; - AZ::u64 GetReplicaId() const; - - const char* GetAxisName() const override; - - protected: - BandwidthUsageContainer* CreateBandwidthUsage(const ReplicaChunkEvent* dataEvent) override; - AZ::u32 GetKeyFromEvent(const ReplicaChunkEvent* dataEvent) const override; - - private: - - AZStd::string m_replicaName; - AZ::u64 m_replicaId; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Replica/basedetailview.ui b/Code/Tools/Standalone/Source/Driller/Replica/basedetailview.ui deleted file mode 100644 index dbd5cc1912..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/basedetailview.ui +++ /dev/null @@ -1,504 +0,0 @@ - - - BaseDetailView - - - - 0 - 0 - 659 - 756 - - - - Form - - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - Qt::Vertical - - - 3 - - - false - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 2 - - - 2 - - - 2 - - - 3 - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 5 - - - 0 - - - 5 - - - - - - 0 - 0 - - - - - 15 - 50 - false - - - - TextLabel - - - Qt::AlignCenter - - - - - - - - - - - 0 - 0 - - - - - 0 - 100 - - - - - - - - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 2 - - - 3 - - - 2 - - - 2 - - - - - - 0 - 55 - - - - - 16777215 - 55 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 0 - 55 - - - - - 16777215 - 55 - - - - Display Mode - - - - 0 - - - 5 - - - 5 - - - 5 - - - 5 - - - - - - 0 - 0 - - - - - 120 - 0 - - - - - - - - - - - - 0 - 0 - - - - - 0 - 55 - - - - - 16777215 - 55 - - - - Usage Display - - - - 0 - - - 5 - - - 5 - - - 5 - - - 5 - - - - - - 0 - 0 - - - - - 100 - 0 - - - - - - - - - - - - 0 - 0 - - - - - 0 - 55 - - - - - 16777215 - 55 - - - - Graph Detail - - - - 0 - - - 5 - - - 5 - - - 5 - - - 5 - - - - - - 0 - 0 - - - - - 100 - 0 - - - - - - - - - - - - 0 - 0 - - - - - 255 - 50 - - - - - 16777215 - 55 - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - - 0 - 0 - - - - - 0 - 0 - - - - - 16777215 - 16777215 - - - - true - - - QAbstractItemView::ExtendedSelection - - - true - - - true - - - false - - - - - - - - - - - - AreaChart::AreaChart - QWidget -
Source/Driller/AreaChart.hxx
- 1 -
- - Driller::ReplicaDrillerConfigToolbar - QWidget -
Source/Driller/Replica/ReplicaDrillerConfigToolbar.hxx
- 1 -
-
- - -
diff --git a/Code/Tools/Standalone/Source/Driller/Replica/overallreplicadetailview.ui b/Code/Tools/Standalone/Source/Driller/Replica/overallreplicadetailview.ui deleted file mode 100644 index 5368dfe2a2..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/overallreplicadetailview.ui +++ /dev/null @@ -1,718 +0,0 @@ - - - OverallReplicaDetailView - - - - 0 - 0 - 667 - 708 - - - - Form - - - - - - - 22 - - - - Overall Replica Statistics - - - Qt::AlignCenter - - - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - Start Frame - - - - - - - - 0 - 0 - - - - - 60 - 0 - - - - - 60 - 16777215 - - - - 99 - - - - - - - End Frame - - - - - - - - 0 - 0 - - - - - 60 - 0 - - - - - 60 - 16777215 - - - - 0 - - - 99 - - - 0 - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - FPS - - - - - - - 60 - - - - - - - - - - Qt::Horizontal - - - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 5 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - - 90 - 0 - - - - - 16777215 - 16777215 - - - - Total Bytes Sent - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 0 - 0 - - - - - 80 - 16777215 - - - - true - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 20 - 20 - - - - - - - - - 0 - 0 - - - - - 125 - 0 - - - - Avg Bytes Sent/Frame - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 0 - 0 - - - - - 0 - 0 - - - - - 80 - 16777215 - - - - true - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 5 - 20 - - - - - - - - - 0 - 0 - - - - - 125 - 0 - - - - Avg Bytes Sent/Second - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 0 - 0 - - - - - 0 - 0 - - - - - 80 - 16777215 - - - - true - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 5 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - - 90 - 0 - - - - - 16777215 - 16777215 - - - - Total Bytes Recv'd - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 0 - 0 - - - - - 80 - 16777215 - - - - true - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 20 - 20 - - - - - - - - - 0 - 0 - - - - - 125 - 0 - - - - Avg Bytes Recv'd/Frame - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 0 - 0 - - - - - 0 - 0 - - - - - 80 - 16777215 - - - - true - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 5 - 20 - - - - - - - - - 0 - 0 - - - - - 125 - 0 - - - - Avg Bytes Recv'd/Second - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 0 - 0 - - - - - 0 - 0 - - - - - 80 - 16777215 - - - - true - - - - - - - Qt::Horizontal - - - - 153 - 20 - - - - - - - - - - - - - - - 0 - 0 - - - - Replica Chunk Type - - - - 4 - - - 5 - - - 4 - - - 4 - - - - - - 0 - 250 - - - - true - - - QAbstractItemView::SingleSelection - - - QAbstractItemView::SelectRows - - - true - - - true - - - false - - - - - - - - - - - 0 - 0 - - - - Replica - - - - 4 - - - 5 - - - 4 - - - 4 - - - - - - 0 - 250 - - - - true - - - true - - - true - - - false - - - - - - - - - - - diff --git a/Code/Tools/Standalone/Source/Driller/Replica/replicadataview.ui b/Code/Tools/Standalone/Source/Driller/Replica/replicadataview.ui deleted file mode 100644 index 3bc5729b7f..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Replica/replicadataview.ui +++ /dev/null @@ -1,558 +0,0 @@ - - - ReplicaDataView - - - - 0 - 0 - 766 - 752 - - - - - 0 - 0 - - - - Replica Data View - - - - - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - Qt::Vertical - - - true - - - 3 - - - false - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 0 - - - 0 - - - 0 - - - 5 - - - - - - 0 - 0 - - - - - 0 - 100 - - - - - - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 5 - - - 5 - - - 5 - - - 5 - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 55 - - - - - 16777215 - 55 - - - - Qt::NoFocus - - - Show total bandwidth usage statistics for the capture - - - false - - - Overall Statistics - - - - - - - - 0 - 0 - - - - - 0 - 55 - - - - - 16777215 - 55 - - - - Top Level Type - - - - 0 - - - 5 - - - 5 - - - 5 - - - 5 - - - - - - 0 - 0 - - - - - 95 - 0 - - - - false - - - - - - - - - - - 0 - 0 - - - - - 0 - 50 - - - - - 16777215 - 50 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 0 - - - 0 - - - 13 - - - 0 - - - 0 - - - - - - - - - 0 - 0 - - - - - 0 - 55 - - - - - 16777215 - 55 - - - - Usage Graph Type - - - - 0 - - - 5 - - - 5 - - - 5 - - - 5 - - - - - - 0 - 0 - - - - - 95 - 0 - - - - false - - - - - - - - - - - 0 - 0 - - - - - 0 - 55 - - - - - 16777215 - 55 - - - - Table Filter - - - - 0 - - - 5 - - - 5 - - - 5 - - - 5 - - - - - - 0 - 0 - - - - - 95 - 0 - - - - - - - - - - - - 0 - 0 - - - - - 0 - 55 - - - - - 16777215 - 55 - - - - Display Range - - - - 0 - - - 5 - - - 5 - - - 5 - - - 5 - - - - - - 0 - 0 - - - - - 95 - 0 - - - - 0 - - - 99999 - - - - - - - - - - - 0 - 0 - - - - - 175 - 0 - - - - - 16777215 - 55 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Expanding - - - - 0 - 20 - - - - - - - - - - - 0 - 0 - - - - - 0 - 0 - - - - - 16777215 - 16777215 - - - - true - - - - - - - - - - - - AreaChart::AreaChart - QWidget -
Source/Driller/AreaChart.hxx
- 1 -
- - Driller::ReplicaDrillerConfigToolbar - QWidget -
Source/Driller/Replica/ReplicaDrillerConfigToolbar.hxx
- 1 -
-
- - - - -
diff --git a/Code/Tools/Standalone/Source/Driller/StripChart.cpp b/Code/Tools/Standalone/Source/Driller/StripChart.cpp deleted file mode 100644 index 56bc15af39..0000000000 --- a/Code/Tools/Standalone/Source/Driller/StripChart.cpp +++ /dev/null @@ -1,991 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include - -#include "StripChart.hxx" -#include -#include "DrillerMainWindowMessages.h" - -#include "ChartNumberFormats.h" -#include - -#include -#include -#include -#include - -namespace StripChart -{ - int DataStrip::s_invalidChannelId = -1; - - ////////////////////////////////////////////////////////////////////////// - DataStrip::DataStrip(QWidget* parent, Qt::WindowFlags flags) - : QWidget(parent, flags) - , m_Axis(nullptr) - , m_DependentAxis(nullptr) - , m_InsetL(56) - , m_InsetR(16) - , m_InsetT(16) - , m_InsetB(24) - , m_IsDragging(false) - , m_InBatchMode(false) - , m_ZoomLimit(15) - , m_MarkerPosition(0) - , m_MarkerColor(Qt::white) - , m_ptrFormatter(nullptr) - , m_MouseWasDragged(false) - , m_bLeftDown(false) - , m_isDataDirty(true) - { - this->setStyleSheet(QString("QToolTip { border: 1px solid white; padding: 1px; background: black; color: white; }")); - setMouseTracking(true); - } - - DataStrip::~DataStrip() - { - delete m_Axis; - delete m_DependentAxis; - } - - void DataStrip::SetAxisTextFormatter(Charts::QAbstractAxisFormatter* target) - { - if (m_ptrFormatter) - { - disconnect(m_ptrFormatter, SIGNAL(destroyed(QObject*)), this, SLOT(OnDestroyAxisFormatter(QObject*))); - } - - m_ptrFormatter = target; - if (m_ptrFormatter) - { - connect(m_ptrFormatter, SIGNAL(destroyed(QObject*)), this, SLOT(OnDestroyAxisFormatter(QObject*))); - } - } - - void DataStrip::OnDestroyAxisFormatter(QObject* pDestroyed) - { - if ((QObject*)pDestroyed == (QObject*)m_ptrFormatter) - { - m_ptrFormatter = nullptr; // signals will disconnect automatically. - } - } - - void DataStrip::Reset() - { - delete m_Axis; - m_Axis = nullptr; - - delete m_DependentAxis; - m_DependentAxis = nullptr; - - m_Channels.clear(); - } - - void DataStrip::SetDataDirty() - { - m_isDataDirty = true; - update(); - } - - void DataStrip::SetZoomLimit(float limit) - { - m_ZoomLimit = limit; - } - - int DataStrip::AddChannel(QString name) - { - int id = (int)m_Channels.size(); - m_Channels.push_back(); - m_Channels[id].SetName(name); - m_Channels[id].SetID(id); - m_Channels[id].m_Data.reserve(65536); - - return id; - } - - void DataStrip::SetChannelColor(int channelID, QColor color) - { - if (IsValidChannelId(channelID)) - { - m_Channels[channelID].SetColor(color); - } - } - void DataStrip::SetChannelStyle(int channelID, Channel::ChannelStyle style) - { - if (IsValidChannelId(channelID)) - { - m_Channels[channelID].SetStyle(style); - } - } - - void DataStrip::SetChannelHighlight(int channelID, bool highlight) - { - if (IsValidChannelId(channelID)) - { - m_Channels[channelID].SetHighlight(highlight); - update(); - } - } - - void DataStrip::SetChannelSampleHighlight(int channelID, AZ::u64 sampleID, bool highlight) - { - if (IsValidChannelId(channelID)) - { - m_Channels[channelID].SetHighlightedSample(highlight, sampleID); - update(); - } - } - - void DataStrip::SetViewFull() - { - m_Axis->SetViewFull(); - m_DependentAxis->SetViewFull(); - update(); - } - - void DataStrip::SetLockRight(bool tf) - { - if (m_Axis) - { - m_Axis->SetLockedRight(tf); - } - update(); - } - void DataStrip::SetMarkerColor(QColor qc) - { - m_MarkerColor = qc; - update(); - } - void DataStrip::SetMarkerPosition(float qposn) - { - m_MarkerPosition = qposn; - update(); - } - - void DataStrip::AddData(int channelID, AZ::u64 sampleID, float h, float v) - { - AZ_Error("Standalone Tools", !m_InBatchMode, "AddData should not called during a BatchData session."); - - if (IsValidChannelId(channelID)) - { - m_Channels[channelID].m_Data.push_back(Channel::Sample(sampleID, h, v)); - - m_Axis->AddAxisRange(h); - if (m_DependentAxis) - { - m_DependentAxis->AddAxisRange(v); - } - update(); - } - } - - void DataStrip::StartBatchDataAdd() - { - m_InBatchMode = true; - } - - void DataStrip::AddBatchedData(int channelId, AZ::u64 sampleId, float h, float v) - { - AZ_Error("StandaloneTools", m_InBatchMode, "AddBatchedData should only be called during a BatchData session."); - - if (IsValidChannelId(channelId)) - { - m_Channels[channelId].m_Data.push_back(Channel::Sample(sampleId, h, v)); - } - } - - void DataStrip::EndBatchDataAdd() - { - if (m_InBatchMode) - { - m_InBatchMode = false; - update(); - } - } - - void DataStrip::ClearData(int channelID) - { - if (IsValidChannelId(channelID)) - { - m_Channels[channelID].m_Data.clear(); - } - } - - void DataStrip::ClearAxisRange() - { - m_Axis->Clear(); - if (m_DependentAxis) - { - m_DependentAxis->Clear(); - } - } - - bool DataStrip::AddAxis(QString label, float minimum, float maximum, bool lockedZoom, bool lockedRange) - { - Charts::Axis* a = nullptr; - - if (!m_Axis) - { - a = m_Axis = aznew Charts::Axis(); - } - else if (!m_DependentAxis) - { - a = m_DependentAxis = aznew Charts::Axis(); - } - else - { - AZ_Assert(false, "ERROR: Creating 3 axis's for a single graph."); - } - - if (a) - { - a->SetLabel(label); - a->SetLockedZoom(lockedZoom); - a->SetAxisRange(minimum, maximum); - a->SetWindowMin(minimum); - a->SetWindowMax(maximum); - a->SetLockedRange(lockedRange); - update(); - } - - return a != nullptr; - } - - bool DataStrip::GetAxisRange(Charts::AxisType whichAxis, float& minValue, float& maxValue) - { - bool foundAxis = false; - - Charts::Axis* axis = nullptr; - switch (whichAxis) - { - case Charts::AxisType::Horizontal: - axis = m_Axis; - break; - case Charts::AxisType::Vertical: - axis = m_DependentAxis; - break; - default: - AZ_Assert(false, "ERROR: Invalid Axis(%i) given to GetAxisRange", whichAxis); - break; - } - - - - if (axis) - { - foundAxis = true; - minValue = axis->GetRangeMin(); - maxValue = axis->GetRangeMax(); - } - - return foundAxis; - } - - bool DataStrip::GetWindowRange(Charts::AxisType whichAxis, float& minValue, float& maxValue) - { - bool foundAxis = false; - - Charts::Axis* axis = nullptr; - switch (whichAxis) - { - - case Charts::AxisType::Horizontal: - axis = m_Axis; - break; - case Charts::AxisType::Vertical: - axis = m_DependentAxis; - break; - default: - AZ_Assert(false, "ERROR: Invalid Axis(%i) given to GetWindowRange", whichAxis); - break; - } - - if (axis) - { - foundAxis = true; - minValue = axis->GetWindowMin(); - maxValue = axis->GetWindowMax(); - } - - return foundAxis; - } - - void DataStrip::SetWindowRange(Charts::AxisType whichAxis, float minValue, float maxValue) - { - Charts::Axis* axis = nullptr; - switch (whichAxis) - { - case Charts::AxisType::Horizontal: - axis = m_Axis; - break; - case Charts::AxisType::Vertical: - axis = m_DependentAxis; - break; - default: - AZ_Assert(false, "ERROR: Invalid Axis(%i) given to SetWindowRange", whichAxis); - break; - } - - if (axis) - { - axis->SetAxisRange(minValue, maxValue); - } - } - - void DataStrip::AddWindowRange(Charts::AxisType whichAxis, float minValue, float maxValue) - { - Charts::Axis* axis = nullptr; - switch (whichAxis) - { - case Charts::AxisType::Horizontal: - axis = m_Axis; - break; - case Charts::AxisType::Vertical: - axis = m_DependentAxis; - break; - default: - AZ_Assert(false, "ERROR: Invalid Axis(%i) given to SetWindowRange", whichAxis); - break; - } - - if (axis) - { - axis->AddAxisRange(minValue); - axis->AddAxisRange(maxValue); - } - } - - void DataStrip::Drag(Charts::Axis* axis, int deltaX, int deltaY) - { - if (!axis->GetLockedRange() && !axis->GetLockedRight()) - { - if (axis->GetWindowMin() + deltaX > axis->GetRangeMin() && axis->GetWindowMax() + deltaX < axis->GetRangeMax()) - { - axis->SetAutoWindow(false); - axis->UpdateWindowRange((float)deltaX); - } - } - - Drag(m_DependentAxis, deltaY); - } - - void DataStrip::Drag(Charts::Axis* axis, int deltaY) - { - if (!axis->GetLockedRange() && !axis->GetLockedRight()) - { - axis->SetAutoWindow(false); - axis->UpdateWindowRange((float)deltaY); - } - } - - QPoint DataStrip::TransformHoriz(Charts::Axis* axis, float h) - { - QPoint pt(0, 0); - - if (axis) - { - //if ((v >= axis->m_WindowMin) && (v <= axis->m_WindowMax)) - { - float fullRange = fabs(axis->GetWindowRange()); - - float ratio = float(h - axis->GetWindowMin()) / fullRange; - pt.setX(m_Inset.left() + int((float(m_Inset.width()) * ratio))); - } - } - - return pt; - } - - QPoint DataStrip::TransformVert(Charts::Axis* axis, float v) - { - QPoint pt(0, 0); - - if (axis) - { - //if ((v >= axis->m_WindowMin) && (v <= axis->m_WindowMax)) - { - float fullRange = fabs(axis->GetWindowRange()); - - float ratio = float(v - axis->GetWindowMin()) / fullRange; - pt.setY(m_Inset.bottom() - int((float(m_Inset.height()) * ratio))); - } - } - - return pt; - } - - TransformResult DataStrip::Transform(Charts::Axis* axis, float h, float v, QPoint& outPt) - { - TransformResult tr = INVALID_RANGE; - QPoint pt(0, 0); - - if (axis) - { - if (h < axis->GetWindowMin()) - { - tr = OUTSIDE_LEFT; - pt.setX(m_Inset.left()); - } - else if (h > axis->GetWindowMax()) - { - tr = OUTSIDE_RIGHT; - pt.setX(m_Inset.right()); - } - else - { - tr = INSIDE_RANGE; - - if (axis->GetWindowMax() != axis->GetWindowMin()) - { - float fullRange = fabs(axis->GetWindowMax() - axis->GetWindowMin()); - float ratio = float(h - axis->GetWindowMin()) / fullRange; - pt.setX(m_Inset.left() + int((float(m_Inset.width()) * ratio))); - pt += TransformVert(m_DependentAxis, v); - } - else - { - pt.setX(m_Inset.left() + m_Inset.width() / 2); - } - } - } - - outPt = pt; - return tr; - } - - void DataStrip::wheelEvent(QWheelEvent* event) - { - int numDegrees = event->angleDelta().y() / 8; - int numSteps = numDegrees / 15; - // +step := zoom IN - // -step := zoom OUT - QPoint zoomPt = event->position().toPoint() - m_Inset.topLeft(); - - float zoomRatioX = (float)zoomPt.x() / (float)m_Inset.width(); - float zoomRatioY = (1.0f - ((float)zoomPt.y() / (float)m_Inset.height())); // because up is higher - - // give it some grace area. This makes it so if your mouse is "close" to the edge, its basically at the edge. - if (zoomRatioX < 0.1f) - { - zoomRatioX = 0.0f; - } - - if (zoomRatioX > 0.9f) - { - zoomRatioX = 1.0f; - } - - if (zoomRatioY < 0.1f) - { - zoomRatioY = 0.0f; - } - - if (zoomRatioY > 0.9f) - { - zoomRatioY = 1.0f; - } - - // the zoom limit is the smallest possible range you'd like to represent. - - m_Axis->Zoom(zoomRatioX, (float)numSteps, m_ZoomLimit); - m_DependentAxis->Zoom(zoomRatioY, (float)numSteps, 1.0f); - - update(); - - event->accept(); - } - void DataStrip::mouseMoveEvent(QMouseEvent* event) - { - if (m_IsDragging) - { - m_MouseWasDragged = true; - - float pixelWidth = (float)m_Inset.width(); - float pixelHeight = (float)m_Inset.height(); - float domainWidth = m_Axis->GetWindowRange(); - float domainHeight = m_DependentAxis->GetWindowRange(); - float domainPerPixelX = domainWidth / pixelWidth; - float domainPerPixelY = domainHeight / pixelHeight; - - QPoint deltaPoint = event->pos() - m_DragTracker; - - float deltaInDomainX = -domainPerPixelX * (float)(deltaPoint.x()); - float deltaInDomainY = domainPerPixelY * (float)(deltaPoint.y()); - - m_Axis->Drag(deltaInDomainX); - m_DependentAxis->Drag(deltaInDomainY); - - m_DragTracker = event->pos(); - update(); - } - else if (m_bLeftDown) - { - float fullRange = fabs(m_Axis->GetWindowMax() - m_Axis->GetWindowMin()); - float ratio = (float)(event->pos().x() - m_InsetL) / (float)(width() - m_InsetL - m_InsetR); - float localValue = (fullRange * ratio) + m_Axis->GetWindowMin(); - emit onMouseLeftDragDomainValue(localValue); - } - else - { - // mouse move with no buttons -- tooltip event - bool hitsomething = false; - HitArea closestHitArea; - int minimumDistance = 10; - - for (auto iter = m_hitAreas.begin(); iter != m_hitAreas.end(); ++iter) - { - QPoint hitboxCenter = iter->m_hitBoxCenter; - - int distance = (hitboxCenter - event->pos()).manhattanLength(); - if (distance < minimumDistance) - { - closestHitArea = *iter; - hitsomething = true; - minimumDistance = distance; - } - } - - if (hitsomething) - { - emit onMouseOverDataPoint(closestHitArea.m_ptrChannel->m_channelID, closestHitArea.m_sampleID, closestHitArea.m_primaryAxisValue, closestHitArea.m_dependentAxisValue); - } - else - { - // transform the point into the window range: - QPoint localPt = event->pos() - m_Inset.topLeft(); - localPt -= m_Inset.topLeft(); - float ratioX = (float)localPt.x() / (float)m_Inset.width(); - float ratioY = (1.0f - ((float)localPt.y() / (float)m_Inset.height())); - emit onMouseOverNothing((ratioX * m_Axis->GetWindowRange()) + m_Axis->GetWindowMin(), (ratioY * m_DependentAxis->GetWindowRange()) + m_DependentAxis->GetWindowMin()); - } - } - } - void DataStrip::mousePressEvent(QMouseEvent* event) - { - if (event->button() == Qt::RightButton) - { - m_MouseWasDragged = false; - m_IsDragging = true; - m_DragTracker = event->pos(); - update(); - } - else if (event->button() == Qt::LeftButton) - { - m_bLeftDown = true; - - float fullRange = fabs(m_Axis->GetWindowMax() - m_Axis->GetWindowMin()); - float ratio = (float)(event->pos().x() - m_InsetL) / (float)(width() - m_InsetL - m_InsetR); - float localValue = (fullRange * ratio) + m_Axis->GetWindowMin(); - emit onMouseLeftDownDomainValue(localValue); - } - - event->accept(); - } - void DataStrip::mouseReleaseEvent(QMouseEvent* event) - { - if (event->button() == Qt::RightButton) - { - m_IsDragging = false; - } - else if (event->button() == Qt::LeftButton) - { - if (m_bLeftDown) - { - m_bLeftDown = false; - float fullRange = fabs(m_Axis->GetWindowMax() - m_Axis->GetWindowMin()); - float ratio = (float)(event->pos().x() - m_InsetL) / (float)(width() - m_InsetL - m_InsetR); - float localValue = (fullRange * ratio) + m_Axis->GetWindowMin(); - emit onMouseLeftUpDomainValue(localValue); - } - } - - update(); - event->accept(); - } - void DataStrip::resizeEvent(QResizeEvent* event) - { - RecalculateInset(); - event->ignore(); - } - - void DataStrip::RecalculateInset() - { - m_Inset = QRect(m_InsetL, m_InsetT, rect().width() - m_InsetL - m_InsetR, rect().height() - m_InsetT - m_InsetB); - } - - void DataStrip::AttachDataSourceWidget(QWidget* widget) - { - connect(this, SIGNAL(ProcureData(StripChart::DataStrip*)), widget, SLOT(ProvideData(StripChart::DataStrip*))); - } - - void DataStrip::paintEvent(QPaintEvent* event) - { - (void)event; - - // - // pull data from owner - // e.g. in the profiler case the ChartTimeHistory() with cached parameters should end up getting called - // ChartTimeHistory( m_cachedChart, m_cachedFrame, m_cachedFar, m_cachedColumn ); - // - if (m_isDataDirty) - { - emit ProcureData(this); - m_isDataDirty = false; - } - - QPen pen; - pen.setWidth(1); - QBrush brush; - brush.setStyle(Qt::SolidPattern); - pen.setBrush(brush); - - QPainter p(this); - p.setPen(pen); - - QFont currentFont = p.font(); - - p.fillRect(rect(), QColor(32, 32, 32, 255)); - p.fillRect(m_Inset, Qt::black); - - brush.setColor(QColor(255, 255, 0, 255)); - pen.setColor(QColor(0, 255, 255, 255)); - p.setPen(pen); - - m_hitAreas.clear(); - // HORIZ - if (m_Axis) - { - m_Axis->PaintAxis(Charts::AxisType::Horizontal, &p, rect(), m_Inset, m_ptrFormatter); - - // VERT - if (m_DependentAxis) - { - m_DependentAxis->PaintAxis(Charts::AxisType::Vertical, &p, rect(), m_Inset, m_ptrFormatter); - } - - // +-1 allows data at the outer envelope to render - p.setClipRect(m_InsetL, m_InsetT - 1, rect().width() - m_InsetR - m_InsetL, rect().height() - m_InsetB - m_InsetT + 1); - - for (Channels::iterator chiter = m_Channels.begin(); chiter != m_Channels.end(); ++chiter) - { - Channel& cptr = *chiter; - - pen.setStyle(Qt::SolidLine); - brush.setColor(chiter->m_Color); - pen.setColor(chiter->m_Color); - if (chiter->m_highlighted) - { - pen.setWidth(3); - } - else - { - pen.setWidth(1); - } - p.setPen(pen); - - switch (chiter->m_Style) - { - case Channel::STYLE_POINT: - { - auto datiter = cptr.m_Data.begin(); - while (datiter != cptr.m_Data.end()) - { - QPoint pt; - if (Transform(m_Axis, datiter->m_domainValue, datiter->m_dependentValue, pt) == INSIDE_RANGE) - { - if ((chiter->m_highlightSample) && (chiter->m_highlightedSampleID == datiter->m_sampleID)) - { - // if the channel itself wasn't highlighte we need to set the pen - if (!chiter->m_highlighted) - { - pen.setWidth(3); - p.setPen(pen); - } - - p.drawEllipse(pt, 5, 5); - - if (!chiter->m_highlighted) - { - // if the channel itself wasn't highlighted we need to restore the pen - p.setPen(pen); - pen.setWidth(1); - } - } - else - { - p.drawEllipse(pt, 3, 3); - } - - m_hitAreas.push_back(HitArea(datiter->m_domainValue, datiter->m_dependentValue, pt, &cptr, datiter->m_sampleID)); - } - ++datiter; - } - } - break; - case Channel::STYLE_PLUSMINUS: - { - auto datiter = cptr.m_Data.begin(); - while (datiter != cptr.m_Data.end()) - { - QPoint pt; - if (Transform(m_Axis, datiter->m_domainValue, datiter->m_dependentValue, pt) == INSIDE_RANGE) - { - m_hitAreas.push_back(HitArea(datiter->m_domainValue, datiter->m_dependentValue, pt, &cptr, datiter->m_sampleID)); - - int plussize = 3; - - if ((chiter->m_highlightSample) && (chiter->m_highlightedSampleID == datiter->m_sampleID)) - { - if (!chiter->m_highlighted) - { - // if the channel itself wasn't highlighte we need to set the pen - pen.setWidth(3); - p.setPen(pen); - } - plussize = 5; - } - - p.drawLine(pt.x() - plussize, pt.y(), pt.x() + plussize, pt.y()); - if (datiter->m_dependentValue > 0.0f) - { - p.drawLine(pt.x(), pt.y() - plussize, pt.x(), pt.y() + plussize); - } - - if ((chiter->m_highlightSample) && (chiter->m_highlightedSampleID == datiter->m_sampleID)) - { - if (!chiter->m_highlighted) - { - // restore pen - pen.setWidth(1); - p.setPen(pen); - } - } - } - ++datiter; - } - } - break; - case Channel::STYLE_CONNECTED_LINE: - { - auto datiter = cptr.m_Data.begin(); - auto onebehind = cptr.m_Data.begin(); - if (datiter != cptr.m_Data.end()) - { - ++datiter; - } - while (datiter != cptr.m_Data.end()) - { - QPoint pt1; - TransformResult tr1 = Transform(m_Axis, onebehind->m_domainValue, onebehind->m_dependentValue, pt1); - QPoint pt2; - TransformResult tr2 = Transform(m_Axis, datiter->m_domainValue, datiter->m_dependentValue, pt2); - - if (tr1 == INSIDE_RANGE && tr2 == INSIDE_RANGE) - { - m_hitAreas.push_back(HitArea(datiter->m_domainValue, datiter->m_dependentValue, pt2, &cptr, datiter->m_sampleID)); - - - if ((chiter->m_highlightSample) && (chiter->m_highlightedSampleID == datiter->m_sampleID)) - { - if (!chiter->m_highlighted) - { - // if the channel itself wasn't highlighted we need to set the pen - pen.setWidth(3); - p.setPen(pen); - } - - p.drawLine(pt1, pt2); - p.drawEllipse(pt2, 3, 3); - if (!chiter->m_highlighted) - { - // restore the pen - pen.setWidth(1); - p.setPen(pen); - } - } - else - { - // not highlighted.. - p.drawLine(pt1, pt2); // just draw a line - } - } - ++onebehind; - ++datiter; - } - } - break; - } - } - - pen.setStyle(Qt::SolidLine); - brush.setStyle(Qt::Dense2Pattern); - brush.setColor(m_MarkerColor); - pen.setColor(m_MarkerColor); - p.setPen(pen); - QPoint markerPt; - if (Transform(m_Axis, m_MarkerPosition, 0.0f, markerPt) == INSIDE_RANGE) - { - p.drawLine(markerPt.x(), 0, markerPt.x(), m_Inset.y() + m_Inset.height()); - } - } - } - - void DataStrip::RenderHorizCallouts(QPainter* painter) - { - float textSpaceRequired = (float)painter->fontMetrics().horizontalAdvance("9,999,999.99"); - int fontH = painter->fontMetrics().height(); - - AZStd::vector divisions; - divisions.reserve(10); - float divisionSize = m_Axis->ComputeAxisDivisions((float)m_Inset.width(), divisions, textSpaceRequired, textSpaceRequired); - - QPen dottedPen; - dottedPen.setStyle(Qt::DotLine); - dottedPen.setColor(QColor(64, 64, 64, 255)); - dottedPen.setWidth(1); - QBrush solidBrush; - QPen solidPen; - solidPen.setStyle(Qt::SolidLine); - solidPen.setColor(QColor(0, 255, 255, 255)); - solidPen.setWidth(1); - - for (auto it = divisions.begin(); it != divisions.end(); ++it) - { - float currentUnit = *it; - QPoint leftEdge = TransformHoriz(m_Axis, currentUnit); - - QPoint leftline((int)leftEdge.x(), m_Inset.bottom()); - QPoint leftend = leftline - QPoint(0, m_Inset.height()); - painter->setPen(dottedPen); - painter->drawLine(leftline, leftend); - - QString text; - if (m_ptrFormatter) - { - text = m_ptrFormatter->convertAxisValueToText(Charts::AxisType::Horizontal, currentUnit, divisions.front(), divisions.back(), divisionSize); - } - else - { - text = QString("%1").arg((AZ::s64)currentUnit); - } - - int textW = painter->fontMetrics().horizontalAdvance(text); - - painter->setPen(solidPen); - painter->drawText((int)leftEdge.x() - textW / 2, m_Inset.bottom() + fontH, text); - } - } - - void DataStrip::RenderVertCallouts(QPainter* painter) - { - if (!m_DependentAxis) - { - return; - } - - int fontH = painter->fontMetrics().height(); - - - QPen dottedPen; - dottedPen.setStyle(Qt::DotLine); - dottedPen.setColor(QColor(64, 64, 64, 255)); - dottedPen.setWidth(1); - QBrush solidBrush; - QPen solidPen; - solidPen.setStyle(Qt::SolidLine); - solidPen.setColor(QColor(0, 255, 255, 255)); - solidPen.setWidth(1); - AZStd::vector divisions; - divisions.reserve(10); - float divisionSize = m_DependentAxis->ComputeAxisDivisions((float)m_Inset.height(), divisions, fontH * 2.0f, fontH * 2.0f); - - for (auto it = divisions.begin(); it != divisions.end(); ++it) - { - float currentUnit = *it; - - // where is that in the inset? - QPoint leftEdge = TransformVert(m_DependentAxis, currentUnit); - - painter->setPen(dottedPen); - QPoint leftline(m_Inset.left(), leftEdge.y()); - QPoint leftend = leftline + QPoint(m_Inset.width(), 0); - painter->drawLine(leftline, leftend); - - QString text; - if (m_ptrFormatter) - { - text = m_ptrFormatter->convertAxisValueToText(Charts::AxisType::Vertical, currentUnit, divisions.front(), divisions.back(), divisionSize); - } - else - { - text = QString("%1").arg((AZ::s64)currentUnit); - } - - int textW = painter->fontMetrics().horizontalAdvance(text); - painter->setPen(solidPen); - painter->drawText(m_Inset.left() - textW - 2, (int)leftEdge.y() + fontH / 2, text); - } - } - - void DataStrip::DrawRotatedText(QString text, QPainter* painter, float degrees, int x, int y, float scale) - { - painter->save(); - painter->translate(x, y); - painter->scale(scale, scale); - painter->rotate(degrees); - painter->drawText(0, 0, text); - painter->restore(); - } - - void DataStrip::ZoomExtents(Charts::AxisType axis) - { - switch (axis) - { - case Charts::AxisType::Horizontal: - if (m_Axis) - { - m_Axis->SetViewFull(); - } - break; - case Charts::AxisType::Vertical: - if (m_DependentAxis) - { - m_DependentAxis->SetViewFull(); - } - break; - default: - AZ_Assert(false, "ERROR: Unkown axis(%i) in ZoomExtents", axis); - } - } - - void DataStrip::ZoomManual(Charts::AxisType axis, float minValue, float maxValue) - { - switch (axis) - { - case Charts::AxisType::Horizontal: - if (m_Axis) - { - m_Axis->ZoomToRange(minValue, maxValue, false); - } - break; - case Charts::AxisType::Vertical: - if (m_DependentAxis) - { - m_DependentAxis->ZoomToRange(minValue, maxValue, false); - } - break; - default: - AZ_Assert(false, "ERROR: Unkown axis(%i) in ZoomExtents", axis); - } - } - - bool DataStrip::IsValidChannelId(int channelId) const - { - return channelId >= 0 && channelId < m_Channels.size(); - } -} diff --git a/Code/Tools/Standalone/Source/Driller/StripChart.hxx b/Code/Tools/Standalone/Source/Driller/StripChart.hxx deleted file mode 100644 index d6f9bc24c1..0000000000 --- a/Code/Tools/Standalone/Source/Driller/StripChart.hxx +++ /dev/null @@ -1,220 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef AZ_STRIPCHART_H -#define AZ_STRIPCHART_H - -#if !defined(Q_MOC_RUN) -#include -#include -#include -#include - -#include -#endif - -namespace Charts -{ - class Axis; -} - -namespace StripChart -{ - enum TransformResult - { - OUTSIDE_LEFT = -1, - INSIDE_RANGE = 0, - OUTSIDE_RIGHT = 1, - INVALID_RANGE = 2 - }; - - struct Channel - { - AZ_CLASS_ALLOCATOR(Channel,AZ::SystemAllocator,0); - Channel() : m_Color(QColor(255,255,0,255)), m_Style(STYLE_POINT), m_channelID(0), m_highlighted(false), m_highlightSample(false), m_highlightedSampleID(0) {} - - enum ChannelStyle - { - STYLE_POINT = 0, - STYLE_CONNECTED_LINE, - STYLE_VERTICAL_LINE, - STYLE_BAR, - STYLE_PLUSMINUS - }; - - void SetName(QString name) { m_Name = name; } - void SetColor(QColor &color) { m_Color = color; } - void SetStyle(ChannelStyle style) { m_Style = style; } - void SetHighlight(bool highlight) { m_highlighted = highlight; } - void SetHighlightedSample(bool highlight, AZ::u64 sampleID) { m_highlightedSampleID = sampleID; m_highlightSample = highlight; } - void SetID(int id) { m_channelID = id; } - - struct Sample - { - float m_domainValue; - float m_dependentValue; - AZ::u64 m_sampleID; - - Sample() : m_domainValue(0.0f), m_dependentValue(0.0f), m_sampleID(0) {} - Sample(AZ::u64 sampleID, float domain, float dependent) : - m_sampleID(sampleID), - m_domainValue(domain), - m_dependentValue(dependent) {} - }; - - int m_channelID; - QString m_Name; - AZStd::vector< Sample > m_Data; - QColor m_Color; - ChannelStyle m_Style; - bool m_highlighted; - AZ::u64 m_highlightedSampleID; - bool m_highlightSample; - }; - - class DataStrip - : public QWidget - { - Q_OBJECT; - public: - static int s_invalidChannelId; - - AZ_CLASS_ALLOCATOR(DataStrip,AZ::SystemAllocator,0); - DataStrip(QWidget* parent = NULL, Qt::WindowFlags flags = Qt::WindowFlags()); - virtual ~DataStrip(void); - - void Reset(); - - void SetChannelHighlight(int channelID, bool highlight); - void SetChannelSampleHighlight( int channelID, AZ::u64 sampleID, bool highlight); - - bool AddAxis(QString label, float minimum, float maximum, bool lockedZoom = true, bool lockedRange = false); - - void ZoomExtents(Charts::AxisType axis); - void ZoomManual(Charts::AxisType axis, float minValue, float maxValue); - - int AddChannel(QString name); - - // Use AddData when just adding a random point to the graph. This will keep all of - // the axis's in order. - void AddData(int channelID, AZ::u64 sampleID, float h, float v = 0.0f); - - // Use AddDataBatch when adding lots of data all at once, this will ignore some calls. - void StartBatchDataAdd(); - void AddBatchedData(int channelID, AZ::u64 sampleID, float h, float v = 0.0f); - void EndBatchDataAdd(); - - void ClearData(int channelID); - void ClearAxisRange(); - void SetChannelColor(int channelID, QColor color); - - void SetChannelStyle(int channelID, Channel::ChannelStyle style); - void SetViewFull(); - void SetLockRight(bool tf); - void SetZoomLimit(float limit); - - void SetMarkerColor(QColor qc); - void SetMarkerPosition(float qposn); - - bool GetAxisRange(Charts::AxisType whichAxis, float& minValue, float& maxValue); - bool GetWindowRange(Charts::AxisType whichAxis, float &minValue, float &maxValue); - // override for knowledgeable outsiders who want a different range than from the data provided via AddData(...) - void SetWindowRange(Charts::AxisType whichAxis, float minValue, float maxValue); - void AddWindowRange(Charts::AxisType whichAxis, float minValue, float maxValue); - - // you may set it to null to clear it. - // the chart will automatically uninstall the text formatter if it is destroyed - // it DOES NOT TAKE OWNERSHIP of the formatter. - void SetAxisTextFormatter(Charts::QAbstractAxisFormatter* target); - void AttachDataSourceWidget(QWidget *widget); - - void SetDataDirty(); - bool IsValidChannelId(int channelId) const; - -signals: - void onMouseOverDataPoint(int channelID, AZ::u64 sampleID, float primaryAxisValue, float dependentAxisValue); - void onMouseOverNothing(float primaryAxisValue, float dependentAxisValue); - void onMouseLeftDownDomainValue(float domainValue); - void onMouseLeftDragDomainValue(float domainValue); - void onMouseLeftUpDomainValue(float domainValue); - void ProcureData(StripChart::DataStrip*); - - protected: - virtual void wheelEvent(QWheelEvent * event); - virtual void mouseMoveEvent(QMouseEvent * event); - virtual void mousePressEvent(QMouseEvent * event); - virtual void mouseReleaseEvent(QMouseEvent * event); - virtual void resizeEvent(QResizeEvent * event); - - protected slots: - void OnDestroyAxisFormatter(QObject *pDestroyed); - - protected: - - int m_InsetL; - int m_InsetR; - int m_InsetT; - int m_InsetB; - QRect m_Inset; - float m_ZoomLimit; - bool m_bLeftDown; - bool m_isDataDirty; - - typedef AZStd::vector Channels; - Channels m_Channels; - QPoint m_DragTracker; - bool m_MouseWasDragged; - - Charts::QAbstractAxisFormatter* m_ptrFormatter; - - bool m_IsDragging; - bool m_InBatchMode; - - // axes dealt with internally as follows: - Charts::Axis* m_Axis; - Charts::Axis* m_DependentAxis; // vertical axis - // first submission = horizontal, for binary state data points - // second submission = vertical, for state with value data points - // third submission = depth, for data grids with value - - QColor m_MarkerColor; - float m_MarkerPosition; - - // internal ops - virtual void paintEvent(QPaintEvent *event); - void DrawRotatedText(QString text, QPainter *painter, float degrees, int x, int y, float scale = 1.0f); - void RenderVertCallouts(QPainter *painter); - void RenderHorizCallouts(QPainter *painter); - void RecalculateInset(); - void Drag(Charts::Axis *axis, int deltaY); - void Drag(Charts::Axis *axis, int deltaX, int deltaY); - QPoint TransformVert(Charts::Axis *axis, float v); - QPoint TransformHoriz(Charts::Axis *axis, float h); - TransformResult Transform(Charts::Axis *axis, float h, float v, QPoint &outQPoint); - - class HitArea - { - public: - AZ_CLASS_ALLOCATOR(HitArea, AZ::SystemAllocator, 0); - Channel *m_ptrChannel; - AZ::u64 m_sampleID; - float m_primaryAxisValue; - float m_dependentAxisValue; - QPoint m_hitBoxCenter; - HitArea() : m_ptrChannel(NULL), m_primaryAxisValue(0.0f), m_dependentAxisValue(0.0f) {} - HitArea(float x, float y, QPoint hitBoxCenter, Channel* pChannel, AZ::u64 sampleID) : - m_hitBoxCenter(hitBoxCenter), m_primaryAxisValue(x), m_dependentAxisValue(y), m_ptrChannel(pChannel), m_sampleID(sampleID) {} - }; - - typedef AZStd::vector HitAreaContainer; - HitAreaContainer m_hitAreas; - }; - -} - -#endif //AZ_STRIPCHART_H diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.cpp b/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.cpp deleted file mode 100644 index 63e9de9b1e..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.cpp +++ /dev/null @@ -1,487 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "TraceDrillerDialog.hxx" -#include "TraceMessageDataAggregator.hxx" -#include -#include "TraceMessageEvents.h" - -#include -#include -#include -#include -#include - -#include -#include -#include - -namespace Driller -{ - class TraceDrillerDialogSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(TraceDrillerDialogSavedState, "{81955B84-077D-4A87-B562-7A9633736BE4}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(TraceDrillerDialogSavedState, AZ::SystemAllocator, 0); - - AZStd::string m_windowFilter; - AZStd::string m_textFilter; - - TraceDrillerDialogSavedState() {} - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_windowFilter", &TraceDrillerDialogSavedState::m_windowFilter) - ->Field("m_textFilter", &TraceDrillerDialogSavedState::m_textFilter) - ->Version(1); - } - } - }; - - // Qt supports A "filter proxy model" - // you have a normal model - // and then you wrap that model in a filter proxy model. - // this allows you to filter the inner model and feed the outer (filtered) model to the view. - - // this particular filter model lets you specify search criteria in the Window or the Message field - class TraceFilterModel - : public QSortFilterProxyModel - { - public: - AZ_CLASS_ALLOCATOR(TraceFilterModel, AZ::SystemAllocator, 0); - int m_windowColumn; - int m_messageColumn; - - QString m_currentWindowFilter; - QString m_currentMessageFilter; - - TraceFilterModel(int windowColumn, int messageColumn, QObject* pParent) - : QSortFilterProxyModel(pParent) - { - m_windowColumn = windowColumn; - m_messageColumn = messageColumn; - } - - void UpdateWindowFilter(const QString& newFilter) - { - if (newFilter.compare(m_currentWindowFilter) != 0) - { - if (m_windowColumn >= 0) - { - m_currentWindowFilter = newFilter; - invalidateFilter(); - } - } - } - - void UpdateMessageFilter(const QString& newFilter) - { - if (newFilter.compare(m_currentMessageFilter) != 0) - { - if (m_messageColumn >= 0) - { - m_currentMessageFilter = newFilter; - invalidateFilter(); - } - } - } - - - protected: - virtual bool filterAcceptsRow(int source_row, const QModelIndex& /*source parent*/) const - { - QAbstractItemModel* ptrModel = sourceModel(); - - if (!ptrModel) - { - return true; - } - - if (m_currentWindowFilter.size() > 0) - { - QString sourceData = ptrModel->data(ptrModel->index(source_row, m_windowColumn), Qt::DisplayRole).toString(); - if (!sourceData.contains(m_currentWindowFilter, Qt::CaseInsensitive)) - { - return false; - } - } - - if (m_currentMessageFilter.size() > 0) - { - QString sourceData = ptrModel->data(ptrModel->index(source_row, m_messageColumn), Qt::DisplayRole).toString(); - if (!sourceData.contains(m_currentMessageFilter, Qt::CaseInsensitive)) - { - return false; - } - } - - return true; - } - }; - - TraceDrillerDialog::TraceDrillerDialog(TraceMessageDataAggregator* data, int profilerIndex, QWidget* pParent) - : QDialog(pParent) - , m_viewIndex(profilerIndex) - , m_lifespanTelemetry("TraceDataView") - { - setAttribute(Qt::WA_DeleteOnClose, true); - - m_uiLoaded = azcreate(Ui::TraceDrillerDialog, ()); - m_uiLoaded->setupUi(this); - setWindowFlags((this->windowFlags() | Qt::WindowMaximizeButtonHint | Qt::WindowMinimizeButtonHint) & ~(Qt::WindowContextHelpButtonHint)); - - setWindowTitle(data->GetDialogTitle()); - - TraceDrillerLogTab* tabView = aznew TraceDrillerLogTab(this); - - this->layout()->addWidget(tabView); - - m_ptrOriginalModel = aznew TraceDrillerLogModel(data, this); - m_ptrFilter = aznew TraceFilterModel(tabView->GetWindowColumn(), tabView->GetMessageColumn(), this); - m_ptrFilter->setSourceModel(m_ptrOriginalModel); - tabView->ConnectModelToView(m_ptrFilter); - - connect(data, SIGNAL(destroyed(QObject*)), this, SLOT(OnDataDestroyed())); - - connect(m_ptrFilter, SIGNAL(rowsAboutToBeInserted(const QModelIndex &, int, int)), tabView, SLOT(rowsAboutToBeInserted())); - connect(m_ptrFilter, SIGNAL(rowsInserted(const QModelIndex &, int, int)), tabView, SLOT(rowsInserted())); - connect(m_uiLoaded->windowFilterText, SIGNAL(textChanged(const QString &)), this, SLOT(onTextChangeWindowFilter(const QString&))); - connect(m_uiLoaded->messageFilterText, SIGNAL(textChanged(const QString &)), this, SLOT(onTextChangeMessageFilter(const QString&))); - - connect(m_ptrFilter, SIGNAL(rowsInserted(const QModelIndex &, int, int)), this, SLOT(UpdateSummary())); - connect(m_ptrFilter, SIGNAL(rowsRemoved(const QModelIndex &, int, int)), this, SLOT(UpdateSummary())); - connect(m_ptrFilter, SIGNAL(modelReset()), this, SLOT(UpdateSummary())); - connect(m_ptrOriginalModel, SIGNAL(rowsInserted(const QModelIndex &, int, int)), this, SLOT(UpdateSummary())); - connect(m_ptrOriginalModel, SIGNAL(rowsRemoved(const QModelIndex &, int, int)), this, SLOT(UpdateSummary())); - connect(m_ptrOriginalModel, SIGNAL(modelReset()), this, SLOT(UpdateSummary())); - - AZStd::string windowStateStr = AZStd::string::format("TRACE DRILLER DATA VIEW WINDOW STATE %i", m_viewIndex); - m_windowStateCRC = AZ::Crc32(windowStateStr.c_str()); - AZStd::intrusive_ptr windowState = AZ::UserSettings::Find(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - if (windowState) - { - windowState->RestoreGeometry(this); - } - - AZStd::string filterStateStr = AZStd::string::format("TRACE DRILLER DIALOG SAVED STATE %i", m_viewIndex); - m_filterStateCRC = AZ::Crc32(filterStateStr.c_str()); - m_persistentState = AZ::UserSettings::Find(m_filterStateCRC, AZ::UserSettings::CT_GLOBAL); - ApplyPersistentState(); - UpdateSummary(); - } - - TraceDrillerDialog::~TraceDrillerDialog() - { - SaveOnExit(); - azdestroy(m_uiLoaded); - } - - void TraceDrillerDialog::ApplyPersistentState() - { - if (m_persistentState) - { - // the bridge between our AZStd::string storage and QT's own string type - QString windowFilter(m_persistentState->m_windowFilter.c_str()); - QString textFilter(m_persistentState->m_textFilter.c_str()); - - m_uiLoaded->windowFilterText->setText(windowFilter); - m_uiLoaded->messageFilterText->setText(textFilter); - } - } - - void TraceDrillerDialog::SaveOnExit() - { - AZStd::intrusive_ptr pState = AZ::UserSettings::CreateFind(m_windowStateCRC, AZ::UserSettings::CT_GLOBAL); - pState->CaptureGeometry(this); - - AZStd::intrusive_ptr newState = AZ::UserSettings::CreateFind(m_filterStateCRC, AZ::UserSettings::CT_GLOBAL); - if (newState) - { - newState->m_windowFilter = m_ptrFilter->m_currentWindowFilter.toUtf8().data(); - newState->m_textFilter = m_ptrFilter->m_currentMessageFilter.toUtf8().data(); - } - } - void TraceDrillerDialog::hideEvent(QHideEvent* evt) - { - QDialog::hideEvent(evt); - } - void TraceDrillerDialog::closeEvent(QCloseEvent* evt) - { - QDialog::closeEvent(evt); - } - void TraceDrillerDialog::OnDataDestroyed() - { - deleteLater(); - } - - void TraceDrillerDialog::onTextChangeWindowFilter(const QString& newText) - { - m_ptrFilter->UpdateWindowFilter(newText); - UpdateSummary(); - } - - void TraceDrillerDialog::onTextChangeMessageFilter(const QString& newText) - { - m_ptrFilter->UpdateMessageFilter(newText); - UpdateSummary(); - } - - void TraceDrillerDialog::UpdateSummary() - { - int filterRows = m_ptrFilter->rowCount(); - int originalRows = m_ptrOriginalModel->rowCount(); - - if (!m_uiLoaded->windowFilterText->text().isEmpty() || !m_uiLoaded->messageFilterText->text().isEmpty()) - { - m_uiLoaded->summaryLabel->setText(QString("%1 / %2\nEvent(s)").arg(filterRows).arg(originalRows)); - } - else - { - m_uiLoaded->summaryLabel->setText(QString("%1\nEvent(s)").arg(originalRows)); - } - } - - void TraceDrillerDialog::ApplySettingsFromWorkspace(WorkspaceSettingsProvider* provider) - { - AZStd::string workspaceStateStr = AZStd::string::format("TRACE DRILLER DIALOG WORKSPACE STATE %i", m_viewIndex); - AZ::u32 workspaceStateCRC = AZ::Crc32(workspaceStateStr.c_str()); - - if (m_persistentState) - { - TraceDrillerDialogSavedState* workspace = provider->FindSetting(workspaceStateCRC); - if (workspace) - { - m_persistentState->m_windowFilter = workspace->m_windowFilter; - m_persistentState->m_textFilter = workspace->m_textFilter; - } - } - } - void TraceDrillerDialog::ActivateWorkspaceSettings(WorkspaceSettingsProvider*) - { - ApplyPersistentState(); - } - void TraceDrillerDialog::SaveSettingsToWorkspace(WorkspaceSettingsProvider* provider) - { - AZStd::string workspaceStateStr = AZStd::string::format("TRACE DRILLER DIALOG WORKSPACE STATE %i", m_viewIndex); - AZ::u32 workspaceStateCRC = AZ::Crc32(workspaceStateStr.c_str()); - - if (m_persistentState) - { - TraceDrillerDialogSavedState* workspace = provider->CreateSetting(workspaceStateCRC); - if (workspace) - { - workspace->m_windowFilter = m_ptrFilter->m_currentWindowFilter.toUtf8().data(); - workspace->m_textFilter = m_ptrFilter->m_currentMessageFilter.toUtf8().data(); - } - } - } - - void TraceDrillerDialog::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - TraceDrillerDialogSavedState::Reflect(context); - } - } - - ////////////////////////////////////////////////////////////////////////// - ////////////////////////////////////////////////////////////////////////// - // TraceDrillerLogTab - ////////////////////////////////////////////////////////////////////////// - ////////////////////////////////////////////////////////////////////////// - TraceDrillerLogTab::TraceDrillerLogTab(QWidget* pParent) - : BaseLogView(pParent) - , m_isScrollAfterInsert(true) - { - setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); - } - - TraceDrillerLogTab::~TraceDrillerLogTab() - { - } - - void TraceDrillerLogTab::rowsAboutToBeInserted() - { - m_isScrollAfterInsert = IsAtMaxScroll(); - } - - void TraceDrillerLogTab::rowsInserted() - { - if (m_isScrollAfterInsert) - { - m_ptrLogView->scrollToBottom(); - } - } - - ////////////////////////////////////////////////////////////////////////// - ////////////////////////////////////////////////////////////////////////// - // TraceDrillerLogModel - ////////////////////////////////////////////////////////////////////////// - ////////////////////////////////////////////////////////////////////////// - TraceDrillerLogModel::TraceDrillerLogModel(TraceMessageDataAggregator* data, QObject* pParent) - : QAbstractTableModel(pParent) - , m_data(data) - , m_lastShownEvent(-1) - { - connect(data, SIGNAL(OnDataCurrentEventChanged()), this, SLOT(OnDataCurrentEventChanged())); - connect(data, SIGNAL(OnDataAddEvent()), this, SLOT(OnDataAddEvent())); - - // cache Icons! - m_criticalIcon = QApplication::style()->standardIcon(QStyle::SP_MessageBoxCritical); - m_errorIcon = QApplication::style()->standardIcon(QStyle::SP_MessageBoxCritical); - m_warningIcon = QApplication::style()->standardIcon(QStyle::SP_MessageBoxWarning); - m_informationIcon = QApplication::style()->standardIcon(QStyle::SP_MessageBoxInformation); - - m_lastShownEvent = m_data->GetCurrentEvent(); - } - - TraceDrillerLogModel::~TraceDrillerLogModel() - { - } - - void TraceDrillerLogModel::OnDataCurrentEventChanged() - { - AZ::s64 currentEvent = m_data->GetCurrentEvent(); - // NOTE: we add +1 to all events, because we are EXECUTING the current event (so it must be shown) - if (m_lastShownEvent > currentEvent) - { - // remove rows - beginRemoveRows(QModelIndex(), (int)currentEvent + 1, (int)m_lastShownEvent); - endRemoveRows(); - } - else - { - // add rows - beginInsertRows(QModelIndex(), (int)m_lastShownEvent + 1, (int)currentEvent); - endInsertRows(); - } - m_lastShownEvent = currentEvent; - } - - void TraceDrillerLogModel::OnDataAddEvent() - { - } - - int TraceDrillerLogModel::rowCount(const QModelIndex&) const - { - AZ::s64 currentEvent = m_data->GetCurrentEvent(); - return (int)currentEvent + 1; - } - int TraceDrillerLogModel::columnCount(const QModelIndex&) const - { - return 3; // icon + window + message; - } - Qt::ItemFlags TraceDrillerLogModel::flags(const QModelIndex& index) const - { - if (!index.isValid()) - { - return Qt::ItemIsEnabled; - } - - if (index.column() == 2) // the 3rd column (message) is "editable" - { - return QAbstractItemModel::flags(index) | Qt::ItemIsEditable; - } - - return QAbstractItemModel::flags(index); - } - - QVariant TraceDrillerLogModel::data(const QModelIndex& index, int role) const - { - using namespace AZ::Debug; - - TraceMessageEvent* event = static_cast(m_data->GetEvents().at(index.row())); - if (role == AzToolsFramework::LogPanel::RichTextRole) // the renderer is asking whether this cell is rich text or not. Return a true or false. - { - return /*m_Lines[index.row()].m_bIsRichText*/ false; - } - else if (role == Qt::DecorationRole) // the renderer is asking whether or not we want to display an icon in this cell. Return an icon or null. - { - if (index.column() == 0) - { - switch (event->GetEventType()) - { - case TraceMessageEvent::ET_ASSERT: - return m_criticalIcon; - case TraceMessageEvent::ET_ERROR: - return m_errorIcon; - case TraceMessageEvent::ET_WARNING: - return m_warningIcon; - case TraceMessageEvent::ET_PRINTF: - return m_informationIcon; - case TraceMessageEvent::ET_EXCEPTION: - return QVariant(); - break; - } - } - } - else if (role == Qt::DisplayRole) // the renderer wants to know what text to show in this cell. Return a string or null - { - if (index.column() == 0) // icon has no text - { - return QVariant(QString()); - } - else if (index.column() == 1) // window - { - return QVariant(event->m_window); - } - else if (index.column() == 2) // message - { - return QVariant(QString(event->m_message).trimmed()); - } - } - else if (role == Qt::BackgroundRole) // the renderer wants to know what the background color of this cell should be. REturn a color or null (to use default) - { - switch (event->GetEventType()) - { - case TraceMessageEvent::ET_ASSERT: - return QVariant(QColor::fromRgb(255, 0, 0)); - break; - case TraceMessageEvent::ET_ERROR: - return QVariant(QColor::fromRgb(255, 192, 192)); - break; - case TraceMessageEvent::ET_WARNING: - return QVariant(QColor::fromRgb(255, 255, 192)); - break; - case TraceMessageEvent::ET_PRINTF: - return QVariant(); - break; - case TraceMessageEvent::ET_EXCEPTION: - return QVariant(); - break; - } - } - else if (role == Qt::ForegroundRole) // the renderer wants to know what the text color of this cell should be.REturn a color or null. - { - switch (event->GetEventType()) - { - case TraceMessageEvent::ET_PRINTF: - return QVariant(QColor::fromRgb(0, 0, 0)); - break; - case TraceMessageEvent::ET_ERROR: - return QVariant(QColor::fromRgb(64, 0, 0)); - break; - case TraceMessageEvent::ET_WARNING: - return QVariant(QColor::fromRgb(64, 64, 0)); - break; - case TraceMessageEvent::ET_EXCEPTION: - return QVariant(); - break; - } - } - return QVariant(); - } -} - -#include diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.hxx b/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.hxx deleted file mode 100644 index 36105065a9..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.hxx +++ /dev/null @@ -1,151 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef TRACEDRILLERDIALOG_H -#define TRACEDRILLERDIALOG_H - -#pragma once - -#if !defined(Q_MOC_RUN) -#include -#include -#include - -#include - -#include "Source/Driller/DrillerMainWindowMessages.h" -#include "Source/Driller/DrillerOperationTelemetryEvent.h" -#endif - -namespace Ui { - class TraceDrillerDialog; -} // namespace Ui - -namespace AZ { class ReflectContext; } - -namespace Driller -{ - class TraceFilterModel; - class TraceMessageDataAggregator; - class TraceDrillerLogModel; - class TraceDrillerDialogSavedState; - - class TraceDrillerDialog - : public QDialog - { - Q_OBJECT - public: - AZ_CLASS_ALLOCATOR(TraceDrillerDialog, AZ::SystemAllocator, 0); - - TraceDrillerDialog(TraceMessageDataAggregator* data, int profilerIndex, QWidget *pParent = NULL); - virtual ~TraceDrillerDialog(); - - // NB: These three methods mimic the workspace bus. - // Because the ProfilerDataAggregator can't know to open these DataView windows - // until after the EBUS message has gone out, the owning aggregator must - // first create these windows and then pass along the provider manually - void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*); - void ActivateWorkspaceSettings(WorkspaceSettingsProvider*); - void SaveSettingsToWorkspace(WorkspaceSettingsProvider*); - - void SaveOnExit(); - virtual void closeEvent(QCloseEvent *evt); - virtual void hideEvent(QHideEvent *evt); - - void ApplyPersistentState(); - - AZ::u32 m_windowStateCRC; - AZ::u32 m_filterStateCRC; - int m_viewIndex; - - // persistent state is used as if they were internal variables, - // though they reside in a storage class - // this lasts for the entire lifetime of this object - AZStd::intrusive_ptr m_persistentState; - - public slots: - void OnDataDestroyed(); - void onTextChangeWindowFilter(const QString &); - void onTextChangeMessageFilter(const QString &); - - void UpdateSummary(); - - protected: - DrillerWindowLifepsanTelemetry m_lifespanTelemetry; - - Ui::TraceDrillerDialog* m_uiLoaded; - TraceFilterModel* m_ptrFilter; - TraceDrillerLogModel* m_ptrOriginalModel; - - public: - static void Reflect(AZ::ReflectContext* context); - }; - - class TraceDrillerLogTab : public AzToolsFramework::LogPanel::BaseLogView - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(TraceDrillerLogTab, AZ::SystemAllocator, 0); - - TraceDrillerLogTab(QWidget *pParent = NULL); - virtual ~TraceDrillerLogTab(); - - // return -1 for any of these to indicate that your data has no such column. - // make sure your model has the same semantics! - virtual int GetIconColumn() { return 0; } - virtual int GetWindowColumn() { return 1; } - virtual int GetMessageColumn() { return 2; } // you may not return -1 for this one. - virtual int GetTimeColumn() { return -1; } - - using AzToolsFramework::LogPanel::BaseLogView::rowsInserted; - - public slots: - void rowsAboutToBeInserted(); - void rowsInserted (); - - protected: - - bool m_isScrollAfterInsert; - }; - - class TraceDrillerLogModel : public QAbstractTableModel - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(TraceDrillerLogModel, AZ::SystemAllocator, 0); - - //////////////////////////////////////////////////////////////////////////////////////////////// - // QAbstractTableModel - virtual int rowCount(const QModelIndex& index = QModelIndex()) const; - virtual int columnCount(const QModelIndex& index = QModelIndex()) const; - virtual Qt::ItemFlags flags(const QModelIndex &index) const; - virtual QVariant data(const QModelIndex& index, int role) const; - //////////////////////////////////////////////////////////////////////////////////////////////// - - TraceDrillerLogModel(TraceMessageDataAggregator* data, QObject *pParent = NULL); - virtual ~TraceDrillerLogModel(); - - public slots: - void OnDataCurrentEventChanged(); - void OnDataAddEvent(); - - protected: - TraceMessageDataAggregator* m_data; - AZ::s64 m_lastShownEvent; - QIcon m_criticalIcon; - QIcon m_errorIcon; - QIcon m_warningIcon; - QIcon m_informationIcon; - - - }; - - -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.ui b/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.ui deleted file mode 100644 index 229539a92e..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.ui +++ /dev/null @@ -1,124 +0,0 @@ - - - TraceDrillerDialog - - - - 0 - 0 - 544 - 250 - - - - - 0 - 250 - - - - Trace Message Driller - - - true - - - - - - - - Window Filter - - - - - - - - 0 - 0 - - - - - 120 - 0 - - - - Window Name - - - - - - - Qt::Horizontal - - - QSizePolicy::MinimumExpanding - - - - 20 - 20 - - - - - - - - Message Filter - - - - - - - - 0 - 0 - - - - - 120 - 0 - - - - Message - - - - - - - - 0 - 0 - - - - - 95 - 0 - - - - - - - Qt::AlignCenter - - - - - - - - - - diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.cpp deleted file mode 100644 index 64c389daa1..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.cpp +++ /dev/null @@ -1,220 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "TraceMessageDataAggregator.hxx" -#include - -#include "TraceDrillerDialog.hxx" -#include "TraceMessageEvents.h" -#include -#include -#include -#include - -namespace Driller -{ - class TraceMessageDataAggregatorSavedState - : public AZ::UserSettings - { - public: - AZ_RTTI(TraceMessageDataAggregatorSavedState, "{48FADE93-10C0-48BE-96FA-44EFE49D8ED3}", AZ::UserSettings); - AZ_CLASS_ALLOCATOR(TraceMessageDataAggregatorSavedState, AZ::SystemAllocator, 0); - TraceMessageDataAggregatorSavedState() - : m_activeViewCount(0) - {} - - int m_activeViewCount; - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Field("m_activeViewCount", &TraceMessageDataAggregatorSavedState::m_activeViewCount) - ->Version(2); - } - } - }; - - - TraceMessageDataAggregator::TraceMessageDataAggregator(int identity) - : Aggregator(identity) - , m_dataView(nullptr) - { - m_parser.SetAggregator(this); - - m_persistentState = AZ::UserSettings::CreateFind(AZ_CRC("TRACE MESSAGE DATA AGGREGATOR SAVED STATE", 0xa4996e1f), AZ::UserSettings::CT_GLOBAL); - AZ_Assert(m_persistentState, "Persistent State is NULL?"); - } - - float TraceMessageDataAggregator::ValueAtFrame(FrameNumberType frame) - { - return NumOfEventsAtFrame(frame) > 0 ? 1.0f : -1.0f; - } - - QColor TraceMessageDataAggregator::GetColor() const - { - return QColor(0, 255, 0); - } - - QString TraceMessageDataAggregator::GetName() const - { - return "Trace messages"; - } - - QString TraceMessageDataAggregator::GetChannelName() const - { - return ChannelName(); - } - - QString TraceMessageDataAggregator::GetDescription() const - { - return "All trace messages"; - } - - QString TraceMessageDataAggregator::GetToolTip() const - { - return "Logged Messages from Application"; - } - - AZ::Uuid TraceMessageDataAggregator::GetID() const - { - return AZ::Uuid("{368D6FB2-9A92-4DFE-8DB4-4F106194BA6F}"); - } - - QWidget* TraceMessageDataAggregator::DrillDownRequest(FrameNumberType frame) - { - (void)frame; - - if (m_dataView) - { - m_dataView->deleteLater(); - OnDataViewDestroyed(m_dataView); - m_dataView = nullptr; - } - - TraceDrillerDialog* dv = aznew TraceDrillerDialog(this, (1024 * GetIdentity()) + 0); - dv->show(); - m_dataView = dv; - - connect(dv, SIGNAL(destroyed(QObject*)), this, SLOT(OnDataViewDestroyed(QObject*))); - ++m_persistentState->m_activeViewCount; - - return dv; - } - void TraceMessageDataAggregator::OptionsRequest() - { - } - void TraceMessageDataAggregator::OnDataViewDestroyed(QObject* dataView) - { - if (dataView == m_dataView) - { - m_dataView = nullptr; - --m_persistentState->m_activeViewCount; - } - } - - void TraceMessageDataAggregator::ApplySettingsFromWorkspace(WorkspaceSettingsProvider* provider) - { - TraceMessageDataAggregatorSavedState* workspace = provider->FindSetting(AZ_CRC("TRACE MESSAGE DATA AGGREGATOR WORKSPACE", 0xff055f40)); - if (workspace) - { - m_persistentState->m_activeViewCount = workspace->m_activeViewCount; - } - } - void TraceMessageDataAggregator::ActivateWorkspaceSettings(WorkspaceSettingsProvider* provider) - { - TraceMessageDataAggregatorSavedState* workspace = provider->FindSetting(AZ_CRC("TRACE MESSAGE DATA AGGREGATOR WORKSPACE", 0xff055f40)); - if (workspace) - { - // kill all existing data view windows in preparation of opening the workspace specified ones - delete m_dataView; - - // the internal count should be 0 from the above house cleaning - // and incremented back up from the workspace instantiations - m_persistentState->m_activeViewCount = 0; - for (int i = 0; i < workspace->m_activeViewCount; ++i) - { - // driller must be created at (frame > 0) for it to have a valid tree to display - TraceDrillerDialog* dataView = qobject_cast(DrillDownRequest(1)); - if (dataView) - { - // apply will overlay the workspace settings on top of the local user settings - dataView->ApplySettingsFromWorkspace(provider); - // activate will do the heavy lifting - dataView->ActivateWorkspaceSettings(provider); - } - } - } - } - - void TraceMessageDataAggregator::SaveSettingsToWorkspace(WorkspaceSettingsProvider* provider) - { - TraceMessageDataAggregatorSavedState* workspace = provider->CreateSetting(AZ_CRC("TRACE MESSAGE DATA AGGREGATOR WORKSPACE", 0xff055f40)); - if (workspace) - { - workspace->m_activeViewCount = m_persistentState->m_activeViewCount; - - if (m_dataView) - { - qobject_cast(m_dataView)->SaveSettingsToWorkspace(provider); - } - } - } - - - // emit all annotations that match the provider's filter, given the start and end frame: - void TraceMessageDataAggregator::EmitAllAnnotationsForFrameRange(int startFrameInclusive, int endFrameInclusive, AnnotationsProvider* ptrProvider) - { - for (; startFrameInclusive <= endFrameInclusive; ++startFrameInclusive) - { - AZ::s64 startEvent = m_frameToEventIndex[startFrameInclusive]; - AZ::s64 endEvent = startEvent + NumOfEventsAtFrame(startFrameInclusive); - - for (AZ::s64 i = startEvent; i < endEvent; ++i) - { - TraceMessageEvent* event = static_cast(m_events[i]); - if (ptrProvider->IsChannelEnabled(event->m_windowCRC)) - { - ptrProvider->AddAnnotation(Driller::Annotation(m_events[i]->GetGlobalEventId(), startFrameInclusive, event->m_message, event->m_window)); - } - } - } - } - - // emit all channels that you are aware of existing within that frame range (You may emit duplicate channels, they will be ignored) - void TraceMessageDataAggregator::EmitAnnotationChannelsForFrameRange(int startFrameInclusive, int endFrameInclusive, AnnotationsProvider* ptrProvider) - { - for (; startFrameInclusive <= endFrameInclusive; ++startFrameInclusive) - { - AZ::s64 startEvent = m_frameToEventIndex[startFrameInclusive]; - AZ::s64 endEvent = startEvent + NumOfEventsAtFrame(startFrameInclusive); - - for (AZ::s64 i = startEvent; i < endEvent; ++i) - { - TraceMessageEvent* event = static_cast(m_events[i]); - ptrProvider->NotifyOfChannelExistence(event->m_window); - } - } - } - - void TraceMessageDataAggregator::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - TraceMessageDataAggregatorSavedState::Reflect(context); - TraceDrillerDialog::Reflect(context); - - serialize->Class() - ->Version(1) - ->SerializeWithNoData(); - } - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.hxx deleted file mode 100644 index 266432b904..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.hxx +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_TRACE_MESSAGE_DATAAGGREGATOR_H -#define DRILLER_TRACE_MESSAGE_DATAAGGREGATOR_H - -#if !defined(Q_MOC_RUN) -#include "Source/Driller/DrillerAggregator.hxx" -#include "Source/Driller/DrillerAggregatorOptions.hxx" - -#include "TraceMessageDataParser.h" - -#include -#endif - -namespace AZ { class ReflectContext; } - -namespace Driller -{ - class TraceMessageDataAggregatorSavedState; - - /** - * Trace message driller data aggregator. - */ - class TraceMessageDataAggregator : public Aggregator - { - Q_OBJECT; - TraceMessageDataAggregator(const TraceMessageDataAggregator&) = delete; - public: - AZ_RTTI(TraceMessageDataAggregator, "{CA33E0B0-6E16-4D8C-B3D0-C833AC8574C6}"); - AZ_CLASS_ALLOCATOR(TraceMessageDataAggregator,AZ::SystemAllocator,0); - - TraceMessageDataAggregator(int identity = 0); - - static AZ::u32 DrillerId() { return TraceMessageHandlerParser::GetDrillerId(); } - virtual AZ::u32 GetDrillerId() const { return DrillerId(); } - - static const char* ChannelName() { return "Logging"; } - AZ::Crc32 GetChannelId() const override { return AZ::Crc32(ChannelName()); } - - virtual AZ::Debug::DrillerHandlerParser* GetDrillerDataParser() { return &m_parser; } - - virtual void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*); - virtual void ActivateWorkspaceSettings(WorkspaceSettingsProvider*); - virtual void SaveSettingsToWorkspace(WorkspaceSettingsProvider*); - - ////////////////////////////////////////////////////////////////////////// - // Aggregator - - // emit all annotations that match the provider's filter, given the start and end frame: - virtual void EmitAllAnnotationsForFrameRange( int startFrameInclusive, int endFrameInclusive , AnnotationsProvider* ptrProvider); - - // emit all channels that you are aware of existing within that frame range (You may emit duplicate channels, they will be ignored) - virtual void EmitAnnotationChannelsForFrameRange( int startFrameInclusive, int endFrameInclusive , AnnotationsProvider* ptrProvider); - - public slots: - float ValueAtFrame( FrameNumberType frame ) override; - QColor GetColor() const override; - QString GetName() const override; - QString GetChannelName() const override; - QString GetDescription() const override; - QString GetToolTip() const override; - AZ::Uuid GetID() const override; - QWidget* DrillDownRequest(FrameNumberType frame) override; - void OptionsRequest() override; - virtual void OnDataViewDestroyed(QObject*); - - public: - TraceMessageHandlerParser m_parser; ///< Parser for this aggregator - - QObject* m_dataView; - AZStd::intrusive_ptr m_persistentState; - - public: - static void Reflect(AZ::ReflectContext* context); - }; - -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.cpp deleted file mode 100644 index 9d2981cafc..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.cpp +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "TraceMessageDataParser.h" -#include "TraceMessageDataAggregator.hxx" -#include "TraceMessageEvents.h" - -namespace Driller -{ - AZ::Debug::DrillerHandlerParser* TraceMessageHandlerParser::OnEnterTag(AZ::u32 tagName) - { - AZ_Assert(m_data, "You must set a valid aggregator before we can process the data!"); - if (tagName == AZ_CRC("OnPrintf", 0xd4b5c294)) - { - m_data->AddEvent(aznew TraceMessageEvent(TraceMessageEvent::ET_PRINTF)); - return this; - } - else if (tagName == AZ_CRC("OnWarning", 0x7d90abea)) - { - m_data->AddEvent(aznew TraceMessageEvent(TraceMessageEvent::ET_WARNING)); - return this; - } - else if (tagName == AZ_CRC("OnError", 0x4993c634)) - { - m_data->AddEvent(aznew TraceMessageEvent(TraceMessageEvent::ET_ERROR)); - return this; - } - return nullptr; - } - - void TraceMessageHandlerParser::OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode) - { - AZ_Assert(m_data, "You must set a valid aggregator before we can process the data!"); - if (dataNode.m_name == AZ_CRC("Window", 0x8be4f9dd)) - { - TraceMessageEvent* event = static_cast(m_data->GetEvents().back()); - event->m_window = dataNode.ReadPooledString(); - event->ComputeCRC(); - } - if (dataNode.m_name == AZ_CRC("Message", 0xb6bd307f)) - { - TraceMessageEvent* event = static_cast(m_data->GetEvents().back()); - event->m_message = dataNode.ReadPooledString(); - } - else if (dataNode.m_name == AZ_CRC("OnAssert", 0xb74db4ce)) - { - TraceMessageEvent* event = aznew TraceMessageEvent(TraceMessageEvent::ET_ASSERT); - event->m_window = "System"; - event->m_message = dataNode.ReadPooledString(); - event->m_windowCRC = AZ_CRC("System", 0xc94d118b); - m_data->AddEvent(event); - } - else if (dataNode.m_name == AZ_CRC("OnException", 0xfe457d12)) - { - TraceMessageEvent* event = aznew TraceMessageEvent(TraceMessageEvent::ET_EXCEPTION); - event->m_window = "System"; - event->m_message = dataNode.ReadPooledString(); - event->m_windowCRC = AZ_CRC("System", 0xc94d118b); - m_data->AddEvent(event); - } - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.h b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.h deleted file mode 100644 index f2ef934288..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_TRACE_MESSAGE_PARSER_H -#define DRILLER_TRACE_MESSAGE_PARSER_H - -#include - -namespace Driller -{ - class TraceMessageDataAggregator; - - class TraceMessageHandlerParser - : public AZ::Debug::DrillerHandlerParser - { - public: - TraceMessageHandlerParser() - : m_data(nullptr) - { - } - - static AZ::u32 GetDrillerId() { return AZ_CRC("TraceMessagesDriller", 0xa61d1b00); } - void SetAggregator(TraceMessageDataAggregator* data) { m_data = data; } - - // AZ::Debug::DrillerHandlerParser - virtual AZ::Debug::DrillerHandlerParser* OnEnterTag(AZ::u32 tagName); - virtual void OnData(const AZ::Debug::DrillerSAXParser::Data& dataNode); - - protected: - TraceMessageDataAggregator* m_data; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageEvents.h b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageEvents.h deleted file mode 100644 index 7188c59f2d..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageEvents.h +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#pragma once - -#include "Source/Driller/DrillerEvent.h" - -#include - -namespace Driller -{ - class TraceMessageEvent - : public DrillerEvent - { - public: - enum EventType - { - ET_ASSERT, - ET_EXCEPTION, - ET_ERROR, - ET_WARNING, - ET_PRINTF, - }; - - AZ_CLASS_ALLOCATOR(TraceMessageEvent, AZ::SystemAllocator, 0) - - TraceMessageEvent(EventType eventType) - : DrillerEvent(eventType) - , m_window(nullptr) - , m_message(nullptr) - , m_windowCRC(0) - {} - - void ComputeCRC() - { - if (m_window) - { - m_windowCRC = AZ::Crc32(m_window); - } - else - { - m_windowCRC = 0; - } - } - - // no stepping as we can just traverse the list of events - virtual void StepForward(Aggregator* data) { (void)data; } - virtual void StepBackward(Aggregator* data) { (void)data; } - - const char* m_window; ///< Name of the message window - const char* m_message; - AZ::u32 m_windowCRC; // so that we dont constantly take a penalty of CRCing for every event when we do the annotations - }; -} diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceOperationTelemetryEvent.h b/Code/Tools/Standalone/Source/Driller/Trace/TraceOperationTelemetryEvent.h deleted file mode 100644 index 10ad51e76b..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceOperationTelemetryEvent.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ -#ifndef DRILLER_TRACE_TRACEOPERATIONTELEMETRYEVENT_H -#define DRILLER_TRACE_TRACEOPERATIONTELEMETRYEVENT_H - -#include "Telemetry/TelemetryEvent.h" - -namespace Driller -{ - class TraceOperationTelemetryEvent - : public Telemetry::TelemetryEvent - { - public: - TraceOperationTelemetryEvent() - : Telemetry::TelemetryEvent("TraceDataViewOperation") - { - } - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.cpp deleted file mode 100644 index 53bdc4fcd1..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.cpp +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "UnsupportedDataAggregator.hxx" -#include - -#include "UnsupportedEvents.h" - -#include - -namespace Driller -{ - UnsupportedDataAggregator::UnsupportedDataAggregator(AZ::u32 drillerId) - : m_parser(drillerId) - , Aggregator(0) - { - m_parser.SetAggregator(this); - } - - float UnsupportedDataAggregator::ValueAtFrame(FrameNumberType frame) - { - const float maxEventsPerFrame = 500.0f; - float numEventsPerFrame = static_cast(NumOfEventsAtFrame(frame)); - return AZStd::GetMin(numEventsPerFrame / maxEventsPerFrame, 1.0f) * 2.0f - 1.0f; - } - - QColor UnsupportedDataAggregator::GetColor() const - { - return QColor(40, 40, 40); - } - - QString UnsupportedDataAggregator::GetName() const - { - char buf[64]; - azsnprintf(buf, AZ_ARRAY_SIZE(buf), "Id: 0x%08x", m_parser.GetDrillerId()); - return buf; - } - - QString UnsupportedDataAggregator::GetChannelName() const - { - return ChannelName(); - } - - QString UnsupportedDataAggregator::GetDescription() const - { - return QString("Unsupported driller"); - } - - QString UnsupportedDataAggregator::GetToolTip() const - { - return QString("Unknown Driller"); - } - - AZ::Uuid UnsupportedDataAggregator::GetID() const - { - return AZ::Uuid("{368D6FB2-9A92-4DFE-8DB4-4F106194BA6F}"); - } - - QWidget* UnsupportedDataAggregator::DrillDownRequest(FrameNumberType frame) - { - (void)frame; - return NULL; - } - void UnsupportedDataAggregator::OptionsRequest() - { - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.hxx deleted file mode 100644 index ec3ea9dbab..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.hxx +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_UNSUPPORTED_DATAAGGREGATOR_H -#define DRILLER_UNSUPPORTED_DATAAGGREGATOR_H - -#if !defined(Q_MOC_RUN) -#include "Source/Driller/DrillerAggregator.hxx" -#include "Source/Driller/DrillerAggregatorOptions.hxx" - -#include "UnsupportedDataParser.h" - -#include -#endif - -namespace Driller -{ - /** - * Unsupported driller data drilling aggregator. - */ - class UnsupportedDataAggregator : public Aggregator - { - Q_OBJECT; - public: - AZ_CLASS_ALLOCATOR(UnsupportedDataAggregator,AZ::SystemAllocator,0); - - UnsupportedDataAggregator(AZ::u32 drillerId); - - virtual AZ::u32 GetDrillerId() const { return m_parser.GetDrillerId(); } - virtual AZ::Debug::DrillerHandlerParser* GetDrillerDataParser() { return &m_parser; } - - static const char* ChannelName() { return "Unsupported"; } - AZ::Crc32 GetChannelId() const override { return AZ::Crc32(ChannelName()); } - - virtual void ApplySettingsFromWorkspace(WorkspaceSettingsProvider*){} - virtual void ActivateWorkspaceSettings(WorkspaceSettingsProvider*){} - virtual void SaveSettingsToWorkspace(WorkspaceSettingsProvider*){} - - ////////////////////////////////////////////////////////////////////////// - // Aggregator - public slots: - float ValueAtFrame( FrameNumberType frame ) override; - QColor GetColor() const override; - QString GetName() const override; - QString GetChannelName() const override; - QString GetDescription() const override; - QString GetToolTip() const override; - AZ::Uuid GetID() const override; - QWidget* DrillDownRequest(FrameNumberType frame) override; - void OptionsRequest() override; - - public: - UnsupportedHandlerParser m_parser; ///< Parser for this aggregator - }; - -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.cpp deleted file mode 100644 index 110b274d6c..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.cpp +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "UnsupportedDataParser.h" -#include "UnsupportedDataAggregator.hxx" -#include "UnsupportedEvents.h" - -namespace Driller -{ - AZ::Debug::DrillerHandlerParser* UnsupportedHandlerParser::OnEnterTag(AZ::u32 tagName) - { - AZ_Assert(m_data, "You must set a valid aggregator before we can process the data!"); - m_data->AddEvent(aznew UnsupportedEvent(tagName)); - return nullptr; - } -} // namespace Driller diff --git a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.h b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.h deleted file mode 100644 index 6e02dfecb4..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_UNSUPPORTED_PARSER_H -#define DRILLER_UNSUPPORTED_PARSER_H - -#include - -namespace Driller -{ - class UnsupportedDataAggregator; - - class UnsupportedHandlerParser - : public AZ::Debug::DrillerHandlerParser - { - public: - UnsupportedHandlerParser(AZ::u32 drillerId) - : DrillerHandlerParser(false) - , m_drillerId(drillerId) - , m_data(nullptr) - { - } - - AZ::u32 GetDrillerId() const { return m_drillerId; } - void SetAggregator(UnsupportedDataAggregator* data) { m_data = data; } - - // AZ::Debug::DrillerHandlerParser - virtual AZ::Debug::DrillerHandlerParser* OnEnterTag(AZ::u32 tagName); - - protected: - AZ::u32 m_drillerId; - UnsupportedDataAggregator* m_data; - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedEvents.h b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedEvents.h deleted file mode 100644 index c4338e927c..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedEvents.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#ifndef DRILLER_UNSUPPORTED_EVENTS_H -#define DRILLER_UNSUPPORTED_EVENTS_H - -#include "Source/Driller/DrillerEvent.h" - -namespace Driller -{ - class UnsupportedEvent - : public DrillerEvent - { - public: - AZ_CLASS_ALLOCATOR(UnsupportedEvent, AZ::SystemAllocator, 0) - - UnsupportedEvent(unsigned int eventId) - : DrillerEvent(eventId) {} - - // no stepping - virtual void StepForward(Aggregator* data) { (void)data; } - virtual void StepBackward(Aggregator* data) { (void)data; } - }; -} - -#endif diff --git a/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.cpp b/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.cpp deleted file mode 100644 index 591fdd3922..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.cpp +++ /dev/null @@ -1,114 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include -#include -#include -#include -#include -#include -#include "Workspace.h" - -namespace Driller -{ - // this is called when the settings are loaded from file. Since the root element is just a workspace settings provider object, - // we verify the cast and return it: - static void OnObjectLoaded(void* classPtr, const AZ::Uuid& classId, const AZ::SerializeContext* sc, WorkspaceSettingsProvider** target) - { - AZ_Assert(classPtr, "classPtr is NULL!"); - AZ_Assert(target, "You must pass the target to OnObjectLoaded"); - WorkspaceSettingsProvider* container = sc->Cast(classPtr, classId); - AZ_Assert(container, "Failed to cast classPtr to WorkspaceSettingsProvider!"); - - *target = container; - } - - // remember to delete your setting objects on shutdown, since you own them! - WorkspaceSettingsProvider::~WorkspaceSettingsProvider() - { - for (auto it = m_WorkspaceSaveData.begin(); it != m_WorkspaceSaveData.end(); ++it) - { - delete it->second; - } - } - - /// Given a filename, attempt to deserialize a WorkspaceSettingsProvider object from it, using the DH objectstream: - WorkspaceSettingsProvider* WorkspaceSettingsProvider::CreateFromFile(const AZStd::string& filename) - { - using namespace AZ; - - SerializeContext* sc = NULL; - EBUS_EVENT_RESULT(sc, ComponentApplicationBus, GetSerializeContext); - AZ_Assert(sc, "Can't retrieve application's serialization context!"); - - WorkspaceSettingsProvider* resultItem = NULL; - IO::FileIOStream readStream(filename.c_str(), AZ::IO::OpenMode::ModeRead); - if (readStream.IsOpen()) - { - ObjectStream::ClassReadyCB readyCB(AZStd::bind(&OnObjectLoaded, AZStd::placeholders::_1, AZStd::placeholders::_2, AZStd::placeholders::_3, &resultItem)); - if (!ObjectStream::LoadBlocking(&readStream, *sc, readyCB)) - { - AZ_TracePrintf("Driller", "
Failed to deserialize the workspace file: '%s'
", filename.c_str()); - } - } - else - { - AZ_TracePrintf("Driller", "
Failed to open the given filename in order to read it in as a workspace: '%s'
", filename.c_str()); - } - - // use the serializer to consume filename. - return resultItem; - } - - /// serializes this object into the given filename for later retrieval. - bool WorkspaceSettingsProvider::WriteToFile(const AZStd::string& filename) - { - using namespace AZ; - - SerializeContext* sc = NULL; - EBUS_EVENT_RESULT(sc, ComponentApplicationBus, GetSerializeContext); - AZ_Assert(sc, "Can't retrieve application's serialization context!"); - - /// note: Will probably throw an error if it fails. Should check all these things before we call in here. - IO::FileIOStream writeStream(filename.c_str(), AZ::IO::OpenMode::ModeWrite); - - if (!writeStream.IsOpen()) - { - // (will have already called AZ_Error) - return false; - } - - ObjectStream* objStream = ObjectStream::Create(&writeStream, *sc, ObjectStream::ST_XML); - bool writtenOk = objStream->WriteClass(this); - if (!writtenOk) - { - AZ_TracePrintf("Driller", "
Failed to write the workspace object to the workspace file: '%s'
", filename.c_str()); - return false; - } - bool streamOk = objStream->Finalize(); - if (!streamOk) - { - AZ_TracePrintf("Driller", "
Failed to finalize the workspace file: '%s'
", filename.c_str()); - return false; - } - - return true; - } - - void WorkspaceSettingsProvider::Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serialize = azrtti_cast(context); - if (serialize) - { - serialize->Class() - ->Version(2) - ->Field("m_WorkspaceSaveData", &WorkspaceSettingsProvider::m_WorkspaceSaveData); - } - } -} diff --git a/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.h b/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.h deleted file mode 100644 index c4fe606490..0000000000 --- a/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.h +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#pragma once - -#include -#include -#include - -namespace Driller -{ - /** - * The purpose of the WorkspaceSettingsProvider is to save and restore a workspace. - * the workspace can then be used to restore a view of data at a later time, given a file containing that workspace data. - * It is generally overlayed on top of the data it is replacing. - */ - class WorkspaceSettingsProvider - { - public: - AZ_RTTI(WorkspaceSettingsProvider, "{E0BFC3FF-B040-49C3-B618-F2C1B7D45230}"); - AZ_CLASS_ALLOCATOR(WorkspaceSettingsProvider, AZ::SystemAllocator, 0); - - /// The main means of interaction: Creating from a given file name (full path) and reading it back from it. - /// Could return NULL if it fails - static WorkspaceSettingsProvider* CreateFromFile(const AZStd::string& filename); - - /// Will return false if it fails. - bool WriteToFile(const AZStd::string& filename); - - /// Convenience function - casts what it finds to T. returns null if it cannot find that setting. - template - T* FindSetting(AZ::u32 key) - { - auto it = m_WorkspaceSaveData.find(key); - if (it == m_WorkspaceSaveData.end()) - { - return NULL; - } - - return AZ::RttiCast(it->second); - } - - /// Convenience function - creates a new T, will always succeed unless critical out of memory error or exception. - template - T* CreateSetting(AZ::u32 key) - { - AZ::UserSettings* oldSetting = FindSetting(key); - if (oldSetting != NULL) - { - AZ_WarningOnce("Driller", false, "A workspace save data is being written to a save file even though that CRC key already exists: 0x%08x - should not occur\n", key); - m_WorkspaceSaveData.erase(key); - delete oldSetting; - } - - T* newSetting = aznew T(); - m_WorkspaceSaveData[key] = newSetting; - return newSetting; - } - - static void Reflect(AZ::ReflectContext* context); - virtual ~WorkspaceSettingsProvider(); - - protected: - - // we internally store our data in a map of CRC name to pointer. - typedef AZStd::unordered_map SavedWorkspaceMap; - SavedWorkspaceMap m_WorkspaceSaveData; - }; -} diff --git a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.cpp b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.cpp index 8fadc230cd..977b7a4d29 100644 --- a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.cpp +++ b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.cpp @@ -130,12 +130,8 @@ namespace LUAEditor return Qt::ItemIsEnabled | Qt::ItemIsSelectable; } - QVariant CompletionModel::headerData(int section, Qt::Orientation orientation, int role) const + QVariant CompletionModel::headerData([[maybe_unused]] int section, [[maybe_unused]] Qt::Orientation orientation, [[maybe_unused]] int role) const { - section; - orientation; - role; - return QVariant(); } diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.cpp index 8cce681a74..5b47ee136a 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.cpp @@ -67,10 +67,8 @@ namespace LUAEditor OnBreakpointLineDeleted.clear(); } - void LUAEditorBreakpointWidget::paintEvent(QPaintEvent* paintEvent) + void LUAEditorBreakpointWidget::paintEvent([[maybe_unused]] QPaintEvent* paintEvent) { - paintEvent; - QPainter p(this); auto colors = AZ::UserSettings::CreateFind(AZ_CRC("LUA Editor Text Settings", 0xb6e15565), AZ::UserSettings::CT_GLOBAL); diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorContext.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorContext.cpp index 0c9b3a1d77..f36724ee1a 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorContext.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorContext.cpp @@ -950,7 +950,6 @@ namespace LUAEditor newAssetName += ".lua"; } - AZ::Data::AssetType assetType = AZ::AzTypeInfo::Uuid(); AZ::Data::AssetId catalogAssetId; EBUS_EVENT_RESULT(catalogAssetId, AZ::Data::AssetCatalogRequestBus, GetAssetIdByPath, newAssetName.c_str(), AZ::AzTypeInfo::Uuid(), false); @@ -1021,7 +1020,7 @@ namespace LUAEditor { AZ_TracePrintf(LUAEditorDebugName, AZStd::string::format("LUAEditor OnSaveDocumentAs" "%s\n", assetId.c_str()).c_str()); - DocumentInfoMap::iterator docInfoIter = m_documentInfoMap.find(assetId); + [[maybe_unused]] DocumentInfoMap::iterator docInfoIter = m_documentInfoMap.find(assetId); AZ_Assert(docInfoIter != m_documentInfoMap.end(), "LUAEditor OnSaveDocumentAs() : Cant find Document Info."); OnSaveDocument(assetId, bCloseAfterSave, true); @@ -2419,7 +2418,7 @@ namespace LUAEditor std::regex errorRegex(".+\\.lua:(\\d+):(.*)"); AzToolsFramework::Logging::LogLine::ParseLog(logResult.GetValue().c_str(), logResult.GetValue().size(), - [this, &msg, ¤tAsset, &errorRegex](AzToolsFramework::Logging::LogLine& logLine) + [this, ¤tAsset, &errorRegex](AzToolsFramework::Logging::LogLine& logLine) { if ((logLine.GetLogType() == AzToolsFramework::Logging::LogLine::TYPE_WARNING) || (logLine.GetLogType() == AzToolsFramework::Logging::LogLine::TYPE_ERROR)) { diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.cpp index 69108a1ad2..c775ddc0ba 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.cpp @@ -80,7 +80,7 @@ namespace LUAEditor auto pState = AZ::UserSettings::CreateFind(AZ_CRC("FindInCurrent", 0xba0962af), AZ::UserSettings::CT_LOCAL); m_gui->wrapCheckBox->setChecked((pState ? pState->m_findWrap : true)); - connect(m_gui->wrapCheckBox, &QCheckBox::stateChanged, this, [this](int newState) + connect(m_gui->wrapCheckBox, &QCheckBox::stateChanged, this, [](int newState) { auto pState = AZ::UserSettings::CreateFind(AZ_CRC("FindInCurrent", 0xba0962af), AZ::UserSettings::CT_LOCAL); pState->m_findWrap = (newState == Qt::Checked); @@ -350,7 +350,6 @@ namespace LUAEditor void LUAEditorFindDialog::FindInView(LUAViewWidget* pLUAViewWidget, QListWidget* pCurrentFindListView) { - pCurrentFindListView; if (!pLUAViewWidget) { return; @@ -373,8 +372,6 @@ namespace LUAEditor void LUAEditorFindDialog::FindNextInView(LUAViewWidget::FindOperation* operation, LUAViewWidget* pLUAViewWidget, QListWidget* pCurrentFindListView) { - pLUAViewWidget; - pCurrentFindListView; int line = 0; int index = 0; pLUAViewWidget->GetCursorPosition(line, index); diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.cpp index 98bf18e7ca..43257f66f2 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.cpp @@ -31,10 +31,8 @@ namespace LUAEditor { } - void FoldingWidget::paintEvent(QPaintEvent* paintEvent) + void FoldingWidget::paintEvent([[maybe_unused]] QPaintEvent* paintEvent) { - paintEvent; - auto colors = AZ::UserSettings::CreateFind(AZ_CRC("LUA Editor Text Settings", 0xb6e15565), AZ::UserSettings::CT_GLOBAL); auto cursor = m_textEdit->textCursor(); diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.cpp index 45484f2815..ffbc5a445c 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.cpp @@ -213,7 +213,7 @@ namespace LUAEditor auto newState = AZ::UserSettings::CreateFind(AZ_CRC("LUA EDITOR MAIN WINDOW STATE", 0xa181bc4a), AZ::UserSettings::CT_LOCAL); m_gui->actionAutoReloadUnmodifiedFiles->setChecked(newState->m_bAutoReloadUnmodifiedFiles); - connect(m_gui->actionAutoReloadUnmodifiedFiles, &QAction::triggered, this, [this](bool newValue) + connect(m_gui->actionAutoReloadUnmodifiedFiles, &QAction::triggered, this, [](bool newValue) { auto newState = AZ::UserSettings::CreateFind(AZ_CRC("LUA EDITOR MAIN WINDOW STATE", 0xa181bc4a), AZ::UserSettings::CT_LOCAL); newState->m_bAutoReloadUnmodifiedFiles = newValue; @@ -2394,7 +2394,6 @@ namespace LUAEditor // if we have any elements, the last element is top right aligned: QLayoutItem* pItem = children[children.size() - 1]; QSize lastItemSize = pItem->minimumSize(); - QPoint topRight = effectiveRect.topRight(); const int magicalRightEdgeOffset = pItem->widget()->style()->pixelMetric(QStyle::PM_ScrollBarExtent); QRect topRightCorner(effectiveRect.topRight() - QPoint(lastItemSize.width() + magicalRightEdgeOffset, 0) + QPoint(-2, 2), lastItemSize); diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.cpp index a0c4d175a7..29229d36d0 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.cpp @@ -16,9 +16,8 @@ namespace LUAEditor namespace { template - void CreateTypes(Container& container) + void CreateTypes([[maybe_unused]] Container& container) { - container; } template @@ -44,11 +43,11 @@ namespace LUAEditor { public: virtual ~BaseParserState() {} - virtual bool IsMultilineState(LUASyntaxHighlighter::StateMachine& machine) const { (void*)&machine; return false; } - virtual void StartState(LUASyntaxHighlighter::StateMachine& machine) { (void*)&machine; } + virtual bool IsMultilineState([[maybe_unused]] LUASyntaxHighlighter::StateMachine& machine) const { return false; } + virtual void StartState([[maybe_unused]] LUASyntaxHighlighter::StateMachine& machine) {} //note you only get 13 bits of usable space here. see QTBlockState m_syntaxHighlighterStateExtra virtual AZ::u16 GetSaveState() const { return 0; } - virtual void SetSaveState(AZ::u16 state) { state; } + virtual void SetSaveState([[maybe_unused]] AZ::u16 state) {} virtual void Parse(LUASyntaxHighlighter::StateMachine& machine, const QChar& nextChar) = 0; }; @@ -87,7 +86,7 @@ namespace LUAEditor class LongCommentParserState : public BaseParserState { - bool IsMultilineState(LUASyntaxHighlighter::StateMachine& machine) const override { (void*)&machine; return true; } + bool IsMultilineState([[maybe_unused]] LUASyntaxHighlighter::StateMachine& machine) const override { return true; } void StartState(LUASyntaxHighlighter::StateMachine& machine) override; AZ::u16 GetSaveState() const override { return m_bracketLevel; } void SetSaveState(AZ::u16 state) override; @@ -341,9 +340,8 @@ namespace LUAEditor } } - void ShortCommentParserState::StartState(LUASyntaxHighlighter::StateMachine& machine) + void ShortCommentParserState::StartState([[maybe_unused]] LUASyntaxHighlighter::StateMachine& machine) { - machine; m_mightBeLong = true; } @@ -365,10 +363,8 @@ namespace LUAEditor m_endNextChar = false; } - void LongCommentParserState::Parse(LUASyntaxHighlighter::StateMachine& machine, const QChar& nextChar) + void LongCommentParserState::Parse(LUASyntaxHighlighter::StateMachine& machine, [[maybe_unused]] const QChar& nextChar) { - nextChar; - if (m_endNextChar) { machine.SetState(ParserStates::Null); diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorView.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorView.cpp index 092d3f4b8c..18d12f292c 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorView.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorView.cpp @@ -1200,8 +1200,6 @@ namespace LUAEditor void LUAViewWidget::focusInEvent(QFocusEvent* pEvent) { - pEvent; - QWidget::focusInEvent(pEvent); m_gui->m_luaTextEdit->setFocus(); } diff --git a/Code/Tools/Standalone/Source/ProfilerApplication.cpp b/Code/Tools/Standalone/Source/ProfilerApplication.cpp deleted file mode 100644 index b42c5a21a1..0000000000 --- a/Code/Tools/Standalone/Source/ProfilerApplication.cpp +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include "ProfilerApplication.h" - -#include -#include - -namespace Driller -{ - void Application::RegisterCoreComponents() - { - StandaloneTools::BaseApplication::RegisterCoreComponents(); - - Driller::Context::CreateDescriptor(); - RegisterComponentDescriptor(AzFramework::TargetManagementComponent::CreateDescriptor()); - } - - void Application::CreateApplicationComponents() - { - StandaloneTools::BaseApplication::CreateApplicationComponents(); - EnsureComponentCreated(Driller::Context::RTTI_Type()); - EnsureComponentCreated(AzFramework::TargetManagementComponent::RTTI_Type()); - } - - void Application::SetSettingsRegistrySpecializations(AZ::SettingsRegistryInterface::Specializations& specializations) - { - StandaloneTools::BaseApplication::SetSettingsRegistrySpecializations(specializations); - specializations.Append("driller"); - } -} diff --git a/Code/Tools/Standalone/Source/ProfilerApplication.h b/Code/Tools/Standalone/Source/ProfilerApplication.h deleted file mode 100644 index b55f426da9..0000000000 --- a/Code/Tools/Standalone/Source/ProfilerApplication.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#pragma once - -#include - -namespace Driller -{ - class Application - : public StandaloneTools::BaseApplication - { - public: - Application(int &argc, char **argv) : BaseApplication(argc, argv) {} - - protected: - void RegisterCoreComponents() override; - void CreateApplicationComponents() override; - void SetSettingsRegistrySpecializations(AZ::SettingsRegistryInterface::Specializations& specializations) override; - }; -} diff --git a/Code/Tools/Standalone/profiler_files.cmake b/Code/Tools/Standalone/profiler_files.cmake deleted file mode 100644 index 7106c1b646..0000000000 --- a/Code/Tools/Standalone/profiler_files.cmake +++ /dev/null @@ -1,190 +0,0 @@ -# -# Copyright (c) Contributors to the Open 3D Engine Project. -# For complete copyright and license terms please see the LICENSE at the root of this distribution. -# -# SPDX-License-Identifier: Apache-2.0 OR MIT -# -# - -set(FILES - Source/ProfilerApplication.h - Source/ProfilerApplication.cpp - Source/Editor/ProfilerEditor.h - Source/Editor/ProfilerEditor.cpp - Source/Driller/Axis.cpp - Source/Driller/Axis.hxx - Source/Driller/AreaChart.cpp - Source/Driller/AreaChart.hxx - Source/Driller/ChannelConfigurationDialog.cpp - Source/Driller/ChannelConfigurationDialog.hxx - Source/Driller/ChannelConfigurationWidget.cpp - Source/Driller/ChannelConfigurationWidget.hxx - Source/Driller/ChannelControl.cpp - Source/Driller/ChannelControl.hxx - Source/Driller/ChannelControl.ui - Source/Driller/ChannelProfilerWidget.cpp - Source/Driller/ChannelProfilerWidget.hxx - Source/Driller/ChannelProfilerWidget.ui - Source/Driller/ChannelDataView.cpp - Source/Driller/ChannelDataView.hxx - Source/Driller/ChartNumberFormats.cpp - Source/Driller/ChartNumberFormats.h - Source/Driller/ChartTypes.cpp - Source/Driller/ChartTypes.hxx - Source/Driller/CollapsiblePanel.cpp - Source/Driller/CollapsiblePanel.hxx - Source/Driller/CollapsiblePanel.ui - Source/Driller/CombinedEventsControl.cpp - Source/Driller/CombinedEventsControl.hxx - Source/Driller/CustomizeCSVExportWidget.cpp - Source/Driller/CustomizeCSVExportWidget.hxx - Source/Driller/CSVExportSettings.h - Source/Driller/DoubleListSelector.cpp - Source/Driller/DoubleListSelector.hxx - Source/Driller/DoubleListSelector.ui - Source/Driller/DrillerAggregator.cpp - Source/Driller/DrillerAggregator.hxx - Source/Driller/DrillerAggregatorOptions.hxx - Source/Driller/DrillerCaptureWindow.cpp - Source/Driller/DrillerCaptureWindow.hxx - Source/Driller/DrillerCaptureWindow.ui - Source/Driller/DrillerContext.cpp - Source/Driller/DrillerContext.h - Source/Driller/DrillerContextInterface.h - Source/Driller/DrillerDataContainer.cpp - Source/Driller/DrillerDataContainer.h - Source/Driller/DrillerDataTypes.h - Source/Driller/DrillerEvent.cpp - Source/Driller/DrillerEvent.h - Source/Driller/DrillerMainChannelsView.ui - Source/Driller/DrillerMainWindow.cpp - Source/Driller/DrillerMainWindow.hxx - Source/Driller/DrillerMainWindow.ui - Source/Driller/DrillerMainWindowMessages.cpp - Source/Driller/DrillerMainWindowMessages.h - Source/Driller/DrillerNetworkMessages.h - Source/Driller/DrillerOperationTelemetryEvent.cpp - Source/Driller/DrillerOperationTelemetryEvent.h - Source/Driller/FilteredListView.cpp - Source/Driller/FilteredListView.hxx - Source/Driller/FilteredListView.ui - Source/Driller/GenericCustomizeCSVExportWidget.cpp - Source/Driller/GenericCustomizeCSVExportWidget.hxx - Source/Driller/GenericCustomizeCSVExportWidget.ui - Source/Driller/RacetrackChart.cpp - Source/Driller/RacetrackChart.hxx - Source/Driller/StripChart.cpp - Source/Driller/StripChart.hxx - Source/Driller/Annotations/AnnotationHeaderView.cpp - Source/Driller/Annotations/AnnotationHeaderView.hxx - Source/Driller/Annotations/AnnotationHeaderView.ui - Source/Driller/Annotations/Annotations.cpp - Source/Driller/Annotations/Annotations.hxx - Source/Driller/Annotations/AnnotationsDataView.cpp - Source/Driller/Annotations/AnnotationsDataView.hxx - Source/Driller/Annotations/AnnotationsDataView_Events.cpp - Source/Driller/Annotations/AnnotationsDataView_Events.hxx - Source/Driller/Annotations/AnnotationsHeaderView_Events.cpp - Source/Driller/Annotations/AnnotationsHeaderView_Events.hxx - Source/Driller/Annotations/ConfigureAnnotationsDialog.ui - Source/Driller/Annotations/ConfigureAnnotationsWindow.cpp - Source/Driller/Annotations/ConfigureAnnotationsWindow.hxx - Source/Driller/Carrier/CarrierDataAggregator.cpp - Source/Driller/Carrier/CarrierDataAggregator.hxx - Source/Driller/Carrier/CarrierDataEvents.h - Source/Driller/Carrier/CarrierDataParser.cpp - Source/Driller/Carrier/CarrierDataParser.h - Source/Driller/Carrier/CarrierDataView.cpp - Source/Driller/Carrier/CarrierDataView.hxx - Source/Driller/Carrier/CarrierDataView.ui - Source/Driller/Carrier/CarrierOperationTelemetryEvent.h - Source/Driller/EventTrace/EventTraceDataAggregator.cpp - Source/Driller/EventTrace/EventTraceDataAggregator.h - Source/Driller/EventTrace/EventTraceDataParser.cpp - Source/Driller/EventTrace/EventTraceDataParser.h - Source/Driller/EventTrace/EventTraceEvents.h - Source/Driller/Memory/MemoryDataAggregator.cpp - Source/Driller/Memory/MemoryDataAggregator.hxx - Source/Driller/Memory/MemoryDataParser.cpp - Source/Driller/Memory/MemoryDataParser.h - Source/Driller/Memory/MemoryDataView.cpp - Source/Driller/Memory/MemoryDataView.hxx - Source/Driller/Memory/MemoryDataView.ui - Source/Driller/Memory/MemoryEvents.cpp - Source/Driller/Memory/MemoryEvents.h - Source/Driller/Profiler/ProfilerDataAggregator.cpp - Source/Driller/Profiler/ProfilerDataAggregator.hxx - Source/Driller/Profiler/ProfilerDataPanel.cpp - Source/Driller/Profiler/ProfilerDataPanel.hxx - Source/Driller/Profiler/ProfilerDataParser.cpp - Source/Driller/Profiler/ProfilerDataParser.h - Source/Driller/Profiler/ProfilerDataView.cpp - Source/Driller/Profiler/ProfilerDataView.hxx - Source/Driller/Profiler/ProfilerDataView.ui - Source/Driller/Profiler/ProfilerEvents.cpp - Source/Driller/Profiler/ProfilerEvents.h - Source/Driller/Profiler/ProfilerOperationTelemetryEvent.h - Source/Driller/Rendering/VRAM/VRAMDataAggregator.cpp - Source/Driller/Rendering/VRAM/VRAMDataAggregator.hxx - Source/Driller/Rendering/VRAM/VRAMDataParser.cpp - Source/Driller/Rendering/VRAM/VRAMDataParser.h - Source/Driller/Rendering/VRAM/VRAMEvents.cpp - Source/Driller/Rendering/VRAM/VRAMEvents.h - Source/Driller/Replica/BaseDetailViewSavedState.h - Source/Driller/Replica/BaseDetailViewQObject.cpp - Source/Driller/Replica/BaseDetailViewQObject.hxx - Source/Driller/Replica/BaseDetailView.inl - Source/Driller/Replica/BaseDetailView.h - Source/Driller/Replica/basedetailview.ui - Source/Driller/Replica/OverallReplicaDetailView.cpp - Source/Driller/Replica/OverallReplicaDetailView.hxx - Source/Driller/Replica/overallreplicadetailview.ui - Source/Driller/Replica/ReplicaBandwidthChartData.cpp - Source/Driller/Replica/ReplicaBandwidthChartData.h - Source/Driller/Replica/ReplicaChunkTypeDetailView.cpp - Source/Driller/Replica/ReplicaChunkTypeDetailView.h - Source/Driller/Replica/ReplicaChunkUsageDataContainers.cpp - Source/Driller/Replica/ReplicaChunkUsageDataContainers.h - Source/Driller/Replica/ReplicaDataAggregator.cpp - Source/Driller/Replica/ReplicaDataAggregator.hxx - Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.cpp - Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.hxx - Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.ui - Source/Driller/Replica/ReplicaDataEvents.h - Source/Driller/Replica/ReplicaDataParser.cpp - Source/Driller/Replica/ReplicaDataParser.h - Source/Driller/Replica/ReplicaDataView.cpp - Source/Driller/Replica/ReplicaDataView.hxx - Source/Driller/Replica/replicadataview.ui - Source/Driller/Replica/ReplicaDataViewConfigDialog.ui - Source/Driller/Replica/ReplicaDetailView.cpp - Source/Driller/Replica/ReplicaDetailView.h - Source/Driller/Replica/ReplicaDisplayHelpers.cpp - Source/Driller/Replica/ReplicaDisplayHelpers.h - Source/Driller/Replica/ReplicaDisplayTypes.cpp - Source/Driller/Replica/ReplicaDisplayTypes.h - Source/Driller/Replica/ReplicaDrillerConfigToolbar.cpp - Source/Driller/Replica/ReplicaDrillerConfigToolbar.hxx - Source/Driller/Replica/ReplicaDrillerConfigToolbar.ui - Source/Driller/Replica/ReplicaOperationTelemetryEvent.h - Source/Driller/Replica/ReplicaTreeViewModel.cpp - Source/Driller/Replica/ReplicaTreeViewModel.hxx - Source/Driller/Replica/ReplicaUsageDataContainers.cpp - Source/Driller/Replica/ReplicaUsageDataContainers.h - Source/Driller/Trace/TraceDrillerDialog.cpp - Source/Driller/Trace/TraceDrillerDialog.hxx - Source/Driller/Trace/TraceDrillerDialog.ui - Source/Driller/Trace/TraceMessageDataAggregator.cpp - Source/Driller/Trace/TraceMessageDataAggregator.hxx - Source/Driller/Trace/TraceMessageDataParser.cpp - Source/Driller/Trace/TraceMessageDataParser.h - Source/Driller/Trace/TraceMessageEvents.h - Source/Driller/Trace/TraceOperationTelemetryEvent.h - Source/Driller/Unsupported/UnsupportedDataAggregator.cpp - Source/Driller/Unsupported/UnsupportedDataAggregator.hxx - Source/Driller/Unsupported/UnsupportedDataParser.cpp - Source/Driller/Unsupported/UnsupportedDataParser.h - Source/Driller/Unsupported/UnsupportedEvents.h - Source/Driller/Workspaces/Workspace.cpp - Source/Driller/Workspaces/Workspace.h -) diff --git a/Code/Tools/TestImpactFramework/Frontend/Console/Code/Source/TestImpactConsoleUtils.cpp b/Code/Tools/TestImpactFramework/Frontend/Console/Code/Source/TestImpactConsoleUtils.cpp index 47cdca11b1..61fb0a1707 100644 --- a/Code/Tools/TestImpactFramework/Frontend/Console/Code/Source/TestImpactConsoleUtils.cpp +++ b/Code/Tools/TestImpactFramework/Frontend/Console/Code/Source/TestImpactConsoleUtils.cpp @@ -7,6 +7,7 @@ */ #include +#include namespace TestImpact { diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Include/TestImpactFramework/TestImpactClientSequenceReport.h b/Code/Tools/TestImpactFramework/Runtime/Code/Include/TestImpactFramework/TestImpactClientSequenceReport.h index 1ddd1042e6..b39c2c8bcb 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Include/TestImpactFramework/TestImpactClientSequenceReport.h +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Include/TestImpactFramework/TestImpactClientSequenceReport.h @@ -368,7 +368,7 @@ namespace TestImpact const AZStd::vector& draftedTestRuns, TestRunReport&& selectedTestRunReport, TestRunReport&& draftedTestRunReport) - : SequenceReportBase( + : SequenceReportBase ( type, maxConcurrency, testTargetTimeout, @@ -397,57 +397,57 @@ namespace TestImpact // SequenceReport overrides ... AZStd::chrono::milliseconds GetDuration() const override { - return SequenceReportBase::GetDuration() + m_draftedTestRunReport.GetDuration(); + return GetDuration() + m_draftedTestRunReport.GetDuration(); } TestSequenceResult GetResult() const override { - return CalculateMultiTestSequenceResult({ SequenceReportBase::GetResult(), m_draftedTestRunReport.GetResult() }); + return CalculateMultiTestSequenceResult({ GetResult(), m_draftedTestRunReport.GetResult() }); } size_t GetTotalNumTestRuns() const override { - return SequenceReportBase::GetTotalNumTestRuns() + m_draftedTestRunReport.GetTotalNumTestRuns(); + return GetTotalNumTestRuns() + m_draftedTestRunReport.GetTotalNumTestRuns(); } size_t GetTotalNumPassingTests() const override { - return SequenceReportBase::GetTotalNumPassingTests() + m_draftedTestRunReport.GetTotalNumPassingTests(); + return GetTotalNumPassingTests() + m_draftedTestRunReport.GetTotalNumPassingTests(); } size_t GetTotalNumFailingTests() const override { - return SequenceReportBase::GetTotalNumFailingTests() + m_draftedTestRunReport.GetTotalNumFailingTests(); + return GetTotalNumFailingTests() + m_draftedTestRunReport.GetTotalNumFailingTests(); } size_t GetTotalNumDisabledTests() const override { - return SequenceReportBase::GetTotalNumDisabledTests() + m_draftedTestRunReport.GetTotalNumDisabledTests(); + return GetTotalNumDisabledTests() + m_draftedTestRunReport.GetTotalNumDisabledTests(); } size_t GetTotalNumPassingTestRuns() const override { - return SequenceReportBase::GetTotalNumPassingTestRuns() + m_draftedTestRunReport.GetNumPassingTestRuns(); + return GetTotalNumPassingTestRuns() + m_draftedTestRunReport.GetNumPassingTestRuns(); } size_t GetTotalNumFailingTestRuns() const override { - return SequenceReportBase::GetTotalNumFailingTestRuns() + m_draftedTestRunReport.GetNumFailingTestRuns(); + return GetTotalNumFailingTestRuns() + m_draftedTestRunReport.GetNumFailingTestRuns(); } size_t GetTotalNumExecutionFailureTestRuns() const override { - return SequenceReportBase::GetTotalNumExecutionFailureTestRuns() + m_draftedTestRunReport.GetNumExecutionFailureTestRuns(); + return GetTotalNumExecutionFailureTestRuns() + m_draftedTestRunReport.GetNumExecutionFailureTestRuns(); } size_t GetTotalNumTimedOutTestRuns() const override { - return SequenceReportBase::GetTotalNumTimedOutTestRuns() + m_draftedTestRunReport.GetNumTimedOutTestRuns(); + return GetTotalNumTimedOutTestRuns() + m_draftedTestRunReport.GetNumTimedOutTestRuns(); } size_t GetTotalNumUnexecutedTestRuns() const override { - return SequenceReportBase::GetTotalNumUnexecutedTestRuns() + m_draftedTestRunReport.GetNumUnexecutedTestRuns(); + return GetTotalNumUnexecutedTestRuns() + m_draftedTestRunReport.GetNumUnexecutedTestRuns(); } private: AZStd::vector m_draftedTestRuns; diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Include/TestImpactFramework/TestImpactRepoPath.h b/Code/Tools/TestImpactFramework/Runtime/Code/Include/TestImpactFramework/TestImpactRepoPath.h index 86f4a98b78..e784c43500 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Include/TestImpactFramework/TestImpactRepoPath.h +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Include/TestImpactFramework/TestImpactRepoPath.h @@ -26,11 +26,11 @@ namespace TestImpact constexpr RepoPath() = default; constexpr RepoPath(const RepoPath&) = default; constexpr RepoPath(RepoPath&&) noexcept = default; - constexpr RepoPath::RepoPath(const string_type& path) noexcept; - constexpr RepoPath::RepoPath(const string_view_type& path) noexcept; - constexpr RepoPath::RepoPath(const value_type* path) noexcept; - constexpr RepoPath::RepoPath(const AZ::IO::PathView& path); - constexpr RepoPath::RepoPath(const AZ::IO::Path& path); + constexpr RepoPath(const string_type& path) noexcept; + constexpr RepoPath(const string_view_type& path) noexcept; + constexpr RepoPath(const value_type* path) noexcept; + constexpr RepoPath(const AZ::IO::PathView& path); + constexpr RepoPath(const AZ::IO::Path& path); RepoPath& operator=(const RepoPath&) noexcept = default; RepoPath& operator=(const string_type&) noexcept; diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Artifact/Factory/TestImpactTestRunSuiteFactory.cpp b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Artifact/Factory/TestImpactTestRunSuiteFactory.cpp index f5d7d3a8a2..b7a44d43ea 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Artifact/Factory/TestImpactTestRunSuiteFactory.cpp +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Artifact/Factory/TestImpactTestRunSuiteFactory.cpp @@ -64,8 +64,9 @@ namespace TestImpact return !name.starts_with("DISABLED_") && name.find("/DISABLED_") == AZStd::string::npos; }; - const auto getDuration = [&Keys](const AZ::rapidxml::xml_node<>* node) + const auto getDuration = [Keys](const AZ::rapidxml::xml_node<>* node) { + AZ_UNUSED(Keys); const AZStd::string duration = node->first_attribute(Keys[DurationKey])->value(); return AZStd::chrono::milliseconds(static_cast(AZStd::stof(duration) * 1000.f)); }; @@ -78,8 +79,9 @@ namespace TestImpact for (auto testcase_node = testsuite_node->first_node(Keys[TestCaseKey]); testcase_node; testcase_node = testcase_node->next_sibling()) { - const auto getStatus = [&Keys](const AZ::rapidxml::xml_node<>* node) + const auto getStatus = [Keys](const AZ::rapidxml::xml_node<>* node) { + AZ_UNUSED(Keys); const AZStd::string status = node->first_attribute(Keys[StatusKey])->value(); if (status == Keys[RunKey]) { diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Dependency/TestImpactTestSelectorAndPrioritizer.cpp b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Dependency/TestImpactTestSelectorAndPrioritizer.cpp index 74d8f354bd..7aae55a20a 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Dependency/TestImpactTestSelectorAndPrioritizer.cpp +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Dependency/TestImpactTestSelectorAndPrioritizer.cpp @@ -87,7 +87,7 @@ namespace TestImpact { for (const auto& parentTarget : sourceDependency.GetParentTargets()) { - AZStd::visit([&selectedTestTargetMap, &sourceDependency, this](auto&& target) + AZStd::visit([&selectedTestTargetMap, &sourceDependency](auto&& target) { if constexpr (IsProductionTarget) { @@ -129,7 +129,7 @@ namespace TestImpact { for (const auto& parentTarget : sourceDependency.GetParentTargets()) { - AZStd::visit([&selectedTestTargetMap, &sourceDependency, this](auto&& target) + AZStd::visit([&selectedTestTargetMap](auto&& target) { if constexpr (IsTestTarget) { diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Platform/Windows/TestEngine/JobRunner/TestImpactWin32_TestTargetExtension.cpp b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Platform/Windows/TestEngine/JobRunner/TestImpactWin32_TestTargetExtension.cpp index 57647bb118..68beae5a0a 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Platform/Windows/TestEngine/JobRunner/TestImpactWin32_TestTargetExtension.cpp +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Platform/Windows/TestEngine/JobRunner/TestImpactWin32_TestTargetExtension.cpp @@ -14,8 +14,8 @@ namespace TestImpact { AZStd::string GetTestTargetExtension(const TestTarget* testTarget) { - static constexpr char* const standAloneExtension = ".exe"; - static constexpr char* const testRunnerExtension = ".dll"; + static constexpr const char* const standAloneExtension = ".exe"; + static constexpr const char* const testRunnerExtension = ".dll"; switch (const auto launchMethod = testTarget->GetLaunchMethod(); launchMethod) { diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Process/JobRunner/TestImpactProcessJobRunner.h b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Process/JobRunner/TestImpactProcessJobRunner.h index 6a898931a0..8144615aeb 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Process/JobRunner/TestImpactProcessJobRunner.h +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Process/JobRunner/TestImpactProcessJobRunner.h @@ -107,7 +107,7 @@ namespace TestImpact } // Wrapper around low-level process launch callback to gather job meta-data and present a simplified callback interface to the client - const ProcessLaunchCallback processLaunchCallback = [&jobCallback, &jobInfos, &metas]( + const ProcessLaunchCallback processLaunchCallback = [&jobCallback, &metas]( TestImpact::ProcessId pid, TestImpact::LaunchResult launchResult, AZStd::chrono::high_resolution_clock::time_point createTime) @@ -126,7 +126,7 @@ namespace TestImpact }; // Wrapper around low-level process exit callback to gather job meta-data and present a simplified callback interface to the client - const ProcessExitCallback processExitCallback = [&jobCallback, &jobInfos, &metas]( + const ProcessExitCallback processExitCallback = [&jobCallback, &metas]( TestImpact::ProcessId pid, TestImpact::ExitCondition exitCondition, TestImpact::ReturnCode returnCode, diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Process/Scheduler/TestImpactProcessScheduler.cpp b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Process/Scheduler/TestImpactProcessScheduler.cpp index 94df662a1d..683e2bfb23 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Process/Scheduler/TestImpactProcessScheduler.cpp +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Process/Scheduler/TestImpactProcessScheduler.cpp @@ -270,7 +270,6 @@ namespace TestImpact { processInFlight.m_process->Terminate(ProcessTerminateErrorCode); AccumulateProcessStdContent(processInFlight); - const ProcessId processId = processInFlight.m_process->GetProcessInfo().GetId(); if (isCallingBackToClient) { diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Enumeration/TestImpactTestEnumerator.cpp b/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Enumeration/TestImpactTestEnumerator.cpp index 756b1c75d6..dba1053ee1 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Enumeration/TestImpactTestEnumerator.cpp +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Enumeration/TestImpactTestEnumerator.cpp @@ -151,7 +151,7 @@ namespace TestImpact } */ - const auto payloadGenerator = [this](const JobDataMap& jobDataMap) + const auto payloadGenerator = [](const JobDataMap& jobDataMap) { PayloadMap enumerations; for (const auto& [jobId, jobData] : jobDataMap) diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Run/TestImpactInstrumentedTestRunner.cpp b/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Run/TestImpactInstrumentedTestRunner.cpp index bf7e4d2c34..51a3445a53 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Run/TestImpactInstrumentedTestRunner.cpp +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Run/TestImpactInstrumentedTestRunner.cpp @@ -40,7 +40,7 @@ namespace TestImpact AZStd::optional runnerTimeout, AZStd::optional clientCallback) { - const auto payloadGenerator = [this](const JobDataMap& jobDataMap) + const auto payloadGenerator = [](const JobDataMap& jobDataMap) { PayloadMap runs; for (const auto& [jobId, jobData] : jobDataMap) diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Run/TestImpactTestRunSerializer.cpp b/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Run/TestImpactTestRunSerializer.cpp index c0ca2caeae..5e385c9c12 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Run/TestImpactTestRunSerializer.cpp +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Run/TestImpactTestRunSerializer.cpp @@ -154,8 +154,6 @@ namespace TestImpact const AZStd::chrono::milliseconds suiteDuration = AZStd::chrono::milliseconds{suite[TestRunFields::Keys[TestRunFields::DurationKey]].GetUint()}; // Suite enabled - const bool enabled = suite[TestRunFields::Keys[TestRunFields::EnabledKey]].GetBool(); - testSuites.emplace_back(TestRunSuite{ suite[TestRunFields::Keys[TestRunFields::NameKey]].GetString(), suite[TestRunFields::Keys[TestRunFields::EnabledKey]].GetBool(), diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Run/TestImpactTestRunner.cpp b/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Run/TestImpactTestRunner.cpp index a480f4aa4a..28c38d05d4 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Run/TestImpactTestRunner.cpp +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/Run/TestImpactTestRunner.cpp @@ -28,7 +28,7 @@ namespace TestImpact AZStd::optional runnerTimeout, AZStd::optional clientCallback) { - const auto payloadGenerator = [this](const JobDataMap& jobDataMap) + const auto payloadGenerator = [](const JobDataMap& jobDataMap) { PayloadMap runs; for (const auto& [jobId, jobData] : jobDataMap) diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestImpactRuntime.cpp b/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestImpactRuntime.cpp index 515118dd7a..770a1458b8 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestImpactRuntime.cpp +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestImpactRuntime.cpp @@ -323,7 +323,7 @@ namespace TestImpact void Runtime::EnumerateMutatedTestTargets(const ChangeDependencyList& changeDependencyList) { AZStd::vector testTargets; - const auto addMutatedTestTargetsToEnumerationList = [this, &testTargets](const AZStd::vector& sourceDependencies) + const auto addMutatedTestTargetsToEnumerationList = [&testTargets](const AZStd::vector& sourceDependencies) { for (const auto& sourceDependency : sourceDependencies) { diff --git a/Gems/AWSClientAuth/Code/Source/UserManagement/AWSCognitoUserManagementController.cpp b/Gems/AWSClientAuth/Code/Source/UserManagement/AWSCognitoUserManagementController.cpp index 19827f7013..42ee0065ad 100644 --- a/Gems/AWSClientAuth/Code/Source/UserManagement/AWSCognitoUserManagementController.cpp +++ b/Gems/AWSClientAuth/Code/Source/UserManagement/AWSCognitoUserManagementController.cpp @@ -229,7 +229,7 @@ namespace AWSClientAuth AZ::JobContext* jobContext = nullptr; AWSCore::AWSCoreRequestBus::BroadcastResult(jobContext, &AWSCore::AWSCoreRequests::GetDefaultJobContext); - AZ::Job* enableMFAJob = AZ::CreateJobFunction([this, cognitoIdentityProviderClient, accessToken]() + AZ::Job* enableMFAJob = AZ::CreateJobFunction([cognitoIdentityProviderClient, accessToken]() { Aws::CognitoIdentityProvider::Model::SetUserMFAPreferenceRequest confirmForgotPasswordRequest; Aws::CognitoIdentityProvider::Model::SMSMfaSettingsType settings; diff --git a/Gems/AWSClientAuth/Code/Tests/AWSClientAuthGemMock.h b/Gems/AWSClientAuth/Code/Tests/AWSClientAuthGemMock.h index 1bf80522ed..1d2e8bad42 100644 --- a/Gems/AWSClientAuth/Code/Tests/AWSClientAuthGemMock.h +++ b/Gems/AWSClientAuth/Code/Tests/AWSClientAuthGemMock.h @@ -610,7 +610,6 @@ namespace AWSClientAuthUnitTest const char* GetExecutableFolder() const override { return nullptr; } const char* GetAppRoot() const override { return nullptr; } const char* GetEngineRoot() const override { return nullptr; } - AZ::Debug::DrillerManager* GetDrillerManager() override { return nullptr; } void EnumerateEntities(const EntityCallback& /*callback*/) override {} void QueryApplicationType(AZ::ApplicationTypeQuery& /*appType*/) const override {} AZ::SerializeContext* GetSerializeContext() override diff --git a/Gems/AWSClientAuth/cdk/README.md b/Gems/AWSClientAuth/cdk/README.md index 3bc2b59fc1..d0cc966578 100644 --- a/Gems/AWSClientAuth/cdk/README.md +++ b/Gems/AWSClientAuth/cdk/README.md @@ -13,7 +13,7 @@ Run from cdk directory within gem. Optional set up python path to LY Python ``` -set PATH="..\..\..\python\runtime\python-3.7.10-rev1-windows\python\";%PATH% +set PATH="..\..\..\python\runtime\python-3.7.10-rev2-windows\python\";%PATH% ``` This project is set up like a standard Python project. Use python interpreter from Open3d to setup python dependencies diff --git a/Gems/AWSCore/Code/CMakeLists.txt b/Gems/AWSCore/Code/CMakeLists.txt index 8489e38550..5fdefa9f9e 100644 --- a/Gems/AWSCore/Code/CMakeLists.txt +++ b/Gems/AWSCore/Code/CMakeLists.txt @@ -167,8 +167,4 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED) endif() endif() -install(DIRECTORY "Tools/ResourceMappingTool" - DESTINATION "Gems/AWSCore/Code/Tools" - COMPONENT ${CMAKE_INSTALL_DEFAULT_COMPONENT_NAME} - PATTERN "__pycache__" EXCLUDE -) +ly_install_directory(DIRECTORIES Tools/ResourceMappingTool) diff --git a/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingConstants.h b/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingConstants.h index ee052617e3..97eb5b6492 100644 --- a/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingConstants.h +++ b/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingConstants.h @@ -68,7 +68,7 @@ namespace AWSCore }, "AccountIdString": { "type": "string", - "pattern": "^[0-9]{12}$" + "pattern": "^[0-9]{12}$|EMPTY" }, "NonEmptyString": { "type": "string", diff --git a/Gems/AWSCore/Code/Include/Public/Framework/JsonObjectHandler.h b/Gems/AWSCore/Code/Include/Public/Framework/JsonObjectHandler.h index 85461ff644..57eabe3593 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/JsonObjectHandler.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/JsonObjectHandler.h @@ -67,7 +67,6 @@ namespace AWSCore AZStd::string GetContent() { - std::istream::pos_type pos = m_is.tellg(); m_is.seekg(0); std::istreambuf_iterator eos; AZStd::string content{ std::istreambuf_iterator(m_is),eos }; diff --git a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp index 85dd1469cb..712c083e7a 100644 --- a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp +++ b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp @@ -298,7 +298,7 @@ namespace AWSCore { AZ::ModuleManagerRequestBus::Broadcast( &AZ::ModuleManagerRequestBus::Events::EnumerateModules, - [this, &gems](const AZ::ModuleData& moduleData) + [&gems](const AZ::ModuleData& moduleData) { AZ::Entity* moduleEntity = moduleData.GetEntity(); auto moduleEntityName = moduleEntity->GetName(); @@ -338,7 +338,7 @@ namespace AWSCore AZ_Printf("AWSAttributionManager", "AWSAttribution metric submit success"); }, - [this]([[maybe_unused]] ServiceAPI::AWSAttributionRequestJob* failJob) + []([[maybe_unused]] ServiceAPI::AWSAttributionRequestJob* failJob) { AZ_Error("AWSAttributionManager", false, "Metrics send error: %s", failJob->error.message.c_str()); }, diff --git a/Gems/AWSCore/Code/Source/Framework/HttpRequestJob.cpp b/Gems/AWSCore/Code/Source/Framework/HttpRequestJob.cpp index ee9459b9af..7c9ec045e9 100644 --- a/Gems/AWSCore/Code/Source/Framework/HttpRequestJob.cpp +++ b/Gems/AWSCore/Code/Source/Framework/HttpRequestJob.cpp @@ -42,7 +42,7 @@ namespace AWSCore // This will run the code fed to the macro, and then assign 0 to a static int (note the ,0 at the end) #define AWS_CORE_ONCE_PASTE(x) (x) -#define AWS_CORE_ONCE(x) static int AZ_JOIN(init, __LINE__)((AWS_CORE_ONCE_PASTE(x), 0)) +#define AWS_CORE_ONCE(x) [[maybe_unused]] static int AZ_JOIN(init, __LINE__)((AWS_CORE_ONCE_PASTE(x), 0)) #define AWS_CORE_HTTP_METHOD_ENTRY(x) { HttpRequestJob::HttpMethod::HTTP_##x, HttpMethodInfo{ Aws::Http::HttpMethod::HTTP_##x, #x } } diff --git a/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingManager.cpp b/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingManager.cpp index 7b5196462c..c3d87bff86 100644 --- a/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingManager.cpp +++ b/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingManager.cpp @@ -9,9 +9,9 @@ #include #include #include +#include #include #include -#include #include #include @@ -211,8 +211,7 @@ namespace AWSCore } AzFramework::StringFunc::Path::Normalize(configJsonPath); - AZ::IO::Path configJsonFileIOPath(configJsonPath); - auto readJsonOutcome = AzFramework::FileFunc::ReadJsonFile(configJsonFileIOPath); + auto readJsonOutcome = AZ::JsonSerializationUtils::ReadJsonFile(configJsonPath); if (readJsonOutcome.IsSuccess()) { auto jsonDocument = readJsonOutcome.TakeValue(); diff --git a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionManagerTest.cpp b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionManagerTest.cpp index b8f7688ac6..37a8c0f6d4 100644 --- a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionManagerTest.cpp +++ b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionManagerTest.cpp @@ -211,7 +211,6 @@ namespace AWSAttributionUnitTest m_localFileIO->ResolvePath("@user@/Registry/", m_resolvedSettingsPath.data(), m_resolvedSettingsPath.size()); AZ::IO::SystemFile::DeleteDir(m_resolvedSettingsPath.data()); - delete AZ::IO::FileIOBase::GetInstance(); AZ::IO::FileIOBase::SetInstance(nullptr); AWSCoreFixture::TearDown(); diff --git a/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingManagerTest.cpp b/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingManagerTest.cpp index 557fbc820c..d438a99f83 100644 --- a/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingManagerTest.cpp +++ b/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingManagerTest.cpp @@ -30,8 +30,6 @@ static constexpr const char TEST_EXPECTED_BUCKET_TYPE[] = "AWS::S3::Bucket"; static constexpr const char TEST_EXPECTED_BUCKET_NAMEID[] = "MyTestS3Bucket"; static constexpr const char TEST_EXPECTED_SERVICE_KEYNAME[] = "TestService"; -static constexpr const char TEST_EXPECTED_RESTAPI_ID_KEYNAME[] = "TestService.RESTApiId"; -static constexpr const char TEST_EXPECTED_RESTAPI_STAGE_KEYNAME[] = "TestService.RESTApiStage"; static constexpr const char TEST_VALID_RESOURCE_MAPPING_CONFIG_FILE[] = R"({ @@ -68,6 +66,13 @@ R"({ "Region": "123", "Version": "123" })"; +static constexpr const char TEST_TEMPLATE_RESOURCE_MAPPING_CONFIG_FILE[] = + R"({ + "AWSResourceMappings": {}, + "AccountId": "EMPTY", + "Region": "us-west-2", + "Version": "1.0.0" +})"; class AWSResourceMappingManagerTest : public AWSCoreFixture @@ -192,6 +197,21 @@ TEST_F(AWSResourceMappingManagerTest, ActivateManager_ParseValidConfigFile_Confi EXPECT_TRUE(m_resourceMappingManager->GetStatus() == AWSResourceMappingManager::Status::Ready); } +TEST_F(AWSResourceMappingManagerTest, ActivateManager_ParseTemplateConfigFile_ConfigDataIsNotEmpty) +{ + CreateTestConfigFile(TEST_TEMPLATE_RESOURCE_MAPPING_CONFIG_FILE); + m_resourceMappingManager->ActivateManager(); + + AZStd::string actualAccountId; + AZStd::string actualRegion; + AWSResourceMappingRequestBus::BroadcastResult(actualAccountId, &AWSResourceMappingRequests::GetDefaultAccountId); + AWSResourceMappingRequestBus::BroadcastResult(actualRegion, &AWSResourceMappingRequests::GetDefaultRegion); + EXPECT_EQ(m_reloadConfigurationCounter, 0); + EXPECT_FALSE(actualAccountId.empty()); + EXPECT_FALSE(actualRegion.empty()); + EXPECT_TRUE(m_resourceMappingManager->GetStatus() == AWSResourceMappingManager::Status::Ready); +} + TEST_F(AWSResourceMappingManagerTest, ActivateManager_ParseValidConfigFile_ConfigDataIsNotEmptyWithMultithreadCalls) { CreateTestConfigFile(TEST_VALID_RESOURCE_MAPPING_CONFIG_FILE); diff --git a/Gems/AWSCore/Code/Tests/TestFramework/AWSCoreFixture.h b/Gems/AWSCore/Code/Tests/TestFramework/AWSCoreFixture.h index 0595353b6e..a5c2bf6475 100644 --- a/Gems/AWSCore/Code/Tests/TestFramework/AWSCoreFixture.h +++ b/Gems/AWSCore/Code/Tests/TestFramework/AWSCoreFixture.h @@ -130,10 +130,12 @@ public: m_settingsRegistry.reset(); AZ::IO::FileIOBase::SetInstance(nullptr); - + + delete m_localFileIO; + m_localFileIO = nullptr; + if (m_otherFileIO) { - delete m_localFileIO; AZ::IO::FileIOBase::SetInstance(m_otherFileIO); } diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/view_edit_controller.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/view_edit_controller.py index 54d0a29fea..bdfe7fa11e 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/view_edit_controller.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/view_edit_controller.py @@ -68,12 +68,17 @@ class ViewEditController(QObject): # convert model resources into json dict json_dict: Dict[str, any] = \ json_utils.convert_resources_to_json_dict(self._proxy_model.get_resources(), self._config_file_json_source) + + configuration: Configuration = self._configuration_manager.configuration + if json_dict.get(json_utils.RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME) == \ + json_utils.RESOURCE_MAPPING_ACCOUNTID_TEMPLATE_VALUE: + json_dict[json_utils.RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME] = configuration.account_id + if json_dict == self._config_file_json_source: # skip because no difference found against existing json file return True # try to write in memory json content into json file - configuration: Configuration = self._configuration_manager.configuration try: config_file_full_path: str = file_utils.join_path(configuration.config_directory, config_file_name) json_utils.write_into_json_file(config_file_full_path, json_dict) @@ -103,31 +108,6 @@ class ViewEditController(QObject): for resource in resources: self._proxy_model.load_resource(resource) - def _create_new_config_file(self) -> None: - configuration: Configuration = self._configuration_manager.configuration - self._set_default_region(configuration) - - try: - new_config_file_path: str = file_utils.join_path( - configuration.config_directory, constants.RESOURCE_MAPPING_DEFAULT_CONFIG_FILE_NAME) - json_utils.create_empty_resource_mapping_file( - new_config_file_path, configuration.account_id, configuration.region) - except IOError as e: - logger.exception(e) - self.set_notification_frame_text_sender.emit(str(e)) - return - - self._rescan_config_directory() - - def _set_default_region(self, configuration: Configuration): - default_region = configuration.region - if not default_region or default_region == 'aws-global': - self.set_notification_frame_text_sender.emit( - notification_label_text.VIEW_EDIT_PAGE_CREATE_NEW_CONFIG_FILE_NO_DEFAULT_REGION_MESSAGE) - logger.warning(notification_label_text.VIEW_EDIT_PAGE_CREATE_NEW_CONFIG_FILE_NO_DEFAULT_REGION_MESSAGE) - - configuration.region = constants.RESOURCE_MAPPING_DEFAULT_CONFIG_FILE_REGION - def _delete_table_row(self) -> None: indices: List[QModelIndex] = self._table_view.selectedIndexes() self._proxy_model.remove_resources(indices) @@ -246,14 +226,13 @@ class ViewEditController(QObject): self._view_edit_page.save_changes_button.clicked.connect(self._save_changes) self._view_edit_page.search_filter_input.returnPressed.connect(self._filter_based_on_search_text) self._view_edit_page.cancel_button.clicked.connect(self._cancel) - self._view_edit_page.create_new_button.clicked.connect(self._create_new_config_file) self._view_edit_page.rescan_button.clicked.connect(self._rescan_config_directory) def _setup_page_start_state(self) -> None: configuration: Configuration = self._configuration_manager.configuration self._view_edit_page.set_current_main_view_index(ViewEditPageConstants.NOTIFICATION_PAGE_INDEX) - self._view_edit_page.set_config_files(configuration.config_files) self._view_edit_page.set_config_location(configuration.config_directory) + self._view_edit_page.set_config_files(configuration.config_files) def _switch_to_import_resources_page(self) -> None: if self._view_edit_page.import_resources_combobox.currentIndex() == -1: @@ -297,5 +276,5 @@ class ViewEditController(QObject): def setup(self) -> None: """Setting view edit page starting state and bind interactions with its corresponding behavior""" - self._setup_page_start_state() self._setup_page_interactions_behavior() + self._setup_page_start_state() diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/view_manager.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/view_manager.py index e6ca6a1480..f6d51155ad 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/view_manager.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/view_manager.py @@ -44,7 +44,7 @@ class ViewManager(object): def __init__(self) -> None: if ViewManager.__instance is None: self._main_window: QMainWindow = QMainWindow() - self._main_window.setWindowIcon(QIcon(":/Application/res/o3de_editor.ico")) + self._main_window.setWindowIcon(QIcon(":/Application/o3de_application_reverse.svg")) self._main_window.setWindowTitle("Resource Mapping") self._main_window.setGeometry(0, 0, view_size_constants.TOOL_APPLICATION_MAIN_WINDOW_WIDTH, diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/error_messages.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/error_messages.py index 93d1ee1754..4316c145ba 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/error_messages.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/error_messages.py @@ -5,11 +5,11 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ +ERROR_PAGE_TOOL_SETUP_ERROR_TITLE: str = "AWS credentials are missing or invalid" + ERROR_PAGE_TOOL_SETUP_ERROR_MESSAGE: str = \ - "AWS credentials are missing or invalid. See " \ - ""\ - "documentation for details." \ - "
Check log file under Gems/AWSCore/Code/Tool/ResourceMappingTool for further information." + "Use our "\ + "documentation to setup your AWS credentials. " VIEW_EDIT_PAGE_SAVING_FAILED_WITH_INVALID_ROW_ERROR_MESSAGE: str = \ "Row {} have errors. Please correct errors or delete the row to proceed." diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/notification_label_text.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/notification_label_text.py index ecd6d8282c..80ea934209 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/notification_label_text.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/notification_label_text.py @@ -13,6 +13,7 @@ ERROR_PAGE_OK_TEXT: str = "OK" VIEW_EDIT_PAGE_CONFIG_FILE_TEXT: str = "Config File" VIEW_EDIT_PAGE_CONFIG_LOCATION_TEXT: str = "Config Location:" +VIEW_EDIT_PAGE_INVALID_CONFIG_LOCATION_TEXT: str = "Invalid Location" VIEW_EDIT_PAGE_ADD_ROW_TEXT: str = "Add Row" VIEW_EDIT_PAGE_DELETE_ROW_TEXT: str = "Delete Row" VIEW_EDIT_PAGE_SAVE_CHANGES_TEXT: str = "Save Changes" @@ -23,17 +24,11 @@ VIEW_EDIT_PAGE_RESCAN_TEXT: str = "Rescan" VIEW_EDIT_PAGE_CONFIG_FILES_PLACEHOLDER_TEXT: str = "Found {} config files" VIEW_EDIT_PAGE_SEARCH_PLACEHOLDER_TEXT: str = "Search by Key Name, Type, Name/ID, Account ID or Region" VIEW_EDIT_PAGE_IMPORT_RESOURCES_PLACEHOLDER_TEXT: str = "Import Additional Resources" -VIEW_EDIT_PAGE_CREATE_NEW_CONFIG_FILE_NO_DEFAULT_REGION_MESSAGE: str = \ - f"Resource mapping file {constants.RESOURCE_MAPPING_DEFAULT_CONFIG_FILE_NAME} is created"\ - f" with {constants.RESOURCE_MAPPING_DEFAULT_CONFIG_FILE_REGION} as the default region. "\ - f"See "\ - f"documentation "\ - f"for configuring the AWS credentials and default region." VIEW_EDIT_PAGE_SELECT_CONFIG_FILE_MESSAGE: str = "Please select the Config file you would like to view and modify..." +VIEW_EDIT_PAGE_NO_CONFIG_FILE_FOUND_TITLE: str = "Unable to locate a resource mapping config file" VIEW_EDIT_PAGE_NO_CONFIG_FILE_FOUND_MESSAGE: str = \ - "

Unable to locate a resource mapping config file.

"\ - "

We can either make this file for you or you can rescan your directory.

" + "

Please select your project's config file directory using the browse tool in the upper right.

" VIEW_EDIT_PAGE_SAVING_SUCCEED_MESSAGE: str = "Config file {} is saved successfully." IMPORT_RESOURCES_PAGE_BACK_TEXT: str = "Back" diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/view_size_constants.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/view_size_constants.py index 2ce4279502..85b636bfbf 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/view_size_constants.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/view_size_constants.py @@ -14,13 +14,14 @@ MAIN_PAGE_LAYOUT_MARGIN_TOPBOTTOM: int = 15 INTERACTION_COMPONENT_HEIGHT: int = 25 """error page related constants""" -ERROR_PAGE_LAYOUT_MARGIN_LEFTRIGHT: int = 10 -ERROR_PAGE_LAYOUT_MARGIN_TOPBOTTOM: int = 10 +ERROR_PAGE_LAYOUT_MARGIN_LEFTRIGHT: int = 25 +ERROR_PAGE_LAYOUT_MARGIN_TOPBOTTOM: int = 20 +ERROR_PAGE_LAYOUT_SPACING: int = 15 -ERROR_PAGE_MAIN_WINDOW_WIDTH: int = 600 -ERROR_PAGE_MAIN_WINDOW_HEIGHT: int = 145 +ERROR_PAGE_MAIN_WINDOW_WIDTH: int = 100 +ERROR_PAGE_MAIN_WINDOW_HEIGHT: int = 75 -ERROR_PAGE_NOTIFICATION_AREA_HEIGHT: int = 100 +ERROR_PAGE_NOTIFICATION_AREA_HEIGHT: int = 30 ERROR_PAGE_FOOTER_AREA_HEIGHT: int = 45 OK_BUTTON_WIDTH: int = 90 diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/base_style_sheet.qss b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/base_style_sheet.qss index d8f61713a7..51791dc519 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/base_style_sheet.qss +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/base_style_sheet.qss @@ -35,6 +35,17 @@ QComboBox line-height: 16px; } +[HighlightField=true] +{ + border:3px solid #E57829; +} + +[HighlightText=true] +{ + font-weight: bold; + color: #E57829; +} + QToolTip { color: black; @@ -356,7 +367,7 @@ QScrollBar::handle:hover } /* NotificationFrame */ -QFrame#NotificationFrame +NotificationFrame { background-color: transparent; border: 1px solid #E57829; @@ -365,17 +376,38 @@ QFrame#NotificationFrame padding: 4px; } -QFrame#ErrorPage +NotificationFrame QLabel#NotificationIcon { - background-color: #2d2d2d; - border: 1px solid #4A90E2; - border-radius: 2px; - margin: 0px; - padding: 15px; -} - -QFrame#ErrorPage QLabel#NotificationIcon -{ - padding-left: 15px; + padding-left: 0px; padding-right: 15px; } + +NotificationFrame QLabel#NotificationTitle +{ + font-size: 15px; + font-weight: bold; +} + +NotificationFrame#ErrorPage +{ + background-color: transparent; + border: none; +} + +NotificationFrame#ErrorPage QLabel#NotificationIcon +{ + qproperty-alignment: "AlignTop"; +} + +NotificationFrame#ErrorPage QLabel#NotificationTitle +{ + padding-top: 0px; + text-align: top; +} + +NotificationFrame#ErrorPage QLabel#NotificationContent +{ + padding-top: 0px; + text-align: top; + qproperty-wordWrap: false; +} diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/editormainwindow_resources.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/editormainwindow_resources.py index 64ad2212ea..36303e40cd 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/editormainwindow_resources.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/editormainwindow_resources.py @@ -1,27257 +1,27546 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT -""" - -from PySide2 import QtCore - -qt_resource_data = b"\ -\x00\x00\x01\x84\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x01KIDATx\xdac`\x18\x05\xa3`\ -\x14\x0c&\x10\x91\x90\xe3\x18\x99\x98{\x08\x88\xf7\x810\ -\x90\xbf\x1f\xca\xd6\xa6\x8b\x03\x80\x165\x01-\xfd\x0f\xc3\ -@>\x8c\x1dK\xaf\x10h\x00Y\x0a\xc3@\xfe_(\ -{5\x10\x9b\x01\xf9V@\x1a\x8e\x89\xe4[\x03\xb1>\ -\xa5\x0e\x80\x87\x06\x05|\xf5\x81v\x80\x1e1i\xa0\x01\ -\x1a\xe7\x7f\xa1\x96\xff\x83\xf2o\x00\xf1\x19 \xff\x0c\x88\ -\x86a\x12\xf8\x97\x81X\x85\x9c\x10\x00\xd1\x13\xe8\x99\x0d\ -\xd1\x1d\xf0\x05Hs\x00\xb1\x1b\x10_\x07\xf2o\x02\xe9\ -\x1b0\x0c\x0a\x192\xf8\xb7\x80\xf80\x10\xb3\x12\xe3\x80\ -\x1ah\xd4<\xa4B\x1a@\xe6\xcf%\x94\x06@q\xff\ -\x1d\xea\xa8tX\xba\x80\xa6\x89\xbfhi\x84T>\xc8\ -,)b\xa2\xa0\x0c\xea\xa8gxr\x05\xa9|\xdc\xbe\ -Gs\xc0+ f\x06\xf23)\xb4\x10\x1b_\x94\x18\ -\x07\xe4A\xf9\xaf\xa9\xec\x80i\x84\xca\x81F\xa0\xa2W\ -@\xcc\x04\xc4i0C(\x8c\xf3\xbf\xd04\xf5\x03\xc8\ -\x97!\x94\x0d\xdb\x81\x8ar\xa0\x8ey\x8a%\x15S\x12\ -\x02\xd3\x88)\x07R\xa0\x96gQ1\xceA\xec_@\ -,A\x8c\x03\x98\x81\x0a9\xa1\x89\x90\x9a\xf9~\x1a)\ -\xa5\xa1\x0a\x10o\x07\xe2\xcd@\x8d\x9b\x81\xf4&\x18&\ -\x93\xbf\x14\x88yF\x9b{\xa3`\x14\x0cZ\x00\x00\xef\ -\xad\x00\xe1,\x84\xf5\xf4\x00\x00\x00\x00IEND\xae\ -B`\x82\ -\x00\x00\x02h\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x02/IDATx\xda\xed\x96\xcb+\xc4Q\ -\x14\xc7\xe7\xe11\xcd\x90\xc9L\x1a\x22e\xe4\x91YL\ -\x13\x8a\xa2lllX\xa1\x94WQ\xc6\xb3\xd8x\xd4\ -\x10\x0bE\x8d\x14\xfe\x03\x0b\x89\xb2\x96\xc4\xc2B\xf2(\ -\x22\x0by,lH\x16\x1e5\x8d\xef\xad\xab\x8e\x99{\ -~\xbfYZ\xfcn};\xbf\xee\xe7\x9e\xf3;\xfd\xee\ -\xb9\xe7wM\xa6\xff0Z;\x07J\xa0\xf5\x96\x8e\xfe\ -a\x8d5\xed\xe0\x1b\xb0\x95\x0c\xb7\x83\x87aW\xc4\xb3\ -j\x0dx\x00l\x13\xea\x8au>\x82\xa2X\x10\x85\xf5\ -+\x82g\x13~\xcf$0.\xb9P\x88I\xe0Jr\ -!/u\xde!/(P\x04\xcf\x80\x22\x92\x9f0\x09\ -t\x93\x04\x82L\x02\x07\x92G \x0f\x056\xa8\x07\x93\ -\x15\xdc\x16\x80\x8bm\x0a\xc2:5\xb6\xa9\x09\xbcY\x83\ -\xa7\x83\x8b\x18>\x931\x8c\xa1(\x90L\x14\x87Uk\ -\x0d\xb8[\x87\xdb\x11'M\xe7=.\xc8\x1c;9)\ -\x8f\xe1\x13\xacC\xe1d\x85\xce\xe51[e\x02W\x83\ -G\xe41\xaba\x12\x5c\x94\xfc\x02\xb2Q\xe7k\xd2\x07\ -j\x15\xc1\xbd\x84\xbf0\x09\xcc\x93>\x10Vp3\xf8\ -\x03iDe43\xd1f_1y\xc8m\x03\xe6\xb7\ -\xc0\xdf`\xc7\x18^\x0c~'^\x02\x952I\x0e\x81\ -\xbdC\xdb\x90%\x16Z\xf4\xeaD\xafF\x12\xac5\xab\ -q\xe2\x8c\xa1*\x8c\x5ch\x19E\xd6\xa6\xb1\xa6\x01\x5c\ -\x5c6\xb8\x0aO\x02\x17\xfdd\x1aJf\x8aX\x1c\xe7\ -5\xa81\xd6y\x9f\x9cs\x9f\x22x\x16\xe1\xb7L\x02\ -#\xa4\x0fL0\x09\x9c\x91>\x90O\xc1\xee\xaf3l\ -\x91\xc2\xd1E\xf8%\x13|\xf07Ih\x94I\xf2X\ -r\xa1\xbc?\xff\x01\xd1\x8e1Y\xaf\xb1\x05U\xe0!\ -\xd8\x1c\x8d>\xd1\xcb\xdd\x86$\xf7\x80\xcfp\xad\xda\x18\ -F/p\xc6\xfd\xa1\xe2\x8b(3\x81\x0b\x89C\xef\xe2\ -\xa3\x9a\xec\x83>\x10\xe0\x146\x85q\x14G\xf5\x0bv\ -\x96\xe1~\xf0gq_\x80\x02L\x82S`\x22\xc6\xde\ -\x9ff\x05pC\xcey\x9d\xc2\xb1\x90\xf0W&\xf8\x02\ -\xe9\x03K\x0an\x01\x7f$}\xa0\x8cf\x1f\x84>e\ -\xa7J\xd5\xf9\x02s\x09|\x81r&I\xd1\xaa\xbf\xe3\ -\xbe\x00\xb9\x94\xea\xd5\x80\xde\xa5\xd4\x91@\x0d\xb8\xffU\ -\xf1\xff\x00\xf0W\x81\xb2\xb1-\xb20\x00\x00\x00\x00I\ -END\xaeB`\x82\ -\x00\x00\xa1\xcb\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3>a\xcb\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0b\x22\x00\x00\x0b\x22\x01\x09\xe1\ -O\xa2\x00\x00\xa1`IDATx^]\xfdg{\ -cI\xb2\xa5\x89\xf2\x0fMF\x04\xb5\x04@\x90\x00\x08\ -j\xad\xb5\xd6Zk\x15\xd4:\x14\x19Z\xeb\x88\x8c\x94\ -\x91:\xab\xb2\xeaTU\xd7Q=\xdd}\xfav\xf7\xcc\ -<\xf7\xfe\x13\xbb\xef\xf2MFe\xcf\x07{\x00\x92 \ -\xf6\xden\xcb\xcc\x96\xb9\x9b\x9b\xc7\x84\xc7\x1f[\x04\xc9\ -Ar'\x9eZ\xf1\xec+\xabX\xfe`5\xeb\xdfX\ -\xc3\xd6\xf7\xd6\xb4\xf3\xa35\xec|o5\x1b_Y\xc5\ -\xea;+Y|n\x05\xb3\x0f-:qf\xe1\xa1c\ -\xcb\xea\xdd\xb2@\xfb\x92\xa57MYZ\xfd\x88\xa5\xd6\ -\x0dyR?li\x0dc\x96\xd68\x8eLx\xaf\xfc\ -\x9cZ7b)\xb5\xc3\x96\x5c3dI\xd5\xc3\xc8\xa8\ -%\xd5LXr\xdd\x8c\xa54,Xj\xd3\x8a\xa5\xb7\ -\xae\x9b\xafs\xdb\x02\xbd\x07\x16\x1c\xe0\x1a\x83\xd7,{\ -Hr\x82\x1c\xf2\xbb=\xcb\xec\xdf\xb6\xcc\xbe\x0dd\x1d\ -Y\xb3\xcc\xde\x15\xcb\xec^\xb2\xcc\xae\x05\xf3\xb7\xcdX\ -F\xd3\xa8\xa5\xd6\xf6ZRE\xab\xc5\x17\xd7ZlA\ -\xa5]\xce\xaf\xb0K\x055v\xa5\xb8\xd5\x12\xaa\x87,\ -\xade\xd1\xb2\x07\x0e\xadp\xe6\xa1U\xae\xbc\xb3\xba\xcd\ -o\xac~\xeb;\xabZ\xfb\xc2\x0a\xe7\x9e3.w,\ -\x93k\xfb\xfa\x0e\xcc\xd7\xb3o\xfen^\xbb\x90\xce]\ -^w-\xd8\x7f\xc8\xb8\xdd\xb4\xc2\xf9\xfbV\xb6\xfa\xcc\ -*\xd6_Y\xf9\xfaK+\xe5}\xf1\xf2c+Z~\ -\x80\xdc\xb3\xfc\xc5\xdb\x96;\x7fj\xd1\xb93\xe4\x8e\xe5\ --<\xb0\xd2\xf5\x17V\xbb\xf3\xceZ\x0e\xbe\xb0\xee\xe3\ -\xaf\xad\xff\xda\xb76p\xed\xa3\x0d\xde\xf8\xd1F\xef\xfc\ -\xc9&\x1e\xff\xb3M\xbd\xf8\xaf6\xf7\xfa\xffc\xf3\xaf\ -\xff\x87-\xbc\xf9\x1f\xb6\xf2\xf6\x7f\xd9*\xb2\xfc\xfa\x7f\ -\xda\xc2\x8b\xffn\x93\x8f\xfe\xdd\xfaO\xffj]\xd7\xfe\ -h\xedG\xbf:\xe9:\xf9\xa3\xf5\xdd\xfc\x8b\x0d\xdf\xfe\ -\xbb\x8d\xdf\xffw\x9b~\xfc_m\xe6\xc9\x7f\xd8\xe4\xc3\ -\xffb\xa3w\xff\xcdzo\xfc\xcd\x9a\xf7\xff`5\x9b\ -\xdfs\xcf_[Ld\xec\xaeE\xc6\xeeYt\xfc\xbe\ -\xe5M>\xb2\xe2\xb9\x17\x0c\xc6{\xab\xbd\xfa\xb552\ -\x18\xcd\xbb?X\xf3\xcewV\xbf\xf9\x95U\xaf\xbd\xb3\ -\xf2\xa5\x17V2\xf7\xc8\x0a&y\xa8\x91k\x16\xe9\xdf\ -\xb5\xec\xee5\x0b\xb6\xcf[\xa0e\xca\xfc\xcd\xe3\xe6k\ -\x92L\x98\xafy\xd22.\x84\x9f\xd3\x01Az=\xa0\ -\xa8\x93r\xc6\x00\x82\x14?e\xc9\xf5s\x96\xd2\xb8h\ -\xa9\xcd\xab\x96\xd6v\xd52:\xb6\x18l\x94\xdcwd\ -A\xa7\xfc\xeb\x96=\x8c\x00\x80\xacA~7\xb0\xcf\xdf\ -\x04\x90\x0d\xf3\xf7\xac\xf1\xd9\x15d\xc9\xfc\x9d(\xbfc\ -\xce|\xadS\x5c\x0b0\xd6\xf6YRe\xbb%\x944\ -Z\x5cQ\xad])D\x8a\x1a-\xb6\xb4\xd3\x12kF\ -\x1d\x00\x82\xbd{\x967~f\xa5sO\xadr\xe9\x8d\ -U\xf1\xec\xe5\x0b\xaf\xacp\x1a\x90\x8f\x9d9\xe0I\xd1\ -\x99\xbd\xe7\xd2sd\x81\xee}\x0b\x00\x88`\xff\x91\x85\ -G\xaf[\xde\xd4\x19\x80\xb9o\xc5\x0b\x8c\xdf\x22\x8a_\ -xh\x85\x0b\xf7\x91\xbbV\xb8x\xd7\xf2\xe6Q\xfc\xec\ --\xcb\x99\xb9e\x91\xe9S\xcb\x99\xbem\x05\x80\xa6\x14\ -\x90T\xaf=\xb3\xc6\x8d\x17\xd6\xba\xf5\xca\xdav\xdeX\ -\xc7\xfe\x07\xeb\xb9\xfe\xd1\x06n\xffj\xc3\x0f\xfebc\ -\x8f\xfe\xeed\xea\xc9?\xdb\xc2\xf3\x7f\xb5\x85g\xffb\ -s\x8f\xff\x93M?\xf8'\x1b\xbc\xf5\xb3\xb5\xee\x7fe\ -\x8d\xdb\x1f\x90/\xd0\xd5\xd7\xd6~\xf8\xbd\xf5\xdc\xf8\xd5\ -\x06\xce\xfe\xc9F\xee\xfd'\x1b\x7f\xf8o\x00\xe5?\xdb\ -\xf8\x83\x7f\xb3\xa1;\x7f\xb7\xee\xeb\x7f\xb6\xa6\xbd\x1f\xac\ -\xea\xea\x97\x5c\xff\x1d\x00\x18\xbd\x09\x8aO\xb1\xfe;V\ -0\x0d2\x17\x9ec\x01\xb2\x86/\xadi\xfb[k\xd9\ -\xfd\x0e\xf9\x160|iu\xeb\xef\x18\xa0\x17V6\xff\ -\xc8\x8a\xa6n[\xfe\xd8u\xcb\x1d:\xb0\x9c\xbeM\x0b\ -w\xafZ6\x0a\xc8F\x01Y\xed\xb3\x16l\x9b\xb5L\ -$\xd0:k\xfe\x96i\x80\x018\xf0\x12\x12_\xe3\x94\ -e4\xce\xa0\xa4yKk\x92\xe2W,\x0d\xabOo\ -\xdf\xb4\x8c\xce\x1d\xf3i\x805\xd8\xfd'\x0e\x00Y\x00\ - \x0bEd\x0d\xea\xe7c\x00p\xc0\xdfv\xf9\x0c@\ -\xe9\xb9\x8a\xf2W\xb1\xca%\xf3u,\x98O\xd6\xdf\x8c\ -\xc7i\x18\xb6\x94\x1a\x01\xa0\xc3\x12\xcaZ,\xbe\xb4\xd9\ -\xe2Jx-\xeb\xb4\x84\xaa\x01@7\x89\xa7Y\xb6`\ -\xcf\x8eE\x86\xafY>\xcf_4\xfd\xc8Jf\x9eX\ -\xd1\xe4\x03\xcbC\xf9\xfa\xbdW>\x7f\xd7\xaa\x16\xefY\xcd\xca\ -C\xab_\x7f\x8a\xc1\xbd\xb6\xb6\xc3\x0f\xd6\x81W\xe8\xbe\ -\xf1\xbd\x93\xbe\x9b\xdf\xdb\xe8\xd9\x8f6r\xfa\x1d^\xe2\ -k\xeb;\xfe`\xad\xdb/\xadj\xf9\xa1U,=@\ -/\x8f1\xda\x97\xd6\xb4\xfb\xde\xda\x8e\xbe\xb1\xae\xeb?\ -X\xef)@\xb8\xfd\x9b\x0d\xdc\xf9\xb3\xf5\x9d\xfe\x91\xdf\ -\xfd\x8c\xc7\xf9\x887\x7foe\xcb/\xf0\x5c\x8f-&\ -:\x0e\x82'o\xa2\xfc\xdbX\xff}+_~\x8a\xfb\ -\x7f\x8d\xc5\xbf\xf7P\xb5\xf3\xa55\xf3\xda\xc8?\xd5\xf1\ -\xfb\xea\x95\xe7V\x01\xd2Kf\xeeX\xe1\xc4M\xcb\x1f\ -9\xb6\xbc\xc1=\x8b\x0elY\xb4\xef*`X\xb3H\ -\xef*\x80X\x01\x10K\x96\x85R\x82ms\x16\x04\x08\ -\x9e\xcc\xf33\x96\xd7\xb6j\x99\xed(\x0fk\xf7u\xa0\ -\xf4\xae=\x14\x7f\x80B\xb1\xb0>\x06\xb9\x1f\xcb\x1b\x90\ -\xd2\xaf;\x10\x04\x9d\xf2/\xe4\x08\xd7\x8c\x12\x08\x05\x01\ -<\x81\xbfg\x83\xff\x07\x04\xed\x8b\x96\xd1\x0a\xb0\xf06\ -\x0aA\xc9\xb5\xfd\x96T\xd5\x0d\x08\xba\x10^\xab\xfa\xf1\ -:#\x80\x03\x00\xb6.\xe21\xd6Q\xe8\x0e\xa1\x0cW\ ->\x02\x98GO-o\xf4\xccr\x87Q\x10\xd7\x09\xf7\ -\x1fXv\xdf\xaee\xf5\xe0\xeee\xf1(>\xc8\xbdI\ -\xe4\x9d2\x09\x0d\x99x\x90L\xbeC\x12\xec\xc5\x1b\xe2\ -\x9dB\xc3\x87x\xd5#\xcb\x99<\xb1\xdc\x99\xeb\x16E\ -\x22\xd37,\xb12\xc0V\xbd\ -\x06\x88\xb6_X\xe3\xde[k9\xfc\xdcZ\x8f\xbe@\ -\xd0\xe1\xfe\xe7\xd6\xb0\xfd\xd6\xaa\x09=eK\x8f\xf0X\ -w-\x1f\xf0\xc5\xe4q\xd1\xfc\x99\x9bV\x04ZKp\ -Y\xe5 \xaaz\xed\x89\xd5\xae?C\xe1\xcf\x91\x97V\ -\xb7\xfa\xd2jAL\xf5\xd23\xab\x5cxles\x0f\ -\xacdZ\x00\xb8e\x05\xa3\xdc\xc4\xc8\xa1\xe5\x0fs#\ -\xc3\xbb\x967\xbc\x83W\xd8\xb2\x9c\xfe\x0d\x0b\xf7\xaeY\ -\xa8k\x19\xaf\x80g D\x84x\x0dw\xaeX\xa4{\ -\x03\x90\xec\x12>\x0e-\xa4\x18?p\x822O,\x80\ -\xf8Q|\x00q\x00\x90\x07\xe8g\xc0q\xb5\x99\xb2>\ -^\xb3\x1c'@\xc4?\x18\xbcL\x06<\xd0\xbb\x0d\x00\ -\xd6-\x03`\xa5\xb7\xccX*\xa1&E\x00\xa8\x1b\x04\ -\x04\x03\x96\xc2kj=._\xde\xa7m\xc1\x02\x9d\x84\ -\xac\xdeM\x94\xb5k\xa1\xa1}\x0b\x0f\x1f G(\xe4\ -\xc4B\x5c/\x9bke\xf7\xee[6\x8a\xcfF\xb1\xd9\ -(9\xc4\xefB\xdc_h\x10%\x02J\xdds\x10\x00\ -\x04\xba\x01o\x07a\x0b@K\x1c\xa8\xf0\x88!\xc6!\ -2q`Q\x14\xe3\x000u\xc3B\xe37\x9c'\x13\ -x\x5c\x18\xc1\xdbevm\x01\xae-\xae\xb9ea\x8c\ -(\x87\xb1\xcb\x1d\xde\x02\x14\xdb(v\xd7\x0a&\xf6\x90\ -}+\x9e>D\xe1'V1{he\xd3\xbbV<\ -\xb1i\xd1!\xf1\x1e\x7f\xe4\x00!\x9e\x8e\xec\xf2\x00;\x963@X\ -\xe8]w\x9e \xdc\xc5\xcd!9\xbc\xcf\xed\xbdj\xb9\ -\xb8\xef\x5c\x94\x97\x8b5Dq\x87\xe1\xb1\x9b\x96\x85\x0b\ -\xcd\xc4\x0a\x03X\xbb\x1f\xc5\xfb5HX\x9cbm\x00\ ->\x10\xe8\xd9s\x03\xee\xb9\x5c\x06\x94\xff\xd1\xff\x85\x00\ -`pP\x9ec\xcb2\xda\x09%-s\x00`\x12B\ -\x09\xc7\x80\x94\xa64\xc07D@\x09C\x19x\x88@\ -\xf7:\x83\xb5\x85\xe2\xf7,2\x8a\x95\x8e\x1fC\xf6\xf8\ -\xceQ\x11L)U\xca\xe1z\x90P\x7f\xc7&\xaf\x9b\ -\x16D\xc9\x02E\x88P\x14\x199\xe5\xfa\xa7\x8e\x97\xe8\ -~\xfc]\x9b\x96\xde\xb6L\x18\x9b\xb7\x94\xe6YB\xd9\ -\x19\xf7\xd1M\xc6h\x9b\xe7\xdb\ -a\x8cw!\xed{\x84\xa8}\xe4\xc0r'\x8f,:\ -y\x8c\x9cXL\xc1\x0cDe\xd6\x93\x22\x85\x81\xa9[\ -V\x02ZK&\xafY1R4y\x1d\x81\xe9\xe2\xee\ -\x0b\xe4\xf2Aq\x9eb?\x03\x16E\xf19\x83\xfb\x16\ -\x19\xdc\xe5\x15\xc4\x0fn#B2\x16@8\xc8\xeeY\ -\xb5\x10J\x8f 9\xbc\xcf\x05\x10\xf9\x03 \x1b\x8b\xcb\ -\xe7\xff\xf3\xf8\xbe\x5c\xae\x17\x01\x84\xa1\x09\x06\x94\xdf\x05\ -\xb0\xec\x00V\x1e`\xc0\xfdX\xa1\xc8\xa0\xbfk\x07\x81\ -\xf5c\x91\x22\x81\x22^\x11\xbcO\x0e\xe4+\x02\x10\xb3\ -\x01\x81<\x81\xbf\x1be8\x10\xcc\xa3\x10\xb2\x8a\xa6i\ -^\x91\x16\x14\xd36\x8f\xa5.;\x00\x04\xfb\xb9\xbf!\ -\x5c\xff(\xd6?\x8er\xc6\xb1\xf81<\x8d\xae\xad\xeb\ -b\x9d.,\xc1I\x1c\x08\xb8v\x90{\x91\xe2B\xc3\ -x\x80\xa1\x1b\x84\xa7#>\xb7\xcd\xf5V\xb9\xc6\x9c%\ -\x13V\x92\x1a&-\xb9i\xd2R[QL\x07\xdc\xa7\ -{\x01O\xb6\x0a@7p\xfbx\x9ba\x80\x06\x00\xc2\ -|G\x18/\x12\x22\x94\xb8\xf0\xd2\xb5A&\xb5l~\ -B\xa4\xafe\xc2e0\xe9MCp$\xa4i\xd8\xd2\ -\x9bG\x10~\xd7\x0c\x81n!\x93j\x01\xd4N\xf43\ -\xc4\xba\x15\x92\x0d\xf1\xcdh\x9b\xe6\xbeg\xe0Cs\x5c\ -{\x1e\xa3\xc0\xdb\xe1\x192\x07\x00\xe3\xe0\xba\x85F\xb6\ -\x00\xc5>`8f\xdc\xd1#\x844\xa6d\xe99\xee\ -\x82\xb4E\xc4N`\x90\x92\xb1\x8c\x5c,$g\x00\xa5\ -\x22a$$w\x89\x84%X\xb0'\xfc\x9e\x18\x1c\x92\ -E\xe1\xf6\xb2Qz\x16J\xce\x82\x99\x07Qz\x10\xab\ -\xcf&\x04\xc8\x0b8\x00\xf0\xf7<\xbe+\x0f\xb7\x9b;\ -\xc25\x88{\xd1\x09b-7\x94=\x86\x8b\x1f\xc1\xda\ -\xf9[\x00\x92\x17 \xfe\x06 _\x01\xdc\xaf\xdc\xac\x06\ -\xdb\x01\x00R&\xab\x8f@\xa6\xc4\xa6s \x5ca\xee\ -9\x8b\xc1\x0dpO>\xc2Kz\x87\xb2\x09\xac\xb2u\ -\xc9IZ\x9b'\x19\x00\xc0\xd7\xb5\x827A)\xfd\xdc\ -\xa7S\x0c\xeewd\x87Wb\xbcx\x85\xc2\x8d<\x0f\ -|$\x00/\xc9D\x82\xe7\xde\xc7\x0b?\xe2&\xf2N\ -\x5c\x0b\xcbM\x83K\xa44\xcd8\x00$\x03\x80\x14R\ -\xdeT8H\x1aDT\x8a\xf1\xb5\xcf\x00\xdeE\xee\x1d\ -\x83\xe8\xc7\xeb\x10\x02r\xe0\x18\xd1\x91[\xb8p\x80 \ -\x22\xd9\xb3i\x99\x1d\x90X\xb2\xa8t\xc8k*\xdc%\ -\xa5\xa6\xc7\x92\xab\xbbH\x97\xbb\x09c\xbc\xaf\xebC\xfa\ -!\xaf\x10\xd8\x06\xc9 \xd7\xe2\xb3\x8d\x0amx8]\ -\x13\xf0\xe9\xbai\x80(\x8dk\xa7\xb5O[z'@\ -\xe8\xc5\xb3\x0c\xe0\x8dF\xe1j\x18t\xfe\xccm+\x9a\ -\x7fH\xc6\xf2\xd4b*\xaf~n\xe5\xabo\x88\xff\xcf\ - \x82\xf7\xb1\xec\x1b(\x1dW\x0b\xc3\x0ev\xc95\xad\ -\xe3^H\xb5\x10\xc5\xceL\x5cU\x90\xd7\xac.\x09\x83\ -\xe8\x04\x85#\x99\x1a\x5c\xdcX@.\x90x\x1fh\xc7\ -\x9dA\x04\x9d\x17\xe8Y\xb7\x1c\xe2n\x94\xfc=\x0a\x88\ -\x22\x10\xb80 \x0b\x112\xb2P@p\x18\x05\x0f\x91\ -\xda\xe1I\x02\x90\xcaL<\x8b\xac:\xb3_ \xd8\x05\ -\x00\x02\x011S\x8c\x9c\xf0\x91=v\x0d\xaf\xc1\x00N\ -*\xb6B\x16\x01\x94\xf3\x02\xf0\x81\x0cy\x82N\x01\xe1\ -*\x16\xba\xce@\xac\x01\x00<\x03 H\x87'dp\ -_J\x19\x03\xa4\x8e\x01\xcd\x1fh\x1e\x01\x00\x07\x01P\ -\x96\x14\x22\x1e\x00\x07\x099\xc1\xeae\xf9(_\xe1G\ - \xd0=\xf8\xbb\x15r\xf8^R\xc9\xd4&\xd2X@\ - I\xd5|\x88\x14\xa1\xb0\x83b\x94\x02\xfb\xb0\xec\x00\ -\xdcG|\x22\xc2wDG\xb0\xbe\xd1[\x18\x01c\x0d\ -\xe8\xb2\x19\x97L\xc6\xcd\x87\xe7HG\xa1\x9aGI\x11\ -w\xa9A\xe1\xff/IrBv\x03H\xc4q\xc4u\ -R\x95Z7\xa0tB\x9f\xe6\x5c\x04\xc0T\xae\x9b\x06\ -!\xf6\xc2\x11\xe0#\xc2\ -\x00\xd6\xef\xc3\x12\x15\x16\x02()\xa0\xf9\x00\x88[\x90\ -0\x14$\x15\xd5\xe7\xfd|\xb7O\x84\x10o\x91\xc1\xfd\ -g\x10_3p\xe1\xe9m\xb2T\x00\xd0\xbc\x88\xcc\xe1\ -J\x19\x18\xc8\xa2\x14\xe3\xee\xb5\x83g\x121D\xa9\xd9\ -(7\x8c\x92#\x837 dX\xaa2\x02\x5c\xb6,\ -W$Qia\xa6\x00I\xec\xcf\xc0\xfd+\x95\x14\x08\ -\xd2\x9a\x17x%\xad\x15\x0f\x10\x08\xce'\xbf\xd2\x01\x83\ -\xafu\xce\x19N\x08\x8f\x19\xc5S\xe5\xc1w\xf2\xe0>\ -\xb9\x84\xd2\x1c\xee?\x84Qduc`\x18\x8dOJ\ -#e\xd6\xff\xa5\xa3P\x89\xfb\xae\xfaq\x801\x0a(\ -.&\xd1\x06\x01\xc2\x10\xdeA\x80\xe1\xef\x0d\x80\xa7i\ -\x96\xffE\xe0A\x19\x0ay\x18_\x00\xce\x95%oN\ -\x88-\x9c\xbf\x87\xb1C\xee\xb7\xde\x93\x0e~c\x9d\xc7\ -?ZL7\xf9b\xe3\xee\x97V\xbe\xf2\x12rp\x8f\ -\xd8\x08\x19S\xec\x85\xfc\x88\xd5\xa6\xc9\x85\xb6\xf0p\x90\ -\x9ct\xbe\xd8\x87\xf8y\xd0@+\xf1M\x22@\x00\x8c\ -\x00\xaf~~\xfe\xbd\xe8\xf7Y\xb8\xe3\x10n9\xdc\x03\ -?`\xe0\xc2H\x88\xf7A,4\xc0\xdf|\x9aE\x04\ -(\xe9\xdcp:\x8a\xc8\xc0\x8b\xf8\xb9i\x7f?\xe4\x08\ -O!\x00\xf8\x09\x07Np\xc3nVN\x82g\xf0c\ -\xb1~\x06\xd5\xafT\x10\x8f\xe5\xc3\xf2}R\x0c\xca\xd7\ -L\xa2f\xeb\xfc\x12\xcd-h\x8e\xa1m\x8d\xc1\x01\xcc\ -(,\x83g\xca\xe09|\xbc\xf7\x03\xf0L<]\x16\ -\xf7\x15\xe6{s\xb0\xd2\x1c\xb9j\xdc\xbdK\x07q\xf9\ -!\xae\x9f\xa5\x94O\x9e\xa8c\xc3}W\xba@\xc5\xf7\ -\xa5;Y!\x0e\xaf\xa0@\x0cE)\xa6\x9e\x9fW\x19\ -@\xb6\xb2\x1e\xdc\x7f\xee\xc8\x89\xe5+s\x9a\xba\xed\xd2\ -\xee|\xc2X.\x9e,B\xf8\x09\xf1\xbcAB\xa7<\ -\xa8\x9fp\xe0g\x5c\x9f\x89\xc7\x08:\x81x\ -t\x10&\x88\x93\xd9XV\xa8G\x96\x8f\xdbWJ\xc5\ -\xfb,\x00\x16\xe03RF\x1a\xc8Mm\xf4\x08[Z\ -\x1b\xe8\xd5\xa4\x0e\x83\xe1\xc3-K\xc9R\xb6\x0f\x05\xf8\ -\xb0|)?\x83\xef\xc8\xe0;2\xf8\xdet\x067\x83\ -P\x95\x81\x05+\xf6\xa7\xe3\x96\xd3\xdb5\x9b\x08(\x14\ -\xc3{4y\x83\xa7\xd0+\x1e$SdR\xd7&<\ -\x04\xf8\x5c&\xaf\x02c\x16^#\xa4\x18MF\x91C\ -\x88\xc9\x19\x22\x97'\x14\x86\x19\x8bl\xdd/\xd7\xf2\xfe\ -o\x03\x85\x5cE\x94v*\xfd\xe3\xbd#\x8bb\xf3\xfa\ -\xcc\x16!\x11OBV\x12\xc2#E\xf0bQ2\xa5\ -|M\x19\xa3\xf4\xa2\xd9{d[\xf7\x1c\xe9\xce\x87\x84\ -\xe5b\x999\xa4\xd1a\x88\xb4R\xc1`\xcf\x06\xf7,\ -\xc1C*\x0c+<\xa0L?^V\x80M\x85k\xa4\ -\xa0\xf4d\x94\xafi\xf4\xe4\x1aV.\ -k/D\xf1E\xf3\x0f\xdc$L\xf9\xf2#8\xd7}\ -\x97z\xe7C\xca\x22dE\xd9x2\xa5\xa7N\xe9<\ -o\x10\xd0k\xc63\x0b\x91N\x02x7\x97\xe6\x8ao\ -\xd4\x93m\xd4\x8c\x9d\xaf\xa3\x90\xee\xd6)L\xa0\x17\x9e\ -\xdf\x8f\xd1\xb9y\x05\x9e@\x00\x10@\x95e\x9c[\ -\xbb\x03\x80\xb2\x1d\x94\x0fA\x94\x08\x0c\x01\xcds\xa0\x17\ -\x19\xa4K9k\xc7\xddz\x86$\xa9\x8eq\x83\x03\xe8\ -o\x19\xa4\x93\x01t\x98\x05h\xc2\x84\x9c\xa8\xb2:X\ -\x7f\xc1\x9c@p\xd7\x8a\x97\xeeA\x00\x1f\x01\x82g\xd6\ -\xb6\xff\xcab\x0a\xa7oXt\x5c\xd3\x92\x9al\xc1\xda\ -x\xe8\x0c\x91>,S\x00\x90\xd2=!\x0e5+\xbe\ -\xad2\x10\x905,!\x93\xc1\xc8B\xe9!\x5ck\x18\ -\xeb\xce\xc1E\xe7\x10/\xf5z\xa1h)\xffB\x22<\ -\x98\x16\x8fr\xe4\x9ex\xe0l\x91@\xd8\xb1b\xa6\x08\ -Lj\xa3\xc8\x93\x08\x10y\xb4\xf8\x0610\x00\x00\xe4\ -\x0e3!wN\x18\x08Y\x83r~\x111'\x00\xc2\ -\x0f\x10}\xf2(\x88\xf8K&\x96\xa9\x19\xbb\x9c1\x1e\ -|\xf6\xb1[\xc4\xaaXye\x15\xab\x92\xd7(\xe0\x15\ -\x16\xf9\xc2\x8a\xe6\x9eY\xe1\xccc\x0c\xe0\x1e\x83u\x8b\ -AS\x06\xb0\x8b\xdb\xe5;]\x88\x02P\xcd\x00\xacE\ -\xe3\x22\xe3\xc0\xf2\xf1,R~\xd6 \x19\xc8\xf0)\xd7\ -\xb8\x8d\xe2\xef\xa2x\xb9uM\xb1\x22(>\x8f\xb8\xeb\ -\x04\x05\xe490\xdc\xc1\xd3b\x89N\xf9w\x00%\xe0\ -\x1c\x87_\x0c\xe8\xd9D\x88%\x1b.vg\xcb\x0b\x01\ -FI\x96V?\x19\x03)7\x95qJ\xaa\x9f\xb0D\ -\xc8_\x02\x5c \x01R\xa8\xf7JA\xf57e9~\ -B\xa2@\x14R(\x83hF\xf1\x02\xd1)\x84\xeb)\ -\x13\xc8\xe3\xb5p\xf6\xa6\x95\xcc\x9fZ\x8c\xdc\x8d\x06V\ -3i>\xc5}\xacR\x1e@\x0f/\xf4\xfb!6\x9e\ -\xe8\xe7s\xc5kb\x04+P\xb6\x10\x92\x95\xe1JE\ -\x98\xa2\xc3\x5cL2\x04\x8b>\x8f\x9f\x9e\x17\x80\x5c!\ -\x11\xae\x93\x03a\xcb\xe1\x01#\x90\x9e\x90\x18*n>\ -\x93\xf8\xe6Sz\xe6H\x19\xfc\xc2e\x10\xe4\xce\xca0\ -\x94f\xa2\xec,\xee/\x8b\xff\xd7\xf2sP\xaf\xdcw\ -\x16\xdf\xffI\x00\x98\x16v4\x1f\x9fE\x98\xc9\xe6~\ -\x22\x9a\xd7\x9f\xbc\xcf\x83>u$\xb7b\xed\xb5K\x7f\ -\xaa\xd6\xdf\xc2\x86\xdfZ\xd9\xca\x1b\xdc\xe2+\x97\x02\x17\ -\xce\xe2\x11&Q\xe6\xa8\x8ca\xdf}\x7fPs\x0f<\ -k\xa0\x13W\xdf\x85K\x86Gd\x91\x16z\x16\xcfg\ -\xc7Q.\xdf_\x80G)\x9c}\xe4\xbe\xa3\x00W/\ -eG\x89\xef\x11R\xd4\xc8\x04\x16>\xa6\x99FM`\ -\x1d\xe1uN\xf0>\xd7y=&\xe5\x16\xdf\xd0=\x03\ -\xdan<*\xbcGK\xdcY\x9a{!~\xe7\x11B\ -\xc4\x1d\xf24c\x8a'\x08IGx8\xf1\xb1d\x98\ -\xbf\x07\x82aK\xa8\x1d\xb1D\xb2\x84dx\x94f\x22\ -}\xf0\x00y\x0c\x01G\xcb\xe7!@\x1d\x22M\xce\x86\ -kd\x911\x051v-\xa9\x07\x09s1\x9a`\x91\ -\xc8\xb5z\x0cZ\x0b+\xc4=,@3TY\xfcN\ -\xf1:\x9b\xcf\xc8\xda\xb3dY\x9a\x16u\xb1\x93\xf8\xa5\ -T\x09\xf7\xa7\x85\x14OH\x9b\x86\xbc\x85\x94\x90\xe6\xd1\ -Q^\x88\xef\x09\xf3}.\x15\x84\xd8i\xe1\xc8M\x15\ -\xf3\xb0\xd9\x9a8\x12\x08\xf0\x04\x9a\x0d\x0b82\xe9\x89\ -G$5\xcf \x22\xc9}\xf0P\xfa\xce\x90<\x08\xe1\ -*\x0ca\xd3B\x8e\x13\x0d\x10\xa2\x1a\x85\x08\xf9\xb5\x96\ -r\x9dr\xb4\xc2\xb7\x00\x00\x96\x9f\x03\x02\xbc\xc0\xeaK\ -@\xf0\x1a\x00\xe0\x05\xf0\x08\xa5\xfc\xbeh\xfe\x11\x96\x8b\ -\xd2\xc65KG\x08\xe0\xbb\xb3\xf1`\xd9\xe7s\x02\xa1\ -\x01\x14>t\x06\xa0n\xf3\x19B\x06\xdf\x9bGH)\ -\x9c{\x845?\xc5\xb3<\xb7\xca\x15\x85\xd2\xc7.\xb6\ -\xe7\xcd\x9cZXs\x13\xc4\xf6\xe0\xa0\xe6.\xf0Z\x80\ -=\xd0\xb3\xee&\xcc\x22<\x7f\x98t\xd7{~1\x7f\ -<+\xa2e\xedL\xe5\xec\x9aY%~\x17A\xdeJ\ -\xf1&ex\x95\x92\x09\xc2\x85V'\x01\xa4O\xd9\x07\ -\xa19\x19\xf6\x9f\x88\xfbO$3Hl\x98\xb0d\xcd\ -|\x0a\x00\x18\xb0\x00\x90\x89\x17\xd0\xd2\xb9\xc2I\xa6x\ -\x04?\x07\x18?\x17N\xd1\xa9$&@\x8c\xd6<\xbb\ -\x1f\xcb\xb9\x10}0\x0bt\x88\x08i\xc2&\x8aE\xe4\ -2\xb8Q\xdc{\x14\x92\xa3\x19,O\xe9\x0c2V\x90\ -O,- \x85\xd4\x92j\xee(\xb1\x14\x00\x84\xb0J\ -)-\x0b4f#!,9\x8c\xcb\xcf\xe1\xc1s\x07\ -\xb7-wh\x9b\xef\xc2\x1b0\x18\x9e7\xe0\xb3\xb0\xdd\ -,\xa5c(=H|\xd7\x8a\xa1^\xf5\xb3H\xa5x\ -\x83f 5\xfd\xac\xfc9G,\x17\x89\xf0\xde\x13~\ -\x1e\xc1\x13\x11\xcf\xf3\xb8\x97\xfc)\x01\x80\x98\x8f\xa2J\ -\x16P\xce\x22\xb1w\x09Y~j\xc5\x8bOP\xfcc\ -\xac\x16\x85\x11\xb3\xa3.\x1d\x03DR>\x03\xa6\x95\xba\ -\xf0\xf9\xdc\x7ft\x0cw>\xf1\x00\x90\xc0\x1df\x1e\xb9\ -\x82\x98\xc2\xb9\x87V\xc6w\xd4\xc2\xaa[\xb6_#\xaf\ -\xacq\xe3\xa9U\xa9\x00dJ\xcb\xd7\x1aS\x19\x94\xb2\ -\x12\xc2\x08i\xa1K\xa3Q\x90\xe6J.\xc4M\x98u\ -\xe0\xf1:I\xa9{V\xf0<\x02\xc0\x0e$\xf2\xc4J\ -\x08\x1d\xe5\x10\xc7J\x00Z\xa1\x05\xb8I@\xaa\xb9\x88\ -ntD\x18N\x87\xf3\xb85\x08\x91hxT*\x1e\ -T\xd7\x12\x99\x8c`\xe9\xca>\xa2\xf0\x80\xc80\xe1\x0a\ -@\x8bC]L\xa8\x05\xf4\x1dH\x8c\x98\xabf\xb7T\ -y\x93\x89\x82\xb5\xcc\xaaU\xb6\x08.#*\x97\x85\x14\ -\xe0\xc2\x0a\xb5d\xc9\x97\x15\xe0\x8e\x0a\xc7\xb5^@^\ -\xc9\xe0\x951\xb8\xaa\x0f(e@\x0a\x88\x81Q<\x80\ -\x18\xb5f\xbdD\xf2\xbc\x89\x22ra,<\x8c\x8b\x13\ -\x00\xf2p{Z8\xca\x1f\xddw\x927B\xaa\xe4\xa6\ -\x9e\xc5\x0d\x142\xf08\xf2>\x22\x98\xf2\x00\xb0\xf0\x10\ -`\xd2\xdf\xa4|M#\xe7\x89\xe1\x8e!\xdc\x97\xd2(\ -1i'zh\xc7\xc0\x05\x02B\xc0\x04\xf1yR\xa1\ -\x00\xef\x84D\xf5:\xe5\xbd\x8a \xe5\xa0xY}H\ -\xee\x12pi\xba\xd6-\xd3*\x94\xe1E\x14\xdb\xf3\xa7\ -p\xed(\xbe\xd0)^\x96\x0f\xa1\xd3\xd2\xf9\xe2Ck\ -\xdaxf]{\xaf\xac{\xef\xa5\xb5m=\xb1\xba\x95\ -;V0\xa1\xd5K\xcdF*;\xd1<\x8a\xea\x1e\x94\ -F\xc3q p\xeeU5\x11Xl\xb0}\x8eg]\ -\xe0\xf9\x96\xe0Hk\x18\x1c^\x01\x83\x10\x18\x8b\x09#\ -\xe5\x90\xc7J-\xc6!Z\x85\xcd\x1f'\xf4\xc8\x13\xe0\ -a\x15\xf2\x02\x8c\x93\xe3m\x22\xee\xce\xf5\xe3i\x87\xf7\ -\xad\x90\xf4\xb2\x08b_D\xec\xd7\x1a\x8e<\xa3\x96\xaf\ -U\xd7\xe02\x16\xe7\xd9N,&\x17\x0b\x8e\x8e\x8b\x05\ -\xe3\xe2\xb0\x1c\xad\xb0ET\xdc\xa0\x14\x86/)\xc0\x95\ -\x15j\xad\x9a\xc1\x16\x08\x0aa\xca%\x90\xa5JHN\ -\x0d\x03P\x8b\xdb\xabY~b\x15\xaa\x82\x99\xe2{\x18\ -8\xb9O\xcd\xaaerc\x9a\x0c\xcal\xd7\x84\xc8\x12\ -\xc8]\xe5!\xaf:\xcb\xcf\x13\x00\xc6\x0e\xf8\xfeC^\ -\x11\xe2a.\x0a\x94\xb7\x11I\x8c`\xed\x0a\x1d\xd9\x9a\ -G\x90(\x8c\x88C`\xa1\xb9\x9aM\xe3>\xf2P\xde\ -\x05\x00\xc2C\x90&b\x9b\xf2i\xa5q\xb2\x00\x97\xd2\ -i\xda\x18P\xbb*\x22\xb9A\xd2-\x89J\xcaD\xb6\ -\xa4(\x0d\x9a\x98\xb3\x08\xa6\xf8\x84\xb7\xe2\x088\xc6\xf1\ -\x0c\x0e@x6\xc0\x9dG\x98\xc8\x83\xddk\x11%_\ -\x8bf\xb3\xa7(\xfc\x9e\xb5o>B\x1eZ\xcb:c\ -\xb2\xc0\xb8\x8d*m\xc3B\x9d\xf2\xc9\xa4\x1c\xc1\xc5=\ -\x93\xbe\xa5\xfdN\xd2\x01A\x16\x00\x08a\xfda\x01\xa0\ -\x97\xf1\xe9\x07\xf4x\x0e\x01R\x0bo\xaa\xbb(#{\ -\xa8 },c\xbc\x0b\x09\x09yd\x1a\xf2t\x0a{\ -Y\x8c\x95RG\xf7\x0cH\x10\x8e\x95\x8b\xd1\x16O\xdf\ -\xc2@o#0\x7f\xee[\x9eY\xa48{P\xe1\x0c\ -/=r\xc6w\xdc\xb6\x98\xe2\xf9g\xa0\xf9\x89#1\ -\xf9Z\x0b\xe0A\x9d\xc5(\x9d\x11\x08\x88\x8b\xf9(\xbf\ -@\x1e\x00\x17+)f\xe0+g\xcex\xd8{V\xbb\ -\xf4\x00 <\xb0r\x15\x18hiW\xf3\xe5\xa4|A\ -,6S\x88T\x5c\x07\x00\x99\x1d\x80@\xb5\x01=\xab\ -\xb8\xf1\x0d,^ \xd8\xe5\xbb\xf7\xf10\x87N\xf2G\ -\xb5\xac|hy\xc4\xf6(\xca\xca\xc1\x8b\x84\x01\x92\xac\ -_\xf3\x09aBS\x0e\xee\xd9\x03\xc0\x89\x93(\xde@\ -\x96\x1f\xd2D\x0a\x96\x93%\x12E\xa8\xf1D\xef5\xe5\ -\xec)\xd9O\x88\xc9\xe8\x22m\xec\xc4%\x03\xc8t\xee\ -+\x0d7\xac\x05\x1d\xa5\x92Z\xdc\xd14\xafV\x1c\xb5\ -l\x1b\x1a\x85\xe5;\x81\x1b \x11\x18uD\xa1\x82\xeb\ -\xcaC\xe6\x8d\x1dY\xc5\xecukX\xbae\x8d\xcb7\ -\xad~Q\xe3rh\xb9C\xcaL4/\xb1\xe0V\x0a\ -E\xda4\x81#\x00x\x82\x07p\xb3w3\x00`\xd1\ -\xc2\xe7\x0bf\x11 \xc9\xc7{\xe52\xce9\x18\ -\x80\xc0\x1dR\xba(\x10\x88\xb4\xa2\xfcl\x80S\x80\xe1\ -\x96\x93eT\xa2\x97*\xc2^\x05\xa1\xae\x80p\x18\x19\ -\xbd\x83\xdc\x05\xd8\xe8y\xf2!\xfa~l1e\x8b\xcf\ -A\x16\x04f\xe9\x19\xaf\xc4I\xad\x12\xc1de\xcd\x02\ -\x80bH\x94\x0bE\xa5\x14Y\x1fR\x88{*\x87\xc9\ -Vc\x015\x0bw\xac\x1a)S\x09\x94\x06\x08Tf\ -\x8b\x95\xe3\x9e4\xf8YZ~e\xd03yH\x89V\ -\x09E|<\x10\x10\x0a\x00@\x11.\xb3x\x92\x98\xa7\ -%hX\xb3\xbcM\x81f\xcf\xb0\xe0\x5c\xacY\xd7u\ -\xd7\xe6\x1er\x01\xa0\xabA@\x14\x0arP~\x18\xcb\ -\x97\xf2\xc5\xa63\xf9~\x91\xaa\x80\xe6\xf7Q\xb2[g\ -g@\x03\x9aM\xe35\x83\x90\xa4T\xc9\xd5\x0d(n\ -6\xcd\x91?\x93\x81(\xcf\xef\x12q\xd2b\x13 \xe6\ -\xb9%\x99<{&\xd7U\xcdA\x90{q\xec\x19\x0f\ -\xa2\x9c]YL\xfe\xe0\xa6\x95\x8en[\xf9\xd8\xb6\x95\ -\x8emZ\xe1\x90\xc2\x15it+\xdf\xaf\xc5!Y>\ -9z\x0a\x0a\x97\xe2\xf5\xdeM\xaa\x9dO\xa8es\x7f\ -\xdeB\x19\x9e\x91\xf0\x18\xc1#iZZ\xeb0\x01\xa5\ -s\xf2J(X\x99\x89\xe39\x0e\xf0\xc8'\xf2\x0b\xf8\ -\x19\x1b\x85.)_\x9f)\xc4\xf5W`\x9c\xd5x\x8d\ -\x1a\xf8N\xd5\xd2S\xbc\xd5#G\x8as5\xff1\x85\ -\xf2I}\x0bg\x9f\x08\x00OP\xfe\x13\xc8\x8b\x08\x0c\ -\xae\xdc\xc5\x1a\xf2T\x01\x00\xf4\xe70\x18\x1e\xa3\xf7\xe6\ -\xf0e\x91Q\x90VD\xdc.#\x95)\x9f\xbaf\xe5\ -\xd3\xd7Q\x1c\xf1\x98\x8bk.=\x84\xa5\xaa\x94*\x1b\ -T\xba\xd94\xac1\x88\xfb\xff\x04\x82.@ >@\ -&P\x08\x00\xca\xa6N\x08)7\xacj\xee\x96U\xcd\ -\xde\xe2\xe7\x1bVL\xe8q@\x10\x07A\x0a\xb1\xb6\xa2\ -\xf1\xe3OR\xc0\xcfQb\x9d\x9bBu\xca\x87ek\ -\x1d\x01\xc5k\x81\xc7-\xf2\xa0h\xb7\x82\xc9 \xaa\xf4\ -\xcb\xa5v\x9al\x01\x0c\x0e\x18.\xdde\xa05i\xd4\ -\xad\xd4\xef\xc8-\xf7f\x11c\x83R>\x03\xad\xa5i\ -?\x80\xf6\xf3<~\xc7\xa0a\xcf(\xc6\x07\x90\xfc\x9a\ -\xeb\xe7:!H\x9cD\xf5\x90*\x7f\xf35K\xf1S\ -\x96\xa2i[Y>JOE\xe9\xa9\x9aQm\x12\x1f\ -\x80\x10jB\x8dLGs!\x9a\x13\xc9\x19\x80\x14\x0f\ -\x89\xe0\xe2\x81t\x8f\x5cC\x00\xd0\xab\xcb\xc8dL\x1a\ -K\xc6\xfeB\xb2?\x09\xe3\x0c(\xc5a\xc2\x84\xbe<\ -\xbc\x94b\x7f\xc9\xec\x1d\xc7!*0j\xf1\x87\xe2\x99\ -{V$\x91\x81;\xb9O\x08 F\x94\xe2\xbe+H\ -_*\x17!6\xf3\xf7H=nc\x95\xb7\x18`/\ -\x9dSi\x94\xe6\xb75\xeb\x17\x14#gPs\xb8\xf1\ -<\x10\x9b?\xb8Ez\xa22\xb0\x1d\xe2\x97j\x03\xfe\ -w\xc9\x06\xd1\xaa\x11\x90efv\xc9\x22=\xe6\x1b\xec\ -\x5ct1\xafhd\xc7*\xa7\x8e\xacf\xf6\x9a\xd5\xcd\ -\xdf\xc0\xab\x5cw\xc0*\x84\x13\xe4\x0f\x13\x07\x87w\xf1\ -\x06{\x00\xe2\x00`\x1cy2y\x08\x08\xf6\xb8&\xe1\ -\x01N\xa1\xfa\x03-E;\xe5\xb7{\xcaw\xa5_(\ -X\xae4\x0b\xab\x0e)\xae\xf3<.S\x00\xa89\x0c\ -\x94\xe6\xfb\x95\xb2j\xd5/\x87\x98\x18\x1d\xbb\x83{\xbc\ -M\x0a\xa7\x22\x93\xeb\x16\xe4\xf3\x81\x81C\x94\xaf\x15I\ -\x84\xd0\xe6RfB\x85&\xcb4\xff\x9e\xaeU\xb8\x06\ -b\xfa\xb9\xa4jF\x137\xef\xc9\xb9\xf2\xa5x\xd26\ -7\xb1\x06s\xcf \x97w\xe5c\xe2HR.\x8a\xcd\ -V\xcd\x858\x8c\x96\xc85\x0d\xcd\xd8\xb9\xf0\xa5\xbf\xe3\ -\x11\xe4\x15\x5cH\xd5\xff\x08|\xe7\xe2y8\x9e_\x9e\ -\xb6W\x04r\xdb\x85Dq\xa3\xfc\x09\x0c\x09\xbeR\x06\ -\x17(W\xb5\xd7\xec\x19\x9c\xe2\x94\xf4\xf2\x96\xe5O\xaa\ -\x88\xf5\x86\xc5\xe4\x8b\xe8\xe1\xceKfn\xa2x\x88\x03\ -\xaf\xaa\x08\x12\xf1\x8b2HZ\xd0P:'\xc5k\xde\ -_\x8b?\x01\x88\x8d\x8a;\xb3\x18\xecl\x06]u\x7f\ -!,<\xa4<\x17`(\xa5\x0b\xf1P*\x14\xb9\x00\ -\x80\xf3\x00\xce5k\x92g\x8e\xef\x82\xfc\x00\x88\xc2\xc1\ -\xab\xb8\xcf\x1d\xab\x9a\xdc\xb7\xea\xa9\x03\xab\x98\xd8\xb3\xa2\ -\xe1-\xcb\xed\xc7-\xc2\x8as\xfa\xd7\xc8\x1a6\xe0\x1d\ -\xb8\xd9\xa9=\xab\x98\xde\xe3u\xd7J\xc6\xf9\xcc `\ -\xecUX\x81h\x9e\xd7 \xf8\xb5\xd6\xaf\xd54\x06&\ -\x13o\xa5\x8a^Y\xb5H]\x14\xc5j\xb2Gq\xb4\ -P\x0b$\x9a#\x9fy\x80\x90\x12\xce>\xb3b\xcd\x0a\ -\xce>\x86\xe4\xdd'K\x80\xd0\x92I\x84\xc8jB\xe2\ -\x03C0o\xf1\x1b\xbeO\xdf\xebf\x09\xa5P7M\ -.\xb7~\xe1\xe2/\xc4\xb3z\xa7x\x80\xa2\x99UM\ -\xe2\xb8\x096)R\x96-\x05\xa3\xe8 \xca\xcfR\x18\ -\x13\x91\x05\x00\x9a\x07p\xeb\x02x\xaaLy)\xc0\xa6\ -5\x13w=\xe7A\xe4I\xf8nD\xd3\xe8.\xbdT\ -Z\x09\xef\xd0\x8a\xa2V\x16#x\x93\xe8\x88H\xf6\xb1\ -\x95\xe2\xa1+\xf0\xb0\xe52\xae\x19\xbc5^[3\x90\ -\xca\xf2b\x22Xn\x8e\x8a9q\xc5\x85\x13X\x16\xf1\ -\xb8\x08\x0b\x14)SUPXV\xcc\x8d\x04eM\xb0\ -\xda\x80f\xea\x9a\xbd2\xef@\xf3\xa4e\xb6L\xe1\xf6\ -fI\xd7\x16\xf0\x0c\xaa\x00Z\xe5\xf3\x02\x02y;\xca\ -\xbf\xa8\x16\x0a\x09\x9d\xddZ\x1d\xd4J\xa1\x5c'\xa9\x0f\ -\x9f/\x80\xf5\x96\xa1\xf0\x0a\xe2h%J.\x1b\xde\xb0\ -\xfc>\xe2b7\xe4\xa8\x1bv\xdc\xb3Hl\x5c\xc1S\ -\x00\x94I>7\xb5\xe5^K\xc6\xae\xc2G\xb4\xd4:\ -\x8f\x85\xcc\x03\x809\x0f\x5c\xca\xab5\xa9\xa4\x01&l\ -\xb9B\xd2\xa1\x1b\x907\x88-\xa9k\x81X1n\xb1\ -d\x11\xb7Hl,_~i\x15+\xef\x90\xf7ns\ -H\xf9\xd2+x\x10\xa4xF\xeb#\xca\x904\x01\x04\ -\xb9\x85uk\xa2IdK\xdf-\xf7\xad\x18\x9e\xeeV\ -I=\x00\xfcC\xbc8\x9f\x0e\xbf\xf0a,n\xb9\x99\ -\xf1\xd3\xac\xa6j d\xa9Y2\x0c\xdc~\x96S>\ -\x0aGa\x9a;\xd0\xfb \x0a\xd4\x8a\xa0@\xac\x19\xd2\ -\xf4s\x22\xa9p\x92\x5c\xaf\xbd\x14\xe3\xc8\x98\x93\x94\xfa\ -1\x806\x0e\x18 \x95*<\x01\xfcA\xc69\x1b2\ -\xac\x22S\xd5g\x16\xe1=K\xa7\x0e\x9d\x94\xe0=\x0b\ -\xc75\x8f\xa2*\xafm\x8b\x09\xc2\xca\xe5B\xe5JU\ -\xcf\xa78\xa4\x14-\x97\xf8\xaa\xca\x9d\xdf\x03@)\x9d\ -_h#\x7f\xf55N c\xc88`\x98\xc43L\ -;\xab\x0e\x8a\xed\xa3\x00\x91?y\x82\xb0\x5c\x92\x9bP\ -\x22D\xf0]\x02F6\xee,\x9b\xef\x8b0 \x05<\ -l)\x00\xac\x18\xdd\xb5\xca\xd1\x1d\x00\xb0i\x05}+\ -\x96#\xe5w\xc9K\xccA\x92\x16\x085\xcbV<\xba\ -\x86\xe2\x91\xd1U\x88\xe82\x1e\x02\x0f\xd45\xcb\xf5f\ -\x19`\x00\x80G\xf2\x0aR\x96\x08\x05\xb24\xa5F\x9a\ -\x0d;B\x81\xd7\x01\x806p\xdcE\xf9\x0f\xacl\xe5\ -\xb1U\xae\xbf\xb0\xea\x0d\xed\x81\xf8\x02\xf9\xca\xea7\xbe\ -\xb4\xda5\xc0\x001.Q\xce\xaf\x8c\x08/\x10q\xca\ -W\xfeL\xfa(\xe5\x93\xd9h\xdaZK\xe3N\xf9.\ -\xbf\xbf\x08\x03S\x80b\x9a\x1c_S\xda\x0b\xa4\xc0\xe2\ -<\xde\x18g\xf7\xf1\xdcx\xb6\xec\x01\xd2Z\xf2\xfd,\ -8P\x10\xc9$\x94\x06\x00D\x00\xa5y\xfb\x1c\xb4\x9a\ -\xa90\xa1:\x8cYK\xe1\xfb\x93\xeb\xc7\xdd\xd4o\xa2\ -\xa6~\xab\x07\x91\x01KD\x92j\x06-\xa5n\x84{\ -\x98\xe0\x9e\xce\x01\x80'\x16\x00B\x22\x95\xe84\x8f0\ -[0F(e|\xf3y\x1f\xe5w\x9a\x81\xcd\xc4+\ -\xc7x\xb1\x12\xa5\x11\xa3\xc3\x179:\xcaW\xa5\xaf\xdb\ -\xf4!R'\x02\xe5\xd2:\x08\x93sG\xb84-\xd8\ -\xe8\xa2\xa0/\xa3q\x12\xe2\x83W\xd0\x1c\xbe*\x85p\ -q\xaasS\xcd\xa0\x9b\xb8\xe1\xbb\x1cs\x87Q\xe7\x12\ -S\xa3\x90\xaa\x1c\x14\x93\x8b\x85\x16B\xb2J`\xb6e\ -\x90\xba\xf21\x90\xcaM\x16\xe2\xdasU\x05\x8bug\ -w\xce8\x09w\xcf\xc1\x94\xe7\xf9\xdf\x05\xcbE\xf4>\ -\xa4\xaaY,_\x1e (\xcb\x97\xfbg\xd0\xddB\x96\ -\x8b\xb5+\x96\x01\xc9\xf3w\xc9\xd5\x02f\xae\x13U\xc8\ -S,\x5c\x82\x1c\xad=\xb5\x9a\x8d\xd7V\xbf\xf5\xb95\ -l}a\x8d\x9b\x1f\xacn\xed\x8dU.\xc0\x9a\xa7\xef\ -\x91N\x89\x07\x1d\xbb\xa9g\xa5\x94\xae\x80E3z\xca\ -\xebQt*\xd6\x98\x825\xaaH#\x15\x05\xa9,+\ -\x03e\xf9P\x9a\xd62\x82\xb8d\xcd}d\xc3u\xb2\ -\x01uv\xff2\x8c~\x09\x01\x14x\xb5 \x9e.\xc0\ -\xdf\xb4\x0e\xa0B\x18\xa5\xa6i\x0d\x0f\x81\xe4\x15\x11\x0ar\x07\x95\x13\ -k\x105\x98\x80\x0b\xd1k\xa0\x1dO\xd3>\xc5=\xf3\ -\xbec\x06\xd1\xfd{ V\xf5L\x06\x0f\xa5\xb2/\xad\ -\x8cI\x5c\x09\x18\xca\xf03\xc0A\xb9E\x88e.\xcf\ -\xa7\xda\xf82@P\xb5\xfa\xd4\xed\xa8\xa9\xbb\xfa\x0a\xe5\ -\xe3\x114]\xccXs\x02\x11\ -\x94\xab\xc9\x197g\xaf\xf9zrhW\x17@\xa6 \ -\x90\xa8\xd2U\xa5T\xaa\xa7\xcbG\xc1ES\xf7\x5c\x1e\ -Z6G\xca9\xff\x94\xb4\x04\xd1^<\xa4z\xe1\x99\ -\xd5,=?\xcfWq\xcd\xa4\x82\x85\x10\xc2(\xf9\xb4\ -\xea\xe1\xfd\xed\x22:\xb8V\x15:\xe2qT\xe3\xafJ\ -\xd8\x14m\xfel\xc6\xeaTIK\xecK\x03\xc8\xca\xed\ -U\x0a\x9eD\x5cL\xa8\x1bf \x87p\x9d\xc3\x00a\ -\x0cw\x0ap \x8b!\x5co\x14\x90\x17LA|a\ -\xc6\xe5d>\x95\x5cW\x93&\xe5\xe2\x07\x137\x9d\xf7\ -\x0bCb\xb5\x1a\xa9ei\xa5t\x8a\xbbRzb\xf5\ -\x08\x83\x8fEV\xfeCT\x98\x91R\x87\xf5\x036U\ -D\x85\x18\xec\x08\xde/B\x8c\x95W\xcdRyv'\ -\xe0h\x1b\xc63\x0d\x00\xca\x01\xee\x1d\xd0\xf0\x0c\xc9<\ -K\x12\xa14\xb1~\xd4Sz\xcd\x90\xc5U\x0dX,\ -J\x8fE\xe9W\xca{\xecJY\xb7\xc5:\x01\x00\xe5\ -\xb2|mv\x19u\xe9f6\xc0V\xf5\xb6\xdb]\xe4\ -vx\x9d\x91\xe7\x9f\x02\xf2\x9b\x84.M\xf3k)y\ -\x8b\x90\xa2\x0a&-k\xab~\x91\xb1\xd2\xc2\x11\x9e;\ -F\xec9\x0c\x11+P>>w\x13e\xdc\xb5\x86\xb5\ -G\xd6\xba\xf1\xd4:6\x9f[\xfb\xc6sk\xbd\xfa\xcc\ -\x1aV\x89\x99\x90\xa7b\xb1h\x01A\xf3\xe50bW\ -\xf0!\xe9\xe5\xbd\xea\x00T\x11\xe3V\x08!]\xa3\x9a\ -\x17\xe7\x7ff\x1e[\xd9\xc2s\x06\xfa\x95U\xad\xbc\xb6\ -\xea\xd5\xd7V\xc3k\x0d\xaf\xb5\xb8\xdc\xba\xabo\xacv\ -\x9d\xbf\xad>\xb1\xd2\x05\xd5\xcaifO\xeb\xfa\xaa\xef\ -W\xb95\x83\x7f\xb1\xea\xc5\x83'\x12\xf3\x12\xa5\xe0\xfa\ -\x11g1Z\x05K\xc6:\x93\x88\xbdZ\x16\x8d'.\ -\xc6Uuc9\xda\x07\xd8\x85\xc5\xf6\xf2\xc0\xc3\xcec\ -d\xe3vs4\x039y\x02\xfb'\xeb\x01\x04\x92\x12\ -\xd2\xa5\x22\xbc^\x9e&W\xa4|\x14\xa9\x02K\xb9\xf9\ -$\x17{\xa5|\x09\xf7P\xcd\xef\x9c\xe0\xa2k\x95\xee\ -\x09\xa4\xcaB\x94\x95\x90\xcb\xe315\x81\xa6I\xaa\x10\ -^G\x045\xa3e\x84\xb0\xd1k\xc95\x9d\xfc\xbf6\ -\xa7v\xe3\xd6q\xe5N\xfa\x9c\xc4U\xc9\xbdK\xfa-\ -\xb6\x1c\x00H\xca$x\x81\xf2\x01,\x7f\x10\xe5\x8f\xa0\ -|\xc2\x0c\x8aT\xb5\x92\xf6fH\xf1.\xa3\x99#l\ -\x01b\xadu\xe4\xe0\x054y\xa4\x14\xd3\x15\xf7\x92\x81\ -x\x05>\xe2-\xe2,\x18\x12\xa1#F7\x98\x87E\ -\x94\xe2\x12kV\x1fZ\xf3\xd6s\xeb>xkc7\ -\xbe\xb0\xf9;\xdf\xda\xe2\xddom\xf6\xeck\x1b9y\ -o\xad\x00BS\xbe\x8a\x8d\xb9\x90\xaa(9tt\x80\ -\x87\x1d\xe0u\x90\x9f\xb1\xf8\x5c\xa7\xf8\xbbd\x15\x0f\xc8\ -C\x1f\x93s>\xb5\xd2\xf9\x97V\xb9\xfc\xc6\xaa\xd7\xdf\ -Y\xcd\xd5wV\xbb\xf1\x16\xb7\xfb\x86\xf7\x80\x00\xa9\xc6\ -\x05W\xad?\xb3\xf2\x15\xad\xdc\x9d\xc2\xbc\x0f\x88\x91\xeb\ -\x96\x8ekK\x22\xd6&\xd4N\xa0\xd4\x09^'\xb1\xec\ -I\x94?n\x09(Z\x92\xc8\xdf\x93\xc8\xb3\x93H\xb7\ -\x12a\xde\x09Xb\x1c\xae3\xb6\x12\x8b)\xef`\xd0\ -:\x18\xb4n\x06m\x80A\x98\xf0\xbc\xc0\xd0\xa6\xbbF\ ->\xe9P\x01)o\xc1\x946\xbc@\x125\xcb\xa6x\ -\x0f9\x15\x97\x10\xc1\xd3\xba\xbbW}#\x12&\x85\xe3\ -\xaa\xeb\xe7a\xe4*\x07W\x15\x92\xea\x10E\xdc\xe0I\ -\x18@xD\xeb(\x8c\x81\x16m\x00\x81*\x81\x15\x9e\ -\xd2\xb1ro\xb3j\x97%Ttr_]\x08 \x95\ -K\xaf\xecq1=\x1e\xe5\xc7c\xdd\xf1UC\x08\xde\ -\x00e'T\xe1\xcd\x00[b\x8d\xbc\x90\xd6\x144k\ -\xa9l\x02\x0f\xc3\xf8\xe7\xe3\x9d\xdd\xe2\xd4\xfc\x03Wy\ -\xa4\xfa\xbf\xc8\x98\xf6\x1e\xee\xb9I/\xcd\x13\xa8\xeaJ\ -\xd9\x88\x0f\xcbW\x88\x92\xe7\xf0\xb5@\xe4\x91\x98\x5c\xcd\ -\xac\xcd\x9e\x92\x06=\x84\x0c\xbd\xb4\xd6\x83\xf76x\xf3\ -k[z\xfc\x93\x1d\xbe\xfd\x93]{\xff';x\xf5\ -\x07[\xbe\xff\xd1z\xf7_\xe3\xbe\xb9\xc8\x98,\x1c\x91\ -\xc2\x87\x15\x1an\xe3A\xee\x92F\xde\xc7}\x8b=?\ -E\xf1/q\xb1op\xb1\xef\xdd~\xfbZ1l\x88\ -V\xed\xd6{\xab\xd9|mUW\x9f[\x05\xf1\xb7\x5c\ -\xe5Q\xb8\xe0\xe2E\x95N\x9d\x91\x7f\x93o\x93\x85\x88\ -\x11gp\xf3\xa9 7\xb9y\x19R\xb4\xf2;Y\xe4\ -w\xf3\x96DN\x9c\xd4\x04H\xf8\xd9\x09?'\x82\xf0\ -\x04<\x85\xe2g\x02\x16\x95\xc8\xc0&U\xf7C\xd4\x88\ -\x97\xcaVD\x18\xf1\x02\xa1\xa1-\x94\xb5\x87\x9b\xd4\x0a\ -\xa2\xa6W\xbd\xa5`\x15\x9eh\x11K\x03&k\xd1\x9a\ -{\x12\x16\x97T\xa7\xd02\x87\xcb\xd6\x12\xec\x1a\xbcb\ -\x93\xf8\xad\x125\xdd+\xe9\xe1 \xf7\xad\xa5\xf0\x09Y\ -\xa0\x96\x98\xef\xb9ei-\xd8h\x7f\x85\x06?M\xe9\ -\x1b\xcaM\xa8\xe8\xff$\xf1z\xad\x84\xd1W\xc9\xba\x87\ -\xbc\x10s\x0e\xb6\xc4:\x11A-\xf7jQI\xcb\xca\ -\xaaz\xde5\xed-\xd4\x0e\xa5\xa8\x96\xbcU\x84\xa2z\ -\x86\xb9\x07\x16\x9d\xbama,_\xd3\xd5\x9a\xfa\xf6\xb2\ -\x15Ur\xcd\xbb\xeb\xfb\x91\x00\x5c\xe6b]F\xc4?\ -&\x1f7X\xa28\xb8\xfe\xd4\xeav\xb4\xa3\xf4\x0b\x1b\ -8\xfdh+\xcf\xffh\xd7\xbf\xfa\xbb\x9d}\xf3\xcfv\ -\xfd\xc3_m\xe3\xc9\xcf6pD\xae\xbc\xf0\xc0\xb4\x9f\ ->\x8a\xd2\xf3\xc6\xb4A\x94\x9cz\x1a\x17?\xfb\xcc\xca\ -\xe6_\xe0\xea_\xa2\xf4\xb7\xb8\xf3/\xadq\xeb\xa3\xb5\ -\xed\xffh\x1dG?Y\xc7\xf1\x0f\xd6r\xf05\x00\x00\ -\x14\xb0o\xb1\xf0B\x5c\xaf\xae\xafmJ\xd1\x89k \ -\xf7\x18\xe5\x1fX&1\xcd+\xf5f\x80U\xab\xd0\xa3\ -\xbd\x7fG\xa4tG\x0c\xf8!\x8cy\xcf\xd2:\xb6-\ -\xb5}\xc3R\xb0\x86\x148Hr\xeb*\x02Xp\x8d\ -\x02B\xb2\xcb\x9b5\x19\xe3\xe5\xe5J\xd9D\xe4\xb4\x83\ -\xd8\xafy\x02\xd22\xf5\x17P\x9f\x01\x15]\xba\x1a<\ -2\x1e\xada\xa8\x08T\x936\x9a\xb2MQ\xe1E\xc3\ -\x1c\x1eF`[\xb2\x14\x14\x91\xda\xae\xba\xc4=\xee\xed\ -\x00\xe5k\xad@\x1bSnY\x08\x82\x1bA\xf9\xd1\xe9\ -\x87\x96+\x99\xbc\x07!\xc3\x13\xa8@\x86\x10\x99\xa5\x82\ -Rm\x85\x97R\xa5\xdcZ\xac\xba\x86\x10\x82w\x93$\ -\xab_\x02\x22\xc0%\xd6\xcf\x12\xd6\xb8>\x1e&M%\ -\xed*o\xd7~B\xbc\xad\xae\x15\x1e\xbfc9\xba\xd6\ -\xccC\xe4\x81E&\xef\x00\xc0\x1b\xfc\x9d\xb1\x82\x9f]\ -\xd4uj\xf2\xc8\xc7\xf7\xf8y\x0d06JK\x95\xa2\ -\xbb4Q\xf3\x00\x05\xf3*\x14|\x88R\x9eY5\xca\ -i\xd8\xfb\xdczn|\xb4\x85\xa7\xbf\xd9\xd1W\xffb\ -7\xbf\xfd7;\xf9\xe2\x9fm\xfd\xd9\x1fm\xe0\xe4+\ -\xe2\xf8S\xcb\xd3\x83\xa1\xf8\xfc\xa9GV<\xfb\xc4)\ -\xbdr\xe9\xb5U\xae\x90B\xad\xa0\xfc\xb5\x0f\xd6\xb2\xf7\ -\x9d\x0d\xde\xfa\xa3M?\xf8\xab\xcd>\xfa\x9bM=\xf8\ -\x93\xf5\xdd\xfc\x88\x97y\xe5\xea\xe2\xb4)5\x07W\xa5\ -\xd2\xa7l\xd2M\x95*]\x886{\xb8-\xd4\x9a\x85\ -\x1b\xd3\xd4\xec=,\xeb\xa1E\xc6\x1fYh\xf4\x01\x7f\ -\xbb\xcb\xa0\xdf\x02$'\x96\xd1\xb3oi]\x80\xa1\x03\ -0\x90\xf2\xa5\xe2\x8e\xd3T\xba\xad\x12n\x95\xaeu)\ -\x85\xf5D\x9b<55\xec\xe6\xf2\xc9VTN\xae\xbd\ -\x04\xday\x14\xec\xe7\xda\x02\x01\x04W\x9f\xf1\xa9\xe0\x94\ -TR\xde\xc6y\x19\x94\x9f\xd4\xb2b\xc9mW\xb9\xd6\ -\xb6\xa5w\xed\x03\x80C\xf3\xf7\x03LxO&\x16\x19\ -$\xbb\xc9\xd6T2^ Gc\x84\x17\xc8W:\xa9\ -Wy\x06\xc2\xa3v\x1be\xaa\xcbH\x1b\xdf\xd1r\x15\ -`\x12B\x1a\x89\xcf\x0dX9\xc0H\x05l\xc9\x02\x9d\ -S\xfe\x8a\x03y\xba\xf65\x08l\xfd\xc7\x969\x04\xd8\ -\xb4\xb4\x0b\x00B\x5c#\xbe\ -G%}\xae\x88W\x15^J\x89\x19\xe7\x08\xc41\xa6\ -@\xe5\xc90\xe0b\xad7\xe3\x92+\xaf\xbe\xb0\xa6\xfd\ -\xf76t\xfb;[z\xf1'\xbb\xfa\xf6\xaf\xb6\xf6\xea\ -\x9fl\xe6\xc1/\xd6u\x0c\x00V^@4p9\xb3\ -\x8f\xad\x106\xaf\x961\xe5\xcb\xaf\xac\x12B\xa7r+\ -I\xf5\xfa[\xac\xfe#\xff\xf3'\xdbx\xfd\xcf\xb6\xf5\ -\xe6\x9fm\xed\xc5\x9fm\xf4\xec\x1b\xb7\xd7=\x9ft\xcf\ -\xd5\xdeA\xb8T}sQ\x01\x9b\x0dk\xd5\x0e\xda\x88\ -\xd6\xbb\x19\xb8<\xcd\xc8\xa9xs\xf9\x9d\x95\xac|\xb0\ -\xe2\xe5/\xf8\xf9\xbd\xe5\xcd\xbe\x06\xfd\xcf\xb0\xb8\xfb\x0c\ -\xfc-\xf310\xe9x\x0a\x01!\x0d\x85\xab\x9d\x8bW\ -\xb4\xa9%S\xae\xc5g\xa2\xaa\xe1\x93\xe5\xc8U\xf7\xe1\ -e\xb0t\x95D\x09\x00\xf24\xaa\x15pB\xca$\x0b\ -\xca\x808i7Q\x0a\x83\x98\xec\x04\xe5\xb7\xae\x01\xb2\ -MKE!\xe9j\x17\x03\x00|\xdaL*\x10`\x99\ -\x99\xda1Lh\x94\x82\xb4\x9e\x90\x8bK.$.\xab\ -\x12\xa9\x8cL\xa7t\xe1\x85\x15\xc2\x89r\x00q\xf6\xc0\ -\x19q\xfc:`\xc0\x83tr?\xed\xbb\xa4\xb9\x00\x97\ -k\xa4\xa3\xacT\x89v4u\x02\x94\xee}\x80~\x01\ -6\x81@\xd7\xb9\xc5un;\x09\x02\xac\xc0\xd0\x0dw\ -/\x19\xdd\x02\x80X?\xdf%n\x02\x80\x02*\x91g\ -\x5c\xb4/Ben\xe1\xe1k\xa6\xd66Q\xf8CL\ ->\xcc>\x9f\x9bT\xc5\xaa\xa4@3ex\x84\xba\xed\ -\x97\xd6q\xed\x83\xf5\x9e~k}\x84\x84\xee\xeb\xdfX\ -\xd3\xde\x07\xd7\x07\xa7xY=p\x9e\xa3\x14\xdc\xbd\x94\ -N\xfe\x5c\xb1*\x12\xc7\x83\xaa\xf6\x1c \xb5\x01\xa2\xe9\ -{?\xd8:\xa1\xe4\xea\xf3?\xd8\xd2\xa3\xefl\xe0\x18\ -\xa0,\x9e\x12o\xb5|\x89U*?\xd5\xdc\x82\x16\x9c\ -\xb0\xa2\x10\xc4R\x03\x17A\xf9\xb9(\xbf\x88L\xa1l\ -\xf3K\xab\xda\xf9\xcej\xf7\x7fB~\xb6\xea\x9d\x1f\xad\ -l\xe3#\x7f\xfb\x02\x80\xbc\xc6\x02\x1ey\x030p\xcd\ -|\xb8HI\xa0\x1f7\x89\xe2C\xfc>\x07\xef\x91\x07\ -/Qm\xa0\xaa\x7f\x0b\xb4$\x8a\xa5\xaa~_\xeda\ -\x9c\xbb\x94\x90\xba\xb9\xf2s\xbd\xc73dh\xc1\x87\xd4\ -\xd6\xdb[\xe8y\x95t\x066\x1d/\x92\x0e\xc0|\xbd\ -\x84#Dn\xd9/\x10\x10\x0ad\xa1\xb2\xc2L2\xa4\ -,-\xd9\xe2\xe1\x04v\xcd\x9e\xc4\x89\ -,_\xca\x17\xf0\x18h\x1f.8\x83g\xf2i\xfa\x1c\ -\x8e\x11!\xe5,\x22\xc3\xaa#\x9dn?\xfc\x0a.\xf4\ -\x9d\xb5\x1d\xaa\xf9\xd6\xb7VM\xa8,\x9b\x7f\x05\x7fz\ -ne\xf0\xa8\xd2\xf1\xbbV\x84\x82\xf2\xb9/eV\xda\ -\x98\x9a\xd5\x07\xa9C2\x7f\xdf\x9a\x86\xebi?\x82@\ -\x90\x09\xd03y\x95\x07\xf2\x9aY\x09\xd4\xaa\xf7\x83\x08\ -\xba\xf2uO\xf1Ay\x0dH{\xf6\x18a\x08\xf2\x18\ -\x11I\x9d\x06\x00\xa1\x11\x5c\x22\xaeX\xabR\x81\x8by\ -h\x08\x92\x0f\x92\x10\x18\x86\x1cM\x9cX\x04\xa2\x96\x07\ -W(\x80,\x16-#\x22pK\xc46\xe5\xec\xb3d\ -\x02\x93\x00fTK\x99\xaabY\xc7\xba6\xadd\xea\ -\xc0\x9aWnY\xcf\xd6]\xeb\xdd\xbcm\x1dk7\xac\ -zz\xcf\xad\xf0\xb9\x05\x0e\x11\x14M+\x13k\xb5\xba\ -\xe6v\xe5j\xdf<1?2\x05\xb1\x81[\xe4/\xa2\ -4\xc2I\xe5\xce\x17Vw\xfc\xd1\x9an\xfch\xcd7\ -~\xb6\x86\x93\x9f\x00\xc1\xf7V\xbe\xf1\x0d\xf7\xf3\x01\xaf\ -\xf5\x1aK{\x0e/y\x049\x85\x18\x8d\xc0\x19F\xee\ -\x12\xe3\xee\x01\xee\x87\x96\x07\x00\x0a\xe1)%\xa4\xa2\xa5\ -H1\xdf\x9b\x0fyR\x93\x09\xb9\xfd\x0c\x14\x9d\x069\ -Lm#\xcdj\x9d\xc6\xf5k\x7f\xff<\x1cb\xc5-\ -\xca\xb8Z\x02\x11D\x94\x1f\xc4\x05\x07QPP1_\ -B\xfa+\xeb\xd2\x0e!Y\x5c\x86\xbc\x856\xa8\xc0\xb8\ -57\xaf\x86\x0fy#\xdb\xd6\xb4v\xcf\x86\xae\x7f\xb0\ -\x89\xdb\xdf\xdb\xe4\xdd_l\xe4\xf4gk\xdf\xfb\xda\xcd\ -\x89h\xed\xa1B\x93d(\xa5\x14\xeb,&\x84\xe4\xe3\ -\xe2s\x86\x14\xb2T\xca\xa5M;\xd7\xb9\x07\xae\xad\x8c\ -\xc3\x09\x80@\x02x!\x81\xcf/\xaf$\xf7\xcf=\xb8\ -\xfd\x90\x0e\x00Z\xc6\xf6\x88\xa3\xc2F\xa6\xc2\x06\x06\x16\ -\x9a\xbcka\xae%\x12\x19\xe3j\xe54Y\x00\xfa\xb5\ -\x1b'\x95\xdc0\xa5\x19ie0:\x97,];v\ -\x07\x19\x80\xd1\x03\x90s\x8crN\xf8G\x18\xfb\xe41\ -\xeeZJ\x13\x81\xd2\xd2\xa6V\xe0\xc4\xb0\x17x\xe8%\ -\x0b\xa3\xe8\xc2\xe1-+\x1d\xdbA\xb6@\xf6\x86E\xfb\ -\xb1z\xe5\xc4\xca\xb1[\x17\x11m\x0c]\xe6\x7f\xb0\x16\ -\xc8\x97:r\x85A\xa8c\xb7\xa03W\x0b2\x8bO\ -\xac\x04\xafS\xb9\xfd\xc6j\x0f>\xe0\x09\xbe\xb6\x06\xf8\ -E\xdd\xc1\xf7V\xb3\xf3\x83Um~OJ\xf9\x11\xe2\ -\x09?Y\xc6\xc5.\xa0\xe4\xd9\x97V\x04G\xc8\x9f\x84\ -\xb0\x92\x92\x16\xcc\xbe@\xe9*\x03\x7f\x0b\xcf\x11\x9fx\ -E\xea\xf4\x18\xaeq\x8b\xc1\xd9\xc5\xb5+\xd6\x93\xf3k\ -V\xee|\xdf}z\xcb\x04\xf1s\x0e\x0f\xa5\x85\x1c\xd5\ -\x14\x10\xaa\xe0*\x1e\x00P\x86b\xbd\x06\xd4\x81@^\ -@\xec\x1b\x97\x0d\xf9J%\x0bq\xb5\x00\xa4\xa3\x19\x8d\ -\xe3\x16\xe9Z\xb0\x86\xf9c\x1b9|j\xd3\xa7\xefm\ -\xee\xee76y\xfb[\xeb\xd8\x03\xdc\xcbxXrx\ -\x95\x7f\x97\xc0}\x8aa\xf2\x85x\xc2\x06C\xa2\xcd\x15a^s&\x89\x8b\xb3\xb7\ -\xc9T\x1eX\x05|\xa4\x9eT\xb5\xed\xe4{\xeb\xbc\xf9\ -\xab\xf5\x9c\x92^\x22\xbd\xbc\x1f:\xfd\xc5\xc6o\xffj\ -\xa3\xbc\x8e\xde\xfa\xc5\xa6\xef\xfcf\xe3g\xa4\xaf\xd7\x7f\ -F~\xb2\x9ek\xda\x0a\xff\x05<\x86\x10\xa0\xcd\xb0|\ -\xb7\xbf\x7f\x13\x00h\xbf\xdd\x88%VkF\xae\xcd\x12\ -*[-\x09 \x08\x04\xea8\xe6*\x8c\xc8\xab\x95>\ -jS\x85\xfa\x15\xb8\x12z\x14\xef\x94\x8fb\x02\xdc\xbb\ -\xebe@\xb8\x10o\xf0\xb9\xa9\xe4yR\xbb)\x0b4\ -MZq\xff\xb25\xcf\xeeZ\xe7\xca\x91\xf5\x5c\xbda\ -]WO\xadzNet\xbbn\xb5N\xcb\xe6\xd9\x84\ -\x1b\xcdB\x06\x01Q\xa6\x96\xb2!r\xda\xb3!\xee\xe1\ -\xb6\xc7\xf3\xfd>@\x98\x01\x18\xdd\xe6X\xa5\xbd-j\ -QC\xca\xda\x8c\xf2[\x18\xd3V\x94\xdf\xa6P\x84\xd2\ -\x01\x80\x9b/\xc1;\xa4\xc2KR\xf9\xbf4B}\x06\ -\xd7\xf2i\xaeep\x17\x00\x10\xe7\xd4E\x22\x9dAH\ -S\x87\xad&\xdc\x7f\xe34\xaep\xda\x12\x9d\xcc8I\ -\x16\xa2\xf5@\x9a!k!^:\xc5\x03\x02D\xe9\x92\ -\xbaeh\x7f\x9e\x1a\x1e\xb9:6-\x1d\xab\xf2\xc5\x11\ -=\x5c<\x03\xa78\xea\xedC\x00}\x221\x9aD\x11\ -C\xc5E\x05A\xbd\x98\xb3z\xf5\x84\xc6!\xa4\xe2\x1e\ -\x13\xa4+\x93Z\xc7\xc7J\xe6\xeeX)\xd9I\x8d\xc8\ -\xd4\xf1\x176r\xf7'\x9b~\xf2'\x9b\x7f\xfeO6\ -\xf7\x04E\xdf\xfd\x1e\xe5\x7fkSw\xbe\xb5\xf1\xd3\xaf\ -m\x82\xece\xe9\xe1\xcf6\x7f\xef'\x1b\xbd\xf9\xd1F\ -n~k\x83\xd7\xbf\xb6\xc6m\x88\xe0\xf2\x03x\x01\x84\ -hD\x939\x022\xc0\xaf\xd3L\x5c\x97\xc5\x97\xb78\ -I\xacl\xb7d\x00\x91\xa2\xae\xa7n\xc3\xaa\xf6\xdd\x01\ -d=\x93f\x0b\xe1\x0e^\xbb:)\x9fl@\x1e\x00\ -\x0b\x0bh\xf1E\xd3\xbf\xbdd\x14\x10\xc9\x8c\xd6y\xf3\ -3\xae\xd1\xaey+\x1d\x5c\xb1\x8a\x91\x15\xbc\xc1\x9a\x95\ -\x8d\xaa\x10\x94\xef#\xd4\xaaa\x85V\x1a]\xc1G\x9d\ -\x96\x805\x0b\xa8\x95A-\x0b3\xce\x18T*\xe3\x9a\ -J\x86\x92\x0a\xb8R\x19\xd3T\xa5\xa9\x00 \x9dT1\ -]\x16\xdf\xa6\xf0#\xc5\x13\xd2\x9c\xa0|B\x81&\xad\ -4G\x92\xc6\xff\xa7AL\xd3{%\x18}\x1fY\x0e\ -\x12\xe3\xebY\x858\xe0\x86\x89\xdb>\xe2\xb3\xeb\xb5\xc7\ -\x83\xca\xc2SPr\xf2\xf9DHr\xa3\xa6$\xb58\ -\xa3\xc6\x8eR\xfe\xcay\xae\xea\xddH\x86,\x1b\x94i\ -\xe3\xa6\x8a\x18/\xc4U\xb5\x92\xee\xa9\x9a&\x82{\xd7\ -\x0eZ\xd5\xdbGx\xd5\xbc\xf9\xa7\xee\x9f\xaa\xba\x1d\x82\ -h\xa1\x94,\x08eh\x0cR9\xb6\xcf\xe7\x0eH\x97\ -\x8eL\xbbm\xd4\xe2\xac\xee\xea#\x1b\xb8\xf1\xc1V\x9e\ -\xffjG_\xfd\xddn|\xfcW;\xfa\xe2/\xb6\xf2\ -\xe4[\x9b\xb9\xf3\xd6\xc6o<\xb7\xc1\xc3\xc76L\xbc\ -\x9d=}g\xd37\xdf\xda\xd0\xe1K\x1b:zi}\ -\x07x\x8f5\x98\xf6\xec\x09\xdf\xa9\xf4\x93\xf0\xd5>\x0d\ -\xe8\xd5h\xa1\x0f\x00tZB\x05\x1e\xa0\xbc\x95\xd7v\ -@\xa0p\xa0\xde<\x02\xc18\x166\x03\xc8\x09i=\ -\xeb\xfc/\x80\xd6b\x0b\xcf\xa5\xb4\xcf/\x0f\xc0\xcf^\ -{\x1b\x00\x80g\x11\x99\xd6zF:\x9cJ]S\x03\ -\x84\x14\x7f\xd3\xa8\xf9\x1bG\xcc\xa7N\xa6|o\x92\x9b\ -\x02\x1e\xc4\xeb\x0cZ|\xc5\x80\xc5],\x02\x95k\x19\ -x\xc8\x12j\xf0\xc8\xf5\x18\xa2\xa6\xbd1\xb6$\x8cM\ -\xb3\x9e\x9a\x01M#\xc7\xcf\x10\x07\xe8\xda\x87\xc8z\x92\ -\xde\xa9Y\xd2\x1d\xf4\xb2\xe9\xe6,RP\xbe\x00\x93\xa6\ -0\xdf\xbdJ\x0a\x0b\xd7\x03\xf4\x92\x0c\xde\xc7\xb8V\xab\ -\x17B8P\x91\xa2\x10\xae\xc5\x0d}\xb9\xa6!SZ\ -\xd7\xdd\x1c|j\xb3\x17\xb7\xd3P~\x1a7!\xc5{\ -92\xa8r\x00P\xca\xc4\xff\x7fR>.\x0d\x8e\xa1\ -\x9c_\xe5\xcbZ\x9e\xd4nU\x89\xdb\x8a\x8d\xc5\xab\x16\ -N\x9b4\xfc\xa0\xd1\x07q\xf4C\x14%\x81\x81U\x06\ -w\x1d\x80h\x0d\x7f\x8b\xb4m\xcf\x8ag\x8e\xaca\xfd\ -\xb6M\x9e\xbd\xb5\xa3\xcf\x7f\xb5g\x7f\xf87{\xfb\x97\ -\xff\xd3\x1e\xff\xf4\x17\xdb}\xfe\x85\xcd\xdd|h\x03;\ -\xd7\xac}e\xcf:V\x0elx\xe7\xa6\x0dn\xdf\xb4\ -\xce\xd5\x13\xeb\x5c\xe3\xf7H\xe5\xcc\x8e\xe5\x0d\xafBR\ -\xc5K\xa6\xb0<-\x19\xf7\xa1h\xad\xb1w!\x1d(\ -\xa3\x03\xe5w\xba\x9f\x93\xf0\x02j8\x99R7L\x5c\ -\x1f\xc7bg\xf0n\x8b<\x1b\xbc\xa0\x0f\xb0+{\x92\ -\xdb\xefE\x11\xb2z\x9e\xc3\xafLG\x03\x0c\xf9Ko\ -S5\xb0\xa6x\x15b\x06\x00V/\x00\xebF\xba<\ -)\xeb\xb6\xc42~\x87\xc4KJ{,N\xe2\x96~\ -\xfb\x09I\x1e\x08\x12\xea\x00A#\x86\x88\x0e\x92[\xd6\ -\xd0\x09\xe3\x8eu+\xc6gh\xa2\x08\xb2\xa7I\xa0t\ -\xb8T:Y\x95\xf3\x14\xe8 \x0d\x02\x9b\xaeu\x15g\ -\xf1\x00\xbe\x17\xaf\xa4{S\xe9:\x82\x07\xe0\x86\xc9W\ -\x03}rk\xb0}\xdcX61M\xb3hJ\x1f\xfc\ -\xa4\x19n\xee]\x17s\xeeFn\xc7\x13\x17\x83\x1c\x08\ -@\x17.\xc9\xa7\x18)\xf7\xffI\xf9W\x11^\x19(\ -\xcd;\x87\x86v]AF\x88\xb8\x97\xad]\xb1\x03\xba\ -.\x83\xd5\x0d1\xec\x9c\xc3M\xcd\x22\xb8\xc3\xae\x19n\ -n\x96kC\xc0PTv\xff\x12\x8cx\xd5\x0a\xc77\ -\xac~\xf9\xd0\xa6n>\xb6\x9b\x9f\x7f\xb4\xf7\x7f\xfa\x9b\ -}\xfb\xb7\x7f\xb6\xd7?\xfdj\x07O^\xd8\xc4\xde\x89\ -\xb5\xcc.[\xf9\xe0\xa4\x95\x0dLZ\xfd\xf8\xbc\xd5\x8d\ -\xcd[\xc5\xd0\xb4U\x0c\xcf\xe2~\xe7,\xafw\xc2\xb2\ -\xda\x87-\xd0:\x08C\xef\xb3\x94\xdan\x94\x8f\xe2\x89\ -\xf9\xff\x9b\x08\x0c\xbc&U\xf3\xf7\xea^\x148`\xa9\ -\xf0\x04\xb7\xa0\xe4\xb2\x03<\x01\x16\x15P\xda\xac\xcd&\ -p\x1c\x91I5\xb7Hk\xc3\xab\xb4N`4c\x84\ -S\xbcK=\x96^\xa3E\x1f8\x06J\x8f/\xebD\ -\xd1\x1dN\x12\xd5\xb7\xb8\x14 \xf1%\x9e\xc4\x95v\ -\x9f\x83\xa0\x0f\xaf\xa0E-\x15\x88(,/\xf2\x9d\xea\ -\x89\x80.p\xf3\xbeN\xf5s \xec\x90\xef\xfbd\xb0\ -x\xdft\x8c8\x95\xac&\x19o\x9e\x02P\xd3Pr\ -:J\xf7\x8c\x0b\x03G<\x80\xf2;\x95\x84\xa5\xa30\ -\xcd\x82\xa9\xe5\xaa6>\x84 a\x11\xcd\xc6iN{\ -\xf46i\x1e\xa9R\xff5<\x04\x17Q\x9e\xdb)\x86\ -\xb9\xc1\x0d\x00\x86s\xe5K4u\xfaI\xf9R\xba\x13\ -M\x86\x88A#\xbcfq\xe1 n7\xd8G~M\ -\xfcS/\xbb\x8cN\xf2\xee\xb6q\x1el\x98P3h\ -I\x8d\x03p\x8e~\xf7\x9a\xc2\xcfi-C\xc4Q\xad\ -\xe5\x8fZ\xb8g\xc2\xca\xc6\x97lp\xe7\xc4\xf6\x9e\xbc\ -\xb4g\x1f\x7f\xb0\xf7?\xffj\x8f\xbf\xfc\xda6\xce\xee\ -Y\xf7\xd2\xba\x15v\x0dY\xa0\xb6\xcd2\xaa\x9a,P\ -\xd3l~\xc4W\xddd>\xbd\xafk\xb5\x8c\x9a\x16K\ -\xadF\xaaZ-\x19\xc2\x97\x88\xcbO\xc4\xdd;\xabw\ -\x1e\x00\x8bD\xe9\x89Ux\x04\xac_\xcaO\xaa&\x0c\ -\xd4\xaa\xdb\xe8\x08\xa4P^`\x0a\x82;C\xb8$\xd7\ -oS!\x8a\xac\x5c\x04\x9a4\x92\xcf%\x126\x12\xf8\ -\x0e\xd5\x22$\xc8\x93\xa8_1\xd7\x88/kC\xe9\xad\ -(\x19\x9eQ\xdc\xec^\x13J\x087%\xfc\xbe\xb8\xdd\ -\xe2\x90\xd8\xe2\x0e\x8b-\xe9\xb4X\x81\x80P\xa0e\xe1\ -\xc4\x1a\xbe[\xeb\x04\xeaQ\x80{\x0ft\x8b;\xc1\xa3\ -\xfa$\x10Q\xcdDb\xf5\xda\xf5\x94J\xb6\x95\xdc6\ -e\x89-c\x84\x8cQB\x05\xfc\x05\xa3\xca\xe8&\x0b\ -\xeb\x85\x98\x93\xd6\xfb\xc5\x01\x00\xae&\xbfbD0\xd2\ -5\xe3\x85\xdbWK\x12\x15O\xe6\x90#F'\xef\xf3\ -\x0aS\x1e\xbb\x039\xf3@\xa0\x99.\xbf\x9bi\xf2\xa6\ -\x1a\xddvr\xdc\xbfS>$\xc3+u\xf6f\xc0\x9c\ -\xf2Q|&\x08\xd4\xfc\x80\x96a}XxF\xc74\ -\xc0\xe1\xa6\xda\xb0\x8e\x16\x94.\x85\xd7\xe3\xfajA\x7f\ -u\x87\xc5U1\x10U\x0c\x88\xd88\xaf\x92\xc4\xeav\ -,\xa8\xc3\xd2\xea\xbb,\xd29l\x8d3\xab6up\ -\xd3\xf6\x1f\xbe\xb0\x9b/\xde\xda\xfe\x83\xa76\xb9sl\ -\xf5c3\x96\xdd\xd0a\xc9\xa55\x96PX\x89TX\ -BQ\x85%\x16WZbI\x95%\x95T[Ri\ --\x16W\x8f4\xe2v\x9b\x11\x14P.\x00\xa0,)\ -\xbf\xaa\x97\xeb\x89\x0f\xf4\xf3\xca\xbd\xd5H\xa1X\xb0Z\ -\xdc\xd7\x8d\x90\xdf_\x08\x83\x8b\xe8w\xea\xd6\x95X}\ -a\xe1<\x03J\x8e+iB\x99\x0d(\xb5\xde\x93\xa2\ -Z\x8b-\xfc\xbd\xd4\xf1\xbb\x06@\xd0\xe4\x01\x02\x10\xc4\ -\x95\xf0\xec%\x00\x00o\x10K8\x88\x85\x13\xc4\xab\x00\ -\xa5N\xbb\x7f!\xda0z\x11\xe70\xfa\xd0V\xf5\x1c\ -$b}?9v\ -\xcf\x88E[{p\xf7M\x96\x5c&%\xcb\xea+\xb0\ -xI%V\x8f\xf5\xe3\x15\x12KQ>\xd6\x1f_\x8a\ -\xf2\x1d\xb8\x00\x9d,\x16\x00\xc4\xf1\xbd\xf1\x0e\x00\x03X\ -\xbb,\x9bA\xc2\xed&7\x92\x05A\xbe\x12Uqt\ -^r\xa6\x92\xb4\x04<\x83\x0aNd\xf5\x22u\xbf\x07\ -\xc0\x95b\x0f\x00\x97\x0b\xaa\xecr^9R\x8a\xe2\x8b\ -\x9d\x5c\x91\xf0sl~\x19\x00\xa8\xc4;\xd4\xf2?\x8d\ -\x0e\xe4q\xfc\x7f,\x1c!\xb6\x12\xf2'\xf05`\xf9\ -\x90m\x91;\x15\x9c\x84\xd1Kt\x1a\xe5\xcf=r\x92\ -;\x03\x00 \xd4\xda\xe5\x9c\x81\xebOi\x1cu\xe3\x19\ -[\xd1lWx\xd6+x=I,^/\xae\x82g\ -\x16\xc1%\xa4%\xd4\x00\x12\x95\xcd\x01\xe2\x98\xd8rb\ -]\x8d\x0a'U\xa5JzC>\x1b\x1eU\xaav\xd7\ -\xa2\x84\x00\xb7\x99p\xf2\x11i\xd8\x13+\x98~\xea$\ -\x7fJ\xa7\x8b\ - (\x00\x04\x85x\x81b@PnW\x8a\xf0\x14\x84\ -\x89+\x80\xf2\x0a\xdf\x15+`\x01\xb4\x94\xd6\x05G\xec\ -4\x03\x18\x998\xb3\xe8\x0c\xfa\x98G\x1fH\xee\xac\x0a\ -BH\xa3!\xd5\x01\xd29\xb5\x86M\xaeW\xd6\xd0\x86\ -\xc2\x1b\xf8\xbej\xbbL\x08\xbc\x5c\x00\x00y\xd55b\ -\xb9F,\xdeF\xcf\x1d\xab\xe7\xe6~cbE@\x18\ -\x5cU\xbdj\x0aS)\x8d\xb6FG\xc6@\x9b\xbah\ -M=\xb4\x02m\x9d\x9aWO\xe1W\xc8k+\xd6\x89\ -\x1a\xb3\xcf\x1c8\xd4A#t\xbe\xc6\xeez\xf4ha\ -\xa7[\x8a\xd6\x19\x02\xc7\xae\xfc\xbb|\xf2\xaeU\x81\xd6\ -\xca\x99\xdbV:qby\x83x\x1aBCF\x8b\xa6\ -\x9e\xe5f\xe5n\x89\xa3\xff\x9b\xc8\x0d+\xb6\xca\xd5\xe2\ --\xb0\x8a\x84\x0a@\x82\x8bt\x0c\x9a\x81\x8e\xc7\xd5\xc6\ -\x13O\xe3p\xb3\xb1XZ\x5cA\x19q\xb5\x9c\xbfa\ -\xf5R|e\x1dd\xaf\x1e\xd2Wo)\xd5\x80\x04b\ -\x98XI8q\xa1\xa6\xcd.3\x10\x97$\xb8\xdf\xcf\ -\x90\xcbR$\xd6\xa1vu*\xa7rM\xa9\x00\xb0\xda\ -\xd3\xa5\x91V%\xb5.\xe2\x05T\xa38\x82\xd7\xd2`\ -\xff\x8e\xd5\x0b\x00r\xe1|OlI\xb3]\xc6\xb5_\ -f\xd0/\xa1\x00\x07\x80\xdcB@\x90\x87\xe4\x02\x82(\ -\xde\x80\xd7\xbc|\xbb\x9c\x8fg\x90\xa2t\xa2\x09\xca\x11\ -\x00\xe2\xc4=\x00Z\xaa\xa6\xd6\x95F+}V\xa3\xa7\ -i<\xb3j\xfeP|h\xfc\x10`\x90\xae\xf7h\xce\ -F\xc6$#\xc2\x03a\x0cWJt2\x0a\xd6\x8f\x87\ -\xb9\x5c \x10\x10\x86\x0a\x01\x99;1\x05\xa0)D!\ -\x97\x8b\x9a\x00@\xb1\xe2\xa0R!\xf2\x5c\x15\x0d\x12\xcb\ -\xb5\xe0\xa0\xa5Ym\x94\xcc#\xde\x14\xcc=\xb6\xe2\xc5\ -\xe7V\xba\xa2\x05\x15\x00\xb0\x04\x00\xe6_\x10\x8b\x1e\xe1\ --\xce\x08\x07\xd7a\xa3\x87X\xfd\x9ee#\x11\xde\xe7\ -\xf1\xbb\x12\xf8C\xf5\xec\x13k]{m}\xbb\x9f\xdb\ -\xe0\xfe{\xeb\xdd~n-\xeac?\xbek!\x11\x92\ -&n\xde\x91)\x89\xb7\xdd\xc9\x131j\x84\xfbr@\ -\xa8\x04\x04b\xc5b\xc7\x90\xa5\xd8\x22\x90\x5c\x00\xa2\xf3\ -x\xb0\x5c\x01\xa0\x02\x00T\xe1R\x89\xabeX{e\ -\x03Jo\xb2\x94\x9aFK\xadmB\x9a-Y\xf1\x10\ -\x8f!\xbe\x11\x8b\xd5_Fi\x97\xce\xe53\xbd\xa2\xcc\ -81\xfe\x86Q\x88\xea\x1c\x83\x8f\xb7\xea\xdf\x22\x85\xda\ -v\xf9tr\xfb\x0a^@\xc5\xa7\xe7^\x00\x0e\x10\x8f\ -\xa7\x8a/\xfb\x07\x08\x14Vbq\xe7Wp\xebR\xea\ -%\x94\xe0\xbc\x00\xae\xff\x12\x1e\xc0\x03A\xd4\x13@p\ -\x09O\xe0\xfe^P\x03h\x00\x00\xdf\xa5\xb2\xf0\xc4z\ -\x11e\x98\xbb&\x9d\xb4\xc1cT\x9eY\xdd[4o\ -\x02\xf1&uN\x85\xed'\x13\xd7\x13\xe0E\xf1z\xae\ -\xf2\x06\xc0Ws\xae|\x89\x94.\xd1\xef\xea\x183)\ -\x1f\xef\xe08\x8a'1n\x22\xa2B\x8d\x88\xd5u\x1a\ -\x96\xc8C\x0a\xf9\xd9\x83*h\xb8\xe1\xaaF\xf2\xb5\x95\ -X\xe7\xe1,=\xb3\x22\xa4p\xe1\x19\xbf{\xc2\xdf\x1e\ -pS\xe2\x04j\x0c\x01w\x18<\xb1\x5c8D\x11D\ -\xa5\x1c\x82R;\xff\xd4Z\xd6\xde\xda\xf0\xe1G[\xba\ -\xfb\xabm>\xf9\xcd\xd6\x1f\xfc`3\xd7\xdfX\xc7\xea\ --+\x1a\x22\x05\xc5\x0bh\x7f\x9b\xd6 R\xe4\xf6\xb4\ -\xdb\xc6\xc9\xf9\xfe7\xac\xcd\xb1l\xcd\x96\xc9\x03\x08\x00\ -J\x97\x0a\x01@\xbe\x00\x00\xa3F\xe2\x0a\xea<\x8f\x80\ -\x15%h*\xb7\xaa\x85\xffk\xe1\xff\x9b-\xa5\x0e\xa9\ -\xe7}\x1d\x19E\x0d\x8c\x1f\xbe\x11G\x18\xb9\x82\xfb\xbe\ -LH\xb9Lh\xb9\xa4Wm\xbc\xc0\xfd&\xd5+\xfd\ -$\xdd\xeb\xc2 4i\x02\x10\xd2PDJ\xa7j\x0f\ -U\xa4:\x0f\xa9\x22\xd5\x02\xa0\x09\xdc\x97<\xa8\xf3L\ -\x02@)V\x08\xb9t\xae\x16\xb2y\xc5\x9dU\x04\x17\ -\x90+\xce\x87\x0b\xe4\x15a\xfd\x00!\x17 \xe4\xe6;\ -`|\x06x?\x03\xcc\x97\x8aZ\xed2\xcf'\xf6\x9f\ -\xc0w\xa7@\xd6\x14\xdb\x03\xdc\x83\x0aY3yU\xa9\ -|:d:\x19\xa6\x9fX\xcbu\xaby\x16b~l\ -\x99\x94\xcfX(\x9cp=\x11Le\x1a\xb1(<\x96\ -\x90$n\x22\xef\xe4\xdd\x9f\x84{%\xe3\x88I\x22\xcf\ -T\xd7ImgV\x17J\xf5\xa2S'\x0d5A\xc8\ -V\xf3\x85\xb1\x13\xdc\xcf\x0d\x08\xc7-\xcb\x9b\xc5#\x10\ -{rU{>\x0dA\x9c\x84\x14j\xf9\x16\x85\xe7\x8d\ -y\xbb\x7f\xca\xa6\xb1\xfa\xf9\x87\xd6\xb0\xfc\xdc\x9a\xd7P\ -\xf4\xd6\x07\x9b\xb8\xf9\xa3m?\xff\x8b\xdd\xf8\xfc\xefv\ -\xf2\xf6\xcf\xb6\xf9\xf0\x1b\x1b\xde}`\x15c\xdb\xee\xa0\ -)\xedm\x93\xa2SP\xb8\x07\x82\x7f\x88@\x90\x04Q\ -U\xc5l\x82\xd2\xa22,\x8e\x1b\x8fc\xb0\xe2\x00A\ -\x1c(\x8e\xc7\x95%`=\x09\x0c|\x02\x16\xe8\xa6s\ -+[\xcfA\xe0)?\xb5\xb1\xdd\xd2\x1a\xbbyOn\ -\xef\x06\xae\xef|\xf3\x85^\xfb=\xe1\xbd\xb6])\x87\ -O\xe2s)-\xe4\xfe\xed\xe3n\x82*\x15\x12+\x00\ -\xa4\x90\xf6\xa6\xb4\x03\x04M\xcb\x8a\x18\xd6Nb}\xc3\ -X_/\xd6\xaf\xfc]\x83\xab\x81\xd6\x80\x0b\x04M\xc4\ -c\x85\x03H!\xd6x\x09w\xec\xf1\x82R\x84W\xc2\ -\xd7g\x80\xf7\xb3B\x94_\xdcM\x18\xd0\x9e\x80!\xc2\ -\x0b)\xb2\xc6D'\xaf\xa9\xeb8\x80\xcc\xd0\xb9\x01d\ -P\xa9dOIdN\x09\xca\x9c\x5c\xc6D\xca\x09\xd8\ -b\xc9pb\x8b\xa4\xf8\x1a\xc6Ei&\xe4R\x1e^\ -!S\xb3\x8e\xf2V<\xa3\x17N5+9`1)\ -0\xcd\xd4\xc6y\xdc\xbf\xb6Uii\xd6\xab\x84QK\ -\x15mZ\x0c\x0e\x10\xd3\x87\xf0\x08#\xb8\xecQ\x01\x82\ -Td\x1ck\x9f\xb8I\xa6 \xb2\xa8](\xda\x83~\ -\xd7\xea\x96\x1fY\xd3\xda3k\xdf|e\x9d\xdb\xef\xac\ -m\xf3\x9d\xb5\x22C\xd7\xbe\xb1\xd5G\xbf\xd8\xe1\x9b?\ -\xdb\xc1\xab_m\xe3\xe1W6\xbc'\x00l\xb9\x1d\xc6\ -)Xx2qO]\xb0u\xa6\xcf?\x80 O\xa0\ -\x85\x9a\x09\x14\x09\x10\xaa\x00\x82f\xc6\xdc\x94)\xae\xd2\ -\xe5\xcdp\x18$\x01R\xa3,\xc1\x09\xac^S\xbaI\ -\xc4\xc4\xe4Z)\xbe\x93\x01\xecE\x06\x18\xccA\xbc\x0d\ -\xbc\xa2\x16\xcb\x85_\xc4\x13^\x12H\xf9$\xaa\xc9\xd7\ -\xf6+\x97\x8a\xc2\x9ac\x95F\x91B%4\x0dYR\ -\xdb\xac%u\xaeZ2ioJ\xd76`\xd8\xb2\xe4\ -\xb6uR\xa9E\xacu\x12\xe0\x0c\xa1\x08\xfe\xd7\x85\x01\ -\xee\x8b\x10\x13/!\xabQ\xa6\xa1\x90s\x05p^\x01\ -\x18\x97\x1dI\x14(p\xc3\xc5\x0a\x17\x9d\xfcM\x9b?\ -\xe0\x16\x15\xe3\xe7\x82w!\x15T\xe8K\x82\x1c'C\ -zS\xaa\xda\xe15\xad\x90Y\x00\x8f\xc5\xc7\x97\xa1\xe0\ -2Y?\x02\xd8\x048\xcd?\xb8I&\x1d\x8d\x87\xa1\ -$pO*?\xffG\xc99\x9c\xcb\x95\x9dk\xbf\xc3\ -\xa4\xc5\xe8\x8c>\xd7\xf0\xb8C\xdb\x91\xc9\xe9\x95\xd7\x93\ -\xcai]@\xd5AN\xb4N\xa0\xdd\xa4}\x9b\xc4\xa3\ -\x1d\xf8\xc1!\xa9\xe2uB\x00\x96\xaf\xc2\xc7\x99\xbb\xae\ -QT+\x8a\xef\xd8~k\xdd{\x9f;i\xdexm\ -\xb5+\xcf\xacc\xe7\xb5M\xde\xfc\xc2\xd6\x1e~D\xbe\ -\xb6\x85\xb37\xaeJ\xa8l\x84\xeb\x80\xee\x14\x08U\x12\ -\x84*\x09\x8bt@8\x07\x81\x9a-\xb8\xce\x1aHJ\ -\xfd4\xe0 \xe6q\xf3\xf2Z\x0e\xc1\xb8nG\xc2P\ -zBE\x977PX\xb66`\xe8\xcc\xc0\xd4\xfa^\ -Kk\xe8%\xcc\xf4\x9b\xbfu\xc8|\xad:yc\x04\ -\xc0kzV\x16\x06\xbfP\x88Q\xf3e\xf1\x0d\x00!\ -V\xef\x91\xb8\x1a\xbbT\x02\x93&\xae^\x91\x9b%\xc5\ -J &'unXJ\xcf\xae\xa5@\x0cS!\xbb\ -)\xedW!\x86\x0b\x16\xc7}\xc52\xd0.\x8d\xe3~\ -\xe2\x091n6\x91\x0c\xc7\x11Zq\x06\xf8\x8c\x00\x17\ -\xa7\xb0\x81b\xe3+\x95J\x0a|J-g\xf0:\x84\ -\x96z\xd2\xce\xbay~7\x8d\xa5\x8e\xf1\x8c<'\xbc\ -@\xde-\x11v\x9f\x88\x9bO\xe0\xbe\xe2\xc5uJ\xb0\ -r)\x1dB+\x90\xb9\xcd&.%U\xb6\xd4\x8b!\ -\xc0%\x04\x22\x19N5\x06t^r\x9eT\xaf\xfd\x06\ -s\x90\xddE\x8b\xc9h\xdf\xf0\xd2\x1dP\xad\x22\x83\x80\ -\x13\x01A\x877\xae!\xaa\x8f\xf3j\xe4\xb4\xd9\xc05\ -\x22\x22\xad\xd3\xd6\xa3<-\xd3b\xf9e\x8b\x8f\xac\x11\ -\xe5w\x1d|\xb0\x9e\xc3/\x9dt\xee\xbd\xb7\xda\xd5g\ -\xaeKU\xd5\xc2]k]\x7f`}{Ol`\xff\ -\xb1\xf5l\xdf\xb5\x86\x85#\xcb\xef\xc7\xe30\xb0\xc9(\ -\xdf\xb3^\x06\xcdm\xe4\xd0aO\x9aiS\xa3\x05<\ -\x94+\x97>\x97zrc\xe5\xe8n\x83\xa6\x08\x22\x0f\ -\x89\xd25\xd7\xee\x1d\x0e5d\xe9\x0dC\x96A\x8c\xcc\ -\xc0]f`\xf1\xbe\x96!\x000j\xfe6\xed\xa2\x1d\ -\x83x\x0a\x5c\xe7 P\xf8\x81p\xba0$E\x89\xd9\ -c\xa5r\xa7b\xf1\x97\x19\xe4\xcb\x15XiM\xaf]\ -i\x1c\xb782\x81\x04\xd2\xe5$\xc6(\xa5\x8b\xf4\x10\ -@h\x95.\x81A\x8d\xc7\xc2D\xe0\x94!hJX\ -\xe7\x15\xb9\xc3#Zf\x11M\xe5\xaai\xd4<\x03\xcf\ -38Pk\x09x\xce\xad\xae\xa6\x91fju/M\ -k\xf7\xadW!w\xcb\x80b\x16\xe5\x01<\x94\xa9\xd0\ -\x96\x08\xb1L\x90\xe2I\xf1$q%\x9a\xd3\xd0\xf2\xb5\ -\x94\xcf}kb\xca\xad,\xe2\xd5\x90\xc4J\x14/\xe1\ -;\x1c\x00jd\xf5\xbf\x03\x00\xde+\xe6\xe2\xa0FW\ -K\x06\xb2\xd5\x06EG\xa0y \xd0\xe2\x8e\xa6y\x09\ -\x09n\x96O\xa5Q\xde\xd2\xae\x00\x90?}\xea:c\ -V\xae>\xb5\xd6\xbdw\xd6w\xedk\xe4\x1b\xeb>\xfa\ -\xd2\xdav\xdeZ\xe5\xe2C\xb8\xc1\x0d\xcb\xc3c\x14\x8d\ -\x1dZ\xd9\x94\xe4\xc0J&v-\x7f\x08v\xdb\xc1\xc0\ -\xd4\xa1\x04\xe5\xdf\xb8NM\xf6(\xdf\x17\xe1\x93\xcb\xd7\ -d\x8c\xea\xe4\xb5\x1d*\xadq\x09\xc5-c\xc1H\x93\ -v\xed\xe8\xf7x\x85\x06\x85\x8aQ>\xa7\xc1\x1eC\xe1\ -(\xb9y\xcc\xfc(\xda\x93Q\x0b\xb4\x8e}\x12\x0f\x00\ -\xfa\xbc\xa6s\xe1?\x88^S\x00\x8eV\xfd\xb4\x16\xa0\ -\xe5\xe0\x0b\x02wY@(m\xb4K\x15\xedv\x09\x90\ -]\x86\xac\xc6B\x96\xe3\x95\x12\xb6i\x9f\x00a\x01\x00\ -\xb8\x89\x22\x00+\xf6\xaem\xddZ\x1f\xf0\xb5\xc3\xe21\ -\x1e\xd7\xe8\x01cr\x87o\xa8Z\xa8\x19 \xf0y\xd7\ -=\xa4e\xd1\x85]\xad\xc0\xaa\x06\xaa\x9c\xd2\xd6mw|\x1dc\xaa2\ -\xb5\xec\xb1\x9b\xa6\xcac\xedo\xd0\xb17\xa9\xad\xf2\x1c\ -p\xa5F\x8c\xa5^\xde\x050h\xf9\x1a\xaf\x94\xc8\xf8\ -%\xd5b\xedx0\xafm\xec$\x0a\xf6$\xa9\x86\xd7\ -\xaa\x09\x84\xdf\x0b\x00n\x9f\xa1@\xa0-\xe8\x02\xeb\x8c\ -\xc5\x08\xbd)\xa08\x95\x0b\xa5\x13\xff}(Zk\xdb\ -:\x8bO\x00p=l\x9cxu\xfcjC\xaen\x19\ -\xaeO\xde\xe4u\xd7\xf2\x5c\xed\xe6\xab\xd7\x1f[\x8dZ\ -\xa5\xae\xa9\xa1!i\xe3\xf4M\xac\x1f\xae\x00\x89\xd4\x16\ -f\x1d-\xab\x93D\xb5\x9c\xea\xce\xf5\xc3b\xd5\xdc \ -Q\x1b\x22\x15\xb7\x94F\xc9\xd5\x11\x17\x93\xb8Im\x9b\ -J\xa9\xd76f,_\xab`(\xdd\xf5\xe8\xef\x06\xa0\ -*\x88\x94\xb7\x12hU~u\x1e\xaa\xfc\x00\xcc-<\ -ui;\xb6Z\xc6\xa8\xaf\x80\xf6\xec\xa3x\xc2\x81\x18\ -\xb4\xc2C\x1a\x03\x99F\xe8I\xd5\x86M\x85 \x07\x00\ -@W\xa7\xc9\x141e\x119M\xe9\x9e\xb3w\xe43\ -\x09@\xb8\x04\x104\x81\x14+\xd0*\xfc(Um\x84\ -\xa7\xa0L\xb5\xaf\x17\x7frar@-Xd0\x90\ -h\x80\xa0\xbaBw\xe8\x83\x03\xacd\x01#\xe0^\x01\ -\x85\xba\x82\xa9\xd1\xa5\xebA8\xa1z\xc8S\x0b\x8e\x02\ -\x02Rj\xef\xa4\x14<\xb4+\xdcY\xe0\x1axE2\ -\x02o\x99Y\x9eK\xa1R\xe3\xc9xi;\x1c^E\ -\xee=Y[\xcb\xc4+d\xed\x02\x02J\x17\xd7H\xc0\ -\xb0\xb4\xd9V\x9bl\x13\xe0U1\x09\xa06\x91\x9bO\ -\x22\x03p+\x83\xb8{\xd7\xa3\x9fx\xef2\x01!\xf8\ -w\xa2\x22\x08\xf5\xb0\x09\xa9\xeb\x84Z\xbdN\x9dX\xf1\ -\xfcM\x94N\x0a\xb8t\xe6\xde\xebw*\x13\x8fh\x03\ -f\x9fz\x05/\xba>B\x81\x96i\x94\xc0\xcd\x12s\ -]~\xff\x89\xcc\x117\xc5\xeeI}\xe4\xa2d\xf9)\ -\x8a\xf7\xb8}\xb7\xfbV;f\xa4\xfc\x9e\x03\xae\x7f\xc4\ -\xf5\x8f\x11^\xfb\x0e\xb8'B\x97\xc2\x95H+^\xc6\ -\xef*\x9b\xb4\x07p\x06\x0b\x9bp\xee>\x0d\xa5\xab\xbe\ -/\xadA \xd0\x92.a@\xa7k\x09\x8c\x90PM\ -\xfcx|\x80{\x80@\xc6kk9._\xcc\xfa2\ -J\xbf\x5c\xa8\x09\x9djR\xb5*\x84TN\xa0\x00\x08\ -n\xf71\x16\x98\x8c'H\x93\xd5\xab\xec\xcdU>\xe9\ -\xf9O\xcc5\xb1\x1cR\xc7/\xc6\xad[u\x92\x9e\xb7\ -R\x09\x98'\xf2Z\x8b\x84V\xc6H\xbd\x04\xd4\xf1\x14\ -\x10h\x8f_p\xe4:\x008q\xe5f\xae\xd2\x88\xbf\ -\x07\xfa\xd0M\xf7\x12!\x9b\xefP\xf9:\xf7\x9f\xae\xb9\ -\x02\xbe\xcb\xb5\xd7\x07P:\xb2\xc6kq\xcf\xd8\xe9X\ -^\x08\xaa\xc6\xd2\xedo\xc4\xe2U]$\xc5\xab\xd63\ -\xa1\x01\x00$\xa1t\x89f\xb9R@c*\xa22i\ -oc\x84\x88\xdf\xb9\x80\xc0\x0b\xc9\xec\x05\xb5\xfd\xebn\ -\x1f@tL{\xed\x0f\x08\x07\x90\xba\xe9CRB\xed\ -\xb8\x95\x05\x5c\xb5\x90v\xe1\xf6,\xe3\x01\x16\x88\xf7s\ -x\x00\xe2b\x13\x83Ej\x97\x8a\x8bJ\xd6\x1e\xfbJ\ -\xdc\x93D\xae\xaa\x06\xb4j\xe9S\x07I7\xad\xa0|\ -\x15\x9el\x9a\xce\x13\xd6Y~\x17\x9b\x1c\x5c/?\xc9\ -\x80\x80p\xe8V1\xe5\xb1\x04ZGX;\x18\xe86\ -\x0d4\x83\x84\x82\xc5\x0f\xe4\xf2\xc5\x11\xd2[t\xc6\xde\ -\xb4\x0b\x19\xe9\x88\x0e\x94\xd4!\x15\xc9\xe4\xdb\x17\x8b<\ -n\xaf>\xae^\x0a\xd6\xf4\xac@\xe0\x00P\xa0\x09\x9b\ -r@@.\xaf\x09\x1e\xbc\x84>\xab\xb3\x02\xb5\x93Y\ -1\xdc\xb5\xd9U%3\x19R\xae\xd2\xe5\xe1=\x00\xa0\ -\x95R\x15\xcdr=\x14\xa6\xeakw\xba\x98\x14\xa7\x16\ -=\x8co\x16F\xe5\xba\x84\xa9\xa9\x03\x00r-\xea\x08\ -\xb5\xae\xd8\x14\x8f\x1b\x18\xc4\xe3\x91\x96\x07\xc8\xc6\xd4\xed\ -D-\xf1\xd4\x11\xcd\xed\xf4\xe5\x99ur\x9bz9\xb9\ -\x1e\xcb:/\x01b\x1f\xd0nb\x15\xde\x22:\x9b9\ -U[\xdb\xb4\xddMee\x84\x22IL:n=\x8d\ -\xc1K\xc3\xda\xd3\x88Si\xb8\xd3t\xb9\xaa\x0e\xcd\x09\ -\x9c\xd7\x09v\xe0\xae\xdcz>(\xeb\x9a\x83,\xe2\xce\ -{\x97P\xc0\x8a\x85\x86\xd7-\xa2S*G\xb1\xf6a\ -b\xfd\xe0:\x96\xb9\xc2C\x81\xec\xaeyn\x0c\xe1\x7f\ -\xdd\xc1\xd2\xf2\x04\xbaa\xcd\xb3C\xa0\xb4S6\xe3|\ -cdj\xfd\x12H\xc5\x0b5\x01\xc2\x16\xeeCU/\ -\x1d*@Q\x97k\x06\xa1\xef\xc4\xd5$\x04\x07\xaeC\ -\x94T*}\x0e\x02m\xf1R\x99\xf6\x80\x8aKw\xf9\ -\xac\x16p\x08\x19\x8a\xb50o\x0d\xb2:h9kA\ -\xd9\x19\xe2\x1fz\x1e\x95\xbac}:\xac\xca;d\x92\ -\xcc\xa2\x11W\x89;M\x00\x08^\x93\x09\xad\xc9\x03\x02\ -\xf2\xec\xcb0\xeeK0\xef\xcf\x8a*\x91*B\x01\x00\ -\x10\x09S\xb9\x18|FUUR\x9evZ\xe9\xc0\x08\ -\xd7\xa9c\xe2\xba\xe5\x8c\xa0T5\x83\xd2\x22X\xe7\xc5\ -\x98\xea\x15\xa0*,\x88\x1f\xa0\x03\xd7\x81\x14e\xebH\ -\xdcO\x95\xc6\xe7\x00p\x9dJ\xf5w\x85b\xc2\x85k\ -\x83+\xaf\xd1\x83\x11\xe2\x91\xa3\x84\x9a\x5c\xc0\x93?L\ -X\x068\xb9\x8cI\x0e^2\xd4{\xc4g\x19\x17\x9d\ -\xc9\xac\xcd\xac\xdaf\xe6\xb6\x9a\xa9\xb2\x18\x81\xf3\xc5\xa8\ -\x98Q\xe5\xc6:}\xcb\xd7K\xac\x01Ejq\xee\xd5\ -\xfak\x80\xd4cGk\xf9S\xbc\xe2R\xdb\x89\xa9\x9d\ -\x93X\x1bD\xabw\x0e\x0b\x5cD\x09 \x10\x09\x92\xd6\ -\xb9J\x1f\x94\xee\x83\xe1\xeb$o\xf5\xf6\xc9\xd4i\xe2\ -\x02\xc0y#*\xb54Q\xeb\xd7\x1c\x5cx\x84\x1b\x0c\ -u\xf1\x80(:\xd0\xb9\xc7\xff\xeeq\x0f\xda\xe2\xa4}\ -~\xc7\xc4?\x9d%\x8c\xd2\x07\xb41B\xa2\xf7\x02\x02\ -\x22\x00\x0cy\xc7\xb1\xba#Y5p\x03\xda%#\xe0\ -lp\xbf\xf2\x22\xaa`&c\xc0\xf5\xea\xf4P\xef\x18\ -\x1a\xf1\x05\x06\x9fP\xe7\xea\x17\x90\x8b\xa5\xeb\x00^O\ -V\xa9V3\xda\x1b!\x17\xafn#\xb1\x95m\xa4\x83\ -\x00\xa1\xa2\xd1.W6\xdb\x95*ro\x1d\xe6H\x98\ -\xc9\x90\x05Cv\xa3S\xa7\x96?w\xdf\x0a\xe7\xd5Q\ -\xfc\x1e\x1eQ=\x97oXt\xf4\xd8\xc5xo?$\ -a\xe2\x9cS\xe9\x9cB\x15\xc3\xaa;\xbbS<\xca\x93\ -\xa8S\xa9vG\x07\xd5\xe6]\x95\xd2\xfc]\xa9\xb7\x0e\ -\xb5R\xbb|\xb5\x9f\xd1\x18\xaa\x8d\x9f\xba\xa8\x16\x8d_\ -\xb7\x12<\x8ez\x1b\x95N\xdf\xe3\xfd]+\x1c\xbb\x0d\ -\x18N\xf9\xdc\x0d<1c\xd3\xab\xede*\xeaQ\x99\ -\x9f\x8e\xe6el\x09\xa31*kV\xea\xe1\xaarU\ -\xd2\xcc\x8d\xb9\xa3c\xe4\x09\xda\x15\x83\xc9\xc3\x9b&\x18\ -\x10\xdch\x13\xb1\xb4\x99<\xbbu\x98\x81$\xaf\xee\x9a\ -\xe0\xb3\xd3<\x0cV>\x00\x10\x06\x96x\xaf\x86H\x9e\ -\xf5\xfbQ\xbc\x18\xff\x85\xf2\xd5\x09;\x97\x98\xa8\xf6\xf3\ -E\xe37I\x0dO\xadp\x14\x8b\x19a\xa0\x86\xb5\x15\ -\x8a\x9b\xd5\xee\x15D\xdb\xad\xb5\xe350\xa8\xbdo\xc8\ -\xc0M\x06\x0c\x00\xe0\x05\xdcY=\x88;\xbd\x03\x10\x84\ -!L9\x13g\x10\xa8\xdb\xe6\xba|\xf2\xbf:lZ\ -s\x1b^\xd9\x9a\x0aXI\xc1D\x16\xa5p\x80\xae\xfe\ -\xbb\xea\xb5\xab\x86Jj\xb1\xa2\xee\x99\xae\x83\xa6\xf6\x22\ -\x0c\x12R\x00\x87\xfa\xefk\xe1'\x1e\xb2\x1aG\x86\x10\ -[\xd3mWj\x01\x83\xea\x18\xe0\x13I\xe2\x18\xb8v\ -\x1d\x0a\xa1\x89\xb1<,\xbfp\xfe\x91\x15-<6\x1d\ -B\xe1N\x10\xd1\x112\x93\xb7\x09\x07\xb7\x00\x82<\x02\ -\xd6\x89r%j?\x17Q\x13j5\xd9\xd69\xc8\x88\ -2\x00q\x80lm\xd9\xd3\x1e\x09\x09@Pc\xe8\x08\ -zR\x8f\xa6<~\xa7\x8d$\xc5R\xfa\xccm+\x03\ -l:W@M\xa1+\xe6\x9fX\xf9\xecc+\x99z\ -\x08\x08\xee\x02\x823@\xc0w3vY\xbd\x8c\xab\x04\ -@\x04$\x8ce\x8cw\x22\xb7\x10v\xe8P\xa6\x83\xa3\ -Ta\xf2\xe9\x94*\x88\x8a\xe6\xa3\xbd\x93\xb8\xb5l\xdc\ -\xc3\xcf\xbd\xfc\xbe\x1f\x0b\x1b\xc2\xd2\xc7`\xe5\xd3\xb8\xb9\ -\x05\x08\xcf2\xb2j9\xea\xf0\xd5\xbf\x86\xfbQ\xbf@\ -\xaf/\xf0?\x9aC\x1fZ\xd1\xa4\xd7\xc2\xb4\x04\xc4\xaa\ -\x1d[\xf1\x14\x037\xa5\x03\x1en;+\x0aO\xdd\xb2\ -l\x1e.\x8bA\xcb\x1c9\xc5\x1d\xf2\xcaCd\xe2\x09\ -2\x15\x0apm\x17'ui)Z\xd3\xd1yj\xec\ -\xc8\xa0\xe71\x08\xb93\x0f]\xf1\x84\xbc\xc5\xc5\x86M\ -\x9f\xb6\x83\xf3\x5c\xae\xec\x8d\xc1\x97B\x8af\xefZ\x85\ -\xda\xddk\xb3\xc9\xe6\x0b\xe4\xb9U\xaf>\xb2b\xd2W\ -u\x0cQ\x86\x91\xd2\x02I&\xafO\x80G\xc4\x93-\ -\xc4\xc3%\x12E\x1c\x95\xc6*\xad\xed\xdfF\x89\xc7\xa6\ -C'\x0aP\xb8N\x11)\x9c{\xcc{dF\x1d\xd8\ -\x1f\xf2\x5c\xaa\xa9\xb8OHP\xab\xf7\xdb\x96\x0fX/\ -\xc4;\xd3@\xbb\x98yn\xed\x88\x02\xcc\xd9*\x97\x07\ -\x00\xda\xb7\xa9\x06\x95\xaa\xa0vg \xc0/\x0a&\xd4\ -\xea\x15K\x9f{`\xe5\x8b\x8f\xadR\xa7\x80.\xbf@\ -^Z\xc5\xd2K+_xae\xb3O\x19S\xeec\ -\xec\x1e\x06w\x8a\xe1\xe1!\xb1\xfa`7a\xa5\x1bn\ -\x81\xf8{T\xe7\x09\x004\x90\x22RZ\xfdS~\x1f\ -\xc2\x15\x09\x0c\xea\xb2\xa9-[\x9a\xc1R\x93\xc2$\xe5\ -\xeb\xaef\xae\x83\x5c\xb9\x9d\xf4\xa2\x03 t; \xf8\ -\xf1\x06\xa1\xbe\x19\x14\xbf\x84%\xafa\xd1\x9b o\x8b\ -\x14\x90\xf4\x06r\xa3nY9XU.,W\x16\xa6\ -\x83\x0c\x8ag\x00\x00\xe8U?\xfcb\x1d\xab\xa6n\xe3\ -3X\xc9\xcc\x0d\x0bOs\xc3:u\x03\xf7\xa9\xbdl\ -\xda\x0b\x1f\x1c\xc2\x03h\x7f\x9c<\x80\x00\xa0\x8c\x00\xe5\ -f\xb92\xa9\x9b\x96;\x8b\xcbe@\x0a\x96\x9eY\xc1\ -\xe23\xd79C\xcd%\xb4\x87/\x88K\xd5.\x1e\xb9\ -V\xb5\x7f-\xd0a\x17\x0b\x0fI]\x9fY\xc3\xcek\ -k>xk\xadGo\xad\xed\xf0\x8d5\xed\xbc\xb0\xaa\ -\x15\x14\x897P\xba\x9bNV\xa4\ -m\xce\x08a\x19\xae%\xaa\xe2O\xbfv\xbb\x8a=.\ -\x02\x00\xe5\x90J\xd54\xd7\xdc\x86\xb4\xb8\x19\xa9DU\ -\xd6\xd6v\x92\x86\xf4C\xf6&@\xda\x02\x8a_\x07y\ -;V8~\xe0f\x00\xdd!\xd1\xb8\xac\x5cP\xac\xa3\ -R\xddAH\x13:\x89\x5c\xfb\xe1\xce\xf7\xc4\x8d\xab'\ -\xfe1\xec\xf9\xc8r&\x0f-DV\x91\xcdk\xd68\ -n\x9e\xbfg9\xb7\x88G\xd0\x86L\xed\x93\xd3\x8e\x22\ -Gn4kIlU\xc5\x0c^#w\x1e\x0b[\xc4\ -\xe2\x16\x1fY.\xb18\x82\xeb\x0dc1!\x06P\xaf\ -Q,G'~\x94-\xe9\x00\xc5gV\xbf\xf3\xd2\x9a\ -\x0e^Y\xf3\xe1\x0bk9xf\xad\xfbO\xadq\xfb\ -\xa1U\xad\xdeu\xcd\xaa\xc2X\xb6\xe6ER\xb5\xe1S\ -\x9ba\xce\xa7lu4\xad\xb8F\x18\xe5\xe8\x940\x1d\ -GS\xbe\xf4\x1cy\xe9\x9a@\xe8$\xb2\x02\x94^0\ -\xf3\x1c\xe5\xbf\x04\x1c:\x9bY\x0az\xcb\xdf_[\xc9\ -\xfcs\x00\x80\x85\x12\xab\xf3\x08\x83\xaa\xebsG\xd7\xab\ -\xb7\x80\x13\x85d\xb5\xcb\xd1\xf68\x8cB\xde\x11\xefR\ -\x04\xc0t\xc6\x91\x0e\xbf\xaa\xdax\xe7\xce\xfe\xad\xba\xaa\ -C?\xdf[\xf1\xc2\x1b\xae\xf7\x02O\xf3\x94q\xe6\xf9\ -\x87\xefat<\x03\x00 \xce\x03\x94l\ -\xe2\xa4\xe2\xa3\xeeS\xe9\xa0#\x8bn\x03\xa4\xaab \ -T\x9aq\xd4v2\xbcK\xee\xac\xca\xa7p\xab\xa4c\ -9j\x99\x86\xa7\xc9\x9d#\xcc\x00\x8e\xb2\xd5'N\xf9\ -\x9a\xb4\xaa\xddzl\xb5\x9b\xf7\xb0\xa4\x9bX\xfd\xb1U\ -.\x1d\x10C\xb5\x01\x05F=\xb9\x8f1\xa8/\x8fJ\ -\xe0\xe1\x10-\x9a\x90R*\x07\x9bW\xd5\x93R>\x9e\ -A\x8d\xa7u\x12h\xe9\x82w\x80\x94\xe7\x01\x1e\xe3\xcd\ -$z\xff\x82\xdf\xbd\xb6\xd2\xa5\xb7\x00\x0f\x00,\x0a\x10\ -x\x86\xc9{\xae\xd1\x96\x0e\xa5V1M@E\xb6\xee\ -\x15\xe6\xaf}\x87\xd2\x09\xc0\xd0\xa4P\xe4\xbc\x99C\x01\ -\xf1\xbd\x18\xa0\x95\xb9\x13\xd0\xdeX\x85N>[z\x83\ -W\xd1\xd6\xf8\xc7\x84\xb6\xfbx\xad;\x90MB(\xb1\ ->K\xe5\xe3\x9d<\x83\xf6sh\x17\x97\xdbQ\x04\x98\ -I\x11\xd3\xbat\x00\xe7\x01\x00\xe0B\xae\xef\x8c.\x86\ -\x1b\x0a\x83H\x81@\xbc@\xb5\xe6\xda\xc5\x9b\xdc0\xed\ -\xe6\x98]\x0b3W\x9fwQ\x97\xd7m\xe9\x90\xa3@\ -\xd3\xb0\x85;\xa7\x01\xc0\xb2\x15\xa1\xb8\xb2\xe9k\x0c\xe4\ -\x1db\x94\xac\xed\x89\x95-?u'V\x97\xea\xe0\x02\ -\x91#,Q\x1eA-\xd4t\xea\xb8;\x1f\xd7\xa5g\ -d\x0e\xca \xcek\xd8u\xe4yP=\x0a`\xbaY\ -c\x0c\xc8(\xf7\x0a!\xd2\xe1\xd1\xda\xf6\xac\xc9!\xb7\ -5J\x0bX\xfa.u\xdav+\x95\x90,\xa5`p\ -\x8d(\xae2\x0c\x85R5\xa1\xd0\xb9Cj\x1b\ -\x97\x87\xcbw\xad\xe3\xe0Z\xae=\x8dKU\xb5\xd3G\ -\x82\x95\xe2\xcd\x94\xa3\x0b\x04\x1e\x000Du\xf4\xc0[\ -\xe4@&s\x09\x1b*\x07\xd7!\x97y\xaa\x10V%\ -\x962\x22\xf5\x01\xd0V1\xcd\xa1\xb89\x95yK\xad\ -\x83\xabhR\xadn\x06\x99&\x8c\xc3a4M, \ -\xb4j\xe5\x11\x92\x0f\x08b\x5c'\x09\x11A\xf2\xea\x10\ -d\xcbm\xda\x14\x13%\xae\x8a\x08j\xe3\x87z\xf5i\ -+\xb8k\xe6\xd0A\xbe\xdf\xb9\xe2\xce\x08\x08\x93\x02E\ -\xba\x16\x9d\x84\x11\x9d|\x15\xee[\xc7\xb5o\xc3\xb2\x19\ -d\xc8\x5c\xc1j>Hlje\xa3%\x95TY|A\xa9\xc5\ -\xe7\x17[B\x01R\x5cn\x89e\xd5\x96\xc8\xdf\x12\xab\ -[-Q\xdd=I\x01\x93j\xb5OP\x99\x10\xa2\xf7\ -\xbc\xa64\xa8\xc8d\x84\xfb?\xdf2\xa6\xc5.\xadI\ -tk\xc6\x14\x0f\x86g\xd2Q.ZA\x0dq\x7fj\ -4\xa1\xd2y-d)\xbcj\xc3\xad\xb7\x90\xc4\x18k\ -\xcb\x9dVf\x05\x02\xc2\x81\x1aQ\xa8\xa5K\x04\x008\ -\xe5\xe3\x01r\x05\x22\xf4\xa3\x83\x8f\xa2\x0b\x067-\ -_\xfdwQ|\x18ku\xcd\x91y\xaf\xa9\xe0\xf0\xf0\ -&\x80\xda\xc6\x02\xf8\xec\xcc\x11D\xe8&\xd6\x7f\x9b\x94\ -\xe5\x1e\xf1\x96\xb89{\x8a%\x92\xe3\xe2Ju\xbe\xbe\ -\xeb\xcb\x8b\x87\xd1Z\xbf@\x90\x5c\xafU;\xcd?\x8c\ -a\x89X_\xdb\x14\xe4e\xc1\xedr\xf5i/\xe3\xa0\ -v\x13\xc3\x96I\x91\xdc\xe1N\xb8\xd5\x90\xd8\xbe\xa6\x87\ -\xdd\x926\xf7\xcdgu \xa3\xdfmPQ\x0b\xf7q\ -\xcb\x90\xd2\xaa\xda-Y;\x84\x0a\xab,!\xbf\xdc\xe2\ -sK-.Z\x8c\x14Z\x5c.\x92Wdq\x05%\ -\x16W\x5c\x01\xe7Q\xa1i\xbd%\x947\x10\xfe\x1a\xbd\ -W~\x8e\xd7\x1e\x832\xfd\xdc\x02X:\xe0C\xbdn\ -\xc7\xaf\xb74-O\xe1M\xf5\xfa\xdaum\xad\x05\xac\ -\x98\x16\x82\xdc\x01\xd0\x8d*\x00\xd1\xd4\xf7$\xafX\xa8\ -\x96\xbdQL\x1a\x8a\xd1\xbeKu\xfa\x129\xd7\xbc\x88\ -vj\xe9@/w\xa8\x17\xfcI\xe72)t\xaac\ -{J\xed\x90%\xb9\x92y-\xa6IT$\xd3\xebB\ -u|\xa5*\x97\x09\xdb*\xa7\x03\x10\xdae\xa4\xc5 \ -\xaf\x09\xa5\x1a_\xceXLB\xc5\xb0[7N\xe5\x17\ ->\xd0\xa4\xae\x96!\x14\xad\x16\xe9\x9ayr\x07@!\ -\xda\xdd\xab\x83\x08\x0b\xc6\xbc\x83\x9dJ'O\xact\x02\ -W?\xbeg\x85XWTs\xff\xe4\xfdA7\xd0\xe7\ -3\x81\x9d3\xc4\xb7\x19B\xc9,\x80X\x02\xb9W\x89\ -Y\xbb\xa4~'V\x86g(\x83i\x17\xb9UC\xb2\ -\x0fMBqm-\x93\xaa\x10\xc4k\xcc\xac\x92p-\ -\x0fk\xbd\xbb\x97\x9b\x1e\x00\xbd\xdck\xdb,\xaer\x85\ -\xd0\xb0\x09)\xc4\xdd\xaa\xe5\x9c\x96R\xc92\x94;\x8b\ -\xbf\x04\x14[Ic\xbdC\xa5q\x89\x0cV\xaaV\xce\ -\xb4\xd1\x93L&\xa9X\xca\xaf\xb1$IA\x8d%\xe6\ -W\x03\x84J\x80Pf\xb19Ev%\xa7\xd0\xae\x00\ -\x86+\xb9\xbc\xcf+\xb1X{\x98\xd16\x8a\x82\xa7\ -\xf1 \xcb\x90\xaem\xc8\x17\x00\x02\x00e\x0b\xa4Q\xa4\ -o:\xc2E\x93\x1d\x02\x9b_[\xce\xe5\x165Pd\ -\x1f\x89B3)\xa86bh>B\xed\x5c\xd4\xcc)\ -\x83A\xd0n\xd7 \x9e(8\x827\x80Sh>=\ -\x80'Sv\xa0r\xb74H\x90\x0aJRA{*\ -\x03\x9e\xc2\xa0$\x97\x01\x80\x92FK.i\xb0\x94\xd2\ -&\xa4\x05i\x06\x14XsA\xad\xc5\xe7U\xe2\x05P\ -4^!\x16\xafp%\x0a\x08\x04\x86h\xc1'\x89u\ -\xaf\x85\xee\xef\xb1\xb9\xe5x\x8cZK(l\xc1\xab\xf4\ -\xe0]\x08\x09\x18\x94\xbf\x11\x0e\xc3sd4\xe2\xb5\xea\ -\x15\x93\xb1tU\xe5hM^\x16\xe9J\xc3\xb4\x0dL\ -[\xc1\xcf\x97\xc4U\xc3W\xa6\x9e\xc2C\xeeh95\ -\xad\x8e`\x88\x1a\xff\x0a\xc6\xa9z\xe9\xaeU\xcci\x16\ -\x900;L(\xeb\xd6fU\xc6\xb7E}\x8d\xf0\x96\ -\xcd\x00\x88\xb1O\x82K\xa9c\xba\xf6\x18\xa8\xf8\xf5\x0a\ -\xdf\x7f\xa9\xb4\xd3.\x93\xc5].iCZ\xed\x0a\x02\ -\x00T\xb9\xea\xed\x91SM]:V\xa2\x93?t~\ -]\x1e\xa9\x95:h\x97J\xe9\xb3w\xacR\x87K\xe9\ -\x00\xa2\x19\x08\xde\xd45w\x14\x89\x94\x9f\xab=\xfc}\ -\x9a\xf5\xf3\x8a=\xdc\x9a\x7f\x83J\xadT\xac\xd0\x8b\xd2\ -\xbcx\x99\x0e\x18\x02\xedS\xee\xb3\xf9c{\x84\x80\x9b\ -\x84\x83\x07V\xbd\xf6\x14rH\x96@\x9e+\x82\xa3\xb3\ -\xfeu0\xb5\x80\x90\xa1\xa6\x14\xae\xc7\xae\xca\xb5T\xb1\ -\xd3\xef\x81@\xe1AS\xb1\xf24*\x97\xee\xc7\xdd\x13\ -\xf3\xfd\xc4~\xd7-K+\x88\xdaI\xdbA\xcc%\xef\ -\xcd\x04\x0c\x01\xbe+\x83\xefJ\xab\x06\xecd0i\xd5\ -d15\xdcWM\x1f\xef\xb9G5\x96\xd6F\xcd\xa2\ -\x06Wf\x1e\x87W\x88\x05\x0c\xb1\x02C\x14/\x80g\ -\x88uJ\xf7\x00\x10\x0b0\xe2\xf8}\x5cn\x05\xde\xa3\ -\xce\x92\x8a\xda-\xad\x82g\x84|e\xb7@\x0c!Z\ -\xd90\xee\xcc\x16\xc2\x1b \xf8\xdf\x01\xa0\xfa\xc0\x81s\ -+\xedv\x15\xc5\xaa\xdeM(iw\xc5\x9c\x89\x00!\ -\xa5z\xc8|\x8d\xd3\x10\xd55\xbc\xec\x915\x10:\xbb\ -w\x9eX\xcf\xeeC\xeb\xdc>\xb3\xe6u\xa5\xdb\xea\x18\ -\xbeLX\x80\x97\x0dh\xe7\xb5j\x12\x08#dV\xc9\ -\xcdZ\xfe\x1d\x03\x04C\xe7 \xe8B:\xcc\xdb\x19\xd4\ -\xea\xd2\xf9\x18\xb7\xf9\x92|>^\xdb\xa4\x19\x10\x15K\ -\x04\x19\xd4\x1c\xe2\xba\x8eg\xd3IS\x95\xa4PU0\ -\xfaJ\xac\xb5\x1c\xab\xd5!D:[ \x0fr%\xcb\ -\x0f\xf7.[V\x17\x04\x88L\xc0\xafE#\xe2\x9f\x03\ -@\xadJ\xbb@\xb3\xb6Y\x03\x82\x94\xba>R\x93Q\ -\xd39?y#[^{\xfa\xf5'\xd6\xb0\xf3\xc6\x1a\ -w?X\xdd\xd6\xe7\x10\xc5\xb7p\x85\xe7\xb8\xba\x07\xb0\ -j\x80\xa0\xe2\x0f\x91#\xb9PGt\x86\x01\xc2 !\ -\xc1+\xb4LV}\x01\xb16\xad\x03\x97H\x5c\xd4!\ -\xd8j\x8f\x96\x05;\x0e\x0f\xdc\xc4Jn\x03\xd2;V\ -0|\xcb\xf2\x06\x8f,\xa7\x17\xa5t\x12\xea \x97A\ -\xee5\x13\xf2\xa6\x8c&C\xc5\x15\xd5\x84\x1b)B;\ -u\x8b\x18\x97\xc2&\x80\x00\x18\xf2\xb5\xf7\x007\x9fW\ -\x81\x94#\x00\x02\xf7\xaf\xd78~\x8e\x07(\x89|6\ -\x05\xeb\xf7\xd5L:\xe5G\xbb\xf7-\x8f{\x88\xf6\x1e\ -Y\x88T5\xa0\xba\x86\x06u\x0f\x13+?\xaft\x86\ -\xf0z\x1bM\x07x&B\x1c\x9e \x09KM*\xeb\ -r\xaf)\x80=\xbd~\x1c\xf0.\xc0\xb3v\xdc\x86\x9a\ -\xe1\x83\xe76v\xf2\xdcF\xaf=\xb1\xbe\x83{V\xb7\ -\xa2\xb5\x8c=\xb2\x02B\xf4\xd8!\x19\x06\xe4PF\x00\ -g\x13qW\xf6\xa6\x8d\xad:\x87\xc0\xab\x19$\x9c\x02\ -~\x85\x0b5\xc1\x88QW,m\xceL\xac\xed\x86\x88\ -\xf4\xe3\xaa\xc7,\x9b\xfcWn\xbaD\xf9\xfc\xc2m\xab\ -\x82\xb0U.\xea\x0c\xbaS\x5c\xb7N\x12\xd5qk\xf0\ -\x04\xed\xf7W\xf5M;\xfcA\xe4\xaaY5\xec\xaa\xb4\ -Q\x95\x0d,T\xf5~\xb5<\x9c\x06V\x16\x867\xc8\ -\xc0\x0bduN\x03\x80\xabV\xbep\xc3\x1a\xb6\x9eZ\ -\xdb\xd1\x07\xeb\xbc\xfe\xd1:\xae\xfd`-G\xdf\x03\x88\ -o\xacj\xeds\xd7f\xbe`\x82J\xd6\xb0\x88\x87\xd9\xb5\ -\xda\xb5\xdb\xd6\xb2\xff\xc2\xba\xae\x7f\xb0\xbe\xb3\x8f\xd6\x0f\ -\x08\xfa\xef\xfc\xc1\xfan\xfff=\xb7~\xb3\xae\x93?\ -Z\xfb\xfeO\xd6\xbc\xf1\xad\xd5-\xbf\xb7\xca\xd9\x17\x90\ -\xcf\xc7\x84\xa7\x07V4\x86\xf0Z2\xf1\xc8\x01\xa4b\ -^\xd6\xfe\xb9\xd5\x01\x9a\xc6\x9d\xef\xacy\xffGk=\ -\xfc\x09\xf9\xc1\x9a\xf6\x00\xc0\xc6[w\x08s\xa1\xe6\x1f\ -H=\xb3T>&\xbe\x22O\x85B\xbd\x9d3(\xdf\ -\xf1\x0c\xd5\xdb\xc1\x17\xc8\x1etB\x98J\xadt\xd6\x8e\ -6\x8d*\xadS1\xaa\x8f1\xc8P\xaa\xa7\xcf\x10\xab\ -\xfdp\x8c`\xeb*\x00%+B\xe1\xda\x1f\x99\xeb\x1a\ ->\xde \x8b\x22\xa7w\xfd\x15\x8e\xed\xa2\xd9\xa3\xa6\x94\ -?e*X\xaa\xcb\x14T.\xcew\xb9\xfd\xfb\x18W\ -\xb2t\x03\xe1\xd5\x81\x9b\x85p\xad\xda\xa9\x03\xabW\xaf\ -\xa4\xd9\x13\xab\xc5C\x17\xaa\xe1v7Y\x01\x86\xa0z\ -\x0au!Ok^\xe7;VP8\xd6\xaf\xcc\x03/\ -)q\xe1\xe7\x5cRI=\x95\xa1\xc4\xa4\xaa\x22F-\ -\xe2:\x17]\xd7\xa8\x001=kx\xcb\xc2\xa3\xbb\x16\ -\x81\xe1\xabS\x97v\x05\x05\x07A.nH\x07/\xa7\ -\x92\xdb\xba#Z@S\x22\xb1\xcc\xabF%>\xcb\xcd\ -\x90\xc7'\xe2\xd6<\xe1\xbd\x03\x81j\xfd4\xa8\xbd\xa0\ -\xbb\x97A\x1f\xe4\xa6\xf1\x02#+\x10\xc1\x03,\xf5\x0c\ -+}l\xedGo\xac\xfb\xc6\x97\xd6{\xeb;\xeb?\ -\xfb\xd9\x06\xce\xfeh\xfd\xa7\xbfY\xdf\x8d?Z\xf7\xf1\ -/\xd6\xb1\xf7\x835c\xd1\x0dWQ\xa6\x9a?\x22\x8d\ -W\xbf\xb2\xf6\x9do\xad\xfb\xe0{\xeb=\x06<|\xb6\ -\xff\xd6\x9f\xac\xeb\xe6o\xd6q\xfdWk;A\xf9\xfb\ -j\x12\xf9\xc6*Vt\x82\xc9\xa9\xe9\xa8\xfa`\xd72\ -!\x0b\xf0_X\xbeS\xbe\xe2#\xf7\x09hS\x9a\x08\ -\x0b\xad\xa4b<\xafkx\xa1B\x0e\xa5\xc5*\xcc \ -\xdb\x08A\x90\xb3U\xef7\xa8\xe2\x8e\xf3\xbe\x08Xv\ -\xb0\x93\xd4\x14\x00\x84\xe0!\x11\x94\x9d3\x08\xd8T\x98\ -1z\xc7r\x08K\x91\xb1;\x16\xc6+\xa8\x8eA \ -Pk\xf7tM\xcfb\xa9\xea\xc4\xe6\xa4\x19\x01tI\ -\x00,\x19IQA\x0e\xa9of\xe7\xbcE\xdc\xe4\xdb\ -\xb2\x855\x19\xd7\xb9j\x01\x00\x97\x8e\xb2\xd3\x90\xd4\x06\ -\x94^\xb7\x88\xc1\xcd\x91\xefk\xfa~\xd2\xcb\xfb\xc5\x9d\ -\x5c\xea\xa9\x13O\x14:\xbd\x99A\x81-&\xa5m\x89\ -\x0bx\xedB\x5c-`\xf7\x1aV\xae\xa5N\xed\x02\xe2\ -\xe1\x10m\x11\xd3yv\x17\xe7\xe1k\x8d<\xd9\xcd`\ -q\x83nzQ\x02\xc1Qy\xb4\xfeF\x8cs\xafz\ -\x10\x80\xa2R+o\x070\xee\xb3\x0e\x06\xde\xd8\x8fE\ -\x0d\x935La\x1d\xcbX\xe46\xe9\xe0\x09@\xb8\x03\ -\x10\xe0\x04\x87o\xad\xfb\xdaW\xd6w\xeb{\x1b8\x05\ -\x08\xa7\xbf\xa2\xd4_\xad\xe7\xfa/x\x84\x9f\xad\x030\ -\xb4\x0b\x10'x\x8a\x9b\x7f\xb2\xa9\xfb\x7f\xb3\x85'\xff\ -l\x8b\xcf\xfe\xd5\x16\x9f\xff\x9bM?\xfd;\xe1\xe47\ -k\xbd\xf6\x9d\xd5\xef\xe15 \x9aE\xf3g\x96\x0bw\ -\xc9&\xbb\xd1Ii\x8a\xad\xae\x22Y\xbbq%\x9a<\ -\x11\xb1\xe4\xf7\xda\x94\xa9\xbe\x89j\x9f\xa7\x1a\xbc \xde\ -Bg\x1ahuPk\x0c\xd1\xa9\x9bn\x8d!\xaa\xb6\ -\xf7S\xeao\x8cu\xab\xa2\xc7\xb9\xf9}g\x8dY\xbc\ -\x86 \x81r\xcb:\x926wR\xd3\xb8O\xdc\x8e\xea\ -\xc8\xf8]>\x7f\x1d\xb2\xba\x8b']uqZ3t\ -*\xd3v\xfb\x0b\xb4\xf9T\x00he\xfcZ\xb1`\xb5\ -\xb1\xc5S\x09\x94\xee\xe0,\x8c\xccY0\xd6\x9dJz\ -\x99R\xc7\xe7Pz2\xdc(I\x8a\xaf\x82\xf4\x91\x8a\ -\xbacgH'\xf5\x9a\xa0\x0d&\xae*X\x15\xc1\x18\ -'\xd7\xd2Q;\xaeGPJ\x9b\x0a\x05\xbd\xe9^)\ -Xu\xed\xae\xb8R\xacZ3N(^u\x82^w\ -\xd0\x7f\x88\x88W\x1a\x0f\xe0\x1aE\xa9v\xa0\x83\xfc\xfd\ -BT\x89\xa3\xbf\xe9\xb3\x8e\xf0\x88\xacM\xe0\x9a\xb45\ -\x8b\x1c\xb7i\x10\xf79B\x9a6I\xca\x07\xb2\xe1\x1d\ -\xf9\x13\xa4\x86:?x\xed\x1e1\xfb\x99\xb5\x1d\xbc\xb1\ -\xce\xe3\x0f\xd6}\xf2\x15\x80\xf8\xda:\xaf}c\xed\xd7\ ->Z\xfb\x8d\x1f\xad\xe3\xd6/\xd6M\x98\x18~\xf0W\ -[|\xf5\xaf\xb6\xfe\xee?\xdb\xda\xdb\x7f\xb7\xe5\xd7\xff\ -bSO\xfel\x1d7\xbe\xb5\x9a\x9dWVJ\xea\x94\ -\x07w\xc9\x06\xd0\xfe\x0eU\xc82\x08Xy\x1c9q\ -,\xe9\x96\xfa\xf1hBD{\x03\xe5\xbdR\xb4\x8b\x07\ -\x17\xaf2/uP\xd3\xd15\x1e\x00\xf0\x86\x22\x8f\x93\ -\x84\xc4\x19\xb2\x0b\xb2\xa1\x5c\x1dqCZ\x1c\x99\xba\x0d\ -\x08\xce\xe0N\xb7\xc8>\xae[\xb0\x070\xf4\x1c\xb9x\ -,B\xaac\xdb\xd5\xb5m2^\xe9g\x17c\xdd\x03\ -\xdc{\x00@\x17\xe3\x8fB\x9bb\x83v\x8d|\x02\x00\ -\x17S\xbe\xaa\x1e\xb9\xaa\x0f\xcc`0\xd4G\xc8u\x02\ -\xedSQ\xc4\x0enOK\xaf\xca\x10\xd4N]\xc0\xc0\ -+h\xb5K\xcaw^\x83\xc1\x13\xdb\x96\xf2\xbb\x17x\ -\xd5\xba\xff4\xa9\x0d\xa9\xa3\xbaV5\xc0\x0b\xeaQ\x84\ -\x8a,\x95B*%#3\xd1*\xa0\x8aJ3;f\ -\x89\xa9\xb0k\xfe7S\xc5\xa6\xfd\xa4n\xc3X\xe3\xf8\ -\xb6\x85\xa7\xf7\xac`\xf1\xd0\xaa\xd6\xafY\xdd\xe6u\xab\ -Y?\x86\xe5\xef[\xc1\xb4\xb6\xb5\xcb\x9a\xb1\x8c&\xa5\ -\xa2\xc4\xf6j\xe2=\xd6\xefu\xe1\x82\xf0a\xf9\xca\x8b\ -\x05rw@\x04\x0aw\xc0\x05\xe0\xda\x8e\xe5\x8aI\x09\ -\x8d\xb2Pg\x08\x840-\xee\xb8Jg\x81\x14@\x07\ -\xe1\x07\xd9:\x17\x99\xdc[\x07P\x14\x12\xdfK\x94\xa5\ -\xa8\x00D\x95?\x0b:\x1f\xe9\x85\x15\xce=s\x05\x22\ -\x02IX-\xe6U\xf0\x01\x00\xdc\xa9 (\xdc)\x05\ -\xde\xa0n\x9f*\xd4Hi\xdf@'KX?\x06\x89\ -\xeb\x96E\x0b\x00J\xdb\xdc\xa1\x8f.\x04\x13\xb6\xe55\ -\x94\xde\xc9C\xe0\xee\x93D`\x11\xb5\xd4Q\xdf'\x1d\ -w'\xb2\x97\xaa\xddUR\xbe\xeb1\xa8]U\x07x\ -l\xd5J\xee[\x8c\xeb\x80\x85\xeb\xf7\x94\xafmCr\ -7r\x19X\x06\xee\xc6-\xa2\xc8B $j)\xef\ -C\x99Z\xea\x0cB\x14\xb3q\x89\xe1!-\xb3\xc2z\ -y\xd56(u\x08\xd5\xf1\xe8\xae[6\xdeCLZ\ -e\xe5\xea\xc9\xab\x1e\x81\xb2~\x9d\xdf\x97\x06\x17\xd0Y\ -~\xaeEku\x17\x0f\xaa\x06M\xb0\xf0Zn^=\ -t\x9dh\xb2BG\xa4\xea\xd8\xb7\x01\xdc\x9dz\xf9\x03\ -\x12\xbcEr\x1b\xf7\xd6\xc9\xf7\xf5N[\xe6\xc0\x0c^\ -\x88\x10\xd2?\xc5\x83\xa9t\x9d\xfb\xc7\xb3$\xaa\x13\x99\ -k\xda\xc8\xf7j\xd7\xef'\xa6\xaf)j\xad2\xea\xbe\ -T\xc6\xae\x9dP\xdc\xb7\xac\x1f\xc5\x8b\x95{\x87>\xa8\ -N\x81\x01\xe7s\xe9J\xf5 \x87\xfefR2\xb5\x8b\ -%{\xd2\xb2x6\x80\xd7A\x91\xf9\xe3\xb7\xcd; \ -\xf3\xa5\x95/\xbf\xb5\xf2\x95wV\xb6\xf2\x16\x0e\xf2\xda\ -\x8a\x00A\xc1\x9c\x08\xe0}\xf8\x802\x80\x13\xc0s\xc0\ -8j^@\xa2\x94\xd0\xab\xdd\xd7^\x08\xb5\x81Mj\ -\x5c\xf4t\x22\x97\x8e25Q$\xf2\x97\x06/\x10\xf7\ -J\x15y\xe4\x1e]6\x86\xbe\xdc\x16t\x94\xef:\x97\ -\xf1|\xee\xffd\xc8\x18\xb6\xdc\xbeZ\x00\xf8;\xb6I\ -\x155=\xae\x1215\x98\xde\xb0\x18\xa5\x09Z&\xd4\ -\xd6\xe6x\x5c\x88\xa6\x0c5\xc5\xaaT\xc8\xc5\x1c5+\ -r\x1b+\x18\x04\x18\xa9\x5c\xb4v\xb9\x04q\x85\xda\x1d\ -\xa4I!m|\x10\xc9\xca\xd6\xb61\x11'H\xa3\xda\ -\xc4kyW[\x97t\xf8B\x9av\xe5J\x9aG\xdd\ -t\xb3\x94\x9a\xa4\xd5+\xd5\x18~\x9a\x8e\xee\xc02\xbb\ -\x11Y(\xaf\xea\xdf\xc7\xdf]3\xc72\xbd\x22\xe7\xfb\ -\xe0\xdd\xc9\xa0j1W\xc7w\xd4w\x02bO\x12\xd4\ -\xd0AM'\xf9\x9b>\x13\xcf5\xbc\xef\x04`\x88V\ -\x175g\xe1:\x81\xe9\x189\xac_\x80\xfd\x04Z,\ -^g\xf4\xa7\xe36\xd3\xc9\x93\xd3\xf1\x84\xe9\xa4\xb4\xda\ -\xd1\xe4\x94\x0f#\xcf\x84(\xea\xf8{\x9d\x0f\xac\xd3\xd5\ -sGN\xacH\x85\xa6*\xcb^yi\x95:\x80z\ -\xfd\x9d\x13\x95n\x95\xae\xc8\x13\xe0\x05\xa6\x1f\xc0\x13N\ -\xdd\x92\xb5\xdb\xd6&\x00\xb85\x0b<\x806\xc2\xb4\x12\ -\x06\x9aW\xf1\x84R>\xee_\x06y\x0e\x00q\x00\xdd\ -\xb3\xbc\x91k\xd3\x0f!O\xe15\x99\x9f\x93\xc8\x0c4\ -\xe9\x96HJ\x9b\xe0\x84\xf7\x18\xb0\xba\xbd\xab\xd6@\x8d\ -\xbd\xb5\xe4\x9f\xd1J\x18\xd7>K\x1dx\xd9@\xf8 \ -\x83\x88\x89\xab\x80\x11K\xb4*\x05\x82\xb4@\xa1\xedQ\ -\x1e\x08.\x88\x87@ \xf4\xc9z\xa7\x19\xa8Yn\x5c\ -\xb1z\x09\xd6\xbb\x86\xe5\x0b\x04[\x16\xea\xc7\x0b\xa8\xe6\ -^!\x02\xf7\xefN\xf2f\xd0\xd4^US\xc4\xb2z\ -7[\xa85\x02\x94\xac\xae\x1eq%\xcd\x16[\xdc\x08\ -1k\x22.\xab\xdd\x09\xe4\xacL[\xb2\xb4CW\xfb\ -\xf4\x1b\xbd\x8e\x9aH\x82V\xeb\xf8\xbc\xa6e\xe3\xf4w\ -\x00\xa1\xedY\x97\xb5s\xa7\xbc\xc9\xc9\x95r\xbeO]\ -\xc0\xb4\xc1\xb3R\x80R\xb3\x06\xafa\x83\x00\x90\xa4Y\ -\ -\xb9\x7f\xbeX\xb5{:\xf3G\xe7\xd4k\xb7\xabw\xfa\ -$i\xd1\xb0\xb7]\xdc\x89\xab\xf4\xdd\x01\x04\x1b\x0c\x12\ -\x5cA\x9fo\x9b\x03\x08\x0c`# \xd02.\x00H\ -V\xd3\x22Y2\x00P\xef\xdc+\x05\xea\xa6U\x07\x10\ -\xb4\x1b\xb7\xfe\x5c\xf9\xb5\xe7\x00\xb8P\xbe\x07\x80+\x80\ -\xe32\x00\xb8T\xdc\x8a\xd2\xdb\xce\xa5\xf5\xd3\x1aw\xac\ -z\xf5\xaa\x0d\xec'9\xef!\x04\xe84\x8f\x7f\xd1~\ -FG\xc3\xa6K\x18\xcct\x065\x1d\xc5g\x90+g\ -\x10\x163PH\xba\x04\x10\xb8\xbf\xf1\x99\x0c,Mg\ -\xee\xeb8y\xed\xf9\xcfF\x99\xda\x09\x1c\x1d\xbfa:\ -\xad\xdbm\x03\xd3!\x17d\x06\xd1\x09\xc9\x91;\xeb \ -G\xbd\x95D\x92\xe1H\xfa?\x85\x1b\xed]\x14\xc7\x10\ -\x89S+Z\x85_\xb5\x8e\x91b$\xcaP.\x00\xa0\ -\xc6\x0f\x0a\x03^\x9bZ\xbc\x81\x13\xbc\xb3\x08\xbb\xe6\x03\ -x\x06\x85\x02\xcd\x1e&\xab\x8c_\x93u\x22\xb0J3\ -?q\x05\xfe\xce3+\xe5M\xd0\xca\xa0\xf6>2\x16\ -1\xf1M \x0f\xcb\x8c\xaf\x1f&\xee\xfc.\xf6\xa3|\ -m\x0b\x13\xf1s\x9d\xc3 <\xae\xe9A7)\x906\ -B\xf20a2\x80\x9cQ=$\x83\xc0\x83G\x95\x12\ -\xb9\x87\xc5\x1b\xf4\xc3\x09\xc4\x92U&\xa6\xddA\x9dX\ -\x8d\xbc\x86\x80 O\x00\xd8\x92d\x99\xb8~\x0f\x04u\ -\xe7\x00\xf0\xe4\x12\xca\xbe\x8c\xd2/\xe7\xab\xe7\xae\xac^\ -\x9f!T\xe0\x1d.\x94\xffYI\xbb}V\xaa>\x7f\ -\x9d\xae\xe7\x9f:_\xc6^t\xe9\x02\x14\xde\x0a\xde\xb9\ -\xf0\xb3W\xad\xa3>DjFE\x18`\xe0\x9d\xa0\xe8\ -4\xd8\xb6\x13\x5c\xaf\x13\xde\xa7\xe2&S\x01C*\x03\ -\x9dJH\x10`Dl\xb5mNg-eiZ\x18\ -\x00\xb8\xdd;\xc3\x9a\xf5;\xc4\xc2\xb5X\x06)\xd6\xe4\ -\x91z#\xa8.QS\xc5\x9aO\xd0\xc4\x1a\x99\x94\xc6\ -Ss,\x8a\xe7\xca\xb6t\x91\x14P\xd5O^\xda\xa4\ -\xc1\x04\xf4\xbc&Wz\x92REv\x02\x00RP~\ -\x0a\x03,Qc*\x15r\xa8TMi\xb1fF\xd5\ -\xb4!K\x0a\x1f\xf5\xb6o\x85\xb5\xb1\xa6o\x1f\xc0\xef\ -`$(\x9c\x8cB%n:B\xc7\x1d\xdf\x8eBd\ -\xf5N\x5cvD\x86\xe1@ \xc5\xe8Tt\x8c\x10\xe3\ -\x8b\x93`\xe9\xf1b\xf6\x80\xd3\xb5tq\xa9 @\xf8\ -\xa4|\xadJ\x02\x00\xdd\x97&\x81\x00\x808D\x8a\x8a\ -N\x00\x81\x97\xbaJ\x88\xf9\x9aY\x04\xb8:e=\xb1\ -^M!&P>\xafx\xf6\x04\xf8YL\x22\x16\xae\ -9g\x89;\x18\x8a\x9bR\x1f\x1b1b\xb9*-r\ -H\xf1nkr?\xb1]\xee]\x9d+\xc9\xfde\xed\ -\xd1\xf1C\xa7x\x1d\xc7\x1e\x1e\xe5oC\x9b|F[\ -\xc4E\x0eQ\xf8\xe0U\xcb'M,\xe4oE#\xbc\ -\x0eoZ~\xff\x8aE\xbaf-K={\xea\xff\x01\ -\x02\xf1\x01)\xfd3b\xfeg\xe7\x00\xb8\x5c\x80\xe5K\ -\xf9X\xb1\xd7\xe0P-\xd5\xa4\xf4.\x94\xdf\x83\xf4\xda\ -%\xd5\xbb92\xab\xd8I*\xa4\x936\xca\x08m\xfc\ -\xdd\xe5\xfdj.\xa9\x89\x1f\x95[\xa9\x0b\x89\xa6~\xf9\ -\x9c\xbah]\x9c\xe2\x9d\xc8\xff\xa8\x05]R\x85\x06\x19\ -\x17\xcb\xa0{5z\xe7B\xecu$Li\xad\xa6\x89\ -\xb1n\xb7\x19EE\xa9\xc3\xc8\xc01\x1e\xef\x00\xe5\xc3\ -\xec;\xb6\xe0H\xe4\xf7\xa4Z\xee\x087\xf7\xba\xe1D\ -\xe7*\xb9\xc3\xb34\xa7\x02Q\x96\x91\xc9\xd8\xd4\xb0\xdb\ -\xedADI\xf1R\x94\xe2\xb5\xc2\x03\xfc\xc0u\xf6r\ -`\xe0\x9ep\xff\xc9\x10\xf4d\xcd^\xf2;\x15\x97\xb8\ -\x0ej\x02\x81\xd6\x06H\xe9U\x83\xa8\xdfy'\x9f\xab\ -\xef\x82\xdc\xbe\xc2\xc79\xa8\xf8\xfeD\xae\x97\x00\xf8b\ -R\x94N\xb8x\xa1\x19/M\xf5\xe2\xa6:u\xd0\x13\ -\xae^q\x0e\xe5\x8b\xdd\xab#\xc8\xc5\x89\x1f\x91\x91=\ -\x8b\x8e\x1dX\x1e\xca\xcfG\xf9y\x13\x00at\x97\xbf\ -\x83|\x95$\xf5\x00\x9enx\x02\xee_^@\x07'\ -\x16\x8d\xefY\xe9\xc4\xbek\x10\xa53\x04s\xfb\x97,\ -\xd49c\x01\xd2\xc2Truu\x09\x8b\x13\xa9\xc3\xda\ -/\xa9k&\x22\xe5_QGP\xe7\xc2\xd5C\x08\x92\ -\xaa\x82F\x14v\x05\xe5]\xc6b/c\xc1W\xb0\xd8\ -8\xd7\xff\x86\x87u\x82\x9b\x13\xcbE\x89\xde\xa2\x88\x1a\ -/j&P+\x7f\x84:\xf7\x9e\xf8\x8a\x88l\x094\ -\xf1\x02\x8dZ\xb2\xa9S\x09 P\xa3F\xb7\x98\x82\xeb\ -U\xd7N\xa5Ub\xda:\x90!\xbd\x97g\x1c\x14\x00\ -\xb4R\xeaUQ\x87\x01@X{\xf2\xfb\x04\x84#\x04\ -P\xf4\xdd\xe0w\xa7\xde\xb4\xf0\xe0)!\xe2\x16\xef\xaf\ -a\x18\x87\x84Q\xaf\xc3\xba\x1ap\xc9\xe0\xd4=L\x8b\ -3\xee\xf8{\xbdb\xb9Z\x14rk\x03\xfcN^\x22\ -I\xf7\x80\xfbV\x88Vog)W\xe0p\xab{Z\ -\x0f\xa8U\x95\xb0\xb7&\xe0X\xbe\xd2z\xc7+Tz\ -\xa6\xb5\x01=\x0f\xbf\xe7\xef^\x97\x10\x01@\xeeB\x84\ -D\xcaG\xe9\xda>\xadrj5!\xc8F\xd4\xe0I\ -;{\xc3\xb8\xf1\xb0&~\x90\x88\xce\xf0\x19\xd9\xb1<\ -u\x07A\xf2\xb0\xee\xa8&\x83\xf8\x8c\x0eTRg\x11\ -\xd7V\x8e\x98'\xa2\x98;\xec\xed\x15,\x99:B\x0e\ -\xadhB{\xdb\xd7I\xa3\x16\x5c\x09\x99N\xe2\xd0$\ -\x86,\xf6JI\x97])\xd6\x5c=RDL/\x16\ -0\xe4\xd6{\x9c\x82\xdcC\x80\xe48\x1e\x22\x0e\xeb\x88\ -#\x97\x8d\xaf\x9f\xe7\x814\xa1\xb5\xf8;Y` \xf9\ -\xbd\xe6\xd3yPgI\xce\x9aD\xbap\x7f\xb8t\x0d\ -F\x1c\x00\x89\x05\x10q(]\xe2V\xcf\xf43\xa0Q\ --]\x1c\x96\x13\xcf`ky;\x19\x22\x9c\x06\x01\xce\ -\xe0\x99\x02Z\x0a\x86\xffD \x80Q\xedNV_\xe5\ -q\xed\xf5\xd3\xa6\x8d\x07\x18\x86\x96\x9e\x9f[\xc9\xec\x1b\ -+\x9b\x7fg\xe5\x0bo\xadl\xe15\xe9\xa2\xa6\x88\xef\ -Y\xee\xd8-\xc6\xf1\x84\x90\xaa\x89 -\x09{L\xdd\ -\xad\x0a^\x00\x00\x8f,q\xcc^i\x1daZi\x9e\ -\xab \x92\xf25m\x8f\xd2=\xe5{\xab\x81z\x9f\xa4\ -T\xb2j\x1c\xa5C,\xdd\xb3\x09\x04\xe7\x00\xc0P\xe2\ -\xf5\xec\x8cA<\xff\x1b\xe3\x8e\x82\xc3\x0d\xb9\xa5`\x94\ -\xa7]8Y(22\xb8iQ$\xd7\x89\xe2\xf8\x06\ -\xf1\x5c1\xfd\xaas\xeb\xb9r\xe5#[\xc8\xb6\xb3\xf0\ -\x5c\x00\xa0]\xc0jx\xa4\xb0\xa1\x87rm\xe5\xf0 \ -\x11\x88Q\xde\xe8\xa1\x15\xc0\x88\x0b\xe51\x00MD\xfb\ -\x00\xd5L\x02b\x98\xaa\xbcU\xae\x09\x85\xe8\x06]\x83\ -Du\xca,\x1f\x81\xb8q\xd3\x92\x0a\xdec\xd9j\xa8\ -\x98\x88b\x13\x9b\x97\xce\x17NV\x19$O\x92Z\xd6\ -\xf9\xf9*\xb2aIm\x88\xa6T\x11\x1d\xf9\x9e\xcc\xef\ -5\xc3\x96\xc2g\x92\x9b\xf8l\xe3\x12\xa0\xd0\xfa\xc7,\ -\x03\xa14\x0c\x8b\xd0\xc0\x9d\xaf\xa1{ \x1b\xb5X\x94\ -\x1f'\xf2\x84B\x925C\xa8\x850m3\x1fF\xf9\ -0\xff\xfc\x99{V2\xff\xc4\xca\x17\xc9\xf9\x97\xdfX\ -\xe5\xca;\xd3\xf1\xf9\xb5\x1b_[\xc3\xf6\xf7\xd6\xbc\xfb\ -\xb3\xb5\xec\xfdb-\xbc6\xf2s\xed\xd5\xaf\xacrU\ -{\x04\x9f\x93\x1e>p\xdb\xd4\xc5\x1f2\xbb\xb6\xe0\x06\ -xb\xe5\xea<\x9f\xeb<&\xe5\xb7\xf1\x9e1Jn\ -;_\x16\xc6\x0biB\xc8\xb9~\xac_n_\x93:\ -i\xea\xaer.)\xf5\xaa\x09\x98=\x7f\x1em\xec\x95\ -7\xd0l\xa1\xc2\x08\x1e\x12\xe5{\x02\x00\xd2\x1d\xd9\x83\ -\xe9\xc3\xd2}\xbd\xcb\x969\xb0\x86\x8b\xd7\xf6.\xdc6\ -\x96Z\xac\xd7Q,\x1e\xa5\x87\xfbp\xe9\xbd\xc4\xef\xbe\ -\x15\x00\xb1fy(1\x0f H\xa2\x10\xbf\x08\x8c7\ -\x1b\x00x$\x88\x94\xa7[\x80 l\x0c\x1cX\x8ev\ -\x09+c\x807D\xf0\x08Y}\xea\xc6\xa19j\x11\ -\x17\x11\x18\x89&+\x18\xe4\xa65O\x1aW-\xad\x1e\ -\x16[G\x1aS\x8f4.3\x08kN\xa1Z4Q\ -\xbb\xd6\x0bI&\xee\xa6t\xee {\x96\xda\xb5oi\ -\xddG\x96\xd6s\xfcI\xd2\xf99\xbd\xeb\x10\xa0\x1f\xe0\ -\xed\xf8\x8c\xce\xd4k\xd39\x00\x1b\x1e0TE\x030\ -t\x0fI\x0ch\x22\x03\x1b\x8f\xc7\x88\x97\x07\xd1D\x0d\ -1=]S\xb6jJ1r\xcbr&\xeeX\xc1\xec\ -C+[zaU\xeb\xef\xacn\xebKk\xdc\xfd\xd6\ -Z\x0e\x7f\xb0\xee\xeb\xbf\xda\xd0\xed\x7f\xb2\xb1\xfb\x7f\xb7\ -\xa9\x87\xff\x86\xfc\xbb\x8d\xdc\xfd\x17\xeb\xbb\xf57\xeb8\ -\xf9\xa3\xb5\x1c\xfch\xf5;\xdf\xb8\xad\xddej\xbe\xad\ -\xbe\xcb#\xd7\xf1\xba\xbb\x8e#\x880:n\xc0\xd8H\ -\xf9)\xed\xc4\xf4V\xa4E\xf3\xfa3.\x1bI\xd3L\ -%c\xe6\xc3\x10\xfc\xad\x8c%<\xc3\x9b\xe2\xdd\x01H\ -\x9bn\xfc\xf4,\xee\xd0\x0b\x9eC\xab\x81nE\xd0\x89\ -W\x15\xa4mc1iX_\x9a\x9a)\xb5M38\ -\xb3\xa47j\xf4\xb0\x82\xcb\xde ^o\x13\xb7\xb7\xad\ -x\x0c\x00@\xecB=K\xae\xe1S\xa8\x9b\xcf`\xbd\ -\xd1\x01\x800\xb8\x86\xac[\x0e\x9eA\xed_\xdc\xe9\x97\ -d\x0cY=R\xfe\x9e\x8bw\xe1AR$\xeduW\ -\xca\xa4\xfd\x80\x10\xc9\x00\xdeF\x0bEnZ\xd3mS\ -\xd2\xea!\xee\xb0\xe7\x08ph\xe3\xa4:Z =\xd7\ -\x01\xca1!E\xfb\xd9\x0f\x9c\x12\xd2\xba\xd5\xa6u\xd7\ -\xbd\xa6u\xeb\xe7}~F\xb1\xdd(\xba\xf7\x1a.\xfa\ -\xa6\xf9\x07\xce,s\xe8\xaee\x0e\xdf\xe3\x15\x19\xbc\xeb\ -~\xe7\xeb\xbf\x89\x05_G\xae\xc1\xe4\xbd\xf63\xea\x98\ -\xe1\xda\xa7\x00\x12_\xc7>\x83\x0f8\xf0\x22)\x02\x9a\ -S\xfc\x9e\xfbl\xf6\xd0mr|\x9d\x9f\xf0\xd4\x8a\x17\ -\x9e[\xc5\xca+\xab\xd9xg\x0d;_\xa0\xd4o\xac\ -\xfd\xe4{\x1b8\xfb\x83\xcd>\xf9\x9bm\xbe\xff?\xed\ -\xe0\xeb\xffa\xc7\x1f\xff\x1f^\xff\x1f[{\xf7?m\ -\xea\xe9\x7f\xb3\xa1{\xffj\xbdg\x00\xe1\xc6o\xd6t\ -\xf8\xbd\xd5l~ne\xcb\xcfM\xcd1\x9c'pe\ -b\x22\x87b\xf3(\xae\x05KGt\xa6\xb3\xeb*\x06\ -I\x0f\x02\x90l2\x8b0\x86\x16\xc5\x1b\xe5\xf2\x7f\xd1\ -!\xd5D\xaa\xf4\x8c1\xeb;a\xcc~_\x17\xb8t\ -n`\xca\x16P<\x04S\xe2J\xc2RT\x0e\xed\x8a\ -\x0f\x87\xb9\xc8\x08\x17\x9f\x80\xf4\xcdY\xc1\xc8*\x8a\xdf\ -p\xca/\x1c\xd9\xb4\x1cu\xfc\xc0Kdv\xcc\xb9\xb2\ -\xf1\xac\xce9\xcb\x06\x08\x02E\x08\xcf\x11\xc2;dk\ -[\x18\x8a\x15w\xc8\xee\x917\x808\x92\x1a\x85\x05\x82\ -\x01\xd2$\ -\x22\xad|Bz\xf9\x84\xf8\xfa\x98l\xe3\x01)\x17\xca\ -\x84H\xf9PXz\xdf\xa1\xa5\xf5\xa2\xf8\x9e=\x14\xce\ -\x83\xaa\xb8\xa2\x1f\x05\x0e\xde\xb2\xac\xe1;\x16\x1a{`\ -\xe1\x89'\x963\xf9\x1cy\x81\xab~\xce\xef\x9eX\xd6\ -\xc8\x03\xc0p\x87\xf8-p\xa8y\xc4]~\x7f\xdf\x22\ -c\x0f\xb9\xc6C\xc0y\x8f\xdc\xfe\xcc\xd4>\xc5\xdf\xcb\ -w\xc2\xea%\xb2z\x1dI\xaf\x13\xc9uRJ\xe1\xf4\ -c\xcf\xedc\xbd\xd5k/\xacn\xe35\xee\xfd\xad\xb5\ -\xec\x7fn\xfd7?\xda\xf2\xf3?\xd9\xb5o\xfe\xb3\xdd\ -\xfb\xe5\x7f\xda\xa3\xdf\xfe\x7fv\xe7\x97\xff\xaf\xed~\xf5\ -\xbfl\xf6\xe5\x7f\xb5\x91G\xfff\xfdx\x86\xae\xdb\x7f\ -\xb1\xd6\xeb\xbfX\xdd\xeeWV\xbe\xfa\x92Pr\x97\xf4\ -Y\x00P\xb6\x80g\xd4^I\xc5\xfb\x06H\xb2\x0aC\ -q\xfd>\xb8@\x10p\x14\x10R\xab&\xaf[\xed\xec\ -M\xab_<\xb3\xfaem\x16\xb9m\x05\xae3\x99\xb8\ -\x05 \xe8\xd7\xeenU\x1c\xe9\xccGyOo\xceA\ -\xbd\x1eD \xd5\x85]\xfb/c\xbcs\xf14E\xda\ -\xcd/\xbd\xcd\x1b\xd9]S\x967\xb8\x04[_\xc7\xfd\ -oZ\x01\xec>\x82r\x03\xed\x0b\xa6\xa3N} \xd3\ -\xdf\x0a\x83\xd7\x9a\x80\x96Fubx\xd7\xa2i[\x98\ -j\xed\xb4\xd9SS\xc1\xd9 4D^\x1c\xc6\x13\x84\ -\x05\x04\xe5\xc9\xbc\xcf\xe2w\x0a\x0f\xfe.\xc4mNU\ -C\x04\x94?\xae-\xd0\xb8D\x9dJ\xb2\xfc\x1e\xf9\x9c\ -\xf7\x9f[\xde\xdc[\xcb\x99za\xd9X\x9f\x94\x97\xce\ -\xc3\xa5\xe2.S\xb1\x964\xbeG;\x85\xb5\x9f>{\ -D\xdb\xb2\x89\xabSO\x19\xd0W\x96\x0f\x01\xcb\x9fy\ -c\xd1\xa9W\x00\xe2\x99e\x8f=\xb2\xe0\xe8}\xe4.\ -\xdf\xa5\x06\x12j'\x83\xf5\xcd\xea\xb3/\xf9\xbfgX\ -\xf8#R\xbb\xbb\x00\x0e0aQjH\x91\xcdkh\ -\xf8&\x008%\xfb\x81\xec\xe1\xfe\xd5\xd2F\xf3\xffe\ -\x0b\xf7\xbc\xcd-\xab\x0f\xadv\xfd\x91u\x1e\xbc\xb2\xb9\ -\xfb\xdf\xd8\xe1\xfb?\xd9\xe9\xc7\x7f\xb1{?\xfd7\xbb\ -\xfd\xe3\x7f\xb7\xdd/\xff\x8b\xcd\xbe\xf8W\x1b{\xfcw\ -\x1bz\xf87\x00\xf0'k\xbe\xfe\x93\xd5\xee}ie\ -k\xdc\xc3\xccmWk\x18\xe8\xc63j\x8e\x00\xcf\xac\ -\xfe\xc5\xaaYL\xab\x1buk\x11\x99\xad\x8b\x16\xc1\xbb\ -V\xa0\xfc\x8e\xf5\x07\xd6\xbd\xf5\xd0zv\x1eZ\xf7\xee\ -CkX\xbd\x0d\xe9\xbc\x06@\xd5R\x06\xc0\xaa\xbf\x03\ -^X\xfd\x91\xdcz\x01)\xa1\xb2\x19\xafHD\xa5\xfa\ -\xfd\xe8\xbc\xcfb\xb4\x1a\xe7\x8eM+\xef0\xf5\xecM\ -\xab\x1b\xb4`\xeb\xa4Eq\xf1\x05\xc4\xfd\x02b{\x1e\ -9oX\x04\x91\xb8\xe4\xe6\xcd\x9b\xd4\xf1s\x06 \x00\ -\x06\x15Nj\xaa\x17\xb2r!\x81vZyEb4e\xaaY3\xf5\xdf\xf7\ -\xf6\x07\x8eZ\x00\xc5\x86\xb1\xe2(\xa4.wp\x97\xf8\ -N\x8e\xaf\xc9 \x15\x83\xb4\xaf\x00\x84e'R\xb2$\ -\xa05u5y\x80\xb4\xf8\xb4\xc2F\x9c\xf2\x93^f\ -\x92\xda\x04A\xa0\xe2U\x08\xf6\x1cBY!\xc0\x10\xc2\ -u\xabN^9\xb1*du<]t\xea\xb1\xe5\xa3\ -\x8c\xe2\xd5w\x0c\xcaWV\xb3\xff\x9d\xd5\x1f\xff\x8c\xfc\ -j5\x07?\x03\x88\xef\x00\xc1\x07\xcb\xc1Cd\xa1h\ -?nY\x0d\x0eTD\xa1FP\xb2T\x1db%\x17\ -\xed\xf5\xe6y\xeeZ\xb4\x14L?\xb3<\x94\xaa\xb2\xac\ -\xf0\xe8\x1d\xbc\xc4\xa9\x93\xd0\xe8\x99+\xe3\xca\x9b\xd2\xe7\ -\xb96\xd7\xcfS\xd9\xd6\xd8]\x94\x8d\x1b\x1d\xe2\xfb\xe0\ -.9\x83\x87\x08$V2\x84\x0c\x8b\xd0\x1e\x02\x06~\ -\xcfk\x0eV\x9b3\xb4O\x06\xb4\x03\x09\xde\xb4B\xb2\ -\xa1\xfa\xd9#\xeb]\xbfe#\xbb\xf7l\xea\xf8\xa9\xcd\ -\x9f\xbe\xb5\xa9\xd3\xcf\xdd\x99\xc7=7\xbe\xb4\xce\x1b_\ -Y\xdd\xde;\x80\xfe\xcc\x0a\xf0 \x11,:\xc88{\ -\x0aSY\x9e7g\x7fQ\x09\xa4\x92\xf3,\x5c\x7f\x8e\ -\xf6\x08\x8e\x01\xb2\xa5\xfb(\xfe\x09 \xb8kmk\xc7\ -\xd6\xb4\xb4c\xa5c\xf2\xbe:\xebh\x12\x12I|o\ -\xc1\xddkvWS\xbex\x91X\xd2\xec+(\xff\xb2\ -\xa6\xcdK\xdb\x916\xa4\xd5b\xdcVb7\x0b\xa6\x8b\ -\x8d\xc3,\xb5\xda\xa5m\xde\xdb\x10\x0b\xf5\xf7\xc1\xad\x90\ -\xaf\xe6\xf0>\xacF\xd1}Z\xe8!\xbe+\xc6#\x22\ -|\xdaQ\xac\x93\xc2u\x5c\xbc\xda\x95f\x00\x00\x1fi\ -\x8c\xbfy\x110\x01\x12\xd2\x9b`\x1b\x1c\xa2}\x1d\xee\ -\x00B\x01\x81<\x80\xce\xc7W\x85\x8c\x00\x903\xa5\xbe\ ->x\x80\xe5\xd7V\xb6\xf1\xc1\xaa\xf7\xbe\xb1\x86\x93\x1f\ -\xac\xf1\xba@\xf03?\x7fo\xa5\xa4P\xf9\x0bo\x88\ -\xebOP \xf1zH\xe5U\xb8h\x80\x14Baa\ -b_\x0e\xdf\x17E\xb9\x12)2\xcc\xef\xdd\x89\xe5\x00\ -N\xdb\xdf\x83d%j\xce\x90\xa5p\xe4\x08\xea\x89S\ -v\x0e.^$J\xc7\xde8\xce\xd2\xb7G\xd8#|\ -\xe1F\xc3<\xa3\x96~\x95\xe1h^?[\x13cX\ -bXmb\xfa\x0f\xf0j<\x0b\xe1,\x0b>\x13j\ -_\xb3|\xdcx\x19VXIz\x5c;y`m\xcb\ -7\xadu\xed\x8e5\xae\xdf\xb3\x86\x8d\x87p\x06\x1d\xbf\ -\x03\xd7\x99VS\x8ec\x94\x0f\xc9\xe4\xfb\xd5\xd7\xd0M\ -\xdf*^\x9f3wu\x15\xd7\xb6r\xf1\xa9(\xba(\ -\x9c\xd3\xfeC\xb7C\x18\xb9\xa2\xb9\x16'\xdd\x16\ -\x8b\xc4x\x95\xa5b\x87\xc4\x9d\xe6U\xd2\x10\xcd\xf9\x13\ -\xafq{\xb9c\xa7\xae\x9dI\xde\xf8\xa9s}9Z\ -\xf0\x18\xe4ox\x04\xad\xf8\xa9\xc5K\xb6\xa6\x88\x19 \ -\xcd\x1c\xba\xe9M\x1e\xc2\x87\xe5\xfb`\xf6~r\xf4L\ -HH\xb0\xc3k_\x9aE\xba\xa6\x13\xc54_\xaec\ -\xe6B\x1al\x07\x80;X\x81\x5c2\x96\xb8\xf8\xc2J\ -\xd6\xdfZ\xe5\xee\x17(\xfe#\x00\xf8\xd1\x1a\xaf\xfdd\ -u\xa4W\x95\xdb\x1f\xadd\xf5K+\x5cx\x87\xbb~\ -\x89\xc5B\x14\xc7\x94B\x9dy\x8a\xee\x97\xa2Q2\x1e\ -&S\xfc\x82\xeb\xfa\x00\x9e\xb7\x1d\x0bbE\xc6!\xd1\ -|\xbc\xee\xd3\x8f\xb2\xbc\xe3\xee\x95\xba\xa2\xc0s\xc9\x86\ -[8o\xc5\xefC\xdcw\xf6\xb9d\xf1{\xcd\xe0e\ -\x13_\xdd*\xe0\xd8M\xcbgl\x0a\xc6\xce \xcd7\ -\x09\x95x\x0cy7=\xaf@\x8f\x01dq\xad\x02<\ -C\xe9\xd8\xbe\x95M\x1d[\xf9\xec\x0d\xb7'Rk(\ -Yx\x0e\xb5\xb6\xf1\x03,\xd5#\xaa\x0c\xed\xf7g3\ -\xebg\x1f\xd7\xcd\x04\xb0*\x22\x89\x8e\x9fY\xfe\xe4\x1d\ -\xc2\x8e\x1aB\x12~F\xf7\x08\xd5\x10\xf0\xf6)\xf3\xab\ -\xd95!\x5c\x07g\x5clp\x89G\xf1\x09*}?\ -_]\xd4\x8c\xa8&\xbe\xe2\xabF\xdd$X|\xf58\ -i 9dz\xfb\x06\xeeG\x95\xbd\x07\x16\xc4\xb5\x86\ -\xd4\xb4Q\xb3Z\xd3\xeao\x83\x90\xa7\xe6\x81<\xb5\x88\ -\x8f\x0c\x03\x00M\x0bk\xb5K\x0b\x22\xbd\x9a\xf0\xb9\xf0\ -\x00\x02\x80D\xef\x19Xr\xf3\xac\xae]\x14\x8e\xb2q\ -\xd3!Y\x8a,\xaf\x8fl@Y\x01 \xd3I\x98\x11\ -\x1d'\x0f\xb1\xcaQ\xf7\x8b\x99\xfb\xb8\xc5GV\xa2\xa2\ -\x0a\x98u\xed\xc1\x97V\x7f\xf4-\xf1\xf2{\xab\xdd\xfd\ -\xc1\xaa\xb7~\xb0\xaa\xab\xdfY\xd5\xda7V\xb5\x02W\ -\xc0#\x94(\x96\x03\xa2( \xd05\x82(O\x1bJ\ -}*\x84\xc4\x82TC\xef\x8e\x9e\x11\x03Vl\xe5\xd5\ -m\x8f\x82\x15\xa7\xab\x00D\xde\x0a\x90\x04\xb8\x7f\x85\xb9\ -,@!\x85\x87\x00\xac6vfK\xbaP<\xcau\ -^\x83\xfb\x8e\xc2\xb6\xf3\xa6t\x14\xfd\x03+\x9d{\x84\ -R\x91\x99\x07V\xacf\x0ej\xea\xa0\xb0\x841\x05Z\ -\xe1A\xe4\xf69x\xcd(\x9eC!5\x8a\xe2u\xfc\ -\xbc\xca\xd0\xd4\xbcR\x85\xa7Z\xbau\xc5\xa1j\xdd\xe2\ -j\x04w\xd1\x87\x00BZ\xcc\xf7\xa9uO\xf4\xd3\x89\ -\xa1\xea\x12\xa2if\x9e\x15^\xe0\x87\xe4i\xc9:\x19\ -\xe5&Vj\xba[\xa2\x121-x\x0d\xbb\x95C\xd7\ -oA\x93m\x9a&\xc6\xbbx\x15\xe0\x0b\x16\x93\xc1\x85\ -|*\x14\x84\x90\xb9\x1e\xbc(?4\xa6C\x09E\xca\ -\xb0\xc89d\xf6!\x17Vy\xb3\xdc\xacn^^\x02\ ->\xa0\xee\x1b\x9dX\x92\x8a*qS>\x1eB\x13\x19\ -\x99\xce\xd2\x15\xe7\x09\x1b\x903\xb9\xd6\x1c\xb9gD\x84\ -*\x0c\x9a=\x11\x07\xe0A\x5cw2\x91A\x84\xf7\xaa\ -\xb2\xd5\xe1T\xc5\xcb\x8f\xacb\xe3\xa5\xd5\xec~\xb0\xfa\ -\xfd\x8f\xd6p\xf0\x935\x1e\xfcjM\x07\x7f\xb0\xe6\xfd\ -_\xacy\x17\xef\x00Y\xac]\x837\xcc\x93\x9bc\x1d\ -\xea\x95\x1b\xc1}\x87 \x9fA\x94\xea\x17aE\xe1\xa9\ -\xc4T\xad\xa2\xb9\x83\x15T3\xc7{W\x17H\xbc\xcd\ -`\x00\x03\x84/\x852\x85\xb5\x10\xb9\xb52\x96\x08\xf7\ -\x1f\xd1\xe6\x0e\xed4&\xb7\x0e\xcb8D6\xa5`\xac\ -_\xcd!\x0b\xb9\xcf\xd2\x85\x07\xae\xe1d\xd5\xca\x132\ -\x02\xd2\xc3y\x5c\xbc\xa6{\x19\xcb\xec\xdec\xc6\x83\xf1\ -=\xaf\xc3S\xbb6\xe7\x99\x5c\x0a\x8c\xcb\xe7\x1e]\xc1\ -\x86f\x01\x05\x00\x8cF\xfd|\x95~\xfaU<\xaa\xbe\ -\x81\x18\x89k\x14\x05\x00\xa2\x02\x80\x80\xa0\xfe\x82xh\ -\xe5\xffa\x0c*\xc8\xff\xa9\xdcK\x07k\xa8G\x90&\ -yRk\x09!\xb5d\x13Hr\x1d\x06\x80\xb7O\xaa\ -\x9f5\xd5\x81z\xc7\xd0\xaf\xea\xf8\xf8C\xf3\xf3\xa0j\ -\x17\x17DQ\xd9\xa3\x10$\xac\xc9\x03\xc0\x13R0\x04\ -\x00\xe4\xaa\x9cI\xad\xcc5\x89\xa3\xd50m\xc7\x86\xf0\ -\xb9\xeeYn\x05Qnu\xcd)_\xf1=\xc2@\xe5\ -\xe2\xde\xf3\xf9\xae\xfc\xc9{^c#\x90\xab\xa6\x88j\ -\x94\xa4\xd2(\x1dT\x1d\xd6r\xaa\x13\x06\x17Q\xbbt\ -\xcd\xaf\xe7N\x9d\xc2\xce\xef\xbb\x06S\xd5[o\x01\xc0\ -\xd7\xd6D\x18h9\xfe\xc5\xda\xae\xfd\xc1\xdaO~\xb1\ -\xf6\xa3\x1f\xadu\xff\x1bk\xdc|o5+\xcf\xac|\ -\x0e\x8b\x04\xa4y\x90\xb5(\xa1)BX\x0aAP\x83\ -d*\x01W\x9a\x86\xe5\xbbM\xab\x12\xf2`\x94\xaf\xc9\ -\x15q\x17-|\xa9\x0f\xaf\xb8\x8ebm..=\x17\ -\xb2(\x89\xc25\xd4s/\xa2T\x15#\x11o\x08\x13\ -\x0eU\xe1\xa3\xa5\xf0\xa2\xf9[V\xb1z\xdfj6\x9e\ -X\xfd\xf6K\xab\xe3~\xab\xd7\xc9f\xdc6\xf7G\x80\ -\x1e\xf2\xd9\xa7.^\x8c\xb3\xfa!\xbb\x1a@\x00\xc0\x98\ -\xb9\xf2n\x09\x5c\xe9\x1f=\x824\xf1t\xe0\xda\xc5\xa9\ -e|\xa6v\xfcb(\xd9j0%O\x80\xf2\xd5\x9f\ -\xb0\x10oY\x04 \x0a\x09\x9f\xb9\x10`\xb5\x83\xcd\xec\ -:\xc4\x10w\xe0a\x80\xac\x89\xf0\xd7\xb8\x82\x97#\xf4\ -\xa1t\xb7\xff\xb0\x19\x80\x9c\x83-\x15o\x13\xe3\x07\xa1\ -\x01\x10\xae\x06\x85\xbf\xef\x16\xa6\xc6D\xd1iX1!\ - \x8a\xabS?[m\x8f\x0a\xf4\x90^\xc0\xf8\xbd\x1e\ -\xc2\x9a\x9aT\xcd\xf9\x02qU\xde@\xb3\x80\x22G\xc4\ -+)\x1f\x96]\xc8\x0d\x16\xcd>\x22%{\xec\xda\xa8\ -\x16p\xd3r\x9d\xea~)@\x85G\x09\x05\xa3\x84\x87\ -QB\x0b\xccZ-\xde\xa2\x137`\xef:{@]\ -\xc6\x1e[5^\xa0~\xf7=\xd6\xff\x855\x1f~m\ --G_[3\xef\x9bv\xdfY\xc3\xd6K<\x00\xd6\ -\x07\xa9*\x9b%\x1d\x9b<\xb6\x02\xbe+oh\xc7r\ -\xf1TQ\xd2\xa1\x88Z\xd5j+\xf8\xf9I\xe6:\x8b\ -/\xbd]\xa2z\x87\x157\xf9\x92\x8d\xf2#R>\xc0\ -\xcc\xbdX\xdcQ\x96\x00A\xcd\xd5\xe4\xd4\x08F\x01\x10\ -\xb4\x0bY\x00wK\xe4|\xb7\xba\xa3G'w!u\ -\xd7\xadr\xe3\x1e\xec\xfe\x855\x1e~\x0e`\xbft\x8d\ -\x1cK\x97IE\xd5\xc0Q\x13ZC\xa4\x97\x03\xe7^\ -A-lTz\xee\xaau\xe6=q\x0bsZ\x95\xbd\ -\xeaJ\xd4\xb5\xc7\xc2\x8f7\x0b\xe0\xea\xd51\x5c\x8d\xa3\ -U\x7f\xa0\xc3\xba\x0aT\x83\xb8\x84\xb7YQ\x152a\ -p\xde\xe3D\xe1\xa1{\xdc\xd7-\x80\xc05:\x0e \ -\xf4\xf0!\xb5\x8dk\x13\x1f\x02`\x18\xa9\xe3\x1ax\xa1\ -4\x80\x18\xa3\xce\xdc\xea\xc5\xaf\xa6\x0ajJ\xa4n\x95\ -j\xb6\xac\xadN\x8a\xcb\x12u\xab\xcc\x06\xf1\x99X\x95\ -V\xf9>mi\x96(\xfe\x80d\x95SkbG\xe5\ -\xce\xae\x7f/\x00\xc8\xe5\x7f\x0b\xa6\xef\xe3&q\x89\xf3\ -\x8f\xadx\x01\x99\x7f\xc8\xcf\x0c\xec\xa4\xb6L\x1d\x02\xaa\ -\x1dR8\xed\xba\xb9\x0a)\x22\xee\x8e\x90N\x01\x88\xbc\ -\x89\x13\xc0s\x93\x07;3\xf5\xf5\xab\xbe\xfa\xd8j6\ -\xd5\xdc\xf1)\x16\xf6\xc4j\xd6\xef\xe3r\xf9\xdb\xe2u\ -\xe2\xef\xb1\x95L\x1f\xa0|\xb5RQ3jdt\xd7\ -\xf2G\xbcfV\xf9\xc3;\xae\x99\x85\xd6+\xc2\x5c+\ -\xab_\x0d\xa3\xe1-X\xbd\x0a]\xdc9H\x03\x80O\ -\xd9\xce(\x04M\xaeUm\xd8\xf0^\xb9\x84\xc3\xe8\xa8\ -Z\xb2\xe1\x01\xc88\xc4e\x82\x90C1sm\x8f\xf7\ -w\x91\x9f\x0f\xadX\xde\xcc\xae\x95\xae\xdc\xb0\xea\x9d\xc7\ -\xd6x\xf4\xce\x9a\x8e\xbe\xb2\x06\xbcV\xed\xf6Wx\x83\ -/Q\xd2;+\x99{\x89\xc5\x12R\xe5a\xb1j\x11\ -JM\xfbj\xeb\x5c2\xa9\x9e*v\xdc\x16\xeeFm\ -\xfeP\xfd\xbf\xc0\xcau\xba \xab\xdc\xab:\x8e\x85\xe4\ -\xdd\xc6\xafaH\xb7\x01\xc0c<\xcf+\xab$\x04\x96\ -\x09h\xb3\xaf\xf8\x9b\x07\x82P\x1f\x9e\xbc\x87\xd0\xda}\ -\x02\x7f\x01\xb0\xf0\x8a\x00\xbcLaZ\xba\xca\xd0\x0c,\ -\xde&&\xb5\x05\x14\x8a\x08\xb6ijV\xb5\xf1|P\ -\x08\x17\xa3\xd6\xec\x1a\xa2\x03\xa5]/~\xe2\xaak \ -\x0dR]\xcd<\xaf\xaa\xa1\xd7\x97\xa9\xab\x95f\xf5\xb4\ -ARiYD\x00`\x10\x05\x80b,\xbf\x14\xe5\x97\ -.A\xee\xd4\x1eN\xfb\xea&D\x02a\xb8}\xc4\xe9\ -\x9ey\xf3!\xfe\xdeE\x00H\x0a:\xb4\xc1\xa0o\xe3\ -AP\xe8\x14\x8a%\xaf.\x9dG\xc9\xf3G\x0c\x22?\ -3\xd8\x85\x13\x1b\x967\xba\x82R\xd5\xe4q\x9etl\ -\x8eM\xb0u*T\ -\xads/\x90\xc9\xb1#+\x9a9\xb32\x08s\xc5\xd2\ -\x0b+[|\xc58\xbdp\xcb\xd0\xd1\xe1{x*\xc2\ -E/\xe9q7\xf7\xdc\xb9cA\xb8G@\x04]\x99\ -\x10^'M!\xa7y\x854\xb0^\x85\x89\xdaf\xa4\ -\xc5\x07m\x1fRQ\x08\x08\x87\xf5\xea|\x1e\xb7y\x81\ -\x87\x96\xf2\x1dq\x91\x8b:\x97\x7f(\x9e\xcf\x00\x1am\ -x\x14p4\x80\xf2\x00J!\x8bp\xf9%\x0bZ5\ -\x83-\xabJv\xfe\x14>\x009\x1c\x96\xf5\xcds\xad\ -I\xd8/\x0f\x8a\xa4wL\xf0]\xda#8\xcfC.\ -\xe1rQ\xf0\xf0\x0a\x0a]\xe6u\x09E\xcc\xa3\x04\x06\ -\xbc{\x02\xf76\x02s\x1f \xce\xf5\x11\xe7\xd4y\xc4\ -;\x1f0\xd0>\xc2\xdf\xa7\xb0\xd6E\xcb\xd3Z\x06\x9e\ -\xa1l\xde\xdbgX\xb1$\xc2\x86W\x9a\x91\x85\xe3\xca\ -\x07\xbd\xa6\xd8^\xd3\x06\x89\x9e\x93\xe7\xd6^{\xbcb\ -\xa6\x04\xcf\x18D\x14\xda4\x85\x9d\x85k\xf6\x8e\xc3_\ -\xc2\xcd\xce\xf1\xf7Y\x9ew\x09\x00\x008\x00Z\xbe~\ -\xc7jv\x9e[\xdd>\xbc\xe5\xe0s\xb2\x97\x0fV\xbb\ -\xf7\xde\xaa\xb4=}\xfd9!\x01\x0f8\xa7\x19K\x19\ -\x17\xf1\x9e\xefImV\xe5\xce\x08\xe4\xd4\xebQ\xa0\x96\ -o\x92$\xde'\x93\xc7\xa7\xd6\x0c\xc2\xf2\x87]Q\xad\ -\x8ak\x83x\x1e5\xb7\x88\x02\xa0|xS\x91:\x88\ -\xc3\x0b\x94\x09\xe5\xcaS\x11\xa6Bx\xf6,\x9e'\x88\ -a\x070RM\xcc\xb9\xb2\xf7\xa69/3Bt\x22\ -Y\x8c+(lPQ!\xbf\xe0\x03\xaa\x1fO\xd3\x9e\ -s\xe5\xa0\x8e\xb1\x92\xca\x10\xdb\x03\xae\x94\x89\xdf!\xf2\ -\x14\x19\x9a\x82\xd5\xf2\xa568\xa0t\x1d\xe5\xa2\xe9X\ -\x1d\xe0\x10\x86G(gU_`\xf5\xd1-Y\x90\x00\ -\x86\xb9\x1b\xc4\x7f-\x07\xaf3\xa8s\xe4\xe7\xda\xec\xd0\ -\xcf\xc3w\x83\xfe.\x88Y\x0f\xee\xaf\x0f\xef\x82b[\ -\x87@\xec\x88Sh\xa0\x8d\x87o\x1d\x84\xad\xf7[Z\ -\x83z\x0duZ\xb2:\x96W\xb5Z\xa2\x9aV#I\ -\x95-\x96R\xd3\xce\xdf\x01\x02\xff\x17\xec\x99\xe1:\xab\ -\x90\xb0\x1d\xee\xe1\x18\x00B\xd4\x96\xe1\x09\x80\xb0H\xc7\ -\xdf\xc2A\x94[\x0b\xe0\xeeH\x15\x18tj\xf3\x85\xe8\ -\xac\x80\xab\x8c\x83J\xb77\xf9>\xb9|o\x1cT\xe7\ -\x97\xa5R\xf8\xdeU\xbc\x0698 \xcd\x19\xbbJ\x96\ -\x84WZ8\xb1\xd2\xd5;V\xb1\xf9\xc4*\xb6^X\ -\x05\x84\xb0|\xeb\xb9\x95m<%\xad}HVs\x0f\ -\x90\x90\xcbO\xebtvyY\xf1)\x18\xbb\xac\x9f\xec\ -D\x15O\xae\x96Q5\x8c\xc5:\xf9\xb3\xcd\x92J;\ -\x5c\x05uje\x8f\xa9\xb9Uz\x1d\xe3\xd0\xc0\x984\ -Ox@\xe8Z\xb1\x08\xa9x\x0e\xe19G\x13W\xdd\ -\x90pt\xa4\x0c(\x80>\xfd\x84\x93\x0c\xa5\xbb\xa4\xbd\ -idCi\xa4\x8b*p\xf5\xfa\x14MY\x8c\x8a\x11\ -\xd5IJ\x1d=\xdc6\xe4\xa6iWb\xec\xd5\x06\xc2\ -\xec?M\x96(\xdf\x07\x10X\x80\x8fTI\xadY\xb5\ -\x08\xa3<\xd5\xb5\x9b\x95\xe0\xfa\xb5\xef=B\x1c\x15\xdb\ -wm\xd4g\xd5J\x1dF?s\x0d\x8f\x00At\xca\ -'5\x93\xf2\xeb\xd5;H=\xeeZMG\xbaK\xf4\ ->\xa1\xaa\x8d\x1c\x96\x87\x97\x92\xcf%\xb1\x0a\xa9l\xc3\ -B\xf8{y\x0b\x83\xd5d\xf1\xa5\x8d\x16_\xd2\xe0$\ -\x91\x9f\x93\xf9L:\xdf\x19h\x1b'V/\xc2\x8c\xb7\ -\xdc\xa6R\xb5\xba)\xc1\xf3\x94\xcc{\x80,\x98Q6\ -\xa2~\xbd\x10[\xc0\x1b\xe8\xdc\xc5-n\x00\xbe5\x8c\ -a\x85X\xacs\x81\xb5cZu\xfb\x22j\x1e\x10d\ -\x0cZ\xaeU\xd1\x8b\xaa\x9f4\xef\x1e\xd1J\xe98\xfc\ -bj\x8f\x8c\x09\x02\xba\xc4\xb3\xaeB~\xd7\x1eX\xc1\ -\xda}\xcb_\x06l\x0b\xb7,:\x07y\x9bQ7t\ -\x91\xddm\xc2\x86\x88\x1e^\xb7U\xc5\x9a#\xa6vq\ -WT\xefX\xdcnW\x0a[\xbcR8$\xbe\xa8\xc5\ -\x12\x00D\x22@H*\x03\xf8\x15^\x8f\xe6Tu[\ -\xa9\xed'\xc5\x1dB\xc9c\x16 \xc3\x094M:\xf1\ -7jC\xcb\xb8[DJQ\xfd\xa0\xf6a \xae\xef\ -\xa2\x0b1^\x95\xb1\x9aG\xc6\xa8s\x94\x8eEI\xa8\ -\x1d\xb4\x04\x95\x86\xabq\x82Z\xb6\x02\x04U\xc0\xea|\ -\x9b\xcc\xf3R\xf0\xa0\xca\x9b\xfbq\x95}\x00@\x84P\ -=\xfd\x1c\x08p\xa5\x00A\x04R\x05\x92\xea\xa1/\x92\ -\xa7\x9e\xfbE3zU;\xf8=\xcf\xf2q\xef\x19(\ -H-V\xd5~5\xa1R\x1b7\xb4\x89\xe3w\xe2j\ -\xf9\xd5\x91\x5c\x070#:\xf9\xda\x89\x8aC\x9b\x90\x06\ -\x8b+\xaaGj-\xae\x10\xe15Q=\xff\x00\x80\xbf\ -q\xc8B\x9ds\x96;\xb8I\xfc?\x81 \x9eY\xf9\ -\xe2]\xe4\xbe\xcb\xd7\xd5\xd7\xbfp\x16\xc5\x90\x89hU\ -/J\xda\x1b\xd614\xc4J_\xdb.\xdeg\x8bp\ -x\x15R\xa6\xca!y\x82M\xc2\x9d6r\x88\xf9\xc3\ -\x11x\xc6\xc8\x90\xea\x1bD\x1a\x05\xe8m\x9ey\x0bv\ -\xbema\x94\x9b3K\x16\xb3p\xc3r\x90\xc8<\x06\ -1E\x18\x81\x8f\xf8\x87\xc8\x92\x08k\xbe>\x9e\xbf\x9b\ -\xcc\xa9C%fcn\xcc\xe3\xb0\xecX\x5c\xbe;C\ -X\x00\xd0)\xe2(^@\x88E\xe2\x0a\x19\x13^\x05\ -\x06w.p\x89\xc0\xdf\x04\xe8\x9b\x01D\x1b\xde\xa1\xc3\ -\xd2\xaa\xba\x10y\x89^KE\xd4\xf1,I\xfb<\xdc\ -^\xc1^\x070'\x15\x12t\x8e\xc4\xf1>F\x9b\x09\ -]\x17/\xd0\xa4N\x9c\x89 *\xd1\xed\xd2\xc5]h\ -\x07P'\xc4\xcc\x9d\x12\x86\xdb\x1bX\xc7\xda\x89)\xb8\ -.\xd7\xb3\x97T\xc8k\xd2\xbcK\xfc\x17\xa9\x22\x03\x18\ -:t{\x05r\xc7\x8f\x19\xe0#H\xc9>\x84\x85\xc1\ -\x19T\x87m\x1e\xbe\x1d\xf7\xd34lI\x5cO]-\ -\x13\xb4e\xab\x02/\xa0\xf3v\xcf\xc5\x9d z.\xee\ -\xe4kU\x03\x970\x08\xeaiX\xd4\xc8\xa0\xd4Yl\ -A\x0dRmW\x0a\xd4\xa5\xb3\x0awYg\xa9U\x1d\ -\x96\xd9\xa5T}\x10\xc3\xc1\ -[x\x0d\xf8\x03\x1e.gD\xab\x84\xaaoPg2\ -\xed\x13P\xe7\xd2U\x0b\x0c3>\xda\x96>\xca\xf8@\ -F\xd3\xfb\x16,\xa5\x0b\x86\x0f\xe8\x93ZG,\xa9\x99\ -go\xc2\x12\x09}\xf1\xb5\xbd\x16\xc7\x18\xc4a\xd5n\ -;\x5c\x09\xcaw\xd2\x06\x10$\xaa\x89$$\xa86\xb2\ -\xa8\x0d\x01\x14<\xff\x15\xc0\x7f\xa5\xb8\x8e\xf1\xa8\xf7\xbc\ -\x1f`H\xc2P\x92\xca\xf0\x9a\xe5xL\xb7\x0b\xaa\x07\ -\xe5kM\x80q\xbe\x98\xfc\x92\xa8\x18\xd6UCK\xfa\ --\xc6\xf5\xa7\xe3&\xd4\xc6\xcd\x9dD) \xd4\x0f\xe2\ -\x0aGp\x7f\xe3(l\x1ab4G\x1a\x02\x0b\xedU\ -\x1bw\xc8D\xcf\x92\xeb'\x94\x0e\x19r\x0d\x14H\xa5\ -\xdcA\x93\xa4S^\xd9\xb8\xd2\x15/\xe5\x0a1(j\ -;\x17\xe8\xd4\xa6\x0a\xe2P\xb3&`\x04\x00\xb9#\xae\ -\xa5\x9bts\xd6\xbf\x13\x1dq\xae]\xbc\xda\xc6\xed\xca\ -\xba\x19\x00\xed\x09\xc0\xfac\x0b\xeb=\xe5\xe7W\xd9\x95\ -\xbc\x0a\xa4\x9c\xf7\xe5\x00\xa0\xc6\xd2\xe1\x00\xd9m\x13V\ -\xc0u\xcbI!k\xc8:\xea\xd6\x9e[-\xe4\xabZ\ -\x1d\xcbI\x9bJ\x01@1,\x5c\x9dIu\xf2\xa9\xe6\ -\x1b\x0a\xd4\xe6\x1d\xce\xa2^>\xca\xd3\xb3\xfan\x00z\ -\xbc\x82\xaa\x92\x06\xcfH\x81\xd5\xd7\x87\x94Xs\x01\x00\ -@\x8bG!\xb2\x06\xad\x0dhu\xd4\xf58\x86\xc8\xa5\ -\xb4LXJ\x1b\xaf\x1d\xa4r\xb2p\x94\x9e\x88\xc2\xe3\ -\xeb\xb1\xf0\xda\x1e\x8b\xad\xe9\xc2\xdaQ(!-\x8ep\ -\xa6S\xcau\xa2xl\xa9\x94\xad\xe3\xe3\xbd\x9dM\x92\ -\xcb\x02B\xa9\xceg\x00$\xa5}\xbc\xaa`V\xbd\x0d\ -\xf47m\x81\x03\x08\x88N\x0bw\x07K\xab\xd1'\x06\ -#\xe2\xa8-\xe2\xaet\xfc|\xb2\xcbkE\xa7\x02R\ -@\xa8=\x06U\x84\x80s \xc4\xa8\xf7\xbf6M\xba\ -\xe6\x81\x17[\xb4\xd5\xd0I[\xb3\xf1\x06\xa9M#\xc4\ -\xc7Q\xdc\xf6\x18\xe4O\x9d9!\x14(3\xbd\x93\xfc\ -_\x8d\xa5.N\xe0\x22LHt\xea\x96\xd2\x15\xb5c\ -\xf1\xb7\xcd\xc2\xd4\xb5\xab\x96\x98\xd44\x06\xfb\x1c5w\ -b\xa7<\x0c\xae/Y[\xc0\xb5\x07Q\xcd\x0c\xb4+\ -Y\xe2b\x94\xe6\xb1\x85P\xdc\x15 p\x00`p\xdc\ -\xce\xa0\x025m\xac\xb6\xd8\xdcJ\x8b\x8d\xa2\xfc\xdc2\ -\x8b\x03\x00I%\xb5\xe6\xab\xed\xb4(\xd6V6\xb6g\ -u\xb8\xfc\xe6\xab\xaf\xadu\xfb\x0b'M\x9b\xef\xadv\ -\xed\xb5\xe9\x8c\x1d\x81\xa0\x88<\xba\x80\x10\xe5dJ\x8b\ -^ZA\x94ruT\xccM'\xe1\x11-\x19k\xea\ -\xf5\x09$\x0f\xd1\x8a\xe5\xf8]\x97\x16fA\x1e\xfd\xb0\ -k\xb5sMR\xf95\xc0\xf5\xf6V\x22\x0am\xb5\x12\ -\xbc\x18\xa0\x8c\x85\xa0^\xa9\xd0\xc6\xd5\x06\xbb\x5cV\xef\ -\xe4J)\xafX\xef\x15\x81\xbaX\x96\x8d\xe0\xe1\xae\x10\ -\xea.c\xcdZ\xb2\xbdR\xa6\x15\xbc\x01\xaf\xaa\x97W\ -\xb7\x9a\x87\xb7P\xb7\xcf+Xz\x1c\x96\xee6\xbcJ\ -\xe1\x8c\x9d:\x84\x88\xdc\xb9\x13\xd7!\x80iJ\xf9\x5c\ -}\xa1j\x0c\xe0\x1bM\xda/\x00\xf9\xd3\xfe\x82*\xc6\ -\xb9R}\x02\x89\x0bj\x11\x9b\xe4\xbc\x00\x1e@5\xfa\ -\xe7\xa2\x8a\x91d\x00\xa1\x06\x8f)\xda\xc0\xd10\xe8\x00\ -q\xd1\xcd#\xbd\x1d2\x87\xa2}j\x00!\xe9\x00\x10\ -\xe4\xab*\x16I\x87P\xa6\x83\xc0t\xd2\x9b\x0c\x09D\ -'\xa3\x01 \xa9\xbc\x09Ik\x10:E\x04G]\xbe\ -+q\x1d-.r\xe1\x0b\x008f\xcc \x16\xe1\xfe\ -\xb5K(\x0f\xeb\xcf\xad\xb28\x00\xe0$\xaf\xd2\xe2\x09\ -\x05\xc9e\x8d\x16h\xe8\xb3<\xbcT\xd5\xf4\xb1\xb5\x5c\ -}f\xdd\x07_Y\xff\xb5\x9fl\xe0\xc6/\xd6\x7f\xfd\ -'\xeb:\xfc\xceZw\xbe\xc0+\xbc\xb2rMH\xc9\ -\xf2U\xd9\xab\xb5\x07\xc4\xcd\xad\xbb\xa5d\x08\xe2\xa8W\ -\xfe\x95\xaf\x0a\xa5\xf9\xd7V\xbc\xf8\xc6\x8a\x17^Af\ -\x9fZ.\x9fQM\x83\x96\xbbS Rj,\xe9\xdc\ -\xb3\x00\xeav:\xc3Q\xca$\xb8\xe9\xb2\x1a\x94]\x85\ -\xb2+\xedRq\x85'E\x95\xc4\xf8j\x040\xe3\xd2\ -\xb5\x1fB\xa2c\xebuZ\xa9\xb7\xe3\x19\x00`\xcd*\ -\xe2p\xe5\xe9H,\xe9`,\xc6)\x89\x97\x07\x15\xc9\ -\x83\xe1\xabg\x80*\x8a\xd5\x03\xc0G\xb6\xa2\xce\xef.\ -=\xd7\x8a\xa8\x13\x11X\xad\x8a\x02\x08M\xdei1\x8c\ -\xb1VG\x91\x98\x14\xbeT\x1d)u\xfc\xfa\x85\xb83\ -\xef\xcf\xdd\xb3v\xd4&\xba\xb3\xf0\x11\xd7\xf2\x15\xb4\x91\ -\x93\xea\xfc_50T'\x0f\x9f:j!R\xbej\ -\xd9\xd4L!]\x8b,u\xe3\xe6\xab\x1bs\xe2\x87\x95\ -\xfa\xb5\xcbV\x0c\x15I'\xeb\x10\x08R\xe5\xa6\xceE\ -uj\x0e\x08nO\x9c6n\xf0\xa0\xe7\xa9\x91\x068\ -V\xbb\x84\xf2\x19\xd4\xbcZ\x8b\xcf\xab\xb3x\xde\xc7\x17\ -\xeaL\xfdF\xe2\x7f\xbb\x05[\x86-\x7fp\xc5j\x16\ -nZ\xc7\xeek\x14\xff\xbd\x8d\xde\xf9\x93M\xde\xff\x0b\ -\xf2O6v\xfb7\x1b\xbc\xfe3\x7f\xfb\xda\xeaV^\ -[\xa9V:\xc7\xceP\xa8\x94O\xe6\xa2\xe5or\xe9\ -\x82I\xd5\xfd=\x810\xbe\xb4\xd2\xa5\xf7V\xbe\xfa\x95\ -\x95\xaf!+\x9f[\xf1\xfc\x0b\xcb\x1b\xbb\x0d\x00v\xcd\ -G\xea\x9c\xaceV\xc5\xe7|\xac\x99\xfb\xba\x22\x80\xe6\ -\xe3\xa1\xc4M\x0a+\x01E\xb9]*(\xb5\xcf\x0aJ\ -\xec\xff\xc8/\xb6\xcf\xf2Kx_\xc6\xef\x00\x81B\x19\ -\xf7\xef\xb6\xbd\xb9\xddO\x00\xe0|w\xf3\x15m\x93\xc7\ -8\xa5\xf8x\x94\xa5\xbd\x09\xf1\x8ca\x1cc\x96\xc0\xf8\ -%5O[\xaa\xb6\xb4\x93\x96\xaa\xdd\x5c\x96Rp\xbc\ -\x96j\x17\xb3\xdc\x11{\xea\x18Jz\xde\xab\xad\xe8{\ -xf\xa5\xb2\xab\xaeXG\xfaIS\xdf\x07\xc6<\xc6\ -\x1d\x09'+\xc4%\xbb\xd6\xae\x88\xb6\x86\xab\xe3D\x12\ -\xe8s\x1cAa\x02Q\xd7n5l\xd6\xe6\xcaT\x14\ -\x95&\x104k\xcb\xb8\xb6Z\xc3l% L;n\ -3\x1a\xa6\xcd\x87{\xf4#\x01\x09H\xf5K\x88G>\ -\xcdnq\xf14\xae\xab\xefQgL\xed\xd8ueP\ -\x02\x01\x0f\xecR\x15\xc5)\x15\xach\xbf\x1f\xec\xf8S\ -\xff^$\xbe\x88\xd8\xc7\x80%\x12\x13\x93\xcb\xdb,\x0d\ -\xb7\x1bl\x1d\xb3\xbc\xa15\xab^\xbci\x9d\xfbol\ -\xe8\xf4G\x9bz\xf8\x17\x9b\x7f\xaa\x16r\xffl\xf3\x8f\ -\xff\x93M\xdd\xfb\x8b\x0d]\xff\xd5\xda\xb7\xbf\xb1\x1aY\ -\xf5\xc4#\xcb\x1b\xc1\xe2q\xfd*\x0a\x91\x07P\x9fb\ -\x9d\xc3S\xba\xf8\xce*\xd6\xbf\xb1\xaa\xad\xef\xadz\xfb\ -{\xab\xda\xfc\x06\x10\xbc\xb5B\xb5zQ\x06\x84\xe5\xa5\ -\x08\x00\x10\xb6\xd8|brn\x1d\x82\xc5\xe7b\xddx\ -\xa7\xcb\xf0\x93Kye\xf6Y\x1e\xca\xcf+F\xf4\x0a\ -\x18\x08Y\x97\x00\xc8\xe5\x02\xc8,^\xc3c\xf7\xda\xcc\ -\xaa\x0d\xac\x10b\xad\xe9\xe3\xd6]U\x10c\xa6\x1dC\ -I\xda4\xc2\xf5\xd4>.\xa5U\xedo\x08\xbb\xf0.\ -\x9d2\x1a\x06\xb4Q\xf5!\x9ay\xce\xeb3R\xcd\xc7\ -\x16\x19\xbbOv\x02\x7fqU\xc2\x00A \xe8\xd4v\ -\xb5U<\x01 \xc0K\xeb\x94\x96\x18\x1dh\xa0\xe3S\ -\xd3Z=\x05j\x81\xc7k'J*\xe8\xbaN\x11\x9f\ -a\x91\x02\xc3\xc5\x86JmLt\x00\xc0\x8au\x18t\ -:\xb9\xa7+-\x97\xebo&,`\x19\xb2\x0eu\xe7\ -\xcel\xbc\x10~\xe6A\xfc\xc4'\x1fq(]\xff\x0f\ -QQ\x8bV\xe5\xaa\x0e\x04\x00@\xd7U\x9f}\xed{\ -s\x84E[\xb9\xcaa\xb2e\x10B\xb7\xe9\x13 \xb8\ -\xadbJ\x15\xc9\x8f\x89\x85\xc9\x95\x9d|W\x8f\x05Z\ -\xd5\x81t\xd9\xaa\x16\xae[\xcf\xd1\x1b\x9b\xba\xff\xb3-\ -\xbf\xfcO\xb6\xf9\xee\xdfl\x0bY{\xf5/\xb6\xf0\xc4\ -\x03\xc1\xe0\xf5?Z\xfb\xce\xf7V\xb7\xfc\xc1\xcag^\ -X\xd1\xc4C,\x1b\xb7\x8f\xe4M>\xb4\x82\xd9\x17V\ -\xb2\xf4\xb9\x95_\xfdhU\xdb?Z\xf5.\xb2\xf3\xd1\ -*7>w\xd3\xday\xea\x0d\xd8\xb5\x0e\xd0\x89\xa9J\ -\xab\xc4\xd8\x0b\xb0^\x01!\x8f\xf8\x8e\x87\xd2\xb6\xf6\xcb\ -(Z\xcavR(\xe1wE\x00E\x8d/\xd4\x99\x9c\ -X\x9fX\xa6\xe6\xd0=\xa4\xb1\xfd\x96\xceX\xc8K\xfa\ -[\xe7,\xb3c\xd5\xed\xb1P\x15\x93\x8aB$\x01\x85\ -\x1eD\xb3\xae*V\x8dL\xdc\xb3\xfc\xb9\xe7V\xac\xb5\ -\x86\xb5/\xadd\xf5\x0b+Zz\xc7\xef^\x98\xaa\xab\ -\xd5\xa2.\xa4\xa6\xdb\x9a\xacS}\x81&\xf0:5\xdb\ -\xab)\xfc%\x8bq\xdd/5\x1f\xde\xef\x1dk\xaa\xc9\ -\x1eW\x97\x8e\xabH\xc5\x92\xbdmH\xda\x90\x88\x97\x10\ -\xc9@1\xeaJ\xe5\x1a\x16a\xc9N\xb4\x95\x5cn\x1f\ -\xe5\xeb\xbc^\x95\x85\xf9\x897\x01$\xb3\x05i\xf6$\ -\xd0\x041T\x01\x86\x00@\xacW\x9f\x80\x14\xc0\xe5\xfa\ -\xef\xd6\x9cw\xc1\xc2[\x88\xc4x\x1b\x17`\xd3\xb5\x0c\ -\xb0\x03\xc2\x10\x96\xc1@\xab\x97\xaf\xd2\xc3r\x08\x90\xd2\ -\x1dBS2\xe45\xb5\xae\x17\xee1d\xd9=sV\ -1{h\x03\xc7/m\xf9\xe9\xcf\xb6\xf3\xfeov\xfc\ -\xf5\xbf\xd8\xe1\x97\x7f\xb7\xf5W\xffds\x8f\x7f\x03\x18\ -\x7f\xb2\xd1\xdb\x7f\x86\x1f\xfcf\x1d{?[\xe3U\xbc\ -\xc1\xf2{+\x9b\xf7\xe6\xd3\x8bt\xf6\xde\xe2{+]\ -\xf9\xda\xca\xae~o\xe5\x9b?X\xd9\xe6\xb7\xbc\xff`\ -%+/\xadp\xee>dP\x99\x80V\xd9\x96\x1c\x11\ -L\x86Y'\xc0\xd6\xe3\x8aa\xeeE\xb0\xf5\x22b\xb8\ -B\x83\xbc\x03\x96-\xa6\xaf\x8e&jX\xf1\x0f\xf2\xd6\ -\xe7\x9e_\x86\x90\x81\xe7\x0b0\x86\xd9(%\xa7g\xc3\ -\xf2\x06\x0f\xac\x88\xb0\xa4C5K\xa6\x1fX\xf1\xf4#\ -+\x82\x84\xea\x90\xa8\xbc\xf1\xfbp\x16\x9dJ\xaa\xc3\xa3\ -^[\xd9\xea\x07\xab\xe4\xfe\xaa\xf0R\x95\xdb\xdfY\xd9\ -\xc6\xd7V\xb4\xf2\xfe\x13\x08\x94\xc1d\x13\x1eT\xec\x93\ -\xd9{@\xc6\x06\x90H\xdf\xd5\xe9-FK\x8b\x92\x5c\ -\xbdB\x88t\x14Z\x16)\x8e\x90\xa2\xf9~\xafF\xcd\ -[\xf9K\xc3\xa2\xd3\x9b\xd4C\xe7\xbc\x8f\x8e\xdc=\x1e\ -\xc3\xc5|Y\xbe\x0aBu\xaaV\x87\xb2\x00\xf2b\x80\ -\x94\xc9wh.Z\xb5\x81\x22M>\xbeK\xd5+\xa9\ -R8^%\xd9\x91P\xb8\x07a\xc5\x01Lupn\ -\x87\xeb<\xa2-O\xbc\x0a\x0c\x80\xce\xb1W\x97!\x88\ -\xa3\x88\xa8B^k\x19\xc4\xba>>\xd3\xc7\xfd\x0dr\ -\xcdI+\x1e\xdf\xb0\x9e\xbd\xfb\xb6\xf0\xe0\x83m\xbc\xfc\ -\xde\xf6\xde\xfdd[\xaf\x7f\xb0\xb9\x07_\xd9\xf0\xe9\x17\ -\x84\x86\x8f6t\xf6\x8b\x0d\xdc\xfa\xcdz\x00A\xfb\xc1\ -/\xd6\xc4\xc0\xd5`A\xe5\x00\xa1\x84\xb8_\xb2\xf2\x85\ -\x95\xae\x7fk\xa5\x1b\xdfY\xc9\xc6\xb7V\xb4\xf6\xc1\x0a\ -\x96_X\xee\x9c\x8a8U\xc4\xa2\x85\xa3],t\xc3\ -2\xdb\xd7\xf0x\xb0\xecZ\xf2\xfd\xea\x09\x94\xab\xedm\ -J\xb7\xc4gd8\xda\xc8y!c\xa6^\xca:\x80\ -J\x9e\xd3\xa7\x9eCx\xe0l\xc6L\x8aW\xef\xdf\xb2\ -\xc9S\xab\xc6\xcb\xd4\xaf\xbd!{\xf9\xc2\x9a\xb7\xbe\xb6\ -\xa6-\xd5=|c\xf5\xeb_Y\x0d\x0a\xafZA\xb0\ -\xf6\xaa\xf5\xaf\xadz\xf3\xa3\xd5\xec\xfc\xe0\xbcT\x15\xaf\ -\xe5[\x1f\xadd\xfdK+\x5c|ky\x00:g\xe2\ -\xb1\xa9\x862\x9bP\x97\xad\x22\x95\xe1\x1b\x08\x1el\xe4\ -\xba\xc5\xe8(2\x15|\xe4\xcf=\xb2\xfcY\xefT*\ -\xd5\xbe\xab\xc6N\x85\x94Z\xb7\x16\x18$\xaa\xb3\xcbt\ -\x8b%0L\xadY+\x07V\x9e\ -B'\x89\xe7\xe9g\x17W\xdb\ -\xa7\xb9\xcb]\xc8DP\x04* 0\x85\x1c\x05E\xa0\ -\xc4\x04\xde\x03!\x00\xe7%8\x9fB\xaa~\xccn\x05\ -h\xc2x\xdaF\x04\xd49$7\xd1\xdf\x06\xf6\x9d\x12\ -h\xf2\xec\xbe \xe5e\x08\xe0}\x04\xfd\x1d\xb2\x03|\ -\x00q'\x04\xd2\x80\xc6\x0e\xc6\xa4[\x8c\xa9r\xbff\ -\xd1\xb7\x01\xbcr?\xa1\xbe\xcc\x1a\xcb\xe4\x9c\x8c\x00\x9a\ -y9\xa0o\xa1?\x06\x197\x87\x1d\xe8\xea\xce!\x1b\ -n\x12\xed7\x12<\x8b!\xf4\x880\xcb\x04\xf4c\xc8\ -$\x10\x12\xde+<\x9e\x9c+^$$\x91\x18\x02G\ -\xacg\x81\x1e;\xd0C<\x02j\xd0\xc3\x90\xab\xc03\ -\x11\xf1\xb2*\x22\x1c\x91\x9a>;&\xf0m\xd2\x89X\ -\x14X\xf3\xa3\xee\xb3\xecdB\x8e\xd9\xb9\xd1\xd6\xc9@\ ->\xfa\xb5\xf3\xf5\x84\x90\xcf\x8a\xc0\x84\xdb\x87\x8e\x0f\x16\ -\xde\xdbiw3\x00\xbd\x0aI\xd9\xbe3\xc3\xe1,\xfd\ -\x8e\xa3\x96G\xbb,\xd8#y\x03d\xcc\x04\xf6LI\ -5\x15\xf4\x18\xcd\xc8!\x81&\x13x\xb2\xb0G\xa8\x98\ -\xd7\x97J\xea\x93v5\xda\xdbu\xf0f\x14\x07\x92\xfc\ -\xb1y\xcd\xadt\xa3\xf6\xa1\xb7\xd0\x1e\x08\xf6HR9\ -\x17\x9d.Q\x88JMX\xe3E\x11\xc8\xf9\x91\x84\xf7\ -6\x92\x90d\xdf\x972\x84\xd10\xd7\xf9\x22\x02'^\ -\xd7?\xed\xed\x0f\xbc\xcbE!\xdb\xbc\xce\x86SF_\ -w\x8ev\x01Hy\xe1\x9cN\xb5.\xcf\xf0\x0d\xfa:\ -G\x83\xaa\xe2\x16:\x1d\xdb\x0d\xe0\x5c\x0f;d\x81\xc7\ -k\xf3\xee\x13\xb6\xb6_\x18x\x11B\xac\xd8\xfc.\xa5\ -\x1f`t\x8aZ\x1d\xe5v\x8c\xd0M\xa6#$\x9db\ -1&\xcfu\xde\xb2q\x9f\x90\x9d\x86\xbe\xbd\xe8<\xc7\ -\xfb2\xf7\x0f\xe6\x1c\xe5c!G\x1c\xdd\x88\x0e\xe8\x1a\ -\x85\x8f\xea.\xef\x842G\xf0z\x99e\x88\xdb\xbc\x96\ -\xabn\xecx\xf1_\xa0JA\x0d\x0a\x0d\x0a Icons / Noti\ -fication / Error\ - - black\ -\x0d\x0a \x0d\x0a \x0d\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a\x0d\ -\x0a\ -\x00\x00\x01u\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x01\xd0\xa2K@\xfc\x1f\ -\x84\x81\xfc\xff06\x10\xbf\x02\xf2\xe7\x00i9Z\xf8\ -\xd8\x02\x88\x9f\xa3Y\x08r\xc0_4>\x8c\xddHM\ -_G\x00\xf1?\xa8\xe1 \xfa/\x0c\xe3\xe0\x83\xd5\x02\ -\xf1\x1a \x9f\x91R\xcbA>\xff\x87\xc7\xc7\x84\xf83\ -(u\xc03\x12-\xc4\x16%n\xe4\xc6{>\x11q\ -N\x8c\x03\xae\x93\xeb\xfb\x8b0C\x09\xc49!>\xc8\ -\x0c}r\xf29H\xe3?\x0aC\x00\xc6\xaf!\xd5\x01\ -\x0e\x14Z\x88\xce_C\xaa\x03B\xa8\xec\x80\x03\xa4\xc6\ -\xbf\x0f\x09\xf9\x9e\x984\xb0\x95\xd4\x10P\xa7r\x08L\ -\x22\xd5\x01l\xd0\xb2\xfd?\x95\x1c\x10@N90\x9b\ -\x0a\x0e\x00\xe5\xa2\x9f@\xccDN9 \x0d3\x84\x82\ -4\x00\xd2\xdfBIQ\x5cOa\x08\xdc\x01\xd2\xcc\x94\ -V\xc5k\xc8t\xc0\x1b _\x99\x1am\x01F \x9e\ -\x81\xa5\x01\x82+\xceAl\x90\xcf\x95\xa9\xdd\x1ar\x07\ -\x1az\x13\x9a\xaf\xe1\x8eA\xe3\xff\x04\xc59\x10\xb3\xd0\ -\xb2=\xa8\x0f\xc4\xb5@\xbc\x16h\xd1! \xbd\x1d\x88\ -\xa7\x00q \x90\xcf\xcc0\x0aF\xc1( \x11\x00\x00\ -\x90\xbf\xd0E\xdf\x04S\xa8\x00\x00\x00\x00IEND\ -\xaeB`\x82\ -\x00\x00\x02\xaa\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x02qIDATx\xda\xedWMHTQ\ -\x14\xd6q,\x0c\x1db\xd0d\xa86\x814!\x11A\ -\x90\x92H\x14\xc4@\xaef\x11\xb5\x10l'\xe4l\xc4\ -\x85\xcb\x1aA\x88@\xc2E0\xad\x1c1h!\xd3\xa6\ -\x7f\x9a\x84\x90hg$$\xb6\xa84]\x88\x039\x8b\ -\x18)g\xf2;\xf0=8\x5c\xdfLo\x86\xb9\xd2b\ -\x1e||s\xcf\xb9\xef\xdes\xbew\xce}o\xea\xea\ -jW\xed*\xe3\xba>0\x14\xbbq3\xf6\x07w\ -\xe9q\x8d\x8fN\x00\x15+\x80\x88E\xbe\x0f\xe0\x97\xe0\ -\xa8\x11\x80\x1f\xf6\xcfF\x9f;\x9c\x01\xb7x\xad\x01\xd8\ -\xafJ{\x82g\xc0>\xbd\xc9)#\xab\x84\x11D\x08\ -\xf8i\xcc\xd9\x06\xcex\xad\x01U?\x82M\xa0IG\ -\x16fF\x1b|\xdb\xc9\xa4Qc\x81n\xd8w\xd4I\ -\x17\xf5\xda\x05\xac\x15\xb9oM6\xe7>M\xfa\xe60\ -#{\x0c\xf4\x02\x05\x8e{\x8cM\xae\xd1>\xec\x92\xa1\ -S\x039\xad\x00~\x1f\x06\xb6\xe8\x93\xb5\xbf\x01\x1b\xc5\ -\x14Hq<\xa0\x14\x09\x19\x1b\x9d.QK\x17E)\ -c\xfe\x0b*s\x8f\xe3\x1f\xa5\x14H)\xdb]\xda\xa4\ -\x00\x0fU\xd8A\x0f\xb8\xc6;\x8e}\x12\xc0?\x15P\ -\xf6I\xda\xbfK\xa1\x96\xd1UG0\xff53\x9f\x07\ -\xfbio\xf0\xac\x80\xf2\xddR5\x91\x04\xce;\xad\xa7\ -\xe6\xc8\xc2\xb2\xe9%9%\xd5\xf7\xc1}\xa0\xde\x98\xe7\ -]\x01\xe5\xef\x90\xd7\xadz\xcfK\xab}\x05/\x81\x97\ -\xc1\xeb\xf2\x1aV\xfeW\xe0\xb3.\xeb\x94\xaf\x80\x91\xe9\ -1`\x10\x90#y\x1e\xf8\x04,\x00r4'\xe4[\ -\x10h/q\xbf\xd4\xc0\xaa\x9b\x02'\x9d\xc8-\x7fU\ -\x1f\xe49\xb1G\x01\xe9\xe1\x1d\xf6\xf0\x09Ko\xd2\x03\ -\xc0C*\xbd\xe06a\x92\xcf\xf0\x17x\x0e\x9c\x06\xa7\ -\xab\xc4o\xc1\x19U#}\xc5\xa2\x1c\x01\x16Y\xa9\xab\ -U\xc6\x0a\xf0\x1e\x88xyV\x8d\x98\xd8Xe\xf6\xff\ -\x97\x7f\xf7v\x01&\xc7\xb3\xa0\x90\xee\xe83\x00\x00\x00\ -\x00IEND\xaeB`\x82\ -\x00\x00\x02\xae\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a Icons / Noti\ -fication / Warni\ -ng\x0d\x0a \ -\x0d\x0a \ -\x0d\x0a <\ -polygon id=\x22Tria\ -ngle\x22 points=\x2212\ - 2 22 22 2 22\x22><\ -/polygon>\x0d\x0a \ - \x0d\x0a <\ -/g>\x0d\x0a\x0d\x0a\ -\x00\x00\x06\x8c\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a Icons / Icon\ - Grid\x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \x0d\x0a \ - \ -\x0d\x0a \x0d\x0a \ - <\ -use xlink:href=\x22\ -#path-1\x22>\x0d\ -\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x01\x12\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x00\xd9IDATx\xdac`\x18\x05\xa3`\ -\x14\x8c\x82\xa1\x06\x22\x13s\xd9\x818\x15\x887G$\ -\xe4\x5c\x00\xd2\x87\x80\xb8\x1b\x88Uhn9\xd0BG\ -\xa0Eo\x80\xf8?\x08\x03\xf9\xffal(\xbf\x87\x96\ ->w\xc2b\xe1_4>\x88^F\x0b\x9f\xb3\x03\xf1\ -k\x98\xa50\x0c\xe4\xff\xc3\xc2\x07\xa9\x09\xa2\xb6\xefS\ -q\xf8\x18\x17\xff4\xb5\x1d\xb0\x91D\x07\x800\x0f5\ -\x1dp\x9e\x0c\x07(R3\x0d\x1c\x84&\xb0\x7fD\xa4\ -\x81\xbf\xd0t N\xcd\x10\xe8\x221\x04^\x011#\ -5\x1d\xa0\x04\xb5\xe0\x1f\x91\x0e\xe8\xa0E9\xd0Cd\ -9\xf0\x0c\x889hU\x18-\x83\xc6/,4\x90\xe3\ -\x1cl9\x90V\xa1u]\x10\x04\xca\xe7hE1(\ -\xce;\x81|\x0e\x06z\x01P>\x07Z\xa8\x08\xa4\xc5\ -\xa9\x9a\xe0F\xc1(\x18\x05\xa3\x80\xde\x00\x00*\x106\ -\x97\x13c\xdc\xaf\x00\x00\x00\x00IEND\xaeB`\ -\x82\ -\x00\x00\x01\xf5\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x01\xbcIDATx\xdac`\x18\x05\xa3\x80\ -D\x10\x91\x90#\x06\xc4\xd7\x80\xf8jdb\xeeU\x10\ -\x0d\xc47\x81\xb8\x84.\x0e\x00Z\xaa\x02\xc4\xffA\x18\ -h\xe9\x7f\x18\x1b\x88\x17\xd1\xcb\x01\xcaH\x0e\xf8\x8b\xe4\ -\x80\x05#\xc3\x01@KU@A\x0f\xb5\xfc\x1f\x88\x86\ -\xf2\x17\x8c\x98(P\xc4\xe1\x80\xf9\xb4\xb4T\x0e\x88u\ -\x81\x16j\x01\xe9(\x1c\x0e\xd8\x0b\xe4k\x00i\x1d(\ -f\xa1V\x9c3\x02\xf1mX\x96\x83\xc5?Z\x1a\xf8\ -\x8b&\x0f\xc2\xce\xd4\x0c\x01\x17\xa8\xe1\xff\x90|\x8c\x1e\ -\x02\xc8\xf2\x1bi\x11\x0d\xe9h\x05\x0f6\x07\x80\xe8\xab\ -\xe4Z\xc0NDtL'\xe0\x80W@Z\x92\x80=\ -L\xd8\x0cV\x06\xe27@\xc9\x07@\xba\x06\x14\xefx\ -\x1c\xb1\x17K9\x00\xa2\xff\x00\xf9\x16\xf8\xea\x10\xa0\xfc\ -J \xfd\x1c\x88\xeb\xd1]\xa5\x87V\xb6o\xc7\xe3\x03\ -\x1e \xbe\x8f%\x04\xa2\xf0\xe8\x11\x02\xe2gH\xe6\xcf\ -CW\xa0\x8b\xc5\xc0\xe9x\x0c\x94\x05\xe2\x1fH\x06\xb6\ -\x11\x08\xf6#h\xe6\xcf%\xc6\x01 ~\x00\x1eC\x9d\ -\xa1q\xbe\x94\x80\xe5yX\xd2\xcc\x5c\xf4\xf8\xd1\x85\xfa\ -\x069_\x83\xb2\xd47 \xadFA\xce1FJ#\ -\xb04\x03r\x08\xd1!\x00\xa2_\x03\xb1\x12\x99\x96\x7f\ -\xc0\x91k\x88v\x00\x8c\xff\x05\x88#\x88\xb4\x98\x0b\x88\ -\xab\x81\xf8/\x9er\x83d\x07\xc0\xf8\x17\x81t\x19\x10\ -\x9b\x03\xb1(\x90\xcf\x0b\xa2\xa1\xb9(\x06T%\x03\xe9\ -7x\xf4\x93\x94\x06\xfebI\x13\xc8e\xfd\x7f<|\ -l\xfa\xc9J\x03\xb4\xe2c8@\x9b\xce\x0e\x98\x8e\xad\ -t{KDeC-~\x18\xb6\xb2:\x84\x848\xa6\ -\x84\xbf\x1e_m\xa7\x04TT\x07\xc4\x13\x81x\x02\x90\ -?\x01D\xc30\x85\xfc. \xdfo\xb4k\x87\x0e\x00\ -\x0bqL\xd4T\x13W`\x00\x00\x00\x00IEND\ -\xaeB`\x82\ -\x00\x00\x00\xd5\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ -\xa8d\x00\x00\x00jIDAT8Oc\xfc\xff\xff\ -?\x03%\x80\x09Jc\x80\xc522\xffA\x18\xca\xc5\ -\x09\xb0\x1a@\x8cF\x18\x00{\x01\x9f\x86\xd8'O\x18\ -\xa1L\xac\x00\xa7\x17`\x80\x90k\xc0\x06\x10\xb2\x05\x9f\ -!\x04]\x00\x03 C\xb0\x19D0\x0c`\x00\x97+\ -\x09\xba\x00\xa4\x11\x9f\x17Q\x0c \xa4\x18\x1b\xc0\x99\x12\ -a\xde\x22d \xed\x922\xb1`\xc8\x1b\xc0\xc0\x00\x00\ -\x1d[2\xc1\xc0t\xc2\x0d\x00\x00\x00\x00IEND\ -\xaeB`\x82\ -\x00\x00\x00\xeb\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x00\xb2IDATx\xdac`\x18\x05\xa3`\ -\x14\x8c\x82Q0\x14Adb\xae:\x10O\x8eH\xc8\ -\xd9\x0f\xa4\xd7\x00q8\xdd,\x07Z\x1a\x0f\xc4\x7f\x81\ -\xf8?\xd0\xe2\xff \x1a\x8a\xb7\x00\xf9\xcc\xb4\xb6\x1c\xe4\ -\xf3\xbf \x8b\xa1\x96\xc3\xd9P~\x1b\xad\x1d0\x19\xcd\ -Bt\x07\xbc\x05\xd2l\xb4t\xc0~\x02\x0e\xf8\x0d\xa4\ -\x15i\x99\xf8VA\xe3\xfb/\xd4\xf2\x7f06\x10\xff\ -\x03\xf2\xbf\x02i\x11Z\x86@\x18\x81\x108H\x8f,\ -\xb8\x19\xc9\xc2\x7fH\x0e\x00\xf9^\x95\x1e\x0e`\x06\xe2\ -6 ~\x0b\xb4\xf0\x0f\xc8b >\x04\xc4\xaat-\ -\x8c\x80\x96\xb3\x81\x12\x1c\x90\x16\x1d-\x9aG\xc1(\x18\ -\x05\xa3`H\x03\x00\xac\xe7\x98*\x92\x10\x95\xa4\x00\x00\ -\x00\x00IEND\xaeB`\x82\ -\x00\x00\x03\x0b\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x02\xd2IDATx\xda\xed\x97MH\x94Q\ -\x18\x85\xd5i\x0a-\x17\xba0\xcc1!\x88\xc2(\x0b\ -\x92\x5cLFn*\x88Z\x05J(\xd3&*4B\ -\xfbq\xd5\xa2\xc2 \xa4\xb2_Z\xb4\x88\x8aP\x82)\ -\x22\xab\x85\x14Q\x8b\x16\x81\xf4\xb7h!\x16\x95\x05-\ -\x8a\x8a\xd2t\xea\x1c8\x1f\xbc\xdc\xee7)\xe9H\xe0\ -\xc0\xe1r\xee\xf3\xcd\xbd\xef\xf7\xce\xfdy'+k\xea\ -\x83O\xdd\x96\xa6\x1d\xd0\xc1\x10\xb6\x11\xba\x09\x1d\x0e\xe1\ -\xab\xa0\x1b\xd0\xb1\xdaDc\xae\x87/\x86\x92\xd09\xf0\ -\xc2\xb0\x00NC\xbf\xf0@\x9b\xed\x87\xaff\x7f \xf8\ -\xf3\x0e_\x84\xfe\x94\xe1\xb7\x1c>\x1b\xfd?\x0c\x7f\xe2\ -\x0d\x00\xa0\x03\xe2C?\xed[\xc0?b\xbf\x94\xd2 \ -s\x0dOzx\xa5\xe1\x1d\x86\x07A\xac\xf7e\xa0Z\ -\x90\x0f\xd5\xaa\xaf0\xf8\x12t\xd9\xf0f\xf1\x5c\xf8\xef\ -\xe2]\xd0\x90x\xbbx\x04\xfe\xb5x\x0f4 \xde\xe9\ -\x0b`:\xf4N\x0f\x5cT\xdff\x13\x00S\xfdL\xbe\ -G\xbc\xc6\xf0\x95\xd0]\xf9\x97\xe2\xe5\x86\xd7A\x17\xe4\ -?\x86\xad\x83.=\xd0'\x7fI\xfe\x8d\xfcQ\xf9\xcf\ -P\x0etD\x9eY\x88@\xbb\xcd\x84\xb3\xa0\x9d\xc6\xe7\ -C\x9b\x8c/\xf7\xad\x83D\x90fh!\xf4J\xbeS\ -|\xad\xe1\xcb\xb9\xa0\xe4\x1f\x88/3|\x03tG\xbe\ -O\xbc\x18~D\xbc\xd5\x97\x81\x22\x13a\xb7\xf9\xcd\xeb\ -\xc5\xa3\xf0#\x1e\xbeO<\x1b\xfe\xbd\xf8}\xe8\x9b\xf8\ -I\xf3\x92\xbd\xe2\x8f\xc3v\xc3Cg\xdbq\x0b\xe5\x1b\ -\x9et8\x03*3\xfc\x84\xc3\xd9V\x1a\xbe\xc7\xf0\x12\ -_\x00+\x9c\x01\xf6:|\x01\xfa\x07\x0d?\xee\xd9\xf7\ -\x9f\x0c\xbf\xea\xf0(\xfa?\x88\xc7\xc2\xb2\x10\x87\xcep\ -M\x84\xf0\xa5\xd0)h;\xd3\xee\xe1\xf3\x98\x09\xa8\x85\ -\xbb\xcb\xc3K!\x9e\x9a\x05\xff\xfd\xfd\x11,Z\xae\x93\ -\xc8d\x04P\xaaE\xc8\x00\xf22\x1e\x00&\x8fa\xe2\ -a\xee\x14\xdf-\x98\x89\x0c\xc40\xf1\xb020)\x01\ -\x14+\x00\x1e\xc5\xd1L\xa5\xbd\x0c\x93q\xfbm\x85Z\ -\xb5\x06\x86\xa0&\xf6\xc1oC[0\x91o]\xe5\xdc\ -\xef)\xd6\x01\xc6\x0frmLt\xea\x1b\x9c\xa3\xd8\x9e\ -\x9c\xf1L\xfd\xfe\x87<\x01$2\xbd\x08\xaf\x99\xdb\xb3\ -}<\x16X\xceX\x9f\xc7\xc4/\xd0v\xff\xf3\x5c\x18\ -\xe8\xac\xb9>\xbfB\xcfY\xbb\xc17\xa2]\x92f\xa0\ -\xec4\x19\xca\x03\xafA{\x00\xba\x0d\xf5k\xdb\x06Y\ -\x8b\x87\x05\xe0\xde\xe7\xd4\x80J6\x06\xc4A\xe7Cs\ -T\xe5P%\xac\xffY\x09\xa1\xdd\x0f\xdd\x83\xbe\xa4\x19\ -\xef\x8f\x00\xaa\xa0]\xbc\xffY\xfbA\xd7\xa1\xb7\x7f\x19\ -`\xb4\x9e\xe5\xfaS\xd5\x98mh[tn\x14\x8df\ -\xa1\xf1-\x1b\xa0+P\xbf\xa9\xf9l\x9d\xefz\x9e\x0b\ -\xbd,V\xe0\xd7\xa0\x9d1\x9e'\xe1L\x0cZ\x01\xad\ -\xe3\xff\x07\xf8z\xd6\x8c\xacx\xa1\xd5,F\xd0N\x9b\ -\xfa\xb3;\x96\xcfo\xe5\xb5\xdc\x8eP\x05\x84\xb2\x00\x00\ -\x00\x00IEND\xaeB`\x82\ -\x00\x00\x00\xe0\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ -\xa8d\x00\x00\x00uIDAT8O\xd5R\xed\x0e\ -\x80 \x08\xd4\xd6{\x83ON\x9d\x03\xe7,\xd0\xd5\xfa\ -\xd1m|(p\x0a\x9aE$\xbd\xc1\xa6\xf6\x82R\x8a\ -@t\xe9\xe2\x96\x00\x85D\x94u\x19b\x87\x1aOZ\ --\xae\xc0\x0c\x98\xf94R\xfdQ\xa2\x18\xa49OI\ -\xdc!\xf6@K\xeeP\xc12;=\x8aWe\x09c\ -rTh\xd2Z\xb0\xa7\xb3\xeb\xea\xf6\x14\xeeO4\x92\ -\xd9\x93~\xf7\x95W\xf1{\x82\x94\x0e\xd4\x89\xe2k\x0c\ -\xdb\xee*\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x00\xa6\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x00mIDATx\xdac`\x18\x05\xa3`\ -\x14\x8c\x82Q0\x0a\x86*\x88L\xcc\xad\x89H\xc89\ -\x07\xa4\xd7\x00\xb1\x14\xbd-\xaf\x05\xe2\xff@\x07\xfc\x07\ -\xd1@\xfc\x98\xde\x0e8\x03u\xc0_\xa8\x03@X\x85\ -n\x0e\x00Z\xbc\x1a\xea\xfb\x7f@\x1a\x84A\x8e\xe1\xa2\ -g\x08H\x82\x82\x1d)\x0aR\x07$!\x02\x1d\xa0\x02\ -\xb4\x9ck4K\x8e\x82Q0\x0aF\xc1(\x18\xd2\x00\ -\x00e^3\xba\x9ez\xe49\x00\x00\x00\x00IEN\ -D\xaeB`\x82\ -\x00\x00\x00\xef\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x00\xb6IDATx\xdac`\x18\x05H \ -21\x97\x11\x88C\x81\xb8\x18\x88\x0b\xa9\x88\x8b\xa0\xd8\ -\x05\x9f\xe5\xdc@|\x19\x88\xff\xd3\x18o\xc0\xe5\x80i\ -d\x18\xf6\x1b)\xe4\xf0a\x16 \xf6\x01\xe27P}\ -)\xd8\x1cp\x85\x0c\x07\xfc!1\x8aM\xa1\xfaVb\ -\x93\xbcFk\x07@\xed\xf9\x00\xc4\x9b\x06\xd2\x01\xcf\x06\ -\xda\x01\xcfG\x1d0\xea\x80Q\x07\x8c:`\xd4\x01\xa3\ -\x0e\x18u\xc0\xa8\x03\x06\xad\x03\xae\xd3\xa1Q\xca\x8e\xb3\ -i\x0e\x14\xdcK\x07\x07\xac\x83\xea\xeb\xc6&iEf\ -Gc\x11\x10/#\x80W\x01\xf1{\xa8\xfa\xaf@,\ -\x8e\xcb\x85\xd6@|\x08\x88\xef\x92\x80\x1f\x10\x89\xef\x01\ -\xf1\x16 V\x1c\xed\x04#\x03\x00u\xbb\x07\x04\xef\x85\ -8\x87\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x00\xfe\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ -\xa8d\x00\x00\x00\x93IDAT8O\xa5\x93[\x12\ -\xc0\x10\x0cE\xb1\x0d\xb6fs\xb55]G;!\x94\ -4\x8f\x0fg\xa6\xa3&rs\xe3\xe1\xaf\x18\x1fw@\ -\xc8w\xf5\xf8\xbf\x91k\xf5\xf0\xe1T$\x94\x98~\x0e\ -\xb4D*\xdcZ\xd0\x12J\xfa\x0a\x80[Z0\xe0(\ -\xb2\x8asn\x9b\xc0Z\x85Csh:\x18\xd0\xde\x07\ -\xe6\x1e\x0c$\x97\xa6\x03H\xd4Z\xdc\x04\xac\xc5\x1c\xe2\ -M\x1cmi\x82p\xacS\x80;\xe3\x15)\xdeZ\xe0\ -\x82tc!\x0e\xebp:\xe9\xf7@\xa9\xbc\xc2\xad;\ -\x7f\x8d8\xaap\xd6;\xce\xbd\xfa\x8fW\xbc\x9c\xc2\xae\ -\xed\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x00\x8b\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x00RIDATx\xdac`\x18\x05\xa3`\ -\x14\x8c\x82Q0\x0aF\x01\x99 21\xd77\x22!\ -\xe7.\x90\x9e7P\x0e\xb8\x0bt\xc0\x7f \x0d\xc2\xa6\ -tw\x00\xd0\xf29 \xcb\x81\xf4+ \x16\x1c\x90P\ -\x00Zl\x0at\x84\xe0h\x82\x1c\x05\xa3`\x14\x8c\x82\ -Q0\x0a(\x01\x00\x9bf\x16\x9e7\xad\x98\xae\x00\x00\ -\x00\x00IEND\xaeB`\x82\ -\x00\x00\x02\x02\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x01\xc9IDATx\xda\xedW\xbbJ\x03A\ -\x14MLc)XJTD\x91\xd8\xf9\x016V\x82\ -A4I\x13AH\xc4\x80\x8d\x96\x96NZ\xbf\xc4\xca\ -GH\x14T,\xf4\x17\xfc\x89<\xf0E\xea\xac\x9e\x0b\ -we\x18fwgv\xb2\x09B\x16\x0e7\xb3\x99\xdd\ -{\xee\x9c3\x8fM\xa5&\x97\xe3\xb5_=M\x8f+\ -\xf1N\xb9z\xd2F\xec\x03g#M\x8e\xc4\x05\xe0G\ -\x81\x18U\xe5%\xc0\x03(\xe9\x80\xa2\x8f\xc4I \xc1\ -\xae\x92P%@Q$Uy\x81\x13\x84\x11\xf0\xf8w\ -}\xd8\x95\x17Yg\x8f\x92J\xd0\xb5\xbd\xa1z\x02\xd5\ -\x14C4\x8fj\x0bg\xb7[&\xd4y\xa2\x1e\xb7\xf2\ -=\x03\xcd\x07\x86\x9e\x10\xb6\x95\x97\x14=eDy\xc0\ -\xcd\x13\xe4vIsb\xff\x02l\x02e\xb4?\x1cG\ -DDU\xbe\xae<\xd0dR\xb3\xc0\x14\xdaY\xc4\xae\ -\xa3'*a\x04\x84\xf4\xc0\x1d'\xaf\x01\xf4\xa2\x0e\xfe\ -\x9fG$\xb4\x1d\x084\xc3\x08\xe4Y\xaf\x16\xb7\x0f\xa5\ -\xf9O\xb1\x0b,\x02s\xc0{\x0cOP\xff\xf3(\x0f\ -T8\x1ehf\x01\xc5\x1e\x8fB\x96HX\x8e@\xcb\ -\xd4\x88G\xca4R_\xf8M$h$|9\x0c\x08\ -\x5c\x99&\xaf\x19\xbe\xb0Gr .\xf8\xc6\x0c\xe9\x7f\ -mtp\x91\xf6y\xcf@S\xeaG\xc6\x9c\x016\x02\ -\xf6\x0a\xbawo\xb3\x00]\xc6p\xf5\x160\x1d Y\ -\xc3v\x05\x5c\xc1\x83_\x16\x04\x1eX\xb6\xe3\xd8\x9ak\ -<\xb0\x06|\x1a\x10x\xe6\xfey\xcdn\xd9p\xdd\x05\ -s@?`\x9e\xd3\xbdW\xee\xb7-\xad\xf7\xf6\x9aG\ -\x8c\xc4\x12\x91\xd0h\xfe$\x9d\x8a\xd5u\xe2f\xd8'\ -\xa1\x9c/\x07'xD\xcc\x00\xcb\x12\xa1?\xcd\xd1N\ -'q\x16$O\xbcq\x82\x8ct\xffB\x22p;\x96\ -\x8f\x13\xda\x1d\x81\xd5\xc9\xf7\xe1\xbf\xbe~\x01}\x06\x5c\ -\x02\xc1U\xc6\xe7\x00\x00\x00\x00IEND\xaeB`\ -\x82\ -\x00\x00\x00\xd0\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ -\xa8d\x00\x00\x00eIDAT8O\xd5\x91Q\x0e\ -\xc0 \x08Cq\xd9\xbd\x99'g\xe9\x06\x06q&\xea\ -\xcf\xb6\xf7SBLmC\x12\x11\x029\xe7{\xe8\xc0\ -\xcc\x09o\xa0\xba\xba\xd8T\x87\x89\x1fM\x1b\x00o2\ -UA\xc7\x8aa\x83\x88\x19.U\xf0\xec\xaa\x85^T\ -#&}\xbfBc\x00gs\xe7\xa3\xd6'~p\x05\ -$\xf3\xbb\xef]\xa1$X\x83\xe8\x04\x88\xd4H\x07\xd8\ -\xd9\x12\x13\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01/\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ -\xa8d\x00\x00\x00\xc4IDAT8O\xa5\x92\xd1\x0d\ -\xc3 \x0cD\x01E\xcd\x10\xcd\x0e\xedB\x99.\x0b\xa5\ -;\xa4CD\x8d\x94\xf6\x5c\x83\x8ck\xc3G\x9fD\x04\ -\x0e\x1cg\x9b\xf8Z/g\xf8\x834\xdc\xf7\xc8\xf3\x8a\ -\xe1\xb6G\x0c^\xba\xa4c\x1d\x7f\x1c@t\x99&\xd3\ -\x99\x16N\xf8\xe4`\x1e\xcb\xd59\xfc\x11>\x1e\xe3\x89\ -\xc1\xa1@5\xa0C\xce\x8d\xf3s\x8b\x96\xcb\x0c9\x80\ -\xe2\xbcmf\xbep\xe3\xd5\x09\x90@\x0f\x12\xe1\xf48\ -T\xe8\xa7\xc0\xced\xde\x92\xca\x016\xcbT0\xd7E\ -\xd3\x14\x01\xb9\x19\x85\xe3p\x17\xf7%\xe6|[\xb7\xa3\ -\xb8\xc5\x81\xae\xb4\xb6nu\x02\xed%\x01z \xaa\xd7\ -\xba\xe2\xf8o\x89\x90@\xeb\xa1H\xac}U\x17$\xad\ -\xdc%\xae\x80\xc4\xb2\xfe%\x847o\x1ay\x8cB\x12\ -\xd5\x15\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01\xe6\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x01\xadIDATx\xda\xedW\xcdJ\xc3@\ -\x10\xeeK\x88 ^D\x11\x11\xd1\xda\x1f\x22^l\xd2\ -J\x9e\xa1\xde\x0az\xb3\x82\x17\x05\x1f@(\xf8\xb0\x05\ -\x1blS\xd38\x1f\xec\xc2\x12v6\xbb\x9b\x04`\xb8]\x8e\xe6\xb0\xd8\xa2\x0cO\xb8\xcf\x02\x12\ -\xde\x97\xf4\xab\xc9y\xcaq;\xc8\x0a\x8c\xc9\xd4\x04\x1c\ -9\xb1u\xe0\xd4\xc0\xfd\xa1E\xcdp\xb3\xe3\xc6%\xff\ -\xcfJNe\xce#\xdb\x01&\xe6\xbf\xaa\xbf\xf0\xa9\x83\ -'\x91\xd3\xad\xeb<'\xf9+DB\xe8/\xaat\xc2\ -\x19]p\xe0\xc9\x1f\xf8eu\xd1\xfe\xb7h\xd7\xbf_\ -\x7f\xb3\xb1^\xeamg8\x00\x00\x00\x00\x00IEN\ -D\xaeB`\x82\ -\x00\x00\x00\xd0\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ -\xa8d\x00\x00\x00eIDAT8O\xd5\x91Q\x0e\ -\xc0 \x08Cq\xd9\xbd\x99'g\xe9\x06\x06q&\xea\ -\xcf\xb6\xf7SBLmC\x12\x11\x029\xe7{\xe8\xc0\ -\xcc\x09o\xa0\xba\xba\xd8T\x87\x89\x1fM\x1b\x00o2\ -UA\xc7\x8aa\x83\x88\x19.U\xf0\xec\xaa\x85^T\ -#&}\xbfBc\x00gs\xe7\xa3\xd6'~p\x05\ -$\xf3\xbb\xef]\xa1$X\x83\xe8\x04\x88\xd4H\x07\xd8\ -\xd9\x12\x13\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01\x05\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ -\xa8d\x00\x00\x00\x9aIDAT8O\xa5Sm\x0a\ -\x80 \x0c\x9d\x12\x05]\xa6\xdf\x9d\xa6\xb3u\x9a\xfe\xd6\ -e\x82(\xb0&j*\xfb\x08z0\xd6\xb4\xbd\xf7&\ -j\x9cs\xf0\x07\xf6\xda:\x92a\x99z\x87\x11J\x16\ -\xb6\x19\x0e\x13\xbe\x13\xa4F\x14\xccE\xfd\x08R\xc38\ -\xefI\x00\x1bkA\x1b2\x8b\x9c\x9cr\xeb\x09r\x15\ -\x0a\x92C\xd5A\x04\x92PD\xea\x19Dp.U\x07\ -\xd8(\x8dX\x10h?S`ob\x1cK\x22\xf4\xf7\ -\x01\x090\xce\xb5}\xd2[\xd7\xc1\xed\xb3\x9b_\xd7\x8a\ -\x22\x0f\xcdQ\x8c\xff\xaf1d\x11\xdc\x8b\x05\x00\xb8\x01\ -\xef\x94\xd6@\xd4\x8c1\xa7\x00\x00\x00\x00IEND\ -\xaeB`\x82\ -\x00\x00\x01\x88\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x01OIDATx\xdac`\x18\x05t\x00\ -\xd1I\xb9<\x03iy\x03\x10\x7f\x04b\xc9\x81\xb0<\ -\x0c\x88\xffC\xf1m f\xa7\xa7\xe5\xe6@\xfc\x17\xc9\ -\x01 \xbc\x9b^\x96K\x03\xf1k4\xcba\xb8\x9f\xd6\ -\x963\x02\xf1\x1d\x1c\x96\xc3p<\xad\x1d\xe1\x01\xc4\xbe\ -@\xec\x0e\xc4\xb7\xa0\x966\x01\xb1\x17\x10\xfb\x03\xb1\x12\ -=\xd3\xc2\x09\xa8\x03<\x07*\x1b\x9e\x84:\xc0\x87X\ -\x0d\xea@\xcc\x0f\xc5\x1aP>>,\x0f\xc4,@,\ -F\xb1\x03\x80\x8av@\x15\x17B\xf1\x7f\x22\xf0U \ -V\x80\xb2\xb7\x90\xed\x00\xa0\x02\x0e \xfe\x0aU\x9c\x0b\ -\xc5\xc48\xe0\x1c4\x14`|\xb5\x81v\x80\xfa\xa8\x03\ -\xd0\xcc=\x0b\x15\xf7\x1d(\x07\x14\x03\xf1Jtq\xba\ -9\x80\x94\x02c\xd09\xa0\x80H\x07\x5c\xa6\x85\x03\xf2\ -\x80X\x18\x88\x83\x818\x10\x0f\x0e\x82\xd6\xfb\x92\xd4v\ -\xc0cP\xe3\x01\x88w\x11\x89OQ\xdb\x01\xc4\xe0\xdf\ -@\xfc\x0b\x88\xff\xa0\x89S\xc5\x01_\x09\xb5d\xa1\xd1\ -S\x01\xc4\x86Hu\x08\xd5\x1c\xf0\x05\x88E\x08\xa8?\ -\x04U\xdbF+\x07\x08\x10P\xbf\x1e\xaa\x0e\x14\x0a\xdb\ -\xa9\xed\x00P\xfc\xd6\x03q\x11\x01\x5c\x0c\xcd\xb2wp\ -\xd5\x86\xa4:\xa2\x05\xea\xabo\xd0\x04\xf6\x9b\x00\x86\xa9\ -\xf9\x0eu\xfcvj4\xa1\xd8\xa1\xa1A2\x1e\xed\x84\ -\x92\x03\x00\xf9}\xdcv\x87\xa5\xe0^\xe3\x07\xa0\xd1\xc6\x9f\xc8\x81\xcf\xc5T\ -\x81;\xb0\xdb^0\x12\x9ac\x5c\x0f%\xa0N\xf1\x07\ -\x9a\xf3\xaa\xbd`\x18\xbf\xca\xb8\x06\x1a\x0c>+n\x93\ -\x03o\x8a;\xa1\xa1\x7f;\x80?\xe4@\xb7c\xb0\xdc\ -\xc6\xae\x07\xcf6\x1e\x07^\x02;PL\xa7\x16\xc3\x96\ -\xd8\x87\xcc\x04\xdfd\x9c\x04/\x83\xfa\x8asq\xcdg\ -\x14\xc5)`\xce\xe7\xe0\x0fW\xd8\xd85t\xc2\x98!\ -\x9d\xcf\x87X\xce\xe7\xc2^nNN\x05O3\x1e\x0b\ -\xbe\xd9\xd6DB\x5c\x10;\xf0\xac\x85\xfc\x12h\x96q\ -\xad\x1c<#~[s^\x123\xccC\xa0[-\x05\ -\x8b\xa0A\xe0\xd3\xe2\xbdr\xe05\xf1o\xd0\xc5\xee\xc0\ -A{a\x09Tg\xbc\x81\xf94\xee\xd0\x9c\xc3\xf6\xc2\ -\x22\xa8\xc9x%4\xc6\xf8\xb0\x1c\xf8\xd2\x16\xe1X_\ -\x03\xdcR/b\xb0A\xdc\x07\xda\x04\xde\x0e\x9b\xa7\xb1\ -%\xe0\x97aS\xe2\x09\x5c\xbc\xb0\xf5\xe2~\xe0-\xb0\ -\xdbx-'\x97\xe3\x9as&\x8a+q\xbd\x07\xaa\xf9\ -\xa7Z\x90\x888\x0b7\xf6\xf61pn\xc4\x89\x88{\ -b^v\xf4\x9c~\xff\xc5a\xb0I!\xee\xe0\x82\x81\ -J\xa1?\x15\xc2i\xd1\xbe\xdf$^-\xfeZk\xa4\ -\x1a\xdc\xa9\xf0\xa6\xe8\x08\xf8S\xf1:9\xb8>\xd4\x05\ -(\xc7\x1d\xf8\xc2r\x5c\x0d5\x1a?\x05\x0d7>\xa9\ -9G-\xc7\xe5\xd0\xc3\xc6\x5c7E\xc6\xed\x8a\xe87\ -\xb6\x06\x92\x1e:\x96\xd9S\x18\xdc\x0f\x9b\x09]\x0a\xf1\ -\xcb\xbe\x87-\xd5=\xcf\x83\x7f\x86\xbdG\xbc\x14\xfc\x13\ -,\x0bR\x0f\xd5\x09:\xf5-T\xc81\xed\x94_B\ -\xce\xc1w\x89_\xe0{2\xba\xcd\x0f\x9e]\x0b}\x05\ -\xafv\x88Y\xfb\xdb\xc0\x1f\xb2\x00il\x03\xf8\x08\xf7\ -\xbbU\xbd4\xec\xd3\xe2a\xe0\xfd\xb0\xef1e\x8aR\ -\x0b\xa3\xc2\xba\x22\x9e-n\x89\x1d\xf8\xccr\x5c\xc9\x83\ -\xc5x\xa3\x8aS\xe0\x13\x9a\x93\xb6\x1cs\xd1\xae2^\ -\xc7\x0aiLG\x99\xda\xa3\xb6\x06\x0a}\x0d<\xa1\x9b\ -\x99\x9f\x81\xd0\xd5a2\xec<(K;\x84\xdc\xaa9\ -[\xc5'\xa0\xfe\xd0\x8c\xe0$4Su\xe1\x07\xf16\ -9\xbdK\xdc\x01\x0d\x88\xa3P\x1c\x0e\x1a\xf1\x08\xf0\x18\ -c\x1eXe\xd1\xbe/\x09\xfd\x82\xf82\xaf\xf3r\xa2\ -\xb0\xdc)\x8f\ -\xc3\xce\x15\xf7\x047\xaa\x17\xe8%\x07nT\x0aG\x8b\ -\x0b\xc47\xc4\x0e\xb4Y\x8e\xd9\x5c,6^\x05]d\ -\x9c\xd6\x9c\x03\x96c\x9ezu\xc6\x0d\xd0(\xe3\x83r\ -\xe0#[\x03\xa3<\x94\xaf[\xcey\xec.4nV\ -\x8e\x03\x87\x83\xe5-\xcb9_v\xa7\xf1\xdd\xd0p\xe3\ -w\xe5\xf4\xfbbj\x84G\x80_\xd8\xc0\xf3\xdc\xc6\x16\ -\xe8\xa1=\xc4U\xe0\xfb\xb9\xdd\xc2VU\xc8'\xd9\x87\ -\xb0\x07\x5cj|\x15\xb8\x99\xf7\x8a\x87\x88Sq\x0a\x98\ -\xf3I\xb8a\xa4\x8d\x95\x80\xab\x8c\x07\xab\xe1\xc8\xb1\xc3\ -j2\xb7\xa8\xbd\x90'd\x85\xf1P\xf0\x14\xae\x0fq\ -6\xae\xa7\x9e\xd7\x8e\xe9aaK\x9dU\x11\xba\xcer\ -\xce\xe6\x82\x13O\x8a_\xd1\x9c\x9d\xe2_\xd9|\xb0\xd8\ -X\xce\xd99q;\xff(n\xb5r~\xee<\x81\xf2\ -|\x0d\x1c\xb2\x1cO\x84V\x18\xb7\xf0K\x8c\x8fkN\ -\xdar\x5c\xaa\x1d\x13x-4\xde8\xad\xb3\xa1\xdd\xd6\ -\xc0x\x8f@\x15[-\xf6\xf5\xa17\xa0\xd7\xe0\xbdl\ -\xb74\xc65r\x00v\xba8\x05f;\xbfF<\x80\ -\x87\x0c\xec\x1e\xae)9\xf9 w\x0b4Yc\xdfy\ -\x8e\xb2Y\xb4\x1c\xa7\xb4\xf7\x03o\xe6\xee0>\xa59\ -\xc7,\xc7\x15\xd0\x1a\xe3G\xa0\xa4q\xbb\xa2\xf3\x9d\xad\ -\x81\xa4G\x80\xfb\xfd4\x06?\xa6gQ\x04RQ\x04\ -V\xffK\x04\x8a-\x02\x15Q\x04\x1a\xe5t\x93x_\ -\x9c*>0\xcf\xbb\x14\x9e\x01\xa1\xbb\xb5H\xe5G<\ -(\x14*\xfb\xc7#a\x9c\x19\x8a\x90=7?\xa3;\ -\xfd\xfe\x02\x18\xfc\x86\x85\xa5`T\xfb\x00\x00\x00\x00I\ -END\xaeB`\x82\ -\x00\x00\x00\xfc\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ -\xa8d\x00\x00\x00\x91IDAT8O\xa5S\x81\x0d\ -\x80 \x0c\x03b\xf4\x1c\xff\xffB\xcf1\x9a\xa0%T\ -q\xbaa\xa4I\x1dts\x14P\x1fct-\x08\xdb\ -<\xbcv\x80\xae\xe5n\x80\x03\xc9u\xea\x8fp\xc5\x92\ -\xd0J=mA\xae\xd4\x8d\x8bG\x84\xce1 \xe7\x09\ -\xec\xca\x8e\x92V\x0e<\x07\x7f\x9b\x84l\xc4\x04l\xab\ -\x87\x8a.\xb5\xd5\xad|z\xb0@\x16[/\x92\xe7\x16\ -x\xc2\xb4\x9b\xe5*\xd4/\x91M\x1e\xd7V \xd5\xd0\ -J\xcd\xae\x96W\x93_\xb5\xdb\xa4d\xcd\x11\xd9\xfe7\ -\xe6hB\xbf\x15\xe7v\xf1\xcd\xb3\xd1w\xeb$X\x00\ -\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x02\x14\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x01\xdbIDATx\xda\xed\x97\xbfKBQ\ -\x14\xc7E\xa1!\x10,tk\x08\xda\x02\x1bj\x8eR\ -hj\xd1!\xe8\xd7\x90\x8deCS\xd1\xd2\xd8\xd2\x16\ -iC\xb4e\xf8'\xb4i:YTCC\x8bA\x16\ -M\x85IF\x93\xda\xf7\xbc\x8er\xb9\xdcgO\xbb*\ -\xc1{\xf0\xe1\xf0\xe5\x1d\xef\xfdz\xcey\xf7\xa9\xc3a\ -_\x1d\xbe\x96V7\x92\xe0\x0e\x0cu}\xf3\xc5\x955\ -\x176~\x0650\xd6}\x03\x91\xa8\x0b&\x0a\xa0\x06\ -\xfc\xbd\xaa@\x81+`\x1b\xf0\xdb3\xd0\xabs\xe0\x91\ -\x0d\x8cZq\xbc\x8f\xc4\x0b\xe0\x01G\xd0i\xc4T\x1d\ -\xe8\x94\xa43\x88\x9b`\x02\x9c@\x0f#\xd2\xb7^\x06\ -\x0b\xd0\x14_\xd9\xc0\x16\xf4<\xdf\x1bQm>\x83\x9e\ -\xd5\xb8_>p%\xe8\x1f\xd4\x9a\x8c\x06YS\xbf=\ -\xa0,\xdc\xaf\x82\x8a\xf4\xf9YU\xa9Bt\x93\xddz\ -AN\xd0\x06\xb4\x90\xa4)\xc6@\x80\xf5;b?\x18\ -\x07\xb4qU\x91\xbfk\xd6+\x1d\x06\x8a\x88n^o\ -N\xf1\xf9D\xb3a\xd1j\x80\xdb\xba#\xe4g\xa1\x9d\ -\xcd\x060$\xf4\xc8\x0br\xac+\x0d\x22\xd1\xaa\xa4\xe9\ -~\x0c\x04\xb8\xc7ED\xb7\xb4\xee)x\x02\x03\xbf=\ -.\xda+\xc0\xeb:\xe9\xa9\xb2\xf2\xbcv\xc4@+\x07\ -\x86l\xe0Ra@5\xd5q-\x06\xa4\x19\x18\x04\xe7\ -\xd0\x1f\x88\xa5\x06\x91hI\xd2\x9f\x88{`\xdal\x06\ -\xda\xad\xc0\x14\xa0\xc3\xc8\xcb\xd500\xd1>\xb0\xae\xbb\ -\x05b\x89[\xd1\xda\x0c\xbc\x80\x03\xe88\xf7\xd8@\xd0\ -1I\x97u\xcf@\xdaB\xfe-\xf2\xef\x11'A^\ -\xf7\x0cd,\xe4\xd7[\x10\x06y\x1d-\x08\x0b\x06\xd2\ -\x16\xf2\x0f\x91\x7fL\xefy\xf0 \xbc\x8c\xda6\x10\x14\ -\x0c|\x81\x1b*3b\x03I\xd3A\x95C\xbc\xa67\ -\x1f\x1bxC\xec\xfb\xcbo\xb8m,r\xc6$\xa1\x93\ -F\xacc\xae)?\x01\x1d\xb0\xff\x0b\xfe\xbb\xeb\x1b\xc9\ -\xfb\xd7\x13\xad&L\xa9\x00\x00\x00\x00IEND\xae\ -B`\x82\ -\x00\x00\x00\xd0\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ -\xa8d\x00\x00\x00eIDAT8O\xdd\x93\xd1\x0a\ -\x800\x08E]?.~\xb9atc\xc55\xad\x97\ -\xa0\xf32\x86\xf3p\x057\xdc]\x18f\xc6\x0b;\xaa\ -:\xe2<\x04s\x03\x8aA&\xc2\x9be\xbb]\x88&\ -4\xce2\x06\x15\x80\x8e\xe4V\x10d#\x80RP\xf1\ -Z\x80d\xdf%\x00\x7f\x12T\x1b\x97qJ\x10\x92\xa7\ -\x22:BG\x84z\xfa\x9d{\x88\xac\x1d\xf5-\x8f\xc3\ -r\xe1\x95\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x04M\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x04\x14IDATx\xda\xcdW}L\xceQ\ -\x14~U$\x94\xbc\xd2\x87,\x9f\xf3\xe6\xcd|d-\ -LS\x93lY6\x9f+[MM\x85B\xc3l6\ -b\xfc!B\xd6\x1f\xac\x86\x0cM\x96\xcfe\xb3\xd9d\ -\xf3\xfdG#\xf9\x1c\xcd\xb0\xcc\x98\xaf\xc9V!y\xce\ -\x9c\xcb\xd3\xf5\xf2\xf7\xdb\xf6\xec\xbe\xe7\xf9\x9ds~\xe7\ -w\xefs\xef=9\x1c\xde\xf0\x97\x91\xbd2\x1a8\x9e\ -\xbe\xa4\xb0\x88\xb8`\xd8\x071\x96\x00=\x85\x83\xed\x87\ -\xdf\xdb\x81*\xc0I\xbe\x85@\x0d\x9e\xbb\x89\x9b\x0b\xfb\ -$\xc6\x14\xc3\xc1\x8e\x85}\x0a\xc8\xb1\x0b\xb8\x05t\xc1\ -\xa1\x0b\xe3\x04\xe5\xf6\xa9-\xc8\xd3\x049j\x0b*\xd4\ -o\x9c\xe1\xf0\xfc\x8er}\x80o\x1a\xdfI\x05<\xa2\ -\xf8\x91\x5c@\x1d\x150B\xb9b*`\x9e&\x98C\ -\x09\xb6\xa9\xdf0*\xe0\x82r>\xc0'\x8d\x7fC\x05\ -\x5cU\xdfN \xdcA\x0fz\x03y \xe3\xac\x99\xc9\ -\x02\x9f\xca\x1c\xecY@\x96\xc5\xc5\x02\xcb\xe0\x1f@\xdc\ -P\xd8\x05\x18#(_ l\xe1\xc6:\xbc\xea\x0f\x95\ -\x0d\x14q\xa1\xb24\xe2z\xc0\xde\x841\xdf\xf2]\x0a\ -\x08\xefK\xdcl\x8d\x0f!Nfe\x17F7\xcdJ\ -\x04\xecR`\x86]\xc0\x15\xd2\x80[\xb92\xd2@\xa6\ -&\xc8 \x0d\x94\xd3\x0e2\x1a\xb8\xa9\x5c/\xa0]\xe3\ -\xdb\xa8\x80\xbb\x14\x1f\xc5kXo^f\xb6\x12\xc6R\ -S\x14\x90\xa9\x893\xd4\x16\x94\xa9_\xb4\xe1\xf0\xfc\x9a\ -r\xfe\xc0\x17\x8do\xa5\x0f\xbdM\xf1Q<\x0325\ -;@.$N\x92l\xd6=\xde\x83\xf8\x02`\x0b\x0b\ -Nv\x09\xb0\x13\xfe\x83\x89\x9b\x02{\x0f\xc6\xf1\x960\ -\x85K\xf5:\x11\xf6\x05\xb2Qa\x9c\xb5\xbd\xd2\xf9$\ -S\xdf\x99@\xba\xc5\xc9\x09\x97\x03\xff~\xc4\x0d\xd7\xad\ -\x1dI\xf9\xfa\xc3\xce\x05b\x1c\xd6\x8bN\x93\x06\x86*\ -\xb7\x814\x90f\xd4NkX\xac~Q\xa4\x81:\xe5\ -|\x81\xb7\x1a\xdfBE\xd5\xabo\x1b\x10\xc6_\xd0@\ -\xbb`\x92r\x15\xb4\x0b\x96k\xe2\x5cR\xf1!\xf5\x1b\ -O\xbb\xa0\x89\x8e\xe2\x1f&\x9e>\xf4\x09\xc5\x8f\xb2/\ -\xa3Z8\xac#.\x08\xf6\x11\x8c\xbb\x01?\xf3e\x22\ -6\xe0\xa8\x5cV\xe4[\x04\x9c\xc4\xf31\xc4\xcd\x87}\ -\xce\xba\x8c&\xc0\x16.\xd7\xbbD\x88\xca\xe4\xd4\x9b.\ -\xdb\xd1\x12W\x1f\xd8\xc9|b\x9a\ -\x07\x95\xba\x86\xdf1\x86*\x97O\x1aH\xd4\xa4\xd3h\ -\x0d\x0b\xd5o\x10\xf0U\xe3\xab(g\xb3\xc67QQ\ -g4\xf6#0\x80\x0b\xb8G\x22\x9c\xac\xdca*`\ -\xb5&(\xa0\x02\xaa\xd5/\x8eD\xf8\xd8\xe8\x87\xf2\xb1\ -\x08\x9fQ\xbc\x8b\x0bH\x00\x1a\xe1\xb0\x9f8\xd9^\xd7\ -1\x9e\x95\x844\xad\xd2\xd1\xdc\x90}N\xbe\xe5\xc0]\ -Y\x06\x16&\xec\x07ryQ\x01ri\xdd\x97\x8b\xcb\ -\xe1u\x7f\xd2\x09\xa1\xc2\x00K\x5c\x91rU[~N\ -`\x88\xc5\xf5\xee\xd6b\xfd\xb9\xce]\x1e\xde\xe32\xdb\ -\x9a\xc9\x12]\xb3wf\x7fc\x5c\xa0k\xd8\x0eL\xd4\ -\x82\xe4\xd0i\xd35\x5cL\xeb\xfdZ\xe3K\xb9\xcf\xd4\ -\xf8K\xf4A\x15\x1a\xfbT\x0e+.\xe0!\x89&A\ -\xb9c$\xc2\xb5\x9a`\x15\x89\xa8F\xfd\xa6\x92\x08\x9b\ -MGm\x8bPg\xe4\x05\xc5\xbby\xaa\x17\x01\xefA\ -^\x943A9\xe9v_I\xa7\x0b\x84k\x92P\xfc\ -\x96;]x3+\xb2\xb7\xcf\x03\x1f\xa4_\xa0\x9c{\ -a\x7f\xc6\xb8\x95\xbb)\xd8\xc2UK\x9c\xd7\x890\xd8\ -\xaeJ\xaeWiL,?\x7f\xe9n-\xce\x87\xef\x06\ -\x8awzx\x8f\xd3\xd3\xcbW\x88\xb8\x10\xd0(\xfd\x9c\ -r\x892]\x18[\xcc\xcd\x05{8~\xbf\x04Z\xe5\ -\x98\xa5\x82\x1a\xb4\x07\x5cM9O\xc0\x96\x13\xb2\x92\x0a\ -\x92f\xb6\x03\xb8l\xfe\xdb\xfa}MR?\x90\xa4\x5c\ -\x0d\xf5\x03\xeb5\xe9\x1a\xea\x07j\xcd\xf1L\xfd\xc0s\ -\xf3\xe5\x94\xaf\xcbhE>\x86\xe2c\x1cV\x9f\xd7\xae\ -]\xab?\xcd@\xeb\x7ff \x85\xce\x00\x99\x81\x0e\xd9\ -%\x94\xb3Vg\xe0\x00}\xe8F\xbd7\xba\xcf\x80Y\ -\x1b\x0f\x1a\x08\xfa\x87\x06\x82\xecC\xc7\xd3\xda\xfeu\xeb\ -\xfd\xf2\x0d\xf1*\xf1\xff\x04\x8f\x07^\xb5\xbe\xa8\x80\xde\ -\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x00\xd0\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ -\xa8d\x00\x00\x00eIDAT8O\xdd\x93\xd1\x0a\ -\x800\x08E]?.~\xb9atc\xc55\xad\x97\ -\xa0\xf32\x86\xf3p\x057\xdc]\x18f\xc6\x0b;\xaa\ -:\xe2<\x04s\x03\x8aA&\xc2\x9be\xbb]\x88&\ -4\xce2\x06\x15\x80\x8e\xe4V\x10d#\x80RP\xf1\ -Z\x80d\xdf%\x00\x7f\x12T\x1b\x97qJ\x10\x92\xa7\ -\x22:BG\x84z\xfa\x9d{\x88\xac\x1d\xf5-\x8f\xc3\ -r\xe1\x95\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00C\x13\ -\x00\ -\x01\x9f\xd1x\x9c\xed\x1d\x09\x5c\x8c\xdb\xf7\x9bR!\xd4\ -\xc3#)e\x8dl\xf9{\xc8Z\xf6}_\x1f\x22<\ -\xbb\x92\x84,\xd5\x90%d\x97\x9d,E$B\xa4\x92\ -\x22\x22k\x12\xd9[H4\xed{\xd3\xcc|\xff{\xee\ -\xf7MM\xd3LM3\x93&\xba\xbf\xdfy\xbdI\xf3\ -}\xf7\xdes\xee\xd9\xef9\x04\xc1 T\x09\x18\x0cB\ -\x9f\x98\xa7M\x10\x0b\xd0\xff3\x99\xd4\xe7\xb65\x19D\ -\x18\xfa\x9d\xa9)\xfdy\x00A\xa4\xb7`\x10FF\xd4\ -g\x8f\xd6\x04\xd1d>\xfa?}\xfa\xb3&A\xdc\xdb\ -\xc1 45\xa9\xcf\x8bj\x10\xc4\xe2\xe3\x0cb\xfb\xb8\ -1C\xeb\xd6\xd6\xae\x8d\x1e]w\xf8\xb0A\x13\xe0_\ -\x01j\xc2\xabgZ{\xa0wj\x1b\x0e\x1f\xd4\x7f\x92\ -\xed\x87\xe4\xcf\xa3\x975\x88\xfa\xa2\x9a\xf6\xa8\xd5\x18+\ -\xa2\xc1\x86\xe8e\xdeM\xe3w\x5c>1\xe4\xb9\xd9?\ -\xb5/\xd5\xb09p\xd0\xccP\xe5\xcc\xe5'\xdb\xa6]\ -\xf3h9\xcd\xac\xd6\xf8I?\xaf\x98\xaeh|\xd9P\ -\xc9\xac\xf9 \xb7\x05C\x0f\x8c\xaeU\xbf\xc5\x88\xc6\xcf\ -'\xef\x98\xda\xff\xf9\xf1\xd0eg{t\xeb\xb4\xeb\x80\ -\xf1\xf6\xe8\x87\xcf\xb4\xe6-{\xa4\xd75\xd3\xa4k&\ -\xa7\xbb\xe9\xf4\xb4\xf4w\x09G3\xbb%\xe4Y\xfb\xe9\ -8=>~\x8c\x11\x9c\x909\xfcp\xc8\x94\x93\xd7n\ -\xae&\xec\x08\xe7\xd9\x8c\x98\x06\xdc\x97\xdf\xec\xdb\x11\xe4\ -\x1b\x87\xa0\xd3\xe4\xda9\xad\xbf\xec\xdb\xdf\xe9\xc8I\xf4\ -\xf7\x1b\xfcf\xbex\xc3\x08o2\x83\xe58%\xcc\xe4\ -\x95C\xb2r\xfb^.\x8765\xaa\xa9\x1e\xae4\x17\ -\xfd\xdd5}\xb3\xb6\x9e\xb7\xffG\xf4\x9a\xb7\xd4\x8c\xd8\ -\xca8\xa1j\xa5z9)\xf2HC\xe6\x05b\x01c\ -\x94\xd7\x83\xde\x87\xdc\xd5\xffk\x14U\x83i\x7f\x98\xac\ -=\xfda\xea\xfeN\x1a~\x1f\xfe\xc7lG\x98\x18\x07\ -\xae\x8a\xf9A\x84\xa7f5>=\x99\xd3\xe9g\xc6^\ -\x83\x8e\xcay\x8c`e\x83[ut\x9a\x10hns\ -\x88\xd9\x03\x97~ip1\xae\x1d3uJ\x9c\xee\xc4\ -\x08\x95\x8b\x87\xe6)\x99\xea\xdd\x0c\x22\xbc\xe2\xd6\x0c?\ -\xbc\xcdc\xd3|\x22\xba\xff\xd2\xbf\xdd\xdc\xd4'n\xcf\ -`\x9c\x9e\xca\xd1\xf2\xd9\x11\xdd\xc9\xac\xd9Ym\xb7\xd3\ -*\xfdg\xbe\xd1\x1f\xd7\x0b&\x16\xcd\xfc\xdb\xf5Dg\ -\x15\xaf\xa5i\xbbl\xfa\xefh\xd7\x84X\xa7\xe7\xa0\xb3\ -,\xf1@@\x07e\xad\x89\x8b\x9dM/\x12\xe1C\xb3\ -S\x1d\x1d\xd7\x7f\xb3\x1c\xcb\x989i\xce[\xfd\xc3O\ -c\x996\xcd\x99\x1bV\x92k\xbc3\x0e\x14\x9cd\xa4\ -\x05\xf0N66\xf8\xa0\x14\xde8\xed\xd3\xa3\x80\xec\xbc\ -A\xb3\xae\x13^\xdd\xbc\xf5\xd3\xe3\xcevd\xbex7\ -\xbdN\xf0K\xf3x\x83\xd4D\xe5\xb4\x1b\xb3\x1a\x0fz\ -\xf7E)\xfcBN\xca\xc0\x19\xb7F\x0e:\xd6n\x91\ -\xd7\xc6\x83f\x9d\x17\xadW7]\x9eA\xd6\x99b\x7f\ -vnH\xf8te\xbb\xd5w=,\x18\xa7\xc7\xa6^\ -\x0b\x1b;i\x96\x9e\x8f\xa6\xd6-\x96\x8aE-\xf4\xb0\ -\x0f*\x84\xc9\xa6\x9d\xeb\x9cr^\xd7\x8b\x19\x1a\xf8b\ -\xda\x8b\x0c\xe2\x87\xb3\xd7\xe7mo\x13\x0c\xce&~\x8e\ -b\xedv\xefP\x97\xe0\xd6\x9d\xe9\xcd\x1e\xad\xe9\x17\xa9\ -\xe290\xf8:\x81^\xfe\xbf-\xee\xcd\xcd\x87\x13\xde\ -\x19\x0d\x8e>\xb9\xaei\xd4\x97\x98\x96\xbf\xbd\xc3\x9c\xe1\ -5\x8fh\x13\x979\x83\x0e\xfd\xafo\x8dQ\xea\x84\xdd\ -\x87\xb8M\xcf\x1bo~\xbc\xb4\xd3\x91\x9e\x83\x17=\x99\ -`n\x17{\x7f\xcf\xf5\xa8-\x8f'\xde]f\xb3\x9c\ -11G\xb9\xed\xb4/\x1f;\xd9\x0dv\xea\xd3J%\ -&s\xc8\xa9V\xcb\x8c\x89,\xb5\xf5\xf6*kR\x9b\ -\xef\xf7&:\xd6\x98\x90\xcd\x99\xdf\xb5\x99\xaa\xbf\xc6\x14\ -\xfb\x16\xed\xec\x16Y\xb9X|f\x9c6\x09\xe9\xd3\xc1\ -N\xc5\xa9\x8f\xe5\xed}\xdc\x1a\x89\x89J\xde\xd1c\xdd\ -\x0e6L\xd4\xd2X\xe4\xa6n\xa5\x87^\x7fi\xd1\xd0\ -\x93f\x1b\x8f)\x9bF?\xf3\x1e\xcb\xd6m\xf0j=\ -;\xf1\xfd\x22\x9f\xf3\x9d\x98wW\xe5\xa6F\xa4\x1et\ -z\xc2^xs\xc6\xee\xa8\xd7*1+\xb9\x83\x96x\ -^\xdc=E\x97`/\x09\xea\x1a\x91\xba\xdb\xc9\xb0\xd7\ -\xc4\xa7\x87\xe6\xde\xf4!B\xdd\xa3\x9b\xfc5\xd9=\xd1\ -\x7f\xfad\xe2\x87\xa3\xbaYD\xea\x0e\xa7K\x11\x93\x93\ -\x991w\x1d\x99l\xeb\xe8\xe8{\x8bMZ\x18\x0c\xef\ -\xdfTs\x94K\x81\xde%\xdd\x1a\xce\x1b]\x5c\x1f/\ -\xfep\xe6\xcd\xe7\x1d\x86\xb7\x08\xdb\x5c\x03k\x9f\x86\x86\ ->J\x97\x163f\x12\xedM\xf6M\xbc9\xcfu\xf4\ -\xbac\xb9\xf9jw\x0fu\xb0k\x15\xb9y%\xd7k\ -\x15\xc95y\x9bk\xd43\xa8]~#'7\xbb\xba\ -\xfa\xb3RL\x0e\xd5%\xec>\x9e\xe9\x14\xb6\x7f\xe8\x00\ -5\xcd\xa6K<\x0bR_v\x9c\xdf\x84\xf8\xb6\xca\x0c\ -\xd1\xa9z\xfb\xf4\xddj\xee\xbcy\xee\x9d\x82\xa7F\xb4\ -6h1\xf1\xa0\xd7\xd3\xd6\xca\xa6\xb33\x1d\x86\xf8G\ -\x0e\xfaoG\xd7u'y\xa6~\x8d\x82U~\xd6o\ -\xb0\xefb\xa7\x83\xec9~\x84y\xa6\xebc\xb3\x11o\ -\x7fj(\x99F'_\x18\xe9\xef3\xe8\xbfK\x9d\x02\ --\x83.LRg\xaeqh\xb1\x86}\xda\xf2\xf01\ -U\x9dC\x9dZ\x87\xed\xd8z\xfc\xaf:y\x9a\xb5\xba\ -\xc5\x9e\x0b\x0fX?(\xebvN\xe6\x84\xfaa\xban\ -=V\xe6\x9b\x04\x8dJ\xd1?\x196g\x95\x9d\x86'\ -+ b\xf9\xf6\x7fB\x88\xd0\xda\x0ei\xb3\x88\x1f-\ -\xb7\x98E\xb8\xb7Z_\xc7\xa6\xe0\xaf\xba=\xbe\x9e\x9b\ -\xa7\xa6Y\xb7GB{\xfb@rJ\xeb!\x9a\xcf\x02\ -\x9f\xc4\xed\xc9\xee\xdbj\x7f\xefa\xad\xd6\xb8u\xde\x18\ -e\xb3*\xf4\xad\x7f\xed5u\x0c-\x19uF\x1e\xde\ -{\xf9\xafZ\xdd\xe6\x9c\xfe\xb8\xe7\x80\x01\xc7i\xebq\ -\xcd\xba\xa9\xbe5#\x93\xa2L\x98\xc3~\x04\xab\xf5\xef\ -\xe2{\xf0\xe1'\xcf\x0e\xb3\xda\xac1\xf2=8\xb8\xd7\ -\x01\xcf\xcc\xbf=F\x84\xb4\x9d\xd6d\x1a\xa7\xa3qG\ -\xb3^\xff\x8b2_\xaenYOoH\xab\xff\xd8\xc3\ -\xd3\xcek\xfd\xc8\x09j\x5c{\xe5\xc8\x7fG\x91\xb7v\ -\xf9\xb9w\x98Q\xf3\xad\xf1\xae\xda\x0c\xab!\xfe6\xb3\ -\xfe\xfb'h\xfd\xee\xa5k\xbe\xdb\xb4\xd9\xd6\xbe\xc1\xe2\ -\x89\xbc\xe4SV7\xae\xbb\x04\x1d\xbco:\xcd,:\ -\xe4Y\x5c\xa3f\xe4\xf5\x87FF/\x8f\xde7\xf9\xa6\ -l\xea\xdab\xd1\xe1N'?\x0e\x1e0\x1aM*\xbc\ -\x81ehp-\x870\xfb\x1e\xc7\xef\x1d\x1b\xf6\x83\xe8\ -t\xb2^L\xc4O\x02mL\x1f\xde|\xf5\x03\x99\xc7\ -\xef\xf4\xdb\xb58\xd5\xd9+\xbb\xc96\xa7\x86\xb7\x08\xb6\ -\xdb\xc8\xef\xdd\xef15^Yu\x1d\xb3\xba\xe0\xaf\xbe\ -W>\xc7{\xfa5m\xda2M\xa7\xaf\x83\x81\xb6e\ -\xe8s\xab\xaeh\xca\xf7\xbfq\xe0\x95\xdb\xfd\xdc/\xdb\ -\x5c;qI\xe3\xc3\xbd\xb3\xa9*\xc1\x06\x11\xee\xd6\xbd\ -\xe6M\x0aL\xb0]\x19\xa2l\xf1\xcaH\xf9\xf4\x89}\ -\xbc)\xceY\xbes-\xdb\x1d_\xfe\xf7\xb8\xd1\x19\xab\ -\xcc~6\x0aNd7\x8b{\xdd\x94\xa2\x9e\x0e\xedg\ -\xac\x08\xb2\x0bZ\xec=={\xf3\xf1.7n[\xfc\ -\x9b\xff9X\xab\xb3V\xd3%!yY\xaa\x8e\xa7\xd7\ -\xd9\x85.o\xa8\xc14s&'9\x10G\xdcoG\ -[\xae\x9e\xdfy~\xcc\xe6\xec\xab\xb1\x8d\xf6\x853>\ -5\xe9\xfbL\xdfc\x96k\xfa\xf1\x05\xfaA\xb9\xb3\x03\ -l.N\x1a\xf7i\xb9\xde\x8f\x9c\xa8@\xe3\xf3\x7f\xad\ -\xde\xec\xfcQ\xab\xbfU\xca\xeb)\xcec\x97[9\x9f\ -\xbe\xb3:\xf0\xc5\x05\xe7F\xa6\xae6\xdb\xdd\x1a\xe6|\ -T\xf3\xe7\x8e\x18}tp\xc8\xf3\x13\xbcK!\xa6\xbe\ -z{\xfc\xf7\xcc\xb5\xb6W\xff\xfa\xba\xa9\xce\xc8v^\ -\x1a\xc1\x13[\x12\x1f\xdcG\xb6\x8cuxD\x0e\xf5\xaf\ -\xf9w\x17B\xbbkD\xf4\x8e{_\x1a\xa1\xa7\x99\xcf\ -\xed\xde\xd2L\xe7\x8d\x8fr\xea)\xd5\xa4\x03\x9dvm\ -\x9e\xac\xaeV\xeby\xf8\xca;\xc3\xfdk\xeen\x5c'\ -\xcfje\x9ef3\xb3\xbeK\x0a2\x16>\xccf\xdc\ -A+\xea\xbc\x5c\xbe\ -\xd9jaV\xcd!l\x8d\x16\xf5\xaf\x9f\xef\x9c\xb4Y\ -\xc3\xd5\x8bXZC\xb9_\x1f\xffu\x91\x99fJ3\ -\xee\x9aeg\xcdoyF9\xbf\xb5+\xb3\xbb\xf9\xd4\ -w\xf3\x8d<\xb7\xec\x1d\x96\xd2\xd6,l\xddn\xcf\x19\ -\xdd{\xdcF\x13\xeb\xfb\xe8\xf8\x8a\xa5\x89^\x06\x015\ -\x0e9\x04\xb48\xd3f\xe2\xf7\xb7\xedU\xee?\x8b\x9b\ -\xf2YoV\x0b?O\x1b\xc2J?|]K\xae\x17\ -\x22L+^J\xd3\x97[\x98\xf1f\x84\xe7\xdd\xe0!\ -\xfa\x08\x95\xce\x0fI\x8e\xf2\xd8+\xbeQ\xddN\xe7f\ -\xdc\xfc\xd0\x95\x810\xbc\xcf\xc5iV\x03t0\xc3\xb2\ -\xe7\x8d\x88\xaes\xd9|-1\xe95\xd9\xc3\xf1\xda\xbe\ -!^\xc6\xf5L\xb7\x0e\xfb\xc1Lx\xab>\xad\x19\xb1\ -z\xcc\x8d7\x13\x8fN\x9e\xadN\x10\x06\xef\xebz\xef\ -\xeab\xfc\xc3E\xd3\xfb\x1fB\xfb\xfd\xfc[Sv\xf5\ -\xe9\xe5\xb9\xae\xbd\xfe\x93\x8d\xa63\xd6\xb6\xab\x81\x84B\ -o5\xefYw.\x05\xd5\xf7\xfcR;\xed~\xe3\xf1\ -\xddf\xd5b\x8cT\x0e\xbe\xc23\x09\x7fg\xc6\x89_\ -z\xd3\xb5\xd1\xeb[\x91\xdfW2Vg\x0e\xa8y\xfb\ -\xac\xca\xde\x17\xdf\xb4\xfdwz~Q\x22|:\xde\x7f\ -lo\xa9\xc1x\xaa\x14\xfc\x82\xe7p\xce.o\xb3\xbd\ -\xb3\xcb\x93u3\xd9*6J-k|2\xd6]\xfa\ -/a\xecN.\x1f\x17\xf8wp\xc7\xfb\xff\xf9u\xab\ -\xd1!\xc0\x0b\xfd\xc2\x95\xec1k\xbe\xcb\xacU\x17\x06\ -4\xf0\x990ud\xfc\xd2\x85\x87\x16\xddn\xb2f\xc8\ -\x9e#\xab\x17\xed\xac\xdd\xa1`JO\xf4%\xdb\x8b\xb6\ -\xea\xc1\xef<\xc3\x13\x0f=\xb9\xb4\xc2*\x81u\x92S\ -+\xe8f\x8d\xcb\xe3\xc7|\xfd/\xd6z\x9b\xab\xf1\x1b\ -\xc4/B\xef.\x9a8\xf7\xc6\xf4\xae\xd3\xea\x13\xab-\ -\xdd\x16\xbf\xd5\xb1oq1g\x14a\xfe\xbc\xd1\x9c\xd0\ -\xae\x7f\xbf\x0e\xb28jm\x9c\x10\x10lK\xae\xecR\ -\xcf@\x97}{\xf0\xb2s\x93o<\xd8\xfa!mn\ -;O\x0e{\xdf\x12\xf8\xde\x95\x99]\xcf\x91\x1a\x8bf\ -\xec\xbdz%\xb5\xdd\xcdv\x8b\xae\x9d\xfa:\xfa\xc8?\ -\xf1\x81\x1f\x1c\xbe\x7fIdwj\x93\xb0&s\xc6j\ -\x8d\x9c[\xe6?\xe6Y\xbc\xecg\xb0\xf5^\xee\xe1M\ -\xc6\xeb{\xc7\xe7\xd5\x1d\xea\xb5\x98a|\x99\x5c\x8e\xb8\ -\xa1f-\xbf5\xdb\xf4]vG\x1e\xfb\xf7S\xe8\xb3\ -\xb8\xee\x9b&\xf6\xab\x93s+.\xe3\xa2\xe3\x08\xe7\x95\ -\x93\xdak\xa5\xc5\xbe\xf81\xe7DP\xc1\x10\xff\xb6u\ -\xaf]V7W\xbb\xc1&U\xdf\xf8\xd6\xf4L\xf0\xe7\ -\x9dq\xbd\x92ek?2,`r\xaf\x03!\xdf8\ -m\xda$\xf4\xe8\x12\x9e\xfc(~\x22\xc3\xdd\xc4q\x80\ -\xf2g\xfbG{\xd4\x8e|\xf9rs\xe5?\xef\x92z\ -\xbfWWIq.\xb8\x98\xcd\x1e\xf3b\xf9\x5c\x8e\xc1\ -\xc2\xa4]&\x88\xb1\xbal\xff\xa7_A\xce\xd8\xd6\xd3\ -\xdb\xbdq\xaa{\xb3\xe7\xa5\xf8\x09\xcf\xb2\x08\xef\x1b\xa4\ -\x09\xf7\xb8\xdf\xc2\x84\x8bw\x1b\x11\xe3\xe6\xf5\x0a_\x82\ -\xb8\xbd\xb1Cn\xdd\x17\xd1v_\x9d^~C3\xfa\ -\xd9\x22\xf29\xa7\x11s`\x01\xc9\xcc7\xab\xdd\xdev\ -\xf1No\xc4k_|\x19\x13\xfb62z\xc4\xd5H\ -\xe7\xad\xc7\xbb\xe4\x0c>n\xd3%q\xee\x12\x02\x11\xff\ -G\x7f\xc2\x93\xb5\xfe\xd0?K'\xbb\xd6\xcb\x8a\xeb\xca\ -hp\xa3\xc9\x89\xc0\x93\x13\xfcgX\xfd\x9c\x14\xbcO\ -c\xd9\xd1/J\xb7s\xd2:\xb6I\xf0\xed`\xb2\xea\ -\xd1\xa5\xce\x8e\x8936\xfb-\x1e?\xba\xa3\xb3e\xff\ -\x96\x8f\x1e\xce\x083\xde\xf8x\xf1(\x8b\xb1\x8dv\xff\ -Pz\xdb\x89g\xb4\x94\x17t$\xd1\x8c0Ug\xb8\ -\xa4n\x9d\xa2M.V~\xbd\xf3\xe3\x88+O\xf5\x92\ -,V|\xeaY\xef\xd0\x95u\xaf\x1a9,\x8b{2\ -H;\x90\xe4\x05mp\xb0\x5c\xb0\x22 \xb6\xdf\xc9\xc9\ -\x8d\xdf\xd7\xd2;\x15\xe5[sd\xab5i\xef}Y\ -#\xb6f\x9f|\xd52b\xb0\xc7v\xaf\x96#\xb6\x7f\ -\xabW?\xec$g\xb8\xd7+\xef\xd5\xadr\xc3\x1a\xf0\ -\x8e}\xb7\xf7J$\x9b~?\x14io\xd4\xd6v\x9c\ -Wo\xd7\xcdHrd\xae\x89\x8ey\xf1\xe3/\xf7\xb7\ -u\x17\x05L\xd6{\xe6\xbbi\xb2A/\xb7\x99:5\ -\xd1~\x9fH\xca\x99\x17\xb39h\xae\x8a\x0f\xbb\xd3I\ -t\xa4\x1b\x10[4\x12\xee\x84\xbf\x1c7i\xed\xa0O\ -c~\x8e\xaa7\xb5M\x04\xbb\xd6\x04\xaf\x88\x87aM\ -\x9b.\x99GD\xce\xbb\xf2\x83\xb1\xd3z\xa3\xf9d2\ -Z\xff\xe6\xe0#]\xea\xf6\xcc5\xdcy8L\xb7\xd5\ -\xfe\x80\xdd\xd3\x82[&\x7f\x08\x09\x22L\x8fjZM\ -h\x8f\x94\xc6\xb6S\xb4j\x866\xfc\x1a\xd6\xe0\xad\xc6\ -\xf5wo|\xff\x193\xd8>\x7f]\x8fh\xed\xb3l\ -\x8fFJc\x16\xab\xb4\xd5%\xb6D\x1c\x9d\xc9c\xd4\ -\xf7l\xf2|Y\xd7\xa1G\x1b\xb0u\xb9\xf1K\xbd\xce\ -\xf6\x9e\xe3\xfdj\xf1\xa4\xda\x8c\x0b>J:\x0d\x88\xd5\ -K\xff\xd3arW\xf7\xf4=\xff\xa5\x85\xb6\xe5\x84\xb9\ -a>\x0d\xa632\xa6\x0e\x1f\xff\xc6\xf2\xafP\xfb\x80\ -\xe9\xce\xef7&\xf4\x18\x10\xc7\xaa\xd1\xe2\x8c\xf2\x93\xab\ -\xea\xe6\xc4\xc1\xf1\x96;\x8dr>\xbeY\xb89\xf8\x00\ -+9b\xf0=D`\xaa\xcc\x06\xad\xf7\x07$\xf9\xf6\ -\x9e\xd6\xc2\xcfq\xc6D\x87\x9d\x9d_\xea&Y\xf4o\ -\x15\xe9\xb6\xccs/c\x5c(\xa2\x7fD\x0c\xc3\x1b;\ -j\x1bu9\x1e\xd6y\xe0a\x9b+A\x93\xdf\x8f\x1e\ -\x18\xf9\x99\xd8\xf3\xb8FT\xb3\xbb\x7f\xeb1u\xf3\xb3\ -Ng\xcdo\xbb\x93az\xe5\x96\xff\xdd\x9d+b\x0d\ -j\xee\xbag\x8a\x04\xc4\xe3\xec6\x0b\xba\xc6}\xed\x91\ -\xd0\xd0B\xc5\x88x\xdc\xc0m\x06\xc3\xb0\xaf\xf7$'\ -\x86\xe9)\xa4\x02<\xfc\xc69\xf4\x8e\xd5\xd4\xa0\xcd\xc5\ -\xad\xe8\x17\xcd?\xd76\xce\xbd\xc8\xa9\x1f?\xb7\x0e\x91\ -Q\xc7\xc2Q\xdbo\x0as\x87\xf2F\xf4\xa1a\xd8\x14\ -\xe6\x8aE\x97Fh\x11\xdf\xda!\xfa=\xdbU\xe9\xd2\ -M\xa5\xc8\xa6.\x9ai?\x12\xc7\xef\x8b\xea\xb6\xda\xa7\ -\xf9\xfa\xcf\xeb\x0f\xfd\xe5\xe9d06\xcfe\xdd\x80\xf0\ -L\x86y\xd2\xc8\xb6\xfd\xaf\x9b$\xce\x0f=\xefS\x7f\ -\xac\xfa\xa5\xd5W\x1c\x13\x02\x88\xfd\x13\xbb\xe6\x9e\x9a\xef\ -\x16}w\xe1\xf0\xcf[&\xf7\x8e\xba\x97\xc9\x08_9\ -\xb3\xcd\xbe]\xa3\x07\x0e\x0b\xfd:\xfb\xdb\xf4\xd9\x86^\ -ji\x1b\x88avZ]w.\xe3\x8d\x1c\xd1jM\ -\x07\x93\xc0K:./V\xc1o\xb3I\xaf/\xef\x8f\ -\xe4\x18tk\xaa\xd9\xf3\xfc\x0bc\xe6\x05eS\xeb1\ -ow?\x1f}\xf1\xfa\xcf\xe8\xff\xa6\xcf\xd9\xb7\xb7\xd7\ -\x9b1'\xf7\xd7\xdc\xcb\xd6ws\x1d\xd5rWd\xc2\ -\xe9\x88\xe9\xc4X5\xe6$\xd2a\xf7s\x87\xd6n]\ -{^[AL^\xa0\xd4G\x97\x18\xba\xa5\xdf\xe6\xc3\ -:\xdc\xa9['\xb57u9\x8a\xfe\xc84\xeb\xf6\xb3\ -m{\x87]\xf2\xeb\xef\xd6\xd8\x8b\xf73\xf9\xe5\xfd\xd7\ -\x0c\xfd7u&\xae\xda6\xad\xf3\xba\xe6\x91J\xe3\xe6\ -\x1b\xeee\x98w\xadG\x5c\x1a\xbc.d\xdc\xe2S\xf5\ -\x88\xc9\xec9\xad\x1e\xb1<\xbb\xf4\xd5%\xea\x1b+\x9b\ -\x12FV\x9b\xcc\x88\x16\xadm\xfdf\x84\x12\xfa\x19F\ -\xaa\xcc\xe7_l7\x84o\x8f\xbcOx\x1f\x8dR;\ -9\xacc\x1d\xa2\x85\xc6<\xe2\xdd(\x97n1\x83\x08\ -\xe5\xe0\xd5}g\xae7\xad=\x87\xd0\x5c\xab\xa5\xcc\xec\ -3\xf6fH\xaf\xa4\x07\xe8OG|\xec\xbfo\xc8\xdc\ -yZ\x17\xedj\xeeX\xdb\x8bh\xd5\xac\xc6\xf8\xc5\xbd\ -\xdb\xd6\xdf\xd0b\xd2\xbeG{\xfbr-\x0e\x1e9\x90\ -k\xbdr\xe2\xe0Y\x0e\xfa\xcf\xd0\x147v$n\x0e\ -S\xc9\xd0KRz|`\xba\xcb\x85\x88\xf3{g\xe5\ -\xee\x1b\xa7\xefy\xbd\x9d\xf3\x05e\xfd\xc0v7:E\ -\xb3\x9e\x8fq\x19\xd6\xf7\x90\xe7\x93!\xad\xd0\xb4/>\ -\xef\xb9~sN\x0b7\x8d\xe17C'\xadm\xf3\x00\ -=\xc3\xe5~\x92\x92G\xffK\xad\xcf?i\xa8\x1f\x93\ -Nh\xf6\xd66\xb4a\xde`\xd4\xde[{\xeed6\ -\xc9|\xa4L\xec\x1d\xf9\x15\xe9\x19?}S\xd6\x0e\xd4\ -{\xbaA\xd5\xd0B=!\x9f\xd8\x9b\xb8\xf3\xe4\xa4\xff\ -\xc6\x1a_\xad\xad\xbaanGb\xf2y\x82\xa1J\xd4\ -\xbf:_\xc9\xdc\xdbw\xcb\x1eUu\xed$\x8b\xbf\xd7\ -[LVE\xbff\xbe\xbb\xa7\xc9L:\x1c\xceza\ -g\xb82\xf9\xf5Q\x1de\xd3\xd6\xfb\xf5B\xe3'\xaa\ -\xb9G\xdf5@\x8a\xe1)W^W\xdb~D\xab\x06\ -=\xb5-\xbf\x9f\xd5g\xec\xbf\xe7\x19A\xe8\x07\x13\x84\ -~@g\x0e:&?}S\xdb!-\xb0%\xd7\x9a\ -\xa1\xff>\xbe\xc3\x16\x06\x11\xb3\xc5\xdcpO\x96\xaf\xf5\ -h\xe6.\xd5\xf53\x1e\xaa\xce~}\xf4\x84\xf5\xb6\xbd\ -\xc8\xea\x7f\xd6\xc1r\xe7]\xde\xbbq\xc7\xb3Z\xa7\xd5\ -\x09[\xea5=^M\x8bX\xbb\xbfy\xf0\x14f_\ -\xa4M\xec\xe8\xb7\xbb/\xf7x\xd2\xae\xf3\x0dU\x99c\ -\xd8!s\xda\x07O\xbf\xc7\x1c\xcb\xd1~\xd9\xc1r\xf8\ -\xec\xad\x1aF\x84M\x84\xde\x8ba\x0e\xed\x17\xd6\xe8`\ -\x93oc\x9a\x95br\xe3\xb6\xd7\xb3\x96\xc1[\xb4\x08\ -\x7f\x9b6\x06\xfd\x1a!]jo\xd6|+\xf7a\x1e\ -\xb5\xba\xc4\x06\x04\xd9\xa8\xdf\xd0Q5e\xfc\xd4X\x8c\ -\x14\xef\x91\x17zv\x5ct\xab\xf7\xb9m\xee;\xf5\xbf\ -\xdc\xef\xb0\x8d1\xcet\x8b\xc6\xe2e\x1e\xbb\x947\xb5\ -\xf1\xb7\xe9\xa5\x7f\x97\xdct\xe9\xb9\x03\x93\x91v\x0a1\ -\xc0\xb0\xb5\xef5k\xaan\x18\xf1\xe9\xda'\xfd\xfaK\ -\xea\xeb\xe5)3\x1f\x05-\x1b\xd1\xf8L\x07U\xd3\xbf\ -\xfe\xeewy\xa3\xa5I\xe8\xdd\xbdd\x5c\xaf\xcf\xb9\x87\ -w;\x99\xac\xf0\xf3\xbfk\xd0\xef\xd6\xa4Z\xca\xa7\x1f\ -\x7f\x9a0e\xbbZ\xf7\xb9\x03-\xe2FO5\x08\xe8\ -\xban\xd0\xf6\x7f]\x86\xabX\xb6u1\x22F\xdc\xce\ -\x1d\xb5K#\xb9`d\xff\xd6w\x1f\x8c\xe9\x1a\xe1\xa0\ -\xd9\x92\xbb\xa4\xcf\x12\xbb\xe5HC\xdc\xbcC\x8bh=\ -\xea\xc5r\xc3.\x8b\xe69\xab\x0d\xeb1\xef\xe4\x7f\xde\ -\xbe\x83\x8fv9\x18\x96\xdf\xb1\xf5\xdd\xa1\xe8\xdbO\x8e\ -\xd8\x9e\x1fb=4\xe4\xb9\xadMv\xdb\x81\xa7k#\ -\xbd;\xc5\xb9\xd9\xbeNC\xbe\xe4em\xb5\xf9+\xe7\ -!\xd1\xf6\xeb\x97eC\x8ef-\xa8\x994\xf6\xe6\xd2\ -\x7fz\x06\xb9G\xa6\x04\xc5\xa3/\x0e[h\xfd\xc4G\ -\x89\xc8\xbe\x1bc8>\xfd\x83ql\x0a\xdaJ\xc3\x09\ -\x17\xff&<\xf2\x07\x1f>\x1f\xd7m\xc5\x93\xcfz\xe6\ -\xc4\xa4\x83/\xbe\x1d\x1ci\xfdU\xfd\xe5{\x86\x85\x0f\ -\x19\x96\xbd\xda\xdd\xd0$\xe6D\x80I0\xf1.\xea\xc1\ -\xb2!\x17\xcf\x9d`\xaei\x1e\x13\xbfJi\xdel\x9f\ -v]?\xccn\xdb/0\xf6\x08\xfc\xb3\xc7\x13\xaf\x8b\ -\xbe\x11\x83\xf3L\x8dbB\xcey\x0e\xed\xeb;7\xdc\ -6:bl\xae\xcb~\xf4D\xd7\xdc\xce\xa1\x84\x07R\ -\xecn\xed\xff\xd8\x93\xf1a\xc7\xbd\xa1S\xf7\xac\x8bc\ -\x9cE[x*\xbaf\xbb\x8f\x19~\xdd\xb2}'\xcc\ -\x1b\xf2\x06\xcd\xe0\xe7\x87\x10\xdf'\xf6\xb7\x91\x98\xe9\xe3\ -\xf7%\xe5\xc3\xd0\xed\x8e\x0c=dCL\xb0\xf4\xbe\x1a\ -\xfeiB\xa3\x03\x99K.\xeb{\xa9(\x9f\x1e\x81\x98\ -\xdd\x88\xd1\xea\x8d\xda_ne\xb9\xa4\xaes\x96\xde\x83\ -\xcc\xa6\xcd\xe3C\x92?\x0c\xcc\xf6\xdf\x8e\x1e\x14i\xce\ -\xb9P\xb7u\xb3\x86\x97\x06-m\xa3\x17rr|\xbe\ -A\xac\xb6\x9d\xde\x9e+\xcdV=\x98\xb0\xe8B]\xce\ -\xdfs\x89\xc8\xc7\xed\x86\x9b %\x1d\xc9\x01\xad\x82\xb3\ -\xa3\xf3kOz\xec\x917\xe6h<\xd2W\x8cx\x07\ -V\x9e\xe7\xee\xe8B,98,%\x06\x09\xfb\x88\x87\ -\x1e#\x8cb\x06.\xf3\xa8\xbb\x93\xccWC\x9b>\xde\ -\x7f)\xd2\x9f\xe3\xaa*\xf7\xcb\xfa\xe1\xd0\xc3\xfar-\xa4T\x0f\ -\x1a0z\xf7\xb2\xb7\xa9\x8f~\xe4\x8e\x5c\xe3\xfa\xec>\ -\xb1(\x1c)acN\xa5\xb5\xbf\xa1\xe2r\xd4\xd9\xb4\ -\xad\x0e\xcb\xa9\xee\xf0\xc3#\xde\xbal\xf7\xf9Z\xc0\xdd\ -\xf2\xa9\xf1+\xa5+}9#\xdf\xbb\xdf\xff\xef\xd4R\ -\x8dh\xff\x94\x95\x0b\x88#\xdf\x9e\x0c\x9a\x9e?x\xc0\ -\xa4 D\xa8\xedUagG\xcd\xadS\xfb\x7f5>\ --\xb4\xb6\x7f\xfaj\xa7\x9d\xe1\x1c\xe2\xc8c\x0b\xe5A\ -n\x93yK5N\x06\xbe\xbbP_\x95\x196%j\ -\xcd\x0a\xa4\xf7oe\xaa\xdf\x0e\xccP\xaeC\x8cDS\ -\xae\xc3\xd8\x969 ^\x0d\xd91#\xfc\xf5-\x0f \ -\xec$%7|TC\xe7qK\x17\x13\x95;\xeaL\ -r\xc4\xe1\xd0]\xce)\xc4\xc0\xe0\x9e}&\xe43\x02\ -_\xdcP7\xef2ou\xb0E\xe6#K\x9b\xe4\xd8\ -\x19W'\xf1\xfa\xb4$\x1a\xb9\xa9\xc7-\x18R\x13\x1d\ -\xb6\xe1\x8d\xb7\x8c\x08_\xb0<\xe2\xca\x89\x84\xab\xe6\x8c\ -\x18-\xa6\x17\x9a\xfc\xd3.Mw\xd8>D\xa6'R\ -\x05\x1d\x8f>\xb4\xf8y\xf6]G\x15o\x15\xf3\x80\xb0\ -\xfc\xd1H\xa1\x8b\xab\xb3Q\x09\x99M+rr\x5cg\ -\xe9\x9e\xfb\x97 fw:\xec\xf82a\xe0\xc2e\xc9\ -c\x89\xe4\x08\xf7\x8c\x1d\xe6\xc1\xdbR;\xab\xe8\xde\xbc\ -\xe8t\xfc\xc1\x85\x1e3\x03\xfc\xaf\xd6\xbe\xe8b\xfb\xe8\ -\xda\xccN\xb9_\xf4c6\xd9\x5c\xbc\xf3@\xab\xb1\xd5\ -\x93\x9c\xb9\x96\xd7\xfc\xefn\xbb\xe1;q\xd6\x15\x8ei\ -\x7f\xb3\x85D\xcd\xe3G\x9e[\x052G\xfb,M~\ -\xdf\xc6\xe1\x8c\xca\xd7\x1e[\x18\xc17\x89\x01\xce\x83\x07\ -\xaeP\xd35\xfc\xd9*\xd4\xd4\xb5\xc1\xd8\x94k\xc3\xee\ -^\xb9\xa1rzo\xbakw\xa4\xe09X?gn\ -GV\xb2\xf1\xfa\xe3Q>\x8f7\xa5\x1f\xe7\xe8\xeb\x13\ -\xf5j\x18\x22\xf6\xa1\xd2c\x9bF\x80\xf5\x8c\x8e\xbd\x9f\ -u\x9c\xbf\x02-\x7fj\xf2\x97y\xfb#G\xdc\xf9\xaa\ -E4\xd4PR\x0a\x9e\xf83b\xdf\x82\x05+\x9a\xba\ -\xda\x05\xecF6\xf4q\xafnGf<\x89\xe3|\xee\ -\x01\x8ap{\x87\xc5c\xd5\xc9q:\xc4\x8d\x08\xf7s\ -\xb9\x8b?+\xa9\xde\xb3\x9f\x12\x95k\x85\x9e\xd3)\xe0\ -K\xf4\xfaUwn\xab\x87\xab\xc4\xac\xf9Y\x7f\xc2b\ -\xc4\xff\x0f\x8fU\x03=\xf7\xef\x8fK\x8f7\xdf\xf7\xe9\ -^\xe0\xc2\xe3\xb3f\x84~tr\xb8\xf2\xa0\xf7!\x86\ -\x97z\xda,\x820E[\xb4\x860\x8bpw\xcb\xd8\ -\xc4\xd0C\xa2\xa1K\xf7\xc8\xef\xef\xbblB{\xfci\ -\xfd\xa1\xd8\xcfw\xbb?m\x9f\xbe\xdbA\xdb\xe1q\xbc\ -uk_\x15W%\xcd\x03\x9d\xda\xb9\x1c~\xf1\xcd\xa8\ -\xe7\xd5\xcf\xd9>\x13W\xd7\xf3\xb7\x9e\x911\x17)\xd9\ -G\xfe\xfdt\x1f\xbd!):j\xe1\xa5<5\xf7\xe9\ -\x84\x1da\xef\xd2\xa9\xdd\x9b6Zis\xdc\xc8\xd3_\ -\xf7|2<\xf4\xe2[V\xcbg\xb7\xee\xe4\x05\xef~\ -\xcf\xbbY?u\x9a\x11o\xdcuu\xc2\xbbi\x8c\xcd\ -\xbeq\x0d\xd0\xcbu\xd60/\x9e\xf1\x8ex\xd9q~\ -\xcf\xbc\xc5\xbbs\x8f\x91\xa6\xf9\x9d\x08\x82C\xc4\x9c\xb7\ -\xd9~\xb1\x1fb0G\x8e4\xf5\x9d\xfd\xbe\x8b#\xb2\x01\xbe\xcf\ -\x9a\x9f>\xb7\xddS\xfb\xc0n\xf6m\xb3C\xac;2\ -;Yu\x0fvq6\xfdQ\xab\x07\xd2\x8dW[]\ -\xf8\xdc\xb56\x9a\xe5\x07\x86\xdb\xd55\xd3b\x93\x0f\xe8\ -q{\x1cLV\xc2\xeb_H,t\x1b9\xfa\xad\xba\ -\xea\x86\xfc\x90\xfe{T785\x8b\x1ap/om\ -_\xe7\x11\x81\x88\x16\xde\x98\xacI\x8f0^t\xd0\xc5\ -\xec\xfekD1\x09\x0fM.G\xaa\x10>mB\x9a\ -\xfc\xdc\x7f \xdby\x87\xdf\xec\xf8\xcb\x0dk^~7\ -\xa2\xe0\xca'\x87\xb6\x1f\x95\x08c\xada\xdf\x94\xf4\xea\ -\xf0\x9a\x8c\xe8\xab>.\xa9\xb7\xe6\xbe\x03\x93/\x87\x14\ -\xa8\x04+[\x85\x8ckqaD\x7f\xcf\x90\xf9\x93\xeb\ -0]l\x87\xd6^\xa6\xa2\xd9\xf3\xcd\x9au\xba\x9d<\ -\x8f\x0d\x8f5~W[\xdf\xfaXC\x1f\xff\x19\xaf\xee\ -2\x82\xa7\x10\xfbZ&\xaf\xcfU\xcb9\xaa\xd2\xf6A\ -\x13F\x8bGm{g\xcc\xf68\xf6/s\xc0<\xec\ -\x0c\x9c\xb0\xca\xcc\xcb_\x85\xb0Z\xa5\xbfO\xf9\xe0\xcc\ -\xec\xa9#\xbc:\x12\xc4\xed\xb6\xdc\x14'\x8f\xb3\xc7\x12\ -\x17\x8df\x9c6\x19e5\x92\xad[\x7f\xfcp\xdf\x1d\ -zy\xef\xc7\x8e6#\xe08L%\xec\x22R\x0f9\ -e4\x9a\x12\xa7K^\x8a\xef\x1c\xf9Z\xc5hf\x8d\ -(U\xcd\x8b-\xb6\xf4\x0aHX\xa5\xc2\xbc\xeb\xa5\x19\ -\xa04h\xc9\xed\xc9\xb7\xdfL\xed\x98\x98\xa8\xa4\xd5k\ -\xdeR\x13%\xadC\xf6\xb9\x83\x9auGH\xcb\xbb~\ -*\xe8\xdd\xb0\xc6\xc1V\x7f\xf5\x99\xb8w\xd8\x13%\xed\ -\x13G\x97\xb6%\xb2\xdc\xb7\xeah\xe8_\x9f];\xf8\ -\xe1\x92C\x05S\x22\xd2\xea\xed[\x17\xed\xc8RvJ\ -Zu\xed\x8b\xbdC\xf3\x89\xb7\x9c\xcc\xb6\xaf\x19\xb5\xb1\ -\xb9\xe9\x7f\x87w\xae;\xb9\xf4\xc8\xe2\xf5\x83\xae>\xe8\ -\xdd\xcc\xdc\xf5\xb9\x9a\x93\xc7\x1c\x8d,\xff\x05\xb5'\xf6\ -\xd8>{\xfb\x9a\x995\x062\x1f\x1bjd\xf5Z\xa0\ -\xfdz\xecv\xf3\x9a\x9a\xff\xde\xcfz\xa21M\x93 \ -\xd0\xef\xff;4\xc9>\xf8,Ah)\x0djs\xed\ -r\x86r#U\x22XS\x7f\xc9^w\x17=oc\ -\x82\xb9\xa1\xa6\xd5\x8e\xbd\x1e\xdd\x1b{]\xe10\xeb2\ -\x88o\x17j\x06\xd5\x98Z\xa7~\xb2\x81J\xcc\xc8\xae\ -\x17\xd8\x86\xd7\x92//\xb2\x8b\xbd\x9f\x10sCyP\ -|\x07\x22\xef\xd3\xe5\xc1\xfd\xdexg{\xdb\xda\xfd\x8c\ -K \x96\xadw\x1cT\xaf\x8b\x8aWF\xe7w\xf9g\ -\xeb\xf6\xad\xf7\xc9\x09{\xbcG\x13\xc9\xb7\x82\x8c\xf7\xf5\ -\x9a\x10~*a\xcfG\xee}\xbf\x99c\x10Q\x9e\xee\ -z\xeb\xadZL\xbf\xdb\x81Zk_+\x8dZ\xe7q\ -\xa1Y\x1c\xc3\xfc\x87\xb3\x97\x9d\xb2W7\xd3o\x7f\xfb\ -\xa2\xfd\x8d\x1e\xd6\xc8\xf4(A\x80\xdf\xbc\xb1\xcf\xdb\xe0\ -&?\xafk\xfe\xfb\xa3\x9dO\x00\xef\xbaM\xff\x83\xb5\ -\x01\x1d\x16Z\xc1\xc6\xb6u\x9a\xf8=\xfd\x1f\xb3K\xef\ -\xa1y\xb9\xe7\xfe#\xb4\xb2,\xefE\xc5\xe87\xef9\ -\xa3\xf6\x87\xfe'\xa3\x875v;\x12\xc1 \x08\x1c\xc3\ -\xe8bT\xf3\xf1\xda\x09\xe1c\xde\xec\xee\xe1oqx\ -\xf2A\x0d\xc2\xb1Y\x8d\xc6\xa7U\xfa\x1f\xb6Y\xebd\ -8m\xeb\x94t=\x8f\xe9\xe9uw\xd7b\x0e`k\ -\xa1\xa7\x987\xbf\x18\xdf\xce\xe7<\xef\xa0M\xffK\xf1\ -\x8f\x09\xa3\x1f7T\x1b\x13\x1bTn\xd5\x1e\x16\xfa?\ -\xa6\xde\xe9\xcf\xc9\x87\xdd\xd5'\xb6\x1f\xaaf\xda\xdc\xae\ -\xff\xab\xa9\xe1\xf5\xda\xfd\xa4\xc2\x16>\xf3\x03L\x86u\ -\x8c\xe9\xb2s\xa9\xd2\xe9\xbd_\xfe\xa7\xa5j\xa5=\xbd\ -\xc7\x193\xffQ\xdf\x16\xb5[\xf4\xbc\xe0\xdfE\x17\xd2\ -:\x8cl\xfc\xb8\xc3\x95:\xcc\xb9\xebX\xa75\x82\x0d\ -\xd8W\xed\xcc\xdb\x8e[\xdcn\xd1\xd3\x95\x8d\x09N\xe3\ -\x0f\xdb\x03\xd4#\xb6\x5c\xdfa\xa0t\xba\xa1\xdd\x943\ -\x1a\xd35\xb3~\x9a\xf0j\xd4Q\xbd:\xac\xbfg\x0c\ -s\xca\xfb\x89\xe1\x86\xebG\xf8\x9b\xaf~\xa2F\xfc\xb5\ -\xf65\xa9\xdc\xc0\xa2\x87\x91\x96\xb6\xdfr\x08[\x0d\x1f\ -\x08\x1c\x11\ -\xe8\x15\xd5\xf2\xbe\ -\xeaA:\x8d\xbbr\xdb\x05\x02\xf8\x07\xbb\xa2Z\xcf\xaf\ -\xba\x10K\xe3Pb\xfc\x0b\xe0^\x8fUm\xdf\xff\x0e\ -\x10\xc2\x12\xf0\x11I\x88{\xf0+\xeeV\x80\xb9W\x83\ -|`7K\xc0W,\x01\xfe\xc1\xb7\x5c\xed\xd3\xfd}\ - \x85\xc6\xa9X\xfc\x0b\xe0\x1ebK~\x0a0\xe7j\ -\x90/\xf8\xb1\x04\xe2\x86\xa5\xe0\x1f\xe2\x8b\xd5\xb6\xde\xef\ -\x07\xf94nK\xe0_\x00\xf7\x90_\x10\xaa\x00s\xad\ -\x86\x8a\x81P\x96@\x0e\x89\x08\xfc\xcfb\xfdI\xb9\x1b\ -\xcbu\x11\xe8\x90,\xcb\xa64h\x93,\x0bm\xea\xff\ -\xad\xf5\x114'Y+\xf4\x05~O\xff\x9b\xa5\x0e\xf5\ -=\xf8~e\xaf\xa1|\x00\xb85\x13\x83\x7f\xc81\xbb\ -\xa5\x00s\xfc\x05\xf8Fx\x5c\xa1G&\xad\xed@&\ -o\xecI\xa6\xed\x9fHf\x9cYJf^\xb6#\xb3\ -o\xed\x22\xb3\xfd\x0f\x90\xb9\x0f\xce\x91\xb9\xa1\xee\xe8\xe7\ -Y2\xdbo\x1f\xfa\xbd3\x99yi\x1d\x99\xe1\xba\x88\ -L\xdd3\x86Lfv'\x93l\xdbS\xcf\x85\xe7\xc1\ -s\xad\xaa\x04=\xf8\xd0\xb8\x16>\xfb\x90g\xf8\x1b\xe6\ -\xeb\xe9\xd2\xe7U\x17\xe3+u\xe702\xf3\xe2\x1a2\ -\xe7\xbe+\xc9\xfe\x18JrS\xbe\x91\xbc\x9c4\x92\xc7\ -\xce#I\x1e\x8f,up\xb9\xe8\xefrI^v*\ -\xc9I\x8a!\xd9\xefC\xc8\x9c\xa0cd\xc69K2\ -e\xdb\x002i\xb5\x01\xcd\x17\x14\x9a\x16\x92i\x5c\x0b\ -\xe7\xf28*\xc0\xdc\xe4\x07p\xd6\x11\xafNZ\xd5\x86\ -L\xdd=\x86\xcc\xbe\xb9\x13\xe3\x8b\x9b\xc1Bx\xe4\x94\ -\x8e\xe7r\x0e^A>\xc9M\xfdN\xe6G\xdc&\xb3\ -\xbc\xec\xc9\x14\xa7Ad\xd2\xca\x96\x94\xacPL\x19\xe1\ -(\x84{\xb0\x0b\x1e*\xc0\xbc\xe4\x83wt\xfe\x92\xed\ -\xfe\x87\xce\xa5\x05\x99\xff\xea\x16\xc9\xcdL\x92+\xbeK\ -\x1d\x88G\x00O\xc9{r\x99L?f\x8ee\x0c\x9f\ -\xffT\xfa\xde\x14\xc1CV\xf1\x1cR\xb8o\x90\xa4\x00\ -\xf3\x92\x03\xde\xbb\x229\xbd\x96,\x88~\x86\xcee\xde\ -\xaf\xc3\xbb\x88\xc1\xcb\xcb$\xd9\xef\xee\x91\x19g-(\ -]\x01\xf8\x81b\xc8\x85$\x1a\xe7|\xfc\xc3\x9d\x93\xaa\ -{7\x03\x9d\xaf\xa45m\xd1>/#\xd9_\x9e\x91\ -$\x87]\xa9x\x17\x1e\xc3m9\xf6\xb3\xfc\x8e\x83\xf3\xfd\x1d\xf6C\ -\xffB\x1a\xc8c\x15\xd5\xdd`W>\x8eK\x07\xc0=\ -/+\xb9\xb2\xd1T\xa1\xe3\x17\xd3\x00\x9bUT\x8bD\ -q\xf1\x8f\xe4=\xf0\xfc\xdf\xf5\xdc\x0b\x8f\x82\xf8(2\ -u\xd7\xa8_A\x03\x8a\x8f\x7f\xb4\x07\xa0\xeb\xfdJy\ -\x0f\xf6\x04//\x8b\xe4e\xa7\x90\xdc\xac\x14\x1c\xeb\xe1\ -\xe5e\xffR\x9f\x12\xfbs\x18\x99\xb2\xb9_E\xd3\x80\ -b\xe3\x9f\xb6\xf1*T\xcf\xe7\xf1Hnf2\xf6\x19\ -\xe6>\xba@f\xdd\xd8\x86cy\xe0\xb7O\xdd3\x16\ -\x9f\xc3\xd4}\xe31\xff\xc9<\xbf\x92\xcc\xbe\xb9\x83\xcc\ -{z\x19\xd9\xefo\x10]\xa4U\xdc\xbc\xd0\xc8{q\ -\x9dLZ\xd7\xa9\x22\xe3\x06\x8a\x8b\x7f\x88\xd5\xaei\x87\ -\xed\xfb\x8a\x18\xbc\x9ct2?*\x98\xcc\xf2v\xc4\xbe\ -C\xbc\xcf\xd6-\x04\xf2;\x04r<,u\x8arC\ -\xe0\xe7\xca\x968\xb6\x04r\x1ar\x02\x80>y\xf9\xd9\ -\xf2\x9f$\x97Cf\xfb\xee\xa6rP*\xc6O\xa8\xb8\ -\xf8G\x00~=y\xfbv \x0e\x98\xfb\xd8\x83Ls\ -\xf9\x97L\xb25,\xc2o\xb9\xce\x98nal\x19~\ -&\xaf\xefL\xa6\x9fZ\x80\xfd\xfb 7\xe49xH\ -\xfe\x00\xef\xa9 9\xa0\x98\xf8G\xf8\x00\xbe\xcbI\x8e\ -\x93\xdf>\xb2\xf3\xc8\xfc\xf0\x9bd\xda\x81)\xe8\xfc\xb6\ -\x90o\x5c\x9e\x9fg\x80\xf8U\xfa\xc9\xffpN\x89<\ -\xf3\x0b\x0ab_\x92\xc9L\xe3\x8a\xa0\x01\xc5\xc3?\x9f\ -\xef?\xbf&\xb7\xfd\x03\xdd\x11\xf2\xb6\xe0\xb9\x15\x1a\x7f\ -\xa5\xe9 y\xc3\xff\x90\x1e\xe1D\xe5\x99\xc8e\xf0\xc8\ -\x9c\x80\x83\xb4\x1c\xf8\xcd\xf1\x8f\xce~\xc6\x99er\x8a\ -\xe3\xf1H\xf6\xbb\xfbX\xbeS\xb9\x01\xbf(\xd6\x06\xe7\ -t\x85\x1e\x99~\xc4\x8c,\xf8\x1a!\x87u v\x92\ -\xfe\x13\xd9A\xe3\xe5\xed#V,\xfc\x83,Ez\x15\ -\xd8>2\x0f\x1e\x97\xccE\xbac2\xb3\x07}\xe6+\ -\x87\x96S\xb7\x0f\x22\xf3\xdf\x06\xc9\xbe\x1e4\xf2\x9e]\ -!\x93V\xb5&\xe5\xc8\xbf\x14\x0c\xff:8o\x87\xe4\ -\x14\xc8\x8e\xfb\xb0KdR\xe5\xc5\xd5\x04h\xa0)\x99\ -\xb2\xb1'\xd6\x0de\x1d`o\xa6\x1d\xfaW\x9e\xf4\xac\ -8\xf8\xc7z\xb4\x11\x95\xbb#\xdb.\xe1s\xaf\x10\xb8\ -\x17\xa0k\xec\xc7x\x1f\x223\x0d\xe4=\xbbJ&\xd9\ -\xc8\x8d\x07(\x0e\xfe\x11MC\xfe=\xe4V\xcb2@\ -\xdec\x9e\xaf(\xb8\x17\xa0\x81\xd4\x1dCIN|\x94\ -L\xeb\xe3f%\x93\xa9{\xc7\xc9\x8b\x07(\x08\xfe\x91\ -\xce\xbf\xca\x00\xdbg\xb2\x0c\xd0\xf3\xb1\xaeWY\xf2^\ -\x02\x1aH?1\x0f\xdb\xf4\xb2\x8c\x9c\xc0\xc3X\xbf\xfc\ -m\xf0\x0fg\xc3y\x84L\xf6\x12\xd8\xf7`\xe3)X\ -\x8eu\x09:\x07\x1f#\xe4\xfc\x80\x9c\x92v@\x8c0\ -\xd9\xa1\xbb\xfeA\xef?\xbfR\xea\xd8:\xe4\ -\xd0\xa6\x1f\x9eYu\xce\xbe\x00\xdd\x83\xbe\x22m\x9c\x00\ -\xe2\x97i\x07\xa7\xca\xba\xee\xca\xc7\xbf\x95\x1e\x99\x13|\ -B\xaa=\x80\x0165\xbeW\xa5\xe8r_\x04\xfe\xc1\ -'\xc0\xf9\xf1I\xca\x95\xf3\xc8\xac\xab\x1b\xab6\xfe\xe9\ -\xfb\xd8`\xb3K\xb7\x05h\x0f\xaemV<[_R\ -\xb0\xd6\xc7\xb5\x05\xa4\x1d\xb9\x8f\xce\xcb\xaa\x03T2\xfe\ -up\x0d\x05\xb8G/\x15\xfa\x91\x1d\x9d\xb6gl\xd5\ -\xe3\xfd|(\xf4yIwG\x15\xe2\xcc\xf8n\xb1\xf4\ -\xbc\xafr\xf1\x0f\xf1\x91=cp~\x9d4\xa3 \xf6\ -\x15}w\xa6\x8a\xf1~>\x80\x0c\xd8jJr\xd3~\ -H\xb5~NR\xac\xac~\x80J\xc6\x7fSd\xc7.\ -\x90:\xd6\x0b\xb9a\xf8\xfe\x5cU\xd1\xfbK\xe0_\x17\ -\x9f_\xf6\xc7GR\xad\x1f\xf2\x16Sw\x0e\xaf\xc2\xf8\ -\xd7&3/\xae\x95Z\x07\x86\x5c\xcc*\xcb\xfb\xf9\xb0\ -\xb2\x05\x99\xfb\xf8\xa2T\xeb\xe7\xe5f\xcaj\xfbT.\ -\xfe-\xb41\x0e\xa5\x1a\xc8^\x84|\x5c\x9c\x93Y\xd9\ -8\x94\x05\x10\xee\xb2\xfd\xf7K\x87\x7fv.u\x87\xb8\ -*\xe3\xff\xf6\x1e\xe9\xd6\x9e\x9f\x8ds\xed\xaa\xfc\xf9G\ -\xf4\x0by\xaeR\xc5\x03\x10\xdf\xcc\xbch+\xcb\x19\xa8\ -\xba\xf8\xcf\xcd\x90w.D\xa5\xe1\x1fp(\x95\x0c\xc4\ -\xf8_\xfbg\xe2\x1f\xd9~`;T\xc2\x9d\xe9\x0a\xc0\ -\xbf\x94:\xd0\x9f\x8c\xff\xbcL\xaa\x96\xce\x9f~\xfe/\ -\xfd\xa1\xf8G6\xa3\x9cb\xa0\x95\x0bh\x0fp\xec[\ -\x9a\xc1- 3=VWi\xfcg]\xdf*\xe5\xda\ -e\xd6}\x14\x03\x90\xed\x0e\xf9<\xd2\x0c\xea\x0c,\xa8\ -\xba\xfa?\xf0\xbe\x0b\xab\xa4\xce\xf7\x85\x1a\xbdU\xd6\xf7\ -\x8fA\x17\xe7r\xe6=\xf7\x96\x0e\xff\x10\x03t\x99V\ -\x85\xf1\xdf\x14\xdf\xb3\x95\xf6\xce\x1c\xd4{\xabRq\x7f\ -a\xa0\xef\x0e\x16\xc4\xbd\x92j\xfd\x90/\x97\xe24\xb0\ -\xea\xfa\xff\xe8\x9cX\xf0cJ38?>\x90\xc9\xf6\ -\xdd\xaa\xb4\xff\x1f\xfc\xb7\xd2\xd6\xa6\xe5\xfc\xf8\x88k\x9d\ -V\xd9\xf8\x0f\xd0\xbf}W\x8cGi\x06\xf0\x8d\xb4#\ -U0\xf7\x83\x0fh\xdeR\xeb\xfeh\xc0\xbd\x22|\xa7\ -\xb1\xaa\xe2\x1f\xe4\xdfj\x032?\xc2O\xaa\xf5\xc3\xc8\ -\x09p\xa9|\x8f+5\xfes\xee\x80\xde#\ -3\xed+ \xfe\xab\xe8\x99\x96\x14 \xe7\xcdy8\xc9\ -aI\x97\xf3\x08\x03\xe7}\x1c1\xfb=\xee\xff\x08A\ -\xd2\xea\xb6\x94M\x83\xf7J[\xa06\xd3o@\x13r\ -\xaam#'\xde\xafx\xf8\xb7nN\xd5S\x8b\xbaG\ -\xe6\xdc=\x8a\xefHA\x0d>\xf0q`?\x1f\xbfO\ -\xdf\xf2\xaaK\x13YW\x99\xb2\xd54\x83\x9c\xf7\xeb[\ -\xe5\xc5#+\x06\xff\xfc\x1e{\xe5\xd1M\xf9w\x01\x04\ -s!9l\x1c\xe7\x87\xfb\xae\xe0\xeb\x85Zx\x90\xef\ -\x04\xf7\xc5\x92\x90\xee\xcf\xe2\xf7\xd7*F\x13\x95\x8fc\ -\xd1\xeb\xd3\xa1j\xd8\xcaX\x13\x8a\x9b\x1c\x87\xfb\xcc\xc9\ -)\xee!\x1f\xfc\x0b\xf6TD\x9f!\xa7\x15d\x1c\xf4\ -\xd9\x93\xf8\x9e:\xd8\xc3[L\xca\xac\xf1\x0b\xb9\xf2\xdc\ -\x8cD\xb2 \xe6\x05\xce\xff\x85\xfb\x1f\x10C\x80\xef&\ -\xadmO\xf7\xea\xe4\xd3\x84\x82\xd0\x03\xd4\xb0\xdd?\x09\ -\xfbke\x1d\xd0kP\x8e\xf6\xaet\xf8\x17\xec\x99\x8a\ -e\x9a!\xa2\xc9\x81\xb8njN\xd0Q\xaa\xa7bV\ -2\x99\x1f~\x0b\xcbs\x89\xf0 C,\x08\xbe\x03t\ -\x03\xef\x85\xde:\x99\x977\x90i.S\xc9d\xfb\x7f\ -\xe4U'Av\xdc#\x1e&\xeb\x80\x9er\x10/\x91\ -c\xceS\xf9\xf0O\xf3Y\xd0a\xe0\xbcA\x1fT\xa8\ -K\x07\xfd\xcd\xb8\xe9?J\xc85\xcc\xab\x1c{K\xc6\ -\xab\xd0\xb3\xe1,\xcbe \xbb\x0ah\x22\xf7\x89'\xd5\ -\x8f\xb32\xf4\x04\x9a\xe6\xa1\xde\x07\xe7\xe7g\xb9,+\ -\xe7\xee\x11y\xfb\xba$\xc4?\xe5\xa7\x87\xf3\x09\xf9:\ -\xf9o\xee\xa2\xf3\x16_\xe6\xfdu\x9c\xa3\x0b\xb5K\xcb\ -\xb4St\xb1,\x97w\xad\xdf\x9c{\xa7*\xe7\xfcC\ -/:[C2\xcb{\x93\xdcj@r\x12>P=\ -b\xe4\x9b\xef \x19\xfe\xe98\x1d\xf8\xdb\xcb;p\xfd\ -\xe2\xb2\xe6\x0c2\x04\xe2\xe0H\xa6\xcbm\x94\xea\x1f\xaf\ -\xa8\xfa\x9f\xd4:\xa1\x96\x0d\xd8x\xf2\xaa]\x0c\xcf\xc9\ -\xf4\xdcP\x11\xfa\x8c\xe4\xe7_\xcaX\x15\xf0\x8a2c\ -\x94\xfc\x1a\x10H\xaf\x93\xd7\xc0\xb91H\xee\x96\xe0=\ -\xd0\xf3\x9b\x9f3\x22\x97\xfe{\xba\x85\xf2\x18\xees\x03\ -\xbd\xcb\xb3n1\x0c\xe8\x0f%\xe3=O\x19\xf1\xdfL\ -j\xf9\x0cr\xa2\xa8\xd7\xa1\xf8g\x83]'\xed=X\ -Q\x03\xe7F\x80\xfeWl\xcf(9\x96\xed\xbb\x0b\xdb\ -\xd0)\xdb\xfac\xba.\x9fO\x81_\xfb\x9b\xd2\x7f\xe1\ -y\xa9\xce#q\x7fxN\xc2{\x99j\x18\x89\x5c\x07\ -\xaeiVa\xbd@\xca\x85\x7f\xa87\x01\xe7\xaa<\x03\ -\xdfQBzb\xa9:\x00Z\x1b\x9c\x1by\x0e|f\ -\x84u?~\xad\xa17\x81\xf8o\xb8\xc9_1O\x83\ -\x1c\x0c\xb0U!\x06\x09\xb1H\xfc\x1d\x0bm\xda\xffH\ -\x83\x05m\xdb\xa2gB\xdd\x15\xe8'\x0e}\xbe\xe1=\ -\xb2\xd4\xae)m\x80\x0e\x9by\xdeZ\x0e\ -;\x90\xcc]\x87i#\xd3s=\xf6K\xe6\xdc;\x89\ -{\x89s\xbeGQ5\xfcd\x88\xdf\x949\xd0\x9c\xa0\ -N\x1c\x0b\xf8\x93\x22\xe0\x9f\xaf\xa3\x87]*\xf7R\xd8\ -Q\xc1\xe2u\x00\x9a\xae\xe4a\x1f\xf3\x07\xe8K\xd0\xf7\ -\xbd\x04\xcf\x11\x87\x7fq\x83\xcb\xa5r\xb3*\x12\xcfb\ -F\xde3o\xda\xc7\xaf@\xfd\x7f@\x07@<\xaf\xbc\ -2\xaeT\x1d\x00\xd7\x80\x18+sM\xccb\xefCg\ -\x19t\xf0\x12\xef+/\xfe+i@\xadh\xa8\x11\xa8\ -p\xfd\xbf@\x07\xd87\xa1\xdc}\x8f(\x1d`\xb1h\ -\x1d\x00\xc9V\x88\xf3\xc8\xb3\xb7\x16\xe4\x92%o\xe8\x22\ -9\xffW\xa0\x01\xb8\x87z\xe1\x0a\xd9\xff\x0fx5\xda\ -Wiz\x1a`\xdf\x95\x98gJ{\xffE\xdc\x00\x9d\ -.I\x94\xdcTp\xfc\xffb\xdc\x97\x1f\xff\x00\xd6\xcd\ -\xc9\xdcP\xb7\xb2\x17\x83\xe4&\xf4\xea\x84:\xa7\xb9\x0f\ -\xceQ\xf9\x0a\xd6B\xbeK:\x1e\xce\xd7\xc7\xe55\xb2\ -o\xee\x14\xcdk\x14\x15\xffh\xaf\xf2\x9ezUF\xdd\ -\xf2\xf2\xe3\x1f\xe7\xac\x8b\xb8\xaf\x8ct\x02\x90\xe1\x18\xdf\ -\x88>\xe0o ?\x11\xd7g\x02\xbc\x8b\x8aY@\x1e\ -\x9cC7\x92\x93\xf8En[\x09w\xe22N\x89\xb9\ -\x13\xa7\x80\xf8\x87\x5c\x9el\xbf\xfd\xb8\x1eh%\xdce\ -\xe3\xe3_\xf2\xfe\xcf\xa0\xaf!\xbc\x82_\x1b|\x01\x90\ -\xc3\x086\x01\xe8\x85i{\xc7\xd1\xf8n.YL^\ -J\x9fBi\x03lq\xb1\xf1q\x05\xc3?\xd0}\x86\ -\x9b\x15\x95\xc7P9\xb1j~\xff\xe7r\xf4\x7f\xa7x\ -v\xc6\xd9e\xb8\xff!\xaeA[\x98\x87Q\xce\x1c\x0c\ -\xa8}\xe2e'\xd7=e\x7fyJ\x9f%\xd1\xb6\xa6\ -\x22\xe0\x1f\xfc\x9cy\xe17i\x1b\xa5R\xf3\x98\xf8\xfd\ -\xdfM\x10\xb0$\xff\x9e\xaeP\x8e\x85\xf0\xfcK\xcb\xd5\ -\x16\xf4\xc7\xe9\xe08=\xc8>\x90\x1b\x98\xa7\xc8\xe8\x03\ -\x86\xfb \xb8\x8f\xa7\xa8y+\x00\xfe\xc1w\x04>\xa5\ -\xc2\xde\x93\x95\x83w>\xb0h\xdc\xb7D\x10-\x97g\ -\xae\xd0\xc7>R\xf0\xb3\xe2\x5cNA\x80\xdfa\xff\xaa\ -@Lv9\xe5W\x82\xbb\x1c\x10\x03\x82z\x98\xe0K\ -\x07?\x1c\xc4\xb8\xf7 \x0a\xd2\x0eL\xa2{6T\ -\xfa\x1e\xfc\xa9\x90G\xe3\xb8\xf0\xec\x0b\xe1\xbf1\x82P\ -\xe9\x9f\xaf+$C\x85Aa\xed\xa1?\x05Bi\x1c\ -\x17\xc3\xbf\x10\x0d,@\x90\xaf\x00s\xad\x06\xf9B>\ -\x8d\xdb\x12\xb8\x17\xc2?\xd8\x05~\x0a0\xdfj\x90/\ -\xf8\xb1\x04l>QC\x80\x06\x86#HQ\x809W\ -\x83| \x85\xc6\xa9X\xdc\x0b\xe1\x1f\xfc\xc2\xbb\x15`\ -\xde\xd5 \x1f\xd8\xcd*\xf2\xf5\x8b\xc5\xbf\x10\x0d\xe8!\ -\x08Q\x80\xb9W\x83l\x10B\xe3\xb2L\xdc\x8b\xa0\x81\ -\x81\x08\xbe)\xc0\x1a\xaaA:\x88E0\xa0<\xb8\x17\ -\xc2?\x83E\xe9\x8c\xe9\x0a\xb0\x96j(\x1f\x00\xce\xe6\ -\xd38,\x17\xfe\x85h@\x15\x81\x03\xab\xda&\xacJ\ -\x90O\xe3LU\x1a\xdc\x8b\xa0\x81:\x08vT\xd3@\ -\x95\x80|\x1aWud\xc1}5\x0dTI\x90+\xee\ -\xc5\xd0\x80\x03\xabZ\x1fPDH\xa7q#W\xdc\x8b\ -\xa0\x01\x90)\xa0W\xc4*\xc0\x9a\xab\x81\x82X\x1a'\ -2\xc9\xfbr\xd0\x00\xe8\x94`WT\xfb\x07*\x1fB\ -h\x5cH\xa5\xe7\xcb@\x03|\x1f\x11\xf8\x96\xaa}\xc5\ -\xbf\x1eR\xe8\xbd\xd7\x13\xc4\xc9\xaf\x18B4\x00~E\ -\xf0-C|\xa1Z7\xacx\xc8\xa7\xf7z8K\xc0\ -\xa7\xfb\xabp_\x0a\x1d@l\x09|E\x10c\x962\ -\x87\xa4\x1aJ\x81\x13\xd5\xa3zT\x8f\ -\xeaQ=D\x0ef\xf1\x8fe\xf2\xd3\xe0\xe2\x9fK\xf0\ -\xe7\x98\xe2\x9f\xd5\x84?\x0b\xcb\x83\xb2\xe4\x87\xb0\xbc\x11\ -\x96G\xc2\xf2\xaa\x84<+6A\xe5\x92\xf2PX^\ -\x0a\xcbSay+,\x8fK\xc8kay^\x5c\xde\ -\xb7E?L\x09j\xdf\x19\x84>\xf5{\xf4\x8b\x96\x9d\ -(\x90t\x88\xd0[\xfeB\xd0\x17\xc1r\x04G\x11\xdc\ -D\x10TIp\x93\x9e\xc3rzN\x7f\xc9K\xc7\x12\ -z\x0e\xf8\xe0\x0d\x11\xaccQ~y\xb0\xdd9\xac\xca\ -\xb7)\xf9\xc0\xa1\xe7\x14B\xcf\xd1\x90%\x107(\xef\ ->\x08\xad]\x1f\x81\x13\x828\x05X\xa7\xa4\x10G\xcf\ -Y\xbf\xbc{ \xf0\xf7J\x08& x\xa5\x00\xeb\x91\ -\x16^\xd1kP\x92d\x0f\x04\xd6^\x13\x81-\x824\ -\x05X\x83\xac\x90F\xaf\xa5fi{ \xb4\xf6-,\ -E\xe8\x9d)?`\xd3k\x12\xb9\x07\xac\xe24o\xfb\ -\x9b\xad]p\x0flY\x22\xce\x82\xc0\xfa\xe1\xac\xfc\x0e\ -4/\x0e\xd2\xe85\x16\xae\x9fU\x9c\xcfWe^'\ -)\xbcb\x09\xc9\x05\x16%+\x9d*\x7fn\xbf\xec\xfe\ -\xbc\x13\xab\xb8~\x00\xfa\xc2/\x94\xef\xbaE\xb58\xa0\ -\xee\x06\xd4\xd2Z\xd9\x92\xaa1\x08}\x9c\xa0\xd6,\xfc\ -]\xc5\xf5\xfc\x8c\xa3\xd7\xcc_\xff\xfa_\xb2n\xbav\ -\x14\xf4\xd6\x84\x9a\x0a\x19\xee\xd6dN\xe0!\x5c\xdb<\ -?*\x88d\x7fzL\xb2\xdf?\xc0\xfdgr\x1f\x9c\ -\xc5u\x0f\xd3\x0eM\xc7\xf5\x94q\xcf;\x5c\x0bIn\ -{\xb1\x8eU\xa4\xcfWl\xbe\x0f\xae\x97\xa5\x87k\xf8\ -f\xdd\xd8\x86\xd7I\xf5Z)\xbb\xe7\x04\xd4\x97\x80\xbe\ -O\xb9\x0f\xddp\x0d\x02\xa8\xf5&\xa7}\x08a\x15\xd9\ -2\x15\x14\xcf\xd4\xa5\xeb'\x9a\xe2Z\x87\xd03C\x96\ -\x01\xf56\xf2\xdf\x06\xe1\x9aET}a\x99\xee\xdd'\ -\xb3\x8a\xec8\xf9\xdb2\xb8\xdec\x1b\x5coI\x9e\xb5\ -\xc0\xf1>\xe4e\xe3\x9a\xb0P\xb3I\x86\xda\x03\x1cV\ -\x91\x0d+\xdf\xb5\xa39A\x9d\xcb\xdcG\xe7\xe5\xda\x03\ -Cx@\xbd2\x5c\x1bSz\xfe\xc8\xb7\xdf\xe5\x8aw\ -\xa8\x87\x0a\xfc\xecW\x0c\xa8\xef\x96q\xd6B\xda\xf9\xf2\ -}\x17r[{\xf2\xa6^\xb8N\xe4\xaf\x1c\xd0\x97\x19\ -j\x9bIA\x07Ar[?\xd4\xe1\x5c\xdb\x11\xf7\x87\ -\x96xp\x0aHNR,\xc9~w\x9f\xcc}|\x91\ -\xcc\x09>\x81\xe5\x1e\xd4\xe0+\xf8\x16I\xd5\x84\x95t\ -\x0f\xd2~\x90i.\xff\x96\x97\x1f\xc8o\xfdH\x87\xc9\ -\xf6\xdf\x8ff\x22\x81L\xcb\xcd\xc4\xb5\xc2q\xdf{D\ -/T\xefJ\xbd\x22\xfc!\xfd\x07\xeaiA_\x1e\xa8\ -/\x0c\xfd\x02%\x19\x05q\x11\xf8y\xe5\x90\x0b\xf2Y\ -?\xd4\xfc?4C\xa2\x1eB\xec\xcfad\xfa\xd1Y\ -t\x8fF\xedR\xeb\xba\xf2u?\xa8?\x0c\xb4\xc1\xcb\ -\xcb,\xf3\xf9\xb9\x0f\xce\x88\xaf\x15^\x11\xeb\x07\xba\xb7\ -m\x8f\xf8\xdd\xbd\xd2'\xc6\xe5\x90\xb9\xa1\xeeT\xff\xca\ -\xf2\xea/\xb0G\xd6\xfa\xb8>\x7fY:\x04\x9c\x19\xd0\ -\x19%\xac\x9b)\xfb\xfa\xa1\xcf\xe7\x99\xa5\xa5\xcb9\x1e\ -\x17\xf7m\xa6\xfa\xc6K+\xaf)]*\xfd\xc8,\x5c\ -\x1b\xb8\xb4\x01\xfc\x03j\xc2J\xb0\xc72\xae_\x17\xeb\ -8e\xf5\xba\xc9{\xe9C\xd7\x11\x95C\x9d$\xf4\x8c\ -\x0c\xb7\xe5X\x17\x14\xbb\xdd9\x19\xa2\xfb\xe4\xca{\xfd\ -\xe8\xf9\xd03\x13\xd7\xdd\x1538I1d\x8a\xd3 \ -\x89\xeb\xb8JD\x07\xe8|C\xff\xa1\xd2\x06\xeeMU\ -\xb6<\x94y\xfdY\xd7\xb7\x95:\x8fl\x9f\xed\xf2\xaf\ -\x17\x8cd\x5c\xca\xb6\x81\xb8&\x9f\xb8\x015\x19\xa9^\ -\x83\xa5\xee\x81l\xebG6\x08\xf4\xb7\x12\x8f\xfbXJ\ -G\xaf\xa0z\xc9\xb9\xf7O\x8b}7\xf0A\xa83_\ -\x06\xddI\xbf~\xdc?\xfd\x1fl\x9b\x8a\x1b\xd0C\x07\ -\xfb6*`\xed\xb0.\xb0\x87\xc1>\x16\xbd\x01<2\ -\xf3\xbc\x8d\x98^\xe9rX?\x9c\xfd\x1dC\xb1\xee)\ -nd^\xb2-\xeb\xfd\xd2\x03\xe8\xda\xcc\x1e\xa5\xda\x96\ -\xa0\x8f\x95\xa1\x0f\xca\xb4~\xa8\x09.n\xff\xa1\xb64\ -\xfc\xbb\xfc\xf8\x9e0P\xb2\xa74[\x03\xf7M\x11\xec\ -\xcb!\xd7\xf5kc=\x0etx\x91\xeb\xcfJ!S\ -\x9d\x87W\xe0\xfa\x9ba=\x19\xf4hq#\xef\xc5\xf5\ -\xb2\xce_\x85\xad\x9f\x9b\x99\x8c\xce\xc7\x90\x8a\xad\x8d\x88\ -t\xc2\xbc\x17\xe2{,C\xbf\x95B_jE\xac\xff\ -\xf0L\x5c'_$\xfe\xa1o\xc7\xde\xf1\x15\x8b\x7f\x90\ -?o\xee\x8a_\xffS/\xcaoZ!\xeboJ\xf5\ -\xb8\xcd\x11c\xa3\x22}\x1f\xec\xbb\x8a\xe3\x7f\xba\xd8F\ -\x04;Y\xdc\xc8\x09:^q\xf2\x1f\xfc<\x9bz\x97\ -j\x8fH\xa8\x83I\x07\xb0\xff\xce#K\xd5=\xb3\xae\ -0+N\xfe[Q}G\xf2\x9e_\xc32\x08\xf4\x80\ -b\x80~\x07\xf4\x87m\x9e\x8a\x88\xeb\x80\xee\xe9\xed(\ -v\xed\xd0\xeb\x00\xf7\xe7\xac\xb0\xf5S\x00>\x9fd\xfb\ -\xae\xb8\xdfw\x09\x80~\xbd\xc2\xfdA\xe5D\xfb\xa0\xdb\ -\x16D?\x13\xbb~\xd0=\x93\xcb\xf6\x85\xc8\xbc\xfeB\ -?\x85E\x13\x04\xda\xc5\xfb\x06T\x18\xed\xeb\xe0\x1e\x06\ -\xa5\xf5:\xc1\xb2\xafl?\x88\xe4\xeb\x17\xd7\x0b\x01\xf8\ -\xc0\xd6\xfe\xd8\x07\x0b1-\x0a\xe7\xcd\x8b\xc7\xf7\xe4\xb9\ -\x0fp\xee\xb7\x0fA\xe7+Z\xec\xdaa_\xa0\x7f\x87\ -L\xf6\xefr\x81\x9a\xc7\xd0\xcbl\xa31\xd5\x83P\xf8\ -,\xc39\xbc\x016 \x0f\xf3\xa2\x82\xf8\xb7\xd8\xde\xcf\ -\xbe\xe5L\xa6\x9f\xfc\x0f\xdbi\xb8o\xcc\x0a=\xd9\xf7\ -\x01\xbd\x0bb\x81\xf9Q\xc1\xe2\xd7N\x92\xb8\x973\xee\ -\xe1(\xad\xfd\x8b\xe8\x06\xde\x03\xfa+\xac\x0d\xe2\x91`\ -\xc7C?\xd0\x12{\x8a\xf4+\xe8\x0d&\xfa\x10\xb2q\ -\x0f\x9d\x82\x98\x97d.\xb2\x85Rw\x8d\x94\xde\x16D\ -\xef\x05yS\x9a\xbd\x89\x07\x8fKf]\xb6\x93T\xef\ -*\xbe\xfe\xe5T\xads\xe8A\xc5\xf9\xf9\x19\xd7\xbb/\ -~\xa6\x84\xf4)>\x1f\xfa\xfa\xba\xf49a\x9a\xe4 \ -}qv\xd1\xfeI\x14\xd7\xa6i\x10\xf1P\x88\xf3\x14\ -\xc4\xbc(\xf35\x10[\x95\xac\x17\x97(\xfc\xeb\xe2\x18\ -<\xf4\xdf\x12\x89\xce\x9f\x9f\xa8X4\xff\xd9\xd07\x16\ -l\xc0\xcc\xa4\xb2\x97\x9f\xfa\x9d\xea\x93gI\xf5\x81K\ -;0\x19=\xab;\x89\xed\x93\x12\xfd8\xb4\xa9\xbfC\ -sI\xdb7\x1e\xc7~%\xf1-\xc3\xf9\x93@\xe6\x95\ -N\xff\x88>\xb3\xfd\x0f\x88~~\xbe\x90M\x07}\xee\ -O/.\xd97Y\xc4\xc0=\x12\xd6\xb4\xa3\xe2\xa2X\ -v=\xa7\xe2\xda\xa1\xe7\xc9L\xcf\xf5d\xfa1s\xbc\ -'\xe0\xbb\x05^\x0a=\xa7\xa0\xf7\x94$\xeb\xa66\x98\ -C\xf9\x9aJ\xd7w\xcb^?\xf8\x15\x8e\xcfE\xc8\x16\ -\xad\xd7g]\xdfZ\xb4~\xd8+4OI\x06\xf8\xeb\ -\x8a\xceL\xc7\x92\xfd\xe6\x11\xaf\xa0\xfaI\xe4\x89\xec\x03\ -X\xfa\xe0\xe1\xe7S\xfe\xe5r\xf1X\x91\xf8\x87~s\ -\xdc\x94\xaf\x22\xdfD\xf1\x80\x16\xd4\xd9\x04\xfb\x03\xf1F\ -IF\xa6\xe7\xba\xc23\x8f\xf1\x1f\x17Q\xf6\x97$Z\ -:\x0f\xd3Pao\xb2\xf2\xf1U\x91\xfc\x1fb3\x90\ -g\x80\x07\xf4AK\xfe\x8a}\xdc\xd9\xb7\xf7`\x1a\xc5\ -:\x1d\xf8_\x90\x8e\x07\xfd<\xcb\x9cb^6\xf5=\ -9\xaf\x1f|/9\x81\x87e\xf1\xad\xc3\xdaK\xc6\xbf\ -\xd1\x1c3\xce-\xc7\xb178\x0b)\x8e\xbd\xe9x\x15\ -_\xa7\xd1\xa5}\xdf\xa3%\xeas\xcda\xc5\x90\xc9L\ -\xe3B]H\x1e\xeb\x87\x98`\xe6\xf9\x95\xb2\xf6\x99\xe6\ -\xe7\xcf\x8b\xf87=\x81~Zz\x98\xbe`\xde\x18`\ -\xbf\xd1\xdf\x80\xae\x07}\xb4\xa8\x9e\x8d\x8f\xd0\x99\x89\x17\ -\xe9\x0f\x83\xd8\x18\x15\xe3l&\xf3\xfa\x81\xc7C\x1c-\ -\xc5i \x8ds\x99t*\xfe\xdd\x01\xf1\xf9/\xb4\x9d\ -\x9b\xff\xee\x1e\x96\xf3\x05_#\xb1\xcf\x89\xeaw\xa4S\ -\xc8\x0b\x81\xf7\x00\xdf\x009\x9duu\x13\x99\x17\xe6\x89\ -\xf5\x1e\xf0\x8f\xe6\xdcq)\xc2\x11\x7f\xfd\xa5\xd8\xed%\ -\x06\xe2\xed`\xcf@l\x1cb\xc2\x98\xff\xc8\xeeS\xe7\ -\xe7\xbf\x94\x9e\xff\x04\xeb\xdf6\xa0\x98\x8c\xe7$~\xc6\ -g\xbfd\xbfW\xc1>\x8e\x14\xcd@\xec\x87\xa2\xfd\xa2\ -\xbf\x85\xb3\x94\x89t\xb4b=\xfa\xd09\xc2\xfc?7\ -\x13\xef\x19\xce\x0b@2\x13\xd6\x0c\xba<\xee\x01Z\x98\ -\x03'\xd3\xba\xf9\xc0\xcf\x7f*=\xff\x8d\xbf\xfe\x0cV\ -\xd1\xfaA\x0f*\xb1~Q\xdf\xd5\x15\xdf/\x12~\x07\ -v\x05\xf4\xa8\xdbj\x8ay\x09\xf0\xc8\xd4\xbd\xe3\xb1N\ -\x05{\x86\xf5\x05\xf8[\xbeM)\x9fu\xf3\x81\x9f\xff\ -Vz\xfe#\xce_3\xc1k\xc68\xca\xcd\xc0zh\ -\xf2\x06\x89\xec\x8b\xb2Ad\x8f6\x1dy\x9c\xed\xb2`\ -=K\xc2\xfcW\xe0]\x80\x93\xd4]\xa30\xe0x\xe6\ -J\x89s\x0c\x14\x11\x84\xf3_\xcb\xce\x7f\xb6\x14\xc0\x91\ -\xe2\xf6?\x95\x14\x84\xf3\x9f\xff\xd8\xfc\xf7?\xfd\xfeC\ -\xf5\xfd\x97\xea\xfbO\xd5\xf7\xdf\xc4\xde\x05\xfb\xa3\xee?\ -\x8a\xd8\x83?\xee\xfe\xab\x98=\xf8\xa3\xee?\x97\xb2\x0f\ -\xbf\xdd\xfdw\xba\xcc\x00I\xd7?\xe0\xd7\xd9\xe1\xd7\xd3\ -\xe1\xd7\xd1\xe1\xd7\xcb\xe1\xd7\xc5\xe1\xd7k\xa8\xae{S\ -\xc9\x83I\xfd(\xc4G0\xf5\x93_\x1f\x83_\x07\x83\ -_\xff\x82_\xe7\xc2\x84\x8fw\xa8\x13a\x84\xc0\x9c\x10\ -\xa8\x13\xd1\xaa\xec:\x11\x22\xce\x85\x06\x82A\x086!\ -\xb8\x8e\xe0\x19\x82\x08\x16\xc5\x83\xe5\x09\x11\xf4\xb3\xaf\xd3\ -\xef\x1aD\xbf[b\xba\x171os\x04\x81\x08R\x7f\ -\x01\xaf\x12\x86T\xfa\xdd\xe6\xc2\xeb\x90`\xee=\x10\xf8\ -\x22(\xa8\x84y\x0bC\x01=\x97\x1e\xe2\xd6 4\xf7\ -\xc9\x08b\x14`\xde\xc2\x10C\xcf\xad\xd8\x1aD\xcc\x9d\ -\xa5\x00s\x15\x07,\xe15\xb0\x8a\xd3\x8c\x22\xee\xbb(\ -<\x14\xa3%\x16u>|\x15`n\x92\x82/\xab\xf8\ -\x99\x863.\xdf\xb3Z\xccw\xa6#\xe4O\xd3&%\ -\x8b3\x8b\x85\x02z\xce\xfc\xbd\x0f\x94\xcf\xbc\xe9\xb8\xf6\ -\x0a}\x9cW\x011\xdb\xac+\x0ed\xce\x9dC\xd8\xdf\ -\x9bs\xff\x14\x99\xed\xbb\x1b\xdf\x8f\x06\x7f[a|G\ -:\xbfS \xabH6\xc9\xce\xdf\xd1\xbc!\xef\x16\xe6\ -\x9c\x1bv\x11\xc7vx\x05yb\x82\x15<\x92\x97\x93\ -F\xb2\xbf<%\xb3|\x9c\xb0\x1fU\x8a\xbc\xa0TV\ -\x91\x5c\x95m\xcf\xd1{S\xf7\x8c\xc1\xf1\x8b\xd2\xee\x8f\ -\x88\x1b\xe0\x93\x87|\x10|\xaf\xa0|y\xad|\x9d@\ -J\x1a\xa7b\xad\x10'\x87{~\xb2\x0d\x1e\xce\x9f\x01\ -\x7fn9\xe8\x89\xaf\xcfH5w\xf0\x1fC.\xbaX\ -:\x91b@\xdc5m\xffDI\xd7\xc0\xd7\xc5\xca?\ -\x7f\xeb\xe68\x97\xa9\xb4\x5c3\xbc\xab\xec\x5c\x9c\xe3\xc1\ -\xcf}\xc4\xf7\x02\xca\x88\xe3\xc3\xdf\xe2\x9c\xa0\xb2i\x89\ -\xafG\x96s\xefu\xf0\xbdX\x88?\x8b\x9f\xc3'\x1c\ -\xe7\x85\xbc\x0b\xb8\xab\x02yS\x90\xe3\x02\xb9\xdbp\xcf\ -\x0a\x9f\x95R\xee\xa1\xb2?=\xa2cA\xa5\xae\xe1U\ -\xb9\xe7O\xe7!\x88\x8b\xaf\xc3\x9ar\x82\x8e\x15\xdd\xf7\ -,\x96w(\xc0\xff\xd1\xb9I?2\x13\xf1\xa0'b\ -\xd7\x00\xeb/\xe3\x9e@\xf9\xe7\x8f\x00\xf8\xb9\xc8\xb9g\ -\xa7\x91\x99\x1e\xab\x0b\xf3\x08\xca|\x16\xce{\xeb\x8ep\ -\xe1#\xf2y\x90c\x06\xb9\x87\xa5\xc4\x06\xcb7\x7f\xfa\ -\x0e;'9\xae\xe4\xdc\x0b\xf2\xa9<8\xfc\xb7\xe5\xe0\ -\xe3\xb0\x06\xfb\x7fH\xf6\x87\x07\xa2q\x10|B~\xfb\ -\x8f\xde\x95yi\x9d\xc8\xf7@^(\x8e\xc5K\xa3\x13\ -\xc0\x9d\x97}\x13D\xe6{Q\xb9a\xdd\xc5\xe1\xb3|\ -\xf3\xb7n!\xf2^\x07\xc4\x1f\x0b\xf3H\xca;w>\ -\xac\xd0\xc3:F\x89\x81\xf0\x0a\xb9\x1eb\x9e-\xf9\xfc\ -!/\x1f\xf1\x10\xce\x8f\x92\xe7\x16\xee\xb9\x83\xee S\ -\x5c\x13\xdf\xb5\x9e^\x227\x11\x06\xe8L2\xcf\x1fr\ -\xfa\xb6\x0f\x11y\xaf+\xdbo\xbf\xec\xf1w|o\xae\ -\x1b\xce\xaf,A\x9bO/\x8b\xcb_+\xc7\xfc)\x1a\ -\x15\xa5\xdfd^(\xf3>\x9c\x04@\xe7H\x22\xbe/\ -< G\x0a\xe7\xe3\xc8:\xff\xfd\x93\xf0\xfd\xb1\xe2\xc4\ -\xcf\xa5j<\xc8\xe1>\x09\xce\xef\x12q_\x9d\xfd\xee\ -\x1e\x95\xe7$\xe3\xfc!\x87\x81\x97\x97Ur\xff/\xad\ -\x95\xcf\xfe\xafi\x87u\xea\x12\xfb\x1f\x19 \xfb\xfe\x8b\ -\xc8w\xe1\x8f\x9c{'e\xcfy\xc0\xf9D\xbdpN\ -\x9d\xf0\xa0\xee\xeb\x89\xfc^\xb9\xf8\x0f\xe4W\xe6G\xde\ -\xc1\xb6\x09\xbe\x9b\x02\x80\xfe\x1f\xf2\xb4\x81ve\xe3?\ -\xdad\xfa\xa9\x85\x22\xef\xfbg]\xdb\x22;\xff\x01\x80\ -\xdc\xa1\xf5\x9d\xa9;$p\xb7\x04\xc9M\x0c\x90s\x22\ -\xd3}\x12]L\xdf\x90\x9f/\xf8\x1e\xce\x19\x17:c\xf9\xaf\ -\xfdp\xce\x1b\xf0\xe5\xack\x9b\xb1\x1e\x09:2\xce\xb3\ --_\x9e1}_x\x98H\xb9\x08#\xfb\xe6\x8e\xd2\ -t\xc1b\xf3\x07\x19\x0awKA\x87\x843S\x10\x1f\ -\x85u\xe1bg\x0c\xe9o\xdc\xb4\x84\xe28F\xf6\x17\ -\xd8(\xec\xcfO0\x0d\x17\xe1\xa2\x14|\xd0~\x07\xb8\ -\xeb\x07w\xeaE\x0d\x90e8?M\x92\xf9\xc3>\xec\ -\x1c^\xe2\xee~A\xec+:\x87W\x97\xbe\xdb=\xab\ -T{\x11\xdf\xed\xb6\xd0\xc6x\xc2:\x85\xa0\xbfG \ -O\x15\xceM\xd6\xd5\x8d\xe2k\x05p9d\xe6\xe5\x0d\ -\x92\xdb/X\xbf)\x99\xf7\x0by\x99p\x1f\x8f\xff~\ -\xe0\x05\xe2\x06\xe8q\x90\xef\x96\xb8L\x0b\xd9XVX\ -nfyo\xc2k\x06\xff\x04\xc8o\xb8;\x095\xd3\ -\x00\xb7\xa5\xd9\x91\x14O+3\xef\xbb8\xfd\x8b\xb9\xb3\ -\x02\xb5\xca\xf0\xbe\xc1\xbf?\xbd\x22\xf6\x9d\x9c\x84\xf7\xd4\ -\xfd\x1at\x9e!\x8f\xb1p]H\x87\x84\xfcE|>\ -%\xb9\x13\xf0>\xa4(/\xb8\xf4\xf3\xc3\x8f{\x14\x9e\ -%\xb0A\x0a\xdf\x8b\xecS\xc8\xa3\xc4\xfa\x0d\xdc/X\ -\xdbQ,\xad\xc2\x80\x9cu\x9c\xbf\x86\xd6\x0a\xb8\x97f\ -\xe4\xbf\xbd[\x16\xcd\x0b\x02?fC\xcf_\x07\xf3\x82\ -\xdcG\x1eh\x1d\x0e\xf8lQw\xab\x9a\xe19\xe1\xda\ -\x16\xe9?\xc5\xbe;\xdboo!\x8d\x97w\xfe\xa0\x97\ -@-\x1a\xea~\x94\xc4\xfe\x1f~\xbc\xa9\xe8w\xc0\xff\ -VPwW\xc0\xee\x815\xa4\xee\x1d\x87\xcf\x1b\xf8+\ -3\x5c\x17\x93\xd9\xc8\xae\xc69\xae\x90;)\xe0C\x00\ -\x1e\xce\xbf\xf3\x92\xe9eW\xcal\x05\xe6\xcd\xce\xc3\xf4\ -\x82m\x94\x95\xe5\xce\xff\xe5\xc7\xcaD\xf27\xb8\xc3\x01\ -\xf2\x0f\xe8\x16\xdf\x99\xb5\xd0.\xba\xbb\x079\xaahM\ -\xb0\xb6\xcc\x0b\xab\xf0\x9a\x0a\xf1\x0e\xf2\xe8\xf4b|\x07\ -\x18\xe7}\x0b\x9eSn\x01>\xe7@\x97\xc0\xa3\xa1f\ -a\x92\xad\xa1\xb4\xf6\x03?\xceW\xd2\x7f\x8b\xe6\x01\xbc\ -\x9f?\xc0?YB\xc7,\xbc\xcbW\xb2\xde\x14\xe8\x03\ -8o\xfb\xe0T\x5c_\x09x\x00\x9c#\xb8\xbb\x07\xbe\ -g|\x9f\x91\x9fw,\x9d\xee\xc7\xf7\xdf\x8a\xf6\x9f\xa3\ -\xf9\x00\x0f)\x88\x0dG\xf0\x12\xdf;(\xf7\x1e\x15\xf3\ -\xf7\x0b\x82\x5cj\xa7\xf2\xfd\xe7b\xe3\x17Pk\x09p\ -\x8bA\xb4\xfdPY \x18\xbf(=~T\x91\xf7u\ -\xa5\x07\xe1\xf8\x11?~W\x15zt\x8b\x8a\xdfU\xd9\ -\xf8iU\x8f_\xff\x0e\xf9\x03\xbfC\xfeFU\xcd\x9f\ -\xc1yD\x1a\x04\x11\x03?\xd5\x08\x22\x18~*\xd3\xf9\ -G\xd5Y`2\x0f&\xfc\x87Q\xb4\xaf1\xf0S\xad\ -h\xdf!OK\x9f\xa0z\xfa\x14\xe6ii\x8a\xce\xd3\ -\x12\xc2e\x0d\x16\x95\x1b\xb8\x07\xc1c\x16\xc5\x1f\xbeJ\ -\x091\xf43\xf6\xd0\xcf\xac!L3B\xefn\x8e\xe0\ -\x10\x82\xc4\x0a8w\x89\xf4\xb3\x9b\x8b8K\x00\xffC\ -\x10V\x01\xef\x15\x860\xfa]\xc2\xeb\xfe\x15\xef\x16\x9c\ -\x03\x7f\x1fj\xd0\xfbR\xceg\xe8\x8a\xd6!%\xb73\ -\x0e\xb1\x8ahMr|\xd3\xbayaM|d\x1b\x81\ -\x9f\x18|;\xe9\xc7\xe6P9\x13\xe0\xd3-\xbbfj\ -\x22\xab\x88\xce%{7\xc4\xe4\xd6\x1b\xe1\xbc\x02\x5c\x93\ -\x1ej\x09\x09\xda\xedP\xbf\x22-\x01\xc7\xa2\xc0\xee\xc2\ -\xbam\xe9\xfb\xc1?c\x12\xac[\x07\xfb9\xe0\xbd\x12\ -\xd5\xc1G\xf6\x19\xd8\xcbP\xf3\xae\x949\xf0\xcfw\x99\ -\xefN?6\xbb\x14\x9f\x10W\xec\x9c\xa0\xde\x5c)v\ -?\x9f\xb7\x94\xb2\xe7:\x18\xcf\x90K\x22\xbc>\xf0)\ -\x80\x9f\x11h\x00\xd7@\xf0\xdfO\xf91\x84\xfc?P\ -\x03\x04|\x1c\x22\xf4\xf5\xaf\xa5\xbf_\x17\xfb\x8a\xc0\xaf\ -)8\xc0\x7f\x07\xef\xa4\xfch\xc5\xed'\xb0\xff\xc07\ -Y\xbc\xce\x17\x8f\xcc\xba\xbe\xa5\xfc\xef\x07\xbf\xde\x89y\ -\xc5\xfcz\xb0\x0f\xa9\xb8N\x9a\xb6h\xfa\xa6\xf7\x19h\ -T\xf0n5\xcc9ycOa<\x94\xfe~\xf0k\ -\x85y\x0a\xe0\x99C\xc7d\xca\xb07\xe9\xfc\x1b\xa8g\ -U\xb4\x05<\xea\xfey\xf1\xef\x8a\x7f?\xf8\x0d\xd1^\ -\x82?\x80?\x0a\xbeGIZ\xa7\x86\x8a\x8b\xb9\xfc[\ -\xcc\xf7-\x22^\x22\xfe\xfdP3\xd5i`\xb1\xb8N\ -\xde\x93\xcbd\x19y\x0f\xc5\xe7\x0f~\xcf\x9f\x9f\x04\xce\ -\xc2\x03:\x9e+\xc9\xfb\x9bb\xba\x17\xac\x17\x00\xfeM\ -\xc9\xf9\xab.\xb6\xaf\xe1Ny\xe1\xfe\xc5\xbc\xc0|S\ -\x80nJ\x7f\xff\xf6!\xc5\xea\xa5\xe5>\xf6\x90\xf0\xdd\ -\xf4\xfa\x11\xaf\x14\xc4\x1f\xc4@\x85\xe2I\xa5\xe3\x1f\xed\ -\x1f\xf0\x0f\xa0y\xc8\xad\xc0\xb9\x08\x92\xc6\xa3p\xbd\xbd\ -1\xc5\xf6/\xef\xd9\x15\xe18\x84\x88\xf7\x0b\xd8\xf5\xe8\ -o\x81\x06!\xbf\x07\xe7\xf9@\xcc\x03\x7f_2\xbb_\ -\xd0\xcf\x04CD=\xa4\xa2\xf7\xf3{\xbd ~S\x18\ -[\xa1c\xeb\xe0\x7f\x84\xfc\x0c\x88\xf3\xe2{\xde6\xad\ -K\xc5;U\x93eN1\xdc\x81\x5c\x02?\xa9\xc8\xf3\ -\x0fy~;\x86\xe2\xde2 _\xf2^\x5c\xa3\xe8\xd4\ -B\x9b\xaa\x1b\xc6?\xc2\xe8,A\x1c2\xeb\x86\x13Y\ -8g\xe1\x18\x02:\xf7\xe0\x8b\x17\x96\x15\x98vK\xc6\ -\x80\xa8\xf7C]\x1c\xc4\xbf\x0b\xe7\x9a\xfe\x83\x92\xe3\xe8\ -\x99\xa2r/ 7\x12\xe2\x18\x10\xa7\x009\x0b\xf1\x11\ -\xf0\xbd\xc13\xa0\x86\xa5p\xfe\x16\xf8\xcaD\xf0>\x81\ -\xf5\xf3\xcf:\x95\xc3\x00\xfc\x16\xea\xeb\x80\xfc\xc6\xf2V\ -`\x80\xcf\x1e\xeaxB\x0c\x0c\xd7\x92E<\x11\xf2\x93\ -\xb0\xbfVD\xdc\x01\xf2\xc5\xc0\x17*&g\x8d\xd6\x91\ -\xa9\xda\x80\xb9\xf7]1\xae3\x5c\x17b\xff6\xe4\xba\ -B\x1cVp\x80\x9f\x1bbU\xc9\x1b\x8c\x8a\xf1\x16Q\ -\x03\xea2\xc1\xbe\x94\xc23\xf8\xfa9\xf5\xd9\xba\x05\xf6\ -E\x83\xdf\x16x5\xd0>\xaeOq}+>;\xd0\ -?\x04\xe2\xc4\x98F\x817\x8b\x88\xcd\x81\xdf\x19jU\ -\x80\x5c\x869\x96\x91\xab\xc7\xb7\x0d\x8ax.Z\x1b\xd4\ -\x82\x85\xb8\x1b\xce\x0f\x82\x18(\x9d\xfb\x0by\xa4\xb8\x9e\ -\x14\xf0`\xc8SC4\x9e\xed\xbb\x0b\xe7\xffB\xedJ\ -\x1cs<<\x93\xf2\xc1JVG\x8eo\x97$\x16\xf1\ -\xac\xce\xb8n\x0d\xc8p*\x8fX\xe0\x19\xc2>?\xc1\ -\xfb\xed\x82y\xd5\x92\xf9\x05\xf9\xfagI\xfd[\xfa\xdc\ -\xe5\xf2\x00_\xff\xe6\xdb\x1fO*\xf8}\x82 h\x7f\ -(\x82\xfdUi\xf6ge\xdb\xdf\xccJ\xf4\xc6\xc0\xbb\ -\xc1O\xa1IP\xbe\x8aB?E\x8d\x92~\x0az\xce\ -\x0d\x100\x11\xbcG\x90\x8e C\x0c\xa4\xd3\x7f\xc3\xa4\ -\xbf\xc3\xff\xee9\x04\xdc\x12\xb8\x11\x7fv\xb9\xf4w\xf8\ -\xef\xe5\x96\xf8\x1e\xe4C >\x0du\xe7 \xa6\x07\xf9\ -'B|\x82+0\xe7b\xdf\x858\x19\xd4\xbc\x05\xdd\ -\x06\xc7\x82\xe9\xdeeX\xbe\xad-\xc6{\xf8\xeb-\xe4\ -C\xa0\x8f\xf0\xfbH\x80L\x86\x5c\xd7\xfc\x08\xbf\xc2\xba\ -3\xa0\xeb\x0a\xd4\x92\xe5\xefU\xe1\xf7!\xf7\x0f\x06<\ -\x03\xea\xc9\xe0\xba\xd7\xd6\xcd\xb1\xbc\x80\xb8\x92\x90\xbe\x9e\ -Q\xf8\xfd\xc2zDo\xb0n\x8c\xf3\xe2-\x04\xe2g\ -\x88_S\xb9\x08\xf9T~\x1b\x15\xdf\x11\xf8>U\x1f\ -\x06x<\xe4d\x95\xc8o\xc49\x08]q\xfdH\x88\ -\x9b'Q9*E\xdf\x07\x1b\x0b\xed7\xd4\xc3\xc3}\ -;\x84\xeb\xe5\xf2\xeb\xb1!\x1d\x02rQh\x1eN}\ -\x1fz\x06B\xdcxe\x0b\xec+H?\xb5\x80\xea\xaf\ -\x22X\xbb\x13\xfd?U\x9f\x93\xc4u\x04i}\x1f\x7f\ -\x1f\xf0\x022\x15\xea{\x81M\x08\xf8\x02\x9d\x18\xea\x99\ -\xa6\xee\x1c\x86\xf5\xf5\xec\xdb{q\xcc\x98\x9b\x9e\x88\xf5\ -OZ\xfee\xa0\x9f\xe9`\x93\xc1\x9cqn\x08]\x03\ -\x12\xf2xA\xbe\xc2w\xf89p \xfb\xa0G\x8a\x00\ -\xbdP\xf4\x8c\xf0\x93q\xde\x1a\xe7\x99C>\x04\xe8f\ -\xd0O\x03\xe4 \xc4z\xa1\x87\x16\xc4[\xa9\xbb\x0a\xc5\ -\xe8\x98:\x0b\xcbu\xb9)\xdb\x07Sz\xa0`\xcc\x16\ -\xeau\x01\x9e\xf8=\xe2\x8a\xcb\x1e>\xfdR\xe7g\xb9\ -\x0e\xb7\x1c\xb2I\xf0\xfc\xc8t~e\x1d\xff\x07\x9d\xab\ -\xf3\x85\ -\x00\x00_\x84\ -I\ -I*\x00\x08\x00\x00\x00\x17\x00\xfe\x00\x04\x00\x01\x00\x00\ -\x00\x00\x00\x00\x00\x00\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x01\x01\x03\x00\x01\x00\x00\x00`\x00\x00\x00\x02\x01\x03\ -\x00\x04\x00\x00\x00\x22\x01\x00\x00\x03\x01\x03\x00\x01\x00\x00\ -\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ -\x00\x11\x01\x04\x00\x01\x00\x00\x00@T\x00\x00\x12\x01\x03\ -\x00\x01\x00\x00\x00\x01\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\ -\x00\x04\x00\x00\x00\x16\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x17\x01\x04\x00\x01\x00\x00\x00\x17\x0b\x00\x00\x1a\x01\x05\ -\x00\x01\x00\x00\x00*\x01\x00\x00\x1b\x01\x05\x00\x01\x00\x00\ -\x002\x01\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\ -\x00(\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\ -\x00$\x00\x00\x00:\x01\x00\x002\x01\x02\x00\x14\x00\x00\ -\x00^\x01\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ -\x00R\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00\xbc\x02\x01\ -\x00\xfa8\x00\x00r\x01\x00\x00I\x86\x01\x00\x8c\x0d\x00\ -\x00l:\x00\x00i\x87\x04\x00\x01\x00\x00\x00X_\x00\ -\x00s\x87\x07\x00H\x0c\x00\x00\xf8G\x00\x00\x00\x00\x00\ -\x00\x08\x00\x08\x00\x08\x00\x08\x00\x00\xf9\x15\x00\x10'\x00\ -\x00\x00\xf9\x15\x00\x10'\x00\x00Adobe P\ -hotoshop CC 2015\ -.5 (Windows)\x00201\ -7:03:08 11:38:26\ -\x00\x0a\x0a \x0a \ -\x0a pain\ -t.net 4.0.9\x0a \ - 2017-03-0\ -7T11:32:29-08:00\ -\x0a 2017-\ -03-08T11:38:26-0\ -8:00\x0a <\ -xmp:MetadataDate\ ->2017-03-08T11:3\ -8:26-08:00\x0a \ - image/tiff\x0a \ - 3\x0a \ - sR\ -GB IEC61966-2.1<\ -/photoshop:ICCPr\ -ofile>\x0a \ -\x0a \ - \x0a \ - adobe\ -:docid:photoshop\ -:94a27cdb-0433-1\ -1e7-b02d-9f84d9f\ -5a326\x0a \ - \x0a <\ -/photoshop:Docum\ -entAncestors>\x0a \ - xmp.iid\ -:d3f831c7-1693-8\ -248-a9a0-2c4f91d\ -81b49\x0a \ - adobe:docid:\ -photoshop:c7bad1\ -dd-0436-11e7-b02\ -d-9f84d9f5a326\x0a xmp.did:a36\ -4ea4e-2280-ea40-\ -ae73-10beb7a78ae\ -8\x0a \ - \x0a \ - \x0a \ - \x0a \ - <\ -stEvt:action>cre\ -ated\x0a \ - xmp.iid:\ -a364ea4e-2280-ea\ -40-ae73-10beb7a7\ -8ae8\x0a \ - 2017-03-07\ -T11:32:29-08:00<\ -/stEvt:when>\x0a \ - <\ -stEvt:softwareAg\ -ent>Adobe Photos\ -hop CC 2015.5 (W\ -indows)\x0a \ - \x0a \ - \x0a \ - saved\x0a \ - <\ -stEvt:instanceID\ ->xmp.iid:d3f831c\ -7-1693-8248-a9a0\ --2c4f91d81b49\ -\x0a \ - 2\ -017-03-08T11:38:\ -26-08:00\x0a \ - Ado\ -be Photoshop CC \ -2015.5 (Windows)\ -\x0a \ - /\x0a \ - \x0a <\ -/rdf:Seq>\x0a \ - \x0a \x0a \ -\x0a\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \x0a8BIM\x04\ -%\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x008BIM\x04:\x00\x00\x00\ -\x00\x00\xe5\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x0bprintOutput\x00\x00\x00\x05\ -\x00\x00\x00\x00PstSbool\x01\x00\x00\x00\ -\x00Inteenum\x00\x00\x00\x00Int\ -e\x00\x00\x00\x00Clrm\x00\x00\x00\x0fpri\ -ntSixteenBitbool\ -\x00\x00\x00\x00\x0bprinterName\ -TEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0fpr\ -intProofSetupObj\ -c\x00\x00\x00\x0c\x00P\x00r\x00o\x00o\x00f\x00\ - \x00S\x00e\x00t\x00u\x00p\x00\x00\x00\x00\x00\ -\x0aproofSetup\x00\x00\x00\x01\x00\ -\x00\x00\x00Bltnenum\x00\x00\x00\x0cb\ -uiltinProof\x00\x00\x00\x09p\ -roofCMYK\x008BIM\x04;\x00\ -\x00\x00\x00\x02-\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\ -\x00\x00\x12printOutputOp\ -tions\x00\x00\x00\x17\x00\x00\x00\x00Cpt\ -nbool\x00\x00\x00\x00\x00Clbrbo\ -ol\x00\x00\x00\x00\x00RgsMbool\x00\ -\x00\x00\x00\x00CrnCbool\x00\x00\x00\x00\ -\x00CntCbool\x00\x00\x00\x00\x00Lb\ -lsbool\x00\x00\x00\x00\x00Ngtvb\ -ool\x00\x00\x00\x00\x00EmlDbool\ -\x00\x00\x00\x00\x00Intrbool\x00\x00\x00\ -\x00\x00BckgObjc\x00\x00\x00\x01\x00\x00\ -\x00\x00\x00\x00RGBC\x00\x00\x00\x03\x00\x00\x00\x00\ -Rd doub@o\xe0\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00Grn doub@o\xe0\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00Bl doub\ -@o\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00BrdT\ -UntF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00Bld UntF#Rlt\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Rslt\ -UntF#Pxl@b\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x0avectorDatabo\ -ol\x01\x00\x00\x00\x00PgPsenum\x00\ -\x00\x00\x00PgPs\x00\x00\x00\x00PgPC\x00\ -\x00\x00\x00LeftUntF#Rlt\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Top U\ -ntF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00Scl UntF#Prc@\ -Y\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10cropW\ -henPrintingbool\x00\ -\x00\x00\x00\x0ecropRectBott\ -omlong\x00\x00\x00\x00\x00\x00\x00\x0ccr\ -opRectLeftlong\x00\x00\ -\x00\x00\x00\x00\x00\x0dcropRectRi\ -ghtlong\x00\x00\x00\x00\x00\x00\x00\x0bc\ -ropRectToplong\x00\x00\ -\x00\x00\x008BIM\x03\xed\x00\x00\x00\x00\x00\x10\x00\ -\x90\x00\x00\x00\x01\x00\x01\x00\x90\x00\x00\x00\x01\x00\x018\ -BIM\x04&\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00?\x80\x00\x008BIM\x03\xee\x00\ -\x00\x00\x00\x00\x0d\x0cTransparen\ -cy\x008BIM\x04\x15\x00\x00\x00\x00\x00\x1e\x00\ -\x00\x00\x0d\x00T\x00r\x00a\x00n\x00s\x00p\x00\ -a\x00r\x00e\x00n\x00c\x00y\x00\x008BI\ -M\x045\x00\x00\x00\x00\x00\x11\x00\x00\x00\x01\x00\x00\xff\ -\xff\x00\x00\x00\x00\x00\x00\x00d\x01\x008BIM\x04\ -\x1d\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008BIM\x04\ -\x0d\x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e8BIM\x04\ -\x19\x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e8BIM\x03\ -\xf3\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x01\ -\x008BIM'\x10\x00\x00\x00\x00\x00\x0a\x00\x01\x00\ -\x00\x00\x00\x00\x00\x00\x018BIM\x03\xf5\x00\x00\x00\ -\x00\x00H\x00/ff\x00\x01\x00lff\x00\x06\x00\ -\x00\x00\x00\x00\x01\x00/ff\x00\x01\x00\xa1\x99\x9a\x00\ -\x06\x00\x00\x00\x00\x00\x01\x002\x00\x00\x00\x01\x00Z\x00\ -\x00\x00\x06\x00\x00\x00\x00\x00\x01\x005\x00\x00\x00\x01\x00\ --\x00\x00\x00\x06\x00\x00\x00\x00\x00\x018BIM\x03\ -\xf8\x00\x00\x00\x00\x00p\x00\x00\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\ -\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\ -\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\x03\xe8\x00\x008BIM\x04\x00\x00\x00\x00\ -\x00\x00\x02\x00\x008BIM\x04\x02\x00\x00\x00\x00\x00\ -\x02\x00\x008BIM\x040\x00\x00\x00\x00\x00\x01\x01\ -\x008BIM\x04-\x00\x00\x00\x00\x00\x06\x00\x01\x00\ -\x00\x00\x0a8BIM\x04\x08\x00\x00\x00\x00\x00\x10\x00\ -\x00\x00\x01\x00\x00\x02@\x00\x00\x02@\x00\x00\x00\x008\ -BIM\x04\x1e\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008\ -BIM\x04\x1a\x00\x00\x00\x00\x035\x00\x00\x00\x06\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\ -\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\ -\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00null\x00\x00\ -\x00\x02\x00\x00\x00\x06boundsObjc\ -\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Rct1\x00\x00\ -\x00\x04\x00\x00\x00\x00Top long\x00\x00\ -\x00\x00\x00\x00\x00\x00Leftlong\x00\x00\ -\x00\x00\x00\x00\x00\x00Btomlong\x00\x00\ -\x00`\x00\x00\x00\x00Rghtlong\x00\x00\ -\x00`\x00\x00\x00\x06slicesVlLs\ -\x00\x00\x00\x01Objc\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x05slice\x00\x00\x00\x12\x00\x00\x00\x07s\ -liceIDlong\x00\x00\x00\x00\x00\x00\ -\x00\x07groupIDlong\x00\x00\x00\ -\x00\x00\x00\x00\x06originenum\x00\ -\x00\x00\x0cESliceOrigin\x00\ -\x00\x00\x0dautoGenerated\ -\x00\x00\x00\x00Typeenum\x00\x00\x00\x0a\ -ESliceType\x00\x00\x00\x00Im\ -g \x00\x00\x00\x06boundsObjc\ -\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Rct1\x00\x00\ -\x00\x04\x00\x00\x00\x00Top long\x00\x00\ -\x00\x00\x00\x00\x00\x00Leftlong\x00\x00\ -\x00\x00\x00\x00\x00\x00Btomlong\x00\x00\ -\x00`\x00\x00\x00\x00Rghtlong\x00\x00\ -\x00`\x00\x00\x00\x03urlTEXT\x00\x00\x00\ -\x01\x00\x00\x00\x00\x00\x00nullTEXT\x00\ -\x00\x00\x01\x00\x00\x00\x00\x00\x00MsgeTEX\ -T\x00\x00\x00\x01\x00\x00\x00\x00\x00\x06altTa\ -gTEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0ec\ -ellTextIsHTMLboo\ -l\x01\x00\x00\x00\x08cellTextTE\ -XT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x09horz\ -Alignenum\x00\x00\x00\x0fESl\ -iceHorzAlign\x00\x00\x00\x07\ -default\x00\x00\x00\x09vertA\ -lignenum\x00\x00\x00\x0fESli\ -ceVertAlign\x00\x00\x00\x07d\ -efault\x00\x00\x00\x0bbgColo\ -rTypeenum\x00\x00\x00\x11ESl\ -iceBGColorType\x00\x00\ -\x00\x00None\x00\x00\x00\x09topOut\ -setlong\x00\x00\x00\x00\x00\x00\x00\x0al\ -eftOutsetlong\x00\x00\x00\ -\x00\x00\x00\x00\x0cbottomOutse\ -tlong\x00\x00\x00\x00\x00\x00\x00\x0brig\ -htOutsetlong\x00\x00\x00\x00\ -\x008BIM\x04(\x00\x00\x00\x00\x00\x0c\x00\x00\x00\ -\x02?\xf0\x00\x00\x00\x00\x00\x008BIM\x04\x14\x00\ -\x00\x00\x00\x00\x04\x00\x00\x00\x0d8BIM\x04\x0c\x00\ -\x00\x00\x00\x043\x00\x00\x00\x01\x00\x00\x000\x00\x00\x00\ -0\x00\x00\x00\x90\x00\x00\x1b\x00\x00\x00\x04\x17\x00\x18\x00\ -\x01\xff\xd8\xff\xed\x00\x0cAdobe_CM\x00\ -\x01\xff\xee\x00\x0eAdobe\x00d\x80\x00\x00\x00\ -\x01\xff\xdb\x00\x84\x00\x0c\x08\x08\x08\x09\x08\x0c\x09\x09\x0c\ -\x11\x0b\x0a\x0b\x11\x15\x0f\x0c\x0c\x0f\x15\x18\x13\x13\x15\x13\ -\x13\x18\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x01\x0d\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\ -\x10\x14\x0e\x0e\x0e\x14\x14\x0e\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\ -\x0c\x0c\x11\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\xff\xc0\x00\x11\x08\x000\x000\ -\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xdd\x00\x04\x00\x03\ -\xff\xc4\x01?\x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\ -\x00\x00\x00\x00\x00\x03\x00\x01\x02\x04\x05\x06\x07\x08\x09\x0a\ -\x0b\x01\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\ -\x00\x00\x01\x00\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x10\x00\ -\x01\x04\x01\x03\x02\x04\x02\x05\x07\x06\x08\x05\x03\x0c3\x01\ -\x00\x02\x11\x03\x04!\x121\x05AQa\x13\x22q\x81\ -2\x06\x14\x91\xa1\xb1B#$\x15R\xc1b34r\ -\x82\xd1C\x07%\x92S\xf0\xe1\xf1cs5\x16\xa2\xb2\ -\x83&D\x93TdE\xc2\xa3t6\x17\xd2U\xe2e\ -\xf2\xb3\x84\xc3\xd3u\xe3\xf3F'\x94\xa4\x85\xb4\x95\xc4\ -\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5Vfv\x86\x96\xa6\xb6\ -\xc6\xd6\xe6\xf67GWgw\x87\x97\xa7\xb7\xc7\xd7\xe7\ -\xf7\x11\x00\x02\x02\x01\x02\x04\x04\x03\x04\x05\x06\x07\x07\x06\ -\x055\x01\x00\x02\x11\x03!1\x12\x04AQaq\x22\ -\x13\x052\x81\x91\x14\xa1\xb1B#\xc1R\xd1\xf03$\ -b\xe1r\x82\x92CS\x15cs4\xf1%\x06\x16\xa2\ -\xb2\x83\x07&5\xc2\xd2D\x93T\xa3\x17dEU6\ -te\xe2\xf2\xb3\x84\xc3\xd3u\xe3\xf3F\x94\xa4\x85\xb4\ -\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5Vfv\x86\x96\ -\xa6\xb6\xc6\xd6\xe6\xf6'7GWgw\x87\x97\xa7\xb7\ -\xc7\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00?\x00\xf5\ -T\x92@\xce\xbe\xdcl+\xef\xa6\xa7d[S\x1c\xea\ -\xe9f\xae{\x80\xf6\xb0\x7fY\xc9)\x8e_Q\xe9\xf8\ -Q\xf6\xcc\x9a\xb1\xf7}\x1fU\xedd\xff\x00Wy\xf7\ -\x22\xd1\x91\x8f\x93X\xb7\x1e\xd6]S\xb8}n\x0ei\ -\xfe\xd3%\xab\x98\xe8?Uq\xf31\x7fju\xfa\x9d\ -\x95\xd4\xb3\x7fI`\xbbp\xd8\xd3\xfc\xdd~\x94\xb7g\ -\xb3\xf3\x1d\xfc\xc7\xf3?\xe0\xd0rzs~\xab\xf5\xcc\ -\x0c\xae\x98\xe73\x03\xa9\x5c\xdc\x5c\xacB\xe2[\xb9\xda\ -Wcw\xeew\xb7\xe9\xfe\xfd\x7f\xcd\xff\x005v\xc4\ -\x94\xf6)$\x92J\x7f\xff\xd0\xf5U\x9b\xd6\xfa\xf6\x17\ -E\xaa\xb7\xe4\x8b,}\xee-\xaa\x9a\x9b\xb9\xee#W\ -}\x22\xc6\xedo\xf5\x96\x92\xe5\xfe\xbd\xfe\x87\x1f\xa6\xf5\ -\x01\xa3\xb0\xf3kt\xf84\xcb\x9d\xff\x00\x9e\x98\x92\x94\ ->\xb7\xf5[\xc4\xe1t\x0c\xab\x01\xfa.\xb6k\x1f\xf9\ -\xed\xcd\xff\x00\xa6\xb3\xba\x9d\x1f\x5cz\x8d\xf4u,\x9c\ -*q\x9b\xd3w_UN\xb09\xbb\x84Y\xea=\x8c\ -s\x9fe\x8d\xf4\xfd\x9f\xcd\xad\xff\x00\xad\xcf\xeau\xf4\ -Km\xe9\xaf5\xbe\xb2\x1f{\xd8@x\xa5\xb2\xeb\x9d\ -S\x8f\xd1s\x7f\xcf\xf4\xfdOO\xf4\x89\xfe\xaa]\x99\ -\x97\xf5~\x8bs\xec\x17\xbe\xdd\xfb^L\xb8\xd7\xb9\xcd\ -\xaf\xd5#\xfc&\xcf\xa7\xff\x00\x82~\x91%6>\xaf\ -\xf5Gun\x8f\x8d\x9fcZ\xcb.i\xf5\x1a\xd9\xda\ -\x1c\xd7:\xb7\xed\xdd\xee\xda\xed\x9b\x96\x8a\xe6?\xc5\xf9\ -,\xe9\x19\x18\x8e>\xecL\xabj\x8f\x01\xedw\xfdV\ -\xf5\xd3\xa4\xa7\xff\xd1\xf5U\x87\xf5\xd3\x0d\xf9\x7fV\xf2\ -\xd9[\x0d\x9606\xc65\xa2O\xb1\xcds\xf6\xb4\x7f\ -\xc1\xef[\x89$\xa7\x92\xa3\xeb\xadY8\x8c\xa2\x9e\x97\ -\x97\xd4\x1ek\x0c\xb86\xb0kq\xdb\xb6\xc1\xfe\x13u\ -n\xfeS\x13\xe3u_\xad\x1e\x8b1\xfa_\xd5\xe6a\ -\xe3\xd66\xd6\xcbl\x0ckG\x95_\xab\xae\xb1$\x94\ -\xe0}U\xe9\x1dK\x01\xd9\xf9]G\xd3\xae\xec\xfb\xbd\ -oB\xa2KX}\xc5\xee\xdc\x7f}\xcf\xfa\x1e\xff\x00\ -\xf8\xc5\xbe\x92I)\xff\xd9\x008BIM\x04!\x00\ -\x00\x00\x00\x00a\x00\x00\x00\x01\x01\x00\x00\x00\x0f\x00A\ -\x00d\x00o\x00b\x00e\x00 \x00P\x00h\x00o\ -\x00t\x00o\x00s\x00h\x00o\x00p\x00\x00\x00\x19\ -\x00A\x00d\x00o\x00b\x00e\x00 \x00P\x00h\ -\x00o\x00t\x00o\x00s\x00h\x00o\x00p\x00 \ -\x00C\x00C\x00 \x002\x000\x001\x005\x00.\ -\x005\x00\x00\x00\x01\x00\x00\x00\x0cHLino\x02\ -\x10\x00\x00mntrRGB XYZ \x07\ -\xce\x00\x02\x00\x09\x00\x06\x001\x00\x00acspM\ -SFT\x00\x00\x00\x00IEC sRGB\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\xd6\x00\ -\x01\x00\x00\x00\x00\xd3-HP \x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11cprt\x00\ -\x00\x01P\x00\x00\x003desc\x00\x00\x01\x84\x00\ -\x00\x00lwtpt\x00\x00\x01\xf0\x00\x00\x00\x14b\ -kpt\x00\x00\x02\x04\x00\x00\x00\x14rXYZ\x00\ -\x00\x02\x18\x00\x00\x00\x14gXYZ\x00\x00\x02,\x00\ -\x00\x00\x14bXYZ\x00\x00\x02@\x00\x00\x00\x14d\ -mnd\x00\x00\x02T\x00\x00\x00pdmdd\x00\ -\x00\x02\xc4\x00\x00\x00\x88vued\x00\x00\x03L\x00\ -\x00\x00\x86view\x00\x00\x03\xd4\x00\x00\x00$l\ -umi\x00\x00\x03\xf8\x00\x00\x00\x14meas\x00\ -\x00\x04\x0c\x00\x00\x00$tech\x00\x00\x040\x00\ -\x00\x00\x0crTRC\x00\x00\x04<\x00\x00\x08\x0cg\ -TRC\x00\x00\x04<\x00\x00\x08\x0cbTRC\x00\ -\x00\x04<\x00\x00\x08\x0ctext\x00\x00\x00\x00C\ -opyright (c) 199\ -8 Hewlett-Packar\ -d Company\x00\x00desc\x00\ -\x00\x00\x00\x00\x00\x00\x12sRGB IEC6\ -1966-2.1\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x12sRGB IEC6196\ -6-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00XYZ \x00\x00\x00\x00\x00\ -\x00\xf3Q\x00\x01\x00\x00\x00\x01\x16\xccXYZ \x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00X\ -YZ \x00\x00\x00\x00\x00\x00o\xa2\x00\x008\xf5\x00\ -\x00\x03\x90XYZ \x00\x00\x00\x00\x00\x00b\x99\x00\ -\x00\xb7\x85\x00\x00\x18\xdaXYZ \x00\x00\x00\x00\x00\ -\x00$\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcfdesc\x00\ -\x00\x00\x00\x00\x00\x00\x16IEC http:\ -//www.iec.ch\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x16IEC http\ -://www.iec.ch\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00desc\x00\ -\x00\x00\x00\x00\x00\x00.IEC 61966\ --2.1 Default RGB\ - colour space - \ -sRGB\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00.\ -IEC 61966-2.1 De\ -fault RGB colour\ - space - sRGB\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00desc\x00\x00\x00\x00\x00\x00\x00,R\ -eference Viewing\ - Condition in IE\ -C61966-2.1\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00,Reference \ -Viewing Conditio\ -n in IEC61966-2.\ -1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00view\x00\ -\x00\x00\x00\x00\x13\xa4\xfe\x00\x14_.\x00\x10\xcf\x14\x00\ -\x03\xed\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01X\ -YZ \x00\x00\x00\x00\x00L\x09V\x00P\x00\x00\x00\ -W\x1f\xe7meas\x00\x00\x00\x00\x00\x00\x00\x01\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x02\x8f\x00\x00\x00\x02sig \x00\x00\x00\x00C\ -RT curv\x00\x00\x00\x00\x00\x00\x04\x00\x00\ -\x00\x00\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\x1e\x00#\x00\ -(\x00-\x002\x007\x00;\x00@\x00E\x00J\x00\ -O\x00T\x00Y\x00^\x00c\x00h\x00m\x00r\x00\ -w\x00|\x00\x81\x00\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\ -\x9f\x00\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\ -\xc6\x00\xcb\x00\xd0\x00\xd5\x00\xdb\x00\xe0\x00\xe5\x00\xeb\x00\ -\xf0\x00\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\ -\x1f\x01%\x01+\x012\x018\x01>\x01E\x01L\x01\ -R\x01Y\x01`\x01g\x01n\x01u\x01|\x01\x83\x01\ -\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\ -\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\ -\x0c\x02\x14\x02\x1d\x02&\x02/\x028\x02A\x02K\x02\ -T\x02]\x02g\x02q\x02z\x02\x84\x02\x8e\x02\x98\x02\ -\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\ -\xf5\x03\x00\x03\x0b\x03\x16\x03!\x03-\x038\x03C\x03\ -O\x03Z\x03f\x03r\x03~\x03\x8a\x03\x96\x03\xa2\x03\ -\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\ -\x13\x04 \x04-\x04;\x04H\x04U\x04c\x04q\x04\ -~\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\ -\xf0\x04\xfe\x05\x0d\x05\x1c\x05+\x05:\x05I\x05X\x05\ -g\x05w\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\ -\xe5\x05\xf6\x06\x06\x06\x16\x06'\x067\x06H\x06Y\x06\ -j\x06{\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\ -\xf5\x07\x07\x07\x19\x07+\x07=\x07O\x07a\x07t\x07\ -\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\ -\x1f\x082\x08F\x08Z\x08n\x08\x82\x08\x96\x08\xaa\x08\ -\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09%\x09:\x09O\x09\ -d\x09y\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\ -\x11\x0a'\x0a=\x0aT\x0aj\x0a\x81\x0a\x98\x0a\xae\x0a\ -\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b9\x0bQ\x0bi\x0b\ -\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c*\x0c\ -C\x0c\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\ -\x0d\x0d&\x0d@\x0dZ\x0dt\x0d\x8e\x0d\xa9\x0d\xc3\x0d\ -\xde\x0d\xf8\x0e\x13\x0e.\x0eI\x0ed\x0e\x7f\x0e\x9b\x0e\ -\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f%\x0fA\x0f^\x0fz\x0f\ -\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10&\x10C\x10a\x10\ -~\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x111\x11O\x11\ -m\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12&\x12E\x12\ -d\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13#\x13C\x13\ -c\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14'\x14I\x14\ -j\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x154\x15V\x15\ -x\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16&\x16I\x16l\x16\ -\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17A\x17e\x17\x89\x17\ -\xae\x17\xd2\x17\xf7\x18\x1b\x18@\x18e\x18\x8a\x18\xaf\x18\ -\xd5\x18\xfa\x19 \x19E\x19k\x19\x91\x19\xb7\x19\xdd\x1a\ -\x04\x1a*\x1aQ\x1aw\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b\ -;\x1bc\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c*\x1cR\x1c\ -{\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1dG\x1dp\x1d\x99\x1d\ -\xc3\x1d\xec\x1e\x16\x1e@\x1ej\x1e\x94\x1e\xbe\x1e\xe9\x1f\ -\x13\x1f>\x1fi\x1f\x94\x1f\xbf\x1f\xea \x15 A \ -l \x98 \xc4 \xf0!\x1c!H!u!\xa1!\ -\xce!\xfb\x22'\x22U\x22\x82\x22\xaf\x22\xdd#\x0a#\ -8#f#\x94#\xc2#\xf0$\x1f$M$|$\ -\xab$\xda%\x09%8%h%\x97%\xc7%\xf7&\ -'&W&\x87&\xb7&\xe8'\x18'I'z'\ -\xab'\xdc(\x0d(?(q(\xa2(\xd4)\x06)\ -8)k)\x9d)\xd0*\x02*5*h*\x9b*\ -\xcf+\x02+6+i+\x9d+\xd1,\x05,9,\ -n,\xa2,\xd7-\x0c-A-v-\xab-\xe1.\ -\x16.L.\x82.\xb7.\xee/$/Z/\x91/\ -\xc7/\xfe050l0\xa40\xdb1\x121J1\ -\x821\xba1\xf22*2c2\x9b2\xd43\x0d3\ -F3\x7f3\xb83\xf14+4e4\x9e4\xd85\ -\x135M5\x875\xc25\xfd676r6\xae6\ -\xe97$7`7\x9c7\xd78\x148P8\x8c8\ -\xc89\x059B9\x7f9\xbc9\xf9:6:t:\ -\xb2:\xef;-;k;\xaa;\xe8<' >`>\ -\xa0>\xe0?!?a?\xa2?\xe2@#@d@\ -\xa6@\xe7A)AjA\xacA\xeeB0BrB\ -\xb5B\xf7C:C}C\xc0D\x03DGD\x8aD\ -\xceE\x12EUE\x9aE\xdeF\x22FgF\xabF\ -\xf0G5G{G\xc0H\x05HKH\x91H\xd7I\ -\x1dIcI\xa9I\xf0J7J}J\xc4K\x0cK\ -SK\x9aK\xe2L*LrL\xbaM\x02MJM\ -\x93M\xdcN%NnN\xb7O\x00OIO\x93O\ -\xddP'PqP\xbbQ\x06QPQ\x9bQ\xe6R\ -1R|R\xc7S\x13S_S\xaaS\xf6TBT\ -\x8fT\xdbU(UuU\xc2V\x0fV\x5cV\xa9V\ -\xf7WDW\x92W\xe0X/X}X\xcbY\x1aY\ -iY\xb8Z\x07ZVZ\xa6Z\xf5[E[\x95[\ -\xe5\x5c5\x5c\x86\x5c\xd6]']x]\xc9^\x1a^\ -l^\xbd_\x0f_a_\xb3`\x05`W`\xaa`\ -\xfcaOa\xa2a\xf5bIb\x9cb\xf0cCc\ -\x97c\xebd@d\x94d\xe9e=e\x92e\xe7f\ -=f\x92f\xe8g=g\x93g\xe9h?h\x96h\ -\xeciCi\x9ai\xf1jHj\x9fj\xf7kOk\ -\xa7k\xfflWl\xafm\x08m`m\xb9n\x12n\ -kn\xc4o\x1eoxo\xd1p+p\x86p\xe0q\ -:q\x95q\xf0rKr\xa6s\x01s]s\xb8t\ -\x14tpt\xccu(u\x85u\xe1v>v\x9bv\ -\xf8wVw\xb3x\x11xnx\xccy*y\x89y\ -\xe7zFz\xa5{\x04{c{\xc2|!|\x81|\ -\xe1}A}\xa1~\x01~b~\xc2\x7f#\x7f\x84\x7f\ -\xe5\x80G\x80\xa8\x81\x0a\x81k\x81\xcd\x820\x82\x92\x82\ -\xf4\x83W\x83\xba\x84\x1d\x84\x80\x84\xe3\x85G\x85\xab\x86\ -\x0e\x86r\x86\xd7\x87;\x87\x9f\x88\x04\x88i\x88\xce\x89\ -3\x89\x99\x89\xfe\x8ad\x8a\xca\x8b0\x8b\x96\x8b\xfc\x8c\ -c\x8c\xca\x8d1\x8d\x98\x8d\xff\x8ef\x8e\xce\x8f6\x8f\ -\x9e\x90\x06\x90n\x90\xd6\x91?\x91\xa8\x92\x11\x92z\x92\ -\xe3\x93M\x93\xb6\x94 \x94\x8a\x94\xf4\x95_\x95\xc9\x96\ -4\x96\x9f\x97\x0a\x97u\x97\xe0\x98L\x98\xb8\x99$\x99\ -\x90\x99\xfc\x9ah\x9a\xd5\x9bB\x9b\xaf\x9c\x1c\x9c\x89\x9c\ -\xf7\x9dd\x9d\xd2\x9e@\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0\ -i\xa0\xd8\xa1G\xa1\xb6\xa2&\xa2\x96\xa3\x06\xa3v\xa3\ -\xe6\xa4V\xa4\xc7\xa58\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7\ -n\xa7\xe0\xa8R\xa8\xc4\xa97\xa9\xa9\xaa\x1c\xaa\x8f\xab\ -\x02\xabu\xab\xe9\xac\x5c\xac\xd0\xadD\xad\xb8\xae-\xae\ -\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0u\xb0\xea\xb1`\xb1\xd6\xb2\ -K\xb2\xc2\xb38\xb3\xae\xb4%\xb4\x9c\xb5\x13\xb5\x8a\xb6\ -\x01\xb6y\xb6\xf0\xb7h\xb7\xe0\xb8Y\xb8\xd1\xb9J\xb9\ -\xc2\xba;\xba\xb5\xbb.\xbb\xa7\xbc!\xbc\x9b\xbd\x15\xbd\ -\x8f\xbe\x0a\xbe\x84\xbe\xff\xbfz\xbf\xf5\xc0p\xc0\xec\xc1\ -g\xc1\xe3\xc2_\xc2\xdb\xc3X\xc3\xd4\xc4Q\xc4\xce\xc5\ -K\xc5\xc8\xc6F\xc6\xc3\xc7A\xc7\xbf\xc8=\xc8\xbc\xc9\ -:\xc9\xb9\xca8\xca\xb7\xcb6\xcb\xb6\xcc5\xcc\xb5\xcd\ -5\xcd\xb5\xce6\xce\xb6\xcf7\xcf\xb8\xd09\xd0\xba\xd1\ -<\xd1\xbe\xd2?\xd2\xc1\xd3D\xd3\xc6\xd4I\xd4\xcb\xd5\ -N\xd5\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\xe0\xd8d\xd8\xe8\xd9\ -l\xd9\xf1\xdav\xda\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\ -\x96\xde\x1c\xde\xa2\xdf)\xdf\xaf\xe06\xe0\xbd\xe1D\xe1\ -\xcc\xe2S\xe2\xdb\xe3c\xe3\xeb\xe4s\xe4\xfc\xe5\x84\xe6\ -\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe82\xe8\xbc\xe9F\xe9\xd0\xea\ -[\xea\xe5\xebp\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee(\xee\ -\xb4\xef@\xef\xcc\xf0X\xf0\xe5\xf1r\xf1\xff\xf2\x8c\xf3\ -\x19\xf3\xa7\xf44\xf4\xc2\xf5P\xf5\xde\xf6m\xf6\xfb\xf7\ -\x8a\xf8\x19\xf8\xa8\xf98\xf9\xc7\xfaW\xfa\xe7\xfbw\xfc\ -\x07\xfc\x98\xfd)\xfd\xba\xfeK\xfe\xdc\xffm\xff\xff\x80\ -\x00 P8$\x16\x0d\x07\x84BaP\xb8d6\x1d\ -\x0f\x88DbQ8\xa4V-\x17\x8cFcQ\xb8\xe4\ -v=\x1f\x90HdR9$\x96M'\x94JeR\ -\xb9d\xb6]/\x98LfS9\xa4\xd6m7\x9cN\ -gS\xb9\xe4\xf6}?\xa0PhT:%\x16\x8dG\ -\xa4RiT\xbae6\x9dO\xa8TjU:\xa5V\ -\xadW\xacVkU\xba\xe5v\xbd_\xb0XlV;\ -%\x96\x10\x01\x07ZDA\x1b`\xac\x1bo\x0f\x81\xae\ -A\x10\x0d\xd4\x02\xf9\xbc<\x1eW\xb6\xe3\xc6\xfc\xda\xbf\ -<[vl&\x166\x0a\xc4\x06\x84x\xb2\xb6,F\ -Y\xb6\x04E@\x5c\xa02(\xfc\xcc=\xdd\x99\xb6c\ -\x83<\xb2n\xe8U\x0f]#\x93\x0d\xa7\xc3\x04\xf5C\ -\x01n\xb4\xde\x1e\xd8\x12\xc1\x1b0\xac\xb1\xf1\xb7v7\ -\xf7J\xe6\xce\xf5:\xea\xe02\xb5\x1c:\xc8\xbf\x8cu\ -\x19\xf2O\xe0N`.x\xfd\xe8>\x18\xbd3cc\ -\xac\x9d\xe2vi ~\xe0K\x923?\x8b\x10*b\x1eA\x04\xa8U\x05\x8dH\ -\xc1\xdd\x07\x9aN\x01\xd4e\x9c\xf0\xa9\x82\xd2\x1e\xa7)\ -\xfd\x0d\x9f,\xa0\x0a\xb7\xad\xe1\x105\x11\x88\x00\x94L\ -\x16\x02\x11HP\x81\x80(\xc1\xad\x17\x93\x064d6\ -\xc3g\xf1\xf9\x03G\x09(]\x1d\x8eA\xc4|F\xa2\ -\x90\x91\x94fH\x83\xe1\xcb#\x97\xb0\x11\xff\x02\x22\xe0\ -\x14\x9c\x02\x832\x88|\x18\xca\x83\xe4F\x0d\x08\x08\xc1\ -\xa1-\x90\xe6T\xbc=G3\x0a;\x13\x02Ah\xa1\ -3\x99\x0e`\x08\x05\x22\x06\xdc\xdcR\x18s\x88\xcc\xcc\ -\x1f\x87\xbaP\xbb\x00MhZ8\x86\xf3\xe9\x12\xbb\x00\ -h\x82\xf0|\x9d\xe5U\x0c\x14=\x87\xb9\xd51Q\x88\ -\xa8\x93G\x96\xc0\xed$$\xa2\x0d\x09\xbaT\x97\xf4\xc8\ -\xbd\x1a\x9fI\xa07O\x88b\x0dDR1\x00P0\ -\x88\x1bUIB`U\x83\x05\x1bW\xa1\xa0]d\x0d\ -\x8a\xf5\xa9\xb359\xc8\x5c0r\x15\xb5\xe8`\xdb\x9f\ -\x07jx\x0b\xd8\x81\xd0\x9bc\x98\x12p\x04\x02\xa1\x94\ -\xe1Wg\x85\x8c\x0b\x07XZ\x88 ik\x90A\x95\ -\xb4>\xa2\x13\x89\x864\x1a\xf7\x092\xa2\x077)\x1f\ -=\x0e\x08\x84\xb6h\x11\x12\xf1\x94<\xda\xb5\x83\xb8\x03\ -\x82U\xa8\xael6`Cj\x85\xd1'QQ\x7f\x84\ -\x87\xde\x04y\xa8\x80\x1e\x0c\x04\x0axI\xa1\x14\x82\x01\ -:\x18y\xe2\x07\x05\x9eU\x85s\xa1\xedx\xcc/\x10\ -X7\x07X\xe9\x22\x887F\xf9\x5c]\xe4\x82\x9a\x99\ -\x8d\x0d\xf8\xe8tH!\x92Q\xfcWf\x01\x99\xdb\x99\ -\x9a\x18\xc3\xe0\xf9\x01\xe2\xb6tkT\xa0\xd2\x1e\x7f\x96\ -Z\x08zth\x86*\x98\x04\xe9\x00\xbet+\x1a\xf7\ -\x98\x22\x86\x17\x9a\x88\xaaoj\x85fl\xf7\xe1\x81D\ -\xce(\x18\xef\x90 \x86h\x87A\x86Y\xec\x82\x06\x5c\ -\xa8\x0a;I\x96\x0a\xed\x81\xa2\x18an\x03#\xcc\xec\ -j\xef\x80\x03Y\x01`\xd6\xd8\x0a\x86\xb7D\xa2\x0c\x87\ -\xe8#\xfe[\x89G\x1f\x0c[\xaa\x827\x14X\x04\x1c\ -h\x9e\x86FF0\xdcjr\x84\x9e\xebx\xd3\xe0\xd8\ -\x87\xcc\x88\x86o<@:\x07\xe9\xf2\xaaQ\xe2M#\ -I\xf2\x11\x97'\xca\xf2\xfdj\xb35\x018H\xa6h\ -\x81\xfd\xa8J\x86\x18=\xc8\xc6\xde\x9b$\xf7]\xdf\xaa\ -\xaf\xc0,\x1ckf4X\x86\x17^H\xa4\xcf\x1c\x05\ -\x7f\x81\xe7\xaa!\xf7\xa4M\x85\x1e\xa8\xc9\x96\xc0G\xe9\ -_\xed\x86\xcc\xd9\xd8gz\x1f\x0a\x92\xc8\x85B\x97\xcc\ -g`\xc0\x18\x0e\x86\x1d\xffi\xad^\x95\xa1\x8d9\xf1\ -~\x8a-\xca\x1c\x91\xd3\xd0\xe2\x88s\xc6i\x02\xffD\ -\x03\xf5\x80E\x05\xf4\x80v\x966\x11\x00 !\x83\xda\ -\x06\x0ef`+\x81\xa4\x0c\x1e\xc3\x9e\x01\xc1Rz\x95\ -\xc2\x10L\x83B\xf1\xe3\x90\xb1\xf5\x07\xc7\x84!\x1e\x03\ -e<\x0fHL8\xc7\x0c)\x16*\xa4m\x0a(-\ -\x0b\xc8\xaa\x1e\x01\x8d \x04\x81d@\x08KH\x0e\x04\ -\x802\x1e\x01\xd8h\x06\x1b\xf8>v\xa0=\xdb\x923\ -\xf89\x05\xd3\x91\x0d\xf0\x88lC\x07\x5c\x87\x80kx\ -\x03p&!\x82f\x18\x0ab\x18$\x87 \x8e\x1a\x01\ -epO\x10x\xee\x1aB\xc22\x03\x96-\x13\x8a\xe2\ -x\x86L\xe1\xbcC\xe6\x90\x05\xa2\xec?\x87\x800\x0e\ -\xb0\xc0O\x1bU(\x19\x80\xa5a\xe4\x8b\xa7\x96g\x9e\ -th(\xcb(\x02\xb7\xb0i\x0eA!\x91\x05q\xda\ -\x1c\x82%\xe6\x04\x95\xc3NQ\x90\xb0P*\xc1\x80\x18\ -d\x11>k\xc0\xaeN\x06\xb0E'\xc2\xa9\xaa\x02`\ -\xbd\x1c#Q\xf6\xc5\x96\x00\xeci\xd2<\x86!Q\xce\ -0\x9b \xb3p2d\x9cH\x80\x8f-\xc5\x84\x8a,\ -\x08\xd4~,\x01\xd5\x09\x87\xa0\xe2\x89\x90\x88\xc0\x17\xe1\ -\xb2\x86\x074\x1f\x1fC\xc6e\x0e\xf5\x06<\x10@<\ -\x12\xa0\x9ej\x06\x22\x190\x07\x18\xac\x9b@\xb6e\x0f\ -\x19hL$ N\x9cC\x0d\xe1\x03r\x98\xe8G\xc2\ -\x89\x1dl@y\x8d\xe3\x027!\x10\xd6\x89\x93\xb0p\ -\xcc\x01\xc4\xc0\x87\xdb\x04#i\xf4\x1b\x88\xa3\x8c\x0b\xc3\ -\xa9\x0ct#\xe6m\x0a\xc0\x5c`F\xd4\xdf%\xe0\x9a\ -\x86\x06\x00\x81C\xc4\xf90e\xca\x0cv\xcd\x8a\x10\xb4\ -\xa0\x90\xe8Pc\xb9`N\xb6\x22\xa2GL\xf8\x1e\x84\ -\xd2N\x02\xb0\xd6\x0e\xe9@\x94\x22\x02\xe2\x96\x04\xb1\xc5\ -K\xc5\xb5\x0a%\xce(#\x0a\xf7\x1a\x08\x02\x81\x18\x97\ -\x94vv\x0e\x02\xf6<\x86\xeb\xed\x1d\xe3QiS\xf1\ -\xbb=\x94\x18\xef*\x8ep%\xd4\xd1vD\x06=Q\ -\x0e#N\xaa2\xcadK\x168M\x181\x04\x86Q\ -\xd1\xa5W\xc4ta\x1aS\xd1]\xcd\xd3\x87\x16\xc2\xad\ -i\x1a\xb1\xec\x85\xa2\xf1\xac&\x06%q\x0d5\x5c\x96\ -P\xf0\x80(h`&\x0b\xd0.\x06\x8aZ\xfc\x07\x92\ -P\xfdQ\x8f\xa4\x044\xb1\xaf\x02H`\xe6\xb1B\xfc\ -ZX\xd0\x85]\x09X0\xb2A\xe4\x1bYQ\x0c\xf6\ -\x07\xf8\xfd~\x00\xca\xb1-J\xb20\x1b\xfc\xb3!T\ -\xfcoPP[\x19\xec\x81%\x03\xf6\xac&\xcbp\x8e\ -,\x88\x83Q\x17\x8dM\xaa\x93KBc\x82\xb47\x95\ --\x84b&\xe1\xb6)S\xa0\xf5%\x93DK \xb0\ -U\x5c\xc8\x5c\xe8\xa0\xa0\xbe\x84Z\x92J\x99\x01s\xb2\ -\x19\xe9\xe0\x86.\xe0\xf0\xba\xc4I,\xb0\x8f\xdcG\x82\ -\x9b\xbc\x19\xae\xa1\x0b\x1d7\x8cc)\x91~\x17\xaa1\ -(G`\xb9\x1e\xa3\xf2 -o\x80DH\xe3\x94^\ -\xdc\xe2H\xd7\x97\xb0\xd8\x86\x80\x5c\x86[\xe1Gy\xab\ -\xd9*\x004\xd0WSzrE\xe7\xb4}\x0a\x0fx\ -g\x92E$\x07BC\xa5q\x04>\xb8\x8c@\xd5[\ -\x84\xbd\xf6$\xed\xa4(\xb6\xb6\xdaC\x10\x90\xc8\x8c\x82\ -\xc0\x1c\x92\x8bCg\xc9\x03\x86\x1cb\xe1\xc1\xa9BG\ -\x1d\x82\xa61\x1ar\x10\x86.\xb5\xda\x97\x97\x86\x1a$\ -\xa1\x0f\x1e\x0as\x1c\x16\x08b\xbbP\xc2\xa8\x15O\x89\ -\xf4H\xab\xb0\xa0\xaf!|\x90A!\xce\xbf\xc5@%\ -\xb8$\x82\x19@x\xa4C\x1d\xe0\x9ew#\x041\xe3\ -\xa2J\xb6\x81\x90|Z\xe0\xd0A\x90\xc6-\x90\xc1T\ -\xc0\x1c$\x93\x0ea\xe0*\xdb\x88\xfc\xe8b`\xae\xd2\ -\x12I\xc4\x13\x86\x18\x18\xcf@\xf0\x86R\xf1\xc4-)\ -`\xb8\x09\xb9x\x92\x18\xe0\xaf\x8f\x02\x18\xa8\xb3\x16i\ -^\xd9\xc4 I,\xfd\xa1$\x14\x8b9\xcfbI\x92\ -rY\x0c\x1dzlf=\xb1^\x0d\x88\x18\xff\xd0\x84\ -~Q\x03\x07\xcc\x14\x86m\xe1!V4Z\x04+\x14\ -9\x85\xf9$\xcckem\x92\x0a\x8d\x90\xc1L\xa6$\ -\x97\xac:#\xe0p\x22\xc8e b`\xb2T\xea2\ -<\xbe@\xa2\xf6\x1bRH\x85\xc9`\xbf\x0b!q#\ -\x91\x0d,j\xac\xa0\x0cG\x1c\xa0\xd4\x12.Et\x92\ -{V\x07\xc2u\xae\x16+5\x0d\x8f\xc8\x1f\xa3\x87p\ -\xd3\xd8\xc4u@\x1cH#\x82\xc4\ -i\xcd\x07\x02(\x8a\xef\x08Y@\x08!\x83\xd2\x19`\ -\xf6\x19\xf0\xc4\xb2\xe2nP\x0b\xf6\xfbH\xb6\x91H\xb6\ -k(\xf2\x8a\x07`&\x0e\xc8\x11\x8e\xc2\x19\x0a\x03\x0b\ -\x02&g\x05\xec\x1b+\xf6\xf5g*r#\xc8#e\ -\x00M@\x15\x08\xe8\xe6\x03\xe8\xaa\x8a\xa7\xc8\x81/\xb4\ -k\xc2\x90\x99A\xe0\xb3i\xd8\x1b\xf0\xec\x22\xc0\x02x\ -\xa7\x84?B\x16\xf4a\xb8\x14\xcf@\x17\xc0\xb6 \x8b\ -\xf6\x8f0\x9cEH\xb2D\x00E\x0aF\x9ck\xc8d\ -+\x8a@\x171\x5c\x0a\x0cC\x12b4\x08Qh\x14\ -\xa0I\x16\xe0\xb4\x9a\xe8L\x1c.\xde\x18\xe8\xab\x10\xa6\ -\x9c\xd5C\x88\x99A\xe4\x95\xc1\x80H\x81\x98\x0f\xe6f\ -\x1d\xa6k\x16B8\xb2@`\x0f\x0e8\x10\xe9J\xdc\ -\xa9|\x9e\xc9\x88\xa7\xe1\xb6X\x01\xda\xa3\xa9R\xa8\xc9\ -\xb1\x19\xc2H\xebn\xba\x9cN\xbe+i\xd1\x1b\xe2\xf6\ -\x9d\xc2\xfc\x1bi\x86\x84!\xac\x9e\x89\xec\xc8\xd1\xc4'\ -\xe7`\xb5\xc1ds\x82v\x1f\xe9R\x9b\x040\x1c\xaa\ -(\x9dQ\xfe0!\xb2\x9d\xeaA\x1e\x91\xea+0\xa4\ -\xae\xc1D\xa6\xe7\x1e#jv7\x11\x22\x9d\x81\xbc\x8c\ -!\xaa\x9ef \x1b\xec\xd4\xa92\x12Z\xa4\xf0\xeam\ -\xbe\x09\xa9\x1e\x97\x91\x1c\xa2\xe2\xfc\x1b\x8a\x85\x1e& \ -\x1b\xd1\xfe\xf2\xf2;%\xf2a&2e&ri&\ -\xb2m&\xf2q'2u'ry'\xb2}'\xf2\ -\x81(2\x85(r\x89(\xb2\x8d(\xf2\x91)2\x95\ -)r\x98(\x22\x02\x00\x03\x00\x01\xa0\x03\x00\x01\x00\x00\ -\x00\x01\x00\x00\x00\x02\xa0\x04\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x03\xa0\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\ -\x00\x00\x02\x9e\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - Artboard\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a <\ -/g>\x0d\x0a\x0d\x0a\ -\x00\x00\x02\xa4\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - Icons / \ -System / Carat /\ - White / Default\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a <\ -polygon id=\x22Tria\ -ngle\x22 fill=\x22#FFF\ -FFF\x22 transform=\x22\ -translate(8.0000\ -00, 8.000000) sc\ -ale(1, -1) trans\ -late(-8.000000, \ --8.000000) \x22 poi\ -nts=\x228 6 12 10 4\ - 10\x22>\x0d\ -\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x05!\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / slice \ -/ standard copy \ -2\x0d\x0a <\ -desc>Created wit\ -h Sketch.\ -\x0d\x0a \x0d\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\ -\x0a \x0d\x0a\ - \x0d\x0a \ - \x0d\x0a\x0d\x0a\ -\ -\x00\x00\x035\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / layer \ -/ default\x0d\x0a Cre\ -ated with Sketch\ -.\x0d\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ - \ -\x0d\x0a \ - \x0d\x0a \ -\x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x04\xa0\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / Not active - \ -Default\x0d\ -\x0a Creat\ -ed with Sketch.<\ -/desc>\x0d\x0a \x0d\x0a <\ -g id=\x22icon-/-out\ -liner-/-entity-/\ --Not-active---De\ -fault\x22 stroke=\x22n\ -one\x22 stroke-widt\ -h=\x221\x22 fill=\x22none\ -\x22 fill-rule=\x22eve\ -nodd\x22>\x0d\x0a \ -\x0d\x0a \ - \x0d\x0a\x0d\x0a\ -\x00\x00\x09\x94\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - Artboard\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a <\ -g id=\x22Sky-Icon-/\ --System-/-View\x22 \ -transform=\x22trans\ -late(-1.000000, \ --1.000000)\x22>\x0d\x0a \ - \x0d\x0a \ - \x0d\ -\x0a \x0d\x0a <\ -path d=\x22M7.06342\ -091,12.9074237 L\ -7.88176629,12.08\ -90784 C8.2054235\ -6,12.1935613 8.5\ -5066739,12.25000\ -46 8.90909425,12\ -.2500046 C10.754\ -2281,12.2500046 \ -12.2500046,10.75\ -42281 12.2500046\ -,8.90909425 C12.\ -2500046,8.550667\ -39 12.1935613,8.\ -20542356 12.0890\ -784,7.88176629 L\ -13.4371592,6.533\ -68547 C14.319022\ -1,7.17645386 15.\ -2844155,7.968256\ -79 16.3333395,8.\ -90909425 C13.022\ -4727,11.8787923 \ -10.5438307,13.36\ -36414 8.89741345\ -,13.3636414 C8.3\ -7051833,13.36364\ -14 7.75918749,13\ -.2115688 7.06342\ -091,12.9074237 Z\ - M5.69216773,12.\ -1787833 C4.48306\ -461,11.4370945 3\ -.08062505,10.347\ -1982 1.48484904,\ -8.90909425 C4.78\ -014139,5.9393961\ -7 7.25099619,4.4\ -5454713 8.897413\ -45,4.45454713 C9\ -.76312087,4.4545\ -4713 10.8589211,\ -4.865077 12.1848\ -142,5.68613676 L\ -11.2977095,6.573\ -24152 C10.691167\ -6,5.95308542 9.8\ -450802,5.5681839\ -1 8.90909425,5.5\ -6818391 C7.06396\ -042,5.56818391 5\ -.56818391,7.0639\ -6042 5.56818391,\ -8.90909425 C5.56\ -818391,9.8450802\ - 5.95308542,10.6\ -911676 6.5732415\ -2,11.2977095 L5.\ -69216773,12.1787\ -833 Z M8.8358430\ -8,11.1350016 L11\ -.1461965,8.82464\ -811 C11.1472437,\ -8.85266758 11.14\ -77719,8.88081938\ - 11.1477719,8.90\ -909425 C11.14777\ -19,10.1391835 10\ -.1480347,11.1363\ -678 8.91479629,1\ -1.1363678 C8.888\ -36881,11.1363678\ - 8.86204856,11.1\ -359099 8.8358430\ -8,11.1350016 Z M\ -7.3616286,10.509\ -3224 C6.94241377\ -,10.1044297 6.68\ -182069,9.5371166\ -3 6.68182069,8.9\ -0909425 C6.68182\ -069,7.67900503 7\ -.68155792,6.6818\ -2069 8.91479629,\ -6.68182069 C9.54\ -237304,6.6818206\ -9 10.1094814,6.9\ -4005568 10.51514\ -44,7.35580661 L7\ -.3616286,10.5093\ -224 Z\x22 id=\x22Combi\ -ned-Shape\x22 fill=\ -\x22#E9E9E9\x22>\x0d\x0a <\ -polygon id=\x22Rect\ -angle-25\x22 fill=\x22\ -#E9E9E9\x22 transfo\ -rm=\x22translate(8.\ -582044, 8.280986\ -) rotate(45.0000\ -00) translate(-8\ -.582044, -8.2809\ -86) \x22 points=\x227.\ -7813425 0.916636\ -365 9.38274632 0\ -.913653421 9.358\ -23763 15.6483178\ - 7.7813425 15.61\ -58919\x22>\x0d\x0a \x0d\ -\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x05\x1f\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / slice \ -/ Editor only -\ - Saved\x0d\x0a\ - Create\ -d with Sketch.\x0d\x0a \x0d\x0a \x0d\x0a \x0d\x0a \ -\x0d\x0a\x0d\x0a\ -\x00\x00\x02\x9e\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - Artboard\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a <\ -/g>\x0d\x0a\x0d\x0a\ -\x00\x00\x05#\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / slice \ -/ Editor only -\ - Updated\ -\x0d\x0a Crea\ -ted with Sketch.\ -\x0d\x0a \x0d\x0a \ -\x0d\x0a \ - \x0d\x0a\ - \x0d\x0a\ -\x0d\x0a\ -\x00\x00\x06\x09\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / lock /\ - on\x0d\x0a \ - Created w\ -ith Sketch.\x0d\x0a \x0d\x0a \ - \x0d\x0a\ - \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a\ - \ -\x0d\x0a \ - \x0d\x0a \ -\x0d\x0a \x0d\x0a\ -\x0d\x0a\ -\x00\x00\x15\xa4\ -I\ -I*\x00B\x08\x00\x00\x80?\xe0@\x08$\x16\x0d\x07\ -\x84BaP\xb8d6\x1d\x0f\x88DbQ8\xa4V\ --\x17\x8cFcQ\xb8\xe4v\x0b\x02\x7f\xc7\xa4R9\ -$\x96M'\x94JeR\xb8\xa4\x82Y/\x98Lf\ -S9\xa4\xd6a.\x9bNgS\xb9\xe4\xf6}#\x9c\ -O\xe8T:%\x16\x8d/\xa0\xd1\xe9T\xbae6\x9d\ -\x1f\x81\xd3\xeaU:\xa5V\x91Q\xabVkU\xba\xe4\ -B\x93]\xb0XlU*\xfd\x8e\xcdg\xb4N\xec\xb6\ -\x9be\xb6\xdd&\xb5\xdb\xeeW;\xa4J\xe3u\xbc^\ -o7{\xd5\xf6\xfdi\xbe_\xf0X:\xde\x07\x09\x87\ -\xc4Sp\xd8\x9cf6\x7f\x8b\xc7drS<\x86O\ --\x97\x93\xe5s\x19\xbc\xe4k5\x9d\xd0hk\xd5\x8d\ -\x16\x97M-\xd2Q\x00:\xbb\xf1\xaf\x5c\x1a}\xecG\ -pQ\x94\x14c\x05\x0e\xc1B;\xa8K\xbe\x0a\xf0\x82\ -\xb8\xf5`\x16|\x15\x9c\x04\xe41\x12\xbc\xb75\xf7?\ -\x94\xd4\xd0\xf8v\xc3?T7 .AJ\x10Q\xbc\ -\x14\x036\x90\xc1\x19pUx\x0f\xcc\xa5K\xfa\x5cx\ -\x0e\x8d\x0b\x9f2\xe9\xd7M\x1f1\xc4\x80\xe1 )\xc1\ -@\x95g\xe7\x93\xcc\x01\x92\x0fI.c+\xafzc\ -\x03&\x0f\x8a\xa44\xc1\x80\xe9\xfb\x07\x91\xa8(\xaa\xbd\ -\x15\xa8(\xe4MC\x07\x12\xa7\x04*\xef\x0a\x8d\x05(\ -\xa3\xfcD\x03\x1d\x11(\xe6\x90\x0fh(\x16\xc4\x1e\xc8\ -)\x0a\x03\xc6\x04i'\x19\x9f*<8\x96F\xe9\x5c\ -@\x9f\x0c\xd1\xe8\x8c\x82\x92h(L\xd1\x1bh(\xdd\ -\x0c\x13E\xc2\x87\x1c\xa5RbS\x1d\xa6q\x10\xfe\x01\ -D\xa7A\x06\x90\x0fM:\x1eD\x032\xe8\xf6@\xcc\ -\x07\xf2s'%\x13\x22O(%\x83|\xd4\x08\x1e\xf3\ -iL\x82\x892\xd2&\xe1\x97\x00D\xec,\x923\xcb\ -\x80\x99L\xcb\x83\xda\x9f\xcd\x09;\xaa3\x85I\x01`\ -\x82\x84\xb3\x92:n9\x00 \xa0KR\x06\xac:\xa5\ -O\xa9-\x02\x91G\xa30\x86\xf2 \xa0m\x14\x93\x9e\ -\x8f\xf8\xa3\x01\x17\x89M*\x92T\xe9\x1d.\x8dPb\ -*@X\xa0\xa0M>\x98\x1f\x0e\x18\x9cL\xd7\x05\xda\ -KT\xa4U\xe2=U\xa2\xb4\xcc~\x82V\x08 \x10\ -\xa99\xa8!X\x82\x96\xef\xf9\xc2\x06Z\x07!\xebi\ -\x9f\xee\x1b`\xd8\x97\xa8(8\xae\x1f\x08(\x9f$\x17\ -H\xf5|\x8e\xdch\xe5\x80\x88>c@\x8e\x7f]\x94\ -=\x8c\xa6\x1c\x00\x15\xe4:\x02\xf7\xa9_0\x103\x15\ -\x83\x1e\x9b\x88(F\xb1\x1f\x17\x90\x04(\x13\x18)r\ -\xcfO\xe9\xf5\xca\x8d\xdc\xe8\x5c\x184\x86\xb0y\xfa`\ -\xd6*a\x18\x05\xe3\x03\xf1\x1f\x8d\x9e\xe8\xf53~\xa0\ -\x97\xfa\xcf\x16\xa0\x81\xfc\x90f\x22\xd8^\x11\x0f(\xb8\ -j\x0dL\x83\xc8)\x92\x82\x83\x0a5\xf4\x00\x0d\x92A\ -.\x94\xe3\xf7\xf2\xdcs\xbf\xe1\xbc\x04\xf5\xa29R3\ -\xa3#\x18h\xdb\xa5\x81\xc7\xce\x9cb\xa0\xa1b\x8e\xe1\ -\x8c\x95\xc12N\xa5\xf9\xeeB\xba\x1a@~\xbc\x1e\x11\ -{\x09\xe6\x87i\x08\xbe\xca\x8bR\xe9\x00\x03A\x96h\ -(\x96\xa6\x14\x12@\xc2\x99\xeb@\x06D\xbc\x16Z\xb0\ -\xa0\xe1\xe5\x886\xce\x8a\xef\xe8\xa5/L\x8f\x88)\x07\ -xc\x00XU\x8d\x91\xf8\xeae\xba\xee\xeb\xc3\x86;\ -\xea\xc4R\x15\xc0\xa2|\xc2%\x1d\xdd!\xed\xd8\x7f\x17\ -\xe8(\x06\xa6\x0c\xb2A8\x9c\xf2\x0c\x13\xfa\x82\x07\x92\ -Ff\xa8o\xb2^\x12\x9e\xbazX\xdb\xa6\xe9\xc6\x92\ -\x0a\x0f\xa9\x87\x0d\x11$\x1f}E\xf9\x9f0\xf2*\x08\ -\x18I\x07\xb75\xa2\xf6i\xe3\xa7A\x91\xa9\x00\xe4\xa6\ -\xb8dN\xac<'\xbdK\x10\xe1\x90:\xb1\x01\xe5\xb4\ -}\x8a\x848|\x93d\xdb\xa2\x00\x00b\x9a\xff\x88\x10\ -\x16(\x9e{La\xdfF\x83\xceY*zF\xdej\ -wt\x8e\xc9\x01\x12T\x9cp\x00\x01\xef\x01\xec\xbc6\ -\xb6c\x8e\x18r`\xa2`G\xbf\x97\xc4O\xd4\x18\xb5\ - \xa1(\xa9\x0d\xd4\x90\x09\x0a\x1b\x0f\x04D\x80\x02\x92\ -\x97>\xdbH\x22\x89)\x87\x0cY\xc0\xb0\x9d\x03\x8aR\ -\x83\x1b)\x08\xa9\x0cT\x90\x0f\x0c\x1a\x99t$\x10 \ -\x15!\xb0\xd5\x81L((\xea\x0d\x92\x00\x05dS\xc5\ -\xa2H\x09\xb0\xc5\x1e\x8a\xf3\xb4T\x87\xb3VEe\x19\ -\xf0\x10\xf5\x067\xc8( *C\x19$\x1b3\x04\xa6\ -F\x11\x05\x07\xa5Ho5g\x22\xec\xa0y>Pj\ -\xe8\x82\x04H\xb8\x92\x22\xf9zS#iD\x15!r\ -\xd5\x82D:(\xcb\xa4D\x12\x00\xeeT\x87\xc2]\x03\ - =|\x0f\xa2\xea\xa6`\xe9\x04O`\x00\x05=C\ -V! X}\x8eE\x14\xd7\x06\xb0>?$\x80\xdd\ -tE5\x81\x048\x16/\x8b\xaa\x83\x08\x04\x82\x19\x94\ -\xe1\xf4\x01e\x00!\x12\x92\x8dd\x94X\x9aC\x8e\x9a\ -\x99\x15$\x14+\x15\x22\x00\x8cM@\xce\xa0\x084\x1e\ -\x11\x09\x85B\xe1\x90\xd8t>!\x11\x00\x19\xa2\x88\x98\ -9\xda%\x19\x8dF\xe1)\xe8\x1ah\xc6\xff\x91G$\ -\x92XD\x89\xff&\x95G\x002\xd0\x01\xa6`\x22~\ -\xcc\xda\x10pl\xaeq\x1aq\x86g\x82D\x0c\xfd\xf5\ -9\xa1P\xe1G\xfa0\x19\xcfInA\xc3\xb4Jt\ -)\xdf-\x00\x8bS5W,\xa2\x9fY\xacVi\xd5\ -(I\x9e\xc0^\x94(k\x96X1\xa6>\x98\xb3Z\ -\xe31C1\xa2\x0e\x97\xb6Q*Ez\xaaeU'\ -\x91\xdc\xe5u\xbb\xe4\x9a\xbd\x0c\xb7'\xe0\xe6\x0b\xfc\xe1\ -\xc4\x0d\xc5\x0a\x91\xb8\xd7\xae\x1e\xd8j\xc9\x03\x1f\x99V\ -\xb53!$\xa9&\xae\xe6xe\xfb3\x1a\xd0hb\ -X\x18]\x18\xfe\x08\xa4\xb9\xd8\xd0q\x8e\x92H\xa5\x8f\ -\x976\x15\x9br\x9a\x0eY\xda\xe9e\xac\xc06\xfcx\ -\x93\xe1>s\xf7\xbd\xdcCG\xc7\x86i\xa1\xc6\xdep\ -q\xf3\xd1d\xc1\xc3\x5c\xa8}H\xd7wKu\xa3\x96\ -\xe3l\x1d%\xdc\x889*C\x8b\xbb\x97\x91\xc6\xf1B\ -\xb9>\xb872#\x925\x0c2\xaf\xc6\x1c\x1c\x19\xee\ -\x84\xca`\xc7H\xf9\x1c\xfd!+r\x0a\x83\x22\xcf|\ -\x02\x83\x9e`\x1c\x16\x1e\x12\xf0q\xa4\xd1=PC\xda\ -\xf7>\x08\xd0\xd1\x0c\x09'\xf46Y \xe0$\x10\x85\ -\x12\xe0|F;\x91q1\xe6\xd29\xc3h\x1c}E\ -\xa4ZP3D\x08I\xf8\x01F\xa2a1\x1c\x17)\ -,(\xf5\xc7\x8f\x14,\x92-\xcd\xa2\x0cP \xe0\x1c\ -d\x84\x1d\x088\xf0\x83\x94\xc8\xf9\xf6\xa25\x0aB\x92\ --\xa0\xe4:\x0e\x0b\xc9\x089\xfa\xc2\xa3\xe5\x22q\x1f\ -;\x93\x0b\xad %P\xc0\xd0,Cg\xf1G\x0fK\ -HQ\xe0\x83\x96\x089q\x1a\x80G\x08\x0b<\x1c\x88\ -A\xf7>\x03\x93P>\x83\x89\x088\xa0\x83\x82\x13r\ -\x12~\xce\xa2\xe4pL\x15\x0a$\xc6\xe5R\x0e<\xca\ -\x9c\xac\x038\xa8\x947\x080\x0bC\xd3\xac9\xf8\xa9\ -\x0b+\xb9X\xaeRM\xddL\xda\xd2\x8a\x22\xddB \ -\xc5:\x0e\x04S\xd5\x92\x88|7(\xfc\xe4\xb5\xd5\x0d\ -\x85t\xd2UJ\xca`4\x86i\x99\xfaW \xe0\xf5\ -gd#G\x12\x0e)\xa3\xe6c\x0f^46\x8b3\ -_,\xcbp(\xa9\x15\x09@\x87d\xdb\xa8A~\x03\ -\xdc\x22\xbb\x84I\x9dm%\xa6\xc8]\x0c=\xaa\xb9\x95\ -Wp\x06^^$B\x0e:[\xd2\xd2\xa4G\x08w\ -\xd0\xec+_\xb2\xe5O\x09@7R\xffv4\x93<\ -5\x0d\x92(8K{7f\xe2\xa47\xae\xe5\xb6\x05\ -\x80\xbfX\x1a\xf9\x82\xb7r\x93V9 \xe3\xdb\xf1\x86\ -\xa9\xecz\x0cC\x5c 9\x1br8\x91\x96.\xb9\xe5\ -\x8bf2\xf7R\xc0\xdaPE \xe2\xd6B\x93\x15\x19\ -0\xebrOU\x9e]\x5c\xe2\xb0\xaa]\x9c\x22h\xa0\ -d\x83\x8d\xc88\xb0\x83\x80\xf6\xf6T\x00\x15PX\x06\ -H\xc1\xc4\xb9\x9b\xa2\xe8\x0b6\xb4\xb2\xe6\x16LT\x0a\ -\xc5\xa7\xd0\xafA\xa5\x01\xfc\xda\xda\x9f\x889\x858\xce\ -\xa5M\x18uh\xae+\xf9\x95\xe8O^\xbd\xb9 \xe3\ -~\xf6\x08\x1e\xfb\xf0p\xa9\x06)C^\x83)\xa85\ -\x0c\x83\x02(\x5c\xe0\x83\x1d\xe89\xc6\x83\x9a\x13\xa9\x9e\ -\xa9\x19\x1a\xb7\x1d\xbc\xa3z\xe5K\xbbs<\xf7?\xd0\ -:\xdc\xdfC\xd2t\xbd2#\xd1\xf4\xfdWW\xd3u\ -=g_\xd8k<\xefc\xdav\xbd_]\xdbw=\ -\xd4'\xd9\xf7}\xf7\x7fn\xf7\x1e\x07\x87\xe2/\x9e\x17\ -\x8b\xe4y4\x7f{\xe5y\xbes3\xe3\xf9\xfe\x97\xa6\ -\x86\xfa>\xa7\xaf\xeb\xfa\xde\xc7\xb7\xe7{^\xe7\xbf\xe2\ -\xfb\xdf\x07\xc7\xdf|_'\xcf\xda\xfc\xdfG\xd7\xd6}\ -_g\xdf\xd2\xfd\xdf\x87\xe7\xcf~_\xa7\xef\x9c~\xdf\ -\xc7\xf7\xe0\xf9\x9f\xe3\xffwo\xea\x00@4\xb4@@\ -\x00\x13\x00\xfe\x00\x04\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\ -\x01\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x01\x01\x04\x00\x01\ -\x00\x00\x00`\x00\x00\x00\x02\x01\x03\x00\x04\x00\x00\x00,\ -\x09\x00\x00\x03\x01\x03\x00\x01\x00\x00\x00\x05\x00\x00\x00\x06\ -\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x00\x11\x01\x04\x00\x01\ -\x00\x00\x00\x08\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\x00\x04\ -\x00\x00\x00\x16\x01\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x17\ -\x01\x04\x00\x01\x00\x00\x009\x08\x00\x00\x1a\x01\x05\x00\x01\ -\x00\x00\x004\x09\x00\x00\x1b\x01\x05\x00\x01\x00\x00\x00<\ -\x09\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00(\ -\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\x00\x10\ -\x00\x00\x00D\x09\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\ -\x00\x00\x00R\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x00S\ -\x01\x03\x00\x04\x00\x00\x00T\x09\x00\x00s\x87\x07\x00H\ -\x0c\x00\x00\x5c\x09\x00\x00\x00\x00\x00\x00\x08\x00\x08\x00\x08\ -\x00\x08\x00\x802\x02\x00\xe8\x03\x00\x00\x802\x02\x00\xe8\ -\x03\x00\x00paint.net 4.0\ -.9\x00\x01\x00\x01\x00\x01\x00\x01\x00\x00\x00\x0cHL\ -ino\x02\x10\x00\x00mntrRGB X\ -YZ \x07\xce\x00\x02\x00\x09\x00\x06\x001\x00\x00a\ -cspMSFT\x00\x00\x00\x00IEC s\ -RGB\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\xf6\xd6\x00\x01\x00\x00\x00\x00\xd3-HP \x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11c\ -prt\x00\x00\x01P\x00\x00\x003desc\x00\ -\x00\x01\x84\x00\x00\x00lwtpt\x00\x00\x01\xf0\x00\ -\x00\x00\x14bkpt\x00\x00\x02\x04\x00\x00\x00\x14r\ -XYZ\x00\x00\x02\x18\x00\x00\x00\x14gXYZ\x00\ -\x00\x02,\x00\x00\x00\x14bXYZ\x00\x00\x02@\x00\ -\x00\x00\x14dmnd\x00\x00\x02T\x00\x00\x00pd\ -mdd\x00\x00\x02\xc4\x00\x00\x00\x88vued\x00\ -\x00\x03L\x00\x00\x00\x86view\x00\x00\x03\xd4\x00\ -\x00\x00$lumi\x00\x00\x03\xf8\x00\x00\x00\x14m\ -eas\x00\x00\x04\x0c\x00\x00\x00$tech\x00\ -\x00\x040\x00\x00\x00\x0crTRC\x00\x00\x04<\x00\ -\x00\x08\x0cgTRC\x00\x00\x04<\x00\x00\x08\x0cb\ -TRC\x00\x00\x04<\x00\x00\x08\x0ctext\x00\ -\x00\x00\x00Copyright (c)\ - 1998 Hewlett-Pa\ -ckard Company\x00\x00d\ -esc\x00\x00\x00\x00\x00\x00\x00\x12sRGB \ -IEC61966-2.1\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x12sRGB IEC\ -61966-2.1\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ \x00\ -\x00\x00\x00\x00\x00\xf3Q\x00\x01\x00\x00\x00\x01\x16\xccX\ -YZ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00XYZ \x00\x00\x00\x00\x00\x00o\xa2\x00\ -\x008\xf5\x00\x00\x03\x90XYZ \x00\x00\x00\x00\x00\ -\x00b\x99\x00\x00\xb7\x85\x00\x00\x18\xdaXYZ \x00\ -\x00\x00\x00\x00\x00$\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcfd\ -esc\x00\x00\x00\x00\x00\x00\x00\x16IEC h\ -ttp://www.iec.ch\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16IEC \ -http://www.iec.c\ -h\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00d\ -esc\x00\x00\x00\x00\x00\x00\x00.IEC 6\ -1966-2.1 Default\ - RGB colour spac\ -e - sRGB\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00.IEC 61966-2.\ -1 Default RGB co\ -lour space - sRG\ -B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00desc\x00\x00\x00\x00\x00\ -\x00\x00,Reference Vie\ -wing Condition i\ -n IEC61966-2.1\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00,Refere\ -nce Viewing Cond\ -ition in IEC6196\ -6-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00v\ -iew\x00\x00\x00\x00\x00\x13\xa4\xfe\x00\x14_.\x00\ -\x10\xcf\x14\x00\x03\xed\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\ -\x00\x00\x01XYZ \x00\x00\x00\x00\x00L\x09V\x00\ -P\x00\x00\x00W\x1f\xe7meas\x00\x00\x00\x00\x00\ -\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x8f\x00\x00\x00\x02sig \x00\ -\x00\x00\x00CRT curv\x00\x00\x00\x00\x00\ -\x00\x04\x00\x00\x00\x00\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\ -\x1e\x00#\x00(\x00-\x002\x007\x00;\x00@\x00\ -E\x00J\x00O\x00T\x00Y\x00^\x00c\x00h\x00\ -m\x00r\x00w\x00|\x00\x81\x00\x86\x00\x8b\x00\x90\x00\ -\x95\x00\x9a\x00\x9f\x00\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\ -\xbc\x00\xc1\x00\xc6\x00\xcb\x00\xd0\x00\xd5\x00\xdb\x00\xe0\x00\ -\xe5\x00\xeb\x00\xf0\x00\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\ -\x13\x01\x19\x01\x1f\x01%\x01+\x012\x018\x01>\x01\ -E\x01L\x01R\x01Y\x01`\x01g\x01n\x01u\x01\ -|\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\ -\xb9\x01\xc1\x01\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\ -\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02&\x02/\x028\x02\ -A\x02K\x02T\x02]\x02g\x02q\x02z\x02\x84\x02\ -\x8e\x02\x98\x02\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\ -\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\x16\x03!\x03-\x03\ -8\x03C\x03O\x03Z\x03f\x03r\x03~\x03\x8a\x03\ -\x96\x03\xa2\x03\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\ -\xf9\x04\x06\x04\x13\x04 \x04-\x04;\x04H\x04U\x04\ -c\x04q\x04~\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\ -\xd3\x04\xe1\x04\xf0\x04\xfe\x05\x0d\x05\x1c\x05+\x05:\x05\ -I\x05X\x05g\x05w\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\ -\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\x16\x06'\x067\x06\ -H\x06Y\x06j\x06{\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\ -\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07+\x07=\x07O\x07\ -a\x07t\x07\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\ -\xf8\x08\x0b\x08\x1f\x082\x08F\x08Z\x08n\x08\x82\x08\ -\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09%\x09\ -:\x09O\x09d\x09y\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\ -\xe5\x09\xfb\x0a\x11\x0a'\x0a=\x0aT\x0aj\x0a\x81\x0a\ -\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b9\x0b\ -Q\x0bi\x0b\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\ -\x12\x0c*\x0cC\x0c\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\xc0\x0c\ -\xd9\x0c\xf3\x0d\x0d\x0d&\x0d@\x0dZ\x0dt\x0d\x8e\x0d\ -\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e.\x0eI\x0ed\x0e\ -\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f%\x0fA\x0f\ -^\x0fz\x0f\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10&\x10\ -C\x10a\x10~\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x11\ -1\x11O\x11m\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12\ -&\x12E\x12d\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13\ -#\x13C\x13c\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14\ -'\x14I\x14j\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x15\ -4\x15V\x15x\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16&\x16\ -I\x16l\x16\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17A\x17\ -e\x17\x89\x17\xae\x17\xd2\x17\xf7\x18\x1b\x18@\x18e\x18\ -\x8a\x18\xaf\x18\xd5\x18\xfa\x19 \x19E\x19k\x19\x91\x19\ -\xb7\x19\xdd\x1a\x04\x1a*\x1aQ\x1aw\x1a\x9e\x1a\xc5\x1a\ -\xec\x1b\x14\x1b;\x1bc\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c\ -*\x1cR\x1c{\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1dG\x1d\ -p\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e@\x1ej\x1e\x94\x1e\ -\xbe\x1e\xe9\x1f\x13\x1f>\x1fi\x1f\x94\x1f\xbf\x1f\xea \ -\x15 A l \x98 \xc4 \xf0!\x1c!H!\ -u!\xa1!\xce!\xfb\x22'\x22U\x22\x82\x22\xaf\x22\ -\xdd#\x0a#8#f#\x94#\xc2#\xf0$\x1f$\ -M$|$\xab$\xda%\x09%8%h%\x97%\ -\xc7%\xf7&'&W&\x87&\xb7&\xe8'\x18'\ -I'z'\xab'\xdc(\x0d(?(q(\xa2(\ -\xd4)\x06)8)k)\x9d)\xd0*\x02*5*\ -h*\x9b*\xcf+\x02+6+i+\x9d+\xd1,\ -\x05,9,n,\xa2,\xd7-\x0c-A-v-\ -\xab-\xe1.\x16.L.\x82.\xb7.\xee/$/\ -Z/\x91/\xc7/\xfe050l0\xa40\xdb1\ -\x121J1\x821\xba1\xf22*2c2\x9b2\ -\xd43\x0d3F3\x7f3\xb83\xf14+4e4\ -\x9e4\xd85\x135M5\x875\xc25\xfd676\ -r6\xae6\xe97$7`7\x9c7\xd78\x148\ -P8\x8c8\xc89\x059B9\x7f9\xbc9\xf9:\ -6:t:\xb2:\xef;-;k;\xaa;\xe8<\ -'\ - >`>\xa0>\xe0?!?a?\xa2?\xe2@\ -#@d@\xa6@\xe7A)AjA\xacA\xeeB\ -0BrB\xb5B\xf7C:C}C\xc0D\x03D\ -GD\x8aD\xceE\x12EUE\x9aE\xdeF\x22F\ -gF\xabF\xf0G5G{G\xc0H\x05HKH\ -\x91H\xd7I\x1dIcI\xa9I\xf0J7J}J\ -\xc4K\x0cKSK\x9aK\xe2L*LrL\xbaM\ -\x02MJM\x93M\xdcN%NnN\xb7O\x00O\ -IO\x93O\xddP'PqP\xbbQ\x06QPQ\ -\x9bQ\xe6R1R|R\xc7S\x13S_S\xaaS\ -\xf6TBT\x8fT\xdbU(UuU\xc2V\x0fV\ -\x5cV\xa9V\xf7WDW\x92W\xe0X/X}X\ -\xcbY\x1aYiY\xb8Z\x07ZVZ\xa6Z\xf5[\ -E[\x95[\xe5\x5c5\x5c\x86\x5c\xd6]']x]\ -\xc9^\x1a^l^\xbd_\x0f_a_\xb3`\x05`\ -W`\xaa`\xfcaOa\xa2a\xf5bIb\x9cb\ -\xf0cCc\x97c\xebd@d\x94d\xe9e=e\ -\x92e\xe7f=f\x92f\xe8g=g\x93g\xe9h\ -?h\x96h\xeciCi\x9ai\xf1jHj\x9fj\ -\xf7kOk\xa7k\xfflWl\xafm\x08m`m\ -\xb9n\x12nkn\xc4o\x1eoxo\xd1p+p\ -\x86p\xe0q:q\x95q\xf0rKr\xa6s\x01s\ -]s\xb8t\x14tpt\xccu(u\x85u\xe1v\ ->v\x9bv\xf8wVw\xb3x\x11xnx\xccy\ -*y\x89y\xe7zFz\xa5{\x04{c{\xc2|\ -!|\x81|\xe1}A}\xa1~\x01~b~\xc2\x7f\ -#\x7f\x84\x7f\xe5\x80G\x80\xa8\x81\x0a\x81k\x81\xcd\x82\ -0\x82\x92\x82\xf4\x83W\x83\xba\x84\x1d\x84\x80\x84\xe3\x85\ -G\x85\xab\x86\x0e\x86r\x86\xd7\x87;\x87\x9f\x88\x04\x88\ -i\x88\xce\x893\x89\x99\x89\xfe\x8ad\x8a\xca\x8b0\x8b\ -\x96\x8b\xfc\x8cc\x8c\xca\x8d1\x8d\x98\x8d\xff\x8ef\x8e\ -\xce\x8f6\x8f\x9e\x90\x06\x90n\x90\xd6\x91?\x91\xa8\x92\ -\x11\x92z\x92\xe3\x93M\x93\xb6\x94 \x94\x8a\x94\xf4\x95\ -_\x95\xc9\x964\x96\x9f\x97\x0a\x97u\x97\xe0\x98L\x98\ -\xb8\x99$\x99\x90\x99\xfc\x9ah\x9a\xd5\x9bB\x9b\xaf\x9c\ -\x1c\x9c\x89\x9c\xf7\x9dd\x9d\xd2\x9e@\x9e\xae\x9f\x1d\x9f\ -\x8b\x9f\xfa\xa0i\xa0\xd8\xa1G\xa1\xb6\xa2&\xa2\x96\xa3\ -\x06\xa3v\xa3\xe6\xa4V\xa4\xc7\xa58\xa5\xa9\xa6\x1a\xa6\ -\x8b\xa6\xfd\xa7n\xa7\xe0\xa8R\xa8\xc4\xa97\xa9\xa9\xaa\ -\x1c\xaa\x8f\xab\x02\xabu\xab\xe9\xac\x5c\xac\xd0\xadD\xad\ -\xb8\xae-\xae\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0u\xb0\xea\xb1\ -`\xb1\xd6\xb2K\xb2\xc2\xb38\xb3\xae\xb4%\xb4\x9c\xb5\ -\x13\xb5\x8a\xb6\x01\xb6y\xb6\xf0\xb7h\xb7\xe0\xb8Y\xb8\ -\xd1\xb9J\xb9\xc2\xba;\xba\xb5\xbb.\xbb\xa7\xbc!\xbc\ -\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\x84\xbe\xff\xbfz\xbf\xf5\xc0\ -p\xc0\xec\xc1g\xc1\xe3\xc2_\xc2\xdb\xc3X\xc3\xd4\xc4\ -Q\xc4\xce\xc5K\xc5\xc8\xc6F\xc6\xc3\xc7A\xc7\xbf\xc8\ -=\xc8\xbc\xc9:\xc9\xb9\xca8\xca\xb7\xcb6\xcb\xb6\xcc\ -5\xcc\xb5\xcd5\xcd\xb5\xce6\xce\xb6\xcf7\xcf\xb8\xd0\ -9\xd0\xba\xd1<\xd1\xbe\xd2?\xd2\xc1\xd3D\xd3\xc6\xd4\ -I\xd4\xcb\xd5N\xd5\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\xe0\xd8\ -d\xd8\xe8\xd9l\xd9\xf1\xdav\xda\xfb\xdb\x80\xdc\x05\xdc\ -\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf)\xdf\xaf\xe06\xe0\ -\xbd\xe1D\xe1\xcc\xe2S\xe2\xdb\xe3c\xe3\xeb\xe4s\xe4\ -\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe82\xe8\xbc\xe9\ -F\xe9\xd0\xea[\xea\xe5\xebp\xeb\xfb\xec\x86\xed\x11\xed\ -\x9c\xee(\xee\xb4\xef@\xef\xcc\xf0X\xf0\xe5\xf1r\xf1\ -\xff\xf2\x8c\xf3\x19\xf3\xa7\xf44\xf4\xc2\xf5P\xf5\xde\xf6\ -m\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf98\xf9\xc7\xfaW\xfa\ -\xe7\xfbw\xfc\x07\xfc\x98\xfd)\xfd\xba\xfeK\xfe\xdc\xff\ -m\xff\xff\ -\x00\x00\x89\xf8\ -I\ -I*\x00\x08\x00\x00\x00\x18\x00\xfe\x00\x04\x00\x01\x00\x00\ -\x00\x00\x00\x00\x00\x00\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x01\x01\x03\x00\x01\x00\x00\x00`\x00\x00\x00\x02\x01\x03\ -\x00\x04\x00\x00\x00.\x01\x00\x00\x03\x01\x03\x00\x01\x00\x00\ -\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ -\x00\x11\x01\x04\x00\x01\x00\x00\x00\xfcS\x00\x00\x12\x01\x03\ -\x00\x01\x00\x00\x00\x01\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\ -\x00\x04\x00\x00\x00\x16\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x17\x01\x04\x00\x01\x00\x00\x00\xf9\x12\x00\x00\x1a\x01\x05\ -\x00\x01\x00\x00\x006\x01\x00\x00\x1b\x01\x05\x00\x01\x00\x00\ -\x00>\x01\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\ -\x00(\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\ -\x00\x22\x00\x00\x00F\x01\x00\x002\x01\x02\x00\x14\x00\x00\ -\x00h\x01\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ -\x00R\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00\xbc\x02\x01\ -\x00\xf68\x00\x00|\x01\x00\x00I\x86\x01\x00B\x0d\x00\ -\x00r:\x00\x00i\x87\x04\x00\x01\x00\x00\x00\xf8f\x00\ -\x00s\x87\x07\x00H\x0c\x00\x00\xb4G\x00\x00\x5c\x93\x07\ -\x00\xd0\x22\x00\x00$g\x00\x00\x00\x00\x00\x00\x08\x00\x08\ -\x00\x08\x00\x08\x00\x00\xf9\x15\x00\x10'\x00\x00\x00\xf9\x15\ -\x00\x10'\x00\x00Adobe Photo\ -shop CC 2017 (Wi\ -ndows)\x002017:04:0\ -4 11:01:55\x00\ -\x0a\x0a \ - \x0a \x0a \ - paint.net \ -4.0.9\x0a \ - 2017-03-01T11:2\ -0:20-08:00\x0a \ - 2017-04-04T\ -11:01:55-07:00\x0a\ - 2017-\ -04-04T11:01:55-0\ -7:00\x0a \ - imag\ -e/tiff\x0a 3\x0a \ - sRGB IEC\ -61966-2.1\ -\x0a \x0a \ - \x0a \ - adobe:docid\ -:photoshop:6e5b1\ -c59-1960-11e7-ba\ -e7-e6e7a5cd2814<\ -/rdf:li>\x0a \ - \x0a\ - \x0a \ - xmp.iid:db7b2\ -8e8-30e9-e04f-9f\ -78-916e5c5110e6<\ -/xmpMM:InstanceI\ -D>\x0a ad\ -obe:docid:photos\ -hop:bf3203a1-196\ -0-11e7-bae7-e6e7\ -a5cd2814\x0a \ - x\ -mp.did:8f625742-\ -0048-e64f-ab3c-d\ -4b1a5a27a24\x0a \ -\x0a\ - \x0a \ - \x0a \ - created\x0a \ - \ -xmp.iid:8f6257\ -42-0048-e64f-ab3\ -c-d4b1a5a27a24\x0a \ - \ -2017-03-01T11:20\ -:20-08:00\x0a \ - Ad\ -obe Photoshop CC\ - 2017 (Windows)<\ -/stEvt:softwareA\ -gent>\x0a \ - \x0a \ - \x0a\ - \ - \ -saved\x0a \ - xmp.iid\ -:db7b28e8-30e9-e\ -04f-9f78-916e5c5\ -110e6\x0a \ - 2017-04-0\ -4T11:01:55-07:00\ -\x0a \ - \ -Adobe Photo\ -shop CC 2017 (Wi\ -ndows)\x0a \ - <\ -stEvt:changed>/<\ -/stEvt:changed>\x0a\ - <\ -/rdf:li>\x0a \ - \x0a\ - \x0a \ -\x0a \ -\x0a\x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \x0a8BIM\x04%\x00\x00\x00\x00\x00\x10\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x008BI\ -M\x04:\x00\x00\x00\x00\x00\xe5\x00\x00\x00\x10\x00\x00\x00\ -\x01\x00\x00\x00\x00\x00\x0bprintOutp\ -ut\x00\x00\x00\x05\x00\x00\x00\x00PstSbo\ -ol\x01\x00\x00\x00\x00Inteenum\x00\ -\x00\x00\x00Inte\x00\x00\x00\x00Clrm\x00\ -\x00\x00\x0fprintSixteenB\ -itbool\x00\x00\x00\x00\x0bprint\ -erNameTEXT\x00\x00\x00\x01\x00\x00\ -\x00\x00\x00\x0fprintProofSe\ -tupObjc\x00\x00\x00\x0c\x00P\x00r\x00\ -o\x00o\x00f\x00 \x00S\x00e\x00t\x00u\x00\ -p\x00\x00\x00\x00\x00\x0aproofSetu\ -p\x00\x00\x00\x01\x00\x00\x00\x00Bltnenu\ -m\x00\x00\x00\x0cbuiltinProo\ -f\x00\x00\x00\x09proofCMYK\x008\ -BIM\x04;\x00\x00\x00\x00\x02-\x00\x00\x00\x10\x00\ -\x00\x00\x01\x00\x00\x00\x00\x00\x12printOu\ -tputOptions\x00\x00\x00\x17\x00\ -\x00\x00\x00Cptnbool\x00\x00\x00\x00\x00\ -Clbrbool\x00\x00\x00\x00\x00Rgs\ -Mbool\x00\x00\x00\x00\x00CrnCbo\ -ol\x00\x00\x00\x00\x00CntCbool\x00\ -\x00\x00\x00\x00Lblsbool\x00\x00\x00\x00\ -\x00Ngtvbool\x00\x00\x00\x00\x00Em\ -lDbool\x00\x00\x00\x00\x00Intrb\ -ool\x00\x00\x00\x00\x00BckgObjc\ -\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00RGBC\x00\x00\ -\x00\x03\x00\x00\x00\x00Rd doub@o\ -\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00Grn do\ -ub@o\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00Bl\ - doub@o\xe0\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00BrdTUntF#Rlt\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Bld Un\ -tF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00RsltUntF#Pxl@b\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0avector\ -Databool\x01\x00\x00\x00\x00PgP\ -senum\x00\x00\x00\x00PgPs\x00\x00\x00\ -\x00PgPC\x00\x00\x00\x00LeftUnt\ -F#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00Top UntF#Rlt\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00Scl Unt\ -F#Prc@Y\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x10cropWhenPrintin\ -gbool\x00\x00\x00\x00\x0ecropRe\ -ctBottomlong\x00\x00\x00\x00\ -\x00\x00\x00\x0ccropRectLeft\ -long\x00\x00\x00\x00\x00\x00\x00\x0dcrop\ -RectRightlong\x00\x00\x00\ -\x00\x00\x00\x00\x0bcropRectTop\ -long\x00\x00\x00\x00\x008BIM\x03\xed\x00\ -\x00\x00\x00\x00\x10\x00\x90\x00\x00\x00\x01\x00\x01\x00\x90\x00\ -\x00\x00\x01\x00\x018BIM\x04&\x00\x00\x00\x00\x00\ -\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00?\x80\x00\x008\ -BIM\x03\xee\x00\x00\x00\x00\x00\x0d\x0cTran\ -sparency\x008BIM\x04\x15\x00\ -\x00\x00\x00\x00\x1e\x00\x00\x00\x0d\x00T\x00r\x00a\x00\ -n\x00s\x00p\x00a\x00r\x00e\x00n\x00c\x00\ -y\x00\x008BIM\x045\x00\x00\x00\x00\x00\x11\x00\ -\x00\x00\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00d\x01\ -\x008BIM\x04\x1d\x00\x00\x00\x00\x00\x04\x00\x00\x00\ -\x008BIM\x04\x0d\x00\x00\x00\x00\x00\x04\x00\x00\x00\ -\x1e8BIM\x04\x19\x00\x00\x00\x00\x00\x04\x00\x00\x00\ -\x1e8BIM\x03\xf3\x00\x00\x00\x00\x00\x09\x00\x00\x00\ -\x00\x00\x00\x00\x00\x01\x008BIM'\x10\x00\x00\x00\ -\x00\x00\x0a\x00\x01\x00\x00\x00\x00\x00\x00\x00\x018BI\ -M\x03\xf5\x00\x00\x00\x00\x00H\x00/ff\x00\x01\x00\ -lff\x00\x06\x00\x00\x00\x00\x00\x01\x00/ff\x00\ -\x01\x00\xa1\x99\x9a\x00\x06\x00\x00\x00\x00\x00\x01\x002\x00\ -\x00\x00\x01\x00Z\x00\x00\x00\x06\x00\x00\x00\x00\x00\x01\x00\ -5\x00\x00\x00\x01\x00-\x00\x00\x00\x06\x00\x00\x00\x00\x00\ -\x018BIM\x03\xf8\x00\x00\x00\x00\x00p\x00\x00\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\ -\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x008BI\ -M\x04\x00\x00\x00\x00\x00\x00\x02\x00\x018BIM\x04\ -\x02\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008BIM\x04\ -0\x00\x00\x00\x00\x00\x02\x01\x018BIM\x04-\x00\ -\x00\x00\x00\x00\x06\x00\x01\x00\x00\x00\x048BIM\x04\ -\x08\x00\x00\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x02@\x00\ -\x00\x02@\x00\x00\x00\x008BIM\x04\x1e\x00\x00\x00\ -\x00\x00\x04\x00\x00\x00\x008BIM\x04\x1a\x00\x00\x00\ -\x00\x035\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00`\x00\x00\x00`\x00\x00\x00\x00\x00\x00\x00\x01\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00`\x00\ -\x00\x00`\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00null\x00\x00\x00\x02\x00\x00\x00\x06bo\ -undsObjc\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00Rct1\x00\x00\x00\x04\x00\x00\x00\x00To\ -p long\x00\x00\x00\x00\x00\x00\x00\x00Le\ -ftlong\x00\x00\x00\x00\x00\x00\x00\x00Bt\ -omlong\x00\x00\x00`\x00\x00\x00\x00Rg\ -htlong\x00\x00\x00`\x00\x00\x00\x06sl\ -icesVlLs\x00\x00\x00\x01Objc\ -\x00\x00\x00\x01\x00\x00\x00\x00\x00\x05slice\x00\ -\x00\x00\x12\x00\x00\x00\x07sliceIDlo\ -ng\x00\x00\x00\x00\x00\x00\x00\x07groupI\ -Dlong\x00\x00\x00\x00\x00\x00\x00\x06ori\ -ginenum\x00\x00\x00\x0cESlic\ -eOrigin\x00\x00\x00\x0dautoG\ -enerated\x00\x00\x00\x00Type\ -enum\x00\x00\x00\x0aESliceTy\ -pe\x00\x00\x00\x00Img \x00\x00\x00\x06bo\ -undsObjc\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00Rct1\x00\x00\x00\x04\x00\x00\x00\x00To\ -p long\x00\x00\x00\x00\x00\x00\x00\x00Le\ -ftlong\x00\x00\x00\x00\x00\x00\x00\x00Bt\ -omlong\x00\x00\x00`\x00\x00\x00\x00Rg\ -htlong\x00\x00\x00`\x00\x00\x00\x03ur\ -lTEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00n\ -ullTEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00MsgeTEXT\x00\x00\x00\x01\x00\x00\x00\ -\x00\x00\x06altTagTEXT\x00\x00\x00\ -\x01\x00\x00\x00\x00\x00\x0ecellTextI\ -sHTMLbool\x01\x00\x00\x00\x08ce\ -llTextTEXT\x00\x00\x00\x01\x00\x00\ -\x00\x00\x00\x09horzAlignenu\ -m\x00\x00\x00\x0fESliceHorzA\ -lign\x00\x00\x00\x07default\x00\ -\x00\x00\x09vertAlignenum\ -\x00\x00\x00\x0fESliceVertAl\ -ign\x00\x00\x00\x07default\x00\x00\ -\x00\x0bbgColorTypeenu\ -m\x00\x00\x00\x11ESliceBGCol\ -orType\x00\x00\x00\x00None\x00\x00\ -\x00\x09topOutsetlong\x00\ -\x00\x00\x00\x00\x00\x00\x0aleftOutse\ -tlong\x00\x00\x00\x00\x00\x00\x00\x0cbot\ -tomOutsetlong\x00\x00\x00\ -\x00\x00\x00\x00\x0brightOutset\ -long\x00\x00\x00\x00\x008BIM\x04(\x00\ -\x00\x00\x00\x00\x0c\x00\x00\x00\x02?\xf0\x00\x00\x00\x00\x00\ -\x008BIM\x04\x14\x00\x00\x00\x00\x00\x04\x00\x00\x00\ -\x048BIM\x04\x0c\x00\x00\x00\x00\x03\xeb\x00\x00\x00\ -\x01\x00\x00\x000\x00\x00\x000\x00\x00\x00\x90\x00\x00\x1b\ -\x00\x00\x00\x03\xcf\x00\x18\x00\x01\xff\xd8\xff\xed\x00\x0cA\ -dobe_CM\x00\x01\xff\xee\x00\x0eAdo\ -be\x00d\x80\x00\x00\x00\x01\xff\xdb\x00\x84\x00\x0c\x08\ -\x08\x08\x09\x08\x0c\x09\x09\x0c\x11\x0b\x0a\x0b\x11\x15\x0f\x0c\ -\x0c\x0f\x15\x18\x13\x13\x15\x13\x13\x18\x11\x0c\x0c\x0c\x0c\x0c\ -\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x01\x0d\ -\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\x10\x14\x0e\x0e\x0e\x14\x14\x0e\ -\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\x0c\x0c\x11\x11\x0c\x0c\x0c\x0c\ -\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\xff\ -\xc0\x00\x11\x08\x000\x000\x03\x01\x22\x00\x02\x11\x01\x03\ -\x11\x01\xff\xdd\x00\x04\x00\x03\xff\xc4\x01?\x00\x00\x01\x05\ -\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x03\x00\x01\ -\x02\x04\x05\x06\x07\x08\x09\x0a\x0b\x01\x00\x01\x05\x01\x01\x01\ -\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x03\x04\x05\ -\x06\x07\x08\x09\x0a\x0b\x10\x00\x01\x04\x01\x03\x02\x04\x02\x05\ -\x07\x06\x08\x05\x03\x0c3\x01\x00\x02\x11\x03\x04!\x121\ -\x05AQa\x13\x22q\x812\x06\x14\x91\xa1\xb1B#\ -$\x15R\xc1b34r\x82\xd1C\x07%\x92S\xf0\ -\xe1\xf1cs5\x16\xa2\xb2\x83&D\x93TdE\xc2\ -\xa3t6\x17\xd2U\xe2e\xf2\xb3\x84\xc3\xd3u\xe3\xf3\ -F'\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\ -\xf5Vfv\x86\x96\xa6\xb6\xc6\xd6\xe6\xf67GWg\ -w\x87\x97\xa7\xb7\xc7\xd7\xe7\xf7\x11\x00\x02\x02\x01\x02\x04\ -\x04\x03\x04\x05\x06\x07\x07\x06\x055\x01\x00\x02\x11\x03!\ -1\x12\x04AQaq\x22\x13\x052\x81\x91\x14\xa1\xb1\ -B#\xc1R\xd1\xf03$b\xe1r\x82\x92CS\x15\ -cs4\xf1%\x06\x16\xa2\xb2\x83\x07&5\xc2\xd2D\ -\x93T\xa3\x17dEU6te\xe2\xf2\xb3\x84\xc3\xd3\ -u\xe3\xf3F\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\ -\xd5\xe5\xf5Vfv\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6'7\ -GWgw\x87\x97\xa7\xb7\xc7\xff\xda\x00\x0c\x03\x01\x00\ -\x02\x11\x03\x11\x00?\x00\xf4<\xdc\xcc\x96d\x9a\xa9;\ -@\x80\x00\x00\x92O\xc6P\xfd~\xab\xe0\xff\x00\xfbl\ -\x7f\xe4R\xc9\xff\x00\x95\x1b\xfdz\xff\x00\xef\xabU\xce\ -\x0dis\xb4\x00I>A%9^\xbfU\xf0\x7f\xfd\ -\xb6?\xf2)z\xfdW\xc1\xff\x00\xf6\xd8\xff\x00\xc8\xa2\ -UU\xf9\xe0\xdde\x8e\xaa\x92}\x95\xb7\xc0x\xa7{\ -o\xe9\xeem\x82\xc3n9 =\xae\xd4\x89\xee\x12R\ -/_\xaa\xf8?\xfc\xc1\xff\x00\x91D\xc0\xcc\xc8\xb3#\ -\xd2\xb4\xee\x04\x1e@\x04\x11\xfdU\xa4\xb20\x7f\xe5\x03\ -\xff\x00\x5c\xfc\xa9)\xff\xd0\xef\xf2\x7f\xe5F\xff\x00^\ -\xbf\xfb\xea\xb9\x9f\x7f\xa7W\xa6\x1a\x5c\xfb\x81c@\xf3\ -\x11\xfcU<\x9f\xf9Q\xbf\xd7\xaf\xfe\xfa\xacu\x0f\xe9\ -\x18\x9f\xf1\x9f\xc5\x89)\x1e>NU\x14\xb6\xaf\xb2\xbd\ -\xdbg\xdd\xa8\xe4\xcf\xee\xa8\xe5]\x95\x93I\xa8\xe2\xbd\ -\x92A\x9dO\x1f\xd9\x0a\xdfP\xb6\xea\xb1\xf7\xd3\xa1\x90\ -\x1c\xee`x\xa9aYu\x98\xed}\xdfH\xcc\x1e$\ -~k\x92R\xd8y\x02\xfa\xa7ik\x98v\xb8\x1f\x10\ -\xa8`\xff\x00\xca\x07\xfe\xb9\xf9U\x9e\x97\xf4.\xff\x00\ -\x8d*\xb6\x0f\xfc\xa0\x7f\xeb\x9f\x95%?\xff\xd1\xef\xf2\ -\x7f\xe5F\xff\x00^\xbf\xfb\xea?R;,\xc6\xb4\x83\ -\xb1\x8f\x97\x11\xf1i\xff\x00\xbe\xa8f\xe1d\xbf$\xdb\ -P\x90b\x0c\xc1\x04!\xfd\x9b\xaa~\xf3\xff\x00\xed\xcf\ -\xfc\xc9%'\xb7\xa8\xe1[[\xabxyk\x84\x1d\x08\ -N\xce\xa7\x86\xc65\x8d\x0f\x0dh\x00\x0d\xa7\x80\xab\xfd\ -\x9b\xaa~\xf3\xff\x00\xed\xcf\xf6\xa5\xf6n\xa9\xfb\xcf\xff\ -\x00\xb7?\xda\x92\x9b\x1d(\x1fJ\xd7A\x0du\x84\xb4\ -\x9e\xe1V\xc1\xff\x00\x94\x0f\xc6\xcf\xca\x9f\xec\xddS\xf7\ -\x9f\xff\x00n\x7f\xe6H\xb88Y\x15\xdf\xea\xda\x03@\ -\x04s$\x92\x92\x9f\xff\xd9\x008BIM\x04!\x00\ -\x00\x00\x00\x00]\x00\x00\x00\x01\x01\x00\x00\x00\x0f\x00A\ -\x00d\x00o\x00b\x00e\x00 \x00P\x00h\x00o\ -\x00t\x00o\x00s\x00h\x00o\x00p\x00\x00\x00\x17\ -\x00A\x00d\x00o\x00b\x00e\x00 \x00P\x00h\ -\x00o\x00t\x00o\x00s\x00h\x00o\x00p\x00 \ -\x00C\x00C\x00 \x002\x000\x001\x007\x00\x00\ -\x00\x01\x00\x00\x00\x0cHLino\x02\x10\x00\x00m\ -ntrRGB XYZ \x07\xce\x00\x02\x00\ -\x09\x00\x06\x001\x00\x00acspMSFT\x00\ -\x00\x00\x00IEC sRGB\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\xd6\x00\x01\x00\x00\x00\ -\x00\xd3-HP \x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x11cprt\x00\x00\x01P\x00\ -\x00\x003desc\x00\x00\x01\x84\x00\x00\x00lw\ -tpt\x00\x00\x01\xf0\x00\x00\x00\x14bkpt\x00\ -\x00\x02\x04\x00\x00\x00\x14rXYZ\x00\x00\x02\x18\x00\ -\x00\x00\x14gXYZ\x00\x00\x02,\x00\x00\x00\x14b\ -XYZ\x00\x00\x02@\x00\x00\x00\x14dmnd\x00\ -\x00\x02T\x00\x00\x00pdmdd\x00\x00\x02\xc4\x00\ -\x00\x00\x88vued\x00\x00\x03L\x00\x00\x00\x86v\ -iew\x00\x00\x03\xd4\x00\x00\x00$lumi\x00\ -\x00\x03\xf8\x00\x00\x00\x14meas\x00\x00\x04\x0c\x00\ -\x00\x00$tech\x00\x00\x040\x00\x00\x00\x0cr\ -TRC\x00\x00\x04<\x00\x00\x08\x0cgTRC\x00\ -\x00\x04<\x00\x00\x08\x0cbTRC\x00\x00\x04<\x00\ -\x00\x08\x0ctext\x00\x00\x00\x00Copyr\ -ight (c) 1998 He\ -wlett-Packard Co\ -mpany\x00\x00desc\x00\x00\x00\x00\x00\ -\x00\x00\x12sRGB IEC61966\ --2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12\ -sRGB IEC61966-2.\ -1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00XYZ \x00\x00\x00\x00\x00\x00\xf3Q\x00\ -\x01\x00\x00\x00\x01\x16\xccXYZ \x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ \x00\ -\x00\x00\x00\x00\x00o\xa2\x00\x008\xf5\x00\x00\x03\x90X\ -YZ \x00\x00\x00\x00\x00\x00b\x99\x00\x00\xb7\x85\x00\ -\x00\x18\xdaXYZ \x00\x00\x00\x00\x00\x00$\xa0\x00\ -\x00\x0f\x84\x00\x00\xb6\xcfdesc\x00\x00\x00\x00\x00\ -\x00\x00\x16IEC http://ww\ -w.iec.ch\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x16IEC http://w\ -ww.iec.ch\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00desc\x00\x00\x00\x00\x00\ -\x00\x00.IEC 61966-2.1\ - Default RGB col\ -our space - sRGB\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00.IEC \ -61966-2.1 Defaul\ -t RGB colour spa\ -ce - sRGB\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00d\ -esc\x00\x00\x00\x00\x00\x00\x00,Refer\ -ence Viewing Con\ -dition in IEC619\ -66-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00,Reference View\ -ing Condition in\ - IEC61966-2.1\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00view\x00\x00\x00\x00\x00\ -\x13\xa4\xfe\x00\x14_.\x00\x10\xcf\x14\x00\x03\xed\xcc\x00\ -\x04\x13\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01XYZ \x00\ -\x00\x00\x00\x00L\x09V\x00P\x00\x00\x00W\x1f\xe7m\ -eas\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x8f\x00\ -\x00\x00\x02sig \x00\x00\x00\x00CRT c\ -urv\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x05\x00\ -\x0a\x00\x0f\x00\x14\x00\x19\x00\x1e\x00#\x00(\x00-\x00\ -2\x007\x00;\x00@\x00E\x00J\x00O\x00T\x00\ -Y\x00^\x00c\x00h\x00m\x00r\x00w\x00|\x00\ -\x81\x00\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\x9f\x00\xa4\x00\ -\xa9\x00\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\xc6\x00\xcb\x00\ -\xd0\x00\xd5\x00\xdb\x00\xe0\x00\xe5\x00\xeb\x00\xf0\x00\xf6\x00\ -\xfb\x01\x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\x1f\x01%\x01\ -+\x012\x018\x01>\x01E\x01L\x01R\x01Y\x01\ -`\x01g\x01n\x01u\x01|\x01\x83\x01\x8b\x01\x92\x01\ -\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\xc9\x01\xd1\x01\ -\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\x0c\x02\x14\x02\ -\x1d\x02&\x02/\x028\x02A\x02K\x02T\x02]\x02\ -g\x02q\x02z\x02\x84\x02\x8e\x02\x98\x02\xa2\x02\xac\x02\ -\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\xf5\x03\x00\x03\ -\x0b\x03\x16\x03!\x03-\x038\x03C\x03O\x03Z\x03\ -f\x03r\x03~\x03\x8a\x03\x96\x03\xa2\x03\xae\x03\xba\x03\ -\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\x13\x04 \x04\ --\x04;\x04H\x04U\x04c\x04q\x04~\x04\x8c\x04\ -\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\xf0\x04\xfe\x05\ -\x0d\x05\x1c\x05+\x05:\x05I\x05X\x05g\x05w\x05\ -\x86\x05\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\xe5\x05\xf6\x06\ -\x06\x06\x16\x06'\x067\x06H\x06Y\x06j\x06{\x06\ -\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\xf5\x07\x07\x07\ -\x19\x07+\x07=\x07O\x07a\x07t\x07\x86\x07\x99\x07\ -\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\x1f\x082\x08\ -F\x08Z\x08n\x08\x82\x08\x96\x08\xaa\x08\xbe\x08\xd2\x08\ -\xe7\x08\xfb\x09\x10\x09%\x09:\x09O\x09d\x09y\x09\ -\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\x11\x0a'\x0a\ -=\x0aT\x0aj\x0a\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\ -\xf3\x0b\x0b\x0b\x22\x0b9\x0bQ\x0bi\x0b\x80\x0b\x98\x0b\ -\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c*\x0cC\x0c\x5c\x0c\ -u\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d&\x0d\ -@\x0dZ\x0dt\x0d\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\ -\x13\x0e.\x0eI\x0ed\x0e\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\ -\xee\x0f\x09\x0f%\x0fA\x0f^\x0fz\x0f\x96\x0f\xb3\x0f\ -\xcf\x0f\xec\x10\x09\x10&\x10C\x10a\x10~\x10\x9b\x10\ -\xb9\x10\xd7\x10\xf5\x11\x13\x111\x11O\x11m\x11\x8c\x11\ -\xaa\x11\xc9\x11\xe8\x12\x07\x12&\x12E\x12d\x12\x84\x12\ -\xa3\x12\xc3\x12\xe3\x13\x03\x13#\x13C\x13c\x13\x83\x13\ -\xa4\x13\xc5\x13\xe5\x14\x06\x14'\x14I\x14j\x14\x8b\x14\ -\xad\x14\xce\x14\xf0\x15\x12\x154\x15V\x15x\x15\x9b\x15\ -\xbd\x15\xe0\x16\x03\x16&\x16I\x16l\x16\x8f\x16\xb2\x16\ -\xd6\x16\xfa\x17\x1d\x17A\x17e\x17\x89\x17\xae\x17\xd2\x17\ -\xf7\x18\x1b\x18@\x18e\x18\x8a\x18\xaf\x18\xd5\x18\xfa\x19\ - \x19E\x19k\x19\x91\x19\xb7\x19\xdd\x1a\x04\x1a*\x1a\ -Q\x1aw\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b;\x1bc\x1b\ -\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c*\x1cR\x1c{\x1c\xa3\x1c\ -\xcc\x1c\xf5\x1d\x1e\x1dG\x1dp\x1d\x99\x1d\xc3\x1d\xec\x1e\ -\x16\x1e@\x1ej\x1e\x94\x1e\xbe\x1e\xe9\x1f\x13\x1f>\x1f\ -i\x1f\x94\x1f\xbf\x1f\xea \x15 A l \x98 \ -\xc4 \xf0!\x1c!H!u!\xa1!\xce!\xfb\x22\ -'\x22U\x22\x82\x22\xaf\x22\xdd#\x0a#8#f#\ -\x94#\xc2#\xf0$\x1f$M$|$\xab$\xda%\ -\x09%8%h%\x97%\xc7%\xf7&'&W&\ -\x87&\xb7&\xe8'\x18'I'z'\xab'\xdc(\ -\x0d(?(q(\xa2(\xd4)\x06)8)k)\ -\x9d)\xd0*\x02*5*h*\x9b*\xcf+\x02+\ -6+i+\x9d+\xd1,\x05,9,n,\xa2,\ -\xd7-\x0c-A-v-\xab-\xe1.\x16.L.\ -\x82.\xb7.\xee/$/Z/\x91/\xc7/\xfe0\ -50l0\xa40\xdb1\x121J1\x821\xba1\ -\xf22*2c2\x9b2\xd43\x0d3F3\x7f3\ -\xb83\xf14+4e4\x9e4\xd85\x135M5\ -\x875\xc25\xfd676r6\xae6\xe97$7\ -`7\x9c7\xd78\x148P8\x8c8\xc89\x059\ -B9\x7f9\xbc9\xf9:6:t:\xb2:\xef;\ --;k;\xaa;\xe8<' >`>\xa0>\xe0?\ -!?a?\xa2?\xe2@#@d@\xa6@\xe7A\ -)AjA\xacA\xeeB0BrB\xb5B\xf7C\ -:C}C\xc0D\x03DGD\x8aD\xceE\x12E\ -UE\x9aE\xdeF\x22FgF\xabF\xf0G5G\ -{G\xc0H\x05HKH\x91H\xd7I\x1dIcI\ -\xa9I\xf0J7J}J\xc4K\x0cKSK\x9aK\ -\xe2L*LrL\xbaM\x02MJM\x93M\xdcN\ -%NnN\xb7O\x00OIO\x93O\xddP'P\ -qP\xbbQ\x06QPQ\x9bQ\xe6R1R|R\ -\xc7S\x13S_S\xaaS\xf6TBT\x8fT\xdbU\ -(UuU\xc2V\x0fV\x5cV\xa9V\xf7WDW\ -\x92W\xe0X/X}X\xcbY\x1aYiY\xb8Z\ -\x07ZVZ\xa6Z\xf5[E[\x95[\xe5\x5c5\x5c\ -\x86\x5c\xd6]']x]\xc9^\x1a^l^\xbd_\ -\x0f_a_\xb3`\x05`W`\xaa`\xfcaOa\ -\xa2a\xf5bIb\x9cb\xf0cCc\x97c\xebd\ -@d\x94d\xe9e=e\x92e\xe7f=f\x92f\ -\xe8g=g\x93g\xe9h?h\x96h\xeciCi\ -\x9ai\xf1jHj\x9fj\xf7kOk\xa7k\xffl\ -Wl\xafm\x08m`m\xb9n\x12nkn\xc4o\ -\x1eoxo\xd1p+p\x86p\xe0q:q\x95q\ -\xf0rKr\xa6s\x01s]s\xb8t\x14tpt\ -\xccu(u\x85u\xe1v>v\x9bv\xf8wVw\ -\xb3x\x11xnx\xccy*y\x89y\xe7zFz\ -\xa5{\x04{c{\xc2|!|\x81|\xe1}A}\ -\xa1~\x01~b~\xc2\x7f#\x7f\x84\x7f\xe5\x80G\x80\ -\xa8\x81\x0a\x81k\x81\xcd\x820\x82\x92\x82\xf4\x83W\x83\ -\xba\x84\x1d\x84\x80\x84\xe3\x85G\x85\xab\x86\x0e\x86r\x86\ -\xd7\x87;\x87\x9f\x88\x04\x88i\x88\xce\x893\x89\x99\x89\ -\xfe\x8ad\x8a\xca\x8b0\x8b\x96\x8b\xfc\x8cc\x8c\xca\x8d\ -1\x8d\x98\x8d\xff\x8ef\x8e\xce\x8f6\x8f\x9e\x90\x06\x90\ -n\x90\xd6\x91?\x91\xa8\x92\x11\x92z\x92\xe3\x93M\x93\ -\xb6\x94 \x94\x8a\x94\xf4\x95_\x95\xc9\x964\x96\x9f\x97\ -\x0a\x97u\x97\xe0\x98L\x98\xb8\x99$\x99\x90\x99\xfc\x9a\ -h\x9a\xd5\x9bB\x9b\xaf\x9c\x1c\x9c\x89\x9c\xf7\x9dd\x9d\ -\xd2\x9e@\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0i\xa0\xd8\xa1\ -G\xa1\xb6\xa2&\xa2\x96\xa3\x06\xa3v\xa3\xe6\xa4V\xa4\ -\xc7\xa58\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7n\xa7\xe0\xa8\ -R\xa8\xc4\xa97\xa9\xa9\xaa\x1c\xaa\x8f\xab\x02\xabu\xab\ -\xe9\xac\x5c\xac\xd0\xadD\xad\xb8\xae-\xae\xa1\xaf\x16\xaf\ -\x8b\xb0\x00\xb0u\xb0\xea\xb1`\xb1\xd6\xb2K\xb2\xc2\xb3\ -8\xb3\xae\xb4%\xb4\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6y\xb6\ -\xf0\xb7h\xb7\xe0\xb8Y\xb8\xd1\xb9J\xb9\xc2\xba;\xba\ -\xb5\xbb.\xbb\xa7\xbc!\xbc\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\ -\x84\xbe\xff\xbfz\xbf\xf5\xc0p\xc0\xec\xc1g\xc1\xe3\xc2\ -_\xc2\xdb\xc3X\xc3\xd4\xc4Q\xc4\xce\xc5K\xc5\xc8\xc6\ -F\xc6\xc3\xc7A\xc7\xbf\xc8=\xc8\xbc\xc9:\xc9\xb9\xca\ -8\xca\xb7\xcb6\xcb\xb6\xcc5\xcc\xb5\xcd5\xcd\xb5\xce\ -6\xce\xb6\xcf7\xcf\xb8\xd09\xd0\xba\xd1<\xd1\xbe\xd2\ -?\xd2\xc1\xd3D\xd3\xc6\xd4I\xd4\xcb\xd5N\xd5\xd1\xd6\ -U\xd6\xd8\xd7\x5c\xd7\xe0\xd8d\xd8\xe8\xd9l\xd9\xf1\xda\ -v\xda\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\x96\xde\x1c\xde\ -\xa2\xdf)\xdf\xaf\xe06\xe0\xbd\xe1D\xe1\xcc\xe2S\xe2\ -\xdb\xe3c\xe3\xeb\xe4s\xe4\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\ -\x1f\xe7\xa9\xe82\xe8\xbc\xe9F\xe9\xd0\xea[\xea\xe5\xeb\ -p\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee(\xee\xb4\xef@\xef\ -\xcc\xf0X\xf0\xe5\xf1r\xf1\xff\xf2\x8c\xf3\x19\xf3\xa7\xf4\ -4\xf4\xc2\xf5P\xf5\xde\xf6m\xf6\xfb\xf7\x8a\xf8\x19\xf8\ -\xa8\xf98\xf9\xc7\xfaW\xfa\xe7\xfbw\xfc\x07\xfc\x98\xfd\ -)\xfd\xba\xfeK\xfe\xdc\xffm\xff\xff\x80\x00 P8\ -$\x16\x0d\x07\x84BaP\xb8d6\x1d\x0f\x88Db\ -Q8\xa4V-\x17\x8cFcQ\xb8\xe4v=\x1f\x90\ -HdR9$\x96M'\x94JeR\xb9d\xb6]\ -/\x98A\x00\x930(*l\x0c\x9c\x03\x02\x13`P\ -0\x07?\x02?\xe8O\xe8X\x06 \x01\xa4\x00hO\ -\xfa$\x1a\x93H\x82R\xdf\xf0J}J\x06\xff\xa4\x80\ -\xa9t\xd0\x05\x1a\x07U\xa5\xd5\xeb\xf4\xfa\x8d\x86\x05S\ -\x81S\xe9VhK\xfc\x05o\x01\xd5\xaa\xf6\xca\x8d~\ -\x0fh\xb4\xd2\x00P\x8a\x95\x92\xefK\xb0P\xacW\x9a\ -M\xca\x9dI\xbe]05\xca\xf0\x02\x98\xfe\xc8>\xf2\ -O\xa7\xa6U\xe2\xf3\xcc<2O\xb7\xce\x1aSO\x07\ -\xe8Bcm!\x10\x87\xa7)\x89\xb5C\x00v\xb4#\ -?\x01\x81*\x98\x88]\xf7i\x87\xa4g\xb18+\x1e\ -\xe7\x01\xb7\x8e\xed\xaa\x17:\x15\xfa\x0d\xba\xde\xda\xf7\x98\ -Ln;\x7f\xbe\xe2\xf0!\x99\xec\x0d\xe2\xbbj\xe8T\ -\xab\x18^\x7f6\x9f\x90\xc8uz\xbb>\xcf\x81\xfc\xf8\ -\xf4=\x9c\xbe\xb6\xf3#\xdc\xbaa|VN\x0f\xa3c\ -6\xfa\x94\x04\xbfAb\xcf\xf4\xe0)\xc0\x03:r\x08\ --\xebzc\x03\xc1\x10L\x15\x05>\xe6\x94\x1cc\x13\ -p\x89\x04h\xc2\x86+\xee\x90\x00\xd0\xc8\x10(C\x83\ - \xdb\x0f\x91\x00LD\x05\xc1q,M\x13\xc5\x09B\ -\xa4fE\x85\xf9\x17\x17\x8d\xa6\xfcdk\xb9\x08\xb0;\ -\x1b\x84\x84LtV5A0_\x14\xc8\x12\x0c\x85!\ -\xa2\xe7\xd4\x8c|\x93RI\x00SI\x84|\x8c}\x1f\ -(\xc4\x0a\x01\x07\xb2\xa8\x9aCK\x058\x0f-\x812\ -$\xbd/\xcc\x13\x0a\x04gL\x86\x08\xed3\x8a\x87\x84\ -\xd4v#\x09\x98\x08\x02\x8a\xf3\x88\xda7\xce\x84\x5c\xa7\ -1O\x13\xcc\xf5\x03\x9d\x13\xe9\xc44P\x02\x11\xc9A\ -\x9b\xa8\xc42\x03\x01\x03-\x14?\x0c\x14h\xf0\xe3O\ -t\x8d%I\xa3\xe7\x95,w\x0c\x94\xc8|oS\x86\ -\xad\x0d\x0d\x0d\x95\x09\x0e\xfe\x8b#}!JU\x15M\ -T\x873\x07\x99\xe1E\x0c\xa1\xf1\xb9Y\x9ah\xc4\xb6\ -\x03\x810\xf8\xdaDN\x22\xb8\xdbS\xc4\xae\x13\x9bU\ -\xc8q\xab\xae\xe1\xa1V\x15UV\x9e\x14\xc8\xc8\x1e\x9b\ -\xb6\x89\xa9O\xd1\x03u\xacD\xd7\xb5\xfb\xa4\x89\xaaF\ -\xdd\xbch\x9e\xb7\x09\xe6\xea\xcav\x13\xa8\xe0\x1f\xb7I\ -\xfb;\xb8\x8e\xdb\xb2\xf29Wr\xd4\x82<\xc8E\x80\ -\xe3\xbb\xab+\xa3d9\xd7\xdd\xe3}-\xd0-\xec\xe0\ -X\xc8\xa3\xc6\xe4\xbc\xce\xc5\xde\xbf\xb9`\x04\xdc\x02\x84\ -X\x88T\x05\xe2\x80r8\xca\x9e\x87\x8d\x9c\x1e\xd6f\ -\xe5j\x8b\xd6\xe0MB6\x10\xe2\xc6L7^\xe8\x89\ -\xf9\x95\x9fc\xa6\x5c(\x9a\xf9\x89\x9be!\xf72\x87\ -\x02\x80xN\x15\x80:\xb6\x15 \xed.\x92\x9d\xea\x81\ -\xe8O\x06R\xe9\xad\x97r\xb5\x9b\xae\x17\xa6\x8c\xe0`\ -\xeec\xcdr\xbb\xb9\xa5\x93|\xdd\xb4\x83\xcc\x08\xeb\x80\ -\xa8\xf9\xaf\x93an\xc4\x1cb\xec\xb0\xc7\xb3\x87\x96\x89\ -\xbbi\xe4\x12\xe6GQ\xbf\xa3z8\xfb\x8c\xdb\xa8~\ -i\xef\x06E\x89\xbd\xef\x88>\xb8\x08\x82\xb1\xd1\x12U\ -\x86\x5c(~\x8eY\x9b\xa8\xcc\x1f\xdb\xc6\xd9\xa5[K\ -\x95\xd5y9h\xe8{\xefX\x07\xc6\xa74d\xef\xa8\ -\xbcD\x04\x81a\x0fD\x14\x82\x9d(2\x0a\xf5\x00\xd3\ -Z\x07\x02G\x7f\x5cu\x9d\x9d\x89\xccu\xf6\x8758\ -o\x1a\xd0\xbf:\x8a\x82\x1d\xe8)\x17\x91epa\xe1\ -\x87\x9c\xaa\x1d\x8ccT\xce9Zr\x15\xc6\xdf\x93\x0b\ -\x19E\xb6\x89I\xe7\xc8\xcf\xeb\x88\x1b\xc1\xa7\xbdwh\ -Gz\x08\x02\x82\x07\xc4(|B\x00\x9e\xd2\x06\xc2%\ -\x0e\x04#\x07\xb7\xdcy\x98\xdf\x89n`~\x85\x8b\xe2\ -a\x16_q\xecz{\xbe\xf7|\xf0\x1e\x13\xc4x\xc4\ -5f=p\xce\x10\x06\xd4\x09\x1a+P\x049%H\ -\xdc\x88\xd9\xf7\x80\xc1\x01\x07\x0d!\x8e\xf7I\xe0\x0c\x0b\ -\x90l9\xc1\xb0\xb8\x1d \xc90MC\xc0v\x09\xc8\ -L \xc5l)\x13\x0e\xe9\xce\xbd\xf0(\x22\xa1\x80\xad\ -p\xa0\xc8\x1f6V2\xe2\x81\xfc\x09\x1bP-\xb6\xbc\ -\xe5D\xf4\x1e\x92\xfc\x22\x8e]E9\x976\xdf\x02<\ -I\x0b\x01\xce&\x09\x03\xf4\x04\x80\xbaD=c\x94o\ -\x08X\xac\x19\x86TY\x17\xad\xf1\xd5\x81!\x19\x17\xc5\ -t3p\xe4mf9\x86:\xc7\xc8\xb3!rKf\ -\x01\x90\xc6\xe8\xdd\x9e\xd3\xdcR)L5GQ\x0a\xa3\ -C\x00xRk\xa8~\x08\xe8\xfc\x1cEL\x81\x12\x8a\ -\xaa\x17@\x00c!\xc1\xe9\x1c\x5c#\xd4y6p\xc6\ -\x0f#;\xcddP\xfd\x93\xc6\xd2\x16\xca\xc7\xe0\xfbs\ -\x11\xc5=\x00Y<\x01\x9c\x10\xab\x07\xd2\x8c'=\xd1\ -Y)\xc4\xb0\x88\x95A\xadI\xb7\xf7\x02\x8e\xe1\x9c5\ -\x8c\x86f3<\xc8z\x02V\xb0n[\x09\xc9\xb9\x99\ -70\xe6\x86\xa3\x9cO!\xf6b\x09\xc0\x9f1\xc3\x19\ - \x1dS,r\x8d\x89\x9c3\x9dp\xef\x1dO \xd0\ -\x80\xf8\x9f\x14\x01T\xd9\x06\xb0\xb8\x90\x09y\xbc\x1f\x04\ -\xec\xe1\x10\xa9\xeaWC\x01\x14+d81\x912\xcd\ -W1\xb6\xd4\xdb#K\x91D\x11\xb1\xe9\x91\x18\xde\xe2\ -\xe4\xe2`\x81\xf109\x89\x020\xa5\x87\x90\xee\x15T\ -\x0cJ\x8b\x8a\x0c)\x8f\xa0\xe0\x1b\x0c\x18\xa4\x82z\x1c\ -\x0c\x02e\x11\x0c\x13\x1c'\x867>\x89\x16\xe1K\x0e\ -\xb4l)?A\x80,\x13\x0c\x85E\xe2\xbat\xce\xb2\ -4\xf2!\xc4:\x87\x93\xc6\x1f2H\x1eG$\xc0\xfb\ -cs\x02a$ IM\xc1jL\x14\xc3=\x9c\x11\ -\x02\xa4)j\x00\x8e\x135\x0c?\x8fz\x8c=IC\ -\xdf\x02a\xca\xa6\x09\x00\x95S\xc2\xe1\x14\x7fC\xcd\x0e\ -\x05\x00H;\xaa\xc0\xeaH\x93\x96\x18\xd2W\x11-\x22\ -,\x91\x96\xeeJ \x11\xc7\xab\x0e)\xa2D\x125\xac\ -Z\x83\xba\xdc\x12\x88\x85F\x1e\xe3\xd6\x8d\x87P\xa2{\ -\x86@\xbbD\xd4D&\x05\xe0\xfd_\xc4\xf5=!\xe2\ -\xae\xc2\x09W\x04\x1b\x12$.\x9c\xd3\xa2DIb\x15\ -\x01^\xc5*\x81\x95\x92J\xcfR!=\xdb\xbbyH\ -\x00\xd2\xce\x04\x011g\xc5\xf9\x10I\xe3\xe2\x5c\x84\xa4\ -X3-\x0aC\x096\xac-\x88\x1b\x5c(\x97a\x0a\ -\xa6!V\xda\x02\xa1\xc7m\xc6\xe2@\xab\x93\x9e\xaf\x11\ -\xb7\x90\xc6\xeb\x15,W3\xcd\xcaYg-/\xa2-\ -iE\x22B\xe6\x0b@ys\xc2Y\x10\xb9\x82@:\ -\x0aK\xac#S\xd0w\xbbBR\xda\x05YXC\xe8\ -\x18\xaa\x12\x93\x986\xa4\x08]\x17\xc4`\xafx`\xc0\ -\x1eCa\xe3J`T\x92\x8dw\x16!\x11:cL\ -\xe2:%\x83\x22\xf2\xfe\x0e\xc5\x0e\x01\xc8dg\x0bx\ -\x0c\x18\xae\xa1\xfa\x9e\x98\xa0\x0b\x01\xa2\xbf\x06\x0d\xc8\x9e\ -\x05\x88`\xe9\xc2C\x8c%\xe1P=n\x9a\xeb\x82\x15\ -\x92\xc6E.\x19\x1a\xda.\x09\x15d2\xe4D\x85l\ -L\x1b,q\x09z\xb0N|\xa0\xb3N\x10\xc2\x9e\x1a\ -\x22\x17\xa07\x0a\x8cl$\xd5UL\x0eB8-c\ -\xd0\xe2D \xf03\x99\xc3`g\x22kwc'U\ -\xees\x0e5\xc7\xcbv\xdfK\xe0\x89\x93\x87\x18\xb5\x05\ -\x07\xbc\xac&B\x8eY\x0c\xc4@$e\xd04\xecG\ -`\xe7U@\xbf2\x03\xa9\xc2'F)\x10\x12\x99\xac\ -<\x0a\x0c\xdc\x22r3]\xb1v\xf6\x93\x99l\x96\xb7\ -\xb2m\xc2y\xf6V\xfa\x91($\xf6 \xac\x17D\xa2\ -KB\x0b`u\xa1\xc2I\x0c\xaeC\xd5*\x83\xd0\x18\ -\xdf%p\xbb\xd2Uh\x87\xcaqY*e^qp\ -\x10\x032\x02\xf0w\x8aHDe\xac2\xd8\x8b>\xbc\ -IYr\x88\xfb\x1fR\xfe\xfc\xa0\xbat4\x11\xea?\ -!c\x8bZ\x0d\xb0\xa5\xad\xc13\xdd\x19:\xec}\x9b\ -\x03dB\xe8\xf0\xb0e\xc1\xd0(\xa2jD\xf0o[\ -\xc5\xb8\xcf\x1c\xcb_\x08w|\xae\x22\xbe\xd4\x04\x1e\xcc\ -eD\x13\xa4\x85\xd8\xea\x95\xc42\x84\x8d\x80\xa9\xb7\xc1\ -K\xdd~#\x18|_\xf2\x19M#\xc3dD\xb6*\ -\x18\xe1\xcb}\x9d\xa2.L\xda\x0a\xeezg\xd9\xed\x94\ -\xa3\x85\x9aD\xa3\x0f~\x0fJ/\xb7\x0f\xae\xdf\x0a\x9b\ -\x85\xdd\xee=\xca\x86p\x01\x0b\x9d\xea\xf4\x16\xecg}\ -b\xf7vuc9\xdd\xc7o7'\xb4\xb6Y\x0d\xcf\ -\xf0\x1f@\xa2m\xf80\xf7\xf2#\xe0\x14+\x81pG\ -;\xc1\xb77\x0aZ\x5c3\x87>\x09\x0d\x220\xec\x8c\ -c{\xca[\xe2LL\x15\xb1G\x19\x8d\xc6N\x09\xf1\ -\xdd\xf7\xbfw\xf9\x0b\xdb\xbc\x97q?\x1e\x0e\x01\xb8I\ -\x0a\xe1i\xc7\x86\xa2Y]\x86\xb8\x89\x19\xa5\x0d\xda\xc9\ -\x11w\xd6\x1c:\xc0\x8b\xbb\xa1\xafi\x90m\xab\xbe\x90\ -_\x1f\xe4.\x83\x91\xed\xed\xc1\xd1w')\xe9\x5c\xaf\ -\xa6i\xa9^\x22Ee%\xeb\xa4\x15\xc4\xb7nip\ -\xaf\x9f\x18\xde\xd6_|O\x8e\xc0\x82\xbb\x17A!]\ -\x0f\xb3\xf0^\x8d\xda\x88OK\x0a\xfd5\x05\xee\xc9\xcf\ -\xd4H\xc6\xa2V8\x84\x8a>\xb6\xdf\x8fB\xd0p\x97\ -\xba\xab\x9e\xa0\xed\x04\x81\xef\xf8\xbe\xf4C\xb8\x04zP\ -\x14C5\xa0\xe2\x1br8\x1d\xbd\xd1m\xeb\xc7$\x9e\ -\x00\xa0\x18\x86#!\xbe5\xd5 /\xa6(&WJ\ -\xa1\x10*\xa3\x17s \x94\x00w\xc1>\xef\x88\x92\xe7\ -6\xc4\xff\x08\x81\xbdU\x00\x1a\x02\x0f>$\xc5?\x9b\ -\x86\xben\x1b\x00\xff\xd9\x04\xef\xf5\x04-\xd5\xbe(\x7f\ -\x00\x89\x17?\x8cT\x12\xcd\x8fI9\x84\xec\x1e\x10\xe3\ -\xe3\x91H\xd4\x885A\x1a\xeb\xefl\x92MP%\x00\ -#\x17\xdcO\x1e\x88_\x0a\xdc\xac\x0f`\xb4\x85\x82B\ -\xf1\xc8dp\xa9d\xe2G\x92Y\xef(\x22fB\xcf\ -g\xa2\xf9\x82\x04\xfeh\xe4$(\xac\x10\xa1L\x89 \ -\x8e\x0b/\xf4R\x8c\xdc\x14\x01\x0e\xcda(\x0fBI\ -\x00\x8f \x22\xe5\x98\x9d\xc5\xa4\x92P\x1c\x88%\x86\x22\ -h\x88V+\x94#\xc0q\x06`\x8b\x04\x01u\x03e\ -T<\x01\xfa\xe1\x8fl\x1a\xe2@\xc8\xec\xe8#)\x16\ -\x1eNf\xcf\x0e,\xfe\x223\x02B@\x0fP\x98\x13\ -\x0dn\x0a@\xcf\x07\x06\xf6\x12\xb0\xa8\x0fA?\x0a\xe1\ -\x0e$\x0b\xce\x8b\xeb\xd4x\x8ec\x08\x87\x94\xfd\xb0\x18\ -\xf9%\xae\xfa\xf0 \x00\x0e6\x82\x8f<$\x10@\x17\ -0f\x07\x00\x8c\x22\x08\xb2\x19Ay\x07P\xa4$G\ ->\x01\x8d:\xf5\xa2\x1e\x16\x10\xfc\x13a\x09\x10,\xb6\ -#\xe9\xaa\x02k\xd0\x15\xf0\x82#\x07\x90\xe2\x8c\xf2\xf9\ -\x05p\xef%\xb4\xefk\x8e\xd5MX\x98\x22@I!\ -4\x18\x0f\xf2!\xed\x1a\x01\x8d\x17\x0e\xe2B\xa6\xe0H\ -\x05\x8cl\x15\x08\xd0!\xa1k\x15!D\x0f\xf1X\x0b\ -\xf0~\xceHb\xd90\xcf\x11m\xe3\x08\xca\xc6\xda1\ -#\x05\xac\xfc\xef\xab2\xfe\x82?\x13\x114p\xc2!\ -\x13\xb1?\x14\x02?\x14QH\xc6\xd1N!\x91R\x16\ -\xb1W\x15\xb0\xb4\xe1\xed\xdb\x00\xca\xbeU\xcf\xd9\x16\xce\ -\xf1\x17\x10\xce\xc5g\xb0\xda\xc27\x18\x116!\xd1\x88\ -\xa8\xf1\x8d\x18\xeao\x191L\x22\x11\x9b\x19\xe0\xff\x15\ -\xc2>\xe9\xe9a\x1a\x8f\xd4\x96\xa6<\xe2\xcd\xeb\x17M\ -\xef\x12\x8b\x92\xd5\xa2;\x1c\x11\x85\x13\x84\xab\x13\xd1\xc9\ -\x1c\xa2;\x19\x11K\x19b\x17\x1dqY\x1d\xb1\xa2\xe5\ -\xcaG\x16Nt!p\x87\x08\xae+\x16\xed\xe8\xbe\x91\ -\xf0\xef\x8dT\xcan\xfe#\x91\xfc\x06H\xc7\x1cR\x03\ -\x18\xb2\x08#r\x0d\x19Q\xd5\x15R\x17\x1d\xc2<\xc8\ -\xf2!\x12EX31\xaf\x22\xac\xf4\x92\x90\x1f\x22\x22\ -\x15\x09Q~I1\x83$\x11\x87$r\x06@\xe07\ -(`B\x06r\x8c\x08\x08\x5c\xcc\x01\xcf\x0eax\xcc\ -\x01\xd0A2O\x1d\x22\x1f!Q\xa0#\xf0I\x1eB\ -4\xee\xa7\x17\x0cB$\xc4p\xca\xf9rp!0^\ -\x88\xd1-'q3\x1c\x22\x1b\x1cj\xe6%\x8fJ\x01\ -\x00\x14rP\xcc\x9e\xaab\x84\xc18\x10P:\x11\x09\ -0\x1f\x82Y*2\x10!R\xa9!\x91\xdf\x16\x0bx\ -\xfd0\x11\x11\x90\x8ed\xef6\x1fR9\x17\xc2=#\ -\xf2C-2\x81-bN\xbf\xf0:\x19\x04z\x06\x02\ -0\x18\xb34\x16\xc4\xe8\x0d\xeb\xa2%r\xf9%1\x9d\ -%q^p\x0e\xa1+\x023+G\x19\x1b\x11\x1c\xb8\ -ew\x09\x021,pc\x1f\xb2y-\x02\x19-J\ -\x90$\xe6\xde\x8f\x08\xf4#\xe1\x0f7\xe0\xd0\x85!Z\ -\x13\x22Q42\xa7%R\xaa#\xcf\x1c\xc3q\xff+\ -*\xc0\xf2mI5\xb1!\x0c\xf2u1\xb3k9\xb3\ - \xd1\xd2H$\x22r\x01\xeb\xf8\x17\x81\xd6a\xe2@\ -\xab\x01\xdc\x1d,\xba\x09\x004hbE8\xc2\x1d/\ -\xf2X#\xb1\x0ax\x10\x0b'\xcd\xde\xe2qk&\x93\ -\xa5\x1bR\xc2!\x13e\x1f\x92=:\xf3\xe9$S\xb5\ -(\x22C\x0d\xf0j\xcdpn$\xe4\x00\x0a`N\x1c\ -4\x1c\x1bBI=\x91Q9\x13\x019Q\xa4\xf1\xf3\ -P#\x12'\x0c3X\xfd\xc9\xe55\xf3\x10#jb\ -\x93r;\x1b\xf4\x011\xf3o23r$@\x83E\ -\xa0\xa2\x80\x02P\xc8,\x86\xc8\xa2GBQ\x99B\x93\ -\xde#\x91\xe0\xee\x10J\x22\xcf$VS\xa3C\xd1\x1f\ -?R`\xe3K\x91\x06\x13\xfdD\xd2\xcf;\x14S@\ -s$$J\x1c\x04\xe0`\xa8\x01J\x19\xe2P\xc5\xe0\ -&\x1e4\xb4\x1d\xd4#\x1c\xf2\x0f4Q\xd9G\x227\ -\x10\xb1\x0f\x11\x22.\xb7\xe7\x95\x01r\xbbC\xee/\x17\ -3b\xe7\x8d\x01\x0dr\xcd'\xb4P!sp$\x84\ -\xa6\x15\xd4\xf4\x1b@9O\xa0F$\x0bN\x17\xef\x9e\ -\x08S\x8bK\xd2Q8\xf3G9\x22;%\xc8\x05?\ -b\x0fCe\x9f+\x82#+\xc9t[3\x131p\ -'?\xf4\x97@3\xb3 T\x9e$\xa0\x8bT \xad\ -7\xe1\x0e\x15\x228\x8f\x88&\x1a\x15T\xcd\x22OF\ -\xd2\x13G\x13J\x02\xac\xe70\x8e\xa42\xcb\x81H0\ -\xc7Hr.\xefR2!\xe7\xaas\x01\xabX!\x95\ -\x12\xf4O'\xf4\x9dEbR\x0cU\x94\x0f@\xd3Y\ -\xa1\x08\xc5#\xef\x02\xa0\xcc\x16\x95\xa8\x142\xf7P\xd2\ -\xa5=\xb5a*\xd4.\xc9\x00{\x16umM5q\ -MuuM\xb3\xa9\x17\x91\xbc#S\x1dX\xd5=Y\ -\x02Xda\x0c\x8f\x00\xf2\x22\x11\x02\x10\x80\xcb\x0f\xc1\ -`\x13\x82aU\xd2\xfd[t-!\xc7\x83L\xc2-\ -\x16\x85cRB!R\x8cK,\x14\x8a!\x95~\x88\ -\xb5\x82\x1a\xb5\x87NsmN\xd4T&\x00\xbfb\xe0\ -\xecWL\xe0!\xe0\xf1c\xa0\xad;\xe1W_u\xb1\ -/\xa2\x13=\xd2\x1a\x85\xf1\xa6\x86\x8b\xdc\xd9\xcaW?\ -4@z5.\xdf3\x196\x957N\xa2\x15N\xe2\ -_b\xe0\xbfc$?cb\x1dc\xa0\xf1c\xeb\xf9\ -d\x22__\x96K_\xd5\x16\xc3$v\xeeU\x1c \ -\xd6\x08\x07\xd6\x0c!\xef\xdfWt\xdcH\xa4\x8e\xc5\x94\ -K]U\x8b \x15\x8fb\xd61cB!h\x16\x84\ -\x17\x96\x88%\xd6\x8c!\x16M0'\x01Vl\x92#\ -p\x86\x91\xc9!\x5cu'M\x93`\x22\xf4F\x88\xb5\ -\xd2#5\xd7k\x95\xda&\x0a\x9e\x09@\xb8\x10W\x04\ -\x14b Y\xc0yUA\xa1U\x96\xcddt\xc14\ -\x91\x084T\xcbV\x91\x14\xde\x16\x0bC\xa2&}h\ -\x1cn6b\xef\xd6gST\xe9]\x93\xb6%\x8f\xec\ -\xb0\x81V\x1a\xc8\x9e\x8a\x22\x0ev\xe1\xaa\xc0`\xb6\x06\ -P\x05Z\xf1GK\xf5\x11L6N\x80\x12_W\xad\ -\x99>\xd7+?\x14\x855\xc1\x11n\xa2-:\xb6i\ -s\xf6\xf9t\x22^\x04\x17\x90\x05\x07$t@B\x05\ -!\xady\xe1\x96\xd0\x81$\x0e\xe9\x96\x1dA\xcb*\x17\ -\x19vw\x1c#\xd4\xc9\x0b\x96\x04\x22\xb6\x9fj\x22\x1c\ -\xd4\xc5\xaf\x1e\xf4\xdf\x1fT\x91,\xb3\xadf\xb7A@\ -\x92J#\x16\xce \xf6\xd3%\xb6\x94pi\xd2\x07\xd0\ -\xcfG\xf4\xd5nu\xcb|\xd6\xacJ\x0f\x9e\xfa4\xe5\ -}w\x89@V\xfb}\xe25~\x22\x0d~b:\xfc\ -\xf7\xbe\x22\x97\xf5nV\x0em\xc5D\xca\x0f\xe42f\ -7a\xf6#\x80\x96'f\xf6+\x81\x023\x81B\x0b\ -\x81\x8299x:\x22\xb0\x87Y@\xc4\x07i\xdf\x05\ -X+sMR\xd5q\xf7}W\x87\x84\xe2\x11g\x18\ -@\x22\xf8D \x98H#r\xafeO\xd4\x82n\xab\ -&\xa6H\x88\x15\xcf#veS4\x95\x80\xb5;x\ -\xd8r\x22Xv xz#Tw9\x98\x81\x01\x15\ -o\x1e\xb2-\x5c\xd6\x9a \xb7\x84#\x8b>\x13\x01|\ -\xb3\x80h\x08\x22 \xbb@\xee\x0a\x81\xf3\x8da\xf1\x89\ -\xe2.\x03X\xe0\x04\x04\xce\x0e\xc9\x06!\xf5\xa8\x16\x81\ -@\x10\x18\xf4\x0c7j\xa4x\x1e\x22sU|B\x1b\ -jx\xb9ab\x17\x8b\xe26\x94,^\x0a\x98\xdcO\ -\x0b\xac\x14\x81\x1a\xba`\xe9d\xee!C4\xcf\x5c0\ -\x15\x82V\xa5n\x94C\x82\xf7\xd1,\x8aj#\xa9\xf6\ -\x89\xb9\x1aLM\x86\x0a-\x83\x92\x96S\x00\xf3S&\ -N\xedr\xd5\xc8\x92x\x8a\xcf\x97qH\xcf9N(\ -,$\x0c\x12\x01\xb2\x0e\x039|\x03\xf9JH\x17\x9e\ -\x1a\xc1\x97\x85@u/5b\xc3V\x99\x90\xc2\x15M\ -\x193\x8bMJCMO\x93\xa23n\xe5co\x22\ -8\x06\xb9\xb4\x08A'\x9b\xa1qC\x88)\xc2\x0aS\x82\x81\ -*\xcf\xcf\x18\x0b\xfcH\x06P\x09\x8c\xae\xbd\xc9\xbb\x9e\ -\xa1>\x0a\x91\xa3\x05\x83\x87\xdc\x1cG \xa2\xaa\xf4V\ -\xa0\xa3\x90i\x0b\x9cJ\x9c\x0a\xab\xbc\x0a4\x12\xa2\x9a\ -\x91\x08\x0c|D\x83\x92\x0a> \xa0[\x10{ \xa4\ -(\x1d\x17\x91\xa14d|\xa8\xf0\xdaY\x1b%p\xfa\ -|\xf9\x19\x822\x0aI\xa0\xa13Dn6\xa3k\x92\ -\x19\x97\x0a\x1cp\x95IiLt\xe7\x1f\xe0\x11\x9d)\ -\x90i\x00\xf4\xd3\xa1\xe4L\x8e=6\xa7\xf2s&\xa5\ -\x13\x02O'\xa5\x8e\x99\x9e\x08\x1f\xb3IJ\x82\x89R\ -\xc2,\x5c\x00s\x88\xb2\x18\xce\x8e\x03\xdb\x03\xb1\xf3\xc2\ -}2$\xf2\x99\x9c\x15:\xc7\xf1`\x82\x84\xb3r:\ -nN \x18\xa1:\x06&\xac8\xa5LI4\xf8\x91\ -5\xc6h\x86\x90\x15\xe8(\x1bC$\xe7\xa3\xfc\x01\x0a\ -P\x08d]\xa54\x8aKS$\x94\x9a5?\x08\x94\ -\x09d\x82\x814\xe2`|S\xe2uER$\x95B\ -\x81='\xb5R+\x1eG\xc8!b\x82\x81\x0a\x93\x96\ -\x82\x15\x8d\xa9n\xda\x9c@M\x9cq\xcd'\xe9\xfe~\ -Z\x80\xd5\xa8~\x17\xa8(8\xae\x1f\x08(\x9f\x0b\x86\ -\x85\xd2=]$W\x22=_\x22\x11\xe0\x8e\x82\xd0h\ -%\x8a\xa5\x9c-\xa8\xe7Q\x15\xf2\xea-\x1e\x1bh(\ -H\xb1[\xa8 \xa1p\x17,\xf5x\x9e\x5c\xc8\xed\xd0\ -\x85\xcf\xc1\xad\x02` \xa0R\x98F\x82\xd8\x88\xfa\x0f\ -b\x87\xba=|_KA\xec\xda\x87\xf29\x98\x8b`\ -\xa8\xe6B\x8d\xe0\xe84x\x0f \xa6J\x0a\x0c(\xd2\ -\xf2\x086\xdc\x04\xb2S\x8c \x97\xda\xdat<\xa08\ -l\xf4\x05\xafSG\x0e\xa8\xb9\x1a5\x83\x9bZ(\x1c\ -yi\x06*\x0a\x16)\x83-\xc0N%\xf9\xa0\x01\x9b\ -.F\x90\x17\xab\x87\x81N\xb4y\xa1\xda\x123\xaf#\ -\x14\x9a@\x00\xd2\xa5\x9a\x0a%\xa8\xed\xa9A#\x8c)\ -\x9e\xa5\xaa.\xa5\x94\x8e(6\xba\x02\x0d\xb0\x22\xfb\xc2\ --I\xd2\xa3\xe2@A\xa9\x87\x02\x0a\x15\xdc\x11be\ -\xb7\xaf\xad\xa8\xf1#\x91(V\xf4\x8a\xf1\xe8\xa4u\x1e\ -\x07\x88.\x18\x82\x00zn\x9e\x9c\xf1\x0b\xfb\xf8\x82\x07\ -\x97\x06T\xa8n\xd2V\x06\x9d\xba:)\xb5\xa3\xe9\x06\ -\x92\x0a\x0f\xa9\x87\x0d\x09p\x1f|\xe3\xe5|\xe6\xacG\ -p\x00\x06\x1c/\x22\x89\xf7\xe8\x93\xa3\x1e\x11\xb0\xaa\xa4\ -E\x5c\x03\xba{\xce\xb0\xed\xa9\x05#\x8f\xfe\x0a#\xe9\ -\x22\x06\x87\xad4M9\xf0\x18\xa6\xd1\x22\x0d\x19\xcb\xa7\ -~c\x12w\x81\x1f(<\x15\xfd\x07\xa4k\xd3\xa7S\ -\xf0\xec\x90q\xaa~,\x82\x01\xfd\xa7\x97\xdb\xe3,s\ -j9TD\x7f\xd6\xe9J\x12\x95\x16\xa9\xb0\xa9\x0d\xd5\ -\xc0\xdc\x09\xe8\xd2\x81@\x88\x90\x00RR\x83\x87\xda\xaf\ - \x89\x08\xa7\x8b4\x8e\x13\x9f\xf9JR\xa3e \x95\ -!\x8a\xb8\x1c\xa9\x82G\x82\xf8\x82\x84\x12\xa46\x128\ -)\x83%\x1dJ\xb8`\x00\xacJa\xb5\x16\x89\x1c&\ -\x984x\xa6W\xf1R\x1e\xe9\x1d\x87\x14g\xa8C\xd4\ -\xa8\xdf \xa0\x80\xa9\x0cu\xc0\x0e\x8c\x1a\x95\x18D\x80\ -\x1e\x95!\xbe\x91\xc1\x14+(\xcaU\x5c\x00\x00\x88T\ -\x86\xf2\xe0\x04p\xd8\xf9A\xc8&T\x85\xd2G]p\ -\xf9\xf6\x13\x95*\x22\x08+\xca)\xe3\xe1\xf2\x80\x80\x1e\ -\x0b#\x80\xfa.\xa8\xf2\x07\x10D\xec\x00!\xe9N\x10\ -\xa9\x1d\x14FH\x00O\xd3\xf0\x1f$\x03t\x82\xb9\x92\ -\x9e\x10\xd7\x04$.\x89\xf8\x1f\xb0\xb2\xa4>\x8d\xa8!\ -TK\x1d\xa0\xc6RltT\xa8\xa9$\x01X\xa6\x90\ -\x00\x0c\x09\x183\x82\x9d@\x10\x88L*\x17\x0c\x86\xc3\ -\xa1\xf1\x08\x8cJ&\x00fE\x910\x93\xb4R7\x1c\ -\x8e\xc2\xd3\xe3I\x09\x89\xff$\x8fI\xa4\xf0\xa9#\xfe\ -Q,\x8f@\x80 \x06\x94\xc8D\xfa\x9a\xb4! \xd9\ -l\xea8\xe3\x04O\x84\x82\xca\x0b\xeawD\xa2\xc3\x1a\ -\x94\x803\xe2\x96\xdb\x84\x87\xa8\xd5\x08c\xc0\x07T\x16\ -\x0cj\xeeYUF\xb7Z\xad\xd4%\xf0\xb6u\x88\xbc\ -\xfe\xb2\xa8k\xd5\xe9y\xa6\x0a3LZ-\xf1\xd6m\ -\xc8\xcf*\xb7\x5c(\xd2\xf2\xc5\xb1S)\x92\xdd\xe7U\ -\xdb\xfc\xb2\xc1\x0e\xb93S\xf2\xa3\x06\x0av\xe2\x02c\ -\x85C\x0c\x8b\xd7\x17\x7fhe\x81o\xcc\xcb^\x12\x1d\ -\xcaI\xe5\xe9\xbba\x9a\x1d\x81\xcfGt\xbah\xde\x12\ -\x1a\xe2\xd6\x82][\x06,$c\xa9\x8e\xcb\xd4\xb6\xc2\ -\xe6\xd6\xbd\x16f)a%\xad\xde\xaa\x04\xcd\x06\xf1\x87\ -bnK\xe7I~\xe1D\xf5\x1c\xe8~\xae \xd3\xea\ -\x87_=\x86D$5\xd1\x8d\x9a\xe4#D\xb7vM\ -\x866J\x92~8\x9b\x96\xa8\x03\x1b\xd5\xc6.X\x97\ -C\xd3}\x95\xfd!\xdd8\x9b?\xf60~\xff\x8c4\ -$\x0c}\xd0\xc3\xfd/\x1d\x16\xc2:\x03C\x1b\xd4\x1d\ -\x08F\x10\x84\xc2\x0aBO0\x0a\x15\x0fC(`\xd1\ -G\x1f8\x0e\x1c}\xdf\x94qb3\x84\x95\x94\xfe,\ -\xd0\x90\x0e\x12B\x92\xf2X\x0a\x8b\x87\x80\xa61<\xdb\ -Sj5\x03\x8f(\xe0\x8aBFx\xa9\x0c?R\xf1\ -1l.\x12xy\xf4\x91^\x98\x81\xe4\x5c\x85\xc4\xa8\ -\xa0\x8a#\xd4,\xe7BG\x94$\xa6x\x0f\xb5\x19H\ -5\x14\xa5-\xc1B\x08\x84$\x17\x94\x10\xa8\xfd\x02\x18\ -\x16\xc2\x91\x80sc\xd9\x1d\xe3\x92R\xc8\x88Y\x89J\ -9>cC\x0e\xf4$\xb0Bd4 \xe2\x01g\xf3\ -\x91\x0a>\xe80qNK\xc4\x94\xa8PBA\x09\xda\ ->\x85@!v\x18\x0c\x8au\x1amwigFo\ -N\xe2!R%\xa5\x10\x80\x12\x8d\xa8\x9ac\xf1\xc0x\ -\x0a\xb5z\x98s\xaa\xa7\x0a\x9aQ\x9b\xda)\x08\xa7\xc0\ -\x00\x22\xa3\xad\x95\x17-\x08\x16^\x02\xbdw\xab\x1b\xba\ -\xfd\xb5\xab\x95\xb6\x183J\x8a\xe5:\xb7\xb2\x91\xe3\x8d\ -/\x14\x96\xc31\x94\xb0Z\x9bM\xa6\xb0\xd6\xf6\xf4\x14\ -K\xca\x94\xa8B\xb2\xed\xf40\xc0\xa3\xc5jH\xebm\ -mVz\xe8e-u\xfd*\x00\xe2\x22!*\x1d.\ -\x0a\xd8\x8f[\x07d\xbe\xa5\xaa\xe6\xb8\xaa\xeab\xee\xc6\ -\xd6\x22\x89\x16RI\x09\x09/GD\xddBF\xf7\x80\ -\xb5\x84\xaf\xe6\x0b\x10_\xf0\x07:Z\x97\x0f\x81\xc9\x09\ -\x1f\x10\x90/\x08V\xd94 \x86\x03\xb225\xc9\x09\ -\xab\x99\xb2\xfc\xc3\xf2\xa8+\x14\x80\xdf\xb3<\x1b\x7f\x8f\ -\xd2-\x09\x16q\xe4\xb0\xa9\x9f\xc0Q\xd0/\xcf\xa8\x1b\ -+\x12\xaf\xb2\xc8\x0f.\x9d\xacT\xa8nBEt$\ -\x07\xbd\x144 \xa9K\xc9+C8B4%\xc3X\ -[\xf4k.\x22\x05R\xa1a\x09\x14\x12\xa0\xf9\x09\xa8\ -\x5c+\xe8\x00\x80\x10\x82\xc1\x8e\x01\x0a\x86D0:\xb5\ -d?ZZ7e\xa5\x02\xdd\x12\x84\xc8\xd2\x04Y\x93\ -\xf08\x89[D 0K\xc1\xd4\xa8\x11\xa2\xd0\x98D\ -\x00\x9e\x10\x83\xc1\x098\xd0\x93>\x8f46\xe3\x1c.\ -\xe6\xb8\xfd\xed\xa7\xd1\x1f}\xe3\x9d\xe8\xba>\x93w\xe7\ -\xfa^\xa3\xa9\xea\xb1\x1e\x9f\xab\xeb\xba\xfe\xc1(\xe8{\ -\x1e\xd3\xb5\xde\xfb>\xdb\xb9\xee\xb4\x1e\xb7\xbb\xef\xbb\xfe\ -\x8b\xb8\xf0\x01E\x01L\x01R\x01Y\x01`\x01g\x01n\x01\ -u\x01|\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\ -\xb1\x01\xb9\x01\xc1\x01\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\ -\xf2\x01\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02&\x02/\x02\ -8\x02A\x02K\x02T\x02]\x02g\x02q\x02z\x02\ -\x84\x02\x8e\x02\x98\x02\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\ -\xd5\x02\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\x16\x03!\x03\ --\x038\x03C\x03O\x03Z\x03f\x03r\x03~\x03\ -\x8a\x03\x96\x03\xa2\x03\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\ -\xec\x03\xf9\x04\x06\x04\x13\x04 \x04-\x04;\x04H\x04\ -U\x04c\x04q\x04~\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\ -\xc4\x04\xd3\x04\xe1\x04\xf0\x04\xfe\x05\x0d\x05\x1c\x05+\x05\ -:\x05I\x05X\x05g\x05w\x05\x86\x05\x96\x05\xa6\x05\ -\xb5\x05\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\x16\x06'\x06\ -7\x06H\x06Y\x06j\x06{\x06\x8c\x06\x9d\x06\xaf\x06\ -\xc0\x06\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07+\x07=\x07\ -O\x07a\x07t\x07\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\ -\xe5\x07\xf8\x08\x0b\x08\x1f\x082\x08F\x08Z\x08n\x08\ -\x82\x08\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09\ -%\x09:\x09O\x09d\x09y\x09\x8f\x09\xa4\x09\xba\x09\ -\xcf\x09\xe5\x09\xfb\x0a\x11\x0a'\x0a=\x0aT\x0aj\x0a\ -\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b\ -9\x0bQ\x0bi\x0b\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\ -\xf9\x0c\x12\x0c*\x0cC\x0c\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\ -\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d&\x0d@\x0dZ\x0dt\x0d\ -\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e.\x0eI\x0e\ -d\x0e\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f%\x0f\ -A\x0f^\x0fz\x0f\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10\ -&\x10C\x10a\x10~\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\ -\x13\x111\x11O\x11m\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\ -\x07\x12&\x12E\x12d\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\ -\x03\x13#\x13C\x13c\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\ -\x06\x14'\x14I\x14j\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\ -\x12\x154\x15V\x15x\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16\ -&\x16I\x16l\x16\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17\ -A\x17e\x17\x89\x17\xae\x17\xd2\x17\xf7\x18\x1b\x18@\x18\ -e\x18\x8a\x18\xaf\x18\xd5\x18\xfa\x19 \x19E\x19k\x19\ -\x91\x19\xb7\x19\xdd\x1a\x04\x1a*\x1aQ\x1aw\x1a\x9e\x1a\ -\xc5\x1a\xec\x1b\x14\x1b;\x1bc\x1b\x8a\x1b\xb2\x1b\xda\x1c\ -\x02\x1c*\x1cR\x1c{\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1d\ -G\x1dp\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e@\x1ej\x1e\ -\x94\x1e\xbe\x1e\xe9\x1f\x13\x1f>\x1fi\x1f\x94\x1f\xbf\x1f\ -\xea \x15 A l \x98 \xc4 \xf0!\x1c!\ -H!u!\xa1!\xce!\xfb\x22'\x22U\x22\x82\x22\ -\xaf\x22\xdd#\x0a#8#f#\x94#\xc2#\xf0$\ -\x1f$M$|$\xab$\xda%\x09%8%h%\ -\x97%\xc7%\xf7&'&W&\x87&\xb7&\xe8'\ -\x18'I'z'\xab'\xdc(\x0d(?(q(\ -\xa2(\xd4)\x06)8)k)\x9d)\xd0*\x02*\ -5*h*\x9b*\xcf+\x02+6+i+\x9d+\ -\xd1,\x05,9,n,\xa2,\xd7-\x0c-A-\ -v-\xab-\xe1.\x16.L.\x82.\xb7.\xee/\ -$/Z/\x91/\xc7/\xfe050l0\xa40\ -\xdb1\x121J1\x821\xba1\xf22*2c2\ -\x9b2\xd43\x0d3F3\x7f3\xb83\xf14+4\ -e4\x9e4\xd85\x135M5\x875\xc25\xfd6\ -76r6\xae6\xe97$7`7\x9c7\xd78\ -\x148P8\x8c8\xc89\x059B9\x7f9\xbc9\ -\xf9:6:t:\xb2:\xef;-;k;\xaa;\ -\xe8<' >`>\xa0>\xe0?!?a?\xa2?\ -\xe2@#@d@\xa6@\xe7A)AjA\xacA\ -\xeeB0BrB\xb5B\xf7C:C}C\xc0D\ -\x03DGD\x8aD\xceE\x12EUE\x9aE\xdeF\ -\x22FgF\xabF\xf0G5G{G\xc0H\x05H\ -KH\x91H\xd7I\x1dIcI\xa9I\xf0J7J\ -}J\xc4K\x0cKSK\x9aK\xe2L*LrL\ -\xbaM\x02MJM\x93M\xdcN%NnN\xb7O\ -\x00OIO\x93O\xddP'PqP\xbbQ\x06Q\ -PQ\x9bQ\xe6R1R|R\xc7S\x13S_S\ -\xaaS\xf6TBT\x8fT\xdbU(UuU\xc2V\ -\x0fV\x5cV\xa9V\xf7WDW\x92W\xe0X/X\ -}X\xcbY\x1aYiY\xb8Z\x07ZVZ\xa6Z\ -\xf5[E[\x95[\xe5\x5c5\x5c\x86\x5c\xd6]']\ -x]\xc9^\x1a^l^\xbd_\x0f_a_\xb3`\ -\x05`W`\xaa`\xfcaOa\xa2a\xf5bIb\ -\x9cb\xf0cCc\x97c\xebd@d\x94d\xe9e\ -=e\x92e\xe7f=f\x92f\xe8g=g\x93g\ -\xe9h?h\x96h\xeciCi\x9ai\xf1jHj\ -\x9fj\xf7kOk\xa7k\xfflWl\xafm\x08m\ -`m\xb9n\x12nkn\xc4o\x1eoxo\xd1p\ -+p\x86p\xe0q:q\x95q\xf0rKr\xa6s\ -\x01s]s\xb8t\x14tpt\xccu(u\x85u\ -\xe1v>v\x9bv\xf8wVw\xb3x\x11xnx\ -\xccy*y\x89y\xe7zFz\xa5{\x04{c{\ -\xc2|!|\x81|\xe1}A}\xa1~\x01~b~\ -\xc2\x7f#\x7f\x84\x7f\xe5\x80G\x80\xa8\x81\x0a\x81k\x81\ -\xcd\x820\x82\x92\x82\xf4\x83W\x83\xba\x84\x1d\x84\x80\x84\ -\xe3\x85G\x85\xab\x86\x0e\x86r\x86\xd7\x87;\x87\x9f\x88\ -\x04\x88i\x88\xce\x893\x89\x99\x89\xfe\x8ad\x8a\xca\x8b\ -0\x8b\x96\x8b\xfc\x8cc\x8c\xca\x8d1\x8d\x98\x8d\xff\x8e\ -f\x8e\xce\x8f6\x8f\x9e\x90\x06\x90n\x90\xd6\x91?\x91\ -\xa8\x92\x11\x92z\x92\xe3\x93M\x93\xb6\x94 \x94\x8a\x94\ -\xf4\x95_\x95\xc9\x964\x96\x9f\x97\x0a\x97u\x97\xe0\x98\ -L\x98\xb8\x99$\x99\x90\x99\xfc\x9ah\x9a\xd5\x9bB\x9b\ -\xaf\x9c\x1c\x9c\x89\x9c\xf7\x9dd\x9d\xd2\x9e@\x9e\xae\x9f\ -\x1d\x9f\x8b\x9f\xfa\xa0i\xa0\xd8\xa1G\xa1\xb6\xa2&\xa2\ -\x96\xa3\x06\xa3v\xa3\xe6\xa4V\xa4\xc7\xa58\xa5\xa9\xa6\ -\x1a\xa6\x8b\xa6\xfd\xa7n\xa7\xe0\xa8R\xa8\xc4\xa97\xa9\ -\xa9\xaa\x1c\xaa\x8f\xab\x02\xabu\xab\xe9\xac\x5c\xac\xd0\xad\ -D\xad\xb8\xae-\xae\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0u\xb0\ -\xea\xb1`\xb1\xd6\xb2K\xb2\xc2\xb38\xb3\xae\xb4%\xb4\ -\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6y\xb6\xf0\xb7h\xb7\xe0\xb8\ -Y\xb8\xd1\xb9J\xb9\xc2\xba;\xba\xb5\xbb.\xbb\xa7\xbc\ -!\xbc\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\x84\xbe\xff\xbfz\xbf\ -\xf5\xc0p\xc0\xec\xc1g\xc1\xe3\xc2_\xc2\xdb\xc3X\xc3\ -\xd4\xc4Q\xc4\xce\xc5K\xc5\xc8\xc6F\xc6\xc3\xc7A\xc7\ -\xbf\xc8=\xc8\xbc\xc9:\xc9\xb9\xca8\xca\xb7\xcb6\xcb\ -\xb6\xcc5\xcc\xb5\xcd5\xcd\xb5\xce6\xce\xb6\xcf7\xcf\ -\xb8\xd09\xd0\xba\xd1<\xd1\xbe\xd2?\xd2\xc1\xd3D\xd3\ -\xc6\xd4I\xd4\xcb\xd5N\xd5\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\ -\xe0\xd8d\xd8\xe8\xd9l\xd9\xf1\xdav\xda\xfb\xdb\x80\xdc\ -\x05\xdc\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf)\xdf\xaf\xe0\ -6\xe0\xbd\xe1D\xe1\xcc\xe2S\xe2\xdb\xe3c\xe3\xeb\xe4\ -s\xe4\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe82\xe8\ -\xbc\xe9F\xe9\xd0\xea[\xea\xe5\xebp\xeb\xfb\xec\x86\xed\ -\x11\xed\x9c\xee(\xee\xb4\xef@\xef\xcc\xf0X\xf0\xe5\xf1\ -r\xf1\xff\xf2\x8c\xf3\x19\xf3\xa7\xf44\xf4\xc2\xf5P\xf5\ -\xde\xf6m\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf98\xf9\xc7\xfa\ -W\xfa\xe7\xfbw\xfc\x07\xfc\x98\xfd)\xfd\xba\xfeK\xfe\ -\xdc\xffm\xff\xff\ -\x00\x00\x03\xaa\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / Default - Sav\ -ed\x0d\x0a \ -Created wi\ -th Sketch.\x0d\x0a \x0d\x0a \x0d\x0a \ - \x0d\x0a \x0d\ -\x0a\x0d\x0a\ -\x00\x00\x04q\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / Editor only -\ - Default\ -\x0d\x0a Crea\ -ted with Sketch.\ -\x0d\x0a \x0d\x0a \ -\x0d\x0a \ - \x0d\x0a \ - \x0d\x0a\x0d\x0a\ -\ -\x00\x00\x02\x9b\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - Artboard\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a \ - \x0d\x0a \ - <\ -/circle>\x0d\x0a \ - \x0d\x0a \ -\x0d\x0a\x0d\x0a\ -\x00\x00#k\ -\x00\ -\x00\xf0\x80x\x9c\xed\x5c\x07\x5c\x93\xc7\xdf\xbf'\x09\x09\ -[\xb62\xc4\x88\x03\x17#\xcc\x10\x01\xd9CE\x11\x10\ -\xd4\xbaB\xf2\x00\x91,\x930\xc4=\xaaV\xad\x03\xad\ -\x0b\xb7\xd6=\xea^\xad\xd6\x89V\xabu\xb7\xd5\xb6\x8e\ -?\xae*\xe2`\xa3y\xef\x9e$\x10\x14\x15$\x8a\xf6\ -}\xbe\xf9\xdc\x93\xbb\xdf\xdd\xfd\xd6\xddsw\xcf\xb8'\ -&\x06t\x02\x00\xe8\x83\x16\xe0\x15\xa0\xc1\x18\x06T\x07\ -*\xf17\x14\x1e0\xad8\x85\x88\xc3r\x98+FU\ -\xd3aa\x8c\xae\x8eS\xe0\xc1\x5c\xc3'q!f\xa1\ -U\xc6Z\x1dG\xb5m\xb4x6\xd7\x94\x9f\x0d0;\ -\xa0\xa7\x8ac>\x98}u<\x10s\xd0\xe2\xd3AK\ -\x16\x0b\x1d\x81\x13\x8cE`\x1eD\xdc\x0a\xc6\xd3\xb0\xb8\ -\x9a\xf2\x94\x1f\xd1\x91\xb3\x16&GM<\x08\x18\x90\xde\ -\x0c\x00\x7f\xa7\xc9\xd1\x88n\xea\x08\xe3\x1eS\x04\x1a\x1d\ -\xee.\x9c\x22Ge\x8c\xa3\x00\xe8\x1e;w \x8a\x1b\ -\xec\x83\xf4\xe3\xc8/\xd0O\xaa\x9fa\xd58\x00\x9c\xcd\ -4\xff\xc1|I2\xce\x8cM\x93($\xf24\x89\x94\ -\x19\x1a\xca\xf4pg\xf92;$\x09\xc4|I\x96\xbc\ -#@I\x8e\xbb\x07\xc7\xdd\x93\xc9\xf2\xe1x\xf8p\xbc\ -X\xc0\xbf[\xb6\x94\xcbK\xc7\x15\xccda\xb8\x9c'\x13H\x15\x02\x89\x98\x89\ -\xd2\xdcdI\x86\x22\xc0\xc9\xc9\x90\xa9\x05\xb5]\x22i\ -\xb5 \xb1\xdc\x95\xb0\xd1\x95'\x11\xb9es\xa5n,\ -Ww\xb7\xba*\xf1y\xd5u\xa4\x192!\xa1\x1a\x9f\ -\xe7\x86\x0bq\x11.V\xc8a=V\x9d\xf5\xa4\x9a\xb6\ -\xab[du\xf6[\x05Cmcb\xde\xad\xafHT\ -gM\xb9\x22\x9f\xef\xc3\xe6\xe1P\x0b\x1cOv\ -\xf1\xf3\xf3rwa\xb3y\x9e.\xbe\xc9\x1e\xde\xc9\xc9\ -\x1e8\xd7\xdd\xc3\x8bh\xcb\xda\xd5\xdf`\xad\x91\xaef\ -M\x98\xca\xf3\xf4\xc0}\xfd\xd8.)\xfc\x14\x96\x8b\xb7\ -\x9f\x17\xdf\xc5\xcf;\xc5\xcf\x85\xeb\xe5\xc3\xf2e\xf9&\ -\xfbp\xb9\xbe\x1a\xd6Z\xd5\xdf`\xdd[&\x80\xa31\ -W\xd8H\x11u\xb0yCT\x94\x00ynD\x1dm\ -\x1b\x8f\x0f\x7f[\xdb\x12\xe3\xa6\x94+\x93\xe3hT\x08\ -p\xd2\x0c\x0bNoT@u\x88\xd1\x85\xc3\xe5\xa1\x11\ -7\x90G\x9c\xf8\xb0\xc1kQ\xdf^M\xf0f\x03\xd6\ -\xcf\x05oT\x7f\xbb\x8c\xac4\x5c\xfc\xae\x01K\xab\xd4\ -\xdb\x99\xc8%)\x8a,\xae\x0c\x0fN\x85\x9e\xae\xcfh\ -QW\xb57\xfc]\xe7y\xa1\x93\x86\x90s3\x1b\xd7\ -\x0c\x9e)\xbe>\xc98\xcb\xc7\x85\xcd\xe7y\xb8p\xd9\ -^\xb0\x05\x90\x0f}\xbdY\x9e\x9e\xbe\x1e\x5c/\x16\x8b\ -\xdf\xb8f\x80m\xc0\xd2\x1a\xad\x9b\xae\x19j\xd8\xf3\xd2\ -\xb8\xe2T\x9c\x1f\xe8\xa6\xa9\xa8!|I-W\xbf\x11\ -\xb0\x91-\xe7\xf3\xdfj9\x15\xb5\xf6\x98\xa8\x19g_\ -\x1bCUE\xb5\x96\x99\xaa5\xac\x9bz\x11\x0b\xd7\xcf\ -n\xd5\x0b\xe8\xba\x14\xd6=H!\xa4\x10R\x08)\x84\ -\x14B\x0a!\x85\x90BH!\xa4\x10R\x08)\x84\x14\ -B\x0a!\x85\x90BH!\xa4\x10R\x08)\x84\x14B\ -\x0a!\x85\x90BH!\xa4\x10R\x08)\x84\x14B\x0a\ -!\x85\x90BH!\xa4\x10R\x08)\x84\x14B\x0a!\ -\x85\x90BH!\xa4\x10R\x08)\x84\x14B\x0a\xd1\xb1\ -\x10\xc3\x9a-\xa9\xb8\x98\x1f\xe0\x94\xe5\xd4-\xd0\x01\x1b\ -\x00\xa8\xf6\xed\x22\x1d(\x80\xd8`\xcb\x0e\x89\x8e\xa1\xb5\ -#v\xc3\x9a\xfdz\xbeb\xf4\xfa\xfcC\x06z\xd2\xcc\ -\xad\xdb\xf4\x8e\xf5\x22\xf28D^\x01\xca\xd7\xec'\x06\ -FR\x99@\xac\xe8\x9d\xa1\x90f(`\x12m\xec\x05\ -\xb1rE|\xb2D\x22$JD\x8b\x158.\xce\x10\ -i\xe2\xe8?T(C\xe9fD\xddxA6*\x11\ -\x22P\xa0:5\x8f\xf0\x85\ -\xca6\x8a:E\xa9\x95rW\xe9\xa8\xf6\xb5\x0b\x91\xa2\ -\x13\xfe\xb0%(\xfa\xea^A\xb4\x0d%H\x15\xd4u\ -\x1dk\xb7\x0c\xcd\x0e\xc5\xa8\xde\xd5\x96\xab0T\x1dT\ -\xdey\x13\xda4\xed\xb2u\x16\xd0\xa0fp\x03\xe2\x0c\ -\xa1Pe\x10\xa0'K2\xc4|\xf9kc\x0bO\xc1\ -\xd2\xa8\x89NH\xad\x93\x01\xbcv\xd6\x80\x90\x9a\xb3\x8b\ -P#\xae\xe6\xe4Ai\xba\x5c(\xe0\xe1\xf2DaO\ -t\xfac\xb5\xe4\xe8\x11y0b\x01\x03\x83HD\x87\ -i\xf1f\xa4\xca$\x19\xd2Z$\xba\x84\xd8\x97\xab\x19\ -\xd9\xc3\xe3Q%\xd5^]\x986\xe1f($\x91\xb8\ -\x18\x97\xa1}\xb2\x84\xf6#\xa4\x9a\x89\xc9PU\x18Q\ -PN\xb4(\x95\xf9\x09\xec\xa7f\xc8\x84\xb5\xa67\xc2\ -\xf9\xb5)1\xf2\xd4\xdaS \x9d+T$pSk\ -\xd1Ly8\xac\x87g+\xa2\xe5Q\x091=5\x83\ -\xac\xbe\x86\x5c\xab\xb0A\x9aD\x96\x13,\x14\xa4j<\ -\xd5Le|\x94\x86\x8c\xbc\xcb\xc7S\xb8\x19\xc4(k\ -\x90\x89\xcb\x14u\x14O\xd4\x90k\x177JN%\xf6\ -\xd1k9\xd7\x5cU!$\xb2:\x03\xa9\xd1K\x22F\ -\xff\x06\x0a\x89\x14N\xa5r\x5c\xdbq\x86B\xe8\xc87\ -\xa8\xc6\xc9\xc4p\xfd\x06\xddH\x86\x06\xe5\xd7\xc8\xc4\x19\ -\xd4AU\x0f\x06J\xb7\x22PC\xb7\x22\xa2\xa8\x09U\ -g\xa51\x91\xdc\xa9v\xd1PU\xc0`\x17@g\x02\ -m\x01h\x010\xe5\xef\xca\xc7\xc0\x98\xd8=9$4\ -\x06\xa6\x0b\x81)\x91\x02\xfcq\xa8\x9e\xf2:\x98\x04\x8c\ -\xf5\xf5\xf5\x0d\xf4\x8d\x0d\x0c\x8c\xcd\x8d\x0c\x8d\xcc\xad\x9b\ -\x19\x1b7\xb3naiimi\xd9\xc2\xdc\x98\x80\xfa\ -\xafn`&FF&\xa6&f\xa6\xa6fV\xa6\xa6\ -\xa6V\xe8`j\xa5\xaab^\x1f\x06\xca\x9f\x81\xb9>\ -T~(\x15s\x02\x14s\x8cj\x8e)\xff\x82\x86\xd2\ -\x95\xc7\xb1nPK=\x8c\x80\xdaqT\x80Qhz\ -t\x86\xbe\x81\xa1\x11\xf6z&\x06(TM\xa6\x19\xc0\ -h\x18\x95B\xa3\xe81\xe8\xfazTcO\x98iN\ -\xa5\xb5\xb6`\xe9\x05\xf7\xe1Z:\x0d\x1f\xefA\xb7\x9a\ -\xb3r{H\x9b\xb6\xd6qG\x92=\xbdd\x13.\x84\ -2\xda\xe5\xc6\x17\xddz\xca\x93{\xdb\xac\xda1\xb1}\ -\xd8\xdc\x04~\xf8\xd1\xd5\x0a\x9f\xe6\x17\xfb\xde\xc6\x9f\xed\ -\x9ct\xecR\xc6\x9d\xe7\x11\xce\xf3\xd6|\xbd\xeb\xbb\xe3\ -\x97\xff\xf7\xe2\xfb\xdd'\xae\x14\x14'\xa6dN\x9e\xbf\ -v\xcf\xc9\xabwK|#\x93R\xb3\xa6,X\xb77\ -\xff\xda\xbdRs@\xa1@mi\x84N\x0c\xba\x9e7\ -\xa1Bk\x96\x05\x0dj0\xdc\xc9R\xcfc\xfc\x1c+\ -\xa4\xc1\x91\xb8\x0bE\x9em\x93o\xc9&\xe4\x86\xc6[\ -\xf3\xe4^O\xdb\xd1\x91\x02\x8c\xf6\xdeG/B%V\ -7\xe7\x87\xf7\xf5Q\xe0\xb7\xabUx\xbb\x06\xce5*\ -(\xff\x04\xc6TB\xa69\xe8\x06\x8a\x13r\xa3\xdbu\ -l\x9b\x1b\xdd=\xbamn\x5cnt\xdbyk\xd4\x84\ -\xde\xca\xdf\x8a\xfb\x1a\x89\xf0\xbey\x8e\x0a\xc3a6\x89\ -g\xfa\xf5{\xba\x7f\xdd\x8e\xeei\x17\xae\xb4?\xeaj\ -vq\xf4\x9a\xcc\xb2- \xd8\xc2x\xe2\x91~\xe5\xd9\ -n+\x0a%\x07\x0e;\xde\xa98\xbd}\xa7(\xbf\xe4\ -\xa5\xcf\x98\x07\x8f\x8b\xa2{\x9df\x1aph\xcdSn\ -\xffp\xe4\x87Q\xbb\x95`C\x7f\xdf\x82A#\x16\x1c\ -\xec\xf5\xabC\xeb\xb6\xebD\xfb\xf7ms\xef\xd2*\xa0\ -\xdb\xc39\xe3iQ\x97]G\xd8\xcc\xd8\xb4\xde#_\ -\xf0\xd7\xbaI\xf3\x0a\xd7l\xba}7i\xb6W\xc9\x8f\ -\xb2\x7f\x0a\x13-\x08\xcd\x94@y\x81\xd0\xd7\xfb\xb9G\ -^\xf8\xf0\xd5\xcb\x1e\xdb]\xaaJ\xecx\xc5\xd2\xe9\xde\ - \xf9\xb2\x91K\xfd\xa7\xf0\xbd\xe6}\xbfn\xe2`\xeb\ -\x19\x17V^m\xb6\xa6\xd5\x86\xbeO\x8bF\x8f\x92\xf3\ -z\xfa\xb3\xc75\xa3\x85l\xb3\xb9\x90\x9a\x19\xb0\xa1\xa3\ -\xebH\xbb\xb3\xebv\x8f\xf3^\xe5egJ\xd9\xfa\xed\ -\x933\x07z,\xbe\xb6\x0f\xdb:\xee\xe7\xaf;\x17\x89\ -W\xe6\xfd= \xec\xe4\x94\x97\xdft\xa4:\xdee\xfb\ -\xadu`wNm\xd6q\xbf\xf5\xbf\xdf\x7f[\x11Z\ -\xb69\xa1\xe7\xc8\xa51\xbff?\xcax\xde\xf2b\xfc\ -\x8fP\xadu\xca\x8b\x84R\xec\x11\x0a\xce\xf4%\x97^\ -\xf4\xda\x12\x18\xd5Y\xeel\xbb\xc8\xfaq\xe6\xccV\xe1\ -\x7f\xeb%_\x8f\x7f8\x82w\xdc,w\xa9\xe9\xdc\xa1\ -]F\x0f:r#\x90\x11\x9e\xeel\xf3\xe3\xe4c\xbb\ -\xa4\x15\xae\x0e_O\xef;k\xc3\xadG\xee7w=\ -|8o\xdf\x98\xd96]\x0fKs\x97\xfc\xfb\xf4q\ -\xfe\x98k\xdfveK\x13\x96/\x10\xcd3\x1cR8\ -\xb1\xf5_/\x1em\xfd_\xb1q\xd2\xd5~\xf6\x0f\xcf\ -\xcf\x9c\xa8\x04mwZ\xc4\xcd\xd9\xde\xc1\xf7\xc6\xd5Y\ -\xab\xbc\x87?\x0b\xfe\x8a\xed}\xf1\x17l}\xe1\xf25\ -\x85\xcfr\xf3`+v\x1f\xab\xbc\xa4jb\xc3\xaa\x9c\ -')\xd7fM\x9c\xd2\xda\xba\xed\xbc;C\xc6\x8f\x8e\ -\x18\x10\x10\x91\xbd\xb7lw\xe2 \x8b\xe9\x9b\xb6(A\ -\xf4\xb7Y\xc7)\xb9\xcbF\xf7_M\xa9\xec\xb9/G\ -\xf84\xabh\xd85Q\xc6\xce\xfb\xdb\xb7\x94\x01\xab\xdc\ -\xf8Es/\x19\xd9\x1f\x980\x88z\xe3\xd2\xf9\x13\x1b\ -\xbfo~=\xb4\xd4=\x7fzo\xc6\xed\xbd\xdf\xf5\xdc\ -L\x1f\x9c\xb5\xf3\xf7W\xf7\xb6GG\x0f\xdf\xd1\x7f\xf6\ -\xaf\xbf\x9aE\xccdl\x8f\x88]\xbb6\xbe\xdf\x96\x89\ -\xc1e\xe5\x1b\xd6\xacS^~W_\xfbC5\x9e\xb5\ -&\xce\xd8A\x80Xy\xa0\x8f \x05\x03>\xbc\x18J\ -\x86\x0bC&\xbc4J\x83q\x05\x0cr\x22\x86.\x83\ -\x9a\xbf\xa7\x04\x13\x84\xc2\x1f\x13.\xc7\xdc\x01\x0b\xf8\xaa\ -\x07F\xe3\xa8\x9e\x02\xb1\x84\x02\x17\x0b\x22x\xfd\x81\xbe\ -\x81\xd2\xaf\xff\x00&\xe3\x1c\x5c,\x18\xc05\x0a\x9c\x16\ -\xb9<\xb94&>\x22\x81\x98D\xc3C\x99\xe8C)\ -\xa0\x16J\xae\xaa\xa6\xa1K.Q\xb1L&h\x18\xcc\ -yR\x19\x9cd\xb0X\x18\xf7\xe4\xe3r8-c\x93\ -`\x5c\x98\xa5\x90\x22:\x1a\xe3\xad\x92\xd3Q\x9c\x82F\ -w+\x19T\x10\xc6[\xa0x\xaa*\xde\x85(\xa3\x8a\ -\x07\xa18_$\x86\xcb\x01\x0a\xd2Y\xca\x17\xf1Q\x1c\ -}\x11jjf\x06Z&P{\xc2\xf8\xe4L\x01\x9e\ -\x05\xe3\x97a\xbc\xad0C$\x80q\xb4\x02\xb5\x12\xe1\ -\x5c\xb8t!\xe6\x8f\xb6\x0a\x9c\x97\x06\xe3h\x05h,\ -K\x88\x83W24\x7f8\x07\x1b\xa7j\xc5\x93\xb5\xe2\ -\x0a81#\xa3B%\xd2\x11\xc4\x0c\xc6\xec\xc0\xeb\xc8\ -d\xf9\xf9\xb1\x99Qx\x96\x10W(\x5cb\xe1\x05;\ -W\xc6g\x86JDR\xae\x18\xae\xefU6\x13\xb0x\ -\xe3#4Z\x8ezgf=\x81\xdaV\x15{\xde\x87\ -h3\xcc\xe6l\x0d\xad\xaer\x92Up~\x85\xab}\ -\xea\xec\x1aZ\xf2\x22\x00\xf6~\x0d@\x8b?khm\ -W\xc0>\x0a\xdbm\xcfy-{lP\x7f\xd1\xfa\xf8\ -\x94\x00\xe7\xb9\x22\x87V\xe3\xbd\x05\xea\x01-y\xae\x88\ -]\xb5{\x98a\xaa\x15\x0c\x13\xf9\x8d\x07\xd7)\x192\ -&\xbc\xfe\xe2\xe1L\x97\xd7;\xf1\x07W\xac[\x8f.\ -qx\x0a\x8e\xae\xf3pf\x22\xece\xf02\x156\xb7\ -\x98/ \xbe\xa3%\x10\xbf\xad\x11?\xb0\xdakP\xf5\ -k\x08\xcb5\xaf\x80\xd5\x10W`v\xde\x0aP\x1f\x9f\ -\x054K#@\x1d\xb8\x0c\xe6`\xd5\xed\xd6\xd3 \x11\ -\xa03/\xa9\xd5=U\xbf'P\xc7\xe5\x04e\x16:\ -\xc8\x05\xc4\x22\x1a\x84\xc6%0y\x19\xb2LU\x1e\xb1\ -n\xd6\x83\xd7\x88\xcd\x80\x15\xb0\x85\xd7\xb3m@\x07x\ -u\xe7\x01\x07\x99\xae \x08\x84\x83\xee\xa07\xbc\xbe\xed\ -\x0f\x06\xc3+\xda4 \x82W\xb7Y`\x14\x18\x0f&\ -\x83\xe9`6\xf8\x0e,\x06\xcb\xc1\x1a\xb0\x01l\x05;\ -\xc0^\xf0#8\x02N\x823\xe07p\x05\x5c\x077\ -A\x01\xf8\x17\x14\x81\x12P\x09\x172\x0c\xcc\x04\xb3\xc4\ -l\xb1VX;\xac3\xe6\x81\xb1\xb1@,\x1c\xeb\x89\ -\xc5a\xfd\xb1\xa1X*&\xc62\xb0Q\xd8Dl:\ -\x96\x8b-\xc6Vb\x1b\xb0\xed\xd8~\xec\x08v\x1a\xbb\ -\x80\xfd\x81\xdd\xc2\x1e`\xcf\xb0\x0a\x0a\x95bL\xb1\xa2\ -\xb4\xa4\xb4\xa7\xb8Q\xd8\x94`J\x0fJ\x02e\x10%\ -\x952\x9c\x92C\x99D\x99IYHYE\xd9L\xd9\ -C9B9C\xb9B\xb9I\xf9\x97RL\x05T#\ -\xaa\x0d\xb55\xd5\x85\xca\xa6\x86R{S\x07PS\xa8\ -2\xea\x18\xea4\xea|\xea*\xeaV\xea\x01j>\xf5\ -\x12\xf5&\xf5\x11\xb5\x9cF\xa7Y\xd2\x984\x17ZW\ -Z\x14\xad/\x8dG\x1bN\x1bC\x9bA[L[O\ -\xdbC;N\xbbD\xbbE+\xa2\xbd\xd23\xd1s\xd0\ -\xeb\xac\xc7\xd1\x8b\xd6\xeb\xa7\x97\xaa\x97\xa57Yo\xbe\ -\xdeZ\xbd\xddz'\xf4\xae\xe8\x15\xe8\x95\xd0\xe9t\x1b\ -\xba3\xdd\x97\x1eE\xefO\x1fF\x1fI\x9fA_J\ -\xdfF\xff\x99~\x81~\x87^\xcc`0l\x19\x9d\x19\ -\x01\x8c\xde\x0c.C\xc1\x98\xccX\xc4\xd8\xcc8\xcc\xb8\ -\xc8(`\x94\xe9\x1b\xe9\xb7\xd2\xf7\xd0\x8f\xd0\x1f\xa0/\ -\xd6\x9f\xa0?_\x7f\xa3\xfe!\xfd\x8b\xfa\xf7\xf4+\x0d\ -\xcc\x0c\xda\x19p\x0cz\x1b\xf0\x0dF\x18\xcc2Xc\ -p\xc0\xe0\xbcA\x81A\xa5\xa1\xb9\xa1\xb3a\x80a\x82\ -\xe10\xc3\xf1\x86\x0b\x0d\xb7\x1a\x9e0\xbca\xf8\xdc\xc8\ -\xc8\xc8\xc9\xc8\xcf\xa8\x8f\x91\xc0h\x9c\xd1B\xa3\x1f\x8c\ -N\x19\xdd2*7\xb60\xeed\x1cj<\xd08\xc3\ -x\xa6\xf1:\xe3\x9f\x8d\xff0~nbb\xd2\xde$\ -\xc8d\x80\x89\xc2d\xa6\xc9\x06\x93c&\x7f\x9b\x94\x99\ -Z\x9a\xba\x9aF\x9b\xf2M\xc7\x9a\xe6\x99\xee1\xbdh\ -Z\xd8\xcc\xa0Y\xbbf\xc1\xcd\x067\xcbi6\xbf\xd9\ -\xcef\xe7\x9b=230ko\x16j\xc65\x1bc\ -\x96g\xb6\xdf\xec\x9aY\xb1\xb9\xa59\xcb\xbc\xb7\xb9\xc8\ -|\x86\xf9F\xf3\xd3\xe6\xf7-\x18\x16\xed-\xc2-\xf8\ -\x16\x93,V[\x1c\xb3\xb8cI\xb5lc\x19j\xc9\ -\xb3\x9ch\xb9\xc6\xf2\x84e\x81\x15\xdd\xca\xd9*\xdaj\ -\x98\xd5t\xab-V\xe7\xac\x8a\xac-\xac\xbd\xac\x13\xad\ -\xb3\xad\xf3\xac\x7f\xb2\xbeiC\xb5io\x13m#\xb4\ -\x99e\xb3\xc3\xe6\xaaME\xf3\x96\xcd\x83\x9b\xe3\xcd\xbf\ -i\xbe\xb5\xf9\xc5\xe6\xa5-\xec[\x04\xb5\xc0[Lk\ -\xb1\xad\xc5\x95\x16\x15\xb6L\xdbp\xdbt\xdb9\xb6{\ -m\xff\xb2\xa3\xd9u\xb2\xebc\x97e\xb7\xcc\xee\x84\xdd\ -#{+\xfb\xae\xf6<\xfbi\xf6;\xec\xfft\xa08\ -tr\x88s\x18\xe9\xb0\xda\xe1\xacCqK\xc7\x96\x91\ --\xa5-\x17\xb5<\xd6\xf2\x91\xa3\x8dc\x90\xe30\xc7\ -y\x8e\x87\x1c\x1f\xb4\xb2l\x15\xd8J\xd0j^\xab\xc3\ -\xad\x1e2\xad\x99\xc1L!s!\xf38\xb3\xa8\xb5C\ -\xeb\xa8\xd6\x19\xadW\xb6>\xd7\xba\xd2\xc9\xd9\xa9\xaf\xd3\ -\x04\xa7mN\x7f\xb51l\xc3n\x93\xd2f^\x9b\xa3\ -m\x8a\xda\xb6j\x1b\xd3vT\xdbMm\xfflg\xd0\ -\x8e\xdd.\xad\xdd\x82v\xf9\xedJ\xdb;\xb7Oj?\ -\xa5\xfd\xde\xf6\xf7\x9d[8G;\xe78or\xbe\xd1\ -\xc1\xa4C\xb7\x0e\xc3;\xac\xeap\xb9#\xbd#\xbbc\ -z\xc7\xa5\x1d\x7f\xebD\xe9\xe4\xdd)\xadS^\xa7\xf3\ -\x9d)\x9d}:\x0b:/\xed|\xa1\x8b^\x17\xbf.\ -\xe2.\xab\xba\x5cs1v\x09v\xc9t\xd9\xe4r\xcb\ -\xd5\xc6\xb5\xa7\xeb\x04\xd7\xbd\xae\x85nm\xdd\x06\xb8\xcd\ -q\xcbw{\xe5\xee\xed.t_\xe3~\x9de\xc1\xea\ -\xce\x9a\xc0:\xc0z\xe6\xd1\xc9\x83\xe7\x91\xe7q\xd9\xd3\ -\xc43\xc2s\xac\xe7>\xcf\xa7^\x9d\xbdp\xafe^\ -\xbf{[z\xc7xO\xf1>\xea\xfd\xd2\xc7\xd7G\xe6\ -\xb3\xd5\xe7\x81o[\xdf\xa1\xbeK|\xaf\xb1\xad\xd8\xb1\ -\xec\x19\xecS~z~!~c\xfd~\xf4+\xe7\xf8\ -p\x14\x9c\x1d\x9c']]\xba\xa6w\xdd\xd8\xf5\xbe\xbf\ -\xb3?\xee\xbf\xc6\xffN\x80S\x007`e\xc0\xcd@\ -f\xe0\xd0\xc0\x15\x817\xbb\xb5\xee\xc6\xed\xb6\xaa\xdb\xed\ -\xa06A\xfc\xa0\xb5A\xf7\x82;\x06\x0f\x0b\xde\x1c\x5c\ -\x18\xe2\x1e\x22\x0b\xd9\x1dR\x1a\xca\x09\x1d\x1d\xfas\x18\ -5,2lZ\xd8\xb9p\x8b\xf0\xbe\xe1\x8b\xc3\xff\x8e\ -p\x8aH\x8d\xd8\x14Q\x14\xe9\x1d92\xf2\xe7(\xbd\ -\xa8\x1eQs\xa2\xaeE\xb7\x8c\xe6Eo\x88.\xea\xee\ -\xdb}t\xf7\xe3=\x8c{\xc4\xf7X\xdc\xe3v\xcfN\ -=e=\x0f\xc4Pb\xba\xc7\xcc\x8d\xb9\xd1\xab]/\ -q\xaf\xbd\xbdA\xef\xe8\xdes{\xff\x15\xeb\x1c;<\ -\xf6`\x1fz\x9f\xd8>y}\xee\xc6\xb1\xe2F\xc5\xe5\ -\xc7[\xc6\x0f\x89\xdf\x18_\x92\x10\x920+\xe1z\xdf\ -\x0e}3\xfa\x1eMl\x9680qCbiRX\ -Rn\xd2\xcd~n\xfdF\xf7;\xd3\xdf\xae\xbf\xa0\xff\ -\xbe\x01\x8c\x01\x89\x03\xd6\x0e(\xfe*\xfc\xab\xef\xbe*\ -\x18\xe8=p\xf2\xc0\xab\x83\x9c\x07e\x0f:=\xd8n\ -\xb0p\xf0OC\x9a\x0d\xe1\x0e\xd99Toh\xd2\xd0\ -\x8dC\xab\xb8\xbd\xb9\xab\xb8\xc5\xc9\xd1\xc9K\x92\x8bx\ -\xa1\xbc\x05\xbc\x7f\xf9A\xfcy\xfc\x07x\x00\x9e\x8b\xdf\ -K\x09H\xc9M\xb9\x9f\x1a\x90:7\xf5AZ\xb7\xb4\ -\xf9i\x8f\x04\xa1\x82\xc5\x82\xa7\xc3\xa2\x86-\x1fV\x9a\ -\xde;}]\xbaR\x98$\xdc&\xd2\x17\x0d\x15\xed\x17\ -[\x88\xd3\xc5\xc7%\x8e\x92l\xc9\x05ig\xe9d\xe9\ -\xcd\xe1\x9c\xe1\xdf\x0d/\x92\xf5\x90\xad\x95c\xf2A\xf2\ -}\x0a+\xb8\x98:\x9b\xd1!\xe3\xeb\x8c[\x99\x81\x99\ -y\x99eY\x89Y;\xb3\xcd\xb3\xc5\xd9gGt\x1a\ -\xf1\xcd\x88{9\x119\xdf\x8f\xa4\x8d\xe4\x8d<:\xaa\ -\xf5\xa8\xf1\xa3n\x8d\x0e\x1e\xbdr\x0c6&y\xcc\xd1\ -\xb1m\xc6N\x1a[0.r\xdc\xfa\xf1\x86\xe3\xd3\xc7\ -\xff:\xc1}B\xee\x84\x17\x13\x93&\x1e\x98\xd4r\xd2\ -\xb8Iw\xbe\x8e\xfcz\xd3d\xd3\xc9\xb2\xc9\xd7\xa6t\ -\x9d\xb2|*m\xaa`\xea\xb9o<\xbfY\xf4\xcd\xab\ -i\xfci\xbfLw\x9f>\x7fz\xd5\x0c\xde\x8c_\xbe\ -e}\xbb\xf0[\xe5\xcc\x94\x99\xe7f\xf9\xccZ6\x9b\ ->[<\xfb\xea\x9cns\xd6\xe7\x9a\xe7\xe6\xe4\xde\x99\ -\x1b3w\xcf<\xe6\xbci\xf3^|7\xe4\xbb\xd3\xf3\ -\xbd\xe6/_`\xb8 c\xc1\xcd\x85=\x17\xee[\xd4\ -v\xd1\xecEU\x8b\xd3\x16_\xc9\x0b\xc9\xdb\xb6\xc4a\ -\xc97KJ\x97\xf2\x97^\x5c\x16\xb4l\xeb\xf2\x96\xcb\ -\xa7/\xafX!X\xf1\xfb\xca\xc8\x95{V\xb5_5\ -\x7f5}u\xe6\xea\xbbk\x12\xd7\xe4\x7f\xcf\xfe~\xc3\ -Z\xbb\xb5\xd3\xd7\xbe\x5c'^ws}\xdc\xfa\xe3\x1b\ -|7l\xd8\xe8\xb0q\xd6&\xca\xa6\x8cM\x0f6\x0f\ -\xdc\xfc\xdb\x96\xb0-\xfb\xb6\xbal]\xb9\xcdf\xdb\xf4\ -\x1f\xc0\x0f\x19?<\xdc>t\xfb\xd5\x1d=v\x1c\xdd\ -\xc9\xde\xb9uW\xbb]Kv[\xee\x9e\xb6\x07\xdb3\ -bO\xd1\xde\xb4\xbd7\xf7\xf5\xdfwa\x7f\xf7\xfdG\ -\x0ft=\xb0\xfb\xa0\xeb\xc1u?\xb6\xfe1\xef'\xeb\ -\x9ff\x1d2<4\xe9\x90\xf2p\xce\xe1\xe2\x9f\xa5?\ -?:\x92z\xe4\xce\xd1!G\xaf\x1f\xebw\xec\xf2\xf1\ ->\xc7\xcf\x9d\xe8q\xe2\xd4\xc9\x88\x93\xc7\xf2\x83\xf3\x0f\ -\x9f\x0a8\xf5\xe3i\xce\xe9\xfd\xbf\xb0\x7f\xd9{\xc6\xe7\ -\xcc\x9e\xb3\xdegw\xff\xea\xfd\xeb\xees>\xe7\xf6\x9c\ -\xf7=\xbf\xef7\xbf\xdf\x0e\x5c\xf0\xbfp\xe8b\xb7\x8b\ -G.\x85]:y9\xfa\xf2\x99+\xbd\xae\x5c\xb8\xda\ -\xf7\xea\xef\xd7\x06^\xbb\xf9;\xff\xf7\xfb\x7f\x08\xffx\ -\xfag\xe6\x9f\x95\xd7\xc7\xdd\xd0\xbb1\xed/\xb3\xbf\xe6\ -\xff\xed\xf0\xf7\xaa\x7f:\xfe\xb3\xed\xa6\xcf\xcd\x9fn\x85\ -\xdd:{;\xfe\xf6\xf5;\xbc;\xff\xfeO\xfe\xbf\xaa\ -\x82IwM\xee\xce\xbf\xd7\xea\xde\x86\xfb\x1e\xf7\x7f|\ -\x10\xf1\xe0\xb7\x87_=,\xf8W\xfao\xe5\xa3\xc9\x8f\ -\xcd\x1f/)\xecP\xb8\xebI\xd0\x93\xb3E\xfd\x8a\x0a\ -\x9e\xca\x9e*\x9f\xcdxn\xfb|\xdd\x0b\xaf\x17G\x8b\ -c\x8b\xff.\x11\x95T\x96N+\xb3-[_\xce.\ -\xcf\xafH\xaa\xb8W\x99U\xc5\xa8Z\xf8\xb2\xe3\xcb\x03\ -\xafz\xbc\xba\xa1\x14U\xdf\x8f&A\x82\x04\x09\x12$\ -H\x90 A\x82\x04\x09\x12$H\x90 A\x82\x04\x09\ -\x12$H\x90 A\x82\x84\x1a\xb1\xb1\xb1\xfc\x9c\x9c\x9c\ -\x85zzz\xf4\xf7\x97&\xa1K\xb8\xba\xba\xfa\xe5\xe7\ -\xe7\x97\x9f={V\xb9l\xd9\xb2\x13VVV\xb6M\ -\xad\xd3\xff\x17\xd8\xdb\xdb;\x1d>|\xf8\x09\xf2\xbd&\ -\xec\xdd\xbb\xb7\x00\xb5IS\xeb\xf6_\x07\x1ak\x0e\x1e\ -<\xf8P\xdb\xf7\x9ap\xf2\xe4\xc9\xb2\xb8\xb8\xb8\x94\xa6\ -\xd6\xf1\xbf\x8cE\x8b\x16\x1d\xae\xcb\xf7\xda\x01\xce\x09\x8b\ -\xe8t:\xa3\xb1\xb2\xac\xad\xad\xed\xc2\xc2\xc2\xfa\x0a\x85\ -\xc2)s\xe7\xce\xdd\xb7q\xe3\xc6+\xfb\xf6\xed\xbb\x0b\ -\xdb\xb9\x14\x05\x14\xdf\xb4i\xd3\xd5y\xf3\xe6\xed\x17\x89\ -DS\xc3\xc3\xc3\x13Q\x1d]\xd8\xf99\x22))I\ -\xf4>\xdfk\x02\x9a\x13>\xc4\x17666\xf6C\x86\ -\x0c\xc9Z\xbe|y\xfe\x993g^\xd5W\x9e&\xa0\ -:+W\xae<=t\xe8\xd0\xec\xe6\xcd\x9b\xb7\xfc\x18\ -~h*\x8c\x1c9rqC|\xa1\x9e\x138\xf5\xe1\ -\xed\xe2\xe2\xc2\x9e\x16X,V\xc0\x81\x03\x07\xee7\xc4\xfe\xd7\xe7\ -\x044\x8f\xa31\xe2\xd8\xb1c/>\xb6\xef5\xe1\xf8\ -\xf1\xe3\xc5\xc9\xc9\xc99\xba\x98\x9b\x9a\x1a\xa8\xdf\xa2q\ -\xb6!\xf6k\xe6\x046\x9b\x1d\xb1u\xeb\xd6?>\x95\ -\xdf_\x0f\xdb\xb6m\xbb\xce\xe1p\xa2\x9a\xda\x87\x8d\x05\ -\xecG\xfac\xc6\x8cY\xd6\x10\xdb\x8f\x1e=\xfa\xbc\xa9\ -\xfc\xfez@k&\x0aDS\xfb\xb1\xb1h\xe8\x9c\xf0\ -9\x85\xdc\xdc\xdc\xbd&&&fM\xed\xc3\xc6\xe2C\ -\xe6\x84\xcf%\xa0\xf1\xc8\xc9\xc9\xa9sS\xfb\xb0\xb1\xf8\ -\x909\xe1s\x09h\x5c\xf4\xf5\xf5\x0doj\x1f6\x16\ -\xea9aiS\xfb\xf3C\x02\xba\xa6\xfe/\xb4\x01B\ -ff\xe6\x5c]\xf9\x05]\xc7)\x14\x8a9h\xcd\x02\ -\xc7\x89N\x86\x86\x86&0\x18;::\xb6\xdf\xb3g\ -\xcf\x1d]\xb7\x01Z\x9f5\xb5\xff\x1a\x03??\xbfH\ -dGc}\xb1s\xe7\xce\x9b!!!\xf1\xefZ\xa3\ -\xa0\xb1\xfbc\x9c\x07\xc8\x86O\xe93]\xa1S\xa7N\ -\xde\xe8:\xa7\xb1>@\xcfu\x18\x0c\x86\xc1\xfb\xe4}\ -\x0c\xff\xa3\x80l\x80\xb6x}\x0a\x9f\xe9\x0a\xe8\xfa~\ -\xff\xfe\xfd\xf7ta?\xba\xb7Y\x9f\xfb6\x1f\xcb\xff\ -( [\xbe\x94{xFFF\xa6\x1b6l\xb8\xa4\ -K\xfb\xd1\xf3\xb5\xb8\xb8\xb8\xd4w\xc9\xfd\x98\xfeGa\ -\xdd\xbau\x17\xd0|\xf3\xa9\xfc\xf8!@\xdfk\x9a=\ -{\xf6\xae\x8f\xe5\x03t\xdf\xf5m\xf7l>\xb6\xffQ\ -\x989s\xe6v\xadoR}v\xe0\xf1x\xa3>\xb6\ -\x0f\x96-[v\x12=\x1bx]\xf6\xa7\xf0?\x0a\xe8\ -\x99DS\xf8\xf6}pww\xf7\xff\xe5\x97_\xaa>\ -\x85\x0f\xd0\x9c\xe0\xe6\xe6\xd6U[\xfe\xa7\xf2?z\x96\ -\xd0\xa5K\x17\xdf\xa6\xf2s]@c>Z#6\xd6\ -\xb6\x86<\xe7BsB|||\xf5\x17\x7f>\x95\xff\ -Q\xd8\xbau\xeb\x9f\xfa\xfa\xfa\x86M\xe9sm\x0c\x1f\ ->\xfc[]\xd85q\xe2\xc45\x0d]7\x8d\x1a5\ -*\x0f\xcd\x09\x9f\xd2\xff(\xa4\xa6\xa6\x8eoj\xbf#\ -\xa0{\x86\xba\xba\x97\xec\xe9\xe9\x19\x84\xc6\xf6\x15+V\ -\x9cjH=\xf4\x8cx\xc7\x8e\x1d\xff|J\xff\x1f:\ -t\xa8\x10]{7\xb5\xff\x07\x0f\x1e\x9c\xa9\x0b{N\ -\x9c8QB\xa3\xd1\x88\x0f\x96\xa3\xfe\xd7\x86\xaelY\ -\xbat\xe9\xf1\xba\xf8\xa3u\xce\x87\xce\x09o\xd3y\xe1\ -\xc2\x85\x87t\xa1\xf3\xe6\xcd\x9b\xaf}<\xcf\xd6\x0fh\ -\xdc\xd0\x85-\xb3f\xcd\xda\xf96\x19\x1f:'\xd4u\ -\x9d\x800c\xc6\x8cm\xba\xd0\x19\xd9\xfe\xf1<[?\ -\xe8j\xdeC\xd7U\xef\x92\x83\xfa3\xea\xd7\x0d\xe1Y\ -\xd7u\x02B^^\xdeQ]\xe8\x0cm\xff\xfb\xe3y\ -\xb6~\x98?\x7f\xfeA]\xd8\xb2}\xfb\xf6\xbf\xea#\ -\x0f\xad\xf95\xef[\xd7'\xa09\x01\xcd#\xda\x058\x1cN\xb4.\xae\x0b\xb2\xb2\xb2\xbe\xfb\x90\xf7\ -\x0e\xd039\xf4\xeePc\xe5#\x1b\xbe\xd4=\x02\xdd\ -\xbbw\x1f\xa8\x8b6@\xeb\x9a\x9e={\x0e\xd1<\x1f\ -x\x17\xd0\xfa5&&f\xa8.\xde\xc1\x86\xba\xbfD\ -6|\x0a_},DFF\xf6\xd7\xd5\xf51z\xe6\ -\x84\xae{\xd0\xfeR\xb4O\x0f\xbdg\x8d\x02\x8a#\x1a\ -Z\x7f\xbd\xbe\x1f\xbc\xb1}\xbf\xb1\xf3\xd0\xe7\x80\xd0\xd0\ -\xd0\x84\xa6x>\xa5\xab\x80\xde\xe3\xfe\xdc\xd7=\xefC\ -PPP\xac.\xde\xc5m\xaa\x80\xf63|)\xeb\x9f\ -\xb7\xa1c\xc7\x8e\x9e\xe8\xfa\xaa\xa9}\xf9\xa1\x01\xcd)\ -\xe8=\xa7\xa6\xf6cc`fff\xb5`\xc1\x82\x9f\ -\x9a\xda\x97\x1f\x1a\xd0\xf3\x84/}N\xa0P(Tt\ -\xaf\xb3\xa9}\xa9\x09h\xbf}C\xaf\x19\xff\x0bs\x02\ -\xbaF\xf8\xd4\xefMi\x07\xf4\xce\x85\xbf\xbf\x7f\x0f\xa4\ -\x0b\xba\x97\x8f\xf6%7\xa4\xbezNphj?6\ -\x06M\xb1\xff\x1d\xc9\xaak\xff;J\xa3\xfd\xf9\x0d\xe1\ -\x85\xe6\x04\xb4\xe7\xb3\xa9\xfc\xa7+\xa0\xb5\xc5\xd7_\x7f\ -\xbd\xf6S\x8c5\xef\xeb\xb3\xe8;\x15\xe8{\x15\xf5\xe5\ -\x89\xe6\x04\xb4\xf7\xf9S\xf9\xeac\x02\xad\x91\xc6\x8f\x1f\ -\xbf\xb2!\xf6\xbf/\xa0\xfbp\x13&LX\xd5\x90}\ -D\xe8\xdeQC\xe7\x84\xcf\xf9\xdetCannn\ -\x8d\xbe3\x84\xd6J\x1fr\xed\x86\xea\xa0\xf7\xac\xfa\xf5\ -\xeb'\xb6\xb0\xb0\xb0\xf9\x10\x1d\x1a:' Y\xba\xf6\ -\xc3\xe7\x00SSSs4W\xa31\x1b}\xa3\x06=\ -w\xdf\xb2e\xcb\xefh\xec\x85\xe1\x01\x8a\xa3g\xeb\xdf\ -|\xf3\xcd&T\xa6k\xd7\xae\xddQ\x1d]\xc8F\xf3\ -S}\xee\xe3}N\xcf\x83\xff\x8b\xe8\xd3\xa7\x0f\xfe\xb6\ -1\x11\xb5\xfd\x97\xbe\x16\xfd\x12\x80\xbe\xeb\xf8\xfa\x9c\x80\ -\xdeM\xfd\xd2\xd7\xa0_\x12\xd0\xf7M5s\x02\x9a\xd7\ -\xffK\xdf4\xfbR\xa0\x99\x13\xd0w\x7f\x9bZ\x17\x12\ -$H\x90 A\x82\x04\x09\x12$H\x90 A\x82\x04\ -\x09\x12$H\x90 A\x82\x04\x09\x12$H\x90\xa8\x06\ -u\x05\x06\xa8\xf0\x1f\x83?\xb0\x82\x02hD\x1c\x80\xa1\ -+\xa85qU\xd1`\xbe$\x19g\xc6\xa6I\x14\x12\ -y\x9aD\xca\x0c\x93\xf02D\xb8X\xc1\x0c\xe3*\xb8\ -\xcc\x10\xa1\x84\x97\x0e\xd8!\xd111\x092\xe2=$\ -\x14\xef\xc9\x1d!\x03\xc0\xc0\x8f\xe0c\x01\x03\xdaI\x17\ -\x03C\x02\xa0)\x95\x00\xd0J\x09\xd6\x85D~!@\ -\xdf7/D\xf5\xc4\x12\x99H\x09\xf4\x91\x02\x9a\xf7\xed\ -;\x00\x80j\xbc?0\xe2\xd3\xb8R\x9c\xc9B|\x84\ -\x19b\xf4\xed\x19+\x18\x18 \x1e\xa4\x01.\x90\x02\x1c\ -0\x01K\xa5\x9fP,G{,irX\x85H\x8f\ -\x10\xa0g\xba\xc8r[\x94\xe6\x09\x93\x85(\x8d\xa9\xed\ -\x11\x88S\xb2\xd5\xf9D:]\x9c.\xd1N\x0b\xe5\xd2\ -\x94Zi\x9e\x10\xf1\xd7\xd7\xb8\x1b\xd1\xe4i\x22$\x03\ -\xed\xe9\xc3\x08\x19\x19r\x85:\x1b\xbd\x9fg\xa6\xf6:\ -\xac%\xc2\x15\x5c>t\xae\x9ab \xe4\x8e\xc0e\x09\ -\x02\x11\xce\x97d$\x07_m\x17Y\x94\xc4\xdaK\xf0\ -L\xc9\x96I\xd5uk\x03\x83\xb2\x0d\x8110\x02\xf6\ -\xa09\xb0\x86\xbf\xe6\xc0\x12\x963V\xffl\xe0\xcfZ\ -\xfd\xb3\x84\xa1\x05Q\xc2\x068T\xff\xec\x81\x1dA\xb1\ -\x84^D\xa5P\x8d\x16\xc0\xb6\x9a\x839\xa4\xb7Ps\ -\xb6\x87r\x8c\xa1<\xfd\x97\x80\xc2_H?\x02^\x01\ -\x9a_\xb9\xf2\x84\xedQ\xa0\x04\x98\xd3\x93WJ\xac\xc0\ -\xef\x18lf\xfa\xc3*%V\x96r\x1c\xeaw\xb8\x5c\ -\x89-b<\x05&v}\xa7\xec\xbbr\xb7\xb4\xf4\xee\ -\xd5\xfdS\x13\xed\xfe\x07\x80\xa8T\x89\x9d\xb0+\x06T\ -\xfb\xac\xfcW\xc5J\xea\xab\xd3\xd9-\xef\x01\xb0\xb8\x04\ -r\xe1\x94\x01\x0a{}\xe5\x13%\xa5r#\xe7\x01\xe4\ -\x98^Q\x8a8V\x02\xcca\xe3\x03%\xb6\xd9\xf1_\ -$2\xe0~\x89\x92\xbe\x88\x01\x00=\xfb\xc5=%\xa5\ -8\x87\xf1\x18\xea\x849\x9c.QRO\xd8E\xfcq\ -G\x89]\x8f*\x04/\x01\xa6\xbf\xacD\x09\x9e\xff\xa3\ -\xc4\xa6R\x8a\x00\xe4\x92^qY\x89\xed5{\x0a*\ -\x10\x17\x18\xbf\xde\xf9\x19(GUa\xfcy\xf8sP\ -\x06\xeb,\x85\xf1\xd2\xf0\x17\xa0\x04\x80\xb9O\x94\x8c\x82\ -9Q\x9dL\x8c\xdb\xdf)\x84\xd4\x88bP\x0a\xb0\xc8\ -\xd2\xa7J\xca\xcdxJ%\x00\xd7\x1fCjd\x09\xaa\ -\xe7]\xfcT\x89-4(\x87\xc4GJ\xac\xd8\xab\x14\ -1v\xbcW\xa4\xc4\xeer\x10\xf1_%v\xafe\x19\ -\x92lz\x09\xf2*O\xad\x80\xc4\x87J\xec\x82I9\ -R\x0d\xdb\x05\x0b,fTA\x22\xb4t;V\x01\x89\ -`\x14\x8c\x9e\xb4\x7f\x09i\xf7\x95 \xab\x02T\xc13\ -\xa7\xea>\xe4\xd8\xf5\x15A\xc3*}+\x91\x9d\xa67\ -\x9f*\xc1\xabR%\xad<\x0d\xd2\xef)\xb1?\x0d\xab\ - \x1d|\x0b\xa5\xaf\xb9W\xa2\xa4\xe41\xae\xdfU\x82\ -\xf1U\xc8Of\xcf\x8b\x94\x94 \xfbS\xd0\xe3\xf9\xff\ -\xdcUb\x85\xc6/!\x19d\x16)i%z\x80\xb1\ -\x04\xba\xac\xb2@\x09\x86\x13\xd4\xddEJp\x03J\x10\ -\xa0\x96\xa8\x18[\xee\x0c\xfe\x80\x94\x1dD\x1e\x8a\x1d\x87\ -*u\x85\x12\xb0<\x06\xd4\xf7\x10\xa4\x5c#\xf2J`\ -l'4K%\xc6\x1e\x9a\xb5\x0dRJ\x88\xbc\x7f`\ -\xec$\xf4\x03#\xaf\x04\x99\x02\xf5<\x0a)\x7f\x13y\ -\x07a\xec/\xe8\xcd\xb4r$O\xa0\x96\xb2\x9f\xc8\x9b\ -\x0a\xad)\xa5\xc3\xcc\xaewaK/a\xe8\x15\xc3\xac\ -I(\x0bkU\x05\xa3!\xb0m\xec\xf3!\xcfS\xf1\ -\xb0d\xb9\xddK\xe4\x82\x0d0cz\x89J\x18x\x01\ -\x13\xcb\x90g0\xa7g\xb0\xb5n\xd3\x8b\x91$\xe8\xaf\ -'PC\xa8\xe3`\x98\x9f\xf6\x02\x09\x80\xfeN\xaaD\ -M\xb0\x1c\x96\xbbe\x04i\xf6'\x1f*\xc1b\xd4,\ -\x98\xc19\xe8\xee5\xcf!\xd3\xc5\xb0\xa9\xcf2*P\ -\xab\xb6,\x80\xc4a\xcf\x00\x96Z\xfeD\x89\xfd\xcf\xbe\ -\x1c\xb5\xbf\xfb\xf3gJ\xec\x95\x0cR9O!\xa3g\ -ne\xa8\xabDW\xc1\xf8w&P\xb8\xe9B\x18\xab\ -\x8a*E\xddj \xa4R\xee\x0e\xd1+\x07\x14\xfa\xd0\ -\xfb\x90\xfer`\x09\xec\x84X\x7fh\x9bA\xe1\xb2D\ -\xb6\x83\x03;q\xf9\x13\xc8\xbcjX\x09\x80\x95\x13*\ -/)\xb1\xa5\x8c2\x00\xb5\x8b-\x85\xf1\xd3P(\xd4\ -\xca\xf3\x16\x8c\xdf\xf7\xaf\x00P\xac\xd5O0^1\xac\ -\x12<\x05\x18u:<\x13\xd6\x17\x94\xa0J/\xc1\x13\ -\xa8\xc7\xf5;J\xda\x8d\x1e\xc0\xee\x04\xa4\x9dvx\x85\ -\x06k\xd59\xf5\x22\x87\x01\xbd\xcaX\x04\xfd|?\x00\ -\x80G\xd0\xfc\xb5\xb0/\xaew\x80\x86\xa6\x94\x95*)\ -\x15\xe9\xe0!\xa0x\xae,\x83'k\xf9*\xd8\xd91\ -\x0ed\x0c\x16\xdf\x07Tk\xd1O\x95\xf0\xc4\xae<$\ -\xb6\x81\x8a\xd9\x9d(U\x02q\x0101\x8f\xce\xd9\x98\ -\xff\xfb\xfd\x07\xbf\x9f\xda\x94\xd3\xdd\xbc\x08`\xf4\x85p\ -\x90X\x06\xe0p\x81\x97U))\xa7\x18\xe0\x18\xc0\xfc\ -\x0a^)\xa9\xf7\x1c`\x97\x004\xdb\x13\xcar\xce+\ -p\x04*\xb5\x90\xff\x12\x0d{\x94\xa6\xf8\x1d8\xdb\x14\ -?\xd2\xda\xff\xb0\xb5\xeauT\x8c\x1c\xedo0U\xad\ -q\x08x\x8cS\xe7\xc5r\x15\x0a\xcd\xda\x22BU\xce\ -X\xbb\x1c:\xfc\x1f\x02\xea)+\ -\x00\x00\x80\x08\ -I\ -I*\x00\x08\x00\x00\x00\x18\x00\xfe\x00\x04\x00\x01\x00\x00\ -\x00\x00\x00\x00\x00\x00\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x01\x01\x03\x00\x01\x00\x00\x00`\x00\x00\x00\x02\x01\x03\ -\x00\x04\x00\x00\x00.\x01\x00\x00\x03\x01\x03\x00\x01\x00\x00\ -\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ -\x00\x11\x01\x04\x00\x01\x00\x00\x00NS\x00\x00\x12\x01\x03\ -\x00\x01\x00\x00\x00\x01\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\ -\x00\x04\x00\x00\x00\x16\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x17\x01\x04\x00\x01\x00\x00\x000\x12\x00\x00\x1a\x01\x05\ -\x00\x01\x00\x00\x006\x01\x00\x00\x1b\x01\x05\x00\x01\x00\x00\ -\x00>\x01\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\ -\x00(\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\ -\x00\x22\x00\x00\x00F\x01\x00\x002\x01\x02\x00\x14\x00\x00\ -\x00h\x01\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ -\x00R\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00\xbc\x02\x01\ -\x00\x1f8\x00\x00|\x01\x00\x00I\x86\x01\x00j\x0d\x00\ -\x00\x9c9\x00\x00i\x87\x04\x00\x01\x00\x00\x00\x80e\x00\ -\x00s\x87\x07\x00H\x0c\x00\x00\x06G\x00\x00\x5c\x93\x07\ -\x00X\x1a\x00\x00\xace\x00\x00\x00\x00\x00\x00\x08\x00\x08\ -\x00\x08\x00\x08\x00\x00\xf9\x15\x00\x10'\x00\x00\x00\xf9\x15\ -\x00\x10'\x00\x00Adobe Photo\ -shop CC 2017 (Wi\ -ndows)\x002017:04:0\ -4 11:01:25\x00\ -\x0a\x0a \ - \x0a \x0a \ - paint.net \ -4.0.9\x0a \ - 2017-03-01T11:2\ -0:20-08:00\x0a \ - 2017-04-04T\ -11:01:25-07:00\x0a\ - 2017-\ -04-04T11:01:25-0\ -7:00\x0a \ - imag\ -e/tiff\x0a 3\x0a \ - sRGB IEC\ -61966-2.1\ -\x0a xmp.\ -iid:7284f562-66e\ -c-6d4b-bfaf-a292\ -c87d086e\x0a \ - adobe:doc\ -id:photoshop:aca\ -ee4ff-1960-11e7-\ -bae7-e6e7a5cd281\ -4\x0a xmp.did:\ -15df0628-f397-b6\ -41-8e6b-37248a21\ -c43f\x0a\ - \x0a \ - \x0a \ - \x0a\ - \ - \ -created\x0a \ - xmp.i\ -id:15df0628-f397\ --b641-8e6b-37248\ -a21c43f\x0a \ - 2017-03\ --01T11:20:20-08:\ -00\x0a\ - \ - Adobe Pho\ -toshop CC 2017 (\ -Windows)\x0a \ - \x0a \ - \x0a \ - saved\x0a \ - \ -xmp.iid:7284f5\ -62-66ec-6d4b-bfa\ -f-a292c87d086e\x0a \ - \ -2017-04-04T11:01\ -:25-07:00\x0a \ - Ad\ -obe Photoshop CC\ - 2017 (Windows)<\ -/stEvt:softwareA\ -gent>\x0a \ - /\x0a \ - \x0a \x0a \ - \x0a \x0a <\ -/rdf:RDF>\x0a\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \x0a\x008BIM\x04\ -%\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x008BIM\x04:\x00\x00\x00\ -\x00\x00\xe5\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x0bprintOutput\x00\x00\x00\x05\ -\x00\x00\x00\x00PstSbool\x01\x00\x00\x00\ -\x00Inteenum\x00\x00\x00\x00Int\ -e\x00\x00\x00\x00Clrm\x00\x00\x00\x0fpri\ -ntSixteenBitbool\ -\x00\x00\x00\x00\x0bprinterName\ -TEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0fpr\ -intProofSetupObj\ -c\x00\x00\x00\x0c\x00P\x00r\x00o\x00o\x00f\x00\ - \x00S\x00e\x00t\x00u\x00p\x00\x00\x00\x00\x00\ -\x0aproofSetup\x00\x00\x00\x01\x00\ -\x00\x00\x00Bltnenum\x00\x00\x00\x0cb\ -uiltinProof\x00\x00\x00\x09p\ -roofCMYK\x008BIM\x04;\x00\ -\x00\x00\x00\x02-\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\ -\x00\x00\x12printOutputOp\ -tions\x00\x00\x00\x17\x00\x00\x00\x00Cpt\ -nbool\x00\x00\x00\x00\x00Clbrbo\ -ol\x00\x00\x00\x00\x00RgsMbool\x00\ -\x00\x00\x00\x00CrnCbool\x00\x00\x00\x00\ -\x00CntCbool\x00\x00\x00\x00\x00Lb\ -lsbool\x00\x00\x00\x00\x00Ngtvb\ -ool\x00\x00\x00\x00\x00EmlDbool\ -\x00\x00\x00\x00\x00Intrbool\x00\x00\x00\ -\x00\x00BckgObjc\x00\x00\x00\x01\x00\x00\ -\x00\x00\x00\x00RGBC\x00\x00\x00\x03\x00\x00\x00\x00\ -Rd doub@o\xe0\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00Grn doub@o\xe0\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00Bl doub\ -@o\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00BrdT\ -UntF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00Bld UntF#Rlt\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Rslt\ -UntF#Pxl@b\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x0avectorDatabo\ -ol\x01\x00\x00\x00\x00PgPsenum\x00\ -\x00\x00\x00PgPs\x00\x00\x00\x00PgPC\x00\ -\x00\x00\x00LeftUntF#Rlt\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Top U\ -ntF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00Scl UntF#Prc@\ -Y\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10cropW\ -henPrintingbool\x00\ -\x00\x00\x00\x0ecropRectBott\ -omlong\x00\x00\x00\x00\x00\x00\x00\x0ccr\ -opRectLeftlong\x00\x00\ -\x00\x00\x00\x00\x00\x0dcropRectRi\ -ghtlong\x00\x00\x00\x00\x00\x00\x00\x0bc\ -ropRectToplong\x00\x00\ -\x00\x00\x008BIM\x03\xed\x00\x00\x00\x00\x00\x10\x00\ -\x90\x00\x00\x00\x01\x00\x01\x00\x90\x00\x00\x00\x01\x00\x018\ -BIM\x04&\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00?\x80\x00\x008BIM\x03\xee\x00\ -\x00\x00\x00\x00\x0d\x0cTransparen\ -cy\x008BIM\x04\x15\x00\x00\x00\x00\x00\x1e\x00\ -\x00\x00\x0d\x00T\x00r\x00a\x00n\x00s\x00p\x00\ -a\x00r\x00e\x00n\x00c\x00y\x00\x008BI\ -M\x045\x00\x00\x00\x00\x00\x11\x00\x00\x00\x01\x00\x00\xff\ -\xff\x00\x00\x00\x00\x00\x00\x00d\x01\x008BIM\x04\ -\x1d\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008BIM\x04\ -\x0d\x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e8BIM\x04\ -\x19\x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e8BIM\x03\ -\xf3\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x01\ -\x008BIM'\x10\x00\x00\x00\x00\x00\x0a\x00\x01\x00\ -\x00\x00\x00\x00\x00\x00\x018BIM\x03\xf5\x00\x00\x00\ -\x00\x00H\x00/ff\x00\x01\x00lff\x00\x06\x00\ -\x00\x00\x00\x00\x01\x00/ff\x00\x01\x00\xa1\x99\x9a\x00\ -\x06\x00\x00\x00\x00\x00\x01\x002\x00\x00\x00\x01\x00Z\x00\ -\x00\x00\x06\x00\x00\x00\x00\x00\x01\x005\x00\x00\x00\x01\x00\ --\x00\x00\x00\x06\x00\x00\x00\x00\x00\x018BIM\x03\ -\xf8\x00\x00\x00\x00\x00p\x00\x00\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\ -\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\ -\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\x03\xe8\x00\x008BIM\x04\x00\x00\x00\x00\ -\x00\x00\x02\x00\x008BIM\x04\x02\x00\x00\x00\x00\x00\ -\x02\x00\x008BIM\x040\x00\x00\x00\x00\x00\x01\x01\ -\x008BIM\x04-\x00\x00\x00\x00\x00\x06\x00\x01\x00\ -\x00\x00\x038BIM\x04\x08\x00\x00\x00\x00\x00$\x00\ -\x00\x00\x01\x00\x00\x02@\x00\x00\x02@\x00\x00\x00\x04\x00\ -\x00\x01+\x00\x00\x00\x0a\xc5\x00\x00\x00\x01\x1b\x01\x00\x00\ -\x0a\xd5\x018BIM\x04\x1e\x00\x00\x00\x00\x00\x04\x00\ -\x00\x00\x008BIM\x04\x1a\x00\x00\x00\x00\x035\x00\ -\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00`\x00\ -\x00\x00`\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00nu\ -ll\x00\x00\x00\x02\x00\x00\x00\x06bounds\ -Objc\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Rc\ -t1\x00\x00\x00\x04\x00\x00\x00\x00Top lo\ -ng\x00\x00\x00\x00\x00\x00\x00\x00Leftlo\ -ng\x00\x00\x00\x00\x00\x00\x00\x00Btomlo\ -ng\x00\x00\x00`\x00\x00\x00\x00Rghtlo\ -ng\x00\x00\x00`\x00\x00\x00\x06slices\ -VlLs\x00\x00\x00\x01Objc\x00\x00\x00\x01\ -\x00\x00\x00\x00\x00\x05slice\x00\x00\x00\x12\x00\ -\x00\x00\x07sliceIDlong\x00\x00\ -\x00\x00\x00\x00\x00\x07groupIDlon\ -g\x00\x00\x00\x00\x00\x00\x00\x06origine\ -num\x00\x00\x00\x0cESliceOri\ -gin\x00\x00\x00\x0dautoGener\ -ated\x00\x00\x00\x00Typeenum\ -\x00\x00\x00\x0aESliceType\x00\x00\ -\x00\x00Img \x00\x00\x00\x06bounds\ -Objc\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Rc\ -t1\x00\x00\x00\x04\x00\x00\x00\x00Top lo\ -ng\x00\x00\x00\x00\x00\x00\x00\x00Leftlo\ -ng\x00\x00\x00\x00\x00\x00\x00\x00Btomlo\ -ng\x00\x00\x00`\x00\x00\x00\x00Rghtlo\ -ng\x00\x00\x00`\x00\x00\x00\x03urlTEX\ -T\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00nullT\ -EXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Msg\ -eTEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x06a\ -ltTagTEXT\x00\x00\x00\x01\x00\x00\x00\ -\x00\x00\x0ecellTextIsHTM\ -Lbool\x01\x00\x00\x00\x08cellTe\ -xtTEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x09\ -horzAlignenum\x00\x00\x00\ -\x0fESliceHorzAlign\ -\x00\x00\x00\x07default\x00\x00\x00\x09v\ -ertAlignenum\x00\x00\x00\x0f\ -ESliceVertAlign\x00\ -\x00\x00\x07default\x00\x00\x00\x0bbg\ -ColorTypeenum\x00\x00\x00\ -\x11ESliceBGColorTy\ -pe\x00\x00\x00\x00None\x00\x00\x00\x09to\ -pOutsetlong\x00\x00\x00\x00\x00\ -\x00\x00\x0aleftOutsetlon\ -g\x00\x00\x00\x00\x00\x00\x00\x0cbottomO\ -utsetlong\x00\x00\x00\x00\x00\x00\x00\ -\x0brightOutsetlong\ -\x00\x00\x00\x00\x008BIM\x04(\x00\x00\x00\x00\x00\ -\x0c\x00\x00\x00\x02?\xf0\x00\x00\x00\x00\x00\x008BI\ -M\x04\x14\x00\x00\x00\x00\x00\x04\x00\x00\x00\x048BI\ -M\x04\x0c\x00\x00\x00\x00\x04\x02\x00\x00\x00\x01\x00\x00\x00\ -0\x00\x00\x000\x00\x00\x00\x90\x00\x00\x1b\x00\x00\x00\x03\ -\xe6\x00\x18\x00\x01\xff\xd8\xff\xed\x00\x0cAdobe\ -_CM\x00\x01\xff\xee\x00\x0eAdobe\x00d\ -\x80\x00\x00\x00\x01\xff\xdb\x00\x84\x00\x0c\x08\x08\x08\x09\x08\ -\x0c\x09\x09\x0c\x11\x0b\x0a\x0b\x11\x15\x0f\x0c\x0c\x0f\x15\x18\ -\x13\x13\x15\x13\x13\x18\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x01\x0d\x0b\x0b\x0d\x0e\ -\x0d\x10\x0e\x0e\x10\x14\x0e\x0e\x0e\x14\x14\x0e\x0e\x0e\x0e\x14\ -\x11\x0c\x0c\x0c\x0c\x0c\x11\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\xff\xc0\x00\x11\x08\ -\x000\x000\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xdd\ -\x00\x04\x00\x03\xff\xc4\x01?\x00\x00\x01\x05\x01\x01\x01\x01\ -\x01\x01\x00\x00\x00\x00\x00\x00\x00\x03\x00\x01\x02\x04\x05\x06\ -\x07\x08\x09\x0a\x0b\x01\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\ -\x00\x00\x00\x00\x00\x00\x01\x00\x02\x03\x04\x05\x06\x07\x08\x09\ -\x0a\x0b\x10\x00\x01\x04\x01\x03\x02\x04\x02\x05\x07\x06\x08\x05\ -\x03\x0c3\x01\x00\x02\x11\x03\x04!\x121\x05AQa\ -\x13\x22q\x812\x06\x14\x91\xa1\xb1B#$\x15R\xc1\ -b34r\x82\xd1C\x07%\x92S\xf0\xe1\xf1cs\ -5\x16\xa2\xb2\x83&D\x93TdE\xc2\xa3t6\x17\ -\xd2U\xe2e\xf2\xb3\x84\xc3\xd3u\xe3\xf3F'\x94\xa4\ -\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5Vfv\ -\x86\x96\xa6\xb6\xc6\xd6\xe6\xf67GWgw\x87\x97\xa7\ -\xb7\xc7\xd7\xe7\xf7\x11\x00\x02\x02\x01\x02\x04\x04\x03\x04\x05\ -\x06\x07\x07\x06\x055\x01\x00\x02\x11\x03!1\x12\x04A\ -Qaq\x22\x13\x052\x81\x91\x14\xa1\xb1B#\xc1R\ -\xd1\xf03$b\xe1r\x82\x92CS\x15cs4\xf1\ -%\x06\x16\xa2\xb2\x83\x07&5\xc2\xd2D\x93T\xa3\x17\ -dEU6te\xe2\xf2\xb3\x84\xc3\xd3u\xe3\xf3F\ -\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5V\ -fv\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6'7GWgw\ -\x87\x97\xa7\xb7\xc7\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\ -\x00?\x00\xf4<\xdc\xcc\x96d\x9a\xa9;@\x80\x00\x00\ -\x92O\xc6P\xfd~\xab\xe0\xff\x00\xfbl\x7f\xe4R\xc9\ -\xff\x00\x95\x1b\xfdz\xff\x00\xef\xabR\xcb\x19[\x0b\xec\ -!\xad\x1c\x92\x92\x9c\xbf_\xaa\xf8?\xfe\xdb\x1f\xf9\x14\ -\xbd~\xab\xe0\xff\x00\xfbl\x7f\xe4T\xed\xea\xee\x9f\xd0\ -\xb0\x06\xfe\xf3\xff\x00\xf2#\xff\x00$\x95]]\xd3\xfa\ -f\x02\xd3\xf9\xcc\xff\x00\xc8\x9f\xfc\x92Ja\xeb\xf5_\ -\x07\xff\x00\x98?\xf2(\x98\x19\x99\x16dzV\x9d\xc0\ -\x83\xc8\x00\x82?\xaa\xb4+\xb1\x960>\xb2\x1c\xd3\xc1\ -\x0b+\x07\xfeP?\xf5\xcf\xca\x92\x9f\xff\xd0\xef\xf2\x7f\ -\xe5F\xff\x00^\xbf\xfb\xea\x16fS\xb2-\xff\x00\x83\ -i\x867\xfe\xff\x00\xfd\xa4\x5c\x9f\xf9Q\xbf\xd7\xaf\xfe\ -\xfa\x87\x9b\x8a\xec{\x09\x03\xf4O>\xc3\xe0O\xe6\x1f\ -\xfb\xeaJnt\xecJ\x85-\xb9\xed\x0e{\xf5\x13\xac\ -\x0e\xd0\xa9dc\xde-\xb5\xfe\x9b\x85a\xce;\xbbD\ -\xf2\xad\xe0f\xd4\xda\x856\xb81\xcc\xd1\xa4\xe8\x08\xf8\ -\xa5\x9f\x9bS\xaa4\xd4\xe0\xf7?G\x11\xa8\x03\xe2\x92\ -\x9a\x98y.\xc7\xb4\x7f\xa3y\x01\xe3\xfe\xff\x00\xfd\x94\ -L\x1d:\x8b\x87\x9d\x9f\x95C\x0b\x15\xd9\x16\x87\x11\xfa\ -&\x19q\xf1#\xf3\x07\xfd\xf9O\x07^\xa2\xe3\xe7g\ -\xe5IO\xff\xd1\xef\xf2\x7f\xe5F\xff\x00^\xbf\xfb\xea\ -\xd4{\x1a\xf6\x96<\x074\xe8A\xe1g\xe6\xe1d\xbf\ -$\xdbP\x90b\x0c\xc1\x04!\xfd\x9b\xaa~\xf3\xff\x00\ -\xed\xcf\xfc\xc9%&\xb7\xa4\xb4\x99\xa6\xc2\xd1\xfb\xae\x1b\ -\x87\xdf\xf4\x92\xab\xa4\xb4\x19\xba\xc2\xe1\xfb\xad\x1bG\xdf\ -\xf4\x90~\xcd\xd5?y\xff\x00\xf6\xe7\xfed\x97\xd9\xba\ -\xa7\xef?\xfe\xdc\xff\x00\xcc\x92S\xa8\xc65\x8d\x0c`\ -\x0dh\xd0\x01\xc2\xca\xc1\xff\x00\x94\x0f\xc6\xcf\xca\x9f\xec\ -\xddS\xf7\x9f\xff\x00n\x7f\xe6H\xb88Y\x15\xdf\xea\ -\xda\x03@\x04s$\x92\x92\x9f\xff\xd98BIM\x04\ -!\x00\x00\x00\x00\x00]\x00\x00\x00\x01\x01\x00\x00\x00\x0f\ -\x00A\x00d\x00o\x00b\x00e\x00 \x00P\x00h\ -\x00o\x00t\x00o\x00s\x00h\x00o\x00p\x00\x00\ -\x00\x17\x00A\x00d\x00o\x00b\x00e\x00 \x00P\ -\x00h\x00o\x00t\x00o\x00s\x00h\x00o\x00p\ -\x00 \x00C\x00C\x00 \x002\x000\x001\x007\ -\x00\x00\x00\x01\x00\x00\x00\x0cHLino\x02\x10\x00\ -\x00mntrRGB XYZ \x07\xce\x00\ -\x02\x00\x09\x00\x06\x001\x00\x00acspMSF\ -T\x00\x00\x00\x00IEC sRGB\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\xd6\x00\x01\x00\ -\x00\x00\x00\xd3-HP \x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x11cprt\x00\x00\x01\ -P\x00\x00\x003desc\x00\x00\x01\x84\x00\x00\x00\ -lwtpt\x00\x00\x01\xf0\x00\x00\x00\x14bkp\ -t\x00\x00\x02\x04\x00\x00\x00\x14rXYZ\x00\x00\x02\ -\x18\x00\x00\x00\x14gXYZ\x00\x00\x02,\x00\x00\x00\ -\x14bXYZ\x00\x00\x02@\x00\x00\x00\x14dmn\ -d\x00\x00\x02T\x00\x00\x00pdmdd\x00\x00\x02\ -\xc4\x00\x00\x00\x88vued\x00\x00\x03L\x00\x00\x00\ -\x86view\x00\x00\x03\xd4\x00\x00\x00$lum\ -i\x00\x00\x03\xf8\x00\x00\x00\x14meas\x00\x00\x04\ -\x0c\x00\x00\x00$tech\x00\x00\x040\x00\x00\x00\ -\x0crTRC\x00\x00\x04<\x00\x00\x08\x0cgTR\ -C\x00\x00\x04<\x00\x00\x08\x0cbTRC\x00\x00\x04\ -<\x00\x00\x08\x0ctext\x00\x00\x00\x00Cop\ -yright (c) 1998 \ -Hewlett-Packard \ -Company\x00\x00desc\x00\x00\x00\ -\x00\x00\x00\x00\x12sRGB IEC619\ -66-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x12sRGB IEC61966-\ -2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00XYZ \x00\x00\x00\x00\x00\x00\xf3\ -Q\x00\x01\x00\x00\x00\x01\x16\xccXYZ \x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ\ - \x00\x00\x00\x00\x00\x00o\xa2\x00\x008\xf5\x00\x00\x03\ -\x90XYZ \x00\x00\x00\x00\x00\x00b\x99\x00\x00\xb7\ -\x85\x00\x00\x18\xdaXYZ \x00\x00\x00\x00\x00\x00$\ -\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcfdesc\x00\x00\x00\ -\x00\x00\x00\x00\x16IEC http://\ -www.iec.ch\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x16IEC http:/\ -/www.iec.ch\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00desc\x00\x00\x00\ -\x00\x00\x00\x00.IEC 61966-2\ -.1 Default RGB c\ -olour space - sR\ -GB\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00.IE\ -C 61966-2.1 Defa\ -ult RGB colour s\ -pace - sRGB\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00desc\x00\x00\x00\x00\x00\x00\x00,Ref\ -erence Viewing C\ -ondition in IEC6\ -1966-2.1\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00,Reference Vi\ -ewing Condition \ -in IEC61966-2.1\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00view\x00\x00\x00\ -\x00\x00\x13\xa4\xfe\x00\x14_.\x00\x10\xcf\x14\x00\x03\xed\ -\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01XYZ\ - \x00\x00\x00\x00\x00L\x09V\x00P\x00\x00\x00W\x1f\ -\xe7meas\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\ -\x8f\x00\x00\x00\x02sig \x00\x00\x00\x00CRT\ - curv\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\ -\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\x1e\x00#\x00(\x00\ --\x002\x007\x00;\x00@\x00E\x00J\x00O\x00\ -T\x00Y\x00^\x00c\x00h\x00m\x00r\x00w\x00\ -|\x00\x81\x00\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\x9f\x00\ -\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\xc6\x00\ -\xcb\x00\xd0\x00\xd5\x00\xdb\x00\xe0\x00\xe5\x00\xeb\x00\xf0\x00\ -\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\x1f\x01\ -%\x01+\x012\x018\x01>\x01E\x01L\x01R\x01\ -Y\x01`\x01g\x01n\x01u\x01|\x01\x83\x01\x8b\x01\ -\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\xc9\x01\ -\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\x0c\x02\ -\x14\x02\x1d\x02&\x02/\x028\x02A\x02K\x02T\x02\ -]\x02g\x02q\x02z\x02\x84\x02\x8e\x02\x98\x02\xa2\x02\ -\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\xf5\x03\ -\x00\x03\x0b\x03\x16\x03!\x03-\x038\x03C\x03O\x03\ -Z\x03f\x03r\x03~\x03\x8a\x03\x96\x03\xa2\x03\xae\x03\ -\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\x13\x04\ - \x04-\x04;\x04H\x04U\x04c\x04q\x04~\x04\ -\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\xf0\x04\ -\xfe\x05\x0d\x05\x1c\x05+\x05:\x05I\x05X\x05g\x05\ -w\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\xe5\x05\ -\xf6\x06\x06\x06\x16\x06'\x067\x06H\x06Y\x06j\x06\ -{\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\xf5\x07\ -\x07\x07\x19\x07+\x07=\x07O\x07a\x07t\x07\x86\x07\ -\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\x1f\x08\ -2\x08F\x08Z\x08n\x08\x82\x08\x96\x08\xaa\x08\xbe\x08\ -\xd2\x08\xe7\x08\xfb\x09\x10\x09%\x09:\x09O\x09d\x09\ -y\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\x11\x0a\ -'\x0a=\x0aT\x0aj\x0a\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\ -\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b9\x0bQ\x0bi\x0b\x80\x0b\ -\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c*\x0cC\x0c\ -\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d\ -&\x0d@\x0dZ\x0dt\x0d\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\ -\xf8\x0e\x13\x0e.\x0eI\x0ed\x0e\x7f\x0e\x9b\x0e\xb6\x0e\ -\xd2\x0e\xee\x0f\x09\x0f%\x0fA\x0f^\x0fz\x0f\x96\x0f\ -\xb3\x0f\xcf\x0f\xec\x10\x09\x10&\x10C\x10a\x10~\x10\ -\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x111\x11O\x11m\x11\ -\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12&\x12E\x12d\x12\ -\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13#\x13C\x13c\x13\ -\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14'\x14I\x14j\x14\ -\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x154\x15V\x15x\x15\ -\x9b\x15\xbd\x15\xe0\x16\x03\x16&\x16I\x16l\x16\x8f\x16\ -\xb2\x16\xd6\x16\xfa\x17\x1d\x17A\x17e\x17\x89\x17\xae\x17\ -\xd2\x17\xf7\x18\x1b\x18@\x18e\x18\x8a\x18\xaf\x18\xd5\x18\ -\xfa\x19 \x19E\x19k\x19\x91\x19\xb7\x19\xdd\x1a\x04\x1a\ -*\x1aQ\x1aw\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b;\x1b\ -c\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c*\x1cR\x1c{\x1c\ -\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1dG\x1dp\x1d\x99\x1d\xc3\x1d\ -\xec\x1e\x16\x1e@\x1ej\x1e\x94\x1e\xbe\x1e\xe9\x1f\x13\x1f\ ->\x1fi\x1f\x94\x1f\xbf\x1f\xea \x15 A l \ -\x98 \xc4 \xf0!\x1c!H!u!\xa1!\xce!\ -\xfb\x22'\x22U\x22\x82\x22\xaf\x22\xdd#\x0a#8#\ -f#\x94#\xc2#\xf0$\x1f$M$|$\xab$\ -\xda%\x09%8%h%\x97%\xc7%\xf7&'&\ -W&\x87&\xb7&\xe8'\x18'I'z'\xab'\ -\xdc(\x0d(?(q(\xa2(\xd4)\x06)8)\ -k)\x9d)\xd0*\x02*5*h*\x9b*\xcf+\ -\x02+6+i+\x9d+\xd1,\x05,9,n,\ -\xa2,\xd7-\x0c-A-v-\xab-\xe1.\x16.\ -L.\x82.\xb7.\xee/$/Z/\x91/\xc7/\ -\xfe050l0\xa40\xdb1\x121J1\x821\ -\xba1\xf22*2c2\x9b2\xd43\x0d3F3\ -\x7f3\xb83\xf14+4e4\x9e4\xd85\x135\ -M5\x875\xc25\xfd676r6\xae6\xe97\ -$7`7\x9c7\xd78\x148P8\x8c8\xc89\ -\x059B9\x7f9\xbc9\xf9:6:t:\xb2:\ -\xef;-;k;\xaa;\xe8<' >`>\xa0>\ -\xe0?!?a?\xa2?\xe2@#@d@\xa6@\ -\xe7A)AjA\xacA\xeeB0BrB\xb5B\ -\xf7C:C}C\xc0D\x03DGD\x8aD\xceE\ -\x12EUE\x9aE\xdeF\x22FgF\xabF\xf0G\ -5G{G\xc0H\x05HKH\x91H\xd7I\x1dI\ -cI\xa9I\xf0J7J}J\xc4K\x0cKSK\ -\x9aK\xe2L*LrL\xbaM\x02MJM\x93M\ -\xdcN%NnN\xb7O\x00OIO\x93O\xddP\ -'PqP\xbbQ\x06QPQ\x9bQ\xe6R1R\ -|R\xc7S\x13S_S\xaaS\xf6TBT\x8fT\ -\xdbU(UuU\xc2V\x0fV\x5cV\xa9V\xf7W\ -DW\x92W\xe0X/X}X\xcbY\x1aYiY\ -\xb8Z\x07ZVZ\xa6Z\xf5[E[\x95[\xe5\x5c\ -5\x5c\x86\x5c\xd6]']x]\xc9^\x1a^l^\ -\xbd_\x0f_a_\xb3`\x05`W`\xaa`\xfca\ -Oa\xa2a\xf5bIb\x9cb\xf0cCc\x97c\ -\xebd@d\x94d\xe9e=e\x92e\xe7f=f\ -\x92f\xe8g=g\x93g\xe9h?h\x96h\xeci\ -Ci\x9ai\xf1jHj\x9fj\xf7kOk\xa7k\ -\xfflWl\xafm\x08m`m\xb9n\x12nkn\ -\xc4o\x1eoxo\xd1p+p\x86p\xe0q:q\ -\x95q\xf0rKr\xa6s\x01s]s\xb8t\x14t\ -pt\xccu(u\x85u\xe1v>v\x9bv\xf8w\ -Vw\xb3x\x11xnx\xccy*y\x89y\xe7z\ -Fz\xa5{\x04{c{\xc2|!|\x81|\xe1}\ -A}\xa1~\x01~b~\xc2\x7f#\x7f\x84\x7f\xe5\x80\ -G\x80\xa8\x81\x0a\x81k\x81\xcd\x820\x82\x92\x82\xf4\x83\ -W\x83\xba\x84\x1d\x84\x80\x84\xe3\x85G\x85\xab\x86\x0e\x86\ -r\x86\xd7\x87;\x87\x9f\x88\x04\x88i\x88\xce\x893\x89\ -\x99\x89\xfe\x8ad\x8a\xca\x8b0\x8b\x96\x8b\xfc\x8cc\x8c\ -\xca\x8d1\x8d\x98\x8d\xff\x8ef\x8e\xce\x8f6\x8f\x9e\x90\ -\x06\x90n\x90\xd6\x91?\x91\xa8\x92\x11\x92z\x92\xe3\x93\ -M\x93\xb6\x94 \x94\x8a\x94\xf4\x95_\x95\xc9\x964\x96\ -\x9f\x97\x0a\x97u\x97\xe0\x98L\x98\xb8\x99$\x99\x90\x99\ -\xfc\x9ah\x9a\xd5\x9bB\x9b\xaf\x9c\x1c\x9c\x89\x9c\xf7\x9d\ -d\x9d\xd2\x9e@\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0i\xa0\ -\xd8\xa1G\xa1\xb6\xa2&\xa2\x96\xa3\x06\xa3v\xa3\xe6\xa4\ -V\xa4\xc7\xa58\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7n\xa7\ -\xe0\xa8R\xa8\xc4\xa97\xa9\xa9\xaa\x1c\xaa\x8f\xab\x02\xab\ -u\xab\xe9\xac\x5c\xac\xd0\xadD\xad\xb8\xae-\xae\xa1\xaf\ -\x16\xaf\x8b\xb0\x00\xb0u\xb0\xea\xb1`\xb1\xd6\xb2K\xb2\ -\xc2\xb38\xb3\xae\xb4%\xb4\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6\ -y\xb6\xf0\xb7h\xb7\xe0\xb8Y\xb8\xd1\xb9J\xb9\xc2\xba\ -;\xba\xb5\xbb.\xbb\xa7\xbc!\xbc\x9b\xbd\x15\xbd\x8f\xbe\ -\x0a\xbe\x84\xbe\xff\xbfz\xbf\xf5\xc0p\xc0\xec\xc1g\xc1\ -\xe3\xc2_\xc2\xdb\xc3X\xc3\xd4\xc4Q\xc4\xce\xc5K\xc5\ -\xc8\xc6F\xc6\xc3\xc7A\xc7\xbf\xc8=\xc8\xbc\xc9:\xc9\ -\xb9\xca8\xca\xb7\xcb6\xcb\xb6\xcc5\xcc\xb5\xcd5\xcd\ -\xb5\xce6\xce\xb6\xcf7\xcf\xb8\xd09\xd0\xba\xd1<\xd1\ -\xbe\xd2?\xd2\xc1\xd3D\xd3\xc6\xd4I\xd4\xcb\xd5N\xd5\ -\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\xe0\xd8d\xd8\xe8\xd9l\xd9\ -\xf1\xdav\xda\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\x96\xde\ -\x1c\xde\xa2\xdf)\xdf\xaf\xe06\xe0\xbd\xe1D\xe1\xcc\xe2\ -S\xe2\xdb\xe3c\xe3\xeb\xe4s\xe4\xfc\xe5\x84\xe6\x0d\xe6\ -\x96\xe7\x1f\xe7\xa9\xe82\xe8\xbc\xe9F\xe9\xd0\xea[\xea\ -\xe5\xebp\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee(\xee\xb4\xef\ -@\xef\xcc\xf0X\xf0\xe5\xf1r\xf1\xff\xf2\x8c\xf3\x19\xf3\ -\xa7\xf44\xf4\xc2\xf5P\xf5\xde\xf6m\xf6\xfb\xf7\x8a\xf8\ -\x19\xf8\xa8\xf98\xf9\xc7\xfaW\xfa\xe7\xfbw\xfc\x07\xfc\ -\x98\xfd)\xfd\xba\xfeK\xfe\xdc\xffm\xff\xff\x80\x00 \ -P8$\x16\x0d\x07\x84BaP\xb8d6\x1d\x0f\x88\ -DbQ8\xa4V-\x17\x8cFcQ\xb8\xe4v=\ -\x1f\x90HdR9$\x96M'\x94JeR\xb9d\ -\xb6]/\x98A\x00\x930(*l\x0c\x9c\x03\x02\x13\ -`P0\x07?\x02?\xe8O\xe8X\x06 \x01\xa4\x00\ -hO\xfa$\x1a\x93H\x82R\xdf\xf0J}J\x06\xff\ -\xa4\x80\xa9t\xd0\x05\x1a\x07U\xa5\xd5\xeb\xf4\xfa\x8d\x86\ -\x05S\x81S\xe9VhK\xfc\x05o\x01\xd5\xaa\xf6\xca\ -\x8d~\x0fh\xb4\xd2\x00P\x8a\x95\x92\xefK\xb0P\xac\ -W\x9aM\xca\x9dI\xbe]05\xca\xf0\x02\x98\xfe\xc8\ ->\xf2O\xa7\xa6U\xe2\xf3\xcc<2O\xb7\xce\x1aS\ -O\x07\xe8Bcm!\x10\x87\xa7)\x89\xb5C\x00v\ -\xb4#?\x01\x81*\x98\x88]\xf7i\x87\xa4g\xb18\ -+\x1e\xe7\x01\xb7\x8e\xed\xaa\x17:\x15\xfa\x0d\xba\xde\xda\ -\xf7\x98Ln;\x7f\xbe\xe2\xf0!\x99\xec\x0d\xe2\xbbj\ -\xe8T\xab\x18^\x7f6\x9f\x90\xc8uz\xbb>\xcf\x81\ -\xfc\xf8\xf4=\x9c\xbe\xb6\xf3#\xdc\xbaa|VN\x0f\ -\xa3c6\xfa\x94\x04\xbfAb\xcf\xf4\xe0)\xc0\x03:\ -r\x08-\xebzc\x03\xc1\x10L\x15\x05>\xe6\x94\x1c\ -c\x13p\x89\x04h\xc2\x86+\xee\x90\x00\xd0\xc8\x10(\ -C\x83 \xdb\x0f\x91\x00LD\x05\xc1q,M\x13\xc5\ -\x09B\xa4fE\x85\xf9\x17\x17\x8d\xa6\xfcdk\xb9\x08\ -\xb0;\x1b\x84\x84LtV5A0_\x14\xc8\x12\x0c\ -\x85!\xa2\xe7\xd4\x8c|\x93RI\x00SI\x84|\x8c\ -}\x1f(\xc4\x0a\x01\x07\xb2\xa8\x9aCK\x058\x0f-\ -\x812$\xbd/\xcc\x13\x0a\x04gL\x86\x08\xed3\x8a\ -\x87\x84\xd4v#\x09\x98\x08\x02\x8a\xf3\x88\xda7\xce\x84\ -\x5c\xa71O\x13\xcc\xf5\x03\x9d\x13\xe9\xc44P\x02\x11\ -\xc9A\x9b\xa8\xc42\x03\x01\x03-\x14?\x0c\x14h\xf0\ -\xe3Ot\x8d%I\xa3\xe7\x95,w\x0c\x94\xc8|o\ -S\x86\xad\x0d\x0d\x0d\x95\x09\x0e\xfe\x8b#}!JU\ -\x15MT\x873\x07\x99\xe1E\x0c\xa1\xf1\xb9Y\x9ah\ -\xc4\xb6\x03\x810\xf8\xdaDN\x22\xb8\xdbS\xc4\xae\x13\ -\x9bU\xc8q\xab\xae\xe1\xa1V\x15UV\x9e\x14\xc8\xc8\ -\x1e\x9b\xb6\x89\xa9O\xd1\x03u\xacD\xd7\xb5\xfb\xa4\x89\ -\xaaF\xdd\xbch\x9e\xb7\x09\xe6\xea\xcav\x13\xa8\xe0\x1f\ -\xb7I\xfb;\xb8\x8e\xdb\xb2\xf29Wr\xd4\x82<\xc8\ -E\x80\xe3\xbb\xab+\xa3d9\xd7\xdd\xe3}-\xd0-\ -\xec\xe0X\xc8\xa3\xc6\xe4\xbc\xce\xc5\xde\xbf\xb9`\x04\xdc\ -\x02\x84X\x88T\x05\xe2\x80r8\xca\x9e\x87\x8d\x9c\x1e\ -\xd6f\xe5j\x8b\xd6\xe0MB6\x10\xe2\xc6L7^\ -\xe8\x89\xf9\x95\x9fc\xa6\x5c(\x9a\xf9\x89\x9be!\xf7\ -2\x87\x02\x80xN\x15\x80:\xb6\x15 \xed.\x92\x9d\ -\xea\x81\xe8O\x06R\xe9\xad\x97r\xb5\x9b\xae\x17\xa6\x8c\ -\xe0`\xeec\xcdr\xbb\xb9\xa5\x93|\xdd\xb4\x83\xcc\x08\ -\xeb\x80\xa8\xf9\xaf\x93an\xc4\x1cb\xec\xb0\xc7\xb3\x87\ -\x96\x89\xbbi\xe4\x12\xe6GQ\xbf\xa3z8\xfb\x8c\xdb\ -\xa8~i\xef\x06E\x89\xbd\xef\x88>\xb8\x08\x82\xb1\xd1\ -\x12U\x86\x5c(~\x8eY\x9b\xa8\xcc\x1f\xdb\xc6\xd9\xa5\ -[K\x95\xd5y9h\xe8{\xefX\x07\xc6\xa74d\ -\xef\xbc\xee\xfa\x08t\x00\xa4^E\x95\xc1\x87L\x1er\ -\xa8v1\x8dS8\xe5i\xc8W\x1b~L,e\x16\ -\xda%'\x9f#?t o\x06\x9e\xf5\xcfx\x15W\ -@\x08tQ\x7fK\xd3\xf5(m\x99\xdd\x0c\xe2\x01\xb5\ -\xe7\x9a6\xa0\x11\xc9T\x9b\x926\xfb\xf9\x82\x04\x1ci\ -\x18\xfe\x0f\xbdJx`\xa1\x15\xf1\x95\xbc(d\x1fl\ -\xb8\xcf\x14\x1f\xf9\xe6\xd7\xa3\xb6\xf65\x17g\xda\xdf\x88\ -\xa7/Es<\xdf\xbf\xfd\xcfmh\x1c\x04\x84d\x01\ -\x15\xcf\x99\xc3\x91\xb5\x98\xe6\x18\xeb\x1f\x22\xcc\x85\xc9-\ -\x97\x92C\x1b\xa3vw\xae\xfd\xfeAT\xc0\xf8]\x18\ -\xae\x060l\x1e\x91\xc5\xc2=G\x93g\x0c`\xf2\x04\ -\xbb\x06D\xfc\x99<\x0f!l\xac~\x0f\xb71\x04\xe0\ -\xb41K\xcd\xfd\xc0\xa3\xb7\xcc\xfa 1\x99\x81\x0e\xbd\ -\xf8\x00\x95\xac\x1b\x96\xc2rnfM\xcc9\xa1\xa8\xe7\ -!\x91\x02\x02\xb1,\x0d\x02\xf8\x9c\x0e\xc1DQ\x06Q\ -D\x14\x03\x10-\x15\xc0\xeb\xfe\x021h\x82)a\xe4\ -;\xd6`\xe9\x8cC\x8cl\xc6Q\x9e6#@\xce\x1a\ -\x11\xacb\x0e\xb8\xdc9\xa1\x8c4|b(V\xc1\xb0\ -c\x07a\xca\xaecm\xa9\xb6@\xb7\x22\x88 s\xb6\ -\x220E\xc5\xc3\x07=\x15\xc0\xb0\x1b\x09R,.\x04\ -\x09\x1c\x14\x01\x5c\x91\x06\xf0\xa8\x8f\x15!\xad%\xc6X\ -\xbf\x93B\xbc\x5cI\xd1J\x9fG@\xe3o\x90a\xe3\ -Gh\xf0F\x9d[\xeb}\xaf\xbe??\x16H\xf5H\ -\xe4,\x1fln#D\x85P\xd8\x81h8T\x81\xc0\ -\xd3\x840\xa6l\x0d\x92`]C\xf2M\x0b\xf1^)\ -\xe6@\x90B\x83Dc)8\xe4\xf9%3\x88\x87O\ -\xe2\x12\xc3\xd7$\xfc\xc8\xe3\xb8}r\xd5=\x01y\xbc\ -\x07\x03\x8c\xe1\x11\xc1\x12r\x05W\xf6/\xa7@\xad\x11\ -\xd3\xac9J\x01\xc4\x98_\x0cs\x8e\xb0rJ\x10\x97\ -\x96\xee\xe5[\xd2\x9a\xf0\xa6A\x11\x09\x08\xdd\xdb\xcaD\ -\x00\xb4\x0c\x03\x05\xba\x0c\x1c\xa1\x10|D@%\x12D\ -\x90\x00z\x07\xc0\xf6\x13\xd4LB\x8aJ,#]\xc2\ -@\x99\xf1\xd2h\x91\xb7V\xc6\xe6\xac\xadW2\x01\xca\ -O\xd7-\x11\x1f\xc4\xdcE \xe2\x96\x04d\xce\x1d\x84\ -\x98\x1e\xa6@\x9a\x87\x11\x11\xc7M\xc6\xe3\xa3\x0d\xa3\x1a\ -\x9e\x0b\x84L\xf8`\x08\x8c\x15\xee\x98\x18\x03\xc7\xd2<\ -eS\xd0\x84\xd06\x92\xbfR',\xa5\xa3\xfaA\x09\ -L4\xd5Q\x06\x18j\xc0z\xa6\xa4\x80P\xd5\xd1\x12\ -%k\x00zhd\xba\x1a8!Y\x0d\xe0\xf2\xe1\x84\ --\xa2\x90\x91VC\x0f\xc4HV\xaeA\xb2z\x90\x87\ -p\xf6d1.\x01\xb5\xec\x08\x08J\xfc)A\xdd\x81\ -\x09Ul\x93\xd3\xc1\x8c.\x03\xdd\x89\x0b+0\x96Q\ -\xb9\xe7\x1d\xea;\x98q\xae>\x1e\xb6\xf9`\xf5\xcc\x9b\ -\xeb\xaf$\xa5\x88\x82 UPE\x852\x03\xc0\x96\xc2\ -\x12\xean8\xc6\xe3.\x0e\x81A\xb5)\xe2Oc\xa8\ -\xec\xa82\xd6IoYJD\xec\xa7\xe5N\x22Oa\ -\xdd\xbd\xb7\xbaI\xcd 6\x08u\x04W\x93\xc0\x1bi\ -PP\xf6\xb9C\xd2\x97\x85#\xdc2\x05\xd9$\x86\x90\ -f'\x02\xf0w]H<\x07\x9a\x90\xf0\x8b(p\x11\ -\x5c&\xc5\x98\x1fc\xea\x22\xd5\x22D\x0d\xef@D\x9d\ -b8Y2\x1b\x90\x90\x12x\xf8\x0eW\xcc'\x5c\xfb\ -\xa2G\xe5#\xa4\xa8\x8e\xa2\x93:\xa3-R_uK\ -\xa4\x8a\xfa\xec\x10i\xfff\xc8\xe5,\x07\x01\x1a\xf5\x8b\ -\x1b\xbc\x91#p\xeb\x1c\xc2\xf7\x0a\x0a\xcb\x0c-\xe7t\ -b\x1d#\x8c\xa9D\xb0*\x06\x84\xbe!\x17\xb2 \x0e\ -'\xab\xe3|\xc3\x90O\xb9\xe2\xe8\x8eO\x17\xc9Z(\ -\xf5\xb3\x7f\x16O\x01+\xb9\x03n\xa4\x1d\x99\x82T\x04\ -\x8d\x83\x9c|\x11\xc4nA\x16\x18=\x14\x8e|\x8c8\ -D\x86I\x0es\x14W\xd62\x22+\xf2\x80\xdbF\xe0\ -t\x12);\xe2\x1c\xf2\xc0P\x18\xf9l\x5c\x91\x8c]\ -\x1d1\x85\xb2c6\xd1\xc7cW'\x81/\xe9\x0d\xb7\ -\x8f6\xdf\x11\x89\x22\x0a\xc1\xa8\x99\xceC\x00\x04gP\ -\x14\x90(\xb0\xa4\x11\xa2c>\x07\xda =\xc8\xe6P\ -\x15\xf9I\x1c*\xaa =\x9f\x5c\x97\x1a\xc30\x8a_\ -\x985\x07+L cx\xd2\x1e\xd7\x0a\xe4\x15\xab\xa6\ -i\x82\x06M\xec\xe6\xd2&\x065\x00\x1e\xab\xa2\x84d\ -\x81=L\x06\x111\xe6\xa7B\xafV\x09bI\xa0\xb4\ -&To\x83\xb7Z\x0e\x80\xbf\xad\xc1\xb4\xa0\x94D>\ -\xb2\xc3g\x0b\x0e3\x15Hn\xd3\xe4\x8b\xdd\xe0\xe1\xb1\ -\xc4XU\xd9A\xaf\x02\x90\x5c\x0f\x8f\x08q9\x01\xc2\ -wj\x0cPG\xb5\xc1b@\xaf\xc2\x102\x8b\x0d\xbc\ -'\x09F\xb0\xcayU\xcfY5\x9c\x0f \xf8\xf3!\ -\x9a\xf4D\x8a\xc9M\xb3H#\x89n\xdaR\x91T\xcc\ -\xd1\x8e'\xf6:\x90\xbb@\x84\x94\xf1\x1f\xbf\xc5\x98<\ -\xe0A- \x0bN\x0c(\x04\x07\x09\x0c$\xb3qh\ -W\xbe|F\x10\xb2\xcb\x01\xcc(,l\xbe\xf9u\xfc\ -\xd2U\xd0\xed\x8f=&\xde\x16\xb9\x00p\x88w\x8fN\ -\xa0\xeb~B\x96p|P\x01\xa0A\xa4\x01\xcd\xcb\xc7\ -\x06\x97\x05z\x1f\x86e\x1d\xc7\x0cD\xa79\x0f\x02\x83\ -\x9e\x08\x92\x11\x0d\x04GA\x15P\x13x\x108\xbc;\ -\xde\xce\xf4\xad\xc9sKW>\x8a@\x9d\xc7+\x08:\ -x\x83_\xb4\x92&\x86\x038\xdbU\xfbn\xed\xf2a\ -\xc3u\x94\x16\x98p\x88\x1eR\xa2\x05\xa3\xad\x89\x19\xde\ -N/\xa5\x11H\x18\x88/\x09\x1a\xd9\xee\xf8\x82m)\ -\x90)\xc6\x90\x19\xef@} da\xce8B\x8f\x81\ -\x04\xb2\xcb\xaf\xf3n\x1d\x12G\x17\x89\x1b|\x80-\x03\ -\x0d\x0f\xc5\xf3\x09\x19\xa3\xee\xb6\xb6\xf6\xe6\xdd\x0a\x1d\xa7\ -O\x00\x1d\xce\x0a\x00\x09\xc2\x1cDm\x06\x0ba\xc9\x22\ -\x0a/L\x22\x84\x97\xa9\x0e\xe8'\xb0nK\x08'=\ -\x80\x82\xcf\x82`?\xf9\x0e3\x1eVk\xad\x8f\x90\x9a\ -\xdcy\x9d4B\xdf\xba\xb1\x96\xb5\xec\x06\x81\x01k\xf1\ -\xc7\x19<\x01\x89\x13\xa9\x22\xc1\x980=g\x86\xec6\ -\x13\xa3\x84\xcf\xac\x07\x99\x0c\xf2\xed$b\x0f\x8f-'\ -ms7q#>s[\x85\xf0\xec\xae\xb9\xf2C\x1f\ -?\xac{\x83\xff\xdc\x03\xfc\x22\x08\xf5\xb7\xbc\x81\xef\xf1\ -\x1e\x1c\xbe8\xb5\x14w\x12\xfd\xe9\x1f\xbcu\xae\xda\x22\ -j\xdeZ\xed.\xd3-\xf0\xa4\xeeH\xb7\xaeL\x120\ -\x18\x16\xab\x02\x07k\x06He\x06\x1c\x81\xbaC\x80\xa0\ -\xf5\xc4\x14\x03\x904\x04F\x1e$\x8b\xd6\x16KD\xa6\ -\x84\x86\xe2\x01f\x100L\x0c+\x88\xfbb.ul\ -\xc8\xb6\xce\x96W\x0d\xec[P\x0e!\xcf\x82\x7f(\x8e\ -\x15\xd0p\x1b0BH\x89\x96\x18\xae\xc8\xa6\xaff\x17\ -\xc0i\x08`\x82H\x83\xe8\x1c\x01\xb0s\x09\xe4\xbfo\ -5\x05\x8cf\xfc\x09\xac\xc0pdXb&\xf3\x81\x8b\ -\x0a\xe1\xec\xbd\xc4\x86\x18\x90\xb8\x16\x8d\x8e\x0e\x00\x9a\xa6\ -\xab\x88\x91\xc0\x80\x0a\x04\x88\xfda\xf2\x1e\xe0\x97\x0d`\ -<\x9eO\x22#\x0e\xd6q\x90\xa0\xde\xb0\xa4\xf3J\xee\ -wh&\x16P\xf4\x1b\xe05\x0f\xa0@H\x8b|\x0c\ -Q\x04\x07Jj\xf6\x018\x18J\x88\x94\xe4\x82\xe5\xe1\ -\xcc\x1b\xef\xca\x06\xea\xcd\x0d\xe2.\xbbEb\xf2\xb0\x04\ -\x8f\xecl\xa9\xb0\xa8\xb7jP\xf8G6\x12\xd1@\x17\ -k\x82\x08\x84\x88=a\xca\x1b\xc0\x9f\x15 F\xa6\xb0\ -p\x15\xd0t\xa6d\x88\xc5f\xbe\x0f\x80\xb6\x830\x98\ -\xf7\xe2\x14\xfb\xaf\xbe\xcc\xb0\xa3\x13-\xef\x13lr\xbc\ -k4o'$\xfc\xafVHk\xe2\xfd\xc0~\x01\xe4\ -.{\xe6\x1e\x18\x11\xa0\x1e\x0c\xea\x01\x0c\xeeHj&\ -\x13\xc1\x0a\xee\xe1#\x09g\x91\x17\x09\xec3'\xd7\x00\ -\x22$d/z~\x91\x80\xdf1\x84\xc7g|\xef@\ -2\x03\xe1c\x1d\xe1\xba\xebD\x86\xaa\xa0\xd2\x08a\x97\ -\x1e\xe1|\x7f`g\x1f`~\xceA2\xfa\x04\x86>\ -\xe0\x9d `B>\xf0\xdc\xf6\xe25\x0e1\xc4\x220\ -\x06\x88\x10\x0a\xf3Pj\xec\xc0\x00\xe8!\x10\x15)\xc8\ -\x08\x80\xacH\x8c\xf2\x11\x8c\x92\x12\x00\xea\x7fj\xe0\x0b\ -\xd2D\x0e\xc4\x89\x0fAd\x13\xe1\x05% \xc4\xb6\x0d\ - \xc6,\xc7\x09\xf1y\x0e\x85v\xfcB0\xf3\x82\x09\ -\x03@8\x04D\x98\x14\xc1\xa0\xb8\xc4\x80\xc3A\xc7\x02\ -\xc0I\x19\xa5\x88\xa0`\x0a\x00\xcd`\xd4\x000\x03\xc4\ -\x80Y\x85z\x05\x81\xd5*!\xca\xdd\x8a\xcf!\x0e\xd5\ -\x1c\x0d\xe7\x0ep^\xa4rfd\xeeF\xbc\x8aR\xbc\ -\xc2\x0a\xfa\xc0\x98\x0b\xce\x12\x10\x01BH\x92(\x0d!\ -Y-\xa10o\x84\x00\x0a`\xce\x0f2\xe9-\xe4\x86\ -\x0fR\xf0\x0b\x01u/aR \x8c\xbf*\xa0d\x80\ -\xb2\x12\x9aq*\xbb\x92\xb7\x062 \xdfJ\x00\xee\x82\ -\x17,\xe1?,\x80\xc0H\x09\xdc\xd9@\xaa\x05A\xef\ -2\xe1\xeaRj\x16\x01r\xda\x15\x81\xae\x9b\xc0.\x03\ -\xa4\x80\xdb\xc1`\x13m\xb6\x0c\xc2\x104 \x1e\x02g\ -F\xe3\x13\x02\xb22a\x05\xcf-\x06\x10\xeb\x1b\xc2\x11\ -\x222\xc4!\x11\xa6\x01-\xa8\x13\xa1\x8a\x04\xf3\x80\x06\ -$\x80\x93\xa1p\x14\xb1f\x0b\x85&\xdbaJ\x09\x13\ -\x98\x0bD\x80\x8d\x01\xb0\x19\xb1\x04\x0c@v\xa3\x22\x0e\ -\xf6\xc7\xce\xff\xd1w6Q/6\x92\xbav\x89be\ -\x88^\xdf\x82\x19)@:\x13\xf3\xd0\x19\x0c<\x03D\ -\x80p@\xd6\xd5\x81V\xd5\xc4\xc0W\xa0\xd8\x0e\xb3\xec\ -\x12d\x81*!\xd4\x1c\xa5\x1a\x0c\x00o?A\xca\xdd\ -f\xbb\x122\xad\x0e\x13\x08VS\x0d6r\xb8\xcc\xf0\ -\xa7&\xb1;\x06\xc9l\x223\x80\x04\xe0`B!6\ -\x18o\x94D\xc2\xa5\x01\x81\x22\x0e\x8c\xf2\x11\xc4\x81$\ -@\xbc\x0e\xaf\xd0\xf3B@\xb9A\xec\x1ef6\xd8\x82\ -\x1d5@'\x052Z\xd8*AA3\xbbAlo\ -\x1c\xf0\x10\x1fNJ{\x821\x01\xe0\x92\xfe\xc1g\x1e\ -DQ3\xa1,\x12t\x8c\x0f\x0d\xd2%\x8d\xa4\x87\xe1\ -\x14\x0aT\x9c\x0c\xe4\x80<\x01\xfb\x0b\xe0\x98\xb0\xca|\ -\x22k\x1d\x16\xf0f!\xb1u\x00\x12\xb5AJ\xe0[\ -2\xbf\x18s\x18#I\x16\x09@\xb9,\xe1AHD\ -N\x1d\x94\xdc\x1c\xeer\x12\x80\xf38\x81L\xfe\x225\ -(\xc0\x0d9\x80\x90\x0bG$?@$\x02\xf4\xa22\ -\x01\xfb,\xe0\xc0\x16\xd5\x0c\x14\x821%\x8b!%\xc7\ -XY\xf1-\x1cq1A\x90\xecH\xe70\x1a\xb5,\ -\x19BAO@\xb3%!\x04\x14t\xd8H\x0e\x8f\x1a\ -\x01\x80\x16\x0c\xb6\x18\xe1p\x9d\xd3\xf4\x1c\x82\x08\xc4\x92\ -\x94\x03\xd4}\x19@\xa0\xf8\x80 H\x94\xa4\x0f\xd5l\ -\x0b\xb3\x88\x14\xecZt/\xb4\x9e\x93l \xef'Q\ -\xd4iR\x13\xbdRU~\xc0\xd3\x14\xc1\x02?\x22\xe0\ -\xa8\x10\xb5\x9c\x14\xe9\x80\xfe\x84P\x98k\x12\x0f`\xb4\ -\x17\x95\xb0\x15b@\xed\x14b\xf2LdV2\x16\x22\ -\x12\x1a\xae.\x9dX\xe2\x0aw\x15+R\xe2Q\x0c\x80\ -\xa0K\x01\x0c\x14\xec\x89ZB^w\x15\xaa\x0b,\x98\ -$\x93\xb0\xd8\x15\xbc}M\x86\xa9Qz\x11\x12h\x22\ -\xf2l%`S`\xa0f\x835[^BQ(\x13\ -\xec\x0e\xa0\xa4\xd1M\x18\xb5\xf4\x06Gm\xdf\x5c\xc2\x09\ -\x09\xd5\xc1K\xf4k1\x16, p\xeey\xb5\x94%\ -G\xc3\x22\x81S\x08`h\x08V\x14#\xe1\x9bea\ -\x80\x0f\x16\x5c\x0a\xc1\xdff!\xd6\xb1\xa6\xbbW\xb5\x16\ -#O\xba\xec\x95\x1f!\x95#`\x22,\x96S\xc7L\ -\xa2b6\x00\x06r@\xb9h\xe0\xe9e\x22-'a\ -\x1e\xf5!$\x0e\xc8X\x1f\x82aE\xd4af\xf5\xf6\ -\x1e0Z\x9fD@\xb2\xee\xe5Y3\xc8D\xb4|\xb5\ -A$\xe6\xf6\x94 \x90&\x1b\xaa\x82\x0d\xf0\xb8\x18\x81\ -j\xa7\xe7C\x16\xd1\xbbKb\x19c\x00}\x5c\x22\x1e\ -\xed\xf3\xbe\x0d\xd4\xc7\x1dO:H\x14\xf0\xf4J\x10l\ -\xea\x14Djk2\xe1\xee\x1e\xb3\xd0\x13\xe1\x0c\xcf*\ -0H\xe4\x81j\x88\x02\x15\xf0T\x22\xd6\xe9n\xc2\x1c\ -\xbb\xd4\xc3\x13T\x1c\xbck\xca\x88\xe4\xf4\x91\x006N\ -\x80\xde\x11`\x8ft\xa0\xb2\x7fr\xf6\x17ASC\x80\ -\xe8\xc3UTL\x0d\xd8\x15h\xec\x07\xcf5\x12\x94\x10\ -\xe3\xb5\xffF\xe20\xea%\x00\xeanLUV\x0a\x05\ - f~`\x8bx\xa0\xaeP\xe0\x0eL#\xee\x17w\ -\x98\x15!Qy\xe1%b\x05'[\x96\xad@\xce6\ -\xbbwp\xb6\xe5Ek\x8f\xc62f7R\xc1\xabS\ -\x07<\x86\x97J\x08\xe0\xb1]\x97gZ\x22V\x98a\ -\x9f}\xa1\x87TAau!P\x1d\xd7\xe8\x1dIG\ -W\x87\xc70\x13\x04#/\xbb:`v\xf7k+{\ -f\xe3+\xf7;B(b\x8bIp\x07\x14&\x06$\ -z\x06\x13\xcc\xf8\x80#VB\xbeU\xa8\xc032\x80\ -\x8c\xa1\xb2\x19\xe7\xda\x1a\x0b|\xe8\xe8c_.4\x1e\ -\x07\xb3E\x92\xb7\x1c\xb3\x13\x1d-\xf7hV\xcb\x85b\ -7*\x91%r\x83-Fw\xb30\xf3knO\x81\ -k\xd8U\x85\x98t\x22\xd7\xa9\x11W\xac\x1e\x11\xc3c\ -U\x89F\xd75`Xqo\xb8w\x89\x22%\x84\x15\ -\x19\x86H\x15\x86\x96\xf3\x80\x92\xc3s\xd8\x95\x8a\xb8\x97\ -\x7f\x0c\xc1@\xb1'+\x0e\xd9\x88Vx\x95\xc6J\xb7\ -4q\x06\x8d9\x01Ty\x8a\xd8\xd0!\xd2\xa9b\xb8\ -l!U\x82u\xd8f\x22\x970Z\xf6|\x22\xb6\x80\ -\x7f\x16C\x8d8\xf4 \x98]\x8bXa%\xf63&\ -2\xb6\xe9\xad1\x84\xf2\xc1\x13\xd8\xa9\x8fy\x14 \xb8\ -\x99FO)Xx\xbe\x84\xe6H~y\x0d\x80\xb9\x17\ -\x92\xe2\x06\xa8\x17\x22\xff\xa27g*\xd9\x92\x15\xc5R\ -7t\x22\xe9e\x22\x80\xd4FA\xbeF\x82\xe8.\xe3\ -v^B\xb2_C\x19\x96\x06p+b\xbfJT\x84\ -/\x02\xd5\x96\x83zic\x96;Y^6\xa2\x86`\ -\x09\x81\x97B\x1c+#\x0ciF\x9c\x1f\xc1\xfb\x97\xe3\ -\x1cjf\x04-#j \xe3\x94\x1f\xc3\x8c9\xa2\xb7\ -\x96b\x87\x82\x00\xd7\x9ba\x0b\x81\xaa\x8f\x89\xcf\xc3+\ -\xc2>\x96F\x0ak&\x08j\xa3\x14;\x85\xfc!\x86\ -\xa2_\xa5\xe4\x5c\xecpj\xc2\x0b\x9eFl_\xd9\xe0\ -^&\x7f\x9d4\xb7\x9eFy\x9c\xe2\x84]\x82\xcf\x95\ -e\xda^\x06\x1fD\xc2\x07r\xb8\xbd\x945\x8b\x94y\ -1\xa1\xa4\xf7\xa1\x19\x05\x8eD5s1\x7f\xa1\xda,\ -O.\x8e}vw\xa1@\x12\x0dZ<\x10\x97\x01\xa2\ -\xfaDO7\xe8\x1d\xc1\xd4\xe5`\x84S\x81\xbc\xb5\xcb\ -\xbaC \x0fh\xe0\xb8\x0e\x91\xe8\x10z\x0d\xa4zl\ -$\xbaT\x1a\xd7D\x09N\xfc\x1c\x220\x98\x00\x83\xa8\ - \xa3\x04\xc1\x02\x140\xb5\xa6\xfa\x90AC\xcdN\x88\ -\xe6\x0d\x87V#\x02\x9f\x0458\x14L\xde\x06\xda\x93\ -\xaa\xe4\x10\xd6\x81\xda\x1d\x19L\x18:\xbc\x16T\xa4#\ -\x86B\x97\xa0\xa9\x0b\xe1\x19O\xc0-\xab\x1a\xd4$\xe7\ -W'a \x15:\xe0\x12a\xe3\xaea\xda$\x87\xfc\ -\x02Q\x94\x09\xd0\x0a\xda\xe0F\x05r\x8dy\x22'\x9d\ -\xb9\xd9\x9dC\xac^\x19\xeb\xb0\xa3\x93\x9e\xfb\x0f\xb0c\ -\xb3\x9d\xa3\xc5\x9f\xc3\xac\x9e\xb9\xef\x95\xbb\x1e_\x99\xca\ -!Y\xf2a\xbb*_\xe6j)k\xe2\x1c;@\x1b\ -1\xde\x16!=[\x01x\x15zJ\x1d\x22P)\xe6\ -B\xdch\xa8\x06PCVB\x9fN\xd9\xdc`e\xf9\ -\x9d\xb9\xe4gC\xb0h\x05\xfd\x9d\xa6\x8a2\x02\x08g\ -\x14\xa5\xb2Y\xd0a\xa2\xa4j\x86\x1a`\x1a\x00X\xe0\ -\x02<\xdb\x8f\x99\xe2\x05\x99\xc2\xdf\xb7\x99\x5c8\x1bu\ -\x8c`\x01\xb7\xe1\xfd\xb2b\x0eJe\xd4\x1f\xbb\x82@\ -\xb0\xd0\x1f\x18(\xb4\xe1\xb9\xa7)@\x1c7\x0c\x1e\xbb\ -.$\xa2\x9e\x98\x06\x1f\xb9\x03\xb4\x22\x99\xf8A\x1b\xb8\ -H[\xea$[\xf2K\xc3\xcc\x98t\xa5\xbd\xba\xd7\xc0\ -<\x05\xc0|\x09\xc0\xbc\x0d\xc0\xe2\x08 \x00\x00\x03\ -\x00\x01\xa0\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\xa0\x04\ -\x00\x01\x00\x00\x00`\x00\x00\x00\x03\xa0\x04\x00\x01\x00\x00\ -\x00`\x00\x00\x00\x00\x00\x00\x00\x00\x00Adobe\ - Photoshop Docum\ -ent Data Block\x00M\ -IB8nrTM\x00\x00\x00\x00MIB8r\ -yaL\xdc\x19\x00\x00\x01\x00\x03\x00\x00\x00\x03\x00\x00\ -\x00]\x00\x00\x00\x5c\x00\x00\x00\x04\x00\xff\xff\x9b\x0b\x00\ -\x00\x00\x00C\x04\x00\x00\x01\x00C\x04\x00\x00\x02\x00C\ -\x04\x00\x00MIB8mron\xff\x00\x08\x00<\ -\x01\x00\x00\x00\x00\x00\x00(\x00\x00\x00\x00\x00\xff\xff\x00\ -\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\ -\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\ -\x00\xff\xff\x07Layer 0MIB8i\ -nul\x14\x00\x00\x00\x07\x00\x00\x00L\x00a\x00y\ -\x00e\x00r\x00 \x000\x00\x00\x00MIB8r\ -snl\x04\x00\x00\x00ryalMIB8d\ -iyl\x04\x00\x00\x00\x03\x00\x00\x00MIB8l\ -blc\x04\x00\x00\x00\x01\x00\x00\x00MIB8x\ -fni\x04\x00\x00\x00\x00\x00\x00\x00MIB8o\ -knk\x04\x00\x00\x00\x00\x00\x00\x00MIB8f\ -psl\x04\x00\x00\x00\x00\x00\x00\x00MIB8r\ -lcl\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00M\ -IB8dmhsH\x00\x00\x00\x01\x00\x00\x00M\ -IB8tsuc\x00\x00\x00\x004\x00\x00\x00\x10\ -\x00\x00\x00\x01\x00\x00\x00\x00\x00\x08\x00\x00\x00met\ -adata\x01\x00\x00\x00\x09\x00\x00\x00lay\ -erTimebuod\xc2\x93A\xe0\xf78\ -\xd6A\x00MIB8prxf\x10\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\ -\x00S\x00O\x00\x0f\x00\x0c\x00\x0a\x00\x09\x00\x09\x00\x09\ -\x00\x09\x00\x15\x00I\x00K\x00\x12\x00\x14\x00\x14\x00\x12\ -\x00\x13\x00\x13\x00\x13\x00#\x00!\x00\x1e\x00\x1d\x00\x1f\ -\x00\x1d\x00\x1d\x00\x1d\x00\x1c\x00\x1e\x00\x1d\x00(\x00'\ -\x00&\x00&\x00&\x00%\x00$\x00$\x00\x22\x00 \ -\x00 \x00\x1e\x00\x22\x00\x1f\x00\x1e\x00\x1e\x00\x1f\x00!\ -\x00 \x00 \x00#\x00!\x00%\x00%\x00$\x00'\ -\x00(\x00(\x00+\x00\x1d\x00\x1d\x00\x1d\x00\x1d\x00\x1c\ -\x00\x1d\x00\x1e\x00\x1e\x00\x1f\x00 \x00#\x00\x13\x00\x13\ -\x00\x13\x00\x12\x00\x14\x00\x12\x00\x13\x00\x13\x00M\x00L\ -\x00\x09\x00\x09\x00\x08\x00\x09\x00\x0a\x00\x0a\x00\x0c\x00L\ -\x00W\x00 \x00\xfd\x00\x04\x05\x11!-1\xfe/\xfc\ -0\x181//0110010/1/0\ -010/0110/01\xfe0\x0a/2\ -1100/00//\xfe1\x000\xfe1\x05\ -010/01\xfe0\xfe1\xff0\x081/0\ -/-'\x18\x08\x01\xfe\x00\xff\x00\x07\x01\x14X\xab\xdb\ -\xec\xf0\xf0\xfd\xf1\x00\xf0\xfe\xf1\x00\xf2\xfd\xf1\xff\xf0\x01\ -\xf1\xf0\xf8\xf1\x03\xf0\xf1\xf1\xf0\xfe\xf1\xfe\xf0\x07\xf1\xf0\ -\xf0\xf1\xf1\xf0\xf1\xf0\xfc\xf1\xff\xf0\x1b\xf1\xf0\xf0\xf1\xf2\ -\xf1\xf0\xf1\xf0\xf1\xf1\xf2\xf0\xf1\xf0\xf1\xf0\xf0\xf1\xf0\xee\ -\xe4\xc2|.\x06\x00\x00\xff\x00\x03\x16\x86\xed\xfd\xb3\xff\ -\x04\xf9\xbfA\x06\x00\x03\x00\x08l\xf4\xb0\xff\x03\xfe\xbd\ -*\x01\x02\x00$\xd0\xae\xff\x02\xf8x\x07\x02\x02O\xf6\ -\xad\xff\x01\xc0\x14\x02\x05r\xfd\xad\xff\x01\xe1#\x02\x08\ -\x86\xfe\xad\xff\x01\xed+\x02\x08\x8f\xfe\xad\xff\x01\xef-\ -\x02\x09\x91\xfe\xf1\xff\x00\xfe\xdb\xff\xfe\xfe\xfd\xff\x00\xfe\ -\xec\xff\x01\xef,\x02\x08\x91\xfe\xfa\xff\x17\xfe\xcf\xc2\xc3\ -\xc2\xc4\xc3\xc4\xc3\xc3\xc4\xc4\xc1\xc3\xc3\xc2\xc3\xc2\xc2\xc3\ -\xc2\xc3\xc4\xc4\xfe\xc2\xfd\xc3\x0a\xc2\xc3\xc3\xc2\xc3\xc3\xc2\ -\xc3\xc2\xc2\xc1\xfe\xc3\xff\xc4\xf9\xc3\x06\xc4\xc3\xc3\xc4\xc2\ -\xc3\xc4\xfe\xc3\xff\xc2\x01\xc7\xf1\xf9\xff\x01\xf0-\x02\x09\ -\x90\xfe\xfa\xff\x03\xfaK\x18\x17\xfc\x18\x16\x17\x18\x16\x19\ -\x17\x18\x19\x19\x18\x19\x18\x17\x18\x19\x19\x18\x17\x17\x19\x17\ -\x17\x19\x17\xfb\x18\x11\x17\x16\x18\x16\x19\x19\x17\x18\x18\x19\ -\x18\x18\x19\x17\x19\x18\x19\x18\xfd\x19\x08\x18\x19\x19\x18\x19\ -\x19\x17,\xc7\xf9\xff\x01\xf0,\x01\x09\x90\xf9\xff\x01\xf9\ -8\xc0\x00\x01\x15\xc0\xf9\xff\x01\xef.\x02\x09\x91\xfe\xfa\ -\xff\x01\xf97\xc0\x00\x02\x14\xc2\xfe\xfa\xff\x01\xf0-\x02\ -\x09\x90\xfe\xfa\xff\x01\xf88\xc0\x00\x02\x14\xc2\xfe\xfa\xff\ -\x01\xef/\x01\x08\x90\xf9\xff\x01\xf99\xc0\x00\x01\x14\xc1\ -\xf9\xff\x01\xf0/\x02\x09\x90\xfe\xfa\xff\x01\xf97\xc0\x00\ -\x01\x12\xc0\xf9\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\x01\xf9\ -8\xc0\x00\x01\x14\xc2\xf9\xff\x01\xf1-\x02\x09\x90\xfe\xfa\ -\xff\x01\xfa8\xc0\x00\x01\x15\xc1\xf9\xff\x01\xef-\x01\x09\ -\x92\xf9\xff\x01\xf97\xe7\x00\x0d\x1aU\x87\xb8\xd5\xe6\xf7\ -\xf7\xe6\xd6\xb9\x88V\x1a\xe8\x00\x01\x15\xc2\xf9\xff\x01\xef\ -,\x02\x09\x91\xfe\xfa\xff\x01\xf98\xea\x00\x03\x1bw\xc7\ -\xfe\xf5\xff\x03\xfe\xc9x\x1d\xeb\x00\x01\x14\xc2\xf9\xff\x01\ -\xf0/\x01\x09\x90\xf9\xff\x01\xfa7\xec\x00\x028\xa8\xfb\ -\xef\xff\x02\xfb\xaa:\xed\x00\x01\x15\xc2\xf9\xff\x01\xef-\ -\x01\x09\x91\xf9\xff\x01\xf87\xee\x00\x01\x1c\xaa\xe9\xff\x01\ -\xac\x1e\xef\x00\x02\x14\xc1\xfe\xfa\xff\x01\xef/\x02\x08\x90\ -\xfe\xfa\xff\x01\xf98\xf0\x00\x02\x06x\xf4\xe7\xff\x02\xf5\ -z\x07\xf1\x00\x01\x15\xc2\xf9\xff\x01\xf0-\x02\x09\x91\xfe\ -\xfa\xff\x01\xf97\xf1\x00\x01F\xd9\xe3\xff\x01\xdbH\xf2\ -\x00\x01\x14\xc3\xf9\xff\x01\xf0/\x02\x09\x91\xfe\xfa\xff\x01\ -\xfa7\xf3\x00\x01\x02\x85\xdf\xff\x01\x88\x02\xf4\x00\x01\x15\ -\xc1\xf9\xff\x01\xf1-\x02\x09\x92\xfe\xfa\xff\x01\xf88\xf4\ -\x00\x01\x10\xb5\xdd\xff\x01\xb7\x10\xf5\x00\x01\x15\xc2\xf9\xff\ -\x01\xf0.\x01\x09\x90\xf9\xff\x01\xf98\xf5\x00\x01*\xda\ -\xdb\xff\x01\xdb+\xf6\x00\x01\x15\xc2\xf9\xff\x01\xf0.\x02\ -\x09\x90\xfe\xfa\xff\x01\xf99\xf6\x00\x01C\xf2\xd9\xff\x01\ -\xf3E\xf7\x00\x02\x15\xc3\xfe\xfa\xff\x01\xef-\x01\x08\x91\ -\xf9\xff\x01\xf97\xf7\x00\x01D\xf6\xd7\xff\x01\xf7E\xf8\ -\x00\x02\x14\xc2\xfe\xfa\xff\x01\xf0/\x02\x09\x91\xfe\xfa\xff\ -\x01\xf98\xf8\x00\x01F\xf7\xf0\xff\x07\xe5\x91H*\x0d\ -\x0c&\xe3\xee\xff\x01\xf7F\xf9\x00\x01\x14\xc1\xf9\xff\x01\ -\xf0.\x02\x09\x91\xfe\xfa\xff\x01\xf98\xf9\x00\x01G\xf7\ -\xf1\xff\x02\xe0S\x02\xfb\x00\x00\xdb\xed\xff\x01\xf7G\xfa\ -\x00\x01\x14\xc1\xf9\xff\x01\xf0.\x02\x09\x91\xfe\xfa\xff\x01\ -\xf99\xfa\x00\x015\xf5\xf1\xff\x01\x8c\x09\xf9\x00\x00\xdb\ -\xec\xff\x01\xf54\xfb\x00\x01\x14\xc2\xf9\xff\x01\xf1.\x02\ -\x09\x92\xfe\xfa\xff\x01\xf99\xfb\x00\x01\x1e\xe7\xf2\xff\x01\ -\xfdj\xf7\x00\x00\xdb\xeb\xff\x01\xe7\x1d\xfc\x00\x01\x15\xc1\ -\xf9\xff\x01\xf0/\x02\x08\x93\xfe\xfa\xff\x01\xf98\xfc\x00\ -\x01\x0e\xd3\xf1\xff\x00d\xf6\x00\x00\xdb\xea\xff\x01\xd1\x0d\ -\xfd\x00\x02\x15\xc1\xfe\xfa\xff\x01\xef.\x02\x09\x91\xfe\xfa\ -\xff\x01\xf98\xfd\x00\x01\x01\xb4\xf1\xff\x00\x9f\xf5\x00\x00\ -\xdb\xe9\xff\x01\xb1\x01\xfe\x00\x01\x14\xc1\xf9\xff\x01\xef-\ -\x01\x08\x8f\xf9\xff\x01\xf99\xfd\x00\x00|\xf1\xff\x01\xdf\ -\x0a\xf5\x00\x00\xdb\xe8\xff\x00w\xfe\x00\x02\x15\xbf\xfe\xfa\ -\xff\x01\xee.\x02\x09\x92\xfe\xfa\xff\x01\xf89\xfe\x00\x01\ -<\xfc\xf1\xff\x00d\xf4\x00\x00\xdb\xe8\xff\x05\xfb7\x00\ -\x00\x14\xc2\xf9\xff\x01\xef.\x01\x09\x91\xf9\xff\x05\xf98\ -\x00\x00\x0e\xe0\xf1\xff\x01\xe0\x05\xf4\x00\x00\xdb\xe7\xff\x04\ -\xda\x0a\x00\x14\xc1\xf9\xff\x01\xf0-\x02\x09\x90\xfe\xfa\xff\ -\x04\xf98\x00\x00\x8d\xf0\xff\x00\x89\xf3\x00\x00\xdb\xe6\xff\ -\x03\x81\x00\x14\xc1\xf9\xff\x01\xef,\x02\x09\x90\xfe\xfa\xff\ -\x04\xf97\x00\x10\xf3\xf0\xff\x00@\xf3\x00\x00\xdb\xe6\xff\ -\x03\xee\x0c\x15\xc2\xf9\xff\x01\xf1.\x01\x09\x91\xf9\xff\x03\ -\xf98\x00v\xf0\xff\x01\xf6\x05\xf3\x00\x00\xdb\xe5\xff\x02\ -q\x14\xc3\xf9\xff\x01\xf1.\x02\x09\x92\xfe\xfa\xff\x03\xf9\ -9\x00\xb5\xf0\xff\x00\xdc\xf2\x00\x00\x22\xf7'\x00\xd9\xf0\ -\xff\x02\xb2\x13\xc2\xf9\xff\x01\xf0.\x02\x09\x91\xfe\xfa\xff\ -\x03\xf97\x00\xd9\xf0\xff\x00\xc4\xe7\x00\x00\xbe\xf0\xff\x03\ -\xd7\x15\xc2\xfe\xfa\xff\x01\xf0.\x02\x09\x91\xfe\xfa\xff\x03\ -\xf98\x00\xf6\xf0\xff\x00\xb3\xe7\x00\x00\xaf\xf0\xff\x02\xf6\ -\x14\xc1\xf9\xff\x01\xef.\x02\x09\x91\xfe\xfa\xff\x03\xf88\ -\x00\xdf\xf0\xff\x00\xc6\xe7\x00\x00\xc2\xf0\xff\x02\xde\x15\xc1\ -\xf9\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\x03\xf97\x00\xbb\ -\xf0\xff\x00\xdd\xe7\x00\x00\xd9\xf0\xff\x03\xb9\x14\xc2\xfe\xfa\ -\xff\x01\xf1.\x02\x09\x91\xfe\xfa\xff\x03\xf98\x00\x88\xf0\ -\xff\x01\xf7\x06\xe9\x00\x01\x05\xf5\xf0\xff\x03\x84\x15\xc2\xfe\ -\xfa\xff\x01\xef.\x02\x09\x90\xfe\xfa\xff\x04\xf98\x00\x1f\ -\xfc\xf0\xff\x00B\xe9\x00\x00?\xf0\xff\x03\xf9\x1a\x14\xc1\ -\xf9\xff\x01\xef.\x02\x09\x92\xfe\xfa\xff\x04\xf97\x00\x00\ -\xa9\xf0\xff\x00\x8b\xe9\x00\x00\x89\xf0\xff\x03\x9e\x00\x15\xc2\ -\xf9\xff\x01\xf0.\x01\x09\x91\xf9\xff\x05\xf98\x00\x00\x22\ -\xf2\xf1\xff\x01\xe2\x06\xeb\x00\x01\x06\xe1\xf1\xff\x04\xef\x1b\ -\x00\x15\xc1\xf9\xff\x01\xef.\x01\x09\x91\xf9\xff\x01\xf97\ -\xfe\x00\x00^\xf0\xff\x00h\xeb\x00\x00g\xf0\xff\x04W\ -\x00\x00\x14\xc0\xf9\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\x01\ -\xf98\xfd\x00\x00\x9f\xf1\xff\x01\xe1\x0b\xed\x00\x01\x0b\xe2\ -\xf1\xff\x00\x9a\xfe\x00\x01\x13\xc0\xf9\xff\x01\xf0.\x02\x09\ -\x91\xfe\xfa\xff\x01\xf97\xfd\x00\x01\x09\xce\xf1\xff\x00\xa4\ -\xed\x00\x00\xa5\xf1\xff\x01\xcc\x07\xfe\x00\x01\x14\xc1\xf9\xff\ -\x01\xf1.\x01\x09\x91\xf9\xff\x01\xfa8\xfc\x00\x01\x1d\xe5\ -\xf1\xff\x00j\xef\x00\x00l\xf1\xff\x01\xe4\x1b\xfd\x00\x01\ -\x15\xc1\xf9\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\x01\xf97\ -\xfb\x00\x010\xf3\xf2\xff\x01\xfer\xf1\x00\x01u\xfe\xf2\ -\xff\x01\xf2/\xfc\x00\x01\x13\xc2\xf9\xff\x01\xf0-\x02\x09\ -\x91\xfe\xfa\xff\x01\xf99\xfa\x00\x01I\xfc\xf1\xff\x01\x95\ -\x0d\xf5\x00\x01\x0e\x98\xf1\xff\x01\xfcH\xfb\x00\x02\x15\xc2\ -\xfe\xfa\xff\x01\xf1.\x01\x09\x92\xf9\xff\x01\xf98\xf9\x00\ -\x01\x5c\xfc\xf1\xff\x02\xe6_\x05\xf9\x00\x02\x06`\xe8\xf1\ -\xff\x01\xfc\x5c\xfa\x00\x01\x15\xc2\xf9\xff\x01\xf0-\x02\x09\ -\x91\xfe\xfa\xff\x01\xf86\xf8\x00\x01Y\xfc\xf0\xff\x09\xee\ -\x9eV8\x1c\x1c8V\x9f\xef\xf0\xff\x01\xfcY\xf9\x00\ -\x02\x14\xc1\xfe\xfa\xff\x01\xf0-\x02\x09\x91\xfe\xfa\xff\x01\ -\xf98\xf7\x00\x01T\xfb\xd7\xff\x01\xfbU\xf8\x00\x01\x14\ -\xc2\xf9\xff\x01\xf0.\x02\x09\x92\xfe\xfa\xff\x01\xf86\xf6\ -\x00\x01P\xf7\xd9\xff\x01\xf8Q\xf7\x00\x01\x14\xc1\xf9\xff\ -\x01\xf0/\x01\x09\x91\xf9\xff\x01\xf98\xf5\x00\x013\xe1\ -\xdb\xff\x01\xe24\xf6\x00\x02\x15\xc1\xfe\xfa\xff\x01\xf0.\ -\x02\x09\x91\xfe\xfa\xff\x01\xf88\xf4\x00\x01\x14\xbd\xdd\xff\ -\x01\xbf\x15\xf5\x00\x01\x15\xc2\xf9\xff\x01\xf1-\x01\x09\x91\ -\xf9\xff\x01\xfa8\xf3\x00\x01\x03\x8b\xdf\xff\x01\x8e\x04\xf4\ -\x00\x01\x13\xc2\xf9\xff\x01\xf0.\x01\x08\x90\xf9\xff\x01\xf9\ -8\xf1\x00\x01I\xdb\xe3\xff\x01\xdcK\xf2\x00\x02\x14\xc2\ -\xfe\xfa\xff\x01\xf0.\x01\x09\x91\xf9\xff\x01\xf98\xf0\x00\ -\x02\x06x\xf4\xe7\xff\x02\xf4z\x07\xf1\x00\x01\x13\xc2\xf9\ -\xff\x01\xf0.\x02\x08\x91\xfe\xfa\xff\x01\xf97\xee\x00\x01\ -\x1b\xa6\xe9\xff\x01\xa8\x1c\xef\x00\x02\x15\xc0\xfe\xfa\xff\x01\ -\xef-\x02\x09\x91\xfe\xfa\xff\x01\xf89\xec\x00\x023\xa1\ -\xf8\xef\xff\x02\xf9\xa24\xed\x00\x01\x14\xc2\xf9\xff\x01\xef\ --\x01\x09\x90\xf9\xff\x01\xf96\xea\x00\x03\x15m\xbd\xfb\ -\xf5\xff\x03\xfb\xben\x16\xeb\x00\x01\x14\xc0\xf9\xff\x01\xf1\ -,\x01\x09\x90\xf9\xff\x01\xf97\xe7\x00\x0d\x11Iz\xaa\ -\xc7\xd8\xe8\xe9\xd8\xc8\xabzJ\x11\xe8\x00\x01\x14\xc1\xf9\ -\xff\x01\xef/\x02\x09\x90\xfe\xfa\xff\x01\xf98\xc0\x00\x01\ -\x15\xc1\xf9\xff\x01\xf0-\x02\x09\x91\xfe\xfa\xff\x01\xf98\ -\xc0\x00\x01\x14\xc2\xf9\xff\x01\xef.\x02\x09\x91\xfe\xfa\xff\ -\x01\xf98\xc0\x00\x01\x14\xc1\xf9\xff\x01\xf0-\x01\x09\x91\ -\xf9\xff\x01\xf97\xc0\x00\x01\x14\xc1\xf9\xff\x01\xef.\x02\ -\x09\x90\xfe\xfa\xff\x01\xf99\xc0\x00\x02\x15\xc1\xfe\xfa\xff\ -\x01\xf0-\x01\x08\x91\xf9\xff\x01\xfa8\xc0\x00\x01\x15\xc1\ -\xf9\xff\x01\xf0.\x02\x09\x92\xfe\xfa\xff\x01\xf97\xc0\x00\ -\x01\x14\xc1\xf9\xff\x01\xf0-\x02\x09\x90\xfe\xfa\xff\x01\xf9\ -7\xc0\x00\x01\x14\xc3\xf9\xff\x01\xf1-\x02\x09\x91\xfe\xfa\ -\xff\x02\xfad;\xfe:\xfe9\x1589;;9:\ -:8;9:7:9:;99;:98\ -\xfd:\xff8\x017;\xfc9\x09;:9;;8\ -:979\xfe:\xff9\x09:89::8;\ -9J\xcf\xf9\xff\x01\xf0-\x01\x09\x91\xf8\xff\x00\xfa\xfd\ -\xf9\x08\xf8\xf9\xf9\xf8\xf9\xf8\xf8\xf9\xf8\xfd\xf9\x06\xfa\xf9\ -\xf9\xf8\xf9\xf8\xf8\xfe\xf9\x00\xf8\xfe\xf9\x0e\xf8\xf9\xf9\xf8\ -\xf9\xf8\xf9\xf8\xf8\xf9\xf8\xf9\xf9\xf8\xf8\xfd\xf9\x00\xf8\xfe\ -\xf9\x05\xf8\xf9\xf9\xf8\xfa\xfa\xfe\xf9\xff\xf8\x01\xf9\xfe\xf9\ -\xff\x01\xf0.\x02\x09\x91\xfe\xad\xff\x01\xf0.\x02\x08\x91\ -\xfe\xad\xff\x01\xee-\x01\x09\x8d\xac\xff\x01\xe9+\x02\x07\ -{\xfe\xad\xff\x01\xd5\x1f\x02\x04U\xf6\xae\xff\x02\xfd\xa3\ -\x0f\x02\x01'\xc9\xae\xff\x02\xe7Q\x03\x03\x00\x09]\xe9\ -\xb0\xff\x03\xf0\x80\x13\x00\xff\x00\x03\x12`\xcc\xf7\xfb\xfe\ -\x00\xff\xfc\xfe\x00\xff\xfe\xfe\x02\xff\xfe\xff\xfe\xfe\x05\xff\ -\xfe\xfe\xff\xfe\xff\xfd\xfe\x0a\xff\xfe\xff\xfe\xfe\xff\xfe\xff\ -\xff\xfe\xfe\xfc\xff\xff\xfe\xfe\xff\x04\xfe\xff\xfe\xff\xff\xfb\ -\xfe\xff\xff\xff\xfe\x02\xff\xfe\xff\xfc\xfe\x06\xfd\xf5\xcel\ -\x17\x00\x00\xff\x00\x08\x01\x0a.`\x86\x96\x97\x92\x92\xfe\ -\x91\xff\x92\x13\x93\x92\x92\x91\x92\x92\x90\x91\x92\x91\x90\x91\ -\x92\x91\x91\x93\x91\x91\x94\x91\xfc\x92\x05\x91\x92\x91\x91\x90\ -\x92\xfe\x91\x0f\x90\x92\x92\x93\x91\x90\x92\x92\x90\x92\x91\x90\ -\x91\x92\x92\x90\xfd\x91\x03\x93\x91\x90\x90\xfe\x91\x0b\x93\x90\ -\x90\x92\x8ayU+\x0c\x01\x00\x00\xfd\x00\x04\x01\x05\x0a\ -\x0c\x0b\xfb\x0a\x00\x09\xf2\x0a\xff\x09\xf0\x0a\x00\x09\xf6\x0a\ -\x00\x09\xee\x0a\x02\x08\x04\x01\xfd\x00\x01\x00\x02\x00\x02\x00\ -\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\ -\x02\x00\x02\x00\x02\x00\x02\x00\x06\x00\x06\x00\x06\x00\x06\x00\ -\x06\x00\x11\x00\x10\x00\x0c\x00\x0c\x00\x0e\x00\x0c\x00\x0f\x00\ -\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x12\x00\x11\x00\x14\x00\x10\x00\ -\x12\x00\x14\x00\x12\x00\x0e\x00\x0f\x00\x0f\x00\x10\x00\x0e\x00\ -\x0a\x00\x06\x00\x08\x00\x08\x00\x06\x00\x08\x00\x10\x00\x11\x00\ -\x14\x00\x16\x00\x16\x00\x15\x00\x14\x00\x14\x00\x17\x00\x14\x00\ -\x16\x00\x0c\x00\x0a\x00\x0e\x00\x0f\x00\x0f\x00\x0c\x00\x0e\x00\ -\x0e\x00\x0e\x00\x10\x00\x13\x00\x06\x00\x06\x00\x06\x00\x06\x00\ -\x06\x00\x06\x00\x06\x00\x06\x00\x02\x00\x02\x00\x02\x00\x02\x00\ -\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\ -\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\ -\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xf4\xcc\xc1\xff\ -\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\ -\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xe8\x00\x03\xcd\ -\xcc\xcc\xcd\xf8\xcc\x00\xcd\xe8\x00\xf5\xcc\xf4\xcc\xeb\x00\x02\ -\xcf\xcd\xcd\xf1\xcc\x00\xd3\xeb\x00\xf5\xcc\xf4\xcc\xed\x00\xea\ -\xcc\x00\xce\xed\x00\xf5\xcc\xf4\xcc\xef\x00\x00\xd1\xe6\xcc\xef\ -\x00\xf5\xcc\xf4\xcc\xf1\x00\x00\xd4\xe3\xcc\x00\xda\xf1\x00\xf5\ -\xcc\xf4\xcc\xf2\x00\xe0\xcc\x00\xcd\xf2\x00\xf5\xcc\xf4\xcc\xf4\ -\x00\x01\xff\xcd\xde\xcc\x00\xff\xf4\x00\xf5\xcc\xf4\xcc\xf5\x00\ -\x00\xcf\xdb\xcc\x00\xcf\xf5\x00\xf5\xcc\xf4\xcc\xf6\x00\x00\xce\ -\xd9\xcc\x00\xcf\xf6\x00\xf5\xcc\xf4\xcc\xf7\x00\x00\xcd\xd7\xcc\ -\x00\xce\xf7\x00\xf5\xcc\xf4\xcc\xf8\x00\x00\xce\xd5\xcc\x00\xce\ -\xf8\x00\xf5\xcc\xf4\xcc\xf9\x00\xec\xcc\x04\xcd\xce\xd7\xd4\xd0\ -\xeb\xcc\xf9\x00\xf5\xcc\xf4\xcc\xfa\x00\xee\xcc\x01\xcd\xff\xfb\ -\x00\xea\xcc\xfa\x00\xf5\xcc\xf4\xcc\xfb\x00\x00\xce\xef\xcc\x00\ -\xe2\xf9\x00\xea\xcc\x00\xcd\xfb\x00\xf5\xcc\xf4\xcc\xfc\x00\xee\ -\xcc\xf7\x00\xe9\xcc\x00\xd3\xfc\x00\xf5\xcc\xf4\xcc\xfd\x00\x00\ -\xda\xef\xcc\xf6\x00\xe8\xcc\x00\xd7\xfd\x00\xf5\xcc\xf4\xcc\xfe\ -\x00\x00\xff\xf0\xcc\x00\xcd\xf5\x00\xe7\xcc\x00\xff\xfe\x00\xf5\ -\xcc\xf4\xcc\xfe\x00\x00\xcd\xef\xcc\xf5\x00\xe7\xcc\x00\xcd\xfe\ -\x00\xf5\xcc\xf4\xcc\xff\x00\xee\xcc\xf4\x00\xe5\xcc\xff\x00\xf5\ -\xcc\xf4\xcc\x01\x00\xda\xee\xcc\xf4\x00\xe4\xcc\x00\x00\xf5\xcc\ -\xf4\xcc\x00\x00\xee\xcc\xf3\x00\xe5\xcc\x01\xcd\x00\xf5\xcc\xf4\ -\xcc\x00\xcf\xef\xcc\x00\xcf\xf3\x00\xe4\xcc\x00\xd4\xf5\xcc\xf4\ -\xcc\x00\xcd\xee\xcc\xf3\x00\xe4\xcc\x00\xcd\xf5\xcc\xe1\xcc\xf2\ -\x00\x00\xd2\xf7\xd1\xe2\xcc\xe1\xcc\xe7\x00\xe2\xcc\xe2\xcc\x00\ -\xcd\xe7\x00\xe2\xcc\xe1\xcc\xe7\x00\x00\xcd\xe3\xcc\xe1\xcc\xe7\ -\x00\xe2\xcc\xe1\xcc\x00\xd4\xe9\x00\xe1\xcc\xf4\xcc\x00\xcd\xee\ -\xcc\xe9\x00\x00\xce\xef\xcc\x00\xcd\xf5\xcc\xf4\xcc\x01\x00\xcd\ -\xf0\xcc\x00\xcd\xe9\x00\xee\xcc\x00\x00\xf5\xcc\xf4\xcc\x01\x00\ -\xd2\xef\xcc\x00\xd4\xeb\x00\x00\xd4\xef\xcc\x01\xcf\x00\xf5\xcc\ -\xf4\xcc\xff\x00\x00\xce\xf0\xcc\x00\xcd\xeb\x00\x00\xcd\xf0\xcc\ -\x02\xcd\x00\x00\xf5\xcc\xf4\xcc\xfe\x00\x00\xcd\xf0\xcc\x00\xd0\ -\xed\x00\x00\xd0\xf0\xcc\x00\xcd\xfe\x00\xf5\xcc\xf4\xcc\xfe\x00\ -\x00\xe2\xf0\xcc\x00\xcd\xed\x00\xf0\xcc\x01\xcd\xda\xfe\x00\xf5\ -\xcc\xf4\xcc\xfd\x00\x00\xd3\xef\xcc\xef\x00\x00\xcd\xf0\xcc\x00\ -\xcf\xfd\x00\xf5\xcc\xf4\xcc\xfc\x00\x00\xcf\xf0\xcc\x00\xcd\xf1\ -\x00\xef\xcc\x00\xce\xfc\x00\xf5\xcc\xf4\xcc\xfb\x00\x00\xce\xf0\ -\xcc\x01\xcd\xd7\xf5\x00\x00\xda\xef\xcc\x00\xcd\xfb\x00\xf5\xcc\ -\xf4\xcc\xfa\x00\x00\xcd\xed\xcc\xf9\x00\x00\xd4\xee\xcc\x00\xcd\ -\xfa\x00\xf5\xcc\xf4\xcc\xf9\x00\x00\xce\xeb\xcc\xff\xd1\xff\xcc\ -\x00\xcd\xee\xcc\x00\xce\xf9\x00\xf5\xcc\xf4\xcc\xf8\x00\x00\xce\ -\xd4\xcc\xf8\x00\xf5\xcc\xf4\xcc\xf7\x00\xd5\xcc\xf7\x00\xf5\xcc\ -\xf4\xcc\xf6\x00\x00\xcd\xd9\xcc\x00\xcd\xf6\x00\xf5\xcc\xf4\xcc\ -\xf5\x00\x01\xcc\xcd\xdc\xcc\x00\xce\xf5\x00\xf5\xcc\xf4\xcc\xf4\ -\x00\x01\xff\xcd\xde\xcc\x00\xff\xf4\x00\xf5\xcc\xf4\xcc\xf2\x00\ -\x00\xce\xe0\xcc\xf2\x00\xf5\xcc\xf4\xcc\xf1\x00\x00\xd4\xe3\xcc\ -\x00\xda\xf1\x00\xf5\xcc\xf4\xcc\xef\x00\x00\xcf\xe7\xcc\x00\xd1\ -\xef\x00\xf5\xcc\xf4\xcc\xed\x00\x00\xcd\xeb\xcc\x00\xcd\xed\x00\ -\xf5\xcc\xf4\xcc\xeb\x00\x02\xce\xcd\xcd\xf1\xcc\x00\xd0\xeb\x00\ -\xf5\xcc\xf4\xcc\xe8\x00\x04\xd2\xce\xcc\xcc\xcd\xfa\xcc\x01\xce\ -\xd2\xe8\x00\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\ -\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\ -\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\ -\xcc\xc1\xff\xf5\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\ -\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\x01\x00\x02\ -\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\ -\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x06\x00\x06\x00\x06\ -\x00\x06\x00\x06\x00\x11\x00\x10\x00\x0c\x00\x0c\x00\x0e\x00\x0c\ -\x00\x0f\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x12\x00\x11\x00\x14\ -\x00\x10\x00\x12\x00\x14\x00\x12\x00\x0e\x00\x0f\x00\x0f\x00\x10\ -\x00\x0e\x00\x0a\x00\x06\x00\x08\x00\x08\x00\x06\x00\x08\x00\x10\ -\x00\x11\x00\x14\x00\x16\x00\x16\x00\x15\x00\x14\x00\x14\x00\x17\ -\x00\x14\x00\x16\x00\x0c\x00\x0a\x00\x0e\x00\x0f\x00\x0f\x00\x0c\ -\x00\x0e\x00\x0e\x00\x0e\x00\x10\x00\x13\x00\x06\x00\x06\x00\x06\ -\x00\x06\x00\x06\x00\x06\x00\x06\x00\x06\x00\x02\x00\x02\x00\x02\ -\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\ -\x00\x02\x00\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\ -\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xf4\ -\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\ -\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xe8\ -\x00\x03\xcd\xcc\xcc\xcd\xf8\xcc\x00\xcd\xe8\x00\xf5\xcc\xf4\xcc\ -\xeb\x00\x02\xcf\xcd\xcd\xf1\xcc\x00\xd3\xeb\x00\xf5\xcc\xf4\xcc\ -\xed\x00\xea\xcc\x00\xce\xed\x00\xf5\xcc\xf4\xcc\xef\x00\x00\xd1\ -\xe6\xcc\xef\x00\xf5\xcc\xf4\xcc\xf1\x00\x00\xd4\xe3\xcc\x00\xda\ -\xf1\x00\xf5\xcc\xf4\xcc\xf2\x00\xe0\xcc\x00\xcd\xf2\x00\xf5\xcc\ -\xf4\xcc\xf4\x00\x01\xff\xcd\xde\xcc\x00\xff\xf4\x00\xf5\xcc\xf4\ -\xcc\xf5\x00\x00\xcf\xdb\xcc\x00\xcf\xf5\x00\xf5\xcc\xf4\xcc\xf6\ -\x00\x00\xce\xd9\xcc\x00\xcf\xf6\x00\xf5\xcc\xf4\xcc\xf7\x00\x00\ -\xcd\xd7\xcc\x00\xce\xf7\x00\xf5\xcc\xf4\xcc\xf8\x00\x00\xce\xd5\ -\xcc\x00\xce\xf8\x00\xf5\xcc\xf4\xcc\xf9\x00\xec\xcc\x04\xcd\xce\ -\xd7\xd4\xd0\xeb\xcc\xf9\x00\xf5\xcc\xf4\xcc\xfa\x00\xee\xcc\x01\ -\xcd\xff\xfb\x00\xea\xcc\xfa\x00\xf5\xcc\xf4\xcc\xfb\x00\x00\xce\ -\xef\xcc\x00\xe2\xf9\x00\xea\xcc\x00\xcd\xfb\x00\xf5\xcc\xf4\xcc\ -\xfc\x00\xee\xcc\xf7\x00\xe9\xcc\x00\xd3\xfc\x00\xf5\xcc\xf4\xcc\ -\xfd\x00\x00\xda\xef\xcc\xf6\x00\xe8\xcc\x00\xd7\xfd\x00\xf5\xcc\ -\xf4\xcc\xfe\x00\x00\xff\xf0\xcc\x00\xcd\xf5\x00\xe7\xcc\x00\xff\ -\xfe\x00\xf5\xcc\xf4\xcc\xfe\x00\x00\xcd\xef\xcc\xf5\x00\xe7\xcc\ -\x00\xcd\xfe\x00\xf5\xcc\xf4\xcc\xff\x00\xee\xcc\xf4\x00\xe5\xcc\ -\xff\x00\xf5\xcc\xf4\xcc\x01\x00\xda\xee\xcc\xf4\x00\xe4\xcc\x00\ -\x00\xf5\xcc\xf4\xcc\x00\x00\xee\xcc\xf3\x00\xe5\xcc\x01\xcd\x00\ -\xf5\xcc\xf4\xcc\x00\xcf\xef\xcc\x00\xcf\xf3\x00\xe4\xcc\x00\xd4\ -\xf5\xcc\xf4\xcc\x00\xcd\xee\xcc\xf3\x00\xe4\xcc\x00\xcd\xf5\xcc\ -\xe1\xcc\xf2\x00\x00\xd2\xf7\xd1\xe2\xcc\xe1\xcc\xe7\x00\xe2\xcc\ -\xe2\xcc\x00\xcd\xe7\x00\xe2\xcc\xe1\xcc\xe7\x00\x00\xcd\xe3\xcc\ -\xe1\xcc\xe7\x00\xe2\xcc\xe1\xcc\x00\xd4\xe9\x00\xe1\xcc\xf4\xcc\ -\x00\xcd\xee\xcc\xe9\x00\x00\xce\xef\xcc\x00\xcd\xf5\xcc\xf4\xcc\ -\x01\x00\xcd\xf0\xcc\x00\xcd\xe9\x00\xee\xcc\x00\x00\xf5\xcc\xf4\ -\xcc\x01\x00\xd2\xef\xcc\x00\xd4\xeb\x00\x00\xd4\xef\xcc\x01\xcf\ -\x00\xf5\xcc\xf4\xcc\xff\x00\x00\xce\xf0\xcc\x00\xcd\xeb\x00\x00\ -\xcd\xf0\xcc\x02\xcd\x00\x00\xf5\xcc\xf4\xcc\xfe\x00\x00\xcd\xf0\ -\xcc\x00\xd0\xed\x00\x00\xd0\xf0\xcc\x00\xcd\xfe\x00\xf5\xcc\xf4\ -\xcc\xfe\x00\x00\xe2\xf0\xcc\x00\xcd\xed\x00\xf0\xcc\x01\xcd\xda\ -\xfe\x00\xf5\xcc\xf4\xcc\xfd\x00\x00\xd3\xef\xcc\xef\x00\x00\xcd\ -\xf0\xcc\x00\xcf\xfd\x00\xf5\xcc\xf4\xcc\xfc\x00\x00\xcf\xf0\xcc\ -\x00\xcd\xf1\x00\xef\xcc\x00\xce\xfc\x00\xf5\xcc\xf4\xcc\xfb\x00\ -\x00\xce\xf0\xcc\x01\xcd\xd7\xf5\x00\x00\xda\xef\xcc\x00\xcd\xfb\ -\x00\xf5\xcc\xf4\xcc\xfa\x00\x00\xcd\xed\xcc\xf9\x00\x00\xd4\xee\ -\xcc\x00\xcd\xfa\x00\xf5\xcc\xf4\xcc\xf9\x00\x00\xce\xeb\xcc\xff\ -\xd1\xff\xcc\x00\xcd\xee\xcc\x00\xce\xf9\x00\xf5\xcc\xf4\xcc\xf8\ -\x00\x00\xce\xd4\xcc\xf8\x00\xf5\xcc\xf4\xcc\xf7\x00\xd5\xcc\xf7\ -\x00\xf5\xcc\xf4\xcc\xf6\x00\x00\xcd\xd9\xcc\x00\xcd\xf6\x00\xf5\ -\xcc\xf4\xcc\xf5\x00\x01\xcc\xcd\xdc\xcc\x00\xce\xf5\x00\xf5\xcc\ -\xf4\xcc\xf4\x00\x01\xff\xcd\xde\xcc\x00\xff\xf4\x00\xf5\xcc\xf4\ -\xcc\xf2\x00\x00\xce\xe0\xcc\xf2\x00\xf5\xcc\xf4\xcc\xf1\x00\x00\ -\xd4\xe3\xcc\x00\xda\xf1\x00\xf5\xcc\xf4\xcc\xef\x00\x00\xcf\xe7\ -\xcc\x00\xd1\xef\x00\xf5\xcc\xf4\xcc\xed\x00\x00\xcd\xeb\xcc\x00\ -\xcd\xed\x00\xf5\xcc\xf4\xcc\xeb\x00\x02\xce\xcd\xcd\xf1\xcc\x00\ -\xd0\xeb\x00\xf5\xcc\xf4\xcc\xe8\x00\x04\xd2\xce\xcc\xcc\xcd\xfa\ -\xcc\x01\xce\xd2\xe8\x00\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\ -\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\ -\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\ -\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\ -\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\ -\x01\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\ -\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x06\x00\ -\x06\x00\x06\x00\x06\x00\x06\x00\x11\x00\x10\x00\x0c\x00\x0c\x00\ -\x0e\x00\x0c\x00\x0f\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x12\x00\ -\x11\x00\x14\x00\x10\x00\x12\x00\x14\x00\x12\x00\x0e\x00\x0f\x00\ -\x0f\x00\x10\x00\x0e\x00\x0a\x00\x06\x00\x08\x00\x08\x00\x06\x00\ -\x08\x00\x10\x00\x11\x00\x14\x00\x16\x00\x16\x00\x15\x00\x14\x00\ -\x14\x00\x17\x00\x14\x00\x16\x00\x0c\x00\x0a\x00\x0e\x00\x0f\x00\ -\x0f\x00\x0c\x00\x0e\x00\x0e\x00\x0e\x00\x10\x00\x13\x00\x06\x00\ -\x06\x00\x06\x00\x06\x00\x06\x00\x06\x00\x06\x00\x06\x00\x02\x00\ -\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\ -\x02\x00\x02\x00\x02\x00\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\ -\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\ -\xa8\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\ -\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\ -\xf4\xcc\xe8\x00\x03\xcd\xcc\xcc\xcd\xf8\xcc\x00\xcd\xe8\x00\xf5\ -\xcc\xf4\xcc\xeb\x00\x02\xcf\xcd\xcd\xf1\xcc\x00\xd3\xeb\x00\xf5\ -\xcc\xf4\xcc\xed\x00\xea\xcc\x00\xce\xed\x00\xf5\xcc\xf4\xcc\xef\ -\x00\x00\xd1\xe6\xcc\xef\x00\xf5\xcc\xf4\xcc\xf1\x00\x00\xd4\xe3\ -\xcc\x00\xda\xf1\x00\xf5\xcc\xf4\xcc\xf2\x00\xe0\xcc\x00\xcd\xf2\ -\x00\xf5\xcc\xf4\xcc\xf4\x00\x01\xff\xcd\xde\xcc\x00\xff\xf4\x00\ -\xf5\xcc\xf4\xcc\xf5\x00\x00\xcf\xdb\xcc\x00\xcf\xf5\x00\xf5\xcc\ -\xf4\xcc\xf6\x00\x00\xce\xd9\xcc\x00\xcf\xf6\x00\xf5\xcc\xf4\xcc\ -\xf7\x00\x00\xcd\xd7\xcc\x00\xce\xf7\x00\xf5\xcc\xf4\xcc\xf8\x00\ -\x00\xce\xd5\xcc\x00\xce\xf8\x00\xf5\xcc\xf4\xcc\xf9\x00\xec\xcc\ -\x04\xcd\xce\xd7\xd4\xd0\xeb\xcc\xf9\x00\xf5\xcc\xf4\xcc\xfa\x00\ -\xee\xcc\x01\xcd\xff\xfb\x00\xea\xcc\xfa\x00\xf5\xcc\xf4\xcc\xfb\ -\x00\x00\xce\xef\xcc\x00\xe2\xf9\x00\xea\xcc\x00\xcd\xfb\x00\xf5\ -\xcc\xf4\xcc\xfc\x00\xee\xcc\xf7\x00\xe9\xcc\x00\xd3\xfc\x00\xf5\ -\xcc\xf4\xcc\xfd\x00\x00\xda\xef\xcc\xf6\x00\xe8\xcc\x00\xd7\xfd\ -\x00\xf5\xcc\xf4\xcc\xfe\x00\x00\xff\xf0\xcc\x00\xcd\xf5\x00\xe7\ -\xcc\x00\xff\xfe\x00\xf5\xcc\xf4\xcc\xfe\x00\x00\xcd\xef\xcc\xf5\ -\x00\xe7\xcc\x00\xcd\xfe\x00\xf5\xcc\xf4\xcc\xff\x00\xee\xcc\xf4\ -\x00\xe5\xcc\xff\x00\xf5\xcc\xf4\xcc\x01\x00\xda\xee\xcc\xf4\x00\ -\xe4\xcc\x00\x00\xf5\xcc\xf4\xcc\x00\x00\xee\xcc\xf3\x00\xe5\xcc\ -\x01\xcd\x00\xf5\xcc\xf4\xcc\x00\xcf\xef\xcc\x00\xcf\xf3\x00\xe4\ -\xcc\x00\xd4\xf5\xcc\xf4\xcc\x00\xcd\xee\xcc\xf3\x00\xe4\xcc\x00\ -\xcd\xf5\xcc\xe1\xcc\xf2\x00\x00\xd2\xf7\xd1\xe2\xcc\xe1\xcc\xe7\ -\x00\xe2\xcc\xe2\xcc\x00\xcd\xe7\x00\xe2\xcc\xe1\xcc\xe7\x00\x00\ -\xcd\xe3\xcc\xe1\xcc\xe7\x00\xe2\xcc\xe1\xcc\x00\xd4\xe9\x00\xe1\ -\xcc\xf4\xcc\x00\xcd\xee\xcc\xe9\x00\x00\xce\xef\xcc\x00\xcd\xf5\ -\xcc\xf4\xcc\x01\x00\xcd\xf0\xcc\x00\xcd\xe9\x00\xee\xcc\x00\x00\ -\xf5\xcc\xf4\xcc\x01\x00\xd2\xef\xcc\x00\xd4\xeb\x00\x00\xd4\xef\ -\xcc\x01\xcf\x00\xf5\xcc\xf4\xcc\xff\x00\x00\xce\xf0\xcc\x00\xcd\ -\xeb\x00\x00\xcd\xf0\xcc\x02\xcd\x00\x00\xf5\xcc\xf4\xcc\xfe\x00\ -\x00\xcd\xf0\xcc\x00\xd0\xed\x00\x00\xd0\xf0\xcc\x00\xcd\xfe\x00\ -\xf5\xcc\xf4\xcc\xfe\x00\x00\xe2\xf0\xcc\x00\xcd\xed\x00\xf0\xcc\ -\x01\xcd\xda\xfe\x00\xf5\xcc\xf4\xcc\xfd\x00\x00\xd3\xef\xcc\xef\ -\x00\x00\xcd\xf0\xcc\x00\xcf\xfd\x00\xf5\xcc\xf4\xcc\xfc\x00\x00\ -\xcf\xf0\xcc\x00\xcd\xf1\x00\xef\xcc\x00\xce\xfc\x00\xf5\xcc\xf4\ -\xcc\xfb\x00\x00\xce\xf0\xcc\x01\xcd\xd7\xf5\x00\x00\xda\xef\xcc\ -\x00\xcd\xfb\x00\xf5\xcc\xf4\xcc\xfa\x00\x00\xcd\xed\xcc\xf9\x00\ -\x00\xd4\xee\xcc\x00\xcd\xfa\x00\xf5\xcc\xf4\xcc\xf9\x00\x00\xce\ -\xeb\xcc\xff\xd1\xff\xcc\x00\xcd\xee\xcc\x00\xce\xf9\x00\xf5\xcc\ -\xf4\xcc\xf8\x00\x00\xce\xd4\xcc\xf8\x00\xf5\xcc\xf4\xcc\xf7\x00\ -\xd5\xcc\xf7\x00\xf5\xcc\xf4\xcc\xf6\x00\x00\xcd\xd9\xcc\x00\xcd\ -\xf6\x00\xf5\xcc\xf4\xcc\xf5\x00\x01\xcc\xcd\xdc\xcc\x00\xce\xf5\ -\x00\xf5\xcc\xf4\xcc\xf4\x00\x01\xff\xcd\xde\xcc\x00\xff\xf4\x00\ -\xf5\xcc\xf4\xcc\xf2\x00\x00\xce\xe0\xcc\xf2\x00\xf5\xcc\xf4\xcc\ -\xf1\x00\x00\xd4\xe3\xcc\x00\xda\xf1\x00\xf5\xcc\xf4\xcc\xef\x00\ -\x00\xcf\xe7\xcc\x00\xd1\xef\x00\xf5\xcc\xf4\xcc\xed\x00\x00\xcd\ -\xeb\xcc\x00\xcd\xed\x00\xf5\xcc\xf4\xcc\xeb\x00\x02\xce\xcd\xcd\ -\xf1\xcc\x00\xd0\xeb\x00\xf5\xcc\xf4\xcc\xe8\x00\x04\xd2\xce\xcc\ -\xcc\xcd\xfa\xcc\x01\xce\xd2\xe8\x00\xf5\xcc\xf4\xcc\xc1\xff\xf5\ -\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\ -\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\ -\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xa8\xcc\xa8\xcc\xa8\ -\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\ -\xcc\xa8\xccMIB8ksML\x0e\x00\x00\x00\x00\ -\x00\xff\xff\x00\x00\x00\x00\x00\x002\x00\x80\x00\x00\x00M\ -IB8ttaP\x00\x00\x00\x00MIB8k\ -sMF\x0c\x00\x00\x00\x00\x00\xff\xff\x00\x00\x00\x00\x00\ -\x002\x00\x00\x00\x00\x00\ -\x00\x00\x05}\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22 standalone=\x22\ -no\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - eye on<\ -/title>\x0d\x0a Created with \ -Sketch.\x0d\x0a\ - \x0d\x0a \x0d\x0a <\ -path d=\x22M62.3998\ -86,20.262032 C61\ -.0656979,18.1619\ -773 49.0033003,3\ -.55271368e-15 32\ -.0083577,3.55271\ -368e-15 C15.0134\ -15,3.55271368e-1\ -5 2.9510174,18.1\ -619773 1.5499679\ -5,20.262032 C-0.\ -516655982,23.447\ -0641 -0.51665598\ -2,27.7140347 1.5\ -4996795,30.97200\ -66 C2.9510174,32\ -.9991215 15.0134\ -15,50.9422798 32\ -.0083577,50.9422\ -798 C49.0033003,\ -50.9422798 61.06\ -56979,32.9991215\ - 62.399886,30.97\ -20066 C64.533371\ -3,27.7140347 64.\ -5333713,23.44706\ -41 62.399886,20.\ -262032 L62.39988\ -6,20.262032 Z M3\ -2.0083577,39.943\ -5857 C24.6110597\ -,39.9435857 18.6\ -786333,33.503620\ -9 18.6786333,25.\ -4711399 C18.6786\ -333,17.5115986 2\ -4.6110597,10.998\ -6941 32.0083577,\ -10.9986941 C32.7\ -407935,10.998694\ -1 33.4732293,11.\ -0716338 34.14184\ -3,11.2175131 L34\ -.141843,23.15530\ -55 L45.1405371,2\ -3.1553055 C45.27\ -12206,23.8786238\ - 45.338082,24.67\ -48819 45.338082,\ -25.4711399 C45.3\ -38082,33.5036209\ - 39.3387943,39.9\ -435857 32.008357\ -7,39.9435857 L32\ -.0083577,39.9435\ -857 Z\x22 id=\x22Shape\ -\x22 fill=\x22#CCCCCC\x22\ ->\x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x1f\xef\ -\x00\ -\x00\xe4\x14x\x9c\xed\x5c\x07\x5cS\xc7\x1f\xbf\x0c\x12\xf6\ -^2c\x98*\x10\xc2&\xc8\xde\x0a\x82l\x14\x85\x90\ -\x04\x88\x84$f\x80\xab\xe2\xaa\xd6U\x95\xba\xb5uo\ -\xc5\xd6]\xad\xdb\xd6Z\xf7\xb6u\xfc\xb1\xd6\xbaW\x15\ -\xb5\xa8\xf0\xbf{!\x10\x10-J\x00\xfb\xff\xbfo>\ -\xf7r\xef\xd6o\xdc\xbd\xbb\xdf\xdd\xbb{\x89\x89\xa0;\ -\x00@\x13\x98\x83Z@\x86>\x02P\x5cH\xd8_\x1e\ -\xbc\x10T\xfcD\xcc\x0f\xd3\x11\xcc\x09\xa4\xfap\x98\x98\ -@\xa9\xf7\x13\xe1\xc5HYN\xeam\x82\xb1J\x1a\xb3\ -z?\x96[\xa5L\x0be\xfa\xe9\x80`\x054\x14~\ -\x82\x1d\xc1\xba\xc1\xefL\xb0Q)\xc7U\x85\x16\x13]\ -\x01\x1d\xfa<\x08^\x98\xdf\x14\xfa\x93\x09)\x8d\xe9\x89\ -?\xa0\xab\x9f5\xbc\xe5\x8e\x8fG~C\x1a\x00\xfe\xa3\ -&\xf0\x95to\xdc\x9e \x05T\x00t\xe3\x00\x88]\ -\x8c\xe4\x87\xfaP\xfc\xb4_\x8f\x02\xc0\xc5P\xf9\x1f\xce\ -\x15\xe5\xf3h\xc9E\x22\x99HZ$\x12\xd3\x22#i\ -^\x9eL\x7f\x9ak&_\xc8\x15\x95I\xbb\x01t\xcb\ -\xf2\xf4byz\xd3\x98\xbe,/o\x96\xa7\x0f\xe8\x19\ -:D\xcc\xe6\x14\xf3d\xb4|^!_\x18L\x7f\xb4\ -k/\x9d\xc6\xe7\x06\xd33}\x13=\x13\xc5\x91\xbc\x22\ -~\xdc0\x09/uX\x9f4\xce\xb0bN \x97\x1e\ -\x1a\xa2\xdds\x08kH\x89\xb8\x84'c\xd3\x86\x94\x08\ -\x84R\xd6\x90`:\x1b\xd1gA?\x0af\xd0iX\ -\x12Yq0]\xc1XVb2-R$\xe1\xd1|\ -=\xfc\xdc9L\xef\x00\x9a\x7f\xa0\x07\xd370\xc0\xcb\ -\xc7\x0d1\xea\xc7\xf0\x0cd0}\xdc=\x99,\xcf@\ -\x96'\x93V\x0fz\x886\xbc\xf6\x94p\x0bX)Q\ -1\xf5\xe4\xe0]0\xbdH&\x13\xb3\x18\x8c\xb2\xb22\ -\x8f2o\x0f\x91\xa4\x90\xc1\x0c\x0c\x0cdxz1\xbc\ -\xbc\xdca\x0aw\xe9P\xa1\x8c=\xc4](uP\x14\ -\xa2,'\x8a'\xe5H\xf8b\x19_$\xa4\xa1{v\ -\xbeH.\x0b\xa6\xd3\xb5i*\xa8\x97\xabD\xdc@H\ -(\xf5\xc0d\xf4\xe0\x88J\x18C\xd8b\x06\xd3\xc3\x93\ -\xd1R&.\xa7!\x8fX.\x11`\xacq9\x0c\x9e\ -\x80W\xc2\x13\xca\xa40\x1f\xb3\xc5|be\xdd\xb5L\ -\xb2!\xfa\x9d\x84!\xb7\x89\x89\xef\xe7\xb7\xa4\xa4\xc5\x9c\ -RYt\xa9\xec\xfd9\xa5iC\xc5\x05\xee\x01\xcc|&|\xc6|}\xb9<\x0e\ -\xd3\xcb\x97\xeb\x8b\xe9\xa0i\xf6\xb7\x8a\x8e\x12q\xe4\xa8\ -\xe9\xd6\x17\xcd\xfd\xc0\xa2U\xb2\xbfUt\x92\x84\x0f\xbb\ -\x1d\xb6\xa0\x8d$Z(\xe6-Rq|\xa9L$\x19\ -\x1a\xd2\xa4\xf9c\x1dB*op\xd3Pe\x84\x80\x8f\ -u\x10b\xb6D\xcaC\xcd?\x98\xael\xff\xf4\xb72\ -\xa0<\xd8c\xc4bsP\xd7\x12\xc2\xc1Z8\xb7'\ -\xa3I\xe8\xbb\xb3\xf1?\xb6\x02\xdf\xca\xfen\x1aeE\ -<\xe1\xfb\x9eL\x95T\xef.D**\x90\x95\xb1%\ -\xbc\xf0B\xa8\xe9\x90\x7f\x1cw\x94\xa56\xcd\xf6\x96\xbe\ -\x19\x0a\x857\xab\x1e\xc6\xdb\xf5\xa3\xac\xf3f\xf5\xa9H\ -\xaa\xd2\xb7+\x06\x0eF\xfd\xc8\x01\x07-F\xc3\xa8\xd5\ -\x92p\xea\x07N\x04'\x82\x13\xc1\x89\xe0Dp\x228\ -\x11\x9c\x08N\x04'\x82\x13\xc1\x89\xe0Dp\x228\x11\ -\x9c\x08N\x04'\x82\x13\xc1\x89\xe0Dp\x228\x11\x9c\ -\x08N\x04'\x82\x13\xc1\x89\xe0Dp\x228\x11\x9c\x08\ -N\x04'\x82\x13\xc1\x89\xe0Dp\x228\x11\x9c\x08N\ -\x04'\x82\x13\xc1\x89\xe0Dp\x22j&\xa2\xddx\x0e\ -\x8c'\xe4\x06\xd3\xcb\xe8\xa1! \x22>\x91\xec\x84\ -\x9d93\x04\xcd\x80\xc5\xb10\xef\xcd\xfax\xect\x1e\ -\xd0\x11K\xf8BY\x92\x5c&\x96\xcb\xe0-:&\x07\ -\x92\xa5\xb2\xd4|\x91H\x80\xa5\x88\x17\xcax<\xa1\xbc\ -D\xe9G\xff\x91\x02\x09\xba7\xc0\xf2\xa6\xf2\x87\xa0\x14\ -\x11|\x19\xca\xd3X&O\xd2\x87]\xc2K\x8b\xceJ\ -k \xa6\xc8\x90,\x11\x89\x0aRy2\xb98)\x7f\ -\x10\x07\x06\xeb\x82d \x01\x22\xf8+\x004\x90\x0ax\ -@\x06\xe4@\x8ce\xd1\x167\xa4V\x16\x13!\x90\x09\ -\xeb9\xd2\xcd\x97\xf3\x052\xbe\x10+\x12\xdeka\xa9\ -#\x13\xb3{+$\x0eB\xe9\x89\xeeM$6V\x91\ -8\x09;y \x85\xa1\x16\x98\x5cb\x99P)\x04\x14\ -2_\xd2p\x93R(Ml\x8c\x91\x08#\x1bo\x84\ -\xb2\xc6\x9b\x84|\x81\xb4\xe1\xa6O\xa1\xac\xb4\xe1&\xba\ -D\x10\xd5p\x03\xf5\xd8Xt\x04\xa7\xb8\xb0^\x11\x0a\ -\x06AJlD$P\x1c\x9b\x04)\x5c\x1a\x8d+\x92\ -\xe7\x87\x89\xaa\x1a*3V\x22|+,B\xf0v\xba\ -\x08\x097-](\x8bqH\x11\xc8T\x1bC\x84\x80\ -Kk)\ -\x8b\xae2\x06\xb1\xa0\x12\xae\xa7\x0cO\xe1\x17\x16\xa9F\ -\xe8(# o\x0d\xc1\xa8\xe5\x90\x1e(x\x00q@\ -q\xf6\xb3\xfe\x1fkU\xceX\x9c~\xa3\x04\xa1\xa3\xea\ -s=T\x90\xd3M\x93\xb0\x85R1[\xc2\x13r\x86\ -*Z\xa2\x19\x16c\x87bA\x1al\xedl \x04R\ -\xd8\xc6\xd9\xd0\xcf\x83~\x0e\x18Z\xff\x94\xfab)\x8d\ -0z\xa0\xae\xae\x9e\x04\x97\xa0\x88\xb5\xc5\xee\xc8J>\ -\xc9z\x0d\xf7v\xd8}\x97\xa6\xf7\xa4\xa7\xd8\xbd\x96\x92\ -SE).\x8a\xfeA[\xd9\xe0\x14r\x91\xaa1\x7f\ -\x1c`\x14\x14\xc0\x18\x01\xbcR\xea3)B\x96\xcc\x9b\ -\xdf\x10\xe2\x85]\xfb\xc1\xab2\xc4\x17\xbb\xba7\x86`\ -e\xbe\xc4\xfcb$IK \xddF\xd1\xea\x8f\xc3t\ -\xa1\x90\x8dX\x7fGlr\xe7\xa9\xe0\xb1^\xab\xee\xd8\ -\x1d\x05\xd3\x07\x09\x0b\xd1\xac\xaf\x7f\xac\x16\x88a\x0aW\ -\x9f\xd7\xaeY\x1dX!\x1f\xc9\xb7Ar\x05\xf2\xea\x9d\ -B;oC5L5m\x8b\x09\x94h\xec\xc6\x80P\ -.\x10(\x04\x02\x94|\x91\x5c\xc8\x956\xebE82\ -\xa6\x92M\xf4\xe8\xa94{\xd0\xec\xf9\x00\x11\x8d\xcf\x11\ -\xc6FJ\xe3c\x82\xee)R\x01\x9f\xc3\x93f\x08\x12\ -\xd0\x83NhBG\x03\x8b\x83\x1ec\xe8\xa8\xd8M|\ -\x94J\xd9\xd4B\x89H.n\x12D\x11a\xc7\xff\x94\ -}xt*\xca\xa48\x12\x08\xef\xf5\xd8r\x99(\x96\ -'\xe4I\xd0q<\x8c\xfb\xa1b\xe5\x10\xa4\xadH\x8c\ -BPL|I!\xad\x03\xe4'\xc9%\x82&\x03\x19\ -\xa6\xfc\xa6!\x89\xd2\xc2\xa6\x83\x1d\x85-\x90\xa5\xb1\x0b\ -\x9b\x84\xe9sx0\x1fo\x88,^\x1a\x97\x96\x98\xa0\ -\xecN5\x95\xc1M\x12k\x15\x89$\xc3\xc2\x05\xfcB\ -\xa5\xa6\x0c\x14\xc2\xc7)\x83\x91v\xb9\xbc\x02\xb6\x1c\xeb\ -O\xb5Jy\x12Y\x0b\xc93\x94\xc1M\x93\xeb\xe4\x17\ -b\xa7\x5cU\x94k\xa4\xc8\x10\x11\xdb\x10\x81\xd8\xe8#\ -\x12\xa2\x7f-\x99H\x0c\x07M)OUq\xda\x02\xa8\ -\xc8\xb7Bu\xf3\xb1\x8e\xf9\xadp\x1d\x09\xea~\x9b\x05\ -cO\x90\xab\x22\x1ft\xc4\xd0\xc7\xa01\xdc\x14\xf3\xa2\ -*T<\x95\xba\x98b\x8f\xd6\xab(O\xe1\x08\xb0\x09\ -\xa0'\x81\xb2\x11X\x02B\xdd\xa5\xba\x07@\x17;\xe5\ -\x98\x1b\x99\x08\xef\x1f\x02}\xec\x0epG\xa1|u\x97\ -\xc18\xa0\xab\xa9\xa9\xa9\xa5\xa9\xab\xa5\xa5k\xa4\xa3\xad\ -cdf\xa0\xabk`fibbfbbi\xa4\ -\x8b\xa1\xfe\xafe\x10\xf4tt\xf4\xf4\xf5\x0c\xf5\xf5\x0d\ -M\xf5\xf5\xf5M\xd1E\xdfT\x91\xc5\xa85\x05\xd4\xed\ -\x03F\x9a\x90\xf9<\x12\x81\x0e\x88F\x04\x92\x11\xa1\xee\ -*\x14\x94Rw\x88\x10\x0a\xb9\xd4 `\xa8W\x1c\x09\ -\x10\x88d\x0d\x0aUSK[\x87\xd0<\x92\x00\x88$\ -e\xa4! \x90\x09$\x22\x99\xa8A\xa5hj\x90t\ -\xbda\xa4\x11\x89\xdc\xd5\x98\xa9\x11\xde\x97mB\x1f<\ -\xda\x8bb:c\xc9w\x11\x0e\x8ef)\xfb\xf3\xbd}\ -$cNGR\x9d*R\x1f_\x7f\xc2\x91\xfa\x9a/\ -\xdd4\xd69\xea\xab4n\xf4\x81e2?\x8b3\xe9\ -\xbf\xf3\xfe\xda<\xee\xe0Y\xf9\x8d\xa71.3\x97\x7f\ -\xbee\xd6\xa1s\x7f<[\xb1\xf5\xc7\xf37\xab3\x0a\ -J\xc7\xcf^\xb9\xed\xa7\x0b\x7f>\xf7\x8f\xcd,,\x9b\ -0g\xd5\xf6\xc3\x17o\xbd0\x02D\x22\xe4\x96\x8c\xf1\ -D\xa5h\xf8b,te\x1a\x93!\x07\x83\xe9&\x1a\ -^\xa3g\x98\x22\x0e\xf6\xa7\x9c~\xec\xed\x98\x7f]2\ -\xa6\x222\xd5\x8c#\xf5y\xe2DA\x0cP\x9d}\x0f\ -\x9c\x81L,\xb3\xe0F\xa7\xfb\xc9x\xbf7\xb0\xf0n\ -\x0e\x5c\x1aY\xa8\xfb\x0d\xe8\x920\x9aF \x14T\xa7\ -U\xc4;us\xac\x88\xef\x15\xefX\x91R\x11\xef8\ -sy}@R\xdd\xa9\xea4\xb7\x05\xbfN\x9dV\x10\ -\xb9\xdfm\xcd\x8a\x87z\xd6S\x08!\x17\xc6\xa5U\xa4\ -F.\xaf^h\xb7!v\xdd\xa4G\xe2Z\xc9\xaa\xa2\ -\xe7\xf67\xfdk_o\xac\x94\xae{\xd3o\xeb\xf7\xf6\ -[Y\xd6\xb5G\x17^\x1d\x90uz\xf6\x90:\xe0T\ -Y\xf6f{>\xa8y\x9a\x1e \x12\x16\x04\xdd\xbb\x9b\ -n\xfb\xe5\xe11V\x03^\xbd\xfa\xfa\xf5\xe5\xf2\x8a\x8a\ -oV\x9c(\xee\x97\xf3\xbb\xd5\xe95.a\xe6\xbc:\ -\x90\xbdS?h\xb2\xe0\xf8\xfa\x19'\x8el\xae\x03\xc1\ -\xd4\x8d\xc1ww\x97\xad\x91\xf7\xd7\xfaeKM\xf9\x82\ -\xde>y\xb5\x87o\x95g\xdf\x0bv\x0aY\x11{A\ -8vz\xd5oO\x8b\xc9O\xf6\x14\xd7\x81\x93K&\ -'V\x16\xcf\xb79csv\xb5Cr\xe6Tw\xfd\ -Y\x17\x87\xcd\xe9\xf5m\x90\xf9\xd9;\xb5r\xc6\xf9\x09\ -\xaf\xec\x17\xbc)p\x5cu\xbe\x22;X\xe7\x9e\x9d}\ -\xd6\xda.5n+'n\x1a#\xaf\xddZ\xf8\xf4\xd2\ -V\x85\xf8u\xa0\xee4\xa6\x94@\xfb\xac\x9a7\x03\xec\ -\x8d\xfb\x1b\x1c\xdd\x16m\xb6\xe8\xf5\xcb:\xf0\x07s\xe8\ -\xca\x98\xe8_\xfdC^]\x13l;\xc8\x18\xfe\xbd\x13\ -d$\xe6\xda\x8as\xc2_\xbe\xfdY\xfa\xc5\xfa\x91\xf7\ -\x08o\xacc\x9f\xa7;\xce\x9cc>;\xf7\xab\x01\x8c\ -\xad[\xfc\x0eS\x16\xe4>\xebgp+pXh\x9f\ -\x9aU\xa7\x9et\x17\x9c\xba\xb2j\x86\xf3\xe5\xddO\x1f\ -\x17>-\xc9\xda\x9bZ\xe3\xac_\x1es\xa4t\x00\xbb\ -v\xeb.\xd2\xde\xc0%S\xad\x07\xf4\xdf\xeb{y\xfd\ -0o\x8f\xbb{\xd3\x1e\x98q\x85\xc7o\x9f\xf0;lV`\x82\xa7U\xd5e\xea#\xcf:\x10p\ -\xa6bQ6l:\xa9ug0\xad\x85\xa4W\x8f]\ -q\xf9L\xcd\xd7[\x02\xec\xe3\x0f\xed\x99P\xea\xe6r\ -\xb9VtJrb\xe0\xba\x8b,\x8f\xd0\xac\x83>\xfd\ -\x1fl\xddyVT\xba\xab\x0e\xd0\x1e\x9d\x1c\xc8[4\ -z\xd6\xd9\xbfr'\xcf<>\xdb\xfb\xa1\xc3\xe6K\xe5\ -\x81_\xc6'\xb1k\x19\x9b\xb3\xee\xe7L!\x96\xc7\x1d\ -\xae9n\xe7..\xb6\xad\xe5\xcc\xab\x03\x89\xf2\xd9\x99\ -\x03\xd6\xcbK}\x82\xa7\x19\xfe\xb9#\x8e\xf6\x9c\xb6\x91\ -\xbe\xff\xf8\x91}\xbf\x14dxo\xeb\x9f=}\xb8\xd1\ -\xd5J\xfb\x9d7\xaf\xe4}6\xe2\xce\x9c\x0cJq\xee\ -\xd4\xa2\x9ad\x9dK\xe5k\xb3\x1f\xd5\x81\xc5\x153n\ ->\x1b\xb9\xec\x14\xa3,\xf9v\xaa\xb0\xdbE\x07\xf2\x91\ -\xb3\x7f\xdb\xef\xae\x03\x8b`\xdb\x19\x97\xfd\x9f~#7\ -\xb1\xab\x07\xce\x9a\x9a\xe1\xb3\xedp\xf6\x9e\xbbW\x8f\xfa\ -\xe9\xed*\x9f\xb5\xeb\xdc\xf3\x0d9u`\xe3\xd7^\xf3\ -\x7f>P\xfcWIhL8\x87Z=\xf9M\x1dx\ -f\xa15kFAF\xf4<\xf3\xc3k\x8a'\x7f\xbd\ -\x8521DoP\xaf\x98-{6>[\xc7Z\x95\ -\xbav\xfc\xd8;\x9e\x13\xae=\xdc?\xea\xd5\xde\x935\ -zi\x8f\x9fx\x1c\xffe\xa3\xf9\x17~W\x1el\xb8\ -\x92\x974\xaf\xc7\xd9\x1a\xfb\xe8\xc3\xb7_\xe6O\xda}\ -aW\xff\x0d\x0fo\x95\xffa\xfd\xf7\xc4n\xa71]\ -\x9eU<\x96}\xef^\xb5\xa6\xae\xe3\xd4\x04&\x9c+\ -\xf7/\x96\x0d7\xf8k@\x1d\xf8,\x13>\x9b\xf3\xab\ -Ekm3W\xed\xd8\xb3\xd2\xe6\x87\x91\x17\xd2\x1cG\ -\xd7\x01\xad\x8c\xcaA\x07ic\xc9\xe16\x9f\xdf\xff\xd9\ -\x82\xcd\xe6v\xd9k\xb7.i\xf2\xa5\x8b\xe5\xe7\xc93\ -\xff\x06\xe4\xb9\xc4\xf8*\xf7\x13_U\xc7\xae\xad\xa6R\ -/\x1d\x9c8\xed\xda\xd1(\xe3\xd0\xaa\xbb\xa7O\x0c\x9c\ -\xd0\xc7\xdc

\xf3\xee\xea\x97\xdfM\x15\xbd\x89\x8b\ -\x8dO\x0a\x15\x9d\xdbS\xf1\xf0\x9b+\xfdFW>\x1f\ -\xbe`\xd6\xd1\x17\xe5\x8c\x17\xf3^\x7f\xde\x9fZyK\ -6b\xfc\xb3\x93\xebi\x0fX}\x17\xfa\x16Ox\xed\ -\xb07\xa8\xa6\x0e$\xbd\xe9~7}\xc4}\xdd>K\ -\xbe\xbc/\xd8\xf9\xe3\xac]\xdf\xfda\x7f\x8d\xb3\xd7\xf7\ -H\xb7\xa0\x9c\x8b[\x02\x97\x07V\x1a_\xd4\x0b\xa7\xee\ -\xe8\xb3$\xd1\xb7o\xefn+\x96\xcc\xca e\x9d\xde\ -GHt\x0a\xad;\xf7\xbe>\xe8W\xc58\xd7\x15\xeb\ -\xc9\x07\x00\xcc\x22\x85#7\x08\x07\x5c8\x1d\xce\x87S\ -\x03\x1a\x9c\x1c\x17A\xbf\x0c:)\xe6C\x13a\x8b\x7f\ -HA\x03\x91\xf0G\x83f\xba'`\x02\xff\xfa\x01S\ -7.\x81/\x14\x11\xa1\x11Y\x02g\xa0\xe8\xcb\x15Y\ -\xd9\xfdh\xd4\x13\xd0\x88\xd4\x82\xb6+4\x97\xd8\x1c\xa9\ -815&\x0d3\xae\xa2#i\xe8\xf3\x16\xa0\x09\x9e\ -_P\x98'g\xdd\xe3\x92i4\xf0a0\xe2\x88%\ -2\xf4U\x1d\xe8\xf7\xe6\xf2\xa4\xd0\x5c#\x8c\x83~A\ -\x99L\x8c\xc2\xd1\xd8o\x9a_\x8c\xfcD4\xea\x9bJ\ - \x83\xd0o\x89\xfc\x85\x0a\xbf\x1b\x96F\xe1\x0fC~\ -n\x89\x10\x9a\x89D\xc4\xb3\x98[\xc2E\xfeC\xd0\xff\ -E\xa9\x1c\x99\x8f\xa4\x04\xe8\x1f_\xca\xe7\x95A\xff9\ -\xe8w\x14\xc8K\xf8\xd0\x8ff&\xa6%<64i\ -1\xbb\xc2Q\xc6\xe3\x14A?\x9a\x19\xe8J\xd2R\xe0\ -\x5c\x96\xdc\x13\xdaf\xba\x85*\xfe|\x15\xbf\x0c\x1al\ -H\xa8H\x91x(f\xd9\xd0\x5c9\xddh\xcc\xc0\xc0\ -\x00Z\x1c\xafL\xc0\x93\xc9\xdc\x93\xd9\x9cb\xb6\x84K\ -\x8b\x14\x95\x88\xd9B8\xc3S\xc8\x8c\xc1\xf8\xadO\x87\ -\xa8(\xea\xbd\x91\xad\x04\xaa[\x85\xefi_\xac\xce\x08\ -\xe6\xc7\x1a\xc3ZJ'Z\x0a\xed.8\x0b$Mo\ -\x0c\xcb\x9f\x07\xc0\xf6\xcf\x01\xb0\xfc\xad1\xccq1l\ -\xa3\xb0\xde\xb6\x9dT\x91\xc7\x1c\xb5\x17\x95\x8f\xfc\xf0y\ -\x1c\x0f\xa4\xd0\x06\xfcc\x82V@\x85\x9e\x07*\xaeA\ -=\xb4(\x85eKCz\xe3@\xfbU.\xa1\xc1\x19\ -8\x87Gso\xde\x88?:c\xcb|\xb8\xa5\xf0\x0a\ -xh\xa6\xcf\xa3e\xc0V\xc6\x17\x16\xc2\xea\x16r\xf9\ -\xd8\xf7\x8a\xf8\xc2wU\xe2Gfk\x06E\xbb\x860\ -Y^\x0bLs=\x80\xe1IS@zp\x0c\x90M\ -t\x00)\xe7\x1b\x18Ch\xa8\xb7\x04\xad\x0c\x80\x9e\xbc\ -L\xfb[\x8av\x8f\xa1\x85i&q\x1a\xbaH\xf9\xd8\ -\xe4\x0aD\xa6\xa4\xd18rI\xa9\x22\x0e\x9bOi\x00\ -m\xd8I\x99\x82.\xc0\x0e8\x00W8\xeb\xf7\x82\x9d\ -L\x10\x08\x03\xd1\xa0\x17H\x02i \x1b\x0c\x04\x1c\xd8\ -\x19\x95\x00\x09(\x03#\xc0h0\x1eL\x06\xd3\xc1,\ -0\x1f,\x02\xcb\xc1\x1aP\x096\x81\xed\xe0\x07\xb0\x1f\ -\xfc\x04\x8e\x82S\xe0<\xb8\x0c\xaa\xc0Mp\x0f<\x06\ -\xcf\xc1+h\xe0R\x09z\x04\x13B\x17\x82=\xc1\x89\ -\xd0\x83\xe0E\x08 \x84\x10\xa2\x09\x09\x84\x14B6!\ -\x8fPH\x10\x12\xe4\x84\x11\x84\xb1\x84\xc9\x84\x0a\xc2|\ -\xc2\x12\xc2\x1a\xc2w\x84\xef\x09\xfb\x09G\x08\xa7\x09\xbf\ -\x12\xae\x13\xee\x10\xfe\x22\xd4\x10ID]\xa2)\xd1\x96\ -\xe8Ld\x10\x03\x88\xe1\xc4\xde\xc44\xe2\x00b!q\ -0q\x18q\x1c\xf1K\xe2\x5c\xe2R\xe2z\xe26\xe2\ -~\xe2Q\xe2yb\x15\xf1\x1e\xb1\x9a\x04H:$s\ -RW\x92;)\x80\x14IJ\x22\xf5#\x15\x90$\xa4\ -\x91\xa4I\xa4\xd9\xa4\xa5\xa4J\xd2N\xd2a\xd2YR\ -\x15\xe9>\xe9o2\x85lB\xa6\x91\xdd\xc9A\xe48\ -r:\x99C\x1eL\x1eI\x9eB\x9eO^M\xdeF\ ->D>K\xbeN~L\xae\xd5\xd0\xd3\xb0\xd1\xe8\xa1\ -\xc1\xd2\x88\xd7\xc8\xd2(\xd4(\xd3\x18\xaf1[c\xa5\ -\xc6V\x8d\x1f5\xcek\xdc\xd4xN\xa1P\xcc).\ -\x14\x7fJ\x1c%\x9b2\x882\x9c2\x85\xf25e#\ -e\x1f\xe54\xe5\x06\x05\x0eh\xd4.\xd4\x1e\xd4`j\ -\x12\x95M\x95Q\xc7S\xe7Q\xd7S\xf7R\xcfPo\ -R_j\xeah\xdakzi\xc6h\xf6\xd3\x14j\x8e\ -\xd1\x9c\xad\xb9Vs\x8f\xe6\x19\xcd[\x9a\xaf\xb4\x0c\xb5\ -\x9c\xb4XZIZ\x5c\xad\xa1Z\xd3\xb4\x96k\xed\xd4\ -:\xa9uS\xeb\x95\xb6\x91\xb6\x8bv\xb0v\x9a\xf6 \ -\xed\xd1\xdas\xb5+\xb5\x7f\xd4\xbe\xa2\xfdTGG\x87\ -\xae\x13\xa8\xd3W\x87\xaf3Jg\xae\xce\xb7:?\xeb\ -\x5c\xd7\xf9[\xd7X\xb7\xbbn\xa4n\x8e\xae\x5c\xf7K\ -\xddU\xba\xfbt\x7f\xd5}\xaa\xa7\xa7\xe7\xac\x17\xa6\xd7\ -OO\xa6\xf7\xa5\xde\x1a\xbd\x83z\xd7\xf4^\xea\x9b\xe8\ -{\xe8\xc7\xebs\xf5\xcb\xf5\x17\xe8o\xd3?\xa3\xff\xd0\ -@\xcb\xc0\xc9 \xdc`\xa0\xc10\x83\xd9\x06\x9b\x0dN\ -\x1a\xdc7\xd42t6\x8c4d\x1b\x8e4\x5c`\xf8\ -\xbd\xe1E\xc3j#\x13#\xa6Q\x92Q\x89\xd1\x14\xa3\ -\xb5FG\x8cn\x1bS\x8d\x9d\x8d\xa3\x8d\xb9\xc6\xe3\x8c\ -\x97\x19\x1f4\xbeaB2q0\x894\xe1\x98\x8c5\ -Yn\xf2\xa3\xc9MS\x8a\xa9\x8bi\xbc\xe9 \xd3\xc9\ -\xa6\x1bLO\x98>636\xf31\xcb0\x1bb\xb6\ -\xc0l\xb7Y\x959\xc9\xdc\xd9<\xde\x5c`>\xcd|\ -\x93\xf9\x05\xf3\x1a\x0b[\x8bp\x0b\x9e\xc5D\x8bJ\x8b\ -3\x16/,\xad-\xc3,y\x96\x93,7Z\x9e\xb7\ -\xac\xe9B\xeb\x12\xdd\xa5\xb8\xcb\x8c.\xdb\xbb\x5c\xb5\x22\ -[u\xb7\xeakUf\xf5\x8d\xd5\x8fV\xf7\xadM\xad\ -\x83\xac9\xd6\x93\xac7Y\xfffC\xb4\xe9n\x93b\ -3\xdcf\x99\xcd1\x9bj[;\xdbX[\xb1\xed<\ -\xdb\x83\xb6\xf7\xed\xcc\xed\xc2\xec\x06\xd9\xcd\xb4\xdbcw\ -\xc7\xde\xc4>\xc4\x9eo?\xd3~\xaf\xfd]\x9a\x19-\ -\x9c&\xa0\xcd\xa5\x1d\xa2=\xeej\xd35\xae\xab\xbc\xeb\ -\x92\xae'\xba\xbe\xa2\xbb\xd0\xd3\xe9c\xe8\x1b\xe9W\x1d\ -\xb4\x1d\x02\x1c\x0a\x1cf:\x1cpx\xech\xef\x98\xe8\ -8\xc2q\x9d\xe3oNZN\x01NENs\x9c\x0e\ -;\xbdpvq\xcet\x9e\xe0\xbc\xdd\xf9\xb6\x8b\xa5K\ -\xbc\xcb0\x97u.W\x5c\xf5\x5cC]\x07\xbb.u\ -=\xd7\x8d\xd2-\xa0[q\xb7\xaf\xbb\x9d\xeaN\xec\xee\ -\xdb\xbd\xa8\xfb\x82\xee'{\x10{\xf8\xf5\xe0\xf7\xf8\xba\ -\xc7i7\x0d\xb7@7\xa1\xdbR\xb7\x8b\xee\xba\xee\xe1\ -\xee\xa5\xee\xeb\xdc\xaf{\x98{$x\x8c\xf1\xd8\xee\xf1\ -\x90\xe1\xc8\xe8\xc7\x98\xc18\xcc\xa8\xf5\xf4\xf5\x14x.\ -\xf7\xbc\xcc4f\xf6b\x8ea\xeed\xfe\xe5\xd5\xdd\x8b\ -\xe3\xb5\xc0\xeb\x9c\xb7\x9ew\x8cw\xb9\xf7\x0e\xef'>\ -=|x>\xdf\xf8\x5c\xf25\xf1M\xf4\x9d\xe0{\xc0\ -\xf7\x8d\x9f\xbf\x9f\xc4\xaf\xd2\xef\x8e\xbf\xa3\x7f\x9e\xffB\ -\xff\x8b\x01\xa6\x01\xc9\x01S\x02~\x0e\xd4\x08\x8c\x08,\ -\x0f\xfc!\xf0o\x96\x1fK\xc6\xda\xc4z\x14\xe4\x1eT\ -\x1c\xb46\xe8vO\x97\x9e\xbc\x9e\xcb{\xde\x08\xa6\x07\ -\xb3\x83\x97\x04W\x85\xd0B\xf2B\x16\x87T\x85v\x0d\ -e\x87.\x0d\xfd=\xcc!\x8c\x1b\xb62\xecVx\xb7\ -\xf0A\xe1\xeb\xc3\x1fFxFH\x22\xb6F\xbc\x88d\ -E~\x16\xb9/\x8a\x14\x15\x1b5)\xeaD\xb4qt\ -z\xf4\xfc\xe8k1\xf4\x98\xc2\x98u1\x8fc}c\ -\x87\xc7\xee\x8b\xd3\x88\xeb\x1d7#\xeeb\xbcm<'\ -~M\xfc\xe3^\xfe\xbd>\xebu\xa8\xb7n\xef\xd4\xde\ -\xf3{\xff\x9e\xd0=A\x92\xb03\x91\x98\xd8+\xf1\xab\ -\xc4+}\x9c\xfa\x08\xfblO\x02I\xf1I_%]\ -MvI\x1e\x9c\xbc\xab/\xa5or\xdf\x05}\xffL\ -a\xa6\x8cH9\x9cj\x92\x9a\x9b\xba6\xf5yZD\ -\xda\xb4\xb4\xcb\xe9\xae\xe9\xf2\xf4\x03\x19\x06\x199\x19k\ -2^dFeVdVe1\xb2>\xcb:\x9am\ -\x95\xcd\xcf\xde\xd1\x8f\xda/\xa3\xdf\xca~\xd5\xfd\xa3\xfb\ -\xcf\xea\x7f3\xc77g|\xce\x85\x01.\x03\x86\x0c8\ -2\xd0j\xa0`\xe0\xee\x5c\x83\x5cv\xee\xe6<\x8d\xbc\ -\xcc\xbc\xb5y\xaf\xd9I\xec\xa5\xec\xea\xfc\xf8\xfc\x85\xf9\ -\x8f9\x91\x9c9\x9c{\xdc0\xeeL\xee\x1d^0\xaf\ -\x82w\xab \xb8\xa0\xa2\xe0vap\xe1W\x85w\x8a\ -B\x8bf\x17\xdd\xe7G\xf2\xe7\xf3\x9f\x0c\x8a\x1b\xb4h\ -\xd0\x8b\xe2\xa4\xe2U\xc5u\x82L\xc1\xc6\x12\xcd\x92\xbc\ -\x92\xef\x85\xc6\xc2b\xe1!\x91\x9dh\x88\xe8\xb4\xb8\x87\ -x\xbc\xb8j0k\xf0\xac\xc1\x8f%\xbd%+\xa5\x04\ -\xe9\x00\xe9\x0e\x99)4\xa6\x8e\xc9]\xe5\x9f\xcb\xaf\x97\ -\x86\x94.(}Y\x96Q\xb6y\x88\xd1\x10\xe1\x90c\ -C\xbb\x0f\x9d8\xf4\xd6\xb0\x98a+\x86\x93\x87s\x86\ -\x1f\x18\xd1u\xc4\xe8\x11\xd7?\x0b\xffl\xc9H\xc2\xc8\ -\xfc\x91\x07\xca\x1d\xca\xc7\x95\xdf\x1c\x15;j\xf5h\xed\ -\xd1\xc5\xa3\x8f\x8f\xf1\x1cS1\xe6\xd9\xd8\xcc\xb1;\xc7\ -\xd9\x8e\x1b5\xee\xc6\xe7\xb1\x9f\xaf\x1b\xaf?^2\xfe\ -\xe2\x84\xa0\x09\x8b\xbe \x7f\xc1\xff\xe2\xc4D\xef\x89\xf3\ -&\xd6N\xe2N\xfae\xb2\xe7\xe4\xd9\x93_O\xe1L\ -\xf9e*s\xea\xdc\xa9u_\x16|yb\x9a\xdf\xb4\ -o\xa6S\xa6\x0b\xa7_\x98\x11:cu\x85Q\xc5\xb0\ -\x8a\x1b_%~\xb5m&m\xe6\xa4\x99\xcff\xe5\xce\ -:2\xdbg\xf6\xa29\xdas\xe4s\xaa\xe6&\xcc\xdd\ -1\xcfq\xde\xf4y\xaf\xe7\x17\xcd?\xbf b\xc1\xc6\ -\x856\x0b'.|\xf15\xf7\xeb3\xdf\x84}S\xb9\ -\xc8v\xd1\xe4E5\x8b\xf9\x8b/-\x89]\xb2m\xa9\ -\xf3\xd2\xd9\xcb(\xcbJ\x97\xfd\xb9\ -\xf1\xbe\xfb\xfb\x0b\xf7\xdf8\x90{\xe0\xf2\xc1\xac\x83\xe7\ -\x0e\xf5=t\xe2\xc7\xde?\xfe\xfcS\xccO\x07\x0f\x87\ -\x1f\xde\xfbs\xf0\xcf?\x1ca\x1d\xf9\xfe\x97\x80_\xb6\ -\x1f\xf5;\xba\xed\x98\xef\xb1\xad\xc7}\x8fo=\xe1w\ -b\xdbI\xff\x93;N\x05\x9e\xday\xba\xe7\xe9=g\ -B\xcf\xec?\x1bu\xf6\xa7s\xf1\xe7\x8e\x9e\xefs\xfe\ -\xf4\x85\xf4\x0b\x97.\xe6\x5c\xac\xba\xc4\xbdt\xfbW\xc1\ -\xafO~+\xfd\xed\xd5\xe5QW4\xaeL\xbajx\ -u\xf65\x9bkK\xff\xd3\xed?\x1b\xab\xfc\xaav_\ -\x8f\xba~\xec\xf7\xd4\xdf/\xdf\xe0\xdc\xb8\xf7\x87\xf4\x8f\ -\xd77\xc7\xfd\xa9\xf7\xe7\xec[\xf6\xb7\xd6\xdc\xf6\xba\xfd\ -\xc3\x9d\x98;\xa7\xee\xf6\xbf{\xf3\x9e\xf8\xde\xab\xfb\xe3\ -\x1f\x18=X\xf8\xd0\xf5\xe1\x96Ga\x8f\x8e=\xcez\ -|\xf3\x89\xe4I\xdd_S\x9evy\xba\xea\x99\xcf\xb3\ -\x03\xd5\xc9\xd5\xd7\x9e\x97<\x7f\xf5b\xd2\xcb./W\ -\xff\x1d\xf0\xf7\xe1\x9a\xcc\x9a[\xaf\xca^S_\xcf}\ -\xd3\xed\xcd\xce\xda\xde\xb5W\xeaJ\x1a\xdeH\xe0\xc0\x81\ -\x03\x07\x0e\x1c8p\xe0\xc0\x81\x03\x07\x0e\x1c8p\xe0\ -\xc0\x81\x03\x07\x0e\x1c8p\xe0\xc0\x81\x03\x07\x8e\xffc\ -\x90\xc9dMGG\xc7\xac\xce\xe6\xe3\xff\x15aaa\ -\x8b\x0a\x0a\x0a\xea\xe0\xff7\xa8.:\x9b\x9f\xff'\xa0\ -v\x8ft\xaft)))Guuu\xed\xda\x83\x96\ -\x8e\x8e\x8e\x15\x9dNO\xf7\xf3\xf3\x9b\xd0\xabW\xaf\x1d\ -\x19\x19\x19\xe7srr\xfe\xe4p8/\x90C~\x18\ -v\x01\xc6}\xef\xef\xef\xff\x85\x83\x83C\x06\xca\xd3\x1e\ -\xbc|*@\xed\x1d\xb5{\xd5:\x188p\xe0]k\ -k\xebw\xec\xf2\xfd0@\xfdY{zz\x96%'\ -'\x1f\x86e\xd7\xaa\xd2i\xa5\xab\xed\xdb\xb7\xef\x11X\ -\xc6\x10\xd8.l\xd5\xc1\xd3\xa7\x0877\xb7\x12.\x97\ -[\xa3\x94\x9b\xc7\xe3\xbdvww\x17}ly\x16\x16\ -\x16\x01QQQ\xaba9\xaf>B\xe7-:T\x16\ -,s\xad\xa5\xa5%K\x9d\xb2\x7f*\x80r\x05\x0d\x18\ -0\xe0\x96\xaa\xcc\x91\x91\x91+\xe13\xa2\xdd\xda2`\ -\x1b\xb5A:R\x97\xce\xdf\xe5\xa2\xa3\xa3\xd7\xb7W?\ -\xd9\x99\xd0\xd6\xd6\xee\x02\xfb\x8a\x9fTeMKK;\ -\xad\xaf\xafO\x7f_>\x12\x89DA}D~~\xfe\ -\xb3\xf6\xd6\xbd\xd2AZ\xd5L&s\x18\xa4M\xed(\ -\xfdt\x04\x90.CBB\xe6\xa9\xca\x9a\x97\x97\xf7\xd0\ -\xd6\xd66\xb6\xa5\xf46661\x99\x99\x99\xbfv\x94\ -\xde\x9b\xbb\xac\xac\xac\xcb\x90\xb7\xb8\x8e\xd6S{\xc3\xd5\ -\xd55\x1f\x8e\x09/Ud}\x83\xc6R\xe59g\xf8\ -G\x84\xb6\xcc\xe7\x9d\xa5\xf7\xe6\x0e\xd9L\x88\xa7\xce\xd6\ -\x9b:ann\xee\xdb\xbf\x7f\xff\xdfU\xe5\x8c\x89\x89\ -\xd9\x80\xfa\xf9\xf8\xf8\xf8\xad\x9d\xad\xf3\xe6\x0e\xda\xae\xdb\ -\xa9T\xea[\xdf:\xfa7CKK\xcb,11q\ -\xaf\xaa\x9c\xf0\xb9\xf8\xbb\xb3u\xfd\xbe\xfe\xc8\xd8\xd8\xb8\ -Gg\xebM\x9d \x12\x89d\x16\x8b5\xa3\xb3u\xdb\ -Z\x07\xc7\xe6\xa7p\x5c\x8a\xeel\xbd\xa9\x13P\x9e\xa8\ -O\xb9\xdd7whN\xfd\xbfR\x07\xc8\xc6A\xf2\xa8\ -C/9997\xd1\xb3\x84l\x16##\xa3\xee\x14\ -\x0aEOCCC\xd7\xd0\xd0\xd0\x19\x8e57\xda\xa1\ -\x0eb:[\x7fm\x01\xb2;\xd5\xa1\xfb~\xfd\xfaU\ -\xd1\xe9\xf4\xd4\xf7\xd9(\xa8\xefn\x8f\xe7\xe0]\xb6\xf3\ -\xa7\x0ed\xff\xa0yN[u\x10\x10\x100\x05\xce\xa3\ -\xb5\xfe\x89^{\xe8\x1f9$\x83\x99\x99\x99OG\xe8\ -L]@\xf3\xfb\xe6\xeb\x11\x1f\xe1\xde\xf4\xe8\xd1cP\ -ki\xb6\x97\xfe\x91C\xb2\xfc[\xd6\xf0`\x9f\xac\x9f\ -\x9e\x9e~\xb6\xad2\x7f\xe8\x1a^{\xea\x1f9\xb4\x96\ -\x82\xc6\x9b\xf6\xd2\x9b:\x80\xe6\xb7qqq[\xd4!\ -/\xea\xf3MMM[\xfd\xa5\x90\xf6\xd6?r\xb1\xb1\ -\xb1\xdf\xa9|\xab\xec\x93\x83\x97\x97\xd7\x085\xc8\xd9\xb0\ -\xd6\x0f\xc7\xbf\xe7\xce\xce\xce\x03ZC\xbb#\xf4\x8f\x1c\ -ZGio=~\x0c,--{\xa2\xb5\xff\xb6\xca\ -\x87\xec\xcb\xbc\xbc\xbc\xc7\xcd\xc2\xa6\xa3y\xdc\xfb\xe8w\ -\x94\xfe\xd1\xbb\x04h[\xf8w\x94^[\x03\xd4\xe7\xa3\ -\xfeB\x1d}\x0e\xd4\xb3\x86\x81\x81\x81\x13\x1cC\xce\xa9\ -\xc6\xf5\xe9\xd3\xe7\x80\xb6\xb6\xb6\xc5\xbbx\xe8(\xfd#\ -\x07i\xfd\xf6!\xef6\xda\x1b\x81\x81\x81S\xd5!\x97\ -\xbf\xbf\xffDe\x99h^\xd5\xfc}\x0c\x9c\x7f\xfd\xf1\ -\xae\xb6\xd7\x91\xfaG\xce\xc7\xc7gt\xc7i\xf8\xdd@\ -k\x86h\xcdD\x1d2YYY\x855/\x1f\xbd\x9b\ -Q\xed\xd7\xd0:\x86\xab\xab+\xb7y\xba\x8e\xd6?z\ -\xaf\x81\xdaH\x87(\xf9=\x80\xfa)U\x87H\x15h\x8d\xa8\xf9\xf8\ -\x8a\xd6\x92\x0c\x0c\x0c\x1cQ\xd9\xd0^\xb8\xdeV>\xe1\ -\xdc\xf7\x91r\xde\xf1\xa9\xc0\xd9\xd9y\xa0:\xdaU\xf7\ -\xee\xdd?\xf0+\xdao\x03\xf5\xf1={\xf6\x9c\xd9\x5c\ -gAAA_\xa9\x83G\x07\x07\x87Lu\xe8L\xdd\ -P\x9e\x87i\x8bC\xedS\xb5\xbfh\x0bP\x9bh\xf6\ -\xfe\xffc\xce\x114qh\xddC\x1d\xbc\xb5\x07\x90\xed\ -\xdd|\x8d\xe0c\x1c\x9c\xe3.W\x17O\xa6\xa6\xa6^\ -\xeaX\x1bG.%%\xe5\xd8\xa7\xbeg\x1a\xbd\xa7F\ -\xfbt\xda*\xeb\x87\xbc{\xff'\xa8c\x8d\x10\x8d\xeb\ -\x9fZ\x9f\xff.\xc06\xe7\xa9\x865\xe9Z\x0f\x0f\x0f\ -I[yA6h[\xfb\x1dd[\x98\x98\x980\xd4\ -\xa1\x9b\x8e\x82\x9d\x9d]\xbc:\xe6\x05p\x1c\x9d\xf51\ -\xfb\x0e\xd0;\xb9\xe0\xe0\xe0\xb9m\xa5\x8fd\xf8\xb7\x9e\ -\x11prr\xcaQG\x1d\xa0\xf3\x8dp,\xcd}\xd7\ -\xfb\x01U \x1b\xd3\xc5\xc5%\xaf\xf9\xda\xd0\xc7\xea\x1e\ -\xc9\xd0\x11\xbaj/8::f\xabk~\x8c\xde9\ -\xa1y\x0f:_\x8a\xe6Z\xe8,\x01r\xc8\x8f\xc2\x90\ -\xfd\x85\xecLu\xd0B<#\xde;[\x7f\xea\x00\x9d\ -NOS\xe7y\xc6\xf6vH\xf7\xe8\xbcqg\xebM\ -\x9d\xa0\xd1h\xc9\xea\xda\x07\xdd\x11.00\xf0\xcb\x7f\ -\xda\xf3\xf2o\x83\x99\x99\x99\xb7:\xe6\xff\xed\xe5T\xcf\ -1#\x87\xce\xee\xa03<\x9d\xad7uBSS\xd3\ -4!!awg\xeb\xba\xb9C\xba\xd6\xd7\xd7\xa7\xc5\ -\xc4\xc4T\xaa\x86\xa35)\xb4\x97\xbb\xb3\xf5\xa6N\xc0\ -\xe7\x9a\x84\xd6:;[\xe7-\xf55h\x7f\xa7\x97\x97\ -\xd7p\x18\xfeF\xe5\xb9x\x89\xcetv\xb6\xde\xd4\x0d\ -4G\xe8\x8c}#J\x87\xf6\x5c@\x1ez\xb7\xc4\x1b\ -\xb2\xf9\x91\xbd\xa5\x9a\x1e\xceEf\xb7\xc6\x06\xfe7\xa1\ -\x93\xce\xbf?k\xcd\xf9w\xb4\xae\x8e\xf6\x9d\xab\xe6M\ -JJ\xfa\x11\x9d\xf5\xef(\xfdt\x14\xd0\xda\x0a\xfaf\ -D{\xeb\x1e}\xdb\x03\xcd\x19Z\xcb\x17\xda\xe7\xd9\x9c\ -/4\x1fD\xdf\xbchO}t\x16\x90\x8d\x14\x1e\x1e\ -\xbe\xa4\xd9\xf9\xf969\xf4\xae\x10\xed\x8dh\xcb9\x22\ -\xb4\x16\xd5l\x1fd\x8d:\xd7\x08?5 \xbb\x0f}\ -\xdb\x06\xd9J\x1f3wCy\xd0>+X\x86\x10\x96\ -e\xae\x0e\x9e\xac\xac\xac\xc2\xd17\x8eT\xe9\xa09\xf7\ -\xff\xfa\xb7\xbf\xa8T\xaa\x11\x1a\xabQ\x9f\x8d\xde\xe7\xa2\ -o2eff^Bk\x0d\x0a\x0d\x0a \x0d\x0a \ - Artboard\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a \ - \x0d\x0a \ - <\ -/circle>\x0d\x0a \ - \x0d\x0a \ -\x0d\x0a\x0d\x0a\ -\x00\x00\x04\x5c\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / error / Edit\ -or only\x0d\ -\x0a Creat\ -ed with Sketch.<\ -/desc>\x0d\x0a \x0d\x0a \ -\x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x15\xcc\ -I\ -I*\x00j\x08\x00\x00\x80?\xe0@\x08$\x16\x0d\x07\ -\x84BaP\xb8d6\x1d\x0f\x88DbQ8\xa4V\ --\x17\x8cFcQ\xb8\xe4v\x0b\x02\x7f\xc7\xa4R9\ -$\x96M'\x94JeR\xb8\xa4\x82Y/\x98Lf\ -S9\xa4\xd6a.\x9bNgS\xb9\xe4\xf6}#\x9c\ -O\xe8T:%\x16\x8d/\xa0\xd1\xe9T\xbae6\x9d\ -\x1f\x81\xd3\xeaU:\xa5V\x91Q\xabVkU\xba\xe4\ -B\x93]\xb0XlU*\xfd\x8e\xcdg\xb4N\xec\xb6\ -\x9be\xb6\xdd&\xb5\xdb\xeeW;\xa4J\xe3u\xbc^\ -o7{\xd5\xf6\xfdi\xbe_\xf0X:\xde\x07\x09\x87\ -\xc4Sp\xd6`\x0e6\xb4\xd0\xc8\x02\xdf\xb91L\x14\ -3\x05\x0dH\x02PWX\x0b<\xe6\xc6\x80\x5c\xc0]\ -#XY\xa7}Vqx\x0a\xc5\xcfCJflB\ -\x90R\x86\x84\x9f \x22AA\x11\xd7\x9e\x85o X\ -\x828K-8\xb1\xe9G\xd5\xda96\x1d|\xf5\xa9\ -\xcf\x06>:G8)\xd2\x0a\x0c\x9e; \xa8>\x10\ -!1\xc5\xd4\xcf9vo\x1dw\x9b6f\xfaK\x12\ -\x04\x84\x14/RohL\xc3?\xa2\xf6s\xe5\xb1~\ -+~y\x5c\x80\x04\xf4\x99\xa4*\x0a<,G\xe3B\ -8\xbe\x81\x99(\x99\xbfK\x04\x1a\xac\xbf\x893\x9ej\ -\x00\xce\x91\xf0U\xa0\xa2r\xde\xd0\x92\xd0H\xd6\xab\xa4\ -+\xec\x1e\xabB)+bf\x13\x88(\xc6\x94\x1c\xa8\ -)\x9c\x82\x9dH)\xe2\xd0\x82I\x03\xde\x82\x06\xa8+\ -f\x924#\xe4\x13\x01%\x11\x1b\x0a\xd6\xaeQ*;\ -\x13\x8d\xe8+\xda\x8e\x1d\xc8)*\x82\x94\xc1\xa4\xa4l\ -\x22\xc9\x00\x02h\xcb\x01\x81\xf9-\x8c\x11R\x0a\x05\xa3\ -1\x08\x00)JA\xa1`\x92\xc8J\xd4\xd2\xa9\xc8\xc8\ -\xc4N\x16\xa0\xa6z\x0a\x01\xa2\xb3\x11\x1c\x02O\x03\xf8\ -a=\x9e\xa9y\xad?\x82g\xb5\x05%\x80\x02\xe22\ -y\xcf\x00 I=\x86\x11\x8a;5\xaa\xd4\x82\x9f6\ -\xa2\xf19j\x82\x89H\xa9\xea\xcf\x00B\x88eO\x97\ -j\x19\x9dQ\x8b\xc7\xf5LONh\x93BJ\xc1#\ -b=I*\x95\x82\x9bJ\x22F}l 2g\xe9\ -~\x8a\x9f\x14\xc4\xcb]\xa9\x918\xb6\x82\x94H(\x04\ -\x88\x9fm\x08U\x04\x9b\x88\xd5d\xb2H\x90\xdb\x1c\x8d\ -D\xe5\xa2\x0a%\xa2\xa3\xa4\xcaF\xab0\x01(\x90C\ -\xe8\xa1)2\x8d\xb6u\xa2\xbaY\xea]h\x86\xc2n\ -\x8b\xa4\xed \x80:\x22i\xc1!\x8bB~\xab&\xbd\ -\xf4\x06\x9e\xb7\xed\x9a\x82\x02\xc8\x89\xc72\x83\xd74\xc4\ -\xbd\xdc\xebm\xd6\x86@\x02\x9a@VULh\xdd\x04\ -\x92k\x1cNG \xa3\x8a*\x19\xcc\xb1|\xeb\x84\xae\ -WJ\x95\x85\xa1p\x012\x90\x0c\xc8\xa852\x9c\xeb\ -\x1dFg\x07U1\xfcb\xe2 \x08\xf1\x04\x912\xae\ -@\xb7\xe4J>H\x85D\xe5\xb2\x0a$\xa2'\xac\xca\ -\xec-\x19x+\x99Q\xc8\x849\x0fgX:\xf1\x9e\ -\xa8\xd9\xfa\x13\x13\x9a\x08(^\x88\x9bs(L\xb7\xc4\ -\xe7\xda\x0a\x02\x22%\x84\xca(\xea+\xf6\xa8\xa2\xea\xc8\ -DO\xa6\x82\xa8\x89\xb12\xb2\xabtO^\xde(\x89\ -\x932\x87\x1bLE\x9d\xad\x1bj\x0f\x13\xb8\xe8$\xc0\ -\x88nr\x96\xea\xb6\xee\xe8-\xe4\x88\x1a\x93,\xe1\x8f\ -\xeaK\xae\xd6\xa2pH7\x09/\xee[\xa6\xc0\xd8\xef\ -\x00\x07\x1e\x87\xf22\x97&\x96\xf0\x0bo.\xa1\xf3(\ -/7\xc3s\xbcW>ft=\x1a\x1d\xd2\x86\x9d:\ -'\xd5\xa8\xdd\xe2\x7f\xd6\xa0\x9dx\x01\xc3\xa1\xfcHi\ -\xc5\xad\x9cn\xf3\xc8r[\xf2\xf5\xdf'\xde\x00\x01\xe1\ -x\x88w\x8d\xe4->WD\x88\xf7\x1d\xd2\xed\xd4\xad\ -\x9e\x82{\xc1\x1b_(\x0ey}\x12j\x08\x05k\x94\ -\xe0v\xb7\xe6G\x22\x0a\x03\x22&\xbe\xb52\xecH\x8f\ -\xc4\xa1\x7fi\xdc\x22\x95\x99xk$\x0a\xb8\x82\x02s\ -\x12K\x13\x10\xd14\x22%\x04\x8a\x82\x14\xffI\xf4\x10\ -'&\xbd\x09\x81$,+\x88(?\x80\xe5\x14V\x9d\ -\xd0\xb4x \x91\xe2|\x05\x8c\xd7\xa2qLAB\xcc\ -\x1b]F4C\xa0\x90\xf5\x08KT#,J\xd8g\ -\x84Vd.\xa1QS\x1f\xa6\x84\x16\xa9\xf0d\xfd\x9e\ -|2,(\x00L\x10P\xcf\x0eJ\xb0zA\x22\x1d\ -\xbf\xb9R\xdc\x80\x05\xc9\x05\x08\xc4T^/x\x90\xe5\ -\x1a@\x00}\xe4D\xd0\x89\xb8|\xcab\x0cN-\xa8\ -\x00`A\x92$\xa2@b\x8cO\xb1\x5c\x89\x99\x01\xa0\ -\x0b\x12\xd8\xfc\x1adTQ \x90\xbf\x13K\xc4d\x8c\ -\xc4F4F\xa8\xd9\x1bL\x84pKq\xcc\x8aGS\ -\xe9\x1d\xe3\x0cy=1\x94\x82A\xa8\xf8\x9e#J|\ -\x8f\xe4J7H(\xe5\x1d#\xb4x.\xb1\xeaF\xc6\ -y!\x1f\xa4\x99\x10\x92\xb1\xc6B\x119\x0c\x0c\xe4C\ -\x08\x8cE\xb2N\x00\x09\x1cD#\xec\x92\x94$>Q\ -\xc891!\xe4\xd1t\x95\xb2\xbc\x87\xcb\x10a\x1a\xc9\ -\xdcn\x04*\xe4 \x12\x00(hG8\x07\x99B\xf0\ -\xe2\x8e\x82{-d\xbc\x85\x932&M\x90\x06k5\ -\x80\x00\x82\x8f\xe0\xb0\x88L*\x0a\x04\x86\x83\x06\x11\x07\ -\xac.'\x14\x8a\xc5\xa1,\xc8\xc8*\x10\x88\x84\x1b!\ -\x00\x18\xbb\xec\x03$A\x0c\xa4\xe8\x89 \x05\xf9\x17\x96\ -\xcb\xa2\x8d\x09\x88\xb1\xf94i\xcb\xe1J!\x9c\xe8\xbf\ -7\x9e\xcf\xa7\xf4\x08\xbb\xfe\x87A\xa2\xd1\xa8\xf18\x14\ -\x0e\x11\x07\x9b\xc3@\x90\xf8\x8d\x22z\xda\xaa\x81\xdeU\ -\x86D aS\x82\xad\x86\x96\x02]v\x7f1hL\ -\xe6\xb4\x09\xcc\xee\xc7l\xb6\xcbho\xfbu\xca\xe7J\ -\x82A\xa7\xb4\xfa\x88\xc2%s\x89\xc6Y\x88xA\xe2\ -\xe7*4N\x86i\x9b\xecN\xcbg~M\xa7\xf6\xa1\ -\x9c\xf3\x15\x94\xae\xdc2\xb9\x8a\x0d\xd6\x99x\x87D/\ -y[\xf8>\x10\xeb\x84\x01r\x8e\x9c8jT\xfe\xca\ -\xe3&\x98\xebN\x1f'\x99\xda\xcf\xb2\xfbm\xcc_7\ -w\xa7g\xaaYFw\x08\x8a\xfe\xe2\xae\xb6\xd4\xf1>\ -}\xb5\xae\x99l1\xf3\xec\x8e\xd3u\xd4\x8an:\xbd\ -\x88.\xf0\x01M\x97\xdes\xf7\xccU\xfc\xa3\x08Wu\ -\x06v\x01\xa3;\x9bf\xe7\xec\xad}\x9f\x8c\x17\xaf\xf2\ -\xddv\xfb\xb2\xee\xff\x03\x14\xcf\xfe\x8c\x0f\xd8\x00\xcfm\ -\x80\x88\x10\x13\x0b s\xb9\xecc]\x04\xf5\xd2}_\ -\x17\xd2\x0fm_vuPx\x19U\xc0\x02R\x9c\xc4\ -\x14#e\x0b\xf7\xa4Bm\x9a\xf5\xa1\x90l\xe1'b\ -\x11\x8a\x19XQ\xbe\x85\x9f\xb6a\x7f\x15\x90\x82\xa5r\ -?\x008\xe0@\x0cc\xb3\x16#s\xa2WF'\x8a\ -\xdb\xa8\xaaC_b\xd7y\xbfh\x1dE\xfczB\x08\ -D\x81@>\x90\x81\x99\xe9(]X\x91\xb1\x89\x9f\x09\ -\x19\xb5\x91e\xd5\xbaH~d\xa7\x85\xd8R\x88e\xc0\ -yP\x06W\xa4\x9c|\xa5\x9817\x83\xa6\x06f_\ -\x9d\x169\x89-~\xa4\xb7eJ\x1d\x97\x02%@\x15\ -\x9e\x92\xaeo\x8f\xe5\xa9\x06\x5c\x9d\xd8\xa9\xda\x8bR'\ -\x94^{\x99]Y\xfa\x80\xa0\xa8J\x19\xed\x90 \xd9\ -\x0a\x8e_h\xdayE\xa4\x11jI\xf2\xa5T:\x05\ -?\xa0\xd6\x0a\x15\xf1\x9c\x1e\xf6J\xa1\xa7\xd4J\xc9l\ -\xa8\xd1Z\x95\xf1R\x85\xc5\xc0\xa3Oc\x80\x0c<\x8e\ -\xc3\x18\xf6\xae\xa1\xe7\x14\xbes\xadV\xda\x82\xcbOk\ -tR\xb9vMKP\x12>-sY\x08\x05\xd1s\ -V\x04\x02\x03(\x1c,\x94\xecjj\x88\xa7(\xab9\ -S\xb3n\x94\xba\xd0D\xed'\xd5\x7f\x0a\x11\xc4 )\ -J\x8c\xb0\x0a\xf9\x1d\xec3\x96(\xab\xe5\xba\xc6\xece\ -\xabL\x0a\xa2@\x97gr\x15^\xa9<\x16\xfe\xb1\xeb\ -\x07O\x0dPn\xbcII\xc1\xd9\xc8\xbb\x0b\xc5d;\ -\xfe\x89\xc0q\xb5\x03\x14\xc8\x10\x8b\xb9\x0b\xbc2;\x92\ -\x0b\xc42\x84\xff\x22\xca2T+'\xcb%\x8c?\x00\ -\xc4s5\x0b\x04\xce\x11\x5c\xc1\x09\xcc\xb3\xb8\xfa\xe5\xb2\ -\x12\xeb+@E\xb2\xec\x8dJ/\x90\x81\x05=J\x85\ -E\xc0\xf8\xd1\x9f\x10\x81\x08%4\xe4\x90\xa0I\xc3!\ -\x87S\xceW\x1dy\x0bR\xaa\xd0\x00T\xd8vt$\ -\x8da\xc7M\xa1\x13\xd22\x05(oB\x09\x0d\xb7h\ -\x14Xr\xc3uB\xb6\xfcl\xd8\xdf\x80\xd3\xd7\x81t\ -\x01\xfd\xeb,2\xd8p\xe9\x08K8W\xcf:\xda\x12\ -\xa0\x01\x7f\x88\x90R\xe1\xa6\xe3.\xc3\xd1*\x0d\x98s\ -_|\xca9\xecK\x90BVP\xc5\xb0\x95\xd0P\xb7\ -\x97\xa2\xcc \x1b\xad\x18B\xee\xc0\xdeBz\x0c\x83\xb4\ -\xea\xbb~\xe2\xe9\xed\xbb\x9e\xf3\xbd\x9d;\xbe\xfb\xc1\xf0\ -\x9f/\x03\xc3\xf1\xbcy\xd7\x8e\xf2<\xbf1\xf5\xf1|\ -\xdfC\xd1\xc8|\xafK\xd5\xf5\x96\xef?\xd7\xf6\xbd\xbf\ -g\xdb\xf7\xbd/w\xdf\xf8\xbc\xbf\x87\xe3\xf9\xbc/\x97\ -\xe7\xfa\xbb\x9f\xa7\xeb\xfb\xb8\xcf\xb7\xef\xfc\xb6\x8f\xc7\xf3\ -\xfd\xb4o\xd7\xf7\xfe\xb2\xc4\x04\x13\x00\xfe\x00\x04\x00\x01\ -\x00\x00\x00\x00\x00\x00\x00\x00\x01\x04\x00\x01\x00\x00\x00`\ -\x00\x00\x00\x01\x01\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x02\ -\x01\x03\x00\x04\x00\x00\x00T\x09\x00\x00\x03\x01\x03\x00\x01\ -\x00\x00\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\ -\x00\x00\x00\x11\x01\x04\x00\x01\x00\x00\x00\x08\x00\x00\x00\x15\ -\x01\x03\x00\x01\x00\x00\x00\x04\x00\x00\x00\x16\x01\x04\x00\x01\ -\x00\x00\x00`\x00\x00\x00\x17\x01\x04\x00\x01\x00\x00\x00b\ -\x08\x00\x00\x1a\x01\x05\x00\x01\x00\x00\x00\x5c\x09\x00\x00\x1b\ -\x01\x05\x00\x01\x00\x00\x00d\x09\x00\x00\x1c\x01\x03\x00\x01\ -\x00\x00\x00\x01\x00\x00\x00(\x01\x03\x00\x01\x00\x00\x00\x02\ -\x00\x00\x001\x01\x02\x00\x10\x00\x00\x00l\x09\x00\x00=\ -\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x00R\x01\x03\x00\x01\ -\x00\x00\x00\x02\x00\x00\x00S\x01\x03\x00\x04\x00\x00\x00|\ -\x09\x00\x00s\x87\x07\x00H\x0c\x00\x00\x84\x09\x00\x00\x00\ -\x00\x00\x00\x08\x00\x08\x00\x08\x00\x08\x00\x802\x02\x00\xe8\ -\x03\x00\x00\x802\x02\x00\xe8\x03\x00\x00paint\ -.net 4.0.9\x00\x01\x00\x01\x00\x01\ -\x00\x01\x00\x00\x00\x0cHLino\x02\x10\x00\x00m\ -ntrRGB XYZ \x07\xce\x00\x02\x00\ -\x09\x00\x06\x001\x00\x00acspMSFT\x00\ -\x00\x00\x00IEC sRGB\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\xd6\x00\x01\x00\x00\x00\ -\x00\xd3-HP \x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x11cprt\x00\x00\x01P\x00\ -\x00\x003desc\x00\x00\x01\x84\x00\x00\x00lw\ -tpt\x00\x00\x01\xf0\x00\x00\x00\x14bkpt\x00\ -\x00\x02\x04\x00\x00\x00\x14rXYZ\x00\x00\x02\x18\x00\ -\x00\x00\x14gXYZ\x00\x00\x02,\x00\x00\x00\x14b\ -XYZ\x00\x00\x02@\x00\x00\x00\x14dmnd\x00\ -\x00\x02T\x00\x00\x00pdmdd\x00\x00\x02\xc4\x00\ -\x00\x00\x88vued\x00\x00\x03L\x00\x00\x00\x86v\ -iew\x00\x00\x03\xd4\x00\x00\x00$lumi\x00\ -\x00\x03\xf8\x00\x00\x00\x14meas\x00\x00\x04\x0c\x00\ -\x00\x00$tech\x00\x00\x040\x00\x00\x00\x0cr\ -TRC\x00\x00\x04<\x00\x00\x08\x0cgTRC\x00\ -\x00\x04<\x00\x00\x08\x0cbTRC\x00\x00\x04<\x00\ -\x00\x08\x0ctext\x00\x00\x00\x00Copyr\ -ight (c) 1998 He\ -wlett-Packard Co\ -mpany\x00\x00desc\x00\x00\x00\x00\x00\ -\x00\x00\x12sRGB IEC61966\ --2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12\ -sRGB IEC61966-2.\ -1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00XYZ \x00\x00\x00\x00\x00\x00\xf3Q\x00\ -\x01\x00\x00\x00\x01\x16\xccXYZ \x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ \x00\ -\x00\x00\x00\x00\x00o\xa2\x00\x008\xf5\x00\x00\x03\x90X\ -YZ \x00\x00\x00\x00\x00\x00b\x99\x00\x00\xb7\x85\x00\ -\x00\x18\xdaXYZ \x00\x00\x00\x00\x00\x00$\xa0\x00\ -\x00\x0f\x84\x00\x00\xb6\xcfdesc\x00\x00\x00\x00\x00\ -\x00\x00\x16IEC http://ww\ -w.iec.ch\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x16IEC http://w\ -ww.iec.ch\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00desc\x00\x00\x00\x00\x00\ -\x00\x00.IEC 61966-2.1\ - Default RGB col\ -our space - sRGB\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00.IEC \ -61966-2.1 Defaul\ -t RGB colour spa\ -ce - sRGB\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00d\ -esc\x00\x00\x00\x00\x00\x00\x00,Refer\ -ence Viewing Con\ -dition in IEC619\ -66-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00,Reference View\ -ing Condition in\ - IEC61966-2.1\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00view\x00\x00\x00\x00\x00\ -\x13\xa4\xfe\x00\x14_.\x00\x10\xcf\x14\x00\x03\xed\xcc\x00\ -\x04\x13\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01XYZ \x00\ -\x00\x00\x00\x00L\x09V\x00P\x00\x00\x00W\x1f\xe7m\ -eas\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x8f\x00\ -\x00\x00\x02sig \x00\x00\x00\x00CRT c\ -urv\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x05\x00\ -\x0a\x00\x0f\x00\x14\x00\x19\x00\x1e\x00#\x00(\x00-\x00\ -2\x007\x00;\x00@\x00E\x00J\x00O\x00T\x00\ -Y\x00^\x00c\x00h\x00m\x00r\x00w\x00|\x00\ -\x81\x00\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\x9f\x00\xa4\x00\ -\xa9\x00\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\xc6\x00\xcb\x00\ -\xd0\x00\xd5\x00\xdb\x00\xe0\x00\xe5\x00\xeb\x00\xf0\x00\xf6\x00\ -\xfb\x01\x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\x1f\x01%\x01\ -+\x012\x018\x01>\x01E\x01L\x01R\x01Y\x01\ -`\x01g\x01n\x01u\x01|\x01\x83\x01\x8b\x01\x92\x01\ -\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\xc9\x01\xd1\x01\ -\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\x0c\x02\x14\x02\ -\x1d\x02&\x02/\x028\x02A\x02K\x02T\x02]\x02\ -g\x02q\x02z\x02\x84\x02\x8e\x02\x98\x02\xa2\x02\xac\x02\ -\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\xf5\x03\x00\x03\ -\x0b\x03\x16\x03!\x03-\x038\x03C\x03O\x03Z\x03\ -f\x03r\x03~\x03\x8a\x03\x96\x03\xa2\x03\xae\x03\xba\x03\ -\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\x13\x04 \x04\ --\x04;\x04H\x04U\x04c\x04q\x04~\x04\x8c\x04\ -\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\xf0\x04\xfe\x05\ -\x0d\x05\x1c\x05+\x05:\x05I\x05X\x05g\x05w\x05\ -\x86\x05\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\xe5\x05\xf6\x06\ -\x06\x06\x16\x06'\x067\x06H\x06Y\x06j\x06{\x06\ -\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\xf5\x07\x07\x07\ -\x19\x07+\x07=\x07O\x07a\x07t\x07\x86\x07\x99\x07\ -\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\x1f\x082\x08\ -F\x08Z\x08n\x08\x82\x08\x96\x08\xaa\x08\xbe\x08\xd2\x08\ -\xe7\x08\xfb\x09\x10\x09%\x09:\x09O\x09d\x09y\x09\ -\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\x11\x0a'\x0a\ -=\x0aT\x0aj\x0a\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\ -\xf3\x0b\x0b\x0b\x22\x0b9\x0bQ\x0bi\x0b\x80\x0b\x98\x0b\ -\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c*\x0cC\x0c\x5c\x0c\ -u\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d&\x0d\ -@\x0dZ\x0dt\x0d\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\ -\x13\x0e.\x0eI\x0ed\x0e\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\ -\xee\x0f\x09\x0f%\x0fA\x0f^\x0fz\x0f\x96\x0f\xb3\x0f\ -\xcf\x0f\xec\x10\x09\x10&\x10C\x10a\x10~\x10\x9b\x10\ -\xb9\x10\xd7\x10\xf5\x11\x13\x111\x11O\x11m\x11\x8c\x11\ -\xaa\x11\xc9\x11\xe8\x12\x07\x12&\x12E\x12d\x12\x84\x12\ -\xa3\x12\xc3\x12\xe3\x13\x03\x13#\x13C\x13c\x13\x83\x13\ -\xa4\x13\xc5\x13\xe5\x14\x06\x14'\x14I\x14j\x14\x8b\x14\ -\xad\x14\xce\x14\xf0\x15\x12\x154\x15V\x15x\x15\x9b\x15\ -\xbd\x15\xe0\x16\x03\x16&\x16I\x16l\x16\x8f\x16\xb2\x16\ -\xd6\x16\xfa\x17\x1d\x17A\x17e\x17\x89\x17\xae\x17\xd2\x17\ -\xf7\x18\x1b\x18@\x18e\x18\x8a\x18\xaf\x18\xd5\x18\xfa\x19\ - \x19E\x19k\x19\x91\x19\xb7\x19\xdd\x1a\x04\x1a*\x1a\ -Q\x1aw\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b;\x1bc\x1b\ -\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c*\x1cR\x1c{\x1c\xa3\x1c\ -\xcc\x1c\xf5\x1d\x1e\x1dG\x1dp\x1d\x99\x1d\xc3\x1d\xec\x1e\ -\x16\x1e@\x1ej\x1e\x94\x1e\xbe\x1e\xe9\x1f\x13\x1f>\x1f\ -i\x1f\x94\x1f\xbf\x1f\xea \x15 A l \x98 \ -\xc4 \xf0!\x1c!H!u!\xa1!\xce!\xfb\x22\ -'\x22U\x22\x82\x22\xaf\x22\xdd#\x0a#8#f#\ -\x94#\xc2#\xf0$\x1f$M$|$\xab$\xda%\ -\x09%8%h%\x97%\xc7%\xf7&'&W&\ -\x87&\xb7&\xe8'\x18'I'z'\xab'\xdc(\ -\x0d(?(q(\xa2(\xd4)\x06)8)k)\ -\x9d)\xd0*\x02*5*h*\x9b*\xcf+\x02+\ -6+i+\x9d+\xd1,\x05,9,n,\xa2,\ -\xd7-\x0c-A-v-\xab-\xe1.\x16.L.\ -\x82.\xb7.\xee/$/Z/\x91/\xc7/\xfe0\ -50l0\xa40\xdb1\x121J1\x821\xba1\ -\xf22*2c2\x9b2\xd43\x0d3F3\x7f3\ -\xb83\xf14+4e4\x9e4\xd85\x135M5\ -\x875\xc25\xfd676r6\xae6\xe97$7\ -`7\x9c7\xd78\x148P8\x8c8\xc89\x059\ -B9\x7f9\xbc9\xf9:6:t:\xb2:\xef;\ --;k;\xaa;\xe8<' >`>\xa0>\xe0?\ -!?a?\xa2?\xe2@#@d@\xa6@\xe7A\ -)AjA\xacA\xeeB0BrB\xb5B\xf7C\ -:C}C\xc0D\x03DGD\x8aD\xceE\x12E\ -UE\x9aE\xdeF\x22FgF\xabF\xf0G5G\ -{G\xc0H\x05HKH\x91H\xd7I\x1dIcI\ -\xa9I\xf0J7J}J\xc4K\x0cKSK\x9aK\ -\xe2L*LrL\xbaM\x02MJM\x93M\xdcN\ -%NnN\xb7O\x00OIO\x93O\xddP'P\ -qP\xbbQ\x06QPQ\x9bQ\xe6R1R|R\ -\xc7S\x13S_S\xaaS\xf6TBT\x8fT\xdbU\ -(UuU\xc2V\x0fV\x5cV\xa9V\xf7WDW\ -\x92W\xe0X/X}X\xcbY\x1aYiY\xb8Z\ -\x07ZVZ\xa6Z\xf5[E[\x95[\xe5\x5c5\x5c\ -\x86\x5c\xd6]']x]\xc9^\x1a^l^\xbd_\ -\x0f_a_\xb3`\x05`W`\xaa`\xfcaOa\ -\xa2a\xf5bIb\x9cb\xf0cCc\x97c\xebd\ -@d\x94d\xe9e=e\x92e\xe7f=f\x92f\ -\xe8g=g\x93g\xe9h?h\x96h\xeciCi\ -\x9ai\xf1jHj\x9fj\xf7kOk\xa7k\xffl\ -Wl\xafm\x08m`m\xb9n\x12nkn\xc4o\ -\x1eoxo\xd1p+p\x86p\xe0q:q\x95q\ -\xf0rKr\xa6s\x01s]s\xb8t\x14tpt\ -\xccu(u\x85u\xe1v>v\x9bv\xf8wVw\ -\xb3x\x11xnx\xccy*y\x89y\xe7zFz\ -\xa5{\x04{c{\xc2|!|\x81|\xe1}A}\ -\xa1~\x01~b~\xc2\x7f#\x7f\x84\x7f\xe5\x80G\x80\ -\xa8\x81\x0a\x81k\x81\xcd\x820\x82\x92\x82\xf4\x83W\x83\ -\xba\x84\x1d\x84\x80\x84\xe3\x85G\x85\xab\x86\x0e\x86r\x86\ -\xd7\x87;\x87\x9f\x88\x04\x88i\x88\xce\x893\x89\x99\x89\ -\xfe\x8ad\x8a\xca\x8b0\x8b\x96\x8b\xfc\x8cc\x8c\xca\x8d\ -1\x8d\x98\x8d\xff\x8ef\x8e\xce\x8f6\x8f\x9e\x90\x06\x90\ -n\x90\xd6\x91?\x91\xa8\x92\x11\x92z\x92\xe3\x93M\x93\ -\xb6\x94 \x94\x8a\x94\xf4\x95_\x95\xc9\x964\x96\x9f\x97\ -\x0a\x97u\x97\xe0\x98L\x98\xb8\x99$\x99\x90\x99\xfc\x9a\ -h\x9a\xd5\x9bB\x9b\xaf\x9c\x1c\x9c\x89\x9c\xf7\x9dd\x9d\ -\xd2\x9e@\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0i\xa0\xd8\xa1\ -G\xa1\xb6\xa2&\xa2\x96\xa3\x06\xa3v\xa3\xe6\xa4V\xa4\ -\xc7\xa58\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7n\xa7\xe0\xa8\ -R\xa8\xc4\xa97\xa9\xa9\xaa\x1c\xaa\x8f\xab\x02\xabu\xab\ -\xe9\xac\x5c\xac\xd0\xadD\xad\xb8\xae-\xae\xa1\xaf\x16\xaf\ -\x8b\xb0\x00\xb0u\xb0\xea\xb1`\xb1\xd6\xb2K\xb2\xc2\xb3\ -8\xb3\xae\xb4%\xb4\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6y\xb6\ -\xf0\xb7h\xb7\xe0\xb8Y\xb8\xd1\xb9J\xb9\xc2\xba;\xba\ -\xb5\xbb.\xbb\xa7\xbc!\xbc\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\ -\x84\xbe\xff\xbfz\xbf\xf5\xc0p\xc0\xec\xc1g\xc1\xe3\xc2\ -_\xc2\xdb\xc3X\xc3\xd4\xc4Q\xc4\xce\xc5K\xc5\xc8\xc6\ -F\xc6\xc3\xc7A\xc7\xbf\xc8=\xc8\xbc\xc9:\xc9\xb9\xca\ -8\xca\xb7\xcb6\xcb\xb6\xcc5\xcc\xb5\xcd5\xcd\xb5\xce\ -6\xce\xb6\xcf7\xcf\xb8\xd09\xd0\xba\xd1<\xd1\xbe\xd2\ -?\xd2\xc1\xd3D\xd3\xc6\xd4I\xd4\xcb\xd5N\xd5\xd1\xd6\ -U\xd6\xd8\xd7\x5c\xd7\xe0\xd8d\xd8\xe8\xd9l\xd9\xf1\xda\ -v\xda\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\x96\xde\x1c\xde\ -\xa2\xdf)\xdf\xaf\xe06\xe0\xbd\xe1D\xe1\xcc\xe2S\xe2\ -\xdb\xe3c\xe3\xeb\xe4s\xe4\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\ -\x1f\xe7\xa9\xe82\xe8\xbc\xe9F\xe9\xd0\xea[\xea\xe5\xeb\ -p\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee(\xee\xb4\xef@\xef\ -\xcc\xf0X\xf0\xe5\xf1r\xf1\xff\xf2\x8c\xf3\x19\xf3\xa7\xf4\ -4\xf4\xc2\xf5P\xf5\xde\xf6m\xf6\xfb\xf7\x8a\xf8\x19\xf8\ -\xa8\xf98\xf9\xc7\xfaW\xfa\xe7\xfbw\xfc\x07\xfc\x98\xfd\ -)\xfd\xba\xfeK\xfe\xdc\xffm\xff\xff\ -\x00\x00\x03\xae\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / Default - Upd\ -ated\x0d\x0a \ - Created \ -with Sketch.\x0d\x0a <\ -/defs>\x0d\x0a \ -\x0d\x0a \x0d\x0a <\ -/g>\x0d\x0a\x0d\x0a\ -\x00\x00\x04\x8d\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / error / Not \ -active \x0d\ -\x0a Creat\ -ed with Sketch.<\ -/desc>\x0d\x0a \x0d\x0a \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x04s\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / Editor only \ -- Updated\x0d\x0a Cre\ -ated with Sketch\ -.\x0d\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a\ - \x0d\x0a\ -\x0d\x0a\ -\x00\x00\x15\x0a\ -I\ -I*\x00\xa8\x07\x00\x00\x80?\xe0@\x08$\x16\x0d\x07\ -\x84BaP\xb8d6\x1d\x0f\x88DbQ8\xa4V\ --\x17\x8cFcQ\xb8\xe4v\x0b\x02\x7f\xc7\xa4R9\ -$\x96M'\x94JeR\xb8\xa4\x82Y/\x98Lf\ -S9\xa4\xd6a.\x9bNgS\xb9\xe4\xf6}#\x9c\ -O\xe8T:%\x16\x8d/\xa0\xd1\xe9T\xbae6\x9d\ -\x1f\x81\xd3\xeaU:\xa5V\x91Q\xabVkU\xba\xe4\ -B\x93]\xb0XlU*\xfd\x8e\xcdg\xb4N\xec\xb6\ -\x9be\xb6\xdd&\xb5\xdb\xeeW;\xa4J\xe3u\xbc^\ -o7{\xd5\xf6\xfdi\xbe_\xf0X:\xde\x07\x09\x87\ -\xc4Sp\xd6`\x0e6\xb5 \x05\xc1E0P\xcc\x14\ -5\x05\x09A]pW6r\x0a\xd6\xc6\x80_U\x9c\ -^\x02\xb1s\xd0\xd2\xa4\x01H)B\x0aO\x82\x91 \ -\xa0\x88\xeb\xce\x0a\xb7\x82\xac`\xab-\x0b\xd2\x8f\xa5\xb4\ -p,:\x99\xec\x80\x19\x059\xc1N\x90^<\xed\xd9\ -\x05A\xc1S\x1a\x1d\x1c\xf3\x85f\xeb\xd7x\x93i\x01\ -b\x0a\x90\x82\x85\xeaM\xe8)\x9bB\xbd\x9c\xf6l^\ -\xaa\xdfnW \x01AP\xb0S\xc5\x89\xf9\x058\xe8\ -R\x93?e\x83\xfa\xac\xbd\xcb\x82\x04\x03 \xa5Z\x0a\ -'.\x84\xb3B5\xaa\xe9\x0a\xfa\xff\xaa\xd0\x0aJ\x90\ -\x13\x88(\xc6\x94\x1c\xa8)\x9c\x82\x9dH)\xe2\xcc<\ -((j\x82\xb5\x898\xf8\xd0\xbeiD \xc2\xb4\xeb\ -\x94$\x8e\xa4\x03{\xbe\x8e\x9d\xc8)*\x82\x94\xcd\x09\ -\xb0\x8b$\x00\x0a\x0a\x18 \xa3\x04,\x82\xb2(\xc4\x1c\ -\x00\x0aM\x09a\x09\xc5\xab\xacV\xaaE\xf22\x04\x16\ -\xa0\xa6z\x0a\x01\xa2\xb29\x1c\x82\x8f\xed\x09\xeb\x06\x82\ -q\x9a\x08.#-\xb2\x08\x1240\xeca&\xae\x92\ -z\xa7(\xa2\xe9\x01j\x82\x89H\xac\xbe\x82\x0a-\x09\ -v\xa1\xa4\x02\xf2\x0aOJ\xe8\xa9*\xd0\x8d\x88\xf4\xdc\ -\xabP\xea|\xe0\xbb B\x02\x0a_\xa2\xa7\xc4\xe8\xd0\ -\xd2\x0ab@-\xa0\xa5\x12\x0a\xf8\xa2\x07\xda\x0a\x154\ -&\xe25D\xaa\x95\x22\x9bE\xa2)\x01h\x82\x89h\ -\xa8\xe8\xd0\x91\xad\x22\x04\xfd\xa0\x90b(J4#m\ -G6.u2\x99T!\x8e2\x0a\xe7\xa0\x80:\x22\ -i\xa0\xa1\x8bB~\xd6G\xf8\x1a\x82\xd4H ,\x88\ -\x9cm\x08=]\xc8\xeb\xddx\xb6X\x08Z@)\xa0\ -\xa5b*74$\x9a\xc6\x90Kh \xe2\x8a\x86m\ -\x0c7,\xdbk}|\xa5\xdb\xa8R@L\xbc\xa8\xa8\ -4\xd0\x9c\xf7:\x04\x1d \xa6**<4$Ly\ -x\xad\xd7\x9a\x95z\xa1)\x01l\x82\x89(\x89\xea\xd0\ -\xb9\xab:@\x0a\xc3\x88\xac\x14\xc6\xd6\xc9n\x10\xb6\xe1\ -J>\x18\x84$\x06\x82\x0a\x17\xa2&\xdbB\x13^H\ -\x15<\x82\x00\x88\x89`\xd0\x8a8=\xb2\xbcd*6\ -F\x83\xa4\x13P\x01\x8c\x22\x06\xc3B\xc9\xe1(\x15%\ -b\xa2&KB\x1cf\xcb\xf6r\xa2\xe7h2@\xdf\ - \x92*\x1f\xa11\xba&A\xa3 \xb62 j4\ -2\xa5\xe1\x9b\xc9\xd8\xfb\x18\xc7f\xda\xa0\x01\xab!\xda\ -\xc0\x03\xad-\x89\x06\x8e\x00k\xc8~\xc0\xc6\xecX\xf6\ -\xc96\xec\xcb\x1e\xa2\xa8\x1f\xfbV\xd8\x86\xed\xdb\x83L\ -\x7f\xee{\xaa\x1d\xbb\x80;\xca'\xa7\xb5[\xea\xc5\xbf\ -\xa0\x9a\x9c\x88\x88\xf0\xb9o\x11\xae\xa2\x9aJ\x80\xf0fD\x18aE\ -\x81\xad\xa4d\xbal\xdaU,\x81\xcb\xa6\xd3\x18\x1c\xce\ -\xa5\x5c\xae\xceb\xb5\xeb\x0d\x8a\x0d@\x00Af\xd40\ -\x0c:\xc7\x09\x95!\xe0\xc7\x8b`\x00\xd1#L\xdc\xa1\ -\x15Il\xde\xb2\x00\xad\xdd\xef\xf3\xb9\xd6\x03\x076\xb2\ -\xd9\xe6\xb6\x9b]\xb2T\x0f\x83:\xe0\xc0[\x93\xa6\x0c\ -\x1a\x91\xbf\xae\xf7\x9a\xb5\xeee\x84\xce\xcb\xf0Y\xed\x0c\ -G\x0dB\x91\xe2\xacr\xa2,\x19u\xa1\x13\xc8\xdbY\ -\x88\xadT\x01W\x9a\xdf/\xda-\xccR\xc1\xba\xde\xc0\ -\xf4\x96\x8d6\xc5\xfeQ\x83+\xb4#9\x1b;\x87\xb3\ -\xda\xcd6\xfb\xed\xf6\x83\xa3\xa2\xe0b8W)U2\ -\x06\xcf\xd0\x84\xe4n\xeee\xea\xb1\x9c\xeanz~l\ -\xefZi\x89\xe1\x80\xa0\xdb\x08\x18\x8e\xe4\xbf\x91\x90\xb0\ -\x99\x9d\xa6n\xb5\xe9\xd1z\x1f\xd6\x01\xebK\xde\xd6\x0d\ -*\x15\x90b\xa5aIP1\x01#1_\x86\xc9\xe3\ -m\x9eX\x02\x10?\xe1W\xa9\x06a\xde\xc7a\x9eJ\ -\x87\xa4\x18\x84G\x13s\xe9\x06\x19\x922\x85\xfe\x84Y\ -\xa7\x91\xfc\x86 V\xf2/_\xe0$\xa2\x04n\x92\xa2\ -\x19\x06\x1eSq\x95#'\x1d(\xad\xfa\x8bW\xd8\xc9\ -\x80\x7f\xe4U\x864I\xe3g\x9d\x15\x1d\x90b%7\ -\x15\x922\xae@J\xe1'>\x14\x92\x1a\x88\xc6[X\ -\xa4\xa4\x9aL\x8a\x8f\xf9=\x03\x94SiM\x0c\x95[\ -\xd7\xe5\xceK\xdd\x09z\x5c\x85\xe7\x19~\x1aiTI\ -\xb2N\x94%)RVs_\xb9\x12tXdz\x09\ ->\x98\x119\x89\xa1J\x85\xc4\x18\xa3M\xc3\xc8:~\ -\x96&\xf9j\x85ShJY;\xa1\xd1*&\x1eE\ -A$\x18\xd6A\x81tL\xd5A\x83$\x8e%\x9ee\ -x\xb2\x13\x8b\xa9\x9a^]\xac\x13\xdam\x11\xa7d\xd3\ -\xfc(F\x10`\xa5\x062\xd0a\xdd#9^\x99\xb6\ -\x80n+4\xf2\x98\xb2\x13J\xd5\x10\xad\xec\xbaJ\xad\ -\x96j\xfbA8\xb2\xadT\x9a\xcdC\xec\xfbbc\x9f\ -\xe4;\x1e\xddg\xeb+\x89(\xb6\x90\x9br\xe5\x85\xad\ -\xfa\xba\x81\xba\xae9\xce\xef\xb9\xa7g\x06x\xbc\xab\x8b\ -\xb2\xd3\xbb\xafu~\xf1\xbf\x13\xfb\xd1\xd7\xbd\xaf\xf6v\ -\xc5\xb80K\xf7\x08D\x8b\xe4\x18AM\xc5D\x18\xf8\ -\xc2\x9a \x81\x06%\x13r\x81\x06\x18q4\xa6\xe4\xc7\ -\x00\x09\xac\x00\xc41\xfcL\x8dA\x87L\x91x\xc7\xb1\ -\xc1\xbd\x06$2\x9c)\xc5@\xcb\x0c\xc1\x06\xb5\xf0@\ -6\x12\x07\xf3[\x8a\xbf@\xc3\xa4\x1a\x0b\xcds{\xc9\ -#\x00\x12\xa7\xdd\x03.\x19\x0c\xf2\x99=\x10`\xd9#\ -5\xf4K\xffT\xba\xb4f\xec\xff\x0cPh\xa5\x03\x0b\ -t\xd9\x14\xc2\xc6\x923{Y\xd85m\x83i\xda\xac\ -\xbd\xa3k\xdb\xb6\xf9{m\xdc7=\xd2\xc4\xca\xf7]\ -\xe3y\xdd\xaf\xed\xeb}\xdf\xaa\xbd\xff\x81\xe0\xa9\xed\xf3\ -\x83\xe1\xb8usr\xe28\xbe1m\xdd\xf8\xdeC\x91\ -\xe3\xb8^K\x95\xe5\xb8\xae[\x99\xde\xb9\x8ek\x9d\xdc\ -\xf9\xce{\xa1\xda\xba\x0e\x8b\xa5\xd0\xf8\xfe\x9b\xa9\xdb\xfa\ -N\xab\xad\xc1\x10\x10\x00\x13\x00\xfe\x00\x04\x00\x01\x00\x00\ -\x00\x00\x00\x00\x00\x00\x01\x04\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x01\x01\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x02\x01\x03\ -\x00\x04\x00\x00\x00\x92\x08\x00\x00\x03\x01\x03\x00\x01\x00\x00\ -\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ -\x00\x11\x01\x04\x00\x01\x00\x00\x00\x08\x00\x00\x00\x15\x01\x03\ -\x00\x01\x00\x00\x00\x04\x00\x00\x00\x16\x01\x04\x00\x01\x00\x00\ -\x00`\x00\x00\x00\x17\x01\x04\x00\x01\x00\x00\x00\x9f\x07\x00\ -\x00\x1a\x01\x05\x00\x01\x00\x00\x00\x9a\x08\x00\x00\x1b\x01\x05\ -\x00\x01\x00\x00\x00\xa2\x08\x00\x00\x1c\x01\x03\x00\x01\x00\x00\ -\x00\x01\x00\x00\x00(\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ -\x001\x01\x02\x00\x10\x00\x00\x00\xaa\x08\x00\x00=\x01\x03\ -\x00\x01\x00\x00\x00\x02\x00\x00\x00R\x01\x03\x00\x01\x00\x00\ -\x00\x02\x00\x00\x00S\x01\x03\x00\x04\x00\x00\x00\xba\x08\x00\ -\x00s\x87\x07\x00H\x0c\x00\x00\xc2\x08\x00\x00\x00\x00\x00\ -\x00\x08\x00\x08\x00\x08\x00\x08\x00\x802\x02\x00\xe8\x03\x00\ -\x00\x802\x02\x00\xe8\x03\x00\x00paint.n\ -et 4.0.9\x00\x01\x00\x01\x00\x01\x00\x01\ -\x00\x00\x00\x0cHLino\x02\x10\x00\x00mnt\ -rRGB XYZ \x07\xce\x00\x02\x00\x09\x00\ -\x06\x001\x00\x00acspMSFT\x00\x00\x00\ -\x00IEC sRGB\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\xf6\xd6\x00\x01\x00\x00\x00\x00\xd3\ --HP \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x11cprt\x00\x00\x01P\x00\x00\x00\ -3desc\x00\x00\x01\x84\x00\x00\x00lwtp\ -t\x00\x00\x01\xf0\x00\x00\x00\x14bkpt\x00\x00\x02\ -\x04\x00\x00\x00\x14rXYZ\x00\x00\x02\x18\x00\x00\x00\ -\x14gXYZ\x00\x00\x02,\x00\x00\x00\x14bXY\ -Z\x00\x00\x02@\x00\x00\x00\x14dmnd\x00\x00\x02\ -T\x00\x00\x00pdmdd\x00\x00\x02\xc4\x00\x00\x00\ -\x88vued\x00\x00\x03L\x00\x00\x00\x86vie\ -w\x00\x00\x03\xd4\x00\x00\x00$lumi\x00\x00\x03\ -\xf8\x00\x00\x00\x14meas\x00\x00\x04\x0c\x00\x00\x00\ -$tech\x00\x00\x040\x00\x00\x00\x0crTR\ -C\x00\x00\x04<\x00\x00\x08\x0cgTRC\x00\x00\x04\ -<\x00\x00\x08\x0cbTRC\x00\x00\x04<\x00\x00\x08\ -\x0ctext\x00\x00\x00\x00Copyrig\ -ht (c) 1998 Hewl\ -ett-Packard Comp\ -any\x00\x00desc\x00\x00\x00\x00\x00\x00\x00\ -\x12sRGB IEC61966-2\ -.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12sR\ -GB IEC61966-2.1\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00XYZ \x00\x00\x00\x00\x00\x00\xf3Q\x00\x01\x00\ -\x00\x00\x01\x16\xccXYZ \x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ \x00\x00\x00\ -\x00\x00\x00o\xa2\x00\x008\xf5\x00\x00\x03\x90XYZ\ - \x00\x00\x00\x00\x00\x00b\x99\x00\x00\xb7\x85\x00\x00\x18\ -\xdaXYZ \x00\x00\x00\x00\x00\x00$\xa0\x00\x00\x0f\ -\x84\x00\x00\xb6\xcfdesc\x00\x00\x00\x00\x00\x00\x00\ -\x16IEC http://www.\ -iec.ch\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x16IEC http://www\ -.iec.ch\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00desc\x00\x00\x00\x00\x00\x00\x00\ -.IEC 61966-2.1 D\ -efault RGB colou\ -r space - sRGB\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00.IEC 61\ -966-2.1 Default \ -RGB colour space\ - - sRGB\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00des\ -c\x00\x00\x00\x00\x00\x00\x00,Referen\ -ce Viewing Condi\ -tion in IEC61966\ --2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\ -Reference Viewin\ -g Condition in I\ -EC61966-2.1\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00view\x00\x00\x00\x00\x00\x13\xa4\ -\xfe\x00\x14_.\x00\x10\xcf\x14\x00\x03\xed\xcc\x00\x04\x13\ -\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01XYZ \x00\x00\x00\ -\x00\x00L\x09V\x00P\x00\x00\x00W\x1f\xe7mea\ -s\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x8f\x00\x00\x00\ -\x02sig \x00\x00\x00\x00CRT cur\ -v\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x05\x00\x0a\x00\ -\x0f\x00\x14\x00\x19\x00\x1e\x00#\x00(\x00-\x002\x00\ -7\x00;\x00@\x00E\x00J\x00O\x00T\x00Y\x00\ -^\x00c\x00h\x00m\x00r\x00w\x00|\x00\x81\x00\ -\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\x9f\x00\xa4\x00\xa9\x00\ -\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\xc6\x00\xcb\x00\xd0\x00\ -\xd5\x00\xdb\x00\xe0\x00\xe5\x00\xeb\x00\xf0\x00\xf6\x00\xfb\x01\ -\x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\x1f\x01%\x01+\x01\ -2\x018\x01>\x01E\x01L\x01R\x01Y\x01`\x01\ -g\x01n\x01u\x01|\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\ -\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\xc9\x01\xd1\x01\xd9\x01\ -\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02\ -&\x02/\x028\x02A\x02K\x02T\x02]\x02g\x02\ -q\x02z\x02\x84\x02\x8e\x02\x98\x02\xa2\x02\xac\x02\xb6\x02\ -\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\ -\x16\x03!\x03-\x038\x03C\x03O\x03Z\x03f\x03\ -r\x03~\x03\x8a\x03\x96\x03\xa2\x03\xae\x03\xba\x03\xc7\x03\ -\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\x13\x04 \x04-\x04\ -;\x04H\x04U\x04c\x04q\x04~\x04\x8c\x04\x9a\x04\ -\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\xf0\x04\xfe\x05\x0d\x05\ -\x1c\x05+\x05:\x05I\x05X\x05g\x05w\x05\x86\x05\ -\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\ -\x16\x06'\x067\x06H\x06Y\x06j\x06{\x06\x8c\x06\ -\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07\ -+\x07=\x07O\x07a\x07t\x07\x86\x07\x99\x07\xac\x07\ -\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\x1f\x082\x08F\x08\ -Z\x08n\x08\x82\x08\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\ -\xfb\x09\x10\x09%\x09:\x09O\x09d\x09y\x09\x8f\x09\ -\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\x11\x0a'\x0a=\x0a\ -T\x0aj\x0a\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\ -\x0b\x0b\x22\x0b9\x0bQ\x0bi\x0b\x80\x0b\x98\x0b\xb0\x0b\ -\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c*\x0cC\x0c\x5c\x0cu\x0c\ -\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d&\x0d@\x0d\ -Z\x0dt\x0d\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e\ -.\x0eI\x0ed\x0e\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\xee\x0f\ -\x09\x0f%\x0fA\x0f^\x0fz\x0f\x96\x0f\xb3\x0f\xcf\x0f\ -\xec\x10\x09\x10&\x10C\x10a\x10~\x10\x9b\x10\xb9\x10\ -\xd7\x10\xf5\x11\x13\x111\x11O\x11m\x11\x8c\x11\xaa\x11\ -\xc9\x11\xe8\x12\x07\x12&\x12E\x12d\x12\x84\x12\xa3\x12\ -\xc3\x12\xe3\x13\x03\x13#\x13C\x13c\x13\x83\x13\xa4\x13\ -\xc5\x13\xe5\x14\x06\x14'\x14I\x14j\x14\x8b\x14\xad\x14\ -\xce\x14\xf0\x15\x12\x154\x15V\x15x\x15\x9b\x15\xbd\x15\ -\xe0\x16\x03\x16&\x16I\x16l\x16\x8f\x16\xb2\x16\xd6\x16\ -\xfa\x17\x1d\x17A\x17e\x17\x89\x17\xae\x17\xd2\x17\xf7\x18\ -\x1b\x18@\x18e\x18\x8a\x18\xaf\x18\xd5\x18\xfa\x19 \x19\ -E\x19k\x19\x91\x19\xb7\x19\xdd\x1a\x04\x1a*\x1aQ\x1a\ -w\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b;\x1bc\x1b\x8a\x1b\ -\xb2\x1b\xda\x1c\x02\x1c*\x1cR\x1c{\x1c\xa3\x1c\xcc\x1c\ -\xf5\x1d\x1e\x1dG\x1dp\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e\ -@\x1ej\x1e\x94\x1e\xbe\x1e\xe9\x1f\x13\x1f>\x1fi\x1f\ -\x94\x1f\xbf\x1f\xea \x15 A l \x98 \xc4 \ -\xf0!\x1c!H!u!\xa1!\xce!\xfb\x22'\x22\ -U\x22\x82\x22\xaf\x22\xdd#\x0a#8#f#\x94#\ -\xc2#\xf0$\x1f$M$|$\xab$\xda%\x09%\ -8%h%\x97%\xc7%\xf7&'&W&\x87&\ -\xb7&\xe8'\x18'I'z'\xab'\xdc(\x0d(\ -?(q(\xa2(\xd4)\x06)8)k)\x9d)\ -\xd0*\x02*5*h*\x9b*\xcf+\x02+6+\ -i+\x9d+\xd1,\x05,9,n,\xa2,\xd7-\ -\x0c-A-v-\xab-\xe1.\x16.L.\x82.\ -\xb7.\xee/$/Z/\x91/\xc7/\xfe050\ -l0\xa40\xdb1\x121J1\x821\xba1\xf22\ -*2c2\x9b2\xd43\x0d3F3\x7f3\xb83\ -\xf14+4e4\x9e4\xd85\x135M5\x875\ -\xc25\xfd676r6\xae6\xe97$7`7\ -\x9c7\xd78\x148P8\x8c8\xc89\x059B9\ -\x7f9\xbc9\xf9:6:t:\xb2:\xef;-;\ -k;\xaa;\xe8<' >`>\xa0>\xe0?!?\ -a?\xa2?\xe2@#@d@\xa6@\xe7A)A\ -jA\xacA\xeeB0BrB\xb5B\xf7C:C\ -}C\xc0D\x03DGD\x8aD\xceE\x12EUE\ -\x9aE\xdeF\x22FgF\xabF\xf0G5G{G\ -\xc0H\x05HKH\x91H\xd7I\x1dIcI\xa9I\ -\xf0J7J}J\xc4K\x0cKSK\x9aK\xe2L\ -*LrL\xbaM\x02MJM\x93M\xdcN%N\ -nN\xb7O\x00OIO\x93O\xddP'PqP\ -\xbbQ\x06QPQ\x9bQ\xe6R1R|R\xc7S\ -\x13S_S\xaaS\xf6TBT\x8fT\xdbU(U\ -uU\xc2V\x0fV\x5cV\xa9V\xf7WDW\x92W\ -\xe0X/X}X\xcbY\x1aYiY\xb8Z\x07Z\ -VZ\xa6Z\xf5[E[\x95[\xe5\x5c5\x5c\x86\x5c\ -\xd6]']x]\xc9^\x1a^l^\xbd_\x0f_\ -a_\xb3`\x05`W`\xaa`\xfcaOa\xa2a\ -\xf5bIb\x9cb\xf0cCc\x97c\xebd@d\ -\x94d\xe9e=e\x92e\xe7f=f\x92f\xe8g\ -=g\x93g\xe9h?h\x96h\xeciCi\x9ai\ -\xf1jHj\x9fj\xf7kOk\xa7k\xfflWl\ -\xafm\x08m`m\xb9n\x12nkn\xc4o\x1eo\ -xo\xd1p+p\x86p\xe0q:q\x95q\xf0r\ -Kr\xa6s\x01s]s\xb8t\x14tpt\xccu\ -(u\x85u\xe1v>v\x9bv\xf8wVw\xb3x\ -\x11xnx\xccy*y\x89y\xe7zFz\xa5{\ -\x04{c{\xc2|!|\x81|\xe1}A}\xa1~\ -\x01~b~\xc2\x7f#\x7f\x84\x7f\xe5\x80G\x80\xa8\x81\ -\x0a\x81k\x81\xcd\x820\x82\x92\x82\xf4\x83W\x83\xba\x84\ -\x1d\x84\x80\x84\xe3\x85G\x85\xab\x86\x0e\x86r\x86\xd7\x87\ -;\x87\x9f\x88\x04\x88i\x88\xce\x893\x89\x99\x89\xfe\x8a\ -d\x8a\xca\x8b0\x8b\x96\x8b\xfc\x8cc\x8c\xca\x8d1\x8d\ -\x98\x8d\xff\x8ef\x8e\xce\x8f6\x8f\x9e\x90\x06\x90n\x90\ -\xd6\x91?\x91\xa8\x92\x11\x92z\x92\xe3\x93M\x93\xb6\x94\ - \x94\x8a\x94\xf4\x95_\x95\xc9\x964\x96\x9f\x97\x0a\x97\ -u\x97\xe0\x98L\x98\xb8\x99$\x99\x90\x99\xfc\x9ah\x9a\ -\xd5\x9bB\x9b\xaf\x9c\x1c\x9c\x89\x9c\xf7\x9dd\x9d\xd2\x9e\ -@\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0i\xa0\xd8\xa1G\xa1\ -\xb6\xa2&\xa2\x96\xa3\x06\xa3v\xa3\xe6\xa4V\xa4\xc7\xa5\ -8\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7n\xa7\xe0\xa8R\xa8\ -\xc4\xa97\xa9\xa9\xaa\x1c\xaa\x8f\xab\x02\xabu\xab\xe9\xac\ -\x5c\xac\xd0\xadD\xad\xb8\xae-\xae\xa1\xaf\x16\xaf\x8b\xb0\ -\x00\xb0u\xb0\xea\xb1`\xb1\xd6\xb2K\xb2\xc2\xb38\xb3\ -\xae\xb4%\xb4\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6y\xb6\xf0\xb7\ -h\xb7\xe0\xb8Y\xb8\xd1\xb9J\xb9\xc2\xba;\xba\xb5\xbb\ -.\xbb\xa7\xbc!\xbc\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\x84\xbe\ -\xff\xbfz\xbf\xf5\xc0p\xc0\xec\xc1g\xc1\xe3\xc2_\xc2\ -\xdb\xc3X\xc3\xd4\xc4Q\xc4\xce\xc5K\xc5\xc8\xc6F\xc6\ -\xc3\xc7A\xc7\xbf\xc8=\xc8\xbc\xc9:\xc9\xb9\xca8\xca\ -\xb7\xcb6\xcb\xb6\xcc5\xcc\xb5\xcd5\xcd\xb5\xce6\xce\ -\xb6\xcf7\xcf\xb8\xd09\xd0\xba\xd1<\xd1\xbe\xd2?\xd2\ -\xc1\xd3D\xd3\xc6\xd4I\xd4\xcb\xd5N\xd5\xd1\xd6U\xd6\ -\xd8\xd7\x5c\xd7\xe0\xd8d\xd8\xe8\xd9l\xd9\xf1\xdav\xda\ -\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf\ -)\xdf\xaf\xe06\xe0\xbd\xe1D\xe1\xcc\xe2S\xe2\xdb\xe3\ -c\xe3\xeb\xe4s\xe4\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\ -\xa9\xe82\xe8\xbc\xe9F\xe9\xd0\xea[\xea\xe5\xebp\xeb\ -\xfb\xec\x86\xed\x11\xed\x9c\xee(\xee\xb4\xef@\xef\xcc\xf0\ -X\xf0\xe5\xf1r\xf1\xff\xf2\x8c\xf3\x19\xf3\xa7\xf44\xf4\ -\xc2\xf5P\xf5\xde\xf6m\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf9\ -8\xf9\xc7\xfaW\xfa\xe7\xfbw\xfc\x07\xfc\x98\xfd)\xfd\ -\xba\xfeK\xfe\xdc\xffm\xff\xff\ -\x00\x00\x04o\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / Editor only \ -- Saved\x0d\ -\x0a Creat\ -ed with Sketch.<\ -/desc>\x0d\x0a \x0d\x0a <\ -g id=\x22icon-/-out\ -liner-/-entity-/\ ---Editor-only---\ -Saved\x22 stroke=\x22n\ -one\x22 stroke-widt\ -h=\x221\x22 fill=\x22none\ -\x22 fill-rule=\x22eve\ -nodd\x22>\x0d\x0a \ -\x0d\x0a \ -\x0d\x0a\x0d\x0a\ -\x00\x00\x07\x1d\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22 standalone=\x22\ -no\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - lock on\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a \x0d\x0a \ -\x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x05\x1d\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / slice \ -/ standard copy<\ -/title>\x0d\x0a Created with \ -Sketch.\x0d\x0a\ - \x0d\x0a \x0d\x0a \ -\x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x04\xa0\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / Not active - \ -Updated\x0d\ -\x0a Creat\ -ed with Sketch.<\ -/desc>\x0d\x0a \x0d\x0a <\ -g id=\x22icon-/-out\ -liner-/-entity-/\ --Not-active---Up\ -dated\x22 stroke=\x22n\ -one\x22 stroke-widt\ -h=\x221\x22 fill=\x22none\ -\x22 fill-rule=\x22eve\ -nodd\x22>\x0d\x0a \ -\x0d\x0a \ - \x0d\x0a\x0d\x0a\ -\x00\x00\x04\x9c\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / Not active - \ -Saved\x0d\x0a \ - Created\ - with Sketch.\x0d\x0a \ -\x0d\x0a \x0d\x0a \ -\x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x06\xdc\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - Group 13\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a\ - \ -\x0d\x0a \ - \ - \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x03\x87\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / Loop v2\x0d\x0a Cr\ -eated with Sketc\ -h.\x0d\x0a <\ -g id=\x22icon-/-out\ -liner-/-entity-/\ --Loop-v2\x22 stroke\ -=\x22none\x22 stroke-w\ -idth=\x221\x22 fill=\x22n\ -one\x22 fill-rule=\x22\ -evenodd\x22>\x0d\x0a \ - \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00_l\ -I\ -I*\x00\x08\x00\x00\x00\x17\x00\xfe\x00\x04\x00\x01\x00\x00\ -\x00\x00\x00\x00\x00\x00\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x01\x01\x03\x00\x01\x00\x00\x00`\x00\x00\x00\x02\x01\x03\ -\x00\x04\x00\x00\x00\x22\x01\x00\x00\x03\x01\x03\x00\x01\x00\x00\ -\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ -\x00\x11\x01\x04\x00\x01\x00\x00\x00DS\x00\x00\x12\x01\x03\ -\x00\x01\x00\x00\x00\x01\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\ -\x00\x04\x00\x00\x00\x16\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x17\x01\x04\x00\x01\x00\x00\x00\xfa\x0b\x00\x00\x1a\x01\x05\ -\x00\x01\x00\x00\x00*\x01\x00\x00\x1b\x01\x05\x00\x01\x00\x00\ -\x002\x01\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\ -\x00(\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\ -\x00$\x00\x00\x00:\x01\x00\x002\x01\x02\x00\x14\x00\x00\ -\x00^\x01\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ -\x00R\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00\xbc\x02\x01\ -\x00\xfa8\x00\x00r\x01\x00\x00I\x86\x01\x00\x90\x0c\x00\ -\x00l:\x00\x00i\x87\x04\x00\x01\x00\x00\x00@_\x00\ -\x00s\x87\x07\x00H\x0c\x00\x00\xfcF\x00\x00\x00\x00\x00\ -\x00\x08\x00\x08\x00\x08\x00\x08\x00\x00\xf9\x15\x00\x10'\x00\ -\x00\x00\xf9\x15\x00\x10'\x00\x00Adobe P\ -hotoshop CC 2015\ -.5 (Windows)\x00201\ -7:03:08 11:37:45\ -\x00\x0a\x0a \x0a \ -\x0a pain\ -t.net 4.0.9\x0a \ - 2017-03-0\ -7T11:32:29-08:00\ -\x0a 2017-\ -03-08T11:37:45-0\ -8:00\x0a <\ -xmp:MetadataDate\ ->2017-03-08T11:3\ -7:45-08:00\x0a \ - image/tiff\x0a \ - 3\x0a \ - sR\ -GB IEC61966-2.1<\ -/photoshop:ICCPr\ -ofile>\x0a \ -\x0a \ - \x0a \ - adobe\ -:docid:photoshop\ -:94a27cdb-0433-1\ -1e7-b02d-9f84d9f\ -5a326\x0a \ - \x0a <\ -/photoshop:Docum\ -entAncestors>\x0a \ - xmp.iid\ -:16fdf09c-857d-9\ -44e-9783-e127cb1\ -b9cf4\x0a \ - adobe:docid:\ -photoshop:9f9351\ -ac-0436-11e7-b02\ -d-9f84d9f5a326\x0a xmp.did:ca7\ -71a70-f965-e14f-\ -9103-360465543db\ -f\x0a \ - \x0a \ - \x0a \ - \x0a \ - <\ -stEvt:action>cre\ -ated\x0a \ - xmp.iid:\ -ca771a70-f965-e1\ -4f-9103-36046554\ -3dbf\x0a \ - 2017-03-07\ -T11:32:29-08:00<\ -/stEvt:when>\x0a \ - <\ -stEvt:softwareAg\ -ent>Adobe Photos\ -hop CC 2015.5 (W\ -indows)\x0a \ - \x0a \ - \x0a \ - saved\x0a \ - <\ -stEvt:instanceID\ ->xmp.iid:16fdf09\ -c-857d-944e-9783\ --e127cb1b9cf4\ -\x0a \ - 2\ -017-03-08T11:37:\ -45-08:00\x0a \ - Ado\ -be Photoshop CC \ -2015.5 (Windows)\ -\x0a \ - /\x0a \ - \x0a <\ -/rdf:Seq>\x0a \ - \x0a \x0a \ -\x0a\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \x0a8BIM\x04\ -%\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x008BIM\x04:\x00\x00\x00\ -\x00\x00\xe5\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x0bprintOutput\x00\x00\x00\x05\ -\x00\x00\x00\x00PstSbool\x01\x00\x00\x00\ -\x00Inteenum\x00\x00\x00\x00Int\ -e\x00\x00\x00\x00Clrm\x00\x00\x00\x0fpri\ -ntSixteenBitbool\ -\x00\x00\x00\x00\x0bprinterName\ -TEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0fpr\ -intProofSetupObj\ -c\x00\x00\x00\x0c\x00P\x00r\x00o\x00o\x00f\x00\ - \x00S\x00e\x00t\x00u\x00p\x00\x00\x00\x00\x00\ -\x0aproofSetup\x00\x00\x00\x01\x00\ -\x00\x00\x00Bltnenum\x00\x00\x00\x0cb\ -uiltinProof\x00\x00\x00\x09p\ -roofCMYK\x008BIM\x04;\x00\ -\x00\x00\x00\x02-\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\ -\x00\x00\x12printOutputOp\ -tions\x00\x00\x00\x17\x00\x00\x00\x00Cpt\ -nbool\x00\x00\x00\x00\x00Clbrbo\ -ol\x00\x00\x00\x00\x00RgsMbool\x00\ -\x00\x00\x00\x00CrnCbool\x00\x00\x00\x00\ -\x00CntCbool\x00\x00\x00\x00\x00Lb\ -lsbool\x00\x00\x00\x00\x00Ngtvb\ -ool\x00\x00\x00\x00\x00EmlDbool\ -\x00\x00\x00\x00\x00Intrbool\x00\x00\x00\ -\x00\x00BckgObjc\x00\x00\x00\x01\x00\x00\ -\x00\x00\x00\x00RGBC\x00\x00\x00\x03\x00\x00\x00\x00\ -Rd doub@o\xe0\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00Grn doub@o\xe0\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00Bl doub\ -@o\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00BrdT\ -UntF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00Bld UntF#Rlt\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Rslt\ -UntF#Pxl@b\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x0avectorDatabo\ -ol\x01\x00\x00\x00\x00PgPsenum\x00\ -\x00\x00\x00PgPs\x00\x00\x00\x00PgPC\x00\ -\x00\x00\x00LeftUntF#Rlt\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Top U\ -ntF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00Scl UntF#Prc@\ -Y\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10cropW\ -henPrintingbool\x00\ -\x00\x00\x00\x0ecropRectBott\ -omlong\x00\x00\x00\x00\x00\x00\x00\x0ccr\ -opRectLeftlong\x00\x00\ -\x00\x00\x00\x00\x00\x0dcropRectRi\ -ghtlong\x00\x00\x00\x00\x00\x00\x00\x0bc\ -ropRectToplong\x00\x00\ -\x00\x00\x008BIM\x03\xed\x00\x00\x00\x00\x00\x10\x00\ -\x90\x00\x00\x00\x01\x00\x01\x00\x90\x00\x00\x00\x01\x00\x018\ -BIM\x04&\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00?\x80\x00\x008BIM\x03\xee\x00\ -\x00\x00\x00\x00\x0d\x0cTransparen\ -cy\x008BIM\x04\x15\x00\x00\x00\x00\x00\x1e\x00\ -\x00\x00\x0d\x00T\x00r\x00a\x00n\x00s\x00p\x00\ -a\x00r\x00e\x00n\x00c\x00y\x00\x008BI\ -M\x045\x00\x00\x00\x00\x00\x11\x00\x00\x00\x01\x00\x00\xff\ -\xff\x00\x00\x00\x00\x00\x00\x00d\x01\x008BIM\x04\ -\x1d\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008BIM\x04\ -\x0d\x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e8BIM\x04\ -\x19\x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e8BIM\x03\ -\xf3\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x01\ -\x008BIM'\x10\x00\x00\x00\x00\x00\x0a\x00\x01\x00\ -\x00\x00\x00\x00\x00\x00\x018BIM\x03\xf5\x00\x00\x00\ -\x00\x00H\x00/ff\x00\x01\x00lff\x00\x06\x00\ -\x00\x00\x00\x00\x01\x00/ff\x00\x01\x00\xa1\x99\x9a\x00\ -\x06\x00\x00\x00\x00\x00\x01\x002\x00\x00\x00\x01\x00Z\x00\ -\x00\x00\x06\x00\x00\x00\x00\x00\x01\x005\x00\x00\x00\x01\x00\ --\x00\x00\x00\x06\x00\x00\x00\x00\x00\x018BIM\x03\ -\xf8\x00\x00\x00\x00\x00p\x00\x00\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\ -\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\ -\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\x03\xe8\x00\x008BIM\x04\x00\x00\x00\x00\ -\x00\x00\x02\x00\x008BIM\x04\x02\x00\x00\x00\x00\x00\ -\x02\x00\x008BIM\x040\x00\x00\x00\x00\x00\x01\x01\ -\x008BIM\x04-\x00\x00\x00\x00\x00\x06\x00\x01\x00\ -\x00\x00\x0a8BIM\x04\x08\x00\x00\x00\x00\x00\x10\x00\ -\x00\x00\x01\x00\x00\x02@\x00\x00\x02@\x00\x00\x00\x008\ -BIM\x04\x1e\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008\ -BIM\x04\x1a\x00\x00\x00\x00\x035\x00\x00\x00\x06\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\ -\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\ -\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00null\x00\x00\ -\x00\x02\x00\x00\x00\x06boundsObjc\ -\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Rct1\x00\x00\ -\x00\x04\x00\x00\x00\x00Top long\x00\x00\ -\x00\x00\x00\x00\x00\x00Leftlong\x00\x00\ -\x00\x00\x00\x00\x00\x00Btomlong\x00\x00\ -\x00`\x00\x00\x00\x00Rghtlong\x00\x00\ -\x00`\x00\x00\x00\x06slicesVlLs\ -\x00\x00\x00\x01Objc\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x05slice\x00\x00\x00\x12\x00\x00\x00\x07s\ -liceIDlong\x00\x00\x00\x00\x00\x00\ -\x00\x07groupIDlong\x00\x00\x00\ -\x00\x00\x00\x00\x06originenum\x00\ -\x00\x00\x0cESliceOrigin\x00\ -\x00\x00\x0dautoGenerated\ -\x00\x00\x00\x00Typeenum\x00\x00\x00\x0a\ -ESliceType\x00\x00\x00\x00Im\ -g \x00\x00\x00\x06boundsObjc\ -\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Rct1\x00\x00\ -\x00\x04\x00\x00\x00\x00Top long\x00\x00\ -\x00\x00\x00\x00\x00\x00Leftlong\x00\x00\ -\x00\x00\x00\x00\x00\x00Btomlong\x00\x00\ -\x00`\x00\x00\x00\x00Rghtlong\x00\x00\ -\x00`\x00\x00\x00\x03urlTEXT\x00\x00\x00\ -\x01\x00\x00\x00\x00\x00\x00nullTEXT\x00\ -\x00\x00\x01\x00\x00\x00\x00\x00\x00MsgeTEX\ -T\x00\x00\x00\x01\x00\x00\x00\x00\x00\x06altTa\ -gTEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0ec\ -ellTextIsHTMLboo\ -l\x01\x00\x00\x00\x08cellTextTE\ -XT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x09horz\ -Alignenum\x00\x00\x00\x0fESl\ -iceHorzAlign\x00\x00\x00\x07\ -default\x00\x00\x00\x09vertA\ -lignenum\x00\x00\x00\x0fESli\ -ceVertAlign\x00\x00\x00\x07d\ -efault\x00\x00\x00\x0bbgColo\ -rTypeenum\x00\x00\x00\x11ESl\ -iceBGColorType\x00\x00\ -\x00\x00None\x00\x00\x00\x09topOut\ -setlong\x00\x00\x00\x00\x00\x00\x00\x0al\ -eftOutsetlong\x00\x00\x00\ -\x00\x00\x00\x00\x0cbottomOutse\ -tlong\x00\x00\x00\x00\x00\x00\x00\x0brig\ -htOutsetlong\x00\x00\x00\x00\ -\x008BIM\x04(\x00\x00\x00\x00\x00\x0c\x00\x00\x00\ -\x02?\xf0\x00\x00\x00\x00\x00\x008BIM\x04\x14\x00\ -\x00\x00\x00\x00\x04\x00\x00\x00\x0c8BIM\x04\x0c\x00\ -\x00\x00\x00\x038\x00\x00\x00\x01\x00\x00\x000\x00\x00\x00\ -0\x00\x00\x00\x90\x00\x00\x1b\x00\x00\x00\x03\x1c\x00\x18\x00\ -\x01\xff\xd8\xff\xed\x00\x0cAdobe_CM\x00\ -\x01\xff\xee\x00\x0eAdobe\x00d\x80\x00\x00\x00\ -\x01\xff\xdb\x00\x84\x00\x0c\x08\x08\x08\x09\x08\x0c\x09\x09\x0c\ -\x11\x0b\x0a\x0b\x11\x15\x0f\x0c\x0c\x0f\x15\x18\x13\x13\x15\x13\ -\x13\x18\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x01\x0d\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\ -\x10\x14\x0e\x0e\x0e\x14\x14\x0e\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\ -\x0c\x0c\x11\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\xff\xc0\x00\x11\x08\x000\x000\ -\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xdd\x00\x04\x00\x03\ -\xff\xc4\x01?\x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\ -\x00\x00\x00\x00\x00\x03\x00\x01\x02\x04\x05\x06\x07\x08\x09\x0a\ -\x0b\x01\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\ -\x00\x00\x01\x00\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x10\x00\ -\x01\x04\x01\x03\x02\x04\x02\x05\x07\x06\x08\x05\x03\x0c3\x01\ -\x00\x02\x11\x03\x04!\x121\x05AQa\x13\x22q\x81\ -2\x06\x14\x91\xa1\xb1B#$\x15R\xc1b34r\ -\x82\xd1C\x07%\x92S\xf0\xe1\xf1cs5\x16\xa2\xb2\ -\x83&D\x93TdE\xc2\xa3t6\x17\xd2U\xe2e\ -\xf2\xb3\x84\xc3\xd3u\xe3\xf3F'\x94\xa4\x85\xb4\x95\xc4\ -\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5Vfv\x86\x96\xa6\xb6\ -\xc6\xd6\xe6\xf67GWgw\x87\x97\xa7\xb7\xc7\xd7\xe7\ -\xf7\x11\x00\x02\x02\x01\x02\x04\x04\x03\x04\x05\x06\x07\x07\x06\ -\x055\x01\x00\x02\x11\x03!1\x12\x04AQaq\x22\ -\x13\x052\x81\x91\x14\xa1\xb1B#\xc1R\xd1\xf03$\ -b\xe1r\x82\x92CS\x15cs4\xf1%\x06\x16\xa2\ -\xb2\x83\x07&5\xc2\xd2D\x93T\xa3\x17dEU6\ -te\xe2\xf2\xb3\x84\xc3\xd3u\xe3\xf3F\x94\xa4\x85\xb4\ -\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5Vfv\x86\x96\ -\xa6\xb6\xc6\xd6\xe6\xf6'7GWgw\x87\x97\xa7\xb7\ -\xc7\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00?\x00\xf5\ -T\x92P\xb5\xceensZ^\xe6\x82CG$\xa4\ -\xa5YuU\xff\x008\xf6\xb2x\xdc@N\xd7\xb1\xe3\ -s\x1c\x1c\xdf\x10d*X\xb8,\xb1\x9e\xbe[K\xee\ -\xb3S\xbb\xb0\xec6\xa6}#\x07&\xa7\xd2H\xaa\xe7\ -\x06=\x93\x22O\x05%:\x09$\x92J\x7f\xff\xd0\xf5\ -T\x1c\x9c\xaa\xf1\x9a\x0b\xe4\x97\x18kZ$\x94eK\ -\xaa{YM\xbd\xeb\xb0\x1f\x97\xfa\x84\x94\xb7\xdb\xefw\ -\xf3x\xaf>\x05\xda\x7f\x04+\x9b\xd4.s.}m\ -`\xa6\x5c\xd6\x93:\xf3:|\x15\xac\xf3x\xc6s\xa9\ -0F\xae#\x9d\xa3\xe9mK\x05\xd6Y\x88\xd7Zw\ -\x17L\x1e\xf1:nIL\xf1/7\xe3\xb2\xd2\x00.\ -\xe4\x0e$\x1d\xa8\xca\x97J\xd3\x1d\xf5\x9ekyj\xba\ -\x92\x9f\xff\xd1\xf5UW\xa8\xd6l\xc3\xb0\x01$A\x00\ -y\x1f\xfc\x8a\xb4\x92Jh7\xa95\xf5\x86\xb6\x8b-\ -1\x0e\x86\xe8t\xd7\xc5&_\x9b\xb42\x8cA[\x06\ -\x808\xc0\x1f/b\xbe\x92Jj`\xe3\xddQ\xb5\xf7\ -@u\xae\xdd\xb5\xbc\x05m$\x92S\xff\xd98BI\ -M\x04!\x00\x00\x00\x00\x00a\x00\x00\x00\x01\x01\x00\x00\ -\x00\x0f\x00A\x00d\x00o\x00b\x00e\x00 \x00P\ -\x00h\x00o\x00t\x00o\x00s\x00h\x00o\x00p\ -\x00\x00\x00\x19\x00A\x00d\x00o\x00b\x00e\x00 \ -\x00P\x00h\x00o\x00t\x00o\x00s\x00h\x00o\ -\x00p\x00 \x00C\x00C\x00 \x002\x000\x001\ -\x005\x00.\x005\x00\x00\x00\x01\x00\x00\x00\x0cHL\ -ino\x02\x10\x00\x00mntrRGB X\ -YZ \x07\xce\x00\x02\x00\x09\x00\x06\x001\x00\x00a\ -cspMSFT\x00\x00\x00\x00IEC s\ -RGB\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\xf6\xd6\x00\x01\x00\x00\x00\x00\xd3-HP \x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11c\ -prt\x00\x00\x01P\x00\x00\x003desc\x00\ -\x00\x01\x84\x00\x00\x00lwtpt\x00\x00\x01\xf0\x00\ -\x00\x00\x14bkpt\x00\x00\x02\x04\x00\x00\x00\x14r\ -XYZ\x00\x00\x02\x18\x00\x00\x00\x14gXYZ\x00\ -\x00\x02,\x00\x00\x00\x14bXYZ\x00\x00\x02@\x00\ -\x00\x00\x14dmnd\x00\x00\x02T\x00\x00\x00pd\ -mdd\x00\x00\x02\xc4\x00\x00\x00\x88vued\x00\ -\x00\x03L\x00\x00\x00\x86view\x00\x00\x03\xd4\x00\ -\x00\x00$lumi\x00\x00\x03\xf8\x00\x00\x00\x14m\ -eas\x00\x00\x04\x0c\x00\x00\x00$tech\x00\ -\x00\x040\x00\x00\x00\x0crTRC\x00\x00\x04<\x00\ -\x00\x08\x0cgTRC\x00\x00\x04<\x00\x00\x08\x0cb\ -TRC\x00\x00\x04<\x00\x00\x08\x0ctext\x00\ -\x00\x00\x00Copyright (c)\ - 1998 Hewlett-Pa\ -ckard Company\x00\x00d\ -esc\x00\x00\x00\x00\x00\x00\x00\x12sRGB \ -IEC61966-2.1\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x12sRGB IEC\ -61966-2.1\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ \x00\ -\x00\x00\x00\x00\x00\xf3Q\x00\x01\x00\x00\x00\x01\x16\xccX\ -YZ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00XYZ \x00\x00\x00\x00\x00\x00o\xa2\x00\ -\x008\xf5\x00\x00\x03\x90XYZ \x00\x00\x00\x00\x00\ -\x00b\x99\x00\x00\xb7\x85\x00\x00\x18\xdaXYZ \x00\ -\x00\x00\x00\x00\x00$\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcfd\ -esc\x00\x00\x00\x00\x00\x00\x00\x16IEC h\ -ttp://www.iec.ch\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16IEC \ -http://www.iec.c\ -h\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00d\ -esc\x00\x00\x00\x00\x00\x00\x00.IEC 6\ -1966-2.1 Default\ - RGB colour spac\ -e - sRGB\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00.IEC 61966-2.\ -1 Default RGB co\ -lour space - sRG\ -B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00desc\x00\x00\x00\x00\x00\ -\x00\x00,Reference Vie\ -wing Condition i\ -n IEC61966-2.1\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00,Refere\ -nce Viewing Cond\ -ition in IEC6196\ -6-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00v\ -iew\x00\x00\x00\x00\x00\x13\xa4\xfe\x00\x14_.\x00\ -\x10\xcf\x14\x00\x03\xed\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\ -\x00\x00\x01XYZ \x00\x00\x00\x00\x00L\x09V\x00\ -P\x00\x00\x00W\x1f\xe7meas\x00\x00\x00\x00\x00\ -\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x8f\x00\x00\x00\x02sig \x00\ -\x00\x00\x00CRT curv\x00\x00\x00\x00\x00\ -\x00\x04\x00\x00\x00\x00\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\ -\x1e\x00#\x00(\x00-\x002\x007\x00;\x00@\x00\ -E\x00J\x00O\x00T\x00Y\x00^\x00c\x00h\x00\ -m\x00r\x00w\x00|\x00\x81\x00\x86\x00\x8b\x00\x90\x00\ -\x95\x00\x9a\x00\x9f\x00\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\ -\xbc\x00\xc1\x00\xc6\x00\xcb\x00\xd0\x00\xd5\x00\xdb\x00\xe0\x00\ -\xe5\x00\xeb\x00\xf0\x00\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\ -\x13\x01\x19\x01\x1f\x01%\x01+\x012\x018\x01>\x01\ -E\x01L\x01R\x01Y\x01`\x01g\x01n\x01u\x01\ -|\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\ -\xb9\x01\xc1\x01\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\ -\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02&\x02/\x028\x02\ -A\x02K\x02T\x02]\x02g\x02q\x02z\x02\x84\x02\ -\x8e\x02\x98\x02\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\ -\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\x16\x03!\x03-\x03\ -8\x03C\x03O\x03Z\x03f\x03r\x03~\x03\x8a\x03\ -\x96\x03\xa2\x03\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\ -\xf9\x04\x06\x04\x13\x04 \x04-\x04;\x04H\x04U\x04\ -c\x04q\x04~\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\ -\xd3\x04\xe1\x04\xf0\x04\xfe\x05\x0d\x05\x1c\x05+\x05:\x05\ -I\x05X\x05g\x05w\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\ -\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\x16\x06'\x067\x06\ -H\x06Y\x06j\x06{\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\ -\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07+\x07=\x07O\x07\ -a\x07t\x07\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\ -\xf8\x08\x0b\x08\x1f\x082\x08F\x08Z\x08n\x08\x82\x08\ -\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09%\x09\ -:\x09O\x09d\x09y\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\ -\xe5\x09\xfb\x0a\x11\x0a'\x0a=\x0aT\x0aj\x0a\x81\x0a\ -\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b9\x0b\ -Q\x0bi\x0b\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\ -\x12\x0c*\x0cC\x0c\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\xc0\x0c\ -\xd9\x0c\xf3\x0d\x0d\x0d&\x0d@\x0dZ\x0dt\x0d\x8e\x0d\ -\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e.\x0eI\x0ed\x0e\ -\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f%\x0fA\x0f\ -^\x0fz\x0f\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10&\x10\ -C\x10a\x10~\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x11\ -1\x11O\x11m\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12\ -&\x12E\x12d\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13\ -#\x13C\x13c\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14\ -'\x14I\x14j\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x15\ -4\x15V\x15x\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16&\x16\ -I\x16l\x16\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17A\x17\ -e\x17\x89\x17\xae\x17\xd2\x17\xf7\x18\x1b\x18@\x18e\x18\ -\x8a\x18\xaf\x18\xd5\x18\xfa\x19 \x19E\x19k\x19\x91\x19\ -\xb7\x19\xdd\x1a\x04\x1a*\x1aQ\x1aw\x1a\x9e\x1a\xc5\x1a\ -\xec\x1b\x14\x1b;\x1bc\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c\ -*\x1cR\x1c{\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1dG\x1d\ -p\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e@\x1ej\x1e\x94\x1e\ -\xbe\x1e\xe9\x1f\x13\x1f>\x1fi\x1f\x94\x1f\xbf\x1f\xea \ -\x15 A l \x98 \xc4 \xf0!\x1c!H!\ -u!\xa1!\xce!\xfb\x22'\x22U\x22\x82\x22\xaf\x22\ -\xdd#\x0a#8#f#\x94#\xc2#\xf0$\x1f$\ -M$|$\xab$\xda%\x09%8%h%\x97%\ -\xc7%\xf7&'&W&\x87&\xb7&\xe8'\x18'\ -I'z'\xab'\xdc(\x0d(?(q(\xa2(\ -\xd4)\x06)8)k)\x9d)\xd0*\x02*5*\ -h*\x9b*\xcf+\x02+6+i+\x9d+\xd1,\ -\x05,9,n,\xa2,\xd7-\x0c-A-v-\ -\xab-\xe1.\x16.L.\x82.\xb7.\xee/$/\ -Z/\x91/\xc7/\xfe050l0\xa40\xdb1\ -\x121J1\x821\xba1\xf22*2c2\x9b2\ -\xd43\x0d3F3\x7f3\xb83\xf14+4e4\ -\x9e4\xd85\x135M5\x875\xc25\xfd676\ -r6\xae6\xe97$7`7\x9c7\xd78\x148\ -P8\x8c8\xc89\x059B9\x7f9\xbc9\xf9:\ -6:t:\xb2:\xef;-;k;\xaa;\xe8<\ -'\ - >`>\xa0>\xe0?!?a?\xa2?\xe2@\ -#@d@\xa6@\xe7A)AjA\xacA\xeeB\ -0BrB\xb5B\xf7C:C}C\xc0D\x03D\ -GD\x8aD\xceE\x12EUE\x9aE\xdeF\x22F\ -gF\xabF\xf0G5G{G\xc0H\x05HKH\ -\x91H\xd7I\x1dIcI\xa9I\xf0J7J}J\ -\xc4K\x0cKSK\x9aK\xe2L*LrL\xbaM\ -\x02MJM\x93M\xdcN%NnN\xb7O\x00O\ -IO\x93O\xddP'PqP\xbbQ\x06QPQ\ -\x9bQ\xe6R1R|R\xc7S\x13S_S\xaaS\ -\xf6TBT\x8fT\xdbU(UuU\xc2V\x0fV\ -\x5cV\xa9V\xf7WDW\x92W\xe0X/X}X\ -\xcbY\x1aYiY\xb8Z\x07ZVZ\xa6Z\xf5[\ -E[\x95[\xe5\x5c5\x5c\x86\x5c\xd6]']x]\ -\xc9^\x1a^l^\xbd_\x0f_a_\xb3`\x05`\ -W`\xaa`\xfcaOa\xa2a\xf5bIb\x9cb\ -\xf0cCc\x97c\xebd@d\x94d\xe9e=e\ -\x92e\xe7f=f\x92f\xe8g=g\x93g\xe9h\ -?h\x96h\xeciCi\x9ai\xf1jHj\x9fj\ -\xf7kOk\xa7k\xfflWl\xafm\x08m`m\ -\xb9n\x12nkn\xc4o\x1eoxo\xd1p+p\ -\x86p\xe0q:q\x95q\xf0rKr\xa6s\x01s\ -]s\xb8t\x14tpt\xccu(u\x85u\xe1v\ ->v\x9bv\xf8wVw\xb3x\x11xnx\xccy\ -*y\x89y\xe7zFz\xa5{\x04{c{\xc2|\ -!|\x81|\xe1}A}\xa1~\x01~b~\xc2\x7f\ -#\x7f\x84\x7f\xe5\x80G\x80\xa8\x81\x0a\x81k\x81\xcd\x82\ -0\x82\x92\x82\xf4\x83W\x83\xba\x84\x1d\x84\x80\x84\xe3\x85\ -G\x85\xab\x86\x0e\x86r\x86\xd7\x87;\x87\x9f\x88\x04\x88\ -i\x88\xce\x893\x89\x99\x89\xfe\x8ad\x8a\xca\x8b0\x8b\ -\x96\x8b\xfc\x8cc\x8c\xca\x8d1\x8d\x98\x8d\xff\x8ef\x8e\ -\xce\x8f6\x8f\x9e\x90\x06\x90n\x90\xd6\x91?\x91\xa8\x92\ -\x11\x92z\x92\xe3\x93M\x93\xb6\x94 \x94\x8a\x94\xf4\x95\ -_\x95\xc9\x964\x96\x9f\x97\x0a\x97u\x97\xe0\x98L\x98\ -\xb8\x99$\x99\x90\x99\xfc\x9ah\x9a\xd5\x9bB\x9b\xaf\x9c\ -\x1c\x9c\x89\x9c\xf7\x9dd\x9d\xd2\x9e@\x9e\xae\x9f\x1d\x9f\ -\x8b\x9f\xfa\xa0i\xa0\xd8\xa1G\xa1\xb6\xa2&\xa2\x96\xa3\ -\x06\xa3v\xa3\xe6\xa4V\xa4\xc7\xa58\xa5\xa9\xa6\x1a\xa6\ -\x8b\xa6\xfd\xa7n\xa7\xe0\xa8R\xa8\xc4\xa97\xa9\xa9\xaa\ -\x1c\xaa\x8f\xab\x02\xabu\xab\xe9\xac\x5c\xac\xd0\xadD\xad\ -\xb8\xae-\xae\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0u\xb0\xea\xb1\ -`\xb1\xd6\xb2K\xb2\xc2\xb38\xb3\xae\xb4%\xb4\x9c\xb5\ -\x13\xb5\x8a\xb6\x01\xb6y\xb6\xf0\xb7h\xb7\xe0\xb8Y\xb8\ -\xd1\xb9J\xb9\xc2\xba;\xba\xb5\xbb.\xbb\xa7\xbc!\xbc\ -\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\x84\xbe\xff\xbfz\xbf\xf5\xc0\ -p\xc0\xec\xc1g\xc1\xe3\xc2_\xc2\xdb\xc3X\xc3\xd4\xc4\ -Q\xc4\xce\xc5K\xc5\xc8\xc6F\xc6\xc3\xc7A\xc7\xbf\xc8\ -=\xc8\xbc\xc9:\xc9\xb9\xca8\xca\xb7\xcb6\xcb\xb6\xcc\ -5\xcc\xb5\xcd5\xcd\xb5\xce6\xce\xb6\xcf7\xcf\xb8\xd0\ -9\xd0\xba\xd1<\xd1\xbe\xd2?\xd2\xc1\xd3D\xd3\xc6\xd4\ -I\xd4\xcb\xd5N\xd5\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\xe0\xd8\ -d\xd8\xe8\xd9l\xd9\xf1\xdav\xda\xfb\xdb\x80\xdc\x05\xdc\ -\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf)\xdf\xaf\xe06\xe0\ -\xbd\xe1D\xe1\xcc\xe2S\xe2\xdb\xe3c\xe3\xeb\xe4s\xe4\ -\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe82\xe8\xbc\xe9\ -F\xe9\xd0\xea[\xea\xe5\xebp\xeb\xfb\xec\x86\xed\x11\xed\ -\x9c\xee(\xee\xb4\xef@\xef\xcc\xf0X\xf0\xe5\xf1r\xf1\ -\xff\xf2\x8c\xf3\x19\xf3\xa7\xf44\xf4\xc2\xf5P\xf5\xde\xf6\ -m\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf98\xf9\xc7\xfaW\xfa\ -\xe7\xfbw\xfc\x07\xfc\x98\xfd)\xfd\xba\xfeK\xfe\xdc\xff\ -m\xff\xff\x80\x00 P8$\x16\x0d\x07\x84BaP\ -\xb8d6\x1d\x0f\x88DbQ8\xa4V-\x17\x8cF\ -cQ\xb8\xe4v=\x1f\x90HdR9$\x96M'\ -\x94JeR\xb9d\xb6]/\x98LfS9\xa4\xd6\ -m7\x9cNgS\xb9\xe4\xf6}?\xa0PhT:\ -%\x16\x8dG\xa4RiT\xbae6\x9dO\xa8Tj\ -U:\xa5V\xadW\xacVkU\xba\xe5v\xbd_\xb0\ -XlV;%\x96\x0a\x01\xb4\x00Cv\xb1\x15\xb4D\ -+\x0c\xdcC\xe0\xeb\xa0F\xd2\x01y\xde^\x0e;\xe3\ -q\xc5\x7fm_\xdcM\xbb6\x17\x0d\x1b\x0a\xe2CD\ -\x5caX\x8f\x8f,\x88rB\xa0VT\x19\x14|\xe6\ -^\xedl\xe31\x85\x9fY.tJ\x87V\x95\xc9\x87\ -\xd4a\xc4\xda\xb1\x81g\x5co\x1elIa\x1d\xa0V\ -X\xf0\xdc;\x17\xdb\xb5r\xc7|\x9dj\xf0YZ\x9e\ -%d\xbd\xc7:\x99yG\xf0O4\x17<}t_\ -\x08\x9e\xa1\xb3|\xb1N\xf1{T\x9b\xa08$f\xf0\ -\x1f\xcb\x1e3u1_\xe7M\xa5\xfdG\xd7w\xb5\xd3\ -\xdb\xf8NA\x7f0rS\xec\xb9\x16\xfeG\x15FO\ -\xf5v6\xc0\x02A\xfd\x01\x9f\xcf\x8c\x0c\x98\x8e\xf0I\ -**\xc1\x83R0m\xc2\x06\x938k\x19fl,\ -`\x9dp\xc9\xca\xe8\x9fG\xcb\xe6\x05\x81\xabX6\x11\ -\x06q(\x80\x11\xc5\x01`A\x15\x85\x0b\xba0V\xc6\ -\x04\xc1\x15\x19\x8d\xa7\xecl~@\xf1\xcaJ-\xc7\x83\ -\x90\xe3\x1f\x91\xa8\xa3\x82j\x99D\xb4\x8c>\x19rI\ -{\x02@\xa8\xb8\x09'\x80\xa1\x94\xa4\x1f\x0cr\xa8\xf9\ -\x12\x86b\x020O\xcb\x849+/\x8fQ\xd4\xc4\x8e\ -\x84\x93(ZPM\x06@\x115\x81H\x81m7\x94\ -\x84,\xe433'\xc9\xee\x94\x00S\xc8\x04-O\x83\ -\x88\xdd?\x913\xd0\x06\x88\x1eT)\xde*Q\x01C\ -\xdaw\x1dS\x1d\x1c\x8a\x92T\x89l\x1dR\x82J \ -]S\x05H\xffM\x8b\xc7\xdd<}&\x81\xb5D!\ -\x90u)H\x09\xd5\x00\xc2 ZU\x85\x09\x01W\x8c\ -\x14}d\x86\x82\xd5\xa87\x18\x15\xa6\xcb\x9a\x04\xb9\xe8\ -[Ju\x1c\x8dp\xb2\x18\x1e6)\xda\x9e\x05\xd6H\ -tMY\x86\x04\x9e\x02\x00\xa8e<}\x9fB\xbd\xac\ -\x160L%gm\xa0\x83E\xbcA\x0c\x97\x08\xfa\x88\ -\x10\xd7(\xd0W]\x04\xca\x889]\x84|\xf8-\x0e\ -\x08\x84\xd0P\x11\x0f\xb1(<\xdb\x95\x9b\xba\x09W\x06\ -\xc3h\x08\xb6\xc8]\x16u\x0a\x18(H{a\x07\x9a\ -\x88\x03a\x80AO\x87\x9a\x00\xfe$\x13\xa1\x876,\ -p\x0a\xd8\xc8V|c\x87\xb5\xf31c\x81\xbbH \x86\x19\xfbi\x863\xee\ -\x02\x04\x98\xa8\x14[\xa9\x96\x15o\x01\xa2\x19R\x90c\ -#\xae\xec\xec.\xd2\xef\xa2\x03[\xc0T\x1a\xdd\xe3\x84\ -\xa4\x19\x07\xe8$\xfe7\x09F7$[\xaa\x84o,\ -X\x07\xfc\xc8\x9e\x86\x11|\xe8\xdcT\xf4\x04\x9f\x03|\ -\xd4A\xb0\x87\xd2\x88\x96a4@C\x87\xca\xa9H\x92\ -T\x9d+\xces\xdd\x01S\xd1t}\xca\xb0\x03\xf7\x80\ -N\x1eS\x9a \xf7\x84\x12\xa1\x84\x17\x8c1\x96^I\ -=\xddy\x8a\xab\xf2\x16\x87\x04\xf7\xa4cE\xc8X\xeb\ -\xeb\x8aE\xff\xb4W\xf9\xbe\xea\xa2>|\x04\xde\x0a(\ -\x0c\x99\xa4\x06~\xb8\xe2\xf0ll}\x86w\xbd\xf7\xa9\ -+pTR~\x86v\x18\x03\x00\xe8a\xbd\xfd\x9a\xd1\ -\xe0\xb6\x0cV\x9a\xa0~\x10\x0du\xae\xc1\x1c\xbb\xc3\x89\ -\x10uB\x05\xd5\x08\x08\x09\x03\xca\x0b\xf7\x00\xedTV\ -\x0d\x805\x05\xc1\x01\x0cC#\xacs\x05\xd8<\x0d\x07\ -d!\x1c\xf0B\x12\x13\xd0k\x09\xc2\x12F\x12\xc2\xf1\ -\xea\x90\xa2\xf2<\xc7\x80\xe1\x86Ce=\x00!\xd1\x0d\ -\xc7\x18\xc1\x87B\xc4Z\xc3\xd1E\x09b\x01\x152\xa0\ -(\x06/\xf0,\x88\x81\x08\x1c\x89@\x90\x0cD\xd0:\ -\xaa\x00\x98\x18\x061L\x1f< <\xf1\x09\x18\xc8\x8b\ -B\xe8FE\xd0\xde8#\x00\xd8\x88.\xea!\x80\xd5\ -k\x11\xe0\xb8\x1a\x04\x11X\x13\x19 B\x0a@\xecq\ -\x04\x91(\x0e\x028\x8c\xae\xd5\xe9:B\x03li\x06\ -\x18\xfc\x0eX\xe0\xf8c\xd1\x8c\xad\xc3Uv\xcf\x99\xf8\ -\x17\x91@u\xa9\x01 -#@\xb4P\x03\x12(\x0b\ -\x81\xd6$\x07\xc1<\x94\x03\xa0RN\x01\x98$V\x1e\ -\xb8u{/nB\x14u\x9e\x01\x5c04\x8e\x80\x91\ -\x14\x020W%\xc1:\x22\x04@>Z\x01$\xd6\x02\ -\x00[XQ\xc2\xce^\x0a\x01\x03/\xc3\x0c\xa5'\xcd\ -\xa4\x06\x81\x04\x18\x15CXD\x99AT\xd5\x82`^\ -\x8eG\xe4\xd1\x1fr\x04{\x1b\x81\xe0;\x1a\xc2\xfb!\ -\x83:n\x0c#\xc0\x19\x9cl\xc2'\x11\xc4\x0e\x82G\ -,#E\x81n\x05e\x81\x1b\x0f\xd1\xf8\xc0\xe1\xb8\xe8\ -\x1cQ\x80p\x0d\x83\x046\xa1\x90\xe1\x1b0ls\x0f\ -I\xfc\x1b\xf0\xb8\x1a\ -\xe2hK\x00\x80\x130\xc4\xe2\x02\x1e\xebn\xb3\x09\x02\ -2\x13\xb0\xd4\x18\x80_\x0d\xa0v!\x87\xd8\x1b\x01\x9c\ -\xe3\xa0h\xe0%\x1c\xb9\xcb\x98\xfe\x82\x16<\xe1^\x13\ -d\xe4\x10\xa0\xcd\x0d\x021\x01\xa0\xfa\x13\x80\x9f\x10\xed\ -v!l\x06\xd8\xcb<[e\xfa\x96\x02\x18\xc8\x81\x94\ -\x17\x8c\x82\x0dP\x01\x10B-\x06.A\x06\x8f\xd2i\ -/D\x06l\xc2\x1b,\xc6;h$\xe5@ \x02\xa8\ -\x90\x0f1T\x12\xe9\xd4!\x91B\x19\xeb\xc5\x13\x02,\ -\xe8\xce\x90\xb2.\x94!\xea\xc8\x0a\x86P\x15\xa2\xa0\x86\ -\xa9\x10\x02\x0c\x92\x9b\x22\xe8\x02Np\x8d\x8f\x10\xb9\xc7\ -\x08C\xe0\x1cHC\x84\xfdj=\x16B(\x8d\xc0R\ -\xfe!\xa4\x00q\xac\x00\x82\x18\x85@\xf6zA<\xbb\ -\xc2nPH\xa0\x92\x89*\xb5\xa9\xd4\xb5\xaf\x10\x93\x80\ -(\x03$>\x01\xa7x\x00\xe0\x12&\x01G\x1e!\x18\ -\x121\xe8\xa7\x91\xa0\x22oh\xe5\xa1\xb2\xc9\x82\x18v\ -\xc1&\xca\xe3\xca#e\x04\x96\xe0\x14\xc9\x22\xe2\x03 \ ->\x8d\x89.\x8d\xa3&\xb9\xc94\xc9\x22\x90\xa0\x8b\xc4\ -b\xc1\xcc\x1b\xf1\xee\x22b\xef\x1b\x81\x8cy\xe3\xf6!\ -aq#\xe1L|\x00\xf8\x0bb\x08\xc9\x91\xd1!\x06\ -$\x04\xcf\x10\xe7\x09e\x19F\xb1\x17\xed^+\x8a\xb8\ -\xcb\xec\xee\x1aa\x91\x22\xe24\x10\x92t\x14\xa0\x91'\ -\xa0\xb4!\x8d\x91&\xa1\x8e\x8d\x92\x0e\x03\xe9\x88\x02.\ -\x148\xb0\xae\x1e\xa1\xe4B\xc1\x9a\x18\x011* \xfe\ -g!\xb4grp#\x80\xc1+ \xf0\xf0\xa0\xd8\x10\ -\xe4r\xae\xe9\xe0\x86\xe3\x04\x1cC\x02/\xe1\xb6\xa9\x81\ -\xda\xb3\xcc\x06\xc7J\x9e\x1cr\xae$\x8f\x92\xf9o\x9a\ -+\x8aA-j\xfc\xa4\xe2\xf8\x1bj\x5c\xa5a\xac\xd9\ -\x0af\xd3r\xde'\xf1\xda\x01!\x1f0\xa1du\x02\ -p\xe0,\x07-\xa5~\x1c\xb2\xd0\xb3\xc86\x1c\xa9\xf2\ -\x1b*P\x1b\x8f\x8a\xab\xa6\x130\x22\xb5\x19Mr\x14\ -G2\x07\xe76#j\xee\xc0k\xd6\x1b\xed\xa6\xa5a\ -\xaa\xa5\xd3J\x9e!\xc2\xb1S4[\x88j\xf8\x00{\ -6`\x9a\x96\x80\x1e\x02N2\x1f\x8a&\x86(d\x1b\ -S+\x0b\x81\xbe\x1a\xcd\xa71\xb0\x095\xf3\x8d8\xf3\ -\x9193\x959s\x999\xb3\x9d9\xf3\xa1:3\xa5\ -:s\xa9:\xb3\xad:\xf3\xb1;3\xb5;s\xb9;\ -\xb3\xbd;\xf3\xc1<3\xc5\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / Default\x0d\x0a Cr\ -eated with Sketc\ -h.\x0d\x0a <\ -defs>\x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \x0d\ -\x0a\x0d\x0a\ -\x00\x00\x03\x87\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / entity\ - / Loop v2\x0d\x0a Cr\ -eated with Sketc\ -h.\x0d\x0a <\ -g id=\x22icon-/-out\ -liner-/-entity-/\ --Loop-v2\x22 stroke\ -=\x22none\x22 stroke-w\ -idth=\x221\x22 fill=\x22n\ -one\x22 fill-rule=\x22\ -evenodd\x22>\x0d\x0a \ - \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x19\xf8\ -\x00\ -\x00\xe0\x1cx\x9c\xed\x9c\x09\x5c\x14\xd5\x1f\xc0\xdf\xec\xc5\ -\xb5\xdc\x87\x17\xea\x8a\x1c^\xdc7\xca\xb9\xa0\xa0\x22\x08\ -xf\xc9\xb2;\xc0\xea\xb2\xbb\xee\x01hVj\xa6\xa5\ -\x96Gf^e\x1e\x99GiY\x1e\x99\x1d\x9af\x87\ -\x7f\xcb\xdb\xb2\x03\xf3oj\x99Q\xa6V\x9a\xfc\x7f\xbf\ -Y\x16\x06\x04E\x19\xc0\xfe\xcd\x97\x0f\xb3o\xde\xf5\xfb\ -\xbd\xdf\xbcy\xd7\xcc\x9b\xccL\xd2\x8b\x10bK\xbc\xc8\ -M\x22\x02\x17E,\x07!\xf3\x93\x0f\x07\x8a\xe5\x160\ -n\x88GyQ\xc2j\x7f\x88LI\xaa\xdd\x028\xb8\ -Z\xf3\xc9\xaa\xa4\xdcXq<\xab\xddLjV\x9e\xed\ -\xac\xf1\xe7\x11\xaa#\x11[\xdcT\x17\xaaS\x8d\xdb\x9f\ -\xf2f\xe5\xd3\x83%+\x14\x8f\xc4\x07\x5cAT\x18\xe3\ -\xf6\x00w6\x95S\x1b_\xb0\x0b\x8fQ\x9d\xe0T5\ -#\x03\xdd\xd2\x1e\x84DO\x99\xa9\xb6\xca\xfd\xaer\xa6\ -\x91\xd8\x80\x7f:!\xf2uX~\xb0\x87\xe5\xcf\xfe\xc6\ -\x14B\x02\x5c\xac\xbf\xc9*]\x01-\xcb.\xd6\x99t\ -\xc6b\x9d^&\x97\xcb\xc2BB\xa3e=F\xa8\xb5\ -*]\x99\xb1'\xc1\xd3\xb8\x90\xb0\xb8\x90pYhd\ -\x5cX88H\xbf\xc4r\xbdB9\x9e6\xc9\x0a\xe8\ -\x22\xb56\xde\xe7\x97w\xde\xf7\x91\xa9U\xf1>#\x22\ -3C2\xf5r\xbaX\x9d>\xc9@\xe7N\x1a\x92\xa7\ -\x9c4^\x19\xab\xf2IL\xb0\xefW\x1eW^\xa2/\ -\xa1M\x0aYy\x89Fk\x8c+\x8f\xf7Q\xa0\xfc8\ -p\xa3w\xb0\x8f\x8c\x89b\x1a\x1f\xefcQldf\ -\xb6L\xae3\xd0\xb2\xc8\xa0\xa8@ehx\x8c,:\ -6(426&,\xa2\x0f*\x1a\x15\x1c\x12\x1b\x1c\ -\x1a\x11\x18\x12\x1a\x17\x12\x1b\x17\x12*\xab\xc6'\xc1\x1e\ -\x8e\xfd\x0c\xaa\xc2\xb8\x9c\xd4\xfe\xd5\xe2\xe0,\xde\xa7\xd8\ -d\xd2\xc7\x05\x07\x97\x95\x95\x05\x95\x85\x07\xe9\x0cE\xc1\ -\xa1\xb1\xb1\xb1\xc1!a\xc1aa\x81\x10#\xd08Q\ -kR\x94\x07j\x8d\xdd-\x99X\xf3I\xa5\x8dJ\x83\ -ZoR\xeb\xb4284($\xb8\xa1D*eM\x1a\ -\xbd\xd9\xa0aTS)\x83i\x0d]BkMFH\ -\x17\xda`:\xbd\xf5\xda5,\xb2&\xb8Q\xc1\xa0m\ -f\xe6\xed\xf5-)i0\xa5\xd1\x94Vj\xba}J\ -c\xdeD=\x1d\x9cC\x1buf\x83\x92N+\x85\xa2\ -\xd4\xda\x15M\x0b\xd2\xe3\xe4\x06Za\xa2S\xe1?\x01\ -k[`HX`Hx\x1e\xd4\xb6\x90\xa8\xb8\xb0\xc8\ -\xc0\x90\x98\xb8\x90\x90~\xc1\xf5b\xd6\xcb#S\xa7R\ -\x17Nl \x0f\xa6\xc6\xb2\xf3`\xc5\xac\x9f\x07\xd4A\ -\x95\xc2\xa4hR.\xec\xb8\xac|T\xca\xb8B\x9d\xa1\ -DaJP\x97(\x8a\xe8`\x93\xba\xb0\xb0_p\xad\ -/+j\xcd\xa5\x89\x93\xeb4:\x03\xe8E'\x84\xf7\ -\x0bn\xc8\xbb\xc1T\x19ry\xb6AW\xa8\xd6\xd0\x09\ -\xc6\x9c\x01)\xb2\x8c4yThlTT`XP\ -(;\x1bV\xbc\xba\x05\xce\xcc\x8c\xcb\xd0\x1aM\x0a\xad\ -\x92\xceHM\x00\x8f \xb5Z\x15WX\x18AG\x85\ -\xc7D\x05\xd2\x85\xe1t`(\x1dA\x07\x16D+c\ -\x02\xa3\x14\x11\x91ttxAX\xb4R\xc5\xd8\xa0n\ -\xf2[\xb2N\xd5)\xcdXu\xab\xb3V\xdde\xd6\xac\ -\xe4\xb7d\x9dePC\xb3\xa3\xd04SD\x03\xd9\xdc\ -\x22*]m4\xe9\x0c\x13\x13\xeaT\x7f\xa6A\xc8\xa5\ -'\xd4\xf5\xb5\x06h\xd4L\x03\xa1W\x18\x8c4V\xff\ -x\x1fk\xfd\xf7\xb9%\x01\xa6an\xa38\x85\x12\x9b\ -\x96\x04%S\xc3A\xc5:\xbe\x8d'S\xdf\xeb\x05\xbc\ -%y\xe32\xca\x8ai\xed\xed\xeeLV\xac\xc631\ -\xea\x0aMe\x0a\x03\x9d\x5c\x04\x96N\xb8c\xbfc\xcd\ -\xb5n\xb2[\xec\x1dl1x\xbd\xcb\x13|\xeb\xf5\xb1\ -^\xf3z\xd7\xd3\x12\x95\xd5\xb6[:\x8e\xe0\xea\x9e\x03\ -:\xad\xe0\x9a^\xab\xa1\xc2q\x0f/\x84\x17\xc2\x0b\xe1\ -\x85\xf0Bx!\xbc\x10^\x08/\x84\x17\xc2\x0b\xe1\x85\ -\xf0Bx!\xbc\x10^\x08/\x84\x17\xc2\x0b\xe1\x85\xf0\ -Bx!\xbc\x10^\x08/\x84\x17\xc2\x0b\xe1\x85\xf0B\ -x!\xbc\x10^\x08/\x84\x17\xc2\x0b\xe1\x85\xf0Bx\ -!\xbc\x10^\x08/\x84\x17\xc2\x0b\xe1\x85\xf0Bx!\ -\x1c\x0b\xb1\xaf\xdd\x07FkU\xf1>e>\x89\x09$\ -&%#S\xe4\xc7\xec9s!\xf5`\xc2\xe2\x18\xe7\ -\xd9\xeapfw\x1eq\xd0\x1b\xd4ZS\x96\xd9\xa47\ -\x9b\xe0\x14\xb7\xc9\x91l\xa3)\xb7@\xa7\xd3012\ -\xb4&\x9a\xd6\x9aK\xacn\xfc\x95k\x0cx\xee\xcc\xa4\ -\xcdU\x97c\x8c\x14\xb5\x09\xd3\xd4\xe6I\x1b\x86(J\ -\xe8\xbc\xb4\x91y5\xc2,\x09\xb2\x0d:]a.m\ -2\xeb\xb3\x0a\xc6)\xc1[J\xb2\x89\x81\xe8\xe0\xaf\x90\ -\xc8H.\xa1\x89\x89\x98\x89\x9eIb\xaf\xaf\x89m\xcd\ -&Ec\xd2Vk$-0\xab5&\xb5\x96\xc9\x12\ -\xce\xed\x98\xd8\xf2\xccQ\x83,%\xee\x8b\xf1\x05\x81u\ -J\xec\xc6*q\x16\xb3\xf3\xc0\x08\xbe\xed\x98r\xe9M\ -Zk!\xa0\x90\x05\x86\x9a\x93\x9c\x22cfm\x88A\ -+\xaf=\xd1\x9ajO\x06\x17h\x8c5'C\x8aL\ -\xa55'i%\x9a\xd4\x9a\x13\xb0cm\xd6)\xca\xf1\ -E\xd5\x86\xb0(Hr\x06\xa4\xc8\x89e\xdb$\xc9Q\ -\xc9d*\x9d\xb9 IWQs1\x07\x18\xb4\xb7\xf8\ -\xa5hn\x8d\x97bP\xe5\x0d\xd3\x9a\xfaw\xcf\xd1\x98\ -\xd8\x95!E\xa3\x925\xe4\x9fc\xd4\x98\x18\xff\xecr\ -MRN\x8d\xb7})\xad4\xe9\x0c\xa9\x0a\x93\xa2\xa6\ -Vd\x17e\x1b\xad\xb5\x02\xdd\xd5\xbfr\xc6\x08t\xa1\ -\xa9\xa1\xec\xf3t\xfa\x06\xc5\xe6*5\x16\xffl\x832\ -iT\x8d\xb7\x8b\xd2\xa0\xd3\x8f(\xa6\xe1\xe2\xc2\xf5R\ -k\x8b\xac\x16s\xc2\x80\x1c\xd0)Eg2\xe9J4\ -:mQu\x12\xa95\x04U`\xf9;Z\xfds\xd4\ -E\xc5\xec\x00\x07k\x00\xe8V\xe3\x8d5G\xf8\xb3E\ -\x07\x92N,{?\xab\x7f\x99Z\xe5\xcf\x849\xd5\x96\ - qJu\xaaK\x16q\xd2<\x83Bk\xd4+\x0c\ -\xb4V9\xd1R\x13=\x99\x90.\x18J\xf2\xa0\xb6+\ -\x88\x96\x18\xa1\x8e+\xc0M\x83[I&V\xdf\xa5\x91\ -LLWF\x1e\xa9\xaa\xaa\x16\xa1\xa2,\xa1\x9d\x993\ -\x91UO\x91c\xcdy\x17\xe6\xbcC\xdds\xe1e\xe6\ -\xdc\xce\xaa\xa9%\x97\x00K\xfb`o\xadp\x96r\x09\ -\xaf0\xeet\x12\x5cX\x08!\x1a8J\xaa\x13Y|\ -V.YZ\xe3\x13\xc6\x1cG\xc3\xd1\xea\x13\xc9\x1c\x03\ -k}\x98<\xff`\xdcz,IC\x08\xcfc0\xf7\ -a\x8c-,e\x13T\x9f\x09\xea\x9c\x85Xt\xac\xb6\ -j`\x9d0\xdb\xeak\xcf\x5c\x01A\x92\xe5\xbf:\xac\ -K=\xfbwD\x970\xb2\xa6\xd4\x16\xf2\xab\xff-\x96\ -\xb9\x15\xb6\x1f;n\x83\x11\xac\xd46aDk\xd6h\ -,\x0a\x13I\x81\xce\xacU\x19\xeb\xb5 JS\xa8U\ -M\xbc\xedXU\x9e\xd4\xbb7HJ\xed=\xc4\xa8\x91\ -S{\x8b\xe0\xb9\xc4\xa8Q+i\xe3p\xcd`\xbc\xc9\ -\xa9:r\xc4L\x188\xdc\xe0\xdf\x869\xc9He\xe5\ -mSd\xd0\x99\xf5u\xbc$:f\xeb\x9f\xb5\xfdN\ -\xcb\xc5D\x96\xed\x80p\xee\xa80\x9bt\x03h-m\ -\xc0\xadx\x8c\xf6\x13\xf5\xd6\xee\xc7\xde\x12\x19}0$\ -\xa3\xa4H\xd6\x0a\xe5\x17\x9a\x0d\x9a:\x9d\x18c\xfc\xba\ ->\x99\xc6\xa2\xba\x1d\x9dD\xa11\xe5)\x8a\xea\xf89\ -)iHG\x97\x9b2\x8c\xe9y\x99\x83\xadM\xa9\xad\ -\xd5\xbbNd\xbbb\x9daR\xb2F]d\xb5\x94\xb3\ -\xa5\xf0\xe9Vo\xb4\xae\x8a.T\x98\x99\xb6\xd4\xae\x94\ -6\x98\x1a\x88>\xdc\xea]7\xbaCA\x11\xb3\xc3\x95\ -e\x5cWK\x82\x94\x015\x01\xa8\xc6\x10\x9d\x16\x7f\xed\ -L:=t\x98F\x9am8{\x0d\x18\xf2\x16_i\ -\x01\xd3(\xdf\xe2\xef`\xc0\xa6\xb7\x9e7s\x07\xf5\xb0\ -\xa4\x83\x7fAb%\xa9\xf5\xf7`\x9cx\x09\x85\xcc9\ -\xc6 \x82\x93\xd5&\xca\xb7\xfcSP\x05\x98;a\x17\ -iO\xa8\xaa\x93U?\x13)\xb3\xc3q\xac<\x13\xce\ -/\x11'\xe6\x8c\xa8\xa6`\xba\xaaSd:\x91\xda\xda\ -\xda\xda\xd9J\xed\xec\xa4\xae\x0e\xf6\x0e\xae\x9e\xceR\xa9\ -\xb3g{wwOw\xf7\xf6\xaeR\x86\xea\x9f\x86\xa1\ -\x1c\x1d\x1c\x1c\x9d\x1c]\x9c\x9c\x5c<\x9c\x9c\x9c<\xf0\ -\xe0\xe4aI\xe2\xda\x94\x0c\xaa> \xae\xb6\xa0|\xbe\ -\x90\xf2!\x02WJ\xe8JU}\x03\x05\x95T\xed\xa5\ -\x12AK1\xc5Pm8!\xa1\x04\x22\xb1\xc4\xc6\xd6\ -\xce\xde\x81\xaa\x1fH\x11\x81\xd0\x1a\xe8B(\x11%\x14\ -\x88\x04b\x1b\x89\xadX(\x0d\x87@W\xa1\xa8\x9b[\ -\xa88y\xa8\xc2\xddg\xc2\xd40\x89\xc7\xfc\x95o\xa4\ -t\xf7\xf5\xcc\xd9]\x10\x1ea\x98vHn\xe3\xb7 \ -\xb7\xf2\xf4\xafJc\xa4\xd7\xaa-\x8f\xfb\xa7>\x9b\xa7\ -J\xdb\xb3\xda\x14\xd5\xee\xf0\xb0\xef\xe9\xdf\xde\x9c\xfe\xe1\ -\x11\xf3\x99\xcb\xfd\x03\x16\xaey\xe2\xad\xe7\xf6\x1e\xfd\xef\ -\xef/o\xddw\xec\xec\x95\xe1\x85\xa53\x16\xad\xdd\xf6\ -\xd1\xf1\x1f\xaeF\x0f\x18QT6\xf3\xf9W\xb6\xef?\ -q\xee\x9a+\x11\x08@[\x11\xa3\x93\x8dD\x1c\xc9\xa8\ -\xd0-\xd4M\x04\x1aL\xf0q\x17\x87M\x9d\xef\x81\x1a\ -\xec\xce9T\x19\xee[p\xda0m\x81<\xd7Si\ -\x8c\xf8\xd5O\x82\x0a\xd8\xf8G\xee9\x0cJ\xacn\xa7\ -J\x1b\x16e\xa2\xbf\xafQ\xa1q\x0d\x02jU\xa8\xfa\ -\x8aH\x85\x8cLW\x92H\xae\xe4-\xc8\xf0\xeb\xe9\xbb\ - c`\x86\xef\x82\x9c\x05\x19\xbe\x0b\xd7T{dU\ -}q\xbb\xc0C\xb7\x0b<|\xbb\xc0#\xb7\x0b\ -!\xc02\xd4m\x03\x9b\x08^[\x8b\xeb\xf2P\xe6\x9a\ -Q^\x07j\xfd\x1a\x8a\xa7[\x05m0\x8c\x06\x85\xf3\ -j\xfd\x0a\x96\x10\xb2\xfd\x09B\xda\x7fU\xeb\xe7\xfb\x12\ -\xd4Q\xb8n\xdb>g\x95\xc7\x0b\xeb\x0b\xebc\x1fj\ -Z\x19\x84\x06\xad\xe1\x8e\x11\x9a\x00K^\x10fWc\ -\x1eY\xaa\xa5\x97\x93\xa1\xdd\x94\xd0\x97\x99\x0d2\x18\x89\ -+iY`\xfdJ|\xcf\x09\x1b\xd6\xa3O\x0e]H\ -\xe3\x88\x9f\x96\x0d\x87Z\x06\x13\x16\xb8\xdcZ\x95\x9a\xf9\ -n\x89Z\xdb\xd8E\xbc\xc7d\xf5\xb0\xd4k\xc0}\xcd\ -M\xe216\x88\xb8|\xeeA\x84?\x1f \x22w\x07\ -\x22\x1c\xf3\x22\x84P5\xd7m\xb0\xddp\x82w\xde\x88\ -\xae\xe7,\xf5\x9e\xa1\x81!\xa7`.\x1e\x8cjf\xa0\ -E\xe49y2\xa5\xd9Pj\x09c\xc6Vb\x98C\ -8\x13\x0f\xd2\x01f6\xddI\x0f\x18\xfd\x87A#\xd3\ -\x97$\x9142\x90d\xc1Lg\x14y\x08\xe66\xc5\ -\xa4\x04\xe69ed2\x99Jf\x90\xd9d\x1ey\x8e\ -,%+\xc8\x1a\xb2\x9el\x22[\xc8v\xb2\x8b\xec&\ -\x1f\x91\xcf\xc8\x17\xe4\x189E*\xc8Y\xf2\x13\xa9$\ -W\xc9u\xe8\xecl(G\xca\x9d\xea@u\xa5\xfc\xa8\ -\xdeT\x18\x15C%Pi\xd4`*\x87\x1aE\xe5S\ -E\x94\x962S\x93\xa9\xc7\xa9\xd9\xd4\x02j)\xb5\x92\ -ZO\xbdA\xbdM\xed\xa6>\xa1\x0eQ_R\xa7\xa9\ -\x0b\xd4o\xd4_\x02\xa1@*\xf0\x10t\x16\xf8\x0b\x82\ -\x051\x82d\xc1 A\x9e\xe0AA\x91`\x82`\x92\ -`\xba\xe0\x19\xc1b\xc1*\xc1\xab\x82m\x82\xdd\x82\xcf\ -\x04\xc7\x04\x15\x82\x9f\x04W\x84D\xe8 \xf4\x12v\x13\ -\x06\x0ac\x84ra\x96p\xb4\xb0Ph\x10>*\x9c\ -%\x5c$\x5c%\xdc$\xdc)\xdc/<\x22\xac\x10^\ -\x14\xfe)\x92\x88\xdcE2Q\xa0\xa8\xaf(]4L\ -\xa4\x14M\x10=*\x9a#Z*Z'\xda&\xda+\ -:\x22:-\xaa\x14\xdd\x14;\x8a\xbd\xc5\xbd\xc5q\xe2\ -\x0c\xf1Hq\x91\xb8L\xb7;kw\xdd\xde\xd5>\xc0>\xde>\xcf~\x9c\ -\xfdT\xfb\xc5\xf6\x9b\xec\xf7\xd9\x7fm\x7f\xd9\xc1\xc1\xc1\ -\xc7!\xd6a\xa8\x83\xdaa\x8a\xc3b\x87\xd7\x1d>v\ -8\xed\xf0\xa7\xd4M\xdaK*\x97\x8e\x91\x9a\xa5\xcfH\ -_\x91~ \xfdRz\xd9\xd1\xd1\xd1\xdf1\xc9q\xb4\ -\xa3\xc9\xf1\x19\xc7\xf5\x8e\x1f:~\xeb\xf8\x87\x93\xbbS\ -\x90S\x86\x93\xca\xe91\xa7eN\xdb\x9c\x0e;]r\ -\xb6s\xf6sNv~\xc8y\x92\xf3\x22\xe77\x9d?\ -w\xbe\xe8b\xe7\xe2\xef\x22wQ\xb8<\xea\xb2\xcc\xe5\ -m\x97\x13.W\x5c\xdd]C]\xb3\x5cK\x5c\xe7\xb8\ -np\xfd\xc4\xf5\xbc\x9b\x8d\x9b\xbf[\x9a\x9b\xcam\xba\ -\xdbj\xb7\x0f\xdd\xce\xb8\x0b\xdd\xbb\xbb\xcb\xdd\x95\xee\x8f\ -\xbb\xafq\xdf\xe7~\xd6C\xe2\x11\xe0\x91\xe11\xcec\ -\xb6\xc7k\x1e\x07=*=\xdd<#<\x87{\x96{\ -.\xf3|\xd7\xb3\xc2K\xe8\xe5\xef\x95\xe1\xa5\xf1\x9a\xeb\ -\xb5\xc5\xeb\xb8\xd7_\xed:\xb7KnG\xb7{\xaa\xdd\ -\xa6v\x87\xdb]k\xdf\xa9}R{\xba\xfd\xac\xf6\x9b\ -\xdb\x1fk\xffW\x07Y\x87\xb4\x0e\xe3;\xcc\xef\xb0\xbd\ -\xc37\x1dE\x1d{u\x1c\xda\xb1\xac\xe3\x8b\x1d\xf7u\ -\xbc\xd8\xc9\xa3S\xdfN\xcaN\xb3:m\xe9\xf4\x95\xb7\ -\xc0\xbb\x97w\x8e\xf7\xc3\xde\xab\xbd\x0fx_\xe9\xdc\xa5\ -\xf3\x80\xce\xfa\xceK:\x7f\xd8\xf9b\x17\xaf.I]\ -\xc6uY\xd8\xe5\xbd.\x17\xba\xbawM\xe8\xaa\xee\xba\ -\xb0\xeb\xfb]\x7f\x94y\xca\x92e\x1a\xd9b\xd9^Y\ -e7\xefn\xe9\xdd\xcc\xddVv;\xd8\xed\xbaO\x80\ -\xcf0\x9fi>\x9b}\xbe\xe9n\xdf=\xa6{a\xf7\ -\x85\xdd\xf7t\xaf\xf4\xed\xea\x9b\xe9;\xd9w\xa3\xefW\ -~v~1~\xc5~\xcf\xfb\xed\xf7\xbb\xe6\x1f\xe0?\ -\xc2\x7f\xa6\xffv\xff\xf3\x01\xed\x032\x02&\x05l\x0c\ -\xf8\xba\x87c\x8f\xc4\x1e\x13z\xac\xeaq\xb4\xa7\xa4g\ -L\xcf\xf1=_\xe8\xf9E/A\xaf\xc8^\xc5\xbd\x96\ -\xf5\xfa\xbc\xb7\xa0wTou\xef\x17z\x1f\xea#\xee\ -\x13\xdbG\xdbgU\x9f\x13\x81\xd2\xc0\xe4\xc0\xd2\xc0\x8d\ -\x81\xa7\x83\xbc\x82\x06\x07M\x0b\xda\x1et)\xd87x\ -t\xf0\xfc\xe0\xfd\xc17C\x22C4!kBN\x85\ -\xba\x85\x0e\x0c\x9d\x16\xba3\xf4\xb7\xb0^a\xca\xb0e\ -aG\xc3\x1d\xc3\xfb\x87?\x16\xbe#\xfc\xd7\x88\xde\x11\ -t\xc4\x8b\x11'#\xdd#3#gF\xee\x89\xfc;\ -*:\xca\x10\xb5)\xeaB\xb4ot~\xf4\xf2\xe8\x13\ -1\x1e1\xd91sb>\x8e\x15\xc7\xa6\xc4>\x16\xbb\ -+\xf6\xcf\xb8\xa88S\xdc\x96\xb8_\xfa\x06\xf6\x1d\xdf\ -wC\xdf\xf3\xfd\x02\xfa\xd1\xfd\xd6\xf4;\x13\xef\x13\xaf\ -\x88_\x19_\x91 K\xc8Ox)\xa1\x22\xb1[\xa2\ -\x22qU\xe2\xf7I\xdd\x93TIk\x93\xce%\xf7L\ -\x1e\x97\xfcj\xf2\xa5\x94\x90\x14C\xca\xd6\x94k\xf28\ -\xf9#\xf2\x0fR\x85\xa9\x03Rg\xa5\x1eLsK\x1b\ -\x96\xb64\xed\xdb\xfe>\xfd\x8b\xfao\xec_9 r\ -\xc0\xc3\x03>H\x17\xa7\x0fJ\x9f\x9f~\x22\xa3s\x86\ -2c}F\xe5\xc0\xe8\x81\x8f\x0c\xdc;H:(w\ -\xd0\xd2A\xdf\x0f\xee5\xd80xg\xa6 s`\xe6\ -\xb3\x99_\x0f\xf1\x1b\xa2\x1d\xb2=\x8bded=\x9b\ -\xf5Mv@\xf6\x84\xecw\x86J\x86f\x0f]6\xf4\ -\x87\x9c\xd0\x9c\xc99\xfbs\xdds\xc7\xe6n\xc8\xbd\x9a\ -\x97\x9277\xef\xd4\xb0\x1e\xc3\xcc\xc3\xf6\x0cw\x1e>\ -f\xf8\xfa\xe1\xd7F\xa4\x8eX0\xa2bd\xf0\xc8G\ -F~6\xaa\xe3(\xf5\xa8\x1d\xa3mF\x0f\x1f\xbdv\ -\xf4\x95\x07\xd2\x1ex\xee\x81\xb3c\x22\xc7\xcc\x18s\xfc\ -\xc1\x80\x07\xcb\x1f\xfc\xe4\xa1\x8e\x0fi\x1ezw\xac\xf3\ -X\xc5\xd87\xf3\xc5\xf9#\xf27\xe4\xdfPd)V\ -)\xae\x14d\x14,/\xa8T\xca\x95\xcf+\x7fR%\ -\xa9\x16\xaa.\xd0\xf1\xf4\x02\xfa\x5ca|\xe1\x82\xc2\xf3\ -E\xf1E\xcf\x16](N,^T|Q-W/\ -U\xff:.}\xdc\x8aq\xd7\xc6g\x8d\x7fe|\x95\ -f\x84fs\x89mI~\xc9\xdbZ7\xedx\xed^\ -]\x17]\xb9\xee\x90\xbe\xb7~\x86\xbebB\xdc\x84\xe7\ -&T\x1a\x06\x19\xd6\x1a)\xe3\x83\xc6\x1d&\x0f\x18L\ -\x1d0\xf70?a>]\x9aP\xba\xac\xf4\x8f\xb2\xe1\ -eo\x96\xbb\x96k\xcb\x0fL\xec5\xf1\xa9\x89\xe7&\ -\xf5\x9f\xf4\xf2\xc3\xa2\x87\x95\x0f\xef\x99\xdcm\xf2\xd4\xc9\ -\xa7\x1fI~d\xe5\xa3\xd4\xa3\x05\x8f\xeey\xac\xfbc\ -\xd3\x1f;;e\xc0\x94uS\xed\xa7\x8e\x9f\xfa\x9fi\ -!\xd3\x16L\xfb\xfd\xf1\x11\x8f\xef\x9c\xdey\xfa\x94\xe9\ -g\x9e\x18\xf0\xc4\xc6\x19N3\x0c3N\xcc\xec;s\ -\xc5\x93\xa2'\xd5O\x1e|*\xfc\xa9%O\xdd\x9c\xa5\ -\x9a\xf5\xe9\xec\x90\xd9\x8bf\xdf\x98\xa3\x9c\xf3\xe9\xd3\xa1\ -O/~\xba\xea\x99\xc2g\x0e\xce\x8d\x9a\xfb\xe2<\xc9\ -<\xed\xbc\xe3\xf3\x13\xe7\xaf[\xe0\xba`\xd2\x823\xcf\ -f>\xbbm\xa1l\xe1\xac\x85\xbf?7\xf6\xb9O\x16\ -E,Z\xf1\xbc\xfd\xf3\xe6\xe7+\x16\x0f^\xbcc\x89\ -\xef\x92yKn,-^zlY\xca\xb2\xcd\xcb\xbd\ -\x97?\xb5\xfc\xda\x0b\xaa\x17\x0e\xbf\x98\xf4\xe2\xa6\x15\x9d\ -W\xcc^\xf1\xd7K\xea\x97N\xae\x1c\xb0r\xdb*\xff\ -U\x8bVKV\x97\xae\xfea\xcd\xf05\xfb_\x8ey\ -y\xfd\xda\x8ekg\xaf\xfd\xfb\x15\xed+\x15\xebr\xd6\ -\xed]\x1f\xbd~\xfd\x06\xef\x0ds7\x0a6\x9a7^\ -xu\xcc\xab_\xbc\x96\xfa\xda\x8eM\x81\x9bVn\xf6\ -\xda<\xfbu\xf2\xba\xf9\xf5\x1f\xdf\xc8\x7f\xe3\xf8\x96A\ -[\xf6\xbc\x19\xf3\xe6\xa6\xb7\xfc\xdeZ\xbe\xd5}\xeb\xac\ -m\xd4\xb6\x89\xdb*\xb7\x17o\xaf\xd81j\xc7\xa1\xb7\ -\x07\xbe\xbdgg\xdf\x9d[\xdf\x09z\xe7\x95]\xddv\ --{\xd7\xf3\xdd\xb9\xef\xd9\xbf7\xfd\xbd\xaa\xf7'\xbd\ -\x7f\xe5\x03\xfd\x07\x17w\x17\xed>\xb3g\xec\x9eS\x1f\ -\x8e\xfc\xf0\xe8\xde\xa1{\x0f\xee\x1b\xb4\xef\xe3\x8f\xfa\x7f\ -\xf4\xe1\xfe\xe4\xfd\xef\x7f\x1c\xff\xf1\xaeO\xe2>y\xfb\ -\xd3\x98O\xb7\x7f\x16\xf5\xd9\xb6\x03\x91\x07\xb6\xfe'\xf2\ -?[\x0fF\x1d\xdc\xf6y\xf4\xe7;\xbe\x88\xfdb\xe7\ -\xa1~\x87\xde;\x9cxx\xf7\x91\xd4#\x1f\x1d\xcd8\ -\xfa\xd9\xb1!\xc7\x0e\x1d\x1fv\xfc\xe4\x891'*N\ -\xaaN\x9e\xffR\xf3\xe5\xaf_\x95~u\xfd\xd4\x94\xaf\ -\xc5_\xcf\xfa\xc6\xe5\x9bE\xdfz\x7f\xbb\xea\xbb\x9e\xdf\ -m\xae\x88\xaax\xf7t\xea\xe9\x03\xdf\xe7~\x7f\xea\x8c\ -\xf2\xccO\xff5\xfe\xf7\xc6\xd9\xe9?8\xfe\xb0\xe8\x5c\ -\xd7s\xeb\xcf\x87\x9d\xdfu\xa1\xff\x85/~|\xe0\xc7\ -\xb3?\xe9\x7f\xba~q\xc6\xcf\xae?/\xbf\xd4\xe3\xd2\ -[\xbf$\xfdr\xa0rd\xe5\xd9_\x0d\xbfV\xfd6\ -\xe7r\x87\xcb\xaf\xfc\x1e\xf1\xfb\x9e+\xd9W\xbe\xbdZ\ -r\xf5\xfa\xb5Y\x7ft\xf8c\xdd\x9f1\x7f\xee\xffk\ -\xc4_\xe7\xae\x97\xdd\xb0\xb9\xb1\xf8\xef\x9e\x7f\xef\xbc9\ -\xe8\xe6\xd7U%5+\x93<<<<<<<<\ -<<<<<<<<<<<<<<<<\ -<<<<<\xffbl\x81\x91@[\xeb\xf1oe\ -\x05\x80{e^\x04\xf0Z\xb4\xb5>\xff&\xb0\xde\xb3\ -\xf7+}\x06t\x01ZBVG`\x180\x13\xd8\x01\ -\x1c\x03~\x00\xaeU\x83\xee\xe3\xc0\xdb\xc0\x93\xc0p\x00\ -\xd3\xb4\x84.\xf7\x0bX\xdf\xb1\xde\xb3\xaf\xc1\x8f@\x0a\ -\xc0E\xfe\x9d\x802`?p\x13hx\x97Z\xe3`\ -\x9aO\x80r\xa03\xc0\x85N\xf7#%\xc0_\x80\xb5\ -\xdc7\x00\x1dp\xaf\xf9\xc5\x00\xeb\x80\xeb\xc0\xdd\xda\xbc\ -10\xaf\x0d@\x1c\xc0e\xd9\xef\x17\xfa\x02\xe7\x00v\ -\x99\xd7\x02\xf6@S\xf3\xf0\x06\xd0F\x5c\xd9\xbc1^\ -\x05Z\xaa\x9dlK:\x00\x1f\x01\xec\xb2\x1e\x02|\x80\ -\xdb\xa5\x93\x00\xd8F\xfc\x0e\xb4\xb4\xed\xad\x5c\x01&\x01\ -6@k\xd9\xa75@[.\x01\xd8e\xbd\x04\x0c\x00\ -\x1a\x8a\xdf\x1f\xf8\x12h-\xbb\xd7\xe7\x14\x90\x0e\xb4\xb6\ -\x9dZ\x9a\x02\xe0\x0f\xc0Z\xce\xbf\x01\xecK\xad{\x1e\ -\x05\xc0\x13@[\xd9\xbd>8fB\x9d\xda\xdan\x5c\ -\x12\x09|\x0f\xb0\xcb\xf9\x1a\x80\xed\xfcV\xa0\xadl\xdd\ -\x18\xdb\x01\x17\xa0\xad\xed\xc6%\x9e\xc0\xfb\x00\xbb\x9c\x7f\ -\x02md\xe2;\x82\xedQo\xa0\xad\xed\xc6%\x22`\ ->\xd0\xd6\xb6m*\x97\x814\xa0\xad\xed\xc6%\xa9\xc0\ -\xfd\x5c\xef\xeb\x83s\xea\xff\x97k\x80c\x1c,\x0f\x17\ -v9\x0b\xe0\xbd\x84c\x96^\x80#\x80\xdfB\xf0\x07\ -\xce\x00\x5c\xc8\xb0\x82:\xa3\xeemm\xbf\xe6\x80\xe3N\ -.l_\x01\xe4\x02\xb7\x1b\xa3`\xdb\xcd\x85\xdd\xd9\xa0\ -\xee\x8d\x8d\x9d\xefwp\xfc\x83\xf3\x9c\xe6\xda`\x0e`\ -\x07\xdcI^K\xd8\x1f\xc12D\x00\xada3\xae\xc0\ -\xf9}\xfd\xf5\x88\xbb\x05\xe7\x0c\xe3\x80\xa6\xcal)\xfb\ -#X\x96\x7f\xca\x1a\x1e~\xc7\xe6\x08\xd0\xdc2\xdf\xed\ -\x1a^K\xda\x1f\xc1\xb5\x14\xecoZ\xcan\x5c\x80\xf3\ -\xdb\xb7\x00.\xca\x8bm~(\xd0T\xd9-m\x7f\xe4\ -\x0d\x80\xf5\xdd\xa2\xfb\x8e\xc9@s\xcb\xc8^\xeb\xbf\x0a\ -<\x084Evk\xd8\x1f\xc1u\x94\x96\xb6\xe3\xbd\xd0\ -\x0f\xc0\xb5\xff\xe6\x96\x0f\xc7\x97\x95\x00\xdbo\x1e\x80\xf3\ -\xb8\xdb\xc9o-\xfb\xe3\xb3\x84h\xa0\xb5\xec\xda\x14\xb0\ -\xcd\xc7\xf6\xa2\xb9e\xc3<\xc4\x80\x1fp\x14`\x87\xed\ -\x01\xda\x01\x8d\xe9\xd0Z\xf6G\xbe\x02\xee\xe6\xd9FK\ -\xf34\xc0E\xb9\x9e\x02\xacy\xe2\xbc\xaa\xfe\xf3\x98\xff\ -\x02\x8d\xd5\xbd\xd6\xb4?2\x15h=\x0b7\x0e\xae\x19\ -\xe2\x9a\x09\x17eJ\x02\xea\xe7\x8f\xcff\xd8\xed\x1a\xae\ -c\xa8T*U\xfdx\xadm\x7f|\xae\x81u\xa4U\ -\x8c|\x1bJ\x01.\xca\x83}-\xb6=\x0d\xc9\xc0\xf5\ -\xa3\x8b\x00;\xfeR\x00\x9f\xf7X\xe3\xb4\xb6\xfd\x91\x09\ -@\xebY\xbaa\xb8Z\xcb\xff\x1a\xb8\x9d\x1c\xfc`\xf9\ -A\x80\x9d\xe6c\x00\xdf\x93\xc0p|\xce\x19\xd0D\xb8\ -z\xe6\xb6\x05h\x1d+7\x0eWe\xd9\x0b\xdcI\x16\ -\xaeC\xac\x06\xd8\xe9\xce\x03\x09\xc0\xdd\xe8\xfc\x1e\xc0\x85\ -\xce'\x80{\xb7\x1c7`\xbb\xc1EY\xde\x04\x9a*\ -S\x0f\xb0\xdfOA\xb7F\xa3\xd145\xfdf\x80\x0b\ -\x9d\xb1\xec\xf7f5\xee\xf8\x0e\xe0\xa2,\xf8\xee\xc4\xdd\ -\xc8\xc5:\x8fu\x9f\x9d\xc7*\xa0)ku8\x96\xe5\ -B\xe7o\x81{\xb7\x1c7\xbc\x03pQ\x96o\x80\xbb\ -\x95\x8dm?\xf6\x01\xec|\xb0\x8f\xc0\xbe\xe2v\xe9\xb8\ -j3\xf1}\xc7{6\x1cG\xe0\xbb\x03\x5c\x94\x05\xd7\ -\xda\xd9\xe3\x99\xa6\x82\xef\xf0,\x07\xd8y\xe1X\x09\xc7\ -L\x0d\xc5\xc71\x16\x17\xeb\xe2\xc8t\xa0\xf9\x16l\x1e\ -]\x01.\xd6\x1d\x90\xe6\xbc;Z\x08\xb0\x9fq\xa2N\ -f\xa0~\xbcD\x80\x0b]Q\xd6\xfd\xf2\x8e\xefz\x80\ -\x8b2\xcd\x06\x9a\xa3\x07\xbe;\x8asdv\x9e8\x87\ -v\x00\xacqp\x8e\xcd\x85\xae\xf8\xeeq\xf3-\xc7\x0d\ -8\xf6\xfe\x0dhn\x99\xf0}\xa1{i\x83\xd8\xe0\x1a\ -Q\xfd\xfe\x15\xd7\x92|\x01\xcc\xfb4\xd0\x5c=\x7f\x01\ -\xac\xf3\x8e\xfb\x85\x87\x80\xe6\x96\x0b)\x06\x9a\xab\x0b\xb6\ -\xf1\x0b\x81\xfa6{\x16\xe0B\xc7\x11\x00\x176\xe3\x1a\ -\xeb~\x98\xe6\x80\xf5\x93\xdd^4\x07\xac\x13\xec\xe7\xff\ -\xf7\xb2\x8f\xa0>\xb8\xee\xc1\x85n-\x01\x8e\xbd\xeb\xaf\ -\x11\xdc\x0bk\x00\xaet\x0a\x03\xb8X\x1bG\x0e\x00\xf7\ -\xfb;\xd3\xf8\x9c\x1a\xdf\xd3inY\xef\xe6\xd9\xfb\x9d\ -\xe0b\x8d\x10\xfb\xf5\xfb\xad\xcdo\x8c\x10\xa0\xb9k\xd2\ -\xd8V\x18\x80\xe6\xea\x82c\xd0\xe6\xb6;8\xb6\x08\x06\ -\xb8\xb0Mk\x91\x01p1/x\x0e\xb8\x97\xf7\x0e\xf0\ -\x99\xdcb\xa0\xb9\xf2\xb1\x0c\xff\xd4=\x02c\x00.\xae\ -\x01\xeeo\x1c\x0b4\xf6|\x80\x0d\x8e1\xf3\x81\xfak\ -C\xf7j{,Ck\xd8\xaa\xa5\x18\x05p5?\xc6\ -gN8\xef\xc1\xfd\xa58\xd7\xf2\xae\x06\xdd\xe8\x87\xe3\ -/\x1cgr!\x0buF\xdd\xdb\xda~\x5c\x90\x07p\ -\xb9\x9f\xb1\xa5A\xdb\xe3~\xe3\xb6\xb6\x1b\x97d\x03\x5c\ -\xbd\x07\xdd\x1a<\x03\xdc\xe9\x9d\x97\x7f\x1a\xe1\x00\x17\xf3\ -\xff\x96\x82\xbd\x8f\x19\xc1\xbd;\xb8\x87\xa7\xad\xed\xc6%\ -\x1e\xc0\xbb@[\xd9\xb81\xd0\xd6\xf8\xdc`\x13\xc0\xf6\ -\xc75)|\x97\xbb\xad\xed\xc6%B\x00\xd7:\xdb\xca\ -\xd6\xf5a\xb75\xf8~\xe7\xc3\x00\xbe\x7fm\x0d\xc7\xbd\ -\x9c\xb8\xa7\xb3\xad\xed\xc658Gh\x8b\xf7F\xac\xe0\ -;\x17\x83\x80\x86t\xc31?\x8e\xb7\xd8\xf1\x17\x01M\ -\x19\x03\xff\x93h\x8b\xfd\xef(\xab)\xfb\xdfq]\x1d\ -\xdf;g\xa7\xdd\x07\xe0^\xff\xd6\xb2Ok\x81k+\ -\xf8\xcd\x88\x96\xb6=~\xdb\x03\xe7\x0cM\xd5\x0b\xdf\xf3\ -\xac\xaf\x17\xce\x07\xf1\x9b\x17-i\x8f\xb6\x02\xc7H+\ -\x01\xf6\xfe\xf9\xe6\x82\xcf\x0a\xf1\xdd\x88\xe6\xec#\xc2\xb5\ -(\xf6<\x12\xc7J\x5c\xae\x11\xdeo\xe0\xb8\x0f\xbfm\ -\x83c\xa5{\x99\xbba\x1a|\xcfJ\x0bx\x01\x5c\xe8\ -\x94\x0c\xe07\x8e\xd8rp\xce\xfd\xff\xfe\xed/W\x00\ -\xfbjl\xb3\xf1y.~\x93\xe9$\x80k<\x17\x00\ -t\xe3{(\x1b\x01\x8c3\x10\xc04-\xa1\x0b\xae\xaf\ -\xe3\xb7\xbe\xd8\xd7\x80\xff\x06^\xeb\x82\xf5\x9d\xfd\xed\xbb\ -\xb6\xd6\xe7\xdf\x0a\xd6\xfb\xff\xf7\xb6\x87\x87\x87\x87\x87\x87\ -\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\ -\x87\x87\x87\x87\x87\x87\x87\x87\xe7\x1f\x81\xf0%\x8a\x08\xe1\ -\x97\x82?\xf2\x92\x80\x88\x187!\xf9/\x09k\xdd\x96\ -\xa8\xff\x03;\xbc\xca\x99\ -\x00\x00\x087\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / slice \ -/ not active - s\ -aved\x0d\x0a \ - Created \ -with Sketch.\x0d\x0a <\ -/defs>\x0d\x0a \ -\x0d\x0a \x0d\x0a <\ -path d=\x22M3.11645\ -814,1.98491547 C\ -1.81085731,3.256\ -48192 1,5.033548\ -03 1,7 C1,10.691\ -145 3.85693233,1\ -3.7150177 7.4801\ -6927,13.9809903 \ -C7.55923919,13.9\ -867947 7.5433296\ -9,11.4601372 7.4\ -3244079,6.401017\ -95 C4.76920501,3\ -.70741298 3.3305\ -4412,2.23537882 \ -3.11645814,1.984\ -91547 Z\x22 id=\x22Com\ -bined-Shape\x22>\x0d\x0a \ - \x0d\x0a <\ -path d=\x22M14.9826\ -165,6.50282053 C\ -14.7276121,2.868\ -84654 11.6988335\ -,0 8,0 C6.821531\ -33,0 5.71107957,\ -0.29121506 4.736\ -68211,0.80560781\ - C5.52211072,1.5\ -7704166 8.929157\ -37,4.97484587 10\ -.4514738,6.50452\ -22 C10.82345,6.5\ -0282053 14.72604\ -01,6.5045222 14.\ -9826165,6.502820\ -53 Z\x22 id=\x22Combin\ -ed-Shape\x22>\x0d\x0a <\ -path d=\x22M12.3449\ -55,7.6097276 C12\ -.344955,7.609727\ -6 13.3370708,7.7\ -3374209 14.60803\ -62,8.42756253 C1\ -4.2393452,8.7623\ -7994 12.344955,1\ -0.6534218 12.344\ -955,10.6534218 L\ -12.344955,7.6097\ -276 Z\x22 id=\x22Trian\ -gle-2\x22 transform\ -=\x22translate(13.4\ -76496, 9.131575)\ - rotate(90.00000\ -0) translate(-13\ -.476496, -9.1315\ -75) \x22>\x0d\x0a \ - \x0d\x0a \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x05(\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - Artboard\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a \x0d\ -\x0a \x0d\x0a <\ -/g>\x0d\x0a \x0d\x0a<\ -/svg>\x0d\x0a\ -\x00\x00\x05\x14\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - Artboard\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a <\ -g id=\x22lock_on_No\ -tTransparent\x22 tr\ -ansform=\x22transla\ -te(3.000000, 1.0\ -00000)\x22 fill=\x22#E\ -9E9E9\x22 fill-rule\ -=\x22nonzero\x22>\x0d\x0a \ - \x0d\x0a \x0d\ -\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x07o\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a <\ -title>icon / out\ -liner / visible \ -/ mixed state - \ -hover\x0d\x0a \ - Created\ - with Sketch.\x0d\x0a \x0d\x0a\ - \ -\x0d\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ - \ - \x0d\x0a \ - \ -\x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ -\x0d\x0a\x0d\x0a\ -\x00\x001/\ -\x00\ -\x01\x04 x\x9c\xed=\x07@SW\xd7\xf7%\xec\xa5\ -lpF\x147#\xcc$\xa8\x88\xb8P\xa9\x0a\x8a\xa3\ -\xfaIH\xc2\xd0\x90`\x12\xdc\xab\xcb~\xd5\xd6\x81\xd6\ -]m\xd5\xda\xaa\xd5\xd6Zg\x9d\xe0.8\xab\xb6\xda\ -\xe1\xde\x0a8\x90\x99\xfc\xe7\xbc\xe4a\x8c\x8c\xa0Q\xfb\ -\xf7\xcb\x0d\xe7\xbd;\xce=\xe7\xdcs\xef;\xf7\xdc\xfb\ -\x06\xb1\xb1\xa4-!\xc4\x86x\x115\xb1\x80\x18E\xb4\ -\x076}J\x84\x03\xa5\x17g\xd1q\xc0\xa3\xfc)\xb6\ -.\x1f\x90)+]\x9c\x05\x07g\x86\xce\x90\x06\x94\x8b\ -\x1e\x8e\xbb.\x8e\xb5=\xf4hz2\xf8s\x08\xd5\x80\ -Xj\xe3T\x18\xd5\xb02\xde\x89j\xa4G\xa7\xb5\x1e\ -/.\x1e\x89\x0f\xc4\xbaSAt\xdc\x0d\xe2\xa9T\xdc\ -3|\xd6.\xa7\xe7\x0d\xc3x\ -\x83_!\xbf'\xea\x05\xf4\xa4\xfd\xd9\x95O#\xa4U\ -}\xe6\x1c%\x96'I8\xfdR\xe5*\xb92U\x9e\ -\xc1\x89\x8e\xe6\x04\x05r\xc39\xad\x07\xa5\xc9\xc4\xf2\xb1\ -\xca6\x04\x93\x82\xc0\x10\xf8\xe3p\xb9\x82 \x9e\x80\x1b\ -F:D\x8e\xcb\x10\x8aFIT\x9c$IJ\x9a\xac\ -\xa3O\xfe\xcf{}8i\xe2\x8e>\x83Bc\x03c\ -3\xa2%\xa9i='($\xf1\x13\xde\x19 \x9a0\ -J\xc4\x17\xfbDv\xb2\xeb0N0.=#]\xa2\ -\x12r\xc6\xa5KeJ\xc1\xb8\x8e>B\xe4/\x808\ -f\x07\xf8ph\x14\xd5\xa8\x8e>Z\xc1\x06\xc7\xf6\xe3\ -D\xcb\x15\x12N\xa8\x7f\x98\x9f\x88\x1b\xcc\xe3\x84\xf3\xfd\ -\xb9\xa1|^PH{\x144, \x90\x1f\xc0\x0d\xf1\ -\x0b\xe4\x0a\x02\xf9\x82@.G\x17|:\xd9\xc1\xb1\x83\ -B\x9c,\x88\xeb\xda]\xc7\x0eR\x1d}RU\xaa\x0c\ -A@\xc0\xd8\xb1c\xfd\xc7\x06\xfb\xcb\x15)\x01\x5c>\ -\x9f\x1f\x10\x18\x14\x10\x14\xe4\x07\x18~\xca\xf12\x95p\ -\x9c\x9fL\xd9\x5cK\x84\xa1\xd3U\xa2\x14)\xd22T\ -ir\x19\x07\xd3\xc2$y\xa6\xaa\xa3\x8f\x8f\x1dG/\ -\xe8\xda\x95\x9eQ\xc9H\xa6\xf4\xa7\xdb\xe8/\x92\xa7\x07\ -\x8c\x13f\x04p\xfd\x03\x03\xaa\xaa$\x16U\xd6\xc9\xc8\ -THi\xd1\xc4\xa2\x00\x89T\x92.\x91\xa9\x94P\x8f\ -[e\xbd\x0c\xa6\xef\xaafYY\x5c-c\x9066\ -\xb6fy\xd3\xd3\xab\xac\xa9Tu\x1b\xa3\xaa\xb9\xa6r\ -\xc0\xf8\x0cI@\x9cD)\xcfT\x88$\xdd\xc6@S\ -\x9e\xe9\x15U\x0b\xdc\x05\xd1\x0a\x89P%\xe9\x0a\xd0\x09\ -G\x9b_`\x90_`\xf0\x00n\xa8 0L\x10\x14\ -\xea\x17\xc8\x13\x04\x06v\x080\xc04\xa0\x11+\x17\xa7\ -%\x8f\xd7\xa3\x01\x83\x22d\x003b\xfd\x02\xc3+i\ -\xe8a\x1a\xd2\x801(\x16\xaa\x84FQ\xd1\xc7\xad\xaa\ -=r\xc5\x00\xb9\x5c\xda\xa9\xd6\x0bL\xafa\xba*z\ -\xd4\xc4\x22A\xb2\x5c\x91.TuJK\x17\xa6H\x02\ -Ti\xc9\xc9\x1d\x02\x9e\xe5\xea\xa1Vv\xb4 Z.\ -\x95+\xa0\x95\x92N\xc1\x1d\x02\xaa\xca\xae\xb2VLt\ -t?\x85<9M*\xe9\xa4\x8c\xeb\xd1\x85\x13\xd3-\ -:\x8c\xcb\x0f\x0b\xf3\x0b\xf2\xe7\xea\x93\xd1\xc3\xab\x92N\ -W\xb9(\x13Gl\x94L$QB\x93\x94\x9d\x9e\x1b\ -9\xf4\xb5\xd4E\x98\xf2|.S M\xeb\xa4\xb5\x08\ -b\xb9(M\xfcll\x0b\x84\x22\xa1D\x12\x92\x9c\xec\ -\x07\x22\x05\xfaq\xb9\x92p\xbf$!\x1c$a\x92p\ -a\xa8H\x1c\xc4\xe3\x86t\x08\xd0\x91\xa8\x8e4(\xda\ -_\x0cd\x93\x93C$a\xc1\xbc0?Ir\xb0\xc4\ -\x8f+\x09\x91\xf8%\x85\x8bx~a\xc2\x90PIx\ -pRP\xb8H\x5c51m\xee\xf3\xe2\xeb+\xa7\xa6\ -\xc6w\xa0/4A\x8cL\xa9\x12BqLWZ\x9e\ -4\x90\x87\x1f\x1a,\x11\xf3\xf9\xc9~ S\xb2_R\ -(\xc8#\x0c\x0a\x0c\xf3\x13\x06\x07\x07qy\x81a\x10\ -\x0f\xa1\x87\xc9\xf3\xd5_ \xcdp\x87\xb2\xaa\xb5\x18\x1e\ -\x12\x1c\xce\x0b\xe2\x89Q\x8b!Z-\xf2D!I~\ -\xe2\xb0d\x89(\x5c\x98\xc4\x0b\x16\x051\x8c\xf4\x88\xbd\ -\xc0\xa8\xaf\x22\x0d\xcc\xbeP\xaa\x87S\xa9[Qp\x90\ -$\x9c\xcf\xf3K\x16's\xfdB\xf9!b?~h\ -2\xdfO\x18\x12\xc6\x0d\xe7\x86'\x85\x09\x85\xe1\x0c\x8b\ -*\xc8\xbc\xc0\xaag\x1a\xeaq|\x15\x83(^2\xba\ -\xba\x9e\xa6\x0dt\x86P\xa1\x94\xa0\xf9\xe9\xe8\xc3\xd8\x1f\ -\x9f\x17*`\x1d\xda\x8c\xc1\x08C\xd3\xdeID[\x18\ -\xe8\xfe\xe7r\xab\xaf\x96\xf6bw\x1a\xa7\x82\x17\xaaW\ -\xcfcl\xaaDV\x93e\xd4\xc3\xaa\x9e\x88R\x9e\xac\ -\x1a+TH\xa2R@\xd3\xc6\x98\xa5\xaa\xaa\xbd\xa0\xef\ -Z.\xb9W\xe8\x08\xa5p\xcc\xabuCprxX\ -\x92\x04\xac6O,\x0a\xf2\x13\xf2B\xa0\x07P\x87\xe1\ -\xa1\xdc\xe0\xe0\xf0 a\x08\x97+~\xb5n\x80>\xe0\ -\x0aB\xb8o\xbf\x1b\x9e\x91\x17\xa5\x0ae)\x12q\xa7\ -\x00\xa6\x22\x93\xf1\xff\xa9\xe7\x8c\xb3\x87/\xd7sUN\ -\xe8\xff\x82\x9e\xd3\xe6>o\x13\x19;k`C\xb5\xa8\ -z\xfe\xac\xd6Y\x0e\xd0y\xcb\xe0\xa8\x07Tz\xeaU\ -\x09l\xfa`fbfbfbfbfbfb\ -fbfbfbfbfbfbfbfb\ -fbfbfbfbfbfbfbfb\ -fbfbfbfbfbfbfbfb\ -fbfbfbfbfbfbfbfb\ -fbfbfbfbfbfbfbfb\ -b&v\xcf\xde}\x95\xc8\xc4\x1d}\xc6\xfaDv\x22\ -\x8d\xa8\xa1\x84\xdd\xd0\xb7G\xe5\x99E\xe8Wzy]\ -bb-|\xe9\xf7o\xeb\x1f\x1e\xeey]\xb5E\xf6\ -\xe4\xe2\x1e\xfe\xfc}\xb7\xc7\x0f\xa3\xcb\x04t\xd9u,\ -g\xde`&\xf6\x19\x8a4\x99\xaao\xa6*#S\x05\ -I|\x95\x98\xf4S\xaa\xe2\x93\xe4r)\x8d\x11#S\ -I$\xb2\xcct&\x8e\xe7h\xa9\x02\xd3\xf5\xe8\xba\xf1\ -i\xe3\x10\xa3K\x9a\x0a\xeb<\xa3)Q\xbc#L\x97\ -\x0c\xe86x@%3m\x85~\x0a\xb9<9^\xa2\ -\xca\xcc\xe8\x9b4R\x04\xd9\x0e\xa4\x1fQ\x109\xfc\x92\ -\x09\x87\xc4\x13\x09Q\x91L\x92AW\xb1\xcb\xa8\xc4f\ -\xc8t\x91\xaad:\x89\x1c\x922\xd3\xa4\xaa4\x19M\ -\x12\xd2\xb64vt\xec\x90\xdeZmD >\xcb\xef\ -\xb9\x16\xbb\xe8\xb5\xb8/\xfdF\x82R\xfb\xae3\xb4+\ -C%c\x1a\x01\x8dLRT&\xe2R\x94\xb1\xcfJ\ -\x14\xb2\xe8g\x09\x99\xeaY\xa2O\x92TY\x99x'\ -E5\xa62\xd1-]\xda\xb52\x01z|F\xba\x8b\ -hT\x8aN\x11Z\x01I\x5c\x8f.\xd1D\xfbj9\ -\x89\x13s8byfRg\xf9%\xc2\x84\x1e\x0a\xd9\ -\x0by]\xa4/\xe2uQ\x88\x07\x0c\x94\xa9\xba7\x8f\ -\x93\xaa\x88^\xe8\x22\x15s\xaa\xca\x8fSJUt~\ -\xbfq\xd2\xceq\x95\xd9vc$\x22\x95\x5c\xd1U\xa8\ -\x12V\x8e\x8a~)\xfd\x94\xcc\xa8\xc0\xb8\xee\x1cM+\ -A\x92\xac\xaa\x8a\xfc\x00yF\x95l\xe3ERm~\ -?\x85\xa8\xf3\x90\xca\xec\xfa\x22\x85?\xf0\xeb\xb5\xc7_o\ -9x\xf6\xfa\x93\x84\xe41\xd3\x17\xac\xd9z\xe8\xdc\x8d\ -\xa2\xf0\x1e\x83R\xc6~\xbc\xf0\x9bm\x87\xcf\xdf|\xea\ -LX,\x90\xd6\x82\x96\xc9\xda\xca2\x94\x16\xa1\x19\xd7\ -\xc5\x02$\x18\xed\xe3j\x19\xf4\xde\x5c7\x94`\x7f\xdc\ -\xa9\x82\xe0\x16I\x97\x15\xefgE\xc7\xbb\x8b\x94!\x85\ -\xbeV(\x80u\xcb\xd0\xec\xd3 \xc4*Oq\xb7\x81\ -a*\xc9\x95J\x11\xaa\x97\xa0\xd53\x114\x17\x88\x03\ -\x9b\xe6\xe9L\x22\xc9\x93\x86\xf9\x12\xf7\x85{g\xe5\x1c\ -X\xd7j}\xf1\xc0b\x0d\xd9\xd4w}\xd3S\xe7:\ -\x9c\xb86\xe4\xec\xb9\xbbM\xbc\xf6\xfbw\xb0\x98\xffW\ -\xc5\xc6\xa9\xa7\xa6D\xde\xeb]\xb4CC\xba!\x12\xbb\ -h\xcc\x88\x07S\x9a\x05\xfc\xfe\xfb\xd4\x1d\xc5\x1f\xce_\ -QY\x10p\xe1f\x85\xe7U\xf5\x81z\xda\x92\xbd)\ -\x12\xf5\xcd+.qSu\xd9{G\xadx\ -\x9a\xea\xb2.qj\xef\xef\xafLm\x16\xf3\xce\x02Y\ -|\xea\xc6\x90\x80\xa9\xa7\xd2\xca7\x0e>6\xf6\xc2\xdd\ -\x0d\x99\xb3\x1e\xa8\x9a\xb0\x7f\xe8\x17\xd3k\xe8\xe0P\xe1\ -\xe0\xfd\x8e\x7f&\x96F]P7\xed1\xf2\xfb\xcf>\ -*\xfatl\xc75M\x1a\x93&\x0e\x166[gF\ -l\xba\x1f\x13\x13\xbc\xe8\x9c\xa4\xe3w\xd4\x06g2z\ -_\xe7\xeeO\xaf\xff\x11\xe37\xea\xcfF\xb7\x1c\x1c\xd7\ -\xe6g\xef\x9cn\xbd\x87\xb3\xe8\xe4\xea\xd5~\xcaE\x97\ -n,\xca\xf8\xb5\xfe\xd6\xc0\x87\x87\xa2CO\x1f\xaah\ -\xa6!S\xec\xbd\xdf\x99\xf9E\xec\x86\x1f\xc6\x08f;\ -\xff\xd1bM\xad\x8d9]sc\xfa(R3=\xf9\ -\x1f\xcf\x1a:\xa9\x8b\xcb\x1f\xc7\x0e\xc9\xbaM|gV\ -\x83-\x7fY&\xfd\xfe\xee\x9d\xf1\xa2\x03\xbc\x16\xdfD\ -\xaf\xbe\x10\xb6g\xe3\xa5\x07M\xe7\xac\x1f\xc2\xdbr-\ -\xac\xf1\xaa\x8fOe\x5ck?\xf4\xdedy=\xe1\xc7\ -Nv\xa7\xd7\xaf\x8b\xbb\xd4\xb1\xdf\xe0\x07\xd7F\xba\xc4\ -\xaf\x98\xd2q{\xfe\x85\xc2oR\x9c\xec>_\x9c\xf0\ -{\xe7\xaf\xd5\x97\xce4\xfb\xb3\xf8#e\xaboE\x9d\ -~\xdc\x97#.\xbe\xd5)r\xd7\xe6\xb8\xb8\xb9\xa3\xbf\ -\xcd|\x1a\xfa\xc1\xaca\x93X.\xbf\xef\xdb\xb8\xa0\x9f\ -cW\xde\xcf\xb7#N\xec\xf7\xe5\x8f\x1fqZZc\ -\x93\xce\xd4\xd2?\x17<\xba\x87\x0eq\xbcP\xf8\xed\xe5\ -\x9c93\xb2z\x8d\x96\xef\xdb3\x8f\xbb{\xc5\xae\xbf\ -\xaf\xb8g\x9ej-X\xb2\x5cro\xd4\xecO\xc8\xea\ -o\xa8\xc1\xab\xac\xca\xfe\xcb\xdd\xb4bW\xfe%\x8f\x9f\ -\xd3\xd6N\x1f|\xe8\xa7\xe2i\xac%\xbd\x14\x0f'\x08\ -E\xe1q\xbd/M\x5c2\xbex\xcb\xc0\x95e\xa9S\ -nx\x15\xa6]*Ox\xb8\xf6\xf3i\xbf\x1c/\x9a\ -\xd8\xf4\x8f\xa26m\x8emQ\x7f=kR\xf7\xab\x81\ -?\xed\xd4\x0ak/\xb8a5\xb4\xc8\xa9A\xe2\xa4\x05\ -\xb3{\xa9\x85\x7f\x9fSS\xbe\x91\x9a_\x1f\xcb6\x94\ -\xff9\xd5e\xf3\xe0\xa7\x09\x97\x8a\xbc2.m\xb8\xb8\ -V\x92\xdb~\xaa\xdd\x8a{K4\xe4t\xd3\x1d\xbe\xa1\ -\x9d\xfe^\xa8\x9eS\x91S\x96U6eDi\xf4\xd3\ -z\x0f\x124D\xbc\xb9\xa2YYVE\xd6\x89\xc7\x1f\ -?\x88\x89\xed\xbb\xed\xba\x86\xac\x8e\xccP_\xdb\xa3\xc3\ -\xfd|\xef\xef\xed5\xa4\xe7\x94k{\xb5\x98\xf1\xf1\xf7\ -K\xa6\xde\xae\xf7G\xe4\x8e\x00\x06\xf7\xba\xbc\xa8w$\ -0\x08\xd0a\xce\xff\x95\xa1\xdf\x9b\xc1}W\xcb\xa0\xb7\ -\x16\xd1\x97\x7f\x5c\xb9\xfc\xcaM\xefVq\x09\xdf\xf4j\ -\xfa\xe5\xd8\xa5{\xa7\xf5o\xdcr\xc7\xd9k\x1f)v\ -\xfe\x1e\xcf\xf6j\xf6\x15\xb4\xe7w\xed\xac\xd7\x8c\xb6\xeb\ -\xc3\x09\xed\x9f\xc2\ -i29\x0b\x5c\xcatX\x8f\xe2Wx\x06\x0f\x19\xca\ -\xb1>\x0e.\xa5-x\xb2\xe0<\x09E\xca\x8c\xd8\xf8\ -\xee\x03hW\xab[4\x07?\xd5C\x9e\x0bE\xe7\xb4\ -\xce\xca\x19\xbf\x9e\xfd8\x1cR\xb7\xe0,\xcaP\x80+\ -B\xf5\x83x\xb0X\xa2\x04\xe7\x8d\xfa\x10\xe2\xd2\xb1\xaa\ -\x0c\xccGO\xc0-i\x14\xc6Y\xe8\x03\xb8)@@\ -\x88{a\x83\xa4\xa7\ -\xa8\x1a\x0b\x8d\x0c\xd8\xb7\xda\xd8\xa3\xfet\x9fQ\x1e\xb9\ -\xcf\xf2\xaa\xc2\x93\xaf\x04/\x0c\xd6\x84\xec9\xcf\xf2\x92\ -\x16\x13\xb2\xed#B\xbc.<\xcbk\xf1%\x8cQ\xe8\ -\xb7\xad'\xf4\xda\xe3\x81\xe3E\xef\xf3gi\x12\x91?\ -*\xb42\xd4\x8a`D\xd0\xe3\xe7\x8f\xe4*\xd5\xc3\xe9\ -\xaa\xf5s9\xa87\x11x\xb3\x99\x0a\x0e\xac\xc7E\x12\ -\x8e\x9f\xe1 ~\xe9\x8aU\xcb\xd1>N\x92,\xc1u\ -\xbf\x84\x93\x00\xa3,M\x96\x02\xdd-\x13\xa7\xd1_r\ -K\x93U\xd7\x89/Y\xcd h\xc75\x04\xd7\xd5j\ -\xe26\xc2\x9f\xd4?\xe1F\xd8\xf7s\x89\x85\xab=a\ -\x0f[\x0e%Te\xbf\xf5\xb1M x\xe5\x0djz\ -S;\xee\xe9P\xc5\xa2\x935\x1b\x0f\xca4z\xa9E\ -\xa2\xe3\x06pD\x99\x8a1\xda2zueI\xec\xc0\ -H\xb9\x11o\xd2\x844'\xad\x89\x1f\x18\x9ap\x12A\ -:\x93n\xa4\x17\xe9K\x06\x90!\xe4?D\x04\xc6(\ -\x9d(\xc8X2\x89\xbcG\xa6\x93\x99d\x0e\xf9\x9c,\ -!+\xc8j\xb2\x96l$?\x92md\x17\xd9O\x0e\ -\x91_\xc8Ir\x96\x5c$\x97\xc8ur\x97\x14\x90\x22\ -R\x06\xee\xae5\xe5H\xb9R\xdeTS\xca\x97jG\ -\x05Q<\xaa\x13\xd5\x8d\xeaC\xc5QC\xa8D*\x85\ -\x92Q\x99\xd4$\xea\x03j&\x95E-\xa1\xbe\xa2\xd6\ -R\x9b\xa8\x1d\xd4~\xea(u\x8a\xfa\x9d\xbaL\xdd\xa6\ -\x1eR\xa5,6\xcb\x81\xe5\xc6j\xccj\xc9\x0a`\xf1\ -XQ\xac\xde\xac\x01\xac\xe1\xac\x14\xd6h\xd6\x04\xd6\x87\ -\xacY\xacE\xac\x95\xac\xefX[Y\xfbY\xbf\xb0\xce\ -\xb2.\xb1\xee\xb2\x9e\xb0\x09\xdb\x9e\xed\xc1n\xc6\xf6c\ -\xf3\xd8\xd1\xec\xbe\xec\xa1\xecd\xb6\x82=\x85=\x83\xbd\ -\x80\xbd\x92\xbd\x91\xbd\x93}\x98}\x86}\x89}\x8f]\ -bae\xe1j\xc1\xb1\xf0\xb3\x88\xb0\xe8i1\xd0B\ -d1\xdab\x8a\xc5\xa7\x16K,\xbe\xb5\xd8jq\xc0\ -\xe2\x8c\xc5e\x8b\x02\x0b\xb5\xa5\xa3e#\xcbv\x96\x02\ -\xcb\x18\xcb\xc1\x96)\x96c-\xa7[.\xb0\x5cc\xb9\ -\xc5\xf2\xa0\xe5Y\xcb\xeb\x96EVVV\x1eV\xad\xac\ -\xc2\xadzZ\x0d\xb1\x1ai5\xd1\xeaS\xab/\xac\xbe\ -\xb7\xdagu\xca\xea\xaa\xd5\x13kkko\xebv\xd6\ -\x1d\xad\xfbZ\x0b\xadU\xd6\xd3\xad\x17[\x7fg\xbd\xd7\ -\xfa\xb4\xf5u\xebb\x1b{\x9b\xa66A6\xddm\x86\ -\xda\xc8l\xde\xb7Y`\xb3\xcef\x8f\xcdi\x9b\x9b6\ -e\xb6\xf5m}m\x05\xb6}m\xc5\xb6\xe3mg\xdb\ -\xae\xb6\xddi{\xc2\xf6\xbam\x99\x9d\xb3]+\xbb\x8e\ -v\x03\xecF\xda\xbdg\xb7\xc8n\xa3\xddA\xbb?\xec\ -\x1e\xd9\xdb\xdb\xfb\xd8\xf3\xed\xfb\xdb\xa7\xd9O\xb3_d\ -\xff\x83\xfd\x11\xfb\xcb\xf6%\x0e.\x0em\x1d\xa2\x1d\x86\ -9d:\xccr\xf8\xc6a\x9f\xc3\xef\x0e\x8f\x1c\x1d\x1d\ -[:vv\x1c\xea\xa8r\x9c\xe5\xb8\xd61\xc7\xf1/\ -\xc7b'W'\x7f\xa7\x18'\xb1\xd3T\xa7\xa5N[\ -\x9dN;=\xa8g[\xcf\xb7^T\xbd\xff\xd4\x9bP\ -oA\xbd\xcd\xf5N\xd4\xbbW\xdf\xb6~\xcb\xfa\xd1\xf5\ -\x85\xf5\xa7\xd4_Z\x7fG\xfd\xf3\xf5\x9f8\xbb:s\ -\x9d\xfb:\xa7;\x7f\xea\xbc\xce\xf9\xa8\xf3-\x17k\x97\ -\x96.\xdd\x5c\xc4.\x1f\xba\xacr\xc9q\xb9\xea\xcav\ -m\xee\x1a\xed*r\xfd\xc0u\xb5\xebA\xd7\xebnV\ -n\xad\xdcb\xdcF\xba\xcdt\xdb\xe0v\xdc\xad\xc0\xdd\ -\xc5=\xc4=\xc1}\x9c\xfbR\xf7\xdd\xee\x97<\xd8\x1e\ --=b<\xa4\x1e\xb3=~\xf48\xe7Q\xea\xd9\xd8\ -3\xcaS\xe2\xf9\x89\xe7F\xcf\xd3\x9eO\xbd\x1azu\ -\xf6\x92x\xcd\xf0\xfa\xde\xeb\xacW\xa97\xc7\xbb\x9b\xf7\ -(\xef\xb9\xde\xdb\xbc\xffl`\xd1\xa0m\x83\xfe\x0d\xc6\ -6X\xde\xe0`\x83{\x0d\xdd\x1aF4\x145\x9c\xd1\ -\xf0\xc7\x86\x17\x1a\xb1\x1a\xb5m\x14\xd7hb\xa3U\x8d\ -r\x1b=i\xdc\xa4q\x8f\xc6\x19\x8d\x177\xcei|\ -\xaf\x89G\x93\xceMF6\x99\xdfdO\x93\xdbM]\ -\x9bvj\x9a\xd6t~\xd3\xbdM\xefp\xdc9Q\x1c\ -)g\x11\xe7\x00\xa7\xa0Y\xa3f=\x9be6\xfb\xaa\ -\xd9\xf1fe>\xad|\x06\xfa\xbc\xef\xf3\xbd\xcf\x9f\xcd\ -\xed\x9a\xf3\x9a'7\x9f\xdf<\xbbyA\x8b\xa6-b\ -[Lj\xb1\xbe\xc5\x05_[_\x9eo\xaa\xefB\xdf\ -\xc3\xbeO[\xb6j9\xa8\xe5\xc7-\xb7\xb5\xbc\xd5\xca\ -\xabUL\xab\x09\xad\xd6\xb7\xfa\xa3\xb5c\xeb\xc8\xd6\xa3\ -[\xafl\xfdk\x1b\xab6\xbc6\xa3\xda|\xd1\xe6d\ -[V\xdb\xd0\xb6\xa9m\x97\xb6=\xd1\x8e\xd5.\xac]\ -Z\xbb/\xda\x9djo\xd9\x9e\xdf^\xd6~e\xfb\xf3\ -~\x0e~Q~c\xfc\xd6\xfb]\xf6\xf7\xf0\xef\xe3\xff\ -\xbe\xff6\xff\x07\x01-\x02\x86\x06\xcc\x0d8\x1c\xa0\x0e\ -\x0c\x0d\x94\x06\xae\x0e\xbc\xc8u\xe1\xf6\xe2\xbe\xcf\xdd\xc9\ -}\x18\xd46H\x14\xb44\xe8\xd7`\xc7\xe0\xee\xc1S\ -\x83\xb7\x07\x17\x86\xb4\x0b\x91\x84,\x0f\xf9-\xd454\ -6\xf4\xe3\xd0\xec\xd0\x8a\xb0\xf00E\xd8\xc6\xb0\xdb\xe1\ --\xc2\x13\xc3\x97\x85\x9f\xe7\xb9\xf1\xfa\xf1>\xe5\x1d\xe1\ -[\xf2\xbb\xf0\xa7\xf2w\xf1K\x04a\x02\x95\xe0GA\ -~\x84_\xc4\xa8\x88u\x11\xb7:\xb4\xea \xe9\xb0\xba\ -\xc3\xd5\x8e>\x1d\x85\x1d\xbf\xeax\xa9\x13\xa7Sb\xa7\ -/;]\x8al\x16)\x8c\x5c\x19y\xa5s\xf3\xce\xe2\ -\xcek:\xdf\x8cj\x1352\xea\xbb\xa8\x07]\x02\xbb\ -(\xbal\xe9\xf24Z\x10=9z_Wv\xd7\x1e\ -]gt=\xde\xcd\xa5\xdb\xc0nK\xba\xfd\xd5\xdd\xa7\ -{J\xf7\xf5\xdd\x0bz\x84\xf6\x98\xd8c_O\xcb\x9e\ -\xbd{\xce\xedy>\xa6q\x8c(fmLA\xaf\xf0\ -^\x93{\x1d\xe8\xed\xd0;\xbe\xf7\x92\xdeW\xfa\xb4\xed\ -\xa3\xe8\xb33\x96\x15\xdb+v^\xec\x1f\xef\xf8\xbe#\ -{g[_\xd27\xa6\xef\xbc\xbe\x7f\xf6k\xd5ot\ -\xbf\x9f\xfb[\xf5\xef\xd7\x7fi\xff\x1bq\xdc\xb8Iq\ -\x87\xe3]\xe3G\xc4\xaf\x8b/\x1a\xd0e\xc0\xec\x01\x17\ -\x07\xb6\x1e\x9890;\xa1^\xc2\xb0\x84\xb5\x09O\x07\ -u\x1d\x945\xe8\xd2\xe0\x80\xc1\x93\x07\xff2\xa4\xc1\x90\ -\xb4!\xdb\x87Z\x0fM\x18\xbaf\xe8\x93w\xbb\xbd\xfb\ -\xf9\xbb\xd7\x87\x85\x0e\x9b>\xec\xdc\xf0V\xc3\xc7\x0d?\ -\xfa\x9f\x06\xff\x91\xfeg\xf7\x88z#\x84#6'Z\ -&\x0eJ\x5c\x97X.\xec+\x5c)|\x92\x14\x93\xb4\ -,\xa9@\x14-Z(\xba+\xee,\x9e/\xbe-\xe9\ -(\xc9\x92\xdcL\xee\x98\x9c\x95|+\xa5c\xca\xbc\x94\ -\xdb\xa9\x91\xa9\x0bR\xef\xa5E\xa7-I+\x1c\xd9s\ -\xe4\x8a\x91OG\xf5\x1d\xf5\xcd(\x8dt\x90\xf4\xfbt\ -\x9b\xf4\xc4\xf4\x1d2\x17\xd9(\xd9\x01y\x13\xf98\xf9\ -\xa9\x8cv\x19\xd33.\x8d\x16\x8c\xfe|t\x81\xa2\xb7\ -b\x8d\x92R\x0eWnW\xb9\x813\x95\x9b\xd9:\xf3\ -\xa3\xcc\xcbc:\x8dY:\xa6xl\xc2\xd8\xcd\xe3\x9c\ -\xc7\xc9\xc6\xe5\x8eo;\xfe\x93\xf17't\x9f\xf0\xf5\ -D\x8b\x89\xa2\x89\xd9\x93\x9aMzo\xd2\xe5\xc9Q\x93\ -\xbf\x9aBMI\x9a\x92=\xb5\xf9\xd4\x0f\xa7^\x9f\xd6\ -c\xda\xb7\xef\xd9\xbd7\xea\xbd\xbc\xf7\x03\xdf\xcfz\xff\ -\xf1\x07\x83>\xd8\xf9a\xe3\x0f\xa7}x\xf5\xa3\x1e\x1f\ -\xad\x9f\xee4]1\xfd\xfc\xc7\x11\x1f\xaf\xf8\xaf\xc5\x7f\ -\xd3\xfe{\xfc\x93\xe0O\x16\x7f\xa2\x9e!\x9eqlf\ -\xe0\xcc\x053\xcb?\x15}z\xec3\xeeg\x8b>\xd3\ -\xccJ\x9eu|v\xd8\xec\xe5s\xac\xe6\xc8\xe6\x9c\x9b\ -\x1b9\xf7\xdb,\xe7\xac\x09YW\xe7\xc5\xce\xdb:\x9f\ -3\x7f\xc6\xfc\xc7\x9f\x8f\xf8\xfc\xe8\x82\x90\x05+\x16\xda\ --\xcc\x5cxiQ\x9fE\xdb\x17\xb7XY\xf6\xf4\ -\x0b\xf1\x17\xa7\x97w^\xbeqE\xe3\x153W\x94~\ -\x99\xf6\xe5o_\xf5\xf8j\xeb\xca\x96+\x17\xac\xb2Z\ -5f\xd5\x8d\xd5\x09\xab\x0f\x7f\xcd\xfbz\xed\x9a\x06k\ -f\xae\xa9\xf8F\xf6\xcd\xa5o\xe3\xbe=\xb06|\xed\ -\xdau\x8d\xd6\xcd^\xcfZ\x9f\xb9\xfe\xf6w\xc3\xbe;\ -\xb9\xa1\xeb\x86\xed\x1b\xfd6~\xf5\xbd\xc7\xf73\x7f \ -?d\xfepgS\xe2\xa6s?\xf6\xfe1{3o\ -\xf3\xc6\x9f|\x7fZ\xb6\xc5u\xcb\x8c\xad\xd4\xd6\xf1[\ -\x0b\xb6\xa5n\xbb\xb4}\xc8\xf6S;z\xed\xc8\xde\x19\ -\xb1s\xcb\xcf\xfe?\x7f\xb3\xab\xd9\xae\xa5\xbb\xddw\xcf\ -\xdec\xb7\xe7\xc3=\x9a\xbd\x13\xf6>\xd9\x97\xb1\xef\xde\ -\xfe\x94\xfdW\xb3Gd_\xcc\x19\x9c\xf3\xeb\x81\xfe\x07\ -\x8e\x1f\xec}\xf0\xc8\xa1\xee\x87r\x0eG\x1d\xde{\xa4\ -\xe3\x91]G\x05Gw\x1c\xe3\x1d\xdb\xf6K\xd8/[\ -sCs\xb7\xe4\x85\xe6m9\x1ev|\xeb\x89\xf0\x13\ -\xdbO\xf2O\xee<\xd5\xe1\xd4\x9e\xd3\x91\xa7\xf7\x9f\xe9\ -z\xe6\xd0\xaf1\xbf\xfer\xf6\x9d\xb3\xa7\xce\x0d<\xf7\ -\xdb\xf9a\xe7/\xfd&\xfe\xed\xd6\xef\xd2\xdf\x0b/\x8c\ -\xb9Pvq\xda\x1f\x96\x7f\xcc\xf8\xb3\xfe\x9f\x0b\xfej\ -\xf4\xd7\xca\xbf\xdb\xfc\xfd\xfd\xa5\xb0K\xbb/w\xbd\x9c\ -{%\xfe\xca\xc5\xab\xa2\xabw\xaf)\xaf\x95_\xff\xf0\ -\x86\xe3\x8d\x057\x9b\xde\x5c{+\xe8\xd6\xae\xdb\xddo\ -\x9f\xbc\xf3\xee\x9d\xebw3\xee\x96\xdd\x9b~\xdf\xf9\xfe\ -\xb2\x07\xad\x1f\xfc\x94\xdf9?\xb7`p\xc1\xf5BE\ -\xa1\xe6\xe1\xa7\x8f\xbc\x1f}\xf38\xe4q\xf6\x93~O\ -\xfe*J/*{:\xa3\xd8\xbb\xf8\xdb\x12^\xc9\xe1\ -\xd2A\xa57\xcb\xc6\x96[\x97/\xaahS\xb1S\xdd\ -[\xfd\x87&\xbd\xf2\xfe\x849\x98\x839\x98\xc3?*\ -XXXX:9997h\xd0\xa0Y\x8b\x16-\ -\xfcZ\xb5j\xc5m\xd9\xb2e\x80\x1e\x04\x1a\x82\x01\x0e\ -\x9d\xd6\xe5\xe9\x97c<@\x0f\xf7\x85\xb2*\xea\x06\x18\ -\xe00\x10\xd0\xbau\xeb C>\x06\xf2\x050\xfc\xf4\ -\xf1\xaaJ\xd7\xc4\xcb\x10\xdf\xa0\xbdt=\xd4S\xd3\xa6\ -M[\xb9\xba\xbaz\xc1:\xc4F\xefN\x83\xd1\x01\xeb\ -\xd4\xaf_\xdf\xad{\xf7\xee\x83?\xf9\xe4\x93\xf5\xdf\x7f\ -\xff\xfd\xc5\xdd\xbbw\xdf\xdb\xb7o_\x01\xc2\xfe\xfd\xfb\ -\x0b\xf5\xc10/;;\xfbaU8\x0c^U4\xaa\ -\x02}<\xc3:\x0c=}\x9aU\xe1W\xc7\xab\xba\xba\ -\x8c\xecU\xd5\xc72\xc3|C:{\xf6\xecy\xb0u\ -\xeb\xd6kK\x97.\xcd\x16\x89D\x93|}}\xfd-\ ---\xadj\xd7\xfa\xb3\xe0\xe2\xe2\xe21j\xd4\xa8\xe9\ -@\xeb\xfe\xb1c\xc7*rss5f\xa8;\x1c>\ -|\xb8d\xf1\xe2\xc5{CBB\xa2\x8c\xed\x03\xbcf\ -\x12\x12\x12\xa4999\x8f\xdf\xb6\xfc\xff\x06\xf8\xe5\x97\ -_\xd4\x0b\x17.\xdc\xed\xe3\xe3\xd3\xd6\x18[\xd4\xb8q\ -\xe3\x16k\xd6\xac9\xf9\xb6\xe5\xfe7\xc1\xa1C\x87\x8a\ -\x13\x13\x13\xc7\xc1\xd8\xb6\xaeI\xf7,\x08\x91\x91\x91}\ -\x0f\x1e\xae\x0dj\xd2\xbf\xb5\xb5\ -\xb5\xadJ\xa5\x9ak\x0a\xfd\xff\x93\xfb\x10ec\xe0M\ -\xc9\x8d\xfao\xde\xbcy\xfb\xda\xc6\xbf1\xfa\xc7r\xf0\ -\x91N\xe0\x1ac\xd9\xb2e9x\xfe\xe2\x8b/\x0e`\ -\x9c93q\x04\x98{\xf63y\xfau\xf4\xe3\xfa\xf8\ -L\x19\x93\xaf\x0f\xfayU\xc5\x99z\xfa<\xf5i\x1b\ -\xd23\x04C\xf9\xf5e3\x94\x03a\xc5\x8a\x15\x87q\ -\xedU\x9b\xfeqmf\xcc\xf8W*\x95sj\xd3\xff\ -\x91#GJ;t\xe8\xd0\x1b\xd7\xd8\xb0V\xf3\xc4\xb3\ -!0\xf9\xb8\x96sss\xf3f\xd2\x18G`\xe2\xfa\ -\xb8\xfae\x98\x87\xc0\xd4\xd5\x8fW\xc5O\xaf\x8e\x87>\ -_\xc3:\x0c}&\xce\xd0\xd5/c\xea\x19\xcaj\x18\ -\xc7\xba8\xa6\xb1\x0f\x8c\xd1\x7fm\xe3\x9f\xd1\x7fm\xb4\ -p]\xe7\xe7\xe7\xc7\xab\x89\xd6\xffJpvvvG\ -\xdf\xd2\x18\xfb\x83{\x115\xd12\xd6\xfe\xa3\xfe\xdb\xb7\ -o\x1f\xfe\xa6\xda\xf8O\x0e\xe8\xd3\xa3\x1d\xaaMg\xa6\ -\xb4?\xb8\x9e3\x8f\x7fm0V\xff8\xfeq\x7f\xb4\ -&Z8\xff\x1ak\x7f\xfc\xfd\xfd\xf9L\xbd~\xfd\xfa\ -\x89'L\x98\xb0\xa8\xae\xfb|\xff\x86\x80\xfa\xc7\xb9\xde\ -\x18\xfb_\x9b\xfe\x8d\x1d\xff\xfa\xf6\x07\xfb\x01\xd3\x98\xbf\ -|\xf9\xf2\x838/\xbd\x99\x96\xff3\x82\x93\x93\x93\x8b\ -\xb1\xf6\xdfT\xfe?3\xff6l\xd8\xd0\x07\xe9\xea\x97\ -m\xdb\xb6\xed\xba\xfe\xb5\xf1o\x0f\x8c\xfd\xa9M\xff\xe8\ -\xa3\x9a\xd2\xff\xe4r\xb9\x1d\x7f\xfe\xf9\xe7;\xd5\xcd\x0f\ -qqq\xc9oJ\x07o3\xe8\xfc\x9fZ\xed\x8f\xb1\ -\xe3?333\xcb\x18\xfb\xbfz\xf5\xea\xbc\xda\xf0`\ -NX\x5c\xdb\x9e\xab1\x01\xef\xf1)\x14\x8aY\xe8g\ -\xef\xde\xbd\xfb.\xf6\xaf\xfe\x1e!\xc61\x0f\xef\xd1!\ -\x0e\xee\xa1`\x9dW\xe5kL@\xfd\x1b3\xfe\x8dY\ -\xff\x1ak\x7f\xa0\xbd\xe5\xb5\xf1c\x00\xe7\x04ww\xf7\ -\x06umW\x9b6m\x82\xb3\xb2\xb2\xb6\xe6\xe4\xe4<\ -2\x96\x97!\xe0=\xa4y\xf3\xe6m\x07[\xf9\xda|\ -ec\xedO]\xe6\xdf\xdah\xd5u\x7fZ7'\x08\ -\x8ci\x0f\xfaR\xb8W\xfb\xb2:\xaf\x0e\xb6n\xddz\ -5>>>\xa5v\x09\xea\x16\xea2\xfe\x8d\x9d\x7fk\ -\xa3\x85\xd7\xba\x5c.\x9f\x89\xf3\x80\xb1\xed\xafmNh\ -\xd7\xae](\xea\xc8\xd4z\xaf\xa2\x1f\xae\x99r\xed\xc2\ -\xf8\x9f\xa6\xf4\xff\x8d\xf5\x7fp\x0e\xde\xb9s\xe7\xad\xba\ -\xb4\xdfpN\xb0\xb3\xb3s@\x1b\xf1\xba\xf5n\x08\x9f\ -\x7f\xfe\xf9N\x07\x07\x07\xa7\x9a\xf4aL0v\xfc\x1b\ -\xbb\xfe\xad\xeb\xfe\x83\x87\x87G\xa3\xaf\xbe\xfa\xeah]\ -\xda\xce\xcc\x09B\xa1p<\xb3vx\x1b\x80\xd7\xafX\ -,\x9e\xf4*\xfa\xc7\xf1\x8f\xfb\xa1\xc6\xe8\xdf\x18\xfbo\ -\x8c\xfeQn\xfd\xfd\x1f\xbcn\xa6L\x99\xb2\xbc\x8em\ -\x7fkz7\x04\xf4\x99, \xbc\x8c\xfe\x8d\xf5?\x8d\ -\xf5\xff\xd1\xff|\xd9\xfd\x9f\x84\x84\x84Qu\x99\x13\xfe\ -I\xb0k\xd7\xae\xbb\xde\xde\xdeM_F\xff\xc6\xda\x1f\ -c\xf6?_u\xff\xf9e\xe6\x84\x7f\x0a\xe0\xd8\xe9\xdc\ -\xb9s\xdf\xb7\xad\x7fc\xec\x7fM{\x0c/3'\xfc\ -S\x00\xdb\x9e\x98\x988\xb6.\xfaG\xfbo\x8c\xffS\ -\x9b\xfda\xee?\x1a3\xfek\xdb\xff\xd7\xcd\x09_ \ -~^^\xde[\xd7k]\xc1\xd8>\xa8\xcb\xfe\xbf\xa9\ -\xe6\xdf\xba\xdc\xff\x9a5k\xd6&S\xe9\x04\xd7\xdd\xf8\ -l\x1e\xfa,\x9d:u\x8a\x05\x1f\x0a\xef\x07z\xf2\xf9\ -\xfc\xeeuY\x93\x1b\x0b\xe8\x9f\x19\xa3\x7fc\xf7\x9fM\ -y\xff\xcb\x18\xfd'%%M0\x85\x1e\x8e\x1e=Z\ -\x96\x91\x911\xb3&\x1f\xe5u\xcd\xfb\xd8\x86\x7f\xa2\xfe\ -k\xdbc\xee\xd3\xa7\xcf\x08S\xb4\xff\x9bo\xbe9U\ -\xaf^=\x97\x9a{\xfa\xf5\xe9\x1f\xa1w\xef\xde\xc3k\ -\xd2\xbf\xb1\xfb\xcf\xc6\xe8\xdf\x18\xff\xb36\xfd\xe3\xb5a\ -\xaag\x18\xb7o\xdf~\xc3\x98\xbd\xa3\xd7\xa9\x7flK\ -u{x\xc6\xfa\xff\xc6\xd8\x7f\x9c3\xc7\x8c\x193\xef\ -U\xec\x0f\xf8>\x0da}\xf0\xd4\x94\xedG~qq\ -q5\xee\x9d\xbd\xeeu\x07\xb6\x09\xe7\x9b\xea\xf4o\x8c\ -\xff\xf3\xba\xed?>?\x0d\xbe\xff\xedWmku\xfe\ -\xd2\xc4\x89\x13\x97Tw?\xe1M\xac\xfbv\xec\xd8q\ -\x13\xdb\xa8\xcf\xd7X\xfbo\xac\xff\x89\xf7.\x8c\x19\x8f\ -U\xd9\x9f\x85\x0b\x17\xeez\xdd:X\xbe|\xf9!\xbc\ -\xc6\xde\x86\xfe\x11\xf0\x9e\x84>_\x1c\xff\xf8\x8eKm\ -c\x16\xdfK2\x95\xfd\xc7\xfd\x07C\xfd\x0f\x1c8p\ -\xe4\x9bh?\x02\xce\x09\x01\x01\x01\x11oC\xff\x08\xef\ -\xbc\xf3N\x92\xfe\xf87v\xff\xdfX\xfbS\x1b-C\ -\xfb\x83\xe3\x11}\xc47\xd5~F\x86\xf8\xf8\xf8\xca/\ -\xfe\xbcI\xfd#/\xe6]\x8a\xba\xf8\x9f\xa6\xba\xffn\ -\xa8\xffU\xabV\xe5\x9a\xa2]\xeb\xd6\xad;\x8b6\xb6\ -.u&M\x9a\xb4\x14\xe7\x847\xbd\xef\x07c~\x7f\ -]\xf4o\xec\xfd\xdf\xba>\xff\x83{\x86\xa6zf{\ -\xe8\xd0\xa1\x19x-}\xf9\xe5\x97G\xeaR\x0f\xf7\x8f\ -\xdf\xb4\xfe\xb1\xcd\xb8\xf66v\xff\xcdX\xff\xbf\xae\xf6\ -\x07\xe6\xa3-\xa6j\x93\x8d\x8d\x8d\x1d\xd2\xc4\xf1ZSW\xfdcx\x999\xe1\ -e\x01t4\x87\xe1\xab\xb3?o\xe5\xfd#\xc3\xfa?\ -\xfc\xf0\xc3\xc5Wm\x1b\xfat\xf8\xee\xf4\xcb\xf4\x01\xce\ -\x09x\x7f\xe0u\xea~\xc3\x86\x0d\xe7\xf5y\xe2\xfa\xd7\ -\x18\xfd\xbf\xae\xf5\xaf\x81,.\xa6\xf8v\xd0\xe6\xcd\x9b\ -\xff~\x19\xfdc\xc09\x01\xef\x93\xbd\x0e\xddC\xdb\x9e\ -\x18>3m\xec\xfck\xca\xfd7\x9c\xc3\xaa\xbb\xff\x8b\ -\xf7\xa9M\xf1,\xce\xf4\xe9\xd3\xbf}\xd9>\xc0\x80\xf7\ -\x8bM9'`\x9b\x18\x9b\xaf\x1f\xde\xf6\xfa\xab\xaa\xd0\ -\xbd{\xf7A\xa6\x98\x8f\xf1\xd9\xadW\xe9\x03|n\xc2\ -\x14\xcf\x02`[\xbav\xed:\xb0*\x1eu\xd9\x7f3\ -\xa5\xfek{\xfe\xc7T~\xf6\xbau\xeb\xceT\xf5\xdc\ -Am\x01\xe7\x02\xbc\x9fc\x0a\x19jzG\xc0\xd8\xf5\ -W]\xf6\x9fk\x93\xc7\xd8\xe7\xdf\xc6\x8f\x1f\xbf\xd0D\ -\xd7~\x05\xfa\xf9\xcc\xfd\x81\x9a\x02\xfa\xaf\xb8\xd65\xd5\ -\xf3G\xd8\x86\x9a\xf8\xbd\x8d\xf7_p\xff\xad]\xbbv\ -a\xb5\xe9\x02\x03\xee\xc7\x9bB\x0f\x08(\x17\xae{\xf0\ -\x19\x0d|O\x0f\xdf\x19C\xc08\xe6\xa1\xffe\xca\xfb\ -0@\xab\x02\x9f+\xa8\xa9}\xc6\xbe\xffej\xfbS\ -\x97w\xd8F\x8f\x1e\xfd\xa9\xa9t\xf26\x00\x9f\xe3\xae\ -\xee~B]\xde?5\xe5\xf3'\xc6\x8e\x7f&H\xa5\ -\xd2\x8f\xdf\xb6\x1e_\x05\xf0}\x86\xaa\xee'\x98\xfa\xfb\ -\x1b/\xb3\xff`l\xe8\xd5\xab\xd7\xb07\xfd\x9c\x8a)\ -\x01\xef7\x06\x06\x06v\xd0o\x93\xb1\xcf\x1f\x9ar\xfd\ -\xf5*\xdf\xffi\xd2\xa4IK\xf0\x85Mr\xff\xefm\ -\x00\xae}\xf4\xe7\x84\xba<\xff`\xaa\xf7\xafkZ\x7f\ -\x19\x13\xf0;A\xb8\xd7\xf9\xb6u\xc9\xc0\x86\x0d\x1b~\ -\xdb\xbe}\xfb\xf5\xba\xd4a\xe6\x04S\xde\x7f\xaf\xcb\xf7\ -\x97L\xf1\x0e9\xae\x11\xde\xe6\xfb\x92\xc8;99y\ -\x1a\xca\x82\xef#\xe3{\xc9u\xa9\x8fs\x02\xea\xd4\xd4\ -\xf7\xdf\xdf\x94\xfe1\xfc\x93\xde\x7f\xc7\xf1\x8c\xef\xe7\xd7\ -\x85\x0e>\x7f\x83\xef\x88\x98j\xfc\xbf\xad\xef\xef\xe1\xde\ -\xca\xe6\xcd\x9b/\xbdn\xbd\xe3\xb7=p\xcdP\x93,\ -\xf8\x9d\x0a\x9c\xe3\x8c\xa5Y\xdd\xb7\x5c\xf5\xc1\x94\xfb?\ -U=\xffl\xaa\x80>\x12\xac\xa3\xfe0\xb5\xde7m\ -\xda\xf4gM\xef\x11\x19\x06\xdc;\xc2\xef\xb6\x98\x8a\xbf\ -\xb1\xfa7\xd6\xfe\xd7\xd5\xff\xafk\xe0p8\xad\xf1\x7f\ -\x9f\xbc\x8a\xaf\x84\xcfY\xcd\x981c\x03\xfe\xef\x83\x97\ -\x91\xe1e\xe6\x84\xea\x00\xfd\x1fS~\x7f\xf5M~\xff\ -\xb3a\xc3\x86\xcdp\xaeF\x9b\x8d\xdf\xa8\xc1o2\xa1\ -\x0c\xb8\xc7\x83\x80\xf1\xec\xec\xecGX\x8680\xa7N\ -\xc5:\xa6\xe0\x8d\xbe\x1a~\xdb\xd1\x14\xe3\xdf\x94\xdf?\ -\xfc_\xfb\xfeg\xff\xfe\xfd%\xd5\xcd\x09\xf8\xecXm\ -\xfa\x7f\x9b\xfb?\xff\x96\x80s\x9e\xe1\x9c\x80\xef\xbb\x19\ -\xf3\xad\x857\xf1\xfe\xdd\xffB\xc0\xef\x9b2s\x02\xea\ -A \x10\xc4\x98\xf2\xfd\x17S}\xff\xe1\xdf\x1c\x989\ -\x01\xf7\xbdM\xfd\xfc\x95)\xbe\x7f\xf2\xbf\x14\xea\xb2\xff\ -f\xaa\xef\x9f\xbc\xea\xfe\xcf\xbf)\xd4\xe5\xfd\xf7\xd7\xf5\ -\xfc\xe1\xffrx[\xef?\x9a\xf5\xaf\x0duy\xff\xcb\ -T\xfe'\xda\x1f\x9c{\xf0\x99?\x5c\xa7\xeb\x01\x9f\x01\ -\xb4OxF\x1c\x1d\x1e\x9f\xc1\xc32\xfd<\xecK\xbd\ -\xfa\x02\xbd2\xbe\x1e\x0f\x86\xa6>?\x9a\x16\x02\xd2\xd0\ -\xaf\xa7\x0f\xfa4\x18y\xf4h\xf1u\xfc\xf9\xfeU\xb7\ -E\xc0\xb4\xa5*\xf9#\x22\x22z\xe1\xff\xc2y\x93\xfe\ -\x0f\xd3\x07x\x1d\xe8\x03\xaeO\x0c\xe3x\xd6\x8f\x1b\xd6\ -\xd1\xa7SU\x9d\xaah\xd7\xc4\xab&\x9eU\xd15\x86\ -6\xcah\xd8^}Z\xc6\xdc\xf37\xe5\xfd/3\xd4\ -\x1dL\xb9\xffl\x86\xba\x03\xee\x05\x1ac\x7fF\x8f\x1e\ -\xfd\xd9\xdb\x96\xf5\xdf\x08\xb8Oa\xc4\xff\x1f\xb4NJ\ -J\x9ah\x1e\xff\xa6\x07|\x16\xb2\xb6\xef\xbb\xb2\xd9l\ -\x0b|\xce\xd4\xfc\xffgM\x0b\xb8G\xfe\xfe\xfb\xef\xaf\ -rpp\xa8W\x93\xfe\xf1\xff3\xe3\xff\x8e\xff\xff\xfa\ -\xed\xd4\x7f*\xe0\xfb\xfbQQQ\xfdY,\x16\xbb&\ -\xfd3s@\xaf^\xbd\x86\x9b\xe2;bf\xd0\xfa=\ -\xf8\x8c\x05>\xa7R\x9b\xee\x99\x80\xffS)666\ -\x11\xbf\xeb\x83\xcf\xcf\xeb\xff\xbfP\xc3\xff\x1djL>\ -\x93\xae.\xbf&\x9c\xea\xca\xf4\xf3\x0c\xf3\x0d\xa1\xaa\xb2\ -\x9ahT\xc5\xdfXY\x11\xd0\xde\x1c8p\xe0\xc9\xd7\ -_\x7f}\xeb\xac_\xce\xc4\ -qO\x83I\xe3\xd90\x8d\x80u\xf5\xe2\xf3\xf5\xeb\xeb\ -\x83a=\xa4e(\x0f\x93\xc7\xc8d\x98\xa7_G_\ -\x16}Y\xf5A\x9f\x86a9\x961\xf9X_&\x93\ -\xcd\xc0\xef\xe6\xe2<\x8a\xfe\x0e>_\x83\xfa\xac\x8b\xfe\ -\xf5\xfb\x01\xff'9\xf6\x05\xd2\xb1\xb5\xb5\xb5\xc7xU\ -\x80v\xab\xba2c\x00\xeb\xbf*\x8d\x97\x95\xc5T|\ -\x19\xc0u\x14\xfa2/\xabws0\x07s0\x877\ -\x14\xd8_R\x04\xfdR\x0a~\xe4K\x16\xb1\xa0\xe3\x84\ -$~\xc9~\x16\xd7\xa2F\x89\xe5I\x12N\xbfT\xb9\ -J\xaeL\x95gp\xba\xcaE\x99\xe9\x12\x99\x8a\xd3U\ -\xa8\x12r\xbaH\xe5\xa2Q\x84\xd7%&6v\x80B\ -\x86\xf8\x18\xef#\x1c\xaf \xa4A\x02M\x87\xad\x03|\ -\x0em\x18\xb1\xd0h\x08q\xa0\xdfi\xb0\x88\xc2r8\ -\xb2\xf0\x88\xf5drE\xba\x86\xd8\xa0\x00\xcc\x13\xf7\xad\ -\x09\xc1\x1a\xb5\x83u|\xaa0C\xc2\xe1\x22\x1di\xa6\ -\x0c\xbf>\x83_\x8b\xb4&\xf1$\x95\x08I\x06\x91\x10\ -\x0e\xe1j\xe5\x93\xca\x94\x0a\x14@\x09U\xe8\xf4\xf84\ -1\xa6\x01\xbc1-\x92&I1M\xe9\xda\x93&K\ -\x1e\xa7+\xa7\xd3\xa3d\xa3\xe4\xfai\xa92#\xf9\xb9\ -\xb4H\x8a\xf4m\x18uc\x9e25\x1dy\xf4\xc4\xc6\ -\xd1<2\x95*]q\x08@}\x9d\xd6\xa1V\xbaD\ -%\x14\x83ru9\xb6R\xe1x\x89b@Z\xbaD\ -,\xcfL\x8a:\xc7+\xc9\x90\xf4\xb8B\xd3L\x1e\xa7\ -\xc8\xd0\xd5}>P\xd0\xea\xbe\xa4\x1eq v\xc4V\ -\xf7s'1\xa47q\x01\xad\xb8\x11O\xe2M\x1a\x00\ -\xb4&\xcdA+\xcd\xe1\xe7\x03\xe7\xc6\xa4\x11i\x02\xd0\ -\x92\xf8\x92\x16pl\x05\xd0\x02\xca\x9a\xd1\x18\x1c\xc0n\ -\x039\xdac\x0b\xc0\xc1Z\xbe4vK\xfa\xd7\x16\xea\ -6\xd2QiF\xff\x1aC\xac9p\xf3\x02p\x07\xbe\ -.\xc4\x15~\xb1\xa4\x0f-\x91\x0d\x80\x1d\xfc\x1c =\ -\x88p*\x88\x85\xa5s3?\xae:\xa0<\xd0\x8b\x1b\ -\x10\x10\xc8\xe5\x06\x06r\x03\x03\xb8\x01\xf4\x09\x93pP\ -\x07\xda\x05\x04a\x09\xe4\x06\x04\xa8\xb9$P\xcd\xb5\x0c\ -\xd4\x15\xa9\xb9\x9a@\x1b\xc0\x0f\xf0k\xe5eC\xa9\x89\ -\x86XSn\x83\xd7_\xbcWPPQH\x0a\xd4\x85\ -\xe4aE\xa1\xa6\x80*,(.d\x17\x14\x16B\x8e\ -\xba\xc0\xba\xb0\x00\xa3\x85\x05\xe5P\xd4\x10\x13\x0f1U\ -X\xf8\x10\x8f\x90,xp-{\x92\xbf\x15\x8c2\xc2\ -\xf6\x98~\xbfb\xb3\xc6\xa2do\x94\x15\x8cj\x1b\xe9\ -\xe3\x1f4l\xf5\xee\xb6\x14\x8b\xb48\xb9Q\xc3*\x1e\ -g\xcdb\xf5-\xda\xa0\xa1\xf6\xb9\xb1,\x15\x15\x10\xb9\ -\xdc\x9ce3]\x0d\x91\xfb\xedX6\xb31\x92\xef\xc7\ -\xb2\x9d\xab.\xd4\x10\xf5E\x8dZ]\x01\xe7{\x90\xd9\ -\x9ee3W]\xaa\xf1T\x9f\xc8\xce\xc9>\x90s \ -'\xe7\xc0\x81\xfd99\x90\x80?\x88\xab\xb3+r\xec\ -\xb21\x83\xce\xdb\xaf\xce\xd1\x1c(\xc9\xb1B<(\x86\ -T6u\xb8\xb0DC\x15\x00\xf59@\x88]\xda\xdb\ -\xcb\xb3\xdc\xcb\xc3\xd3\xcb\xc3\xdb\xd3\xcb\xdb\xdb\xcb\xdb\x8b\ ->yzz\xe3_\x99\x97\xb3\xa7\x07\x14A\x19\x94x\ -y{\x22B\x85\xb7\x0d\x8d\xe9\xed\xd9\xfe0\x92jO\ -\xd9\xce\x81s\x09o\x1f\xa1\xdc\xf7A,\xdf\x1fE/\ -\x85\xac\xf0}\x84\xe5\x96\x8dQ\x86!U\xcc\xab\xcc\xcb\ -\x0f\xa0l\xa0\xa6U\x09\x9f\x10\xf1\x22\xab\x83\x84r\xdb\ -\x8f\x04\x03\xb4\xa8\xd6%\xe1\x84_\xa29\xe8}\x88P\ -.4]?-]v\x09\xcf'_\xad\xa1\xae\xf3\x0f\ -C\x95l()\xd4Qg\x95v\xbcS\x0e<\x92\x8f\ -\x80(\xfb\xe9*\x94m\x16\x0a\x97\x07\x87\xc5\xd6\x85\xc4\ -\x91;\xeb\xf0\xdd\xe2\x0a\x8d\xa6\xa2\xf8\xde\xe1\xd9\xdc[\ -\x80\x87\x04@\xb14iR\xfeTC\x1dl\xf0\x84\xb0\ -\x82\xb7>z\xa4a=\xde\x1e~W\xc7\xa3 \x80n\ -'\xa9(\x02\xce\x82bB\x89/\xdf\xd7PWS\xee\ -3$\x80\xd5\xdc\x12\xe8\xdd\x99\xa5OQ\x842B\x85\ -^\xbd\xad\xa1\xae\xf1\xf2\xa1\xc1\xfb\xb5\x0df\xd9\xcc\xd1\ -6\xa0\xe3\xad\x22\x8d\xe5bk0s\xdb\xafk\xa8\x9d\ -N\x85:*\x05\xba6Z@\xe3\x1b\x1d-\xd2\xb0\x0f\ -6\x18_rUC\x95Nz\x08r\xe4\xe8\xd4\x83\x18\ -\x96\xa5\xe1`\x07\x96\x17iH\xc9\xdf\x1a\xea\xb0\xc5c\ -]\x93Q\x17YZMW\x10jT\xe9\xaf\x1a\xean\ -\xd3'\x0cy\x7f\xa6\xb3\xca\x09\xd5\xf1\x16\x94\x95\xf6-\ -\xaa,\xd3uQ\x09\x1fdot\x14\x0a\xd5c\x9f\x12\ -\x96{\x0e-\xbb\x1fe3\x17k\x86\x97\x12\xca\xe6\x8b\ -3\x1a2\xb6\xb8\xb2s\x03\x98\x0e\xe7\x15\x13\xb2)_\ -c]~rR\xac\xb7g\xf7\xf2\xfb\x1a2\xbe\x84\xe9\ -\xd7\xcaa\xc1+!dB\x81\x86U6\xd3\xa2\x8c\x90\ -\xd2{\x1a2\xa1\xf4\x05$~)!#\x0a4\xd4)\ -\x17\xc0.\xbd\xab!\xc3\xcb\x98\xde\xf6\xd7\xb5\x90\x16\x94\ -W\x01H7\x04Z$\xaa\x22\xbc\x5c\xa7\x07\x10\xcaf\ -\x9e\x96\x1dd5|\xfa\x00b)@\xb3\xf4\x8e\x86z\ -\xea]\x01\xed\xd2\xf6\xc93\xa9@]\xac\xdb@c\x89\ -u9\xa0A\xd7\xddd\xa9uba\xebgc\xeb\xf9\ -\x15\x84\xec\x82\xa2C\x0d!RzKC\xb6\xaa\x81\xd2\ -^$\xf0\x80\x11\xab\x98\xaf&d\xe4M\x90*\x02\x22\ -\xa575\x16I0\xcf\xd0c\xc4\x9f\x1e#\x96%<\ -B\x1a\x96\xdd\x80^N\xd5\x22\x94\x82\xc1\xdd\xafw]\ -Z F.4\xec\xec\xcd\x22\x0dk\xa9u\xe9\x0d\x0d\ -{\xbf\x16\x05\x87\xea\x1c\xdd\x08i\xaa\x06-f4<\ -\x02C\xf20\xa2\xa8=\xdd\xb5\x0a\xa2\xd9\xc00#[\ -\xf25l;b\xbd\x0c\x86\x89\xfa\xba\x86\xf5\x03=\x84\ -\x18\x05\xb2\xe1\xca\xbbS\xa0!\xa5\xd0\xf24\x1c\xb5e\ -\xf3Jz\x92\x12\xa0y\xcb5[\xaf3\xd8\xc0\x0ar\ -I!(2\x02\x04\xa2\x96ZC\xbf=(\x80\x02w\ -\xed\x00\xd0!\xb2\x80c\xbe\x86\xdc\x82n\xd1\x0a\xd5\x10\ -4y#_\xa3S\x22C\xae\x98G\xca\x80\xdcC\xe8\ -t\xeb\xa5E\xa8'Pf\x01\x0e\x08\xddE\xfb\x8c\xed\ -}\x14\x0f.\xb6\xd4\x12\x10\xaf4\x0d\xf4\x09\x82\xb0\xef\ -i\xc7]a\xa5|\x05\xe9\x0e\x03\xdb#\x93\xf35,n\xa5hY\ -:\xa5\x92+\xc0\xf3X\x91V6R\x0a\xec.\x90\xca\ -\x8b\x87\xe9\xbdH0\xcdT\xb9\xc3\x13\x94\x0c\xfaO\x1d\ -L\xb4\xa2kQ\xe0*\x01I\x17\x03\x9d5\x8fQ\xa4\ -[\x1a\x8b90\x04\xf4\x8d\x18=\xde\xc8E\xa0R\xe6\ -\x018\x0d\x0f\xdd\xd1\x90\xf30\xdc\x5c\xf7=w\x15\x84\ -C\xd7\xb8\x14\xc14\xf0\xf7#\x10h\x09\xcc\x01O\x9c\ -\x98A\xa9\xebf\xaa\x14\x07x8LL\xe4[0\x12\ -)%\xa0\xef\xf2\xe0\x8aJ\x0bXI\x0aze\x10\xce\ -(\x9b\x00K\xf0\x148\xab\x07BEW}\xb3\xa3\xbd\ -\xec&\xc3\xc0;\xe3\x0dmkx\x16\x9a0\xa9\x0cF\ -\xb8N\xdf:k\x8a\x17\xf0B\xe8\xaf\x8a\xa5v%\x84\ -\xe5\xb0\x0c.A\xb2\xb0\xd4\xc0\x84Q\xc5a`\x0d\xe6\ -\xe5kl\xd5\x17f\x8bCC\xc5\xb3/\xaaA\xb4\x8a\ -\x91\xa5\x8c=|\xc6\x95\xf7\x94\x90OOk\xa8/\xe0\ -\xd2\xd3\x99\xdb\xca\xab)\xac\x88\x90\x8f\xa1\xec(\x5cr\ -\xcc\x0c\xa1\xd32\x0fd\x1cVvFC\xdd\xea\xa0f\ -.\xe8J\xdd\x15\xf3@\xaf-\x1f\x9c\x01K9\x92h\ -{\xb0\xd0\x8f\xd1\x18h\xd3\xea\x18\xd8\xcd\xdf\xae\x83\x8d\ -\xfd\xc2Z7\xdc\xe9\xf9\x08\xc8\x825\x9e\x5cz\x15.\ -\xcbi\xa4\xc1A@8\xea\xaf\x1b\xe6\x0c\xdf\x02B\xe9\ -\x0c7t\x86\xf5b\x18LwNi\x85\xb6\xd1)\xfb\ -\x01\xa1\x82/\x81\xa1\xb8\x1c\x0azI.~\xaa\xd1h\ -\xad(#\x1c\xff\x1e\x88\xfe\x07\xcc \x7f\x0e\x87\xf1(\ -\xb8\x9e\xaf\x9dAh\xfeaw\x08\xab\xf5\xfa\x070\xff\ -<\xd8\xd0\x16\x1a\xd1\xe0 tH!3\xcf\x86\xdf$\ -\x8e\xcd&\xef\xbc\xfa\xa8\xa4\xa2\xa2\xe4\xd1\xd5\x9dS\x9b\ -\x814V\x8b\x0a\xe9\xf9Eg\xc1y0gJ\x8a\xcb\ -\xe1\x1a{\xaesy0\xc7\xf2\xaf\xc3\xd4y\xfb\xe8s\ -\xf34\xef\x00\xb1\xf4>\xa8)\x89\xd1\xda f\x0c\xe7\ -\x10\x0b\xabE\xe2\xca\x0bD79\xec\xab\xd4\xb4nJ\ -(\xa5g\xfe\xfd\xfa\x9d\x863?\xf5\x9cE\xd3e\xe5\ -\xe8f(\xdaZ\x94\x8a#\xd4\x025\xdf\x9d\xc7\x8f\x88\ -\xe0\x0b\x04<8\x84\x0b\xf8\x82\x08>?B\xc0\xe7U\ -\x084<*<\xa2\x9co\x0b\xa9\x88\x08\x9e\x80\x1f\xce\ -W\x0b4|[\x01O\x8b\xdc\xeb\x04#m1\xda\xb0\ -\x12\x9b\xe2\x92\x92\xe2\x92b\xf8\xab(\xb1*\xd5\xc6\xd5\ -%\x04\xc0I[B\x97A\x0c\xca1\xd7\x12\xe3\xa5\xa5\ -\xea\x12M1U\xa2\xae\xbc\xec60\xfd\x08\x91\x07@\ -\xfd\xb3\xef@_\xedX\xd6\x131\xe3lS\x96\xc5\xc0\ -\x22p\xe2*V\xd5cQ\xad\x8eB\xecf\x7f6\x9b\ -\xd8\x0e\xbf\x0dN^\xc14W\xf4\xff\x5c\x12s\x9f\x96\ -\x81cY\x0e\xa0V\xb34j8Z\x02@\xa4Bm\ -G'\xe1\x00\xc7r<\x80\xf5\xc0T\x19\x80\x86F.\ -W[U<9.\xf5D_\xd2\x86\xb2\xf3O\x9c\xbe\ -`aV\x96z\xae&\xcbu^V\xd6\xdc\xac\xac9\ -s\xb3\xe6\x22\xcc\x9d7w\xee\xfc\xb9\xe5Y\x96\x18\x9f\ -\x03\x18\xf5\xe6de\xcd\x83X\xd6\x1c\x1a!kN\xc5\ -\x5c6\xa4\xe7\xa8\xe7\xda\xcf\x9b3'k\xc6\xf8\x81\xed\ -\x1c`\xb9\x00N4ei\xe7`_\x06\x8e\xffC;\ -\x8dm\x01\x9c\x8b\x00\x1e\xd8\xb1l,\xa8\x0a\x5c\x1a\xb0\ -j\xf8Y\x81;nE\xff\x9caY\xe1\x00?'p\ -\xd3\xb51\x078\xbb@\xbe\x1b}\xf6\x00p\x82%\x86\ -=\x1c\x9d\xe8\x85\x86\x03}\xb4\xa1q\xb4\xcb\x0cw\xfa\ -\xecI\x83\x16\xc3\x11~\x0et\x0d\xfc\xb9\xeax=\xfb\ -U#\xd7\xb7\xb9\xd5\xff\x1e\xe7\xee\xd7<\x81#\xf4G\ -\xeeA\x88\xe5\xe7\x1e\x82\xe3\x83\xdc\xc3p\xbc\x9f{\x04\ -\x8ews\x0b\x09;/77\xaf8\x97\xe4\xdd\x22O\ -r\xef\xe4\x82\x17x\x04-\x92\xe3\x15:\x8d\x92\xe3\ -\x05t\xd7B\xcb\xf2\xca+5_\x00\x95N?\x01\xf5\ -\xe6W*\x1f\xe6\xcf\xbc\xfb\xa0~r\x12QKu\xfd\ -H\xf2\xee\xe6jNh\xe8\xc6Py\xba\xbe\x83\xe91\ -\xefd\xae\x96\xdaSr\x22W\xcb\xab\x88\xce\xd5J\x02\ -\xf3[n\xde)\x9d\xfaa&\xb8\x81\x03*\xef\x16$\ -\x1e\x02\xd6%h\xfeM\x88\x17\xea\x06\xa0\x9a`I>\ -\xc8\x0a=x\xa2\x14\x9a\xf48\xf7>\xcd\x1a\x07\xd8]\ -H\xdd%j\x1c\xd0\xa0\x82{\x90\xbaE,N\xe0\x90\ -/\x05\x91N\x14\x90\xfb\x90uX\x93\x0f\xc7C\x9a\x02\ -8\x1e\xd4\x14\xc2\xf1\x80\xe6a\xe5\xe5cx\xac\xeer\ -3\x1b\x10\xb3\x011\x1b\x10\xb3\x011\x1b\x10\xb3\x011\ -\x1b\x10\xb3\x01y\x0b\x06D{\x8f)V9\x8a\x10\xb8\ -\x84\xe9\xfb?t\x08\x9a\xa6\xbb\xd7\xd2O\xa8R1\xf7\ -]\xbak\xf1\x1c\xf4\xf1\xf0\xf0\x7f\xa8-\xb6Q\ -\x00\x00\x09t\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - Sky Icon\ - / System / View\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\ -\x0a \ - \x0d\x0a\ - \ - \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ - \ - \x0d\x0a \ - <\ -/polygon>\x0d\x0a \ - \x0d\ -\x0a \x0d\x0a \x0d\ -\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x14\xc4\ -I\ -I*\x00b\x07\x00\x00\x80?\xe0@\x08$\x16\x0d\x07\ -\x84BaP\xb8d6\x1d\x0f\x88DbQ8\xa4V\ --\x17\x8cFcQ\xb8\xe4v\x0b\x02\x7f\xc7\xa4R9\ -$\x96M'\x94JeR\xb8\xa4\x82Y/\x98Lf\ -S9\xa4\xd6a.\x9bNgS\xb9\xe4\xf6}#\x9c\ -O\xe8T:%\x16\x8d/\xa0\xd1\xe9T\xbae6\x9d\ -\x1f\x81\xd3\xeaU:\xa5V\x91Q\xabVkU\xba\xe4\ -B\x93]\xb0XlU*\xfd\x8e\xcdg\xb4N\xec\xb6\ -\x9be\xb6\xdd&\xb5\xdb\xeeW;\xa4J\xe3u\xbc^\ -o7{\xd5\xf6\xfdi\xbe_\xf0X:\xde\x07\x09\x87\ -\xc4Sp\xd8\x9cf6\x7f\x8b\xc7drS<\x86O\ --\x97\x93\xe5s\x19\xbc\xe4k5\x9d\xd0hk\xd5\x8d\ -\x16\x97M-\xd2Q\x00:\xbb\xf4\x805\x05\x1d\xc1F\ -PQ\x8c\x14;\x05\x08\xee!.\xf8+\xc2\x0a\xe3\x82\ -\xb3\xe0\xac\xe8+\x13V\x01s_s\xf9MM\x0f\x8f\ -l\x90\x06\xe0\xa5\xc8)B\x0a7\x82\x80f\xd2\x18#\ -.\x0a\xaf\x82\xa9x\xfc\x0bG.e\xe6\x98\xf3\xeb\xb2\ -\x01\xc4\x14\xe1\x05)\xc1@\x95g\xe7~\x0a\x90\xe3\xb1\ -\xbd|\xda\x17\xa2`\xf5,\x88\x13n\x82\x11\xa8(\xaa\ -\xbd\x15\xa8(\xe4\xe3\x9cJ\x9b\xfc\xab\xbb\x8a4\x00\xa2\ -\xa4\x002\x0a9\xa0\xa3\xda\x0a\x05\xb1\x07\xb2\x0aB\xa0\ -\xa4k\x8e|\xa8\xf0zY\x13%p\x9a|\x90\x08\xc8\ -)&\x82\x84\xcd\x11\xb6\x82\x8d\xce9p\xa1\xc5\x09T\ -r\x94\xc5Na\xfe\x01 \xa4\x1a\x0a=4\xe8y\x11\ -\x0c\xb8\xe7\xf2s\x1d\xa5\x12bO\x1e\xc4\xe8\x10 \x82\ -\x94\xc8(\x93\x22\xa2\xd1\xba\x08,\xb8\xed\xf3\xce\xfe1\ -\xf3\x02}(3(\x10T\x82\x96\x08(K,#\xa6\ -\xe3\xaa\xe3\x9a\xb0\x82\x95'$\xd3\x22D\x90\x08o\xb2\ -\x08\x06\xcd\x899\xe8\x82\x8a.9x\x94\xce\x89-\x0a\ -\x92N\xcc\xf2\x04\x22\xa0\xa5\x8a\x0a\x04\xcf\xa9\x81\xf0\x82\ -\x89\xce9wCLI\xed\x0e\x91\xd1(\xacYF\xa0\ -\xa0B\xa4\xe4\xa0\x85b\x0a[\xa0\xa7\x0a\x0ar#\xe8\ -+^\x82\x17\xa8(8\xaeRh \x9e\xe3\x97H\xf5\ -7;\xd3)\xe5:\xd1\x9f\xe2<\xd1P\xa9\x87\x02\x0a\ -:;\xf2J,\x90M\xc8 F\xb1V\xa0\x00\xa0\xe3\ -\x974T#\x0aW\xa9\xdd~\x85\xa4\x01\xaa\x0a`\xd1\ -\xeaa\x18\x82\x8f\xce9\xef] Vh\x01g\xac\xf0\ -\xf2\x08\x1f\xb8\xe6e\x97l\xa7U\xda=m\xa0\xc9\x00\ -<\x82\x99((0\xa3IH \xd8\xe3\x92\xf4%\xd2\ -\x82\xdd\x8ba\xce\xeb\xbck\xb5\xe9%\xe1\xe9\xb5\xb6\x90\ -\x01\xc8)\x8a\x82\x85\x8a`\xc8\xe3\x93\xb0\x85\xd5\x84\xad\ -\xe6\x92\x0a\x1e8\xe7\x9a\x1d{#\xb9B9;$\x0e\ -\xd2\x08Y\xa0\xa2Z\x98P8\xe3\x0c}\x8f\xafE\x94\ -\xde\xd5\xda\xf7\xce\x22\x9a\xe5H\xdeX\x81\x0f\x92\x0d\x8a\ -\x82\x85W6o\x840C\xbb\x8eE!Z\x0d\xac\xa5\ -EI\x00z\x82\x97\xe8(\x06\xa6\x0c\xae99\x88\x1f\ -\xf9\xc2\xfe\xfa\xa0\x99#W~\xaa\x19\xecq\x9f\xa6\x8e\ -~(\x82\xe4H >\xa6UH J\xe3\x9f{\x06\ -\xc4\xc2Fh `\xe3\x9e\xda\x923\xc1#\x1br\x05\ -\x02\xa0\x83\x92\xa4D\xb8\xe3\xc55\x83\xd9\xccq\x02\xe3\ -\x90\x1c\x22/\xcb#2\x9a\x08\xf2\x00\x00b\xa4 8\ -\xf7\x02yfi\x8ckx\x82_h$\xfe\xa3s\x08\ -\xc0\xec\x82\x91*\x95\xce\x82\x01\xfb\xc7\x1f\xb0\xf4\xac\x97\ -\x14\x82\x11\xf1.\xd8\x9b\x16\xa8(\x94\xa9\x1b\xae8I\ -\xb5\x9f\xe1\x12\x0a\x02\xa5\x99\x86\xec\xa9y\xc0\x00\x9d\xdf\ -mJ)\xb3\x18*F+\x8e\x1e0i\x06\xb2\x82\x08\ -\x0a\x91\xb0\x82\x85>\xa2\x9bw\x00\x14\x82\x9eZ8\xe2\ -o\xba\x81<\x08#\xac\xa7\xfd\x10\xe7Y\xdf\xa6\xa6\xfa\ -\x0a\x10*F3\x8elL\x11 \x18D\x15\xab\x94\xf1\ -\xbc\xeeJ#\xad\x22\xea\x5c\x82\x04B\xa47\x8e; \ -9D\x08m&\xa2\xa4\xb5H H|\xc51#\x90\ -@\xeeT\x96\x8b\xb55c\xe8\xba\x92\x07\x98A\x12\xf0\ -\x00\x01EHB\x10P\xfb\x06\xca[s \x83u\xad\ -\x15 \x86q\xc5\xf4% O\x84\x82=\xf2\x9d\x09\x08\ - ! \xaa\x91l=R~\xe1\x87\xf8\xa9 \xa1X\ -\xa9\x10\x04`\x06\x06u\x00A\xa0\xf0\x88L*\x17\x0c\ -\x86\xc3\xa1\xf1\x08\x88\x01\xff\x14D\xc1\xce\xd1(\xccj\ -7\x09O@\xc0&8\xa3\xfe9$\x92\xc2$Ri\ -Lr?\x13\x8a\x08\xa0\xed\x0886U4\x8d8\xe0\ -\xe2H\xfb\xeak<\x9e\xc2\xa4@h;r\x0e\x1d\x9f\ -Q\xa1N\xf88\xb6>\xe5\x94Q\xe8\xf4\xea|\xfaY\ -'\x8a\x17\xa0\xea\x1a\x95j\x0ci\x8f\xa6+v\x08\xcc\ -\x88\xd1\x07K\xd8i\xe5x\xfa\xaa\xab#\xb3\xca\xaa6\ -\xe9-R\x17\x22O\xc1\xcc\x17\x19\xa3\x8a\x0e*\x8f\xbd\ -o6\x19\x102\x0e\xd6\xa2`%)\xa8\xf9\x9e\x19p\ -\xc3\xd8\xa2\x98\xe9\x5c\x0e\x1b\x22\x04A\xd8\xd0q\x8eF\ -H\xa5\x8f\x973t\xf9\x12\x9a\x0eY\xd0F\xd9\x90q\ -\xe4}\xf3\x8c\xc8i\xa28\xdd|2\xe7\x0e\x91\x07 \ -\xec\x988ke\x125\xc7\xd2\xdb\xc8\xe4\x88\xdb\x07I\ -pb\x0eH8\xe2\x99\x10\xd8\xf1\xe0\xfc\xeex\x03i\ -\xb0\x8a\x0c \xec8>\x0f\xa5'\x83\x9d#\xe8\xee\xe4\ -&E\x05\x83E\xa0\xc0\x1f\x14\x1d\xe7\xa9\x8f\xb4\xa3]\ -\x1e\x7f\xc7\x8f\xd4\xf8E\x090u\x94\x1c\x09\xea\x85Y\ -\x90a\xdd\x1f{\x18\xe4\x88\x0eA\xc8\xb4\x1cf\x7fP\ -\x93\xf1\x07\x13\x11\xf2\xe5%|\xdc\x18M\xbc}RD\ -\x89\x9fA\x8a\x04\x1c\x03\x82\xd0\x83\xa1\x07\x1e\x10r\x99\ -\x1f>\xd3\xe5\x01\x07\x16\xd0r\x1d\x07\x05\xe1\xf4\x1c\xfd\ -]\xd1\xf2\x914\x85[(\xdd\xaf\x85\xd2\x94\x88XA\ -\xca7\xee0B\x8f\x04\x1c\xb0A\xcb\x84\x1c\xe1A\xdc\ -\x94)\xb7A\x81\xf4\x1cHA\xc5\x04\x1c\x10\x90\x90\x98\ -\xc9\x06\x17\x11\xf2\xa2(k\xa0\xb8\xe5\xa6\x8e\xd3T\x88\ -T\x89\x10p\x16W\x9a\x97\x985\x06\x16Q\xf2\xb1R\ -\x98Z\x09\xcd\x9b\x98\xe5\xe3\xfeTA\x8at\x1d\x96\x9a\ -\xe7\xf4\xf4\xf8i\x11\xf9\x19`\x9dY\x1a\x1d\x8e\x9d\xda\ -\x14P3A\xca\xe4\x1c\x1e\xa0)4i{A\x854\ -}\xa8\x5ch\x96\x1e\x9c`(\xb5m\x22\x05\x10yu\ -\x06\x10\xe9J\xa1\x08/\xd0u\xa5\x03:\xe8\x89}\xfd\ -\xa7\x97\x9a\x81gH\xa1\xe4\x18\x88w\xaa\x99\xa9\xe1A\ -\x87d~Y\x9d+\x17\xaa\xb3\x5ckZ\xc0\xff~\x10\ -bE\x07\x09k\xc6\x99CA\x86\xf4|\xb6x\xace\ -\xba\xd8Y\xec\x86\x9a)A\x87$\x1c{v\xad\x05\x1d\ -\x7fA\x88d\x1c\x8dj\xe1\xfbi\x81\xb1\x1e+q\xd2\ -H\x81\xb4\x1c\x8aA\xc5\xab\x91&\xa9@\x01\xd5\x1f\x93\ -'\xfb\xb6\x86\xbb\xdd\xcb\xc60H\x83$\x1cnA\xe3\ -\xe4\x18\x07\xaaZ\xc4\x19k\xb3\x11\xf36\xf9KV\xd9\ -\x83\x03t\xb0ZM\x22\x05j\xc9M\x07\x0f\xe4\x16\x82\ -m\x00\x0c)\x15\x07*Q\xf3\xab\x16kq\x8a\xcb\x1a\ -s\xf1\xcc\xb9\x06H\xa5d\x188fs\xb4\x19EA\ -\xb3\x80\x00\x11B\xe4D\x19IA\x93t\x191A\x8c\ -\xf4\x1c\xc8G\xf4l\xd5\xf6\xcc,\x5c\xcbQ\xd5\xb5}\ -a\xbc\xc0u\x9ds]\xd7\xb5-\x7fa\xd8\xb64\xf7\ -[\xd96}\xa3.\xd9\xb6\x9d\xb3m\xa06\xbd\xbbq\ -\xdc\xb5MOs\xdd\xb7{Cp\xde7\xbd\xf2\xd9\xd5\ -w\xde\x03\x81\xd6\xb7\xfe\x0b\x85\xe1\x97\x9d\xeb\x87\xe2\xb8\ -\xb6\xd7\x84\xe38\xfeA&\xe2y\x1eS\x86\xe4\xf9^\ -c}\xe5\xf9\x9esv\xe6\xf9\xde\x83m\xe7\xfa\x1e\x93\ -d\xe8\xfa^\xa3^\xe9\xfa\x9e\xb3W\xea\xfa\xde\xc3\x16\ -\xeb\xfb\x1e\xd2\xa9\xec\xfb^\xe3\x00\xe3\xbb\x9e\xf3d@\ -@\x13\x00\xfe\x00\x04\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\ -\x01\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x01\x01\x04\x00\x01\ -\x00\x00\x00`\x00\x00\x00\x02\x01\x03\x00\x04\x00\x00\x00L\ -\x08\x00\x00\x03\x01\x03\x00\x01\x00\x00\x00\x05\x00\x00\x00\x06\ -\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x00\x11\x01\x04\x00\x01\ -\x00\x00\x00\x08\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\x00\x04\ -\x00\x00\x00\x16\x01\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x17\ -\x01\x04\x00\x01\x00\x00\x00Z\x07\x00\x00\x1a\x01\x05\x00\x01\ -\x00\x00\x00T\x08\x00\x00\x1b\x01\x05\x00\x01\x00\x00\x00\x5c\ -\x08\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00(\ -\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\x00\x10\ -\x00\x00\x00d\x08\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\ -\x00\x00\x00R\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x00S\ -\x01\x03\x00\x04\x00\x00\x00t\x08\x00\x00s\x87\x07\x00H\ -\x0c\x00\x00|\x08\x00\x00\x00\x00\x00\x00\x08\x00\x08\x00\x08\ -\x00\x08\x00\x802\x02\x00\xe8\x03\x00\x00\x802\x02\x00\xe8\ -\x03\x00\x00paint.net 4.0\ -.9\x00\x01\x00\x01\x00\x01\x00\x01\x00\x00\x00\x0cHL\ -ino\x02\x10\x00\x00mntrRGB X\ -YZ \x07\xce\x00\x02\x00\x09\x00\x06\x001\x00\x00a\ -cspMSFT\x00\x00\x00\x00IEC s\ -RGB\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\xf6\xd6\x00\x01\x00\x00\x00\x00\xd3-HP \x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11c\ -prt\x00\x00\x01P\x00\x00\x003desc\x00\ -\x00\x01\x84\x00\x00\x00lwtpt\x00\x00\x01\xf0\x00\ -\x00\x00\x14bkpt\x00\x00\x02\x04\x00\x00\x00\x14r\ -XYZ\x00\x00\x02\x18\x00\x00\x00\x14gXYZ\x00\ -\x00\x02,\x00\x00\x00\x14bXYZ\x00\x00\x02@\x00\ -\x00\x00\x14dmnd\x00\x00\x02T\x00\x00\x00pd\ -mdd\x00\x00\x02\xc4\x00\x00\x00\x88vued\x00\ -\x00\x03L\x00\x00\x00\x86view\x00\x00\x03\xd4\x00\ -\x00\x00$lumi\x00\x00\x03\xf8\x00\x00\x00\x14m\ -eas\x00\x00\x04\x0c\x00\x00\x00$tech\x00\ -\x00\x040\x00\x00\x00\x0crTRC\x00\x00\x04<\x00\ -\x00\x08\x0cgTRC\x00\x00\x04<\x00\x00\x08\x0cb\ -TRC\x00\x00\x04<\x00\x00\x08\x0ctext\x00\ -\x00\x00\x00Copyright (c)\ - 1998 Hewlett-Pa\ -ckard Company\x00\x00d\ -esc\x00\x00\x00\x00\x00\x00\x00\x12sRGB \ -IEC61966-2.1\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x12sRGB IEC\ -61966-2.1\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ \x00\ -\x00\x00\x00\x00\x00\xf3Q\x00\x01\x00\x00\x00\x01\x16\xccX\ -YZ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00XYZ \x00\x00\x00\x00\x00\x00o\xa2\x00\ -\x008\xf5\x00\x00\x03\x90XYZ \x00\x00\x00\x00\x00\ -\x00b\x99\x00\x00\xb7\x85\x00\x00\x18\xdaXYZ \x00\ -\x00\x00\x00\x00\x00$\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcfd\ -esc\x00\x00\x00\x00\x00\x00\x00\x16IEC h\ -ttp://www.iec.ch\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16IEC \ -http://www.iec.c\ -h\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00d\ -esc\x00\x00\x00\x00\x00\x00\x00.IEC 6\ -1966-2.1 Default\ - RGB colour spac\ -e - sRGB\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00.IEC 61966-2.\ -1 Default RGB co\ -lour space - sRG\ -B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00desc\x00\x00\x00\x00\x00\ -\x00\x00,Reference Vie\ -wing Condition i\ -n IEC61966-2.1\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00,Refere\ -nce Viewing Cond\ -ition in IEC6196\ -6-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00v\ -iew\x00\x00\x00\x00\x00\x13\xa4\xfe\x00\x14_.\x00\ -\x10\xcf\x14\x00\x03\xed\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\ -\x00\x00\x01XYZ \x00\x00\x00\x00\x00L\x09V\x00\ -P\x00\x00\x00W\x1f\xe7meas\x00\x00\x00\x00\x00\ -\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x8f\x00\x00\x00\x02sig \x00\ -\x00\x00\x00CRT curv\x00\x00\x00\x00\x00\ -\x00\x04\x00\x00\x00\x00\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\ -\x1e\x00#\x00(\x00-\x002\x007\x00;\x00@\x00\ -E\x00J\x00O\x00T\x00Y\x00^\x00c\x00h\x00\ -m\x00r\x00w\x00|\x00\x81\x00\x86\x00\x8b\x00\x90\x00\ -\x95\x00\x9a\x00\x9f\x00\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\ -\xbc\x00\xc1\x00\xc6\x00\xcb\x00\xd0\x00\xd5\x00\xdb\x00\xe0\x00\ -\xe5\x00\xeb\x00\xf0\x00\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\ -\x13\x01\x19\x01\x1f\x01%\x01+\x012\x018\x01>\x01\ -E\x01L\x01R\x01Y\x01`\x01g\x01n\x01u\x01\ -|\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\ -\xb9\x01\xc1\x01\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\ -\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02&\x02/\x028\x02\ -A\x02K\x02T\x02]\x02g\x02q\x02z\x02\x84\x02\ -\x8e\x02\x98\x02\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\ -\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\x16\x03!\x03-\x03\ -8\x03C\x03O\x03Z\x03f\x03r\x03~\x03\x8a\x03\ -\x96\x03\xa2\x03\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\ -\xf9\x04\x06\x04\x13\x04 \x04-\x04;\x04H\x04U\x04\ -c\x04q\x04~\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\ -\xd3\x04\xe1\x04\xf0\x04\xfe\x05\x0d\x05\x1c\x05+\x05:\x05\ -I\x05X\x05g\x05w\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\ -\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\x16\x06'\x067\x06\ -H\x06Y\x06j\x06{\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\ -\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07+\x07=\x07O\x07\ -a\x07t\x07\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\ -\xf8\x08\x0b\x08\x1f\x082\x08F\x08Z\x08n\x08\x82\x08\ -\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09%\x09\ -:\x09O\x09d\x09y\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\ -\xe5\x09\xfb\x0a\x11\x0a'\x0a=\x0aT\x0aj\x0a\x81\x0a\ -\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b9\x0b\ -Q\x0bi\x0b\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\ -\x12\x0c*\x0cC\x0c\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\xc0\x0c\ -\xd9\x0c\xf3\x0d\x0d\x0d&\x0d@\x0dZ\x0dt\x0d\x8e\x0d\ -\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e.\x0eI\x0ed\x0e\ -\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f%\x0fA\x0f\ -^\x0fz\x0f\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10&\x10\ -C\x10a\x10~\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x11\ -1\x11O\x11m\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12\ -&\x12E\x12d\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13\ -#\x13C\x13c\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14\ -'\x14I\x14j\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x15\ -4\x15V\x15x\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16&\x16\ -I\x16l\x16\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17A\x17\ -e\x17\x89\x17\xae\x17\xd2\x17\xf7\x18\x1b\x18@\x18e\x18\ -\x8a\x18\xaf\x18\xd5\x18\xfa\x19 \x19E\x19k\x19\x91\x19\ -\xb7\x19\xdd\x1a\x04\x1a*\x1aQ\x1aw\x1a\x9e\x1a\xc5\x1a\ -\xec\x1b\x14\x1b;\x1bc\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c\ -*\x1cR\x1c{\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1dG\x1d\ -p\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e@\x1ej\x1e\x94\x1e\ -\xbe\x1e\xe9\x1f\x13\x1f>\x1fi\x1f\x94\x1f\xbf\x1f\xea \ -\x15 A l \x98 \xc4 \xf0!\x1c!H!\ -u!\xa1!\xce!\xfb\x22'\x22U\x22\x82\x22\xaf\x22\ -\xdd#\x0a#8#f#\x94#\xc2#\xf0$\x1f$\ -M$|$\xab$\xda%\x09%8%h%\x97%\ -\xc7%\xf7&'&W&\x87&\xb7&\xe8'\x18'\ -I'z'\xab'\xdc(\x0d(?(q(\xa2(\ -\xd4)\x06)8)k)\x9d)\xd0*\x02*5*\ -h*\x9b*\xcf+\x02+6+i+\x9d+\xd1,\ -\x05,9,n,\xa2,\xd7-\x0c-A-v-\ -\xab-\xe1.\x16.L.\x82.\xb7.\xee/$/\ -Z/\x91/\xc7/\xfe050l0\xa40\xdb1\ -\x121J1\x821\xba1\xf22*2c2\x9b2\ -\xd43\x0d3F3\x7f3\xb83\xf14+4e4\ -\x9e4\xd85\x135M5\x875\xc25\xfd676\ -r6\xae6\xe97$7`7\x9c7\xd78\x148\ -P8\x8c8\xc89\x059B9\x7f9\xbc9\xf9:\ -6:t:\xb2:\xef;-;k;\xaa;\xe8<\ -'\ - >`>\xa0>\xe0?!?a?\xa2?\xe2@\ -#@d@\xa6@\xe7A)AjA\xacA\xeeB\ -0BrB\xb5B\xf7C:C}C\xc0D\x03D\ -GD\x8aD\xceE\x12EUE\x9aE\xdeF\x22F\ -gF\xabF\xf0G5G{G\xc0H\x05HKH\ -\x91H\xd7I\x1dIcI\xa9I\xf0J7J}J\ -\xc4K\x0cKSK\x9aK\xe2L*LrL\xbaM\ -\x02MJM\x93M\xdcN%NnN\xb7O\x00O\ -IO\x93O\xddP'PqP\xbbQ\x06QPQ\ -\x9bQ\xe6R1R|R\xc7S\x13S_S\xaaS\ -\xf6TBT\x8fT\xdbU(UuU\xc2V\x0fV\ -\x5cV\xa9V\xf7WDW\x92W\xe0X/X}X\ -\xcbY\x1aYiY\xb8Z\x07ZVZ\xa6Z\xf5[\ -E[\x95[\xe5\x5c5\x5c\x86\x5c\xd6]']x]\ -\xc9^\x1a^l^\xbd_\x0f_a_\xb3`\x05`\ -W`\xaa`\xfcaOa\xa2a\xf5bIb\x9cb\ -\xf0cCc\x97c\xebd@d\x94d\xe9e=e\ -\x92e\xe7f=f\x92f\xe8g=g\x93g\xe9h\ -?h\x96h\xeciCi\x9ai\xf1jHj\x9fj\ -\xf7kOk\xa7k\xfflWl\xafm\x08m`m\ -\xb9n\x12nkn\xc4o\x1eoxo\xd1p+p\ -\x86p\xe0q:q\x95q\xf0rKr\xa6s\x01s\ -]s\xb8t\x14tpt\xccu(u\x85u\xe1v\ ->v\x9bv\xf8wVw\xb3x\x11xnx\xccy\ -*y\x89y\xe7zFz\xa5{\x04{c{\xc2|\ -!|\x81|\xe1}A}\xa1~\x01~b~\xc2\x7f\ -#\x7f\x84\x7f\xe5\x80G\x80\xa8\x81\x0a\x81k\x81\xcd\x82\ -0\x82\x92\x82\xf4\x83W\x83\xba\x84\x1d\x84\x80\x84\xe3\x85\ -G\x85\xab\x86\x0e\x86r\x86\xd7\x87;\x87\x9f\x88\x04\x88\ -i\x88\xce\x893\x89\x99\x89\xfe\x8ad\x8a\xca\x8b0\x8b\ -\x96\x8b\xfc\x8cc\x8c\xca\x8d1\x8d\x98\x8d\xff\x8ef\x8e\ -\xce\x8f6\x8f\x9e\x90\x06\x90n\x90\xd6\x91?\x91\xa8\x92\ -\x11\x92z\x92\xe3\x93M\x93\xb6\x94 \x94\x8a\x94\xf4\x95\ -_\x95\xc9\x964\x96\x9f\x97\x0a\x97u\x97\xe0\x98L\x98\ -\xb8\x99$\x99\x90\x99\xfc\x9ah\x9a\xd5\x9bB\x9b\xaf\x9c\ -\x1c\x9c\x89\x9c\xf7\x9dd\x9d\xd2\x9e@\x9e\xae\x9f\x1d\x9f\ -\x8b\x9f\xfa\xa0i\xa0\xd8\xa1G\xa1\xb6\xa2&\xa2\x96\xa3\ -\x06\xa3v\xa3\xe6\xa4V\xa4\xc7\xa58\xa5\xa9\xa6\x1a\xa6\ -\x8b\xa6\xfd\xa7n\xa7\xe0\xa8R\xa8\xc4\xa97\xa9\xa9\xaa\ -\x1c\xaa\x8f\xab\x02\xabu\xab\xe9\xac\x5c\xac\xd0\xadD\xad\ -\xb8\xae-\xae\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0u\xb0\xea\xb1\ -`\xb1\xd6\xb2K\xb2\xc2\xb38\xb3\xae\xb4%\xb4\x9c\xb5\ -\x13\xb5\x8a\xb6\x01\xb6y\xb6\xf0\xb7h\xb7\xe0\xb8Y\xb8\ -\xd1\xb9J\xb9\xc2\xba;\xba\xb5\xbb.\xbb\xa7\xbc!\xbc\ -\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\x84\xbe\xff\xbfz\xbf\xf5\xc0\ -p\xc0\xec\xc1g\xc1\xe3\xc2_\xc2\xdb\xc3X\xc3\xd4\xc4\ -Q\xc4\xce\xc5K\xc5\xc8\xc6F\xc6\xc3\xc7A\xc7\xbf\xc8\ -=\xc8\xbc\xc9:\xc9\xb9\xca8\xca\xb7\xcb6\xcb\xb6\xcc\ -5\xcc\xb5\xcd5\xcd\xb5\xce6\xce\xb6\xcf7\xcf\xb8\xd0\ -9\xd0\xba\xd1<\xd1\xbe\xd2?\xd2\xc1\xd3D\xd3\xc6\xd4\ -I\xd4\xcb\xd5N\xd5\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\xe0\xd8\ -d\xd8\xe8\xd9l\xd9\xf1\xdav\xda\xfb\xdb\x80\xdc\x05\xdc\ -\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf)\xdf\xaf\xe06\xe0\ -\xbd\xe1D\xe1\xcc\xe2S\xe2\xdb\xe3c\xe3\xeb\xe4s\xe4\ -\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe82\xe8\xbc\xe9\ -F\xe9\xd0\xea[\xea\xe5\xebp\xeb\xfb\xec\x86\xed\x11\xed\ -\x9c\xee(\xee\xb4\xef@\xef\xcc\xf0X\xf0\xe5\xf1r\xf1\ -\xff\xf2\x8c\xf3\x19\xf3\xa7\xf44\xf4\xc2\xf5P\xf5\xde\xf6\ -m\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf98\xf9\xc7\xfaW\xfa\ -\xe7\xfbw\xfc\x07\xfc\x98\xfd)\xfd\xba\xfeK\xfe\xdc\xff\ -m\xff\xff\ -\x00\x00\x08A\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - icon / o\ -utliner / slice \ -/ not active - s\ -aved copy\x0d\x0a Cre\ -ated with Sketch\ -.\x0d\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a\ - \x0d\x0a \ - \x0d\x0a \ - \ -\x0d\x0a \ - \x0d\x0a\ - \x0d\x0a \ - \x0d\x0a\x0d\x0a\ -\ -\x00\x00\x09\xa3\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - Artboard\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a\ - \ -\x0d\x0a \ -\x0d\x0a \ -\x0d\x0a \x0d\x0a\ - \x0d\x0a\ -\x0d\x0a\ -\x00\x00\x02\xb6\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a \ - Icons / \ -System / Carat /\ - White / Default\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a <\ -polygon id=\x22Tria\ -ngle\x22 fill=\x22#FFF\ -FFF\x22 transform=\x22\ -translate(8.0000\ -00, 8.000000) sc\ -ale(1, -1) rotat\ -e(90.000000) tra\ -nslate(-8.000000\ -, -8.000000) \x22 p\ -oints=\x228 6 12 10\ - 4 10\x22>\x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x8e\x0c\ -I\ -I*\x00\x08\x00\x00\x00\x19\x00\xfe\x00\x04\x00\x01\x00\x00\ -\x00\x00\x00\x00\x00\x00\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x01\x01\x03\x00\x01\x00\x00\x00`\x00\x00\x00\x02\x01\x03\ -\x00\x04\x00\x00\x00:\x01\x00\x00\x03\x01\x03\x00\x01\x00\x00\ -\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ -\x00\x11\x01\x04\x00\x01\x00\x00\x00`V\x00\x00\x12\x01\x03\ -\x00\x01\x00\x00\x00\x01\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\ -\x00\x04\x00\x00\x00\x16\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x17\x01\x04\x00\x01\x00\x00\x00\xd9\x15\x00\x00\x1a\x01\x05\ -\x00\x01\x00\x00\x00B\x01\x00\x00\x1b\x01\x05\x00\x01\x00\x00\ -\x00J\x01\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\ -\x00(\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\ -\x00\x22\x00\x00\x00R\x01\x00\x002\x01\x02\x00\x14\x00\x00\ -\x00t\x01\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ -\x00R\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00\xbc\x02\x01\ -\x00\x1a;\x00\x00\x88\x01\x00\x00\xbb\x83\x07\x00\x0f\x00\x00\ -\x00\xa2<\x00\x00I\x86\x01\x00f\x0d\x00\x00\xb2<\x00\ -\x00i\x87\x04\x00\x01\x00\x00\x00\x0a\x0a \x0a\ - \x0a \ - Adobe Photosho\ -p CC 2015.5 (Win\ -dows)\x0a \ - 2017-03-07T11:3\ -2:29-08:00\x0a \ - 2017-04-04T\ -11:28-07:00\x0a \ - 2017-04-\ -04T11:28-07:00\x0a image/tiff\ -\x0a \ - 3\x0a sRGB IEC61966-\ -2.1\x0a \ - \x0a \x0a \ - a\ -dobe:docid:photo\ -shop:94a27cdb-04\ -33-11e7-b02d-9f8\ -4d9f5a326\x0a \ - adobe:\ -docid:photoshop:\ -acaee4ff-1960-11\ -e7-bae7-e6e7a5cd\ -2814\x0a \ - \x0a \x0a \ - xmp.iid:\ -fa5f33a4-5729-d3\ -41-9ab8-5edce3a2\ -68a4\x0a \ - adobe:docid:p\ -hotoshop:696e80e\ -4-1964-11e7-8c4b\ --d6fec7ab83c2\ -\x0a xmp.did:ca77\ -1a70-f965-e14f-9\ -103-360465543dbf\ -\x0a \ - \x0a \ - \x0a \ - \x0a \ - crea\ -ted\x0a \ - xmp.iid:c\ -a771a70-f965-e14\ -f-9103-360465543\ -dbf\x0a \ - 2017-03-07T\ -11:32:29-08:00\x0a \ - Adobe Photosh\ -op CC 2015.5 (Wi\ -ndows)\x0a \ - \x0a \ - \x0a \ - saved\x0a \ - \ -xmp.iid:16fdf09c\ --857d-944e-9783-\ -e127cb1b9cf4\x0a\ - \ - 20\ -17-03-08T11:37:4\ -5-08:00\x0a \ - Adob\ -e Photoshop CC 2\ -015.5 (Windows)<\ -/stEvt:softwareA\ -gent>\x0a \ - /\x0a \ - \x0a \ - \x0a \ - saved\x0a \ - xmp.\ -iid:fa5f33a4-572\ -9-d341-9ab8-5edc\ -e3a268a4\x0a \ - 2017-0\ -4-04T11:28-07:00\ -\x0a \ - \ -Adobe Photo\ -shop CC 2017 (Wi\ -ndows)\x0a \ - <\ -stEvt:changed>/<\ -/stEvt:changed>\x0a\ - <\ -/rdf:li>\x0a \ - \x0a\ - \x0a \ -\x0a \ -\x0a\x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a\ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \x0a \ - \ - \ - \ - \ - \ - \ -\x0a \ - \x0a\x1c\x01Z\x00\x03\x1b%G\x1c\x02\x00\x00\x02\x00\x00\ -\x008BIM\x04%\x00\x00\x00\x00\x00\x10\xcd\xcf\xfa\ -}\xa8\xc7\xbe\x09\x05pv\xae\xaf\x05\xc3N8BI\ -M\x04:\x00\x00\x00\x00\x00\xe5\x00\x00\x00\x10\x00\x00\x00\ -\x01\x00\x00\x00\x00\x00\x0bprintOutp\ -ut\x00\x00\x00\x05\x00\x00\x00\x00PstSbo\ -ol\x01\x00\x00\x00\x00Inteenum\x00\ -\x00\x00\x00Inte\x00\x00\x00\x00Clrm\x00\ -\x00\x00\x0fprintSixteenB\ -itbool\x00\x00\x00\x00\x0bprint\ -erNameTEXT\x00\x00\x00\x01\x00\x00\ -\x00\x00\x00\x0fprintProofSe\ -tupObjc\x00\x00\x00\x0c\x00P\x00r\x00\ -o\x00o\x00f\x00 \x00S\x00e\x00t\x00u\x00\ -p\x00\x00\x00\x00\x00\x0aproofSetu\ -p\x00\x00\x00\x01\x00\x00\x00\x00Bltnenu\ -m\x00\x00\x00\x0cbuiltinProo\ -f\x00\x00\x00\x09proofCMYK\x008\ -BIM\x04;\x00\x00\x00\x00\x02-\x00\x00\x00\x10\x00\ -\x00\x00\x01\x00\x00\x00\x00\x00\x12printOu\ -tputOptions\x00\x00\x00\x17\x00\ -\x00\x00\x00Cptnbool\x00\x00\x00\x00\x00\ -Clbrbool\x00\x00\x00\x00\x00Rgs\ -Mbool\x00\x00\x00\x00\x00CrnCbo\ -ol\x00\x00\x00\x00\x00CntCbool\x00\ -\x00\x00\x00\x00Lblsbool\x00\x00\x00\x00\ -\x00Ngtvbool\x00\x00\x00\x00\x00Em\ -lDbool\x00\x00\x00\x00\x00Intrb\ -ool\x00\x00\x00\x00\x00BckgObjc\ -\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00RGBC\x00\x00\ -\x00\x03\x00\x00\x00\x00Rd doub@o\ -\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00Grn do\ -ub@o\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00Bl\ - doub@o\xe0\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00BrdTUntF#Rlt\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Bld Un\ -tF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00RsltUntF#Pxl@b\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0avector\ -Databool\x01\x00\x00\x00\x00PgP\ -senum\x00\x00\x00\x00PgPs\x00\x00\x00\ -\x00PgPC\x00\x00\x00\x00LeftUnt\ -F#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00Top UntF#Rlt\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00Scl Unt\ -F#Prc@Y\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x10cropWhenPrintin\ -gbool\x00\x00\x00\x00\x0ecropRe\ -ctBottomlong\x00\x00\x00\x00\ -\x00\x00\x00\x0ccropRectLeft\ -long\x00\x00\x00\x00\x00\x00\x00\x0dcrop\ -RectRightlong\x00\x00\x00\ -\x00\x00\x00\x00\x0bcropRectTop\ -long\x00\x00\x00\x00\x008BIM\x03\xed\x00\ -\x00\x00\x00\x00\x10\x00\x90\x00\x00\x00\x01\x00\x01\x00\x90\x00\ -\x00\x00\x01\x00\x018BIM\x04&\x00\x00\x00\x00\x00\ -\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00?\x80\x00\x008\ -BIM\x03\xee\x00\x00\x00\x00\x00\x0d\x0cTran\ -sparency\x008BIM\x04\x15\x00\ -\x00\x00\x00\x00\x1e\x00\x00\x00\x0d\x00T\x00r\x00a\x00\ -n\x00s\x00p\x00a\x00r\x00e\x00n\x00c\x00\ -y\x00\x008BIM\x045\x00\x00\x00\x00\x00\x11\x00\ -\x00\x00\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00d\x01\ -\x008BIM\x04\x1d\x00\x00\x00\x00\x00\x04\x00\x00\x00\ -\x008BIM\x03\xf2\x00\x00\x00\x00\x00\x0a\x00\x00\xff\ -\xff\xff\xff\xff\xff\x00\x008BIM\x04\x0d\x00\x00\x00\ -\x00\x00\x04\x00\x00\x00\x1e8BIM\x04\x19\x00\x00\x00\ -\x00\x00\x04\x00\x00\x00\x1e8BIM\x03\xf3\x00\x00\x00\ -\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x01\x008BI\ -M'\x10\x00\x00\x00\x00\x00\x0a\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x018BIM\x03\xf5\x00\x00\x00\x00\x00H\x00\ -/ff\x00\x01\x00lff\x00\x06\x00\x00\x00\x00\x00\ -\x01\x00/ff\x00\x01\x00\xa1\x99\x9a\x00\x06\x00\x00\x00\ -\x00\x00\x01\x002\x00\x00\x00\x01\x00Z\x00\x00\x00\x06\x00\ -\x00\x00\x00\x00\x01\x005\x00\x00\x00\x01\x00-\x00\x00\x00\ -\x06\x00\x00\x00\x00\x00\x018BIM\x03\xf8\x00\x00\x00\ -\x00\x00p\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\ -\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\ -\xe8\x00\x008BIM\x04\x00\x00\x00\x00\x00\x00\x02\x00\ -\x008BIM\x04\x02\x00\x00\x00\x00\x00\x02\x00\x008\ -BIM\x040\x00\x00\x00\x00\x00\x01\x01\x008BI\ -M\x04-\x00\x00\x00\x00\x00\x06\x00\x01\x00\x00\x00\x038\ -BIM\x04\x08\x00\x00\x00\x00\x00\x10\x00\x00\x00\x01\x00\ -\x00\x02@\x00\x00\x02@\x00\x00\x00\x008BIM\x04\ -\x1e\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008BIM\x04\ -\x1a\x00\x00\x00\x00\x035\x00\x00\x00\x06\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\x00\x00\x00\x00\ -\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00`\x00\x00\x00`\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x01\ -\x00\x00\x00\x00\x00\x00null\x00\x00\x00\x02\x00\x00\ -\x00\x06boundsObjc\x00\x00\x00\x01\ -\x00\x00\x00\x00\x00\x00Rct1\x00\x00\x00\x04\x00\x00\ -\x00\x00Top long\x00\x00\x00\x00\x00\x00\ -\x00\x00Leftlong\x00\x00\x00\x00\x00\x00\ -\x00\x00Btomlong\x00\x00\x00`\x00\x00\ -\x00\x00Rghtlong\x00\x00\x00`\x00\x00\ -\x00\x06slicesVlLs\x00\x00\x00\x01\ -Objc\x00\x00\x00\x01\x00\x00\x00\x00\x00\x05sl\ -ice\x00\x00\x00\x12\x00\x00\x00\x07slice\ -IDlong\x00\x00\x00\x00\x00\x00\x00\x07gr\ -oupIDlong\x00\x00\x00\x00\x00\x00\x00\ -\x06originenum\x00\x00\x00\x0cE\ -SliceOrigin\x00\x00\x00\x0da\ -utoGenerated\x00\x00\x00\x00\ -Typeenum\x00\x00\x00\x0aESli\ -ceType\x00\x00\x00\x00Img \x00\x00\ -\x00\x06boundsObjc\x00\x00\x00\x01\ -\x00\x00\x00\x00\x00\x00Rct1\x00\x00\x00\x04\x00\x00\ -\x00\x00Top long\x00\x00\x00\x00\x00\x00\ -\x00\x00Leftlong\x00\x00\x00\x00\x00\x00\ -\x00\x00Btomlong\x00\x00\x00`\x00\x00\ -\x00\x00Rghtlong\x00\x00\x00`\x00\x00\ -\x00\x03urlTEXT\x00\x00\x00\x01\x00\x00\x00\ -\x00\x00\x00nullTEXT\x00\x00\x00\x01\x00\ -\x00\x00\x00\x00\x00MsgeTEXT\x00\x00\x00\ -\x01\x00\x00\x00\x00\x00\x06altTagTEX\ -T\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0ecellT\ -extIsHTMLbool\x01\x00\x00\ -\x00\x08cellTextTEXT\x00\x00\ -\x00\x01\x00\x00\x00\x00\x00\x09horzAlig\ -nenum\x00\x00\x00\x0fESliceH\ -orzAlign\x00\x00\x00\x07defa\ -ult\x00\x00\x00\x09vertAlign\ -enum\x00\x00\x00\x0fESliceVe\ -rtAlign\x00\x00\x00\x07defau\ -lt\x00\x00\x00\x0bbgColorTyp\ -eenum\x00\x00\x00\x11ESliceB\ -GColorType\x00\x00\x00\x00No\ -ne\x00\x00\x00\x09topOutsetl\ -ong\x00\x00\x00\x00\x00\x00\x00\x0aleftO\ -utsetlong\x00\x00\x00\x00\x00\x00\x00\ -\x0cbottomOutsetlon\ -g\x00\x00\x00\x00\x00\x00\x00\x0brightOu\ -tsetlong\x00\x00\x00\x00\x008BI\ -M\x04(\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x02?\xf0\x00\ -\x00\x00\x00\x00\x008BIM\x04\x14\x00\x00\x00\x00\x00\ -\x04\x00\x00\x00\x0d8BIM\x04\x0c\x00\x00\x00\x00\x03\ -\xfb\x00\x00\x00\x01\x00\x00\x000\x00\x00\x000\x00\x00\x00\ -\x90\x00\x00\x1b\x00\x00\x00\x03\xdf\x00\x18\x00\x01\xff\xd8\xff\ -\xed\x00\x0cAdobe_CM\x00\x01\xff\xee\x00\ -\x0eAdobe\x00d\x80\x00\x00\x00\x01\xff\xdb\x00\ -\x84\x00\x0c\x08\x08\x08\x09\x08\x0c\x09\x09\x0c\x11\x0b\x0a\x0b\ -\x11\x15\x0f\x0c\x0c\x0f\x15\x18\x13\x13\x15\x13\x13\x18\x11\x0c\ -\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x01\x0d\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\x10\x14\x0e\x0e\ -\x0e\x14\x14\x0e\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\x0c\x0c\x11\x11\ -\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ -\x0c\x0c\x0c\xff\xc0\x00\x11\x08\x000\x000\x03\x01\x22\x00\ -\x02\x11\x01\x03\x11\x01\xff\xdd\x00\x04\x00\x03\xff\xc4\x01?\ -\x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\ -\x00\x03\x00\x01\x02\x04\x05\x06\x07\x08\x09\x0a\x0b\x01\x00\x01\ -\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\ -\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x10\x00\x01\x04\x01\x03\ -\x02\x04\x02\x05\x07\x06\x08\x05\x03\x0c3\x01\x00\x02\x11\x03\ -\x04!\x121\x05AQa\x13\x22q\x812\x06\x14\x91\ -\xa1\xb1B#$\x15R\xc1b34r\x82\xd1C\x07\ -%\x92S\xf0\xe1\xf1cs5\x16\xa2\xb2\x83&D\x93\ -TdE\xc2\xa3t6\x17\xd2U\xe2e\xf2\xb3\x84\xc3\ -\xd3u\xe3\xf3F'\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\ -\xb5\xc5\xd5\xe5\xf5Vfv\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6\ -7GWgw\x87\x97\xa7\xb7\xc7\xd7\xe7\xf7\x11\x00\x02\ -\x02\x01\x02\x04\x04\x03\x04\x05\x06\x07\x07\x06\x055\x01\x00\ -\x02\x11\x03!1\x12\x04AQaq\x22\x13\x052\x81\ -\x91\x14\xa1\xb1B#\xc1R\xd1\xf03$b\xe1r\x82\ -\x92CS\x15cs4\xf1%\x06\x16\xa2\xb2\x83\x07&\ -5\xc2\xd2D\x93T\xa3\x17dEU6te\xe2\xf2\ -\xb3\x84\xc3\xd3u\xe3\xf3F\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\ -\xf4\xa5\xb5\xc5\xd5\xe5\xf5Vfv\x86\x96\xa6\xb6\xc6\xd6\ -\xe6\xf6'7GWgw\x87\x97\xa7\xb7\xc7\xff\xda\x00\ -\x0c\x03\x01\x00\x02\x11\x03\x11\x00?\x00\xf4<\xdc\xcc\x96\ -d\x9a\xa9;@\x80\x00\x00\x92O\xc6P\xfd~\xab\xe0\ -\xff\x00\xfbl\x7f\xe4R\xc9\xff\x00\x95\x1b\xfdz\xff\x00\ -\xef\xabN\xd79\x95\xb9\xcdi{\x9a\x09\x0d\x1c\x92\x92\ -\x9c\xa7e\xf5\x16}79\xb3\xc6\xe6\xb4~V\xa7n\ -OSp\x96\x978\x1e\xe1\x80\x8f\xc1\xaa\xc6.\x0bl\ -g\xaf\x96\xd2\xfb\xac\xd4\xee\x9d\x07a\xb53\xea\x18Y\ -5>\x92EW81\xec\x99\x12x))\x0f\xaf\xd5\ -|\x1f\xfe`\xff\x00\xc8\xa2`fdY\x91\xe9Zw\ -\x02\x0f \x02\x08\xfe\xaa\xd2Y\x18?\xf2\x81\xff\x00\xae\ -~T\x94\xff\x00\xff\xd0\xef\xf2\x7f\xe5F\xff\x00^\xbf\ -\xfb\xea\xd0\xc9\xca\xaf\x19\xa0\xbeIq\x86\xb5\xa2IY\ -\xf9?\xf2\xa3\x7f\xaf_\xfd\xf5Y\xea\x9e\xd6Soz\ -\xec\x07\xe5\xfe\xa1%-\xf6\xfb\xdd\xfc\xde+\xcf\x81v\ -\x9f\xc1\x0a\xe6\xf5\x0b\x9c\xcb\x9f[X)\x975\xa4\xce\ -\xbc\xce\x9f\x05k<\xde1\x9c\xeaL\x11\xab\x88\xe7h\ -\xfa[R\xc1u\x96b5\xd6\x9d\xc5\xd3\x07\xbcN\x9b\ -\x92S\x01E\x01L\x01\ -R\x01Y\x01`\x01g\x01n\x01u\x01|\x01\x83\x01\ -\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\ -\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\ -\x0c\x02\x14\x02\x1d\x02&\x02/\x028\x02A\x02K\x02\ -T\x02]\x02g\x02q\x02z\x02\x84\x02\x8e\x02\x98\x02\ -\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\ -\xf5\x03\x00\x03\x0b\x03\x16\x03!\x03-\x038\x03C\x03\ -O\x03Z\x03f\x03r\x03~\x03\x8a\x03\x96\x03\xa2\x03\ -\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\ -\x13\x04 \x04-\x04;\x04H\x04U\x04c\x04q\x04\ -~\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\ -\xf0\x04\xfe\x05\x0d\x05\x1c\x05+\x05:\x05I\x05X\x05\ -g\x05w\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\ -\xe5\x05\xf6\x06\x06\x06\x16\x06'\x067\x06H\x06Y\x06\ -j\x06{\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\ -\xf5\x07\x07\x07\x19\x07+\x07=\x07O\x07a\x07t\x07\ -\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\ -\x1f\x082\x08F\x08Z\x08n\x08\x82\x08\x96\x08\xaa\x08\ -\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09%\x09:\x09O\x09\ -d\x09y\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\ -\x11\x0a'\x0a=\x0aT\x0aj\x0a\x81\x0a\x98\x0a\xae\x0a\ -\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b9\x0bQ\x0bi\x0b\ -\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c*\x0c\ -C\x0c\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\ -\x0d\x0d&\x0d@\x0dZ\x0dt\x0d\x8e\x0d\xa9\x0d\xc3\x0d\ -\xde\x0d\xf8\x0e\x13\x0e.\x0eI\x0ed\x0e\x7f\x0e\x9b\x0e\ -\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f%\x0fA\x0f^\x0fz\x0f\ -\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10&\x10C\x10a\x10\ -~\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x111\x11O\x11\ -m\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12&\x12E\x12\ -d\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13#\x13C\x13\ -c\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14'\x14I\x14\ -j\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x154\x15V\x15\ -x\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16&\x16I\x16l\x16\ -\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17A\x17e\x17\x89\x17\ -\xae\x17\xd2\x17\xf7\x18\x1b\x18@\x18e\x18\x8a\x18\xaf\x18\ -\xd5\x18\xfa\x19 \x19E\x19k\x19\x91\x19\xb7\x19\xdd\x1a\ -\x04\x1a*\x1aQ\x1aw\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b\ -;\x1bc\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c*\x1cR\x1c\ -{\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1dG\x1dp\x1d\x99\x1d\ -\xc3\x1d\xec\x1e\x16\x1e@\x1ej\x1e\x94\x1e\xbe\x1e\xe9\x1f\ -\x13\x1f>\x1fi\x1f\x94\x1f\xbf\x1f\xea \x15 A \ -l \x98 \xc4 \xf0!\x1c!H!u!\xa1!\ -\xce!\xfb\x22'\x22U\x22\x82\x22\xaf\x22\xdd#\x0a#\ -8#f#\x94#\xc2#\xf0$\x1f$M$|$\ -\xab$\xda%\x09%8%h%\x97%\xc7%\xf7&\ -'&W&\x87&\xb7&\xe8'\x18'I'z'\ -\xab'\xdc(\x0d(?(q(\xa2(\xd4)\x06)\ -8)k)\x9d)\xd0*\x02*5*h*\x9b*\ -\xcf+\x02+6+i+\x9d+\xd1,\x05,9,\ -n,\xa2,\xd7-\x0c-A-v-\xab-\xe1.\ -\x16.L.\x82.\xb7.\xee/$/Z/\x91/\ -\xc7/\xfe050l0\xa40\xdb1\x121J1\ -\x821\xba1\xf22*2c2\x9b2\xd43\x0d3\ -F3\x7f3\xb83\xf14+4e4\x9e4\xd85\ -\x135M5\x875\xc25\xfd676r6\xae6\ -\xe97$7`7\x9c7\xd78\x148P8\x8c8\ -\xc89\x059B9\x7f9\xbc9\xf9:6:t:\ -\xb2:\xef;-;k;\xaa;\xe8<' >`>\ -\xa0>\xe0?!?a?\xa2?\xe2@#@d@\ -\xa6@\xe7A)AjA\xacA\xeeB0BrB\ -\xb5B\xf7C:C}C\xc0D\x03DGD\x8aD\ -\xceE\x12EUE\x9aE\xdeF\x22FgF\xabF\ -\xf0G5G{G\xc0H\x05HKH\x91H\xd7I\ -\x1dIcI\xa9I\xf0J7J}J\xc4K\x0cK\ -SK\x9aK\xe2L*LrL\xbaM\x02MJM\ -\x93M\xdcN%NnN\xb7O\x00OIO\x93O\ -\xddP'PqP\xbbQ\x06QPQ\x9bQ\xe6R\ -1R|R\xc7S\x13S_S\xaaS\xf6TBT\ -\x8fT\xdbU(UuU\xc2V\x0fV\x5cV\xa9V\ -\xf7WDW\x92W\xe0X/X}X\xcbY\x1aY\ -iY\xb8Z\x07ZVZ\xa6Z\xf5[E[\x95[\ -\xe5\x5c5\x5c\x86\x5c\xd6]']x]\xc9^\x1a^\ -l^\xbd_\x0f_a_\xb3`\x05`W`\xaa`\ -\xfcaOa\xa2a\xf5bIb\x9cb\xf0cCc\ -\x97c\xebd@d\x94d\xe9e=e\x92e\xe7f\ -=f\x92f\xe8g=g\x93g\xe9h?h\x96h\ -\xeciCi\x9ai\xf1jHj\x9fj\xf7kOk\ -\xa7k\xfflWl\xafm\x08m`m\xb9n\x12n\ -kn\xc4o\x1eoxo\xd1p+p\x86p\xe0q\ -:q\x95q\xf0rKr\xa6s\x01s]s\xb8t\ -\x14tpt\xccu(u\x85u\xe1v>v\x9bv\ -\xf8wVw\xb3x\x11xnx\xccy*y\x89y\ -\xe7zFz\xa5{\x04{c{\xc2|!|\x81|\ -\xe1}A}\xa1~\x01~b~\xc2\x7f#\x7f\x84\x7f\ -\xe5\x80G\x80\xa8\x81\x0a\x81k\x81\xcd\x820\x82\x92\x82\ -\xf4\x83W\x83\xba\x84\x1d\x84\x80\x84\xe3\x85G\x85\xab\x86\ -\x0e\x86r\x86\xd7\x87;\x87\x9f\x88\x04\x88i\x88\xce\x89\ -3\x89\x99\x89\xfe\x8ad\x8a\xca\x8b0\x8b\x96\x8b\xfc\x8c\ -c\x8c\xca\x8d1\x8d\x98\x8d\xff\x8ef\x8e\xce\x8f6\x8f\ -\x9e\x90\x06\x90n\x90\xd6\x91?\x91\xa8\x92\x11\x92z\x92\ -\xe3\x93M\x93\xb6\x94 \x94\x8a\x94\xf4\x95_\x95\xc9\x96\ -4\x96\x9f\x97\x0a\x97u\x97\xe0\x98L\x98\xb8\x99$\x99\ -\x90\x99\xfc\x9ah\x9a\xd5\x9bB\x9b\xaf\x9c\x1c\x9c\x89\x9c\ -\xf7\x9dd\x9d\xd2\x9e@\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0\ -i\xa0\xd8\xa1G\xa1\xb6\xa2&\xa2\x96\xa3\x06\xa3v\xa3\ -\xe6\xa4V\xa4\xc7\xa58\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7\ -n\xa7\xe0\xa8R\xa8\xc4\xa97\xa9\xa9\xaa\x1c\xaa\x8f\xab\ -\x02\xabu\xab\xe9\xac\x5c\xac\xd0\xadD\xad\xb8\xae-\xae\ -\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0u\xb0\xea\xb1`\xb1\xd6\xb2\ -K\xb2\xc2\xb38\xb3\xae\xb4%\xb4\x9c\xb5\x13\xb5\x8a\xb6\ -\x01\xb6y\xb6\xf0\xb7h\xb7\xe0\xb8Y\xb8\xd1\xb9J\xb9\ -\xc2\xba;\xba\xb5\xbb.\xbb\xa7\xbc!\xbc\x9b\xbd\x15\xbd\ -\x8f\xbe\x0a\xbe\x84\xbe\xff\xbfz\xbf\xf5\xc0p\xc0\xec\xc1\ -g\xc1\xe3\xc2_\xc2\xdb\xc3X\xc3\xd4\xc4Q\xc4\xce\xc5\ -K\xc5\xc8\xc6F\xc6\xc3\xc7A\xc7\xbf\xc8=\xc8\xbc\xc9\ -:\xc9\xb9\xca8\xca\xb7\xcb6\xcb\xb6\xcc5\xcc\xb5\xcd\ -5\xcd\xb5\xce6\xce\xb6\xcf7\xcf\xb8\xd09\xd0\xba\xd1\ -<\xd1\xbe\xd2?\xd2\xc1\xd3D\xd3\xc6\xd4I\xd4\xcb\xd5\ -N\xd5\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\xe0\xd8d\xd8\xe8\xd9\ -l\xd9\xf1\xdav\xda\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\ -\x96\xde\x1c\xde\xa2\xdf)\xdf\xaf\xe06\xe0\xbd\xe1D\xe1\ -\xcc\xe2S\xe2\xdb\xe3c\xe3\xeb\xe4s\xe4\xfc\xe5\x84\xe6\ -\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe82\xe8\xbc\xe9F\xe9\xd0\xea\ -[\xea\xe5\xebp\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee(\xee\ -\xb4\xef@\xef\xcc\xf0X\xf0\xe5\xf1r\xf1\xff\xf2\x8c\xf3\ -\x19\xf3\xa7\xf44\xf4\xc2\xf5P\xf5\xde\xf6m\xf6\xfb\xf7\ -\x8a\xf8\x19\xf8\xa8\xf98\xf9\xc7\xfaW\xfa\xe7\xfbw\xfc\ -\x07\xfc\x98\xfd)\xfd\xba\xfeK\xfe\xdc\xffm\xff\xff\x80\ -\x00 P8$\x16\x0d\x07\x84BaP\xb8d6\x1d\ -\x0f\x88DbQ8\xa4V-\x17\x8cFcQ\xb8\xe4\ -v=\x1f\x90HdR9$\x96M'\x94JeR\ -\xb9d\xb6]/\x98A\x00\x930(*l\x0c\x9c\x03\ -\x02\x13`P0\x07?\x02?\xe8O\xe8X\x06 \x01\ -\xa4\x00hO\xfa$\x1a\x93H\x82R\xdf\xf0J}J\ -\x06\xff\xa4\x80\xa9t\xd0\x05\x1a\x07U\xa5\xd5\xeb\xf4\xfa\ -\x8d\x86\x05S\x81S\xe9VhK\xfc\x05o\x01\xd5\xaa\ -\xf6\xca\x8d~\x0fh\xb4\xd2\x00P\x8a\x95\x92\xefK\xb0\ -P\xacW\x9aM\xca\x9dI\xbe]05\xca\xf0\x02\x98\ -\xfe\xc8>\xf2O\xa7\xa6U\xe2\xf3\xcc<2O\xb7\xce\ -\x1aSO\x07\xe8Bcm!\x10\x87\xa7)\x89\xb5C\ -\x00v\xb4#?\x01\x81*\x98\x88]\xf7i\x87\xa4g\ -\xb18+\x1e\xe7\x01\xb7\x8e\xed\xaa\x17:\x15\xfa\x0d\xba\ -\xde\xda\xf7\x98Ln;\x7f\xbe\xe2\xf0!\x99\xec\x0d\xe2\ -\xbbj\xe8T\xab\x18^\x7f6\x9f\x90\xc8uz\xbb>\ -\xcf\x81\xfc\xf8\xf4=\x9c\xbe\xb6\xf3#\xdc\xbaa|V\ -N\x0f\xa3c6\xfa\x94\x04\xbfAb\xcf\xf4\xe0)\xc0\ -\x03:r\x08-\xebzc\x03\xc1\x10L\x15\x05>\xe6\ -\x94\x1cc\x13p\x89\x04h\xc2\x86+\xee\x90\x00\xd0\xc8\ -\x10(C\x83 \xdb\x0f\x91\x00LD\x05\xc1q,M\ -\x13\xc5\x09B\xa4fE\x85\xf9\x17\x17\x8d\xa6\xfcdk\ -\xb9\x08\xb0;\x1b\x84\x84LtV5A0_\x14\xc8\ -\x12\x0c\x85!\xa2\xe7\xd4\x8c|\x93RI\x00SI\x84\ -|\x8c}\x1f(\xc4\x0a\x01\x07\xb2\xa8\x9aCK\x058\ -\x0f-\x812$\xbd/\xcc\x13\x0a\x04gL\x86\x08\xed\ -3\x8a\x87\x84\xd4v#\x09\x98\x08\x02\x8a\xf3\x88\xda7\ -\xce\x84\x5c\xa71O\x13\xcc\xf5\x03\x9d\x13\xe9\xc44P\ -\x02\x11\xc9A\x9b\xa8\xc42\x03\x01\x03-\x14?\x0c\x14\ -h\xf0\xe3Ot\x8d%I\xa3\xe7\x95,w\x0c\x94\xc8\ -|oS\x86\xad\x0d\x0d\x0d\x95\x09\x0e\xfe\x8b#}!\ -JU\x15MT\x873\x07\x99\xe1E\x0c\xa1\xf1\xb9Y\ -\x9ah\xc4\xb6\x03\x810\xf8\xdaDN\x22\xb8\xdbS\xc4\ -\xae\x13\x9bU\xc8q\xab\xae\xe1\xa1V\x15UV\x9e\x14\ -\xc8\xc8\x1e\x9b\xb6\x89\xa9O\xd1\x03u\xacD\xd7\xb5\xfb\ -\xa4\x89\xaaF\xdd\xbch\x9e\xb7\x09\xe6\xea\xcav\x13\xa8\ -\xe0\x1f\xb7I\xfb;\xb8\x8e\xdb\xb2\xf29Wr\xd4\x82\ -<\xc8E!C\x81\x17\xc8\x10\x05P\xe0<\xdc\x02\xa0\ -\x97Q\xf8|\xe0\x87\xc6\x08|\x9e\xefA\xf0{C\ -<\x01\x08\x0eli\xb9\xd4\xf2k@p\x12xa\xfd\ -\xfd\x06\xe5&+\xe0\x80\x9b\x12\xf0L>\x8e\xe8,:\ -]\xbb\xe7\x02\x0f\xa5\x17\xbe\xc7\xdc\xfc\x08z\xcc\x80!\ -\x9c 6\x11\xb44V\xa0\x08yn\x89\xcb\x198F\ -\x10\x10p\xd2\x18\xe9\x85\x90\x00\xb0\x1c%!\xc0\xb9p\ -\xa0\xb5\xc3\xb9\xe1\x93\x0f\xc5\xda\xba\x09\x0b\xd5T\xc1\xa0\ -(\x22\xa2@\xadw\xc0\xc8\x1f8\x86J\xf0\xc1\xfc&\ -\x85\x0eA\xfc*(\x1b\x08\x08s\xd0QOI\xea&\ -\x10\xef\x17\xc4\xa8U\x8cA\xa8\x8c\x0c\xb9\x5c\ -/b!\x16_\xf1,\x1f8\xa0\xc6\x1f#\xb83\x08\ -\x04`O\xcb\xd1\x0e%f\x00zRq\x19\xf5\x0a\xe0\ -c1\xc1\xe9\x1c\x5c#\xd4yK`y%\x1f\xbb.\ -\x8a\xcc\xceM\x10\xb6n?\x07\xdb\xd1\x93\xc9\x00\x12M\ -\xd0Z('\x00\xc8_@(\x88\x0bi\xcc)\x04,\ -\xe9\x0c\xcc\x1c{\x92\x84\xa6\x16\xa7\x80qZ\xc1\xb8D\ -\xb6\xe2\x1e\xa5\x87\x90\xef\x0a\x93\xec\x14Aa\xdc:\x93\ -\xd3\xb9wb\xb2Z<\x133$\xdf\xb4T\x013\xcd\ -l'(Z>\xc7\xd3\xd1zcQ\xea\xa2\x91%E\ -\xc5\xb0:\xa3A$\x88\x0b\xaa<*C\xfd!\x0b\xc8\ -]\x04\x1a@l\x10\xc4\x1d)\x14\x80N\x96\x01\x82 \ --)\x80\xa1\x10\x14\xcc0P\x17\x01!El\xc7\x06\ -3&H\x99\x96N\xe3\x5c|\x96yH\x82L\xbf\xd7\ -\x9ed\xe2\x84\xdbD\xa0Z\xa6\x01\xb9\x04+F\xcb\xdc\ -!\x83\xaa\xaa\x0eEH\x0c\x07\x8dY\x1d\xa9\x00\x17U\ -\xd0t\x92D\xd0\xc0_\xf2l\xc9\xab\xd0X8\xab@\ -\xdbL3\x12\x0e\xd3\xaaxF\x9f\x94P\x8aSE\xc9\ -B\xc275\xc7\xdb'\xa2tU\x05\xa8\x00\xd0 \x96\ -p}\x22\x09`C\x06\x81]a\xc4\xcaa\x0eV,\ -G\xcf\x00\xb4\x1c\x08\x84\xe0\x14\x02\x22\x1c\x09@\xf2\x98\ -]\xcd8\xad\xd4\x19WP\x86U4^\x5c\x0d#\x8f\ -\xfe(W\xb4\x13\x22\xaax\xd8w$2\x7f\x0e\xa48\ -\x14\x01 \xf6\xb6C\xcd0\xaf\x81Om\xc6\x80\x1f\xb7\ -@\x9c\x86\x0ek|8\x02\xb5\xc1\x05l({$H\ -\x8df\xa6D\xd5!P\x8a\x01W2.\xbe-\x0c\xd4\ -\xa8\xc4BN-+\x1bLK\xc9\ -\xc8\x0f\x15x\x0ck\x01\x5c\x0c\x06\x8e\x99Kd\xe8P\ -h\x8cU&~\x80\x90\x17\x15\x98Lk\xc0\x80\x22C\ -\x22\xf8w\x0a\xa2\xf7\x0e\x0a\xcb\x8c\xfa$`\x8c\x15\xef\ -\xb4\x18\x03\xc8\x9c'\xc8\x90\xe8\x12;\ -\xa0\xa4ne\xcc\xd7\x17}\xea\x12\xb8\xa1\x97\x04+\x06\ -\xcb\x94B_\xfc/\xba\xe4\xb4\xa7\xe0`*\x06\xb28\ -*\x06\xb688H\xf2\x09<\xc2P\xc6\xceB\xdd\xdb\ -\x88\xdc\xec,\x1a\x90?\x09\xe41\xf5\x06\xe1S\x9f\xc4\ -\x9d\xf0\xa6\xf7\xcadbw\xa3\x19\xab\xa2\xa2\xae\xc4j\ -\xea\xb9\xa78\x91)0C\xa4\xc1\x12\xb0\x08\x07\xfe\xed\ -\xe8\xb8\x92\xa34o>\x22\xfc\xfd\xa04\x13\xa8\xb9\x14\ -\xefCE\xbd\x11B\x9f\xcd\xd2\xc5\xc4P\xfb\xc2\xf8c\ -\x0c\xdf*\x91e\xb6\xdcS\x8d\x16\xb0\x07\x81)\x0c\x10\ -Z\xec1\x8b-|'\xb5\x08\x15\x98\xa0\xbfb\x03\xbc\ -\xbeB$\x94[\xcb\x04U|P\xcbDF\xef\xec\x5c\ -\xa2\x9a\xc5H\xc3\xb0p'\xb6\xc0\xc6\x90\x01\xd7n\x05\ -&\xce/\xc5~\x1f\x83s\x17\x12>\xfb\xf6C\xab\x8b\ -\x99\xb9\xd9e\x5c\xe2\xc5}\xb1\xc8>\x8d\xcc{Q1\ -8 \xf8&\xedxd\xbd&@~\xbdp\xbc\x0d\x86\ -\xc7\x01\x19\xdb\x8a#\xc4\x9c\xa7\x5c\x0c\xb6\x87[\xcf\x22\ -\xfcn\xe5\xb5\xaa\xc8\x9e\xf2\xd1\xfb\xd101\xd0D\x0a\ -\x85'\x19\x19\xcb\xf4\x86)\xc1\xbc5\xa5\x08[\x064\ -\x91!\x5c~\x0c\xef\xa2m\xf4\xe1:\x9b\x85\xe2\xb5w\ -Qx\x81\x12\xd5\xb0\x0bW\xf1D\xc1b\xc3\x90\x8e\xb1\ -\xc1\xc4\x88V\x01\x03\xa5k[\xe8\x98\xb7\xcc\x8deV\ -O\xa9\xf7f[\xb89{s\x90\xdeg\x099\xaf6\ -H+\xf7\x09\x8a\xc1\xb0\x06\xba\xc0 !\x91\xb8u\x8e\ -`\xbb\xd7\xc1\xa0\xec\xecC\x9e\xcc8\x0a\x07\xc1\xc8\xce\ -\xe9x\x9b\xaff!\xa0\xe1\xdb\xc4\x5cb\x0a\xa1\xafx\ -\x10n%\x01z\x92A\x06\xbd\xec!J\xb1,/$\ -\x02\xcc\x1c>\x0cl\xa54\xfa:\x07\x18\xc1\xf1B\xc4\ -Z\xf8\xd1D\x89\xb2\x88\x89\x15\x95\xbb\xba\x90W\x84\xe6\ -zA\x15\x92\xfc;\xca\x90N\xef'\xfb\xc9!'\x80\ -1\xd3\x81h\xe8\x06\xc1\x08\x1c\xf5@\x90\x0cz\xd0;\ -K\x00\x98\x18\xa7@\xfb[\xeb\x92F{\x86@\xba\xc4\ -!\xbc\xfa\x0e\x01\xb0L90\x8a\x89\x5c\xa2\xce*\xfd\ -\x95BH\xb2\xf8rY\xb2\x87\x8f\xad\x5c\x83\xb5\x87\xa1\ -!$\xf0\x06\xd4\xcfM\xd6\x00\xd0 \xd6\xe0\x98\x10\xfd\ -\xd0R\x8d\xc0\xe8$\xf5@p\x11\xfaZ\xa4\x8ac0\ -a\xfd@\xe6\xe2\x12\xc7r\x22?\x80\xaa\x91\xfet\x81\ -\xcf\x81\xdf\x0b\xfc\xc9\x14e\xbd+.\xffB\x04\x7f\xea\ -\xfc\x08.\xa2K\xe4\xa6kbr\x01\x80\x1e\x02\xf0\x14\ -\x03\xac \x02\xd0\x1a\xf6\x001\x01@.\x03\xabt\x03\ -\xe0O\x02@:i\xe0(\x03.8\xda\x8d\xb8\x0e\xad\ -\xbcm\x02X\xad\x87\xd6\xe8\x822\xf2\xe7\x88\xff\x22&\ -\xf3ev\xd9\xed\x18\xa9\x09:\xe2b\x5c_\xec\xd2\x06\ -\x8f\xc6\x04\x88\xf4\x04`W\x02\xa0N\xf4\xe0D4 \ -\x1e\x02E\xf4\x86\xc3\x5c\xfaB4\x16p\x90\x14\x01\x03\ -\x09`\xc3\x04g\xd0\xa7\x0e\xd0#\x0b\xea~\x8d\x96\xff\ -G\x22\x9ag\xf6\xff\xc0\x00\xf3\xe2P\xc7@\x1a\x02\x0e\ -\xe4\x0d`\x89\x0c`\xaaG\xa4\x7f\x08\xc2(\xaf\x0b\x88\ -ua\xd8\xc2\xc9\x14!\x84\xc8\x19\xc1\x84\x8a\x10\x9c\x83\ -p\xa0\xf8\x8azU\xca~ZM\x12f\x08\xae\xe9\xaa\ -\xc8\xa2\x0a$\xc6BD\xfc\x00H\xce\xc1\x1a\x16\x0e,\ -\x05p\xd0`KZ\xf0\xe1\xc4\xf7\xa1\xb0\xad\x01\xc4\x1b\ -O\x06\x1c!\xb2\xeb\x81\xcc~O\xecY\x80\xf1\x13\xe1\ -*\x09\xd1D\x0cB\x18\x1d1L\x1cez\x05\xa7\xe4\ -%\x0b\xe2\xf8PL#\x0e\x8c~\x90T\x22PX\x11\ -\x10\x5c#0\xb8#\xe5\xfe\x13\x91x\x18`Y\x17\xe0\ -nRf\xbe\x1d\xf1\x88\x1dc\xd6\x1c\xa1\xbc\x1cq\x94\ -\x1b\x8e<\x1a\xd1$\x1c\xf1\xa0\x1c1 \xb6A\xec\xb6\ -\x826\x9ea\x14\xdf\xc0\xea!\x87\xfe\x7f@]\x12\x81\ -\xb4%\x08\x8c\xc4,F}\xc9\x94\x5c!\xe4\xe8\xeeZ\ -\xa1O\xf8\xe9\x8eb\xa8\xea \xf9\xe8d$\x00\x9b\x1e\ -\xa0\xc0\xa4 \xfe\x13\xe2`<\xca\xb2\x1e!\xdb\x14\xc1\ -\xd2\x1cq\xc1\x12\x81\xb6mA\xda\x1d\x11\xfa\x1d\xc7V\ -\xeb\xab~\x9f\xc1\xd3\x1a\x81\xe8A,\xb8\x0dk\xc2\x12\ -\x82 N\x80\xde\x09a\x8b#al%\x10\x80\x02q\ -\xc9\x15\xe2.~N\x14x\xee\x5cy\x8d\xdf\x10\x02\x16\ -\xda+\xfe#\xd1\xc8j\xa0\x80\x0a\x020`Q\x88\x1d\ -\xf2\x18\x1c\xc1\xc0Pa\xc8q\xa7\x1d\x19A\xc6\x1br\ -t\x1b\xb1 \xfe\xc7n\xd2n\xfc\x17b \x11\xd2\x94\ -\x0e$\x98\x14\xcb\xd0$\xf1Z\x15\xad\xcb\x0bRH\xe5\ -\x92L\xe1\xae^\xc5\xa5\x86\xe20`\xba\xd0d#\xaa\ -\xc0\x180\xa2 \xf2j\x1daK,\xe1\x1c\x8c\xd1\xa0\ -\x1c\xe1\xc2\xaa\x81\xd4\x1c\x91W\x0d\x02\x16\xfc`F\x15\ -R\xec\x1a\xb0:!J\x9e\x13\x01\x0f/\xa0\xd3\x1cP\ -\x9e\xe4\xe8\x98\xf8\xa8\xa1\x16b#\x16\xaea+g\xfc\ -H\xec\xc5+\xe29\x09a\x02\x14 \x972`\xbc\xeb\ -h\xdc\x1c\xd3&\x09`<<\x01\xfb.K\x9eCN\ -\xaa\x1a\xef\xb0\xebB\x16E\x81\x98\x17\xea\xfc\x08QX\ -\xec\xcc\xa5\x0f\x024\xd9%c\x0a\xb0V\xa8r\xb3%\ -1\xde\xba\x83'\x10m\xa6#\xef\xd4\x0c \xf2\x0ds\ -\x80\x10\xcd\xf6\x1f\xc1\xfa\xe4 e0\xd3<\x22J\xc0\ -\x18\x0c\xdc!q\x8e\x1b\xd1R\xfd\xa2G\x04\x88<\xc4\ -\xb0\xb5\x16%\x9f9\x02\x1f1\x12\xb4#\x11r#\xc0\ -}< \x9b)A\x1c\x16B \xc3,6\xc3\xa4\x12\ -\x91\xe0\x8b=\xa0\xac\xf4\xe0C\x0d\x81\xa1>a\x88\x16\ -\xf3\xec\x14\xa1\xef?!\xea%\x91>\x0f\x01,\x9f`\ -\xa9/\xe2\x16k\xe7\xf4\x05\xf1\xc0$\x92\xa3*rT\ -\xb9c30\xb1\xd6\xdd\x8dS\x0b4\x16!3\xbe#\ -\xa0KB\xe0],\xe1J\x19\xe6\x1e!!'C\xe0\ -\xf0\x144D\x11\x22X_\x0b\xcc\x0ea\x1e\x0a4T\ -\x0c\xd4:!\x08b\x18\xc0\xfdF \xbd(\x22P\xe4\ -)F\x94\xa2 \x0dTt\x08\x81\x95G\xa1z$\x8f\ -\x82\xf8s\x07\x0f!\xe1A\xd2\xae\xe9%\xae\xcb\x91\xdd\ -1Q\xe0\xa2(\xb7%\xa2;\x0b\xc0 \xb5, \x02\ -\xe2\x18\x9c\xc1l\x14tb\x0f\xd3*$\xe2\x9e\x98\xb2\ -a&B/\x12\x14N\x0a\x01\xb3L\xe1\x9e$\x8a4\ -\x07@\x90\xd3,\xe8!\xef\xe0\x11\x00\xd4\xea\xa1/A\ -\x0d\x07\x15\xcd\x0a\xe5FK$\xae\x18\xdd\x8b\xa2\x7fo\ -\x9a\xa93\x1c#\xec\x88\x14L\x8c\xc9\x02\x18\x93\xd3z\ -\x07\x22P\x91\xf3\x96$\x0c\xe4\x18\xc1p\x9ej8$\ -px\xcf\xe1R\x1aj\xc6!k$\xb2\x88p\xb2\xe2\ -F\xf2*\x095\xd0OA\xaf1A\xef56\x91l\ -fo\x9b7J\xf8$+\x08\x14\xe0\x8dV`\xb0\xaa\ -j\xab@\x00U\x1a\x91\xac$Jf\x10\x01@\x09\x95\ -\x80\x0b\xe2@\xecA\xd8\x1c\xf4T\x0a K?!\xef\ -?b>\xf4n\xaa\x1b\x0f\xac\x03b\x18\xd7\xc1d\x13\ -\xcdv\x10@\xc7H\x13\x02\x11UF\x06I!5\xea\ -\x0e\xf8\xeb?+\x12P\xe1\xf4\x997\x0a!PN\xf0\ -$il\x0f\x80\xd3]\xe1\x06!\x8b\x88\xee@U-\ -a\xc2$\x95\x0bP\xe0T\xc9\x22>k\xee\xe4\x05s\ -\x9e$\x91x\x13\x81\x86\xdc\xa2\x18\x18v\x10\x16\x89H\ -\x0e \x9a$\x92>}T\x85[\xee\xd2\xe5ec;\ -B\x1d;\x93m\x5c\xeb\xf974\x9f\x10\x82CV`\ -\x8c\x0a\xeb\x08\x15\x13\x878\xa9C8\xf5P$\x13\x97\ -9\xa2=\x22\x0c\xb8\x05q $\x95{W\xf5\x82!\ -\x88\xd0\x1a\xc1\x98\x0b\xf6t\x06\xc6$\x22\xf4\x83,b\ --;\x00{b\xc2\x1b\x16\xb1n#\x0a\xf0\x9bU\x06\ -#\xc7@\xe3!H\x19\xb4Z \xf3S4\xc1~$\ -\x8a\xfc\xb0\x052\xb0B?(4\x00\x05*\xf0$\x8e\ -\xbe\x0b\xa0\xe9#\x01\x16\xb5\x88.\xcb\x80Y\x0d\x82A\ -TV\x80\x22\xb3`VO\x91U%p\xbf63;\ -\xd68\xbf\xd6<$\x08\x8c\xb0\xe1\x5c\x1bL,!\x91\ -\xf0\x0b\xef\x1a\x16\xaf\x1e$q\x0d.\xc1T\x1a\xa0\x0b\ -q`\x0c#\x8dh\x121\x10\xb2\x02O< |\x09\ -\xd3\xc8\x16\x22\x18`S\x8d6B5#\xf2CO.\ -\x10d\xab\xedn0\xadno9Bb\x10\xe9\xe8`\ -\xfa\x02HJu\xf2\x05\x17`\x06B\x19P\xa1\x16\xd3\ - \xec%\x12'\x22\xa2(*T\xb0\x14r\xfa\x10\xe0\ -\xd3:BL\xcd kP\xa7l!\xf3\xd0\xc3\x81z\ -\xc3\xc2?A(?u\x02\x0fhV\x88!\x8f\xf6Z\ -\xe5\xb3P0c]bL\x12\x17\xb8\x16\x87H\x07\x80\ -\x96!\x8d\xbe\x15\xf0>\x0aBYL'$\xc6\x80P\ -!\x8a\xf0@\x00\xa6\x05\x16\x02%w\xd4\x15\x17\xe8\x1a\ -U6!K*\x0f5;mt\xee\xa77Abw\ -E\x0a\x97I6wM6\xb5\xcc#\x07\xfez)Q\ -x\xe2M2\x13%2\x82\x18\x8c\xcb\xd6\x0b\x80f\x91\ -\x02V4\xe0\x86\x0a\x87v\x15b!R\x95\x22\x17\x02\ -Y\x02\x0bR\xc0\x22\x19\x09\x01g\x09P\x99oU\xb7\ -\x7f\xcaw*\x83-tu\xc7O\xd7O6\xf67]\ -7\xb2\xf4\x02H\xed\xe0\xe0\x11\x98&\x0eb\x18\xfe\xd5\ -\xe9 \xc1\xd0%\x8a\xdcB!6\x18B!{\x81 \ -\x0e\x96\x9c\x94\xc2Wq`\x0a\x00\xd50\x1a\x8fj!\ -\x8d^\x0cX\xb0\x07XT\xdcj\xdb\x7f\xf0\xa5b\x80\ -}zb\x17z\xa9\xe9IP\xb5\x81(\xb7\x81tj\ -\x94V\x17\x89\xc6\xf2(Vt\x0b\xe0mf\xe1\x98%\ -\x8fk~\x81P\x1aE\xf0!\x96\xf8\x13+\x08\x0d\x02\ -`\x98\x01*\x17@o\x90\xa0\x8bV\xd2\xdfm\x12\xe2\ -#V\x7fT\x98\xbe\x89\xed\xd4\xc5U\xc9h\xe2/B\ -\xa2H\x07\x190\x08\xcb*\x17\x22 \x0f\xb9<\x0b\x93\ -\xec\x16\xe1KD\xa45q\x01\xa9.\x82\x19q\xf7\x22\ -&\x0ep\xb1\xa9\xe1rB\x14`K\x1c\x06*\x80#\ -\x95D\xf2\x97\xa0 \xd2\xabb\xb6S\x80\x8d\xdb\x80\xd8\ -\xcf1\x88\x04\xdeu,\xb7u1SBh!\x8e|\ -\xe8\x02_l6\xc6N\xa2\x10\xfe\xc8\xa1s\x82R\xee\ -@\xd4\xc3!*\x22\x18t\x09\x81\x89\x9b\xa1k\x96\xd7\ -\xfb$V\x83\x1d\x09\x9d\x9a\x82!h\xd5X\xae\xe6q\ -iW\xb4$\xa7\xb9400!\x97\x94\x15\x93\xd0A\ --'\x83\x00\xa6\x99a\xe7\x84\xc1>FA\xbe\x1a\xe4\ -\x12\x97 \x80\x13:\x09j\xa2\x1fv\xd7h#\x97<\ -\x91\x81_\x9cB+\x97x\xc3\x97\xa2$\xba\x04@\xd1\ -qq+\xad\x1d\x9d\xa2P\x13\xba8\x18\x8d\x88\x05\xe0\ -v!\x8e\x02\x1b\x01\x9dl ig\xb3\x92!sG\ -48\xf6!h \x15\xe16\x9d!\x0a\x0c\xc29:\ -\x94\x15\x86\x8d\xd1\x8c\x18\xc4!Y\xd1P\x0d\xa1\xa3\x19\ -\x88$\xd9<\x0f\xa18\x09\xfa\x8d[\x22\x17\x0d\x95\xe9\ -,\xbaR#\x0bS\x07\x82\x19G\xa1\x94\x17\x94t\x0d\ -Y\x0e#z\x16\xc4Z\x1c\x22\x9a!\xa7b\x12\xd9\xb7\ -\xad;\xb9+n\xed\xa5U\xe2Q\x99\xd6\xc8\xc1\x22\x85\ -\x82`gL\xe1\xb3M:\x9a!E\xfa\x83@+>\ -\x00\xf3\xae\xe1/\x11b\x19\xad\xc1\x9f8\xd9\xc0u\x18\ -6\xf6p\xb5m\xf9\xcd;uU18\x10H\xf0\x03\ -\x00bSr\x97-)W0!\xeb\xc2\x0a\x8b\xbc\x15\ -\xa5TJd\x07JP\xdc5\xa0%\x10\xcf\xb7}S\ -F\xcc\xc04\x86\xa6D\x22x\x17\x8e1\x82#s\xa9\ -\xabb'\xb0\x98\x07\x16\x90\xaef\x1a-n\xca d\ -\xf8\xd4%o\xba\x04 S\x8f\x01\xa46\x03d!n\ -\xfc\x0fm\xb0\x13\xd3\x84D\xa6\x88\xf6\x10%\x02r\xe9\ -\x11r\xe9}P4\x03(\xe4e\xa2`\x14{\xa8\x11\ -\x81#\xba\xf1\xb7\xb5U\xb7[\xb6%\x16\x11\xd1\x8b\x00\ -\xc4\x07yj\xd5\x0d\x14r\x95[c\xb3v%L\x03\ -o\x81\xb3J\xa2\x19S\x01&\xcf\xa28h\x89\xc7J\ -@3\xbe\xe0>\xfbp*\xfb\x8f\xba\x05SG\x03\x14\ -\xa4OE\x998\xcb|\x1c\xc1\xbf\xa6\xb8Wm\xa2(\ -\xb9\x88H\xed\x97J\x9aP\xfc\xd5V4\x8b:\x81i\ -bJ)\xfb\x86\x18\xcd\xac!\x81q\xc3\xa1L\xde\xc0\ -\xb6 \x94\xab\xb9\xfb\xf7}Q\x0d\x07\xdbH\xc2\xc4\x06\ -\xf4n\xf3!\xd4\xcb\xa8\x223m\x99\x1d$x_\x80\ -XcnY\x7f\x5c\xb0\xb5\x92\xc2V\x10\x9c|\x14\xa0\ -\x91\xc8 \xb4!\x95\xec\x80\x81\x8e\xfb{\xee\x03 ?\ -\x0b\xc0#j:\xe2 \x8c\xaa\x8da\x9a\x18\x011\xca\ -\xa0\xfe\xbd\xd5\xb5\x8b\x90K\x8b\xc2/\x05\x07\x8b\xa2S\ -\x0f\xb0\xfa\xc4\x22\xdcx%E\x1a\x0c\x00\xf0r\x5c\x9e\ -!\xb1\x1c\x82\xc1\xd5\x12\x12\x06\xad1\xfa\x1d\xb2\xcb\x0d\ -\x92\x83 \x01\xc7\x0e\xae\x0a\xf8\x5c\x14\x22p\xa6Y\xfb\ -\x0bb\xf5U\x92\x9c\xc9\xac\x94\xa1\x88\x89\x91\x88\xd8\x90\ -\xeaF\xbf\xce\xc5\x07\x191\x94\x1bq%\x19\xb5\xed\x1a\ -kfOY\x1bHu\xc0U\xd4\x8dO\xbcqB'\ -\xf9\xa7\x0e\x9c\x85\xceiu\x82^e\xa1\x1f\xd5!d\ -\xd2dL*P\xd9\xcf\x12\xdc\x1c\xbc\xe7,\xae\xb8\x1c\ -\xb1.\x1b2|\x1b\x92\x0d!\xfd/\x08\xd9n\xb99\ -r \xbc\xfe~\xbcn\x22\x9a\xc0\x9e\x9d\x08\xc5\xf9\xd6\ -\x8b|`%\x9bIZ\xe1D\xcf,\xf6#f\x05\x0d\ -\x91\x8e\x1b\xf3\x9e\xe3\xc1\xab\x12]\xae\xf0\xe1\xc3(\x9c\ -\xd6\x22\xfce\xd3X\x00\x1e4\xf8\x9a1\xdb\xc7}\x0d\ -o$\x10JxzJ\xa0z\x09\xb0\x80\x02I\xae\x1f\ -\x86H\x1e\x11.\x1b]s\x9f\xc1\xad9\xfdc\x91}\ -\xc3\xcfP\xef\xdc\x99\x1e~}\x01\xb5\xfc\xc2\x8a\xbc#\ -B]E\x104\x9do\x1b\xd3\xe0>%0\x087\x1c\ -\x96\x0c\xca\x99\xc8\xca\xfe\x11\x9c\xfc\xc5n\xa2.\xaf\x14\ -\xe2\x0dY\xfc\x1a\xec\x18\xc1\xde'\xe4\xe2D\x07~T\ -\x09S\x80\x0da\x0at\x0cO\x86\x09+\xc7\x14\xfe\x81\ -\xc2>\xaf\x1aP9\xc6\x92b&\xee1C\xb9\xe7b\ -\x18nF\x84cG\x9co\x02\x0b\xe8\xde\x86^E\xce\ -;&\x99\xe7\xddE\xe8\xc6\xf7\xe9\xa2\x85C\xa5\x8d\xe9\ -`\x02_\xf0\xb4 \x9a\xbb\xcc\x1e9\x80\xbcu\xd8>\ -Q\xec.\xa5\xebt\x8e\xed\xa5\xab\xac>=\xec^\xd5\ -\xdc9\xa4s=\x03h\xa4\xb9\xaa\xa1\x09F\xde\xd7\xee\ -\xbe$\xb5\xb3S\xdbE\xa8\x00\xf8&\x0e\x95\xde\x0d!\ -\x07\xeb>\xed\xf0e#\x19\xb20\x09U\xec#\x1b|\ -\x08?\x18\x0a8\x1d\xba_\x09\xf2.l<\xdc:\x17\ -\x01L\x90\xa0\xd9\xe0\x06&)/\xb7\xda\x00W\xf3\xe0\ -m\xf2_D\xda\x98\x85\xe4/\x14\x18!e3\x828\ -e\xb80\x0a\x98t\x11\x90\x1b\xf4\x7fdRG\xe5)\ -\xa1!\xbe\x1c\xe6$\x89\x14\xcf \x9dIPr\x05x\ -\xa0\x00\xff6c\x02\x1cnE\xe1\xe9%\xed\xe7\xe3\xac\ -<_\x95\xe8?\x94n_\x98\xc5\xde\xac\x22\x1f\xa6c\ ->\x94oE\xdb\xf8~y\xe8\x9f\x9f\xf9\xa6\x82)f\ -\xbf\xd6\xe7\xc4\x13\xc1y\xfc\xa1W!\xc2P)\xe6[\ -\x10\xd7`\x05\x00d\xfbt\xa4)\xf6\xbf\xfb\x22\x0en\ -?\xbc,\xff\xb0 F\x8c;\x06\x9a \x0f\xf7\xf8\x06\ -\x09\x05\x82@\xa0@\x08P\x00\x05\x0d\x01?\xa2\x0f\xe8\ -\x5c2\x1a\x03\x88\xbf`\xd18\xd4l\x01\x08\x81\xc1c\ -\xd18\xf48\x05!\x8eH\xe1\xd184E\xfd(\x86\ -\xc4\xe5\x92H\xf4z\x0d\x19\x85\xcb&\xd1\xc8\x5c\x92Y\ -&\x85NcRG\xed\x0d\xfb\x13\x92>i\x0f\x87\x9d\ --\xde\xe3\xa77\x1b\xd5\x16\xb3\xa2\xa8\xe1{\xd5\xde\xb3\ -\xe9\xd5n\xb9]\x8eA\x80v\x10%\x8c\x08\x05\x99L\ -\xe15\xe9<\x22\x81j\xb7[\xeb\x95\xabm\xc2\xe9u\ -\x9dM \xb7k\xd4v\xd9y\xbd\xdf\xf0\x11\xa9e\x11\ -\xf9\x17\xad`q\x18\x9cV/\x19\x8d\xc7c\xf2\x19\x1c\ -\x96O)\x95\xcbe\xf3\x19\x9c\xd6o9\x9d\xcfg\xf4\ -\x1a\x1d\x16\x8fI{\x80\x80\x00\x00\x00\x03\x00\x01\xa0\x03\ -\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\xa0\x04\x00\x01\x00\x00\ -\x00`\x00\x00\x00\x03\xa0\x04\x00\x01\x00\x00\x00`\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00Adobe Pho\ -toshop Document \ -Data Block\x00MIB8n\ -rTM\x00\x00\x00\x00MIB8ryaL$\ -!\x00\x00\x01\x00\x03\x00\x00\x00\x03\x00\x00\x00]\x00\x00\ -\x00\x5c\x00\x00\x00\x04\x00\xff\xff\x88\x0d\x00\x00\x00\x00\x0c\ -\x06\x00\x00\x01\x00\x0c\x06\x00\x00\x02\x00\x0c\x06\x00\x00M\ -IB8mron\xff\x00\x08\x00<\x01\x00\x00\x00\ -\x00\x00\x00(\x00\x00\x00\x00\x00\xff\xff\x00\x00\xff\xff\x00\ -\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\ -\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x07\ -Layer 0MIB8inul\x14\ -\x00\x00\x00\x07\x00\x00\x00L\x00a\x00y\x00e\x00r\ -\x00 \x000\x00\x00\x00MIB8rsnl\x04\ -\x00\x00\x00ryalMIB8diyl\x04\ -\x00\x00\x00\x03\x00\x00\x00MIB8lblc\x04\ -\x00\x00\x00\x01\x00\x00\x00MIB8xfni\x04\ -\x00\x00\x00\x00\x00\x00\x00MIB8oknk\x04\ -\x00\x00\x00\x00\x00\x00\x00MIB8fpsl\x04\ -\x00\x00\x00\x04\x00\x00\x00MIB8rlcl\x08\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00MIB8d\ -mhsH\x00\x00\x00\x01\x00\x00\x00MIB8t\ -suc\x00\x00\x00\x004\x00\x00\x00\x10\x00\x00\x00\x01\ -\x00\x00\x00\x00\x00\x08\x00\x00\x00metadat\ -a\x01\x00\x00\x00\x09\x00\x00\x00layerTi\ -mebuod\xc5\xa4\xf3l\xf98\xd6A\x00M\ -IB8prxf\x10\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00S\x00O\ -\x00\x0f\x00\x0c\x00\x0a\x00\x09\x00\x09\x00\x09\x00\x09\x00\x15\ -\x00K\x00K\x00\x1e\x00\x1e\x00\x1e\x00\x1c\x00)\x00'\ -\x00(\x00$\x00'\x00\x22\x00'\x00$\x00&\x00%\ -\x00%\x00 \x00\x1d\x00\x1c\x00\x1c\x00\x1d\x00\x1b\x00\x1d\ -\x00!\x00\x22\x00#\x00%\x00!\x00$\x00+\x00+\ -\x00,\x00+\x00(\x00%\x00&\x00.\x00/\x00.\ -\x00+\x00-\x00-\x00.\x00-\x00.\x00/\x00-\ -\x00.\x00-\x00.\x00-\x00-\x00*\x00%\x00#\ -\x00(\x00,\x00+\x00,\x00,\x00%\x00#\x00!\ -\x00&\x00\x22\x00!\x00\x13\x00\x14\x00L\x00\x09\x00\x09\ -\x00\x08\x00\x09\x00\x0a\x00\x0a\x00\x0c\x00L\x00W\x00 \ -\x00\xfd\x00\x04\x05\x11!-1\xfe/\xfc0\x181/\ -/0110010/1/0010/\ -0110/01\xfe0\x0a/21100\ -/00//\xfe1\x000\xfe1\x05010/\ -01\xfe0\xfe1\xff0\x081/0/-'\x18\ -\x08\x01\xfe\x00\xff\x00\x07\x01\x14X\xab\xdb\xec\xf0\xf0\xfd\ -\xf1\x00\xf0\xfe\xf1\x00\xf2\xfd\xf1\xff\xf0\x01\xf1\xf0\xf8\xf1\ -\x03\xf0\xf1\xf1\xf0\xfe\xf1\xfe\xf0\x07\xf1\xf0\xf0\xf1\xf1\xf0\ -\xf1\xf0\xfc\xf1\xff\xf0\x1b\xf1\xf0\xf0\xf1\xf2\xf1\xf0\xf1\xf0\ -\xf1\xf1\xf2\xf0\xf1\xf0\xf1\xf0\xf0\xf1\xf0\xee\xe4\xc2|.\ -\x06\x00\x00\xff\x00\x03\x16\x86\xed\xfd\xb3\xff\x04\xf9\xbfA\ -\x06\x00\x03\x00\x08l\xf4\xb0\xff\x03\xfe\xbd*\x01\x02\x00\ -$\xd0\xae\xff\x02\xf8x\x07\x02\x02O\xf6\xad\xff\x01\xc0\ -\x14\x02\x05r\xfd\xad\xff\x01\xe1#\x02\x08\x86\xfe\xad\xff\ -\x01\xed+\x02\x08\x8f\xfe\xad\xff\x01\xef-\x02\x09\x91\xfe\ -\xf1\xff\x00\xfe\xdb\xff\xfe\xfe\xfd\xff\x00\xfe\xec\xff\x01\xef\ -,\x02\x08\x91\xfe\xfa\xff\x17\xfe\xcf\xc2\xc3\xc2\xc4\xc3\xc4\ -\xc3\xc3\xc4\xc4\xc1\xc3\xc3\xc2\xc3\xc2\xc2\xc3\xc2\xc3\xc4\xc4\ -\xfe\xc2\xff\xc3\x0c\xcb\xd5\xdc\xe1\xe1\xdd\xd5\xcc\xc2\xc3\xc2\ -\xc2\xc1\xfe\xc3\xff\xc4\xf9\xc3\x06\xc4\xc3\xc3\xc4\xc2\xc3\xc4\ -\xfe\xc3\xff\xc2\x01\xc7\xf1\xf9\xff\x01\xf0-\x02\x09\x90\xfe\ -\xfa\xff\x03\xfaK\x18\x17\xfc\x18\x14\x17\x18\x16\x19\x17\x18\ -\x19\x19\x18\x19\x18\x17\x18\x19\x19\x18\x17/~\xce\xf4\xfb\ -\xff\x13\xf7\xc8\x810\x18\x16\x19\x19\x17\x18\x18\x19\x18\x18\ -\x19\x17\x19\x18\x19\x18\xfd\x19\x08\x18\x19\x19\x18\x19\x19\x17\ -,\xc7\xf9\xff\x01\xf0,\x01\x09\x90\xf9\xff\x01\xf98\xeb\ -\x00\x020\x9f\xea\xf5\xff\x02\xeb\x996\xe8\x00\x01\x15\xc0\ -\xf9\xff\x01\xef.\x02\x09\x91\xfe\xfa\xff\x01\xf97\xec\x00\ -\x01u\xf4\xf1\xff\x01\xf7c\xe9\x00\x02\x14\xc2\xfe\xfa\xff\ -\x01\xf0-\x02\x09\x90\xfe\xfa\xff\x01\xf88\xee\x00\x01\x12\ -\x91\xed\xff\x01\x9a\x17\xeb\x00\x02\x14\xc2\xfe\xfa\xff\x01\xef\ -/\x01\x08\x90\xf9\xff\x01\xf99\xef\x00\x01\x0e\xc7\xeb\xff\ -\x01\xba\x02\xec\x00\x01\x14\xc1\xf9\xff\x01\xf0/\x02\x09\x90\ -\xfe\xfa\xff\x01\xf97\xef\x00\x00\x95\xfa\xff\x09\xd1\x9c]\ -B;Hj\xaa\xd6\xfe\xfa\xff\x01\x97\x04\xed\x00\x01\x12\ -\xc0\xf9\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\x01\xf98\xf0\ -\x00\x00r\xfb\xff\x02\xc9E\x02\xfa\x00\x02\x05C\xbf\xfa\ -\xff\x00\x86\xed\x00\x01\x14\xc2\xf9\xff\x01\xf1-\x02\x09\x90\ -\xfe\xfa\xff\x01\xfa8\xf1\x00\x01-\xf5\xfc\xff\x01\xa3\x09\ -\xf6\x00\x02\x02s\xfc\xfc\xff\x01\xee\x16\xee\x00\x01\x15\xc1\ -\xf9\xff\x01\xef-\x01\x09\x92\xf9\xff\x01\xf97\xf1\x00\x00\ -\xb6\xfc\xff\x01\xa8\x06\xf3\x00\x01C\xe7\xfc\xff\x00\xa0\xee\ -\x00\x01\x15\xc2\xf9\xff\x01\xef,\x02\x09\x91\xfe\xfa\xff\x01\ -\xf98\xf2\x00\x01\x1b\xf4\xfd\xff\x01\xe3\x13\xf1\x00\x01:\ -\xfa\xfd\xff\x01\xf9%\xef\x00\x01\x14\xc2\xf9\xff\x01\xf0/\ -\x01\x09\x90\xf9\xff\x01\xfa7\xf2\x00\x00\x82\xfc\xff\x00g\ -\xef\x00\x00\x8f\xfc\xff\x00\x87\xef\x00\x01\x15\xc2\xf9\xff\x01\ -\xef-\x01\x09\x91\xf9\xff\x01\xf87\xf3\x00\x01\x12\xea\xfd\ -\xff\x01\xe9\x0d\xef\x00\x01\x08\xd8\xfd\xff\x01\xdf\x0a\xf0\x00\ -\x02\x14\xc1\xfe\xfa\xff\x01\xef/\x02\x08\x90\xfe\xfa\xff\x01\ -\xf98\xf3\x00\x00n\xfc\xff\x00\xad\xed\x00\x00o\xfd\xff\ -\x01\xfd0\xf0\x00\x01\x15\xc2\xf9\xff\x01\xf0-\x02\x09\x91\ -\xfe\xfa\xff\x01\xf97\xf4\x00\x01\x0f\xe5\xfd\xff\x01\xfe;\ -\xed\x00\x01\x17\xee\xfd\xff\x00T\xf0\x00\x01\x14\xc3\xf9\xff\ -\x01\xf0/\x02\x09\x91\xfe\xfa\xff\x01\xfa7\xf4\x00\x01(\ -\xef\xfd\xff\x01\xc2\x02\xec\x00\x00\xcb\xfd\xff\x00c\xf0\x00\ -\x01\x15\xc1\xf9\xff\x01\xf1-\x02\x09\x92\xfe\xfa\xff\x01\xf8\ -8\xf4\x00\x06\x01\x1bP\xc0\xff\xffI\xeb\x00\x00\xb0\xfd\ -\xff\x00m\xf0\x00\x01\x15\xc2\xf9\xff\x01\xf0.\x01\x09\x90\ -\xf9\xff\x01\xf98\xf0\x00\x02C\x87\x07\xeb\x00\x00\xb6\xfd\ -\xff\x00m\xf0\x00\x01\x15\xc2\xf9\xff\x01\xf0.\x02\x09\x90\ -\xfe\xfa\xff\x01\xf99\xd8\x00\x01\x09\xda\xfd\xff\x00b\xf0\ -\x00\x02\x15\xc3\xfe\xfa\xff\x01\xef-\x01\x08\x91\xf9\xff\x01\ -\xf97\xd8\x00\x018\xfe\xfd\xff\x00Q\xf0\x00\x02\x14\xc2\ -\xfe\xfa\xff\x01\xf0/\x02\x09\x91\xfe\xfa\xff\x01\xf98\xd8\ -\x00\x00\x9b\xfd\xff\x01\xfc2\xf0\x00\x01\x14\xc1\xf9\xff\x01\ -\xf0.\x02\x09\x91\xfe\xfa\xff\x01\xf98\xd9\x00\x01*\xf8\ -\xfd\xff\x01\xd5\x06\xf0\x00\x01\x14\xc1\xf9\xff\x01\xf0.\x02\ -\x09\x91\xfe\xfa\xff\x01\xf99\xd9\x00\x00\x8e\xfc\xff\x00\x80\ -\xef\x00\x01\x14\xc2\xf9\xff\x01\xf1.\x02\x09\x92\xfe\xfa\xff\ -\x01\xf99\xda\x00\x01\x07\xdf\xfd\xff\x01\xe5\x19\xef\x00\x01\ -\x15\xc1\xf9\xff\x01\xf0/\x02\x08\x93\xfe\xfa\xff\x01\xf98\ -\xda\x00\x01B\xfe\xfd\xff\x04\xef\xc8\xca\xad^\xf2\x00\x02\ -\x15\xc1\xfe\xfa\xff\x01\xef.\x02\x09\x91\xfe\xfa\xff\x01\xf9\ -8\xe0\x00\x06\x0c\x22Cg\x84\x9c\xda\xf7\xff\x01\xb9(\ -\xf4\x00\x01\x14\xc1\xf9\xff\x01\xef-\x01\x08\x8f\xf9\xff\x01\ -\xf99\xe6\x00\x07\x0d(Hn\x97\xbb\xde\xf4\xf1\xff\x01\ -\xd1\x0a\xf5\x00\x02\x15\xbf\xfe\xfa\xff\x01\xee.\x02\x09\x92\ -\xfe\xfa\xff\x01\xf89\xef\x00\x0a\x02\x0e\x1d:Pf~\ -\x9b\xc2\xdf\xf8\xea\xff\x00Q\xf5\x00\x01\x14\xc2\xf9\xff\x01\ -\xef.\x01\x09\x91\xf9\xff\x01\xf98\xf4\x00\x07\x059]\ -\x88\xaf\xd1\xe3\xee\xe2\xff\x00\x9f\xf5\x00\x01\x14\xc1\xf9\xff\ -\x01\xf0-\x02\x09\x90\xfe\xfa\xff\x01\xf98\xf6\x00\x02\x10\ -{\xd0\xe3\xff\x03\xfa\xf0\xdc\xed\xfd\xff\x00\xc1\xf5\x00\x01\ -\x14\xc1\xf9\xff\x01\xef,\x02\x09\x90\xfe\xfa\xff\x01\xf97\ -\xf7\x00\x01$\xd4\xe8\xff\x0a\xfb\xe5\xc7\x9fyR8)\ -\x18\x08\x9d\xfd\xff\x01\xe2\x0f\xf6\x00\x01\x15\xc2\xf9\xff\x01\ -\xf1.\x01\x09\x91\xf9\xff\x01\xf98\xf8\x00\x01\x05\xc8\xed\ -\xff\x07\xf7\xe2\xc0\x9crJ+\x0d\xf9\x00\x00\x8a\xfd\xff\ -\x01\xf8&\xf6\x00\x01\x14\xc3\xf9\xff\x01\xf1.\x02\x09\x92\ -\xfe\xfa\xff\x01\xf99\xf8\x00\x00`\xf4\xff\x09\xfd\xea\xcd\ -\xa7\x82jXC#\x0c\xf3\x00\x00k\xfc\xff\x00J\xf6\ -\x00\x01\x13\xc2\xf9\xff\x01\xf0.\x02\x09\x91\xfe\xfa\xff\x01\ -\xf97\xf8\x00\x00\xaf\xfa\xff\x07\xfb\xe6\xc6\xa3wR/\ -\x11\xeb\x00\x00D\xfc\xff\x00p\xf6\x00\x02\x15\xc2\xfe\xfa\ -\xff\x01\xf0.\x02\x09\x91\xfe\xfa\xff\x01\xf98\xf8\x00\x00\ -\xc1\xfd\xff\x04\xeaxJ+\x0f\xe5\x00\x01#\xf8\xfd\xff\ -\x00\x97\xf6\x00\x01\x14\xc1\xf9\xff\x01\xef.\x02\x09\x91\xfe\ -\xfa\xff\x01\xf88\xf8\x00\x00\xa1\xfd\xff\x01\xe5\x03\xe2\x00\ -\x01\x08\xdf\xfd\xff\x00\xbe\xf6\x00\x01\x15\xc1\xf9\xff\x01\xef\ --\x02\x09\x91\xfe\xfa\xff\x01\xf97\xf8\x00\x00y\xfd\xff\ -\x01\xfc.\xe1\x00\x00\xc0\xfd\xff\x01\xdd\x0a\xf7\x00\x02\x14\ -\xc2\xfe\xfa\xff\x01\xf1.\x02\x09\x91\xfe\xfa\xff\x01\xf98\ -\xf8\x00\x00M\xfc\xff\x00T\xf3\x00\x05?\x95\xb6\xa2f\ -\x0b\xf5\x00\x00\x96\xfd\xff\x01\xf7&\xf7\x00\x02\x15\xc2\xfe\ -\xfa\xff\x01\xef.\x02\x09\x90\xfe\xfa\xff\x01\xf98\xf8\x00\ -\x01.\xfd\xfd\xff\x00w\xf5\x00\x02\x08\x97\xfd\xfd\xff\x01\ -\xc5#\xf6\x00\x00r\xfc\xff\x00C\xf7\x00\x01\x14\xc1\xf9\ -\xff\x01\xef.\x02\x09\x92\xfe\xfa\xff\x01\xf97\xf8\x00\x01\ -\x10\xe8\xfd\xff\x00\xa2\xf6\x00\x01\x01\xaf\xfa\xff\x01\xe11\ -\xf7\x00\x00H\xfc\xff\x00i\xf7\x00\x01\x15\xc2\xf9\xff\x01\ -\xf0.\x01\x09\x91\xf9\xff\x01\xf98\xf7\x00\x00\xcb\xfd\xff\ -\x00\xc7\xf6\x00\x00?\xf8\xff\x00\xb7\xf7\x00\x01'\xfa\xfd\ -\xff\x00\x87\xf7\x00\x01\x15\xc1\xf9\xff\x01\xef.\x01\x09\x91\ -\xf9\xff\x01\xf97\xf7\x00\x00\xa7\xfd\xff\x01\xe3\x0d\xf7\x00\ -\x00\xa0\xf8\xff\x01\xe6\x0b\xf8\x00\x01\x0c\xe4\xfd\xff\x00\x9d\ -\xf7\x00\x01\x14\xc0\xf9\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\ -\x01\xf98\xf7\x00\x00|\xfd\xff\x01\xf5\x1f\xf7\x00\x00\xcb\ -\xf8\xff\x01\xf7\x22\xf7\x00\x00\xc3\xfd\xff\x00\xb3\xf7\x00\x01\ -\x13\xc0\xf9\xff\x01\xf0.\x02\x09\x91\xfe\xfa\xff\x01\xf97\ -\xf7\x00\x00W\xfd\xff\x01\xfc.\xf7\x00\x00\xc0\xf8\xff\x01\ -\xf3\x1e\xf7\x00\x00\xa0\xfd\xff\x01\xcb\x01\xf8\x00\x01\x14\xc1\ -\xf9\xff\x01\xf1.\x01\x09\x91\xf9\xff\x01\xfa8\xf7\x00\x01\ -0\xfd\xfd\xff\x00A\xf7\x00\x00\x82\xf8\xff\x01\xdc\x05\xf7\ -\x00\x00t\xfd\xff\x01\xe8\x14\xf8\x00\x01\x15\xc1\xf9\xff\x01\ -\xef-\x02\x09\x91\xfe\xfa\xff\x01\xf97\xf7\x00\x01\x14\xee\ -\xfd\xff\x00^\xf7\x00\x01$\xf9\xf9\xff\x00\x90\xf6\x00\x00\ -N\xfd\xff\x01\xfb-\xf8\x00\x01\x13\xc2\xf9\xff\x01\xf0-\ -\x02\x09\x91\xfe\xfa\xff\x01\xf99\xf7\x00\x01\x02\xcd\xfd\xff\ -\x00\x8a\xf6\x00\x00k\xfb\xff\x02\xfe\xa1\x0a\xf6\x00\x005\ -\xfc\xff\x00T\xf8\x00\x02\x15\xc2\xfe\xfa\xff\x01\xf1.\x01\ -\x09\x92\xf9\xff\x01\xf98\xf6\x00\x00\xb4\xfd\xff\x00\xae\xf5\ -\x00\x01P\xd7\xfd\xff\x01\xfa\x22\xf5\x00\x01(\xfa\xfd\xff\ -\x00x\xf8\x00\x01\x15\xc2\xf9\xff\x01\xf0-\x02\x09\x91\xfe\ -\xfa\xff\x01\xf86\xf6\x00\x00\xa1\xfd\xff\x01\xd1\x04\xf5\x00\ -\x00T\xfc\xff\x00H\xf5\x00\x01\x18\xf0\xfd\xff\x00\x9f\xf8\ -\x00\x02\x14\xc1\xfe\xfa\xff\x01\xf0-\x02\x09\x91\xfe\xfa\xff\ -\x01\xf98\xf6\x00\x00\x8c\xfd\xff\x01\xee\x18\xf5\x00\x00=\ -\xfc\xff\x00s\xf5\x00\x01\x06\xda\xfd\xff\x00\xc6\xf8\x00\x01\ -\x14\xc2\xf9\xff\x01\xf0.\x02\x09\x92\xfe\xfa\xff\x01\xf86\ -\xf6\x00\x00r\xfd\xff\x01\xfe4\xf5\x00\x01%\xf7\xfd\xff\ -\x00\x98\xf4\x00\x00\xba\xfd\xff\x01\xe3\x0f\xf9\x00\x01\x14\xc1\ -\xf9\xff\x01\xf0/\x01\x09\x91\xf9\xff\x01\xf98\xf6\x00\x00\ -F\xfc\xff\x00[\xf5\x00\x01\x08\xdc\xfd\xff\x00\x90\xf4\x00\ -\x00\x8f\xfd\xff\x01\xfb,\xf9\x00\x02\x15\xc1\xfe\xfa\xff\x01\ -\xf0.\x02\x09\x91\xfe\xfa\xff\x01\xf88\xf6\x00\x01'\xfa\ -\xfd\xff\x00\x80\xf4\x00\x00t\xfe\xff\x01\xee-\xf4\x00\x00\ -j\xfc\xff\x00K\xf9\x00\x01\x15\xc2\xf9\xff\x01\xf1-\x01\ -\x09\x91\xf9\xff\x01\xfa8\xf6\x00\x01\x0b\xe2\xfd\xff\x00\xab\ -\xf3\x00\x03D\x97\x8a)\xf3\x00\x00@\xfc\xff\x00u\xf9\ -\x00\x01\x13\xc2\xf9\xff\x01\xf0.\x01\x08\x90\xf9\xff\x01\xf9\ -8\xf5\x00\x00\xc4\xfd\xff\x01\xcd\x01\xe2\x00\x01 \xf7\xfd\ -\xff\x00\x9a\xf9\x00\x02\x14\xc2\xfe\xfa\xff\x01\xf0.\x01\x09\ -\x91\xf9\xff\x01\xf98\xf5\x00\x00\x9c\xfd\xff\x01\xeb\x15\xe1\ -\x00\x00\xd8\xfd\xff\x00\xbb\xf9\x00\x01\x13\xc2\xf9\xff\x01\xf0\ -.\x02\x08\x91\xfe\xfa\xff\x01\xf97\xf5\x00\x00t\xfd\xff\ -\x01\xfe1\xe4\x00\x03\x07\x1c=\xd4\xfd\xff\x00\xce\xf9\x00\ -\x02\x15\xc0\xfe\xfa\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\x01\ -\xf89\xf5\x00\x00N\xfc\xff\x00S\xec\x00\x09\x02\x12\x22\ -3Ei\x8f\xb7\xd7\xf1\xfb\xff\x00\xc9\xf9\x00\x01\x14\xc2\ -\xf9\xff\x01\xef-\x01\x09\x90\xf9\xff\x01\xf96\xf5\x00\x01\ -)\xfb\xfd\xff\x00z\xf2\x00\x08\x03\x1a7Z\x85\xa8\xd0\ -\xe9\xf6\xf4\xff\x00\x8b\xf9\x00\x01\x14\xc0\xf9\xff\x01\xf1,\ -\x01\x09\x90\xf9\xff\x01\xf97\xf5\x00\x01\x0f\xe8\xfd\xff\x00\ -\x92\xf9\x00\x08\x03\x0d\x1d\x0d\x0a\x0d\x0a \x0d\x0a <\ -title>icon / Pre\ -ferences / Globa\ -l\x0d\x0a <\ -desc>Created wit\ -h Sketch.\ -\x0d\x0a \x0d\x0a \ - \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x09\xba\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a <\ -title>icon / Pre\ -ferences / Camer\ -a\x0d\x0a <\ -desc>Created wit\ -h Sketch.\ -\x0d\x0a \x0d\x0a \ - \x0d\x0a \ - \ -\x0d\x0a \ - \x0d\x0a \x0d\ -\x0a\x0d\x0a\ -\x00\x00\x00\xab\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x0d\x08\x06\x00\x00\x00\xa0\xbb\xee$\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -UIDAT8Oc\xfc\xff\xff?\x03%\x80\x09\ -J\x93\x0d\xf0\x1a\xd0\xd8\xd8H\xd0y\x04]@\xc8\x10\ -\x940\xc0\xa7\xb8\xbe\xbe\x9e\x11\xcaD\x01D\x87\x01.\ -\xc3I\x0aDl\x86\x90d\x006o\x10m\x00\xae0\ -\xc0\x9b\x90`N\xc6\xa5\x19\x04\x08\xba\x00\x9ff\x10\x18\ -\xe8\xa4\xcc\xc0\x00\x00\x9d\xda\x22\x8d\x12\xa2\xae,\x00\x00\ -\x00\x00IEND\xaeB`\x82\ -\x00\x00\x05{\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a <\ -title>icon / Pre\ -ferences / viewp\ -ort\x0d\x0a \ - Created w\ -ith Sketch.\x0d\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \ -\x0d\x0a\x0d\x0a\ -\x00\x00\x00\xca\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x0d\x08\x06\x00\x00\x00\xa0\xbb\xee$\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ -\xa8d\x00\x00\x00_IDAT8O\xc5\x91\xc1\x0e\ -\xc0 \x08C\xc1\x1f\x07\xbe\x9c\x05'\x86\xc4\xb9\x89\x1e\ -\xf6.r\xa1\xd2\x16U\x15\x0c\x11\xb9\x87\x07\x88\x08\xdb\ -8\x80\xcc<]\x5c\xa1\xb4w\x9b\xff\x05z\x88\x19b\ -\xe0\xe9\x10\xbd\x11\x17I[\xf0E\x17*o\x1d\xcf\x88\ -\x16\x8eB\xb4\xcf\xab\xc0\xc9\x15\xfd\x82\x1d\x11c\xa81\ -\xfa\xfb\x06\xe0\x02\xfbk*\x0b\x22\xb70[\x00\x00\x00\ -\x00IEND\xaeB`\x82\ -\x00\x00\x06\x06\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a Icons / Edit\ -or / EMFX / Moti\ -on\x0d\x0a \ -\x0d\x0a \ -\x0d\x0a \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x00\xa0\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x0d\x08\x06\x00\x00\x00\xa0\xbb\xee$\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ -\xa8d\x00\x00\x005IDAT8Oclhh\ -\xf8\xcf\x80\x06\xea\xeb\xeb\x19\xa1L\x82\x80\x09J\x93\x0d\ -\xb0\xba\x80\x18\x00s%\xd9.hll\x04[L\xb1\ -\x17F\x0d\x185\x80\x81\x81\x81\x01\x00\xc0\x1c\x0a\x95\xd5\ -0\x97g\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x11\xc7\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a <\ -title>icon / Pre\ -ferences / Debug\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a \ - \x0d\x0a \ - \x0d\x0a \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x12>\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a <\ -title>icon / Pre\ -ferences / Exper\ -imental\x0d\ -\x0a Creat\ -ed with Sketch.<\ -/desc>\x0d\x0a \x0d\x0a <\ -path d=\x22M15.1323\ -36,4.99076918 C1\ -5.5178274,4.9907\ -6918 15.8485779,\ -5.34903984 16.04\ -13236,5.67028261\ - C16.2340693,5.9\ -9152539 16.20194\ -5,6.90832486 16.\ -0413236,7.261691\ -92 C15.7410536,7\ -.67565898 15.559\ -016,8.029019 15.\ -4952109,8.321771\ -96 C15.4376576,8\ -.58583981 15.459\ -0738,9.15831061 \ -15.5594594,10.03\ -91844 C17.808158\ -9,11.0992855 19.\ -0519645,13.44435\ -78 18.9234674,15\ -.9500515 C18.797\ -9586,19.0877716 \ -16.2512974,21.89\ -56839 13.1394393\ -,22.1143917 L12.\ -9162275,22.12557\ -98 L12.1999856,2\ -2.1255798 C8.794\ -81215,22.1255798\ - 6,19.0982307 6,\ -15.660933 C6,13.\ -3376593 7.088222\ -19,11.2234803 9.\ -09581042,10.1537\ -076 L9.3226506,1\ -0.0391844 L9.162\ -02921,8.06479886\ - L8.71228932,7.2\ -6169192 C8.55166\ -793,6.90832486 8\ -.64804077,5.9915\ -2539 8.84078643,\ -5.67028261 C9.04\ -316938,5.3811641\ -2 9.51285982,5.0\ -6205304 9.885797\ -26,5.00112201 L1\ -0.0060269,4.9907\ -6918 L15.132336,\ -4.99076918 Z M14\ -.5477747,9.22030\ -884 L10.3382049,\ -9.22030884 L10.3\ -087674,10.505628\ -3 C10.3087674,10\ -.5645034 10.2793\ -298,10.6233785 1\ -0.2204547,10.652\ -8161 C8.30701393\ -,11.5065051 7.07\ -063679,13.419945\ -9 7.07063679,15.\ -5394495 C7.07063\ -679,18.5420797 9\ -.54339107,20.985\ -3965 12.5754588,\ -20.8970838 C15.3\ -720262,20.838208\ -7 17.6681551,18.\ -5715173 17.78590\ -53,15.8043875 C1\ -7.9036555,13.626\ -0087 16.6378408,\ -11.5359426 14.63\ -60874,10.6528161\ - C14.5919311,10.\ -6307379 14.56433\ -34,10.5921011 14\ -.5532943,10.5493\ -247 L14.5477747,\ -10.5056283 L14.5\ -477747,9.2203088\ -4 Z M16.248292,1\ -5.5813393 C16.43\ -33656,15.5813393\ - 16.5920002,15.6\ -606566 16.697756\ -5,15.792852 C16.\ -8035128,15.92504\ -74 16.856391,16.\ -1101211 16.82995\ -19,16.2951947 C1\ -6.6977565,17.009\ -05 16.4069265,18\ -.0137353 15.6930\ -712,18.806908 C1\ -4.4693191,20.158\ -1342 12.6801281,\ -20.2309765 12.48\ -27708,20.2344561\ - L12.4146244,20.\ -2346187 C12.0973\ -553,20.2346187 1\ -0.4581319,20.155\ -3014 9.29481208,\ -18.806908 C8.501\ -63946,17.8815399\ - 8.2108095,16.92\ -97328 8.10505315\ -,16.2951947 C8.0\ -7861407,16.11012\ -11 8.10505315,15\ -.9250474 8.23724\ -859,15.792852 C8\ -.32185367,15.687\ -0957 8.44030078,\ -15.6321024 8.579\ -05311,15.6007985\ - L8.68671307,15.\ -5813393 L16.2482\ -92,15.5813393 Z \ -M13.525066,16.42\ -73901 C12.996284\ -3,16.4273901 12.\ -5468198,16.87685\ -46 12.5468198,17\ -.4056363 C12.520\ -3807,17.9344181 \ -12.9698452,18.38\ -38826 13.525066,\ -18.3838826 C14.0\ -538478,18.383882\ -6 14.5033123,17.\ -9344181 14.50331\ -23,17.4056363 C1\ -4.5033123,16.876\ -8546 14.0538478,\ -16.4273901 13.52\ -5066,16.4273901 \ -Z M10.5110101,16\ -.5331465 C10.114\ -4238,16.5331465 \ -9.79715474,16.82\ -39764 9.82359382\ -,17.2205627 C9.8\ -2359382,17.59070\ -99 10.1408629,17\ -.907979 10.51101\ -01,17.907979 C10\ -.8811573,17.9079\ -79 11.1984264,17\ -.5907099 11.1984\ -264,17.2205627 C\ -11.1984264,16.85\ -04155 10.8811573\ -,16.5331465 10.5\ -110101,16.533146\ -5 Z M11.0960618,\ -12.7156002 C11.6\ -351612,12.715600\ -2 12.0891397,13.\ -1695787 12.08913\ -97,13.7086781 C1\ -2.0891397,14.247\ -7775 11.6351612,\ -14.701756 11.096\ -0618,14.701756 C\ -10.5569624,14.70\ -1756 10.1029839,\ -14.2477775 10.10\ -29839,13.7086781\ - C10.1029839,13.\ -1695787 10.55696\ -24,12.7156002 11\ -.0960618,12.7156\ -002 Z M12.429623\ -6,10.4173342 C12\ -.8268547,10.4173\ -342 13.1389649,1\ -0.7294444 13.138\ -9649,11.1266755 \ -C13.1389649,11.5\ -239067 12.826854\ -7,11.8360169 12.\ -4296236,11.83601\ -69 C12.0323924,1\ -1.8360169 11.720\ -2822,11.5239067 \ -11.7202822,11.12\ -66755 C11.720282\ -2,10.7294444 12.\ -0323924,10.41733\ -42 12.4296236,10\ -.4173342 Z M14.4\ -300245,6.2371834\ -4 L10.39708,6.23\ -718344 C10.16157\ -96,6.23718344 9.\ -95551678,6.35493\ -364 9.83776658,6\ -.5609965 C9.7396\ -4141,6.73271554 \ -9.72328721,6.924\ -87734 9.77166837\ -,7.10341063 L9.8\ -0832903,7.208622\ -62 L10.39708,8.0\ -9174915 L10.3970\ -8,8.60845497 L14\ -.5919794,8.60845\ -497 L14.5919794,\ -8.09174915 L15.0\ -187755,7.2086226\ -2 C15.1365257,7.\ -00255976 15.1070\ -882,6.76705935 1\ -4.989338,6.56099\ -65 C14.8715878,6\ -.35493364 14.665\ -5249,6.23718344 \ -14.4300245,6.237\ -18344 Z M12.3728\ -762,6.5763594 C1\ -2.7984811,6.5763\ -594 13.1389649,6\ -.91684325 13.138\ -9649,7.34244807 \ -C13.1389649,7.76\ -805289 12.798481\ -1,8.10853674 12.\ -3728762,8.108536\ -74 C11.9472714,8\ -.10853674 11.606\ -7876,7.76805289 \ -11.6067876,7.342\ -44807 C11.606787\ -6,6.91684325 11.\ -9472714,6.576359\ -4 12.3728762,6.5\ -763594 Z M14.933\ -6824,2 C15.64302\ -38,2 16.2388706,\ -2.53909944 16.23\ -88706,3.27681446\ - C16.2388706,4.0\ -1452947 15.64302\ -38,4.58200257 14\ -.9336824,4.58200\ -257 C14.2243411,\ -4.58200257 13.62\ -84943,4.04290313\ - 13.6284943,3.30\ -518811 C13.62849\ -43,2.56747309 14\ -.2243411,2 14.93\ -36824,2 Z\x22 id=\x22C\ -ombined-Shape\x22 f\ -ill=\x22#FFFFFF\x22 fi\ -ll-rule=\x22nonzero\ -\x22>\x0d\x0a <\ -/g>\x0d\x0a\x0d\x0a\ -\x00\x00\x04\x17\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a <\ -title>icon / Pre\ -ferences / Files\ -\x0d\x0a Created with\ - Sketch.\x0d\ -\x0a \x0d\x0a \ - \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x03i\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a \x0d\x0a <\ -title>icon / Pre\ -ferences / Gizmo\ -s\x0d\x0a <\ -desc>Created wit\ -h Sketch.\ -\x0d\x0a \x0d\x0a \ - \x0d\x0a \x0d\x0a\ -\x0d\x0a\ -\x00\x00\x00[\ -\x00\ -\x00\x01Fx\x9c\x8d\x8c1\x0a\x800\x10\x04\xe7\xacD\ -P;\xeb\x94\x96>\xc1\xa7\xf9d\xad\x05\xcf\x8d\x88B\ -\xc0\x98Y\x86\x83cY\xa80B\x80V\x99\x0c\x06`\ -\x94z1KS\x22\x0b/\xd5m\xc4\xdd)\xa2\x93\xcd\ -\xb7\xfd~Pk5\xde\x5c\xef\xdaI\xf0\x12\xb6\xbc+\ -\xf6\xf8\xd7M9\x01\x0cb\x81\xee\ -\x00\x00\x00[\ -\x00\ -\x00\x01Fx\x9c\xc5\xc81\x0e@@\x18D\xe1\xf9W\ -!**\xad-\x95n\xc0\xcd\xec\xd1\x1c\xc5\x11\x94\x0a\ -\xf1\xec\xc6\x8a\x0bH|\x93\xd7\x8c\xe4d\xf2^jT\ -i0\xa9\x95\xd4\xc7\xe2\xa5)fqI\xd0\xcb\xe5\x12\ -@\x7f\xe3q\xcep\x8c\xb0w\xb0\xd5\xb0\x96\xb0\x14\x10\ -\xec\xfe\xbe.\xbb\x00\x9d\x16jC\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x0c\x00\x04\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x07\xf8\x00\x00\x07\xf8\x00\x00\x0f\xfc\x00\x00\x0f\xfc\ -\x00\x00\x1f\xfc\x00\x00\x1f\xfe\x00\x00?\xfe\x00\x00/\xfe\ -\x00\x00o\xfe\x00\x00\xef\xfe\x00\x00\xcf\xf6\x00\x00\x0d\xb6\ -\x00\x00\x0d\xb4\x00\x00\x0d\xb0\x00\x00\x0d\x80\x00\x00\x0c\x00\ -\x00\x00\x0c\x00\x00\x00\x0c\x00\x00\x00\x0c\x00\x00\x00\x0c\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf0\x03\ -\xff\xff\xf0\x03\xff\xff\xf0\x03\xff\xff\xe0\x01\xff\xff\xe0\x01\ -\xff\xff\xc0\x01\xff\xff\xc0\x00\xff\xff\x80\x00\xff\xff\x80\x00\ -\xff\xff\x00\x00\xff\xfe\x00\x00\xff\xfe\x00\x00\xff\xfe \x00\ -\xff\xff\xe0\x01\xff\xff\xe0\x03\xff\xff\xe0\x0f\xff\xff\xe0\x7f\ -\xff\xff\xe1\xff\xff\xff\xe1\xff\xff\xff\xe1\xff\xff\xff\xe1\xff\ -\xff\xff\xf3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x00\xa7\ -\x00\ -\x00\x0c\xbex\x9c\xed\x921\x0a\xc20\x18\x85_t\xe8\ -Rp\x13\xc7\x8e=\x867\xf0J\x1e\xc1cx\x0c\xc1\ -\x8btsut(<_\x8bC1\x12K\x93\xdfA\ -\xfe\x0f\x1e\x09\x09\xf9^\x02\x01V\x08h\x1a\x8c\xe3\xb9\ -\x06\xb6\x00ZEK\xd8+\x01;\x8c\xd4p\x1c\xc7q\ -\x9c?\x85\x11\xa6\xf2\x82\xfe\x8f\xf2R\x15\x09\xf9\x0f\xfc\ -\x99\x15_\xe59\xfe\xa9\xc1\xce?\xe7!\x8b+\xe2\xb7\ -\xbci\x8b\xf8c\xdbt\x92}\xf7\x94\xbf\xa0\xdc\x08k\ -\xbf\x11\xe9\x0f9\x8f~C>*\xf2\xaetk\xf22\ -$\x90G\x05C\xd4rR\xba\xf0\xda?\x90W\x9d\xbb\ -)O\x85i\xaa%\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x06\x00\x06\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x000\x00\x00\x000\x00\x00\x000\x00\ -\x00\x01\xfe\x00\x00\x01\xfe\x00\x00\x000\x00\x00\x000\x00\ -\x00\x001\x80\x00\x00\x01\x80\x00\x00\x03\x00\x00\x00\x03\x00\ -\x00\x00\x06\x00\x00\x00F\x00\x00\x00l\x00\x00\x00|\x00\ -\x00\x00\x7f\x80\x00\x00\x7f\x00\x00\x00~\x00\x00\x00|\x00\ -\x00\x00x\x00\x00\x00p\x00\x00?\xe0\x00\x00 \x00\ -\x00 \x00\x00 \x00\x00 \x00\x00 \x00\ -\x00 \x00\x00 \x00\x00?\xe0\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xcf\xff\xff\xff\xcf\xff\xff\xff\xcf\xff\ -\xff\xfe\x01\xff\xff\xfe\x01\xff\xff\xff\xcf\xff\xff\xff\xce\x7f\ -\xff\xff\xcc?\xff\xff\xfc?\xff\xff\xf8\x7f\xff\xffx\x7f\ -\xff\xff0\xff\xff\xff\x10\xff\xff\xff\x01\xff\xff\xff\x00\x1f\ -\xff\xff\x00?\xff\xff\x00\x7f\xff\xff\x00\xff\xff\xff\x01\xff\ -\xff\xff\x03\xff\xff\x80\x07\xff\xff\x80\x0f\xff\xff\x9f\xcf\xff\ -\xff\x9f\xcf\xff\xff\x9f\xcf\xff\xff\x9f\xcf\xff\xff\x9f\xcf\xff\ -\xff\x9f\xcf\xff\xff\x9f\xcf\xff\xff\x80\x0f\xff\xff\x80\x0f\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x00`\ -\x00\ -\x00\x01Fx\x9cc``b`dPP``\xe0\ -f\xe0e0`d`\x10c``\xd0\x00b\xa0\x10\ -\x83\x03\x103\x02!\x0840 \x00\x13\x14\x83\xc0\xff\ -\xff\xff\x19H\x025@\x1c\x82\x03\x0b\xe0\x91\xab\xc1m\ -\xe4\x7fR@3&\xfe\xdd\xbc\xff\xff\xe7\xe6\xf9\xff\x1f\ -0\xf0\x83i\x10\x1f\x9b:\x5c\x00\x00\x81\xb3~\xf0\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x0f\x00\x0f\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x03\x80\x00\x00\x02\x80\x00\x00\x02\x80\ -\x00\x00\x02\x80\x00\x00\x02\x80\x00\x00\x04@\x00\x00\x0c`\ -\x00\x03\xf0\x1f\x80\x02\x01\x00\x80\x03\xf0\x1f\x80\x00\x0c`\ -\x00\x00\x04@\x00\x00\x02\x80\x00\x00\x02\x80\x00\x00\x02\x80\ -\x00\x00\x02\x80\x00\x00\x03\x80\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\ -\xff\xff\xfe\xff\xff\xff\xfc\x7f\xff\xff\xfc\x7f\xff\xff\xfc\x7f\ -\xff\xff\xfc\x7f\xff\xff\xfc\x7f\xff\xff\xf9?\xff\xff\xf1\x1f\ -\xff\xfc\x03\x80\x7f\xf0\x1e\xf0\x1f\xfc\x03\x80\x7f\xff\xf1\x1f\ -\xff\xff\xf9?\xff\xff\xfc\x7f\xff\xff\xfc\x7f\xff\xff\xfc\x7f\ -\xff\xff\xfc\x7f\xff\xff\xfc\x7f\xff\xff\xfe\xff\xff\xff\xfe\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x10\x00\x0d\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\ - \x01\x00\x00@\x00\xc0\x01\x80\x008\x0e\x00\x00\x07\xf0\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf9\xff\xff\xcf\xf8\xff\xff\ -\x8f\xfc?\xfe\x1f\xfe\x07\xe0?\xff\x00\x00\x7f\xff\xc0\x01\ -\xff\xff\xf8\x0f\xff\xff\xff\xff\xff\xff\xff\x7f\xff\xff\xfe?\ -\xff\xff\xff\x7f\xff\xff\xff\x7f\xff\xff\xff\x7f\xff\xff\xfe?\ -\xff\xff\xff\x7f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x00X\ -\x00\ -\x00\x01Fx\x9c\xc5\xcd1\x0a\x800\x0cF\xe1\x97.\ -\xe2\xa4\x93k;:z\x83z\xb3\xf6\xc8\xbdA\xfc\x0b\ -\x05A\x9c\x5c|\xe1#\x90\xa1\x85\x80\x91\x12\xac\xcc\x1c\ -\x06\x1b\xb0\x8bN\x9cb\x9a^\xe5.\x0c=w\xe7\xef\ -\xfc\xa5V>+\x92\x1bDYd\x1a;\xea\xd9,\xe5\ -\xf9\xd7\x05'\x93i\xe6\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x03\x00\x03\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x1e\x00\x00\x00\x1e\x00\ -\x00\x00\x1e\x00\x00\x00\x1e\x00\x00\x18\x1e\x00\x00\x14\x0c\x00\ -\x00\x12\x00\x00\x00\x11\xe0\x00\x00\x10\x10\x00\x00\x10 \x00\ -\x00\x10@\x00\x00\x10\x80\x00\x00\x11\x00\x00\x00\x12\x00\x00\ -\x00\x14\x00\x00\x00\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xf3\xff\xff\xff\xe1\xff\xff\xff\xc0\xff\xff\xff\xc0\xff\ -\xff\xff\xc0\xff\xff\xff\xc0\xff\xff\xe7\xc0\xff\xff\xe3\xe1\xbf\ -\xff\xe1\xf3\xbf\xff\xe0\x1e\x0f\xff\xe0\x0f\xbf\xff\xe0\x1f\xbf\ -\xff\xe0?\xff\xff\xe0\x7f\xff\xff\xe0\xff\xff\xff\xe1\xff\xff\ -\xff\xe3\xff\xff\xff\xe7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x00\x00\x18\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\xf0\x00\x00\x00\x88\x00\x00\x00\x84\x00\x00\x00\x82\x00\x00\ -\x00A\x00\x00\x00 \x80\x00\x00\x10@\x00\x00\x0b\xa0\x00\ -\x00\x05\xd6\x00\x00\x02\xe9\x00\x00\x01a\x00\x00\x00\x81\x00\ -\x00\x00@\x80\x00\x00\x80@\x00\x00\x80 \x00\x00p \ -\x00\x00\x08 \x00\x00\x04@\x00\x00\x03\x80\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\x0f\xff\xff\xff\x07\xff\xff\xff\x03\xff\xff\xff\x01\xff\xff\ -\xff\x80\xfc\xff\x0f\xc0~|c\xe0?1\xf9\xf0\x1f\x87\ -\xff\xf8\x09\xfd\xff\xfc\x00\xf8\xff\xfe\x00\xf0\x7f\xff\x00\xfd\ -\xdb\xff\x80}\xdb\xff\x00=\xdb\xff\x00\x1d\xc3\xff\x80\x1d\ -\xdb\xff\xf0\x1d\xdb\xff\xf8=\xdb\xff\xfcp\x7f\xff\xff\xf8\ -\xff\xff\xff\xfd\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x01\x00\x01\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x18\x00\x00\x00\x18\x00\x00\x00\x18\x00\x00\x00\xff\x00\x00\ -\x00\xff\x00\x00\x00\x18\x00\x00\x00\x18\x00\x00\x00\x18\xc0\x00\ -\x00\x00\xc0\x00\x00\x01\x80\x00\x00\x01\x80\x00\x00\x03\x00\x00\ -\x00#\x00\x00\x006\x00\x00\x00>\x00\x00\x00?\xc0\x00\ -\x00?\x80\x00\x00?\x00\x00\x00>\x00\x00\x00<\x00\x00\ -\x008\x00\x00\x000\x00\x00\x00 \x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xe7\xff\xff\xff\xe7\xff\xff\xff\xe7\xff\xff\xff\x00\xff\xff\ -\xff\x00\xff\xff\xff\xe7\xff\xff\xff\xe7?\xff\xff\xe6\x1f\xff\ -\xff\xfe\x1f\xff\xff\xfc?\xff\xff\xbc?\xff\xff\x98\x7f\xff\ -\xff\x88\x7f\xff\xff\x80\xff\xff\xff\x80\x0f\xff\xff\x80\x1f\xff\ -\xff\x80?\xff\xff\x80\x7f\xff\xff\x80\xff\xff\xff\x81\xff\xff\ -\xff\x83\xff\xff\xff\x87\xff\xff\xff\x8f\xff\xff\xff\x9f\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x0f\x00\x0f\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\xe0\ -\x00\x00\x18\x18\x00\x00 \x04\x00\x00@\x02\x00\x00\x80\x01\ -\x00\x01\x00\x00\x80\x01\x00\x00\x80\x02\x00\x00@\x02\x00\x00\ -@\x02\x02\x00@\x02\x02\x00\x00\x02\x03\x00\x00\x02\x00\x00\ -\x00\x01\x00\x7f\x80\x01\x00 \x80\x00\x80\x10\x80\x00@\x08\ -\x80\x00 \x04\x80\x00\x18\x1a\x80\x00\x07\xe1\x80\x00\x00\x00\ -\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf8\x1f\ -\xff\xff\xe0\x07\xff\xff\xc7\xe3\xff\xff\x9f\xf9\xff\xff?\xfc\ -\xff\xfe\x7f\xfe\x7f\xfe\x7f\xfe\x7f\xfc\xff\xff?\xfc\xff\xff\ -?\xfc\xfc\x7f?\xfc\xfc\x7f\xff\xfc\xfc\x7f\xff\xfc\xff\xff\ -\xff\xfe\x7f\x80\x7f\xfe\x7f\xc0\x7f\xff?\xe0\x7f\xff\x9f\xf0\ -\x7f\xff\xc7\xe0\x7f\xff\xe0\x04\x7f\xff\xf8\x1e\x7f\xff\xff\xff\ -\x7f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x0f\x00\x0f\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x80\x00\x00\x04@\ -\x00\x00\x08 \x00\x00\x02\x80\x00\x00\x22\x88\x00\x00B\x84\ -\x00\x00\x9e\xf2\x00\x01\x00\x01\x00\x00\x9e\xf2\x00\x00B\x84\ -\x00\x00\x22\x88\x00\x00\x02\x80\x00\x00\x08 \x00\x00\x04@\ -\x00\x00\x02\x80\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff\xfc\x7f\xff\xff\xf8?\ -\xff\xff\xf0\x1f\xff\xff\xfc\x7f\xff\xff\xdcw\xff\xff\x9cs\ -\xff\xff\x00\x01\xff\xfe\x00\x00\xff\xff\x00\x01\xff\xff\x9cs\ -\xff\xff\xdcw\xff\xff\xfc\x7f\xff\xff\xf0\x1f\xff\xff\xf8?\ -\xff\xff\xfc\x7f\xff\xff\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x04\x00\x06\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x03\xe0\x00\x00\x03\xe8\x00\x00\x03\xe0\x00\x00\x03\xe8\ -\x00\x00\x00\x08\x00\x00\x01\xf0\x00\x00\x0c\x00\x00\x00\x0c\x00\ -\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\x00\x00\x00\x00\ -\x00\x1f\x00\x00\x00\x13@\x00\x00\x13@\x00\x00\x1f@\x00\ -\x00\x00@\x00\x00\x0f\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf8\x0f\ -\xff\xff\xf8\x07\xff\xff\xf8\x03\xff\xff\xf8\x03\xff\xff\xf8\x03\ -\xff\xff\xf8\x03\xff\xff\xf0\x03\xff\xff\xe0\x03\xff\xff\xe1\xff\ -\xff\xff\x93\xff\xff\xff\x0f\xff\xff\xff\x0f\xff\xff\xc0\x1f\xff\ -\xff\xc0?\xff\xff\xc0\x1f\xff\xff\xc0\x1f\xff\xff\xc0\x1f\xff\ -\xff\xc0\x1f\xff\xff\xe0\x1f\xff\xff\xf0\x1f\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x01\x00\x01\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\ -\x00\x0e\x00\x00\x00\x0e\x00\x00\x00\x00\x80\x00\x00\x01@\x00\ -\x00\x00\xa0\x00\x00\x00P\x00\x00\x00(\x00\x00\x00\x14\x00\ -\x00\x00\x0a\x00\x00\x00\x05\x00\x00\x00\x02\x80\x00\x00\xc1\x00\ -\x00\x00\xc0\xe0\x00\x01\x80\xe0\x00\x01\x80\xe0\x00\x03\x00\x00\ -\x00#\x00\x00\x006\x00\x00\x00>\x00\x00\x00?\xc0\x00\ -\x00?\x80\x00\x00?\x00\x00\x00>\x00\x00\x00<\x00\x00\ -\x008\x00\x00\x000\x00\x00\x00 \x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xf1\xff\xff\xff\xe0\xff\xff\ -\xff\xe0\xff\xff\xff\xe0\xff\xff\xff\xf0\x7f\xff\xff\xfe?\xff\ -\xff\xff\x1f\xff\xff\xff\x8f\xff\xff\xff\xc7\xff\xff\xff\xe3\xff\ -\xff\xff\xf1\xff\xff\xff\xf8\xff\xff\xff<\x7f\xff\xfe\x1e\x1f\ -\xff\xfe\x1e\x0f\xff\xfc>\x0f\xff\xbc>\x0f\xff\x98\x7f\x1f\ -\xff\x88\x7f\xff\xff\x80\xff\xff\xff\x80\x0f\xff\xff\x80\x1f\xff\ -\xff\x80?\xff\xff\x80\x7f\xff\xff\x80\xff\xff\xff\x81\xff\xff\ -\xff\x83\xff\xff\xff\x87\xff\xff\xff\x8f\xff\xff\xff\x9f\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x01\x00\x01\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00\x00\ -\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\ -\x00\x00\xc0\x00\x00\x01\x80\x00\x00\x01\x80\x00\x00\x03\x00\x00\ -\x00#\x00\x00\x006\x00\x00\x00>\x00\x00\x00?\xc0\x00\ -\x00?\x80\x00\x00?\x00\x00\x00>\x00\x00\x00<\x00\x00\ -\x008\x00\x00\x000\x00\x00\x00 \x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\ -\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff?\xff\xff\xfe\x1f\xff\ -\xff\xfe\x1f\xff\xff\xfc?\xff\xff\xbc?\xff\xff\x98\x7f\xff\ -\xff\x88\x7f\xff\xff\x80\xff\xff\xff\x80\x0f\xff\xff\x80\x1f\xff\ -\xff\x80?\xff\xff\x80\x7f\xff\xff\x80\xff\xff\xff\x81\xff\xff\ -\xff\x83\xff\xff\xff\x87\xff\xff\xff\x8f\xff\xff\xff\x9f\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x00\xc9\ -\x00\ -\x00\x0c\xbex\x9cc``b`dPP`\x00\x83\ -\x15<\x0c\x0cb@Z\x03\x88AB\x0e@\xcc\xc8 \ -\x01\x91\xe4a\x18@`<\x93\x04D\xba\xe13\xff\xff\ -g\x98I4\x22\xd5\x0a\x88\xf9g\x88C\xa3\xe6\x8f\x9a\ -?\x10\xe6\x13\x8f\xc8\xcbb4\xcc\xbf\xc3\x0e\xfc\x07\x83\ -!j\xfe\xa8\xe31\xcd\xa4\xb5\xf9\x103i\x142\xff\ -Q\x01\xad\xcd\xa7\xbaE45\x1c\xab\xf9T4\x1c\xd3\ -|\xea\x1a\x8ef>\xd5\x0dG6\x9f\x16\x863\xd0\xa5\ -\xc0\xa1\x9d\xe1C\x1a\x80\xc2\xfd\x01\x83\xfd\xff\x03\x0c\xf2\ -\x041H\x1d\x18\x00\xa9\x7f\xf2\x10\xfc\x07\xc8\xde\x03\xc4\ -3\xea\xff\xff\xef\x00\xe2\x06\xa0t\x03?\x10\x03\xe5\x1a\ -\x80\xe2\x0dP\xb1F n\x06\xe2v \xee\x07\xe2\xf9\ -\xd0\x04\x05\x00\x85\x1b/\xe1\ -\x00\x00\x00\x5c\ -\x00\ -\x00\x01Fx\x9cc``b`dPP``\x10\ -`\xe0d0`d`\x10c``\xd0\x00b\xa0\x10\ -\x83\x03\x103\x02!\x0840 \x00\x13\x14\x83\xc0\xff\ -\xff\xff\x19\x06\x1a\xfc\x87\x81\x1f\xf2\xd4\xc7\x0d\x8c\xff\xff\ -\x1f`\xfe\xff\xff\x01\xfb\xff\xff\x1f\xf8!b\x7f\xec\xff\ -\xff\xffW\x0f\xb7\x16\x00\xb3\x96jC\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x07\x00\x18\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x01\xe0\x00\x00\x01\x10\x00\x00\x01\x08\x00\x00\x01\x04\x00\ -\x00\x00\x82\x00\x00\x00A\x00\x00\x00 \x80\x00\x00\x17@\ -\x00\x00\x0b\xac\x00\x00\x05\xd2\x00\x00\x02\xc2\x00\x00\x01\x02\ -\x00\x00\x00\x81\x00\x00\x01\x00\x80\x00\x01\x00@\x00\x00\xe0\ -@\x00\x00\x10@\x00\x00\x08\x80\x00\x00\x07\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xfe\x1f\xff\xff\xfe\x0f\xff\xff\xfe\x07\xff\xff\xfe\x03\xff\ -\xff\xff\x01\xff\xff\xff\x80\xff\xff\xff\xc0\x7f\xff\xff\xe0?\ -\xff\xff\xf0\x13\xff\xff\xf8\x01\xff\xff\xfc\x01\xff\xff\xfe\x01\ -\xff\xff\xff\x00\xff\xff\xfe\x00\x7f\xff\xfe\x00?\xff\xff\x00\ -?\xff\xff\xe0?\xff\xff\xf0\x7f\xff\xff\xf8\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x11\x00\x0d\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff?\xff\xff\xff\x1f\xff\ -\xff\xff\x8f\xff\xff\xff\xc4\x0f\xff\xff\xe1\xe7\xff\xff\xf3\xf3\ -\xff\xff\xe3\xf9\xff\xff\xef\xfd\xff\xff\xef\xfd\xff\xff\xef\xfd\ -\xff\xff\xef\xfd\xff\xff\xe7\xf9\xff\xff\xf3\xf3\xff\xff\xf9\xe7\ -\xff\xff\xfc\x0f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x07\x00\x0e\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\xf8\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xf7\xff\xff\xff\xe7\xff\xff\xff\xe7\ -\xff\xff\xff\x0f\xff\xff\xfe\x7f\xff\xff\xfe\x7f\xff\xfe\xfe\xff\ -\xff\xff~\xff\xff\xfe \x01\xff\xff\x00\x01\xff\xfe0\x03\ -\xff\xff~\xff\xff\xfe\xfc\x7f\xff\xff\xfc\x7f\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x03\x00\x03\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x18\x00\x00\x00\x14\x00\x00\x00\x12\x00\x00\ -\x00\x11\xf8\x00\x00\x10\x08\x00\x00\x10\x10\x00\x00\x10 \x00\ -\x00\x10@\x00\x00\x10\x80\x00\x00\x11\x00\x00\x00\x12\x00\x00\ -\x00\x14\x00\x00\x00\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xe7\xff\xff\xff\xe3\xff\xff\xff\xe1\xff\xff\ -\xff\xe0\x07\xff\xff\xe0\x07\xff\xff\xe0\x0f\xff\xff\xe0\x1f\xff\ -\xff\xe0?\xff\xff\xe0\x7f\xff\xff\xe0\xff\xff\xff\xe1\xff\xff\ -\xff\xe3\xff\xff\xff\xe7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x10\x00\x08\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xf0\x00\x00\x07\xf0\ -\x00\x00\x0f\xf8\x00\x00\x1f\xf8\x00\x00\x1f\xfc\x00\x00?\xfc\ -\x00\x00w\xfc\x00\x00g\xfe\x00\x00\x07\xf6\x00\x00\x0d\xb6\ -\x00\x00\x0d\xb2\x00\x00\x19\xb0\x00\x00\x19\xb0\x00\x00\x01\x80\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xfc\x0f\xff\xff\xf8\x07\xff\xff\xf0\x07\ -\xff\xff\xe0\x03\xff\xff\xc0\x03\xff\xff\xc0\x01\xff\xff\x80\x01\ -\xff\xff\x00\x01\xff\xff\x00\x00\xff\xff\x90\x00\xff\xff\xe0\x00\ -\xff\xff\xe0\x00\xff\xff\xc0\x05\xff\xff\xc0\x07\xff\xff\xe4\x0f\ -\xff\xff\xfe\x7f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x03\x00\x03\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x0a\x00\ -\x00\x00\x11\x00\x00\x00*\x80\x00\x18[@\x00\x14\x80 \ -\x00\x12[@\x00\x11\xea\x80\x00\x10\x11\x00\x00\x10*\x00\ -\x00\x10D\x00\x00\x10\x80\x00\x00\x11\x00\x00\x00\x12\x00\x00\ -\x00\x14\x00\x00\x00\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfb\xff\xff\xff\xf1\xff\ -\xff\xff\xe0\xff\xff\xff\xd1\x7f\xff\xe7\x80?\xff\xe3\x00\x1f\ -\xff\xe1\x80?\xff\xe0\x11\x7f\xff\xe0\x00\xff\xff\xe0\x11\xff\ -\xff\xe0;\xff\xff\xe0\x7f\xff\xff\xe0\xff\xff\xff\xe1\xff\xff\ -\xff\xe3\xff\xff\xff\xe7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x0f\x00\x0f\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00?\xff\x80\x00!\x00\x80\x00!*\x80\x00!T\ -\x80\x00!*\x80\x00!T\x80\x00!*\x80\x00!T\ -\x80\x00!\x00\x80\x00!\xfe\x80\x00 \x00\x80\x00 \x00\ -\x80\x00 \x00\x80\x00 \x00\x80\x00?\xff\x80\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xc0\x00\x7f\xff\xc0\x00\x7f\xff\xce\x00\x7f\xff\xce\x00\ -\x7f\xff\xce\x00\x7f\xff\xce\x00\x7f\xff\xce\x00\x7f\xff\xce\x00\ -\x7f\xff\xce\x00\x7f\xff\xce\x00\x7f\xff\xcf\xfe\x7f\xff\xcf\xfe\ -\x7f\xff\xcf\xfe\x7f\xff\xc0\x00\x7f\xff\xc0\x00\x7f\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x03\x00\x03\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x00\x00\x00\x14\x00\x00\ -\x00\x12\x00\x00\x00\x15\xf0\x00\x00\x16\x10\x00\x00\x17\xa0\x00\ -\x00\x17@\x00\x00\x16\x80\x00\x00\x15\x00\x00\x00\x12\x00\x00\ -\x00\x14\x00\x00\x00\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe7\xff\xff\xff\xe3\xff\xff\ -\xff\xe1\xff\xff\xff\xe0\x0f\xff\xff\xe0\x0f\xff\xff\xe0\x1f\xff\ -\xff\xe0?\xff\xff\xe0\x7f\xff\xff\xe0\xff\xff\xff\xe1\xff\xff\ -\xff\xe3\xff\xff\xff\xe7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x06\x00\x06\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x01\xfe\x00\x00\x01\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x01\x80\x00\x00\x01\x80\x00\x00\x03\x00\x00\x00\x03\x00\ -\x00\x00\x06\x00\x00\x00F\x00\x00\x00l\x00\x00\x00|\x00\ -\x00\x00\x7f\x80\x00\x00\x7f\x00\x00\x00~\x00\x00\x00|\x00\ -\x00\x00x\x00\x00\x00p\x00\x00?\xe0\x00\x00 \x00\ -\x00 \x00\x00 \x00\x00 \x00\x00 \x00\ -\x00 \x00\x00 \x00\x00?\xe0\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xfe\x01\xff\xff\xfe\x01\xff\xff\xff\xff\xff\xff\xff\xfe\x7f\ -\xff\xff\xfc?\xff\xff\xfc?\xff\xff\xf8\x7f\xff\xffx\x7f\ -\xff\xff0\xff\xff\xff\x10\xff\xff\xff\x01\xff\xff\xff\x00\x1f\ -\xff\xff\x00?\xff\xff\x00\x7f\xff\xff\x00\xff\xff\xff\x01\xff\ -\xff\xff\x03\xff\xff\x80\x07\xff\xff\x80\x0f\xff\xff\x9f\xcf\xff\ -\xff\x9f\xcf\xff\xff\x9f\xcf\xff\xff\x9f\xcf\xff\xff\x9f\xcf\xff\ -\xff\x9f\xcf\xff\xff\x9f\xcf\xff\xff\x80\x0f\xff\xff\x80\x0f\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x0b\x00\x09\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x00\x00\x00\x18\ -\x00\x00\x000\x00\x00\x000\x00\x00\x00`\x00\x00\x04`\ -\x00\x00\x06\xc0\x00\x00\x07\xc0\x00\x00\x07\xf8\x00\x00\x07\xf0\ -\x00\x00\x07\xe0\x00\x00\x07\xc0\x00\x00\x07\x80\x00\x01\xff\x00\ -\x00\x01\x01\x00\x00\x01\x01\x00\x00\x01\x01\x00\x00\x01\x01\x00\ -\x00\x01\x01\x00\x00\x01\x01\x00\x00\x01\x01\x00\x00\x01\xff\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xe7\xff\xff\xff\xc3\xff\xff\xff\xc3\ -\xff\xff\xff\x87\xff\xff\xf7\x87\xff\xff\xf3\x0f\xff\xff\xf1\x0f\ -\xff\xff\xf0\x1f\xff\xff\xf0\x01\xff\xff\xf0\x03\xff\xff\xf0\x07\ -\xff\xff\xf0\x0f\xff\xff\xf0\x1f\xff\xfc\x00?\xff\xfc\x00\x7f\ -\xff\xfc\xfe\x7f\xff\xfc\xfe\x7f\xff\xfc\xfe\x7f\xff\xfc\xfe\x7f\ -\xff\xfc\xfe\x7f\xff\xfc\xfe\x7f\xff\xfc\xfe\x7f\xff\xfc\x00\x7f\ -\xff\xfc\x00\x7f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x00V\ -\x00\ -\x00\x01Fx\x9c\xc5\xc8\xb1\x0d\x800\x0cD\xd1\xef4\ -\x88\x0a*\xda\xa4\xa4d\x03\xd8\xcc\x8c\x9c\x0d\xccE\x8a\ -D\x01\x15\x0d\xdfz\xb2t\x900J\x81\x99\x91\xcd`\ -\x01V\xd1\xc4!\xa6k\x9d\xdc\xa5\xae\x15\x11\xfc]<\ -s\xd9+d\x99d\xe8?W\xd7\xee\xe1\x12_\xbcu\ -\x01\xec\xfbi\xe6\ -\x00\x00\x01F\ -\x00\ -\x00\x02\x00\x01\x00 \x00\x00\x10\x00\x11\x000\x01\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ -\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ -\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\xfc\x1f\xc0\x00\x04\x10\ -\x00\x00\x04\x10\x00\x00\x04\x10\x00\x00\x04\x10\x00\x00\x04\x10\ -\x00\x00\x07\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\xfc\x01\xc0\x1f\xfc\x01\xc0\x1f\xfc\x01\xc0\ -\x1f\xff\xf1\xc7\xff\xff\xf1\xc7\xff\xff\xf1\xc7\xff\xff\xf0\x07\ -\xff\xff\xf0\x07\xff\xff\xf0\x07\xff\xff\xff\x7f\xff\xff\xfe?\ -\xff\xff\xff\x7f\xff\xff\xff\x7f\xff\xff\xff\x7f\xff\xff\xfe?\ -\xff\xff\xff\x7f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ -\xff\xff\xff\xff\xff\ -\x00\x00\x00\xef\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ -\x00\x00\x00\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\ -\x01\xc7o\xa8d\x00\x00\x00\x18tEXtSof\ -tware\x00paint.net \ -4.0.6\xfc\x8cc\xdf\x00\x00\x00mIDA\ -T8O\xb5\x8c\xd1\x0a\xc0 \x0c\x03\xfdt\xff\xbc\xb3\ -\x83d]\xa8\xd82\xf6p\xa2\xc7\x99af\x9fHe\ -\x87\xe7\xb2\xae\x15\xd0\xf3\xdf}Htb\xce\xb9\xbe\xc9\ -\x80\xcb\x0a\xdb\x01\x88\x13\xff\x0d\xec@\x08\xdc\xa5\x03.\ -\x15\x8dc\xcb7$DD\xe3\xccQBD4\xce\x1c\ -%DD\xe3\xccQBD4\xce\x1ce\x07|\xe6\x80\ -\xe3\xab\x15\xd0\x83\xd7\xa3\x8f\x8d\x0b\xd1.k\xedV\x14\ -\x8b0\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x00\xd0\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ -\x00\x00\x00\x09pHYs\x00\x00\x0e\xc2\x00\x00\x0e\xc2\ -\x01\x15(J\x80\x00\x00\x00\x18tEXtSof\ -tware\x00paint.net \ -4.0.6\xfc\x8cc\xdf\x00\x00\x00NIDA\ -T8O\xdd\x8c\xc1\x09\x00 \x0c\x03\xbb\xffT\xdd\xac\ -\x1a\xb0\x82\xb6*U\x10\xf4q\x8f\x5cBHD\x8ep\ -e\x04+\xb2\x02+\xa7XQ\xc6\xcc\x9c\xe3\xd8\xd5\xce\ -\x88\x7f\x0e<\xee\x1e`\xacl\x1f\xcc\x5c\xed\x8cx\xff\ -\x00`\xd8\x8f=\x07\x9a\x10G(\x01oN\x98?\xf6\ -\xff\xda\xc5\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x00\xd4\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ -\x00\x00\x00\x09pHYs\x00\x00\x0e\xc2\x00\x00\x0e\xc2\ -\x01\x15(J\x80\x00\x00\x00\x18tEXtSof\ -tware\x00paint.net \ -4.0.6\xfc\x8cc\xdf\x00\x00\x00RIDA\ -T8O\xed\x8fA\x0a\xc00\x08\x04}\xba?\xb7\xce\ -a/a\xa1m\xbc\xe4\x90\xc0\x043\xd1\x05\xa3\xaaF\ -X\xf9\x07+\xa1\x0fW\x97\xfe_X\x09\x0a\xc8\xcc~\ -\xfa\x1e\xb0R0<\x0a\xf8\x82\x95\xa0\x15V\xbfb%\ -(`{\x85\x1bpB\x000<\x0ax\xa7\xe2\x01V\ -T\xcf_\x16\xfbf\x81\x00\x00\x00\x00IEND\xae\ -B`\x82\ -\x00\x00\x03\xea\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x93\x00\x00\x00\x15\x08\x06\x00\x00\x00B\x0c\xdc\xd0\ -\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ -\x09pHYs\x00\x00\x0b\x11\x00\x00\x0b\x11\x01\x7fd\ -_\x91\x00\x00\x03\x7fIDAThC\xed\x9a\xbbN\ -*Q\x14\x86\x07Cb,\xec}#\x1e\x81\xc6\xca\xbb\ -!\xbe\x81\x8d\x8d\x8d%\x0d=Zig\xb4\xd0\xc4H\ -c(H,\x88\x85Zx\x04\x04\x01\xaf\xf1\x0e\xe2\x92\ -o\x9d\xb3\xf7\x19\x07\xf4\xe4h5\xb0\xff\xe4\x97q\xad\ -=4|\xf9\xf7\x9a\x0d^,\x16\x93n\x9e\x9e\x9e\x96\ -\xa9\xa9)\x99\x9c\x9ctvV\xc3\x03\x5ct\xe3\x05w\ -\xc0\xb4\xbe\xbe.\xa7\xa7\xbf\xda>\x95\xf3\xf3s\xb9\xb8\ -\xb8\x90\xeb\xebk\xb9\xb9\xb9q\xeeS\xf3\xf9\xc3\x01<\ -\xc0\x05|\x04\xb9\xc1\x16& :;;\x93B\xa1 \ -\xb5ZMnoo\xe5\xe1\xe1A\x9e\x9f\x9f\xa5\xd1h\ -8\xf7\xb9\xe1\x00\x1e\xe0\x02>\xe0\x04f:`\xa2X\ -n\x83T*\x95\x94\xc2\xc7\xc7G}\x83V\xab%o\ -ooj\xa7\xfe\x95a\x00\x1e\xe0\x02>\xe0\x04^\x08\ - \x0b\x13 U\xabU-\x12i\x10\xf8\xfa\xfa\xea\x00\ -\xeaS\xb1\x9d\xe5\xf3y\xc9d2\xb2\xb9\xb9\xa9\xde\xdd\ -\xdd\xd5\x1a=\xbf\xe0\x05nLB)L\x14 \x0d\x90\ -\xa0\x0f\x98\x9a\xcd\xa6\xec\xec\xec\xc8\xd2\xd2\x92\x0e^\x98\ -kj\xf4\x9czO\xc7\xc7\xc7\xb2\xbd\xbd\xadpt3\ -=\xd6\x98\xa0\x81\x17\xb81@y\xa4\x12{ \xd1e\ -\x12\x09XVVV$\x1e\x8fw5=\xd6\xb8\xf4\xea\ -\x1d\x01\xc9\xc6\xc6F\x07@A\xb3\x86\xb5\xb0\x82\xe1\x06\ -~\xe8y\x95JE\x87*\xf6B\xe0\xc0\x10\x0843\ -33\xb2\xba\xba*\xc5bQ\xcd55z\xac\xe1\xcd\ -\x9c\xc2/\xb6/\x7f\x22\xed\xed\xed\xd9\xebn5\xd6r\ -\x0f\xac\xc0\x0d\xfcP\xd7dbJg{C,X\x5c\ -\x5cT`\x80'(j\xf4XC\xcc\xb9t\x0a\xbf\x98\ -\x87\xfc\xd0\xa0\xc3\xc3C[\xe3\x1a\xf9\x81\xe2\x1e\x047\ -\xf0C\xcd\x830?\x144'&&\x14\x18\xd2((\ -j\xf4Xs\x7f\x7f\xef`\xea\x011`\x1bH\xb0\x81\ -\x87W\xff\xb5\x7f\x0d\xf7 >\x7f\xf8\xa1\xe6]^^\ -\xca\xcb\xcb\xcb\x07\x98\xc6\xc7\xc7\xff\x09\x13k\x887\xa7\ -\xf0\x8b'6?(\xd8@\x84\x82 a\xeeAp\x03\ -?\xd4<\xa6q3/!`ZXXP`\xbe\xda\ -\xe6X\x03Lf{t\x0a\xaf~\x0a\x13\xfcP\xf3\xae\ -\xae\xae:\x92\xc9\x00\xf3\xd5\x00\x9eN\xa7\xe5\xee\xee\xce\ -\xde\xe7\x14^}g\x9b\xe3\x1c\x0a}H&\xb69\xff\ -\xcc\xc4+\xe7\x06\xc9dR\xa1\xf9\xcc\x89DBO@\ -]2\x85_?\x19\xc0\xe1\xc5\xceL\x0c\xe0L\xe3\x9e\ -\xe7\xd9&\x89srr\x22\xcb\xcb\xcb2??/c\ -ccj\xaeS\xa9\x94M\xa7\xb9\xb99==7 \ -:\x85S\xdf=\x1a@\x84\x89}\x9ac\x9b\xe3X\x1c\ -\x98\x0cP\x9c\x1f\x01T\xb9\x5c\xd6\x03\xaa\x83\x83\x03\xf5\ -\xd1\xd1\x91\xfe\x9f\xcdfevv\xd6\x02\xc5\xa1\x95S\ -\xb8\xf5\xdf\x87\x96\xad\xdfg\x92\xccK\xf0CO\xe9!\ -\xa6\x86\x86\x86d``@\xd6\xd6\xd6\xf4\xcd\x01\x8a:\ -\x8f\xff\x0c\xda\x18\xc00i\x94\xcb\xe5\x14\xa8\xd1\xd1Q\ -\x85\xcb)\xfc\x02\x12\x7fB\x05M\xcf\x80\x84`\xc4\xa4\ -\x92\xfd\xd5\x00\xc0\x0c\x0e\x0e\xdat\x1a\x19\x19\xd1\xc5\x9f\ -\x09\x22\xeb\xf5\xba\xec\xef\xef\xcb\xd6\xd6\x96\x90nN\xbd\ -!\xb6/\xe6!\x86r\x9e\xd8\xb0\xf9\xa2\xb7\xde\xee5\ -\x9a\x7fgd3+\xd9_\x0d\xf0\x07\x0d\x0f\x0fK$\ -\x12\x91h4\xaa\xaff\xcb\xfbLL\xf0\xc4\x1b =\ -==\xfd\xa9:\xf5\xba\x08\x12\x12\x89\xcf\xdc\x0f\x92\x85\ -\x09\xd3\xe0\xcc\xa9V\xab* \xec\x85\x0cW\xdc\xec\x06\ -\xec\xfe\x96a\x00\x1e\xe0\x82Q'\x08\x12\xb609;\ -\xff\xcc1y\x07P\x7f\x17\xd6Q\x02K\x02\x00\x00\x00\ -\x00IEND\xaeB`\x82\ -\x00\x00\x01\xbb\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0f\x00\x00\x00\x10\x08\x06\x00\x00\x00\xc9V%\x04\ -\x00\x00\x01\x82IDAT(\x91\x8d\xd2O\x88\x8eQ\ -\x14\x06\xf0\xdf7\xf3\xa6Qc#\xb1\x9b\xbe\xc6\xd0,\ -,&\x1dM\x8aI\xa9Ql\xecg\xa1H2J\xb3\ -\xb2\xb4\xc5\xdeJ\x91\xb5\xa6\xc8\xbf\xa5P\x16rD\xb1\ -\xa0\x11\x92\x92\x05if\xc1\xa4)\x8b\xf7}\xa7\xfb}\ ->\xe5Y\x9d{\xcf}\xce9\xf7yN\xc7\x7f 3\ -Gq\x0a\xdb#b\xbe\xbd\xaf\x9a\xe4\x16\x8c\x16\xefW\ -\x22\xe2[fV8\x8e1\x5c\xc1\x91\xa2\xe0H\xa7\x09\ -\xf6a\x02\xd3x\x8aw\x98\xc5\x14~c\xa5(<\x8c\ -M\xd8\xda)*m\xc0\x09\x1c\xc5$\xae\xe3E\xdf\x0f\ -f\xf0\x18\x9b\xf1\xbd\xca\xcc\xcb\xf8\x899\xbc\xc7%\xdc\ -\xc78\xe6\xf1*\x22\xae5\x0d\xba\x11q+3\xbb\x98\ -\x1a\xc2g,#\xb0\x18\x11w\x22b\x0d\x8bX\xc0\xd5\ -\xcc<4H\xc8*\x22.\x16\xa3\x97\xb9\xc9\x22\xde\x9f\ -\x99\x0f0\x91\x99\xc3\xed\xe5\xd0\xa0\x8a\x0d\xde\x16\xf1K\ -\xdcS\x0b\xfa\x05\xc7z\xc8\x99\xb9\x13\x072s.3\ -\xf7\xe2\x1c\x96p\x13\x9fp7\x22\xf6\xe0\xb4\xda\xb2\x91\ -\xaa\xa8\xbe\x80\x8f8\x8b\xdd\xf8\x85\x0b\xb8\x81\xd5\xa6\xc1\ -\x13\xb5\xa5\xb7\xf1\xbc\x1c\xfb\x07\xb6E\xc446\xe2\x0d\ -\x0e\xab}\xff\x80nC\x9a\x8d\x88\x93\x11\xb1T\xfa\xbc\ -\xabI\xee\x88\x88\xb5\xcc\x9c\xc1\xa36\xdd\x8c\xdc\x83\xf5\ -\xce\x11\xf1\x1a\xcb\x8dM\x1aqZ\x8c\xf7\x13\xfb\x05\x1b\ -S/I\x8b\xce?\xe2\xbf\xc9\xf8\x8a3\xc5\xf9Y\x11\ -\xf7,@\x8bu\xb5#bU\xeda\x8b\x87\xea-;\ -\x88\xf3\x83\xc8\x7f\x00k\xb9|\xe7dF#\x7f\x00\x00\ -\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01\x01\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0f\x00\x00\x00\x12\x08\x06\x00\x00\x00\x84\x9e\x84\x0f\ -\x00\x00\x00\xc8IDAT8\x8d\xa5\xd3=N\x031\ -\x10\x86\xe1gQ\x02]\xe8R\xf3\x97\x0e\xaa\xbd\x12E\ -.\x10J\x84\xc4=\xd2%\x12\x15\x11\xe7\xd8\x8d\x10\xa2\ -\xe5 H\x88M\x11G\xdaX\xded1_7\xdf\xe8\ -\x9d\xf1\x8c\xed\xa2i\x1am\xd5u-\xd2\x19\xbec\xb3\ -,K'\xb1\x99\xd0\x03\xceS\x89>\xf0\x04W\xb9\xf0\ -\xf5\x7f\xe0\x9b\x5cx\x841.s\xe0]\xc7,x\x12\ -\x15\xd9\xd3\xa0\x03\xba\xc3\x10\xb7!\xbe@i;\xffJ\ -\xb8\xf7.x\x88\x0aE\x88OC\xfc\x8a\x97c\xc7^\ -\xe3-\xf2~\xf1\xd86\x0e\xcd\xfc\x84\xf6\xdb]\xe2\xb3\ -/\xfcn;\x1f\xfc\x84b{:\xb6\xed]\xf79\xbe\ -\xfe\x0a\x7f`\x81\xe7T\xb2k\xdbm\xddK|I(\ -\xaa\xaa\xea\xc1\xa75\xc0\x14\xb3\x1cx\x03\xb2\x99!K\ -\xef\xfb\x80\xb9\x00\x00\x00\x00IEND\xaeB`\x82\ -\ -\x00\x00\x02\x1e\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x18\x00\x00\x00\x11\x08\x06\x00\x00\x00\xc7xl0\ -\x00\x00\x01\xe5IDAT8\x8d\x95\xd4]h\x8ea\ -\x18\x07\xf0\xdflIQC\xf2q\x22\x8a\x92\xe2\xd8G\ -!\x0e\x97\x16j\x07D\x88\x94R\xcb\xe7\xa2\x9c\x8d\x92\ -\x906\x16K\xf9\x96!\xc7\xac\xa4\x90\x83\xb7)\x07r\ -\x22\x12\xcd\xc1\x88%\x8b\xf9:\xb8\xafw\xef\xd3\xb3g\ -\xeb\xdd\xbf\x9e\xee\xfb\xbe\xee\xeb\xb9\xfe\xd7\xe7]S*\ -\x95\xea\xf1\xd5pl\xc2\x0d\x5c\xc7\xc6\xdc\xddy\xec.\ -\xf8g\x18\xc6\xe1\x07\x9a\xb0\x03\xbf\xf0\x1d\x9b\xf1$t\ -\xce\xe2p\xec\xbbC\xb7\xb3\x1a\xe3P\x87At\xc5y\ -:\x8ea1\xae\x85\xac\x84\xd3\xf8\x8c-\xe8\xad\xd6x\ -9\x82,N\xe0\x19\xf6bY\xc8Z\xb0\x14\xbb\xc6j\ -\xbc\x88\xe0Ox9\x80\xcbX\x81\xa3\xb8\x82\xbb\x19\xbd\ -\x16\xfc\xcb}\x0dq\xf72+\xcf\x13\xc0\x1b\xec\xc3<\ -<\x0c\xaf\xf7\xe4t\xeeK\xb5x\x1f\xe7\xfd\xe8\xc9\xec\ -\xbbc\xdf^D\x00\x17\xc3\x93\xf1hC\x7f\xee\xfe\xb5\ -T\xb7\x8e8ORI\xdf\x03\xcc\xc0_\xb4\x8eD\xb0\ -\x06\x8bB\xe9\x10f\x8e\xe2\xc8\x00\xb6\xaa\xa4{v\xfc\ -\xfb\x14\xbdE\x04\xf5\xb8\x84W\xd2,L\x93\xda\xb2\xa6\ -@\xb7\x0f71\x07\xabC\xb66\xd6;\x0c/2\x9c\ -\xc1\xac\xf0\xea\x96T\xe0\x06\xec\x1c!\x8a\xb6X\xb7\xc5\ -\xbaN\x8a\xbc\xab\x88\xa01\x0c\x1f\x97\xfa\x1f\x9a\xf1\x01\ -\xa7\xa4\xc2\xe7\xf1\x02\x8f\xb1\x1e\xf3\xb1J\xa4\xa7LP\ -\x8b)\x11f\x87T\xc0\xf6\x90\xc3O\x1c\xc4D\x5c\xc5\ -TL\xce\x91\x9c\xc3\x04)-\xb5\xb1*\x13,\xc4\x17\ -\xbc\x95\x8a\xb9\x00\x9fB\x0e'\xa57\x09\x96H\x13\xfd\ -.Gp\x0f\xad\x98+\xa5ghf\xea\xa4^n*\ -\x08\xbd\xdc\xe3\x9dx\x94\xbb\x1b\xcc\x9d\x7f\xe36\x8eH\ -3\xf01K\xf0M\xe5-*B\x8f\xca\x10\xe5\xb1]\ -\xea\xb6\xe78\x10\xb2\x0bY\x85\xbaQ\x0cW\x83f)\ -\xbd}\xd8 \xbd\xc0\xd9'\xa5\xb0M\xc7\x82~\xac\xc4\ -r)\x95\x8dR\x0d\x86\xf0\x1f\x84\xf8v\x1d=\x86M\ -P\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01p\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x12\x00\x00\x00\x12\x08\x06\x00\x00\x00V\xce\x8eW\ -\x00\x00\x017IDAT8\x8d\x9d\x93\xc1J\xc3@\ -\x14EO\xa2\xa0\xa0\xa2\x05\x11\xba\xf3#\xde\xd2\x8d\xf4\ -\x1b\xc4\x1fp'\x88\xa0\x82Pp\xa3\xa2;\xc5\x95\xee\ -\x14\x7f\xe7\x82\x1f\xe1\xc6\x8d\xa4P\xb5\x9a\xb4\xd5E_\ -a\x88IF\xbc0d\xde\xcd\xc9\x9d7a\x06\x22\x92\ -\xb4#i/\xc6\xcd\xc6\x00\xe0\x02\x98\x01n\x9a\xa04\ -\xd6\x0d\xb0\x0a\xb4|\xfe\xbf \xef\xa6j\xfe\xf7 I\ -\x9d\xa0\xfc\x06\x0aI\x9b\x91\x85\xeb%i \xe9#\xc6\ -\xfd\xeaH\xd2v\xc9\xfa\xf4\x112\x07\x92\xe6+\x83$\ -\xedK\xca\x80\xdbR\xd0\x08(J\xde!\xd0\x93t)\ -)\x05H$\xed\x02g\xc0J\x00\x0e\x81\xdcC\x16\x99\ -\xfc\xa3w&\xc7`\xce\x9fS\xbd\x01\xdd\x14x\x02^\ -K+\x0e\x80\x9e\x8f\xb1\x07\xf5\xdd\xcf\xbd\x9e\xea\x0b\xc8\ -\x92`k\x1d\xe0\x0eh\x9b\xd9B\xe0g@afk\ -\x81\xf7\x0c,\x03'fvM\x95$m\x94\xea\xbe\x87\ -\x85\xdeV\xe5\xc7M\x92\x94K\x1a\xc4\xb8\xa4\xee\x85_\ -\x89.\xb0\xee\xd6\x0bplf\x0fU|\xd3\x15\xb9\x07\ -\xdaA\xbd\x04<\xd6\xc1\xb5Af6\x04\xae\x02\xeb\xd4\ -\xcc\xc6u|\xed\xd6\x00\xfc\xb0\xf5\x81\xdc\xccZMl\ -\xe3\xed\xf7\x0e\xce\x81\xa3&\x0e\xe0\x07\x81\x1e\x7f\x14\x8c\ -;\xe7\x95\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01{\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x12\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1b\x06/\x5c\ -\x00\x00\x01BIDAT8\x8d\x95\xd3?K\xdbQ\ -\x14\xc6\xf1OB\xaa\x9bb\xfd\xb3IQ\xc8(\x08\x97\ -:\x1b\xa8\x9d\x5c\xb5\xd0\xcdEqt\x93\x80\xef\xa0o\ -\xa0N.\x0e\xba\xd61\x10p\x90\x0a\xbf\x0cm\x17\xb3\ -\xb8\xb8H\x15u\x8a\xa0`\x1c\xe2\ -\x06\x15\x9c`$\xa5t\x05\xc5\x1c\x90\x11\xccD^\xc6\ -%\xfe\xbf\x1e\x96r\x80\x86P\xc5'\x1c\xe3\x0b4\x1a\ -\x8d:\x96\xf3\x80\xae\x03\x92\xd0\x88\x05\x8b8(\x0c\xd8\ -\xa3\x02\xbec\x12-L\x04T\x00k\xfd*\xaa\xa0\x1e\ -y\x1b\xfb]\xe0RJmz7{\x12\x9b\x91\x0f\xf5\ -\xf0\xb4c\xe9\x07\x1aG\x0d\x19\xf6\xfa\xc0\xde\xa2\xdb\xd5\ -fq\x869/\x8d-\xe1a\x10\xd02\x8eB\x7f\xc0\ -\x1a\xa6p\x8b\x0d\x0c\xe3g\x9c\xef\xe8\x98\x9d\xce(\xe2\ -\x17\x96B?\x06d=*\xdb\xc5\xbf\xd0\xeb\x98\xeeU\ -Q!\xcb\xb2\xc3\xc8\x7fx\x9f\x93Y\x5c\xe07F\xf1\ -5<\xb5\xa8\xf4/\x9a\xb17\x81\xfb\x12Vc#\x0b\ -\xc8\x06\xb6\xb1\x82C\xfc\xc1|\x17O\x13\x0b8E9\ -\xcf_\xeb\x16\xafC\xa9\xe8}\x1e\xb60\x86\xcf\xa1\xbf\ -\x85\xae\x0e\xe09\xef|\xfe\x16\xee\xf0\x14\xfa)t\xab\ -\x9f'\xa5t\x07\xcf)mR\xad\xb7y\x8e\x81\x00\x00\ -\x00\x00IEND\xaeB`\x82\ -\x00\x00\x02,\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x11\x00\x00\x00\x10\x08\x06\x00\x00\x00\xf01\x94_\ -\x00\x00\x01\xf3IDAT8\x8de\xd3K\x88\x8fa\ -\x14\x06\xf0\xdf\x7f\xfc\x95\xb0@\x22\x9a\x92{\xe4\x9aS\ -\x9a\x85\xb2\x125R\xee\xa5L)\x16\xa6\x90\x8d\xb2D\ -\x12Rl$\xc9(I.Qr\xbf\xaf\xa4\x8e\x14\xd1\ -\xe4R\xc8\x06\xc9%\xb7$,\xbeW}\x8dSo_\ -o\xe7;\xcf\xfb<\xe79\xa7\xa1Gd\xe6h\xac\xc1\ -\x1c\x8c\xc1\x1f\xf4\xc2C\x9c\xc6\xc1\x88\xf8X\xafi\xa9\ -\x15\xf7\xce\xcc\x9d\xb8\x83N\xbc\xc5R\xdcB_\x1c\xc5\ -(<\xcd\xcc5u\x90F\x01\xe8\x8bs\xf8\x8c\x09\x18\ -_\xf2kq\x11\x0b1\xb5\xb0\x9a\x82\xa18\x1b\x11\x9d\ -u&\xc70\x02W\xf1\x18\xaf\xb0>\x22\xf6G\xc4\x0b\ -\xfc\xc4Jt`:V\xa0-3;\xa1\x91\x99m\xb8\ -\x81O\x18\x19\x11\xdf3s\x11N\xe15\x9e\xe1:\x96\ -a\x12\xeeEDd\xe6\xf4\x22\xbd\xb5\x05\xdb\xd1\x07;\ -\x22\xe2{a\xb6\xa4|[1\x1bG#br\x91z\ -937`0\xbebs#3_c\x0b\xc6\xe1\x01\ -\xba\x0b\xb3~\x05\xa8;\x22&\xd4\x0c8\x8b\x05\xe5z\ -\x18\x93\x9a\x18\x80\x13\xf8P\x12\xcf0\x11\xf3\xcay\x92\ -\x99\xcd\x88\xf8\xe5\xff8\x8e\xad\xcdri\xd6\x12\x8f\x22\ -\xe2\x15\x0e\xe0@fvcca\xfc\x02\x17\xf0\xa3<\ -\xf4\x05?Z\xf0\x06]\xd8\x8d\x9b\xb8_\xa3>Ye\ -w/\x95{\xad\xd8\x13\x11\xcb\xb1\x17\x97\xf0\xb1Y\xa4\ -tFD{)\xec\xca\xcc{8\x89\x81=\xe8o\xab\ -\xc9Z\xa22\xe4H#3\x87\xe0)fFDwf\ -v\xa9\xe6\x01\x16\xe16\xc6b\xbe\xaa\xd9\x0f\xf0\x5c5\ -\x9c\xdf0\xbc%\x22\xdeb\x03\xceg\xe6*\xf4\xae\xbd\ -\x9c\x11\xf1^5|\xab\xb1\x1e\x87\xd0^\xfa\xd2\x1e\x11\ -\xbf\x1b5\xfd\xeb\xb0\x09g\xb0\x0b\x8b1\xab\xa4\xaf\x14\ -\x80q\xb8[\xfa\xd3\x11\x11W\xa8-`D\xec+\xf4\ -g\xa8\xf6%0\x0c\xfd\x8b\x0b\xd7\xf0\xae\xb0j\xfb\x07\ -@Y\xc0\x9e\x91\x99\xd30W\xb5\xb5\x83J\xf1C\x9c\ -\x8f\x88\x97=\xff\xff\x0b\x84C\xb2\xa8\xaa\xc4\xf2\x0e\x00\ -\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x00\xee\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0a\x00\x00\x00\x0d\x08\x06\x00\x00\x00\x907\xff\x05\ -\x00\x00\x00\xb5IDAT(\x91}\xd0\xa1\x8aBQ\ -\x14\x85\xe1O\xb9\xcdd\x9b\xeek\x08\xbe\xc7X\x0c:\ -\x08\xfa V\x1f@\xb1h1\xcc4\xc1l\xbc0\xc1\ -7\x10\x83ED\xc3\x14\x83\x96s`s\xb9\xcc\x82\x13\ -\xf6f\xb1\xfe\xb5O\xa3,\xcbO\xac\xfd\xafY\x11\x86\ -\x01\xfe\xc2\xdc\xc0\x1c\x1f8F\xe3\x0f\xeea\x9e&\xd3\ -\x0e\x9b&N\xd8\xe2\x19L\x1d\xccp\xc3\x17\x148\xa4\ -\x17\x91\x0b\xb4R\xea\x19\x9a5\xc5'\xe8%\xe4*/\ -\xab\xc6\x8c\xbcgdV<&\x22\x87\x19Y\x97\x98\x91\ -{,\xab}rbF>0\xc2+x\xc6\xb8\x145\ -\xc8S%\xac/}\xf88!\x0f\xf8F\xbb\x8eZ\xa0\ -\x9b\x16]\x5c\xab\xdd\x92~\xdf\xc4\xcd&:\xc3\xef\xf7\ -E\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x015\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0f\x00\x00\x00\x0f\x08\x06\x00\x00\x00;\xd6\x95J\ -\x00\x00\x00\xfcIDAT(\x91\x95\xd0\xcf*D\x01\ -\x14\xc7\xf1\xcf\xcc\xcaB<\x06YX\x9d\xe6\x09\x94\x12\ -SJ\x9a\x97\xb0'\x8bY\xc8+XY\x121\xfe\x16\ -\x1b;ew\x1e@\xd9YX\xb0A\xd9\x10c\xe1\xca\ -\xedv\xa7\xc6os:\xe7\xf4\xfd\xfdN\xa7\x91\x99\xab\ -\xf8\xc0aD\xdc\xfb\x87\x1a\x99\xd9\xc1\x1e\xfa\xb8\xc1\x01\ -\x8e\x22\xe2a\x18x\x14O\x18)\xcd\xfb\xb8\xc6>\x8e\ -#\xe2\xb1\x16\x86\xcc\x06Z\xa5\xb1W#\xc4HW\x92\xccZ\xcf5\x97\ -i|8\xb0\x14h\x0e\xcc\x06^\x06\xb6\x03#\xf0~\ -\xfdU\xf5@aq\xa2\x8d\xf7\xfe\x00p\x13\xf0\xb8\xb3\ -\xe6\x9bx(\x80M\xc0 `\x82\xb3f\xd1U\xf1\x80\ -\xf7\xfe-\xa0-0/e\x1c\xc0Y\x03\x88\x22\xe0_\ -`Faq\x22+}M:@\xfc\xca\xf1\xc0?\xc0\ -{\x99\xeb\xce&\x0f\x03K\x80N\xde\xfb\xe7\xb3\xd1\xd9\ -`\x08\xa4\xd2\x03\x08q\xed\x07\xb4\x8f\x06\x0f\x03'\x80\ -\xe1\xc02g\xcd\xd8K\xec\xed\x05T\x02\xbb\x81\xbd@\ -\x0f\xa0\x03p\x168\x00\xac\x13B\xcc+\x8b\x89*\x00\ -\x0a\x8b'u\xf6\xbe\xee\x1d\xe0]g\xcda\xa9t\x0d\ -!\xc1\xceE\xa37\x12J-E\xe7\x81\xcd\xc0\xa7 \ -\x968\x9bD*\xdd\x1f(\x06F\xc6C\xa7>\xae6\ -\xeah\x09\xb4\x89\xbc\xfd\xc0@g\xcd\xef1\x04~p\ -\xfc\xe2\x1f\xa5\xd2}\x9d5-\x80\x02\xef}\x0bg\xcd\ -\xad\xce\x9a\x9b\xbd\xf7\xad\x81\x83@\x0d\xb0\x03x\x04X\ -\x0c\xbeZ*\xbd\x03\xd8\x0a\xbc\x12\xc3\xba?\x1a\x1a\xeb\ -\xaci\xee\xac\xe9\xec\xaci\x8b\x10]\x81R\xe0.`\ -Qz\x0e\x5c\x1b\xc7N\xc0\xf7R\xe9!\xce\x9a/W\ -\x94.\xb8\x18+!N\x01]\x81]\xce\x9a<`*\ -\xe0\x09\xd5\x90\x1b\xc5*\x81{\x81\xe9q\xde\xa5^\x8e\ -\x94$\x8f8k\x14\xf0\x0bP \x95n0\x09o\x00\ -\xd6I\xa5'\xd4K\x16!\xee\x8f\x07>-\x95\xdeD\ -\xa8\x7f\x80\x95\xc0\x9b\xc01\xa07\xb0\x0f\x18\x10\xd7z\ -]\x22\xf7\x0e\x03\xcd\x80\x8e\x97\xaa\x82k\x80\x85R\xe9\ -\x0fR\x0c\xef\xfd\x9d\xf1\xef@B\xad\x7f\x0d\xf4u\xd6\ -\x8cv\xd6\xcc\x11B\xdc\x02L\x8b\x8au\x94\xed\x9e\xa9\ -8\x96g?\xa0\xcaYs\xbc\xb12|C*\xbd\x22\ -\x96_N\xe4\xfd\x09\x14:k\x06;k*S\x82e\ -%I\x9c5\xb3@\xf4\x04R\xdd\xb0\x8fT\xba^\xb5\ -x\xef_\x8fa[\x09\x17\xaa \xf1\x82\xf7\xfe\x93\xff\ -9\xc8fg\xcd\x00\xa9\xf4d`\xb7\xb3\xe6B\xbb-\ -,Nt\x00r\xcaJ\x92\xbb\xd37H\xa5\xf7\x00w\ -\xc7\xe9\x82\xe8\x95n\xc0\xcf\xd1K=\x9c5\x87\xb2m\ -D\x0fK\xa5\xf79k\xe6\x0a!\xd6\xa7\x19\x19\xe3\xbd\ -?\xea\xbd\xdf%\x95\xde\x94\xd1\xfd\xaa\xe2\xf8\x1b0\x11\ -\xf8\x22\xfeZ\x01S\x9c5\x87R\xb1\xce\x96\xbaK\xa5\ -\x97\x96\xd5G\xba\xf7\xe3\xd7\x00\x0c\xf2\x9eQikg\ -S|\xe0;`\x18\xa1Z\xca\x9c5\x1f\xa6\x84\x9a\x8a\ -\x05\xe73\xe6u\x8d\xcc!4\xb4\x96\x97\x92i\xca\x01\ -v9k\xc6e\xf0^\x03\xce\xc4\xff\x1b\x84`u\xda\ -Z\xca\xe8\xb7\xc0\x83\xc0\x1a\x02d\x17I\xa5_m\xea\ -\x016:kr\xa5\xd2oK\xa5\x87\xa5\x98\xce\x9a5\ -@\x8e\x10\xe26g\xcd\x90\x8c\xf0\xb4\x8fcW`\xbe\ -\xb3f\x04\xf0,P\x0d\xcc\x91Jw\x86\xd8\x01{\xe5\ -\xe5\xf7!\x80LCT\x0a\x8c\xcc\xcd\xcb\xd7\x84\x98\x0f\ -\xcd\xcd\xcb?\xb1\xb3\xa2|;\xc0\xce\x8a\xf2\x9a\x9d?\ -m=\x99\x12\x96Jw\xcb\xcd\xcb\xff\x8cP\xebg\x80\ -\x22g\xcd\xbc([\x9d\x9b\x97\x7f\x1ax\x06h\xb6\xb3\ -\xa2|Cc\x1e\x98\xe9\xacQ\x01\xeb9\x1ay\xad\x81\ -\xc5R\xe9-R\xe9\x87.\x1aN \x95\x9eE@\xc1\ -\xc7\x22\xbb\xc2Y\xb32]\xa1\x10b\x01p\x12\x18\x0d\ -\x1738\x93j\x81\xf1\xce\x9a\xd2\xb4\x8d\xfb\xbd\xf7\x00\ -\x1b\x09\x19^\x00l\x91J\xaf\x03~\x00?\x09hG\ -hT\x06\x98L\xe8\xf9\xf5\xa8\xac$\x89Tz\x1b0\ -X*\xdd\xa6!\x0fT\x03O\xa6\x1b\x07\xf0\xdeW\x10\ -2\xb8\xa3\xb3f(0\x85\x00FO\x033\xa2\xf1J\ -\xe0>B\xb2A@\xcd\x86\xe8v\x02\xaa\xfe\x9d\xf2@\ -m\x1c\x8f\x00O8kvK\xa5G\x01\xab\xa2\xfb!\ - \xe5!\xe0\x1e\xa9\xf4^\xa0g\xe4W\x11\xe0\xb7?\ -\x01\x8c~%\xe0?@\x95T\x9a\x94\x0e\xa9tw`\ -&\xa1#\xaer\xd6\xc4V\xfc\xe2\xa4\x1c_W7\x15\ -\x98\xed\xac9&\x95>\x97\x16\x9ej\xe0zB=\xa7\ -\xa8\x06\xf8\x0aX*\x84X^V\x92D\x16'r\xf1\ -\xbe\x18\x18E\xc8\xfc\xf4\xdb\xd6\xe9\xb8\xff\xba8\xdf\x85\ -\x10\x8f\xba\x92\xe4\x89\x86\xafd\xc5\x89\x07\xf0\xfe%B\ -&\xb7#\x5c4\x0f\x02\x7f\x01c\x80\xe5\xce\x9a\xa2\x06\ -\xf7*\xdd\x9b\xd0\xef+\xe3\xd83\xea\xa8\x8d\xdeY+\ -\x84XT\xefJ\x96-\x8d\x1e7\x11!\xc4\x1f\x044\ -\xeb\xe2\xac\xa9\xca\x94\x91J/\x04&\x10\x10\xd35\xa6\ -\xb3I\xad8\xde\x90\x16\x12\xba\xdc\xf4\xccu\xa9\xf4\x1d\ -\x80\x02\x8e\x08!\x1a5\xde\xe4\x03\x00\x08!\xe6\x02\xc7\ -\x81\x84T\xfa\xa94\xe3\x00\xcb\x09q\x9eV\x96\xe5\xf3\ -\xec\xb2\xde\x86R\xe9\x02`-\xa1,?\x22@\xeex\ -\xc2}\xf0sg\xcd\xf0lu]\xd6\xdb0^H\x9e\ -\x03N\x01\x09`~4\xbeL\x08\x91\xb5\xf1\xcb\xf6@\ -\x9a' `H\xeay\xbe\xa7\xa9:\xfe\x03\x5c\xaa\xea\ -&\xfd\x17M\xd2\x00\x00\x00%tEXtdat\ -e:create\x002016-01\ --08T15:18:18+00:\ -00\x01E\x99\xf0\x00\x00\x00%tEXtda\ -te:modify\x002016-0\ -1-08T15:18:18+00\ -:00p\x18!L\x00\x00\x00\x00IEND\xae\ -B`\x82\ -\x00\x00\x00\xce\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0c\x00\x00\x00\x0c\x08\x06\x00\x00\x00Vu\x5c\xe7\ -\x00\x00\x00\x95IDAT(\x91\x9d\xd0\xb1\x09\x02Q\ -\x10E\xd1\xb3\x22\x08\xb6a,\x98\xd9\x80\x81\xa0e\x88\ -\x91%\x18Z\x82\x89b\x19\x0a\x826 \xfc`\xc1\xd8\ -\xd0\x16\x04#\x0d\xfe.\xac\xe8\xdf\x05_x\x87\xcb\xcc\ -\x9b,\x84\xf0\xc2\x01S1{L$\xd2\xc6\x19y\x85\ -\xe5\xe8\xa4\x84,\x84\x90\x9a%7lp\xc5\xba`\x0b\ -\xf4\xeb\x84\xb9\xd8\xa1\x14\xc6\x1a:\xf4\xf0\xa8\xb0\x19\xba\ -)\xa1\xd5|\xf5\xf7\x86\x9b\xcf\xb7\xee\x9aN\xda\x8a\xa5\ -\xcb\x1cqO\x09\x7f\xbd\xf5\x84\x0b\x96\x05[aX'\ -\x8c\xf0\xac\xb0A\xc1~\xe6\x0d\xc9\xd6\x1dQ\xcd\xba\xaa\ -\xa1\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01}\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x01DIDAT8\x8d\x95\xd2\xb1KVQ\ -\x14\x00\xf0\xdf\xf7Qa\xe2\x12N\x91\x93\x85MN\x9d\ -\xa1E\x10\x84\x86j\xd4M\x87\x96\xc0\xdd]\xb7hh\ -\x8d \xa1!A\x1cZ\x85\xa6j*\xf2P\xe0\x90\xe2\ -\x1f\x10\x88A\x86aa|\xe2\xf0\xae\xa1\xaf\x0b\xe6\x99\ -\xde;\xf7\x9c\xdf=\x5cNG\x89\xcc\xbc\x829Lb\ -\x18\x7f\x90X\xc4RD\x1c\xaaD\xa74\x8f\xe25\xae\ -\x96\xfc/\xf40P\xfeW1\x15\x11\xfbm\xa0[n\ -^=\xd1\x0c\x971\x8bql\xe2.\x9e\xd5&\xe8\x96\ -\xb1\x87*g\xdf#\xe2\x1d\xc6\xf0\x153\x99y\xab\x06\ -L\xd5d\xecBD|\xc3\xa3\x92\xfb\xa7\xf6\x82\xe6\xc1\ -~\xa3\xaf\x0dd\xe6\x00\x06\xb1Qr\xd7k@\x0f{\ -xP\x90\x9f\xd8\xc6+\xdcl\xd5\xf7j\xc0:\x02[\ -\x11\xf1\xe9\xf8 3\xdb\x13\xc1\xe7v\xa2\x8b\x17\xe5\xfb\ -if\xf6W\x9ahv\xe2\x00/k\x13,b\x06\xb7\ -\xb1\x96\x99\xf3x\x8f\x8b\xa5\xe6\x00\x97\xf0\x04;m\xe0\ -x\x91\x06\xb1\x82\x89\xca\xed=,c\x1a\x1fq'\x22\ -~\x9c\x02\x0a\xd2\xc1=\xcd*\x8fh\xb61\xf1\x5c\xf3\ -\xa8_4\xfbr\x0a\xf9\x0b\x9c\x15\x99y\x03oq\x0d\ -\x1f0\x11\x11\xfb\xff\x0dT\x907\xb8\x7f.\xa0\x82<\ ->7p\x02Y\xc0\xc3#S\xefd\xae\x0f\x1eB$\ -\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01x\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x12\x08\x06\x00\x00\x00R;^j\ -\x00\x00\x01?IDAT8\x8d\x9d\xd3=K\x5cA\ -\x14\xc6\xf1\xdf\xae\x06\x04\x8bt\xdb\xa8\x88q#\xa2\xd8\ -X\xa4\xb2\x15\x041\xd8\x05\xa2\x95\xe5\xd6!\xd8,n\ -!~\x06+IJ\xf3\x09\x94\x10P\x904n\x11H\ -0$\xf8\x02.\x0b\x0a\x16Vb\xe1\x8a\x8538\x19\ -]\xc2\xfa\xc0\xe5\x9e\xf3\x1c\xce\x7f\xce\x9d\x99[\xa8\xd7\ -\xeb\x12\xad\xa1\x8a\x96\x7fu\x89\x97\x99w\x8a\xc1bf\ -\x8e\xa3O\x07\xca\x01\xaf\xc2\xf3,@\x01\xe5N\x01\xdd\ -I\xdc\x8f\x9e6\x80\x1d\xf4\x86E&\xf0\x13\xe7\xf9\x04\ -\xb1q\xe8\x09\xc0<\xa6\xf1\x19%|\xc2B\x0ex\x9d\ -\x81r\xbd\xc0J\x88\xabq\xfa\x22\xc6BS\x0a\x18\xc5\ -\x1c\xba\x12\xc0\x12\x86C<\x82\xf7\x110\x80#|\x0c\ -\xc5\x12~\xe3\x9d\x87\xfb\xd0\x13VMUEw\x11\xdb\ -\xf8\x9e\x15oPK\xf2\x8a\xc7\xf7\xa3\x8c\xc5\xb8\x07\xb5\ -\xac\xb8\x81\xc3$ob\x06?B\xbe\x857hD\xc0\ -W\xec\x85\xf8\x1a\xab\x19p3Lz\x10\xf2_\xd8\xc7\ -\xb7\xf4\x14\xe2\x0e\xaf\xa3\xe1i\x1d\x87\xf7Q4\xe2E\ -Z\xc6$\xce\xdc\x9f\xc2\x97\xe0Wp\x91\x00N\xda\x01\ -\xa60\x1b\xe2\xb7I\xc3\x876\x13\xfc\x8dF\xfe3\xfd\ -O\xc7\xb8\x92|b\xa7\x80&\xfe\xe0\xf6\xb9\x80\x16v\ -S\xe3\x0e3\xc49\xa5\x12)N:\x00\x00\x00\x00I\ -END\xaeB`\x82\ -\x00\x00\x01\x1b\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0e\x00\x00\x00\x0d\x08\x06\x00\x00\x00\x99\xdc_\x7f\ -\x00\x00\x00\xe2IDAT(\x91\x9d\xd1/K\x83Q\ -\x14\x06\xf0\xdf\xe6\x8aE\x98_`&\x83U\x10\xbf\x82\ -\x98\x9d0\x16\x945\xbb \xd6\x05\xcd.\x88}j\xb1\ -\x0cV4\x1b_\x164\xac\xb8b\x96\x81\xc5 2\x16\ -v\x06\x97\xd7wC|\xe0p\xcfs\xce\xf3\xdcs\xff\ -\x94\xb2,\xbb\xc0\x99\xdf8\xc1u\xe4}\xec\xa7\xcd2\ -\xeePG7j\xc3\xe0O\x89\xee\x12\xc7\xf8\xc2\x18\xcd\ -\x0a^#z\xd8\xc4\x0e\xaa\x18%\xc6g\x1ca\x15\x0d\ -\xf4\xcaI\xf3\x1b\x07\xf8\xc0\x15\xb6\x93^\x1d-tb\ -\x80\xd4\x08\xefh\xa2\x82\x07\xacc\x037\x18\xe04\xbd\ -c\x1e\x8fh\x87\xa1\x8b\xdb\xd0\x1d\xc6\xa9\x88\x9d\x8b\xd0\ -\xc6.\xf6\x827\xf0\x96\x0a\x8a&\xc2\x04\xe7\x91\x0fq\ -\x9f\x17,2\xc2On\xfd\xb3q)\xfem,z\x9c\ -\x15\xacE\xccy\xd5\xec\xde\x9f\xcb\x8c[x\xc9\xf1\xb1\ -\xd9\x1f\xd7\xe6\xc5)P\xcb+^\xfd\x05+R\x00\x00\ -\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01\xcf\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x01\x96IDAT8\x8dm\xd3M\x88\x8eQ\ -\x14\x07\xf0\xdf\xf3\xf4R\x83\x8d\x05\xc5\xbc\x14)\xcd\x8a\ -\x95(R\x13\xa5\xac\xcc\xc6GMJY\x8cX(K\ -\x99\x8c\x05\x9a\xb1b\xc3b\xc6\x82R2\xd9\xc8(_\ -eA\x16b\xa1\xde\x84\x89Y\xccBB\xa4\x19\x1f\xc3\ -\xe2\x9e\x9b\xdb\x93S\xb7\xdb9\xf7\x9c\x7f\xff\xf3?\xe7\ -V\x9dN\xc7\x7fl\x1b\xfa\xb1\x05m\xfc\xc6\x1bL`\ -\x0c/sb\xd5\x00X\x82\xab\xd8^\xc4>\xa3\x85E\ -\xe1\xcf\xe1\x22\x8eb\xb6.\x12\xdbxZ\x14\x7f\xc3q\ -,\xc7\x0a\x9c\xc3\x0f\xd4\x18\xc0=,\xc8\x0cj<\xc6\ -\x06\xcc\xe0\x12\xce`\xba\xd1\xda\x1a\x0ca\x0f*\x8ce\ -\x80\xfd\xb8\x8c)\xf4\xe2uQ\xd4\x1d\xa0\x1f\x8b\xd8F\ -\x5c\xc1\xea\xdc\xc2\xc1\xb8\x87\x1b\xc5\x83x\x8bI\x9c\xc4\ -\xc2\x88?\xc1mT5\xba\xb0)\x1e\xde5(\x0fc\ -/n\xe20\x9ec}\xa1\x91VP\xccLv\xe2\x96\ -46\xf8\x8e\xf18-i\xac\xfb\xd0\x87u\x19\xa0\x9c\ -\xc44\x0ea-\x1e\xe2\x0e\xbe\xc6\xdb/<\x88C\xd2\ -L\x8d\xf7\x98\x8d\xe0+\x9c\xc7(\xce\xe2\x83\xb4<\x03\ -X\xdah\xefE\x06\x98\xc1\xfd\x08\xce\x8b\xfb\x19zp\ -,\xee\xc1L\xb9\xb0\x1e\xfem\xe2\x0eI\xd5I\x1c\x08\ -\xfa\xa5U\xf8S\xf8}\xb8\x86\xb9\xdc\xff\x84$\xd4\xaa\ -\xe8q\x5cZ\x9al\xb9xs\x80\xdf\x08\xb6\xa7K\x01\ -\xfb\xa5m\x84]\xd2\x87\x19\xc1b\xac\x8c\xa2G\xd8\x1a\ -9\xa3\x18j~\xa6.\x9c\xc2\x11\xcc\x8f\xd8\xcfh\xa1\ -\x15\xfe'\x9c\xc0\x85R\x83\xa6\xb5\xb1[\x9a\xfb2i\ -\x84S\xb8\x8b\xeb\xf8\x92\x13\xff\x02w\x5ckPMg\ -\xdc\xa5\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01\x86\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0f\x00\x00\x00\x0e\x08\x06\x00\x00\x00\xf0\x8aF\xef\ -\x00\x00\x01MIDAT(\x91\x85\xd21K\xd6Q\ -\x14\x06\xf0\x9fW\x0a)jhh\xc8h\x91\x1c5\xe9\ -PRIC\x82\x0e\xd9 !\x82\xd1j\x1f \xa8o\ -\xd0\x16\xb4\xb4\xd4\xe6`\xb4DB\xadA\xe0\x10\x1dT\ -hlh\x11A\x8c\x8ah\x10\xa9lx\xef?^\xfe\ -\xf0\xf2\x9e\xe9\x9e\xe79\xcf}\xce9\x9c\x01\xad\xc8\xcc\ -\x9bX\xc6\x15\x9c\xc2O|\xc4s\xbc\x8c\x88\xbfM\xed\ -@\x97\xe8\x18V0\x8f/X\xc3W\x9c\xc6\x0cF\xf1\ -\x1e\xb7#b\xaf-^\xc3\x1c\x1e\xe0qD\xfc\xee\xe2\ -\x0a\xee\xe2)>a*\x22\x0e\x1ar!3\x0f3\xf3\ -~{\x8c\xd6H\xb3\xb5\xee\xe1\x7f\xe7\xcc\x5c\xc7qL\ -D\xc4a\x9f\x0f^\xe0\x1a\xce\x95\xcc<\x89I\xac\xf6\ -\x13\xd6X\xc50F\x0b.\xa3`;3\x8f\xf4q=\ -\x8a]\xfc\xc1\xa5\x82G\x95\x1b\xc7\xab>\xaeou\x96\ -:\x88{\x05\x17*1\x86\xc1\xcc\x1c\xe9\xe1:\x82)\ -|\xab\xd0\xc5\x82\x1f5\xb9\x8e7X\xea\xe1z\x07\xef\ -p\xb5\x01\x0a>\xd7\xf7\x10~a\xb1\x87xI\xe7p\ -\xa6k\xbeY\xf0\xba\xab\xe0\x06\xf62s\xac\xd5\xf2$\ -\xcec\x1f'*\xbcR\xf0\x04\x9b\x15\x98\xc7\x87\xae\xb9\ -\x9a\xd8\xc7\x16n\xd5|\x03\xcf\x9a#9\xab\xb3\xe93\ -X\x88\x88\xf5v\xcf\x999\xa1\xb3\xed\xef\x98\x8e\x88\x9d\ -\x7fI\x1dq\x82#,l\xf1\x00\x00\x00\x00IEN\ -D\xaeB`\x82\ -\x00\x00\x01\xc6\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x11\x00\x00\x00\x10\x08\x06\x00\x00\x00\xf01\x94_\ -\x00\x00\x01\x8dIDAT8\x8d\x9d\xd3M\x88\xcda\ -\x14\x06\xf0\xdf\x9d\x99\xcd\xd8h\xc6,$ERS\xcc\ -4\xa5\x135\xd9\xcclg(\x12\x1b\x0b)\x16>v\ -\x16\xa2,(\xcdF\xcab\xa6\x1b[\x85\x22+K\xf9\ -X\xb9\x0ee!#D\x16\xa8!\x09\xc9\xc2\xc7\xe2\xff\ -\xcet\xfb\xd7\xcc\x8dS\xef\xe6=\xe7<\xcfs\xbe\x1a\ -\xfe\xd32\xb3\x89\xfd8\xde\xe8\x108\x82\xb5X\x85\xd5\ -\xe8F\x17\xd6c\x1bz\xd0\xea\xe9@x\x06O1\x83\ -\xe5\xd8\x83e\xb8\x82\xbeBp\xa2{\x09\x15\x1bp\x16\ -\xc3\xe8G/\x9ax\x84\x83\xd8\x87\x81\x88hv-\x02\ -\xb0\x157\xf0\x10o\xd1\x8a\x88i\x0c\xe04\x0eG\xc4\ -\x17\xfcVj\x9aO\x5c\x89\xbdE\xe2\x1b\xac@\x94w\ -)3[8R\x00~df?>B#3\x03\xc7\ -\xd0\xc0\xbb\xc26\x8a\x8b\x111U\x08\xee\xa8\x9ay\x0b\ -\xcf\xf1\x12?\xf1=\x22\xee\xf7\x14\xc6\xed\xc51\x8b\xc7\ -\xb8\x80'm\x15\xee\xc4H\x01\x1a\xc4I|\xc2\x98\xc2\ -.3\xc7q\x0d\xbb#\xe2\xf6b\xcd.\xb1S\x98\xc0\ -xD\xccQ\xcd\x5cI\xdc\x81\xcb\x999\xf9/\x00\x0b\ -J\xda\x82\xb6\xe0\xaejt\xdfj\xbeI\x9c\xc7h;\ -\xc0\x82\x926{\x8d\xafu\x80b\xef\x8bo\xae\xee\xa8\ -o\xec\x90jCef/\x8e\xe2\x05n\xe2\x19\x063\ -\xb3;\x22~-\xa5d\x08\xb3\x99y\x08\xaf\xb0\x19\xa7\ -\xf0@5\xf6\x0fXWWR\x07\x19\xc6\x01\xd5qM\ -D\xc4.l\xc29Lc\x0d6v*\xe73\xc6\x22\ -\xe2\xde\xfcGD\xfc\xc1\xd5\xcc\xbc\xae\xba\x97\xbe:\xc8\ -_\xc6l\x83y\x0c\xda\xbaW\x00\x00\x00\x00IEN\ -D\xaeB`\x82\ -\x00\x00\x01\x89\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x15\x00\x00\x00\x14\x08\x06\x00\x00\x00bKv3\ -\x00\x00\x01PIDAT8\x8d\xad\xd4\xb1K[Q\ -\x14\xc7\xf1O$\xb4\xee\x12j\xabq\xaaYJ\x05\xc9\ -_P\x07\x17\x07\x17\xc1BE:T\x90\xae\x9d\x0a\xed\ -\xa0t\x13\x97v\xc8\xd8\xc5\xc1E7\xdduN\x16\xa5\ -\x94\xd6M#m\x05'\x95XQ\xe2\x90\x9b\x12\x02\xef\ -\xbd\x9b\x92\x1f\x5c.<\xce\xf9\xf2;\xf7\xc7y\xb9f\ -\xb3)I\xb5Z\x0d\x9e\xe3\x00oQ)\x97\xcb\x89\xf5\ -m\x0ddV\xfc\x87b\xa1?P\x8d\x85\xe6\x92\xc6\x0f\ -\xa3\xc3C\xdc\xe16\x16\x1a\xe3\xf4o\x00\xe6\xf1\x1a\xab\ -\xfd\x80\xe6\xb1\x88\xef\xf8\x8a\xc7\x18\xc7`RC\xd6\xf8\ -S\xa8\xa0\x94\xd0\x7f\x86S\xd4q\x1c\xee\xbd|\x86\xcb\ -}\xac\xe1#\xc6\xc2\xb7?\xf8\xd6\x01\xfb\x85\x93p\xd7\ -\xf1;W\xadF\x85\xfa\x00\xcbx\x8f\x1d\xbcI+\x8e\ -y\xd3\x12n\xf0\x19O\xb1\x9d\xd5\x10\x03\xdd\xc2\x86V\ -8W\xd8\xcdj\xe8|\xd3A\x8c\xe0\x09F;\xee!\ -\xbc\xc2\xbcV\xfa\x9f\xb4B\x91\xb4\xb2y\xbc\xc44&\ -\x03\xb4\x90b`\x093x\x81\x9fiN7\xc3\xe9t\ -\x5c\x0c.\x8bx\x87\x09\x9cc\x1d_p\x99\x04lC\ -\xbbu\x8d\xa3p`\x01\x1f\xb4\x82\xbaH\x83\xa5A\xbb\ -5\x8bF\x0c\xac\xad\x98\xf4\x1bx\x86\xb9Xh\xe2\x9a\ -\xf2oU\x0b8\xc4\x8a>\xfe\xa4\x87\xf1(\xcab\x0f\ -\xd0\x9eu\x0f\xb5UQ\xc4\x18\x14\xeam\x00\x00\x00\x00\ -IEND\xaeB`\x82\ -\x00\x00\x01J\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0d\x00\x00\x00\x0d\x08\x06\x00\x00\x00r\xeb\xe4|\ -\x00\x00\x01\x11IDAT(\x91\x85\xd2\xbf+\xc4q\ -\x1c\xc7\xf1\xc7\x9d\x93\xe4\xa2\xcb \x8b\xb2(\x7f\x00\x03\ -e2\xa0\x94\xd1 \xeab\xb1 \x0b2#\x93,\x16\ -\x89\x0c&E\xba\xc2\xa0\x84\x81\xbe\xc9$\xeb1\xa9\xeb\ -&\x8b\x1f\xc9p\x9f\xab\xef\xe9\xe2=\xbe?\xaf\xe7\xe7\ -\xf5\xfa|z%\xa2(\xca\xa3M\xe5\xaca\x11\x0bX\ -\xfduv\x9d\xc24\xd2\xd8@\x0b\xe6p\x11\x04Gx\ -\xc5\x16^\xb0\x84B\x0a\xb9 x\xc3\x09\x06\xb0\x19v\ -O\x98G\x0ac\xb8\x85d\xcc6\x87\xed\x00M\x85\xdd\ -0&\xb1R\x06 \x11EQ\xcc\xe2\x1c\xcb\xe8\xc0z\x5c\x14\xff\ -\xbdN\xdc\xe3,\xc4\x83\x1a\x5c\xa2\x07C8-;e\ -\xd0\x8c=\xbc+\xd5\xa7.@)\xa5\x86|`G\xa9\ -n\x99$\x8a(\xa0\x0bMxD6@Y\xdc\x85K\ -Z\x91G\xf1\x07i\x04=o\x03\x18\x5c\xb7\x00\x00\x00\ -\x00IEND\xaeB`\x82\ -\x00\x00\x02\x15\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x13\x00\x00\x00\x14\x08\x06\x00\x00\x00oU\x06t\ -\x00\x00\x01\xdcIDAT8\x8d\x9d\xd4]h\xcfQ\ -\x1c\xc7\xf1\xd7\x7ff)\xe5\xa15\xca\x05\x174\xb5\xd4\ -\x94\x8b\xb1%\xb1\xac<\xa4(S\xd4.\xdcz\xb8q\ -\xe7F\x89\xc2\x8dZ+)\x96I\xc9\xe4!\x91\x9a\x84\ -\x95q\xf1\xbf\xf0\xfc\x90;#\xa1\x11.H\xcd\x5c|\ -\xcf?\xbf\xfe\xfe\xff\xfd\xd6N\x9d\xce\xefw\x1e\xde\xe7\ -\x9c\xcf\xf7\xf3=\x85b\xb1h\x02\xa5\x06\xbbS]\x88\ -W8\x8a\xb3\xd9I\xb5\x13\x00MA/\xba\xd2\xff\x07\ -4\xa1\x0f\xd3q\x22\xbbc\x1e\xe8L\x02\xbdG+\xe6\ -a#\xc6p \xcb\xc8\x83m\xc5z\xbcD\x1b\x1e\xa4\ -\xfe\x1b\xf8\x84\xb9\x98Q\x9a<\xde5g\xe2\xb9\xd0\xe8\ -\x07F3c+1\x07\x1f\xf1}\xbc\x93M\xc3)\x8c\ -\xe0Ij{Q\x97\xc6\x97\xe2\x0a\x0a8\x84?\xd5N\ -6\x0bW\xb1\x0a_q_\xe8\xd4\x85~!\xfe\x00\xea\ -q\x1c=\xd9\xc5YX\x03n\xa1\x19/\xb0\x0d\xef\xd2\ -\xce\xab\xf1\x13w\x84F=\xd8W~\xa5\x12lv\xda\ -\xb1\x19\x0f\xb1\x01\x97\xb1\x1c\x17D\xe4v\xa4\xf9G\xb0\ -?\xf5\xfd\x07\xab\xc3\xcd\xa4\xc5\x10\xd6\x09Q\xcfc\x85\ -\x7f\xfe\xfa\x85\xbd2\xbe\xaa\x04\xdb\x8e\x16<\x126(\ -E\xe7\xa4\xd0\xaf\x15SqOD\xafj\xa9\xc1\xb2\xf4\ -\xdd\x8do\x99\xb1\xcd\xb8\x8bMx\x9c\x07*\xc1\x86\xd3\ -w{\xa6\x7f\x0f.b\xb10\xec\xeb\xfd7\x08\xdf\xb5\xd4\xa6\xe3w\x88\x1c\x5c\x92&\ -<\xc3.\x0cV8@\xbf\xc8\xcfF!\xc55\xe1\x82\ -\xa6B\xd9\x134?\xb5\xc3*\x84>\x95v\x5c\x12\xe9\ -\xf6[\xb8a\x04[\xca\xd3\xe9m\xaa\xd5@p[\x04\ -e,\x81F\xb1\x16\x83y\xafF\xa5\xd2\x88\xd3\x227\ -\x89g\xea\x1c\x16L\x06v\x1d\x8b\xc4\xd5:\xf1Y<\ -\x96\x03\x93\x81\x1d\xc6\x1b\xac\x11\xf6\xe9\x10\xd69\xf8\x17\ --\x83l\x7f\xf5\xb9\xae\x1b\x00\x00\x00\x00IEND\ -\xaeB`\x82\ -\x00\x00\x02\xff\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ -\x00\x00\x00 cHRM\x00\x00z&\x00\x00\x80\x84\ -\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00u0\x00\x00\xea`\ -\x00\x00:\x98\x00\x00\x17p\x9c\xbaQ<\x00\x00\x00\x06\ -bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ -\x00\x09pHYs\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\ -\xdd~\xfc\x00\x00\x00\x07tIME\x07\xe0\x01\x08\x0f\ -\x12,c4\xebp\x00\x00\x01\xeeIDATX\xc3\ -\xed\x95\xbdk\x14A\x18\xc6\x7fo\x12D\x09\x09\x82 \ -h#H\x02\x16I\x99\xbf }\xdap\xdb\xc8\x92\xca\ -\xe2\x16\xff\x00\xc12U\x88\xec\x15!\xd5\x14\xe2\x1e)\ -\x02Q\xc4t6\x92\xc2\x90\xc6B,\xceBN\x11<\ -\x0c\xf9 \x09\x5c>nR\xdc\x9c\xbeYw7\x93\x8f\ -\xce}\x96\x81w\xe6}v\xe6\xd9g\xde\x99\x85\x12%\ -J\xfc\xef\x90\xbcD%\xac\xde\x03\x06]\xd7*\xfeA\ -\xdd\xd4~\xa6\xb8\x0f\x81\xfb\xc0\x100\x00\x1c\x01m`\ -\x17\xd8\xac\x9b\xda\xb7\xbcu\xfa\xf2\x95\xc9\xa2 \x0d\xa0\ -!\xc8W\xd7\x1a@3\x08\xa3\xf5 \x8c\x1e)\xeec\ -A>\x08\xf2\x0ex#\xc8\xaa \xef\x05\xd9\x00\xee\x04\ -a\xc4\x85\x05\x00\x87\xea\xeb;\xca\x85~`\x02\xf8\xa8\ -&>*\x98g\xb7h\x0b\x06\xce\xdd\xa4\xae\xedS\x89\ -\x89\xdf\x06at\x17X\x03F\x80a\xe0)\xf0\x22\xc5\ -\x9f\x06\xda\x89\x89_{\xcc\x9d\xef\x80uO/\x06H\ -L\xdc\x02\x9e\xdb?Y;\xa9\xb9\x8a\xe7\xb5x\xa1\x03\ -\xe2\xea\xd3b\x11D\x17\xeb'\xf9[\xbb\x0f4W\x8b\ -\xbd\xb2\x80\x02\xec\x03\xc7\xee\xdd\xe1,B\x10FO\x80\ -&\xb0e\xb1;\x82|NL|m\x02\x8e\x81\x13\xf7\ -\xee\xcd\x8c\xfcR\xaa?v)\x07\xb4\x95)[\xc5b\ -{\x9e\xf7g\xe4\xcf\xed{\x09H\xd5\x80N\xdd\x12\xe4\ -\x86\x8b\xdb\x9a\xeb\xf8\xd3\x82\x9c$&^\xf6\xb1\xb3\xcf\ -\x87\x94\xc2m\x15og\x11|\x17\xbf\x88\x80\x8e\x8a'\ -U\xfc\xe5\x12\x1fp\x06\xbe50^\x09\xab[\xc0(\ -\xf0\xccb-\xdd\x0b\xeaU\x9a\x0bP\x09\xabU\xa0\x05\ -\x1c\xb8\xb6\x0d\xfc\xaa\x9b\xda\x0fo\x01\xbd\xb3\xefj`\ -V\x0bs{\xbe\x9a\x98xEs]~)}/\xb8\ -\xfe\x18\xe0/\xc0\xa9n\xd1=r\x1a-\xe0eb\xe2\ -95\xb6\x07\xfc\xe6\xdf\x7fB\x07\xf8\x0e,\x90\xf3\xbf\ -(\x120\x935X7\xb5\xac\xe1y\xd7\xb2\x9c\x04 \ -\xef\x22*Q\xa2D\x89S\xad\x83\xa9\xe2\x81\x96I:\ -\x00\x00\x00%tEXtdate:cre\ -ate\x002016-01-08T1\ -5:18:44+00:00\x8e\x05\xfd\ -\xe0\x00\x00\x00%tEXtdate:mo\ -dify\x002016-01-08T\ -15:18:44+00:00\xffX\ -E\x5c\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01\xeb\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x11\x00\x00\x00\x10\x08\x06\x00\x00\x00\xf01\x94_\ -\x00\x00\x01\xb2IDAT8\x8d\x95\xd3Oh\xcfq\ -\x18\x07\xf0\xd7\xf7\xb7%s\x908(.\x8aYM\x19\ -y\x14\x8a\x1c89\xb98\x92\x9b\x96\x7f3\xb2&\x9b\ -?5\x89\xb3\xc2\x8a\x5c8)M\x9a\x03Jqz\x0e\ -\x86\x83\x03\x07\xb2\xd5\xe4_\x88R3\x87\xdfw\xf5m\ -~#O}\xeaS\xef\xe7\xfd\xee\xfd|\x9e\xcf\xbb0\ -Cef+\xce\xa1\x1d\x0f\xd1\x13\x11\xef\x1b\xf5\x16\x0d\ -\xc8\x813X\x8d\x05\x15h\x14\x8fq$\x22^7\x14\ -\xc9\xcc-\xe8\xc7J\xcc\x9d\xc9!\xde!q4\x22\x9e\ -C\x91\x99;p\x18+0\xe7/\xe4\xe9\xf5\x09#\xe8\ -\xada\x02\xcd\xe5\xf9\xdf\x9a\xc0\xaf\x022\xb3\xc0nt\ -\xa3\x0dM\xffp\xf0\x04]\x111\x02\xb5\x12X\x8e]\ -X\x88>\xbc\xc0\xe44\xf2\x07\xdc\xc1N\xacCWf\ -\xce\x83Zf>\xc2S\xbcA[D\x0c\xa0\x03\xa7\xf0\ -\x0a\xe3\x18\xc2\x86\x88\xd8\x16\x11\xb7\xd57\xb7\x0c\xe3\x99\ -y\xbdY}m\xab\xb0V}3\x0f\x22\xe2'Nd\ -\xe6Y\xcc\x8f\x88\xd1);\x99Y\xc3&\xb4\xe23\xee\ -O\xbd\xc9,\x9c\xc4\x01\xbc\xc5\xfe\x88\x18\xae\xceR\x92\ -;\xcb\xbeB}\xa3W\x22b\xb2\xc8\xcc\x96\xd2zg\ -i\x7f\x08{\xf1\x11\xfb0\x8cC\xe8\xc1w\x9c/\xef\ -\x05\x8ec\xb0\xc8\xcc\xaf\x98\x8d\xed\xe5\xbc2\xb3\xb9$\ -\xf6\xa2\x05c\xe8\x8e\x88\x9b%^\xe04\x8e\xe1e\x91\ -\x99m\xb8\x88\xf5\xb8\x85\xce\xa9\x8cdf\x13\xda#\xe2\ -Ye\xac\x0e\x5c.\xdf\xef\x06\x0eV\xbf\xfd\x12\x0cb\ -#\xeebOD\x8cU\xf05\xb8\xa4\x1e\xc8k\xea\x19\ -\xfaB\xe3\x00..\x9dm\xc5=\x5c\xc0\x00\x96\xe2\xaa\ -zf\xbeU9\x7f\x88T\xc4\x16\x95\x02\x9bK\xfb}\ -\x11\xf1\xa3Q\xefos\xf3\x98\x0b\x981\xe3\xce\x00\x00\ -\x00\x00IEND\xaeB`\x82\ -\x00\x00\x02\x91\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x14\x00\x00\x00\x11\x08\x06\x00\x00\x00\xddD\x8c\xbe\ -\x00\x00\x02XIDAT8\x8d}\x93QhVe\ -\x18\xc7\x7f\xcf\xc7>(u\xcb\xae\xc4\xd01\x91\x85|\ -Q\x9a\x9eH\xac\xad\x18\x12\x14\xee\xb2\xb0\xebH(\x1a\ -\x0c\x04a\xdd\x85\x17\x0e\x12/\x82\x04\xe92\xbf`\x22\ -\x08\x0e\xbb\x182%\xb5\xa0\xde\xb352\xa9\x1b\xa9\x8b\ -\xe9\x96\xae\xf8J\xc4\xc2\xfau\xd1\xfb\xe9\xd9\xe7\xf2\xb9\ -9\xe79\xe7\xf9\xff\xfe\xff\x07\xde\x17:J]\xa3\x8e\ -\xa8g\xd5y\xf5\xb6\xba\xa4\xce\xa9\x1f\xa9;;5Y\ -\x87\xfa\xc0\xc7\xb7\xd4\x9b\xea\xd5\x0c|^\xedS\x9fR\ -\x87\xd5O\xd4[\xea\xa4\xfa\xc4C\x81\xd9\xfd\x8e\xfa\xae\ -\xfa\xb1\xba\xf1\x7f\x92lR\xcf\xa9\xd7\xd4-+\x02\xd5\ -\xd1\xbc\xda.\xb5\xa6\x9eZ\x09V\x11\xd7\xd5\x93y\x93\ -\xb5\xcb\x80joN6\xa6nW_S\x0f?\x0c\x98\ -\x01\xab\xd4\x9f\xd5\x0f\xab\xc0.\xe0m\xe0Z\x9e\xdb\x09\ -\xec\x02\xba\xd5O\x81_\x81q\xe0zD,\x03F\xc4\ -mu\x0a\x18P\x1f\x01\xee\x00\x84:\x0bLD\xc4x\ -vz\x07\xb8\x1c\x11\x17\xd4\xae\x99\x99\x99iu.\x22\ -N\xf7\xf4\xf4|\xd1\xdf\xdf\xffg\x9e[\x0d<\x0b<\ -\x07\x5c\x8c\x88o\x00j\xc0\x93\xc0\xb7\x15\xf3.\xe0\xaf\ -\x9c\xe2\xaez\x1exO\x9dj\xb5Z\x8beYN\xa4\ -\x94^_XXx\x1c\xf8\x0ah\x02\x7f\xb4\xc55\xe0\ -Q\xa0U\x01.\x01\xab*}\xb3\xf2\xfe\x98\xfa\x06p\ -b~~\xbeY\x96\xe5\x9a\x88\xf8\x05X\xac\x02\x17\x81\ -\xde\x8a\xe8\x07\xe0\x99vS\x14\xc5\x8f@by}\x07\ -\x0c\x15E\xd1\x0e\xf2{\x15\xf8%\xf0Jex\x0ex\ -\xa9\x03\xd0\xec\xe8\x9f\x06\x0e\xb6\x9b\x88\xf8\xbb\x0a\xfc\x0c\ -xS\xddP\xf9\xf9\x93\xda\x00Pw4\x1a\x8du\x80\ -\xc0\x11\xe0b\xd6\x8e\xa5\x94\xf6u\x18\x11j\x0d\xf8\x1e\ -\xa8\x03G\xf3\xb3\x17\xd8\x03\x5c\x00\xae\x00\xcd\xb2,_\ -\x05\x8e\xe5\x10\x1f\x00\xefg\x93\xe1\xa2(>\xbf\x07\xcc\ -)\x1aY\x5c\x02\x07\xf8\xef\x5c\x0e\x02/\x03#\x11\xd1\ -q\xeb!\xa5\xb4\x1b8\x0et\x03\x83EQ\x94\xed\x95\ -\x89\x88+\xc0\x00\xb0\x19\x98\x00\x86\x80I`\x1a8\xa1\ -n\xcd\xc6\xf56\xb0(\x8a\xb3\xc06\xe0\x12p&\xa5\ -\xd4w/a\xbb\xf2a\xdd\x0f\x8c\xe6\xd5\xbf\x06~\x03\ -\xb6\x00S\xc0\xa1\x88\xb8\xd1\x91\xb4\x96\xd7\xdf\x0b\x0c.\ -\xbfO\xf7\xc1u\xe0\x05`+\xb0\x1e\xb8\x09\x9c\x03f\ -#\xe2\x9f\x954)\xa5\x17\x81}\xff\x02\xe28ya\ -\x96\xfd\xc4\x97\x00\x00\x00\x00IEND\xaeB`\x82\ -\ -\x00\x00\x04x\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ -\x00\x00\x00 cHRM\x00\x00z&\x00\x00\x80\x84\ -\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00u0\x00\x00\xea`\ -\x00\x00:\x98\x00\x00\x17p\x9c\xbaQ<\x00\x00\x00\x06\ -bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ -\x00\x09oFFs\x00\x00\x01@\x00\x00\x00\x00\x00s\ -\x05\xb7\x16\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\ -\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\ -\x07\xdf\x0c\x12\x0e\x1b\x0b$&IW\x00\x00\x00\x09v\ -pAg\x00\x00\x03@\x00\x00\x00 \x00\xbe\xe6\x89Z\ -\x00\x00\x03=IDATX\xc3\xe5\x97MhUG\ -\x14\xc7\x7f'\xba\xf3\xa3`\xa3Q\xb1\xa9-(*\xb5\ -(6\x96 \xadP\xdc\xc4\x16\x04\xad\xe0}\xbb\xa1\xb8\ -\xb0p\x1fZ\xa8\x8b\x82\xe8\xa6\x14\xba\x11\xee\x05\x15\x17\ -N\xa1p/h\xa4.\x0b\x8d\xa4\xa4i\xd4E\x055\ -~ H\xd1*\xa95DP*\x88\xf6\x9d.\xdey\ -\x8f\xf1a\xde\xbb\xe6C\x17\x9e\xcd\x999\x1f\x9c\xff\x9c\ -\xff\xdc\x99\xb9\xf0\x8aE\x8a\x04\x95\x5c\x19`\x8f\xa2?\ -\xe4>\xbd\xff*\x00\xfc\x02lR\xf4\x0fA>\xc8|\ -\x12\xfa\xf6\x03\xf3\x81S\x99O\xfa\xcc\xd6\x03lVT\ -\x049\x92\xf9d\x18 r\xf1^A:\x81\x93\x99O\ -\xfa\x01f\x16(~\x14\xd8d\xd3u\xc0I`[\x10\ -\xf21\xf0\x090\x0f\xe83\xdb\x97\xc0g6\x1e\x05\x86\ -K\xae\x8c\xa2_\x03\xed\xc0O\xb5\xe4\xb6f\xc5#\x17\ -\xefUt\xa7\xa2\xaah\x05PE\xb7F.\xfe\xbe\x16\ -\xa3\xe8iEQ\xf4\xbd\xc0\xd6\xadh}l\xfam\xa0\ -\xddbO\xb7\x04`\xbc\x7f+\xc8cA\x9e\x0a\xd2\x06\ -\xfcg\xf3\xafJ\xae\xdc^\xe5P\x06\x05A\x90w\x22\ -\x17Sr\xe5E\x82\xbc)\xc8C\xe0\xb1 \xdd\x16\xb7\ -\xca\xf4\x95\xdc\xa7\xb4\x04`\xb2\ -y/0\x02\xcc1\xb0k\xcc~.\xac\xd3\x94\x82\xdc\ -\xa7c\x99O\xfe\x01\xc6\xcc\xf4 \xf3\xc9hP\xbc\x06\ -\xf4b\xb0G6\xda\xf8\x14p\xd9\xc6\x1b\x80\xb5\x0d\x80\ -[\x03\x088\x95\x1a\xa7\xe3\xf8\xcf\x99\xbfK\xd1.\xe3\ -y\x10\x18\xb2q\xb7\xa2\xab-\xf6\xec\x0b\x030\x8e\x9b\ -\xf9\x07\xcd\xdf#\xc8rAn\xe5>\x1d\x03\x86,w\ -\x8b \x8b\x80G\xb9O\xaf\x85\xb9-?\xc3\x82\xf2\xbb\ -\xe9\x95\xa6\x7f6}\xde\xf4\x0a\xd3\xfd\x8d\x89\x85:\xd0\ -J2\x9f\xdc\x00\x1eA\x9d\xa7~\x80\xdc\xa7\x0f\x80+\ -A\xe8\xaf\x13\x02`<\xb6\x8a9\x03\x88\xc5\x0e\x04\xf6\ -\x0bA\xfePc^!\x0aj\xfc7\x03!\xc8nE\ -\x97\x0b\xa2\x99O\xae\x06\xf6\x03T?\xc9\x8a\xa2}\x8d\ -yS\xb5\x07\xb0\xf3~\xf89\xf6\xeb\xc0\xf5\xf1\xf2\xa6\ -d\x0fLF\x0au\xa0\x15\xff\xd3\x0e\xa0\xc8\x1eh&\ -v=\xc7\x8an\x0e\xef\x01xy\x14,\x03z\x80[\ -%W^\xfa\xc2\x1d\x00*\xa6\xe7\x96\x5c\xb9\xa3\x96\xa7\ -\xe83'\xe48\xf3\xa7\xc0\x1bfz\x0b\xb8Tr\xe5\ -O3\x9f\x0cT\xbb[@\x22\x17\x1f\x07\xb6O\xb2\x0b\ -\x15\xab'\xc0\x13`q\xee\xd3\xd1\x22/\xa2\x13\xc0\xe7\ -\xc0\xdf\xf6$\xab\xd3V\xb0\x03\x15\xe0]`\xa5\xa2j\ -\xfe\xdf\xa8\xbe\x94\x9aS\x10\xb9\xb8\x97\xea\xf3\xeb&\xd0\ -\x95\xfb\xf4\xdeD\x96^r\xe5]\xc0![\xfd\xb1\xcc\ -'_\xd4|mA\xd0\xda\x86\xa4<(\xde\x9d\xf9d\ -B\xc5Mf\x98\xfe&,^\x07\x10\xb9x\x81\xa2\xe7\ -#\x17\x1f\xb6y\xa6\xe8\x0e\xe0\x8e\xa2\x1ff>\x19\x99\ -Dq\x14\xedUtc\xee\xd3\xef\x1a}b\xab]\x0a\ -\xfci\x9c\xfdEu\xb7\xdeV\xf4\xfd\xa9\xfe\x0fh\x94\ -\x1a\x05\xed\xa6+V\xfc_`\xfdt\x17\x0f\x01t4\ -\xd8g\x01\xfb\xa6\xbbx\x1d\x80\xa2\xf3\xec\x98m\xd3\xfa\ -\xed\xaf\xbb\x22\x17G\xd3\x0d`&\x80 ?\x02\x9d\x8a\ ->\x11d\x04\xb8\x0b\xdcU\xf4\xc2\xcb\xe8\xc2\xeb-\xff\ -\x03Q\x9bYF6Y\xf5\xec\x00\x00\x00%tEX\ -tdate:create\x00201\ -5-12-18T14:27:11\ -+00:00YM\xe3\xc6\x00\x00\x00%tE\ -Xtdate:modify\x0020\ -15-12-18T14:27:1\ -1+00:00(\x10[z\x00\x00\x00\x00I\ -END\xaeB`\x82\ -\x00\x00\x01U\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ -\x00\x00\x01\x1cIDAT8\x8d\xa5\x92?K\xc3P\ -\x14\xc5\x7f\xa9\x11%\x8b\x1d\x5c\x5c\x05\x05'\xa1\xdcM\ -\xfc\x02*n\xd9\x5c]\xc5/P\x1c;\xf9=\x1cU\ -\xea\x87\x10\x0eq\x12\xc4\xa5\x11\x8b\xe0\xa6(4R\x9a\ -8\xe4EB\xdaj\x82\x07\x1e\x8f\xfb\xe7\x9c\xfb\xce\xe3\ -z\x922 c6\x92J\xbc\x08\xf8\xc0\x17\xb0\x04\x8c\ -}G\xf6f\x90\x07f\xb6^NH:\x05B3\xdb\ -\x91t\x09\x1cx\xee\x05\xef\x15r\xcbM\xb8\x02\xd2R\ -~\x1b\xd8\x04\xae\x81=`\xc1\x07\x86\xc0\xee\x1c\x0b\xbf\ -\xe1\x0c\xe8\xfb\xc0\xc4\xcc\xe2\xa6lIm \xf5\x8bD\ -\x14E!\xb0_\x93\xff\x9c\xa6\xe99\xe4?Z\xe0(\ -\x08\x82\xc3:\xec$I\x1e\x0a\x81V\xcd\x89s\xf1o\ -\x81\xb2\x85\xa7\xd1ht\x0b,\x03\x9f\x95\xda\x9a;\x8f\ -\xc0[\x96e\xe3)\x81N\xa7s2o\x8a\xa4\x10\xb8\ -\x00\xb6\x80.\xd0\x03V\x9aX\x18\xba\xde\x04\xd8 _\ -\x22\x9a\x08\x0c\x80;\xe0\x1ex1\xb3\x9b)\x0b\x7f\xe0\ -\x158&_\xef\xbe\xa4\xdeOER\x5cS\xa4\xe8_\ -uw[R\xecI\xfa\x00&MD\x1c< \xfe\x06\ -\x8cB^q\x9bC\x89i\x00\x00\x00\x00IEND\ -\xaeB`\x82\ -\x00\x00\x01\xf9\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x13\x00\x00\x00\x13\x08\x06\x00\x00\x00rP6\xcc\ -\x00\x00\x01\xc0IDAT8\x8d\x9d\xd4M\x88\x8eQ\ -\x14\x07\xf0\xdf\xc3\xe4c\xf0\x8e\xa4\xa4X!a3\xf9\ -*55)!\x0b\x1f\xb1bMYH\x0a)+\x91\ -\x22\x89a%I\x16^5Y\xf8JV>J\x91G\ -Y(\xb11,$\xe3{2\xc64bq\xcfSO\ -\x0f\xaf\xf7\xcd\xa9[\xb7s\xcf\xfd\x9f\xff\xf9\x9fso\ -\x96\xe7\xb9\x16\xac\x1b\x07\xb0\x10\xef\xd0\x83S\xf8U\x0e\ -jk\x01h#.E\xec\x10f\xe1$j8T\x0e\ -\x1c\xd5\x04h-.\x22\xc3\x0eL\xc4\xb2\x00\xdd\x8b\xb1\ -\xad\x82M\x93J\xc9\xb0\x05\xa7\xf1\x13\x0fbM\xc2\x8c\ -\xf2\x85fe\xce\xc58|\xae$\xe9\xc40\xde6c\ -\xb6\x14O#p\x00\xe70=\xce:p\x0d\x93q\x16\ -\xdf\xfe\x05\xb6\x1a\xb7\xb1\x00/\xf1\x15\x1b$}j\xb8\ -\x89%\xb8\x87=U\x16e\xb05\xb8\x82v\x1c\xc4l\ -I\x93\xed\xb8\x80\x1b\x92\xf8O\xa4\xc6\x0c6\x02\xebB\ -/\xc6`\x1f\x1e\x06\xab\x13\x18\xc1\xf9\x88y\x8c\x15\xf8\ -R\x05\x225`\x1e\xae\x07\xa3\xfd8\x82\xc5\xd2@n\ -\x8b\x05w\xb0\xbe\x11P\x01v\x5c\x12\xf6(\x0e\x87?\ -\xc7|l\xc2L<\x0a\xe6#q^\xc3\x1c\xbcF\x7f\ -\xb9\xcc\xe5\xf8\x18\xac\x0a\x1b\x8d]\x18\x8f\xab\xa8\x97\x80\ -`w$\xe1\ -M\xd9\xf9\x1b\x87\xd0i\x8b\x22\xfc\x9f\xfe\x00\x00\x00\x00\ -IEND\xaeB`\x82\ -\x00\x00\x02\xbf\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x16\x00\x00\x00\x13\x08\x06\x00\x00\x00\x94y\xfd\x88\ -\x00\x00\x02\x86IDAT8\x8d\x8d\xd4]\x88\x97U\ -\x10\x06\xf0\xdf\x7fQ\xd0B\xdb2)\x08D]\xc9B\ -\xec\xa6!\x03\xa3\xb2 \xd1J(\x0d#\x13\x14\x0b\x8b\ -\xc0\x82\xad\x9b0\x0a\xa4@\x906BJ\x141\xb0 \ -$\xfb\xf0\x22r\xefV\xcc\x14fS\xe8\x036HJ\ -J\x0d!\xdd\xf2\x03#\xda.\xceYx\xf7M\xc9\x81\ -\xc3\xcb{f\xe693\xcf|t\xb4$3\xc7\xe1s\ -\x04\x0e\xe3B=k#\xe2\xf7js5^\xc63\xf8\ -\x0bK#\xe2@\x13\xa7\xab\x0d\x8c\xf9\x98\x80)8\x8e\ -\x07\xb1\x0c\xab*\xe8t|\x85n\xf4\xe0\x05\xack\x83\ -\x5c\x0a\xf8Z\x1c\x8d\x88\x11|\x8a\x91z\x7fCfN\ -\xc3\x00\xfa\x22\xe2\xb9\x888\x83\x1f0\xf5J\x80\x7f\xc5\ -4\x88\x88\xdd\x98\x8e\xdb\xf0\x08\x0e\xe1\xd5\x88\xd8\xd1\xb0\ -\x9f\x81_\xae\x04\xf8{\xcc\xcd\xcc\xf1\x15\xfc\x18\xbe\xc5\ -QL\xc2`\xcb\xfeN\x1c\xf9_\xe0\x888W\x9d\xef\ -o\x5c\xf7*\x94<\x81\x0fk\xf1Fe)\xf6\xb4q\ -:\xcd\x9f\xcc\x9c\x80\xdb\xf1\x12f)\xb4\xdc\x84[p\ -\xb1\x9en\x9c\xc0\xcf8\x85\x05X\x83\xfd\x11qb\x0c\ -pf\xce\xc3\x8b\xd5h\x10\x07\xf1<\x1e\xc5f\xbc\x16\ -\x11\xbb\xaa\xedU\xf8\x0e\xaf`%~\xabXw\xe1\x1c\ -\xb6bk'3{\xf1,6`wD\x9c\xad\x00\x9b\ -p7\xceD\xc4\x03\xad\xcc\x96\xe0\x0d\xa5\x83f7|\ -\xee\xa8\x01\xcd\x91\x99g3\xb3\xbb\xcdQf\xf6d\xe6\ -Hf\xceo\xeb\xaa\xfe\xeb\xcc|\xeb2\xba\xf7\xc6\xd5\ -\xb47d\xe6\xfa\x88\x18n\xe8\x17\xd4\xd4\x1e\xc2\x97-\ -\xc7\x99J\x1bv5\xee\x16b\x0b~\xc4\xad\x9d\xcc\x9c\ -Tix\x12\xfd\xf5\x1c\xc4'\x95\xa2\x0fp_D\x0c\ -5@\xf6`/\x1eG\x1f\xfe\xac\xdf9\xd5\xe4\xe9N\ -\xc3\xf8\x1a,Rx]X#\x1a\xc2u\x18V\xc6\x98\ -\xc2\xeb\x12\xa5\xc8=\x98\x88/p\x12O\xe1\x18\xe6\x8d\ -i\xb7\xc6#\xdbq\x00\x9f\xe1Fl\xc2\xdf\x15`#\ -\x1eS\x86\xe64~\xc2\x8c\x88\xf8\xa3\xf6\xf7\x85\x88\xf8\ -\xe7?\xc0\x99\xb9\x02\xef\xe0\xe1\x88\xd8W\xef\xaeG\xd6\ -\x94\xdf\x8e\x88m\x0d\xfb]\xf8h\xb4\x1dGe\xcc\xe4\ -e\xe6l\xbc\x8f\xc9x\xb3\xa1:]#\xbc\x19\xfbZ\ -\xb1\x0c\xe0\x9ev\x80\xed\x91\x1eVv/\x85+\x99\xd9\ -\xa5\x0c\xc9De\xff\xf6g\xe6\xac\x86\xcf\x90\xc2\xf5\xe5\ -\x81#\xe2$V+\x85Z\x91\x99\x93\x95\xd59S\xa1\ -f\x07\xd6c 3\xefm\xb8\x8eh\xc9\xa5\xb6[\xbf\ -\xb26\xfb\xf0M=\x8b#\xe2|}|'\x96\xe3\xdd\ -\xcc\xfc\x18\xaf+E\x1d#\xff\x02\xad\xb1\xf2$\x9a\xc7\ -|\xa6\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x02=\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x13\x00\x00\x00\x12\x08\x06\x00\x00\x00\xb9\x0c\xe5i\ -\x00\x00\x02\x04IDAT8\x8d\xad\xd4\xcfKTa\ -\x14\xc6\xf1\xaf6\x5cc&\x09\x84\x89\x91\x81\x82D.\ -.t\xa3\xa9\xa0\xb6\x17\x83\xcc\x7f\xa0\xeex\xab\x8d\x08\ -\xd5JJC\x0b\xda\x14ZV\x1b\xdf\xdew\xfa!\xb4\ -S\xaaM\xe0\xca\x19#52\xf1N\xbd\x17\xa1\xc8\x8d\ -\xad\xd2`\xae\xc9\x85\x99\xdb\xa2\x94\x8c\x08g\xecY\x9d\ -\xc5\xe1\xc3\xe1p8%Z\xeb\x1bV\xc2\xee\xa3\xc8\xbc\ -\x9aIm\xd7%Z\xeb\x00\xb8\x0b\xf4Z\x09;\xd8\x0b\ -V\x0a\xb0\xbc\xbc\xdc\x03H%\xc5\xbeb'\xdc\xc6n\ -\xde\x1a\xe6\x83\xd6g\x80Y%\x85\xb1'\xcc\xf7}\xd6\ -\xd6\xd6p2\x99z`RI\x11.\x1a\x03\x10B2\ -<|\x9b\x85\x85\x85v\xe0\x8d\x92\xa2\xbch,\x08~\ -\xee\xfe\xfb\xe6&\xa9t\xba\x06\x98RRT\x14\x85E\ -\xa3QB\xa1\x10cc\x0fP\xea!ss\xf3\x8d\xc0\ -[%E\xac`\xac\xaa\xea(\x03\xfd\x97\xa9\xac\x8ca\ -\x18\x06\xd9l\x96\x89\x89\xc9#\xc0\xb4\x92\xe2pA\x18\ -@<\x1e\xffxu\xa0\x7f\xa3\xa1\xbe\x9e\xc7O\xc6y\ -\xf6\xfc\x05s\xf3\xf3\xd5A\x10\xcc*)\xaa\x0b\xc2\x80\ -\xd7eeeM\xb6\x9d\xd0\xdd\xdd\x16\x87\xa2QV>\ -\xaf\x90L>\x8a\xe5\xf3\xf9i%Em!\x18V\xc2\ -v\x80\x86\xd6\x96\x96doo\x0f\xef\x16\x17I\xa5\xd3\ -8\x99L,\x97\xcb\xa5\x94\x14\x8d\xbb\xc6~\x81\x9e\x95\ -\xb0\xadxm\x9a\xe6\ -\xd3\xad\xa6\xd0V\xb1\xb4\xe408t\xad\x02\xf8\xe7\xa1\ -\x1e\x88Dp2\xefY_\xfff\x9c\xea<9\xee\xba\ -\xee~\xd34\x93;0\xcf\xf3\xf0<\xef_\xce\x8ed\ -\xb3Y\x06\x87\xae\x97^\xbaxA\xba\xae\x1b6M\xf3\ -\xfe\xd6?\xfb\x1f\xe9\xfb\x01\xfd\x9c\xd6\xcao\xa8\xd4\xb1\ -\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01\x5c\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0c\x00\x00\x00\x0c\x08\x06\x00\x00\x00Vu\x5c\xe7\ -\x00\x00\x01#IDAT(\x91m\x90?(\x84\x01\ -\x18\xc6\x7f\xef\xe7\x9b.\x03\xc9\xec\x06\x8aA\xc8`P\ -$\xebe0\xd8t\x03\x83\xc5`30;\x93U\xf9\ -su\x06\x8b\xc5\x22euJ1*\x97l\xca \x94\ -\xae\xfcI\xfd,\xdf\xe9K\x9e\xf1\xe9\xfd=\xcf\xd3\x0b\ -\x99\xd4.\xb5\xa2\xde\xa97\xea\xadZW\xcbjB^\ -\xea\x88\xdaP\xb7\xd5\xc9\x9c_T\xab\xea\x89Z\xc8'\ -7\xd4!u\x8d\x7f\xa4\xae\xaa5\x80P7\x80\x01\xe0\ -\x1c\x98\x02\x8e\x80\xb3\x88x\xf8\x03\xdd\x03s)0\x03\ -\x8cEDS\x058\x05Jj\x118\x88\x88[\xb5\x1b\ -\xa8\x03\xb3)@D4[I\x11\xf1\x08\xec\xa8)\xb0\ -\xac\xf6\x03\x83@\x15XJ\x80\xb6\x5cs\x9a\x03\xbf#\ -b\x0b(\x01_\xc0\x07\xf0\x91\x00\xcfY=@\xaaF\ -\xb6\xb9S]\x07\x8e\x81v`\x02\xb8\x0e\xb5\x0c\xcc\x02\ -+\x999\x0c\xbc\x00\xef\xc0nD\xbcf\xe0<0\x8e\ -\x9a\xa8\x97jM\x9dV7\xd5\xbe\xdcw:\xd4\x0bu\ -\x11\xa0U_\x00\xb6\x81\x1e`\x0f\x18\x02\xde\xb2\xdd\x0b\ -@%\x22\xf6\x7f\x81\x5c\xdah6\xaf\x17\xf8\x04\xae\x80\ -\xc3\x88xj\xdd\xfc\x00\xa7\xf6\xbd\x96\x10\xb6\xbf\xd9\x00\ -\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01\xd0\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x14\x00\x00\x00\x10\x08\x06\x00\x00\x00\x16\x18_\x1b\ -\x00\x00\x01\x97IDAT8\x8d\xad\xd4\xcf\x8bOQ\ -\x18\xc7\xf1\xd7w\x9aIJ\x8a\xac\xfc\xc8ld$\x0b\ -\xd33ca!ij\xa2\x99\xd9XY\xda\xd9Q\x9a\ -\x85\xc2\x1f )Jb\xa9l\xa7(EJ\x84,\x1e\ -\xc2\x86\x155\x89\x05\x9b\xafh\xfcfq\xcf\x9d\xb9\xa6\ -kL\x8dO\xdd\xee\xe9~\xde\xcf\xe7\xdc{\xcfsN\ -GQf\xae\xc55L\xe39n\xe0nD\xfc\xd2P\ -fn\xc38\x02\x1bq'\x22\x8e\xd4~O\x81\x86q\ -\x00\x83\x05\x1a\xc4\x15\xbc\xc8\xcc\xbd\x85\xd9\x93\x99\x0f\xf0\ -\x0c\x93X\x81\x01\xec\xca\xcc-\x7f\x04\x96\xb0\xa3e|\ -6\x22F#b\x1d\x0e\xe2tf>\xc4-|\xc1>\ -\xac\x89\x88\x11\xbc\xc4v\x9c\x9c\x0d\xcc\xcc{\x18\xc6X\ -y\xf6\xa96#\xe2>Na\x07ND\xc4\xee\x88\xb8\ -\x1e\x11\xdf\x0a\xf2\x1dO1\x9a\x99\x1b\xea7\xdc\x89\x9b\ -xW\xa0\x1a\xae\xf5\xa3\xdc/k\xd7\x13\x5c\xc2tf\ -\x1e\xee\xf9\x0b\xd4Tw\x11\xccq\xcc\xa0\x7f1\x81\xff\ -TD|\xc6W\xe6\x16\xe5\xbf\xa9-pI\x93\xb4\x15\ -\xaf\x5cJ}o\x0b\xb4?3\xfb0\x15\x11\xef\xd1i\ -\x9a\x99\xb9\x1a#\xd8\x8a~<^(\xb0\x8b!U\xf3\ -\x9e\xc9\xccc\xf8P\xbcU\x999\xa9j\xf6e\xf8\xa8\ -Z\xd9\x99f@'3\x7f\xe2*\xa6\xcc\xb5H\x9fj\ -\x07\x8c\x95\xe2Mx\x8d\xb7\xb8\xad\xea\xbd:hya\ -\xce\xe3b/.\xe0\x10&Z>\xbf\xa9\xf5\xe5\x1aZ\ -\x80y\xd3\x81\xcc\xdc\x5cfjj@\xb5;\xe6\xff\x96\ -\x09\xd5\x894_\xdd\x88x\xd5i1f\x95\x99\xe3\xaa\ -\xa3\xaa\x0e}\x14\x11\xe7\x16\xaa\xf9\x0d\xa0\xcdx<3\ -\xa5\x8a\xf0\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01X\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0f\x00\x00\x00\x10\x08\x06\x00\x00\x00\xc9V%\x04\ -\x00\x00\x01\x1fIDAT(\x91\x95\xd0\xbf\xab\xcfQ\ -\x1c\xc7\xf1\xc7\xe7v\xb8r\x19X\x94\x1feq\x07\x85\ -\xd4{`0\xf9\x03\x84R\x18\xac\x06\x832Q\xca\xbf\ -`Q\x06\xfe\x03\x0c\xba\x7f\xc3]^\x0b\x912(%\ -E\x08I_\xe12\xdcs\xeb\x9b\xe9x\xd6\xbbsz\ -\x9d\xf7\xb3\xf7\xe9=%\xd9\x84\x078l\x8c\xaf\xb8W\ -U\xb7\xa7$\x87\xf0tP\x9cg\xd7\x02\xde\xe3\xe7\x7f\ -\x8a\xcf\xf1i\x82$\xcb88(~\xc1jU\xcdZ\ -\x0f\x1a>\x0f\xcak\xd8\x86\xd9\x94\xe4\x12n\xe0\xc5\xa0\ -<\xe1(\xce5\x9c\xc0\xf5\xaaz8(Kr\x19\xa7\ -\x1b^\xe2T\x92\xb5Aw\x09WpkJ\xb2\xb5\x7f\ -{\xef\xa0\xfc\x1d+U\xb5\xd2\xf0\xabO\xff0(\xff\ -\xb1\xbeq\x0b\xb8\x8a\x0b\xd6\x171\xc2\x22\xee$9\xd3\ -\xb0\x8c\xbbU\xf5hP\x96\xe4\x1b\x8e5\xac\xe2Z\x92\ -#\x83\xeev\x9c\xc7\xd9\x86\xfb\xf8\x88\xfd\xff4\xed\xc0\ -\x01<\xc1\x8f\xb9\xfc\x0d\x8eW\xd5\xeb)\xc9nl\xee\ -\x0f\xfbp\xb3\xdf\xb7`'\xde\xe17\x1e\xf7\xda`\xd6\ -p\x11{z\xb0\x88\xb7s\x0d\xaf\xfa\xb9\x84\x93\xbd6\ -x\xf6\x17\xf1zO\xd5\x8bA\xa4\xa9\x00\x00\x00\x00I\ -END\xaeB`\x82\ -\x00\x00\x01\x0a\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x08\x00\x00\x00\x0d\x08\x06\x00\x00\x00\x94\xc2/8\ -\x00\x00\x00\xd1IDAT\x18\x95]\xd1\xbf/\xc3a\ -\x10\xc7\xf1\x97'\xd5\xc9h\x11F\x83\xe8\x82\xa4\xb1\x96\ -\x8d\x8dAl\x9a\x0e\xfe\x83\xae\x1d\x18\xc4`\xa71\x1b\ -\x0c\x12\x8b\xc9`\xd3\xe1;t3h\x18-\x12\x93(\ -\xea\xc7\xe0\x9e4\xf5I\x9e\xdc=w\xef{\xee\xc9\xdd\ -XQ\x14B\xab8B\x05\x1d\xec\xe01Er\x06\x97\ -X\xc01^q\x81R)\x80\x06&\xd0\xc7\x1efq\ -\x8b\xad\x0c\xac\x87=\xc7s\x9c;l&T\xb1\x14@\ -\x17\xe5\xf0oPM\xd8\xc5x\x04\x9b\x86\xeaa*\xa1\ -\x15\xbd\xa1\x8d\x8f\xf0\xdf\xf0\x95\xf0\x84\x83H\x9c\x18\xd5\ -K\xfe\xe4!~\x02\xce\x9aF/\xcf\xe1\x1d\xfb\xff\xaa\ -\x17\xd1\xcd\xc0<\xceP\x8f\xfb$Vp\x9d[\xdcc\ -\x19\xdb\xf8F\x0d\x0f\xb8\xca/|b\xcd\xdf\x0eN1\ -\x87\x0d\x0c~\x01]'-R\x7f\xd2\xe3\xe9\x00\x00\x00\ -\x00IEND\xaeB`\x82\ -\x00\x00\x01~\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0f\x00\x00\x00\x10\x08\x06\x00\x00\x00\xc9V%\x04\ -\x00\x00\x01EIDAT(\x91\x85\xd2\xbbjVQ\ -\x14\x04\xe0/\x1a\xa3h\xe5\x05A\xd0\x17\x10\x04\x85\x05\ -\xa6P\x10D\xb0\xb5\xb0\xb2Jc\xa1\x9d\x85\x8d\x01\xb1\ -\x15\x1b\x0b\x11\x0b\xf1\x15\x22v\xa9,l\x84)R\x05\ -\x84\x08\x0a\x81\x88\x22\xa8` x\x89\xc5\xd9\x07~\x0f\ -\xffe`\xc3\xda\xb3Xkf\x0f[\x92\x0fIN\x1b\ -A\x92\x85$\x17\xcd\xc0\x5c\x92]\x5c\xc5\xbb\xc6\xed\xc3\ -S\x5c\xc6\xc3V\x8f\xc3v?\xbc\x85\x13\xb3\x94\x06x\ -\xb9\xa7\x15\xd7q\xb8\x9d#x\x81\xbf\xb89\xc2\x0f\xcf\ -\x0dIv\x93\x9c\x1d]\x99d.\xc9\xc9Y\xd2\xbd\xed\ -Gx\x82E|\xc27\x5c\xc2\xca\x14\xee\xf5X\xe5!\ -\x92\x1cL\xf2|\xe8\xa6W\xbe\xa5\x0bm\x1c\x16\xb0\x8c\ -3\xcd\xc12\xbeb\xab\x1f^k!L\xc21\x1c\xc2\ -\x0e>\xeb\xc2\x5c\x9do\xcd\xa5\xaaZ\x9bb{/\xee\ -\xe1qU}\x1f\xda\xbe\x80\xb7\xd8\x8f?m\xf3\x01l\ -O\xe2\xaa\xeag\xaf|\x05\x1fq\x0e_\xf0C\x97\xe8\ -\xea\x14\xeeU?\xbcRU\x9bIvp\x17\xf7\xabj\ -\xbd\xf56G^\xf0\x1f\xd7\xdb~\x80_\xb8\xad\xfb\xa6\ -\x1bx\x86\xdf\x93r\xc0\xfb^y\x11Gq\xbc\xddO\ -\xe1Z[8\x09o\xe6\xdb[\xefT\xd5z\x92\xf3\xba\ -\xdf\xb6TU\x1bS\x06\xc1?\xb7?\x88\x1a\xfe<\x0d\ -\xb2\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x02\xce\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x17\x00\x00\x00\x13\x08\x06\x00\x00\x00{\xbb\x96\xb6\ -\x00\x00\x02\x95IDAT8\x8du\xd5]\x88\x96U\ -\x10\x07\xf0\xdf\xbe\xec\xa6\xb5R\x86\x19\x15Kx\x11F\ -B\x118\xb1\x98e\x94PT\x0a\xf6\xa9\x90\x10^I\ -Y$\xacE7\x19!D]\xa4E\x1f.\xa1\x88\x22\ -\xde\x88X\x04]\xecEEA\x9f'D\x12\x17\xb2\x94\ -\xa4\x15\xc2\xb0\xb7R\xa3\x0f\xb2\x8b3k\x8f\xcf\xbe\x0e\ -\x1c\x9e\xe7\x9c\x99\xf9\xcf\xccyf\xfeO\x9f\x96\x94R\ -\xfa\xf1>\x02\xfb\xf0G\xae\xd58\x91f}8\x93\xcf\ -\x95X\x86\x19\xf8\x02\x9b\xf0\x0bt\xda\xe0X\x88\xe9\x98\ -\x85c\xb8\x17\x0f\xe2\xd1\xd4Ok\xd8n\xc5\x0e\xdc\x8f\ -\x1b\xf0\x0c>\xc7\xec\xf3\x81_\x8a\xc3\x11q\x06\xefd\ -\x860\x13\x17\xe3\x82<{\x00\xabR\xf7\x0fn\xc6s\ -\x98\x8b7\xce\x07>\x81\xab!\x22\xf6`Nf5\x8c\ -\x058\x95vO4|\xf6\xe2\x086\xa3\x8b\x870\xb7\ -\x17\xf8A\x5c_J\x19\xc8\x00Gq\x00_\xe3'\xfc\ -\x9b\xd5-j\xf8\xbc\x95\xcf\x93\xd8\xae~\x8b\x15S\xc0\ -#\xe2T\x02-n\x1c\xaf\xc1\x8f\xf86\xf7\x8b\x1aU\ -\xef\xc3G\xad*\xe0\xb6\xbe&p)e:\xe6\xe3i\ -\x5c\x93\x80Wa\x00\xa3\xd8\x95\xc0kqK\xba\x8d\xab\ -w<\x99\xfdL\xb5[\x8eu\x12t\xb8\x94\xb2;\xc1\ -\xd6c?\x86\xf02\xfe\xc6\xe3\x11\xf1\x1a\x8e'\xd8p\ -#\xa7\xebpQc\xdf\xc5o\xb8\xac\xbf\x942\x82\xc7\ -\xb0\x01\xab\x22\xe2d\x06\x1c\xc4\x8b\xf8!\x22>l8\ -\x1f\xc4\x96\xf4\xa1\xde\xf3\x16\xe7J\x17C\xfdx\x01C\ -\x11\xd1m\x19l\xc6\x93\xb8\xd5Ty\x1e\x0f\xab\xb3\xb0\ --\xc1\xdar\xa2\xa36\xfd\x86R\xca%-\xe5\xedj\ -\xdb\xdd\xd9\xc3\xf18F\xd4\xfe~\xb5\x87~\x16&\xfa\ -q\x9fz%\xdf\x97R\xc60\x96\x01GR7ZJ\ -\xd9\x16\x11\x13-\x80\x1d\xea@\x1dn\x9d_\x8eA\x8c\ -\x9f\xed\x96\xcc\xfcn\xb5\x1b\xeeR\x87g\x5c\xe5\x8c/\ -\xf1\xba\xda\xa2\xa7{d\xda\x94%x\x0f#}\xbd\xb4\ -\xa5\x94\xad\xf8\x14\xef\xe2\x0a<\x8bO\xd4\x1e\xee\xe2/\ -\xdc\x84\x1b\xf1\x9d\xda\xe7\x9341\xaa\x92\xdc\xbc)C\ -TJyD%\xaaC\x11\xf1sD\x1c\xc0SX\x9a\ -k0M/\xc4\xdb\xf8\x00\x1b\xf3lHe\xc9\xcf0\ -\xdei\x01_\x8b\x9d*Aml\xa8\xba\xf8\x1dwd\ -\xd6\xf01v\xe7\xfbZ\xbc\xa4\x12\xdd@&3\x85\xb8\ -~U\xb9\x1b\x8ef\xc0\x8e:\x81\x83x\x13W6\xec\ -W\xe2\x95\x0c\xbeN\xe5\x94%\xf8Jn\xda\xd7\xb2<\ -#/\xce,v\xaa\x1c\xbe,\x03O\xc3\x9fm?\xff\ -\xff@\xceJ/V\x1cS)w\x13\xbe\xc9uOD\ -LV\xd4\x0bX\x1b\x18\xfe\x03:\x81\xbf\x95\xfd\x1fR\ -q\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01]\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0e\x00\x00\x00\x0e\x08\x06\x00\x00\x00\x1fH-\xd1\ -\x00\x00\x01$IDAT(\x91\x9d\xd2!K\xa4a\ -\x14\xc5\xf1\xdf\xbcc\x90\xc5\xb5\xd8\xd7\xb22i\xda\xfd\ -\x00b\xd02A6\xca&\xd3\xb2U\x90A\xfc\x00&\ -\x8b\xb8[D\x10\xd4\x22\x82\xc5f\xb5\xb8\xb7\x88\x96\x0d\ -\xe6M\xc2*\x83\x82\x08\x1a\xe6\x1dy}w4\xeci\ -\x0f\xf7\xfc9\xf7\x1e\x1e\x99\xf9\xcd\x7f\xa8\x91\x99W8\ -\x88\x88\xee{\xc6\xcc\x1c\xc5\x0c:X.pQ\x0e\xd6\ -\xde\x00\xda\x99y\x84k\x1cc*\x22z\x05\x94i\x8f\ -o\xc0\x97\xf8\x88\x0f\xe5{\x17\x8a\xc14\x22V\xf1w\ -\x08\xdc\xc14np\x8f\xc3W`\x09\xafU\xe1\xccl\ -c\x1f\xa7\xf8\x8c\xa5\x88\xe8\xd1/\xe7(\x22\xe6kw\ -u\xd1*\x93~\xe1kDC\xc7x\x17\xfa*\x00\xe6\ -KG\x079=z\xde\xaek\xf8{\x85\x5c\xa3S\x0b\ -(C\x22!\x1c\xc1ry\x9e\x91\x17_~.\xb0\x89\ -\xf5\x8b+#\xe7.\x94\xcd\xa69c\x9d\x1d@()\ -\x9b\x14vJ\xc0\xd9{\x06\xbf\xaf\x80m\xd3\xbe\xdab\ -\xad\x07\xa8z\xbd~ \x02\xcd\xf2\xbb\xa1f\x89}\x89\ -\x8e\x14\x19\x22\x96\x04\xfe\xa8\x94\xe7\x97\xb76\x1f\x1e\x88\ -@\xdc(\xd6\xcaw=\xdd6N\x00\xc3@\x09\x9d\x1b\ -\x14\xfajV\x80Z.\xbf\xf7\x15\xef\x94\x80\x0d\xb50\ -,\x81\xd7\x0c\x81[\xe8\xec\xe9\x00\x09\xe0%`(\x99\ -J\x93/\x14Y_\xf3:&`7\xednC\xc0\xc2\ -VAo>\xda\xdeZ\x07H\xa6\xd2\xa03h\x1e\xa2\ -?\xc7aX\xb9DD\xf9\xf8\xaf?]\xe7\xfa\xd7\x9f\ -\xdb\xbe\xf4\xad\x14\xf19~\xac\x94\xa2\xaf\xdfF\x98_\ -\x1f\xc6\xcc)k(e\x9dp!\xa0\xcb\x1e\xaf\x8a\x10\ -d\x0b\xbdv\xbd\xf2\xe7\x22\xe6\x81#\xb9B/\xe3\x13\ -\x93\xb6?\x1aPT\x03\xd2\xb1C\xf1\xe2\xf8\xc4\xa4\x07\ -\x9cg\xb7p\xb5[\x8c\x8dOL\xce\x1aR\x05\xb4\xf3\ -6@W\xc8\xfb\x11\xb0O\xed{\xe6\x0b#mH\x8c\ -\x00\x0fBs\xb1\xc0\xf9n\xb6\xbb\x9bp\xc9\xee\x13\xf0\ -\xeeWh4\xea\x1b\xae\x1b\xfb\x18\x1dN%\xb3a\xc2\ -\x9c\xee\x11\xf0-0\x80~v\x934\x97\xec\xdf\x1bU\ -5\xb4\xb3\xda\xfaP\xa2\xdf\x8c\xdb^u\x99`E\xbc\ -\xe7F\xce\x8c\x8eqj\xf8,\xdd\xdd)\x84\xb3\x9b\xba\ -\xa5R(\xd9\xe0\xde\xec\x0c\x99l\x9e\x9eb\x1f\x8e\xe3\ -\xea\xa7O)\xa4\x94T\xca\xf7\x00\xe8\x1f\x18\xc2q\x1c\ -\x84\x10\xbe\xd7I)Y\xf5\xaa\xccLO\xb10w\x97\ -g\xf8_\xe1\x1f\x16\x8f\x0dW\xeaa@l\x00\x00\x00\ -%tEXtdate:create\ -\x002015-12-18T14:2\ -7:00+00:003\x90\xe8\xec\x00\x00\ -\x00%tEXtdate:modif\ -y\x002015-12-18T14:\ -27:00+00:00B\xcdPP\x00\ -\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01\xa9\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0f\x00\x00\x00\x0e\x08\x06\x00\x00\x00\xf0\x8aF\xef\ -\x00\x00\x01pIDAT(\x91}\xd2\xbbk\x94Q\ -\x14\x04\xf0\xdf.A\x22\xd8\x88O\xb0\xf0Q\xf9\x8a\xa8\ -\x1c\x9bhaa\x1b%\x01\x11\x8b\xfc\x01\x06A1+\ -\x096Z\x88HH\x0am\x04\x03*ha\xe3\xa3\xb3\ -\x08\x98*\x12\xe5@\x1a1\x08V\x0a\x8a\x06\x82b*\ -\x1bS\xec\xfd`\xf7#\xe4\xb4wf\xce\xcc\x9c\xdb\xb0\ -\xc6d\xe6~\xdc\xc1!\xbc\xc3XD\xfc\xaa\xe3\x1a5\ -R?n\xe2\x046w<\xfd\xc4\x5c\x11\xf9\xd2E\xce\ -\xcc\xb3h\xe1\x186\xad\xe5\xa6\xcc2>\xe0VD\xbc\ -od\xe63\x0ca\xe3:\xa4\xfa\xfc\xc5\xedj\xf30\ -\xae\xe10z\xd6!\xfd\xc1|\xd9<_\x01\xdf\xe2\x22\ -\xbea7\xfat\xf7\xb1\xac]\xdc\x06|\xc5Ghf\ -\xe6,\x16\xf1\x19\x17\xb4s\xdf\xc0',\xe15NF\ -\xc4\x00\x86\xb1\x05?2\xf3IO\xb1q\x14\xc7\xb1'\ -\x22\x16q73\xa7\xb0-\x22\xbew88\x82\x83X\ -\xc1\x5c\x95\xb9\x17\xafp\xaaX\x1a\x89\x88\x85\x8a\x91\x99\ -\xe70\x89\xed\x98\x8e\x88\x1642s\x1c\xa3%\xcb%\ -\x9c\xc6\xf5\x92\xff)\xae\xe0\xbf\xf6)\x9b\x98(\x9ac\ -M\x0c\xa2\x17/\xb1\x10\x11\x13\xd8\x81\xc7\xa5\xc4\x91\x88\ -\xd8\x1b\x11/0S\xca\xdd\x89\xf3\x95\xed\x03x\xa8}\ -\xaa\x07\xe5\x14\xff:lo\xc5=\x0c\xe0\x0d.G\xc4\ -R\xfd{\xee\xc34\x02\x8fp\x1fS8S\x9c]\x8d\ -\x88\xdf\x15\xbe\x8b\xdc!\xb2\xab\x88\xf4\xe39Z\x11\xb1\ -R\xc7\xad\x02\xcc\x87tf \xe3\x97\xea\x00\x00\x00\x00\ -IEND\xaeB`\x82\ -\x00\x00\x01\x04\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x08\x00\x00\x00\x0d\x08\x06\x00\x00\x00\x94\xc2/8\ -\x00\x00\x00\xcbIDAT\x18\x95]\xd0!K\x83a\ -\x14\xc5\xf1\xdf\x1e\xa7\xc5j\x19[\xb1\xc9\x92\x22\xab\x82\ -\xc1\xb0\xa8\xc1l\xda\x17\x10\xeb`\x03\x0d~\x82\x81\xb2\ -:0\x18\xd6V\xdc\xa2\xe1\x05WDP\xd1\xb8\xe2\x07\ -\x105\x18\xde\xfb\xe0\xf0\x94{9\xfc9\x97{*E\ -Q\xc0&\xae\xb0\x87G\x9c\xe2\x0e\x12\xaa\xb8\xc57\x06\ -\xd8\xc6\x18\x8d\x0c\x1c\x87\xd9C\x1f\x9fXG'\x03G\ -x\xc2=>p\xa3\xd4A\x06Z\x98\x86\xb9\x86y\xec\ -\xbbh%\xd4\xf0\xeaOg1W\xd1IX\x89\xbb\xf0\ -\x15\xdf\x08\xaf\x9b\xe2\xee\xb2\x06\x01^`\x91\xf0\x8c\xfa\ -\x12\xb0\xc09.E\x07\x0f\xd8\xf9\x97\xd2\xcfK\xc2\x04\ -\xfb\xd8\x08\xef\x04#4s\xc2\x04o\x119\xc3\x10\xef\ -x\xc9\x09?8\xc4\x16\xae\x95\x85\xb5\x95\xd5\xfb\x05\x08\ -|+}\x8e\x949\xf5\x00\x00\x00\x00IEND\xae\ -B`\x82\ -\x00\x00\x06\x1d\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ -\x00\x00\x00 cHRM\x00\x00z&\x00\x00\x80\x84\ -\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00u0\x00\x00\xea`\ -\x00\x00:\x98\x00\x00\x17p\x9c\xbaQ<\x00\x00\x00\x06\ -bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ -\x00\x09oFFs\x00\x00\x01\x00\x00\x00\x00\x00\x00|\ -]\xbdz\x00\x00\x00\x09pHYs\x00\x00\x0b\x12\x00\ -\x00\x0b\x12\x01\xd2\xdd~\xfc\x00\x00\x00\x07tIME\ -\x07\xdf\x0c\x12\x0e\x1b\x00\xb3\xf4\x90\xdf\x00\x00\x00\x09v\ -pAg\x00\x00\x02`\x00\x00\x00 \x00\x1f=\x87\xd8\ -\x00\x00\x04\xe2IDATX\xc3\xed\x97YlTU\ -\x18\x80\xbf\xdb\xb9C;3]fa\xe8\x02\xb4@\x99\ -.\xd0R*\xb4\x104b\xc2\xea\x86\x18\x97 \xea\x83\ -F4\xfaf4F_\x5c\xde$\xf2\xa0\x0f&FE\ -\xe2\x83\x01#\xa6\x88@@)E\x81\xcaRZ\xbaP\ -\xbaP\xa4\xdbl\x1d\x0b\x85v\x98i;\xbd>\xdcs\ -\x87)\x9d\xa5`|\xd2?\xb99\xe7\xfc\xe7\xfc\xe7\xff\ -\xce\xb9\xff\xf9\xcf\xbd\xf0_\x17\xe9^\x0d\x93S\x0cX\ -\xac3\x99\x91\x9c\x82N\x96\x19\x1f\x1b%\x18\x08\xf0\xd7\ -\x80\x9bP(\xf4\xef\x00\xd8\xecY\xcc\xce\x9d\x8f}V\ -6\xf6\xac\xd91\xc7\x0dx\x9c\xf8\xbc.\xdc\xfd\xbdx\ -\x5c\xbd\xff\x1c \xddleaa\x09\x05\x8b\xca4\xd5\ -\xeb\xc0\x9b\x80#\xca\xf03\xc0\x0f\xc0\x1e\xa0\xbf\xf7j\ -\x17\xed\x17\xeb\xf1y\xdd\xf7\x06`\xb6\xd8\xd8\xb0i\x0b\ -RR\x12\xc0W\xc0f \x1d\x98\x00\xde\x07N\x01)\ -b\xae\x5c\xe0\x9b\x08\xf3s\xc0c\x80\xf7\xf7_\x7f\xc6\ -\xd9w\xf5\xee\x00\xcc\x16\x1b\x1b7o\x05\xb0\x00>\xe0\ -i\xa0J\xeb\xbf\xe5\x1f\xc1`4\x85\xc7\x8f\x8f\x8f!\ -\xcbz\xadY\x00\xb4\x8b\xfas\xc0\x9e\xdf~\xd9\x8f\xab\ -\xbf{\x92\x8f\xa4x\x00y\x0b\x0a\xb5j\x0fP\x01T\ -\xdd\xb8>\xa8\xe9\xca\x0dF\xd3v\xe08\xd0\x08\x9c\x96\ -e\xfd\x0e`\x0e@(\x14\xea\x10\x0b<\x09\xec\x06^\ -Z\xbd~\x136{\xd6\xf4v\xc0:3\x93\xf5\x8f?\ -\x0b\xf02\xf09`\x08\x06\x03$'\xa7d\x02M\xc0\ -\xac8\xec\xe7\x81\xe5\x11\xed\xb3b\x019\xed\x17/\xb8\ -\x1a\xce\x9eH\xbc\x03s\xf3\xf2\xb5\xea\x87@\x99p\x0e\ -\xe0N\xe0\x1c`\x19\xa0\x88\xd7\x00P)\xcao\x1dE\ -\xa5\x98\xd2\xd2\x13\x03dXl\x88\x09\xe6\x02\x1dMu\ -\xb5Z\xd7\xa7L_\x0e\x00f\xcd9\xb0.I\xa7\xc3\ ->+'1@\xce\xdcy\x00\xcf\x00-\xa0\x9emW\ -_7\xa8\xc7\xef\xebi\x028\x80\x8fD\xfd\x0bM\x99\ -\x9a\x9e\x11\x1f\xc0f\xcf\xd4\xaa\xaf\x01}\x8a\xa2pc\ -\xe8\x1a\xe7jk\xb89t\x0d`\x1b\xb0e\x9a\x10/\ -\x88r4\xacQ\x94D;\x10\x8e\xcdl\xa0\x5c\x92$\ -\xd22,\xf8GnRsd\x1fW:[\x01\xbe\x17\ -\x03\xb7'\x00\xb0\x8a2\x9c:\x83\xc1@|\x00\xb1\xfd\ -\x002\xf0\xaa\xd7\xdd\xaf\xad\x1c\xff\xc80gOVS\ -sd\x1f\x97\xdbZ\x00\xde\x05\xd6\xc4\x01xO\x94o\ -\x01]\xa0\xbe\xce\x98\x00\x16\x9b\x9d\xc5e\x15\xa0\x1e=\ -\x80\xfd\x91\x06\x9ax\x9c\xbd\xd4\xfdQC\xed\xf1\xc3\x00\ -\xc7\x80w\xa28\xf7\x00\x1f\xa3&\xb2\xd5\xc0\x06\x9f\xd7\ -\xc5\xf5A_l\x809\xb9\xe1\xe3\xf7\x06\xf0\x0a\x80\xbb\ -\xbf'\xe6\xf2z\xfe\xec\xe4Rs=\xc0'\xc0:\xc0\ -\x1f\xd1]!\xcaZ\xd4\x14\xdd\xd5T\x7fz\x92\xbd|\ -\xe7\x84\xb2^\x1f\xd9\xdc\xa9(\x0a\xa3\xa3A\xe2Ic\ -\xdd)<\xce\x1e*\x1fX{\xd4hJ5E\x19R\ -\x04\x14{\x5c}x]}\x93:\xa6\xec\xc0\xc4\xe4\xbb\ -\xfc\xb2$I\xdc\xff\xd0F\x8c\xa6\xb4\xb8\x10ng/\ -\x87\x7f\xda\xcd\x89\xea\x03(\xb7\xa3\xfcm \x84\x88\xea\ -\x96\x863S\xec\xa6\x00\xb8o\xdf\xdf\x0f\x02\xf9\x80\x92\ -n\xb6\xe2(.%\x91\x8c\x06\x03\xd8\xecYH\x92d\ -A\xcd\x84\x1f\x00:\x80\xeaC?\x12-\x96\xa6\x00x\ -\x9c\xbd4\xab\xa4'\x22\xf5#\xc37\x13\x02\x00\xcc_\ -X\x0c\xf0\x99h\xa6\xf9G\x869zpoT\xe7\x10\ -%\x06\x00|\x93\x07\x8f\x03\xa4\x18\x8c\x94\x96\xaf\x00\xa0\ -\xb3\xad\x99\xc0-\xff\x14\xbb\x0c\x8bM\xbb\x9e\x9f\xd7\xec\ -N\x1e;\xc8\xa0\xcf\x1b\x138*\xc0\x80\xd7\xa5UO\ -\x03+\x01J\x96V\x86\xfb\x0d\xc6TZ.\x9c\xc1?\ -2|\xdb\xb9\xd9J\xee\xbc\x85\x8c\x8f\x8d!\xeb\xf5\xdf\ -\x09\x08R\xd3\xccq\x01\xa2&\xa2\x89P\x88+\x1d\xad\ -\x00O\x09\x95\x22\x9e\x10\xf0\xf0\x82\x82E8\x8a\x96\x00\ -`\xb1\xdaYr\xdfJ6n\xde\xca\xe2\xa5\x95\xc8z\ -\xfd*\xa0\x5c\xcc]\x90=;7\xee+\x8by\x19\xb5\ -_l@Q\x14'j\x04k\xcf#\xc0!`g^\ -~!\xa5\xe5+\xd8\xf0\xc4\x16\x16\x95UX$I\xda\ -. O\x01%b\x9a]\xf3\x1d\xc5\xe8d9&@\ -\xdcO\xb2\x0c\xb3\x15{f\x0e\x06\xa3\x89\xa4$\x1d\xc5\ -K\x96i\xbbQ\xad(\xcaZI\x92@M\xb1;\x80\ -\x00\xf0\x22\xb0W\x98\x97\x00\xcd\x80Ts\xb8\x0a\xcf\x1d\ -\xe7?n\x0ch2t}\x90!\xf1\x09\x96\xb7\xa0 \ -\xb2k\x8d$I_\xa2\xde\x8a\x00\xfb\x80'\x01.5\ -\x9d'\x10\xf0\x93_X\xd2\x92\x9ea\x91n\x0c]c\ -\xc0\xe3\x8a\xe9#.@\xa4\x0cx\x5c\x8c\x8f\x8d\x22\xeb\ -g\xecB\x8d\x8dm\xa8A\xfa(0\xd8\xd1\xda\xc8\xd5\ -\xae\xb6p\xc0u_\xe9\xc0QTJg[3\x13\x13\ -\xb1\x7fT\xee\xea\xc7\xa4l\xf9*\x1cE\xa5\xc8\xfa\x19\ -a]wW;]\x9d\xadSR\xect\xe5\xae\x7f\xcd\ -dY\x8f=3\x1b\x9dNf\xc0\xeb\x22\x18\xb8uO\ -\x8e\xff\x17M\xfe\x06<\xc9\x9b\xa3b\xcb\x06=\x00\x00\ -\x00%tEXtdate:creat\ -e\x002015-12-18T14:\ -27:00+00:003\x90\xe8\xec\x00\ -\x00\x00%tEXtdate:modi\ -fy\x002015-12-18T14\ -:27:00+00:00B\xcdPP\ -\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01Z\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0e\x00\x00\x00\x11\x08\x06\x00\x00\x00\xed\xc8\x9d\x9f\ -\x00\x00\x01!IDAT(\x91\xc5\xd3\xbf+\xc5Q\ -\x18\xc7\xf1\xd7\xe5\x86\xe4\x12\x8b\xd1j5\xca\x8f.!\ -\xe4\x0fP\xc4\xceD\x06e\x91\x12\x7f\x81\xcd \x19d\ -\xb0\xc8d\x91\xc1f\xfe\xda\xc8b\x10I\xa9\x9b\x9f\xc3\ -9\xd7\x8f\xd3\xa5L>u\x86\xf3<\xe7\xfd\x9c\xf3\x9c\ ->O.\xcb\xb2\x02\x96\xd1\xe0S\x8d\xa8\xf6]\xb5\xa8\ -/o\xf2x\xc0\x0e\x0ep\x85M\xdc\xe35\x01\x1fQ\ -\xc2\x14\x86\xf21x\x86N\x1c\xa2\x1d\x0b\x15@\x98A\ -\x11\xc5\xaa/\xc1Kt\xa3\x03\xbb\xa8K\xa0E\xcc\xa3\ -\x17YU\x92\xbc\xc30\x9ep\x84\x96\x18_\xc5$z\ -pQ\xee1U\x09\x13X\xc3)N\xe2+\x8a\xb8)\ -\x1f\xaa\x04\xc2[|\xda\x05\xc6\xd1/|\xd8\x87rY\ -\x96\xfd\xc0\xfe\xae\xb4\xc7\xff\x07g1\xf8Wp\x09s\ -\xd8\xc6t\x9a\xac\xf4\xab9\xaccD0D\x93\xe0\xa8\ -6\xac\xfctc\x0e\x1b\xa2\xadp\x8dstaL\xf0\ -q>\x05\xab\xb1%xu\x00\xb7_r\xd7\xe8C\xab\ -0\x0c\x852X\x83=\xc1b\xa3\xb1`s\xb2\x0a\xb1\ -\xe7\x17\x1c\xe7\x85\x19\xdb\xc7P,\xf2(\x8c\xdas\xd2\ -F)\xe6\xc0;/f:\x9b\xed\xa3J\x96\x00\x00\x00\ -\x00IEND\xaeB`\x82\ -\x00\x00\x02\x0c\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0e\x00\x00\x00\x0f\x08\x06\x00\x00\x00\xd4\x14\xfet\ -\x00\x00\x01\xd3IDAT(\x91\x8d\x90\xbfk\x13a\ -\x18\xc7?wy#I\x04\xc1HMq(m\x22\xa5\ -\x15/\x15DA\xed\xdda\x8d.\x82q\xabm\x97\x03\ -AJ]\x5cJ\x97\xc6?\xc2\x1f\xc5\xd1\xc9\xae\xea\x5c\ -\xa5w7\xd4\xa1\x08=\x0bbQ\xc8-\xd23%C\ -\x04\xf1\x02i\x1c\xbc\xf7\xed\x05\x1c|\xb6\xef\xe7\x9e\xe7\ -\x9e\xf7\xf9hc\xe5\xca7\x8ej\xd6\xb6\xccm\xd7\xf3\ -\x17\x81\xe5\x84m\xdb\x969\xebz\xfe4\xe0\xcbF\xf1\ -\xec\xe9\x93\xb2\x0c\xcf\xd7\xd6\x86\x01n\xd6j\xe3\xf5\xfa\ -\x9d2\xc0\x97\xbd\xbd_\xc1\xce\x0e\x86a\x14\x1f7V\ -\xd5\x06Q*\x95\x8e\x82\xc8\xea\x00\xb9|>#y\x14\ -E:\xff(\xd1\xe9t>\xcb\xa0\xebz\x07\xa0\x7fx\ -\xf8]\xf28\x8e\xbf\x02d2\x99V\x14E\xea\xa9\x9a\ -\xe38\xb7S?\xda\x02\xda@\x05\x98HX;\xe1'\ -\x80)\xb5\xd1\xf5\xfcG\xa9\xc1\xd0\xb6\xcc\xb6\xeb\xf9\x97\ -\x80\xfb\x09\xdb\xb5-s\xcb\xf5\xfcq\xe0\xa5\x1al4\ -Vk2\xac\xbfZ\x1f\x01v\xa7\xaf]\xbdx}f\ -\xa6\x06\x106\xc3\xa10l2991\xfcpiI\ -\x89\x14U\xc3P\xeb^\x17\xde\x08\x80\x93\xc5S\xc7\x14\ -\xef\xf7\xb3a\xd8D\x88\xac> \xb2\xdb\xed\x1e\xa8\x83\ -5-\xfe\xdb\xdb\xff)y\xaf\xd7kKqi\x91\x9a\ -\xe38\xf7R7\xbe\x03Z\xc09\xa0\x9a\xb0\x03`\x03\ -(\x02W\xd2r.\xa4\x06?\xd8\x96\xd9r=\xff4\ - y\xd3\xb6\xcc\x0d\xd7\xf3\xcf\x00J\xa4XX\x98_\ -\x91as\xd3}\x0f4\x0d\xe3\xfc\xadj\xb5\xba\x02\xd0\ -\xfa\xd1\xfa\x18\xc7\xbf_\x9c\xadTF\xe6\xe6\xe7\x94H\ -q\xb7^W\xeb\x82\xe0S\x0e`tt\xec\xb8\xe4A\ -\x10\xe4<\xcf#_(\x0c\x88\x14\xfcgi\x9a\x16\x0f\ -\x88t\x1c\xe7A\xea\xfb[`?\xb9\xefr\xc2\xf6\x13\ ->\x04\xdc\x90\x8d\x7f\x00\xbf\x16\xa5`bD\x0f\x81\x00\ -\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01}\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x14\x00\x00\x00\x10\x08\x06\x00\x00\x00\x16\x18_\x1b\ -\x00\x00\x01DIDAT8\x8d\xad\x93A+DQ\ -\x18\x86\x1f#\x8d\xc8l\x94\x14QC\x16\xa2,N\x83\ -\x8d\x8dbJI\x8d,X($\x14\x0b!)%;\ -eq\xcb\xf0c\xf8\x09\xde\x95\xad\x85\xb2\xb1\xb1`c\ -cc\xe1\xbb:\x9d\xb9\xf72x7_\xefw\xcf\xf7\ -\x9c\xf7\x9e\xd3\x81\x14I:\x95\x94K\xfb\x9e\xa6\xc4\x01\ -I\x1d\xc0!0\xf7/@`\x15h\x02v\xeb\x056\ -\x84\x0d\xfb\xcd\x07\xa0\xc7Z%\xe7\xdc\xed_\x12\xcex\ -0\x80\xbdz\x12&\x017\x03_\x91\xd4\xfb+\xa0\xa4\ -\x22P6\xfbl\xb5\x11\xd8\x0e\xd6\x95$u\xfd$\xe1\ -\x06\x9f\xe7\xfa\x0eL\x02\xaf\xd6_\x97T0\xd8(p\ -\x03D\x99@Iy`\xc5\xec\x95s\xee\xce\x1bj\x03\ -\xd6\x0cv\x0d\x14\x80yI\xd3Y\x09\x17\x80v\xe0\x0d\ -8\xb3^\xe4\xa5\xdc\xf7`\xb1\xaa\x92\x9a\xd3\x80\xf1e\ -\x5c8\xe7\x9e\x00\x9cs/^\xca\xce\x00\x06\xd0\x0f\x1c\ -\xd4\x00%\x8d\x00\xe3\x96\xe6<\x18\xf2S&\xe9HR\ -_\x98p\xcb\xea=p,i\xca6\x9a\x05.\x81\xc7\ -\x0c`\x1e\xa8~\x01\xed\xf6\x96\xcc;`\x07\x980?\ -\x06,\x02\xc3\x19@\x80\xb2\xa4J\x9cp\x19h\x09\x16\ -\x14\xad\x0e|\x03\xf2\x15Ij\xcdQ\xfb2\x00\x06\xad\ -\x0e\xd5\x01\xec\x06N>\x00o\x01\x5c\xe2;\xefo\xbb\ -\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01u\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0b\x00\x00\x00\x10\x08\x06\x00\x00\x00\xc0\xbd\x85~\ -\x00\x00\x01\xcfy\xce=g\xa2!\xc9n\x5c\xc3!\xfc\ -\xc2F\xfc\xc0\xcd\xaaz\xaf\x13\x1eO\xf22\xc9i\x1d\ -\x92\xcc%YJr\x0e&I\xb6c\x11g\xaaj\xc5\ -\x14\x92l\xc6s\x5c\x18p\x19\xb7\xd6\x13BU\xfd\xc6\ -%\xdc\x18p\x0cO\xd6\x13v\x05\xaf\xb1m\x06?\xab\ -j\xb5\xb5\xdc\x87\xa3X\xc6a\xec\xac\xaag\xad\xe6\xdb\ -\x80\x17IN\xb5\x87\x19\xdci\xe7>\xb64\x93\x03X\ -\x19\xf0\x10\x0bIf\xab\xea\x03\x96\xb0\x80/U\xf58\ -\xc9&\xdc\xc5\xed\xa1\xaa\xfe\xe2js\xd3\xfe\x7f\x11\xef\ -Z~\x1d\x0f\xaa\xea\xfb\xd0\x06x\x85!\xc9\x0e|\xc5\ -,\xc6\xed\x9c\xc0S\x18\xba\xa1\x971\xdfo!\xc9A\ -\xbc\xa9\xaa\xb5q\xa0\x11\x8fp\x0f[\xb1\x17Gp\x12\ -WF\xc1d\xcai\xb1\x85k\xed\xdeSUs#\xdf\ -;\xc3.\xec\xef\xf2?=9-\xfe\x88U\xfck]\ -7\xf4\xe40%>\x8f\xb7\xf8\x8cO8\xdb\x93\xff\x01\ -?\x07g7v\xdb#C\x00\x00\x00\x00IEND\ -\xaeB`\x82\ -\x00\x00\x01\x03\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x13\x00\x00\x00\x11\x08\x06\x00\x00\x00?\x98\x97\xc7\ -\x00\x00\x00\xcaIDAT8\x8d\xed\xd2=J\x03Q\ -\x14@\xe1od2\xa6\x11W\x90F\xec\xd2Y\x84\x08\ -.!\xe0\x02DHe\xe1n\xa6\xb2Nm'$\xa5\ -\x16YA\xba\xb1\xb0\xb1\xc8\x16\x04GL\x8a\x99\xe0\xf8\ -\x08f^\xb4\xf4\xc0\xe5\x15\x17\xce\xbb\x7fIQ\x14\x0f\ -\xb8\xd0\x9e\x15\xae1\x0b\x13)Fx\xc6\x02\x07;D\ -=\x0cq\xba-\x99\x22\xc1\x13n[Tu\x82\x17\x5c\ -\xa1\xdfp\x1ca\x99\xb6\x104\xf9\xa8\xdfA\x1d\xdf\xd8\ -\xd5V\xc8\xab\xaa\x930\xee\xf0\x16+\xfb\x89\xf7\xb0\xcd\ -.&\xf5o1\x9cQ\x0d\xaf\xc9\xa1j\xbb\xe3H\xd9\ -\x14\xf9\xb6\x05\x94\xb8\x8f\x94\x1d#\xff\xcb\x99Eo\xf3\ -_\xf6%\xfb\xfc\xa5\xa7D\xb69\x8dKt\x90\xed)\ -K6\xb29\xceq\xd3H\xae\xf6\xa8\xecq\x0d\xfe\xb1\ -\x1c=z\xc7\xebp\x00\x00\x00\x00IEND\xaeB\ -`\x82\ -\x00\x00\x01)\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x12\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1b\x06/\x5c\ -\x00\x00\x00\xf0IDAT8\x8d\xd5\xd2/K\x83Q\ -\x18\x05\xf0\xdf\xe6\x9a`0h1\xbb&\x13\xee'\x10\ -\xf4KX\xd4l\x10\xecV\x99E\xa3q3\x1b\xd4b\ -5\x18\x9f0\x0d6\x83`S\x04\xa3 \xce\xe0\x8b\xbc\ -\x5c\xdc\xdd\x16=\xed\xdc?\xe7\x1c\xce\xf34\x22bh\ -4\xeeRJ\x9d\xc2\xfd/\x9a\x93<\xfa\x9fB-l\ -\xd7\xf8:^0\xa8\xf8\xdb\xa4B\x8d:\x89\x88\x1e\x06\ -)\xa5\x93\xec|\x07\x07\x05\x9d\xe7V\xc9%\x22\xf6\xd1\ -\xc7\x1c\xeeG\x88\xb5\xd1\xcd\x13]c\x15\xef\x18b\x09\ -\x9f\xb8\xc40\xa5\xb4\xf5\x87Y\x07\x17y\xa2W\x9c\xe3\ -\x0a\x0b\xd8\xc5)\xe6\xb1RJ_\xec(\x22\x9a)\xa5\ -\xaf\x88\xd8\xc3qA\xe7)\x8f\xd9\xab>M\x8db\xd9\ -5\x83\xb1\x89\xc6M\xed\x01\x87\x15\xedOS\xf626\ -#\xe2\xc8\xcf\xd6\xcf\xe0\x0c\xb7x,\x99\xe6B\x1b\x98\ -\xc5G\xc5o\xd0\xc5\x22\xd6*\xf7\x1cm\xb2\xa9\x8d\xc2\ -$\x9b\xfd\x0d1\x8aV\x95q\x1f\x8eP\x00\x00\x00\x00\ -IEND\xaeB`\x82\ -\x00\x00\x02\x01\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x11\x00\x00\x00\x14\x08\x06\x00\x00\x00k\xa0\xd6I\ -\x00\x00\x01\xc8IDAT8\x8d}\xd3\xcf\x8b\xcdQ\ -\x18\xc7\xf1\xd7\xdc\xaeD\xc9(4\xca\x1d\x1b\x16\xc4\xea\ -\xa2\x98\x85\xc5\x10eAhJj\x84\xf8\x0b\xb0\xc4\xca\ -\x86\xa4&c\xd6\xb2\xa04%\xc9\x8f\xe4\xc7$\xc4\xbd\ -+3S\x16\x16D\x94_%\xc5\x8c\xb8\x16\xe7\xf96\ -\xdf\xf9\xba\xdf9\x9b\xcfs\xcey\xce\xfb<\xcfy\x9e\ -\xd3\xd1j\xb5\xb4\x1b\xcdf\x13\x06q\x1c?by\x1f\ -&p-\xef\xdb\xd1h4\xdaBb\xf4c>\x06b\ -~\x13\xfb\xf19\xefT)9\xbc+\xf4\x0a6\x87=\ -\x0b\xbf\x8a\x802\xc8\x06\x5c\xc5JLb\x07:\xb1\x08\ -\xbbs~\x8bq\x06\xab\xdbAN\xa2\x8a\x13\xb9\xb5\x87\ -x\x1f\xba0\xa2\xbb\x8e\xa7\x18+B6bk\xd8}\ -\x11\x0d\x5c\x08\xdd\x84\xb3x\x80\x1e\x0c\xa3U\x84d\xb7\ -\x7f\x88T\xb3\xf9eSo\xb1\x0d\x7f\xf07;\x94\x87\ -\xac\x8b(\xbec\x8b\xf4\x1e}X\x8e\x9f\x18\x0a\xbf/\ -\x91Rov>\x0f9\x1a:\x841\x5c\x8a\xfdc\xb1\ ->\x18\xe0\xf31\xdf\x89&\xb6g}\xd2\x8d\xd7\xb1\xd9\ -\x1d\xe9\xac\xc2\xa8T\xd6\xa5\xf8\x8a\xf5x\x9e\xbbx6\ -\xe6f\x91\x1c\x92*2\x1c\x00\x18\xc7]\xcc\x91\x9a\x0e\ -\xe6\xe1H\x0e2\x81o\x95\x08\xf9@.\xe4\xfc\xb8\x18\ -z0\xf4I\xf8N+HEj\xae\x1a\xde`\xa4\x00\ -\xb9\x15i\xac\xc1\x0a\xe9\x81\xefDZ\xd3 \xbda\xdf\ -@\xf17N\xc6!R\xc5\xe0\x14\x9e\xe5\x9d\xaa\xe8\x0a\ -\xfb\x95\xf6c<\xb4\x06\xf5z\xfd?\x87\x8a\xa9&\xaa\ -\x95@\x96\x85~,\xd9W\xc1\xbd\xb0\xfb\xb1\xa0\xb0\xbf\ -\x04{\xc2\xbe?\x13d\x04\x8f\xa5\xb4nc\xad\xf4\xed\ -{\xa4\x12wJ\x9f\xede\x19\xa4\x1a\xba\x17\x8f\xa4W\ -\x7fQ\xf0\x19\xc5\xe12@\x16\x09\xbc\x8b\x08\xce\xe1-\ -~K\x1d|Zj\x81O3A\xfe\x015\x8de<\ -wk\x85?\x00\x00\x00\x00IEND\xaeB`\x82\ -\ -\x00\x00\x01\xba\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x15\x00\x00\x00\x10\x08\x06\x00\x00\x00\xf9\xda4%\ -\x00\x00\x01\x81IDAT8\x8d\xa5\xd1M\x88\x8ea\ -\x14\xc6\xf1\xdf\xfb6>\x92\x92|Dij4\xa1\xec\ -8\x1b+5\xb1\x18f\xa1f\xc5J1\xc3DVR\ -H!+;\x14\xc9J\xd2lf\xe3\xabdg)\x97\ -\x94\xb2\xb1 e\xc9\xdeJ\x16\x9eW\x8f\xe9\x19\x93q\ -V\xe7>\xd7\xb9\xfe\xf7\xb9\xef\xd3\xb3\x84H\xd2\xc3.\ -L\xe0 f\xaa\xea\xcd@\xef/`\xda\x94d\xef_\ -\xb8}\x5c\xc0e\xacn\x03ah\x01\xd3q\xec\xc1\xcb\ -\x05\xf4Q\x8c\xe1\x1df\xbbn\x9c?e\x1fS\x18O\ -\xb2\xbdC_\x87\xc7\xb8\x86\xdd\xb87\xbf\xa7k\xd2q\ -\x0c7\xf9\x19\x9cj\x01\x97\xe3\x01\xceV\xd5\x93\xa6\xfc\ -m\xd1Iq\xb2\x95\x1fM\xb2\xb6\x01\xf6p\x15\x17\x07\ -\xc0$\x9b;\xfc\x7fB\x93\x0c\xe3@\xab\xb4\x0a\xd3M\ -^\xb8SUo[\xfaX\x92\x1d\x8bM:\xd5Q;\ -\x9dd\xa8\xaa^W\xd5\xe7$\xd3IF\x1am\x16\x97\ -\x92l\xe8\x84&\x19\xc2\xb1\x8e\xd7l\xc1d\xd33\x83\ -\xbb\xb8\x01U\xf5\x03\xd71\x97d\xe5\xc0\xd0kA'\ -1\xd7\x01\x85W\xb8\x8f\xdb\xad\xdaDU=k\xbc7\ -\xb1\x11\x87\xd1kC_`\xff\x02\xd0\xae\xf8\x88\x9dU\ -\xf5=\xc9\x1a|@\xf0\xb4\xdf\x00G\xb1\xef\x1f\x80\xb0\ -\x15\xe7\x9a|\x19>\xf9\xb5\xe4m\x83?\x9d\xd6\xfa\x8a\ -\x7f\x88\xf3IF\xaa\xea+\xae\xe0=FzIV\xe0\ -\x0b\xd6/\x01\x0a\x8f\xaa\xea\x10\xbf\x97=\xd6Kr\x04\ -\x0f\x97\x08\x1c\xc4xU=\x1f\x1c\xfa8\xf1\x9f@\xb8\ -\xd5\xbc\x18\xfc\x049\xa0\x7f\x85\xe9\xdfLL\x00\x00\x00\ -\x00IEND\xaeB`\x82\ -\x00\x00\x01\xb8\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x11\x00\x00\x00\x12\x08\x06\x00\x00\x00\xbd\xf95T\ -\x00\x00\x01\x7fIDAT8\x8d\x95\xd3;hTQ\ -\x10\xc6\xf1\xdf\xbd((jv;\x05+\xc1\xad\x04!\ -0\x8d\x8d\x16\x82\x88H*A\xd2\xd9\xf8\xa8\x04\x1b5\ -\x82\x9d\x06;\xed\xc4B\x10\x0b\xedl$\xb0`e\x93\ -\x22\x0e\xda\x1bS\x89/\x10\x82\x16\xc1g\xb4\xc8\x89\x5c\ -\xd7\xbb\xbbf\xe0p\x98\xef|\xe7\xcf\xcc\x1cN\x95\x99\ -\xbd\x88X\xb4\xc1\xc8\xccI\x5cA\xa7\xca\xcc{\x98\xc6\ -\x02nF\xc4\xa31\x97\x8f\xe1\x01:E\xba[ef\ -\x0f/\x1b\xbek\x11qu\x0ch\x19\xdd\x92\xee\xadK\ -+\xcbE\xf8\x85'c\x00w\x0a\xe03>F\xc4R\ -]\xce\xfa\x98\xc3\x0f\xf43\xb3;\x04p\x02\xa7\xf18\ -\x22:8\x05\xeb\x903\x11q\x1c\xfb\xf0\xd5\xda|\x06\ -\x01{p\x1f\xd7#b\x0a\x22b\x0e\xaa\x16\xf3v<\ -\xc3+\xac\xcf\xa6\xc6C\xcc\xb4\x0d\xfe\x1fH\x03\xf6\x0d\ -\x9b\x1b\xd2\xdb\x88\xd8\xdd\xe6\xad\xdb\xc4\x12+\x03\xf9\xf7\ -a\xc6Q\x90\xff\x8eQ\x90\xc1\xb3m\x1b\x82d\xe6I\ -\xac\xe2ic\xc9\xcc\x1bm\xfe\xb6\xd7\x99\xc5y\xf4\x22\ -\xe2]C\xdf\x82\xf7\xd6\x9e\xffhD\xac\xfeUIf\ -\x1e){\x1f\x971\xdd\x04@D|\xc1A\x1c\xc6R\ -f\xee\xcc\xcc\x99?\x95d\xe6\xa7R~\x17\xb7\x22\xe2\ -\xc2\xb0\xfe3\xf3\x1cn\x17\xffJD\xec\xa8\xca\x97~\ -^<\x1f\x22b\xd70@\x81L\xe05&\x8at\xa0\ -\xc6\xc5\x86gkf\x1e\x1a\x05\xc1$\x16\xf1\xb3\xe4\x97\ -\xaa\xcc\x9c\xc7\x1b\xccF\xc4\x8b1\x80fE\x9bp\x16\ -\xfb\x7f\x03$D\x8d]u\xca0\xbc\x00\x00\x00\x00I\ -END\xaeB`\x82\ -\x00\x00\x04\xe6\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a Set object h\ -eight 1\x0d\ -\x0a \ -\x0d\x0a \x0d\x0a \x0d\x0a \ - \x0d\ -\x0a \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x01h\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x0c\x00\x00\x00\x10\x08\x06\x00\x00\x00\x22a\x9e\x07\ -\x00\x00\x01/IDAT(\x91m\xd2!H\x9dQ\ -\x14\x07\xf0\xdf\xf7=\xf0\xa5!\x82\x93\x85\x85\x81E\x96\ -\x0c\x074mma\xb0\xf0\x94\x19\xb5Y\xc4<\x1cC\ -\x04\xe3\xb3\x8a\x0b\xa6\x85\x85\x19\x1e\x0c\x8b\xc50\xb4\xdd\ -&cF\x8b\x08o,\x092\xa6\x8c\x85w\x95\x8f\xbb\ -\xef\xa4{\xcf\xff\x9c\xff\xff\xfc\xcf\xbd\x95\x96H)=\ -\xc5\x17\xbc\x89\x88_M\xacn)\xee`\x0f\x17\xd8(\ -\xf1\xaaQ8\x89>z\xe8\xe0;\xa6\xf1\x0d[\x11q\ -\xf6\xa0\x90R\x9a\xc1\x0f,c\x1cG\x111\x8f)\xec\ -\xe3 \xa5\xb4\x04UJ\xa9\x9b\xe5\x9f4\x94\xb7#b\ -\xb3\xa1>\x85\x13\xf4j\xac`\xa2\x18\xf5\xb2y\x89\x88\ -!\xde\xe1C\x8d\xb7\xe8\x16\x0d\xbfK\xb38\xc4\x5c\xdd\ -\xc2\xde\x1a\x11q{o\xfa\xbc\x05\xaf\xcaD\xf6qS\ -\x1b\xed\xfc\xba\xc0\x1f\xb7\x90\xac\xe1\xa0\x8e\x88S\x1c\xe3\ -O\x03|V\xb0/b\x01;UN\x8c\xe13^\xe1\ -\x11\xce\xf2\xf99V3\xc1bD\x5cV\x05\xd3\x1c\xd6\ -\xf1\x1a?q\x87M\x0c\x22\xe2o\xab\xb9\xdc\xd8\xc7\x0b\ -|\x8a\x88\xdd&\xf6\xdf\xe7\xcb\xf1\x1e_\xf1\xb1\x04\xee\ -=\xcc\xe2\xa5\xd1\x9bt\x8d\xfeP'/b\x98G\xbb\ -\xc2\xe0\x1f\x06\xdbU3\x9dA\x19\x09\x00\x00\x00\x00I\ -END\xaeB`\x82\ -\x00\x00\x01O\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x13\x00\x00\x00\x12\x08\x06\x00\x00\x00\xb9\x0c\xe5i\ -\x00\x00\x01\x16IDAT8\x8d\xe5\xd4=/DA\ -\x14\xc6\xf1\xdf\xae\xcd\x8d\xd7H\xd8\x88\xc6&tJ\x89\ -B\x22\xdb)t(\x84\x8f\xe0\xa5\xf09T:\x85\x1a\ -A\xa3Pjt\xbe\x00\xb2\x05\xd1\xa0\x14B\x16\xbb\x89\ -(\xee\xacl.\xb9w\xb3JOu\xe6\xccs\xfe9\ -3g2\xb9J\xa5r\x8e)\xed\xe9\x18\xcb\xa8A\x01\ -\xe3a\xe3\x05\xcf(\xe2!\x050\x84W\xf4a\x01\x07\ -\x0d`!\x18\xea(a\x04\xdb(\xa7\xc0\xf6\xb0\x8f+\ -\x9c\x06\xe0!\x96\xf2\xc1P\xc5S\xabg\x0b\xba\xc5l\ -\xa8\x9b\xc7Q>\xdd\x9f\xa9kl\x84x\xae\xf0\x8b\xa1\ -\x88\xc5\x14@)\xb1\xde\xc5\x16\x06\x92\xb0{\x9ca\x06\ -\x11z\x9a\xf6\xde\xf0\x8eK\xf1}5\xf4)\x1e\xc8\x0f\ -\xd8#VS\xbaJU\x12\xd6\x8b\x15td\xd4U\xb1\ -\x83\x8f\xe6dr\x00\xa3Xo\xa1\x895Lfu\x06\ -w\xd8\xcc\x80\x95\x91K&\xff\xfa4\xfe3\xac\x0b\x83\ -m2\x22\xf1\x0f\xf2=\xcdH\xfc\xedT\xd1\x89\x9b\x0c\ -\xc00&\xc4\xef\xb1?\xd4\xd4\x0a\xb8\xc0t\x00F\xc1\ -<\xd6BG\xddMq\x1d'_\xecY0\xc6f\xd8\ -\x84\x84\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01/\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x08\x00\x00\x00\x10\x08\x06\x00\x00\x00+\x8a>}\ -\x00\x00\x00\xf6IDAT(\x91m\xd0=+\x86\x01\ -\x18\xc5\xf1\xdf\xf3\x84\xb2\xb0\x89\xf4$\xe4\xa5\x8c\xae\x12\ -\x8b\x922\xd9\x18\x14\xa3\x85\xd5\x8a\xcf`\x90\xcd\xcb&\ -e\x91\xcc>\xc0UH^V\x93A\x8aE\x8a\xb0\xdc\ -wn\xe5l\xd7\xe9\x7f\xaeN\xa7\xa6Pf\x0e\xe1\x1c\ -w\x98\x8e\x88/\xa8\xfb\xd5\x22v\xd0\x8e\xd1\xd2\xac\x02\ -\x9fh\xa0\x05\x1f\xa5\xd9T\x01\x0ep\x8dK\x5c\xfd\xf7\ -\xe1\x15\x0f\xb8\x8d\x88\xef\xff\x80u\x0cb&3;\xff\ -\x00\x99\xb9\x899\x1c\xe1\x19W\x999\x09\xb5\x02\xb8,\ -\xfa\xacb\x1e\xb3h\xc5[Sfv\xa1\x1f\x138\xc4\ -MD\xf4\x14\xc1\xaezQn\x19Cx/v\x00\x11\ -\xf1X+\x8f\xcc\x5c\xc2\x02\xc60\x1c\x11O\xd5\x92\x0d\ -\xac\xe1\x0c7\xb8\xc8\xcc6\xa8gf3\xb6\xd1\x8bc\ -\xec\xa3\x03\x93\xe5\x92\x1b\xf8\xc2xD\x85\x9fX\x87\xdbU\x95uc\x11\x97\xca~\x0f\ -L\xe2\x03:\xaa\xc8&p\x00\x9f\xb1'~o\xc5\xd1\ - \xf8\x1e\x1d\xec\xca\x93\xd5\xd1\x17\xfey\xf4\x87?\x8d\ -\xe7-\x84u\xdc\xc0\xee\xc8\xe9\xc7\xeb\x88\x1dA_\x0d\ -\xab\xf1\x02\x9bsU\x5c\xc1}\xcc\xa0\x177q(\xda\ -k\xc5(\xae\xe3G\x863\xd8\x88\xf7\xf8\xaa\x1dk\xd1\ -\x89_xT\x10\xef\xc5\x02F2I\xa7\x078\x8b\xb7\ -\xb9\xc4\x83\xb8\x16\xf6\x02\x8e\xe3[.\xe72\xb6b2\ -\x93\xf6iTZ\xceV\xec\x97\xa6\xda\x90\xb4|\x22\xad\ -\xc2>i\x00+8-i9\x90I\xda\xac\xa0\x81\xc1\ -hk\x18\x87\xb1\x1c\xb1\xf1x\x9f\xf5g\xff\xaeb\x1e\ -\xe7h_\x8d\xa6\xa4\xcdX\xb4\x9e?\x9f\x8b\xd1\xd2\x89\ - \xf9K\xe3<\xd9;\xec\x95v\xa8\xec\xd4j\xd2d\ -{\xf2dE\xe7\xb4\x05C\xd2\x94\x8ap\x17\x17\x8a\x02\ -Ed$]f\xc3\xde\x86\x0d\xd2\xad~\x91$(-\ -\xb9\x0a\xc3\xb8\x855x\xa9\xfd\xbc\xfe\x8bl\x08\xa7\xa2\ -\xca)l\xafJ\xfe\x0dZUP\xe3\xae\x0f\xedJ\x00\ -\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01\xfc\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x17\x00\x00\x00\x12\x08\x06\x00\x00\x00\xb0\xe7E\x13\ -\x00\x00\x01\xc3IDAT8\x8d\xad\xd4\xcd\x8bNa\ -\x1c\xc6\xf1\xcf\x19/y\x9d\x85\x97\x14)\xa4\xcc\xc8\x82\ -\xe6\x96\x14EY(Rd\xa3\x89$\x8d\x05\xe5e\x1a\ -ec\x83\xb2\xb2\x90\x8d\x8d\x05v\x96vVVV\xd7\ -)\x7f\x02\xf2\x0f\xc8[\x8a\x1e\x8b\xe7\x9czL\xe7\x99\ -\x19q\xd5\xa9\xfb\xba\xbb\x7f\xdf\xdf\xd5\xef>\xe7T\xbd\ -^\xcfBT\xd7u\x85\xb3\x18\xc7G|\xc6\xb3\x89\x89\ -\x89\xa1\x80\xc5\x0b\x22\xf7u\x1d\xebJ)\xb7 \xc9X\ -\xb3\xf7`X\xc1HUU\xba\x9e\xba\xaeo\xd7u\xbd\ -\xac\xf5\xf8\x81WIv'9\x84\xefX?\xac\xbe\xaa\ -*#]\x1d\x93\x8cb\xa6\x19\xc3\x1f*\xa5\xbc\xc5[\ -\x9c\xd4\x1f\xcfPu\xc2q\x0e\xab0\x9d\xa4=\xf3\x0b\ -cI.b\x0b\xde\xe9\xcf}\xe1\xf0$\x15.7v\ -\x07\x8e5\xeb\xc7\xf8\x86\x8d8\x82Q<\x9b\x0b\xdeu\ -\xa1\x8716\xe0o\xe2e)\xa5\x87\xa7\x1daV\x96\ -R\xbe.(9\xae\xcc\xf2\x07\x92\xec\x9d#\xe0\xda$\ -\x17\xe6\x85'\xd9\x8c\x13\x1d\xe7ff\x9d\xdb\xde6,\ -\xa5|\xc0\xd2$\xa7\xe7K~\x09\x8b:\xe0\xa7\x92l\ -m\xc1x\x8d'I\xda\xb1>\xc6T\x92\x83\x9d\xf0$\ -K1\xd5\x01\xd64\xbc\x91dg\x03\xde\x84]\xb8\xd1\ -\xa4\xef\xe1\x1a^$\x19o\x8b\xaa\x01\xf8$\x9e\x0f\x81\ -\xc3W\xfd\x0fg\xdd\xc0\xde7\xec,\xa5\xbco\x18\xf7\ -0\x893\xf898\x96\xcb\xe6\xd6\xcaY`X\x81G\ -\x03\xfe.\x96\xe0\x0d\x0e\x8e4\x1d\xf7`\xff<\xf0a\ -:\x9e\xe4d\xb3\xde\xd7\xc0a[\x9b|\xf6\xeb\xf7\xb7\ -z\x98du)\xe55\xb6\xe1\x0e6TI\xd6\xe8\xff\ -#\x96\xffc\x83\x07\xa5\x94\xe9\xd6$Y5\x82\xf3\xff\ -\x01\x0cW\x93\xecnM)\xe5\xcbb\xfd\xdb\xfd\xf4\x1f\ -\xe0p\x1fG[\xf3\x1b\xdb,\x90K\x95\x7f\xdek\x00\ -\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x01\xb8\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x15\x00\x00\x00\x0e\x08\x06\x00\x00\x00\xc0\x06W\xce\ -\x00\x00\x01\x7fIDAT8\x8d\x8d\xd3\xbdk\x15Q\ -\x10\xc6\xe1g\xaf\x17EQ\xd1\x18E\x04\xb1\xd2F\xcb\ -\x01k\x0b\xed\x82\xa4NH\xa1EH\xa7]\x08\xa2H\ -\x04M\xa5\x85 \x8a \xe2_ X(\x08\x8aU\xc0\ -)\xc5\xc2&\x85\xe2g\xe7G\x22\x92\x0f\x8b\xdd\xab\xeb\ -\x82\xbbw\xba3\xf3\xce\xef\xcc9\xe7=\x85Fd\xe6\ -fLa\x0cG\xb1\x17[\xd1\xaf$k\xf8\x81\x0fx\ -\x81k\x11\xb1Tg\x145\xd8q\xdc\xc11\xf4\x9a\x9b\ -u\xc4\x1bLF\xc4\xcb?\xd0\xcc\xbc\x8b\xb3\x0d\xe1\x0a\ ->\xe3#~V\xb9-\xd5\xe4\xfb\xb0\xa3\xa1\xdf\xc0\xa5\ -\x88\x98/2\xf3\x02\xe6k\xa0\x07\xb8\x12\x11o\xdbF\ -\xcb\xcc]\x98\xab\x86\x19\xa9\x95\xc6\x8b\xcc\xfc\x86\xedx\ -\x84\xd3\x11\xb1>\xd4\x81\xff\xdd`\x12\xd71\x8awE\ -fn`-\x22\xfa\xed\xad\x9d\xe0Sx\x82\xf5\xc1\x83\ -l\xca\xcc\xd7\x999\xd2\xd27h\x9e\xce\xccC\xb5\xf5\ -\x91\xcc|\x8e\xc7U\xaa(2sYi\x19\xf8\x8a=\ -\x11\xb1\xda\x00\xf5q\x15\xd3\xca\x07\x9a\xc5+,(m\ -W\x8f\xef}\xdc\xc6\xb9*\xb1\x13\x13\xb8_\xc1F\x95\ -6\x1b\xf3\xd7\xa7p\x11\xdb\xfes\x98\x87\xbd\x888\x8f\ -\xa7\xb5\xe4\xfe\x0a8\xa3\xb4\xd4x\x03\xa8\x05\xf8\x1eg\ -z\x10\x11'1\x83/\xaa\xab\x88\x88[\xb8\xa7\xf4_\ -W\xac\xe2\x19\x0eG\xc4\xaf\xa2K\x9d\x99\x07\xb1\x88\x03\ -\x8d\xd22\x96\x94_\xf5rD|\x1a\x14:\xa15\xf8\ -\x14n`7f#ba\xd8\xdea\xe073\xf3D\ -\x9b\xe67\xefB~?\xd8\xe7\x90V\x00\x00\x00\x00I\ -END\xaeB`\x82\ -\x00\x00\x02\x0e\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00\x12\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1b\x06/\x5c\ -\x00\x00\x01\xd5IDAT8\x8dm\xd3M\x88\xceQ\ -\x14\x06\xf0\xdf;\xc6\x82)\xb10jl|5\x92\x8f\ -1u\x94\x90\x95\x95\x9a\x94\x12j2\x09[\x1a6,\ -H6\xa3|\x84\xcd\xa4h\xb2\xd1\x88\x99\x85\xaf\x86\xa4\ -\x88l\x8ef\x8a\x15K\xb3@hR\x94\x91X\xbc\xd7\ -\xf4\xce\xbf9u\xeb\x9e\xf3\x9c\x9es\xces\xef\xa9e\ -\xe6\x1cl\xc3hD\x8c\x9b\xc12\xb3\x0fK\xd0\x1d\x11\ -\x7ff\xca\xa9e\xe6\x03\xcc\xc5j\xb4G\xc4Df\x1e\ -\xc2A\xec\x88\x88\x8f\x999\x86\xa5h-g/\x1eF\ -\xc4\xdb\xffDMh\xc7\x1d\xfc\xc5\xfc\x12_\x8cuh\ -)\xfe0\xceD\xc4/\xdc,\xd8\x93\xc6\x8e\x9a\xb0\x1f\ -[\xf1\x1c\x9b!\x22N\xe3\x18\x96\x97\xbce\xf8Z\xee\ -\xdf\xb0\x16\x9f\xa7\x11E\xc4\x8b\x88\xd8\x8d\xe38\x95\x99\ -\x07\x0a6\x80\xdd\xe5\xde\x82\xef\x99\xb9\x08kp\xf6\x7f\ -\xd1)\x8d\x1a\x9d\xcc\x5c\x88\x07\x18\x88\x88\xfe\xcc<\x82\ -\x11\x5cB?\x8e\xe2bD\xdc\xcd\xcc\x1az\x8b\xb6\xe7\ -\xa6\x11\x15\xb2\x16\xdc\xc6c\x5c+z\xacG'\x86\x22\ -b\xa4\xe4m\xc1u\x0caC\xad\x04[\xd1\x19\x11\x8f\ -\x8a?\x1b]\x111\xdcP`\x05\xc6\x11\xd8\xa4\xfee\ -6b\x14\xef\x9bK\xde\x05tg\xe63L\x94Xo\ -\xa5\xd9\x85\xb8\x887x\x8dA\xcc\xc3J\xdco$\x1a\ -\xc3\x95\x88\xf8\xdd\xd0EG\xe9b\x01\xda\xcah7*\ -\x05\xdeR\x11\xbb\xa2\xd5N\xec\xc2>u\x91g\xe1G\ -\x19\xe9\x9e\xfa\x83L\x15m\x9a\x81\xa0\x96\x99'\xd1\x83\ -\x9e\x92<\x88=\x11q\x19?q\xb5\xe83e\xd5\xe7\ -\xefB\x1f>\xa8\xaf\xc7d\x03\xf6\xb2h\xf4N\xfdC\ -\xdej\xdc\xbbf\xd3m;V\xa9/\xe7d\x05\x9b\xc0\ -y\xf5\xbd\xec\xa8.ou\xb4\xc3h\x8b\x88\xb1\xea\xc8\ -\xea{\xd8\x87/XQ\x05\xa7uT\xf4\xf84\x03\x09\ -\x9c\xc0\x19<\xc5\xab*\xf8\x0f\xdd\xdb\x9d,w\xcc\x1f\ -\xb4\x00\x00\x00\x00IEND\xaeB`\x82\ -\x00\x00\x04\xe9\ -\x89\ -PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ -\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ -\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ -\x00\x00\x00 cHRM\x00\x00z&\x00\x00\x80\x84\ -\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00u0\x00\x00\xea`\ -\x00\x00:\x98\x00\x00\x17p\x9c\xbaQ<\x00\x00\x00\x06\ -bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ -\x00\x09oFFs\x00\x00\x02\xc0\x00\x00\x00\x00\x00\x5c\ -]\xb9S\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\ -\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\ -\x07\xdf\x0c\x12\x0e\x1b\x0b$&IW\x00\x00\x00\x09v\ -pAg\x00\x00\x03@\x00\x00\x00 \x00\xbe\xe6\x89Z\ -\x00\x00\x03\xaeIDATX\xc3\xed\xd6]\x88UU\ -\x14\x07\xf0\xdf\x98\x8e\x96\xa8QIjA\x1f\x04BD\ -\xd0KQ\xf8\x12\x91\x11=\x04\xf5b'\x85\x8e\x88\x8d\ -i\xa7\x14\x02\xc3\xc2\xbe\xa0\xcc,8f\x1aa\xa7/\ -N\x11J\x05RP\xe1C\x1f\x86\x0f\xbe\x98(\x94\x1a\ -F\x94\x85Y\x98\xcd\x80:\xde\x1e\xf6\xbe\xce\x9e\xdb\xbd\ -3:MO\xb5\xe0p\xf7\xddg\x9d\xb5\xfe{}\xfc\ -\xf7\xe2\xbf.]\xcdE\x96\x17Oa\xc5(\xdb\x9f]\ -W\xe5'C)\x8cM\xd6+p\x02\x07p\xec\x1f:\ -\x9e\x82\x19\xb8\x1a\xa7\x0d\x00\x0e\xd4Uy\xc5h\x1c=\ -\xcb\x8b\x06N\x0e\xa7\xd7\x0a\xe0X\x07cS\xb0\x11\x1b\ -\xeb\xaa\xfch\x04``a\x8c\xcc\xea\xba*;\x02h\ -~\xb0\x16S\xf1\x07&`\x12n\xc7\xac,/\xde\xc5\ -\xf7Q\xb5\x0b\xefa:\xaeCo]\x95/%\xa6\x9a\ -5\xb6\x04k\x84\x14\x8f\xc9\xf2bU\x13D[\x00\x98\ -\x17\xd1\xf6cL\xb2\x7f!\xee\x8b\xc0\xc6\xe3\xec\x08\xe6\ -Z,C\x1fR\x00?dy\xb1\x00O\xa3;>\xcb\ -\xb0j\xc8\x08\xe0!\xcc\xc48\xfc\x88\x8bp\x17.\xc0\ -Y\xf1\x99\x8f\x8b\xb1\x07G\xe2i\x8f&6\x1e\x8b\xfa\ -\xeb\x92\xbdo1o\xd8\x14\xd4U\xf9J\x9b\xb4lC\ -\x95\xa4d\x0dz\xea\xaa\xdc\x89\x9dh\xad\x8d?\xf1L\ -\xf2\xffg\xcc\xaf\xabr{\xaa\xd4\xa9\x06\xee\xc0e\x06\ -\xaa\xb8\x0b\xbf\xe1~\xac\xc6\xb9B\x9b\xbd\x9d\xe5\xc5-\ -uU~\x99\xe5\xc5R\xf4\xd5U\xb9!\xcb\x8b\x1e<\ -\x19\xc16\x9d\xcf\xa9\xab\xf2\x8bV_\x9dR\xb0\x14\xb3\ -\xda\xec7\xe2\xd3\x1f\xd30\x11\x1fdy\xb1\x0c+\x85\ -\x22\xdb\x80\xf5-a\x9f\xdf\xce\xf9P\x006\xe2\xb3\xe8\ -,\x95cx\x1d7\x09\xc56\x1e\xe7\xc7P/\xc0\x8c\ -,/~O\xf4\x8f\x0a9\xdf\xde\xc1O\xc7\x1ax\xcd\ -\xd0\xf2j\x96\x17\xbdX+\x14\xdat\xbc)tLw\ -\xd4\xd9\x8f|(\xe7\x1d\x01dyq'.\xd5\x99\xc9\ -\xba\xf0\x0b\x1eF)\xb4\xe3\x84\xe4\xfd^<\x81\xc3\xc3\ -\x1c\xa4c\x0a\x1e\xd4\xbe\x06Ri\x08\xfd\xbcI\xe0\x8d\ -T\xd6\xc7\xc8\xcc\xc6\xae\x91\x00x\x03\xdb\x87\x89\xc0.\ -\xa1\x1d\x97\xb7y\xbfR`\xbfm#\x8a@;\x1eh\ -\x95,/\x16\x09\x0c\xd7\x94\xc3\x02qM\xc2d\xa10\ -\x17c\xdf\x19\x03\xc8\xf2b\xb9p\x95\xa6\x11\xe8\xc2q\ -!\xbf\x87\xf0\x82\xd0\x05\xf0\x13\xee\xc1%x\xd6\x00O\ -\xbc\x95\xe5\xc5\xaduU~~\xa6)\xb8M\xfb\x1a8\ -.\xe4\xbe;\xd9\xfbF\xa0\xdd\x0f\xe3\xbbE\x06\xc8j\ -\x22\xde\xcf\xf2ba]\x95\x9b\xcf\x04\xc0\xa3\xf1\x04M\ -\x1eh\xa0W`\xc7\xc7\x13\x00G1\x17\x07\xe3o\x1f\ -\xb6\xc6\xc8\xad\x13:\xe3<\xbc\x98\xe5Eo\xbb\xab<\ -\x1d\xc9\x1a\xd8SW\xe5\x95\x1d\xd2r\xaf\xc0rM\xd9\ -\x8f\xb9uU~\xd5F\x17z\x84V\x9c\x1a\xb7\x8f\x08\ -t<\x08D[\x00\x09\x0f4\x84Ke\x1c\x9e3\x90\ -\xf3}x$\x86\xf9S\xc9< \xcc\x077\xe0F\xec\ -\x10Z\xb2\xf9\xddA,I\xd31\x1c\x0f\xf4\x0b\xfc\xde\ -\x9d\x80=\x89\xcbQ\xc7\xbd9\x06\xe6\x81\x13\xd8\x1d\xed\ -.\xc6\xddx@ \xabnL\xc3\xcbY^l\x1en\ - i\xf2@\xbfPd\xd7\x08\x83\xc8^a.\x98\x8e\ -\x9b\xe3\xfb\xdd\x06\xcf\x03\xdf\x09\x83\x0bL\xab\xab\xf2\xf9\ -,/~\x8d\xe9\xeb\x12\xae\xf0S\x8eN\x8b\x07\xb2\xbc\ -\x98\x1c\xc3\xbb\xa5\xae\xca\x1dq{K\xa2\xf2\xb5d\x1e\ -\xc8\xf2\xe2\xfa\xb8lD{\x9b\xb2\xbc\x18\x8b\xee\xba*\ -7\xa5\xb6[\x01\x8cI\x8ahr\xb2\xdf\x10\xfa\xfbP\ -\x043\x94\x1c\xc19q}\xaa\xc6\xea\xaa|'\xda\x1d\ -$\xad\x00f\xc6b\x1c-\x19D\xe5i\xe8\xdb\x01\xc8\ -p\x95\xbf\xcf\x00#\x95\x06>\x1e\xc5\xc3\xfc/\xff\x8e\ -\xfc\x05\x99&,\xa0:Dw\xab\x00\x00\x00%tE\ -Xtdate:create\x0020\ -15-12-18T14:27:1\ -1+00:00YM\xe3\xc6\x00\x00\x00%t\ -EXtdate:modify\x002\ -015-12-18T14:27:\ -11+00:00(\x10[z\x00\x00\x00\x00\ -IEND\xaeB`\x82\ -\x00\x00\x04~\ -\x00\ -\x00\x01\x00\x01\x00\x10\x10\x00\x00\x00\x00 \x00h\x04\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00\x10\x00\x00\x00 \x00\x00\ -\x00\x01\x00 \x00\x00\x00\x00\x00@\x04\x00\x00\x13\x0b\x00\ -\x00\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ ->\x00\x00\x00\xa1\x00\x00\x00\xd6\x00\x00\x00\xeb\x00\x00\x00\ -\xec\x00\x00\x00\xd8\x00\x00\x00\xa7\x00\x00\x00G\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x9e\x02\x022\ -\xff\x04\x10\x81\xff\x03#\xaa\xff\x02,\xbb\xff\x02-\xbc\ -\xff\x03$\xac\xff\x03\x12\x85\xff\x02\x028\xff\x00\x00\x00\ -\xac\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x0c\x00\x00\x00\xbb\x03\x08\x5c\xff\x02/\xcb\ -\xff\x00;\xca\xff\x00:\xca\xff\x009\xca\xff\x009\xca\ -\xff\x00:\xca\xff\x00;\xca\xff\x022\xcb\xff\x03\x09b\ -\xff\x00\x00\x00\xc9\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x98\x04\x08^\xff\x015\xca\xff\x00:\xca\ -\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ -\xff\x008\xca\xff\x008\xca\xff\x00:\xca\xff\x018\xca\ -\xff\x03\x09c\xff\x00\x00\x00\xaf\x00\x00\x00\x00\x00\x00\x00\ -0\x00\x00\x00\xfd\x02.\xc8\xff\x00:\xca\xff\x008\xca\ -\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ -\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x00:\xca\ -\xff\x022\xcb\xff\x02\x027\xff\x00\x00\x00E\x00\x00\x00\ -\x92\x04\x0eu\xff\x00:\xca\xff\x008\xca\xff\x008\xca\ -\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ -\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ -\xff\x00;\xca\xff\x03\x13\x87\xff\x00\x00\x00\xaa\x00\x00\x00\ -\xce\x02\x1f\xa4\xff\x00:\xc9\xff\x008\xc9\xff\x008\xca\ -\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ -\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ -\xff\x00:\xca\xff\x03%\xaf\xff\x00\x00\x00\xdc\x00\x00\x00\ -\xea\x02)\xb9\xff\x01:\xca\xff\x088\xd1\xff\x098\xd1\ -\xff\x078\xd0\xff\x058\xce\xff\x038\xcd\xff\x028\xcc\ -\xff\x018\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ -\xff\x009\xca\xff\x02-\xbd\xff\x00\x00\x00\xed\x00\x00\x00\ -\xe8\x02)\xb8\xff\x0d:\xd6\xff\x139\xdb\xff\x118\xd9\ -\xff\x0f8\xd7\xff\x0d8\xd6\xff\x0b8\xd4\xff\x0a8\xd3\ -\xff\x088\xd1\xff\x068\xcf\xff\x048\xce\xff\x028\xcb\ -\xff\x009\xc9\xff\x02-\xbd\xff\x00\x00\x00\xed\x00\x00\x00\ -\xcb\x06\x1d\xa5\xff\x1b;\xe2\xff\x1a9\xe2\xff\x189\xe0\ -\xff\x179\xde\xff\x159\xdd\xff\x139\xdb\xff\x129\xda\ -\xff\x108\xd8\xff\x0e8\xd7\xff\x0c8\xd5\xff\x0a8\xd3\ -\xff\x01:\xcb\xff\x03$\xad\xff\x00\x00\x00\xd9\x00\x00\x00\ -\x8b\x07\x0dr\xff\x22;\xe8\xff\x22:\xe9\xff 9\xe7\ -\xff\x1e9\xe5\xff\x1c9\xe3\xff\x1b9\xe2\xff\x199\xe0\ -\xff\x179\xdf\xff\x169\xdd\xff\x149\xdc\xff\x139\xdb\ -\xff\x07;\xd0\xff\x03\x11\x82\xff\x00\x00\x00\xa3\x00\x00\x00\ -(\x00\x00\x00\xfa\x1c+\xd7\xff,;\xf2\xff(:\xee\ -\xff&:\xec\xff$:\xeb\xff#:\xe9\xff!:\xe7\ -\xff\x1f9\xe6\xff\x1d9\xe4\xff\x1c9\xe3\xff\x1b;\xe2\ -\xff\x090\xd1\xff\x02\x02/\xff\x00\x00\x00;\x00\x00\x00\ -\x00\x00\x00\x00\x88\x07\x08[\xff,5\xf1\xff3;\xf8\ -\xff.;\xf3\xff,:\xf1\xff*:\xf0\xff(:\xee\ -\xff':\xed\xff%:\xeb\xff&;\xec\xff\x1c6\xe3\ -\xff\x04\x08]\xff\x00\x00\x00\x9f\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x05\x00\x00\x00\xaa\x08\x08[\xff)+\xe2\ -\xff8;\xfc\xff7;\xfc\xff4;\xf9\xff2;\xf8\ -\xff1;\xf6\xff/;\xf5\xff#/\xe5\xff\x06\x08`\ -\xff\x00\x00\x00\xbb\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x88\x00\x00\x00\ -\xf6\x0e\x0ex\xff\x1e\x1f\xb8\xff)+\xda\xff)+\xdb\ -\xff\x1d!\xba\xff\x0e\x0f~\xff\x00\x00\x00\xfb\x00\x00\x00\ -\x96\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -+\x00\x00\x00\x8a\x00\x00\x00\xc8\x00\x00\x00\xe7\x00\x00\x00\ -\xe8\x00\x00\x00\xcb\x00\x00\x00\x91\x00\x00\x003\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x0f\x00\ -\x00\xc0\x03\x00\x00\x80\x01\x00\x00\x80\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\ -\x00\x80\x01\x00\x00\xc0\x03\x00\x00\xf0\x0f\x00\x00\ -\x00\x00\x03F\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a source contr\ -ol connected\x0d\x0a \x0d\x0a \ - \x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x03J\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a source contr\ -ol - not setup\x0d\x0a \x0d\x0a\ - \x0d\x0a \x0d\ -\x0a\x0d\x0a\ -\x00\x00\x04~\ -\x00\ -\x00\x01\x00\x01\x00\x10\x10\x00\x00\x00\x00 \x00h\x04\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00\x10\x00\x00\x00 \x00\x00\ -\x00\x01\x00 \x00\x00\x00\x00\x00@\x04\x00\x00\x13\x0b\x00\ -\x00\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x1a\x1c\ ->\x1c\x0f\x1b\xa1\x1c\x13\x1b\xd6\x1b\x1e\x1b\xeb\x19\x1d\x1a\ -\xec\x17\x0f\x17\xd8\x13\x05\x11\xa7\x0d\x09\x0cG\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00###\x0a#\x19\x22\x9e!$\x22\ -\xff\x18q!\xff\x0d\xb6\x1e\xff\x09\xd0\x1d\xff\x09\xd2\x1d\ -\xff\x0d\xba\x1f\xff\x16x \xff\x18!\x19\xff\x10\x05\x0f\ -\xac\x0f\x0f\x0f\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00%&%\x0c'\x1b&\xbb\x1fK$\xff\x09\xcd\x1d\ -\xff\x00\xfd\x19\xff\x00\xfb\x18\xff\x00\xf7\x18\xff\x00\xf6\x18\ -\xff\x00\xfa\x18\xff\x00\xff\x19\xff\x0a\xd7\x1f\xff\x18P\x1e\ -\xff\x12\x06\x11\xc9\x04\x05\x05\x13\x00\x00\x00\x00\x00\x00\x00\ -\x00-#,\x98\x22I&\xff\x03\xe6\x1a\xff\x00\xfb\x18\ -\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\ -\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf9\x18\xff\x05\xf1\x1c\ -\xff\x18P\x1e\xff\x11\x06\x11\xaf\x00\x00\x00\x00.,.\ -0+.+\xfd\x08\xc8\x1c\xff\x00\xfb\x18\xff\x00\xf0\x19\ -\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\ -\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xfa\x18\ -\xff\x09\xd7\x1e\xff\x19\x22\x1a\xff\x0c\x09\x0cE3&1\ -\x92\x1dk%\xff\x00\xfb\x18\xff\x00\xf0\x19\xff\x00\xf0\x18\ -\xff\x00\xf0\x18\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\ -\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\ -\xff\x00\xff\x19\xff\x16x \xff\x14\x07\x13\xaa3'2\ -\xce\x0f\xa5\x1f\xff\x00\xfc\x17\xff\x00\xf0\x17\xff\x01\xf0\x1a\ -\xff\x02\xf0\x1b\xff\x00\xf0\x19\xff\x00\xf0\x18\xff\x00\xf0\x18\ -\xff\x00\xf0\x18\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\ -\xff\x00\xfa\x18\xff\x0c\xba\x1f\xff\x1a\x12\x19\xdc5/4\ -\xea\x07\xc2\x1a\xff\x03\xf9\x1b\xff!\xf27\xff%\xf2:\ -\xff\x1e\xf24\xff\x16\xf1-\xff\x0f\xf1&\xff\x08\xf0!\ -\xff\x04\xf0\x1c\xff\x01\xf0\x1a\xff\x00\xf0\x18\xff\x00\xf0\x18\ -\xff\x00\xf7\x18\xff\x08\xd1\x1d\xff\x1b\x1f\x1c\xed616\ -\xe8\x07\xc1\x1b\xff:\xfcO\xffT\xf5e\xffH\xf4Z\ -\xffA\xf4S\xff9\xf4M\xff1\xf3F\xff*\xf2?\ -\xff\x22\xf27\xff\x1a\xf10\xff\x12\xf1*\xff\x08\xf0 \ -\xff\x00\xf7\x17\xff\x08\xd0\x1d\xff\x1d \x1d\xed8.7\ -\xcb \xa1.\xffs\xff\x82\xffr\xf6\x80\xffi\xf6x\ -\xffb\xf6q\xffZ\xf6k\xffS\xf5d\xffL\xf5]\ -\xffD\xf4W\xff=\xf4P\xff6\xf3I\xff-\xf2A\ -\xff\x06\xfb\x1f\xff\x0b\xb5\x1d\xff \x17\x1f\xd9;2:\ -\x8b3i9\xff\x91\xff\x9d\xff\x95\xfa\x9f\xff\x8b\xf8\x96\ -\xff\x83\xf8\x8f\xff{\xf7\x88\xfft\xf7\x82\xffm\xf7{\ -\xffe\xf6t\xff^\xf6n\xffV\xf5g\xffS\xf5d\ -\xff\x1d\xfe5\xff\x13q\x1d\xff\x1f\x12\x1e\xa3><=\ -(262\xfa\x83\xc4\x8a\xff\xbf\xff\xc7\xff\xac\xfa\xb4\ -\xff\xa5\xfa\xae\xff\x9d\xf9\xa7\xff\x96\xf9\xa0\xff\x8e\xf9\x99\ -\xff\x87\xf8\x92\xff\x7f\xf7\x8c\xffx\xf7\x85\xfft\xff\x83\ -\xff(\xce9\xff\x1f' \xff!\x1e!;\x00\x00\x00\ -\x00>;>\x88DME\xff\xbd\xe3\xc2\xff\xdb\xff\xdf\ -\xff\xc7\xfd\xcc\xff\xbe\xfb\xc4\xff\xb6\xfb\xbe\xff\xaf\xfa\xb7\ -\xff\xa8\xfa\xb0\xff\xa1\xfa\xaa\xff\xa3\xff\xad\xffx\xeb\x84\ -\xff$M(\xff'\x1f&\x9f\x00\x00\x00\x00\x00\x00\x00\ -\x00<=<\x05979\xaaLPL\xff\xba\xc7\xbb\ -\xff\xf1\xff\xf4\xff\xee\xff\xf0\xff\xe2\xff\xe6\xff\xda\xff\xdf\ -\xff\xd5\xff\xda\xff\xcd\xff\xd3\xff\x9b\xd0\xa0\xff9M;\ -\xff#\x1d#\xbb\x0d\x0e\x0d\x0b\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00CCC\x04<;<\x889:9\ -\xf6lnl\xff\xa4\xa8\xa4\xff\xc3\xcb\xc4\xff\xc1\xcd\xc2\ -\xff\xa2\xb0\xa3\xffitj\xff333\xfb,'+\ -\x96$$$\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00BBB\ -+555\x8a111\xc8444\xe7333\ -\xe8-+-\xcb,*,\x911113\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x0f\x00\ -\x00\xc0\x03\x00\x00\x80\x01\x00\x00\x80\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\ -\x00\x80\x01\x00\x00\xc0\x03\x00\x00\xf0\x0f\x00\x00\ -\x00\x00\x03L\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a source contr\ -ol - warning v2<\ -/title>\x0d\x0a \ -\x0d\x0a \ -\x0d\x0a \x0d\x0a\x0d\x0a\ -\x00\x00\x04~\ -\x00\ -\x00\x01\x00\x01\x00\x10\x10\x00\x00\x00\x00 \x00h\x04\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00\x10\x00\x00\x00 \x00\x00\ -\x00\x01\x00 \x00\x00\x00\x00\x00@\x04\x00\x00\x13\x0b\x00\ -\x00\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ ->\x00\x00\x00\xa1\x00\x00\x00\xd6\x00\x00\x00\xeb\x00\x00\x00\ -\xec\x00\x00\x00\xd8\x00\x00\x00\xa7\x00\x00\x00G\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x9e\x0148\ -\xff\x02\x8c\x92\xff\x01\xbf\xc1\xff\x01\xd5\xd4\xff\x01\xd6\xd5\ -\xff\x01\xc2\xc3\xff\x01\x91\x97\xff\x01;@\xff\x00\x00\x00\ -\xac\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x0c\x00\x00\x00\xbb\x01bh\xff\x01\xe7\xe6\ -\xff\x00\xec\xe6\xff\x00\xec\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ -\xff\x00\xec\xe6\xff\x00\xec\xe6\xff\x01\xe8\xe6\xff\x01io\ -\xff\x00\x00\x00\xc9\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x98\x02cj\xff\x00\xea\xe6\xff\x00\xec\xe6\ -\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ -\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xec\xe6\xff\x01\xeb\xe6\ -\xff\x01jp\xff\x00\x00\x00\xaf\x00\x00\x00\x00\x00\x00\x00\ -0\x00\x00\x00\xfd\x01\xe4\xe4\xff\x00\xec\xe6\xff\x00\xeb\xe6\ -\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ -\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xec\xe6\ -\xff\x01\xe8\xe6\xff\x019>\xff\x00\x00\x00E\x00\x00\x00\ -\x92\x02~\x84\xff\x00\xec\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ -\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ -\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ -\xff\x00\xec\xe6\xff\x01\x93\x9a\xff\x00\x00\x00\xaa\x00\x00\x00\ -\xce\x02\xb7\xba\xff\x00\xec\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ -\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ -\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ -\xff\x00\xec\xe6\xff\x01\xc6\xc6\xff\x00\x00\x00\xdc\x00\x00\x00\ -\xea\x01\xd3\xd3\xff\x00\xec\xe6\xff\x04\xeb\xe9\xff\x04\xeb\xe9\ -\xff\x03\xeb\xe9\xff\x02\xeb\xe8\xff\x02\xeb\xe7\xff\x01\xeb\xe7\ -\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ -\xff\x00\xeb\xe6\xff\x01\xd7\xd6\xff\x00\x00\x00\xed\x00\x00\x00\ -\xe8\x01\xd0\xd1\xff\x06\xec\xec\xff\x09\xeb\xee\xff\x08\xeb\xed\ -\xff\x07\xeb\xec\xff\x06\xeb\xeb\xff\x05\xeb\xeb\xff\x05\xeb\xea\ -\xff\x04\xeb\xe9\xff\x03\xeb\xe8\xff\x02\xeb\xe8\xff\x01\xeb\xe7\ -\xff\x00\xeb\xe6\xff\x01\xd7\xd6\xff\x00\x00\x00\xed\x00\x00\x00\ -\xcb\x03\xb4\xb9\xff\x0d\xec\xf1\xff\x0d\xeb\xf1\xff\x0c\xeb\xf0\ -\xff\x0b\xeb\xef\xff\x0a\xeb\xef\xff\x09\xeb\xee\xff\x08\xeb\xed\ -\xff\x07\xeb\xed\xff\x07\xeb\xec\xff\x06\xeb\xeb\xff\x05\xeb\xea\ -\xff\x01\xec\xe6\xff\x01\xc2\xc4\xff\x00\x00\x00\xd9\x00\x00\x00\ -\x8b\x03x\x7f\xff\x10\xec\xf4\xff\x10\xec\xf4\xff\x0f\xec\xf3\ -\xff\x0e\xec\xf3\xff\x0e\xeb\xf2\xff\x0d\xeb\xf1\xff\x0c\xeb\xf1\ -\xff\x0b\xeb\xf0\xff\x0a\xeb\xef\xff\x09\xeb\xee\xff\x09\xeb\xee\ -\xff\x03\xec\xe9\xff\x01\x8d\x93\xff\x00\x00\x00\xa3\x00\x00\x00\ -(\x00\x00\x00\xfa\x0d\xd9\xe5\xff\x15\xec\xf9\xff\x13\xec\xf7\ -\xff\x12\xec\xf6\xff\x11\xec\xf5\xff\x10\xec\xf5\xff\x10\xec\xf4\ -\xff\x0f\xec\xf3\xff\x0e\xeb\xf2\xff\x0d\xeb\xf2\xff\x0d\xec\xf1\ -\xff\x04\xe7\xe9\xff\x0115\xff\x00\x00\x00;\x00\x00\x00\ -\x00\x00\x00\x00\x88\x03^e\xff\x15\xe9\xf8\xff\x18\xec\xfb\ -\xff\x16\xec\xf9\xff\x15\xec\xf9\xff\x14\xec\xf8\xff\x13\xec\xf7\ -\xff\x12\xec\xf6\xff\x12\xec\xf6\xff\x12\xec\xf6\xff\x0d\xea\xf1\ -\xff\x02ci\xff\x00\x00\x00\x9f\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x05\x00\x00\x00\xaa\x03]d\xff\x13\xd9\xea\ -\xff\x1a\xec\xfe\xff\x1a\xec\xfd\xff\x19\xec\xfc\xff\x18\xec\xfb\ -\xff\x17\xec\xfb\xff\x17\xec\xfa\xff\x11\xe3\xf1\xff\x03cj\ -\xff\x00\x00\x00\xbb\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x88\x00\x00\x00\ -\xf6\x06w\x81\xff\x0e\xb2\xc0\xff\x13\xd1\xe2\xff\x13\xd2\xe2\ -\xff\x0e\xb6\xc3\xff\x07~\x88\xff\x00\x00\x00\xfb\x00\x00\x00\ -\x96\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -+\x00\x00\x00\x8a\x00\x00\x00\xc8\x00\x00\x00\xe7\x00\x00\x00\ -\xe8\x00\x00\x00\xcb\x00\x00\x00\x91\x00\x00\x003\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x0f\x00\ -\x00\xc0\x03\x00\x00\x80\x01\x00\x00\x80\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\ -\x00\x80\x01\x00\x00\xc0\x03\x00\x00\xf0\x0f\x00\x00\ -\x00\x00\x04~\ -\x00\ -\x00\x01\x00\x01\x00\x10\x10\x00\x00\x01\x00 \x00h\x04\x00\ -\x00\x16\x00\x00\x00(\x00\x00\x00\x10\x00\x00\x00 \x00\x00\ -\x00\x01\x00 \x00\x00\x00\x00\x00@\x04\x00\x00\x13\x0b\x00\ -\x00\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00|||\ ->|||\xa1|||\xd6|||\xeb|||\ -\xec|||\xd8|||\xa7|||G\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00|||\x0a|||\x9e\x89\x89\x89\ -\xff\x9e\x9e\x9e\xff\xa8\xa8\xa8\xff\xac\xac\xac\xff\xad\xad\xad\ -\xff\xa9\xa9\xa9\xff\x9f\x9f\x9f\xff\x8b\x8b\x8b\xff|||\ -\xac|||\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00|||\x0c|||\xbb\x94\x94\x94\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\x96\x96\x96\ -\xff|||\xc9|||\x13\x00\x00\x00\x00\x00\x00\x00\ -\x00|||\x98\x95\x95\x95\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\x96\x96\x96\xff|||\xaf\x00\x00\x00\x00|||\ -0|||\xfd\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\x8a\x8a\x8a\xff|||E|||\ -\x92\x9b\x9b\x9b\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\x9f\x9f\x9f\xff|||\xaa|||\ -\xce\xa6\xa6\xa6\xff\xaf\xaf\xaf\xff\xaf\xaf\xaf\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\xaa\xaa\xaa\xff|||\xdc|||\ -\xea\xac\xac\xac\xff\xb0\xb0\xb0\xff\xb3\xb3\xb3\xff\xb4\xb4\xb4\ -\xff\xb3\xb3\xb3\xff\xb2\xb2\xb2\xff\xb1\xb1\xb1\xff\xb1\xb1\xb1\ -\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ -\xff\xb0\xb0\xb0\xff\xad\xad\xad\xff|||\xed|||\ -\xe8\xac\xac\xac\xff\xb6\xb6\xb6\xff\xb9\xb9\xb9\xff\xb8\xb8\xb8\ -\xff\xb7\xb7\xb7\xff\xb6\xb6\xb6\xff\xb5\xb5\xb5\xff\xb4\xb4\xb4\ -\xff\xb3\xb3\xb3\xff\xb2\xb2\xb2\xff\xb2\xb2\xb2\xff\xb0\xb0\xb0\ -\xff\xaf\xaf\xaf\xff\xad\xad\xad\xff|||\xed|||\ -\xcb\xa8\xa8\xa8\xff\xbd\xbd\xbd\xff\xbc\xbc\xbc\xff\xbb\xbb\xbb\ -\xff\xbb\xbb\xbb\xff\xba\xba\xba\xff\xb9\xb9\xb9\xff\xb8\xb8\xb8\ -\xff\xb7\xb7\xb7\xff\xb6\xb6\xb6\xff\xb5\xb5\xb5\xff\xb4\xb4\xb4\ -\xff\xb0\xb0\xb0\xff\xa9\xa9\xa9\xff|||\xd9|||\ -\x8b\x9b\x9b\x9b\xff\xc0\xc0\xc0\xff\xc0\xc0\xc0\xff\xbf\xbf\xbf\ -\xff\xbe\xbe\xbe\xff\xbd\xbd\xbd\xff\xbd\xbd\xbd\xff\xbc\xbc\xbc\ -\xff\xbb\xbb\xbb\xff\xba\xba\xba\xff\xb9\xb9\xb9\xff\xb9\xb9\xb9\ -\xff\xb3\xb3\xb3\xff\x9e\x9e\x9e\xff|||\xa3|||\ -(|||\xfa\xba\xba\xba\xff\xc5\xc5\xc5\xff\xc3\xc3\xc3\ -\xff\xc2\xc2\xc2\xff\xc1\xc1\xc1\xff\xc1\xc1\xc1\xff\xc0\xc0\xc0\ -\xff\xbf\xbf\xbf\xff\xbe\xbe\xbe\xff\xbd\xbd\xbd\xff\xbd\xbd\xbd\ -\xff\xb4\xb4\xb4\xff\x88\x88\x88\xff|||;\x00\x00\x00\ -\x00|||\x88\x95\x95\x95\xff\xc5\xc5\xc5\xff\xc8\xc8\xc8\ -\xff\xc6\xc6\xc6\xff\xc5\xc5\xc5\xff\xc4\xc4\xc4\xff\xc3\xc3\xc3\ -\xff\xc3\xc3\xc3\xff\xc2\xc2\xc2\xff\xc2\xc2\xc2\xff\xbd\xbd\xbd\ -\xff\x95\x95\x95\xff|||\x9f\x00\x00\x00\x00\x00\x00\x00\ -\x00|||\x05|||\xaa\x95\x95\x95\xff\xc0\xc0\xc0\ -\xff\xcb\xcb\xcb\xff\xca\xca\xca\xff\xc9\xc9\xc9\xff\xc8\xc8\xc8\ -\xff\xc7\xc7\xc7\xff\xc7\xc7\xc7\xff\xc0\xc0\xc0\xff\x96\x96\x96\ -\xff|||\xbb|||\x0b\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00|||\x04|||\x88|||\ -\xf6\x9e\x9e\x9e\xff\xb3\xb3\xb3\xff\xbe\xbe\xbe\xff\xbf\xbf\xbf\ -\xff\xb3\xb3\xb3\xff\xa0\xa0\xa0\xff|||\xfb|||\ -\x96|||\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00|||\ -+|||\x8a|||\xc8|||\xe7|||\ -\xe8|||\xcb|||\x91|||3\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x0f\x00\ -\x00\xc0\x03\x00\x00\x80\x01\x00\x00\x80\x01\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\ -\x00\x80\x01\x00\x00\xc0\x03\x00\x00\xf0\x0f\x00\x00\ -\x00\x00\x03D\ -<\ -?xml version=\x221.\ -0\x22 encoding=\x22UTF\ --8\x22?>\x0d\x0a\x0d\x0a source contr\ -ol error v2\x0d\x0a \x0d\x0a \ - \x0d\ -\x0a \x0d\x0a\x0d\x0a\ -" - -qt_resource_name = b"\ -\x00\x0f\ -\x04T\x95'\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x000\x00.\x00p\x00n\x00g\ -\x00\x0f\ -\x04S\x95\xc7\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x005\x00.\x00p\x00n\x00g\ -\x00\x09\ -\x0a\xc5\xacG\ -\x00w\ -\x00a\x00t\x00e\x00r\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x06Z\x7fG\ -\x00p\ -\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x000\ -\x00.\x00p\x00n\x00g\ -\x00\x0f\ -\x04_\x95'\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x009\x00.\x00p\x00n\x00g\ -\x00\x16\ -\x0eE\x9e\x87\ -\x00e\ -\x00r\x00r\x00o\x00r\x00_\x00r\x00e\x00p\x00o\x00r\x00t\x00_\x00e\x00r\x00r\x00o\ -\x00r\x00.\x00s\x00v\x00g\ -\x00\x09\ -\x08\xbcm\xc2\ -\x00s\ -\x00t\x00a\x00t\x00u\x00s\x00b\x00a\x00r\ -\x00\x0f\ -\x04P\x95\xc7\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x004\x00.\x00p\x00n\x00g\ -\x00\x0f\ -\x04\x5c\x95'\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x008\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00\xf0&'\ -\x00e\ -\x00r\x00r\x00o\x00r\x00_\x00r\x00e\x00p\x00o\x00r\x00t\x00_\x00w\x00a\x00r\x00n\ -\x00i\x00n\x00g\x00.\x00s\x00v\x00g\ -\x00\x18\ -\x0c\x85t\xe7\ -\x00e\ -\x00r\x00r\x00o\x00r\x00_\x00r\x00e\x00p\x00o\x00r\x00t\x00_\x00c\x00o\x00m\x00m\ -\x00e\x00n\x00t\x00.\x00s\x00v\x00g\ -\x00\x0a\ -\x03\xd6;g\ -\x00M\ -\x00a\x00i\x00n\x00W\x00i\x00n\x00d\x00o\x00w\ -\x00\x0f\ -\x04U\x95\xc7\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x003\x00.\x00p\x00n\x00g\ -\x00\x09\ -\x0c\xe6\xbd#\ -\x00v\ -\x00i\x00e\x00w\x00p\x00a\x00n\x00e\x00s\ -\x00\x0f\ -\x04a\x95'\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x007\x00.\x00p\x00n\x00g\ -\x00\x07\ -\x0a\xc9\xa6S\ -\x00c\ -\x00u\x00r\x00s\x00o\x00r\x00s\ -\x00\x15\ -\x06S\x7fG\ -\x00p\ -\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x007\ -\x00.\x00p\x00n\x00g\ -\x00\x0f\ -\x04R\x95\xc7\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x002\x00.\x00p\x00n\x00g\ -\x00\x0f\ -\x04^\x95'\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x006\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x06P\x7fG\ -\x00p\ -\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x006\ -\x00.\x00p\x00n\x00g\ -\x00\x0f\ -\x04W\x95\xc7\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x001\x00.\x00p\x00n\x00g\ -\x00\x0f\ -\x04S\x95'\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x005\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x06a\x7fG\ -\x00p\ -\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x005\ -\x00.\x00p\x00n\x00g\ -\x00\x0f\ -\x04T\x95\xc7\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x000\x00.\x00p\x00n\x00g\ -\x00\x0f\ -\x04P\x95'\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x004\x00.\x00p\x00n\x00g\ -\x00\x03\ -\x00\x00x\xc3\ -\x00r\ -\x00e\x00s\ -\x00\x14\ -\x07\x22u\xc7\ -\x00a\ -\x00r\x00h\x00i\x00t\x00y\x00p\x00e\x00_\x00t\x00r\x00e\x00e\x00_\x000\x003\x00.\ -\x00p\x00n\x00g\ -\x00\x05\ -\x00O\xa6S\ -\x00I\ -\x00c\x00o\x00n\x00s\ -\x00\x15\ -\x06^\x7fG\ -\x00p\ -\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x004\ -\x00.\x00p\x00n\x00g\ -\x00\x0f\ -\x04U\x95'\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x003\x00.\x00p\x00n\x00g\ -\x00\x14\ -\x07!u\xc7\ -\x00a\ -\x00r\x00h\x00i\x00t\x00y\x00p\x00e\x00_\x00t\x00r\x00e\x00e\x00_\x000\x002\x00.\ -\x00p\x00n\x00g\ -\x00\x15\ -\x06_\x7fG\ -\x00p\ -\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x003\ -\x00.\x00p\x00n\x00g\ -\x00\x0b\ -\x0f\x08B\x1e\ -\x00A\ -\x00p\x00p\x00l\x00i\x00c\x00a\x00t\x00i\x00o\x00n\ -\x00\x0f\ -\x04R\x95'\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x002\x00.\x00p\x00n\x00g\ -\x00\x14\ -\x07(u\xc7\ -\x00a\ -\x00r\x00h\x00i\x00t\x00y\x00p\x00e\x00_\x00t\x00r\x00e\x00e\x00_\x000\x001\x00.\ -\x00p\x00n\x00g\ -\x00\x0f\ -\x04a\x95\xc7\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x007\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x06\x5c\x7fG\ -\x00p\ -\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x002\ -\x00.\x00p\x00n\x00g\ -\x00\x0f\ -\x04W\x95'\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x001\x00.\x00p\x00n\x00g\ -\x00\x14\ -\x07'u\xc7\ -\x00a\ -\x00r\x00h\x00i\x00t\x00y\x00p\x00e\x00_\x00t\x00r\x00e\x00e\x00_\x000\x000\x00.\ -\x00p\x00n\x00g\ -\x00\x0f\ -\x04^\x95\xc7\ -\x00b\ -\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x006\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x06]\x7fG\ -\x00p\ -\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x001\ -\x00.\x00p\x00n\x00g\ -\x00\x0f\ -\x0e\x0f\xf3\xff\ -\x00o\ -\x003\x00d\x00e\x00_\x00e\x00d\x00i\x00t\x00o\x00r\x00.\x00i\x00c\x00o\ -\x00\x14\ -\x0b\x1b&\xb6\ -\x00P\ -\x00a\x00d\x00l\x00o\x00c\x00k\x00_\x00D\x00i\x00s\x00a\x00b\x00l\x00e\x00d\x00.\ -\x00t\x00i\x00f\ -\x00\x17\ -\x0c\x9a\xdb\xc7\ -\x00l\ -\x00o\x00c\x00k\x00_\x00c\x00i\x00r\x00c\x00l\x00e\x00_\x00d\x00e\x00f\x00a\x00u\ -\x00l\x00t\x00.\x00s\x00v\x00g\ -\x00\x10\ -\x07T\xb1'\ -\x00D\ -\x00e\x00f\x00a\x00u\x00l\x00t\x00_\x00o\x00p\x00e\x00n\x00.\x00s\x00v\x00g\ -\x00\x19\ -\x0e\xd2\x13\xe7\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00H\x00a\x00n\x00d\x00l\x00e\x00_\x00M\x00o\x00d\x00i\ -\x00f\x00i\x00e\x00d\x00.\x00s\x00v\x00g\ -\x00\x0e\ -\x0b\xd8M\x87\ -\x00l\ -\x00a\x00y\x00e\x00r\x00_\x00i\x00c\x00o\x00n\x00.\x00s\x00v\x00g\ -\x00\x15\ -\x01\xaf\x1c'\ -\x00E\ -\x00n\x00t\x00i\x00t\x00y\x00_\x00N\x00o\x00t\x00_\x00A\x00c\x00t\x00i\x00v\x00e\ -\x00.\x00s\x00v\x00g\ -\x00\x19\ -\x05\xf2\xd2\x07\ -\x00v\ -\x00i\x00s\x00_\x00o\x00n\x00_\x00N\x00o\x00t\x00T\x00r\x00a\x00n\x00s\x00p\x00a\ -\x00r\x00e\x00n\x00t\x00.\x00s\x00v\x00g\ -\x00\x1c\ -\x05A\x11\x07\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00H\x00a\x00n\x00d\x00l\x00e\x00_\x00E\x00d\x00i\x00t\ -\x00o\x00r\x00_\x00O\x00n\x00l\x00y\x00.\x00s\x00v\x00g\ -\x00\x16\ -\x0c>\x8f\xc7\ -\x00v\ -\x00i\x00s\x00_\x00c\x00i\x00r\x00c\x00l\x00e\x00_\x00d\x00e\x00f\x00a\x00u\x00l\ -\x00t\x00.\x00s\x00v\x00g\ -\x00%\ -\x0f-\x08'\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00H\x00a\x00n\x00d\x00l\x00e\x00_\x00M\x00o\x00d\x00i\ -\x00f\x00i\x00e\x00d\x00_\x00E\x00d\x00i\x00t\x00o\x00r\x00_\x00O\x00n\x00l\x00y\ -\x00.\x00s\x00v\x00g\ -\x00\x0a\ -\x01\xb91\x87\ -\x00l\ -\x00o\x00c\x00k\x00e\x00d\x00.\x00s\x00v\x00g\ -\x00\x0f\ -\x05bA^\ -\x00E\ -\x00y\x00e\x00_\x00O\x00p\x00e\x00n\x00_\x00H\x00i\x00d\x00d\x00e\x00n\ -\x00\x1b\ -\x05K\x05V\ -\x00P\ -\x00a\x00d\x00l\x00o\x00c\x00k\x00_\x00P\x00a\x00r\x00t\x00i\x00a\x00l\x00_\x00E\ -\x00n\x00a\x00b\x00l\x00e\x00d\x00.\x00t\x00i\x00f\ -\x00\x0c\ -\x0f^26\ -\x00E\ -\x00y\x00e\x00_\x00O\x00p\x00e\x00n\x00.\x00t\x00i\x00f\ -\x00\x10\ -\x03\xcaZG\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00.\x00s\x00v\x00g\ -\x00\x16\ -\x06\x8e\x16\xc7\ -\x00E\ -\x00n\x00t\x00i\x00t\x00y\x00_\x00E\x00d\x00i\x00t\x00o\x00r\x00_\x00O\x00n\x00l\ -\x00y\x00.\x00s\x00v\x00g\ -\x00\x1b\ -\x04\xe2\x14'\ -\x00l\ -\x00o\x00c\x00k\x00_\x00c\x00i\x00r\x00c\x00l\x00e\x00_\x00t\x00r\x00a\x00n\x00s\ -\x00p\x00a\x00r\x00e\x00n\x00t\x00.\x00s\x00v\x00g\ -\x00\x0d\ -\x01m\xcf\x96\ -\x00E\ -\x00y\x00e\x00_\x00S\x00l\x00a\x00s\x00h\x00.\x00t\x00i\x00f\ -\x00\x14\ -\x0e\x00\x9e6\ -\x00E\ -\x00y\x00e\x00_\x00P\x00a\x00r\x00t\x00i\x00a\x00l\x00_\x00O\x00p\x00e\x00n\x00.\ -\x00t\x00i\x00f\ -\x00\x07\ -\x0c\xf8ZG\ -\x00E\ -\x00y\x00e\x00.\x00s\x00v\x00g\ -\x00\x14\ -\x07T)\xf6\ -\x00E\ -\x00y\x00e\x00_\x00S\x00l\x00a\x00s\x00h\x00_\x00H\x00i\x00d\x00d\x00e\x00n\x00.\ -\x00t\x00i\x00f\ -\x00\x1a\ -\x00\xe3\x5c\xa7\ -\x00v\ -\x00i\x00s\x00_\x00c\x00i\x00r\x00c\x00l\x00e\x00_\x00t\x00r\x00a\x00n\x00s\x00p\ -\x00a\x00r\x00e\x00n\x00t\x00.\x00s\x00v\x00g\ -\x00/\ -\x0a\xf8TG\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00M\x00o\x00d\x00i\ -\x00f\x00i\x00e\x00d\x00_\x00E\x00d\x00i\x00t\x00o\x00r\x00_\x00O\x00n\x00l\x00y\ -\x00_\x00U\x00n\x00s\x00a\x00v\x00a\x00b\x00l\x00e\x00.\x00s\x00v\x00g\ -\x00\x13\ -\x09+\x00\xf6\ -\x00P\ -\x00a\x00d\x00l\x00o\x00c\x00k\x00_\x00E\x00n\x00a\x00b\x00l\x00e\x00d\x00.\x00t\ -\x00i\x00f\ -\x00\x19\ -\x07,\xf6\x07\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00M\x00o\x00d\x00i\ -\x00f\x00i\x00e\x00d\x00.\x00s\x00v\x00g\ -\x00.\ -\x07\x84Qg\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00M\x00o\x00d\x00i\ -\x00f\x00i\x00e\x00d\x00_\x00N\x00o\x00t\x00_\x00A\x00c\x00t\x00i\x00v\x00e\x00_\ -\x00U\x00n\x00s\x00a\x00v\x00a\x00b\x00l\x00e\x00.\x00s\x00v\x00g\ -\x00%\ -\x08\xc2\x87g\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00M\x00o\x00d\x00i\ -\x00f\x00i\x00e\x00d\x00_\x00E\x00d\x00i\x00t\x00o\x00r\x00_\x00O\x00n\x00l\x00y\ -\x00.\x00s\x00v\x00g\ -\x00\x19\ -\x0e\x89\x90\x16\ -\x00P\ -\x00a\x00d\x00l\x00o\x00c\x00k\x00_\x00E\x00n\x00a\x00b\x00l\x00e\x00d\x00_\x00H\ -\x00o\x00v\x00e\x00r\x00.\x00t\x00i\x00f\ -\x00\x1c\ -\x0bd6G\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00E\x00d\x00i\x00t\ -\x00o\x00r\x00_\x00O\x00n\x00l\x00y\x00.\x00s\x00v\x00g\ -\x00\x0b\ -\x052\xac\xa7\ -\x00P\ -\x00a\x00d\x00l\x00o\x00c\x00k\x00.\x00s\x00v\x00g\ -\x00\x10\ -\x08Y\x11\xa7\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00H\x00a\x00n\x00d\x00l\x00e\x00.\x00s\x00v\x00g\ -\x00$\ -\x05\xcb\xc5\xc7\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00M\x00o\x00d\x00i\ -\x00f\x00i\x00e\x00d\x00_\x00N\x00o\x00t\x00_\x00A\x00c\x00t\x00i\x00v\x00e\x00.\ -\x00s\x00v\x00g\ -\x00\x1b\ -\x0e\xf5\xfe\xc7\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00N\x00o\x00t\x00_\ -\x00A\x00c\x00t\x00i\x00v\x00e\x00.\x00s\x00v\x00g\ -\x00\x0c\ -\x0e=1\x87\ -\x00u\ -\x00n\x00l\x00o\x00c\x00k\x00e\x00d\x00.\x00s\x00v\x00g\ -\x00\x1a\ -\x00\x9cw\x07\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00U\x00n\x00s\x00a\ -\x00v\x00a\x00b\x00l\x00e\x00.\x00s\x00v\x00g\ -\x00\x1a\ -\x0a\xe9\xdc\x96\ -\x00P\ -\x00a\x00d\x00l\x00o\x00c\x00k\x00_\x00D\x00i\x00s\x00a\x00b\x00l\x00e\x00d\x00_\ -\x00H\x00o\x00v\x00e\x00r\x00.\x00t\x00i\x00f\ -\x00\x0a\ -\x00\xb5\xd1\xa7\ -\x00E\ -\x00n\x00t\x00i\x00t\x00y\x00.\x00s\x00v\x00g\ -\x00#\ -\x08\x0b\xd5\x87\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00M\x00o\x00d\x00i\ -\x00f\x00i\x00e\x00d\x00_\x00U\x00n\x00s\x00a\x00v\x00a\x00b\x00l\x00e\x00.\x00s\ -\x00v\x00g\ -\x00\x13\ -\x0e\x1c\x0e\xf6\ -\x00E\ -\x00y\x00e\x00_\x00S\x00l\x00a\x00s\x00h\x00_\x00H\x00o\x00v\x00e\x00r\x00.\x00t\ -\x00i\x00f\ -\x00\x1b\ -\x03\x98\x0c'\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00H\x00a\x00n\x00d\x00l\x00e\x00_\x00N\x00o\x00t\x00_\ -\x00A\x00c\x00t\x00i\x00v\x00e\x00.\x00s\x00v\x00g\ -\x00\x17\ -\x03\xf8\xf5g\ -\x00l\ -\x00o\x00c\x00k\x00_\x00o\x00n\x00_\x00t\x00r\x00a\x00n\x00s\x00p\x00a\x00r\x00e\ -\x00n\x00t\x00.\x00s\x00v\x00g\ -\x00\x1a\ -\x00\xb2\x86\xa7\ -\x00l\ -\x00o\x00c\x00k\x00_\x00o\x00n\x00_\x00N\x00o\x00t\x00T\x00r\x00a\x00n\x00s\x00p\ -\x00a\x00r\x00e\x00n\x00t\x00.\x00s\x00v\x00g\ -\x00\x08\ -\x00\x95Ug\ -\x00v\ -\x00i\x00s\x00b\x00.\x00s\x00v\x00g\ -\x00\x15\ -\x0c\x87\x8f\xd6\ -\x00E\ -\x00y\x00e\x00_\x00P\x00a\x00r\x00t\x00i\x00a\x00l\x00_\x00S\x00l\x00a\x00s\x00h\ -\x00.\x00t\x00i\x00f\ -\x00\x0f\ -\x09\xcbq\xa7\ -\x00v\ -\x00i\x00s\x00b\x00_\x00h\x00i\x00d\x00d\x00e\x00n\x00.\x00s\x00v\x00g\ -\x00\x12\ -\x02{\xf5\x96\ -\x00E\ -\x00y\x00e\x00_\x00O\x00p\x00e\x00n\x00_\x00H\x00o\x00v\x00e\x00r\x00.\x00t\x00i\ -\x00f\ -\x00$\ -\x0a9L\xa7\ -\x00S\ -\x00l\x00i\x00c\x00e\x00_\x00H\x00a\x00n\x00d\x00l\x00e\x00_\x00M\x00o\x00d\x00i\ -\x00f\x00i\x00e\x00d\x00_\x00N\x00o\x00t\x00_\x00A\x00c\x00t\x00i\x00v\x00e\x00.\ -\x00s\x00v\x00g\ -\x00\x16\ -\x05\x5c\xa1g\ -\x00v\ -\x00i\x00s\x00_\x00o\x00n\x00_\x00t\x00r\x00a\x00n\x00s\x00p\x00a\x00r\x00e\x00n\ -\x00t\x00.\x00s\x00v\x00g\ -\x00\x12\ -\x0cS?'\ -\x00D\ -\x00e\x00f\x00a\x00u\x00l\x00t\x00_\x00c\x00l\x00o\x00s\x00e\x00d\x00.\x00s\x00v\ -\x00g\ -\x00\x1c\ -\x0d\x1b}6\ -\x00P\ -\x00a\x00d\x00l\x00o\x00c\x00k\x00_\x00P\x00a\x00r\x00t\x00i\x00a\x00l\x00_\x00D\ -\x00i\x00s\x00a\x00b\x00l\x00e\x00d\x00.\x00t\x00i\x00f\ -\x00\x12\ -\x06\xdb\x9dg\ -\x00P\ -\x00r\x00e\x00f\x00e\x00r\x00e\x00n\x00c\x00e\x00s\x00_\x000\x001\x00.\x00p\x00n\ -\x00g\ -\x00\x0a\ -\x08v\x9cg\ -\x00G\ -\x00l\x00o\x00b\x00a\x00l\x00.\x00s\x00v\x00g\ -\x00\x0a\ -\x0c\x8dj\xa7\ -\x00C\ -\x00a\x00m\x00e\x00r\x00a\x00.\x00s\x00v\x00g\ -\x00\x12\ -\x06\xd8\x9dg\ -\x00P\ -\x00r\x00e\x00f\x00e\x00r\x00e\x00n\x00c\x00e\x00s\x00_\x000\x000\x00.\x00p\x00n\ -\x00g\ -\x00\x0c\ -\x0d\x08\xc6'\ -\x00V\ -\x00i\x00e\x00w\x00p\x00o\x00r\x00t\x00.\x00s\x00v\x00g\ -\x00\x12\ -\x06\xe1\x9dg\ -\x00P\ -\x00r\x00e\x00f\x00e\x00r\x00e\x00n\x00c\x00e\x00s\x00_\x000\x003\x00.\x00p\x00n\ -\x00g\ -\x00\x0a\ -\x00k\xd7\xa7\ -\x00M\ -\x00o\x00t\x00i\x00o\x00n\x00.\x00s\x00v\x00g\ -\x00\x12\ -\x06\xde\x9dg\ -\x00P\ -\x00r\x00e\x00f\x00e\x00r\x00e\x00n\x00c\x00e\x00s\x00_\x000\x002\x00.\x00p\x00n\ -\x00g\ -\x00\x09\ -\x09\xba\xcf\xa7\ -\x00D\ -\x00e\x00b\x00u\x00g\x00.\x00s\x00v\x00g\ -\x00\x10\ -\x03l\x17\xc7\ -\x00E\ -\x00x\x00p\x00e\x00r\x00i\x00m\x00e\x00n\x00t\x00a\x00l\x00.\x00s\x00v\x00g\ -\x00\x09\ -\x02\xc6\xc0\xc7\ -\x00F\ -\x00i\x00l\x00e\x00s\x00.\x00s\x00v\x00g\ -\x00\x0a\ -\x04o\x98\xe7\ -\x00G\ -\x00i\x00z\x00m\x00o\x00s\x00.\x00s\x00v\x00g\ -\x00\x07\ -\x0f\x07J\x02\ -\x00h\ -\x00i\x00t\x00.\x00c\x00u\x00r\ -\x00\x0e\ -\x06\x0c\xfb\x82\ -\x00a\ -\x00r\x00r\x00o\x00w\x00_\x00d\x00o\x00w\x00n\x00.\x00c\x00u\x00r\ -\x00\x0b\ -\x06\x89\xd9\x82\ -\x00c\ -\x00u\x00r\x00s\x00o\x00r\x001\x00.\x00c\x00u\x00r\ -\x00\x0b\ -\x06\x80\xd9\x82\ -\x00c\ -\x00u\x00r\x00s\x00o\x00r\x002\x00.\x00c\x00u\x00r\ -\x00\x17\ -\x06h\xad\xa2\ -\x00p\ -\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00s\x00o\x00_\x00s\x00e\x00l\x00_\x00p\x00l\ -\x00u\x00s\x00.\x00c\x00u\x00r\ -\x00\x0d\ -\x08\x8c:\xe2\ -\x00l\ -\x00e\x00f\x00t\x00r\x00i\x00g\x00h\x00t\x00.\x00c\x00u\x00r\ -\x00\x0e\ -\x03\x0c\x0f\xc2\ -\x00p\ -\x00o\x00i\x00n\x00t\x00e\x00r\x00H\x00i\x00t\x00.\x00c\x00u\x00r\ -\x00\x12\ -\x03\xfe\x1c\x82\ -\x00p\ -\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00s\x00m\x00o\x00o\x00t\x00h\x00.\x00c\x00u\ -\x00r\ -\x00\x11\ -\x06\x8d\xde\x82\ -\x00a\ -\x00r\x00r\x00o\x00w\x00_\x00u\x00p\x00r\x00i\x00g\x00h\x00t\x00.\x00c\x00u\x00r\ -\ -\x00\x0e\ -\x02\xc2\xa5\x82\ -\x00a\ -\x00r\x00r\x00_\x00a\x00d\x00d\x00k\x00e\x00y\x00.\x00c\x00u\x00r\ -\x00\x15\ -\x07\x0a7B\ -\x00p\ -\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00g\x00e\x00t\x00h\x00e\x00i\x00g\x00h\x00t\ -\x00.\x00c\x00u\x00r\ -\x00\x10\ -\x08\x83\x1e\x22\ -\x00p\ -\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00p\x00l\x00u\x00s\x00.\x00c\x00u\x00r\ -\x00\x11\ -\x0d\xbf%b\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00r\x00o\x00t\x00a\x00t\x00e\x00.\x00c\x00u\x00r\ -\ -\x00\x0f\ -\x07\xb5h\x82\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00m\x00o\x00v\x00e\x00.\x00c\x00u\x00r\ -\x00\x13\ -\x00.\xa8\x22\ -\x00p\ -\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00l\x00i\x00n\x00k\x00n\x00o\x00w\x00.\x00c\ -\x00u\x00r\ -\x00\x10\ -\x07\x0b\x1e\x82\ -\x00p\ -\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00l\x00i\x00n\x00k\x00.\x00c\x00u\x00r\ -\x00\x11\ -\x01\x93\x0c\x22\ -\x00p\ -\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00m\x00i\x00n\x00u\x00s\x00.\x00c\x00u\x00r\ -\ -\x00\x13\ -\x0aQ\xeab\ -\x00p\ -\x00o\x00i\x00n\x00t\x00e\x00r\x00D\x00r\x00a\x00g\x00I\x00t\x00e\x00m\x00.\x00c\ -\x00u\x00r\ -\x00\x0c\ -\x0b\xd0gb\ -\x00a\ -\x00r\x00r\x00o\x00w\x00_\x00u\x00p\x00.\x00c\x00u\x00r\ -\x00\x0f\ -\x0eO\xc8\x02\ -\x00p\ -\x00i\x00c\x00k\x00_\x00c\x00u\x00r\x00s\x00o\x00r\x00.\x00c\x00u\x00r\ -\x00\x0c\ -\x0el\xec\xa2\ -\x00c\ -\x00u\x00r\x000\x000\x000\x000\x001\x00.\x00c\x00u\x00r\ -\x00\x0c\ -\x0em\xec\xa2\ -\x00c\ -\x00u\x00r\x000\x000\x000\x000\x002\x00.\x00c\x00u\x00r\ -\x00\x0c\ -\x0en\xec\xa2\ -\x00c\ -\x00u\x00r\x000\x000\x000\x000\x003\x00.\x00c\x00u\x00r\ -\x00\x0c\ -\x05\xaa\xdb\xa2\ -\x00h\ -\x00a\x00n\x00d\x00D\x00r\x00a\x00g\x00.\x00c\x00u\x00r\ -\x00\x0c\ -\x0eo\xec\xa2\ -\x00c\ -\x00u\x00r\x000\x000\x000\x000\x004\x00.\x00c\x00u\x00r\ -\x00\x10\ -\x03y\xfd\xc2\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00s\x00c\x00a\x00l\x00e\x00.\x00c\x00u\x00r\ -\x00\x0c\ -\x0ep\xec\xa2\ -\x00c\ -\x00u\x00r\x000\x000\x000\x000\x005\x00.\x00c\x00u\x00r\ -\x00\x0c\ -\x02\xaeA\x82\ -\x00p\ -\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00.\x00c\x00u\x00r\ -\x00\x15\ -\x0eb\xe8\x22\ -\x00p\ -\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00s\x00o\x00_\x00s\x00e\x00l\x00e\x00c\x00t\ -\x00.\x00c\x00u\x00r\ -\x00\x13\ -\x096M\x02\ -\x00a\ -\x00r\x00r\x00o\x00w\x00_\x00d\x00o\x00w\x00n\x00r\x00i\x00g\x00h\x00t\x00.\x00c\ -\x00u\x00r\ -\x00\x13\ -\x0f\xbas\x02\ -\x00p\ -\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00f\x00l\x00a\x00t\x00t\x00e\x00n\x00.\x00c\ -\x00u\x00r\ -\x00\x0c\ -\x0fy\xb7\xc7\ -\x00m\ -\x00a\x00x\x00i\x00m\x00i\x00z\x00e\x00.\x00p\x00n\x00g\ -\x00\x10\ -\x0a5o'\ -\x00h\ -\x00i\x00d\x00e\x00_\x00h\x00e\x00l\x00p\x00e\x00r\x00s\x00.\x00p\x00n\x00g\ -\x00\x10\ -\x0a\x9d~\xc7\ -\x00d\ -\x00i\x00s\x00p\x00l\x00a\x00y\x00_\x00i\x00n\x00f\x00o\x00.\x00p\x00n\x00g\ -\x00\x17\ -\x04\xb0\xfe\xc7\ -\x00e\ -\x00d\x00i\x00t\x00w\x00i\x00t\x00h\x00b\x00u\x00t\x00t\x00o\x00n\x00_\x00d\x00a\ -\x00r\x00k\x00.\x00p\x00n\x00g\ -\x00\x08\ -\x06b\x87\xf3\ -\x00t\ -\x00o\x00o\x00l\x00b\x00a\x00r\x00s\ -\x00\x1d\ -\x08\xa8\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x000\x005\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x0e\x98q\xa7\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x004\ -\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x000\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x001\x004\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00N\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x000\x006\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xd5\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x001\x002\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xa7\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x000\x004\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x005\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x001\x003\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00C\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x000\x005\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xd4\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x001\x001\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x0e\xecq\xa7\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x001\x000\ -\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00$\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x002\x000\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xa6\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x000\x003\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x0e\x9aq\xa7\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x002\ -\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x002\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x001\x002\x00.\x00p\x00n\x00g\ -\x00\x1e\ -\x076,\x87\ -\x00p\ -\x00r\x00o\x00c\x00e\x00d\x00u\x00r\x00a\x00l\x00m\x00a\x00t\x00e\x00r\x00i\x00a\ -\x00l\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xd3\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x001\x000\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xa5\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x000\x002\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x0e\x9fq\xa7\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x001\ -\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x007\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x001\x001\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00E\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x000\x003\x00.\x00p\x00n\x00g\ -\x00\x13\ -\x0c\xd0\x1e\x87\ -\x00m\ -\x00i\x00s\x00c\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x000\x00.\x00p\ -\x00n\x00g\ -\x00\x1d\ -\x08\xa4\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x000\x001\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x0e\x9cq\xa7\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x000\ -\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x004\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x001\x000\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xdb\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x001\x008\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00B\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x000\x002\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x0e\x97q\xa7\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x009\ -\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00?\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x001\x009\x00.\x00p\x00n\x00g\ -\x00\x10\ -\x0f\xf1A\xe7\ -\x00O\ -\x00b\x00j\x00S\x00e\x00l\x00e\x00c\x00t\x00i\x00o\x00n\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xa3\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x000\x000\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xda\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x001\x007\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00G\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x000\x001\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xac\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x000\x009\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x0e\x94q\xa7\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x008\ -\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00<\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x001\x008\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xd9\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x001\x006\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00#\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x002\x005\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00D\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x000\x000\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xab\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x000\x008\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x0e\x99q\xa7\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x007\ -\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00A\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x001\x007\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00O\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x000\x009\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xd8\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x001\x005\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00 \xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x002\x004\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xaa\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x000\x007\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x0e\x96q\xa7\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x006\ -\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00>\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x001\x006\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00L\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x000\x008\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x0e\x9d|'\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x003\ -\x00.\x00s\x00v\x00g\ -\x00\x1d\ -\x08\xd7\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x001\x004\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00%\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x002\x003\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xa9\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x000\x006\x00.\x00p\x00n\x00g\ -\x00\x15\ -\x0e\x9bq\xa7\ -\x00o\ -\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x005\ -\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x003\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x001\x005\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00Q\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x000\x007\x00.\x00p\x00n\x00g\ -\x00\x1d\ -\x08\xd6\xaf\xe7\ -\x00s\ -\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ -\x00o\x00l\x00b\x00a\x00r\x00-\x001\x003\x00.\x00p\x00n\x00g\ -\x00\x18\ -\x00\x22\xce\x87\ -\x00e\ -\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ -\x00-\x002\x002\x00.\x00p\x00n\x00g\ -\x00\x10\ -\x0c\x99\xf5\x1f\ -\x00b\ -\x00a\x00l\x00l\x00_\x00o\x00f\x00f\x00l\x00i\x00n\x00e\x00.\x00i\x00c\x00o\ -\x00\x1c\ -\x0d\xbb\x8bG\ -\x00s\ -\x00o\x00u\x00r\x00c\x00e\x00_\x00c\x00o\x00n\x00t\x00r\x00o\x00l\x00_\x00c\x00o\ -\x00n\x00n\x00e\x00c\x00t\x00e\x00d\x00.\x00s\x00v\x00g\ -\x00\x1c\ -\x03ZJ\xe7\ -\x00s\ -\x00o\x00u\x00r\x00c\x00e\x00_\x00c\x00o\x00n\x00t\x00r\x00o\x00l\x00-\x00n\x00o\ -\x00t\x00_\x00s\x00e\x00t\x00u\x00p\x00.\x00s\x00v\x00g\ -\x00\x0f\ -\x0a\x0d'\xdf\ -\x00b\ -\x00a\x00l\x00l\x00_\x00o\x00n\x00l\x00i\x00n\x00e\x00.\x00i\x00c\x00o\ -\x00\x1d\ -\x03\xe3zG\ -\x00s\ -\x00o\x00u\x00r\x00c\x00e\x00_\x00c\x00o\x00n\x00t\x00r\x00o\x00l\x00-\x00w\x00a\ -\x00r\x00n\x00i\x00n\x00g\x00_\x00v\x002\x00.\x00s\x00v\x00g\ -\x00\x10\ -\x0c\xa1\xe6\x1f\ -\x00b\ -\x00a\x00l\x00l\x00_\x00p\x00e\x00n\x00d\x00i\x00n\x00g\x00.\x00i\x00c\x00o\ -\x00\x11\ -\x08tl?\ -\x00b\ -\x00a\x00l\x00l\x00_\x00d\x00i\x00s\x00a\x00b\x00l\x00e\x00d\x00.\x00i\x00c\x00o\ -\ -\x00\x1b\ -\x00\x22\x12'\ -\x00s\ -\x00o\x00u\x00r\x00c\x00e\x00_\x00c\x00o\x00n\x00t\x00r\x00o\x00l\x00_\x00e\x00r\ -\x00r\x00o\x00r\x00_\x00v\x002\x00.\x00s\x00v\x00g\ -" - -qt_resource_struct = b"\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00)\x00\x00\x00\x01\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x03\xa8\x00\x02\x00\x00\x00\x0c\x00\x00\x00\xc5\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x03\xe2\x00\x02\x00\x00\x002\x00\x00\x00\x93\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x01F\x00\x00\x00\x00\x00\x01\x00\x00\xb19\ -\x00\x00\x01y+\x8f\x93\xf2\ -\x00\x00\x01\xb2\x00\x02\x00\x00\x00\x01\x00\x00\x00Y\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x03\x84\x00\x00\x00\x00\x00\x01\x00\x00\xc6s\ -\x00\x00\x01x\xc7F\xf7\x89\ -\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x01\x00\x00\xad\x12\ -\x00\x00\x01x\xc7F\xf7\xee\ -\x00\x00\x04\xc0\x00\x00\x00\x00\x00\x01\x00\x00\xceG\ -\x00\x00\x01x\xc7F\xf7\xd7\ -\x00\x00\x02p\x00\x00\x00\x00\x00\x01\x00\x00\xbec\ -\x00\x00\x01x\xc7F\xf8\x08\ -\x00\x00\x03\x0c\x00\x00\x00\x00\x00\x01\x00\x00\xc3\xef\ -\x00\x00\x01x\xc7F\xf8\x04\ -\x00\x00\x00$\x00\x00\x00\x00\x00\x01\x00\x00\x01\x88\ -\x00\x00\x01x\xc7F\xf7\x88\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x01x\xc7F\xf7\xd9\ -\x00\x00\x03`\x00\x00\x00\x00\x00\x01\x00\x00\xc5\xe4\ -\x00\x00\x01x\xc7F\xf85\ -\x00\x00\x04\x22\x00\x00\x00\x00\x00\x01\x00\x00\xca\x80\ -\x00\x00\x01x\xc7F\xf7\xa9\ -\x00\x00\x01\xcc\x00\x00\x00\x00\x00\x01\x00\x00\xba{\ -\x00\x00\x01x\xc7F\xf7\xed\ -\x00\x00\x05f\x00\x00\x00\x00\x00\x01\x00\x00\xd6\xb3\ -\x00\x00\x01x\xc7F\xf7\x85\ -\x00\x00\x02\xe8\x00\x00\x00\x00\x00\x01\x00\x00\xc3E\ -\x00\x00\x01x\xc7F\xf88\ -\x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00\xae\x8b\ -\x00\x00\x01x\xc7F\xf7\x81\ -\x00\x00\x02\x94\x00\x00\x00\x00\x00\x01\x00\x00\xbfR\ -\x00\x00\x01x\xc7F\xf7|\ -\x00\x00\x05\xb8\x00\x00\x00\x00\x00\x01\x00\x00\xd9\x9f\ -\x00\x00\x01x\xc7F\xf6\xe8\ -\x00\x00\x00\x90\x00\x00\x00\x00\x00\x01\x00\x00\xa6\x97\ -\x00\x00\x01x\xc7F\xf7}\ -\x00\x00\x02\x08\x00\x00\x00\x00\x00\x01\x00\x00\xbb\x91\ -\x00\x00\x01x\xc7F\xf7\x82\ -\x00\x00\x05\x12\x00\x00\x00\x00\x00\x01\x00\x00\xd0\xa7\ -\x00\x00\x01x\xc7F\xf6\xeb\ -\x00\x00\x02\xb8\x00\x00\x00\x00\x00\x01\x00\x00\xc2a\ -\x00\x00\x01x\xc7F\xf8\x07\ -\x00\x00\x02@\x00\x00\x00\x00\x00\x01\x00\x00\xbd\x8a\ -\x00\x00\x01x\xc7F\xf8\x13\ -\x00\x00\x00`\x00\x00\x00\x00\x00\x01\x00\x00\xa5\xc3\ -\x00\x00\x01x\xc7F\xf8\x17\ -\x00\x00\x056\x00\x00\x00\x00\x00\x01\x00\x00\xd5\xb3\ -\x00\x00\x01x\xc7F\xf7\xf5\ -\x00\x00\x05\xdc\x00\x00\x00\x00\x00\x01\x00\x00\xdd\xf0\ -\x00\x00\x01x\xc7F\xf8&\ -\x00\x00\x03\xf2\x00\x00\x00\x00\x00\x01\x00\x00\xc9M\ -\x00\x00\x01x\xc7F\xf7\xf1\ -\x00\x00\x04t\x00\x00\x00\x00\x00\x01\x00\x00\xcd>\ -\x00\x00\x01x\xc7F\xf7\xf2\ -\x00\x00\x030\x00\x00\x00\x00\x00\x01\x00\x00\xc4\xe2\ -\x00\x00\x01x\xc7F\xf7\xf3\ -\x00\x00\x04F\x00\x00\x00\x00\x00\x01\x00\x00\xccj\ -\x00\x00\x01x\xc7F\xf8\x11\ -\x00\x00\x03\xb4\x00\x00\x00\x00\x00\x01\x00\x00\xc8y\ -\x00\x00\x01x\xc7F\xf8\x12\ -\x00\x00\x05\x8a\x00\x00\x00\x00\x00\x01\x00\x00\xd8\xcb\ -\x00\x00\x01x\xc7F\xf8\x15\ -\x00\x00\x04\xe4\x00\x00\x00\x00\x00\x01\x00\x00\xcf\xd3\ -\x00\x00\x01x\xc7F\xf8\x16\ -\x00\x00\x00\xe6\x00\x02\x00\x00\x00\x01\x00\x00\x00P\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00H\x00\x00\x00\x00\x00\x01\x00\x00\x03\xf4\ -\x00\x00\x01x\xc7G\x01\xc4\ -\x00\x00\x02,\x00\x02\x00\x00\x00\x01\x00\x00\x000\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x01|\x00\x00\x00\x00\x00\x01\x00\x00\xb3\xeb\ -\x00\x00\x01y+\x8f\x93\xef\ -\x00\x00\x01\xf0\x00\x02\x00\x00\x00\x04\x00\x00\x00,\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\xb4\x00\x00\x00\x00\x00\x01\x00\x00\xa9\x0c\ -\x00\x00\x01y+\x8f\x93\xf0\ -\x00\x00\x04\xa4\x00\x02\x00\x00\x00\x01\x00\x00\x00*\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x03\xa8\x00\x02\x00\x00\x00\x01\x00\x00\x00+\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x06\x0c\x00\x01\x00\x00\x00\x01\x00\x00\xde\xc4\ -\x00\x00\x01y\xd2\xb2\xf5B\ -\x00\x00\x16\x86\x00\x00\x00\x00\x00\x01\x00\x05\x9eC\ -\x00\x00\x01x\xc7F\xed\xa9\ -\x00\x00\x16:\x00\x00\x00\x00\x00\x01\x00\x05\x9c\x97\ -\x00\x00\x01x\xc7F\xf0\x97\ -\x00\x00\x16`\x00\x00\x00\x00\x00\x01\x00\x05\x9dk\ -\x00\x00\x01x\xc7F\xeb4\ -\x00\x00\x16\x1c\x00\x00\x00\x00\x00\x01\x00\x05\x9b\xa4\ -\x00\x00\x01x\xc7F\xf0\x87\ -\x00\x00\x03\xa8\x00\x02\x00\x00\x00\x1f\x00\x00\x001\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x13\xb4\x00\x00\x00\x00\x00\x01\x00\x05\x88\x11\ -\x00\x00\x01x\xc7D\x85\xca\ -\x00\x00\x14\x06\x00\x00\x00\x00\x00\x01\x00\x05\x8a\xa5\ -\x00\x00\x01x\xc7D\x85\xcc\ -\x00\x00\x15v\x00\x00\x00\x00\x00\x01\x00\x05\x97l\ -\x00\x00\x01x\xc7D\x85\xc3\ -\x00\x00\x12\xf0\x00\x00\x00\x00\x00\x01\x00\x05\x81\x9f\ -\x00\x00\x01x\xc7D\x83\xc5\ -\x00\x00\x12|\x00\x00\x00\x00\x00\x01\x00\x05~\xaf\ -\x00\x00\x01x\xc7D\x85\xbb\ -\x00\x00\x152\x00\x00\x00\x00\x00\x01\x00\x05\x94\xd8\ -\x00\x00\x01x\xc7D\x85e\ -\x00\x00\x12\x9e\x00\x00\x00\x00\x00\x01\x00\x05\x7f\xf9\ -\x00\x00\x01x\xc7D\x85\xd0\ -\x00\x00\x14\xf6\x00\x00\x00\x00\x00\x01\x00\x05\x92D\ -\x00\x00\x01x\xc7D\x84\xb4\ -\x00\x00\x11\xce\x00\x01\x00\x00\x00\x01\x00\x05z\xad\ -\x00\x00\x01x\xc7D\x83\xca\ -\x00\x00\x12(\x00\x00\x00\x00\x00\x01\x00\x05}\x01\ -\x00\x00\x01x\xc7D\x85\xd2\ -\x00\x00\x12\x0c\x00\x01\x00\x00\x00\x01\x00\x05|V\ -\x00\x00\x01x\xc7D\x84\x12\ -\x00\x00\x11\xf0\x00\x00\x00\x00\x00\x01\x00\x05{\x0c\ -\x00\x00\x01x\xc7D\x84\x12\ -\x00\x00\x12\xc8\x00\x01\x00\x00\x00\x01\x00\x05\x81C\ -\x00\x00\x01x\xc7D\x83\xcf\ -\x00\x00\x13\x12\x00\x00\x00\x00\x00\x01\x00\x05\x82\xe9\ -\x00\x00\x01x\xc7D\x85\xc7\ -\x00\x00\x13\xe0\x00\x00\x00\x00\x00\x01\x00\x05\x89[\ -\x00\x00\x01x\xc7D\x85\xc8\ -\x00\x00\x13\x90\x00\x00\x00\x00\x00\x01\x00\x05\x86\xc7\ -\x00\x00\x01x\xc7D\x85d\ -\x00\x00\x13B\x00\x00\x00\x00\x00\x01\x00\x05\x843\ -\x00\x00\x01x\xc7D\x85\xce\ -\x00\x00\x12\x5c\x00\x01\x00\x00\x00\x01\x00\x05~K\ -\x00\x00\x01x\xc7D\x85-\ -\x00\x00\x15\xc4\x00\x01\x00\x00\x00\x01\x00\x05\x9a\x00\ -\x00\x00\x01x\xc7D\x83\xcb\ -\x00\x00\x14.\x00\x01\x00\x00\x00\x01\x00\x05\x8b\xef\ -\x00\x00\x01x\xc7D\x85\xb9\ -\x00\x00\x14Z\x00\x01\x00\x00\x00\x01\x00\x05\x8c\xbc\ -\x00\x00\x01x\xc7D\x83\xcc\ -\x00\x00\x13h\x00\x00\x00\x00\x00\x01\x00\x05\x85}\ -\x00\x00\x01x\xc7D\x85d\ -\x00\x00\x14x\x00\x00\x00\x00\x00\x01\x00\x05\x8d\x1c\ -\x00\x00\x01x\xc7D\x85\xb6\ -\x00\x00\x15\x94\x00\x00\x00\x00\x00\x01\x00\x05\x98\xb6\ -\x00\x00\x01x\xc7D\x85\xd4\ -\x00\x00\x14\x9c\x00\x00\x00\x00\x00\x01\x00\x05\x8ef\ -\x00\x00\x01x\xc7D\x84\x0b\ -\x00\x00\x14\xba\x00\x00\x00\x00\x00\x01\x00\x05\x8f\xb0\ -\x00\x00\x01x\xc7D\x84\x0d\ -\x00\x00\x14\xd8\x00\x00\x00\x00\x00\x01\x00\x05\x90\xfa\ -\x00\x00\x01x\xc7D\x84\x0e\ -\x00\x00\x15\x14\x00\x00\x00\x00\x00\x01\x00\x05\x93\x8e\ -\x00\x00\x01x\xc7D\x84\x0e\ -\x00\x00\x15X\x00\x00\x00\x00\x00\x01\x00\x05\x96\x22\ -\x00\x00\x01x\xc7D\x84\x0f\ -\x00\x00\x11\xba\x00\x01\x00\x00\x00\x01\x00\x05zN\ -\x00\x00\x01x\xc7D\x84\xb5\ -\x00\x00\x15\xf0\x00\x00\x00\x00\x00\x01\x00\x05\x9aZ\ -\x00\x00\x01x\xc7D\x85\xc5\ -\x00\x00\x03\xa8\x00\x02\x00\x00\x00\x08\x00\x00\x00Q\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00$\x98\x00\x00\x00\x00\x00\x01\x00\x062&\ -\x00\x00\x01y+\x8f\x94\x0d\ -\x00\x00#\xa8\x00\x00\x00\x00\x00\x01\x00\x06\x1e\x02\ -\x00\x00\x01y+\x8f\x94\x0b\ -\x00\x00$\x0a\x00\x00\x00\x00\x00\x01\x00\x06%\xd2\ -\x00\x00\x01y+\x8f\x94\x0b\ -\x00\x00$p\x00\x00\x00\x00\x00\x01\x00\x06-\xa4\ -\x00\x00\x01x\xc7F\xf7d\ -\x00\x00#\xe6\x00\x00\x00\x00\x00\x01\x00\x06!P\ -\x00\x00\x01x\xc7F\xf6\xff\ -\x00\x00#D\x00\x00\x00\x00\x00\x01\x00\x06\x166\ -\x00\x00\x01x\xc7F\xf6\xed\ -\x00\x00$J\x00\x00\x00\x00\x00\x01\x00\x06)\x22\ -\x00\x00\x01x\xc7F\xf6\xf0\ -\x00\x00#j\x00\x00\x00\x00\x00\x01\x00\x06\x1a\xb8\ -\x00\x00\x01y+\x8f\x94\x0c\ -\x00\x00\x16\xba\x00\x02\x00\x00\x009\x00\x00\x00Z\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00 :\x00\x00\x00\x00\x00\x01\x00\x05\xf9\x0c\ -\x00\x00\x01x\xc7F\xf0|\ -\x00\x00#\x0e\x00\x00\x00\x00\x00\x01\x00\x06\x11I\ -\x00\x00\x01x\xc7F\xed\xa1\ -\x00\x00\x1e\xb2\x00\x00\x00\x00\x00\x01\x00\x05\xe9\xce\ -\x00\x00\x01x\xc7F\xef\xf0\ -\x00\x00\x19\x08\x00\x00\x00\x00\x00\x01\x00\x05\xb65\ -\x00\x00\x01x\xc7F\xf0\xa1\ -\x00\x00!\xbc\x00\x00\x00\x00\x00\x01\x00\x06\x07\x15\ -\x00\x00\x01x\xc7F\xf0W\ -\x00\x00\x17@\x00\x00\x00\x00\x00\x01\x00\x05\xa4\xf5\ -\x00\x00\x01x\xc7F\xed\xd6\ -\x00\x00\x19\xae\x00\x00\x00\x00\x00\x01\x00\x05\xba\x04\ -\x00\x00\x01x\xc7F\xe9{\ -\x00\x00\x22b\x00\x00\x00\x00\x00\x01\x00\x06\x0b{\ -\x00\x00\x01x\xc7F\xef\xab\ -\x00\x00\x1b\xde\x00\x00\x00\x00\x00\x01\x00\x05\xcc\xc5\ -\x00\x00\x01x\xc7F\xcb~\ -\x00\x00\x18,\x00\x00\x00\x00\x00\x01\x00\x05\xac:\ -\x00\x00\x01x\xc7F\xf0\x90\ -\x00\x00\x1a\xd6\x00\x00\x00\x00\x00\x01\x00\x05\xc1\xd7\ -\x00\x00\x01x\xc7F\xe9@\ -\x00\x00\x1e<\x00\x00\x00\x00\x00\x01\x00\x05\xe3\x8d\ -\x00\x00\x01x\xc7F\xf0=\ -\x00\x00 \xe0\x00\x00\x00\x00\x00\x01\x00\x05\xfdE\ -\x00\x00\x01x\xc7F\xf0\x03\ -\x00\x00\x1c\xba\x00\x00\x00\x00\x00\x01\x00\x05\xd7Z\ -\x00\x00\x01x\xc7F\xed\xd8\ -\x00\x00\x1f\x8e\x00\x00\x00\x00\x00\x01\x00\x05\xf4\x02\ -\x00\x00\x01x\xc7F\xed\xda\ -\x00\x00\x1cT\x00\x00\x00\x00\x00\x01\x00\x05\xd2\x9a\ -\x00\x00\x01x\xc7F\xcc\x09\ -\x00\x00\x18b\x00\x00\x00\x00\x00\x01\x00\x05\xad,\ -\x00\x00\x01x\xc7F\xe9f\ -\x00\x00\x1e\xe8\x00\x00\x00\x00\x00\x01\x00\x05\xeb{\ -\x00\x00\x01x\xc7F\xe9\x86\ -\x00\x00\x1b\x0c\x00\x00\x00\x00\x00\x01\x00\x05\xc3%\ -\x00\x00\x01x\xc7F\xcb\xfe\ -\x00\x00\x1d\x96\x00\x00\x00\x00\x00\x01\x00\x05\xde+\ -\x00\x00\x01x\xc7F\xe9\x82\ -\x00\x00!\x16\x00\x00\x00\x00\x00\x01\x00\x05\xff\x03\ -\x00\x00\x01x\xc7F\xe7N\ -\x00\x00\x17v\x00\x00\x00\x00\x00\x01\x00\x05\xa7\x17\ -\x00\x00\x01x\xc7F\xe97\ -\x00\x00\x1f\xc4\x00\x00\x00\x00\x00\x01\x00\x05\xf6\x12\ -\x00\x00\x01x\xc7F\xe7\xa5\ -\x00\x00\x22\x98\x00\x00\x00\x00\x00\x01\x00\x06\x0d{\ -\x00\x00\x01x\xc7F\xe6\xb8\ -\x00\x00\x19\xe4\x00\x00\x00\x00\x00\x01\x00\x05\xbb#\ -\x00\x00\x01x\xc7F\xef\xeb\ -\x00\x00\x1d\x16\x00\x00\x00\x00\x00\x01\x00\x05\xda\xfb\ -\x00\x00\x01x\xc7F\xef\xe2\ -\x00\x00\x1bn\x00\x00\x00\x00\x00\x01\x00\x05\xc8A\ -\x00\x00\x01x\xc7F\xef\x93\ -\x00\x00\x1af\x00\x00\x00\x00\x00\x01\x00\x05\xbe\x80\ -\x00\x00\x01x\xc7F\xef\xee\ -\x00\x00\x19>\x00\x00\x00\x00\x00\x01\x00\x05\xb7\x07\ -\x00\x00\x01x\xc7F\xf00\ -\x00\x00\x17\xec\x00\x00\x00\x00\x00\x01\x00\x05\xaa\x0a\ -\x00\x00\x01x\xc7F\xed\xd3\ -\x00\x00\x16\xd0\x00\x00\x00\x00\x00\x01\x00\x05\xa21\ -\x00\x00\x01x\xc7F\xef\xe6\ -\x00\x00!\xf2\x00\x00\x00\x00\x00\x01\x00\x06\x08h\ -\x00\x00\x01x\xc7F\xf0f\ -\x00\x00 p\x00\x00\x00\x00\x00\x01\x00\x05\xfa\x13\ -\x00\x00\x01x\xc7F\xf0k\ -\x00\x00\x1f\x1e\x00\x00\x00\x00\x00\x01\x00\x05\xec\x83\ -\x00\x00\x01x\xc7F\xed\xc2\ -\x00\x00\x1d\xcc\x00\x00\x00\x00\x00\x01\x00\x05\xdf9\ -\x00\x00\x01x\xc7F\xf0\x0e\ -\x00\x00\x1a&\x00\x00\x00\x00\x00\x01\x00\x05\xbc\xf6\ -\x00\x00\x01x\xc7F\xf0%\ -\x00\x00\x18\x98\x00\x00\x00\x00\x00\x01\x00\x05\xaee\ -\x00\x00\x01x\xc7F\xf0I\ -\x00\x00\x17\xac\x00\x00\x00\x00\x00\x01\x00\x05\xa8\x8b\ -\x00\x00\x01x\xc7F\xf0,\ -\x00\x00\x22\xce\x00\x00\x00\x00\x00\x01\x00\x06\x0f7\ -\x00\x00\x01x\xc7F\xed\xdd\ -\x00\x00!|\x00\x00\x00\x00\x00\x01\x00\x06\x05\xa9\ -\x00\x00\x01x\xc7F\xf04\ -\x00\x00\x1f\xfa\x00\x00\x00\x00\x00\x01\x00\x05\xf7\x93\ -\x00\x00\x01x\xc7F\xf0*\ -\x00\x00\x1er\x00\x00\x00\x00\x00\x01\x00\x05\xe4\xee\ -\x00\x00\x01x\xc7F\xed\xc6\ -\x00\x00\x1dV\x00\x00\x00\x00\x00\x01\x00\x05\xdc\xcf\ -\x00\x00\x01x\xc7F\xf0@\ -\x00\x00\x1c\x14\x00\x00\x00\x00\x00\x01\x00\x05\xd1A\ -\x00\x00\x01x\xc7F\xf0K\ -\x00\x00\x1bB\x00\x00\x00\x00\x00\x01\x00\x05\xc5>\ -\x00\x00\x01x\xc7F\xed\xcb\ -\x00\x00\x1e\x0c\x00\x00\x00\x00\x00\x01\x00\x05\xe0\xbb\ -\x00\x00\x01x\xc7F\xed\xc8\ -\x00\x00 \xb0\x00\x00\x00\x00\x00\x01\x00\x05\xfb@\ -\x00\x00\x01x\xc7F\xef\xa6\ -\x00\x00\x1c\x8a\x00\x00\x00\x00\x00\x01\x00\x05\xd4\x97\ -\x00\x00\x01x\xc7F\xed\xce\ -\x00\x00\x17\x10\x00\x00\x00\x00\x00\x01\x00\x05\xa3\xf0\ -\x00\x00\x01x\xc7F\xf0\x80\ -\x00\x00\x1f^\x00\x00\x00\x00\x00\x01\x00\x05\xf2\xa4\ -\x00\x00\x01x\xc7F\xf0:\ -\x00\x00\x19~\x00\x00\x00\x00\x00\x01\x00\x05\xb8\x88\ -\x00\x00\x01x\xc7F\xf0(\ -\x00\x00\x222\x00\x00\x00\x00\x00\x01\x00\x06\x09\x9b\ -\x00\x00\x01x\xc7F\xef\xdd\ -\x00\x00\x1b\xae\x00\x00\x00\x00\x00\x01\x00\x05\xca0\ -\x00\x00\x01x\xc7F\xed\xd1\ -\x00\x00!L\x00\x00\x00\x00\x00\x01\x00\x06\x00\xbf\ -\x00\x00\x01y+\x8f\x93{\ -\x00\x00\x1a\xa6\x00\x00\x00\x00\x00\x01\x00\x05\xc0J\ -\x00\x00\x01x\xc7F\xf0\x0c\ -\x00\x00\x18\xd8\x00\x00\x00\x00\x00\x01\x00\x05\xaf\xbd\ -\x00\x00\x01x\xc7F\xed\xa4\ -\x00\x00\x1c\xf0\x00\x00\x00\x00\x00\x01\x00\x05\xd9\x9b\ -\x00\x00\x01x\xc7F\xe9<\ -\x00\x00\x0e\xba\x00\x00\x00\x00\x00\x01\x00\x04/>\ -\x00\x00\x01y+\x8f\x94\x12\ -\x00\x00\x0d\x0a\x00\x00\x00\x00\x00\x01\x00\x03\x98\x9f\ -\x00\x00\x01y+\x8f\x93\xdc\ -\x00\x00\x0e\x80\x00\x00\x00\x00\x00\x01\x00\x04*&\ -\x00\x00\x01y+\x8f\x94\x08\ -\x00\x00\x0d~\x00\x00\x00\x00\x00\x01\x00\x03\xfb\x9a\ -\x00\x00\x01y+\x8f\x93\xcd\ -\x00\x00\x09\xf6\x00\x00\x00\x00\x00\x01\x00\x039/\ -\x00\x00\x01y+\x8f\x94\x10\ -\x00\x00\x09f\x00\x01\x00\x00\x00\x01\x00\x02p@\ -\x00\x00\x01x\xc7F\xf5\xfe\ -\x00\x00\x07\x12\x00\x00\x00\x00\x00\x01\x00\x01\x8f\x0b\ -\x00\x00\x01y+\x8f\x93\xce\ -\x00\x00\x08:\x00\x00\x00\x00\x00\x01\x00\x01\xaa3\ -\x00\x00\x01y+\x8f\x94\x0a\ -\x00\x00\x0f$\x00\x00\x00\x00\x00\x01\x00\x04q\x5c\ -\x00\x00\x01x\xc7F\xf6G\ -\x00\x00\x0e\x10\x00\x00\x00\x00\x00\x01\x00\x04\x1c\xbf\ -\x00\x00\x01y+\x8f\x93\xe3\ -\x00\x00\x08\xd2\x00\x00\x00\x00\x00\x01\x00\x02e~\ -\x00\x00\x01y+\x8f\x93\xd6\ -\x00\x00\x0eL\x00\x00\x00\x00\x00\x01\x00\x04$\xfa\ -\x00\x00\x01y+\x8f\x94\x09\ -\x00\x00\x09*\x00\x00\x00\x00\x00\x01\x00\x02m\xa1\ -\x00\x00\x01y+\x8f\x94\x07\ -\x00\x00\x0c \x00\x00\x00\x00\x00\x01\x00\x03|9\ -\x00\x00\x01y+\x8f\x93\xd5\ -\x00\x00\x07z\x00\x00\x00\x00\x00\x01\x00\x01\x9dG\ -\x00\x00\x01y+\x8f\x93\xdf\ -\x00\x00\x08x\x00\x00\x00\x00\x00\x01\x00\x01\xc5\xe8\ -\x00\x00\x01x\xc7F\xf6*\ -\x00\x00\x0f\x9c\x00\x00\x00\x00\x00\x01\x00\x04\x8ei\ -\x00\x00\x01y+\x8f\x94\x12\ -\x00\x00\x08T\x00\x00\x00\x00\x00\x01\x00\x01\xb0@\ -\x00\x00\x01x\xc7F\xf61\ -\x00\x00\x0cb\x00\x00\x00\x00\x00\x01\x00\x03\x88{\ -\x00\x00\x01y+\x8f\x93\xda\ -\x00\x00\x07B\x00\x00\x00\x00\x00\x01\x00\x01\x93\xaf\ -\x00\x00\x01y+\x8f\x94\x11\ -\x00\x00\x08\xf8\x00\x00\x00\x00\x00\x01\x00\x02i,\ -\x00\x00\x01y+\x8f\x93\xce\ -\x00\x00\x0a\xc0\x00\x00\x00\x00\x00\x01\x00\x03U\xfe\ -\x00\x00\x01y+\x8f\x93\xd8\ -\x00\x00\x09\xc8\x00\x01\x00\x00\x00\x01\x00\x03\x19<\ -\x00\x00\x01x\xc7F\xf5\xf8\ -\x00\x00\x06\x92\x00\x00\x00\x00\x00\x01\x00\x01\x84\x05\ -\x00\x00\x01y+\x8f\x93\xcc\ -\x00\x00\x0a\xf8\x00\x00\x00\x00\x00\x01\x00\x03Y\xb0\ -\x00\x00\x01y+\x8f\x93\xdb\ -\x00\x00\x0d\x98\x00\x00\x00\x00\x00\x01\x00\x03\xff8\ -\x00\x00\x01y+\x8f\x93\xdc\ -\x00\x00\x0c<\x00\x00\x00\x00\x00\x01\x00\x03\x83Z\ -\x00\x00\x01y+\x8f\x93\xde\ -\x00\x00\x0bZ\x00\x00\x00\x00\x00\x01\x00\x03^A\ -\x00\x00\x01y+\x8f\x93\xd8\ -\x00\x00\x0a\x94\x00\x00\x00\x00\x00\x01\x00\x03@.\ -\x00\x00\x01x\xc7F\xf60\ -\x00\x00\x0f\x00\x00\x00\x00\x00\x00\x01\x00\x04g\xe4\ -\x00\x00\x01y+\x8f\x94\x13\ -\x00\x00\x0fN\x00\x00\x00\x00\x00\x01\x00\x04\x86$\ -\x00\x00\x01y+\x8f\x93\xe2\ -\x00\x00\x0dD\x00\x00\x00\x00\x00\x01\x00\x03\x9c*\ -\x00\x00\x01x\xc7F\xf6\x18\ -\x00\x00\x0a0\x00\x00\x00\x00\x00\x01\x00\x03;\xce\ -\x00\x00\x01y+\x8f\x93\xd9\ -\x00\x00\x060\x00\x00\x00\x00\x00\x01\x00\x01!\xdb\ -\x00\x00\x01x\xc7F\xf6\x1b\ -\x00\x00\x0b\xe2\x00\x00\x00\x00\x00\x01\x00\x03w\xc6\ -\x00\x00\x01y+\x8f\x93\xd7\ -\x00\x00\x06\xf0\x00\x00\x00\x00\x00\x01\x00\x01\x8b\xd2\ -\x00\x00\x01y+\x8f\x93\xfd\ -\x00\x00\x07\xb8\x00\x00\x00\x00\x00\x01\x00\x01\xa2j\ -\x00\x00\x01y+\x8f\x94\x0f\ -\x00\x00\x0f\xce\x00\x00\x00\x00\x00\x01\x00\x04\x98\x10\ -\x00\x00\x01y+\x8f\x93\xcb\ -\x00\x00\x0e\xd0\x00\x01\x00\x00\x00\x01\x00\x046\xb1\ -\x00\x00\x01x\xc7F\xf5\xf3\ -\x00\x00\x06^\x00\x00\x00\x00\x00\x01\x00\x01\x81c\ -\x00\x00\x01y+\x8f\x94\x06\ -\x00\x00\x09\xb4\x00\x00\x00\x00\x00\x01\x00\x03\x13\xbb\ -\x00\x00\x01y+\x8f\x93\xd0\ -\x00\x00\x0f\xf8\x00\x00\x00\x00\x00\x01\x00\x04\x9a\xca\ -\x00\x00\x01x\xc7F\xf5\xf0\ -\x00\x00\x09\x86\x00\x00\x00\x00\x00\x01\x00\x02\x93\xaf\ -\x00\x00\x01x\xc7F\xf6$\ -\x00\x00\x0d\xe4\x00\x01\x00\x00\x00\x01\x00\x04\x02\xc3\ -\x00\x00\x01x\xc7F\xf6\x04\ -\x00\x00\x0c\xec\x00\x00\x00\x00\x00\x01\x00\x03\x91\xbf\ -\x00\x00\x01y+\x8f\x94\x0e\ -\x00\x00\x0b\xaa\x00\x00\x00\x00\x00\x01\x00\x03b\xb8\ -\x00\x00\x01x\xc7F\xf6L\ -\x00\x00\x06\xb8\x00\x00\x00\x00\x00\x01\x00\x01\x86\xad\ -\x00\x00\x01y+\x8f\x93\xe0\ -\x00\x00\x0c\xb0\x00\x00\x00\x00\x00\x01\x00\x03\x8d\x1f\ -\x00\x00\x01y+\x8f\x93\xdd\ -\x00\x00\x07\xea\x00\x00\x00\x00\x00\x01\x00\x01\xa5\x0c\ -\x00\x00\x01y+\x8f\x93\xe1\ -\x00\x00\x08\xb4\x00\x00\x00\x00\x00\x01\x00\x02O\xe4\ -\x00\x00\x01x\xc7F\xf6D\ -\x00\x00\x11\x06\x00\x00\x00\x00\x00\x01\x00\x05H\x0b\ -\x00\x00\x01y+\x8f\x93\xd4\ -\x00\x00\x11\x88\x00\x00\x00\x00\x00\x01\x00\x05r\xc6\ -\x00\x00\x01y+\x8f\x93\xd1\ -\x00\x00\x11b\x00\x00\x00\x00\x00\x01\x00\x05`\x84\ -\x00\x00\x01y+\x8f\x93\xcf\ -\x00\x00\x11\xa0\x00\x00\x00\x00\x00\x01\x00\x05v\xe1\ -\x00\x00\x01y+\x8f\x93\xd2\ -\x00\x00\x10\x94\x00\x00\x00\x00\x00\x01\x00\x05A\x0f\ -\x00\x00\x01x\xc7F\xf8/\ -\x00\x00\x106\x00\x00\x00\x00\x00\x01\x00\x05(\xda\ -\x00\x00\x01x\xc7F\xf8,\ -\x00\x00\x11 \x00\x00\x00\x00\x00\x01\x00\x05N\x15\ -\x00\x00\x01x\xc7F\xf83\ -\x00\x00\x10\xdc\x00\x00\x00\x00\x00\x01\x00\x05G=\ -\x00\x00\x01x\xc7F\xf8(\ -\x00\x00\x10`\x00\x00\x00\x00\x00\x01\x00\x05)g\ -\x00\x00\x01y+\x8f\x93\xd3\ -\x00\x00\x11J\x00\x00\x00\x00\x00\x01\x00\x05N\xb9\ -\x00\x00\x01y+\x8f\x93\xca\ -\x00\x00\x10z\x00\x00\x00\x00\x00\x01\x00\x057Q\ -\x00\x00\x01y+\x8f\x93\xc9\ -\x00\x00\x10\xbe\x00\x00\x00\x00\x00\x01\x00\x05A\xbe\ -\x00\x00\x01y+\x8f\x93\xe3\ -" - -def qInitResources(): - QtCore.qRegisterResourceData(0x03, qt_resource_struct, qt_resource_name, qt_resource_data) - -def qCleanupResources(): - QtCore.qUnregisterResourceData(0x03, qt_resource_struct, qt_resource_name, qt_resource_data) - -qInitResources() +""" +Copyright (c) Contributors to the Open 3D Engine Project. +For complete copyright and license terms please see the LICENSE at the root of this distribution. +SPDX-License-Identifier: Apache-2.0 OR MIT +""" + +from PySide2 import QtCore + +qt_resource_data = b"\ +\x00\x00\x01\x84\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x01KIDATx\xdac`\x18\x05\xa3`\ +\x14\x0c&\x10\x91\x90\xe3\x18\x99\x98{\x08\x88\xf7\x810\ +\x90\xbf\x1f\xca\xd6\xa6\x8b\x03\x80\x165\x01-\xfd\x0f\xc3\ +@>\x8c\x1dK\xaf\x10h\x00Y\x0a\xc3@\xfe_(\ +{5\x10\x9b\x01\xf9V@\x1a\x8e\x89\xe4[\x03\xb1>\ +\xa5\x0e\x80\x87\x06\x05|\xf5\x81v\x80\x1e1i\xa0\x01\ +\x1a\xe7\x7f\xa1\x96\xff\x83\xf2o\x00\xf1\x19 \xff\x0c\x88\ +\x86a\x12\xf8\x97\x81X\x85\x9c\x10\x00\xd1\x13\xe8\x99\x0d\ +\xd1\x1d\xf0\x05Hs\x00\xb1\x1b\x10_\x07\xf2o\x02\xe9\ +\x1b0\x0c\x0a\x192\xf8\xb7\x80\xf80\x10\xb3\x12\xe3\x80\ +\x1ah\xd4<\xa4B\x1a@\xe6\xcf%\x94\x06@q\xff\ +\x1d\xea\xa8tX\xba\x80\xa6\x89\xbfhi\x84T>\xc8\ +,)b\xa2\xa0\x0c\xea\xa8gxr\x05\xa9|\xdc\xbe\ +Gs\xc0+ f\x06\xf23)\xb4\x10\x1b_\x94\x18\ +\x07\xe4A\xf9\xaf\xa9\xec\x80i\x84\xca\x81F\xa0\xa2W\ +@\xcc\x04\xc4i0C(\x8c\xf3\xbf\xd04\xf5\x03\xc8\ +\x97!\x94\x0d\xdb\x81\x8ar\xa0\x8ey\x8a%\x15S\x12\ +\x02\xd3\x88)\x07R\xa0\x96gQ1\xceA\xec_@\ +,A\x8c\x03\x98\x81\x0a9\xa1\x89\x90\x9a\xf9~\x1a)\ +\xa5\xa1\x0a\x10o\x07\xe2\xcd@\x8d\x9b\x81\xf4&\x18&\ +\x93\xbf\x14\x88yF\x9b{\xa3`\x14\x0cZ\x00\x00\xef\ +\xad\x00\xe1,\x84\xf5\xf4\x00\x00\x00\x00IEND\xae\ +B`\x82\ +\x00\x00\x02h\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x02/IDATx\xda\xed\x96\xcb+\xc4Q\ +\x14\xc7\xe7\xe11\xcd\x90\xc9L\x1a\x22e\xe4\x91YL\ +\x13\x8a\xa2lllX\xa1\x94WQ\xc6\xb3\xd8x\xd4\ +\x10\x0bE\x8d\x14\xfe\x03\x0b\x89\xb2\x96\xc4\xc2B\xf2(\ +\x22\x0by,lH\x16\x1e5\x8d\xef\xad\xab\x8e\x99{\ +~\xbfYZ\xfcn};\xbf\xee\xe7\x9e\xf3;\xfd\xee\ +\xb9\xe7wM\xa6\xff0Z;\x07J\xa0\xf5\x96\x8e\xfe\ +a\x8d5\xed\xe0\x1b\xb0\x95\x0c\xb7\x83\x87aW\xc4\xb3\ +j\x0dx\x00l\x13\xea\x8au>\x82\xa2X\x10\x85\xf5\ ++\x82g\x13~\xcf$0.\xb9P\x88I\xe0Jr\ +!/u\xde!/(P\x04\xcf\x80\x22\x92\x9f0\x09\ +t\x93\x04\x82L\x02\x07\x92G \x0f\x056\xa8\x07\x93\ +\x15\xdc\x16\x80\x8bm\x0a\xc2:5\xb6\xa9\x09\xbcY\x83\ +\xa7\x83\x8b\x18>\x931\x8c\xa1(\x90L\x14\x87Uk\ +\x0d\xb8[\x87\xdb\x11'M\xe7=.\xc8\x1c;9)\ +\x8f\xe1\x13\xacC\xe1d\x85\xce\xe51[e\x02W\x83\ +G\xe41\xaba\x12\x5c\x94\xfc\x02\xb2Q\xe7k\xd2\x07\ +j\x15\xc1\xbd\x84\xbf0\x09\xcc\x93>\x10Vp3\xf8\ +\x03iDe43\xd1f_1y\xc8m\x03\xe6\xb7\ +\xc0\xdf`\xc7\x18^\x0c~'^\x02\x952I\x0e\x81\ +\xbdC\xdb\x90%\x16Z\xf4\xeaD\xafF\x12\xac5\xab\ +q\xe2\x8c\xa1*\x8c\x5ch\x19E\xd6\xa6\xb1\xa6\x01\x5c\ +\x5c6\xb8\x0aO\x02\x17\xfdd\x1aJf\x8aX\x1c\xe7\ +5\xa81\xd6y\x9f\x9cs\x9f\x22x\x16\xe1\xb7L\x02\ +#\xa4\x0fL0\x09\x9c\x91>\x90O\xc1\xee\xaf3l\ +\x91\xc2\xd1E\xf8%\x13|\xf07Ih\x94I\xf2X\ +r\xa1\xbc?\xff\x01\xd1\x8e1Y\xaf\xb1\x05U\xe0!\ +\xd8\x1c\x8d>\xd1\xcb\xdd\x86$\xf7\x80\xcfp\xad\xda\x18\ +F/p\xc6\xfd\xa1\xe2\x8b(3\x81\x0b\x89C\xef\xe2\ +\xa3\x9a\xec\x83>\x10\xe0\x146\x85q\x14G\xf5\x0bv\ +\x96\xe1~\xf0gq_\x80\x02L\x82S`\x22\xc6\xde\ +\x9ff\x05pC\xcey\x9d\xc2\xb1\x90\xf0W&\xf8\x02\ +\xe9\x03K\x0an\x01\x7f$}\xa0\x8cf\x1f\x84>e\ +\xa7J\xd5\xf9\x02s\x09|\x81r&I\xd1\xaa\xbf\xe3\ +\xbe\x00\xb9\x94\xea\xd5\x80\xde\xa5\xd4\x91@\x0d\xb8\xffU\ +\xf1\xff\x00\xf0W\x81\xb2\xb1-\xb20\x00\x00\x00\x00I\ +END\xaeB`\x82\ +\x00\x00\xa1\xcb\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3>a\xcb\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0b\x22\x00\x00\x0b\x22\x01\x09\xe1\ +O\xa2\x00\x00\xa1`IDATx^]\xfdg{\ +cI\xb2\xa5\x89\xf2\x0fMF\x04\xb5\x04@\x90\x00\x08\ +j\xad\xb5\xd6Zk\x15\xd4:\x14\x19Z\xeb\x88\x8c\x94\ +\x91:\xab\xb2\xeaTU\xd7Q=\xdd}\xfav\xf7\xcc\ +<\xf7\xfe\x13\xbb\xef\xf2MFe\xcf\x07{\x00\x92 \ +\xf6\xden\xcb\xcc\x96\xb9\x9b\x9b\xc7\x84\xc7\x1f[\x04\xc9\ +Ar'\x9eZ\xf1\xec+\xabX\xfe`5\xeb\xdfX\ +\xc3\xd6\xf7\xd6\xb4\xf3\xa35\xec|o5\x1b_Y\xc5\ +\xea;+Y|n\x05\xb3\x0f-:qf\xe1\xa1c\ +\xcb\xea\xdd\xb2@\xfb\x92\xa57MYZ\xfd\x88\xa5\xd6\ +\x0dyR?li\x0dc\x96\xd68\x8eLx\xaf\xfc\ +\x9cZ7b)\xb5\xc3\x96\x5c3dI\xd5\xc3\xc8\xa8\ +%\xd5LXr\xdd\x8c\xa54,Xj\xd3\x8a\xa5\xb7\ +\xae\x9b\xafs\xdb\x02\xbd\x07\x16\x1c\xe0\x1a\x83\xd7,{\ +Hr\x82\x1c\xf2\xbb=\xcb\xec\xdf\xb6\xcc\xbe\x0dd\x1d\ +Y\xb3\xcc\xde\x15\xcb\xec^\xb2\xcc\xae\x05\xf3\xb7\xcdX\ +F\xd3\xa8\xa5\xd6\xf6ZRE\xab\xc5\x17\xd7ZlA\ +\xa5]\xce\xaf\xb0K\x055v\xa5\xb8\xd5\x12\xaa\x87,\ +\xade\xd1\xb2\x07\x0e\xadp\xe6\xa1U\xae\xbc\xb3\xba\xcd\ +o\xac~\xeb;\xabZ\xfb\xc2\x0a\xe7\x9e3.w,\ +\x93k\xfb\xfa\x0e\xcc\xd7\xb3o\xfen^\xbb\x90\xce]\ +^w-\xd8\x7f\xc8\xb8\xdd\xb4\xc2\xf9\xfbV\xb6\xfa\xcc\ +*\xd6_Y\xf9\xfaK+\xe5}\xf1\xf2c+Z~\ +\x80\xdc\xb3\xfc\xc5\xdb\x96;\x7fj\xd1\xb93\xe4\x8e\xe5\ +-<\xb0\xd2\xf5\x17V\xbb\xf3\xceZ\x0e\xbe\xb0\xee\xe3\ +\xaf\xad\xff\xda\xb76p\xed\xa3\x0d\xde\xf8\xd1F\xef\xfc\ +\xc9&\x1e\xff\xb3M\xbd\xf8\xaf6\xf7\xfa\xffc\xf3\xaf\ +\xff\x87-\xbc\xf9\x1f\xb6\xf2\xf6\x7f\xd9*\xb2\xfc\xfa\x7f\ +\xda\xc2\x8b\xffn\x93\x8f\xfe\xdd\xfaO\xffj]\xd7\xfe\ +h\xedG\xbf:\xe9:\xf9\xa3\xf5\xdd\xfc\x8b\x0d\xdf\xfe\ +\xbb\x8d\xdf\xffw\x9b~\xfc_m\xe6\xc9\x7f\xd8\xe4\xc3\ +\xffb\xa3w\xff\xcdzo\xfc\xcd\x9a\xf7\xff`5\x9b\ +\xdfs\xcf_[Ld\xec\xaeE\xc6\xeeYt\xfc\xbe\ +\xe5M>\xb2\xe2\xb9\x17\x0c\xc6{\xab\xbd\xfa\xb552\ +\x18\xcd\xbb?X\xf3\xcewV\xbf\xf9\x95U\xaf\xbd\xb3\ +\xf2\xa5\x17V2\xf7\xc8\x0a&y\xa8\x91k\x16\xe9\xdf\ +\xb5\xec\xee5\x0b\xb6\xcf[\xa0e\xca\xfc\xcd\xe3\xe6k\ +\x92L\x98\xafy\xd22.\x84\x9f\xd3\x01Az=\xa0\ +\xa8\x93r\xc6\x00\x82\x14?e\xc9\xf5s\x96\xd2\xb8h\ +\xa9\xcd\xab\x96\xd6v\xd52:\xb6\x18l\x94\xdcwd\ +A\xa7\xfc\xeb\x96=\x8c\x00\x80\xacA~7\xb0\xcf\xdf\ +\x04\x90\x0d\xf3\xf7\xac\xf1\xd9\x15d\xc9\xfc\x9d(\xbfc\ +\xce|\xadS\x5c\x0b0\xd6\xf6YRe\xbb%\x944\ +Z\x5cQ\xad])D\x8a\x1a-\xb6\xb4\xd3\x12kF\ +\x1d\x00\x82\xbd{\x967~f\xa5sO\xadr\xe9\x8d\ +U\xf1\xec\xe5\x0b\xaf\xacp\x1a\x90\x8f\x9d9\xe0I\xd1\ +\x99\xbd\xe7\xd2sd\x81\xee}\x0b\x00\x88`\xff\x91\x85\ +G\xaf[\xde\xd4\x19\x80\xb9o\xc5\x0b\x8c\xdf\x22\x8a_\ +xh\x85\x0b\xf7\x91\xbbV\xb8x\xd7\xf2\xe6Q\xfc\xec\ +-\xcb\x99\xb9e\x91\xe9S\xcb\x99\xbem\x05\x80\xa6\x14\ +\x90T\xaf=\xb3\xc6\x8d\x17\xd6\xba\xf5\xca\xdav\xdeX\ +\xc7\xfe\x07\xeb\xb9\xfe\xd1\x06n\xffj\xc3\x0f\xfebc\ +\x8f\xfe\xeed\xea\xc9?\xdb\xc2\xf3\x7f\xb5\x85g\xffb\ +s\x8f\xff\x93M?\xf8'\x1b\xbc\xf5\xb3\xb5\xee\x7fe\ +\x8d\xdb\x1f\x90/\xd0\xd5\xd7\xd6~\xf8\xbd\xf5\xdc\xf8\xd5\ +\x06\xce\xfe\xc9F\xee\xfd'\x1b\x7f\xf8o\x00\xe5?\xdb\ +\xf8\x83\x7f\xb3\xa1;\x7f\xb7\xee\xeb\x7f\xb6\xa6\xbd\x1f\xac\ +\xea\xea\x97\x5c\xff\x1d\x00\x18\xbd\x09\x8aO\xb1\xfe;V\ +0\x0d2\x17\x9ec\x01\xb2\x86/\xadi\xfb[k\xd9\ +\xfd\x0e\xf9\x160|iu\xeb\xef\x18\xa0\x17V6\xff\ +\xc8\x8a\xa6n[\xfe\xd8u\xcb\x1d:\xb0\x9c\xbeM\x0b\ +w\xafZ6\x0a\xc8F\x01Y\xed\xb3\x16l\x9b\xb5L\ +$\xd0:k\xfe\x96i\x80\x018\xf0\x12\x12_\xe3\x94\ +e4\xce\xa0\xa4yKk\x92\xe2W,\x0d\xabOo\ +\xdf\xb4\x8c\xce\x1d\xf3i\x805\xd8\xfd'\x0e\x00Y\x00\ + \x0bEd\x0d\xea\xe7c\x00p\xc0\xdfv\xf9\x0c@\ +\xe9\xb9\x8a\xf2W\xb1\xca%\xf3u,\x98O\xd6\xdf\x8c\ +\xc7i\x18\xb6\x94\x1a\x01\xa0\xc3\x12\xcaZ,\xbe\xb4\xd9\ +\xe2Jx-\xeb\xb4\x84\xaa\x01@7\x89\xa7Y\xb6`\ +\xcf\x8eE\x86\xafY>\xcf_4\xfd\xc8Jf\x9eX\ +\xd1\xe4\x03\xcbC\xf9\xfa\xbdW>\x7f\xd7\xaa\x16\xefY\xcd\xca\ +C\xab_\x7f\x8a\xc1\xbd\xb6\xb6\xc3\x0f\xd6\x81W\xe8\xbe\ +\xf1\xbd\x93\xbe\x9b\xdf\xdb\xe8\xd9\x8f6r\xfa\x1d^\xe2\ +k\xeb;\xfe`\xad\xdb/\xadj\xf9\xa1U,=@\ +/\x8f1\xda\x97\xd6\xb4\xfb\xde\xda\x8e\xbe\xb1\xae\xeb?\ +X\xef)@\xb8\xfd\x9b\x0d\xdc\xf9\xb3\xf5\x9d\xfe\x91\xdf\ +\xfd\x8c\xc7\xf9\x887\x7foe\xcb/\xf0\x5c\x8f-&\ +:\x0e\x82'o\xa2\xfc\xdbX\xff}+_~\x8a\xfb\ +\x7f\x8d\xc5\xbf\xf7P\xb5\xf3\xa55\xf3\xda\xc8?\xd5\xf1\ +\xfb\xea\x95\xe7V\x01\xd2Kf\xeeX\xe1\xc4M\xcb\x1f\ +9\xb6\xbc\xc1=\x8b\x0elY\xb4\xef*`X\xb3H\ +\xef*\x80X\x01\x10K\x96\x85R\x82ms\x16\x04\x08\ +\x9e\xcc\xf33\x96\xd7\xb6j\x99\xed(\x0fk\xf7u\xa0\ +\xf4\xae=\x14\x7f\x80B\xb1\xb0>\x06\xb9\x1f\xcb\x1b\x90\ +\xd2\xaf;\x10\x04\x9d\xf2/\xe4\x08\xd7\x8c\x12\x08\x05\x01\ +<\x81\xbfg\x83\xff\x07\x04\xed\x8b\x96\xd1\x0a\xb0\xf06\ +\x0aA\xc9\xb5\xfd\x96T\xd5\x0d\x08\xba\x10^\xab\xfa\xf1\ +:#\x80\x03\x00\xb6.\xe21\xd6Q\xe8\x0e\xa1\x0cW\ +>\x02\x98GO-o\xf4\xccr\x87Q\x10\xd7\x09\xf7\ +\x1fXv\xdf\xaee\xf5\xe0\xeee\xf1(>\xc8\xbdI\ +\xe4\x9d2\x09\x0d\x99x\x90L\xbeC\x12\xec\xc5\x1b\xe2\ +\x9dB\xc3\x87x\xd5#\xcb\x99<\xb1\xdc\x99\xeb\x16E\ +\x22\xd37,\xb12\xc0V\xbd\ +\x06\x88\xb6_X\xe3\xde[k9\xfc\xdcZ\x8f\xbe@\ +\xd0\xe1\xfe\xe7\xd6\xb0\xfd\xd6\xaa\x09=eK\x8f\xf0X\ +w-\x1f\xf0\xc5\xe4q\xd1\xfc\x99\x9bV\x04ZKp\ +Y\xe5 \xaaz\xed\x89\xd5\xae?C\xe1\xcf\x91\x97V\ +\xb7\xfa\xd2jAL\xf5\xd23\xab\x5cxles\x0f\ +\xacdZ\x00\xb8e\x05\xa3\xdc\xc4\xc8\xa1\xe5\x0fs#\ +\xc3\xbb\x967\xbc\x83W\xd8\xb2\x9c\xfe\x0d\x0b\xf7\xaeY\ +\xa8k\x19\xaf\x80g D\x84x\x0dw\xaeX\xa4{\ +\x03\x90\xec\x12>\x0e-\xa4\x18?p\x822O,\x80\ +\xf8Q|\x00q\x00\x90\x07\xe8g\xc0q\xb5\x99\xb2>\ +^\xb3\x1c'@\xc4?\x18\xbcL\x06<\xd0\xbb\x0d\x00\ +\xd6-\x03`\xa5\xb7\xccX*\xa1&E\x00\xa8\x1b\x04\ +\x04\x03\x96\xc2kj=._\xde\xa7m\xc1\x02\x9d\x84\ +\xac\xdeM\x94\xb5k\xa1\xa1}\x0b\x0f\x1f G(\xe4\ +\xc4B\x5c/\x9bke\xf7\xee[6\x8a\xcfF\xb1\xd9\ +(9\xc4\xefB\xdc_h\x10%\x02J\xdds\x10\x00\ +\x04\xba\x01o\x07a\x0b@K\x1c\xa8\xf0\x88!\xc6!\ +2q`Q\x14\xe3\x000u\xc3B\xe37\x9c'\x13\ +x\x5c\x18\xc1\xdbevm\x01\xae-\xae\xb9ea\x8c\ +(\x87\xb1\xcb\x1d\xde\x02\x14\xdb(v\xd7\x0a&\xf6\x90\ +}+\x9e>D\xe1'V1{he\xd3\xbbV<\ +\xb1i\xd1!\xf1\x1e\x7f\xe4\x00!\x9e\x8e\xec\xf2\x00;\x963@X\ +\xe8]w\x9e \xdc\xc5\xcd!9\xbc\xcf\xed\xbdj\xb9\ +\xb8\xef\x5c\x94\x97\x8b5Dq\x87\xe1\xb1\x9b\x96\x85\x0b\ +\xcd\xc4\x0a\x03X\xbb\x1f\xc5\xfb5HX\x9cbm\x00\ +>\x10\xe8\xd9s\x03\xee\xb9\x5c\x06\x94\xff\xd1\xff\x85\x00\ +`pP\x9ec\xcb2\xda\x09%-s\x00`\x12B\ +\x09\xc7\x80\x94\xa64\xc07D@\x09C\x19x\x88@\ +\xf7:\x83\xb5\x85\xe2\xf7,2\x8a\x95\x8e\x1fC\xf6\xf8\ +\xceQ\x11L)U\xca\xe1z\x90P\x7f\xc7&\xaf\x9b\ +\x16D\xc9\x02E\x88P\x14\x199\xe5\xfa\xa7\x8e\x97\xe8\ +~\xfc]\x9b\x96\xde\xb6L\x18\x9b\xb7\x94\xe6YB\xd9\ +\x19\xf7\xd1M\xc6h\x9b\xe7\xdb\ +a\x8cw!\xed{\x84\xa8}\xe4\xc0r'\x8f,:\ +y\x8c\x9cXL\xc1\x0cDe\xd6\x93\x22\x85\x81\xa9[\ +V\x02ZK&\xafY1R4y\x1d\x81\xe9\xe2\xee\ +\x0b\xe4\xf2Aq\x9eb?\x03\x16E\xf19\x83\xfb\x16\ +\x19\xdc\xe5\x15\xc4\x0fn#B2\x16@8\xc8\xeeY\ +\xb5\x10J\x8f 9\xbc\xcf\x05\x10\xf9\x03 \x1b\x8b\xcb\ +\xe7\xff\xf3\xf8\xbe\x5c\xae\x17\x01\x84\xa1\x09\x06\x94\xdf\x05\ +\xb0\xec\x00V\x1e`\xc0\xfdX\xa1\xc8\xa0\xbfk\x07\x81\ +\xf5c\x91\x22\x81\x22^\x11\xbcO\x0e\xe4+\x02\x10\xb3\ +\x01\x81<\x81\xbf\x1be8\x10\xcc\xa3\x10\xb2\x8a\xa6i\ +^\x91\x16\x14\xd36\x8f\xa5.;\x00\x04\xfb\xb9\xbf!\ +\x5c\xff(\xd6?\x8er\xc6\xb1\xf81<\x8d\xae\xad\xeb\ +b\x9d.,\xc1I\x1c\x08\xb8v\x90{\x91\xe2B\xc3\ +x\x80\xa1\x1b\x84\xa7#>\xb7\xcd\xf5V\xb9\xc6\x9c%\ +\x13V\x92\x1a&-\xb9i\xd2R[QL\x07\xdc\xa7\ +{\x01O\xb6\x0a@7p\xfbx\x9ba\x80\x06\x00\xc2\ +|G\x18/\x12\x22\x94\xb8\xf0\xd2\xb5A&\xb5l~\ +B\xa4\xafe\xc2e0\xe9MCp$\xa4i\xd8\xd2\ +\x9bG\x10~\xd7\x0c\x81n!\x93j\x01\xd4N\xf43\ +\xc4\xba\x15\x92\x0d\xf1\xcdh\x9b\xe6\xbeg\xe0Cs\x5c\ +{\x1e\xa3\xc0\xdb\xe1\x192\x07\x00\xe3\xe0\xba\x85F\xb6\ +\x00\xc5>`8f\xdc\xd1#\x844\xa6d\xe99\xee\ +\x82\xb4E\xc4N`\x90\x92\xb1\x8c\x5c,$g\x00\xa5\ +\x22a$$w\x89\x84%X\xb0'\xfc\x9e\x18\x1c\x92\ +E\xe1\xf6\xb2Qz\x16J\xce\x82\x99\x07Qz\x10\xab\ +\xcf&\x04\xc8\x0b8\x00\xf0\xf7<\xbe+\x0f\xb7\x9b;\ +\xc25\x88{\xd1\x09b-7\x94=\x86\x8b\x1f\xc1\xda\ +\xf9[\x00\x92\x17 \xfe\x06 _\x01\xdc\xaf\xdc\xac\x06\ +\xdb\x01\x00R&\xab\x8f@\xa6\xc4\xa6s \x5ca\xee\ +9\x8b\xc1\x0dpO>\xc2Kz\x87\xb2\x09\xac\xb2u\ +\xc9IZ\x9b'\x19\x00\xc0\xd7\xb5\x827A)\xfd\xdc\ +\xa7S\x0c\xeewd\x87Wb\xbcx\x85\xc2\x8d<\x0f\ +|$\x00/\xc9D\x82\xe7\xde\xc7\x0b?\xe2&\xf2N\ +\x5c\x0b\xcbM\x83K\xa44\xcd8\x00$\x03\x80\x14R\ +\xdeT8H\x1aDT\x8a\xf1\xb5\xcf\x00\xdeE\xee\x1d\ +\x83\xe8\xc7\xeb\x10\x02r\xe0\x18\xd1\x91[\xb8p\x80 \ +\x22\xd9\xb3i\x99\x1d\x90X\xb2\xa8t\xc8k*\xdc%\ +\xa5\xa6\xc7\x92\xab\xbbH\x97\xbb\x09c\xbc\xaf\xebC\xfa\ +!\xaf\x10\xd8\x06\xc9 \xd7\xe2\xb3\x8d\x0amx8]\ +\x13\xf0\xe9\xbai\x80(\x8dk\xa7\xb5O[z'@\ +\xe8\xc5\xb3\x0c\xe0\x8dF\xe1j\x18t\xfe\xccm+\x9a\ +\x7fH\xc6\xf2\xd4b*\xaf~n\xe5\xabo\x88\xff\xcf\ + \x82\xf7\xb1\xec\x1b(\x1dW\x0b\xc3\x0ev\xc95\xad\ +\xe3^H\xb5\x10\xc5\xceL\x5cU\x90\xd7\xac.\x09\x83\ +\xe8\x04\x85#\x99\x1a\x5c\xdcX@.\x90x\x1fh\xc7\ +\x9dA\x04\x9d\x17\xe8Y\xb7\x1c\xe2n\x94\xfc=\x0a\x88\ +\x22\x10\xb80 \x0b\x112\xb2P@p\x18\x05\x0f\x91\ +\xda\xe1I\x02\x90\xcaL<\x8b\xac:\xb3_ \xd8\x05\ +\x00\x02\x011S\x8c\x9c\xf0\x91=v\x0d\xaf\xc1\x00N\ +*\xb6B\x16\x01\x94\xf3\x02\xf0\x81\x0cy\x82N\x01\xe1\ +*\x16\xba\xce@\xac\x01\x00<\x03 H\x87'dp\ +_J\x19\x03\xa4\x8e\x01\xcd\x1fh\x1e\x01\x00\x07\x01P\ +\x96\x14\x22\x1e\x00\x07\x099\xc1\xeae\xf9(_\xe1G\ + \xd0=\xf8\xbb\x15r\xf8^R\xc9\xd4&\xd2X@\ + I\xd5|\x88\x14\xa1\xb0\x83b\x94\x02\xfb\xb0\xec\x00\ +\xdcG|\x22\xc2wDG\xb0\xbe\xd1[\x18\x01c\x0d\ +\xe8\xb2\x19\x97L\xc6\xcd\x87\xe7HG\xa1\x9aGI\x11\ +w\xa9A\xe1\xff/IrBv\x03H\xc4q\xc4u\ +R\x95Z7\xa0tB\x9f\xe6\x5c\x04\xc0T\xae\x9b\x06\ +!\xf6\xc2\x11\xe0#\xc2\ +\x00\xd6\xef\xc3\x12\x15\x16\x02()\xa0\xf9\x00\x88[\x90\ +0\x14$\x15\xd5\xe7\xfd|\xb7O\x84\x10o\x91\xc1\xfd\ +g\x10_3p\xe1\xe9m\xb2T\x00\xd0\xbc\x88\xcc\xe1\ +J\x19\x18\xc8\xa2\x14\xe3\xee\xb5\x83g\x121D\xa9\xd9\ +(7\x8c\x92#\x837 dX\xaa2\x02\x5c\xb6,\ +W$Qia\xa6\x00I\xec\xcf\xc0\xfd+\x95\x14\x08\ +\xd2\x9a\x17x%\xad\x15\x0f\x10\x08\xce'\xbf\xd2\x01\x83\ +\xafu\xce\x19N\x08\x8f\x19\xc5S\xe5\xc1w\xf2\xe0>\ +\xb9\x84\xd2\x1c\xee?\x84Qduc`\x18\x8dOJ\ +#e\xd6\xff\xa5\xa3P\x89\xfb\xae\xfaq\x801\x0a(\ +.&\xd1\x06\x01\xc2\x10\xdeA\x80\xe1\xef\x0d\x80\xa7i\ +\x96\xffE\xe0A\x19\x0ay\x18_\x00\xce\x95%oN\ +\x88-\x9c\xbf\x87\xb1C\xee\xb7\xde\x93\x0e~c\x9d\xc7\ +?ZL7\xf9b\xe3\xee\x97V\xbe\xf2\x12rp\x8f\ +\xd8\x08\x19S\xec\x85\xfc\x88\xd5\xa6\xc9\x85\xb6\xf0p\x90\ +\x9ct\xbe\xd8\x87\xf8y\xd0@+\xf1M\x22@\x00\x8c\ +\x00\xaf~~\xfe\xbd\xe8\xf7Y\xb8\xe3\x10n9\xdc\x03\ +?`\xe0\xc2H\x88\xf7A,4\xc0\xdf|\x9aE\x04\ +(\xe9\xdcp:\x8a\xc8\xc0\x8b\xf8\xb9i\x7f?\xe4\x08\ +O!\x00\xf8\x09\x07Np\xc3nVN\x82g\xf0c\ +\xb1~\x06\xd5\xafT\x10\x8f\xe5\xc3\xf2}R\x0c\xca\xd7\ +L\xa2f\xeb\xfc\x12\xcd-h\x8e\xa1m\x8d\xc1\x01\xcc\ +(,\x83g\xca\xe09|\xbc\xf7\x03\xf0L<]\x16\ +\xf7\x15\xe6{s\xb0\xd2\x1c\xb9j\xdc\xbdK\x07q\xf9\ +!\xae\x9f\xa5\x94O\x9e\xa8c\xc3}W\xba@\xc5\xf7\ +\xa5;Y!\x0e\xaf\xa0@\x0cE)\xa6\x9e\x9fW\x19\ +@\xb6\xb2\x1e\xdc\x7f\xee\xc8\x89\xe5+s\x9a\xba\xed\xd2\ +\xee|\xc2X.\x9e,B\xf8\x09\xf1\xbcAB\xa7<\ +\xa8\x9fp\xe0g\x5c\x9f\x89\xc7\x08:\x81x\ +t\x10&\x88\x93\xd9XV\xa8G\x96\x8f\xdbWJ\xc5\ +\xfb,\x00\x16\xe03RF\x1a\xc8Mm\xf4\x08[Z\ +\x1b\xe8\xd5\xa4\x0e\x83\xe1\xc3-K\xc9R\xb6\x0f\x05\xf8\ +\xb0|)?\x83\xef\xc8\xe0;2\xf8\xdet\x067\x83\ +P\x95\x81\x05+\xf6\xa7\xe3\x96\xd3\xdb5\x9b\x08(\x14\ +\xc3{4y\x83\xa7\xd0+\x1e$SdR\xd7&<\ +\x04\xf8\x5c&\xaf\x02c\x16^#\xa4\x18MF\x91C\ +\x88\xc9\x19\x22\x97'\x14\x86\x19\x8bl\xdd/\xd7\xf2\xfe\ +o\x03\x85\x5cE\x94v*\xfd\xe3\xbd#\x8bb\xf3\xfa\ +\xcc\x16!\x11OBV\x12\xc2#E\xf0bQ2\xa5\ +|M\x19\xa3\xf4\xa2\xd9{d[\xf7\x1c\xe9\xce\x87\x84\ +\xe5b\x999\xa4\xd1a\x88\xb4R\xc1`\xcf\x06\xf7,\ +\xc1C*\x0c+<\xa0L?^V\x80M\x85k\xa4\ +\xa0\xf4d\x94\xafi\xf4\xe4\x1aV.\ +k/D\xf1E\xf3\x0f\xdc$L\xf9\xf2#8\xd7}\ +\x97z\xe7C\xca\x22dE\xd9x2\xa5\xa7N\xe9<\ +o\x10\xd0k\xc63\x0b\x91N\x02x7\x97\xe6\x8ao\ +\xd4\x93m\xd4\x8c\x9d\xaf\xa3\x90\xee\xd6)L\xa0\x17\x9e\ +\xdf\x8f\xd1\xb9y\x05\x9e@\x00\x10@\x95e\x9c[\ +\xbb\x03\x80\xb2\x1d\x94\x0fA\x94\x08\x0c\x01\xcds\xa0\x17\ +\x19\xa4K9k\xc7\xddz\x86$\xa9\x8eq\x83\x03\xe8\ +o\x19\xa4\x93\x01t\x98\x05h\xc2\x84\x9c\xa8\xb2:X\ +\x7f\xc1\x9c@p\xd7\x8a\x97\xeeA\x00\x1f\x01\x82g\xd6\ +\xb6\xff\xcab\x0a\xa7oXt\x5c\xd3\x92\x9al\xc1\xda\ +x\xe8\x0c\x91>,S\x00\x90\xd2=!\x0e5+\xbe\ +\xad2\x10\x905,!\x93\xc1\xc8B\xe9!\x5ck\x18\ +\xeb\xce\xc1E\xe7\x10/\xf5z\xa1h)\xffB\x22<\ +\x98\x16\x8fr\xe4\x9ex\xe0l\x91@\xd8\xb1b\xa6\x08\ +Lj\xa3\xc8\x93\x08\x10y\xb4\xf8\x0610\x00\x00\xe4\ +\x0e3!wN\x18\x08Y\x83r~\x111'\x00\xc2\ +\x0f\x10}\xf2(\x88\xf8K&\x96\xa9\x19\xbb\x9c1\x1e\ +|\xf6\xb1[\xc4\xaaXye\x15\xab\x92\xd7(\xe0\x15\ +\x16\xf9\xc2\x8a\xe6\x9eY\xe1\xccc\x0c\xe0\x1e\x83u\x8b\ +AS\x06\xb0\x8b\xdb\xe5;]\x88\x02P\xcd\x00\xacE\ +\xe3\x22\xe3\xc0\xf2\xf1,R~\xd6 \x19\xc8\xf0)\xd7\ +\xb8\x8d\xe2\xef\xa2x\xb9uM\xb1\x22(>\x8f\xb8\xeb\ +\x04\x05\xe490\xdc\xc1\xd3b\x89N\xf9w\x00%\xe0\ +\x1c\x87_\x0c\xe8\xd9D\x88%\x1b.vg\xcb\x0b\x01\ +FI\x96V?\x19\x03)7\x95qJ\xaa\x9f\xb0D\ +\xc8_\x02\x5c \x01R\xa8\xf7JA\xf57e9~\ +B\xa2@\x14R(\x83hF\xf1\x02\xd1)\x84\xeb)\ +\x13\xc8\xe3\xb5p\xf6\xa6\x95\xcc\x9fZ\x8c\xdc\x8d\x06V\ +3i>\xc5}\xacR\x1e@\x0f/\xf4\xfb!6\x9e\ +\xe8\xe7s\xc5kb\x04+P\xb6\x10\x92\x95\xe1JE\ +\x98\xa2\xc3\x5cL2\x04\x8b>\x8f\x9f\x9e\x17\x80\x5c!\ +\x11\xae\x93\x03a\xcb\xe1\x01#\x90\x9e\x90\x18*n>\ +\x93\xf8\xe6Sz\xe6H\x19\xfc\xc2e\x10\xe4\xce\xca0\ +\x94f\xa2\xec,\xee/\x8b\xff\xd7\xf2sP\xaf\xdcw\ +\x16\xdf\xffI\x00\x98\x16v4\x1f\x9fE\x98\xc9\xe6~\ +\x22\x9a\xd7\x9f\xbc\xcf\x83>u$\xb7b\xed\xb5K\x7f\ +\xaa\xd6\xdf\xc2\x86\xdfZ\xd9\xca\x1b\xdc\xe2+\x97\x02\x17\ +\xce\xe2\x11&Q\xe6\xa8\x8ca\xdf}\x7fPs\x0f<\ +k\xa0\x13W\xdf\x85K\x86Gd\x91\x16z\x16\xcfg\ +\xc7Q.\xdf_\x80G)\x9c}\xe4\xbe\xa3\x00W/\ +eG\x89\xef\x11R\xd4\xc8\x04\x16>\xa6\x99FM`\ +\x1d\xe1uN\xf0>\xd7y=&\xe5\x16\xdf\xd0=\x03\ +\xdan<*\xbcGK\xdcY\x9a{!~\xe7\x11B\ +\xc4\x1d\xf24c\x8a'\x08IGx8\xf1\xb1d\x98\ +\xbf\x07\x82aK\xa8\x1d\xb1D\xb2\x84dx\x94f\x22\ +}\xf0\x00y\x0c\x01G\xcb\xe7!@\x1d\x22M\xce\x86\ +kd\x911\x051v-\xa9\x07\x09s1\x9a`\x91\ +\xc8\xb5z\x0cZ\x0b+\xc4=,@3TY\xfcN\ +\xf1:\x9b\xcf\xc8\xda\xb3dY\x9a\x16u\xb1\x93\xf8\xa5\ +T\x09\xf7\xa7\x85\x14OH\x9b\x86\xbc\x85\x94\x90\xe6\xd1\ +Q^\x88\xef\x09\xf3}.\x15\x84\xd8i\xe1\xc8M\x15\ +\xf3\xb0\xd9\x9a8\x12\x08\xf0\x04\x9a\x0d\x0b82\xe9\x89\ +G$5\xcf \x22\xc9}\xf0P\xfa\xce\x90<\x08\xe1\ +*\x0ca\xd3B\x8e\x13\x0d\x10\xa2\x1a\x85\x08\xf9\xb5\x96\ +r\x9dr\xb4\xc2\xb7\x00\x00\x96\x9f\x03\x02\xbc\xc0\xeaK\ +@\xf0\x1a\x00\xe0\x05\xf0\x08\xa5\xfc\xbeh\xfe\x11\x96\x8b\ +\xd2\xc65KG\x08\xe0\xbb\xb3\xf1`\xd9\xe7s\x02\xa1\ +\x01\x14>t\x06\xa0n\xf3\x19B\x06\xdf\x9bGH)\ +\x9c{\x845?\xc5\xb3<\xb7\xca\x15\x85\xd2\xc7.\xb6\ +\xe7\xcd\x9cZXs\x13\xc4\xf6\xe0\xa0\xe6.\xf0Z\x80\ +=\xd0\xb3\xee&\xcc\x22<\x7f\x98t\xd7{~1\x7f\ +<+\xa2e\xedL\xe5\xec\x9aY%~\x17A\xdeJ\ +\xf1&ex\x95\x92\x09\xc2\x85V'\x01\xa4O\xd9\x07\ +\xa19\x19\xf6\x9f\x88\xfbO$3Hl\x98\xb0d\xcd\ +|\x0a\x00\x18\xb0\x00\x90\x89\x17\xd0\xd2\xb9\xc2I\xa6x\ +\x04?\x07\x18?\x17N\xd1\xa9$&@\x8c\xd6<\xbb\ +\x1f\xcb\xb9\x10}0\x0bt\x88\x08i\xc2&\x8aE\xe4\ +2\xb8Q\xdc{\x14\x92\xa3\x19,O\xe9\x0c2V\x90\ +O,- \x85\xd4\x92j\xee(\xb1\x14\x00\x84\xb0J\ +)-\x0b4f#!,9\x8c\xcb\xcf\xe1\xc1s\x07\ +\xb7-wh\x9b\xef\xc2\x1b0\x18\x9e7\xe0\xb3\xb0\xdd\ +,\xa5c(=H|\xd7\x8a\xa1^\xf5\xb3H\xa5x\ +\x83f 5\xfd\xac\xfc9G,\x17\x89\xf0\xde\x13~\ +\x1e\xc1\x13\x11\xcf\xf3\xb8\x97\xfc)\x01\x80\x98\x8f\xa2J\ +\x16P\xce\x22\xb1w\x09Y~j\xc5\x8bOP\xfcc\ +\xac\x16\x85\x11\xb3\xa3.\x1d\x03DR>\x03\xa6\x95\xba\ +\xf0\xf9\xdc\x7ft\x0cw>\xf1\x00\x90\xc0\x1df\x1e\xb9\ +\x82\x98\xc2\xb9\x87V\xc6w\xd4\xc2\xaa[\xb6_#\xaf\ +\xacq\xe3\xa9U\xa9\x00dJ\xcb\xd7\x1aS\x19\x94\xb2\ +\x12\xc2\x08i\xa1K\xa3Q\x90\xe6J.\xc4M\x98u\ +\xe0\xf1:I\xa9{V\xf0<\x02\xc0\x0e$\xf2\xc4J\ +\x08\x1d\xe5\x10\xc7J\x00Z\xa1\x05\xb8I@\xaa\xb9\x88\ +ntD\x18N\x87\xf3\xb85\x08\x91hxT*\x1e\ +T\xd7\x12\x99\x8c`\xe9\xca>\xa2\xf0\x80\xc80\xe1\x0a\ +@\x8bC]L\xa8\x05\xf4\x1dH\x8c\x98\xabf\xb7T\ +y\x93\x89\x82\xb5\xcc\xaaU\xb6\x08.#*\x97\x85\x14\ +\xe0\xc2\x0a\xb5d\xc9\x97\x15\xe0\x8e\x0a\xc7\xb5^@^\ +\xc9\xe0\x951\xb8\xaa\x0f(e@\x0a\x88\x81Q<\x80\ +\x18\xb5f\xbdD\xf2\xbc\x89\x22ra,<\x8c\x8b\x13\ +\x00\xf2p{Z8\xca\x1f\xddw\x927B\xaa\xe4\xa6\ +\x9e\xc5\x0d\x142\xf08\xf2>\x22\x98\xf2\x00\xb0\xf0\x10\ +`\xd2\xdf\xa4|M#\xe7\x89\xe1\x8e!\xdc\x97\xd2(\ +1i'zh\xc7\xc0\x05\x02B\xc0\x04\xf1yR\xa1\ +\x00\xef\x84D\xf5:\xe5\xbd\x8a \xe5\xa0xY}H\ +\xee\x12pi\xba\xd6-\xd3*\x94\xe1E\x14\xdb\xf3\xa7\ +p\xed(\xbe\xd0)^\x96\x0f\xa1\xd3\xd2\xf9\xe2Ck\ +\xdaxf]{\xaf\xac{\xef\xa5\xb5m=\xb1\xba\x95\ +;V0\xa1\xd5K\xcdF*;\xd1<\x8a\xea\x1e\x94\ +F\xc3q p\xeeU5\x11Xl\xb0}\x8eg]\ +\xe0\xf9\x96\xe0Hk\x18\x1c^\x01\x83\x10\x18\x8b\x09#\ +\xe5\x90\xc7J-\xc6!Z\x85\xcd\x1f'\xf4\xc8\x13\xe0\ +a\x15\xf2\x02\x8c\x93\xe3m\x22\xee\xce\xf5\xe3i\x87\xf7\ +\xad\x90\xf4\xb2\x08b_D\xec\xd7\x1a\x8e<\xa3\x96\xaf\ +U\xd7\xe02\x16\xe7\xd9N,&\x17\x0b\x8e\x8e\x8b\x05\ +\xe3\xe2\xb0\x1c\xad\xb0ET\xdc\xa0\x14\x86/)\xc0\x95\ +\x15j\xad\x9a\xc1\x16\x08\x0aa\xca%\x90\xa5JHN\ +\x0d\x03P\x8b\xdb\xabY~b\x15\xaa\x82\x99\xe2{\x18\ +8\xb9O\xcd\xaaerc\x9a\x0c\xcal\xd7\x84\xc8\x12\ +\xc8]\xe5!\xaf:\xcb\xcf\x13\x00\xc6\x0e\xf8\xfeC^\ +\x11\xe2a.\x0a\x94\xb7\x11I\x8c`\xed\x0a\x1d\xd9\x9a\ +G\x90(\x8c\x88C`\xa1\xb9\x9aM\xe3>\xf2P\xde\ +\x05\x00\xc2C\x90&b\x9b\xf2i\xa5q\xb2\x00\x97\xd2\ +i\xda\x18P\xbb*\x22\xb9A\xd2-\x89J\xcaD\xb6\ +\xa4(\x0d\x9a\x98\xb3\x08\xa6\xf8\x84\xb7\xe2\x088\xc6\xf1\ +\x0c\x0e@x6\xc0\x9dG\x98\xc8\x83\xddk\x11%_\ +\x8bf\xb3\xa7(\xfc\x9e\xb5o>B\x1eZ\xcb:c\ +\xb2\xc0\xb8\x8d*m\xc3B\x9d\xf2\xc9\xa4\x1c\xc1\xc5=\ +\x93\xbe\xa5\xfdN\xd2\x01A\x16\x00\x08a\xfda\x01\xa0\ +\x97\xf1\xe9\x07\xf4x\x0e\x01R\x0bo\xaa\xbb(#{\ +\xa8 },c\xbc\x0b\x09\x09yd\x1a\xf2t\x0a{\ +Y\x8c\x95RG\xf7\x0cH\x10\x8e\x95\x8b\xd1\x16O\xdf\ +\xc2@o#0\x7f\xee[\x9eY\xa48{P\xe1\x0c\ +/=r\xc6w\xdc\xb6\x98\xe2\xf9g\xa0\xf9\x89#1\ +\xf9Z\x0b\xe0A\x9d\xc5(\x9d\x11\x08\x88\x8b\xf9(\xbf\ +@\x1e\x00\x17+)f\xe0+g\xcex\xd8{V\xbb\ +\xf4\x00 <\xb0r\x15\x18hiW\xf3\xe5\xa4|A\ +,6S\x88T\x5c\x07\x00\x99\x1d\x80@\xb5\x01=\xab\ +\xb8\xf1\x0d,^ \xd8\xe5\xbb\xf7\xf10\x87N\xf2G\ +\xb5\xac|hy\xc4\xf6(\xca\xca\xc1\x8b\x84\x01\x92\xac\ +_\xf3\x09aBS\x0e\xee\xd9\x03\xc0\x89\x93(\xde@\ +\x96\x1f\xd2D\x0a\x96\x93%\x12E\xa8\xf1D\xef5\xe5\ +\xec)\xd9O\x88\xc9\xe8\x22m\xec\xc4%\x03\xc8t\xee\ ++\x0d7\xac\x05\x1d\xa5\x92Z\xdc\xd14\xafV\x1c\xb5\ +l\x1b\x1a\x85\xe5;\x81\x1b \x11\x18uD\xa1\x82\xeb\ +\xcaC\xe6\x8d\x1dY\xc5\xecukX\xbae\x8d\xcb7\ +\xad~Q\xe3rh\xb9C\xcaL4/\xb1\xe0V\x0a\ +E\xda4\x81#\x00x\x82\x07p\xb3w3\x00`\xd1\ +\xc2\xe7\x0bf\x11 \xc9\xc7{\xe52\xce9\x18\ +\x80\xc0\x1dR\xba(\x10\x88\xb4\xa2\xfcl\x80S\x80\xe1\ +\x96\x93eT\xa2\x97*\xc2^\x05\xa1\xae\x80p\x18\x19\ +\xbd\x83\xdc\x05\xd8\xe8y\xf2!\xfa~l1e\x8b\xcf\ +A\x16\x04f\xe9\x19\xaf\xc4I\xad\x12\xc1de\xcd\x02\ +\x80bH\x94\x0bE\xa5\x14Y\x1fR\x88{*\x87\xc9\ +Vc\x015\x0bw\xac\x1a)S\x09\x94\x06\x08Tf\ +\x8b\x95\xe3\x9e4\xf8YZ~e\xd03yH\x89V\ +\x09E|<\x10\x10\x0a\x00@\x11.\xb3x\x92\x98\xa7\ +%hX\xb3\xbcM\x81f\xcf\xb0\xe0\x5c\xacY\xd7u\ +\xd7\xe6\x1er\x01\xa0\xabA@\x14\x0arP~\x18\xcb\ +\x97\xf2\xc5\xa63\xf9~\x91\xaa\x80\xe6\xf7Q\xb2[g\ +g@\x03\x9aM\xe35\x83\x90\xa4T\xc9\xd5\x0d(n\ +6\xcd\x91?\x93\x81(\xcf\xef\x12q\xd2b\x13 \xe6\ +\xb9%\x99<{&\xd7U\xcdA\x90{q\xec\x19\x0f\ +\xa2\x9c]YL\xfe\xe0\xa6\x95\x8en[\xf9\xd8\xb6\x95\ +\x8emZ\xe1\x90\xc2\x15it+\xdf\xaf\xc5!Y>\ +9z\x0a\x0a\x97\xe2\xf5\xdeM\xaa\x9dO\xa8es\x7f\ +\xdeB\x19\x9e\x91\xf0\x18\xc1#iZZ\xeb0\x01\xa5\ +s\xf2J(X\x99\x89\xe39\x0e\xf0\xc8'\xf2\x0b\xf8\ +\x19\x1b\x85.)_\x9f)\xc4\xf5W`\x9c\xd5x\x8d\ +\x1a\xf8N\xd5\xd2S\xbc\xd5#G\x8as5\xff1\x85\ +\xf2I}\x0bg\x9f\x08\x00OP\xfe\x13\xc8\x8b\x08\x0c\ +\xae\xdc\xc5\x1a\xf2T\x01\x00\xf4\xe70\x18\x1e\xa3\xf7\xe6\ +\xf0e\x91Q\x90VD\xdc.#\x95)\x9f\xbaf\xe5\ +\xd3\xd7Q\x1c\xf1\x98\x8bk.=\x84\xa5\xaa\x94*\x1b\ +T\xba\xd94\xac1\x88\xfb\xff\x04\x82.@ >@\ +&P\x08\x00\xca\xa6N\x08)7\xacj\xee\x96U\xcd\ +\xde\xe2\xe7\x1bVL\xe8q@\x10\x07A\x0a\xb1\xb6\xa2\ +\xf1\xe3OR\xc0\xcfQb\x9d\x9bBu\xca\x87ek\ +\x1d\x01\xc5k\x81\xc7-\xf2\xa0h\xb7\x82\xc9 \xaa\xf4\ +\xcb\xa5v\x9al\x01\x0c\x0e\x18.\xdde\xa05i\xd4\ +\xad\xd4\xef\xc8-\xf7f\x11c\x83R>\x03\xad\xa5i\ +?\x80\xf6\xf3<~\xc7\xa0a\xcf(\xc6\x07\x90\xfc\x9a\ +\xeb\xe7:!H\x9cD\xf5\x90*\x7f\xf35K\xf1S\ +\x96\xa2i[Y>JOE\xe9\xa9\x9aQm\x12\x1f\ +\x80\x10jB\x8dLGs!\x9a\x13\xc9\x19\x80\x14\x0f\ +\x89\xe0\xe2\x81t\x8f\x5cC\x00\xd0\xab\xcb\xc8dL\x1a\ +K\xc6\xfeB\xb2?\x09\xe3\x0c(\xc5a\xc2\x84\xbe<\ +\xbc\x94b\x7f\xc9\xec\x1d\xc7!*0j\xf1\x87\xe2\x99\ +{V$\x91\x81;\xb9O\x08 F\x94\xe2\xbe+H\ +_*\x17!6\xf3\xf7H=nc\x95\xb7\x18`/\ +\x9dSi\x94\xe6\xb75\xeb\x17\x14#gPs\xb8\xf1\ +<\x10\x9b?\xb8Ez\xa22\xb0\x1d\xe2\x97j\x03\xfe\ +w\xc9\x06\xd1\xaa\x11\x90efv\xc9\x22=\xe6\x1b\xec\ +\x5ct1\xafhd\xc7*\xa7\x8e\xacf\xf6\x9a\xd5\xcd\ +\xdf\xc0\xab\x5cw\xc0*\x84\x13\xe4\x0f\x13\x07\x87w\xf1\ +\x06{\x00\xe2\x00`\x1cy2y\x08\x08\xf6\xb8&\xe1\ +\x01N\xa1\xfa\x03-E;\xe5\xb7{\xcaw\xa5_(\ +X\xae4\x0b\xab\x0e)\xae\xf3<.S\x00\xa89\x0c\ +\x94\xe6\xfb\x95\xb2j\xd5/\x87\x98\x18\x1d\xbb\x83{\xbc\ +M\x0a\xa7\x22\x93\xeb\x16\xe4\xf3\x81\x81C\x94\xaf\x15I\ +\x84\xd0\xe6RfB\x85&\xcb4\xff\x9e\xaeU\xb8\x06\ +b\xfa\xb9\xa4jF\x137\xef\xc9\xb9\xf2\xa5x\xd26\ +7\xb1\x06s\xcf \x97w\xe5c\xe2HR.\x8a\xcd\ +V\xcd\x858\x8c\x96\xc85\x0d\xcd\xd8\xb9\xf0\xa5\xbf\xe3\ +\x11\xe4\x15\x5cH\xd5\xff\x08|\xe7\xe2y8\x9e_\x9e\ +\xb6W\x04r\xdb\x85Dq\xa3\xfc\x09\x0c\x09\xbeR\x06\ +\x17(W\xb5\xd7\xec\x19\x9c\xe2\x94\xf4\xf2\x96\xe5O\xaa\ +\x88\xf5\x86\xc5\xe4\x8b\xe8\xe1\xceKfn\xa2x\x88\x03\ +\xaf\xaa\x08\x12\xf1\x8b2HZ\xd0P:'\xc5k\xde\ +_\x8b?\x01\x88\x8d\x8a;\xb3\x18\xecl\x06]u\x7f\ +!,<\xa4<\x17`(\xa5\x0b\xf1P*\x14\xb9\x00\ +\x80\xf3\x00\xce5k\x92g\x8e\xef\x82\xfc\x00\x88\xc2\xc1\ +\xab\xb8\xcf\x1d\xab\x9a\xdc\xb7\xea\xa9\x03\xab\x98\xd8\xb3\xa2\ +\xe1-\xcb\xed\xc7-\xc2\x8as\xfa\xd7\xc8\x1a6\xe0\x1d\ +\xb8\xd9\xa9=\xab\x98\xde\xe3u\xd7J\xc6\xf9\xcc `\ +\xecUX\x81h\x9e\xd7 \xf8\xb5\xd6\xaf\xd54\x06&\ +\x13o\xa5\x8a^Y\xb5H]\x14\xc5j\xb2Gq\xb4\ +P\x0b$\x9a#\x9fy\x80\x90\x12\xce>\xb3b\xcd\x0a\ +\xce>\x86\xe4\xdd'K\x80\xd0\x92I\x84\xc8jB\xe2\ +\x03C0o\xf1\x1b\xbeO\xdf\xebf\x09\xa5P7M\ +.\xb7~\xe1\xe2/\xc4\xb3z\xa7x\x80\xa2\x99UM\ +\xe2\xb8\x096)R\x96-\x05\xa3\xe8 \xca\xcfR\x18\ +\x13\x91\x05\x00\x9a\x07p\xeb\x02x\xaaLy)\xc0\xa6\ +5\x13w=\xe7A\xe4I\xf8nD\xd3\xe8.\xbdT\ +Z\x09\xef\xd0\x8a\xa2V\x16#x\x93\xe8\x88H\xf6\xb1\ +\x95\xe2\xa1+\xf0\xb0\xe52\xae\x19\xbc5^[3\x90\ +\xca\xf2b\x22Xn\x8e\x8a9q\xc5\x85\x13X\x16\xf1\ +\xb8\x08\x0b\x14)SUPXV\xcc\x8d\x04eM\xb0\ +\xda\x80f\xea\x9a\xbd2\xef@\xf3\xa4e\xb6L\xe1\xf6\ +fI\xd7\x16\xf0\x0c\xaa\x00Z\xe5\xf3\x02\x02y;\xca\ +\xbf\xa8\x16\x0a\x09\x9d\xddZ\x1d\xd4J\xa1\x5c'\xa9\x0f\ +\x9f/\x80\xf5\x96\xa1\xf0\x0a\xe2h%J.\x1b\xde\xb0\ +\xfc>\xe2b7\xe4\xa8\x1bv\xdc\xb3Hl\x5c\xc1S\ +\x00\x94I>7\xb5\xe5^K\xc6\xae\xc2G\xb4\xd4:\ +\x8f\x85\xcc\x03\x809\x0f\x5c\xca\xab5\xa9\xa4\x01&l\ +\xb9B\xd2\xa1\x1b\x907\x88-\xa9k\x81X1n\xb1\ +d\x11\xb7Hl,_~i\x15+\xef\x90\xf7ns\ +H\xf9\xd2+x\x10\xa4xF\xeb#\xca\x904\x01\x04\ +\xb9\x85uk\xa2IdK\xdf-\xf7\xad\x18\x9e\xeeV\ +I=\x00\xfcC\xbc8\x9f\x0e\xbf\xf0a,n\xb9\x99\ +\xf1\xd3\xac\xa6j d\xa9Y2\x0c\xdc~\x96S>\ +\x0aGa\x9a;\xd0\xfb \x0a\xd4\x8a\xa0@\xac\x19\xd2\ +\xf4s\x22\xa9p\x92\x5c\xaf\xbd\x14\xe3\xc8\x98\x93\x94\xfa\ +1\x806\x0e\x18 \x95*<\x01\xfcA\xc69\x1b2\ +\xac\x22S\xd5g\x16\xe1=K\xa7\x0e\x9d\x94\xe0=\x0b\ +\xc75\x8f\xa2*\xafm\x8b\x09\xc2\xca\xe5B\xe5JU\ +\xcf\xa78\xa4\x14-\x97\xf8\xaa\xca\x9d\xdf\x03@)\x9d\ +_h#\x7f\xf55N c\xc88`\x98\xc43L\ +;\xab\x0e\x8a\xed\xa3\x00\x91?y\x82\xb0\x5c\x92\x9bP\ +\x22D\xf0]\x02F6\xee,\x9b\xef\x8b0 \x05<\ +l)\x00\xac\x18\xdd\xb5\xca\xd1\x1d\x00\xb0i\x05}+\ +\x96#\xe5w\xc9K\xccA\x92\x16\x085\xcbV<\xba\ +\x86\xe2\x91\xd1U\x88\xe82\x1e\x02\x0f\xd45\xcb\xf5f\ +\x19`\x00\x80G\xf2\x0aR\x96\x08\x05\xb24\xa5F\x9a\ +\x0d;B\x81\xd7\x01\x806p\xdcE\xf9\x0f\xacl\xe5\ +\xb1U\xae\xbf\xb0\xea\x0d\xed\x81\xf8\x02\xf9\xca\xea7\xbe\ +\xb4\xda5\xc0\x001.Q\xce\xaf\x8c\x08/\x10q\xca\ +W\xfeL\xfa(\xe5\x93\xd9h\xdaZK\xe3N\xf9.\ +\xbf\xbf\x08\x03S\x80b\x9a\x1c_S\xda\x0b\xa4\xc0\xe2\ +<\xde\x18g\xf7\xf1\xdcx\xb6\xec\x01\xd2Z\xf2\xfd,\ +8P\x10\xc9$\x94\x06\x00D\x00\xa5y\xfb\x1c\xb4\x9a\ +\xa90\xa1:\x8cYK\xe1\xfb\x93\xeb\xc7\xdd\xd4o\xa2\ +\xa6~\xab\x07\x91\x01KD\x92j\x06-\xa5n\x84{\ +\x98\xe0\x9e\xce\x01\x80'\x16\x00B\x22\x95\xe84\x8f0\ +[0F(e|\xf3y\x1f\xe5w\x9a\x81\xcd\xc4+\ +\xc7x\xb1\x12\xa5\x11\xa3\xc3\x179:\xcaW\xa5\xaf\xdb\ +\xf4!R'\x02\xe5\xd2:\x08\x93sG\xb84-\xd8\ +\xe8\xa2\xa0/\xa3q\x12\xe2\x83W\xd0\x1c\xbe*\x85p\ +q\xaasS\xcd\xa0\x9b\xb8\xe1\xbb\x1cs\x87Q\xe7\x12\ +S\xa3\x90\xaa\x1c\x14\x93\x8b\x85\x16B\xb2J`\xb6e\ +\x90\xba\xf21\x90\xcaM\x16\xe2\xdasU\x05\x8bug\ +w\xce8\x09w\xcf\xc1\x94\xe7\xf9\xdf\x05\xcbE\xf4>\ +\xa4\xaaY,_\x1e (\xcb\x97\xfbg\xd0\xddB\x96\ +\x8b\xb5+\x96\x01\xc9\xf3w\xc9\xd5\x02f\xae\x13U\xc8\ +S,\x5c\x82\x1c\xad=\xb5\x9a\x8d\xd7V\xbf\xf5\xb95\ +l}a\x8d\x9b\x1f\xacn\xed\x8dU.\xc0\x9a\xa7\xef\ +\x91N\x89\x07\x1d\xbb\xa9g\xa5\x94\xae\x80E3z\xca\ +\xebQt*\xd6\x98\x825\xaaH#\x15\x05\xa9,+\ +\x03e\xf9P\x9a\xd62\x82\xb8d\xcd}d\xc3u\xb2\ +\x01uv\xff2\x8c~\x09\x01\x14x\xb5 \x9e.\xc0\ +\xdf\xb4\x0e\xa0B\x18\xa5\xa6i\x0d\x0f\x81\xe4\x15\x11\x0ar\x07\x95\x13\ +k\x105\x98\x80\x0b\xd1k\xa0\x1dO\xd3>\xc5=\xf3\ +\xbec\x06\xd1\xfd{ V\xf5L\x06\x0f\xa5\xb2/\xad\ +\x8cI\x5c\x09\x18\xca\xf03\xc0A\xb9E\x88e.\xcf\ +\xa7\xda\xf82@P\xb5\xfa\xd4\xed\xa8\xa9\xbb\xfa\x0a\xe5\ +\xe3\x114]\xccXs\x02\x11\ +\x94\xab\xc9\x197g\xaf\xf9zrhW\x17@\xa6 \ +\x90\xa8\xd2U\xa5T\xaa\xa7\xcbG\xc1ES\xf7\x5c\x1e\ +Z6G\xca9\xff\x94\xb4\x04\xd1^<\xa4z\xe1\x99\ +\xd5,=?\xcfWq\xcd\xa4\x82\x85\x10\xc2(\xf9\xb4\ +\xea\xe1\xfd\xed\x22:\xb8V\x15:\xe2qT\xe3\xafJ\ +\xd8\x14m\xfel\xc6\xeaTIK\xecK\x03\xc8\xca\xed\ +U\x0a\x9eD\x5cL\xa8\x1bf \x87p\x9d\xc3\x00a\ +\x0cw\x0ap \x8b!\x5co\x14\x90\x17LA|a\ +\xc6\xe5d>\x95\x5cW\x93&\xe5\xe2\x07\x137\x9d\xf7\ +\x0bCb\xb5\x1a\xa9ei\xa5t\x8a\xbbRzb\xf5\ +\x08\x83\x8fEV\xfeCT\x98\x91R\x87\xf5\x036U\ +D\x85\x18\xec\x08\xde/B\x8c\x95W\xcdRyv'\ +\xe0h\x1b\xc63\x0d\x00\xca\x01\xee\x1d\xd0\xf0\x0c\xc9<\ +K\x12\xa14\xb1~\xd4Sz\xcd\x90\xc5U\x0dX,\ +J\x8fE\xe9W\xca{\xecJY\xb7\xc5:\x01\x00\xe5\ +\xb2|mv\x19u\xe9f6\xc0V\xf5\xb6\xdb]\xe4\ +vx\x9d\x91\xe7\x9f\x02\xf2\x9b\x84.M\xf3k)y\ +\x8b\x90\xa2\x0a&-k\xab~\x91\xb1\xd2\xc2\x11\x9e;\ +F\xec9\x0c\x11+P>>w\x13e\xdc\xb5\x86\xb5\ +G\xd6\xba\xf1\xd4:6\x9f[\xfb\xc6sk\xbd\xfa\xcc\ +\x1aV\x89\x99\x90\xa7b\xb1h\x01A\xf3\xe50bW\ +\xf0!\xe9\xe5\xbd\xea\x00T\x11\xe3V\x08!]\xa3\x9a\ +\x17\xe7\x7ff\x1e[\xd9\xc2s\x06\xfa\x95U\xad\xbc\xb6\ +\xea\xd5\xd7V\xc3k\x0d\xaf\xb5\xb8\xdc\xba\xabo\xacv\ +\x9d\xbf\xad>\xb1\xd2\x05\xd5\xcaifO\xeb\xfa\xaa\xef\ +W\xb95\x83\x7f\xb1\xea\xc5\x83'\x12\xf3\x12\xa5\xe0\xfa\ +\x11g1Z\x05K\xc6:\x93\x88\xbdZ\x16\x8d'.\ +\xc6Uuc9\xda\x07\xd8\x85\xc5\xf6\xf2\xc0\xc3\xcec\ +d\xe3vs4\x039y\x02\xfb'\xeb\x01\x04\x92\x12\ +\xd2\xa5\x22\xbc^\x9e&W\xa4|\x14\xa9\x02K\xb9\xf9\ +$\x17{\xa5|\x09\xf7P\xcd\xef\x9c\xe0\xa2k\x95\xee\ +\x09\xa4\xcaB\x94\x95\x90\xcb\xe315\x81\xa6I\xaa\x10\ +^G\x045\xa3e\x84\xb0\xd1k\xc95\x9d\xfc\xbf6\ +\xa7v\xe3\xd6q\xe5N\xfa\x9c\xc4U\xc9\xbdK\xfa-\ +\xb6\x1c\x00H\xca$x\x81\xf2\x01,\x7f\x10\xe5\x8f\xa0\ +|\xc2\x0c\x8aT\xb5\x92\xf6fH\xf1.\xa3\x99#l\ +\x01b\xadu\xe4\xe0\x054y\xa4\x14\xd3\x15\xf7\x92\x81\ +x\x05>\xe2-\xe2,\x18\x12\xa1#F7\x98\x87E\ +\x94\xe2\x12kV\x1fZ\xf3\xd6s\xeb>xkc7\ +\xbe\xb0\xf9;\xdf\xda\xe2\xddom\xf6\xeck\x1b9y\ +o\xad\x00BS\xbe\x8a\x8d\xb9\x90\xaa(9tt\x80\ +\x87\x1d\xe0u\x90\x9f\xb1\xf8\x5c\xa7\xf8\xbbd\x15\x0f\xc8\ +C\x1f\x93s>\xb5\xd2\xf9\x97V\xb9\xfc\xc6\xaa\xd7\xdf\ +Y\xcd\xd5wV\xbb\xf1\x16\xb7\xfb\x86\xf7\x80\x00\xa9\xc6\ +\x05W\xad?\xb3\xf2\x15\xad\xdc\x9d\xc2\xbc\x0f\x88\x91\xeb\ +\x96\x8ekK\x22\xd6&\xd4N\xa0\xd4\x09^'\xb1\xec\ +I\x94?n\x09(Z\x92\xc8\xdf\x93\xc8\xb3\x93H\xb7\ +\x12a\xde\x09Xb\x1c\xae3\xb6\x12\x8b)\xef`\xd0\ +:\x18\xb4n\x06m\x80A\x98\xf0\xbc\xc0\xd0\xa6\xbbF\ +>\xe9P\x01)o\xc1\x946\xbc@\x125\xcb\xa6x\ +\x0f9\x15\x97\x10\xc1\xd3\xba\xbbW}#\x12&\x85\xe3\ +\xaa\xeb\xe7a\xe4*\x07W\x15\x92\xea\x10E\xdc\xe0I\ +\x18@xD\xeb(\x8c\x81\x16m\x00\x81*\x81\x15\x9e\ +\xd2\xb1ro\xb3j\x97%Ttr_]\x08 \x95\ +K\xaf\xecq1=\x1e\xe5\xc7c\xdd\xf1UC\x08\xde\ +\x00e'T\xe1\xcd\x00[b\x8d\xbc\x90\xd6\x144k\ +\xa9l\x02\x0f\xc3\xf8\xe7\xe3\x9d\xdd\xe2\xd4\xfc\x03Wy\ +\xa4\xfa\xbf\xc8\x98\xf6\x1e\xee\xb9I/\xcd\x13\xa8\xeaJ\ +\xd9\x88\x0f\xcbW\x88\x92\xe7\xf0\xb5@\xe4\x91\x98\x5c\xcd\ +\xac\xcd\x9e\x92\x06=\x84\x0c\xbd\xb4\xd6\x83\xf76x\xf3\ +k[z\xfc\x93\x1d\xbe\xfd\x93]{\xff';x\xf5\ +\x07[\xbe\xff\xd1z\xf7_\xe3\xbe\xb9\xc8\x98,\x1c\x91\ +\xc2\x87\x15\x1an\xe3A\xee\x92F\xde\xc7}\x8b=?\ +E\xf1/q\xb1op\xb1\xef\xdd~\xfbZ1l\x88\ +V\xed\xd6{\xab\xd9|mUW\x9f[\x05\xf1\xb7\x5c\ +\xe5Q\xb8\xe0\xe2E\x95N\x9d\x91\x7f\x93o\x93\x85\x88\ +\x11gp\xf3\xa9 7\xb9y\x19R\xb4\xf2;Y\xe4\ +w\xf3\x96DN\x9c\xd4\x04H\xf8\xd9\x09?'\x82\xf0\ +\x04<\x85\xe2g\x02\x16\x95\xc8\xc0&U\xf7C\xd4\x88\ +\x97\xcaVD\x18\xf1\x02\xa1\xa1-\x94\xb5\x87\x9b\xd4\x0a\ +\xa2\xa6W\xbd\xa5`\x15\x9eh\x11K\x03&k\xd1\x9a\ +{\x12\x16\x97T\xa7\xd02\x87\xcb\xd6\x12\xec\x1a\xbcb\ +\x93\xf8\xad\x125\xdd+\xe9\xe1 \xf7\xad\xa5\xf0\x09Y\ +\xa0\x96\x98\xef\xb9ei-\xd8h\x7f\x85\x06?M\xe9\ +\x1b\xcaM\xa8\xe8\xff$\xf1z\xad\x84\xd1W\xc9\xba\x87\ +\xbc\x10s\x0e\xb6\xc4:\x11A-\xf7jQI\xcb\xca\ +\xaaz\xde5\xed-\xd4\x0e\xa5\xa8\x96\xbcU\x84\xa2z\ +\x86\xb9\x07\x16\x9d\xbama,_\xd3\xd5\x9a\xfa\xf6\xb2\ +\x15Ur\xcd\xbb\xeb\xfb\x91\x00\x5c\xe6b]F\xc4?\ +&\x1f7X\xa28\xb8\xfe\xd4\xeav\xb4\xa3\xf4\x0b\x1b\ +8\xfdh+\xcf\xffh\xd7\xbf\xfa\xbb\x9d}\xf3\xcfv\ +\xfd\xc3_m\xe3\xc9\xcf6pD\xae\xbc\xf0\xc0\xb4\x9f\ +>\x8a\xd2\xf3\xc6\xb4A\x94\x9cz\x1a\x17?\xfb\xcc\xca\ +\xe6_\xe0\xea_\xa2\xf4\xb7\xb8\xf3/\xadq\xeb\xa3\xb5\ +\xed\xffh\x1dG?Y\xc7\xf1\x0f\xd6r\xf05\x00\x00\ +\x14\xb0o\xb1\xf0B\x5c\xaf\xae\xafmJ\xd1\x89k \ +\xf7\x18\xe5\x1fX&1\xcd+\xf5f\x80U\xab\xd0\xa3\ +\xbd\x7fG\xa4tG\x0c\xf8!\x8cy\xcf\xd2:\xb6-\ +\xb5}\xc3R\xb0\x86\x148Hr\xeb*\x02Xp\x8d\ +\x02B\xb2\xcb\x9b5\x19\xe3\xe5\xe5J\xd9D\xe4\xb4\x83\ +\xd8\xafy\x02\xd22\xf5\x17P\x9f\x01\x15]\xba\x1a<\ +2\x1e\xada\xa8\x08T\x936\x9a\xb2MQ\xe1E\xc3\ +\x1c\x1eF`[\xb2\x14\x14\x91\xda\xae\xba\xc4=\xee\xed\ +\x00\xe5k\xad@\x1bSnY\x08\x82\x1bA\xf9\xd1\xe9\ +\x87\x96+\x99\xbc\x07!\xc3\x13\xa8@\x86\x10\x99\xa5\x82\ +Rm\x85\x97R\xa5\xdcZ\xac\xba\x86\x10\x82w\x93$\ +\xab_\x02\x22\xc0%\xd6\xcf\x12\xd6\xb8>\x1e&M%\ +\xed*o\xd7~B\xbc\xad\xae\x15\x1e\xbfc9\xba\xd6\ +\xccC\xe4\x81E&\xef\x00\xc0\x1b\xfc\x9d\xb1\x82\x9f]\ +\xd4uj\xf2\xc8\xc7\xf7\xf8y\x0d06JK\x95\xa2\ +\xbb4Q\xf3\x00\x05\xf3*\x14|\x88R\x9eY5\xca\ +i\xd8\xfb\xdczn|\xb4\x85\xa7\xbf\xd9\xd1W\xffb\ +7\xbf\xfd7;\xf9\xe2\x9fm\xfd\xd9\x1fm\xe0\xe4+\ +\xe2\xf8S\xcb\xd3\x83\xa1\xf8\xfc\xa9GV<\xfb\xc4)\ +\xbdr\xe9\xb5U\xae\x90B\xad\xa0\xfc\xb5\x0f\xd6\xb2\xf7\ +\x9d\x0d\xde\xfa\xa3M?\xf8\xab\xcd>\xfa\x9bM=\xf8\ +\x93\xf5\xdd\xfc\x88\x97y\xe5\xea\xe2\xb4)5\x07W\xa5\ +\xd2\xa7l\xd2M\x95*]\x886{\xb8-\xd4\x9a\x85\ +\x1b\xd3\xd4\xec=,\xeb\xa1E\xc6\x1fYh\xf4\x01\x7f\ +\xbb\xcb\xa0\xdf\x02$'\x96\xd1\xb3oi]\x80\xa1\x03\ +0\x90\xf2\xa5\xe2\x8e\xd3T\xba\xad\x12n\x95\xaeu)\ +\x85\xf5D\x9b<55\xec\xe6\xf2\xc9VTN\xae\xbd\ +\x04\xday\x14\xec\xe7\xda\x02\x01\x04W\x9f\xf1\xa9\xe0\x94\ +TR\xde\xc6y\x19\x94\x9f\xd4\xb2b\xc9mW\xb9\xd6\ +\xb6\xa5w\xed\x03\x80C\xf3\xf7\x03LxO&\x16\x19\ +$\xbb\xc9\xd6T2^ Gc\x84\x17\xc8W:\xa9\ +Wy\x06\xc2\xa3v\x1be\xaa\xcbH\x1b\xdf\xd1r\x15\ +`\x12B\x1a\x89\xcf\x0dX9\xc0H\x05l\xc9\x02\x9d\ +S\xfe\x8a\x03y\xba\xf65\x08l\xfd\xc7\x969\x04\xd8\ +\xb4\xb4\x0b\x00B\x5c#\xbe\ +G%}\xae\x88W\x15^J\x89\x19\xe7\x08\xc41\xa6\ +@\xe5\xc90\xe0b\xad7\xe3\x92+\xaf\xbe\xb0\xa6\xfd\ +\xf76t\xfb;[z\xf1'\xbb\xfa\xf6\xaf\xb6\xf6\xea\ +\x9fl\xe6\xc1/\xd6u\x0c\x00V^@4p9\xb3\ +\x8f\xad\x106\xaf\x961\xe5\xcb\xaf\xac\x12B\xa7r+\ +I\xf5\xfa[\xac\xfe#\xff\xf3'\xdbx\xfd\xcf\xb6\xf5\ +\xe6\x9fm\xed\xc5\x9fm\xf4\xec\x1b\xb7\xd7=\x9ft\xcf\ +\xd5\xdeA\xb8T}sQ\x01\x9b\x0dk\xd5\x0e\xda\x88\ +\xd6\xbb\x19\xb8<\xcd\xc8\xa9xs\xf9\x9d\x95\xac|\xb0\ +\xe2\xe5/\xf8\xf9\xbd\xe5\xcd\xbe\x06\xfd\xcf\xb0\xb8\xfb\x0c\ +\xfc-\xf310\xe9x\x0a\x01!\x0d\x85\xab\x9d\x8bW\ +\xb4\xa9%S\xae\xc5g\xa2\xaa\xe1\x93\xe5\xc8U\xf7\xe1\ +e\xb0t\x95D\x09\x00\xf24\xaa\x15pB\xca$\x0b\ +\xca\x808i7Q\x0a\x83\x98\xec\x04\xe5\xb7\xae\x01\xb2\ +MKE!\xe9j\x17\x03\x00|\xdaL*\x10`\x99\ +\x99\xda1Lh\x94\x82\xb4\x9e\x90\x8bK.$.\xab\ +\x12\xa9\x8cL\xa7t\xe1\x85\x15\xc2\x89r\x00q\xf6\xc0\ +\x19q\xfc:`\xc0\x83tr?\xed\xbb\xa4\xb9\x00\x97\ +k\xa4\xa3\xacT\x89v4u\x02\x94\xee}\x80~\x01\ +6\x81@\xd7\xb9\xc5un;\x09\x02\xac\xc0\xd0\x0dw\ +/\x19\xdd\x02\x80X?\xdf%n\x02\x80\x02*\x91g\ +\x5c\xb4/Ben\xe1\xe1k\xa6\xd66Q\xf8CL\ +>\xcc>\x9f\x9bT\xc5\xaa\xa4@3ex\x84\xba\xed\ +\x97\xd6q\xed\x83\xf5\x9e~k}\x84\x84\xee\xeb\xdfX\ +\xd3\xde\x07\xd7\x07\xa7xY=p\x9e\xa3\x14\xdc\xbd\x94\ +N\xfe\x5c\xb1*\x12\xc7\x83\xaa\xf6\x1c \xb5\x01\xa2\xe9\ +{?\xd8:\xa1\xe4\xea\xf3?\xd8\xd2\xa3\xefl\xe0\x18\ +\xa0,\x9e\x12o\xb5|\x89U*?\xd5\xdc\x82\x16\x9c\ +\xb0\xa2\x10\xc4R\x03\x17A\xf9\xb9(\xbf\x88L\xa1l\ +\xf3K\xab\xda\xf9\xcej\xf7\x7fB~\xb6\xea\x9d\x1f\xad\ +l\xe3#\x7f\xfb\x02\x80\xbc\xc6\x02\x1ey\x030p\xcd\ +|\xb8HI\xa0\x1f7\x89\xe2C\xfc>\x07\xef\x91\x07\ +/Qm\xa0\xaa\x7f\x0b\xb4$\x8a\xa5\xaa~_\xeda\ +\x9c\xbb\x94\x90\xba\xb9\xf2s\xbd\xc73dh\xc1\x87\xd4\ +\xd6\xdb[\xe8y\x95t\x066\x1d/\x92\x0e\xc0|\xbd\ +\x84#Dn\xd9/\x10\x10\x0ad\xa1\xb2\xc2L2\xa4\ +,-\xd9\xe2\xe1\x04v\xcd\x9e\xc4\x89\ +,_\xca\x17\xf0\x18h\x1f.8\x83g\xf2i\xfa\x1c\ +\x8e\x11!\xe5,\x22\xc3\xaa#\x9dn?\xfc\x0a.\xf4\ +\x9d\xb5\x1d\xaa\xf9\xd6\xb7VM\xa8,\x9b\x7f\x05\x7fz\ +ne\xf0\xa8\xd2\xf1\xbbV\x84\x82\xf2\xb9/eV\xda\ +\x98\x9a\xd5\x07\xa9C2\x7f\xdf\x9a\x86\xebi?\x82@\ +\x90\x09\xd03y\x95\x07\xf2\x9aY\x09\xd4\xaa\xf7\x83\x08\ +\xba\xf2uO\xf1Ay\x0dH{\xf6\x18a\x08\xf2\x18\ +\x11I\x9d\x06\x00\xa1\x11\x5c\x22\xaeX\xabR\x81\x8by\ +h\x08\x92\x0f\x92\x10\x18\x86\x1cM\x9cX\x04\xa2\x96\x07\ +W(\x80,\x16-#\x22pK\xc46\xe5\xec\xb3d\ +\x02\x93\x00fTK\x99\xaabY\xc7\xba6\xadd\xea\ +\xc0\x9aWnY\xcf\xd6]\xeb\xdd\xbcm\x1dk7\xac\ +zz\xcf\xad\xf0\xb9\x05\x0e\x11\x14M+\x13k\xb5\xba\ +\xe6v\xe5j\xdf<1?2\x05\xb1\x81[\xe4/\xa2\ +4\xc2I\xe5\xce\x17Vw\xfc\xd1\x9an\xfch\xcd7\ +~\xb6\x86\x93\x9f\x00\xc1\xf7V\xbe\xf1\x0d\xf7\xf3\x01\xaf\ +\xf5\x1aK{\x0e/y\x049\x85\x18\x8d\xc0\x19F\xee\ +\x12\xe3\xee\x01\xee\x87\x96\x07\x00\x0a\xe1)%\xa4\xa2\xa5\ +H1\xdf\x9b\x0fyR\x93\x09\xb9\xfd\x0c\x14\x9d\x069\ +Lm#\xcdj\x9d\xc6\xf5k\x7f\xff<\x1cb\xc5-\ +\xca\xb8Z\x02\x11D\x94\x1f\xc4\x05\x07QPP1_\ +B\xfa+\xeb\xd2\x0e!Y\x5c\x86\xbc\x856\xa8\xc0\xb8\ +57\xaf\x86\x0fy#\xdb\xd6\xb4v\xcf\x86\xae\x7f\xb0\ +\x89\xdb\xdf\xdb\xe4\xdd_l\xe4\xf4gk\xdf\xfb\xda\xcd\ +\x89h\xed\xa1B\x93d(\xa5\x14\xeb,&\x84\xe4\xe3\ +\xe2s\x86\x14\xb2T\xca\xa5M;\xd7\xb9\x07\xae\xad\x8c\ +\xc3\x09\x80@\x02x!\x81\xcf/\xaf$\xf7\xcf=\xb8\ +\xfd\x90\x0e\x00Z\xc6\xf6\x88\xa3\xc2F\xa6\xc2\x06\x06\x16\ +\x9a\xbcka\xae%\x12\x19\xe3j\xe54Y\x00\xfa\xb5\ +\x1b'\x95\xdc0\xa5\x19ie0:\x97,];v\ +\x07\x19\x80\xd1\x03\x90s\x8crN\xf8G\x18\xfb\xe41\ +\xeeZJ\x13\x81\xd2\xd2\xa6V\xe0\xc4\xb0\x17x\xe8%\ +\x0b\xa3\xe8\xc2\xe1-+\x1d\xdbA\xb6@\xf6\x86E\xfb\ +\xb1z\xe5\xc4\xca\xb1[\x17\x11m\x0c]\xe6\x7f\xb0\x16\ +\xc8\x97:r\x85A\xa8c\xb7\xa03W\x0b2\x8bO\ +\xac\x04\xafS\xb9\xfd\xc6j\x0f>\xe0\x09\xbe\xb6\x06\xf8\ +E\xdd\xc1\xf7V\xb3\xf3\x83Um~OJ\xf9\x11\xe2\ +\x09?Y\xc6\xc5.\xa0\xe4\xd9\x97V\x04G\xc8\x9f\x84\ +\xb0\x92\x92\x16\xcc\xbe@\xe9*\x03\x7f\x0b\xcf\x11\x9fx\ +E\xea\xf4\x18\xaeq\x8b\xc1\xd9\xc5\xb5+\xd6\x93\xf3k\ +V\xee|\xdf}z\xcb\x04\xf1s\x0e\x0f\xa5\x85\x1c\xd5\ +\x14\x10\xaa\xe0*\x1e\x00P\x86b\xbd\x06\xd4\x81@^\ +@\xec\x1b\x97\x0d\xf9J%\x0bq\xb5\x00\xa4\xa3\x19\x8d\ +\xe3\x16\xe9Z\xb0\x86\xf9c\x1b9|j\xd3\xa7\xefm\ +\xee\xee76y\xfb[\xeb\xd8\x03\xdc\xcbxXrx\ +\x95\x7f\x97\xc0}\x8aa\xf2\x85x\xc2\x06C\xa2\xcd\x15a^s&\x89\x8b\xb3\xb7\ +\xc9T\x1eX\x05|\xa4\x9eT\xb5\xed\xe4{\xeb\xbc\xf9\ +\xab\xf5\x9c\x92^\x22\xbd\xbc\x1f:\xfd\xc5\xc6o\xffj\ +\xa3\xbc\x8e\xde\xfa\xc5\xa6\xef\xfcf\xe3g\xa4\xaf\xd7\x7f\ +F~\xb2\x9ek\xda\x0a\xff\x05<\x86\x10\xa0\xcd\xb0|\ +\xb7\xbf\x7f\x13\x00h\xbf\xdd\x88%VkF\xae\xcd\x12\ +*[-\x09 \x08\x04\xea8\xe6*\x8c\xc8\xab\x95>\ +jS\x85\xfa\x15\xb8\x12z\x14\xef\x94\x8fb\x02\xdc\xbb\ +\xebe@\xb8\x10o\xf0\xb9\xa9\xe4yR\xbb)\x0b4\ +MZq\xff\xb25\xcf\xeeZ\xe7\xca\x91\xf5\x5c\xbda\ +]WO\xadzNet\xbbn\xb5N\xcb\xe6\xd9\x84\ +\x1b\xcdB\x06\x01Q\xa6\x96\xb2!r\xda\xb3!\xee\xe1\ +\xb6\xc7\xf3\xfd>@\x98\x01\x18\xdd\xe6X\xa5\xbd-j\ +QC\xca\xda\x8c\xf2[\x18\xd3V\x94\xdf\xa6P\x84\xd2\ +\x01\x80\x9b/\xc1;\xa4\xc2KR\xf9\xbf4B}\x06\ +\xd7\xf2i\xaeep\x17\x00\x10\xe7\xd4E\x22\x9dAH\ +S\x87\xad&\xdc\x7f\xe34\xaep\xda\x12\x9d\xcc8I\ +\x16\xa2\xf5@\x9a!k!^:\xc5\x03\x02D\xe9\x92\ +\xbaeh\x7f\x9e\x1a\x1e\xb9:6-\x1d\xab\xf2\xc5\x11\ +=\x5c<\x03\xa78\xea\xedC\x00}\x221\x9aD\x11\ +C\xc5E\x05A\xbd\x98\xb3z\xf5\x84\xc6!\xa4\xe2\x1e\ +\x13\xa4+\x93Z\xc7\xc7J\xe6\xeeX)\xd9I\x8d\xc8\ +\xd4\xf1\x176r\xf7'\x9b~\xf2'\x9b\x7f\xfeO6\ +\xf7\x04E\xdf\xfd\x1e\xe5\x7fkSw\xbe\xb5\xf1\xd3\xaf\ +m\x82\xece\xe9\xe1\xcf6\x7f\xef'\x1b\xbd\xf9\xd1F\ +n~k\x83\xd7\xbf\xb6\xc6m\x88\xe0\xf2\x03x\x01\x84\ +hD\x939\x022\xc0\xaf\xd3L\x5c\x97\xc5\x97\xb78\ +I\xacl\xb7d\x00\x91\xa2\xae\xa7n\xc3\xaa\xf6\xdd\x01\ +d=\x93f\x0b\xe1\x0e^\xbb:)\x9fl@\x1e\x00\ +\x0b\x0bh\xf1E\xd3\xbf\xbdd\x14\x10\xc9\x8c\xd6y\xf3\ +3\xae\xd1\xaey+\x1d\x5c\xb1\x8a\x91\x15\xbc\xc1\x9a\x95\ +\x8d\xaa\x10\x94\xef#\xd4\xaaa\x85V\x1a]\xc1G\x9d\ +\x96\x805\x0b\xa8\x95A-\x0b3\xce\x18T*\xe3\x9a\ +J\x86\x92\x0a\xb8R\x19\xd3T\xa5\xa9\x00 \x9dT1\ +]\x16\xdf\xa6\xf0#\xc5\x13\xd2\x9c\xa0|B\x81&\xad\ +4G\x92\xc6\xff\xa7AL\xd3{%\x18}\x1fY\x0e\ +\x12\xe3\xebY\x858\xe0\x86\x89\xdb>\xe2\xb3\xeb\xb5\xc7\ +\x83\xca\xc2SPr\xf2\xf9DHr\xa3\xa6$\xb58\ +\xa3\xc6\x8eR\xfe\xcay\xae\xea\xddH\x86,\x1b\x94i\ +\xe3\xa6\x8a\x18/\xc4U\xb5\x92\xee\xa9\x9a&\x82{\xd7\ +\x0eZ\xd5\xdbGx\xd5\xbc\xf9\xa7\xee\x9f\xaa\xba\x1d\x82\ +h\xa1\x94,\x08eh\x0cR9\xb6\xcf\xe7\x0eH\x97\ +\x8eL\xbbm\xd4\xe2\xac\xee\xea#\x1b\xb8\xf1\xc1V\x9e\ +\xffjG_\xfd\xddn|\xfcW;\xfa\xe2/\xb6\xf2\ +\xe4[\x9b\xb9\xf3\xd6\xc6o<\xb7\xc1\xc3\xc76L\xbc\ +\x9d=}g\xd37\xdf\xda\xd0\xe1K\x1b:zi}\ +\x07x\x8f5\x98\xf6\xec\x09\xdf\xa9\xf4\x93\xf0\xd5>\x0d\ +\xe8\xd5h\xa1\x0f\x00tZB\x05\x1e\xa0\xbc\x95\xd7v\ +@\xa0p\xa0\xde<\x02\xc18\x166\x03\xc8\x09i=\ +\xeb\xfc/\x80\xd6b\x0b\xcf\xa5\xb4\xcf/\x0f\xc0\xcf^\ +{\x1b\x00\x80g\x11\x99\xd6zF:\x9cJ]S\x03\ +\x84\x14\x7f\xd3\xa8\xf9\x1bG\xcc\xa7N\xa6|o\x92\x9b\ +\x02\x1e\xc4\xeb\x0cZ|\xc5\x80\xc5],\x02\x95k\x19\ +x\xc8\x12j\xf0\xc8\xf5\x18\xa2\xa6\xbd1\xb6$\x8cM\ +\xb3\x9e\x9a\x01M#\xc7\xcf\x10\x07\xe8\xda\x87\xc8z\x92\ +\xde\xa9Y\xd2\x1d\xf4\xb2\xe9\xe6,RP\xbe\x00\x93\xa6\ +0\xdf\xbdJ\x0a\x0b\xd7\x03\xf4\x92\x0c\xde\xc7\xb8V\xab\ +\x17B8P\x91\xa2\x10\xae\xc5\x0d}\xb9\xa6!SZ\ +\xd7\xdd\x1c|j\xb3\x17\xb7\xd3P~\x1a7!\xc5{\ +92\xa8r\x00P\xca\xc4\xff\x7fR>.\x0d\x8e\xa1\ +\x9c_\xe5\xcbZ\x9e\xd4nU\x89\xdb\x8a\x8d\xc5\xab\x16\ +N\x9b4\xfc\xa0\xd1\x07q\xf4C\x14%\x81\x81U\x06\ +w\x1d\x80h\x0d\x7f\x8b\xb4m\xcf\x8ag\x8e\xaca\xfd\ +\xb6M\x9e\xbd\xb5\xa3\xcf\x7f\xb5g\x7f\xf87{\xfb\x97\ +\xff\xd3\x1e\xff\xf4\x17\xdb}\xfe\x85\xcd\xdd|h\x03;\ +\xd7\xac}e\xcf:V\x0elx\xe7\xa6\x0dn\xdf\xb4\ +\xce\xd5\x13\xeb\x5c\xe3\xf7H\xe5\xcc\x8e\xe5\x0d\xafBR\ +\xc5K\xa6\xb0<-\x19\xf7\xa1h\xad\xb1w!\x1d(\ +\xa3\x03\xe5w\xba\x9f\x93\xf0\x02j8\x99R7L\x5c\ +\x1f\xc7bg\xf0n\x8b<\x1b\xbc\xa0\x0f\xb0+{\x92\ +\xdb\xefE\x11\xb2z\x9e\xc3\xafLG\x03\x0c\xf9Ko\ +S5\xb0\xa6x\x15b\x06\x00V/\x00\xebF\xba<\ +)\xeb\xb6\xc42~\x87\xc4KJ{,N\xe2\x96~\ +\xfb\x09I\x1e\x08\x12\xea\x00A#\x86\x88\x0e\x92[\xd6\ +\xd0\x09\xe3\x8eu+\xc6gh\xa2\x08\xb2\xa7I\xa0t\ +\xb8T:Y\x95\xf3\x14\xe8 \x0d\x02\x9b\xaeu\x15g\ +\xf1\x00\xbe\x17\xaf\xa4{S\xe9:\x82\x07\xe0\x86\xc9W\ +\x03}rk\xb0}\xdcX61M\xb3hJ\x1f\xfc\ +\xa4\x19n\xee]\x17s\xeeFn\xc7\x13\x17\x83\x1c\x08\ +@\x17.\xc9\xa7\x18)\xf7\xffI\xf9W\x11^\x19(\ +\xcd;\x87\x86v]AF\x88\xb8\x97\xad]\xb1\x03\xba\ +.\x83\xd5\x0d1\xec\x9c\xc3M\xcd\x22\xb8\xc3\xae\x19n\ +n\x96kC\xc0PTv\xff\x12\x8cx\xd5\x0a\xc77\ +\xac~\xf9\xd0\xa6n>\xb6\x9b\x9f\x7f\xb4\xf7\x7f\xfa\x9b\ +}\xfb\xb7\x7f\xb6\xd7?\xfdj\x07O^\xd8\xc4\xde\x89\ +\xb5\xcc.[\xf9\xe0\xa4\x95\x0dLZ\xfd\xf8\xbc\xd5\x8d\ +\xcd[\xc5\xd0\xb4U\x0c\xcf\xe2~\xe7,\xafw\xc2\xb2\ +\xda\x87-\xd0:\x08C\xef\xb3\x94\xdan\x94\x8f\xe2\x89\ +\xf9\xff\x9b\x08\x0c\xbc&U\xf3\xf7\xea^\x148`\xa9\ +\xf0\x04\xb7\xa0\xe4\xb2\x03<\x01\x16\x15P\xda\xac\xcd&\ +p\x1c\x91I5\xb7Hk\xc3\xab\xb4N`4c\x84\ +S\xbcK=\x96^\xa3E\x1f8\x06J\x8f/\xebD\ +\xd1\x1dN\x12\xd5\xb7\xb8\x14 \xf1%\x9e\xc4\x95v\ +\x9f\x83\xa0\x0f\xaf\xa0E-\x15\x88(,/\xf2\x9d\xea\ +\x89\x80.p\xf3\xbeN\xf5s \xec\x90\xef\xfbd\xb0\ +x\xdft\x8c8\x95\xac&\x19o\x9e\x02P\xd3Pr\ +:J\xf7\x8c\x0b\x03G<\x80\xf2;\x95\x84\xa5\xa30\ +\xcd\x82\xa9\xe5\xaa6>\x84 a\x11\xcd\xc6iN{\ +\xf46i\x1e\xa9R\xff5<\x04\x17Q\x9e\xdb)\x86\ +\xb9\xc1\x0d\x00\x86s\xe5K4u\xfaI\xf9R\xba\x13\ +M\x86\x88A#\xbcfq\xe1 n7\xd8G~M\ +\xfcS/\xbb\x8cN\xf2\xee\xb6q\x1el\x98P3h\ +I\x8d\x03p\x8e~\xf7\x9a\xc2\xcfi-C\xc4Q\xad\ +\xe5\x8fZ\xb8g\xc2\xca\xc6\x97lp\xe7\xc4\xf6\x9e\xbc\ +\xb4g\x1f\x7f\xb0\xf7?\xffj\x8f\xbf\xfc\xda6\xce\xee\ +Y\xf7\xd2\xba\x15v\x0dY\xa0\xb6\xcd2\xaa\x9a,P\ +\xd3l~\xc4W\xddd>\xbd\xafk\xb5\x8c\x9a\x16K\ +\xadF\xaaZ-\x19\xc2\x97\x88\xcbO\xc4\xdd;\xabw\ +\x1e\x00\x8bD\xe9\x89Ux\x04\xac_\xcaO\xaa&\x0c\ +\xd4\xaa\xdb\xe8\x08\xa4P^`\x0a\x82;C\xb8$\xd7\ +oS!\x8a\xac\x5c\x04\x9a4\x92\xcf%\x126\x12\xf8\ +\x0e\xd5\x22$\xc8\x93\xa8_1\xd7\x88/kC\xe9\xad\ +(\x19\x9eQ\xdc\xec^\x13J\x087%\xfc\xbe\xb8\xdd\ +\xe2\x90\xd8\xe2\x0e\x8b-\xe9\xb4X\x81\x80P\xa0e\xe1\ +\xc4\x1a\xbe[\xeb\x04\xeaQ\x80{\x0ft\x8b;\xc1\xa3\ +\xfa$\x10Q\xcdDb\xf5\xda\xf5\x94J\xb6\x95\xdc6\ +e\x89-c\x84\x8cQB\x05\xfc\x05\xa3\xca\xe8&\x0b\ +\xeb\x85\x98\x93\xd6\xfb\xc5\x01\x00\xae&\xbfbD0\xd2\ +5\xe3\x85\xdbWK\x12\x15O\xe6\x90#F'\xef\xf3\ +\x0aS\x1e\xbb\x039\xf3@\xa0\x99.\xbf\x9bi\xf2\xa6\ +\x1a\xddvr\xdc\xbfS>$\xc3+u\xf6f\xc0\x9c\ +\xf2Q|&\x08\xd4\xfc\x80\x96a}XxF\xc74\ +\xc0\xe1\xa6\xda\xb0\x8e\x16\x94.\x85\xd7\xe3\xfajA\x7f\ +u\x87\xc5U1\x10U\x0c\x88\xd88\xaf\x92\xc4\xeav\ +,\xa8\xc3\xd2\xea\xbb,\xd29l\x8d3\xab6up\ +\xd3\xf6\x1f\xbe\xb0\x9b/\xde\xda\xfe\x83\xa76\xb9sl\ +\xf5c3\x96\xdd\xd0a\xc9\xa55\x96PX\x89TX\ +BQ\x85%\x16WZbI\x95%\x95T[Ri\ +-\x16W\x8f4\xe2v\x9b\x11\x14P.\x00\xa0,)\ +\xbf\xaa\x97\xeb\x89\x0f\xf4\xf3\xca\xbd\xd5H\xa1X\xb0Z\ +\xdc\xd7\x8d\x90\xdf_\x08\x83\x8b\xe8w\xea\xd6\x95X}\ +a\xe1<\x03J\x8e+iB\x99\x0d(\xb5\xde\x93\xa2\ +Z\x8b-\xfc\xbd\xd4\xf1\xbb\x06@\xd0\xe4\x01\x02\x10\xc4\ +\x95\xf0\xec%\x00\x00o\x10K8\x88\x85\x13\xc4\xab\x00\ +\xa5N\xbb\x7f!\xda0z\x11\xe70\xfa\xd0V\xf5\x1c\ +$b}?9v\ +\xcf\x88E[{p\xf7M\x96\x5c&%\xcb\xea+\xb0\ +xI%V\x8f\xf5\xe3\x15\x12KQ>\xd6\x1f_\x8a\ +\xf2\x1d\xb8\x00\x9d,\x16\x00\xc4\xf1\xbd\xf1\x0e\x00\x03X\ +\xbb,\x9bA\xc2\xed&7\x92\x05A\xbe\x12Uqt\ +^r\xa6\x92\xb4\x04<\x83\x0aNd\xf5\x22u\xbf\x07\ +\xc0\x95b\x0f\x00\x97\x0b\xaa\xecr^9R\x8a\xe2\x8b\ +\x9d\x5c\x91\xf0sl~\x19\x00\xa8\xc4;\xd4\xf2?\x8d\ +\x0e\xe4q\xfc\x7f,\x1c!\xb6\x12\xf2'\xf05`\xf9\ +\x90m\x91;\x15\x9c\x84\xd1Kt\x1a\xe5\xcf=r\x92\ +;\x03\x00 \xd4\xda\xe5\x9c\x81\xebOi\x1cu\xe3\x19\ +[\xd1lWx\xd6+x=I,^/\xae\x82g\ +\x16\xc1%\xa4%\xd4\x00\x12\x95\xcd\x01\xe2\x98\xd8rb\ +]\x8d\x0a'U\xa5JzC>\x1b\x1eU\xaav\xd7\ +\xa2\x84\x00\xb7\x99p\xf2\x11i\xd8\x13+\x98~\xea$\ +\x7fJ\xa7\x8b\ + (\x00\x04\x85x\x81b@PnW\x8a\xf0\x14\x84\ +\x89+\x80\xf2\x0a\xdf\x15+`\x01\xb4\x94\xd6\x05G\xec\ +4\x03\x18\x998\xb3\xe8\x0c\xfa\x98G\x1fH\xee\xac\x0a\ +BH\xa3!\xd5\x01\xd29\xb5\x86M\xaeW\xd6\xd0\x86\ +\xc2\x1b\xf8\xbej\xbbL\x08\xbc\x5c\x00\x00y\xd55b\ +\xb9F,\xdeF\xcf\x1d\xab\xe7\xe6~cbE@\x18\ +\x5cU\xbdj\x0aS)\x8d\xb6FG\xc6@\x9b\xbah\ +M=\xb4\x02m\x9d\x9aWO\xe1W\xc8k+\xd6\x89\ +\x1a\xb3\xcf\x1c8\xd4A#t\xbe\xc6\xeez\xf4ha\ +\xa7[\x8a\xd6\x19\x02\xc7\xae\xfc\xbb|\xf2\xaeU\x81\xd6\ +\xca\x99\xdbV:qby\x83x\x1aBCF\x8b\xa6\ +\x9e\xe5f\xe5n\x89\xa3\xff\x9b\xc8\x0d+\xb6\xca\xd5\xe2\ +-\xb0\x8a\x84\x0a@\x82\x8bt\x0c\x9a\x81\x8e\xc7\xd5\xc6\ +\x13O\xe3p\xb3\xb1XZ\x5cA\x19q\xb5\x9c\xbfa\ +\xf5R|e\x1dd\xaf\x1e\xd2Wo)\xd5\x80\x04b\ +\x98XI8q\xa1\xa6\xcd.3\x10\x97$\xb8\xdf\xcf\ +\x90\xcbR$\xd6\xa1vu*\xa7rM\xa9\x00\xb0\xda\ +\xd3\xa5\x91V%\xb5.\xe2\x05T\xa38\x82\xd7\xd2`\ +\xff\x8e\xd5\x0b\x00r\xe1|OlI\xb3]\xc6\xb5_\ +f\xd0/\xa1\x00\x07\x80\xdcB@\x90\x87\xe4\x02\x82(\ +\xde\x80\xd7\xbc|\xbb\x9c\x8fg\x90\xa2t\xa2\x09\xca\x11\ +\x00\xe2\xc4=\x00Z\xaa\xa6\xd6\x95F+}V\xa3\xa7\ +i<\xb3j\xfeP|h\xfc\x10`\x90\xae\xf7h\xce\ +F\xc6$#\xc2\x03a\x0cWJt2\x0a\xd6\x8f\x87\ +\xb9\x5c \x10\x10\x86\x0a\x01\x99;1\x05\xa0)D!\ +\x97\x8b\x9a\x00@\xb1\xe2\xa0R!\xf2\x5c\x15\x0d\x12\xcb\ +\xb5\xe0\xa0\xa5Ym\x94\xcc#\xde\x14\xcc=\xb6\xe2\xc5\ +\xe7V\xba\xa2\x05\x15\x00\xb0\x04\x00\xe6_\x10\x8b\x1e\xe1\ +-\xce\x08\x07\xd7a\xa3\x87X\xfd\x9ee#\x11\xde\xe7\ +\xf1\xbb\x12\xf8C\xf5\xec\x13k]{m}\xbb\x9f\xdb\ +\xe0\xfe{\xeb\xdd~n-\xeac?\xbek!\x11\x92\ +&n\xde\x91)\x89\xb7\xdd\xc9\x131j\x84\xfbr@\ +\xa8\x04\x04b\xc5b\xc7\x90\xa5\xd8\x22\x90\x5c\x00\xa2\xf3\ +x\xb0\x5c\x01\xa0\x02\x00T\xe1R\x89\xabeX{e\ +\x03Jo\xb2\x94\x9aFK\xadmB\x9a-Y\xf1\x10\ +\x8f!\xbe\x11\x8b\xd5_Fi\x97\xce\xe53\xbd\xa2\xcc\ +81\xfe\x86Q\x88\xea\x1c\x83\x8f\xb7\xea\xdf\x22\x85\xda\ +v\xf9tr\xfb\x0a^@\xc5\xa7\xe7^\x00\x0e\x10\x8f\ +\xa7\x8a/\xfb\x07\x08\x14Vbq\xe7Wp\xebR\xea\ +%\x94\xe0\xbc\x00\xae\xff\x12\x1e\xc0\x03A\xd4\x13@p\ +\x09O\xe0\xfe^P\x03h\x00\x00\xdf\xa5\xb2\xf0\xc4z\ +\x11e\x98\xbb&\x9d\xb4\xc1cT\x9eY\xdd[4o\ +\x02\xf1&uN\x85\xed'\x13\xd7\x13\xe0E\xf1z\xae\ +\xf2\x06\xc0Ws\xae|\x89\x94.\xd1\xef\xea\x183)\ +\x1f\xef\xe08\x8a'1n\x22\xa2B\x8d\x88\xd5u\x1a\ +\x96\xc8C\x0a\xf9\xd9\x83*h\xb8\xe1\xaaF\xf2\xb5\x95\ +X\xe7\xe1,=\xb3\x22\xa4p\xe1\x19\xbf{\xc2\xdf\x1e\ +pS\xe2\x04j\x0c\x01w\x18<\xb1\x5c8D\x11D\ +\xa5\x1c\x82R;\xff\xd4Z\xd6\xde\xda\xf0\xe1G[\xba\ +\xfb\xabm>\xf9\xcd\xd6\x1f\xfc`3\xd7\xdfX\xc7\xea\ +-+\x1a\x22\x05\xc5\x0bh\x7f\x9b\xd6 R\xe4\xf6\xb4\ +\xdb\xc6\xc9\xf9\xfe7\xac\xcd\xb1l\xcd\x96\xc9\x03\x08\x00\ +J\x97\x0a\x01@\xbe\x00\x00\xa3F\xe2\x0a\xea<\x8f\x80\ +\x15%h*\xb7\xaa\x85\xffk\xe1\xff\x9b-\xa5\x0e\xa9\ +\xe7}\x1d\x19E\x0d\x8c\x1f\xbe\x11G\x18\xb9\x82\xfb\xbe\ +LH\xb9Lh\xb9\xa4Wm\xbc\xc0\xfd&\xd5+\xfd\ +$\xdd\xeb\xc2 4i\x02\x10\xd2PDJ\xa7j\x0f\ +U\xa4:\x0f\xa9\x22\xd5\x02\xa0\x09\xdc\x97<\xa8\xf3L\ +\x02@)V\x08\xb9t\xae\x16\xb2y\xc5\x9dU\x04\x17\ +\x90+\xce\x87\x0b\xe4\x15a\xfd\x00!\x17 \xe4\xe6;\ +`|\x06x?\x03\xcc\x97\x8aZ\xed2\xcf'\xf6\x9f\ +\xc0w\xa7@\xd6\x14\xdb\x03\xdc\x83\x0aY3yU\xa9\ +|:d:\x19\xa6\x9fX\xcbu\xaby\x16b~l\ +\x99\x94\xcfX(\x9cp=\x11Le\x1a\xb1(<\x96\ +\x90$n\x22\xef\xe4\xdd\x9f\x84{%\xe3\x88I\x22\xcf\ +T\xd7ImgV\x17J\xf5\xa2S'\x0d5A\xc8\ +V\xf3\x85\xb1\x13\xdc\xcf\x0d\x08\xc7-\xcb\x9b\xc5#\x10\ +{rU{>\x0dA\x9c\x84\x14j\xf9\x16\x85\xe7\x8d\ +y\xbb\x7f\xca\xa6\xb1\xfa\xf9\x87\xd6\xb0\xfc\xdc\x9a\xd7P\ +\xf4\xd6\x07\x9b\xb8\xf9\xa3m?\xff\x8b\xdd\xf8\xfc\xefv\ +\xf2\xf6\xcf\xb6\xf9\xf0\x1b\x1b\xde}`\x15c\xdb\xee\xa0\ +)\xedm\x93\xa2SP\xb8\x07\x82\x7f\x88@\x90\x04Q\ +U\xc5l\x82\xd2\xa22,\x8e\x1b\x8fc\xb0\xe2\x00A\ +\x1c(\x8e\xc7\x95%`=\x09\x0c|\x02\x16\xe8\xa6s\ ++[\xcfA\xe0)?\xb5\xb1\xdd\xd2\x1a\xbbyOn\ +\xef\x06\xae\xef|\xf3\x85^\xfb=\xe1\xbd\xb6])\x87\ +O\xe2s)-\xe4\xfe\xed\xe3n\x82*\x15\x12+\x00\ +\xa4\x90\xf6\xa6\xb4\x03\x04M\xcb\x8a\x18\xd6Nb}\xc3\ +X_/\xd6\xaf\xfc]\x83\xab\x81\xd6\x80\x0b\x04M\xc4\ +c\x85\x03H!\xd6x\x09w\xec\xf1\x82R\x84W\xc2\ +\xd7g\x80\xf7\xb3B\x94_\xdcM\x18\xd0\x9e\x80!\xc2\ +\x0b)\xb2\xc6D'\xaf\xa9\xeb8\x80\xcc\xd0\xb9\x01d\ +P\xa9dOIdN\x09\xca\x9c\x5c\xc6D\xca\x09\xd8\ +b\xc9pb\x8b\xa4\xf8\x1a\xc6Ei&\xe4R\x1e^\ +!S\xb3\x8e\xf2V<\xa3\x17N5+9`1)\ +0\xcd\xd4\xc6y\xdc\xbf\xb6Uii\xd6\xab\x84QK\ +\x15mZ\x0c\x0e\x10\xd3\x87\xf0\x08#\xb8\xecQ\x01\x82\ +Td\x1ck\x9f\xb8I\xa6 \xb2\xa8](\xda\x83~\ +\xd7\xea\x96\x1fY\xd3\xda3k\xdf|e\x9d\xdb\xef\xac\ +m\xf3\x9d\xb5\x22C\xd7\xbe\xb1\xd5G\xbf\xd8\xe1\x9b?\ +\xdb\xc1\xab_m\xe3\xe1W6\xbc'\x00l\xb9\x1d\xc6\ +)Xx2qO]\xb0u\xa6\xcf?\x80 O\xa0\ +\x85\x9a\x09\x14\x09\x10\xaa\x00\x82f\xc6\xdc\x94)\xae\xd2\ +\xe5\xcdp\x18$\x01R\xa3,\xc1\x09\xac^S\xbaI\ +\xc4\xc4\xe4Z)\xbe\x93\x01\xecE\x06\x18\xccA\xbc\x0d\ +\xbc\xa2\x16\xcb\x85_\xc4\x13^\x12H\xf9$\xaa\xc9\xd7\ +\xf6+\x97\x8a\xc2\x9ac\x95F\x91B%4\x0dYR\ +\xdb\xac%u\xaeZ2ioJ\xd76`\xd8\xb2\xe4\ +\xb6uR\xa9E\xacu\x12\xe0\x0c\xa1\x08\xfe\xd7\x85\x01\ +\xee\x8b\x10\x13/!\xabQ\xa6\xa1\x90s\x05p^\x01\ +\x18\x97\x1dI\x14(p\xc3\xc5\x0a\x17\x9d\xfcM\x9b?\ +\xe0\x16\x15\xe3\xe7\x82w!\x15T\xe8K\x82\x1c'C\ +zS\xaa\xda\xe15\xad\x90Y\x00\x8f\xc5\xc7\x97\xa1\xe0\ +2Y?\x02\xd8\x048\xcd?\xb8I&\x1d\x8d\x87\xa1\ +$pO*?\xffG\xc99\x9c\xcb\x95\x9dk\xbf\xc3\ +\xa4\xc5\xe8\x8c>\xd7\xf0\xb8C\xdb\x91\xc9\xe9\x95\xd7\x93\ +\xcai]@\xd5AN\xb4N\xa0\xdd\xa4}\x9b\xc4\xa3\ +\x1d\xf8\xc1!\xa9\xe2uB\x00\x96\xaf\xc2\xc7\x99\xbb\xae\ +QT+\x8a\xef\xd8~k\xdd{\x9f;i\xdexm\ +\xb5+\xcf\xacc\xe7\xb5M\xde\xfc\xc2\xd6\x1e~D\xbe\ +\xb6\x85\xb37\xaeJ\xa8l\x84\xeb\x80\xee\x14\x08U\x12\ +\x84*\x09\x8bt@8\x07\x81\x9a-\xb8\xce\x1aHJ\ +\xfd4\xe0 \xe6q\xf3\xf2Z\x0e\xc1\xb8nG\xc2P\ +zBE\x977PX\xb66`\xe8\xcc\xc0\xd4\xfa^\ +Kk\xe8%\xcc\xf4\x9b\xbfu\xc8|\xad:yc\x04\ +\xc0kzV\x16\x06\xbfP\x88Q\xf3e\xf1\x0d\x00!\ +V\xef\x91\xb8\x1a\xbbT\x02\x93&\xae^\x91\x9b%\xc5\ +J &'unXJ\xcf\xae\xa5@\x0cS!\xbb\ +)\xedW!\x86\x0b\x16\xc7}\xc52\xd0.\x8d\xe3~\ +\xe2\x091n6\x91\x0c\xc7\x11Zq\x06\xf8\x8c\x00\x17\ +\xa7\xb0\x81b\xe3+\x95J\x0a|J-g\xf0:\x84\ +\x96z\xd2\xce\xbay~7\x8d\xa5\x8e\xf1\x8c<'\xbc\ +@\xde-\x11v\x9f\x88\x9bO\xe0\xbe\xe2\xc5uJ\xb0\ +r)\x1dB+\x90\xb9\xcd&.%U\xb6\xd4\x8b!\ +\xc0%\x04\x22\x19N5\x06t^r\x9eT\xaf\xfd\x06\ +s\x90\xddE\x8b\xc9h\xdf\xf0\xd2\x1dP\xad\x22\x83\x80\ +\x13\x01A\x877\xae!\xaa\x8f\xf3j\xe4\xb4\xd9\xc05\ +\x22\x22\xad\xd3\xd6\xa3<-\xd3b\xf9e\x8b\x8f\xac\x11\ +\xe5w\x1d|\xb0\x9e\xc3/\x9dt\xee\xbd\xb7\xda\xd5g\ +\xaeKU\xd5\xc2]k]\x7f`}{Ol`\xff\ +\xb1\xf5l\xdf\xb5\x86\x85#\xcb\xef\xc7\xe30\xb0\xc9(\ +\xdf\xb3^\x06\xcdm\xe4\xd0aO\x9aiS\xa3\x05<\ +\x94+\x97>\x97zrc\xe5\xe8n\x83\xa6\x08\x22\x0f\ +\x89\xd25\xd7\xee\x1d\x0e5d\xe9\x0dC\x96A\x8c\xcc\ +\xc0]f`\xf1\xbe\x96!\x000j\xfe6\xed\xa2\x1d\ +\x83x\x0a\x5c\xe7 P\xf8\x81p\xba0$E\x89\xd9\ +c\xa5r\xa7b\xf1\x97\x19\xe4\xcb\x15XiM\xaf]\ +i\x1c\xb782\x81\x04\xd2\xe5$\xc6(\xa5\x8b\xf4\x10\ +@h\x95.\x81A\x8d\xc7\xc2D\xe0\x94!hJX\ +\xe7\x15\xb9\xc3#Zf\x11M\xe5\xaai\xd4<\x03\xcf\ +38Pk\x09x\xce\xad\xae\xa6\x91fju/M\ +k\xf7\xadW!w\xcb\x80b\x16\xe5\x01<\x94\xa9\xd0\ +\x96\x08\xb1L\x90\xe2I\xf1$q%\x9a\xd3\xd0\xf2\xb5\ +\x94\xcf}kb\xca\xad,\xe2\xd5\x90\xc4J\x14/\xe1\ +;\x1c\x00jd\xf5\xbf\x03\x00\xde+\xe6\xe2\xa0FW\ +K\x06\xb2\xd5\x06EG\xa0y \xd0\xe2\x8e\xa6y\x09\ +\x09n\x96O\xa5Q\xde\xd2\xae\x00\x90?}\xea:c\ +V\xae>\xb5\xd6\xbdw\xd6w\xedk\xe4\x1b\xeb>\xfa\ +\xd2\xdav\xdeZ\xe5\xe2C\xb8\xc1\x0d\xcb\xc3c\x14\x8d\ +\x1dZ\xd9\x94\xe4\xc0J&v-\x7f\x08v\xdb\xc1\xc0\ +\xd4\xa1\x04\xe5\xdf\xb8NM\xf6(\xdf\x17\xe1\x93\xcb\xd7\ +d\x8c\xea\xe4\xb5\x1d*\xadq\x09\xc5-c\xc1H\x93\ +v\xed\xe8\xf7x\x85\x06\x85\x8aQ>\xa7\xc1\x1eC\xe1\ +(\xb9y\xcc\xfc(\xda\x93Q\x0b\xb4\x8e}\x12\x0f\x00\ +\xfa\xbc\xa6s\xe1?\x88^S\x00\x8eV\xfd\xb4\x16\xa0\ +\xe5\xe0\x0b\x02wY@(m\xb4K\x15\xedv\x09\x90\ +]\x86\xac\xc6B\x96\xe3\x95\x12\xb6i\x9f\x00a\x01\x00\ +\xb8\x89\x22\x00+\xf6\xaem\xddZ\x1f\xf0\xb5\xc3\xe21\ +\x1e\xd7\xe8\x01cr\x87o\xa8Z\xa8\x19 \xf0y\xd7\ +=\xa4e\xd1\x85]\xad\xc0\xaa\x06\xaa\x9c\xd2\xd6mw|\x1dc\xaa2\ +\xb5\xec\xb1\x9b\xa6\xcac\xedo\xd0\xb17\xa9\xad\xf2\x1c\ +p\xa5F\x8c\xa5^\xde\x050h\xf9\x1a\xaf\x94\xc8\xf8\ +%\xd5b\xedx0\xafm\xec$\x0a\xf6$\xa9\x86\xd7\ +\xaa\x09\x84\xdf\x0b\x00n\x9f\xa1@\xa0-\xe8\x02\xeb\x8c\ +\xc5\x08\xbd)\xa08\x95\x0b\xa5\x13\xff}(Zk\xdb\ +:\x8bO\x00p=l\x9cxu\xfcjC\xaen\x19\ +\xaeO\xde\xe4u\xd7\xf2\x5c\xed\xe6\xab\xd7\x1f[\x8dZ\ +\xa5\xae\xa9\xa1!i\xe3\xf4M\xac\x1f\xae\x00\x89\xd4\x16\ +f\x1d-\xab\x93D\xb5\x9c\xea\xce\xf5\xc3b\xd5\xdc \ +Q\x1b\x22\x15\xb7\x94F\xc9\xd5\x11\x17\x93\xb8Im\x9b\ +J\xa9\xd76f,_\xab`(\xdd\xf5\xe8\xef\x06\xa0\ +*\x88\x94\xb7\x12hU~u\x1e\xaa\xfc\x00\xcc-<\ +ui;\xb6Z\xc6\xa8\xaf\x80\xf6\xec\xa3x\xc2\x81\x18\ +\xb4\xc2C\x1a\x03\x99F\xe8I\xd5\x86M\x85 \x07\x00\ +@W\xa7\xc9\x141e\x119M\xe9\x9e\xb3w\xe43\ +\x09@\xb8\x04\x104\x81\x14+\xd0*\xfc(Um\x84\ +\xa7\xa0L\xb5\xaf\x17\x7frar@-Xd0\x90\ +h\x80\xa0\xbaBw\xe8\x83\x03\xacd\x01#\xe0^\x01\ +\x85\xba\x82\xa9\xd1\xa5\xebA8\xa1z\xc8S\x0b\x8e\x02\ +\x02Rj\xef\xa4\x14<\xb4+\xdcY\xe0\x1axE2\ +\x02o\x99Y\x9eK\xa1R\xe3\xc9xi;\x1c^E\ +\xee=Y[\xcb\xc4+d\xed\x02\x02J\x17\xd7H\xc0\ +\xb0\xb4\xd9V\x9bl\x13\xe0U1\x09\xa06\x91\x9bO\ +\x22\x03p+\x83\xb8{\xd7\xa3\x9fx\xef2\x01!\xf8\ +w\xa2\x22\x08\xf5\xb0\x09\xa9\xeb\x84Z\xbdN\x9dX\xf1\ +\xfcM\x94N\x0a\xb8t\xe6\xde\xebw*\x13\x8fh\x03\ +f\x9fz\x05/\xba>B\x81\x96i\x94\xc0\xcd\x12s\ +]~\xff\x89\xcc\x117\xc5\xeeI}\xe4\xa2d\xf9)\ +\x8a\xf7\xb8}\xb7\xfbV;f\xa4\xfc\x9e\x03\xae\x7f\xc4\ +\xf5\x8f\x11^\xfb\x0e\xb8'B\x97\xc2\x95H+^\xc6\ +\xef*\x9b\xb4\x07p\x06\x0b\x9bp\xee>\x0d\xa5\xab\xbe\ +/\xadA \xd0\x92.a@\xa7k\x09\x8c\x90PM\ +\xfcx|\x80{\x80@\xc6kk9._\xcc\xfa2\ +J\xbf\x5c\xa8\x09\x9djR\xb5*\x84TN\xa0\x00\x08\ +n\xf71\x16\x98\x8c'H\x93\xd5\xab\xec\xcdU>\xe9\ +\xf9O\xcc5\xb1\x1cR\xc7/\xc6\xad[u\x92\x9e\xb7\ +R\x09\x98'\xf2Z\x8b\x84V\xc6H\xbd\x04\xd4\xf1\x14\ +\x10h\x8f_p\xe4:\x008q\xe5f\xae\xd2\x88\xbf\ +\x07\xfa\xd0M\xf7\x12!\x9b\xefP\xf9:\xf7\x9f\xae\xb9\ +\x02\xbe\xcb\xb5\xd7\x07P:\xb2\xc6kq\xcf\xd8\xe9X\ +^\x08\xaa\xc6\xd2\xedo\xc4\xe2U]$\xc5\xab\xd63\ +\xa1\x01\x00$\xa1t\x89f\xb9R@c*\xa22i\ +oc\x84\x88\xdf\xb9\x80\xc0\x0b\xc9\xec\x05\xb5\xfd\xebn\ +\x1f@tL{\xed\x0f\x08\x07\x90\xba\xe9CRB\xed\ +\xb8\x95\x05\x5c\xb5\x90v\xe1\xf6,\xe3\x01\x16\x88\xf7s\ +x\x00\xe2b\x13\x83Ej\x97\x8a\x8bJ\xd6\x1e\xfbJ\ +\xdc\x93D\xae\xaa\x06\xb4j\xe9S\x07I7\xad\xa0|\ +\x15\x9el\x9a\xce\x13\xd6Y~\x17\x9b\x1c\x5c/?\xc9\ +\x80\x80p\xe8V1\xe5\xb1\x04ZGX;\x18\xe86\ +\x0d4\x83\x84\x82\xc5\x0f\xe4\xf2\xc5\x11\xd2[t\xc6\xde\ +\xb4\x0b\x19\xe9\x88\x0e\x94\xd4!\x15\xc9\xe4\xdb\x17\x8b<\ +n\xaf>\xae^\x0a\xd6\xf4\xac@\xe0\x00P\xa0\x09\x9b\ +r@@.\xaf\x09\x1e\xbc\x84>\xab\xb3\x02\xb5\x93Y\ +1\xdc\xb5\xd9U%3\x19R\xae\xd2\xe5\xe1=\x00\xa0\ +\x95R\x15\xcdr=\x14\xa6\xeakw\xba\x98\x14\xa7\x16\ +=\x8co\x16F\xe5\xba\x84\xa9\xa9\x03\x00r-\xea\x08\ +\xb5\xae\xd8\x14\x8f\x1b\x18\xc4\xe3\x91\x96\x07\xc8\xc6\xd4\xed\ +D-\xf1\xd4\x11\xcd\xed\xf4\xe5\x99ur\x9bz9\xb9\ +\x1e\xcb:/\x01b\x1f\xd0nb\x15\xde\x22:\x9b9\ +U[\xdb\xb4\xddMee\x84\x22IL:n=\x8d\ +\xc1K\xc3\xda\xd3\x88Si\xb8\xd3t\xb9\xaa\x0e\xcd\x09\ +\x9c\xd7\x09v\xe0\xae\xdcz>(\xeb\x9a\x83,\xe2\xce\ +{\x97P\xc0\x8a\x85\x86\xd7-\xa2S*G\xb1\xf6a\ +b\xfd\xe0:\x96\xb9\xc2C\x81\xec\xaeyn\x0c\xe1\x7f\ +\xdd\xc1\xd2\xf2\x04\xbaa\xcd\xb3C\xa0\xb4S6\xe3|\ +cdj\xfd\x12H\xc5\x0b5\x01\xc2\x16\xeeCU/\ +\x1d*@Q\x97k\x06\xa1\xef\xc4\xd5$\x04\x07\xaeC\ +\x94T*}\x0e\x02m\xf1R\x99\xf6\x80\x8aKw\xf9\ +\xac\x16p\x08\x19\x8a\xb50o\x0d\xb2:h9kA\ +\xd9\x19\xe2\x1fz\x1e\x95\xbac}:\xac\xca;d\x92\ +\xcc\xa2\x11W\x89;M\x00\x08^\x93\x09\xad\xc9\x03\x02\ +\xf2\xec\xcb0\xeeK0\xef\xcf\x8a*\x91*B\x01\x00\ +\x10\x09S\xb9\x18|FUUR\x9evZ\xe9\xc0\x08\ +\xd7\xa9c\xe2\xba\xe5\x8c\xa0T5\x83\xd2\x22X\xe7\xc5\ +\x98\xea\x15\xa0*,\x88\x1f\xa0\x03\xd7\x81\x14e\xebH\ +\xdcO\x95\xc6\xe7\x00p\x9dJ\xf5w\x85b\xc2\x85k\ +\x83+\xaf\xd1\x83\x11\xe2\x91\xa3\x84\x9a\x5c\xc0\x93?L\ +X\x068\xb9\x8cI\x0e^2\xd4{\xc4g\x19\x17\x9d\ +\xc9\xac\xcd\xac\xdaf\xe6\xb6\x9a\xa9\xb2\x18\x81\xf3\xc5\xa8\ +\x98Q\xe5\xc6:}\xcb\xd7K\xac\x01Ejq\xee\xd5\ +\xfak\x80\xd4cGk\xf9S\xbc\xe2R\xdb\x89\xa9\x9d\ +\x93X\x1bD\xabw\x0e\x0b\x5cD\x09 \x10\x09\x92\xd6\ +\xb9J\x1f\x94\xee\x83\xe1\xeb$o\xf5\xf6\xc9\xd4i\xe2\ +\x02\xc0y#*\xb54Q\xeb\xd7\x1c\x5cx\x84\x1b\x0c\ +u\xf1\x80(:\xd0\xb9\xc7\xff\xeeq\x0f\xda\xe2\xa4}\ +~\xc7\xc4?\x9d%\x8c\xd2\x07\xb41B\xa2\xf7\x02\x02\ +\x22\x00\x0cy\xc7\xb1\xba#Y5p\x03\xda%#\xe0\ +lp\xbf\xf2\x22\xaa`&c\xc0\xf5\xea\xf4P\xef\x18\ +\x1a\xf1\x05\x06\x9fP\xe7\xea\x17\x90\x8b\xa5\xeb\x00^O\ +V\xa9V3\xda\x1b!\x17\xafn#\xb1\x95m\xa4\x83\ +\x00\xa1\xa2\xd1.W6\xdb\x95*ro\x1d\xe6H\x98\ +\xc9\x90\x05Cv\xa3S\xa7\x96?w\xdf\x0a\xe7\xd5Q\ +\xfc\x1e\x1eQ=\x97oXt\xf4\xd8\xc5xo?$\ +a\xe2\x9cS\xe9\x9cB\x15\xc3\xaa;\xbbS<\xca\x93\ +\xa8S\xa9vG\x07\xd5\xe6]\x95\xd2\xfc]\xa9\xb7\x0e\ +\xb5R\xbb|\xb5\x9f\xd1\x18\xaa\x8d\x9f\xba\xa8\x16\x8d_\ +\xb7\x12<\x8ez\x1b\x95N\xdf\xe3\xfd]+\x1c\xbb\x0d\ +\x18N\xf9\xdc\x0d<1c\xd3\xab\xede*\xeaQ\x99\ +\x9f\x8e\xe6el\x09\xa31*kV\xea\xe1\xaarU\ +\xd2\xcc\x8d\xb9\xa3c\xe4\x09\xda\x15\x83\xc9\xc3\x9b&\x18\ +\x10\xdch\x13\xb1\xb4\x99<\xbbu\x98\x81$\xaf\xee\x9a\ +\xe0\xb3\xd3<\x0cV>\x00\x10\x06\x96x\xaf\x86H\x9e\ +\xf5\xfbQ\xbc\x18\xff\x85\xf2\xd5\x09;\x97\x98\xa8\xf6\xf3\ +E\xe37I\x0dO\xadp\x14\x8b\x19a\xa0\x86\xb5\x15\ +\x8a\x9b\xd5\xee\x15D\xdb\xad\xb5\xe350\xa8\xbdo\xc8\ +\xc0M\x06\x0c\x00\xe0\x05\xdcY=\x88;\xbd\x03\x10\x84\ +!L9\x13g\x10\xa8\xdb\xe6\xba|\xf2\xbf:lZ\ +s\x1b^\xd9\x9a\x0aXI\xc1D\x16\xa5p\x80\xae\xfe\ +\xbb\xea\xb5\xab\x86Jj\xb1\xa2\xee\x99\xae\x83\xa6\xf6\x22\ +\x0c\x12R\x00\x87\xfa\xefk\xe1'\x1e\xb2\x1aG\x86\x10\ +[\xd3mWj\x01\x83\xea\x18\xe0\x13I\xe2\x18\xb8v\ +\x1d\x0a\xa1\x89\xb1<,\xbfp\xfe\x91\x15-<6\x1d\ +B\xe1N\x10\xd1\x112\x93\xb7\x09\x07\xb7\x00\x82<\x02\ +\xd6\x89r%j?\x17Q\x13j5\xd9\xd69\xc8\x88\ +2\x00q\x80lm\xd9\xd3\x1e\x09\x09@Pc\xe8\x08\ +zR\x8f\xa6<~\xa7\x8d$\xc5R\xfa\xccm+\x03\ +l:W@M\xa1+\xe6\x9fX\xf9\xecc+\x99z\ +\x08\x08\xee\x02\x823@\xc0w3vY\xbd\x8c\xab\x04\ +@\x04$\x8ce\x8cw\x22\xb7\x10v\xe8P\xa6\x83\xa3\ +Ta\xf2\xe9\x94*\x88\x8a\xe6\xa3\xbd\x93\xb8\xb5l\xdc\ +\xc3\xcf\xbd\xfc\xbe\x1f\x0b\x1b\xc2\xd2\xc7`\xe5\xd3\xb8\xb9\ +\x05\x08\xcf2\xb2j9\xea\xf0\xd5\xbf\x86\xfbQ\xbf@\ +\xaf/\xf0?\x9aC\x1fZ\xd1\xa4\xd7\xc2\xb4\x04\xc4\xaa\ +\x1d[\xf1\x14\x037\xa5\x03\x1en;+\x0aO\xdd\xb2\ +l\x1e.\x8bA\xcb\x1c9\xc5\x1d\xf2\xcaCd\xe2\x09\ +2\x15\x0apm\x17'ui)Z\xd3\xd1yj\xec\ +\xc8\xa0\xe71\x08\xb93\x0f]\xf1\x84\xbc\xc5\xc5\x86M\ +\x9f\xb6\x83\xf3\x5c\xae\xec\x8d\xc1\x97B\x8af\xefZ\x85\ +\xda\xddk\xb3\xc9\xe6\x0b\xe4\xb9U\xaf>\xb2b\xd2W\ +u\x0cQ\x86\x91\xd2\x02I&\xafO\x80G\xc4\x93-\ +\xc4\xc3%\x12E\x1c\x95\xc6*\xad\xed\xdfF\x89\xc7\xa6\ +C'\x0aP\xb8N\x11)\x9c{\xcc{dF\x1d\xd8\ +\x1f\xf2\x5c\xaa\xa9\xb8OHP\xab\xf7\xdb\x96\x0fX/\ +\xc4;\xd3@\xbb\x98yn\xed\x88\x02\xcc\xd9*\x97\x07\ +\x00\xda\xb7\xa9\x06\x95\xaa\xa0vg \xc0/\x0a&\xd4\ +\xea\x15K\x9f{`\xe5\x8b\x8f\xadR\xa7\x80.\xbf@\ +^Z\xc5\xd2K+_xae\xb3O\x19S\xeec\ +\xec\x1e\x06w\x8a\xe1\xe1!\xb1\xfa`7a\xa5\x1bn\ +\x81\xf8{T\xe7\x09\x004\x90\x22RZ\xfdS~\x1f\ +\xc2\x15\x09\x0c\xea\xb2\xa9-[\x9a\xc1R\x93\xc2$\xe5\ +\xeb\xaef\xae\x83\x5c\xb9\x9d\xf4\xa2\x03 t; \xf8\ +\xf1\x06\xa1\xbe\x19\x14\xbf\x84%\xafa\xd1\x9b o\x8b\ +\x14\x90\xf4\x06r\xa3nY9XU.,W\x16\xa6\ +\x83\x0c\x8ag\x00\x00\xe8U?\xfcb\x1d\xab\xa6n\xe3\ +3X\xc9\xcc\x0d\x0bOs\xc3:u\x03\xf7\xa9\xbdl\ +\xda\x0b\x1f\x1c\xc2\x03h\x7f\x9c<\x80\x00\xa0\x8c\x00\xe5\ +f\xb92\xa9\x9b\x96;\x8b\xcbe@\x0a\x96\x9eY\xc1\ +\xe23\xd79C\xcd%\xb4\x87/\x88K\xd5.\x1e\xb9\ +V\xb5\x7f-\xd0a\x17\x0b\x0fI]\x9fY\xc3\xcek\ +k>xk\xadGo\xad\xed\xf0\x8d5\xed\xbc\xb0\xaa\ +\x15\x14\x897P\xba\x9bNV\xa4\ +m\xce\x08a\x19\xae%\xaa\xe2O\xbfv\xbb\x8a=.\ +\x02\x00\xe5\x90J\xd54\xd7\xdc\x86\xb4\xb8\x19\xa9DU\ +\xd6\xd6v\x92\x86\xf4C\xf6&@\xda\x02\x8a_\x07y\ +;V8~\xe0f\x00\xdd!\xd1\xb8\xac\x5cP\xac\xa3\ +R\xddAH\x13:\x89\x5c\xfb\xe1\xce\xf7\xc4\x8d\xab'\ +\xfe1\xec\xf9\xc8r&\x0f-DV\x91\xcdk\xd68\ +n\x9e\xbfg9\xb7\x88G\xd0\x86L\xed\x93\xd3\x8e\x22\ +Gn4kIlU\xc5\x0c^#w\x1e\x0b[\xc4\ +\xe2\x16\x1fY.\xb18\x82\xeb\x0dc1!\x06P\xaf\ +Q,G'~\x94-\xe9\x00\xc5gV\xbf\xf3\xd2\x9a\ +\x0e^Y\xf3\xe1\x0bk9xf\xad\xfbO\xadq\xfb\ +\xa1U\xad\xdeu\xcd\xaa\xc2X\xb6\xe6ER\xb5\xe1S\ +\x9ba\xce\xa7lu4\xad\xb8F\x18\xe5\xe8\x940\x1d\ +GS\xbe\xf4\x1cy\xe9\x9a@\xe8$\xb2\x02\x94^0\ +\xf3\x1c\xe5\xbf\x04\x1c:\x9bY\x0az\xcb\xdf_[\xc9\ +\xfcs\x00\x80\x85\x12\xab\xf3\x08\x83\xaa\xebsG\xd7\xab\ +\xb7\x80\x13\x85d\xb5\xcb\xd1\xf68\x8cB\xde\x11\xefR\ +\x04\xc0t\xc6\x91\x0e\xbf\xaa\xdax\xe7\xce\xfe\xad\xba\xaa\ +C?\xdf[\xf1\xc2\x1b\xae\xf7\x02O\xf3\x94q\xe6\xf9\ +\x87\xefat<\x03\x00 \xce\x03\x94l\ +\xe2\xa4\xe2\xa3\xeeS\xe9\xa0#\x8bn\x03\xa4\xaab \ +T\x9aq\xd4v2\xbcK\xee\xac\xca\xa7p\xab\xa4c\ +9j\x99\x86\xa7\xc9\x9d#\xcc\x00\x8e\xb2\xd5'N\xf9\ +\x9a\xb4\xaa\xddzl\xb5\x9b\xf7\xb0\xa4\x9bX\xfd\xb1U\ +.\x1d\x10C\xb5\x01\x05F=\xb9\x8f1\xa8/\x8fJ\ +\xe0\xe1\x10-\x9a\x90R*\x07\x9bW\xd5\x93R>\x9e\ +A\x8d\xa7u\x12h\xe9\x82w\x80\x94\xe7\x01\x1e\xe3\xcd\ +$z\xff\x82\xdf\xbd\xb6\xd2\xa5\xb7\x00\x0f\x00,\x0a\x10\ +x\x86\xc9{\xae\xd1\x96\x0e\xa5V1M@E\xb6\xee\ +\x15\xe6\xaf}\x87\xd2\x09\xc0\xd0\xa4P\xe4\xbc\x99C\x01\ +\xf1\xbd\x18\xa0\x95\xb9\x13\xd0\xdeX\x85N>[z\x83\ +W\xd1\xd6\xf8\xc7\x84\xb6\xfbx\xad;\x90MB(\xb1\ +>K\xe5\xe3\x9d<\x83\xf6sh\x17\x97\xdbQ\x04\x98\ +I\x11\xd3\xbat\x00\xe7\x01\x00\xe0B\xae\xef\x8c.\x86\ +\x1b\x0a\x83H\x81@\xbc@\xb5\xe6\xda\xc5\x9b\xdc0\xed\ +\xe6\x98]\x0b3W\x9fwQ\x97\xd7m\xe9\x90\xa3@\ +\xd3\xb0\x85;\xa7\x01\xc0\xb2\x15\xa1\xb8\xb2\xe9k\x0c\xe4\ +\x1db\x94\xac\xed\x89\x95-?u'V\x97\xea\xe0\x02\ +\x91#,Q\x1eA-\xd4t\xea\xb8;\x1f\xd7\xa5g\ +d\x0e\xca \xcek\xd8u\xe4yP=\x0a`\xbaY\ +c\x0c\xc8(\xf7\x0a!\xd2\xe1\xd1\xda\xf6\xac\xc9!\xb7\ +5J\x0bX\xfa.u\xdav+\x95\x90,\xa5`p\ +\x8d(\xae2\x0c\x85R5\xa1\xd0\xb9Cj\x1b\ +\x97\x87\xcbw\xad\xe3\xe0Z\xae=\x8dKU\xb5\xd3G\ +\x82\x95\xe2\xcd\x94\xa3\x0b\x04\x1e\x000Du\xf4\xc0[\ +\xe4@&s\x09\x1b*\x07\xd7!\x97y\xaa\x10V%\ +\x962\x22\xf5\x01\xd0V1\xcd\xa1\xb89\x95yK\xad\ +\x83\xabhR\xadn\x06\x99&\x8c\xc3a4M, \ +\xb4j\xe5\x11\x92\x0f\x08b\x5c'\x09\x11A\xf2\xea\x10\ +d\xcbm\xda\x14\x13%\xae\x8a\x08j\xe3\x87z\xf5i\ ++\xb8k\xe6\xd0A\xbe\xdf\xb9\xe2\xce\x08\x08\x93\x02E\ +\xba\x16\x9d\x84\x11\x9d|\x15\xee[\xc7\xb5o\xc3\xb2\x19\ +d\xc8\x5c\xc1j>Hlje\xa3%\x95TY|A\xa9\xc5\ +\xe7\x17[B\x01R\x5cn\x89e\xd5\x96\xc8\xdf\x12\xab\ +[-Q\xdd=I\x01\x93j\xb5OP\x99\x10\xa2\xf7\ +\xbc\xa64\xa8\xc8d\x84\xfb?\xdf2\xa6\xc5.\xadI\ +tk\xc6\x14\x0f\x86g\xd2Q.ZA\x0dq\x7fj\ +4\xa1\xd2y-d)\xbcj\xc3\xad\xb7\x90\xc4\x18k\ +\xcb\x9dVf\x05\x02\xc2\x81\x1aQ\xa8\xa5K\x04\x008\ +\xe5\xe3\x01r\x05\x22\xf4\xa3\x83\x8f\xa2\x0b\x067-\ +_\xfdwQ|\x18ku\xcd\x91y\xaf\xa9\xe0\xf0\xf0\ +&\x80\xda\xc6\x02\xf8\xec\xcc\x11D\xe8&\xd6\x7f\x9b\x94\ +\xe5\x1e\xf1\x96\xb89{\x8a%\x92\xe3\xe2Ju\xbe\xbe\ +\xeb\xcb\x8b\x87\xd1Z\xbf@\x90\x5c\xafU;\xcd?\x8c\ +a\x89X_\xdb\x14\xe4e\xc1\xedr\xf5i/\xe3\xa0\ +v\x13\xc3\x96I\x91\xdc\xe1N\xb8\xd5\x90\xd8\xbe\xa6\x87\ +\xdd\x926\xf7\xcdgu \xa3\xdfmPQ\x0b\xf7q\ +\xcb\x90\xd2\xaa\xda-Y;\x84\x0a\xab,!\xbf\xdc\xe2\ +sK-.Z\x8c\x14Z\x5c.\x92Wdq\x05%\ +\x16W\x5c\x01\xe7Q\xa1i\xbd%\x947\x10\xfe\x1a\xbd\ +W~\x8e\xd7\x1e\x832\xfd\xdc\x02X:\xe0C\xbdn\ +\xc7\xaf\xb74-O\xe1M\xf5\xfa\xdaum\xad\x05\xac\ +\x98\x16\x82\xdc\x01\xd0\x8d*\x00\xd1\xd4\xf7$\xafX\xa8\ +\x96\xbdQL\x1a\x8a\xd1\xbeKu\xfa\x129\xd7\xbc\x88\ +vj\xe9@/w\xa8\x17\xfcI\xe72)t\xaac\ +{J\xed\x90%\xb9\x92y-\xa6IT$\xd3\xebB\ +u|\xa5*\x97\x09\xdb*\xa7\x03\x10\xdae\xa4\xc5 \ +\xaf\x09\xa5\x1a_\xceXLB\xc5\xb0[7N\xe5\x17\ +>\xd0\xa4\xae\x96!\x14\xad\x16\xe9\x9ayr\x07@!\ +\xda\xdd\xab\x83\x08\x0b\xc6\xbc\x83\x9dJ'O\xact\x02\ +W?\xbeg\x85XWTs\xff\xe4\xfdA7\xd0\xe7\ +3\x81\x9d3\xc4\xb7\x19B\xc9,\x80X\x02\xb9W\x89\ +Y\xbb\xa4~'V\x86g(\x83i\x17\xb9UC\xb2\ +\x0fMBqm-\x93\xaa\x10\xc4k\xcc\xac\x92p-\ +\x0fk\xbd\xbb\x97\x9b\x1e\x00\xbd\xdck\xdb,\xaer\x85\ +\xd0\xb0\x09)\xc4\xdd\xaa\xe5\x9c\x96R\xc92\x94;\x8b\ +\xbf\x04\x14[Ic\xbdC\xa5q\x89\x0cV\xaaV\xce\ +\xb4\xd1\x93L&\xa9X\xca\xaf\xb1$IA\x8d%\xe6\ +W\x03\x84J\x80Pf\xb19Ev%\xa7\xd0\xae\x00\ +\x86+\xb9\xbc\xcf+\xb1X{\x98\xd16\x8a\x82\xa7\ +\xf1 \xcb\x90\xaem\xc8\x17\x00\x02\x00e\x0b\xa4Q\xa4\ +o:\xc2E\x93\x1d\x02\x9b_[\xce\xe5\x165Pd\ +\x1f\x89B3)\xa86bh>B\xed\x5c\xd4\xcc)\ +\x83A\xd0n\xd7 \x9e(8\x827\x80Sh>=\ +\x80'Sv\xa0r\xb74H\x90\x0aJRA{*\ +\x03\x9e\xc2\xa0$\x97\x01\x80\x92FK.i\xb0\x94\xd2\ +&\xa4\x05i\x06\x14XsA\xad\xc5\xe7U\xe2\x05P\ +4^!\x16\xafp%\x0a\x08\x04\x86h\xc1'\x89u\ +\xaf\x85\xee\xef\xb1\xb9\xe5x\x8cZK(l\xc1\xab\xf4\ +\xe0]\x08\x09\x18\x94\xbf\x11\x0e\xc3sd4\xe2\xb5\xea\ +\x15\x93\xb1tU\xe5hM^\x16\xe9J\xc3\xb4\x0dL\ +[\xc1\xcf\x97\xc4U\xc3W\xa6\x9e\xc2C\xeeh95\ +\xad\x8e`\x88\x1a\xff\x0a\xc6\xa9z\xe9\xaeU\xcci\x16\ +\x900;L(\xeb\xd6fU\xc6\xb7E}\x8d\xf0\x96\ +\xcd\x00\x88\xb1O\x82K\xa9c\xba\xf6\x18\xa8\xf8\xf5\x0a\ +\xdf\x7f\xa9\xb4\xd3.\x93\xc5].iCZ\xed\x0a\x02\ +\x00T\xb9\xea\xed\x91SM]:V\xa2\x93?t~\ +]\x1e\xa9\x95:h\x97J\xe9\xb3w\xacR\x87K\xe9\ +\x00\xa2\x19\x08\xde\xd45w\x14\x89\x94\x9f\xab=\xfc}\ +\x9a\xf5\xf3\x8a=\xdc\x9a\x7f\x83J\xadT\xac\xd0\x8b\xd2\ +\xbcx\x99\x0e\x18\x02\xedS\xee\xb3\xf9c{\x84\x80\x9b\ +\x84\x83\x07V\xbd\xf6\x14rH\x96@\x9e+\x82\xa3\xb3\ +\xfeu0\xb5\x80\x90\xa1\xa6\x14\xae\xc7\xae\xca\xb5T\xb1\ +\xd3\xef\x81@\xe1AS\xb1\xf24*\x97\xee\xc7\xdd\x13\ +\xf3\xfd\xc4~\xd7-K+\x88\xdaI\xdbA\xcc%\xef\ +\xcd\x04\x0c\x01\xbe+\x83\xefJ\xab\x06\xecd0i\xd5\ +d15\xdcWM\x1f\xef\xb9G5\x96\xd6F\xcd\xa2\ +\x06Wf\x1e\x87W\x88\x05\x0c\xb1\x02C\x14/\x80g\ +\x88uJ\xf7\x00\x10\x0b0\xe2\xf8}\x5cn\x05\xde\xa3\ +\xce\x92\x8a\xda-\xad\x82g\x84|e\xb7@\x0c!Z\ +\xd90\xee\xcc\x16\xc2\x1b \xf8\xdf\x01\xa0\xfa\xc0\x81s\ ++\xedv\x15\xc5\xaa\xdeM(iw\xc5\x9c\x89\x00!\ +\xa5z\xc8|\x8d\xd3\x10\xd55\xbc\xec\x915\x10:\xbb\ +w\x9eX\xcf\xeeC\xeb\xdc>\xb3\xe6u\xa5\xdb\xea\x18\ +\xbeLX\x80\x97\x0dh\xe7\xb5j\x12\x08#dV\xc9\ +\xcdZ\xfe\x1d\x03\x04C\xe7 \xe8B:\xcc\xdb\x19\xd4\ +\xea\xd2\xf9\x18\xb7\xf9\x92|>^\xdb\xa4\x19\x10\x15K\ +\x04\x19\xd4\x1c\xe2\xba\x8eg\xd3IS\x95\xa4PU0\ +\xfaJ\xac\xb5\x1c\xab\xd5!D:[ \x0fr%\xcb\ +\x0f\xf7.[V\x17\x04\x88L\xc0\xafE#\xe2\x9f\x03\ +@\xadJ\xbb@\xb3\xb6Y\x03\x82\x94\xba>R\x93Q\ +\xd39?y#[^{\xfa\xf5'\xd6\xb0\xf3\xc6\x1a\ +w?X\xdd\xd6\xe7\x10\xc5\xb7p\x85\xe7\xb8\xba\x07\xb0\ +j\x80\xa0\xe2\x0f\x91#\xb9PGt\x86\x01\xc2 !\ +\xc1+\xb4LV}\x01\xb16\xad\x03\x97H\x5c\xd4!\ +\xd8j\x8f\x96\x05;\x0e\x0f\xdc\xc4Jn\x03\xd2;V\ +0|\xcb\xf2\x06\x8f,\xa7\x17\xa5t\x12\xea \x97A\ +\xee5\x13\xf2\xa6\x8c&C\xc5\x15\xd5\x84\x1b)B;\ +u\x8b\x18\x97\xc2&\x80\x00\x18\xf2\xb5\xf7\x007\x9fW\ +\x81\x94#\x00\x02\xf7\xaf\xd78~\x8e\x07(\x89|6\ +\x05\xeb\xf7\xd5L:\xe5G\xbb\xf7-\x8f{\x88\xf6\x1e\ +Y\x88T5\xa0\xba\x86\x06u\x0f\x13+?\xaft\x86\ +\xf0z\x1bM\x07x&B\x1c\x9e \x09KM*\xeb\ +r\xaf)\x80=\xbd~\x1c\xf0.\xc0\xb3v\xdc\x86\x9a\ +\xe1\x83\xe76v\xf2\xdcF\xaf=\xb1\xbe\x83{V\xb7\ +\xa2\xb5\x8c=\xb2\x02B\xf4\xd8!\x19\x06\xe4PF\x00\ +g\x13qW\xf6\xa6\x8d\xad:\x87\xc0\xab\x19$\x9c\x02\ +~\x85\x0b5\xc1\x88QW,m\xceL\xac\xed\x86\x88\ +\xf4\xe3\xaa\xc7,\x9b\xfcWn\xbaD\xf9\xfc\xc2m\xab\ +\x82\xb0U.\xea\x0c\xbaS\x5c\xb7N\x12\xd5qk\xf0\ +\x04\xed\xf7W\xf5M;\xfcA\xe4\xaaY5\xec\xaa\xb4\ +Q\x95\x0d,T\xf5~\xb5<\x9c\x06V\x16\x867\xc8\ +\xc0\x0bduN\x03\x80\xabV\xbep\xc3\x1a\xb6\x9eZ\ +\xdb\xd1\x07\xeb\xbc\xfe\xd1:\xae\xfd`-G\xdf\x03\x88\ +o\xacj\xeds\xd7f\xbe`\x82J\xd6\xb0\x88\x87\xd9\xb5\ +\xda\xb5\xdb\xd6\xb2\xff\xc2\xba\xae\x7f\xb0\xbe\xb3\x8f\xd6\x0f\ +\x08\xfa\xef\xfc\xc1\xfan\xfff=\xb7~\xb3\xae\x93?\ +Z\xfb\xfeO\xd6\xbc\xf1\xad\xd5-\xbf\xb7\xca\xd9\x17\x90\ +\xcf\xc7\x84\xa7\x07V4\x86\xf0Z2\xf1\xc8\x01\xa4b\ +^\xd6\xfe\xb9\xd5\x01\x9a\xc6\x9d\xef\xacy\xffGk=\ +\xfc\x09\xf9\xc1\x9a\xf6\x00\xc0\xc6[w\x08s\xa1\xe6\x1f\ +H=\xb3T>&\xbe\x22O\x85B\xbd\x9d3(\xdf\ +\xf1\x0c\xd5\xdb\xc1\x17\xc8\x1etB\x98J\xadt\xd6\x8e\ +6\x8d*\xadS1\xaa\x8f1\xc8P\xaa\xa7\xcf\x10\xab\ +\xfdp\x8c`\xeb*\x00%+B\xe1\xda\x1f\x99\xeb\x1a\ +>\xde \x8b\x22\xa7w\xfd\x15\x8e\xed\xa2\xd9\xa3\xa6\x94\ +?e*X\xaa\xcb\x14T.\xcew\xb9\xfd\xfb\x18W\ +\xb2t\x03\xe1\xd5\x81\x9b\x85p\xad\xda\xa9\x03\xabW\xaf\ +\xa4\xd9\x13\xab\xc5C\x17\xaa\xe1v7Y\x01\x86\xa0z\ +\x0au!Ok^\xe7;VP8\xd6\xaf\xcc\x03/\ +)q\xe1\xe7\x5cRI=\x95\xa1\xc4\xa4\xaa\x22F-\ +\xe2:\x17]\xd7\xa8\x001=kx\xcb\xc2\xa3\xbb\x16\ +\x81\xe1\xabS\x97v\x05\x05\x07A.nH\x07/\xa7\ +\x92\xdb\xba#Z@S\x22\xb1\xcc\xabF%>\xcb\xcd\ +\x90\xc7'\xe2\xd6<\xe1\xbd\x03\x81j\xfd4\xa8\xbd\xa0\ +\xbb\x97A\x1f\xe4\xa6\xf1\x02#+\x10\xc1\x03,\xf5\x0c\ ++}l\xedGo\xac\xfb\xc6\x97\xd6{\xeb;\xeb?\ +\xfb\xd9\x06\xce\xfeh\xfd\xa7\xbfY\xdf\x8d?Z\xf7\xf1\ +/\xd6\xb1\xf7\x835c\xd1\x0dWQ\xa6\x9a?\x22\x8d\ +W\xbf\xb2\xf6\x9do\xad\xfb\xe0{\xeb=\x06<|\xb6\ +\xff\xd6\x9f\xac\xeb\xe6o\xd6q\xfdWk;A\xf9\xfb\ +j\x12\xf9\xc6*Vt\x82\xc9\xa9\xe9\xa8\xfa`\xd72\ +!\x0b\xf0_X\xbeS\xbe\xe2#\xf7\x09hS\x9a\x08\ +\x0b\xad\xa4b<\xafkx\xa1B\x0e\xa5\xc5*\xcc \ +\xdb\x08A\x90\xb3U\xef7\xa8\xe2\x8e\xf3\xbe\x08Xv\ +\xb0\x93\xd4\x14\x00\x84\xe0!\x11\x94\x9d3\x08\xd8T\x98\ +1z\xc7r\x08K\x91\xb1;\x16\xc6+\xa8\x8eA \ +Pk\xf7tM\xcfb\xa9\xea\xc4\xe6\xa4\x19\x01tI\ +\x00,\x19IQA\x0e\xa9of\xe7\xbcE\xdc\xe4\xdb\ +\xb2\x855\x19\xd7\xb9j\x01\x00\x97\x8e\xb2\xd3\x90\xd4\x06\ +\x94^\xb7\x88\xc1\xcd\x91\xefk\xfa~\xd2\xcb\xfb\xc5\x9d\ +\x5c\xea\xa9\x13O\x14:\xbd\x99A\x81-&\xa5m\x89\ +\x0bx\xedB\x5c-`\xf7\x1aV\xae\xa5N\xed\x02\xe2\ +\xe1\x10m\x11\xd3yv\x17\xe7\xe1k\x8d<\xd9\xcd`\ +q\x83nzQ\x02\xc1Qy\xb4\xfeF\x8cs\xafz\ +\x10\x80\xa2R+o\x070\xee\xb3\x0e\x06\xde\xd8\x8fE\ +\x0d\x935La\x1d\xcbX\xe46\xe9\xe0\x09@\xb8\x03\ +\x10\xe0\x04\x87o\xad\xfb\xdaW\xd6w\xeb{\x1b8\x05\ +\x08\xa7\xbf\xa2\xd4_\xad\xe7\xfa/x\x84\x9f\xad\x030\ +\xb4\x0b\x10'x\x8a\x9b\x7f\xb2\xa9\xfb\x7f\xb3\x85'\xff\ +l\x8b\xcf\xfe\xd5\x16\x9f\xff\x9bM?\xfd;\xe1\xe47\ +k\xbd\xf6\x9d\xd5\xef\xe15 \x9aE\xf3g\x96\x0bw\ +\xc9&\xbb\xd1Ii\x8a\xad\xae\x22Y\xbbq%\x9a<\ +\x11\xb1\xe4\xf7\xda\x94\xa9\xbe\x89j\x9f\xa7\x1a\xbc \xde\ +Bg\x1ahuPk\x0c\xd1\xa9\x9bn\x8d!\xaa\xb6\ +\xf7S\xeao\x8cu\xab\xa2\xc7\xb9\xf9}g\x8dY\xbc\ +\x86 \x81r\xcb:\x926wR\xd3\xb8O\xdc\x8e\xea\ +\xc8\xf8]>\x7f\x1d\xb2\xba\x8b']uqZ3t\ +*\xd3v\xfb\x0b\xb4\xf9T\x00he\xfcZ\xb1`\xb5\ +\xb1\xc5S\x09\x94\xee\xe0,\x8c\xccY0\xd6\x9dJz\ +\x99R\xc7\xe7Pz2\xdc(I\x8a\xaf\x82\xf4\x91\x8a\ +\xbacgH'\xf5\x9a\xa0\x0d&\xae*X\x15\xc1\x18\ +'\xd7\xd2Q;\xaeGPJ\x9b\x0a\x05\xbd\xe9^)\ +Xu\xed\xae\xb8R\xacZ3N(^u\x82^w\ +\xd0\x7f\x88\x88W\x1a\x0f\xe0\x1aE\xa9v\xa0\x83\xfc\xfd\ +BT\x89\xa3\xbf\xe9\xb3\x8e\xf0\x88\xacM\xe0\x9a\xb45\ +\x8b\x1c\xb7i\x10\xf79B\x9a6I\xca\x07\xb2\xe1\x1d\ +\xf9\x13\xa4\x86:?x\xed\x1e1\xfb\x99\xb5\x1d\xbc\xb1\ +\xce\xe3\x0f\xd6}\xf2\x15\x80\xf8\xda:\xaf}c\xed\xd7\ +>Z\xfb\x8d\x1f\xad\xe3\xd6/\xd6M\x98\x18~\xf0W\ +[|\xf5\xaf\xb6\xfe\xee?\xdb\xda\xdb\x7f\xb7\xe5\xd7\xff\ +bSO\xfel\x1d7\xbe\xb5\x9a\x9dWVJ\xea\x94\ +\x07w\xc9\x06\xd0\xfe\x0eU\xc82\x08Xy\x1c9q\ +,\xe9\x96\xfa\xf1hBD{\x03\xe5\xbdR\xb4\x8b\x07\ +\x17\xaf2/uP\xd3\xd15\x1e\x00\xf0\x86\x22\x8f\x93\ +\x84\xc4\x19\xb2\x0b\xb2\xa1\x5c\x1dqCZ\x1c\x99\xba\x0d\ +\x08\xce\xe0N\xb7\xc8>\xae[\xb0\x070\xf4\x1c\xb9x\ +,B\xaac\xdb\xd5\xb5m2^\xe9g\x17c\xdd\x03\ +\xdc{\x00@\x17\xe3\x8fB\x9bb\x83v\x8d|\x02\x00\ +\x17S\xbe\xaa\x1e\xb9\xaa\x0f\xcc`0\xd4G\xc8u\x02\ +\xedSQ\xc4\x0enOK\xaf\xca\x10\xd4N]\xc0\xc0\ ++h\xb5K\xcaw^\x83\xc1\x13\xdb\x96\xf2\xbb\x17x\ +\xd5\xba\xff4\xa9\x0d\xa9\xa3\xbaV5\xc0\x0b\xeaQ\x84\ +\x8a,\x95B*%#3\xd1*\xa0\x8aJ3;f\ +\x89\xa9\xb0k\xfe7S\xc5\xa6\xfd\xa4n\xc3X\xe3\xf8\ +\xb6\x85\xa7\xf7\xac`\xf1\xd0\xaa\xd6\xafY\xdd\xe6u\xab\ +Y?\x86\xe5\xef[\xc1\xb4\xb6\xb5\xcb\x9a\xb1\x8c&\xa5\ +\xa2\xc4\xf6j\xe2=\xd6\xefu\xe1\x82\xf0a\xf9\xca\x8b\ +\x05rw@\x04\x0aw\xc0\x05\xe0\xda\x8e\xe5\x8aI\x09\ +\x8d\xb2Pg\x08\x840-\xee\xb8Jg\x81\x14@\x07\ +\xe1\x07\xd9:\x17\x99\xdc[\x07P\x14\x12\xdfK\x94\xa5\ +\xa8\x00D\x95?\x0b:\x1f\xe9\x85\x15\xce=s\x05\x22\ +\x02IX-\xe6U\xf0\x01\x00\xdc\xa9 (\xdc)\x05\ +\xde\xa0n\x9f*\xd4Hi\xdf@'KX?\x06\x89\ +\xeb\x96E\x0b\x00J\xdb\xdc\xa1\x8f.\x04\x13\xb6\xe55\ +\x94\xde\xc9C\xe0\xee\x93D`\x11\xb5\xd4Q\xdf'\x1d\ +w'\xb2\x97\xaa\xddUR\xbe\xeb1\xa8]U\x07x\ +l\xd5J\xee[\x8c\xeb\x80\x85\xeb\xf7\x94\xafmCr\ +7r\x19X\x06\xee\xc6-\xa2\xc8B $j)\xef\ +C\x99Z\xea\x0cB\x14\xb3q\x89\xe1!-\xb3\xc2z\ +y\xd56(u\x08\xd5\xf1\xe8\xae[6\xdeCLZ\ +e\xe5\xea\xc9\xab\x1e\x81\xb2~\x9d\xdf\x97\x06\x17\xd0Y\ +~\xaeEku\x17\x0f\xaa\x06M\xb0\xf0Zn^=\ +t\x9dh\xb2BG\xa4\xea\xd8\xb7\x01\xdc\x9dz\xf9\x03\ +\x12\xbcEr\x1b\xf7\xd6\xc9\xf7\xf5N[\xe6\xc0\x0c^\ +\x88\x10\xd2?\xc5\x83\xa9t\x9d\xfb\xc7\xb3$\xaa\x13\x99\ +k\xda\xc8\xf7j\xd7\xef'\xa6\xaf)j\xad2\xea\xbe\ +T\xc6\xae\x9dP\xdc\xb7\xac\x1f\xc5\x8b\x95{\x87>\xa8\ +N\x81\x01\xe7s\xe9J\xf5 \x87\xfefR2\xb5\x8b\ +%{\xd2\xb2x6\x80\xd7A\x91\xf9\xe3\xb7\xcd; \ +\xf3\xa5\x95/\xbf\xb5\xf2\x95wV\xb6\xf2\x16\x0e\xf2\xda\ +\x8a\x00A\xc1\x9c\x08\xe0}\xf8\x802\x80\x13\xc0s\xc0\ +8j^@\xa2\x94\xd0\xab\xdd\xd7^\x08\xb5\x81Mj\ +\x5c\xf4t\x22\x97\x8e25Q$\xf2\x97\x06/\x10\xf7\ +J\x15y\xe4\x1e]6\x86\xbe\xdc\x16t\x94\xef:\x97\ +\xf1|\xee\xffd\xc8\x18\xb6\xdc\xbeZ\x00\xf8;\xb6I\ +\x155=\xae\x1215\x98\xde\xb0\x18\xa5\x09Z&\xd4\ +\xd6\xe6x\x5c\x88\xa6\x0c5\xc5\xaaT\xc8\xc5\x1c5+\ +r\x1b+\x18\x04\x18\xa9\x5c\xb4v\xb9\x04q\x85\xda\x1d\ +\xa4I!m|\x10\xc9\xca\xd6\xb61\x11'H\xa3\xda\ +\xc4kyW[\x97t\xf8B\x9av\xe5J\x9aG\xdd\ +t\xb3\x94\x9a\xa4\xd5+\xd5\x18~\x9a\x8e\xee\xc02\xbb\ +\x11Y(\xaf\xea\xdf\xc7\xdf]3\xc72\xbd\x22\xe7\xfb\ +\xe0\xdd\xc9\xa0j1W\xc7w\xd4w\x02bO\x12\xd4\ +\xd0AM'\xf9\x9b>\x13\xcf5\xbc\xef\x04`\x88V\ +\x175g\xe1:\x81\xe9\x189\xac_\x80\xfd\x04Z,\ +^g\xf4\xa7\xe36\xd3\xc9\x93\xd3\xf1\x84\xe9\xa4\xb4\xda\ +\xd1\xe4\x94\x0f#\xcf\x84(\xea\xf8{\x9d\x0f\xac\xd3\xd5\ +sGN\xacH\x85\xa6*\xcb^yi\x95:\x80z\ +\xfd\x9d\x13\x95n\x95\xae\xc8\x13\xe0\x05\xa6\x1f\xc0\x13N\ +\xdd\x92\xb5\xdb\xd6&\x00\xb85\x0b<\x806\xc2\xb4\x12\ +\x06\x9aW\xf1\x84R>\xee_\x06y\x0e\x00q\x00\xdd\ +\xb3\xbc\x91k\xd3\x0f!O\xe15\x99\x9f\x93\xc8\x0c4\ +\xe9\x96HJ\x9b\xe0\x84\xf7\x18\xb0\xba\xbd\xab\xd6@\x8d\ +\xbd\xb5\xe4\x9f\xd1J\x18\xd7>K\x1dx\xd9@\xf8 \ +\x83\x88\x89\xab\x80\x11K\xb4*\x05\x82\xb4@\xa1\xedQ\ +\x1e\x08.\x88\x87@ \xf4\xc9z\xa7\x19\xa8Yn\x5c\ +\xb1z\x09\xd6\xbb\x86\xe5\x0b\x04[\x16\xea\xc7\x0b\xa8\xe6\ +^!\x02\xf7\xefN\xf2f\xd0\xd4^US\xc4\xb2z\ +7[\xa85\x02\x94\xac\xae\x1eq%\xcd\x16[\xdc\x08\ +1k\x22.\xab\xdd\x09\xe4\xacL[\xb2\xb4CW\xfb\ +\xf4\x1b\xbd\x8e\x9aH\x82V\xeb\xf8\xbc\xa6e\xe3\xf4w\ +\x00\xa1\xedY\x97\xb5s\xa7\xbc\xc9\xc9\x95r\xbeO]\ +\xc0\xb4\xc1\xb3R\x80R\xb3\x06\xafa\x83\x00\x90\xa4Y\ +\ +\xb9\x7f\xbeX\xb5{:\xf3G\xe7\xd4k\xb7\xabw\xfa\ +$i\xd1\xb0\xb7]\xdc\x89\xab\xf4\xdd\x01\x04\x1b\x0c\x12\ +\x5cA\x9fo\x9b\x03\x08\x0c`# \xd02.\x00H\ +V\xd3\x22Y2\x00P\xef\xdc+\x05\xea\xa6U\x07\x10\ +\xb4\x1b\xb7\xfe\x5c\xf9\xb5\xe7\x00\xb8P\xbe\x07\x80+\x80\ +\xe32\x00\xb8T\xdc\x8a\xd2\xdb\xce\xa5\xf5\xd3\x1aw\xac\ +z\xf5\xaa\x0d\xec'9\xef!\x04\xe84\x8f\x7f\xd1~\ +FG\xc3\xa6K\x18\xcct\x065\x1d\xc5g\x90+g\ +\x10\x163PH\xba\x04\x10\xb8\xbf\xf1\x99\x0c,Mg\ +\xee\xeb8y\xed\xf9\xcfF\x99\xda\x09\x1c\x1d\xbfa:\ +\xad\xdbm\x03\xd3!\x17d\x06\xd1\x09\xc9\x91;\xeb \ +G\xbd\x95D\x92\xe1H\xfa?\x85\x1b\xed]\x14\xc7\x10\ +\x89S+Z\x85_\xb5\x8e\x91b$\xcaP.\x00\xa0\ +\xc6\x0f\x0a\x03^\x9bZ\xbc\x81\x13\xbc\xb3\x08\xbb\xe6\x03\ +x\x06\x85\x02\xcd\x1e&\xab\x8c_\x93u\x22\xb0J3\ +?q\x05\xfe\xce3+\xe5M\xd0\xca\xa0\xf6>2\x16\ +1\xf1M \x0f\xcb\x8c\xaf\x1f&\xee\xfc.\xf6\xa3|\ +m\x0b\x13\xf1s\x9d\xc3 <\xae\xe9A7)\x906\ +B\xf20a2\x80\x9cQ=$\x83\xc0\x83G\x95\x12\ +\xb9\x87\xc5\x1b\xf4\xc3\x09\xc4\x92U&\xa6\xddA\x9dX\ +\x8d\xbc\x86\x80 O\x00\xd8\x92d\x99\xb8~\x0f\x04u\ +\xe7\x00\xf0\xe4\x12\xca\xbe\x8c\xd2/\xe7\xab\xe7\xae\xac^\ +\x9f!T\xe0\x1d.\x94\xffYI\xbb}V\xaa>\x7f\ +\x9d\xae\xe7\x9f:_\xc6^t\xe9\x02\x14\xde\x0a\xde\xb9\ +\xf0\xb3W\xad\xa3>DjFE\x18`\xe0\x9d\xa0\xe8\ +4\xd8\xb6\x13\x5c\xaf\x13\xde\xa7\xe2&S\x01C*\x03\ +\x9dJH\x10`Dl\xb5mNg-eiZ\x18\ +\x00\xb8\xdd;\xc3\x9a\xf5;\xc4\xc2\xb5X\x06)\xd6\xe4\ +\x91z#\xa8.QS\xc5\x9aO\xd0\xc4\x1a\x99\x94\xc6\ +Ss,\x8a\xe7\xca\xb6t\x91\x14P\xd5O^\xda\xa4\ +\xc1\x04\xf4\xbc&Wz\x92REv\x02\x00RP~\ +\x0a\x03,Qc*\x15r\xa8TMi\xb1fF\xd5\ +\xb4!K\x0a\x1f\xf5\xb6o\x85\xb5\xb1\xa6o\x1f\xc0\xef\ +`$(\x9c\x8cB%n:B\xc7\x1d\xdf\x8eBd\ +\xf5N\x5cvD\x86\xe1@ \xc5\xe8Tt\x8c\x10\xe3\ +\x8b\x93`\xe9\xf1b\xf6\x80\xd3\xb5tq\xa9 @\xf8\ +\xa4|\xadJ\x02\x00\xdd\x97&\x81\x00\x808D\x8a\x8a\ +N\x00\x81\x97\xbaJ\x88\xf9\x9aY\x04\xb8:e=\xb1\ +^M!&P>\xafx\xf6\x04\xf8YL\x22\x16\xae\ +9g\x89;\x18\x8a\x9bR\x1f\x1b1b\xb9*-r\ +H\xf1nkr?\xb1]\xee]\x9d+\xc9\xfde\xed\ +\xd1\xf1C\xa7x\x1d\xc7\x1e\x1e\xe5oC\x9b|F[\ +\xc4E\x0eQ\xf8\xe0U\xcb'M,\xe4oE#\xbc\ +\x0eoZ~\xff\x8aE\xbaf-K={\xea\xff\x01\ +\x02\xf1\x01)\xfd3b\xfeg\xe7\x00\xb8\x5c\x80\xe5K\ +\xf9X\xb1\xd7\xe0P-\xd5\xa4\xf4.\x94\xdf\x83\xf4\xda\ +%\xd5\xbb92\xab\xd8I*\xa4\x936\xca\x08m\xfc\ +\xdd\xe5\xfdj.\xa9\x89\x1f\x95[\xa9\x0b\x89\xa6~\xf9\ +\x9c\xbah]\x9c\xe2\x9d\xc8\xff\xa8\x05]R\x85\x06\x19\ +\x17\xcb\xa0{5z\xe7B\xecu$Li\xad\xa6\x89\ +\xb1n\xb7\x19EE\xa9\xc3\xc8\xc01\x1e\xef\x00\xe5\xc3\ +\xec;\xb6\xe0H\xe4\xf7\xa4Z\xee\x087\xf7\xba\xe1D\ +\xe7*\xb9\xc3\xb34\xa7\x02Q\x96\x91\xc9\xd8\xd4\xb0\xdb\ +\xedADI\xf1R\x94\xe2\xb5\xc2\x03\xfc\xc0u\xf6r\ +`\xe0\x9ep\xff\xc9\x10\xf4d\xcd^\xf2;\x15\x97\xb8\ +\x0ej\x02\x81\xd6\x06H\xe9U\x83\xa8\xdfy'\x9f\xab\ +\xef\x82\xdc\xbe\xc2\xc79\xa8\xf8\xfeD\xae\x97\x00\xf8b\ +R\x94N\xb8x\xa1\x19/M\xf5\xe2\xa6:u\xd0\x13\ +\xae^q\x0e\xe5\x8b\xdd\xab#\xc8\xc5\x89\x1f\x91\x91=\ +\x8b\x8e\x1dX\x1e\xca\xcfG\xf9y\x13\x00at\x97\xbf\ +\x83|\x95$\xf5\x00\x9enx\x02\xee_^@\x07'\ +\x16\x8d\xefY\xe9\xc4\xbek\x10\xa53\x04s\xfb\x97,\ +\xd49c\x01\xd2\xc2Truu\x09\x8b\x13\xa9\xc3\xda\ +/\xa9k&\x22\xe5_QGP\xe7\xc2\xd5C\x08\x92\ +\xaa\x82F\x14v\x05\xe5]\xc6b/c\xc1W\xb0\xd8\ +8\xd7\xff\x86\x87u\x82\x9b\x13\xcbE\x89\xde\xa2\x88\x1a\ +/j&P+\x7f\x84:\xf7\x9e\xf8\x8a\x88l\x094\ +\xf1\x02\x8dZ\xb2\xa9S\x09 P\xa3F\xb7\x98\x82\xeb\ +U\xd7N\xa5Ub\xda:\x90!\xbd\x97g\x1c\x14\x00\ +\xb4R\xeaUQ\x87\x01@X{\xf2\xfb\x04\x84#\x04\ +P\xf4\xdd\xe0w\xa7\xde\xb4\xf0\xe0)!\xe2\x16\xef\xaf\ +a\x18\x87\x84Q\xaf\xc3\xba\x1ap\xc9\xe0\xd4=L\x8b\ +3\xee\xf8{\xbdb\xb9Z\x14rk\x03\xfcN^\x22\ +I\xf7\x80\xfbV\x88Vog)W\xe0p\xab{Z\ +\x0f\xa8U\x95\xb0\xb7&\xe0X\xbe\xd2z\xc7+Tz\ +\xa6\xb5\x01=\x0f\xbf\xe7\xef^\x97\x10\x01@\xeeB\x84\ +D\xcaG\xe9\xda>\xadrj5!\xc8F\xd4\xe0I\ +;{\xc3\xb8\xf1\xb0&~\x90\x88\xce\xf0\x19\xd9\xb1<\ +u\x07A\xf2\xb0\xee\xa8&\x83\xf8\x8c\x0eTRg\x11\ +\xd7V\x8e\x98'\xa2\x98;\xec\xed\x15,\x99:B\x0e\ +\xadhB{\xdb\xd7I\xa3\x16\x5c\x09\x99N\xe2\xd0$\ +\x86,\xf6JI\x97])\xd6\x5c=RDL/\x16\ +0\xe4\xd6{\x9c\x82\xdcC\x80\xe48\x1e\x22\x0e\xeb\x88\ +#\x97\x8d\xaf\x9f\xe7\x814\xa1\xb5\xf8;Y` \xf9\ +\xbd\xe6\xd3yPgI\xce\x9aD\xbap\x7f\xb8t\x0d\ +F\x1c\x00\x89\x05\x10q(]\xe2V\xcf\xf43\xa0Q\ +-]\x1c\x96\x13\xcf`ky;\x19\x22\x9c\x06\x01\xce\ +\xe0\x99\x02Z\x0a\x86\xffD \x80Q\xedNV_\xe5\ +q\xed\xf5\xd3\xa6\x8d\x07\x18\x86\x96\x9e\x9f[\xc9\xec\x1b\ ++\x9b\x7fg\xe5\x0bo\xadl\xe15\xe9\xa2\xa6\x88\xef\ +Y\xee\xd8-\xc6\xf1\x84\x90\xaa\x89 -\x09{L\xdd\ +\xad\x0a^\x00\x00\x8f,q\xcc^i\x1daZi\x9e\ +\xab \x92\xf25m\x8f\xd2=\xe5{\xab\x81z\x9f\xa4\ +T\xb2j\x1c\xa5C,\xdd\xb3\x09\x04\xe7\x00\xc0P\xe2\ +\xf5\xec\x8cA<\xff\x1b\xe3\x8e\x82\xc3\x0d\xb9\xa5`\x94\ +\xa7]8Y(22\xb8iQ$\xd7\x89\xe2\xf8\x06\ +\xf1\x5c1\xfd\xaas\xeb\xb9r\xe5#[\xc8\xb6\xb3\xf0\ +\x5c\x00\xa0]\xc0jx\xa4\xb0\xa1\x87rm\xe5\xf0 \ +\x11\x88Q\xde\xe8\xa1\x15\xc0\x88\x0b\xe51\x00MD\xfb\ +\x00\xd5L\x02b\x98\xaa\xbcU\xae\x09\x85\xe8\x06]\x83\ +Du\xca,\x1f\x81\xb8q\xd3\x92\x0a\xdec\xd9j\xa8\ +\x98\x88b\x13\x9b\x97\xce\x17NV\x19$O\x92Z\xd6\ +\xf9\xf9*\xb2aIm\x88\xa6T\x11\x1d\xf9\x9e\xcc\xef\ +5\xc3\x96\xc2g\x92\x9b\xf8l\xe3\x12\xa0\xd0\xfa\xc7,\ +\x03\xa14\x0c\x8b\xd0\xc0\x9d\xaf\xa1{ \x1b\xb5X\x94\ +\x1f'\xf2\x84B\x925C\xa8\x850m3\x1fF\xf9\ +0\xff\xfc\x99{V2\xff\xc4\xca\x17\xc9\xf9\x97\xdfX\ +\xe5\xca;\xd3\xf1\xf9\xb5\x1b_[\xc3\xf6\xf7\xd6\xbc\xfb\ +\xb3\xb5\xec\xfdb-\xbc6\xf2s\xed\xd5\xaf\xacrU\ +{\x04\x9f\x93\x1e>p\xdb\xd4\xc5\x1f2\xbb\xb6\xe0\x06\ +xb\xe5\xea<\x9f\xeb<&\xe5\xb7\xf1\x9e1Jn\ +;_\x16\xc6\x0biB\xc8\xb9~\xac_n_\x93:\ +i\xea\xaer.)\xf5\xaa\x09\x98=\x7f\x1em\xec\x95\ +7\xd0l\xa1\xc2\x08\x1e\x12\xe5{\x02\x00\xd2\x1d\xd9\x83\ +\xe9\xc3\xd2}\xbd\xcb\x969\xb0\x86\x8b\xd7\xf6.\xdc6\ +\x96Z\xac\xd7Q,\x1e\xa5\x87\xfbp\xe9\xbd\xc4\xef\xbe\ +\x15\x00\xb1fy(1\x0f H\xa2\x10\xbf\x08\x8c7\ +\x1b\x00x$\x88\x94\xa7[\x80 l\x0c\x1cX\x8ev\ +\x09+c\x807D\xf0\x08Y}\xea\xc6\xa19j\x11\ +\x17\x11\x18\x89&+\x18\xe4\xa65O\x1aW-\xad\x1e\ +\x16[G\x1aS\x8f4.3\x08kN\xa1Z4Q\ +\xbb\xd6\x0bI&\xee\xa6t\xee {\x96\xda\xb5oi\ +\xddG\x96\xd6s\xfcI\xd2\xf99\xbd\xeb\x10\xa0\x1f\xe0\ +\xed\xf8\x8c\xce\xd4k\xd39\x00\x1b\x1e0TE\x030\ +t\x0fI\x0ch\x22\x03\x1b\x8f\xc7\x88\x97\x07\xd1D\x0d\ +1=]S\xb6jJ1r\xcbr&\xeeX\xc1\xec\ +C+[zaU\xeb\xef\xacn\xebKk\xdc\xfd\xd6\ +Z\x0e\x7f\xb0\xee\xeb\xbf\xda\xd0\xed\x7f\xb2\xb1\xfb\x7f\xb7\ +\xa9\x87\xff\x86\xfc\xbb\x8d\xdc\xfd\x17\xeb\xbb\xf57\xeb8\ +\xf9\xa3\xb5\x1c\xfch\xf5;\xdf\xb8\xad\xddej\xbe\xad\ +\xbe\xcb#\xd7\xf1\xba\xbb\x8e#\x880:n\xc0\xd8H\ +\xf9)\xed\xc4\xf4V\xa4E\xf3\xfa3.\x1bI\xd3L\ +%c\xe6\xc3\x10\xfc\xad\x8c%<\xc3\x9b\xe2\xdd\x01H\ +\x9bn\xfc\xf4,\xee\xd0\x0b\x9eC\xab\x81nE\xd0\x89\ +W\x15\xa4mc1iX_\x9a\x9a)\xb5M38\ +\xb3\xa47j\xf4\xb0\x82\xcb\xde ^o\x13\xb7\xb7\xad\ +x\x0c\x00@\xecB=K\xae\xe1S\xa8\x9b\xcf`\xbd\ +\xd1\x01\x800\xb8\x86\xac[\x0e\x9eA\xed_\xdc\xe9\x97\ +d\x0cY=R\xfe\x9e\x8bw\xe1AR$\xeduW\ +\xca\xa4\xfd\x80\x10\xc9\x00\xdeF\x0bEnZ\xd3mS\ +\xd2\xea!\xee\xb0\xe7\x08ph\xe3\xa4:Z =\xd7\ +\x01\xca1!E\xfb\xd9\x0f\x9c\x12\xd2\xba\xd5\xa6u\xd7\ +\xbd\xa6u\xeb\xe7}~F\xb1\xdd(\xba\xf7\x1a.\xfa\ +\xa6\xf9\x07\xce,s\xe8\xaee\x0e\xdf\xe3\x15\x19\xbc\xeb\ +~\xe7\xeb\xbf\x89\x05_G\xae\xc1\xe4\xbd\xf63\xea\x98\ +\xe1\xda\xa7\x00\x12_\xc7>\x83\x0f8\xf0\x22)\x02\x9a\ +S\xfc\x9e\xfbl\xf6\xd0mr|\x9d\x9f\xf0\xd4\x8a\x17\ +\x9e[\xc5\xca+\xab\xd9xg\x0d;_\xa0\xd4o\xac\ +\xfd\xe4{\x1b8\xfb\x83\xcd>\xf9\x9bm\xbe\xff?\xed\ +\xe0\xeb\xffa\xc7\x1f\xff\x1f^\xff\x1f[{\xf7?m\ +\xea\xe9\x7f\xb3\xa1{\xffj\xbdg\x00\xe1\xc6o\xd6t\ +\xf8\xbd\xd5l~ne\xcb\xcfM\xcd1\x9c'pe\ +b\x22\x87b\xf3(\xae\x05KGt\xa6\xb3\xeb*\x06\ +I\x0f\x02\x90l2\x8b0\x86\x16\xc5\x1b\xe5\xf2\x7f\xd1\ +!\xd5D\xaa\xf4\x8c1\xeb;a\xcc~_\x17\xb8t\ +n`\xca\x16P<\x04S\xe2J\xc2RT\x0e\xed\x8a\ +\x0f\x87\xb9\xc8\x08\x17\x9f\x80\xf4\xcdY\xc1\xc8*\x8a\xdf\ +p\xca/\x1c\xd9\xb4\x1cu\xfc\xc0Kdv\xcc\xb9\xb2\ +\xf1\xac\xce9\xcb\x06\x08\x02E\x08\xcf\x11\xc2;dk\ +[\x18\x8a\x15w\xc8\xee\x917\x808\x92\x1a\x85\x05\x82\ +\x01\xd2$\ +\x22\xad|Bz\xf9\x84\xf8\xfa\x98l\xe3\x01)\x17\xca\ +\x84H\xf9PXz\xdf\xa1\xa5\xf5\xa2\xf8\x9e=\x14\xce\ +\x83\xaa\xb8\xa2\x1f\x05\x0e\xde\xb2\xac\xe1;\x16\x1a{`\ +\xe1\x89'\x963\xf9\x1cy\x81\xab~\xce\xef\x9eX\xd6\ +\xc8\x03\xc0p\x87\xf8-p\xa8y\xc4]~\x7f\xdf\x22\ +c\x0f\xb9\xc6C\xc0y\x8f\xdc\xfe\xcc\xd4>\xc5\xdf\xcb\ +w\xc2\xea%\xb2z\x1dI\xaf\x13\xc9uRJ\xe1\xf4\ +c\xcf\xedc\xbd\xd5k/\xacn\xe35\xee\xfd\xad\xb5\ +\xec\x7fn\xfd7?\xda\xf2\xf3?\xd9\xb5o\xfe\xb3\xdd\ +\xfb\xe5\x7f\xda\xa3\xdf\xfe\x7fv\xe7\x97\xff\xaf\xed~\xf5\ +\xbfl\xf6\xe5\x7f\xb5\x91G\xfff\xfdx\x86\xae\xdb\x7f\ +\xb1\xd6\xeb\xbfX\xdd\xeeWV\xbe\xfa\x92Pr\x97\xf4\ +Y\x00P\xb6\x80g\xd4^I\xc5\xfb\x06H\xb2\x0aC\ +q\xfd>\xb8@\x10p\x14\x10R\xab&\xaf[\xed\xec\ +M\xab_<\xb3\xfaem\x16\xb9m\x05\xae3\x99\xb8\ +\x05 \xe8\xd7\xeenU\x1c\xe9\xccGyOo\xceA\ +\xbd\x1eD \xd5\x85]\xfb/c\xbcs\xf14E\xda\ +\xcd/\xbd\xcd\x1b\xd9]S\x967\xb8\x04[_\xc7\xfd\ +oZ\x01\xec>\x82r\x03\xed\x0b\xa6\xa3N} \xd3\ +\xdf\x0a\x83\xd7\x9a\x80\x96Fubx\xd7\xa2i[\x98\ +j\xed\xb4\xd9SS\xc1\xd9 4D^\x1c\xc6\x13\x84\ +\x05\x04\xe5\xc9\xbc\xcf\xe2w\x0a\x0f\xfe.\xc4mNU\ +C\x04\x94?\xae-\xd0\xb8D\x9dJ\xb2\xfc\x1e\xf9\x9c\ +\xf7\x9f[\xde\xdc[\xcb\x99za\xd9X\x9f\x94\x97\xce\ +\xc3\xa5\xe2.S\xb1\x964\xbeG;\x85\xb5\x9f>{\ +D\xdb\xb2\x89\xabSO\x19\xd0W\x96\x0f\x01\xcb\x9fy\ +c\xd1\xa9W\x00\xe2\x99e\x8f=\xb2\xe0\xe8}\xe4.\ +\xdf\xa5\x06\x12j'\x83\xf5\xcd\xea\xb3/\xf9\xbfgX\ +\xf8#R\xbb\xbb\x00\x0e0aQjH\x91\xcdkh\ +\xf8&\x008%\xfb\x81\xec\xe1\xfe\xd5\xd2F\xf3\xffe\ +\x0b\xf7\xbc\xcd-\xab\x0f\xadv\xfd\x91u\x1e\xbc\xb2\xb9\ +\xfb\xdf\xd8\xe1\xfb?\xd9\xe9\xc7\x7f\xb1{?\xfd7\xbb\ +\xfd\xe3\x7f\xb7\xdd/\xff\x8b\xcd\xbe\xf8W\x1b{\xfcw\ +\x1bz\xf87\x00\xf0'k\xbe\xfe\x93\xd5\xee}ie\ +k\xdc\xc3\xccmWk\x18\xe8\xc63j\x8e\x00\xcf\xac\ +\xfe\xc5\xaaYL\xab\x1buk\x11\x99\xad\x8b\x16\xc1\xbb\ +V\xa0\xfc\x8e\xf5\x07\xd6\xbd\xf5\xd0zv\x1eZ\xf7\xee\ +CkX\xbd\x0d\xe9\xbc\x06@\xd5R\x06\xc0\xaa\xbf\x03\ +^X\xfd\x91\xdcz\x01)\xa1\xb2\x19\xafHD\xa5\xfa\ +\xfd\xe8\xbc\xcfb\xb4\x1a\xe7\x8eM+\xef0\xf5\xecM\ +\xab\x1b\xb4`\xeb\xa4Eq\xf1\x05\xc4\xfd\x02b{\x1e\ +9oX\x04\x91\xb8\xe4\xe6\xcd\x9b\xd4\xf1s\x06 \x00\ +\x06\x15Nj\xaa\x17\xb2r!\x81vZyEb4e\xaaY3\xf5\xdf\xf7\ +\xf6\x07\x8eZ\x00\xc5\x86\xb1\xe2(\xa4.wp\x97\xf8\ +N\x8e\xaf\xc9 \x15\x83\xb4\xaf\x00\x84e'R\xb2$\ +\xa05u5y\x80\xb4\xf8\xb4\xc2F\x9c\xf2\x93^f\ +\x92\xda\x04A\xa0\xe2U\x08\xf6\x1cBY!\xc0\x10\xc2\ +u\xabN^9\xb1*du<]t\xea\xb1\xe5\xa3\ +\x8c\xe2\xd5w\x0c\xcaWV\xb3\xff\x9d\xd5\x1f\xff\x8c\xfc\ +j5\x07?\x03\x88\xef\x00\xc1\x07\xcb\xc1Cd\xa1h\ +?nY\x0d\x0eTD\xa1FP\xb2T\x1db%\x17\ +\xed\xf5\xe6y\xeeZ\xb4\x14L?\xb3<\x94\xaa\xb2\xac\ +\xf0\xe8\x1d\xbc\xc4\xa9\x93\xd0\xe8\x99+\xe3\xca\x9b\xd2\xe7\ +\xb96\xd7\xcfS\xd9\xd6\xd8]\x94\x8d\x1b\x1d\xe2\xfb\xe0\ +.9\x83\x87\x08$V2\x84\x0c\x8b\xd0\x1e\x02\x06~\ +\xcfk\x0eV\x9b3\xb4O\x06\xb4\x03\x09\xde\xb4B\xb2\ +\xa1\xfa\xd9#\xeb]\xbfe#\xbb\xf7l\xea\xf8\xa9\xcd\ +\x9f\xbe\xb5\xa9\xd3\xcf\xdd\x99\xc7=7\xbe\xb4\xce\x1b_\ +Y\xdd\xde;\x80\xfe\xcc\x0a\xf0 \x11,:\xc88{\ +\x0aSY\x9e7g\x7fQ\x09\xa4\x92\xf3,\x5c\x7f\x8e\ +\xf6\x08\x8e\x01\xb2\xa5\xfb(\xfe\x09 \xb8kmk\xc7\ +\xd6\xb4\xb4c\xa5c\xf2\xbe:\xebh\x12\x12I|o\ +\xc1\xddkvWS\xbex\x91X\xd2\xec+(\xff\xb2\ +\xa6\xcdK\xdb\x916\xa4\xd5b\xdcVb7\x0b\xa6\x8b\ +\x8d\xc3,\xb5\xda\xa5m\xde\xdb\x10\x0b\xf5\xf7\xc1\xad\x90\ +\xaf\xe6\xf0>\xacF\xd1}Z\xe8!\xbe+\xc6#\x22\ +|\xdaQ\xac\x93\xc2u\x5c\xbc\xda\x95f\x00\x00\x1fi\ +\x8c\xbfy\x110\x01\x12\xd2\x9b`\x1b\x1c\xa2}\x1d\xee\ +\x00B\x01\x81<\x80\xce\xc7W\x85\x8c\x00\x903\xa5\xbe\ +>x\x80\xe5\xd7V\xb6\xf1\xc1\xaa\xf7\xbe\xb1\x86\x93\x1f\ +\xac\xf1\xba@\xf03?\x7fo\xa5\xa4P\xf9\x0bo\x88\ +\xebOP \xf1zH\xe5U\xb8h\x80\x14Baa\ +b_\x0e\xdf\x17E\xb9\x12)2\xcc\xef\xdd\x89\xe5\x00\ +N\xdb\xdf\x83d%j\xce\x90\xa5p\xe4\x08\xea\x89S\ +v\x0e.^$J\xc7\xde8\xce\xd2\xb7G\xd8#|\ +\xe1F\xc3<\xa3\x96~\x95\xe1h^?[\x13cX\ +bXmb\xfa\x0f\xf0j<\x0b\xe1,\x0b>\x13j\ +_\xb3|\xdcx\x19VXIz\x5c;y`m\xcb\ +7\xadu\xed\x8e5\xae\xdf\xb3\x86\x8d\x87p\x06\x1d\xbf\ +\x03\xd7\x99VS\x8ec\x94\x0f\xc9\xe4\xfb\xd5\xd7\xd0M\ +\xdf*^\x9f3wu\x15\xd7\xb6r\xf1\xa9(\xba(\ +\x9c\xd3\xfeC\xb7C\x18\xb9\xa2\xb9\x16'\xdd\x16\ +\x8b\xc4x\x95\xa5b\x87\xc4\x9d\xe6U\xd2\x10\xcd\xf9\x13\ +\xafq{\xb9c\xa7\xae\x9dI\xde\xf8\xa9s}9Z\ +\xf0\x18\xe4ox\x04\xad\xf8\xa9\xc5K\xb6\xa6\x88\x19 \ +\xcd\x1c\xba\xe9M\x1e\xc2\x87\xe5\xfb`\xf6~r\xf4L\ +HH\xb0\xc3k_\x9aE\xba\xa6\x13\xc54_\xaec\ +\xe6B\x1al\x07\x80;X\x81\x5c2\x96\xb8\xf8\xc2J\ +\xd6\xdfZ\xe5\xee\x17(\xfe#\x00\xf8\xd1\x1a\xaf\xfdd\ +u\xa4W\x95\xdb\x1f\xadd\xf5K+\x5cx\x87\xbb~\ +\x89\xc5B\x14\xc7\x94B\x9dy\x8a\xee\x97\xa2Q2\x1e\ +&S\xfc\x82\xeb\xfa\x00\x9e\xb7\x1d\x0bbE\xc6!\xd1\ +|\xbc\xee\xd3\x8f\xb2\xbc\xe3\xee\x95\xba\xa2\xc0s\xc9\x86\ +[8o\xc5\xefC\xdcw\xf6\xb9d\xf1{\xcd\xe0e\ +\x13_\xdd*\xe0\xd8M\xcbgl\x0a\xc6\xce \xcd7\ +\x09\x95x\x0cy7=\xaf@\x8f\x01dq\xad\x02<\ +C\xe9\xd8\xbe\x95M\x1d[\xf9\xec\x0d\xb7'Rk(\ +Yx\x0e\xb5\xb6\xf1\x03,\xd5#\xaa\x0c\xed\xf7g3\ +\xebg\x1f\xd7\xcd\x04\xb0*\x22\x89\x8e\x9fY\xfe\xe4\x1d\ +\xc2\x8e\x1aB\x12~F\xf7\x08\xd5\x10\xf0\xf6)\xf3\xab\ +\xd95!\x5c\x07g\x5clp\x89G\xf1\x09*}?\ +_]\xd4\x8c\xa8&\xbe\xe2\xabF\xdd$X|\xf58\ +i 9dz\xfb\x06\xeeG\x95\xbd\x07\x16\xc4\xb5\x86\ +\xd4\xb4Q\xb3Z\xd3\xeao\x83\x90\xa7\xe6\x81<\xb5\x88\ +\x8f\x0c\x03\x00M\x0bk\xb5K\x0b\x22\xbd\x9a\xf0\xb9\xf0\ +\x00\x02\x80D\xef\x19Xr\xf3\xac\xae]\x14\x8e\xb2q\ +\xd3!Y\x8a,\xaf\x8fl@Y\x01 \xd3I\x98\x11\ +\x1d'\x0f\xb1\xcaQ\xf7\x8b\x99\xfb\xb8\xc5GV\xa2\xa2\ +\x0a\x98u\xed\xc1\x97V\x7f\xf4-\xf1\xf2{\xab\xdd\xfd\ +\xc1\xaa\xb7~\xb0\xaa\xab\xdfY\xd5\xda7V\xb5\x02W\ +\xc0#\x94(\x96\x03\xa2( \xd05\x82(O\x1bJ\ +}*\x84\xc4\x82TC\xef\x8e\x9e\x11\x03Vl\xe5\xd5\ +m\x8f\x82\x15\xa7\xab\x00D\xde\x0a\x90\x04\xb8\x7f\x85\xb9\ +,@!\x85\x87\x00\xac6vfK\xbaP<\xcau\ +^\x83\xfb\x8e\xc2\xb6\xf3\xa6t\x14\xfd\x03+\x9d{\x84\ +R\x91\x99\x07V\xacf\x0ej\xea\xa0\xb0\x841\x05Z\ +\xe1A\xe4\xf69x\xcd(\x9eC!5\x8a\xe2u\xfc\ +\xbc\xca\xd0\xd4\xbcR\x85\xa7Z\xbau\xc5\xa1j\xdd\xe2\ +j\x04w\xd1\x87\x00BZ\xcc\xf7\xa9uO\xf4\xd3\x89\ +\xa1\xea\x12\xa2if\x9e\x15^\xe0\x87\xe4i\xc9:\x19\ +\xe5&Vj\xba[\xa2\x121-x\x0d\xbb\x95C\xd7\ +oA\x93m\x9a&\xc6\xbbx\x15\xe0\x0b\x16\x93\xc1\x85\ +|*\x14\x84\x90\xb9\x1e\xbc(?4\xa6C\x09E\xca\ +\xb0\xc89d\xf6!\x17Vy\xb3\xdc\xacn^^\x02\ +>\xa0\xee\x1b\x9dX\x92\x8a*qS>\x1eB\x13\x19\ +\x99\xce\xd2\x15\xe7\x09\x1b\x903\xb9\xd6\x1c\xb9gD\x84\ +*\x0c\x9a=\x11\x07\xe0A\x5cw2\x91A\x84\xf7\xaa\ +\xb2\xd5\xe1T\xc5\xcb\x8f\xacb\xe3\xa5\xd5\xec~\xb0\xfa\ +\xfd\x8f\xd6p\xf0\x935\x1e\xfcjM\x07\x7f\xb0\xe6\xfd\ +_\xacy\x17\xef\x00Y\xac]\x837\xcc\x93\x9bc\x1d\ +\xea\x95\x1b\xc1}\x87 \x9fA\x94\xea\x17aE\xe1\xa9\ +\xc4T\xad\xa2\xb9\x83\x15T3\xc7{W\x17H\xbc\xcd\ +`\x00\x03\x84/\x852\x85\xb5\x10\xb9\xb52\x96\x08\xf7\ +\x1f\xd1\xe6\x0e\xed4&\xb7\x0e\xcb8D6\xa5`\xac\ +_\xcd!\x0b\xb9\xcf\xd2\x85\x07\xae\xe1d\xd5\xca\x132\ +\x02\xd2\xc3y\x5c\xbc\xa6{\x19\xcb\xec\xdec\xc6\x83\xf1\ +=\xaf\xc3S\xbb6\xe7\x99\x5c\x0a\x8c\xcb\xe7\x1e]\xc1\ +\x86f\x01\x05\x00\x8cF\xfd|\x95~\xfaU<\xaa\xbe\ +\x81\x18\x89k\x14\x05\x00\xa2\x02\x80\x80\xa0\xfe\x82xh\ +\xe5\xffa\x0c*\xc8\xff\xa9\xdcK\x07k\xa8G\x90&\ +yRk\x09!\xb5d\x13Hr\x1d\x06\x80\xb7O\xaa\ +\x9f5\xd5\x81z\xc7\xd0\xaf\xea\xf8\xf8C\xf3\xf3\xa0j\ +\x17\x17DQ\xd9\xa3\x10$\xac\xc9\x03\xc0\x13R0\x04\ +\x00\xe4\xaa\x9cI\xad\xcc5\x89\xa3\xd50m\xc7\x86\xf0\ +\xb9\xeeYn\x05Qnu\xcd)_\xf1=\xc2@\xe5\ +\xe2\xde\xf3\xf9\xae\xfc\xc9{^c#\x90\xab\xa6\x88j\ +\x94\xa4\xd2(\x1dT\x1d\xd6r\xaa\x13\x06\x17Q\xbbt\ +\xcd\xaf\xe7N\x9d\xc2\xce\xef\xbb\x06S\xd5[o\x01\xc0\ +\xd7\xd6D\x18h9\xfe\xc5\xda\xae\xfd\xc1\xdaO~\xb1\ +\xf6\xa3\x1f\xadu\xff\x1bk\xdc|o5+\xcf\xac|\ +\x0e\x8b\x04\xa4y\x90\xb5(\xa1)BX\x0aAP\x83\ +d*\x01W\x9a\x86\xe5\xbbM\xab\x12\xf2`\x94\xaf\xc9\ +\x15q\x17-|\xa9\x0f\xaf\xb8\x8ebm..=\x17\ +\xb2(\x89\xc25\xd4s/\xa2T\x15#\x11o\x08\x13\ +\x0eU\xe1\xa3\xa5\xf0\xa2\xf9[V\xb1z\xdfj6\x9e\ +X\xfd\xf6K\xab\xe3~\xab\xd7\xc9f\xdc6\xf7G\x80\ +\x1e\xf2\xd9\xa7.^\x8c\xb3\xfa!\xbb\x1a@\x00\xc0\x98\ +\xb9\xf2n\x09\x5c\xe9\x1f=\x824\xf1t\xe0\xda\xc5\xa9\ +e|\xa6v\xfcb(\xd9j0%O\x80\xf2\xd5\x9f\ +\xb0\x10oY\x04 \x0a\x09\x9f\xb9\x10`\xb5\x83\xcd\xec\ +:\xc4\x10w\xe0a\x80\xac\x89\xf0\xd7\xb8\x82\x97#\xf4\ +\xa1t\xb7\xff\xb0\x19\x80\x9c\x83-\x15o\x13\xe3\x07\xa1\ +\x01\x10\xae\x06\x85\xbf\xef\x16\xa6\xc6D\xd1iX1!\ + \x8a\xabS?[m\x8f\x0a\xf4\x90^\xc0\xf8\xbd\x1e\ +\xc2\x9a\x9aT\xcd\xf9\x02qU\xde@\xb3\x80\x22G\xc4\ ++)\x1f\x96]\xc8\x0d\x16\xcd>\x22%{\xec\xda\xa8\ +\x16p\xd3r\x9d\xea~)@\x85G\x09\x05\xa3\x84\x87\ +QB\x0b\xccZ-\xde\xa2\x137`\xef:{@]\ +\xc6\x1e[5^\xa0~\xf7=\xd6\xff\x855\x1f~m\ +-G_[3\xef\x9bv\xdfY\xc3\xd6K<\x00\xd6\ +\x07\xa9*\x9b%\x1d\x9b<\xb6\x02\xbe+oh\xc7r\ +\xf1TQ\xd2\xa1\x88Z\xd5j+\xf8\xf9I\xe6:\x8b\ +/\xbd]\xa2z\x87\x157\xf9\x92\x8d\xf2#R>\xc0\ +\xcc\xbdX\xdcQ\x96\x00A\xcd\xd5\xe4\xd4\x08F\x01\x10\ +\xb4\x0bY\x00wK\xe4|\xb7\xba\xa3G'w!u\ +\xd7\xadr\xe3\x1e\xec\xfe\x855\x1e~\x0e`\xbft\x8d\ +\x1cK\x97IE\xd5\xc0Q\x13ZC\xa4\x97\x03\xe7^\ +A-lTz\xee\xaau\xe6=q\x0bsZ\x95\xbd\ +\xeaJ\xd4\xb5\xc7\xc2\x8f7\x0b\xe0\xea\xd51\x5c\x8d\xa3\ +U\x7f\xa0\xc3\xba\x0aT\x83\xb8\x84\xb7YQ\x152a\ +p\xde\xe3D\xe1\xa1{\xdc\xd7-\x80\xc05:\x0e \ +\xf4\xf0!\xb5\x8dk\x13\x1f\x02`\x18\xa9\xe3\x1ax\xa1\ +4\x80\x18\xa3\xce\xdc\xea\xc5\xaf\xa6\x0ajJ\xa4n\x95\ +j\xb6\xac\xadN\x8a\xcb\x12u\xab\xcc\x06\xf1\x99X\x95\ +V\xf9>mi\x96(\xfe\x80d\x95SkbG\xe5\ +\xce\xae\x7f/\x00\xc8\xe5\x7f\x0b\xa6\xef\xe3&q\x89\xf3\ +\x8f\xadx\x01\x99\x7f\xc8\xcf\x0c\xec\xa4\xb6L\x1d\x02\xaa\ +\x1dR8\xed\xba\xb9\x0a)\x22\xee\x8e\x90N\x01\x88\xbc\ +\x89\x13\xc0s\x93\x07;3\xf5\xf5\xab\xbe\xfa\xd8j6\ +\xd5\xdc\xf1)\x16\xf6\xc4j\xd6\xef\xe3r\xf9\xdb\xe2u\ +\xe2\xef\xb1\x95L\x1f\xa0|\xb5RQ3jdt\xd7\ +\xf2G\xbcfV\xf9\xc3;\xae\x99\x85\xd6+\xc2\x5c+\ +\xab_\x0d\xa3\xe1-X\xbd\x0a]\xdc9H\x03\x80O\ +\xd9\xce(\x04M\xaeUm\xd8\xf0^\xb9\x84\xc3\xe8\xa8\ +Z\xb2\xe1\x01\xc88\xc4e\x82\x90C1sm\x8f\xf7\ +w\x91\x9f\x0f\xadX\xde\xcc\xae\x95\xae\xdc\xb0\xea\x9d\xc7\ +\xd6x\xf4\xce\x9a\x8e\xbe\xb2\x06\xbcV\xed\xf6Wx\x83\ +/Q\xd2;+\x99{\x89\xc5\x12R\xe5a\xb1j\x11\ +JM\xfbj\xeb\x5c2\xa9\x9e*v\xdc\x16\xeeFm\ +\xfeP\xfd\xbf\xc0\xcau\xba \xab\xdc\xab:\x8e\x85\xe4\ +\xdd\xc6\xafaH\xb7\x01\xc0c<\xcf+\xab$\x04\x96\ +\x09h\xb3\xaf\xf8\x9b\x07\x82P\x1f\x9e\xbc\x87\xd0\xda}\ +\x02\x7f\x01\xb0\xf0\x8a\x00\xbcLaZ\xba\xca\xd0\x0c,\ +\xde&&\xb5\x05\x14\x8a\x08\xb6ijV\xb5\xf1|P\ +\x08\x17\xa3\xd6\xec\x1a\xa2\x03\xa5]/~\xe2\xaak \ +\x0dR]\xcd<\xaf\xaa\xa1\xd7\x97\xa9\xab\x95f\xf5\xb4\ +ARiYD\x00`\x10\x05\x80b,\xbf\x14\xe5\x97\ +.A\xee\xd4\x1eN\xfb\xea&D\x02a\xb8}\xc4\xe9\ +\x9ey\xf3!\xfe\xdeE\x00H\x0a:\xb4\xc1\xa0o\xe3\ +AP\xe8\x14\x8a%\xaf.\x9dG\xc9\xf3G\x0c\x22?\ +3\xd8\x85\x13\x1b\x967\xba\x82R\xd5\xe4q\x9etl\ +\x8eM\xb0u*T\ +\xads/\x90\xc9\xb1#+\x9a9\xb32\x08s\xc5\xd2\ +\x0b+[|\xc58\xbdp\xcb\xd0\xd1\xe1{x*\xc2\ +E/\xe9q7\xf7\xdc\xb9cA\xb8G@\x04]\x99\ +\x10^'M!\xa7y\x854\xb0^\x85\x89\xdaf\xa4\ +\xc5\x07m\x1fRQ\x08\x08\x87\xf5\xea|\x1e\xb7y\x81\ +\x87\x96\xf2\x1dq\x91\x8b:\x97\x7f(\x9e\xcf\x00\x1am\ +x\x14p4\x80\xf2\x00J!\x8bp\xf9%\x0bZ5\ +\x83-\xabJv\xfe\x14>\x009\x1c\x96\xf5\xcds\xad\ +I\xd8/\x0f\x8a\xa4wL\xf0]\xda#8\xcfC.\ +\xe1rQ\xf0\xf0\x0a\x0a]\xe6u\x09E\xcc\xa3\x04\x06\ +\xbc{\x02\xf76\x02s\x1f \xce\xf5\x11\xe7\xd4y\xc4\ +;\x1f0\xd0>\xc2\xdf\xa7\xb0\xd6E\xcb\xd3Z\x06\x9e\ +\xa1l\xde\xdbgX\xb1$\xc2\x86W\x9a\x91\x85\xe3\xca\ +\x07\xbd\xa6\xd8^\xd3\x06\x89\x9e\x93\xe7\xd6^{\xbcb\ +\xa6\x04\xcf\x18D\x14\xda4\x85\x9d\x85k\xf6\x8e\xc3_\ +\xc2\xcd\xce\xf1\xf7Y\x9ew\x09\x00\x008\x00Z\xbe~\ +\xc7jv\x9e[\xdd>\xbc\xe5\xe0s\xb2\x97\x0fV\xbb\ +\xf7\xde\xaa\xb4=}\xfd9!\x01\x0f8\xa7\x19K\x19\ +\x17\xf1\x9e\xefImV\xe5\xce\x08\xe4\xd4\xebQ\xa0\x96\ +o\x92$\xde'\x93\xc7\xa7\xd6\x0c\xc2\xf2\x87]Q\xad\ +\x8ak\x83x\x1e5\xb7\x88\x02\xa0|xS\x91:\x88\ +\xc3\x0b\x94\x09\xe5\xcaS\x11\xa6Bx\xf6,\x9e'\x88\ +a\x070RM\xcc\xb9\xb2\xf7\xa69/3Bt\x22\ +Y\x8c+(lPQ!\xbf\xe0\x03\xaa\x1fO\xd3\x9e\ +s\xe5\xa0\x8e\xb1\x92\xca\x10\xdb\x03\xae\x94\x89\xdf!\xf2\ +\x14\x19\x9a\x82\xd5\xf2\xa568\xa0t\x1d\xe5\xa2\xe9X\ +\x1d\xe0\x10\x86G(gU_`\xf5\xd1-Y\x90\x00\ +\x86\xb9\x1b\xc4\x7f-\x07\xaf3\xa8s\xe4\xe7\xda\xec\xd0\ +\xcf\xc3w\x83\xfe.\x88Y\x0f\xee\xaf\x0f\xef\x82b[\ +\x87@\xec\x88Sh\xa0\x8d\x87o\x1d\x84\xad\xf7[Z\ +\x83z\x0duZ\xb2:\x96W\xb5Z\xa2\x9aV#I\ +\x95-\x96R\xd3\xce\xdf\x01\x02\xff\x17\xec\x99\xe1:\xab\ +\x90\xb0\x1d\xee\xe1\x18\x00B\xd4\x96\xe1\x09\x80\xb0H\xc7\ +\xdf\xc2A\x94[\x0b\xe0\xeeH\x15\x18tj\xf3\x85\xe8\ +\xac\x80\xab\x8c\x83J\xb77\xf9>\xb9|o\x1cT\xe7\ +\x97\xa5R\xf8\xdeU\xbc\x0698 \xcd\x19\xbbJ\x96\ +\x84WZ8\xb1\xd2\xd5;V\xb1\xf9\xc4*\xb6^X\ +\x05\x84\xb0|\xeb\xb9\x95m<%\xad}HVs\x0f\ +\x90\x90\xcbO\xebtvyY\xf1)\x18\xbb\xac\x9f\xec\ +D\x15O\xae\x96Q5\x8c\xc5:\xf9\xb3\xcd\x92J;\ +\x5c\x05uje\x8f\xa9\xb9Uz\x1d\xe3\xd0\xc0\x984\ +Ox@\xe8Z\xb1\x08\xa9x\x0e\xe19G\x13W\xdd\ +\x90pt\xa4\x0c(\x80>\xfd\x84\x93\x0c\xa5\xbb\xa4\xbd\ +idCi\xa4\x8b*p\xf5\xfa\x14MY\x8c\x8a\x11\ +\xd5IJ\x1d=\xdc6\xe4\xa6iWb\xec\xd5\x06\xc2\ +\xec?M\x96(\xdf\x07\x10X\x80\x8fTI\xadY\xb5\ +\x08\xa3<\xd5\xb5\x9b\x95\xe0\xfa\xb5\xef=B\x1c\x15\xdb\ +wm\xd4g\xd5J\x1dF?s\x0d\x8f\x00At\xca\ +'5\x93\xf2\xeb\xd5;H=\xeeZMG\xbaK\xf4\ +>\xa1\xaa\x8d\x1c\x96\x87\x97\x92\xcf%\xb1\x0a\xa9l\xc3\ +B\xf8{y\x0b\x83\xd5d\xf1\xa5\x8d\x16_\xd2\xe0$\ +\x91\x9f\x93\xf9L:\xdf\x19h\x1b'V/\xc2\x8c\xb7\ +\xdc\xa6R\xb5\xba)\xc1\xf3\x94\xcc{\x80,\x98Q6\ +\xa2~\xbd\x10[\xc0\x1b\xe8\xdc\xc5-n\x00\xbe5\x8c\ +a\x85X\xacs\x81\xb5cZu\xfb\x22j\x1e\x10d\ +\x0cZ\xaeU\xd1\x8b\xaa\x9f4\xef\x1e\xd1J\xe98\xfc\ +bj\x8f\x8c\x09\x02\xba\xc4\xb3\xaeB~\xd7\x1eX\xc1\ +\xda}\xcb_\x06l\x0b\xb7,:\x07y\x9bQ7t\ +\x91\xddm\xc2\x86\x88\x1e^\xb7U\xc5\x9a#\xa6vq\ +WT\xefX\xdcnW\x0a[\xbcR8$\xbe\xa8\xc5\ +\x12\x00D\x22@H*\x03\xf8\x15^\x8f\xe6Tu[\ +\xa9\xed'\xc5\x1dB\xc9c\x16 \xc3\x094M:\xf1\ +7jC\xcb\xb8[DJQ\xfd\xa0\xf6a \xae\xef\ +\xa2\x0b1^\x95\xb1\x9aG\xc6\xa8s\x94\x8eEI\xa8\ +\x1d\xb4\x04\x95\x86\xabq\x82Z\xb6\x02\x04U\xc0\xea|\ +\x9b\xcc\xf3R\xf0\xa0\xca\x9b\xfbq\x95}\x00@\x84P\ +=\xfd\x1c\x08p\xa5\x00A\x04R\x05\x92\xea\xa1/\x92\ +\xa7\x9e\xfbE3zU;\xf8=\xcf\xf2q\xef\x19(\ +H-V\xd5~5\xa1R\x1b7\xb4\x89\xe3w\xe2j\ +\xf9\xd5\x91\x5c\x070#:\xf9\xda\x89\x8aC\x9b\x90\x06\ +\x8b+\xaaGj-\xae\x10\xe15Q=\xff\x00\x80\xbf\ +q\xc8B\x9ds\x96;\xb8I\xfc?\x81 \x9eY\xf9\ +\xe2]\xe4\xbe\xcb\xd7\xd5\xd7\xbfp\x16\xc5\x90\x89hU\ +/J\xda\x1b\xd614\xc4J_\xdb.\xdeg\x8bp\ +x\x15R\xa6\xca!y\x82M\xc2\x9d6r\x88\xf9\xc3\ +\x11x\xc6\xc8\x90\xea\x1bD\x1a\x05\xe8m\x9ey\x0bv\ +\xbema\x94\x9b3K\x16\xb3p\xc3r\x90\xc8<\x06\ +1E\x18\x81\x8f\xf8\x87\xc8\x92\x08k\xbe>\x9e\xbf\x9b\ +\xcc\xa9C%fcn\xcc\xe3\xb0\xecX\x5c\xbe;C\ +X\x00\xd0)\xe2(^@\x88E\xe2\x0a\x19\x13^\x05\ +\x06w.p\x89\xc0\xdf\x04\xe8\x9b\x01D\x1b\xde\xa1\xc3\ +\xd2\xaa\xba\x10y\x89^KE\xd4\xf1,I\xfb<\xdc\ +^\xc1^\x070'\x15\x12t\x8e\xc4\xf1>F\x9b\x09\ +]\x17/\xd0\xa4N\x9c\x89 *\xd1\xed\xd2\xc5]h\ +\x07P'\xc4\xcc\x9d\x12\x86\xdb\x1bX\xc7\xda\x89)\xb8\ +.\xd7\xb3\x97T\xc8k\xd2\xbcK\xfc\x17\xa9\x22\x03\x18\ +:t{\x05r\xc7\x8f\x19\xe0#H\xc9>\x84\x85\xc1\ +\x19T\x87m\x1e\xbe\x1d\xf7\xd34lI\x5cO]-\ +\x13\xb4e\xab\x02/\xa0\xf3v\xcf\xc5\x9d z.\xee\ +\xe4kU\x03\x970\x08\xeaiX\xd4\xc8\xa0\xd4Yl\ +A\x0dRmW\x0a\xd4\xa5\xb3\x0awYg\xa9U\x1d\ +\x96\xd9\xa5T}\x10\xc3\xc1\ +[x\x0d\xf8\x03\x1e.gD\xab\x84\xaaoPg2\ +\xed\x13P\xe7\xd2U\x0b\x0c3>\xda\x96>\xca\xf8@\ +F\xd3\xfb\x16,\xa5\x0b\x86\x0f\xe8\x93ZG,\xa9\x99\ +go\xc2\x12\x09}\xf1\xb5\xbd\x16\xc7\x18\xc4a\xd5n\ +;\x5c\x09\xcaw\xd2\x06\x10$\xaa\x89$$\xa86\xb2\ +\xa8\x0d\x01\x14<\xff\x15\xc0\x7f\xa5\xb8\x8e\xf1\xa8\xf7\xbc\ +\x1f`H\xc2P\x92\xca\xf0\x9a\xe5xL\xb7\x0b\xaa\x07\ +\xe5kM\x80q\xbe\x98\xfc\x92\xa8\x18\xd6UCK\xfa\ +-\xc6\xf5\xa7\xe3&\xd4\xc6\xcd\x9dD) \xd4\x0f\xe2\ +\x0aGp\x7f\xe3(l\x1ab4G\x1a\x02\x0b\xedU\ +\x1bw\xc8D\xcf\x92\xeb'\x94\x0e\x19r\x0d\x14H\xa5\ +\xdcA\x93\xa4S^\xd9\xb8\xd2\x15/\xe5\x0a1(j\ +;\x17\xe8\xd4\xa6\x0a\xe2P\xb3&`\x04\x00\xb9#\xae\ +\xa5\x9bts\xd6\xbf\x13\x1dq\xae]\xbc\xda\xc6\xed\xca\ +\xba\x19\x00\xed\x09\xc0\xfac\x0b\xeb=\xe5\xe7W\xd9\x95\ +\xbc\x0a\xa4\x9c\xf7\xe5\x00\xa0\xc6\xd2\xe1\x00\xd9m\x13V\ +\xc0u\xcbI!k\xc8:\xea\xd6\x9e[-\xe4\xabZ\ +\x1d\xcbI\x9bJ\x01@1,\x5c\x9dIu\xf2\xa9\xe6\ +\x1b\x0a\xd4\xe6\x1d\xce\xa2^>\xca\xd3\xb3\xfan\x00z\ +\xbc\x82\xaa\x92\x06\xcfH\x81\xd5\xd7\x87\x94Xs\x01\x00\ +@\x8bG!\xb2\x06\xad\x0dhu\xd4\xf58\x86\xc8\xa5\ +\xb4LXJ\x1b\xaf\x1d\xa4r\xb2p\x94\x9e\x88\xc2\xe3\ +\xeb\xb1\xf0\xda\x1e\x8b\xad\xe9\xc2\xdaQ(!-\x8ep\ +\xa6S\xcau\xa2xl\xa9\x94\xad\xe3\xe3\xbd\x9dM\x92\ +\xcb\x02B\xa9\xceg\x00$\xa5}\xbc\xaa`V\xbd\x0d\ +\xf47m\x81\x03\x08\x88N\x0bw\x07K\xab\xd1'\x06\ +#\xe2\xa8-\xe2\xaet\xfc|\xb2\xcbkE\xa7\x02R\ +@\xa8=\x06U\x84\x80s \xc4\xa8\xf7\xbf6M\xba\ +\xe6\x81\x17[\xb4\xd5\xd0I[\xb3\xf1\x06\xa9M#\xc4\ +\xc7Q\xdc\xf6\x18\xe4O\x9d9!\x14(3\xbd\x93\xfc\ +_\x8d\xa5.N\xe0\x22LHt\xea\x96\xd2\x15\xb5c\ +\xf1\xb7\xcd\xc2\xd4\xb5\xab\x96\x98\xd44\x06\xfb\x1c5w\ +b\xa7<\x0c\xae/Y[\xc0\xb5\x07Q\xcd\x0c\xb4+\ +Y\xe2b\x94\xe6\xb1\x85P\xdc\x15 p\x00`p\xdc\ +\xce\xa0\x025m\xac\xb6\xd8\xdcJ\x8b\x8d\xa2\xfc\xdc2\ +\x8b\x03\x00I%\xb5\xe6\xab\xed\xb4(\xd6V6\xb6g\ +u\xb8\xfc\xe6\xab\xaf\xadu\xfb\x0b'M\x9b\xef\xadv\ +\xed\xb5\xe9\x8c\x1d\x81\xa0\x88<\xba\x80\x10\xe5dJ\x8b\ +^ZA\x94ruT\xccM'\xe1\x11-\x19k\xea\ +\xf5\x09$\x0f\xd1\x8a\xe5\xf8]\x97\x16fA\x1e\xfd\xb0\ +k\xb5sMR\xf95\xc0\xf5\xf6V\x22\x0am\xb5\x12\ +\xbc\x18\xa0\x8c\x85\xa0^\xa9\xd0\xc6\xd5\x06\xbb\x5cV\xef\ +\xe4J)\xafX\xef\x15\x81\xbaX\x96\x8d\xe0\xe1\xae\x10\ +\xea.c\xcdZ\xb2\xbdR\xa6\x15\xbc\x01\xaf\xaa\x97W\ +\xb7\x9a\x87\xb7P\xb7\xcf+Xz\x1c\x96\xee6\xbcJ\ +\xe1\x8c\x9d:\x84\x88\xdc\xb9\x13\xd7!\x80iJ\xf9\x5c\ +}\xa1j\x0c\xe0\x1bM\xda/\x00\xf9\xd3\xfe\x82*\xc6\ +\xb9R}\x02\x89\x0bj\x11\x9b\xe4\xbc\x00\x1e@5\xfa\ +\xe7\xa2\x8a\x91d\x00\xa1\x06\x8f)\xda\xc0\xd10\xe8\x00\ +q\xd1\xcd#\xbd\x1d2\x87\xa2}j\x00!\xe9\x00\x10\ +\xe4\xab*\x16I\x87P\xa6\x83\xc0t\xd2\x9b\x0c\x09D\ +'\xa3\x01 \xa9\xbc\x09Ik\x10:E\x04G]\xbe\ ++q\x1d-.r\xe1\x0b\x008f\xcc \x16\xe1\xfe\ +\xb5K(\x0f\xeb\xcf\xad\xb28\x00\xe0$\xaf\xd2\xe2\x09\ +\x05\xc9e\x8d\x16h\xe8\xb3<\xbcT\xd5\xf4\xb1\xb5\x5c\ +}f\xdd\x07_Y\xff\xb5\x9fl\xe0\xc6/\xd6\x7f\xfd\ +'\xeb:\xfc\xceZw\xbe\xc0+\xbc\xb2rMH\xc9\ +\xf2U\xd9\xab\xb5\x07\xc4\xcd\xad\xbb\xa5d\x08\xe2\xa8W\ +\xfe\x95\xaf\x0a\xa5\xf9\xd7V\xbc\xf8\xc6\x8a\x17^Af\ +\x9fZ.\x9fQM\x83\x96\xbbS Rj,\xe9\xdc\ +\xb3\x00\xeav:\xc3Q\xca$\xb8\xe9\xb2\x1a\x94]\x85\ +\xb2+\xedRq\x85'E\x95\xc4\xf8j\x040\xe3\xd2\ +\xb5\x1fB\xa2c\xebuZ\xa9\xb7\xe3\x19\x00`\xcd*\ +\xe2p\xe5\xe9H,\xe9`,\xc6)\x89\x97\x07\x15\xc9\ +\x83\xe1\xabg\x80*\x8a\xd5\x03\xc0G\xb6\xa2\xce\xef.\ +=\xd7\x8a\xa8\x13\x11X\xad\x8a\x02\x08M\xdei1\x8c\ +\xb1VG\x91\x98\x14\xbeT\x1d)u\xfc\xfa\x85\xb83\ +\xef\xcf\xdd\xb3v\xd4&\xba\xb3\xf0\x11\xd7\xf2\x15\xb4\x91\ +\x93\xea\xfc_50T'\x0f\x9f:j!R\xbej\ +\xd9\xd4L!]\x8b,u\xe3\xe6\xab\x1bs\xe2\x87\x95\ +\xfa\xb5\xcbV\x0c\x15I'\xeb\x10\x08R\xe5\xa6\xceE\ +uj\x0e\x08nO\x9c6n\xf0\xa0\xe7\xa9\x91\x068\ +V\xbb\x84\xf2\x19\xd4\xbcZ\x8b\xcf\xab\xb3x\xde\xc7\x17\ +\xeaL\xfdF\xe2\x7f\xbb\x05[\x86-\x7fp\xc5j\x16\ +nZ\xc7\xeek\x14\xff\xbd\x8d\xde\xf9\x93M\xde\xff\x0b\ +\xf2O6v\xfb7\x1b\xbc\xfe3\x7f\xfb\xda\xeaV^\ +[\xa9V:\xc7\xceP\xa8\x94O\xe6\xa2\xe5or\xe9\ +\x82I\xd5\xfd=\x810\xbe\xb4\xd2\xa5\xf7V\xbe\xfa\x95\ +\x95\xaf!+\x9f[\xf1\xfc\x0b\xcb\x1b\xbb\x0d\x00v\xcd\ +G\xea\x9c\xaceV\xc5\xe7|\xac\x99\xfb\xba\x22\x80\xe6\ +\xe3\xa1\xc4M\x0a+\x01E\xb9]*(\xb5\xcf\x0aJ\ +\xec\xff\xc8/\xb6\xcf\xf2Kx_\xc6\xef\x00\x81B\x19\ +\xf7\xef\xb6\xbd\xb9\xddO\x00\xe0|w\xf3\x15m\x93\xc7\ +8\xa5\xf8x\x94\xa5\xbd\x09\xf1\x8ca\x1cc\x96\xc0\xf8\ +%5O[\xaa\xb6\xb4\x93\x96\xaa\xdd\x5c\x96Rp\xbc\ +\x96j\x17\xb3\xdc\x11{\xea\x18Jz\xde\xab\xad\xe8{\ +xf\xa5\xb2\xab\xaeXG\xfaIS\xdf\x07\xc6<\xc6\ +\x1d\x09'+\xc4%\xbb\xd6\xae\x88\xb6\x86\xab\xe3D\x12\ +\xe8s\x1cAa\x02Q\xd7n5l\xd6\xe6\xcaT\x14\ +\x95&\x104k\xcb\xb8\xb6Z\xc3l% L;n\ +3\x1a\xa6\xcd\x87{\xf4#\x01\x09H\xf5K\x88G>\ +\xcdnq\xf14\xae\xab\xefQgL\xed\xd8ueP\ +\x02\x01\x0f\xecR\x15\xc5)\x15\xach\xbf\x1f\xec\xf8S\ +\xff^$\xbe\x88\xd8\xc7\x80%\x12\x13\x93\xcb\xdb,\x0d\ +\xb7\x1bl\x1d\xb3\xbc\xa15\xab^\xbci\x9d\xfbol\ +\xe8\xf4G\x9bz\xf8\x17\x9b\x7f\xaa\x16r\xffl\xf3\x8f\ +\xff\x93M\xdd\xfb\x8b\x0d]\xff\xd5\xda\xb7\xbf\xb1\x1aY\ +\xf5\xc4#\xcb\x1b\xc1\xe2q\xfd*\x0a\x91\x07P\x9fb\ +\x9d\xc3S\xba\xf8\xce*\xd6\xbf\xb1\xaa\xad\xef\xadz\xfb\ +{\xab\xda\xfc\x06\x10\xbc\xb5B\xb5zQ\x06\x84\xe5\xa5\ +\x08\x00\x10\xb6\xd8|brn\x1d\x82\xc5\xe7b\xddx\ +\xa7\xcb\xf0\x93Kye\xf6Y\x1e\xca\xcf+F\xf4\x0a\ +\x18\x08Y\x97\x00\xc8\xe5\x02\xc8,^\xc3c\xf7\xda\xcc\ +\xaa\x0d\xac\x10b\xad\xe9\xe3\xd6]U\x10c\xa6\x1dC\ +I\xda4\xc2\xf5\xd4>.\xa5U\xedo\x08\xbb\xf0.\ +\x9d2\x1a\x06\xb4Q\xf5!\x9ay\xce\xeb3R\xcd\xc7\ +\x16\x19\xbbOv\x02\x7fqU\xc2\x00A \xe8\xd4v\ +\xb5U<\x01 \xc0K\xeb\x94\x96\x18\x1dh\xa0\xe3S\ +\xd3Z=\x05j\x81\xc7k'J*\xe8\xbaN\x11\x9f\ +a\x91\x02\xc3\xc5\x86JmLt\x00\xc0\x8au\x18t\ +:\xb9\xa7+-\x97\xebo&,`\x19\xb2\x0eu\xe7\ +\xcel\xbc\x10~\xe6A\xfc\xc4'\x1fq(]\xff\x0f\ +QQ\x8bV\xe5\xaa\x0e\x04\x00@\xd7U\x9f}\xed{\ +s\x84E[\xb9\xcaa\xb2e\x10B\xb7\xe9\x13 \xb8\ +\xadbJ\x15\xc9\x8f\x89\x85\xc9\x95\x9d|W\x8f\x05Z\ +\xd5\x81t\xd9\xaa\x16\xae[\xcf\xd1\x1b\x9b\xba\xff\xb3-\ +\xbf\xfcO\xb6\xf9\xee\xdfl\x0bY{\xf5/\xb6\xf0\xc4\ +\x03\xc1\xe0\xf5?Z\xfb\xce\xf7V\xb7\xfc\xc1\xcag^\ +X\xd1\xc4C,\x1b\xb7\x8f\xe4M>\xb4\x82\xd9\x17V\ +\xb2\xf4\xb9\x95_\xfdhU\xdb?Z\xf5.\xb2\xf3\xd1\ +*7>w\xd3\xday\xea\x0d\xd8\xb5\x0e\xd0\x89\xa9J\ +\xab\xc4\xd8\x0b\xb0^\x01!\x8f\xf8\x8e\x87\xd2\xb6\xf6\xcb\ +(Z\xcavR(\xe1wE\x00E\x8d/\xd4\x99\x9c\ +X\x9fX\xa6\xe6\xd0=\xa4\xb1\xfd\x96\xceX\xc8K\xfa\ +[\xe7,\xb3c\xd5\xed\xb1P\x15\x93\x8aB$\x01\x85\ +\x1eD\xb3\xae*V\x8dL\xdc\xb3\xfc\xb9\xe7V\xac\xb5\ +\x86\xb5/\xadd\xf5\x0b+Zz\xc7\xef^\x98\xaa\xab\ +\xd5\xa2.\xa4\xa6\xdb\x9a\xacS}\x81&\xf0:5\xdb\ +\xab)\xfc%\x8bq\xdd/5\x1f\xde\xef\x1dk\xaa\xc9\ +\x1eW\x97\x8e\xabH\xc5\x92\xbdmH\xda\x90\x88\x97\x10\ +\xc9@1\xeaJ\xe5\x1a\x16a\xc9N\xb4\x95\x5cn\x1f\ +\xe5\xeb\xbc^\x95\x85\xf9\x897\x01$\xb3\x05i\xf6$\ +\xd0\x041T\x01\x86\x00@\xacW\x9f\x80\x14\xc0\xe5\xfa\ +\xef\xd6\x9cw\xc1\xc2[\x88\xc4x\x1b\x17`\xd3\xb5\x0c\ +\xb0\x03\xc2\x10\x96\xc1@\xab\x97\xaf\xd2\xc3r\x08\x90\xd2\ +\x1dBS2\xe45\xb5\xae\x17\xee1d\xd9=sV\ +1{h\x03\xc7/m\xf9\xe9\xcf\xb6\xf3\xfeov\xfc\ +\xf5\xbf\xd8\xe1\x97\x7f\xb7\xf5W\xffds\x8f\x7f\x03\x18\ +\x7f\xb2\xd1\xdb\x7f\x86\x1f\xfcf\x1d{?[\xe3U\xbc\ +\xc1\xf2{+\x9b\xf7\xe6\xd3\x8bt\xf6\xde\xe2{+]\ +\xf9\xda\xca\xae~o\xe5\x9b?X\xd9\xe6\xb7\xbc\xff`\ +%+/\xadp\xee>dP\x99\x80V\xd9\x96\x1c\x11\ +L\x86Y'\xc0\xd6\xe3\x8aa\xeeE\xb0\xf5\x22b\xb8\ +B\x83\xbc\x03\x96-\xa6\xaf\x8e&jX\xf1\x0f\xf2\xd6\ +\xe7\x9e_\x86\x90\x81\xe7\x0b0\x86\xd9(%\xa7g\xc3\ +\xf2\x06\x0f\xac\x88\xb0\xa4C5K\xa6\x1fX\xf1\xf4#\ ++\x82\x84\xea\x90\xa8\xbc\xf1\xfbp\x16\x9dJ\xaa\xc3\xa3\ +^[\xd9\xea\x07\xab\xe4\xfe\xaa\xf0R\x95\xdb\xdfY\xd9\ +\xc6\xd7V\xb4\xf2\xfe\x13\x08\x94\xc1d\x13\x1eT\xec\x93\ +\xd9{@\xc6\x06\x90H\xdf\xd5\xe9-FK\x8b\x92\x5c\ +\xbdB\x88t\x14Z\x16)\x8e\x90\xa2\xf9~\xafF\xcd\ +[\xf9K\xc3\xa2\xd3\x9b\xd4C\xe7\xbc\x8f\x8e\xdc=\x1e\ +\xc3\xc5|Y\xbe\x0aBu\xaaV\x87\xb2\x00\xf2b\x80\ +\x94\xc9wh.Z\xb5\x81\x22M>\xbeK\xd5+\xa9\ +R8^%\xd9\x91P\xb8\x07a\xc5\x01Lupn\ +\x87\xeb<\xa2-O\xbc\x0a\x0c\x80\xce\xb1W\x97!\x88\ +\xa3\x88\xa8B^k\x19\xc4\xba>>\xd3\xc7\xfd\x0dr\ +\xcdI+\x1e\xdf\xb0\x9e\xbd\xfb\xb6\xf0\xe0\x83m\xbc\xfc\ +\xde\xf6\xde\xfdd[\xaf\x7f\xb0\xb9\x07_\xd9\xf0\xe9\x17\ +\x84\x86\x8f6t\xf6\x8b\x0d\xdc\xfa\xcdz\x00A\xfb\xc1\ +/\xd6\xc4\xc0\xd5`A\xe5\x00\xa1\x84\xb8_\xb2\xf2\x85\ +\x95\xae\x7fk\xa5\x1b\xdfY\xc9\xc6\xb7V\xb4\xf6\xc1\x0a\ +\x96_X\xee\x9c\x8a8U\xc4\xa2\x85\xa3],t\xc3\ +2\xdb\xd7\xf0x\xb0\xecZ\xf2\xfd\xea\x09\x94\xab\xedm\ +J\xb7\xc4gd8\xda\xc8y!c\xa6^\xca:\x80\ +J\x9e\xd3\xa7\x9eCx\xe0l\xc6L\x8aW\xef\xdf\xb2\ +\xc9S\xab\xc6\xcb\xd4\xaf\xbd!{\xf9\xc2\x9a\xb7\xbe\xb6\ +\xa6-\xd5=|c\xf5\xeb_Y\x0d\x0a\xafZA\xb0\ +\xf6\xaa\xf5\xaf\xadz\xf3\xa3\xd5\xec\xfc\xe0\xbcT\x15\xaf\ +\xe5[\x1f\xadd\xfdK+\x5c|ky\x00:g\xe2\ +\xb1\xa9\x862\x9bP\x97\xad\x22\x95\xe1\x1b\x08\x1el\xe4\ +\xba\xc5\xe8(2\x15|\xe4\xcf=\xb2\xfcY\xefT*\ +\xd5\xbe\xab\xc6N\x85\x94Z\xb7\x16\x18$\xaa\xb3\xcbt\ +\x8b%0L\xadY+\x07V\x9e\ +B'\x89\xe7\xe9g\x17W\xdb\ +\xa7\xb9\xcb]\xc8DP\x04* 0\x85\x1c\x05E\xa0\ +\xc4\x04\xde\x03!\x00\xe7%8\x9fB\xaa~\xccn\x05\ +h\xc2x\xdaF\x04\xd49$7\xd1\xdf\x06\xf6\x9d\x12\ +h\xf2\xec\xbe \xe5e\x08\xe0}\x04\xfd\x1d\xb2\x03|\ +\x00q'\x04\xd2\x80\xc6\x0e\xc6\xa4[\x8c\xa9r\xbff\ +\xd1\xb7\x01\xbcr?\xa1\xbe\xcc\x1a\xcb\xe4\x9c\x8c\x00\x9a\ +y9\xa0o\xa1?\x06\x197\x87\x1d\xe8\xea\xce!\x1b\ +n\x12\xed7\x12<\x8b!\xf4\x880\xcb\x04\xf4c\xc8\ +$\x10\x12\xde+<\x9e\x9c+^$$\x91\x18\x02G\ +\xacg\x81\x1e;\xd0C<\x02j\xd0\xc3\x90\xab\xc03\ +\x11\xf1\xb2*\x22\x1c\x91\x9a>;&\xf0m\xd2\x89X\ +\x14X\xf3\xa3\xee\xb3\xecdB\x8e\xd9\xb9\xd1\xd6\xc9@\ +>\xfa\xb5\xf3\xf5\x84\x90\xcf\x8a\xc0\x84\xdb\x87\x8e\x0f\x16\ +\xde\xdbiw3\x00\xbd\x0aI\xd9\xbe3\xc3\xe1,\xfd\ +\x8e\xa3\x96G\xbb,\xd8#y\x03d\xcc\x04\xf6LI\ +5\x15\xf4\x18\xcd\xc8!\x81&\x13x\xb2\xb0G\xa8\x98\ +\xd7\x97J\xea\x93v5\xda\xdbu\xf0f\x14\x07\x92\xfc\ +\xb1y\xcd\xadt\xa3\xf6\xa1\xb7\xd0\x1e\x08\xf6HR9\ +\x17\x9d.Q\x88JMX\xe3E\x11\xc8\xf9\x91\x84\xf7\ +6\x92\x90d\xdf\x972\x84\xd10\xd7\xf9\x22\x02'^\ +\xd7?\xed\xed\x0f\xbc\xcbE!\xdb\xbc\xce\x86SF_\ +w\x8ev\x01Hy\xe1\x9cN\xb5.\xcf\xf0\x0d\xfa:\ +G\x83\xaa\xe2\x16:\x1d\xdb\x0d\xe0\x5c\x0f;d\x81\xc7\ +k\xf3\xee\x13\xb6\xb6_\x18x\x11B\xac\xd8\xfc.\xa5\ +\x1f`t\x8aZ\x1d\xe5v\x8c\xd0M\xa6#$\x9db\ +1&\xcfu\xde\xb2q\x9f\x90\x9d\x86\xbe\xbd\xe8<\xc7\ +\xfb2\xf7\x0f\xe6\x1c\xe5c!G\x1c\xdd\x88\x0e\xe8\x1a\ +\x85\x8f\xea.\xef\x842G\xf0z\x99e\x88\xdb\xbc\x96\ +\xabn\xecx\xf1_\xa0JA\x0a\x0a Icons / Notifi\ +cation / Error -\ + black\x0a \ + \x0a\ + \x0a \ + \x0a \ +\ +\x0a \ +\x0a\x0a\ +\x00\x00\x01u\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x01\xd0\xa2K@\xfc\x1f\ +\x84\x81\xfc\xff06\x10\xbf\x02\xf2\xe7\x00i9Z\xf8\ +\xd8\x02\x88\x9f\xa3Y\x08r\xc0_4>\x8c\xddHM\ +_G\x00\xf1?\xa8\xe1 \xfa/\x0c\xe3\xe0\x83\xd5\x02\ +\xf1\x1a \x9f\x91R\xcbA>\xff\x87\xc7\xc7\x84\xf83\ +(u\xc03\x12-\xc4\x16%n\xe4\xc6{>\x11q\ +N\x8c\x03\xae\x93\xeb\xfb\x8b0C\x09\xc49!>\xc8\ +\x0c}r\xf29H\xe3?\x0aC\x00\xc6\xaf!\xd5\x01\ +\x0e\x14Z\x88\xce_C\xaa\x03B\xa8\xec\x80\x03\xa4\xc6\ +\xbf\x0f\x09\xf9\x9e\x984\xb0\x95\xd4\x10P\xa7r\x08L\ +\x22\xd5\x01l\xd0\xb2\xfd?\x95\x1c\x10@N90\x9b\ +\x0a\x0e\x00\xe5\xa2\x9f@\xccDN9 \x0d3\x84\x82\ +4\x00\xd2\xdfBIQ\x5cOa\x08\xdc\x01\xd2\xcc\x94\ +V\xc5k\xc8t\xc0\x1b _\x99\x1am\x01F \x9e\ +\x81\xa5\x01\x82+\xceAl\x90\xcf\x95\xa9\xdd\x1ar\x07\ +\x1az\x13\x9a\xaf\xe1\x8eA\xe3\xff\x04\xc59\x10\xb3\xd0\ +\xb2=\xa8\x0f\xc4\xb5@\xbc\x16h\xd1! \xbd\x1d\x88\ +\xa7\x00q \x90\xcf\xcc0\x0aF\xc1( \x11\x00\x00\ +\x90\xbf\xd0E\xdf\x04S\xa8\x00\x00\x00\x00IEND\ +\xaeB`\x82\ +\x00\x00\x02\xaa\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x02qIDATx\xda\xedWMHTQ\ +\x14\xd6q,\x0c\x1db\xd0d\xa86\x814!\x11A\ +\x90\x92H\x14\xc4@\xaef\x11\xb5\x10l'\xe4l\xc4\ +\x85\xcb\x1aA\x88@\xc2E0\xad\x1c1h!\xd3\xa6\ +\x7f\x9a\x84\x90hg$$\xb6\xa84]\x88\x039\x8b\ +\x18)g\xf2;\xf0=8\x5c\xdfLo\x86\xb9\xd2b\ +\x1e||s\xcf\xb9\xef\xdes\xbew\xce}o\xea\xea\ +jW\xed*\xe3\xba>0\x14\xbbq3\xf6\x07w\ +\xe9q\x8d\x8fN\x00\x15+\x80\x88E\xbe\x0f\xe0\x97\xe0\ +\xa8\x11\x80\x1f\xf6\xcfF\x9f;\x9c\x01\xb7x\xad\x01\xd8\ +\xafJ{\x82g\xc0>\xbd\xc9)#\xab\x84\x11D\x08\ +\xf8i\xcc\xd9\x06\xcex\xad\x01U?\x82M\xa0IG\ +\x16fF\x1b|\xdb\xc9\xa4Qc\x81n\xd8w\xd4I\ +\x17\xf5\xda\x05\xac\x15\xb9oM6\xe7>M\xfa\xe60\ +#{\x0c\xf4\x02\x05\x8e{\x8cM\xae\xd1>\xec\x92\xa1\ +S\x039\xad\x00~\x1f\x06\xb6\xe8\x93\xb5\xbf\x01\x1b\xc5\ +\x14Hq<\xa0\x14\x09\x19\x1b\x9d.QK\x17E)\ +c\xfe\x0b*s\x8f\xe3\x1f\xa5\x14H)\xdb]\xda\xa4\ +\x00\x0fU\xd8A\x0f\xb8\xc6;\x8e}\x12\xc0?\x15P\ +\xf6I\xda\xbfK\xa1\x96\xd1UG0\xff53\x9f\x07\ +\xfbio\xf0\xac\x80\xf2\xddR5\x91\x04\xce;\xad\xa7\ +\xe6\xc8\xc2\xb2\xe9%9%\xd5\xf7\xc1}\xa0\xde\x98\xe7\ +]\x01\xe5\xef\x90\xd7\xadz\xcfK\xab}\x05/\x81\x97\ +\xc1\xeb\xf2\x1aV\xfeW\xe0\xb3.\xeb\x94\xaf\x80\x91\xe9\ +1`\x10\x90#y\x1e\xf8\x04,\x00r4'\xe4[\ +\x10h/q\xbf\xd4\xc0\xaa\x9b\x02'\x9d\xc8-\x7fU\ +\x1f\xe49\xb1G\x01\xe9\xe1\x1d\xf6\xf0\x09Ko\xd2\x03\ +\xc0C*\xbd\xe06a\x92\xcf\xf0\x17x\x0e\x9c\x06\xa7\ +\xab\xc4o\xc1\x19U#}\xc5\xa2\x1c\x01\x16Y\xa9\xab\ +U\xc6\x0a\xf0\x1e\x88xyV\x8d\x98\xd8Xe\xf6\xff\ +\x97\x7f\xf7v\x01&\xc7\xb3\xa0\x90\xee\xe83\x00\x00\x00\ +\x00IEND\xaeB`\x82\ +\x00\x00\x02\xa5\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a Icons / Notifi\ +cation / Warning\ +\x0a \x0a \x0a \x0a \x0a \x0a\x0a\ +\x00\x00\x06}\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a Icons / Icon G\ +rid\x0a \ +\x0a <\ +path d=\x22M7.02749\ +543,18.2117232 C\ +7.8834099,18.038\ +7856 8.54248262,\ +17.8471758 8.883\ +41584,17.6633902\ + L9.13660094,17.\ +5269066 L9.41318\ +015,17.6058648 C\ +10.2365316,17.84\ +09162 11.1075671\ +,17.9625414 12,1\ +7.9625414 C16.32\ +37915,17.9625414\ + 19.7799758,15.1\ +162719 19.779975\ +8,11.6803149 C19\ +.7799758,8.24435\ +789 16.3237915,5\ +.39808842 12,5.3\ +9808842 C7.67620\ +852,5.39808842 4\ +.22002417,8.2443\ +5789 4.22002417,\ +11.6803149 C4.22\ +002417,13.43386 \ +5.11977547,15.08\ +21543 6.6930318,\ +16.269688 L7.214\ +92385,16.6636253\ + L6.12154393,18.\ +3763334 C6.43148\ +919,18.3255971 6\ +.73578148,18.270\ +664 7.02749543,1\ +8.2117232 Z M3.9\ +4487569,20.05404\ +83 L5.67352379,1\ +7.3462342 C3.805\ +49981,15.9362024\ + 2.63427705,13.9\ +10191 2.63427705\ +,11.6589 C2.6342\ +7705,7.3991563 6\ +.82745404,3.9459\ +5171 12,3.945951\ +71 C17.172546,3.\ +94595171 21.3657\ +229,7.3991563 21\ +.3657229,11.6589\ + C21.3657229,15.\ +9186438 17.17254\ +6,19.3718483 12,\ +19.3718483 C10.9\ +251584,19.371848\ +3 9.89260571,19.\ +2227398 8.931178\ +29,18.9482703 C7\ +.61917454,19.655\ +5273 3.94487569,\ +20.0540483 3.944\ +87569,20.0540483\ + Z\x22 id=\x22path-1\x22>\ +\x0a \x0a \x0a <\ +g id=\x22Group\x22 tra\ +nsform=\x22translat\ +e(-2.000000, -3.\ +000000)\x22>\x0a \ + \x0a \ + \ +\x0a \ + \x0a \ + \x0a \ + \x0a \ +\x0a\x0a\ +\x00\x00\x01\x12\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x00\xd9IDATx\xdac`\x18\x05\xa3`\ +\x14\x8c\x82\xa1\x06\x22\x13s\xd9\x818\x15\x887G$\ +\xe4\x5c\x00\xd2\x87\x80\xb8\x1b\x88Uhn9\xd0BG\ +\xa0Eo\x80\xf8?\x08\x03\xf9\xffal(\xbf\x87\x96\ +>w\xc2b\xe1_4>\x88^F\x0b\x9f\xb3\x03\xf1\ +k\x98\xa50\x0c\xe4\xff\xc3\xc2\x07\xa9\x09\xa2\xb6\xefS\ +q\xf8\x18\x17\xff4\xb5\x1d\xb0\x91D\x07\x800\x0f5\ +\x1dp\x9e\x0c\x07(R3\x0d\x1c\x84&\xb0\x7fD\xa4\ +\x81\xbf\xd0t N\xcd\x10\xe8\x221\x04^\x011#\ +5\x1d\xa0\x04\xb5\xe0\x1f\x91\x0e\xe8\xa0E9\xd0Cd\ +9\xf0\x0c\x889hU\x18-\x83\xc6/,4\x90\xe3\ +\x1cl9\x90V\xa1u]\x10\x04\xca\xe7hE1(\ +\xce;\x81|\x0e\x06z\x01P>\x07Z\xa8\x08\xa4\xc5\ +\xa9\x9a\xe0F\xc1(\x18\x05\xa3\x80\xde\x00\x00*\x106\ +\x97\x13c\xdc\xaf\x00\x00\x00\x00IEND\xaeB`\ +\x82\ +\x00\x00\x01\xf5\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x01\xbcIDATx\xdac`\x18\x05\xa3\x80\ +D\x10\x91\x90#\x06\xc4\xd7\x80\xf8jdb\xeeU\x10\ +\x0d\xc47\x81\xb8\x84.\x0e\x00Z\xaa\x02\xc4\xffA\x18\ +h\xe9\x7f\x18\x1b\x88\x17\xd1\xcb\x01\xcaH\x0e\xf8\x8b\xe4\ +\x80\x05#\xc3\x01@KU@A\x0f\xb5\xfc\x1f\x88\x86\ +\xf2\x17\x8c\x98(P\xc4\xe1\x80\xf9\xb4\xb4T\x0e\x88u\ +\x81\x16j\x01\xe9(\x1c\x0e\xd8\x0b\xe4k\x00i\x1d(\ +f\xa1V\x9c3\x02\xf1mX\x96\x83\xc5?Z\x1a\xf8\ +\x8b&\x0f\xc2\xce\xd4\x0c\x01\x17\xa8\xe1\xff\x90|\x8c\x1e\ +\x02\xc8\xf2\x1bi\x11\x0d\xe9h\x05\x0f6\x07\x80\xe8\xab\ +\xe4Z\xc0NDtL'\xe0\x80W@Z\x92\x80=\ +L\xd8\x0cV\x06\xe27@\xc9\x07@\xba\x06\x14\xefx\ +\x1c\xb1\x17K9\x00\xa2\xff\x00\xf9\x16\xf8\xea\x10\xa0\xfc\ +J \xfd\x1c\x88\xeb\xd1]\xa5\x87V\xb6o\xc7\xe3\x03\ +\x1e \xbe\x8f%\x04\xa2\xf0\xe8\x11\x02\xe2gH\xe6\xcf\ +CW\xa0\x8b\xc5\xc0\xe9x\x0c\x94\x05\xe2\x1fH\x06\xb6\ +\x11\x08\xf6#h\xe6\xcf%\xc6\x01 ~\x00\x1eC\x9d\ +\xa1q\xbe\x94\x80\xe5yX\xd2\xcc\x5c\xf4\xf8\xd1\x85\xfa\ +\x069_\x83\xb2\xd47 \xadFA\xce1FJ#\ +\xb04\x03r\x08\xd1!\x00\xa2_\x03\xb1\x12\x99\x96\x7f\ +\xc0\x91k\x88v\x00\x8c\xff\x05\x88#\x88\xb4\x98\x0b\x88\ +\xab\x81\xf8/\x9er\x83d\x07\xc0\xf8\x17\x81t\x19\x10\ +\x9b\x03\xb1(\x90\xcf\x0b\xa2\xa1\xb9(\x06T%\x03\xe9\ +7x\xf4\x93\x94\x06\xfebI\x13\xc8e\xfd\x7f<|\ +l\xfa\xc9J\x03\xb4\xe2c8@\x9b\xce\x0e\x98\x8e\xad\ +t{KDeC-~\x18\xb6\xb2:\x84\x848\xa6\ +\x84\xbf\x1e_m\xa7\x04TT\x07\xc4\x13\x81x\x02\x90\ +?\x01D\xc30\x85\xfc. \xdfo\xb4k\x87\x0e\x00\ +\x0bqL\xd4T\x13W`\x00\x00\x00\x00IEND\ +\xaeB`\x82\ +\x00\x00\x00\xd5\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ +\xa8d\x00\x00\x00jIDAT8Oc\xfc\xff\xff\ +?\x03%\x80\x09Jc\x80\xc522\xffA\x18\xca\xc5\ +\x09\xb0\x1a@\x8cF\x18\x00{\x01\x9f\x86\xd8'O\x18\ +\xa1L\xac\x00\xa7\x17`\x80\x90k\xc0\x06\x10\xb2\x05\x9f\ +!\x04]\x00\x03 C\xb0\x19D0\x0c`\x00\x97+\ +\x09\xba\x00\xa4\x11\x9f\x17Q\x0c \xa4\x18\x1b\xc0\x99\x12\ +a\xde\x22d \xed\x922\xb1`\xc8\x1b\xc0\xc0\x00\x00\ +\x1d[2\xc1\xc0t\xc2\x0d\x00\x00\x00\x00IEND\ +\xaeB`\x82\ +\x00\x00\x00\xeb\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x00\xb2IDATx\xdac`\x18\x05\xa3`\ +\x14\x8c\x82Q0\x14Adb\xae:\x10O\x8eH\xc8\ +\xd9\x0f\xa4\xd7\x00q8\xdd,\x07Z\x1a\x0f\xc4\x7f\x81\ +\xf8?\xd0\xe2\xff \x1a\x8a\xb7\x00\xf9\xcc\xb4\xb6\x1c\xe4\ +\xf3\xbf \x8b\xa1\x96\xc3\xd9P~\x1b\xad\x1d0\x19\xcd\ +Bt\x07\xbc\x05\xd2l\xb4t\xc0~\x02\x0e\xf8\x0d\xa4\ +\x15i\x99\xf8VA\xe3\xfb/\xd4\xf2\x7f06\x10\xff\ +\x03\xf2\xbf\x02i\x11Z\x86@\x18\x81\x108H\x8f,\ +\xb8\x19\xc9\xc2\x7fH\x0e\x00\xf9^\x95\x1e\x0e`\x06\xe2\ +6 ~\x0b\xb4\xf0\x0f\xc8b >\x04\xc4\xaat-\ +\x8c\x80\x96\xb3\x81\x12\x1c\x90\x16\x1d-\x9aG\xc1(\x18\ +\x05\xa3`H\x03\x00\xac\xe7\x98*\x92\x10\x95\xa4\x00\x00\ +\x00\x00IEND\xaeB`\x82\ +\x00\x00\x03\x0b\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x02\xd2IDATx\xda\xed\x97MH\x94Q\ +\x18\x85\xd5i\x0a-\x17\xba0\xcc1!\x88\xc2(\x0b\ +\x92\x5cLFn*\x88Z\x05J(\xd3&*4B\ +\xfbq\xd5\xa2\xc2 \xa4\xb2_Z\xb4\x88\x8aP\x82)\ +\x22\xab\x85\x14Q\x8b\x16\x81\xf4\xb7h!\x16\x95\x05-\ +\x8a\x8a\xd2t\xea\x1c8\x1f\xbc\xdc\xee7)\xe9H\xe0\ +\xc0\xe1r\xee\xf3\xcd\xbd\xef\xf7\xce\xfdy'+k\xea\ +\x83O\xdd\x96\xa6\x1d\xd0\xc1\x10\xb6\x11\xba\x09\x1d\x0e\xe1\ +\xab\xa0\x1b\xd0\xb1\xdaDc\xae\x87/\x86\x92\xd09\xf0\ +\xc2\xb0\x00NC\xbf\xf0@\x9b\xed\x87\xaff\x7f \xf8\ +\xf3\x0e_\x84\xfe\x94\xe1\xb7\x1c>\x1b\xfd?\x0c\x7f\xe2\ +\x0d\x00\xa0\x03\xe2C?\xed[\xc0?b\xbf\x94\xd2 \ +s\x0dOzx\xa5\xe1\x1d\x86\x07A\xac\xf7e\xa0Z\ +\x90\x0f\xd5\xaa\xaf0\xf8\x12t\xd9\xf0f\xf1\x5c\xf8\xef\ +\xe2]\xd0\x90x\xbbx\x04\xfe\xb5x\x0f4 \xde\xe9\ +\x0b`:\xf4N\x0f\x5cT\xdff\x13\x00S\xfdL\xbe\ +G\xbc\xc6\xf0\x95\xd0]\xf9\x97\xe2\xe5\x86\xd7A\x17\xe4\ +?\x86\xad\x83.=\xd0'\x7fI\xfe\x8d\xfcQ\xf9\xcf\ +P\x0etD\x9eY\x88@\xbb\xcd\x84\xb3\xa0\x9d\xc6\xe7\ +C\x9b\x8c/\xf7\xad\x83D\x90fh!\xf4J\xbeS\ +|\xad\xe1\xcb\xb9\xa0\xe4\x1f\x88/3|\x03tG\xbe\ +O\xbc\x18~D\xbc\xd5\x97\x81\x22\x13a\xb7\xf9\xcd\xeb\ +\xc5\xa3\xf0#\x1e\xbeO<\x1b\xfe\xbd\xf8}\xe8\x9b\xf8\ +I\xf3\x92\xbd\xe2\x8f\xc3v\xc3Cg\xdbq\x0b\xe5\x1b\ +\x9et8\x03*3\xfc\x84\xc3\xd9V\x1a\xbe\xc7\xf0\x12\ +_\x00+\x9c\x01\xf6:|\x01\xfa\x07\x0d?\xee\xd9\xf7\ +\x9f\x0c\xbf\xea\xf0(\xfa?\x88\xc7\xc2\xb2\x10\x87\xcep\ +M\x84\xf0\xa5\xd0)h;\xd3\xee\xe1\xf3\x98\x09\xa8\x85\ +\xbb\xcb\xc3K!\x9e\x9a\x05\xff\xfd\xfd\x11,Z\xae\x93\ +\xc8d\x04P\xaaE\xc8\x00\xf22\x1e\x00&\x8fa\xe2\ +a\xee\x14\xdf-\x98\x89\x0c\xc40\xf1\xb020)\x01\ +\x14+\x00\x1e\xc5\xd1L\xa5\xbd\x0c\x93q\xfbm\x85Z\ +\xb5\x06\x86\xa0&\xf6\xc1oC[0\x91o]\xe5\xdc\ +\xef)\xd6\x01\xc6\x0frmLt\xea\x1b\x9c\xa3\xd8\x9e\ +\x9c\xf1L\xfd\xfe\x87<\x01$2\xbd\x08\xaf\x99\xdb\xb3\ +}<\x16X\xceX\x9f\xc7\xc4/\xd0v\xff\xf3\x5c\x18\ +\xe8\xac\xb9>\xbfB\xcfY\xbb\xc17\xa2]\x92f\xa0\ +\xec4\x19\xca\x03\xafA{\x00\xba\x0d\xf5k\xdb\x06Y\ +\x8b\x87\x05\xe0\xde\xe7\xd4\x80J6\x06\xc4A\xe7Cs\ +T\xe5P%\xac\xffY\x09\xa1\xdd\x0f\xdd\x83\xbe\xa4\x19\ +\xef\x8f\x00\xaa\xa0]\xbc\xffY\xfbA\xd7\xa1\xb7\x7f\x19\ +`\xb4\x9e\xe5\xfaS\xd5\x98mh[tn\x14\x8df\ +\xa1\xf1-\x1b\xa0+P\xbf\xa9\xf9l\x9d\xefz\x9e\x0b\ +\xbd,V\xe0\xd7\xa0\x9d1\x9e'\xe1L\x0cZ\x01\xad\ +\xe3\xff\x07\xf8z\xd6\x8c\xacx\xa1\xd5,F\xd0N\x9b\ +\xfa\xb3;\x96\xcfo\xe5\xb5\xdc\x8eP\x05\x84\xb2\x00\x00\ +\x00\x00IEND\xaeB`\x82\ +\x00\x00\x00\xe0\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ +\xa8d\x00\x00\x00uIDAT8O\xd5R\xed\x0e\ +\x80 \x08\xd4\xd6{\x83ON\x9d\x03\xe7,\xd0\xd5\xfa\ +\xd1m|(p\x0a\x9aE$\xbd\xc1\xa6\xf6\x82R\x8a\ +@t\xe9\xe2\x96\x00\x85D\x94u\x19b\x87\x1aOZ\ +-\xae\xc0\x0c\x98\xf94R\xfdQ\xa2\x18\xa49OI\ +\xdc!\xf6@K\xeeP\xc12;=\x8aWe\x09c\ +rTh\xd2Z\xb0\xa7\xb3\xeb\xea\xf6\x14\xeeO4\x92\ +\xd9\x93~\xf7\x95W\xf1{\x82\x94\x0e\xd4\x89\xe2k\x0c\ +\xdb\xee*\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x00\xa6\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x00mIDATx\xdac`\x18\x05\xa3`\ +\x14\x8c\x82Q0\x0a\x86*\x88L\xcc\xad\x89H\xc89\ +\x07\xa4\xd7\x00\xb1\x14\xbd-\xaf\x05\xe2\xff@\x07\xfc\x07\ +\xd1@\xfc\x98\xde\x0e8\x03u\xc0_\xa8\x03@X\x85\ +n\x0e\x00Z\xbc\x1a\xea\xfb\x7f@\x1a\x84A\x8e\xe1\xa2\ +g\x08H\x82\x82\x1d)\x0aR\x07$!\x02\x1d\xa0\x02\ +\xb4\x9ck4K\x8e\x82Q0\x0aF\xc1(\x18\xd2\x00\ +\x00e^3\xba\x9ez\xe49\x00\x00\x00\x00IEN\ +D\xaeB`\x82\ +\x00\x00\x00\xef\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x00\xb6IDATx\xdac`\x18\x05H \ +21\x97\x11\x88C\x81\xb8\x18\x88\x0b\xa9\x88\x8b\xa0\xd8\ +\x05\x9f\xe5\xdc@|\x19\x88\xff\xd3\x18o\xc0\xe5\x80i\ +d\x18\xf6\x1b)\xe4\xf0a\x16 \xf6\x01\xe27P}\ +)\xd8\x1cp\x85\x0c\x07\xfc!1\x8aM\xa1\xfaVb\ +\x93\xbcFk\x07@\xed\xf9\x00\xc4\x9b\x06\xd2\x01\xcf\x06\ +\xda\x01\xcfG\x1d0\xea\x80Q\x07\x8c:`\xd4\x01\xa3\ +\x0e\x18u\xc0\xa8\x03\x06\xad\x03\xae\xd3\xa1Q\xca\x8e\xb3\ +i\x0e\x14\xdcK\x07\x07\xac\x83\xea\xeb\xc6&iEf\ +Gc\x11\x10/#\x80W\x01\xf1{\xa8\xfa\xaf@,\ +\x8e\xcb\x85\xd6@|\x08\x88\xef\x92\x80\x1f\x10\x89\xef\x01\ +\xf1\x16 V\x1c\xed\x04#\x03\x00u\xbb\x07\x04\xef\x85\ +8\x87\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x00\xfe\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ +\xa8d\x00\x00\x00\x93IDAT8O\xa5\x93[\x12\ +\xc0\x10\x0cE\xb1\x0d\xb6fs\xb55]G;!\x94\ +4\x8f\x0fg\xa6\xa3&rs\xe3\xe1\xaf\x18\x1fw@\ +\xc8w\xf5\xf8\xbf\x91k\xf5\xf0\xe1T$\x94\x98~\x0e\ +\xb4D*\xdcZ\xd0\x12J\xfa\x0a\x80[Z0\xe0(\ +\xb2\x8asn\x9b\xc0Z\x85Csh:\x18\xd0\xde\x07\ +\xe6\x1e\x0c$\x97\xa6\x03H\xd4Z\xdc\x04\xac\xc5\x1c\xe2\ +M\x1cmi\x82p\xacS\x80;\xe3\x15)\xdeZ\xe0\ +\x82tc!\x0e\xebp:\xe9\xf7@\xa9\xbc\xc2\xad;\ +\x7f\x8d8\xaap\xd6;\xce\xbd\xfa\x8fW\xbc\x9c\xc2\xae\ +\xed\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x00\x8b\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x00RIDATx\xdac`\x18\x05\xa3`\ +\x14\x8c\x82Q0\x0aF\x01\x99 21\xd77\x22!\ +\xe7.\x90\x9e7P\x0e\xb8\x0bt\xc0\x7f \x0d\xc2\xa6\ +tw\x00\xd0\xf29 \xcb\x81\xf4+ \x16\x1c\x90P\ +\x00Zl\x0at\x84\xe0h\x82\x1c\x05\xa3`\x14\x8c\x82\ +Q0\x0a(\x01\x00\x9bf\x16\x9e7\xad\x98\xae\x00\x00\ +\x00\x00IEND\xaeB`\x82\ +\x00\x00\x02\x02\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x01\xc9IDATx\xda\xedW\xbbJ\x03A\ +\x14MLc)XJTD\x91\xd8\xf9\x016V\x82\ +A4I\x13AH\xc4\x80\x8d\x96\x96NZ\xbf\xc4\xca\ +GH\x14T,\xf4\x17\xfc\x89<\xf0E\xea\xac\x9e\x0b\ +we\x18fwgv\xb2\x09B\x16\x0e7\xb3\x99\xdd\ +{\xee\x9c3\x8fM\xa5&\x97\xe3\xb5_=M\x8f+\ +\xf1N\xb9z\xd2F\xec\x03g#M\x8e\xc4\x05\xe0G\ +\x81\x18U\xe5%\xc0\x03(\xe9\x80\xa2\x8f\xc4I \xc1\ +\xae\x92P%@Q$Uy\x81\x13\x84\x11\xf0\xf8w\ +}\xd8\x95\x17Yg\x8f\x92J\xd0\xb5\xbd\xa1z\x02\xd5\ +\x14C4\x8fj\x0bg\xb7[&\xd4y\xa2\x1e\xb7\xf2\ +=\x03\xcd\x07\x86\x9e\x10\xb6\x95\x97\x14=eDy\xc0\ +\xcd\x13\xe4vIsb\xff\x02l\x02e\xb4?\x1cG\ +DDU\xbe\xae<\xd0dR\xb3\xc0\x14\xdaY\xc4\xae\ +\xa3'*a\x04\x84\xf4\xc0\x1d'\xaf\x01\xf4\xa2\x0e\xfe\ +\x9fG$\xb4\x1d\x084\xc3\x08\xe4Y\xaf\x16\xb7\x0f\xa5\ +\xf9O\xb1\x0b,\x02s\xc0{\x0cOP\xff\xf3(\x0f\ +T8\x1ehf\x01\xc5\x1e\x8fB\x96HX\x8e@\xcb\ +\xd4\x88G\xca4R_\xf8M$h$|9\x0c\x08\ +\x5c\x99&\xaf\x19\xbe\xb0Gr .\xf8\xc6\x0c\xe9\x7f\ +mtp\x91\xf6y\xcf@S\xeaG\xc6\x9c\x016\x02\ +\xf6\x0a\xbawo\xb3\x00]\xc6p\xf5\x160\x1d Y\ +\xc3v\x05\x5c\xc1\x83_\x16\x04\x1eX\xb6\xe3\xd8\x9ak\ +<\xb0\x06|\x1a\x10x\xe6\xfey\xcdn\xd9p\xdd\x05\ +s@?`\x9e\xd3\xbdW\xee\xb7-\xad\xf7\xf6\x9aG\ +\x8c\xc4\x12\x91\xd0h\xfe$\x9d\x8a\xd5u\xe2f\xd8'\ +\xa1\x9c/\x07'xD\xcc\x00\xcb\x12\xa1?\xcd\xd1N\ +'q\x16$O\xbcq\x82\x8ct\xffB\x22p;\x96\ +\x8f\x13\xda\x1d\x81\xd5\xc9\xf7\xe1\xbf\xbe~\x01}\x06\x5c\ +\x02\xc1U\xc6\xe7\x00\x00\x00\x00IEND\xaeB`\ +\x82\ +\x00\x00\x00\xd0\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ +\xa8d\x00\x00\x00eIDAT8O\xd5\x91Q\x0e\ +\xc0 \x08Cq\xd9\xbd\x99'g\xe9\x06\x06q&\xea\ +\xcf\xb6\xf7SBLmC\x12\x11\x029\xe7{\xe8\xc0\ +\xcc\x09o\xa0\xba\xba\xd8T\x87\x89\x1fM\x1b\x00o2\ +UA\xc7\x8aa\x83\x88\x19.U\xf0\xec\xaa\x85^T\ +#&}\xbfBc\x00gs\xe7\xa3\xd6'~p\x05\ +$\xf3\xbb\xef]\xa1$X\x83\xe8\x04\x88\xd4H\x07\xd8\ +\xd9\x12\x13\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01/\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ +\xa8d\x00\x00\x00\xc4IDAT8O\xa5\x92\xd1\x0d\ +\xc3 \x0cD\x01E\xcd\x10\xcd\x0e\xedB\x99.\x0b\xa5\ +;\xa4CD\x8d\x94\xf6\x5c\x83\x8ck\xc3G\x9fD\x04\ +\x0e\x1cg\x9b\xf8Z/g\xf8\x834\xdc\xf7\xc8\xf3\x8a\ +\xe1\xb6G\x0c^\xba\xa4c\x1d\x7f\x1c@t\x99&\xd3\ +\x99\x16N\xf8\xe4`\x1e\xcb\xd59\xfc\x11>\x1e\xe3\x89\ +\xc1\xa1@5\xa0C\xce\x8d\xf3s\x8b\x96\xcb\x0c9\x80\ +\xe2\xbcmf\xbep\xe3\xd5\x09\x90@\x0f\x12\xe1\xf48\ +T\xe8\xa7\xc0\xced\xde\x92\xca\x016\xcbT0\xd7E\ +\xd3\x14\x01\xb9\x19\x85\xe3p\x17\xf7%\xe6|[\xb7\xa3\ +\xb8\xc5\x81\xae\xb4\xb6nu\x02\xed%\x01z \xaa\xd7\ +\xba\xe2\xf8o\x89\x90@\xeb\xa1H\xac}U\x17$\xad\ +\xdc%\xae\x80\xc4\xb2\xfe%\x847o\x1ay\x8cB\x12\ +\xd5\x15\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01\xe6\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x01\xadIDATx\xda\xedW\xcdJ\xc3@\ +\x10\xeeK\x88 ^D\x11\x11\xd1\xda\x1f\x22^l\xd2\ +J\x9e\xa1\xde\x0az\xb3\x82\x17\x05\x1f@(\xf8\xb0\x05\ +\x1blS\xd38\x1f\xec\xc2\x12v6\xbb\x9b\x04`\xb8]\x8e\xe6\xb0\xd8\xa2\x0cO\xb8\xcf\x02\x12\ +\xde\x97\xf4\xab\xc9y\xcaq;\xc8\x0a\x8c\xc9\xd4\x04\x1c\ +9\xb1u\xe0\xd4\xc0\xfd\xa1E\xcdp\xb3\xe3\xc6%\xff\ +\xcfJNe\xce#\xdb\x01&\xe6\xbf\xaa\xbf\xf0\xa9\x83\ +'\x91\xd3\xad\xeb<'\xf9+DB\xe8/\xaat\xc2\ +\x19]p\xe0\xc9\x1f\xf8eu\xd1\xfe\xb7h\xd7\xbf_\ +\x7f\xb3\xb1^\xeamg8\x00\x00\x00\x00\x00IEN\ +D\xaeB`\x82\ +\x00\x00\x00\xd0\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ +\xa8d\x00\x00\x00eIDAT8O\xd5\x91Q\x0e\ +\xc0 \x08Cq\xd9\xbd\x99'g\xe9\x06\x06q&\xea\ +\xcf\xb6\xf7SBLmC\x12\x11\x029\xe7{\xe8\xc0\ +\xcc\x09o\xa0\xba\xba\xd8T\x87\x89\x1fM\x1b\x00o2\ +UA\xc7\x8aa\x83\x88\x19.U\xf0\xec\xaa\x85^T\ +#&}\xbfBc\x00gs\xe7\xa3\xd6'~p\x05\ +$\xf3\xbb\xef]\xa1$X\x83\xe8\x04\x88\xd4H\x07\xd8\ +\xd9\x12\x13\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01\x05\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ +\xa8d\x00\x00\x00\x9aIDAT8O\xa5Sm\x0a\ +\x80 \x0c\x9d\x12\x05]\xa6\xdf\x9d\xa6\xb3u\x9a\xfe\xd6\ +e\x82(\xb0&j*\xfb\x08z0\xd6\xb4\xbd\xf7&\ +j\x9cs\xf0\x07\xf6\xda:\x92a\x99z\x87\x11J\x16\ +\xb6\x19\x0e\x13\xbe\x13\xa4F\x14\xccE\xfd\x08R\xc38\ +\xefI\x00\x1bkA\x1b2\x8b\x9c\x9cr\xeb\x09r\x15\ +\x0a\x92C\xd5A\x04\x92PD\xea\x19Dp.U\x07\ +\xd8(\x8dX\x10h?S`ob\x1cK\x22\xf4\xf7\ +\x01\x090\xce\xb5}\xd2[\xd7\xc1\xed\xb3\x9b_\xd7\x8a\ +\x22\x0f\xcdQ\x8c\xff\xaf1d\x11\xdc\x8b\x05\x00\xb8\x01\ +\xef\x94\xd6@\xd4\x8c1\xa7\x00\x00\x00\x00IEND\ +\xaeB`\x82\ +\x00\x00\x01\x88\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x01OIDATx\xdac`\x18\x05t\x00\ +\xd1I\xb9<\x03iy\x03\x10\x7f\x04b\xc9\x81\xb0<\ +\x0c\x88\xffC\xf1m f\xa7\xa7\xe5\xe6@\xfc\x17\xc9\ +\x01 \xbc\x9b^\x96K\x03\xf1k4\xcba\xb8\x9f\xd6\ +\x963\x02\xf1\x1d\x1c\x96\xc3p<\xad\x1d\xe1\x01\xc4\xbe\ +@\xec\x0e\xc4\xb7\xa0\x966\x01\xb1\x17\x10\xfb\x03\xb1\x12\ +=\xd3\xc2\x09\xa8\x03<\x07*\x1b\x9e\x84:\xc0\x87X\ +\x0d\xea@\xcc\x0f\xc5\x1aP>>,\x0f\xc4,@,\ +F\xb1\x03\x80\x8av@\x15\x17B\xf1\x7f\x22\xf0U \ +V\x80\xb2\xb7\x90\xed\x00\xa0\x02\x0e \xfe\x0aU\x9c\x0b\ +\xc5\xc48\xe0\x1c4\x14`|\xb5\x81v\x80\xfa\xa8\x03\ +\xd0\xcc=\x0b\x15\xf7\x1d(\x07\x14\x03\xf1Jtq\xba\ +9\x80\x94\x02c\xd09\xa0\x80H\x07\x5c\xa6\x85\x03\xf2\ +\x80X\x18\x88\x83\x818\x10\x0f\x0e\x82\xd6\xfb\x92\xd4v\ +\xc0cP\xe3\x01\x88w\x11\x89OQ\xdb\x01\xc4\xe0\xdf\ +@\xfc\x0b\x88\xff\xa0\x89S\xc5\x01_\x09\xb5d\xa1\xd1\ +S\x01\xc4\x86Hu\x08\xd5\x1c\xf0\x05\x88E\x08\xa8?\ +\x04U\xdbF+\x07\x08\x10P\xbf\x1e\xaa\x0e\x14\x0a\xdb\ +\xa9\xed\x00P\xfc\xd6\x03q\x11\x01\x5c\x0c\xcd\xb2wp\ +\xd5\x86\xa4:\xa2\x05\xea\xabo\xd0\x04\xf6\x9b\x00\x86\xa9\ +\xf9\x0eu\xfcvj4\xa1\xd8\xa1\xa1A2\x1e\xed\x84\ +\x92\x03\x00\xf9}\xdcv\x87\xa5\x0a\x0a Icons / Notifi\ +cation / Helpers\ +\x0a \x0a <\ +g id=\x22Screen-1-C\ +opy-61\x22 transfor\ +m=\x22translate(-62\ +0.000000, -295.0\ +00000)\x22>\x0a \ + \x0a \ + \ +\x0a \ + \x0a \ + <\ +path d=\x22M12,2 C1\ +7.5228475,2 22,6\ +.4771525 22,12 C\ +22,17.5228475 17\ +.5228475,22 12,2\ +2 C6.4771525,22 \ +2,17.5228475 2,1\ +2 C2,6.4771525 6\ +.4771525,2 12,2 \ +Z M12.4748737,17\ + L10.4748737,17 \ +L10.4748737,20 L\ +12.4748737,20 L1\ +2.4748737,17 Z M\ +8.47487373,5 L5.\ +5,8.06066017 L6.\ +91421356,9.47487\ +373 L9.324,7 L14\ +.9,7 L16,7.888 L\ +16,11.306 L15.50\ +1,12 L10.4748737\ +,12 L10.4748737,\ +15 L12.4748737,1\ +5 L12.474,14 L16\ +.4748737,14 L17.\ +998,12 L18,12 L1\ +8,7 L15.4748737,\ +5 L8.47487373,5 \ +Z\x22 id=\x22Combined-\ +Shape\x22 fill=\x22#FF\ +FFFF\x22>\x0a \ + \x0a <\ +/g>\x0a \ +\x0a \x0a\ +\ +\x00\x00\x05\x08\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x04\xcfIDATx\xda\xcd\x97{h\x96e\ +\x18\xc6\xe7\xa6s\xfa9\xb5\xb9<\x90\x87r\x1e\xd6\xbe\ +\xda\xe667\x06\x1fQ\x9e*\x05\x0b\xc9S\x05\xa9%\ +\xea\x9a4bakk\x91&\xa9\xa0\x9df&\x82!\ +\xa2R1*,\xc1\x0e\xd8\xc8\xa2,;X\x19\xd5\x97\ +\xd3j\x85BZ\x14\xa5\xe5X\xd7%\xd7\x13\x97\x0f\x15\ +\xd2_\xfb\xe0\xe2~\x7f\xcf\xde\xe7}\xef\xf7\xbe\x9f\xe7\ +~\xeeedt\x87\xdf\xfc\x85\xcb\x0b\xa1]\xf3\x16\xd4\ +\xd6\x89{C\xeb\xc1\x9ba\xfbk\xec6\xf0s\xb0\x95\ +\xe2+\xc1\xcf\xc0\xd6\x88\xfb\x82\x1f\x85}\x12\xea\xc31\ +\xf0\x1d\xb8\xe6\x9cbq\x19\xae[\xa1E\xb1\x03\xef@\ +]\xb8\xa1\x0b6\x09\xd5\x1a\xaf\x85\xf2\x8d\x8fi\xce!\ +q\x97>\xe0^\xe3\x07\xa0\xd1\xc6\x9f\xc8\x81\xcf\xc5T\ +\x81;\xb0\xdb^0\x12\x9ac\x5c\x0f%\xa0N\xf1\x07\ +\x9a\xf3\xaa\xbd`\x18\xbf\xca\xb8\x06\x1a\x0c>+n\x93\ +\x03o\x8a;\xa1\xa1\x7f;\x80?\xe4@\xb7c\xb0\xdc\ +\xc6\xae\x07\xcf6\x1e\x07^\x02;PL\xa7\x16\xc3\x96\ +\xd8\x87\xcc\x04\xdfd\x9c\x04/\x83\xfa\x8asq\xcdg\ +\x14\xc5)`\xce\xe7\xe0\x0fW\xd8\xd85t\xc2\x98!\ +\x9d\xcf\x87X\xce\xe7\xc2^nNN\x05O3\x1e\x0b\ +\xbe\xd9\xd6DB\x5c\x10;\xf0\xac\x85\xfc\x12h\x96q\ +\xad\x1c<#~[s^\x123\xccC\xa0[-\x05\ +\x8b\xa0A\xe0\xd3\xe2\xbdr\xe05\xf1o\xd0\xc5\xee\xc0\ +A{a\x09Tg\xbc\x81\xf94\xee\xd0\x9c\xc3\xf6\xc2\ +\x22\xa8\xc9x%4\xc6\xf8\xb0\x1c\xf8\xd2\x16\xe1X_\ +\x03\xdcR/b\xb0A\xdc\x07\xda\x04\xde\x0e\x9b\xa7\xb1\ +%\xe0\x97aS\xe2\x09\x5c\xbc\xb0\xf5\xe2~\xe0-\xb0\ +\xdbx-'\x97\xe3\x9as&\x8a+q\xbd\x07\xaa\xf9\ +\xa7Z\x90\x888\x0b7\xf6\xf61pn\xc4\x89\x88{\ +b^v\xf4\x9c~\xff\xc5a\xb0I!\xee\xe0\x82\x81\ +J\xa1?\x15\xc2i\xd1\xbe\xdf$^-\xfeZk\xa4\ +\x1a\xdc\xa9\xf0\xa6\xe8\x08\xf8S\xf1:9\xb8>\xd4\x05\ +(\xc7\x1d\xf8\xc2r\x5c\x0d5\x1a?\x05\x0d7>\xa9\ +9G-\xc7\xe5\xd0\xc3\xc6\x5c7E\xc6\xed\x8a\xe87\ +\xb6\x06\x92\x1e:\x96\xd9S\x18\xdc\x0f\x9b\x09]\x0a\xf1\ +\xcb\xbe\x87-\xd5=\xcf\x83\x7f\x86\xbdG\xbc\x14\xfc\x13\ +,\x0bR\x0f\xd5\x09:\xf5-T\xc81\xed\x94_B\ +\xce\xc1w\x89_\xe0{2\xba\xcd\x0f\x9e]\x0b}\x05\ +\xafv\x88Y\xfb\xdb\xc0\x1f\xb2\x00il\x03\xf8\x08\xf7\ +\xbbU\xbd4\xec\xd3\xe2a\xe0\xfd\xb0\xef1e\x8aR\ +\x0b\xa3\xc2\xba\x22\x9e-n\x89\x1d\xf8\xccr\x5c\xc9\x83\ +\xc5x\xa3\x8aS\xe0\x13\x9a\x93\xb6\x1cs\xd1\xae2^\ +\xc7\x0aiLG\x99\xda\xa3\xb6\x06\x0a}\x0d<\xa1\x9b\ +\x99\x9f\x81\xd0\xd5a2\xec<(K;\x84\xdc\xaa9\ +[\xc5'\xa0\xfe\xd0\x8c\xe0$4Su\xe1\x07\xf16\ +9\xbdK\xdc\x01\x0d\x88\xa3P\x1c\x0e\x1a\xf1\x08\xf0\x18\ +c\x1eXe\xd1\xbe/\x09\xfd\x82\xf82\xaf\xf3r\xa2\ +\xb0\xdc)\x8f\ +\xc3\xce\x15\xf7\x047\xaa\x17\xe8%\x07nT\x0aG\x8b\ +\x0b\xc47\xc4\x0e\xb4Y\x8e\xd9\x5c,6^\x05]d\ +\x9c\xd6\x9c\x03\x96c\x9ezu\xc6\x0d\xd0(\xe3\x83r\ +\xe0#[\x03\xa3<\x94\xaf[\xcey\xec.4nV\ +\x8e\x03\x87\x83\xe5-\xcb9_v\xa7\xf1\xdd\xd0p\xe3\ +w\xe5\xf4\xfbbj\x84G\x80_\xd8\xc0\xf3\xdc\xc6\x16\ +\xe8\xa1=\xc4U\xe0\xfb\xb9\xdd\xc2VU\xc8'\xd9\x87\ +\xb0\x07\x5cj|\x15\xb8\x99\xf7\x8a\x87\x88Sq\x0a\x98\ +\xf3I\xb8a\xa4\x8d\x95\x80\xab\x8c\x07\xab\xe1\xc8\xb1\xc3\ +j2\xb7\xa8\xbd\x90'd\x85\xf1P\xf0\x14\xae\x0fq\ +6\xae\xa7\x9e\xd7\x8e\xe9aaK\x9dU\x11\xba\xcer\ +\xce\xe6\x82\x13O\x8a_\xd1\x9c\x9d\xe2_\xd9|\xb0\xd8\ +X\xce\xd99q;\xff(n\xb5r~\xee<\x81\xf2\ +|\x0d\x1c\xb2\x1cO\x84V\x18\xb7\xf0K\x8c\x8fkN\ +\xdar\x5c\xaa\x1d\x13x-4\xde8\xad\xb3\xa1\xdd\xd6\ +\xc0x\x8f@\x15[-\xf6\xf5\xa17\xa0\xd7\xe0\xbdl\ +\xb74\xc65r\x00v\xba8\x05f;\xbfF<\x80\ +\x87\x0c\xec\x1e\xae)9\xf9 w\x0b4Yc\xdfy\ +\x8e\xb2Y\xb4\x1c\xa7\xb4\xf7\x03o\xe6\xee0>\xa59\ +\xc7,\xc7\x15\xd0\x1a\xe3G\xa0\xa4q\xbb\xa2\xf3\x9d\xad\ +\x81\xa4G\x80\xfb\xfd4\x06?\xa6gQ\x04RQ\x04\ +V\xffK\x04\x8a-\x02\x15Q\x04\x1a\xe5t\x93x_\ +\x9c*>0\xcf\xbb\x14\x9e\x01\xa1\xbb\xb5H\xe5G<\ +(\x14*\xfb\xc7#a\x9c\x19\x8a\x90=7?\xa3;\ +\xfd\xfe\x02\x18\xfc\x86\x85\xa5`T\xfb\x00\x00\x00\x00I\ +END\xaeB`\x82\ +\x00\x00\x00\xfc\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ +\xa8d\x00\x00\x00\x91IDAT8O\xa5S\x81\x0d\ +\x80 \x0c\x03b\xf4\x1c\xff\xffB\xcf1\x9a\xa0%T\ +q\xbaa\xa4I\x1dts\x14P\x1fct-\x08\xdb\ +<\xbcv\x80\xae\xe5n\x80\x03\xc9u\xea\x8fp\xc5\x92\ +\xd0J=mA\xae\xd4\x8d\x8bG\x84\xce1 \xe7\x09\ +\xec\xca\x8e\x92V\x0e<\x07\x7f\x9b\x84l\xc4\x04l\xab\ +\x87\x8a.\xb5\xd5\xad|z\xb0@\x16[/\x92\xe7\x16\ +x\xc2\xb4\x9b\xe5*\xd4/\x91M\x1e\xd7V \xd5\xd0\ +J\xcd\xae\x96W\x93_\xb5\xdb\xa4d\xcd\x11\xd9\xfe7\ +\xe6hB\xbf\x15\xe7v\xf1\xcd\xb3\xd1w\xeb$X\x00\ +\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x02\x14\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x01\xdbIDATx\xda\xed\x97\xbfKBQ\ +\x14\xc7E\xa1!\x10,tk\x08\xda\x02\x1bj\x8eR\ +hj\xd1!\xe8\xd7\x90\x8deCS\xd1\xd2\xd8\xd2\x16\ +iC\xb4e\xf8'\xb4i:YTCC\x8bA\x16\ +M\x85IF\x93\xda\xf7\xbc\x8er\xb9\xdcgO\xbb*\ +\xc1{\xf0\xe1\xf0\xe5\x1d\xef\xfdz\xcey\xf7\xa9\xc3a\ +_\x1d\xbe\x96V7\x92\xe0\x0e\x0cu}\xf3\xc5\x955\ +\x176~\x0650\xd6}\x03\x91\xa8\x0b&\x0a\xa0\x06\ +\xfc\xbd\xaa@\x81+`\x1b\xf0\xdb3\xd0\xabs\xe0\x91\ +\x0d\x8cZq\xbc\x8f\xc4\x0b\xe0\x01G\xd0i\xc4T\x1d\ +\xe8\x94\xa43\x88\x9b`\x02\x9c@\x0f#\xd2\xb7^\x06\ +\x0b\xd0\x14_\xd9\xc0\x16\xf4<\xdf\x1bQm>\x83\x9e\ +\xd5\xb8_>p%\xe8\x1f\xd4\x9a\x8c\x06YS\xbf=\ +\xa0,\xdc\xaf\x82\x8a\xf4\xf9YU\xa9Bt\x93\xddz\ +AN\xd0\x06\xb4\x90\xa4)\xc6@\x80\xf5;b?\x18\ +\x07\xb4qU\x91\xbfk\xd6+\x1d\x06\x8a\x88n^o\ +N\xf1\xf9D\xb3a\xd1j\x80\xdb\xba#\xe4g\xa1\x9d\ +\xcd\x060$\xf4\xc8\x0br\xac+\x0d\x22\xd1\xaa\xa4\xe9\ +~\x0c\x04\xb8\xc7ED\xb7\xb4\xee)x\x02\x03\xbf=\ +.\xda+\xc0\xeb:\xe9\xa9\xb2\xf2\xbcv\xc4@+\x07\ +\x86l\xe0Ra@5\xd5q-\x06\xa4\x19\x18\x04\xe7\ +\xd0\x1f\x88\xa5\x06\x91hI\xd2\x9f\x88{`\xdal\x06\ +\xda\xad\xc0\x14\xa0\xc3\xc8\xcb\xd500\xd1>\xb0\xae\xbb\ +\x05b\x89[\xd1\xda\x0c\xbc\x80\x03\xe88\xf7\xd8@\xd0\ +1I\x97u\xcf@\xdaB\xfe-\xf2\xef\x11'A^\ +\xf7\x0cd,\xe4\xd7[\x10\x06y\x1d-\x08\x0b\x06\xd2\ +\x16\xf2\x0f\x91\x7fL\xefy\xf0 \xbc\x8c\xda6\x10\x14\ +\x0c|\x81\x1b*3b\x03I\xd3A\x95C\xbc\xa67\ +\x1f\x1bxC\xec\xfb\xcbo\xb8m,r\xc6$\xa1\x93\ +F\xacc\xae)?\x01\x1d\xb0\xff\x0b\xfe\xbb\xeb\x1b\xc9\ +\xfb\xd7\x13\xad&L\xa9\x00\x00\x00\x00IEND\xae\ +B`\x82\ +\x00\x00\x00\xd0\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ +\xa8d\x00\x00\x00eIDAT8O\xdd\x93\xd1\x0a\ +\x800\x08E]?.~\xb9atc\xc55\xad\x97\ +\xa0\xf32\x86\xf3p\x057\xdc]\x18f\xc6\x0b;\xaa\ +:\xe2<\x04s\x03\x8aA&\xc2\x9be\xbb]\x88&\ +4\xce2\x06\x15\x80\x8e\xe4V\x10d#\x80RP\xf1\ +Z\x80d\xdf%\x00\x7f\x12T\x1b\x97qJ\x10\x92\xa7\ +\x22:BG\x84z\xfa\x9d{\x88\xac\x1d\xf5-\x8f\xc3\ +r\xe1\x95\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x04M\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x04\x14IDATx\xda\xcdW}L\xceQ\ +\x14~U$\x94\xbc\xd2\x87,\x9f\xf3\xe6\xcd|d-\ +LS\x93lY6\x9f+[MM\x85B\xc3l6\ +b\xfc!B\xd6\x1f\xac\x86\x0cM\x96\xcfe\xb3\xd9d\ +\xf3\xfdG#\xf9\x1c\xcd\xb0\xcc\x98\xaf\xc9V!y\xce\ +\x9c\xcb\xd3\xf5\xf2\xf7\xdb\xf6\xec\xbe\xe7\xf9\x9ds~\xe7\ +w\xefs\xef=9\x1c\xde\xf0\x97\x91\xbd2\x1a8\x9e\ +\xbe\xa4\xb0\x88\xb8`\xd8\x071\x96\x00=\x85\x83\xed\x87\ +\xdf\xdb\x81*\xc0I\xbe\x85@\x0d\x9e\xbb\x89\x9b\x0b\xfb\ +$\xc6\x14\xc3\xc1\x8e\x85}\x0a\xc8\xb1\x0b\xb8\x05t\xc1\ +\xa1\x0b\xe3\x04\xe5\xf6\xa9-\xc8\xd3\x049j\x0b*\xd4\ +o\x9c\xe1\xf0\xfc\x8er}\x80o\x1a\xdfI\x05<\xa2\ +\xf8\x91\x5c@\x1d\x150B\xb9b*`\x9e&\x98C\ +\x09\xb6\xa9\xdf0*\xe0\x82r>\xc0'\x8d\x7fC\x05\ +\x5cU\xdfN \xdcA\x0fz\x03y \xe3\xac\x99\xc9\ +\x02\x9f\xca\x1c\xecY@\x96\xc5\xc5\x02\xcb\xe0\x1f@\xdc\ +P\xd8\x05\x18#(_ l\xe1\xc6:\xbc\xea\x0f\x95\ +\x0d\x14q\xa1\xb24\xe2z\xc0\xde\x841\xdf\xf2]\x0a\ +\x08\xefK\xdcl\x8d\x0f!Nfe\x17F7\xcdJ\ +\x04\xecR`\x86]\xc0\x15\xd2\x80[\xb92\xd2@\xa6\ +&\xc8 \x0d\x94\xd3\x0e2\x1a\xb8\xa9\x5c/\xa0]\xe3\ +\xdb\xa8\x80\xbb\x14\x1f\xc5kXo^f\xb6\x12\xc6R\ +S\x14\x90\xa9\x893\xd4\x16\x94\xa9_\xb4\xe1\xf0\xfc\x9a\ +r\xfe\xc0\x17\x8do\xa5\x0f\xbdM\xf1Q<\x0325\ +;@.$N\x92l\xd6=\xde\x83\xf8\x02`\x0b\x0b\ +Nv\x09\xb0\x13\xfe\x83\x89\x9b\x02{\x0f\xc6\xf1\x960\ +\x85K\xf5:\x11\xf6\x05\xb2Qa\x9c\xb5\xbd\xd2\xf9$\ +S\xdf\x99@\xba\xc5\xc9\x09\x97\x03\xff~\xc4\x0d\xd7\xad\ +\x1dI\xf9\xfa\xc3\xce\x05b\x1c\xd6\x8bN\x93\x06\x86*\ +\xb7\x814\x90f\xd4NkX\xac~Q\xa4\x81:\xe5\ +|\x81\xb7\x1a\xdfBE\xd5\xabo\x1b\x10\xc6_\xd0@\ +\xbb`\x92r\x15\xb4\x0b\x96k\xe2\x5cR\xf1!\xf5\x1b\ +O\xbb\xa0\x89\x8e\xe2\x1f&\x9e>\xf4\x09\xc5\x8f\xb2/\ +\xa3Z8\xac#.\x08\xf6\x11\x8c\xbb\x01?\xf3e\x22\ +6\xe0\xa8\x5cV\xe4[\x04\x9c\xc4\xf31\xc4\xcd\x87}\ +\xce\xba\x8c&\xc0\x16.\xd7\xbbD\x88\xca\xe4\xd4\x9b.\ +\xdb\xd1\x12W\x1f\xd8\xc9|b\x9a\ +\x07\x95\xba\x86\xdf1\x86*\x97O\x1aH\xd4\xa4\xd3h\ +\x0d\x0b\xd5o\x10\xf0U\xe3\xab(g\xb3\xc67QQ\ +g4\xf6#0\x80\x0b\xb8G\x22\x9c\xac\xdca*`\ +\xb5&(\xa0\x02\xaa\xd5/\x8eD\xf8\xd8\xe8\x87\xf2\xb1\ +\x08\x9fQ\xbc\x8b\x0bH\x00\x1a\xe1\xb0\x9f8\xd9^\xd7\ +1\x9e\x95\x844\xad\xd2\xd1\xdc\x90}N\xbe\xe5\xc0]\ +Y\x06\x16&\xec\x07ryQ\x01ri\xdd\x97\x8b\xcb\ +\xe1u\x7f\xd2\x09\xa1\xc2\x00K\x5c\x91rU[~N\ +`\x88\xc5\xf5\xee\xd6b\xfd\xb9\xce]\x1e\xde\xe32\xdb\ +\x9a\xc9\x12]\xb3wf\x7fc\x5c\xa0k\xd8\x0eL\xd4\ +\x82\xe4\xd0i\xd35\x5cL\xeb\xfdZ\xe3K\xb9\xcf\xd4\ +\xf8K\xf4A\x15\x1a\xfbT\x0e+.\xe0!\x89&A\ +\xb9c$\xc2\xb5\x9a`\x15\x89\xa8F\xfd\xa6\x92\x08\x9b\ +MGm\x8bPg\xe4\x05\xc5\xbby\xaa\x17\x01\xefA\ +^\x943A9\xe9v_I\xa7\x0b\x84k\x92P\xfc\ +\x96;]x3+\xb2\xb7\xcf\x03\x1f\xa4_\xa0\x9c{\ +a\x7f\xc6\xb8\x95\xbb)\xd8\xc2UK\x9c\xd7\x890\xd8\ +\xaeJ\xaeWiL,?\x7f\xe9n-\xce\x87\xef\x06\ +\x8awzx\x8f\xd3\xd3\xcbW\x88\xb8\x10\xd0(\xfd\x9c\ +r\x892]\x18[\xcc\xcd\x05{8~\xbf\x04Z\xe5\ +\x98\xa5\x82\x1a\xb4\x07\x5cM9O\xc0\x96\x13\xb2\x92\x0a\ +\x92f\xb6\x03\xb8l\xfe\xdb\xfa}MR?\x90\xa4\x5c\ +\x0d\xf5\x03\xeb5\xe9\x1a\xea\x07j\xcd\xf1L\xfd\xc0s\ +\xf3\xe5\x94\xaf\xcbhE>\x86\xe2c\x1cV\x9f\xd7\xae\ +]\xab?\xcd@\xeb\x7ff \x85\xce\x00\x99\x81\x0e\xd9\ +%\x94\xb3Vg\xe0\x00}\xe8F\xbd7\xba\xcf\x80Y\ +\x1b\x0f\x1a\x08\xfa\x87\x06\x82\xecC\xc7\xd3\xda\xfeu\xeb\ +\xfd\xf2\x0d\xf1*\xf1\xff\x04\x8f\x07^\xb5\xbe\xa8\x80\xde\ +\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x00\xd0\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ +\xa8d\x00\x00\x00eIDAT8O\xdd\x93\xd1\x0a\ +\x800\x08E]?.~\xb9atc\xc55\xad\x97\ +\xa0\xf32\x86\xf3p\x057\xdc]\x18f\xc6\x0b;\xaa\ +:\xe2<\x04s\x03\x8aA&\xc2\x9be\xbb]\x88&\ +4\xce2\x06\x15\x80\x8e\xe4V\x10d#\x80RP\xf1\ +Z\x80d\xdf%\x00\x7f\x12T\x1b\x97qJ\x10\x92\xa7\ +\x22:BG\x84z\xfa\x9d{\x88\xac\x1d\xf5-\x8f\xc3\ +r\xe1\x95\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x07\xe6\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a o3de icon\x0a \x0a \ + \x0a \ + \x0a \ + \x0a \x0a<\ +/svg>\ +\x00\x00C\x13\ +\x00\ +\x01\x9f\xd1x\x9c\xed\x1d\x09\x5c\x8c\xdb\xf7\x9bR!\xd4\ +\xc3#)e\x8dl\xf9{\xc8Z\xf6}_\x1f\x22<\ +\xbb\x92\x84,\xd5\x90%d\x97\x9d,E$B\xa4\x92\ +\x22\x22k\x12\xd9[H4\xed{\xd3\xcc|\xff{\xee\ +\xf7MM\xd3LM3\x93&\xba\xbf\xdfy\xbdI\xf3\ +}\xf7\xdes\xee\xd9\xef9\x04\xc1 T\x09\x18\x0cB\ +\x9f\x98\xa7M\x10\x0b\xd0\xff3\x99\xd4\xe7\xb65\x19D\ +\x18\xfa\x9d\xa9)\xfdy\x00A\xa4\xb7`\x10FF\xd4\ +g\x8f\xd6\x04\xd1d>\xfa?}\xfa\xb3&A\xdc\xdb\ +\xc1 45\xa9\xcf\x8bj\x10\xc4\xe2\xe3\x0cb\xfb\xb8\ +1C\xeb\xd6\xd6\xae\x8d\x1e]w\xf8\xb0A\x13\xe0_\ +\x01j\xc2\xabgZ{\xa0wj\x1b\x0e\x1f\xd4\x7f\x92\ +\xed\x87\xe4\xcf\xa3\x975\x88\xfa\xa2\x9a\xf6\xa8\xd5\x18+\ +\xa2\xc1\x86\xe8e\xdeM\xe3w\x5c>1\xe4\xb9\xd9?\ +\xb5/\xd5\xb09p\xd0\xccP\xe5\xcc\xe5'\xdb\xa6]\ +\xf3h9\xcd\xac\xd6\xf8I?\xaf\x98\xaeh|\xd9P\ +\xc9\xac\xf9 \xb7\x05C\x0f\x8c\xaeU\xbf\xc5\x88\xc6\xcf\ +'\xef\x98\xda\xff\xf9\xf1\xd0eg{t\xeb\xb4\xeb\x80\ +\xf1\xf6\xe8\x87\xcf\xb4\xe6-{\xa4\xd75\xd3\xa4k&\ +\xa7\xbb\xe9\xf4\xb4\xf4w\x09G3\xbb%\xe4Y\xfb\xe9\ +8=>~\x8c\x11\x9c\x909\xfcp\xc8\x94\x93\xd7n\ +\xae&\xec\x08\xe7\xd9\x8c\x98\x06\xdc\x97\xdf\xec\xdb\x11\xe4\ +\x1b\x87\xa0\xd3\xe4\xda9\xad\xbf\xec\xdb\xdf\xe9\xc8I\xf4\ +\xf7\x1b\xfcf\xbex\xc3\x08o2\x83\xe58%\xcc\xe4\ +\x95C\xb2r\xfb^.\x8765\xaa\xa9\x1e\xae4\x17\ +\xfd\xdd5}\xb3\xb6\x9e\xb7\xffG\xf4\x9a\xb7\xd4\x8c\xd8\ +\xca8\xa1j\xa5z9)\xf2HC\xe6\x05b\x01c\ +\x94\xd7\x83\xde\x87\xdc\xd5\xffk\x14U\x83i\x7f\x98\xac\ +=\xfda\xea\xfeN\x1a~\x1f\xfe\xc7lG\x98\x18\x07\ +\xae\x8a\xf9A\x84\xa7f5>=\x99\xd3\xe9g\xc6^\ +\x83\x8e\xcay\x8c`e\x83[ut\x9a\x10hns\ +\x88\xd9\x03\x97~ip1\xae\x1d3uJ\x9c\xee\xc4\ +\x08\x95\x8b\x87\xe6)\x99\xea\xdd\x0c\x22\xbc\xe2\xd6\x0c?\ +\xbc\xcdc\xd3|\x22\xba\xff\xd2\xbf\xdd\xdc\xd4'n\xcf\ +`\x9c\x9e\xca\xd1\xf2\xd9\x11\xdd\xc9\xac\xd9Ym\xb7\xd3\ +*\xfdg\xbe\xd1\x1f\xd7\x0b&\x16\xcd\xfc\xdb\xf5Dg\ +\x15\xaf\xa5i\xbbl\xfa\xefh\xd7\x84X\xa7\xe7\xa0\xb3\ +,\xf1@@\x07e\xad\x89\x8b\x9dM/\x12\xe1C\xb3\ +S\x1d\x1d\xd7\x7f\xb3\x1c\xcb\x989i\xce[\xfd\xc3O\ +c\x996\xcd\x99\x1bV\x92k\xbc3\x0e\x14\x9cd\xa4\ +\x05\xf0N66\xf8\xa0\x14\xde8\xed\xd3\xa3\x80\xec\xbc\ +A\xb3\xae\x13^\xdd\xbc\xf5\xd3\xe3\xcevd\xbex7\ +\xbdN\xf0K\xf3x\x83\xd4D\xe5\xb4\x1b\xb3\x1a\x0fz\ +\xf7E)\xfcBN\xca\xc0\x19\xb7F\x0e:\xd6n\x91\ +\xd7\xc6\x83f\x9d\x17\xadW7]\x9eA\xd6\x99b\x7f\ +vnH\xf8te\xbb\xd5w=,\x18\xa7\xc7\xa6^\ +\x0b\x1b;i\x96\x9e\x8f\xa6\xd6-\x96\x8aE-\xf4\xb0\ +\x0f*\x84\xc9\xa6\x9d\xeb\x9cr^\xd7\x8b\x19\x1a\xf8b\ +\xda\x8b\x0c\xe2\x87\xb3\xd7\xe7mo\x13\x0c\xce&~\x8e\ +b\xedv\xefP\x97\xe0\xd6\x9d\xe9\xcd\x1e\xad\xe9\x17\xa9\ +\xe290\xf8:\x81^\xfe\xbf-\xee\xcd\xcd\x87\x13\xde\ +\x19\x0d\x8e>\xb9\xaei\xd4\x97\x98\x96\xbf\xbd\xc3\x9c\xe1\ +5\x8fh\x13\x979\x83\x0e\xfd\xafo\x8dQ\xea\x84\xdd\ +\x87\xb8M\xcf\x1bo~\xbc\xb4\xd3\x91\x9e\x83\x17=\x99\ +`n\x17{\x7f\xcf\xf5\xa8-\x8f'\xde]f\xb3\x9c\ +11G\xb9\xed\xb4/\x1f;\xd9\x0dv\xea\xd3J%\ +&s\xc8\xa9V\xcb\x8c\x89,\xb5\xf5\xf6*kR\x9b\ +\xef\xf7&:\xd6\x98\x90\xcd\x99\xdf\xb5\x99\xaa\xbf\xc6\x14\ +\xfb\x16\xed\xec\x16Y\xb9X|f\x9c6\x09\xe9\xd3\xc1\ +N\xc5\xa9\x8f\xe5\xed}\xdc\x1a\x89\x89J\xde\xd1c\xdd\ +\x0e6L\xd4\xd2X\xe4\xa6n\xa5\x87^\x7fi\xd1\xd0\ +\x93f\x1b\x8f)\x9bF?\xf3\x1e\xcb\xd6m\xf0j=\ +;\xf1\xfd\x22\x9f\xf3\x9d\x98wW\xe5\xa6F\xa4\x1et\ +z\xc2^xs\xc6\xee\xa8\xd7*1+\xb9\x83\x96x\ +^\xdc=E\x97`/\x09\xea\x1a\x91\xba\xdb\xc9\xb0\xd7\ +\xc4\xa7\x87\xe6\xde\xf4!B\xdd\xa3\x9b\xfc5\xd9=\xd1\ +\x7f\xfad\xe2\x87\xa3\xbaYD\xea\x0e\xa7K\x11\x93\x93\ +\x991w\x1d\x99l\xeb\xe8\xe8{\x8bMZ\x18\x0c\xef\ +\xdfTs\x94K\x81\xde%\xdd\x1a\xce\x1b]\x5c\x1f/\ +\xfep\xe6\xcd\xe7\x1d\x86\xb7\x08\xdb\x5c\x03k\x9f\x86\x86\ +>J\x97\x163f\x12\xedM\xf6M\xbc9\xcfu\xf4\ +\xbac\xb9\xf9jw\x0fu\xb0k\x15\xb9y%\xd7k\ +\x15\xc95y\x9bk\xd43\xa8]~#'7\xbb\xba\ +\xfa\xb3RL\x0e\xd5%\xec>\x9e\xe9\x14\xb6\x7f\xe8\x00\ +5\xcd\xa6K<\x0bR_v\x9c\xdf\x84\xf8\xb6\xca\x0c\ +\xd1\xa9z\xfb\xf4\xddj\xee\xbcy\xee\x9d\x82\xa7F\xb4\ +6h1\xf1\xa0\xd7\xd3\xd6\xca\xa6\xb33\x1d\x86\xf8G\ +\x0e\xfaoG\xd7u'y\xa6~\x8d\x82U~\xd6o\ +\xb0\xefb\xa7\x83\xec9~\x84y\xa6\xebc\xb3\x11o\ +\x7fj(\x99F'_\x18\xe9\xef3\xe8\xbfK\x9d\x02\ +-\x83.LRg\xaeqh\xb1\x86}\xda\xf2\xf01\ +U\x9dC\x9dZ\x87\xed\xd8z\xfc\xaf:y\x9a\xb5\xba\ +\xc5\x9e\x0b\x0fX?(\xebvN\xe6\x84\xfaa\xban\ +=V\xe6\x9b\x04\x8dJ\xd1?\x196g\x95\x9d\x86'\ ++ b\xf9\xf6\x7fB\x88\xd0\xda\x0ei\xb3\x88\x1f-\ +\xb7\x98E\xb8\xb7Z_\xc7\xa6\xe0\xaf\xba=\xbe\x9e\x9b\ +\xa7\xa6Y\xb7GB{\xfb@rJ\xeb!\x9a\xcf\x02\ +\x9f\xc4\xed\xc9\xee\xdbj\x7f\xefa\xad\xd6\xb8u\xde\x18\ +e\xb3*\xf4\xad\x7f\xed5u\x0c-\x19uF\x1e\xde\ +{\xf9\xafZ\xdd\xe6\x9c\xfe\xb8\xe7\x80\x01\xc7i\xebq\ +\xcd\xba\xa9\xbe5#\x93\xa2L\x98\xc3~\x04\xab\xf5\xef\ +\xe2{\xf0\xe1'\xcf\x0e\xb3\xda\xac1\xf2=8\xb8\xd7\ +\x01\xcf\xcc\xbf=F\x84\xb4\x9d\xd6d\x1a\xa7\xa3qG\ +\xb3^\xff\x8b2_\xaenYOoH\xab\xff\xd8\xc3\ +\xd3\xcek\xfd\xc8\x09j\x5c{\xe5\xc8\x7fG\x91\xb7v\ +\xf9\xb9w\x98Q\xf3\xad\xf1\xae\xda\x0c\xab!\xfe6\xb3\ +\xfe\xfb'h\xfd\xee\xa5k\xbe\xdb\xb4\xd9\xd6\xbe\xc1\xe2\ +\x89\xbc\xe4SV7\xae\xbb\x04\x1d\xbco:\xcd,:\ +\xe4Y\x5c\xa3f\xe4\xf5\x87FF/\x8f\xde7\xf9\xa6\ +l\xea\xdab\xd1\xe1N'?\x0e\x1e0\x1aM*\xbc\ +\x81ehp-\x870\xfb\x1e\xc7\xef\x1d\x1b\xf6\x83\xe8\ +t\xb2^L\xc4O\x02mL\x1f\xde|\xf5\x03\x99\xc7\ +\xef\xf4\xdb\xb58\xd5\xd9+\xbb\xc96\xa7\x86\xb7\x08\xb6\ +\xdb\xc8\xef\xdd\xef15^Yu\x1d\xb3\xba\xe0\xaf\xbe\ +W>\xc7{\xfa5m\xda2M\xa7\xaf\x83\x81\xb6e\ +\xe8s\xab\xaeh\xca\xf7\xbfq\xe0\x95\xdb\xfd\xdc/\xdb\ +\x5c;qI\xe3\xc3\xbd\xb3\xa9*\xc1\x06\x11\xee\xd6\xbd\ +\xe6M\x0aL\xb0]\x19\xa2l\xf1\xcaH\xf9\xf4\x89}\ +\xbc)\xceY\xbes-\xdb\x1d_\xfe\xf7\xb8\xd1\x19\xab\ +\xcc~6\x0aNd7\x8b{\xdd\x94\xa2\x9e\x0e\xedg\ +\xac\x08\xb2\x0bZ\xec=={\xf3\xf1.7n[\xfc\ +\x9b\xff9X\xab\xb3V\xd3%!yY\xaa\x8e\xa7\xd7\ +\xd9\x85.o\xa8\xc14s&'9\x10G\xdcoG\ +[\xae\x9e\xdfy~\xcc\xe6\xec\xab\xb1\x8d\xf6\x853>\ +5\xe9\xfbL\xdfc\x96k\xfa\xf1\x05\xfaA\xb9\xb3\x03\ +l.N\x1a\xf7i\xb9\xde\x8f\x9c\xa8@\xe3\xf3\x7f\xad\ +\xde\xec\xfcQ\xab\xbfU\xca\xeb)\xcec\x97[9\x9f\ +\xbe\xb3:\xf0\xc5\x05\xe7F\xa6\xae6\xdb\xdd\x1a\xe6|\ +T\xf3\xe7\x8e\x18}tp\xc8\xf3\x13\xbcK!\xa6\xbe\ +z{\xfc\xf7\xcc\xb5\xb6W\xff\xfa\xba\xa9\xce\xc8v^\ +\x1a\xc1\x13[\x12\x1f\xdcG\xb6\x8cuxD\x0e\xf5\xaf\ +\xf9w\x17B\xbbkD\xf4\x8e{_\x1a\xa1\xa7\x99\xcf\ +\xed\xde\xd2L\xe7\x8d\x8fr\xea)\xd5\xa4\x03\x9dvm\ +\x9e\xac\xaeV\xeby\xf8\xca;\xc3\xfdk\xeen\x5c'\ +\xcfje\x9ef3\xb3\xbeK\x0a2\x16>\xccf\xdc\ +A+\xea\xbc\x5c\xbe\ +\xd9jaV\xcd!l\x8d\x16\xf5\xaf\x9f\xef\x9c\xb4Y\ +\xc3\xd5\x8bXZC\xb9_\x1f\xffu\x91\x99fJ3\ +\xee\x9aeg\xcdoyF9\xbf\xb5+\xb3\xbb\xf9\xd4\ +w\xf3\x8d<\xb7\xec\x1d\x96\xd2\xd6,l\xddn\xcf\x19\ +\xdd{\xdcF\x13\xeb\xfb\xe8\xf8\x8a\xa5\x89^\x06\x015\ +\x0e9\x04\xb48\xd3f\xe2\xf7\xb7\xedU\xee?\x8b\x9b\ +\xf2YoV\x0b?O\x1b\xc2J?|]K\xae\x17\ +\x22L+^J\xd3\x97[\x98\xf1f\x84\xe7\xdd\xe0!\ +\xfa\x08\x95\xce\x0fI\x8e\xf2\xd8+\xbeQ\xddN\xe7f\ +\xdc\xfc\xd0\x95\x810\xbc\xcf\xc5iV\x03t0\xc3\xb2\ +\xe7\x8d\x88\xaes\xd9|-1\xe95\xd9\xc3\xf1\xda\xbe\ +!^\xc6\xf5L\xb7\x0e\xfb\xc1Lx\xab>\xad\x19\xb1\ +z\xcc\x8d7\x13\x8fN\x9e\xadN\x10\x06\xef\xebz\xef\ +\xeab\xfc\xc3E\xd3\xfb\x1fB\xfb\xfd\xfc[Sv\xf5\ +\xe9\xe5\xb9\xae\xbd\xfe\x93\x8d\xa63\xd6\xb6\xab\x81\x84B\ +o5\xefYw.\x05\xd5\xf7\xfcR;\xed~\xe3\xf1\ +\xddf\xd5b\x8cT\x0e\xbe\xc23\x09\x7fg\xc6\x89_\ +z\xd3\xb5\xd1\xeb[\x91\xdfW2Vg\x0e\xa8y\xfb\ +\xac\xca\xde\x17\xdf\xb4\xfdwz~Q\x22|:\xde\x7f\ +lo\xa9\xc1x\xaa\x14\xfc\x82\xe7p\xce.o\xb3\xbd\ +\xb3\xcb\x93u3\xd9*6J-k|2\xd6]\xfa\ +/a\xecN.\x1f\x17\xf8wp\xc7\xfb\xff\xf9u\xab\ +\xd1!\xc0\x0b\xfd\xc2\x95\xec1k\xbe\xcb\xacU\x17\x06\ +4\xf0\x990ud\xfc\xd2\x85\x87\x16\xddn\xb2f\xc8\ +\x9e#\xab\x17\xed\xac\xdd\xa1`JO\xf4%\xdb\x8b\xb6\ +\xea\xc1\xef<\xc3\x13\x0f=\xb9\xb4\xc2*\x81u\x92S\ ++\xe8f\x8d\xcb\xe3\xc7|\xfd/\xd6z\x9b\xab\xf1\x1b\ +\xc4/B\xef.\x9a8\xf7\xc6\xf4\xae\xd3\xea\x13\xab-\ +\xdd\x16\xbf\xd5\xb1oq1g\x14a\xfe\xbc\xd1\x9c\xd0\ +\xae\x7f\xbf\x0e\xb28jm\x9c\x10\x10lK\xae\xecR\ +\xcf@\x97}{\xf0\xb2s\x93o<\xd8\xfa!mn\ +;O\x0e{\xdf\x12\xf8\xde\x95\x99]\xcf\x91\x1a\x8bf\ +\xec\xbdz%\xb5\xdd\xcdv\x8b\xae\x9d\xfa:\xfa\xc8?\ +\xf1\x81\x1f\x1c\xbe\x7fIdwj\x93\xb0&s\xc6j\ +\x8d\x9c[\xe6?\xe6Y\xbc\xecg\xb0\xf5^\xee\xe1M\ +\xc6\xeb{\xc7\xe7\xd5\x1d\xea\xb5\x98a|\x99\x5c\x8e\xb8\ +\xa1f-\xbf5\xdb\xf4]vG\x1e\xfb\xf7S\xe8\xb3\ +\xb8\xee\x9b&\xf6\xab\x93s+.\xe3\xa2\xe3\x08\xe7\x95\ +\x93\xdak\xa5\xc5\xbe\xf81\xe7DP\xc1\x10\xff\xb6u\ +\xaf]V7W\xbb\xc1&U\xdf\xf8\xd6\xf4L\xf0\xe7\ +\x9dq\xbd\x92ek?2,`r\xaf\x03!\xdf8\ +m\xda$\xf4\xe8\x12\x9e\xfc(~\x22\xc3\xdd\xc4q\x80\ +\xf2g\xfbG{\xd4\x8e|\xf9rs\xe5?\xef\x92z\ +\xbfWWIq.\xb8\x98\xcd\x1e\xf3b\xf9\x5c\x8e\xc1\ +\xc2\xa4]&\x88\xb1\xbal\xff\xa7_A\xce\xd8\xd6\xd3\ +\xdb\xbdq\xaa{\xb3\xe7\xa5\xf8\x09\xcf\xb2\x08\xef\x1b\xa4\ +\x09\xf7\xb8\xdf\xc2\x84\x8bw\x1b\x11\xe3\xe6\xf5\x0a_\x82\ +\xb8\xbd\xb1Cn\xdd\x17\xd1v_\x9d^~C3\xfa\ +\xd9\x22\xf29\xa7\x11s`\x01\xc9\xcc7\xab\xdd\xdev\ +\xf1No\xc4k_|\x19\x13\xfb62z\xc4\xd5H\ +\xe7\xad\xc7\xbb\xe4\x0c>n\xd3%q\xee\x12\x02\x11\xff\ +G\x7f\xc2\x93\xb5\xfe\xd0?K'\xbb\xd6\xcb\x8a\xeb\xca\ +hp\xa3\xc9\x89\xc0\x93\x13\xfcgX\xfd\x9c\x14\xbcO\ +c\xd9\xd1/J\xb7s\xd2:\xb6I\xf0\xed`\xb2\xea\ +\xd1\xa5\xce\x8e\x8936\xfb-\x1e?\xba\xa3\xb3e\xff\ +\x96\x8f\x1e\xce\x083\xde\xf8x\xf1(\x8b\xb1\x8dv\xff\ +Pz\xdb\x89g\xb4\x94\x17t$\xd1\x8c0Ug\xb8\ +\xa4n\x9d\xa2M.V~\xbd\xf3\xe3\x88+O\xf5\x92\ +,V|\xeaY\xef\xd0\x95u\xaf\x1a9,\x8b{2\ +H;\x90\xe4\x05mp\xb0\x5c\xb0\x22 \xb6\xdf\xc9\xc9\ +\x8d\xdf\xd7\xd2;\x15\xe5[sd\xab5i\xef}Y\ +#\xb6f\x9f|\xd52b\xb0\xc7v\xaf\x96#\xb6\x7f\ +\xabW?\xec$g\xb8\xd7+\xef\xd5\xadr\xc3\x1a\xf0\ +\x8e}\xb7\xf7J$\x9b~?\x14io\xd4\xd6v\x9c\ +Wo\xd7\xcdHrd\xae\x89\x8ey\xf1\xe3/\xf7\xb7\ +u\x17\x05L\xd6{\xe6\xbbi\xb2A/\xb7\x99:5\ +\xd1~\x9fH\xca\x99\x17\xb39h\xae\x8a\x0f\xbb\xd3I\ +t\xa4\x1b\x10[4\x12\xee\x84\xbf\x1c7i\xed\xa0O\ +c~\x8e\xaa7\xb5M\x04\xbb\xd6\x04\xaf\x88\x87aM\ +\x9b.\x99GD\xce\xbb\xf2\x83\xb1\xd3z\xa3\xf9d2\ +Z\xff\xe6\xe0#]\xea\xf6\xcc5\xdcy8L\xb7\xd5\ +\xfe\x80\xdd\xd3\x82[&\x7f\x08\x09\x22L\x8fjZM\ +h\x8f\x94\xc6\xb6S\xb4j\x866\xfc\x1a\xd6\xe0\xad\xc6\ +\xf5wo|\xff\x193\xd8>\x7f]\x8fh\xed\xb3l\ +\x8fFJc\x16\xab\xb4\xd5%\xb6D\x1c\x9d\xc9c\xd4\ +\xf7l\xf2|Y\xd7\xa1G\x1b\xb0u\xb9\xf1K\xbd\xce\ +\xf6\x9e\xe3\xfdj\xf1\xa4\xda\x8c\x0b>J:\x0d\x88\xd5\ +K\xff\xd3arW\xf7\xf4=\xff\xa5\x85\xb6\xe5\x84\xb9\ +a>\x0d\xa632\xa6\x0e\x1f\xff\xc6\xf2\xafP\xfb\x80\ +\xe9\xce\xef7&\xf4\x18\x10\xc7\xaa\xd1\xe2\x8c\xf2\x93\xab\ +\xea\xe6\xc4\xc1\xf1\x96;\x8dr>\xbeY\xb89\xf8\x00\ ++9b\xf0=D`\xaa\xcc\x06\xad\xf7\x07$\xf9\xf6\ +\x9e\xd6\xc2\xcfq\xc6D\x87\x9d\x9d_\xea&Y\xf4o\ +\x15\xe9\xb6\xccs/c\x5c(\xa2\x7fD\x0c\xc3\x1b;\ +j\x1bu9\x1e\xd6y\xe0a\x9b+A\x93\xdf\x8f\x1e\ +\x18\xf9\x99\xd8\xf3\xb8FT\xb3\xbb\x7f\xeb1u\xf3\xb3\ +Ng\xcdo\xbb\x93az\xe5\x96\xff\xdd\x9d+b\x0d\ +j\xee\xbag\x8a\x04\xc4\xe3\xec6\x0b\xba\xc6}\xed\x91\ +\xd0\xd0B\xc5\x88x\xdc\xc0m\x06\xc3\xb0\xaf\xf7$'\ +\x86\xe9)\xa4\x02<\xfc\xc69\xf4\x8e\xd5\xd4\xa0\xcd\xc5\ +\xad\xe8\x17\xcd?\xd76\xce\xbd\xc8\xa9\x1f?\xb7\x0e\x91\ +Q\xc7\xc2Q\xdbo\x0as\x87\xf2F\xf4\xa1a\xd8\x14\ +\xe6\x8aE\x97Fh\x11\xdf\xda!\xfa=\xdbU\xe9\xd2\ +M\xa5\xc8\xa6.\x9ai?\x12\xc7\xef\x8b\xea\xb6\xda\xa7\ +\xf9\xfa\xcf\xeb\x0f\xfd\xe5\xe9d06\xcfe\xdd\x80\xf0\ +L\x86y\xd2\xc8\xb6\xfd\xaf\x9b$\xce\x0f=\xefS\x7f\ +\xac\xfa\xa5\xd5W\x1c\x13\x02\x88\xfd\x13\xbb\xe6\x9e\x9a\xef\ +\x16}w\xe1\xf0\xcf[&\xf7\x8e\xba\x97\xc9\x08_9\ +\xb3\xcd\xbe]\xa3\x07\x0e\x0b\xfd:\xfb\xdb\xf4\xd9\x86^\ +ji\x1b\x88avZ]w.\xe3\x8d\x1c\xd1jM\ +\x07\x93\xc0K:./V\xc1o\xb3I\xaf/\xef\x8f\ +\xe4\x18tk\xaa\xd9\xf3\xfc\x0bc\xe6\x05eS\xeb1\ +ow?\x1f}\xf1\xfa\xcf\xe8\xff\xa6\xcf\xd9\xb7\xb7\xd7\ +\x9b1'\xf7\xd7\xdc\xcb\xd6ws\x1d\xd5rWd\xc2\ +\xe9\x88\xe9\xc4X5\xe6$\xd2a\xf7s\x87\xd6n]\ +{^[AL^\xa0\xd4G\x97\x18\xba\xa5\xdf\xe6\xc3\ +:\xdc\xa9['\xb57u9\x8a\xfe\xc84\xeb\xf6\xb3\ +m{\x87]\xf2\xeb\xef\xd6\xd8\x8b\xf73\xf9\xe5\xfd\xd7\ +\x0c\xfd7u&\xae\xda6\xad\xf3\xba\xe6\x91J\xe3\xe6\ +\x1b\xeee\x98w\xadG\x5c\x1a\xbc.d\xdc\xe2S\xf5\ +\x88\xc9\xec9\xad\x1e\xb1<\xbb\xf4\xd5%\xea\x1b+\x9b\ +\x12FV\x9b\xcc\x88\x16\xadm\xfdf\x84\x12\xfa\x19F\ +\xaa\xcc\xe7_l7\x84o\x8f\xbcOx\x1f\x8dR;\ +9\xacc\x1d\xa2\x85\xc6<\xe2\xdd(\x97n1\x83\x08\ +\xe5\xe0\xd5}g\xae7\xad=\x87\xd0\x5c\xab\xa5\xcc\xec\ +3\xf6fH\xaf\xa4\x07\xe8OG|\xec\xbfo\xc8\xdc\ +yZ\x17\xedj\xeeX\xdb\x8bh\xd5\xac\xc6\xf8\xc5\xbd\ +\xdb\xd6\xdf\xd0b\xd2\xbeG{\xfbr-\x0e\x1e9\x90\ +k\xbdr\xe2\xe0Y\x0e\xfa\xcf\xd0\x147v$n\x0e\ +S\xc9\xd0KRz|`\xba\xcb\x85\x88\xf3{g\xe5\ +\xee\x1b\xa7\xefy\xbd\x9d\xf3\x05e\xfd\xc0v7:E\ +\xb3\x9e\x8fq\x19\xd6\xf7\x90\xe7\x93!\xad\xd0\xb4/>\ +\xef\xb9~sN\x0b7\x8d\xe17C'\xadm\xf3\x00\ +=\xc3\xe5~\x92\x92G\xffK\xad\xcf?i\xa8\x1f\x93\ +Nh\xf6\xd66\xb4a\xde`\xd4\xde[{\xeed6\ +\xc9|\xa4L\xec\x1d\xf9\x15\xe9\x19?}S\xd6\x0e\xd4\ +{\xbaA\xd5\xd0B=!\x9f\xd8\x9b\xb8\xf3\xe4\xa4\xff\ +\xc6\x1a_\xad\xad\xbaanGb\xf2y\x82\xa1J\xd4\ +\xbf:_\xc9\xdc\xdbw\xcb\x1eUu\xed$\x8b\xbf\xd7\ +[LVE\xbff\xbe\xbb\xa7\xc9L:\x1c\xceza\ +g\xb82\xf9\xf5Q\x1de\xd3\xd6\xfb\xf5B\xe3'\xaa\ +\xb9G\xdf5@\x8a\xe1)W^W\xdb~D\xab\x06\ +=\xb5-\xbf\x9f\xd5g\xec\xbf\xe7\x19A\xe8\x07\x13\x84\ +~@g\x0e:&?}S\xdb!-\xb0%\xd7\x9a\ +\xa1\xff>\xbe\xc3\x16\x06\x11\xb3\xc5\xdcpO\x96\xaf\xf5\ +h\xe6.\xd5\xf53\x1e\xaa\xce~}\xf4\x84\xf5\xb6\xbd\ +\xc8\xea\x7f\xd6\xc1r\xe7]\xde\xbbq\xc7\xb3Z\xa7\xd5\ +\x09[\xea5=^M\x8bX\xbb\xbfy\xf0\x14f_\ +\xa4M\xec\xe8\xb7\xbb/\xf7x\xd2\xae\xf3\x0dU\x99c\ +\xd8!s\xda\x07O\xbf\xc7\x1c\xcb\xd1~\xd9\xc1r\xf8\ +\xec\xad\x1aF\x84M\x84\xde\x8ba\x0e\xed\x17\xd6\xe8`\ +\x93oc\x9a\x95br\xe3\xb6\xd7\xb3\x96\xc1[\xb4\x08\ +\x7f\x9b6\x06\xfd\x1a!]jo\xd6|+\xf7a\x1e\ +\xb5\xba\xc4\x06\x04\xd9\xa8\xdf\xd0Q5e\xfc\xd4X\x8c\ +\x14\xef\x91\x17zv\x5ct\xab\xf7\xb9m\xee;\xf5\xbf\ +\xdc\xef\xb0\x8d1\xcet\x8b\xc6\xe2e\x1e\xbb\x947\xb5\ +\xf1\xb7\xe9\xa5\x7f\x97\xdct\xe9\xb9\x03\x93\x91v\x0a1\ +\xc0\xb0\xb5\xef5k\xaan\x18\xf1\xe9\xda'\xfd\xfaK\ +\xea\xeb\xe5)3\x1f\x05-\x1b\xd1\xf8L\x07U\xd3\xbf\ +\xfe\xeewy\xa3\xa5I\xe8\xdd\xbdd\x5c\xaf\xcf\xb9\x87\ +w;\x99\xac\xf0\xf3\xbfk\xd0\xef\xd6\xa4Z\xca\xa7\x1f\ +\x7f\x9a0e\xbbZ\xf7\xb9\x03-\xe2FO5\x08\xe8\ +\xban\xd0\xf6\x7f]\x86\xabX\xb6u1\x22F\xdc\xce\ +\x1d\xb5K#\xb9`d\xff\xd6w\x1f\x8c\xe9\x1a\xe1\xa0\ +\xd9\x92\xbb\xa4\xcf\x12\xbb\xe5HC\xdc\xbcC\x8bh=\ +\xea\xc5r\xc3.\x8b\xe69\xab\x0d\xeb1\xef\xe4\x7f\xde\ +\xbe\x83\x8fv9\x18\x96\xdf\xb1\xf5\xdd\xa1\xe8\xdbO\x8e\ +\xd8\x9e\x1fb=4\xe4\xb9\xadMv\xdb\x81\xa7k#\ +\xbd;\xc5\xb9\xd9\xbeNC\xbe\xe4em\xb5\xf9+\xe7\ +!\xd1\xf6\xeb\x97eC\x8ef-\xa8\x994\xf6\xe6\xd2\ +\x7fz\x06\xb9G\xa6\x04\xc5\xa3/\x0e[h\xfd\xc4G\ +\x89\xc8\xbe\x1bc8>\xfd\x83ql\x0a\xdaJ\xc3\x09\ +\x17\xff&<\xf2\x07\x1f>\x1f\xd7m\xc5\x93\xcfz\xe6\ +\xc4\xa4\x83/\xbe\x1d\x1ci\xfdU\xfd\xe5{\x86\x85\x0f\ +\x19\x96\xbd\xda\xdd\xd0$\xe6D\x80I0\xf1.\xea\xc1\ +\xb2!\x17\xcf\x9d`\xaei\x1e\x13\xbfJi\xdel\x9f\ +v]?\xccn\xdb/0\xf6\x08\xfc\xb3\xc7\x13\xaf\x8b\ +\xbe\x11\x83\xf3L\x8dbB\xcey\x0e\xed\xeb;7\xdc\ +6:bl\xae\xcb~\xf4D\xd7\xdc\xce\xa1\x84\x07R\ +\xecn\xed\xff\xd8\x93\xf1a\xc7\xbd\xa1S\xf7\xac\x8bc\ +\x9cE[x*\xbaf\xbb\x8f\x19~\xdd\xb2}'\xcc\ +\x1b\xf2\x06\xcd\xe0\xe7\x87\x10\xdf'\xf6\xb7\x91\x98\xe9\xe3\ +\xf7%\xe5\xc3\xd0\xed\x8e\x0c=dCL\xb0\xf4\xbe\x1a\ +\xfeiB\xa3\x03\x99K.\xeb{\xa9(\x9f\x1e\x81\x98\ +\xdd\x88\xd1\xea\x8d\xda_ne\xb9\xa4\xaes\x96\xde\x83\ +\xcc\xa6\xcd\xe3C\x92?\x0c\xcc\xf6\xdf\x8e\x1e\x14i\xce\ +\xb9P\xb7u\xb3\x86\x97\x06-m\xa3\x17rr|\xbe\ +A\xac\xb6\x9d\xde\x9e+\xcdV=\x98\xb0\xe8B]\xce\ +\xdfs\x89\xc8\xc7\xed\x86\x9b %\x1d\xc9\x01\xad\x82\xb3\ +\xa3\xf3kOz\xec\x917\xe6h<\xd2W\x8cx\x07\ +V\x9e\xe7\xee\xe8B,98,%\x06\x09\xfb\x88\x87\ +\x1e#\x8cb\x06.\xf3\xa8\xbb\x93\xccWC\x9b>\xde\ +\x7f)\xd2\x9f\xe3\xaa*\xf7\xcb\xfa\xe1\xd0\xc3\xfar-\xa4T\x0f\ +\x1a0z\xf7\xb2\xb7\xa9\x8f~\xe4\x8e\x5c\xe3\xfa\xec>\ +\xb1(\x1c)acN\xa5\xb5\xbf\xa1\xe2r\xd4\xd9\xb4\ +\xad\x0e\xcb\xa9\xee\xf0\xc3#\xde\xbal\xf7\xf9Z\xc0\xdd\ +\xf2\xa9\xf1+\xa5+}9#\xdf\xbb\xdf\xff\xef\xd4R\ +\x8dh\xff\x94\x95\x0b\x88#\xdf\x9e\x0c\x9a\x9e?x\xc0\ +\xa4 D\xa8\xedUagG\xcd\xadS\xfb\x7f5>\ +-\xb4\xb6\x7f\xfaj\xa7\x9d\xe1\x1c\xe2\xc8c\x0b\xe5A\ +n\x93yK5N\x06\xbe\xbbP_\x95\x196%j\ +\xcd\x0a\xa4\xf7oe\xaa\xdf\x0e\xccP\xaeC\x8cDS\ +\xae\xc3\xd8\x969 ^\x0d\xd91#\xfc\xf5-\x0f \ +\xec$%7|TC\xe7qK\x17\x13\x95;\xeaL\ +r\xc4\xe1\xd0]\xce)\xc4\xc0\xe0\x9e}&\xe43\x02\ +_\xdcP7\xef2ou\xb0E\xe6#K\x9b\xe4\xd8\ +\x19W'\xf1\xfa\xb4$\x1a\xb9\xa9\xc7-\x18R\x13\x1d\ +\xb6\xe1\x8d\xb7\x8c\x08_\xb0<\xe2\xca\x89\x84\xab\xe6\x8c\ +\x18-\xa6\x17\x9a\xfc\xd3.Mw\xd8>D\xa6'R\ +\x05\x1d\x8f>\xb4\xf8y\xf6]G\x15o\x15\xf3\x80\xb0\ +\xfc\xd1H\xa1\x8b\xab\xb3Q\x09\x99M+rr\x5cg\ +\xe9\x9e\xfb\x97 fw:\xec\xf82a\xe0\xc2e\xc9\ +c\x89\xe4\x08\xf7\x8c\x1d\xe6\xc1\xdbR;\xab\xe8\xde\xbc\ +\xe8t\xfc\xc1\x85\x1e3\x03\xfc\xaf\xd6\xbe\xe8b\xfb\xe8\ +\xda\xccN\xb9_\xf4c6\xd9\x5c\xbc\xf3@\xab\xb1\xd5\ +\x93\x9c\xb9\x96\xd7\xfc\xefn\xbb\xe1;q\xd6\x15\x8ei\ +\x7f\xb3\x85D\xcd\xe3G\x9e[\x052G\xfb,M~\ +\xdf\xc6\xe1\x8c\xca\xd7\x1e[\x18\xc17\x89\x01\xce\x83\x07\ +\xaeP\xd35\xfc\xd9*\xd4\xd4\xb5\xc1\xd8\x94k\xc3\xee\ +^\xb9\xa1rzo\xbakw\xa4\xe09X?gn\ +GV\xb2\xf1\xfa\xe3Q>\x8f7\xa5\x1f\xe7\xe8\xeb\x13\ +\xf5j\x18\x22\xf6\xa1\xd2c\x9bF\x80\xf5\x8c\x8e\xbd\x9f\ +u\x9c\xbf\x02-\x7fj\xf2\x97y\xfb#G\xdc\xf9\xaa\ +E4\xd4PR\x0a\x9e\xf83b\xdf\x82\x05+\x9a\xba\ +\xda\x05\xecF6\xf4q\xafnGf<\x89\xe3|\xee\ +\x01\x8ap{\x87\xc5c\xd5\xc9q:\xc4\x8d\x08\xf7s\ +\xb9\x8b?+\xa9\xde\xb3\x9f\x12\x95k\x85\x9e\xd3)\xe0\ +K\xf4\xfaUwn\xab\x87\xab\xc4\xac\xf9Y\x7f\xc2b\ +\xc4\xff\x0f\x8fU\x03=\xf7\xef\x8fK\x8f7\xdf\xf7\xe9\ +^\xe0\xc2\xe3\xb3f\x84~tr\xb8\xf2\xa0\xf7!\x86\ +\x97z\xda,\x820E[\xb4\x860\x8bpw\xcb\xd8\ +\xc4\xd0C\xa2\xa1K\xf7\xc8\xef\xef\xbblB{\xfci\ +\xfd\xa1\xd8\xcfw\xbb?m\x9f\xbe\xdbA\xdb\xe1q\xbc\ +uk_\x15W%\xcd\x03\x9d\xda\xb9\x1c~\xf1\xcd\xa8\ +\xe7\xd5\xcf\xd9>\x13W\xd7\xf3\xb7\x9e\x911\x17)\xd9\ +G\xfe\xfdt\x1f\xbd!):j\xe1\xa5<5\xf7\xe9\ +\x84\x1da\xef\xd2\xa9\xdd\x9b6Zis\xdc\xc8\xd3_\ +\xf7|2<\xf4\xe2[V\xcbg\xb7\xee\xe4\x05\xef~\ +\xcf\xbbY?u\x9a\x11o\xdcuu\xc2\xbbi\x8c\xcd\ +\xbeq\x0d\xd0\xcbu\xd60/\x9e\xf1\x8ex\xd9q~\ +\xcf\xbc\xc5\xbbs\x8f\x91\xa6\xf9\x9d\x08\x82C\xc4\x9c\xb7\ +\xd9~\xb1\x1fb0G\x8e4\xf5\x9d\xfd\xbe\x8b#\xb2\x01\xbe\xcf\ +\x9a\x9f>\xb7\xddS\xfb\xc0n\xf6m\xb3C\xac;2\ +;Yu\x0fvq6\xfdQ\xab\x07\xd2\x8dW[]\ +\xf8\xdc\xb56\x9a\xe5\x07\x86\xdb\xd55\xd3b\x93\x0f\xe8\ +q{\x1cLV\xc2\xeb_H,t\x1b9\xfa\xad\xba\ +\xea\x86\xfc\x90\xfe{T785\x8b\x1ap/om\ +_\xe7\x11\x81\x88\x16\xde\x98\xacI\x8f0^t\xd0\xc5\ +\xec\xfekD1\x09\x0fM.G\xaa\x10>mB\x9a\ +\xfc\xdc\x7f \xdby\x87\xdf\xec\xf8\xcb\x0dk^~7\ +\xa2\xe0\xca'\x87\xb6\x1f\x95\x08c\xada\xdf\x94\xf4\xea\ +\xf0\x9a\x8c\xe8\xab>.\xa9\xb7\xe6\xbe\x03\x93/\x87\x14\ +\xa8\x04+[\x85\x8ckqaD\x7f\xcf\x90\xf9\x93\xeb\ +0]l\x87\xd6^\xa6\xa2\xd9\xf3\xcd\x9au\xba\x9d<\ +\x8f\x0d\x8f5~W[\xdf\xfaXC\x1f\xff\x19\xaf\xee\ +2\x82\xa7\x10\xfbZ&\xaf\xcfU\xcb9\xaa\xd2\xf6A\ +\x13F\x8bGm{g\xcc\xf68\xf6/s\xc0<\xec\ +\x0c\x9c\xb0\xca\xcc\xcb_\x85\xb0Z\xa5\xbfO\xf9\xe0\xcc\ +\xec\xa9#\xbc:\x12\xc4\xed\xb6\xdc\x14'\x8f\xb3\xc7\x12\ +\x17\x8df\x9c6\x19e5\x92\xad[\x7f\xfcp\xdf\x1d\ +zy\xef\xc7\x8e6#\xe08L%\xec\x22R\x0f9\ +e4\x9a\x12\xa7K^\x8a\xef\x1c\xf9Z\xc5hf\x8d\ +(U\xcd\x8b-\xb6\xf4\x0aHX\xa5\xc2\xbc\xeb\xa5\x19\ +\xa04h\xc9\xed\xc9\xb7\xdfL\xed\x98\x98\xa8\xa4\xd5k\ +\xdeR\x13%\xadC\xf6\xb9\x83\x9auGH\xcb\xbb~\ +*\xe8\xdd\xb0\xc6\xc1V\x7f\xf5\x99\xb8w\xd8\x13%\xed\ +\x13G\x97\xb6%\xb2\xdc\xb7\xeah\xe8_\x9f];\xf8\ +\xe1\x92C\x05S\x22\xd2\xea\xed[\x17\xed\xc8RvJ\ +Zu\xed\x8b\xbdC\xf3\x89\xb7\x9c\xcc\xb6\xaf\x19\xb5\xb1\ +\xb9\xe9\x7f\x87w\xae;\xb9\xf4\xc8\xe2\xf5\x83\xae>\xe8\ +\xdd\xcc\xdc\xf5\xb9\x9a\x93\xc7\x1c\x8d,\xff\x05\xb5'\xf6\ +\xd8>{\xfb\x9a\x995\x062\x1f\x1bjd\xf5Z\xa0\ +\xfdz\xecv\xf3\x9a\x9a\xff\xde\xcfz\xa21M\x93 \ +\xd0\xef\xff;4\xc9>\xf8,Ah)\x0djs\xed\ +r\x86r#U\x22XS\x7f\xc9^w\x17=oc\ +\x82\xb9\xa1\xa6\xd5\x8e\xbd\x1e\xdd\x1b{]\xe10\xeb2\ +\x88o\x17j\x06\xd5\x98Z\xa7~\xb2\x81J\xcc\xc8\xae\ +\x17\xd8\x86\xd7\x92//\xb2\x8b\xbd\x9f\x10sCyP\ +|\x07\x22\xef\xd3\xe5\xc1\xfd\xdexg{\xdb\xda\xfd\x8c\ +K \x96\xadw\x1cT\xaf\x8b\x8aWF\xe7w\xf9g\ +\xeb\xf6\xad\xf7\xc9\x09{\xbcG\x13\xc9\xb7\x82\x8c\xf7\xf5\ +\x9a\x10~*a\xcfG\xee}\xbf\x99c\x10Q\x9e\xee\ +z\xeb\xadZL\xbf\xdb\x81Zk_+\x8dZ\xe7q\ +\xa1Y\x1c\xc3\xfc\x87\xb3\x97\x9d\xb2W7\xd3o\x7f\xfb\ +\xa2\xfd\x8d\x1e\xd6\xc8\xf4(A\x80\xdf\xbc\xb1\xcf\xdb\xe0\ +&?\xafk\xfe\xfb\xa3\x9dO\x00\xef\xbaM\xff\x83\xb5\ +\x01\x1d\x16Z\xc1\xc6\xb6u\x9a\xf8=\xfd\x1f\xb3K\xef\ +\xa1y\xb9\xe7\xfe#\xb4\xb2,\xefE\xc5\xe87\xef9\ +\xa3\xf6\x87\xfe'\xa3\x875v;\x12\xc1 \x08\x1c\xc3\ +\xe8bT\xf3\xf1\xda\x09\xe1c\xde\xec\xee\xe1oqx\ +\xf2A\x0d\xc2\xb1Y\x8d\xc6\xa7U\xfa\x1f\xb6Y\xebd\ +8m\xeb\x94t=\x8f\xe9\xe9uw\xd7b\x0e`k\ +\xa1\xa7\x987\xbf\x18\xdf\xce\xe7<\xef\xa0M\xffK\xf1\ +\x8f\x09\xa3\x1f7T\x1b\x13\x1bTn\xd5\x1e\x16\xfa?\ +\xa6\xde\xe9\xcf\xc9\x87\xdd\xd5'\xb6\x1f\xaaf\xda\xdc\xae\ +\xff\xab\xa9\xe1\xf5\xda\xfd\xa4\xc2\x16>\xf3\x03L\x86u\ +\x8c\xe9\xb2s\xa9\xd2\xe9\xbd_\xfe\xa7\xa5j\xa5=\xbd\ +\xc7\x193\xffQ\xdf\x16\xb5[\xf4\xbc\xe0\xdfE\x17\xd2\ +:\x8cl\xfc\xb8\xc3\x95:\xcc\xb9\xebX\xa75\x82\x0d\ +\xd8W\xed\xcc\xdb\x8e[\xdcn\xd1\xd3\x95\x8d\x09N\xe3\ +\x0f\xdb\x03\xd4#\xb6\x5c\xdfa\xa0t\xba\xa1\xdd\x943\ +\x1a\xd35\xb3~\x9a\xf0j\xd4Q\xbd:\xac\xbfg\x0c\ +s\xca\xfb\x89\xe1\x86\xebG\xf8\x9b\xaf~\xa2F\xfc\xb5\ +\xf65\xa9\xdc\xc0\xa2\x87\x91\x96\xb6\xdfr\x08[\x0d\x1f\ +\x08\x1c\x11\ +\xe8\x15\xd5\xf2\xbe\ +\xeaA:\x8d\xbbr\xdb\x05\x02\xf8\x07\xbb\xa2Z\xcf\xaf\ +\xba\x10K\xe3Pb\xfc\x0b\xe0^\x8fUm\xdf\xff\x0e\ +\x10\xc2\x12\xf0\x11I\x88{\xf0+\xeeV\x80\xb9W\x83\ +|`7K\xc0W,\x01\xfe\xc1\xb7\x5c\xed\xd3\xfd}\ + \x85\xc6\xa9X\xfc\x0b\xe0\x1ebK~\x0a0\xe7j\ +\x90/\xf8\xb1\x04\xe2\x86\xa5\xe0\x1f\xe2\x8b\xd5\xb6\xde\xef\ +\x07\xf94nK\xe0_\x00\xf7\x90_\x10\xaa\x00s\xad\ +\x86\x8a\x81P\x96@\x0e\x89\x08\xfc\xcfb\xfdI\xb9\x1b\ +\xcbu\x11\xe8\x90,\xcb\xa64h\x93,\x0bm\xea\xff\ +\xad\xf5\x114'Y+\xf4\x05~O\xff\x9b\xa5\x0e\xf5\ +=\xf8~e\xaf\xa1|\x00\xb85\x13\x83\x7f\xc81\xbb\ +\xa5\x00s\xfc\x05\xf8Fx\x5c\xa1G&\xad\xed@&\ +o\xecI\xa6\xed\x9fHf\x9cYJf^\xb6#\xb3\ +o\xed\x22\xb3\xfd\x0f\x90\xb9\x0f\xce\x91\xb9\xa1\xee\xe8\xe7\ +Y2\xdbo\x1f\xfa\xbd3\x99yi\x1d\x99\xe1\xba\x88\ +L\xdd3\x86Lfv'\x93l\xdbS\xcf\x85\xe7\xc1\ +s\xad\xaa\x04=\xf8\xd0\xb8\x16>\xfb\x90g\xf8\x1b\xe6\ +\xeb\xe9\xd2\xe7U\x17\xe3+u\xe702\xf3\xe2\x1a2\ +\xe7\xbe+\xc9\xfe\x18JrS\xbe\x91\xbc\x9c4\x92\xc7\ +\xce#I\x1e\x8f,up\xb9\xe8\xefrI^v*\ +\xc9I\x8a!\xd9\xefC\xc8\x9c\xa0cd\xc69K2\ +e\xdb\x002i\xb5\x01\xcd\x17\x14\x9a\x16\x92i\x5c\x0b\ +\xe7\xf28*\xc0\xdc\xe4\x07p\xd6\x11\xafNZ\xd5\x86\ +L\xdd=\x86\xcc\xbe\xb9\x13\xe3\x8b\x9b\xc1Bx\xe4\x94\ +\x8e\xe7r\x0e^A>\xc9M\xfdN\xe6G\xdc&\xb3\ +\xbc\xec\xc9\x14\xa7Ad\xd2\xca\x96\x94\xacPL\x19\xe1\ +(\x84{\xb0\x0b\x1e*\xc0\xbc\xe4\x83wt\xfe\x92\xed\ +\xfe\x87\xce\xa5\x05\x99\xff\xea\x16\xc9\xcdL\x92+\xbeK\ +\x1d\x88G\x00O\xc9{r\x99L?f\x8ee\x0c\x9f\ +\xffT\xfa\xde\x14\xc1CV\xf1\x1cR\xb8o\x90\xa4\x00\ +\xf3\x92\x03\xde\xbb\x229\xbd\x96,\x88~\x86\xcee\xde\ +\xaf\xc3\xbb\x88\xc1\xcb\xcb$\xd9\xef\xee\x91\x19g-(\ +]\x01\xf8\x81b\xc8\x85$\x1a\xe7|\xfc\xc3\x9d\x93\xaa\ +{7\x03\x9d\xaf\xa45m\xd1>/#\xd9_\x9e\x91\ +$\x87]\xa9x\x17\x1e\xc3m9\xf6\xb3\xfc\x8e\x83\xf3\xfd\x1d\xf6C\ +\xffB\x1a\xc8c\x15\xd5\xdd`W>\x8eK\x07\xc0=\ +/+\xb9\xb2\xd1T\xa1\xe3\x17\xd3\x00\x9bUT\x8bD\ +q\xf1\x8f\xe4=\xf0\xfc\xdf\xf5\xdc\x0b\x8f\x82\xf8(2\ +u\xd7\xa8_A\x03\x8a\x8f\x7f\xb4\x07\xa0\xeb\xfdJy\ +\x0f\xf6\x04//\x8b\xe4e\xa7\x90\xdc\xac\x14\x1c\xeb\xe1\ +\xe5e\xffR\x9f\x12\xfbs\x18\x99\xb2\xb9_E\xd3\x80\ +b\xe3\x9f\xb6\xf1*T\xcf\xe7\xf1Hnf2\xf6\x19\ +\xe6>\xba@f\xdd\xd8\x86cy\xe0\xb7O\xdd3\x16\ +\x9f\xc3\xd4}\xe31\xff\xc9<\xbf\x92\xcc\xbe\xb9\x83\xcc\ +{z\x19\xd9\xefo\x10]\xa4U\xdc\xbc\xd0\xc8{q\ +\x9dLZ\xd7\xa9\x22\xe3\x06\x8a\x8b\x7f\x88\xd5\xaei\x87\ +\xed\xfb\x8a\x18\xbc\x9ct2?*\x98\xcc\xf2v\xc4\xbe\ +C\xbc\xcf\xd6-\x04\xf2;\x04r<,u\x8arC\ +\xe0\xe7\xca\x968\xb6\x04r\x1ar\x02\x80>y\xf9\xd9\ +\xf2\x9f$\x97Cf\xfb\xee\xa6rP*\xc6O\xa8\xb8\ +\xf8G\x00~=y\xfbv \x0e\x98\xfb\xd8\x83Ls\ +\xf9\x97L\xb25,\xc2o\xb9\xce\x98nal\x19~\ +&\xaf\xefL\xa6\x9fZ\x80\xfd\xfb 7\xe49xH\ +\xfe\x00\xef\xa9 9\xa0\x98\xf8G\xf8\x00\xbe\xcbI\x8e\ +\x93\xdf>\xb2\xf3\xc8\xfc\xf0\x9bd\xda\x81)\xe8\xfc\xb6\ +\x90o\x5c\x9e\x9fg\x80\xf8U\xfa\xc9\xffpN\x89<\ +\xf3\x0b\x0ab_\x92\xc9L\xe3\x8a\xa0\x01\xc5\xc3?\x9f\ +\xef?\xbf&\xb7\xfd\x03\xdd\x11\xf2\xb6\xe0\xb9\x15\x1a\x7f\ +\xa5\xe9 y\xc3\xff\x90\x1e\xe1D\xe5\x99\xc8e\xf0\xc8\ +\x9c\x80\x83\xb4\x1c\xf8\xcd\xf1\x8f\xce~\xc6\x99er\x8a\ +\xe3\xf1H\xf6\xbb\xfbX\xbeS\xb9\x01\xbf(\xd6\x06\xe7\ +t\x85\x1e\x99~\xc4\x8c,\xf8\x1a!\x87u v\x92\ +\xfe\x13\xd9A\xe3\xe5\xed#V,\xfc\x83,Ez\x15\ +\xd8>2\x0f\x1e\x97\xccE\xbac2\xb3\x07}\xe6+\ +\x87\x96S\xb7\x0f\x22\xf3\xdf\x06\xc9\xbe\x1e4\xf2\x9e]\ +!\x93V\xb5&\xe5\xc8\xbf\x14\x0c\xff:8o\x87\xe4\ +\x14\xc8\x8e\xfb\xb0KdR\xe5\xc5\xd5\x04h\xa0)\x99\ +\xb2\xb1'\xd6\x0de\x1d`o\xa6\x1d\xfaW\x9e\xf4\xac\ +8\xf8\xc7z\xb4\x11\x95\xbb#\xdb.\xe1s\xaf\x10\xb8\ +\x17\xa0k\xec\xc7x\x1f\x223\x0d\xe4=\xbbJ&\xd9\ +\xc8\x8d\x07(\x0e\xfe\x11MC\xfe=\xe4V\xcb2@\ +\xdec\x9e\xaf(\xb8\x17\xa0\x81\xd4\x1dCIN|\x94\ +L\xeb\xe3f%\x93\xa9{\xc7\xc9\x8b\x07(\x08\xfe\x91\ +\xce\xbf\xca\x00\xdbg\xb2\x0c\xd0\xf3\xb1\xaeWY\xf2^\ +\x02\x1aH?1\x0f\xdb\xf4\xb2\x8c\x9c\xc0\xc3X\xbf\xfc\ +m\xf0\x0fg\xc3y\x84L\xf6\x12\xd8\xf7`\xe3)X\ +\x8eu\x09:\x07\x1f#\xe4\xfc\x80\x9c\x92v@\x8c0\ +\xd9\xa1\xbb\xfeA\xef?\xbfR\xea\xd8:\xe4\ +\xd0\xa6\x1f\x9eYu\xce\xbe\x00\xdd\x83\xbe\x22m\x9c\x00\ +\xe2\x97i\x07\xa7\xca\xba\xee\xca\xc7\xbf\x95\x1e\x99\x13|\ +B\xaa=\x80\x0165\xbeW\xa5\xe8r_\x04\xfe\xc1\ +'\xc0\xf9\xf1I\xca\x95\xf3\xc8\xac\xab\x1b\xab6\xfe\xe9\ +\xfb\xd8`\xb3K\xb7\x05h\x0f\xaemV<[_R\ +\xb0\xd6\xc7\xb5\x05\xa4\x1d\xb9\x8f\xce\xcb\xaa\x03T2\xfe\ +up\x0d\x05\xb8G/\x15\xfa\x91\x1d\x9d\xb6gl\xd5\ +\xe3\xfd|(\xf4yIwG\x15\xe2\xcc\xf8n\xb1\xf4\ +\xbc\xafr\xf1\x0f\xf1\x91=cp~\x9d4\xa3 \xf6\ +\x15}w\xa6\x8a\xf1~>\x80\x0c\xd8jJr\xd3~\ +H\xb5~NR\xac\xac~\x80J\xc6\x7fSd\xc7.\ +\x90:\xd6\x0b\xb9a\xf8\xfe\x5cU\xd1\xfbK\xe0_\x17\ +\x9f_\xf6\xc7GR\xad\x1f\xf2\x16Sw\x0e\xaf\xc2\xf8\ +\xd7&3/\xae\x95Z\x07\x86\x5c\xcc*\xcb\xfb\xf9\xb0\ +\xb2\x05\x99\xfb\xf8\xa2T\xeb\xe7\xe5f\xcaj\xfbT.\ +\xfe-\xb41\x0e\xa5\x1a\xc8^\x84|\x5c\x9c\x93Y\xd9\ +8\x94\x05\x10\xee\xb2\xfd\xf7K\x87\x7fv.u\x87\xb8\ +*\xe3\xff\xf6\x1e\xe9\xd6\x9e\x9f\x8ds\xed\xaa\xfc\xf9G\ +\xf4\x0by\xaeR\xc5\x03\x10\xdf\xcc\xbch+\xcb\x19\xa8\ +\xba\xf8\xcf\xcd\x90w.D\xa5\xe1\x1fp(\x95\x0c\xc4\ +\xf8_\xfbg\xe2\x1f\xd9~`;T\xc2\x9d\xe9\x0a\xc0\ +\xbf\x94:\xd0\x9f\x8c\xff\xbcL\xaa\x96\xce\x9f~\xfe/\ +\xfd\xa1\xf8G6\xa3\x9cb\xa0\x95\x0bh\x0fp\xec[\ +\x9a\xc1- 3=VWi\xfcg]\xdf*\xe5\xda\ +e\xd6}\x14\x03\x90\xed\x0e\xf9<\xd2\x0c\xea\x0c,\xa8\ +\xba\xfa?\xf0\xbe\x0b\xab\xa4\xce\xf7\x85\x1a\xbdU\xd6\xf7\ +\x8fA\x17\xe7r\xe6=\xf7\x96\x0e\xff\x10\x03t\x99V\ +\x85\xf1\xdf\x14\xdf\xb3\x95\xf6\xce\x1c\xd4{\xabRq\x7f\ +a\xa0\xef\x0e\x16\xc4\xbd\x92j\xfd\x90/\x97\xe24\xb0\ +\xea\xfa\xff\xe8\x9cX\xf0cJ38?>\x90\xc9\xf6\ +\xdd\xaa\xb4\xff\x1f\xfc\xb7\xd2\xd6\xa6\xe5\xfc\xf8\x88k\x9d\ +V\xd9\xf8\x0f\xd0\xbf}W\x8cGi\x06\xf0\x8d\xb4#\ +U0\xf7\x83\x0fh\xdeR\xeb\xfeh\xc0\xbd\x22|\xa7\ +\xb1\xaa\xe2\x1f\xe4\xdfj\x032?\xc2O\xaa\xf5\xc3\xc8\ +\x09p\xa9|\x8f+5\xfes\xee\x80\xde#\ +3\xed+ \xfe\xab\xe8\x99\x96\x14 \xe7\xcdy8\xc9\ +aI\x97\xf3\x08\x03\xe7}\x1c1\xfb=\xee\xff\x08A\ +\xd2\xea\xb6\x94M\x83\xf7J[\xa06\xd3o@\x13r\ +\xaam#'\xde\xafx\xf8\xb7nN\xd5S\x8b\xbaG\ +\xe6\xdc=\x8a\xefHA\x0d>\xf0q`?\x1f\xbfO\ +\xdf\xf2\xaaK\x13YW\x99\xb2\xd54\x83\x9c\xf7\xeb[\ +\xe5\xc5#+\x06\xff\xfc\x1e{\xe5\xd1M\xf9w\x01\x04\ +s!9l\x1c\xe7\x87\xfb\xae\xe0\xeb\x85Zx\x90\xef\ +\x04\xf7\xc5\x92\x90\xee\xcf\xe2\xf7\xd7*F\x13\x95\x8fc\ +\xd1\xeb\xd3\xa1j\xd8\xcaX\x13\x8a\x9b\x1c\x87\xfb\xcc\xc9\ +)\xee!\x1f\xfc\x0b\xf6TD\x9f!\xa7\x15d\x1c\xf4\ +\xd9\x93\xf8\x9e:\xd8\xc3[L\xca\xac\xf1\x0b\xb9\xf2\xdc\ +\x8cD\xb2 \xe6\x05\xce\xff\x85\xfb\x1f\x10C\x80\xef&\ +\xadmO\xf7\xea\xe4\xd3\x84\x82\xd0\x03\xd4\xb0\xdd?\x09\ +\xfbke\x1d\xd0kP\x8e\xf6\xaet\xf8\x17\xec\x99\x8a\ +e\x9a!\xa2\xc9\x81\xb8njN\xd0Q\xaa\xa7bV\ +2\x99\x1f~\x0b\xcbs\x89\xf0 C,\x08\xbe\x03t\ +\x03\xef\x85\xde:\x99\x977\x90i.S\xc9d\xfb\x7f\ +\xe4U'Av\xdc#\x1e&\xeb\x80\x9er\x10/\x91\ +c\xceS\xf9\xf0O\xf3Y\xd0a\xe0\xbcA\x1fT\xa8\ +K\x07\xfd\xcd\xb8\xe9?J\xc85\xcc\xab\x1c{K\xc6\ +\xab\xd0\xb3\xe1,\xcbe \xbb\x0ah\x22\xf7\x89'\xd5\ +\x8f\xb32\xf4\x04\x9a\xe6\xa1\xde\x07\xe7\xe7g\xb9,+\ +\xe7\xee\x11y\xfb\xba$\xc4?\xe5\xa7\x87\xf3\x09\xf9:\ +\xf9o\xee\xa2\xf3\x16_\xe6\xfdu\x9c\xa3\x0b\xb5K\xcb\ +\xb4St\xb1,\x97w\xad\xdf\x9c{\xa7*\xe7\xfcC\ +/:[C2\xcb{\x93\xdcj@r\x12>P=\ +b\xe4\x9b\xef \x19\xfe\xe98\x1d\xf8\xdb\xcb;p\xfd\ +\xe2\xb2\xe6\x0c2\x04\xe2\xe0H\xa6\xcbm\x94\xea\x1f\xaf\ +\xa8\xfa\x9f\xd4:\xa1\x96\x0d\xd8x\xf2\xaa]\x0c\xcf\xc9\ +\xf4\xdcP\x11\xfa\x8c\xe4\xe7_\xcaX\x15\xf0\x8a2c\ +\x94\xfc\x1a\x10H\xaf\x93\xd7\xc0\xb91H\xee\x96\xe0=\ +\xd0\xf3\x9b\x9f3\x22\x97\xfe{\xba\x85\xf2\x18\xees\x03\ +\xbd\xcb\xb3n1\x0c\xe8\x0f%\xe3=O\x19\xf1\xdfL\ +j\xf9\x0cr\xa2\xa8\xd7\xa1\xf8g\x83]'\xed=X\ +Q\x03\xe7F\x80\xfeWl\xcf(9\x96\xed\xbb\x0b\xdb\ +\xd0)\xdb\xfac\xba.\x9fO\x81_\xfb\x9b\xd2\x7f\xe1\ +y\xa9\xce#q\x7fxN\xc2{\x99j\x18\x89\x5c\x07\ +\xaeiVa\xbd@\xca\x85\x7f\xa87\x01\xe7\xaa<\x03\ +\xdfQBzb\xa9:\x00Z\x1b\x9c\x1by\x0e|f\ +\x84u?~\xad\xa17\x81\xf8o\xb8\xc9_1O\x83\ +\x1c\x0c\xb0U!\x06\x09\xb1H\xfc\x1d\x0bm\xda\xffH\ +\x83\x05m\xdb\xa2gB\xdd\x15\xe8'\x0e}\xbe\xe1=\ +\xb2\xd4\xae)m\x80\x0e\x9by\xdeZ\x0e\ +;\x90\xcc]\x87i#\xd3s=\xf6K\xe6\xdc;\x89\ +{\x89s\xbeGQ5\xfcd\x88\xdf\x949\xd0\x9c\xa0\ +N\x1c\x0b\xf8\x93\x22\xe0\x9f\xaf\xa3\x87]*\xf7R\xd8\ +Q\xc1\xe2u\x00\x9a\xae\xe4a\x1f\xf3\x07\xe8K\xd0\xf7\ +\xbd\x04\xcf\x11\x87\x7fq\x83\xcb\xa5r\xb3*\x12\xcfb\ +F\xde3o\xda\xc7\xaf@\xfd\x7f@\x07@<\xaf\xbc\ +2\xaeT\x1d\x00\xd7\x80\x18+sM\xccb\xefCg\ +\x19t\xf0\x12\xef+/\xfe+i@\xadh\xa8\x11\xa8\ +p\xfd\xbf@\x07\xd87\xa1\xdc}\x8f(\x1d`\xb1h\ +\x1d\x00\xc9V\x88\xf3\xc8\xb3\xb7\x16\xe4\x92%o\xe8\x22\ +9\xffW\xa0\x01\xb8\x87z\xe1\x0a\xd9\xff\x0fx5\xda\ +Wiz\x1a`\xdf\x95\x98gJ{\xffE\xdc\x00\x9d\ +.I\x94\xdcTp\xfc\xffb\xdc\x97\x1f\xff\x00\xd6\xcd\ +\xc9\xdcP\xb7\xb2\x17\x83\xe4&\xf4\xea\x84:\xa7\xb9\x0f\ +\xceQ\xf9\x0a\xd6B\xbeK:\x1e\xce\xd7\xc7\xe55\xb2\ +o\xee\x14\xcdk\x14\x15\xffh\xaf\xf2\x9ezUF\xdd\ +\xf2\xf2\xe3\x1f\xe7\xac\x8b\xb8\xaf\x8ct\x02\x90\xe1\x18\xdf\ +\x88>\xe0o ?\x11\xd7g\x02\xbc\x8b\x8aY@\x1e\ +\x9cC7\x92\x93\xf8En[\x09w\xe22N\x89\xb9\ +\x13\xa7\x80\xf8\x87\x5c\x9el\xbf\xfd\xb8\x1eh%\xdce\ +\xe3\xe3_\xf2\xfe\xcf\xa0\xaf!\xbc\x82_\x1b|\x01\x90\ +\xc3\x086\x01\xe8\x85i{\xc7\xd1\xf8n.YL^\ +J\x9fBi\x03lq\xb1\xf1q\x05\xc3?\xd0}\x86\ +\x9b\x15\x95\xc7P9\xb1j~\xff\xe7r\xf4\x7f\xa7x\ +v\xc6\xd9e\xb8\xff!\xaeA[\x98\x87Q\xce\x1c\x0c\ +\xa8}\xe2e'\xd7=e\x7fyJ\x9f%\xd1\xb6\xa6\ +\x22\xe0\x1f\xfc\x9cy\xe17i\x1b\xa5R\xf3\x98\xf8\xfd\ +\xdfM\x10\xb0$\xff\x9e\xaeP\x8e\x85\xf0\xfcK\xcb\xd5\ +\x16\xf4\xc7\xe9\xe08=\xc8>\x90\x1b\x98\xa7\xc8\xe8\x03\ +\x86\xfb \xb8\x8f\xa7\xa8y+\x00\xfe\xc1w\x04>\xa5\ +\xc2\xde\x93\x95\x83w>\xb0h\xdc\xb7D\x10-\x97g\ +\xae\xd0\xc7>R\xf0\xb3\xe2\x5cNA\x80\xdfa\xff\xaa\ +@Lv9\xe5W\x82\xbb\x1c\x10\x03\x82z\x98\xe0K\ +\x07?\x1c\xc4\xb8\xf7 \x0a\xd2\x0eL\xa2{6T\ +\xfa\x1e\xfc\xa9\x90G\xe3\xb8\xf0\xec\x0b\xe1\xbf1\x82P\ +\xe9\x9f\xaf+$C\x85Aa\xed\xa1?\x05Bi\x1c\ +\x17\xc3\xbf\x10\x0d,@\x90\xaf\x00s\xad\x06\xf9B>\ +\x8d\xdb\x12\xb8\x17\xc2?\xd8\x05~\x0a0\xdfj\x90/\ +\xf8\xb1\x04l>QC\x80\x06\x86#HQ\x809W\ +\x83| \x85\xc6\xa9X\xdc\x0b\xe1\x1f\xfc\xc2\xbb\x15`\ +\xde\xd5 \x1f\xd8\xcd*\xf2\xf5\x8b\xc5\xbf\x10\x0d\xe8!\ +\x08Q\x80\xb9W\x83l\x10B\xe3\xb2L\xdc\x8b\xa0\x81\ +\x81\x08\xbe)\xc0\x1a\xaaA:\x88E0\xa0<\xb8\x17\ +\xc2?\x83E\xe9\x8c\xe9\x0a\xb0\x96j(\x1f\x00\xce\xe6\ +\xd38,\x17\xfe\x85h@\x15\x81\x03\xab\xda&\xacJ\ +\x90O\xe3LU\x1a\xdc\x8b\xa0\x81:\x08vT\xd3@\ +\x95\x80|\x1aWud\xc1}5\x0dTI\x90+\xee\ +\xc5\xd0\x80\x03\xabZ\x1fPDH\xa7q#W\xdc\x8b\ +\xa0\x01\x90)\xa0W\xc4*\xc0\x9a\xab\x81\x82X\x1a'\ +2\xc9\xfbr\xd0\x00\xe8\x94`WT\xfb\x07*\x1fB\ +h\x5cH\xa5\xe7\xcb@\x03|\x1f\x11\xf8\x96\xaa}\xc5\ +\xbf\x1eR\xe8\xbd\xd7\x13\xc4\xc9\xaf\x18B4\x00~E\ +\xf0-C|\xa1Z7\xacx\xc8\xa7\xf7z8K\xc0\ +\xa7\xfb\xabp_\x0a\x1d@l\x09|E\x10c\x962\ +\x87\xa4\x1aJ\x81\x13\xd5\xa3zT\x8f\ +\xeaQ=D\x0ef\xf1\x8fe\xf2\xd3\xe0\xe2\x9fK\xf0\ +\xe7\x98\xe2\x9f\xd5\x84?\x0b\xcb\x83\xb2\xe4\x87\xb0\xbc\x11\ +\x96G\xc2\xf2\xaa\x84<+6A\xe5\x92\xf2PX^\ +\x0a\xcbSay+,\x8fK\xc8kay^\x5c\xde\ +\xb7E?L\x09j\xdf\x19\x84>\xf5{\xf4\x8b\x96\x9d\ +(\x90t\x88\xd0[\xfeB\xd0\x17\xc1r\x04G\x11\xdc\ +D\x10TIp\x93\x9e\xc3rzN\x7f\xc9K\xc7\x12\ +z\x0e\xf8\xe0\x0d\x11\xaccQ~y\xb0\xdd9\xac\xca\ +\xb7)\xf9\xc0\xa1\xe7\x14B\xcf\xd1\x90%\x107(\xef\ +>\x08\xad]\x1f\x81\x13\x828\x05X\xa7\xa4\x10G\xcf\ +Y\xbf\xbc{ \xf0\xf7J\x08& x\xa5\x00\xeb\x91\ +\x16^\xd1kP\x92d\x0f\x04\xd6^\x13\x81-\x824\ +\x05X\x83\xac\x90F\xaf\xa5fi{ \xb4\xf6-,\ +E\xe8\x9d)?`\xd3k\x12\xb9\x07\xac\xe24o\xfb\ +\x9b\xad]p\x0flY\x22\xce\x82\xc0\xfa\xe1\xac\xfc\x0e\ +4/\x0e\xd2\xe85\x16\xae\x9fU\x9c\xcfWe^'\ +)\xbcb\x09\xc9\x05\x16%+\x9d*\x7fn\xbf\xec\xfe\ +\xbc\x13\xab\xb8~\x00\xfa\xc2/\x94\xef\xbaE\xb58\xa0\ +\xee\x06\xd4\xd2Z\xd9\x92\xaa1\x08}\x9c\xa0\xd6,\xfc\ +]\xc5\xf5\xfc\x8c\xa3\xd7\xcc_\xff\xfa_\xb2n\xbav\ +\x14\xf4\xd6\x84\x9a\x0a\x19\xee\xd6dN\xe0!\x5c\xdb<\ +?*\x88d\x7fzL\xb2\xdf?\xc0\xfdgr\x1f\x9c\ +\xc5u\x0f\xd3\x0eM\xc7\xf5\x94q\xcf;\x5c\x0bIn\ +{\xb1\x8eU\xa4\xcfWl\xbe\x0f\xae\x97\xa5\x87k\xf8\ +f\xdd\xd8\x86\xd7I\xf5Z)\xbb\xe7\x04\xd4\x97\x80\xbe\ +O\xb9\x0f\xddp\x0d\x02\xa8\xf5&\xa7}\x08a\x15\xd9\ +2\x15\x14\xcf\xd4\xa5\xeb'\x9a\xe2Z\x87\xd03C\x96\ +\x01\xf56\xf2\xdf\x06\xe1\x9aET}a\x99\xee\xdd'\ +\xb3\x8a\xec8\xf9\xdb2\xb8\xdec\x1b\x5coI\x9e\xb5\ +\xc0\xf1>\xe4e\xe3\x9a\xb0P\xb3I\x86\xda\x03\x1cV\ +\x91\x0d+\xdf\xb5\xa39A\x9d\xcb\xdcG\xe7\xe5\xda\x03\ +Cx@\xbd2\x5c\x1bSz\xfe\xc8\xb7\xdf\xe5\x8aw\ +\xa8\x87\x0a\xfc\xecW\x0c\xa8\xef\x96q\xd6B\xda\xf9\xf2\ +}\x17r[{\xf2\xa6^\xb8N\xe4\xaf\x1c\xd0\x97\x19\ +j\x9bIA\x07Ar[?\xd4\xe1\x5c\xdb\x11\xf7\x87\ +\x96xp\x0aHNR,\xc9~w\x9f\xcc}|\x91\ +\xcc\x09>\x81\xe5\x1e\xd4\xe0+\xf8\x16I\xd5\x84\x95t\ +\x0f\xd2~\x90i.\xff\x96\x97\x1f\xc8o\xfdH\x87\xc9\ +\xf6\xdf\x8ff\x22\x81L\xcb\xcd\xc4\xb5\xc2q\xdf{D\ +/T\xefJ\xbd\x22\xfc!\xfd\x07\xeaiA_\x1e\xa8\ +/\x0c\xfd\x02%\x19\x05q\x11\xf8y\xe5\x90\x0b\xf2Y\ +?\xd4\xfc?4C\xa2\x1eB\xec\xcfad\xfa\xd1Y\ +t\x8fF\xedR\xeb\xba\xf2u?\xa8?\x0c\xb4\xc1\xcb\ +\xcb,\xf3\xf9\xb9\x0f\xce\x88\xaf\x15^\x11\xeb\x07\xba\xb7\ +m\x8f\xf8\xdd\xbd\xd2'\xc6\xe5\x90\xb9\xa1\xeeT\xff\xca\ +\xf2\xea/\xb0G\xd6\xfa\xb8>\x7fY:\x04\x9c\x19\xd0\ +\x19%\xac\x9b)\xfb\xfa\xa1\xcf\xe7\x99\xa5\xa5\xcb9\x1e\ +\x17\xf7m\xa6\xfa\xc6K+\xaf)]*\xfd\xc8,\x5c\ +\x1b\xb8\xb4\x01\xfc\x03j\xc2J\xb0\xc72\xae_\x17\xeb\ +8e\xf5\xba\xc9{\xe9C\xd7\x11\x95C\x9d$\xf4\x8c\ +\x0c\xb7\xe5X\x17\x14\xbb\xdd9\x19\xa2\xfb\xe4\xca{\xfd\ +\xe8\xf9\xd03\x13\xd7\xdd\x1538I1d\x8a\xd3 \ +\x89\xeb\xb8JD\x07\xe8|C\xff\xa1\xd2\x06\xeeMU\ +\xb6<\x94y\xfdY\xd7\xb7\x95:\x8fl\x9f\xed\xf2\xaf\ +\x17\x8cd\x5c\xca\xb6\x81\xb8&\x9f\xb8\x015\x19\xa9^\ +\x83\xa5\xee\x81l\xebG6\x08\xf4\xb7\x12\x8f\xfbXJ\ +G\xaf\xa0z\xc9\xb9\xf7O\x8b}7\xf0A\xa83_\ +\x06\xddI\xbf~\xdc?\xfd\x1fl\x9b\x8a\x1b\xd0C\x07\ +\xfb6*`\xed\xb0.\xb0\x87\xc1>\x16\xbd\x01<2\ +\xf3\xbc\x8d\x98^\xe9rX?\x9c\xfd\x1dC\xb1\xee)\ +nd^\xb2-\xeb\xfd\xd2\x03\xe8\xda\xcc\x1e\xa5\xda\x96\ +\xa0\x8f\x95\xa1\x0f\xca\xb4~\xa8\x09.n\xff\xa1\xb64\ +\xfc\xbb\xfc\xf8\x9e0P\xb2\xa74[\x03\xf7M\x11\xec\ +\xcb!\xd7\xf5kc=\x0etx\x91\xeb\xcfJ!S\ +\x9d\x87W\xe0\xfa\x9ba=\x19\xf4hq#\xef\xc5\xf5\ +\xb2\xce_\x85\xad\x9f\x9b\x99\x8c\xce\xc7\x90\x8a\xad\x8d\x88\ +t\xc2\xbc\x17\xe2{,C\xbf\x95B_jE\xac\xff\ +\xf0L\x5c'_$\xfe\xa1o\xc7\xde\xf1\x15\x8b\x7f\x90\ +?o\xee\x8a_\xffS/\xcaoZ!\xeboJ\xf5\ +\xb8\xcd\x11c\xa3\x22}\x1f\xec\xbb\x8a\xe3\x7f\xba\xd8F\ +\x04;Y\xdc\xc8\x09:^q\xf2\x1f\xfc<\x9bz\x97\ +j\x8fH\xa8\x83I\x07\xb0\xff\xce#K\xd5=\xb3\xae\ +0+N\xfe[Q}G\xf2\x9e_\xc32\x08\xf4\x80\ +b\x80~\x07\xf4\x87m\x9e\x8a\x88\xeb\x80\xee\xe9\xed(\ +v\xed\xd0\xeb\x00\xf7\xe7\xac\xb0\xf5S\x00>\x9fd\xfb\ +\xae\xb8\xdfw\x09\x80~\xbd\xc2\xfdA\xe5D\xfb\xa0\xdb\ +\x16D?\x13\xbb~\xd0=\x93\xcb\xf6\x85\xc8\xbc\xfeB\ +?\x85E\x13\x04\xda\xc5\xfb\x06T\x18\xed\xeb\xe0\x1e\x06\ +\xa5\xf5:\xc1\xb2\xafl?\x88\xe4\xeb\x17\xd7\x0b\x01\xf8\ +\xc0\xd6\xfe\xd8\x07\x0b1-\x0a\xe7\xcd\x8b\xc7\xf7\xe4\xb9\ +\x0fp\xee\xb7\x0fA\xe7+Z\xec\xdaa_\xa0\x7f\x87\ +L\xf6\xefr\x81\x9a\xc7\xd0\xcbl\xa31\xd5\x83P\xf8\ +,\xc39\xbc\x016 \x0f\xf3\xa2\x82\xf8\xb7\xd8\xde\xcf\ +\xbe\xe5L\xa6\x9f\xfc\x0f\xdbi\xb8o\xcc\x0a=\xd9\xf7\ +\x01\xbd\x0bb\x81\xf9Q\xc1\xe2\xd7N\x92\xb8\x973\xee\ +\xe1(\xad\xfd\x8b\xe8\x06\xde\x03\xfa+\xac\x0d\xe2\x91`\ +\xc7C?\xd0\x12{\x8a\xf4+\xe8\x0d&\xfa\x10\xb2q\ +\x0f\x9d\x82\x98\x97d.\xb2\x85Rw\x8d\x94\xde\x16D\ +\xef\x05yS\x9a\xbd\x89\x07\x8fKf]\xb6\x93T\xef\ +*\xbe\xfe\xe5T\xads\xe8A\xc5\xf9\xf9\x19\xd7\xbb/\ +~\xa6\x84\xf4)>\x1f\xfa\xfa\xba\xf49a\x9a\xe4 \ +}qv\xd1\xfeI\x14\xd7\xa6i\x10\xf1P\x88\xf3\x14\ +\xc4\xbc(\xf35\x10[\x95\xac\x17\x97(\xfc\xeb\xe2\x18\ +<\xf4\xdf\x12\x89\xce\x9f\x9f\xa8X4\xff\xd9\xd07\x16\ +l\xc0\xcc\xa4\xb2\x97\x9f\xfa\x9d\xea\x93gI\xf5\x81K\ +;0\x19=\xab;\x89\xed\x93\x12\xfd8\xb4\xa9\xbfC\ +sI\xdb7\x1e\xc7~%\xf1-\xc3\xf9\x93@\xe6\x95\ +N\xff\x88>\xb3\xfd\x0f\x88~~\xbe\x90M\x07}\xee\ +O/.\xd97Y\xc4\xc0=\x12\xd6\xb4\xa3\xe2\xa2X\ +v=\xa7\xe2\xda\xa1\xe7\xc9L\xcf\xf5d\xfa1s\xbc\ +'\xe0\xbb\x05^\x0a=\xa7\xa0\xf7\x94$\xeb\xa66\x98\ +C\xf9\x9aJ\xd7w\xcb^?\xf8\x15\x8e\xcfE\xc8\x16\ +\xad\xd7g]\xdfZ\xb4~\xd8+4OI\x06\xf8\xeb\ +\x8a\xceL\xc7\x92\xfd\xe6\x11\xaf\xa0\xfaI\xe4\x89\xec\x03\ +X\xfa\xe0\xe1\xe7S\xfe\xe5r\xf1X\x91\xf8\x87~s\ +\xdc\x94\xaf\x22\xdfD\xf1\x80\x16\xd4\xd9\x04\xfb\x03\xf1F\ +IF\xa6\xe7\xba\xc23\x8f\xf1\x1f\x17Q\xf6\x97$Z\ +:\x0f\xd3Pao\xb2\xf2\xf1U\x91\xfc\x1fb3\x90\ +g\x80\x07\xf4AK\xfe\x8a}\xdc\xd9\xb7\xf7`\x1a\xc5\ +:\x1d\xf8_\x90\x8e\x07\xfd<\xcb\x9cb^6\xf5=\ +9\xaf\x1f|/9\x81\x87e\xf1\xad\xc3\xdaK\xc6\xbf\ +\xd1\x1c3\xce-\xc7\xb178\x0b)\x8e\xbd\xe9x\x15\ +_\xa7\xd1\xa5}\xdf\xa3%\xeas\xcda\xc5\x90\xc9L\ +\xe3B]H\x1e\xeb\x87\x98`\xe6\xf9\x95\xb2\xf6\x99\xe6\ +\xe7\xcf\x8b\xf87=\x81~Zz\x98\xbe`\xde\x18`\ +\xbf\xd1\xdf\x80\xae\x07}\xb4\xa8\x9e\x8d\x8f\xd0\x99\x89\x17\ +\xe9\x0f\x83\xd8\x18\x15\xe3l&\xf3\xfa\x81\xc7C\x1c-\ +\xc5i \x8ds\x99t*\xfe\xdd\x01\xf1\xf9/\xb4\x9d\ +\x9b\xff\xee\x1e\x96\xf3\x05_#\xb1\xcf\x89\xeaw\xa4S\ +\xc8\x0b\x81\xf7\x00\xdf\x009\x9duu\x13\x99\x17\xe6\x89\ +\xf5\x1e\xf0\x8f\xe6\xdcq)\xc2\x11\x7f\xfd\xa5\xd8\xed%\ +\x06\xe2\xed`\xcf@l\x1cb\xc2\x98\xff\xc8\xeeS\xe7\ +\xe7\xbf\x94\x9e\xff\x04\xeb\xdf6\xa0\x98\x8c\xe7$~\xc6\ +g\xbfd\xbfW\xc1>\x8e\x14\xcd@\xec\x87\xa2\xfd\xa2\ +\xbf\x85\xb3\x94\x89t\xb4b=\xfa\xd09\xc2\xfc?7\ +\x13\xef\x19\xce\x0b@2\x13\xd6\x0c\xba<\xee\x01Z\x98\ +\x03'\xd3\xba\xf9\xc0\xcf\x7f*=\xff\x8d\xbf\xfe\x0cV\ +\xd1\xfaA\x0f*\xb1~Q\xdf\xd5\x15\xdf/\x12~\x07\ +v\x05\xf4\xa8\xdbj\x8ay\x09\xf0\xc8\xd4\xbd\xe3\xb1N\ +\x05{\x86\xf5\x05\xf8[\xbeM)\x9fu\xf3\x81\x9f\xff\ +Vz\xfe#\xce_3\xc1k\xc68\xca\xcd\xc0zh\ +\xf2\x06\x89\xec\x8b\xb2Ad\x8f6\x1dy\x9c\xed\xb2`\ +=K\xc2\xfcW\xe0]\x80\x93\xd4]\xa30\xe0x\xe6\ +J\x89s\x0c\x14\x11\x84\xf3_\xcb\xce\x7f\xb6\x14\xc0\x91\ +\xe2\xf6?\x95\x14\x84\xf3\x9f\xff\xd8\xfc\xf7?\xfd\xfeC\ +\xf5\xfd\x97\xea\xfbO\xd5\xf7\xdf\xc4\xde\x05\xfb\xa3\xee?\ +\x8a\xd8\x83?\xee\xfe\xab\x98=\xf8\xa3\xee?\x97\xb2\x0f\ +\xbf\xdd\xfdw\xba\xcc\x00I\xd7?\xe0\xd7\xd9\xe1\xd7\xd3\ +\xe1\xd7\xd1\xe1\xd7\xcb\xe1\xd7\xc5\xe1\xd7k\xa8\xae{S\ +\xc9\x83I\xfd(\xc4G0\xf5\x93_\x1f\x83_\x07\x83\ +_\xff\x82_\xe7\xc2\x84\x8fw\xa8\x13a\x84\xc0\x9c\x10\ +\xa8\x13\xd1\xaa\xec:\x11\x22\xce\x85\x06\x82A\x086!\ +\xb8\x8e\xe0\x19\x82\x08\x16\xc5\x83\xe5\x09\x11\xf4\xb3\xaf\xd3\ +\xef\x1aD\xbf[b\xba\x171os\x04\x81\x08R\x7f\ +\x01\xaf\x12\x86T\xfa\xdd\xe6\xc2\xeb\x90`\xee=\x10\xf8\ +\x22(\xa8\x84y\x0bC\x01=\x97\x1e\xe2\xd6 4\xf7\ +\xc9\x08b\x14`\xde\xc2\x10C\xcf\xad\xd8\x1aD\xcc\x9d\ +\xa5\x00s\x15\x07,\xe15\xb0\x8a\xd3\x8c\x22\xee\xbb(\ +<\x14\xa3%\x16u>|\x15`n\x92\x82/\xab\xf8\ +\x99\x863.\xdf\xb3Z\xccw\xa6#\xe4O\xd3&%\ +\x8b3\x8b\x85\x02z\xce\xfc\xbd\x0f\x94\xcf\xbc\xe9\xb8\xf6\ +\x0a}\x9cW\x011\xdb\xac+\x0ed\xce\x9dC\xd8\xdf\ +\x9bs\xff\x14\x99\xed\xbb\x1b\xdf\x8f\x06\x7f[a|G\ +:\xbfS \xabH6\xc9\xce\xdf\xd1\xbc!\xef\x16\xe6\ +\x9c\x1bv\x11\xc7vx\x05yb\x82\x15<\x92\x97\x93\ +F\xb2\xbf<%\xb3|\x9c\xb0\x1fU\x8a\xbc\xa0TV\ +\x91\x5c\x95m\xcf\xd1{S\xf7\x8c\xc1\xf1\x8b\xd2\xee\x8f\ +\x88\x1b\xe0\x93\x87|\x10|\xaf\xa0|y\xad|\x9d@\ +J\x1a\xa7b\xad\x10'\x87{~\xb2\x0d\x1e\xce\x9f\x01\ +\x7fn9\xe8\x89\xaf\xcfH5w\xf0\x1fC.\xbaX\ +:\x91b@\xdc5m\xffDI\xd7\xc0\xd7\xc5\xca?\ +\x7f\xeb\xe68\x97\xa9\xb4\x5c3\xbc\xab\xec\x5c\x9c\xe3\xc1\ +\xcf}\xc4\xf7\x02\xca\x88\xe3\xc3\xdf\xe2\x9c\xa0\xb2i\x89\ +\xafG\x96s\xefu\xf0\xbdX\x88?\x8b\x9f\xc3'\x1c\ +\xe7\x85\xbc\x0b\xb8\xab\x02yS\x90\xe3\x02\xb9\xdbp\xcf\ +\x0a\x9f\x95R\xee\xa1\xb2?=\xa2cA\xa5\xae\xe1U\ +\xb9\xe7O\xe7!\x88\x8b\xaf\xc3\x9ar\x82\x8e\x15\xdd\xf7\ +,\x96w(\xc0\xff\xd1\xb9I?2\x13\xf1\xa0'b\ +\xd7\x00\xeb/\xe3\x9e@\xf9\xe7\x8f\x00\xf8\xb9\xc8\xb9g\ +\xa7\x91\x99\x1e\xab\x0b\xf3\x08\xca|\x16\xce{\xeb\x8ep\ +\xe1#\xf2y\x90c\x06\xb9\x87\xa5\xc4\x06\xcb7\x7f\xfa\ +\x0e;'9\xae\xe4\xdc\x0b\xf2\xa9<8\xfc\xb7\xe5\xe0\ +\xe3\xb0\x06\xfb\x7fH\xf6\x87\x07\xa2q\x10|B~\xfb\ +\x8f\xde\x95yi\x9d\xc8\xf7@^(\x8e\xc5K\xa3\x13\ +\xc0\x9d\x97}\x13D\xe6{Q\xb9a\xdd\xc5\xe1\xb3|\ +\xf3\xb7n!\xf2^\x07\xc4\x1f\x0b\xf3H\xca;w>\ +\xac\xd0\xc3:F\x89\x81\xf0\x0a\xb9\x1eb\x9e-\xf9\xfc\ +!/\x1f\xf1\x10\xce\x8f\x92\xe7\x16\xee\xb9\x83\xee S\ +\x5c\x13\xdf\xb5\x9e^\x227\x11\x06\xe8L2\xcf\x1fr\ +\xfa\xb6\x0f\x11y\xaf+\xdbo\xbf\xec\xf1w|o\xae\ +\x1b\xce\xaf,A\x9bO/\x8b\xcb_+\xc7\xfc)\x1a\ +\x15\xa5\xdfd^(\xf3>\x9c\x04@\xe7H\x22\xbe/\ +< G\x0a\xe7\xe3\xc8:\xff\xfd\x93\xf0\xfd\xb1\xe2\xc4\ +\xcf\xa5j<\xc8\xe1>\x09\xce\xef\x12q_\x9d\xfd\xee\ +\x1e\x95\xe7$\xe3\xfc!\x87\x81\x97\x97Ur\xff/\xad\ +\x95\xcf\xfe\xafi\x87u\xea\x12\xfb\x1f\x19 \xfb\xfe\x8b\ +\xc8w\xe1\x8f\x9c{'e\xcfy\xc0\xf9D\xbdpN\ +\x9d\xf0\xa0\xee\xeb\x89\xfc^\xb9\xf8\x0f\xe4W\xe6G\xde\ +\xc1\xb6\x09\xbe\x9b\x02\x80\xfe\x1f\xf2\xb4\x81ve\xe3?\ +\xdad\xfa\xa9\x85\x22\xef\xfbg]\xdb\x22;\xff\x01\x80\ +\xdc\xa1\xf5\x9d\xa9;$p\xb7\x04\xc9M\x0c\x90s\x22\ +\xd3}\x12]L\xdf\x90\x9f/\xf8\x1e\xce\x19\x17:c\xf9\xaf\ +\xfdp\xce\x1b\xf0\xe5\xack\x9b\xb1\x1e\x09:2\xce\xb3\ +-_\x9e1}_x\x98H\xb9\x08#\xfb\xe6\x8e\xd2\ +t\xc1b\xf3\x07\x19\x0awKA\x87\x843S\x10\x1f\ +\x85u\xe1bg\x0c\xe9o\xdc\xb4\x84\xe28F\xf6\x17\ +\xd8(\xec\xcfO0\x0d\x17\xe1\xa2\x14|\xd0~\x07\xb8\ +\xeb\x07w\xeaE\x0d\x90e8?M\x92\xf9\xc3>\xec\ +\x1c^\xe2\xee~A\xec+:\x87W\x97\xbe\xdb=\xab\ +T{\x11\xdf\xed\xb6\xd0\xc6x\xc2:\x85\xa0\xbfG \ +O\x15\xceM\xd6\xd5\x8d\xe2k\x05p9d\xe6\xe5\x0d\ +\x92\xdb/X\xbf)\x99\xf7\x0by\x99p\x1f\x8f\xff~\ +\xe0\x05\xe2\x06\xe8q\x90\xef\x96\xb8L\x0b\xd9XVX\ +nfyo\xc2k\x06\xff\x04\xc8o\xb8;\x095\xd3\ +\x00\xb7\xa5\xd9\x91\x14O+3\xef\xbb8\xfd\x8b\xb9\xb3\ +\x02\xb5\xca\xf0\xbe\xc1\xbf?\xbd\x22\xf6\x9d\x9c\x84\xf7\xd4\ +\xfd\x1at\x9e!\x8f\xb1p]H\x87\x84\xfcE|>\ +%\xb9\x13\xf0>\xa4(/\xb8\xf4\xf3\xc3\x8f{\x14\x9e\ +%\xb0A\x0a\xdf\x8b\xecS\xc8\xa3\xc4\xfa\x0d\xdc/X\ +\xdbQ,\xad\xc2\x80\x9cu\x9c\xbf\x86\xd6\x0a\xb8\x97f\ +\xe4\xbf\xbd[\x16\xcd\x0b\x02?fC\xcf_\x07\xf3\x82\ +\xdcG\x1eh\x1d\x0e\xf8lQw\xab\x9a\xe19\xe1\xda\ +\x16\xe9?\xc5\xbe;\xdboo!\x8d\x97w\xfe\xa0\x97\ +@-\x1a\xea~\x94\xc4\xfe\x1f~\xbc\xa9\xe8w\xc0\xff\ +VPwW\xc0\xee\x815\xa4\xee\x1d\x87\xcf\x1b\xf8+\ +3\x5c\x17\x93\xd9\xc8\xae\xc69\xae\x90;)\xe0C\x00\ +\x1e\xce\xbf\xf3\x92\xe9eW\xcal\x05\xe6\xcd\xce\xc3\xf4\ +\x82m\x94\x95\xe5\xce\xff\xe5\xc7\xcaD\xf27\xb8\xc3\x01\ +\xf2\x0f\xe8\x16\xdf\x99\xb5\xd0.\xba\xbb\x079\xaahM\ +\xb0\xb6\xcc\x0b\xab\xf0\x9a\x0a\xf1\x0e\xf2\xe8\xf4b|\x07\ +\x18\xe7}\x0b\x9eSn\x01>\xe7@\x97\xc0\xa3\xa1f\ +a\x92\xad\xa1\xb4\xf6\x03?\xceW\xd2\x7f\x8b\xe6\x01\xbc\ +\x9f?\xc0?YB\xc7,\xbc\xcbW\xb2\xde\x14\xe8\x03\ +8o\xfb\xe0T\x5c_\x09x\x00\x9c#\xb8\xbb\x07\xbe\ +g|\x9f\x91\x9fw,\x9d\xee\xc7\xf7\xdf\x8a\xf6\x9f\xa3\ +\xf9\x00\x0f)\x88\x0dG\xf0\x12\xdf;(\xf7\x1e\x15\xf3\ +\xf7\x0b\x82\x5cj\xa7\xf2\xfd\xe7b\xe3\x17Pk\x09p\ +\x8bA\xb4\xfdPY \x18\xbf(=~T\x91\xf7u\ +\xa5\x07\xe1\xf8\x11?~W\x15zt\x8b\x8a\xdfU\xd9\ +\xf8iU\x8f_\xff\x0e\xf9\x03\xbfC\xfeFU\xcd\x9f\ +\xc1yD\x1a\x04\x11\x03?\xd5\x08\x22\x18~*\xd3\xf9\ +G\xd5Y`2\x0f&\xfc\x87Q\xb4\xaf1\xf0S\xad\ +h\xdf!OK\x9f\xa0z\xfa\x14\xe6ii\x8a\xce\xd3\ +\x12\xc2e\x0d\x16\x95\x1b\xb8\x07\xc1c\x16\xc5\x1f\xbeJ\ +\x091\xf43\xf6\xd0\xcf\xac!L3B\xefn\x8e\xe0\ +\x10\x82\xc4\x0a8w\x89\xf4\xb3\x9b\x8b8K\x00\xffC\ +\x10V\x01\xef\x15\x860\xfa]\xc2\xeb\xfe\x15\xef\x16\x9c\ +\x03\x7f\x1fj\xd0\xfbR\xceg\xe8\x8a\xd6!%\xb73\ +\x0e\xb1\x8ahMr|\xd3\xbayaM|d\x1b\x81\ +\x9f\x18|;\xe9\xc7\xe6P9\x13\xe0\xd3-\xbbfj\ +\x22\xab\x88\xce%{7\xc4\xe4\xd6\x1b\xe1\xbc\x02\x5c\x93\ +\x1ej\x09\x09\xda\xedP\xbf\x22-\x01\xc7\xa2\xc0\xee\xc2\ +\xbam\xe9\xfb\xc1?c\x12\xac[\x07\xfb9\xe0\xbd\x12\ +\xd5\xc1G\xf6\x19\xd8\xcbP\xf3\xae\x949\xf0\xcfw\x99\ +\xefN?6\xbb\x14\x9f\x10W\xec\x9c\xa0\xde\x5c)v\ +?\x9f\xb7\x94\xb2\xe7:\x18\xcf\x90K\x22\xbc>\xf0)\ +\x80\x9f\x11h\x00\xd7@\xf0\xdfO\xf91\x84\xfc?P\ +\x03\x04|\x1c\x22\xf4\xf5\xaf\xa5\xbf_\x17\xfb\x8a\xc0\xaf\ +)8\xc0\x7f\x07\xef\xa4\xfch\xc5\xed'\xb0\xff\xc07\ +Y\xbc\xce\x17\x8f\xcc\xba\xbe\xa5\xfc\xef\x07\xbf\xde\x89y\ +\xc5\xfcz\xb0\x0f\xa9\xb8N\x9a\xb6h\xfa\xa6\xf7\x19h\ +T\xf0n5\xcc9ycOa<\x94\xfe~\xf0k\ +\x85y\x0a\xe0\x99C\xc7d\xca\xb07\xe9\xfc\x1b\xa8g\ +U\xb4\x05<\xea\xfey\xf1\xef\x8a\x7f?\xf8\x0d\xd1^\ +\x82?\x80?\x0a\xbeGIZ\xa7\x86\x8a\x8b\xb9\xfc[\ +\xcc\xf7-\x22^\x22\xfe\xfdP3\xd5i`\xb1\xb8N\ +\xde\x93\xcbd\x19y\x0f\xc5\xe7\x0f~\xcf\x9f\x9f\x04\xce\ +\xc2\x03:\x9e+\xc9\xfb\x9bb\xba\x17\xac\x17\x00\xfeM\ +\xc9\xf9\xab.\xb6\xaf\xe1Ny\xe1\xfe\xc5\xbc\xc0|S\ +\x80nJ\x7f\xff\xf6!\xc5\xea\xa5\xe5>\xf6\x90\xf0\xdd\ +\xf4\xfa\x11\xaf\x14\xc4\x1f\xc4@\x85\xe2I\xa5\xe3\x1f\xed\ +\x1f\xf0\x0f\xa0y\xc8\xad\xc0\xb9\x08\x92\xc6\xa3p\xbd\xbd\ +1\xc5\xf6/\xef\xd9\x15\xe18\x84\x88\xf7\x0b\xd8\xf5\xe8\ +o\x81\x06!\xbf\x07\xe7\xf9@\xcc\x03\x7f_2\xbb_\ +\xd0\xcf\x04CD=\xa4\xa2\xf7\xf3{\xbd ~S\x18\ +[\xa1c\xeb\xe0\x7f\x84\xfc\x0c\x88\xf3\xe2{\xde6\xad\ +K\xc5;U\x93eN1\xdc\x81\x5c\x02?\xa9\xc8\xf3\ +\x0fy~;\x86\xe2\xde2 _\xf2^\x5c\xa3\xe8\xd4\ +B\x9b\xaa\x1b\xc6?\xc2\xe8,A\x1c2\xeb\x86\x13Y\ +8g\xe1\x18\x02:\xf7\xe0\x8b\x17\x96\x15\x98vK\xc6\ +\x80\xa8\xf7C]\x1c\xc4\xbf\x0b\xe7\x9a\xfe\x83\x92\xe3\xe8\ +\x99\xa2r/ 7\x12\xe2\x18\x10\xa7\x009\x0b\xf1\x11\ +\xf0\xbd\xc13\xa0\x86\xa5p\xfe\x16\xf8\xcaD\xf0>\x81\ +\xf5\xf3\xcf:\x95\xc3\x00\xfc\x16\xea\xeb\x80\xfc\xc6\xf2V\ +`\x80\xcf\x1e\xeaxB\x0c\x0c\xd7\x92E<\x11\xf2\x93\ +\xb0\xbfVD\xdc\x01\xf2\xc5\xc0\x17*&g\x8d\xd6\x91\ +\xa9\xda\x80\xb9\xf7]1\xae3\x5c\x17b\xff6\xe4\xba\ +B\x1cVp\x80\x9f\x1bbU\xc9\x1b\x8c\x8a\xf1\x16Q\ +\x03\xea2\xc1\xbe\x94\xc23\xf8\xfa9\xf5\xd9\xba\x05\xf6\ +E\x83\xdf\x16x5\xd0>\xaeOq}+>;\xd0\ +?\x04\xe2\xc4\x98F\x817\x8b\x88\xcd\x81\xdf\x19jU\ +\x80\x5c\x869\x96\x91\xab\xc7\xb7\x0d\x8ax.Z\x1b\xd4\ +\x82\x85\xb8\x1b\xce\x0f\x82\x18(\x9d\xfb\x0by\xa4\xb8\x9e\ +\x14\xf0`\xc8SC4\x9e\xed\xbb\x0b\xe7\xffB\xedJ\ +\x1cs<<\x93\xf2\xc1JVG\x8eo\x97$\x16\xf1\ +\xac\xce\xb8n\x0d\xc8p*\x8fX\xe0\x19\xc2>?\xc1\ +\xfb\xed\x82y\xd5\x92\xf9\x05\xf9\xfagI\xfd[\xfa\xdc\ +\xe5\xf2\x00_\xff\xe6\xdb\x1fO*\xf8}\x82 h\x7f\ +(\x82\xfdUi\xf6ge\xdb\xdf\xccJ\xf4\xc6\xc0\xbb\ +\xc1O\xa1IP\xbe\x8aB?E\x8d\x92~\x0az\xce\ +\x0d\x100\x11\xbcG\x90\x8e C\x0c\xa4\xd3\x7f\xc3\xa4\ +\xbf\xc3\xff\xee9\x04\xdc\x12\xb8\x11\x7fv\xb9\xf4w\xf8\ +\xef\xe5\x96\xf8\x1e\xe4C >\x0du\xe7 \xa6\x07\xf9\ +'B|\x82+0\xe7b\xdf\x858\x19\xd4\xbc\x05\xdd\ +\x06\xc7\x82\xe9\xdeeX\xbe\xad-\xc6{\xf8\xeb-\xe4\ +C\xa0\x8f\xf0\xfbH\x80L\x86\x5c\xd7\xfc\x08\xbf\xc2\xba\ +3\xa0\xeb\x0a\xd4\x92\xe5\xefU\xe1\xf7!\xf7\x0f\x06<\ +\x03\xea\xc9\xe0\xba\xd7\xd6\xcd\xb1\xbc\x80\xb8\x92\x90\xbe\x9e\ +Q\xf8\xfd\xc2zDo\xb0n\x8c\xf3\xe2-\x04\xe2g\ +\x88_S\xb9\x08\xf9T~\x1b\x15\xdf\x11\xf8>U\x1f\ +\x06x<\xe4d\x95\xc8o\xc49\x08]q\xfdH\x88\ +\x9b'Q9*E\xdf\x07\x1b\x0b\xed7\xd4\xc3\xc3}\ +;\x84\xeb\xe5\xf2\xeb\xb1!\x1d\x02rQh\x1eN}\ +\x1fz\x06B\xdcxe\x0b\xec+H?\xb5\x80\xea\xaf\ +\x22X\xbb\x13\xfd?U\x9f\x93\xc4u\x04i}\x1f\x7f\ +\x1f\xf0\x022\x15\xea{\x81M\x08\xf8\x02\x9d\x18\xea\x99\ +\xa6\xee\x1c\x86\xf5\xf5\xec\xdb{q\xcc\x98\x9b\x9e\x88\xf5\ +OZ\xfee\xa0\x9f\xe9`\x93\xc1\x9cqn\x08]\x03\ +\x12\xf2xA\xbe\xc2w\xf89p \xfb\xa0G\x8a\x00\ +\xbdP\xf4\x8c\xf0\x93q\xde\x1a\xe7\x99C>\x04\xe8f\ +\xd0O\x03\xe4 \xc4z\xa1\x87\x16\xc4[\xa9\xbb\x0a\xc5\ +\xe8\x98:\x0b\xcbu\xb9)\xdb\x07Sz\xa0`\xcc\x16\ +\xeau\x01\x9e\xf8=\xe2\x8a\xcb\x1e>\xfdR\xe7g\xb9\ +\x0e\xb7\x1c\xb2I\xf0\xfc\xc8t~e\x1d\xff\x07\x9d\xab\ +\xf3\x85\ +\x00\x00_\x84\ +I\ +I*\x00\x08\x00\x00\x00\x17\x00\xfe\x00\x04\x00\x01\x00\x00\ +\x00\x00\x00\x00\x00\x00\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x01\x01\x03\x00\x01\x00\x00\x00`\x00\x00\x00\x02\x01\x03\ +\x00\x04\x00\x00\x00\x22\x01\x00\x00\x03\x01\x03\x00\x01\x00\x00\ +\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ +\x00\x11\x01\x04\x00\x01\x00\x00\x00@T\x00\x00\x12\x01\x03\ +\x00\x01\x00\x00\x00\x01\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\ +\x00\x04\x00\x00\x00\x16\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x17\x01\x04\x00\x01\x00\x00\x00\x17\x0b\x00\x00\x1a\x01\x05\ +\x00\x01\x00\x00\x00*\x01\x00\x00\x1b\x01\x05\x00\x01\x00\x00\ +\x002\x01\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\ +\x00(\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\ +\x00$\x00\x00\x00:\x01\x00\x002\x01\x02\x00\x14\x00\x00\ +\x00^\x01\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ +\x00R\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00\xbc\x02\x01\ +\x00\xfa8\x00\x00r\x01\x00\x00I\x86\x01\x00\x8c\x0d\x00\ +\x00l:\x00\x00i\x87\x04\x00\x01\x00\x00\x00X_\x00\ +\x00s\x87\x07\x00H\x0c\x00\x00\xf8G\x00\x00\x00\x00\x00\ +\x00\x08\x00\x08\x00\x08\x00\x08\x00\x00\xf9\x15\x00\x10'\x00\ +\x00\x00\xf9\x15\x00\x10'\x00\x00Adobe P\ +hotoshop CC 2015\ +.5 (Windows)\x00201\ +7:03:08 11:38:26\ +\x00\x0a\x0a \x0a \ +\x0a pain\ +t.net 4.0.9\x0a \ + 2017-03-0\ +7T11:32:29-08:00\ +\x0a 2017-\ +03-08T11:38:26-0\ +8:00\x0a <\ +xmp:MetadataDate\ +>2017-03-08T11:3\ +8:26-08:00\x0a \ + image/tiff\x0a \ + 3\x0a \ + sR\ +GB IEC61966-2.1<\ +/photoshop:ICCPr\ +ofile>\x0a \ +\x0a \ + \x0a \ + adobe\ +:docid:photoshop\ +:94a27cdb-0433-1\ +1e7-b02d-9f84d9f\ +5a326\x0a \ + \x0a <\ +/photoshop:Docum\ +entAncestors>\x0a \ + xmp.iid\ +:d3f831c7-1693-8\ +248-a9a0-2c4f91d\ +81b49\x0a \ + adobe:docid:\ +photoshop:c7bad1\ +dd-0436-11e7-b02\ +d-9f84d9f5a326\x0a xmp.did:a36\ +4ea4e-2280-ea40-\ +ae73-10beb7a78ae\ +8\x0a \ + \x0a \ + \x0a \ + \x0a \ + <\ +stEvt:action>cre\ +ated\x0a \ + xmp.iid:\ +a364ea4e-2280-ea\ +40-ae73-10beb7a7\ +8ae8\x0a \ + 2017-03-07\ +T11:32:29-08:00<\ +/stEvt:when>\x0a \ + <\ +stEvt:softwareAg\ +ent>Adobe Photos\ +hop CC 2015.5 (W\ +indows)\x0a \ + \x0a \ + \x0a \ + saved\x0a \ + <\ +stEvt:instanceID\ +>xmp.iid:d3f831c\ +7-1693-8248-a9a0\ +-2c4f91d81b49\ +\x0a \ + 2\ +017-03-08T11:38:\ +26-08:00\x0a \ + Ado\ +be Photoshop CC \ +2015.5 (Windows)\ +\x0a \ + /\x0a \ + \x0a <\ +/rdf:Seq>\x0a \ + \x0a \x0a \ +\x0a\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \x0a8BIM\x04\ +%\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x008BIM\x04:\x00\x00\x00\ +\x00\x00\xe5\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x0bprintOutput\x00\x00\x00\x05\ +\x00\x00\x00\x00PstSbool\x01\x00\x00\x00\ +\x00Inteenum\x00\x00\x00\x00Int\ +e\x00\x00\x00\x00Clrm\x00\x00\x00\x0fpri\ +ntSixteenBitbool\ +\x00\x00\x00\x00\x0bprinterName\ +TEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0fpr\ +intProofSetupObj\ +c\x00\x00\x00\x0c\x00P\x00r\x00o\x00o\x00f\x00\ + \x00S\x00e\x00t\x00u\x00p\x00\x00\x00\x00\x00\ +\x0aproofSetup\x00\x00\x00\x01\x00\ +\x00\x00\x00Bltnenum\x00\x00\x00\x0cb\ +uiltinProof\x00\x00\x00\x09p\ +roofCMYK\x008BIM\x04;\x00\ +\x00\x00\x00\x02-\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x12printOutputOp\ +tions\x00\x00\x00\x17\x00\x00\x00\x00Cpt\ +nbool\x00\x00\x00\x00\x00Clbrbo\ +ol\x00\x00\x00\x00\x00RgsMbool\x00\ +\x00\x00\x00\x00CrnCbool\x00\x00\x00\x00\ +\x00CntCbool\x00\x00\x00\x00\x00Lb\ +lsbool\x00\x00\x00\x00\x00Ngtvb\ +ool\x00\x00\x00\x00\x00EmlDbool\ +\x00\x00\x00\x00\x00Intrbool\x00\x00\x00\ +\x00\x00BckgObjc\x00\x00\x00\x01\x00\x00\ +\x00\x00\x00\x00RGBC\x00\x00\x00\x03\x00\x00\x00\x00\ +Rd doub@o\xe0\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00Grn doub@o\xe0\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00Bl doub\ +@o\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00BrdT\ +UntF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00Bld UntF#Rlt\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Rslt\ +UntF#Pxl@b\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x0avectorDatabo\ +ol\x01\x00\x00\x00\x00PgPsenum\x00\ +\x00\x00\x00PgPs\x00\x00\x00\x00PgPC\x00\ +\x00\x00\x00LeftUntF#Rlt\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Top U\ +ntF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00Scl UntF#Prc@\ +Y\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10cropW\ +henPrintingbool\x00\ +\x00\x00\x00\x0ecropRectBott\ +omlong\x00\x00\x00\x00\x00\x00\x00\x0ccr\ +opRectLeftlong\x00\x00\ +\x00\x00\x00\x00\x00\x0dcropRectRi\ +ghtlong\x00\x00\x00\x00\x00\x00\x00\x0bc\ +ropRectToplong\x00\x00\ +\x00\x00\x008BIM\x03\xed\x00\x00\x00\x00\x00\x10\x00\ +\x90\x00\x00\x00\x01\x00\x01\x00\x90\x00\x00\x00\x01\x00\x018\ +BIM\x04&\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00?\x80\x00\x008BIM\x03\xee\x00\ +\x00\x00\x00\x00\x0d\x0cTransparen\ +cy\x008BIM\x04\x15\x00\x00\x00\x00\x00\x1e\x00\ +\x00\x00\x0d\x00T\x00r\x00a\x00n\x00s\x00p\x00\ +a\x00r\x00e\x00n\x00c\x00y\x00\x008BI\ +M\x045\x00\x00\x00\x00\x00\x11\x00\x00\x00\x01\x00\x00\xff\ +\xff\x00\x00\x00\x00\x00\x00\x00d\x01\x008BIM\x04\ +\x1d\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008BIM\x04\ +\x0d\x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e8BIM\x04\ +\x19\x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e8BIM\x03\ +\xf3\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x01\ +\x008BIM'\x10\x00\x00\x00\x00\x00\x0a\x00\x01\x00\ +\x00\x00\x00\x00\x00\x00\x018BIM\x03\xf5\x00\x00\x00\ +\x00\x00H\x00/ff\x00\x01\x00lff\x00\x06\x00\ +\x00\x00\x00\x00\x01\x00/ff\x00\x01\x00\xa1\x99\x9a\x00\ +\x06\x00\x00\x00\x00\x00\x01\x002\x00\x00\x00\x01\x00Z\x00\ +\x00\x00\x06\x00\x00\x00\x00\x00\x01\x005\x00\x00\x00\x01\x00\ +-\x00\x00\x00\x06\x00\x00\x00\x00\x00\x018BIM\x03\ +\xf8\x00\x00\x00\x00\x00p\x00\x00\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\ +\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\ +\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\x03\xe8\x00\x008BIM\x04\x00\x00\x00\x00\ +\x00\x00\x02\x00\x008BIM\x04\x02\x00\x00\x00\x00\x00\ +\x02\x00\x008BIM\x040\x00\x00\x00\x00\x00\x01\x01\ +\x008BIM\x04-\x00\x00\x00\x00\x00\x06\x00\x01\x00\ +\x00\x00\x0a8BIM\x04\x08\x00\x00\x00\x00\x00\x10\x00\ +\x00\x00\x01\x00\x00\x02@\x00\x00\x02@\x00\x00\x00\x008\ +BIM\x04\x1e\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008\ +BIM\x04\x1a\x00\x00\x00\x00\x035\x00\x00\x00\x06\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\ +\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\ +\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00null\x00\x00\ +\x00\x02\x00\x00\x00\x06boundsObjc\ +\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Rct1\x00\x00\ +\x00\x04\x00\x00\x00\x00Top long\x00\x00\ +\x00\x00\x00\x00\x00\x00Leftlong\x00\x00\ +\x00\x00\x00\x00\x00\x00Btomlong\x00\x00\ +\x00`\x00\x00\x00\x00Rghtlong\x00\x00\ +\x00`\x00\x00\x00\x06slicesVlLs\ +\x00\x00\x00\x01Objc\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x05slice\x00\x00\x00\x12\x00\x00\x00\x07s\ +liceIDlong\x00\x00\x00\x00\x00\x00\ +\x00\x07groupIDlong\x00\x00\x00\ +\x00\x00\x00\x00\x06originenum\x00\ +\x00\x00\x0cESliceOrigin\x00\ +\x00\x00\x0dautoGenerated\ +\x00\x00\x00\x00Typeenum\x00\x00\x00\x0a\ +ESliceType\x00\x00\x00\x00Im\ +g \x00\x00\x00\x06boundsObjc\ +\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Rct1\x00\x00\ +\x00\x04\x00\x00\x00\x00Top long\x00\x00\ +\x00\x00\x00\x00\x00\x00Leftlong\x00\x00\ +\x00\x00\x00\x00\x00\x00Btomlong\x00\x00\ +\x00`\x00\x00\x00\x00Rghtlong\x00\x00\ +\x00`\x00\x00\x00\x03urlTEXT\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00nullTEXT\x00\ +\x00\x00\x01\x00\x00\x00\x00\x00\x00MsgeTEX\ +T\x00\x00\x00\x01\x00\x00\x00\x00\x00\x06altTa\ +gTEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0ec\ +ellTextIsHTMLboo\ +l\x01\x00\x00\x00\x08cellTextTE\ +XT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x09horz\ +Alignenum\x00\x00\x00\x0fESl\ +iceHorzAlign\x00\x00\x00\x07\ +default\x00\x00\x00\x09vertA\ +lignenum\x00\x00\x00\x0fESli\ +ceVertAlign\x00\x00\x00\x07d\ +efault\x00\x00\x00\x0bbgColo\ +rTypeenum\x00\x00\x00\x11ESl\ +iceBGColorType\x00\x00\ +\x00\x00None\x00\x00\x00\x09topOut\ +setlong\x00\x00\x00\x00\x00\x00\x00\x0al\ +eftOutsetlong\x00\x00\x00\ +\x00\x00\x00\x00\x0cbottomOutse\ +tlong\x00\x00\x00\x00\x00\x00\x00\x0brig\ +htOutsetlong\x00\x00\x00\x00\ +\x008BIM\x04(\x00\x00\x00\x00\x00\x0c\x00\x00\x00\ +\x02?\xf0\x00\x00\x00\x00\x00\x008BIM\x04\x14\x00\ +\x00\x00\x00\x00\x04\x00\x00\x00\x0d8BIM\x04\x0c\x00\ +\x00\x00\x00\x043\x00\x00\x00\x01\x00\x00\x000\x00\x00\x00\ +0\x00\x00\x00\x90\x00\x00\x1b\x00\x00\x00\x04\x17\x00\x18\x00\ +\x01\xff\xd8\xff\xed\x00\x0cAdobe_CM\x00\ +\x01\xff\xee\x00\x0eAdobe\x00d\x80\x00\x00\x00\ +\x01\xff\xdb\x00\x84\x00\x0c\x08\x08\x08\x09\x08\x0c\x09\x09\x0c\ +\x11\x0b\x0a\x0b\x11\x15\x0f\x0c\x0c\x0f\x15\x18\x13\x13\x15\x13\ +\x13\x18\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x01\x0d\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\ +\x10\x14\x0e\x0e\x0e\x14\x14\x0e\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\ +\x0c\x0c\x11\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\xff\xc0\x00\x11\x08\x000\x000\ +\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xdd\x00\x04\x00\x03\ +\xff\xc4\x01?\x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\ +\x00\x00\x00\x00\x00\x03\x00\x01\x02\x04\x05\x06\x07\x08\x09\x0a\ +\x0b\x01\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\ +\x00\x00\x01\x00\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x10\x00\ +\x01\x04\x01\x03\x02\x04\x02\x05\x07\x06\x08\x05\x03\x0c3\x01\ +\x00\x02\x11\x03\x04!\x121\x05AQa\x13\x22q\x81\ +2\x06\x14\x91\xa1\xb1B#$\x15R\xc1b34r\ +\x82\xd1C\x07%\x92S\xf0\xe1\xf1cs5\x16\xa2\xb2\ +\x83&D\x93TdE\xc2\xa3t6\x17\xd2U\xe2e\ +\xf2\xb3\x84\xc3\xd3u\xe3\xf3F'\x94\xa4\x85\xb4\x95\xc4\ +\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5Vfv\x86\x96\xa6\xb6\ +\xc6\xd6\xe6\xf67GWgw\x87\x97\xa7\xb7\xc7\xd7\xe7\ +\xf7\x11\x00\x02\x02\x01\x02\x04\x04\x03\x04\x05\x06\x07\x07\x06\ +\x055\x01\x00\x02\x11\x03!1\x12\x04AQaq\x22\ +\x13\x052\x81\x91\x14\xa1\xb1B#\xc1R\xd1\xf03$\ +b\xe1r\x82\x92CS\x15cs4\xf1%\x06\x16\xa2\ +\xb2\x83\x07&5\xc2\xd2D\x93T\xa3\x17dEU6\ +te\xe2\xf2\xb3\x84\xc3\xd3u\xe3\xf3F\x94\xa4\x85\xb4\ +\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5Vfv\x86\x96\ +\xa6\xb6\xc6\xd6\xe6\xf6'7GWgw\x87\x97\xa7\xb7\ +\xc7\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00?\x00\xf5\ +T\x92@\xce\xbe\xdcl+\xef\xa6\xa7d[S\x1c\xea\ +\xe9f\xae{\x80\xf6\xb0\x7fY\xc9)\x8e_Q\xe9\xf8\ +Q\xf6\xcc\x9a\xb1\xf7}\x1fU\xedd\xff\x00Wy\xf7\ +\x22\xd1\x91\x8f\x93X\xb7\x1e\xd6]S\xb8}n\x0ei\ +\xfe\xd3%\xab\x98\xe8?Uq\xf31\x7fju\xfa\x9d\ +\x95\xd4\xb3\x7fI`\xbbp\xd8\xd3\xfc\xdd~\x94\xb7g\ +\xb3\xf3\x1d\xfc\xc7\xf3?\xe0\xd0rzs~\xab\xf5\xcc\ +\x0c\xae\x98\xe73\x03\xa9\x5c\xdc\x5c\xacB\xe2[\xb9\xda\ +Wcw\xeew\xb7\xe9\xfe\xfd\x7f\xcd\xff\x005v\xc4\ +\x94\xf6)$\x92J\x7f\xff\xd0\xf5U\x9b\xd6\xfa\xf6\x17\ +E\xaa\xb7\xe4\x8b,}\xee-\xaa\x9a\x9b\xb9\xee#W\ +}\x22\xc6\xedo\xf5\x96\x92\xe5\xfe\xbd\xfe\x87\x1f\xa6\xf5\ +\x01\xa3\xb0\xf3kt\xf84\xcb\x9d\xff\x00\x9e\x98\x92\x94\ +>\xb7\xf5[\xc4\xe1t\x0c\xab\x01\xfa.\xb6k\x1f\xf9\ +\xed\xcd\xff\x00\xa6\xb3\xba\x9d\x1f\x5cz\x8d\xf4u,\x9c\ +*q\x9b\xd3w_UN\xb09\xbb\x84Y\xea=\x8c\ +s\x9fe\x8d\xf4\xfd\x9f\xcd\xad\xff\x00\xad\xcf\xeau\xf4\ +Km\xe9\xaf5\xbe\xb2\x1f{\xd8@x\xa5\xb2\xeb\x9d\ +S\x8f\xd1s\x7f\xcf\xf4\xfdOO\xf4\x89\xfe\xaa]\x99\ +\x97\xf5~\x8bs\xec\x17\xbe\xdd\xfb^L\xb8\xd7\xb9\xcd\ +\xaf\xd5#\xfc&\xcf\xa7\xff\x00\x82~\x91%6>\xaf\ +\xf5Gun\x8f\x8d\x9fcZ\xcb.i\xf5\x1a\xd9\xda\ +\x1c\xd7:\xb7\xed\xdd\xee\xda\xed\x9b\x96\x8a\xe6?\xc5\xf9\ +,\xe9\x19\x18\x8e>\xecL\xabj\x8f\x01\xedw\xfdV\ +\xf5\xd3\xa4\xa7\xff\xd1\xf5U\x87\xf5\xd3\x0d\xf9\x7fV\xf2\ +\xd9[\x0d\x9606\xc65\xa2O\xb1\xcds\xf6\xb4\x7f\ +\xc1\xef[\x89$\xa7\x92\xa3\xeb\xadY8\x8c\xa2\x9e\x97\ +\x97\xd4\x1ek\x0c\xb86\xb0kq\xdb\xb6\xc1\xfe\x13u\ +n\xfeS\x13\xe3u_\xad\x1e\x8b1\xfa_\xd5\xe6a\ +\xe3\xd66\xd6\xcbl\x0ckG\x95_\xab\xae\xb1$\x94\ +\xe0}U\xe9\x1dK\x01\xd9\xf9]G\xd3\xae\xec\xfb\xbd\ +oB\xa2KX}\xc5\xee\xdc\x7f}\xcf\xfa\x1e\xff\x00\ +\xf8\xc5\xbe\x92I)\xff\xd9\x008BIM\x04!\x00\ +\x00\x00\x00\x00a\x00\x00\x00\x01\x01\x00\x00\x00\x0f\x00A\ +\x00d\x00o\x00b\x00e\x00 \x00P\x00h\x00o\ +\x00t\x00o\x00s\x00h\x00o\x00p\x00\x00\x00\x19\ +\x00A\x00d\x00o\x00b\x00e\x00 \x00P\x00h\ +\x00o\x00t\x00o\x00s\x00h\x00o\x00p\x00 \ +\x00C\x00C\x00 \x002\x000\x001\x005\x00.\ +\x005\x00\x00\x00\x01\x00\x00\x00\x0cHLino\x02\ +\x10\x00\x00mntrRGB XYZ \x07\ +\xce\x00\x02\x00\x09\x00\x06\x001\x00\x00acspM\ +SFT\x00\x00\x00\x00IEC sRGB\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\xd6\x00\ +\x01\x00\x00\x00\x00\xd3-HP \x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11cprt\x00\ +\x00\x01P\x00\x00\x003desc\x00\x00\x01\x84\x00\ +\x00\x00lwtpt\x00\x00\x01\xf0\x00\x00\x00\x14b\ +kpt\x00\x00\x02\x04\x00\x00\x00\x14rXYZ\x00\ +\x00\x02\x18\x00\x00\x00\x14gXYZ\x00\x00\x02,\x00\ +\x00\x00\x14bXYZ\x00\x00\x02@\x00\x00\x00\x14d\ +mnd\x00\x00\x02T\x00\x00\x00pdmdd\x00\ +\x00\x02\xc4\x00\x00\x00\x88vued\x00\x00\x03L\x00\ +\x00\x00\x86view\x00\x00\x03\xd4\x00\x00\x00$l\ +umi\x00\x00\x03\xf8\x00\x00\x00\x14meas\x00\ +\x00\x04\x0c\x00\x00\x00$tech\x00\x00\x040\x00\ +\x00\x00\x0crTRC\x00\x00\x04<\x00\x00\x08\x0cg\ +TRC\x00\x00\x04<\x00\x00\x08\x0cbTRC\x00\ +\x00\x04<\x00\x00\x08\x0ctext\x00\x00\x00\x00C\ +opyright (c) 199\ +8 Hewlett-Packar\ +d Company\x00\x00desc\x00\ +\x00\x00\x00\x00\x00\x00\x12sRGB IEC6\ +1966-2.1\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x12sRGB IEC6196\ +6-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00XYZ \x00\x00\x00\x00\x00\ +\x00\xf3Q\x00\x01\x00\x00\x00\x01\x16\xccXYZ \x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00X\ +YZ \x00\x00\x00\x00\x00\x00o\xa2\x00\x008\xf5\x00\ +\x00\x03\x90XYZ \x00\x00\x00\x00\x00\x00b\x99\x00\ +\x00\xb7\x85\x00\x00\x18\xdaXYZ \x00\x00\x00\x00\x00\ +\x00$\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcfdesc\x00\ +\x00\x00\x00\x00\x00\x00\x16IEC http:\ +//www.iec.ch\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x16IEC http\ +://www.iec.ch\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00desc\x00\ +\x00\x00\x00\x00\x00\x00.IEC 61966\ +-2.1 Default RGB\ + colour space - \ +sRGB\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00.\ +IEC 61966-2.1 De\ +fault RGB colour\ + space - sRGB\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00desc\x00\x00\x00\x00\x00\x00\x00,R\ +eference Viewing\ + Condition in IE\ +C61966-2.1\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00,Reference \ +Viewing Conditio\ +n in IEC61966-2.\ +1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00view\x00\ +\x00\x00\x00\x00\x13\xa4\xfe\x00\x14_.\x00\x10\xcf\x14\x00\ +\x03\xed\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01X\ +YZ \x00\x00\x00\x00\x00L\x09V\x00P\x00\x00\x00\ +W\x1f\xe7meas\x00\x00\x00\x00\x00\x00\x00\x01\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x02\x8f\x00\x00\x00\x02sig \x00\x00\x00\x00C\ +RT curv\x00\x00\x00\x00\x00\x00\x04\x00\x00\ +\x00\x00\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\x1e\x00#\x00\ +(\x00-\x002\x007\x00;\x00@\x00E\x00J\x00\ +O\x00T\x00Y\x00^\x00c\x00h\x00m\x00r\x00\ +w\x00|\x00\x81\x00\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\ +\x9f\x00\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\ +\xc6\x00\xcb\x00\xd0\x00\xd5\x00\xdb\x00\xe0\x00\xe5\x00\xeb\x00\ +\xf0\x00\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\ +\x1f\x01%\x01+\x012\x018\x01>\x01E\x01L\x01\ +R\x01Y\x01`\x01g\x01n\x01u\x01|\x01\x83\x01\ +\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\ +\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\ +\x0c\x02\x14\x02\x1d\x02&\x02/\x028\x02A\x02K\x02\ +T\x02]\x02g\x02q\x02z\x02\x84\x02\x8e\x02\x98\x02\ +\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\ +\xf5\x03\x00\x03\x0b\x03\x16\x03!\x03-\x038\x03C\x03\ +O\x03Z\x03f\x03r\x03~\x03\x8a\x03\x96\x03\xa2\x03\ +\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\ +\x13\x04 \x04-\x04;\x04H\x04U\x04c\x04q\x04\ +~\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\ +\xf0\x04\xfe\x05\x0d\x05\x1c\x05+\x05:\x05I\x05X\x05\ +g\x05w\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\ +\xe5\x05\xf6\x06\x06\x06\x16\x06'\x067\x06H\x06Y\x06\ +j\x06{\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\ +\xf5\x07\x07\x07\x19\x07+\x07=\x07O\x07a\x07t\x07\ +\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\ +\x1f\x082\x08F\x08Z\x08n\x08\x82\x08\x96\x08\xaa\x08\ +\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09%\x09:\x09O\x09\ +d\x09y\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\ +\x11\x0a'\x0a=\x0aT\x0aj\x0a\x81\x0a\x98\x0a\xae\x0a\ +\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b9\x0bQ\x0bi\x0b\ +\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c*\x0c\ +C\x0c\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\ +\x0d\x0d&\x0d@\x0dZ\x0dt\x0d\x8e\x0d\xa9\x0d\xc3\x0d\ +\xde\x0d\xf8\x0e\x13\x0e.\x0eI\x0ed\x0e\x7f\x0e\x9b\x0e\ +\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f%\x0fA\x0f^\x0fz\x0f\ +\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10&\x10C\x10a\x10\ +~\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x111\x11O\x11\ +m\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12&\x12E\x12\ +d\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13#\x13C\x13\ +c\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14'\x14I\x14\ +j\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x154\x15V\x15\ +x\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16&\x16I\x16l\x16\ +\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17A\x17e\x17\x89\x17\ +\xae\x17\xd2\x17\xf7\x18\x1b\x18@\x18e\x18\x8a\x18\xaf\x18\ +\xd5\x18\xfa\x19 \x19E\x19k\x19\x91\x19\xb7\x19\xdd\x1a\ +\x04\x1a*\x1aQ\x1aw\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b\ +;\x1bc\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c*\x1cR\x1c\ +{\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1dG\x1dp\x1d\x99\x1d\ +\xc3\x1d\xec\x1e\x16\x1e@\x1ej\x1e\x94\x1e\xbe\x1e\xe9\x1f\ +\x13\x1f>\x1fi\x1f\x94\x1f\xbf\x1f\xea \x15 A \ +l \x98 \xc4 \xf0!\x1c!H!u!\xa1!\ +\xce!\xfb\x22'\x22U\x22\x82\x22\xaf\x22\xdd#\x0a#\ +8#f#\x94#\xc2#\xf0$\x1f$M$|$\ +\xab$\xda%\x09%8%h%\x97%\xc7%\xf7&\ +'&W&\x87&\xb7&\xe8'\x18'I'z'\ +\xab'\xdc(\x0d(?(q(\xa2(\xd4)\x06)\ +8)k)\x9d)\xd0*\x02*5*h*\x9b*\ +\xcf+\x02+6+i+\x9d+\xd1,\x05,9,\ +n,\xa2,\xd7-\x0c-A-v-\xab-\xe1.\ +\x16.L.\x82.\xb7.\xee/$/Z/\x91/\ +\xc7/\xfe050l0\xa40\xdb1\x121J1\ +\x821\xba1\xf22*2c2\x9b2\xd43\x0d3\ +F3\x7f3\xb83\xf14+4e4\x9e4\xd85\ +\x135M5\x875\xc25\xfd676r6\xae6\ +\xe97$7`7\x9c7\xd78\x148P8\x8c8\ +\xc89\x059B9\x7f9\xbc9\xf9:6:t:\ +\xb2:\xef;-;k;\xaa;\xe8<' >`>\ +\xa0>\xe0?!?a?\xa2?\xe2@#@d@\ +\xa6@\xe7A)AjA\xacA\xeeB0BrB\ +\xb5B\xf7C:C}C\xc0D\x03DGD\x8aD\ +\xceE\x12EUE\x9aE\xdeF\x22FgF\xabF\ +\xf0G5G{G\xc0H\x05HKH\x91H\xd7I\ +\x1dIcI\xa9I\xf0J7J}J\xc4K\x0cK\ +SK\x9aK\xe2L*LrL\xbaM\x02MJM\ +\x93M\xdcN%NnN\xb7O\x00OIO\x93O\ +\xddP'PqP\xbbQ\x06QPQ\x9bQ\xe6R\ +1R|R\xc7S\x13S_S\xaaS\xf6TBT\ +\x8fT\xdbU(UuU\xc2V\x0fV\x5cV\xa9V\ +\xf7WDW\x92W\xe0X/X}X\xcbY\x1aY\ +iY\xb8Z\x07ZVZ\xa6Z\xf5[E[\x95[\ +\xe5\x5c5\x5c\x86\x5c\xd6]']x]\xc9^\x1a^\ +l^\xbd_\x0f_a_\xb3`\x05`W`\xaa`\ +\xfcaOa\xa2a\xf5bIb\x9cb\xf0cCc\ +\x97c\xebd@d\x94d\xe9e=e\x92e\xe7f\ +=f\x92f\xe8g=g\x93g\xe9h?h\x96h\ +\xeciCi\x9ai\xf1jHj\x9fj\xf7kOk\ +\xa7k\xfflWl\xafm\x08m`m\xb9n\x12n\ +kn\xc4o\x1eoxo\xd1p+p\x86p\xe0q\ +:q\x95q\xf0rKr\xa6s\x01s]s\xb8t\ +\x14tpt\xccu(u\x85u\xe1v>v\x9bv\ +\xf8wVw\xb3x\x11xnx\xccy*y\x89y\ +\xe7zFz\xa5{\x04{c{\xc2|!|\x81|\ +\xe1}A}\xa1~\x01~b~\xc2\x7f#\x7f\x84\x7f\ +\xe5\x80G\x80\xa8\x81\x0a\x81k\x81\xcd\x820\x82\x92\x82\ +\xf4\x83W\x83\xba\x84\x1d\x84\x80\x84\xe3\x85G\x85\xab\x86\ +\x0e\x86r\x86\xd7\x87;\x87\x9f\x88\x04\x88i\x88\xce\x89\ +3\x89\x99\x89\xfe\x8ad\x8a\xca\x8b0\x8b\x96\x8b\xfc\x8c\ +c\x8c\xca\x8d1\x8d\x98\x8d\xff\x8ef\x8e\xce\x8f6\x8f\ +\x9e\x90\x06\x90n\x90\xd6\x91?\x91\xa8\x92\x11\x92z\x92\ +\xe3\x93M\x93\xb6\x94 \x94\x8a\x94\xf4\x95_\x95\xc9\x96\ +4\x96\x9f\x97\x0a\x97u\x97\xe0\x98L\x98\xb8\x99$\x99\ +\x90\x99\xfc\x9ah\x9a\xd5\x9bB\x9b\xaf\x9c\x1c\x9c\x89\x9c\ +\xf7\x9dd\x9d\xd2\x9e@\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0\ +i\xa0\xd8\xa1G\xa1\xb6\xa2&\xa2\x96\xa3\x06\xa3v\xa3\ +\xe6\xa4V\xa4\xc7\xa58\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7\ +n\xa7\xe0\xa8R\xa8\xc4\xa97\xa9\xa9\xaa\x1c\xaa\x8f\xab\ +\x02\xabu\xab\xe9\xac\x5c\xac\xd0\xadD\xad\xb8\xae-\xae\ +\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0u\xb0\xea\xb1`\xb1\xd6\xb2\ +K\xb2\xc2\xb38\xb3\xae\xb4%\xb4\x9c\xb5\x13\xb5\x8a\xb6\ +\x01\xb6y\xb6\xf0\xb7h\xb7\xe0\xb8Y\xb8\xd1\xb9J\xb9\ +\xc2\xba;\xba\xb5\xbb.\xbb\xa7\xbc!\xbc\x9b\xbd\x15\xbd\ +\x8f\xbe\x0a\xbe\x84\xbe\xff\xbfz\xbf\xf5\xc0p\xc0\xec\xc1\ +g\xc1\xe3\xc2_\xc2\xdb\xc3X\xc3\xd4\xc4Q\xc4\xce\xc5\ +K\xc5\xc8\xc6F\xc6\xc3\xc7A\xc7\xbf\xc8=\xc8\xbc\xc9\ +:\xc9\xb9\xca8\xca\xb7\xcb6\xcb\xb6\xcc5\xcc\xb5\xcd\ +5\xcd\xb5\xce6\xce\xb6\xcf7\xcf\xb8\xd09\xd0\xba\xd1\ +<\xd1\xbe\xd2?\xd2\xc1\xd3D\xd3\xc6\xd4I\xd4\xcb\xd5\ +N\xd5\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\xe0\xd8d\xd8\xe8\xd9\ +l\xd9\xf1\xdav\xda\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\ +\x96\xde\x1c\xde\xa2\xdf)\xdf\xaf\xe06\xe0\xbd\xe1D\xe1\ +\xcc\xe2S\xe2\xdb\xe3c\xe3\xeb\xe4s\xe4\xfc\xe5\x84\xe6\ +\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe82\xe8\xbc\xe9F\xe9\xd0\xea\ +[\xea\xe5\xebp\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee(\xee\ +\xb4\xef@\xef\xcc\xf0X\xf0\xe5\xf1r\xf1\xff\xf2\x8c\xf3\ +\x19\xf3\xa7\xf44\xf4\xc2\xf5P\xf5\xde\xf6m\xf6\xfb\xf7\ +\x8a\xf8\x19\xf8\xa8\xf98\xf9\xc7\xfaW\xfa\xe7\xfbw\xfc\ +\x07\xfc\x98\xfd)\xfd\xba\xfeK\xfe\xdc\xffm\xff\xff\x80\ +\x00 P8$\x16\x0d\x07\x84BaP\xb8d6\x1d\ +\x0f\x88DbQ8\xa4V-\x17\x8cFcQ\xb8\xe4\ +v=\x1f\x90HdR9$\x96M'\x94JeR\ +\xb9d\xb6]/\x98LfS9\xa4\xd6m7\x9cN\ +gS\xb9\xe4\xf6}?\xa0PhT:%\x16\x8dG\ +\xa4RiT\xbae6\x9dO\xa8TjU:\xa5V\ +\xadW\xacVkU\xba\xe5v\xbd_\xb0XlV;\ +%\x96\x10\x01\x07ZDA\x1b`\xac\x1bo\x0f\x81\xae\ +A\x10\x0d\xd4\x02\xf9\xbc<\x1eW\xb6\xe3\xc6\xfc\xda\xbf\ +<[vl&\x166\x0a\xc4\x06\x84x\xb2\xb6,F\ +Y\xb6\x04E@\x5c\xa02(\xfc\xcc=\xdd\x99\xb6c\ +\x83<\xb2n\xe8U\x0f]#\x93\x0d\xa7\xc3\x04\xf5C\ +\x01n\xb4\xde\x1e\xd8\x12\xc1\x1b0\xac\xb1\xf1\xb7v7\ +\xf7J\xe6\xce\xf5:\xea\xe02\xb5\x1c:\xc8\xbf\x8cu\ +\x19\xf2O\xe0N`.x\xfd\xe8>\x18\xbd3cc\ +\xac\x9d\xe2vi ~\xe0K\x923?\x8b\x10*b\x1eA\x04\xa8U\x05\x8dH\ +\xc1\xdd\x07\x9aN\x01\xd4e\x9c\xf0\xa9\x82\xd2\x1e\xa7)\ +\xfd\x0d\x9f,\xa0\x0a\xb7\xad\xe1\x105\x11\x88\x00\x94L\ +\x16\x02\x11HP\x81\x80(\xc1\xad\x17\x93\x064d6\ +\xc3g\xf1\xf9\x03G\x09(]\x1d\x8eA\xc4|F\xa2\ +\x90\x91\x94fH\x83\xe1\xcb#\x97\xb0\x11\xff\x02\x22\xe0\ +\x14\x9c\x02\x832\x88|\x18\xca\x83\xe4F\x0d\x08\x08\xc1\ +\xa1-\x90\xe6T\xbc=G3\x0a;\x13\x02Ah\xa1\ +3\x99\x0e`\x08\x05\x22\x06\xdc\xdcR\x18s\x88\xcc\xcc\ +\x1f\x87\xbaP\xbb\x00MhZ8\x86\xf3\xe9\x12\xbb\x00\ +h\x82\xf0|\x9d\xe5U\x0c\x14=\x87\xb9\xd51Q\x88\ +\xa8\x93G\x96\xc0\xed$$\xa2\x0d\x09\xbaT\x97\xf4\xc8\ +\xbd\x1a\x9fI\xa07O\x88b\x0dDR1\x00P0\ +\x88\x1bUIB`U\x83\x05\x1bW\xa1\xa0]d\x0d\ +\x8a\xf5\xa9\xb359\xc8\x5c0r\x15\xb5\xe8`\xdb\x9f\ +\x07jx\x0b\xd8\x81\xd0\x9bc\x98\x12p\x04\x02\xa1\x94\ +\xe1Wg\x85\x8c\x0b\x07XZ\x88 ik\x90A\x95\ +\xb4>\xa2\x13\x89\x864\x1a\xf7\x092\xa2\x077)\x1f\ +=\x0e\x08\x84\xb6h\x11\x12\xf1\x94<\xda\xb5\x83\xb8\x03\ +\x82U\xa8\xael6`Cj\x85\xd1'QQ\x7f\x84\ +\x87\xde\x04y\xa8\x80\x1e\x0c\x04\x0axI\xa1\x14\x82\x01\ +:\x18y\xe2\x07\x05\x9eU\x85s\xa1\xedx\xcc/\x10\ +X7\x07X\xe9\x22\x887F\xf9\x5c]\xe4\x82\x9a\x99\ +\x8d\x0d\xf8\xe8tH!\x92Q\xfcWf\x01\x99\xdb\x99\ +\x9a\x18\xc3\xe0\xf9\x01\xe2\xb6tkT\xa0\xd2\x1e\x7f\x96\ +Z\x08zth\x86*\x98\x04\xe9\x00\xbet+\x1a\xf7\ +\x98\x22\x86\x17\x9a\x88\xaaoj\x85fl\xf7\xe1\x81D\ +\xce(\x18\xef\x90 \x86h\x87A\x86Y\xec\x82\x06\x5c\ +\xa8\x0a;I\x96\x0a\xed\x81\xa2\x18an\x03#\xcc\xec\ +j\xef\x80\x03Y\x01`\xd6\xd8\x0a\x86\xb7D\xa2\x0c\x87\ +\xe8#\xfe[\x89G\x1f\x0c[\xaa\x827\x14X\x04\x1c\ +h\x9e\x86FF0\xdcjr\x84\x9e\xebx\xd3\xe0\xd8\ +\x87\xcc\x88\x86o<@:\x07\xe9\xf2\xaaQ\xe2M#\ +I\xf2\x11\x97'\xca\xf2\xfdj\xb35\x018H\xa6h\ +\x81\xfd\xa8J\x86\x18=\xc8\xc6\xde\x9b$\xf7]\xdf\xaa\ +\xaf\xc0,\x1ckf4X\x86\x17^H\xa4\xcf\x1c\x05\ +\x7f\x81\xe7\xaa!\xf7\xa4M\x85\x1e\xa8\xc9\x96\xc0G\xe9\ +_\xed\x86\xcc\xd9\xd8gz\x1f\x0a\x92\xc8\x85B\x97\xcc\ +g`\xc0\x18\x0e\x86\x1d\xffi\xad^\x95\xa1\x8d9\xf1\ +~\x8a-\xca\x1c\x91\xd3\xd0\xe2\x88s\xc6i\x02\xffD\ +\x03\xf5\x80E\x05\xf4\x80v\x966\x11\x00 !\x83\xda\ +\x06\x0ef`+\x81\xa4\x0c\x1e\xc3\x9e\x01\xc1Rz\x95\ +\xc2\x10L\x83B\xf1\xe3\x90\xb1\xf5\x07\xc7\x84!\x1e\x03\ +e<\x0fHL8\xc7\x0c)\x16*\xa4m\x0a(-\ +\x0b\xc8\xaa\x1e\x01\x8d \x04\x81d@\x08KH\x0e\x04\ +\x802\x1e\x01\xd8h\x06\x1b\xf8>v\xa0=\xdb\x923\ +\xf89\x05\xd3\x91\x0d\xf0\x88lC\x07\x5c\x87\x80kx\ +\x03p&!\x82f\x18\x0ab\x18$\x87 \x8e\x1a\x01\ +epO\x10x\xee\x1aB\xc22\x03\x96-\x13\x8a\xe2\ +x\x86L\xe1\xbcC\xe6\x90\x05\xa2\xec?\x87\x800\x0e\ +\xb0\xc0O\x1bU(\x19\x80\xa5a\xe4\x8b\xa7\x96g\x9e\ +th(\xcb(\x02\xb7\xb0i\x0eA!\x91\x05q\xda\ +\x1c\x82%\xe6\x04\x95\xc3NQ\x90\xb0P*\xc1\x80\x18\ +d\x11>k\xc0\xaeN\x06\xb0E'\xc2\xa9\xaa\x02`\ +\xbd\x1c#Q\xf6\xc5\x96\x00\xeci\xd2<\x86!Q\xce\ +0\x9b \xb3p2d\x9cH\x80\x8f-\xc5\x84\x8a,\ +\x08\xd4~,\x01\xd5\x09\x87\xa0\xe2\x89\x90\x88\xc0\x17\xe1\ +\xb2\x86\x074\x1f\x1fC\xc6e\x0e\xf5\x06<\x10@<\ +\x12\xa0\x9ej\x06\x22\x190\x07\x18\xac\x9b@\xb6e\x0f\ +\x19hL$ N\x9cC\x0d\xe1\x03r\x98\xe8G\xc2\ +\x89\x1dl@y\x8d\xe3\x027!\x10\xd6\x89\x93\xb0p\ +\xcc\x01\xc4\xc0\x87\xdb\x04#i\xf4\x1b\x88\xa3\x8c\x0b\xc3\ +\xa9\x0ct#\xe6m\x0a\xc0\x5c`F\xd4\xdf%\xe0\x9a\ +\x86\x06\x00\x81C\xc4\xf90e\xca\x0cv\xcd\x8a\x10\xb4\ +\xa0\x90\xe8Pc\xb9`N\xb6\x22\xa2GL\xf8\x1e\x84\ +\xd2N\x02\xb0\xd6\x0e\xe9@\x94\x22\x02\xe2\x96\x04\xb1\xc5\ +K\xc5\xb5\x0a%\xce(#\x0a\xf7\x1a\x08\x02\x81\x18\x97\ +\x94vv\x0e\x02\xf6<\x86\xeb\xed\x1d\xe3QiS\xf1\ +\xbb=\x94\x18\xef*\x8ep%\xd4\xd1vD\x06=Q\ +\x0e#N\xaa2\xcadK\x168M\x181\x04\x86Q\ +\xd1\xa5W\xc4ta\x1aS\xd1]\xcd\xd3\x87\x16\xc2\xad\ +i\x1a\xb1\xec\x85\xa2\xf1\xac&\x06%q\x0d5\x5c\x96\ +P\xf0\x80(h`&\x0b\xd0.\x06\x8aZ\xfc\x07\x92\ +P\xfdQ\x8f\xa4\x044\xb1\xaf\x02H`\xe6\xb1B\xfc\ +ZX\xd0\x85]\x09X0\xb2A\xe4\x1bYQ\x0c\xf6\ +\x07\xf8\xfd~\x00\xca\xb1-J\xb20\x1b\xfc\xb3!T\ +\xfcoPP[\x19\xec\x81%\x03\xf6\xac&\xcbp\x8e\ +,\x88\x83Q\x17\x8dM\xaa\x93KBc\x82\xb47\x95\ +-\x84b&\xe1\xb6)S\xa0\xf5%\x93DK \xb0\ +U\x5c\xc8\x5c\xe8\xa0\xa0\xbe\x84Z\x92J\x99\x01s\xb2\ +\x19\xe9\xe0\x86.\xe0\xf0\xba\xc4I,\xb0\x8f\xdcG\x82\ +\x9b\xbc\x19\xae\xa1\x0b\x1d7\x8cc)\x91~\x17\xaa1\ +(G`\xb9\x1e\xa3\xf2 -o\x80DH\xe3\x94^\ +\xdc\xe2H\xd7\x97\xb0\xd8\x86\x80\x5c\x86[\xe1Gy\xab\ +\xd9*\x004\xd0WSzrE\xe7\xb4}\x0a\x0fx\ +g\x92E$\x07BC\xa5q\x04>\xb8\x8c@\xd5[\ +\x84\xbd\xf6$\xed\xa4(\xb6\xb6\xdaC\x10\x90\xc8\x8c\x82\ +\xc0\x1c\x92\x8bCg\xc9\x03\x86\x1cb\xe1\xc1\xa9BG\ +\x1d\x82\xa61\x1ar\x10\x86.\xb5\xda\x97\x97\x86\x1a$\ +\xa1\x0f\x1e\x0as\x1c\x16\x08b\xbbP\xc2\xa8\x15O\x89\ +\xf4H\xab\xb0\xa0\xaf!|\x90A!\xce\xbf\xc5@%\ +\xb8$\x82\x19@x\xa4C\x1d\xe0\x9ew#\x041\xe3\ +\xa2J\xb6\x81\x90|Z\xe0\xd0A\x90\xc6-\x90\xc1T\ +\xc0\x1c$\x93\x0ea\xe0*\xdb\x88\xfc\xe8b`\xae\xd2\ +\x12I\xc4\x13\x86\x18\x18\xcf@\xf0\x86R\xf1\xc4-)\ +`\xb8\x09\xb9x\x92\x18\xe0\xaf\x8f\x02\x18\xa8\xb3\x16i\ +^\xd9\xc4 I,\xfd\xa1$\x14\x8b9\xcfbI\x92\ +rY\x0c\x1dzlf=\xb1^\x0d\x88\x18\xff\xd0\x84\ +~Q\x03\x07\xcc\x14\x86m\xe1!V4Z\x04+\x14\ +9\x85\xf9$\xcckem\x92\x0a\x8d\x90\xc1L\xa6$\ +\x97\xac:#\xe0p\x22\xc8e b`\xb2T\xea2\ +<\xbe@\xa2\xf6\x1bRH\x85\xc9`\xbf\x0b!q#\ +\x91\x0d,j\xac\xa0\x0cG\x1c\xa0\xd4\x12.Et\x92\ +{V\x07\xc2u\xae\x16+5\x0d\x8f\xc8\x1f\xa3\x87p\ +\xd3\xd8\xc4u@\x1cH#\x82\xc4\ +i\xcd\x07\x02(\x8a\xef\x08Y@\x08!\x83\xd2\x19`\ +\xf6\x19\xf0\xc4\xb2\xe2nP\x0b\xf6\xfbH\xb6\x91H\xb6\ +k(\xf2\x8a\x07`&\x0e\xc8\x11\x8e\xc2\x19\x0a\x03\x0b\ +\x02&g\x05\xec\x1b+\xf6\xf5g*r#\xc8#e\ +\x00M@\x15\x08\xe8\xe6\x03\xe8\xaa\x8a\xa7\xc8\x81/\xb4\ +k\xc2\x90\x99A\xe0\xb3i\xd8\x1b\xf0\xec\x22\xc0\x02x\ +\xa7\x84?B\x16\xf4a\xb8\x14\xcf@\x17\xc0\xb6 \x8b\ +\xf6\x8f0\x9cEH\xb2D\x00E\x0aF\x9ck\xc8d\ ++\x8a@\x171\x5c\x0a\x0cC\x12b4\x08Qh\x14\ +\xa0I\x16\xe0\xb4\x9a\xe8L\x1c.\xde\x18\xe8\xab\x10\xa6\ +\x9c\xd5C\x88\x99A\xe4\x95\xc1\x80H\x81\x98\x0f\xe6f\ +\x1d\xa6k\x16B8\xb2@`\x0f\x0e8\x10\xe9J\xdc\ +\xa9|\x9e\xc9\x88\xa7\xe1\xb6X\x01\xda\xa3\xa9R\xa8\xc9\ +\xb1\x19\xc2H\xebn\xba\x9cN\xbe+i\xd1\x1b\xe2\xf6\ +\x9d\xc2\xfc\x1bi\x86\x84!\xac\x9e\x89\xec\xc8\xd1\xc4'\ +\xe7`\xb5\xc1ds\x82v\x1f\xe9R\x9b\x040\x1c\xaa\ +(\x9dQ\xfe0!\xb2\x9d\xeaA\x1e\x91\xea+0\xa4\ +\xae\xc1D\xa6\xe7\x1e#jv7\x11\x22\x9d\x81\xbc\x8c\ +!\xaa\x9ef \x1b\xec\xd4\xa92\x12Z\xa4\xf0\xeam\ +\xbe\x09\xa9\x1e\x97\x91\x1c\xa2\xe2\xfc\x1b\x8a\x85\x1e& \ +\x1b\xd1\xfe\xf2\xf2;%\xf2a&2e&ri&\ +\xb2m&\xf2q'2u'ry'\xb2}'\xf2\ +\x81(2\x85(r\x89(\xb2\x8d(\xf2\x91)2\x95\ +)r\x98(\x22\x02\x00\x03\x00\x01\xa0\x03\x00\x01\x00\x00\ +\x00\x01\x00\x00\x00\x02\xa0\x04\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x03\xa0\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\ +\x00\x00\x02\x93\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a Artboard\x0a \ +Created with Ske\ +tch.\x0a \ +\x0a \x0a <\ +circle id=\x22Oval-\ +3\x22 cx=\x223.0315222\ +4\x22 cy=\x222.9313699\ +9\x22 r=\x222.5\x22>\x0a \x0a \x0a\x0a\ +\x00\x00\x02\x9b\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a Icons / Sys\ +tem / Carat / Wh\ +ite / Default\x0a \ +Created with Ske\ +tch.\x0a \ +\ +\x0a <\ +/polygon>\x0a \x0a\x0a\ +\x00\x00\x05\x14\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / slice / s\ +tandard copy 2\x0a Created with Sk\ +etch.\x0a \ + \x0a \ + \x0a \x0a \ + \ +\x0a \ + \x0a \x0a \x0a\x0a\ +\x00\x00\x03(\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / layer / d\ +efault\x0a \ + Created\ + with Sketch.\x0a \x0a \x0a <\ +rect id=\x22Rectang\ +le\x22 x=\x220\x22 y=\x226\x22 \ +width=\x2212\x22 heigh\ +t=\x228\x22 rx=\x221\x22>\x0a \ + \x0a\ + \x0a \ + \x0a \x0a\ +\x0a\ +\x00\x00\x04\x96\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / entity / \ +Not active - Def\ +ault\x0a \ + Created w\ +ith Sketch.\x0a \x0a \ +\x0a \x0a \x0a\x0a\ +\x00\x00\x09\x85\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a Artboard\x0a \ +Created with Ske\ +tch.\x0a \ +\ +\x0a \x0a \ + \x0a \ + \ +\x0a \ + \x0a \ + \ +\x0a \ + \x0a <\ +/g>\x0a \x0a\x0a\ +\x00\x00\x05\x15\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / slice / \ +Editor only - Sa\ +ved\x0a \ +Created wi\ +th Sketch.\x0a \x0a \x0a \ + \x0a \x0a\x0a\ +\x00\x00\x02\x93\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a Artboard\x0a \ +Created with Ske\ +tch.\x0a \ +\x0a \x0a <\ +circle id=\x22Oval-\ +3\x22 cx=\x223.0315222\ +4\x22 cy=\x222.9313699\ +9\x22 r=\x222.5\x22>\x0a \x0a \x0a\x0a\ +\x00\x00\x05\x19\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / slice / \ +Editor only - Up\ +dated\x0a \ + Created \ +with Sketch.\x0a \x0a \x0a \ +\x0a \ +\x0a\x0a\ +\x00\x00\x05\xfa\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / lock / on\ +\x0a Created with \ +Sketch.\x0a \ + \x0a \ +\x0a \ + \x0a \ + \x0a \ + \ +\x0a \ + \x0a \ + \x0a \ + \x0a \x0a\x0a\ +\x00\x00\x15\xa4\ +I\ +I*\x00B\x08\x00\x00\x80?\xe0@\x08$\x16\x0d\x07\ +\x84BaP\xb8d6\x1d\x0f\x88DbQ8\xa4V\ +-\x17\x8cFcQ\xb8\xe4v\x0b\x02\x7f\xc7\xa4R9\ +$\x96M'\x94JeR\xb8\xa4\x82Y/\x98Lf\ +S9\xa4\xd6a.\x9bNgS\xb9\xe4\xf6}#\x9c\ +O\xe8T:%\x16\x8d/\xa0\xd1\xe9T\xbae6\x9d\ +\x1f\x81\xd3\xeaU:\xa5V\x91Q\xabVkU\xba\xe4\ +B\x93]\xb0XlU*\xfd\x8e\xcdg\xb4N\xec\xb6\ +\x9be\xb6\xdd&\xb5\xdb\xeeW;\xa4J\xe3u\xbc^\ +o7{\xd5\xf6\xfdi\xbe_\xf0X:\xde\x07\x09\x87\ +\xc4Sp\xd8\x9cf6\x7f\x8b\xc7drS<\x86O\ +-\x97\x93\xe5s\x19\xbc\xe4k5\x9d\xd0hk\xd5\x8d\ +\x16\x97M-\xd2Q\x00:\xbb\xf1\xaf\x5c\x1a}\xecG\ +pQ\x94\x14c\x05\x0e\xc1B;\xa8K\xbe\x0a\xf0\x82\ +\xb8\xf5`\x16|\x15\x9c\x04\xe41\x12\xbc\xb75\xf7?\ +\x94\xd4\xd0\xf8v\xc3?T7 .AJ\x10Q\xbc\ +\x14\x036\x90\xc1\x19pUx\x0f\xcc\xa5K\xfa\x5cx\ +\x0e\x8d\x0b\x9f2\xe9\xd7M\x1f1\xc4\x80\xe1 )\xc1\ +@\x95g\xe7\x93\xcc\x01\x92\x0fI.c+\xafzc\ +\x03&\x0f\x8a\xa44\xc1\x80\xe9\xfb\x07\x91\xa8(\xaa\xbd\ +\x15\xa8(\xe4MC\x07\x12\xa7\x04*\xef\x0a\x8d\x05(\ +\xa3\xfcD\x03\x1d\x11(\xe6\x90\x0fh(\x16\xc4\x1e\xc8\ +)\x0a\x03\xc6\x04i'\x19\x9f*<8\x96F\xe9\x5c\ +@\x9f\x0c\xd1\xe8\x8c\x82\x92h(L\xd1\x1bh(\xdd\ +\x0c\x13E\xc2\x87\x1c\xa5RbS\x1d\xa6q\x10\xfe\x01\ +D\xa7A\x06\x90\x0fM:\x1eD\x032\xe8\xf6@\xcc\ +\x07\xf2s'%\x13\x22O(%\x83|\xd4\x08\x1e\xf3\ +iL\x82\x892\xd2&\xe1\x97\x00D\xec,\x923\xcb\ +\x80\x99L\xcb\x83\xda\x9f\xcd\x09;\xaa3\x85I\x01`\ +\x82\x84\xb3\x92:n9\x00 \xa0KR\x06\xac:\xa5\ +O\xa9-\x02\x91G\xa30\x86\xf2 \xa0m\x14\x93\x9e\ +\x8f\xf8\xa3\x01\x17\x89M*\x92T\xe9\x1d.\x8dPb\ +*@X\xa0\xa0M>\x98\x1f\x0e\x18\x9cL\xd7\x05\xda\ +KT\xa4U\xe2=U\xa2\xb4\xcc~\x82V\x08 \x10\ +\xa99\xa8!X\x82\x96\xef\xf9\xc2\x06Z\x07!\xebi\ +\x9f\xee\x1b`\xd8\x97\xa8(8\xae\x1f\x08(\x9f$\x17\ +H\xf5|\x8e\xdch\xe5\x80\x88>c@\x8e\x7f]\x94\ +=\x8c\xa6\x1c\x00\x15\xe4:\x02\xf7\xa9_0\x103\x15\ +\x83\x1e\x9b\x88(F\xb1\x1f\x17\x90\x04(\x13\x18)r\ +\xcfO\xe9\xf5\xca\x8d\xdc\xe8\x5c\x184\x86\xb0y\xfa`\ +\xd6*a\x18\x05\xe3\x03\xf1\x1f\x8d\x9e\xe8\xf53~\xa0\ +\x97\xfa\xcf\x16\xa0\x81\xfc\x90f\x22\xd8^\x11\x0f(\xb8\ +j\x0dL\x83\xc8)\x92\x82\x83\x0a5\xf4\x00\x0d\x92A\ +.\x94\xe3\xf7\xf2\xdcs\xbf\xe1\xbc\x04\xf5\xa29R3\ +\xa3#\x18h\xdb\xa5\x81\xc7\xce\x9cb\xa0\xa1b\x8e\xe1\ +\x8c\x95\xc12N\xa5\xf9\xeeB\xba\x1a@~\xbc\x1e\x11\ +{\x09\xe6\x87i\x08\xbe\xca\x8bR\xe9\x00\x03A\x96h\ +(\x96\xa6\x14\x12@\xc2\x99\xeb@\x06D\xbc\x16Z\xb0\ +\xa0\xe1\xe5\x886\xce\x8a\xef\xe8\xa5/L\x8f\x88)\x07\ +xc\x00XU\x8d\x91\xf8\xeae\xba\xee\xeb\xc3\x86;\ +\xea\xc4R\x15\xc0\xa2|\xc2%\x1d\xdd!\xed\xd8\x7f\x17\ +\xe8(\x06\xa6\x0c\xb2A8\x9c\xf2\x0c\x13\xfa\x82\x07\x92\ +Ff\xa8o\xb2^\x12\x9e\xbazX\xdb\xa6\xe9\xc6\x92\ +\x0a\x0f\xa9\x87\x0d\x11$\x1f}E\xf9\x9f0\xf2*\x08\ +\x18I\x07\xb75\xa2\xf6i\xe3\xa7A\x91\xa9\x00\xe4\xa6\ +\xb8dN\xac<'\xbdK\x10\xe1\x90:\xb1\x01\xe5\xb4\ +}\x8a\x848|\x93d\xdb\xa2\x00\x00b\x9a\xff\x88\x10\ +\x16(\x9e{La\xdfF\x83\xceY*zF\xdej\ +wt\x8e\xc9\x01\x12T\x9cp\x00\x01\xef\x01\xec\xbc6\ +\xb6c\x8e\x18r`\xa2`G\xbf\x97\xc4O\xd4\x18\xb5\ + \xa1(\xa9\x0d\xd4\x90\x09\x0a\x1b\x0f\x04D\x80\x02\x92\ +\x97>\xdbH\x22\x89)\x87\x0cY\xc0\xb0\x9d\x03\x8aR\ +\x83\x1b)\x08\xa9\x0cT\x90\x0f\x0c\x1a\x99t$\x10 \ +\x15!\xb0\xd5\x81L((\xea\x0d\x92\x00\x05dS\xc5\ +\xa2H\x09\xb0\xc5\x1e\x8a\xf3\xb4T\x87\xb3VEe\x19\ +\xf0\x10\xf5\x067\xc8( *C\x19$\x1b3\x04\xa6\ +F\x11\x05\x07\xa5Ho5g\x22\xec\xa0y>Pj\ +\xe8\x82\x04H\xb8\x92\x22\xf9zS#iD\x15!r\ +\xd5\x82D:(\xcb\xa4D\x12\x00\xeeT\x87\xc2]\x03\ + =|\x0f\xa2\xea\xa6`\xe9\x04O`\x00\x05=C\ +V! X}\x8eE\x14\xd7\x06\xb0>?$\x80\xdd\ +tE5\x81\x048\x16/\x8b\xaa\x83\x08\x04\x82\x19\x94\ +\xe1\xf4\x01e\x00!\x12\x92\x8dd\x94X\x9aC\x8e\x9a\ +\x99\x15$\x14+\x15\x22\x00\x8cM@\xce\xa0\x084\x1e\ +\x11\x09\x85B\xe1\x90\xd8t>!\x11\x00\x19\xa2\x88\x98\ +9\xda%\x19\x8dF\xe1)\xe8\x1ah\xc6\xff\x91G$\ +\x92XD\x89\xff&\x95G\x002\xd0\x01\xa6`\x22~\ +\xcc\xda\x10pl\xaeq\x1aq\x86g\x82D\x0c\xfd\xf5\ +9\xa1P\xe1G\xfa0\x19\xcfInA\xc3\xb4Jt\ +)\xdf-\x00\x8bS5W,\xa2\x9fY\xacVi\xd5\ +(I\x9e\xc0^\x94(k\x96X1\xa6>\x98\xb3Z\ +\xe31C1\xa2\x0e\x97\xb6Q*Ez\xaaeU'\ +\x91\xdc\xe5u\xbb\xe4\x9a\xbd\x0c\xb7'\xe0\xe6\x0b\xfc\xe1\ +\xc4\x0d\xc5\x0a\x91\xb8\xd7\xae\x1e\xd8j\xc9\x03\x1f\x99V\ +\xb53!$\xa9&\xae\xe6xe\xfb3\x1a\xd0hb\ +X\x18]\x18\xfe\x08\xa4\xb9\xd8\xd0q\x8e\x92H\xa5\x8f\ +\x976\x15\x9br\x9a\x0eY\xda\xe9e\xac\xc06\xfcx\ +\x93\xe1>s\xf7\xbd\xdcCG\xc7\x86i\xa1\xc6\xdep\ +q\xf3\xd1d\xc1\xc3\x5c\xa8}H\xd7wKu\xa3\x96\ +\xe3l\x1d%\xdc\x889*C\x8b\xbb\x97\x91\xc6\xf1B\ +\xb9>\xb872#\x925\x0c2\xaf\xc6\x1c\x1c\x19\xee\ +\x84\xca`\xc7H\xf9\x1c\xfd!+r\x0a\x83\x22\xcf|\ +\x02\x83\x9e`\x1c\x16\x1e\x12\xf0q\xa4\xd1=PC\xda\ +\xf7>\x08\xd0\xd1\x0c\x09'\xf46Y \xe0$\x10\x85\ +\x12\xe0|F;\x91q1\xe6\xd29\xc3h\x1c}E\ +\xa4ZP3D\x08I\xf8\x01F\xa2a1\x1c\x17)\ +,(\xf5\xc7\x8f\x14,\x92-\xcd\xa2\x0cP \xe0\x1c\ +d\x84\x1d\x088\xf0\x83\x94\xc8\xf9\xf6\xa25\x0aB\x92\ +-\xa0\xe4:\x0e\x0b\xc9\x089\xfa\xc2\xa3\xe5\x22q\x1f\ +;\x93\x0b\xad %P\xc0\xd0,Cg\xf1G\x0fK\ +HQ\xe0\x83\x96\x089q\x1a\x80G\x08\x0b<\x1c\x88\ +A\xf7>\x03\x93P>\x83\x89\x088\xa0\x83\x82\x13r\ +\x12~\xce\xa2\xe4pL\x15\x0a$\xc6\xe5R\x0e<\xca\ +\x9c\xac\x038\xa8\x947\x080\x0bC\xd3\xac9\xf8\xa9\ +\x0b+\xb9X\xaeRM\xddL\xda\xd2\x8a\x22\xddB \ +\xc5:\x0e\x04S\xd5\x92\x88|7(\xfc\xe4\xb5\xd5\x0d\ +\x85t\xd2UJ\xca`4\x86i\x99\xfaW \xe0\xf5\ +gd#G\x12\x0e)\xa3\xe6c\x0f^46\x8b3\ +_,\xcbp(\xa9\x15\x09@\x87d\xdb\xa8A~\x03\ +\xdc\x22\xbb\x84I\x9dm%\xa6\xc8]\x0c=\xaa\xb9\x95\ +Wp\x06^^$B\x0e:[\xd2\xd2\xa4G\x08w\ +\xd0\xec+_\xb2\xe5O\x09@7R\xffv4\x93<\ +5\x0d\x92(8K{7f\xe2\xa47\xae\xe5\xb6\x05\ +\x80\xbfX\x1a\xf9\x82\xb7r\x93V9 \xe3\xdb\xf1\x86\ +\xa9\xecz\x0cC\x5c 9\x1br8\x91\x96.\xb9\xe5\ +\x8bf2\xf7R\xc0\xdaPE \xe2\xd6B\x93\x15\x19\ +0\xebrOU\x9e]\x5c\xe2\xb0\xaa]\x9c\x22h\xa0\ +d\x83\x8d\xc88\xb0\x83\x80\xf6\xf6T\x00\x15PX\x06\ +H\xc1\xc4\xb9\x9b\xa2\xe8\x0b6\xb4\xb2\xe6\x16LT\x0a\ +\xc5\xa7\xd0\xafA\xa5\x01\xfc\xda\xda\x9f\x889\x858\xce\ +\xa5M\x18uh\xae+\xf9\x95\xe8O^\xbd\xb9 \xe3\ +~\xf6\x08\x1e\xfb\xf0p\xa9\x06)C^\x83)\xa85\ +\x0c\x83\x02(\x5c\xe0\x83\x1d\xe89\xc6\x83\x9a\x13\xa9\x9e\ +\xa9\x19\x1a\xb7\x1d\xbc\xa3z\xe5K\xbbs<\xf7?\xd0\ +:\xdc\xdfC\xd2t\xbd2#\xd1\xf4\xfdWW\xd3u\ +=g_\xd8k<\xefc\xdav\xbd_]\xdbw=\ +\xd4'\xd9\xf7}\xf7\x7fn\xf7\x1e\x07\x87\xe2/\x9e\x17\ +\x8b\xe4y4\x7f{\xe5y\xbes3\xe3\xf9\xfe\x97\xa6\ +\x86\xfa>\xa7\xaf\xeb\xfa\xde\xc7\xb7\xe7{^\xe7\xbf\xe2\ +\xfb\xdf\x07\xc7\xdf|_'\xcf\xda\xfc\xdfG\xd7\xd6}\ +_g\xdf\xd2\xfd\xdf\x87\xe7\xcf~_\xa7\xef\x9c~\xdf\ +\xc7\xf7\xe0\xf9\x9f\xe3\xffwo\xea\x00@4\xb4@@\ +\x00\x13\x00\xfe\x00\x04\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x01\x01\x04\x00\x01\ +\x00\x00\x00`\x00\x00\x00\x02\x01\x03\x00\x04\x00\x00\x00,\ +\x09\x00\x00\x03\x01\x03\x00\x01\x00\x00\x00\x05\x00\x00\x00\x06\ +\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x00\x11\x01\x04\x00\x01\ +\x00\x00\x00\x08\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\x00\x04\ +\x00\x00\x00\x16\x01\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x17\ +\x01\x04\x00\x01\x00\x00\x009\x08\x00\x00\x1a\x01\x05\x00\x01\ +\x00\x00\x004\x09\x00\x00\x1b\x01\x05\x00\x01\x00\x00\x00<\ +\x09\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00(\ +\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\x00\x10\ +\x00\x00\x00D\x09\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\ +\x00\x00\x00R\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x00S\ +\x01\x03\x00\x04\x00\x00\x00T\x09\x00\x00s\x87\x07\x00H\ +\x0c\x00\x00\x5c\x09\x00\x00\x00\x00\x00\x00\x08\x00\x08\x00\x08\ +\x00\x08\x00\x802\x02\x00\xe8\x03\x00\x00\x802\x02\x00\xe8\ +\x03\x00\x00paint.net 4.0\ +.9\x00\x01\x00\x01\x00\x01\x00\x01\x00\x00\x00\x0cHL\ +ino\x02\x10\x00\x00mntrRGB X\ +YZ \x07\xce\x00\x02\x00\x09\x00\x06\x001\x00\x00a\ +cspMSFT\x00\x00\x00\x00IEC s\ +RGB\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xf6\xd6\x00\x01\x00\x00\x00\x00\xd3-HP \x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11c\ +prt\x00\x00\x01P\x00\x00\x003desc\x00\ +\x00\x01\x84\x00\x00\x00lwtpt\x00\x00\x01\xf0\x00\ +\x00\x00\x14bkpt\x00\x00\x02\x04\x00\x00\x00\x14r\ +XYZ\x00\x00\x02\x18\x00\x00\x00\x14gXYZ\x00\ +\x00\x02,\x00\x00\x00\x14bXYZ\x00\x00\x02@\x00\ +\x00\x00\x14dmnd\x00\x00\x02T\x00\x00\x00pd\ +mdd\x00\x00\x02\xc4\x00\x00\x00\x88vued\x00\ +\x00\x03L\x00\x00\x00\x86view\x00\x00\x03\xd4\x00\ +\x00\x00$lumi\x00\x00\x03\xf8\x00\x00\x00\x14m\ +eas\x00\x00\x04\x0c\x00\x00\x00$tech\x00\ +\x00\x040\x00\x00\x00\x0crTRC\x00\x00\x04<\x00\ +\x00\x08\x0cgTRC\x00\x00\x04<\x00\x00\x08\x0cb\ +TRC\x00\x00\x04<\x00\x00\x08\x0ctext\x00\ +\x00\x00\x00Copyright (c)\ + 1998 Hewlett-Pa\ +ckard Company\x00\x00d\ +esc\x00\x00\x00\x00\x00\x00\x00\x12sRGB \ +IEC61966-2.1\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x12sRGB IEC\ +61966-2.1\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ \x00\ +\x00\x00\x00\x00\x00\xf3Q\x00\x01\x00\x00\x00\x01\x16\xccX\ +YZ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00XYZ \x00\x00\x00\x00\x00\x00o\xa2\x00\ +\x008\xf5\x00\x00\x03\x90XYZ \x00\x00\x00\x00\x00\ +\x00b\x99\x00\x00\xb7\x85\x00\x00\x18\xdaXYZ \x00\ +\x00\x00\x00\x00\x00$\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcfd\ +esc\x00\x00\x00\x00\x00\x00\x00\x16IEC h\ +ttp://www.iec.ch\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16IEC \ +http://www.iec.c\ +h\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00d\ +esc\x00\x00\x00\x00\x00\x00\x00.IEC 6\ +1966-2.1 Default\ + RGB colour spac\ +e - sRGB\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00.IEC 61966-2.\ +1 Default RGB co\ +lour space - sRG\ +B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00desc\x00\x00\x00\x00\x00\ +\x00\x00,Reference Vie\ +wing Condition i\ +n IEC61966-2.1\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00,Refere\ +nce Viewing Cond\ +ition in IEC6196\ +6-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00v\ +iew\x00\x00\x00\x00\x00\x13\xa4\xfe\x00\x14_.\x00\ +\x10\xcf\x14\x00\x03\xed\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\ +\x00\x00\x01XYZ \x00\x00\x00\x00\x00L\x09V\x00\ +P\x00\x00\x00W\x1f\xe7meas\x00\x00\x00\x00\x00\ +\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x8f\x00\x00\x00\x02sig \x00\ +\x00\x00\x00CRT curv\x00\x00\x00\x00\x00\ +\x00\x04\x00\x00\x00\x00\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\ +\x1e\x00#\x00(\x00-\x002\x007\x00;\x00@\x00\ +E\x00J\x00O\x00T\x00Y\x00^\x00c\x00h\x00\ +m\x00r\x00w\x00|\x00\x81\x00\x86\x00\x8b\x00\x90\x00\ +\x95\x00\x9a\x00\x9f\x00\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\ +\xbc\x00\xc1\x00\xc6\x00\xcb\x00\xd0\x00\xd5\x00\xdb\x00\xe0\x00\ +\xe5\x00\xeb\x00\xf0\x00\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\ +\x13\x01\x19\x01\x1f\x01%\x01+\x012\x018\x01>\x01\ +E\x01L\x01R\x01Y\x01`\x01g\x01n\x01u\x01\ +|\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\ +\xb9\x01\xc1\x01\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\ +\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02&\x02/\x028\x02\ +A\x02K\x02T\x02]\x02g\x02q\x02z\x02\x84\x02\ +\x8e\x02\x98\x02\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\ +\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\x16\x03!\x03-\x03\ +8\x03C\x03O\x03Z\x03f\x03r\x03~\x03\x8a\x03\ +\x96\x03\xa2\x03\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\ +\xf9\x04\x06\x04\x13\x04 \x04-\x04;\x04H\x04U\x04\ +c\x04q\x04~\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\ +\xd3\x04\xe1\x04\xf0\x04\xfe\x05\x0d\x05\x1c\x05+\x05:\x05\ +I\x05X\x05g\x05w\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\ +\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\x16\x06'\x067\x06\ +H\x06Y\x06j\x06{\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\ +\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07+\x07=\x07O\x07\ +a\x07t\x07\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\ +\xf8\x08\x0b\x08\x1f\x082\x08F\x08Z\x08n\x08\x82\x08\ +\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09%\x09\ +:\x09O\x09d\x09y\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\ +\xe5\x09\xfb\x0a\x11\x0a'\x0a=\x0aT\x0aj\x0a\x81\x0a\ +\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b9\x0b\ +Q\x0bi\x0b\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\ +\x12\x0c*\x0cC\x0c\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\xc0\x0c\ +\xd9\x0c\xf3\x0d\x0d\x0d&\x0d@\x0dZ\x0dt\x0d\x8e\x0d\ +\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e.\x0eI\x0ed\x0e\ +\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f%\x0fA\x0f\ +^\x0fz\x0f\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10&\x10\ +C\x10a\x10~\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x11\ +1\x11O\x11m\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12\ +&\x12E\x12d\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13\ +#\x13C\x13c\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14\ +'\x14I\x14j\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x15\ +4\x15V\x15x\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16&\x16\ +I\x16l\x16\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17A\x17\ +e\x17\x89\x17\xae\x17\xd2\x17\xf7\x18\x1b\x18@\x18e\x18\ +\x8a\x18\xaf\x18\xd5\x18\xfa\x19 \x19E\x19k\x19\x91\x19\ +\xb7\x19\xdd\x1a\x04\x1a*\x1aQ\x1aw\x1a\x9e\x1a\xc5\x1a\ +\xec\x1b\x14\x1b;\x1bc\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c\ +*\x1cR\x1c{\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1dG\x1d\ +p\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e@\x1ej\x1e\x94\x1e\ +\xbe\x1e\xe9\x1f\x13\x1f>\x1fi\x1f\x94\x1f\xbf\x1f\xea \ +\x15 A l \x98 \xc4 \xf0!\x1c!H!\ +u!\xa1!\xce!\xfb\x22'\x22U\x22\x82\x22\xaf\x22\ +\xdd#\x0a#8#f#\x94#\xc2#\xf0$\x1f$\ +M$|$\xab$\xda%\x09%8%h%\x97%\ +\xc7%\xf7&'&W&\x87&\xb7&\xe8'\x18'\ +I'z'\xab'\xdc(\x0d(?(q(\xa2(\ +\xd4)\x06)8)k)\x9d)\xd0*\x02*5*\ +h*\x9b*\xcf+\x02+6+i+\x9d+\xd1,\ +\x05,9,n,\xa2,\xd7-\x0c-A-v-\ +\xab-\xe1.\x16.L.\x82.\xb7.\xee/$/\ +Z/\x91/\xc7/\xfe050l0\xa40\xdb1\ +\x121J1\x821\xba1\xf22*2c2\x9b2\ +\xd43\x0d3F3\x7f3\xb83\xf14+4e4\ +\x9e4\xd85\x135M5\x875\xc25\xfd676\ +r6\xae6\xe97$7`7\x9c7\xd78\x148\ +P8\x8c8\xc89\x059B9\x7f9\xbc9\xf9:\ +6:t:\xb2:\xef;-;k;\xaa;\xe8<\ +'\ + >`>\xa0>\xe0?!?a?\xa2?\xe2@\ +#@d@\xa6@\xe7A)AjA\xacA\xeeB\ +0BrB\xb5B\xf7C:C}C\xc0D\x03D\ +GD\x8aD\xceE\x12EUE\x9aE\xdeF\x22F\ +gF\xabF\xf0G5G{G\xc0H\x05HKH\ +\x91H\xd7I\x1dIcI\xa9I\xf0J7J}J\ +\xc4K\x0cKSK\x9aK\xe2L*LrL\xbaM\ +\x02MJM\x93M\xdcN%NnN\xb7O\x00O\ +IO\x93O\xddP'PqP\xbbQ\x06QPQ\ +\x9bQ\xe6R1R|R\xc7S\x13S_S\xaaS\ +\xf6TBT\x8fT\xdbU(UuU\xc2V\x0fV\ +\x5cV\xa9V\xf7WDW\x92W\xe0X/X}X\ +\xcbY\x1aYiY\xb8Z\x07ZVZ\xa6Z\xf5[\ +E[\x95[\xe5\x5c5\x5c\x86\x5c\xd6]']x]\ +\xc9^\x1a^l^\xbd_\x0f_a_\xb3`\x05`\ +W`\xaa`\xfcaOa\xa2a\xf5bIb\x9cb\ +\xf0cCc\x97c\xebd@d\x94d\xe9e=e\ +\x92e\xe7f=f\x92f\xe8g=g\x93g\xe9h\ +?h\x96h\xeciCi\x9ai\xf1jHj\x9fj\ +\xf7kOk\xa7k\xfflWl\xafm\x08m`m\ +\xb9n\x12nkn\xc4o\x1eoxo\xd1p+p\ +\x86p\xe0q:q\x95q\xf0rKr\xa6s\x01s\ +]s\xb8t\x14tpt\xccu(u\x85u\xe1v\ +>v\x9bv\xf8wVw\xb3x\x11xnx\xccy\ +*y\x89y\xe7zFz\xa5{\x04{c{\xc2|\ +!|\x81|\xe1}A}\xa1~\x01~b~\xc2\x7f\ +#\x7f\x84\x7f\xe5\x80G\x80\xa8\x81\x0a\x81k\x81\xcd\x82\ +0\x82\x92\x82\xf4\x83W\x83\xba\x84\x1d\x84\x80\x84\xe3\x85\ +G\x85\xab\x86\x0e\x86r\x86\xd7\x87;\x87\x9f\x88\x04\x88\ +i\x88\xce\x893\x89\x99\x89\xfe\x8ad\x8a\xca\x8b0\x8b\ +\x96\x8b\xfc\x8cc\x8c\xca\x8d1\x8d\x98\x8d\xff\x8ef\x8e\ +\xce\x8f6\x8f\x9e\x90\x06\x90n\x90\xd6\x91?\x91\xa8\x92\ +\x11\x92z\x92\xe3\x93M\x93\xb6\x94 \x94\x8a\x94\xf4\x95\ +_\x95\xc9\x964\x96\x9f\x97\x0a\x97u\x97\xe0\x98L\x98\ +\xb8\x99$\x99\x90\x99\xfc\x9ah\x9a\xd5\x9bB\x9b\xaf\x9c\ +\x1c\x9c\x89\x9c\xf7\x9dd\x9d\xd2\x9e@\x9e\xae\x9f\x1d\x9f\ +\x8b\x9f\xfa\xa0i\xa0\xd8\xa1G\xa1\xb6\xa2&\xa2\x96\xa3\ +\x06\xa3v\xa3\xe6\xa4V\xa4\xc7\xa58\xa5\xa9\xa6\x1a\xa6\ +\x8b\xa6\xfd\xa7n\xa7\xe0\xa8R\xa8\xc4\xa97\xa9\xa9\xaa\ +\x1c\xaa\x8f\xab\x02\xabu\xab\xe9\xac\x5c\xac\xd0\xadD\xad\ +\xb8\xae-\xae\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0u\xb0\xea\xb1\ +`\xb1\xd6\xb2K\xb2\xc2\xb38\xb3\xae\xb4%\xb4\x9c\xb5\ +\x13\xb5\x8a\xb6\x01\xb6y\xb6\xf0\xb7h\xb7\xe0\xb8Y\xb8\ +\xd1\xb9J\xb9\xc2\xba;\xba\xb5\xbb.\xbb\xa7\xbc!\xbc\ +\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\x84\xbe\xff\xbfz\xbf\xf5\xc0\ +p\xc0\xec\xc1g\xc1\xe3\xc2_\xc2\xdb\xc3X\xc3\xd4\xc4\ +Q\xc4\xce\xc5K\xc5\xc8\xc6F\xc6\xc3\xc7A\xc7\xbf\xc8\ +=\xc8\xbc\xc9:\xc9\xb9\xca8\xca\xb7\xcb6\xcb\xb6\xcc\ +5\xcc\xb5\xcd5\xcd\xb5\xce6\xce\xb6\xcf7\xcf\xb8\xd0\ +9\xd0\xba\xd1<\xd1\xbe\xd2?\xd2\xc1\xd3D\xd3\xc6\xd4\ +I\xd4\xcb\xd5N\xd5\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\xe0\xd8\ +d\xd8\xe8\xd9l\xd9\xf1\xdav\xda\xfb\xdb\x80\xdc\x05\xdc\ +\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf)\xdf\xaf\xe06\xe0\ +\xbd\xe1D\xe1\xcc\xe2S\xe2\xdb\xe3c\xe3\xeb\xe4s\xe4\ +\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe82\xe8\xbc\xe9\ +F\xe9\xd0\xea[\xea\xe5\xebp\xeb\xfb\xec\x86\xed\x11\xed\ +\x9c\xee(\xee\xb4\xef@\xef\xcc\xf0X\xf0\xe5\xf1r\xf1\ +\xff\xf2\x8c\xf3\x19\xf3\xa7\xf44\xf4\xc2\xf5P\xf5\xde\xf6\ +m\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf98\xf9\xc7\xfaW\xfa\ +\xe7\xfbw\xfc\x07\xfc\x98\xfd)\xfd\xba\xfeK\xfe\xdc\xff\ +m\xff\xff\ +\x00\x00\x89\xf8\ +I\ +I*\x00\x08\x00\x00\x00\x18\x00\xfe\x00\x04\x00\x01\x00\x00\ +\x00\x00\x00\x00\x00\x00\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x01\x01\x03\x00\x01\x00\x00\x00`\x00\x00\x00\x02\x01\x03\ +\x00\x04\x00\x00\x00.\x01\x00\x00\x03\x01\x03\x00\x01\x00\x00\ +\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ +\x00\x11\x01\x04\x00\x01\x00\x00\x00\xfcS\x00\x00\x12\x01\x03\ +\x00\x01\x00\x00\x00\x01\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\ +\x00\x04\x00\x00\x00\x16\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x17\x01\x04\x00\x01\x00\x00\x00\xf9\x12\x00\x00\x1a\x01\x05\ +\x00\x01\x00\x00\x006\x01\x00\x00\x1b\x01\x05\x00\x01\x00\x00\ +\x00>\x01\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\ +\x00(\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\ +\x00\x22\x00\x00\x00F\x01\x00\x002\x01\x02\x00\x14\x00\x00\ +\x00h\x01\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ +\x00R\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00\xbc\x02\x01\ +\x00\xf68\x00\x00|\x01\x00\x00I\x86\x01\x00B\x0d\x00\ +\x00r:\x00\x00i\x87\x04\x00\x01\x00\x00\x00\xf8f\x00\ +\x00s\x87\x07\x00H\x0c\x00\x00\xb4G\x00\x00\x5c\x93\x07\ +\x00\xd0\x22\x00\x00$g\x00\x00\x00\x00\x00\x00\x08\x00\x08\ +\x00\x08\x00\x08\x00\x00\xf9\x15\x00\x10'\x00\x00\x00\xf9\x15\ +\x00\x10'\x00\x00Adobe Photo\ +shop CC 2017 (Wi\ +ndows)\x002017:04:0\ +4 11:01:55\x00\ +\x0a\x0a \ + \x0a \x0a \ + paint.net \ +4.0.9\x0a \ + 2017-03-01T11:2\ +0:20-08:00\x0a \ + 2017-04-04T\ +11:01:55-07:00\x0a\ + 2017-\ +04-04T11:01:55-0\ +7:00\x0a \ + imag\ +e/tiff\x0a 3\x0a \ + sRGB IEC\ +61966-2.1\ +\x0a \x0a \ + \x0a \ + adobe:docid\ +:photoshop:6e5b1\ +c59-1960-11e7-ba\ +e7-e6e7a5cd2814<\ +/rdf:li>\x0a \ + \x0a\ + \x0a \ + xmp.iid:db7b2\ +8e8-30e9-e04f-9f\ +78-916e5c5110e6<\ +/xmpMM:InstanceI\ +D>\x0a ad\ +obe:docid:photos\ +hop:bf3203a1-196\ +0-11e7-bae7-e6e7\ +a5cd2814\x0a \ + x\ +mp.did:8f625742-\ +0048-e64f-ab3c-d\ +4b1a5a27a24\x0a \ +\x0a\ + \x0a \ + \x0a \ + created\x0a \ + \ +xmp.iid:8f6257\ +42-0048-e64f-ab3\ +c-d4b1a5a27a24\x0a \ + \ +2017-03-01T11:20\ +:20-08:00\x0a \ + Ad\ +obe Photoshop CC\ + 2017 (Windows)<\ +/stEvt:softwareA\ +gent>\x0a \ + \x0a \ + \x0a\ + \ + \ +saved\x0a \ + xmp.iid\ +:db7b28e8-30e9-e\ +04f-9f78-916e5c5\ +110e6\x0a \ + 2017-04-0\ +4T11:01:55-07:00\ +\x0a \ + \ +Adobe Photo\ +shop CC 2017 (Wi\ +ndows)\x0a \ + <\ +stEvt:changed>/<\ +/stEvt:changed>\x0a\ + <\ +/rdf:li>\x0a \ + \x0a\ + \x0a \ +\x0a \ +\x0a\x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \x0a8BIM\x04%\x00\x00\x00\x00\x00\x10\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x008BI\ +M\x04:\x00\x00\x00\x00\x00\xe5\x00\x00\x00\x10\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x0bprintOutp\ +ut\x00\x00\x00\x05\x00\x00\x00\x00PstSbo\ +ol\x01\x00\x00\x00\x00Inteenum\x00\ +\x00\x00\x00Inte\x00\x00\x00\x00Clrm\x00\ +\x00\x00\x0fprintSixteenB\ +itbool\x00\x00\x00\x00\x0bprint\ +erNameTEXT\x00\x00\x00\x01\x00\x00\ +\x00\x00\x00\x0fprintProofSe\ +tupObjc\x00\x00\x00\x0c\x00P\x00r\x00\ +o\x00o\x00f\x00 \x00S\x00e\x00t\x00u\x00\ +p\x00\x00\x00\x00\x00\x0aproofSetu\ +p\x00\x00\x00\x01\x00\x00\x00\x00Bltnenu\ +m\x00\x00\x00\x0cbuiltinProo\ +f\x00\x00\x00\x09proofCMYK\x008\ +BIM\x04;\x00\x00\x00\x00\x02-\x00\x00\x00\x10\x00\ +\x00\x00\x01\x00\x00\x00\x00\x00\x12printOu\ +tputOptions\x00\x00\x00\x17\x00\ +\x00\x00\x00Cptnbool\x00\x00\x00\x00\x00\ +Clbrbool\x00\x00\x00\x00\x00Rgs\ +Mbool\x00\x00\x00\x00\x00CrnCbo\ +ol\x00\x00\x00\x00\x00CntCbool\x00\ +\x00\x00\x00\x00Lblsbool\x00\x00\x00\x00\ +\x00Ngtvbool\x00\x00\x00\x00\x00Em\ +lDbool\x00\x00\x00\x00\x00Intrb\ +ool\x00\x00\x00\x00\x00BckgObjc\ +\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00RGBC\x00\x00\ +\x00\x03\x00\x00\x00\x00Rd doub@o\ +\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00Grn do\ +ub@o\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00Bl\ + doub@o\xe0\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00BrdTUntF#Rlt\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Bld Un\ +tF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00RsltUntF#Pxl@b\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0avector\ +Databool\x01\x00\x00\x00\x00PgP\ +senum\x00\x00\x00\x00PgPs\x00\x00\x00\ +\x00PgPC\x00\x00\x00\x00LeftUnt\ +F#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00Top UntF#Rlt\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00Scl Unt\ +F#Prc@Y\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x10cropWhenPrintin\ +gbool\x00\x00\x00\x00\x0ecropRe\ +ctBottomlong\x00\x00\x00\x00\ +\x00\x00\x00\x0ccropRectLeft\ +long\x00\x00\x00\x00\x00\x00\x00\x0dcrop\ +RectRightlong\x00\x00\x00\ +\x00\x00\x00\x00\x0bcropRectTop\ +long\x00\x00\x00\x00\x008BIM\x03\xed\x00\ +\x00\x00\x00\x00\x10\x00\x90\x00\x00\x00\x01\x00\x01\x00\x90\x00\ +\x00\x00\x01\x00\x018BIM\x04&\x00\x00\x00\x00\x00\ +\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00?\x80\x00\x008\ +BIM\x03\xee\x00\x00\x00\x00\x00\x0d\x0cTran\ +sparency\x008BIM\x04\x15\x00\ +\x00\x00\x00\x00\x1e\x00\x00\x00\x0d\x00T\x00r\x00a\x00\ +n\x00s\x00p\x00a\x00r\x00e\x00n\x00c\x00\ +y\x00\x008BIM\x045\x00\x00\x00\x00\x00\x11\x00\ +\x00\x00\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00d\x01\ +\x008BIM\x04\x1d\x00\x00\x00\x00\x00\x04\x00\x00\x00\ +\x008BIM\x04\x0d\x00\x00\x00\x00\x00\x04\x00\x00\x00\ +\x1e8BIM\x04\x19\x00\x00\x00\x00\x00\x04\x00\x00\x00\ +\x1e8BIM\x03\xf3\x00\x00\x00\x00\x00\x09\x00\x00\x00\ +\x00\x00\x00\x00\x00\x01\x008BIM'\x10\x00\x00\x00\ +\x00\x00\x0a\x00\x01\x00\x00\x00\x00\x00\x00\x00\x018BI\ +M\x03\xf5\x00\x00\x00\x00\x00H\x00/ff\x00\x01\x00\ +lff\x00\x06\x00\x00\x00\x00\x00\x01\x00/ff\x00\ +\x01\x00\xa1\x99\x9a\x00\x06\x00\x00\x00\x00\x00\x01\x002\x00\ +\x00\x00\x01\x00Z\x00\x00\x00\x06\x00\x00\x00\x00\x00\x01\x00\ +5\x00\x00\x00\x01\x00-\x00\x00\x00\x06\x00\x00\x00\x00\x00\ +\x018BIM\x03\xf8\x00\x00\x00\x00\x00p\x00\x00\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\ +\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x008BI\ +M\x04\x00\x00\x00\x00\x00\x00\x02\x00\x018BIM\x04\ +\x02\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008BIM\x04\ +0\x00\x00\x00\x00\x00\x02\x01\x018BIM\x04-\x00\ +\x00\x00\x00\x00\x06\x00\x01\x00\x00\x00\x048BIM\x04\ +\x08\x00\x00\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x02@\x00\ +\x00\x02@\x00\x00\x00\x008BIM\x04\x1e\x00\x00\x00\ +\x00\x00\x04\x00\x00\x00\x008BIM\x04\x1a\x00\x00\x00\ +\x00\x035\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00`\x00\x00\x00`\x00\x00\x00\x00\x00\x00\x00\x01\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00`\x00\ +\x00\x00`\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00null\x00\x00\x00\x02\x00\x00\x00\x06bo\ +undsObjc\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00Rct1\x00\x00\x00\x04\x00\x00\x00\x00To\ +p long\x00\x00\x00\x00\x00\x00\x00\x00Le\ +ftlong\x00\x00\x00\x00\x00\x00\x00\x00Bt\ +omlong\x00\x00\x00`\x00\x00\x00\x00Rg\ +htlong\x00\x00\x00`\x00\x00\x00\x06sl\ +icesVlLs\x00\x00\x00\x01Objc\ +\x00\x00\x00\x01\x00\x00\x00\x00\x00\x05slice\x00\ +\x00\x00\x12\x00\x00\x00\x07sliceIDlo\ +ng\x00\x00\x00\x00\x00\x00\x00\x07groupI\ +Dlong\x00\x00\x00\x00\x00\x00\x00\x06ori\ +ginenum\x00\x00\x00\x0cESlic\ +eOrigin\x00\x00\x00\x0dautoG\ +enerated\x00\x00\x00\x00Type\ +enum\x00\x00\x00\x0aESliceTy\ +pe\x00\x00\x00\x00Img \x00\x00\x00\x06bo\ +undsObjc\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00Rct1\x00\x00\x00\x04\x00\x00\x00\x00To\ +p long\x00\x00\x00\x00\x00\x00\x00\x00Le\ +ftlong\x00\x00\x00\x00\x00\x00\x00\x00Bt\ +omlong\x00\x00\x00`\x00\x00\x00\x00Rg\ +htlong\x00\x00\x00`\x00\x00\x00\x03ur\ +lTEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00n\ +ullTEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00MsgeTEXT\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x06altTagTEXT\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x0ecellTextI\ +sHTMLbool\x01\x00\x00\x00\x08ce\ +llTextTEXT\x00\x00\x00\x01\x00\x00\ +\x00\x00\x00\x09horzAlignenu\ +m\x00\x00\x00\x0fESliceHorzA\ +lign\x00\x00\x00\x07default\x00\ +\x00\x00\x09vertAlignenum\ +\x00\x00\x00\x0fESliceVertAl\ +ign\x00\x00\x00\x07default\x00\x00\ +\x00\x0bbgColorTypeenu\ +m\x00\x00\x00\x11ESliceBGCol\ +orType\x00\x00\x00\x00None\x00\x00\ +\x00\x09topOutsetlong\x00\ +\x00\x00\x00\x00\x00\x00\x0aleftOutse\ +tlong\x00\x00\x00\x00\x00\x00\x00\x0cbot\ +tomOutsetlong\x00\x00\x00\ +\x00\x00\x00\x00\x0brightOutset\ +long\x00\x00\x00\x00\x008BIM\x04(\x00\ +\x00\x00\x00\x00\x0c\x00\x00\x00\x02?\xf0\x00\x00\x00\x00\x00\ +\x008BIM\x04\x14\x00\x00\x00\x00\x00\x04\x00\x00\x00\ +\x048BIM\x04\x0c\x00\x00\x00\x00\x03\xeb\x00\x00\x00\ +\x01\x00\x00\x000\x00\x00\x000\x00\x00\x00\x90\x00\x00\x1b\ +\x00\x00\x00\x03\xcf\x00\x18\x00\x01\xff\xd8\xff\xed\x00\x0cA\ +dobe_CM\x00\x01\xff\xee\x00\x0eAdo\ +be\x00d\x80\x00\x00\x00\x01\xff\xdb\x00\x84\x00\x0c\x08\ +\x08\x08\x09\x08\x0c\x09\x09\x0c\x11\x0b\x0a\x0b\x11\x15\x0f\x0c\ +\x0c\x0f\x15\x18\x13\x13\x15\x13\x13\x18\x11\x0c\x0c\x0c\x0c\x0c\ +\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x01\x0d\ +\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\x10\x14\x0e\x0e\x0e\x14\x14\x0e\ +\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\x0c\x0c\x11\x11\x0c\x0c\x0c\x0c\ +\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\xff\ +\xc0\x00\x11\x08\x000\x000\x03\x01\x22\x00\x02\x11\x01\x03\ +\x11\x01\xff\xdd\x00\x04\x00\x03\xff\xc4\x01?\x00\x00\x01\x05\ +\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x03\x00\x01\ +\x02\x04\x05\x06\x07\x08\x09\x0a\x0b\x01\x00\x01\x05\x01\x01\x01\ +\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x03\x04\x05\ +\x06\x07\x08\x09\x0a\x0b\x10\x00\x01\x04\x01\x03\x02\x04\x02\x05\ +\x07\x06\x08\x05\x03\x0c3\x01\x00\x02\x11\x03\x04!\x121\ +\x05AQa\x13\x22q\x812\x06\x14\x91\xa1\xb1B#\ +$\x15R\xc1b34r\x82\xd1C\x07%\x92S\xf0\ +\xe1\xf1cs5\x16\xa2\xb2\x83&D\x93TdE\xc2\ +\xa3t6\x17\xd2U\xe2e\xf2\xb3\x84\xc3\xd3u\xe3\xf3\ +F'\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\ +\xf5Vfv\x86\x96\xa6\xb6\xc6\xd6\xe6\xf67GWg\ +w\x87\x97\xa7\xb7\xc7\xd7\xe7\xf7\x11\x00\x02\x02\x01\x02\x04\ +\x04\x03\x04\x05\x06\x07\x07\x06\x055\x01\x00\x02\x11\x03!\ +1\x12\x04AQaq\x22\x13\x052\x81\x91\x14\xa1\xb1\ +B#\xc1R\xd1\xf03$b\xe1r\x82\x92CS\x15\ +cs4\xf1%\x06\x16\xa2\xb2\x83\x07&5\xc2\xd2D\ +\x93T\xa3\x17dEU6te\xe2\xf2\xb3\x84\xc3\xd3\ +u\xe3\xf3F\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\ +\xd5\xe5\xf5Vfv\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6'7\ +GWgw\x87\x97\xa7\xb7\xc7\xff\xda\x00\x0c\x03\x01\x00\ +\x02\x11\x03\x11\x00?\x00\xf4<\xdc\xcc\x96d\x9a\xa9;\ +@\x80\x00\x00\x92O\xc6P\xfd~\xab\xe0\xff\x00\xfbl\ +\x7f\xe4R\xc9\xff\x00\x95\x1b\xfdz\xff\x00\xef\xabU\xce\ +\x0dis\xb4\x00I>A%9^\xbfU\xf0\x7f\xfd\ +\xb6?\xf2)z\xfdW\xc1\xff\x00\xf6\xd8\xff\x00\xc8\xa2\ +UU\xf9\xe0\xdde\x8e\xaa\x92}\x95\xb7\xc0x\xa7{\ +o\xe9\xeem\x82\xc3n9 =\xae\xd4\x89\xee\x12R\ +/_\xaa\xf8?\xfc\xc1\xff\x00\x91D\xc0\xcc\xc8\xb3#\ +\xd2\xb4\xee\x04\x1e@\x04\x11\xfdU\xa4\xb20\x7f\xe5\x03\ +\xff\x00\x5c\xfc\xa9)\xff\xd0\xef\xf2\x7f\xe5F\xff\x00^\ +\xbf\xfb\xea\xb9\x9f\x7f\xa7W\xa6\x1a\x5c\xfb\x81c@\xf3\ +\x11\xfcU<\x9f\xf9Q\xbf\xd7\xaf\xfe\xfa\xacu\x0f\xe9\ +\x18\x9f\xf1\x9f\xc5\x89)\x1e>NU\x14\xb6\xaf\xb2\xbd\ +\xdbg\xdd\xa8\xe4\xcf\xee\xa8\xe5]\x95\x93I\xa8\xe2\xbd\ +\x92A\x9dO\x1f\xd9\x0a\xdfP\xb6\xea\xb1\xf7\xd3\xa1\x90\ +\x1c\xee`x\xa9aYu\x98\xed}\xdfH\xcc\x1e$\ +~k\x92R\xd8y\x02\xfa\xa7ik\x98v\xb8\x1f\x10\ +\xa8`\xff\x00\xca\x07\xfe\xb9\xf9U\x9e\x97\xf4.\xff\x00\ +\x8d*\xb6\x0f\xfc\xa0\x7f\xeb\x9f\x95%?\xff\xd1\xef\xf2\ +\x7f\xe5F\xff\x00^\xbf\xfb\xea?R;,\xc6\xb4\x83\ +\xb1\x8f\x97\x11\xf1i\xff\x00\xbe\xa8f\xe1d\xbf$\xdb\ +P\x90b\x0c\xc1\x04!\xfd\x9b\xaa~\xf3\xff\x00\xed\xcf\ +\xfc\xc9%'\xb7\xa8\xe1[[\xabxyk\x84\x1d\x08\ +N\xce\xa7\x86\xc65\x8d\x0f\x0dh\x00\x0d\xa7\x80\xab\xfd\ +\x9b\xaa~\xf3\xff\x00\xed\xcf\xf6\xa5\xf6n\xa9\xfb\xcf\xff\ +\x00\xb7?\xda\x92\x9b\x1d(\x1fJ\xd7A\x0du\x84\xb4\ +\x9e\xe1V\xc1\xff\x00\x94\x0f\xc6\xcf\xca\x9f\xec\xddS\xf7\ +\x9f\xff\x00n\x7f\xe6H\xb88Y\x15\xdf\xea\xda\x03@\ +\x04s$\x92\x92\x9f\xff\xd9\x008BIM\x04!\x00\ +\x00\x00\x00\x00]\x00\x00\x00\x01\x01\x00\x00\x00\x0f\x00A\ +\x00d\x00o\x00b\x00e\x00 \x00P\x00h\x00o\ +\x00t\x00o\x00s\x00h\x00o\x00p\x00\x00\x00\x17\ +\x00A\x00d\x00o\x00b\x00e\x00 \x00P\x00h\ +\x00o\x00t\x00o\x00s\x00h\x00o\x00p\x00 \ +\x00C\x00C\x00 \x002\x000\x001\x007\x00\x00\ +\x00\x01\x00\x00\x00\x0cHLino\x02\x10\x00\x00m\ +ntrRGB XYZ \x07\xce\x00\x02\x00\ +\x09\x00\x06\x001\x00\x00acspMSFT\x00\ +\x00\x00\x00IEC sRGB\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\xd6\x00\x01\x00\x00\x00\ +\x00\xd3-HP \x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x11cprt\x00\x00\x01P\x00\ +\x00\x003desc\x00\x00\x01\x84\x00\x00\x00lw\ +tpt\x00\x00\x01\xf0\x00\x00\x00\x14bkpt\x00\ +\x00\x02\x04\x00\x00\x00\x14rXYZ\x00\x00\x02\x18\x00\ +\x00\x00\x14gXYZ\x00\x00\x02,\x00\x00\x00\x14b\ +XYZ\x00\x00\x02@\x00\x00\x00\x14dmnd\x00\ +\x00\x02T\x00\x00\x00pdmdd\x00\x00\x02\xc4\x00\ +\x00\x00\x88vued\x00\x00\x03L\x00\x00\x00\x86v\ +iew\x00\x00\x03\xd4\x00\x00\x00$lumi\x00\ +\x00\x03\xf8\x00\x00\x00\x14meas\x00\x00\x04\x0c\x00\ +\x00\x00$tech\x00\x00\x040\x00\x00\x00\x0cr\ +TRC\x00\x00\x04<\x00\x00\x08\x0cgTRC\x00\ +\x00\x04<\x00\x00\x08\x0cbTRC\x00\x00\x04<\x00\ +\x00\x08\x0ctext\x00\x00\x00\x00Copyr\ +ight (c) 1998 He\ +wlett-Packard Co\ +mpany\x00\x00desc\x00\x00\x00\x00\x00\ +\x00\x00\x12sRGB IEC61966\ +-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12\ +sRGB IEC61966-2.\ +1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00XYZ \x00\x00\x00\x00\x00\x00\xf3Q\x00\ +\x01\x00\x00\x00\x01\x16\xccXYZ \x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ \x00\ +\x00\x00\x00\x00\x00o\xa2\x00\x008\xf5\x00\x00\x03\x90X\ +YZ \x00\x00\x00\x00\x00\x00b\x99\x00\x00\xb7\x85\x00\ +\x00\x18\xdaXYZ \x00\x00\x00\x00\x00\x00$\xa0\x00\ +\x00\x0f\x84\x00\x00\xb6\xcfdesc\x00\x00\x00\x00\x00\ +\x00\x00\x16IEC http://ww\ +w.iec.ch\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x16IEC http://w\ +ww.iec.ch\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00desc\x00\x00\x00\x00\x00\ +\x00\x00.IEC 61966-2.1\ + Default RGB col\ +our space - sRGB\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00.IEC \ +61966-2.1 Defaul\ +t RGB colour spa\ +ce - sRGB\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00d\ +esc\x00\x00\x00\x00\x00\x00\x00,Refer\ +ence Viewing Con\ +dition in IEC619\ +66-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00,Reference View\ +ing Condition in\ + IEC61966-2.1\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00view\x00\x00\x00\x00\x00\ +\x13\xa4\xfe\x00\x14_.\x00\x10\xcf\x14\x00\x03\xed\xcc\x00\ +\x04\x13\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01XYZ \x00\ +\x00\x00\x00\x00L\x09V\x00P\x00\x00\x00W\x1f\xe7m\ +eas\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x8f\x00\ +\x00\x00\x02sig \x00\x00\x00\x00CRT c\ +urv\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x05\x00\ +\x0a\x00\x0f\x00\x14\x00\x19\x00\x1e\x00#\x00(\x00-\x00\ +2\x007\x00;\x00@\x00E\x00J\x00O\x00T\x00\ +Y\x00^\x00c\x00h\x00m\x00r\x00w\x00|\x00\ +\x81\x00\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\x9f\x00\xa4\x00\ +\xa9\x00\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\xc6\x00\xcb\x00\ +\xd0\x00\xd5\x00\xdb\x00\xe0\x00\xe5\x00\xeb\x00\xf0\x00\xf6\x00\ +\xfb\x01\x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\x1f\x01%\x01\ ++\x012\x018\x01>\x01E\x01L\x01R\x01Y\x01\ +`\x01g\x01n\x01u\x01|\x01\x83\x01\x8b\x01\x92\x01\ +\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\xc9\x01\xd1\x01\ +\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\x0c\x02\x14\x02\ +\x1d\x02&\x02/\x028\x02A\x02K\x02T\x02]\x02\ +g\x02q\x02z\x02\x84\x02\x8e\x02\x98\x02\xa2\x02\xac\x02\ +\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\xf5\x03\x00\x03\ +\x0b\x03\x16\x03!\x03-\x038\x03C\x03O\x03Z\x03\ +f\x03r\x03~\x03\x8a\x03\x96\x03\xa2\x03\xae\x03\xba\x03\ +\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\x13\x04 \x04\ +-\x04;\x04H\x04U\x04c\x04q\x04~\x04\x8c\x04\ +\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\xf0\x04\xfe\x05\ +\x0d\x05\x1c\x05+\x05:\x05I\x05X\x05g\x05w\x05\ +\x86\x05\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\xe5\x05\xf6\x06\ +\x06\x06\x16\x06'\x067\x06H\x06Y\x06j\x06{\x06\ +\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\xf5\x07\x07\x07\ +\x19\x07+\x07=\x07O\x07a\x07t\x07\x86\x07\x99\x07\ +\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\x1f\x082\x08\ +F\x08Z\x08n\x08\x82\x08\x96\x08\xaa\x08\xbe\x08\xd2\x08\ +\xe7\x08\xfb\x09\x10\x09%\x09:\x09O\x09d\x09y\x09\ +\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\x11\x0a'\x0a\ +=\x0aT\x0aj\x0a\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\ +\xf3\x0b\x0b\x0b\x22\x0b9\x0bQ\x0bi\x0b\x80\x0b\x98\x0b\ +\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c*\x0cC\x0c\x5c\x0c\ +u\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d&\x0d\ +@\x0dZ\x0dt\x0d\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\ +\x13\x0e.\x0eI\x0ed\x0e\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\ +\xee\x0f\x09\x0f%\x0fA\x0f^\x0fz\x0f\x96\x0f\xb3\x0f\ +\xcf\x0f\xec\x10\x09\x10&\x10C\x10a\x10~\x10\x9b\x10\ +\xb9\x10\xd7\x10\xf5\x11\x13\x111\x11O\x11m\x11\x8c\x11\ +\xaa\x11\xc9\x11\xe8\x12\x07\x12&\x12E\x12d\x12\x84\x12\ +\xa3\x12\xc3\x12\xe3\x13\x03\x13#\x13C\x13c\x13\x83\x13\ +\xa4\x13\xc5\x13\xe5\x14\x06\x14'\x14I\x14j\x14\x8b\x14\ +\xad\x14\xce\x14\xf0\x15\x12\x154\x15V\x15x\x15\x9b\x15\ +\xbd\x15\xe0\x16\x03\x16&\x16I\x16l\x16\x8f\x16\xb2\x16\ +\xd6\x16\xfa\x17\x1d\x17A\x17e\x17\x89\x17\xae\x17\xd2\x17\ +\xf7\x18\x1b\x18@\x18e\x18\x8a\x18\xaf\x18\xd5\x18\xfa\x19\ + \x19E\x19k\x19\x91\x19\xb7\x19\xdd\x1a\x04\x1a*\x1a\ +Q\x1aw\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b;\x1bc\x1b\ +\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c*\x1cR\x1c{\x1c\xa3\x1c\ +\xcc\x1c\xf5\x1d\x1e\x1dG\x1dp\x1d\x99\x1d\xc3\x1d\xec\x1e\ +\x16\x1e@\x1ej\x1e\x94\x1e\xbe\x1e\xe9\x1f\x13\x1f>\x1f\ +i\x1f\x94\x1f\xbf\x1f\xea \x15 A l \x98 \ +\xc4 \xf0!\x1c!H!u!\xa1!\xce!\xfb\x22\ +'\x22U\x22\x82\x22\xaf\x22\xdd#\x0a#8#f#\ +\x94#\xc2#\xf0$\x1f$M$|$\xab$\xda%\ +\x09%8%h%\x97%\xc7%\xf7&'&W&\ +\x87&\xb7&\xe8'\x18'I'z'\xab'\xdc(\ +\x0d(?(q(\xa2(\xd4)\x06)8)k)\ +\x9d)\xd0*\x02*5*h*\x9b*\xcf+\x02+\ +6+i+\x9d+\xd1,\x05,9,n,\xa2,\ +\xd7-\x0c-A-v-\xab-\xe1.\x16.L.\ +\x82.\xb7.\xee/$/Z/\x91/\xc7/\xfe0\ +50l0\xa40\xdb1\x121J1\x821\xba1\ +\xf22*2c2\x9b2\xd43\x0d3F3\x7f3\ +\xb83\xf14+4e4\x9e4\xd85\x135M5\ +\x875\xc25\xfd676r6\xae6\xe97$7\ +`7\x9c7\xd78\x148P8\x8c8\xc89\x059\ +B9\x7f9\xbc9\xf9:6:t:\xb2:\xef;\ +-;k;\xaa;\xe8<' >`>\xa0>\xe0?\ +!?a?\xa2?\xe2@#@d@\xa6@\xe7A\ +)AjA\xacA\xeeB0BrB\xb5B\xf7C\ +:C}C\xc0D\x03DGD\x8aD\xceE\x12E\ +UE\x9aE\xdeF\x22FgF\xabF\xf0G5G\ +{G\xc0H\x05HKH\x91H\xd7I\x1dIcI\ +\xa9I\xf0J7J}J\xc4K\x0cKSK\x9aK\ +\xe2L*LrL\xbaM\x02MJM\x93M\xdcN\ +%NnN\xb7O\x00OIO\x93O\xddP'P\ +qP\xbbQ\x06QPQ\x9bQ\xe6R1R|R\ +\xc7S\x13S_S\xaaS\xf6TBT\x8fT\xdbU\ +(UuU\xc2V\x0fV\x5cV\xa9V\xf7WDW\ +\x92W\xe0X/X}X\xcbY\x1aYiY\xb8Z\ +\x07ZVZ\xa6Z\xf5[E[\x95[\xe5\x5c5\x5c\ +\x86\x5c\xd6]']x]\xc9^\x1a^l^\xbd_\ +\x0f_a_\xb3`\x05`W`\xaa`\xfcaOa\ +\xa2a\xf5bIb\x9cb\xf0cCc\x97c\xebd\ +@d\x94d\xe9e=e\x92e\xe7f=f\x92f\ +\xe8g=g\x93g\xe9h?h\x96h\xeciCi\ +\x9ai\xf1jHj\x9fj\xf7kOk\xa7k\xffl\ +Wl\xafm\x08m`m\xb9n\x12nkn\xc4o\ +\x1eoxo\xd1p+p\x86p\xe0q:q\x95q\ +\xf0rKr\xa6s\x01s]s\xb8t\x14tpt\ +\xccu(u\x85u\xe1v>v\x9bv\xf8wVw\ +\xb3x\x11xnx\xccy*y\x89y\xe7zFz\ +\xa5{\x04{c{\xc2|!|\x81|\xe1}A}\ +\xa1~\x01~b~\xc2\x7f#\x7f\x84\x7f\xe5\x80G\x80\ +\xa8\x81\x0a\x81k\x81\xcd\x820\x82\x92\x82\xf4\x83W\x83\ +\xba\x84\x1d\x84\x80\x84\xe3\x85G\x85\xab\x86\x0e\x86r\x86\ +\xd7\x87;\x87\x9f\x88\x04\x88i\x88\xce\x893\x89\x99\x89\ +\xfe\x8ad\x8a\xca\x8b0\x8b\x96\x8b\xfc\x8cc\x8c\xca\x8d\ +1\x8d\x98\x8d\xff\x8ef\x8e\xce\x8f6\x8f\x9e\x90\x06\x90\ +n\x90\xd6\x91?\x91\xa8\x92\x11\x92z\x92\xe3\x93M\x93\ +\xb6\x94 \x94\x8a\x94\xf4\x95_\x95\xc9\x964\x96\x9f\x97\ +\x0a\x97u\x97\xe0\x98L\x98\xb8\x99$\x99\x90\x99\xfc\x9a\ +h\x9a\xd5\x9bB\x9b\xaf\x9c\x1c\x9c\x89\x9c\xf7\x9dd\x9d\ +\xd2\x9e@\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0i\xa0\xd8\xa1\ +G\xa1\xb6\xa2&\xa2\x96\xa3\x06\xa3v\xa3\xe6\xa4V\xa4\ +\xc7\xa58\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7n\xa7\xe0\xa8\ +R\xa8\xc4\xa97\xa9\xa9\xaa\x1c\xaa\x8f\xab\x02\xabu\xab\ +\xe9\xac\x5c\xac\xd0\xadD\xad\xb8\xae-\xae\xa1\xaf\x16\xaf\ +\x8b\xb0\x00\xb0u\xb0\xea\xb1`\xb1\xd6\xb2K\xb2\xc2\xb3\ +8\xb3\xae\xb4%\xb4\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6y\xb6\ +\xf0\xb7h\xb7\xe0\xb8Y\xb8\xd1\xb9J\xb9\xc2\xba;\xba\ +\xb5\xbb.\xbb\xa7\xbc!\xbc\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\ +\x84\xbe\xff\xbfz\xbf\xf5\xc0p\xc0\xec\xc1g\xc1\xe3\xc2\ +_\xc2\xdb\xc3X\xc3\xd4\xc4Q\xc4\xce\xc5K\xc5\xc8\xc6\ +F\xc6\xc3\xc7A\xc7\xbf\xc8=\xc8\xbc\xc9:\xc9\xb9\xca\ +8\xca\xb7\xcb6\xcb\xb6\xcc5\xcc\xb5\xcd5\xcd\xb5\xce\ +6\xce\xb6\xcf7\xcf\xb8\xd09\xd0\xba\xd1<\xd1\xbe\xd2\ +?\xd2\xc1\xd3D\xd3\xc6\xd4I\xd4\xcb\xd5N\xd5\xd1\xd6\ +U\xd6\xd8\xd7\x5c\xd7\xe0\xd8d\xd8\xe8\xd9l\xd9\xf1\xda\ +v\xda\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\x96\xde\x1c\xde\ +\xa2\xdf)\xdf\xaf\xe06\xe0\xbd\xe1D\xe1\xcc\xe2S\xe2\ +\xdb\xe3c\xe3\xeb\xe4s\xe4\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\ +\x1f\xe7\xa9\xe82\xe8\xbc\xe9F\xe9\xd0\xea[\xea\xe5\xeb\ +p\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee(\xee\xb4\xef@\xef\ +\xcc\xf0X\xf0\xe5\xf1r\xf1\xff\xf2\x8c\xf3\x19\xf3\xa7\xf4\ +4\xf4\xc2\xf5P\xf5\xde\xf6m\xf6\xfb\xf7\x8a\xf8\x19\xf8\ +\xa8\xf98\xf9\xc7\xfaW\xfa\xe7\xfbw\xfc\x07\xfc\x98\xfd\ +)\xfd\xba\xfeK\xfe\xdc\xffm\xff\xff\x80\x00 P8\ +$\x16\x0d\x07\x84BaP\xb8d6\x1d\x0f\x88Db\ +Q8\xa4V-\x17\x8cFcQ\xb8\xe4v=\x1f\x90\ +HdR9$\x96M'\x94JeR\xb9d\xb6]\ +/\x98A\x00\x930(*l\x0c\x9c\x03\x02\x13`P\ +0\x07?\x02?\xe8O\xe8X\x06 \x01\xa4\x00hO\ +\xfa$\x1a\x93H\x82R\xdf\xf0J}J\x06\xff\xa4\x80\ +\xa9t\xd0\x05\x1a\x07U\xa5\xd5\xeb\xf4\xfa\x8d\x86\x05S\ +\x81S\xe9VhK\xfc\x05o\x01\xd5\xaa\xf6\xca\x8d~\ +\x0fh\xb4\xd2\x00P\x8a\x95\x92\xefK\xb0P\xacW\x9a\ +M\xca\x9dI\xbe]05\xca\xf0\x02\x98\xfe\xc8>\xf2\ +O\xa7\xa6U\xe2\xf3\xcc<2O\xb7\xce\x1aSO\x07\ +\xe8Bcm!\x10\x87\xa7)\x89\xb5C\x00v\xb4#\ +?\x01\x81*\x98\x88]\xf7i\x87\xa4g\xb18+\x1e\ +\xe7\x01\xb7\x8e\xed\xaa\x17:\x15\xfa\x0d\xba\xde\xda\xf7\x98\ +Ln;\x7f\xbe\xe2\xf0!\x99\xec\x0d\xe2\xbbj\xe8T\ +\xab\x18^\x7f6\x9f\x90\xc8uz\xbb>\xcf\x81\xfc\xf8\ +\xf4=\x9c\xbe\xb6\xf3#\xdc\xbaa|VN\x0f\xa3c\ +6\xfa\x94\x04\xbfAb\xcf\xf4\xe0)\xc0\x03:r\x08\ +-\xebzc\x03\xc1\x10L\x15\x05>\xe6\x94\x1cc\x13\ +p\x89\x04h\xc2\x86+\xee\x90\x00\xd0\xc8\x10(C\x83\ + \xdb\x0f\x91\x00LD\x05\xc1q,M\x13\xc5\x09B\ +\xa4fE\x85\xf9\x17\x17\x8d\xa6\xfcdk\xb9\x08\xb0;\ +\x1b\x84\x84LtV5A0_\x14\xc8\x12\x0c\x85!\ +\xa2\xe7\xd4\x8c|\x93RI\x00SI\x84|\x8c}\x1f\ +(\xc4\x0a\x01\x07\xb2\xa8\x9aCK\x058\x0f-\x812\ +$\xbd/\xcc\x13\x0a\x04gL\x86\x08\xed3\x8a\x87\x84\ +\xd4v#\x09\x98\x08\x02\x8a\xf3\x88\xda7\xce\x84\x5c\xa7\ +1O\x13\xcc\xf5\x03\x9d\x13\xe9\xc44P\x02\x11\xc9A\ +\x9b\xa8\xc42\x03\x01\x03-\x14?\x0c\x14h\xf0\xe3O\ +t\x8d%I\xa3\xe7\x95,w\x0c\x94\xc8|oS\x86\ +\xad\x0d\x0d\x0d\x95\x09\x0e\xfe\x8b#}!JU\x15M\ +T\x873\x07\x99\xe1E\x0c\xa1\xf1\xb9Y\x9ah\xc4\xb6\ +\x03\x810\xf8\xdaDN\x22\xb8\xdbS\xc4\xae\x13\x9bU\ +\xc8q\xab\xae\xe1\xa1V\x15UV\x9e\x14\xc8\xc8\x1e\x9b\ +\xb6\x89\xa9O\xd1\x03u\xacD\xd7\xb5\xfb\xa4\x89\xaaF\ +\xdd\xbch\x9e\xb7\x09\xe6\xea\xcav\x13\xa8\xe0\x1f\xb7I\ +\xfb;\xb8\x8e\xdb\xb2\xf29Wr\xd4\x82<\xc8E\x80\ +\xe3\xbb\xab+\xa3d9\xd7\xdd\xe3}-\xd0-\xec\xe0\ +X\xc8\xa3\xc6\xe4\xbc\xce\xc5\xde\xbf\xb9`\x04\xdc\x02\x84\ +X\x88T\x05\xe2\x80r8\xca\x9e\x87\x8d\x9c\x1e\xd6f\ +\xe5j\x8b\xd6\xe0MB6\x10\xe2\xc6L7^\xe8\x89\ +\xf9\x95\x9fc\xa6\x5c(\x9a\xf9\x89\x9be!\xf72\x87\ +\x02\x80xN\x15\x80:\xb6\x15 \xed.\x92\x9d\xea\x81\ +\xe8O\x06R\xe9\xad\x97r\xb5\x9b\xae\x17\xa6\x8c\xe0`\ +\xeec\xcdr\xbb\xb9\xa5\x93|\xdd\xb4\x83\xcc\x08\xeb\x80\ +\xa8\xf9\xaf\x93an\xc4\x1cb\xec\xb0\xc7\xb3\x87\x96\x89\ +\xbbi\xe4\x12\xe6GQ\xbf\xa3z8\xfb\x8c\xdb\xa8~\ +i\xef\x06E\x89\xbd\xef\x88>\xb8\x08\x82\xb1\xd1\x12U\ +\x86\x5c(~\x8eY\x9b\xa8\xcc\x1f\xdb\xc6\xd9\xa5[K\ +\x95\xd5y9h\xe8{\xefX\x07\xc6\xa74d\xef\xa8\ +\xbcD\x04\x81a\x0fD\x14\x82\x9d(2\x0a\xf5\x00\xd3\ +Z\x07\x02G\x7f\x5cu\x9d\x9d\x89\xccu\xf6\x8758\ +o\x1a\xd0\xbf:\x8a\x82\x1d\xe8)\x17\x91epa\xe1\ +\x87\x9c\xaa\x1d\x8ccT\xce9Zr\x15\xc6\xdf\x93\x0b\ +\x19E\xb6\x89I\xe7\xc8\xcf\xeb\x88\x1b\xc1\xa7\xbdwh\ +Gz\x08\x02\x82\x07\xc4(|B\x00\x9e\xd2\x06\xc2%\ +\x0e\x04#\x07\xb7\xdcy\x98\xdf\x89n`~\x85\x8b\xe2\ +a\x16_q\xecz{\xbe\xf7|\xf0\x1e\x13\xc4x\xc4\ +5f=p\xce\x10\x06\xd4\x09\x1a+P\x049%H\ +\xdc\x88\xd9\xf7\x80\xc1\x01\x07\x0d!\x8e\xf7I\xe0\x0c\x0b\ +\x90l9\xc1\xb0\xb8\x1d \xc90MC\xc0v\x09\xc8\ +L \xc5l)\x13\x0e\xe9\xce\xbd\xf0(\x22\xa1\x80\xad\ +p\xa0\xc8\x1f6V2\xe2\x81\xfc\x09\x1bP-\xb6\xbc\ +\xe5D\xf4\x1e\x92\xfc\x22\x8e]E9\x976\xdf\x02<\ +I\x0b\x01\xce&\x09\x03\xf4\x04\x80\xbaD=c\x94o\ +\x08X\xac\x19\x86TY\x17\xad\xf1\xd5\x81!\x19\x17\xc5\ +t3p\xe4mf9\x86:\xc7\xc8\xb3!rKf\ +\x01\x90\xc6\xe8\xdd\x9e\xd3\xdcR)L5GQ\x0a\xa3\ +C\x00xRk\xa8~\x08\xe8\xfc\x1cEL\x81\x12\x8a\ +\xaa\x17@\x00c!\xc1\xe9\x1c\x5c#\xd4y6p\xc6\ +\x0f#;\xcddP\xfd\x93\xc6\xd2\x16\xca\xc7\xe0\xfbs\ +\x11\xc5=\x00Y<\x01\x9c\x10\xab\x07\xd2\x8c'=\xd1\ +Y)\xc4\xb0\x88\x95A\xadI\xb7\xf7\x02\x8e\xe1\x9c5\ +\x8c\x86f3<\xc8z\x02V\xb0n[\x09\xc9\xb9\x99\ +70\xe6\x86\xa3\x9cO!\xf6b\x09\xc0\x9f1\xc3\x19\ + \x1dS,r\x8d\x89\x9c3\x9dp\xef\x1dO \xd0\ +\x80\xf8\x9f\x14\x01T\xd9\x06\xb0\xb8\x90\x09y\xbc\x1f\x04\ +\xec\xe1\x10\xa9\xeaWC\x01\x14+d81\x912\xcd\ +W1\xb6\xd4\xdb#K\x91D\x11\xb1\xe9\x91\x18\xde\xe2\ +\xe4\xe2`\x81\xf109\x89\x020\xa5\x87\x90\xee\x15T\ +\x0cJ\x8b\x8a\x0c)\x8f\xa0\xe0\x1b\x0c\x18\xa4\x82z\x1c\ +\x0c\x02e\x11\x0c\x13\x1c'\x867>\x89\x16\xe1K\x0e\ +\xb4l)?A\x80,\x13\x0c\x85E\xe2\xbat\xce\xb2\ +4\xf2!\xc4:\x87\x93\xc6\x1f2H\x1eG$\xc0\xfb\ +cs\x02a$ IM\xc1jL\x14\xc3=\x9c\x11\ +\x02\xa4)j\x00\x8e\x135\x0c?\x8fz\x8c=IC\ +\xdf\x02a\xca\xa6\x09\x00\x95S\xc2\xe1\x14\x7fC\xcd\x0e\ +\x05\x00H;\xaa\xc0\xeaH\x93\x96\x18\xd2W\x11-\x22\ +,\x91\x96\xeeJ \x11\xc7\xab\x0e)\xa2D\x125\xac\ +Z\x83\xba\xdc\x12\x88\x85F\x1e\xe3\xd6\x8d\x87P\xa2{\ +\x86@\xbbD\xd4D&\x05\xe0\xfd_\xc4\xf5=!\xe2\ +\xae\xc2\x09W\x04\x1b\x12$.\x9c\xd3\xa2DIb\x15\ +\x01^\xc5*\x81\x95\x92J\xcfR!=\xdb\xbbyH\ +\x00\xd2\xce\x04\x011g\xc5\xf9\x10I\xe3\xe2\x5c\x84\xa4\ +X3-\x0aC\x096\xac-\x88\x1b\x5c(\x97a\x0a\ +\xa6!V\xda\x02\xa1\xc7m\xc6\xe2@\xab\x93\x9e\xaf\x11\ +\xb7\x90\xc6\xeb\x15,W3\xcd\xcaYg-/\xa2-\ +iE\x22B\xe6\x0b@ys\xc2Y\x10\xb9\x82@:\ +\x0aK\xac#S\xd0w\xbbBR\xda\x05YXC\xe8\ +\x18\xaa\x12\x93\x986\xa4\x08]\x17\xc4`\xafx`\xc0\ +\x1eCa\xe3J`T\x92\x8dw\x16!\x11:cL\ +\xe2:%\x83\x22\xf2\xfe\x0e\xc5\x0e\x01\xc8dg\x0bx\ +\x0c\x18\xae\xa1\xfa\x9e\x98\xa0\x0b\x01\xa2\xbf\x06\x0d\xc8\x9e\ +\x05\x88`\xe9\xc2C\x8c%\xe1P=n\x9a\xeb\x82\x15\ +\x92\xc6E.\x19\x1a\xda.\x09\x15d2\xe4D\x85l\ +L\x1b,q\x09z\xb0N|\xa0\xb3N\x10\xc2\x9e\x1a\ +\x22\x17\xa07\x0a\x8cl$\xd5UL\x0eB8-c\ +\xd0\xe2D \xf03\x99\xc3`g\x22kwc'U\ +\xees\x0e5\xc7\xcbv\xdfK\xe0\x89\x93\x87\x18\xb5\x05\ +\x07\xbc\xac&B\x8eY\x0c\xc4@$e\xd04\xecG\ +`\xe7U@\xbf2\x03\xa9\xc2'F)\x10\x12\x99\xac\ +<\x0a\x0c\xdc\x22r3]\xb1v\xf6\x93\x99l\x96\xb7\ +\xb2m\xc2y\xf6V\xfa\x91($\xf6 \xac\x17D\xa2\ +KB\x0b`u\xa1\xc2I\x0c\xaeC\xd5*\x83\xd0\x18\ +\xdf%p\xbb\xd2Uh\x87\xcaqY*e^qp\ +\x10\x032\x02\xf0w\x8aHDe\xac2\xd8\x8b>\xbc\ +IYr\x88\xfb\x1fR\xfe\xfc\xa0\xbat4\x11\xea?\ +!c\x8bZ\x0d\xb0\xa5\xad\xc13\xdd\x19:\xec}\x9b\ +\x03dB\xe8\xf0\xb0e\xc1\xd0(\xa2jD\xf0o[\ +\xc5\xb8\xcf\x1c\xcb_\x08w|\xae\x22\xbe\xd4\x04\x1e\xcc\ +eD\x13\xa4\x85\xd8\xea\x95\xc42\x84\x8d\x80\xa9\xb7\xc1\ +K\xdd~#\x18|_\xf2\x19M#\xc3dD\xb6*\ +\x18\xe1\xcb}\x9d\xa2.L\xda\x0a\xeezg\xd9\xed\x94\ +\xa3\x85\x9aD\xa3\x0f~\x0fJ/\xb7\x0f\xae\xdf\x0a\x9b\ +\x85\xdd\xee=\xca\x86p\x01\x0b\x9d\xea\xf4\x16\xecg}\ +b\xf7vuc9\xdd\xc7o7'\xb4\xb6Y\x0d\xcf\ +\xf0\x1f@\xa2m\xf80\xf7\xf2#\xe0\x14+\x81pG\ +;\xc1\xb77\x0aZ\x5c3\x87>\x09\x0d\x220\xec\x8c\ +c{\xca[\xe2LL\x15\xb1G\x19\x8d\xc6N\x09\xf1\ +\xdd\xf7\xbfw\xf9\x0b\xdb\xbc\x97q?\x1e\x0e\x01\xb8I\ +\x0a\xe1i\xc7\x86\xa2Y]\x86\xb8\x89\x19\xa5\x0d\xda\xc9\ +\x11w\xd6\x1c:\xc0\x8b\xbb\xa1\xafi\x90m\xab\xbe\x90\ +_\x1f\xe4.\x83\x91\xed\xed\xc1\xd1w')\xe9\x5c\xaf\ +\xa6i\xa9^\x22Ee%\xeb\xa4\x15\xc4\xb7nip\ +\xaf\x9f\x18\xde\xd6_|O\x8e\xc0\x82\xbb\x17A!]\ +\x0f\xb3\xf0^\x8d\xda\x88OK\x0a\xfd5\x05\xee\xc9\xcf\ +\xd4H\xc6\xa2V8\x84\x8a>\xb6\xdf\x8fB\xd0p\x97\ +\xba\xab\x9e\xa0\xed\x04\x81\xef\xf8\xbe\xf4C\xb8\x04zP\ +\x14C5\xa0\xe2\x1br8\x1d\xbd\xd1m\xeb\xc7$\x9e\ +\x00\xa0\x18\x86#!\xbe5\xd5 /\xa6(&WJ\ +\xa1\x10*\xa3\x17s \x94\x00w\xc1>\xef\x88\x92\xe7\ +6\xc4\xff\x08\x81\xbdU\x00\x1a\x02\x0f>$\xc5?\x9b\ +\x86\xben\x1b\x00\xff\xd9\x04\xef\xf5\x04-\xd5\xbe(\x7f\ +\x00\x89\x17?\x8cT\x12\xcd\x8fI9\x84\xec\x1e\x10\xe3\ +\xe3\x91H\xd4\x885A\x1a\xeb\xefl\x92MP%\x00\ +#\x17\xdcO\x1e\x88_\x0a\xdc\xac\x0f`\xb4\x85\x82B\ +\xf1\xc8dp\xa9d\xe2G\x92Y\xef(\x22fB\xcf\ +g\xa2\xf9\x82\x04\xfeh\xe4$(\xac\x10\xa1L\x89 \ +\x8e\x0b/\xf4R\x8c\xdc\x14\x01\x0e\xcda(\x0fBI\ +\x00\x8f \x22\xe5\x98\x9d\xc5\xa4\x92P\x1c\x88%\x86\x22\ +h\x88V+\x94#\xc0q\x06`\x8b\x04\x01u\x03e\ +T<\x01\xfa\xe1\x8fl\x1a\xe2@\xc8\xec\xe8#)\x16\ +\x1eNf\xcf\x0e,\xfe\x223\x02B@\x0fP\x98\x13\ +\x0dn\x0a@\xcf\x07\x06\xf6\x12\xb0\xa8\x0fA?\x0a\xe1\ +\x0e$\x0b\xce\x8b\xeb\xd4x\x8ec\x08\x87\x94\xfd\xb0\x18\ +\xf9%\xae\xfa\xf0 \x00\x0e6\x82\x8f<$\x10@\x17\ +0f\x07\x00\x8c\x22\x08\xb2\x19Ay\x07P\xa4$G\ +>\x01\x8d:\xf5\xa2\x1e\x16\x10\xfc\x13a\x09\x10,\xb6\ +#\xe9\xaa\x02k\xd0\x15\xf0\x82#\x07\x90\xe2\x8c\xf2\xf9\ +\x05p\xef%\xb4\xefk\x8e\xd5MX\x98\x22@I!\ +4\x18\x0f\xf2!\xed\x1a\x01\x8d\x17\x0e\xe2B\xa6\xe0H\ +\x05\x8cl\x15\x08\xd0!\xa1k\x15!D\x0f\xf1X\x0b\ +\xf0~\xceHb\xd90\xcf\x11m\xe3\x08\xca\xc6\xda1\ +#\x05\xac\xfc\xef\xab2\xfe\x82?\x13\x114p\xc2!\ +\x13\xb1?\x14\x02?\x14QH\xc6\xd1N!\x91R\x16\ +\xb1W\x15\xb0\xb4\xe1\xed\xdb\x00\xca\xbeU\xcf\xd9\x16\xce\ +\xf1\x17\x10\xce\xc5g\xb0\xda\xc27\x18\x116!\xd1\x88\ +\xa8\xf1\x8d\x18\xeao\x191L\x22\x11\x9b\x19\xe0\xff\x15\ +\xc2>\xe9\xe9a\x1a\x8f\xd4\x96\xa6<\xe2\xcd\xeb\x17M\ +\xef\x12\x8b\x92\xd5\xa2;\x1c\x11\x85\x13\x84\xab\x13\xd1\xc9\ +\x1c\xa2;\x19\x11K\x19b\x17\x1dqY\x1d\xb1\xa2\xe5\ +\xcaG\x16Nt!p\x87\x08\xae+\x16\xed\xe8\xbe\x91\ +\xf0\xef\x8dT\xcan\xfe#\x91\xfc\x06H\xc7\x1cR\x03\ +\x18\xb2\x08#r\x0d\x19Q\xd5\x15R\x17\x1d\xc2<\xc8\ +\xf2!\x12EX31\xaf\x22\xac\xf4\x92\x90\x1f\x22\x22\ +\x15\x09Q~I1\x83$\x11\x87$r\x06@\xe07\ +(`B\x06r\x8c\x08\x08\x5c\xcc\x01\xcf\x0eax\xcc\ +\x01\xd0A2O\x1d\x22\x1f!Q\xa0#\xf0I\x1eB\ +4\xee\xa7\x17\x0cB$\xc4p\xca\xf9rp!0^\ +\x88\xd1-'q3\x1c\x22\x1b\x1cj\xe6%\x8fJ\x01\ +\x00\x14rP\xcc\x9e\xaab\x84\xc18\x10P:\x11\x09\ +0\x1f\x82Y*2\x10!R\xa9!\x91\xdf\x16\x0bx\ +\xfd0\x11\x11\x90\x8ed\xef6\x1fR9\x17\xc2=#\ +\xf2C-2\x81-bN\xbf\xf0:\x19\x04z\x06\x02\ +0\x18\xb34\x16\xc4\xe8\x0d\xeb\xa2%r\xf9%1\x9d\ +%q^p\x0e\xa1+\x023+G\x19\x1b\x11\x1c\xb8\ +ew\x09\x021,pc\x1f\xb2y-\x02\x19-J\ +\x90$\xe6\xde\x8f\x08\xf4#\xe1\x0f7\xe0\xd0\x85!Z\ +\x13\x22Q42\xa7%R\xaa#\xcf\x1c\xc3q\xff+\ +*\xc0\xf2mI5\xb1!\x0c\xf2u1\xb3k9\xb3\ + \xd1\xd2H$\x22r\x01\xeb\xf8\x17\x81\xd6a\xe2@\ +\xab\x01\xdc\x1d,\xba\x09\x004hbE8\xc2\x1d/\ +\xf2X#\xb1\x0ax\x10\x0b'\xcd\xde\xe2qk&\x93\ +\xa5\x1bR\xc2!\x13e\x1f\x92=:\xf3\xe9$S\xb5\ +(\x22C\x0d\xf0j\xcdpn$\xe4\x00\x0a`N\x1c\ +4\x1c\x1bBI=\x91Q9\x13\x019Q\xa4\xf1\xf3\ +P#\x12'\x0c3X\xfd\xc9\xe55\xf3\x10#jb\ +\x93r;\x1b\xf4\x011\xf3o23r$@\x83E\ +\xa0\xa2\x80\x02P\xc8,\x86\xc8\xa2GBQ\x99B\x93\ +\xde#\x91\xe0\xee\x10J\x22\xcf$VS\xa3C\xd1\x1f\ +?R`\xe3K\x91\x06\x13\xfdD\xd2\xcf;\x14S@\ +s$$J\x1c\x04\xe0`\xa8\x01J\x19\xe2P\xc5\xe0\ +&\x1e4\xb4\x1d\xd4#\x1c\xf2\x0f4Q\xd9G\x227\ +\x10\xb1\x0f\x11\x22.\xb7\xe7\x95\x01r\xbbC\xee/\x17\ +3b\xe7\x8d\x01\x0dr\xcd'\xb4P!sp$\x84\ +\xa6\x15\xd4\xf4\x1b@9O\xa0F$\x0bN\x17\xef\x9e\ +\x08S\x8bK\xd2Q8\xf3G9\x22;%\xc8\x05?\ +b\x0fCe\x9f+\x82#+\xc9t[3\x131p\ +'?\xf4\x97@3\xb3 T\x9e$\xa0\x8bT \xad\ +7\xe1\x0e\x15\x228\x8f\x88&\x1a\x15T\xcd\x22OF\ +\xd2\x13G\x13J\x02\xac\xe70\x8e\xa42\xcb\x81H0\ +\xc7Hr.\xefR2!\xe7\xaas\x01\xabX!\x95\ +\x12\xf4O'\xf4\x9dEbR\x0cU\x94\x0f@\xd3Y\ +\xa1\x08\xc5#\xef\x02\xa0\xcc\x16\x95\xa8\x142\xf7P\xd2\ +\xa5=\xb5a*\xd4.\xc9\x00{\x16umM5q\ +MuuM\xb3\xa9\x17\x91\xbc#S\x1dX\xd5=Y\ +\x02Xda\x0c\x8f\x00\xf2\x22\x11\x02\x10\x80\xcb\x0f\xc1\ +`\x13\x82aU\xd2\xfd[t-!\xc7\x83L\xc2-\ +\x16\x85cRB!R\x8cK,\x14\x8a!\x95~\x88\ +\xb5\x82\x1a\xb5\x87NsmN\xd4T&\x00\xbfb\xe0\ +\xecWL\xe0!\xe0\xf1c\xa0\xad;\xe1W_u\xb1\ +/\xa2\x13=\xd2\x1a\x85\xf1\xa6\x86\x8b\xdc\xd9\xcaW?\ +4@z5.\xdf3\x196\x957N\xa2\x15N\xe2\ +_b\xe0\xbfc$?cb\x1dc\xa0\xf1c\xeb\xf9\ +d\x22__\x96K_\xd5\x16\xc3$v\xeeU\x1c \ +\xd6\x08\x07\xd6\x0c!\xef\xdfWt\xdcH\xa4\x8e\xc5\x94\ +K]U\x8b \x15\x8fb\xd61cB!h\x16\x84\ +\x17\x96\x88%\xd6\x8c!\x16M0'\x01Vl\x92#\ +p\x86\x91\xc9!\x5cu'M\x93`\x22\xf4F\x88\xb5\ +\xd2#5\xd7k\x95\xda&\x0a\x9e\x09@\xb8\x10W\x04\ +\x14b Y\xc0yUA\xa1U\x96\xcddt\xc14\ +\x91\x084T\xcbV\x91\x14\xde\x16\x0bC\xa2&}h\ +\x1cn6b\xef\xd6gST\xe9]\x93\xb6%\x8f\xec\ +\xb0\x81V\x1a\xc8\x9e\x8a\x22\x0ev\xe1\xaa\xc0`\xb6\x06\ +P\x05Z\xf1GK\xf5\x11L6N\x80\x12_W\xad\ +\x99>\xd7+?\x14\x855\xc1\x11n\xa2-:\xb6i\ +s\xf6\xf9t\x22^\x04\x17\x90\x05\x07$t@B\x05\ +!\xady\xe1\x96\xd0\x81$\x0e\xe9\x96\x1dA\xcb*\x17\ +\x19vw\x1c#\xd4\xc9\x0b\x96\x04\x22\xb6\x9fj\x22\x1c\ +\xd4\xc5\xaf\x1e\xf4\xdf\x1fT\x91,\xb3\xadf\xb7A@\ +\x92J#\x16\xce \xf6\xd3%\xb6\x94pi\xd2\x07\xd0\ +\xcfG\xf4\xd5nu\xcb|\xd6\xacJ\x0f\x9e\xfa4\xe5\ +}w\x89@V\xfb}\xe25~\x22\x0d~b:\xfc\ +\xf7\xbe\x22\x97\xf5nV\x0em\xc5D\xca\x0f\xe42f\ +7a\xf6#\x80\x96'f\xf6+\x81\x023\x81B\x0b\ +\x81\x8299x:\x22\xb0\x87Y@\xc4\x07i\xdf\x05\ +X+sMR\xd5q\xf7}W\x87\x84\xe2\x11g\x18\ +@\x22\xf8D \x98H#r\xafeO\xd4\x82n\xab\ +&\xa6H\x88\x15\xcf#veS4\x95\x80\xb5;x\ +\xd8r\x22Xv xz#Tw9\x98\x81\x01\x15\ +o\x1e\xb2-\x5c\xd6\x9a \xb7\x84#\x8b>\x13\x01|\ +\xb3\x80h\x08\x22 \xbb@\xee\x0a\x81\xf3\x8da\xf1\x89\ +\xe2.\x03X\xe0\x04\x04\xce\x0e\xc9\x06!\xf5\xa8\x16\x81\ +@\x10\x18\xf4\x0c7j\xa4x\x1e\x22sU|B\x1b\ +jx\xb9ab\x17\x8b\xe26\x94,^\x0a\x98\xdcO\ +\x0b\xac\x14\x81\x1a\xba`\xe9d\xee!C4\xcf\x5c0\ +\x15\x82V\xa5n\x94C\x82\xf7\xd1,\x8aj#\xa9\xf6\ +\x89\xb9\x1aLM\x86\x0a-\x83\x92\x96S\x00\xf3S&\ +N\xedr\xd5\xc8\x92x\x8a\xcf\x97qH\xcf9N(\ +,$\x0c\x12\x01\xb2\x0e\x039|\x03\xf9JH\x17\x9e\ +\x1a\xc1\x97\x85@u/5b\xc3V\x99\x90\xc2\x15M\ +\x193\x8bMJCMO\x93\xa23n\xe5co\x22\ +8\x06\xb9\xb4\x08A'\x9b\xa1qC\x88)\xc2\x0aS\x82\x81\ +*\xcf\xcf\x18\x0b\xfcH\x06P\x09\x8c\xae\xbd\xc9\xbb\x9e\ +\xa1>\x0a\x91\xa3\x05\x83\x87\xdc\x1cG \xa2\xaa\xf4V\ +\xa0\xa3\x90i\x0b\x9cJ\x9c\x0a\xab\xbc\x0a4\x12\xa2\x9a\ +\x91\x08\x0c|D\x83\x92\x0a> \xa0[\x10{ \xa4\ +(\x1d\x17\x91\xa14d|\xa8\xf0\xdaY\x1b%p\xfa\ +|\xf9\x19\x822\x0aI\xa0\xa13Dn6\xa3k\x92\ +\x19\x97\x0a\x1cp\x95IiLt\xe7\x1f\xe0\x11\x9d)\ +\x90i\x00\xf4\xd3\xa1\xe4L\x8e=6\xa7\xf2s&\xa5\ +\x13\x02O'\xa5\x8e\x99\x9e\x08\x1f\xb3IJ\x82\x89R\ +\xc2,\x5c\x00s\x88\xb2\x18\xce\x8e\x03\xdb\x03\xb1\xf3\xc2\ +}2$\xf2\x99\x9c\x15:\xc7\xf1`\x82\x84\xb3r:\ +nN \x18\xa1:\x06&\xac8\xa5LI4\xf8\x91\ +5\xc6h\x86\x90\x15\xe8(\x1bC$\xe7\xa3\xfc\x01\x0a\ +P\x08d]\xa54\x8aKS$\x94\x9a5?\x08\x94\ +\x09d\x82\x814\xe2`|S\xe2uER$\x95B\ +\x81='\xb5R+\x1eG\xc8!b\x82\x81\x0a\x93\x96\ +\x82\x15\x8d\xa9n\xda\x9c@M\x9cq\xcd'\xe9\xfe~\ +Z\x80\xd5\xa8~\x17\xa8(8\xae\x1f\x08(\x9f\x0b\x86\ +\x85\xd2=]$W\x22=_\x22\x11\xe0\x8e\x82\xd0h\ +%\x8a\xa5\x9c-\xa8\xe7Q\x15\xf2\xea-\x1e\x1bh(\ +H\xb1[\xa8 \xa1p\x17,\xf5x\x9e\x5c\xc8\xed\xd0\ +\x85\xcf\xc1\xad\x02` \xa0R\x98F\x82\xd8\x88\xfa\x0f\ +b\x87\xba=|_KA\xec\xda\x87\xf29\x98\x8b`\ +\xa8\xe6B\x8d\xe0\xe84x\x0f \xa6J\x0a\x0c(\xd2\ +\xf2\x086\xdc\x04\xb2S\x8c \x97\xda\xdat<\xa08\ +l\xf4\x05\xafSG\x0e\xa8\xb9\x1a5\x83\x9bZ(\x1c\ +yi\x06*\x0a\x16)\x83-\xc0N%\xf9\xa0\x01\x9b\ +.F\x90\x17\xab\x87\x81N\xb4y\xa1\xda\x123\xaf#\ +\x14\x9a@\x00\xd2\xa5\x9a\x0a%\xa8\xed\xa9A#\x8c)\ +\x9e\xa5\xaa.\xa5\x94\x8e(6\xba\x02\x0d\xb0\x22\xfb\xc2\ +-I\xd2\xa3\xe2@A\xa9\x87\x02\x0a\x15\xdc\x11be\ +\xb7\xaf\xad\xa8\xf1#\x91(V\xf4\x8a\xf1\xe8\xa4u\x1e\ +\x07\x88.\x18\x82\x00zn\x9e\x9c\xf1\x0b\xfb\xf8\x82\x07\ +\x97\x06T\xa8n\xd2V\x06\x9d\xba:)\xb5\xa3\xe9\x06\ +\x92\x0a\x0f\xa9\x87\x0d\x09p\x1f|\xe3\xe5|\xe6\xacG\ +p\x00\x06\x1c/\x22\x89\xf7\xe8\x93\xa3\x1e\x11\xb0\xaa\xa4\ +E\x5c\x03\xba{\xce\xb0\xed\xa9\x05#\x8f\xfe\x0a#\xe9\ +\x22\x06\x87\xad4M9\xf0\x18\xa6\xd1\x22\x0d\x19\xcb\xa7\ +~c\x12w\x81\x1f(<\x15\xfd\x07\xa4k\xd3\xa7S\ +\xf0\xec\x90q\xaa~,\x82\x01\xfd\xa7\x97\xdb\xe3,s\ +j9TD\x7f\xd6\xe9J\x12\x95\x16\xa9\xb0\xa9\x0d\xd5\ +\xc0\xdc\x09\xe8\xd2\x81@\x88\x90\x00RR\x83\x87\xda\xaf\ + \x89\x08\xa7\x8b4\x8e\x13\x9f\xf9JR\xa3e \x95\ +!\x8a\xb8\x1c\xa9\x82G\x82\xf8\x82\x84\x12\xa46\x128\ +)\x83%\x1dJ\xb8`\x00\xacJa\xb5\x16\x89\x1c&\ +\x984x\xa6W\xf1R\x1e\xe9\x1d\x87\x14g\xa8C\xd4\ +\xa8\xdf \xa0\x80\xa9\x0cu\xc0\x0e\x8c\x1a\x95\x18D\x80\ +\x1e\x95!\xbe\x91\xc1\x14+(\xcaU\x5c\x00\x00\x88T\ +\x86\xf2\xe0\x04p\xd8\xf9A\xc8&T\x85\xd2G]p\ +\xf9\xf6\x13\x95*\x22\x08+\xca)\xe3\xe1\xf2\x80\x80\x1e\ +\x0b#\x80\xfa.\xa8\xf2\x07\x10D\xec\x00!\xe9N\x10\ +\xa9\x1d\x14FH\x00O\xd3\xf0\x1f$\x03t\x82\xb9\x92\ +\x9e\x10\xd7\x04$.\x89\xf8\x1f\xb0\xb2\xa4>\x8d\xa8!\ +TK\x1d\xa0\xc6RltT\xa8\xa9$\x01X\xa6\x90\ +\x00\x0c\x09\x183\x82\x9d@\x10\x88L*\x17\x0c\x86\xc3\ +\xa1\xf1\x08\x8cJ&\x00fE\x910\x93\xb4R7\x1c\ +\x8e\xc2\xd3\xe3I\x09\x89\xff$\x8fI\xa4\xf0\xa9#\xfe\ +Q,\x8f@\x80 \x06\x94\xc8D\xfa\x9a\xb4! \xd9\ +l\xea8\xe3\x04O\x84\x82\xca\x0b\xeawD\xa2\xc3\x1a\ +\x94\x803\xe2\x96\xdb\x84\x87\xa8\xd5\x08c\xc0\x07T\x16\ +\x0cj\xeeYUF\xb7Z\xad\xd4%\xf0\xb6u\x88\xbc\ +\xfe\xb2\xa8k\xd5\xe9y\xa6\x0a3LZ-\xf1\xd6m\ +\xc8\xcf*\xb7\x5c(\xd2\xf2\xc5\xb1S)\x92\xdd\xe7U\ +\xdb\xfc\xb2\xc1\x0e\xb93S\xf2\xa3\x06\x0av\xe2\x02c\ +\x85C\x0c\x8b\xd7\x17\x7fhe\x81o\xcc\xcb^\x12\x1d\ +\xcaI\xe5\xe9\xbba\x9a\x1d\x81\xcfGt\xbah\xde\x12\ +\x1a\xe2\xd6\x82][\x06,$c\xa9\x8e\xcb\xd4\xb6\xc2\ +\xe6\xd6\xbd\x16f)a%\xad\xde\xaa\x04\xcd\x06\xf1\x87\ +bnK\xe7I~\xe1D\xf5\x1c\xe8~\xae \xd3\xea\ +\x87_=\x86D$5\xd1\x8d\x9a\xe4#D\xb7vM\ +\x866J\x92~8\x9b\x96\xa8\x03\x1b\xd5\xc6.X\x97\ +C\xd3}\x95\xfd!\xdd8\x9b?\xf60~\xff\x8c4\ +$\x0c}\xd0\xc3\xfd/\x1d\x16\xc2:\x03C\x1b\xd4\x1d\ +\x08F\x10\x84\xc2\x0aBO0\x0a\x15\x0fC(`\xd1\ +G\x1f8\x0e\x1c}\xdf\x94qb3\x84\x95\x94\xfe,\ +\xd0\x90\x0e\x12B\x92\xf2X\x0a\x8b\x87\x80\xa61<\xdb\ +Sj5\x03\x8f(\xe0\x8aBFx\xa9\x0c?R\xf1\ +1l.\x12xy\xf4\x91^\x98\x81\xe4\x5c\x85\xc4\xa8\ +\xa0\x8a#\xd4,\xe7BG\x94$\xa6x\x0f\xb5\x19H\ +5\x14\xa5-\xc1B\x08\x84$\x17\x94\x10\xa8\xfd\x02\x18\ +\x16\xc2\x91\x80sc\xd9\x1d\xe3\x92R\xc8\x88Y\x89J\ +9>cC\x0e\xf4$\xb0Bd4 \xe2\x01g\xf3\ +\x91\x0a>\xe80qNK\xc4\x94\xa8PBA\x09\xda\ +>\x85@!v\x18\x0c\x8au\x1amwigFo\ +N\xe2!R%\xa5\x10\x80\x12\x8d\xa8\x9ac\xf1\xc0x\ +\x0a\xb5z\x98s\xaa\xa7\x0a\x9aQ\x9b\xda)\x08\xa7\xc0\ +\x00\x22\xa3\xad\x95\x17-\x08\x16^\x02\xbdw\xab\x1b\xba\ +\xfd\xb5\xab\x95\xb6\x183J\x8a\xe5:\xb7\xb2\x91\xe3\x8d\ +/\x14\x96\xc31\x94\xb0Z\x9bM\xa6\xb0\xd6\xf6\xf4\x14\ +K\xca\x94\xa8B\xb2\xed\xf40\xc0\xa3\xc5jH\xebm\ +mVz\xe8e-u\xfd*\x00\xe2\x22!*\x1d.\ +\x0a\xd8\x8f[\x07d\xbe\xa5\xaa\xe6\xb8\xaa\xeab\xee\xc6\ +\xd6\x22\x89\x16RI\x09\x09/GD\xddBF\xf7\x80\ +\xb5\x84\xaf\xe6\x0b\x10_\xf0\x07:Z\x97\x0f\x81\xc9\x09\ +\x1f\x10\x90/\x08V\xd94 \x86\x03\xb225\xc9\x09\ +\xab\x99\xb2\xfc\xc3\xf2\xa8+\x14\x80\xdf\xb3<\x1b\x7f\x8f\ +\xd2-\x09\x16q\xe4\xb0\xa9\x9f\xc0Q\xd0/\xcf\xa8\x1b\ ++\x12\xaf\xb2\xc8\x0f.\x9d\xacT\xa8nBEt$\ +\x07\xbd\x144 \xa9K\xc9+C8B4%\xc3X\ +[\xf4k.\x22\x05R\xa1a\x09\x14\x12\xa0\xf9\x09\xa8\ +\x5c+\xe8\x00\x80\x10\x82\xc1\x8e\x01\x0a\x86D0:\xb5\ +d?ZZ7e\xa5\x02\xdd\x12\x84\xc8\xd2\x04Y\x93\ +\xf08\x89[D 0K\xc1\xd4\xa8\x11\xa2\xd0\x98D\ +\x00\x9e\x10\x83\xc1\x098\xd0\x93>\x8f46\xe3\x1c.\ +\xe6\xb8\xfd\xed\xa7\xd1\x1f}\xe3\x9d\xe8\xba>\x93w\xe7\ +\xfa^\xa3\xa9\xea\xb1\x1e\x9f\xab\xeb\xba\xfe\xc1(\xe8{\ +\x1e\xd3\xb5\xde\xfb>\xdb\xb9\xee\xb4\x1e\xb7\xbb\xef\xbb\xfe\ +\x8b\xb8\xf0\x01E\x01L\x01R\x01Y\x01`\x01g\x01n\x01\ +u\x01|\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\ +\xb1\x01\xb9\x01\xc1\x01\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\ +\xf2\x01\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02&\x02/\x02\ +8\x02A\x02K\x02T\x02]\x02g\x02q\x02z\x02\ +\x84\x02\x8e\x02\x98\x02\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\ +\xd5\x02\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\x16\x03!\x03\ +-\x038\x03C\x03O\x03Z\x03f\x03r\x03~\x03\ +\x8a\x03\x96\x03\xa2\x03\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\ +\xec\x03\xf9\x04\x06\x04\x13\x04 \x04-\x04;\x04H\x04\ +U\x04c\x04q\x04~\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\ +\xc4\x04\xd3\x04\xe1\x04\xf0\x04\xfe\x05\x0d\x05\x1c\x05+\x05\ +:\x05I\x05X\x05g\x05w\x05\x86\x05\x96\x05\xa6\x05\ +\xb5\x05\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\x16\x06'\x06\ +7\x06H\x06Y\x06j\x06{\x06\x8c\x06\x9d\x06\xaf\x06\ +\xc0\x06\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07+\x07=\x07\ +O\x07a\x07t\x07\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\ +\xe5\x07\xf8\x08\x0b\x08\x1f\x082\x08F\x08Z\x08n\x08\ +\x82\x08\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09\ +%\x09:\x09O\x09d\x09y\x09\x8f\x09\xa4\x09\xba\x09\ +\xcf\x09\xe5\x09\xfb\x0a\x11\x0a'\x0a=\x0aT\x0aj\x0a\ +\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b\ +9\x0bQ\x0bi\x0b\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\ +\xf9\x0c\x12\x0c*\x0cC\x0c\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\ +\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d&\x0d@\x0dZ\x0dt\x0d\ +\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e.\x0eI\x0e\ +d\x0e\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f%\x0f\ +A\x0f^\x0fz\x0f\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10\ +&\x10C\x10a\x10~\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\ +\x13\x111\x11O\x11m\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\ +\x07\x12&\x12E\x12d\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\ +\x03\x13#\x13C\x13c\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\ +\x06\x14'\x14I\x14j\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\ +\x12\x154\x15V\x15x\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16\ +&\x16I\x16l\x16\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17\ +A\x17e\x17\x89\x17\xae\x17\xd2\x17\xf7\x18\x1b\x18@\x18\ +e\x18\x8a\x18\xaf\x18\xd5\x18\xfa\x19 \x19E\x19k\x19\ +\x91\x19\xb7\x19\xdd\x1a\x04\x1a*\x1aQ\x1aw\x1a\x9e\x1a\ +\xc5\x1a\xec\x1b\x14\x1b;\x1bc\x1b\x8a\x1b\xb2\x1b\xda\x1c\ +\x02\x1c*\x1cR\x1c{\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1d\ +G\x1dp\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e@\x1ej\x1e\ +\x94\x1e\xbe\x1e\xe9\x1f\x13\x1f>\x1fi\x1f\x94\x1f\xbf\x1f\ +\xea \x15 A l \x98 \xc4 \xf0!\x1c!\ +H!u!\xa1!\xce!\xfb\x22'\x22U\x22\x82\x22\ +\xaf\x22\xdd#\x0a#8#f#\x94#\xc2#\xf0$\ +\x1f$M$|$\xab$\xda%\x09%8%h%\ +\x97%\xc7%\xf7&'&W&\x87&\xb7&\xe8'\ +\x18'I'z'\xab'\xdc(\x0d(?(q(\ +\xa2(\xd4)\x06)8)k)\x9d)\xd0*\x02*\ +5*h*\x9b*\xcf+\x02+6+i+\x9d+\ +\xd1,\x05,9,n,\xa2,\xd7-\x0c-A-\ +v-\xab-\xe1.\x16.L.\x82.\xb7.\xee/\ +$/Z/\x91/\xc7/\xfe050l0\xa40\ +\xdb1\x121J1\x821\xba1\xf22*2c2\ +\x9b2\xd43\x0d3F3\x7f3\xb83\xf14+4\ +e4\x9e4\xd85\x135M5\x875\xc25\xfd6\ +76r6\xae6\xe97$7`7\x9c7\xd78\ +\x148P8\x8c8\xc89\x059B9\x7f9\xbc9\ +\xf9:6:t:\xb2:\xef;-;k;\xaa;\ +\xe8<' >`>\xa0>\xe0?!?a?\xa2?\ +\xe2@#@d@\xa6@\xe7A)AjA\xacA\ +\xeeB0BrB\xb5B\xf7C:C}C\xc0D\ +\x03DGD\x8aD\xceE\x12EUE\x9aE\xdeF\ +\x22FgF\xabF\xf0G5G{G\xc0H\x05H\ +KH\x91H\xd7I\x1dIcI\xa9I\xf0J7J\ +}J\xc4K\x0cKSK\x9aK\xe2L*LrL\ +\xbaM\x02MJM\x93M\xdcN%NnN\xb7O\ +\x00OIO\x93O\xddP'PqP\xbbQ\x06Q\ +PQ\x9bQ\xe6R1R|R\xc7S\x13S_S\ +\xaaS\xf6TBT\x8fT\xdbU(UuU\xc2V\ +\x0fV\x5cV\xa9V\xf7WDW\x92W\xe0X/X\ +}X\xcbY\x1aYiY\xb8Z\x07ZVZ\xa6Z\ +\xf5[E[\x95[\xe5\x5c5\x5c\x86\x5c\xd6]']\ +x]\xc9^\x1a^l^\xbd_\x0f_a_\xb3`\ +\x05`W`\xaa`\xfcaOa\xa2a\xf5bIb\ +\x9cb\xf0cCc\x97c\xebd@d\x94d\xe9e\ +=e\x92e\xe7f=f\x92f\xe8g=g\x93g\ +\xe9h?h\x96h\xeciCi\x9ai\xf1jHj\ +\x9fj\xf7kOk\xa7k\xfflWl\xafm\x08m\ +`m\xb9n\x12nkn\xc4o\x1eoxo\xd1p\ ++p\x86p\xe0q:q\x95q\xf0rKr\xa6s\ +\x01s]s\xb8t\x14tpt\xccu(u\x85u\ +\xe1v>v\x9bv\xf8wVw\xb3x\x11xnx\ +\xccy*y\x89y\xe7zFz\xa5{\x04{c{\ +\xc2|!|\x81|\xe1}A}\xa1~\x01~b~\ +\xc2\x7f#\x7f\x84\x7f\xe5\x80G\x80\xa8\x81\x0a\x81k\x81\ +\xcd\x820\x82\x92\x82\xf4\x83W\x83\xba\x84\x1d\x84\x80\x84\ +\xe3\x85G\x85\xab\x86\x0e\x86r\x86\xd7\x87;\x87\x9f\x88\ +\x04\x88i\x88\xce\x893\x89\x99\x89\xfe\x8ad\x8a\xca\x8b\ +0\x8b\x96\x8b\xfc\x8cc\x8c\xca\x8d1\x8d\x98\x8d\xff\x8e\ +f\x8e\xce\x8f6\x8f\x9e\x90\x06\x90n\x90\xd6\x91?\x91\ +\xa8\x92\x11\x92z\x92\xe3\x93M\x93\xb6\x94 \x94\x8a\x94\ +\xf4\x95_\x95\xc9\x964\x96\x9f\x97\x0a\x97u\x97\xe0\x98\ +L\x98\xb8\x99$\x99\x90\x99\xfc\x9ah\x9a\xd5\x9bB\x9b\ +\xaf\x9c\x1c\x9c\x89\x9c\xf7\x9dd\x9d\xd2\x9e@\x9e\xae\x9f\ +\x1d\x9f\x8b\x9f\xfa\xa0i\xa0\xd8\xa1G\xa1\xb6\xa2&\xa2\ +\x96\xa3\x06\xa3v\xa3\xe6\xa4V\xa4\xc7\xa58\xa5\xa9\xa6\ +\x1a\xa6\x8b\xa6\xfd\xa7n\xa7\xe0\xa8R\xa8\xc4\xa97\xa9\ +\xa9\xaa\x1c\xaa\x8f\xab\x02\xabu\xab\xe9\xac\x5c\xac\xd0\xad\ +D\xad\xb8\xae-\xae\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0u\xb0\ +\xea\xb1`\xb1\xd6\xb2K\xb2\xc2\xb38\xb3\xae\xb4%\xb4\ +\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6y\xb6\xf0\xb7h\xb7\xe0\xb8\ +Y\xb8\xd1\xb9J\xb9\xc2\xba;\xba\xb5\xbb.\xbb\xa7\xbc\ +!\xbc\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\x84\xbe\xff\xbfz\xbf\ +\xf5\xc0p\xc0\xec\xc1g\xc1\xe3\xc2_\xc2\xdb\xc3X\xc3\ +\xd4\xc4Q\xc4\xce\xc5K\xc5\xc8\xc6F\xc6\xc3\xc7A\xc7\ +\xbf\xc8=\xc8\xbc\xc9:\xc9\xb9\xca8\xca\xb7\xcb6\xcb\ +\xb6\xcc5\xcc\xb5\xcd5\xcd\xb5\xce6\xce\xb6\xcf7\xcf\ +\xb8\xd09\xd0\xba\xd1<\xd1\xbe\xd2?\xd2\xc1\xd3D\xd3\ +\xc6\xd4I\xd4\xcb\xd5N\xd5\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\ +\xe0\xd8d\xd8\xe8\xd9l\xd9\xf1\xdav\xda\xfb\xdb\x80\xdc\ +\x05\xdc\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf)\xdf\xaf\xe0\ +6\xe0\xbd\xe1D\xe1\xcc\xe2S\xe2\xdb\xe3c\xe3\xeb\xe4\ +s\xe4\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe82\xe8\ +\xbc\xe9F\xe9\xd0\xea[\xea\xe5\xebp\xeb\xfb\xec\x86\xed\ +\x11\xed\x9c\xee(\xee\xb4\xef@\xef\xcc\xf0X\xf0\xe5\xf1\ +r\xf1\xff\xf2\x8c\xf3\x19\xf3\xa7\xf44\xf4\xc2\xf5P\xf5\ +\xde\xf6m\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf98\xf9\xc7\xfa\ +W\xfa\xe7\xfbw\xfc\x07\xfc\x98\xfd)\xfd\xba\xfeK\xfe\ +\xdc\xffm\xff\xff\ +\x00\x00\x03\xa0\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / entity / \ +Default - Saved<\ +/title>\x0a Created with S\ +ketch.\x0a \ + \x0a\ + \x0a <\ +path d=\x22M13.6916\ +3,3.24686842 L8.\ +01783965,6.52512\ +131 L2.34404932,\ +3.24686842 L8,0.\ +481790242 L13.69\ +163,3.24686842 Z\ + M7.25035308,7.8\ +2264135 L7.25035\ +308,14.7689324 L\ +1.9912897,11.723\ +6967 L1.9912897,\ +4.79310939 L7.25\ +035308,7.8226413\ +5 Z M14.0326515,\ +11.6884321 L8.74\ +360561,14.776916\ +3 L8.74360561,7.\ +8257203 L14.0024\ +918,4.79949203 L\ +14.0326515,11.68\ +84321 Z\x22 id=\x22Sha\ +pe\x22 fill=\x22#4285F\ +4\x22 fill-rule=\x22no\ +nzero\x22>\x0a \ + \x0a\x0a\ +\x00\x00\x04g\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / entity / \ +Editor only - De\ +fault\x0a \ + Created \ +with Sketch.\x0a \x0a \x0a \x0a \x0a<\ +/svg>\x0a\ +\x00\x00\x02\x90\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a Artboard\x0a \ +Created with Ske\ +tch.\x0a \ +\x0a \x0a \x0a \x0a \ + \x0a\x0a\ +\x00\x00#k\ +\x00\ +\x00\xf0\x80x\x9c\xed\x5c\x07\x5c\x93\xc7\xdf\xbf'\x09\x09\ +[\xb62\xc4\x88\x03\x17#\xcc\x10\x01\xd9CE\x11\x10\ +\xd4\xbaB\xf2\x00\x91,\x930\xc4=\xaaV\xad\x03\xad\ +\x0b\xb7\xd6=\xea^\xad\xd6\x89V\xabu\xb7\xd5\xb6\x8e\ +?\xae*\xe2`\xa3y\xef\x9e$\x10\x14\x15$\x8a\xf6\ +}\xbe\xf9\xdc\x93\xbb\xdf\xdd\xfd\xd6\xddsw\xcf\xb8'\ +&\x06t\x02\x00\xe8\x83\x16\xe0\x15\xa0\xc1\x18\x06T\x07\ +*\xf17\x14\x1e0\xad8\x85\x88\xc3r\x98+FU\ +\xd3aa\x8c\xae\x8eS\xe0\xc1\x5c\xc3'q!f\xa1\ +U\xc6Z\x1dG\xb5m\xb4x6\xd7\x94\x9f\x0d0;\ +\xa0\xa7\x8ac>\x98}u<\x10s\xd0\xe2\xd3AK\ +\x16\x0b\x1d\x81\x13\x8cE`\x1eD\xdc\x0a\xc6\xd3\xb0\xb8\ +\x9a\xf2\x94\x1f\xd1\x91\xb3\x16&GM<\x08\x18\x90\xde\ +\x0c\x00\x7f\xa7\xc9\xd1\x88n\xea\x08\xe3\x1eS\x04\x1a\x1d\ +\xee.\x9c\x22Ge\x8c\xa3\x00\xe8\x1e;w \x8a\x1b\ +\xec\x83\xf4\xe3\xc8/\xd0O\xaa\x9fa\xd58\x00\x9c\xcd\ +4\xff\xc1|I2\xce\x8cM\x93($\xf24\x89\x94\ +\x19\x1a\xca\xf4pg\xf92;$\x09\xc4|I\x96\xbc\ +#@I\x8e\xbb\x07\xc7\xdd\x93\xc9\xf2\xe1x\xf8p\xbc\ +X\xc0\xbf[\xb6\x94\xcbK\xc7\x15\xccda\xb8\x9c'\x13H\x15\x02\x89\x98\x89\ +\xd2\xdcdI\x86\x22\xc0\xc9\xc9\x90\xa9\x05\xb5]\x22i\ +\xb5 \xb1\xdc\x95\xb0\xd1\x95'\x11\xb9es\xa5n,\ +Ww\xb7\xba*\xf1y\xd5u\xa4\x192!\xa1\x1a\x9f\ +\xe7\x86\x0bq\x11.V\xc8a=V\x9d\xf5\xa4\x9a\xb6\ +\xab[du\xf6[\x05Cmcb\xde\xad\xafHT\ +gM\xb9\x22\x9f\xef\xc3\xe6\xe1P\x0b\x1cOv\ +\xf1\xf3\xf3rwa\xb3y\x9e.\xbe\xc9\x1e\xde\xc9\xc9\ +\x1e8\xd7\xdd\xc3\x8bh\xcb\xda\xd5\xdf`\xad\x91\xaef\ +M\x98\xca\xf3\xf4\xc0}\xfd\xd8.)\xfc\x14\x96\x8b\xb7\ +\x9f\x17\xdf\xc5\xcf;\xc5\xcf\x85\xeb\xe5\xc3\xf2e\xf9&\ +\xfbp\xb9\xbe\x1a\xd6Z\xd5\xdf`\xdd[&\x80\xa31\ +W\xd8H\x11u\xb0yCT\x94\x00ynD\x1dm\ +\x1b\x8f\x0f\x7f[\xdb\x12\xe3\xa6\x94+\x93\xe3hT\x08\ +p\xd2\x0c\x0bNoT@u\x88\xd1\x85\xc3\xe5\xa1\x11\ +7\x90G\x9c\xf8\xb0\xc1kQ\xdf^M\xf0f\x03\xd6\ +\xcf\x05oT\x7f\xbb\x8c\xac4\x5c\xfc\xae\x01K\xab\xd4\ +\xdb\x99\xc8%)\x8a,\xae\x0c\x0fN\x85\x9e\xae\xcfh\ +QW\xb57\xfc]\xe7y\xa1\x93\x86\x90s3\x1b\xd7\ +\x0c\x9e)\xbe>\xc98\xcb\xc7\x85\xcd\xe7y\xb8p\xd9\ +^\xb0\x05\x90\x0f}\xbdY\x9e\x9e\xbe\x1e\x5c/\x16\x8b\ +\xdf\xb8f\x80m\xc0\xd2\x1a\xad\x9b\xae\x19j\xd8\xf3\xd2\ +\xb8\xe2T\x9c\x1f\xe8\xa6\xa9\xa8!|I-W\xbf\x11\ +\xb0\x91-\xe7\xf3\xdfj9\x15\xb5\xf6\x98\xa8\x19g_\ +\x1bCUE\xb5\x96\x99\xaa5\xac\x9bz\x11\x0b\xd7\xcf\ +n\xd5\x0b\xe8\xba\x14\xd6=H!\xa4\x10R\x08)\x84\ +\x14B\x0a!\x85\x90BH!\xa4\x10R\x08)\x84\x14\ +B\x0a!\x85\x90BH!\xa4\x10R\x08)\x84\x14B\ +\x0a!\x85\x90BH!\xa4\x10R\x08)\x84\x14B\x0a\ +!\x85\x90BH!\xa4\x10R\x08)\x84\x14B\x0a!\ +\x85\x90BH!\xa4\x10R\x08)\x84\x14B\x0a\xd1\xb1\ +\x10\xc3\x9a-\xa9\xb8\x98\x1f\xe0\x94\xe5\xd4-\xd0\x01\x1b\ +\x00\xa8\xf6\xed\x22\x1d(\x80\xd8`\xcb\x0e\x89\x8e\xa1\xb5\ +#v\xc3\x9a\xfdz\xbeb\xf4\xfa\xfcC\x06z\xd2\xcc\ +\xad\xdb\xf4\x8e\xf5\x22\xf28D^\x01\xca\xd7\xec'\x06\ +FR\x99@\xac\xe8\x9d\xa1\x90f(`\x12m\xec\x05\ +\xb1rE|\xb2D\x22$JD\x8b\x158.\xce\x10\ +i\xe2\xe8?T(C\xe9fD\xddxA6*\x11\ +\x22P\xa0:5\x8f\xf0\x85\ +\xca6\x8a:E\xa9\x95rW\xe9\xa8\xf6\xb5\x0b\x91\xa2\ +\x13\xfe\xb0%(\xfa\xea^A\xb4\x0d%H\x15\xd4u\ +\x1dk\xb7\x0c\xcd\x0e\xc5\xa8\xde\xd5\x96\xab0T\x1dT\ +\xdey\x13\xda4\xed\xb2u\x16\xd0\xa0fp\x03\xe2\x0c\ +\xa1Pe\x10\xa0'K2\xc4|\xf9kc\x0bO\xc1\ +\xd2\xa8\x89NH\xad\x93\x01\xbcv\xd6\x80\x90\x9a\xb3\x8b\ +P#\xae\xe6\xe4Ai\xba\x5c(\xe0\xe1\xf2DaO\ +t\xfac\xb5\xe4\xe8\x11y0b\x01\x03\x83HD\x87\ +i\xf1f\xa4\xca$\x19\xd2Z$\xba\x84\xd8\x97\xab\x19\ +\xd9\xc3\xe3Q%\xd5^]\x986\xe1f($\x91\xb8\ +\x18\x97\xa1}\xb2\x84\xf6#\xa4\x9a\x89\xc9PU\x18Q\ +PN\xb4(\x95\xf9\x09\xec\xa7f\xc8\x84\xb5\xa67\xc2\ +\xf9\xb5)1\xf2\xd4\xdaS \x9d+T$pSk\ +\xd1Ly8\xac\x87g+\xa2\xe5Q\x091=5\x83\ +\xac\xbe\x86\x5c\xab\xb0A\x9aD\x96\x13,\x14\xa4j<\ +\xd5Le|\x94\x86\x8c\xbc\xcb\xc7S\xb8\x19\xc4(k\ +\x90\x89\xcb\x14u\x14O\xd4\x90k\x177JN%\xf6\ +\xd1k9\xd7\x5cU!$\xb2:\x03\xa9\xd1K\x22F\ +\xff\x06\x0a\x89\x14N\xa5r\x5c\xdbq\x86B\xe8\xc87\ +\xa8\xc6\xc9\xc4p\xfd\x06\xddH\x86\x06\xe5\xd7\xc8\xc4\x19\ +\xd4AU\x0f\x06J\xb7\x22PC\xb7\x22\xa2\xa8\x09U\ +g\xa51\x91\xdc\xa9v\xd1PU\xc0`\x17@g\x02\ +m\x01h\x010\xe5\xef\xca\xc7\xc0\x98\xd8=9$4\ +\x06\xa6\x0b\x81)\x91\x02\xfcq\xa8\x9e\xf2:\x98\x04\x8c\ +\xf5\xf5\xf5\x0d\xf4\x8d\x0d\x0c\x8c\xcd\x8d\x0c\x8d\xcc\xad\x9b\ +\x19\x1b7\xb3naiimi\xd9\xc2\xdc\x98\x80\xfa\ +\xafn`&FF&\xa6&f\xa6\xa6fV\xa6\xa6\ +\xa6V\xe8`j\xa5\xaab^\x1f\x06\xca\x9f\x81\xb9>\ +T~(\x15s\x02\x14s\x8cj\x8e)\xff\x82\x86\xd2\ +\x95\xc7\xb1nPK=\x8c\x80\xdaqT\x80Qhz\ +t\x86\xbe\x81\xa1\x11\xf6z&\x06(TM\xa6\x19\xc0\ +h\x18\x95B\xa3\xe81\xe8\xfazTcO\x98iN\ +\xa5\xb5\xb6`\xe9\x05\xf7\xe1Z:\x0d\x1f\xefA\xb7\x9a\ +\xb3r{H\x9b\xb6\xd6qG\x92=\xbdd\x13.\x84\ +2\xda\xe5\xc6\x17\xddz\xca\x93{\xdb\xac\xda1\xb1}\ +\xd8\xdc\x04~\xf8\xd1\xd5\x0a\x9f\xe6\x17\xfb\xde\xc6\x9f\xed\ +\x9ct\xecR\xc6\x9d\xe7\x11\xce\xf3\xd6|\xbd\xeb\xbb\xe3\ +\x97\xff\xf7\xe2\xfb\xdd'\xae\x14\x14'\xa6dN\x9e\xbf\ +v\xcf\xc9\xabwK|#\x93R\xb3\xa6,X\xb77\ +\xff\xda\xbdRs@\xa1@mi\x84N\x0c\xba\x9e7\ +\xa1Bk\x96\x05\x0dj0\xdc\xc9R\xcfc\xfc\x1c+\ +\xa4\xc1\x91\xb8\x0bE\x9em\x93o\xc9&\xe4\x86\xc6[\ +\xf3\xe4^O\xdb\xd1\x91\x02\x8c\xf6\xdeG/B%V\ +7\xe7\x87\xf7\xf5Q\xe0\xb7\xabUx\xbb\x06\xce5*\ +(\xff\x04\xc6TB\xa69\xe8\x06\x8a\x13r\xa3\xdbu\ +l\x9b\x1b\xdd=\xbamn\x5cnt\xdbyk\xd4\x84\ +\xde\xca\xdf\x8a\xfb\x1a\x89\xf0\xbey\x8e\x0a\xc3a6\x89\ +g\xfa\xf5{\xba\x7f\xdd\x8e\xeei\x17\xae\xb4?\xeaj\ +vq\xf4\x9a\xcc\xb2- \xd8\xc2x\xe2\x91~\xe5\xd9\ +n+\x0a%\x07\x0e;\xde\xa98\xbd}\xa7(\xbf\xe4\ +\xa5\xcf\x98\x07\x8f\x8b\xa2{\x9df\x1aph\xcdSn\ +\xffp\xe4\x87Q\xbb\x95`C\x7f\xdf\x82A#\x16\x1c\ +\xec\xf5\xabC\xeb\xb6\xebD\xfb\xf7ms\xef\xd2*\xa0\ +\xdb\xc39\xe3iQ\x97]G\xd8\xcc\xd8\xb4\xde#_\ +\xf0\xd7\xbaI\xf3\x0a\xd7l\xba}7i\xb6W\xc9\x8f\ +\xb2\x7f\x0a\x13-\x08\xcd\x94@y\x81\xd0\xd7\xfb\xb9G\ +^\xf8\xf0\xd5\xcb\x1e\xdb]\xaaJ\xecx\xc5\xd2\xe9\xde\ + \xf9\xb2\x91K\xfd\xa7\xf0\xbd\xe6}\xbfn\xe2`\xeb\ +\x19\x17V^m\xb6\xa6\xd5\x86\xbeO\x8bF\x8f\x92\xf3\ +z\xfa\xb3\xc75\xa3\x85l\xb3\xb9\x90\x9a\x19\xb0\xa1\xa3\ +\xebH\xbb\xb3\xebv\x8f\xf3^\xe5egJ\xd9\xfa\xed\ +\x933\x07z,\xbe\xb6\x0f\xdb:\xee\xe7\xaf;\x17\x89\ +W\xe6\xfd= \xec\xe4\x94\x97\xdft\xa4:\xdee\xfb\ +\xadu`wNm\xd6q\xbf\xf5\xbf\xdf\x7f[\x11Z\ +\xb69\xa1\xe7\xc8\xa51\xbff?\xcax\xde\xf2b\xfc\ +\x8fP\xadu\xca\x8b\x84R\xec\x11\x0a\xce\xf4%\x97^\ +\xf4\xda\x12\x18\xd5Y\xeel\xbb\xc8\xfaq\xe6\xccV\xe1\ +\x7f\xeb%_\x8f\x7f8\x82w\xdc,w\xa9\xe9\xdc\xa1\ +]F\x0f:r#\x90\x11\x9e\xeel\xf3\xe3\xe4c\xbb\ +\xa4\x15\xae\x0e_O\xef;k\xc3\xadG\xee7w=\ +|8o\xdf\x98\xd96]\x0fKs\x97\xfc\xfb\xf4q\ +\xfe\x98k\xdfveK\x13\x96/\x10\xcd3\x1cR8\ +\xb1\xf5_/\x1em\xfd_\xb1q\xd2\xd5~\xf6\x0f\xcf\ +\xcf\x9c\xa8\x04mwZ\xc4\xcd\xd9\xde\xc1\xf7\xc6\xd5Y\ +\xab\xbc\x87?\x0b\xfe\x8a\xed}\xf1\x17l}\xe1\xf25\ +\x85\xcfr\xf3`+v\x1f\xab\xbc\xa4jb\xc3\xaa\x9c\ +')\xd7fM\x9c\xd2\xda\xba\xed\xbc;C\xc6\x8f\x8e\ +\x18\x10\x10\x91\xbd\xb7lw\xe2 \x8b\xe9\x9b\xb6(A\ +\xf4\xb7Y\xc7)\xb9\xcbF\xf7_M\xa9\xec\xb9/G\ +\xf84\xabh\xd85Q\xc6\xce\xfb\xdb\xb7\x94\x01\xab\xdc\ +\xf8Es/\x19\xd9\x1f\x980\x88z\xe3\xd2\xf9\x13\x1b\ +\xbfo~=\xb4\xd4=\x7fzo\xc6\xed\xbd\xdf\xf5\xdc\ +L\x1f\x9c\xb5\xf3\xf7W\xf7\xb6GG\x0f\xdf\xd1\x7f\xf6\ +\xaf\xbf\x9aE\xccdl\x8f\x88]\xbb6\xbe\xdf\x96\x89\ +\xc1e\xe5\x1b\xd6\xacS^~W_\xfbC5\x9e\xb5\ +&\xce\xd8A\x80Xy\xa0\x8f \x05\x03>\xbc\x18J\ +\x86\x0bC&\xbc4J\x83q\x05\x0cr\x22\x86.\x83\ +\x9a\xbf\xa7\x04\x13\x84\xc2\x1f\x13.\xc7\xdc\x01\x0b\xf8\xaa\ +\x07F\xe3\xa8\x9e\x02\xb1\x84\x02\x17\x0b\x22x\xfd\x81\xbe\ +\x81\xd2\xaf\xff\x00&\xe3\x1c\x5c,\x18\xc05\x0a\x9c\x16\ +\xb9<\xb94&>\x22\x81\x98D\xc3C\x99\xe8C)\ +\xa0\x16J\xae\xaa\xa6\xa1K.Q\xb1L&h\x18\xcc\ +yR\x19\x9cd\xb0X\x18\xf7\xe4\xe3r8-c\x93\ +`\x5c\x98\xa5\x90\x22:\x1a\xe3\xad\x92\xd3Q\x9c\x82F\ +w+\x19T\x10\xc6[\xa0x\xaa*\xde\x85(\xa3\x8a\ +\x07\xa18_$\x86\xcb\x01\x0a\xd2Y\xca\x17\xf1Q\x1c\ +}\x11jjf\x06Z&P{\xc2\xf8\xe4L\x01\x9e\ +\x05\xe3\x97a\xbc\xad0C$\x80q\xb4\x02\xb5\x12\xe1\ +\x5c\xb8t!\xe6\x8f\xb6\x0a\x9c\x97\x06\xe3h\x05h,\ +K\x88\x83W24\x7f8\x07\x1b\xa7j\xc5\x93\xb5\xe2\ +\x0a81#\xa3B%\xd2\x11\xc4\x0c\xc6\xec\xc0\xeb\xc8\ +d\xf9\xf9\xb1\x99Qx\x96\x10W(\x5cb\xe1\x05;\ +W\xc6g\x86JDR\xae\x18\xae\xefU6\x13\xb0x\ +\xe3#4Z\x8ezgf=\x81\xdaV\x15{\xde\x87\ +h3\xcc\xe6l\x0d\xad\xaer\x92Up~\x85\xab}\ +\xea\xec\x1aZ\xf2\x22\x00\xf6~\x0d@\x8b?khm\ +W\xc0>\x0a\xdbm\xcfy-{lP\x7f\xd1\xfa\xf8\ +\x94\x00\xe7\xb9\x22\x87V\xe3\xbd\x05\xea\x01-y\xae\x88\ +]\xb5{\x98a\xaa\x15\x0c\x13\xf9\x8d\x07\xd7)\x192\ +&\xbc\xfe\xe2\xe1L\x97\xd7;\xf1\x07W\xac[\x8f.\ +qx\x0a\x8e\xae\xf3pf\x22\xece\xf02\x156\xb7\ +\x98/ \xbe\xa3%\x10\xbf\xad\x11?\xb0\xdakP\xf5\ +k\x08\xcb5\xaf\x80\xd5\x10W`v\xde\x0aP\x1f\x9f\ +\x054K#@\x1d\xb8\x0c\xe6`\xd5\xed\xd6\xd3 \x11\ +\xa03/\xa9\xd5=U\xbf'P\xc7\xe5\x04e\x16:\ +\xc8\x05\xc4\x22\x1a\x84\xc6%0y\x19\xb2LU\x1e\xb1\ +n\xd6\x83\xd7\x88\xcd\x80\x15\xb0\x85\xd7\xb3m@\x07x\ +u\xe7\x01\x07\x99\xae \x08\x84\x83\xee\xa07\xbc\xbe\xed\ +\x0f\x06\xc3+\xda4 \x82W\xb7Y`\x14\x18\x0f&\ +\x83\xe9`6\xf8\x0e,\x06\xcb\xc1\x1a\xb0\x01l\x05;\ +\xc0^\xf0#8\x02N\x823\xe07p\x05\x5c\x077\ +A\x01\xf8\x17\x14\x81\x12P\x09\x172\x0c\xcc\x04\xb3\xc4\ +l\xb1VX;\xac3\xe6\x81\xb1\xb1@,\x1c\xeb\x89\ +\xc5a\xfd\xb1\xa1X*&\xc62\xb0Q\xd8Dl:\ +\x96\x8b-\xc6Vb\x1b\xb0\xed\xd8~\xec\x08v\x1a\xbb\ +\x80\xfd\x81\xdd\xc2\x1e`\xcf\xb0\x0a\x0a\x95bL\xb1\xa2\ +\xb4\xa4\xb4\xa7\xb8Q\xd8\x94`J\x0fJ\x02e\x10%\ +\x952\x9c\x92C\x99D\x99IYHYE\xd9L\xd9\ +C9B9C\xb9B\xb9I\xf9\x97RL\x05T#\ +\xaa\x0d\xb55\xd5\x85\xca\xa6\x86R{S\x07PS\xa8\ +2\xea\x18\xea4\xea|\xea*\xeaV\xea\x01j>\xf5\ +\x12\xf5&\xf5\x11\xb5\x9cF\xa7Y\xd2\x984\x17ZW\ +Z\x14\xad/\x8dG\x1bN\x1bC\x9bA[L[O\ +\xdbC;N\xbbD\xbbE+\xa2\xbd\xd23\xd1s\xd0\ +\xeb\xac\xc7\xd1\x8b\xd6\xeb\xa7\x97\xaa\x97\xa57Yo\xbe\ +\xdeZ\xbd\xddz'\xf4\xae\xe8\x15\xe8\x95\xd0\xe9t\x1b\ +\xba3\xdd\x97\x1eE\xefO\x1fF\x1fI\x9fA_J\ +\xdfF\xff\x99~\x81~\x87^\xcc`0l\x19\x9d\x19\ +\x01\x8c\xde\x0c.C\xc1\x98\xccX\xc4\xd8\xcc8\xcc\xb8\ +\xc8(`\x94\xe9\x1b\xe9\xb7\xd2\xf7\xd0\x8f\xd0\x1f\xa0/\ +\xd6\x9f\xa0?_\x7f\xa3\xfe!\xfd\x8b\xfa\xf7\xf4+\x0d\ +\xcc\x0c\xda\x19p\x0cz\x1b\xf0\x0dF\x18\xcc2Xc\ +p\xc0\xe0\xbcA\x81A\xa5\xa1\xb9\xa1\xb3a\x80a\x82\ +\xe10\xc3\xf1\x86\x0b\x0d\xb7\x1a\x9e0\xbca\xf8\xdc\xc8\ +\xc8\xc8\xc9\xc8\xcf\xa8\x8f\x91\xc0h\x9c\xd1B\xa3\x1f\x8c\ +N\x19\xdd2*7\xb60\xeed\x1cj<\xd08\xc3\ +x\xa6\xf1:\xe3\x9f\x8d\xff0~nbb\xd2\xde$\ +\xc8d\x80\x89\xc2d\xa6\xc9\x06\x93c&\x7f\x9b\x94\x99\ +Z\x9a\xba\x9aF\x9b\xf2M\xc7\x9a\xe6\x99\xee1\xbdh\ +Z\xd8\xcc\xa0Y\xbbf\xc1\xcd\x067\xcbi6\xbf\xd9\ +\xcef\xe7\x9b=230ko\x16j\xc65\x1bc\ +\x96g\xb6\xdf\xec\x9aY\xb1\xb9\xa59\xcb\xbc\xb7\xb9\xc8\ +|\x86\xf9F\xf3\xd3\xe6\xf7-\x18\x16\xed-\xc2-\xf8\ +\x16\x93,V[\x1c\xb3\xb8cI\xb5lc\x19j\xc9\ +\xb3\x9ch\xb9\xc6\xf2\x84e\x81\x15\xdd\xca\xd9*\xdaj\ +\x98\xd5t\xab-V\xe7\xac\x8a\xac-\xac\xbd\xac\x13\xad\ +\xb3\xad\xf3\xac\x7f\xb2\xbeiC\xb5io\x13m#\xb4\ +\x99e\xb3\xc3\xe6\xaaME\xf3\x96\xcd\x83\x9b\xe3\xcd\xbf\ +i\xbe\xb5\xf9\xc5\xe6\xa5-\xec[\x04\xb5\xc0[Lk\ +\xb1\xad\xc5\x95\x16\x15\xb6L\xdbp\xdbt\xdb9\xb6{\ +m\xff\xb2\xa3\xd9u\xb2\xebc\x97e\xb7\xcc\xee\x84\xdd\ +#{+\xfb\xae\xf6<\xfbi\xf6;\xec\xfft\xa08\ +tr\x88s\x18\xe9\xb0\xda\xe1\xacCqK\xc7\x96\x91\ +-\xa5-\x17\xb5<\xd6\xf2\x91\xa3\x8dc\x90\xe30\xc7\ +y\x8e\x87\x1c\x1f\xb4\xb2l\x15\xd8J\xd0j^\xab\xc3\ +\xad\x1e2\xad\x99\xc1L!s!\xf38\xb3\xa8\xb5C\ +\xeb\xa8\xd6\x19\xadW\xb6>\xd7\xba\xd2\xc9\xd9\xa9\xaf\xd3\ +\x04\xa7mN\x7f\xb51l\xc3n\x93\xd2f^\x9b\xa3\ +m\x8a\xda\xb6j\x1b\xd3vT\xdbMm\xfflg\xd0\ +\x8e\xdd.\xad\xdd\x82v\xf9\xedJ\xdb;\xb7Oj?\ +\xa5\xfd\xde\xf6\xf7\x9d[8G;\xe78or\xbe\xd1\ +\xc1\xa4C\xb7\x0e\xc3;\xac\xeap\xb9#\xbd#\xbbc\ +z\xc7\xa5\x1d\x7f\xebD\xe9\xe4\xdd)\xadS^\xa7\xf3\ +\x9d)\x9d}:\x0b:/\xed|\xa1\x8b^\x17\xbf.\ +\xe2.\xab\xba\x5cs1v\x09v\xc9t\xd9\xe4r\xcb\ +\xd5\xc6\xb5\xa7\xeb\x04\xd7\xbd\xae\x85nm\xdd\x06\xb8\xcd\ +q\xcbw{\xe5\xee\xed.t_\xe3~\x9de\xc1\xea\ +\xce\x9a\xc0:\xc0z\xe6\xd1\xc9\x83\xe7\x91\xe7q\xd9\xd3\ +\xc43\xc2s\xac\xe7>\xcf\xa7^\x9d\xbdp\xafe^\ +\xbf{[z\xc7xO\xf1>\xea\xfd\xd2\xc7\xd7G\xe6\ +\xb3\xd5\xe7\x81o[\xdf\xa1\xbeK|\xaf\xb1\xad\xd8\xb1\ +\xec\x19\xecS~z~!~c\xfd~\xf4+\xe7\xf8\ +p\x14\x9c\x1d\x9c']]\xba\xa6w\xdd\xd8\xf5\xbe\xbf\ +\xb3?\xee\xbf\xc6\xffN\x80S\x007`e\xc0\xcd@\ +f\xe0\xd0\xc0\x15\x817\xbb\xb5\xee\xc6\xed\xb6\xaa\xdb\xed\ +\xa06A\xfc\xa0\xb5A\xf7\x82;\x06\x0f\x0b\xde\x1c\x5c\ +\x18\xe2\x1e\x22\x0b\xd9\x1dR\x1a\xca\x09\x1d\x1d\xfas\x18\ +5,2lZ\xd8\xb9p\x8b\xf0\xbe\xe1\x8b\xc3\xff\x8e\ +p\x8aH\x8d\xd8\x14Q\x14\xe9\x1d92\xf2\xe7(\xbd\ +\xa8\x1eQs\xa2\xaeE\xb7\x8c\xe6Eo\x88.\xea\xee\ +\xdb}t\xf7\xe3=\x8c{\xc4\xf7X\xdc\xe3v\xcfN\ +=e=\x0f\xc4Pb\xba\xc7\xcc\x8d\xb9\xd1\xab]/\ +q\xaf\xbd\xbdA\xef\xe8\xdes{\xff\x15\xeb\x1c;<\ +\xf6`\x1fz\x9f\xd8>y}\xee\xc6\xb1\xe2F\xc5\xe5\ +\xc7[\xc6\x0f\x89\xdf\x18_\x92\x10\x920+\xe1z\xdf\ +\x0e}3\xfa\x1eMl\x9680qCbiRX\ +Rn\xd2\xcd~n\xfdF\xf7;\xd3\xdf\xae\xbf\xa0\xff\ +\xbe\x01\x8c\x01\x89\x03\xd6\x0e(\xfe*\xfc\xab\xef\xbe*\ +\x18\xe8=p\xf2\xc0\xab\x83\x9c\x07e\x0f:=\xd8n\ +\xb0p\xf0OC\x9a\x0d\xe1\x0e\xd99Toh\xd2\xd0\ +\x8dC\xab\xb8\xbd\xb9\xab\xb8\xc5\xc9\xd1\xc9K\x92\x8bx\ +\xa1\xbc\x05\xbc\x7f\xf9A\xfcy\xfc\x07x\x00\x9e\x8b\xdf\ +K\x09H\xc9M\xb9\x9f\x1a\x90:7\xf5AZ\xb7\xb4\ +\xf9i\x8f\x04\xa1\x82\xc5\x82\xa7\xc3\xa2\x86-\x1fV\x9a\ +\xde;}]\xbaR\x98$\xdc&\xd2\x17\x0d\x15\xed\x17\ +[\x88\xd3\xc5\xc7%\x8e\x92l\xc9\x05ig\xe9d\xe9\ +\xcd\xe1\x9c\xe1\xdf\x0d/\x92\xf5\x90\xad\x95c\xf2A\xf2\ +}\x0a+\xb8\x98:\x9b\xd1!\xe3\xeb\x8c[\x99\x81\x99\ +y\x99eY\x89Y;\xb3\xcd\xb3\xc5\xd9gGt\x1a\ +\xf1\xcd\x88{9\x119\xdf\x8f\xa4\x8d\xe4\x8d<:\xaa\ +\xf5\xa8\xf1\xa3n\x8d\x0e\x1e\xbdr\x0c6&y\xcc\xd1\ +\xb1m\xc6N\x1a[0.r\xdc\xfa\xf1\x86\xe3\xd3\xc7\ +\xff:\xc1}B\xee\x84\x17\x13\x93&\x1e\x98\xd4r\xd2\ +\xb8Iw\xbe\x8e\xfcz\xd3d\xd3\xc9\xb2\xc9\xd7\xa6t\ +\x9d\xb2|*m\xaa`\xea\xb9o<\xbfY\xf4\xcd\xab\ +i\xfci\xbfLw\x9f>\x7fz\xd5\x0c\xde\x8c_\xbe\ +e}\xbb\xf0[\xe5\xcc\x94\x99\xe7f\xf9\xccZ6\x9b\ +>[<\xfb\xea\x9cns\xd6\xe7\x9a\xe7\xe6\xe4\xde\x99\ +\x1b3w\xcf<\xe6\xbci\xf3^|7\xe4\xbb\xd3\xf3\ +\xbd\xe6/_`\xb8 c\xc1\xcd\x85=\x17\xee[\xd4\ +v\xd1\xecEU\x8b\xd3\x16_\xc9\x0b\xc9\xdb\xb6\xc4a\ +\xc97KJ\x97\xf2\x97^\x5c\x16\xb4l\xeb\xf2\x96\xcb\ +\xa7/\xafX!X\xf1\xfb\xca\xc8\x95{V\xb5_5\ +\x7f5}u\xe6\xea\xbbk\x12\xd7\xe4\x7f\xcf\xfe~\xc3\ +Z\xbb\xb5\xd3\xd7\xbe\x5c'^ws}\xdc\xfa\xe3\x1b\ +|7l\xd8\xe8\xb0q\xd6&\xca\xa6\x8cM\x0f6\x0f\ +\xdc\xfc\xdb\x96\xb0-\xfb\xb6\xbal]\xb9\xcdf\xdb\xf4\ +\x1f\xc0\x0f\x19?<\xdc>t\xfb\xd5\x1d=v\x1c\xdd\ +\xc9\xde\xb9uW\xbb]Kv[\xee\x9e\xb6\x07\xdb3\ +bO\xd1\xde\xb4\xbd7\xf7\xf5\xdfwa\x7f\xf7\xfdG\ +\x0ft=\xb0\xfb\xa0\xeb\xc1u?\xb6\xfe1\xef'\xeb\ +\x9ff\x1d2<4\xe9\x90\xf2p\xce\xe1\xe2\x9f\xa5?\ +?:\x92z\xe4\xce\xd1!G\xaf\x1f\xebw\xec\xf2\xf1\ +>\xc7\xcf\x9d\xe8q\xe2\xd4\xc9\x88\x93\xc7\xf2\x83\xf3\x0f\ +\x9f\x0a8\xf5\xe3i\xce\xe9\xfd\xbf\xb0\x7f\xd9{\xc6\xe7\ +\xcc\x9e\xb3\xdegw\xff\xea\xfd\xeb\xees>\xe7\xf6\x9c\ +\xf7=\xbf\xef7\xbf\xdf\x0e\x5c\xf0\xbfp\xe8b\xb7\x8b\ +G.\x85]:y9\xfa\xf2\x99+\xbd\xae\x5c\xb8\xda\ +\xf7\xea\xef\xd7\x06^\xbb\xf9;\xff\xf7\xfb\x7f\x08\xffx\ +\xfag\xe6\x9f\x95\xd7\xc7\xdd\xd0\xbb1\xed/\xb3\xbf\xe6\ +\xff\xed\xf0\xf7\xaa\x7f:\xfe\xb3\xed\xa6\xcf\xcd\x9fn\x85\ +\xdd:{;\xfe\xf6\xf5;\xbc;\xff\xfeO\xfe\xbf\xaa\ +\x82IwM\xee\xce\xbf\xd7\xea\xde\x86\xfb\x1e\xf7\x7f|\ +\x10\xf1\xe0\xb7\x87_=,\xf8W\xfao\xe5\xa3\xc9\x8f\ +\xcd\x1f/)\xecP\xb8\xebI\xd0\x93\xb3E\xfd\x8a\x0a\ +\x9e\xca\x9e*\x9f\xcdxn\xfb|\xdd\x0b\xaf\x17G\x8b\ +c\x8b\xff.\x11\x95T\x96N+\xb3-[_\xce.\ +\xcf\xafH\xaa\xb8W\x99U\xc5\xa8Z\xf8\xb2\xe3\xcb\x03\ +\xafz\xbc\xba\xa1\x14U\xdf\x8f&A\x82\x04\x09\x12$\ +H\x90 A\x82\x04\x09\x12$H\x90 A\x82\x04\x09\ +\x12$H\x90 A\x82\x84\x1a\xb1\xb1\xb1\xfc\x9c\x9c\x9c\ +\x85zzz\xf4\xf7\x97&\xa1K\xb8\xba\xba\xfa\xe5\xe7\ +\xe7\x97\x9f={V\xb9l\xd9\xb2\x13VVV\xb6M\ +\xad\xd3\xff\x17\xd8\xdb\xdb;\x1d>|\xf8\x09\xf2\xbd&\ +\xec\xdd\xbb\xb7\x00\xb5IS\xeb\xf6_\x07\x1ak\x0e\x1e\ +<\xf8P\xdb\xf7\x9ap\xf2\xe4\xc9\xb2\xb8\xb8\xb8\x94\xa6\ +\xd6\xf1\xbf\x8cE\x8b\x16\x1d\xae\xcb\xf7\xda\x01\xce\x09\x8b\ +\xe8t:\xa3\xb1\xb2\xac\xad\xad\xed\xc2\xc2\xc2\xfa\x0a\x85\ +\xc2)s\xe7\xce\xdd\xb7q\xe3\xc6+\xfb\xf6\xed\xbb\x0b\ +\xdb\xb9\x14\x05\x14\xdf\xb4i\xd3\xd5y\xf3\xe6\xed\x17\x89\ +DS\xc3\xc3\xc3\x13Q\x1d]\xd8\xf99\x22))I\ +\xf4>\xdfk\x02\x9a\x13>\xc4\x17666\xf6C\x86\ +\x0c\xc9Z\xbe|y\xfe\x993g^\xd5W\x9e&\xa0\ +:+W\xae<=t\xe8\xd0\xec\xe6\xcd\x9b\xb7\xfc\x18\ +~h*\x8c\x1c9rqC|\xa1\x9e\x138\xf5\xe1\ +\xed\xe2\xe2\xc2\x9e\x16X,V\xc0\x81\x03\x07\xee7\xc4\xfe\xd7\xe7\ +\x044\x8f\xa31\xe2\xd8\xb1c/>\xb6\xef5\xe1\xf8\ +\xf1\xe3\xc5\xc9\xc9\xc99\xba\x98\x9b\x9a\x1a\xa8\xdf\xa2q\ +\xb6!\xf6k\xe6\x046\x9b\x1d\xb1u\xeb\xd6?>\x95\ +\xdf_\x0f\xdb\xb6m\xbb\xce\xe1p\xa2\x9a\xda\x87\x8d\x05\ +\xecG\xfac\xc6\x8cY\xd6\x10\xdb\x8f\x1e=\xfa\xbc\xa9\ +\xfc\xfez@k&\x0aDS\xfb\xb1\xb1h\xe8\x9c\xf0\ +9\x85\xdc\xdc\xdc\xbd&&&fM\xed\xc3\xc6\xe2C\ +\xe6\x84\xcf%\xa0\xf1\xc8\xc9\xc9\xa9sS\xfb\xb0\xb1\xf8\ +\x909\xe1s\x09h\x5c\xf4\xf5\xf5\x0doj\x1f6\x16\ +\xea9aiS\xfb\xf3C\x02\xba\xa6\xfe/\xb4\x01B\ +ff\xe6\x5c]\xf9\x05]\xc7)\x14\x8a9h\xcd\x02\ +\xc7\x89N\x86\x86\x86&0\x18;::\xb6\xdf\xb3g\ +\xcf\x1d]\xb7\x01Z\x9f5\xb5\xff\x1a\x03??\xbfH\ +dGc}\xb1s\xe7\xce\x9b!!!\xf1\xefZ\xa3\ +\xa0\xb1\xfbc\x9c\x07\xc8\x86O\xe93]\xa1S\xa7N\ +\xde\xe8:\xa7\xb1>@\xcfu\x18\x0c\x86\xc1\xfb\xe4}\ +\x0c\xff\xa3\x80l\x80\xb6x}\x0a\x9f\xe9\x0a\xe8\xfa~\ +\xff\xfe\xfd\xf7ta?\xba\xb7Y\x9f\xfb6\x1f\xcb\xff\ +( [\xbe\x94{xFFF\xa6\x1b6l\xb8\xa4\ +K\xfb\xd1\xf3\xb5\xb8\xb8\xb8\xd4w\xc9\xfd\x98\xfeGa\ +\xdd\xbau\x17\xd0|\xf3\xa9\xfc\xf8!@\xdfk\x9a=\ +{\xf6\xae\x8f\xe5\x03t\xdf\xf5m\xf7l>\xb6\xffQ\ +\x989s\xe6v\xadoR}v\xe0\xf1x\xa3>\xb6\ +\x0f\x96-[v\x12=\x1bx]\xf6\xa7\xf0?\x0a\xe8\ +\x99DS\xf8\xf6}pww\xf7\xff\xe5\x97_\xaa>\ +\x85\x0f\xd0\x9c\xe0\xe6\xe6\xd6U[\xfe\xa7\xf2?z\x96\ +\xd0\xa5K\x17\xdf\xa6\xf2s]@c>Z#6\xd6\ +\xb6\x86<\xe7BsB|||\xf5\x17\x7f>\x95\xff\ +Q\xd8\xbau\xeb\x9f\xfa\xfa\xfa\x86M\xe9sm\x0c\x1f\ +>\xfc[]\xd85q\xe2\xc45\x0d]7\x8d\x1a5\ +*\x0f\xcd\x09\x9f\xd2\xff(\xa4\xa6\xa6\x8eoj\xbf#\ +\xa0{\x86\xba\xba\x97\xec\xe9\xe9\x19\x84\xc6\xf6\x15+V\ +\x9cjH=\xf4\x8cx\xc7\x8e\x1d\xff|J\xff\x1f:\ +t\xa8\x10]{7\xb5\xff\x07\x0f\x1e\x9c\xa9\x0b{N\ +\x9c8QB\xa3\xd1\x88\x0f\x96\xa3\xfe\xd7\x86\xaelY\ +\xbat\xe9\xf1\xba\xf8\xa3u\xce\x87\xce\x09o\xd3y\xe1\ +\xc2\x85\x87t\xa1\xf3\xe6\xcd\x9b\xaf}<\xcf\xd6\x0fh\ +\xdc\xd0\x85-\xb3f\xcd\xda\xf96\x19\x1f:'\xd4u\ +\x9d\x800c\xc6\x8cm\xba\xd0\x19\xd9\xfe\xf1<[?\ +\xe8j\xdeC\xd7U\xef\x92\x83\xfa3\xea\xd7\x0d\xe1Y\ +\xd7u\x02B^^\xdeQ]\xe8\x0cm\xff\xfb\xe3y\ +\xb6~\x98?\x7f\xfeA]\xd8\xb2}\xfb\xf6\xbf\xea#\ +\x0f\xad\xf95\xef[\xd7'\xa09\x01\xcd#\xda\x058\x1cN\xb4.\xae\x0b\xb2\xb2\xb2\xbe\xfb\x90\xf7\ +\x0e\xd039\xf4\xeePc\xe5#\x1b\xbe\xd4=\x02\xdd\ +\xbbw\x1f\xa8\x8b6@\xeb\x9a\x9e={\x0e\xd1<\x1f\ +x\x17\xd0\xfa5&&f\xa8.\xde\xc1\x86\xba\xbfD\ +6|\x0a_},DFF\xf6\xd7\xd5\xf51z\xe6\ +\x84\xae{\xd0\xfeR\xb4O\x0f\xbdg\x8d\x02\x8a#\x1a\ +Z\x7f\xbd\xbe\x1f\xbc\xb1}\xbf\xb1\xf3\xd0\xe7\x80\xd0\xd0\ +\xd0\x84\xa6x>\xa5\xab\x80\xde\xe3\xfe\xdc\xd7=\xefC\ +PPP\xac.\xde\xc5m\xaa\x80\xf63|)\xeb\x9f\ +\xb7\xa1c\xc7\x8e\x9e\xe8\xfa\xaa\xa9}\xf9\xa1\x01\xcd)\ +\xe8=\xa7\xa6\xf6cc`fff\xb5`\xc1\x82\x9f\ +\x9a\xda\x97\x1f\x1a\xd0\xf3\x84/}N\xa0P(Tt\ +\xaf\xb3\xa9}\xa9\x09h\xbf}C\xaf\x19\xff\x0bs\x02\ +\xbaF\xf8\xd4\xefMi\x07\xf4\xce\x85\xbf\xbf\x7f\x0f\xa4\ +\x0b\xba\x97\x8f\xf6%7\xa4\xbezNphj?6\ +\x06M\xb1\xff\x1d\xc9\xaak\xff;J\xa3\xfd\xf9\x0d\xe1\ +\x85\xe6\x04\xb4\xe7\xb3\xa9\xfc\xa7+\xa0\xb5\xc5\xd7_\x7f\ +\xbd\xf6S\x8c5\xef\xeb\xb3\xe8;\x15\xe8{\x15\xf5\xe5\ +\x89\xe6\x04\xb4\xf7\xf9S\xf9\xeac\x02\xad\x91\xc6\x8f\x1f\ +\xbf\xb2!\xf6\xbf/\xa0\xfbp\x13&LX\xd5\x90}\ +D\xe8\xdeQC\xe7\x84\xcf\xf9\xdetCannn\ +\x8d\xbe3\x84\xd6J\x1fr\xed\x86\xea\xa0\xf7\xac\xfa\xf5\ +\xeb'\xb6\xb0\xb0\xb0\xf9\x10\x1d\x1a:' Y\xba\xf6\ +\xc3\xe7\x00SSSs4W\xa31\x1b}\xa3\x06=\ +w\xdf\xb2e\xcb\xefh\xec\x85\xe1\x01\x8a\xa3g\xeb\xdf\ +|\xf3\xcd&T\xa6k\xd7\xae\xddQ\x1d]\xc8F\xf3\ +S}\xee\xe3}N\xcf\x83\xff\x8b\xe8\xd3\xa7\x0f\xfe\xb6\ +1\x11\xb5\xfd\x97\xbe\x16\xfd\x12\x80\xbe\xeb\xf8\xfa\x9c\x80\ +\xdeM\xfd\xd2\xd7\xa0_\x12\xd0\xf7M5s\x02\x9a\xd7\ +\xffK\xdf4\xfbR\xa0\x99\x13\xd0w\x7f\x9bZ\x17\x12\ +$H\x90 A\x82\x04\x09\x12$H\x90 A\x82\x04\ +\x09\x12$H\x90 A\x82\x04\x09\x12$H\x90\xa8\x06\ +u\x05\x06\xa8\xf0\x1f\x83?\xb0\x82\x02hD\x1c\x80\xa1\ ++\xa85qU\xd1`\xbe$\x19g\xc6\xa6I\x14\x12\ +y\x9aD\xca\x0c\x93\xf02D\xb8X\xc1\x0c\xe3*\xb8\ +\xcc\x10\xa1\x84\x97\x0e\xd8!\xd111\x092\xe2=$\ +\x14\xef\xc9\x1d!\x03\xc0\xc0\x8f\xe0c\x01\x03\xdaI\x17\ +\x03C\x02\xa0)\x95\x00\xd0J\x09\xd6\x85D~!@\ +\xdf7/D\xf5\xc4\x12\x99H\x09\xf4\x91\x02\x9a\xf7\xed\ +;\x00\x80j\xbc?0\xe2\xd3\xb8R\x9c\xc9B|\x84\ +\x19b\xf4\xed\x19+\x18\x18 \x1e\xa4\x01.\x90\x02\x1c\ +0\x01K\xa5\x9fP,G{,irX\x85H\x8f\ +\x10\xa0g\xba\xc8r[\x94\xe6\x09\x93\x85(\x8d\xa9\xed\ +\x11\x88S\xb2\xd5\xf9D:]\x9c.\xd1N\x0b\xe5\xd2\ +\x94Zi\x9e\x10\xf1\xd7\xd7\xb8\x1b\xd1\xe4i\x22$\x03\ +\xed\xe9\xc3\x08\x19\x19r\x85:\x1b\xbd\x9fg\xa6\xf6:\ +\xac%\xc2\x15\x5c>t\xae\x9ab \xe4\x8e\xc0e\x09\ +\x02\x11\xce\x97d$\x07_m\x17Y\x94\xc4\xdaK\xf0\ +L\xc9\x96I\xd5uk\x03\x83\xb2\x0d\x8110\x02\xf6\ +\xa09\xb0\x86\xbf\xe6\xc0\x12\x963V\xffl\xe0\xcfZ\ +\xfd\xb3\x84\xa1\x05Q\xc2\x068T\xff\xec\x81\x1dA\xb1\ +\x84^D\xa5P\x8d\x16\xc0\xb6\x9a\x839\xa4\xb7Ps\ +\xb6\x87r\x8c\xa1<\xfd\x97\x80\xc2_H?\x02^\x01\ +\x9a_\xb9\xf2\x84\xedQ\xa0\x04\x98\xd3\x93WJ\xac\xc0\ +\xef\x18lf\xfa\xc3*%V\x96r\x1c\xeaw\xb8\x5c\ +\x89-b<\x05&v}\xa7\xec\xbbr\xb7\xb4\xf4\xee\ +\xd5\xfdS\x13\xed\xfe\x07\x80\xa8T\x89\x9d\xb0+\x06T\ +\xfb\xac\xfcW\xc5J\xea\xab\xd3\xd9-\xef\x01\xb0\xb8\x04\ +r\xe1\x94\x01\x0a{}\xe5\x13%\xa5r#\xe7\x01\xe4\ +\x98^Q\x8a8V\x02\xcca\xe3\x03%\xb6\xd9\xf1_\ +$2\xe0~\x89\x92\xbe\x88\x01\x00=\xfb\xc5=%\xa5\ +8\x87\xf1\x18\xea\x849\x9c.QRO\xd8E\xfcq\ +G\x89]\x8f*\x04/\x01\xa6\xbf\xacD\x09\x9e\xff\xa3\ +\xc4\xa6R\x8a\x00\xe4\x92^qY\x89\xed5{\x0a*\ +\x10\x17\x18\xbf\xde\xf9\x19(GUa\xfcy\xf8sP\ +\x06\xeb,\x85\xf1\xd2\xf0\x17\xa0\x04\x80\xb9O\x94\x8c\x82\ +9Q\x9dL\x8c\xdb\xdf)\x84\xd4\x88bP\x0a\xb0\xc8\ +\xd2\xa7J\xca\xcdxJ%\x00\xd7\x1fCjd\x09\xaa\ +\xe7]\xfcT\x89-4(\x87\xc4GJ\xac\xd8\xab\x14\ +1v\xbcW\xa4\xc4\xeer\x10\xf1_%v\xafe\x19\ +\x92lz\x09\xf2*O\xad\x80\xc4\x87J\xec\x82I9\ +R\x0d\xdb\x05\x0b,fTA\x22\xb4t;V\x01\x89\ +`\x14\x8c\x9e\xb4\x7f\x09i\xf7\x95 \xab\x02T\xc13\ +\xa7\xea>\xe4\xd8\xf5\x15A\xc3*}+\x91\x9d\xa67\ +\x9f*\xc1\xabR%\xad<\x0d\xd2\xef)\xb1?\x0d\xab\ + \x1d|\x0b\xa5\xaf\xb9W\xa2\xa4\xe41\xae\xdfU\x82\ +\xf1U\xc8Of\xcf\x8b\x94\x94 \xfbS\xd0\xe3\xf9\xff\ +\xdcUb\x85\xc6/!\x19d\x16)i%z\x80\xb1\ +\x04\xba\xac\xb2@\x09\x86\x13\xd4\xddEJp\x03J\x10\ +\xa0\x96\xa8\x18[\xee\x0c\xfe\x80\x94\x1dD\x1e\x8a\x1d\x87\ +*u\x85\x12\xb0<\x06\xd4\xf7\x10\xa4\x5c#\xf2J`\ +l'4K%\xc6\x1e\x9a\xb5\x0dRJ\x88\xbc\x7f`\ +\xec$\xf4\x03#\xaf\x04\x99\x02\xf5<\x0a)\x7f\x13y\ +\x07a\xec/\xe8\xcd\xb4r$O\xa0\x96\xb2\x9f\xc8\x9b\ +\x0a\xad)\xa5\xc3\xcc\xaewaK/a\xe8\x15\xc3\xac\ +I(\x0bkU\x05\xa3!\xb0m\xec\xf3!\xcfS\xf1\ +\xb0d\xb9\xddK\xe4\x82\x0d0cz\x89J\x18x\x01\ +\x13\xcb\x90g0\xa7g\xb0\xb5n\xd3\x8b\x91$\xe8\xaf\ +'PC\xa8\xe3`\x98\x9f\xf6\x02\x09\x80\xfeN\xaaD\ +M\xb0\x1c\x96\xbbe\x04i\xf6'\x1f*\xc1b\xd4,\ +\x98\xc19\xe8\xee5\xcf!\xd3\xc5\xb0\xa9\xcf2*P\ +\xab\xb6,\x80\xc4a\xcf\x00\x96Z\xfeD\x89\xfd\xcf\xbe\ +\x1c\xb5\xbf\xfb\xf3gJ\xec\x95\x0cR9O!\xa3g\ +ne\xa8\xabDW\xc1\xf8w&P\xb8\xe9B\x18\xab\ +\x8a*E\xddj \xa4R\xee\x0e\xd1+\x07\x14\xfa\xd0\ +\xfb\x90\xfer`\x09\xec\x84X\x7fh\x9bA\xe1\xb2D\ +\xb6\x83\x03;q\xf9\x13\xc8\xbcjX\x09\x80\x95\x13*\ +/)\xb1\xa5\x8c2\x00\xb5\x8b-\x85\xf1\xd3P(\xd4\ +\xca\xf3\x16\x8c\xdf\xf7\xaf\x00P\xac\xd5O0^1\xac\ +\x12<\x05\x18u:<\x13\xd6\x17\x94\xa0J/\xc1\x13\ +\xa8\xc7\xf5;J\xda\x8d\x1e\xc0\xee\x04\xa4\x9dvx\x85\ +\x06k\xd59\xf5\x22\x87\x01\xbd\xcaX\x04\xfd|?\x00\ +\x80G\xd0\xfc\xb5\xb0/\xaew\x80\x86\xa6\x94\x95*)\ +\x15\xe9\xe0!\xa0x\xae,\x83'k\xf9*\xd8\xd91\ +\x0ed\x0c\x16\xdf\x07Tk\xd1O\x95\xf0\xc4\xae<$\ +\xb6\x81\x8a\xd9\x9d(U\x02q\x0101\x8f\xce\xd9\x98\ +\xff\xfb\xfd\x07\xbf\x9f\xda\x94\xd3\xdd\xbc\x08`\xf4\x85p\ +\x90X\x06\xe0p\x81\x97U))\xa7\x18\xe0\x18\xc0\xfc\ +\x0a^)\xa9\xf7\x1c`\x97\x004\xdb\x13\xcar\xce+\ +p\x04*\xb5\x90\xff\x12\x0d{\x94\xa6\xf8\x1d8\xdb\x14\ +?\xd2\xda\xff\xb0\xb5\xeauT\x8c\x1c\xedo0U\xad\ +q\x08x\x8cS\xe7\xc5r\x15\x0a\xcd\xda\x22BU\xce\ +X\xbb\x1c:\xfc\x1f\x02\xea)+\ +\x00\x00\x80\x08\ +I\ +I*\x00\x08\x00\x00\x00\x18\x00\xfe\x00\x04\x00\x01\x00\x00\ +\x00\x00\x00\x00\x00\x00\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x01\x01\x03\x00\x01\x00\x00\x00`\x00\x00\x00\x02\x01\x03\ +\x00\x04\x00\x00\x00.\x01\x00\x00\x03\x01\x03\x00\x01\x00\x00\ +\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ +\x00\x11\x01\x04\x00\x01\x00\x00\x00NS\x00\x00\x12\x01\x03\ +\x00\x01\x00\x00\x00\x01\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\ +\x00\x04\x00\x00\x00\x16\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x17\x01\x04\x00\x01\x00\x00\x000\x12\x00\x00\x1a\x01\x05\ +\x00\x01\x00\x00\x006\x01\x00\x00\x1b\x01\x05\x00\x01\x00\x00\ +\x00>\x01\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\ +\x00(\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\ +\x00\x22\x00\x00\x00F\x01\x00\x002\x01\x02\x00\x14\x00\x00\ +\x00h\x01\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ +\x00R\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00\xbc\x02\x01\ +\x00\x1f8\x00\x00|\x01\x00\x00I\x86\x01\x00j\x0d\x00\ +\x00\x9c9\x00\x00i\x87\x04\x00\x01\x00\x00\x00\x80e\x00\ +\x00s\x87\x07\x00H\x0c\x00\x00\x06G\x00\x00\x5c\x93\x07\ +\x00X\x1a\x00\x00\xace\x00\x00\x00\x00\x00\x00\x08\x00\x08\ +\x00\x08\x00\x08\x00\x00\xf9\x15\x00\x10'\x00\x00\x00\xf9\x15\ +\x00\x10'\x00\x00Adobe Photo\ +shop CC 2017 (Wi\ +ndows)\x002017:04:0\ +4 11:01:25\x00\ +\x0a\x0a \ + \x0a \x0a \ + paint.net \ +4.0.9\x0a \ + 2017-03-01T11:2\ +0:20-08:00\x0a \ + 2017-04-04T\ +11:01:25-07:00\x0a\ + 2017-\ +04-04T11:01:25-0\ +7:00\x0a \ + imag\ +e/tiff\x0a 3\x0a \ + sRGB IEC\ +61966-2.1\ +\x0a xmp.\ +iid:7284f562-66e\ +c-6d4b-bfaf-a292\ +c87d086e\x0a \ + adobe:doc\ +id:photoshop:aca\ +ee4ff-1960-11e7-\ +bae7-e6e7a5cd281\ +4\x0a xmp.did:\ +15df0628-f397-b6\ +41-8e6b-37248a21\ +c43f\x0a\ + \x0a \ + \x0a \ + \x0a\ + \ + \ +created\x0a \ + xmp.i\ +id:15df0628-f397\ +-b641-8e6b-37248\ +a21c43f\x0a \ + 2017-03\ +-01T11:20:20-08:\ +00\x0a\ + \ + Adobe Pho\ +toshop CC 2017 (\ +Windows)\x0a \ + \x0a \ + \x0a \ + saved\x0a \ + \ +xmp.iid:7284f5\ +62-66ec-6d4b-bfa\ +f-a292c87d086e\x0a \ + \ +2017-04-04T11:01\ +:25-07:00\x0a \ + Ad\ +obe Photoshop CC\ + 2017 (Windows)<\ +/stEvt:softwareA\ +gent>\x0a \ + /\x0a \ + \x0a \x0a \ + \x0a \x0a <\ +/rdf:RDF>\x0a\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \x0a\x008BIM\x04\ +%\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x008BIM\x04:\x00\x00\x00\ +\x00\x00\xe5\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x0bprintOutput\x00\x00\x00\x05\ +\x00\x00\x00\x00PstSbool\x01\x00\x00\x00\ +\x00Inteenum\x00\x00\x00\x00Int\ +e\x00\x00\x00\x00Clrm\x00\x00\x00\x0fpri\ +ntSixteenBitbool\ +\x00\x00\x00\x00\x0bprinterName\ +TEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0fpr\ +intProofSetupObj\ +c\x00\x00\x00\x0c\x00P\x00r\x00o\x00o\x00f\x00\ + \x00S\x00e\x00t\x00u\x00p\x00\x00\x00\x00\x00\ +\x0aproofSetup\x00\x00\x00\x01\x00\ +\x00\x00\x00Bltnenum\x00\x00\x00\x0cb\ +uiltinProof\x00\x00\x00\x09p\ +roofCMYK\x008BIM\x04;\x00\ +\x00\x00\x00\x02-\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x12printOutputOp\ +tions\x00\x00\x00\x17\x00\x00\x00\x00Cpt\ +nbool\x00\x00\x00\x00\x00Clbrbo\ +ol\x00\x00\x00\x00\x00RgsMbool\x00\ +\x00\x00\x00\x00CrnCbool\x00\x00\x00\x00\ +\x00CntCbool\x00\x00\x00\x00\x00Lb\ +lsbool\x00\x00\x00\x00\x00Ngtvb\ +ool\x00\x00\x00\x00\x00EmlDbool\ +\x00\x00\x00\x00\x00Intrbool\x00\x00\x00\ +\x00\x00BckgObjc\x00\x00\x00\x01\x00\x00\ +\x00\x00\x00\x00RGBC\x00\x00\x00\x03\x00\x00\x00\x00\ +Rd doub@o\xe0\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00Grn doub@o\xe0\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00Bl doub\ +@o\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00BrdT\ +UntF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00Bld UntF#Rlt\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Rslt\ +UntF#Pxl@b\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x0avectorDatabo\ +ol\x01\x00\x00\x00\x00PgPsenum\x00\ +\x00\x00\x00PgPs\x00\x00\x00\x00PgPC\x00\ +\x00\x00\x00LeftUntF#Rlt\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Top U\ +ntF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00Scl UntF#Prc@\ +Y\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10cropW\ +henPrintingbool\x00\ +\x00\x00\x00\x0ecropRectBott\ +omlong\x00\x00\x00\x00\x00\x00\x00\x0ccr\ +opRectLeftlong\x00\x00\ +\x00\x00\x00\x00\x00\x0dcropRectRi\ +ghtlong\x00\x00\x00\x00\x00\x00\x00\x0bc\ +ropRectToplong\x00\x00\ +\x00\x00\x008BIM\x03\xed\x00\x00\x00\x00\x00\x10\x00\ +\x90\x00\x00\x00\x01\x00\x01\x00\x90\x00\x00\x00\x01\x00\x018\ +BIM\x04&\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00?\x80\x00\x008BIM\x03\xee\x00\ +\x00\x00\x00\x00\x0d\x0cTransparen\ +cy\x008BIM\x04\x15\x00\x00\x00\x00\x00\x1e\x00\ +\x00\x00\x0d\x00T\x00r\x00a\x00n\x00s\x00p\x00\ +a\x00r\x00e\x00n\x00c\x00y\x00\x008BI\ +M\x045\x00\x00\x00\x00\x00\x11\x00\x00\x00\x01\x00\x00\xff\ +\xff\x00\x00\x00\x00\x00\x00\x00d\x01\x008BIM\x04\ +\x1d\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008BIM\x04\ +\x0d\x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e8BIM\x04\ +\x19\x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e8BIM\x03\ +\xf3\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x01\ +\x008BIM'\x10\x00\x00\x00\x00\x00\x0a\x00\x01\x00\ +\x00\x00\x00\x00\x00\x00\x018BIM\x03\xf5\x00\x00\x00\ +\x00\x00H\x00/ff\x00\x01\x00lff\x00\x06\x00\ +\x00\x00\x00\x00\x01\x00/ff\x00\x01\x00\xa1\x99\x9a\x00\ +\x06\x00\x00\x00\x00\x00\x01\x002\x00\x00\x00\x01\x00Z\x00\ +\x00\x00\x06\x00\x00\x00\x00\x00\x01\x005\x00\x00\x00\x01\x00\ +-\x00\x00\x00\x06\x00\x00\x00\x00\x00\x018BIM\x03\ +\xf8\x00\x00\x00\x00\x00p\x00\x00\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\ +\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\ +\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\x03\xe8\x00\x008BIM\x04\x00\x00\x00\x00\ +\x00\x00\x02\x00\x008BIM\x04\x02\x00\x00\x00\x00\x00\ +\x02\x00\x008BIM\x040\x00\x00\x00\x00\x00\x01\x01\ +\x008BIM\x04-\x00\x00\x00\x00\x00\x06\x00\x01\x00\ +\x00\x00\x038BIM\x04\x08\x00\x00\x00\x00\x00$\x00\ +\x00\x00\x01\x00\x00\x02@\x00\x00\x02@\x00\x00\x00\x04\x00\ +\x00\x01+\x00\x00\x00\x0a\xc5\x00\x00\x00\x01\x1b\x01\x00\x00\ +\x0a\xd5\x018BIM\x04\x1e\x00\x00\x00\x00\x00\x04\x00\ +\x00\x00\x008BIM\x04\x1a\x00\x00\x00\x00\x035\x00\ +\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00`\x00\ +\x00\x00`\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00nu\ +ll\x00\x00\x00\x02\x00\x00\x00\x06bounds\ +Objc\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Rc\ +t1\x00\x00\x00\x04\x00\x00\x00\x00Top lo\ +ng\x00\x00\x00\x00\x00\x00\x00\x00Leftlo\ +ng\x00\x00\x00\x00\x00\x00\x00\x00Btomlo\ +ng\x00\x00\x00`\x00\x00\x00\x00Rghtlo\ +ng\x00\x00\x00`\x00\x00\x00\x06slices\ +VlLs\x00\x00\x00\x01Objc\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x05slice\x00\x00\x00\x12\x00\ +\x00\x00\x07sliceIDlong\x00\x00\ +\x00\x00\x00\x00\x00\x07groupIDlon\ +g\x00\x00\x00\x00\x00\x00\x00\x06origine\ +num\x00\x00\x00\x0cESliceOri\ +gin\x00\x00\x00\x0dautoGener\ +ated\x00\x00\x00\x00Typeenum\ +\x00\x00\x00\x0aESliceType\x00\x00\ +\x00\x00Img \x00\x00\x00\x06bounds\ +Objc\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Rc\ +t1\x00\x00\x00\x04\x00\x00\x00\x00Top lo\ +ng\x00\x00\x00\x00\x00\x00\x00\x00Leftlo\ +ng\x00\x00\x00\x00\x00\x00\x00\x00Btomlo\ +ng\x00\x00\x00`\x00\x00\x00\x00Rghtlo\ +ng\x00\x00\x00`\x00\x00\x00\x03urlTEX\ +T\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00nullT\ +EXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Msg\ +eTEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x06a\ +ltTagTEXT\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x0ecellTextIsHTM\ +Lbool\x01\x00\x00\x00\x08cellTe\ +xtTEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x09\ +horzAlignenum\x00\x00\x00\ +\x0fESliceHorzAlign\ +\x00\x00\x00\x07default\x00\x00\x00\x09v\ +ertAlignenum\x00\x00\x00\x0f\ +ESliceVertAlign\x00\ +\x00\x00\x07default\x00\x00\x00\x0bbg\ +ColorTypeenum\x00\x00\x00\ +\x11ESliceBGColorTy\ +pe\x00\x00\x00\x00None\x00\x00\x00\x09to\ +pOutsetlong\x00\x00\x00\x00\x00\ +\x00\x00\x0aleftOutsetlon\ +g\x00\x00\x00\x00\x00\x00\x00\x0cbottomO\ +utsetlong\x00\x00\x00\x00\x00\x00\x00\ +\x0brightOutsetlong\ +\x00\x00\x00\x00\x008BIM\x04(\x00\x00\x00\x00\x00\ +\x0c\x00\x00\x00\x02?\xf0\x00\x00\x00\x00\x00\x008BI\ +M\x04\x14\x00\x00\x00\x00\x00\x04\x00\x00\x00\x048BI\ +M\x04\x0c\x00\x00\x00\x00\x04\x02\x00\x00\x00\x01\x00\x00\x00\ +0\x00\x00\x000\x00\x00\x00\x90\x00\x00\x1b\x00\x00\x00\x03\ +\xe6\x00\x18\x00\x01\xff\xd8\xff\xed\x00\x0cAdobe\ +_CM\x00\x01\xff\xee\x00\x0eAdobe\x00d\ +\x80\x00\x00\x00\x01\xff\xdb\x00\x84\x00\x0c\x08\x08\x08\x09\x08\ +\x0c\x09\x09\x0c\x11\x0b\x0a\x0b\x11\x15\x0f\x0c\x0c\x0f\x15\x18\ +\x13\x13\x15\x13\x13\x18\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x01\x0d\x0b\x0b\x0d\x0e\ +\x0d\x10\x0e\x0e\x10\x14\x0e\x0e\x0e\x14\x14\x0e\x0e\x0e\x0e\x14\ +\x11\x0c\x0c\x0c\x0c\x0c\x11\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\xff\xc0\x00\x11\x08\ +\x000\x000\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xdd\ +\x00\x04\x00\x03\xff\xc4\x01?\x00\x00\x01\x05\x01\x01\x01\x01\ +\x01\x01\x00\x00\x00\x00\x00\x00\x00\x03\x00\x01\x02\x04\x05\x06\ +\x07\x08\x09\x0a\x0b\x01\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\ +\x00\x00\x00\x00\x00\x00\x01\x00\x02\x03\x04\x05\x06\x07\x08\x09\ +\x0a\x0b\x10\x00\x01\x04\x01\x03\x02\x04\x02\x05\x07\x06\x08\x05\ +\x03\x0c3\x01\x00\x02\x11\x03\x04!\x121\x05AQa\ +\x13\x22q\x812\x06\x14\x91\xa1\xb1B#$\x15R\xc1\ +b34r\x82\xd1C\x07%\x92S\xf0\xe1\xf1cs\ +5\x16\xa2\xb2\x83&D\x93TdE\xc2\xa3t6\x17\ +\xd2U\xe2e\xf2\xb3\x84\xc3\xd3u\xe3\xf3F'\x94\xa4\ +\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5Vfv\ +\x86\x96\xa6\xb6\xc6\xd6\xe6\xf67GWgw\x87\x97\xa7\ +\xb7\xc7\xd7\xe7\xf7\x11\x00\x02\x02\x01\x02\x04\x04\x03\x04\x05\ +\x06\x07\x07\x06\x055\x01\x00\x02\x11\x03!1\x12\x04A\ +Qaq\x22\x13\x052\x81\x91\x14\xa1\xb1B#\xc1R\ +\xd1\xf03$b\xe1r\x82\x92CS\x15cs4\xf1\ +%\x06\x16\xa2\xb2\x83\x07&5\xc2\xd2D\x93T\xa3\x17\ +dEU6te\xe2\xf2\xb3\x84\xc3\xd3u\xe3\xf3F\ +\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5V\ +fv\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6'7GWgw\ +\x87\x97\xa7\xb7\xc7\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\ +\x00?\x00\xf4<\xdc\xcc\x96d\x9a\xa9;@\x80\x00\x00\ +\x92O\xc6P\xfd~\xab\xe0\xff\x00\xfbl\x7f\xe4R\xc9\ +\xff\x00\x95\x1b\xfdz\xff\x00\xef\xabR\xcb\x19[\x0b\xec\ +!\xad\x1c\x92\x92\x9c\xbf_\xaa\xf8?\xfe\xdb\x1f\xf9\x14\ +\xbd~\xab\xe0\xff\x00\xfbl\x7f\xe4T\xed\xea\xee\x9f\xd0\ +\xb0\x06\xfe\xf3\xff\x00\xf2#\xff\x00$\x95]]\xd3\xfa\ +f\x02\xd3\xf9\xcc\xff\x00\xc8\x9f\xfc\x92Ja\xeb\xf5_\ +\x07\xff\x00\x98?\xf2(\x98\x19\x99\x16dzV\x9d\xc0\ +\x83\xc8\x00\x82?\xaa\xb4+\xb1\x960>\xb2\x1c\xd3\xc1\ +\x0b+\x07\xfeP?\xf5\xcf\xca\x92\x9f\xff\xd0\xef\xf2\x7f\ +\xe5F\xff\x00^\xbf\xfb\xea\x16fS\xb2-\xff\x00\x83\ +i\x867\xfe\xff\x00\xfd\xa4\x5c\x9f\xf9Q\xbf\xd7\xaf\xfe\ +\xfa\x87\x9b\x8a\xec{\x09\x03\xf4O>\xc3\xe0O\xe6\x1f\ +\xfb\xeaJnt\xecJ\x85-\xb9\xed\x0e{\xf5\x13\xac\ +\x0e\xd0\xa9dc\xde-\xb5\xfe\x9b\x85a\xce;\xbbD\ +\xf2\xad\xe0f\xd4\xda\x856\xb81\xcc\xd1\xa4\xe8\x08\xf8\ +\xa5\x9f\x9bS\xaa4\xd4\xe0\xf7?G\x11\xa8\x03\xe2\x92\ +\x9a\x98y.\xc7\xb4\x7f\xa3y\x01\xe3\xfe\xff\x00\xfd\x94\ +L\x1d:\x8b\x87\x9d\x9f\x95C\x0b\x15\xd9\x16\x87\x11\xfa\ +&\x19q\xf1#\xf3\x07\xfd\xf9O\x07^\xa2\xe3\xe7g\ +\xe5IO\xff\xd1\xef\xf2\x7f\xe5F\xff\x00^\xbf\xfb\xea\ +\xd4{\x1a\xf6\x96<\x074\xe8A\xe1g\xe6\xe1d\xbf\ +$\xdbP\x90b\x0c\xc1\x04!\xfd\x9b\xaa~\xf3\xff\x00\ +\xed\xcf\xfc\xc9%&\xb7\xa4\xb4\x99\xa6\xc2\xd1\xfb\xae\x1b\ +\x87\xdf\xf4\x92\xab\xa4\xb4\x19\xba\xc2\xe1\xfb\xad\x1bG\xdf\ +\xf4\x90~\xcd\xd5?y\xff\x00\xf6\xe7\xfed\x97\xd9\xba\ +\xa7\xef?\xfe\xdc\xff\x00\xcc\x92S\xa8\xc65\x8d\x0c`\ +\x0dh\xd0\x01\xc2\xca\xc1\xff\x00\x94\x0f\xc6\xcf\xca\x9f\xec\ +\xddS\xf7\x9f\xff\x00n\x7f\xe6H\xb88Y\x15\xdf\xea\ +\xda\x03@\x04s$\x92\x92\x9f\xff\xd98BIM\x04\ +!\x00\x00\x00\x00\x00]\x00\x00\x00\x01\x01\x00\x00\x00\x0f\ +\x00A\x00d\x00o\x00b\x00e\x00 \x00P\x00h\ +\x00o\x00t\x00o\x00s\x00h\x00o\x00p\x00\x00\ +\x00\x17\x00A\x00d\x00o\x00b\x00e\x00 \x00P\ +\x00h\x00o\x00t\x00o\x00s\x00h\x00o\x00p\ +\x00 \x00C\x00C\x00 \x002\x000\x001\x007\ +\x00\x00\x00\x01\x00\x00\x00\x0cHLino\x02\x10\x00\ +\x00mntrRGB XYZ \x07\xce\x00\ +\x02\x00\x09\x00\x06\x001\x00\x00acspMSF\ +T\x00\x00\x00\x00IEC sRGB\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\xd6\x00\x01\x00\ +\x00\x00\x00\xd3-HP \x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x11cprt\x00\x00\x01\ +P\x00\x00\x003desc\x00\x00\x01\x84\x00\x00\x00\ +lwtpt\x00\x00\x01\xf0\x00\x00\x00\x14bkp\ +t\x00\x00\x02\x04\x00\x00\x00\x14rXYZ\x00\x00\x02\ +\x18\x00\x00\x00\x14gXYZ\x00\x00\x02,\x00\x00\x00\ +\x14bXYZ\x00\x00\x02@\x00\x00\x00\x14dmn\ +d\x00\x00\x02T\x00\x00\x00pdmdd\x00\x00\x02\ +\xc4\x00\x00\x00\x88vued\x00\x00\x03L\x00\x00\x00\ +\x86view\x00\x00\x03\xd4\x00\x00\x00$lum\ +i\x00\x00\x03\xf8\x00\x00\x00\x14meas\x00\x00\x04\ +\x0c\x00\x00\x00$tech\x00\x00\x040\x00\x00\x00\ +\x0crTRC\x00\x00\x04<\x00\x00\x08\x0cgTR\ +C\x00\x00\x04<\x00\x00\x08\x0cbTRC\x00\x00\x04\ +<\x00\x00\x08\x0ctext\x00\x00\x00\x00Cop\ +yright (c) 1998 \ +Hewlett-Packard \ +Company\x00\x00desc\x00\x00\x00\ +\x00\x00\x00\x00\x12sRGB IEC619\ +66-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x12sRGB IEC61966-\ +2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00XYZ \x00\x00\x00\x00\x00\x00\xf3\ +Q\x00\x01\x00\x00\x00\x01\x16\xccXYZ \x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ\ + \x00\x00\x00\x00\x00\x00o\xa2\x00\x008\xf5\x00\x00\x03\ +\x90XYZ \x00\x00\x00\x00\x00\x00b\x99\x00\x00\xb7\ +\x85\x00\x00\x18\xdaXYZ \x00\x00\x00\x00\x00\x00$\ +\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcfdesc\x00\x00\x00\ +\x00\x00\x00\x00\x16IEC http://\ +www.iec.ch\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x16IEC http:/\ +/www.iec.ch\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00desc\x00\x00\x00\ +\x00\x00\x00\x00.IEC 61966-2\ +.1 Default RGB c\ +olour space - sR\ +GB\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00.IE\ +C 61966-2.1 Defa\ +ult RGB colour s\ +pace - sRGB\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00desc\x00\x00\x00\x00\x00\x00\x00,Ref\ +erence Viewing C\ +ondition in IEC6\ +1966-2.1\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00,Reference Vi\ +ewing Condition \ +in IEC61966-2.1\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00view\x00\x00\x00\ +\x00\x00\x13\xa4\xfe\x00\x14_.\x00\x10\xcf\x14\x00\x03\xed\ +\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01XYZ\ + \x00\x00\x00\x00\x00L\x09V\x00P\x00\x00\x00W\x1f\ +\xe7meas\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\ +\x8f\x00\x00\x00\x02sig \x00\x00\x00\x00CRT\ + curv\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\ +\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\x1e\x00#\x00(\x00\ +-\x002\x007\x00;\x00@\x00E\x00J\x00O\x00\ +T\x00Y\x00^\x00c\x00h\x00m\x00r\x00w\x00\ +|\x00\x81\x00\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\x9f\x00\ +\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\xc6\x00\ +\xcb\x00\xd0\x00\xd5\x00\xdb\x00\xe0\x00\xe5\x00\xeb\x00\xf0\x00\ +\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\x1f\x01\ +%\x01+\x012\x018\x01>\x01E\x01L\x01R\x01\ +Y\x01`\x01g\x01n\x01u\x01|\x01\x83\x01\x8b\x01\ +\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\xc9\x01\ +\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\x0c\x02\ +\x14\x02\x1d\x02&\x02/\x028\x02A\x02K\x02T\x02\ +]\x02g\x02q\x02z\x02\x84\x02\x8e\x02\x98\x02\xa2\x02\ +\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\xf5\x03\ +\x00\x03\x0b\x03\x16\x03!\x03-\x038\x03C\x03O\x03\ +Z\x03f\x03r\x03~\x03\x8a\x03\x96\x03\xa2\x03\xae\x03\ +\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\x13\x04\ + \x04-\x04;\x04H\x04U\x04c\x04q\x04~\x04\ +\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\xf0\x04\ +\xfe\x05\x0d\x05\x1c\x05+\x05:\x05I\x05X\x05g\x05\ +w\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\xe5\x05\ +\xf6\x06\x06\x06\x16\x06'\x067\x06H\x06Y\x06j\x06\ +{\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\xf5\x07\ +\x07\x07\x19\x07+\x07=\x07O\x07a\x07t\x07\x86\x07\ +\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\x1f\x08\ +2\x08F\x08Z\x08n\x08\x82\x08\x96\x08\xaa\x08\xbe\x08\ +\xd2\x08\xe7\x08\xfb\x09\x10\x09%\x09:\x09O\x09d\x09\ +y\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\x11\x0a\ +'\x0a=\x0aT\x0aj\x0a\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\ +\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b9\x0bQ\x0bi\x0b\x80\x0b\ +\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c*\x0cC\x0c\ +\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d\ +&\x0d@\x0dZ\x0dt\x0d\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\ +\xf8\x0e\x13\x0e.\x0eI\x0ed\x0e\x7f\x0e\x9b\x0e\xb6\x0e\ +\xd2\x0e\xee\x0f\x09\x0f%\x0fA\x0f^\x0fz\x0f\x96\x0f\ +\xb3\x0f\xcf\x0f\xec\x10\x09\x10&\x10C\x10a\x10~\x10\ +\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x111\x11O\x11m\x11\ +\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12&\x12E\x12d\x12\ +\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13#\x13C\x13c\x13\ +\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14'\x14I\x14j\x14\ +\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x154\x15V\x15x\x15\ +\x9b\x15\xbd\x15\xe0\x16\x03\x16&\x16I\x16l\x16\x8f\x16\ +\xb2\x16\xd6\x16\xfa\x17\x1d\x17A\x17e\x17\x89\x17\xae\x17\ +\xd2\x17\xf7\x18\x1b\x18@\x18e\x18\x8a\x18\xaf\x18\xd5\x18\ +\xfa\x19 \x19E\x19k\x19\x91\x19\xb7\x19\xdd\x1a\x04\x1a\ +*\x1aQ\x1aw\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b;\x1b\ +c\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c*\x1cR\x1c{\x1c\ +\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1dG\x1dp\x1d\x99\x1d\xc3\x1d\ +\xec\x1e\x16\x1e@\x1ej\x1e\x94\x1e\xbe\x1e\xe9\x1f\x13\x1f\ +>\x1fi\x1f\x94\x1f\xbf\x1f\xea \x15 A l \ +\x98 \xc4 \xf0!\x1c!H!u!\xa1!\xce!\ +\xfb\x22'\x22U\x22\x82\x22\xaf\x22\xdd#\x0a#8#\ +f#\x94#\xc2#\xf0$\x1f$M$|$\xab$\ +\xda%\x09%8%h%\x97%\xc7%\xf7&'&\ +W&\x87&\xb7&\xe8'\x18'I'z'\xab'\ +\xdc(\x0d(?(q(\xa2(\xd4)\x06)8)\ +k)\x9d)\xd0*\x02*5*h*\x9b*\xcf+\ +\x02+6+i+\x9d+\xd1,\x05,9,n,\ +\xa2,\xd7-\x0c-A-v-\xab-\xe1.\x16.\ +L.\x82.\xb7.\xee/$/Z/\x91/\xc7/\ +\xfe050l0\xa40\xdb1\x121J1\x821\ +\xba1\xf22*2c2\x9b2\xd43\x0d3F3\ +\x7f3\xb83\xf14+4e4\x9e4\xd85\x135\ +M5\x875\xc25\xfd676r6\xae6\xe97\ +$7`7\x9c7\xd78\x148P8\x8c8\xc89\ +\x059B9\x7f9\xbc9\xf9:6:t:\xb2:\ +\xef;-;k;\xaa;\xe8<' >`>\xa0>\ +\xe0?!?a?\xa2?\xe2@#@d@\xa6@\ +\xe7A)AjA\xacA\xeeB0BrB\xb5B\ +\xf7C:C}C\xc0D\x03DGD\x8aD\xceE\ +\x12EUE\x9aE\xdeF\x22FgF\xabF\xf0G\ +5G{G\xc0H\x05HKH\x91H\xd7I\x1dI\ +cI\xa9I\xf0J7J}J\xc4K\x0cKSK\ +\x9aK\xe2L*LrL\xbaM\x02MJM\x93M\ +\xdcN%NnN\xb7O\x00OIO\x93O\xddP\ +'PqP\xbbQ\x06QPQ\x9bQ\xe6R1R\ +|R\xc7S\x13S_S\xaaS\xf6TBT\x8fT\ +\xdbU(UuU\xc2V\x0fV\x5cV\xa9V\xf7W\ +DW\x92W\xe0X/X}X\xcbY\x1aYiY\ +\xb8Z\x07ZVZ\xa6Z\xf5[E[\x95[\xe5\x5c\ +5\x5c\x86\x5c\xd6]']x]\xc9^\x1a^l^\ +\xbd_\x0f_a_\xb3`\x05`W`\xaa`\xfca\ +Oa\xa2a\xf5bIb\x9cb\xf0cCc\x97c\ +\xebd@d\x94d\xe9e=e\x92e\xe7f=f\ +\x92f\xe8g=g\x93g\xe9h?h\x96h\xeci\ +Ci\x9ai\xf1jHj\x9fj\xf7kOk\xa7k\ +\xfflWl\xafm\x08m`m\xb9n\x12nkn\ +\xc4o\x1eoxo\xd1p+p\x86p\xe0q:q\ +\x95q\xf0rKr\xa6s\x01s]s\xb8t\x14t\ +pt\xccu(u\x85u\xe1v>v\x9bv\xf8w\ +Vw\xb3x\x11xnx\xccy*y\x89y\xe7z\ +Fz\xa5{\x04{c{\xc2|!|\x81|\xe1}\ +A}\xa1~\x01~b~\xc2\x7f#\x7f\x84\x7f\xe5\x80\ +G\x80\xa8\x81\x0a\x81k\x81\xcd\x820\x82\x92\x82\xf4\x83\ +W\x83\xba\x84\x1d\x84\x80\x84\xe3\x85G\x85\xab\x86\x0e\x86\ +r\x86\xd7\x87;\x87\x9f\x88\x04\x88i\x88\xce\x893\x89\ +\x99\x89\xfe\x8ad\x8a\xca\x8b0\x8b\x96\x8b\xfc\x8cc\x8c\ +\xca\x8d1\x8d\x98\x8d\xff\x8ef\x8e\xce\x8f6\x8f\x9e\x90\ +\x06\x90n\x90\xd6\x91?\x91\xa8\x92\x11\x92z\x92\xe3\x93\ +M\x93\xb6\x94 \x94\x8a\x94\xf4\x95_\x95\xc9\x964\x96\ +\x9f\x97\x0a\x97u\x97\xe0\x98L\x98\xb8\x99$\x99\x90\x99\ +\xfc\x9ah\x9a\xd5\x9bB\x9b\xaf\x9c\x1c\x9c\x89\x9c\xf7\x9d\ +d\x9d\xd2\x9e@\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0i\xa0\ +\xd8\xa1G\xa1\xb6\xa2&\xa2\x96\xa3\x06\xa3v\xa3\xe6\xa4\ +V\xa4\xc7\xa58\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7n\xa7\ +\xe0\xa8R\xa8\xc4\xa97\xa9\xa9\xaa\x1c\xaa\x8f\xab\x02\xab\ +u\xab\xe9\xac\x5c\xac\xd0\xadD\xad\xb8\xae-\xae\xa1\xaf\ +\x16\xaf\x8b\xb0\x00\xb0u\xb0\xea\xb1`\xb1\xd6\xb2K\xb2\ +\xc2\xb38\xb3\xae\xb4%\xb4\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6\ +y\xb6\xf0\xb7h\xb7\xe0\xb8Y\xb8\xd1\xb9J\xb9\xc2\xba\ +;\xba\xb5\xbb.\xbb\xa7\xbc!\xbc\x9b\xbd\x15\xbd\x8f\xbe\ +\x0a\xbe\x84\xbe\xff\xbfz\xbf\xf5\xc0p\xc0\xec\xc1g\xc1\ +\xe3\xc2_\xc2\xdb\xc3X\xc3\xd4\xc4Q\xc4\xce\xc5K\xc5\ +\xc8\xc6F\xc6\xc3\xc7A\xc7\xbf\xc8=\xc8\xbc\xc9:\xc9\ +\xb9\xca8\xca\xb7\xcb6\xcb\xb6\xcc5\xcc\xb5\xcd5\xcd\ +\xb5\xce6\xce\xb6\xcf7\xcf\xb8\xd09\xd0\xba\xd1<\xd1\ +\xbe\xd2?\xd2\xc1\xd3D\xd3\xc6\xd4I\xd4\xcb\xd5N\xd5\ +\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\xe0\xd8d\xd8\xe8\xd9l\xd9\ +\xf1\xdav\xda\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\x96\xde\ +\x1c\xde\xa2\xdf)\xdf\xaf\xe06\xe0\xbd\xe1D\xe1\xcc\xe2\ +S\xe2\xdb\xe3c\xe3\xeb\xe4s\xe4\xfc\xe5\x84\xe6\x0d\xe6\ +\x96\xe7\x1f\xe7\xa9\xe82\xe8\xbc\xe9F\xe9\xd0\xea[\xea\ +\xe5\xebp\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee(\xee\xb4\xef\ +@\xef\xcc\xf0X\xf0\xe5\xf1r\xf1\xff\xf2\x8c\xf3\x19\xf3\ +\xa7\xf44\xf4\xc2\xf5P\xf5\xde\xf6m\xf6\xfb\xf7\x8a\xf8\ +\x19\xf8\xa8\xf98\xf9\xc7\xfaW\xfa\xe7\xfbw\xfc\x07\xfc\ +\x98\xfd)\xfd\xba\xfeK\xfe\xdc\xffm\xff\xff\x80\x00 \ +P8$\x16\x0d\x07\x84BaP\xb8d6\x1d\x0f\x88\ +DbQ8\xa4V-\x17\x8cFcQ\xb8\xe4v=\ +\x1f\x90HdR9$\x96M'\x94JeR\xb9d\ +\xb6]/\x98A\x00\x930(*l\x0c\x9c\x03\x02\x13\ +`P0\x07?\x02?\xe8O\xe8X\x06 \x01\xa4\x00\ +hO\xfa$\x1a\x93H\x82R\xdf\xf0J}J\x06\xff\ +\xa4\x80\xa9t\xd0\x05\x1a\x07U\xa5\xd5\xeb\xf4\xfa\x8d\x86\ +\x05S\x81S\xe9VhK\xfc\x05o\x01\xd5\xaa\xf6\xca\ +\x8d~\x0fh\xb4\xd2\x00P\x8a\x95\x92\xefK\xb0P\xac\ +W\x9aM\xca\x9dI\xbe]05\xca\xf0\x02\x98\xfe\xc8\ +>\xf2O\xa7\xa6U\xe2\xf3\xcc<2O\xb7\xce\x1aS\ +O\x07\xe8Bcm!\x10\x87\xa7)\x89\xb5C\x00v\ +\xb4#?\x01\x81*\x98\x88]\xf7i\x87\xa4g\xb18\ ++\x1e\xe7\x01\xb7\x8e\xed\xaa\x17:\x15\xfa\x0d\xba\xde\xda\ +\xf7\x98Ln;\x7f\xbe\xe2\xf0!\x99\xec\x0d\xe2\xbbj\ +\xe8T\xab\x18^\x7f6\x9f\x90\xc8uz\xbb>\xcf\x81\ +\xfc\xf8\xf4=\x9c\xbe\xb6\xf3#\xdc\xbaa|VN\x0f\ +\xa3c6\xfa\x94\x04\xbfAb\xcf\xf4\xe0)\xc0\x03:\ +r\x08-\xebzc\x03\xc1\x10L\x15\x05>\xe6\x94\x1c\ +c\x13p\x89\x04h\xc2\x86+\xee\x90\x00\xd0\xc8\x10(\ +C\x83 \xdb\x0f\x91\x00LD\x05\xc1q,M\x13\xc5\ +\x09B\xa4fE\x85\xf9\x17\x17\x8d\xa6\xfcdk\xb9\x08\ +\xb0;\x1b\x84\x84LtV5A0_\x14\xc8\x12\x0c\ +\x85!\xa2\xe7\xd4\x8c|\x93RI\x00SI\x84|\x8c\ +}\x1f(\xc4\x0a\x01\x07\xb2\xa8\x9aCK\x058\x0f-\ +\x812$\xbd/\xcc\x13\x0a\x04gL\x86\x08\xed3\x8a\ +\x87\x84\xd4v#\x09\x98\x08\x02\x8a\xf3\x88\xda7\xce\x84\ +\x5c\xa71O\x13\xcc\xf5\x03\x9d\x13\xe9\xc44P\x02\x11\ +\xc9A\x9b\xa8\xc42\x03\x01\x03-\x14?\x0c\x14h\xf0\ +\xe3Ot\x8d%I\xa3\xe7\x95,w\x0c\x94\xc8|o\ +S\x86\xad\x0d\x0d\x0d\x95\x09\x0e\xfe\x8b#}!JU\ +\x15MT\x873\x07\x99\xe1E\x0c\xa1\xf1\xb9Y\x9ah\ +\xc4\xb6\x03\x810\xf8\xdaDN\x22\xb8\xdbS\xc4\xae\x13\ +\x9bU\xc8q\xab\xae\xe1\xa1V\x15UV\x9e\x14\xc8\xc8\ +\x1e\x9b\xb6\x89\xa9O\xd1\x03u\xacD\xd7\xb5\xfb\xa4\x89\ +\xaaF\xdd\xbch\x9e\xb7\x09\xe6\xea\xcav\x13\xa8\xe0\x1f\ +\xb7I\xfb;\xb8\x8e\xdb\xb2\xf29Wr\xd4\x82<\xc8\ +E\x80\xe3\xbb\xab+\xa3d9\xd7\xdd\xe3}-\xd0-\ +\xec\xe0X\xc8\xa3\xc6\xe4\xbc\xce\xc5\xde\xbf\xb9`\x04\xdc\ +\x02\x84X\x88T\x05\xe2\x80r8\xca\x9e\x87\x8d\x9c\x1e\ +\xd6f\xe5j\x8b\xd6\xe0MB6\x10\xe2\xc6L7^\ +\xe8\x89\xf9\x95\x9fc\xa6\x5c(\x9a\xf9\x89\x9be!\xf7\ +2\x87\x02\x80xN\x15\x80:\xb6\x15 \xed.\x92\x9d\ +\xea\x81\xe8O\x06R\xe9\xad\x97r\xb5\x9b\xae\x17\xa6\x8c\ +\xe0`\xeec\xcdr\xbb\xb9\xa5\x93|\xdd\xb4\x83\xcc\x08\ +\xeb\x80\xa8\xf9\xaf\x93an\xc4\x1cb\xec\xb0\xc7\xb3\x87\ +\x96\x89\xbbi\xe4\x12\xe6GQ\xbf\xa3z8\xfb\x8c\xdb\ +\xa8~i\xef\x06E\x89\xbd\xef\x88>\xb8\x08\x82\xb1\xd1\ +\x12U\x86\x5c(~\x8eY\x9b\xa8\xcc\x1f\xdb\xc6\xd9\xa5\ +[K\x95\xd5y9h\xe8{\xefX\x07\xc6\xa74d\ +\xef\xbc\xee\xfa\x08t\x00\xa4^E\x95\xc1\x87L\x1er\ +\xa8v1\x8dS8\xe5i\xc8W\x1b~L,e\x16\ +\xda%'\x9f#?t o\x06\x9e\xf5\xcfx\x15W\ +@\x08tQ\x7fK\xd3\xf5(m\x99\xdd\x0c\xe2\x01\xb5\ +\xe7\x9a6\xa0\x11\xc9T\x9b\x926\xfb\xf9\x82\x04\x1ci\ +\x18\xfe\x0f\xbdJx`\xa1\x15\xf1\x95\xbc(d\x1fl\ +\xb8\xcf\x14\x1f\xf9\xe6\xd7\xa3\xb6\xf65\x17g\xda\xdf\x88\ +\xa7/Es<\xdf\xbf\xfd\xcfmh\x1c\x04\x84d\x01\ +\x15\xcf\x99\xc3\x91\xb5\x98\xe6\x18\xeb\x1f\x22\xcc\x85\xc9-\ +\x97\x92C\x1b\xa3vw\xae\xfd\xfeAT\xc0\xf8]\x18\ +\xae\x060l\x1e\x91\xc5\xc2=G\x93g\x0c`\xf2\x04\ +\xbb\x06D\xfc\x99<\x0f!l\xac~\x0f\xb71\x04\xe0\ +\xb41K\xcd\xfd\xc0\xa3\xb7\xcc\xfa 1\x99\x81\x0e\xbd\ +\xf8\x00\x95\xac\x1b\x96\xc2rnfM\xcc9\xa1\xa8\xe7\ +!\x91\x02\x02\xb1,\x0d\x02\xf8\x9c\x0e\xc1DQ\x06Q\ +D\x14\x03\x10-\x15\xc0\xeb\xfe\x021h\x82)a\xe4\ +;\xd6`\xe9\x8cC\x8cl\xc6Q\x9e6#@\xce\x1a\ +\x11\xacb\x0e\xb8\xdc9\xa1\x8c4|b(V\xc1\xb0\ +c\x07a\xca\xaecm\xa9\xb6@\xb7\x22\x88 s\xb6\ +\x220E\xc5\xc3\x07=\x15\xc0\xb0\x1b\x09R,.\x04\ +\x09\x1c\x14\x01\x5c\x91\x06\xf0\xa8\x8f\x15!\xad%\xc6X\ +\xbf\x93B\xbc\x5cI\xd1J\x9fG@\xe3o\x90a\xe3\ +Gh\xf0F\x9d[\xeb}\xaf\xbe??\x16H\xf5H\ +\xe4,\x1fln#D\x85P\xd8\x81h8T\x81\xc0\ +\xd3\x840\xa6l\x0d\x92`]C\xf2M\x0b\xf1^)\ +\xe6@\x90B\x83Dc)8\xe4\xf9%3\x88\x87O\ +\xe2\x12\xc3\xd7$\xfc\xc8\xe3\xb8}r\xd5=\x01y\xbc\ +\x07\x03\x8c\xe1\x11\xc1\x12r\x05W\xf6/\xa7@\xad\x11\ +\xd3\xac9J\x01\xc4\x98_\x0cs\x8e\xb0rJ\x10\x97\ +\x96\xee\xe5[\xd2\x9a\xf0\xa6A\x11\x09\x08\xdd\xdb\xcaD\ +\x00\xb4\x0c\x03\x05\xba\x0c\x1c\xa1\x10|D@%\x12D\ +\x90\x00z\x07\xc0\xf6\x13\xd4LB\x8aJ,#]\xc2\ +@\x99\xf1\xd2h\x91\xb7V\xc6\xe6\xac\xadW2\x01\xca\ +O\xd7-\x11\x1f\xc4\xdcE \xe2\x96\x04d\xce\x1d\x84\ +\x98\x1e\xa6@\x9a\x87\x11\x11\xc7M\xc6\xe3\xa3\x0d\xa3\x1a\ +\x9e\x0b\x84L\xf8`\x08\x8c\x15\xee\x98\x18\x03\xc7\xd2<\ +eS\xd0\x84\xd06\x92\xbfR',\xa5\xa3\xfaA\x09\ +L4\xd5Q\x06\x18j\xc0z\xa6\xa4\x80P\xd5\xd1\x12\ +%k\x00zhd\xba\x1a8!Y\x0d\xe0\xf2\xe1\x84\ +-\xa2\x90\x91VC\x0f\xc4HV\xaeA\xb2z\x90\x87\ +p\xf6d1.\x01\xb5\xec\x08\x08J\xfc)A\xdd\x81\ +\x09Ul\x93\xd3\xc1\x8c.\x03\xdd\x89\x0b+0\x96Q\ +\xb9\xe7\x1d\xea;\x98q\xae>\x1e\xb6\xf9`\xf5\xcc\x9b\ +\xeb\xaf$\xa5\x88\x82 UPE\x852\x03\xc0\x96\xc2\ +\x12\xean8\xc6\xe3.\x0e\x81A\xb5)\xe2Oc\xa8\ +\xec\xa82\xd6IoYJD\xec\xa7\xe5N\x22Oa\ +\xdd\xbd\xb7\xbaI\xcd 6\x08u\x04W\x93\xc0\x1bi\ +PP\xf6\xb9C\xd2\x97\x85#\xdc2\x05\xd9$\x86\x90\ +f'\x02\xf0w]H<\x07\x9a\x90\xf0\x8b(p\x11\ +\x5c&\xc5\x98\x1fc\xea\x22\xd5\x22D\x0d\xef@D\x9d\ +b8Y2\x1b\x90\x90\x12x\xf8\x0eW\xcc'\x5c\xfb\ +\xa2G\xe5#\xa4\xa8\x8e\xa2\x93:\xa3-R_uK\ +\xa4\x8a\xfa\xec\x10i\xfff\xc8\xe5,\x07\x01\x1a\xf5\x8b\ +\x1b\xbc\x91#p\xeb\x1c\xc2\xf7\x0a\x0a\xcb\x0c-\xe7t\ +b\x1d#\x8c\xa9D\xb0*\x06\x84\xbe!\x17\xb2 \x0e\ +'\xab\xe3|\xc3\x90O\xb9\xe2\xe8\x8eO\x17\xc9Z(\ +\xf5\xb3\x7f\x16O\x01+\xb9\x03n\xa4\x1d\x99\x82T\x04\ +\x8d\x83\x9c|\x11\xc4nA\x16\x18=\x14\x8e|\x8c8\ +D\x86I\x0es\x14W\xd62\x22+\xf2\x80\xdbF\xe0\ +t\x12);\xe2\x1c\xf2\xc0P\x18\xf9l\x5c\x91\x8c]\ +\x1d1\x85\xb2c6\xd1\xc7cW'\x81/\xe9\x0d\xb7\ +\x8f6\xdf\x11\x89\x22\x0a\xc1\xa8\x99\xceC\x00\x04gP\ +\x14\x90(\xb0\xa4\x11\xa2c>\x07\xda =\xc8\xe6P\ +\x15\xf9I\x1c*\xaa =\x9f\x5c\x97\x1a\xc30\x8a_\ +\x985\x07+L cx\xd2\x1e\xd7\x0a\xe4\x15\xab\xa6\ +i\x82\x06M\xec\xe6\xd2&\x065\x00\x1e\xab\xa2\x84d\ +\x81=L\x06\x111\xe6\xa7B\xafV\x09bI\xa0\xb4\ +&To\x83\xb7Z\x0e\x80\xbf\xad\xc1\xb4\xa0\x94D>\ +\xb2\xc3g\x0b\x0e3\x15Hn\xd3\xe4\x8b\xdd\xe0\xe1\xb1\ +\xc4XU\xd9A\xaf\x02\x90\x5c\x0f\x8f\x08q9\x01\xc2\ +wj\x0cPG\xb5\xc1b@\xaf\xc2\x102\x8b\x0d\xbc\ +'\x09F\xb0\xcayU\xcfY5\x9c\x0f \xf8\xf3!\ +\x9a\xf4D\x8a\xc9M\xb3H#\x89n\xdaR\x91T\xcc\ +\xd1\x8e'\xf6:\x90\xbb@\x84\x94\xf1\x1f\xbf\xc5\x98<\ +\xe0A- \x0bN\x0c(\x04\x07\x09\x0c$\xb3qh\ +W\xbe|F\x10\xb2\xcb\x01\xcc(,l\xbe\xf9u\xfc\ +\xd2U\xd0\xed\x8f=&\xde\x16\xb9\x00p\x88w\x8fN\ +\xa0\xeb~B\x96p|P\x01\xa0A\xa4\x01\xcd\xcb\xc7\ +\x06\x97\x05z\x1f\x86e\x1d\xc7\x0cD\xa79\x0f\x02\x83\ +\x9e\x08\x92\x11\x0d\x04GA\x15P\x13x\x108\xbc;\ +\xde\xce\xf4\xad\xc9sKW>\x8a@\x9d\xc7+\x08:\ +x\x83_\xb4\x92&\x86\x038\xdbU\xfbn\xed\xf2a\ +\xc3u\x94\x16\x98p\x88\x1eR\xa2\x05\xa3\xad\x89\x19\xde\ +N/\xa5\x11H\x18\x88/\x09\x1a\xd9\xee\xf8\x82m)\ +\x90)\xc6\x90\x19\xef@} da\xce8B\x8f\x81\ +\x04\xb2\xcb\xaf\xf3n\x1d\x12G\x17\x89\x1b|\x80-\x03\ +\x0d\x0f\xc5\xf3\x09\x19\xa3\xee\xb6\xb6\xf6\xe6\xdd\x0a\x1d\xa7\ +O\x00\x1d\xce\x0a\x00\x09\xc2\x1cDm\x06\x0ba\xc9\x22\ +\x0a/L\x22\x84\x97\xa9\x0e\xe8'\xb0nK\x08'=\ +\x80\x82\xcf\x82`?\xf9\x0e3\x1eVk\xad\x8f\x90\x9a\ +\xdcy\x9d4B\xdf\xba\xb1\x96\xb5\xec\x06\x81\x01k\xf1\ +\xc7\x19<\x01\x89\x13\xa9\x22\xc1\x980=g\x86\xec6\ +\x13\xa3\x84\xcf\xac\x07\x99\x0c\xf2\xed$b\x0f\x8f-'\ +ms7q#>s[\x85\xf0\xec\xae\xb9\xf2C\x1f\ +?\xac{\x83\xff\xdc\x03\xfc\x22\x08\xf5\xb7\xbc\x81\xef\xf1\ +\x1e\x1c\xbe8\xb5\x14w\x12\xfd\xe9\x1f\xbcu\xae\xda\x22\ +j\xdeZ\xed.\xd3-\xf0\xa4\xeeH\xb7\xaeL\x120\ +\x18\x16\xab\x02\x07k\x06He\x06\x1c\x81\xbaC\x80\xa0\ +\xf5\xc4\x14\x03\x904\x04F\x1e$\x8b\xd6\x16KD\xa6\ +\x84\x86\xe2\x01f\x100L\x0c+\x88\xfbb.ul\ +\xc8\xb6\xce\x96W\x0d\xec[P\x0e!\xcf\x82\x7f(\x8e\ +\x15\xd0p\x1b0BH\x89\x96\x18\xae\xc8\xa6\xaff\x17\ +\xc0i\x08`\x82H\x83\xe8\x1c\x01\xb0s\x09\xe4\xbfo\ +5\x05\x8cf\xfc\x09\xac\xc0pdXb&\xf3\x81\x8b\ +\x0a\xe1\xec\xbd\xc4\x86\x18\x90\xb8\x16\x8d\x8e\x0e\x00\x9a\xa6\ +\xab\x88\x91\xc0\x80\x0a\x04\x88\xfda\xf2\x1e\xe0\x97\x0d`\ +<\x9eO\x22#\x0e\xd6q\x90\xa0\xde\xb0\xa4\xf3J\xee\ +wh&\x16P\xf4\x1b\xe05\x0f\xa0@H\x8b|\x0c\ +Q\x04\x07Jj\xf6\x018\x18J\x88\x94\xe4\x82\xe5\xe1\ +\xcc\x1b\xef\xca\x06\xea\xcd\x0d\xe2.\xbbEb\xf2\xb0\x04\ +\x8f\xecl\xa9\xb0\xa8\xb7jP\xf8G6\x12\xd1@\x17\ +k\x82\x08\x84\x88=a\xca\x1b\xc0\x9f\x15 F\xa6\xb0\ +p\x15\xd0t\xa6d\x88\xc5f\xbe\x0f\x80\xb6\x830\x98\ +\xf7\xe2\x14\xfb\xaf\xbe\xcc\xb0\xa3\x13-\xef\x13lr\xbc\ +k4o'$\xfc\xafVHk\xe2\xfd\xc0~\x01\xe4\ +.{\xe6\x1e\x18\x11\xa0\x1e\x0c\xea\x01\x0c\xeeHj&\ +\x13\xc1\x0a\xee\xe1#\x09g\x91\x17\x09\xec3'\xd7\x00\ +\x22$d/z~\x91\x80\xdf1\x84\xc7g|\xef@\ +2\x03\xe1c\x1d\xe1\xba\xebD\x86\xaa\xa0\xd2\x08a\x97\ +\x1e\xe1|\x7f`g\x1f`~\xceA2\xfa\x04\x86>\ +\xe0\x9d `B>\xf0\xdc\xf6\xe25\x0e1\xc4\x220\ +\x06\x88\x10\x0a\xf3Pj\xec\xc0\x00\xe8!\x10\x15)\xc8\ +\x08\x80\xacH\x8c\xf2\x11\x8c\x92\x12\x00\xea\x7fj\xe0\x0b\ +\xd2D\x0e\xc4\x89\x0fAd\x13\xe1\x05% \xc4\xb6\x0d\ + \xc6,\xc7\x09\xf1y\x0e\x85v\xfcB0\xf3\x82\x09\ +\x03@8\x04D\x98\x14\xc1\xa0\xb8\xc4\x80\xc3A\xc7\x02\ +\xc0I\x19\xa5\x88\xa0`\x0a\x00\xcd`\xd4\x000\x03\xc4\ +\x80Y\x85z\x05\x81\xd5*!\xca\xdd\x8a\xcf!\x0e\xd5\ +\x1c\x0d\xe7\x0ep^\xa4rfd\xeeF\xbc\x8aR\xbc\ +\xc2\x0a\xfa\xc0\x98\x0b\xce\x12\x10\x01BH\x92(\x0d!\ +Y-\xa10o\x84\x00\x0a`\xce\x0f2\xe9-\xe4\x86\ +\x0fR\xf0\x0b\x01u/aR \x8c\xbf*\xa0d\x80\ +\xb2\x12\x9aq*\xbb\x92\xb7\x062 \xdfJ\x00\xee\x82\ +\x17,\xe1?,\x80\xc0H\x09\xdc\xd9@\xaa\x05A\xef\ +2\xe1\xeaRj\x16\x01r\xda\x15\x81\xae\x9b\xc0.\x03\ +\xa4\x80\xdb\xc1`\x13m\xb6\x0c\xc2\x104 \x1e\x02g\ +F\xe3\x13\x02\xb22a\x05\xcf-\x06\x10\xeb\x1b\xc2\x11\ +\x222\xc4!\x11\xa6\x01-\xa8\x13\xa1\x8a\x04\xf3\x80\x06\ +$\x80\x93\xa1p\x14\xb1f\x0b\x85&\xdbaJ\x09\x13\ +\x98\x0bD\x80\x8d\x01\xb0\x19\xb1\x04\x0c@v\xa3\x22\x0e\ +\xf6\xc7\xce\xff\xd1w6Q/6\x92\xbav\x89be\ +\x88^\xdf\x82\x19)@:\x13\xf3\xd0\x19\x0c<\x03D\ +\x80p@\xd6\xd5\x81V\xd5\xc4\xc0W\xa0\xd8\x0e\xb3\xec\ +\x12d\x81*!\xd4\x1c\xa5\x1a\x0c\x00o?A\xca\xdd\ +f\xbb\x122\xad\x0e\x13\x08VS\x0d6r\xb8\xcc\xf0\ +\xa7&\xb1;\x06\xc9l\x223\x80\x04\xe0`B!6\ +\x18o\x94D\xc2\xa5\x01\x81\x22\x0e\x8c\xf2\x11\xc4\x81$\ +@\xbc\x0e\xaf\xd0\xf3B@\xb9A\xec\x1ef6\xd8\x82\ +\x1d5@'\x052Z\xd8*AA3\xbbAlo\ +\x1c\xf0\x10\x1fNJ{\x821\x01\xe0\x92\xfe\xc1g\x1e\ +DQ3\xa1,\x12t\x8c\x0f\x0d\xd2%\x8d\xa4\x87\xe1\ +\x14\x0aT\x9c\x0c\xe4\x80<\x01\xfb\x0b\xe0\x98\xb0\xca|\ +\x22k\x1d\x16\xf0f!\xb1u\x00\x12\xb5AJ\xe0[\ +2\xbf\x18s\x18#I\x16\x09@\xb9,\xe1AHD\ +N\x1d\x94\xdc\x1c\xeer\x12\x80\xf38\x81L\xfe\x225\ +(\xc0\x0d9\x80\x90\x0bG$?@$\x02\xf4\xa22\ +\x01\xfb,\xe0\xc0\x16\xd5\x0c\x14\x821%\x8b!%\xc7\ +XY\xf1-\x1cq1A\x90\xecH\xe70\x1a\xb5,\ +\x19BAO@\xb3%!\x04\x14t\xd8H\x0e\x8f\x1a\ +\x01\x80\x16\x0c\xb6\x18\xe1p\x9d\xd3\xf4\x1c\x82\x08\xc4\x92\ +\x94\x03\xd4}\x19@\xa0\xf8\x80 H\x94\xa4\x0f\xd5l\ +\x0b\xb3\x88\x14\xecZt/\xb4\x9e\x93l \xef'Q\ +\xd4iR\x13\xbdRU~\xc0\xd3\x14\xc1\x02?\x22\xe0\ +\xa8\x10\xb5\x9c\x14\xe9\x80\xfe\x84P\x98k\x12\x0f`\xb4\ +\x17\x95\xb0\x15b@\xed\x14b\xf2LdV2\x16\x22\ +\x12\x1a\xae.\x9dX\xe2\x0aw\x15+R\xe2Q\x0c\x80\ +\xa0K\x01\x0c\x14\xec\x89ZB^w\x15\xaa\x0b,\x98\ +$\x93\xb0\xd8\x15\xbc}M\x86\xa9Qz\x11\x12h\x22\ +\xf2l%`S`\xa0f\x835[^BQ(\x13\ +\xec\x0e\xa0\xa4\xd1M\x18\xb5\xf4\x06Gm\xdf\x5c\xc2\x09\ +\x09\xd5\xc1K\xf4k1\x16, p\xeey\xb5\x94%\ +G\xc3\x22\x81S\x08`h\x08V\x14#\xe1\x9bea\ +\x80\x0f\x16\x5c\x0a\xc1\xdff!\xd6\xb1\xa6\xbbW\xb5\x16\ +#O\xba\xec\x95\x1f!\x95#`\x22,\x96S\xc7L\ +\xa2b6\x00\x06r@\xb9h\xe0\xe9e\x22-'a\ +\x1e\xf5!$\x0e\xc8X\x1f\x82aE\xd4af\xf5\xf6\ +\x1e0Z\x9fD@\xb2\xee\xe5Y3\xc8D\xb4|\xb5\ +A$\xe6\xf6\x94 \x90&\x1b\xaa\x82\x0d\xf0\xb8\x18\x81\ +j\xa7\xe7C\x16\xd1\xbbKb\x19c\x00}\x5c\x22\x1e\ +\xed\xf3\xbe\x0d\xd4\xc7\x1dO:H\x14\xf0\xf4J\x10l\ +\xea\x14Djk2\xe1\xee\x1e\xb3\xd0\x13\xe1\x0c\xcf*\ +0H\xe4\x81j\x88\x02\x15\xf0T\x22\xd6\xe9n\xc2\x1c\ +\xbb\xd4\xc3\x13T\x1c\xbck\xca\x88\xe4\xf4\x91\x006N\ +\x80\xde\x11`\x8ft\xa0\xb2\x7fr\xf6\x17ASC\x80\ +\xe8\xc3UTL\x0d\xd8\x15h\xec\x07\xcf5\x12\x94\x10\ +\xe3\xb5\xffF\xe20\xea%\x00\xeanLUV\x0a\x05\ + f~`\x8bx\xa0\xaeP\xe0\x0eL#\xee\x17w\ +\x98\x15!Qy\xe1%b\x05'[\x96\xad@\xce6\ +\xbbwp\xb6\xe5Ek\x8f\xc62f7R\xc1\xabS\ +\x07<\x86\x97J\x08\xe0\xb1]\x97gZ\x22V\x98a\ +\x9f}\xa1\x87TAau!P\x1d\xd7\xe8\x1dIG\ +W\x87\xc70\x13\x04#/\xbb:`v\xf7k+{\ +f\xe3+\xf7;B(b\x8bIp\x07\x14&\x06$\ +z\x06\x13\xcc\xf8\x80#VB\xbeU\xa8\xc032\x80\ +\x8c\xa1\xb2\x19\xe7\xda\x1a\x0b|\xe8\xe8c_.4\x1e\ +\x07\xb3E\x92\xb7\x1c\xb3\x13\x1d-\xf7hV\xcb\x85b\ +7*\x91%r\x83-Fw\xb30\xf3knO\x81\ +k\xd8U\x85\x98t\x22\xd7\xa9\x11W\xac\x1e\x11\xc3c\ +U\x89F\xd75`Xqo\xb8w\x89\x22%\x84\x15\ +\x19\x86H\x15\x86\x96\xf3\x80\x92\xc3s\xd8\x95\x8a\xb8\x97\ +\x7f\x0c\xc1@\xb1'+\x0e\xd9\x88Vx\x95\xc6J\xb7\ +4q\x06\x8d9\x01Ty\x8a\xd8\xd0!\xd2\xa9b\xb8\ +l!U\x82u\xd8f\x22\x970Z\xf6|\x22\xb6\x80\ +\x7f\x16C\x8d8\xf4 \x98]\x8bXa%\xf63&\ +2\xb6\xe9\xad1\x84\xf2\xc1\x13\xd8\xa9\x8fy\x14 \xb8\ +\x99FO)Xx\xbe\x84\xe6H~y\x0d\x80\xb9\x17\ +\x92\xe2\x06\xa8\x17\x22\xff\xa27g*\xd9\x92\x15\xc5R\ +7t\x22\xe9e\x22\x80\xd4FA\xbeF\x82\xe8.\xe3\ +v^B\xb2_C\x19\x96\x06p+b\xbfJT\x84\ +/\x02\xd5\x96\x83zic\x96;Y^6\xa2\x86`\ +\x09\x81\x97B\x1c+#\x0ciF\x9c\x1f\xc1\xfb\x97\xe3\ +\x1cjf\x04-#j \xe3\x94\x1f\xc3\x8c9\xa2\xb7\ +\x96b\x87\x82\x00\xd7\x9ba\x0b\x81\xaa\x8f\x89\xcf\xc3+\ +\xc2>\x96F\x0ak&\x08j\xa3\x14;\x85\xfc!\x86\ +\xa2_\xa5\xe4\x5c\xecpj\xc2\x0b\x9eFl_\xd9\xe0\ +^&\x7f\x9d4\xb7\x9eFy\x9c\xe2\x84]\x82\xcf\x95\ +e\xda^\x06\x1fD\xc2\x07r\xb8\xbd\x945\x8b\x94y\ +1\xa1\xa4\xf7\xa1\x19\x05\x8eD5s1\x7f\xa1\xda,\ +O.\x8e}vw\xa1@\x12\x0dZ<\x10\x97\x01\xa2\ +\xfaDO7\xe8\x1d\xc1\xd4\xe5`\x84S\x81\xbc\xb5\xcb\ +\xbaC \x0fh\xe0\xb8\x0e\x91\xe8\x10z\x0d\xa4zl\ +$\xbaT\x1a\xd7D\x09N\xfc\x1c\x220\x98\x00\x83\xa8\ + \xa3\x04\xc1\x02\x140\xb5\xa6\xfa\x90AC\xcdN\x88\ +\xe6\x0d\x87V#\x02\x9f\x0458\x14L\xde\x06\xda\x93\ +\xaa\xe4\x10\xd6\x81\xda\x1d\x19L\x18:\xbc\x16T\xa4#\ +\x86B\x97\xa0\xa9\x0b\xe1\x19O\xc0-\xab\x1a\xd4$\xe7\ +W'a \x15:\xe0\x12a\xe3\xaea\xda$\x87\xfc\ +\x02Q\x94\x09\xd0\x0a\xda\xe0F\x05r\x8dy\x22'\x9d\ +\xb9\xd9\x9dC\xac^\x19\xeb\xb0\xa3\x93\x9e\xfb\x0f\xb0c\ +\xb3\x9d\xa3\xc5\x9f\xc3\xac\x9e\xb9\xef\x95\xbb\x1e_\x99\xca\ +!Y\xf2a\xbb*_\xe6j)k\xe2\x1c;@\x1b\ +1\xde\x16!=[\x01x\x15zJ\x1d\x22P)\xe6\ +B\xdch\xa8\x06PCVB\x9fN\xd9\xdc`e\xf9\ +\x9d\xb9\xe4gC\xb0h\x05\xfd\x9d\xa6\x8a2\x02\x08g\ +\x14\xa5\xb2Y\xd0a\xa2\xa4j\x86\x1a`\x1a\x00X\xe0\ +\x02<\xdb\x8f\x99\xe2\x05\x99\xc2\xdf\xb7\x99\x5c8\x1bu\ +\x8c`\x01\xb7\xe1\xfd\xb2b\x0eJe\xd4\x1f\xbb\x82@\ +\xb0\xd0\x1f\x18(\xb4\xe1\xb9\xa7)@\x1c7\x0c\x1e\xbb\ +.$\xa2\x9e\x98\x06\x1f\xb9\x03\xb4\x22\x99\xf8A\x1b\xb8\ +H[\xea$[\xf2K\xc3\xcc\x98t\xa5\xbd\xba\xd7\xc0\ +<\x05\xc0|\x09\xc0\xbc\x0d\xc0\xe2\x08 \x00\x00\x03\ +\x00\x01\xa0\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\xa0\x04\ +\x00\x01\x00\x00\x00`\x00\x00\x00\x03\xa0\x04\x00\x01\x00\x00\ +\x00`\x00\x00\x00\x00\x00\x00\x00\x00\x00Adobe\ + Photoshop Docum\ +ent Data Block\x00M\ +IB8nrTM\x00\x00\x00\x00MIB8r\ +yaL\xdc\x19\x00\x00\x01\x00\x03\x00\x00\x00\x03\x00\x00\ +\x00]\x00\x00\x00\x5c\x00\x00\x00\x04\x00\xff\xff\x9b\x0b\x00\ +\x00\x00\x00C\x04\x00\x00\x01\x00C\x04\x00\x00\x02\x00C\ +\x04\x00\x00MIB8mron\xff\x00\x08\x00<\ +\x01\x00\x00\x00\x00\x00\x00(\x00\x00\x00\x00\x00\xff\xff\x00\ +\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\ +\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\ +\x00\xff\xff\x07Layer 0MIB8i\ +nul\x14\x00\x00\x00\x07\x00\x00\x00L\x00a\x00y\ +\x00e\x00r\x00 \x000\x00\x00\x00MIB8r\ +snl\x04\x00\x00\x00ryalMIB8d\ +iyl\x04\x00\x00\x00\x03\x00\x00\x00MIB8l\ +blc\x04\x00\x00\x00\x01\x00\x00\x00MIB8x\ +fni\x04\x00\x00\x00\x00\x00\x00\x00MIB8o\ +knk\x04\x00\x00\x00\x00\x00\x00\x00MIB8f\ +psl\x04\x00\x00\x00\x00\x00\x00\x00MIB8r\ +lcl\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00M\ +IB8dmhsH\x00\x00\x00\x01\x00\x00\x00M\ +IB8tsuc\x00\x00\x00\x004\x00\x00\x00\x10\ +\x00\x00\x00\x01\x00\x00\x00\x00\x00\x08\x00\x00\x00met\ +adata\x01\x00\x00\x00\x09\x00\x00\x00lay\ +erTimebuod\xc2\x93A\xe0\xf78\ +\xd6A\x00MIB8prxf\x10\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\ +\x00S\x00O\x00\x0f\x00\x0c\x00\x0a\x00\x09\x00\x09\x00\x09\ +\x00\x09\x00\x15\x00I\x00K\x00\x12\x00\x14\x00\x14\x00\x12\ +\x00\x13\x00\x13\x00\x13\x00#\x00!\x00\x1e\x00\x1d\x00\x1f\ +\x00\x1d\x00\x1d\x00\x1d\x00\x1c\x00\x1e\x00\x1d\x00(\x00'\ +\x00&\x00&\x00&\x00%\x00$\x00$\x00\x22\x00 \ +\x00 \x00\x1e\x00\x22\x00\x1f\x00\x1e\x00\x1e\x00\x1f\x00!\ +\x00 \x00 \x00#\x00!\x00%\x00%\x00$\x00'\ +\x00(\x00(\x00+\x00\x1d\x00\x1d\x00\x1d\x00\x1d\x00\x1c\ +\x00\x1d\x00\x1e\x00\x1e\x00\x1f\x00 \x00#\x00\x13\x00\x13\ +\x00\x13\x00\x12\x00\x14\x00\x12\x00\x13\x00\x13\x00M\x00L\ +\x00\x09\x00\x09\x00\x08\x00\x09\x00\x0a\x00\x0a\x00\x0c\x00L\ +\x00W\x00 \x00\xfd\x00\x04\x05\x11!-1\xfe/\xfc\ +0\x181//0110010/1/0\ +010/0110/01\xfe0\x0a/2\ +1100/00//\xfe1\x000\xfe1\x05\ +010/01\xfe0\xfe1\xff0\x081/0\ +/-'\x18\x08\x01\xfe\x00\xff\x00\x07\x01\x14X\xab\xdb\ +\xec\xf0\xf0\xfd\xf1\x00\xf0\xfe\xf1\x00\xf2\xfd\xf1\xff\xf0\x01\ +\xf1\xf0\xf8\xf1\x03\xf0\xf1\xf1\xf0\xfe\xf1\xfe\xf0\x07\xf1\xf0\ +\xf0\xf1\xf1\xf0\xf1\xf0\xfc\xf1\xff\xf0\x1b\xf1\xf0\xf0\xf1\xf2\ +\xf1\xf0\xf1\xf0\xf1\xf1\xf2\xf0\xf1\xf0\xf1\xf0\xf0\xf1\xf0\xee\ +\xe4\xc2|.\x06\x00\x00\xff\x00\x03\x16\x86\xed\xfd\xb3\xff\ +\x04\xf9\xbfA\x06\x00\x03\x00\x08l\xf4\xb0\xff\x03\xfe\xbd\ +*\x01\x02\x00$\xd0\xae\xff\x02\xf8x\x07\x02\x02O\xf6\ +\xad\xff\x01\xc0\x14\x02\x05r\xfd\xad\xff\x01\xe1#\x02\x08\ +\x86\xfe\xad\xff\x01\xed+\x02\x08\x8f\xfe\xad\xff\x01\xef-\ +\x02\x09\x91\xfe\xf1\xff\x00\xfe\xdb\xff\xfe\xfe\xfd\xff\x00\xfe\ +\xec\xff\x01\xef,\x02\x08\x91\xfe\xfa\xff\x17\xfe\xcf\xc2\xc3\ +\xc2\xc4\xc3\xc4\xc3\xc3\xc4\xc4\xc1\xc3\xc3\xc2\xc3\xc2\xc2\xc3\ +\xc2\xc3\xc4\xc4\xfe\xc2\xfd\xc3\x0a\xc2\xc3\xc3\xc2\xc3\xc3\xc2\ +\xc3\xc2\xc2\xc1\xfe\xc3\xff\xc4\xf9\xc3\x06\xc4\xc3\xc3\xc4\xc2\ +\xc3\xc4\xfe\xc3\xff\xc2\x01\xc7\xf1\xf9\xff\x01\xf0-\x02\x09\ +\x90\xfe\xfa\xff\x03\xfaK\x18\x17\xfc\x18\x16\x17\x18\x16\x19\ +\x17\x18\x19\x19\x18\x19\x18\x17\x18\x19\x19\x18\x17\x17\x19\x17\ +\x17\x19\x17\xfb\x18\x11\x17\x16\x18\x16\x19\x19\x17\x18\x18\x19\ +\x18\x18\x19\x17\x19\x18\x19\x18\xfd\x19\x08\x18\x19\x19\x18\x19\ +\x19\x17,\xc7\xf9\xff\x01\xf0,\x01\x09\x90\xf9\xff\x01\xf9\ +8\xc0\x00\x01\x15\xc0\xf9\xff\x01\xef.\x02\x09\x91\xfe\xfa\ +\xff\x01\xf97\xc0\x00\x02\x14\xc2\xfe\xfa\xff\x01\xf0-\x02\ +\x09\x90\xfe\xfa\xff\x01\xf88\xc0\x00\x02\x14\xc2\xfe\xfa\xff\ +\x01\xef/\x01\x08\x90\xf9\xff\x01\xf99\xc0\x00\x01\x14\xc1\ +\xf9\xff\x01\xf0/\x02\x09\x90\xfe\xfa\xff\x01\xf97\xc0\x00\ +\x01\x12\xc0\xf9\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\x01\xf9\ +8\xc0\x00\x01\x14\xc2\xf9\xff\x01\xf1-\x02\x09\x90\xfe\xfa\ +\xff\x01\xfa8\xc0\x00\x01\x15\xc1\xf9\xff\x01\xef-\x01\x09\ +\x92\xf9\xff\x01\xf97\xe7\x00\x0d\x1aU\x87\xb8\xd5\xe6\xf7\ +\xf7\xe6\xd6\xb9\x88V\x1a\xe8\x00\x01\x15\xc2\xf9\xff\x01\xef\ +,\x02\x09\x91\xfe\xfa\xff\x01\xf98\xea\x00\x03\x1bw\xc7\ +\xfe\xf5\xff\x03\xfe\xc9x\x1d\xeb\x00\x01\x14\xc2\xf9\xff\x01\ +\xf0/\x01\x09\x90\xf9\xff\x01\xfa7\xec\x00\x028\xa8\xfb\ +\xef\xff\x02\xfb\xaa:\xed\x00\x01\x15\xc2\xf9\xff\x01\xef-\ +\x01\x09\x91\xf9\xff\x01\xf87\xee\x00\x01\x1c\xaa\xe9\xff\x01\ +\xac\x1e\xef\x00\x02\x14\xc1\xfe\xfa\xff\x01\xef/\x02\x08\x90\ +\xfe\xfa\xff\x01\xf98\xf0\x00\x02\x06x\xf4\xe7\xff\x02\xf5\ +z\x07\xf1\x00\x01\x15\xc2\xf9\xff\x01\xf0-\x02\x09\x91\xfe\ +\xfa\xff\x01\xf97\xf1\x00\x01F\xd9\xe3\xff\x01\xdbH\xf2\ +\x00\x01\x14\xc3\xf9\xff\x01\xf0/\x02\x09\x91\xfe\xfa\xff\x01\ +\xfa7\xf3\x00\x01\x02\x85\xdf\xff\x01\x88\x02\xf4\x00\x01\x15\ +\xc1\xf9\xff\x01\xf1-\x02\x09\x92\xfe\xfa\xff\x01\xf88\xf4\ +\x00\x01\x10\xb5\xdd\xff\x01\xb7\x10\xf5\x00\x01\x15\xc2\xf9\xff\ +\x01\xf0.\x01\x09\x90\xf9\xff\x01\xf98\xf5\x00\x01*\xda\ +\xdb\xff\x01\xdb+\xf6\x00\x01\x15\xc2\xf9\xff\x01\xf0.\x02\ +\x09\x90\xfe\xfa\xff\x01\xf99\xf6\x00\x01C\xf2\xd9\xff\x01\ +\xf3E\xf7\x00\x02\x15\xc3\xfe\xfa\xff\x01\xef-\x01\x08\x91\ +\xf9\xff\x01\xf97\xf7\x00\x01D\xf6\xd7\xff\x01\xf7E\xf8\ +\x00\x02\x14\xc2\xfe\xfa\xff\x01\xf0/\x02\x09\x91\xfe\xfa\xff\ +\x01\xf98\xf8\x00\x01F\xf7\xf0\xff\x07\xe5\x91H*\x0d\ +\x0c&\xe3\xee\xff\x01\xf7F\xf9\x00\x01\x14\xc1\xf9\xff\x01\ +\xf0.\x02\x09\x91\xfe\xfa\xff\x01\xf98\xf9\x00\x01G\xf7\ +\xf1\xff\x02\xe0S\x02\xfb\x00\x00\xdb\xed\xff\x01\xf7G\xfa\ +\x00\x01\x14\xc1\xf9\xff\x01\xf0.\x02\x09\x91\xfe\xfa\xff\x01\ +\xf99\xfa\x00\x015\xf5\xf1\xff\x01\x8c\x09\xf9\x00\x00\xdb\ +\xec\xff\x01\xf54\xfb\x00\x01\x14\xc2\xf9\xff\x01\xf1.\x02\ +\x09\x92\xfe\xfa\xff\x01\xf99\xfb\x00\x01\x1e\xe7\xf2\xff\x01\ +\xfdj\xf7\x00\x00\xdb\xeb\xff\x01\xe7\x1d\xfc\x00\x01\x15\xc1\ +\xf9\xff\x01\xf0/\x02\x08\x93\xfe\xfa\xff\x01\xf98\xfc\x00\ +\x01\x0e\xd3\xf1\xff\x00d\xf6\x00\x00\xdb\xea\xff\x01\xd1\x0d\ +\xfd\x00\x02\x15\xc1\xfe\xfa\xff\x01\xef.\x02\x09\x91\xfe\xfa\ +\xff\x01\xf98\xfd\x00\x01\x01\xb4\xf1\xff\x00\x9f\xf5\x00\x00\ +\xdb\xe9\xff\x01\xb1\x01\xfe\x00\x01\x14\xc1\xf9\xff\x01\xef-\ +\x01\x08\x8f\xf9\xff\x01\xf99\xfd\x00\x00|\xf1\xff\x01\xdf\ +\x0a\xf5\x00\x00\xdb\xe8\xff\x00w\xfe\x00\x02\x15\xbf\xfe\xfa\ +\xff\x01\xee.\x02\x09\x92\xfe\xfa\xff\x01\xf89\xfe\x00\x01\ +<\xfc\xf1\xff\x00d\xf4\x00\x00\xdb\xe8\xff\x05\xfb7\x00\ +\x00\x14\xc2\xf9\xff\x01\xef.\x01\x09\x91\xf9\xff\x05\xf98\ +\x00\x00\x0e\xe0\xf1\xff\x01\xe0\x05\xf4\x00\x00\xdb\xe7\xff\x04\ +\xda\x0a\x00\x14\xc1\xf9\xff\x01\xf0-\x02\x09\x90\xfe\xfa\xff\ +\x04\xf98\x00\x00\x8d\xf0\xff\x00\x89\xf3\x00\x00\xdb\xe6\xff\ +\x03\x81\x00\x14\xc1\xf9\xff\x01\xef,\x02\x09\x90\xfe\xfa\xff\ +\x04\xf97\x00\x10\xf3\xf0\xff\x00@\xf3\x00\x00\xdb\xe6\xff\ +\x03\xee\x0c\x15\xc2\xf9\xff\x01\xf1.\x01\x09\x91\xf9\xff\x03\ +\xf98\x00v\xf0\xff\x01\xf6\x05\xf3\x00\x00\xdb\xe5\xff\x02\ +q\x14\xc3\xf9\xff\x01\xf1.\x02\x09\x92\xfe\xfa\xff\x03\xf9\ +9\x00\xb5\xf0\xff\x00\xdc\xf2\x00\x00\x22\xf7'\x00\xd9\xf0\ +\xff\x02\xb2\x13\xc2\xf9\xff\x01\xf0.\x02\x09\x91\xfe\xfa\xff\ +\x03\xf97\x00\xd9\xf0\xff\x00\xc4\xe7\x00\x00\xbe\xf0\xff\x03\ +\xd7\x15\xc2\xfe\xfa\xff\x01\xf0.\x02\x09\x91\xfe\xfa\xff\x03\ +\xf98\x00\xf6\xf0\xff\x00\xb3\xe7\x00\x00\xaf\xf0\xff\x02\xf6\ +\x14\xc1\xf9\xff\x01\xef.\x02\x09\x91\xfe\xfa\xff\x03\xf88\ +\x00\xdf\xf0\xff\x00\xc6\xe7\x00\x00\xc2\xf0\xff\x02\xde\x15\xc1\ +\xf9\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\x03\xf97\x00\xbb\ +\xf0\xff\x00\xdd\xe7\x00\x00\xd9\xf0\xff\x03\xb9\x14\xc2\xfe\xfa\ +\xff\x01\xf1.\x02\x09\x91\xfe\xfa\xff\x03\xf98\x00\x88\xf0\ +\xff\x01\xf7\x06\xe9\x00\x01\x05\xf5\xf0\xff\x03\x84\x15\xc2\xfe\ +\xfa\xff\x01\xef.\x02\x09\x90\xfe\xfa\xff\x04\xf98\x00\x1f\ +\xfc\xf0\xff\x00B\xe9\x00\x00?\xf0\xff\x03\xf9\x1a\x14\xc1\ +\xf9\xff\x01\xef.\x02\x09\x92\xfe\xfa\xff\x04\xf97\x00\x00\ +\xa9\xf0\xff\x00\x8b\xe9\x00\x00\x89\xf0\xff\x03\x9e\x00\x15\xc2\ +\xf9\xff\x01\xf0.\x01\x09\x91\xf9\xff\x05\xf98\x00\x00\x22\ +\xf2\xf1\xff\x01\xe2\x06\xeb\x00\x01\x06\xe1\xf1\xff\x04\xef\x1b\ +\x00\x15\xc1\xf9\xff\x01\xef.\x01\x09\x91\xf9\xff\x01\xf97\ +\xfe\x00\x00^\xf0\xff\x00h\xeb\x00\x00g\xf0\xff\x04W\ +\x00\x00\x14\xc0\xf9\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\x01\ +\xf98\xfd\x00\x00\x9f\xf1\xff\x01\xe1\x0b\xed\x00\x01\x0b\xe2\ +\xf1\xff\x00\x9a\xfe\x00\x01\x13\xc0\xf9\xff\x01\xf0.\x02\x09\ +\x91\xfe\xfa\xff\x01\xf97\xfd\x00\x01\x09\xce\xf1\xff\x00\xa4\ +\xed\x00\x00\xa5\xf1\xff\x01\xcc\x07\xfe\x00\x01\x14\xc1\xf9\xff\ +\x01\xf1.\x01\x09\x91\xf9\xff\x01\xfa8\xfc\x00\x01\x1d\xe5\ +\xf1\xff\x00j\xef\x00\x00l\xf1\xff\x01\xe4\x1b\xfd\x00\x01\ +\x15\xc1\xf9\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\x01\xf97\ +\xfb\x00\x010\xf3\xf2\xff\x01\xfer\xf1\x00\x01u\xfe\xf2\ +\xff\x01\xf2/\xfc\x00\x01\x13\xc2\xf9\xff\x01\xf0-\x02\x09\ +\x91\xfe\xfa\xff\x01\xf99\xfa\x00\x01I\xfc\xf1\xff\x01\x95\ +\x0d\xf5\x00\x01\x0e\x98\xf1\xff\x01\xfcH\xfb\x00\x02\x15\xc2\ +\xfe\xfa\xff\x01\xf1.\x01\x09\x92\xf9\xff\x01\xf98\xf9\x00\ +\x01\x5c\xfc\xf1\xff\x02\xe6_\x05\xf9\x00\x02\x06`\xe8\xf1\ +\xff\x01\xfc\x5c\xfa\x00\x01\x15\xc2\xf9\xff\x01\xf0-\x02\x09\ +\x91\xfe\xfa\xff\x01\xf86\xf8\x00\x01Y\xfc\xf0\xff\x09\xee\ +\x9eV8\x1c\x1c8V\x9f\xef\xf0\xff\x01\xfcY\xf9\x00\ +\x02\x14\xc1\xfe\xfa\xff\x01\xf0-\x02\x09\x91\xfe\xfa\xff\x01\ +\xf98\xf7\x00\x01T\xfb\xd7\xff\x01\xfbU\xf8\x00\x01\x14\ +\xc2\xf9\xff\x01\xf0.\x02\x09\x92\xfe\xfa\xff\x01\xf86\xf6\ +\x00\x01P\xf7\xd9\xff\x01\xf8Q\xf7\x00\x01\x14\xc1\xf9\xff\ +\x01\xf0/\x01\x09\x91\xf9\xff\x01\xf98\xf5\x00\x013\xe1\ +\xdb\xff\x01\xe24\xf6\x00\x02\x15\xc1\xfe\xfa\xff\x01\xf0.\ +\x02\x09\x91\xfe\xfa\xff\x01\xf88\xf4\x00\x01\x14\xbd\xdd\xff\ +\x01\xbf\x15\xf5\x00\x01\x15\xc2\xf9\xff\x01\xf1-\x01\x09\x91\ +\xf9\xff\x01\xfa8\xf3\x00\x01\x03\x8b\xdf\xff\x01\x8e\x04\xf4\ +\x00\x01\x13\xc2\xf9\xff\x01\xf0.\x01\x08\x90\xf9\xff\x01\xf9\ +8\xf1\x00\x01I\xdb\xe3\xff\x01\xdcK\xf2\x00\x02\x14\xc2\ +\xfe\xfa\xff\x01\xf0.\x01\x09\x91\xf9\xff\x01\xf98\xf0\x00\ +\x02\x06x\xf4\xe7\xff\x02\xf4z\x07\xf1\x00\x01\x13\xc2\xf9\ +\xff\x01\xf0.\x02\x08\x91\xfe\xfa\xff\x01\xf97\xee\x00\x01\ +\x1b\xa6\xe9\xff\x01\xa8\x1c\xef\x00\x02\x15\xc0\xfe\xfa\xff\x01\ +\xef-\x02\x09\x91\xfe\xfa\xff\x01\xf89\xec\x00\x023\xa1\ +\xf8\xef\xff\x02\xf9\xa24\xed\x00\x01\x14\xc2\xf9\xff\x01\xef\ +-\x01\x09\x90\xf9\xff\x01\xf96\xea\x00\x03\x15m\xbd\xfb\ +\xf5\xff\x03\xfb\xben\x16\xeb\x00\x01\x14\xc0\xf9\xff\x01\xf1\ +,\x01\x09\x90\xf9\xff\x01\xf97\xe7\x00\x0d\x11Iz\xaa\ +\xc7\xd8\xe8\xe9\xd8\xc8\xabzJ\x11\xe8\x00\x01\x14\xc1\xf9\ +\xff\x01\xef/\x02\x09\x90\xfe\xfa\xff\x01\xf98\xc0\x00\x01\ +\x15\xc1\xf9\xff\x01\xf0-\x02\x09\x91\xfe\xfa\xff\x01\xf98\ +\xc0\x00\x01\x14\xc2\xf9\xff\x01\xef.\x02\x09\x91\xfe\xfa\xff\ +\x01\xf98\xc0\x00\x01\x14\xc1\xf9\xff\x01\xf0-\x01\x09\x91\ +\xf9\xff\x01\xf97\xc0\x00\x01\x14\xc1\xf9\xff\x01\xef.\x02\ +\x09\x90\xfe\xfa\xff\x01\xf99\xc0\x00\x02\x15\xc1\xfe\xfa\xff\ +\x01\xf0-\x01\x08\x91\xf9\xff\x01\xfa8\xc0\x00\x01\x15\xc1\ +\xf9\xff\x01\xf0.\x02\x09\x92\xfe\xfa\xff\x01\xf97\xc0\x00\ +\x01\x14\xc1\xf9\xff\x01\xf0-\x02\x09\x90\xfe\xfa\xff\x01\xf9\ +7\xc0\x00\x01\x14\xc3\xf9\xff\x01\xf1-\x02\x09\x91\xfe\xfa\ +\xff\x02\xfad;\xfe:\xfe9\x1589;;9:\ +:8;9:7:9:;99;:98\ +\xfd:\xff8\x017;\xfc9\x09;:9;;8\ +:979\xfe:\xff9\x09:89::8;\ +9J\xcf\xf9\xff\x01\xf0-\x01\x09\x91\xf8\xff\x00\xfa\xfd\ +\xf9\x08\xf8\xf9\xf9\xf8\xf9\xf8\xf8\xf9\xf8\xfd\xf9\x06\xfa\xf9\ +\xf9\xf8\xf9\xf8\xf8\xfe\xf9\x00\xf8\xfe\xf9\x0e\xf8\xf9\xf9\xf8\ +\xf9\xf8\xf9\xf8\xf8\xf9\xf8\xf9\xf9\xf8\xf8\xfd\xf9\x00\xf8\xfe\ +\xf9\x05\xf8\xf9\xf9\xf8\xfa\xfa\xfe\xf9\xff\xf8\x01\xf9\xfe\xf9\ +\xff\x01\xf0.\x02\x09\x91\xfe\xad\xff\x01\xf0.\x02\x08\x91\ +\xfe\xad\xff\x01\xee-\x01\x09\x8d\xac\xff\x01\xe9+\x02\x07\ +{\xfe\xad\xff\x01\xd5\x1f\x02\x04U\xf6\xae\xff\x02\xfd\xa3\ +\x0f\x02\x01'\xc9\xae\xff\x02\xe7Q\x03\x03\x00\x09]\xe9\ +\xb0\xff\x03\xf0\x80\x13\x00\xff\x00\x03\x12`\xcc\xf7\xfb\xfe\ +\x00\xff\xfc\xfe\x00\xff\xfe\xfe\x02\xff\xfe\xff\xfe\xfe\x05\xff\ +\xfe\xfe\xff\xfe\xff\xfd\xfe\x0a\xff\xfe\xff\xfe\xfe\xff\xfe\xff\ +\xff\xfe\xfe\xfc\xff\xff\xfe\xfe\xff\x04\xfe\xff\xfe\xff\xff\xfb\ +\xfe\xff\xff\xff\xfe\x02\xff\xfe\xff\xfc\xfe\x06\xfd\xf5\xcel\ +\x17\x00\x00\xff\x00\x08\x01\x0a.`\x86\x96\x97\x92\x92\xfe\ +\x91\xff\x92\x13\x93\x92\x92\x91\x92\x92\x90\x91\x92\x91\x90\x91\ +\x92\x91\x91\x93\x91\x91\x94\x91\xfc\x92\x05\x91\x92\x91\x91\x90\ +\x92\xfe\x91\x0f\x90\x92\x92\x93\x91\x90\x92\x92\x90\x92\x91\x90\ +\x91\x92\x92\x90\xfd\x91\x03\x93\x91\x90\x90\xfe\x91\x0b\x93\x90\ +\x90\x92\x8ayU+\x0c\x01\x00\x00\xfd\x00\x04\x01\x05\x0a\ +\x0c\x0b\xfb\x0a\x00\x09\xf2\x0a\xff\x09\xf0\x0a\x00\x09\xf6\x0a\ +\x00\x09\xee\x0a\x02\x08\x04\x01\xfd\x00\x01\x00\x02\x00\x02\x00\ +\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\ +\x02\x00\x02\x00\x02\x00\x02\x00\x06\x00\x06\x00\x06\x00\x06\x00\ +\x06\x00\x11\x00\x10\x00\x0c\x00\x0c\x00\x0e\x00\x0c\x00\x0f\x00\ +\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x12\x00\x11\x00\x14\x00\x10\x00\ +\x12\x00\x14\x00\x12\x00\x0e\x00\x0f\x00\x0f\x00\x10\x00\x0e\x00\ +\x0a\x00\x06\x00\x08\x00\x08\x00\x06\x00\x08\x00\x10\x00\x11\x00\ +\x14\x00\x16\x00\x16\x00\x15\x00\x14\x00\x14\x00\x17\x00\x14\x00\ +\x16\x00\x0c\x00\x0a\x00\x0e\x00\x0f\x00\x0f\x00\x0c\x00\x0e\x00\ +\x0e\x00\x0e\x00\x10\x00\x13\x00\x06\x00\x06\x00\x06\x00\x06\x00\ +\x06\x00\x06\x00\x06\x00\x06\x00\x02\x00\x02\x00\x02\x00\x02\x00\ +\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\ +\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\ +\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xf4\xcc\xc1\xff\ +\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\ +\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xe8\x00\x03\xcd\ +\xcc\xcc\xcd\xf8\xcc\x00\xcd\xe8\x00\xf5\xcc\xf4\xcc\xeb\x00\x02\ +\xcf\xcd\xcd\xf1\xcc\x00\xd3\xeb\x00\xf5\xcc\xf4\xcc\xed\x00\xea\ +\xcc\x00\xce\xed\x00\xf5\xcc\xf4\xcc\xef\x00\x00\xd1\xe6\xcc\xef\ +\x00\xf5\xcc\xf4\xcc\xf1\x00\x00\xd4\xe3\xcc\x00\xda\xf1\x00\xf5\ +\xcc\xf4\xcc\xf2\x00\xe0\xcc\x00\xcd\xf2\x00\xf5\xcc\xf4\xcc\xf4\ +\x00\x01\xff\xcd\xde\xcc\x00\xff\xf4\x00\xf5\xcc\xf4\xcc\xf5\x00\ +\x00\xcf\xdb\xcc\x00\xcf\xf5\x00\xf5\xcc\xf4\xcc\xf6\x00\x00\xce\ +\xd9\xcc\x00\xcf\xf6\x00\xf5\xcc\xf4\xcc\xf7\x00\x00\xcd\xd7\xcc\ +\x00\xce\xf7\x00\xf5\xcc\xf4\xcc\xf8\x00\x00\xce\xd5\xcc\x00\xce\ +\xf8\x00\xf5\xcc\xf4\xcc\xf9\x00\xec\xcc\x04\xcd\xce\xd7\xd4\xd0\ +\xeb\xcc\xf9\x00\xf5\xcc\xf4\xcc\xfa\x00\xee\xcc\x01\xcd\xff\xfb\ +\x00\xea\xcc\xfa\x00\xf5\xcc\xf4\xcc\xfb\x00\x00\xce\xef\xcc\x00\ +\xe2\xf9\x00\xea\xcc\x00\xcd\xfb\x00\xf5\xcc\xf4\xcc\xfc\x00\xee\ +\xcc\xf7\x00\xe9\xcc\x00\xd3\xfc\x00\xf5\xcc\xf4\xcc\xfd\x00\x00\ +\xda\xef\xcc\xf6\x00\xe8\xcc\x00\xd7\xfd\x00\xf5\xcc\xf4\xcc\xfe\ +\x00\x00\xff\xf0\xcc\x00\xcd\xf5\x00\xe7\xcc\x00\xff\xfe\x00\xf5\ +\xcc\xf4\xcc\xfe\x00\x00\xcd\xef\xcc\xf5\x00\xe7\xcc\x00\xcd\xfe\ +\x00\xf5\xcc\xf4\xcc\xff\x00\xee\xcc\xf4\x00\xe5\xcc\xff\x00\xf5\ +\xcc\xf4\xcc\x01\x00\xda\xee\xcc\xf4\x00\xe4\xcc\x00\x00\xf5\xcc\ +\xf4\xcc\x00\x00\xee\xcc\xf3\x00\xe5\xcc\x01\xcd\x00\xf5\xcc\xf4\ +\xcc\x00\xcf\xef\xcc\x00\xcf\xf3\x00\xe4\xcc\x00\xd4\xf5\xcc\xf4\ +\xcc\x00\xcd\xee\xcc\xf3\x00\xe4\xcc\x00\xcd\xf5\xcc\xe1\xcc\xf2\ +\x00\x00\xd2\xf7\xd1\xe2\xcc\xe1\xcc\xe7\x00\xe2\xcc\xe2\xcc\x00\ +\xcd\xe7\x00\xe2\xcc\xe1\xcc\xe7\x00\x00\xcd\xe3\xcc\xe1\xcc\xe7\ +\x00\xe2\xcc\xe1\xcc\x00\xd4\xe9\x00\xe1\xcc\xf4\xcc\x00\xcd\xee\ +\xcc\xe9\x00\x00\xce\xef\xcc\x00\xcd\xf5\xcc\xf4\xcc\x01\x00\xcd\ +\xf0\xcc\x00\xcd\xe9\x00\xee\xcc\x00\x00\xf5\xcc\xf4\xcc\x01\x00\ +\xd2\xef\xcc\x00\xd4\xeb\x00\x00\xd4\xef\xcc\x01\xcf\x00\xf5\xcc\ +\xf4\xcc\xff\x00\x00\xce\xf0\xcc\x00\xcd\xeb\x00\x00\xcd\xf0\xcc\ +\x02\xcd\x00\x00\xf5\xcc\xf4\xcc\xfe\x00\x00\xcd\xf0\xcc\x00\xd0\ +\xed\x00\x00\xd0\xf0\xcc\x00\xcd\xfe\x00\xf5\xcc\xf4\xcc\xfe\x00\ +\x00\xe2\xf0\xcc\x00\xcd\xed\x00\xf0\xcc\x01\xcd\xda\xfe\x00\xf5\ +\xcc\xf4\xcc\xfd\x00\x00\xd3\xef\xcc\xef\x00\x00\xcd\xf0\xcc\x00\ +\xcf\xfd\x00\xf5\xcc\xf4\xcc\xfc\x00\x00\xcf\xf0\xcc\x00\xcd\xf1\ +\x00\xef\xcc\x00\xce\xfc\x00\xf5\xcc\xf4\xcc\xfb\x00\x00\xce\xf0\ +\xcc\x01\xcd\xd7\xf5\x00\x00\xda\xef\xcc\x00\xcd\xfb\x00\xf5\xcc\ +\xf4\xcc\xfa\x00\x00\xcd\xed\xcc\xf9\x00\x00\xd4\xee\xcc\x00\xcd\ +\xfa\x00\xf5\xcc\xf4\xcc\xf9\x00\x00\xce\xeb\xcc\xff\xd1\xff\xcc\ +\x00\xcd\xee\xcc\x00\xce\xf9\x00\xf5\xcc\xf4\xcc\xf8\x00\x00\xce\ +\xd4\xcc\xf8\x00\xf5\xcc\xf4\xcc\xf7\x00\xd5\xcc\xf7\x00\xf5\xcc\ +\xf4\xcc\xf6\x00\x00\xcd\xd9\xcc\x00\xcd\xf6\x00\xf5\xcc\xf4\xcc\ +\xf5\x00\x01\xcc\xcd\xdc\xcc\x00\xce\xf5\x00\xf5\xcc\xf4\xcc\xf4\ +\x00\x01\xff\xcd\xde\xcc\x00\xff\xf4\x00\xf5\xcc\xf4\xcc\xf2\x00\ +\x00\xce\xe0\xcc\xf2\x00\xf5\xcc\xf4\xcc\xf1\x00\x00\xd4\xe3\xcc\ +\x00\xda\xf1\x00\xf5\xcc\xf4\xcc\xef\x00\x00\xcf\xe7\xcc\x00\xd1\ +\xef\x00\xf5\xcc\xf4\xcc\xed\x00\x00\xcd\xeb\xcc\x00\xcd\xed\x00\ +\xf5\xcc\xf4\xcc\xeb\x00\x02\xce\xcd\xcd\xf1\xcc\x00\xd0\xeb\x00\ +\xf5\xcc\xf4\xcc\xe8\x00\x04\xd2\xce\xcc\xcc\xcd\xfa\xcc\x01\xce\ +\xd2\xe8\x00\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\ +\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\ +\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\ +\xcc\xc1\xff\xf5\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\ +\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\x01\x00\x02\ +\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\ +\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x06\x00\x06\x00\x06\ +\x00\x06\x00\x06\x00\x11\x00\x10\x00\x0c\x00\x0c\x00\x0e\x00\x0c\ +\x00\x0f\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x12\x00\x11\x00\x14\ +\x00\x10\x00\x12\x00\x14\x00\x12\x00\x0e\x00\x0f\x00\x0f\x00\x10\ +\x00\x0e\x00\x0a\x00\x06\x00\x08\x00\x08\x00\x06\x00\x08\x00\x10\ +\x00\x11\x00\x14\x00\x16\x00\x16\x00\x15\x00\x14\x00\x14\x00\x17\ +\x00\x14\x00\x16\x00\x0c\x00\x0a\x00\x0e\x00\x0f\x00\x0f\x00\x0c\ +\x00\x0e\x00\x0e\x00\x0e\x00\x10\x00\x13\x00\x06\x00\x06\x00\x06\ +\x00\x06\x00\x06\x00\x06\x00\x06\x00\x06\x00\x02\x00\x02\x00\x02\ +\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\ +\x00\x02\x00\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\ +\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xf4\ +\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\ +\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xe8\ +\x00\x03\xcd\xcc\xcc\xcd\xf8\xcc\x00\xcd\xe8\x00\xf5\xcc\xf4\xcc\ +\xeb\x00\x02\xcf\xcd\xcd\xf1\xcc\x00\xd3\xeb\x00\xf5\xcc\xf4\xcc\ +\xed\x00\xea\xcc\x00\xce\xed\x00\xf5\xcc\xf4\xcc\xef\x00\x00\xd1\ +\xe6\xcc\xef\x00\xf5\xcc\xf4\xcc\xf1\x00\x00\xd4\xe3\xcc\x00\xda\ +\xf1\x00\xf5\xcc\xf4\xcc\xf2\x00\xe0\xcc\x00\xcd\xf2\x00\xf5\xcc\ +\xf4\xcc\xf4\x00\x01\xff\xcd\xde\xcc\x00\xff\xf4\x00\xf5\xcc\xf4\ +\xcc\xf5\x00\x00\xcf\xdb\xcc\x00\xcf\xf5\x00\xf5\xcc\xf4\xcc\xf6\ +\x00\x00\xce\xd9\xcc\x00\xcf\xf6\x00\xf5\xcc\xf4\xcc\xf7\x00\x00\ +\xcd\xd7\xcc\x00\xce\xf7\x00\xf5\xcc\xf4\xcc\xf8\x00\x00\xce\xd5\ +\xcc\x00\xce\xf8\x00\xf5\xcc\xf4\xcc\xf9\x00\xec\xcc\x04\xcd\xce\ +\xd7\xd4\xd0\xeb\xcc\xf9\x00\xf5\xcc\xf4\xcc\xfa\x00\xee\xcc\x01\ +\xcd\xff\xfb\x00\xea\xcc\xfa\x00\xf5\xcc\xf4\xcc\xfb\x00\x00\xce\ +\xef\xcc\x00\xe2\xf9\x00\xea\xcc\x00\xcd\xfb\x00\xf5\xcc\xf4\xcc\ +\xfc\x00\xee\xcc\xf7\x00\xe9\xcc\x00\xd3\xfc\x00\xf5\xcc\xf4\xcc\ +\xfd\x00\x00\xda\xef\xcc\xf6\x00\xe8\xcc\x00\xd7\xfd\x00\xf5\xcc\ +\xf4\xcc\xfe\x00\x00\xff\xf0\xcc\x00\xcd\xf5\x00\xe7\xcc\x00\xff\ +\xfe\x00\xf5\xcc\xf4\xcc\xfe\x00\x00\xcd\xef\xcc\xf5\x00\xe7\xcc\ +\x00\xcd\xfe\x00\xf5\xcc\xf4\xcc\xff\x00\xee\xcc\xf4\x00\xe5\xcc\ +\xff\x00\xf5\xcc\xf4\xcc\x01\x00\xda\xee\xcc\xf4\x00\xe4\xcc\x00\ +\x00\xf5\xcc\xf4\xcc\x00\x00\xee\xcc\xf3\x00\xe5\xcc\x01\xcd\x00\ +\xf5\xcc\xf4\xcc\x00\xcf\xef\xcc\x00\xcf\xf3\x00\xe4\xcc\x00\xd4\ +\xf5\xcc\xf4\xcc\x00\xcd\xee\xcc\xf3\x00\xe4\xcc\x00\xcd\xf5\xcc\ +\xe1\xcc\xf2\x00\x00\xd2\xf7\xd1\xe2\xcc\xe1\xcc\xe7\x00\xe2\xcc\ +\xe2\xcc\x00\xcd\xe7\x00\xe2\xcc\xe1\xcc\xe7\x00\x00\xcd\xe3\xcc\ +\xe1\xcc\xe7\x00\xe2\xcc\xe1\xcc\x00\xd4\xe9\x00\xe1\xcc\xf4\xcc\ +\x00\xcd\xee\xcc\xe9\x00\x00\xce\xef\xcc\x00\xcd\xf5\xcc\xf4\xcc\ +\x01\x00\xcd\xf0\xcc\x00\xcd\xe9\x00\xee\xcc\x00\x00\xf5\xcc\xf4\ +\xcc\x01\x00\xd2\xef\xcc\x00\xd4\xeb\x00\x00\xd4\xef\xcc\x01\xcf\ +\x00\xf5\xcc\xf4\xcc\xff\x00\x00\xce\xf0\xcc\x00\xcd\xeb\x00\x00\ +\xcd\xf0\xcc\x02\xcd\x00\x00\xf5\xcc\xf4\xcc\xfe\x00\x00\xcd\xf0\ +\xcc\x00\xd0\xed\x00\x00\xd0\xf0\xcc\x00\xcd\xfe\x00\xf5\xcc\xf4\ +\xcc\xfe\x00\x00\xe2\xf0\xcc\x00\xcd\xed\x00\xf0\xcc\x01\xcd\xda\ +\xfe\x00\xf5\xcc\xf4\xcc\xfd\x00\x00\xd3\xef\xcc\xef\x00\x00\xcd\ +\xf0\xcc\x00\xcf\xfd\x00\xf5\xcc\xf4\xcc\xfc\x00\x00\xcf\xf0\xcc\ +\x00\xcd\xf1\x00\xef\xcc\x00\xce\xfc\x00\xf5\xcc\xf4\xcc\xfb\x00\ +\x00\xce\xf0\xcc\x01\xcd\xd7\xf5\x00\x00\xda\xef\xcc\x00\xcd\xfb\ +\x00\xf5\xcc\xf4\xcc\xfa\x00\x00\xcd\xed\xcc\xf9\x00\x00\xd4\xee\ +\xcc\x00\xcd\xfa\x00\xf5\xcc\xf4\xcc\xf9\x00\x00\xce\xeb\xcc\xff\ +\xd1\xff\xcc\x00\xcd\xee\xcc\x00\xce\xf9\x00\xf5\xcc\xf4\xcc\xf8\ +\x00\x00\xce\xd4\xcc\xf8\x00\xf5\xcc\xf4\xcc\xf7\x00\xd5\xcc\xf7\ +\x00\xf5\xcc\xf4\xcc\xf6\x00\x00\xcd\xd9\xcc\x00\xcd\xf6\x00\xf5\ +\xcc\xf4\xcc\xf5\x00\x01\xcc\xcd\xdc\xcc\x00\xce\xf5\x00\xf5\xcc\ +\xf4\xcc\xf4\x00\x01\xff\xcd\xde\xcc\x00\xff\xf4\x00\xf5\xcc\xf4\ +\xcc\xf2\x00\x00\xce\xe0\xcc\xf2\x00\xf5\xcc\xf4\xcc\xf1\x00\x00\ +\xd4\xe3\xcc\x00\xda\xf1\x00\xf5\xcc\xf4\xcc\xef\x00\x00\xcf\xe7\ +\xcc\x00\xd1\xef\x00\xf5\xcc\xf4\xcc\xed\x00\x00\xcd\xeb\xcc\x00\ +\xcd\xed\x00\xf5\xcc\xf4\xcc\xeb\x00\x02\xce\xcd\xcd\xf1\xcc\x00\ +\xd0\xeb\x00\xf5\xcc\xf4\xcc\xe8\x00\x04\xd2\xce\xcc\xcc\xcd\xfa\ +\xcc\x01\xce\xd2\xe8\x00\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\ +\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\ +\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\ +\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\ +\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\ +\x01\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\ +\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x06\x00\ +\x06\x00\x06\x00\x06\x00\x06\x00\x11\x00\x10\x00\x0c\x00\x0c\x00\ +\x0e\x00\x0c\x00\x0f\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x12\x00\ +\x11\x00\x14\x00\x10\x00\x12\x00\x14\x00\x12\x00\x0e\x00\x0f\x00\ +\x0f\x00\x10\x00\x0e\x00\x0a\x00\x06\x00\x08\x00\x08\x00\x06\x00\ +\x08\x00\x10\x00\x11\x00\x14\x00\x16\x00\x16\x00\x15\x00\x14\x00\ +\x14\x00\x17\x00\x14\x00\x16\x00\x0c\x00\x0a\x00\x0e\x00\x0f\x00\ +\x0f\x00\x0c\x00\x0e\x00\x0e\x00\x0e\x00\x10\x00\x13\x00\x06\x00\ +\x06\x00\x06\x00\x06\x00\x06\x00\x06\x00\x06\x00\x06\x00\x02\x00\ +\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\ +\x02\x00\x02\x00\x02\x00\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\ +\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\ +\xa8\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\ +\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\ +\xf4\xcc\xe8\x00\x03\xcd\xcc\xcc\xcd\xf8\xcc\x00\xcd\xe8\x00\xf5\ +\xcc\xf4\xcc\xeb\x00\x02\xcf\xcd\xcd\xf1\xcc\x00\xd3\xeb\x00\xf5\ +\xcc\xf4\xcc\xed\x00\xea\xcc\x00\xce\xed\x00\xf5\xcc\xf4\xcc\xef\ +\x00\x00\xd1\xe6\xcc\xef\x00\xf5\xcc\xf4\xcc\xf1\x00\x00\xd4\xe3\ +\xcc\x00\xda\xf1\x00\xf5\xcc\xf4\xcc\xf2\x00\xe0\xcc\x00\xcd\xf2\ +\x00\xf5\xcc\xf4\xcc\xf4\x00\x01\xff\xcd\xde\xcc\x00\xff\xf4\x00\ +\xf5\xcc\xf4\xcc\xf5\x00\x00\xcf\xdb\xcc\x00\xcf\xf5\x00\xf5\xcc\ +\xf4\xcc\xf6\x00\x00\xce\xd9\xcc\x00\xcf\xf6\x00\xf5\xcc\xf4\xcc\ +\xf7\x00\x00\xcd\xd7\xcc\x00\xce\xf7\x00\xf5\xcc\xf4\xcc\xf8\x00\ +\x00\xce\xd5\xcc\x00\xce\xf8\x00\xf5\xcc\xf4\xcc\xf9\x00\xec\xcc\ +\x04\xcd\xce\xd7\xd4\xd0\xeb\xcc\xf9\x00\xf5\xcc\xf4\xcc\xfa\x00\ +\xee\xcc\x01\xcd\xff\xfb\x00\xea\xcc\xfa\x00\xf5\xcc\xf4\xcc\xfb\ +\x00\x00\xce\xef\xcc\x00\xe2\xf9\x00\xea\xcc\x00\xcd\xfb\x00\xf5\ +\xcc\xf4\xcc\xfc\x00\xee\xcc\xf7\x00\xe9\xcc\x00\xd3\xfc\x00\xf5\ +\xcc\xf4\xcc\xfd\x00\x00\xda\xef\xcc\xf6\x00\xe8\xcc\x00\xd7\xfd\ +\x00\xf5\xcc\xf4\xcc\xfe\x00\x00\xff\xf0\xcc\x00\xcd\xf5\x00\xe7\ +\xcc\x00\xff\xfe\x00\xf5\xcc\xf4\xcc\xfe\x00\x00\xcd\xef\xcc\xf5\ +\x00\xe7\xcc\x00\xcd\xfe\x00\xf5\xcc\xf4\xcc\xff\x00\xee\xcc\xf4\ +\x00\xe5\xcc\xff\x00\xf5\xcc\xf4\xcc\x01\x00\xda\xee\xcc\xf4\x00\ +\xe4\xcc\x00\x00\xf5\xcc\xf4\xcc\x00\x00\xee\xcc\xf3\x00\xe5\xcc\ +\x01\xcd\x00\xf5\xcc\xf4\xcc\x00\xcf\xef\xcc\x00\xcf\xf3\x00\xe4\ +\xcc\x00\xd4\xf5\xcc\xf4\xcc\x00\xcd\xee\xcc\xf3\x00\xe4\xcc\x00\ +\xcd\xf5\xcc\xe1\xcc\xf2\x00\x00\xd2\xf7\xd1\xe2\xcc\xe1\xcc\xe7\ +\x00\xe2\xcc\xe2\xcc\x00\xcd\xe7\x00\xe2\xcc\xe1\xcc\xe7\x00\x00\ +\xcd\xe3\xcc\xe1\xcc\xe7\x00\xe2\xcc\xe1\xcc\x00\xd4\xe9\x00\xe1\ +\xcc\xf4\xcc\x00\xcd\xee\xcc\xe9\x00\x00\xce\xef\xcc\x00\xcd\xf5\ +\xcc\xf4\xcc\x01\x00\xcd\xf0\xcc\x00\xcd\xe9\x00\xee\xcc\x00\x00\ +\xf5\xcc\xf4\xcc\x01\x00\xd2\xef\xcc\x00\xd4\xeb\x00\x00\xd4\xef\ +\xcc\x01\xcf\x00\xf5\xcc\xf4\xcc\xff\x00\x00\xce\xf0\xcc\x00\xcd\ +\xeb\x00\x00\xcd\xf0\xcc\x02\xcd\x00\x00\xf5\xcc\xf4\xcc\xfe\x00\ +\x00\xcd\xf0\xcc\x00\xd0\xed\x00\x00\xd0\xf0\xcc\x00\xcd\xfe\x00\ +\xf5\xcc\xf4\xcc\xfe\x00\x00\xe2\xf0\xcc\x00\xcd\xed\x00\xf0\xcc\ +\x01\xcd\xda\xfe\x00\xf5\xcc\xf4\xcc\xfd\x00\x00\xd3\xef\xcc\xef\ +\x00\x00\xcd\xf0\xcc\x00\xcf\xfd\x00\xf5\xcc\xf4\xcc\xfc\x00\x00\ +\xcf\xf0\xcc\x00\xcd\xf1\x00\xef\xcc\x00\xce\xfc\x00\xf5\xcc\xf4\ +\xcc\xfb\x00\x00\xce\xf0\xcc\x01\xcd\xd7\xf5\x00\x00\xda\xef\xcc\ +\x00\xcd\xfb\x00\xf5\xcc\xf4\xcc\xfa\x00\x00\xcd\xed\xcc\xf9\x00\ +\x00\xd4\xee\xcc\x00\xcd\xfa\x00\xf5\xcc\xf4\xcc\xf9\x00\x00\xce\ +\xeb\xcc\xff\xd1\xff\xcc\x00\xcd\xee\xcc\x00\xce\xf9\x00\xf5\xcc\ +\xf4\xcc\xf8\x00\x00\xce\xd4\xcc\xf8\x00\xf5\xcc\xf4\xcc\xf7\x00\ +\xd5\xcc\xf7\x00\xf5\xcc\xf4\xcc\xf6\x00\x00\xcd\xd9\xcc\x00\xcd\ +\xf6\x00\xf5\xcc\xf4\xcc\xf5\x00\x01\xcc\xcd\xdc\xcc\x00\xce\xf5\ +\x00\xf5\xcc\xf4\xcc\xf4\x00\x01\xff\xcd\xde\xcc\x00\xff\xf4\x00\ +\xf5\xcc\xf4\xcc\xf2\x00\x00\xce\xe0\xcc\xf2\x00\xf5\xcc\xf4\xcc\ +\xf1\x00\x00\xd4\xe3\xcc\x00\xda\xf1\x00\xf5\xcc\xf4\xcc\xef\x00\ +\x00\xcf\xe7\xcc\x00\xd1\xef\x00\xf5\xcc\xf4\xcc\xed\x00\x00\xcd\ +\xeb\xcc\x00\xcd\xed\x00\xf5\xcc\xf4\xcc\xeb\x00\x02\xce\xcd\xcd\ +\xf1\xcc\x00\xd0\xeb\x00\xf5\xcc\xf4\xcc\xe8\x00\x04\xd2\xce\xcc\ +\xcc\xcd\xfa\xcc\x01\xce\xd2\xe8\x00\xf5\xcc\xf4\xcc\xc1\xff\xf5\ +\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\ +\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xf4\ +\xcc\xc1\xff\xf5\xcc\xf4\xcc\xc1\xff\xf5\xcc\xa8\xcc\xa8\xcc\xa8\ +\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\xcc\xa8\ +\xcc\xa8\xccMIB8ksML\x0e\x00\x00\x00\x00\ +\x00\xff\xff\x00\x00\x00\x00\x00\x002\x00\x80\x00\x00\x00M\ +IB8ttaP\x00\x00\x00\x00MIB8k\ +sMF\x0c\x00\x00\x00\x00\x00\xff\xff\x00\x00\x00\x00\x00\ +\x002\x00\x00\x00\x00\x00\ +\x00\x00\x05s\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22 standalone=\x22\ +no\x22?>\x0a\x0a \x0a <\ +title>eye on\x0a C\ +reated with Sket\ +ch.\x0a <\ +defs>\x0a \ + \x0a\ + \x0a \x0a\x0a\ +\x00\x00\x1f\xef\ +\x00\ +\x00\xe4\x14x\x9c\xed\x5c\x07\x5cS\xc7\x1f\xbf\x0c\x12\xf6\ +^2c\x98*\x10\xc2&\xc8\xde\x0a\x82l\x14\x85\x90\ +\x04\x88\x84$f\x80\xab\xe2\xaa\xd6U\x95\xba\xb5uo\ +\xc5\xd6]\xad\xdb\xd6Z\xf7\xb6u\xfc\xb1\xd6\xbaW\x15\ +\xb5\xa8\xf0\xbf{!\x10\x10-J\x00\xfb\xff\xbfo>\ +\xf7r\xef\xd6o\xdc\xbd\xbb\xdf\xdd\xbb{\x89\x89\xa0;\ +\x00@\x13\x98\x83Z@\x86>\x02P\x5cH\xd8_\x1e\ +\xbc\x10T\xfcD\xcc\x0f\xd3\x11\xcc\x09\xa4\xfap\x98\x98\ +@\xa9\xf7\x13\xe1\xc5HYN\xeam\x82\xb1J\x1a\xb3\ +z?\x96[\xa5L\x0be\xfa\xe9\x80`\x054\x14~\ +\x82\x1d\xc1\xba\xc1\xefL\xb0Q)\xc7U\x85\x16\x13]\ +\x01\x1d\xfa<\x08^\x98\xdf\x14\xfa\x93\x09)\x8d\xe9\x89\ +?\xa0\xab\x9f5\xbc\xe5\x8e\x8fG~C\x1a\x00\xfe\xa3\ +&\xf0\x95to\xdc\x9e \x05T\x00t\xe3\x00\x88]\ +\x8c\xe4\x87\xfaP\xfc\xb4_\x8f\x02\xc0\xc5P\xf9\x1f\xce\ +\x15\xe5\xf3h\xc9E\x22\x99HZ$\x12\xd3\x22#i\ +^\x9eL\x7f\x9ak&_\xc8\x15\x95I\xbb\x01t\xcb\ +\xf2\xf4byz\xd3\x98\xbe,/o\x96\xa7\x0f\xe8\x19\ +:D\xcc\xe6\x14\xf3d\xb4|^!_\x18L\x7f\xb4\ +k/\x9d\xc6\xe7\x06\xd33}\x13=\x13\xc5\x91\xbc\x22\ +~\xdc0\x09/uX\x9f4\xce\xb0bN \x97\x1e\ +\x1a\xa2\xdds\x08kH\x89\xb8\x84'c\xd3\x86\x94\x08\ +\x84R\xd6\x90`:\x1b\xd1gA?\x0af\xd0iX\ +\x12Yq0]\xc1XVb2-R$\xe1\xd1|\ +=\xfc\xdc9L\xef\x00\x9a\x7f\xa0\x07\xd370\xc0\xcb\ +\xc7\x0d1\xea\xc7\xf0\x0cd0}\xdc=\x99,\xcf@\ +\x96'\x93V\x0fz\x886\xbc\xf6\x94p\x0bX)Q\ +1\xf5\xe4\xe0]0\xbdH&\x13\xb3\x18\x8c\xb2\xb22\ +\x8f2o\x0f\x91\xa4\x90\xc1\x0c\x0c\x0cdxz1\xbc\ +\xbc\xdca\x0aw\xe9P\xa1\x8c=\xc4](uP\x14\ +\xa2,'\x8a'\xe5H\xf8b\x19_$\xa4\xa1{v\ +\xbeH.\x0b\xa6\xd3\xb5i*\xa8\x97\xabD\xdc@H\ +(\xf5\xc0d\xf4\xe0\x88J\x18C\xd8b\x06\xd3\xc3\x93\ +\xd1R&.\xa7!\x8fX.\x11`\xacq9\x0c\x9e\ +\x80W\xc2\x13\xca\xa40\x1f\xb3\xc5|be\xdd\xb5L\ +\xb2!\xfa\x9d\x84!\xb7\x89\x89\xef\xe7\xb7\xa4\xa4\xc5\x9c\ +RYt\xa9\xec\xfd9\xa5iC\xc5\x05\xee\x01\xcc|&|\xc6|}\xb9<\x0e\ +\xd3\xcb\x97\xeb\x8b\xe9\xa0i\xf6\xb7\x8a\x8e\x12q\xe4\xa8\ +\xe9\xd6\x17\xcd\xfd\xc0\xa2U\xb2\xbfUt\x92\x84\x0f\xbb\ +\x1d\xb6\xa0\x8d$Z(\xe6-Rq|\xa9L$\x19\ +\x1a\xd2\xa4\xf9c\x1dB*op\xd3Pe\x84\x80\x8f\ +u\x10b\xb6D\xcaC\xcd?\x98\xael\xff\xf4\xb72\ +\xa0<\xd8c\xc4bsP\xd7\x12\xc2\xc1Z8\xb7'\ +\xa3I\xe8\xbb\xb3\xf1?\xb6\x02\xdf\xca\xfen\x1aeE\ +<\xe1\xfb\x9eL\x95T\xef.D**\x90\x95\xb1%\ +\xbc\xf0B\xa8\xe9\x90\x7f\x1cw\x94\xa56\xcd\xf6\x96\xbe\ +\x19\x0a\x857\xab\x1e\xc6\xdb\xf5\xa3\xac\xf3f\xf5\xa9H\ +\xaa\xd2\xb7+\x06\x0eF\xfd\xc8\x01\x07-F\xc3\xa8\xd5\ +\x92p\xea\x07N\x04'\x82\x13\xc1\x89\xe0Dp\x228\ +\x11\x9c\x08N\x04'\x82\x13\xc1\x89\xe0Dp\x228\x11\ +\x9c\x08N\x04'\x82\x13\xc1\x89\xe0Dp\x228\x11\x9c\ +\x08N\x04'\x82\x13\xc1\x89\xe0Dp\x228\x11\x9c\x08\ +N\x04'\x82\x13\xc1\x89\xe0Dp\x228\x11\x9c\x08N\ +\x04'\x82\x13\xc1\x89\xe0Dp\x22j&\xa2\xddx\x0e\ +\x8c'\xe4\x06\xd3\xcb\xe8\xa1! \x22>\x91\xec\x84\ +\x9d93\x04\xcd\x80\xc5\xb10\xef\xcd\xfax\xect\x1e\ +\xd0\x11K\xf8BY\x92\x5c&\x96\xcb\xe0-:&\x07\ +\x92\xa5\xb2\xd4|\x91H\x80\xa5\x88\x17\xcax<\xa1\xbc\ +D\xe9G\xff\x91\x02\x09\xba7\xc0\xf2\xa6\xf2\x87\xa0\x14\ +\x11|\x19\xca\xd3X&O\xd2\x87]\xc2K\x8b\xceJ\ +k \xa6\xc8\x90,\x11\x89\x0aRy2\xb98)\x7f\ +\x10\x07\x06\xeb\x82d \x01\x22\xf8+\x004\x90\x0ax\ +@\x06\xe4@\x8ce\xd1\x167\xa4V\x16\x13!\x90\x09\ +\xeb9\xd2\xcd\x97\xf3\x052\xbe\x10+\x12\xdeka\xa9\ +#\x13\xb3{+$\x0eB\xe9\x89\xeeM$6V\x91\ +8\x09;y \x85\xa1\x16\x98\x5cb\x99P)\x04\x14\ +2_\xd2p\x93R(Ml\x8c\x91\x08#\x1bo\x84\ +\xb2\xc6\x9b\x84|\x81\xb4\xe1\xa6O\xa1\xac\xb4\xe1&\xba\ +D\x10\xd5p\x03\xf5\xd8Xt\x04\xa7\xb8\xb0^\x11\x0a\ +\x06AJlD$P\x1c\x9b\x04)\x5c\x1a\x8d+\x92\ +\xe7\x87\x89\xaa\x1a*3V\x22|+,B\xf0v\xba\ +\x08\x097-](\x8bqH\x11\xc8T\x1bC\x84\x80\ +Kk)\ +\x8b\xae2\x06\xb1\xa0\x12\xae\xa7\x0cO\xe1\x17\x16\xa9F\ +\xe8(# o\x0d\xc1\xa8\xe5\x90\x1e(x\x00q@\ +q\xf6\xb3\xfe\x1fkU\xceX\x9c~\xa3\x04\xa1\xa3\xea\ +s=T\x90\xd3M\x93\xb0\x85R1[\xc2\x13r\x86\ +*Z\xa2\x19\x16c\x87bA\x1al\xedl \x04R\ +\xd8\xc6\xd9\xd0\xcf\x83~\x0e\x18Z\xff\x94\xfab)\x8d\ +0z\xa0\xae\xae\x9e\x04\x97\xa0\x88\xb5\xc5\xee\xc8J>\ +\xc9z\x0d\xf7v\xd8}\x97\xa6\xf7\xa4\xa7\xd8\xbd\x96\x92\ +SE).\x8a\xfeA[\xd9\xe0\x14r\x91\xaa1\x7f\ +\x1c`\x14\x14\xc0\x18\x01\xbcR\xea3)B\x96\xcc\x9b\ +\xdf\x10\xe2\x85]\xfb\xc1\xab2\xc4\x17\xbb\xba7\x86`\ +e\xbe\xc4\xfcb$IK \xddF\xd1\xea\x8f\xc3t\ +\xa1\x90\x8dX\x7fGlr\xe7\xa9\xe0\xb1^\xab\xee\xd8\ +\x1d\x05\xd3\x07\x09\x0b\xd1\xac\xaf\x7f\xac\x16\x88a\x0aW\ +\x9f\xd7\xaeY\x1dX!\x1f\xc9\xb7Ar\x05\xf2\xea\x9d\ +B;oC5L5m\x8b\x09\x94h\xec\xc6\x80P\ +.\x10(\x04\x02\x94|\x91\x5c\xc8\x956\xebE82\ +\xa6\x92M\xf4\xe8\xa94{\xd0\xec\xf9\x00\x11\x8d\xcf\x11\ +\xc6FJ\xe3c\x82\xee)R\x01\x9f\xc3\x93f\x08\x12\ +\xd0\x83NhBG\x03\x8b\x83\x1ec\xe8\xa8\xd8M|\ +\x94J\xd9\xd4B\x89H.n\x12D\x11a\xc7\xff\x94\ +}xt*\xca\xa48\x12\x08\xef\xf5\xd8r\x99(\x96\ +'\xe4I\xd0q<\x8c\xfb\xa1b\xe5\x10\xa4\xadH\x8c\ +BPL|I!\xad\x03\xe4'\xc9%\x82&\x03\x19\ +\xa6\xfc\xa6!\x89\xd2\xc2\xa6\x83\x1d\x85-\x90\xa5\xb1\x0b\ +\x9b\x84\xe9sx0\x1fo\x88,^\x1a\x97\x96\x98\xa0\ +\xecN5\x95\xc1M\x12k\x15\x89$\xc3\xc2\x05\xfcB\ +\xa5\xa6\x0c\x14\xc2\xc7)\x83\x91v\xb9\xbc\x02\xb6\x1c\xeb\ +O\xb5Jy\x12Y\x0b\xc93\x94\xc1M\x93\xeb\xe4\x17\ +b\xa7\x5cU\x94k\xa4\xc8\x10\x11\xdb\x10\x81\xd8\xe8#\ +\x12\xa2\x7f-\x99H\x0c\x07M)OUq\xda\x02\xa8\ +\xc8\xb7Bu\xf3\xb1\x8e\xf9\xadp\x1d\x09\xea~\x9b\x05\ +cO\x90\xab\x22\x1ft\xc4\xd0\xc7\xa01\xdc\x14\xf3\xa2\ +*T<\x95\xba\x98b\x8f\xd6\xab(O\xe1\x08\xb0\x09\ +\xa0'\x81\xb2\x11X\x02B\xdd\xa5\xba\x07@\x17;\xe5\ +\x98\x1b\x99\x08\xef\x1f\x02}\xec\x0epG\xa1|u\x97\ +\xc18\xa0\xab\xa9\xa9\xa9\xa5\xa9\xab\xa5\xa5k\xa4\xa3\xad\ +cdf\xa0\xabk`fibbfbbi\xa4\ +\x8b\xa1\xfe\xafe\x10\xf4tt\xf4\xf4\xf5\x0c\xf5\xf5\x0d\ +M\xf5\xf5\xf5M\xd1E\xdfT\x91\xc5\xa85\x05\xd4\xed\ +\x03F\x9a\x90\xf9<\x12\x81\x0e\x88F\x04\x92\x11\xa1\xee\ +*\x14\x94Rw\x88\x10\x0a\xb9\xd4 `\xa8W\x1c\x09\ +\x10\x88d\x0d\x0aUSK[\x87\xd0<\x92\x00\x88$\ +e\xa4! \x90\x09$\x22\x99\xa8A\xa5hj\x90t\ +\xbda\xa4\x11\x89\xdc\xd5\x98\xa9\x11\xde\x97mB\x1f<\ +\xda\x8bb:c\xc9w\x11\x0e\x8ef)\xfb\xf3\xbd}\ +$cNGR\x9d*R\x1f_\x7f\xc2\x91\xfa\x9a/\ +\xdd4\xd69\xea\xab4n\xf4\x81e2?\x8b3\xe9\ +\xbf\xf3\xfe\xda<\xee\xe0Y\xf9\x8d\xa71.3\x97\x7f\ +\xbee\xd6\xa1s\x7f<[\xb1\xf5\xc7\xf37\xab3\x0a\ +J\xc7\xcf^\xb9\xed\xa7\x0b\x7f>\xf7\x8f\xcd,,\x9b\ +0g\xd5\xf6\xc3\x17o\xbd0\x02D\x22\xe4\x96\x8c\xf1\ +D\xa5h\xf8b,te\x1a\x93!\x07\x83\xe9&\x1a\ +^\xa3g\x98\x22\x0e\xf6\xa7\x9c~\xec\xed\x98\x7f]2\ +\xa6\x222\xd5\x8c#\xf5y\xe2DA\x0cP\x9d}\x0f\ +\x9c\x81L,\xb3\xe0F\xa7\xfb\xc9x\xbf7\xb0\xf0n\ +\x0e\x5c\x1aY\xa8\xfb\x0d\xe8\x920\x9aF \x14T\xa7\ +U\xc4;us\xac\x88\xef\x15\xefX\x91R\x11\xef8\ +sy}@R\xdd\xa9\xea4\xb7\x05\xbfN\x9dV\x10\ +\xb9\xdfm\xcd\x8a\x87z\xd6S\x08!\x17\xc6\xa5U\xa4\ +F.\xaf^h\xb7!v\xdd\xa4G\xe2Z\xc9\xaa\xa2\ +\xe7\xf67\xfdk_o\xac\x94\xae{\xd3o\xeb\xf7\xf6\ +[Y\xd6\xb5G\x17^\x1d\x90uz\xf6\x90:\xe0T\ +Y\xf6f{>\xa8y\x9a\x1e \x12\x16\x04\xdd\xbb\x9b\ +n\xfb\xe5\xe11V\x03^\xbd\xfa\xfa\xf5\xe5\xf2\x8a\x8a\ +oV\x9c(\xee\x97\xf3\xbb\xd5\xe95.a\xe6\xbc:\ +\x90\xbdS?h\xb2\xe0\xf8\xfa\x19'\x8el\xae\x03\xc1\ +\xd4\x8d\xc1ww\x97\xad\x91\xf7\xd7\xfaeKM\xf9\x82\ +\xde>y\xb5\x87o\x95g\xdf\x0bv\x0aY\x11{A\ +8vz\xd5oO\x8b\xc9O\xf6\x14\xd7\x81\x93K&\ +'V\x16\xcf\xb79csv\xb5Cr\xe6Tw\xfd\ +Y\x17\x87\xcd\xe9\xf5m\x90\xf9\xd9;\xb5r\xc6\xf9\x09\ +\xaf\xec\x17\xbc)p\x5cu\xbe\x22;X\xe7\x9e\x9d}\ +\xd6\xda.5n+'n\x1a#\xaf\xddZ\xf8\xf4\xd2\ +V\x85\xf8u\xa0\xee4\xa6\x94@\xfb\xac\x9a7\x03\xec\ +\x8d\xfb\x1b\x1c\xdd\x16m\xb6\xe8\xf5\xcb:\xf0\x07s\xe8\ +\xca\x98\xe8_\xfdC^]\x13l;\xc8\x18\xfe\xbd\x13\ +d$\xe6\xda\x8as\xc2_\xbe\xfdY\xfa\xc5\xfa\x91\xf7\ +\x08o\xacc\x9f\xa7;\xce\x9cc>;\xf7\xab\x01\x8c\ +\xad[\xfc\x0eS\x16\xe4>\xebgp+pXh\x9f\ +\x9aU\xa7\x9et\x17\x9c\xba\xb2j\x86\xf3\xe5\xddO\x1f\ +\x17>-\xc9\xda\x9bZ\xe3\xac_\x1es\xa4t\x00\xbb\ +v\xeb.\xd2\xde\xc0%S\xad\x07\xf4\xdf\xeb{y\xfd\ +0o\x8f\xbb{\xd3\x1e\x98q\x85\xc7o\x9f\xf0;lV`\x82\xa7U\xd5e\xea#\xcf:\x10p\ +\xa6bQ6l:\xa9ug0\xad\x85\xa4W\x8f]\ +q\xf9L\xcd\xd7[\x02\xec\xe3\x0f\xed\x99P\xea\xe6r\ +\xb9VtJrb\xe0\xba\x8b,\x8f\xd0\xac\x83>\xfd\ +\x1fl\xddyVT\xba\xab\x0e\xd0\x1e\x9d\x1c\xc8[4\ +z\xd6\xd9\xbfr'\xcf<>\xdb\xfb\xa1\xc3\xe6K\xe5\ +\x81_\xc6'\xb1k\x19\x9b\xb3\xee\xe7L!\x96\xc7\x1d\ +\xae9n\xe7..\xb6\xad\xe5\xcc\xab\x03\x89\xf2\xd9\x99\ +\x03\xd6\xcbK}\x82\xa7\x19\xfe\xb9#\x8e\xf6\x9c\xb6\x91\ +\xbe\xff\xf8\x91}\xbf\x14dxo\xeb\x9f=}\xb8\xd1\ +\xd5J\xfb\x9d7\xaf\xe4}6\xe2\xce\x9c\x0cJq\xee\ +\xd4\xa2\x9ad\x9dK\xe5k\xb3\x1f\xd5\x81\xc5\x153n\ +>\x1b\xb9\xec\x14\xa3,\xf9v\xaa\xb0\xdbE\x07\xf2\x91\ +\xb3\x7f\xdb\xef\xae\x03\x8b`\xdb\x19\x97\xfd\x9f~#7\ +\xb1\xab\x07\xce\x9a\x9a\xe1\xb3\xedp\xf6\x9e\xbbW\x8f\xfa\ +\xe9\xed*\x9f\xb5\xeb\xdc\xf3\x0d9u`\xe3\xd7^\xf3\ +\x7f>P\xfcWIhL8\x87Z=\xf9M\x1dx\ +f\xa15kFAF\xf4<\xf3\xc3k\x8a'\x7f\xbd\ +\x8521DoP\xaf\x98-{6>[\xc7Z\x95\ +\xbav\xfc\xd8;\x9e\x13\xae=\xdc?\xea\xd5\xde\x935\ +zi\x8f\x9fx\x1c\xffe\xa3\xf9\x17~W\x1el\xb8\ +\x92\x974\xaf\xc7\xd9\x1a\xfb\xe8\xc3\xb7_\xe6O\xda}\ +aW\xff\x0d\x0fo\x95\xffa\xfd\xf7\xc4n\xa71]\ +\x9eU<\x96}\xef^\xb5\xa6\xae\xe3\xd4\x04&\x9c+\ +\xf7/\x96\x0d7\xf8k@\x1d\xf8,\x13>\x9b\xf3\xab\ +Ekm3W\xed\xd8\xb3\xd2\xe6\x87\x91\x17\xd2\x1cG\ +\xd7\x01\xad\x8c\xcaA\x07ic\xc9\xe16\x9f\xdf\xff\xd9\ +\x82\xcd\xe6v\xd9k\xb7.i\xf2\xa5\x8b\xe5\xe7\xc93\ +\xff\x06\xe4\xb9\xc4\xf8*\xf7\x13_U\xc7\xae\xad\xa6R\ +/\x1d\x9c8\xed\xda\xd1(\xe3\xd0\xaa\xbb\xa7O\x0c\x9c\ +\xd0\xc7\xdc

\xf3\xee\xea\x97\xdfM\x15\xbd\x89\x8b\ +\x8dO\x0a\x15\x9d\xdbS\xf1\xf0\x9b+\xfdFW>\x1f\ +\xbe`\xd6\xd1\x17\xe5\x8c\x17\xf3^\x7f\xde\x9fZyK\ +6b\xfc\xb3\x93\xebi\x0fX}\x17\xfa\x16Ox\xed\ +\xb07\xa8\xa6\x0e$\xbd\xe9~7}\xc4}\xdd>K\ +\xbe\xbc/\xd8\xf9\xe3\xac]\xdf\xfda\x7f\x8d\xb3\xd7\xf7\ +H\xb7\xa0\x9c\x8b[\x02\x97\x07V\x1a_\xd4\x0b\xa7\xee\ +\xe8\xb3$\xd1\xb7o\xefn+\x96\xcc\xca e\x9d\xde\ +GHt\x0a\xad;\xf7\xbe>\xe8W\xc58\xd7\x15\xeb\ +\xc9\x07\x00\xcc\x22\x85#7\x08\x07\x5c8\x1d\xce\x87S\ +\x03\x1a\x9c\x1c\x17A\xbf\x0c:)\xe6C\x13a\x8b\x7f\ +HA\x03\x91\xf0G\x83f\xba'`\x02\xff\xfa\x01S\ +7.\x81/\x14\x11\xa1\x11Y\x02g\xa0\xe8\xcb\x15Y\ +\xd9\xfdh\xd4\x13\xd0\x88\xd4\x82\xb6+4\x97\xd8\x1c\xa9\ +815&\x0d3\xae\xa2#i\xe8\xf3\x16\xa0\x09\x9e\ +_P\x98'g\xdd\xe3\x92i4\xf0a0\xe2\x88%\ +2\xf4U\x1d\xe8\xf7\xe6\xf2\xa4\xd0\x5c#\x8c\x83~A\ +\x99L\x8c\xc2\xd1\xd8o\x9a_\x8c\xfcD4\xea\x9bJ\ + \x83\xd0o\x89\xfc\x85\x0a\xbf\x1b\x96F\xe1\x0fC~\ +n\x89\x10\x9a\x89D\xc4\xb3\x98[\xc2E\xfeC\xd0\xff\ +E\xa9\x1c\x99\x8f\xa4\x04\xe8\x1f_\xca\xe7\x95A\xff9\ +\xe8w\x14\xc8K\xf8\xd0\x8ff&\xa6%<64i\ +1\xbb\xc2Q\xc6\xe3\x14A?\x9a\x19\xe8J\xd2R\xe0\ +\x5c\x96\xdc\x13\xdaf\xba\x85*\xfe|\x15\xbf\x0c\x1al\ +H\xa8H\x91x(f\xd9\xd0\x5c9\xddh\xcc\xc0\xc0\ +\x00Z\x1c\xafL\xc0\x93\xc9\xdc\x93\xd9\x9cb\xb6\x84K\ +\x8b\x14\x95\x88\xd9B8\xc3S\xc8\x8c\xc1\xf8\xadO\x87\ +\xa8(\xea\xbd\x91\xad\x04\xaa[\x85\xefi_\xac\xce\x08\ +\xe6\xc7\x1a\xc3ZJ'Z\x0a\xed.8\x0b$Mo\ +\x0c\xcb\x9f\x07\xc0\xf6\xcf\x01\xb0\xfc\xad1\xccq1l\ +\xa3\xb0\xde\xb6\x9dT\x91\xc7\x1c\xb5\x17\x95\x8f\xfc\xf0y\ +\x1c\x0f\xa4\xd0\x06\xfcc\x82V@\x85\x9e\x07*\xaeA\ +=\xb4(\x85eKCz\xe3@\xfbU.\xa1\xc1\x19\ +8\x87Gso\xde\x88?:c\xcb|\xb8\xa5\xf0\x0a\ +xh\xa6\xcf\xa3e\xc0V\xc6\x17\x16\xc2\xea\x16r\xf9\ +\xd8\xf7\x8a\xf8\xc2wU\xe2Gfk\x06E\xbb\x860\ +Y^\x0bLs=\x80\xe1IS@zp\x0c\x90M\ +t\x00)\xe7\x1b\x18Ch\xa8\xb7\x04\xad\x0c\x80\x9e\xbc\ +L\xfb[\x8av\x8f\xa1\x85i&q\x1a\xbaH\xf9\xd8\ +\xe4\x0aD\xa6\xa4\xd18rI\xa9\x22\x0e\x9bOi\x00\ +m\xd8I\x99\x82.\xc0\x0e8\x00W8\xeb\xf7\x82\x9d\ +L\x10\x08\x03\xd1\xa0\x17H\x02i \x1b\x0c\x04\x1c\xd8\ +\x19\x95\x00\x09(\x03#\xc0h0\x1eL\x06\xd3\xc1,\ +0\x1f,\x02\xcb\xc1\x1aP\x096\x81\xed\xe0\x07\xb0\x1f\ +\xfc\x04\x8e\x82S\xe0<\xb8\x0c\xaa\xc0Mp\x0f<\x06\ +\xcf\xc1+h\xe0R\x09z\x04\x13B\x17\x82=\xc1\x89\ +\xd0\x83\xe0E\x08 \x84\x10\xa2\x09\x09\x84\x14B6!\ +\x8fPH\x10\x12\xe4\x84\x11\x84\xb1\x84\xc9\x84\x0a\xc2|\ +\xc2\x12\xc2\x1a\xc2w\x84\xef\x09\xfb\x09G\x08\xa7\x09\xbf\ +\x12\xae\x13\xee\x10\xfe\x22\xd4\x10ID]\xa2)\xd1\x96\ +\xe8Ld\x10\x03\x88\xe1\xc4\xde\xc44\xe2\x00b!q\ +0q\x18q\x1c\xf1K\xe2\x5c\xe2R\xe2z\xe26\xe2\ +~\xe2Q\xe2yb\x15\xf1\x1e\xb1\x9a\x04H:$s\ +RW\x92;)\x80\x14IJ\x22\xf5#\x15\x90$\xa4\ +\x91\xa4I\xa4\xd9\xa4\xa5\xa4J\xd2N\xd2a\xd2YR\ +\x15\xe9>\xe9o2\x85lB\xa6\x91\xdd\xc9A\xe48\ +r:\x99C\x1eL\x1eI\x9eB\x9eO^M\xdeF\ +>D>K\xbeN~L\xae\xd5\xd0\xd3\xb0\xd1\xe8\xa1\ +\xc1\xd2\x88\xd7\xc8\xd2(\xd4(\xd3\x18\xaf1[c\xa5\ +\xc6V\x8d\x1f5\xcek\xdc\xd4xN\xa1P\xcc).\ +\x14\x7fJ\x1c%\x9b2\x882\x9c2\x85\xf25e#\ +e\x1f\xe54\xe5\x06\x05\x0eh\xd4.\xd4\x1e\xd4`j\ +\x12\x95M\x95Q\xc7S\xe7Q\xd7S\xf7R\xcfPo\ +R_j\xeah\xdakzi\xc6h\xf6\xd3\x14j\x8e\ +\xd1\x9c\xad\xb9Vs\x8f\xe6\x19\xcd[\x9a\xaf\xb4\x0c\xb5\ +\x9c\xb4XZIZ\x5c\xad\xa1Z\xd3\xb4\x96k\xed\xd4\ +:\xa9uS\xeb\x95\xb6\x91\xb6\x8bv\xb0v\x9a\xf6 \ +\xed\xd1\xdas\xb5+\xb5\x7f\xd4\xbe\xa2\xfdTGG\x87\ +\xae\x13\xa8\xd3W\x87\xaf3Jg\xae\xce\xb7:?\xeb\ +\x5c\xd7\xf9[\xd7X\xb7\xbbn\xa4n\x8e\xae\x5c\xf7K\ +\xddU\xba\xfbt\x7f\xd5}\xaa\xa7\xa7\xe7\xac\x17\xa6\xd7\ +OO\xa6\xf7\xa5\xde\x1a\xbd\x83z\xd7\xf4^\xea\x9b\xe8\ +{\xe8\xc7\xebs\xf5\xcb\xf5\x17\xe8o\xd3?\xa3\xff\xd0\ +@\xcb\xc0\xc9 \xdc`\xa0\xc10\x83\xd9\x06\x9b\x0dN\ +\x1a\xdc7\xd42t6\x8c4d\x1b\x8e4\x5c`\xf8\ +\xbd\xe1E\xc3j#\x13#\xa6Q\x92Q\x89\xd1\x14\xa3\ +\xb5FG\x8cn\x1bS\x8d\x9d\x8d\xa3\x8d\xb9\xc6\xe3\x8c\ +\x97\x19\x1f4\xbeaB2q0\x894\xe1\x98\x8c5\ +Yn\xf2\xa3\xc9MS\x8a\xa9\x8bi\xbc\xe9 \xd3\xc9\ +\xa6\x1bLO\x98>636\xf31\xcb0\x1bb\xb6\ +\xc0l\xb7Y\x959\xc9\xdc\xd9<\xde\x5c`>\xcd|\ +\x93\xf9\x05\xf3\x1a\x0b[\x8bp\x0b\x9e\xc5D\x8bJ\x8b\ +3\x16/,\xad-\xc3,y\x96\x93,7Z\x9e\xb7\ +\xac\xe9B\xeb\x12\xdd\xa5\xb8\xcb\x8c.\xdb\xbb\x5c\xb5\x22\ +[u\xb7\xeakUf\xf5\x8d\xd5\x8fV\xf7\xadM\xad\ +\x83\xac9\xd6\x93\xac7Y\xfffC\xb4\xe9n\x93b\ +3\xdcf\x99\xcd1\x9bj[;\xdbX[\xb1\xed<\ +\xdb\x83\xb6\xf7\xed\xcc\xed\xc2\xec\x06\xd9\xcd\xb4\xdbcw\ +\xc7\xde\xc4>\xc4\x9eo?\xd3~\xaf\xfd]\x9a\x19-\ +\x9c&\xa0\xcd\xa5\x1d\xa2=\xeej\xd35\xae\xab\xbc\xeb\ +\x92\xae'\xba\xbe\xa2\xbb\xd0\xd3\xe9c\xe8\x1b\xe9W\x1d\ +\xb4\x1d\x02\x1c\x0a\x1cf:\x1cpx\xech\xef\x98\xe8\ +8\xc2q\x9d\xe3oNZN\x01NENs\x9c\x0e\ +;\xbdpvq\xcet\x9e\xe0\xbc\xdd\xf9\xb6\x8b\xa5K\ +\xbc\xcb0\x97u.W\x5c\xf5\x5cC]\x07\xbb.u\ +=\xd7\x8d\xd2-\xa0[q\xb7\xaf\xbb\x9d\xeaN\xec\xee\ +\xdb\xbd\xa8\xfb\x82\xee'{\x10{\xf8\xf5\xe0\xf7\xf8\xba\ +\xc7i7\x0d\xb7@7\xa1\xdbR\xb7\x8b\xee\xba\xee\xe1\ +\xee\xa5\xee\xeb\xdc\xaf{\x98{$x\x8c\xf1\xd8\xee\xf1\ +\x90\xe1\xc8\xe8\xc7\x98\xc18\xcc\xa8\xf5\xf4\xf5\x14x.\ +\xf7\xbc\xcc4f\xf6b\x8ea\xeed\xfe\xe5\xd5\xdd\x8b\ +\xe3\xb5\xc0\xeb\x9c\xb7\x9ew\x8cw\xb9\xf7\x0e\xef'>\ +=|x>\xdf\xf8\x5c\xf25\xf1M\xf4\x9d\xe0{\xc0\ +\xf7\x8d\x9f\xbf\x9f\xc4\xaf\xd2\xef\x8e\xbf\xa3\x7f\x9e\xffB\ +\xff\x8b\x01\xa6\x01\xc9\x01S\x02~\x0e\xd4\x08\x8c\x08,\ +\x0f\xfc!\xf0o\x96\x1fK\xc6\xda\xc4z\x14\xe4\x1eT\ +\x1c\xb46\xe8vO\x97\x9e\xbc\x9e\xcb{\xde\x08\xa6\x07\ +\xb3\x83\x97\x04W\x85\xd0B\xf2B\x16\x87T\x85v\x0d\ +e\x87.\x0d\xfd=\xcc!\x8c\x1b\xb62\xecVx\xb7\ +\xf0A\xe1\xeb\xc3\x1fFxFH\x22\xb6F\xbc\x88d\ +E~\x16\xb9/\x8a\x14\x15\x1b5)\xeaD\xb4qt\ +z\xf4\xfc\xe8k1\xf4\x98\xc2\x98u1\x8fc}c\ +\x87\xc7\xee\x8b\xd3\x88\xeb\x1d7#\xeeb\xbcm<'\ +~M\xfc\xe3^\xfe\xbd>\xebu\xa8\xb7n\xef\xd4\xde\ +\xf3{\xff\x9e\xd0=A\x92\xb03\x91\x98\xd8+\xf1\xab\ +\xc4+}\x9c\xfa\x08\xfblO\x02I\xf1I_%]\ +MvI\x1e\x9c\xbc\xab/\xa5or\xdf\x05}\xffL\ +a\xa6\x8cH9\x9cj\x92\x9a\x9b\xba6\xf5yZD\ +\xda\xb4\xb4\xcb\xe9\xae\xe9\xf2\xf4\x03\x19\x06\x199\x19k\ +2^dFeVdVe1\xb2>\xcb:\x9am\ +\x95\xcd\xcf\xde\xd1\x8f\xda/\xa3\xdf\xca~\xd5\xfd\xa3\xfb\ +\xcf\xea\x7f3\xc77g|\xce\x85\x01.\x03\x86\x0c8\ +2\xd0j\xa0`\xe0\xee\x5c\x83\x5cv\xee\xe6<\x8d\xbc\ +\xcc\xbc\xb5y\xaf\xd9I\xec\xa5\xec\xea\xfc\xf8\xfc\x85\xf9\ +\x8f9\x91\x9c9\x9c{\xdc0\xeeL\xee\x1d^0\xaf\ +\x82w\xab \xb8\xa0\xa2\xe0vap\xe1W\x85w\x8a\ +B\x8bf\x17\xdd\xe7G\xf2\xe7\xf3\x9f\x0c\x8a\x1b\xb4h\ +\xd0\x8b\xe2\xa4\xe2U\xc5u\x82L\xc1\xc6\x12\xcd\x92\xbc\ +\x92\xef\x85\xc6\xc2b\xe1!\x91\x9dh\x88\xe8\xb4\xb8\x87\ +x\xbc\xb8j0k\xf0\xac\xc1\x8f%\xbd%+\xa5\x04\ +\xe9\x00\xe9\x0e\x99)4\xa6\x8e\xc9]\xe5\x9f\xcb\xaf\x97\ +\x86\x94.(}Y\x96Q\xb6y\x88\xd1\x10\xe1\x90c\ +C\xbb\x0f\x9d8\xf4\xd6\xb0\x98a+\x86\x93\x87s\x86\ +\x1f\x18\xd1u\xc4\xe8\x11\xd7?\x0b\xffl\xc9H\xc2\xc8\ +\xfc\x91\x07\xca\x1d\xca\xc7\x95\xdf\x1c\x15;j\xf5h\xed\ +\xd1\xc5\xa3\x8f\x8f\xf1\x1cS1\xe6\xd9\xd8\xcc\xb1;\xc7\ +\xd9\x8e\x1b5\xee\xc6\xe7\xb1\x9f\xaf\x1b\xaf?^2\xfe\ +\xe2\x84\xa0\x09\x8b\xbe \x7f\xc1\xff\xe2\xc4D\xef\x89\xf3\ +&\xd6N\xe2N\xfae\xb2\xe7\xe4\xd9\x93_O\xe1L\ +\xf9e*s\xea\xdc\xa9u_\x16|yb\x9a\xdf\xb4\ +o\xa6S\xa6\x0b\xa7_\x98\x11:cu\x85Q\xc5\xb0\ +\x8a\x1b_%~\xb5m&m\xe6\xa4\x99\xcff\xe5\xce\ +:2\xdbg\xf6\xa29\xdas\xe4s\xaa\xe6&\xcc\xdd\ +1\xcfq\xde\xf4y\xaf\xe7\x17\xcd?\xbf b\xc1\xc6\ +\x856\x0b'.|\xf15\xf7\xeb3\xdf\x84}S\xb9\ +\xc8v\xd1\xe4E5\x8b\xf9\x8b/-\x89]\xb2m\xa9\ +\xf3\xd2\xd9\xcb(\xcbJ\x97\xfd\xb9\ +\xf1\xbe\xfb\xfb\x0b\xf7\xdf8\x90{\xe0\xf2\xc1\xac\x83\xe7\ +\x0e\xf5=t\xe2\xc7\xde?\xfe\xfcS\xccO\x07\x0f\x87\ +\x1f\xde\xfbs\xf0\xcf?\x1ca\x1d\xf9\xfe\x97\x80_\xb6\ +\x1f\xf5;\xba\xed\x98\xef\xb1\xad\xc7}\x8fo=\xe1w\ +b\xdbI\xff\x93;N\x05\x9e\xday\xba\xe7\xe9=g\ +B\xcf\xec?\x1bu\xf6\xa7s\xf1\xe7\x8e\x9e\xefs\xfe\ +\xf4\x85\xf4\x0b\x97.\xe6\x5c\xac\xba\xc4\xbdt\xfbW\xc1\ +\xafO~+\xfd\xed\xd5\xe5QW4\xaeL\xbajx\ +u\xf65\x9bkK\xff\xd3\xed?\x1b\xab\xfc\xaav_\ +\x8f\xba~\xec\xf7\xd4\xdf/\xdf\xe0\xdc\xb8\xf7\x87\xf4\x8f\ +\xd77\xc7\xfd\xa9\xf7\xe7\xec[\xf6\xb7\xd6\xdc\xf6\xba\xfd\ +\xc3\x9d\x98;\xa7\xee\xf6\xbf{\xf3\x9e\xf8\xde\xab\xfb\xe3\ +\x1f\x18=X\xf8\xd0\xf5\xe1\x96Ga\x8f\x8e=\xcez\ +|\xf3\x89\xe4I\xdd_S\x9evy\xba\xea\x99\xcf\xb3\ +\x03\xd5\xc9\xd5\xd7\x9e\x97<\x7f\xf5b\xd2\xcb./W\ +\xff\x1d\xf0\xf7\xe1\x9a\xcc\x9a[\xaf\xca^S_\xcf}\ +\xd3\xed\xcd\xce\xda\xde\xb5W\xeaJ\x1a\xdeH\xe0\xc0\x81\ +\x03\x07\x0e\x1c8p\xe0\xc0\x81\x03\x07\x0e\x1c8p\xe0\ +\xc0\x81\x03\x07\x0e\x1c8p\xe0\xc0\x81\x03\x07\x8e\xffc\ +\x90\xc9dMGG\xc7\xac\xce\xe6\xe3\xff\x15aaa\ +\x8b\x0a\x0a\x0a\xea\xe0\xff7\xa8.:\x9b\x9f\xff'\xa0\ +v\x8ft\xaft)))Guuu\xed\xda\x83\x96\ +\x8e\x8e\x8e\x15\x9dNO\xf7\xf3\xf3\x9b\xd0\xabW\xaf\x1d\ +\x19\x19\x19\xe7srr\xfe\xe4p8/\x90C~\x18\ +v\x01\xc6}\xef\xef\xef\xff\x85\x83\x83C\x06\xca\xd3\x1e\ +\xbc|*@\xed\x1d\xb5{\xd5:\x188p\xe0]k\ +k\xebw\xec\xf2\xfd0@\xfdY{zz\x96%'\ +'\x1f\x86e\xd7\xaa\xd2i\xa5\xab\xed\xdb\xb7\xef\x11X\ +\xc6\x10\xd8.l\xd5\xc1\xd3\xa7\x0877\xb7\x12.\x97\ +[\xa3\x94\x9b\xc7\xe3\xbdvww\x17}ly\x16\x16\ +\x16\x01QQQ\xaba9\xaf>B\xe7-:T\x16\ +,s\xad\xa5\xa5%K\x9d\xb2\x7f*\x80r\x05\x0d\x18\ +0\xe0\x96\xaa\xcc\x91\x91\x91+\xe13\xa2\xdd\xda2`\ +\x1b\xb5A:R\x97\xce\xdf\xe5\xa2\xa3\xa3\xd7\xb7W?\ +\xd9\x99\xd0\xd6\xd6\xee\x02\xfb\x8a\x9fTeMKK;\ +\xad\xaf\xafO\x7f_>\x12\x89DA}D~~\xfe\ +\xb3\xf6\xd6\xbd\xd2AZ\xd5L&s\x18\xa4M\xed(\ +\xfdt\x04\x90.CBB\xe6\xa9\xca\x9a\x97\x97\xf7\xd0\ +\xd6\xd66\xb6\xa5\xf46661\x99\x99\x99\xbfv\x94\ +\xde\x9b\xbb\xac\xac\xac\xcb\x90\xb7\xb8\x8e\xd6S{\xc3\xd5\ +\xd55\x1f\x8e\x09/Ud}\x83\xc6R\xe59g\xf8\ +G\x84\xb6\xcc\xe7\x9d\xa5\xf7\xe6\x0e\xd9L\x88\xa7\xce\xd6\ +\x9b:ann\xee\xdb\xbf\x7f\xff\xdfU\xe5\x8c\x89\x89\ +\xd9\x80\xfa\xf9\xf8\xf8\xf8\xad\x9d\xad\xf3\xe6\x0e\xda\xae\xdb\ +\xa9T\xea[\xdf:\xfa7CKK\xcb,11q\ +\xaf\xaa\x9c\xf0\xb9\xf8\xbb\xb3u\xfd\xbe\xfe\xc8\xd8\xd8\xb8\ +Gg\xebM\x9d \x12\x89d\x16\x8b5\xa3\xb3u\xdb\ +Z\x07\xc7\xe6\xa7p\x5c\x8a\xeel\xbd\xa9\x13P\x9e\xa8\ +O\xb9\xdd7whN\xfd\xbfR\x07\xc8\xc6A\xf2\xa8\ +C/9997\xd1\xb3\x84l\x16##\xa3\xee\x14\ +\x0aEOCCC\xd7\xd0\xd0\xd0\x19\x8e57\xda\xa1\ +\x0eb:[\x7fm\x01\xb2;\xd5\xa1\xfb~\xfd\xfaU\ +\xd1\xe9\xf4\xd4\xf7\xd9(\xa8\xefn\x8f\xe7\xe0]\xb6\xf3\ +\xa7\x0ed\xff\xa0yN[u\x10\x10\x100\x05\xce\xa3\ +\xb5\xfe\x89^{\xe8\x1f9$\x83\x99\x99\x99OG\xe8\ +L]@\xf3\xfb\xe6\xeb\x11\x1f\xe1\xde\xf4\xe8\xd1cP\ +ki\xb6\x97\xfe\x91C\xb2\xfc[\xd6\xf0`\x9f\xac\x9f\ +\x9e\x9e~\xb6\xad2\x7f\xe8\x1a^{\xea\x1f9\xb4\x96\ +\x82\xc6\x9b\xf6\xd2\x9b:\x80\xe6\xb7qqq[\xd4!\ +/\xea\xf3MMM[\xfd\xa5\x90\xf6\xd6?r\xb1\xb1\ +\xb1\xdf\xa9|\xab\xec\x93\x83\x97\x97\xd7\x085\xc8\xd9\xb0\ +\xd6\x0f\xc7\xbf\xe7\xce\xce\xce\x03ZC\xbb#\xf4\x8f\x1c\ +ZGio=~\x0c,--{\xa2\xb5\xff\xb6\xca\ +\x87\xec\xcb\xbc\xbc\xbc\xc7\xcd\xc2\xa6\xa3y\xdc\xfb\xe8w\ +\x94\xfe\xd1\xbb\x04h[\xf8w\x94^[\x03\xd4\xe7\xa3\ +\xfeB\x1d}\x0e\xd4\xb3\x86\x81\x81\x81\x13\x1cC\xce\xa9\ +\xc6\xf5\xe9\xd3\xe7\x80\xb6\xb6\xb6\xc5\xbbx\xe8(\xfd#\ +\x07i\xfd\xf6!\xef6\xda\x1b\x81\x81\x81S\xd5!\x97\ +\xbf\xbf\xffDe\x99h^\xd5\xfc}\x0c\x9c\x7f\xfd\xf1\ +\xae\xb6\xd7\x91\xfaG\xce\xc7\xc7gt\xc7i\xf8\xdd@\ +k\x86h\xcdD\x1d2YYY\x855/\x1f\xbd\x9b\ +Q\xed\xd7\xd0:\x86\xab\xab+\xb7y\xba\x8e\xd6?z\ +\xaf\x81\xdaH\x87(\xf9=\x80\xfa)U\x87H\x15h\x8d\xa8\xf9\xf8\ +\x8a\xd6\x92\x0c\x0c\x0c\x1cQ\xd9\xd0^\xb8\xdeV>\xe1\ +\xdc\xf7\x91r\xde\xf1\xa9\xc0\xd9\xd9y\xa0:\xdaU\xf7\ +\xee\xdd?\xf0+\xdao\x03\xf5\xf1={\xf6\x9c\xd9\x5c\ +gAAA_\xa9\x83G\x07\x07\x87Lu\xe8L\xdd\ +P\x9e\x87i\x8bC\xedS\xb5\xbfh\x0bP\x9bh\xf6\ +\xfe\xffc\xce\x114qh\xddC\x1d\xbc\xb5\x07\x90\xed\ +\xdd|\x8d\xe0c\x1c\x9c\xe3.W\x17O\xa6\xa6\xa6^\ +\xeaX\x1bG.%%\xe5\xd8\xa7\xbeg\x1a\xbd\xa7F\ +\xfbt\xda*\xeb\x87\xbc{\xff'\xa8c\x8d\x10\x8d\xeb\ +\x9fZ\x9f\xff.\xc06\xe7\xa9\x865\xe9Z\x0f\x0f\x0f\ +I[yA6h[\xfb\x1dd[\x98\x98\x980\xd4\ +\xa1\x9b\x8e\x82\x9d\x9d]\xbc:\xe6\x05p\x1c\x9d\xf51\ +\xfb\x0e\xd0;\xb9\xe0\xe0\xe0\xb9m\xa5\x8fd\xf8\xb7\x9e\ +\x11prr\xcaQG\x1d\xa0\xf3\x8dp,\xcd}\xd7\ +\xfb\x01U \x1b\xd3\xc5\xc5%\xaf\xf9\xda\xd0\xc7\xea\x1e\ +\xc9\xd0\x11\xbaj/8::f\xabk~\x8c\xde9\ +\xa1y\x0f:_\x8a\xe6Z\xe8,\x01r\xc8\x8f\xc2\x90\ +\xfd\x85\xecLu\xd0B<#\xde;[\x7f\xea\x00\x9d\ +NOS\xe7y\xc6\xf6vH\xf7\xe8\xbcqg\xebM\ +\x9d\xa0\xd1h\xc9\xea\xda\x07\xdd\x11.00\xf0\xcb\x7f\ +\xda\xf3\xf2o\x83\x99\x99\x99\xb7:\xe6\xff\xed\xe5T\xcf\ +1#\x87\xce\xee\xa03<\x9d\xad7uBSS\xd3\ +4!!awg\xeb\xba\xb9C\xba\xd6\xd7\xd7\xa7\xc5\ +\xc4\xc4T\xaa\x86\xa35)\xb4\x97\xbb\xb3\xf5\xa6N\xc0\ +\xe7\x9a\x84\xd6:;[\xe7-\xf55h\x7f\xa7\x97\x97\ +\xd7p\x18\xfeF\xe5\xb9x\x89\xcetv\xb6\xde\xd4\x0d\ +4G\xe8\x8c}#J\x87\xf6\x5c@\x1ez\xb7\xc4\x1b\ +\xb2\xf9\x91\xbd\xa5\x9a\x1e\xceEf\xb7\xc6\x06\xfe7\xa1\ +\x93\xce\xbf?k\xcd\xf9w\xb4\xae\x8e\xf6\x9d\xab\xe6M\ +JJ\xfa\x11\x9d\xf5\xef(\xfdt\x14\xd0\xda\x0a\xfaf\ +D{\xeb\x1e}\xdb\x03\xcd\x19Z\xcb\x17\xda\xe7\xd9\x9c\ +/4\x1fD\xdf\xbchO}t\x16\x90\x8d\x14\x1e\x1e\ +\xbe\xa4\xd9\xf9\xf969\xf4\xae\x10\xed\x8dh\xcb9\x22\ +\xb4\x16\xd5l\x1fd\x8d:\xd7\x08?5 \xbb\x0f}\ +\xdb\x06\xd9J\x1f3wCy\xd0>+X\x86\x10\x96\ +e\xae\x0e\x9e\xac\xac\xac\xc2\xd17\x8eT\xe9\xa09\xf7\ +\xff\xfa\xb7\xbf\xa8T\xaa\x11\x1a\xabQ\x9f\x8d\xde\xe7\xa2\ +o2eff^Bk\x0a\x0a \x0a Artboard\x0a \ +Created with Ske\ +tch.\x0a \ +\x0a \x0a \x0a \x0a \ + \x0a\x0a\ +\x00\x00\x04S\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / entity / \ + error / Editor \ +only\x0a \ + Created w\ +ith Sketch.\x0a \x0a \ + \x0a \x0a\x0a\ +\x00\x00\x15\xcc\ +I\ +I*\x00j\x08\x00\x00\x80?\xe0@\x08$\x16\x0d\x07\ +\x84BaP\xb8d6\x1d\x0f\x88DbQ8\xa4V\ +-\x17\x8cFcQ\xb8\xe4v\x0b\x02\x7f\xc7\xa4R9\ +$\x96M'\x94JeR\xb8\xa4\x82Y/\x98Lf\ +S9\xa4\xd6a.\x9bNgS\xb9\xe4\xf6}#\x9c\ +O\xe8T:%\x16\x8d/\xa0\xd1\xe9T\xbae6\x9d\ +\x1f\x81\xd3\xeaU:\xa5V\x91Q\xabVkU\xba\xe4\ +B\x93]\xb0XlU*\xfd\x8e\xcdg\xb4N\xec\xb6\ +\x9be\xb6\xdd&\xb5\xdb\xeeW;\xa4J\xe3u\xbc^\ +o7{\xd5\xf6\xfdi\xbe_\xf0X:\xde\x07\x09\x87\ +\xc4Sp\xd6`\x0e6\xb4\xd0\xc8\x02\xdf\xb91L\x14\ +3\x05\x0dH\x02PWX\x0b<\xe6\xc6\x80\x5c\xc0]\ +#XY\xa7}Vqx\x0a\xc5\xcfCJflB\ +\x90R\x86\x84\x9f \x22AA\x11\xd7\x9e\x85o X\ +\x828K-8\xb1\xe9G\xd5\xda96\x1d|\xf5\xa9\ +\xcf\x06>:G8)\xd2\x0a\x0c\x9e; \xa8>\x10\ +!1\xc5\xd4\xcf9vo\x1dw\x9b6f\xfaK\x12\ +\x04\x84\x14/RohL\xc3?\xa2\xf6s\xe5\xb1~\ ++~y\x5c\x80\x04\xf4\x99\xa4*\x0a<,G\xe3B\ +8\xbe\x81\x99(\x99\xbfK\x04\x1a\xac\xbf\x893\x9ej\ +\x00\xce\x91\xf0U\xa0\xa2r\xde\xd0\x92\xd0H\xd6\xab\xa4\ ++\xec\x1e\xabB)+bf\x13\x88(\xc6\x94\x1c\xa8\ +)\x9c\x82\x9dH)\xe2\xd0\x82I\x03\xde\x82\x06\xa8+\ +f\x924#\xe4\x13\x01%\x11\x1b\x0a\xd6\xaeQ*;\ +\x13\x8d\xe8+\xda\x8e\x1d\xc8)*\x82\x94\xc1\xa4\xa4l\ +\x22\xc9\x00\x02h\xcb\x01\x81\xf9-\x8c\x11R\x0a\x05\xa3\ +1\x08\x00)JA\xa1`\x92\xc8J\xd4\xd2\xa9\xc8\xc8\ +\xc4N\x16\xa0\xa6z\x0a\x01\xa2\xb3\x11\x1c\x02O\x03\xf8\ +a=\x9e\xa9y\xad?\x82g\xb5\x05%\x80\x02\xe22\ +y\xcf\x00 I=\x86\x11\x8a;5\xaa\xd4\x82\x9f6\ +\xa2\xf19j\x82\x89H\xa9\xea\xcf\x00B\x88eO\x97\ +j\x19\x9dQ\x8b\xc7\xf5LONh\x93BJ\xc1#\ +b=I*\x95\x82\x9bJ\x22F}l 2g\xe9\ +~\x8a\x9f\x14\xc4\xcb]\xa9\x918\xb6\x82\x94H(\x04\ +\x88\x9fm\x08U\x04\x9b\x88\xd5d\xb2H\x90\xdb\x1c\x8d\ +D\xe5\xa2\x0a%\xa2\xa3\xa4\xcaF\xab0\x01(\x90C\ +\xe8\xa1)2\x8d\xb6u\xa2\xbaY\xea]h\x86\xc2n\ +\x8b\xa4\xed \x80:\x22i\xc1!\x8bB~\xab&\xbd\ +\xf4\x06\x9e\xb7\xed\x9a\x82\x02\xc8\x89\xc72\x83\xd74\xc4\ +\xbd\xdc\xebm\xd6\x86@\x02\x9a@VULh\xdd\x04\ +\x92k\x1cNG \xa3\x8a*\x19\xcc\xb1|\xeb\x84\xae\ +WJ\x95\x85\xa1p\x012\x90\x0c\xc8\xa852\x9c\xeb\ +\x1dFg\x07U1\xfcb\xe2 \x08\xf1\x04\x912\xae\ +@\xb7\xe4J>H\x85D\xe5\xb2\x0a$\xa2'\xac\xca\ +\xec-\x19x+\x99Q\xc8\x849\x0fgX:\xf1\x9e\ +\xa8\xd9\xfa\x13\x13\x9a\x08(^\x88\x9bs(L\xb7\xc4\ +\xe7\xda\x0a\x02\x22%\x84\xca(\xea+\xf6\xa8\xa2\xea\xc8\ +DO\xa6\x82\xa8\x89\xb12\xb2\xabtO^\xde(\x89\ +\x932\x87\x1bLE\x9d\xad\x1bj\x0f\x13\xb8\xe8$\xc0\ +\x88nr\x96\xea\xb6\xee\xe8-\xe4\x88\x1a\x93,\xe1\x8f\ +\xeaK\xae\xd6\xa2pH7\x09/\xee[\xa6\xc0\xd8\xef\ +\x00\x07\x1e\x87\xf22\x97&\x96\xf0\x0bo.\xa1\xf3(\ +/7\xc3s\xbcW>ft=\x1a\x1d\xd2\x86\x9d:\ +'\xd5\xa8\xdd\xe2\x7f\xd6\xa0\x9dx\x01\xc3\xa1\xfcHi\ +\xc5\xad\x9cn\xf3\xc8r[\xf2\xf5\xdf'\xde\x00\x01\xe1\ +x\x88w\x8d\xe4->WD\x88\xf7\x1d\xd2\xed\xd4\xad\ +\x9e\x82{\xc1\x1b_(\x0ey}\x12j\x08\x05k\x94\ +\xe0v\xb7\xe6G\x22\x0a\x03\x22&\xbe\xb52\xecH\x8f\ +\xc4\xa1\x7fi\xdc\x22\x95\x99xk$\x0a\xb8\x82\x02s\ +\x12K\x13\x10\xd14\x22%\x04\x8a\x82\x14\xffI\xf4\x10\ +'&\xbd\x09\x81$,+\x88(?\x80\xe5\x14V\x9d\ +\xd0\xb4x \x91\xe2|\x05\x8c\xd7\xa2qLAB\xcc\ +\x1b]F4C\xa0\x90\xf5\x08KT#,J\xd8g\ +\x84Vd.\xa1QS\x1f\xa6\x84\x16\xa9\xf0d\xfd\x9e\ +|2,(\x00L\x10P\xcf\x0eJ\xb0zA\x22\x1d\ +\xbf\xb9R\xdc\x80\x05\xc9\x05\x08\xc4T^/x\x90\xe5\ +\x1a@\x00}\xe4D\xd0\x89\xb8|\xcab\x0cN-\xa8\ +\x00`A\x92$\xa2@b\x8cO\xb1\x5c\x89\x99\x01\xa0\ +\x0b\x12\xd8\xfc\x1adTQ \x90\xbf\x13K\xc4d\x8c\ +\xc4F4F\xa8\xd9\x1bL\x84pKq\xcc\x8aGS\ +\xe9\x1d\xe3\x0cy=1\x94\x82A\xa8\xf8\x9e#J|\ +\x8f\xe4J7H(\xe5\x1d#\xb4x.\xb1\xeaF\xc6\ +y!\x1f\xa4\x99\x10\x92\xb1\xc6B\x119\x0c\x0c\xe4C\ +\x08\x8cE\xb2N\x00\x09\x1cD#\xec\x92\x94$>Q\ +\xc891!\xe4\xd1t\x95\xb2\xbc\x87\xcb\x10a\x1a\xc9\ +\xdcn\x04*\xe4 \x12\x00(hG8\x07\x99B\xf0\ +\xe2\x8e\x82{-d\xbc\x85\x932&M\x90\x06k5\ +\x80\x00\x82\x8f\xe0\xb0\x88L*\x0a\x04\x86\x83\x06\x11\x07\ +\xac.'\x14\x8a\xc5\xa1,\xc8\xc8*\x10\x88\x84\x1b!\ +\x00\x18\xbb\xec\x03$A\x0c\xa4\xe8\x89 \x05\xf9\x17\x96\ +\xcb\xa2\x8d\x09\x88\xb1\xf94i\xcb\xe1J!\x9c\xe8\xbf\ +7\x9e\xcf\xa7\xf4\x08\xbb\xfe\x87A\xa2\xd1\xa8\xf18\x14\ +\x0e\x11\x07\x9b\xc3@\x90\xf8\x8d\x22z\xda\xaa\x81\xdeU\ +\x86D aS\x82\xad\x86\x96\x02]v\x7f1hL\ +\xe6\xb4\x09\xcc\xee\xc7l\xb6\xcbho\xfbu\xca\xe7J\ +\x82A\xa7\xb4\xfa\x88\xc2%s\x89\xc6Y\x88xA\xe2\ +\xe7*4N\x86i\x9b\xecN\xcbg~M\xa7\xf6\xa1\ +\x9c\xf3\x15\x94\xae\xdc2\xb9\x8a\x0d\xd6\x99x\x87D/\ +y[\xf8>\x10\xeb\x84\x01r\x8e\x9c8jT\xfe\xca\ +\xe3&\x98\xebN\x1f'\x99\xda\xcf\xb2\xfbm\xcc_7\ +w\xa7g\xaaYFw\x08\x8a\xfe\xe2\xae\xb6\xd4\xf1>\ +}\xb5\xae\x99l1\xf3\xec\x8e\xd3u\xd4\x8an:\xbd\ +\x88.\xf0\x01M\x97\xdes\xf7\xccU\xfc\xa3\x08Wu\ +\x06v\x01\xa3;\x9bf\xe7\xec\xad}\x9f\x8c\x17\xaf\xf2\ +\xddv\xfb\xb2\xee\xff\x03\x14\xcf\xfe\x8c\x0f\xd8\x00\xcfm\ +\x80\x88\x10\x13\x0b s\xb9\xecc]\x04\xf5\xd2}_\ +\x17\xd2\x0fm_vuPx\x19U\xc0\x02R\x9c\xc4\ +\x14#e\x0b\xf7\xa4Bm\x9a\xf5\xa1\x90l\xe1'b\ +\x11\x8a\x19XQ\xbe\x85\x9f\xb6a\x7f\x15\x90\x82\xa5r\ +?\x008\xe0@\x0cc\xb3\x16#s\xa2WF'\x8a\ +\xdb\xa8\xaaC_b\xd7y\xbfh\x1dE\xfczB\x08\ +D\x81@>\x90\x81\x99\xe9(]X\x91\xb1\x89\x9f\x09\ +\x19\xb5\x91e\xd5\xbaH~d\xa7\x85\xd8R\x88e\xc0\ +yP\x06W\xa4\x9c|\xa5\x9817\x83\xa6\x06f_\ +\x9d\x169\x89-~\xa4\xb7eJ\x1d\x97\x02%@\x15\ +\x9e\x92\xaeo\x8f\xe5\xa9\x06\x5c\x9d\xd8\xa9\xda\x8bR'\ +\x94^{\x99]Y\xfa\x80\xa0\xa8J\x19\xed\x90 \xd9\ +\x0a\x8e_h\xdayE\xa4\x11jI\xf2\xa5T:\x05\ +?\xa0\xd6\x0a\x15\xf1\x9c\x1e\xf6J\xa1\xa7\xd4J\xc9l\ +\xa8\xd1Z\x95\xf1R\x85\xc5\xc0\xa3Oc\x80\x0c<\x8e\ +\xc3\x18\xf6\xae\xa1\xe7\x14\xbes\xadV\xda\x82\xcbOk\ +tR\xb9vMKP\x12>-sY\x08\x05\xd1s\ +V\x04\x02\x03(\x1c,\x94\xecjj\x88\xa7(\xab9\ +S\xb3n\x94\xba\xd0D\xed'\xd5\x7f\x0a\x11\xc4 )\ +J\x8c\xb0\x0a\xf9\x1d\xec3\x96(\xab\xe5\xba\xc6\xece\ +\xabL\x0a\xa2@\x97gr\x15^\xa9<\x16\xfe\xb1\xeb\ +\x07O\x0dPn\xbcII\xc1\xd9\xc8\xbb\x0b\xc5d;\ +\xfe\x89\xc0q\xb5\x03\x14\xc8\x10\x8b\xb9\x0b\xbc2;\x92\ +\x0b\xc42\x84\xff\x22\xca2T+'\xcb%\x8c?\x00\ +\xc4s5\x0b\x04\xce\x11\x5c\xc1\x09\xcc\xb3\xb8\xfa\xe5\xb2\ +\x12\xeb+@E\xb2\xec\x8dJ/\x90\x81\x05=J\x85\ +E\xc0\xf8\xd1\x9f\x10\x81\x08%4\xe4\x90\xa0I\xc3!\ +\x87S\xceW\x1dy\x0bR\xaa\xd0\x00T\xd8vt$\ +\x8da\xc7M\xa1\x13\xd22\x05(oB\x09\x0d\xb7h\ +\x14Xr\xc3uB\xb6\xfcl\xd8\xdf\x80\xd3\xd7\x81t\ +\x01\xfd\xeb,2\xd8p\xe9\x08K8W\xcf:\xda\x12\ +\xa0\x01\x7f\x88\x90R\xe1\xa6\xe3.\xc3\xd1*\x0d\x98s\ +_|\xca9\xecK\x90BVP\xc5\xb0\x95\xd0P\xb7\ +\x97\xa2\xcc \x1b\xad\x18B\xee\xc0\xdeBz\x0c\x83\xb4\ +\xea\xbb~\xe2\xe9\xed\xbb\x9e\xf3\xbd\x9d;\xbe\xfb\xc1\xf0\ +\x9f/\x03\xc3\xf1\xbcy\xd7\x8e\xf2<\xbf1\xf5\xf1|\ +\xdfC\xd1\xc8|\xafK\xd5\xf5\x96\xef?\xd7\xf6\xbd\xbf\ +g\xdb\xf7\xbd/w\xdf\xf8\xbc\xbf\x87\xe3\xf9\xbc/\x97\ +\xe7\xfa\xbb\x9f\xa7\xeb\xfb\xb8\xcf\xb7\xef\xfc\xb6\x8f\xc7\xf3\ +\xfd\xb4o\xd7\xf7\xfe\xb2\xc4\x04\x13\x00\xfe\x00\x04\x00\x01\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x04\x00\x01\x00\x00\x00`\ +\x00\x00\x00\x01\x01\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x02\ +\x01\x03\x00\x04\x00\x00\x00T\x09\x00\x00\x03\x01\x03\x00\x01\ +\x00\x00\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\ +\x00\x00\x00\x11\x01\x04\x00\x01\x00\x00\x00\x08\x00\x00\x00\x15\ +\x01\x03\x00\x01\x00\x00\x00\x04\x00\x00\x00\x16\x01\x04\x00\x01\ +\x00\x00\x00`\x00\x00\x00\x17\x01\x04\x00\x01\x00\x00\x00b\ +\x08\x00\x00\x1a\x01\x05\x00\x01\x00\x00\x00\x5c\x09\x00\x00\x1b\ +\x01\x05\x00\x01\x00\x00\x00d\x09\x00\x00\x1c\x01\x03\x00\x01\ +\x00\x00\x00\x01\x00\x00\x00(\x01\x03\x00\x01\x00\x00\x00\x02\ +\x00\x00\x001\x01\x02\x00\x10\x00\x00\x00l\x09\x00\x00=\ +\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x00R\x01\x03\x00\x01\ +\x00\x00\x00\x02\x00\x00\x00S\x01\x03\x00\x04\x00\x00\x00|\ +\x09\x00\x00s\x87\x07\x00H\x0c\x00\x00\x84\x09\x00\x00\x00\ +\x00\x00\x00\x08\x00\x08\x00\x08\x00\x08\x00\x802\x02\x00\xe8\ +\x03\x00\x00\x802\x02\x00\xe8\x03\x00\x00paint\ +.net 4.0.9\x00\x01\x00\x01\x00\x01\ +\x00\x01\x00\x00\x00\x0cHLino\x02\x10\x00\x00m\ +ntrRGB XYZ \x07\xce\x00\x02\x00\ +\x09\x00\x06\x001\x00\x00acspMSFT\x00\ +\x00\x00\x00IEC sRGB\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\xd6\x00\x01\x00\x00\x00\ +\x00\xd3-HP \x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x11cprt\x00\x00\x01P\x00\ +\x00\x003desc\x00\x00\x01\x84\x00\x00\x00lw\ +tpt\x00\x00\x01\xf0\x00\x00\x00\x14bkpt\x00\ +\x00\x02\x04\x00\x00\x00\x14rXYZ\x00\x00\x02\x18\x00\ +\x00\x00\x14gXYZ\x00\x00\x02,\x00\x00\x00\x14b\ +XYZ\x00\x00\x02@\x00\x00\x00\x14dmnd\x00\ +\x00\x02T\x00\x00\x00pdmdd\x00\x00\x02\xc4\x00\ +\x00\x00\x88vued\x00\x00\x03L\x00\x00\x00\x86v\ +iew\x00\x00\x03\xd4\x00\x00\x00$lumi\x00\ +\x00\x03\xf8\x00\x00\x00\x14meas\x00\x00\x04\x0c\x00\ +\x00\x00$tech\x00\x00\x040\x00\x00\x00\x0cr\ +TRC\x00\x00\x04<\x00\x00\x08\x0cgTRC\x00\ +\x00\x04<\x00\x00\x08\x0cbTRC\x00\x00\x04<\x00\ +\x00\x08\x0ctext\x00\x00\x00\x00Copyr\ +ight (c) 1998 He\ +wlett-Packard Co\ +mpany\x00\x00desc\x00\x00\x00\x00\x00\ +\x00\x00\x12sRGB IEC61966\ +-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12\ +sRGB IEC61966-2.\ +1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00XYZ \x00\x00\x00\x00\x00\x00\xf3Q\x00\ +\x01\x00\x00\x00\x01\x16\xccXYZ \x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ \x00\ +\x00\x00\x00\x00\x00o\xa2\x00\x008\xf5\x00\x00\x03\x90X\ +YZ \x00\x00\x00\x00\x00\x00b\x99\x00\x00\xb7\x85\x00\ +\x00\x18\xdaXYZ \x00\x00\x00\x00\x00\x00$\xa0\x00\ +\x00\x0f\x84\x00\x00\xb6\xcfdesc\x00\x00\x00\x00\x00\ +\x00\x00\x16IEC http://ww\ +w.iec.ch\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x16IEC http://w\ +ww.iec.ch\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00desc\x00\x00\x00\x00\x00\ +\x00\x00.IEC 61966-2.1\ + Default RGB col\ +our space - sRGB\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00.IEC \ +61966-2.1 Defaul\ +t RGB colour spa\ +ce - sRGB\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00d\ +esc\x00\x00\x00\x00\x00\x00\x00,Refer\ +ence Viewing Con\ +dition in IEC619\ +66-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00,Reference View\ +ing Condition in\ + IEC61966-2.1\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00view\x00\x00\x00\x00\x00\ +\x13\xa4\xfe\x00\x14_.\x00\x10\xcf\x14\x00\x03\xed\xcc\x00\ +\x04\x13\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01XYZ \x00\ +\x00\x00\x00\x00L\x09V\x00P\x00\x00\x00W\x1f\xe7m\ +eas\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x8f\x00\ +\x00\x00\x02sig \x00\x00\x00\x00CRT c\ +urv\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x05\x00\ +\x0a\x00\x0f\x00\x14\x00\x19\x00\x1e\x00#\x00(\x00-\x00\ +2\x007\x00;\x00@\x00E\x00J\x00O\x00T\x00\ +Y\x00^\x00c\x00h\x00m\x00r\x00w\x00|\x00\ +\x81\x00\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\x9f\x00\xa4\x00\ +\xa9\x00\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\xc6\x00\xcb\x00\ +\xd0\x00\xd5\x00\xdb\x00\xe0\x00\xe5\x00\xeb\x00\xf0\x00\xf6\x00\ +\xfb\x01\x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\x1f\x01%\x01\ ++\x012\x018\x01>\x01E\x01L\x01R\x01Y\x01\ +`\x01g\x01n\x01u\x01|\x01\x83\x01\x8b\x01\x92\x01\ +\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\xc9\x01\xd1\x01\ +\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\x0c\x02\x14\x02\ +\x1d\x02&\x02/\x028\x02A\x02K\x02T\x02]\x02\ +g\x02q\x02z\x02\x84\x02\x8e\x02\x98\x02\xa2\x02\xac\x02\ +\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\xf5\x03\x00\x03\ +\x0b\x03\x16\x03!\x03-\x038\x03C\x03O\x03Z\x03\ +f\x03r\x03~\x03\x8a\x03\x96\x03\xa2\x03\xae\x03\xba\x03\ +\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\x13\x04 \x04\ +-\x04;\x04H\x04U\x04c\x04q\x04~\x04\x8c\x04\ +\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\xf0\x04\xfe\x05\ +\x0d\x05\x1c\x05+\x05:\x05I\x05X\x05g\x05w\x05\ +\x86\x05\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\xe5\x05\xf6\x06\ +\x06\x06\x16\x06'\x067\x06H\x06Y\x06j\x06{\x06\ +\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\xf5\x07\x07\x07\ +\x19\x07+\x07=\x07O\x07a\x07t\x07\x86\x07\x99\x07\ +\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\x1f\x082\x08\ +F\x08Z\x08n\x08\x82\x08\x96\x08\xaa\x08\xbe\x08\xd2\x08\ +\xe7\x08\xfb\x09\x10\x09%\x09:\x09O\x09d\x09y\x09\ +\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\x11\x0a'\x0a\ +=\x0aT\x0aj\x0a\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\ +\xf3\x0b\x0b\x0b\x22\x0b9\x0bQ\x0bi\x0b\x80\x0b\x98\x0b\ +\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c*\x0cC\x0c\x5c\x0c\ +u\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d&\x0d\ +@\x0dZ\x0dt\x0d\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\ +\x13\x0e.\x0eI\x0ed\x0e\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\ +\xee\x0f\x09\x0f%\x0fA\x0f^\x0fz\x0f\x96\x0f\xb3\x0f\ +\xcf\x0f\xec\x10\x09\x10&\x10C\x10a\x10~\x10\x9b\x10\ +\xb9\x10\xd7\x10\xf5\x11\x13\x111\x11O\x11m\x11\x8c\x11\ +\xaa\x11\xc9\x11\xe8\x12\x07\x12&\x12E\x12d\x12\x84\x12\ +\xa3\x12\xc3\x12\xe3\x13\x03\x13#\x13C\x13c\x13\x83\x13\ +\xa4\x13\xc5\x13\xe5\x14\x06\x14'\x14I\x14j\x14\x8b\x14\ +\xad\x14\xce\x14\xf0\x15\x12\x154\x15V\x15x\x15\x9b\x15\ +\xbd\x15\xe0\x16\x03\x16&\x16I\x16l\x16\x8f\x16\xb2\x16\ +\xd6\x16\xfa\x17\x1d\x17A\x17e\x17\x89\x17\xae\x17\xd2\x17\ +\xf7\x18\x1b\x18@\x18e\x18\x8a\x18\xaf\x18\xd5\x18\xfa\x19\ + \x19E\x19k\x19\x91\x19\xb7\x19\xdd\x1a\x04\x1a*\x1a\ +Q\x1aw\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b;\x1bc\x1b\ +\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c*\x1cR\x1c{\x1c\xa3\x1c\ +\xcc\x1c\xf5\x1d\x1e\x1dG\x1dp\x1d\x99\x1d\xc3\x1d\xec\x1e\ +\x16\x1e@\x1ej\x1e\x94\x1e\xbe\x1e\xe9\x1f\x13\x1f>\x1f\ +i\x1f\x94\x1f\xbf\x1f\xea \x15 A l \x98 \ +\xc4 \xf0!\x1c!H!u!\xa1!\xce!\xfb\x22\ +'\x22U\x22\x82\x22\xaf\x22\xdd#\x0a#8#f#\ +\x94#\xc2#\xf0$\x1f$M$|$\xab$\xda%\ +\x09%8%h%\x97%\xc7%\xf7&'&W&\ +\x87&\xb7&\xe8'\x18'I'z'\xab'\xdc(\ +\x0d(?(q(\xa2(\xd4)\x06)8)k)\ +\x9d)\xd0*\x02*5*h*\x9b*\xcf+\x02+\ +6+i+\x9d+\xd1,\x05,9,n,\xa2,\ +\xd7-\x0c-A-v-\xab-\xe1.\x16.L.\ +\x82.\xb7.\xee/$/Z/\x91/\xc7/\xfe0\ +50l0\xa40\xdb1\x121J1\x821\xba1\ +\xf22*2c2\x9b2\xd43\x0d3F3\x7f3\ +\xb83\xf14+4e4\x9e4\xd85\x135M5\ +\x875\xc25\xfd676r6\xae6\xe97$7\ +`7\x9c7\xd78\x148P8\x8c8\xc89\x059\ +B9\x7f9\xbc9\xf9:6:t:\xb2:\xef;\ +-;k;\xaa;\xe8<' >`>\xa0>\xe0?\ +!?a?\xa2?\xe2@#@d@\xa6@\xe7A\ +)AjA\xacA\xeeB0BrB\xb5B\xf7C\ +:C}C\xc0D\x03DGD\x8aD\xceE\x12E\ +UE\x9aE\xdeF\x22FgF\xabF\xf0G5G\ +{G\xc0H\x05HKH\x91H\xd7I\x1dIcI\ +\xa9I\xf0J7J}J\xc4K\x0cKSK\x9aK\ +\xe2L*LrL\xbaM\x02MJM\x93M\xdcN\ +%NnN\xb7O\x00OIO\x93O\xddP'P\ +qP\xbbQ\x06QPQ\x9bQ\xe6R1R|R\ +\xc7S\x13S_S\xaaS\xf6TBT\x8fT\xdbU\ +(UuU\xc2V\x0fV\x5cV\xa9V\xf7WDW\ +\x92W\xe0X/X}X\xcbY\x1aYiY\xb8Z\ +\x07ZVZ\xa6Z\xf5[E[\x95[\xe5\x5c5\x5c\ +\x86\x5c\xd6]']x]\xc9^\x1a^l^\xbd_\ +\x0f_a_\xb3`\x05`W`\xaa`\xfcaOa\ +\xa2a\xf5bIb\x9cb\xf0cCc\x97c\xebd\ +@d\x94d\xe9e=e\x92e\xe7f=f\x92f\ +\xe8g=g\x93g\xe9h?h\x96h\xeciCi\ +\x9ai\xf1jHj\x9fj\xf7kOk\xa7k\xffl\ +Wl\xafm\x08m`m\xb9n\x12nkn\xc4o\ +\x1eoxo\xd1p+p\x86p\xe0q:q\x95q\ +\xf0rKr\xa6s\x01s]s\xb8t\x14tpt\ +\xccu(u\x85u\xe1v>v\x9bv\xf8wVw\ +\xb3x\x11xnx\xccy*y\x89y\xe7zFz\ +\xa5{\x04{c{\xc2|!|\x81|\xe1}A}\ +\xa1~\x01~b~\xc2\x7f#\x7f\x84\x7f\xe5\x80G\x80\ +\xa8\x81\x0a\x81k\x81\xcd\x820\x82\x92\x82\xf4\x83W\x83\ +\xba\x84\x1d\x84\x80\x84\xe3\x85G\x85\xab\x86\x0e\x86r\x86\ +\xd7\x87;\x87\x9f\x88\x04\x88i\x88\xce\x893\x89\x99\x89\ +\xfe\x8ad\x8a\xca\x8b0\x8b\x96\x8b\xfc\x8cc\x8c\xca\x8d\ +1\x8d\x98\x8d\xff\x8ef\x8e\xce\x8f6\x8f\x9e\x90\x06\x90\ +n\x90\xd6\x91?\x91\xa8\x92\x11\x92z\x92\xe3\x93M\x93\ +\xb6\x94 \x94\x8a\x94\xf4\x95_\x95\xc9\x964\x96\x9f\x97\ +\x0a\x97u\x97\xe0\x98L\x98\xb8\x99$\x99\x90\x99\xfc\x9a\ +h\x9a\xd5\x9bB\x9b\xaf\x9c\x1c\x9c\x89\x9c\xf7\x9dd\x9d\ +\xd2\x9e@\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0i\xa0\xd8\xa1\ +G\xa1\xb6\xa2&\xa2\x96\xa3\x06\xa3v\xa3\xe6\xa4V\xa4\ +\xc7\xa58\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7n\xa7\xe0\xa8\ +R\xa8\xc4\xa97\xa9\xa9\xaa\x1c\xaa\x8f\xab\x02\xabu\xab\ +\xe9\xac\x5c\xac\xd0\xadD\xad\xb8\xae-\xae\xa1\xaf\x16\xaf\ +\x8b\xb0\x00\xb0u\xb0\xea\xb1`\xb1\xd6\xb2K\xb2\xc2\xb3\ +8\xb3\xae\xb4%\xb4\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6y\xb6\ +\xf0\xb7h\xb7\xe0\xb8Y\xb8\xd1\xb9J\xb9\xc2\xba;\xba\ +\xb5\xbb.\xbb\xa7\xbc!\xbc\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\ +\x84\xbe\xff\xbfz\xbf\xf5\xc0p\xc0\xec\xc1g\xc1\xe3\xc2\ +_\xc2\xdb\xc3X\xc3\xd4\xc4Q\xc4\xce\xc5K\xc5\xc8\xc6\ +F\xc6\xc3\xc7A\xc7\xbf\xc8=\xc8\xbc\xc9:\xc9\xb9\xca\ +8\xca\xb7\xcb6\xcb\xb6\xcc5\xcc\xb5\xcd5\xcd\xb5\xce\ +6\xce\xb6\xcf7\xcf\xb8\xd09\xd0\xba\xd1<\xd1\xbe\xd2\ +?\xd2\xc1\xd3D\xd3\xc6\xd4I\xd4\xcb\xd5N\xd5\xd1\xd6\ +U\xd6\xd8\xd7\x5c\xd7\xe0\xd8d\xd8\xe8\xd9l\xd9\xf1\xda\ +v\xda\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\x96\xde\x1c\xde\ +\xa2\xdf)\xdf\xaf\xe06\xe0\xbd\xe1D\xe1\xcc\xe2S\xe2\ +\xdb\xe3c\xe3\xeb\xe4s\xe4\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\ +\x1f\xe7\xa9\xe82\xe8\xbc\xe9F\xe9\xd0\xea[\xea\xe5\xeb\ +p\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee(\xee\xb4\xef@\xef\ +\xcc\xf0X\xf0\xe5\xf1r\xf1\xff\xf2\x8c\xf3\x19\xf3\xa7\xf4\ +4\xf4\xc2\xf5P\xf5\xde\xf6m\xf6\xfb\xf7\x8a\xf8\x19\xf8\ +\xa8\xf98\xf9\xc7\xfaW\xfa\xe7\xfbw\xfc\x07\xfc\x98\xfd\ +)\xfd\xba\xfeK\xfe\xdc\xffm\xff\xff\ +\x00\x00\x03\xa4\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / entity / \ +Default - Update\ +d\x0a Created with\ + Sketch.\x0a\ + \x0a \x0a \ + \x0a \x0a\x0a\ +\x00\x00\x04\x84\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / entity / \ +error / Not act\ +ive \x0a \ + Created w\ +ith Sketch.\x0a \x0a \ + \x0a \x0a\x0a\ +\x00\x00\x04i\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / entity / \ + Editor only - U\ +pdated\x0a \ + Created\ + with Sketch.\x0a <\ +/defs>\x0a \x0a \ +\x0a \ +\x0a\x0a\ +\x00\x00\x15\x0a\ +I\ +I*\x00\xa8\x07\x00\x00\x80?\xe0@\x08$\x16\x0d\x07\ +\x84BaP\xb8d6\x1d\x0f\x88DbQ8\xa4V\ +-\x17\x8cFcQ\xb8\xe4v\x0b\x02\x7f\xc7\xa4R9\ +$\x96M'\x94JeR\xb8\xa4\x82Y/\x98Lf\ +S9\xa4\xd6a.\x9bNgS\xb9\xe4\xf6}#\x9c\ +O\xe8T:%\x16\x8d/\xa0\xd1\xe9T\xbae6\x9d\ +\x1f\x81\xd3\xeaU:\xa5V\x91Q\xabVkU\xba\xe4\ +B\x93]\xb0XlU*\xfd\x8e\xcdg\xb4N\xec\xb6\ +\x9be\xb6\xdd&\xb5\xdb\xeeW;\xa4J\xe3u\xbc^\ +o7{\xd5\xf6\xfdi\xbe_\xf0X:\xde\x07\x09\x87\ +\xc4Sp\xd6`\x0e6\xb5 \x05\xc1E0P\xcc\x14\ +5\x05\x09A]pW6r\x0a\xd6\xc6\x80_U\x9c\ +^\x02\xb1s\xd0\xd2\xa4\x01H)B\x0aO\x82\x91 \ +\xa0\x88\xeb\xce\x0a\xb7\x82\xac`\xab-\x0b\xd2\x8f\xa5\xb4\ +p,:\x99\xec\x80\x19\x059\xc1N\x90^<\xed\xd9\ +\x05A\xc1S\x1a\x1d\x1c\xf3\x85f\xeb\xd7x\x93i\x01\ +b\x0a\x90\x82\x85\xeaM\xe8)\x9bB\xbd\x9c\xf6l^\ +\xaa\xdfnW \x01AP\xb0S\xc5\x89\xf9\x058\xe8\ +R\x93?e\x83\xfa\xac\xbd\xcb\x82\x04\x03 \xa5Z\x0a\ +'.\x84\xb3B5\xaa\xe9\x0a\xfa\xff\xaa\xd0\x0aJ\x90\ +\x13\x88(\xc6\x94\x1c\xa8)\x9c\x82\x9dH)\xe2\xcc<\ +((j\x82\xb5\x898\xf8\xd0\xbeiD \xc2\xb4\xeb\ +\x94$\x8e\xa4\x03{\xbe\x8e\x9d\xc8)*\x82\x94\xcd\x09\ +\xb0\x8b$\x00\x0a\x0a\x18 \xa3\x04,\x82\xb2(\xc4\x1c\ +\x00\x0aM\x09a\x09\xc5\xab\xacV\xaaE\xf22\x04\x16\ +\xa0\xa6z\x0a\x01\xa2\xb29\x1c\x82\x8f\xed\x09\xeb\x06\x82\ +q\x9a\x08.#-\xb2\x08\x1240\xeca&\xae\x92\ +z\xa7(\xa2\xe9\x01j\x82\x89H\xac\xbe\x82\x0a-\x09\ +v\xa1\xa4\x02\xf2\x0aOJ\xe8\xa9*\xd0\x8d\x88\xf4\xdc\ +\xabP\xea|\xe0\xbb B\x02\x0a_\xa2\xa7\xc4\xe8\xd0\ +\xd2\x0ab@-\xa0\xa5\x12\x0a\xf8\xa2\x07\xda\x0a\x154\ +&\xe25D\xaa\x95\x22\x9bE\xa2)\x01h\x82\x89h\ +\xa8\xe8\xd0\x91\xad\x22\x04\xfd\xa0\x90b(J4#m\ +G6.u2\x99T!\x8e2\x0a\xe7\xa0\x80:\x22\ +i\xa0\xa1\x8bB~\xd6G\xf8\x1a\x82\xd4H ,\x88\ +\x9cm\x08=]\xc8\xeb\xddx\xb6X\x08Z@)\xa0\ +\xa5b*74$\x9a\xc6\x90Kh \xe2\x8a\x86m\ +\x0c7,\xdbk}|\xa5\xdb\xa8R@L\xbc\xa8\xa8\ +4\xd0\x9c\xf7:\x04\x1d \xa6**<4$Ly\ +x\xad\xd7\x9a\x95z\xa1)\x01l\x82\x89(\x89\xea\xd0\ +\xb9\xab:@\x0a\xc3\x88\xac\x14\xc6\xd6\xc9n\x10\xb6\xe1\ +J>\x18\x84$\x06\x82\x0a\x17\xa2&\xdbB\x13^H\ +\x15<\x82\x00\x88\x89`\xd0\x8a8=\xb2\xbcd*6\ +F\x83\xa4\x13P\x01\x8c\x22\x06\xc3B\xc9\xe1(\x15%\ +b\xa2&KB\x1cf\xcb\xf6r\xa2\xe7h2@\xdf\ + \x92*\x1f\xa11\xba&A\xa3 \xb62 j4\ +2\xa5\xe1\x9b\xc9\xd8\xfb\x18\xc7f\xda\xa0\x01\xab!\xda\ +\xc0\x03\xad-\x89\x06\x8e\x00k\xc8~\xc0\xc6\xecX\xf6\ +\xc96\xec\xcb\x1e\xa2\xa8\x1f\xfbV\xd8\x86\xed\xdb\x83L\ +\x7f\xee{\xaa\x1d\xbb\x80;\xca'\xa7\xb5[\xea\xc5\xbf\ +\xa0\x9a\x9c\x88\x88\xf0\xb9o\x11\xae\xa2\x9aJ\x80\xf0fD\x18aE\ +\x81\xad\xa4d\xbal\xdaU,\x81\xcb\xa6\xd3\x18\x1c\xce\ +\xa5\x5c\xae\xceb\xb5\xeb\x0d\x8a\x0d@\x00Af\xd40\ +\x0c:\xc7\x09\x95!\xe0\xc7\x8b`\x00\xd1#L\xdc\xa1\ +\x15Il\xde\xb2\x00\xad\xdd\xef\xf3\xb9\xd6\x03\x076\xb2\ +\xd9\xe6\xb6\x9b]\xb2T\x0f\x83:\xe0\xc0[\x93\xa6\x0c\ +\x1a\x91\xbf\xae\xf7\x9a\xb5\xeee\x84\xce\xcb\xf0Y\xed\x0c\ +G\x0dB\x91\xe2\xacr\xa2,\x19u\xa1\x13\xc8\xdbY\ +\x88\xadT\x01W\x9a\xdf/\xda-\xccR\xc1\xba\xde\xc0\ +\xf4\x96\x8d6\xc5\xfeQ\x83+\xb4#9\x1b;\x87\xb3\ +\xda\xcd6\xfb\xed\xf6\x83\xa3\xa2\xe0b8W)U2\ +\x06\xcf\xd0\x84\xe4n\xeee\xea\xb1\x9c\xeanz~l\ +\xefZi\x89\xe1\x80\xa0\xdb\x08\x18\x8e\xe4\xbf\x91\x90\xb0\ +\x99\x9d\xa6n\xb5\xe9\xd1z\x1f\xd6\x01\xebK\xde\xd6\x0d\ +*\x15\x90b\xa5aIP1\x01#1_\x86\xc9\xe3\ +m\x9eX\x02\x10?\xe1W\xa9\x06a\xde\xc7a\x9eJ\ +\x87\xa4\x18\x84G\x13s\xe9\x06\x19\x922\x85\xfe\x84Y\ +\xa7\x91\xfc\x86 V\xf2/_\xe0$\xa2\x04n\x92\xa2\ +\x19\x06\x1eSq\x95#'\x1d(\xad\xfa\x8bW\xd8\xc9\ +\x80\x7f\xe4U\x864I\xe3g\x9d\x15\x1d\x90b%7\ +\x15\x922\xae@J\xe1'>\x14\x92\x1a\x88\xc6[X\ +\xa4\xa4\x9aL\x8a\x8f\xf9=\x03\x94SiM\x0c\x95[\ +\xd7\xe5\xceK\xdd\x09z\x5c\x85\xe7\x19~\x1aiTI\ +\xb2N\x94%)RVs_\xb9\x12tXdz\x09\ +>\x98\x119\x89\xa1J\x85\xc4\x18\xa3M\xc3\xc8:~\ +\x96&\xf9j\x85ShJY;\xa1\xd1*&\x1eE\ +A$\x18\xd6A\x81tL\xd5A\x83$\x8e%\x9ee\ +x\xb2\x13\x8b\xa9\x9a^]\xac\x13\xdam\x11\xa7d\xd3\ +\xfc(F\x10`\xa5\x062\xd0a\xdd#9^\x99\xb6\ +\x80n+4\xf2\x98\xb2\x13J\xd5\x10\xad\xec\xbaJ\xad\ +\x96j\xfbA8\xb2\xadT\x9a\xcdC\xec\xfbbc\x9f\ +\xe4;\x1e\xddg\xeb+\x89(\xb6\x90\x9br\xe5\x85\xad\ +\xfa\xba\x81\xba\xae9\xce\xef\xb9\xa7g\x06x\xbc\xab\x8b\ +\xb2\xd3\xbb\xafu~\xf1\xbf\x13\xfb\xd1\xd7\xbd\xaf\xf6v\ +\xc5\xb80K\xf7\x08D\x8b\xe4\x18AM\xc5D\x18\xf8\ +\xc2\x9a \x81\x06%\x13r\x81\x06\x18q4\xa6\xe4\xc7\ +\x00\x09\xac\x00\xc41\xfcL\x8dA\x87L\x91x\xc7\xb1\ +\xc1\xbd\x06$2\x9c)\xc5@\xcb\x0c\xc1\x06\xb5\xf0@\ +6\x12\x07\xf3[\x8a\xbf@\xc3\xa4\x1a\x0b\xcds{\xc9\ +#\x00\x12\xa7\xdd\x03.\x19\x0c\xf2\x99=\x10`\xd9#\ +5\xf4K\xffT\xba\xb4f\xec\xff\x0cPh\xa5\x03\x0b\ +t\xd9\x14\xc2\xc6\x923{Y\xd85m\x83i\xda\xac\ +\xbd\xa3k\xdb\xb6\xf9{m\xdc7=\xd2\xc4\xca\xf7]\ +\xe3y\xdd\xaf\xed\xeb}\xdf\xaa\xbd\xff\x81\xe0\xa9\xed\xf3\ +\x83\xe1\xb8usr\xe28\xbe1m\xdd\xf8\xdeC\x91\ +\xe3\xb8^K\x95\xe5\xb8\xae[\x99\xde\xb9\x8ek\x9d\xdc\ +\xf9\xce{\xa1\xda\xba\x0e\x8b\xa5\xd0\xf8\xfe\x9b\xa9\xdb\xfa\ +N\xab\xad\xc1\x10\x10\x00\x13\x00\xfe\x00\x04\x00\x01\x00\x00\ +\x00\x00\x00\x00\x00\x00\x01\x04\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x01\x01\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x02\x01\x03\ +\x00\x04\x00\x00\x00\x92\x08\x00\x00\x03\x01\x03\x00\x01\x00\x00\ +\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ +\x00\x11\x01\x04\x00\x01\x00\x00\x00\x08\x00\x00\x00\x15\x01\x03\ +\x00\x01\x00\x00\x00\x04\x00\x00\x00\x16\x01\x04\x00\x01\x00\x00\ +\x00`\x00\x00\x00\x17\x01\x04\x00\x01\x00\x00\x00\x9f\x07\x00\ +\x00\x1a\x01\x05\x00\x01\x00\x00\x00\x9a\x08\x00\x00\x1b\x01\x05\ +\x00\x01\x00\x00\x00\xa2\x08\x00\x00\x1c\x01\x03\x00\x01\x00\x00\ +\x00\x01\x00\x00\x00(\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ +\x001\x01\x02\x00\x10\x00\x00\x00\xaa\x08\x00\x00=\x01\x03\ +\x00\x01\x00\x00\x00\x02\x00\x00\x00R\x01\x03\x00\x01\x00\x00\ +\x00\x02\x00\x00\x00S\x01\x03\x00\x04\x00\x00\x00\xba\x08\x00\ +\x00s\x87\x07\x00H\x0c\x00\x00\xc2\x08\x00\x00\x00\x00\x00\ +\x00\x08\x00\x08\x00\x08\x00\x08\x00\x802\x02\x00\xe8\x03\x00\ +\x00\x802\x02\x00\xe8\x03\x00\x00paint.n\ +et 4.0.9\x00\x01\x00\x01\x00\x01\x00\x01\ +\x00\x00\x00\x0cHLino\x02\x10\x00\x00mnt\ +rRGB XYZ \x07\xce\x00\x02\x00\x09\x00\ +\x06\x001\x00\x00acspMSFT\x00\x00\x00\ +\x00IEC sRGB\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\xf6\xd6\x00\x01\x00\x00\x00\x00\xd3\ +-HP \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x11cprt\x00\x00\x01P\x00\x00\x00\ +3desc\x00\x00\x01\x84\x00\x00\x00lwtp\ +t\x00\x00\x01\xf0\x00\x00\x00\x14bkpt\x00\x00\x02\ +\x04\x00\x00\x00\x14rXYZ\x00\x00\x02\x18\x00\x00\x00\ +\x14gXYZ\x00\x00\x02,\x00\x00\x00\x14bXY\ +Z\x00\x00\x02@\x00\x00\x00\x14dmnd\x00\x00\x02\ +T\x00\x00\x00pdmdd\x00\x00\x02\xc4\x00\x00\x00\ +\x88vued\x00\x00\x03L\x00\x00\x00\x86vie\ +w\x00\x00\x03\xd4\x00\x00\x00$lumi\x00\x00\x03\ +\xf8\x00\x00\x00\x14meas\x00\x00\x04\x0c\x00\x00\x00\ +$tech\x00\x00\x040\x00\x00\x00\x0crTR\ +C\x00\x00\x04<\x00\x00\x08\x0cgTRC\x00\x00\x04\ +<\x00\x00\x08\x0cbTRC\x00\x00\x04<\x00\x00\x08\ +\x0ctext\x00\x00\x00\x00Copyrig\ +ht (c) 1998 Hewl\ +ett-Packard Comp\ +any\x00\x00desc\x00\x00\x00\x00\x00\x00\x00\ +\x12sRGB IEC61966-2\ +.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12sR\ +GB IEC61966-2.1\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00XYZ \x00\x00\x00\x00\x00\x00\xf3Q\x00\x01\x00\ +\x00\x00\x01\x16\xccXYZ \x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ \x00\x00\x00\ +\x00\x00\x00o\xa2\x00\x008\xf5\x00\x00\x03\x90XYZ\ + \x00\x00\x00\x00\x00\x00b\x99\x00\x00\xb7\x85\x00\x00\x18\ +\xdaXYZ \x00\x00\x00\x00\x00\x00$\xa0\x00\x00\x0f\ +\x84\x00\x00\xb6\xcfdesc\x00\x00\x00\x00\x00\x00\x00\ +\x16IEC http://www.\ +iec.ch\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x16IEC http://www\ +.iec.ch\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00desc\x00\x00\x00\x00\x00\x00\x00\ +.IEC 61966-2.1 D\ +efault RGB colou\ +r space - sRGB\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00.IEC 61\ +966-2.1 Default \ +RGB colour space\ + - sRGB\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00des\ +c\x00\x00\x00\x00\x00\x00\x00,Referen\ +ce Viewing Condi\ +tion in IEC61966\ +-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\ +Reference Viewin\ +g Condition in I\ +EC61966-2.1\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00view\x00\x00\x00\x00\x00\x13\xa4\ +\xfe\x00\x14_.\x00\x10\xcf\x14\x00\x03\xed\xcc\x00\x04\x13\ +\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01XYZ \x00\x00\x00\ +\x00\x00L\x09V\x00P\x00\x00\x00W\x1f\xe7mea\ +s\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x8f\x00\x00\x00\ +\x02sig \x00\x00\x00\x00CRT cur\ +v\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x05\x00\x0a\x00\ +\x0f\x00\x14\x00\x19\x00\x1e\x00#\x00(\x00-\x002\x00\ +7\x00;\x00@\x00E\x00J\x00O\x00T\x00Y\x00\ +^\x00c\x00h\x00m\x00r\x00w\x00|\x00\x81\x00\ +\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\x9f\x00\xa4\x00\xa9\x00\ +\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\xc6\x00\xcb\x00\xd0\x00\ +\xd5\x00\xdb\x00\xe0\x00\xe5\x00\xeb\x00\xf0\x00\xf6\x00\xfb\x01\ +\x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\x1f\x01%\x01+\x01\ +2\x018\x01>\x01E\x01L\x01R\x01Y\x01`\x01\ +g\x01n\x01u\x01|\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\ +\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\xc9\x01\xd1\x01\xd9\x01\ +\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02\ +&\x02/\x028\x02A\x02K\x02T\x02]\x02g\x02\ +q\x02z\x02\x84\x02\x8e\x02\x98\x02\xa2\x02\xac\x02\xb6\x02\ +\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\ +\x16\x03!\x03-\x038\x03C\x03O\x03Z\x03f\x03\ +r\x03~\x03\x8a\x03\x96\x03\xa2\x03\xae\x03\xba\x03\xc7\x03\ +\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\x13\x04 \x04-\x04\ +;\x04H\x04U\x04c\x04q\x04~\x04\x8c\x04\x9a\x04\ +\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\xf0\x04\xfe\x05\x0d\x05\ +\x1c\x05+\x05:\x05I\x05X\x05g\x05w\x05\x86\x05\ +\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\ +\x16\x06'\x067\x06H\x06Y\x06j\x06{\x06\x8c\x06\ +\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07\ ++\x07=\x07O\x07a\x07t\x07\x86\x07\x99\x07\xac\x07\ +\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\x1f\x082\x08F\x08\ +Z\x08n\x08\x82\x08\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\ +\xfb\x09\x10\x09%\x09:\x09O\x09d\x09y\x09\x8f\x09\ +\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\x11\x0a'\x0a=\x0a\ +T\x0aj\x0a\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\ +\x0b\x0b\x22\x0b9\x0bQ\x0bi\x0b\x80\x0b\x98\x0b\xb0\x0b\ +\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c*\x0cC\x0c\x5c\x0cu\x0c\ +\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d&\x0d@\x0d\ +Z\x0dt\x0d\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e\ +.\x0eI\x0ed\x0e\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\xee\x0f\ +\x09\x0f%\x0fA\x0f^\x0fz\x0f\x96\x0f\xb3\x0f\xcf\x0f\ +\xec\x10\x09\x10&\x10C\x10a\x10~\x10\x9b\x10\xb9\x10\ +\xd7\x10\xf5\x11\x13\x111\x11O\x11m\x11\x8c\x11\xaa\x11\ +\xc9\x11\xe8\x12\x07\x12&\x12E\x12d\x12\x84\x12\xa3\x12\ +\xc3\x12\xe3\x13\x03\x13#\x13C\x13c\x13\x83\x13\xa4\x13\ +\xc5\x13\xe5\x14\x06\x14'\x14I\x14j\x14\x8b\x14\xad\x14\ +\xce\x14\xf0\x15\x12\x154\x15V\x15x\x15\x9b\x15\xbd\x15\ +\xe0\x16\x03\x16&\x16I\x16l\x16\x8f\x16\xb2\x16\xd6\x16\ +\xfa\x17\x1d\x17A\x17e\x17\x89\x17\xae\x17\xd2\x17\xf7\x18\ +\x1b\x18@\x18e\x18\x8a\x18\xaf\x18\xd5\x18\xfa\x19 \x19\ +E\x19k\x19\x91\x19\xb7\x19\xdd\x1a\x04\x1a*\x1aQ\x1a\ +w\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b;\x1bc\x1b\x8a\x1b\ +\xb2\x1b\xda\x1c\x02\x1c*\x1cR\x1c{\x1c\xa3\x1c\xcc\x1c\ +\xf5\x1d\x1e\x1dG\x1dp\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e\ +@\x1ej\x1e\x94\x1e\xbe\x1e\xe9\x1f\x13\x1f>\x1fi\x1f\ +\x94\x1f\xbf\x1f\xea \x15 A l \x98 \xc4 \ +\xf0!\x1c!H!u!\xa1!\xce!\xfb\x22'\x22\ +U\x22\x82\x22\xaf\x22\xdd#\x0a#8#f#\x94#\ +\xc2#\xf0$\x1f$M$|$\xab$\xda%\x09%\ +8%h%\x97%\xc7%\xf7&'&W&\x87&\ +\xb7&\xe8'\x18'I'z'\xab'\xdc(\x0d(\ +?(q(\xa2(\xd4)\x06)8)k)\x9d)\ +\xd0*\x02*5*h*\x9b*\xcf+\x02+6+\ +i+\x9d+\xd1,\x05,9,n,\xa2,\xd7-\ +\x0c-A-v-\xab-\xe1.\x16.L.\x82.\ +\xb7.\xee/$/Z/\x91/\xc7/\xfe050\ +l0\xa40\xdb1\x121J1\x821\xba1\xf22\ +*2c2\x9b2\xd43\x0d3F3\x7f3\xb83\ +\xf14+4e4\x9e4\xd85\x135M5\x875\ +\xc25\xfd676r6\xae6\xe97$7`7\ +\x9c7\xd78\x148P8\x8c8\xc89\x059B9\ +\x7f9\xbc9\xf9:6:t:\xb2:\xef;-;\ +k;\xaa;\xe8<' >`>\xa0>\xe0?!?\ +a?\xa2?\xe2@#@d@\xa6@\xe7A)A\ +jA\xacA\xeeB0BrB\xb5B\xf7C:C\ +}C\xc0D\x03DGD\x8aD\xceE\x12EUE\ +\x9aE\xdeF\x22FgF\xabF\xf0G5G{G\ +\xc0H\x05HKH\x91H\xd7I\x1dIcI\xa9I\ +\xf0J7J}J\xc4K\x0cKSK\x9aK\xe2L\ +*LrL\xbaM\x02MJM\x93M\xdcN%N\ +nN\xb7O\x00OIO\x93O\xddP'PqP\ +\xbbQ\x06QPQ\x9bQ\xe6R1R|R\xc7S\ +\x13S_S\xaaS\xf6TBT\x8fT\xdbU(U\ +uU\xc2V\x0fV\x5cV\xa9V\xf7WDW\x92W\ +\xe0X/X}X\xcbY\x1aYiY\xb8Z\x07Z\ +VZ\xa6Z\xf5[E[\x95[\xe5\x5c5\x5c\x86\x5c\ +\xd6]']x]\xc9^\x1a^l^\xbd_\x0f_\ +a_\xb3`\x05`W`\xaa`\xfcaOa\xa2a\ +\xf5bIb\x9cb\xf0cCc\x97c\xebd@d\ +\x94d\xe9e=e\x92e\xe7f=f\x92f\xe8g\ +=g\x93g\xe9h?h\x96h\xeciCi\x9ai\ +\xf1jHj\x9fj\xf7kOk\xa7k\xfflWl\ +\xafm\x08m`m\xb9n\x12nkn\xc4o\x1eo\ +xo\xd1p+p\x86p\xe0q:q\x95q\xf0r\ +Kr\xa6s\x01s]s\xb8t\x14tpt\xccu\ +(u\x85u\xe1v>v\x9bv\xf8wVw\xb3x\ +\x11xnx\xccy*y\x89y\xe7zFz\xa5{\ +\x04{c{\xc2|!|\x81|\xe1}A}\xa1~\ +\x01~b~\xc2\x7f#\x7f\x84\x7f\xe5\x80G\x80\xa8\x81\ +\x0a\x81k\x81\xcd\x820\x82\x92\x82\xf4\x83W\x83\xba\x84\ +\x1d\x84\x80\x84\xe3\x85G\x85\xab\x86\x0e\x86r\x86\xd7\x87\ +;\x87\x9f\x88\x04\x88i\x88\xce\x893\x89\x99\x89\xfe\x8a\ +d\x8a\xca\x8b0\x8b\x96\x8b\xfc\x8cc\x8c\xca\x8d1\x8d\ +\x98\x8d\xff\x8ef\x8e\xce\x8f6\x8f\x9e\x90\x06\x90n\x90\ +\xd6\x91?\x91\xa8\x92\x11\x92z\x92\xe3\x93M\x93\xb6\x94\ + \x94\x8a\x94\xf4\x95_\x95\xc9\x964\x96\x9f\x97\x0a\x97\ +u\x97\xe0\x98L\x98\xb8\x99$\x99\x90\x99\xfc\x9ah\x9a\ +\xd5\x9bB\x9b\xaf\x9c\x1c\x9c\x89\x9c\xf7\x9dd\x9d\xd2\x9e\ +@\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0i\xa0\xd8\xa1G\xa1\ +\xb6\xa2&\xa2\x96\xa3\x06\xa3v\xa3\xe6\xa4V\xa4\xc7\xa5\ +8\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7n\xa7\xe0\xa8R\xa8\ +\xc4\xa97\xa9\xa9\xaa\x1c\xaa\x8f\xab\x02\xabu\xab\xe9\xac\ +\x5c\xac\xd0\xadD\xad\xb8\xae-\xae\xa1\xaf\x16\xaf\x8b\xb0\ +\x00\xb0u\xb0\xea\xb1`\xb1\xd6\xb2K\xb2\xc2\xb38\xb3\ +\xae\xb4%\xb4\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6y\xb6\xf0\xb7\ +h\xb7\xe0\xb8Y\xb8\xd1\xb9J\xb9\xc2\xba;\xba\xb5\xbb\ +.\xbb\xa7\xbc!\xbc\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\x84\xbe\ +\xff\xbfz\xbf\xf5\xc0p\xc0\xec\xc1g\xc1\xe3\xc2_\xc2\ +\xdb\xc3X\xc3\xd4\xc4Q\xc4\xce\xc5K\xc5\xc8\xc6F\xc6\ +\xc3\xc7A\xc7\xbf\xc8=\xc8\xbc\xc9:\xc9\xb9\xca8\xca\ +\xb7\xcb6\xcb\xb6\xcc5\xcc\xb5\xcd5\xcd\xb5\xce6\xce\ +\xb6\xcf7\xcf\xb8\xd09\xd0\xba\xd1<\xd1\xbe\xd2?\xd2\ +\xc1\xd3D\xd3\xc6\xd4I\xd4\xcb\xd5N\xd5\xd1\xd6U\xd6\ +\xd8\xd7\x5c\xd7\xe0\xd8d\xd8\xe8\xd9l\xd9\xf1\xdav\xda\ +\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf\ +)\xdf\xaf\xe06\xe0\xbd\xe1D\xe1\xcc\xe2S\xe2\xdb\xe3\ +c\xe3\xeb\xe4s\xe4\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\ +\xa9\xe82\xe8\xbc\xe9F\xe9\xd0\xea[\xea\xe5\xebp\xeb\ +\xfb\xec\x86\xed\x11\xed\x9c\xee(\xee\xb4\xef@\xef\xcc\xf0\ +X\xf0\xe5\xf1r\xf1\xff\xf2\x8c\xf3\x19\xf3\xa7\xf44\xf4\ +\xc2\xf5P\xf5\xde\xf6m\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf9\ +8\xf9\xc7\xfaW\xfa\xe7\xfbw\xfc\x07\xfc\x98\xfd)\xfd\ +\xba\xfeK\xfe\xdc\xffm\xff\xff\ +\x00\x00\x04e\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / entity / \ + Editor only - S\ +aved\x0a \ + Created w\ +ith Sketch.\x0a \x0a \ +\x0a \x0a \x0a\x0a\ +\x00\x00\x07\x13\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22 standalone=\x22\ +no\x22?>\x0a\x0a \x0a <\ +title>lock on\x0a \ +Created with Ske\ +tch.\x0a \ +\x0a \ + \ +\x0a \x0a \x0a\x0a\ +\x00\x00\x05\x10\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / slice / s\ +tandard copy\x0a C\ +reated with Sket\ +ch.\x0a <\ +defs>\x0a \ + \ +\x0a \ +\x0a \x0a \ +\x0a \x0a \ + \x0a\x0a\ +\x00\x00\x04\x96\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / entity / \ +Not active - Upd\ +ated\x0a \ + Created w\ +ith Sketch.\x0a \x0a \ +\x0a \x0a \x0a\x0a\ +\x00\x00\x04\x92\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / entity / \ +Not active - Sav\ +ed\x0a <\ +desc>Created wit\ +h Sketch.\ +\x0a \x0a \x0a \ + \ +\x0a \x0a\ +\x0a\ +\x00\x00\x06\xcd\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a Group 13\x0a \ +Created with Ske\ +tch.\x0a \ +\x0a \x0a \ + \x0a \ + \x0a \ + \x0a \ + \x0a \ + \x0a \ + \x0a \ +\x0a\x0a\ +\x00\x00\x03~\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / entity / \ +Loop v2\x0a\ + Create\ +d with Sketch.\x0a \x0a \x0a \ + \x0a\x0a\ +\x00\x00_l\ +I\ +I*\x00\x08\x00\x00\x00\x17\x00\xfe\x00\x04\x00\x01\x00\x00\ +\x00\x00\x00\x00\x00\x00\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x01\x01\x03\x00\x01\x00\x00\x00`\x00\x00\x00\x02\x01\x03\ +\x00\x04\x00\x00\x00\x22\x01\x00\x00\x03\x01\x03\x00\x01\x00\x00\ +\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ +\x00\x11\x01\x04\x00\x01\x00\x00\x00DS\x00\x00\x12\x01\x03\ +\x00\x01\x00\x00\x00\x01\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\ +\x00\x04\x00\x00\x00\x16\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x17\x01\x04\x00\x01\x00\x00\x00\xfa\x0b\x00\x00\x1a\x01\x05\ +\x00\x01\x00\x00\x00*\x01\x00\x00\x1b\x01\x05\x00\x01\x00\x00\ +\x002\x01\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\ +\x00(\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\ +\x00$\x00\x00\x00:\x01\x00\x002\x01\x02\x00\x14\x00\x00\ +\x00^\x01\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ +\x00R\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00\xbc\x02\x01\ +\x00\xfa8\x00\x00r\x01\x00\x00I\x86\x01\x00\x90\x0c\x00\ +\x00l:\x00\x00i\x87\x04\x00\x01\x00\x00\x00@_\x00\ +\x00s\x87\x07\x00H\x0c\x00\x00\xfcF\x00\x00\x00\x00\x00\ +\x00\x08\x00\x08\x00\x08\x00\x08\x00\x00\xf9\x15\x00\x10'\x00\ +\x00\x00\xf9\x15\x00\x10'\x00\x00Adobe P\ +hotoshop CC 2015\ +.5 (Windows)\x00201\ +7:03:08 11:37:45\ +\x00\x0a\x0a \x0a \ +\x0a pain\ +t.net 4.0.9\x0a \ + 2017-03-0\ +7T11:32:29-08:00\ +\x0a 2017-\ +03-08T11:37:45-0\ +8:00\x0a <\ +xmp:MetadataDate\ +>2017-03-08T11:3\ +7:45-08:00\x0a \ + image/tiff\x0a \ + 3\x0a \ + sR\ +GB IEC61966-2.1<\ +/photoshop:ICCPr\ +ofile>\x0a \ +\x0a \ + \x0a \ + adobe\ +:docid:photoshop\ +:94a27cdb-0433-1\ +1e7-b02d-9f84d9f\ +5a326\x0a \ + \x0a <\ +/photoshop:Docum\ +entAncestors>\x0a \ + xmp.iid\ +:16fdf09c-857d-9\ +44e-9783-e127cb1\ +b9cf4\x0a \ + adobe:docid:\ +photoshop:9f9351\ +ac-0436-11e7-b02\ +d-9f84d9f5a326\x0a xmp.did:ca7\ +71a70-f965-e14f-\ +9103-360465543db\ +f\x0a \ + \x0a \ + \x0a \ + \x0a \ + <\ +stEvt:action>cre\ +ated\x0a \ + xmp.iid:\ +ca771a70-f965-e1\ +4f-9103-36046554\ +3dbf\x0a \ + 2017-03-07\ +T11:32:29-08:00<\ +/stEvt:when>\x0a \ + <\ +stEvt:softwareAg\ +ent>Adobe Photos\ +hop CC 2015.5 (W\ +indows)\x0a \ + \x0a \ + \x0a \ + saved\x0a \ + <\ +stEvt:instanceID\ +>xmp.iid:16fdf09\ +c-857d-944e-9783\ +-e127cb1b9cf4\ +\x0a \ + 2\ +017-03-08T11:37:\ +45-08:00\x0a \ + Ado\ +be Photoshop CC \ +2015.5 (Windows)\ +\x0a \ + /\x0a \ + \x0a <\ +/rdf:Seq>\x0a \ + \x0a \x0a \ +\x0a\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \x0a8BIM\x04\ +%\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x008BIM\x04:\x00\x00\x00\ +\x00\x00\xe5\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x0bprintOutput\x00\x00\x00\x05\ +\x00\x00\x00\x00PstSbool\x01\x00\x00\x00\ +\x00Inteenum\x00\x00\x00\x00Int\ +e\x00\x00\x00\x00Clrm\x00\x00\x00\x0fpri\ +ntSixteenBitbool\ +\x00\x00\x00\x00\x0bprinterName\ +TEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0fpr\ +intProofSetupObj\ +c\x00\x00\x00\x0c\x00P\x00r\x00o\x00o\x00f\x00\ + \x00S\x00e\x00t\x00u\x00p\x00\x00\x00\x00\x00\ +\x0aproofSetup\x00\x00\x00\x01\x00\ +\x00\x00\x00Bltnenum\x00\x00\x00\x0cb\ +uiltinProof\x00\x00\x00\x09p\ +roofCMYK\x008BIM\x04;\x00\ +\x00\x00\x00\x02-\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x12printOutputOp\ +tions\x00\x00\x00\x17\x00\x00\x00\x00Cpt\ +nbool\x00\x00\x00\x00\x00Clbrbo\ +ol\x00\x00\x00\x00\x00RgsMbool\x00\ +\x00\x00\x00\x00CrnCbool\x00\x00\x00\x00\ +\x00CntCbool\x00\x00\x00\x00\x00Lb\ +lsbool\x00\x00\x00\x00\x00Ngtvb\ +ool\x00\x00\x00\x00\x00EmlDbool\ +\x00\x00\x00\x00\x00Intrbool\x00\x00\x00\ +\x00\x00BckgObjc\x00\x00\x00\x01\x00\x00\ +\x00\x00\x00\x00RGBC\x00\x00\x00\x03\x00\x00\x00\x00\ +Rd doub@o\xe0\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00Grn doub@o\xe0\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00Bl doub\ +@o\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00BrdT\ +UntF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00Bld UntF#Rlt\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Rslt\ +UntF#Pxl@b\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x0avectorDatabo\ +ol\x01\x00\x00\x00\x00PgPsenum\x00\ +\x00\x00\x00PgPs\x00\x00\x00\x00PgPC\x00\ +\x00\x00\x00LeftUntF#Rlt\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Top U\ +ntF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00Scl UntF#Prc@\ +Y\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10cropW\ +henPrintingbool\x00\ +\x00\x00\x00\x0ecropRectBott\ +omlong\x00\x00\x00\x00\x00\x00\x00\x0ccr\ +opRectLeftlong\x00\x00\ +\x00\x00\x00\x00\x00\x0dcropRectRi\ +ghtlong\x00\x00\x00\x00\x00\x00\x00\x0bc\ +ropRectToplong\x00\x00\ +\x00\x00\x008BIM\x03\xed\x00\x00\x00\x00\x00\x10\x00\ +\x90\x00\x00\x00\x01\x00\x01\x00\x90\x00\x00\x00\x01\x00\x018\ +BIM\x04&\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00?\x80\x00\x008BIM\x03\xee\x00\ +\x00\x00\x00\x00\x0d\x0cTransparen\ +cy\x008BIM\x04\x15\x00\x00\x00\x00\x00\x1e\x00\ +\x00\x00\x0d\x00T\x00r\x00a\x00n\x00s\x00p\x00\ +a\x00r\x00e\x00n\x00c\x00y\x00\x008BI\ +M\x045\x00\x00\x00\x00\x00\x11\x00\x00\x00\x01\x00\x00\xff\ +\xff\x00\x00\x00\x00\x00\x00\x00d\x01\x008BIM\x04\ +\x1d\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008BIM\x04\ +\x0d\x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e8BIM\x04\ +\x19\x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e8BIM\x03\ +\xf3\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x01\ +\x008BIM'\x10\x00\x00\x00\x00\x00\x0a\x00\x01\x00\ +\x00\x00\x00\x00\x00\x00\x018BIM\x03\xf5\x00\x00\x00\ +\x00\x00H\x00/ff\x00\x01\x00lff\x00\x06\x00\ +\x00\x00\x00\x00\x01\x00/ff\x00\x01\x00\xa1\x99\x9a\x00\ +\x06\x00\x00\x00\x00\x00\x01\x002\x00\x00\x00\x01\x00Z\x00\ +\x00\x00\x06\x00\x00\x00\x00\x00\x01\x005\x00\x00\x00\x01\x00\ +-\x00\x00\x00\x06\x00\x00\x00\x00\x00\x018BIM\x03\ +\xf8\x00\x00\x00\x00\x00p\x00\x00\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\ +\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\ +\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\x03\xe8\x00\x008BIM\x04\x00\x00\x00\x00\ +\x00\x00\x02\x00\x008BIM\x04\x02\x00\x00\x00\x00\x00\ +\x02\x00\x008BIM\x040\x00\x00\x00\x00\x00\x01\x01\ +\x008BIM\x04-\x00\x00\x00\x00\x00\x06\x00\x01\x00\ +\x00\x00\x0a8BIM\x04\x08\x00\x00\x00\x00\x00\x10\x00\ +\x00\x00\x01\x00\x00\x02@\x00\x00\x02@\x00\x00\x00\x008\ +BIM\x04\x1e\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008\ +BIM\x04\x1a\x00\x00\x00\x00\x035\x00\x00\x00\x06\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\ +\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\ +\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00null\x00\x00\ +\x00\x02\x00\x00\x00\x06boundsObjc\ +\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Rct1\x00\x00\ +\x00\x04\x00\x00\x00\x00Top long\x00\x00\ +\x00\x00\x00\x00\x00\x00Leftlong\x00\x00\ +\x00\x00\x00\x00\x00\x00Btomlong\x00\x00\ +\x00`\x00\x00\x00\x00Rghtlong\x00\x00\ +\x00`\x00\x00\x00\x06slicesVlLs\ +\x00\x00\x00\x01Objc\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x05slice\x00\x00\x00\x12\x00\x00\x00\x07s\ +liceIDlong\x00\x00\x00\x00\x00\x00\ +\x00\x07groupIDlong\x00\x00\x00\ +\x00\x00\x00\x00\x06originenum\x00\ +\x00\x00\x0cESliceOrigin\x00\ +\x00\x00\x0dautoGenerated\ +\x00\x00\x00\x00Typeenum\x00\x00\x00\x0a\ +ESliceType\x00\x00\x00\x00Im\ +g \x00\x00\x00\x06boundsObjc\ +\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00Rct1\x00\x00\ +\x00\x04\x00\x00\x00\x00Top long\x00\x00\ +\x00\x00\x00\x00\x00\x00Leftlong\x00\x00\ +\x00\x00\x00\x00\x00\x00Btomlong\x00\x00\ +\x00`\x00\x00\x00\x00Rghtlong\x00\x00\ +\x00`\x00\x00\x00\x03urlTEXT\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00nullTEXT\x00\ +\x00\x00\x01\x00\x00\x00\x00\x00\x00MsgeTEX\ +T\x00\x00\x00\x01\x00\x00\x00\x00\x00\x06altTa\ +gTEXT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0ec\ +ellTextIsHTMLboo\ +l\x01\x00\x00\x00\x08cellTextTE\ +XT\x00\x00\x00\x01\x00\x00\x00\x00\x00\x09horz\ +Alignenum\x00\x00\x00\x0fESl\ +iceHorzAlign\x00\x00\x00\x07\ +default\x00\x00\x00\x09vertA\ +lignenum\x00\x00\x00\x0fESli\ +ceVertAlign\x00\x00\x00\x07d\ +efault\x00\x00\x00\x0bbgColo\ +rTypeenum\x00\x00\x00\x11ESl\ +iceBGColorType\x00\x00\ +\x00\x00None\x00\x00\x00\x09topOut\ +setlong\x00\x00\x00\x00\x00\x00\x00\x0al\ +eftOutsetlong\x00\x00\x00\ +\x00\x00\x00\x00\x0cbottomOutse\ +tlong\x00\x00\x00\x00\x00\x00\x00\x0brig\ +htOutsetlong\x00\x00\x00\x00\ +\x008BIM\x04(\x00\x00\x00\x00\x00\x0c\x00\x00\x00\ +\x02?\xf0\x00\x00\x00\x00\x00\x008BIM\x04\x14\x00\ +\x00\x00\x00\x00\x04\x00\x00\x00\x0c8BIM\x04\x0c\x00\ +\x00\x00\x00\x038\x00\x00\x00\x01\x00\x00\x000\x00\x00\x00\ +0\x00\x00\x00\x90\x00\x00\x1b\x00\x00\x00\x03\x1c\x00\x18\x00\ +\x01\xff\xd8\xff\xed\x00\x0cAdobe_CM\x00\ +\x01\xff\xee\x00\x0eAdobe\x00d\x80\x00\x00\x00\ +\x01\xff\xdb\x00\x84\x00\x0c\x08\x08\x08\x09\x08\x0c\x09\x09\x0c\ +\x11\x0b\x0a\x0b\x11\x15\x0f\x0c\x0c\x0f\x15\x18\x13\x13\x15\x13\ +\x13\x18\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x01\x0d\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\ +\x10\x14\x0e\x0e\x0e\x14\x14\x0e\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\ +\x0c\x0c\x11\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\xff\xc0\x00\x11\x08\x000\x000\ +\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xdd\x00\x04\x00\x03\ +\xff\xc4\x01?\x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\ +\x00\x00\x00\x00\x00\x03\x00\x01\x02\x04\x05\x06\x07\x08\x09\x0a\ +\x0b\x01\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\ +\x00\x00\x01\x00\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x10\x00\ +\x01\x04\x01\x03\x02\x04\x02\x05\x07\x06\x08\x05\x03\x0c3\x01\ +\x00\x02\x11\x03\x04!\x121\x05AQa\x13\x22q\x81\ +2\x06\x14\x91\xa1\xb1B#$\x15R\xc1b34r\ +\x82\xd1C\x07%\x92S\xf0\xe1\xf1cs5\x16\xa2\xb2\ +\x83&D\x93TdE\xc2\xa3t6\x17\xd2U\xe2e\ +\xf2\xb3\x84\xc3\xd3u\xe3\xf3F'\x94\xa4\x85\xb4\x95\xc4\ +\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5Vfv\x86\x96\xa6\xb6\ +\xc6\xd6\xe6\xf67GWgw\x87\x97\xa7\xb7\xc7\xd7\xe7\ +\xf7\x11\x00\x02\x02\x01\x02\x04\x04\x03\x04\x05\x06\x07\x07\x06\ +\x055\x01\x00\x02\x11\x03!1\x12\x04AQaq\x22\ +\x13\x052\x81\x91\x14\xa1\xb1B#\xc1R\xd1\xf03$\ +b\xe1r\x82\x92CS\x15cs4\xf1%\x06\x16\xa2\ +\xb2\x83\x07&5\xc2\xd2D\x93T\xa3\x17dEU6\ +te\xe2\xf2\xb3\x84\xc3\xd3u\xe3\xf3F\x94\xa4\x85\xb4\ +\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5Vfv\x86\x96\ +\xa6\xb6\xc6\xd6\xe6\xf6'7GWgw\x87\x97\xa7\xb7\ +\xc7\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00?\x00\xf5\ +T\x92P\xb5\xceensZ^\xe6\x82CG$\xa4\ +\xa5YuU\xff\x008\xf6\xb2x\xdc@N\xd7\xb1\xe3\ +s\x1c\x1c\xdf\x10d*X\xb8,\xb1\x9e\xbe[K\xee\ +\xb3S\xbb\xb0\xec6\xa6}#\x07&\xa7\xd2H\xaa\xe7\ +\x06=\x93\x22O\x05%:\x09$\x92J\x7f\xff\xd0\xf5\ +T\x1c\x9c\xaa\xf1\x9a\x0b\xe4\x97\x18kZ$\x94eK\ +\xaa{YM\xbd\xeb\xb0\x1f\x97\xfa\x84\x94\xb7\xdb\xefw\ +\xf3x\xaf>\x05\xda\x7f\x04+\x9b\xd4.s.}m\ +`\xa6\x5c\xd6\x93:\xf3:|\x15\xac\xf3x\xc6s\xa9\ +0F\xae#\x9d\xa3\xe9mK\x05\xd6Y\x88\xd7Zw\ +\x17L\x1e\xf1:nIL\xf1/7\xe3\xb2\xd2\x00.\ +\xe4\x0e$\x1d\xa8\xca\x97J\xd3\x1d\xf5\x9ekyj\xba\ +\x92\x9f\xff\xd1\xf5UW\xa8\xd6l\xc3\xb0\x01$A\x00\ +y\x1f\xfc\x8a\xb4\x92Jh7\xa95\xf5\x86\xb6\x8b-\ +1\x0e\x86\xe8t\xd7\xc5&_\x9b\xb42\x8cA[\x06\ +\x808\xc0\x1f/b\xbe\x92Jj`\xe3\xddQ\xb5\xf7\ +@u\xae\xdd\xb5\xbc\x05m$\x92S\xff\xd98BI\ +M\x04!\x00\x00\x00\x00\x00a\x00\x00\x00\x01\x01\x00\x00\ +\x00\x0f\x00A\x00d\x00o\x00b\x00e\x00 \x00P\ +\x00h\x00o\x00t\x00o\x00s\x00h\x00o\x00p\ +\x00\x00\x00\x19\x00A\x00d\x00o\x00b\x00e\x00 \ +\x00P\x00h\x00o\x00t\x00o\x00s\x00h\x00o\ +\x00p\x00 \x00C\x00C\x00 \x002\x000\x001\ +\x005\x00.\x005\x00\x00\x00\x01\x00\x00\x00\x0cHL\ +ino\x02\x10\x00\x00mntrRGB X\ +YZ \x07\xce\x00\x02\x00\x09\x00\x06\x001\x00\x00a\ +cspMSFT\x00\x00\x00\x00IEC s\ +RGB\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xf6\xd6\x00\x01\x00\x00\x00\x00\xd3-HP \x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11c\ +prt\x00\x00\x01P\x00\x00\x003desc\x00\ +\x00\x01\x84\x00\x00\x00lwtpt\x00\x00\x01\xf0\x00\ +\x00\x00\x14bkpt\x00\x00\x02\x04\x00\x00\x00\x14r\ +XYZ\x00\x00\x02\x18\x00\x00\x00\x14gXYZ\x00\ +\x00\x02,\x00\x00\x00\x14bXYZ\x00\x00\x02@\x00\ +\x00\x00\x14dmnd\x00\x00\x02T\x00\x00\x00pd\ +mdd\x00\x00\x02\xc4\x00\x00\x00\x88vued\x00\ +\x00\x03L\x00\x00\x00\x86view\x00\x00\x03\xd4\x00\ +\x00\x00$lumi\x00\x00\x03\xf8\x00\x00\x00\x14m\ +eas\x00\x00\x04\x0c\x00\x00\x00$tech\x00\ +\x00\x040\x00\x00\x00\x0crTRC\x00\x00\x04<\x00\ +\x00\x08\x0cgTRC\x00\x00\x04<\x00\x00\x08\x0cb\ +TRC\x00\x00\x04<\x00\x00\x08\x0ctext\x00\ +\x00\x00\x00Copyright (c)\ + 1998 Hewlett-Pa\ +ckard Company\x00\x00d\ +esc\x00\x00\x00\x00\x00\x00\x00\x12sRGB \ +IEC61966-2.1\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x12sRGB IEC\ +61966-2.1\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ \x00\ +\x00\x00\x00\x00\x00\xf3Q\x00\x01\x00\x00\x00\x01\x16\xccX\ +YZ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00XYZ \x00\x00\x00\x00\x00\x00o\xa2\x00\ +\x008\xf5\x00\x00\x03\x90XYZ \x00\x00\x00\x00\x00\ +\x00b\x99\x00\x00\xb7\x85\x00\x00\x18\xdaXYZ \x00\ +\x00\x00\x00\x00\x00$\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcfd\ +esc\x00\x00\x00\x00\x00\x00\x00\x16IEC h\ +ttp://www.iec.ch\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16IEC \ +http://www.iec.c\ +h\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00d\ +esc\x00\x00\x00\x00\x00\x00\x00.IEC 6\ +1966-2.1 Default\ + RGB colour spac\ +e - sRGB\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00.IEC 61966-2.\ +1 Default RGB co\ +lour space - sRG\ +B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00desc\x00\x00\x00\x00\x00\ +\x00\x00,Reference Vie\ +wing Condition i\ +n IEC61966-2.1\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00,Refere\ +nce Viewing Cond\ +ition in IEC6196\ +6-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00v\ +iew\x00\x00\x00\x00\x00\x13\xa4\xfe\x00\x14_.\x00\ +\x10\xcf\x14\x00\x03\xed\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\ +\x00\x00\x01XYZ \x00\x00\x00\x00\x00L\x09V\x00\ +P\x00\x00\x00W\x1f\xe7meas\x00\x00\x00\x00\x00\ +\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x8f\x00\x00\x00\x02sig \x00\ +\x00\x00\x00CRT curv\x00\x00\x00\x00\x00\ +\x00\x04\x00\x00\x00\x00\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\ +\x1e\x00#\x00(\x00-\x002\x007\x00;\x00@\x00\ +E\x00J\x00O\x00T\x00Y\x00^\x00c\x00h\x00\ +m\x00r\x00w\x00|\x00\x81\x00\x86\x00\x8b\x00\x90\x00\ +\x95\x00\x9a\x00\x9f\x00\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\ +\xbc\x00\xc1\x00\xc6\x00\xcb\x00\xd0\x00\xd5\x00\xdb\x00\xe0\x00\ +\xe5\x00\xeb\x00\xf0\x00\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\ +\x13\x01\x19\x01\x1f\x01%\x01+\x012\x018\x01>\x01\ +E\x01L\x01R\x01Y\x01`\x01g\x01n\x01u\x01\ +|\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\ +\xb9\x01\xc1\x01\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\ +\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02&\x02/\x028\x02\ +A\x02K\x02T\x02]\x02g\x02q\x02z\x02\x84\x02\ +\x8e\x02\x98\x02\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\ +\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\x16\x03!\x03-\x03\ +8\x03C\x03O\x03Z\x03f\x03r\x03~\x03\x8a\x03\ +\x96\x03\xa2\x03\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\ +\xf9\x04\x06\x04\x13\x04 \x04-\x04;\x04H\x04U\x04\ +c\x04q\x04~\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\ +\xd3\x04\xe1\x04\xf0\x04\xfe\x05\x0d\x05\x1c\x05+\x05:\x05\ +I\x05X\x05g\x05w\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\ +\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\x16\x06'\x067\x06\ +H\x06Y\x06j\x06{\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\ +\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07+\x07=\x07O\x07\ +a\x07t\x07\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\ +\xf8\x08\x0b\x08\x1f\x082\x08F\x08Z\x08n\x08\x82\x08\ +\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09%\x09\ +:\x09O\x09d\x09y\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\ +\xe5\x09\xfb\x0a\x11\x0a'\x0a=\x0aT\x0aj\x0a\x81\x0a\ +\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b9\x0b\ +Q\x0bi\x0b\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\ +\x12\x0c*\x0cC\x0c\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\xc0\x0c\ +\xd9\x0c\xf3\x0d\x0d\x0d&\x0d@\x0dZ\x0dt\x0d\x8e\x0d\ +\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e.\x0eI\x0ed\x0e\ +\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f%\x0fA\x0f\ +^\x0fz\x0f\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10&\x10\ +C\x10a\x10~\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x11\ +1\x11O\x11m\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12\ +&\x12E\x12d\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13\ +#\x13C\x13c\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14\ +'\x14I\x14j\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x15\ +4\x15V\x15x\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16&\x16\ +I\x16l\x16\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17A\x17\ +e\x17\x89\x17\xae\x17\xd2\x17\xf7\x18\x1b\x18@\x18e\x18\ +\x8a\x18\xaf\x18\xd5\x18\xfa\x19 \x19E\x19k\x19\x91\x19\ +\xb7\x19\xdd\x1a\x04\x1a*\x1aQ\x1aw\x1a\x9e\x1a\xc5\x1a\ +\xec\x1b\x14\x1b;\x1bc\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c\ +*\x1cR\x1c{\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1dG\x1d\ +p\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e@\x1ej\x1e\x94\x1e\ +\xbe\x1e\xe9\x1f\x13\x1f>\x1fi\x1f\x94\x1f\xbf\x1f\xea \ +\x15 A l \x98 \xc4 \xf0!\x1c!H!\ +u!\xa1!\xce!\xfb\x22'\x22U\x22\x82\x22\xaf\x22\ +\xdd#\x0a#8#f#\x94#\xc2#\xf0$\x1f$\ +M$|$\xab$\xda%\x09%8%h%\x97%\ +\xc7%\xf7&'&W&\x87&\xb7&\xe8'\x18'\ +I'z'\xab'\xdc(\x0d(?(q(\xa2(\ +\xd4)\x06)8)k)\x9d)\xd0*\x02*5*\ +h*\x9b*\xcf+\x02+6+i+\x9d+\xd1,\ +\x05,9,n,\xa2,\xd7-\x0c-A-v-\ +\xab-\xe1.\x16.L.\x82.\xb7.\xee/$/\ +Z/\x91/\xc7/\xfe050l0\xa40\xdb1\ +\x121J1\x821\xba1\xf22*2c2\x9b2\ +\xd43\x0d3F3\x7f3\xb83\xf14+4e4\ +\x9e4\xd85\x135M5\x875\xc25\xfd676\ +r6\xae6\xe97$7`7\x9c7\xd78\x148\ +P8\x8c8\xc89\x059B9\x7f9\xbc9\xf9:\ +6:t:\xb2:\xef;-;k;\xaa;\xe8<\ +'\ + >`>\xa0>\xe0?!?a?\xa2?\xe2@\ +#@d@\xa6@\xe7A)AjA\xacA\xeeB\ +0BrB\xb5B\xf7C:C}C\xc0D\x03D\ +GD\x8aD\xceE\x12EUE\x9aE\xdeF\x22F\ +gF\xabF\xf0G5G{G\xc0H\x05HKH\ +\x91H\xd7I\x1dIcI\xa9I\xf0J7J}J\ +\xc4K\x0cKSK\x9aK\xe2L*LrL\xbaM\ +\x02MJM\x93M\xdcN%NnN\xb7O\x00O\ +IO\x93O\xddP'PqP\xbbQ\x06QPQ\ +\x9bQ\xe6R1R|R\xc7S\x13S_S\xaaS\ +\xf6TBT\x8fT\xdbU(UuU\xc2V\x0fV\ +\x5cV\xa9V\xf7WDW\x92W\xe0X/X}X\ +\xcbY\x1aYiY\xb8Z\x07ZVZ\xa6Z\xf5[\ +E[\x95[\xe5\x5c5\x5c\x86\x5c\xd6]']x]\ +\xc9^\x1a^l^\xbd_\x0f_a_\xb3`\x05`\ +W`\xaa`\xfcaOa\xa2a\xf5bIb\x9cb\ +\xf0cCc\x97c\xebd@d\x94d\xe9e=e\ +\x92e\xe7f=f\x92f\xe8g=g\x93g\xe9h\ +?h\x96h\xeciCi\x9ai\xf1jHj\x9fj\ +\xf7kOk\xa7k\xfflWl\xafm\x08m`m\ +\xb9n\x12nkn\xc4o\x1eoxo\xd1p+p\ +\x86p\xe0q:q\x95q\xf0rKr\xa6s\x01s\ +]s\xb8t\x14tpt\xccu(u\x85u\xe1v\ +>v\x9bv\xf8wVw\xb3x\x11xnx\xccy\ +*y\x89y\xe7zFz\xa5{\x04{c{\xc2|\ +!|\x81|\xe1}A}\xa1~\x01~b~\xc2\x7f\ +#\x7f\x84\x7f\xe5\x80G\x80\xa8\x81\x0a\x81k\x81\xcd\x82\ +0\x82\x92\x82\xf4\x83W\x83\xba\x84\x1d\x84\x80\x84\xe3\x85\ +G\x85\xab\x86\x0e\x86r\x86\xd7\x87;\x87\x9f\x88\x04\x88\ +i\x88\xce\x893\x89\x99\x89\xfe\x8ad\x8a\xca\x8b0\x8b\ +\x96\x8b\xfc\x8cc\x8c\xca\x8d1\x8d\x98\x8d\xff\x8ef\x8e\ +\xce\x8f6\x8f\x9e\x90\x06\x90n\x90\xd6\x91?\x91\xa8\x92\ +\x11\x92z\x92\xe3\x93M\x93\xb6\x94 \x94\x8a\x94\xf4\x95\ +_\x95\xc9\x964\x96\x9f\x97\x0a\x97u\x97\xe0\x98L\x98\ +\xb8\x99$\x99\x90\x99\xfc\x9ah\x9a\xd5\x9bB\x9b\xaf\x9c\ +\x1c\x9c\x89\x9c\xf7\x9dd\x9d\xd2\x9e@\x9e\xae\x9f\x1d\x9f\ +\x8b\x9f\xfa\xa0i\xa0\xd8\xa1G\xa1\xb6\xa2&\xa2\x96\xa3\ +\x06\xa3v\xa3\xe6\xa4V\xa4\xc7\xa58\xa5\xa9\xa6\x1a\xa6\ +\x8b\xa6\xfd\xa7n\xa7\xe0\xa8R\xa8\xc4\xa97\xa9\xa9\xaa\ +\x1c\xaa\x8f\xab\x02\xabu\xab\xe9\xac\x5c\xac\xd0\xadD\xad\ +\xb8\xae-\xae\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0u\xb0\xea\xb1\ +`\xb1\xd6\xb2K\xb2\xc2\xb38\xb3\xae\xb4%\xb4\x9c\xb5\ +\x13\xb5\x8a\xb6\x01\xb6y\xb6\xf0\xb7h\xb7\xe0\xb8Y\xb8\ +\xd1\xb9J\xb9\xc2\xba;\xba\xb5\xbb.\xbb\xa7\xbc!\xbc\ +\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\x84\xbe\xff\xbfz\xbf\xf5\xc0\ +p\xc0\xec\xc1g\xc1\xe3\xc2_\xc2\xdb\xc3X\xc3\xd4\xc4\ +Q\xc4\xce\xc5K\xc5\xc8\xc6F\xc6\xc3\xc7A\xc7\xbf\xc8\ +=\xc8\xbc\xc9:\xc9\xb9\xca8\xca\xb7\xcb6\xcb\xb6\xcc\ +5\xcc\xb5\xcd5\xcd\xb5\xce6\xce\xb6\xcf7\xcf\xb8\xd0\ +9\xd0\xba\xd1<\xd1\xbe\xd2?\xd2\xc1\xd3D\xd3\xc6\xd4\ +I\xd4\xcb\xd5N\xd5\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\xe0\xd8\ +d\xd8\xe8\xd9l\xd9\xf1\xdav\xda\xfb\xdb\x80\xdc\x05\xdc\ +\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf)\xdf\xaf\xe06\xe0\ +\xbd\xe1D\xe1\xcc\xe2S\xe2\xdb\xe3c\xe3\xeb\xe4s\xe4\ +\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe82\xe8\xbc\xe9\ +F\xe9\xd0\xea[\xea\xe5\xebp\xeb\xfb\xec\x86\xed\x11\xed\ +\x9c\xee(\xee\xb4\xef@\xef\xcc\xf0X\xf0\xe5\xf1r\xf1\ +\xff\xf2\x8c\xf3\x19\xf3\xa7\xf44\xf4\xc2\xf5P\xf5\xde\xf6\ +m\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf98\xf9\xc7\xfaW\xfa\ +\xe7\xfbw\xfc\x07\xfc\x98\xfd)\xfd\xba\xfeK\xfe\xdc\xff\ +m\xff\xff\x80\x00 P8$\x16\x0d\x07\x84BaP\ +\xb8d6\x1d\x0f\x88DbQ8\xa4V-\x17\x8cF\ +cQ\xb8\xe4v=\x1f\x90HdR9$\x96M'\ +\x94JeR\xb9d\xb6]/\x98LfS9\xa4\xd6\ +m7\x9cNgS\xb9\xe4\xf6}?\xa0PhT:\ +%\x16\x8dG\xa4RiT\xbae6\x9dO\xa8Tj\ +U:\xa5V\xadW\xacVkU\xba\xe5v\xbd_\xb0\ +XlV;%\x96\x0a\x01\xb4\x00Cv\xb1\x15\xb4D\ ++\x0c\xdcC\xe0\xeb\xa0F\xd2\x01y\xde^\x0e;\xe3\ +q\xc5\x7fm_\xdcM\xbb6\x17\x0d\x1b\x0a\xe2CD\ +\x5caX\x8f\x8f,\x88rB\xa0VT\x19\x14|\xe6\ +^\xedl\xe31\x85\x9fY.tJ\x87V\x95\xc9\x87\ +\xd4a\xc4\xda\xb1\x81g\x5co\x1elIa\x1d\xa0V\ +X\xf0\xdc;\x17\xdb\xb5r\xc7|\x9dj\xf0YZ\x9e\ +%d\xbd\xc7:\x99yG\xf0O4\x17<}t_\ +\x08\x9e\xa1\xb3|\xb1N\xf1{T\x9b\xa08$f\xf0\ +\x1f\xcb\x1e3u1_\xe7M\xa5\xfdG\xd7w\xb5\xd3\ +\xdb\xf8NA\x7f0rS\xec\xb9\x16\xfeG\x15FO\ +\xf5v6\xc0\x02A\xfd\x01\x9f\xcf\x8c\x0c\x98\x8e\xf0I\ +**\xc1\x83R0m\xc2\x06\x938k\x19fl,\ +`\x9dp\xc9\xca\xe8\x9fG\xcb\xe6\x05\x81\xabX6\x11\ +\x06q(\x80\x11\xc5\x01`A\x15\x85\x0b\xba0V\xc6\ +\x04\xc1\x15\x19\x8d\xa7\xecl~@\xf1\xcaJ-\xc7\x83\ +\x90\xe3\x1f\x91\xa8\xa3\x82j\x99D\xb4\x8c>\x19rI\ +{\x02@\xa8\xb8\x09'\x80\xa1\x94\xa4\x1f\x0cr\xa8\xf9\ +\x12\x86b\x020O\xcb\x849+/\x8fQ\xd4\xc4\x8e\ +\x84\x93(ZPM\x06@\x115\x81H\x81m7\x94\ +\x84,\xe433'\xc9\xee\x94\x00S\xc8\x04-O\x83\ +\x88\xdd?\x913\xd0\x06\x88\x1eT)\xde*Q\x01C\ +\xdaw\x1dS\x1d\x1c\x8a\x92T\x89l\x1dR\x82J \ +]S\x05H\xffM\x8b\xc7\xdd<}&\x81\xb5D!\ +\x90u)H\x09\xd5\x00\xc2 ZU\x85\x09\x01W\x8c\ +\x14}d\x86\x82\xd5\xa87\x18\x15\xa6\xcb\x9a\x04\xb9\xe8\ +[Ju\x1c\x8dp\xb2\x18\x1e6)\xda\x9e\x05\xd6H\ +tMY\x86\x04\x9e\x02\x00\xa8e<}\x9fB\xbd\xac\ +\x160L%gm\xa0\x83E\xbcA\x0c\x97\x08\xfa\x88\ +\x10\xd7(\xd0W]\x04\xca\x889]\x84|\xf8-\x0e\ +\x08\x84\xd0P\x11\x0f\xb1(<\xdb\x95\x9b\xba\x09W\x06\ +\xc3h\x08\xb6\xc8]\x16u\x0a\x18(H{a\x07\x9a\ +\x88\x03a\x80AO\x87\x9a\x00\xfe$\x13\xa1\x876,\ +p\x0a\xd8\xc8V|c\x87\xb5\xf31c\x81\xbbH \x86\x19\xfbi\x863\xee\ +\x02\x04\x98\xa8\x14[\xa9\x96\x15o\x01\xa2\x19R\x90c\ +#\xae\xec\xec.\xd2\xef\xa2\x03[\xc0T\x1a\xdd\xe3\x84\ +\xa4\x19\x07\xe8$\xfe7\x09F7$[\xaa\x84o,\ +X\x07\xfc\xc8\x9e\x86\x11|\xe8\xdcT\xf4\x04\x9f\x03|\ +\xd4A\xb0\x87\xd2\x88\x96a4@C\x87\xca\xa9H\x92\ +T\x9d+\xces\xdd\x01S\xd1t}\xca\xb0\x03\xf7\x80\ +N\x1eS\x9a \xf7\x84\x12\xa1\x84\x17\x8c1\x96^I\ +=\xddy\x8a\xab\xf2\x16\x87\x04\xf7\xa4cE\xc8X\xeb\ +\xeb\x8aE\xff\xb4W\xf9\xbe\xea\xa2>|\x04\xde\x0a(\ +\x0c\x99\xa4\x06~\xb8\xe2\xf0ll}\x86w\xbd\xf7\xa9\ ++pTR~\x86v\x18\x03\x00\xe8a\xbd\xfd\x9a\xd1\ +\xe0\xb6\x0cV\x9a\xa0~\x10\x0du\xae\xc1\x1c\xbb\xc3\x89\ +\x10uB\x05\xd5\x08\x08\x09\x03\xca\x0b\xf7\x00\xedTV\ +\x0d\x805\x05\xc1\x01\x0cC#\xacs\x05\xd8<\x0d\x07\ +d!\x1c\xf0B\x12\x13\xd0k\x09\xc2\x12F\x12\xc2\xf1\ +\xea\x90\xa2\xf2<\xc7\x80\xe1\x86Ce=\x00!\xd1\x0d\ +\xc7\x18\xc1\x87B\xc4Z\xc3\xd1E\x09b\x01\x152\xa0\ +(\x06/\xf0,\x88\x81\x08\x1c\x89@\x90\x0cD\xd0:\ +\xaa\x00\x98\x18\x061L\x1f< <\xf1\x09\x18\xc8\x8b\ +B\xe8FE\xd0\xde8#\x00\xd8\x88.\xea!\x80\xd5\ +k\x11\xe0\xb8\x1a\x04\x11X\x13\x19 B\x0a@\xecq\ +\x04\x91(\x0e\x028\x8c\xae\xd5\xe9:B\x03li\x06\ +\x18\xfc\x0eX\xe0\xf8c\xd1\x8c\xad\xc3Uv\xcf\x99\xf8\ +\x17\x91@u\xa9\x01 -#@\xb4P\x03\x12(\x0b\ +\x81\xd6$\x07\xc1<\x94\x03\xa0RN\x01\x98$V\x1e\ +\xb8u{/nB\x14u\x9e\x01\x5c04\x8e\x80\x91\ +\x14\x020W%\xc1:\x22\x04@>Z\x01$\xd6\x02\ +\x00[XQ\xc2\xce^\x0a\x01\x03/\xc3\x0c\xa5'\xcd\ +\xa4\x06\x81\x04\x18\x15CXD\x99AT\xd5\x82`^\ +\x8eG\xe4\xd1\x1fr\x04{\x1b\x81\xe0;\x1a\xc2\xfb!\ +\x83:n\x0c#\xc0\x19\x9cl\xc2'\x11\xc4\x0e\x82G\ +,#E\x81n\x05e\x81\x1b\x0f\xd1\xf8\xc0\xe1\xb8\xe8\ +\x1cQ\x80p\x0d\x83\x046\xa1\x90\xe1\x1b0ls\x0f\ +I\xfc\x1b\xf0\xb8\x1a\ +\xe2hK\x00\x80\x130\xc4\xe2\x02\x1e\xebn\xb3\x09\x02\ +2\x13\xb0\xd4\x18\x80_\x0d\xa0v!\x87\xd8\x1b\x01\x9c\ +\xe3\xa0h\xe0%\x1c\xb9\xcb\x98\xfe\x82\x16<\xe1^\x13\ +d\xe4\x10\xa0\xcd\x0d\x021\x01\xa0\xfa\x13\x80\x9f\x10\xed\ +v!l\x06\xd8\xcb<[e\xfa\x96\x02\x18\xc8\x81\x94\ +\x17\x8c\x82\x0dP\x01\x10B-\x06.A\x06\x8f\xd2i\ +/D\x06l\xc2\x1b,\xc6;h$\xe5@ \x02\xa8\ +\x90\x0f1T\x12\xe9\xd4!\x91B\x19\xeb\xc5\x13\x02,\ +\xe8\xce\x90\xb2.\x94!\xea\xc8\x0a\x86P\x15\xa2\xa0\x86\ +\xa9\x10\x02\x0c\x92\x9b\x22\xe8\x02Np\x8d\x8f\x10\xb9\xc7\ +\x08C\xe0\x1cHC\x84\xfdj=\x16B(\x8d\xc0R\ +\xfe!\xa4\x00q\xac\x00\x82\x18\x85@\xf6zA<\xbb\ +\xc2nPH\xa0\x92\x89*\xb5\xa9\xd4\xb5\xaf\x10\x93\x80\ +(\x03$>\x01\xa7x\x00\xe0\x12&\x01G\x1e!\x18\ +\x121\xe8\xa7\x91\xa0\x22oh\xe5\xa1\xb2\xc9\x82\x18v\ +\xc1&\xca\xe3\xca#e\x04\x96\xe0\x14\xc9\x22\xe2\x03 \ +>\x8d\x89.\x8d\xa3&\xb9\xc94\xc9\x22\x90\xa0\x8b\xc4\ +b\xc1\xcc\x1b\xf1\xee\x22b\xef\x1b\x81\x8cy\xe3\xf6!\ +aq#\xe1L|\x00\xf8\x0bb\x08\xc9\x91\xd1!\x06\ +$\x04\xcf\x10\xe7\x09e\x19F\xb1\x17\xed^+\x8a\xb8\ +\xcb\xec\xee\x1aa\x91\x22\xe24\x10\x92t\x14\xa0\x91'\ +\xa0\xb4!\x8d\x91&\xa1\x8e\x8d\x92\x0e\x03\xe9\x88\x02.\ +\x148\xb0\xae\x1e\xa1\xe4B\xc1\x9a\x18\x011* \xfe\ +g!\xb4grp#\x80\xc1+ \xf0\xf0\xa0\xd8\x10\ +\xe4r\xae\xe9\xe0\x86\xe3\x04\x1cC\x02/\xe1\xb6\xa9\x81\ +\xda\xb3\xcc\x06\xc7J\x9e\x1cr\xae$\x8f\x92\xf9o\x9a\ ++\x8aA-j\xfc\xa4\xe2\xf8\x1bj\x5c\xa5a\xac\xd9\ +\x0af\xd3r\xde'\xf1\xda\x01!\x1f0\xa1du\x02\ +p\xe0,\x07-\xa5~\x1c\xb2\xd0\xb3\xc86\x1c\xa9\xf2\ +\x1b*P\x1b\x8f\x8a\xab\xa6\x130\x22\xb5\x19Mr\x14\ +G2\x07\xe76#j\xee\xc0k\xd6\x1b\xed\xa6\xa5a\ +\xaa\xa5\xd3J\x9e!\xc2\xb1S4[\x88j\xf8\x00{\ +6`\x9a\x96\x80\x1e\x02N2\x1f\x8a&\x86(d\x1b\ +S+\x0b\x81\xbe\x1a\xcd\xa71\xb0\x095\xf3\x8d8\xf3\ +\x9193\x959s\x999\xb3\x9d9\xf3\xa1:3\xa5\ +:s\xa9:\xb3\xad:\xf3\xb1;3\xb5;s\xb9;\ +\xb3\xbd;\xf3\xc1<3\xc5\x0a\x0a \x0a icon / outl\ +iner / entity / \ +Default\x0a\ + Create\ +d with Sketch.\x0a \ +\x0a \x0a <\ +path d=\x22M13.6916\ +3,3.24686842 L8.\ +01783965,6.52512\ +131 L2.34404932,\ +3.24686842 L8,0.\ +481790242 L13.69\ +163,3.24686842 Z\ + M7.25035308,7.8\ +2264135 L7.25035\ +308,14.7689324 L\ +1.9912897,11.723\ +6967 L1.9912897,\ +4.79310939 L7.25\ +035308,7.8226413\ +5 Z M14.0326515,\ +11.6884321 L8.74\ +360561,14.776916\ +3 L8.74360561,7.\ +8257203 L14.0024\ +918,4.79949203 L\ +14.0326515,11.68\ +84321 Z\x22 id=\x22Sha\ +pe\x22 fill=\x22#FFFFF\ +F\x22 fill-rule=\x22no\ +nzero\x22>\x0a \ + \x0a\x0a\ +\x00\x00\x03~\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / entity / \ +Loop v2\x0a\ + Create\ +d with Sketch.\x0a \x0a \x0a \ + \x0a\x0a\ +\x00\x00\x19\xf8\ +\x00\ +\x00\xe0\x1cx\x9c\xed\x9c\x09\x5c\x14\xd5\x1f\xc0\xdf\xec\xc5\ +\xb5\xdc\x87\x17\xea\x8a\x1c^\xdc7\xca\xb9\xa0\xa0\x22\x08\ +xf\xc9\xb2;\xc0\xea\xb2\xbb\xee\x01hVj\xa6\xa5\ +\x96Gf^e\x1e\x99GiY\x1e\x99\x1d\x9af\x87\ +\x7f\xcb\xdb\xb2\x03\xf3oj\x99Q\xa6V\x9a\xfc\x7f\xbf\ +Y\x16\x06\x04E\x19\xc0\xfe\xcd\x97\x0f\xb3o\xde\xf5\xfb\ +\xbd\xdf\xbcy\xd7\xcc\x9b\xccL\xd2\x8b\x10bK\xbc\xc8\ +M\x22\x02\x17E,\x07!\xf3\x93\x0f\x07\x8a\xe5\x160\ +n\x88GyQ\xc2j\x7f\x88LI\xaa\xdd\x028\xb8\ +Z\xf3\xc9\xaa\xa4\xdcXq<\xab\xddLjV\x9e\xed\ +\xac\xf1\xe7\x11\xaa#\x11[\xdcT\x17\xaaS\x8d\xdb\x9f\ +\xf2f\xe5\xd3\x83%+\x14\x8f\xc4\x07\x5cAT\x18\xe3\ +\xf6\x00w6\x95S\x1b_\xb0\x0b\x8fQ\x9d\xe0T5\ +#\x03\xdd\xd2\x1e\x84DO\x99\xa9\xb6\xca\xfd\xaer\xa6\ +\x91\xd8\x80\x7f:!\xf2uX~\xb0\x87\xe5\xcf\xfe\xc6\ +\x14B\x02\x5c\xac\xbf\xc9*]\x01-\xcb.\xd6\x99t\ +\xc6b\x9d^&\x97\xcb\xc2BB\xa3e=F\xa8\xb5\ +*]\x99\xb1'\xc1\xd3\xb8\x90\xb0\xb8\x90pYhd\ +\x5cX88H\xbf\xc4r\xbdB9\x9e6\xc9\x0a\xe8\ +\x22\xb56\xde\xe7\x97w\xde\xf7\x91\xa9U\xf1>#\x22\ +3C2\xf5r\xbaX\x9d>\xc9@\xe7N\x1a\x92\xa7\ +\x9c4^\x19\xab\xf2IL\xb0\xefW\x1eW^\xa2/\ +\xa1M\x0aYy\x89Fk\x8c+\x8f\xf7Q\xa0\xfc8\ +p\xa3w\xb0\x8f\x8c\x89b\x1a\x1f\xefcQldf\ +\xb6L\xae3\xd0\xb2\xc8\xa0\xa8@ehx\x8c,:\ +6(426&,\xa2\x0f*\x1a\x15\x1c\x12\x1b\x1c\ +\x1a\x11\x18\x12\x1a\x17\x12\x1b\x17\x12*\xab\xc6'\xc1\x1e\ +\x8e\xfd\x0c\xaa\xc2\xb8\x9c\xd4\xfe\xd5\xe2\xe0,\xde\xa7\xd8\ +d\xd2\xc7\x05\x07\x97\x95\x95\x05\x95\x85\x07\xe9\x0cE\xc1\ +\xa1\xb1\xb1\xb1\xc1!a\xc1aa\x81\x10#\xd08Q\ +kR\x94\x07j\x8d\xdd-\x99X\xf3I\xa5\x8dJ\x83\ +ZoR\xeb\xb4284($\xb8\xa1D*eM\x1a\ +\xbd\xd9\xa0aTS)\x83i\x0d]BkMFH\ +\x17\xda`:\xbd\xf5\xda5,\xb2&\xb8Q\xc1\xa0m\ +f\xe6\xed\xf5-)i0\xa5\xd1\x94Vj\xba}J\ +c\xdeD=\x1d\x9cC\x1buf\x83\x92N+\x85\xa2\ +\xd4\xda\x15M\x0b\xd2\xe3\xe4\x06Za\xa2S\xe1?\x01\ +k[`HX`Hx\x1e\xd4\xb6\x90\xa8\xb8\xb0\xc8\ +\xc0\x90\x98\xb8\x90\x90~\xc1\xf5b\xd6\xcb#S\xa7R\ +\x17Nl \x0f\xa6\xc6\xb2\xf3`\xc5\xac\x9f\x07\xd4A\ +\x95\xc2\xa4hR.\xec\xb8\xac|T\xca\xb8B\x9d\xa1\ +DaJP\x97(\x8a\xe8`\x93\xba\xb0\xb0_p\xad\ +/+j\xcd\xa5\x89\x93\xeb4:\x03\xe8E'\x84\xf7\ +\x0bn\xc8\xbb\xc1T\x19ry\xb6AW\xa8\xd6\xd0\x09\ +\xc6\x9c\x01)\xb2\x8c4yThlTT`XP\ +(;\x1bV\xbc\xba\x05\xce\xcc\x8c\xcb\xd0\x1aM\x0a\xad\ +\x92\xceHM\x00\x8f \xb5Z\x15WX\x18AG\x85\ +\xc7D\x05\xd2\x85\xe1t`(\x1dA\x07\x16D+c\ +\x02\xa3\x14\x11\x91ttxAX\xb4R\xc5\xd8\xa0n\ +\xf2[\xb2N\xd5)\xcdXu\xab\xb3V\xdde\xd6\xac\ +\xe4\xb7d\x9dePC\xb3\xa3\xd04SD\x03\xd9\xdc\ +\x22*]m4\xe9\x0c\x13\x13\xeaT\x7f\xa6A\xc8\xa5\ +'\xd4\xf5\xb5\x06h\xd4L\x03\xa1W\x18\x8c4V\xff\ +x\x1fk\xfd\xf7\xb9%\x01\xa6an\xa38\x85\x12\x9b\ +\x96\x04%S\xc3A\xc5:\xbe\x8d'S\xdf\xeb\x05\xbc\ +%y\xe32\xca\x8ai\xed\xed\xeeLV\xac\xc631\ +\xea\x0aMe\x0a\x03\x9d\x5c\x04\x96N\xb8c\xbfc\xcd\ +\xb5n\xb2[\xec\x1dl1x\xbd\xcb\x13|\xeb\xf5\xb1\ +^\xf3z\xd7\xd3\x12\x95\xd5\xb6[:\x8e\xe0\xea\x9e\x03\ +:\xad\xe0\x9a^\xab\xa1\xc2q\x0f/\x84\x17\xc2\x0b\xe1\ +\x85\xf0Bx!\xbc\x10^\x08/\x84\x17\xc2\x0b\xe1\x85\ +\xf0Bx!\xbc\x10^\x08/\x84\x17\xc2\x0b\xe1\x85\xf0\ +Bx!\xbc\x10^\x08/\x84\x17\xc2\x0b\xe1\x85\xf0B\ +x!\xbc\x10^\x08/\x84\x17\xc2\x0b\xe1\x85\xf0Bx\ +!\xbc\x10^\x08/\x84\x17\xc2\x0b\xe1\x85\xf0Bx!\ +\x1c\x0b\xb1\xaf\xdd\x07FkU\xf1>e>\x89\x09$\ +&%#S\xe4\xc7\xec9s!\xf5`\xc2\xe2\x18\xe7\ +\xd9\xeapfw\x1eq\xd0\x1b\xd4ZS\x96\xd9\xa47\ +\x9b\xe0\x14\xb7\xc9\x91l\xa3)\xb7@\xa7\xd3012\ +\xb4&\x9a\xd6\x9aK\xacn\xfc\x95k\x0cx\xee\xcc\xa4\ +\xcdU\x97c\x8c\x14\xb5\x09\xd3\xd4\xe6I\x1b\x86(J\ +\xe8\xbc\xb4\x91y5\xc2,\x09\xb2\x0d:]a.m\ +2\xeb\xb3\x0a\xc6)\xc1[J\xb2\x89\x81\xe8\xe0\xaf\x90\ +\xc8H.\xa1\x89\x89\x98\x89\x9eIb\xaf\xaf\x89m\xcd\ +&Ec\xd2Vk$-0\xab5&\xb5\x96\xc9\x12\ +\xce\xed\x98\xd8\xf2\xccQ\x83,%\xee\x8b\xf1\x05\x81u\ +J\xec\xc6*q\x16\xb3\xf3\xc0\x08\xbe\xed\x98r\xe9M\ +Zk!\xa0\x90\x05\x86\x9a\x93\x9c\x22cfm\x88A\ ++\xaf=\xd1\x9ajO\x06\x17h\x8c5'C\x8aL\ +\xa55'i%\x9a\xd4\x9a\x13\xb0cm\xd6)\xca\xf1\ +E\xd5\x86\xb0(Hr\x06\xa4\xc8\x89e\xdb$\xc9Q\ +\xc9d*\x9d\xb9 IWQs1\x07\x18\xb4\xb7\xf8\ +\xa5hn\x8d\x97bP\xe5\x0d\xd3\x9a\xfaw\xcf\xd1\x98\ +\xd8\x95!E\xa3\x925\xe4\x9fc\xd4\x98\x18\xff\xecr\ +MRN\x8d\xb7})\xad4\xe9\x0c\xa9\x0a\x93\xa2\xa6\ +Vd\x17e\x1b\xad\xb5\x02\xdd\xd5\xbfr\xc6\x08t\xa1\ +\xa9\xa1\xec\xf3t\xfa\x06\xc5\xe6*5\x16\xffl\x832\ +iT\x8d\xb7\x8b\xd2\xa0\xd3\x8f(\xa6\xe1\xe2\xc2\xf5R\ +k\x8b\xac\x16s\xc2\x80\x1c\xd0)Eg2\xe9J4\ +:mQu\x12\xa95\x04U`\xf9;Z\xfds\xd4\ +E\xc5\xec\x00\x07k\x00\xe8V\xe3\x8d5G\xf8\xb3E\ +\x07\x92N,{?\xab\x7f\x99Z\xe5\xcf\x849\xd5\x96\ + qJu\xaaK\x16q\xd2<\x83Bk\xd4+\x0c\ +\xb4V9\xd1R\x13=\x99\x90.\x18J\xf2\xa0\xb6+\ +\x88\x96\x18\xa1\x8e+\xc0M\x83[I&V\xdf\xa5\x91\ +LLWF\x1e\xa9\xaa\xaa\x16\xa1\xa2,\xa1\x9d\x993\ +\x91UO\x91c\xcdy\x17\xe6\xbcC\xdds\xe1e\xe6\ +\xdc\xce\xaa\xa9%\x97\x00K\xfb`o\xadp\x96r\x09\ +\xaf0\xeet\x12\x5cX\x08!\x1a8J\xaa\x13Y|\ +V.YZ\xe3\x13\xc6\x1cG\xc3\xd1\xea\x13\xc9\x1c\x03\ +k}\x98<\xff`\xdcz,IC\x08\xcfc0\xf7\ +a\x8c-,e\x13T\x9f\x09\xea\x9c\x85Xt\xac\xb6\ +j`\x9d0\xdb\xeak\xcf\x5c\x01A\x92\xe5\xbf:\xac\ +K=\xfbwD\x970\xb2\xa6\xd4\x16\xf2\xab\xff-\x96\ +\xb9\x15\xb6\x1f;n\x83\x11\xac\xd46aDk\xd6h\ +,\x0a\x13I\x81\xce\xacU\x19\xeb\xb5 JS\xa8U\ +M\xbc\xedXU\x9e\xd4\xbb7HJ\xed=\xc4\xa8\x91\ +S{\x8b\xe0\xb9\xc4\xa8Q+i\xe3p\xcd`\xbc\xc9\ +\xa9:r\xc4L\x188\xdc\xe0\xdf\x869\xc9He\xe5\ +mSd\xd0\x99\xf5u\xbc$:f\xeb\x9f\xb5\xfdN\ +\xcb\xc5D\x96\xed\x80p\xee\xa80\x9bt\x03h-m\ +\xc0\xadx\x8c\xf6\x13\xf5\xd6\xee\xc7\xde\x12\x19}0$\ +\xa3\xa4H\xd6\x0a\xe5\x17\x9a\x0d\x9a:\x9d\x18c\xfc\xba\ +>\x99\xc6\xa2\xba\x1d\x9dD\xa11\xe5)\x8a\xea\xf89\ +)iHG\x97\x9b2\x8c\xe9y\x99\x83\xadM\xa9\xad\ +\xd5\xbbNd\xbbb\x9daR\xb2F]d\xb5\x94\xb3\ +\xa5\xf0\xe9Vo\xb4\xae\x8a.T\x98\x99\xb6\xd4\xae\x94\ +6\x98\x1a\x88>\xdc\xea]7\xbaCA\x11\xb3\xc3\x95\ +e\x5cWK\x82\x94\x015\x01\xa8\xc6\x10\x9d\x16\x7f\xed\ +L:=t\x98F\x9am8{\x0d\x18\xf2\x16_i\ +\x01\xd3(\xdf\xe2\xef`\xc0\xa6\xb7\x9e7s\x07\xf5\xb0\ +\xa4\x83\x7fAb%\xa9\xf5\xf7`\x9cx\x09\x85\xcc9\ +\xc6 \x82\x93\xd5&\xca\xb7\xfcSP\x05\x98;a\x17\ +iO\xa8\xaa\x93U?\x13)\xb3\xc3q\xac<\x13\xce\ +/\x11'\xe6\x8c\xa8\xa6`\xba\xaaSd:\x91\xda\xda\ +\xda\xda\xd9J\xed\xec\xa4\xae\x0e\xf6\x0e\xae\x9e\xceR\xa9\ +\xb3g{wwOw\xf7\xf6\xaeR\x86\xea\x9f\x86\xa1\ +\x1c\x1d\x1c\x1c\x9d\x1c]\x9c\x9c\x5c<\x9c\x9c\x9c<\xf0\ +\xe0\xe4aI\xe2\xda\x94\x0c\xaa> \xae\xb6\xa0|\xbe\ +\x90\xf2!\x02WJ\xe8JU}\x03\x05\x95T\xed\xa5\ +\x12AK1\xc5Pm8!\xa1\x04\x22\xb1\xc4\xc6\xd6\ +\xce\xde\x81\xaa\x1fH\x11\x81\xd0\x1a\xe8B(\x11%\x14\ +\x88\x04b\x1b\x89\xadX(\x0d\x87@W\xa1\xa8\x9b[\ +\xa88y\xa8\xc2\xddg\xc2\xd40\x89\xc7\xfc\x95o\xa4\ +t\xf7\xf5\xcc\xd9]\x10\x1ea\x98vHn\xe3\xb7 \ +\xb7\xf2\xf4\xafJc\xa4\xd7\xaa-\x8f\xfb\xa7>\x9b\xa7\ +J\xdb\xb3\xda\x14\xd5\xee\xf0\xb0\xef\xe9\xdf\xde\x9c\xfe\xe1\ +\x11\xf3\x99\xcb\xfd\x03\x16\xaey\xe2\xad\xe7\xf6\x1e\xfd\xef\ +\xef/o\xddw\xec\xec\x95\xe1\x85\xa53\x16\xad\xdd\xf6\ +\xd1\xf1\x1f\xaeF\x0f\x18QT6\xf3\xf9W\xb6\xef?\ +q\xee\x9a+\x11\x08@[\x11\xa3\x93\x8dD\x1c\xc9\xa8\ +\xd0-\xd4M\x04\x1aL\xf0q\x17\x87M\x9d\xef\x81\x1a\ +\xec\xce9T\x19\xee[p\xda0m\x81<\xd7Si\ +\x8c\xf8\xd5O\x82\x0a\xd8\xf8G\xee9\x0cJ\xacn\xa7\ +J\x1b\x16e\xa2\xbf\xafQ\xa1q\x0d\x02jU\xa8\xfa\ +\x8aH\x85\x8cLW\x92H\xae\xe4-\xc8\xf0\xeb\xe9\xbb\ + c`\x86\xef\x82\x9c\x05\x19\xbe\x0b\xd7T{dU\ +}q\xbb\xc0C\xb7\x0b<|\xbb\xc0#\xb7\x0b\ +!\xc02\xd4m\x03\x9b\x08^[\x8b\xeb\xf2P\xe6\x9a\ +Q^\x07j\xfd\x1a\x8a\xa7[\x05m0\x8c\x06\x85\xf3\ +j\xfd\x0a\x96\x10\xb2\xfd\x09B\xda\x7fU\xeb\xe7\xfb\x12\ +\xd4Q\xb8n\xdb>g\x95\xc7\x0b\xeb\x0b\xebc\x1fj\ +Z\x19\x84\x06\xad\xe1\x8e\x11\x9a\x00K^\x10fWc\ +\x1eY\xaa\xa5\x97\x93\xa1\xdd\x94\xd0\x97\x99\x0d2\x18\x89\ ++iY`\xfdJ|\xcf\x09\x1b\xd6\xa3O\x0e]H\ +\xe3\x88\x9f\x96\x0d\x87Z\x06\x13\x16\xb8\xdcZ\x95\x9a\xf9\ +n\x89Z\xdb\xd8E\xbc\xc7d\xf5\xb0\xd4k\xc0}\xcd\ +M\xe216\x88\xb8|\xeeA\x84?\x1f \x22w\x07\ +\x22\x1c\xf3\x22\x84P5\xd7m\xb0\xddp\x82w\xde\x88\ +\xae\xe7,\xf5\x9e\xa1\x81!\xa7`.\x1e\x8cjf\xa0\ +E\xe49y2\xa5\xd9Pj\x09c\xc6Vb\x98C\ +8\x13\x0f\xd2\x01f6\xddI\x0f\x18\xfd\x87A#\xd3\ +\x97$\x9142\x90d\xc1Lg\x14y\x08\xe66\xc5\ +\xa4\x04\xe69ed2\x99Jf\x90\xd9d\x1ey\x8e\ +,%+\xc8\x1a\xb2\x9el\x22[\xc8v\xb2\x8b\xec&\ +\x1f\x91\xcf\xc8\x17\xe4\x189E*\xc8Y\xf2\x13\xa9$\ +W\xc9u\xe8\xecl(G\xca\x9d\xea@u\xa5\xfc\xa8\ +\xdeT\x18\x15C%Pi\xd4`*\x87\x1aE\xe5S\ +E\x94\x962S\x93\xa9\xc7\xa9\xd9\xd4\x02j)\xb5\x92\ +ZO\xbdA\xbdM\xed\xa6>\xa1\x0eQ_R\xa7\xa9\ +\x0b\xd4o\xd4_\x02\xa1@*\xf0\x10t\x16\xf8\x0b\x82\ +\x051\x82d\xc1 A\x9e\xe0AA\x91`\x82`\x92\ +`\xba\xe0\x19\xc1b\xc1*\xc1\xab\x82m\x82\xdd\x82\xcf\ +\x04\xc7\x04\x15\x82\x9f\x04W\x84D\xe8 \xf4\x12v\x13\ +\x06\x0ac\x84ra\x96p\xb4\xb0Ph\x10>*\x9c\ +%\x5c$\x5c%\xdc$\xdc)\xdc/<\x22\xac\x10^\ +\x14\xfe)\x92\x88\xdcE2Q\xa0\xa8\xaf(]4L\ +\xa4\x14M\x10=*\x9a#Z*Z'\xda&\xda+\ +:\x22:-\xaa\x14\xdd\x14;\x8a\xbd\xc5\xbd\xc5q\xe2\ +\x0c\xf1Hq\x91\xb8L\xb7;kw\xdd\xde\xd5>\xc0>\xde>\xcf~\x9c\ +\xfdT\xfb\xc5\xf6\x9b\xec\xf7\xd9\x7fm\x7f\xd9\xc1\xc1\xc1\ +\xc7!\xd6a\xa8\x83\xdaa\x8a\xc3b\x87\xd7\x1d>v\ +8\xed\xf0\xa7\xd4M\xdaK*\x97\x8e\x91\x9a\xa5\xcfH\ +_\x91~ \xfdRz\xd9\xd1\xd1\xd1\xdf1\xc9q\xb4\ +\xa3\xc9\xf1\x19\xc7\xf5\x8e\x1f:~\xeb\xf8\x87\x93\xbbS\ +\x90S\x86\x93\xca\xe91\xa7eN\xdb\x9c\x0e;]r\ +\xb6s\xf6sNv~\xc8y\x92\xf3\x22\xe77\x9d?\ +w\xbe\xe8b\xe7\xe2\xef\x22wQ\xb8<\xea\xb2\xcc\xe5\ +m\x97\x13.W\x5c\xdd]C]\xb3\x5cK\x5c\xe7\xb8\ +np\xfd\xc4\xf5\xbc\x9b\x8d\x9b\xbf[\x9a\x9b\xcam\xba\ +\xdbj\xb7\x0f\xdd\xce\xb8\x0b\xdd\xbb\xbb\xcb\xdd\x95\xee\x8f\ +\xbb\xafq\xdf\xe7~\xd6C\xe2\x11\xe0\x91\xe11\xcec\ +\xb6\xc7k\x1e\x07=*=\xdd<#<\x87{\x96{\ +.\xf3|\xd7\xb3\xc2K\xe8\xe5\xef\x95\xe1\xa5\xf1\x9a\xeb\ +\xb5\xc5\xeb\xb8\xd7_\xed:\xb7KnG\xb7{\xaa\xdd\ +\xa6v\x87\xdb]k\xdf\xa9}R{\xba\xfd\xac\xf6\x9b\ +\xdb\x1fk\xffW\x07Y\x87\xb4\x0e\xe3;\xcc\xef\xb0\xbd\ +\xc37\x1dE\x1d{u\x1c\xda\xb1\xac\xe3\x8b\x1d\xf7u\ +\xbc\xd8\xc9\xa3S\xdfN\xcaN\xb3:m\xe9\xf4\x95\xb7\ +\xc0\xbb\x97w\x8e\xf7\xc3\xde\xab\xbd\x0fx_\xe9\xdc\xa5\ +\xf3\x80\xce\xfa\xceK:\x7f\xd8\xf9b\x17\xaf.I]\ +\xc6uY\xd8\xe5\xbd.\x17\xba\xbawM\xe8\xaa\xee\xba\ +\xb0\xeb\xfb]\x7f\x94y\xca\x92e\x1a\xd9b\xd9^Y\ +e7\xefn\xe9\xdd\xcc\xddVv;\xd8\xed\xbaO\x80\ +\xcf0\x9fi>\x9b}\xbe\xe9n\xdf=\xa6{a\xf7\ +\x85\xdd\xf7t\xaf\xf4\xed\xea\x9b\xe9;\xd9w\xa3\xefW\ +~v~1~\xc5~\xcf\xfb\xed\xf7\xbb\xe6\x1f\xe0?\ +\xc2\x7f\xa6\xffv\xff\xf3\x01\xed\x032\x02&\x05l\x0c\ +\xf8\xba\x87c\x8f\xc4\x1e\x13z\xac\xeaq\xb4\xa7\xa4g\ +L\xcf\xf1=_\xe8\xf9E/A\xaf\xc8^\xc5\xbd\x96\ +\xf5\xfa\xbc\xb7\xa0wTou\xef\x17z\x1f\xea#\xee\ +\x13\xdbG\xdbgU\x9f\x13\x81\xd2\xc0\xe4\xc0\xd2\xc0\x8d\ +\x81\xa7\x83\xbc\x82\x06\x07M\x0b\xda\x1et)\xd87x\ +t\xf0\xfc\xe0\xfd\xc17C\x22C4!kBN\x85\ +\xba\x85\x0e\x0c\x9d\x16\xba3\xf4\xb7\xb0^a\xca\xb0e\ +aG\xc3\x1d\xc3\xfb\x87?\x16\xbe#\xfc\xd7\x88\xde\x11\ +t\xc4\x8b\x11'#\xdd#3#gF\xee\x89\xfc;\ +*:\xca\x10\xb5)\xeaB\xb4ot~\xf4\xf2\xe8\x13\ +1\x1e1\xd91sb>\x8e\x15\xc7\xa6\xc4>\x16\xbb\ ++\xf6\xcf\xb8\xa88S\xdc\x96\xb8_\xfa\x06\xf6\x1d\xdf\ +wC\xdf\xf3\xfd\x02\xfa\xd1\xfd\xd6\xf4;\x13\xef\x13\xaf\ +\x88_\x19_\x91 K\xc8Ox)\xa1\x22\xb1[\xa2\ +\x22qU\xe2\xf7I\xdd\x93TIk\x93\xce%\xf7L\ +\x1e\x97\xfcj\xf2\xa5\x94\x90\x14C\xca\xd6\x94k\xf28\ +\xf9#\xf2\x0fR\x85\xa9\x03Rg\xa5\x1eLsK\x1b\ +\x96\xb64\xed\xdb\xfe>\xfd\x8b\xfao\xec_9 r\ +\xc0\xc3\x03>H\x17\xa7\x0fJ\x9f\x9f~\x22\xa3s\x86\ +2c}F\xe5\xc0\xe8\x81\x8f\x0c\xdc;H:(w\ +\xd0\xd2A\xdf\x0f\xee5\xd80xg\xa6 s`\xe6\ +\xb3\x99_\x0f\xf1\x1b\xa2\x1d\xb2=\x8bded=\x9b\ +\xf5Mv@\xf6\x84\xecw\x86J\x86f\x0f]6\xf4\ +\x87\x9c\xd0\x9c\xc99\xfbs\xdds\xc7\xe6n\xc8\xbd\x9a\ +\x97\x9277\xef\xd4\xb0\x1e\xc3\xcc\xc3\xf6\x0cw\x1e>\ +f\xf8\xfa\xe1\xd7F\xa4\x8eX0\xa2bd\xf0\xc8G\ +F~6\xaa\xe3(\xf5\xa8\x1d\xa3mF\x0f\x1f\xbdv\ +\xf4\x95\x07\xd2\x1ex\xee\x81\xb3c\x22\xc7\xcc\x18s\xfc\ +\xc1\x80\x07\xcb\x1f\xfc\xe4\xa1\x8e\x0fi\x1ezw\xac\xf3\ +X\xc5\xd87\xf3\xc5\xf9#\xf27\xe4\xdfPd)V\ +)\xae\x14d\x14,/\xa8T\xca\x95\xcf+\x7fR%\ +\xa9\x16\xaa.\xd0\xf1\xf4\x02\xfa\x5ca|\xe1\x82\xc2\xf3\ +E\xf1E\xcf\x16](N,^T|Q-W/\ +U\xff:.}\xdc\x8aq\xd7\xc6g\x8d\x7fe|\x95\ +f\x84fs\x89mI~\xc9\xdbZ7\xedx\xed^\ +]\x17]\xb9\xee\x90\xbe\xb7~\x86\xbebB\xdc\x84\xe7\ +&T\x1a\x06\x19\xd6\x1a)\xe3\x83\xc6\x1d&\x0f\x18L\ +\x1d0\xf70?a>]\x9aP\xba\xac\xf4\x8f\xb2\xe1\ +eo\x96\xbb\x96k\xcb\x0fL\xec5\xf1\xa9\x89\xe7&\ +\xf5\x9f\xf4\xf2\xc3\xa2\x87\x95\x0f\xef\x99\xdcm\xf2\xd4\xc9\ +\xa7\x1fI~d\xe5\xa3\xd4\xa3\x05\x8f\xeey\xac\xfbc\ +\xd3\x1f;;e\xc0\x94uS\xed\xa7\x8e\x9f\xfa\x9fi\ +!\xd3\x16L\xfb\xfd\xf1\x11\x8f\xef\x9c\xdey\xfa\x94\xe9\ +g\x9e\x18\xf0\xc4\xc6\x19N3\x0c3N\xcc\xec;s\ +\xc5\x93\xa2'\xd5O\x1e|*\xfc\xa9%O\xdd\x9c\xa5\ +\x9a\xf5\xe9\xec\x90\xd9\x8bf\xdf\x98\xa3\x9c\xf3\xe9\xd3\xa1\ +O/~\xba\xea\x99\xc2g\x0e\xce\x8d\x9a\xfb\xe2<\xc9\ +<\xed\xbc\xe3\xf3\x13\xe7\xaf[\xe0\xba`\xd2\x823\xcf\ +f>\xbbm\xa1l\xe1\xac\x85\xbf?7\xf6\xb9O\x16\ +E,Z\xf1\xbc\xfd\xf3\xe6\xe7+\x16\x0f^\xbcc\x89\ +\xef\x92yKn,-^zlY\xca\xb2\xcd\xcb\xbd\ +\x97?\xb5\xfc\xda\x0b\xaa\x17\x0e\xbf\x98\xf4\xe2\xa6\x15\x9d\ +W\xcc^\xf1\xd7K\xea\x97N\xae\x1c\xb0r\xdb*\xff\ +U\x8bVKV\x97\xae\xfea\xcd\xf05\xfb_\x8ey\ +y\xfd\xda\x8ekg\xaf\xfd\xfb\x15\xed+\x15\xebr\xd6\ +\xed]\x1f\xbd~\xfd\x06\xef\x0ds7\x0a6\x9a7^\ +xu\xcc\xab_\xbc\x96\xfa\xda\x8eM\x81\x9bVn\xf6\ +\xda<\xfbu\xf2\xba\xf9\xf5\x1f\xdf\xc8\x7f\xe3\xf8\x96A\ +[\xf6\xbc\x19\xf3\xe6\xa6\xb7\xfc\xdeZ\xbe\xd5}\xeb\xac\ +m\xd4\xb6\x89\xdb*\xb7\x17o\xaf\xd81j\xc7\xa1\xb7\ +\x07\xbe\xbdgg\xdf\x9d[\xdf\x09z\xe7\x95]\xddv\ +-{\xd7\xf3\xdd\xb9\xef\xd9\xbf7\xfd\xbd\xaa\xf7'\xbd\ +\x7f\xe5\x03\xfd\x07\x17w\x17\xed>\xb3g\xec\x9eS\x1f\ +\x8e\xfc\xf0\xe8\xde\xa1{\x0f\xee\x1b\xb4\xef\xe3\x8f\xfa\x7f\ +\xf4\xe1\xfe\xe4\xfd\xef\x7f\x1c\xff\xf1\xaeO\xe2>y\xfb\ +\xd3\x98O\xb7\x7f\x16\xf5\xd9\xb6\x03\x91\x07\xb6\xfe'\xf2\ +?[\x0fF\x1d\xdc\xf6y\xf4\xe7;\xbe\x88\xfdb\xe7\ +\xa1~\x87\xde;\x9cxx\xf7\x91\xd4#\x1f\x1d\xcd8\ +\xfa\xd9\xb1!\xc7\x0e\x1d\x1fv\xfc\xe4\x891'*N\ +\xaaN\x9e\xffR\xf3\xe5\xaf_\x95~u\xfd\xd4\x94\xaf\ +\xc5_\xcf\xfa\xc6\xe5\x9bE\xdfz\x7f\xbb\xea\xbb\x9e\xdf\ +m\xae\x88\xaax\xf7t\xea\xe9\x03\xdf\xe7~\x7f\xea\x8c\ +\xf2\xccO\xff5\xfe\xf7\xc6\xd9\xe9?8\xfe\xb0\xe8\x5c\ +\xd7s\xeb\xcf\x87\x9d\xdfu\xa1\xff\x85/~|\xe0\xc7\ +\xb3?\xe9\x7f\xba~q\xc6\xcf\xae?/\xbf\xd4\xe3\xd2\ +[\xbf$\xfdr\xa0rd\xe5\xd9_\x0d\xbfV\xfd6\ +\xe7r\x87\xcb\xaf\xfc\x1e\xf1\xfb\x9e+\xd9W\xbe\xbdZ\ +r\xf5\xfa\xb5Y\x7ft\xf8c\xdd\x9f1\x7f\xee\xffk\ +\xc4_\xe7\xae\x97\xdd\xb0\xb9\xb1\xf8\xef\x9e\x7f\xef\xbc9\ +\xe8\xe6\xd7U%5+\x93<<<<<<<<\ +<<<<<<<<<<<<<<<<\ +<<<<<\xffbl\x81\x91@[\xeb\xf1oe\ +\x05\x80{e^\x04\xf0Z\xb4\xb5>\xff&\xb0\xde\xb3\ +\xf7+}\x06t\x01ZBVG`\x180\x13\xd8\x01\ +\x1c\x03~\x00\xaeU\x83\xee\xe3\xc0\xdb\xc0\x93\xc0p\x00\ +\xd3\xb4\x84.\xf7\x0bX\xdf\xb1\xde\xb3\xaf\xc1\x8f@\x0a\ +\xc0E\xfe\x9d\x802`?p\x13hx\x97Z\xe3`\ +\x9aO\x80r\xa03\xc0\x85N\xf7#%\xc0_\x80\xb5\ +\xdc7\x00\x1dp\xaf\xf9\xc5\x00\xeb\x80\xeb\xc0\xdd\xda\xbc\ +10\xaf\x0d@\x1c\xc0e\xd9\xef\x17\xfa\x02\xe7\x00v\ +\x99\xd7\x02\xf6@S\xf3\xf0\x06\xd0F\x5c\xd9\xbc1^\ +\x05Z\xaa\x9dlK:\x00\x1f\x01\xec\xb2\x1e\x02|\x80\ +\xdb\xa5\x93\x00\xd8F\xfc\x0e\xb4\xb4\xed\xad\x5c\x01&\x01\ +6@k\xd9\xa75@[.\x01\xd8e\xbd\x04\x0c\x00\ +\x1a\x8a\xdf\x1f\xf8\x12h-\xbb\xd7\xe7\x14\x90\x0e\xb4\xb6\ +\x9dZ\x9a\x02\xe0\x0f\xc0Z\xce\xbf\x01\xecK\xad{\x1e\ +\x05\xc0\x13@[\xd9\xbd>8fB\x9d\xda\xdan\x5c\ +\x12\x09|\x0f\xb0\xcb\xf9\x1a\x80\xed\xfcV\xa0\xadl\xdd\ +\x18\xdb\x01\x17\xa0\xad\xed\xc6%\x9e\xc0\xfb\x00\xbb\x9c\x7f\ +\x02md\xe2;\x82\xedQo\xa0\xad\xed\xc6%\x22`\ +>\xd0\xd6\xb6m*\x97\x814\xa0\xad\xed\xc6%\xa9\xc0\ +\xfd\x5c\xef\xeb\x83s\xea\xff\x97k\x80c\x1c,\x0f\x17\ +v9\x0b\xe0\xbd\x84c\x96^\x80#\x80\xdfB\xf0\x07\ +\xce\x00\x5c\xc8\xb0\x82:\xa3\xeemm\xbf\xe6\x80\xe3N\ +.l_\x01\xe4\x02\xb7\x1b\xa3`\xdb\xcd\x85\xdd\xd9\xa0\ +\xee\x8d\x8d\x9d\xefwp\xfc\x83\xf3\x9c\xe6\xda`\x0e`\ +\x07\xdcI^K\xd8\x1f\xc12D\x00\xada3\xae\xc0\ +\xf9}\xfd\xf5\x88\xbb\x05\xe7\x0c\xe3\x80\xa6\xcal)\xfb\ +#X\x96\x7f\xca\x1a\x1e~\xc7\xe6\x08\xd0\xdc2\xdf\xed\ +\x1a^K\xda\x1f\xc1\xb5\x14\xecoZ\xcan\x5c\x80\xf3\ +\xdb\xb7\x00.\xca\x8bm~(\xd0T\xd9-m\x7f\xe4\ +\x0d\x80\xf5\xdd\xa2\xfb\x8e\xc9@s\xcb\xc8^\xeb\xbf\x0a\ +<\x084Evk\xd8\x1f\xc1u\x94\x96\xb6\xe3\xbd\xd0\ +\x0f\xc0\xb5\xff\xe6\x96\x0f\xc7\x97\x95\x00\xdbo\x1e\x80\xf3\ +\xb8\xdb\xc9o-\xfb\xe3\xb3\x84h\xa0\xb5\xec\xda\x14\xb0\ +\xcd\xc7\xf6\xa2\xb9e\xc3<\xc4\x80\x1fp\x14`\x87\xed\ +\x01\xda\x01\x8d\xe9\xd0Z\xf6G\xbe\x02\xee\xe6\xd9FK\ +\xf34\xc0E\xb9\x9e\x02\xacy\xe2\xbc\xaa\xfe\xf3\x98\xff\ +\x02\x8d\xd5\xbd\xd6\xb4?2\x15h=\x0b7\x0e\xae\x19\ +\xe2\x9a\x09\x17eJ\x02\xea\xe7\x8f\xcff\xd8\xed\x1a\xae\ +c\xa8T*U\xfdx\xadm\x7f|\xae\x81u\xa4U\ +\x8c|\x1bJ\x01.\xca\x83}-\xb6=\x0d\xc9\xc0\xf5\ +\xa3\x8b\x00;\xfeR\x00\x9f\xf7X\xe3\xb4\xb6\xfd\x91\x09\ +@\xebY\xbaa\xb8Z\xcb\xff\x1a\xb8\x9d\x1c\xfc`\xf9\ +A\x80\x9d\xe6c\x00\xdf\x93\xc0p|\xce\x19\xd0D\xb8\ +z\xe6\xb6\x05h\x1d+7\x0eWe\xd9\x0b\xdcI\x16\ +\xaeC\xac\x06\xd8\xe9\xce\x03\x09\xc0\xdd\xe8\xfc\x1e\xc0\x85\ +\xce'\x80{\xb7\x1c7`\xbb\xc1EY\xde\x04\x9a*\ +S\x0f\xb0\xdfOA\xb7F\xa3\xd145\xfdf\x80\x0b\ +\x9d\xb1\xec\xf7f5\xee\xf8\x0e\xe0\xa2,\xf8\xee\xc4\xdd\ +\xc8\xc5:\x8fu\x9f\x9d\xc7*\xa0)ku8\x96\xe5\ +B\xe7o\x81{\xb7\x1c7\xbc\x03pQ\x96o\x80\xbb\ +\x95\x8dm?\xf6\x01\xec|\xb0\x8f\xc0\xbe\xe2v\xe9\xb8\ +j3\xf1}\xc7{6\x1cG\xe0\xbb\x03\x5c\x94\x05\xd7\ +\xda\xd9\xe3\x99\xa6\x82\xef\xf0,\x07\xd8y\xe1X\x09\xc7\ +L\x0d\xc5\xc71\x16\x17\xeb\xe2\xc8t\xa0\xf9\x16l\x1e\ +]\x01.\xd6\x1d\x90\xe6\xbc;Z\x08\xb0\x9fq\xa2N\ +f\xa0~\xbcD\x80\x0b]Q\xd6\xfd\xf2\x8e\xefz\x80\ +\x8b2\xcd\x06\x9a\xa3\x07\xbe;\x8asdv\x9e8\x87\ +v\x00\xacqp\x8e\xcd\x85\xae\xf8\xeeq\xf3-\xc7\x0d\ +8\xf6\xfe\x0dhn\x99\xf0}\xa1{i\x83\xd8\xe0\x1a\ +Q\xfd\xfe\x15\xd7\x92|\x01\xcc\xfb4\xd0\x5c=\x7f\x01\ +\xac\xf3\x8e\xfb\x85\x87\x80\xe6\x96\x0b)\x06\x9a\xab\x0b\xb6\ +\xf1\x0b\x81\xfa6{\x16\xe0B\xc7\x11\x00\x176\xe3\x1a\ +\xeb~\x98\xe6\x80\xf5\x93\xdd^4\x07\xac\x13\xec\xe7\xff\ +\xf7\xb2\x8f\xa0>\xb8\xee\xc1\x85n-\x01\x8e\xbd\xeb\xaf\ +\x11\xdc\x0bk\x00\xaet\x0a\x03\xb8X\x1bG\x0e\x00\xf7\ +\xfb;\xd3\xf8\x9c\x1a\xdf\xd3inY\xef\xe6\xd9\xfb\x9d\ +\xe0b\x8d\x10\xfb\xf5\xfb\xad\xcdo\x8c\x10\xa0\xb9k\xd2\ +\xd8V\x18\x80\xe6\xea\x82c\xd0\xe6\xb6;8\xb6\x08\x06\ +\xb8\xb0Mk\x91\x01p1/x\x0e\xb8\x97\xf7\x0e\xf0\ +\x99\xdcb\xa0\xb9\xf2\xb1\x0c\xff\xd4=\x02c\x00.\xae\ +\x01\xeeo\x1c\x0b4\xf6|\x80\x0d\x8e1\xf3\x81\xfak\ +C\xf7j{,Ck\xd8\xaa\xa5\x18\x05p5?\xc6\ +gN8\xef\xc1\xfd\xa58\xd7\xf2\xae\x06\xdd\xe8\x87\xe3\ +/\x1cgr!\x0buF\xdd\xdb\xda~\x5c\x90\x07p\ +\xb9\x9f\xb1\xa5A\xdb\xe3~\xe3\xb6\xb6\x1b\x97d\x03\x5c\ +\xbd\x07\xdd\x1a<\x03\xdc\xe9\x9d\x97\x7f\x1a\xe1\x00\x17\xf3\ +\xff\x96\x82\xbd\x8f\x19\xc1\xbd;\xb8\x87\xa7\xad\xed\xc6%\ +\x1e\xc0\xbb@[\xd9\xb81\xd0\xd6\xf8\xdc`\x13\xc0\xf6\ +\xc75)|\x97\xbb\xad\xed\xc6%B\x00\xd7:\xdb\xca\ +\xd6\xf5a\xb75\xf8~\xe7\xc3\x00\xbe\x7fm\x0d\xc7\xbd\ +\x9c\xb8\xa7\xb3\xad\xed\xc658Gh\x8b\xf7F\xac\xe0\ +;\x17\x83\x80\x86t\xc31?\x8e\xb7\xd8\xf1\x17\x01M\ +\x19\x03\xff\x93h\x8b\xfd\xef(\xab)\xfb\xdfq]\x1d\ +\xdf;g\xa7\xdd\x07\xe0^\xff\xd6\xb2Ok\x81k+\ +\xf8\xcd\x88\x96\xb6=~\xdb\x03\xe7\x0cM\xd5\x0b\xdf\xf3\ +\xac\xaf\x17\xce\x07\xf1\x9b\x17-i\x8f\xb6\x02\xc7H+\ +\x01\xf6\xfe\xf9\xe6\x82\xcf\x0a\xf1\xdd\x88\xe6\xec#\xc2\xb5\ +(\xf6<\x12\xc7J\x5c\xae\x11\xdeo\xe0\xb8\x0f\xbfm\ +\x83c\xa5{\x99\xbba\x1a|\xcfJ\x0bx\x01\x5c\xe8\ +\x94\x0c\xe07\x8e\xd8rp\xce\xfd\xff\xfe\xed/W\x00\ +\xfbjl\xb3\xf1y.~\x93\xe9$\x80k<\x17\x00\ +t\xe3{(\x1b\x01\x8c3\x10\xc04-\xa1\x0b\xae\xaf\ +\xe3\xb7\xbe\xd8\xd7\x80\xff\x06^\xeb\x82\xf5\x9d\xfd\xed\xbb\ +\xb6\xd6\xe7\xdf\x0a\xd6\xfb\xff\xf7\xb6\x87\x87\x87\x87\x87\x87\ +\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\x87\ +\x87\x87\x87\x87\x87\x87\x87\x87\xe7\x1f\x81\xf0%\x8a\x08\xe1\ +\x97\x82?\xf2\x92\x80\x88\x187!\xf9/\x09k\xdd\x96\ +\xa8\xff\x03;\xbc\xca\x99\ +\x00\x00\x08'\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / slice / n\ +ot active - save\ +d\x0a Created with\ + Sketch.\x0a\ + \x0a \x0a \ + \x0a \ + \x0a \ + \x0a \ + \ +\x0a \ + \x0a <\ +rect id=\x22Rectang\ +le-22-Copy-2\x22 tr\ +ansform=\x22transla\ +te(7.409295, 7.7\ +12904) rotate(-4\ +5.000000) transl\ +ate(-7.409295, -\ +7.712904) \x22 x=\x226\ +.40929495\x22 y=\x22-1\ +.28709556\x22 width\ +=\x222\x22 height=\x2218\x22\ +>\x0a \ + \x0a \x0a<\ +/svg>\x0a\ +\x00\x00\x05\x1d\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a Artboard\x0a \ +Created with Ske\ +tch.\x0a \ +\x0a\ + \x0a \ + \x0a \ + \x0a \ +\x0a\x0a\ +\x00\x00\x05\x09\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a Artboard\x0a \ +Created with Ske\ +tch.\x0a \ +\ +\x0a \x0a \ + \x0a \ + \x0a \ +\x0a\x0a\ +\x00\x00\x07^\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outlin\ +er / visible / m\ +ixed state - hov\ +er\x0a <\ +desc>Created wit\ +h Sketch.\ +\x0a \x0a \ + \x0a \ + \x0a \ + \ +\x0a \ + \x0a\ + \ + \ +\x0a \ + \x0a \ + \x0a \ + \x0a\ + \x0a \ + \x0a\x0a\ +\x00\x001/\ +\x00\ +\x01\x04 x\x9c\xed=\x07@SW\xd7\xf7%\xec\xa5\ +lpF\x147#\xcc$\xa8\x88\xb8P\xa9\x0a\x8a\xa3\ +\xfaIH\xc2\xd0\x90`\x12\xdc\xab\xcb~\xd5\xd6\x81\xd6\ +]m\xd5\xda\xaa\xd5\xd6Zg\x9d\xe0.8\xab\xb6\xda\ +\xe1\xde\x0a8\x90\x99\xfc\xe7\xbc\xe4a\x8c\x8c\xa0Q\xfb\ +\xf7\xcb\x0d\xe7\xbd;\xce=\xe7\xdcs\xef;\xf7\xdc\xfb\ +\x06\xb1\xb1\xa4-!\xc4\x86x\x115\xb1\x80\x18E\xb4\ +\x076}J\x84\x03\xa5\x17g\xd1q\xc0\xa3\xfc)\xb6\ +.\x1f\x90)+]\x9c\x05\x07g\x86\xce\x90\x06\x94\x8b\ +\x1e\x8e\xbb.\x8e\xb5=\xf4hz2\xf8s\x08\xd5\x80\ +Xj\xe3T\x18\xd5\xb02\xde\x89j\xa4G\xa7\xb5\x1e\ +/.\x1e\x89\x0f\xc4\xbaSAt\xdc\x0d\xe2\xa9T\xdc\ +3|\xd6.\xa7\xe7\x0d\xc3x\ +\x83_!\xbf'\xea\x05\xf4\xa4\xfd\xd9\x95O#\xa4U\ +}\xe6\x1c%\x96'I8\xfdR\xe5*\xb92U\x9e\ +\xc1\x89\x8e\xe6\x04\x05r\xc39\xad\x07\xa5\xc9\xc4\xf2\xb1\ +\xca6\x04\x93\x82\xc0\x10\xf8\xe3p\xb9\x82 \x9e\x80\x1b\ +F:D\x8e\xcb\x10\x8aFIT\x9c$IJ\x9a\xac\ +\xa3O\xfe\xcf{}8i\xe2\x8e>\x83Bc\x03c\ +3\xa2%\xa9i='($\xf1\x13\xde\x19 \x9a0\ +J\xc4\x17\xfbDv\xb2\xeb0N0.=#]\xa2\ +\x12r\xc6\xa5KeJ\xc1\xb8\x8e>B\xe4/\x808\ +f\x07\xf8ph\x14\xd5\xa8\x8e>Z\xc1\x06\xc7\xf6\xe3\ +D\xcb\x15\x12N\xa8\x7f\x98\x9f\x88\x1b\xcc\xe3\x84\xf3\xfd\ +\xb9\xa1|^PH{\x144, \x90\x1f\xc0\x0d\xf1\ +\x0b\xe4\x0a\x02\xf9\x82@.G\x17|:\xd9\xc1\xb1\x83\ +B\x9c,\x88\xeb\xda]\xc7\x0eR\x1d}RU\xaa\x0c\ +A@\xc0\xd8\xb1c\xfd\xc7\x06\xfb\xcb\x15)\x01\x5c>\ +\x9f\x1f\x10\x18\x14\x10\x14\xe4\x07\x18~\xca\xf12\x95p\ +\x9c\x9fL\xd9\x5cK\x84\xa1\xd3U\xa2\x14)\xd22T\ +ir\x19\x07\xd3\xc2$y\xa6\xaa\xa3\x8f\x8f\x1dG/\ +\xe8\xda\x95\x9eQ\xc9H\xa6\xf4\xa7\xdb\xe8/\x92\xa7\x07\ +\x8c\x13f\x04p\xfd\x03\x03\xaa\xaa$\x16U\xd6\xc9\xc8\ +THi\xd1\xc4\xa2\x00\x89T\x92.\x91\xa9\x94P\x8f\ +[e\xbd\x0c\xa6\xef\xaafYY\x5c-c\x9066\ +\xb6fy\xd3\xd3\xab\xac\xa9Tu\x1b\xa3\xaa\xb9\xa6r\ +\xc0\xf8\x0cI@\x9cD)\xcfT\x88$\xdd\xc6@S\ +\x9e\xe9\x15U\x0b\xdc\x05\xd1\x0a\x89P%\xe9\x0a\xd0\x09\ +G\x9b_`\x90_`\xf0\x00n\xa8 0L\x10\x14\ +\xea\x17\xc8\x13\x04\x06v\x080\xc04\xa0\x11+\x17\xa7\ +%\x8f\xd7\xa3\x01\x83\x22d\x003b\xfd\x02\xc3+i\ +\xe8a\x1a\xd2\x801(\x16\xaa\x84FQ\xd1\xc7\xad\xaa\ +=r\xc5\x00\xb9\x5c\xda\xa9\xd6\x0bL\xafa\xba*z\ +\xd4\xc4\x22A\xb2\x5c\x91.TuJK\x17\xa6H\x02\ +Ti\xc9\xc9\x1d\x02\x9e\xe5\xea\xa1Vv\xb4 Z.\ +\x95+\xa0\x95\x92N\xc1\x1d\x02\xaa\xca\xae\xb2VLt\ +t?\x85<9M*\xe9\xa4\x8c\xeb\xd1\x85\x13\xd3-\ +:\x8c\xcb\x0f\x0b\xf3\x0b\xf2\xe7\xea\x93\xd1\xc3\xab\x92N\ +W\xb9(\x13Gl\x94L$QB\x93\x94\x9d\x9e\x1b\ +9\xf4\xb5\xd4E\x98\xf2|.S M\xeb\xa4\xb5\x08\ +b\xb9(M\xfcll\x0b\x84\x22\xa1D\x12\x92\x9c\xec\ +\x07\x22\x05\xfaq\xb9\x92p\xbf$!\x1c$a\x92p\ +a\xa8H\x1c\xc4\xe3\x86t\x08\xd0\x91\xa8\x8e4(\xda\ +_\x0cd\x93\x93C$a\xc1\xbc0?Ir\xb0\xc4\ +\x8f+\x09\x91\xf8%\x85\x8bx~a\xc2\x90PIx\ +pRP\xb8H\x5c51m\xee\xf3\xe2\xeb+\xa7\xa6\ +\xc6w\xa0/4A\x8cL\xa9\x12BqLWZ\x9e\ +4\x90\x87\x1f\x1a,\x11\xf3\xf9\xc9~ S\xb2_R\ +(\xc8#\x0c\x0a\x0c\xf3\x13\x06\x07\x07qy\x81a\x10\ +\x0f\xa1\x87\xc9\xf3\xd5_ \xcdp\x87\xb2\xaa\xb5\x18\x1e\ +\x12\x1c\xce\x0b\xe2\x89Q\x8b!Z-\xf2D!I~\ +\xe2\xb0d\x89(\x5c\x98\xc4\x0b\x16\x051\x8c\xf4\x88\xbd\ +\xc0\xa8\xaf\x22\x0d\xcc\xbeP\xaa\x87S\xa9[Qp\x90\ +$\x9c\xcf\xf3K\x16's\xfdB\xf9!b?~h\ +2\xdfO\x18\x12\xc6\x0d\xe7\x86'\x85\x09\x85\xe1\x0c\x8b\ +*\xc8\xbc\xc0\xaag\x1a\xeaq|\x15\x83(^2\xba\ +\xba\x9e\xa6\x0dt\x86P\xa1\x94\xa0\xf9\xe9\xe8\xc3\xd8\x1f\ +\x9f\x17*`\x1d\xda\x8c\xc1\x08C\xd3\xdeID[\x18\ +\xe8\xfe\xe7r\xab\xaf\x96\xf6bw\x1a\xa7\x82\x17\xaaW\ +\xcfcl\xaaDV\x93e\xd4\xc3\xaa\x9e\x88R\x9e\xac\ +\x1a+TH\xa2R@\xd3\xc6\x98\xa5\xaa\xaa\xbd\xa0\xef\ +Z.\xb9W\xe8\x08\xa5p\xcc\xabuCprxX\ +\x92\x04\xac6O,\x0a\xf2\x13\xf2B\xa0\x07P\x87\xe1\ +\xa1\xdc\xe0\xe0\xf0 a\x08\x97+~\xb5n\x80>\xe0\ +\x0aB\xb8o\xbf\x1b\x9e\x91\x17\xa5\x0ae)\x12q\xa7\ +\x00\xa6\x22\x93\xf1\xff\xa9\xe7\x8c\xb3\x87/\xd7sUN\ +\xe8\xff\x82\x9e\xd3\xe6>o\x13\x19;k`C\xb5\xa8\ +z\xfe\xac\xd6Y\x0e\xd0y\xcb\xe0\xa8\x07Tz\xeaU\ +\x09l\xfa`fbfbfbfbfbfb\ +fbfbfbfbfbfbfbfb\ +fbfbfbfbfbfbfbfb\ +fbfbfbfbfbfbfbfb\ +fbfbfbfbfbfbfbfb\ +fbfbfbfbfbfbfbfb\ +b&v\xcf\xde}\x95\xc8\xc4\x1d}\xc6\xfaDv\x22\ +\x8d\xa8\xa1\x84\xdd\xd0\xb7G\xe5\x99E\xe8Wzy]\ +bb-|\xe9\xf7o\xeb\x1f\x1e\xeey]\xb5E\xf6\ +\xe4\xe2\x1e\xfe\xfc}\xb7\xc7\x0f\xa3\xcb\x04t\xd9u,\ +g\xde`&\xf6\x19\x8a4\x99\xaao\xa6*#S\x05\ +I|\x95\x98\xf4S\xaa\xe2\x93\xe4r)\x8d\x11#S\ +I$\xb2\xcct&\x8e\xe7h\xa9\x02\xd3\xf5\xe8\xba\xf1\ +i\xe3\x10\xa3K\x9a\x0a\xeb<\xa3)Q\xbc#L\x97\ +\x0c\xe86x@%3m\x85~\x0a\xb9<9^\xa2\ +\xca\xcc\xe8\x9b4R\x04\xd9\x0e\xa4\x1fQ\x109\xfc\x92\ +\x09\x87\xc4\x13\x09Q\x91L\x92AW\xb1\xcb\xa8\xc4f\ +\xc8t\x91\xaad:\x89\x1c\x922\xd3\xa4\xaa4\x19M\ +\x12\xd2\xb64vt\xec\x90\xdeZmD >\xcb\xef\ +\xb9\x16\xbb\xe8\xb5\xb8/\xfdF\x82R\xfb\xae3\xb4+\ +C%c\x1a\x01\x8dLRT&\xe2R\x94\xb1\xcfJ\ +\x14\xb2\xe8g\x09\x99\xeaY\xa2O\x92TY\x99x'\ +E5\xa62\xd1-]\xda\xb52\x01z|F\xba\x8b\ +hT\x8aN\x11Z\x01I\x5c\x8f.\xd1D\xfbj9\ +\x89\x13s8byfRg\xf9%\xc2\x84\x1e\x0a\xd9\ +\x0by]\xa4/\xe2uQ\x88\x07\x0c\x94\xa9\xba7\x8f\ +\x93\xaa\x88^\xe8\x22\x15s\xaa\xca\x8fSJUt~\ +\xbfq\xd2\xceq\x95\xd9vc$\x22\x95\x5c\xd1U\xa8\ +\x12V\x8e\x8a~)\xfd\x94\xcc\xa8\xc0\xb8\xee\x1cM+\ +A\x92\xac\xaa\x8a\xfc\x00yF\x95l\xe3ERm~\ +?\x85\xa8\xf3\x90\xca\xec\xfa\x22\x85?\xf0\xeb\xb5\xc7_o\ +9x\xf6\xfa\x93\x84\xe41\xd3\x17\xac\xd9z\xe8\xdc\x8d\ +\xa2\xf0\x1e\x83R\xc6~\xbc\xf0\x9bm\x87\xcf\xdf|\xea\ +LX,\x90\xd6\x82\x96\xc9\xda\xca2\x94\x16\xa1\x19\xd7\ +\xc5\x02$\x18\xed\xe3j\x19\xf4\xde\x5c7\x94`\x7f\xdc\ +\xa9\x82\xe0\x16I\x97\x15\xefgE\xc7\xbb\x8b\x94!\x85\ +\xbeV(\x80u\xcb\xd0\xec\xd3 \xc4*Oq\xb7\x81\ +a*\xc9\x95J\x11\xaa\x97\xa0\xd53\x114\x17\x88\x03\ +\x9b\xe6\xe9L\x22\xc9\x93\x86\xf9\x12\xf7\x85{g\xe5\x1c\ +X\xd7j}\xf1\xc0b\x0d\xd9\xd4w}\xd3S\xe7:\ +\x9c\xb86\xe4\xec\xb9\xbbM\xbc\xf6\xfbw\xb0\x98\xffW\ +\xc5\xc6\xa9\xa7\xa6D\xde\xeb]\xb4CC\xba!\x12\xbb\ +h\xcc\x88\x07S\x9a\x05\xfc\xfe\xfb\xd4\x1d\xc5\x1f\xce_\ +QY\x10p\xe1f\x85\xe7U\xf5\x81z\xda\x92\xbd)\ +\x12\xf5\xcd+.qSu\xd9{G\xadx\ +\x9a\xea\xb2.qj\xef\xef\xafLm\x16\xf3\xce\x02Y\ +|\xea\xc6\x90\x80\xa9\xa7\xd2\xca7\x0e>6\xf6\xc2\xdd\ +\x0d\x99\xb3\x1e\xa8\x9a\xb0\x7f\xe8\x17\xd3k\xe8\xe0P\xe1\ +\xe0\xfd\x8e\x7f&\x96F]P7\xed1\xf2\xfb\xcf>\ +*\xfatl\xc75M\x1a\x93&\x0e\x166[gF\ +l\xba\x1f\x13\x13\xbc\xe8\x9c\xa4\xe3w\xd4\x06g2z\ +_\xe7\xeeO\xaf\xff\x11\xe37\xea\xcfF\xb7\x1c\x1c\xd7\ +\xe6g\xef\x9cn\xbd\x87\xb3\xe8\xe4\xea\xd5~\xcaE\x97\ +n,\xca\xf8\xb5\xfe\xd6\xc0\x87\x87\xa2CO\x1f\xaah\ +\xa6!S\xec\xbd\xdf\x99\xf9E\xec\x86\x1f\xc6\x08f;\ +\xff\xd1bM\xad\x8d9]sc\xfa(R3=\xf9\ +\x1f\xcf\x1a:\xa9\x8b\xcb\x1f\xc7\x0e\xc9\xbaM|gV\ +\x83-\x7fY&\xfd\xfe\xee\x9d\xf1\xa2\x03\xbc\x16\xdfD\ +\xaf\xbe\x10\xb6g\xe3\xa5\x07M\xe7\xac\x1f\xc2\xdbr-\ +\xac\xf1\xaa\x8fOe\x5ck?\xf4\xdedy=\xe1\xc7\ +Nv\xa7\xd7\xaf\x8b\xbb\xd4\xb1\xdf\xe0\x07\xd7F\xba\xc4\ +\xaf\x98\xd2q{\xfe\x85\xc2oR\x9c\xec>_\x9c\xf0\ +{\xe7\xaf\xd5\x97\xce4\xfb\xb3\xf8#e\xaboE\x9d\ +~\xdc\x97#.\xbe\xd5)r\xd7\xe6\xb8\xb8\xb9\xa3\xbf\ +\xcd|\x1a\xfa\xc1\xaca\x93X.\xbf\xef\xdb\xb8\xa0\x9f\ +cW\xde\xcf\xb7#N\xec\xf7\xe5\x8f\x1fqZZc\ +\x93\xce\xd4\xd2?\x17<\xba\x87\x0eq\xbcP\xf8\xed\xe5\ +\x9c93\xb2z\x8d\x96\xef\xdb3\x8f\xbb{\xc5\xae\xbf\ +\xaf\xb8g\x9ej-X\xb2\x5cro\xd4\xecO\xc8\xea\ +o\xa8\xc1\xab\xac\xca\xfe\xcb\xdd\xb4bW\xfe%\x8f\x9f\ +\xd3\xd6N\x1f|\xe8\xa7\xe2i\xac%\xbd\x14\x0f'\x08\ +E\xe1q\xbd/M\x5c2\xbex\xcb\xc0\x95e\xa9S\ +nx\x15\xa6]*Ox\xb8\xf6\xf3i\xbf\x1c/\x9a\ +\xd8\xf4\x8f\xa26m\x8emQ\x7f=kR\xf7\xab\x81\ +?\xed\xd4\x0ak/\xb8a5\xb4\xc8\xa9A\xe2\xa4\x05\ +\xb3{\xa9\x85\x7f\x9fSS\xbe\x91\x9a_\x1f\xcb6\x94\ +\xff9\xd5e\xf3\xe0\xa7\x09\x97\x8a\xbc2.m\xb8\xb8\ +V\x92\xdb~\xaa\xdd\x8a{K4\xe4t\xd3\x1d\xbe\xa1\ +\x9d\xfe^\xa8\x9eS\x91S\x96U6eDi\xf4\xd3\ +z\x0f\x124D\xbc\xb9\xa2YYVE\xd6\x89\xc7\x1f\ +?\x88\x89\xed\xbb\xed\xba\x86\xac\x8e\xccP_\xdb\xa3\xc3\ +\xfd|\xef\xef\xed5\xa4\xe7\x94k{\xb5\x98\xf1\xf1\xf7\ +K\xa6\xde\xae\xf7G\xe4\x8e\x00\x06\xf7\xba\xbc\xa8w$\ +0\x08\xd0a\xce\xff\x95\xa1\xdf\x9b\xc1}W\xcb\xa0\xb7\ +\x16\xd1\x97\x7f\x5c\xb9\xfc\xcaM\xefVq\x09\xdf\xf4j\ +\xfa\xe5\xd8\xa5{\xa7\xf5o\xdcr\xc7\xd9k\x1f)v\ +\xfe\x1e\xcf\xf6j\xf6\x15\xb4\xe7w\xed\xac\xd7\x8c\xb6\xeb\ +\xc3\x09\xed\x9f\xc2\ +i29\x0b\x5c\xcatX\x8f\xe2Wx\x06\x0f\x19\xca\ +\xb1>\x0e.\xa5-x\xb2\xe0<\x09E\xca\x8c\xd8\xf8\ +\xee\x03hW\xab[4\x07?\xd5C\x9e\x0bE\xe7\xb4\ +\xce\xca\x19\xbf\x9e\xfd8\x1cR\xb7\xe0,\xcaP\x80+\ +B\xf5\x83x\xb0X\xa2\x04\xe7\x8d\xfa\x10\xe2\xd2\xb1\xaa\ +\x0c\xccGO\xc0-i\x14\xc6Y\xe8\x03\xb8)@@\ +\x88{a\x83\xa4\xa7\ +\xa8\x1a\x0b\x8d\x0c\xd8\xb7\xda\xd8\xa3\xfet\x9fQ\x1e\xb9\ +\xcf\xf2\xaa\xc2\x93\xaf\x04/\x0c\xd6\x84\xec9\xcf\xf2\x92\ +\x16\x13\xb2\xed#B\xbc.<\xcbk\xf1%\x8cQ\xe8\ +\xb7\xad'\xf4\xda\xe3\x81\xe3E\xef\xf3gi\x12\x91?\ +*\xb42\xd4\x8a`D\xd0\xe3\xe7\x8f\xe4*\xd5\xc3\xe9\ +\xaa\xf5s9\xa87\x11x\xb3\x99\x0a\x0e\xac\xc7E\x12\ +\x8e\x9f\xe1 ~\xe9\x8aU\xcb\xd1>N\x92,\xc1u\ +\xbf\x84\x93\x00\xa3,M\x96\x02\xdd-\x13\xa7\xd1_r\ +K\x93U\xd7\x89/Y\xcd h\xc75\x04\xd7\xd5j\ +\xe26\xc2\x9f\xd4?\xe1F\xd8\xf7s\x89\x85\xab=a\ +\x0f[\x0e%Te\xbf\xf5\xb1M x\xe5\x0djz\ +S;\xee\xe9P\xc5\xa2\x935\x1b\x0f\xca4z\xa9E\ +\xa2\xe3\x06pD\x99\x8a1\xda2zueI\xec\xc0\ +H\xb9\x11o\xd2\x844'\xad\x89\x1f\x18\x9ap\x12A\ +:\x93n\xa4\x17\xe9K\x06\x90!\xe4?D\x04\xc6(\ +\x9d(\xc8X2\x89\xbcG\xa6\x93\x99d\x0e\xf9\x9c,\ +!+\xc8j\xb2\x96l$?\x92md\x17\xd9O\x0e\ +\x91_\xc8Ir\x96\x5c$\x97\xc8ur\x97\x14\x90\x22\ +R\x06\xee\xae5\xe5H\xb9R\xdeTS\xca\x97jG\ +\x05Q<\xaa\x13\xd5\x8d\xeaC\xc5QC\xa8D*\x85\ +\x92Q\x99\xd4$\xea\x03j&\x95E-\xa1\xbe\xa2\xd6\ +R\x9b\xa8\x1d\xd4~\xea(u\x8a\xfa\x9d\xbaL\xdd\xa6\ +\x1eR\xa5,6\xcb\x81\xe5\xc6j\xccj\xc9\x0a`\xf1\ +XQ\xac\xde\xac\x01\xac\xe1\xac\x14\xd6h\xd6\x04\xd6\x87\ +\xacY\xacE\xac\x95\xac\xefX[Y\xfbY\xbf\xb0\xce\ +\xb2.\xb1\xee\xb2\x9e\xb0\x09\xdb\x9e\xed\xc1n\xc6\xf6c\ +\xf3\xd8\xd1\xec\xbe\xec\xa1\xecd\xb6\x82=\x85=\x83\xbd\ +\x80\xbd\x92\xbd\x91\xbd\x93}\x98}\x86}\x89}\x8f]\ +bae\xe1j\xc1\xb1\xf0\xb3\x88\xb0\xe8i1\xd0B\ +d1\xdab\x8a\xc5\xa7\x16K,\xbe\xb5\xd8jq\xc0\ +\xe2\x8c\xc5e\x8b\x02\x0b\xb5\xa5\xa3e#\xcbv\x96\x02\ +\xcb\x18\xcb\xc1\x96)\x96c-\xa7[.\xb0\x5cc\xb9\ +\xc5\xf2\xa0\xe5Y\xcb\xeb\x96EVVV\x1eV\xad\xac\ +\xc2\xadzZ\x0d\xb1\x1ai5\xd1\xeaS\xab/\xac\xbe\ +\xb7\xdagu\xca\xea\xaa\xd5\x13kkko\xebv\xd6\ +\x1d\xad\xfbZ\x0b\xadU\xd6\xd3\xad\x17[\x7fg\xbd\xd7\ +\xfa\xb4\xf5u\xebb\x1b{\x9b\xa66A6\xddm\x86\ +\xda\xc8l\xde\xb7Y`\xb3\xcef\x8f\xcdi\x9b\x9b6\ +e\xb6\xf5m}m\x05\xb6}m\xc5\xb6\xe3mg\xdb\ +\xae\xb6\xddi{\xc2\xf6\xbam\x99\x9d\xb3]+\xbb\x8e\ +v\x03\xecF\xda\xbdg\xb7\xc8n\xa3\xddA\xbb?\xec\ +\x1e\xd9\xdb\xdb\xfb\xd8\xf3\xed\xfb\xdb\xa7\xd9O\xb3_d\ +\xff\x83\xfd\x11\xfb\xcb\xf6%\x0e.\x0em\x1d\xa2\x1d\x86\ +9d:\xccr\xf8\xc6a\x9f\xc3\xef\x0e\x8f\x1c\x1d\x1d\ +[:vv\x1c\xea\xa8r\x9c\xe5\xb8\xd61\xc7\xf1/\ +\xc7b'W'\x7f\xa7\x18'\xb1\xd3T\xa7\xa5N[\ +\x9dN;=\xa8g[\xcf\xb7^T\xbd\xff\xd4\x9bP\ +oA\xbd\xcd\xf5N\xd4\xbbW\xdf\xb6~\xcb\xfa\xd1\xf5\ +\x85\xf5\xa7\xd4_Z\x7fG\xfd\xf3\xf5\x9f8\xbb:s\ +\x9d\xfb:\xa7;\x7f\xea\xbc\xce\xf9\xa8\xf3-\x17k\x97\ +\x96.\xdd\x5c\xc4.\x1f\xba\xacr\xc9q\xb9\xea\xcav\ +m\xee\x1a\xed*r\xfd\xc0u\xb5\xebA\xd7\xebnV\ +n\xad\xdcb\xdcF\xba\xcdt\xdb\xe0v\xdc\xad\xc0\xdd\ +\xc5=\xc4=\xc1}\x9c\xfbR\xf7\xdd\xee\x97<\xd8\x1e\ +-=b<\xa4\x1e\xb3=~\xf48\xe7Q\xea\xd9\xd8\ +3\xcaS\xe2\xf9\x89\xe7F\xcf\xd3\x9eO\xbd\x1azu\ +\xf6\x92x\xcd\xf0\xfa\xde\xeb\xacW\xa97\xc7\xbb\x9b\xf7\ +(\xef\xb9\xde\xdb\xbc\xffl`\xd1\xa0m\x83\xfe\x0d\xc6\ +6X\xde\xe0`\x83{\x0d\xdd\x1aF4\x145\x9c\xd1\ +\xf0\xc7\x86\x17\x1a\xb1\x1a\xb5m\x14\xd7hb\xa3U\x8d\ +r\x1b=i\xdc\xa4q\x8f\xc6\x19\x8d\x177\xcei|\ +\xaf\x89G\x93\xceMF6\x99\xdfdO\x93\xdbM]\ +\x9bvj\x9a\xd6t~\xd3\xbdM\xefp\xdc9Q\x1c\ +)g\x11\xe7\x00\xa7\xa0Y\xa3f=\x9be6\xfb\xaa\ +\xd9\xf1fe>\xad|\x06\xfa\xbc\xef\xf3\xbd\xcf\x9f\xcd\ +\xed\x9a\xf3\x9a'7\x9f\xdf<\xbbyA\x8b\xa6-b\ +[Lj\xb1\xbe\xc5\x05_[_\x9eo\xaa\xefB\xdf\ +\xc3\xbeO[\xb6j9\xa8\xe5\xc7-\xb7\xb5\xbc\xd5\xca\ +\xabUL\xab\x09\xad\xd6\xb7\xfa\xa3\xb5c\xeb\xc8\xd6\xa3\ +[\xafl\xfdk\x1b\xab6\xbc6\xa3\xda|\xd1\xe6d\ +[V\xdb\xd0\xb6\xa9m\x97\xb6=\xd1\x8e\xd5.\xac]\ +Z\xbb/\xda\x9djo\xd9\x9e\xdf^\xd6~e\xfb\xf3\ +~\x0e~Q~c\xfc\xd6\xfb]\xf6\xf7\xf0\xef\xe3\xff\ +\xbe\xff6\xff\x07\x01-\x02\x86\x06\xcc\x0d8\x1c\xa0\x0e\ +\x0c\x0d\x94\x06\xae\x0e\xbc\xc8u\xe1\xf6\xe2\xbe\xcf\xdd\xc9\ +}\x18\xd46H\x14\xb44\xe8\xd7`\xc7\xe0\xee\xc1S\ +\x83\xb7\x07\x17\x86\xb4\x0b\x91\x84,\x0f\xf9-\xd454\ +6\xf4\xe3\xd0\xec\xd0\x8a\xb0\xf00E\xd8\xc6\xb0\xdb\xe1\ +-\xc2\x13\xc3\x97\x85\x9f\xe7\xb9\xf1\xfa\xf1>\xe5\x1d\xe1\ +[\xf2\xbb\xf0\xa7\xf2w\xf1K\x04a\x02\x95\xe0GA\ +~\x84_\xc4\xa8\x88u\x11\xb7:\xb4\xea \xe9\xb0\xba\ +\xc3\xd5\x8e>\x1d\x85\x1d\xbf\xeax\xa9\x13\xa7Sb\xa7\ +/;]\x8al\x16)\x8c\x5c\x19y\xa5s\xf3\xce\xe2\ +\xcek:\xdf\x8cj\x1352\xea\xbb\xa8\x07]\x02\xbb\ +(\xbal\xe9\xf24Z\x10=9z_Wv\xd7\x1e\ +]gt=\xde\xcd\xa5\xdb\xc0nK\xba\xfd\xd5\xdd\xa7\ +{J\xf7\xf5\xdd\x0bz\x84\xf6\x98\xd8c_O\xcb\x9e\ +\xbd{\xce\xedy>\xa6q\x8c(fmLA\xaf\xf0\ +^\x93{\x1d\xe8\xed\xd0;\xbe\xf7\x92\xdeW\xfa\xb4\xed\ +\xa3\xe8\xb33\x96\x15\xdb+v^\xec\x1f\xef\xf8\xbe#\ +{g[_\xd27\xa6\xef\xbc\xbe\x7f\xf6k\xd5ot\ +\xbf\x9f\xfb[\xf5\xef\xd7\x7fi\xff\x1bq\xdc\xb8Iq\ +\x87\xe3]\xe3G\xc4\xaf\x8b/\x1a\xd0e\xc0\xec\x01\x17\ +\x07\xb6\x1e\x9890;\xa1^\xc2\xb0\x84\xb5\x09O\x07\ +u\x1d\x945\xe8\xd2\xe0\x80\xc1\x93\x07\xff2\xa4\xc1\x90\ +\xb4!\xdb\x87Z\x0fM\x18\xbaf\xe8\x93w\xbb\xbd\xfb\ +\xf9\xbb\xd7\x87\x85\x0e\x9b>\xec\xdc\xf0V\xc3\xc7\x0d?\ +\xfa\x9f\x06\xff\x91\xfeg\xf7\x88z#\x84#6'Z\ +&\x0eJ\x5c\x97X.\xec+\x5c)|\x92\x14\x93\xb4\ +,\xa9@\x14-Z(\xba+\xee,\x9e/\xbe-\xe9\ +(\xc9\x92\xdcL\xee\x98\x9c\x95|+\xa5c\xca\xbc\x94\ +\xdb\xa9\x91\xa9\x0bR\xef\xa5E\xa7-I+\x1c\xd9s\ +\xe4\x8a\x91OG\xf5\x1d\xf5\xcd(\x8dt\x90\xf4\xfbt\ +\x9b\xf4\xc4\xf4\x1d2\x17\xd9(\xd9\x01y\x13\xf98\xf9\ +\xa9\x8cv\x19\xd33.\x8d\x16\x8c\xfe|t\x81\xa2\xb7\ +b\x8d\x92R\x0eWnW\xb9\x813\x95\x9b\xd9:\xf3\ +\xa3\xcc\xcbc:\x8dY:\xa6xl\xc2\xd8\xcd\xe3\x9c\ +\xc7\xc9\xc6\xe5\x8eo;\xfe\x93\xf17't\x9f\xf0\xf5\ +D\x8b\x89\xa2\x89\xd9\x93\x9aMzo\xd2\xe5\xc9Q\x93\ +\xbf\x9aBMI\x9a\x92=\xb5\xf9\xd4\x0f\xa7^\x9f\xd6\ +c\xda\xb7\xef\xd9\xbd7\xea\xbd\xbc\xf7\x03\xdf\xcfz\xff\ +\xf1\x07\x83>\xd8\xf9a\xe3\x0f\xa7}x\xf5\xa3\x1e\x1f\ +\xad\x9f\xee4]1\xfd\xfc\xc7\x11\x1f\xaf\xf8\xaf\xc5\x7f\ +\xd3\xfe{\xfc\x93\xe0O\x16\x7f\xa2\x9e!\x9eqlf\ +\xe0\xcc\x053\xcb?\x15}z\xec3\xeeg\x8b>\xd3\ +\xccJ\x9eu|v\xd8\xec\xe5s\xac\xe6\xc8\xe6\x9c\x9b\ +\x1b9\xf7\xdb,\xe7\xac\x09YW\xe7\xc5\xce\xdb:\x9f\ +3\x7f\xc6\xfc\xc7\x9f\x8f\xf8\xfc\xe8\x82\x90\x05+\x16\xda\ +-\xcc\x5cxiQ\x9fE\xdb\x17\xb7XY\xf6\xf4\ +\x0b\xf1\x17\xa7\x97w^\xbeqE\xe3\x153W\x94~\ +\x99\xf6\xe5o_\xf5\xf8j\xeb\xca\x96+\x17\xac\xb2Z\ +5f\xd5\x8d\xd5\x09\xab\x0f\x7f\xcd\xfbz\xed\x9a\x06k\ +f\xae\xa9\xf8F\xf6\xcd\xa5o\xe3\xbe=\xb06|\xed\ +\xdau\x8d\xd6\xcd^\xcfZ\x9f\xb9\xfe\xf6w\xc3\xbe;\ +\xb9\xa1\xeb\x86\xed\x1b\xfd6~\xf5\xbd\xc7\xf73\x7f \ +?d\xfepgS\xe2\xa6s?\xf6\xfe1{3o\ +\xf3\xc6\x9f|\x7fZ\xb6\xc5u\xcb\x8c\xad\xd4\xd6\xf1[\ +\x0b\xb6\xa5n\xbb\xb4}\xc8\xf6S;z\xed\xc8\xde\x19\ +\xb1s\xcb\xcf\xfe?\x7f\xb3\xab\xd9\xae\xa5\xbb\xddw\xcf\ +\xdec\xb7\xe7\xc3=\x9a\xbd\x13\xf6>\xd9\x97\xb1\xef\xde\ +\xfe\x94\xfdW\xb3Gd_\xcc\x19\x9c\xf3\xeb\x81\xfe\x07\ +\x8e\x1f\xec}\xf0\xc8\xa1\xee\x87r\x0eG\x1d\xde{\xa4\ +\xe3\x91]G\x05Gw\x1c\xe3\x1d\xdb\xf6K\xd8/[\ +sCs\xb7\xe4\x85\xe6m9\x1ev|\xeb\x89\xf0\x13\ +\xdbO\xf2O\xee<\xd5\xe1\xd4\x9e\xd3\x91\xa7\xf7\x9f\xe9\ +z\xe6\xd0\xaf1\xbf\xfer\xf6\x9d\xb3\xa7\xce\x0d<\xf7\ +\xdb\xf9a\xe7/\xfd&\xfe\xed\xd6\xef\xd2\xdf\x0b/\x8c\ +\xb9Pvq\xda\x1f\x96\x7f\xcc\xf8\xb3\xfe\x9f\x0b\xfej\ +\xf4\xd7\xca\xbf\xdb\xfc\xfd\xfd\xa5\xb0K\xbb/w\xbd\x9c\ +{%\xfe\xca\xc5\xab\xa2\xabw\xaf)\xaf\x95_\xff\xf0\ +\x86\xe3\x8d\x057\x9b\xde\x5c{+\xe8\xd6\xae\xdb\xddo\ +\x9f\xbc\xf3\xee\x9d\xebw3\xee\x96\xdd\x9b~\xdf\xf9\xfe\ +\xb2\x07\xad\x1f\xfc\x94\xdf9?\xb7`p\xc1\xf5BE\ +\xa1\xe6\xe1\xa7\x8f\xbc\x1f}\xf38\xe4q\xf6\x93~O\ +\xfe*J/*{:\xa3\xd8\xbb\xf8\xdb\x12^\xc9\xe1\ +\xd2A\xa57\xcb\xc6\x96[\x97/\xaahS\xb1S\xdd\ +[\xfd\x87&\xbd\xf2\xfe\x849\x98\x839\x98\xc3?*\ +XXXX:9997h\xd0\xa0Y\x8b\x16-\ +\xfcZ\xb5j\xc5m\xd9\xb2e\x80\x1e\x04\x1a\x82\x01\x0e\ +\x9d\xd6\xe5\xe9\x97c<@\x0f\xf7\x85\xb2*\xea\x06\x18\ +\xe00\x10\xd0\xbau\xeb C>\x06\xf2\x050\xfc\xf4\ +\xf1\xaaJ\xd7\xc4\xcb\x10\xdf\xa0\xbdt=\xd4S\xd3\xa6\ +M[\xb9\xba\xbaz\xc1:\xc4F\xefN\x83\xd1\x01\xeb\ +\xd4\xaf_\xdf\xad{\xf7\xee\x83?\xf9\xe4\x93\xf5\xdf\x7f\ +\xff\xfd\xc5\xdd\xbbw\xdf\xdb\xb7o_\x01\xc2\xfe\xfd\xfb\ +\x0b\xf5\xc10/;;\xfbaU8\x0c^U4\xaa\ +\x02}<\xc3:\x0c=}\x9aU\xe1W\xc7\xab\xba\xba\ +\x8c\xecU\xd5\xc72\xc3|C:{\xf6\xecy\xb0u\ +\xeb\xd6kK\x97.\xcd\x16\x89D\x93|}}\xfd-\ +--\xadj\xd7\xfa\xb3\xe0\xe2\xe2\xe21j\xd4\xa8\xe9\ +@\xeb\xfe\xb1c\xc7*rss5f\xa8;\x1c>\ +|\xb8d\xf1\xe2\xc5{CBB\xa2\x8c\xed\x03\xbcf\ +\x12\x12\x12\xa4999\x8f\xdf\xb6\xfc\xff\x06\xf8\xe5\x97\ +_\xd4\x0b\x17.\xdc\xed\xe3\xe3\xd3\xd6\x18[\xd4\xb8q\ +\xe3\x16k\xd6\xac9\xf9\xb6\xe5\xfe7\xc1\xa1C\x87\x8a\ +\x13\x13\x13\xc7\xc1\xd8\xb6\xaeI\xf7,\x08\x91\x91\x91}\ +\x0f\x1e\xae\x0dj\xd2\xbf\xb5\xb5\ +\xb5\xadJ\xa5\x9ak\x0a\xfd\xff\x93\xfb\x10ec\xe0M\ +\xc9\x8d\xfao\xde\xbcy\xfb\xda\xc6\xbf1\xfa\xc7r\xf0\ +\x91N\xe0\x1ac\xd9\xb2e9x\xfe\xe2\x8b/\x0e`\ +\x9c93q\x04\x98{\xf63y\xfau\xf4\xe3\xfa\xf8\ +L\x19\x93\xaf\x0f\xfayU\xc5\x99z\xfa<\xf5i\x1b\ +\xd23\x04C\xf9\xf5e3\x94\x03a\xc5\x8a\x15\x87q\ +\xedU\x9b\xfeqmf\xcc\xf8W*\x95sj\xd3\xff\ +\x91#GJ;t\xe8\xd0\x1b\xd7\xd8\xb0V\xf3\xc4\xb3\ +!0\xf9\xb8\x96sss\xf3f\xd2\x18G`\xe2\xfa\ +\xb8\xfae\x98\x87\xc0\xd4\xd5\x8fW\xc5O\xaf\x8e\x87>\ +_\xc3:\x0c}&\xce\xd0\xd5/c\xea\x19\xcaj\x18\ +\xc7\xba8\xa6\xb1\x0f\x8c\xd1\x7fm\xe3\x9f\xd1\x7fm\xb4\ +p]\xe7\xe7\xe7\xc7\xab\x89\xd6\xffJpvvvG\ +\xdf\xd2\x18\xfb\x83{\x115\xd12\xd6\xfe\xa3\xfe\xdb\xb7\ +o\x1f\xfe\xa6\xda\xf8O\x0e\xe8\xd3\xa3\x1d\xaaMg\xa6\ +\xb4?\xb8\x9e3\x8f\x7fm0V\xff8\xfeq\x7f\xb4\ +&Z8\xff\x1ak\x7f\xfc\xfd\xfd\xf9L\xbd~\xfd\xfa\ +\x89'L\x98\xb0\xa8\xae\xfb|\xff\x86\x80\xfa\xc7\xb9\xde\ +\x18\xfb_\x9b\xfe\x8d\x1d\xff\xfa\xf6\x07\xfb\x01\xd3\x98\xbf\ +|\xf9\xf2\x838/\xbd\x99\x96\xff3\x82\x93\x93\x93\x8b\ +\xb1\xf6\xdfT\xfe?3\xff6l\xd8\xd0\x07\xe9\xea\x97\ +m\xdb\xb6\xed\xba\xfe\xb5\xf1o\x0f\x8c\xfd\xa9M\xff\xe8\ +\xa3\x9a\xd2\xff\xe4r\xb9\x1d\x7f\xfe\xf9\xe7;\xd5\xcd\x0f\ +qqq\xc9oJ\x07o3\xe8\xfc\x9fZ\xed\x8f\xb1\ +\xe3?333\xcb\x18\xfb\xbfz\xf5\xea\xbc\xda\xf0`\ +NX\x5c\xdb\x9e\xab1\x01\xef\xf1)\x14\x8aY\xe8g\ +\xef\xde\xbd\xfb.\xf6\xaf\xfe\x1e!\xc61\x0f\xef\xd1!\ +\x0e\xee\xa1`\x9dW\xe5kL@\xfd\x1b3\xfe\x8dY\ +\xff\x1ak\x7f\xa0\xbd\xe5\xb5\xf1c\x00\xe7\x04ww\xf7\ +\x06umW\x9b6m\x82\xb3\xb2\xb2\xb6\xe6\xe4\xe4<\ +2\x96\x97!\xe0=\xa4y\xf3\xe6m\x07[\xf9\xda|\ +ec\xedO]\xe6\xdf\xdah\xd5u\x7fZ7'\x08\ +\x8ci\x0f\xfaR\xb8W\xfb\xb2:\xaf\x0e\xb6n\xddz\ +5>>>\xa5v\x09\xea\x16\xea2\xfe\x8d\x9d\x7fk\ +\xa3\x85\xd7\xba\x5c.\x9f\x89\xf3\x80\xb1\xed\xafmNh\ +\xd7\xae](\xea\xc8\xd4z\xaf\xa2\x1f\xae\x99r\xed\xc2\ +\xf8\x9f\xa6\xf4\xff\x8d\xf5\x7fp\x0e\xde\xb9s\xe7\xad\xba\ +\xb4\xdfpN\xb0\xb3\xb3s@\x1b\xf1\xba\xf5n\x08\x9f\ +\x7f\xfe\xf9N\x07\x07\x07\xa7\x9a\xf4aL0v\xfc\x1b\ +\xbb\xfe\xad\xeb\xfe\x83\x87\x87G\xa3\xaf\xbe\xfa\xeah]\ +\xda\xce\xcc\x09B\xa1p<\xb3vx\x1b\x80\xd7\xafX\ +,\x9e\xf4*\xfa\xc7\xf1\x8f\xfb\xa1\xc6\xe8\xdf\x18\xfbo\ +\x8c\xfeQn\xfd\xfd\x1f\xbcn\xa6L\x99\xb2\xbc\x8em\ +\x7fkz7\x04\xf4\x99, \xbc\x8c\xfe\x8d\xf5?\x8d\ +\xf5\xff\xd1\xff|\xd9\xfd\x9f\x84\x84\x84Qu\x99\x13\xfe\ +I\xb0k\xd7\xae\xbb\xde\xde\xdeM_F\xff\xc6\xda\x1f\ +c\xf6?_u\xff\xf9e\xe6\x84\x7f\x0a\xe0\xd8\xe9\xdc\ +\xb9s\xdf\xb7\xad\x7fc\xec\x7fM{\x0c/3'\xfc\ +S\x00\xdb\x9e\x98\x988\xb6.\xfaG\xfbo\x8c\xffS\ +\x9b\xfda\xee?\x1a3\xfek\xdb\xff\xd7\xcd\x09_ \ +~^^\xde[\xd7k]\xc1\xd8>\xa8\xcb\xfe\xbf\xa9\ +\xe6\xdf\xba\xdc\xff\x9a5k\xd6&S\xe9\x04\xd7\xdd\xf8\ +l\x1e\xfa,\x9d:u\x8a\x05\x1f\x0a\xef\x07z\xf2\xf9\ +\xfc\xeeuY\x93\x1b\x0b\xe8\x9f\x19\xa3\x7fc\xf7\x9fM\ +y\xff\xcb\x18\xfd'%%M0\x85\x1e\x8e\x1e=Z\ +\x96\x91\x911\xb3&\x1f\xe5u\xcd\xfb\xd8\x86\x7f\xa2\xfe\ +k\xdbc\xee\xd3\xa7\xcf\x08S\xb4\xff\x9bo\xbe9U\ +\xaf^=\x97\x9a{\xfa\xf5\xe9\x1f\xa1w\xef\xde\xc3k\ +\xd2\xbf\xb1\xfb\xcf\xc6\xe8\xdf\x18\xff\xb36\xfd\xe3\xb5a\ +\xaag\x18\xb7o\xdf~\xc3\x98\xbd\xa3\xd7\xa9\x7flK\ +u{x\xc6\xfa\xff\xc6\xd8\x7f\x9c3\xc7\x8c\x193\xef\ +U\xec\x0f\xf8>\x0da}\xf0\xd4\x94\xedG~qq\ +q5\xee\x9d\xbd\xeeu\x07\xb6\x09\xe7\x9b\xea\xf4o\x8c\ +\xff\xf3\xba\xed?>?\x0d\xbe\xff\xedWmku\xfe\ +\xd2\xc4\x89\x13\x97Tw?\xe1M\xac\xfbv\xec\xd8q\ +\x13\xdb\xa8\xcf\xd7X\xfbo\xac\xff\x89\xf7.\x8c\x19\x8f\ +U\xd9\x9f\x85\x0b\x17\xeez\xdd:X\xbe|\xf9!\xbc\ +\xc6\xde\x86\xfe\x11\xf0\x9e\x84>_\x1c\xff\xf8\x8eKm\ +c\x16\xdfK2\x95\xfd\xc7\xfd\x07C\xfd\x0f\x1c8p\ +\xe4\x9bh?\x02\xce\x09\x01\x01\x01\x11oC\xff\x08\xef\ +\xbc\xf3N\x92\xfe\xf87v\xff\xdfX\xfbS\x1b-C\ +\xfb\x83\xe3\x11}\xc47\xd5~F\x86\xf8\xf8\xf8\xca/\ +\xfe\xbcI\xfd#/\xe6]\x8a\xba\xf8\x9f\xa6\xba\xffn\ +\xa8\xffU\xabV\xe5\x9a\xa2]\xeb\xd6\xad;\x8b6\xb6\ +.u&M\x9a\xb4\x14\xe7\x847\xbd\xef\x07c~\x7f\ +]\xf4o\xec\xfd\xdf\xba>\xff\x83{\x86\xa6zf{\ +\xe8\xd0\xa1\x19x-}\xf9\xe5\x97G\xeaR\x0f\xf7\x8f\ +\xdf\xb4\xfe\xb1\xcd\xb8\xf66v\xff\xcdX\xff\xbf\xae\xf6\ +\x07\xe6\xa3-\xa6j\x93\x8d\x8d\x8d\x1d\xd2\xc4\xf1ZSW\xfdcx\x999\xe1\ +e\x01t4\x87\xe1\xab\xb3?o\xe5\xfd#\xc3\xfa?\ +\xfc\xf0\xc3\xc5Wm\x1b\xfat\xf8\xee\xf4\xcb\xf4\x01\xce\ +\x09x\x7f\xe0u\xea~\xc3\x86\x0d\xe7\xf5y\xe2\xfa\xd7\ +\x18\xfd\xbf\xae\xf5\xaf\x81,.\xa6\xf8v\xd0\xe6\xcd\x9b\ +\xff~\x19\xfdc\xc09\x01\xef\x93\xbd\x0e\xddC\xdb\x9e\ +\x18>3m\xec\xfck\xca\xfd7\x9c\xc3\xaa\xbb\xff\x8b\ +\xf7\xa9M\xf1,\xce\xf4\xe9\xd3\xbf}\xd9>\xc0\x80\xf7\ +\x8bM9'`\x9b\x18\x9b\xaf\x1f\xde\xf6\xfa\xab\xaa\xd0\ +\xbd{\xf7A\xa6\x98\x8f\xf1\xd9\xadW\xe9\x03|n\xc2\ +\x14\xcf\x02`[\xbav\xed:\xb0*\x1eu\xd9\x7f3\ +\xa5\xfek{\xfe\xc7T~\xf6\xbau\xeb\xceT\xf5\xdc\ +Am\x01\xe7\x02\xbc\x9fc\x0a\x19jzG\xc0\xd8\xf5\ +W]\xf6\x9fk\x93\xc7\xd8\xe7\xdf\xc6\x8f\x1f\xbf\xd0D\ +\xd7~\x05\xfa\xf9\xcc\xfd\x81\x9a\x02\xfa\xaf\xb8\xd65\xd5\ +\xf3G\xd8\x86\x9a\xf8\xbd\x8d\xf7_p\xff\xad]\xbbv\ +a\xb5\xe9\x02\x03\xee\xc7\x9bB\x0f\x08(\x17\xae{\xf0\ +\x19\x0d|O\x0f\xdf\x19C\xc08\xe6\xa1\xffe\xca\xfb\ +0@\xab\x02\x9f+\xa8\xa9}\xc6\xbe\xffej\xfbS\ +\x97w\xd8F\x8f\x1e\xfd\xa9\xa9t\xf26\x00\x9f\xe3\xae\ +\xee~B]\xde?5\xe5\xf3'\xc6\x8e\x7f&H\xa5\ +\xd2\x8f\xdf\xb6\x1e_\x05\xf0}\x86\xaa\xee'\x98\xfa\xfb\ +\x1b/\xb3\xff`l\xe8\xd5\xab\xd7\xb07\xfd\x9c\x8a)\ +\x01\xef7\x06\x06\x06v\xd0o\x93\xb1\xcf\x1f\x9ar\xfd\ +\xf5*\xdf\xffi\xd2\xa4IK\xf0\x85Mr\xff\xefm\ +\x00\xae}\xf4\xe7\x84\xba<\xff`\xaa\xf7\xafkZ\x7f\ +\x19\x13\xf0;A\xb8\xd7\xf9\xb6u\xc9\xc0\x86\x0d\x1b~\ +\xdb\xbe}\xfb\xf5\xba\xd4a\xe6\x04S\xde\x7f\xaf\xcb\xf7\ +\x97L\xf1\x0e9\xae\x11\xde\xe6\xfb\x92\xc8;99y\ +\x1a\xca\x82\xef#\xe3{\xc9u\xa9\x8fs\x02\xea\xd4\xd4\ +\xf7\xdf\xdf\x94\xfe1\xfc\x93\xde\x7f\xc7\xf1\x8c\xef\xe7\xd7\ +\x85\x0e>\x7f\x83\xef\x88\x98j\xfc\xbf\xad\xef\xef\xe1\xde\ +\xca\xe6\xcd\x9b/\xbdn\xbd\xe3\xb7=p\xcdP\x93,\ +\xf8\x9d\x0a\x9c\xe3\x8c\xa5Y\xdd\xb7\x5c\xf5\xc1\x94\xfb?\ +U=\xffl\xaa\x80>\x12\xac\xa3\xfe0\xb5\xde7m\ +\xda\xf4gM\xef\x11\x19\x06\xdc;\xc2\xef\xb6\x98\x8a\xbf\ +\xb1\xfa7\xd6\xfe\xd7\xd5\xff\xafk\xe0p8\xad\xf1\x7f\ +\x9f\xbc\x8a\xaf\x84\xcfY\xcd\x981c\x03\xfe\xef\x83\x97\ +\x91\xe1e\xe6\x84\xea\x00\xfd\x1fS~\x7f\xf5M~\xff\ +\xb3a\xc3\x86\xcdp\xaeF\x9b\x8d\xdf\xa8\xc1o2\xa1\ +\x0c\xb8\xc7\x83\x80\xf1\xec\xec\xecGX\x8680\xa7N\ +\xc5:\xa6\xe0\x8d\xbe\x1a~\xdb\xd1\x14\xe3\xdf\x94\xdf?\ +\xfc_\xfb\xfeg\xff\xfe\xfd%\xd5\xcd\x09\xf8\xecXm\ +\xfa\x7f\x9b\xfb?\xff\x96\x80s\x9e\xe1\x9c\x80\xef\xbb\x19\ +\xf3\xad\x857\xf1\xfe\xdd\xffB\xc0\xef\x9b2s\x02\xea\ +A \x10\xc4\x98\xf2\xfd\x17S}\xff\xe1\xdf\x1c\x989\ +\x01\xf7\xbdM\xfd\xfc\x95)\xbe\x7f\xf2\xbf\x14\xea\xb2\xff\ +f\xaa\xef\x9f\xbc\xea\xfe\xcf\xbf)\xd4\xe5\xfd\xf7\xd7\xf5\ +\xfc\xe1\xffrx[\xef?\x9a\xf5\xaf\x0duy\xff\xcb\ +T\xfe'\xda\x1f\x9c{\xf0\x99?\x5c\xa7\xeb\x01\x9f\x01\ +\xb4OxF\x1c\x1d\x1e\x9f\xc1\xc32\xfd<\xecK\xbd\ +\xfa\x02\xbd2\xbe\x1e\x0f\x86\xa6>?\x9a\x16\x02\xd2\xd0\ +\xaf\xa7\x0f\xfa4\x18y\xf4h\xf1u\xfc\xf9\xfeU\xb7\ +E\xc0\xb4\xa5*\xf9#\x22\x22z\xe1\xff\xc2y\x93\xfe\ +\x0f\xd3\x07x\x1d\xe8\x03\xaeO\x0c\xe3x\xd6\x8f\x1b\xd6\ +\xd1\xa7SU\x9d\xaah\xd7\xc4\xab&\x9eU\xd15\x86\ +6\xcah\xd8^}Z\xc6\xdc\xf37\xe5\xfd/3\xd4\ +\x1dL\xb9\xffl\x86\xba\x03\xee\x05\x1ac\x7fF\x8f\x1e\ +\xfd\xd9\xdb\x96\xf5\xdf\x08\xb8Oa\xc4\xff\x1f\xb4NJ\ +J\x9ah\x1e\xff\xa6\x07|\x16\xb2\xb6\xef\xbb\xb2\xd9l\ +\x0b|\xce\xd4\xfc\xffgM\x0b\xb8G\xfe\xfe\xfb\xef\xaf\ +rpp\xa8W\x93\xfe\xf1\xff3\xe3\xff\x8e\xff\xff\xfa\ +\xed\xd4\x7f*\xe0\xfb\xfbQQQ\xfdY,\x16\xbb&\ +\xfd3s@\xaf^\xbd\x86\x9b\xe2;bf\xd0\xfa=\ +\xf8\x8c\x05>\xa7R\x9b\xee\x99\x80\xffS)666\ +\x11\xbf\xeb\x83\xcf\xcf\xeb\xff\xbfP\xc3\xff\x1djL>\ +\x93\xae.\xbf&\x9c\xea\xca\xf4\xf3\x0c\xf3\x0d\xa1\xaa\xb2\ +\x9ahT\xc5\xdfXY\x11\xd0\xde\x1c8p\xe0\xc9\xd7\ +_\x7f}\xeb\xac_\xce\xc4\ +qO\x83I\xe3\xd90\x8d\x80u\xf5\xe2\xf3\xf5\xeb\xeb\ +\x83a=\xa4e(\x0f\x93\xc7\xc8d\x98\xa7_G_\ +\x16}Y\xf5A\x9f\x86a9\x961\xf9X_&\x93\ +\xcd\xc0\xef\xe6\xe2<\x8a\xfe\x0e>_\x83\xfa\xac\x8b\xfe\ +\xf5\xfb\x01\xff'9\xf6\x05\xd2\xb1\xb5\xb5\xb5\xc7xU\ +\x80v\xab\xba2c\x00\xeb\xbf*\x8d\x97\x95\xc5T|\ +\x19\xc0u\x14\xfa2/\xabws0\x07s0\x877\ +\x14\xd8_R\x04\xfdR\x0a~\xe4K\x16\xb1\xa0\xe3\x84\ +$~\xc9~\x16\xd7\xa2F\x89\xe5I\x12N\xbfT\xb9\ +J\xaeL\x95gp\xba\xcaE\x99\xe9\x12\x99\x8a\xd3U\ +\xa8\x12r\xbaH\xe5\xa2Q\x84\xd7%&6v\x80B\ +\x86\xf8\x18\xef#\x1c\xaf \xa4A\x02M\x87\xad\x03|\ +\x0em\x18\xb1\xd0h\x08q\xa0\xdfi\xb0\x88\xc2r8\ +\xb2\xf0\x88\xf5drE\xba\x86\xd8\xa0\x00\xcc\x13\xf7\xad\ +\x09\xc1\x1a\xb5\x83u|\xaa0C\xc2\xe1\x22\x1di\xa6\ +\x0c\xbf>\x83_\x8b\xb4&\xf1$\x95\x08I\x06\x91\x10\ +\x0e\xe1j\xe5\x93\xca\x94\x0a\x14@\x09U\xe8\xf4\xf84\ +1\xa6\x01\xbc1-\x92&I1M\xe9\xda\x93&K\ +\x1e\xa7+\xa7\xd3\xa3d\xa3\xe4\xfai\xa92#\xf9\xb9\ +\xb4H\x8a\xf4m\x18uc\x9e25\x1dy\xf4\xc4\xc6\ +\xd1<2\x95*]q\x08@}\x9d\xd6\xa1V\xbaD\ +%\x14\x83ru9\xb6R\xe1x\x89b@Z\xbaD\ +,\xcfL\x8a:\xc7+\xc9\x90\xf4\xb8B\xd3L\x1e\xa7\ +\xc8\xd0\xd5}>P\xd0\xea\xbe\xa4\x1eq v\xc4V\ +\xf7s'1\xa47q\x01\xad\xb8\x11O\xe2M\x1a\x00\ +\xb4&\xcdA+\xcd\xe1\xe7\x03\xe7\xc6\xa4\x11i\x02\xd0\ +\x92\xf8\x92\x16pl\x05\xd0\x02\xca\x9a\xd1\x18\x1c\xc0n\ +\x039\xdac\x0b\xc0\xc1Z\xbe4vK\xfa\xd7\x16\xea\ +6\xd2QiF\xff\x1aC\xac9p\xf3\x02p\x07\xbe\ +.\xc4\x15~\xb1\xa4\x0f-\x91\x0d\x80\x1d\xfc\x1c =\ +\x88p*\x88\x85\xa5s3?\xae:\xa0<\xd0\x8b\x1b\ +\x10\x10\xc8\xe5\x06\x06r\x03\x03\xb8\x01\xf4\x09\x93pP\ +\x07\xda\x05\x04a\x09\xe4\x06\x04\xa8\xb9$P\xcd\xb5\x0c\ +\xd4\x15\xa9\xb9\x9a@\x1b\xc0\x0f\xf0k\xe5eC\xa9\x89\ +\x86XSn\x83\xd7_\xbcWPPQH\x0a\xd4\x85\ +\xe4aE\xa1\xa6\x80*,(.d\x17\x14\x16B\x8e\ +\xba\xc0\xba\xb0\x00\xa3\x85\x05\xe5P\xd4\x10\x13\x0f1U\ +X\xf8\x10\x8f\x90,xp-{\x92\xbf\x15\x8c2\xc2\ +\xf6\x98~\xbfb\xb3\xc6\xa2do\x94\x15\x8cj\x1b\xe9\ +\xe3\x1f4l\xf5\xee\xb6\x14\x8b\xb48\xb9Q\xc3*\x1e\ +g\xcdb\xf5-\xda\xa0\xa1\xf6\xb9\xb1,\x15\x15\x10\xb9\ +\xdc\x9ce3]\x0d\x91\xfb\xedX6\xb31\x92\xef\xc7\ +\xb2\x9d\xab.\xd4\x10\xf5E\x8dZ]\x01\xe7{\x90\xd9\ +\x9ee3W]\xaa\xf1T\x9f\xc8\xce\xc9>\x90s \ +'\xe7\xc0\x81\xfd99\x90\x80?\x88\xab\xb3+r\xec\ +\xb21\x83\xce\xdb\xaf\xce\xd1\x1c(\xc9\xb1B<(\x86\ +T6u\xb8\xb0DC\x15\x00\xf59@\x88]\xda\xdb\ +\xcb\xb3\xdc\xcb\xc3\xd3\xcb\xc3\xdb\xd3\xcb\xdb\xdb\xcb\xdb\x8b\ +>yzz\xe3_\x99\x97\xb3\xa7\x07\x14A\x19\x94x\ +y{\x22B\x85\xb7\x0d\x8d\xe9\xed\xd9\xfe0\x92jO\ +\xd9\xce\x81s\x09o\x1f\xa1\xdc\xf7A,\xdf\x1fE/\ +\x85\xac\xf0}\x84\xe5\x96\x8dQ\x86!U\xcc\xab\xcc\xcb\ +\x0f\xa0l\xa0\xa6U\x09\x9f\x10\xf1\x22\xab\x83\x84r\xdb\ +\x8f\x04\x03\xb4\xa8\xd6%\xe1\x84_\xa29\xe8}\x88P\ +.4]?-]v\x09\xcf'_\xad\xa1\xae\xf3\x0f\ +C\x95l()\xd4Qg\x95v\xbcS\x0e<\x92\x8f\ +\x80(\xfb\xe9*\x94m\x16\x0a\x97\x07\x87\xc5\xd6\x85\xc4\ +\x91;\xeb\xf0\xdd\xe2\x0a\x8d\xa6\xa2\xf8\xde\xe1\xd9\xdc[\ +\x80\x87\x04@\xb14iR\xfeTC\x1dl\xf0\x84\xb0\ +\x82\xb7>z\xa4a=\xde\x1e~W\xc7\xa3 \x80n\ +'\xa9(\x02\xce\x82bB\x89/\xdf\xd7PWS\xee\ +3$\x80\xd5\xdc\x12\xe8\xdd\x99\xa5OQ\x842B\x85\ +^\xbd\xad\xa1\xae\xf1\xf2\xa1\xc1\xfb\xb5\x0df\xd9\xcc\xd1\ +6\xa0\xe3\xad\x22\x8d\xe5bk0s\xdb\xafk\xa8\x9d\ +N\x85:*\x05\xba6Z@\xe3\x1b\x1d-\xd2\xb0\x0f\ +6\x18_rUC\x95Nz\x08r\xe4\xe8\xd4\x83\x18\ +\x96\xa5\xe1`\x07\x96\x17iH\xc9\xdf\x1a\xea\xb0\xc5c\ +]\x93Q\x17YZMW\x10jT\xe9\xaf\x1a\xean\ +\xd3'\x0cy\x7f\xa6\xb3\xca\x09\xd5\xf1\x16\x94\x95\xf6-\ +\xaa,\xd3uQ\x09\x1fdot\x14\x0a\xd5c\x9f\x12\ +\x96{\x0e-\xbb\x1fe3\x17k\x86\x97\x12\xca\xe6\x8b\ +3\x1a2\xb6\xb8\xb2s\x03\x98\x0e\xe7\x15\x13\xb2)_\ +c]~rR\xac\xb7g\xf7\xf2\xfb\x1a2\xbe\x84\xe9\ +\xd7\xcaa\xc1+!dB\x81\x86U6\xd3\xa2\x8c\x90\ +\xd2{\x1a2\xa1\xf4\x05$~)!#\x0a4\xd4)\ +\x17\xc0.\xbd\xab!\xc3\xcb\x98\xde\xf6\xd7\xb5\x90\x16\x94\ +W\x01H7\x04Z$\xaa\x22\xbc\x5c\xa7\x07\x10\xcaf\ +\x9e\x96\x1dd5|\xfa\x00b)@\xb3\xf4\x8e\x86z\ +\xea]\x01\xed\xd2\xf6\xc93\xa9@]\xac\xdb@c\x89\ +u9\xa0A\xd7\xddd\xa9uba\xebgc\xeb\xf9\ +\x15\x84\xec\x82\xa2C\x0d!RzKC\xb6\xaa\x81\xd2\ +^$\xf0\x80\x11\xab\x98\xaf&d\xe4M\x90*\x02\x22\ +\xa575\x16I0\xcf\xd0c\xc4\x9f\x1e#\x96%<\ +B\x1a\x96\xdd\x80^N\xd5\x22\x94\x82\xc1\xdd\xafw]\ +Z F.4\xec\xec\xcd\x22\x0dk\xa9u\xe9\x0d\x0d\ +{\xbf\x16\x05\x87\xea\x1c\xdd\x08i\xaa\x06-f4<\ +\x02C\xf20\xa2\xa8=\xdd\xb5\x0a\xa2\xd9\xc00#[\ +\xf25l;b\xbd\x0c\x86\x89\xfa\xba\x86\xf5\x03=\x84\ +\x18\x05\xb2\xe1\xca\xbbS\xa0!\xa5\xd0\xf24\x1c\xb5e\ +\xf3Jz\x92\x12\xa0y\xcb5[\xaf3\xd8\xc0\x0ar\ +I!(2\x02\x04\xa2\x96ZC\xbf=(\x80\x02w\ +\xed\x00\xd0!\xb2\x80c\xbe\x86\xdc\x82n\xd1\x0a\xd5\x10\ +4y#_\xa3S\x22C\xae\x98G\xca\x80\xdcC\xe8\ +t\xeb\xa5E\xa8'Pf\x01\x0e\x08\xddE\xfb\x8c\xed\ +}\x14\x0f.\xb6\xd4\x12\x10\xaf4\x0d\xf4\x09\x82\xb0\xef\ +i\xc7]a\xa5|\x05\xe9\x0e\x03\xdb#\x93\xf35,n\xa5hY\ +:\xa5\x92+\xc0\xf3X\x91V6R\x0a\xec.\x90\xca\ +\x8b\x87\xe9\xbdH0\xcdT\xb9\xc3\x13\x94\x0c\xfaO\x1d\ +L\xb4\xa2kQ\xe0*\x01I\x17\x03\x9d5\x8fQ\xa4\ +[\x1a\x8b90\x04\xf4\x8d\x18=\xde\xc8E\xa0R\xe6\ +\x018\x0d\x0f\xdd\xd1\x90\xf30\xdc\x5c\xf7=w\x15\x84\ +C\xd7\xb8\x14\xc14\xf0\xf7#\x10h\x09\xcc\x01O\x9c\ +\x98A\xa9\xebf\xaa\x14\x07x8LL\xe4[0\x12\ +)%\xa0\xef\xf2\xe0\x8aJ\x0bXI\x0aze\x10\xce\ +(\x9b\x00K\xf0\x148\xab\x07BEW}\xb3\xa3\xbd\ +\xec&\xc3\xc0;\xe3\x0dmkx\x16\x9a0\xa9\x0cF\ +\xb8N\xdf:k\x8a\x17\xf0B\xe8\xaf\x8a\xa5v%\x84\ +\xe5\xb0\x0c.A\xb2\xb0\xd4\xc0\x84Q\xc5a`\x0d\xe6\ +\xe5kl\xd5\x17f\x8bCC\xc5\xb3/\xaaA\xb4\x8a\ +\x91\xa5\x8c=|\xc6\x95\xf7\x94\x90OOk\xa8/\xe0\ +\xd2\xd3\x99\xdb\xca\xab)\xac\x88\x90\x8f\xa1\xec(\x5cr\ +\xcc\x0c\xa1\xd32\x0fd\x1cVvFC\xdd\xea\xa0f\ +.\xe8J\xdd\x15\xf3@\xaf-\x1f\x9c\x01K9\x92h\ +{\xb0\xd0\x8f\xd1\x18h\xd3\xea\x18\xd8\xcd\xdf\xae\x83\x8d\ +\xfd\xc2Z7\xdc\xe9\xf9\x08\xc8\x825\x9e\x5cz\x15.\ +\xcbi\xa4\xc1A@8\xea\xaf\x1b\xe6\x0c\xdf\x02B\xe9\ +\x0c7t\x86\xf5b\x18LwNi\x85\xb6\xd1)\xfb\ +\x01\xa1\x82/\x81\xa1\xb8\x1c\x0azI.~\xaa\xd1h\ +\xad(#\x1c\xff\x1e\x88\xfe\x07\xcc \x7f\x0e\x87\xf1(\ +\xb8\x9e\xaf\x9dAh\xfeaw\x08\xab\xf5\xfa\x070\xff\ +<\xd8\xd0\x16\x1a\xd1\xe0 tH!3\xcf\x86\xdf$\ +\x8e\xcd&\xef\xbc\xfa\xa8\xa4\xa2\xa2\xe4\xd1\xd5\x9dS\x9b\ +\x814V\x8b\x0a\xe9\xf9Eg\xc1y0gJ\x8a\xcb\ +\xe1\x1a{\xaesy0\xc7\xf2\xaf\xc3\xd4y\xfb\xe8s\ +\xf34\xef\x00\xb1\xf4>\xa8)\x89\xd1\xda f\x0c\xe7\ +\x10\x0b\xabE\xe2\xca\x0bD79\xec\xab\xd4\xb4nJ\ +(\xa5g\xfe\xfd\xfa\x9d\x863?\xf5\x9cE\xd3e\xe5\ +\xe8f(\xdaZ\x94\x8a#\xd4\x025\xdf\x9d\xc7\x8f\x88\ +\xe0\x0b\x04<8\x84\x0b\xf8\x82\x08>?B\xc0\xe7U\ +\x084<*<\xa2\x9co\x0b\xa9\x88\x08\x9e\x80\x1f\xce\ +W\x0b4|[\x01O\x8b\xdc\xeb\x04#m1\xda\xb0\ +\x12\x9b\xe2\x92\x92\xe2\x92b\xf8\xab(\xb1*\xd5\xc6\xd5\ +%\x04\xc0I[B\x97A\x0c\xca1\xd7\x12\xe3\xa5\xa5\ +\xea\x12M1U\xa2\xae\xbc\xec60\xfd\x08\x91\x07@\ +\xfd\xb3\xef@_\xedX\xd6\x131\xe3lS\x96\xc5\xc0\ +\x22p\xe2*V\xd5cQ\xad\x8eB\xecf\x7f6\x9b\ +\xd8\x0e\xbf\x0dN^\xc14W\xf4\xff\x5c\x12s\x9f\x96\ +\x81cY\x0e\xa0V\xb34j8Z\x02@\xa4Bm\ +G'\xe1\x00\xc7r<\x80\xf5\xc0T\x19\x80\x86F.\ +W[U<9.\xf5D_\xd2\x86\xb2\xf3O\x9c\xbe\ +`aV\x96z\xae&\xcbu^V\xd6\xdc\xac\xac9\ +s\xb3\xe6\x22\xcc\x9d7w\xee\xfc\xb9\xe5Y\x96\x18\x9f\ +\x03\x18\xf5\xe6de\xcd\x83X\xd6\x1c\x1a!kN\xc5\ +\x5c6\xa4\xe7\xa8\xe7\xda\xcf\x9b3'k\xc6\xf8\x81\xed\ +\x1c`\xb9\x00N4ei\xe7`_\x06\x8e\xffC;\ +\x8dm\x01\x9c\x8b\x00\x1e\xd8\xb1l,\xa8\x0a\x5c\x1a\xb0\ +j\xf8Y\x81;nE\xff\x9caY\xe1\x00?'p\ +\xd3\xb51\x078\xbb@\xbe\x1b}\xf6\x00p\x82%\x86\ +=\x1c\x9d\xe8\x85\x86\x03}\xb4\xa1q\xb4\xcb\x0cw\xfa\ +\xecI\x83\x16\xc3\x11~\x0et\x0d\xfc\xb9\xeax=\xfb\ +U#\xd7\xb7\xb9\xd5\xff\x1e\xe7\xee\xd7<\x81#\xf4G\ +\xeeA\x88\xe5\xe7\x1e\x82\xe3\x83\xdc\xc3p\xbc\x9f{\x04\ +\x8ews\x0b\x09;/77\xaf8\x97\xe4\xdd\x22O\ +r\xef\xe4\x82\x17x\x04-\x92\xe3\x15:\x8d\x92\xe3\ +\x05t\xd7B\xcb\xf2\xca+5_\x00\x95N?\x01\xf5\ +\xe6W*\x1f\xe6\xcf\xbc\xfb\xa0~r\x12QKu\xfd\ +H\xf2\xee\xe6jNh\xe8\xc6Py\xba\xbe\x83\xe91\ +\xefd\xae\x96\xdaSr\x22W\xcb\xab\x88\xce\xd5J\x02\ +\xf3[n\xde)\x9d\xfaa&\xb8\x81\x03*\xef\x16$\ +\x1e\x02\xd6%h\xfeM\x88\x17\xea\x06\xa0\x9a`I>\ +\xc8\x0a=x\xa2\x14\x9a\xf48\xf7>\xcd\x1a\x07\xd8]\ +H\xdd%j\x1c\xd0\xa0\x82{\x90\xbaE,N\xe0\x90\ +/\x05\x91N\x14\x90\xfb\x90uX\x93\x0f\xc7C\x9a\x02\ +8\x1e\xd4\x14\xc2\xf1\x80\xe6a\xe5\xe5cx\xac\xeer\ +3\x1b\x10\xb3\x011\x1b\x10\xb3\x011\x1b\x10\xb3\x011\ +\x1b\x10\xb3\x01y\x0b\x06D{\x8f)V9\x8a\x10\xb8\ +\x84\xe9\xfb?t\x08\x9a\xa6\xbb\xd7\xd2O\xa8R1\xf7\ +]\xbak\xf1\x1c\xf4\xf1\xf0\xf0\x7f\xa8-\xb6Q\ +\x00\x00\x09a\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a Sky Icon / \ +System / View\x0a \ +Created with Ske\ +tch.\x0a \ +\x0a \x0a \ + \x0a \ + \x0a \ + \x0a \ + \ + \ +\x0a \ + \ +\x0a \ + <\ +/path>\x0a \ + \x0a \ + \x0a \x0a \x0a\ + \x0a\x0a\ +\ +\x00\x00\x14\xc4\ +I\ +I*\x00b\x07\x00\x00\x80?\xe0@\x08$\x16\x0d\x07\ +\x84BaP\xb8d6\x1d\x0f\x88DbQ8\xa4V\ +-\x17\x8cFcQ\xb8\xe4v\x0b\x02\x7f\xc7\xa4R9\ +$\x96M'\x94JeR\xb8\xa4\x82Y/\x98Lf\ +S9\xa4\xd6a.\x9bNgS\xb9\xe4\xf6}#\x9c\ +O\xe8T:%\x16\x8d/\xa0\xd1\xe9T\xbae6\x9d\ +\x1f\x81\xd3\xeaU:\xa5V\x91Q\xabVkU\xba\xe4\ +B\x93]\xb0XlU*\xfd\x8e\xcdg\xb4N\xec\xb6\ +\x9be\xb6\xdd&\xb5\xdb\xeeW;\xa4J\xe3u\xbc^\ +o7{\xd5\xf6\xfdi\xbe_\xf0X:\xde\x07\x09\x87\ +\xc4Sp\xd8\x9cf6\x7f\x8b\xc7drS<\x86O\ +-\x97\x93\xe5s\x19\xbc\xe4k5\x9d\xd0hk\xd5\x8d\ +\x16\x97M-\xd2Q\x00:\xbb\xf4\x805\x05\x1d\xc1F\ +PQ\x8c\x14;\x05\x08\xee!.\xf8+\xc2\x0a\xe3\x82\ +\xb3\xe0\xac\xe8+\x13V\x01s_s\xf9MM\x0f\x8f\ +l\x90\x06\xe0\xa5\xc8)B\x0a7\x82\x80f\xd2\x18#\ +.\x0a\xaf\x82\xa9x\xfc\x0bG.e\xe6\x98\xf3\xeb\xb2\ +\x01\xc4\x14\xe1\x05)\xc1@\x95g\xe7~\x0a\x90\xe3\xb1\ +\xbd|\xda\x17\xa2`\xf5,\x88\x13n\x82\x11\xa8(\xaa\ +\xbd\x15\xa8(\xe4\xe3\x9cJ\x9b\xfc\xab\xbb\x8a4\x00\xa2\ +\xa4\x002\x0a9\xa0\xa3\xda\x0a\x05\xb1\x07\xb2\x0aB\xa0\ +\xa4k\x8e|\xa8\xf0zY\x13%p\x9a|\x90\x08\xc8\ +)&\x82\x84\xcd\x11\xb6\x82\x8d\xce9p\xa1\xc5\x09T\ +r\x94\xc5Na\xfe\x01 \xa4\x1a\x0a=4\xe8y\x11\ +\x0c\xb8\xe7\xf2s\x1d\xa5\x12bO\x1e\xc4\xe8\x10 \x82\ +\x94\xc8(\x93\x22\xa2\xd1\xba\x08,\xb8\xed\xf3\xce\xfe1\ +\xf3\x02}(3(\x10T\x82\x96\x08(K,#\xa6\ +\xe3\xaa\xe3\x9a\xb0\x82\x95'$\xd3\x22D\x90\x08o\xb2\ +\x08\x06\xcd\x899\xe8\x82\x8a.9x\x94\xce\x89-\x0a\ +\x92N\xcc\xf2\x04\x22\xa0\xa5\x8a\x0a\x04\xcf\xa9\x81\xf0\x82\ +\x89\xce9wCLI\xed\x0e\x91\xd1(\xacYF\xa0\ +\xa0B\xa4\xe4\xa0\x85b\x0a[\xa0\xa7\x0a\x0ar#\xe8\ ++^\x82\x17\xa8(8\xaeRh \x9e\xe3\x97H\xf5\ +7;\xd3)\xe5:\xd1\x9f\xe2<\xd1P\xa9\x87\x02\x0a\ +:;\xf2J,\x90M\xc8 F\xb1V\xa0\x00\xa0\xe3\ +\x974T#\x0aW\xa9\xdd~\x85\xa4\x01\xaa\x0a`\xd1\ +\xeaa\x18\x82\x8f\xce9\xef] Vh\x01g\xac\xf0\ +\xf2\x08\x1f\xb8\xe6e\x97l\xa7U\xda=m\xa0\xc9\x00\ +<\x82\x99((0\xa3IH \xd8\xe3\x92\xf4%\xd2\ +\x82\xdd\x8ba\xce\xeb\xbck\xb5\xe9%\xe1\xe9\xb5\xb6\x90\ +\x01\xc8)\x8a\x82\x85\x8a`\xc8\xe3\x93\xb0\x85\xd5\x84\xad\ +\xe6\x92\x0a\x1e8\xe7\x9a\x1d{#\xb9B9;$\x0e\ +\xd2\x08Y\xa0\xa2Z\x98P8\xe3\x0c}\x8f\xafE\x94\ +\xde\xd5\xda\xf7\xce\x22\x9a\xe5H\xdeX\x81\x0f\x92\x0d\x8a\ +\x82\x85W6o\x840C\xbb\x8eE!Z\x0d\xac\xa5\ +EI\x00z\x82\x97\xe8(\x06\xa6\x0c\xae99\x88\x1f\ +\xf9\xc2\xfe\xfa\xa0\x99#W~\xaa\x19\xecq\x9f\xa6\x8e\ +~(\x82\xe4H >\xa6UH J\xe3\x9f{\x06\ +\xc4\xc2Fh `\xe3\x9e\xda\x923\xc1#\x1br\x05\ +\x02\xa0\x83\x92\xa4D\xb8\xe3\xc55\x83\xd9\xccq\x02\xe3\ +\x90\x1c\x22/\xcb#2\x9a\x08\xf2\x00\x00b\xa4 8\ +\xf7\x02yfi\x8ckx\x82_h$\xfe\xa3s\x08\ +\xc0\xec\x82\x91*\x95\xce\x82\x01\xfb\xc7\x1f\xb0\xf4\xac\x97\ +\x14\x82\x11\xf1.\xd8\x9b\x16\xa8(\x94\xa9\x1b\xae8I\ +\xb5\x9f\xe1\x12\x0a\x02\xa5\x99\x86\xec\xa9y\xc0\x00\x9d\xdf\ +mJ)\xb3\x18*F+\x8e\x1e0i\x06\xb2\x82\x08\ +\x0a\x91\xb0\x82\x85>\xa2\x9bw\x00\x14\x82\x9eZ8\xe2\ +o\xba\x81<\x08#\xac\xa7\xfd\x10\xe7Y\xdf\xa6\xa6\xfa\ +\x0a\x10*F3\x8elL\x11 \x18D\x15\xab\x94\xf1\ +\xbc\xeeJ#\xad\x22\xea\x5c\x82\x04B\xa47\x8e; \ +9D\x08m&\xa2\xa4\xb5H H|\xc51#\x90\ +@\xeeT\x96\x8b\xb55c\xe8\xba\x92\x07\x98A\x12\xf0\ +\x00\x01EHB\x10P\xfb\x06\xca[s \x83u\xad\ +\x15 \x86q\xc5\xf4% O\x84\x82=\xf2\x9d\x09\x08\ + ! \xaa\x91l=R~\xe1\x87\xf8\xa9 \xa1X\ +\xa9\x10\x04`\x06\x06u\x00A\xa0\xf0\x88L*\x17\x0c\ +\x86\xc3\xa1\xf1\x08\x88\x01\xff\x14D\xc1\xce\xd1(\xccj\ +7\x09O@\xc0&8\xa3\xfe9$\x92\xc2$Ri\ +Lr?\x13\x8a\x08\xa0\xed\x0886U4\x8d8\xe0\ +\xe2H\xfb\xeak<\x9e\xc2\xa4@h;r\x0e\x1d\x9f\ +Q\xa1N\xf88\xb6>\xe5\x94Q\xe8\xf4\xea|\xfaY\ +'\x8a\x17\xa0\xea\x1a\x95j\x0ci\x8f\xa6+v\x08\xcc\ +\x88\xd1\x07K\xd8i\xe5x\xfa\xaa\xab#\xb3\xca\xaa6\ +\xe9-R\x17\x22O\xc1\xcc\x17\x19\xa3\x8a\x0e*\x8f\xbd\ +o6\x19\x102\x0e\xd6\xa2`%)\xa8\xf9\x9e\x19p\ +\xc3\xd8\xa2\x98\xe9\x5c\x0e\x1b\x22\x04A\xd8\xd0q\x8eF\ +H\xa5\x8f\x973t\xf9\x12\x9a\x0eY\xd0F\xd9\x90q\ +\xe4}\xf3\x8c\xc8i\xa28\xdd|2\xe7\x0e\x91\x07 \ +\xec\x988ke\x125\xc7\xd2\xdb\xc8\xe4\x88\xdb\x07I\ +pb\x0eH8\xe2\x99\x10\xd8\xf1\xe0\xfc\xeex\x03i\ +\xb0\x8a\x0c \xec8>\x0f\xa5'\x83\x9d#\xe8\xee\xe4\ +&E\x05\x83E\xa0\xc0\x1f\x14\x1d\xe7\xa9\x8f\xb4\xa3]\ +\x1e\x7f\xc7\x8f\xd4\xf8E\x090u\x94\x1c\x09\xea\x85Y\ +\x90a\xdd\x1f{\x18\xe4\x88\x0eA\xc8\xb4\x1cf\x7fP\ +\x93\xf1\x07\x13\x11\xf2\xe5%|\xdc\x18M\xbc}RD\ +\x89\x9fA\x8a\x04\x1c\x03\x82\xd0\x83\xa1\x07\x1e\x10r\x99\ +\x1f>\xd3\xe5\x01\x07\x16\xd0r\x1d\x07\x05\xe1\xf4\x1c\xfd\ +]\xd1\xf2\x914\x85[(\xdd\xaf\x85\xd2\x94\x88XA\ +\xca7\xee0B\x8f\x04\x1c\xb0A\xcb\x84\x1c\xe1A\xdc\ +\x94)\xb7A\x81\xf4\x1cHA\xc5\x04\x1c\x10\x90\x90\x98\ +\xc9\x06\x17\x11\xf2\xa2(k\xa0\xb8\xe5\xa6\x8e\xd3T\x88\ +T\x89\x10p\x16W\x9a\x97\x985\x06\x16Q\xf2\xb1R\ +\x98Z\x09\xcd\x9b\x98\xe5\xe3\xfeTA\x8at\x1d\x96\x9a\ +\xe7\xf4\xf4\xf8i\x11\xf9\x19`\x9dY\x1a\x1d\x8e\x9d\xda\ +\x14P3A\xca\xe4\x1c\x1e\xa0)4i{A\x854\ +}\xa8\x5ch\x96\x1e\x9c`(\xb5m\x22\x05\x10yu\ +\x06\x10\xe9J\xa1\x08/\xd0u\xa5\x03:\xe8\x89}\xfd\ +\xa7\x97\x9a\x81gH\xa1\xe4\x18\x88w\xaa\x99\xa9\xe1A\ +\x87d~Y\x9d+\x17\xaa\xb3\x5ckZ\xc0\xff~\x10\ +bE\x07\x09k\xc6\x99CA\x86\xf4|\xb6x\xace\ +\xba\xd8Y\xec\x86\x9a)A\x87$\x1c{v\xad\x05\x1d\ +\x7fA\x88d\x1c\x8dj\xe1\xfbi\x81\xb1\x1e+q\xd2\ +H\x81\xb4\x1c\x8aA\xc5\xab\x91&\xa9@\x01\xd5\x1f\x93\ +'\xfb\xb6\x86\xbb\xdd\xcb\xc60H\x83$\x1cnA\xe3\ +\xe4\x18\x07\xaaZ\xc4\x19k\xb3\x11\xf36\xf9KV\xd9\ +\x83\x03t\xb0ZM\x22\x05j\xc9M\x07\x0f\xe4\x16\x82\ +m\x00\x0c)\x15\x07*Q\xf3\xab\x16kq\x8a\xcb\x1a\ +s\xf1\xcc\xb9\x06H\xa5d\x188fs\xb4\x19EA\ +\xb3\x80\x00\x11B\xe4D\x19IA\x93t\x191A\x8c\ +\xf4\x1c\xc8G\xf4l\xd5\xf6\xcc,\x5c\xcbQ\xd5\xb5}\ +a\xbc\xc0u\x9ds]\xd7\xb5-\x7fa\xd8\xb64\xf7\ +[\xd96}\xa3.\xd9\xb6\x9d\xb3m\xa06\xbd\xbbq\ +\xdc\xb5MOs\xdd\xb7{Cp\xde7\xbd\xf2\xd9\xd5\ +w\xde\x03\x81\xd6\xb7\xfe\x0b\x85\xe1\x97\x9d\xeb\x87\xe2\xb8\ +\xb6\xd7\x84\xe38\xfeA&\xe2y\x1eS\x86\xe4\xf9^\ +c}\xe5\xf9\x9esv\xe6\xf9\xde\x83m\xe7\xfa\x1e\x93\ +d\xe8\xfa^\xa3^\xe9\xfa\x9e\xb3W\xea\xfa\xde\xc3\x16\ +\xeb\xfb\x1e\xd2\xa9\xec\xfb^\xe3\x00\xe3\xbb\x9e\xf3d@\ +@\x13\x00\xfe\x00\x04\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x01\x01\x04\x00\x01\ +\x00\x00\x00`\x00\x00\x00\x02\x01\x03\x00\x04\x00\x00\x00L\ +\x08\x00\x00\x03\x01\x03\x00\x01\x00\x00\x00\x05\x00\x00\x00\x06\ +\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x00\x11\x01\x04\x00\x01\ +\x00\x00\x00\x08\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\x00\x04\ +\x00\x00\x00\x16\x01\x04\x00\x01\x00\x00\x00`\x00\x00\x00\x17\ +\x01\x04\x00\x01\x00\x00\x00Z\x07\x00\x00\x1a\x01\x05\x00\x01\ +\x00\x00\x00T\x08\x00\x00\x1b\x01\x05\x00\x01\x00\x00\x00\x5c\ +\x08\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00(\ +\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\x00\x10\ +\x00\x00\x00d\x08\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\ +\x00\x00\x00R\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x00S\ +\x01\x03\x00\x04\x00\x00\x00t\x08\x00\x00s\x87\x07\x00H\ +\x0c\x00\x00|\x08\x00\x00\x00\x00\x00\x00\x08\x00\x08\x00\x08\ +\x00\x08\x00\x802\x02\x00\xe8\x03\x00\x00\x802\x02\x00\xe8\ +\x03\x00\x00paint.net 4.0\ +.9\x00\x01\x00\x01\x00\x01\x00\x01\x00\x00\x00\x0cHL\ +ino\x02\x10\x00\x00mntrRGB X\ +YZ \x07\xce\x00\x02\x00\x09\x00\x06\x001\x00\x00a\ +cspMSFT\x00\x00\x00\x00IEC s\ +RGB\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xf6\xd6\x00\x01\x00\x00\x00\x00\xd3-HP \x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11c\ +prt\x00\x00\x01P\x00\x00\x003desc\x00\ +\x00\x01\x84\x00\x00\x00lwtpt\x00\x00\x01\xf0\x00\ +\x00\x00\x14bkpt\x00\x00\x02\x04\x00\x00\x00\x14r\ +XYZ\x00\x00\x02\x18\x00\x00\x00\x14gXYZ\x00\ +\x00\x02,\x00\x00\x00\x14bXYZ\x00\x00\x02@\x00\ +\x00\x00\x14dmnd\x00\x00\x02T\x00\x00\x00pd\ +mdd\x00\x00\x02\xc4\x00\x00\x00\x88vued\x00\ +\x00\x03L\x00\x00\x00\x86view\x00\x00\x03\xd4\x00\ +\x00\x00$lumi\x00\x00\x03\xf8\x00\x00\x00\x14m\ +eas\x00\x00\x04\x0c\x00\x00\x00$tech\x00\ +\x00\x040\x00\x00\x00\x0crTRC\x00\x00\x04<\x00\ +\x00\x08\x0cgTRC\x00\x00\x04<\x00\x00\x08\x0cb\ +TRC\x00\x00\x04<\x00\x00\x08\x0ctext\x00\ +\x00\x00\x00Copyright (c)\ + 1998 Hewlett-Pa\ +ckard Company\x00\x00d\ +esc\x00\x00\x00\x00\x00\x00\x00\x12sRGB \ +IEC61966-2.1\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x12sRGB IEC\ +61966-2.1\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XYZ \x00\ +\x00\x00\x00\x00\x00\xf3Q\x00\x01\x00\x00\x00\x01\x16\xccX\ +YZ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00XYZ \x00\x00\x00\x00\x00\x00o\xa2\x00\ +\x008\xf5\x00\x00\x03\x90XYZ \x00\x00\x00\x00\x00\ +\x00b\x99\x00\x00\xb7\x85\x00\x00\x18\xdaXYZ \x00\ +\x00\x00\x00\x00\x00$\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcfd\ +esc\x00\x00\x00\x00\x00\x00\x00\x16IEC h\ +ttp://www.iec.ch\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16IEC \ +http://www.iec.c\ +h\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00d\ +esc\x00\x00\x00\x00\x00\x00\x00.IEC 6\ +1966-2.1 Default\ + RGB colour spac\ +e - sRGB\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00.IEC 61966-2.\ +1 Default RGB co\ +lour space - sRG\ +B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00desc\x00\x00\x00\x00\x00\ +\x00\x00,Reference Vie\ +wing Condition i\ +n IEC61966-2.1\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00,Refere\ +nce Viewing Cond\ +ition in IEC6196\ +6-2.1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00v\ +iew\x00\x00\x00\x00\x00\x13\xa4\xfe\x00\x14_.\x00\ +\x10\xcf\x14\x00\x03\xed\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\ +\x00\x00\x01XYZ \x00\x00\x00\x00\x00L\x09V\x00\ +P\x00\x00\x00W\x1f\xe7meas\x00\x00\x00\x00\x00\ +\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x8f\x00\x00\x00\x02sig \x00\ +\x00\x00\x00CRT curv\x00\x00\x00\x00\x00\ +\x00\x04\x00\x00\x00\x00\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\ +\x1e\x00#\x00(\x00-\x002\x007\x00;\x00@\x00\ +E\x00J\x00O\x00T\x00Y\x00^\x00c\x00h\x00\ +m\x00r\x00w\x00|\x00\x81\x00\x86\x00\x8b\x00\x90\x00\ +\x95\x00\x9a\x00\x9f\x00\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\ +\xbc\x00\xc1\x00\xc6\x00\xcb\x00\xd0\x00\xd5\x00\xdb\x00\xe0\x00\ +\xe5\x00\xeb\x00\xf0\x00\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\ +\x13\x01\x19\x01\x1f\x01%\x01+\x012\x018\x01>\x01\ +E\x01L\x01R\x01Y\x01`\x01g\x01n\x01u\x01\ +|\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\ +\xb9\x01\xc1\x01\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\ +\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02&\x02/\x028\x02\ +A\x02K\x02T\x02]\x02g\x02q\x02z\x02\x84\x02\ +\x8e\x02\x98\x02\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\ +\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\x16\x03!\x03-\x03\ +8\x03C\x03O\x03Z\x03f\x03r\x03~\x03\x8a\x03\ +\x96\x03\xa2\x03\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\ +\xf9\x04\x06\x04\x13\x04 \x04-\x04;\x04H\x04U\x04\ +c\x04q\x04~\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\ +\xd3\x04\xe1\x04\xf0\x04\xfe\x05\x0d\x05\x1c\x05+\x05:\x05\ +I\x05X\x05g\x05w\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\ +\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\x16\x06'\x067\x06\ +H\x06Y\x06j\x06{\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\ +\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07+\x07=\x07O\x07\ +a\x07t\x07\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\ +\xf8\x08\x0b\x08\x1f\x082\x08F\x08Z\x08n\x08\x82\x08\ +\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09%\x09\ +:\x09O\x09d\x09y\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\ +\xe5\x09\xfb\x0a\x11\x0a'\x0a=\x0aT\x0aj\x0a\x81\x0a\ +\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b9\x0b\ +Q\x0bi\x0b\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\ +\x12\x0c*\x0cC\x0c\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\xc0\x0c\ +\xd9\x0c\xf3\x0d\x0d\x0d&\x0d@\x0dZ\x0dt\x0d\x8e\x0d\ +\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e.\x0eI\x0ed\x0e\ +\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f%\x0fA\x0f\ +^\x0fz\x0f\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10&\x10\ +C\x10a\x10~\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x11\ +1\x11O\x11m\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12\ +&\x12E\x12d\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13\ +#\x13C\x13c\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14\ +'\x14I\x14j\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x15\ +4\x15V\x15x\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16&\x16\ +I\x16l\x16\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17A\x17\ +e\x17\x89\x17\xae\x17\xd2\x17\xf7\x18\x1b\x18@\x18e\x18\ +\x8a\x18\xaf\x18\xd5\x18\xfa\x19 \x19E\x19k\x19\x91\x19\ +\xb7\x19\xdd\x1a\x04\x1a*\x1aQ\x1aw\x1a\x9e\x1a\xc5\x1a\ +\xec\x1b\x14\x1b;\x1bc\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c\ +*\x1cR\x1c{\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1dG\x1d\ +p\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e@\x1ej\x1e\x94\x1e\ +\xbe\x1e\xe9\x1f\x13\x1f>\x1fi\x1f\x94\x1f\xbf\x1f\xea \ +\x15 A l \x98 \xc4 \xf0!\x1c!H!\ +u!\xa1!\xce!\xfb\x22'\x22U\x22\x82\x22\xaf\x22\ +\xdd#\x0a#8#f#\x94#\xc2#\xf0$\x1f$\ +M$|$\xab$\xda%\x09%8%h%\x97%\ +\xc7%\xf7&'&W&\x87&\xb7&\xe8'\x18'\ +I'z'\xab'\xdc(\x0d(?(q(\xa2(\ +\xd4)\x06)8)k)\x9d)\xd0*\x02*5*\ +h*\x9b*\xcf+\x02+6+i+\x9d+\xd1,\ +\x05,9,n,\xa2,\xd7-\x0c-A-v-\ +\xab-\xe1.\x16.L.\x82.\xb7.\xee/$/\ +Z/\x91/\xc7/\xfe050l0\xa40\xdb1\ +\x121J1\x821\xba1\xf22*2c2\x9b2\ +\xd43\x0d3F3\x7f3\xb83\xf14+4e4\ +\x9e4\xd85\x135M5\x875\xc25\xfd676\ +r6\xae6\xe97$7`7\x9c7\xd78\x148\ +P8\x8c8\xc89\x059B9\x7f9\xbc9\xf9:\ +6:t:\xb2:\xef;-;k;\xaa;\xe8<\ +'\ + >`>\xa0>\xe0?!?a?\xa2?\xe2@\ +#@d@\xa6@\xe7A)AjA\xacA\xeeB\ +0BrB\xb5B\xf7C:C}C\xc0D\x03D\ +GD\x8aD\xceE\x12EUE\x9aE\xdeF\x22F\ +gF\xabF\xf0G5G{G\xc0H\x05HKH\ +\x91H\xd7I\x1dIcI\xa9I\xf0J7J}J\ +\xc4K\x0cKSK\x9aK\xe2L*LrL\xbaM\ +\x02MJM\x93M\xdcN%NnN\xb7O\x00O\ +IO\x93O\xddP'PqP\xbbQ\x06QPQ\ +\x9bQ\xe6R1R|R\xc7S\x13S_S\xaaS\ +\xf6TBT\x8fT\xdbU(UuU\xc2V\x0fV\ +\x5cV\xa9V\xf7WDW\x92W\xe0X/X}X\ +\xcbY\x1aYiY\xb8Z\x07ZVZ\xa6Z\xf5[\ +E[\x95[\xe5\x5c5\x5c\x86\x5c\xd6]']x]\ +\xc9^\x1a^l^\xbd_\x0f_a_\xb3`\x05`\ +W`\xaa`\xfcaOa\xa2a\xf5bIb\x9cb\ +\xf0cCc\x97c\xebd@d\x94d\xe9e=e\ +\x92e\xe7f=f\x92f\xe8g=g\x93g\xe9h\ +?h\x96h\xeciCi\x9ai\xf1jHj\x9fj\ +\xf7kOk\xa7k\xfflWl\xafm\x08m`m\ +\xb9n\x12nkn\xc4o\x1eoxo\xd1p+p\ +\x86p\xe0q:q\x95q\xf0rKr\xa6s\x01s\ +]s\xb8t\x14tpt\xccu(u\x85u\xe1v\ +>v\x9bv\xf8wVw\xb3x\x11xnx\xccy\ +*y\x89y\xe7zFz\xa5{\x04{c{\xc2|\ +!|\x81|\xe1}A}\xa1~\x01~b~\xc2\x7f\ +#\x7f\x84\x7f\xe5\x80G\x80\xa8\x81\x0a\x81k\x81\xcd\x82\ +0\x82\x92\x82\xf4\x83W\x83\xba\x84\x1d\x84\x80\x84\xe3\x85\ +G\x85\xab\x86\x0e\x86r\x86\xd7\x87;\x87\x9f\x88\x04\x88\ +i\x88\xce\x893\x89\x99\x89\xfe\x8ad\x8a\xca\x8b0\x8b\ +\x96\x8b\xfc\x8cc\x8c\xca\x8d1\x8d\x98\x8d\xff\x8ef\x8e\ +\xce\x8f6\x8f\x9e\x90\x06\x90n\x90\xd6\x91?\x91\xa8\x92\ +\x11\x92z\x92\xe3\x93M\x93\xb6\x94 \x94\x8a\x94\xf4\x95\ +_\x95\xc9\x964\x96\x9f\x97\x0a\x97u\x97\xe0\x98L\x98\ +\xb8\x99$\x99\x90\x99\xfc\x9ah\x9a\xd5\x9bB\x9b\xaf\x9c\ +\x1c\x9c\x89\x9c\xf7\x9dd\x9d\xd2\x9e@\x9e\xae\x9f\x1d\x9f\ +\x8b\x9f\xfa\xa0i\xa0\xd8\xa1G\xa1\xb6\xa2&\xa2\x96\xa3\ +\x06\xa3v\xa3\xe6\xa4V\xa4\xc7\xa58\xa5\xa9\xa6\x1a\xa6\ +\x8b\xa6\xfd\xa7n\xa7\xe0\xa8R\xa8\xc4\xa97\xa9\xa9\xaa\ +\x1c\xaa\x8f\xab\x02\xabu\xab\xe9\xac\x5c\xac\xd0\xadD\xad\ +\xb8\xae-\xae\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0u\xb0\xea\xb1\ +`\xb1\xd6\xb2K\xb2\xc2\xb38\xb3\xae\xb4%\xb4\x9c\xb5\ +\x13\xb5\x8a\xb6\x01\xb6y\xb6\xf0\xb7h\xb7\xe0\xb8Y\xb8\ +\xd1\xb9J\xb9\xc2\xba;\xba\xb5\xbb.\xbb\xa7\xbc!\xbc\ +\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\x84\xbe\xff\xbfz\xbf\xf5\xc0\ +p\xc0\xec\xc1g\xc1\xe3\xc2_\xc2\xdb\xc3X\xc3\xd4\xc4\ +Q\xc4\xce\xc5K\xc5\xc8\xc6F\xc6\xc3\xc7A\xc7\xbf\xc8\ +=\xc8\xbc\xc9:\xc9\xb9\xca8\xca\xb7\xcb6\xcb\xb6\xcc\ +5\xcc\xb5\xcd5\xcd\xb5\xce6\xce\xb6\xcf7\xcf\xb8\xd0\ +9\xd0\xba\xd1<\xd1\xbe\xd2?\xd2\xc1\xd3D\xd3\xc6\xd4\ +I\xd4\xcb\xd5N\xd5\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\xe0\xd8\ +d\xd8\xe8\xd9l\xd9\xf1\xdav\xda\xfb\xdb\x80\xdc\x05\xdc\ +\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf)\xdf\xaf\xe06\xe0\ +\xbd\xe1D\xe1\xcc\xe2S\xe2\xdb\xe3c\xe3\xeb\xe4s\xe4\ +\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe82\xe8\xbc\xe9\ +F\xe9\xd0\xea[\xea\xe5\xebp\xeb\xfb\xec\x86\xed\x11\xed\ +\x9c\xee(\xee\xb4\xef@\xef\xcc\xf0X\xf0\xe5\xf1r\xf1\ +\xff\xf2\x8c\xf3\x19\xf3\xa7\xf44\xf4\xc2\xf5P\xf5\xde\xf6\ +m\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf98\xf9\xc7\xfaW\xfa\ +\xe7\xfbw\xfc\x07\xfc\x98\xfd)\xfd\xba\xfeK\xfe\xdc\xff\ +m\xff\xff\ +\x00\x00\x081\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / outl\ +iner / slice / n\ +ot active - save\ +d copy\x0a \ + Created\ + with Sketch.\x0a <\ +/defs>\x0a \x0a \x0a \ + <\ +/path>\x0a \ + \x0a <\ +path d=\x22M14.9826\ +165,6.50282053 C\ +14.7276121,2.868\ +84654 11.6988335\ +,0 8,0 C6.821531\ +33,0 5.71107957,\ +0.29121506 4.736\ +68211,0.80560781\ + C5.52211072,1.5\ +7704166 8.929157\ +37,4.97484587 10\ +.4514738,6.50452\ +22 C10.82345,6.5\ +0282053 14.72604\ +01,6.5045222 14.\ +9826165,6.502820\ +53 Z\x22 id=\x22Combin\ +ed-Shape\x22>\x0a \x0a \ + \x0a \x0a\ + \x0a\x0a\ +\ +\x00\x00\x09\x94\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a Artboard\x0a \ +Created with Ske\ +tch.\x0a \ +\x0a\ + \x0a \ + \ +\x0a \ + <\ +/rect>\x0a \ + \x0a \ + <\ +/path>\x0a \ + \x0a \x0a \x0a\x0a\ +\x00\x00\x02\xad\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a Icons / Sys\ +tem / Carat / Wh\ +ite / Default\x0a \ +Created with Ske\ +tch.\x0a \ +\ +\x0a \x0a \ +\x0a\x0a\ +\x00\x00\x8e\x0c\ +I\ +I*\x00\x08\x00\x00\x00\x19\x00\xfe\x00\x04\x00\x01\x00\x00\ +\x00\x00\x00\x00\x00\x00\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x01\x01\x03\x00\x01\x00\x00\x00`\x00\x00\x00\x02\x01\x03\ +\x00\x04\x00\x00\x00:\x01\x00\x00\x03\x01\x03\x00\x01\x00\x00\ +\x00\x05\x00\x00\x00\x06\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ +\x00\x11\x01\x04\x00\x01\x00\x00\x00`V\x00\x00\x12\x01\x03\ +\x00\x01\x00\x00\x00\x01\x00\x00\x00\x15\x01\x03\x00\x01\x00\x00\ +\x00\x04\x00\x00\x00\x16\x01\x03\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x17\x01\x04\x00\x01\x00\x00\x00\xd9\x15\x00\x00\x1a\x01\x05\ +\x00\x01\x00\x00\x00B\x01\x00\x00\x1b\x01\x05\x00\x01\x00\x00\ +\x00J\x01\x00\x00\x1c\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\ +\x00(\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\x001\x01\x02\ +\x00\x22\x00\x00\x00R\x01\x00\x002\x01\x02\x00\x14\x00\x00\ +\x00t\x01\x00\x00=\x01\x03\x00\x01\x00\x00\x00\x02\x00\x00\ +\x00R\x01\x03\x00\x01\x00\x00\x00\x01\x00\x00\x00\xbc\x02\x01\ +\x00\x1a;\x00\x00\x88\x01\x00\x00\xbb\x83\x07\x00\x0f\x00\x00\ +\x00\xa2<\x00\x00I\x86\x01\x00f\x0d\x00\x00\xb2<\x00\ +\x00i\x87\x04\x00\x01\x00\x00\x00\x0a\x0a \x0a\ + \x0a \ + Adobe Photosho\ +p CC 2015.5 (Win\ +dows)\x0a \ + 2017-03-07T11:3\ +2:29-08:00\x0a \ + 2017-04-04T\ +11:28-07:00\x0a \ + 2017-04-\ +04T11:28-07:00\x0a image/tiff\ +\x0a \ + 3\x0a sRGB IEC61966-\ +2.1\x0a \ + \x0a \x0a \ + a\ +dobe:docid:photo\ +shop:94a27cdb-04\ +33-11e7-b02d-9f8\ +4d9f5a326\x0a \ + adobe:\ +docid:photoshop:\ +acaee4ff-1960-11\ +e7-bae7-e6e7a5cd\ +2814\x0a \ + \x0a \x0a \ + xmp.iid:\ +fa5f33a4-5729-d3\ +41-9ab8-5edce3a2\ +68a4\x0a \ + adobe:docid:p\ +hotoshop:696e80e\ +4-1964-11e7-8c4b\ +-d6fec7ab83c2\ +\x0a xmp.did:ca77\ +1a70-f965-e14f-9\ +103-360465543dbf\ +\x0a \ + \x0a \ + \x0a \ + \x0a \ + crea\ +ted\x0a \ + xmp.iid:c\ +a771a70-f965-e14\ +f-9103-360465543\ +dbf\x0a \ + 2017-03-07T\ +11:32:29-08:00\x0a \ + Adobe Photosh\ +op CC 2015.5 (Wi\ +ndows)\x0a \ + \x0a \ + \x0a \ + saved\x0a \ + \ +xmp.iid:16fdf09c\ +-857d-944e-9783-\ +e127cb1b9cf4\x0a\ + \ + 20\ +17-03-08T11:37:4\ +5-08:00\x0a \ + Adob\ +e Photoshop CC 2\ +015.5 (Windows)<\ +/stEvt:softwareA\ +gent>\x0a \ + /\x0a \ + \x0a \ + \x0a \ + saved\x0a \ + xmp.\ +iid:fa5f33a4-572\ +9-d341-9ab8-5edc\ +e3a268a4\x0a \ + 2017-0\ +4-04T11:28-07:00\ +\x0a \ + \ +Adobe Photo\ +shop CC 2017 (Wi\ +ndows)\x0a \ + <\ +stEvt:changed>/<\ +/stEvt:changed>\x0a\ + <\ +/rdf:li>\x0a \ + \x0a\ + \x0a \ +\x0a \ +\x0a\x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a\ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \x0a \ + \ + \ + \ + \ + \ + \ +\x0a \ + \x0a\x1c\x01Z\x00\x03\x1b%G\x1c\x02\x00\x00\x02\x00\x00\ +\x008BIM\x04%\x00\x00\x00\x00\x00\x10\xcd\xcf\xfa\ +}\xa8\xc7\xbe\x09\x05pv\xae\xaf\x05\xc3N8BI\ +M\x04:\x00\x00\x00\x00\x00\xe5\x00\x00\x00\x10\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x0bprintOutp\ +ut\x00\x00\x00\x05\x00\x00\x00\x00PstSbo\ +ol\x01\x00\x00\x00\x00Inteenum\x00\ +\x00\x00\x00Inte\x00\x00\x00\x00Clrm\x00\ +\x00\x00\x0fprintSixteenB\ +itbool\x00\x00\x00\x00\x0bprint\ +erNameTEXT\x00\x00\x00\x01\x00\x00\ +\x00\x00\x00\x0fprintProofSe\ +tupObjc\x00\x00\x00\x0c\x00P\x00r\x00\ +o\x00o\x00f\x00 \x00S\x00e\x00t\x00u\x00\ +p\x00\x00\x00\x00\x00\x0aproofSetu\ +p\x00\x00\x00\x01\x00\x00\x00\x00Bltnenu\ +m\x00\x00\x00\x0cbuiltinProo\ +f\x00\x00\x00\x09proofCMYK\x008\ +BIM\x04;\x00\x00\x00\x00\x02-\x00\x00\x00\x10\x00\ +\x00\x00\x01\x00\x00\x00\x00\x00\x12printOu\ +tputOptions\x00\x00\x00\x17\x00\ +\x00\x00\x00Cptnbool\x00\x00\x00\x00\x00\ +Clbrbool\x00\x00\x00\x00\x00Rgs\ +Mbool\x00\x00\x00\x00\x00CrnCbo\ +ol\x00\x00\x00\x00\x00CntCbool\x00\ +\x00\x00\x00\x00Lblsbool\x00\x00\x00\x00\ +\x00Ngtvbool\x00\x00\x00\x00\x00Em\ +lDbool\x00\x00\x00\x00\x00Intrb\ +ool\x00\x00\x00\x00\x00BckgObjc\ +\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00RGBC\x00\x00\ +\x00\x03\x00\x00\x00\x00Rd doub@o\ +\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00Grn do\ +ub@o\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00Bl\ + doub@o\xe0\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00BrdTUntF#Rlt\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Bld Un\ +tF#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00RsltUntF#Pxl@b\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0avector\ +Databool\x01\x00\x00\x00\x00PgP\ +senum\x00\x00\x00\x00PgPs\x00\x00\x00\ +\x00PgPC\x00\x00\x00\x00LeftUnt\ +F#Rlt\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00Top UntF#Rlt\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00Scl Unt\ +F#Prc@Y\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x10cropWhenPrintin\ +gbool\x00\x00\x00\x00\x0ecropRe\ +ctBottomlong\x00\x00\x00\x00\ +\x00\x00\x00\x0ccropRectLeft\ +long\x00\x00\x00\x00\x00\x00\x00\x0dcrop\ +RectRightlong\x00\x00\x00\ +\x00\x00\x00\x00\x0bcropRectTop\ +long\x00\x00\x00\x00\x008BIM\x03\xed\x00\ +\x00\x00\x00\x00\x10\x00\x90\x00\x00\x00\x01\x00\x01\x00\x90\x00\ +\x00\x00\x01\x00\x018BIM\x04&\x00\x00\x00\x00\x00\ +\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00?\x80\x00\x008\ +BIM\x03\xee\x00\x00\x00\x00\x00\x0d\x0cTran\ +sparency\x008BIM\x04\x15\x00\ +\x00\x00\x00\x00\x1e\x00\x00\x00\x0d\x00T\x00r\x00a\x00\ +n\x00s\x00p\x00a\x00r\x00e\x00n\x00c\x00\ +y\x00\x008BIM\x045\x00\x00\x00\x00\x00\x11\x00\ +\x00\x00\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00d\x01\ +\x008BIM\x04\x1d\x00\x00\x00\x00\x00\x04\x00\x00\x00\ +\x008BIM\x03\xf2\x00\x00\x00\x00\x00\x0a\x00\x00\xff\ +\xff\xff\xff\xff\xff\x00\x008BIM\x04\x0d\x00\x00\x00\ +\x00\x00\x04\x00\x00\x00\x1e8BIM\x04\x19\x00\x00\x00\ +\x00\x00\x04\x00\x00\x00\x1e8BIM\x03\xf3\x00\x00\x00\ +\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x01\x008BI\ +M'\x10\x00\x00\x00\x00\x00\x0a\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x018BIM\x03\xf5\x00\x00\x00\x00\x00H\x00\ +/ff\x00\x01\x00lff\x00\x06\x00\x00\x00\x00\x00\ +\x01\x00/ff\x00\x01\x00\xa1\x99\x9a\x00\x06\x00\x00\x00\ +\x00\x00\x01\x002\x00\x00\x00\x01\x00Z\x00\x00\x00\x06\x00\ +\x00\x00\x00\x00\x01\x005\x00\x00\x00\x01\x00-\x00\x00\x00\ +\x06\x00\x00\x00\x00\x00\x018BIM\x03\xf8\x00\x00\x00\ +\x00\x00p\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\ +\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\ +\xe8\x00\x008BIM\x04\x00\x00\x00\x00\x00\x00\x02\x00\ +\x008BIM\x04\x02\x00\x00\x00\x00\x00\x02\x00\x008\ +BIM\x040\x00\x00\x00\x00\x00\x01\x01\x008BI\ +M\x04-\x00\x00\x00\x00\x00\x06\x00\x01\x00\x00\x00\x038\ +BIM\x04\x08\x00\x00\x00\x00\x00\x10\x00\x00\x00\x01\x00\ +\x00\x02@\x00\x00\x02@\x00\x00\x00\x008BIM\x04\ +\x1e\x00\x00\x00\x00\x00\x04\x00\x00\x00\x008BIM\x04\ +\x1a\x00\x00\x00\x00\x035\x00\x00\x00\x06\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\x00\x00\x00\x00\ +\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00`\x00\x00\x00`\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x00null\x00\x00\x00\x02\x00\x00\ +\x00\x06boundsObjc\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x00Rct1\x00\x00\x00\x04\x00\x00\ +\x00\x00Top long\x00\x00\x00\x00\x00\x00\ +\x00\x00Leftlong\x00\x00\x00\x00\x00\x00\ +\x00\x00Btomlong\x00\x00\x00`\x00\x00\ +\x00\x00Rghtlong\x00\x00\x00`\x00\x00\ +\x00\x06slicesVlLs\x00\x00\x00\x01\ +Objc\x00\x00\x00\x01\x00\x00\x00\x00\x00\x05sl\ +ice\x00\x00\x00\x12\x00\x00\x00\x07slice\ +IDlong\x00\x00\x00\x00\x00\x00\x00\x07gr\ +oupIDlong\x00\x00\x00\x00\x00\x00\x00\ +\x06originenum\x00\x00\x00\x0cE\ +SliceOrigin\x00\x00\x00\x0da\ +utoGenerated\x00\x00\x00\x00\ +Typeenum\x00\x00\x00\x0aESli\ +ceType\x00\x00\x00\x00Img \x00\x00\ +\x00\x06boundsObjc\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x00Rct1\x00\x00\x00\x04\x00\x00\ +\x00\x00Top long\x00\x00\x00\x00\x00\x00\ +\x00\x00Leftlong\x00\x00\x00\x00\x00\x00\ +\x00\x00Btomlong\x00\x00\x00`\x00\x00\ +\x00\x00Rghtlong\x00\x00\x00`\x00\x00\ +\x00\x03urlTEXT\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00nullTEXT\x00\x00\x00\x01\x00\ +\x00\x00\x00\x00\x00MsgeTEXT\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x06altTagTEX\ +T\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0ecellT\ +extIsHTMLbool\x01\x00\x00\ +\x00\x08cellTextTEXT\x00\x00\ +\x00\x01\x00\x00\x00\x00\x00\x09horzAlig\ +nenum\x00\x00\x00\x0fESliceH\ +orzAlign\x00\x00\x00\x07defa\ +ult\x00\x00\x00\x09vertAlign\ +enum\x00\x00\x00\x0fESliceVe\ +rtAlign\x00\x00\x00\x07defau\ +lt\x00\x00\x00\x0bbgColorTyp\ +eenum\x00\x00\x00\x11ESliceB\ +GColorType\x00\x00\x00\x00No\ +ne\x00\x00\x00\x09topOutsetl\ +ong\x00\x00\x00\x00\x00\x00\x00\x0aleftO\ +utsetlong\x00\x00\x00\x00\x00\x00\x00\ +\x0cbottomOutsetlon\ +g\x00\x00\x00\x00\x00\x00\x00\x0brightOu\ +tsetlong\x00\x00\x00\x00\x008BI\ +M\x04(\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x02?\xf0\x00\ +\x00\x00\x00\x00\x008BIM\x04\x14\x00\x00\x00\x00\x00\ +\x04\x00\x00\x00\x0d8BIM\x04\x0c\x00\x00\x00\x00\x03\ +\xfb\x00\x00\x00\x01\x00\x00\x000\x00\x00\x000\x00\x00\x00\ +\x90\x00\x00\x1b\x00\x00\x00\x03\xdf\x00\x18\x00\x01\xff\xd8\xff\ +\xed\x00\x0cAdobe_CM\x00\x01\xff\xee\x00\ +\x0eAdobe\x00d\x80\x00\x00\x00\x01\xff\xdb\x00\ +\x84\x00\x0c\x08\x08\x08\x09\x08\x0c\x09\x09\x0c\x11\x0b\x0a\x0b\ +\x11\x15\x0f\x0c\x0c\x0f\x15\x18\x13\x13\x15\x13\x13\x18\x11\x0c\ +\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x01\x0d\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\x10\x14\x0e\x0e\ +\x0e\x14\x14\x0e\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\x0c\x0c\x11\x11\ +\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ +\x0c\x0c\x0c\xff\xc0\x00\x11\x08\x000\x000\x03\x01\x22\x00\ +\x02\x11\x01\x03\x11\x01\xff\xdd\x00\x04\x00\x03\xff\xc4\x01?\ +\x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\ +\x00\x03\x00\x01\x02\x04\x05\x06\x07\x08\x09\x0a\x0b\x01\x00\x01\ +\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\ +\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x10\x00\x01\x04\x01\x03\ +\x02\x04\x02\x05\x07\x06\x08\x05\x03\x0c3\x01\x00\x02\x11\x03\ +\x04!\x121\x05AQa\x13\x22q\x812\x06\x14\x91\ +\xa1\xb1B#$\x15R\xc1b34r\x82\xd1C\x07\ +%\x92S\xf0\xe1\xf1cs5\x16\xa2\xb2\x83&D\x93\ +TdE\xc2\xa3t6\x17\xd2U\xe2e\xf2\xb3\x84\xc3\ +\xd3u\xe3\xf3F'\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\ +\xb5\xc5\xd5\xe5\xf5Vfv\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6\ +7GWgw\x87\x97\xa7\xb7\xc7\xd7\xe7\xf7\x11\x00\x02\ +\x02\x01\x02\x04\x04\x03\x04\x05\x06\x07\x07\x06\x055\x01\x00\ +\x02\x11\x03!1\x12\x04AQaq\x22\x13\x052\x81\ +\x91\x14\xa1\xb1B#\xc1R\xd1\xf03$b\xe1r\x82\ +\x92CS\x15cs4\xf1%\x06\x16\xa2\xb2\x83\x07&\ +5\xc2\xd2D\x93T\xa3\x17dEU6te\xe2\xf2\ +\xb3\x84\xc3\xd3u\xe3\xf3F\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\ +\xf4\xa5\xb5\xc5\xd5\xe5\xf5Vfv\x86\x96\xa6\xb6\xc6\xd6\ +\xe6\xf6'7GWgw\x87\x97\xa7\xb7\xc7\xff\xda\x00\ +\x0c\x03\x01\x00\x02\x11\x03\x11\x00?\x00\xf4<\xdc\xcc\x96\ +d\x9a\xa9;@\x80\x00\x00\x92O\xc6P\xfd~\xab\xe0\ +\xff\x00\xfbl\x7f\xe4R\xc9\xff\x00\x95\x1b\xfdz\xff\x00\ +\xef\xabN\xd79\x95\xb9\xcdi{\x9a\x09\x0d\x1c\x92\x92\ +\x9c\xa7e\xf5\x16}79\xb3\xc6\xe6\xb4~V\xa7n\ +OSp\x96\x978\x1e\xe1\x80\x8f\xc1\xaa\xc6.\x0bl\ +g\xaf\x96\xd2\xfb\xac\xd4\xee\x9d\x07a\xb53\xea\x18Y\ +5>\x92EW81\xec\x99\x12x))\x0f\xaf\xd5\ +|\x1f\xfe`\xff\x00\xc8\xa2`fdY\x91\xe9Zw\ +\x02\x0f \x02\x08\xfe\xaa\xd2Y\x18?\xf2\x81\xff\x00\xae\ +~T\x94\xff\x00\xff\xd0\xef\xf2\x7f\xe5F\xff\x00^\xbf\ +\xfb\xea\xd0\xc9\xca\xaf\x19\xa0\xbeIq\x86\xb5\xa2IY\ +\xf9?\xf2\xa3\x7f\xaf_\xfd\xf5Y\xea\x9e\xd6Soz\ +\xec\x07\xe5\xfe\xa1%-\xf6\xfb\xdd\xfc\xde+\xcf\x81v\ +\x9f\xc1\x0a\xe6\xf5\x0b\x9c\xcb\x9f[X)\x975\xa4\xce\ +\xbc\xce\x9f\x05k<\xde1\x9c\xeaL\x11\xab\x88\xe7h\ +\xfa[R\xc1u\x96b5\xd6\x9d\xc5\xd3\x07\xbcN\x9b\ +\x92S\x01E\x01L\x01\ +R\x01Y\x01`\x01g\x01n\x01u\x01|\x01\x83\x01\ +\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\ +\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\ +\x0c\x02\x14\x02\x1d\x02&\x02/\x028\x02A\x02K\x02\ +T\x02]\x02g\x02q\x02z\x02\x84\x02\x8e\x02\x98\x02\ +\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\ +\xf5\x03\x00\x03\x0b\x03\x16\x03!\x03-\x038\x03C\x03\ +O\x03Z\x03f\x03r\x03~\x03\x8a\x03\x96\x03\xa2\x03\ +\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\ +\x13\x04 \x04-\x04;\x04H\x04U\x04c\x04q\x04\ +~\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\ +\xf0\x04\xfe\x05\x0d\x05\x1c\x05+\x05:\x05I\x05X\x05\ +g\x05w\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\ +\xe5\x05\xf6\x06\x06\x06\x16\x06'\x067\x06H\x06Y\x06\ +j\x06{\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\ +\xf5\x07\x07\x07\x19\x07+\x07=\x07O\x07a\x07t\x07\ +\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\ +\x1f\x082\x08F\x08Z\x08n\x08\x82\x08\x96\x08\xaa\x08\ +\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09%\x09:\x09O\x09\ +d\x09y\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\ +\x11\x0a'\x0a=\x0aT\x0aj\x0a\x81\x0a\x98\x0a\xae\x0a\ +\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b9\x0bQ\x0bi\x0b\ +\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c*\x0c\ +C\x0c\x5c\x0cu\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\ +\x0d\x0d&\x0d@\x0dZ\x0dt\x0d\x8e\x0d\xa9\x0d\xc3\x0d\ +\xde\x0d\xf8\x0e\x13\x0e.\x0eI\x0ed\x0e\x7f\x0e\x9b\x0e\ +\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f%\x0fA\x0f^\x0fz\x0f\ +\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10&\x10C\x10a\x10\ +~\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x111\x11O\x11\ +m\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12&\x12E\x12\ +d\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13#\x13C\x13\ +c\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14'\x14I\x14\ +j\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x154\x15V\x15\ +x\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16&\x16I\x16l\x16\ +\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17A\x17e\x17\x89\x17\ +\xae\x17\xd2\x17\xf7\x18\x1b\x18@\x18e\x18\x8a\x18\xaf\x18\ +\xd5\x18\xfa\x19 \x19E\x19k\x19\x91\x19\xb7\x19\xdd\x1a\ +\x04\x1a*\x1aQ\x1aw\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b\ +;\x1bc\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c*\x1cR\x1c\ +{\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1dG\x1dp\x1d\x99\x1d\ +\xc3\x1d\xec\x1e\x16\x1e@\x1ej\x1e\x94\x1e\xbe\x1e\xe9\x1f\ +\x13\x1f>\x1fi\x1f\x94\x1f\xbf\x1f\xea \x15 A \ +l \x98 \xc4 \xf0!\x1c!H!u!\xa1!\ +\xce!\xfb\x22'\x22U\x22\x82\x22\xaf\x22\xdd#\x0a#\ +8#f#\x94#\xc2#\xf0$\x1f$M$|$\ +\xab$\xda%\x09%8%h%\x97%\xc7%\xf7&\ +'&W&\x87&\xb7&\xe8'\x18'I'z'\ +\xab'\xdc(\x0d(?(q(\xa2(\xd4)\x06)\ +8)k)\x9d)\xd0*\x02*5*h*\x9b*\ +\xcf+\x02+6+i+\x9d+\xd1,\x05,9,\ +n,\xa2,\xd7-\x0c-A-v-\xab-\xe1.\ +\x16.L.\x82.\xb7.\xee/$/Z/\x91/\ +\xc7/\xfe050l0\xa40\xdb1\x121J1\ +\x821\xba1\xf22*2c2\x9b2\xd43\x0d3\ +F3\x7f3\xb83\xf14+4e4\x9e4\xd85\ +\x135M5\x875\xc25\xfd676r6\xae6\ +\xe97$7`7\x9c7\xd78\x148P8\x8c8\ +\xc89\x059B9\x7f9\xbc9\xf9:6:t:\ +\xb2:\xef;-;k;\xaa;\xe8<' >`>\ +\xa0>\xe0?!?a?\xa2?\xe2@#@d@\ +\xa6@\xe7A)AjA\xacA\xeeB0BrB\ +\xb5B\xf7C:C}C\xc0D\x03DGD\x8aD\ +\xceE\x12EUE\x9aE\xdeF\x22FgF\xabF\ +\xf0G5G{G\xc0H\x05HKH\x91H\xd7I\ +\x1dIcI\xa9I\xf0J7J}J\xc4K\x0cK\ +SK\x9aK\xe2L*LrL\xbaM\x02MJM\ +\x93M\xdcN%NnN\xb7O\x00OIO\x93O\ +\xddP'PqP\xbbQ\x06QPQ\x9bQ\xe6R\ +1R|R\xc7S\x13S_S\xaaS\xf6TBT\ +\x8fT\xdbU(UuU\xc2V\x0fV\x5cV\xa9V\ +\xf7WDW\x92W\xe0X/X}X\xcbY\x1aY\ +iY\xb8Z\x07ZVZ\xa6Z\xf5[E[\x95[\ +\xe5\x5c5\x5c\x86\x5c\xd6]']x]\xc9^\x1a^\ +l^\xbd_\x0f_a_\xb3`\x05`W`\xaa`\ +\xfcaOa\xa2a\xf5bIb\x9cb\xf0cCc\ +\x97c\xebd@d\x94d\xe9e=e\x92e\xe7f\ +=f\x92f\xe8g=g\x93g\xe9h?h\x96h\ +\xeciCi\x9ai\xf1jHj\x9fj\xf7kOk\ +\xa7k\xfflWl\xafm\x08m`m\xb9n\x12n\ +kn\xc4o\x1eoxo\xd1p+p\x86p\xe0q\ +:q\x95q\xf0rKr\xa6s\x01s]s\xb8t\ +\x14tpt\xccu(u\x85u\xe1v>v\x9bv\ +\xf8wVw\xb3x\x11xnx\xccy*y\x89y\ +\xe7zFz\xa5{\x04{c{\xc2|!|\x81|\ +\xe1}A}\xa1~\x01~b~\xc2\x7f#\x7f\x84\x7f\ +\xe5\x80G\x80\xa8\x81\x0a\x81k\x81\xcd\x820\x82\x92\x82\ +\xf4\x83W\x83\xba\x84\x1d\x84\x80\x84\xe3\x85G\x85\xab\x86\ +\x0e\x86r\x86\xd7\x87;\x87\x9f\x88\x04\x88i\x88\xce\x89\ +3\x89\x99\x89\xfe\x8ad\x8a\xca\x8b0\x8b\x96\x8b\xfc\x8c\ +c\x8c\xca\x8d1\x8d\x98\x8d\xff\x8ef\x8e\xce\x8f6\x8f\ +\x9e\x90\x06\x90n\x90\xd6\x91?\x91\xa8\x92\x11\x92z\x92\ +\xe3\x93M\x93\xb6\x94 \x94\x8a\x94\xf4\x95_\x95\xc9\x96\ +4\x96\x9f\x97\x0a\x97u\x97\xe0\x98L\x98\xb8\x99$\x99\ +\x90\x99\xfc\x9ah\x9a\xd5\x9bB\x9b\xaf\x9c\x1c\x9c\x89\x9c\ +\xf7\x9dd\x9d\xd2\x9e@\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0\ +i\xa0\xd8\xa1G\xa1\xb6\xa2&\xa2\x96\xa3\x06\xa3v\xa3\ +\xe6\xa4V\xa4\xc7\xa58\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7\ +n\xa7\xe0\xa8R\xa8\xc4\xa97\xa9\xa9\xaa\x1c\xaa\x8f\xab\ +\x02\xabu\xab\xe9\xac\x5c\xac\xd0\xadD\xad\xb8\xae-\xae\ +\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0u\xb0\xea\xb1`\xb1\xd6\xb2\ +K\xb2\xc2\xb38\xb3\xae\xb4%\xb4\x9c\xb5\x13\xb5\x8a\xb6\ +\x01\xb6y\xb6\xf0\xb7h\xb7\xe0\xb8Y\xb8\xd1\xb9J\xb9\ +\xc2\xba;\xba\xb5\xbb.\xbb\xa7\xbc!\xbc\x9b\xbd\x15\xbd\ +\x8f\xbe\x0a\xbe\x84\xbe\xff\xbfz\xbf\xf5\xc0p\xc0\xec\xc1\ +g\xc1\xe3\xc2_\xc2\xdb\xc3X\xc3\xd4\xc4Q\xc4\xce\xc5\ +K\xc5\xc8\xc6F\xc6\xc3\xc7A\xc7\xbf\xc8=\xc8\xbc\xc9\ +:\xc9\xb9\xca8\xca\xb7\xcb6\xcb\xb6\xcc5\xcc\xb5\xcd\ +5\xcd\xb5\xce6\xce\xb6\xcf7\xcf\xb8\xd09\xd0\xba\xd1\ +<\xd1\xbe\xd2?\xd2\xc1\xd3D\xd3\xc6\xd4I\xd4\xcb\xd5\ +N\xd5\xd1\xd6U\xd6\xd8\xd7\x5c\xd7\xe0\xd8d\xd8\xe8\xd9\ +l\xd9\xf1\xdav\xda\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\ +\x96\xde\x1c\xde\xa2\xdf)\xdf\xaf\xe06\xe0\xbd\xe1D\xe1\ +\xcc\xe2S\xe2\xdb\xe3c\xe3\xeb\xe4s\xe4\xfc\xe5\x84\xe6\ +\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe82\xe8\xbc\xe9F\xe9\xd0\xea\ +[\xea\xe5\xebp\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee(\xee\ +\xb4\xef@\xef\xcc\xf0X\xf0\xe5\xf1r\xf1\xff\xf2\x8c\xf3\ +\x19\xf3\xa7\xf44\xf4\xc2\xf5P\xf5\xde\xf6m\xf6\xfb\xf7\ +\x8a\xf8\x19\xf8\xa8\xf98\xf9\xc7\xfaW\xfa\xe7\xfbw\xfc\ +\x07\xfc\x98\xfd)\xfd\xba\xfeK\xfe\xdc\xffm\xff\xff\x80\ +\x00 P8$\x16\x0d\x07\x84BaP\xb8d6\x1d\ +\x0f\x88DbQ8\xa4V-\x17\x8cFcQ\xb8\xe4\ +v=\x1f\x90HdR9$\x96M'\x94JeR\ +\xb9d\xb6]/\x98A\x00\x930(*l\x0c\x9c\x03\ +\x02\x13`P0\x07?\x02?\xe8O\xe8X\x06 \x01\ +\xa4\x00hO\xfa$\x1a\x93H\x82R\xdf\xf0J}J\ +\x06\xff\xa4\x80\xa9t\xd0\x05\x1a\x07U\xa5\xd5\xeb\xf4\xfa\ +\x8d\x86\x05S\x81S\xe9VhK\xfc\x05o\x01\xd5\xaa\ +\xf6\xca\x8d~\x0fh\xb4\xd2\x00P\x8a\x95\x92\xefK\xb0\ +P\xacW\x9aM\xca\x9dI\xbe]05\xca\xf0\x02\x98\ +\xfe\xc8>\xf2O\xa7\xa6U\xe2\xf3\xcc<2O\xb7\xce\ +\x1aSO\x07\xe8Bcm!\x10\x87\xa7)\x89\xb5C\ +\x00v\xb4#?\x01\x81*\x98\x88]\xf7i\x87\xa4g\ +\xb18+\x1e\xe7\x01\xb7\x8e\xed\xaa\x17:\x15\xfa\x0d\xba\ +\xde\xda\xf7\x98Ln;\x7f\xbe\xe2\xf0!\x99\xec\x0d\xe2\ +\xbbj\xe8T\xab\x18^\x7f6\x9f\x90\xc8uz\xbb>\ +\xcf\x81\xfc\xf8\xf4=\x9c\xbe\xb6\xf3#\xdc\xbaa|V\ +N\x0f\xa3c6\xfa\x94\x04\xbfAb\xcf\xf4\xe0)\xc0\ +\x03:r\x08-\xebzc\x03\xc1\x10L\x15\x05>\xe6\ +\x94\x1cc\x13p\x89\x04h\xc2\x86+\xee\x90\x00\xd0\xc8\ +\x10(C\x83 \xdb\x0f\x91\x00LD\x05\xc1q,M\ +\x13\xc5\x09B\xa4fE\x85\xf9\x17\x17\x8d\xa6\xfcdk\ +\xb9\x08\xb0;\x1b\x84\x84LtV5A0_\x14\xc8\ +\x12\x0c\x85!\xa2\xe7\xd4\x8c|\x93RI\x00SI\x84\ +|\x8c}\x1f(\xc4\x0a\x01\x07\xb2\xa8\x9aCK\x058\ +\x0f-\x812$\xbd/\xcc\x13\x0a\x04gL\x86\x08\xed\ +3\x8a\x87\x84\xd4v#\x09\x98\x08\x02\x8a\xf3\x88\xda7\ +\xce\x84\x5c\xa71O\x13\xcc\xf5\x03\x9d\x13\xe9\xc44P\ +\x02\x11\xc9A\x9b\xa8\xc42\x03\x01\x03-\x14?\x0c\x14\ +h\xf0\xe3Ot\x8d%I\xa3\xe7\x95,w\x0c\x94\xc8\ +|oS\x86\xad\x0d\x0d\x0d\x95\x09\x0e\xfe\x8b#}!\ +JU\x15MT\x873\x07\x99\xe1E\x0c\xa1\xf1\xb9Y\ +\x9ah\xc4\xb6\x03\x810\xf8\xdaDN\x22\xb8\xdbS\xc4\ +\xae\x13\x9bU\xc8q\xab\xae\xe1\xa1V\x15UV\x9e\x14\ +\xc8\xc8\x1e\x9b\xb6\x89\xa9O\xd1\x03u\xacD\xd7\xb5\xfb\ +\xa4\x89\xaaF\xdd\xbch\x9e\xb7\x09\xe6\xea\xcav\x13\xa8\ +\xe0\x1f\xb7I\xfb;\xb8\x8e\xdb\xb2\xf29Wr\xd4\x82\ +<\xc8E!C\x81\x17\xc8\x10\x05P\xe0<\xdc\x02\xa0\ +\x97Q\xf8|\xe0\x87\xc6\x08|\x9e\xefA\xf0{C\ +<\x01\x08\x0eli\xb9\xd4\xf2k@p\x12xa\xfd\ +\xfd\x06\xe5&+\xe0\x80\x9b\x12\xf0L>\x8e\xe8,:\ +]\xbb\xe7\x02\x0f\xa5\x17\xbe\xc7\xdc\xfc\x08z\xcc\x80!\ +\x9c 6\x11\xb44V\xa0\x08yn\x89\xcb\x198F\ +\x10\x10p\xd2\x18\xe9\x85\x90\x00\xb0\x1c%!\xc0\xb9p\ +\xa0\xb5\xc3\xb9\xe1\x93\x0f\xc5\xda\xba\x09\x0b\xd5T\xc1\xa0\ +(\x22\xa2@\xadw\xc0\xc8\x1f8\x86J\xf0\xc1\xfc&\ +\x85\x0eA\xfc*(\x1b\x08\x08s\xd0QOI\xea&\ +\x10\xef\x17\xc4\xa8U\x8cA\xa8\x8c\x0c\xb9\x5c\ +/b!\x16_\xf1,\x1f8\xa0\xc6\x1f#\xb83\x08\ +\x04`O\xcb\xd1\x0e%f\x00zRq\x19\xf5\x0a\xe0\ +c1\xc1\xe9\x1c\x5c#\xd4yK`y%\x1f\xbb.\ +\x8a\xcc\xceM\x10\xb6n?\x07\xdb\xd1\x93\xc9\x00\x12M\ +\xd0Z('\x00\xc8_@(\x88\x0bi\xcc)\x04,\ +\xe9\x0c\xcc\x1c{\x92\x84\xa6\x16\xa7\x80qZ\xc1\xb8D\ +\xb6\xe2\x1e\xa5\x87\x90\xef\x0a\x93\xec\x14Aa\xdc:\x93\ +\xd3\xb9wb\xb2Z<\x133$\xdf\xb4T\x013\xcd\ +l'(Z>\xc7\xd3\xd1zcQ\xea\xa2\x91%E\ +\xc5\xb0:\xa3A$\x88\x0b\xaa<*C\xfd!\x0b\xc8\ +]\x04\x1a@l\x10\xc4\x1d)\x14\x80N\x96\x01\x82 \ +-)\x80\xa1\x10\x14\xcc0P\x17\x01!El\xc7\x06\ +3&H\x99\x96N\xe3\x5c|\x96yH\x82L\xbf\xd7\ +\x9ed\xe2\x84\xdbD\xa0Z\xa6\x01\xb9\x04+F\xcb\xdc\ +!\x83\xaa\xaa\x0eEH\x0c\x07\x8dY\x1d\xa9\x00\x17U\ +\xd0t\x92D\xd0\xc0_\xf2l\xc9\xab\xd0X8\xab@\ +\xdbL3\x12\x0e\xd3\xaaxF\x9f\x94P\x8aSE\xc9\ +B\xc275\xc7\xdb'\xa2tU\x05\xa8\x00\xd0 \x96\ +p}\x22\x09`C\x06\x81]a\xc4\xcaa\x0eV,\ +G\xcf\x00\xb4\x1c\x08\x84\xe0\x14\x02\x22\x1c\x09@\xf2\x98\ +]\xcd8\xad\xd4\x19WP\x86U4^\x5c\x0d#\x8f\ +\xfe(W\xb4\x13\x22\xaax\xd8w$2\x7f\x0e\xa48\ +\x14\x01 \xf6\xb6C\xcd0\xaf\x81Om\xc6\x80\x1f\xb7\ +@\x9c\x86\x0ek|8\x02\xb5\xc1\x05l({$H\ +\x8df\xa6D\xd5!P\x8a\x01W2.\xbe-\x0c\xd4\ +\xa8\xc4BN-+\x1bLK\xc9\ +\xc8\x0f\x15x\x0ck\x01\x5c\x0c\x06\x8e\x99Kd\xe8P\ +h\x8cU&~\x80\x90\x17\x15\x98Lk\xc0\x80\x22C\ +\x22\xf8w\x0a\xa2\xf7\x0e\x0a\xcb\x8c\xfa$`\x8c\x15\xef\ +\xb4\x18\x03\xc8\x9c'\xc8\x90\xe8\x12;\ +\xa0\xa4ne\xcc\xd7\x17}\xea\x12\xb8\xa1\x97\x04+\x06\ +\xcb\x94B_\xfc/\xba\xe4\xb4\xa7\xe0`*\x06\xb28\ +*\x06\xb688H\xf2\x09<\xc2P\xc6\xceB\xdd\xdb\ +\x88\xdc\xec,\x1a\x90?\x09\xe41\xf5\x06\xe1S\x9f\xc4\ +\x9d\xf0\xa6\xf7\xcadbw\xa3\x19\xab\xa2\xa2\xae\xc4j\ +\xea\xb9\xa78\x91)0C\xa4\xc1\x12\xb0\x08\x07\xfe\xed\ +\xe8\xb8\x92\xa34o>\x22\xfc\xfd\xa04\x13\xa8\xb9\x14\ +\xefCE\xbd\x11B\x9f\xcd\xd2\xc5\xc4P\xfb\xc2\xf8c\ +\x0c\xdf*\x91e\xb6\xdcS\x8d\x16\xb0\x07\x81)\x0c\x10\ +Z\xec1\x8b-|'\xb5\x08\x15\x98\xa0\xbfb\x03\xbc\ +\xbeB$\x94[\xcb\x04U|P\xcbDF\xef\xec\x5c\ +\xa2\x9a\xc5H\xc3\xb0p'\xb6\xc0\xc6\x90\x01\xd7n\x05\ +&\xce/\xc5~\x1f\x83s\x17\x12>\xfb\xf6C\xab\x8b\ +\x99\xb9\xd9e\x5c\xe2\xc5}\xb1\xc8>\x8d\xcc{Q1\ +8 \xf8&\xedxd\xbd&@~\xbdp\xbc\x0d\x86\ +\xc7\x01\x19\xdb\x8a#\xc4\x9c\xa7\x5c\x0c\xb6\x87[\xcf\x22\ +\xfcn\xe5\xb5\xaa\xc8\x9e\xf2\xd1\xfb\xd101\xd0D\x0a\ +\x85'\x19\x19\xcb\xf4\x86)\xc1\xbc5\xa5\x08[\x064\ +\x91!\x5c~\x0c\xef\xa2m\xf4\xe1:\x9b\x85\xe2\xb5w\ +Qx\x81\x12\xd5\xb0\x0bW\xf1D\xc1b\xc3\x90\x8e\xb1\ +\xc1\xc4\x88V\x01\x03\xa5k[\xe8\x98\xb7\xcc\x8deV\ +O\xa9\xf7f[\xb89{s\x90\xdeg\x099\xaf6\ +H+\xf7\x09\x8a\xc1\xb0\x06\xba\xc0 !\x91\xb8u\x8e\ +`\xbb\xd7\xc1\xa0\xec\xecC\x9e\xcc8\x0a\x07\xc1\xc8\xce\ +\xe9x\x9b\xaff!\xa0\xe1\xdb\xc4\x5cb\x0a\xa1\xafx\ +\x10n%\x01z\x92A\x06\xbd\xec!J\xb1,/$\ +\x02\xcc\x1c>\x0cl\xa54\xfa:\x07\x18\xc1\xf1B\xc4\ +Z\xf8\xd1D\x89\xb2\x88\x89\x15\x95\xbb\xba\x90W\x84\xe6\ +zA\x15\x92\xfc;\xca\x90N\xef'\xfb\xc9!'\x80\ +1\xd3\x81h\xe8\x06\xc1\x08\x1c\xf5@\x90\x0cz\xd0;\ +K\x00\x98\x18\xa7@\xfb[\xeb\x92F{\x86@\xba\xc4\ +!\xbc\xfa\x0e\x01\xb0L90\x8a\x89\x5c\xa2\xce*\xfd\ +\x95BH\xb2\xf8rY\xb2\x87\x8f\xad\x5c\x83\xb5\x87\xa1\ +!$\xf0\x06\xd4\xcfM\xd6\x00\xd0 \xd6\xe0\x98\x10\xfd\ +\xd0R\x8d\xc0\xe8$\xf5@p\x11\xfaZ\xa4\x8ac0\ +a\xfd@\xe6\xe2\x12\xc7r\x22?\x80\xaa\x91\xfet\x81\ +\xcf\x81\xdf\x0b\xfc\xc9\x14e\xbd+.\xffB\x04\x7f\xea\ +\xfc\x08.\xa2K\xe4\xa6kbr\x01\x80\x1e\x02\xf0\x14\ +\x03\xac \x02\xd0\x1a\xf6\x001\x01@.\x03\xabt\x03\ +\xe0O\x02@:i\xe0(\x03.8\xda\x8d\xb8\x0e\xad\ +\xbcm\x02X\xad\x87\xd6\xe8\x822\xf2\xe7\x88\xff\x22&\ +\xf3ev\xd9\xed\x18\xa9\x09:\xe2b\x5c_\xec\xd2\x06\ +\x8f\xc6\x04\x88\xf4\x04`W\x02\xa0N\xf4\xe0D4 \ +\x1e\x02E\xf4\x86\xc3\x5c\xfaB4\x16p\x90\x14\x01\x03\ +\x09`\xc3\x04g\xd0\xa7\x0e\xd0#\x0b\xea~\x8d\x96\xff\ +G\x22\x9ag\xf6\xff\xc0\x00\xf3\xe2P\xc7@\x1a\x02\x0e\ +\xe4\x0d`\x89\x0c`\xaaG\xa4\x7f\x08\xc2(\xaf\x0b\x88\ +ua\xd8\xc2\xc9\x14!\x84\xc8\x19\xc1\x84\x8a\x10\x9c\x83\ +p\xa0\xf8\x8azU\xca~ZM\x12f\x08\xae\xe9\xaa\ +\xc8\xa2\x0a$\xc6BD\xfc\x00H\xce\xc1\x1a\x16\x0e,\ +\x05p\xd0`KZ\xf0\xe1\xc4\xf7\xa1\xb0\xad\x01\xc4\x1b\ +O\x06\x1c!\xb2\xeb\x81\xcc~O\xecY\x80\xf1\x13\xe1\ +*\x09\xd1D\x0cB\x18\x1d1L\x1cez\x05\xa7\xe4\ +%\x0b\xe2\xf8PL#\x0e\x8c~\x90T\x22PX\x11\ +\x10\x5c#0\xb8#\xe5\xfe\x13\x91x\x18`Y\x17\xe0\ +nRf\xbe\x1d\xf1\x88\x1dc\xd6\x1c\xa1\xbc\x1cq\x94\ +\x1b\x8e<\x1a\xd1$\x1c\xf1\xa0\x1c1 \xb6A\xec\xb6\ +\x826\x9ea\x14\xdf\xc0\xea!\x87\xfe\x7f@]\x12\x81\ +\xb4%\x08\x8c\xc4,F}\xc9\x94\x5c!\xe4\xe8\xeeZ\ +\xa1O\xf8\xe9\x8eb\xa8\xea \xf9\xe8d$\x00\x9b\x1e\ +\xa0\xc0\xa4 \xfe\x13\xe2`<\xca\xb2\x1e!\xdb\x14\xc1\ +\xd2\x1cq\xc1\x12\x81\xb6mA\xda\x1d\x11\xfa\x1d\xc7V\ +\xeb\xab~\x9f\xc1\xd3\x1a\x81\xe8A,\xb8\x0dk\xc2\x12\ +\x82 N\x80\xde\x09a\x8b#al%\x10\x80\x02q\ +\xc9\x15\xe2.~N\x14x\xee\x5cy\x8d\xdf\x10\x02\x16\ +\xda+\xfe#\xd1\xc8j\xa0\x80\x0a\x020`Q\x88\x1d\ +\xf2\x18\x1c\xc1\xc0Pa\xc8q\xa7\x1d\x19A\xc6\x1br\ +t\x1b\xb1 \xfe\xc7n\xd2n\xfc\x17b \x11\xd2\x94\ +\x0e$\x98\x14\xcb\xd0$\xf1Z\x15\xad\xcb\x0bRH\xe5\ +\x92L\xe1\xae^\xc5\xa5\x86\xe20`\xba\xd0d#\xaa\ +\xc0\x180\xa2 \xf2j\x1daK,\xe1\x1c\x8c\xd1\xa0\ +\x1c\xe1\xc2\xaa\x81\xd4\x1c\x91W\x0d\x02\x16\xfc`F\x15\ +R\xec\x1a\xb0:!J\x9e\x13\x01\x0f/\xa0\xd3\x1cP\ +\x9e\xe4\xe8\x98\xf8\xa8\xa1\x16b#\x16\xaea+g\xfc\ +H\xec\xc5+\xe29\x09a\x02\x14 \x972`\xbc\xeb\ +h\xdc\x1c\xd3&\x09`<<\x01\xfb.K\x9eCN\ +\xaa\x1a\xef\xb0\xebB\x16E\x81\x98\x17\xea\xfc\x08QX\ +\xec\xcc\xa5\x0f\x024\xd9%c\x0a\xb0V\xa8r\xb3%\ +1\xde\xba\x83'\x10m\xa6#\xef\xd4\x0c \xf2\x0ds\ +\x80\x10\xcd\xf6\x1f\xc1\xfa\xe4 e0\xd3<\x22J\xc0\ +\x18\x0c\xdc!q\x8e\x1b\xd1R\xfd\xa2G\x04\x88<\xc4\ +\xb0\xb5\x16%\x9f9\x02\x1f1\x12\xb4#\x11r#\xc0\ +}< \x9b)A\x1c\x16B \xc3,6\xc3\xa4\x12\ +\x91\xe0\x8b=\xa0\xac\xf4\xe0C\x0d\x81\xa1>a\x88\x16\ +\xf3\xec\x14\xa1\xef?!\xea%\x91>\x0f\x01,\x9f`\ +\xa9/\xe2\x16k\xe7\xf4\x05\xf1\xc0$\x92\xa3*rT\ +\xb9c30\xb1\xd6\xdd\x8dS\x0b4\x16!3\xbe#\ +\xa0KB\xe0],\xe1J\x19\xe6\x1e!!'C\xe0\ +\xf0\x144D\x11\x22X_\x0b\xcc\x0ea\x1e\x0a4T\ +\x0c\xd4:!\x08b\x18\xc0\xfdF \xbd(\x22P\xe4\ +)F\x94\xa2 \x0dTt\x08\x81\x95G\xa1z$\x8f\ +\x82\xf8s\x07\x0f!\xe1A\xd2\xae\xe9%\xae\xcb\x91\xdd\ +1Q\xe0\xa2(\xb7%\xa2;\x0b\xc0 \xb5, \x02\ +\xe2\x18\x9c\xc1l\x14tb\x0f\xd3*$\xe2\x9e\x98\xb2\ +a&B/\x12\x14N\x0a\x01\xb3L\xe1\x9e$\x8a4\ +\x07@\x90\xd3,\xe8!\xef\xe0\x11\x00\xd4\xea\xa1/A\ +\x0d\x07\x15\xcd\x0a\xe5FK$\xae\x18\xdd\x8b\xa2\x7fo\ +\x9a\xa93\x1c#\xec\x88\x14L\x8c\xc9\x02\x18\x93\xd3z\ +\x07\x22P\x91\xf3\x96$\x0c\xe4\x18\xc1p\x9ej8$\ +px\xcf\xe1R\x1aj\xc6!k$\xb2\x88p\xb2\xe2\ +F\xf2*\x095\xd0OA\xaf1A\xef56\x91l\ +fo\x9b7J\xf8$+\x08\x14\xe0\x8dV`\xb0\xaa\ +j\xab@\x00U\x1a\x91\xac$Jf\x10\x01@\x09\x95\ +\x80\x0b\xe2@\xecA\xd8\x1c\xf4T\x0a K?!\xef\ +?b>\xf4n\xaa\x1b\x0f\xac\x03b\x18\xd7\xc1d\x13\ +\xcdv\x10@\xc7H\x13\x02\x11UF\x06I!5\xea\ +\x0e\xf8\xeb?+\x12P\xe1\xf4\x997\x0a!PN\xf0\ +$il\x0f\x80\xd3]\xe1\x06!\x8b\x88\xee@U-\ +a\xc2$\x95\x0bP\xe0T\xc9\x22>k\xee\xe4\x05s\ +\x9e$\x91x\x13\x81\x86\xdc\xa2\x18\x18v\x10\x16\x89H\ +\x0e \x9a$\x92>}T\x85[\xee\xd2\xe5ec;\ +B\x1d;\x93m\x5c\xeb\xf974\x9f\x10\x82CV`\ +\x8c\x0a\xeb\x08\x15\x13\x878\xa9C8\xf5P$\x13\x97\ +9\xa2=\x22\x0c\xb8\x05q $\x95{W\xf5\x82!\ +\x88\xd0\x1a\xc1\x98\x0b\xf6t\x06\xc6$\x22\xf4\x83,b\ +-;\x00{b\xc2\x1b\x16\xb1n#\x0a\xf0\x9bU\x06\ +#\xc7@\xe3!H\x19\xb4Z \xf3S4\xc1~$\ +\x8a\xfc\xb0\x052\xb0B?(4\x00\x05*\xf0$\x8e\ +\xbe\x0b\xa0\xe9#\x01\x16\xb5\x88.\xcb\x80Y\x0d\x82A\ +TV\x80\x22\xb3`VO\x91U%p\xbf63;\ +\xd68\xbf\xd6<$\x08\x8c\xb0\xe1\x5c\x1bL,!\x91\ +\xf0\x0b\xef\x1a\x16\xaf\x1e$q\x0d.\xc1T\x1a\xa0\x0b\ +q`\x0c#\x8dh\x121\x10\xb2\x02O< |\x09\ +\xd3\xc8\x16\x22\x18`S\x8d6B5#\xf2CO.\ +\x10d\xab\xedn0\xadno9Bb\x10\xe9\xe8`\ +\xfa\x02HJu\xf2\x05\x17`\x06B\x19P\xa1\x16\xd3\ + \xec%\x12'\x22\xa2(*T\xb0\x14r\xfa\x10\xe0\ +\xd3:BL\xcd kP\xa7l!\xf3\xd0\xc3\x81z\ +\xc3\xc2?A(?u\x02\x0fhV\x88!\x8f\xf6Z\ +\xe5\xb3P0c]bL\x12\x17\xb8\x16\x87H\x07\x80\ +\x96!\x8d\xbe\x15\xf0>\x0aBYL'$\xc6\x80P\ +!\x8a\xf0@\x00\xa6\x05\x16\x02%w\xd4\x15\x17\xe8\x1a\ +U6!K*\x0f5;mt\xee\xa77Abw\ +E\x0a\x97I6wM6\xb5\xcc#\x07\xfez)Q\ +x\xe2M2\x13%2\x82\x18\x8c\xcb\xd6\x0b\x80f\x91\ +\x02V4\xe0\x86\x0a\x87v\x15b!R\x95\x22\x17\x02\ +Y\x02\x0bR\xc0\x22\x19\x09\x01g\x09P\x99oU\xb7\ +\x7f\xcaw*\x83-tu\xc7O\xd7O6\xf67]\ +7\xb2\xf4\x02H\xed\xe0\xe0\x11\x98&\x0eb\x18\xfe\xd5\ +\xe9 \xc1\xd0%\x8a\xdcB!6\x18B!{\x81 \ +\x0e\x96\x9c\x94\xc2Wq`\x0a\x00\xd50\x1a\x8fj!\ +\x8d^\x0cX\xb0\x07XT\xdcj\xdb\x7f\xf0\xa5b\x80\ +}zb\x17z\xa9\xe9IP\xb5\x81(\xb7\x81tj\ +\x94V\x17\x89\xc6\xf2(Vt\x0b\xe0mf\xe1\x98%\ +\x8fk~\x81P\x1aE\xf0!\x96\xf8\x13+\x08\x0d\x02\ +`\x98\x01*\x17@o\x90\xa0\x8bV\xd2\xdfm\x12\xe2\ +#V\x7fT\x98\xbe\x89\xed\xd4\xc5U\xc9h\xe2/B\ +\xa2H\x07\x190\x08\xcb*\x17\x22 \x0f\xb9<\x0b\x93\ +\xec\x16\xe1KD\xa45q\x01\xa9.\x82\x19q\xf7\x22\ +&\x0ep\xb1\xa9\xe1rB\x14`K\x1c\x06*\x80#\ +\x95D\xf2\x97\xa0 \xd2\xabb\xb6S\x80\x8d\xdb\x80\xd8\ +\xcf1\x88\x04\xdeu,\xb7u1SBh!\x8e|\ +\xe8\x02_l6\xc6N\xa2\x10\xfe\xc8\xa1s\x82R\xee\ +@\xd4\xc3!*\x22\x18t\x09\x81\x89\x9b\xa1k\x96\xd7\ +\xfb$V\x83\x1d\x09\x9d\x9a\x82!h\xd5X\xae\xe6q\ +iW\xb4$\xa7\xb9400!\x97\x94\x15\x93\xd0A\ +-'\x83\x00\xa6\x99a\xe7\x84\xc1>FA\xbe\x1a\xe4\ +\x12\x97 \x80\x13:\x09j\xa2\x1fv\xd7h#\x97<\ +\x91\x81_\x9cB+\x97x\xc3\x97\xa2$\xba\x04@\xd1\ +qq+\xad\x1d\x9d\xa2P\x13\xba8\x18\x8d\x88\x05\xe0\ +v!\x8e\x02\x1b\x01\x9dl ig\xb3\x92!sG\ +48\xf6!h \x15\xe16\x9d!\x0a\x0c\xc29:\ +\x94\x15\x86\x8d\xd1\x8c\x18\xc4!Y\xd1P\x0d\xa1\xa3\x19\ +\x88$\xd9<\x0f\xa18\x09\xfa\x8d[\x22\x17\x0d\x95\xe9\ +,\xbaR#\x0bS\x07\x82\x19G\xa1\x94\x17\x94t\x0d\ +Y\x0e#z\x16\xc4Z\x1c\x22\x9a!\xa7b\x12\xd9\xb7\ +\xad;\xb9+n\xed\xa5U\xe2Q\x99\xd6\xc8\xc1\x22\x85\ +\x82`gL\xe1\xb3M:\x9a!E\xfa\x83@+>\ +\x00\xf3\xae\xe1/\x11b\x19\xad\xc1\x9f8\xd9\xc0u\x18\ +6\xf6p\xb5m\xf9\xcd;uU18\x10H\xf0\x03\ +\x00bSr\x97-)W0!\xeb\xc2\x0a\x8b\xbc\x15\ +\xa5TJd\x07JP\xdc5\xa0%\x10\xcf\xb7}S\ +F\xcc\xc04\x86\xa6D\x22x\x17\x8e1\x82#s\xa9\ +\xabb'\xb0\x98\x07\x16\x90\xaef\x1a-n\xca d\ +\xf8\xd4%o\xba\x04 S\x8f\x01\xa46\x03d!n\ +\xfc\x0fm\xb0\x13\xd3\x84D\xa6\x88\xf6\x10%\x02r\xe9\ +\x11r\xe9}P4\x03(\xe4e\xa2`\x14{\xa8\x11\ +\x81#\xba\xf1\xb7\xb5U\xb7[\xb6%\x16\x11\xd1\x8b\x00\ +\xc4\x07yj\xd5\x0d\x14r\x95[c\xb3v%L\x03\ +o\x81\xb3J\xa2\x19S\x01&\xcf\xa28h\x89\xc7J\ +@3\xbe\xe0>\xfbp*\xfb\x8f\xba\x05SG\x03\x14\ +\xa4OE\x998\xcb|\x1c\xc1\xbf\xa6\xb8Wm\xa2(\ +\xb9\x88H\xed\x97J\x9aP\xfc\xd5V4\x8b:\x81i\ +bJ)\xfb\x86\x18\xcd\xac!\x81q\xc3\xa1L\xde\xc0\ +\xb6 \x94\xab\xb9\xfb\xf7}Q\x0d\x07\xdbH\xc2\xc4\x06\ +\xf4n\xf3!\xd4\xcb\xa8\x223m\x99\x1d$x_\x80\ +XcnY\x7f\x5c\xb0\xb5\x92\xc2V\x10\x9c|\x14\xa0\ +\x91\xc8 \xb4!\x95\xec\x80\x81\x8e\xfb{\xee\x03 ?\ +\x0b\xc0#j:\xe2 \x8c\xaa\x8da\x9a\x18\x011\xca\ +\xa0\xfe\xbd\xd5\xb5\x8b\x90K\x8b\xc2/\x05\x07\x8b\xa2S\ +\x0f\xb0\xfa\xc4\x22\xdcx%E\x1a\x0c\x00\xf0r\x5c\x9e\ +!\xb1\x1c\x82\xc1\xd5\x12\x12\x06\xad1\xfa\x1d\xb2\xcb\x0d\ +\x92\x83 \x01\xc7\x0e\xae\x0a\xf8\x5c\x14\x22p\xa6Y\xfb\ +\x0bb\xf5U\x92\x9c\xc9\xac\x94\xa1\x88\x89\x91\x88\xd8\x90\ +\xeaF\xbf\xce\xc5\x07\x191\x94\x1bq%\x19\xb5\xed\x1a\ +kfOY\x1bHu\xc0U\xd4\x8dO\xbcqB'\ +\xf9\xa7\x0e\x9c\x85\xceiu\x82^e\xa1\x1f\xd5!d\ +\xd2dL*P\xd9\xcf\x12\xdc\x1c\xbc\xe7,\xae\xb8\x1c\ +\xb1.\x1b2|\x1b\x92\x0d!\xfd/\x08\xd9n\xb99\ +r \xbc\xfe~\xbcn\x22\x9a\xc0\x9e\x9d\x08\xc5\xf9\xd6\ +\x8b|`%\x9bIZ\xe1D\xcf,\xf6#f\x05\x0d\ +\x91\x8e\x1b\xf3\x9e\xe3\xc1\xab\x12]\xae\xf0\xe1\xc3(\x9c\ +\xd6\x22\xfce\xd3X\x00\x1e4\xf8\x9a1\xdb\xc7}\x0d\ +o$\x10JxzJ\xa0z\x09\xb0\x80\x02I\xae\x1f\ +\x86H\x1e\x11.\x1b]s\x9f\xc1\xad9\xfdc\x91}\ +\xc3\xcfP\xef\xdc\x99\x1e~}\x01\xb5\xfc\xc2\x8a\xbc#\ +B]E\x104\x9do\x1b\xd3\xe0>%0\x087\x1c\ +\x96\x0c\xca\x99\xc8\xca\xfe\x11\x9c\xfc\xc5n\xa2.\xaf\x14\ +\xe2\x0dY\xfc\x1a\xec\x18\xc1\xde'\xe4\xe2D\x07~T\ +\x09S\x80\x0da\x0at\x0cO\x86\x09+\xc7\x14\xfe\x81\ +\xc2>\xaf\x1aP9\xc6\x92b&\xee1C\xb9\xe7b\ +\x18nF\x84cG\x9co\x02\x0b\xe8\xde\x86^E\xce\ +;&\x99\xe7\xddE\xe8\xc6\xf7\xe9\xa2\x85C\xa5\x8d\xe9\ +`\x02_\xf0\xb4 \x9a\xbb\xcc\x1e9\x80\xbcu\xd8>\ +Q\xec.\xa5\xebt\x8e\xed\xa5\xab\xac>=\xec^\xd5\ +\xdc9\xa4s=\x03h\xa4\xb9\xaa\xa1\x09F\xde\xd7\xee\ +\xbe$\xb5\xb3S\xdbE\xa8\x00\xf8&\x0e\x95\xde\x0d!\ +\x07\xeb>\xed\xf0e#\x19\xb20\x09U\xec#\x1b|\ +\x08?\x18\x0a8\x1d\xba_\x09\xf2.l<\xdc:\x17\ +\x01L\x90\xa0\xd9\xe0\x06&)/\xb7\xda\x00W\xf3\xe0\ +m\xf2_D\xda\x98\x85\xe4/\x14\x18!e3\x828\ +e\xb80\x0a\x98t\x11\x90\x1b\xf4\x7fdRG\xe5)\ +\xa1!\xbe\x1c\xe6$\x89\x14\xcf \x9dIPr\x05x\ +\xa0\x00\xff6c\x02\x1cnE\xe1\xe9%\xed\xe7\xe3\xac\ +<_\x95\xe8?\x94n_\x98\xc5\xde\xac\x22\x1f\xa6c\ +>\x94oE\xdb\xf8~y\xe8\x9f\x9f\xf9\xa6\x82)f\ +\xbf\xd6\xe7\xc4\x13\xc1y\xfc\xa1W!\xc2P)\xe6[\ +\x10\xd7`\x05\x00d\xfbt\xa4)\xf6\xbf\xfb\x22\x0en\ +?\xbc,\xff\xb0 F\x8c;\x06\x9a \x0f\xf7\xf8\x06\ +\x09\x05\x82@\xa0@\x08P\x00\x05\x0d\x01?\xa2\x0f\xe8\ +\x5c2\x1a\x03\x88\xbf`\xd18\xd4l\x01\x08\x81\xc1c\ +\xd18\xf48\x05!\x8eH\xe1\xd184E\xfd(\x86\ +\xc4\xe5\x92H\xf4z\x0d\x19\x85\xcb&\xd1\xc8\x5c\x92Y\ +&\x85NcRG\xed\x0d\xfb\x13\x92>i\x0f\x87\x9d\ +-\xde\xe3\xa77\x1b\xd5\x16\xb3\xa2\xa8\xe1{\xd5\xde\xb3\ +\xe9\xd5n\xb9]\x8eA\x80v\x10%\x8c\x08\x05\x99L\ +\xe15\xe9<\x22\x81j\xb7[\xeb\x95\xabm\xc2\xe9u\ +\x9dM \xb7k\xd4v\xd9y\xbd\xdf\xf0\x11\xa9e\x11\ +\xf9\x17\xad`q\x18\x9cV/\x19\x8d\xc7c\xf2\x19\x1c\ +\x96O)\x95\xcbe\xf3\x19\x9c\xd6o9\x9d\xcfg\xf4\ +\x1a\x1d\x16\x8fI{\x80\x80\x00\x00\x00\x03\x00\x01\xa0\x03\ +\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\xa0\x04\x00\x01\x00\x00\ +\x00`\x00\x00\x00\x03\xa0\x04\x00\x01\x00\x00\x00`\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00Adobe Pho\ +toshop Document \ +Data Block\x00MIB8n\ +rTM\x00\x00\x00\x00MIB8ryaL$\ +!\x00\x00\x01\x00\x03\x00\x00\x00\x03\x00\x00\x00]\x00\x00\ +\x00\x5c\x00\x00\x00\x04\x00\xff\xff\x88\x0d\x00\x00\x00\x00\x0c\ +\x06\x00\x00\x01\x00\x0c\x06\x00\x00\x02\x00\x0c\x06\x00\x00M\ +IB8mron\xff\x00\x08\x00<\x01\x00\x00\x00\ +\x00\x00\x00(\x00\x00\x00\x00\x00\xff\xff\x00\x00\xff\xff\x00\ +\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\ +\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x07\ +Layer 0MIB8inul\x14\ +\x00\x00\x00\x07\x00\x00\x00L\x00a\x00y\x00e\x00r\ +\x00 \x000\x00\x00\x00MIB8rsnl\x04\ +\x00\x00\x00ryalMIB8diyl\x04\ +\x00\x00\x00\x03\x00\x00\x00MIB8lblc\x04\ +\x00\x00\x00\x01\x00\x00\x00MIB8xfni\x04\ +\x00\x00\x00\x00\x00\x00\x00MIB8oknk\x04\ +\x00\x00\x00\x00\x00\x00\x00MIB8fpsl\x04\ +\x00\x00\x00\x04\x00\x00\x00MIB8rlcl\x08\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00MIB8d\ +mhsH\x00\x00\x00\x01\x00\x00\x00MIB8t\ +suc\x00\x00\x00\x004\x00\x00\x00\x10\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x08\x00\x00\x00metadat\ +a\x01\x00\x00\x00\x09\x00\x00\x00layerTi\ +mebuod\xc5\xa4\xf3l\xf98\xd6A\x00M\ +IB8prxf\x10\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00S\x00O\ +\x00\x0f\x00\x0c\x00\x0a\x00\x09\x00\x09\x00\x09\x00\x09\x00\x15\ +\x00K\x00K\x00\x1e\x00\x1e\x00\x1e\x00\x1c\x00)\x00'\ +\x00(\x00$\x00'\x00\x22\x00'\x00$\x00&\x00%\ +\x00%\x00 \x00\x1d\x00\x1c\x00\x1c\x00\x1d\x00\x1b\x00\x1d\ +\x00!\x00\x22\x00#\x00%\x00!\x00$\x00+\x00+\ +\x00,\x00+\x00(\x00%\x00&\x00.\x00/\x00.\ +\x00+\x00-\x00-\x00.\x00-\x00.\x00/\x00-\ +\x00.\x00-\x00.\x00-\x00-\x00*\x00%\x00#\ +\x00(\x00,\x00+\x00,\x00,\x00%\x00#\x00!\ +\x00&\x00\x22\x00!\x00\x13\x00\x14\x00L\x00\x09\x00\x09\ +\x00\x08\x00\x09\x00\x0a\x00\x0a\x00\x0c\x00L\x00W\x00 \ +\x00\xfd\x00\x04\x05\x11!-1\xfe/\xfc0\x181/\ +/0110010/1/0010/\ +0110/01\xfe0\x0a/21100\ +/00//\xfe1\x000\xfe1\x05010/\ +01\xfe0\xfe1\xff0\x081/0/-'\x18\ +\x08\x01\xfe\x00\xff\x00\x07\x01\x14X\xab\xdb\xec\xf0\xf0\xfd\ +\xf1\x00\xf0\xfe\xf1\x00\xf2\xfd\xf1\xff\xf0\x01\xf1\xf0\xf8\xf1\ +\x03\xf0\xf1\xf1\xf0\xfe\xf1\xfe\xf0\x07\xf1\xf0\xf0\xf1\xf1\xf0\ +\xf1\xf0\xfc\xf1\xff\xf0\x1b\xf1\xf0\xf0\xf1\xf2\xf1\xf0\xf1\xf0\ +\xf1\xf1\xf2\xf0\xf1\xf0\xf1\xf0\xf0\xf1\xf0\xee\xe4\xc2|.\ +\x06\x00\x00\xff\x00\x03\x16\x86\xed\xfd\xb3\xff\x04\xf9\xbfA\ +\x06\x00\x03\x00\x08l\xf4\xb0\xff\x03\xfe\xbd*\x01\x02\x00\ +$\xd0\xae\xff\x02\xf8x\x07\x02\x02O\xf6\xad\xff\x01\xc0\ +\x14\x02\x05r\xfd\xad\xff\x01\xe1#\x02\x08\x86\xfe\xad\xff\ +\x01\xed+\x02\x08\x8f\xfe\xad\xff\x01\xef-\x02\x09\x91\xfe\ +\xf1\xff\x00\xfe\xdb\xff\xfe\xfe\xfd\xff\x00\xfe\xec\xff\x01\xef\ +,\x02\x08\x91\xfe\xfa\xff\x17\xfe\xcf\xc2\xc3\xc2\xc4\xc3\xc4\ +\xc3\xc3\xc4\xc4\xc1\xc3\xc3\xc2\xc3\xc2\xc2\xc3\xc2\xc3\xc4\xc4\ +\xfe\xc2\xff\xc3\x0c\xcb\xd5\xdc\xe1\xe1\xdd\xd5\xcc\xc2\xc3\xc2\ +\xc2\xc1\xfe\xc3\xff\xc4\xf9\xc3\x06\xc4\xc3\xc3\xc4\xc2\xc3\xc4\ +\xfe\xc3\xff\xc2\x01\xc7\xf1\xf9\xff\x01\xf0-\x02\x09\x90\xfe\ +\xfa\xff\x03\xfaK\x18\x17\xfc\x18\x14\x17\x18\x16\x19\x17\x18\ +\x19\x19\x18\x19\x18\x17\x18\x19\x19\x18\x17/~\xce\xf4\xfb\ +\xff\x13\xf7\xc8\x810\x18\x16\x19\x19\x17\x18\x18\x19\x18\x18\ +\x19\x17\x19\x18\x19\x18\xfd\x19\x08\x18\x19\x19\x18\x19\x19\x17\ +,\xc7\xf9\xff\x01\xf0,\x01\x09\x90\xf9\xff\x01\xf98\xeb\ +\x00\x020\x9f\xea\xf5\xff\x02\xeb\x996\xe8\x00\x01\x15\xc0\ +\xf9\xff\x01\xef.\x02\x09\x91\xfe\xfa\xff\x01\xf97\xec\x00\ +\x01u\xf4\xf1\xff\x01\xf7c\xe9\x00\x02\x14\xc2\xfe\xfa\xff\ +\x01\xf0-\x02\x09\x90\xfe\xfa\xff\x01\xf88\xee\x00\x01\x12\ +\x91\xed\xff\x01\x9a\x17\xeb\x00\x02\x14\xc2\xfe\xfa\xff\x01\xef\ +/\x01\x08\x90\xf9\xff\x01\xf99\xef\x00\x01\x0e\xc7\xeb\xff\ +\x01\xba\x02\xec\x00\x01\x14\xc1\xf9\xff\x01\xf0/\x02\x09\x90\ +\xfe\xfa\xff\x01\xf97\xef\x00\x00\x95\xfa\xff\x09\xd1\x9c]\ +B;Hj\xaa\xd6\xfe\xfa\xff\x01\x97\x04\xed\x00\x01\x12\ +\xc0\xf9\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\x01\xf98\xf0\ +\x00\x00r\xfb\xff\x02\xc9E\x02\xfa\x00\x02\x05C\xbf\xfa\ +\xff\x00\x86\xed\x00\x01\x14\xc2\xf9\xff\x01\xf1-\x02\x09\x90\ +\xfe\xfa\xff\x01\xfa8\xf1\x00\x01-\xf5\xfc\xff\x01\xa3\x09\ +\xf6\x00\x02\x02s\xfc\xfc\xff\x01\xee\x16\xee\x00\x01\x15\xc1\ +\xf9\xff\x01\xef-\x01\x09\x92\xf9\xff\x01\xf97\xf1\x00\x00\ +\xb6\xfc\xff\x01\xa8\x06\xf3\x00\x01C\xe7\xfc\xff\x00\xa0\xee\ +\x00\x01\x15\xc2\xf9\xff\x01\xef,\x02\x09\x91\xfe\xfa\xff\x01\ +\xf98\xf2\x00\x01\x1b\xf4\xfd\xff\x01\xe3\x13\xf1\x00\x01:\ +\xfa\xfd\xff\x01\xf9%\xef\x00\x01\x14\xc2\xf9\xff\x01\xf0/\ +\x01\x09\x90\xf9\xff\x01\xfa7\xf2\x00\x00\x82\xfc\xff\x00g\ +\xef\x00\x00\x8f\xfc\xff\x00\x87\xef\x00\x01\x15\xc2\xf9\xff\x01\ +\xef-\x01\x09\x91\xf9\xff\x01\xf87\xf3\x00\x01\x12\xea\xfd\ +\xff\x01\xe9\x0d\xef\x00\x01\x08\xd8\xfd\xff\x01\xdf\x0a\xf0\x00\ +\x02\x14\xc1\xfe\xfa\xff\x01\xef/\x02\x08\x90\xfe\xfa\xff\x01\ +\xf98\xf3\x00\x00n\xfc\xff\x00\xad\xed\x00\x00o\xfd\xff\ +\x01\xfd0\xf0\x00\x01\x15\xc2\xf9\xff\x01\xf0-\x02\x09\x91\ +\xfe\xfa\xff\x01\xf97\xf4\x00\x01\x0f\xe5\xfd\xff\x01\xfe;\ +\xed\x00\x01\x17\xee\xfd\xff\x00T\xf0\x00\x01\x14\xc3\xf9\xff\ +\x01\xf0/\x02\x09\x91\xfe\xfa\xff\x01\xfa7\xf4\x00\x01(\ +\xef\xfd\xff\x01\xc2\x02\xec\x00\x00\xcb\xfd\xff\x00c\xf0\x00\ +\x01\x15\xc1\xf9\xff\x01\xf1-\x02\x09\x92\xfe\xfa\xff\x01\xf8\ +8\xf4\x00\x06\x01\x1bP\xc0\xff\xffI\xeb\x00\x00\xb0\xfd\ +\xff\x00m\xf0\x00\x01\x15\xc2\xf9\xff\x01\xf0.\x01\x09\x90\ +\xf9\xff\x01\xf98\xf0\x00\x02C\x87\x07\xeb\x00\x00\xb6\xfd\ +\xff\x00m\xf0\x00\x01\x15\xc2\xf9\xff\x01\xf0.\x02\x09\x90\ +\xfe\xfa\xff\x01\xf99\xd8\x00\x01\x09\xda\xfd\xff\x00b\xf0\ +\x00\x02\x15\xc3\xfe\xfa\xff\x01\xef-\x01\x08\x91\xf9\xff\x01\ +\xf97\xd8\x00\x018\xfe\xfd\xff\x00Q\xf0\x00\x02\x14\xc2\ +\xfe\xfa\xff\x01\xf0/\x02\x09\x91\xfe\xfa\xff\x01\xf98\xd8\ +\x00\x00\x9b\xfd\xff\x01\xfc2\xf0\x00\x01\x14\xc1\xf9\xff\x01\ +\xf0.\x02\x09\x91\xfe\xfa\xff\x01\xf98\xd9\x00\x01*\xf8\ +\xfd\xff\x01\xd5\x06\xf0\x00\x01\x14\xc1\xf9\xff\x01\xf0.\x02\ +\x09\x91\xfe\xfa\xff\x01\xf99\xd9\x00\x00\x8e\xfc\xff\x00\x80\ +\xef\x00\x01\x14\xc2\xf9\xff\x01\xf1.\x02\x09\x92\xfe\xfa\xff\ +\x01\xf99\xda\x00\x01\x07\xdf\xfd\xff\x01\xe5\x19\xef\x00\x01\ +\x15\xc1\xf9\xff\x01\xf0/\x02\x08\x93\xfe\xfa\xff\x01\xf98\ +\xda\x00\x01B\xfe\xfd\xff\x04\xef\xc8\xca\xad^\xf2\x00\x02\ +\x15\xc1\xfe\xfa\xff\x01\xef.\x02\x09\x91\xfe\xfa\xff\x01\xf9\ +8\xe0\x00\x06\x0c\x22Cg\x84\x9c\xda\xf7\xff\x01\xb9(\ +\xf4\x00\x01\x14\xc1\xf9\xff\x01\xef-\x01\x08\x8f\xf9\xff\x01\ +\xf99\xe6\x00\x07\x0d(Hn\x97\xbb\xde\xf4\xf1\xff\x01\ +\xd1\x0a\xf5\x00\x02\x15\xbf\xfe\xfa\xff\x01\xee.\x02\x09\x92\ +\xfe\xfa\xff\x01\xf89\xef\x00\x0a\x02\x0e\x1d:Pf~\ +\x9b\xc2\xdf\xf8\xea\xff\x00Q\xf5\x00\x01\x14\xc2\xf9\xff\x01\ +\xef.\x01\x09\x91\xf9\xff\x01\xf98\xf4\x00\x07\x059]\ +\x88\xaf\xd1\xe3\xee\xe2\xff\x00\x9f\xf5\x00\x01\x14\xc1\xf9\xff\ +\x01\xf0-\x02\x09\x90\xfe\xfa\xff\x01\xf98\xf6\x00\x02\x10\ +{\xd0\xe3\xff\x03\xfa\xf0\xdc\xed\xfd\xff\x00\xc1\xf5\x00\x01\ +\x14\xc1\xf9\xff\x01\xef,\x02\x09\x90\xfe\xfa\xff\x01\xf97\ +\xf7\x00\x01$\xd4\xe8\xff\x0a\xfb\xe5\xc7\x9fyR8)\ +\x18\x08\x9d\xfd\xff\x01\xe2\x0f\xf6\x00\x01\x15\xc2\xf9\xff\x01\ +\xf1.\x01\x09\x91\xf9\xff\x01\xf98\xf8\x00\x01\x05\xc8\xed\ +\xff\x07\xf7\xe2\xc0\x9crJ+\x0d\xf9\x00\x00\x8a\xfd\xff\ +\x01\xf8&\xf6\x00\x01\x14\xc3\xf9\xff\x01\xf1.\x02\x09\x92\ +\xfe\xfa\xff\x01\xf99\xf8\x00\x00`\xf4\xff\x09\xfd\xea\xcd\ +\xa7\x82jXC#\x0c\xf3\x00\x00k\xfc\xff\x00J\xf6\ +\x00\x01\x13\xc2\xf9\xff\x01\xf0.\x02\x09\x91\xfe\xfa\xff\x01\ +\xf97\xf8\x00\x00\xaf\xfa\xff\x07\xfb\xe6\xc6\xa3wR/\ +\x11\xeb\x00\x00D\xfc\xff\x00p\xf6\x00\x02\x15\xc2\xfe\xfa\ +\xff\x01\xf0.\x02\x09\x91\xfe\xfa\xff\x01\xf98\xf8\x00\x00\ +\xc1\xfd\xff\x04\xeaxJ+\x0f\xe5\x00\x01#\xf8\xfd\xff\ +\x00\x97\xf6\x00\x01\x14\xc1\xf9\xff\x01\xef.\x02\x09\x91\xfe\ +\xfa\xff\x01\xf88\xf8\x00\x00\xa1\xfd\xff\x01\xe5\x03\xe2\x00\ +\x01\x08\xdf\xfd\xff\x00\xbe\xf6\x00\x01\x15\xc1\xf9\xff\x01\xef\ +-\x02\x09\x91\xfe\xfa\xff\x01\xf97\xf8\x00\x00y\xfd\xff\ +\x01\xfc.\xe1\x00\x00\xc0\xfd\xff\x01\xdd\x0a\xf7\x00\x02\x14\ +\xc2\xfe\xfa\xff\x01\xf1.\x02\x09\x91\xfe\xfa\xff\x01\xf98\ +\xf8\x00\x00M\xfc\xff\x00T\xf3\x00\x05?\x95\xb6\xa2f\ +\x0b\xf5\x00\x00\x96\xfd\xff\x01\xf7&\xf7\x00\x02\x15\xc2\xfe\ +\xfa\xff\x01\xef.\x02\x09\x90\xfe\xfa\xff\x01\xf98\xf8\x00\ +\x01.\xfd\xfd\xff\x00w\xf5\x00\x02\x08\x97\xfd\xfd\xff\x01\ +\xc5#\xf6\x00\x00r\xfc\xff\x00C\xf7\x00\x01\x14\xc1\xf9\ +\xff\x01\xef.\x02\x09\x92\xfe\xfa\xff\x01\xf97\xf8\x00\x01\ +\x10\xe8\xfd\xff\x00\xa2\xf6\x00\x01\x01\xaf\xfa\xff\x01\xe11\ +\xf7\x00\x00H\xfc\xff\x00i\xf7\x00\x01\x15\xc2\xf9\xff\x01\ +\xf0.\x01\x09\x91\xf9\xff\x01\xf98\xf7\x00\x00\xcb\xfd\xff\ +\x00\xc7\xf6\x00\x00?\xf8\xff\x00\xb7\xf7\x00\x01'\xfa\xfd\ +\xff\x00\x87\xf7\x00\x01\x15\xc1\xf9\xff\x01\xef.\x01\x09\x91\ +\xf9\xff\x01\xf97\xf7\x00\x00\xa7\xfd\xff\x01\xe3\x0d\xf7\x00\ +\x00\xa0\xf8\xff\x01\xe6\x0b\xf8\x00\x01\x0c\xe4\xfd\xff\x00\x9d\ +\xf7\x00\x01\x14\xc0\xf9\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\ +\x01\xf98\xf7\x00\x00|\xfd\xff\x01\xf5\x1f\xf7\x00\x00\xcb\ +\xf8\xff\x01\xf7\x22\xf7\x00\x00\xc3\xfd\xff\x00\xb3\xf7\x00\x01\ +\x13\xc0\xf9\xff\x01\xf0.\x02\x09\x91\xfe\xfa\xff\x01\xf97\ +\xf7\x00\x00W\xfd\xff\x01\xfc.\xf7\x00\x00\xc0\xf8\xff\x01\ +\xf3\x1e\xf7\x00\x00\xa0\xfd\xff\x01\xcb\x01\xf8\x00\x01\x14\xc1\ +\xf9\xff\x01\xf1.\x01\x09\x91\xf9\xff\x01\xfa8\xf7\x00\x01\ +0\xfd\xfd\xff\x00A\xf7\x00\x00\x82\xf8\xff\x01\xdc\x05\xf7\ +\x00\x00t\xfd\xff\x01\xe8\x14\xf8\x00\x01\x15\xc1\xf9\xff\x01\ +\xef-\x02\x09\x91\xfe\xfa\xff\x01\xf97\xf7\x00\x01\x14\xee\ +\xfd\xff\x00^\xf7\x00\x01$\xf9\xf9\xff\x00\x90\xf6\x00\x00\ +N\xfd\xff\x01\xfb-\xf8\x00\x01\x13\xc2\xf9\xff\x01\xf0-\ +\x02\x09\x91\xfe\xfa\xff\x01\xf99\xf7\x00\x01\x02\xcd\xfd\xff\ +\x00\x8a\xf6\x00\x00k\xfb\xff\x02\xfe\xa1\x0a\xf6\x00\x005\ +\xfc\xff\x00T\xf8\x00\x02\x15\xc2\xfe\xfa\xff\x01\xf1.\x01\ +\x09\x92\xf9\xff\x01\xf98\xf6\x00\x00\xb4\xfd\xff\x00\xae\xf5\ +\x00\x01P\xd7\xfd\xff\x01\xfa\x22\xf5\x00\x01(\xfa\xfd\xff\ +\x00x\xf8\x00\x01\x15\xc2\xf9\xff\x01\xf0-\x02\x09\x91\xfe\ +\xfa\xff\x01\xf86\xf6\x00\x00\xa1\xfd\xff\x01\xd1\x04\xf5\x00\ +\x00T\xfc\xff\x00H\xf5\x00\x01\x18\xf0\xfd\xff\x00\x9f\xf8\ +\x00\x02\x14\xc1\xfe\xfa\xff\x01\xf0-\x02\x09\x91\xfe\xfa\xff\ +\x01\xf98\xf6\x00\x00\x8c\xfd\xff\x01\xee\x18\xf5\x00\x00=\ +\xfc\xff\x00s\xf5\x00\x01\x06\xda\xfd\xff\x00\xc6\xf8\x00\x01\ +\x14\xc2\xf9\xff\x01\xf0.\x02\x09\x92\xfe\xfa\xff\x01\xf86\ +\xf6\x00\x00r\xfd\xff\x01\xfe4\xf5\x00\x01%\xf7\xfd\xff\ +\x00\x98\xf4\x00\x00\xba\xfd\xff\x01\xe3\x0f\xf9\x00\x01\x14\xc1\ +\xf9\xff\x01\xf0/\x01\x09\x91\xf9\xff\x01\xf98\xf6\x00\x00\ +F\xfc\xff\x00[\xf5\x00\x01\x08\xdc\xfd\xff\x00\x90\xf4\x00\ +\x00\x8f\xfd\xff\x01\xfb,\xf9\x00\x02\x15\xc1\xfe\xfa\xff\x01\ +\xf0.\x02\x09\x91\xfe\xfa\xff\x01\xf88\xf6\x00\x01'\xfa\ +\xfd\xff\x00\x80\xf4\x00\x00t\xfe\xff\x01\xee-\xf4\x00\x00\ +j\xfc\xff\x00K\xf9\x00\x01\x15\xc2\xf9\xff\x01\xf1-\x01\ +\x09\x91\xf9\xff\x01\xfa8\xf6\x00\x01\x0b\xe2\xfd\xff\x00\xab\ +\xf3\x00\x03D\x97\x8a)\xf3\x00\x00@\xfc\xff\x00u\xf9\ +\x00\x01\x13\xc2\xf9\xff\x01\xf0.\x01\x08\x90\xf9\xff\x01\xf9\ +8\xf5\x00\x00\xc4\xfd\xff\x01\xcd\x01\xe2\x00\x01 \xf7\xfd\ +\xff\x00\x9a\xf9\x00\x02\x14\xc2\xfe\xfa\xff\x01\xf0.\x01\x09\ +\x91\xf9\xff\x01\xf98\xf5\x00\x00\x9c\xfd\xff\x01\xeb\x15\xe1\ +\x00\x00\xd8\xfd\xff\x00\xbb\xf9\x00\x01\x13\xc2\xf9\xff\x01\xf0\ +.\x02\x08\x91\xfe\xfa\xff\x01\xf97\xf5\x00\x00t\xfd\xff\ +\x01\xfe1\xe4\x00\x03\x07\x1c=\xd4\xfd\xff\x00\xce\xf9\x00\ +\x02\x15\xc0\xfe\xfa\xff\x01\xef-\x02\x09\x91\xfe\xfa\xff\x01\ +\xf89\xf5\x00\x00N\xfc\xff\x00S\xec\x00\x09\x02\x12\x22\ +3Ei\x8f\xb7\xd7\xf1\xfb\xff\x00\xc9\xf9\x00\x01\x14\xc2\ +\xf9\xff\x01\xef-\x01\x09\x90\xf9\xff\x01\xf96\xf5\x00\x01\ +)\xfb\xfd\xff\x00z\xf2\x00\x08\x03\x1a7Z\x85\xa8\xd0\ +\xe9\xf6\xf4\xff\x00\x8b\xf9\x00\x01\x14\xc0\xf9\xff\x01\xf1,\ +\x01\x09\x90\xf9\xff\x01\xf97\xf5\x00\x01\x0f\xe8\xfd\xff\x00\ +\x92\xf9\x00\x08\x03\x0d\x1d\x0a\x0a \x0a icon / Prefer\ +ences / Global\x0a Created with Sk\ +etch.\x0a \ + \x0a \x0a \ +\x0a\x0a\ +\x00\x00\x09\xaf\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / Prefer\ +ences / Camera\x0a Created with Sk\ +etch.\x0a \ + \x0a \x0a \ + \ +\x0a \x0a \ + \x0a\x0a\ +\x00\x00\x05\xc2\ +<\ +svg width=\x2224\x22 h\ +eight=\x2224\x22 viewB\ +ox=\x220 0 24 24\x22 f\ +ill=\x22none\x22 xmlns\ +=\x22http://www.w3.\ +org/2000/svg\x22>\x0a<\ +path d=\x22M21.4629\ + 11.2764C20.6447\ + 10.508 19.5748 \ +10.0719 18.4419 \ +10.0719C17.8965 \ +10.0719 17.351 1\ +0.1758 16.8475 1\ +0.3834C16.5748 9\ +.26204 15.9664 8\ +.2237 15.1063 7.\ +37226C13.8685 6.\ +16779 12.6717 5.\ +47607 10.4147 5.\ +47607C7.92095 5.\ +47607 6.586 6.16\ +779 5.32725 7.37\ +226C4.08949 8.57\ +673 3.30673 10.1\ +907 3.30673 11.8\ +935C3.30673 12.1\ +635 3.32771 12.4\ +335 3.34869 12.7\ +035C2.84519 12.8\ +281 2.49509 13.0\ +831 2.13844 13.4\ +362C1.57201 13.9\ +761 1.25732 14.7\ +029 1.25732 15.4\ +713C1.25732 17.1\ +534 2.66292 18.5\ +032 4.3832 18.50\ +32L18.2741 18.52\ +4C20.7286 18.524\ + 22.7426 16.5927\ + 22.7426 14.2045\ +C22.7217 13.1039\ + 22.2811 12.0656\ + 21.4629 11.2764\ +ZM17.2975 16.665\ +9L4.65419 16.686\ +7C3.62622 16.686\ +7 3.45969 16.038\ +7 3.37771 15.643\ +7C3.30673 15.301\ +7 3.37861 14.788\ +2 3.53455 14.579\ +9C3.74825 14.294\ +4 4.10093 14.164\ +9 4.5273 14.1216\ +C4.76182 14.0979\ + 5.1687 14.0552 \ +5.32721 13.8355C\ +5.43211 13.6901 \ +5.47406 13.5032 \ +5.45308 13.3163C\ +5.36917 12.901 5\ +.32721 12.5272 5\ +.32721 12.1119C5\ +.32721 10.7413 5\ +.6315 9.73925 6.\ +63849 8.76321C7.\ +64549 7.78717 8.\ +98815 7.24724 10\ +.4147 7.24724C11\ +.8413 7.24724 12\ +.9769 7.56395 13\ +.9839 8.53999C14\ +.865 9.39143 15.\ +3895 10.4921 15.\ +5154 11.655C15.5\ +363 11.8627 15.6\ +622 12.0703 15.8\ +72 12.1534C16.06\ +08 12.2365 16.31\ +26 12.2365 16.48\ +04 12.1119C17.63\ +42 11.3643 18.84\ +8 11.1981 19.876\ + 12.1742C20.4424\ + 12.7141 20.7426\ + 13.4362 20.7426\ + 14.2045C20.7426\ + 15.9074 19.0808\ + 16.6659 17.2975\ + 16.6659Z\x22 fill=\ +\x22white\x22/>\x0a\ +\x0a\ +\x00\x00\x00\xab\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x0d\x08\x06\x00\x00\x00\xa0\xbb\xee$\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +UIDAT8Oc\xfc\xff\xff?\x03%\x80\x09\ +J\x93\x0d\xf0\x1a\xd0\xd8\xd8H\xd0y\x04]@\xc8\x10\ +\x940\xc0\xa7\xb8\xbe\xbe\x9e\x11\xcaD\x01D\x87\x01.\ +\xc3I\x0aDl\x86\x90d\x006o\x10m\x00\xae0\ +\xc0\x9b\x90`N\xc6\xa5\x19\x04\x08\xba\x00\x9ff\x10\x18\ +\xe8\xa4\xcc\xc0\x00\x00\x9d\xda\x22\x8d\x12\xa2\xae,\x00\x00\ +\x00\x00IEND\xaeB`\x82\ +\x00\x00\x05p\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / Prefer\ +ences / viewport\ +\x0a Created with \ +Sketch.\x0a \ + \x0a \ + \ +\x0a \x0a \x0a \ + \x0a\x0a\ +\x00\x00\x00\xca\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x0d\x08\x06\x00\x00\x00\xa0\xbb\xee$\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ +\xa8d\x00\x00\x00_IDAT8O\xc5\x91\xc1\x0e\ +\xc0 \x08C\xc1\x1f\x07\xbe\x9c\x05'\x86\xc4\xb9\x89\x1e\ +\xf6.r\xa1\xd2\x16U\x15\x0c\x11\xb9\x87\x07\x88\x08\xdb\ +8\x80\xcc<]\x5c\xa1\xb4w\x9b\xff\x05z\x88\x19b\ +\xe0\xe9\x10\xbd\x11\x17I[\xf0E\x17*o\x1d\xcf\x88\ +\x16\x8eB\xb4\xcf\xab\xc0\xc9\x15\xfd\x82\x1d\x11c\xa81\ +\xfa\xfb\x06\xe0\x02\xfbk*\x0b\x22\xb70[\x00\x00\x00\ +\x00IEND\xaeB`\x82\ +\x00\x00\x05\xfe\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a Icons / Editor\ + / EMFX / Motion\ +\x0a \x0a \x0a \ + \x0a \ + \x0a\x0a\ +\x00\x00\x00\xa0\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x0d\x08\x06\x00\x00\x00\xa0\xbb\xee$\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7o\ +\xa8d\x00\x00\x005IDAT8Oclhh\ +\xf8\xcf\x80\x06\xea\xeb\xeb\x19\xa1L\x82\x80\x09J\x93\x0d\ +\xb0\xba\x80\x18\x00s%\xd9.hll\x04[L\xb1\ +\x17F\x0d\x185\x80\x81\x81\x81\x01\x00\xc0\x1c\x0a\x95\xd5\ +0\x97g\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x11\xbc\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / Prefer\ +ences / Debug\x0a \ +Created with Ske\ +tch.\x0a \ +\x0a \x0a \ + \x0a \ + \x0a <\ +/g>\x0a\x0a\ +\x00\x00\x125\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / Prefer\ +ences / Experime\ +ntal\x0a \ + Created w\ +ith Sketch.\x0a \ +\x0a \x0a \x0a\x0a\ +\x00\x00\x04\x0e\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / Prefer\ +ences / Files\x0a \ +Created with Ske\ +tch.\x0a \ +\x0a \x0a \ + \x0a\x0a\ +\x00\x00\x03`\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a \x0a icon / Prefer\ +ences / Gizmos\x0a Created with Sk\ +etch.\x0a \ + \x0a \x0a \ + \x0a\x0a\ +\x00\x00\x00[\ +\x00\ +\x00\x01Fx\x9c\x8d\x8c1\x0a\x800\x10\x04\xe7\xacD\ +P;\xeb\x94\x96>\xc1\xa7\xf9d\xad\x05\xcf\x8d\x88B\ +\xc0\x98Y\x86\x83cY\xa80B\x80V\x99\x0c\x06`\ +\x94z1KS\x22\x0b/\xd5m\xc4\xdd)\xa2\x93\xcd\ +\xb7\xfd~Pk5\xde\x5c\xef\xdaI\xf0\x12\xb6\xbc+\ +\xf6\xf8\xd7M9\x01\x0cb\x81\xee\ +\x00\x00\x00[\ +\x00\ +\x00\x01Fx\x9c\xc5\xc81\x0e@@\x18D\xe1\xf9W\ +!**\xad-\x95n\xc0\xcd\xec\xd1\x1c\xc5\x11\x94\x0a\ +\xf1\xec\xc6\x8a\x0bH|\x93\xd7\x8c\xe4d\xf2^jT\ +i0\xa9\x95\xd4\xc7\xe2\xa5)fqI\xd0\xcb\xe5\x12\ +@\x7f\xe3q\xcep\x8c\xb0w\xb0\xd5\xb0\x96\xb0\x14\x10\ +\xec\xfe\xbe.\xbb\x00\x9d\x16jC\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x0c\x00\x04\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x07\xf8\x00\x00\x07\xf8\x00\x00\x0f\xfc\x00\x00\x0f\xfc\ +\x00\x00\x1f\xfc\x00\x00\x1f\xfe\x00\x00?\xfe\x00\x00/\xfe\ +\x00\x00o\xfe\x00\x00\xef\xfe\x00\x00\xcf\xf6\x00\x00\x0d\xb6\ +\x00\x00\x0d\xb4\x00\x00\x0d\xb0\x00\x00\x0d\x80\x00\x00\x0c\x00\ +\x00\x00\x0c\x00\x00\x00\x0c\x00\x00\x00\x0c\x00\x00\x00\x0c\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf0\x03\ +\xff\xff\xf0\x03\xff\xff\xf0\x03\xff\xff\xe0\x01\xff\xff\xe0\x01\ +\xff\xff\xc0\x01\xff\xff\xc0\x00\xff\xff\x80\x00\xff\xff\x80\x00\ +\xff\xff\x00\x00\xff\xfe\x00\x00\xff\xfe\x00\x00\xff\xfe \x00\ +\xff\xff\xe0\x01\xff\xff\xe0\x03\xff\xff\xe0\x0f\xff\xff\xe0\x7f\ +\xff\xff\xe1\xff\xff\xff\xe1\xff\xff\xff\xe1\xff\xff\xff\xe1\xff\ +\xff\xff\xf3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x00\xa7\ +\x00\ +\x00\x0c\xbex\x9c\xed\x921\x0a\xc20\x18\x85_t\xe8\ +Rp\x13\xc7\x8e=\x867\xf0J\x1e\xc1cx\x0c\xc1\ +\x8btsut(<_\x8bC1\x12K\x93\xdfA\ +\xfe\x0f\x1e\x09\x09\xf9^\x02\x01V\x08h\x1a\x8c\xe3\xb9\ +\x06\xb6\x00ZEK\xd8+\x01;\x8c\xd4p\x1c\xc7q\ +\x9c?\x85\x11\xa6\xf2\x82\xfe\x8f\xf2R\x15\x09\xf9\x0f\xfc\ +\x99\x15_\xe59\xfe\xa9\xc1\xce?\xe7!\x8b+\xe2\xb7\ +\xbci\x8b\xf8c\xdbt\x92}\xf7\x94\xbf\xa0\xdc\x08k\ +\xbf\x11\xe9\x0f9\x8f~C>*\xf2\xaetk\xf22\ +$\x90G\x05C\xd4rR\xba\xf0\xda?\x90W\x9d\xbb\ +)O\x85i\xaa%\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x06\x00\x06\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x000\x00\x00\x000\x00\x00\x000\x00\ +\x00\x01\xfe\x00\x00\x01\xfe\x00\x00\x000\x00\x00\x000\x00\ +\x00\x001\x80\x00\x00\x01\x80\x00\x00\x03\x00\x00\x00\x03\x00\ +\x00\x00\x06\x00\x00\x00F\x00\x00\x00l\x00\x00\x00|\x00\ +\x00\x00\x7f\x80\x00\x00\x7f\x00\x00\x00~\x00\x00\x00|\x00\ +\x00\x00x\x00\x00\x00p\x00\x00?\xe0\x00\x00 \x00\ +\x00 \x00\x00 \x00\x00 \x00\x00 \x00\ +\x00 \x00\x00 \x00\x00?\xe0\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xcf\xff\xff\xff\xcf\xff\xff\xff\xcf\xff\ +\xff\xfe\x01\xff\xff\xfe\x01\xff\xff\xff\xcf\xff\xff\xff\xce\x7f\ +\xff\xff\xcc?\xff\xff\xfc?\xff\xff\xf8\x7f\xff\xffx\x7f\ +\xff\xff0\xff\xff\xff\x10\xff\xff\xff\x01\xff\xff\xff\x00\x1f\ +\xff\xff\x00?\xff\xff\x00\x7f\xff\xff\x00\xff\xff\xff\x01\xff\ +\xff\xff\x03\xff\xff\x80\x07\xff\xff\x80\x0f\xff\xff\x9f\xcf\xff\ +\xff\x9f\xcf\xff\xff\x9f\xcf\xff\xff\x9f\xcf\xff\xff\x9f\xcf\xff\ +\xff\x9f\xcf\xff\xff\x9f\xcf\xff\xff\x80\x0f\xff\xff\x80\x0f\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x00`\ +\x00\ +\x00\x01Fx\x9cc``b`dPP``\xe0\ +f\xe0e0`d`\x10c``\xd0\x00b\xa0\x10\ +\x83\x03\x103\x02!\x0840 \x00\x13\x14\x83\xc0\xff\ +\xff\xff\x19H\x025@\x1c\x82\x03\x0b\xe0\x91\xab\xc1m\ +\xe4\x7fR@3&\xfe\xdd\xbc\xff\xff\xe7\xe6\xf9\xff\x1f\ +0\xf0\x83i\x10\x1f\x9b:\x5c\x00\x00\x81\xb3~\xf0\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x0f\x00\x0f\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x03\x80\x00\x00\x02\x80\x00\x00\x02\x80\ +\x00\x00\x02\x80\x00\x00\x02\x80\x00\x00\x04@\x00\x00\x0c`\ +\x00\x03\xf0\x1f\x80\x02\x01\x00\x80\x03\xf0\x1f\x80\x00\x0c`\ +\x00\x00\x04@\x00\x00\x02\x80\x00\x00\x02\x80\x00\x00\x02\x80\ +\x00\x00\x02\x80\x00\x00\x03\x80\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\ +\xff\xff\xfe\xff\xff\xff\xfc\x7f\xff\xff\xfc\x7f\xff\xff\xfc\x7f\ +\xff\xff\xfc\x7f\xff\xff\xfc\x7f\xff\xff\xf9?\xff\xff\xf1\x1f\ +\xff\xfc\x03\x80\x7f\xf0\x1e\xf0\x1f\xfc\x03\x80\x7f\xff\xf1\x1f\ +\xff\xff\xf9?\xff\xff\xfc\x7f\xff\xff\xfc\x7f\xff\xff\xfc\x7f\ +\xff\xff\xfc\x7f\xff\xff\xfc\x7f\xff\xff\xfe\xff\xff\xff\xfe\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x10\x00\x0d\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\ + \x01\x00\x00@\x00\xc0\x01\x80\x008\x0e\x00\x00\x07\xf0\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf9\xff\xff\xcf\xf8\xff\xff\ +\x8f\xfc?\xfe\x1f\xfe\x07\xe0?\xff\x00\x00\x7f\xff\xc0\x01\ +\xff\xff\xf8\x0f\xff\xff\xff\xff\xff\xff\xff\x7f\xff\xff\xfe?\ +\xff\xff\xff\x7f\xff\xff\xff\x7f\xff\xff\xff\x7f\xff\xff\xfe?\ +\xff\xff\xff\x7f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x00X\ +\x00\ +\x00\x01Fx\x9c\xc5\xcd1\x0a\x800\x0cF\xe1\x97.\ +\xe2\xa4\x93k;:z\x83z\xb3\xf6\xc8\xbdA\xfc\x0b\ +\x05A\x9c\x5c|\xe1#\x90\xa1\x85\x80\x91\x12\xac\xcc\x1c\ +\x06\x1b\xb0\x8bN\x9cb\x9a^\xe5.\x0c=w\xe7\xef\ +\xfc\xa5V>+\x92\x1bDYd\x1a;\xea\xd9,\xe5\ +\xf9\xd7\x05'\x93i\xe6\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x03\x00\x03\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x1e\x00\x00\x00\x1e\x00\ +\x00\x00\x1e\x00\x00\x00\x1e\x00\x00\x18\x1e\x00\x00\x14\x0c\x00\ +\x00\x12\x00\x00\x00\x11\xe0\x00\x00\x10\x10\x00\x00\x10 \x00\ +\x00\x10@\x00\x00\x10\x80\x00\x00\x11\x00\x00\x00\x12\x00\x00\ +\x00\x14\x00\x00\x00\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xf3\xff\xff\xff\xe1\xff\xff\xff\xc0\xff\xff\xff\xc0\xff\ +\xff\xff\xc0\xff\xff\xff\xc0\xff\xff\xe7\xc0\xff\xff\xe3\xe1\xbf\ +\xff\xe1\xf3\xbf\xff\xe0\x1e\x0f\xff\xe0\x0f\xbf\xff\xe0\x1f\xbf\ +\xff\xe0?\xff\xff\xe0\x7f\xff\xff\xe0\xff\xff\xff\xe1\xff\xff\ +\xff\xe3\xff\xff\xff\xe7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x00\x00\x18\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xf0\x00\x00\x00\x88\x00\x00\x00\x84\x00\x00\x00\x82\x00\x00\ +\x00A\x00\x00\x00 \x80\x00\x00\x10@\x00\x00\x0b\xa0\x00\ +\x00\x05\xd6\x00\x00\x02\xe9\x00\x00\x01a\x00\x00\x00\x81\x00\ +\x00\x00@\x80\x00\x00\x80@\x00\x00\x80 \x00\x00p \ +\x00\x00\x08 \x00\x00\x04@\x00\x00\x03\x80\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\x0f\xff\xff\xff\x07\xff\xff\xff\x03\xff\xff\xff\x01\xff\xff\ +\xff\x80\xfc\xff\x0f\xc0~|c\xe0?1\xf9\xf0\x1f\x87\ +\xff\xf8\x09\xfd\xff\xfc\x00\xf8\xff\xfe\x00\xf0\x7f\xff\x00\xfd\ +\xdb\xff\x80}\xdb\xff\x00=\xdb\xff\x00\x1d\xc3\xff\x80\x1d\ +\xdb\xff\xf0\x1d\xdb\xff\xf8=\xdb\xff\xfcp\x7f\xff\xff\xf8\ +\xff\xff\xff\xfd\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x01\x00\x01\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x18\x00\x00\x00\x18\x00\x00\x00\x18\x00\x00\x00\xff\x00\x00\ +\x00\xff\x00\x00\x00\x18\x00\x00\x00\x18\x00\x00\x00\x18\xc0\x00\ +\x00\x00\xc0\x00\x00\x01\x80\x00\x00\x01\x80\x00\x00\x03\x00\x00\ +\x00#\x00\x00\x006\x00\x00\x00>\x00\x00\x00?\xc0\x00\ +\x00?\x80\x00\x00?\x00\x00\x00>\x00\x00\x00<\x00\x00\ +\x008\x00\x00\x000\x00\x00\x00 \x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xe7\xff\xff\xff\xe7\xff\xff\xff\xe7\xff\xff\xff\x00\xff\xff\ +\xff\x00\xff\xff\xff\xe7\xff\xff\xff\xe7?\xff\xff\xe6\x1f\xff\ +\xff\xfe\x1f\xff\xff\xfc?\xff\xff\xbc?\xff\xff\x98\x7f\xff\ +\xff\x88\x7f\xff\xff\x80\xff\xff\xff\x80\x0f\xff\xff\x80\x1f\xff\ +\xff\x80?\xff\xff\x80\x7f\xff\xff\x80\xff\xff\xff\x81\xff\xff\ +\xff\x83\xff\xff\xff\x87\xff\xff\xff\x8f\xff\xff\xff\x9f\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x0f\x00\x0f\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\xe0\ +\x00\x00\x18\x18\x00\x00 \x04\x00\x00@\x02\x00\x00\x80\x01\ +\x00\x01\x00\x00\x80\x01\x00\x00\x80\x02\x00\x00@\x02\x00\x00\ +@\x02\x02\x00@\x02\x02\x00\x00\x02\x03\x00\x00\x02\x00\x00\ +\x00\x01\x00\x7f\x80\x01\x00 \x80\x00\x80\x10\x80\x00@\x08\ +\x80\x00 \x04\x80\x00\x18\x1a\x80\x00\x07\xe1\x80\x00\x00\x00\ +\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf8\x1f\ +\xff\xff\xe0\x07\xff\xff\xc7\xe3\xff\xff\x9f\xf9\xff\xff?\xfc\ +\xff\xfe\x7f\xfe\x7f\xfe\x7f\xfe\x7f\xfc\xff\xff?\xfc\xff\xff\ +?\xfc\xfc\x7f?\xfc\xfc\x7f\xff\xfc\xfc\x7f\xff\xfc\xff\xff\ +\xff\xfe\x7f\x80\x7f\xfe\x7f\xc0\x7f\xff?\xe0\x7f\xff\x9f\xf0\ +\x7f\xff\xc7\xe0\x7f\xff\xe0\x04\x7f\xff\xf8\x1e\x7f\xff\xff\xff\ +\x7f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x0f\x00\x0f\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x80\x00\x00\x04@\ +\x00\x00\x08 \x00\x00\x02\x80\x00\x00\x22\x88\x00\x00B\x84\ +\x00\x00\x9e\xf2\x00\x01\x00\x01\x00\x00\x9e\xf2\x00\x00B\x84\ +\x00\x00\x22\x88\x00\x00\x02\x80\x00\x00\x08 \x00\x00\x04@\ +\x00\x00\x02\x80\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff\xfc\x7f\xff\xff\xf8?\ +\xff\xff\xf0\x1f\xff\xff\xfc\x7f\xff\xff\xdcw\xff\xff\x9cs\ +\xff\xff\x00\x01\xff\xfe\x00\x00\xff\xff\x00\x01\xff\xff\x9cs\ +\xff\xff\xdcw\xff\xff\xfc\x7f\xff\xff\xf0\x1f\xff\xff\xf8?\ +\xff\xff\xfc\x7f\xff\xff\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x04\x00\x06\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x03\xe0\x00\x00\x03\xe8\x00\x00\x03\xe0\x00\x00\x03\xe8\ +\x00\x00\x00\x08\x00\x00\x01\xf0\x00\x00\x0c\x00\x00\x00\x0c\x00\ +\x00\x00\x00\x00\x00\x00`\x00\x00\x00`\x00\x00\x00\x00\x00\ +\x00\x1f\x00\x00\x00\x13@\x00\x00\x13@\x00\x00\x1f@\x00\ +\x00\x00@\x00\x00\x0f\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf8\x0f\ +\xff\xff\xf8\x07\xff\xff\xf8\x03\xff\xff\xf8\x03\xff\xff\xf8\x03\ +\xff\xff\xf8\x03\xff\xff\xf0\x03\xff\xff\xe0\x03\xff\xff\xe1\xff\ +\xff\xff\x93\xff\xff\xff\x0f\xff\xff\xff\x0f\xff\xff\xc0\x1f\xff\ +\xff\xc0?\xff\xff\xc0\x1f\xff\xff\xc0\x1f\xff\xff\xc0\x1f\xff\ +\xff\xc0\x1f\xff\xff\xe0\x1f\xff\xff\xf0\x1f\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x01\x00\x01\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\ +\x00\x0e\x00\x00\x00\x0e\x00\x00\x00\x00\x80\x00\x00\x01@\x00\ +\x00\x00\xa0\x00\x00\x00P\x00\x00\x00(\x00\x00\x00\x14\x00\ +\x00\x00\x0a\x00\x00\x00\x05\x00\x00\x00\x02\x80\x00\x00\xc1\x00\ +\x00\x00\xc0\xe0\x00\x01\x80\xe0\x00\x01\x80\xe0\x00\x03\x00\x00\ +\x00#\x00\x00\x006\x00\x00\x00>\x00\x00\x00?\xc0\x00\ +\x00?\x80\x00\x00?\x00\x00\x00>\x00\x00\x00<\x00\x00\ +\x008\x00\x00\x000\x00\x00\x00 \x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xf1\xff\xff\xff\xe0\xff\xff\ +\xff\xe0\xff\xff\xff\xe0\xff\xff\xff\xf0\x7f\xff\xff\xfe?\xff\ +\xff\xff\x1f\xff\xff\xff\x8f\xff\xff\xff\xc7\xff\xff\xff\xe3\xff\ +\xff\xff\xf1\xff\xff\xff\xf8\xff\xff\xff<\x7f\xff\xfe\x1e\x1f\ +\xff\xfe\x1e\x0f\xff\xfc>\x0f\xff\xbc>\x0f\xff\x98\x7f\x1f\ +\xff\x88\x7f\xff\xff\x80\xff\xff\xff\x80\x0f\xff\xff\x80\x1f\xff\ +\xff\x80?\xff\xff\x80\x7f\xff\xff\x80\xff\xff\xff\x81\xff\xff\ +\xff\x83\xff\xff\xff\x87\xff\xff\xff\x8f\xff\xff\xff\x9f\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x01\x00\x01\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00\x00\ +\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\ +\x00\x00\xc0\x00\x00\x01\x80\x00\x00\x01\x80\x00\x00\x03\x00\x00\ +\x00#\x00\x00\x006\x00\x00\x00>\x00\x00\x00?\xc0\x00\ +\x00?\x80\x00\x00?\x00\x00\x00>\x00\x00\x00<\x00\x00\ +\x008\x00\x00\x000\x00\x00\x00 \x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\ +\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff?\xff\xff\xfe\x1f\xff\ +\xff\xfe\x1f\xff\xff\xfc?\xff\xff\xbc?\xff\xff\x98\x7f\xff\ +\xff\x88\x7f\xff\xff\x80\xff\xff\xff\x80\x0f\xff\xff\x80\x1f\xff\ +\xff\x80?\xff\xff\x80\x7f\xff\xff\x80\xff\xff\xff\x81\xff\xff\ +\xff\x83\xff\xff\xff\x87\xff\xff\xff\x8f\xff\xff\xff\x9f\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x00\xc9\ +\x00\ +\x00\x0c\xbex\x9cc``b`dPP`\x00\x83\ +\x15<\x0c\x0cb@Z\x03\x88AB\x0e@\xcc\xc8 \ +\x01\x91\xe4a\x18@`<\x93\x04D\xba\xe13\xff\xff\ +g\x98I4\x22\xd5\x0a\x88\xf9g\x88C\xa3\xe6\x8f\x9a\ +?\x10\xe6\x13\x8f\xc8\xcbb4\xcc\xbf\xc3\x0e\xfc\x07\x83\ +!j\xfe\xa8\xe31\xcd\xa4\xb5\xf9\x103i\x142\xff\ +Q\x01\xad\xcd\xa7\xbaE45\x1c\xab\xf9T4\x1c\xd3\ +|\xea\x1a\x8ef>\xd5\x0dG6\x9f\x16\x863\xd0\xa5\ +\xc0\xa1\x9d\xe1C\x1a\x80\xc2\xfd\x01\x83\xfd\xff\x03\x0c\xf2\ +\x041H\x1d\x18\x00\xa9\x7f\xf2\x10\xfc\x07\xc8\xde\x03\xc4\ +3\xea\xff\xff\xef\x00\xe2\x06\xa0t\x03?\x10\x03\xe5\x1a\ +\x80\xe2\x0dP\xb1F n\x06\xe2v \xee\x07\xe2\xf9\ +\xd0\x04\x05\x00\x85\x1b/\xe1\ +\x00\x00\x00\x5c\ +\x00\ +\x00\x01Fx\x9cc``b`dPP``\x10\ +`\xe0d0`d`\x10c``\xd0\x00b\xa0\x10\ +\x83\x03\x103\x02!\x0840 \x00\x13\x14\x83\xc0\xff\ +\xff\xff\x19\x06\x1a\xfc\x87\x81\x1f\xf2\xd4\xc7\x0d\x8c\xff\xff\ +\x1f`\xfe\xff\xff\x01\xfb\xff\xff\x1f\xf8!b\x7f\xec\xff\ +\xff\xffW\x0f\xb7\x16\x00\xb3\x96jC\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x07\x00\x18\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x01\xe0\x00\x00\x01\x10\x00\x00\x01\x08\x00\x00\x01\x04\x00\ +\x00\x00\x82\x00\x00\x00A\x00\x00\x00 \x80\x00\x00\x17@\ +\x00\x00\x0b\xac\x00\x00\x05\xd2\x00\x00\x02\xc2\x00\x00\x01\x02\ +\x00\x00\x00\x81\x00\x00\x01\x00\x80\x00\x01\x00@\x00\x00\xe0\ +@\x00\x00\x10@\x00\x00\x08\x80\x00\x00\x07\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfe\x1f\xff\xff\xfe\x0f\xff\xff\xfe\x07\xff\xff\xfe\x03\xff\ +\xff\xff\x01\xff\xff\xff\x80\xff\xff\xff\xc0\x7f\xff\xff\xe0?\ +\xff\xff\xf0\x13\xff\xff\xf8\x01\xff\xff\xfc\x01\xff\xff\xfe\x01\ +\xff\xff\xff\x00\xff\xff\xfe\x00\x7f\xff\xfe\x00?\xff\xff\x00\ +?\xff\xff\xe0?\xff\xff\xf0\x7f\xff\xff\xf8\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x11\x00\x0d\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff?\xff\xff\xff\x1f\xff\ +\xff\xff\x8f\xff\xff\xff\xc4\x0f\xff\xff\xe1\xe7\xff\xff\xf3\xf3\ +\xff\xff\xe3\xf9\xff\xff\xef\xfd\xff\xff\xef\xfd\xff\xff\xef\xfd\ +\xff\xff\xef\xfd\xff\xff\xe7\xf9\xff\xff\xf3\xf3\xff\xff\xf9\xe7\ +\xff\xff\xfc\x0f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x07\x00\x0e\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\xf8\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xf7\xff\xff\xff\xe7\xff\xff\xff\xe7\ +\xff\xff\xff\x0f\xff\xff\xfe\x7f\xff\xff\xfe\x7f\xff\xfe\xfe\xff\ +\xff\xff~\xff\xff\xfe \x01\xff\xff\x00\x01\xff\xfe0\x03\ +\xff\xff~\xff\xff\xfe\xfc\x7f\xff\xff\xfc\x7f\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x03\x00\x03\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x18\x00\x00\x00\x14\x00\x00\x00\x12\x00\x00\ +\x00\x11\xf8\x00\x00\x10\x08\x00\x00\x10\x10\x00\x00\x10 \x00\ +\x00\x10@\x00\x00\x10\x80\x00\x00\x11\x00\x00\x00\x12\x00\x00\ +\x00\x14\x00\x00\x00\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xe7\xff\xff\xff\xe3\xff\xff\xff\xe1\xff\xff\ +\xff\xe0\x07\xff\xff\xe0\x07\xff\xff\xe0\x0f\xff\xff\xe0\x1f\xff\ +\xff\xe0?\xff\xff\xe0\x7f\xff\xff\xe0\xff\xff\xff\xe1\xff\xff\ +\xff\xe3\xff\xff\xff\xe7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x10\x00\x08\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xf0\x00\x00\x07\xf0\ +\x00\x00\x0f\xf8\x00\x00\x1f\xf8\x00\x00\x1f\xfc\x00\x00?\xfc\ +\x00\x00w\xfc\x00\x00g\xfe\x00\x00\x07\xf6\x00\x00\x0d\xb6\ +\x00\x00\x0d\xb2\x00\x00\x19\xb0\x00\x00\x19\xb0\x00\x00\x01\x80\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xfc\x0f\xff\xff\xf8\x07\xff\xff\xf0\x07\ +\xff\xff\xe0\x03\xff\xff\xc0\x03\xff\xff\xc0\x01\xff\xff\x80\x01\ +\xff\xff\x00\x01\xff\xff\x00\x00\xff\xff\x90\x00\xff\xff\xe0\x00\ +\xff\xff\xe0\x00\xff\xff\xc0\x05\xff\xff\xc0\x07\xff\xff\xe4\x0f\ +\xff\xff\xfe\x7f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x03\x00\x03\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x0a\x00\ +\x00\x00\x11\x00\x00\x00*\x80\x00\x18[@\x00\x14\x80 \ +\x00\x12[@\x00\x11\xea\x80\x00\x10\x11\x00\x00\x10*\x00\ +\x00\x10D\x00\x00\x10\x80\x00\x00\x11\x00\x00\x00\x12\x00\x00\ +\x00\x14\x00\x00\x00\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfb\xff\xff\xff\xf1\xff\ +\xff\xff\xe0\xff\xff\xff\xd1\x7f\xff\xe7\x80?\xff\xe3\x00\x1f\ +\xff\xe1\x80?\xff\xe0\x11\x7f\xff\xe0\x00\xff\xff\xe0\x11\xff\ +\xff\xe0;\xff\xff\xe0\x7f\xff\xff\xe0\xff\xff\xff\xe1\xff\xff\ +\xff\xe3\xff\xff\xff\xe7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x0f\x00\x0f\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00?\xff\x80\x00!\x00\x80\x00!*\x80\x00!T\ +\x80\x00!*\x80\x00!T\x80\x00!*\x80\x00!T\ +\x80\x00!\x00\x80\x00!\xfe\x80\x00 \x00\x80\x00 \x00\ +\x80\x00 \x00\x80\x00 \x00\x80\x00?\xff\x80\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xc0\x00\x7f\xff\xc0\x00\x7f\xff\xce\x00\x7f\xff\xce\x00\ +\x7f\xff\xce\x00\x7f\xff\xce\x00\x7f\xff\xce\x00\x7f\xff\xce\x00\ +\x7f\xff\xce\x00\x7f\xff\xce\x00\x7f\xff\xcf\xfe\x7f\xff\xcf\xfe\ +\x7f\xff\xcf\xfe\x7f\xff\xc0\x00\x7f\xff\xc0\x00\x7f\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x03\x00\x03\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x00\x00\x00\x14\x00\x00\ +\x00\x12\x00\x00\x00\x15\xf0\x00\x00\x16\x10\x00\x00\x17\xa0\x00\ +\x00\x17@\x00\x00\x16\x80\x00\x00\x15\x00\x00\x00\x12\x00\x00\ +\x00\x14\x00\x00\x00\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe7\xff\xff\xff\xe3\xff\xff\ +\xff\xe1\xff\xff\xff\xe0\x0f\xff\xff\xe0\x0f\xff\xff\xe0\x1f\xff\ +\xff\xe0?\xff\xff\xe0\x7f\xff\xff\xe0\xff\xff\xff\xe1\xff\xff\ +\xff\xe3\xff\xff\xff\xe7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x06\x00\x06\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x01\xfe\x00\x00\x01\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x01\x80\x00\x00\x01\x80\x00\x00\x03\x00\x00\x00\x03\x00\ +\x00\x00\x06\x00\x00\x00F\x00\x00\x00l\x00\x00\x00|\x00\ +\x00\x00\x7f\x80\x00\x00\x7f\x00\x00\x00~\x00\x00\x00|\x00\ +\x00\x00x\x00\x00\x00p\x00\x00?\xe0\x00\x00 \x00\ +\x00 \x00\x00 \x00\x00 \x00\x00 \x00\ +\x00 \x00\x00 \x00\x00?\xe0\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfe\x01\xff\xff\xfe\x01\xff\xff\xff\xff\xff\xff\xff\xfe\x7f\ +\xff\xff\xfc?\xff\xff\xfc?\xff\xff\xf8\x7f\xff\xffx\x7f\ +\xff\xff0\xff\xff\xff\x10\xff\xff\xff\x01\xff\xff\xff\x00\x1f\ +\xff\xff\x00?\xff\xff\x00\x7f\xff\xff\x00\xff\xff\xff\x01\xff\ +\xff\xff\x03\xff\xff\x80\x07\xff\xff\x80\x0f\xff\xff\x9f\xcf\xff\ +\xff\x9f\xcf\xff\xff\x9f\xcf\xff\xff\x9f\xcf\xff\xff\x9f\xcf\xff\ +\xff\x9f\xcf\xff\xff\x9f\xcf\xff\xff\x80\x0f\xff\xff\x80\x0f\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x0b\x00\x09\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x00\x00\x00\x18\ +\x00\x00\x000\x00\x00\x000\x00\x00\x00`\x00\x00\x04`\ +\x00\x00\x06\xc0\x00\x00\x07\xc0\x00\x00\x07\xf8\x00\x00\x07\xf0\ +\x00\x00\x07\xe0\x00\x00\x07\xc0\x00\x00\x07\x80\x00\x01\xff\x00\ +\x00\x01\x01\x00\x00\x01\x01\x00\x00\x01\x01\x00\x00\x01\x01\x00\ +\x00\x01\x01\x00\x00\x01\x01\x00\x00\x01\x01\x00\x00\x01\xff\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xe7\xff\xff\xff\xc3\xff\xff\xff\xc3\ +\xff\xff\xff\x87\xff\xff\xf7\x87\xff\xff\xf3\x0f\xff\xff\xf1\x0f\ +\xff\xff\xf0\x1f\xff\xff\xf0\x01\xff\xff\xf0\x03\xff\xff\xf0\x07\ +\xff\xff\xf0\x0f\xff\xff\xf0\x1f\xff\xfc\x00?\xff\xfc\x00\x7f\ +\xff\xfc\xfe\x7f\xff\xfc\xfe\x7f\xff\xfc\xfe\x7f\xff\xfc\xfe\x7f\ +\xff\xfc\xfe\x7f\xff\xfc\xfe\x7f\xff\xfc\xfe\x7f\xff\xfc\x00\x7f\ +\xff\xfc\x00\x7f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x00V\ +\x00\ +\x00\x01Fx\x9c\xc5\xc8\xb1\x0d\x800\x0cD\xd1\xef4\ +\x88\x0a*\xda\xa4\xa4d\x03\xd8\xcc\x8c\x9c\x0d\xccE\x8a\ +D\x01\x15\x0d\xdfz\xb2t\x900J\x81\x99\x91\xcd`\ +\x01V\xd1\xc4!\xa6k\x9d\xdc\xa5\xae\x15\x11\xfc]<\ +s\xd9+d\x99d\xe8?W\xd7\xee\xe1\x12_\xbcu\ +\x01\xec\xfbi\xe6\ +\x00\x00\x01F\ +\x00\ +\x00\x02\x00\x01\x00 \x00\x00\x10\x00\x11\x000\x01\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\ +\x00\x01\x00\x01\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\xfc\x1f\xc0\x00\x04\x10\ +\x00\x00\x04\x10\x00\x00\x04\x10\x00\x00\x04\x10\x00\x00\x04\x10\ +\x00\x00\x07\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfc\x01\xc0\x1f\xfc\x01\xc0\x1f\xfc\x01\xc0\ +\x1f\xff\xf1\xc7\xff\xff\xf1\xc7\xff\xff\xf1\xc7\xff\xff\xf0\x07\ +\xff\xff\xf0\x07\xff\xff\xf0\x07\xff\xff\xff\x7f\xff\xff\xfe?\ +\xff\xff\xff\x7f\xff\xff\xff\x7f\xff\xff\xff\x7f\xff\xff\xfe?\ +\xff\xff\xff\x7f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\ +\x00\x00\x00\xef\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ +\x00\x00\x00\x09pHYs\x00\x00\x0e\xc3\x00\x00\x0e\xc3\ +\x01\xc7o\xa8d\x00\x00\x00\x18tEXtSof\ +tware\x00paint.net \ +4.0.6\xfc\x8cc\xdf\x00\x00\x00mIDA\ +T8O\xb5\x8c\xd1\x0a\xc0 \x0c\x03\xfdt\xff\xbc\xb3\ +\x83d]\xa8\xd82\xf6p\xa2\xc7\x99af\x9fHe\ +\x87\xe7\xb2\xae\x15\xd0\xf3\xdf}Htb\xce\xb9\xbe\xc9\ +\x80\xcb\x0a\xdb\x01\x88\x13\xff\x0d\xec@\x08\xdc\xa5\x03.\ +\x15\x8dc\xcb7$DD\xe3\xccQBD4\xce\x1c\ +%DD\xe3\xccQBD4\xce\x1ce\x07|\xe6\x80\ +\xe3\xab\x15\xd0\x83\xd7\xa3\x8f\x8d\x0b\xd1.k\xedV\x14\ +\x8b0\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x00\xd0\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ +\x00\x00\x00\x09pHYs\x00\x00\x0e\xc2\x00\x00\x0e\xc2\ +\x01\x15(J\x80\x00\x00\x00\x18tEXtSof\ +tware\x00paint.net \ +4.0.6\xfc\x8cc\xdf\x00\x00\x00NIDA\ +T8O\xdd\x8c\xc1\x09\x00 \x0c\x03\xbb\xffT\xdd\xac\ +\x1a\xb0\x82\xb6*U\x10\xf4q\x8f\x5cBHD\x8ep\ +e\x04+\xb2\x02+\xa7XQ\xc6\xcc\x9c\xe3\xd8\xd5\xce\ +\x88\x7f\x0e<\xee\x1e`\xacl\x1f\xcc\x5c\xed\x8cx\xff\ +\x00`\xd8\x8f=\x07\x9a\x10G(\x01oN\x98?\xf6\ +\xff\xda\xc5\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x00\xd4\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ +\x00\x00\x00\x09pHYs\x00\x00\x0e\xc2\x00\x00\x0e\xc2\ +\x01\x15(J\x80\x00\x00\x00\x18tEXtSof\ +tware\x00paint.net \ +4.0.6\xfc\x8cc\xdf\x00\x00\x00RIDA\ +T8O\xed\x8fA\x0a\xc00\x08\x04}\xba?\xb7\xce\ +a/a\xa1m\xbc\xe4\x90\xc0\x043\xd1\x05\xa3\xaaF\ +X\xf9\x07+\xa1\x0fW\x97\xfe_X\x09\x0a\xc8\xcc~\ +\xfa\x1e\xb0R0<\x0a\xf8\x82\x95\xa0\x15V\xbfb%\ +(`{\x85\x1bpB\x000<\x0ax\xa7\xe2\x01V\ +T\xcf_\x16\xfbf\x81\x00\x00\x00\x00IEND\xae\ +B`\x82\ +\x00\x00\x03\xea\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x93\x00\x00\x00\x15\x08\x06\x00\x00\x00B\x0c\xdc\xd0\ +\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\x00\x00\x00\ +\x09pHYs\x00\x00\x0b\x11\x00\x00\x0b\x11\x01\x7fd\ +_\x91\x00\x00\x03\x7fIDAThC\xed\x9a\xbbN\ +*Q\x14\x86\x07Cb,\xec}#\x1e\x81\xc6\xca\xbb\ +!\xbe\x81\x8d\x8d\x8d%\x0d=Zig\xb4\xd0\xc4H\ +c(H,\x88\x85Zx\x04\x04\x01\xaf\xf1\x0e\xe2\x92\ +o\x9d\xb3\xf7\x19\x07\xf4\xe4h5\xb0\xff\xe4\x97q\xad\ +=4|\xf9\xf7\x9a\x0d^,\x16\x93n\x9e\x9e\x9e\x96\ +\xa9\xa9)\x99\x9c\x9ctvV\xc3\x03\x5ct\xe3\x05w\ +\xc0\xb4\xbe\xbe.\xa7\xa7\xbf\xda>\x95\xf3\xf3s\xb9\xb8\ +\xb8\x90\xeb\xebk\xb9\xb9\xb9q\xeeS\xf3\xf9\xc3\x01<\ +\xc0\x05|\x04\xb9\xc1\x16& :;;\x93B\xa1 \ +\xb5ZMnoo\xe5\xe1\xe1A\x9e\x9f\x9f\xa5\xd1h\ +8\xf7\xb9\xe1\x00\x1e\xe0\x02>\xe0\x04f:`\xa2X\ +n\x83T*\x95\x94\xc2\xc7\xc7G}\x83V\xab%o\ +ooj\xa7\xfe\x95a\x00\x1e\xe0\x02>\xe0\x04^\x08\ + \x0b\x13 U\xabU-\x12i\x10\xf8\xfa\xfa\xea\x00\ +\xeaS\xb1\x9d\xe5\xf3y\xc9d2\xb2\xb9\xb9\xa9\xde\xdd\ +\xdd\xd5\x1a=\xbf\xe0\x05nLB)L\x14 \x0d\x90\ +\xa0\x0f\x98\x9a\xcd\xa6\xec\xec\xec\xc8\xd2\xd2\x92\x0e^\x98\ +kj\xf4\x9czO\xc7\xc7\xc7\xb2\xbd\xbd\xadpt3\ +=\xd6\x98\xa0\x81\x17\xb81@y\xa4\x12{ \xd1e\ +\x12\x09XVVV$\x1e\x8fw5=\xd6\xb8\xf4\xea\ +\x1d\x01\xc9\xc6\xc6F\x07@A\xb3\x86\xb5\xb0\x82\xe1\x06\ +~\xe8y\x95JE\x87*\xf6B\xe0\xc0\x10\x0843\ +33\xb2\xba\xba*\xc5bQ\xcd55z\xac\xe1\xcd\ +\x9c\xc2/\xb6/\x7f\x22\xed\xed\xed\xd9\xebn5\xd6r\ +\x0f\xac\xc0\x0d\xfcP\xd7dbJg{C,X\x5c\ +\x5cT`\x80'(j\xf4XC\xcc\xb9t\x0a\xbf\x98\ +\x87\xfc\xd0\xa0\xc3\xc3C[\xe3\x1a\xf9\x81\xe2\x1e\x047\ +\xf0C\xcd\x830?\x144'&&\x14\x18\xd2((\ +j\xf4Xs\x7f\x7f\xef`\xea\x011`\x1bH\xb0\x81\ +\x87W\xff\xb5\x7f\x0d\xf7 >\x7f\xf8\xa1\xe6]^^\ +\xca\xcb\xcb\xcb\x07\x98\xc6\xc7\xc7\xff\x09\x13k\x887\xa7\ +\xf0\x8b'6?(\xd8@\x84\x82 a\xeeAp\x03\ +?\xd4<\xa6q3/!`ZXXP`\xbe\xda\ +\xe6X\x03Lf{t\x0a\xaf~\x0a\x13\xfcP\xf3\xae\ +\xae\xae:\x92\xc9\x00\xf3\xd5\x00\x9eN\xa7\xe5\xee\xee\xce\ +\xde\xe7\x14^}g\x9b\xe3\x1c\x0a}H&\xb69\xff\ +\xcc\xc4+\xe7\x06\xc9dR\xa1\xf9\xcc\x89DBO@\ +]2\x85_?\x19\xc0\xe1\xc5\xceL\x0c\xe0L\xe3\x9e\ +\xe7\xd9&\x89srr\x22\xcb\xcb\xcb2??/c\ +ccj\xaeS\xa9\x94M\xa7\xb9\xb99==7 \ +:\x85S\xdf=\x1a@\x84\x89}\x9ac\x9b\xe3X\x1c\ +\x98\x0cP\x9c\x1f\x01T\xb9\x5c\xd6\x03\xaa\x83\x83\x03\xf5\ +\xd1\xd1\x91\xfe\x9f\xcdfevv\xd6\x02\xc5\xa1\x95S\ +\xb8\xf5\xdf\x87\x96\xad\xdfg\x92\xccK\xf0CO\xe9!\ +\xa6\x86\x86\x86d``@\xd6\xd6\xd6\xf4\xcd\x01\x8a:\ +\x8f\xff\x0c\xda\x18\xc00i\x94\xcb\xe5\x14\xa8\xd1\xd1Q\ +\x85\xcb)\xfc\x02\x12\x7fB\x05M\xcf\x80\x84`\xc4\xa4\ +\x92\xfd\xd5\x00\xc0\x0c\x0e\x0e\xdat\x1a\x19\x19\xd1\xc5\x9f\ +\x09\x22\xeb\xf5\xba\xec\xef\xef\xcb\xd6\xd6\x96\x90nN\xbd\ +!\xb6/\xe6!\x86r\x9e\xd8\xb0\xf9\xa2\xb7\xde\xee5\ +\x9a\x7fgd3+\xd9_\x0d\xf0\x07\x0d\x0f\x0fK$\ +\x12\x91h4\xaa\xaff\xcb\xfbLL\xf0\xc4\x1b =\ +==\xfd\xa9:\xf5\xba\x08\x12\x12\x89\xcf\xdc\x0f\x92\x85\ +\x09\xd3\xe0\xcc\xa9V\xab* \xec\x85\x0cW\xdc\xec\x06\ +\xec\xfe\x96a\x00\x1e\xe0\x82Q'\x08\x12\xb609;\ +\xff\xcc1y\x07P\x7f\x17\xd6Q\x02K\x02\x00\x00\x00\ +\x00IEND\xaeB`\x82\ +\x00\x00\x01\xbb\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0f\x00\x00\x00\x10\x08\x06\x00\x00\x00\xc9V%\x04\ +\x00\x00\x01\x82IDAT(\x91\x8d\xd2O\x88\x8eQ\ +\x14\x06\xf0\xdf7\xf3\xa6Qc#\xb1\x9b\xbe\xc6\xd0,\ +,&\x1dM\x8aI\xa9Ql\xecg\xa1H2J\xb3\ +\xb2\xb4\xc5\xdeJ\x91\xb5\xa6\xc8\xbf\xa5P\x16rD\xb1\ +\xa0\x11\x92\x92\x05if\xc1\xa4)\x8b\xf7}\xa7\xfb}\ +>\xe5Y\x9d{\xcf}\xce9\xf7yN\xc7\x7f 3\ +Gq\x0a\xdb#b\xbe\xbd\xaf\x9a\xe4\x16\x8c\x16\xefW\ +\x22\xe2[fV8\x8e1\x5c\xc1\x91\xa2\xe0H\xa7\x09\ +\xf6a\x02\xd3x\x8aw\x98\xc5\x14~c\xa5(<\x8c\ +M\xd8\xda)*m\xc0\x09\x1c\xc5$\xae\xe3E\xdf\x0f\ +f\xf0\x18\x9b\xf1\xbd\xca\xcc\xcb\xf8\x899\xbc\xc7%\xdc\ +\xc78\xe6\xf1*\x22\xae5\x0d\xba\x11q+3\xbb\x98\ +\x1a\xc2g,#\xb0\x18\x11w\x22b\x0d\x8bX\xc0\xd5\ +\xcc<4H\xc8*\x22.\x16\xa3\x97\xb9\xc9\x22\xde\x9f\ +\x99\x0f0\x91\x99\xc3\xed\xe5\xd0\xa0\x8a\x0d\xde\x16\xf1K\ +\xdcS\x0b\xfa\x05\xc7z\xc8\x99\xb9\x13\x072s.3\ +\xf7\xe2\x1c\x96p\x13\x9fp7\x22\xf6\xe0\xb4\xda\xb2\x91\ +\xaa\xa8\xbe\x80\x8f8\x8b\xdd\xf8\x85\x0b\xb8\x81\xd5\xa6\xc1\ +\x13\xb5\xa5\xb7\xf1\xbc\x1c\xfb\x07\xb6E\xc446\xe2\x0d\ +\x0e\xab}\xff\x80nC\x9a\x8d\x88\x93\x11\xb1T\xfa\xbc\ +\xabI\xee\x88\x88\xb5\xcc\x9c\xc1\xa36\xdd\x8c\xdc\x83\xf5\ +\xce\x11\xf1\x1a\xcb\x8dM\x1aqZ\x8c\xf7\x13\xfb\x05\x1b\ +S/I\x8b\xce?\xe2\xbf\xc9\xf8\x8a3\xc5\xf9Y\x11\ +\xf7,@\x8bu\xb5#bU\xeda\x8b\x87\xea-;\ +\x88\xf3\x83\xc8\x7f\x00k\xb9|\xe7dF#\x7f\x00\x00\ +\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01\x01\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0f\x00\x00\x00\x12\x08\x06\x00\x00\x00\x84\x9e\x84\x0f\ +\x00\x00\x00\xc8IDAT8\x8d\xa5\xd3=N\x031\ +\x10\x86\xe1gQ\x02]\xe8R\xf3\x97\x0e\xaa\xbd\x12E\ +.\x10J\x84\xc4=\xd2%\x12\x15\x11\xe7\xd8\x8d\x10\xa2\ +\xe5 H\x88M\x11G\xdaX\xded1_7\xdf\xe8\ +\x9d\xf1\x8c\xed\xa2i\x1am\xd5u-\xd2\x19\xbec\xb3\ +,K'\xb1\x99\xd0\x03\xceS\x89>\xf0\x04W\xb9\xf0\ +\xf5\x7f\xe0\x9b\x5cx\x841.s\xe0]\xc7,x\x12\ +\x15\xd9\xd3\xa0\x03\xba\xc3\x10\xb7!\xbe@i;\xffJ\ +\xb8\xf7.x\x88\x0aE\x88OC\xfc\x8a\x97c\xc7^\ +\xe3-\xf2~\xf1\xd86\x0e\xcd\xfc\x84\xf6\xdb]\xe2\xb3\ +/\xfcn;\x1f\xfc\x84b{:\xb6\xed]\xf79\xbe\ +\xfe\x0a\x7f`\x81\xe7T\xb2k\xdbm\xddK|I(\ +\xaa\xaa\xea\xc1\xa75\xc0\x14\xb3\x1cx\x03\xb2\x99!K\ +\xef\xfb\x80\xb9\x00\x00\x00\x00IEND\xaeB`\x82\ +\ +\x00\x00\x02\x1e\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x18\x00\x00\x00\x11\x08\x06\x00\x00\x00\xc7xl0\ +\x00\x00\x01\xe5IDAT8\x8d\x95\xd4]h\x8ea\ +\x18\x07\xf0\xdflIQC\xf2q\x22\x8a\x92\xe2\xd8G\ +!\x0e\x97\x16j\x07D\x88\x94R\xcb\xe7\xa2\x9c\x8d\x92\ +\x906\x16K\xf9\x96!\xc7\xac\xa4\x90\x83\xb7)\x07r\ +\x22\x12\xcd\xc1\x88%\x8b\xf9:\xb8\xafw\xef\xd3\xb3g\ +\xeb\xdd\xbf\x9e\xee\xfb\xbe\xee\xeb\xb9\xfe\xd7\xe7]S*\ +\x95\xea\xf1\xd5pl\xc2\x0d\x5c\xc7\xc6\xdc\xddy\xec.\ +\xf8g\x18\xc6\xe1\x07\x9a\xb0\x03\xbf\xf0\x1d\x9b\xf1$t\ +\xce\xe2p\xec\xbbC\xb7\xb3\x1a\xe3P\x87At\xc5y\ +:\x8ea1\xae\x85\xac\x84\xd3\xf8\x8c-\xe8\xad\xd6x\ +9\x82,N\xe0\x19\xf6bY\xc8Z\xb0\x14\xbb\xc6j\ +\xbc\x88\xe0Ox9\x80\xcbX\x81\xa3\xb8\x82\xbb\x19\xbd\ +\x16\xfc\xcb}\x0dq\xf72+\xcf\x13\xc0\x1b\xec\xc3<\ +<\x0c\xaf\xf7\xe4t\xeeK\xb5x\x1f\xe7\xfd\xe8\xc9\xec\ +\xbbc\xdf^D\x00\x17\xc3\x93\xf1hC\x7f\xee\xfe\xb5\ +T\xb7\x8e8ORI\xdf\x03\xcc\xc0_\xb4\x8eD\xb0\ +\x06\x8bB\xe9\x10f\x8e\xe2\xc8\x00\xb6\xaa\xa4{v\xfc\ +\xfb\x14\xbdE\x04\xf5\xb8\x84W\xd2,L\x93\xda\xb2\xa6\ +@\xb7\x0f71\x07\xabC\xb66\xd6;\x0c/2\x9c\ +\xc1\xac\xf0\xea\x96T\xe0\x06\xec\x1c!\x8a\xb6X\xb7\xc5\ +\xbaN\x8a\xbc\xab\x88\xa01\x0c\x1f\x97\xfa\x1f\x9a\xf1\x01\ +\xa7\xa4\xc2\xe7\xf1\x02\x8f\xb1\x1e\xf3\xb1J\xa4\xa7LP\ +\x8b)\x11f\x87T\xc0\xf6\x90\xc3O\x1c\xc4D\x5c\xc5\ +TL\xce\x91\x9c\xc3\x04)-\xb5\xb1*\x13,\xc4\x17\ +\xbc\x95\x8a\xb9\x00\x9fB\x0e'\xa57\x09\x96H\x13\xfd\ +.Gp\x0f\xad\x98+\xa5ghf\xea\xa4^n*\ +\x08\xbd\xdc\xe3\x9dx\x94\xbb\x1b\xcc\x9d\x7f\xe36\x8eH\ +3\xf01K\xf0M\xe5-*B\x8f\xca\x10\xe5\xb1]\ +\xea\xb6\xe78\x10\xb2\x0bY\x85\xbaQ\x0cW\x83f)\ +\xbd}\xd8 \xbd\xc0\xd9'\xa5\xb0M\xc7\x82~\xac\xc4\ +r)\x95\x8dR\x0d\x86\xf0\x1f\x84\xf8v\x1d=\x86M\ +P\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01p\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x12\x00\x00\x00\x12\x08\x06\x00\x00\x00V\xce\x8eW\ +\x00\x00\x017IDAT8\x8d\x9d\x93\xc1J\xc3@\ +\x14EO\xa2\xa0\xa0\xa2\x05\x11\xba\xf3#\xde\xd2\x8d\xf4\ +\x1b\xc4\x1fp'\x88\xa0\x82Pp\xa3\xa2;\xc5\x95\xee\ +\x14\x7f\xe7\x82\x1f\xe1\xc6\x8d\xa4P\xb5\x9a\xb4\xd5E_\ +a\x88IF\xbc0d\xde\xcd\xc9\x9d7a\x06\x22\x92\ +\xb4#i/\xc6\xcd\xc6\x00\xe0\x02\x98\x01n\x9a\xa04\ +\xd6\x0d\xb0\x0a\xb4|\xfe\xbf \xef\xa6j\xfe\xf7 I\ +\x9d\xa0\xfc\x06\x0aI\x9b\x91\x85\xeb%i \xe9#\xc6\ +\xfd\xeaH\xd2v\xc9\xfa\xf4\x112\x07\x92\xe6+\x83$\ +\xedK\xca\x80\xdbR\xd0\x08(J\xde!\xd0\x93t)\ +)\x05H$\xed\x02g\xc0J\x00\x0e\x81\xdcC\x16\x99\ +\xfc\xa3w&\xc7`\xce\x9fS\xbd\x01\xdd\x14x\x02^\ +K+\x0e\x80\x9e\x8f\xb1\x07\xf5\xdd\xcf\xbd\x9e\xea\x0b\xc8\ +\x92`k\x1d\xe0\x0eh\x9b\xd9B\xe0g@afk\ +\x81\xf7\x0c,\x03'fvM\x95$m\x94\xea\xbe\x87\ +\x85\xdeV\xe5\xc7M\x92\x94K\x1a\xc4\xb8\xa4\xee\x85_\ +\x89.\xb0\xee\xd6\x0bplf\x0fU|\xd3\x15\xb9\x07\ +\xdaA\xbd\x04<\xd6\xc1\xb5Af6\x04\xae\x02\xeb\xd4\ +\xcc\xc6u|\xed\xd6\x00\xfc\xb0\xf5\x81\xdc\xccZMl\ +\xe3\xed\xf7\x0e\xce\x81\xa3&\x0e\xe0\x07\x81\x1e\x7f\x14\x8c\ +;\xe7\x95\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01{\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x12\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1b\x06/\x5c\ +\x00\x00\x01BIDAT8\x8d\x95\xd3?K\xdbQ\ +\x14\xc6\xf1OB\xaa\x9bb\xfd\xb3IQ\xc8(\x08\x97\ +:\x1b\xa8\x9d\x5c\xb5\xd0\xcdEqt\x93\x80\xef\xa0o\ +\xa0N.\x0e\xba\xd61\x10p\x90\x0a\xbf\x0cm\x17\xb3\ +\xb8\xb8H\x15u\x8a\xa0`\x1c\xe2\ +\x06\x15\x9c`$\xa5t\x05\xc5\x1c\x90\x11\xccD^\xc6\ +%\xfe\xbf\x1e\x96r\x80\x86P\xc5'\x1c\xe3\x0b4\x1a\ +\x8d:\x96\xf3\x80\xae\x03\x92\xd0\x88\x05\x8b8(\x0c\xd8\ +\xa3\x02\xbec\x12-L\x04T\x00k\xfd*\xaa\xa0\x1e\ +y\x1b\xfb]\xe0RJmz7{\x12\x9b\x91\x0f\xf5\ +\xf0\xb4c\xe9\x07\x1aG\x0d\x19\xf6\xfa\xc0\xde\xa2\xdb\xd5\ +fq\x869/\x8d-\xe1a\x10\xd02\x8eB\x7f\xc0\ +\x1a\xa6p\x8b\x0d\x0c\xe3g\x9c\xef\xe8\x98\x9d\xce(\xe2\ +\x17\x96B?\x06d=*\xdb\xc5\xbf\xd0\xeb\x98\xeeU\ +Q!\xcb\xb2\xc3\xc8\x7fx\x9f\x93Y\x5c\xe07F\xf1\ +5<\xb5\xa8\xf4/\x9a\xb17\x81\xfb\x12Vc#\x0b\ +\xc8\x06\xb6\xb1\x82C\xfc\xc1|\x17O\x13\x0b8E9\ +\xcf_\xeb\x16\xafC\xa9\xe8}\x1e\xb60\x86\xcf\xa1\xbf\ +\x85\xae\x0e\xe09\xef|\xfe\x16\xee\xf0\x14\xfa)t\xab\ +\x9f'\xa5t\x07\xcf)mR\xad\xb7y\x8e\x81\x00\x00\ +\x00\x00IEND\xaeB`\x82\ +\x00\x00\x02,\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x11\x00\x00\x00\x10\x08\x06\x00\x00\x00\xf01\x94_\ +\x00\x00\x01\xf3IDAT8\x8de\xd3K\x88\x8fa\ +\x14\x06\xf0\xdf\x7f\xfc\x95\xb0@\x22\x9a\x92{\xe4\x9aS\ +\x9a\x85\xb2\x125R\xee\xa5L)\x16\xa6\x90\x8d\xb2D\ +\x12Rl$\xc9(I.Qr\xbf\xaf\xa4\x8e\x14\xd1\ +\xe4R\xc8\x06\xc9%\xb7$,\xbeW}\x8dSo_\ +o\xe7;\xcf\xfb<\xe79\xa7\xa1Gd\xe6h\xac\xc1\ +\x1c\x8c\xc1\x1f\xf4\xc2C\x9c\xc6\xc1\x88\xf8X\xafi\xa9\ +\x15\xf7\xce\xcc\x9d\xb8\x83N\xbc\xc5R\xdcB_\x1c\xc5\ +(<\xcd\xcc5u\x90F\x01\xe8\x8bs\xf8\x8c\x09\x18\ +_\xf2kq\x11\x0b1\xb5\xb0\x9a\x82\xa18\x1b\x11\x9d\ +u&\xc70\x02W\xf1\x18\xaf\xb0>\x22\xf6G\xc4\x0b\ +\xfc\xc4Jt`:V\xa0-3;\xa1\x91\x99m\xb8\ +\x81O\x18\x19\x11\xdf3s\x11N\xe15\x9e\xe1:\x96\ +a\x12\xeeEDd\xe6\xf4\x22\xbd\xb5\x05\xdb\xd1\x07;\ +\x22\xe2{a\xb6\xa4|[1\x1bG#br\x91z\ +937`0\xbebs#3_c\x0b\xc6\xe1\x01\ +\xba\x0b\xb3~\x05\xa8;\x22&\xd4\x0c8\x8b\x05\xe5z\ +\x18\x93\x9a\x18\x80\x13\xf8P\x12\xcf0\x11\xf3\xcay\x92\ +\x99\xcd\x88\xf8\xe5\xff8\x8e\xad\xcdri\xd6\x12\x8f\x22\ +\xe2\x15\x0e\xe0@fvcca\xfc\x02\x17\xf0\xa3<\ +\xf4\x05?Z\xf0\x06]\xd8\x8d\x9b\xb8_\xa3>Ye\ +w/\x95{\xad\xd8\x13\x11\xcb\xb1\x17\x97\xf0\xb1Y\xa4\ +tFD{)\xec\xca\xcc{8\x89\x81=\xe8o\xab\ +\xc9Z\xa22\xe4H#3\x87\xe0)fFDwf\ +v\xa9\xe6\x01\x16\xe16\xc6b\xbe\xaa\xd9\x0f\xf0\x5c5\ +\x9c\xdf0\xbc%\x22\xdeb\x03\xceg\xe6*\xf4\xae\xbd\ +\x9c\x11\xf1^5|\xab\xb1\x1e\x87\xd0^\xfa\xd2\x1e\x11\ +\xbf\x1b5\xfd\xeb\xb0\x09g\xb0\x0b\x8b1\xab\xa4\xaf\x14\ +\x80q\xb8[\xfa\xd3\x11\x11W\xa8-`D\xec+\xf4\ +g\xa8\xf6%0\x0c\xfd\x8b\x0b\xd7\xf0\xae\xb0j\xfb\x07\ +@Y\xc0\x9e\x91\x99\xd30W\xb5\xb5\x83J\xf1C\x9c\ +\x8f\x88\x97=\xff\xff\x0b\x84C\xb2\xa8\xaa\xc4\xf2\x0e\x00\ +\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x00\xee\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0a\x00\x00\x00\x0d\x08\x06\x00\x00\x00\x907\xff\x05\ +\x00\x00\x00\xb5IDAT(\x91}\xd0\xa1\x8aBQ\ +\x14\x85\xe1O\xb9\xcdd\x9b\xeek\x08\xbe\xc7X\x0c:\ +\x08\xfa V\x1f@\xb1h1\xcc4\xc1l\xbc0\xc1\ +7\x10\x83ED\xc3\x14\x83\x96s`s\xb9\xcc\x82\x13\ +\xf6f\xb1\xfe\xb5O\xa3,\xcbO\xac\xfd\xafY\x11\x86\ +\x01\xfe\xc2\xdc\xc0\x1c\x1f8F\xe3\x0f\xeea\x9e&\xd3\ +\x0e\x9b&N\xd8\xe2\x19L\x1d\xccp\xc3\x17\x148\xa4\ +\x17\x91\x0b\xb4R\xea\x19\x9a5\xc5'\xe8%\xe4*/\ +\xab\xc6\x8c\xbcgdV<&\x22\x87\x19Y\x97\x98\x91\ +{,\xab}rbF>0\xc2+x\xc6\xb8\x145\ +\xc8S%\xac/}\xf88!\x0f\xf8F\xbb\x8eZ\xa0\ +\x9b\x16]\x5c\xab\xdd\x92~\xdf\xc4\xcd&:\xc3\xef\xf7\ +E\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x015\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0f\x00\x00\x00\x0f\x08\x06\x00\x00\x00;\xd6\x95J\ +\x00\x00\x00\xfcIDAT(\x91\x95\xd0\xcf*D\x01\ +\x14\xc7\xf1\xcf\xcc\xcaB<\x06YX\x9d\xe6\x09\x94\x12\ +SJ\x9a\x97\xb0'\x8bY\xc8+XY\x121\xfe\x16\ +\x1b;ew\x1e@\xd9YX\xb0A\xd9\x10c\xe1\xca\ +\xedv\xa7\xc6os:\xe7\xf4\xfd\xfdN\xa7\x91\x99\xab\ +\xf8\xc0aD\xdc\xfb\x87\x1a\x99\xd9\xc1\x1e\xfa\xb8\xc1\x01\ +\x8e\x22\xe2a\x18x\x14O\x18)\xcd\xfb\xb8\xc6>\x8e\ +#\xe2\xb1\x16\x86\xcc\x06Z\xa5\xb1W#\xc4HW\x92\xccZ\xcf5\x97\ +i|8\xb0\x14h\x0e\xcc\x06^\x06\xb6\x03#\xf0~\ +\xfdU\xf5@aq\xa2\x8d\xf7\xfe\x00p\x13\xf0\xb8\xb3\ +\xe6\x9bx(\x80M\xc0 `\x82\xb3f\xd1U\xf1\x80\ +\xf7\xfe-\xa0-0/e\x1c\xc0Y\x03\x88\x22\xe0_\ +`Faq\x22+}M:@\xfc\xca\xf1\xc0?\xc0\ +{\x99\xeb\xce&\x0f\x03K\x80N\xde\xfb\xe7\xb3\xd1\xd9\ +`\x08\xa4\xd2\x03\x08q\xed\x07\xb4\x8f\x06\x0f\x03'\x80\ +\xe1\xc02g\xcd\xd8K\xec\xed\x05T\x02\xbb\x81\xbd@\ +\x0f\xa0\x03p\x168\x00\xac\x13B\xcc+\x8b\x89*\x00\ +\x0a\x8b'u\xf6\xbe\xee\x1d\xe0]g\xcda\xa9t\x0d\ +!\xc1\xceE\xa37\x12J-E\xe7\x81\xcd\xc0\xa7 \ +\x968\x9bD*\xdd\x1f(\x06F\xc6C\xa7>\xae6\ +\xeah\x09\xb4\x89\xbc\xfd\xc0@g\xcd\xef1\x04~p\ +\xfc\xe2\x1f\xa5\xd2}\x9d5-\x80\x02\xef}\x0bg\xcd\ +\xad\xce\x9a\x9b\xbd\xf7\xad\x81\x83@\x0d\xb0\x03x\x04X\ +\x0c\xbeZ*\xbd\x03\xd8\x0a\xbc\x12\xc3\xba?\x1a\x1a\xeb\ +\xaci\xee\xac\xe9\xec\xaci\x8b\x10]\x81R\xe0.`\ +Qz\x0e\x5c\x1b\xc7N\xc0\xf7R\xe9!\xce\x9a/W\ +\x94.\xb8\x18+!N\x01]\x81]\xce\x9a<`*\ +\xe0\x09\xd5\x90\x1b\xc5*\x81{\x81\xe9q\xde\xa5^\x8e\ +\x94$\x8f8k\x14\xf0\x0bP \x95n0\x09o\x00\ +\xd6I\xa5'\xd4K\x16!\xee\x8f\x07>-\x95\xdeD\ +\xa8\x7f\x80\x95\xc0\x9b\xc01\xa07\xb0\x0f\x18\x10\xd7z\ +]\x22\xf7\x0e\x03\xcd\x80\x8e\x97\xaa\x82k\x80\x85R\xe9\ +\x0fR\x0c\xef\xfd\x9d\xf1\xef@B\xad\x7f\x0d\xf4u\xd6\ +\x8cv\xd6\xcc\x11B\xdc\x02L\x8b\x8au\x94\xed\x9e\xa9\ +8\x96g?\xa0\xcaYs\xbc\xb12|C*\xbd\x22\ +\x96_N\xe4\xfd\x09\x14:k\x06;k*S\x82e\ +%I\x9c5\xb3@\xf4\x04R\xdd\xb0\x8fT\xba^\xb5\ +x\xef_\x8fa[\x09\x17\xaa \xf1\x82\xf7\xfe\x93\xff\ +9\xc8fg\xcd\x00\xa9\xf4d`\xb7\xb3\xe6B\xbb-\ +,Nt\x00r\xcaJ\x92\xbb\xd37H\xa5\xf7\x00w\ +\xc7\xe9\x82\xe8\x95n\xc0\xcf\xd1K=\x9c5\x87\xb2m\ +D\x0fK\xa5\xf79k\xe6\x0a!\xd6\xa7\x19\x19\xe3\xbd\ +?\xea\xbd\xdf%\x95\xde\x94\xd1\xfd\xaa\xe2\xf8\x1b0\x11\ +\xf8\x22\xfeZ\x01S\x9c5\x87R\xb1\xce\x96\xbaK\xa5\ +\x97\x96\xd5G\xba\xf7\xe3\xd7\x00\x0c\xf2\x9eQikg\ +S|\xe0;`\x18\xa1Z\xca\x9c5\x1f\xa6\x84\x9a\x8a\ +\x05\xe73\xe6u\x8d\xcc!4\xb4\x96\x97\x92i\xca\x01\ +v9k\xc6e\xf0^\x03\xce\xc4\xff\x1b\x84`u\xda\ +Z\xca\xe8\xb7\xc0\x83\xc0\x1a\x02d\x17I\xa5_m\xea\ +\x016:kr\xa5\xd2oK\xa5\x87\xa5\x98\xce\x9a5\ +@\x8e\x10\xe26g\xcd\x90\x8c\xf0\xb4\x8fcW`\xbe\ +\xb3f\x04\xf0,P\x0d\xcc\x91Jw\x86\xd8\x01{\xe5\ +\xe5\xf7!\x80LCT\x0a\x8c\xcc\xcd\xcb\xd7\x84\x98\x0f\ +\xcd\xcd\xcb?\xb1\xb3\xa2|;\xc0\xce\x8a\xf2\x9a\x9d?\ +m=\x99\x12\x96Jw\xcb\xcd\xcb\xff\x8cP\xebg\x80\ +\x22g\xcd\xbc([\x9d\x9b\x97\x7f\x1ax\x06h\xb6\xb3\ +\xa2|Cc\x1e\x98\xe9\xacQ\x01\xeb9\x1ay\xad\x81\ +\xc5R\xe9-R\xe9\x87.\x1aN \x95\x9eE@\xc1\ +\xc7\x22\xbb\xc2Y\xb32]\xa1\x10b\x01p\x12\x18\x0d\ +\x1738\x93j\x81\xf1\xce\x9a\xd2\xb4\x8d\xfb\xbd\xf7\x00\ +\x1b\x09\x19^\x00l\x91J\xaf\x03~\x00?\x09hG\ +hT\x06\x98L\xe8\xf9\xf5\xa8\xac$\x89Tz\x1b0\ +X*\xdd\xa6!\x0fT\x03O\xa6\x1b\x07\xf0\xdeW\x10\ +2\xb8\xa3\xb3f(0\x85\x00FO\x033\xa2\xf1J\ +\xe0>B\xb2A@\xcd\x86\xe8v\x02\xaa\xfe\x9d\xf2@\ +m\x1c\x8f\x00O8kvK\xa5G\x01\xab\xa2\xfb!\ + \xe5!\xe0\x1e\xa9\xf4^\xa0g\xe4W\x11\xe0\xb7?\ +\x01\x8c~%\xe0?@\x95T\x9a\x94\x0e\xa9tw`\ +&\xa1#\xaer\xd6\xc4V\xfc\xe2\xa4\x1c_W7\x15\ +\x98\xed\xac9&\x95>\x97\x16\x9ej\xe0zB=\xa7\ +\xa8\x06\xf8\x0aX*\x84X^V\x92D\x16'r\xf1\ +\xbe\x18\x18E\xc8\xfc\xf4\xdb\xd6\xe9\xb8\xff\xba8\xdf\x85\ +\x10\x8f\xba\x92\xe4\x89\x86\xafd\xc5\x89\x07\xf0\xfe%B\ +&\xb7#\x5c4\x0f\x02\x7f\x01c\x80\xe5\xce\x9a\xa2\x06\ +\xf7*\xdd\x9b\xd0\xef+\xe3\xd83\xea\xa8\x8d\xdeY+\ +\x84XT\xefJ\x96-\x8d\x1e7\x11!\xc4\x1f\x044\ +\xeb\xe2\xac\xa9\xca\x94\x91J/\x04&\x10\x10\xd35\xa6\ +\xb3I\xad8\xde\x90\x16\x12\xba\xdc\xf4\xccu\xa9\xf4\x1d\ +\x80\x02\x8e\x08!\x1a5\xde\xe4\x03\x00\x08!\xe6\x02\xc7\ +\x81\x84T\xfa\xa94\xe3\x00\xcb\x09q\x9eV\x96\xe5\xf3\ +\xec\xb2\xde\x86R\xe9\x02`-\xa1,?\x22@\xeex\ +\xc2}\xf0sg\xcd\xf0lu]\xd6\xdb0^H\x9e\ +\x03N\x01\x09`~4\xbeL\x08\x91\xb5\xf1\xcb\xf6@\ +\x9a' `H\xeay\xbe\xa7\xa9:\xfe\x03\x5c\xaa\xea\ +&\xfd\x17M\xd2\x00\x00\x00%tEXtdat\ +e:create\x002016-01\ +-08T15:18:18+00:\ +00\x01E\x99\xf0\x00\x00\x00%tEXtda\ +te:modify\x002016-0\ +1-08T15:18:18+00\ +:00p\x18!L\x00\x00\x00\x00IEND\xae\ +B`\x82\ +\x00\x00\x00\xce\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0c\x00\x00\x00\x0c\x08\x06\x00\x00\x00Vu\x5c\xe7\ +\x00\x00\x00\x95IDAT(\x91\x9d\xd0\xb1\x09\x02Q\ +\x10E\xd1\xb3\x22\x08\xb6a,\x98\xd9\x80\x81\xa0e\x88\ +\x91%\x18Z\x82\x89b\x19\x0a\x826 \xfc`\xc1\xd8\ +\xd0\x16\x04#\x0d\xfe.\xac\xe8\xdf\x05_x\x87\xcb\xcc\ +\x9b,\x84\xf0\xc2\x01S1{L$\xd2\xc6\x19y\x85\ +\xe5\xe8\xa4\x84,\x84\x90\x9a%7lp\xc5\xba`\x0b\ +\xf4\xeb\x84\xb9\xd8\xa1\x14\xc6\x1a:\xf4\xf0\xa8\xb0\x19\xba\ +)\xa1\xd5|\xf5\xf7\x86\x9b\xcf\xb7\xee\x9aN\xda\x8a\xa5\ +\xcb\x1cqO\x09\x7f\xbd\xf5\x84\x0b\x96\x05[aX'\ +\x8c\xf0\xac\xb0A\xc1~\xe6\x0d\xc9\xd6\x1dQ\xcd\xba\xaa\ +\xa1\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01}\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x01DIDAT8\x8d\x95\xd2\xb1KVQ\ +\x14\x00\xf0\xdf\xf7Qa\xe2\x12N\x91\x93\x85MN\x9d\ +\xa1E\x10\x84\x86j\xd4M\x87\x96\xc0\xdd]\xb7hh\ +\x8d \xa1!A\x1cZ\x85\xa6j*\xf2P\xe0\x90\xe2\ +\x1f\x10\x88A\x86aa|\xe2\xf0\xae\xa1\xaf\x0b\xe6\x99\ +\xde;\xf7\x9c\xdf=\x5cNG\x89\xcc\xbc\x829Lb\ +\x18\x7f\x90X\xc4RD\x1c\xaaD\xa74\x8f\xe25\xae\ +\x96\xfc/\xf40P\xfeW1\x15\x11\xfbm\xa0[n\ +^=\xd1\x0c\x971\x8bql\xe2.\x9e\xd5&\xe8\x96\ +\xb1\x87*g\xdf#\xe2\x1d\xc6\xf0\x153\x99y\xab\x06\ +L\xd5d\xecBD|\xc3\xa3\x92\xfb\xa7\xf6\x82\xe6\xc1\ +~\xa3\xaf\x0dd\xe6\x00\x06\xb1Qr\xd7k@\x0f{\ +xP\x90\x9f\xd8\xc6+\xdcl\xd5\xf7j\xc0:\x02[\ +\x11\xf1\xe9\xf8 3\xdb\x13\xc1\xe7v\xa2\x8b\x17\xe5\xfb\ +if\xf6W\x9ahv\xe2\x00/k\x13,b\x06\xb7\ +\xb1\x96\x99\xf3x\x8f\x8b\xa5\xe6\x00\x97\xf0\x04;m\xe0\ +x\x91\x06\xb1\x82\x89\xca\xed=,c\x1a\x1fq'\x22\ +~\x9c\x02\x0a\xd2\xc1=\xcd*\x8fh\xb61\xf1\x5c\xf3\ +\xa8_4\xfbr\x0a\xf9\x0b\x9c\x15\x99y\x03oq\x0d\ +\x1f0\x11\x11\xfb\xff\x0dT\x907\xb8\x7f.\xa0\x82<\ +>7p\x02Y\xc0\xc3#S\xefd\xae\x0f\x1eB$\ +\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01x\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x12\x08\x06\x00\x00\x00R;^j\ +\x00\x00\x01?IDAT8\x8d\x9d\xd3=K\x5cA\ +\x14\xc6\xf1\xdf\xae\x06\x04\x8bt\xdb\xa8\x88q#\xa2\xd8\ +X\xa4\xb2\x15\x041\xd8\x05\xa2\x95\xe5\xd6!\xd8,n\ +!~\x06+IJ\xf3\x09\x94\x10P\x904n\x11H\ +0$\xf8\x02.\x0b\x0a\x16Vb\xe1\x8a\x8538\x19\ +]\xc2\xfa\xc0\xe5\x9e\xf3\x1c\xce\x7f\xce\x9d\x99[\xa8\xd7\ +\xeb\x12\xad\xa1\x8a\x96\x7fu\x89\x97\x99w\x8a\xc1bf\ +\x8e\xa3O\x07\xca\x01\xaf\xc2\xf3,@\x01\xe5N\x01\xdd\ +I\xdc\x8f\x9e6\x80\x1d\xf4\x86E&\xf0\x13\xe7\xf9\x04\ +\xb1q\xe8\x09\xc0<\xa6\xf1\x19%|\xc2B\x0ex\x9d\ +\x81r\xbd\xc0J\x88\xabq\xfa\x22\xc6BS\x0a\x18\xc5\ +\x1c\xba\x12\xc0\x12\x86C<\x82\xf7\x110\x80#|\x0c\ +\xc5\x12~\xe3\x9d\x87\xfb\xd0\x13VMUEw\x11\xdb\ +\xf8\x9e\x15oPK\xf2\x8a\xc7\xf7\xa3\x8c\xc5\xb8\x07\xb5\ +\xac\xb8\x81\xc3$ob\x06?B\xbe\x857hD\xc0\ +W\xec\x85\xf8\x1a\xab\x19p3Lz\x10\xf2_\xd8\xc7\ +\xb7\xf4\x14\xe2\x0e\xaf\xa3\xe1i\x1d\x87\xf7Q4\xe2E\ +Z\xc6$\xce\xdc\x9f\xc2\x97\xe0Wp\x91\x00N\xda\x01\ +\xa60\x1b\xe2\xb7I\xc3\x876\x13\xfc\x8dF\xfe3\xfd\ +O\xc7\xb8\x92|b\xa7\x80&\xfe\xe0\xf6\xb9\x80\x16v\ +S\xe3\x0e3\xc49\xa5\x12)N:\x00\x00\x00\x00I\ +END\xaeB`\x82\ +\x00\x00\x01\x1b\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0e\x00\x00\x00\x0d\x08\x06\x00\x00\x00\x99\xdc_\x7f\ +\x00\x00\x00\xe2IDAT(\x91\x9d\xd1/K\x83Q\ +\x14\x06\xf0\xdf\xe6\x8aE\x98_`&\x83U\x10\xbf\x82\ +\x98\x9d0\x16\x945\xbb \xd6\x05\xcd.\x88}j\xb1\ +\x0cV4\x1b_\x164\xac\xb8b\x96\x81\xc5 2\x16\ +v\x06\x97\xd7wC|\xe0p\xcfs\xce\xf3\xdcs\xff\ +\x94\xb2,\xbb\xc0\x99\xdf8\xc1u\xe4}\xec\xa7\xcd2\ +\xeePG7j\xc3\xe0O\x89\xee\x12\xc7\xf8\xc2\x18\xcd\ +\x0a^#z\xd8\xc4\x0e\xaa\x18%\xc6g\x1ca\x15\x0d\ +\xf4\xcaI\xf3\x1b\x07\xf8\xc0\x15\xb6\x93^\x1d-tb\ +\x80\xd4\x08\xefh\xa2\x82\x07\xacc\x037\x18\xe04\xbd\ +c\x1e\x8fh\x87\xa1\x8b\xdb\xd0\x1d\xc6\xa9\x88\x9d\x8b\xd0\ +\xc6.\xf6\x827\xf0\x96\x0a\x8a&\xc2\x04\xe7\x91\x0fq\ +\x9f\x17,2\xc2On\xfd\xb3q)\xfem,z\x9c\ +\x15\xacE\xccy\xd5\xec\xde\x9f\xcb\x8c[x\xc9\xf1\xb1\ +\xd9\x1f\xd7\xe6\xc5)P\xcb+^\xfd\x05+R\x00\x00\ +\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01\xcf\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x01\x96IDAT8\x8dm\xd3M\x88\x8eQ\ +\x14\x07\xf0\xdf\xf3\xf4R\x83\x8d\x05\xc5\xbc\x14)\xcd\x8a\ +\x95(R\x13\xa5\xac\xcc\xc6GMJY\x8cX(K\ +\x99\x8c\x05\x9a\xb1b\xc3b\xc6\x82R2\xd9\xc8(_\ +eA\x16b\xa1\xde\x84\x89Y\xccBB\xa4\x19\x1f\xc3\ +\xe2\x9e\x9b\xdb\x93S\xb7\xdb9\xf7\x9c\x7f\xff\xf3?\xe7\ +V\x9dN\xc7\x7fl\x1b\xfa\xb1\x05m\xfc\xc6\x1bL`\ +\x0c/sb\xd5\x00X\x82\xab\xd8^\xc4>\xa3\x85E\ +\xe1\xcf\xe1\x22\x8eb\xb6.\x12\xdbxZ\x14\x7f\xc3q\ +,\xc7\x0a\x9c\xc3\x0f\xd4\x18\xc0=,\xc8\x0cj<\xc6\ +\x06\xcc\xe0\x12\xce`\xba\xd1\xda\x1a\x0ca\x0f*\x8ce\ +\x80\xfd\xb8\x8c)\xf4\xe2uQ\xd4\x1d\xa0\x1f\x8b\xd8F\ +\x5c\xc1\xea\xdc\xc2\xc1\xb8\x87\x1b\xc5\x83x\x8bI\x9c\xc4\ +\xc2\x88?\xc1mT5\xba\xb0)\x1e\xde5(\x0fc\ +/n\xe20\x9ec}\xa1\x91VP\xccLv\xe2\x96\ +46\xf8\x8e\xf18-i\xac\xfb\xd0\x87u\x19\xa0\x9c\ +\xc44\x0ea-\x1e\xe2\x0e\xbe\xc6\xdb/<\x88C\xd2\ +L\x8d\xf7\x98\x8d\xe0+\x9c\xc7(\xce\xe2\x83\xb4<\x03\ +X\xdah\xefE\x06\x98\xc1\xfd\x08\xce\x8b\xfb\x19zp\ +,\xee\xc1L\xb9\xb0\x1e\xfem\xe2\x0eI\xd5I\x1c\x08\ +\xfa\xa5U\xf8S\xf8}\xb8\x86\xb9\xdc\xff\x84$\xd4\xaa\ +\xe8q\x5cZ\x9al\xb9xs\x80\xdf\x08\xb6\xa7K\x01\ +\xfb\xa5m\x84]\xd2\x87\x19\xc1b\xac\x8c\xa2G\xd8\x1a\ +9\xa3\x18j~\xa6.\x9c\xc2\x11\xcc\x8f\xd8\xcfh\xa1\ +\x15\xfe'\x9c\xc0\x85R\x83\xa6\xb5\xb1[\x9a\xfb2i\ +\x84S\xb8\x8b\xeb\xf8\x92\x13\xff\x02w\x5ckPMg\ +\xdc\xa5\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01\x86\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0f\x00\x00\x00\x0e\x08\x06\x00\x00\x00\xf0\x8aF\xef\ +\x00\x00\x01MIDAT(\x91\x85\xd21K\xd6Q\ +\x14\x06\xf0\x9fW\x0a)jhh\xc8h\x91\x1c5\xe9\ +PRIC\x82\x0e\xd9 !\x82\xd1j\x1f \xa8o\ +\xd0\x16\xb4\xb4\xd4\xe6`\xb4DB\xadA\xe0\x10\x1dT\ +hlh\x11A\x8c\x8ah\x10\xa9lx\xef?^\xfe\ +\xf0\xf2\x9e\xe9\x9e\xe79\xcf}\xce9\x9c\x01\xad\xc8\xcc\ +\x9bX\xc6\x15\x9c\xc2O|\xc4s\xbc\x8c\x88\xbfM\xed\ +@\x97\xe8\x18V0\x8f/X\xc3W\x9c\xc6\x0cF\xf1\ +\x1e\xb7#b\xaf-^\xc3\x1c\x1e\xe0qD\xfc\xee\xe2\ +\x0a\xee\xe2)>a*\x22\x0e\x1ar!3\x0f3\xf3\ +~{\x8c\xd6H\xb3\xb5\xee\xe1\x7f\xe7\xcc\x5c\xc7qL\ +D\xc4a\x9f\x0f^\xe0\x1a\xce\x95\xcc<\x89I\xac\xf6\ +\x13\xd6X\xc50F\x0b.\xa3`;3\x8f\xf4q=\ +\x8a]\xfc\xc1\xa5\x82G\x95\x1b\xc7\xab>\xaeou\x96\ +:\x88{\x05\x17*1\x86\xc1\xcc\x1c\xe9\xe1:\x82)\ +|\xab\xd0\xc5\x82\x1f5\xb9\x8e7X\xea\xe1z\x07\xef\ +p\xb5\x01\x0a>\xd7\xf7\x10~a\xb1\x87xI\xe7p\ +\xa6k\xbeY\xf0\xba\xab\xe0\x06\xf62s\xac\xd5\xf2$\ +\xcec\x1f'*\xbcR\xf0\x04\x9b\x15\x98\xc7\x87\xae\xb9\ +\x9a\xd8\xc7\x16n\xd5|\x03\xcf\x9a#9\xab\xb3\xe93\ +X\x88\x88\xf5v\xcf\x999\xa1\xb3\xed\xef\x98\x8e\x88\x9d\ +\x7fI\x1dq\x82#,l\xf1\x00\x00\x00\x00IEN\ +D\xaeB`\x82\ +\x00\x00\x01\xc6\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x11\x00\x00\x00\x10\x08\x06\x00\x00\x00\xf01\x94_\ +\x00\x00\x01\x8dIDAT8\x8d\x9d\xd3M\x88\xcda\ +\x14\x06\xf0\xdf\x9d\x99\xcd\xd8h\xc6,$ERS\xcc\ +4\xa5\x135\xd9\xcclg(\x12\x1b\x0b)\x16>v\ +\x16\xa2,(\xcdF\xcab\xa6\x1b[\x85\x22+K\xf9\ +X\xb9\x0ee!#D\x16\xa8!\x09\xc9\xc2\xc7\xe2\xff\ +\xcet\xfb\xd7\xcc\x8dS\xef\xe6=\xe7<\xcfs\xbe\x1a\ +\xfe\xd32\xb3\x89\xfd8\xde\xe8\x108\x82\xb5X\x85\xd5\ +\xe8F\x17\xd6c\x1bz\xd0\xea\xe9@x\x06O1\x83\ +\xe5\xd8\x83e\xb8\x82\xbeBp\xa2{\x09\x15\x1bp\x16\ +\xc3\xe8G/\x9ax\x84\x83\xd8\x87\x81\x88hv-\x02\ +\xb0\x157\xf0\x10o\xd1\x8a\x88i\x0c\xe04\x0eG\xc4\ +\x17\xfcVj\x9aO\x5c\x89\xbdE\xe2\x1b\xac@\x94w\ +)3[8R\x00~df?>B#3\x03\xc7\ +\xd0\xc0\xbb\xc26\x8a\x8b\x111U\x08\xee\xa8\x9ay\x0b\ +\xcf\xf1\x12?\xf1=\x22\xee\xf7\x14\xc6\xed\xc51\x8b\xc7\ +\xb8\x80'm\x15\xee\xc4H\x01\x1a\xc4I|\xc2\x98\xc2\ +.3\xc7q\x0d\xbb#\xe2\xf6b\xcd.\xb1S\x98\xc0\ +xD\xccQ\xcd\x5cI\xdc\x81\xcb\x999\xf9/\x00\x0b\ +J\xda\x82\xb6\xe0\xaejt\xdfj\xbeI\x9c\xc7h;\ +\xc0\x82\x926{\x8d\xafu\x80b\xef\x8bo\xae\xee\xa8\ +o\xec\x90jCef/\x8e\xe2\x05n\xe2\x19\x063\ +\xb3;\x22~-\xa5d\x08\xb3\x99y\x08\xaf\xb0\x19\xa7\ +\xf0@5\xf6\x0fXWWR\x07\x19\xc6\x01\xd5qM\ +D\xc4.l\xc29Lc\x0d6v*\xe73\xc6\x22\ +\xe2\xde\xfcGD\xfc\xc1\xd5\xcc\xbc\xae\xba\x97\xbe:\xc8\ +_\xc6l\x83y\x0c\xda\xbaW\x00\x00\x00\x00IEN\ +D\xaeB`\x82\ +\x00\x00\x01\x89\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x15\x00\x00\x00\x14\x08\x06\x00\x00\x00bKv3\ +\x00\x00\x01PIDAT8\x8d\xad\xd4\xb1K[Q\ +\x14\xc7\xf1O$\xb4\xee\x12j\xabq\xaaYJ\x05\xc9\ +_P\x07\x17\x07\x17\xc1BE:T\x90\xae\x9d\x0a\xed\ +\xa0t\x13\x97v\xc8\xd8\xc5\xc1E7\xdduN\x16\xa5\ +\x94\xd6M#m\x05'\x95XQ\xe2\x90\x9b\x12\x02\xef\ +\xbd\x9b\x92\x1f\x5c.<\xce\xf9\xf2;\xf7\xc7y\xb9f\ +\xb3)I\xb5Z\x0d\x9e\xe3\x00oQ)\x97\xcb\x89\xf5\ +m\x0ddV\xfc\x87b\xa1?P\x8d\x85\xe6\x92\xc6\x0f\ +\xa3\xc3C\xdc\xe16\x16\x1a\xe3\xf4o\x00\xe6\xf1\x1a\xab\ +\xfd\x80\xe6\xb1\x88\xef\xf8\x8a\xc7\x18\xc7`RC\xd6\xf8\ +S\xa8\xa0\x94\xd0\x7f\x86S\xd4q\x1c\xee\xbd|\x86\xcb\ +}\xac\xe1#\xc6\xc2\xb7?\xf8\xd6\x01\xfb\x85\x93p\xd7\ +\xf1;W\xadF\x85\xfa\x00\xcbx\x8f\x1d\xbcI+\x8e\ +y\xd3\x12n\xf0\x19O\xb1\x9d\xd5\x10\x03\xdd\xc2\x86V\ +8W\xd8\xcdj\xe8|\xd3A\x8c\xe0\x09F;\xee!\ +\xbc\xc2\xbcV\xfa\x9f\xb4B\x91\xb4\xb2y\xbc\xc44&\ +\x03\xb4\x90b`\x093x\x81\x9fiN7\xc3\xe9t\ +\x5c\x0c.\x8bx\x87\x09\x9cc\x1d_p\x99\x04lC\ +\xbbu\x8d\xa3p`\x01\x1f\xb4\x82\xbaH\x83\xa5A\xbb\ +5\x8bF\x0c\xac\xad\x98\xf4\x1bx\x86\xb9Xh\xe2\x9a\ +\xf2oU\x0b8\xc4\x8a>\xfe\xa4\x87\xf1(\xcab\x0f\ +\xd0\x9eu\x0f\xb5UQ\xc4\x18\x14\xeam\x00\x00\x00\x00\ +IEND\xaeB`\x82\ +\x00\x00\x01J\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0d\x00\x00\x00\x0d\x08\x06\x00\x00\x00r\xeb\xe4|\ +\x00\x00\x01\x11IDAT(\x91\x85\xd2\xbf+\xc4q\ +\x1c\xc7\xf1\xc7\x9d\x93\xe4\xa2\xcb \x8b\xb2(\x7f\x00\x03\ +e2\xa0\x94\xd1 \xeab\xb1 \x0b2#\x93,\x16\ +\x89\x0c&E\xba\xc2\xa0\x84\x81\xbe\xc9$\xeb1\xa9\xeb\ +&\x8b\x1f\xc9p\x9f\xab\xef\xe9\xe2=\xbe?\xaf\xe7\xe7\ +\xf5\xfa|z%\xa2(\xca\xa3M\xe5\xaca\x11\x0bX\ +\xfduv\x9d\xc24\xd2\xd8@\x0b\xe6p\x11\x04Gx\ +\xc5\x16^\xb0\x84B\x0a\xb9 x\xc3\x09\x06\xb0\x19v\ +O\x98G\x0ac\xb8\x85d\xcc6\x87\xed\x00M\x85\xdd\ +0&\xb1R\x06 \x11EQ\xcc\xe2\x1c\xcb\xe8\xc0z\x5c\x14\xff\ +\xbdN\xdc\xe3,\xc4\x83\x1a\x5c\xa2\x07C8-;e\ +\xd0\x8c=\xbc+\xd5\xa7.@)\xa5\x86|`G\xa9\ +n\x99$\x8a(\xa0\x0bMxD6@Y\xdc\x85K\ +Z\x91G\xf1\x07i\x04=o\x03\x18\x5c\xb7\x00\x00\x00\ +\x00IEND\xaeB`\x82\ +\x00\x00\x02\x15\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x13\x00\x00\x00\x14\x08\x06\x00\x00\x00oU\x06t\ +\x00\x00\x01\xdcIDAT8\x8d\x9d\xd4]h\xcfQ\ +\x1c\xc7\xf1\xd7\x7ff)\xe5\xa15\xca\x05\x174\xb5\xd4\ +\x94\x8b\xb1%\xb1\xac<\xa4(S\xd4.\xdcz\xb8q\ +\xe7F\x89\xc2\x8dZ+)\x96I\xc9\xe4!\x91\x9a\x84\ +\x95q\xf1\xbf\xf0\xfc\x90;#\xa1\x11.H\xcd\x5c|\ +\xcf?\xbf\xfe\xfe\xff\xfd\xd6N\x9d\xce\xefw\x1e\xde\xe7\ +\x9c\xcf\xf7\xf3=\x85b\xb1h\x02\xa5\x06\xbbS]\x88\ +W8\x8a\xb3\xd9I\xb5\x13\x00MA/\xba\xd2\xff\x07\ +4\xa1\x0f\xd3q\x22\xbbc\x1e\xe8L\x02\xbdG+\xe6\ +a#\xc6p \xcb\xc8\x83m\xc5z\xbcD\x1b\x1e\xa4\ +\xfe\x1b\xf8\x84\xb9\x98Q\x9a<\xde5g\xe2\xb9\xd0\xe8\ +\x07F3c+1\x07\x1f\xf1}\xbc\x93M\xc3)\x8c\ +\xe0Ij{Q\x97\xc6\x97\xe2\x0a\x0a8\x84?\xd5N\ +6\x0bW\xb1\x0a_q_\xe8\xd4\x85~!\xfe\x00\xea\ +q\x1c=\xd9\xc5YX\x03n\xa1\x19/\xb0\x0d\xef\xd2\ +\xce\xab\xf1\x13w\x84F=\xd8W~\xa5\x12lv\xda\ +\xb1\x19\x0f\xb1\x01\x97\xb1\x1c\x17D\xe4v\xa4\xf9G\xb0\ +?\xf5\xfd\x07\xab\xc3\xcd\xa4\xc5\x10\xd6\x09Q\xcfc\x85\ +\x7f\xfe\xfa\x85\xbd2\xbe\xaa\x04\xdb\x8e\x16<\x126(\ +E\xe7\xa4\xd0\xaf\x15SqOD\xafj\xa9\xc1\xb2\xf4\ +\xdd\x8do\x99\xb1\xcd\xb8\x8bMx\x9c\x07*\xc1\x86\xd3\ +w{\xa6\x7f\x0f.b\xb10\xec\xeb\xfd7\x08\xdf\xb5\xd4\xa6\xe3w\x88\x1c\x5c\x92&\ +<\xc3.\x0cV8@\xbf\xc8\xcfF!\xc55\xe1\x82\ +\xa6B\xd9\x134?\xb5\xc3*\x84>\x95v\x5c\x12\xe9\ +\xf6[\xb8a\x04[\xca\xd3\xe9m\xaa\xd5@p[\x04\ +e,\x81F\xb1\x16\x83y\xafF\xa5\xd2\x88\xd3\x227\ +\x89g\xea\x1c\x16L\x06v\x1d\x8b\xc4\xd5:\xf1Y<\ +\x96\x03\x93\x81\x1d\xc6\x1b\xac\x11\xf6\xe9\x10\xd69\xf8\x17\ +-\x83l\x7f\xf5\xb9\xae\x1b\x00\x00\x00\x00IEND\ +\xaeB`\x82\ +\x00\x00\x02\xff\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ +\x00\x00\x00 cHRM\x00\x00z&\x00\x00\x80\x84\ +\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00u0\x00\x00\xea`\ +\x00\x00:\x98\x00\x00\x17p\x9c\xbaQ<\x00\x00\x00\x06\ +bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ +\x00\x09pHYs\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\ +\xdd~\xfc\x00\x00\x00\x07tIME\x07\xe0\x01\x08\x0f\ +\x12,c4\xebp\x00\x00\x01\xeeIDATX\xc3\ +\xed\x95\xbdk\x14A\x18\xc6\x7fo\x12D\x09\x09\x82 \ +h#H\x02\x16I\x99\xbf }\xdap\xdb\xc8\x92\xca\ +\xe2\x16\xff\x00\xc12U\x88\xec\x15!\xd5\x14\xe2\x1e)\ +\x02Q\xc4t6\x92\xc2\x90\xc6B,\xceBN\x11<\ +\x0c\xf9 \x09\x5c>nR\xdc\x9c\xbeYw7\x93\x8f\ +\xce}\x96\x81w\xe6}v\xe6\xd9g\xde\x99\x85\x12%\ +J\xfc\xef\x90\xbcD%\xac\xde\x03\x06]\xd7*\xfeA\ +\xdd\xd4~\xa6\xb8\x0f\x81\xfb\xc0\x100\x00\x1c\x01m`\ +\x17\xd8\xac\x9b\xda\xb7\xbcu\xfa\xf2\x95\xc9\xa2 \x0d\xa0\ +!\xc8W\xd7\x1a@3\x08\xa3\xf5 \x8c\x1e)\xeec\ +A>\x08\xf2\x0ex#\xc8\xaa \xef\x05\xd9\x00\xee\x04\ +a\xc4\x85\x05\x00\x87\xea\xeb;\xca\x85~`\x02\xf8\xa8\ +&>*\x98g\xb7h\x0b\x06\xce\xdd\xa4\xae\xedS\x89\ +\x89\xdf\x06at\x17X\x03F\x80a\xe0)\xf0\x22\xc5\ +\x9f\x06\xda\x89\x89_{\xcc\x9d\xef\x80uO/\x06H\ +L\xdc\x02\x9e\xdb?Y;\xa9\xb9\x8a\xe7\xb5x\xa1\x03\ +\xe2\xea\xd3b\x11D\x17\xeb'\xf9[\xbb\x0f4W\x8b\ +\xbd\xb2\x80\x02\xec\x03\xc7\xee\xdd\xe1,B\x10FO\x80\ +&\xb0e\xb1;\x82|NL|m\x02\x8e\x81\x13\xf7\ +\xee\xcd\x8c\xfcR\xaa?v)\x07\xb4\x95)[\xc5b\ +{\x9e\xf7g\xe4\xcf\xed{\x09H\xd5\x80N\xdd\x12\xe4\ +\x86\x8b\xdb\x9a\xeb\xf8\xd3\x82\x9c$&^\xf6\xb1\xb3\xcf\ +\x87\x94\xc2m\x15og\x11|\x17\xbf\x88\x80\x8e\x8a'\ +U\xfc\xe5\x12\x1fp\x06\xbe50^\x09\xab[\xc0(\ +\xf0\xccb-\xdd\x0b\xeaU\x9a\x0bP\x09\xabU\xa0\x05\ +\x1c\xb8\xb6\x0d\xfc\xaa\x9b\xda\x0fo\x01\xbd\xb3\xefj`\ +V\x0bs{\xbe\x9a\x98xEs]~)}/\xb8\ +\xfe\x18\xe0/\xc0\xa9n\xd1=r\x1a-\xe0eb\xe2\ +95\xb6\x07\xfc\xe6\xdf\x7fB\x07\xf8\x0e,\x90\xf3\xbf\ +(\x120\x935X7\xb5\xac\xe1y\xd7\xb2\x9c\x04 \ +\xef\x22*Q\xa2D\x89S\xad\x83\xa9\xe2\x81\x96I:\ +\x00\x00\x00%tEXtdate:cre\ +ate\x002016-01-08T1\ +5:18:44+00:00\x8e\x05\xfd\ +\xe0\x00\x00\x00%tEXtdate:mo\ +dify\x002016-01-08T\ +15:18:44+00:00\xffX\ +E\x5c\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01\xeb\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x11\x00\x00\x00\x10\x08\x06\x00\x00\x00\xf01\x94_\ +\x00\x00\x01\xb2IDAT8\x8d\x95\xd3Oh\xcfq\ +\x18\x07\xf0\xd7\xf7\xb7%s\x908(.\x8aYM\x19\ +y\x14\x8a\x1c89\xb98\x92\x9b\x96\x7f3\xb2&\x9b\ +?5\x89\xb3\xc2\x8a\x5c8)M\x9a\x03Jqz\x0e\ +\x86\x83\x03\x07\xb2\xd5\xe4_\x88R3\x87\xdfw\xf5m\ +~#O}\xeaS\xef\xe7\xfd\xee\xfd|\x9e\xcf\xbb0\ +Cef+\xce\xa1\x1d\x0f\xd1\x13\x11\xef\x1b\xf5\x16\x0d\ +\xc8\x813X\x8d\x05\x15h\x14\x8fq$\x22^7\x14\ +\xc9\xcc-\xe8\xc7J\xcc\x9d\xc9!\xde!q4\x22\x9e\ +C\x91\x99;p\x18+0\xe7/\xe4\xe9\xf5\x09#\xe8\ +\xada\x02\xcd\xe5\xf9\xdf\x9a\xc0\xaf\x022\xb3\xc0nt\ +\xa3\x0dM\xffp\xf0\x04]\x111\x02\xb5\x12X\x8e]\ +X\x88>\xbc\xc0\xe44\xf2\x07\xdc\xc1N\xacCWf\ +\xce\x83Zf>\xc2S\xbcA[D\x0c\xa0\x03\xa7\xf0\ +\x0a\xe3\x18\xc2\x86\x88\xd8\x16\x11\xb7\xd57\xb7\x0c\xe3\x99\ +y\xbdY}m\xab\xb0V}3\x0f\x22\xe2'Nd\ +\xe6Y\xcc\x8f\x88\xd1);\x99Y\xc3&\xb4\xe23\xee\ +O\xbd\xc9,\x9c\xc4\x01\xbc\xc5\xfe\x88\x18\xae\xceR\x92\ +;\xcb\xbeB}\xa3W\x22b\xb2\xc8\xcc\x96\xd2zg\ +i\x7f\x08{\xf1\x11\xfb0\x8cC\xe8\xc1w\x9c/\xef\ +\x05\x8ec\xb0\xc8\xcc\xaf\x98\x8d\xed\xe5\xbc2\xb3\xb9$\ +\xf6\xa2\x05c\xe8\x8e\x88\x9b%^\xe04\x8e\xe1e\x91\ +\x99m\xb8\x88\xf5\xb8\x85\xce\xa9\x8cdf\x13\xda#\xe2\ +Ye\xac\x0e\x5c.\xdf\xef\x06\x0eV\xbf\xfd\x12\x0cb\ +#\xeebOD\x8cU\xf05\xb8\xa4\x1e\xc8k\xea\x19\ +\xfaB\xe3\x00..\x9dm\xc5=\x5c\xc0\x00\x96\xe2\xaa\ +zf\xbeU9\x7f\x88T\xc4\x16\x95\x02\x9bK\xfb}\ +\x11\xf1\xa3Q\xefos\xf3\x98\x0b\x981\xe3\xce\x00\x00\ +\x00\x00IEND\xaeB`\x82\ +\x00\x00\x02\x91\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x14\x00\x00\x00\x11\x08\x06\x00\x00\x00\xddD\x8c\xbe\ +\x00\x00\x02XIDAT8\x8d}\x93QhVe\ +\x18\xc7\x7f\xcf\xc7>(u\xcb\xae\xc4\xd01\x91\x85|\ +Q\x9a\x9eH\xac\xad\x18\x12\x14\xee\xb2\xb0\xebH(\x1a\ +\x0c\x04a\xdd\x85\x17\x0e\x12/\x82\x04\xe92\xbf`\x22\ +\x08\x0e\xbb\x182%\xb5\xa0\xde\xb352\xa9\x1b\xa9\x8b\ +\xe9\x96\xae\xf8J\xc4\xc2\xfau\xd1\xfb\xe9\xd9\xe7\xf2\xb9\ +9\xe79\xe7\xf9\xff\xfe\xff\x07\xde\x17:J]\xa3\x8e\ +\xa8g\xd5y\xf5\xb6\xba\xa4\xce\xa9\x1f\xa9;;5Y\ +\x87\xfa\xc0\xc7\xb7\xd4\x9b\xea\xd5\x0c|^\xedS\x9fR\ +\x87\xd5O\xd4[\xea\xa4\xfa\xc4C\x81\xd9\xfd\x8e\xfa\xae\ +\xfa\xb1\xba\xf1\x7f\x92lR\xcf\xa9\xd7\xd4-+\x02\xd5\ +\xd1\xbc\xda.\xb5\xa6\x9eZ\x09V\x11\xd7\xd5\x93y\x93\ +\xb5\xcb\x80joN6\xa6nW_S\x0f?\x0c\x98\ +\x01\xab\xd4\x9f\xd5\x0f\xab\xc0.\xe0m\xe0Z\x9e\xdb\x09\ +\xec\x02\xba\xd5O\x81_\x81q\xe0zD,\x03F\xc4\ +mu\x0a\x18P\x1f\x01\xee\x00\x84:\x0bLD\xc4x\ +vz\x07\xb8\x1c\x11\x17\xd4\xae\x99\x99\x99iu.\x22\ +N\xf7\xf4\xf4|\xd1\xdf\xdf\xffg\x9e[\x0d<\x0b<\ +\x07\x5c\x8c\x88o\x00j\xc0\x93\xc0\xb7\x15\xf3.\xe0\xaf\ +\x9c\xe2\xaez\x1exO\x9dj\xb5Z\x8beYN\xa4\ +\x94^_XXx\x1c\xf8\x0ah\x02\x7f\xb4\xc55\xe0\ +Q\xa0U\x01.\x01\xab*}\xb3\xf2\xfe\x98\xfa\x06p\ +b~~\xbeY\x96\xe5\x9a\x88\xf8\x05X\xac\x02\x17\x81\ +\xde\x8a\xe8\x07\xe0\x99vS\x14\xc5\x8f@by}\x07\ +\x0c\x15E\xd1\x0e\xf2{\x15\xf8%\xf0Jex\x0ex\ +\xa9\x03\xd0\xec\xe8\x9f\x06\x0e\xb6\x9b\x88\xf8\xbb\x0a\xfc\x0c\ +xS\xddP\xf9\xf9\x93\xda\x00Pw4\x1a\x8du\x80\ +\xc0\x11\xe0b\xd6\x8e\xa5\x94\xf6u\x18\x11j\x0d\xf8\x1e\ +\xa8\x03G\xf3\xb3\x17\xd8\x03\x5c\x00\xae\x00\xcd\xb2,_\ +\x05\x8e\xe5\x10\x1f\x00\xefg\x93\xe1\xa2(>\xbf\x07\xcc\ +)\x1aY\x5c\x02\x07\xf8\xef\x5c\x0e\x02/\x03#\x11\xd1\ +q\xeb!\xa5\xb4\x1b8\x0et\x03\x83EQ\x94\xed\x95\ +\x89\x88+\xc0\x00\xb0\x19\x98\x00\x86\x80I`\x1a8\xa1\ +n\xcd\xc6\xf56\xb0(\x8a\xb3\xc06\xe0\x12p&\xa5\ +\xd4w/a\xbb\xf2a\xdd\x0f\x8c\xe6\xd5\xbf\x06~\x03\ +\xb6\x00S\xc0\xa1\x88\xb8\xd1\x91\xb4\x96\xd7\xdf\x0b\x0c.\ +\xbfO\xf7\xc1u\xe0\x05`+\xb0\x1e\xb8\x09\x9c\x03f\ +#\xe2\x9f\x954)\xa5\x17\x81}\xff\x02\xe28ya\ +\x96\xfd\xc4\x97\x00\x00\x00\x00IEND\xaeB`\x82\ +\ +\x00\x00\x04x\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ +\x00\x00\x00 cHRM\x00\x00z&\x00\x00\x80\x84\ +\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00u0\x00\x00\xea`\ +\x00\x00:\x98\x00\x00\x17p\x9c\xbaQ<\x00\x00\x00\x06\ +bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ +\x00\x09oFFs\x00\x00\x01@\x00\x00\x00\x00\x00s\ +\x05\xb7\x16\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\ +\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\ +\x07\xdf\x0c\x12\x0e\x1b\x0b$&IW\x00\x00\x00\x09v\ +pAg\x00\x00\x03@\x00\x00\x00 \x00\xbe\xe6\x89Z\ +\x00\x00\x03=IDATX\xc3\xe5\x97MhUG\ +\x14\xc7\x7f'\xba\xf3\xa3`\xa3Q\xb1\xa9-(*\xb5\ +(6\x96 \xadP\xdc\xc4\x16\x04\xad\xe0}\xbb\xa1\xb8\ +\xb0p\x1fZ\xa8\x8b\x82\xe8\xa6\x14\xba\x11\xee\x05\x15\x17\ +N\xa1p/h\xa4.\x0b\x8d\xa4\xa4i\xd4E\x055\ +~ H\xd1*\xa95DP*\x88\xf6\x9d.\xdey\ +\x8f\xf1a\xde\xbb\xe6C\x17\x9e\xcd\x999\x1f\x9c\xff\x9c\ +\xff\xdc\x99\xb9\xf0\x8aE\x8a\x04\x95\x5c\x19`\x8f\xa2?\ +\xe4>\xbd\xff*\x00\xfc\x02lR\xf4\x0fA>\xc8|\ +\x12\xfa\xf6\x03\xf3\x81S\x99O\xfa\xcc\xd6\x03lVT\ +\x049\x92\xf9d\x18 r\xf1^A:\x81\x93\x99O\ +\xfa\x01f\x16(~\x14\xd8d\xd3u\xc0I`[\x10\ +\xf21\xf0\x090\x0f\xe83\xdb\x97\xc0g6\x1e\x05\x86\ +K\xae\x8c\xa2_\x03\xed\xc0O\xb5\xe4\xb6f\xc5#\x17\ +\xefUt\xa7\xa2\xaah\x05PE\xb7F.\xfe\xbe\x16\ +\xa3\xe8iEQ\xf4\xbd\xc0\xd6\xadh}l\xfam\xa0\ +\xddbO\xb7\x04`\xbc\x7f+\xc8cA\x9e\x0a\xd2\x06\ +\xfcg\xf3\xafJ\xae\xdc^\xe5P\x06\x05A\x90w\x22\ +\x17Sr\xe5E\x82\xbc)\xc8C\xe0\xb1 \xdd\x16\xb7\ +\xca\xf4\x95\xdc\xa7\xb4\x04`\xb2\ +y/0\x02\xcc1\xb0k\xcc~.\xac\xd3\x94\x82\xdc\ +\xa7c\x99O\xfe\x01\xc6\xcc\xf4 \xf3\xc9hP\xbc\x06\ +\xf4b\xb0G6\xda\xf8\x14p\xd9\xc6\x1b\x80\xb5\x0d\x80\ +[\x03\x088\x95\x1a\xa7\xe3\xf8\xcf\x99\xbfK\xd1.\xe3\ +y\x10\x18\xb2q\xb7\xa2\xab-\xf6\xec\x0b\x030\x8e\x9b\ +\xf9\x07\xcd\xdf#\xc8rAn\xe5>\x1d\x03\x86,w\ +\x8b \x8b\x80G\xb9O\xaf\x85\xb9-?\xc3\x82\xf2\xbb\ +\xe9\x95\xa6\x7f6}\xde\xf4\x0a\xd3\xfd\x8d\x89\x85:\xd0\ +J2\x9f\xdc\x00\x1eA\x9d\xa7~\x80\xdc\xa7\x0f\x80+\ +A\xe8\xaf\x13\x02`<\xb6\x8a9\x03\x88\xc5\x0e\x04\xf6\ +\x0bA\xfePc^!\x0aj\xfc7\x03!\xc8nE\ +\x97\x0b\xa2\x99O\xae\x06\xf6\x03T?\xc9\x8a\xa2}\x8d\ +yS\xb5\x07\xb0\xf3~\xf89\xf6\xeb\xc0\xf5\xf1\xf2\xa6\ +d\x0fLF\x0au\xa0\x15\xff\xd3\x0e\xa0\xc8\x1eh&\ +v=\xc7\x8an\x0e\xef\x01xy\x14,\x03z\x80[\ +%W^\xfa\xc2\x1d\x00*\xa6\xe7\x96\x5c\xb9\xa3\x96\xa7\ +\xe83'\xe48\xf3\xa7\xc0\x1bfz\x0b\xb8Tr\xe5\ +O3\x9f\x0cT\xbb[@\x22\x17\x1f\x07\xb6O\xb2\x0b\ +\x15\xab'\xc0\x13`q\xee\xd3\xd1\x22/\xa2\x13\xc0\xe7\ +\xc0\xdf\xf6$\xab\xd3V\xb0\x03\x15\xe0]`\xa5\xa2j\ +\xfe\xdf\xa8\xbe\x94\x9aS\x10\xb9\xb8\x97\xea\xf3\xeb&\xd0\ +\x95\xfb\xf4\xdeD\x96^r\xe5]\xc0![\xfd\xb1\xcc\ +'_\xd4|mA\xd0\xda\x86\xa4<(\xde\x9d\xf9d\ +B\xc5Mf\x98\xfe&,^\x07\x10\xb9x\x81\xa2\xe7\ +#\x17\x1f\xb6y\xa6\xe8\x0e\xe0\x8e\xa2\x1ff>\x19\x99\ +Dq\x14\xedUtc\xee\xd3\xef\x1a}b\xab]\x0a\ +\xfci\x9c\xfdEu\xb7\xdeV\xf4\xfd\xa9\xfe\x0fh\x94\ +\x1a\x05\xed\xa6+V\xfc_`\xfdt\x17\x0f\x01t4\ +\xd8g\x01\xfb\xa6\xbbx\x1d\x80\xa2\xf3\xec\x98m\xd3\xfa\ +\xed\xaf\xbb\x22\x17G\xd3\x0d`&\x80 ?\x02\x9d\x8a\ +>\x11d\x04\xb8\x0b\xdcU\xf4\xc2\xcb\xe8\xc2\xeb-\xff\ +\x03Q\x9bYF6Y\xf5\xec\x00\x00\x00%tEX\ +tdate:create\x00201\ +5-12-18T14:27:11\ ++00:00YM\xe3\xc6\x00\x00\x00%tE\ +Xtdate:modify\x0020\ +15-12-18T14:27:1\ +1+00:00(\x10[z\x00\x00\x00\x00I\ +END\xaeB`\x82\ +\x00\x00\x01U\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\ +\x00\x00\x01\x1cIDAT8\x8d\xa5\x92?K\xc3P\ +\x14\xc5\x7f\xa9\x11%\x8b\x1d\x5c\x5c\x05\x05'\xa1\xdcM\ +\xfc\x02*n\xd9\x5c]\xc5/P\x1c;\xf9=\x1cU\ +\xea\x87\x10\x0eq\x12\xc4\xa5\x11\x8b\xe0\xa6(4R\x9a\ +8\xe4EB\xdaj\x82\x07\x1e\x8f\xfb\xe7\x9c\xfb\xce\xe3\ +z\x922 c6\x92J\xbc\x08\xf8\xc0\x17\xb0\x04\x8c\ +}G\xf6f\x90\x07f\xb6^NH:\x05B3\xdb\ +\x91t\x09\x1cx\xee\x05\xef\x15r\xcbM\xb8\x02\xd2R\ +~\x1b\xd8\x04\xae\x81=`\xc1\x07\x86\xc0\xee\x1c\x0b\xbf\ +\xe1\x0c\xe8\xfb\xc0\xc4\xcc\xe2\xa6lIm \xf5\x8bD\ +\x14E!\xb0_\x93\xff\x9c\xa6\xe99\xe4?Z\xe0(\ +\x08\x82\xc3:\xec$I\x1e\x0a\x81V\xcd\x89s\xf1o\ +\x81\xb2\x85\xa7\xd1ht\x0b,\x03\x9f\x95\xda\x9a;\x8f\ +\xc0[\x96e\xe3)\x81N\xa7s2o\x8a\xa4\x10\xb8\ +\x00\xb6\x80.\xd0\x03V\x9aX\x18\xba\xde\x04\xd8 _\ +\x22\x9a\x08\x0c\x80;\xe0\x1ex1\xb3\x9b)\x0b\x7f\xe0\ +\x158&_\xef\xbe\xa4\xdeOER\x5cS\xa4\xe8_\ +uw[R\xecI\xfa\x00&MD\x1c< \xfe\x06\ +\x8cB^q\x9bC\x89i\x00\x00\x00\x00IEND\ +\xaeB`\x82\ +\x00\x00\x01\xf9\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x13\x00\x00\x00\x13\x08\x06\x00\x00\x00rP6\xcc\ +\x00\x00\x01\xc0IDAT8\x8d\x9d\xd4M\x88\x8eQ\ +\x14\x07\xf0\xdf\xc3\xe4c\xf0\x8e\xa4\xa4X!a3\xf9\ +*55)!\x0b\x1f\xb1bMYH\x0a)+\x91\ +\x22\x89a%I\x16^5Y\xf8JV>J\x91G\ +Y(\xb11,$\xe3{2\xc64bq\xcfSO\ +\x0f\xaf\xf7\xcd\xa9[\xb7s\xcf\xfd\x9f\xff\xf9\x9fso\ +\x96\xe7\xb9\x16\xac\x1b\x07\xb0\x10\xef\xd0\x83S\xf8U\x0e\ +jk\x01h#.E\xec\x10f\xe1$j8T\x0e\ +\x1c\xd5\x04h-.\x22\xc3\x0eL\xc4\xb2\x00\xdd\x8b\xb1\ +\xad\x82M\x93J\xc9\xb0\x05\xa7\xf1\x13\x0fbM\xc2\x8c\ +\xf2\x85fe\xce\xc58|\xae$\xe9\xc40\xde6c\ +\xb6\x14O#p\x00\xe70=\xce:p\x0d\x93q\x16\ +\xdf\xfe\x05\xb6\x1a\xb7\xb1\x00/\xf1\x15\x1b$}j\xb8\ +\x89%\xb8\x87=U\x16e\xb05\xb8\x82v\x1c\xc4l\ +I\x93\xed\xb8\x80\x1b\x92\xf8O\xa4\xc6\x0c6\x02\xebB\ +/\xc6`\x1f\x1e\x06\xab\x13\x18\xc1\xf9\x88y\x8c\x15\xf8\ +R\x05\x225`\x1e\xae\x07\xa3\xfd8\x82\xc5\xd2@n\ +\x8b\x05w\xb0\xbe\x11P\x01v\x5c\x12\xf6(\x0e\x87?\ +\xc7|l\xc2L<\x0a\xe6#q^\xc3\x1c\xbcF\x7f\ +\xb9\xcc\xe5\xf8\x18\xac\x0a\x1b\x8d]\x18\x8f\xab\xa8\x97\x80\ +`w$\xe1\ +M\xd9\xf9\x1b\x87\xd0i\x8b\x22\xfc\x9f\xfe\x00\x00\x00\x00\ +IEND\xaeB`\x82\ +\x00\x00\x02\xbf\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x16\x00\x00\x00\x13\x08\x06\x00\x00\x00\x94y\xfd\x88\ +\x00\x00\x02\x86IDAT8\x8d\x8d\xd4]\x88\x97U\ +\x10\x06\xf0\xdf\x7fQ\xd0B\xdb2)\x08D]\xc9B\ +\xec\xa6!\x03\xa3\xb2 \xd1J(\x0d#\x13\x14\x0b\x8b\ +\xc0\x82\xad\x9b0\x0a\xa4@\x906BJ\x141\xb0 \ +$\xfb\xf0\x22r\xefV\xcc\x14fS\xe8\x036HJ\ +J\x0d!\xdd\xf2\x03#\xda.\xceYx\xf7M\xc9\x81\ +\xc3\xcb{f\xe693\xcf|t\xb4$3\xc7\xe1s\ +\x04\x0e\xe3B=k#\xe2\xf7js5^\xc63\xf8\ +\x0bK#\xe2@\x13\xa7\xab\x0d\x8c\xf9\x98\x80)8\x8e\ +\x07\xb1\x0c\xab*\xe8t|\x85n\xf4\xe0\x05\xack\x83\ +\x5c\x0a\xf8Z\x1c\x8d\x88\x11|\x8a\x91z\x7fCfN\ +\xc3\x00\xfa\x22\xe2\xb9\x888\x83\x1f0\xf5J\x80\x7f\xc5\ +4\x88\x88\xdd\x98\x8e\xdb\xf0\x08\x0e\xe1\xd5\x88\xd8\xd1\xb0\ +\x9f\x81_\xae\x04\xf8{\xcc\xcd\xcc\xf1\x15\xfc\x18\xbe\xc5\ +QL\xc2`\xcb\xfeN\x1c\xf9_\xe0\x888W\x9d\xef\ +o\x5c\xf7*\x94<\x81\x0fk\xf1Fe)\xf6\xb4q\ +:\xcd\x9f\xcc\x9c\x80\xdb\xf1\x12f)\xb4\xdc\x84[p\ +\xb1\x9en\x9c\xc0\xcf8\x85\x05X\x83\xfd\x11qb\x0c\ +pf\xce\xc3\x8b\xd5h\x10\x07\xf1<\x1e\xc5f\xbc\x16\ +\x11\xbb\xaa\xedU\xf8\x0e\xaf`%~\xabXw\xe1\x1c\ +\xb6bk'3{\xf1,6`wD\x9c\xad\x00\x9b\ +p7\xceD\xc4\x03\xad\xcc\x96\xe0\x0d\xa5\x83f7|\ +\xee\xa8\x01\xcd\x91\x99g3\xb3\xbb\xcdQf\xf6d\xe6\ +Hf\xceo\xeb\xaa\xfe\xeb\xcc|\xeb2\xba\xf7\xc6\xd5\ +\xb47d\xe6\xfa\x88\x18n\xe8\x17\xd4\xd4\x1e\xc2\x97-\ +\xc7\x99J\x1bv5\xee\x16b\x0b~\xc4\xad\x9d\xcc\x9c\ +Tix\x12\xfd\xf5\x1c\xc4'\x95\xa2\x0fp_D\x0c\ +5@\xf6`/\x1eG\x1f\xfe\xac\xdf9\xd5\xe4\xe9N\ +\xc3\xf8\x1a,Rx]X#\x1a\xc2u\x18V\xc6\x98\ +\xc2\xeb\x12\xa5\xc8=\x98\x88/p\x12O\xe1\x18\xe6\x8d\ +i\xb7\xc6#\xdbq\x00\x9f\xe1Fl\xc2\xdf\x15`#\ +\x1eS\x86\xe64~\xc2\x8c\x88\xf8\xa3\xf6\xf7\x85\x88\xf8\ +\xe7?\xc0\x99\xb9\x02\xef\xe0\xe1\x88\xd8W\xef\xaeG\xd6\ +\x94\xdf\x8e\x88m\x0d\xfb]\xf8h\xb4\x1dGe\xcc\xe4\ +e\xe6l\xbc\x8f\xc9x\xb3\xa1:]#\xbc\x19\xfbZ\ +\xb1\x0c\xe0\x9ev\x80\xed\x91\x1eVv/\x85+\x99\xd9\ +\xa5\x0c\xc9De\xff\xf6g\xe6\xac\x86\xcf\x90\xc2\xf5\xe5\ +\x81#\xe2$V+\x85Z\x91\x99\x93\x95\xd59S\xa1\ +f\x07\xd6c 3\xefm\xb8\x8eh\xc9\xa5\xb6[\xbf\ +\xb26\xfb\xf0M=\x8b#\xe2|}|'\x96\xe3\xdd\ +\xcc\xfc\x18\xaf+E\x1d#\xff\x02\xad\xb1\xf2$\x9a\xc7\ +|\xa6\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x02=\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x13\x00\x00\x00\x12\x08\x06\x00\x00\x00\xb9\x0c\xe5i\ +\x00\x00\x02\x04IDAT8\x8d\xad\xd4\xcfKTa\ +\x14\xc6\xf1\xaf6\x5cc&\x09\x84\x89\x91\x81\x82D.\ +.t\xa3\xa9\xa0\xb6\x17\x83\xcc\x7f\xa0\xeex\xab\x8d\x08\ +\xd5JJC\x0b\xda\x14ZV\x1b\xdf\xdew\xfa!\xb4\ +S\xaaM\xe0\xca\x19#52\xf1N\xbd\x17\xa1\xc8\x8d\ +\xad\xd2`\xae\xc9\x85\x99\xdb\xa2\x94\x8c\x08g\xecY\x9d\ +\xc5\xe1\xc3\xe1p8%Z\xeb\x1bV\xc2\xee\xa3\xc8\xbc\ +\x9aIm\xd7%Z\xeb\x00\xb8\x0b\xf4Z\x09;\xd8\x0b\ +V\x0a\xb0\xbc\xbc\xdc\x03H%\xc5\xbeb'\xdc\xc6n\ +\xde\x1a\xe6\x83\xd6g\x80Y%\x85\xb1'\xcc\xf7}\xd6\ +\xd6\xd6p2\x99z`RI\x11.\x1a\x03\x10B2\ +<|\x9b\x85\x85\x85v\xe0\x8d\x92\xa2\xbch,\x08~\ +\xee\xfe\xfb\xe6&\xa9t\xba\x06\x98RRT\x14\x85E\ +\xa3QB\xa1\x10cc\x0fP\xea!ss\xf3\x8d\xc0\ +[%E\xac`\xac\xaa\xea(\x03\xfd\x97\xa9\xac\x8ca\ +\x18\x06\xd9l\x96\x89\x89\xc9#\xc0\xb4\x92\xe2pA\x18\ +@<\x1e\xffxu\xa0\x7f\xa3\xa1\xbe\x9e\xc7O\xc6y\ +\xf6\xfc\x05s\xf3\xf3\xd5A\x10\xcc*)\xaa\x0b\xc2\x80\ +\xd7eeeM\xb6\x9d\xd0\xdd\xdd\x16\x87\xa2QV>\ +\xaf\x90L>\x8a\xe5\xf3\xf9i%Em!\x18V\xc2\ +v\x80\x86\xd6\x96\x96doo\x0f\xef\x16\x17I\xa5\xd3\ +8\x99L,\x97\xcb\xa5\x94\x14\x8d\xbb\xc6~\x81\x9e\x95\ +\xb0\xadxm\x9a\xe6\ +\xd3\xad\xa6\xd0V\xb1\xb4\xe408t\xad\x02\xf8\xe7\xa1\ +\x1e\x88Dp2\xefY_\xfff\x9c\xea<9\xee\xba\ +\xee~\xd34\x93;0\xcf\xf3\xf0<\xef_\xce\x8ed\ +\xb3Y\x06\x87\xae\x97^\xbaxA\xba\xae\x1b6M\xf3\ +\xfe\xd6?\xfb\x1f\xe9\xfb\x01\xfd\x9c\xd6\xcao\xa8\xd4\xb1\ +\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01\x5c\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0c\x00\x00\x00\x0c\x08\x06\x00\x00\x00Vu\x5c\xe7\ +\x00\x00\x01#IDAT(\x91m\x90?(\x84\x01\ +\x18\xc6\x7f\xef\xe7\x9b.\x03\xc9\xec\x06\x8aA\xc8`P\ +$\xebe0\xd8t\x03\x83\xc5`30;\x93U\xf9\ +su\x06\x8b\xc5\x22euJ1*\x97l\xca \x94\ +\xae\xfcI\xfd,\xdf\xe9K\x9e\xf1\xe9\xfd=\xcf\xd3\x0b\ +\x99\xd4.\xb5\xa2\xde\xa97\xea\xadZW\xcbjB^\ +\xea\x88\xdaP\xb7\xd5\xc9\x9c_T\xab\xea\x89Z\xc8'\ +7\xd4!u\x8d\x7f\xa4\xae\xaa5\x80P7\x80\x01\xe0\ +\x1c\x98\x02\x8e\x80\xb3\x88x\xf8\x03\xdd\x03s)0\x03\ +\x8cEDS\x058\x05Jj\x118\x88\x88[\xb5\x1b\ +\xa8\x03\xb3)@D4[I\x11\xf1\x08\xec\xa8)\xb0\ +\xac\xf6\x03\x83@\x15XJ\x80\xb6\x5cs\x9a\x03\xbf#\ +b\x0b(\x01_\xc0\x07\xf0\x91\x00\xcfY=@\xaaF\ +\xb6\xb9S]\x07\x8e\x81v`\x02\xb8\x0e\xb5\x0c\xcc\x02\ ++\x999\x0c\xbc\x00\xef\xc0nD\xbcf\xe0<0\x8e\ +\x9a\xa8\x97jM\x9dV7\xd5\xbe\xdcw:\xd4\x0bu\ +\x11\xa0U_\x00\xb6\x81\x1e`\x0f\x18\x02\xde\xb2\xdd\x0b\ +@%\x22\xf6\x7f\x81\x5c\xdah6\xaf\x17\xf8\x04\xae\x80\ +\xc3\x88xj\xdd\xfc\x00\xa7\xf6\xbd\x96\x10\xb6\xbf\xd9\x00\ +\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01\xd0\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x14\x00\x00\x00\x10\x08\x06\x00\x00\x00\x16\x18_\x1b\ +\x00\x00\x01\x97IDAT8\x8d\xad\xd4\xcf\x8bOQ\ +\x18\xc7\xf1\xd7w\x9aIJ\x8a\xac\xfc\xc8ld$\x0b\ +\xd33ca!ij\xa2\x99\xd9XY\xda\xd9Q\x9a\ +\x85\xc2\x1f )Jb\xa9l\xa7(EJ\x84,\x1e\ +\xc2\x86\x155\x89\x05\x9b\xafh\xfcfq\xcf\x9d\xb9\xa6\ +kL\x8dO\xdd\xee\xe9~\xde\xcf\xe7\xdc{\xcfsN\ +GQf\xae\xc55L\xe39n\xe0nD\xfc\xd2P\ +fn\xc38\x02\x1bq'\x22\x8e\xd4~O\x81\x86q\ +\x00\x83\x05\x1a\xc4\x15\xbc\xc8\xcc\xbd\x85\xd9\x93\x99\x0f\xf0\ +\x0c\x93X\x81\x01\xec\xca\xcc-\x7f\x04\x96\xb0\xa3e|\ +6\x22F#b\x1d\x0e\xe2tf>\xc4-|\xc1>\ +\xac\x89\x88\x11\xbc\xc4v\x9c\x9c\x0d\xcc\xcc{\x18\xc6X\ +y\xf6\xa96#\xe2>Na\x07ND\xc4\xee\x88\xb8\ +\x1e\x11\xdf\x0a\xf2\x1dO1\x9a\x99\x1b\xea7\xdc\x89\x9b\ +xW\xa0\x1a\xae\xf5\xa3\xdc/k\xd7\x13\x5c\xc2tf\ +\x1e\xee\xf9\x0b\xd4Tw\x11\xccq\xcc\xa0\x7f1\x81\xff\ +TD|\xc6W\xe6\x16\xe5\xbf\xa9-pI\x93\xb4\x15\ +\xaf\x5cJ}o\x0b\xb4?3\xfb0\x15\x11\xef\xd1i\ +\x9a\x99\xb9\x1a#\xd8\x8a~<^(\xb0\x8b!U\xf3\ +\x9e\xc9\xccc\xf8P\xbcU\x999\xa9j\xf6e\xf8\xa8\ +Z\xd9\x99f@'3\x7f\xe2*\xa6\xcc\xb5H\x9fj\ +\x07\x8c\x95\xe2Mx\x8d\xb7\xb8\xad\xea\xbd:hya\ +\xce\xe3b/.\xe0\x10&Z>\xbf\xa9\xf5\xe5\x1aZ\ +\x80y\xd3\x81\xcc\xdc\x5cfjj@\xb5;\xe6\xff\x96\ +\x09\xd5\x894_\xdd\x88x\xd5i1f\x95\x99\xe3\xaa\ +\xa3\xaa\x0e}\x14\x11\xe7\x16\xaa\xf9\x0d\xa0\xcdx<3\ +\xa5\x8a\xf0\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01X\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0f\x00\x00\x00\x10\x08\x06\x00\x00\x00\xc9V%\x04\ +\x00\x00\x01\x1fIDAT(\x91\x95\xd0\xbf\xab\xcfQ\ +\x1c\xc7\xf1\xc7\xe7v\xb8r\x19X\x94\x1feq\x07\x85\ +\xd4{`0\xf9\x03\x84R\x18\xac\x06\x832Q\xca\xbf\ +`Q\x06\xfe\x03\x0c\xba\x7f\xc3]^\x0b\x912(%\ +E\x08I_\xe12\xdcs\xeb\x9b\xe9x\xd6\xbbsz\ +\x9d\xf7\xb3\xf7\xe9=%\xd9\x84\x078l\x8c\xaf\xb8W\ +U\xb7\xa7$\x87\xf0tP\x9cg\xd7\x02\xde\xe3\xe7\x7f\ +\x8a\xcf\xf1i\x82$\xcb88(~\xc1jU\xcdZ\ +\x0f\x1a>\x0f\xcak\xd8\x86\xd9\x94\xe4\x12n\xe0\xc5\xa0\ +<\xe1(\xce5\x9c\xc0\xf5\xaaz8(Kr\x19\xa7\ +\x1b^\xe2T\x92\xb5Aw\x09WpkJ\xb2\xb5\x7f\ +{\xef\xa0\xfc\x1d+U\xb5\xd2\xf0\xabO\xff0(\xff\ +\xb1\xbeq\x0b\xb8\x8a\x0b\xd6\x171\xc2\x22\xee$9\xd3\ +\xb0\x8c\xbbU\xf5hP\x96\xe4\x1b\x8e5\xac\xe2Z\x92\ +#\x83\xeev\x9c\xc7\xd9\x86\xfb\xf8\x88\xfd\xff4\xed\xc0\ +\x01<\xc1\x8f\xb9\xfc\x0d\x8eW\xd5\xeb)\xc9nl\xee\ +\x0f\xfbp\xb3\xdf\xb7`'\xde\xe17\x1e\xf7\xda`\xd6\ +p\x11{z\xb0\x88\xb7s\x0d\xaf\xfa\xb9\x84\x93\xbd6\ +x\xf6\x17\xf1zO\xd5\x8bA\xa4\xa9\x00\x00\x00\x00I\ +END\xaeB`\x82\ +\x00\x00\x01\x0a\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x08\x00\x00\x00\x0d\x08\x06\x00\x00\x00\x94\xc2/8\ +\x00\x00\x00\xd1IDAT\x18\x95]\xd1\xbf/\xc3a\ +\x10\xc7\xf1\x97'\xd5\xc9h\x11F\x83\xe8\x82\xa4\xb1\x96\ +\x8d\x8dAl\x9a\x0e\xfe\x83\xae\x1d\x18\xc4`\xa71\x1b\ +\x0c\x12\x8b\xc9`\xd3\xe1;t3h\x18-\x12\x93(\ +\xea\xc7\xe0\x9e4\xf5I\x9e\xdc=w\xef{\xee\xc9\xdd\ +XQ\x14B\xab8B\x05\x1d\xec\xe01Er\x06\x97\ +X\xc01^q\x81R)\x80\x06&\xd0\xc7\x1efq\ +\x8b\xad\x0c\xac\x87=\xc7s\x9c;l&T\xb1\x14@\ +\x17\xe5\xf0oPM\xd8\xc5x\x04\x9b\x86\xeaa*\xa1\ +\x15\xbd\xa1\x8d\x8f\xf0\xdf\xf0\x95\xf0\x84\x83H\x9c\x18\xd5\ +K\xfe\xe4!~\x02\xce\x9aF/\xcf\xe1\x1d\xfb\xff\xaa\ +\x17\xd1\xcd\xc0<\xceP\x8f\xfb$Vp\x9d[\xdcc\ +\x19\xdb\xf8F\x0d\x0f\xb8\xca/|b\xcd\xdf\x0eN1\ +\x87\x0d\x0c~\x01]'-R\x7f\xd2\xe3\xe9\x00\x00\x00\ +\x00IEND\xaeB`\x82\ +\x00\x00\x01~\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0f\x00\x00\x00\x10\x08\x06\x00\x00\x00\xc9V%\x04\ +\x00\x00\x01EIDAT(\x91\x85\xd2\xbbjVQ\ +\x14\x04\xe0/\x1a\xa3h\xe5\x05A\xd0\x17\x10\x04\x85\x05\ +\xa6P\x10D\xb0\xb5\xb0\xb2Jc\xa1\x9d\x85\x8d\x01\xb1\ +\x15\x1b\x0b\x11\x0b\xf1\x15\x22v\xa9,l\x84)R\x05\ +\x84\x08\x0a\x81\x88\x22\xa8` x\x89\xc5\xd9\x07~\x0f\ +\xffe`\xc3\xda\xb3Xkf\x0f[\x92\x0fIN\x1b\ +A\x92\x85$\x17\xcd\xc0\x5c\x92]\x5c\xc5\xbb\xc6\xed\xc3\ +S\x5c\xc6\xc3V\x8f\xc3v?\xbc\x85\x13\xb3\x94\x06x\ +\xb9\xa7\x15\xd7q\xb8\x9d#x\x81\xbf\xb89\xc2\x0f\xcf\ +\x0dIv\x93\x9c\x1d]\x99d.\xc9\xc9Y\xd2\xbd\xed\ +Gx\x82E|\xc27\x5c\xc2\xca\x14\xee\xf5X\xe5!\ +\x92\x1cL\xf2|\xe8\xa6W\xbe\xa5\x0bm\x1c\x16\xb0\x8c\ +3\xcd\xc12\xbeb\xab\x1f^k!L\xc21\x1c\xc2\ +\x0e>\xeb\xc2\x5c\x9do\xcd\xa5\xaaZ\x9bb{/\xee\ +\xe1qU}\x1f\xda\xbe\x80\xb7\xd8\x8f?m\xf3\x01l\ +O\xe2\xaa\xeag\xaf|\x05\x1fq\x0e_\xf0C\x97\xe8\ +\xea\x14\xeeU?\xbcRU\x9bIvp\x17\xf7\xabj\ +\xbd\xf56G^\xf0\x1f\xd7\xdb~\x80_\xb8\xad\xfb\xa6\ +\x1bx\x86\xdf\x93r\xc0\xfb^y\x11Gq\xbc\xddO\ +\xe1Z[8\x09o\xe6\xdb[\xefT\xd5z\x92\xf3\xba\ +\xdf\xb6TU\x1bS\x06\xc1?\xb7?\x88\x1a\xfe<\x0d\ +\xb2\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x02\xce\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x17\x00\x00\x00\x13\x08\x06\x00\x00\x00{\xbb\x96\xb6\ +\x00\x00\x02\x95IDAT8\x8du\xd5]\x88\x96U\ +\x10\x07\xf0\xdf\xbe\xec\xa6\xb5R\x86\x19\x15Kx\x11F\ +B\x118\xb1\x98e\x94PT\x0a\xf6\xa9\x90\x10^I\ +Y$\xacE7\x19!D]\xa4E\x1f.\xa1\x88\x22\ +\xde\x88X\x04]\xecEEA\x9f'D\x12\x17\xb2\x94\ +\xa4\x15\xc2\xb0\xb7R\xa3\x0f\xb2\x8b3k\x8f\xcf\xbe\x0e\ +\x1c\x9e\xe7\x9c\x99\xf9\xcf\xccyf\xfeO\x9f\x96\x94R\ +\xfa\xf1>\x02\xfb\xf0G\xae\xd58\x91f}8\x93\xcf\ +\x95X\x86\x19\xf8\x02\x9b\xf0\x0bt\xda\xe0X\x88\xe9\x98\ +\x85c\xb8\x17\x0f\xe2\xd1\xd4Ok\xd8n\xc5\x0e\xdc\x8f\ +\x1b\xf0\x0c>\xc7\xec\xf3\x81_\x8a\xc3\x11q\x06\xefd\ +\x860\x13\x17\xe3\x82<{\x00\xabR\xf7\x0fn\xc6s\ +\x98\x8b7\xce\x07>\x81\xab!\x22\xf6`Nf5\x8c\ +\x058\x95vO4|\xf6\xe2\x086\xa3\x8b\x870\xb7\ +\x17\xf8A\x5c_J\x19\xc8\x00Gq\x00_\xe3'\xfc\ +\x9b\xd5-j\xf8\xbc\x95\xcf\x93\xd8\xae~\x8b\x15S\xc0\ +#\xe2T\x02-n\x1c\xaf\xc1\x8f\xf86\xf7\x8b\x1aU\ +\xef\xc3G\xad*\xe0\xb6\xbe&p)e:\xe6\xe3i\ +\x5c\x93\x80Wa\x00\xa3\xd8\x95\xc0kqK\xba\x8d\xab\ +w<\x99\xfdL\xb5[\x8eu\x12t\xb8\x94\xb2;\xc1\ +\xd6c?\x86\xf02\xfe\xc6\xe3\x11\xf1\x1a\x8e'\xd8p\ +#\xa7\xebpQc\xdf\xc5o\xb8\xac\xbf\x942\x82\xc7\ +\xb0\x01\xab\x22\xe2d\x06\x1c\xc4\x8b\xf8!\x22>l8\ +\x1f\xc4\x96\xf4\xa1\xde\xf3\x16\xe7J\x17C\xfdx\x01C\ +\x11\xd1m\x19l\xc6\x93\xb8\xd5Ty\x1e\x0f\xab\xb3\xb0\ +-\xc1\xdar\xa2\xa36\xfd\x86R\xca%-\xe5\xedj\ +\xdb\xdd\xd9\xc3\xf18F\xd4\xfe~\xb5\x87~\x16&\xfa\ +q\x9fz%\xdf\x97R\xc60\x96\x01GR7ZJ\ +\xd9\x16\x11\x13-\x80\x1d\xea@\x1dn\x9d_\x8eA\x8c\ +\x9f\xed\x96\xcc\xfcn\xb5\x1b\xeeR\x87g\x5c\xe5\x8c/\ +\xf1\xba\xda\xa2\xa7{d\xda\x94%x\x0f#}\xbd\xb4\ +\xa5\x94\xad\xf8\x14\xef\xe2\x0a<\x8bO\xd4\x1e\xee\xe2/\ +\xdc\x84\x1b\xf1\x9d\xda\xe7\x9341\xaa\x92\xdc\xbc)C\ +TJyD%\xaaC\x11\xf1sD\x1c\xc0SX\x9a\ +k0M/\xc4\xdb\xf8\x00\x1b\xf3lHe\xc9\xcf0\ +\xdei\x01_\x8b\x9d*Aml\xa8\xba\xf8\x1dwd\ +\xd6\xf01v\xe7\xfbZ\xbc\xa4\x12\xdd@&3\x85\xb8\ +~U\xb9\x1b\x8ef\xc0\x8e:\x81\x83x\x13W6\xec\ +W\xe2\x95\x0c\xbeN\xe5\x94%\xf8Jn\xda\xd7\xb2<\ +#/\xce,v\xaa\x1c\xbe,\x03O\xc3\x9fm?\xff\ +\xff@\xceJ/V\x1cS)w\x13\xbe\xc9uOD\ +LV\xd4\x0bX\x1b\x18\xfe\x03:\x81\xbf\x95\xfd\x1fR\ +q\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01]\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0e\x00\x00\x00\x0e\x08\x06\x00\x00\x00\x1fH-\xd1\ +\x00\x00\x01$IDAT(\x91\x9d\xd2!K\xa4a\ +\x14\xc5\xf1\xdf\xbcc\x90\xc5\xb5\xd8\xd7\xb22i\xda\xfd\ +\x00b\xd02A6\xca&\xd3\xb2U\x90A\xfc\x00&\ +\x8b\xb8[D\x10\xd4\x22\x82\xc5f\xb5\xb8\xb7\x88\x96\x0d\ +\xe6M\xc2*\x83\x82\x08\x1a\xe6\x1dy}w4\xeci\ +\x0f\xf7\xfc9\xf7\x1e\x1e\x99\xf9\xcd\x7f\xa8\x91\x99W8\ +\x88\x88\xee{\xc6\xcc\x1c\xc5\x0c:X.pQ\x0e\xd6\ +\xde\x00\xda\x99y\x84k\x1cc*\x22z\x05\x94i\x8f\ +o\xc0\x97\xf8\x88\x0f\xe5{\x17\x8a\xc14\x22V\xf1w\ +\x08\xdc\xc14np\x8f\xc3W`\x09\xafU\xe1\xccl\ +c\x1f\xa7\xf8\x8c\xa5\x88\xe8\xd1/\xe7(\x22\xe6kw\ +u\xd1*\x93~\xe1kDC\xc7x\x17\xfa*\x00\xe6\ +KG\x079=z\xde\xaek\xf8{\x85\x5c\xa3S\x0b\ +(C\x22!\x1c\xc1ry\x9e\x91\x17_~.\xb0\x89\ +\xf5\x8b+#\xe7.\x94\xcd\xa69c\x9d\x1d@()\ +\x9b\x14vJ\xc0\xd9{\x06\xbf\xaf\x80m\xd3\xbe\xdab\ +\xad\x07\xa8z\xbd~ \x02\xcd\xf2\xbb\xa1f\x89}\x89\ +\x8e\x14\x19\x22\x96\x04\xfe\xa8\x94\xe7\x97\xb76\x1f\x1e\x88\ +@\xdc(\xd6\xcaw=\xdd6N\x00\xc3@\x09\x9d\x1b\ +\x14\xfajV\x80Z.\xbf\xf7\x15\xef\x94\x80\x0d\xb50\ +,\x81\xd7\x0c\x81[\xe8\xec\xe9\x00\x09\xe0%`(\x99\ +J\x93/\x14Y_\xf3:&`7\xednC\xc0\xc2\ +VAo>\xda\xdeZ\x07H\xa6\xd2\xa03h\x1e\xa2\ +?\xc7aX\xb9DD\xf9\xf8\xaf?]\xe7\xfa\xd7\x9f\ +\xdb\xbe\xf4\xad\x14\xf19~\xac\x94\xa2\xaf\xdfF\x98_\ +\x1f\xc6\xcc)k(e\x9dp!\xa0\xcb\x1e\xaf\x8a\x10\ +d\x0b\xbdv\xbd\xf2\xe7\x22\xe6\x81#\xb9B/\xe3\x13\ +\x93\xb6?\x1aPT\x03\xd2\xb1C\xf1\xe2\xf8\xc4\xa4\x07\ +\x9cg\xb7p\xb5[\x8c\x8dOL\xce\x1aR\x05\xb4\xf3\ +6@W\xc8\xfb\x11\xb0O\xed{\xe6\x0b#mH\x8c\ +\x00\x0fBs\xb1\xc0\xf9n\xb6\xbb\x9bp\xc9\xee\x13\xf0\ +\xeeWh4\xea\x1b\xae\x1b\xfb\x18\x1dN%\xb3a\xc2\ +\x9c\xee\x11\xf0-0\x80~v\x934\x97\xec\xdf\x1bU\ +5\xb4\xb3\xda\xfaP\xa2\xdf\x8c\xdb^u\x99`E\xbc\ +\xe7F\xce\x8c\x8eqj\xf8,\xdd\xdd)\x84\xb3\x9b\xba\ +\xa5R(\xd9\xe0\xde\xec\x0c\x99l\x9e\x9eb\x1f\x8e\xe3\ +\xea\xa7O)\xa4\x94T\xca\xf7\x00\xe8\x1f\x18\xc2q\x1c\ +\x84\x10\xbe\xd7I)Y\xf5\xaa\xccLO\xb10w\x97\ +g\xf8_\xe1\x1f\x16\x8f\x0dW\xeaa@l\x00\x00\x00\ +%tEXtdate:create\ +\x002015-12-18T14:2\ +7:00+00:003\x90\xe8\xec\x00\x00\ +\x00%tEXtdate:modif\ +y\x002015-12-18T14:\ +27:00+00:00B\xcdPP\x00\ +\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01\xa9\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0f\x00\x00\x00\x0e\x08\x06\x00\x00\x00\xf0\x8aF\xef\ +\x00\x00\x01pIDAT(\x91}\xd2\xbbk\x94Q\ +\x14\x04\xf0\xdf.A\x22\xd8\x88O\xb0\xf0Q\xf9\x8a\xa8\ +\x1c\x9bhaa\x1b%\x01\x11\x8b\xfc\x01\x06A1+\ +\x096Z\x88HH\x0am\x04\x03*ha\xe3\xa3\xb3\ +\x08\x98*\x12\xe5@\x1a1\x08V\x0a\x8a\x06\x82b*\ +\x1bS\xec\xfd`\xf7#\xe4\xb4wf\xce\xcc\x9c\xdb\xb0\ +\xc6d\xe6~\xdc\xc1!\xbc\xc3XD\xfc\xaa\xe3\x1a5\ +R?n\xe2\x046w<\xfd\xc4\x5c\x11\xf9\xd2E\xce\ +\xcc\xb3h\xe1\x186\xad\xe5\xa6\xcc2>\xe0VD\xbc\ +od\xe63\x0ca\xe3:\xa4\xfa\xfc\xc5\xedj\xf30\ +\xae\xe10z\xd6!\xfd\xc1|\xd9<_\x01\xdf\xe2\x22\ +\xbea7\xfat\xf7\xb1\xac]\xdc\x06|\xc5Ghf\ +\xe6,\x16\xf1\x19\x17\xb4s\xdf\xc0',\xe15NF\ +\xc4\x00\x86\xb1\x05?2\xf3IO\xb1q\x14\xc7\xb1'\ +\x22\x16q73\xa7\xb0-\x22\xbew88\x82\x83X\ +\xc1\x5c\x95\xb9\x17\xafp\xaaX\x1a\x89\x88\x85\x8a\x91\x99\ +\xe70\x89\xed\x98\x8e\x88\x1642s\x1c\xa3%\xcb%\ +\x9c\xc6\xf5\x92\xff)\xae\xe0\xbf\xf6)\x9b\x98(\x9ac\ +M\x0c\xa2\x17/\xb1\x10\x11\x13\xd8\x81\xc7\xa5\xc4\x91\x88\ +\xd8\x1b\x11/0S\xca\xdd\x89\xf3\x95\xed\x03x\xa8}\ +\xaa\x07\xe5\x14\xff:lo\xc5=\x0c\xe0\x0d.G\xc4\ +R\xfd{\xee\xc34\x02\x8fp\x1fS8S\x9c]\x8d\ +\x88\xdf\x15\xbe\x8b\xdc!\xb2\xab\x88\xf4\xe39Z\x11\xb1\ +R\xc7\xad\x02\xcc\x87tf \xe3\x97\xea\x00\x00\x00\x00\ +IEND\xaeB`\x82\ +\x00\x00\x01\x04\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x08\x00\x00\x00\x0d\x08\x06\x00\x00\x00\x94\xc2/8\ +\x00\x00\x00\xcbIDAT\x18\x95]\xd0!K\x83a\ +\x14\xc5\xf1\xdf\x1e\xa7\xc5j\x19[\xb1\xc9\x92\x22\xab\x82\ +\xc1\xb0\xa8\xc1l\xda\x17\x10\xeb`\x03\x0d~\x82\x81\xb2\ +:0\x18\xd6V\xdc\xa2\xe1\x05WDP\xd1\xb8\xe2\x07\ +\x105\x18\xde\xfb\xe0\xf0\x94{9\xfc9\x97{*E\ +Q\xc0&\xae\xb0\x87G\x9c\xe2\x0e\x12\xaa\xb8\xc57\x06\ +\xd8\xc6\x18\x8d\x0c\x1c\x87\xd9C\x1f\x9fXG'\x03G\ +x\xc2=>p\xa3\xd4A\x06Z\x98\x86\xb9\x86y\xec\ +\xbbh%\xd4\xf0\xeaOg1W\xd1IX\x89\xbb\xf0\ +\x15\xdf\x08\xaf\x9b\xe2\xee\xb2\x06\x01^`\x91\xf0\x8c\xfa\ +\x12\xb0\xc09.E\x07\x0f\xd8\xf9\x97\xd2\xcfK\xc2\x04\ +\xfb\xd8\x08\xef\x04#4s\xc2\x04o\x119\xc3\x10\xef\ +x\xc9\x09?8\xc4\x16\xae\x95\x85\xb5\x95\xd5\xfb\x05\x08\ +|+}\x8e\x949\xf5\x00\x00\x00\x00IEND\xae\ +B`\x82\ +\x00\x00\x06\x1d\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ +\x00\x00\x00 cHRM\x00\x00z&\x00\x00\x80\x84\ +\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00u0\x00\x00\xea`\ +\x00\x00:\x98\x00\x00\x17p\x9c\xbaQ<\x00\x00\x00\x06\ +bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ +\x00\x09oFFs\x00\x00\x01\x00\x00\x00\x00\x00\x00|\ +]\xbdz\x00\x00\x00\x09pHYs\x00\x00\x0b\x12\x00\ +\x00\x0b\x12\x01\xd2\xdd~\xfc\x00\x00\x00\x07tIME\ +\x07\xdf\x0c\x12\x0e\x1b\x00\xb3\xf4\x90\xdf\x00\x00\x00\x09v\ +pAg\x00\x00\x02`\x00\x00\x00 \x00\x1f=\x87\xd8\ +\x00\x00\x04\xe2IDATX\xc3\xed\x97YlTU\ +\x18\x80\xbf\xdb\xb9C;3]fa\xe8\x02\xb4@\x99\ +.\xd0R*\xb4\x104b\xc2\xea\x86\x18\x97 \xea\x83\ +F4\xfaf4F_\x5c\xde$\xf2\xa0\x0f&FE\ +\xe2\x83\x01#\xa6\x88@@)E\x81\xcaRZ\xbaP\ +\xbaP\xa4\xdbl\x1d\x0b\x85v\x98i;\xbd>\xdcs\ +\x87)\x9d\xa5`|\xd2?\xb99\xe7\xfc\xe7\xfc\xe7\xff\ +\xce\xb9\xff\xf9\xcf\xbd\xf0_\x17\xe9^\x0d\x93S\x0cX\ +\xac3\x99\x91\x9c\x82N\x96\x19\x1f\x1b%\x18\x08\xf0\xd7\ +\x80\x9bP(\xf4\xef\x00\xd8\xecY\xcc\xce\x9d\x8f}V\ +6\xf6\xac\xd91\xc7\x0dx\x9c\xf8\xbc.\xdc\xfd\xbdx\ +\x5c\xbd\xff\x1c \xddleaa\x09\x05\x8b\xca4\xd5\ +\xeb\xc0\x9b\x80#\xca\xf03\xc0\x0f\xc0\x1e\xa0\xbf\xf7j\ +\x17\xed\x17\xeb\xf1y\xdd\xf7\x06`\xb6\xd8\xd8\xb0i\x0b\ +RR\x12\xc0W\xc0f \x1d\x98\x00\xde\x07N\x01)\ +b\xae\x5c\xe0\x9b\x08\xf3s\xc0c\x80\xf7\xf7_\x7f\xc6\ +\xd9w\xf5\xee\x00\xcc\x16\x1b\x1b7o\x05\xb0\x00>\xe0\ +i\xa0J\xeb\xbf\xe5\x1f\xc1`4\x85\xc7\x8f\x8f\x8f!\ +\xcbz\xadY\x00\xb4\x8b\xfas\xc0\x9e\xdf~\xd9\x8f\xab\ +\xbf{\x92\x8f\xa4x\x00y\x0b\x0a\xb5j\x0fP\x01T\ +\xdd\xb8>\xa8\xe9\xca\x0dF\xd3v\xe08\xd0\x08\x9c\x96\ +e\xfd\x0e`\x0e@(\x14\xea\x10\x0b<\x09\xec\x06^\ +Z\xbd~\x136{\xd6\xf4v\xc0:3\x93\xf5\x8f?\ +\x0b\xf02\xf09`\x08\x06\x03$'\xa7d\x02M\xc0\ +\xac8\xec\xe7\x81\xe5\x11\xed\xb3b\x019\xed\x17/\xb8\ +\x1a\xce\x9eH\xbc\x03s\xf3\xf2\xb5\xea\x87@\x99p\x0e\ +\xe0N\xe0\x1c`\x19\xa0\x88\xd7\x00P)\xcao\x1dE\ +\xa5\x98\xd2\xd2\x13\x03dXl\x88\x09\xe6\x02\x1dMu\ +\xb5Z\xd7\xa7L_\x0e\x00f\xcd9\xb0.I\xa7\xc3\ +>+'1@\xce\xdcy\x00\xcf\x00-\xa0\x9emW\ +_7\xa8\xc7\xef\xebi\x028\x80\x8fD\xfd\x0bM\x99\ +\x9a\x9e\x11\x1f\xc0f\xcf\xd4\xaa\xaf\x01}\x8a\xa2pc\ +\xe8\x1a\xe7jk\xb89t\x0d`\x1b\xb0e\x9a\x10/\ +\x88r4\xacQ\x94D;\x10\x8e\xcdl\xa0\x5c\x92$\ +\xd22,\xf8GnRsd\x1fW:[\x01\xbe\x17\ +\x03\xb7'\x00\xb0\x8a2\x9c:\x83\xc1@|\x00\xb1\xfd\ +\x002\xf0\xaa\xd7\xdd\xaf\xad\x1c\xff\xc80gOVS\ +sd\x1f\x97\xdbZ\x00\xde\x05\xd6\xc4\x01xO\x94o\ +\x01]\xa0\xbe\xce\x98\x00\x16\x9b\x9d\xc5e\x15\xa0\x1e=\ +\x80\xfd\x91\x06\x9ax\x9c\xbd\xd4\xfdQC\xed\xf1\xc3\x00\ +\xc7\x80w\xa28\xf7\x00\x1f\xa3&\xb2\xd5\xc0\x06\x9f\xd7\ +\xc5\xf5A_l\x809\xb9\xe1\xe3\xf7\x06\xf0\x0a\x80\xbb\ +\xbf'\xe6\xf2z\xfe\xec\xe4Rs=\xc0'\xc0:\xc0\ +\x1f\xd1]!\xcaZ\xd4\x14\xdd\xd5T\x7fz\x92\xbd|\ +\xe7\x84\xb2^\x1f\xd9\xdc\xa9(\x0a\xa3\xa3A\xe2Ic\ +\xdd)<\xce\x1e*\x1fX{\xd4hJ5E\x19R\ +\x04\x14{\x5c}x]}\x93:\xa6\xec\xc0\xc4\xe4\xbb\ +\xfc\xb2$I\xdc\xff\xd0F\x8c\xa6\xb4\xb8\x10ng/\ +\x87\x7f\xda\xcd\x89\xea\x03(\xb7\xa3\xfcm \x84\x88\xea\ +\x96\x863S\xec\xa6\x00\xb8o\xdf\xdf\x0f\x02\xf9\x80\x92\ +n\xb6\xe2(.%\x91\x8c\x06\x03\xd8\xecYH\x92d\ +A\xcd\x84\x1f\x00:\x80\xeaC?\x12-\x96\xa6\x00x\ +\x9c\xbd4\xab\xa4'\x22\xf5#\xc37\x13\x02\x00\xcc_\ +X\x0c\xf0\x99h\xa6\xf9G\x869zpoT\xe7\x10\ +%\x06\x00|\x93\x07\x8f\x03\xa4\x18\x8c\x94\x96\xaf\x00\xa0\ +\xb3\xad\x99\xc0-\xff\x14\xbb\x0c\x8bM\xbb\x9e\x9f\xd7\xec\ +N\x1e;\xc8\xa0\xcf\x1b\x138*\xc0\x80\xd7\xa5UO\ +\x03+\x01J\x96V\x86\xfb\x0d\xc6TZ.\x9c\xc1?\ +2|\xdb\xb9\xd9J\xee\xbc\x85\x8c\x8f\x8d!\xeb\xf5\xdf\ +\x09\x08R\xd3\xccq\x01\xa2&\xa2\x89P\x88+\x1d\xad\ +\x00O\x09\x95\x22\x9e\x10\xf0\xf0\x82\x82E8\x8a\x96\x00\ +`\xb1\xdaYr\xdfJ6n\xde\xca\xe2\xa5\x95\xc8z\ +\xfd*\xa0\x5c\xcc]\x90=;7\xee+\x8by\x19\xb5\ +_l@Q\x14'j\x04k\xcf#\xc0!`g^\ +~!\xa5\xe5+\xd8\xf0\xc4\x16\x16\x95UX$I\xda\ +. O\x01%b\x9a]\xf3\x1d\xc5\xe8d9&@\ +\xdcO\xb2\x0c\xb3\x15{f\x0e\x06\xa3\x89\xa4$\x1d\xc5\ +K\x96i\xbbQ\xad(\xcaZI\x92@M\xb1;\x80\ +\x00\xf0\x22\xb0W\x98\x97\x00\xcd\x80Ts\xb8\x0a\xcf\x1d\ +\xe7?n\x0ch2t}\x90!\xf1\x09\x96\xb7\xa0 \ +\xb2k\x8d$I_\xa2\xde\x8a\x00\xfb\x80'\x01.5\ +\x9d'\x10\xf0\x93_X\xd2\x92\x9ea\x91n\x0c]c\ +\xc0\xe3\x8a\xe9#.@\xa4\x0cx\x5c\x8c\x8f\x8d\x22\xeb\ +g\xecB\x8d\x8dm\xa8A\xfa(0\xd8\xd1\xda\xc8\xd5\ +\xae\xb6p\xc0u_\xe9\xc0QTJg[3\x13\x13\ +\xb1\x7fT\xee\xea\xc7\xa4l\xf9*\x1cE\xa5\xc8\xfa\x19\ +a]wW;]\x9d\xadSR\xect\xe5\xae\x7f\xcd\ +dY\x8f=3\x1b\x9dNf\xc0\xeb\x22\x18\xb8uO\ +\x8e\xff\x17M\xfe\x06<\xc9\x9b\xa3b\xcb\x06=\x00\x00\ +\x00%tEXtdate:creat\ +e\x002015-12-18T14:\ +27:00+00:003\x90\xe8\xec\x00\ +\x00\x00%tEXtdate:modi\ +fy\x002015-12-18T14\ +:27:00+00:00B\xcdPP\ +\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01Z\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0e\x00\x00\x00\x11\x08\x06\x00\x00\x00\xed\xc8\x9d\x9f\ +\x00\x00\x01!IDAT(\x91\xc5\xd3\xbf+\xc5Q\ +\x18\xc7\xf1\xd7\xe5\x86\xe4\x12\x8b\xd1j5\xca\x8f.!\ +\xe4\x0fP\xc4\xceD\x06e\x91\x12\x7f\x81\xcd \x19d\ +\xb0\xc8d\x91\xc1f\xfe\xda\xc8b\x10I\xa9\x9b\x9f\xc3\ +9\xd7\x8f\xd3\xa5L>u\x86\xf3<\xe7\xfd\x9c\xf3\x9c\ +>O.\xcb\xb2\x02\x96\xd1\xe0S\x8d\xa8\xf6]\xb5\xa8\ +/o\xf2x\xc0\x0e\x0ep\x85M\xdc\xe35\x01\x1fQ\ +\xc2\x14\x86\xf21x\x86N\x1c\xa2\x1d\x0b\x15@\x98A\ +\x11\xc5\xaa/\xc1Kt\xa3\x03\xbb\xa8K\xa0E\xcc\xa3\ +\x17YU\x92\xbc\xc30\x9ep\x84\x96\x18_\xc5$z\ +pQ\xee1U\x09\x13X\xc3)N\xe2+\x8a\xb8)\ +\x1f\xaa\x04\xc2[|\xda\x05\xc6\xd1/|\xd8\x87rY\ +\x96\xfd\xc0\xfe\xae\xb4\xc7\xff\x07g1\xf8Wp\x09s\ +\xd8\xc6t\x9a\xac\xf4\xab9\xaccD0D\x93\xe0\xa8\ +6\xac\xfctc\x0e\x1b\xa2\xadp\x8dstaL\xf0\ +q>\x05\xab\xb1%xu\x00\xb7_r\xd7\xe8C\xab\ +0\x0c\x852X\x83=\xc1b\xa3\xb1`s\xb2\x0a\xb1\ +\xe7\x17\x1c\xe7\x85\x19\xdb\xc7P,\xf2(\x8c\xdas\xd2\ +F)\xe6\xc0;/f:\x9b\xed\xa3J\x96\x00\x00\x00\ +\x00IEND\xaeB`\x82\ +\x00\x00\x02\x0c\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0e\x00\x00\x00\x0f\x08\x06\x00\x00\x00\xd4\x14\xfet\ +\x00\x00\x01\xd3IDAT(\x91\x8d\x90\xbfk\x13a\ +\x18\xc7?wy#I\x04\xc1HMq(m\x22\xa5\ +\x15/\x15DA\xed\xdda\x8d.\x82q\xabm\x97\x03\ +AJ]\x5cJ\x97\xc6?\xc2\x1f\xc5\xd1\xc9\xae\xea\x5c\ +\xa5w7\xd4\xa1\x08=\x0bbQ\xc8-\xd23%C\ +\x04\xf1\x02i\x1c\xbc\xf7\xed\x05\x1c|\xb6\xef\xe7\x9e\xe7\ +\x9e\xf7\xf9hc\xe5\xca7\x8ej\xd6\xb6\xccm\xd7\xf3\ +\x17\x81\xe5\x84m\xdb\x969\xebz\xfe4\xe0\xcbF\xf1\ +\xec\xe9\x93\xb2\x0c\xcf\xd7\xd6\x86\x01n\xd6j\xe3\xf5\xfa\ +\x9d2\xc0\x97\xbd\xbd_\xc1\xce\x0e\x86a\x14\x1f7V\ +\xd5\x06Q*\x95\x8e\x82\xc8\xea\x00\xb9|>#y\x14\ +E:\xff(\xd1\xe9t>\xcb\xa0\xebz\x07\xa0\x7fx\ +\xf8]\xf28\x8e\xbf\x02d2\x99V\x14E\xea\xa9\x9a\ +\xe38\xb7S?\xda\x02\xda@\x05\x98HX;\xe1'\ +\x80)\xb5\xd1\xf5\xfcG\xa9\xc1\xd0\xb6\xcc\xb6\xeb\xf9\x97\ +\x80\xfb\x09\xdb\xb5-s\xcb\xf5\xfcq\xe0\xa5\x1al4\ +Vk2\xac\xbfZ\x1f\x01v\xa7\xaf]\xbdx}f\ +\xa6\x06\x106\xc3\xa10l2991\xfcpiI\ +\x89\x14U\xc3P\xeb^\x17\xde\x08\x80\x93\xc5S\xc7\x14\ +\xef\xf7\xb3a\xd8D\x88\xac> \xb2\xdb\xed\x1e\xa8\x83\ +5-\xfe\xdb\xdb\xff)y\xaf\xd7kKqi\x91\x9a\ +\xe38\xf7R7\xbe\x03Z\xc09\xa0\x9a\xb0\x03`\x03\ +(\x02W\xd2r.\xa4\x06?\xd8\x96\xd9r=\xff4\ + y\xd3\xb6\xcc\x0d\xd7\xf3\xcf\x00J\xa4XX\x98_\ +\x91as\xd3}\x0f4\x0d\xe3\xfc\xadj\xb5\xba\x02\xd0\ +\xfa\xd1\xfa\x18\xc7\xbf_\x9c\xadTF\xe6\xe6\xe7\x94H\ +q\xb7^W\xeb\x82\xe0S\x0e`tt\xec\xb8\xe4A\ +\x10\xe4<\xcf#_(\x0c\x88\x14\xfcgi\x9a\x16\x0f\ +\x88t\x1c\xe7A\xea\xfb[`?\xb9\xefr\xc2\xf6\x13\ +>\x04\xdc\x90\x8d\x7f\x00\xbf\x16\xa5`bD\x0f\x81\x00\ +\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01}\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x14\x00\x00\x00\x10\x08\x06\x00\x00\x00\x16\x18_\x1b\ +\x00\x00\x01DIDAT8\x8d\xad\x93A+DQ\ +\x18\x86\x1f#\x8d\xc8l\x94\x14QC\x16\xa2,N\x83\ +\x8d\x8dbJI\x8d,X($\x14\x0b!)%;\ +eq\xcb\xf0c\xf8\x09\xde\x95\xad\x85\xb2\xb1\xb1`c\ +cc\xe1\xbb:\x9d\xb9\xf72x7_\xefw\xcf\xf7\ +\x9c\xf7\x9e\xd3\x81\x14I:\x95\x94K\xfb\x9e\xa6\xc4\x01\ +I\x1d\xc0!0\xf7/@`\x15h\x02v\xeb\x056\ +\x84\x0d\xfb\xcd\x07\xa0\xc7Z%\xe7\xdc\xed_\x12\xcex\ +0\x80\xbdz\x12&\x017\x03_\x91\xd4\xfb+\xa0\xa4\ +\x22P6\xfbl\xb5\x11\xd8\x0e\xd6\x95$u\xfd$\xe1\ +\x06\x9f\xe7\xfa\x0eL\x02\xaf\xd6_\x97T0\xd8(p\ +\x03D\x99@Iy`\xc5\xec\x95s\xee\xce\x1bj\x03\ +\xd6\x0cv\x0d\x14\x80yI\xd3Y\x09\x17\x80v\xe0\x0d\ +8\xb3^\xe4\xa5\xdc\xf7`\xb1\xaa\x92\x9a\xd3\x80\xf1e\ +\x5c8\xe7\x9e\x00\x9cs/^\xca\xce\x00\x06\xd0\x0f\x1c\ +\xd4\x00%\x8d\x00\xe3\x96\xe6<\x18\xf2S&\xe9HR\ +_\x98p\xcb\xea=p,i\xca6\x9a\x05.\x81\xc7\ +\x0c`\x1e\xa8~\x01\xed\xf6\x96\xcc;`\x07\x980?\ +\x06,\x02\xc3\x19@\x80\xb2\xa4J\x9cp\x19h\x09\x16\ +\x14\xad\x0e|\x03\xf2\x15Ij\xcdQ\xfb2\x00\x06\xad\ +\x0e\xd5\x01\xec\x06N>\x00o\x01\x5c\xe2;\xefo\xbb\ +\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01u\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0b\x00\x00\x00\x10\x08\x06\x00\x00\x00\xc0\xbd\x85~\ +\x00\x00\x01\xcfy\xce=g\xa2!\xc9n\x5c\xc3!\xfc\ +\xc2F\xfc\xc0\xcd\xaaz\xaf\x13\x1eO\xf22\xc9i\x1d\ +\x92\xcc%YJr\x0e&I\xb6c\x11g\xaaj\xc5\ +\x14\x92l\xc6s\x5c\x18p\x19\xb7\xd6\x13BU\xfd\xc6\ +%\xdc\x18p\x0cO\xd6\x13v\x05\xaf\xb1m\x06?\xab\ +j\xb5\xb5\xdc\x87\xa3X\xc6a\xec\xac\xaag\xad\xe6\xdb\ +\x80\x17IN\xb5\x87\x19\xdci\xe7>\xb64\x93\x03X\ +\x19\xf0\x10\x0bIf\xab\xea\x03\x96\xb0\x80/U\xf58\ +\xc9&\xdc\xc5\xed\xa1\xaa\xfe\xe2js\xd3\xfe\x7f\x11\xef\ +Z~\x1d\x0f\xaa\xea\xfb\xd0\x06x\x85!\xc9\x0e|\xc5\ +,\xc6\xed\x9c\xc0S\x18\xba\xa1\x971\xdfo!\xc9A\ +\xbc\xa9\xaa\xb5q\xa0\x11\x8fp\x0f[\xb1\x17Gp\x12\ +WF\xc1d\xcai\xb1\x85k\xed\xdeSUs#\xdf\ +;\xc3.\xec\xef\xf2?=9-\xfe\x88U\xfck]\ +7\xf4\xe40%>\x8f\xb7\xf8\x8cO8\xdb\x93\xff\x01\ +?\x07g7v\xdb#C\x00\x00\x00\x00IEND\ +\xaeB`\x82\ +\x00\x00\x01\x03\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x13\x00\x00\x00\x11\x08\x06\x00\x00\x00?\x98\x97\xc7\ +\x00\x00\x00\xcaIDAT8\x8d\xed\xd2=J\x03Q\ +\x14@\xe1od2\xa6\x11W\x90F\xec\xd2Y\x84\x08\ +.!\xe0\x02DHe\xe1n\xa6\xb2Nm'$\xa5\ +\x16YA\xba\xb1\xb0\xb1\xc8\x16\x04GL\x8a\x99\xe0\xf8\ +\x08f^\xb4\xf4\xc0\xe5\x15\x17\xce\xbb\x7fIQ\x14\x0f\ +\xb8\xd0\x9e\x15\xae1\x0b\x13)Fx\xc6\x02\x07;D\ +=\x0cq\xba-\x99\x22\xc1\x13n[Tu\x82\x17\x5c\ +\xa1\xdfp\x1ca\x99\xb6\x104\xf9\xa8\xdfA\x1d\xdf\xd8\ +\xd5V\xc8\xab\xaa\x930\xee\xf0\x16+\xfb\x89\xf7\xb0\xcd\ +.&\xf5o1\x9cQ\x0d\xaf\xc9\xa1j\xbb\xe3H\xd9\ +\x14\xf9\xb6\x05\x94\xb8\x8f\x94\x1d#\xff\xcb\x99Eo\xf3\ +_\xf6%\xfb\xfc\xa5\xa7D\xb69\x8dKt\x90\xed)\ +K6\xb29\xceq\xd3H\xae\xf6\xa8\xecq\x0d\xfe\xb1\ +\x1c=z\xc7\xebp\x00\x00\x00\x00IEND\xaeB\ +`\x82\ +\x00\x00\x01)\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x12\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1b\x06/\x5c\ +\x00\x00\x00\xf0IDAT8\x8d\xd5\xd2/K\x83Q\ +\x18\x05\xf0\xdf\xe6\x9a`0h1\xbb&\x13\xee'\x10\ +\xf4KX\xd4l\x10\xecV\x99E\xa3q3\x1b\xd4b\ +5\x18\x9f0\x0d6\x83`S\x04\xa3 \xce\xe0\x8b\xbc\ +\x5c\xdc\xdd\x16=\xed\xdc?\xe7\x1c\xce\xf34\x22bh\ +4\xeeRJ\x9d\xc2\xfd/\x9a\x93<\xfa\x9fB-l\ +\xd7\xf8:^0\xa8\xf8\xdb\xa4B\x8d:\x89\x88\x1e\x06\ +)\xa5\x93\xec|\x07\x07\x05\x9d\xe7V\xc9%\x22\xf6\xd1\ +\xc7\x1c\xeeG\x88\xb5\xd1\xcd\x13]c\x15\xef\x18b\x09\ +\x9f\xb8\xc40\xa5\xb4\xf5\x87Y\x07\x17y\xa2W\x9c\xe3\ +\x0a\x0b\xd8\xc5)\xe6\xb1RJ_\xec(\x22\x9a)\xa5\ +\xaf\x88\xd8\xc3qA\xe7)\x8f\xd9\xab>M\x8db\xd9\ +5\x83\xb1\x89\xc6M\xed\x01\x87\x15\xedOS\xf626\ +#\xe2\xc8\xcf\xd6\xcf\xe0\x0c\xb7x,\x99\xe6B\x1b\x98\ +\xc5G\xc5o\xd0\xc5\x22\xd6*\xf7\x1cm\xb2\xa9\x8d\xc2\ +$\x9b\xfd\x0d1\x8aV\x95q\x1f\x8eP\x00\x00\x00\x00\ +IEND\xaeB`\x82\ +\x00\x00\x02\x01\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x11\x00\x00\x00\x14\x08\x06\x00\x00\x00k\xa0\xd6I\ +\x00\x00\x01\xc8IDAT8\x8d}\xd3\xcf\x8b\xcdQ\ +\x18\xc7\xf1\xd7\xdc\xaeD\xc9(4\xca\x1d\x1b\x16\xc4\xea\ +\xa2\x98\x85\xc5\x10eAhJj\x84\xf8\x0b\xb0\xc4\xca\ +\x86\xa4&c\xd6\xb2\xa04%\xc9\x8f\xe4\xc7$\xc4\xbd\ ++3S\x16\x16D\x94_%\xc5\x8c\xb8\x16\xe7\xf96\ +\xdf\xf9\xba\xdf9\x9b\xcfs\xcey\xce\xfb<\xcfy\x9e\ +\xd3\xd1j\xb5\xb4\x1b\xcdf\x13\x06q\x1c?by\x1f\ +&p-\xef\xdb\xd1h4\xdaBb\xf4c>\x06b\ +~\x13\xfb\xf19\xefT)9\xbc+\xf4\x0a6\x87=\ +\x0b\xbf\x8a\x802\xc8\x06\x5c\xc5JLb\x07:\xb1\x08\ +\xbbs~\x8bq\x06\xab\xdbAN\xa2\x8a\x13\xb9\xb5\x87\ +x\x1f\xba0\xa2\xbb\x8e\xa7\x18+B6bk\xd8}\ +\x11\x0d\x5c\x08\xdd\x84\xb3x\x80\x1e\x0c\xa3U\x84d\xb7\ +\x7f\x88T\xb3\xf9eSo\xb1\x0d\x7f\xf07;\x94\x87\ +\xac\x8b(\xbec\x8b\xf4\x1e}X\x8e\x9f\x18\x0a\xbf/\ +\x91Rov>\x0f9\x1a:\x841\x5c\x8a\xfdc\xb1\ +>\x18\xe0\xf31\xdf\x89&\xb6g}\xd2\x8d\xd7\xb1\xd9\ +\x1d\xe9\xac\xc2\xa8T\xd6\xa5\xf8\x8a\xf5x\x9e\xbbx6\ +\xe6f\x91\x1c\x92*2\x1c\x00\x18\xc7]\xcc\x91\x9a\x0e\ +\xe6\xe1H\x0e2\x81o\x95\x08\xf9@.\xe4\xfc\xb8\x18\ +z0\xf4I\xf8N+HEj\xae\x1a\xde`\xa4\x00\ +\xb9\x15i\xac\xc1\x0a\xe9\x81\xefDZ\xd3 \xbda\xdf\ +@\xf17N\xc6!R\xc5\xe0\x14\x9e\xe5\x9d\xaa\xe8\x0a\ +\xfb\x95\xf6c<\xb4\x06\xf5z\xfd?\x87\x8a\xa9&\xaa\ +\x95@\x96\x85~,\xd9W\xc1\xbd\xb0\xfb\xb1\xa0\xb0\xbf\ +\x04{\xc2\xbe?\x13d\x04\x8f\xa5\xb4nc\xad\xf4\xed\ +{\xa4\x12wJ\x9f\xede\x19\xa4\x1a\xba\x17\x8f\xa4W\ +\x7fQ\xf0\x19\xc5\xe12@\x16\x09\xbc\x8b\x08\xce\xe1-\ +~K\x1d|Zj\x81O3A\xfe\x015\x8de<\ +wk\x85?\x00\x00\x00\x00IEND\xaeB`\x82\ +\ +\x00\x00\x01\xba\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x15\x00\x00\x00\x10\x08\x06\x00\x00\x00\xf9\xda4%\ +\x00\x00\x01\x81IDAT8\x8d\xa5\xd1M\x88\x8ea\ +\x14\xc6\xf1\xdf\xfb6>\x92\x92|Dij4\xa1\xec\ +8\x1b+5\xb1\x18f\xa1f\xc5J1\xc3DVR\ +H!+;\x14\xc9J\xd2lf\xe3\xabdg)\x97\ +\x94\xb2\xb1 e\xc9\xdeJ\x16\x9eW\x8f\xe9\x19\x93q\ +V\xe7>\xd7\xb9\xfe\xf7\xb9\xef\xd3\xb3\x84H\xd2\xc3.\ +L\xe0 f\xaa\xea\xcd@\xef/`\xda\x94d\xef_\ +\xb8}\x5c\xc0e\xacn\x03ah\x01\xd3q\xec\xc1\xcb\ +\x05\xf4Q\x8c\xe1\x1df\xbbn\x9c?e\x1fS\x18O\ +\xb2\xbdC_\x87\xc7\xb8\x86\xdd\xb87\xbf\xa7k\xd2q\ +\x0c7\xf9\x19\x9cj\x01\x97\xe3\x01\xceV\xd5\x93\xa6\xfc\ +m\xd1Iq\xb2\x95\x1fM\xb2\xb6\x01\xf6p\x15\x17\x07\ +\xc0$\x9b;\xfc\x7fB\x93\x0c\xe3@\xab\xb4\x0a\xd3M\ +^\xb8SUo[\xfaX\x92\x1d\x8bM:\xd5Q;\ +\x9dd\xa8\xaa^W\xd5\xe7$\xd3IF\x1am\x16\x97\ +\x92l\xe8\x84&\x19\xc2\xb1\x8e\xd7l\xc1d\xd33\x83\ +\xbb\xb8\x01U\xf5\x03\xd71\x97d\xe5\xc0\xd0kA'\ +1\xd7\x01\x85W\xb8\x8f\xdb\xad\xdaDU=k\xbc7\ +\xb1\x11\x87\xd1kC_`\xff\x02\xd0\xae\xf8\x88\x9dU\ +\xf5=\xc9\x1a|@\xf0\xb4\xdf\x00G\xb1\xef\x1f\x80\xb0\ +\x15\xe7\x9a|\x19>\xf9\xb5\xe4m\x83?\x9d\xd6\xfa\x8a\ +\x7f\x88\xf3IF\xaa\xea+\xae\xe0=FzIV\xe0\ +\x0b\xd6/\x01\x0a\x8f\xaa\xea\x10\xbf\x97=\xd6Kr\x04\ +\x0f\x97\x08\x1c\xc4xU=\x1f\x1c\xfa8\xf1\x9f@\xb8\ +\xd5\xbc\x18\xfc\x049\xa0\x7f\x85\xe9\xdfLL\x00\x00\x00\ +\x00IEND\xaeB`\x82\ +\x00\x00\x01\xb8\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x11\x00\x00\x00\x12\x08\x06\x00\x00\x00\xbd\xf95T\ +\x00\x00\x01\x7fIDAT8\x8d\x95\xd3;hTQ\ +\x10\xc6\xf1\xdf\xbd((jv;\x05+\xc1\xad\x04!\ +0\x8d\x8d\x16\x82\x88H*A\xd2\xd9\xf8\xa8\x04\x1b5\ +\x82\x9d\x06;\xed\xc4B\x10\x0b\xedl$\xb0`e\x93\ +\x22\x0e\xda\x1bS\x89/\x10\x82\x16\xc1g\xb4\xc8\x89\x5c\ +\xd7\xbb\xbbf\xe0p\x98\xef|\xe7\xcf\xcc\x1cN\x95\x99\ +\xbd\x88X\xb4\xc1\xc8\xccI\x5cA\xa7\xca\xcc{\x98\xc6\ +\x02nF\xc4\xa31\x97\x8f\xe1\x01:E\xba[ef\ +\x0f/\x1b\xbek\x11qu\x0ch\x19\xdd\x92\xee\xadK\ ++\xcbE\xf8\x85'c\x00w\x0a\xe03>F\xc4R\ +]\xce\xfa\x98\xc3\x0f\xf43\xb3;\x04p\x02\xa7\xf18\ +\x22:8\x05\xeb\x903\x11q\x1c\xfb\xf0\xd5\xda|\x06\ +\x01{p\x1f\xd7#b\x0a\x22b\x0e\xaa\x16\xf3v<\ +\xc3+\xac\xcf\xa6\xc6C\xcc\xb4\x0d\xfe\x1fH\x03\xf6\x0d\ +\x9b\x1b\xd2\xdb\x88\xd8\xdd\xe6\xad\xdb\xc4\x12+\x03\xf9\xf7\ +a\xc6Q\x90\xff\x8eQ\x90\xc1\xb3m\x1b\x82d\xe6I\ +\xac\xe2ic\xc9\xcc\x1bm\xfe\xb6\xd7\x99\xc5y\xf4\x22\ +\xe2]C\xdf\x82\xf7\xd6\x9e\xffhD\xac\xfeUIf\ +\x1e){\x1f\x971\xdd\x04@D|\xc1A\x1c\xc6R\ +f\xee\xcc\xcc\x99?\x95d\xe6\xa7R~\x17\xb7\x22\xe2\ +\xc2\xb0\xfe3\xf3\x1cn\x17\xffJD\xec\xa8\xca\x97~\ +^<\x1f\x22b\xd70@\x81L\xe05&\x8at\xa0\ +\xc6\xc5\x86gkf\x1e\x1a\x05\xc1$\x16\xf1\xb3\xe4\x97\ +\xaa\xcc\x9c\xc7\x1b\xccF\xc4\x8b1\x80fE\x9bp\x16\ +\xfb\x7f\x03$D\x8d]u\xca0\xbc\x00\x00\x00\x00I\ +END\xaeB`\x82\ +\x00\x00\x04\xdc\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a Set object hei\ +ght 1\x0a \ + \x0a \ + \x0a \ + \x0a \x0a \ + \x0a <\ +/g>\x0a\x0a\ +\x00\x00\x01h\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x0c\x00\x00\x00\x10\x08\x06\x00\x00\x00\x22a\x9e\x07\ +\x00\x00\x01/IDAT(\x91m\xd2!H\x9dQ\ +\x14\x07\xf0\xdf\xf7=\xf0\xa5!\x82\x93\x85\x85\x81E\x96\ +\x0c\x074mma\xb0\xf0\x94\x19\xb5Y\xc4<\x1cC\ +\x04\xe3\xb3\x8a\x0b\xa6\x85\x85\x19\x1e\x0c\x8b\xc50\xb4\xdd\ +&cF\x8b\x08o,\x092\xa6\x8c\x85w\x95\x8f\xbb\ +\xef\xa4{\xcf\xff\x9c\xff\xff\xfc\xcf\xbd\x95\x96H)=\ +\xc5\x17\xbc\x89\x88_M\xacn)\xee`\x0f\x17\xd8(\ +\xf1\xaaQ8\x89>z\xe8\xe0;\xa6\xf1\x0d[\x11q\ +\xf6\xa0\x90R\x9a\xc1\x0f,c\x1cG\x111\x8f)\xec\ +\xe3 \xa5\xb4\x04UJ\xa9\x9b\xe5\x9f4\x94\xb7#b\ +\xb3\xa1>\x85\x13\xf4j\xac`\xa2\x18\xf5\xb2y\x89\x88\ +!\xde\xe1C\x8d\xb7\xe8\x16\x0d\xbfK\xb38\xc4\x5c\xdd\ +\xc2\xde\x1a\x11q{o\xfa\xbc\x05\xaf\xcaD\xf6qS\ +\x1b\xed\xfc\xba\xc0\x1f\xb7\x90\xac\xe1\xa0\x8e\x88S\x1c\xe3\ +O\x03|V\xb0/b\x01;UN\x8c\xe13^\xe1\ +\x11\xce\xf2\xf99V3\xc1bD\x5cV\x05\xd3\x1c\xd6\ +\xf1\x1a?q\x87M\x0c\x22\xe2o\xab\xb9\xdc\xd8\xc7\x0b\ +|\x8a\x88\xdd&\xf6\xdf\xe7\xcb\xf1\x1e_\xf1\xb1\x04\xee\ +=\xcc\xe2\xa5\xd1\x9bt\x8d\xfeP'/b\x98G\xbb\ +\xc2\xe0\x1f\x06\xdbU3\x9dA\x19\x09\x00\x00\x00\x00I\ +END\xaeB`\x82\ +\x00\x00\x01O\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x13\x00\x00\x00\x12\x08\x06\x00\x00\x00\xb9\x0c\xe5i\ +\x00\x00\x01\x16IDAT8\x8d\xe5\xd4=/DA\ +\x14\xc6\xf1\xdf\xae\xcd\x8d\xd7H\xd8\x88\xc6&tJ\x89\ +B\x22\xdb)t(\x84\x8f\xe0\xa5\xf09T:\x85\x1a\ +A\xa3Pjt\xbe\x00\xb2\x05\xd1\xa0\x14B\x16\xbb\x89\ +(\xee\xacl.\xb9w\xb3JOu\xe6\xccs\xfe9\ +3g2\xb9J\xa5r\x8e)\xed\xe9\x18\xcb\xa8A\x01\ +\xe3a\xe3\x05\xcf(\xe2!\x050\x84W\xf4a\x01\x07\ +\x0d`!\x18\xea(a\x04\xdb(\xa7\xc0\xf6\xb0\x8f+\ +\x9c\x06\xe0!\x96\xf2\xc1P\xc5S\xabg\x0b\xba\xc5l\ +\xa8\x9b\xc7Q>\xdd\x9f\xa9kl\x84x\xae\xf0\x8b\xa1\ +\x88\xc5\x14@)\xb1\xde\xc5\x16\x06\x92\xb0{\x9ca\x06\ +\x11z\x9a\xf6\xde\xf0\x8eK\xf1}5\xf4)\x1e\xc8\x0f\ +\xd8#VS\xbaJU\x12\xd6\x8b\x15td\xd4U\xb1\ +\x83\x8f\xe6dr\x00\xa3Xo\xa1\x895Lfu\x06\ +w\xd8\xcc\x80\x95\x91K&\xff\xfa4\xfe3\xac\x0b\x83\ +m2\x22\xf1\x0f\xf2=\xcdH\xfc\xedT\xd1\x89\x9b\x0c\ +\xc00&\xc4\xef\xb1?\xd4\xd4\x0a\xb8\xc0t\x00F\xc1\ +<\xd6BG\xddMq\x1d'_\xecY0\xc6f\xd8\ +\x84\x84\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01/\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x08\x00\x00\x00\x10\x08\x06\x00\x00\x00+\x8a>}\ +\x00\x00\x00\xf6IDAT(\x91m\xd0=+\x86\x01\ +\x18\xc5\xf1\xdf\xf3\x84\xb2\xb0\x89\xf4$\xe4\xa5\x8c\xae\x12\ +\x8b\x922\xd9\x18\x14\xa3\x85\xd5\x8a\xcf`\x90\xcd\xcb&\ +e\x91\xcc>\xc0UH^V\x93A\x8aE\x8a\xb0\xdc\ +wn\xe5l\xd7\xe9\x7f\xaeN\xa7\xa6Pf\x0e\xe1\x1c\ +w\x98\x8e\x88/\xa8\xfb\xd5\x22v\xd0\x8e\xd1\xd2\xac\x02\ +\x9fh\xa0\x05\x1f\xa5\xd9T\x01\x0ep\x8dK\x5c\xfd\xf7\ +\xe1\x15\x0f\xb8\x8d\x88\xef\xff\x80u\x0cb&3;\xff\ +\x00\x99\xb9\x899\x1c\xe1\x19W\x999\x09\xb5\x02\xb8,\ +\xfa\xacb\x1e\xb3h\xc5[Sfv\xa1\x1f\x138\xc4\ +MD\xf4\x14\xc1\xaezQn\x19Cx/v\x00\x11\ +\xf1X+\x8f\xcc\x5c\xc2\x02\xc60\x1c\x11O\xd5\x92\x0d\ +\xac\xe1\x0c7\xb8\xc8\xcc6\xa8gf3\xb6\xd1\x8bc\ +\xec\xa3\x03\x93\xe5\x92\x1b\xf8\xc2xD\x85\x9fX\x87\xdbU\x95uc\x11\x97\xca~\x0f\ +L\xe2\x03:\xaa\xc8&p\x00\x9f\xb1'~o\xc5\xd1\ + \xf8\x1e\x1d\xec\xca\x93\xd5\xd1\x17\xfey\xf4\x87?\x8d\ +\xe7-\x84u\xdc\xc0\xee\xc8\xe9\xc7\xeb\x88\x1dA_\x0d\ +\xab\xf1\x02\x9bsU\x5c\xc1}\xcc\xa0\x177q(\xda\ +k\xc5(\xae\xe3G\x863\xd8\x88\xf7\xf8\xaa\x1dk\xd1\ +\x89_xT\x10\xef\xc5\x02F2I\xa7\x078\x8b\xb7\ +\xb9\xc4\x83\xb8\x16\xf6\x02\x8e\xe3[.\xe72\xb6b2\ +\x93\xf6iTZ\xceV\xec\x97\xa6\xda\x90\xb4|\x22\xad\ +\xc2>i\x00+8-i9\x90I\xda\xac\xa0\x81\xc1\ +hk\x18\x87\xb1\x1c\xb1\xf1x\x9f\xf5g\xff\xaeb\x1e\ +\xe7h_\x8d\xa6\xa4\xcdX\xb4\x9e?\x9f\x8b\xd1\xd2\x89\ + \xf9K\xe3<\xd9;\xec\x95v\xa8\xec\xd4j\xd2d\ +{\xf2dE\xe7\xb4\x05C\xd2\x94\x8ap\x17\x17\x8a\x02\ +Ed$]f\xc3\xde\x86\x0d\xd2\xad~\x91$(-\ +\xb9\x0a\xc3\xb8\x855x\xa9\xfd\xbc\xfe\x8bl\x08\xa7\xa2\ +\xca)l\xafJ\xfe\x0dZUP\xe3\xae\x0f\xedJ\x00\ +\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01\xfc\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x17\x00\x00\x00\x12\x08\x06\x00\x00\x00\xb0\xe7E\x13\ +\x00\x00\x01\xc3IDAT8\x8d\xad\xd4\xcd\x8bNa\ +\x1c\xc6\xf1\xcf\x19/y\x9d\x85\x97\x14)\xa4\xcc\xc8\x82\ +\xe6\x96\x14EY(Rd\xa3\x89$\x8d\x05\xe5e\x1a\ +ec\x83\xb2\xb2\x90\x8d\x8d\x05v\x96vVVV\xd7\ +)\x7f\x02\xf2\x0f\xc8[\x8a\x1e\x8b\xe7\x9czL\xe7\x99\ +\x19q\xd5\xa9\xfb\xba\xbb\x7f\xdf\xdf\xd5\xef>\xe7T\xbd\ +^\xcfBT\xd7u\x85\xb3\x18\xc7G|\xc6\xb3\x89\x89\ +\x89\xa1\x80\xc5\x0b\x22\xf7u\x1d\xebJ)\xb7 \xc9X\ +\xb3\xf7`X\xc1HUU\xba\x9e\xba\xaeo\xd7u\xbd\ +\xac\xf5\xf8\x81WIv'9\x84\xefX?\xac\xbe\xaa\ +*#]\x1d\x93\x8cb\xa6\x19\xc3\x1f*\xa5\xbc\xc5[\ +\x9c\xd4\x1f\xcfPu\xc2q\x0e\xab0\x9d\xa4=\xf3\x0b\ +cI.b\x0b\xde\xe9\xcf}\xe1\xf0$\x15.7v\ +\x07\x8e5\xeb\xc7\xf8\x86\x8d8\x82Q<\x9b\x0b\xdeu\ +\xa1\x8716\xe0o\xe2e)\xa5\x87\xa7\x1daV\x96\ +R\xbe.(9\xae\xcc\xf2\x07\x92\xec\x9d#\xe0\xda$\ +\x17\xe6\x85'\xd9\x8c\x13\x1d\xe7ff\x9d\xdb\xde6,\ +\xa5|\xc0\xd2$\xa7\xe7K~\x09\x8b:\xe0\xa7\x92l\ +m\xc1x\x8d'I\xda\xb1>\xc6T\x92\x83\x9d\xf0$\ +K1\xd5\x01\xd64\xbc\x91dg\x03\xde\x84]\xb8\xd1\ +\xa4\xef\xe1\x1a^$\x19o\x8b\xaa\x01\xf8$\x9e\x0f\x81\ +\xc3W\xfd\x0fg\xdd\xc0\xde7\xec,\xa5\xbco\x18\xf7\ +0\x893\xf898\x96\xcb\xe6\xd6\xcaY`X\x81G\ +\x03\xfe.\x96\xe0\x0d\x0e\x8e4\x1d\xf7`\xff<\xf0a\ +:\x9e\xe4d\xb3\xde\xd7\xc0a[\x9b|\xf6\xeb\xf7\xb7\ +z\x98du)\xe55\xb6\xe1\x0e6TI\xd6\xe8\xff\ +#\x96\xffc\x83\x07\xa5\x94\xe9\xd6$Y5\x82\xf3\xff\ +\x01\x0cW\x93\xecnM)\xe5\xcbb\xfd\xdb\xfd\xf4\x1f\ +\xe0p\x1fG[\xf3\x1b\xdb,\x90K\x95\x7f\xdek\x00\ +\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x01\xb8\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x15\x00\x00\x00\x0e\x08\x06\x00\x00\x00\xc0\x06W\xce\ +\x00\x00\x01\x7fIDAT8\x8d\x8d\xd3\xbdk\x15Q\ +\x10\xc6\xe1g\xaf\x17EQ\xd1\x18E\x04\xb1\xd2F\xcb\ +\x01k\x0b\xed\x82\xa4NH\xa1EH\xa7]\x08\xa2H\ +\x04M\xa5\x85 \x8a \xe2_ X(\x08\x8aU\xc0\ +)\xc5\xc2&\x85\xe2g\xe7G\x22\x92\x0f\x8b\xdd\xab\xeb\ +\x82\xbbw\xba3\xf3\xce\xef\xcc9\xe7=\x85Fd\xe6\ +fLa\x0cG\xb1\x17[\xd1\xaf$k\xf8\x81\x0fx\ +\x81k\x11\xb1Tg\x145\xd8q\xdc\xc11\xf4\x9a\x9b\ +u\xc4\x1bLF\xc4\xcb?\xd0\xcc\xbc\x8b\xb3\x0d\xe1\x0a\ +>\xe3#~V\xb9-\xd5\xe4\xfb\xb0\xa3\xa1\xdf\xc0\xa5\ +\x88\x98/2\xf3\x02\xe6k\xa0\x07\xb8\x12\x11o\xdbF\ +\xcb\xcc]\x98\xab\x86\x19\xa9\x95\xc6\x8b\xcc\xfc\x86\xedx\ +\x84\xd3\x11\xb1>\xd4\x81\xff\xdd`\x12\xd71\x8awE\ +fn`-\x22\xfa\xed\xad\x9d\xe0Sx\x82\xf5\xc1\x83\ +l\xca\xcc\xd7\x999\xd2\xd27h\x9e\xce\xccC\xb5\xf5\ +\x91\xcc|\x8e\xc7U\xaa(2sYi\x19\xf8\x8a=\ +\x11\xb1\xda\x00\xf5q\x15\xd3\xca\x07\x9a\xc5+,(m\ +W\x8f\xef}\xdc\xc6\xb9*\xb1\x13\x13\xb8_\xc1F\x95\ +6\x1b\xf3\xd7\xa7p\x11\xdb\xfes\x98\x87\xbd\x888\x8f\ +\xa7\xb5\xe4\xfe\x0a8\xa3\xb4\xd4x\x03\xa8\x05\xf8\x1eg\ +z\x10\x11'1\x83/\xaa\xab\x88\x88[\xb8\xa7\xf4_\ +W\xac\xe2\x19\x0eG\xc4\xaf\xa2K\x9d\x99\x07\xb1\x88\x03\ +\x8d\xd22\x96\x94_\xf5rD|\x1a\x14:\xa15\xf8\ +\x14n`7f#ba\xd8\xdea\xe073\xf3D\ +\x9b\xe67\xefB~?\xd8\xe7\x90V\x00\x00\x00\x00I\ +END\xaeB`\x82\ +\x00\x00\x02\x0e\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00\x12\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1b\x06/\x5c\ +\x00\x00\x01\xd5IDAT8\x8dm\xd3M\x88\xceQ\ +\x14\x06\xf0\xdf;\xc6\x82)\xb10jl|5\x92\x8f\ +1u\x94\x90\x95\x95\x9a\x94\x12j2\x09[\x1a6,\ +H6\xa3|\x84\xcd\xa4h\xb2\xd1\x88\x99\x85\xaf\x86\xa4\ +\x88l\x8ef\x8a\x15K\xb3@hR\x94\x91X\xbc\xd7\ +\xf4\xce\xbf9u\xeb\x9e\xf3\x9c\x9es\xces\xef\xa9e\ +\xe6\x1cl\xc3hD\x8c\x9b\xc12\xb3\x0fK\xd0\x1d\x11\ +\x7ff\xca\xa9e\xe6\x03\xcc\xc5j\xb4G\xc4Df\x1e\ +\xc2A\xec\x88\x88\x8f\x999\x86\xa5h-g/\x1eF\ +\xc4\xdb\xffDMh\xc7\x1d\xfc\xc5\xfc\x12_\x8cuh\ +)\xfe0\xceD\xc4/\xdc,\xd8\x93\xc6\x8e\x9a\xb0\x1f\ +[\xf1\x1c\x9b!\x22N\xe3\x18\x96\x97\xbce\xf8Z\xee\ +\xdf\xb0\x16\x9f\xa7\x11E\xc4\x8b\x88\xd8\x8d\xe38\x95\x99\ +\x07\x0a6\x80\xdd\xe5\xde\x82\xef\x99\xb9\x08kp\xf6\x7f\ +\xd1)\x8d\x1a\x9d\xcc\x5c\x88\x07\x18\x88\x88\xfe\xcc<\x82\ +\x11\x5cB?\x8e\xe2bD\xdc\xcd\xcc\x1az\x8b\xb6\xe7\ +\xa6\x11\x15\xb2\x16\xdc\xc6c\x5c+z\xacG'\x86\x22\ +b\xa4\xe4m\xc1u\x0caC\xad\x04[\xd1\x19\x11\x8f\ +\x8a?\x1b]\x111\xdcP`\x05\xc6\x11\xd8\xa4\xfee\ +6b\x14\xef\x9bK\xde\x05tg\xe63L\x94Xo\ +\xa5\xd9\x85\xb8\x887x\x8dA\xcc\xc3J\xdco$\x1a\ +\xc3\x95\x88\xf8\xdd\xd0EG\xe9b\x01\xda\xcah7*\ +\x05\xdeR\x11\xbb\xa2\xd5N\xec\xc2>u\x91g\xe1G\ +\x19\xe9\x9e\xfa\x83L\x15m\x9a\x81\xa0\x96\x99'\xd1\x83\ +\x9e\x92<\x88=\x11q\x19?q\xb5\xe83e\xd5\xe7\ +\xefB\x1f>\xa8\xaf\xc7d\x03\xf6\xb2h\xf4N\xfdC\ +\xdej\xdc\xbbf\xd3m;V\xa9/\xe7d\x05\x9b\xc0\ +y\xf5\xbd\xec\xa8.ou\xb4\xc3h\x8b\x88\xb1\xea\xc8\ +\xea{\xd8\x87/XQ\x05\xa7uT\xf4\xf84\x03\x09\ +\x9c\xc0\x19<\xc5\xab*\xf8\x0f\xdd\xdb\x9d,w\xcc\x1f\ +\xb4\x00\x00\x00\x00IEND\xaeB`\x82\ +\x00\x00\x04\xe9\ +\x89\ +PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\ +\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\ +\x00\x00\x00\x04gAMA\x00\x00\xb1\x8f\x0b\xfca\x05\ +\x00\x00\x00 cHRM\x00\x00z&\x00\x00\x80\x84\ +\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00u0\x00\x00\xea`\ +\x00\x00:\x98\x00\x00\x17p\x9c\xbaQ<\x00\x00\x00\x06\ +bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ +\x00\x09oFFs\x00\x00\x02\xc0\x00\x00\x00\x00\x00\x5c\ +]\xb9S\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\ +\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\ +\x07\xdf\x0c\x12\x0e\x1b\x0b$&IW\x00\x00\x00\x09v\ +pAg\x00\x00\x03@\x00\x00\x00 \x00\xbe\xe6\x89Z\ +\x00\x00\x03\xaeIDATX\xc3\xed\xd6]\x88UU\ +\x14\x07\xf0\xdf\x98\x8e\x96\xa8QIjA\x1f\x04BD\ +\xd0KQ\xf8\x12\x91\x11=\x04\xf5b'\x85\x8e\x88\x8d\ +i\xa7\x14\x02\xc3\xc2\xbe\xa0\xcc,8f\x1aa\xa7/\ +N\x11J\x05RP\xe1C\x1f\x86\x0f\xbe\x98(\x94\x1a\ +F\x94\x85Y\x98\xcd\x80:\xde\x1e\xf6\xbe\xce\x9e\xdb\xbd\ +3:MO\xb5\xe0p\xf7\xddg\x9d\xb5\xfe{}\xfc\ +\xf7\xe2\xbf.]\xcdE\x96\x17Oa\xc5(\xdb\x9f]\ +W\xe5'C)\x8cM\xd6+p\x02\x07p\xec\x1f:\ +\x9e\x82\x19\xb8\x1a\xa7\x0d\x00\x0e\xd4Uy\xc5h\x1c=\ +\xcb\x8b\x06N\x0e\xa7\xd7\x0a\xe0X\x07cS\xb0\x11\x1b\ +\xeb\xaa\xfch\x04``a\x8c\xcc\xea\xba*;\x02h\ +~\xb0\x16S\xf1\x07&`\x12n\xc7\xac,/\xde\xc5\ +\xf7Q\xb5\x0b\xefa:\xaeCo]\x95/%\xa6\x9a\ +5\xb6\x04k\x84\x14\x8f\xc9\xf2bU\x13D[\x00\x98\ +\x17\xd1\xf6cL\xb2\x7f!\xee\x8b\xc0\xc6\xe3\xec\x08\xe6\ +Z,C\x1fR\x00?dy\xb1\x00O\xa3;>\xcb\ +\xb0j\xc8\x08\xe0!\xcc\xc48\xfc\x88\x8bp\x17.\xc0\ +Y\xf1\x99\x8f\x8b\xb1\x07G\xe2i\x8f&6\x1e\x8b\xfa\ +\xeb\x92\xbdo1o\xd8\x14\xd4U\xf9J\x9b\xb4lC\ +\x95\xa4d\x0dz\xea\xaa\xdc\x89\x9dh\xad\x8d?\xf1L\ +\xf2\xffg\xcc\xaf\xabr{\xaa\xd4\xa9\x06\xee\xc0e\x06\ +\xaa\xb8\x0b\xbf\xe1~\xac\xc6\xb9B\x9b\xbd\x9d\xe5\xc5-\ +uU~\x99\xe5\xc5R\xf4\xd5U\xb9!\xcb\x8b\x1e<\ +\x19\xc16\x9d\xcf\xa9\xab\xf2\x8bV_\x9dR\xb0\x14\xb3\ +\xda\xec7\xe2\xd3\x1f\xd30\x11\x1fdy\xb1\x0c+\x85\ +\x22\xdb\x80\xf5-a\x9f\xdf\xce\xf9P\x006\xe2\xb3\xe8\ +,\x95cx\x1d7\x09\xc56\x1e\xe7\xc7P/\xc0\x8c\ +,/~O\xf4\x8f\x0a9\xdf\xde\xc1O\xc7\x1ax\xcd\ +\xd0\xf2j\x96\x17\xbdX+\x14\xdat\xbc)tLw\ +\xd4\xd9\x8f|(\xe7\x1d\x01dyq'.\xd5\x99\xc9\ +\xba\xf0\x0b\x1eF)\xb4\xe3\x84\xe4\xfd^<\x81\xc3\xc3\ +\x1c\xa4c\x0a\x1e\xd4\xbe\x06Ri\x08\xfd\xbcI\xe0\x8d\ +T\xd6\xc7\xc8\xcc\xc6\xae\x91\x00x\x03\xdb\x87\x89\xc0.\ +\xa1\x1d\x97\xb7y\xbfR`\xbfm#\x8a@;\x1eh\ +\x95,/\x16\x09\x0c\xd7\x94\xc3\x02qM\xc2d\xa10\ +\x17c\xdf\x19\x03\xc8\xf2b\xb9p\x95\xa6\x11\xe8\xc2q\ +!\xbf\x87\xf0\x82\xd0\x05\xf0\x13\xee\xc1%x\xd6\x00O\ +\xbc\x95\xe5\xc5\xaduU~~\xa6)\xb8M\xfb\x1a8\ +.\xe4\xbe;\xd9\xfbF\xa0\xdd\x0f\xe3\xbbE\x06\xc8j\ +\x22\xde\xcf\xf2ba]\x95\x9b\xcf\x04\xc0\xa3\xf1\x04M\ +\x1eh\xa0W`\xc7\xc7\x13\x00G1\x17\x07\xe3o\x1f\ +\xb6\xc6\xc8\xad\x13:\xe3<\xbc\x98\xe5Eo\xbb\xab<\ +\x1d\xc9\x1a\xd8SW\xe5\x95\x1d\xd2r\xaf\xc0rM\xd9\ +\x8f\xb9uU~\xd5F\x17z\x84V\x9c\x1a\xb7\x8f\x08\ +t<\x08D[\x00\x09\x0f4\x84Ke\x1c\x9e3\x90\ +\xf3}x$\x86\xf9S\xc9< \xcc\x077\xe0F\xec\ +\x10Z\xb2\xf9\xddA,I\xd31\x1c\x0f\xf4\x0b\xfc\xde\ +\x9d\x80=\x89\xcbQ\xc7\xbd9\x06\xe6\x81\x13\xd8\x1d\xed\ +.\xc6\xddx@ \xabnL\xc3\xcbY^l\x1en\ + i\xf2@\xbfPd\xd7\x08\x83\xc8^a.\x98\x8e\ +\x9b\xe3\xfb\xdd\x06\xcf\x03\xdf\x09\x83\x0bL\xab\xab\xf2\xf9\ +,/~\x8d\xe9\xeb\x12\xae\xf0S\x8eN\x8b\x07\xb2\xbc\ +\x98\x1c\xc3\xbb\xa5\xae\xca\x1dq{K\xa2\xf2\xb5d\x1e\ +\xc8\xf2\xe2\xfa\xb8lD{\x9b\xb2\xbc\x18\x8b\xee\xba*\ +7\xa5\xb6[\x01\x8cI\x8ahr\xb2\xdf\x10\xfa\xfbP\ +\x043\x94\x1c\xc19q}\xaa\xc6\xea\xaa|'\xda\x1d\ +$\xad\x00f\xc6b\x1c-\x19D\xe5i\xe8\xdb\x01\xc8\ +p\x95\xbf\xcf\x00#\x95\x06>\x1e\xc5\xc3\xfc/\xff\x8e\ +\xfc\x05\x99&,\xa0:Dw\xab\x00\x00\x00%tE\ +Xtdate:create\x0020\ +15-12-18T14:27:1\ +1+00:00YM\xe3\xc6\x00\x00\x00%t\ +EXtdate:modify\x002\ +015-12-18T14:27:\ +11+00:00(\x10[z\x00\x00\x00\x00\ +IEND\xaeB`\x82\ +\x00\x00\x04~\ +\x00\ +\x00\x01\x00\x01\x00\x10\x10\x00\x00\x00\x00 \x00h\x04\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00\x10\x00\x00\x00 \x00\x00\ +\x00\x01\x00 \x00\x00\x00\x00\x00@\x04\x00\x00\x13\x0b\x00\ +\x00\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +>\x00\x00\x00\xa1\x00\x00\x00\xd6\x00\x00\x00\xeb\x00\x00\x00\ +\xec\x00\x00\x00\xd8\x00\x00\x00\xa7\x00\x00\x00G\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x9e\x02\x022\ +\xff\x04\x10\x81\xff\x03#\xaa\xff\x02,\xbb\xff\x02-\xbc\ +\xff\x03$\xac\xff\x03\x12\x85\xff\x02\x028\xff\x00\x00\x00\ +\xac\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x0c\x00\x00\x00\xbb\x03\x08\x5c\xff\x02/\xcb\ +\xff\x00;\xca\xff\x00:\xca\xff\x009\xca\xff\x009\xca\ +\xff\x00:\xca\xff\x00;\xca\xff\x022\xcb\xff\x03\x09b\ +\xff\x00\x00\x00\xc9\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x98\x04\x08^\xff\x015\xca\xff\x00:\xca\ +\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ +\xff\x008\xca\xff\x008\xca\xff\x00:\xca\xff\x018\xca\ +\xff\x03\x09c\xff\x00\x00\x00\xaf\x00\x00\x00\x00\x00\x00\x00\ +0\x00\x00\x00\xfd\x02.\xc8\xff\x00:\xca\xff\x008\xca\ +\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ +\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x00:\xca\ +\xff\x022\xcb\xff\x02\x027\xff\x00\x00\x00E\x00\x00\x00\ +\x92\x04\x0eu\xff\x00:\xca\xff\x008\xca\xff\x008\xca\ +\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ +\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ +\xff\x00;\xca\xff\x03\x13\x87\xff\x00\x00\x00\xaa\x00\x00\x00\ +\xce\x02\x1f\xa4\xff\x00:\xc9\xff\x008\xc9\xff\x008\xca\ +\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ +\xff\x008\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ +\xff\x00:\xca\xff\x03%\xaf\xff\x00\x00\x00\xdc\x00\x00\x00\ +\xea\x02)\xb9\xff\x01:\xca\xff\x088\xd1\xff\x098\xd1\ +\xff\x078\xd0\xff\x058\xce\xff\x038\xcd\xff\x028\xcc\ +\xff\x018\xca\xff\x008\xca\xff\x008\xca\xff\x008\xca\ +\xff\x009\xca\xff\x02-\xbd\xff\x00\x00\x00\xed\x00\x00\x00\ +\xe8\x02)\xb8\xff\x0d:\xd6\xff\x139\xdb\xff\x118\xd9\ +\xff\x0f8\xd7\xff\x0d8\xd6\xff\x0b8\xd4\xff\x0a8\xd3\ +\xff\x088\xd1\xff\x068\xcf\xff\x048\xce\xff\x028\xcb\ +\xff\x009\xc9\xff\x02-\xbd\xff\x00\x00\x00\xed\x00\x00\x00\ +\xcb\x06\x1d\xa5\xff\x1b;\xe2\xff\x1a9\xe2\xff\x189\xe0\ +\xff\x179\xde\xff\x159\xdd\xff\x139\xdb\xff\x129\xda\ +\xff\x108\xd8\xff\x0e8\xd7\xff\x0c8\xd5\xff\x0a8\xd3\ +\xff\x01:\xcb\xff\x03$\xad\xff\x00\x00\x00\xd9\x00\x00\x00\ +\x8b\x07\x0dr\xff\x22;\xe8\xff\x22:\xe9\xff 9\xe7\ +\xff\x1e9\xe5\xff\x1c9\xe3\xff\x1b9\xe2\xff\x199\xe0\ +\xff\x179\xdf\xff\x169\xdd\xff\x149\xdc\xff\x139\xdb\ +\xff\x07;\xd0\xff\x03\x11\x82\xff\x00\x00\x00\xa3\x00\x00\x00\ +(\x00\x00\x00\xfa\x1c+\xd7\xff,;\xf2\xff(:\xee\ +\xff&:\xec\xff$:\xeb\xff#:\xe9\xff!:\xe7\ +\xff\x1f9\xe6\xff\x1d9\xe4\xff\x1c9\xe3\xff\x1b;\xe2\ +\xff\x090\xd1\xff\x02\x02/\xff\x00\x00\x00;\x00\x00\x00\ +\x00\x00\x00\x00\x88\x07\x08[\xff,5\xf1\xff3;\xf8\ +\xff.;\xf3\xff,:\xf1\xff*:\xf0\xff(:\xee\ +\xff':\xed\xff%:\xeb\xff&;\xec\xff\x1c6\xe3\ +\xff\x04\x08]\xff\x00\x00\x00\x9f\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x05\x00\x00\x00\xaa\x08\x08[\xff)+\xe2\ +\xff8;\xfc\xff7;\xfc\xff4;\xf9\xff2;\xf8\ +\xff1;\xf6\xff/;\xf5\xff#/\xe5\xff\x06\x08`\ +\xff\x00\x00\x00\xbb\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x88\x00\x00\x00\ +\xf6\x0e\x0ex\xff\x1e\x1f\xb8\xff)+\xda\xff)+\xdb\ +\xff\x1d!\xba\xff\x0e\x0f~\xff\x00\x00\x00\xfb\x00\x00\x00\ +\x96\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ ++\x00\x00\x00\x8a\x00\x00\x00\xc8\x00\x00\x00\xe7\x00\x00\x00\ +\xe8\x00\x00\x00\xcb\x00\x00\x00\x91\x00\x00\x003\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x0f\x00\ +\x00\xc0\x03\x00\x00\x80\x01\x00\x00\x80\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\ +\x00\x80\x01\x00\x00\xc0\x03\x00\x00\xf0\x0f\x00\x00\ +\x00\x00\x03?\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a source control\ + connected\x0a \x0a \ +\x0a \ + \x0a\x0a\ +\x00\x00\x03C\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a source control\ + - not setup\x0a \x0a \ + \x0a \x0a\x0a\ +\x00\x00\x04~\ +\x00\ +\x00\x01\x00\x01\x00\x10\x10\x00\x00\x00\x00 \x00h\x04\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00\x10\x00\x00\x00 \x00\x00\ +\x00\x01\x00 \x00\x00\x00\x00\x00@\x04\x00\x00\x13\x0b\x00\ +\x00\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x1a\x1c\ +>\x1c\x0f\x1b\xa1\x1c\x13\x1b\xd6\x1b\x1e\x1b\xeb\x19\x1d\x1a\ +\xec\x17\x0f\x17\xd8\x13\x05\x11\xa7\x0d\x09\x0cG\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00###\x0a#\x19\x22\x9e!$\x22\ +\xff\x18q!\xff\x0d\xb6\x1e\xff\x09\xd0\x1d\xff\x09\xd2\x1d\ +\xff\x0d\xba\x1f\xff\x16x \xff\x18!\x19\xff\x10\x05\x0f\ +\xac\x0f\x0f\x0f\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00%&%\x0c'\x1b&\xbb\x1fK$\xff\x09\xcd\x1d\ +\xff\x00\xfd\x19\xff\x00\xfb\x18\xff\x00\xf7\x18\xff\x00\xf6\x18\ +\xff\x00\xfa\x18\xff\x00\xff\x19\xff\x0a\xd7\x1f\xff\x18P\x1e\ +\xff\x12\x06\x11\xc9\x04\x05\x05\x13\x00\x00\x00\x00\x00\x00\x00\ +\x00-#,\x98\x22I&\xff\x03\xe6\x1a\xff\x00\xfb\x18\ +\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\ +\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf9\x18\xff\x05\xf1\x1c\ +\xff\x18P\x1e\xff\x11\x06\x11\xaf\x00\x00\x00\x00.,.\ +0+.+\xfd\x08\xc8\x1c\xff\x00\xfb\x18\xff\x00\xf0\x19\ +\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\ +\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xfa\x18\ +\xff\x09\xd7\x1e\xff\x19\x22\x1a\xff\x0c\x09\x0cE3&1\ +\x92\x1dk%\xff\x00\xfb\x18\xff\x00\xf0\x19\xff\x00\xf0\x18\ +\xff\x00\xf0\x18\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\ +\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\ +\xff\x00\xff\x19\xff\x16x \xff\x14\x07\x13\xaa3'2\ +\xce\x0f\xa5\x1f\xff\x00\xfc\x17\xff\x00\xf0\x17\xff\x01\xf0\x1a\ +\xff\x02\xf0\x1b\xff\x00\xf0\x19\xff\x00\xf0\x18\xff\x00\xf0\x18\ +\xff\x00\xf0\x18\xff\x00\xf0\x19\xff\x00\xf0\x19\xff\x00\xf0\x19\ +\xff\x00\xfa\x18\xff\x0c\xba\x1f\xff\x1a\x12\x19\xdc5/4\ +\xea\x07\xc2\x1a\xff\x03\xf9\x1b\xff!\xf27\xff%\xf2:\ +\xff\x1e\xf24\xff\x16\xf1-\xff\x0f\xf1&\xff\x08\xf0!\ +\xff\x04\xf0\x1c\xff\x01\xf0\x1a\xff\x00\xf0\x18\xff\x00\xf0\x18\ +\xff\x00\xf7\x18\xff\x08\xd1\x1d\xff\x1b\x1f\x1c\xed616\ +\xe8\x07\xc1\x1b\xff:\xfcO\xffT\xf5e\xffH\xf4Z\ +\xffA\xf4S\xff9\xf4M\xff1\xf3F\xff*\xf2?\ +\xff\x22\xf27\xff\x1a\xf10\xff\x12\xf1*\xff\x08\xf0 \ +\xff\x00\xf7\x17\xff\x08\xd0\x1d\xff\x1d \x1d\xed8.7\ +\xcb \xa1.\xffs\xff\x82\xffr\xf6\x80\xffi\xf6x\ +\xffb\xf6q\xffZ\xf6k\xffS\xf5d\xffL\xf5]\ +\xffD\xf4W\xff=\xf4P\xff6\xf3I\xff-\xf2A\ +\xff\x06\xfb\x1f\xff\x0b\xb5\x1d\xff \x17\x1f\xd9;2:\ +\x8b3i9\xff\x91\xff\x9d\xff\x95\xfa\x9f\xff\x8b\xf8\x96\ +\xff\x83\xf8\x8f\xff{\xf7\x88\xfft\xf7\x82\xffm\xf7{\ +\xffe\xf6t\xff^\xf6n\xffV\xf5g\xffS\xf5d\ +\xff\x1d\xfe5\xff\x13q\x1d\xff\x1f\x12\x1e\xa3><=\ +(262\xfa\x83\xc4\x8a\xff\xbf\xff\xc7\xff\xac\xfa\xb4\ +\xff\xa5\xfa\xae\xff\x9d\xf9\xa7\xff\x96\xf9\xa0\xff\x8e\xf9\x99\ +\xff\x87\xf8\x92\xff\x7f\xf7\x8c\xffx\xf7\x85\xfft\xff\x83\ +\xff(\xce9\xff\x1f' \xff!\x1e!;\x00\x00\x00\ +\x00>;>\x88DME\xff\xbd\xe3\xc2\xff\xdb\xff\xdf\ +\xff\xc7\xfd\xcc\xff\xbe\xfb\xc4\xff\xb6\xfb\xbe\xff\xaf\xfa\xb7\ +\xff\xa8\xfa\xb0\xff\xa1\xfa\xaa\xff\xa3\xff\xad\xffx\xeb\x84\ +\xff$M(\xff'\x1f&\x9f\x00\x00\x00\x00\x00\x00\x00\ +\x00<=<\x05979\xaaLPL\xff\xba\xc7\xbb\ +\xff\xf1\xff\xf4\xff\xee\xff\xf0\xff\xe2\xff\xe6\xff\xda\xff\xdf\ +\xff\xd5\xff\xda\xff\xcd\xff\xd3\xff\x9b\xd0\xa0\xff9M;\ +\xff#\x1d#\xbb\x0d\x0e\x0d\x0b\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00CCC\x04<;<\x889:9\ +\xf6lnl\xff\xa4\xa8\xa4\xff\xc3\xcb\xc4\xff\xc1\xcd\xc2\ +\xff\xa2\xb0\xa3\xffitj\xff333\xfb,'+\ +\x96$$$\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00BBB\ ++555\x8a111\xc8444\xe7333\ +\xe8-+-\xcb,*,\x911113\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x0f\x00\ +\x00\xc0\x03\x00\x00\x80\x01\x00\x00\x80\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\ +\x00\x80\x01\x00\x00\xc0\x03\x00\x00\xf0\x0f\x00\x00\ +\x00\x00\x03E\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a source control\ + - warning v2\x0a \x0a \ + \x0a \x0a\x0a\ +\x00\x00\x04~\ +\x00\ +\x00\x01\x00\x01\x00\x10\x10\x00\x00\x00\x00 \x00h\x04\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00\x10\x00\x00\x00 \x00\x00\ +\x00\x01\x00 \x00\x00\x00\x00\x00@\x04\x00\x00\x13\x0b\x00\ +\x00\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +>\x00\x00\x00\xa1\x00\x00\x00\xd6\x00\x00\x00\xeb\x00\x00\x00\ +\xec\x00\x00\x00\xd8\x00\x00\x00\xa7\x00\x00\x00G\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x9e\x0148\ +\xff\x02\x8c\x92\xff\x01\xbf\xc1\xff\x01\xd5\xd4\xff\x01\xd6\xd5\ +\xff\x01\xc2\xc3\xff\x01\x91\x97\xff\x01;@\xff\x00\x00\x00\ +\xac\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x0c\x00\x00\x00\xbb\x01bh\xff\x01\xe7\xe6\ +\xff\x00\xec\xe6\xff\x00\xec\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ +\xff\x00\xec\xe6\xff\x00\xec\xe6\xff\x01\xe8\xe6\xff\x01io\ +\xff\x00\x00\x00\xc9\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x98\x02cj\xff\x00\xea\xe6\xff\x00\xec\xe6\ +\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ +\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xec\xe6\xff\x01\xeb\xe6\ +\xff\x01jp\xff\x00\x00\x00\xaf\x00\x00\x00\x00\x00\x00\x00\ +0\x00\x00\x00\xfd\x01\xe4\xe4\xff\x00\xec\xe6\xff\x00\xeb\xe6\ +\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ +\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xec\xe6\ +\xff\x01\xe8\xe6\xff\x019>\xff\x00\x00\x00E\x00\x00\x00\ +\x92\x02~\x84\xff\x00\xec\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ +\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ +\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ +\xff\x00\xec\xe6\xff\x01\x93\x9a\xff\x00\x00\x00\xaa\x00\x00\x00\ +\xce\x02\xb7\xba\xff\x00\xec\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ +\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ +\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ +\xff\x00\xec\xe6\xff\x01\xc6\xc6\xff\x00\x00\x00\xdc\x00\x00\x00\ +\xea\x01\xd3\xd3\xff\x00\xec\xe6\xff\x04\xeb\xe9\xff\x04\xeb\xe9\ +\xff\x03\xeb\xe9\xff\x02\xeb\xe8\xff\x02\xeb\xe7\xff\x01\xeb\xe7\ +\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\xff\x00\xeb\xe6\ +\xff\x00\xeb\xe6\xff\x01\xd7\xd6\xff\x00\x00\x00\xed\x00\x00\x00\ +\xe8\x01\xd0\xd1\xff\x06\xec\xec\xff\x09\xeb\xee\xff\x08\xeb\xed\ +\xff\x07\xeb\xec\xff\x06\xeb\xeb\xff\x05\xeb\xeb\xff\x05\xeb\xea\ +\xff\x04\xeb\xe9\xff\x03\xeb\xe8\xff\x02\xeb\xe8\xff\x01\xeb\xe7\ +\xff\x00\xeb\xe6\xff\x01\xd7\xd6\xff\x00\x00\x00\xed\x00\x00\x00\ +\xcb\x03\xb4\xb9\xff\x0d\xec\xf1\xff\x0d\xeb\xf1\xff\x0c\xeb\xf0\ +\xff\x0b\xeb\xef\xff\x0a\xeb\xef\xff\x09\xeb\xee\xff\x08\xeb\xed\ +\xff\x07\xeb\xed\xff\x07\xeb\xec\xff\x06\xeb\xeb\xff\x05\xeb\xea\ +\xff\x01\xec\xe6\xff\x01\xc2\xc4\xff\x00\x00\x00\xd9\x00\x00\x00\ +\x8b\x03x\x7f\xff\x10\xec\xf4\xff\x10\xec\xf4\xff\x0f\xec\xf3\ +\xff\x0e\xec\xf3\xff\x0e\xeb\xf2\xff\x0d\xeb\xf1\xff\x0c\xeb\xf1\ +\xff\x0b\xeb\xf0\xff\x0a\xeb\xef\xff\x09\xeb\xee\xff\x09\xeb\xee\ +\xff\x03\xec\xe9\xff\x01\x8d\x93\xff\x00\x00\x00\xa3\x00\x00\x00\ +(\x00\x00\x00\xfa\x0d\xd9\xe5\xff\x15\xec\xf9\xff\x13\xec\xf7\ +\xff\x12\xec\xf6\xff\x11\xec\xf5\xff\x10\xec\xf5\xff\x10\xec\xf4\ +\xff\x0f\xec\xf3\xff\x0e\xeb\xf2\xff\x0d\xeb\xf2\xff\x0d\xec\xf1\ +\xff\x04\xe7\xe9\xff\x0115\xff\x00\x00\x00;\x00\x00\x00\ +\x00\x00\x00\x00\x88\x03^e\xff\x15\xe9\xf8\xff\x18\xec\xfb\ +\xff\x16\xec\xf9\xff\x15\xec\xf9\xff\x14\xec\xf8\xff\x13\xec\xf7\ +\xff\x12\xec\xf6\xff\x12\xec\xf6\xff\x12\xec\xf6\xff\x0d\xea\xf1\ +\xff\x02ci\xff\x00\x00\x00\x9f\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x05\x00\x00\x00\xaa\x03]d\xff\x13\xd9\xea\ +\xff\x1a\xec\xfe\xff\x1a\xec\xfd\xff\x19\xec\xfc\xff\x18\xec\xfb\ +\xff\x17\xec\xfb\xff\x17\xec\xfa\xff\x11\xe3\xf1\xff\x03cj\ +\xff\x00\x00\x00\xbb\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x88\x00\x00\x00\ +\xf6\x06w\x81\xff\x0e\xb2\xc0\xff\x13\xd1\xe2\xff\x13\xd2\xe2\ +\xff\x0e\xb6\xc3\xff\x07~\x88\xff\x00\x00\x00\xfb\x00\x00\x00\ +\x96\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ ++\x00\x00\x00\x8a\x00\x00\x00\xc8\x00\x00\x00\xe7\x00\x00\x00\ +\xe8\x00\x00\x00\xcb\x00\x00\x00\x91\x00\x00\x003\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x0f\x00\ +\x00\xc0\x03\x00\x00\x80\x01\x00\x00\x80\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\ +\x00\x80\x01\x00\x00\xc0\x03\x00\x00\xf0\x0f\x00\x00\ +\x00\x00\x04~\ +\x00\ +\x00\x01\x00\x01\x00\x10\x10\x00\x00\x01\x00 \x00h\x04\x00\ +\x00\x16\x00\x00\x00(\x00\x00\x00\x10\x00\x00\x00 \x00\x00\ +\x00\x01\x00 \x00\x00\x00\x00\x00@\x04\x00\x00\x13\x0b\x00\ +\x00\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00|||\ +>|||\xa1|||\xd6|||\xeb|||\ +\xec|||\xd8|||\xa7|||G\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00|||\x0a|||\x9e\x89\x89\x89\ +\xff\x9e\x9e\x9e\xff\xa8\xa8\xa8\xff\xac\xac\xac\xff\xad\xad\xad\ +\xff\xa9\xa9\xa9\xff\x9f\x9f\x9f\xff\x8b\x8b\x8b\xff|||\ +\xac|||\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00|||\x0c|||\xbb\x94\x94\x94\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\x96\x96\x96\ +\xff|||\xc9|||\x13\x00\x00\x00\x00\x00\x00\x00\ +\x00|||\x98\x95\x95\x95\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\x96\x96\x96\xff|||\xaf\x00\x00\x00\x00|||\ +0|||\xfd\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\x8a\x8a\x8a\xff|||E|||\ +\x92\x9b\x9b\x9b\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\x9f\x9f\x9f\xff|||\xaa|||\ +\xce\xa6\xa6\xa6\xff\xaf\xaf\xaf\xff\xaf\xaf\xaf\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\xaa\xaa\xaa\xff|||\xdc|||\ +\xea\xac\xac\xac\xff\xb0\xb0\xb0\xff\xb3\xb3\xb3\xff\xb4\xb4\xb4\ +\xff\xb3\xb3\xb3\xff\xb2\xb2\xb2\xff\xb1\xb1\xb1\xff\xb1\xb1\xb1\ +\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\xff\xb0\xb0\xb0\ +\xff\xb0\xb0\xb0\xff\xad\xad\xad\xff|||\xed|||\ +\xe8\xac\xac\xac\xff\xb6\xb6\xb6\xff\xb9\xb9\xb9\xff\xb8\xb8\xb8\ +\xff\xb7\xb7\xb7\xff\xb6\xb6\xb6\xff\xb5\xb5\xb5\xff\xb4\xb4\xb4\ +\xff\xb3\xb3\xb3\xff\xb2\xb2\xb2\xff\xb2\xb2\xb2\xff\xb0\xb0\xb0\ +\xff\xaf\xaf\xaf\xff\xad\xad\xad\xff|||\xed|||\ +\xcb\xa8\xa8\xa8\xff\xbd\xbd\xbd\xff\xbc\xbc\xbc\xff\xbb\xbb\xbb\ +\xff\xbb\xbb\xbb\xff\xba\xba\xba\xff\xb9\xb9\xb9\xff\xb8\xb8\xb8\ +\xff\xb7\xb7\xb7\xff\xb6\xb6\xb6\xff\xb5\xb5\xb5\xff\xb4\xb4\xb4\ +\xff\xb0\xb0\xb0\xff\xa9\xa9\xa9\xff|||\xd9|||\ +\x8b\x9b\x9b\x9b\xff\xc0\xc0\xc0\xff\xc0\xc0\xc0\xff\xbf\xbf\xbf\ +\xff\xbe\xbe\xbe\xff\xbd\xbd\xbd\xff\xbd\xbd\xbd\xff\xbc\xbc\xbc\ +\xff\xbb\xbb\xbb\xff\xba\xba\xba\xff\xb9\xb9\xb9\xff\xb9\xb9\xb9\ +\xff\xb3\xb3\xb3\xff\x9e\x9e\x9e\xff|||\xa3|||\ +(|||\xfa\xba\xba\xba\xff\xc5\xc5\xc5\xff\xc3\xc3\xc3\ +\xff\xc2\xc2\xc2\xff\xc1\xc1\xc1\xff\xc1\xc1\xc1\xff\xc0\xc0\xc0\ +\xff\xbf\xbf\xbf\xff\xbe\xbe\xbe\xff\xbd\xbd\xbd\xff\xbd\xbd\xbd\ +\xff\xb4\xb4\xb4\xff\x88\x88\x88\xff|||;\x00\x00\x00\ +\x00|||\x88\x95\x95\x95\xff\xc5\xc5\xc5\xff\xc8\xc8\xc8\ +\xff\xc6\xc6\xc6\xff\xc5\xc5\xc5\xff\xc4\xc4\xc4\xff\xc3\xc3\xc3\ +\xff\xc3\xc3\xc3\xff\xc2\xc2\xc2\xff\xc2\xc2\xc2\xff\xbd\xbd\xbd\ +\xff\x95\x95\x95\xff|||\x9f\x00\x00\x00\x00\x00\x00\x00\ +\x00|||\x05|||\xaa\x95\x95\x95\xff\xc0\xc0\xc0\ +\xff\xcb\xcb\xcb\xff\xca\xca\xca\xff\xc9\xc9\xc9\xff\xc8\xc8\xc8\ +\xff\xc7\xc7\xc7\xff\xc7\xc7\xc7\xff\xc0\xc0\xc0\xff\x96\x96\x96\ +\xff|||\xbb|||\x0b\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00|||\x04|||\x88|||\ +\xf6\x9e\x9e\x9e\xff\xb3\xb3\xb3\xff\xbe\xbe\xbe\xff\xbf\xbf\xbf\ +\xff\xb3\xb3\xb3\xff\xa0\xa0\xa0\xff|||\xfb|||\ +\x96|||\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00|||\ ++|||\x8a|||\xc8|||\xe7|||\ +\xe8|||\xcb|||\x91|||3\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x0f\x00\ +\x00\xc0\x03\x00\x00\x80\x01\x00\x00\x80\x01\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\ +\x00\x80\x01\x00\x00\xc0\x03\x00\x00\xf0\x0f\x00\x00\ +\x00\x00\x03=\ +<\ +?xml version=\x221.\ +0\x22 encoding=\x22UTF\ +-8\x22?>\x0a\x0a source control\ + error v2\x0a \x0a \x0a \ +\x0a\x0a\ +" + +qt_resource_name = b"\ +\x00\x0f\ +\x04T\x95'\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x000\x00.\x00p\x00n\x00g\ +\x00\x0f\ +\x04S\x95\xc7\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x005\x00.\x00p\x00n\x00g\ +\x00\x09\ +\x0a\xc5\xacG\ +\x00w\ +\x00a\x00t\x00e\x00r\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x06Z\x7fG\ +\x00p\ +\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x000\ +\x00.\x00p\x00n\x00g\ +\x00\x0f\ +\x04_\x95'\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x009\x00.\x00p\x00n\x00g\ +\x00\x16\ +\x0eE\x9e\x87\ +\x00e\ +\x00r\x00r\x00o\x00r\x00_\x00r\x00e\x00p\x00o\x00r\x00t\x00_\x00e\x00r\x00r\x00o\ +\x00r\x00.\x00s\x00v\x00g\ +\x00\x09\ +\x08\xbcm\xc2\ +\x00s\ +\x00t\x00a\x00t\x00u\x00s\x00b\x00a\x00r\ +\x00\x0f\ +\x04P\x95\xc7\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x004\x00.\x00p\x00n\x00g\ +\x00\x0f\ +\x04\x5c\x95'\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x008\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00\xf0&'\ +\x00e\ +\x00r\x00r\x00o\x00r\x00_\x00r\x00e\x00p\x00o\x00r\x00t\x00_\x00w\x00a\x00r\x00n\ +\x00i\x00n\x00g\x00.\x00s\x00v\x00g\ +\x00\x18\ +\x0c\x85t\xe7\ +\x00e\ +\x00r\x00r\x00o\x00r\x00_\x00r\x00e\x00p\x00o\x00r\x00t\x00_\x00c\x00o\x00m\x00m\ +\x00e\x00n\x00t\x00.\x00s\x00v\x00g\ +\x00\x0a\ +\x03\xd6;g\ +\x00M\ +\x00a\x00i\x00n\x00W\x00i\x00n\x00d\x00o\x00w\ +\x00\x0f\ +\x04U\x95\xc7\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x003\x00.\x00p\x00n\x00g\ +\x00\x09\ +\x0c\xe6\xbd#\ +\x00v\ +\x00i\x00e\x00w\x00p\x00a\x00n\x00e\x00s\ +\x00\x0f\ +\x04a\x95'\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x007\x00.\x00p\x00n\x00g\ +\x00\x07\ +\x0a\xc9\xa6S\ +\x00c\ +\x00u\x00r\x00s\x00o\x00r\x00s\ +\x00\x15\ +\x06S\x7fG\ +\x00p\ +\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x007\ +\x00.\x00p\x00n\x00g\ +\x00\x0f\ +\x04R\x95\xc7\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x002\x00.\x00p\x00n\x00g\ +\x00\x0f\ +\x04^\x95'\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x006\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x06P\x7fG\ +\x00p\ +\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x006\ +\x00.\x00p\x00n\x00g\ +\x00\x0f\ +\x04W\x95\xc7\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x001\x00.\x00p\x00n\x00g\ +\x00\x0f\ +\x04S\x95'\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x005\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x06a\x7fG\ +\x00p\ +\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x005\ +\x00.\x00p\x00n\x00g\ +\x00\x0f\ +\x04T\x95\xc7\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x000\x00.\x00p\x00n\x00g\ +\x00\x0f\ +\x04P\x95'\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x004\x00.\x00p\x00n\x00g\ +\x00\x03\ +\x00\x00x\xc3\ +\x00r\ +\x00e\x00s\ +\x00\x14\ +\x07\x22u\xc7\ +\x00a\ +\x00r\x00h\x00i\x00t\x00y\x00p\x00e\x00_\x00t\x00r\x00e\x00e\x00_\x000\x003\x00.\ +\x00p\x00n\x00g\ +\x00\x05\ +\x00O\xa6S\ +\x00I\ +\x00c\x00o\x00n\x00s\ +\x00\x15\ +\x06^\x7fG\ +\x00p\ +\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x004\ +\x00.\x00p\x00n\x00g\ +\x00\x0f\ +\x04U\x95'\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x003\x00.\x00p\x00n\x00g\ +\x00\x14\ +\x07!u\xc7\ +\x00a\ +\x00r\x00h\x00i\x00t\x00y\x00p\x00e\x00_\x00t\x00r\x00e\x00e\x00_\x000\x002\x00.\ +\x00p\x00n\x00g\ +\x00\x15\ +\x06_\x7fG\ +\x00p\ +\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x003\ +\x00.\x00p\x00n\x00g\ +\x00\x0b\ +\x0f\x08B\x1e\ +\x00A\ +\x00p\x00p\x00l\x00i\x00c\x00a\x00t\x00i\x00o\x00n\ +\x00\x0f\ +\x04R\x95'\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x002\x00.\x00p\x00n\x00g\ +\x00\x14\ +\x07(u\xc7\ +\x00a\ +\x00r\x00h\x00i\x00t\x00y\x00p\x00e\x00_\x00t\x00r\x00e\x00e\x00_\x000\x001\x00.\ +\x00p\x00n\x00g\ +\x00\x17\ +\x04\xc9\x5cG\ +\x00e\ +\x00r\x00r\x00o\x00r\x00_\x00r\x00e\x00p\x00o\x00r\x00t\x00_\x00h\x00e\x00l\x00p\ +\x00e\x00r\x00.\x00s\x00v\x00g\ +\x00\x0f\ +\x04a\x95\xc7\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x007\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x06\x5c\x7fG\ +\x00p\ +\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x002\ +\x00.\x00p\x00n\x00g\ +\x00\x0f\ +\x04W\x95'\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x005\x00_\x000\x001\x00.\x00p\x00n\x00g\ +\x00\x14\ +\x07'u\xc7\ +\x00a\ +\x00r\x00h\x00i\x00t\x00y\x00p\x00e\x00_\x00t\x00r\x00e\x00e\x00_\x000\x000\x00.\ +\x00p\x00n\x00g\ +\x00\x0f\ +\x04^\x95\xc7\ +\x00b\ +\x00m\x00p\x000\x000\x000\x000\x006\x00_\x000\x006\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x06]\x7fG\ +\x00p\ +\x00a\x00r\x00t\x00i\x00c\x00l\x00e\x00s\x00_\x00t\x00r\x00e\x00e\x00_\x000\x001\ +\x00.\x00p\x00n\x00g\ +\x00\x1c\ +\x0d\x96`\x07\ +\x00o\ +\x003\x00d\x00e\x00_\x00a\x00p\x00p\x00l\x00i\x00c\x00a\x00t\x00i\x00o\x00n\x00_\ +\x00r\x00e\x00v\x00e\x00r\x00s\x00e\x00.\x00s\x00v\x00g\ +\x00\x0f\ +\x0e\x0f\xf3\xff\ +\x00o\ +\x003\x00d\x00e\x00_\x00e\x00d\x00i\x00t\x00o\x00r\x00.\x00i\x00c\x00o\ +\x00\x14\ +\x0b\x1b&\xb6\ +\x00P\ +\x00a\x00d\x00l\x00o\x00c\x00k\x00_\x00D\x00i\x00s\x00a\x00b\x00l\x00e\x00d\x00.\ +\x00t\x00i\x00f\ +\x00\x17\ +\x0c\x9a\xdb\xc7\ +\x00l\ +\x00o\x00c\x00k\x00_\x00c\x00i\x00r\x00c\x00l\x00e\x00_\x00d\x00e\x00f\x00a\x00u\ +\x00l\x00t\x00.\x00s\x00v\x00g\ +\x00\x10\ +\x07T\xb1'\ +\x00D\ +\x00e\x00f\x00a\x00u\x00l\x00t\x00_\x00o\x00p\x00e\x00n\x00.\x00s\x00v\x00g\ +\x00\x19\ +\x0e\xd2\x13\xe7\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00H\x00a\x00n\x00d\x00l\x00e\x00_\x00M\x00o\x00d\x00i\ +\x00f\x00i\x00e\x00d\x00.\x00s\x00v\x00g\ +\x00\x0e\ +\x0b\xd8M\x87\ +\x00l\ +\x00a\x00y\x00e\x00r\x00_\x00i\x00c\x00o\x00n\x00.\x00s\x00v\x00g\ +\x00\x15\ +\x01\xaf\x1c'\ +\x00E\ +\x00n\x00t\x00i\x00t\x00y\x00_\x00N\x00o\x00t\x00_\x00A\x00c\x00t\x00i\x00v\x00e\ +\x00.\x00s\x00v\x00g\ +\x00\x19\ +\x05\xf2\xd2\x07\ +\x00v\ +\x00i\x00s\x00_\x00o\x00n\x00_\x00N\x00o\x00t\x00T\x00r\x00a\x00n\x00s\x00p\x00a\ +\x00r\x00e\x00n\x00t\x00.\x00s\x00v\x00g\ +\x00\x1c\ +\x05A\x11\x07\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00H\x00a\x00n\x00d\x00l\x00e\x00_\x00E\x00d\x00i\x00t\ +\x00o\x00r\x00_\x00O\x00n\x00l\x00y\x00.\x00s\x00v\x00g\ +\x00\x16\ +\x0c>\x8f\xc7\ +\x00v\ +\x00i\x00s\x00_\x00c\x00i\x00r\x00c\x00l\x00e\x00_\x00d\x00e\x00f\x00a\x00u\x00l\ +\x00t\x00.\x00s\x00v\x00g\ +\x00%\ +\x0f-\x08'\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00H\x00a\x00n\x00d\x00l\x00e\x00_\x00M\x00o\x00d\x00i\ +\x00f\x00i\x00e\x00d\x00_\x00E\x00d\x00i\x00t\x00o\x00r\x00_\x00O\x00n\x00l\x00y\ +\x00.\x00s\x00v\x00g\ +\x00\x0a\ +\x01\xb91\x87\ +\x00l\ +\x00o\x00c\x00k\x00e\x00d\x00.\x00s\x00v\x00g\ +\x00\x0f\ +\x05bA^\ +\x00E\ +\x00y\x00e\x00_\x00O\x00p\x00e\x00n\x00_\x00H\x00i\x00d\x00d\x00e\x00n\ +\x00\x1b\ +\x05K\x05V\ +\x00P\ +\x00a\x00d\x00l\x00o\x00c\x00k\x00_\x00P\x00a\x00r\x00t\x00i\x00a\x00l\x00_\x00E\ +\x00n\x00a\x00b\x00l\x00e\x00d\x00.\x00t\x00i\x00f\ +\x00\x0c\ +\x0f^26\ +\x00E\ +\x00y\x00e\x00_\x00O\x00p\x00e\x00n\x00.\x00t\x00i\x00f\ +\x00\x10\ +\x03\xcaZG\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00.\x00s\x00v\x00g\ +\x00\x16\ +\x06\x8e\x16\xc7\ +\x00E\ +\x00n\x00t\x00i\x00t\x00y\x00_\x00E\x00d\x00i\x00t\x00o\x00r\x00_\x00O\x00n\x00l\ +\x00y\x00.\x00s\x00v\x00g\ +\x00\x1b\ +\x04\xe2\x14'\ +\x00l\ +\x00o\x00c\x00k\x00_\x00c\x00i\x00r\x00c\x00l\x00e\x00_\x00t\x00r\x00a\x00n\x00s\ +\x00p\x00a\x00r\x00e\x00n\x00t\x00.\x00s\x00v\x00g\ +\x00\x0d\ +\x01m\xcf\x96\ +\x00E\ +\x00y\x00e\x00_\x00S\x00l\x00a\x00s\x00h\x00.\x00t\x00i\x00f\ +\x00\x14\ +\x0e\x00\x9e6\ +\x00E\ +\x00y\x00e\x00_\x00P\x00a\x00r\x00t\x00i\x00a\x00l\x00_\x00O\x00p\x00e\x00n\x00.\ +\x00t\x00i\x00f\ +\x00\x07\ +\x0c\xf8ZG\ +\x00E\ +\x00y\x00e\x00.\x00s\x00v\x00g\ +\x00\x14\ +\x07T)\xf6\ +\x00E\ +\x00y\x00e\x00_\x00S\x00l\x00a\x00s\x00h\x00_\x00H\x00i\x00d\x00d\x00e\x00n\x00.\ +\x00t\x00i\x00f\ +\x00\x1a\ +\x00\xe3\x5c\xa7\ +\x00v\ +\x00i\x00s\x00_\x00c\x00i\x00r\x00c\x00l\x00e\x00_\x00t\x00r\x00a\x00n\x00s\x00p\ +\x00a\x00r\x00e\x00n\x00t\x00.\x00s\x00v\x00g\ +\x00/\ +\x0a\xf8TG\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00M\x00o\x00d\x00i\ +\x00f\x00i\x00e\x00d\x00_\x00E\x00d\x00i\x00t\x00o\x00r\x00_\x00O\x00n\x00l\x00y\ +\x00_\x00U\x00n\x00s\x00a\x00v\x00a\x00b\x00l\x00e\x00.\x00s\x00v\x00g\ +\x00\x13\ +\x09+\x00\xf6\ +\x00P\ +\x00a\x00d\x00l\x00o\x00c\x00k\x00_\x00E\x00n\x00a\x00b\x00l\x00e\x00d\x00.\x00t\ +\x00i\x00f\ +\x00\x19\ +\x07,\xf6\x07\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00M\x00o\x00d\x00i\ +\x00f\x00i\x00e\x00d\x00.\x00s\x00v\x00g\ +\x00.\ +\x07\x84Qg\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00M\x00o\x00d\x00i\ +\x00f\x00i\x00e\x00d\x00_\x00N\x00o\x00t\x00_\x00A\x00c\x00t\x00i\x00v\x00e\x00_\ +\x00U\x00n\x00s\x00a\x00v\x00a\x00b\x00l\x00e\x00.\x00s\x00v\x00g\ +\x00%\ +\x08\xc2\x87g\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00M\x00o\x00d\x00i\ +\x00f\x00i\x00e\x00d\x00_\x00E\x00d\x00i\x00t\x00o\x00r\x00_\x00O\x00n\x00l\x00y\ +\x00.\x00s\x00v\x00g\ +\x00\x19\ +\x0e\x89\x90\x16\ +\x00P\ +\x00a\x00d\x00l\x00o\x00c\x00k\x00_\x00E\x00n\x00a\x00b\x00l\x00e\x00d\x00_\x00H\ +\x00o\x00v\x00e\x00r\x00.\x00t\x00i\x00f\ +\x00\x1c\ +\x0bd6G\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00E\x00d\x00i\x00t\ +\x00o\x00r\x00_\x00O\x00n\x00l\x00y\x00.\x00s\x00v\x00g\ +\x00\x0b\ +\x052\xac\xa7\ +\x00P\ +\x00a\x00d\x00l\x00o\x00c\x00k\x00.\x00s\x00v\x00g\ +\x00\x10\ +\x08Y\x11\xa7\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00H\x00a\x00n\x00d\x00l\x00e\x00.\x00s\x00v\x00g\ +\x00$\ +\x05\xcb\xc5\xc7\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00M\x00o\x00d\x00i\ +\x00f\x00i\x00e\x00d\x00_\x00N\x00o\x00t\x00_\x00A\x00c\x00t\x00i\x00v\x00e\x00.\ +\x00s\x00v\x00g\ +\x00\x1b\ +\x0e\xf5\xfe\xc7\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00N\x00o\x00t\x00_\ +\x00A\x00c\x00t\x00i\x00v\x00e\x00.\x00s\x00v\x00g\ +\x00\x0c\ +\x0e=1\x87\ +\x00u\ +\x00n\x00l\x00o\x00c\x00k\x00e\x00d\x00.\x00s\x00v\x00g\ +\x00\x1a\ +\x00\x9cw\x07\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00U\x00n\x00s\x00a\ +\x00v\x00a\x00b\x00l\x00e\x00.\x00s\x00v\x00g\ +\x00\x1a\ +\x0a\xe9\xdc\x96\ +\x00P\ +\x00a\x00d\x00l\x00o\x00c\x00k\x00_\x00D\x00i\x00s\x00a\x00b\x00l\x00e\x00d\x00_\ +\x00H\x00o\x00v\x00e\x00r\x00.\x00t\x00i\x00f\ +\x00\x0a\ +\x00\xb5\xd1\xa7\ +\x00E\ +\x00n\x00t\x00i\x00t\x00y\x00.\x00s\x00v\x00g\ +\x00#\ +\x08\x0b\xd5\x87\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00E\x00n\x00t\x00i\x00t\x00y\x00_\x00M\x00o\x00d\x00i\ +\x00f\x00i\x00e\x00d\x00_\x00U\x00n\x00s\x00a\x00v\x00a\x00b\x00l\x00e\x00.\x00s\ +\x00v\x00g\ +\x00\x13\ +\x0e\x1c\x0e\xf6\ +\x00E\ +\x00y\x00e\x00_\x00S\x00l\x00a\x00s\x00h\x00_\x00H\x00o\x00v\x00e\x00r\x00.\x00t\ +\x00i\x00f\ +\x00\x1b\ +\x03\x98\x0c'\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00H\x00a\x00n\x00d\x00l\x00e\x00_\x00N\x00o\x00t\x00_\ +\x00A\x00c\x00t\x00i\x00v\x00e\x00.\x00s\x00v\x00g\ +\x00\x17\ +\x03\xf8\xf5g\ +\x00l\ +\x00o\x00c\x00k\x00_\x00o\x00n\x00_\x00t\x00r\x00a\x00n\x00s\x00p\x00a\x00r\x00e\ +\x00n\x00t\x00.\x00s\x00v\x00g\ +\x00\x1a\ +\x00\xb2\x86\xa7\ +\x00l\ +\x00o\x00c\x00k\x00_\x00o\x00n\x00_\x00N\x00o\x00t\x00T\x00r\x00a\x00n\x00s\x00p\ +\x00a\x00r\x00e\x00n\x00t\x00.\x00s\x00v\x00g\ +\x00\x08\ +\x00\x95Ug\ +\x00v\ +\x00i\x00s\x00b\x00.\x00s\x00v\x00g\ +\x00\x15\ +\x0c\x87\x8f\xd6\ +\x00E\ +\x00y\x00e\x00_\x00P\x00a\x00r\x00t\x00i\x00a\x00l\x00_\x00S\x00l\x00a\x00s\x00h\ +\x00.\x00t\x00i\x00f\ +\x00\x0f\ +\x09\xcbq\xa7\ +\x00v\ +\x00i\x00s\x00b\x00_\x00h\x00i\x00d\x00d\x00e\x00n\x00.\x00s\x00v\x00g\ +\x00\x12\ +\x02{\xf5\x96\ +\x00E\ +\x00y\x00e\x00_\x00O\x00p\x00e\x00n\x00_\x00H\x00o\x00v\x00e\x00r\x00.\x00t\x00i\ +\x00f\ +\x00$\ +\x0a9L\xa7\ +\x00S\ +\x00l\x00i\x00c\x00e\x00_\x00H\x00a\x00n\x00d\x00l\x00e\x00_\x00M\x00o\x00d\x00i\ +\x00f\x00i\x00e\x00d\x00_\x00N\x00o\x00t\x00_\x00A\x00c\x00t\x00i\x00v\x00e\x00.\ +\x00s\x00v\x00g\ +\x00\x16\ +\x05\x5c\xa1g\ +\x00v\ +\x00i\x00s\x00_\x00o\x00n\x00_\x00t\x00r\x00a\x00n\x00s\x00p\x00a\x00r\x00e\x00n\ +\x00t\x00.\x00s\x00v\x00g\ +\x00\x12\ +\x0cS?'\ +\x00D\ +\x00e\x00f\x00a\x00u\x00l\x00t\x00_\x00c\x00l\x00o\x00s\x00e\x00d\x00.\x00s\x00v\ +\x00g\ +\x00\x1c\ +\x0d\x1b}6\ +\x00P\ +\x00a\x00d\x00l\x00o\x00c\x00k\x00_\x00P\x00a\x00r\x00t\x00i\x00a\x00l\x00_\x00D\ +\x00i\x00s\x00a\x00b\x00l\x00e\x00d\x00.\x00t\x00i\x00f\ +\x00\x12\ +\x06\xdb\x9dg\ +\x00P\ +\x00r\x00e\x00f\x00e\x00r\x00e\x00n\x00c\x00e\x00s\x00_\x000\x001\x00.\x00p\x00n\ +\x00g\ +\x00\x0a\ +\x08v\x9cg\ +\x00G\ +\x00l\x00o\x00b\x00a\x00l\x00.\x00s\x00v\x00g\ +\x00\x0a\ +\x0c\x8dj\xa7\ +\x00C\ +\x00a\x00m\x00e\x00r\x00a\x00.\x00s\x00v\x00g\ +\x00\x18\ +\x03\x0f\xe0\xa7\ +\x00A\ +\x00W\x00S\x00_\x00p\x00r\x00e\x00f\x00e\x00r\x00e\x00n\x00c\x00e\x00s\x00_\x00i\ +\x00c\x00o\x00n\x00.\x00s\x00v\x00g\ +\x00\x12\ +\x06\xd8\x9dg\ +\x00P\ +\x00r\x00e\x00f\x00e\x00r\x00e\x00n\x00c\x00e\x00s\x00_\x000\x000\x00.\x00p\x00n\ +\x00g\ +\x00\x0c\ +\x0d\x08\xc6'\ +\x00V\ +\x00i\x00e\x00w\x00p\x00o\x00r\x00t\x00.\x00s\x00v\x00g\ +\x00\x12\ +\x06\xe1\x9dg\ +\x00P\ +\x00r\x00e\x00f\x00e\x00r\x00e\x00n\x00c\x00e\x00s\x00_\x000\x003\x00.\x00p\x00n\ +\x00g\ +\x00\x0a\ +\x00k\xd7\xa7\ +\x00M\ +\x00o\x00t\x00i\x00o\x00n\x00.\x00s\x00v\x00g\ +\x00\x12\ +\x06\xde\x9dg\ +\x00P\ +\x00r\x00e\x00f\x00e\x00r\x00e\x00n\x00c\x00e\x00s\x00_\x000\x002\x00.\x00p\x00n\ +\x00g\ +\x00\x09\ +\x09\xba\xcf\xa7\ +\x00D\ +\x00e\x00b\x00u\x00g\x00.\x00s\x00v\x00g\ +\x00\x10\ +\x03l\x17\xc7\ +\x00E\ +\x00x\x00p\x00e\x00r\x00i\x00m\x00e\x00n\x00t\x00a\x00l\x00.\x00s\x00v\x00g\ +\x00\x09\ +\x02\xc6\xc0\xc7\ +\x00F\ +\x00i\x00l\x00e\x00s\x00.\x00s\x00v\x00g\ +\x00\x0a\ +\x04o\x98\xe7\ +\x00G\ +\x00i\x00z\x00m\x00o\x00s\x00.\x00s\x00v\x00g\ +\x00\x07\ +\x0f\x07J\x02\ +\x00h\ +\x00i\x00t\x00.\x00c\x00u\x00r\ +\x00\x0e\ +\x06\x0c\xfb\x82\ +\x00a\ +\x00r\x00r\x00o\x00w\x00_\x00d\x00o\x00w\x00n\x00.\x00c\x00u\x00r\ +\x00\x0b\ +\x06\x89\xd9\x82\ +\x00c\ +\x00u\x00r\x00s\x00o\x00r\x001\x00.\x00c\x00u\x00r\ +\x00\x0b\ +\x06\x80\xd9\x82\ +\x00c\ +\x00u\x00r\x00s\x00o\x00r\x002\x00.\x00c\x00u\x00r\ +\x00\x17\ +\x06h\xad\xa2\ +\x00p\ +\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00s\x00o\x00_\x00s\x00e\x00l\x00_\x00p\x00l\ +\x00u\x00s\x00.\x00c\x00u\x00r\ +\x00\x0d\ +\x08\x8c:\xe2\ +\x00l\ +\x00e\x00f\x00t\x00r\x00i\x00g\x00h\x00t\x00.\x00c\x00u\x00r\ +\x00\x0e\ +\x03\x0c\x0f\xc2\ +\x00p\ +\x00o\x00i\x00n\x00t\x00e\x00r\x00H\x00i\x00t\x00.\x00c\x00u\x00r\ +\x00\x12\ +\x03\xfe\x1c\x82\ +\x00p\ +\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00s\x00m\x00o\x00o\x00t\x00h\x00.\x00c\x00u\ +\x00r\ +\x00\x11\ +\x06\x8d\xde\x82\ +\x00a\ +\x00r\x00r\x00o\x00w\x00_\x00u\x00p\x00r\x00i\x00g\x00h\x00t\x00.\x00c\x00u\x00r\ +\ +\x00\x0e\ +\x02\xc2\xa5\x82\ +\x00a\ +\x00r\x00r\x00_\x00a\x00d\x00d\x00k\x00e\x00y\x00.\x00c\x00u\x00r\ +\x00\x15\ +\x07\x0a7B\ +\x00p\ +\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00g\x00e\x00t\x00h\x00e\x00i\x00g\x00h\x00t\ +\x00.\x00c\x00u\x00r\ +\x00\x10\ +\x08\x83\x1e\x22\ +\x00p\ +\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00p\x00l\x00u\x00s\x00.\x00c\x00u\x00r\ +\x00\x11\ +\x0d\xbf%b\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00r\x00o\x00t\x00a\x00t\x00e\x00.\x00c\x00u\x00r\ +\ +\x00\x0f\ +\x07\xb5h\x82\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00m\x00o\x00v\x00e\x00.\x00c\x00u\x00r\ +\x00\x13\ +\x00.\xa8\x22\ +\x00p\ +\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00l\x00i\x00n\x00k\x00n\x00o\x00w\x00.\x00c\ +\x00u\x00r\ +\x00\x10\ +\x07\x0b\x1e\x82\ +\x00p\ +\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00l\x00i\x00n\x00k\x00.\x00c\x00u\x00r\ +\x00\x11\ +\x01\x93\x0c\x22\ +\x00p\ +\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00m\x00i\x00n\x00u\x00s\x00.\x00c\x00u\x00r\ +\ +\x00\x13\ +\x0aQ\xeab\ +\x00p\ +\x00o\x00i\x00n\x00t\x00e\x00r\x00D\x00r\x00a\x00g\x00I\x00t\x00e\x00m\x00.\x00c\ +\x00u\x00r\ +\x00\x0c\ +\x0b\xd0gb\ +\x00a\ +\x00r\x00r\x00o\x00w\x00_\x00u\x00p\x00.\x00c\x00u\x00r\ +\x00\x0f\ +\x0eO\xc8\x02\ +\x00p\ +\x00i\x00c\x00k\x00_\x00c\x00u\x00r\x00s\x00o\x00r\x00.\x00c\x00u\x00r\ +\x00\x0c\ +\x0el\xec\xa2\ +\x00c\ +\x00u\x00r\x000\x000\x000\x000\x001\x00.\x00c\x00u\x00r\ +\x00\x0c\ +\x0em\xec\xa2\ +\x00c\ +\x00u\x00r\x000\x000\x000\x000\x002\x00.\x00c\x00u\x00r\ +\x00\x0c\ +\x0en\xec\xa2\ +\x00c\ +\x00u\x00r\x000\x000\x000\x000\x003\x00.\x00c\x00u\x00r\ +\x00\x0c\ +\x05\xaa\xdb\xa2\ +\x00h\ +\x00a\x00n\x00d\x00D\x00r\x00a\x00g\x00.\x00c\x00u\x00r\ +\x00\x0c\ +\x0eo\xec\xa2\ +\x00c\ +\x00u\x00r\x000\x000\x000\x000\x004\x00.\x00c\x00u\x00r\ +\x00\x10\ +\x03y\xfd\xc2\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00s\x00c\x00a\x00l\x00e\x00.\x00c\x00u\x00r\ +\x00\x0c\ +\x0ep\xec\xa2\ +\x00c\ +\x00u\x00r\x000\x000\x000\x000\x005\x00.\x00c\x00u\x00r\ +\x00\x0c\ +\x02\xaeA\x82\ +\x00p\ +\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00.\x00c\x00u\x00r\ +\x00\x15\ +\x0eb\xe8\x22\ +\x00p\ +\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00s\x00o\x00_\x00s\x00e\x00l\x00e\x00c\x00t\ +\x00.\x00c\x00u\x00r\ +\x00\x13\ +\x096M\x02\ +\x00a\ +\x00r\x00r\x00o\x00w\x00_\x00d\x00o\x00w\x00n\x00r\x00i\x00g\x00h\x00t\x00.\x00c\ +\x00u\x00r\ +\x00\x13\ +\x0f\xbas\x02\ +\x00p\ +\x00o\x00i\x00n\x00t\x00e\x00r\x00_\x00f\x00l\x00a\x00t\x00t\x00e\x00n\x00.\x00c\ +\x00u\x00r\ +\x00\x0c\ +\x0fy\xb7\xc7\ +\x00m\ +\x00a\x00x\x00i\x00m\x00i\x00z\x00e\x00.\x00p\x00n\x00g\ +\x00\x10\ +\x0a5o'\ +\x00h\ +\x00i\x00d\x00e\x00_\x00h\x00e\x00l\x00p\x00e\x00r\x00s\x00.\x00p\x00n\x00g\ +\x00\x10\ +\x0a\x9d~\xc7\ +\x00d\ +\x00i\x00s\x00p\x00l\x00a\x00y\x00_\x00i\x00n\x00f\x00o\x00.\x00p\x00n\x00g\ +\x00\x17\ +\x04\xb0\xfe\xc7\ +\x00e\ +\x00d\x00i\x00t\x00w\x00i\x00t\x00h\x00b\x00u\x00t\x00t\x00o\x00n\x00_\x00d\x00a\ +\x00r\x00k\x00.\x00p\x00n\x00g\ +\x00\x08\ +\x06b\x87\xf3\ +\x00t\ +\x00o\x00o\x00l\x00b\x00a\x00r\x00s\ +\x00\x1d\ +\x08\xa8\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x000\x005\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x0e\x98q\xa7\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x004\ +\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x000\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x001\x004\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00N\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x000\x006\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xd5\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x001\x002\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xa7\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x000\x004\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x005\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x001\x003\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00C\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x000\x005\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xd4\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x001\x001\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x0e\xecq\xa7\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x001\x000\ +\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00$\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x002\x000\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xa6\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x000\x003\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x0e\x9aq\xa7\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x002\ +\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x002\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x001\x002\x00.\x00p\x00n\x00g\ +\x00\x1e\ +\x076,\x87\ +\x00p\ +\x00r\x00o\x00c\x00e\x00d\x00u\x00r\x00a\x00l\x00m\x00a\x00t\x00e\x00r\x00i\x00a\ +\x00l\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xd3\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x001\x000\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xa5\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x000\x002\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x0e\x9fq\xa7\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x001\ +\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x007\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x001\x001\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00E\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x000\x003\x00.\x00p\x00n\x00g\ +\x00\x13\ +\x0c\xd0\x1e\x87\ +\x00m\ +\x00i\x00s\x00c\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x000\x00.\x00p\ +\x00n\x00g\ +\x00\x1d\ +\x08\xa4\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x000\x001\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x0e\x9cq\xa7\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x000\ +\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x004\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x001\x000\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xdb\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x001\x008\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00B\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x000\x002\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x0e\x97q\xa7\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x009\ +\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00?\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x001\x009\x00.\x00p\x00n\x00g\ +\x00\x10\ +\x0f\xf1A\xe7\ +\x00O\ +\x00b\x00j\x00S\x00e\x00l\x00e\x00c\x00t\x00i\x00o\x00n\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xa3\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x000\x000\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xda\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x001\x007\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00G\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x000\x001\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xac\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x000\x009\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x0e\x94q\xa7\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x008\ +\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00<\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x001\x008\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xd9\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x001\x006\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00#\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x002\x005\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00D\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x000\x000\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xab\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x000\x008\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x0e\x99q\xa7\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x007\ +\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00A\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x001\x007\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00O\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x000\x009\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xd8\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x001\x005\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00 \xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x002\x004\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xaa\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x000\x007\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x0e\x96q\xa7\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x006\ +\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00>\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x001\x006\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00L\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x000\x008\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x0e\x9d|'\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x003\ +\x00.\x00s\x00v\x00g\ +\x00\x1d\ +\x08\xd7\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x001\x004\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00%\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x002\x003\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xa9\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x000\x006\x00.\x00p\x00n\x00g\ +\x00\x15\ +\x0e\x9bq\xa7\ +\x00o\ +\x00b\x00j\x00e\x00c\x00t\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00-\x000\x005\ +\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x003\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x001\x005\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00Q\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x000\x007\x00.\x00p\x00n\x00g\ +\x00\x1d\ +\x08\xd6\xaf\xe7\ +\x00s\ +\x00t\x00a\x00n\x00d\x00a\x00r\x00d\x00_\x00v\x00i\x00e\x00w\x00s\x00_\x00t\x00o\ +\x00o\x00l\x00b\x00a\x00r\x00-\x001\x003\x00.\x00p\x00n\x00g\ +\x00\x18\ +\x00\x22\xce\x87\ +\x00e\ +\x00d\x00i\x00t\x00_\x00m\x00o\x00d\x00e\x00_\x00t\x00o\x00o\x00l\x00b\x00a\x00r\ +\x00-\x002\x002\x00.\x00p\x00n\x00g\ +\x00\x10\ +\x0c\x99\xf5\x1f\ +\x00b\ +\x00a\x00l\x00l\x00_\x00o\x00f\x00f\x00l\x00i\x00n\x00e\x00.\x00i\x00c\x00o\ +\x00\x1c\ +\x0d\xbb\x8bG\ +\x00s\ +\x00o\x00u\x00r\x00c\x00e\x00_\x00c\x00o\x00n\x00t\x00r\x00o\x00l\x00_\x00c\x00o\ +\x00n\x00n\x00e\x00c\x00t\x00e\x00d\x00.\x00s\x00v\x00g\ +\x00\x1c\ +\x03ZJ\xe7\ +\x00s\ +\x00o\x00u\x00r\x00c\x00e\x00_\x00c\x00o\x00n\x00t\x00r\x00o\x00l\x00-\x00n\x00o\ +\x00t\x00_\x00s\x00e\x00t\x00u\x00p\x00.\x00s\x00v\x00g\ +\x00\x0f\ +\x0a\x0d'\xdf\ +\x00b\ +\x00a\x00l\x00l\x00_\x00o\x00n\x00l\x00i\x00n\x00e\x00.\x00i\x00c\x00o\ +\x00\x1d\ +\x03\xe3zG\ +\x00s\ +\x00o\x00u\x00r\x00c\x00e\x00_\x00c\x00o\x00n\x00t\x00r\x00o\x00l\x00-\x00w\x00a\ +\x00r\x00n\x00i\x00n\x00g\x00_\x00v\x002\x00.\x00s\x00v\x00g\ +\x00\x10\ +\x0c\xa1\xe6\x1f\ +\x00b\ +\x00a\x00l\x00l\x00_\x00p\x00e\x00n\x00d\x00i\x00n\x00g\x00.\x00i\x00c\x00o\ +\x00\x11\ +\x08tl?\ +\x00b\ +\x00a\x00l\x00l\x00_\x00d\x00i\x00s\x00a\x00b\x00l\x00e\x00d\x00.\x00i\x00c\x00o\ +\ +\x00\x1b\ +\x00\x22\x12'\ +\x00s\ +\x00o\x00u\x00r\x00c\x00e\x00_\x00c\x00o\x00n\x00t\x00r\x00o\x00l\x00_\x00e\x00r\ +\x00r\x00o\x00r\x00_\x00v\x002\x00.\x00s\x00v\x00g\ +" + +qt_resource_struct = b"\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00*\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x03\xa8\x00\x02\x00\x00\x00\x0d\x00\x00\x00\xc7\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x03\xe2\x00\x02\x00\x00\x002\x00\x00\x00\x95\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x01F\x00\x00\x00\x00\x00\x01\x00\x00\xb10\ +\x00\x00\x01z\x88\x90A<\ +\x00\x00\x01\xb2\x00\x02\x00\x00\x00\x01\x00\x00\x00[\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x03\x84\x00\x00\x00\x00\x00\x01\x00\x00\xc6R\ +\x00\x00\x01z\x88\x90@,\ +\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x01\x00\x00\xad\x09\ +\x00\x00\x01z\x88\x90@9\ +\x00\x00\x04\xc0\x00\x00\x00\x00\x00\x01\x00\x00\xce&\ +\x00\x00\x01z\x88\x90@)\ +\x00\x00\x02p\x00\x00\x00\x00\x00\x01\x00\x00\xbeB\ +\x00\x00\x01z\x88\x90@6\ +\x00\x00\x03\x0c\x00\x00\x00\x00\x00\x01\x00\x00\xc3\xce\ +\x00\x00\x01z\x88\x90@-\ +\x00\x00\x00$\x00\x00\x00\x00\x00\x01\x00\x00\x01\x88\ +\x00\x00\x01z\x88\x90@:\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x01z\x88\x90@'\ +\x00\x00\x03`\x00\x00\x00\x00\x00\x01\x00\x00\xc5\xc3\ +\x00\x00\x01z\x88\x90@4\ +\x00\x00\x04\x22\x00\x00\x00\x00\x00\x01\x00\x00\xca_\ +\x00\x00\x01z\x88\x90@+\ +\x00\x00\x01\xcc\x00\x00\x00\x00\x00\x01\x00\x00\xbaZ\ +\x00\x00\x01z\x88\x90@7\ +\x00\x00\x05\x9a\x00\x00\x00\x00\x00\x01\x00\x00\xdbw\ +\x00\x00\x01z\x88\x90@(\ +\x00\x00\x02\xe8\x00\x00\x00\x00\x00\x01\x00\x00\xc3$\ +\x00\x00\x01z\x88\x90@5\ +\x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00\xae\x82\ +\x00\x00\x01z\x88\x90@1\ +\x00\x00\x02\x94\x00\x00\x00\x00\x00\x01\x00\x00\xbf1\ +\x00\x00\x01z\x88\x90@.\ +\x00\x00\x05\xec\x00\x00\x00\x00\x00\x01\x00\x00\xdec\ +\x00\x00\x01z\x88\x90@<\ +\x00\x00\x00\x90\x00\x00\x00\x00\x00\x01\x00\x00\xa6\x97\ +\x00\x00\x01z\x88\x90@2\ +\x00\x00\x02\x08\x00\x00\x00\x00\x00\x01\x00\x00\xbbp\ +\x00\x00\x01z\x88\x90@0\ +\x00\x00\x05F\x00\x00\x00\x00\x00\x01\x00\x00\xd5k\ +\x00\x00\x01z\x88\x90@=\ +\x00\x00\x05\x12\x00\x00\x00\x00\x00\x01\x00\x00\xd0\x86\ +\x00\x00\x01{[\xfa+\x98\ +\x00\x00\x02\xb8\x00\x00\x00\x00\x00\x01\x00\x00\xc2@\ +\x00\x00\x01z\x88\x90@R\ +\x00\x00\x02@\x00\x00\x00\x00\x00\x01\x00\x00\xbdi\ +\x00\x00\x01z\x88\x90@S\ +\x00\x00\x00`\x00\x00\x00\x00\x00\x01\x00\x00\xa5\xc3\ +\x00\x00\x01z\x88\x90@J\ +\x00\x00\x05j\x00\x00\x00\x00\x00\x01\x00\x00\xdaw\ +\x00\x00\x01z\x88\x90@M\ +\x00\x00\x06\x10\x00\x00\x00\x00\x00\x01\x00\x00\xe2\xb4\ +\x00\x00\x01z\x88\x90@L\ +\x00\x00\x03\xf2\x00\x00\x00\x00\x00\x01\x00\x00\xc9,\ +\x00\x00\x01z\x88\x90@O\ +\x00\x00\x04t\x00\x00\x00\x00\x00\x01\x00\x00\xcd\x1d\ +\x00\x00\x01z\x88\x90@N\ +\x00\x00\x030\x00\x00\x00\x00\x00\x01\x00\x00\xc4\xc1\ +\x00\x00\x01z\x88\x90@Q\ +\x00\x00\x04F\x00\x00\x00\x00\x00\x01\x00\x00\xccI\ +\x00\x00\x01z\x88\x90@$\ +\x00\x00\x03\xb4\x00\x00\x00\x00\x00\x01\x00\x00\xc8X\ +\x00\x00\x01z\x88\x90@%\ +\x00\x00\x05\xbe\x00\x00\x00\x00\x00\x01\x00\x00\xdd\x8f\ +\x00\x00\x01z\x88\x90@!\ +\x00\x00\x04\xe4\x00\x00\x00\x00\x00\x01\x00\x00\xcf\xb2\ +\x00\x00\x01z\x88\x90@#\ +\x00\x00\x00\xe6\x00\x02\x00\x00\x00\x01\x00\x00\x00R\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00H\x00\x00\x00\x00\x00\x01\x00\x00\x03\xf4\ +\x00\x00\x01z\x88\x90BH\ +\x00\x00\x02,\x00\x02\x00\x00\x00\x01\x00\x00\x002\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x01|\x00\x00\x00\x00\x00\x01\x00\x00\xb3\xd9\ +\x00\x00\x01z\x88\x90A:\ +\x00\x00\x01\xf0\x00\x02\x00\x00\x00\x04\x00\x00\x00.\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\xb4\x00\x00\x00\x00\x00\x01\x00\x00\xa9\x0c\ +\x00\x00\x01z\x88\x90A;\ +\x00\x00\x04\xa4\x00\x02\x00\x00\x00\x02\x00\x00\x00+\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x03\xa8\x00\x02\x00\x00\x00\x01\x00\x00\x00-\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x06@\x00\x00\x00\x00\x00\x01\x00\x00\xe3\x88\ +\x00\x00\x01{zp@\xc4\ +\x00\x00\x06~\x00\x01\x00\x00\x00\x01\x00\x00\xebr\ +\x00\x00\x01z\x88\x90A\xb7\ +\x00\x00\x17.\x00\x00\x00\x00\x00\x01\x00\x05\xae\xc9\ +\x00\x00\x01z\x88\x90<\xf1\ +\x00\x00\x16\xe2\x00\x00\x00\x00\x00\x01\x00\x05\xad\x1d\ +\x00\x00\x01z\x88\x90<\xf4\ +\x00\x00\x17\x08\x00\x00\x00\x00\x00\x01\x00\x05\xad\xf1\ +\x00\x00\x01z\x88\x90<\xd1\ +\x00\x00\x16\xc4\x00\x00\x00\x00\x00\x01\x00\x05\xac*\ +\x00\x00\x01z\x88\x90<\xf5\ +\x00\x00\x03\xa8\x00\x02\x00\x00\x00\x1f\x00\x00\x003\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x14\x5c\x00\x00\x00\x00\x00\x01\x00\x05\x98\x97\ +\x00\x00\x01z\x88\x90A\xde\ +\x00\x00\x14\xae\x00\x00\x00\x00\x00\x01\x00\x05\x9b+\ +\x00\x00\x01z\x88\x90A\xdf\ +\x00\x00\x16\x1e\x00\x00\x00\x00\x00\x01\x00\x05\xa7\xf2\ +\x00\x00\x01z\x88\x90A\xda\ +\x00\x00\x13\x98\x00\x00\x00\x00\x00\x01\x00\x05\x92%\ +\x00\x00\x01z\x88\x90@\xa7\ +\x00\x00\x13$\x00\x00\x00\x00\x00\x01\x00\x05\x8f5\ +\x00\x00\x01z\x88\x90A\xd9\ +\x00\x00\x15\xda\x00\x00\x00\x00\x00\x01\x00\x05\xa5^\ +\x00\x00\x01z\x88\x90A\xba\ +\x00\x00\x13F\x00\x00\x00\x00\x00\x01\x00\x05\x90\x7f\ +\x00\x00\x01z\x88\x90A\xe1\ +\x00\x00\x15\x9e\x00\x00\x00\x00\x00\x01\x00\x05\xa2\xca\ +\x00\x00\x01z\x88\x90Af\ +\x00\x00\x12v\x00\x01\x00\x00\x00\x01\x00\x05\x8b3\ +\x00\x00\x01z\x88\x90@\xa9\ +\x00\x00\x12\xd0\x00\x00\x00\x00\x00\x01\x00\x05\x8d\x87\ +\x00\x00\x01z\x88\x90A\xe2\ +\x00\x00\x12\xb4\x00\x01\x00\x00\x00\x01\x00\x05\x8c\xdc\ +\x00\x00\x01z\x88\x90@\xf8\ +\x00\x00\x12\x98\x00\x00\x00\x00\x00\x01\x00\x05\x8b\x92\ +\x00\x00\x01z\x88\x90@\xf8\ +\x00\x00\x13p\x00\x01\x00\x00\x00\x01\x00\x05\x91\xc9\ +\x00\x00\x01z\x88\x90@\xae\ +\x00\x00\x13\xba\x00\x00\x00\x00\x00\x01\x00\x05\x93o\ +\x00\x00\x01z\x88\x90A\xdc\ +\x00\x00\x14\x88\x00\x00\x00\x00\x00\x01\x00\x05\x99\xe1\ +\x00\x00\x01z\x88\x90A\xdd\ +\x00\x00\x148\x00\x00\x00\x00\x00\x01\x00\x05\x97M\ +\x00\x00\x01z\x88\x90A\xb8\ +\x00\x00\x13\xea\x00\x00\x00\x00\x00\x01\x00\x05\x94\xb9\ +\x00\x00\x01z\x88\x90A\xdf\ +\x00\x00\x13\x04\x00\x01\x00\x00\x00\x01\x00\x05\x8e\xd1\ +\x00\x00\x01z\x88\x90A\x98\ +\x00\x00\x16l\x00\x01\x00\x00\x00\x01\x00\x05\xaa\x86\ +\x00\x00\x01z\x88\x90@\xab\ +\x00\x00\x14\xd6\x00\x01\x00\x00\x00\x01\x00\x05\x9cu\ +\x00\x00\x01z\x88\x90A\xd9\ +\x00\x00\x15\x02\x00\x01\x00\x00\x00\x01\x00\x05\x9dB\ +\x00\x00\x01z\x88\x90@\xac\ +\x00\x00\x14\x10\x00\x00\x00\x00\x00\x01\x00\x05\x96\x03\ +\x00\x00\x01z\x88\x90A\xb9\ +\x00\x00\x15 \x00\x00\x00\x00\x00\x01\x00\x05\x9d\xa2\ +\x00\x00\x01z\x88\x90A\xd6\ +\x00\x00\x16<\x00\x00\x00\x00\x00\x01\x00\x05\xa9<\ +\x00\x00\x01z\x88\x90A\xe3\ +\x00\x00\x15D\x00\x00\x00\x00\x00\x01\x00\x05\x9e\xec\ +\x00\x00\x01z\x88\x90@\xf3\ +\x00\x00\x15b\x00\x00\x00\x00\x00\x01\x00\x05\xa06\ +\x00\x00\x01z\x88\x90@\xf4\ +\x00\x00\x15\x80\x00\x00\x00\x00\x00\x01\x00\x05\xa1\x80\ +\x00\x00\x01z\x88\x90@\xf5\ +\x00\x00\x15\xbc\x00\x00\x00\x00\x00\x01\x00\x05\xa4\x14\ +\x00\x00\x01z\x88\x90@\xf6\ +\x00\x00\x16\x00\x00\x00\x00\x00\x00\x01\x00\x05\xa6\xa8\ +\x00\x00\x01z\x88\x90@\xf7\ +\x00\x00\x12b\x00\x01\x00\x00\x00\x01\x00\x05\x8a\xd4\ +\x00\x00\x01z\x88\x90Ag\ +\x00\x00\x16\x98\x00\x00\x00\x00\x00\x01\x00\x05\xaa\xe0\ +\x00\x00\x01z\x88\x90A\xdb\ +\x00\x00\x03\xa8\x00\x02\x00\x00\x00\x08\x00\x00\x00S\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00%@\x00\x00\x00\x00\x00\x01\x00\x06B\x8d\ +\x00\x00\x01z\x88\x90B\x0a\ +\x00\x00$P\x00\x00\x00\x00\x00\x01\x00\x06.w\ +\x00\x00\x01z\x88\x90B\x06\ +\x00\x00$\xb2\x00\x00\x00\x00\x00\x01\x00\x066@\ +\x00\x00\x01z\x88\x90B\x07\ +\x00\x00%\x18\x00\x00\x00\x00\x00\x01\x00\x06>\x0b\ +\x00\x00\x01z\x88\x90@\xb2\ +\x00\x00$\x8e\x00\x00\x00\x00\x00\x01\x00\x061\xbe\ +\x00\x00\x01z\x88\x90@\xb4\ +\x00\x00#\xec\x00\x00\x00\x00\x00\x01\x00\x06&\xb2\ +\x00\x00\x01z\x88\x90@\xb4\ +\x00\x00$\xf2\x00\x00\x00\x00\x00\x01\x00\x069\x89\ +\x00\x00\x01z\x88\x90@\xb6\ +\x00\x00$\x12\x00\x00\x00\x00\x00\x01\x00\x06+4\ +\x00\x00\x01z\x88\x90B\x09\ +\x00\x00\x17b\x00\x02\x00\x00\x009\x00\x00\x00\x5c\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00 \xe2\x00\x00\x00\x00\x00\x01\x00\x06\x09\x92\ +\x00\x00\x01z\x88\x90<\xef\ +\x00\x00#\xb6\x00\x00\x00\x00\x00\x01\x00\x06!\xc5\ +\x00\x00\x01z\x88\x90<\xec\ +\x00\x00\x1fZ\x00\x00\x00\x00\x00\x01\x00\x05\xfaT\ +\x00\x00\x01z\x88\x90<\xf0\ +\x00\x00\x19\xb0\x00\x00\x00\x00\x00\x01\x00\x05\xc6\xbb\ +\x00\x00\x01z\x88\x90<\xeb\ +\x00\x00\x22d\x00\x00\x00\x00\x00\x01\x00\x06\x17\x91\ +\x00\x00\x01z\x88\x90<\xed\ +\x00\x00\x17\xe8\x00\x00\x00\x00\x00\x01\x00\x05\xb5{\ +\x00\x00\x01z\x88\x90<\xe3\ +\x00\x00\x1aV\x00\x00\x00\x00\x00\x01\x00\x05\xca\x8a\ +\x00\x00\x01z\x88\x90<\xe0\ +\x00\x00#\x0a\x00\x00\x00\x00\x00\x01\x00\x06\x1b\xf7\ +\x00\x00\x01z\x88\x90<\xe4\ +\x00\x00\x1c\x86\x00\x00\x00\x00\x00\x01\x00\x05\xddK\ +\x00\x00\x01z\x88\x90<\xde\ +\x00\x00\x18\xd4\x00\x00\x00\x00\x00\x01\x00\x05\xbc\xc0\ +\x00\x00\x01z\x88\x90<\xe2\ +\x00\x00\x1b~\x00\x00\x00\x00\x00\x01\x00\x05\xd2]\ +\x00\x00\x01z\x88\x90<\xdf\ +\x00\x00\x1e\xe4\x00\x00\x00\x00\x00\x01\x00\x05\xf4\x13\ +\x00\x00\x01z\x88\x90<\xe8\ +\x00\x00!\x88\x00\x00\x00\x00\x00\x01\x00\x06\x0d\xcb\ +\x00\x00\x01z\x88\x90<\xe5\ +\x00\x00\x1db\x00\x00\x00\x00\x00\x01\x00\x05\xe7\xe0\ +\x00\x00\x01z\x88\x90<\xe9\ +\x00\x00 6\x00\x00\x00\x00\x00\x01\x00\x06\x04\x88\ +\x00\x00\x01z\x88\x90<\xe7\ +\x00\x00\x1c\xfc\x00\x00\x00\x00\x00\x01\x00\x05\xe3 \ +\x00\x00\x01z\x88\x90<\xd4\ +\x00\x00\x19\x0a\x00\x00\x00\x00\x00\x01\x00\x05\xbd\xb2\ +\x00\x00\x01z\x88\x90<\xd7\ +\x00\x00\x1f\x90\x00\x00\x00\x00\x00\x01\x00\x05\xfc\x01\ +\x00\x00\x01z\x88\x90<\xd2\ +\x00\x00\x1b\xb4\x00\x00\x00\x00\x00\x01\x00\x05\xd3\xab\ +\x00\x00\x01z\x88\x90<\xd6\ +\x00\x00\x1e>\x00\x00\x00\x00\x00\x01\x00\x05\xee\xb1\ +\x00\x00\x01z\x88\x90<\xd3\ +\x00\x00!\xbe\x00\x00\x00\x00\x00\x01\x00\x06\x0f\x89\ +\x00\x00\x01z\x88\x90<\xdb\ +\x00\x00\x18\x1e\x00\x00\x00\x00\x00\x01\x00\x05\xb7\x9d\ +\x00\x00\x01z\x88\x90<\xd8\ +\x00\x00 l\x00\x00\x00\x00\x00\x01\x00\x06\x06\x98\ +\x00\x00\x01z\x88\x90<\xdc\ +\x00\x00#@\x00\x00\x00\x00\x00\x01\x00\x06\x1d\xf7\ +\x00\x00\x01z\x88\x90<\xd9\ +\x00\x00\x1a\x8c\x00\x00\x00\x00\x00\x01\x00\x05\xcb\xa9\ +\x00\x00\x01z\x88\x90=\x06\ +\x00\x00\x1d\xbe\x00\x00\x00\x00\x00\x01\x00\x05\xeb\x81\ +\x00\x00\x01z\x88\x90=\x07\ +\x00\x00\x1c\x16\x00\x00\x00\x00\x00\x01\x00\x05\xd8\xc7\ +\x00\x00\x01z\x88\x90=\x08\ +\x00\x00\x1b\x0e\x00\x00\x00\x00\x00\x01\x00\x05\xcf\x06\ +\x00\x00\x01z\x88\x90=\x0a\ +\x00\x00\x19\xe6\x00\x00\x00\x00\x00\x01\x00\x05\xc7\x8d\ +\x00\x00\x01z\x88\x90=\x0b\ +\x00\x00\x18\x94\x00\x00\x00\x00\x00\x01\x00\x05\xba\x90\ +\x00\x00\x01z\x88\x90=\x0c\ +\x00\x00\x17x\x00\x00\x00\x00\x00\x01\x00\x05\xb2\xb7\ +\x00\x00\x01z\x88\x90=\x0e\ +\x00\x00\x22\x9a\x00\x00\x00\x00\x00\x01\x00\x06\x18\xe4\ +\x00\x00\x01z\x88\x90=\x0f\ +\x00\x00!\x18\x00\x00\x00\x00\x00\x01\x00\x06\x0a\x99\ +\x00\x00\x01z\x88\x90=\x10\ +\x00\x00\x1f\xc6\x00\x00\x00\x00\x00\x01\x00\x05\xfd\x09\ +\x00\x00\x01z\x88\x90=\x12\ +\x00\x00\x1et\x00\x00\x00\x00\x00\x01\x00\x05\xef\xbf\ +\x00\x00\x01z\x88\x90=\x13\ +\x00\x00\x1a\xce\x00\x00\x00\x00\x00\x01\x00\x05\xcd|\ +\x00\x00\x01z\x88\x90=\x15\ +\x00\x00\x19@\x00\x00\x00\x00\x00\x01\x00\x05\xbe\xeb\ +\x00\x00\x01z\x88\x90=\x16\ +\x00\x00\x18T\x00\x00\x00\x00\x00\x01\x00\x05\xb9\x11\ +\x00\x00\x01z\x88\x90=\x17\ +\x00\x00#v\x00\x00\x00\x00\x00\x01\x00\x06\x1f\xb3\ +\x00\x00\x01z\x88\x90=\x19\ +\x00\x00\x22$\x00\x00\x00\x00\x00\x01\x00\x06\x16%\ +\x00\x00\x01z\x88\x90=\x1a\ +\x00\x00 \xa2\x00\x00\x00\x00\x00\x01\x00\x06\x08\x19\ +\x00\x00\x01z\x88\x90=\x1b\ +\x00\x00\x1f\x1a\x00\x00\x00\x00\x00\x01\x00\x05\xf5t\ +\x00\x00\x01z\x88\x90=\x1d\ +\x00\x00\x1d\xfe\x00\x00\x00\x00\x00\x01\x00\x05\xedU\ +\x00\x00\x01z\x88\x90=\x1e\ +\x00\x00\x1c\xbc\x00\x00\x00\x00\x00\x01\x00\x05\xe1\xc7\ +\x00\x00\x01z\x88\x90=\x1f\ +\x00\x00\x1b\xea\x00\x00\x00\x00\x00\x01\x00\x05\xd5\xc4\ +\x00\x00\x01z\x88\x90<\xf6\ +\x00\x00\x1e\xb4\x00\x00\x00\x00\x00\x01\x00\x05\xf1A\ +\x00\x00\x01z\x88\x90=\x02\ +\x00\x00!X\x00\x00\x00\x00\x00\x01\x00\x06\x0b\xc6\ +\x00\x00\x01z\x88\x90<\xff\ +\x00\x00\x1d2\x00\x00\x00\x00\x00\x01\x00\x05\xe5\x1d\ +\x00\x00\x01z\x88\x90=\x03\ +\x00\x00\x17\xb8\x00\x00\x00\x00\x00\x01\x00\x05\xb4v\ +\x00\x00\x01z\x88\x90<\xfc\ +\x00\x00 \x06\x00\x00\x00\x00\x00\x01\x00\x06\x03*\ +\x00\x00\x01z\x88\x90=\x00\ +\x00\x00\x1a&\x00\x00\x00\x00\x00\x01\x00\x05\xc9\x0e\ +\x00\x00\x01z\x88\x90<\xfb\ +\x00\x00\x22\xda\x00\x00\x00\x00\x00\x01\x00\x06\x1a\x17\ +\x00\x00\x01z\x88\x90<\xfe\ +\x00\x00\x1cV\x00\x00\x00\x00\x00\x01\x00\x05\xda\xb6\ +\x00\x00\x01z\x88\x90<\xf8\ +\x00\x00!\xf4\x00\x00\x00\x00\x00\x01\x00\x06\x11E\ +\x00\x00\x01z\x88\x90<\xfb\ +\x00\x00\x1bN\x00\x00\x00\x00\x00\x01\x00\x05\xd0\xd0\ +\x00\x00\x01z\x88\x90<\xf9\ +\x00\x00\x19\x80\x00\x00\x00\x00\x00\x01\x00\x05\xc0C\ +\x00\x00\x01z\x88\x90=\x05\ +\x00\x00\x1d\x98\x00\x00\x00\x00\x00\x01\x00\x05\xea!\ +\x00\x00\x01z\x88\x90<\xcf\ +\x00\x00\x0f,\x00\x00\x00\x00\x00\x01\x00\x04:\x97\ +\x00\x00\x01z\x88\x90B;\ +\x00\x00\x0d|\x00\x00\x00\x00\x00\x01\x00\x03\xa4:\ +\x00\x00\x01z\x88\x90@\x8d\ +\x00\x00\x0e\xf2\x00\x00\x00\x00\x00\x01\x00\x045\x8a\ +\x00\x00\x01z\x88\x90A\x9c\ +\x00\x00\x0d\xf0\x00\x00\x00\x00\x00\x01\x00\x04\x07,\ +\x00\x00\x01z\x88\x90@a\ +\x00\x00\x0ah\x00\x00\x00\x00\x00\x01\x00\x03E?\ +\x00\x00\x01z\x88\x90B8\ +\x00\x00\x09\xd8\x00\x01\x00\x00\x00\x01\x00\x02|Z\ +\x00\x00\x01z\x88\x90@m\ +\x00\x00\x07\x84\x00\x00\x00\x00\x00\x01\x00\x01\x9b\x8b\ +\x00\x00\x01z\x88\x90@b\ +\x00\x00\x08\xac\x00\x00\x00\x00\x00\x01\x00\x01\xb6{\ +\x00\x00\x01z\x88\x90A\xa0\ +\x00\x00\x0f\x96\x00\x00\x00\x00\x00\x01\x00\x04|\x91\ +\x00\x00\x01z\x88\x90@i\ +\x00\x00\x0e\x82\x00\x00\x00\x00\x00\x01\x00\x04(>\ +\x00\x00\x01z\x88\x90@\x94\ +\x00\x00\x09D\x00\x00\x00\x00\x00\x01\x00\x02q\xb7\ +\x00\x00\x01z\x88\x90@\x87\ +\x00\x00\x0e\xbe\x00\x00\x00\x00\x00\x01\x00\x040i\ +\x00\x00\x01z\x88\x90A\x9d\ +\x00\x00\x09\x9c\x00\x00\x00\x00\x00\x01\x00\x02y\xc6\ +\x00\x00\x01z\x88\x90A\x9b\ +\x00\x00\x0c\x92\x00\x00\x00\x00\x00\x01\x00\x03\x88\x0e\ +\x00\x00\x01z\x88\x90@w\ +\x00\x00\x07\xec\x00\x00\x00\x00\x00\x01\x00\x01\xa9\xae\ +\x00\x00\x01z\x88\x90@\x90\ +\x00\x00\x08\xea\x00\x00\x00\x00\x00\x01\x00\x01\xd2!\ +\x00\x00\x01z\x88\x90@\x80\ +\x00\x00\x10\x0e\x00\x00\x00\x00\x00\x01\x00\x04\x99\x8e\ +\x00\x00\x01z\x88\x90B:\ +\x00\x00\x08\xc6\x00\x00\x00\x00\x00\x01\x00\x01\xbcy\ +\x00\x00\x01z\x88\x90@g\ +\x00\x00\x0c\xd4\x00\x00\x00\x00\x00\x01\x00\x03\x949\ +\x00\x00\x01z\x88\x90@\x8c\ +\x00\x00\x07\xb4\x00\x00\x00\x00\x00\x01\x00\x01\xa0%\ +\x00\x00\x01z\x88\x90B9\ +\x00\x00\x09j\x00\x00\x00\x00\x00\x01\x00\x02u[\ +\x00\x00\x01z\x88\x90@b\ +\x00\x00\x0b2\x00\x00\x00\x00\x00\x01\x00\x03a\xfa\ +\x00\x00\x01z\x88\x90@\x89\ +\x00\x00\x0a:\x00\x01\x00\x00\x00\x01\x00\x03%L\ +\x00\x00\x01z\x88\x90@o\ +\x00\x00\x07\x04\x00\x00\x00\x00\x00\x01\x00\x01\x90\xa8\ +\x00\x00\x01z\x88\x90@`\ +\x00\x00\x0bj\x00\x00\x00\x00\x00\x01\x00\x03e\xa2\ +\x00\x00\x01z\x88\x90@\x8c\ +\x00\x00\x0e\x0a\x00\x00\x00\x00\x00\x01\x00\x04\x0a\xc0\ +\x00\x00\x01z\x88\x90@\x8d\ +\x00\x00\x0c\xae\x00\x00\x00\x00\x00\x01\x00\x03\x8f%\ +\x00\x00\x01z\x88\x90@\x8f\ +\x00\x00\x0b\xcc\x00\x00\x00\x00\x00\x01\x00\x03j*\ +\x00\x00\x01z\x88\x90@\x8a\ +\x00\x00\x0b\x06\x00\x00\x00\x00\x00\x01\x00\x03L*\ +\x00\x00\x01z\x88\x90@{\ +\x00\x00\x0fr\x00\x00\x00\x00\x00\x01\x00\x04s,\ +\x00\x00\x01z\x88\x90B<\ +\x00\x00\x0f\xc0\x00\x00\x00\x00\x00\x01\x00\x04\x91Y\ +\x00\x00\x01z\x88\x90@\x93\ +\x00\x00\x0d\xb6\x00\x00\x00\x00\x00\x01\x00\x03\xa7\xbc\ +\x00\x00\x01z\x88\x90@z\ +\x00\x00\x0a\xa2\x00\x00\x00\x00\x00\x01\x00\x03G\xd3\ +\x00\x00\x01z\x88\x90@\x8b\ +\x00\x00\x06\xa2\x00\x00\x00\x00\x00\x01\x00\x01.\x89\ +\x00\x00\x01z\x88\x90@x\ +\x00\x00\x0cT\x00\x00\x00\x00\x00\x01\x00\x03\x83\xa5\ +\x00\x00\x01z\x88\x90@\x88\ +\x00\x00\x07b\x00\x00\x00\x00\x00\x01\x00\x01\x98_\ +\x00\x00\x01z\x88\x90A\x8b\ +\x00\x00\x08*\x00\x00\x00\x00\x00\x01\x00\x01\xae\xc7\ +\x00\x00\x01z\x88\x90B7\ +\x00\x00\x10@\x00\x00\x00\x00\x00\x01\x00\x04\xa3&\ +\x00\x00\x01z\x88\x90@_\ +\x00\x00\x0fB\x00\x01\x00\x00\x00\x01\x00\x04A\xf9\ +\x00\x00\x01z\x88\x90@l\ +\x00\x00\x06\xd0\x00\x00\x00\x00\x00\x01\x00\x01\x8e\x11\ +\x00\x00\x01z\x88\x90A\x9b\ +\x00\x00\x0a&\x00\x00\x00\x00\x00\x01\x00\x03\x1f\xd5\ +\x00\x00\x01z\x88\x90@e\ +\x00\x00\x10j\x00\x00\x00\x00\x00\x01\x00\x04\xa5\xd7\ +\x00\x00\x01z\x88\x90@~\ +\x00\x00\x09\xf8\x00\x00\x00\x00\x00\x01\x00\x02\x9f\xc9\ +\x00\x00\x01z\x88\x90@k\ +\x00\x00\x0eV\x00\x01\x00\x00\x00\x01\x00\x04\x0eB\ +\x00\x00\x01z\x88\x90@p\ +\x00\x00\x0d^\x00\x00\x00\x00\x00\x01\x00\x03\x9di\ +\x00\x00\x01z\x88\x90B.\ +\x00\x00\x0c\x1c\x00\x00\x00\x00\x00\x01\x00\x03n\x97\ +\x00\x00\x01z\x88\x90@|\ +\x00\x00\x07*\x00\x00\x00\x00\x00\x01\x00\x01\x93G\ +\x00\x00\x01z\x88\x90@\x91\ +\x00\x00\x0d\x22\x00\x00\x00\x00\x00\x01\x00\x03\x98\xd3\ +\x00\x00\x01z\x88\x90@\x8f\ +\x00\x00\x08\x5c\x00\x00\x00\x00\x00\x01\x00\x01\xb1^\ +\x00\x00\x01z\x88\x90@\x92\ +\x00\x00\x09&\x00\x00\x00\x00\x00\x01\x00\x02\x5c\x1d\ +\x00\x00\x01z\x88\x90@f\ +\x00\x00\x11\xae\x00\x00\x00\x00\x00\x01\x00\x05X\xbf\ +\x00\x00\x01z\x88\x90@u\ +\x00\x00\x120\x00\x00\x00\x00\x00\x01\x00\x05\x83^\ +\x00\x00\x01z\x88\x90@q\ +\x00\x00\x11\x06\x00\x00\x00\x00\x00\x01\x00\x05L\x08\ +\x00\x00\x01z\x88\x90@W\ +\x00\x00\x12\x0a\x00\x00\x00\x00\x00\x01\x00\x05q%\ +\x00\x00\x01z\x88\x90@d\ +\x00\x00\x12H\x00\x00\x00\x00\x00\x01\x00\x05\x87p\ +\x00\x00\x01z\x88\x90@r\ +\x00\x00\x11<\x00\x00\x00\x00\x00\x01\x00\x05Q\xce\ +\x00\x00\x01z\x88\x90@\x82\ +\x00\x00\x10\xa8\x00\x00\x00\x00\x00\x01\x00\x053\xe7\ +\x00\x00\x01z\x88\x90@\x83\ +\x00\x00\x11\xc8\x00\x00\x00\x00\x00\x01\x00\x05^\xc1\ +\x00\x00\x01z\x88\x90@\x85\ +\x00\x00\x11\x84\x00\x00\x00\x00\x00\x01\x00\x05W\xf1\ +\x00\x00\x01z\x88\x90@\x86\ +\x00\x00\x10\xd2\x00\x00\x00\x00\x00\x01\x00\x054t\ +\x00\x00\x01z\x88\x90@s\ +\x00\x00\x11\xf2\x00\x00\x00\x00\x00\x01\x00\x05_e\ +\x00\x00\x01z\x88\x90@^\ +\x00\x00\x10\xec\x00\x00\x00\x00\x00\x01\x00\x05BU\ +\x00\x00\x01z\x88\x90@X\ +\x00\x00\x11f\x00\x00\x00\x00\x00\x01\x00\x05R}\ +\x00\x00\x01z\x88\x90@\x98\ +" + +def qInitResources(): + QtCore.qRegisterResourceData(0x03, qt_resource_struct, qt_resource_name, qt_resource_data) + +def qCleanupResources(): + QtCore.qUnregisterResourceData(0x03, qt_resource_struct, qt_resource_name, qt_resource_data) + +qInitResources() diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_error_controller.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_error_controller.py new file mode 100644 index 0000000000..e6271a5a75 --- /dev/null +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_error_controller.py @@ -0,0 +1,29 @@ +""" +Copyright (c) Contributors to the Open 3D Engine Project. +For complete copyright and license terms please see the LICENSE at the root of this distribution. + +SPDX-License-Identifier: Apache-2.0 OR MIT +""" + +from unittest import TestCase +from unittest.mock import (call, MagicMock, patch) + +from controller.error_controller import ErrorController + +class TestErrorController(TestCase): + """ + ErrorController unit test cases + """ + def setUp(self) -> None: + view_manager_patcher: patch = patch("controller.error_controller.ViewManager") + self.addCleanup(view_manager_patcher.stop) + self._mock_view_manager: MagicMock = view_manager_patcher.start() + + self._mocked_view_manager: MagicMock = self._mock_view_manager.get_instance.return_value + self._mocked_error_page: MagicMock = self._mocked_view_manager.get_error_page.return_value + + self._test_error_controller: ErrorController = ErrorController() + self._test_error_controller.setup() + + def test_setup_with_expected_behavior_connected(self) -> None: + self._mocked_error_page.ok_button.clicked.connect.assert_called_once_with(self._test_error_controller._ok) diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_view_edit_controller.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_view_edit_controller.py index f854d2cd68..c73bddcd9c 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_view_edit_controller.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_view_edit_controller.py @@ -22,6 +22,8 @@ class TestViewEditController(TestCase): TODO: add test cases once error handling is ready """ _expected_account_id: str = "1234567890" + _expected_account_id_attribute_name = "AccountId" + _expected_account_id_template_vale: str = "EMPTY" _expected_region: str = "aws-global" _expected_config_directory: str = "dummy/directory/" _expected_config_file_name: str = "dummy.json" @@ -98,8 +100,6 @@ class TestViewEditController(TestCase): self._test_view_edit_controller._filter_based_on_search_text) self._mocked_view_edit_page.cancel_button.clicked.connect.assert_called_once_with( self._test_view_edit_controller._cancel) - self._mocked_view_edit_page.create_new_button.clicked.connect.assert_called_once_with( - self._test_view_edit_controller._create_new_config_file) self._mocked_view_edit_page.rescan_button.clicked.connect.assert_called_once_with( self._test_view_edit_controller._rescan_config_directory) @@ -301,6 +301,7 @@ class TestViewEditController(TestCase): expected_new_config_directory, constants.RESOURCE_MAPPING_CONFIG_FILE_NAME_SUFFIX) assert self._mocked_configuration_manager.configuration.config_files == [] self._mocked_view_edit_page.set_config_files.assert_called_with([]) + self._mocked_view_edit_page.set_config_location.assert_called_with(expected_new_config_directory) self._test_view_edit_controller.set_notification_page_frame_text_sender.emit.assert_called_once_with( notification_label_text.NOTIFICATION_LOADING_MESSAGE) @@ -418,13 +419,18 @@ class TestViewEditController(TestCase): self, mock_json_utils: MagicMock, mock_file_utils: MagicMock) -> None: self._mocked_view_edit_page.config_file_combobox.currentText.return_value = \ TestViewEditController._expected_config_file_name - expected_json_dict: Dict[str, any] = {"dummyKey": "dummyValue"} + expected_json_dict: Dict[str, any] = { + "dummyKey": "dummyValue", + self._expected_account_id_attribute_name: self._expected_account_id_template_vale} + mock_json_utils.RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME = self._expected_account_id_attribute_name + mock_json_utils.RESOURCE_MAPPING_ACCOUNTID_TEMPLATE_VALUE = self._expected_account_id_template_vale mock_json_utils.validate_resources_according_to_json_schema.return_value = [] mock_json_utils.convert_resources_to_json_dict.return_value = expected_json_dict mock_file_utils.join_path.return_value = TestViewEditController._expected_config_file_full_path mocked_call_args: call = self._mocked_view_edit_page.save_changes_button.clicked.connect.call_args[0] mocked_call_args[0]() # triggering save_changes_button connected function + assert expected_json_dict["AccountId"] == self._mocked_configuration_manager.configuration.account_id mock_json_utils.convert_resources_to_json_dict.assert_called_once() mock_json_utils.write_into_json_file.assert_called_once_with( TestViewEditController._expected_config_file_full_path, expected_json_dict) @@ -468,37 +474,6 @@ class TestViewEditController(TestCase): mocked_call_args[0]() # triggering cancel_button connected function mock_application.instance.return_value.quit.assert_called_once() - @patch("controller.view_edit_controller.file_utils") - @patch("controller.view_edit_controller.json_utils") - def test_page_create_new_button_invoke_view_edit_page_set_config_files_with_expected_config_files( - self, mock_json_utils: MagicMock, mock_file_utils: MagicMock) -> None: - expected_config_files: List[str] = ["dummyfile"] - mock_file_utils.find_files_with_suffix_under_directory.return_value = expected_config_files - mocked_call_args: call = \ - self._mocked_view_edit_page.create_new_button.clicked.connect.call_args[0] - - mocked_call_args[0]() # triggering create_new_button connected function - mock_file_utils.join_path.assert_called_once() - mock_json_utils.create_empty_resource_mapping_file.assert_called_once() - mock_file_utils.find_files_with_suffix_under_directory.assert_called_once() - self._mocked_view_edit_page.set_config_files.assert_called_with(expected_config_files) - self._test_view_edit_controller.set_notification_frame_text_sender.emit.assert_called_once() - - @patch("controller.view_edit_controller.file_utils") - @patch("controller.view_edit_controller.json_utils") - def test_page_create_new_button_post_notification_when_create_file_throw_exception( - self, mock_json_utils: MagicMock, mock_file_utils: MagicMock) -> None: - expected_config_files: List[str] = ["dummyfile"] - mock_json_utils.create_empty_resource_mapping_file.side_effect = IOError("dummy IO error") - mocked_call_args: call = \ - self._mocked_view_edit_page.create_new_button.clicked.connect.call_args[0] - - mocked_call_args[0]() # triggering create_new_button connected function - mock_file_utils.join_path.assert_called_once() - mock_json_utils.create_empty_resource_mapping_file.assert_called_once() - mock_file_utils.find_files_with_suffix_under_directory.assert_not_called() - assert len(self._test_view_edit_controller.set_notification_frame_text_sender.emit.mock_calls) == 2 - @patch("controller.view_edit_controller.file_utils") def test_page_rescan_button_post_notification_when_find_files_throw_exception( self, mock_file_utils: MagicMock) -> None: diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_json_utils.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_json_utils.py index cadcca6ee6..7eb92ff222 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_json_utils.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_json_utils.py @@ -43,7 +43,7 @@ class TestJsonUtils(TestCase): json_utils._RESOURCE_MAPPING_TYPE_JSON_KEY_NAME: _expected_bucket_type, json_utils._RESOURCE_MAPPING_NAMEID_JSON_KEY_NAME: _expected_bucket_name }}, - json_utils._RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME: _expected_account_id, + json_utils.RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME: _expected_account_id, json_utils._RESOURCE_MAPPING_REGION_JSON_KEY_NAME: _expected_region, json_utils._RESOURCE_MAPPING_VERSION_JSON_KEY_NAME: json_utils._RESOURCE_MAPPING_JSON_FORMAT_VERSION } @@ -64,7 +64,7 @@ class TestJsonUtils(TestCase): def test_convert_resources_to_json_dict_return_expected_json_dict(self) -> None: old_json_dict: Dict[str, any] = { - json_utils._RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME: TestJsonUtils._expected_account_id, + json_utils.RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME: TestJsonUtils._expected_account_id, json_utils._RESOURCE_MAPPING_REGION_JSON_KEY_NAME: TestJsonUtils._expected_region } actual_json_dict: Dict[str, any] = \ @@ -76,20 +76,6 @@ class TestJsonUtils(TestCase): json_utils.convert_json_dict_to_resources(TestJsonUtils._expected_json_dict) assert actual_resources == [TestJsonUtils._expected_bucket_resource_mapping] - def test_create_empty_resource_mapping_file_succeed(self) -> None: - mocked_open: MagicMock = MagicMock() - self._mock_open.return_value.__enter__.return_value = mocked_open - expected_json_dict: Dict[str, any] = \ - {json_utils._RESOURCE_MAPPING_JSON_KEY_NAME: {}, - json_utils._RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME: TestJsonUtils._expected_account_id, - json_utils._RESOURCE_MAPPING_REGION_JSON_KEY_NAME: TestJsonUtils._expected_region, - json_utils._RESOURCE_MAPPING_VERSION_JSON_KEY_NAME: json_utils._RESOURCE_MAPPING_JSON_FORMAT_VERSION} - json_utils.create_empty_resource_mapping_file(TestJsonUtils._expected_file_name, - TestJsonUtils._expected_account_id, - TestJsonUtils._expected_region) - self._mock_open.assert_called_once_with(TestJsonUtils._expected_file_name, "w") - self._mock_json_dump.assert_called_once_with(expected_json_dict, mocked_open, indent=4, sort_keys=True) - def test_read_from_json_file_return_expected_json_dict(self) -> None: mocked_open: MagicMock = MagicMock() self._mock_open.return_value.__enter__.return_value = mocked_open @@ -114,12 +100,18 @@ class TestJsonUtils(TestCase): def test_validate_json_dict_according_to_json_schema_raise_error_when_json_dict_has_no_accountid(self) -> None: invalid_json_dict: Dict[str, any] = copy.deepcopy(TestJsonUtils._expected_json_dict) - invalid_json_dict.pop(json_utils._RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME) + invalid_json_dict.pop(json_utils.RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME) self.assertRaises(KeyError, json_utils.validate_json_dict_according_to_json_schema, invalid_json_dict) + def test_validate_json_dict_according_to_json_schema_pass_when_json_dict_has_template_accountid(self) -> None: + valid_json_dict: Dict[str, any] = copy.deepcopy(TestJsonUtils._expected_json_dict) + valid_json_dict[json_utils.RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME] = \ + json_utils.RESOURCE_MAPPING_ACCOUNTID_TEMPLATE_VALUE + json_utils.validate_json_dict_according_to_json_schema(valid_json_dict) + def test_validate_json_dict_according_to_json_schema_raise_error_when_json_dict_has_invalid_accountid(self) -> None: invalid_json_dict: Dict[str, any] = copy.deepcopy(TestJsonUtils._expected_json_dict) - invalid_json_dict[json_utils._RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME] = \ + invalid_json_dict[json_utils.RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME] = \ TestJsonUtils._expected_invalid_account_id self.assertRaises(ValueError, json_utils.validate_json_dict_according_to_json_schema, invalid_json_dict) diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/json_utils.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/json_utils.py index 10f7c8ed33..5b9377ada3 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/json_utils.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/json_utils.py @@ -22,16 +22,16 @@ logger = logging.getLogger(__name__) _RESOURCE_MAPPING_JSON_KEY_NAME: str = "AWSResourceMappings" _RESOURCE_MAPPING_TYPE_JSON_KEY_NAME: str = "Type" _RESOURCE_MAPPING_NAMEID_JSON_KEY_NAME: str = "Name/ID" -_RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME: str = "AccountId" _RESOURCE_MAPPING_REGION_JSON_KEY_NAME: str = "Region" _RESOURCE_MAPPING_VERSION_JSON_KEY_NAME: str = "Version" _RESOURCE_MAPPING_JSON_FORMAT_VERSION: str = "1.0.0" -_RESOURCE_MAPPING_ACCOUNTID_PATTERN: str = "^[0-9]{12}$" +RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME: str = "AccountId" +RESOURCE_MAPPING_ACCOUNTID_TEMPLATE_VALUE: str = "EMPTY" +_RESOURCE_MAPPING_ACCOUNTID_PATTERN: str = f"^[0-9]{{12}}|{RESOURCE_MAPPING_ACCOUNTID_TEMPLATE_VALUE}$" _RESOURCE_MAPPING_REGION_PATTERN: str = "^[a-z]{2}-[a-z]{4,9}-[0-9]{1}$" _RESOURCE_MAPPING_VERSION_PATTERN: str = "^[0-9]{1}.[0-9]{1}.[0-9]{1}$" - def _add_validation_error_message(errors: Dict[int, List[str]], row: int, error_message: str) -> None: if row in errors.keys(): errors[row].append(error_message) @@ -64,9 +64,9 @@ def _validate_required_key_in_json_dict(json_dict: Dict[str, any], json_dict_nam def convert_resources_to_json_dict(resources: List[ResourceMappingAttributes], old_json_dict: Dict[str, any]) -> Dict[str, any]: - default_account_id: str = old_json_dict[_RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME] + default_account_id: str = old_json_dict[RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME] default_region: str = old_json_dict[_RESOURCE_MAPPING_REGION_JSON_KEY_NAME] - json_dict: Dict[str, any] = {_RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME: default_account_id, + json_dict: Dict[str, any] = {RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME: default_account_id, _RESOURCE_MAPPING_REGION_JSON_KEY_NAME: default_region, _RESOURCE_MAPPING_VERSION_JSON_KEY_NAME: _RESOURCE_MAPPING_JSON_FORMAT_VERSION, _RESOURCE_MAPPING_JSON_KEY_NAME: {}} @@ -76,7 +76,7 @@ def convert_resources_to_json_dict(resources: List[ResourceMappingAttributes], json_resource_attributes = {_RESOURCE_MAPPING_TYPE_JSON_KEY_NAME: resource.type, _RESOURCE_MAPPING_NAMEID_JSON_KEY_NAME: resource.name_id} if not resource.account_id == default_account_id: - json_resource_attributes[_RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME] = resource.account_id + json_resource_attributes[RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME] = resource.account_id if not resource.region == default_region: json_resource_attributes[_RESOURCE_MAPPING_REGION_JSON_KEY_NAME] = resource.region @@ -88,7 +88,7 @@ def convert_resources_to_json_dict(resources: List[ResourceMappingAttributes], def convert_json_dict_to_resources(json_dict: Dict[str, any]) -> List[ResourceMappingAttributes]: - default_account_id: str = json_dict[_RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME] + default_account_id: str = json_dict[RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME] default_region: str = json_dict[_RESOURCE_MAPPING_REGION_JSON_KEY_NAME] resources: List[ResourceMappingAttributes] = [] @@ -102,8 +102,8 @@ def convert_json_dict_to_resources(json_dict: Dict[str, any]) -> List[ResourceMa .build_type(resource_value[_RESOURCE_MAPPING_TYPE_JSON_KEY_NAME]) \ .build_name_id(resource_value[_RESOURCE_MAPPING_NAMEID_JSON_KEY_NAME]) - if _RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME in resource_value.keys(): - resource_builder.build_account_id(resource_value[_RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME]) + if RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME in resource_value.keys(): + resource_builder.build_account_id(resource_value[RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME]) else: resource_builder.build_account_id(default_account_id) @@ -119,14 +119,6 @@ def convert_json_dict_to_resources(json_dict: Dict[str, any]) -> List[ResourceMa return resources -def create_empty_resource_mapping_file(file_name: str, account_id: str, region: str) -> None: - json_dict: Dict[str, any] = {_RESOURCE_MAPPING_JSON_KEY_NAME: {}, - _RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME: account_id, - _RESOURCE_MAPPING_REGION_JSON_KEY_NAME: region, - _RESOURCE_MAPPING_VERSION_JSON_KEY_NAME: _RESOURCE_MAPPING_JSON_FORMAT_VERSION} - write_into_json_file(file_name, json_dict) - - def read_from_json_file(file_name: str) -> Dict[str, any]: try: json_dict: Dict[str, any] = {} @@ -179,7 +171,7 @@ def validate_resources_according_to_json_schema(resources: List[ResourceMappingA invalid_resources, row_count, error_messages.INVALID_FORMAT_UNEXPECTED_VALUE_IN_TABLE_ERROR_MESSAGE.format( resource.account_id, - _RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME, + RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME, _RESOURCE_MAPPING_ACCOUNTID_PATTERN)) if not re.match(_RESOURCE_MAPPING_REGION_PATTERN, resource.region): @@ -198,11 +190,11 @@ def validate_json_dict_according_to_json_schema(json_dict: Dict[str, any]) -> No _validate_required_key_in_json_dict(json_dict, "root", _RESOURCE_MAPPING_VERSION_JSON_KEY_NAME) _validate_required_key_in_json_dict(json_dict, "root", _RESOURCE_MAPPING_JSON_KEY_NAME) - _validate_required_key_in_json_dict(json_dict, "root", _RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME) - if not re.match(_RESOURCE_MAPPING_ACCOUNTID_PATTERN, json_dict[_RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME]): + _validate_required_key_in_json_dict(json_dict, "root", RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME) + if not re.match(_RESOURCE_MAPPING_ACCOUNTID_PATTERN, json_dict[RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME]): raise ValueError(error_messages.INVALID_FORMAT_UNEXPECTED_VALUE_IN_FILE_ERROR_MESSAGE.format( - json_dict[_RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME], - f"root/{_RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME}", + json_dict[RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME], + f"root/{RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME}", _RESOURCE_MAPPING_ACCOUNTID_PATTERN)) _validate_required_key_in_json_dict(json_dict, "root", _RESOURCE_MAPPING_REGION_JSON_KEY_NAME) diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/common_view_components.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/common_view_components.py index 7797905dd7..8a9fc1625d 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/common_view_components.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/common_view_components.py @@ -8,7 +8,7 @@ SPDX-License-Identifier: Apache-2.0 OR MIT from PySide2.QtCore import Slot from PySide2.QtGui import (QIcon, QPixmap) from PySide2.QtWidgets import (QFrame, QHBoxLayout, QLabel, QLayout, QLineEdit, QPushButton, - QSizePolicy, QWidget) + QSizePolicy, QVBoxLayout, QWidget) class SearchFilterLineEdit(QLineEdit): @@ -25,39 +25,61 @@ class SearchFilterLineEdit(QLineEdit): class NotificationFrame(QFrame): """NotificationFrame is composed of information icon, notification title and close icon""" - def __init__(self, parent: QWidget, pixmap: QPixmap, title: str, closeable: bool) -> None: + def __init__(self, parent: QWidget, pixmap: QPixmap, content: str, closeable: bool, title: str = '') -> None: super().__init__(parent) self.setObjectName("NotificationFrame") - self.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Maximum)) + self.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Maximum) self.setFrameStyle(QFrame.StyledPanel | QFrame.Plain) + self._header_layout: QHBoxLayout = QHBoxLayout(self) + self._header_layout.setSizeConstraint(QLayout.SetMinimumSize) + self._header_layout.setContentsMargins(0, 0, 0, 0) + self._header_layout.setSpacing(0) + icon_label: QLabel = QLabel(self) icon_label.setObjectName("NotificationIcon") icon_label.setPixmap(pixmap) + self._header_layout.addWidget(icon_label) + + text_widget = QWidget(self) + text_layout: QVBoxLayout = QVBoxLayout(text_widget) + text_layout.setContentsMargins(0, 0, 0, 0) + text_layout.setSpacing(5) self._title_label: QLabel = QLabel(title, self) - self._title_label.setOpenExternalLinks(True) self._title_label.setObjectName("NotificationTitle") - self._title_label.setSizePolicy(QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Preferred)) - self._title_label.setWordWrap(True) + self._title_label.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Preferred) + text_layout.addWidget(self._title_label) + if not title: + self._title_label.hide() + + self._content_label: QLabel = QLabel(content, self) + self._content_label.setOpenExternalLinks(True) + self._content_label.setObjectName("NotificationContent") + self._content_label.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Preferred) + self._content_label.setWordWrap(True) + text_layout.addWidget(self._content_label) + + self._header_layout.addWidget(text_widget) - header_layout: QHBoxLayout = QHBoxLayout(self) - header_layout.setSizeConstraint(QLayout.SetMinimumSize) - header_layout.setContentsMargins(0, 0, 0, 0) - header_layout.addWidget(icon_label) - header_layout.addWidget(self._title_label) if closeable: cancel_button: QPushButton = QPushButton(self) cancel_button.setIcon(QIcon(":/stylesheet/img/close.svg")) cancel_button.setFlat(True) cancel_button.clicked.connect(self.hide) - header_layout.addWidget(cancel_button) - self.setLayout(header_layout) + self._header_layout.addWidget(cancel_button) + self.setLayout(self._header_layout) self.setVisible(False) @Slot(str) - def set_frame_text_receiver(self, text: str) -> None: - self._title_label.setText(text) + def set_frame_text_receiver(self, content: str, title: str = '') -> None: + if title: + self._title_label.setText(title) + self._title_label.show() + else: + self._title_label.hide() + + self._content_label.setText(content) self.setVisible(True) diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/error_page.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/error_page.py index df4ce946bb..4232dcba85 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/error_page.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/error_page.py @@ -5,6 +5,7 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT """ +from PySide2.QtCore import Qt from PySide2.QtGui import QPixmap from PySide2.QtWidgets import (QHBoxLayout, QLayout, QPushButton, QSizePolicy, QSpacerItem, QVBoxLayout, QWidget) @@ -24,7 +25,13 @@ class ErrorPage(QWidget): page_vertical_layout: QVBoxLayout = QVBoxLayout(self) page_vertical_layout.setSizeConstraint(QLayout.SetMinimumSize) - page_vertical_layout.setMargin(0) + page_vertical_layout.setContentsMargins( + view_size_constants.ERROR_PAGE_LAYOUT_MARGIN_LEFTRIGHT, + view_size_constants.ERROR_PAGE_LAYOUT_MARGIN_TOPBOTTOM, + view_size_constants.ERROR_PAGE_LAYOUT_MARGIN_LEFTRIGHT, + view_size_constants.ERROR_PAGE_LAYOUT_MARGIN_TOPBOTTOM + ) + page_vertical_layout.setSpacing(view_size_constants.ERROR_PAGE_LAYOUT_SPACING) self._setup_notification_area() page_vertical_layout.addWidget(self._notification_area) @@ -39,15 +46,16 @@ class ErrorPage(QWidget): view_size_constants.ERROR_PAGE_NOTIFICATION_AREA_HEIGHT) notification_area_layout: QVBoxLayout = QVBoxLayout(self._notification_area) + notification_area_layout.setSpacing(0) notification_area_layout.setSizeConstraint(QLayout.SetMinimumSize) - notification_area_layout.setContentsMargins( - view_size_constants.ERROR_PAGE_LAYOUT_MARGIN_LEFTRIGHT, - view_size_constants.MAIN_PAGE_LAYOUT_MARGIN_TOPBOTTOM, - view_size_constants.ERROR_PAGE_LAYOUT_MARGIN_LEFTRIGHT, 0) + notification_area_layout.setContentsMargins(0, 0, 0, 0) + notification_area_layout.setSpacing(0) + notification_area_layout.setAlignment(Qt.AlignTop | Qt.AlignLeft) notification_frame: NotificationFrame = \ - NotificationFrame(self, QPixmap(":/error_report_warning.svg"), - error_messages.ERROR_PAGE_TOOL_SETUP_ERROR_MESSAGE, False) + NotificationFrame(self, QPixmap(":/error_report_helper.svg"), + error_messages.ERROR_PAGE_TOOL_SETUP_ERROR_MESSAGE, + False, error_messages.ERROR_PAGE_TOOL_SETUP_ERROR_TITLE) notification_frame.setObjectName("ErrorPage") notification_frame.setMinimumSize(view_size_constants.ERROR_PAGE_MAIN_WINDOW_WIDTH, view_size_constants.ERROR_PAGE_NOTIFICATION_AREA_HEIGHT) @@ -62,11 +70,8 @@ class ErrorPage(QWidget): footer_area_layout: QHBoxLayout = QHBoxLayout(self._footer_area) footer_area_layout.setSizeConstraint(QLayout.SetMinimumSize) - footer_area_layout.setContentsMargins( - view_size_constants.ERROR_PAGE_LAYOUT_MARGIN_LEFTRIGHT, - view_size_constants.ERROR_PAGE_LAYOUT_MARGIN_TOPBOTTOM, - view_size_constants.ERROR_PAGE_LAYOUT_MARGIN_LEFTRIGHT, - view_size_constants.ERROR_PAGE_LAYOUT_MARGIN_TOPBOTTOM) + footer_area_layout.setContentsMargins(0, 0, 0, 0) + footer_area_layout.setAlignment(Qt.AlignBottom | Qt.AlignRight) footer_area_spacer: QSpacerItem = QSpacerItem(view_size_constants.ERROR_PAGE_MAIN_WINDOW_WIDTH, view_size_constants.INTERACTION_COMPONENT_HEIGHT, diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/view_edit_page.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/view_edit_page.py index aabe634c0e..b673e547a0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/view_edit_page.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/view_edit_page.py @@ -18,6 +18,9 @@ from model.resource_proxy_model import ResourceProxyModel from model.resource_table_model import (ResourceTableConstants, ResourceTableModel) from view.common_view_components import (NotificationFrame, SearchFilterLineEdit) +HIGHLIGHT_FIELD_PROPERTY = 'HighlightField' +HIGHLIGHT_TEXT_PROPERTY = 'HighlightText' + class ViewEditPageConstants(object): NOTIFICATION_PAGE_INDEX = 0 @@ -180,6 +183,7 @@ class ViewEditPage(QWidget): view_size_constants.INTERACTION_COMPONENT_HEIGHT) self._config_file_combobox.setCurrentIndex(-1) header_area_layout.addWidget(self._config_file_combobox) + self._config_file_combobox.currentIndexChanged.connect(self._set_config_file_combobox_style) header_area_spacer: QSpacerItem = QSpacerItem(view_size_constants.TOOL_APPLICATION_MAIN_WINDOW_WIDTH, view_size_constants.INTERACTION_COMPONENT_HEIGHT, @@ -202,7 +206,6 @@ class ViewEditPage(QWidget): self._config_location_button: QPushButton = QPushButton(self._header_area) self._config_location_button.setIcon(QIcon(":/Gallery/Folder.svg")) - self._config_location_button.setFlat(True) self._config_location_button.setMinimumSize(view_size_constants.INTERACTION_COMPONENT_HEIGHT, view_size_constants.INTERACTION_COMPONENT_HEIGHT) header_area_layout.addWidget(self._config_location_button) @@ -341,13 +344,6 @@ class ViewEditPage(QWidget): view_size_constants.INTERACTION_COMPONENT_HEIGHT) footer_area_layout.addWidget(self._save_changes_button) - self._create_new_button: QPushButton = QPushButton(self._footer_area) - self._create_new_button.setObjectName("Primary") - self._create_new_button.setText(notification_label_text.VIEW_EDIT_PAGE_CREATE_NEW_TEXT) - self._create_new_button.setMinimumSize(view_size_constants.CREATE_NEW_BUTTON_WIDTH, - view_size_constants.INTERACTION_COMPONENT_HEIGHT) - footer_area_layout.addWidget(self._create_new_button) - self._rescan_button: QPushButton = QPushButton(self._footer_area) self._rescan_button.setObjectName("Secondary") self._rescan_button.setText(notification_label_text.VIEW_EDIT_PAGE_RESCAN_TEXT) @@ -398,10 +394,6 @@ class ViewEditPage(QWidget): def search_filter_input(self) -> QLineEdit: return self._search_filter_line_edit - @property - def create_new_button(self) -> QPushButton: - return self._create_new_button - @property def rescan_button(self) -> QPushButton: return self._rescan_button @@ -442,24 +434,53 @@ class ViewEditPage(QWidget): if config_files: self._notification_page_frame.set_frame_text_receiver( notification_label_text.VIEW_EDIT_PAGE_SELECT_CONFIG_FILE_MESSAGE) - self._create_new_button.setVisible(False) self._rescan_button.setVisible(False) else: self._notification_page_frame.set_frame_text_receiver( - notification_label_text.VIEW_EDIT_PAGE_NO_CONFIG_FILE_FOUND_MESSAGE) - self._create_new_button.setVisible(True) + notification_label_text.VIEW_EDIT_PAGE_NO_CONFIG_FILE_FOUND_MESSAGE, + notification_label_text.VIEW_EDIT_PAGE_NO_CONFIG_FILE_FOUND_TITLE) self._rescan_button.setVisible(True) - self._config_file_combobox.blockSignals(False) + self.set_config_location() - def set_config_location(self, config_location: str) -> None: + self._config_file_combobox.blockSignals(False) + self._set_config_file_combobox_style() + if len(config_files) == 1: + # If there's only one config file under the selected directory, load it automatically. + self._config_file_combobox.setCurrentIndex(0) + + def _set_config_file_combobox_style(self): + if self._config_file_combobox.count() > 0 and self._config_file_combobox.currentIndex() == -1: + self._config_file_combobox.setProperty(HIGHLIGHT_FIELD_PROPERTY, True) + else: + self._config_file_combobox.setProperty(HIGHLIGHT_FIELD_PROPERTY, False) + + # Update the style + self._config_file_combobox.setStyle(self._config_file_combobox.style()) + + def set_config_location(self, config_location: str = None) -> None: """Set config file location in text label""" self._config_location_text.clear() - metrics: QFontMetrics = QFontMetrics(self._config_location_text.font()) - elided_text: str = metrics.elidedText(config_location, Qt.ElideMiddle, self._config_location_text.width()) - self._config_location_text.setText(elided_text) - self._config_location_text.setToolTip(config_location) + if not config_location: + self._config_location_text.setText(notification_label_text.VIEW_EDIT_PAGE_INVALID_CONFIG_LOCATION_TEXT) + self._config_location_text.setProperty(HIGHLIGHT_TEXT_PROPERTY, True) + + self._config_location_button.setFlat(False) + self._config_location_button.setProperty(HIGHLIGHT_FIELD_PROPERTY, True) + else: + metrics: QFontMetrics = QFontMetrics(self._config_location_text.font()) + elided_text: str = metrics.elidedText(config_location, Qt.ElideMiddle, self._config_location_text.width()) + self._config_location_text.setText(elided_text) + self._config_location_text.setToolTip(config_location) + self._config_location_text.setProperty(HIGHLIGHT_TEXT_PROPERTY, False) + + self._config_location_button.setFlat(True) + self._config_location_button.setProperty(HIGHLIGHT_FIELD_PROPERTY, False) + + # Update the style + self._config_location_text.setStyle(self._config_location_text.style()) + self._config_location_button.setStyle(self._config_location_button.style()) def set_table_view_page_interactions_enabled(self, enabled: bool) -> None: self._table_view_page.setEnabled(enabled) diff --git a/Gems/AWSGameLift/Code/AWSGameLiftClient/Source/Activity/AWSGameLiftCreateSessionActivity.cpp b/Gems/AWSGameLift/Code/AWSGameLiftClient/Source/Activity/AWSGameLiftCreateSessionActivity.cpp index 16d0cf4241..0332ea7a76 100644 --- a/Gems/AWSGameLift/Code/AWSGameLiftClient/Source/Activity/AWSGameLiftCreateSessionActivity.cpp +++ b/Gems/AWSGameLift/Code/AWSGameLiftClient/Source/Activity/AWSGameLiftCreateSessionActivity.cpp @@ -90,7 +90,7 @@ namespace AWSGameLift { auto gameliftCreateSessionRequest = azrtti_cast(&createSessionRequest); - return gameliftCreateSessionRequest && gameliftCreateSessionRequest->m_maxPlayer >= 0 && + return gameliftCreateSessionRequest && (!gameliftCreateSessionRequest->m_aliasId.empty() || !gameliftCreateSessionRequest->m_fleetId.empty()); } } // namespace CreateSessionActivity diff --git a/Gems/AWSGameLift/Code/AWSGameLiftClient/Source/Activity/AWSGameLiftCreateSessionOnQueueActivity.cpp b/Gems/AWSGameLift/Code/AWSGameLiftClient/Source/Activity/AWSGameLiftCreateSessionOnQueueActivity.cpp index 1ac9c7db1c..52be365ea5 100644 --- a/Gems/AWSGameLift/Code/AWSGameLiftClient/Source/Activity/AWSGameLiftCreateSessionOnQueueActivity.cpp +++ b/Gems/AWSGameLift/Code/AWSGameLiftClient/Source/Activity/AWSGameLiftCreateSessionOnQueueActivity.cpp @@ -79,7 +79,7 @@ namespace AWSGameLift auto gameliftCreateSessionOnQueueRequest = azrtti_cast(&createSessionRequest); - return gameliftCreateSessionOnQueueRequest && gameliftCreateSessionOnQueueRequest->m_maxPlayer >= 0 && + return gameliftCreateSessionOnQueueRequest && !gameliftCreateSessionOnQueueRequest->m_queueName.empty() && !gameliftCreateSessionOnQueueRequest->m_placementId.empty(); } } // namespace CreateSessionOnQueueActivity diff --git a/Gems/AWSGameLift/Code/AWSGameLiftServer/CMakeLists.txt b/Gems/AWSGameLift/Code/AWSGameLiftServer/CMakeLists.txt index 4fa2ddd82b..798c6a6a25 100644 --- a/Gems/AWSGameLift/Code/AWSGameLiftServer/CMakeLists.txt +++ b/Gems/AWSGameLift/Code/AWSGameLiftServer/CMakeLists.txt @@ -16,6 +16,8 @@ ly_add_target( FILES_CMAKE awsgamelift_server_files.cmake INCLUDE_DIRECTORIES + PUBLIC + Include PRIVATE ../AWSGameLiftCommon/Source Source diff --git a/Gems/AWSGameLift/Code/AWSGameLiftServer/Include/Request/IAWSGameLiftServerRequests.h b/Gems/AWSGameLift/Code/AWSGameLiftServer/Include/Request/IAWSGameLiftServerRequests.h new file mode 100644 index 0000000000..e5b14319a8 --- /dev/null +++ b/Gems/AWSGameLift/Code/AWSGameLiftServer/Include/Request/IAWSGameLiftServerRequests.h @@ -0,0 +1,43 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include +#include + +namespace AWSGameLift +{ + //! IAWSGameLiftServerRequests + //! Server interfaces to expose Amazon GameLift Server SDK + class IAWSGameLiftServerRequests + { + public: + AZ_RTTI(IAWSGameLiftServerRequests, "{D76CD98D-4C37-4C25-82C4-4E8772706D70}"); + + IAWSGameLiftServerRequests() = default; + virtual ~IAWSGameLiftServerRequests() = default; + + //! Notify GameLift that the server process is ready to host a game session. + //! @return Whether the ProcessReady notification is sent to GameLift. + virtual bool NotifyGameLiftProcessReady() = 0; + }; + + // IAWSGameLiftServerRequests EBus wrapper for scripting + class AWSGameLiftServerRequests + : public AZ::EBusTraits + { + public: + using MutexType = AZStd::recursive_mutex; + static const AZ::EBusHandlerPolicy HandlerPolicy = AZ::EBusHandlerPolicy::Single; + static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::Single; + }; + using AWSGameLiftServerRequestBus = AZ::EBus; +} // namespace AWSGameLift diff --git a/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerManager.cpp b/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerManager.cpp index 94d6a7dac1..e739933ab2 100644 --- a/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerManager.cpp +++ b/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerManager.cpp @@ -10,8 +10,11 @@ #include #include +#include #include #include +#include +#include #include #include #include @@ -32,6 +35,18 @@ namespace AWSGameLift m_connectedPlayers.clear(); } + void AWSGameLiftServerManager::ActivateManager() + { + AZ::Interface::Register(this); + AWSGameLiftServerRequestBus::Handler::BusConnect(); + } + + void AWSGameLiftServerManager::DeactivateManager() + { + AWSGameLiftServerRequestBus::Handler::BusDisconnect(); + AZ::Interface::Unregister(this); + } + bool AWSGameLiftServerManager::AddConnectedPlayer(const AzFramework::PlayerConnectionConfig& playerConnectionConfig) { AZStd::lock_guard lock(m_gameliftMutex); @@ -51,6 +66,37 @@ namespace AWSGameLift } } + GameLiftServerProcessDesc AWSGameLiftServerManager::BuildGameLiftServerProcessDesc() + { + GameLiftServerProcessDesc serverProcessDesc; + AZ::IO::FileIOBase* fileIO = AZ::IO::FileIOBase::GetDirectInstance(); + if (fileIO) + { + const char pathToLogFolder[] = "@log@/"; + char resolvedPath[AZ_MAX_PATH_LEN]; + if (fileIO->ResolvePath(pathToLogFolder, resolvedPath, AZ_ARRAY_SIZE(resolvedPath))) + { + serverProcessDesc.m_logPaths.push_back(resolvedPath); + } + else + { + AZ_Error(AWSGameLiftServerManagerName, false, "Failed to resolve the path to the log folder."); + } + } + else + { + AZ_Error(AWSGameLiftServerManagerName, false, "Failed to get File IO."); + } + + if (auto console = AZ::Interface::Get(); console != nullptr) + { + [[maybe_unused]] AZ::GetValueResult getCvarResult = console->GetCvarValue("sv_port", serverProcessDesc.m_port); + AZ_Error(AWSGameLiftServerManagerName, getCvarResult == AZ::GetValueResult::Success, + "Lookup of 'sv_port' console variable failed with error %s", AZ::GetEnumString(getCvarResult)); + } + return serverProcessDesc; + } + AzFramework::SessionConfig AWSGameLiftServerManager::BuildSessionConfig(const Aws::GameLift::Server::Model::GameSession& gameSession) { AzFramework::SessionConfig sessionConfig; @@ -99,12 +145,12 @@ namespace AWSGameLift return AZ::IO::Path(); } - bool AWSGameLiftServerManager::InitializeGameLiftServerSDK() + void AWSGameLiftServerManager::InitializeGameLiftServerSDK() { if (m_serverSDKInitialized) { AZ_Error(AWSGameLiftServerManagerName, false, AWSGameLiftServerSDKAlreadyInitErrorMessage); - return false; + return; } AZ_TracePrintf(AWSGameLiftServerManagerName, "Initiating Amazon GameLift Server SDK ..."); @@ -115,8 +161,6 @@ namespace AWSGameLift AZ_Error(AWSGameLiftServerManagerName, m_serverSDKInitialized, AWSGameLiftServerInitSDKErrorMessage, initOutcome.GetError().GetErrorMessage().c_str()); - - return m_serverSDKInitialized; } void AWSGameLiftServerManager::HandleDestroySession() @@ -170,7 +214,7 @@ namespace AWSGameLift playerSessionId.c_str(), disconnectOutcome.GetError().GetErrorMessage().c_str()); } - bool AWSGameLiftServerManager::NotifyGameLiftProcessReady(const GameLiftServerProcessDesc& desc) + bool AWSGameLiftServerManager::NotifyGameLiftProcessReady() { if (!m_serverSDKInitialized) { @@ -178,6 +222,7 @@ namespace AWSGameLift return false; } + GameLiftServerProcessDesc desc = BuildGameLiftServerProcessDesc(); AZ_Warning(AWSGameLiftServerManagerName, desc.m_port != 0, AWSGameLiftServerTempPortErrorMessage); AZ::JobContext* jobContext = nullptr; diff --git a/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerManager.h b/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerManager.h index 09c9d4a719..c0f1c00bea 100644 --- a/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerManager.h +++ b/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerManager.h @@ -16,6 +16,7 @@ #include #include #include +#include namespace AWSGameLift { @@ -31,7 +32,8 @@ namespace AWSGameLift //! Manage the server process for hosting game sessions via GameLiftServerSDK. class AWSGameLiftServerManager - : public AzFramework::ISessionHandlingProviderRequests + : public AWSGameLiftServerRequestBus::Handler + , public AzFramework::ISessionHandlingProviderRequests { public: static constexpr const char AWSGameLiftServerManagerName[] = "AWSGameLiftServerManager"; @@ -68,14 +70,14 @@ namespace AWSGameLift AWSGameLiftServerManager(); virtual ~AWSGameLiftServerManager(); - //! Initialize GameLift API client by calling InitSDK(). - //! @return Whether the initialization is successful. - bool InitializeGameLiftServerSDK(); + void ActivateManager(); + void DeactivateManager(); - //! Notify GameLift that the server process is ready to host a game session. - //! @param desc GameLift server process settings. - //! @return Whether the ProcessReady notification is sent to GameLift. - bool NotifyGameLiftProcessReady(const GameLiftServerProcessDesc& desc); + //! Initialize GameLift API client by calling InitSDK(). + void InitializeGameLiftServerSDK(); + + // AWSGameLiftServerRequestBus interface implementation + bool NotifyGameLiftProcessReady() override; // ISessionHandlingProviderRequests interface implementation void HandleDestroySession() override; @@ -91,6 +93,9 @@ namespace AWSGameLift bool AddConnectedPlayer(const AzFramework::PlayerConnectionConfig& playerConnectionConfig); private: + //! Build the serverProcessDesc with appropriate server port number and log paths. + GameLiftServerProcessDesc BuildGameLiftServerProcessDesc(); + //! Build session config by using AWS GameLift Server GameSession Model. AzFramework::SessionConfig BuildSessionConfig(const Aws::GameLift::Server::Model::GameSession& gameSession); diff --git a/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerSystemComponent.cpp b/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerSystemComponent.cpp index edcdef3c26..a3f60fb849 100644 --- a/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerSystemComponent.cpp +++ b/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerSystemComponent.cpp @@ -74,49 +74,16 @@ namespace AWSGameLift void AWSGameLiftServerSystemComponent::Activate() { - if (m_gameLiftServerManager->InitializeGameLiftServerSDK()) - { - GameLiftServerProcessDesc serverProcessDesc; - UpdateGameLiftServerProcessDesc(serverProcessDesc); - m_gameLiftServerManager->NotifyGameLiftProcessReady(serverProcessDesc); - } + m_gameLiftServerManager->InitializeGameLiftServerSDK(); + m_gameLiftServerManager->ActivateManager(); } void AWSGameLiftServerSystemComponent::Deactivate() { + m_gameLiftServerManager->DeactivateManager(); m_gameLiftServerManager->HandleDestroySession(); } - void AWSGameLiftServerSystemComponent::UpdateGameLiftServerProcessDesc(GameLiftServerProcessDesc& serverProcessDesc) - { - AZ::IO::FileIOBase* fileIO = AZ::IO::FileIOBase::GetDirectInstance(); - if (fileIO) - { - const char pathToLogFolder[] = "@log@/"; - char resolvedPath[AZ_MAX_PATH_LEN]; - if (fileIO->ResolvePath(pathToLogFolder, resolvedPath, AZ_ARRAY_SIZE(resolvedPath))) - { - serverProcessDesc.m_logPaths.push_back(resolvedPath); - } - else - { - AZ_Error("AWSGameLift", false, "Failed to resolve the path to the log folder."); - } - } - else - { - AZ_Error("AWSGameLift", false, "Failed to get File IO."); - } - - if (auto console = AZ::Interface::Get(); console != nullptr) - { - [[maybe_unused]] AZ::GetValueResult getCvarResult = console->GetCvarValue("sv_port", serverProcessDesc.m_port); - AZ_Error( - "AWSGameLift", getCvarResult == AZ::GetValueResult::Success, "Lookup of 'sv_port' console variable failed with error %s", - AZ::GetEnumString(getCvarResult)); - } - } - void AWSGameLiftServerSystemComponent::SetGameLiftServerManager(AZStd::unique_ptr gameLiftServerManager) { m_gameLiftServerManager.reset(); diff --git a/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerSystemComponent.h b/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerSystemComponent.h index 3df7629c9f..d70558254c 100644 --- a/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerSystemComponent.h +++ b/Gems/AWSGameLift/Code/AWSGameLiftServer/Source/AWSGameLiftServerSystemComponent.h @@ -43,10 +43,6 @@ namespace AWSGameLift void SetGameLiftServerManager(AZStd::unique_ptr gameLiftServerManager); private: - //! Update the serverProcessDesc with appropriate server port number and log paths. - //! @param serverProcessDesc Desc object to update. - void UpdateGameLiftServerProcessDesc(GameLiftServerProcessDesc& serverProcessDesc); - AZStd::unique_ptr m_gameLiftServerManager; }; diff --git a/Gems/AWSGameLift/Code/AWSGameLiftServer/Tests/AWSGameLiftServerManagerTest.cpp b/Gems/AWSGameLift/Code/AWSGameLiftServer/Tests/AWSGameLiftServerManagerTest.cpp index a0b8f2e495..2c8929b297 100644 --- a/Gems/AWSGameLift/Code/AWSGameLiftServer/Tests/AWSGameLiftServerManagerTest.cpp +++ b/Gems/AWSGameLift/Code/AWSGameLiftServer/Tests/AWSGameLiftServerManagerTest.cpp @@ -10,6 +10,7 @@ #include #include +#include #include #include @@ -44,26 +45,39 @@ namespace UnitTest GameLiftServerProcessDesc serverDesc; m_serverManager = AZStd::make_unique>(); + + // Set up the file IO and alias + m_localFileIO = aznew AZ::IO::LocalFileIO(); + m_priorFileIO = AZ::IO::FileIOBase::GetInstance(); + + AZ::IO::FileIOBase::SetInstance(nullptr); + AZ::IO::FileIOBase::SetInstance(m_localFileIO); + m_localFileIO->SetAlias("@log@", AZ_TRAIT_TEST_ROOT_FOLDER); } void TearDown() override { + AZ::IO::FileIOBase::SetInstance(nullptr); + delete m_localFileIO; + AZ::IO::FileIOBase::SetInstance(m_priorFileIO); + m_serverManager.reset(); AWSGameLiftServerFixture::TearDown(); } AZStd::unique_ptr> m_serverManager; + AZ::IO::FileIOBase* m_priorFileIO; + AZ::IO::FileIOBase* m_localFileIO; }; TEST_F(GameLiftServerManagerTest, InitializeGameLiftServerSDK_InitializeTwice_InitSDKCalledOnce) { EXPECT_CALL(*(m_serverManager->m_gameLiftServerSDKWrapperMockPtr), InitSDK()).Times(1); - - EXPECT_TRUE(m_serverManager->InitializeGameLiftServerSDK()); + m_serverManager->InitializeGameLiftServerSDK(); AZ_TEST_START_TRACE_SUPPRESSION; - EXPECT_FALSE(m_serverManager->InitializeGameLiftServerSDK()); + m_serverManager->InitializeGameLiftServerSDK(); AZ_TEST_STOP_TRACE_SUPPRESSION(1); } @@ -72,36 +86,34 @@ namespace UnitTest EXPECT_CALL(*(m_serverManager->m_gameLiftServerSDKWrapperMockPtr), ProcessReady(testing::_)).Times(0); AZ_TEST_START_TRACE_SUPPRESSION; - EXPECT_FALSE(m_serverManager->NotifyGameLiftProcessReady(GameLiftServerProcessDesc())); + EXPECT_FALSE(m_serverManager->NotifyGameLiftProcessReady()); AZ_TEST_STOP_TRACE_SUPPRESSION(1); } TEST_F(GameLiftServerManagerTest, NotifyGameLiftProcessReady_SDKInitialized_ProcessReadyNotificationSent) { - EXPECT_TRUE(m_serverManager->InitializeGameLiftServerSDK()); - + m_serverManager->InitializeGameLiftServerSDK(); EXPECT_CALL(*(m_serverManager->m_gameLiftServerSDKWrapperMockPtr), ProcessReady(testing::_)).Times(1); - EXPECT_TRUE(m_serverManager->NotifyGameLiftProcessReady(GameLiftServerProcessDesc())); + EXPECT_TRUE(m_serverManager->NotifyGameLiftProcessReady()); } TEST_F(GameLiftServerManagerTest, NotifyGameLiftProcessReady_ProcessReadyFails_TerminationNotificationSent) { - EXPECT_TRUE(m_serverManager->InitializeGameLiftServerSDK()); - + m_serverManager->InitializeGameLiftServerSDK(); EXPECT_CALL(*(m_serverManager->m_gameLiftServerSDKWrapperMockPtr), ProcessReady(testing::_)) .Times(1) .WillOnce(testing::Return(Aws::GameLift::GenericOutcome())); EXPECT_CALL(*(m_serverManager->m_gameLiftServerSDKWrapperMockPtr), ProcessEnding()).Times(1); AZ_TEST_START_TRACE_SUPPRESSION; - EXPECT_TRUE(m_serverManager->NotifyGameLiftProcessReady(GameLiftServerProcessDesc())); + EXPECT_TRUE(m_serverManager->NotifyGameLiftProcessReady()); AZ_TEST_STOP_TRACE_SUPPRESSION(1); } TEST_F(GameLiftServerManagerTest, OnProcessTerminate_OnDestroySessionBeginReturnsFalse_FailToNotifyGameLift) { m_serverManager->InitializeGameLiftServerSDK(); - m_serverManager->NotifyGameLiftProcessReady(GameLiftServerProcessDesc()); + m_serverManager->NotifyGameLiftProcessReady(); if (!AZ::Interface::Get()) { AZ::Interface::Register(m_serverManager.get()); @@ -122,7 +134,7 @@ namespace UnitTest TEST_F(GameLiftServerManagerTest, OnProcessTerminate_OnDestroySessionBeginReturnsTrue_TerminationNotificationSent) { m_serverManager->InitializeGameLiftServerSDK(); - m_serverManager->NotifyGameLiftProcessReady(GameLiftServerProcessDesc()); + m_serverManager->NotifyGameLiftProcessReady(); if (!AZ::Interface::Get()) { AZ::Interface::Register(m_serverManager.get()); @@ -141,7 +153,7 @@ namespace UnitTest TEST_F(GameLiftServerManagerTest, OnHealthCheck_OnSessionHealthCheckReturnsTrue_CallbackFunctionReturnsTrue) { m_serverManager->InitializeGameLiftServerSDK(); - m_serverManager->NotifyGameLiftProcessReady(GameLiftServerProcessDesc()); + m_serverManager->NotifyGameLiftProcessReady(); SessionNotificationsHandlerMock handlerMock; EXPECT_CALL(handlerMock, OnSessionHealthCheck()).Times(1).WillOnce(testing::Return(true)); EXPECT_TRUE(m_serverManager->m_gameLiftServerSDKWrapperMockPtr->m_healthCheckFunc()); @@ -150,7 +162,7 @@ namespace UnitTest TEST_F(GameLiftServerManagerTest, OnHealthCheck_OnSessionHealthCheckReturnsFalseAndTrue_CallbackFunctionReturnsFalse) { m_serverManager->InitializeGameLiftServerSDK(); - m_serverManager->NotifyGameLiftProcessReady(GameLiftServerProcessDesc()); + m_serverManager->NotifyGameLiftProcessReady(); SessionNotificationsHandlerMock handlerMock1; EXPECT_CALL(handlerMock1, OnSessionHealthCheck()).Times(1).WillOnce(testing::Return(false)); SessionNotificationsHandlerMock handlerMock2; @@ -161,7 +173,7 @@ namespace UnitTest TEST_F(GameLiftServerManagerTest, OnHealthCheck_OnSessionHealthCheckReturnsFalse_CallbackFunctionReturnsFalse) { m_serverManager->InitializeGameLiftServerSDK(); - m_serverManager->NotifyGameLiftProcessReady(GameLiftServerProcessDesc()); + m_serverManager->NotifyGameLiftProcessReady(); SessionNotificationsHandlerMock handlerMock; EXPECT_CALL(handlerMock, OnSessionHealthCheck()).Times(1).WillOnce(testing::Return(false)); EXPECT_FALSE(m_serverManager->m_gameLiftServerSDKWrapperMockPtr->m_healthCheckFunc()); @@ -170,7 +182,7 @@ namespace UnitTest TEST_F(GameLiftServerManagerTest, OnStartGameSession_OnCreateSessionBeginReturnsFalse_TerminationNotificationSent) { m_serverManager->InitializeGameLiftServerSDK(); - m_serverManager->NotifyGameLiftProcessReady(GameLiftServerProcessDesc()); + m_serverManager->NotifyGameLiftProcessReady(); SessionNotificationsHandlerMock handlerMock; EXPECT_CALL(handlerMock, OnCreateSessionBegin(testing::_)).Times(1).WillOnce(testing::Return(false)); EXPECT_CALL(handlerMock, OnDestroySessionBegin()).Times(1).WillOnce(testing::Return(true)); @@ -183,7 +195,7 @@ namespace UnitTest TEST_F(GameLiftServerManagerTest, OnStartGameSession_ActivateGameSessionSucceeds_RegisterAsHandler) { m_serverManager->InitializeGameLiftServerSDK(); - m_serverManager->NotifyGameLiftProcessReady(GameLiftServerProcessDesc()); + m_serverManager->NotifyGameLiftProcessReady(); SessionNotificationsHandlerMock handlerMock; EXPECT_CALL(handlerMock, OnCreateSessionBegin(testing::_)).Times(1).WillOnce(testing::Return(true)); EXPECT_CALL(handlerMock, OnDestroySessionBegin()).Times(1).WillOnce(testing::Return(true)); @@ -203,7 +215,7 @@ namespace UnitTest TEST_F(GameLiftServerManagerTest, OnStartGameSession_ActivateGameSessionFails_TerminationNotificationSent) { m_serverManager->InitializeGameLiftServerSDK(); - m_serverManager->NotifyGameLiftProcessReady(GameLiftServerProcessDesc()); + m_serverManager->NotifyGameLiftProcessReady(); SessionNotificationsHandlerMock handlerMock; EXPECT_CALL(handlerMock, OnCreateSessionBegin(testing::_)).Times(1).WillOnce(testing::Return(true)); EXPECT_CALL(handlerMock, OnDestroySessionBegin()).Times(1).WillOnce(testing::Return(true)); @@ -398,7 +410,6 @@ namespace UnitTest .WillOnce(Return(successOutcome)); AZStd::vector testThreadPool; - AZStd::atomic trueCount = 0; AZ_TEST_START_TRACE_SUPPRESSION; for (int index = 0; index < testThreadNumber; index++) { diff --git a/Gems/AWSGameLift/Code/AWSGameLiftServer/Tests/AWSGameLiftServerSystemComponentTest.cpp b/Gems/AWSGameLift/Code/AWSGameLiftServer/Tests/AWSGameLiftServerSystemComponentTest.cpp index bec4acbe70..b7cb0ef3cb 100644 --- a/Gems/AWSGameLift/Code/AWSGameLiftServer/Tests/AWSGameLiftServerSystemComponentTest.cpp +++ b/Gems/AWSGameLift/Code/AWSGameLiftServer/Tests/AWSGameLiftServerSystemComponentTest.cpp @@ -13,7 +13,6 @@ #include #include #include -#include #include namespace UnitTest @@ -37,22 +36,10 @@ namespace UnitTest m_AWSGameLiftServerSystemsComponent = aznew NiceMock(); m_entity->AddComponent(m_AWSGameLiftServerSystemsComponent); - - // Set up the file IO and alias - m_localFileIO = aznew AZ::IO::LocalFileIO(); - m_priorFileIO = AZ::IO::FileIOBase::GetInstance(); - - AZ::IO::FileIOBase::SetInstance(nullptr); - AZ::IO::FileIOBase::SetInstance(m_localFileIO); - m_localFileIO->SetAlias("@log@", AZ_TRAIT_TEST_ROOT_FOLDER); } void TearDown() override { - AZ::IO::FileIOBase::SetInstance(nullptr); - delete m_localFileIO; - AZ::IO::FileIOBase::SetInstance(m_priorFileIO); - m_entity->RemoveComponent(m_AWSGameLiftServerSystemsComponent); delete m_AWSGameLiftServerSystemsComponent; delete m_entity; @@ -70,9 +57,6 @@ namespace UnitTest AZ::Entity* m_entity; NiceMock* m_AWSGameLiftServerSystemsComponent; - - AZ::IO::FileIOBase* m_priorFileIO; - AZ::IO::FileIOBase* m_localFileIO; }; TEST_F(AWSGameLiftServerSystemComponentTest, ActivateDeactivateComponent_ExecuteInOrder_Success) diff --git a/Gems/AWSGameLift/Code/AWSGameLiftServer/awsgamelift_server_files.cmake b/Gems/AWSGameLift/Code/AWSGameLiftServer/awsgamelift_server_files.cmake index d07ef45b5f..95b5e1d2d2 100644 --- a/Gems/AWSGameLift/Code/AWSGameLiftServer/awsgamelift_server_files.cmake +++ b/Gems/AWSGameLift/Code/AWSGameLiftServer/awsgamelift_server_files.cmake @@ -8,6 +8,7 @@ set(FILES ../AWSGameLiftCommon/Source/AWSGameLiftSessionConstants.h + Include/Request/IAWSGameLiftServerRequests.h Source/AWSGameLiftServerManager.cpp Source/AWSGameLiftServerManager.h Source/AWSGameLiftServerSystemComponent.cpp diff --git a/Gems/AWSMetrics/Code/Source/IdentityProvider.cpp b/Gems/AWSMetrics/Code/Source/IdentityProvider.cpp index aa0f59976f..7e4ec05aba 100644 --- a/Gems/AWSMetrics/Code/Source/IdentityProvider.cpp +++ b/Gems/AWSMetrics/Code/Source/IdentityProvider.cpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include namespace AWSMetrics { @@ -39,8 +39,7 @@ namespace AWSMetrics return ""; } - AZ::IO::Path configIoPath(resolvedPath); - auto readOutcome = AzFramework::FileFunc::ReadJsonFile(configIoPath, fileIO); + auto readOutcome = AZ::JsonSerializationUtils::ReadJsonFile(resolvedPath); if (!readOutcome.IsSuccess()) { AZ_Error("AWSMetrics", false, readOutcome.GetError().c_str()); diff --git a/Gems/AWSMetrics/Code/Source/MetricsEvent.cpp b/Gems/AWSMetrics/Code/Source/MetricsEvent.cpp index e23c97a5fe..737ef6abc5 100644 --- a/Gems/AWSMetrics/Code/Source/MetricsEvent.cpp +++ b/Gems/AWSMetrics/Code/Source/MetricsEvent.cpp @@ -11,7 +11,7 @@ #include #include -#include +#include #include @@ -150,7 +150,7 @@ namespace AWSMetrics return false; } - auto result = AzFramework::FileFunc::ReadJsonFromString(stringStream.str().c_str()); + auto result = AZ::JsonSerializationUtils::ReadJsonString(stringStream.str().c_str()); if (!result.IsSuccess()) { return false; diff --git a/Gems/AWSMetrics/Code/Source/MetricsQueue.cpp b/Gems/AWSMetrics/Code/Source/MetricsQueue.cpp index 4cc037189a..ec90cf28ef 100644 --- a/Gems/AWSMetrics/Code/Source/MetricsQueue.cpp +++ b/Gems/AWSMetrics/Code/Source/MetricsQueue.cpp @@ -14,8 +14,8 @@ #include #include #include +#include #include -#include #include @@ -191,15 +191,7 @@ namespace AWSMetrics bool MetricsQueue::ReadFromJson(const AZStd::string& filePath) { - AZ::IO::FileIOBase* fileIO = AZ::IO::FileIOBase::GetDirectInstance(); - if (!fileIO) - { - AZ_Error("AWSMetrics", false, "Failed to get file IO instance"); - return false; - } - - AZ::IO::Path fileIoPath(filePath); - auto result = AzFramework::FileFunc::ReadJsonFile(fileIoPath, fileIO); + auto result = AZ::JsonSerializationUtils::ReadJsonFile(filePath); if (!result.IsSuccess() ||!ReadFromJsonDocument(result.GetValue())) { AZ_Error("AWSMetrics", false, "Failed to read metrics file %s", filePath.c_str()); diff --git a/Gems/AWSMetrics/Code/Tests/MetricsManagerTest.cpp b/Gems/AWSMetrics/Code/Tests/MetricsManagerTest.cpp index 2d9990ad1e..3f87a1079d 100644 --- a/Gems/AWSMetrics/Code/Tests/MetricsManagerTest.cpp +++ b/Gems/AWSMetrics/Code/Tests/MetricsManagerTest.cpp @@ -290,7 +290,7 @@ namespace AWSMetrics for (int index = 0; index < MaxNumMetricsEvents; ++index) { - producers.emplace_back(AZStd::thread([this, index]() + producers.emplace_back(AZStd::thread([index]() { AZStd::vector metricsAttributes; metricsAttributes.emplace_back(AZStd::move(MetricsAttribute(AwsMetricsAttributeKeyEventName, AttrValue))); diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/CMakeLists.txt b/Gems/Atom/Asset/ImageProcessingAtom/Code/CMakeLists.txt index 233ead9dea..dfeee011cc 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/CMakeLists.txt +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/CMakeLists.txt @@ -48,7 +48,7 @@ ly_add_target( PLATFORM_INCLUDE_FILES ${pal_source_dir}/platform_${PAL_PLATFORM_NAME_LOWERCASE}.cmake ${common_source_dir}/${PAL_TRAIT_COMPILER_ID}/imageprocessingatom_editor_static_${PAL_TRAIT_COMPILER_ID_LOWERCASE}.cmake - ${platform_tools_files} + ${platform_tools_files} INCLUDE_DIRECTORIES PUBLIC Include @@ -66,6 +66,7 @@ ly_add_target( 3rdParty::PVRTexTool 3rdParty::squish-ccr 3rdParty::tiff + 3rdParty::ISPCTexComp 3rdParty::ilmbase Legacy::CryCommon AZ::AzFramework diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageObject.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageObject.h index 561dee5880..5796a0c84d 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageObject.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageObject.h @@ -70,7 +70,6 @@ namespace ImageProcessingAtom virtual AZ::u32 GetPixelCount(AZ::u32 mip) const = 0; virtual AZ::u32 GetWidth(AZ::u32 mip) const = 0; virtual AZ::u32 GetHeight(AZ::u32 mip) const = 0; - virtual bool IsCubemap() const = 0; virtual AZ::u32 GetMipCount() const = 0; //get pixel data buffer diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp index 46b684493b..3493099d4c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp @@ -37,7 +37,7 @@ #include #include -#include +#include namespace ImageProcessingAtom { diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.cpp index bfe5e283b5..709bce4c54 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.cpp @@ -141,6 +141,11 @@ namespace ImageProcessingAtom ColorSpace CTSquisher::GetSupportedColorSpace([[maybe_unused]] EPixelFormat compressFormat) const { return ColorSpace::autoSelect; + } + + const char* CTSquisher::GetName() const + { + return "CTSquisher"; } EPixelFormat CTSquisher::GetSuggestedUncompressedFormat(EPixelFormat compressedfmt, EPixelFormat uncompressedfmt) const diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.h index 77865a596e..1e4aaf3f31 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.h @@ -27,6 +27,7 @@ namespace ImageProcessingAtom EPixelFormat GetSuggestedUncompressedFormat(EPixelFormat compressedfmt, EPixelFormat uncompressedfmt) const override; ColorSpace GetSupportedColorSpace(EPixelFormat compressFormat) const final; + const char* GetName() const final; private: static CryTextureSquisher::ECodingPreset GetCompressPreset(EPixelFormat compressFmt, EPixelFormat uncompressFmt); diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.cpp index 99205edb01..9013bff1db 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.cpp @@ -7,25 +7,19 @@ */ +#include #include #include #include - -// this is required for the AZ_TRAIT_IMAGEPROCESSING_USE_ISPC_TEXTURE_COMPRESSOR define -#include - -#if AZ_TRAIT_IMAGEPROCESSING_USE_ISPC_TEXTURE_COMPRESSOR #include -#endif namespace ImageProcessingAtom { - ICompressorPtr ICompressor::FindCompressor(EPixelFormat fmt, ColorSpace colorSpace, bool isCompressing) + ICompressorPtr ICompressor::FindCompressor(EPixelFormat fmt, [[maybe_unused]] ColorSpace colorSpace, bool isCompressing) { // The ISPC texture compressor is able to compress BC1, BC3, BC6H and BC7 formats, and all of the ASTC formats. // Note: The ISPC texture compressor is only able to compress images that are a multiple of the compressed format's blocksize. // Another limitation is that the compressor requires LDR source images to be in sRGB colorspace. -#if AZ_TRAIT_IMAGEPROCESSING_USE_ISPC_TEXTURE_COMPRESSOR if (ISPCCompressor::IsCompressedPixelFormatSupported(fmt)) { if ((isCompressing && ISPCCompressor::IsSourceColorSpaceSupported(colorSpace, fmt)) || (!isCompressing && ISPCCompressor::DoesSupportDecompress(fmt))) @@ -33,7 +27,6 @@ namespace ImageProcessingAtom return ICompressorPtr(new ISPCCompressor()); } } -#endif if (CTSquisher::IsCompressedPixelFormatSupported(fmt)) { diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.h index 4eb04590a5..dff71e59db 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.h @@ -48,6 +48,7 @@ namespace ImageProcessingAtom virtual IImageObjectPtr DecompressImage(IImageObjectPtr srcImage, EPixelFormat fmtDst) const = 0; virtual EPixelFormat GetSuggestedUncompressedFormat(EPixelFormat compressedfmt, EPixelFormat uncompressedfmt) const = 0; virtual ColorSpace GetSupportedColorSpace(EPixelFormat compressFormat) const = 0; + virtual const char* GetName() const = 0; //find compressor for specified compressed pixel format. isCompressing to indicate if it's for compressing or decompressing static ICompressorPtr FindCompressor(EPixelFormat fmt, ColorSpace colorSpace, bool isCompressing); diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.cpp index 9c002952be..73108d5502 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.cpp @@ -111,12 +111,15 @@ namespace ImageProcessingAtom { return ColorSpace::autoSelect; } + + const char* ETC2Compressor::GetName() const + { + return "ETC2Compressor"; + } IImageObjectPtr ETC2Compressor::CompressImage(IImageObjectPtr srcImage, EPixelFormat fmtDst, const CompressOption* compressOption) const { - const size_t srcPixelSize = 4; - //validate input EPixelFormat fmtSrc = srcImage->GetPixelFormat(); diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.h index 7e5354a185..9ab5a164a5 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.h @@ -24,7 +24,8 @@ namespace ImageProcessingAtom IImageObjectPtr DecompressImage(IImageObjectPtr srcImage, EPixelFormat fmtDst) const override; EPixelFormat GetSuggestedUncompressedFormat(EPixelFormat compressedfmt, EPixelFormat uncompressedfmt) const override; - virtual ColorSpace GetSupportedColorSpace(EPixelFormat compressFormat) const final; + ColorSpace GetSupportedColorSpace(EPixelFormat compressFormat) const final; + const char* GetName() const final; }; } // namespace ImageProcessingAtom diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.cpp index be6eb9511d..5e96c7274d 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.cpp @@ -111,6 +111,11 @@ namespace ImageProcessingAtom return ColorSpace::autoSelect; } + const char* ISPCCompressor::GetName() const + { + return "ISPCCompressor"; + } + IImageObjectPtr ISPCCompressor::CompressImage(IImageObjectPtr sourceImage, EPixelFormat destinationFormat, const CompressOption* compressOption) const { // Used to find the profile setters, depending on the image quality diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.h index 8652b60b68..2ab0dfc833 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.h @@ -28,7 +28,9 @@ namespace ImageProcessingAtom ColorSpace GetSupportedColorSpace(EPixelFormat compressFormat) const final; IImageObjectPtr CompressImage(IImageObjectPtr sourceImage, EPixelFormat destinationFormat, const CompressOption* compressOption) const final; - IImageObjectPtr DecompressImage(IImageObjectPtr sourceImage, EPixelFormat destinationFormat) const final; + IImageObjectPtr DecompressImage(IImageObjectPtr sourceImage, EPixelFormat destinationFormat) const final; + const char* GetName() const final; + EPixelFormat GetSuggestedUncompressedFormat(EPixelFormat compressedfmt, EPixelFormat uncompressedfmt) const final; }; diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.cpp index 7e11a83cae..7c899e4ad2 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.cpp @@ -7,20 +7,12 @@ */ #include +#include #include #include #include #include -#if AZ_TRAIT_IMAGEPROCESSING_PVRTEXLIB_USE_WINDLL_IMPORT -//_WINDLL_IMPORT need to be defined before including PVRTexLib header files to avoid linking error on windows. -#define _WINDLL_IMPORT -// NOMINMAX needs to be defined before including PVRTexLib header files (which include Windows.h) -// so that Windows.h doesn't define min/max. Otherwise, a compile error may arise in Uber builds -#ifndef NOMINMAX -#define NOMINMAX -#endif -#endif #include #include @@ -107,6 +99,11 @@ namespace ImageProcessingAtom return ColorSpace::autoSelect; } + const char* PVRTCCompressor::GetName() const + { + return "PVRTCCompressor"; + } + bool PVRTCCompressor::DoesSupportDecompress([[maybe_unused]] EPixelFormat fmtDst) { return true; diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.h index 86e31286b6..cedd6d6643 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.h @@ -25,5 +25,6 @@ namespace ImageProcessingAtom EPixelFormat GetSuggestedUncompressedFormat(EPixelFormat compressedfmt, EPixelFormat uncompressedfmt) const override; ColorSpace GetSupportedColorSpace(EPixelFormat compressFormat) const final; + const char* GetName() const final; }; } // namespace ImageProcessingAtom diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ColorChart.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ColorChart.cpp index 0b06e00a9f..b6e9cf4c8c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ColorChart.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ColorChart.cpp @@ -133,7 +133,6 @@ namespace ImageProcessingAtom IImageObjectPtr C3dLutColorChart::GenerateChartImage() { - const AZ::u32 mipCount = 1; IImageObjectPtr image(IImageObject::CreateImage(ePS_Red* ePS_Blue, ePS_Green, 1, ePixelFormat_R8G8B8A8)); { diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ConvertPixelFormat.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ConvertPixelFormat.cpp index 004f17c33d..b0f78d60a3 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ConvertPixelFormat.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ConvertPixelFormat.cpp @@ -6,6 +6,7 @@ * */ +#include #include #include @@ -97,9 +98,18 @@ namespace ImageProcessingAtom else { IImageObjectPtr dstImage = nullptr; + [[maybe_unused]] const PixelFormatInfo* compressedInfo = CPixelFormats::GetInstance().GetPixelFormatInfo(compressedFmt); if (isSrcUncompressed) { + AZ::u64 startTime = AZStd::GetTimeUTCMilliSecond(); dstImage = compressor->CompressImage(Get(), fmtDst, &m_compressOption); + AZ::u64 endTime = AZStd::GetTimeUTCMilliSecond(); + [[maybe_unused]] double processTime = static_cast(endTime - startTime) / 1000.0; + if (dstImage) + { + AZ_TracePrintf("Image Processing", "Image [%dx%d] was compressed to [%s] format by [%s] in %.3f seconds\n", + Get()->GetWidth(0), Get()->GetHeight(0), compressedInfo->szName, compressor->GetName(), processTime); + } } else { @@ -107,11 +117,13 @@ namespace ImageProcessingAtom } Set(dstImage); - } - - if (Get() == nullptr) - { - AZ_Error("Image Processing", false, "The selected compressor failed to compress this image"); + + if (dstImage == nullptr) + { + AZ_Error("Image Processing", false, "Failed to use [%s] to %s [%s] format", compressor->GetName(), + isSrcUncompressed ? "compress" : "decompress", + compressedInfo->szName); + } } } } diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Filter.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Filter.cpp index 0bfdf6d672..0387ec5c7b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Filter.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Filter.cpp @@ -209,18 +209,18 @@ namespace ImageProcessingAtom /* addition of c-pointers already takes care of datatype-sizes */ \ const signed long int dy = /*parm->mirror ? -1 :*/ 1; \ const unsigned int stridei = parm->incols * 1 * 1; \ - const unsigned int stridet = parm->subcols * 1 * 1; \ - const unsigned int strideo = parm->outcols * 1 * 1; \ + [[maybe_unused]] const unsigned int stridet = parm->subcols * 1 * 1; \ + [[maybe_unused]] const unsigned int strideo = parm->outcols * 1 * 1; \ /* offset and shift calculations still require the unmodified values */ \ const unsigned int strideiraw = parm->incols; \ - const unsigned int stridetraw = parm->subcols; \ + [[maybe_unused]] const unsigned int stridetraw = parm->subcols; \ const unsigned int strideoraw = parm->outcols; \ \ class Plane2D tmp(tmpcols, tmprows, 4); \ dtyp*** t = (dtyp***)tmp; \ int srcPos, dstPos; \ - bool plusminush = false; const bool of = true; \ - bool plusminusv = false; const bool nc = false; \ + bool plusminush = false; [[maybe_unused]] const bool of = true; \ + bool plusminusv = false; [[maybe_unused]] const bool nc = false; \ FilterWeights* fwh = calculateFilterWeights(parm->resample.colrem, parm->caged ? 0 : 0 - parm->region.subtop, parm->caged ? srccols : parm->subrows - parm->region.subtop, \ parm->resample.colquo, 0, dstcols, reps, parm->resample.colblur, parm->resample.wf, parm->resample.operation != eWindowEvaluation_Sum, plusminush); \ FilterWeights* fwv = calculateFilterWeights(parm->resample.rowrem, parm->caged ? 0 : 0 - parm->region.intop, parm->caged ? srcrows : parm->inrows - parm->region.intop, \ @@ -833,7 +833,7 @@ namespace ImageProcessingAtom #define filterRowFetch(srcOffs, srcSize, srcSkip, dstOffs, dstSize, dstSkip) \ /* vertical stride, horizontal fetch */ \ - getCxNFromStreamSwapped(srcSkip, i); \ + /* getCxNFromStreamSwapped(srcSkip, i); Expands to nothing */ \ getCxNFromStream(srcSkip, i); \ getCxNFromPlane(1); \ \ @@ -935,7 +935,7 @@ namespace ImageProcessingAtom comcpyCHistogram(); \ \ /* horizontal stride, vertical store */ \ - putCxNToStreamSwapped(dstSkip, o); \ + /* putCxNToStreamSwapped(dstSkip, o); Expands to nothing */ \ putCxNToStream(dstSkip, o); \ putCxNToPlane(1); \ \ diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.cpp index 170805aa57..41b0fd8b41 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.cpp @@ -296,9 +296,8 @@ namespace ImageProcessingAtom /* skip leading and trailing zeros */ if (trimZeros) { - /* set i0 and i1 to the nonzero support of the filter */ - i0 = i0; - i1 = i1 = lastnonzero + 1; + /* set i1 to the nonzero support of the filter */ + i1 = lastnonzero + 1; } if (sumiWeights != WEIGHTONE) diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/HighPass.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/HighPass.cpp index eefd5332be..e2071fb586 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/HighPass.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/HighPass.cpp @@ -58,9 +58,6 @@ namespace ImageProcessingAtom // linear interpolation FilterImage(MipGenType::triangle, MipGenEvalType::sum, 0.0f, 0.0f, m_img, dwMipDown, newImage, dstMip, NULL, NULL); - const AZ::u32 pixelCountIn = m_img->GetWidth(dstMip) * m_img->GetHeight(dstMip); - const AZ::u32 pixelCountOut = newImage->GetWidth(dstMip) * newImage->GetHeight(dstMip); - //substraction AZ::u8* srcPixelBuf; AZ::u32 srcPitch; diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.cpp index 8ce8b2d487..c6f1398703 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.cpp @@ -103,6 +103,10 @@ namespace ImageProcessingAtomEditor { readableString = "PC"; } + else if (platformStrLowerCase == "linux") + { + readableString = "Linux"; + } else if (platformStrLowerCase == "android") { readableString = "Android"; diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.cpp index 40d1429f4b..c688b0b20c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.cpp @@ -74,7 +74,7 @@ namespace ImageProcessingAtom builderDescriptor.m_busId = azrtti_typeid(); builderDescriptor.m_createJobFunction = AZStd::bind(&ImageBuilderWorker::CreateJobs, &m_imageBuilder, AZStd::placeholders::_1, AZStd::placeholders::_2); builderDescriptor.m_processJobFunction = AZStd::bind(&ImageBuilderWorker::ProcessJob, &m_imageBuilder, AZStd::placeholders::_1, AZStd::placeholders::_2); - builderDescriptor.m_version = 23; // [ATOM-14022] + builderDescriptor.m_version = 24; // [SPEC-7821] builderDescriptor.m_analysisFingerprint = ImageProcessingAtom::BuilderSettingManager::Instance()->GetAnalysisFingerprint(); m_imageBuilder.BusConnect(builderDescriptor.m_busId); AssetBuilderSDK::AssetBuilderBus::Broadcast(&AssetBuilderSDK::AssetBuilderBusTraits::RegisterBuilderInformation, builderDescriptor); diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp index b9054a9911..20367227bd 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp @@ -87,7 +87,7 @@ namespace ImageProcessingAtom if (dxgiFormat != DXGI_FORMAT_UNKNOWN) { int i = 0; - for (i; i < ePixelFormat_Count; i++) + for (; i < ePixelFormat_Count; i++) { const PixelFormatInfo* info = CPixelFormats::GetInstance().GetPixelFormatInfo((EPixelFormat)i); if (static_cast(info->d3d10Format) == dxgiFormat) @@ -506,7 +506,7 @@ namespace ImageProcessingAtom if (dxgiFormat != DXGI_FORMAT_UNKNOWN) { uint32_t i = 0; - for (i; i < ePixelFormat_Count; i++) + for (; i < ePixelFormat_Count; i++) { const PixelFormatInfo* info = CPixelFormats::GetInstance().GetPixelFormatInfo((EPixelFormat)i); if (static_cast(info->d3d10Format) == dxgiFormat) diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/QtImageLoader.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/QtImageLoader.cpp index 3ac36b8b17..4124eebcd4 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/QtImageLoader.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/QtImageLoader.cpp @@ -28,6 +28,7 @@ namespace ImageProcessingAtom QImage qimage(filename.c_str()); if (qimage.isNull()) { + AZ_Error("ImageProcessing", false, "Failed to load [%s] via QImage", filename.c_str()); return NULL; } diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.cpp index 0436ef0215..665d08b3ae 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.cpp @@ -17,6 +17,8 @@ #include #include +#include + #include #include #include @@ -202,7 +204,7 @@ namespace ImageProcessingAtom AZ::Data::AssetId assetId = product->GetAssetId(); menu->addAction("Save as DDS...", [assetId, this]() { - QString filePath = QFileDialog::getSaveFileName(nullptr, QString("Save to file"), m_lastSavedPath, QString("DDS file (*.dds)")); + QString filePath = AzQtComponents::FileDialog::GetSaveFileName(nullptr, QString("Save to file"), m_lastSavedPath, QString("DDS file (*.dds)")); if (filePath.isEmpty()) { return; diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/ImageProcessing_Traits_Android.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/ImageProcessing_Traits_Android.h index 22d0061573..0bd7ba3732 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/ImageProcessing_Traits_Android.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/ImageProcessing_Traits_Android.h @@ -13,4 +13,3 @@ #define AZ_TRAIT_IMAGEPROCESSING_PVRTEXLIB_USE_WINDLL_IMPORT 0 #define AZ_TRAIT_IMAGEPROCESSING_SQUISH_DO_NOT_USE_FASTCALL 0 #define AZ_TRAIT_IMAGEPROCESSING_USE_BASE10_BYTE_PREFIX 0 -#define AZ_TRAIT_IMAGEPROCESSING_USE_ISPC_TEXTURE_COMPRESSOR 0 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/ImageProcessing_Traits_Linux.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/ImageProcessing_Traits_Linux.h index b4efe031fd..43e8a2b3f9 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/ImageProcessing_Traits_Linux.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/ImageProcessing_Traits_Linux.h @@ -8,9 +8,8 @@ #pragma once #define AZ_TRAIT_IMAGEPROCESSING_BESSEL_FUNCTION_FIRST_ORDER j1 -#define AZ_TRAIT_IMAGEPROCESSING_DEFAULT_PLATFORM "pc" +#define AZ_TRAIT_IMAGEPROCESSING_DEFAULT_PLATFORM "linux" #define AZ_TRAIT_IMAGEPROCESSING_DEFINE_DIRECT3D_CONSTANTS 0 #define AZ_TRAIT_IMAGEPROCESSING_PVRTEXLIB_USE_WINDLL_IMPORT 0 #define AZ_TRAIT_IMAGEPROCESSING_SQUISH_DO_NOT_USE_FASTCALL 1 #define AZ_TRAIT_IMAGEPROCESSING_USE_BASE10_BYTE_PREFIX 0 -#define AZ_TRAIT_IMAGEPROCESSING_USE_ISPC_TEXTURE_COMPRESSOR 0 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/ImageProcessing_Traits_Mac.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/ImageProcessing_Traits_Mac.h index a494f7ace7..2704fb0185 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/ImageProcessing_Traits_Mac.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/ImageProcessing_Traits_Mac.h @@ -13,4 +13,3 @@ #define AZ_TRAIT_IMAGEPROCESSING_PVRTEXLIB_USE_WINDLL_IMPORT 0 #define AZ_TRAIT_IMAGEPROCESSING_SQUISH_DO_NOT_USE_FASTCALL 1 #define AZ_TRAIT_IMAGEPROCESSING_USE_BASE10_BYTE_PREFIX 1 -#define AZ_TRAIT_IMAGEPROCESSING_USE_ISPC_TEXTURE_COMPRESSOR 0 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/ImageProcessing_Traits_Windows.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/ImageProcessing_Traits_Windows.h index 3fdd1ddf66..e8d25c2dad 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/ImageProcessing_Traits_Windows.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/ImageProcessing_Traits_Windows.h @@ -13,4 +13,3 @@ #define AZ_TRAIT_IMAGEPROCESSING_PVRTEXLIB_USE_WINDLL_IMPORT 1 #define AZ_TRAIT_IMAGEPROCESSING_SQUISH_DO_NOT_USE_FASTCALL 0 #define AZ_TRAIT_IMAGEPROCESSING_USE_BASE10_BYTE_PREFIX 0 -#define AZ_TRAIT_IMAGEPROCESSING_USE_ISPC_TEXTURE_COMPRESSOR 1 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows.cmake index ca8dad1013..5cd1fb5a22 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows.cmake @@ -6,11 +6,3 @@ # # -# windows requires the 3rd Party ISPCTexComp library. - -ly_associate_package(PACKAGE_NAME ISPCTexComp-2021.3-rev1-windows TARGETS ISPCTexComp PACKAGE_HASH 324fb051a549bc96571530e63c01e18a4c860db45317734d86276fe27a45f6dd) - -set(LY_BUILD_DEPENDENCIES - PUBLIC - 3rdParty::ISPCTexComp - ) diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows_files.cmake index bb3cd74557..f404a9ef60 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -9,6 +9,4 @@ set(FILES ImageProcessing_Traits_Platform.h ImageProcessing_Traits_Windows.h - ../../Compressors/ISPCTextureCompressor.cpp - ../../Compressors/ISPCTextureCompressor.h ) diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/ImageProcessing_Traits_iOS.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/ImageProcessing_Traits_iOS.h index a494f7ace7..2704fb0185 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/ImageProcessing_Traits_iOS.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/ImageProcessing_Traits_iOS.h @@ -13,4 +13,3 @@ #define AZ_TRAIT_IMAGEPROCESSING_PVRTEXLIB_USE_WINDLL_IMPORT 0 #define AZ_TRAIT_IMAGEPROCESSING_SQUISH_DO_NOT_USE_FASTCALL 1 #define AZ_TRAIT_IMAGEPROCESSING_USE_BASE10_BYTE_PREFIX 1 -#define AZ_TRAIT_IMAGEPROCESSING_USE_ISPC_TEXTURE_COMPRESSOR 0 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.cpp index 9abb6de300..1618f376b4 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.cpp @@ -350,7 +350,7 @@ namespace ImageProcessingAtom // output conversion log if (m_isSucceed && m_isFinished) { - const uint32 sizeTotal = m_image->Get()->GetTextureMemory(); + [[maybe_unused]] const uint32 sizeTotal = m_image->Get()->GetTextureMemory(); if (m_input->m_isPreview) { AZ_TracePrintf("Image Processing", "Image (%d bytes) converted in %f seconds\n", sizeTotal, m_processTime); @@ -603,8 +603,6 @@ namespace ImageProcessingAtom const bool isCompressing = isSourceFormatUncompressed ? true : false; const EPixelFormat outputFormat = isCompressing ? destinationFormat : sourceFormat; - const uint32_t imageWidth = m_image->Get()->GetWidth(0); - const uint32_t imageHeight = m_image->Get()->GetHeight(0); ICompressorPtr compressor = ICompressor::FindCompressor(outputFormat, m_input->m_presetSetting.m_destColorSpace, isCompressing); // find out if the compressor has a preference to any specific colorspace @@ -871,7 +869,7 @@ namespace ImageProcessingAtom return process; } - void ImageConvertProcess::CreateIBLCubemap(AZ::Uuid presetUUID, const char* fileNameSuffix, IImageObjectPtr cubemapImage) + void ImageConvertProcess::CreateIBLCubemap(AZ::Uuid presetUUID, const char* fileNameSuffix, IImageObjectPtr& cubemapImage) { const AZStd::string& platformId = m_input->m_platform; AZStd::string_view filePath; @@ -973,7 +971,7 @@ namespace ImageProcessingAtom IImageObjectPtr previewImageAlpha = imageToProcess2.Get(); const uint32 imageMips = previewImage->GetMipCount(); - const uint32 alphaMips = previewImageAlpha->GetMipCount(); + [[maybe_unused]] const uint32 alphaMips = previewImageAlpha->GetMipCount(); // Get count of bytes per pixel for both rgb and alpha images uint32 imagePixelBytes = CPixelFormats::GetInstance().GetPixelFormatInfo(ePixelFormat_R8G8B8A8)->bitsPerBlock / 8; @@ -985,7 +983,7 @@ namespace ImageProcessingAtom for (uint32 mipLevel = 0; mipLevel < imageMips; ++mipLevel) { const uint32 pixelCount = previewImage->GetPixelCount(mipLevel); - const uint32 alphaPixelCount = previewImageAlpha->GetPixelCount(mipLevel); + [[maybe_unused]] const uint32 alphaPixelCount = previewImageAlpha->GetPixelCount(mipLevel); AZ_Assert(pixelCount == alphaPixelCount, "Pixel count for image and alpha image at mip level %d is not equal!", mipLevel); diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.h index db34c46e2a..190e68ca31 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.h @@ -161,7 +161,7 @@ namespace ImageProcessingAtom bool FillCubemapMipmaps(); //IBL cubemap generation, this creates a separate ImageConvertProcess - void CreateIBLCubemap(AZ::Uuid presetUUID, const char* fileNameSuffix, IImageObjectPtr cubemapImage); + void CreateIBLCubemap(AZ::Uuid presetUUID, const char* fileNameSuffix, IImageObjectPtr& cubemapImage); //convert color space to linear with pixel format rgba32f bool ConvertToLinear(); diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp index fd3923d7bf..8504f5e074 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp @@ -241,8 +241,6 @@ namespace ImageProcessingAtom // clone this image-object's contents IImageObject* CImageObject::Clone(uint32_t maxMipCount) const { - const EPixelFormat srcPixelformat = GetPixelFormat(); - IImageObject* outImage = AllocateImage(maxMipCount); AZ::u32 mips = outImage->GetMipCount(); diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.h index c4cbd13fea..c8b8ced496 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.h @@ -36,10 +36,6 @@ namespace ImageProcessingAtom AZ::u32 GetWidth(AZ::u32 mip) const override; AZ::u32 GetHeight(AZ::u32 mip) const override; AZ::u32 GetMipCount() const override; - bool IsCubemap() const override - { - return false; - }; void GetImagePointer(AZ::u32 mip, AZ::u8*& pMem, AZ::u32& pitch) const override; AZ::u32 GetMipBufSize(AZ::u32 mip) const override; diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.cpp index 7e4d29e23c..5a41411d86 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.cpp @@ -180,7 +180,7 @@ namespace ImageProcessingAtom // Dispatch event on main thread AZ::SystemTickBus::QueueFunction( [ - thumbnailKey, thumbnailSize, + thumbnailKey, pixmap = QPixmap::fromImage(image.scaled(QSize(thumbnailSize, thumbnailSize), Qt::KeepAspectRatio, Qt::SmoothTransformation)) ]() mutable { diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/ImageProcessing_Test.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/ImageProcessing_Test.cpp index 4b28fbe4ef..0656fb4e46 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/ImageProcessing_Test.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/ImageProcessing_Test.cpp @@ -71,11 +71,6 @@ using namespace ImageProcessingAtom; namespace UnitTest { - namespace - { - static const char* s_gemFolder; - } - // Expose AZ::AssetManagerComponent::Reflect function for testing class MyAssetManagerComponent : public AZ::AssetManagerComponent @@ -114,7 +109,6 @@ namespace UnitTest const char* GetAppRoot() const override { return nullptr; } const char* GetEngineRoot() const override { return nullptr; } const char* GetExecutableFolder() const override { return nullptr; } - AZ::Debug::DrillerManager* GetDrillerManager() override { return nullptr; } void EnumerateEntities(const AZ::ComponentApplicationRequests::EntityCallback& /*callback*/) override {} void QueryApplicationType(AZ::ApplicationTypeQuery& /*appType*/) const override {} ////////////////////////////////////////////////////////////////////////// @@ -126,6 +120,8 @@ namespace UnitTest AZStd::unique_ptr m_jsonSystemComponent; AZStd::vector> m_assetHandlers; AZStd::string m_gemFolder; + AZStd::string m_outputRootFolder; + AZStd::string m_outputFolder; void SetUp() override { @@ -173,7 +169,7 @@ namespace UnitTest AzQtComponents::PrepareQtPaths(); m_gemFolder = AZ::Test::GetEngineRootPath() + "/Gems/Atom/Asset/ImageProcessingAtom/"; - s_gemFolder = m_gemFolder.c_str(); + m_outputFolder = m_gemFolder + AZStd::string("Code/Tests/TestAssets/temp/"); m_defaultSettingFolder = m_gemFolder + AZStd::string("Config/"); m_testFileFolder = m_gemFolder + AZStd::string("Code/Tests/TestAssets/"); @@ -186,7 +182,7 @@ namespace UnitTest void TearDown() override { m_gemFolder = AZStd::string(); - s_gemFolder = ""; + m_outputFolder = AZStd::string(); m_defaultSettingFolder = AZStd::string(); m_testFileFolder = AZStd::string(); @@ -227,16 +223,16 @@ namespace UnitTest Image_512X288_RGB8_Tga, Image_1024X1024_RGB8_Tif, Image_UpperCase_Tga, - Image_512x512_Normal_Tga, + Image_512x512_Normal_Tga, // QImage doesn't support loading this file. Image_128x128_Transparent_Tga, Image_237x177_RGB_Jpg, Image_GreyScale_Png, - Image_BlackWhite_Png, Image_Alpha8_64x64_Mip7_Dds, Image_BGRA_64x64_Mip7_Dds, Image_Luminance8bpp_66x33_dds, Image_BGR_64x64_dds, - Image_Sunset_4096x2048_R16G16B16A16F_exr + Image_defaultprobe_cm_1536x256_64bits_tif, + Image_workshop_iblskyboxcm_exr }; //image file names for testing @@ -259,17 +255,29 @@ namespace UnitTest m_imagFileNameMap[Image_128x128_Transparent_Tga] = m_testFileFolder + "128x128_RGBA8.tga"; m_imagFileNameMap[Image_237x177_RGB_Jpg] = m_testFileFolder + "237x177_RGB.jpg"; m_imagFileNameMap[Image_GreyScale_Png] = m_testFileFolder + "greyscale.png"; - m_imagFileNameMap[Image_BlackWhite_Png] = m_testFileFolder + "BlackWhite.png"; m_imagFileNameMap[Image_Alpha8_64x64_Mip7_Dds] = m_testFileFolder + "Alpha8_64x64_Mip7.dds"; m_imagFileNameMap[Image_BGRA_64x64_Mip7_Dds] = m_testFileFolder + "BGRA_64x64_MIP7.dds"; m_imagFileNameMap[Image_Luminance8bpp_66x33_dds] = m_testFileFolder + "Luminance8bpp_66x33.dds"; m_imagFileNameMap[Image_BGR_64x64_dds] = m_testFileFolder + "RGBA_64x64.dds"; - m_imagFileNameMap[Image_Sunset_4096x2048_R16G16B16A16F_exr] = m_testFileFolder + "sunset_cm.exr"; + m_imagFileNameMap[Image_defaultprobe_cm_1536x256_64bits_tif] = m_testFileFolder + "defaultProbe_cm.tif"; + m_imagFileNameMap[Image_workshop_iblskyboxcm_exr] = m_testFileFolder + "workshop_iblskyboxcm.exr"; } public: + void SetOutputSubFolder(const char* subFolderName) + { + if (subFolderName) + { + m_outputFolder = m_outputRootFolder + "/" + subFolderName; + } + else + { + m_outputFolder = m_outputRootFolder; + } + } + //helper function to save an image object to a file through QtImage - static void SaveImageToFile([[maybe_unused]] const IImageObjectPtr imageObject, [[maybe_unused]] const AZStd::string imageName, [[maybe_unused]] AZ::u32 maxMipCnt = 100) + void SaveImageToFile([[maybe_unused]] const IImageObjectPtr imageObject, [[maybe_unused]] const AZStd::string imageName, [[maybe_unused]] AZ::u32 maxMipCnt = 100) { #ifndef DEBUG_OUTPUT_IMAGES return; @@ -279,12 +287,12 @@ namespace UnitTest return; } - //create the directory if it's not exist - AZStd::string outputDir = s_gemFolder + AZStd::string("Code/Tests/TestAssets/Output/"); - QDir dir(outputDir.data()); - if (!dir.exists()) + // create dir if it doesn't exist + QDir dir; + QDir outputDir(m_outputFolder.c_str()); + if (!outputDir.exists()) { - dir.mkpath("."); + dir.mkpath(m_outputFolder.c_str()); } //save origin file pixel format so we could use it to generate name later @@ -304,12 +312,13 @@ namespace UnitTest finalImage->GetImagePointer(mip, imageBuf, pitch); uint32 width = finalImage->GetWidth(mip); uint32 height = finalImage->GetHeight(mip); + uint32 originalSize = imageObject->GetMipBufSize(mip); //generate file name char filePath[2048]; - azsprintf(filePath, "%s%s_%s_mip%d_%dx%d.png", outputDir.data(), imageName.c_str() + azsprintf(filePath, "%s%s_%s_mip%d_%dx%d_%d.png", m_outputFolder.data(), imageName.c_str() , CPixelFormats::GetInstance().GetPixelFormatInfo(originPixelFormat)->szName - , mip, width, height); + , mip, width, height, originalSize); QImage qimage(imageBuf, width, height, pitch, QImage::Format_RGBA8888); qimage.save(filePath); @@ -386,7 +395,7 @@ namespace UnitTest } - static bool CompareDDSImage(const QString& imagePath1, const QString& imagePath2, QString& output) + bool CompareDDSImage(const QString& imagePath1, const QString& imagePath2, QString& output) { IImageObjectPtr image1, alphaImage1, image2, alphaImage2; @@ -531,15 +540,7 @@ namespace UnitTest TEST_F(ImageProcessingTest, TestCubemapLayouts) { { - IImageObjectPtr srcImage(LoadImageFromFile(m_imagFileNameMap[Image_Sunset_4096x2048_R16G16B16A16F_exr])); - ImageToProcess imageToProcess(srcImage); - imageToProcess.ConvertCubemapLayout(CubemapLayoutHorizontalCross); - ASSERT_TRUE(imageToProcess.Get()->GetWidth(0) * 3 == imageToProcess.Get()->GetHeight(0) * 4); - SaveImageToFile(imageToProcess.Get(), "LatLong", 1); - } - - { - IImageObjectPtr srcImage(LoadImageFromFile(m_testFileFolder + "defaultProbe_cm.tif")); + IImageObjectPtr srcImage(LoadImageFromFile(m_imagFileNameMap[Image_defaultprobe_cm_1536x256_64bits_tif])); ImageToProcess imageToProcess(srcImage); imageToProcess.ConvertCubemapLayout(CubemapLayoutVertical); @@ -636,12 +637,8 @@ namespace UnitTest ASSERT_TRUE(img != nullptr); ASSERT_TRUE(img->GetPixelFormat() == ePixelFormat_B8G8R8); - // Exr files - img = IImageObjectPtr(LoadImageFromFile(m_imagFileNameMap[Image_Sunset_4096x2048_R16G16B16A16F_exr])); - ASSERT_TRUE(img != nullptr); - img = IImageObjectPtr(LoadImageFromFile(m_testFileFolder + "abandoned_sanatorium_staircase_cm.exr")); - ASSERT_TRUE(img != nullptr); - img = IImageObjectPtr(LoadImageFromFile(m_testFileFolder + "road_in_tenerife_mountain_cm.exr")); + // Exr file + img = IImageObjectPtr(LoadImageFromFile(m_imagFileNameMap[Image_workshop_iblskyboxcm_exr])); ASSERT_TRUE(img != nullptr); } @@ -784,39 +781,36 @@ namespace UnitTest ASSERT_TRUE(dstImage3->CompareImage(dstImage1)); } - TEST_F(ImageProcessingTest, DISABLED_TestConvertPVRTC) + TEST_F(ImageProcessingTest, TestConvertFormatCompressed) { - //source image - AZStd::string inputFile; - inputFile = "../AutomatedTesting/Objects/ParticleAssets/ShowRoom/showroom_pipe_blue_001_ddna.tif"; - - IImageObjectPtr srcImage(LoadImageFromFile(inputFile)); - ImageToProcess imageToProcess(srcImage); - - for (EPixelFormat pixelFormat = ePixelFormat_PVRTC2; pixelFormat <= ePixelFormat_ETC2a;) - { - imageToProcess.Set(srcImage); - imageToProcess.ConvertFormat(pixelFormat); - SaveImageToFile(imageToProcess.Get(), "Compressor", 1); - - //next format - pixelFormat = EPixelFormat(pixelFormat + 1); - } - } - - TEST_F(ImageProcessingTest, DISABLED_TestConvertFormat) - { - EPixelFormat pixelFormat; IImageObjectPtr srcImage; //images to be tested - static const int imageCount = 5; + static const int imageCount = 4; ImageFeature images[imageCount] = { Image_20X16_RGBA8_Png, - Image_32X32_16bit_F_Tif, - Image_32X32_32bit_F_Tif, - Image_512x512_Normal_Tga, - Image_128x128_Transparent_Tga }; + Image_237x177_RGB_Jpg, + Image_128x128_Transparent_Tga, + Image_defaultprobe_cm_1536x256_64bits_tif}; + + // collect all compressed pixel formats + AZStd::vector compressedFormats; + for (uint32 i = 0; i < ePixelFormat_Count; i++) + { + EPixelFormat pixelFormat = (EPixelFormat)i; + auto formatInfo = CPixelFormats::GetInstance().GetPixelFormatInfo(pixelFormat); + if (formatInfo->bCompressed) + { + // exclude astc formats until we add astc compressor to all platforms + // exclude pvrtc formats (deprecating) + if (!IsASTCFormat(pixelFormat) + && pixelFormat != ePixelFormat_PVRTC2 && pixelFormat != ePixelFormat_PVRTC4 + && !IsETCFormat(pixelFormat)) // skip ETC since it's very slow + { + compressedFormats.push_back(pixelFormat); + } + } + } for (int imageIdx = 0; imageIdx < imageCount; imageIdx++) { @@ -828,42 +822,37 @@ namespace UnitTest ImageToProcess imageToProcess(srcImage); //test ConvertFormat functions against all the pixel formats - for (pixelFormat = ePixelFormat_R8G8B8A8; pixelFormat < ePixelFormat_Unknown;) + for (EPixelFormat pixelFormat : compressedFormats) { + // + if (!CPixelFormats::GetInstance().IsImageSizeValid(pixelFormat, srcImage->GetWidth(0), srcImage->GetHeight(0), false)) + { + continue; + } + + [[maybe_unused]] auto formatInfo = CPixelFormats::GetInstance().GetPixelFormatInfo(pixelFormat); imageToProcess.Set(srcImage); imageToProcess.ConvertFormat(pixelFormat); + if (!imageToProcess.Get()) + { + AZ_Warning("test", false, "unsupported format: %s", formatInfo->szName); + continue; + } ASSERT_TRUE(imageToProcess.Get()); + ASSERT_TRUE(imageToProcess.Get()->GetPixelFormat() == pixelFormat); - //if the format is compressed and there is no compressor for it, it won't be converted to the expected format - if (ICompressor::FindCompressor(pixelFormat, ImageProcessingAtom::ColorSpace::autoSelect, true) == nullptr - && !CPixelFormats::GetInstance().IsPixelFormatUncompressed(pixelFormat)) - { - ASSERT_TRUE(imageToProcess.Get()->GetPixelFormat() != pixelFormat); - } - else - { - //validate the size and it may not working for some uncompressed format - if (!CPixelFormats::GetInstance().IsImageSizeValid( - pixelFormat, srcImage->GetWidth(0), srcImage->GetHeight(0), false)) - { - ASSERT_TRUE(imageToProcess.Get()->GetPixelFormat() != pixelFormat); - } - else - { - ASSERT_TRUE(imageToProcess.Get()->GetPixelFormat() == pixelFormat); + // Get compressor name + ColorSpace sourceColorSpace = srcImage->HasImageFlags(EIF_SRGBRead) ? ColorSpace::sRGB : ColorSpace::linear; + ICompressorPtr compressor = ICompressor::FindCompressor(pixelFormat, sourceColorSpace, true); - //save the image to a file so we can check the visual result - SaveImageToFile(imageToProcess.Get(), imageName, 1); + //save the image to a file so we can check the visual result + AZStd::string outputName = AZStd::string::format("%s_%s", imageName.c_str(), compressor->GetName()); + SaveImageToFile(imageToProcess.Get(), outputName, 1); - //convert back to an uncompressed format and expect it will be successful - imageToProcess.ConvertFormat(ePixelFormat_R8G8B8A8); - ASSERT_TRUE(imageToProcess.Get()->GetPixelFormat() == ePixelFormat_R8G8B8A8); - } - } - - //next pixel format - pixelFormat = EPixelFormat(pixelFormat + 1); + //convert back to an uncompressed format and expect it will be successful + imageToProcess.ConvertFormat(ePixelFormat_R8G8B8A8); + ASSERT_TRUE(imageToProcess.Get()->GetPixelFormat() == ePixelFormat_R8G8B8A8); } } } @@ -929,46 +918,10 @@ namespace UnitTest PlatformNameList platforms = BuilderSettingManager::Instance()->GetPlatformList(); #ifndef AZ_TOOLS_EXPAND_FOR_RESTRICTED_PLATFORMS - ASSERT_TRUE(platforms.size() == 4); + EXPECT_THAT(platforms, testing::UnorderedPointwise(testing::Eq(), {"pc", "linux", "mac", "ios", "android"})); #endif //AZ_TOOLS_EXPAND_FOR_RESTRICTED_PLATFORMS } - TEST_F(ImageProcessingTest, DISABLED_TestCubemap) - { - //load builder presets - auto outcome = BuilderSettingManager::Instance()->LoadConfigFromFolder(m_defaultSettingFolder); - ASSERT_TRUE(outcome.IsSuccess()); - - const AZStd::string outputFolder = m_gemFolder + AZStd::string("Code/Tests/TestAssets/temp/"); - AZStd::string inputFile; - AZStd::vector outProducts; - - inputFile = m_testFileFolder + "defaultProbe_cm.tif"; - - ImageConvertProcess* process = CreateImageConvertProcess(inputFile, outputFolder, "pc", outProducts); - - if (process != nullptr) - { - int step = 0; - while (!process->IsFinished()) - { - process->UpdateProcess(); - step++; - } - - //get process result - ASSERT_TRUE(process->IsSucceed()); - - SaveImageToFile(process->GetOutputImage(), "cubemap", 100); - SaveImageToFile(process->GetOutputIBLSpecularCubemap(), "iblspecularcubemap", 100); - SaveImageToFile(process->GetOutputIBLDiffuseCubemap(), "ibldiffusecubemap", 100); - SaveImageToFile(process->GetOutputAlphaImage(), "alpha", 1); - process->GetAppendOutputProducts(outProducts); - - delete process; - } - } - //test image conversion for builder TEST_F(ImageProcessingTest, TestBuilderImageConvertor) { @@ -976,12 +929,11 @@ namespace UnitTest auto outcome = BuilderSettingManager::Instance()->LoadConfigFromFolder(m_defaultSettingFolder); ASSERT_TRUE(outcome.IsSuccess()); - const AZStd::string outputFolder = m_gemFolder + AZStd::string("Code/Tests/TestAssets/temp/"); AZStd::string inputFile; AZStd::vector outProducts; inputFile = m_imagFileNameMap[Image_128x128_Transparent_Tga]; - ImageConvertProcess* process = CreateImageConvertProcess(inputFile, outputFolder, "pc", outProducts, m_context.get()); + ImageConvertProcess* process = CreateImageConvertProcess(inputFile, m_outputFolder, "pc", outProducts, m_context.get()); if (process != nullptr) { @@ -1005,30 +957,38 @@ namespace UnitTest } } - - //test image loading function for output dds files - TEST_F(ImageProcessingTest, DISABLED_TestLoadDdsImage) + TEST_F(ImageProcessingTest, TestIblSkyboxPreset) { - IImageObjectPtr originImage, alphaImage; - AZStd::string inputFolder = "../AutomatedTesting/Cache/pc/engineassets/texturemsg/"; + //load builder presets + auto outcome = BuilderSettingManager::Instance()->LoadConfigFromFolder(m_defaultSettingFolder); + ASSERT_TRUE(outcome.IsSuccess()); + AZStd::string inputFile; + AZStd::vector outProducts; - inputFile = "E:/Javelin_NWLYDev/dev/Cache/Assets/pc/assets/textures/blend_maps/moss/jav_moss_ddn.dds"; + inputFile = m_imagFileNameMap[Image_workshop_iblskyboxcm_exr]; + ImageConvertProcess* process = CreateImageConvertProcess(inputFile, m_outputFolder, "pc", outProducts, m_context.get()); - IImageObjectPtr newImage = IImageObjectPtr(DdsLoader::LoadImageFromFileLegacy(inputFile)); - if (newImage->HasImageFlags(EIF_AttachedAlpha)) + if (process != nullptr) { - if (newImage->HasImageFlags(EIF_Splitted)) - { - alphaImage = IImageObjectPtr(DdsLoader::LoadImageFromFileLegacy(inputFile + ".a")); - } - else - { - alphaImage = IImageObjectPtr(DdsLoader::LoadAttachedImageFromDdsFileLegacy(inputFile, newImage)); - } - } + process->ProcessAll(); - SaveImageToFile(newImage, "jav_moss_ddn", 10); + //get process result + ASSERT_TRUE(process->IsSucceed()); + + auto specularImage = process->GetOutputIBLSpecularCubemap(); + auto diffuseImage = process->GetOutputIBLDiffuseCubemap(); + ASSERT_TRUE(process->GetOutputImage()); + ASSERT_TRUE(specularImage); + ASSERT_TRUE(diffuseImage); + + // output converted result if save image is enabled + SaveImageToFile(process->GetOutputImage(), "ibl_skybox", 10); + SaveImageToFile(specularImage, "ibl_specular", 10); + SaveImageToFile(diffuseImage, "ibl_diffuse", 10); + + delete process; + } } TEST_F(ImageProcessingTest, DISABLED_CompareOutputImage) diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/.gitignore b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/.gitignore new file mode 100644 index 0000000000..de16d18e9c --- /dev/null +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/.gitignore @@ -0,0 +1 @@ +[Tt]emp/** diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/BlackWhite.png b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/BlackWhite.png deleted file mode 100644 index dfe856790a..0000000000 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/BlackWhite.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:969c6597a6346c5ff8ae24b4ae143bacbeed2944dd139ddef9b440483dbe4c02 -size 8866921 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/LatLong_cm.png b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/LatLong_cm.png deleted file mode 100644 index 729868e8c0..0000000000 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/LatLong_cm.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ef6c54d5fa8dd3906d07eb4d3a4d664e82d957103e4bfbcaa951e3722348300d -size 749794 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/Lenstexture_dirtyglass.tif b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/Lenstexture_dirtyglass.tif deleted file mode 100644 index 090991ec7a..0000000000 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/Lenstexture_dirtyglass.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:265ae231486dc6d5d61aa2416b0010ea743722f7238660faeed9edacd46e8a6b -size 6303186 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/abandoned_sanatorium_staircase_cm.exr b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/abandoned_sanatorium_staircase_cm.exr deleted file mode 100644 index f4612e45dc..0000000000 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/abandoned_sanatorium_staircase_cm.exr +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a559d4b21606d663bc9c7f9d8086646770f5e383c2214e6d3be0b192abbc6888 -size 7736382 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/red.png b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/red.png deleted file mode 100644 index 800faddee4..0000000000 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/red.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:37d146db3de179add861ee86d2316ef1dd413cdb0b02448b3b95bf0023f44bae -size 613 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/road_in_tenerife_mountain_cm.exr b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/road_in_tenerife_mountain_cm.exr deleted file mode 100644 index 358f4a3fcb..0000000000 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/road_in_tenerife_mountain_cm.exr +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:95ec8e752ba10edb8242a9bb8cc78e5b85fe2861268cf95e06942e2a10ef243c -size 7484335 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/sunset_cm.exr b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/sunset_cm.exr deleted file mode 100644 index d1179b96de..0000000000 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/sunset_cm.exr +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:da49114be7305fad10121f92cdf6f153ebb3bc302edc662f2ed75cd45306ab7f -size 50364729 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/temp/128x128_RGBA8.tga.streamingimage b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/temp/128x128_RGBA8.tga.streamingimage deleted file mode 100644 index 6826f2a76e..0000000000 Binary files a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/temp/128x128_RGBA8.tga.streamingimage and /dev/null differ diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/workshop_iblskyboxcm.exr b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/workshop_iblskyboxcm.exr new file mode 100644 index 0000000000..72937bd6d0 --- /dev/null +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/TestAssets/workshop_iblskyboxcm.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010165af78bdafe61dad187b250598fa670325428271f5bcf9bd4d839f4cc1c0 +size 20114684 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_files.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_files.cmake index e8bc033f08..55ccdf1d89 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_files.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_files.cmake @@ -129,6 +129,8 @@ set(FILES Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.h Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.h Source/Compressors/CryTextureSquisher/ColorTypes.h + Source/Compressors/ISPCTextureCompressor.cpp + Source/Compressors/ISPCTextureCompressor.h Source/Thumbnail/ImageThumbnail.cpp Source/Thumbnail/ImageThumbnail.h Source/Thumbnail/ImageThumbnailSystemComponent.cpp diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Config/ImageBuilder.settings b/Gems/Atom/Asset/ImageProcessingAtom/Config/ImageBuilder.settings index 82a57dd614..c513e05a97 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Config/ImageBuilder.settings +++ b/Gems/Atom/Asset/ImageProcessingAtom/Config/ImageBuilder.settings @@ -29,6 +29,12 @@ "Streaming": false, "Enable": true }, + "linux": { + "GlossScale": 16.0, + "GlossBias": 0.0, + "Streaming": false, + "Enable": true + }, "provo": { "GlossScale": 16.0, "GlossBias": 0.0, diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.cpp b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.cpp index 8a4d727e8c..dc8af67877 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.cpp @@ -616,8 +616,6 @@ namespace ImageProcessingAtom a_FilterExtents[oppositeFaceIdx].Augment((a_SrcSize-1), (a_SrcSize-1), 0); } } - - minV=minV; } diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.h b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.h index 4a29e8621a..c78bfcfec6 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.h @@ -14,6 +14,7 @@ #include #include #include +#include #include "VectorMacros.h" #include "CBBoxInt32.h" @@ -22,11 +23,9 @@ //has routines for saving .rgbe files #define CG_RGBE_SUPPORT - -#ifndef WCHAR +#ifndef WCHAR // For non-windows platforms, for Windows-based platforms it will be defined through PlatformIncl.h #define WCHAR wchar_t -#endif //WCHAR - +#endif // WCHAR //used to index cube faces #define CP_FACE_X_POS 0 diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.h b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.h index 848cbd1dbe..bbc41e756c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.h @@ -14,10 +14,11 @@ #include "VectorMacros.h" #include +#include -#ifndef WCHAR +#ifndef WCHAR // For non-windows platforms, for Windows-based platforms it will be defined through PlatformIncl.h #define WCHAR wchar_t -#endif //WCHAR +#endif // WCHAR #ifndef SAFE_DELETE #define SAFE_DELETE(p) { if(p) { delete (p); (p)=NULL; } } diff --git a/Gems/Atom/Asset/ImageProcessingAtom/preview.png b/Gems/Atom/Asset/ImageProcessingAtom/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/Atom/Asset/ImageProcessingAtom/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/Atom/Asset/Shader/Code/CMakeLists.txt b/Gems/Atom/Asset/Shader/Code/CMakeLists.txt index 298f00825f..c0bdfd4a8b 100644 --- a/Gems/Atom/Asset/Shader/Code/CMakeLists.txt +++ b/Gems/Atom/Asset/Shader/Code/CMakeLists.txt @@ -101,8 +101,7 @@ ly_add_target( # The Atom_Asset_Shader is a required gem for Builders in order to process the assets that come WITHOUT # the Atom_Feature_Common required gem -ly_enable_gems(GEMS Atom_Asset_Shader VARIANTS Builders - TARGETS AssetBuilder AssetProcessor AssetProcessorBatch) +ly_enable_gems(GEMS Atom_Asset_Shader) ################################################################################ # Tests diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderConfig.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderConfig.cpp index fcb486ec32..d2bcf4b985 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderConfig.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderConfig.cpp @@ -12,7 +12,7 @@ #include #include -#include +#include namespace AZ diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslCompiler.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslCompiler.cpp index f5fb73182a..154bfdd607 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslCompiler.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslCompiler.cpp @@ -19,7 +19,7 @@ #include -#include +#include #include #include // [GFX TODO] Remove when [ATOM-15472] @@ -908,9 +908,9 @@ namespace AZ AZ_Assert(optionEntry.IsObject(), "Expected option entry to be an object!"); Name defaultValueId = optionEntry.HasMember("defaultValue") ? Name(optionEntry["defaultValue"].GetString()) : Name(); - const AZStd::string optionName = optionEntry.HasMember("name") ? optionEntry["name"].GetString() : ""; - const bool valuesAreRange = optionEntry.HasMember("range") ? optionEntry["range"].GetBool() : false; - const bool isPredefinedType = optionEntry.HasMember("kind") ? AzFramework::StringFunc::Equal(optionEntry["kind"].GetString(), "predefined") : false; + const AZStd::string optionName = optionEntry.HasMember("name") ? optionEntry["name"].GetString() : ""; + [[maybe_unused]] const bool valuesAreRange = optionEntry.HasMember("range") ? optionEntry["range"].GetBool() : false; + const bool isPredefinedType = optionEntry.HasMember("kind") ? AzFramework::StringFunc::Equal(optionEntry["kind"].GetString(), "predefined") : false; auto optionType = RPI::ShaderOptionType::Unknown; if (isPredefinedType && optionEntry.HasMember("type")) diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderSystemComponent.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderSystemComponent.cpp index 16cebef6ac..cacb310918 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderSystemComponent.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderSystemComponent.cpp @@ -81,7 +81,7 @@ namespace AZ // Register Shader Asset Builder AssetBuilderSDK::AssetBuilderDesc shaderAssetBuilderDescriptor; shaderAssetBuilderDescriptor.m_name = "Shader Asset Builder"; - shaderAssetBuilderDescriptor.m_version = 103; // ATOM-15058 + shaderAssetBuilderDescriptor.m_version = 104; // ATOM-15871 // .shader file changes trigger rebuilds shaderAssetBuilderDescriptor.m_patterns.push_back(AssetBuilderSDK::AssetBuilderPattern( AZStd::string::format("*.%s", RPI::ShaderSourceData::Extension), AssetBuilderSDK::AssetBuilderPattern::PatternType::Wildcard)); shaderAssetBuilderDescriptor.m_busId = azrtti_typeid(); @@ -96,7 +96,7 @@ namespace AZ shaderVariantAssetBuilderDescriptor.m_name = "Shader Variant Asset Builder"; // Both "Shader Variant Asset Builder" and "Shader Asset Builder" produce ShaderVariantAsset products. If you update // ShaderVariantAsset you will need to update BOTH version numbers, not just "Shader Variant Asset Builder". - shaderVariantAssetBuilderDescriptor.m_version = 24; // ATOM-15978 + shaderVariantAssetBuilderDescriptor.m_version = 25; // ATOM-15871 shaderVariantAssetBuilderDescriptor.m_patterns.push_back(AssetBuilderSDK::AssetBuilderPattern(AZStd::string::format("*.%s", RPI::ShaderVariantListSourceData::Extension), AssetBuilderSDK::AssetBuilderPattern::PatternType::Wildcard)); shaderVariantAssetBuilderDescriptor.m_busId = azrtti_typeid(); shaderVariantAssetBuilderDescriptor.m_createJobFunction = AZStd::bind(&ShaderVariantAssetBuilder::CreateJobs, &m_shaderVariantAssetBuilder, AZStd::placeholders::_1, AZStd::placeholders::_2); diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/GlobalBuildOptions.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/GlobalBuildOptions.cpp index 66b4d2e833..da77df898b 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/GlobalBuildOptions.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/GlobalBuildOptions.cpp @@ -14,7 +14,7 @@ #include #include -#include +#include namespace AZ { diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/Preprocessor.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/Preprocessor.cpp index 9c77ae6b35..fe1fd99f4e 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/Preprocessor.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/Preprocessor.cpp @@ -24,7 +24,7 @@ #include #include -#include +#include namespace AZ { @@ -154,7 +154,8 @@ namespace AZ // Remark: for MacOS & Linux it is important to call va_start again before // each call to azvsnprintf. Not required for Windows. va_start(args, format); - count = azvscprintf(format, args) + 1; // vscprintf returns a size that doesn't include the null character. + count = azvscprintf(format, args); + count += 1; // vscprintf returns a size that doesn't include the null character. va_end(args); biggerData.reset(new char[count]); diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/PrecompiledShaderBuilder.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/PrecompiledShaderBuilder.cpp index 5d712a4a8a..21eda31ca2 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/PrecompiledShaderBuilder.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/PrecompiledShaderBuilder.cpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderAssetBuilder.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderAssetBuilder.cpp index 2332f4522b..9ee4ff2161 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderAssetBuilder.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderAssetBuilder.cpp @@ -24,7 +24,7 @@ #include #include -#include +#include #include #include @@ -43,6 +43,7 @@ #include #include #include +#include #include "AzslCompiler.h" #include "ShaderVariantAssetBuilder.h" @@ -236,7 +237,9 @@ namespace AZ void ShaderAssetBuilder::ProcessJob(const AssetBuilderSDK::ProcessJobRequest& request, AssetBuilderSDK::ProcessJobResponse& response) const { - const AZStd::sys_time_t startTime = AZStd::GetTimeNowTicks(); + AZ::Debug::Timer timer; + timer.Stamp(); + AZStd::string shaderFullPath; AzFramework::StringFunc::Path::ConstructFull(request.m_watchFolder.c_str(), request.m_sourceFile.c_str(), shaderFullPath, true); // Save .shader file name (no extension and no parent directory path) @@ -459,7 +462,7 @@ namespace AZ { finalShaderOptionGroupLayout = shaderOptionGroupLayout; shaderAssetCreator.SetShaderOptionGroupLayout(finalShaderOptionGroupLayout); - const uint32_t usedShaderOptionBits = shaderOptionGroupLayout->GetBitSize(); + [[maybe_unused]] const uint32_t usedShaderOptionBits = shaderOptionGroupLayout->GetBitSize(); AZ_TracePrintf( ShaderAssetBuilderName, "Note: This shader uses %u of %u available shader variant key bits. \n", usedShaderOptionBits, RPI::ShaderVariantKeyBitCount); @@ -579,7 +582,7 @@ namespace AZ request.m_platformInfo, buildOptions.m_compilerArguments, request.m_tempDirPath, - startTime, + shaderAssetBuildTimestamp, shaderSourceData, *shaderOptionGroupLayout.get(), shaderEntryPoints, @@ -660,12 +663,8 @@ namespace AZ } response.m_resultCode = AssetBuilderSDK::ProcessJobResult_Success; - - const AZStd::sys_time_t endTime = AZStd::GetTimeNowTicks(); - const AZStd::sys_time_t deltaTime = endTime - startTime; - const float elapsedTimeSeconds = (float)(deltaTime) / (float)AZStd::GetTimeTicksPerSecond(); - - AZ_TracePrintf(ShaderAssetBuilderName, "Finished processing %s in %.2f seconds\n", request.m_sourceFile.c_str(), elapsedTimeSeconds); + + AZ_TracePrintf(ShaderAssetBuilderName, "Finished processing %s in %.3f seconds\n", request.m_sourceFile.c_str(), timer.GetDeltaTimeInSeconds()); ShaderBuilderUtility::LogProfilingData(ShaderAssetBuilderName, shaderFileName); } diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderBuilderUtility.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderBuilderUtility.cpp index 0018f2ead8..88abf92e54 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderBuilderUtility.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderBuilderUtility.cpp @@ -21,7 +21,7 @@ #include #include -#include +#include #include #include @@ -460,6 +460,10 @@ namespace AZ { platformId = AzFramework::PlatformId::PC; } + else if (platformIdentifier == "linux") + { + platformId = AzFramework::PlatformId::LINUX_ID; + } else if (platformIdentifier == "mac") { platformId = AzFramework::PlatformId::MAC_ID; @@ -517,7 +521,7 @@ namespace AZ { // Search the function name into the list of valid entry points into the shader. auto findId = - AZStd::find_if(shaderEntryPoints.begin(), shaderEntryPoints.end(), [&functionName, &mask](const auto& item) { + AZStd::find_if(shaderEntryPoints.begin(), shaderEntryPoints.end(), [&functionName](const auto& item) { return item.first == functionName; }); diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderVariantAssetBuilder.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderVariantAssetBuilder.cpp index 59660440e4..12e5382b63 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderVariantAssetBuilder.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderVariantAssetBuilder.cpp @@ -18,7 +18,7 @@ #include #include -#include +#include #include #include @@ -388,7 +388,7 @@ namespace AZ for (const AZ::RPI::ShaderVariantListSourceData::VariantInfo& variantInfo : shaderVariantList.m_shaderVariants) { AZStd::string variantInfoAsJsonString; - const bool convertSuccess = AZ::RPI::JsonUtils::SaveObjectToJsonString(variantInfo, variantInfoAsJsonString); + [[maybe_unused]] const bool convertSuccess = AZ::RPI::JsonUtils::SaveObjectToJsonString(variantInfo, variantInfoAsJsonString); AZ_Assert(convertSuccess, "Failed to convert VariantInfo to json string"); AssetBuilderSDK::JobDescriptor jobDescriptor; @@ -743,7 +743,6 @@ namespace AZ void ShaderVariantAssetBuilder::ProcessShaderVariantJob(const AssetBuilderSDK::ProcessJobRequest& request, AssetBuilderSDK::ProcessJobResponse& response) const { - const AZStd::sys_time_t startTime = AZStd::GetTimeNowTicks(); AssetBuilderSDK::JobCancelListener jobCancelListener(request.m_jobId); AZStd::string fullPath; @@ -756,7 +755,7 @@ namespace AZ const AZStd::string& variantJsonString = jobParameters.at(ShaderVariantJobVariantParam); RPI::ShaderVariantListSourceData::VariantInfo variantInfo; - const bool fromJsonStringSuccess = AZ::RPI::JsonUtils::LoadObjectFromJsonString(variantJsonString, variantInfo); + [[maybe_unused]] const bool fromJsonStringSuccess = AZ::RPI::JsonUtils::LoadObjectFromJsonString(variantJsonString, variantInfo); AZ_Assert(fromJsonStringSuccess, "Failed to convert json string to VariantInfo"); RPI::ShaderSourceData shaderSourceDescriptor; @@ -777,6 +776,8 @@ namespace AZ response.m_resultCode = AssetBuilderSDK::ProcessJobResult_Success; return; } + + const AZStd::sys_time_t shaderVariantAssetBuildTimestamp = AZStd::GetTimeNowMicroSecond(); auto supervariantList = ShaderBuilderUtility::GetSupervariantListFromShaderSourceData(shaderSourceDescriptor); @@ -911,7 +912,7 @@ namespace AZ ShaderVariantCreationContext shaderVariantCreationContext = { *shaderPlatformInterface, request.m_platformInfo, buildOptions.m_compilerArguments, request.m_tempDirPath, - startTime, + shaderVariantAssetBuildTimestamp, shaderSourceDescriptor, *shaderOptionGroupLayout.get(), shaderEntryPoints, diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutUtility.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutUtility.cpp index dba95741ad..cb3318128e 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutUtility.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutUtility.cpp @@ -15,8 +15,6 @@ namespace AZ { namespace SrgLayoutUtility { - static constexpr char SrgLayoutUtilityName[] = "SrgLayoutUtility"; - RHI::ShaderInputImageType ToShaderInputImageType(TextureType textureType) { switch (textureType) diff --git a/Gems/Atom/Asset/Shader/preview.png b/Gems/Atom/Asset/Shader/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/Atom/Asset/Shader/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/Atom/Bootstrap/Code/CMakeLists.txt b/Gems/Atom/Bootstrap/Code/CMakeLists.txt index 1787af04ed..fd9df96124 100644 --- a/Gems/Atom/Bootstrap/Code/CMakeLists.txt +++ b/Gems/Atom/Bootstrap/Code/CMakeLists.txt @@ -45,14 +45,4 @@ ly_create_alias(NAME Atom_Bootstrap.Clients NAMESPACE Gem TARGETS Gem::Atom_Boot ly_create_alias(NAME Atom_Bootstrap.Servers NAMESPACE Gem TARGETS Gem::Atom_Bootstrap) # The Atom_Bootstrap gem is responsible for making the NativeWindow handle in the launcher applications -# Loop over each Project name to allow the ${ProjectName}.GameLauncher and ${ProjectName}.ServerLauncher -# target to add the gem the Clients and Servers variant -get_property(LY_PROJECTS_TARGET_NAME GLOBAL PROPERTY LY_PROJECTS_TARGET_NAME) -foreach(project_name IN LISTS LY_PROJECTS_TARGET_NAME) - # Add gem as a dependency of the Clients Launcher - ly_enable_gems(PROJECT_NAME ${project_name} GEMS Atom_Bootstrap VARIANTS Clients TARGETS ${project_name}.GameLauncher) - # Add gem as a dependency of the Servers Launcher - if(PAL_TRAIT_BUILD_SERVER_SUPPORTED) - ly_enable_gems(PROJECT_NAME ${project_name} GEMS Atom_Bootstrap VARIANTS Servers TARGETS ${project_name}.ServerLauncher) - endif() -endforeach() +ly_enable_gems(GEMS Atom_Bootstrap) diff --git a/Gems/Atom/Bootstrap/preview.png b/Gems/Atom/Bootstrap/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/Atom/Bootstrap/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/Atom/Component/DebugCamera/Code/Source/CameraComponent.cpp b/Gems/Atom/Component/DebugCamera/Code/Source/CameraComponent.cpp index 217cf0f061..ca62918aa3 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Source/CameraComponent.cpp +++ b/Gems/Atom/Component/DebugCamera/Code/Source/CameraComponent.cpp @@ -257,8 +257,8 @@ namespace AZ void CameraComponent::OnViewportResized(uint32_t width, uint32_t height) { - AZ_UNUSED(width) - AZ_UNUSED(height) + AZ_UNUSED(width); + AZ_UNUSED(height); UpdateAspectRatio(); UpdateViewToClipMatrix(); } diff --git a/Gems/Atom/Component/DebugCamera/Code/Source/NoClipControllerComponent.cpp b/Gems/Atom/Component/DebugCamera/Code/Source/NoClipControllerComponent.cpp index b2d2a4bb15..d9979c455b 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Source/NoClipControllerComponent.cpp +++ b/Gems/Atom/Component/DebugCamera/Code/Source/NoClipControllerComponent.cpp @@ -388,9 +388,9 @@ namespace AZ m_properties = properties; } - void NoClipControllerComponent::SetTouchSensitivity([[maybe_unused]] float touchSensitivity) + void NoClipControllerComponent::SetTouchSensitivity(float touchSensitivity) { - m_properties.m_touchSensitivity; + m_properties.m_touchSensitivity = touchSensitivity; } void NoClipControllerComponent::SetPosition(AZ::Vector3 position) diff --git a/Gems/Atom/Component/DebugCamera/preview.png b/Gems/Atom/Component/DebugCamera/preview.png deleted file mode 100644 index 400b6e6e35..0000000000 --- a/Gems/Atom/Component/DebugCamera/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bc978169029b8ef4e69ee02abdc7f9bdc970900db90169bbf25d4b201f5c1287 -size 37625 diff --git a/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Nuke/test-extreme-grade_inv-Log2-48nits_32_LUT.azasset b/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Nuke/test-extreme-grade_inv-Log2-48nits_32_LUT.azasset new file mode 100644 index 0000000000..66f3b57564 --- /dev/null +++ b/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Nuke/test-extreme-grade_inv-Log2-48nits_32_LUT.azasset @@ -0,0 +1,32780 @@ +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "LookupTableAsset", + "ClassData": { + "Name": "LookupTable", + "Intervals": [ + 0, 33, 66, 99, 132, 165, 198, 231, 264, 297, 330, 363, 396, 429, 462, 495, 528, 561, 594, 627, 660, 693, 726, 759, 792, 825, 858, 891, 924, 957, 990, 1023], + "Values": [ + 0, 0, 0, + 0, 40, 0, + 0, 176, 0, + 0, 310, 0, + 0, 444, 0, + 0, 578, 0, + 0, 711, 0, + 0, 844, 0, + 0, 976, 0, + 0, 1109, 0, + 0, 1241, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1638, 0, + 0, 1770, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 235, 0, 150, + 0, 22, 0, + 0, 162, 0, + 0, 300, 0, + 0, 437, 0, + 0, 572, 0, + 0, 707, 0, + 0, 841, 0, + 0, 974, 0, + 0, 1107, 0, + 0, 1240, 0, + 0, 1373, 0, + 0, 1505, 0, + 0, 1638, 0, + 0, 1770, 0, + 0, 1902, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 474, 0, 352, + 349, 0, 225, + 98, 143, 0, + 0, 286, 0, + 0, 427, 0, + 0, 565, 0, + 0, 701, 0, + 0, 836, 0, + 0, 971, 0, + 0, 1105, 0, + 0, 1238, 0, + 0, 1371, 0, + 0, 1504, 0, + 0, 1637, 0, + 0, 1769, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 672, 0, 529, + 595, 0, 448, + 467, 117, 309, + 205, 267, 14, + 0, 412, 0, + 0, 554, 0, + 0, 693, 0, + 0, 831, 0, + 0, 967, 0, + 0, 1102, 0, + 0, 1236, 0, + 0, 1370, 0, + 0, 1503, 0, + 0, 1636, 0, + 0, 1769, 0, + 0, 1901, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 848, 0, 693, + 797, 0, 638, + 719, 78, 551, + 588, 240, 402, + 318, 393, 67, + 0, 540, 0, + 0, 683, 0, + 0, 823, 0, + 0, 961, 0, + 0, 1097, 0, + 0, 1233, 0, + 0, 1367, 0, + 0, 1501, 0, + 0, 1635, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1010, 0, 848, + 975, 0, 809, + 924, 22, 751, + 845, 201, 661, + 712, 365, 502, + 435, 520, 130, + 0, 669, 0, + 0, 813, 0, + 0, 953, 0, + 0, 1092, 0, + 0, 1228, 0, + 0, 1364, 0, + 0, 1499, 0, + 0, 1633, 0, + 0, 1766, 0, + 0, 1900, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1163, 0, 996, + 1139, 0, 968, + 1104, 0, 928, + 1052, 143, 869, + 972, 326, 775, + 837, 493, 609, + 555, 649, 202, + 0, 798, 0, + 0, 943, 0, + 0, 1084, 0, + 0, 1223, 0, + 0, 1360, 0, + 0, 1496, 0, + 0, 1631, 0, + 0, 1765, 0, + 0, 1898, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1311, 0, 1139, + 1293, 0, 1119, + 1269, 0, 1091, + 1233, 52, 1050, + 1181, 267, 990, + 1101, 452, 893, + 965, 621, 721, + 678, 778, 283, + 0, 928, 0, + 0, 1073, 0, + 0, 1215, 0, + 0, 1354, 0, + 0, 1491, 0, + 0, 1627, 0, + 0, 1762, 0, + 0, 1897, 0, + 0, 2030, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1454, 0, 1280, + 1441, 0, 1265, + 1424, 0, 1245, + 1399, 0, 1216, + 1363, 174, 1175, + 1311, 393, 1113, + 1230, 580, 1015, + 1093, 750, 837, + 804, 908, 374, + 0, 1059, 0, + 0, 1204, 0, + 0, 1346, 0, + 0, 1486, 0, + 0, 1623, 0, + 0, 1759, 0, + 0, 1894, 0, + 0, 2029, 0, + 0, 2163, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1595, 0, 1418, + 1585, 0, 1407, + 1572, 0, 1393, + 1554, 0, 1372, + 1530, 9, 1343, + 1494, 298, 1301, + 1441, 520, 1239, + 1360, 709, 1139, + 1222, 880, 957, + 931, 1039, 472, + 0, 1190, 0, + 0, 1336, 0, + 0, 1478, 0, + 0, 1617, 0, + 0, 1755, 0, + 0, 1891, 0, + 0, 2026, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1733, 0, 1555, + 1726, 0, 1547, + 1716, 0, 1536, + 1703, 0, 1521, + 1686, 0, 1501, + 1661, 130, 1471, + 1625, 424, 1429, + 1572, 649, 1366, + 1491, 839, 1265, + 1352, 1011, 1080, + 1059, 1170, 577, + 0, 1321, 0, + 0, 1467, 0, + 0, 1610, 0, + 0, 1749, 0, + 0, 1887, 0, + 0, 2023, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1869, 0, 1690, + 1864, 0, 1684, + 1857, 0, 1676, + 1848, 0, 1666, + 1835, 0, 1651, + 1817, 0, 1630, + 1792, 254, 1601, + 1756, 552, 1558, + 1704, 778, 1494, + 1622, 970, 1392, + 1483, 1141, 1205, + 1188, 1301, 687, + 0, 1453, 0, + 0, 1599, 0, + 0, 1741, 0, + 0, 1881, 0, + 0, 2019, 0, + 0, 2155, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2005, 0, 1825, + 2001, 0, 1821, + 1996, 0, 1815, + 1989, 0, 1807, + 1979, 0, 1796, + 1966, 0, 1781, + 1949, 0, 1760, + 1924, 379, 1731, + 1888, 681, 1688, + 1835, 908, 1624, + 1753, 1100, 1521, + 1614, 1272, 1332, + 1318, 1432, 803, + 0, 1584, 0, + 0, 1731, 0, + 0, 1873, 0, + 0, 2013, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2139, 0, 1959, + 2137, 0, 1956, + 2133, 0, 1951, + 2127, 0, 1945, + 2121, 0, 1937, + 2111, 0, 1927, + 2099, 0, 1912, + 2081, 0, 1891, + 2055, 506, 1861, + 2019, 810, 1818, + 1967, 1038, 1754, + 1885, 1231, 1650, + 1745, 1404, 1460, + 1448, 1564, 922, + 0, 1716, 0, + 0, 1863, 0, + 0, 2005, 0, + 0, 2145, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2273, 0, 2093, + 2271, 0, 2091, + 2269, 0, 2087, + 2265, 0, 2083, + 2259, 0, 2077, + 2253, 0, 2069, + 2243, 0, 2057, + 2231, 0, 2043, + 2213, 60, 2022, + 2187, 635, 1992, + 2151, 941, 1949, + 2099, 1169, 1884, + 2016, 1363, 1781, + 1877, 1536, 1589, + 1579, 1696, 1044, + 0, 1848, 0, + 0, 1995, 0, + 0, 2137, 0, + 0, 2277, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2407, 0, 2225, + 2405, 0, 2223, + 2403, 0, 2221, + 2401, 0, 2219, + 2397, 0, 2213, + 2391, 0, 2207, + 2385, 0, 2199, + 2375, 0, 2189, + 2361, 0, 2173, + 2345, 182, 2153, + 2319, 764, 2123, + 2283, 1071, 2081, + 2231, 1301, 2015, + 2149, 1494, 1911, + 2008, 1667, 1719, + 1710, 1828, 1168, + 0, 1980, 0, + 0, 2127, 0, + 0, 2269, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2539, 0, 2359, + 2539, 0, 2357, + 2537, 0, 2355, + 2535, 0, 2353, + 2533, 0, 2349, + 2529, 0, 2345, + 2523, 0, 2339, + 2517, 0, 2331, + 2507, 0, 2321, + 2493, 0, 2305, + 2475, 306, 2285, + 2451, 894, 2255, + 2415, 1202, 2211, + 2363, 1432, 2147, + 2279, 1626, 2042, + 2141, 1799, 1850, + 1842, 1960, 1295, + 0, 2113, 0, + 0, 2259, 0, + 0, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2673, 0, 2491, + 2671, 0, 2491, + 2671, 0, 2489, + 2669, 0, 2487, + 2667, 0, 2485, + 2665, 0, 2481, + 2661, 0, 2477, + 2655, 0, 2471, + 2649, 0, 2463, + 2639, 0, 2453, + 2625, 0, 2437, + 2607, 433, 2415, + 2583, 1025, 2387, + 2547, 1334, 2343, + 2493, 1564, 2279, + 2411, 1758, 2173, + 2273, 1931, 1981, + 1973, 2091, 1423, + 0, 2245, 0, + 0, 2391, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2805, 0, 2623, + 2805, 0, 2623, + 2803, 0, 2623, + 2803, 0, 2621, + 2801, 0, 2619, + 2799, 0, 2617, + 2797, 0, 2613, + 2793, 0, 2609, + 2787, 0, 2603, + 2781, 0, 2595, + 2771, 0, 2583, + 2757, 0, 2569, + 2741, 560, 2547, + 2715, 1155, 2517, + 2679, 1465, 2475, + 2625, 1696, 2409, + 2543, 1890, 2305, + 2403, 2063, 2111, + 2105, 2223, 1552, + 0, 2377, 0, + 0, 2523, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2937, 0, 2757, + 2937, 0, 2755, + 2937, 0, 2755, + 2935, 0, 2755, + 2935, 0, 2753, + 2933, 0, 2751, + 2931, 0, 2749, + 2929, 0, 2745, + 2925, 0, 2741, + 2919, 0, 2735, + 2913, 0, 2727, + 2903, 0, 2715, + 2891, 0, 2701, + 2873, 689, 2679, + 2847, 1287, 2649, + 2811, 1597, 2607, + 2759, 1828, 2541, + 2675, 2022, 2437, + 2535, 2195, 2243, + 2237, 2355, 1681, + 0, 2509, 0, + 0, 2655, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2887, + 3069, 0, 2887, + 3067, 0, 2885, + 3067, 0, 2885, + 3065, 0, 2883, + 3063, 0, 2881, + 3061, 0, 2877, + 3057, 0, 2873, + 3051, 0, 2867, + 3045, 0, 2859, + 3035, 0, 2847, + 3023, 0, 2833, + 3005, 819, 2811, + 2979, 1418, 2781, + 2943, 1729, 2739, + 2891, 1959, 2673, + 2807, 2153, 2569, + 2667, 2327, 2375, + 2369, 2487, 1811, + 0, 2641, 0, + 0, 2787, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3021, + 3203, 0, 3021, + 3203, 0, 3021, + 3201, 0, 3019, + 3201, 0, 3019, + 3201, 0, 3017, + 3199, 0, 3017, + 3197, 0, 3015, + 3195, 0, 3013, + 3193, 0, 3009, + 3189, 0, 3005, + 3183, 0, 2999, + 3177, 0, 2991, + 3167, 0, 2979, + 3155, 0, 2965, + 3137, 949, 2943, + 3111, 1550, 2913, + 3075, 1860, 2871, + 3023, 2091, 2805, + 2939, 2285, 2701, + 2801, 2459, 2507, + 2501, 2619, 1942, + 0, 2773, 0, + 0, 2919, 0, + 0, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3475, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3151, + 3333, 0, 3151, + 3333, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3327, 0, 3145, + 3325, 0, 3141, + 3321, 0, 3137, + 3315, 0, 3131, + 3309, 0, 3123, + 3299, 0, 3111, + 3287, 0, 3097, + 3269, 1080, 3075, + 3243, 1682, 3045, + 3207, 1992, 3003, + 3155, 2223, 2937, + 3073, 2417, 2833, + 2933, 2591, 2639, + 2633, 2751, 2073, + 0, 2905, 0, + 0, 3051, 0, + 0, 3193, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3283, + 3465, 0, 3283, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3273, + 3453, 0, 3269, + 3447, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3243, + 3419, 0, 3229, + 3401, 1211, 3207, + 3375, 1813, 3177, + 3339, 2125, 3135, + 3287, 2355, 3069, + 3205, 2549, 2965, + 3065, 2723, 2771, + 2765, 2885, 2205, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3465, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4009, 0, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3405, + 3585, 0, 3401, + 3579, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3375, + 3551, 0, 3361, + 3533, 1342, 3339, + 3507, 1945, 3309, + 3471, 2257, 3267, + 3419, 2487, 3201, + 3337, 2681, 3097, + 3197, 2855, 2903, + 2897, 3017, 2337, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3735, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3547, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3711, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3507, + 3683, 0, 3493, + 3665, 1474, 3471, + 3639, 2077, 3441, + 3603, 2389, 3399, + 3551, 2619, 3333, + 3469, 2813, 3229, + 3329, 2987, 3035, + 3029, 3149, 2467, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1605, 3603, + 3771, 2209, 3573, + 3735, 2521, 3531, + 3683, 2751, 3465, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2599, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3987, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1737, 3735, + 3903, 2341, 3705, + 3867, 2653, 3663, + 3815, 2883, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2731, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4091, 0, 3905, + 4079, 0, 3889, + 4061, 1869, 3867, + 4035, 2473, 3839, + 3999, 2785, 3795, + 3947, 3015, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2863, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2001, 4001, + 4095, 2605, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3515, 3563, + 3557, 3677, 2995, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2133, 4095, + 4095, 2737, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3127, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2265, 4095, + 4095, 2869, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3259, + 0, 0, 13, + 0, 54, 0, + 0, 186, 0, + 0, 318, 0, + 0, 450, 0, + 0, 582, 0, + 0, 714, 0, + 0, 846, 0, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 258, 0, 216, + 36, 36, 36, + 0, 172, 0, + 0, 308, 0, + 0, 442, 0, + 0, 576, 0, + 0, 710, 0, + 0, 843, 0, + 0, 976, 0, + 0, 1108, 0, + 0, 1241, 0, + 0, 1373, 0, + 0, 1506, 0, + 0, 1638, 0, + 0, 1770, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 488, 0, 395, + 367, 11, 282, + 129, 154, 65, + 0, 294, 0, + 0, 432, 0, + 0, 569, 0, + 0, 704, 0, + 0, 839, 0, + 0, 973, 0, + 0, 1106, 0, + 0, 1239, 0, + 0, 1372, 0, + 0, 1505, 0, + 0, 1637, 0, + 0, 1770, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 681, 0, 560, + 606, 0, 484, + 481, 128, 357, + 230, 275, 101, + 0, 418, 0, + 0, 559, 0, + 0, 697, 0, + 0, 833, 0, + 0, 969, 0, + 0, 1103, 0, + 0, 1237, 0, + 0, 1370, 0, + 0, 1503, 0, + 0, 1636, 0, + 0, 1769, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 854, 0, 714, + 804, 0, 662, + 727, 91, 580, + 599, 249, 441, + 337, 399, 146, + 0, 544, 0, + 0, 686, 0, + 0, 826, 0, + 0, 963, 0, + 0, 1099, 0, + 0, 1234, 0, + 0, 1368, 0, + 0, 1502, 0, + 0, 1635, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1015, 0, 863, + 980, 0, 825, + 929, 36, 770, + 851, 210, 683, + 720, 372, 534, + 450, 525, 199, + 0, 672, 0, + 0, 815, 0, + 0, 955, 0, + 0, 1093, 0, + 0, 1229, 0, + 0, 1365, 0, + 0, 1499, 0, + 0, 1633, 0, + 0, 1767, 0, + 0, 1900, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1167, 0, 1007, + 1142, 0, 980, + 1107, 0, 941, + 1056, 154, 883, + 977, 333, 793, + 844, 498, 634, + 567, 652, 262, + 0, 801, 0, + 0, 945, 0, + 0, 1085, 0, + 0, 1224, 0, + 0, 1361, 0, + 0, 1496, 0, + 0, 1631, 0, + 0, 1765, 0, + 0, 1899, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1313, 0, 1147, + 1296, 0, 1128, + 1271, 0, 1100, + 1236, 65, 1060, + 1184, 275, 1001, + 1104, 458, 907, + 969, 625, 741, + 687, 781, 334, + 0, 930, 0, + 0, 1075, 0, + 0, 1216, 0, + 0, 1355, 0, + 0, 1492, 0, + 0, 1628, 0, + 0, 1763, 0, + 0, 1897, 0, + 0, 2030, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1456, 0, 1286, + 1443, 0, 1271, + 1425, 0, 1251, + 1401, 0, 1223, + 1365, 184, 1182, + 1313, 399, 1122, + 1233, 584, 1025, + 1097, 753, 853, + 810, 910, 416, + 0, 1060, 0, + 0, 1206, 0, + 0, 1347, 0, + 0, 1486, 0, + 0, 1624, 0, + 0, 1760, 0, + 0, 1894, 0, + 0, 2029, 0, + 0, 2163, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1596, 0, 1422, + 1586, 0, 1412, + 1574, 0, 1397, + 1556, 0, 1377, + 1531, 23, 1348, + 1495, 306, 1307, + 1443, 525, 1245, + 1362, 712, 1147, + 1225, 882, 969, + 936, 1040, 506, + 0, 1191, 0, + 0, 1337, 0, + 0, 1479, 0, + 0, 1618, 0, + 0, 1755, 0, + 0, 1891, 0, + 0, 2026, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1734, 0, 1558, + 1727, 0, 1550, + 1717, 0, 1539, + 1704, 0, 1525, + 1687, 0, 1504, + 1662, 141, 1475, + 1626, 430, 1434, + 1574, 652, 1371, + 1492, 841, 1271, + 1354, 1012, 1089, + 1063, 1171, 604, + 0, 1322, 0, + 0, 1468, 0, + 0, 1610, 0, + 0, 1750, 0, + 0, 1887, 0, + 0, 2023, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1870, 0, 1693, + 1865, 0, 1687, + 1858, 0, 1679, + 1848, 0, 1668, + 1836, 0, 1653, + 1818, 0, 1633, + 1793, 262, 1604, + 1757, 556, 1561, + 1704, 781, 1498, + 1623, 971, 1397, + 1485, 1142, 1212, + 1191, 1302, 709, + 0, 1453, 0, + 0, 1599, 0, + 0, 1742, 0, + 0, 1881, 0, + 0, 2019, 0, + 0, 2155, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2005, 0, 1827, + 2001, 0, 1822, + 1996, 0, 1817, + 1989, 0, 1809, + 1980, 0, 1798, + 1967, 0, 1783, + 1949, 0, 1762, + 1924, 386, 1733, + 1888, 684, 1690, + 1836, 910, 1627, + 1754, 1101, 1524, + 1615, 1273, 1337, + 1320, 1433, 819, + 0, 1585, 0, + 0, 1731, 0, + 0, 1874, 0, + 0, 2013, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2139, 0, 1960, + 2137, 0, 1957, + 2133, 0, 1953, + 2127, 0, 1947, + 2121, 0, 1939, + 2111, 0, 1928, + 2099, 0, 1913, + 2081, 0, 1892, + 2055, 511, 1863, + 2020, 813, 1820, + 1967, 1040, 1756, + 1885, 1232, 1653, + 1746, 1405, 1464, + 1450, 1565, 935, + 0, 1717, 0, + 0, 1863, 0, + 0, 2005, 0, + 0, 2145, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2273, 0, 2093, + 2271, 0, 2091, + 2269, 0, 2087, + 2265, 0, 2083, + 2259, 0, 2077, + 2253, 0, 2069, + 2243, 0, 2059, + 2231, 0, 2044, + 2213, 72, 2023, + 2187, 638, 1993, + 2151, 943, 1950, + 2099, 1171, 1886, + 2017, 1363, 1783, + 1877, 1536, 1592, + 1580, 1696, 1054, + 0, 1848, 0, + 0, 1995, 0, + 0, 2137, 0, + 0, 2277, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2407, 0, 2227, + 2405, 0, 2225, + 2403, 0, 2223, + 2401, 0, 2219, + 2397, 0, 2215, + 2391, 0, 2209, + 2385, 0, 2201, + 2375, 0, 2189, + 2363, 0, 2175, + 2345, 192, 2153, + 2319, 767, 2125, + 2283, 1073, 2081, + 2231, 1302, 2017, + 2149, 1495, 1913, + 2009, 1668, 1722, + 1711, 1828, 1176, + 0, 1980, 0, + 0, 2127, 0, + 0, 2269, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2539, 0, 2359, + 2539, 0, 2357, + 2537, 0, 2357, + 2535, 0, 2353, + 2533, 0, 2351, + 2529, 0, 2345, + 2523, 0, 2341, + 2517, 0, 2333, + 2507, 0, 2321, + 2495, 0, 2305, + 2477, 314, 2285, + 2451, 896, 2255, + 2415, 1203, 2213, + 2363, 1433, 2147, + 2281, 1626, 2043, + 2141, 1799, 1851, + 1842, 1960, 1301, + 0, 2113, 0, + 0, 2259, 0, + 0, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2673, 0, 2491, + 2671, 0, 2491, + 2671, 0, 2489, + 2669, 0, 2487, + 2667, 0, 2485, + 2665, 0, 2481, + 2661, 0, 2477, + 2655, 0, 2471, + 2649, 0, 2463, + 2639, 0, 2453, + 2627, 0, 2437, + 2609, 438, 2417, + 2583, 1026, 2387, + 2547, 1334, 2343, + 2495, 1564, 2279, + 2413, 1758, 2175, + 2273, 1931, 1982, + 1974, 2091, 1427, + 0, 2245, 0, + 0, 2391, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2805, 0, 2625, + 2805, 0, 2623, + 2803, 0, 2623, + 2803, 0, 2621, + 2801, 0, 2619, + 2799, 0, 2617, + 2797, 0, 2613, + 2793, 0, 2609, + 2787, 0, 2603, + 2781, 0, 2595, + 2771, 0, 2585, + 2759, 0, 2569, + 2741, 565, 2549, + 2715, 1157, 2519, + 2679, 1466, 2475, + 2627, 1696, 2411, + 2543, 1890, 2305, + 2405, 2063, 2113, + 2105, 2223, 1555, + 0, 2377, 0, + 0, 2523, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2937, 0, 2757, + 2937, 0, 2755, + 2937, 0, 2755, + 2935, 0, 2755, + 2935, 0, 2753, + 2933, 0, 2751, + 2931, 0, 2749, + 2929, 0, 2745, + 2925, 0, 2741, + 2919, 0, 2735, + 2913, 0, 2727, + 2903, 0, 2717, + 2891, 0, 2701, + 2873, 693, 2679, + 2847, 1288, 2651, + 2811, 1597, 2607, + 2759, 1828, 2541, + 2675, 2022, 2437, + 2537, 2195, 2243, + 2237, 2355, 1684, + 0, 2509, 0, + 0, 2655, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2889, + 3071, 0, 2889, + 3069, 0, 2887, + 3069, 0, 2887, + 3069, 0, 2887, + 3067, 0, 2885, + 3065, 0, 2883, + 3063, 0, 2881, + 3061, 0, 2877, + 3057, 0, 2873, + 3051, 0, 2867, + 3045, 0, 2859, + 3035, 0, 2847, + 3023, 0, 2833, + 3005, 821, 2811, + 2979, 1419, 2781, + 2943, 1729, 2739, + 2891, 1960, 2673, + 2807, 2153, 2569, + 2669, 2327, 2375, + 2369, 2487, 1813, + 0, 2641, 0, + 0, 2787, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3021, + 3203, 0, 3021, + 3203, 0, 3021, + 3201, 0, 3019, + 3201, 0, 3019, + 3201, 0, 3019, + 3199, 0, 3017, + 3197, 0, 3015, + 3195, 0, 3013, + 3193, 0, 3009, + 3189, 0, 3005, + 3183, 0, 2999, + 3177, 0, 2991, + 3167, 0, 2979, + 3155, 0, 2965, + 3137, 951, 2943, + 3111, 1550, 2913, + 3075, 1861, 2871, + 3023, 2091, 2805, + 2941, 2285, 2701, + 2801, 2459, 2507, + 2501, 2619, 1944, + 0, 2773, 0, + 0, 2919, 0, + 0, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3151, + 3333, 0, 3151, + 3333, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3327, 0, 3145, + 3325, 0, 3141, + 3321, 0, 3137, + 3315, 0, 3131, + 3309, 0, 3123, + 3299, 0, 3111, + 3287, 0, 3097, + 3269, 1081, 3075, + 3243, 1682, 3045, + 3207, 1993, 3003, + 3155, 2223, 2937, + 3073, 2417, 2833, + 2933, 2591, 2639, + 2633, 2753, 2075, + 0, 2905, 0, + 0, 3051, 0, + 0, 3193, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3283, + 3465, 0, 3283, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3273, + 3453, 0, 3269, + 3447, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3243, + 3419, 0, 3229, + 3401, 1212, 3207, + 3375, 1814, 3177, + 3339, 2125, 3135, + 3287, 2355, 3069, + 3205, 2549, 2965, + 3065, 2723, 2771, + 2765, 2885, 2205, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4009, 0, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3405, + 3585, 0, 3401, + 3579, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3375, + 3551, 0, 3361, + 3533, 1343, 3339, + 3507, 1946, 3309, + 3471, 2257, 3267, + 3419, 2487, 3201, + 3337, 2681, 3097, + 3197, 2855, 2903, + 2897, 3017, 2337, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3735, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3711, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3507, + 3683, 0, 3493, + 3665, 1474, 3471, + 3639, 2077, 3441, + 3603, 2389, 3399, + 3551, 2619, 3333, + 3469, 2813, 3229, + 3329, 2987, 3035, + 3029, 3149, 2469, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1606, 3603, + 3771, 2209, 3573, + 3735, 2521, 3531, + 3683, 2751, 3465, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2601, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3987, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1738, 3735, + 3903, 2341, 3707, + 3867, 2653, 3663, + 3815, 2883, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2731, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4091, 0, 3905, + 4079, 0, 3889, + 4061, 1869, 3867, + 4035, 2473, 3839, + 3999, 2785, 3795, + 3947, 3015, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2863, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2001, 4001, + 4095, 2605, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3515, 3563, + 3557, 3677, 2995, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2133, 4095, + 4095, 2737, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3127, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2265, 4095, + 4095, 2869, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3259, + 7, 0, 127, + 0, 71, 0, + 0, 199, 0, + 0, 328, 0, + 0, 457, 0, + 0, 587, 0, + 0, 718, 0, + 0, 849, 0, + 0, 980, 0, + 0, 1112, 0, + 0, 1243, 0, + 0, 1375, 0, + 0, 1507, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 287, 0, 292, + 83, 54, 145, + 0, 186, 0, + 0, 318, 0, + 0, 450, 0, + 0, 582, 0, + 0, 714, 0, + 0, 846, 0, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 506, 0, 448, + 390, 30, 348, + 168, 168, 168, + 0, 304, 0, + 0, 440, 0, + 0, 574, 0, + 0, 708, 0, + 0, 842, 0, + 0, 975, 0, + 0, 1108, 0, + 0, 1240, 0, + 0, 1373, 0, + 0, 1505, 0, + 0, 1638, 0, + 0, 1770, 0, + 0, 1902, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 693, 0, 597, + 620, 0, 527, + 499, 143, 414, + 261, 286, 197, + 0, 426, 0, + 0, 564, 0, + 0, 701, 0, + 0, 836, 0, + 0, 971, 0, + 0, 1105, 0, + 0, 1238, 0, + 0, 1371, 0, + 0, 1504, 0, + 0, 1637, 0, + 0, 1769, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 862, 0, 741, + 813, 0, 692, + 738, 107, 616, + 613, 260, 489, + 362, 407, 233, + 0, 550, 0, + 0, 691, 0, + 0, 829, 0, + 0, 965, 0, + 0, 1100, 0, + 0, 1235, 0, + 0, 1369, 0, + 0, 1502, 0, + 0, 1636, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1020, 0, 882, + 986, 0, 846, + 936, 54, 794, + 859, 223, 712, + 731, 381, 573, + 469, 531, 278, + 0, 677, 0, + 0, 818, 0, + 0, 958, 0, + 0, 1095, 0, + 0, 1231, 0, + 0, 1366, 0, + 0, 1500, 0, + 0, 1634, 0, + 0, 1767, 0, + 0, 1900, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1171, 0, 1021, + 1146, 0, 995, + 1112, 0, 957, + 1061, 168, 902, + 983, 343, 815, + 852, 504, 666, + 582, 657, 331, + 0, 804, 0, + 0, 947, 0, + 0, 1087, 0, + 0, 1225, 0, + 0, 1362, 0, + 0, 1497, 0, + 0, 1632, 0, + 0, 1765, 0, + 0, 1899, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1316, 0, 1158, + 1299, 0, 1139, + 1274, 0, 1112, + 1239, 82, 1073, + 1188, 286, 1015, + 1109, 465, 925, + 976, 630, 766, + 699, 784, 394, + 0, 933, 0, + 0, 1077, 0, + 0, 1217, 0, + 0, 1356, 0, + 0, 1493, 0, + 0, 1628, 0, + 0, 1763, 0, + 0, 1897, 0, + 0, 2031, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1458, 0, 1293, + 1445, 0, 1279, + 1428, 0, 1260, + 1403, 0, 1232, + 1368, 197, 1192, + 1316, 407, 1133, + 1236, 590, 1039, + 1101, 757, 873, + 819, 913, 466, + 0, 1062, 0, + 0, 1207, 0, + 0, 1348, 0, + 0, 1487, 0, + 0, 1624, 0, + 0, 1760, 0, + 0, 1895, 0, + 0, 2029, 0, + 0, 2163, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1597, 0, 1428, + 1588, 0, 1418, + 1575, 0, 1403, + 1558, 0, 1383, + 1533, 42, 1355, + 1497, 316, 1315, + 1445, 531, 1254, + 1365, 717, 1157, + 1229, 885, 985, + 943, 1042, 548, + 0, 1192, 0, + 0, 1338, 0, + 0, 1479, 0, + 0, 1618, 0, + 0, 1756, 0, + 0, 1892, 0, + 0, 2027, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1735, 0, 1562, + 1728, 0, 1555, + 1718, 0, 1544, + 1706, 0, 1529, + 1688, 0, 1509, + 1663, 155, 1480, + 1628, 438, 1439, + 1575, 657, 1377, + 1494, 845, 1279, + 1357, 1014, 1101, + 1068, 1172, 638, + 0, 1323, 0, + 0, 1469, 0, + 0, 1611, 0, + 0, 1750, 0, + 0, 1887, 0, + 0, 2023, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1871, 0, 1696, + 1866, 0, 1690, + 1859, 0, 1682, + 1849, 0, 1672, + 1837, 0, 1657, + 1819, 0, 1636, + 1794, 273, 1607, + 1758, 562, 1566, + 1706, 784, 1503, + 1624, 974, 1403, + 1487, 1144, 1221, + 1195, 1303, 736, + 0, 1454, 0, + 0, 1600, 0, + 0, 1742, 0, + 0, 1882, 0, + 0, 2019, 0, + 0, 2155, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2006, 0, 1829, + 2002, 0, 1825, + 1997, 0, 1819, + 1990, 0, 1811, + 1981, 0, 1800, + 1968, 0, 1785, + 1950, 0, 1765, + 1925, 394, 1736, + 1889, 689, 1694, + 1837, 913, 1630, + 1755, 1103, 1529, + 1617, 1275, 1344, + 1323, 1434, 841, + 0, 1585, 0, + 0, 1732, 0, + 0, 1874, 0, + 0, 2013, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2141, 0, 1962, + 2137, 0, 1959, + 2133, 0, 1955, + 2129, 0, 1949, + 2121, 0, 1941, + 2113, 0, 1930, + 2099, 0, 1915, + 2081, 0, 1894, + 2057, 518, 1865, + 2020, 816, 1822, + 1968, 1042, 1759, + 1886, 1234, 1657, + 1747, 1405, 1470, + 1452, 1565, 952, + 0, 1717, 0, + 0, 1863, 0, + 0, 2006, 0, + 0, 2145, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2273, 0, 2095, + 2271, 0, 2093, + 2269, 0, 2089, + 2265, 0, 2085, + 2259, 0, 2079, + 2253, 0, 2071, + 2243, 0, 2061, + 2231, 0, 2045, + 2213, 89, 2024, + 2187, 643, 1995, + 2151, 945, 1952, + 2099, 1172, 1888, + 2017, 1364, 1785, + 1878, 1537, 1596, + 1582, 1697, 1067, + 0, 1849, 0, + 0, 1995, 0, + 0, 2137, 0, + 0, 2277, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2407, 0, 2227, + 2405, 0, 2225, + 2403, 0, 2223, + 2401, 0, 2219, + 2397, 0, 2215, + 2391, 0, 2209, + 2385, 0, 2201, + 2375, 0, 2191, + 2363, 0, 2175, + 2345, 205, 2155, + 2319, 771, 2125, + 2283, 1074, 2083, + 2231, 1303, 2018, + 2149, 1495, 1915, + 2010, 1668, 1725, + 1713, 1828, 1186, + 0, 1980, 0, + 0, 2127, 0, + 0, 2269, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2541, 0, 2359, + 2539, 0, 2359, + 2537, 0, 2357, + 2535, 0, 2355, + 2533, 0, 2351, + 2529, 0, 2347, + 2523, 0, 2341, + 2517, 0, 2333, + 2507, 0, 2321, + 2495, 0, 2307, + 2477, 324, 2285, + 2451, 899, 2257, + 2415, 1205, 2213, + 2363, 1434, 2149, + 2281, 1627, 2045, + 2141, 1800, 1854, + 1843, 1960, 1308, + 0, 2113, 0, + 0, 2259, 0, + 0, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2673, 0, 2493, + 2673, 0, 2491, + 2671, 0, 2489, + 2669, 0, 2489, + 2667, 0, 2485, + 2665, 0, 2483, + 2661, 0, 2479, + 2655, 0, 2473, + 2649, 0, 2465, + 2639, 0, 2453, + 2627, 0, 2439, + 2609, 446, 2417, + 2583, 1028, 2387, + 2547, 1335, 2345, + 2495, 1565, 2279, + 2413, 1758, 2175, + 2273, 1932, 1984, + 1975, 2093, 1433, + 0, 2245, 0, + 0, 2391, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2805, 0, 2625, + 2805, 0, 2623, + 2805, 0, 2623, + 2803, 0, 2621, + 2801, 0, 2619, + 2799, 0, 2617, + 2797, 0, 2615, + 2793, 0, 2609, + 2787, 0, 2603, + 2781, 0, 2595, + 2771, 0, 2585, + 2759, 0, 2569, + 2741, 570, 2549, + 2715, 1158, 2519, + 2679, 1467, 2475, + 2627, 1697, 2411, + 2545, 1890, 2307, + 2405, 2063, 2113, + 2107, 2223, 1559, + 0, 2377, 0, + 0, 2523, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2757, + 2937, 0, 2757, + 2937, 0, 2755, + 2937, 0, 2755, + 2935, 0, 2753, + 2933, 0, 2751, + 2931, 0, 2749, + 2929, 0, 2745, + 2925, 0, 2741, + 2919, 0, 2735, + 2913, 0, 2727, + 2903, 0, 2717, + 2891, 0, 2701, + 2873, 697, 2681, + 2847, 1289, 2651, + 2811, 1598, 2607, + 2759, 1828, 2543, + 2677, 2022, 2437, + 2537, 2195, 2245, + 2237, 2355, 1687, + 0, 2509, 0, + 0, 2655, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2889, + 3071, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2887, + 3069, 0, 2887, + 3067, 0, 2885, + 3065, 0, 2883, + 3063, 0, 2881, + 3061, 0, 2877, + 3057, 0, 2873, + 3051, 0, 2867, + 3045, 0, 2859, + 3035, 0, 2849, + 3023, 0, 2833, + 3005, 825, 2811, + 2979, 1420, 2783, + 2943, 1729, 2739, + 2891, 1960, 2673, + 2809, 2153, 2569, + 2669, 2327, 2377, + 2369, 2487, 1816, + 0, 2641, 0, + 0, 2787, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3021, + 3203, 0, 3021, + 3203, 0, 3021, + 3201, 0, 3021, + 3201, 0, 3019, + 3201, 0, 3019, + 3199, 0, 3017, + 3197, 0, 3015, + 3195, 0, 3013, + 3193, 0, 3009, + 3189, 0, 3005, + 3183, 0, 2999, + 3177, 0, 2991, + 3167, 0, 2981, + 3155, 0, 2965, + 3137, 954, 2943, + 3111, 1551, 2913, + 3075, 1861, 2871, + 3023, 2091, 2805, + 2941, 2285, 2701, + 2801, 2459, 2507, + 2501, 2621, 1945, + 0, 2773, 0, + 0, 2919, 0, + 0, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3151, + 3333, 0, 3151, + 3333, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3327, 0, 3145, + 3325, 0, 3141, + 3321, 0, 3137, + 3315, 0, 3131, + 3309, 0, 3123, + 3299, 0, 3111, + 3287, 0, 3097, + 3269, 1083, 3075, + 3243, 1682, 3045, + 3207, 1993, 3003, + 3155, 2223, 2937, + 3073, 2417, 2833, + 2933, 2591, 2639, + 2633, 2753, 2075, + 0, 2905, 0, + 0, 3051, 0, + 0, 3193, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3283, + 3465, 0, 3283, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3273, + 3453, 0, 3269, + 3447, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3243, + 3419, 0, 3229, + 3401, 1213, 3207, + 3375, 1814, 3177, + 3339, 2125, 3135, + 3287, 2355, 3069, + 3205, 2549, 2965, + 3065, 2723, 2771, + 2765, 2885, 2207, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4009, 0, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3405, + 3585, 0, 3401, + 3579, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3377, + 3551, 0, 3361, + 3533, 1344, 3339, + 3507, 1946, 3309, + 3471, 2257, 3267, + 3419, 2487, 3201, + 3337, 2681, 3097, + 3197, 2855, 2903, + 2897, 3017, 2337, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3711, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3509, + 3683, 0, 3493, + 3665, 1475, 3471, + 3639, 2077, 3441, + 3603, 2389, 3399, + 3551, 2619, 3333, + 3469, 2813, 3229, + 3329, 2987, 3035, + 3029, 3149, 2469, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1606, 3603, + 3771, 2209, 3573, + 3735, 2521, 3531, + 3683, 2751, 3465, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2601, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3987, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1738, 3735, + 3903, 2341, 3707, + 3867, 2653, 3663, + 3815, 2883, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2733, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4091, 0, 3905, + 4079, 0, 3889, + 4061, 1870, 3869, + 4035, 2473, 3839, + 3999, 2785, 3795, + 3947, 3017, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2863, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2002, 4001, + 4095, 2605, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3515, 3563, + 3557, 3677, 2995, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2133, 4095, + 4095, 2737, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3127, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2265, 4095, + 4095, 2869, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3259, + 73, 0, 245, + 0, 93, 78, + 0, 216, 0, + 0, 340, 0, + 0, 467, 0, + 0, 595, 0, + 0, 724, 0, + 0, 853, 0, + 0, 984, 0, + 0, 1114, 0, + 0, 1245, 0, + 0, 1377, 0, + 0, 1508, 0, + 0, 1640, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 324, 0, 378, + 139, 77, 259, + 0, 203, 27, + 0, 331, 0, + 0, 460, 0, + 0, 589, 0, + 0, 719, 0, + 0, 850, 0, + 0, 981, 0, + 0, 1112, 0, + 0, 1244, 0, + 0, 1376, 0, + 0, 1507, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 528, 0, 510, + 420, 54, 424, + 215, 186, 277, + 0, 318, 0, + 0, 450, 0, + 0, 582, 0, + 0, 714, 0, + 0, 846, 0, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 708, 0, 642, + 638, 21, 580, + 522, 162, 481, + 300, 300, 300, + 0, 437, 0, + 0, 572, 0, + 0, 707, 0, + 0, 841, 0, + 0, 974, 0, + 0, 1107, 0, + 0, 1240, 0, + 0, 1373, 0, + 0, 1505, 0, + 0, 1638, 0, + 0, 1770, 0, + 0, 1902, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 873, 0, 775, + 825, 0, 729, + 752, 127, 659, + 631, 275, 546, + 393, 418, 329, + 0, 558, 0, + 0, 696, 0, + 0, 833, 0, + 0, 968, 0, + 0, 1103, 0, + 0, 1237, 0, + 0, 1370, 0, + 0, 1503, 0, + 0, 1636, 0, + 0, 1769, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1028, 0, 907, + 994, 0, 873, + 945, 77, 824, + 870, 239, 748, + 745, 392, 621, + 494, 539, 365, + 0, 683, 0, + 0, 823, 0, + 0, 961, 0, + 0, 1097, 0, + 0, 1233, 0, + 0, 1367, 0, + 0, 1501, 0, + 0, 1635, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1176, 0, 1039, + 1152, 0, 1014, + 1118, 0, 979, + 1068, 186, 926, + 991, 355, 844, + 863, 513, 705, + 601, 663, 410, + 0, 809, 0, + 0, 951, 0, + 0, 1090, 0, + 0, 1227, 0, + 0, 1363, 0, + 0, 1498, 0, + 0, 1632, 0, + 0, 1766, 0, + 0, 1899, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1320, 0, 1171, + 1303, 0, 1153, + 1279, 0, 1127, + 1244, 103, 1089, + 1193, 300, 1034, + 1115, 475, 948, + 984, 636, 798, + 714, 789, 463, + 0, 936, 0, + 0, 1079, 0, + 0, 1219, 0, + 0, 1357, 0, + 0, 1494, 0, + 0, 1629, 0, + 0, 1764, 0, + 0, 1898, 0, + 0, 2031, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1461, 0, 1304, + 1448, 0, 1290, + 1431, 0, 1271, + 1406, 0, 1244, + 1371, 214, 1205, + 1320, 418, 1147, + 1241, 597, 1057, + 1108, 762, 898, + 831, 917, 526, + 0, 1065, 0, + 0, 1209, 0, + 0, 1350, 0, + 0, 1488, 0, + 0, 1625, 0, + 0, 1760, 0, + 0, 1895, 0, + 0, 2029, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1599, 0, 1436, + 1590, 0, 1426, + 1577, 0, 1411, + 1560, 0, 1392, + 1535, 65, 1364, + 1500, 329, 1324, + 1448, 539, 1265, + 1368, 722, 1171, + 1233, 889, 1005, + 952, 1045, 598, + 0, 1194, 0, + 0, 1339, 0, + 0, 1480, 0, + 0, 1619, 0, + 0, 1756, 0, + 0, 1892, 0, + 0, 2027, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1736, 0, 1568, + 1729, 0, 1560, + 1720, 0, 1550, + 1707, 0, 1535, + 1690, 0, 1515, + 1665, 174, 1487, + 1630, 448, 1447, + 1578, 663, 1386, + 1497, 849, 1289, + 1361, 1017, 1117, + 1074, 1174, 680, + 0, 1325, 0, + 0, 1470, 0, + 0, 1611, 0, + 0, 1751, 0, + 0, 1888, 0, + 0, 2024, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1872, 0, 1700, + 1867, 0, 1694, + 1860, 0, 1687, + 1851, 0, 1676, + 1838, 0, 1661, + 1820, 0, 1641, + 1795, 287, 1613, + 1760, 570, 1571, + 1707, 789, 1510, + 1627, 977, 1411, + 1489, 1146, 1233, + 1200, 1304, 770, + 0, 1455, 0, + 0, 1601, 0, + 0, 1743, 0, + 0, 1882, 0, + 0, 2020, 0, + 0, 2155, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2007, 0, 1832, + 2003, 0, 1828, + 1998, 0, 1822, + 1991, 0, 1814, + 1982, 0, 1804, + 1969, 0, 1789, + 1951, 0, 1768, + 1926, 405, 1740, + 1890, 694, 1698, + 1838, 916, 1635, + 1757, 1105, 1535, + 1619, 1276, 1354, + 1327, 1435, 868, + 0, 1586, 0, + 0, 1732, 0, + 0, 1874, 0, + 0, 2014, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2141, 0, 1964, + 2137, 0, 1961, + 2135, 0, 1957, + 2129, 0, 1951, + 2123, 0, 1943, + 2113, 0, 1932, + 2099, 0, 1918, + 2083, 6, 1897, + 2057, 526, 1868, + 2021, 821, 1826, + 1969, 1045, 1762, + 1887, 1235, 1661, + 1749, 1407, 1477, + 1455, 1566, 973, + 0, 1718, 0, + 0, 1864, 0, + 0, 2006, 0, + 0, 2145, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2275, 0, 2097, + 2273, 0, 2095, + 2269, 0, 2091, + 2265, 0, 2087, + 2261, 0, 2081, + 2253, 0, 2073, + 2245, 0, 2063, + 2231, 0, 2047, + 2213, 111, 2026, + 2189, 650, 1997, + 2153, 948, 1955, + 2099, 1174, 1891, + 2018, 1366, 1789, + 1879, 1538, 1602, + 1584, 1697, 1083, + 0, 1849, 0, + 0, 1995, 0, + 0, 2137, 0, + 0, 2277, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2407, 0, 2229, + 2405, 0, 2227, + 2403, 0, 2225, + 2401, 0, 2221, + 2397, 0, 2217, + 2393, 0, 2211, + 2385, 0, 2203, + 2375, 0, 2193, + 2363, 0, 2177, + 2345, 221, 2157, + 2319, 775, 2127, + 2285, 1077, 2085, + 2231, 1304, 2020, + 2149, 1496, 1917, + 2010, 1669, 1729, + 1714, 1829, 1199, + 0, 1981, 0, + 0, 2127, 0, + 0, 2269, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2541, 0, 2361, + 2539, 0, 2359, + 2537, 0, 2357, + 2535, 0, 2355, + 2533, 0, 2353, + 2529, 0, 2347, + 2523, 0, 2341, + 2517, 0, 2333, + 2507, 0, 2323, + 2495, 0, 2307, + 2477, 337, 2287, + 2451, 903, 2257, + 2415, 1207, 2215, + 2363, 1435, 2151, + 2281, 1628, 2047, + 2141, 1800, 1857, + 1845, 1961, 1318, + 0, 2113, 0, + 0, 2259, 0, + 0, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2673, 0, 2493, + 2673, 0, 2493, + 2671, 0, 2491, + 2669, 0, 2489, + 2667, 0, 2487, + 2665, 0, 2483, + 2661, 0, 2479, + 2655, 0, 2473, + 2649, 0, 2465, + 2639, 0, 2453, + 2627, 0, 2439, + 2609, 456, 2417, + 2583, 1031, 2389, + 2547, 1337, 2345, + 2495, 1566, 2281, + 2413, 1759, 2177, + 2273, 1932, 1986, + 1976, 2093, 1440, + 0, 2245, 0, + 0, 2391, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2805, 0, 2625, + 2805, 0, 2625, + 2805, 0, 2623, + 2803, 0, 2623, + 2801, 0, 2621, + 2799, 0, 2617, + 2797, 0, 2615, + 2793, 0, 2611, + 2787, 0, 2605, + 2781, 0, 2597, + 2771, 0, 2585, + 2759, 0, 2571, + 2741, 578, 2549, + 2715, 1160, 2519, + 2679, 1468, 2477, + 2627, 1697, 2411, + 2545, 1891, 2307, + 2405, 2063, 2115, + 2107, 2225, 1565, + 0, 2377, 0, + 0, 2523, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2757, + 2937, 0, 2757, + 2937, 0, 2755, + 2937, 0, 2755, + 2935, 0, 2753, + 2933, 0, 2751, + 2931, 0, 2749, + 2929, 0, 2747, + 2925, 0, 2741, + 2919, 0, 2735, + 2913, 0, 2727, + 2903, 0, 2717, + 2891, 0, 2701, + 2873, 703, 2681, + 2847, 1290, 2651, + 2811, 1599, 2607, + 2759, 1829, 2543, + 2677, 2022, 2439, + 2537, 2195, 2247, + 2239, 2357, 1691, + 0, 2509, 0, + 0, 2655, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2889, + 3071, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2887, + 3069, 0, 2887, + 3067, 0, 2885, + 3065, 0, 2883, + 3063, 0, 2881, + 3061, 0, 2877, + 3057, 0, 2873, + 3051, 0, 2867, + 3045, 0, 2859, + 3035, 0, 2849, + 3023, 0, 2833, + 3005, 829, 2813, + 2979, 1421, 2783, + 2943, 1730, 2739, + 2891, 1960, 2675, + 2809, 2155, 2569, + 2669, 2327, 2377, + 2369, 2489, 1819, + 0, 2641, 0, + 0, 2787, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3021, + 3203, 0, 3021, + 3203, 0, 3021, + 3201, 0, 3021, + 3201, 0, 3019, + 3201, 0, 3019, + 3199, 0, 3017, + 3197, 0, 3015, + 3195, 0, 3013, + 3193, 0, 3009, + 3189, 0, 3005, + 3183, 0, 2999, + 3177, 0, 2991, + 3167, 0, 2981, + 3155, 0, 2965, + 3137, 957, 2945, + 3111, 1552, 2915, + 3075, 1862, 2871, + 3023, 2093, 2807, + 2941, 2285, 2701, + 2801, 2459, 2509, + 2501, 2621, 1948, + 0, 2773, 0, + 0, 2919, 0, + 0, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3153, + 3333, 0, 3151, + 3333, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3327, 0, 3145, + 3325, 0, 3141, + 3321, 0, 3137, + 3315, 0, 3131, + 3309, 0, 3123, + 3299, 0, 3113, + 3287, 0, 3097, + 3269, 1085, 3075, + 3243, 1683, 3047, + 3207, 1993, 3003, + 3155, 2223, 2937, + 3073, 2417, 2833, + 2933, 2591, 2639, + 2633, 2753, 2077, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3285, + 3465, 0, 3283, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3273, + 3453, 0, 3269, + 3447, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3245, + 3419, 0, 3229, + 3401, 1215, 3207, + 3375, 1815, 3179, + 3339, 2125, 3135, + 3287, 2355, 3069, + 3205, 2549, 2965, + 3065, 2723, 2771, + 2765, 2885, 2207, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3405, + 3585, 0, 3401, + 3579, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3377, + 3551, 0, 3361, + 3533, 1345, 3339, + 3507, 1946, 3309, + 3471, 2257, 3267, + 3419, 2487, 3201, + 3337, 2681, 3097, + 3197, 2855, 2903, + 2897, 3017, 2339, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3551, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3713, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3509, + 3683, 0, 3493, + 3665, 1476, 3471, + 3639, 2077, 3441, + 3603, 2389, 3399, + 3551, 2619, 3333, + 3469, 2815, 3229, + 3329, 2987, 3035, + 3029, 3149, 2469, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1607, 3603, + 3771, 2209, 3575, + 3735, 2521, 3531, + 3683, 2751, 3465, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2601, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3987, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1739, 3735, + 3903, 2341, 3707, + 3867, 2653, 3663, + 3815, 2883, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2733, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4091, 0, 3905, + 4079, 0, 3889, + 4061, 1870, 3869, + 4035, 2473, 3839, + 3999, 2785, 3795, + 3947, 3017, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2865, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2002, 4001, + 4095, 2605, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3515, 3563, + 3557, 3677, 2997, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2133, 4095, + 4095, 2737, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3127, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2265, 4095, + 4095, 2869, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3259, + 148, 10, 366, + 0, 122, 244, + 0, 237, 2, + 0, 357, 0, + 0, 479, 0, + 0, 604, 0, + 0, 731, 0, + 0, 859, 0, + 0, 988, 0, + 0, 1117, 0, + 0, 1247, 0, + 0, 1378, 0, + 0, 1509, 0, + 0, 1641, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2036, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 369, 0, 471, + 205, 106, 377, + 0, 225, 210, + 0, 348, 0, + 0, 473, 0, + 0, 599, 0, + 0, 727, 0, + 0, 856, 0, + 0, 985, 0, + 0, 1115, 0, + 0, 1246, 0, + 0, 1377, 0, + 0, 1509, 0, + 0, 1640, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2036, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 558, 0, 582, + 456, 85, 510, + 271, 209, 391, + 0, 335, 159, + 0, 463, 0, + 0, 592, 0, + 0, 721, 0, + 0, 852, 0, + 0, 982, 0, + 0, 1113, 0, + 0, 1245, 0, + 0, 1376, 0, + 0, 1508, 0, + 0, 1640, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 728, 0, 697, + 661, 54, 642, + 552, 186, 556, + 347, 318, 409, + 0, 450, 82, + 0, 582, 0, + 0, 714, 0, + 0, 846, 0, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 887, 0, 816, + 840, 10, 775, + 770, 153, 712, + 654, 294, 613, + 432, 432, 432, + 0, 569, 0, + 0, 704, 0, + 0, 839, 0, + 0, 973, 0, + 0, 1106, 0, + 0, 1239, 0, + 0, 1372, 0, + 0, 1505, 0, + 0, 1637, 0, + 0, 1770, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1037, 0, 938, + 1005, 0, 907, + 957, 106, 861, + 884, 259, 792, + 763, 407, 678, + 525, 550, 461, + 0, 690, 0, + 0, 829, 0, + 0, 965, 0, + 0, 1100, 0, + 0, 1235, 0, + 0, 1369, 0, + 0, 1502, 0, + 0, 1636, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1183, 0, 1063, + 1160, 0, 1039, + 1126, 33, 1005, + 1077, 209, 956, + 1002, 371, 880, + 877, 524, 753, + 626, 672, 498, + 0, 815, 0, + 0, 955, 0, + 0, 1093, 0, + 0, 1229, 0, + 0, 1365, 0, + 0, 1499, 0, + 0, 1633, 0, + 0, 1767, 0, + 0, 1900, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1325, 0, 1189, + 1308, 0, 1171, + 1284, 0, 1146, + 1250, 131, 1110, + 1200, 318, 1058, + 1123, 487, 976, + 995, 645, 837, + 734, 795, 542, + 0, 941, 0, + 0, 1082, 0, + 0, 1222, 0, + 0, 1359, 0, + 0, 1495, 0, + 0, 1630, 0, + 0, 1764, 0, + 0, 1898, 0, + 0, 2031, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1465, 0, 1317, + 1452, 0, 1304, + 1435, 0, 1285, + 1411, 0, 1259, + 1376, 236, 1221, + 1325, 432, 1166, + 1247, 607, 1079, + 1116, 768, 930, + 846, 921, 595, + 0, 1068, 0, + 0, 1211, 0, + 0, 1351, 0, + 0, 1489, 0, + 0, 1626, 0, + 0, 1761, 0, + 0, 1896, 0, + 0, 2030, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1602, 0, 1446, + 1593, 0, 1436, + 1580, 0, 1422, + 1563, 0, 1403, + 1538, 95, 1376, + 1504, 346, 1337, + 1452, 550, 1279, + 1373, 729, 1189, + 1240, 894, 1030, + 963, 1048, 658, + 0, 1197, 0, + 0, 1341, 0, + 0, 1482, 0, + 0, 1620, 0, + 0, 1757, 0, + 0, 1893, 0, + 0, 2027, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1738, 0, 1575, + 1732, 0, 1568, + 1722, 0, 1558, + 1710, 0, 1544, + 1692, 0, 1524, + 1667, 198, 1496, + 1632, 461, 1456, + 1580, 671, 1397, + 1501, 854, 1303, + 1366, 1021, 1137, + 1083, 1177, 730, + 0, 1327, 0, + 0, 1471, 0, + 0, 1612, 0, + 0, 1751, 0, + 0, 1888, 0, + 0, 2024, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1873, 0, 1706, + 1868, 0, 1700, + 1862, 0, 1692, + 1852, 0, 1682, + 1839, 0, 1668, + 1822, 0, 1648, + 1797, 306, 1619, + 1762, 580, 1579, + 1710, 795, 1518, + 1629, 981, 1422, + 1493, 1149, 1249, + 1207, 1307, 812, + 0, 1457, 0, + 0, 1602, 0, + 0, 1744, 0, + 0, 1883, 0, + 0, 2020, 0, + 0, 2155, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2008, 0, 1837, + 2004, 0, 1832, + 1999, 0, 1827, + 1992, 0, 1819, + 1983, 0, 1808, + 1970, 0, 1794, + 1952, 0, 1773, + 1927, 419, 1745, + 1892, 702, 1703, + 1840, 921, 1642, + 1759, 1109, 1543, + 1621, 1278, 1366, + 1332, 1437, 902, + 0, 1587, 0, + 0, 1733, 0, + 0, 1875, 0, + 0, 2014, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2141, 0, 1968, + 2139, 0, 1964, + 2135, 0, 1960, + 2129, 0, 1954, + 2123, 0, 1947, + 2113, 0, 1936, + 2101, 0, 1921, + 2083, 39, 1901, + 2059, 537, 1872, + 2022, 826, 1830, + 1970, 1048, 1767, + 1889, 1238, 1667, + 1751, 1408, 1486, + 1459, 1567, 1000, + 0, 1718, 0, + 0, 1864, 0, + 0, 2006, 0, + 0, 2145, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2275, 0, 2099, + 2273, 0, 2097, + 2271, 0, 2093, + 2267, 0, 2089, + 2261, 0, 2083, + 2255, 0, 2075, + 2245, 0, 2065, + 2231, 0, 2049, + 2215, 138, 2029, + 2189, 658, 2000, + 2153, 953, 1958, + 2101, 1177, 1895, + 2019, 1367, 1793, + 1881, 1539, 1609, + 1587, 1698, 1105, + 0, 1850, 0, + 0, 1996, 0, + 0, 2139, 0, + 0, 2277, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2407, 0, 2231, + 2407, 0, 2229, + 2405, 0, 2227, + 2401, 0, 2223, + 2397, 0, 2219, + 2393, 0, 2213, + 2385, 0, 2205, + 2377, 0, 2195, + 2363, 0, 2179, + 2345, 243, 2159, + 2321, 782, 2129, + 2285, 1080, 2087, + 2233, 1306, 2023, + 2151, 1498, 1921, + 2012, 1670, 1734, + 1716, 1830, 1216, + 0, 1981, 0, + 0, 2127, 0, + 0, 2269, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2541, 0, 2363, + 2539, 0, 2361, + 2539, 0, 2359, + 2535, 0, 2357, + 2533, 0, 2353, + 2529, 0, 2349, + 2525, 0, 2343, + 2517, 0, 2335, + 2507, 0, 2325, + 2495, 0, 2309, + 2477, 353, 2289, + 2453, 908, 2259, + 2417, 1209, 2217, + 2363, 1436, 2153, + 2281, 1629, 2049, + 2143, 1801, 1861, + 1846, 1961, 1331, + 0, 2113, 0, + 0, 2259, 0, + 0, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2673, 0, 2493, + 2673, 0, 2493, + 2671, 0, 2491, + 2669, 0, 2489, + 2667, 0, 2487, + 2665, 0, 2485, + 2661, 0, 2479, + 2657, 0, 2475, + 2649, 0, 2465, + 2639, 0, 2455, + 2627, 0, 2441, + 2609, 469, 2419, + 2583, 1035, 2389, + 2547, 1339, 2347, + 2495, 1567, 2283, + 2413, 1760, 2179, + 2273, 1932, 1989, + 1977, 2093, 1450, + 0, 2245, 0, + 0, 2391, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2805, 0, 2625, + 2805, 0, 2625, + 2805, 0, 2625, + 2803, 0, 2623, + 2801, 0, 2621, + 2799, 0, 2619, + 2797, 0, 2615, + 2793, 0, 2611, + 2787, 0, 2605, + 2781, 0, 2597, + 2771, 0, 2587, + 2759, 0, 2571, + 2741, 588, 2551, + 2715, 1163, 2521, + 2679, 1469, 2477, + 2627, 1698, 2413, + 2545, 1891, 2309, + 2405, 2065, 2117, + 2107, 2225, 1572, + 0, 2377, 0, + 0, 2523, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2757, + 2937, 0, 2757, + 2937, 0, 2757, + 2937, 0, 2755, + 2935, 0, 2755, + 2933, 0, 2753, + 2931, 0, 2749, + 2929, 0, 2747, + 2925, 0, 2743, + 2919, 0, 2737, + 2913, 0, 2729, + 2903, 0, 2717, + 2891, 0, 2703, + 2873, 710, 2681, + 2847, 1292, 2651, + 2811, 1600, 2609, + 2759, 1829, 2543, + 2677, 2023, 2439, + 2537, 2195, 2247, + 2239, 2357, 1697, + 0, 2509, 0, + 0, 2655, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2889, + 3071, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2887, + 3067, 0, 2885, + 3065, 0, 2883, + 3063, 0, 2881, + 3061, 0, 2879, + 3057, 0, 2873, + 3051, 0, 2869, + 3045, 0, 2859, + 3035, 0, 2849, + 3023, 0, 2833, + 3005, 835, 2813, + 2979, 1422, 2783, + 2943, 1731, 2739, + 2891, 1961, 2675, + 2809, 2155, 2571, + 2669, 2327, 2379, + 2371, 2489, 1823, + 0, 2641, 0, + 0, 2787, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3021, + 3203, 0, 3021, + 3203, 0, 3021, + 3201, 0, 3021, + 3201, 0, 3019, + 3201, 0, 3019, + 3199, 0, 3017, + 3197, 0, 3015, + 3195, 0, 3013, + 3193, 0, 3011, + 3189, 0, 3005, + 3183, 0, 2999, + 3177, 0, 2991, + 3167, 0, 2981, + 3155, 0, 2965, + 3137, 961, 2945, + 3111, 1553, 2915, + 3075, 1862, 2871, + 3023, 2093, 2807, + 2941, 2287, 2703, + 2801, 2459, 2509, + 2501, 2621, 1951, + 0, 2773, 0, + 0, 2919, 0, + 0, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3153, + 3333, 0, 3151, + 3333, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3327, 0, 3145, + 3325, 0, 3141, + 3321, 0, 3137, + 3315, 0, 3131, + 3309, 0, 3123, + 3299, 0, 3113, + 3287, 0, 3097, + 3269, 1089, 3077, + 3243, 1684, 3047, + 3207, 1994, 3003, + 3155, 2225, 2939, + 3073, 2419, 2833, + 2933, 2591, 2641, + 2633, 2753, 2081, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3285, + 3465, 0, 3283, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3273, + 3453, 0, 3269, + 3447, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3245, + 3419, 0, 3229, + 3401, 1218, 3209, + 3375, 1815, 3179, + 3339, 2125, 3135, + 3287, 2357, 3069, + 3205, 2551, 2965, + 3065, 2723, 2771, + 2765, 2885, 2209, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3599, 0, 3419, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3405, + 3585, 0, 3401, + 3579, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3377, + 3551, 0, 3361, + 3533, 1347, 3339, + 3507, 1947, 3311, + 3471, 2257, 3267, + 3419, 2487, 3201, + 3337, 2683, 3097, + 3197, 2855, 2903, + 2897, 3017, 2339, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3713, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3509, + 3683, 0, 3493, + 3665, 1478, 3471, + 3639, 2079, 3443, + 3603, 2389, 3399, + 3551, 2619, 3333, + 3469, 2815, 3229, + 3329, 2987, 3035, + 3029, 3149, 2471, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1608, 3603, + 3771, 2211, 3575, + 3735, 2521, 3531, + 3683, 2751, 3465, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2601, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3987, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1739, 3737, + 3903, 2341, 3707, + 3867, 2653, 3663, + 3815, 2885, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2733, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4091, 0, 3905, + 4079, 0, 3889, + 4061, 1871, 3869, + 4035, 2473, 3839, + 3999, 2785, 3795, + 3947, 3017, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2865, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2002, 4001, + 4095, 2605, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3515, 3563, + 3557, 3677, 2997, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2133, 4095, + 4095, 2737, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3129, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2265, 4095, + 4095, 2869, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3261, + 232, 55, 490, + 0, 157, 400, + 0, 265, 243, + 0, 378, 0, + 0, 496, 0, + 0, 617, 0, + 0, 740, 0, + 0, 866, 0, + 0, 993, 0, + 0, 1121, 0, + 0, 1251, 0, + 0, 1381, 0, + 0, 1511, 0, + 0, 1642, 0, + 0, 1773, 0, + 0, 1905, 0, + 0, 2036, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 422, 37, 572, + 280, 142, 498, + 0, 254, 376, + 0, 369, 134, + 0, 489, 0, + 0, 611, 0, + 0, 736, 0, + 0, 863, 0, + 0, 991, 0, + 0, 1120, 0, + 0, 1249, 0, + 0, 1380, 0, + 0, 1510, 0, + 0, 1642, 0, + 0, 1773, 0, + 0, 1904, 0, + 0, 2036, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 594, 12, 663, + 501, 123, 603, + 337, 238, 509, + 0, 358, 342, + 0, 480, 0, + 0, 605, 0, + 0, 731, 0, + 0, 859, 0, + 0, 988, 0, + 0, 1117, 0, + 0, 1248, 0, + 0, 1378, 0, + 0, 1509, 0, + 0, 1641, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2036, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 753, 0, 761, + 690, 95, 714, + 588, 217, 642, + 403, 341, 523, + 0, 467, 291, + 0, 595, 0, + 0, 724, 0, + 0, 853, 0, + 0, 984, 0, + 0, 1114, 0, + 0, 1245, 0, + 0, 1377, 0, + 0, 1508, 0, + 0, 1640, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 905, 0, 866, + 860, 54, 829, + 793, 186, 774, + 684, 318, 689, + 479, 450, 541, + 0, 582, 214, + 0, 714, 0, + 0, 846, 0, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1050, 0, 977, + 1019, 0, 948, + 972, 142, 907, + 902, 286, 844, + 786, 426, 745, + 564, 564, 564, + 0, 701, 84, + 0, 836, 0, + 0, 971, 0, + 0, 1105, 0, + 0, 1238, 0, + 0, 1371, 0, + 0, 1504, 0, + 0, 1637, 0, + 0, 1769, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1193, 0, 1093, + 1170, 0, 1070, + 1137, 76, 1039, + 1089, 238, 993, + 1016, 392, 924, + 895, 539, 810, + 658, 682, 593, + 0, 823, 0, + 0, 961, 0, + 0, 1097, 0, + 0, 1232, 0, + 0, 1367, 0, + 0, 1501, 0, + 0, 1635, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1332, 0, 1212, + 1315, 0, 1195, + 1292, 0, 1171, + 1258, 165, 1137, + 1209, 341, 1088, + 1134, 503, 1012, + 1009, 656, 885, + 758, 804, 630, + 0, 947, 0, + 0, 1087, 0, + 0, 1225, 0, + 0, 1361, 0, + 0, 1497, 0, + 0, 1631, 0, + 0, 1765, 0, + 0, 1899, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1470, 0, 1334, + 1457, 0, 1321, + 1440, 0, 1303, + 1416, 46, 1278, + 1382, 263, 1243, + 1332, 450, 1190, + 1255, 619, 1108, + 1127, 777, 970, + 866, 928, 674, + 0, 1073, 0, + 0, 1215, 0, + 0, 1354, 0, + 0, 1491, 0, + 0, 1627, 0, + 0, 1762, 0, + 0, 1896, 0, + 0, 2030, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1606, 0, 1459, + 1597, 0, 1449, + 1584, 0, 1436, + 1567, 0, 1417, + 1543, 132, 1391, + 1508, 368, 1354, + 1458, 564, 1298, + 1379, 739, 1212, + 1248, 900, 1062, + 978, 1053, 727, + 0, 1200, 0, + 0, 1343, 0, + 0, 1484, 0, + 0, 1622, 0, + 0, 1758, 0, + 0, 1893, 0, + 0, 2028, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1741, 0, 1585, + 1734, 0, 1578, + 1725, 0, 1568, + 1713, 0, 1554, + 1695, 0, 1535, + 1671, 227, 1508, + 1636, 478, 1469, + 1584, 682, 1412, + 1505, 861, 1321, + 1372, 1026, 1162, + 1095, 1181, 790, + 0, 1329, 0, + 0, 1473, 0, + 0, 1614, 0, + 0, 1752, 0, + 0, 1889, 0, + 0, 2025, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1876, 0, 1713, + 1871, 0, 1708, + 1864, 0, 1700, + 1854, 0, 1690, + 1842, 0, 1676, + 1824, 0, 1656, + 1799, 330, 1628, + 1764, 593, 1589, + 1713, 803, 1529, + 1633, 986, 1435, + 1498, 1153, 1269, + 1216, 1309, 862, + 0, 1459, 0, + 0, 1603, 0, + 0, 1745, 0, + 0, 1883, 0, + 0, 2021, 0, + 0, 2157, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2009, 0, 1842, + 2006, 0, 1838, + 2001, 0, 1832, + 1994, 0, 1825, + 1984, 0, 1814, + 1972, 0, 1800, + 1954, 0, 1780, + 1929, 438, 1752, + 1894, 712, 1711, + 1842, 927, 1650, + 1761, 1113, 1554, + 1625, 1281, 1381, + 1339, 1439, 944, + 0, 1589, 0, + 0, 1734, 0, + 0, 1876, 0, + 0, 2015, 0, + 0, 2153, 0, + 0, 2289, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2143, 0, 1972, + 2139, 0, 1969, + 2137, 0, 1964, + 2131, 0, 1959, + 2125, 0, 1951, + 2115, 0, 1940, + 2103, 0, 1926, + 2085, 81, 1905, + 2059, 551, 1877, + 2024, 834, 1836, + 1972, 1053, 1774, + 1891, 1241, 1675, + 1754, 1410, 1498, + 1464, 1569, 1034, + 0, 1720, 0, + 0, 1865, 0, + 0, 2007, 0, + 0, 2147, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2275, 0, 2103, + 2273, 0, 2099, + 2271, 0, 2097, + 2267, 0, 2093, + 2263, 0, 2087, + 2255, 0, 2079, + 2245, 0, 2067, + 2233, 0, 2053, + 2215, 172, 2033, + 2191, 669, 2004, + 2155, 959, 1962, + 2103, 1180, 1899, + 2021, 1370, 1799, + 1883, 1540, 1618, + 1591, 1699, 1132, + 0, 1851, 0, + 0, 1996, 0, + 0, 2139, 0, + 0, 2279, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2409, 0, 2233, + 2407, 0, 2231, + 2405, 0, 2229, + 2403, 0, 2225, + 2399, 0, 2221, + 2393, 0, 2215, + 2387, 0, 2207, + 2377, 0, 2197, + 2365, 0, 2181, + 2347, 270, 2161, + 2321, 790, 2133, + 2285, 1085, 2089, + 2233, 1309, 2027, + 2151, 1500, 1925, + 2013, 1671, 1741, + 1719, 1830, 1237, + 0, 1982, 0, + 0, 2127, 0, + 0, 2271, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2541, 0, 2363, + 2541, 0, 2363, + 2539, 0, 2361, + 2537, 0, 2359, + 2533, 0, 2355, + 2529, 0, 2351, + 2525, 0, 2345, + 2517, 0, 2337, + 2509, 0, 2327, + 2495, 0, 2311, + 2477, 375, 2291, + 2453, 914, 2261, + 2417, 1212, 2219, + 2365, 1438, 2155, + 2283, 1630, 2053, + 2143, 1802, 1866, + 1849, 1962, 1348, + 0, 2113, 0, + 0, 2259, 0, + 0, 2403, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2673, 0, 2495, + 2673, 0, 2495, + 2671, 0, 2493, + 2671, 0, 2491, + 2669, 0, 2489, + 2665, 0, 2485, + 2661, 0, 2481, + 2657, 0, 2475, + 2649, 0, 2467, + 2641, 0, 2457, + 2627, 0, 2441, + 2609, 485, 2421, + 2585, 1039, 2391, + 2549, 1341, 2349, + 2495, 1569, 2285, + 2413, 1761, 2181, + 2275, 1933, 1993, + 1978, 2093, 1463, + 0, 2245, 0, + 0, 2391, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2807, 0, 2627, + 2805, 0, 2627, + 2805, 0, 2625, + 2803, 0, 2623, + 2801, 0, 2623, + 2799, 0, 2619, + 2797, 0, 2617, + 2793, 0, 2613, + 2789, 0, 2607, + 2781, 0, 2599, + 2771, 0, 2587, + 2759, 0, 2573, + 2741, 601, 2551, + 2715, 1167, 2521, + 2681, 1471, 2479, + 2627, 1699, 2415, + 2545, 1892, 2311, + 2405, 2065, 2121, + 2109, 2225, 1582, + 0, 2377, 0, + 0, 2523, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2759, + 2939, 0, 2759, + 2937, 0, 2757, + 2937, 0, 2757, + 2935, 0, 2755, + 2933, 0, 2753, + 2931, 0, 2751, + 2929, 0, 2747, + 2925, 0, 2743, + 2919, 0, 2737, + 2913, 0, 2729, + 2903, 0, 2719, + 2891, 0, 2703, + 2873, 720, 2683, + 2847, 1295, 2653, + 2811, 1601, 2609, + 2759, 1830, 2545, + 2677, 2023, 2441, + 2537, 2197, 2251, + 2239, 2357, 1705, + 0, 2509, 0, + 0, 2655, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2891, + 3071, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2887, + 3067, 0, 2887, + 3065, 0, 2885, + 3063, 0, 2883, + 3061, 0, 2879, + 3057, 0, 2875, + 3051, 0, 2869, + 3045, 0, 2861, + 3035, 0, 2849, + 3023, 0, 2835, + 3005, 842, 2813, + 2979, 1425, 2783, + 2943, 1732, 2741, + 2891, 1961, 2675, + 2809, 2155, 2571, + 2669, 2327, 2379, + 2371, 2489, 1829, + 0, 2641, 0, + 0, 2787, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3023, + 3203, 0, 3021, + 3203, 0, 3021, + 3201, 0, 3021, + 3201, 0, 3021, + 3201, 0, 3019, + 3199, 0, 3017, + 3197, 0, 3017, + 3195, 0, 3013, + 3193, 0, 3011, + 3189, 0, 3007, + 3183, 0, 3001, + 3177, 0, 2993, + 3167, 0, 2981, + 3155, 0, 2965, + 3137, 967, 2945, + 3111, 1555, 2915, + 3075, 1863, 2873, + 3023, 2093, 2807, + 2941, 2287, 2703, + 2801, 2459, 2511, + 2503, 2621, 1956, + 0, 2773, 0, + 0, 2919, 0, + 0, 3063, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3155, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3153, + 3333, 0, 3151, + 3333, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3327, 0, 3145, + 3325, 0, 3143, + 3321, 0, 3137, + 3315, 0, 3131, + 3309, 0, 3123, + 3299, 0, 3113, + 3287, 0, 3097, + 3269, 1093, 3077, + 3243, 1685, 3047, + 3207, 1994, 3003, + 3155, 2225, 2939, + 3073, 2419, 2835, + 2933, 2591, 2641, + 2635, 2753, 2083, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3285, + 3465, 0, 3283, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3273, + 3453, 0, 3269, + 3447, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3245, + 3419, 0, 3229, + 3401, 1221, 3209, + 3375, 1816, 3179, + 3339, 2125, 3135, + 3287, 2357, 3071, + 3205, 2551, 2965, + 3065, 2723, 2773, + 2765, 2885, 2213, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3405, + 3585, 0, 3401, + 3581, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3377, + 3551, 0, 3361, + 3533, 1350, 3341, + 3507, 1947, 3311, + 3471, 2257, 3267, + 3419, 2489, 3203, + 3337, 2683, 3097, + 3197, 2855, 2903, + 2897, 3017, 2341, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3713, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3509, + 3683, 0, 3493, + 3665, 1479, 3473, + 3639, 2079, 3443, + 3603, 2389, 3399, + 3551, 2621, 3333, + 3469, 2815, 3229, + 3329, 2987, 3035, + 3029, 3149, 2473, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3859, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1610, 3605, + 3771, 2211, 3575, + 3735, 2521, 3531, + 3683, 2753, 3465, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2603, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3989, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1740, 3737, + 3903, 2343, 3707, + 3867, 2653, 3663, + 3815, 2885, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2733, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4091, 0, 3905, + 4079, 0, 3889, + 4061, 1872, 3869, + 4035, 2475, 3839, + 3999, 2785, 3795, + 3947, 3017, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2865, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2003, 4001, + 4095, 2607, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3517, 3563, + 3557, 3677, 2997, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2135, 4095, + 4095, 2737, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3129, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2267, 4095, + 4095, 2869, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3261, + 325, 108, 616, + 140, 200, 549, + 0, 299, 442, + 0, 405, 242, + 0, 517, 0, + 0, 633, 0, + 0, 753, 0, + 0, 875, 0, + 0, 1000, 0, + 0, 1127, 0, + 0, 1255, 0, + 0, 1384, 0, + 0, 1513, 0, + 0, 1644, 0, + 0, 1775, 0, + 0, 1906, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 486, 92, 679, + 364, 187, 622, + 125, 289, 532, + 0, 397, 375, + 0, 510, 9, + 0, 628, 0, + 0, 749, 0, + 0, 872, 0, + 0, 998, 0, + 0, 1125, 0, + 0, 1253, 0, + 0, 1383, 0, + 0, 1513, 0, + 0, 1643, 0, + 0, 1774, 0, + 0, 1905, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 638, 70, 752, + 554, 169, 704, + 412, 274, 630, + 103, 386, 508, + 0, 502, 267, + 0, 621, 0, + 0, 744, 0, + 0, 868, 0, + 0, 995, 0, + 0, 1123, 0, + 0, 1252, 0, + 0, 1381, 0, + 0, 1512, 0, + 0, 1643, 0, + 0, 1774, 0, + 0, 1905, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 785, 38, 835, + 726, 144, 795, + 633, 255, 735, + 469, 370, 641, + 73, 490, 474, + 0, 612, 63, + 0, 737, 0, + 0, 863, 0, + 0, 991, 0, + 0, 1120, 0, + 0, 1249, 0, + 0, 1380, 0, + 0, 1510, 0, + 0, 1642, 0, + 0, 1773, 0, + 0, 1905, 0, + 0, 2036, 0, + 0, 2169, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 927, 0, 926, + 885, 108, 893, + 822, 227, 846, + 720, 349, 774, + 535, 473, 655, + 29, 599, 424, + 0, 727, 0, + 0, 856, 0, + 0, 986, 0, + 0, 1116, 0, + 0, 1246, 0, + 0, 1377, 0, + 0, 1509, 0, + 0, 1640, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2036, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1067, 0, 1024, + 1036, 55, 998, + 992, 187, 961, + 925, 318, 906, + 816, 450, 821, + 611, 582, 673, + 0, 714, 346, + 0, 846, 0, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1205, 0, 1129, + 1182, 0, 1109, + 1151, 127, 1080, + 1104, 274, 1039, + 1034, 418, 976, + 919, 558, 877, + 696, 696, 696, + 0, 833, 216, + 0, 968, 0, + 0, 1103, 0, + 0, 1237, 0, + 0, 1370, 0, + 0, 1503, 0, + 0, 1636, 0, + 0, 1769, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1341, 0, 1241, + 1325, 0, 1225, + 1302, 31, 1202, + 1269, 208, 1171, + 1221, 370, 1125, + 1148, 524, 1056, + 1027, 671, 942, + 790, 814, 725, + 0, 955, 0, + 0, 1093, 0, + 0, 1229, 0, + 0, 1365, 0, + 0, 1499, 0, + 0, 1633, 0, + 0, 1767, 0, + 0, 1900, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1477, 0, 1356, + 1464, 0, 1344, + 1447, 0, 1327, + 1424, 100, 1303, + 1390, 297, 1269, + 1341, 473, 1220, + 1266, 635, 1144, + 1141, 788, 1017, + 891, 936, 762, + 0, 1079, 0, + 0, 1219, 0, + 0, 1357, 0, + 0, 1494, 0, + 0, 1629, 0, + 0, 1764, 0, + 0, 1897, 0, + 0, 2031, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1611, 0, 1476, + 1602, 0, 1466, + 1590, 0, 1453, + 1572, 0, 1436, + 1549, 178, 1411, + 1514, 395, 1375, + 1464, 582, 1322, + 1388, 751, 1240, + 1259, 909, 1101, + 998, 1059, 806, + 0, 1205, 0, + 0, 1347, 0, + 0, 1486, 0, + 0, 1623, 0, + 0, 1759, 0, + 0, 1894, 0, + 0, 2029, 0, + 0, 2163, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1745, 0, 1598, + 1738, 0, 1591, + 1729, 0, 1581, + 1716, 0, 1568, + 1699, 0, 1549, + 1675, 264, 1523, + 1640, 500, 1486, + 1590, 696, 1430, + 1511, 871, 1344, + 1380, 1032, 1194, + 1110, 1185, 859, + 0, 1332, 0, + 0, 1476, 0, + 0, 1616, 0, + 0, 1754, 0, + 0, 1890, 0, + 0, 2025, 0, + 0, 2161, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1878, 0, 1723, + 1873, 0, 1717, + 1867, 0, 1710, + 1857, 0, 1700, + 1845, 0, 1686, + 1827, 0, 1667, + 1803, 359, 1640, + 1768, 610, 1601, + 1717, 814, 1544, + 1637, 994, 1453, + 1504, 1158, 1294, + 1227, 1313, 922, + 0, 1461, 0, + 0, 1605, 0, + 0, 1746, 0, + 0, 1884, 0, + 0, 2021, 0, + 0, 2157, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2011, 0, 1849, + 2008, 0, 1845, + 2003, 0, 1840, + 1996, 0, 1832, + 1987, 0, 1822, + 1974, 0, 1808, + 1956, 59, 1788, + 1932, 462, 1761, + 1896, 725, 1721, + 1845, 936, 1661, + 1765, 1118, 1568, + 1630, 1285, 1401, + 1348, 1441, 994, + 0, 1591, 0, + 0, 1735, 0, + 0, 1877, 0, + 0, 2016, 0, + 0, 2153, 0, + 0, 2289, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2145, 0, 1977, + 2141, 0, 1974, + 2137, 0, 1970, + 2133, 0, 1964, + 2125, 0, 1957, + 2117, 0, 1946, + 2103, 0, 1932, + 2087, 132, 1912, + 2061, 570, 1884, + 2026, 844, 1843, + 1974, 1059, 1782, + 1893, 1245, 1686, + 1757, 1413, 1513, + 1471, 1571, 1076, + 0, 1721, 0, + 0, 1866, 0, + 0, 2008, 0, + 0, 2147, 0, + 0, 2285, 0, + 0, 2421, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2277, 0, 2107, + 2275, 0, 2103, + 2273, 0, 2101, + 2269, 0, 2097, + 2263, 0, 2091, + 2257, 0, 2083, + 2247, 0, 2073, + 2235, 0, 2057, + 2217, 213, 2038, + 2191, 684, 2009, + 2157, 966, 1968, + 2103, 1185, 1906, + 2023, 1373, 1807, + 1886, 1543, 1630, + 1596, 1701, 1166, + 0, 1852, 0, + 0, 1997, 0, + 0, 2139, 0, + 0, 2279, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2409, 0, 2235, + 2407, 0, 2235, + 2405, 0, 2231, + 2403, 0, 2229, + 2399, 0, 2225, + 2395, 0, 2219, + 2387, 0, 2211, + 2377, 0, 2201, + 2365, 0, 2185, + 2347, 304, 2165, + 2323, 801, 2135, + 2287, 1090, 2095, + 2235, 1313, 2032, + 2153, 1502, 1932, + 2015, 1673, 1750, + 1723, 1831, 1264, + 0, 1983, 0, + 0, 2129, 0, + 0, 2271, 0, + 0, 2411, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2541, 0, 2367, + 2541, 0, 2365, + 2539, 0, 2363, + 2537, 0, 2361, + 2535, 0, 2357, + 2531, 0, 2353, + 2525, 0, 2347, + 2519, 0, 2339, + 2509, 0, 2329, + 2497, 0, 2313, + 2479, 402, 2293, + 2453, 922, 2265, + 2417, 1217, 2223, + 2365, 1441, 2159, + 2283, 1632, 2057, + 2145, 1803, 1873, + 1851, 1962, 1369, + 0, 2115, 0, + 0, 2261, 0, + 0, 2403, 0, + 0, 2543, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2675, 0, 2497, + 2673, 0, 2497, + 2673, 0, 2495, + 2671, 0, 2493, + 2669, 0, 2491, + 2665, 0, 2487, + 2661, 0, 2483, + 2657, 0, 2477, + 2649, 0, 2469, + 2641, 0, 2459, + 2627, 0, 2443, + 2609, 507, 2423, + 2585, 1046, 2393, + 2549, 1345, 2351, + 2497, 1571, 2287, + 2415, 1762, 2185, + 2275, 1934, 1998, + 1981, 2093, 1480, + 0, 2245, 0, + 0, 2391, 0, + 0, 2535, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2807, 0, 2629, + 2805, 0, 2627, + 2805, 0, 2627, + 2803, 0, 2625, + 2803, 0, 2623, + 2801, 0, 2621, + 2797, 0, 2617, + 2793, 0, 2613, + 2789, 0, 2607, + 2781, 0, 2599, + 2773, 0, 2589, + 2759, 0, 2573, + 2741, 617, 2553, + 2717, 1172, 2523, + 2681, 1473, 2481, + 2627, 1701, 2417, + 2545, 1893, 2313, + 2407, 2065, 2125, + 2111, 2225, 1595, + 0, 2377, 0, + 0, 2523, 0, + 0, 2667, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2759, + 2939, 0, 2759, + 2937, 0, 2759, + 2937, 0, 2757, + 2935, 0, 2755, + 2935, 0, 2755, + 2931, 0, 2751, + 2929, 0, 2749, + 2925, 0, 2745, + 2921, 0, 2739, + 2913, 0, 2731, + 2903, 0, 2719, + 2891, 0, 2705, + 2873, 733, 2683, + 2849, 1299, 2653, + 2813, 1603, 2611, + 2759, 1831, 2547, + 2677, 2024, 2443, + 2539, 2197, 2253, + 2241, 2357, 1714, + 0, 2509, 0, + 0, 2655, 0, + 0, 2799, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2891, + 3071, 0, 2891, + 3071, 0, 2891, + 3069, 0, 2889, + 3069, 0, 2889, + 3067, 0, 2887, + 3065, 0, 2885, + 3063, 0, 2883, + 3061, 0, 2879, + 3057, 0, 2875, + 3053, 0, 2869, + 3045, 0, 2861, + 3035, 0, 2851, + 3023, 0, 2835, + 3005, 852, 2815, + 2979, 1427, 2785, + 2943, 1733, 2741, + 2891, 1962, 2677, + 2809, 2155, 2573, + 2669, 2329, 2383, + 2371, 2489, 1837, + 0, 2641, 0, + 0, 2787, 0, + 0, 2931, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3023, + 3203, 0, 3023, + 3203, 0, 3023, + 3203, 0, 3021, + 3201, 0, 3021, + 3201, 0, 3019, + 3199, 0, 3019, + 3197, 0, 3017, + 3195, 0, 3015, + 3193, 0, 3011, + 3189, 0, 3007, + 3185, 0, 3001, + 3177, 0, 2993, + 3167, 0, 2981, + 3155, 0, 2967, + 3137, 974, 2945, + 3111, 1557, 2915, + 3075, 1864, 2873, + 3023, 2093, 2809, + 2941, 2287, 2703, + 2801, 2461, 2513, + 2503, 2621, 1961, + 0, 2773, 0, + 0, 2919, 0, + 0, 3063, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3153, + 3333, 0, 3151, + 3331, 0, 3151, + 3329, 0, 3149, + 3327, 0, 3145, + 3325, 0, 3143, + 3321, 0, 3139, + 3317, 0, 3133, + 3309, 0, 3125, + 3299, 0, 3113, + 3287, 0, 3099, + 3269, 1099, 3077, + 3243, 1687, 3047, + 3207, 1995, 3005, + 3155, 2225, 2939, + 3073, 2419, 2835, + 2933, 2591, 2643, + 2635, 2753, 2087, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3285, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3275, + 3453, 0, 3269, + 3449, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3245, + 3419, 0, 3229, + 3401, 1225, 3209, + 3375, 1817, 3179, + 3339, 2127, 3135, + 3287, 2357, 3071, + 3205, 2551, 2967, + 3065, 2723, 2773, + 2767, 2885, 2215, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3407, + 3585, 0, 3401, + 3581, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3377, + 3551, 0, 3361, + 3533, 1353, 3341, + 3507, 1948, 3311, + 3471, 2257, 3267, + 3419, 2489, 3203, + 3337, 2683, 3097, + 3197, 2855, 2905, + 2897, 3017, 2345, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3713, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3509, + 3683, 0, 3493, + 3665, 1482, 3473, + 3639, 2079, 3443, + 3603, 2389, 3399, + 3551, 2621, 3335, + 3469, 2815, 3229, + 3329, 2987, 3035, + 3029, 3149, 2473, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3859, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1612, 3605, + 3771, 2211, 3575, + 3735, 2521, 3531, + 3683, 2753, 3467, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2605, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3989, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1742, 3737, + 3903, 2343, 3707, + 3867, 2653, 3663, + 3815, 2885, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2735, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4093, 0, 3905, + 4079, 0, 3889, + 4061, 1873, 3869, + 4035, 2475, 3839, + 4001, 2785, 3795, + 3947, 3017, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2867, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4067, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2004, 4001, + 4095, 2607, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3517, 3563, + 3557, 3677, 2997, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2135, 4095, + 4095, 2739, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3129, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2267, 4095, + 4095, 2871, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3261, + 425, 171, 743, + 284, 251, 694, + 0, 341, 618, + 0, 439, 493, + 0, 543, 240, + 0, 653, 0, + 0, 769, 0, + 0, 887, 0, + 0, 1009, 0, + 0, 1134, 0, + 0, 1260, 0, + 0, 1388, 0, + 0, 1516, 0, + 0, 1646, 0, + 0, 1776, 0, + 0, 1907, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 558, 157, 792, + 457, 240, 748, + 272, 332, 682, + 0, 431, 574, + 0, 537, 374, + 0, 649, 0, + 0, 765, 0, + 0, 885, 0, + 0, 1007, 0, + 0, 1132, 0, + 0, 1259, 0, + 0, 1387, 0, + 0, 1516, 0, + 0, 1646, 0, + 0, 1776, 0, + 0, 1907, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 691, 138, 850, + 618, 224, 811, + 496, 319, 754, + 257, 421, 664, + 0, 529, 507, + 0, 642, 141, + 0, 760, 0, + 0, 881, 0, + 0, 1004, 0, + 0, 1130, 0, + 0, 1257, 0, + 0, 1385, 0, + 0, 1515, 0, + 0, 1645, 0, + 0, 1775, 0, + 0, 1906, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 824, 111, 918, + 770, 202, 885, + 687, 301, 836, + 544, 407, 762, + 235, 518, 640, + 0, 634, 399, + 0, 753, 0, + 0, 876, 0, + 0, 1001, 0, + 0, 1127, 0, + 0, 1255, 0, + 0, 1384, 0, + 0, 1514, 0, + 0, 1644, 0, + 0, 1775, 0, + 0, 1906, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 956, 72, 995, + 917, 170, 967, + 858, 276, 927, + 765, 387, 867, + 601, 502, 773, + 205, 622, 606, + 0, 744, 196, + 0, 869, 0, + 0, 995, 0, + 0, 1123, 0, + 0, 1252, 0, + 0, 1382, 0, + 0, 1512, 0, + 0, 1643, 0, + 0, 1774, 0, + 0, 1905, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1088, 14, 1080, + 1059, 125, 1058, + 1017, 240, 1025, + 954, 359, 978, + 852, 481, 906, + 667, 605, 787, + 161, 732, 556, + 0, 859, 0, + 0, 988, 0, + 0, 1117, 0, + 0, 1248, 0, + 0, 1378, 0, + 0, 1510, 0, + 0, 1641, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2036, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1221, 0, 1175, + 1199, 55, 1156, + 1169, 187, 1130, + 1124, 319, 1093, + 1057, 450, 1038, + 948, 582, 953, + 743, 714, 805, + 94, 846, 478, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1353, 0, 1276, + 1337, 0, 1262, + 1315, 105, 1241, + 1283, 259, 1212, + 1236, 406, 1171, + 1166, 550, 1108, + 1050, 690, 1009, + 828, 828, 828, + 0, 965, 349, + 0, 1100, 0, + 0, 1235, 0, + 0, 1369, 0, + 0, 1502, 0, + 0, 1636, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1485, 0, 1384, + 1473, 0, 1373, + 1457, 0, 1357, + 1434, 164, 1335, + 1401, 340, 1303, + 1353, 502, 1257, + 1280, 656, 1188, + 1159, 803, 1074, + 922, 947, 858, + 0, 1087, 83, + 0, 1225, 0, + 0, 1361, 0, + 0, 1497, 0, + 0, 1631, 0, + 0, 1765, 0, + 0, 1899, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1618, 0, 1497, + 1609, 0, 1488, + 1596, 0, 1476, + 1580, 0, 1459, + 1556, 232, 1435, + 1523, 430, 1402, + 1473, 605, 1352, + 1398, 767, 1276, + 1273, 921, 1149, + 1023, 1068, 894, + 0, 1211, 0, + 0, 1351, 0, + 0, 1489, 0, + 0, 1626, 0, + 0, 1761, 0, + 0, 1896, 0, + 0, 2030, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1750, 0, 1615, + 1743, 0, 1608, + 1734, 0, 1598, + 1722, 0, 1586, + 1705, 31, 1568, + 1681, 310, 1543, + 1647, 527, 1507, + 1597, 714, 1454, + 1520, 883, 1372, + 1391, 1041, 1234, + 1130, 1192, 938, + 0, 1337, 0, + 0, 1479, 0, + 0, 1618, 0, + 0, 1755, 0, + 0, 1891, 0, + 0, 2026, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1882, 0, 1736, + 1877, 0, 1730, + 1870, 0, 1723, + 1861, 0, 1713, + 1849, 0, 1700, + 1831, 75, 1681, + 1807, 397, 1655, + 1773, 632, 1618, + 1722, 828, 1562, + 1644, 1003, 1476, + 1512, 1164, 1326, + 1242, 1317, 992, + 0, 1465, 0, + 0, 1608, 0, + 0, 1748, 0, + 0, 1886, 0, + 0, 2022, 0, + 0, 2157, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2014, 0, 1859, + 2010, 0, 1855, + 2005, 0, 1850, + 1999, 0, 1842, + 1989, 0, 1832, + 1977, 0, 1818, + 1959, 128, 1799, + 1935, 492, 1772, + 1900, 742, 1733, + 1849, 946, 1676, + 1770, 1125, 1585, + 1636, 1290, 1426, + 1359, 1445, 1054, + 0, 1593, 0, + 0, 1737, 0, + 0, 1878, 0, + 0, 2017, 0, + 0, 2153, 0, + 0, 2289, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2147, 0, 1985, + 2143, 0, 1982, + 2139, 0, 1977, + 2135, 0, 1972, + 2127, 0, 1964, + 2119, 0, 1954, + 2105, 0, 1940, + 2089, 191, 1920, + 2063, 594, 1893, + 2029, 857, 1853, + 1977, 1067, 1793, + 1897, 1250, 1700, + 1762, 1417, 1533, + 1480, 1573, 1126, + 0, 1723, 0, + 0, 1868, 0, + 0, 2009, 0, + 0, 2147, 0, + 0, 2285, 0, + 0, 2421, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2279, 0, 2111, + 2277, 0, 2109, + 2273, 0, 2107, + 2269, 0, 2103, + 2265, 0, 2097, + 2257, 0, 2089, + 2249, 0, 2079, + 2235, 0, 2063, + 2219, 264, 2044, + 2193, 702, 2016, + 2159, 976, 1975, + 2107, 1191, 1914, + 2026, 1377, 1818, + 1889, 1545, 1645, + 1603, 1703, 1208, + 0, 1853, 0, + 0, 1998, 0, + 0, 2139, 0, + 0, 2279, 0, + 0, 2417, 0, + 0, 2553, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2411, 0, 2241, + 2409, 0, 2239, + 2407, 0, 2237, + 2405, 0, 2233, + 2401, 0, 2229, + 2395, 0, 2223, + 2389, 0, 2215, + 2379, 0, 2205, + 2367, 0, 2189, + 2349, 345, 2169, + 2323, 816, 2141, + 2289, 1098, 2099, + 2235, 1317, 2038, + 2155, 1505, 1940, + 2018, 1675, 1762, + 1728, 1833, 1298, + 0, 1984, 0, + 0, 2129, 0, + 0, 2271, 0, + 0, 2411, 0, + 0, 2549, 0, + 0, 2685, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2543, 0, 2369, + 2541, 0, 2369, + 2541, 0, 2367, + 2537, 0, 2363, + 2535, 0, 2361, + 2531, 0, 2357, + 2527, 0, 2351, + 2519, 0, 2343, + 2511, 0, 2333, + 2497, 0, 2317, + 2479, 436, 2297, + 2455, 933, 2269, + 2419, 1223, 2227, + 2367, 1445, 2163, + 2285, 1634, 2063, + 2147, 1805, 1882, + 1855, 1964, 1396, + 0, 2115, 0, + 0, 2261, 0, + 0, 2403, 0, + 0, 2543, 0, + 0, 2679, 0, + 0, 2817, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2675, 0, 2499, + 2675, 0, 2499, + 2673, 0, 2497, + 2671, 0, 2495, + 2669, 0, 2493, + 2667, 0, 2489, + 2663, 0, 2485, + 2657, 0, 2479, + 2651, 0, 2471, + 2641, 0, 2461, + 2629, 0, 2447, + 2611, 534, 2425, + 2585, 1054, 2397, + 2549, 1349, 2355, + 2497, 1573, 2291, + 2415, 1764, 2189, + 2277, 1935, 2005, + 1984, 2095, 1501, + 0, 2247, 0, + 0, 2393, 0, + 0, 2535, 0, + 0, 2675, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2807, 0, 2629, + 2807, 0, 2629, + 2805, 0, 2629, + 2805, 0, 2627, + 2803, 0, 2625, + 2801, 0, 2623, + 2797, 0, 2619, + 2795, 0, 2615, + 2789, 0, 2609, + 2783, 0, 2601, + 2773, 0, 2591, + 2759, 0, 2575, + 2741, 639, 2555, + 2717, 1178, 2525, + 2681, 1477, 2483, + 2629, 1703, 2419, + 2547, 1894, 2317, + 2407, 2067, 2131, + 2113, 2225, 1612, + 0, 2377, 0, + 0, 2523, 0, + 0, 2667, 0, + 0, 2807, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2761, + 2939, 0, 2761, + 2939, 0, 2759, + 2937, 0, 2759, + 2935, 0, 2757, + 2935, 0, 2755, + 2933, 0, 2753, + 2929, 0, 2749, + 2925, 0, 2745, + 2921, 0, 2739, + 2913, 0, 2731, + 2905, 0, 2721, + 2891, 0, 2705, + 2873, 750, 2685, + 2849, 1304, 2655, + 2813, 1605, 2613, + 2759, 1833, 2549, + 2679, 2025, 2445, + 2539, 2197, 2257, + 2243, 2357, 1727, + 0, 2509, 0, + 0, 2655, 0, + 0, 2799, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2893, + 3071, 0, 2891, + 3071, 0, 2891, + 3069, 0, 2891, + 3069, 0, 2889, + 3067, 0, 2889, + 3067, 0, 2887, + 3065, 0, 2883, + 3061, 0, 2881, + 3057, 0, 2877, + 3053, 0, 2871, + 3045, 0, 2863, + 3037, 0, 2851, + 3023, 0, 2837, + 3005, 865, 2815, + 2981, 1431, 2785, + 2945, 1735, 2743, + 2891, 1963, 2679, + 2809, 2157, 2575, + 2671, 2329, 2385, + 2373, 2489, 1847, + 0, 2641, 0, + 0, 2787, 0, + 0, 2931, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3023, + 3203, 0, 3023, + 3203, 0, 3023, + 3203, 0, 3023, + 3201, 0, 3021, + 3201, 0, 3021, + 3199, 0, 3019, + 3199, 0, 3017, + 3195, 0, 3015, + 3193, 0, 3011, + 3189, 0, 3007, + 3185, 0, 3001, + 3177, 0, 2993, + 3167, 0, 2983, + 3155, 0, 2967, + 3137, 984, 2947, + 3111, 1559, 2917, + 3077, 1865, 2873, + 3023, 2095, 2809, + 2941, 2287, 2705, + 2801, 2461, 2515, + 2505, 2621, 1969, + 0, 2773, 0, + 0, 2919, 0, + 0, 3063, 0, + 0, 3203, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3153, + 3333, 0, 3153, + 3333, 0, 3151, + 3331, 0, 3151, + 3329, 0, 3149, + 3327, 0, 3147, + 3325, 0, 3143, + 3321, 0, 3139, + 3317, 0, 3133, + 3309, 0, 3125, + 3299, 0, 3113, + 3287, 0, 3099, + 3269, 1106, 3077, + 3243, 1689, 3049, + 3207, 1996, 3005, + 3155, 2225, 2941, + 3073, 2419, 2837, + 2933, 2593, 2645, + 2635, 2753, 2093, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3285, + 3465, 0, 3283, + 3463, 0, 3283, + 3461, 0, 3281, + 3459, 0, 3277, + 3457, 0, 3275, + 3453, 0, 3271, + 3449, 0, 3265, + 3441, 0, 3257, + 3431, 0, 3245, + 3419, 0, 3231, + 3401, 1231, 3209, + 3375, 1819, 3179, + 3339, 2127, 3137, + 3287, 2357, 3071, + 3205, 2551, 2967, + 3065, 2725, 2775, + 2767, 2885, 2219, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3417, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3413, + 3591, 0, 3409, + 3589, 0, 3407, + 3585, 0, 3403, + 3581, 0, 3397, + 3573, 0, 3389, + 3563, 0, 3377, + 3551, 0, 3361, + 3533, 1357, 3341, + 3507, 1949, 3311, + 3471, 2259, 3267, + 3419, 2489, 3203, + 3337, 2683, 3099, + 3197, 2855, 2905, + 2899, 3017, 2347, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3549, + 3729, 0, 3547, + 3727, 0, 3545, + 3727, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3539, + 3717, 0, 3533, + 3713, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3509, + 3683, 0, 3493, + 3665, 1485, 3473, + 3639, 2081, 3443, + 3603, 2391, 3399, + 3551, 2621, 3335, + 3469, 2815, 3229, + 3329, 2987, 3037, + 3031, 3149, 2477, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3859, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3671, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1614, 3605, + 3771, 2211, 3575, + 3735, 2521, 3531, + 3683, 2753, 3467, + 3601, 2947, 3361, + 3461, 3119, 3169, + 3161, 3281, 2607, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3989, 0, 3805, + 3985, 0, 3803, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1744, 3737, + 3903, 2343, 3707, + 3867, 2653, 3663, + 3815, 2885, 3599, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2737, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3935, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4093, 0, 3905, + 4079, 0, 3889, + 4061, 1874, 3869, + 4037, 2475, 3839, + 4001, 2785, 3795, + 3947, 3017, 3731, + 3865, 3211, 3625, + 3725, 3385, 3431, + 3425, 3545, 2867, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4067, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2005, 4001, + 4095, 2607, 3971, + 4095, 2917, 3927, + 4079, 3149, 3863, + 3997, 3343, 3757, + 3857, 3517, 3563, + 3557, 3677, 2999, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2135, 4095, + 4095, 2739, 4095, + 4095, 3049, 4059, + 4095, 3281, 3995, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3129, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2267, 4095, + 4095, 2871, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3261, + 532, 243, 872, + 424, 313, 835, + 222, 392, 781, + 0, 480, 697, + 0, 576, 552, + 0, 680, 237, + 0, 789, 0, + 0, 903, 0, + 0, 1022, 0, + 0, 1143, 0, + 0, 1267, 0, + 0, 1393, 0, + 0, 1520, 0, + 0, 1649, 0, + 0, 1779, 0, + 0, 1909, 0, + 0, 2039, 0, + 0, 2171, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 640, 231, 909, + 557, 303, 875, + 416, 384, 826, + 111, 473, 750, + 0, 571, 625, + 0, 675, 372, + 0, 786, 0, + 0, 901, 0, + 0, 1020, 0, + 0, 1141, 0, + 0, 1266, 0, + 0, 1392, 0, + 0, 1520, 0, + 0, 1649, 0, + 0, 1778, 0, + 0, 1908, 0, + 0, 2039, 0, + 0, 2171, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 754, 215, 955, + 690, 289, 924, + 589, 372, 880, + 404, 464, 814, + 0, 563, 706, + 0, 669, 506, + 0, 781, 0, + 0, 897, 0, + 0, 1017, 0, + 0, 1139, 0, + 0, 1264, 0, + 0, 1391, 0, + 0, 1519, 0, + 0, 1648, 0, + 0, 1778, 0, + 0, 1908, 0, + 0, 2039, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 871, 192, 1009, + 823, 270, 982, + 750, 356, 944, + 628, 451, 886, + 389, 553, 796, + 0, 661, 639, + 0, 774, 273, + 0, 892, 0, + 0, 1013, 0, + 0, 1136, 0, + 0, 1262, 0, + 0, 1389, 0, + 0, 1518, 0, + 0, 1647, 0, + 0, 1777, 0, + 0, 1908, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 992, 160, 1073, + 956, 243, 1049, + 902, 334, 1017, + 819, 433, 968, + 676, 539, 895, + 367, 650, 772, + 0, 766, 531, + 0, 885, 0, + 0, 1008, 0, + 0, 1132, 0, + 0, 1259, 0, + 0, 1387, 0, + 0, 1516, 0, + 0, 1646, 0, + 0, 1776, 0, + 0, 1907, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1116, 113, 1146, + 1088, 204, 1126, + 1049, 302, 1099, + 990, 408, 1059, + 897, 519, 1000, + 733, 634, 905, + 337, 754, 738, + 0, 876, 328, + 0, 1001, 0, + 0, 1127, 0, + 0, 1255, 0, + 0, 1384, 0, + 0, 1514, 0, + 0, 1644, 0, + 0, 1775, 0, + 0, 1906, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1241, 42, 1229, + 1221, 146, 1212, + 1191, 257, 1190, + 1149, 372, 1157, + 1086, 491, 1110, + 985, 613, 1038, + 799, 737, 919, + 293, 864, 688, + 0, 991, 0, + 0, 1120, 0, + 0, 1250, 0, + 0, 1380, 0, + 0, 1511, 0, + 0, 1642, 0, + 0, 1773, 0, + 0, 1905, 0, + 0, 2036, 0, + 0, 2169, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1368, 0, 1320, + 1353, 56, 1307, + 1331, 187, 1288, + 1301, 319, 1262, + 1256, 451, 1225, + 1189, 582, 1170, + 1080, 714, 1085, + 875, 846, 937, + 226, 978, 610, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1507, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1497, 0, 1419, + 1485, 0, 1408, + 1469, 74, 1394, + 1447, 237, 1373, + 1415, 391, 1345, + 1369, 538, 1303, + 1298, 682, 1240, + 1183, 822, 1141, + 960, 960, 960, + 118, 1097, 481, + 0, 1232, 0, + 0, 1367, 0, + 0, 1501, 0, + 0, 1634, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1626, 0, 1525, + 1617, 0, 1516, + 1606, 0, 1505, + 1589, 97, 1489, + 1566, 296, 1467, + 1533, 472, 1435, + 1485, 634, 1389, + 1412, 788, 1320, + 1291, 935, 1206, + 1054, 1078, 990, + 0, 1219, 216, + 0, 1357, 0, + 0, 1493, 0, + 0, 1629, 0, + 0, 1763, 0, + 0, 1897, 0, + 0, 2031, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1756, 0, 1636, + 1750, 0, 1630, + 1741, 0, 1621, + 1729, 0, 1608, + 1712, 126, 1591, + 1688, 364, 1568, + 1655, 562, 1534, + 1606, 737, 1484, + 1530, 899, 1408, + 1405, 1052, 1281, + 1155, 1200, 1026, + 0, 1343, 0, + 0, 1483, 0, + 0, 1621, 0, + 0, 1758, 0, + 0, 1893, 0, + 0, 2028, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1887, 0, 1752, + 1882, 0, 1747, + 1875, 0, 1740, + 1866, 0, 1731, + 1854, 0, 1718, + 1837, 163, 1700, + 1813, 442, 1675, + 1779, 659, 1639, + 1729, 846, 1586, + 1652, 1015, 1505, + 1523, 1173, 1366, + 1262, 1324, 1070, + 0, 1469, 0, + 0, 1611, 0, + 0, 1750, 0, + 0, 1888, 0, + 0, 2024, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2018, 0, 1872, + 2014, 0, 1868, + 2009, 0, 1862, + 2002, 0, 1855, + 1993, 0, 1845, + 1981, 0, 1832, + 1963, 207, 1813, + 1939, 529, 1787, + 1905, 764, 1750, + 1854, 960, 1695, + 1776, 1135, 1608, + 1644, 1297, 1458, + 1374, 1450, 1123, + 0, 1597, 0, + 0, 1740, 0, + 0, 1880, 0, + 0, 2018, 0, + 0, 2155, 0, + 0, 2289, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2149, 0, 1994, + 2147, 0, 1991, + 2143, 0, 1987, + 2137, 0, 1982, + 2131, 0, 1974, + 2121, 0, 1964, + 2109, 0, 1950, + 2091, 260, 1931, + 2067, 624, 1904, + 2032, 874, 1866, + 1981, 1078, 1808, + 1902, 1258, 1717, + 1768, 1422, 1559, + 1491, 1577, 1186, + 0, 1725, 0, + 0, 1869, 0, + 0, 2010, 0, + 0, 2149, 0, + 0, 2285, 0, + 0, 2421, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2281, 0, 2119, + 2279, 0, 2117, + 2275, 0, 2113, + 2271, 0, 2109, + 2267, 0, 2105, + 2261, 0, 2097, + 2251, 0, 2087, + 2239, 0, 2073, + 2221, 323, 2053, + 2195, 726, 2025, + 2161, 989, 1985, + 2109, 1200, 1926, + 2029, 1382, 1832, + 1894, 1549, 1665, + 1612, 1706, 1258, + 0, 1855, 0, + 0, 2000, 0, + 0, 2141, 0, + 0, 2279, 0, + 0, 2417, 0, + 0, 2553, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2413, 0, 2245, + 2411, 0, 2243, + 2409, 0, 2241, + 2405, 0, 2239, + 2401, 0, 2235, + 2397, 0, 2229, + 2391, 0, 2221, + 2381, 0, 2211, + 2367, 0, 2197, + 2351, 396, 2177, + 2325, 834, 2147, + 2291, 1108, 2107, + 2239, 1323, 2047, + 2157, 1509, 1950, + 2021, 1678, 1777, + 1735, 1835, 1340, + 0, 1985, 0, + 0, 2131, 0, + 0, 2273, 0, + 0, 2411, 0, + 0, 2549, 0, + 0, 2685, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2543, 0, 2373, + 2543, 0, 2373, + 2541, 0, 2371, + 2539, 0, 2369, + 2537, 0, 2365, + 2533, 0, 2361, + 2527, 0, 2355, + 2521, 0, 2347, + 2511, 0, 2337, + 2499, 0, 2323, + 2481, 477, 2301, + 2455, 948, 2273, + 2421, 1230, 2231, + 2369, 1449, 2171, + 2287, 1637, 2071, + 2149, 1807, 1894, + 1860, 1965, 1430, + 0, 2115, 0, + 0, 2261, 0, + 0, 2403, 0, + 0, 2543, 0, + 0, 2681, 0, + 0, 2817, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2675, 0, 2503, + 2675, 0, 2501, + 2673, 0, 2501, + 2673, 0, 2499, + 2671, 0, 2497, + 2667, 0, 2493, + 2663, 0, 2489, + 2659, 0, 2483, + 2651, 0, 2475, + 2643, 0, 2465, + 2629, 0, 2449, + 2611, 568, 2429, + 2587, 1065, 2401, + 2551, 1355, 2359, + 2499, 1577, 2295, + 2417, 1766, 2195, + 2279, 1937, 2014, + 1987, 2095, 1528, + 0, 2247, 0, + 0, 2393, 0, + 0, 2535, 0, + 0, 2675, 0, + 0, 2813, 0, + 0, 2949, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2807, 0, 2633, + 2807, 0, 2631, + 2807, 0, 2631, + 2805, 0, 2629, + 2803, 0, 2627, + 2801, 0, 2625, + 2799, 0, 2621, + 2795, 0, 2617, + 2789, 0, 2611, + 2783, 0, 2603, + 2773, 0, 2593, + 2761, 0, 2579, + 2743, 666, 2557, + 2717, 1186, 2529, + 2681, 1481, 2487, + 2629, 1705, 2423, + 2547, 1896, 2321, + 2409, 2067, 2137, + 2115, 2227, 1633, + 0, 2379, 0, + 0, 2525, 0, + 0, 2667, 0, + 0, 2807, 0, + 0, 2943, 0, + 0, 3081, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2763, + 2939, 0, 2763, + 2939, 0, 2761, + 2937, 0, 2761, + 2937, 0, 2759, + 2935, 0, 2757, + 2933, 0, 2755, + 2931, 0, 2751, + 2927, 0, 2747, + 2921, 0, 2741, + 2915, 0, 2733, + 2905, 0, 2723, + 2891, 0, 2707, + 2875, 771, 2687, + 2849, 1310, 2657, + 2813, 1609, 2615, + 2761, 1835, 2551, + 2679, 2026, 2449, + 2541, 2199, 2263, + 2245, 2359, 1744, + 0, 2509, 0, + 0, 2657, 0, + 0, 2799, 0, + 0, 2939, 0, + 0, 3075, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2893, + 3071, 0, 2893, + 3071, 0, 2893, + 3071, 0, 2891, + 3069, 0, 2891, + 3069, 0, 2889, + 3067, 0, 2887, + 3065, 0, 2885, + 3061, 0, 2881, + 3057, 0, 2877, + 3053, 0, 2871, + 3045, 0, 2863, + 3037, 0, 2853, + 3023, 0, 2837, + 3005, 882, 2817, + 2981, 1436, 2787, + 2945, 1738, 2745, + 2891, 1965, 2681, + 2811, 2157, 2577, + 2671, 2329, 2389, + 2375, 2489, 1860, + 0, 2641, 0, + 0, 2787, 0, + 0, 2931, 0, + 0, 3071, 0, + 0, 3207, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3025, + 3203, 0, 3025, + 3203, 0, 3023, + 3203, 0, 3023, + 3201, 0, 3023, + 3201, 0, 3021, + 3199, 0, 3021, + 3199, 0, 3019, + 3197, 0, 3015, + 3193, 0, 3013, + 3189, 0, 3009, + 3185, 0, 3003, + 3177, 0, 2995, + 3169, 0, 2983, + 3155, 0, 2969, + 3137, 997, 2947, + 3113, 1563, 2919, + 3077, 1867, 2875, + 3023, 2095, 2811, + 2941, 2289, 2707, + 2803, 2461, 2517, + 2505, 2621, 1979, + 0, 2773, 0, + 0, 2919, 0, + 0, 3063, 0, + 0, 3203, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3333, 0, 3153, + 3333, 0, 3153, + 3331, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3325, 0, 3143, + 3321, 0, 3139, + 3317, 0, 3133, + 3309, 0, 3125, + 3301, 0, 3115, + 3287, 0, 3099, + 3269, 1116, 3079, + 3245, 1692, 3049, + 3209, 1997, 3007, + 3155, 2227, 2941, + 3073, 2419, 2837, + 2933, 2593, 2647, + 2637, 2753, 2101, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3285, + 3465, 0, 3285, + 3465, 0, 3285, + 3463, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3457, 0, 3275, + 3453, 0, 3271, + 3449, 0, 3265, + 3441, 0, 3257, + 3431, 0, 3245, + 3419, 0, 3231, + 3401, 1238, 3209, + 3375, 1821, 3181, + 3341, 2129, 3137, + 3287, 2357, 3073, + 3205, 2551, 2969, + 3065, 2725, 2777, + 2767, 2885, 2225, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3417, + 3597, 0, 3415, + 3595, 0, 3415, + 3595, 0, 3413, + 3591, 0, 3411, + 3589, 0, 3407, + 3585, 0, 3403, + 3581, 0, 3397, + 3573, 0, 3389, + 3563, 0, 3377, + 3551, 0, 3363, + 3533, 1363, 3341, + 3507, 1951, 3311, + 3471, 2259, 3269, + 3419, 2489, 3203, + 3337, 2683, 3099, + 3197, 2857, 2907, + 2899, 3017, 2351, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3733, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3549, + 3729, 0, 3547, + 3727, 0, 3545, + 3727, 0, 3545, + 3725, 0, 3541, + 3721, 0, 3539, + 3717, 0, 3535, + 3713, 0, 3529, + 3705, 0, 3521, + 3695, 0, 3509, + 3683, 0, 3495, + 3665, 1489, 3473, + 3639, 2081, 3443, + 3603, 2391, 3401, + 3551, 2621, 3335, + 3469, 2815, 3231, + 3329, 2989, 3037, + 3031, 3149, 2479, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3683, + 3865, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3681, + 3861, 0, 3679, + 3859, 0, 3677, + 3859, 0, 3677, + 3857, 0, 3673, + 3853, 0, 3671, + 3849, 0, 3665, + 3845, 0, 3661, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1617, 3605, + 3771, 2213, 3575, + 3735, 2523, 3531, + 3683, 2753, 3467, + 3601, 2947, 3363, + 3461, 3121, 3169, + 3163, 3281, 2609, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3813, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3989, 0, 3805, + 3985, 0, 3803, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1746, 3737, + 3903, 2343, 3707, + 3869, 2653, 3663, + 3815, 2885, 3599, + 3733, 3079, 3493, + 3593, 3253, 3301, + 3295, 3413, 2739, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3935, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4093, 0, 3905, + 4079, 0, 3889, + 4061, 1876, 3869, + 4037, 2475, 3839, + 4001, 2785, 3795, + 3947, 3017, 3731, + 3865, 3211, 3625, + 3725, 3385, 3431, + 3425, 3545, 2869, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4067, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2006, 4001, + 4095, 2607, 3971, + 4095, 2917, 3927, + 4079, 3149, 3863, + 3997, 3343, 3757, + 3857, 3517, 3563, + 3557, 3677, 2999, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2137, 4095, + 4095, 2739, 4095, + 4095, 3049, 4059, + 4095, 3281, 3995, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3131, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2267, 4095, + 4095, 2871, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3261, + 644, 324, 1001, + 562, 383, 974, + 422, 452, 935, + 123, 530, 876, + 0, 617, 784, + 0, 713, 622, + 0, 815, 233, + 0, 924, 0, + 0, 1037, 0, + 0, 1155, 0, + 0, 1276, 0, + 0, 1400, 0, + 0, 1526, 0, + 0, 1653, 0, + 0, 1782, 0, + 0, 1911, 0, + 0, 2041, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 731, 315, 1029, + 664, 375, 1004, + 556, 445, 967, + 354, 524, 913, + 0, 612, 829, + 0, 708, 684, + 0, 812, 369, + 0, 921, 0, + 0, 1035, 0, + 0, 1154, 0, + 0, 1275, 0, + 0, 1399, 0, + 0, 1525, 0, + 0, 1653, 0, + 0, 1781, 0, + 0, 1911, 0, + 0, 2041, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 826, 301, 1065, + 772, 363, 1041, + 689, 435, 1008, + 548, 516, 958, + 243, 605, 883, + 0, 703, 757, + 0, 807, 504, + 0, 918, 0, + 0, 1033, 0, + 0, 1151, 0, + 0, 1273, 0, + 0, 1398, 0, + 0, 1524, 0, + 0, 1652, 0, + 0, 1781, 0, + 0, 1910, 0, + 0, 2041, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 928, 282, 1108, + 886, 347, 1086, + 822, 421, 1056, + 721, 504, 1012, + 536, 596, 946, + 32, 695, 838, + 0, 801, 638, + 0, 913, 23, + 0, 1029, 0, + 0, 1149, 0, + 0, 1271, 0, + 0, 1396, 0, + 0, 1523, 0, + 0, 1651, 0, + 0, 1780, 0, + 0, 1910, 0, + 0, 2040, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1036, 256, 1160, + 1003, 324, 1141, + 955, 402, 1114, + 882, 488, 1075, + 760, 583, 1018, + 521, 685, 929, + 0, 793, 771, + 0, 907, 406, + 0, 1024, 0, + 0, 1145, 0, + 0, 1268, 0, + 0, 1394, 0, + 0, 1521, 0, + 0, 1650, 0, + 0, 1779, 0, + 0, 1909, 0, + 0, 2040, 0, + 0, 2171, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1150, 219, 1221, + 1124, 292, 1205, + 1088, 375, 1182, + 1034, 466, 1149, + 951, 565, 1100, + 808, 671, 1026, + 500, 782, 905, + 0, 898, 663, + 0, 1017, 0, + 0, 1140, 0, + 0, 1265, 0, + 0, 1391, 0, + 0, 1519, 0, + 0, 1648, 0, + 0, 1778, 0, + 0, 1908, 0, + 0, 2039, 0, + 0, 2171, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1267, 163, 1292, + 1248, 245, 1278, + 1220, 336, 1259, + 1181, 435, 1231, + 1122, 540, 1191, + 1029, 651, 1131, + 865, 767, 1037, + 469, 886, 870, + 0, 1008, 460, + 0, 1133, 0, + 0, 1259, 0, + 0, 1387, 0, + 0, 1516, 0, + 0, 1646, 0, + 0, 1776, 0, + 0, 1907, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1388, 76, 1373, + 1373, 174, 1361, + 1353, 278, 1345, + 1324, 389, 1322, + 1281, 504, 1289, + 1218, 623, 1242, + 1116, 745, 1170, + 932, 870, 1051, + 425, 996, 820, + 0, 1123, 0, + 0, 1252, 0, + 0, 1382, 0, + 0, 1512, 0, + 0, 1643, 0, + 0, 1774, 0, + 0, 1905, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1512, 0, 1462, + 1501, 57, 1452, + 1485, 188, 1439, + 1463, 319, 1420, + 1433, 451, 1395, + 1388, 583, 1357, + 1321, 715, 1303, + 1212, 847, 1217, + 1008, 979, 1069, + 358, 1110, 742, + 0, 1242, 0, + 0, 1374, 0, + 0, 1507, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1638, 0, 1559, + 1629, 0, 1551, + 1617, 29, 1541, + 1601, 206, 1526, + 1579, 369, 1505, + 1547, 523, 1477, + 1501, 670, 1435, + 1430, 814, 1373, + 1315, 954, 1273, + 1092, 1092, 1092, + 250, 1229, 613, + 0, 1364, 0, + 0, 1499, 0, + 0, 1633, 0, + 0, 1767, 0, + 0, 1900, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1765, 0, 1663, + 1758, 0, 1657, + 1750, 0, 1649, + 1738, 0, 1637, + 1721, 229, 1621, + 1698, 428, 1599, + 1665, 604, 1567, + 1617, 766, 1522, + 1544, 920, 1452, + 1423, 1067, 1338, + 1186, 1211, 1122, + 47, 1351, 348, + 0, 1489, 0, + 0, 1626, 0, + 0, 1761, 0, + 0, 1896, 0, + 0, 2030, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1893, 0, 1773, + 1888, 0, 1768, + 1882, 0, 1762, + 1873, 0, 1753, + 1861, 0, 1740, + 1844, 258, 1723, + 1820, 496, 1700, + 1787, 694, 1666, + 1738, 869, 1616, + 1662, 1031, 1540, + 1537, 1185, 1414, + 1287, 1332, 1158, + 0, 1475, 0, + 0, 1615, 0, + 0, 1753, 0, + 0, 1890, 0, + 0, 2025, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2023, 0, 1888, + 2019, 0, 1884, + 2014, 0, 1879, + 2007, 0, 1872, + 1998, 0, 1863, + 1986, 0, 1850, + 1969, 295, 1832, + 1945, 574, 1807, + 1911, 791, 1771, + 1861, 978, 1718, + 1784, 1147, 1637, + 1655, 1305, 1498, + 1394, 1456, 1202, + 0, 1601, 0, + 0, 1743, 0, + 0, 1882, 0, + 0, 2020, 0, + 0, 2155, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2153, 0, 2007, + 2149, 0, 2004, + 2147, 0, 2000, + 2141, 0, 1995, + 2135, 0, 1987, + 2125, 0, 1978, + 2113, 0, 1964, + 2095, 339, 1946, + 2071, 661, 1920, + 2037, 896, 1882, + 1986, 1092, 1827, + 1908, 1267, 1740, + 1777, 1429, 1590, + 1507, 1582, 1256, + 0, 1729, 0, + 0, 1872, 0, + 0, 2012, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2421, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2283, 0, 2129, + 2281, 0, 2127, + 2279, 0, 2123, + 2275, 0, 2119, + 2269, 0, 2113, + 2263, 0, 2107, + 2253, 0, 2097, + 2241, 0, 2083, + 2223, 393, 2063, + 2199, 756, 2036, + 2165, 1006, 1998, + 2113, 1210, 1940, + 2034, 1390, 1850, + 1900, 1554, 1691, + 1624, 1709, 1318, + 0, 1858, 0, + 0, 2002, 0, + 0, 2143, 0, + 0, 2281, 0, + 0, 2417, 0, + 0, 2553, 0, + 0, 2687, 0, + 0, 2823, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2415, 0, 2253, + 2413, 0, 2251, + 2411, 0, 2249, + 2407, 0, 2245, + 2405, 0, 2241, + 2399, 0, 2237, + 2393, 0, 2229, + 2383, 0, 2219, + 2371, 0, 2205, + 2353, 455, 2185, + 2329, 858, 2157, + 2293, 1121, 2117, + 2241, 1332, 2057, + 2161, 1515, 1964, + 2026, 1681, 1797, + 1744, 1838, 1391, + 0, 1987, 0, + 0, 2131, 0, + 0, 2273, 0, + 0, 2411, 0, + 0, 2549, 0, + 0, 2685, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2545, 0, 2379, + 2545, 0, 2377, + 2543, 0, 2377, + 2541, 0, 2373, + 2537, 0, 2371, + 2535, 0, 2367, + 2529, 0, 2361, + 2523, 0, 2353, + 2513, 0, 2343, + 2501, 0, 2329, + 2483, 528, 2309, + 2457, 966, 2281, + 2423, 1240, 2239, + 2371, 1456, 2179, + 2289, 1641, 2083, + 2153, 1810, 1910, + 1867, 1967, 1472, + 0, 2117, 0, + 0, 2263, 0, + 0, 2405, 0, + 0, 2543, 0, + 0, 2681, 0, + 0, 2817, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2677, 0, 2507, + 2675, 0, 2505, + 2675, 0, 2505, + 2673, 0, 2503, + 2671, 0, 2501, + 2669, 0, 2497, + 2665, 0, 2493, + 2659, 0, 2487, + 2653, 0, 2479, + 2643, 0, 2469, + 2631, 0, 2455, + 2613, 609, 2433, + 2587, 1080, 2405, + 2553, 1362, 2365, + 2501, 1582, 2303, + 2419, 1769, 2203, + 2283, 1939, 2026, + 1993, 2097, 1562, + 0, 2249, 0, + 0, 2393, 0, + 0, 2535, 0, + 0, 2675, 0, + 0, 2813, 0, + 0, 2949, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2809, 0, 2635, + 2807, 0, 2635, + 2807, 0, 2633, + 2805, 0, 2633, + 2805, 0, 2631, + 2803, 0, 2629, + 2799, 0, 2625, + 2795, 0, 2621, + 2791, 0, 2615, + 2783, 0, 2607, + 2775, 0, 2597, + 2761, 0, 2581, + 2743, 700, 2561, + 2719, 1198, 2533, + 2683, 1487, 2491, + 2631, 1709, 2427, + 2549, 1898, 2327, + 2411, 2069, 2147, + 2119, 2227, 1661, + 0, 2379, 0, + 0, 2525, 0, + 0, 2667, 0, + 0, 2807, 0, + 0, 2945, 0, + 0, 3081, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2941, 0, 2765, + 2939, 0, 2765, + 2939, 0, 2763, + 2939, 0, 2763, + 2937, 0, 2761, + 2935, 0, 2759, + 2933, 0, 2757, + 2931, 0, 2755, + 2927, 0, 2749, + 2921, 0, 2743, + 2915, 0, 2737, + 2905, 0, 2725, + 2893, 0, 2711, + 2875, 798, 2689, + 2849, 1319, 2661, + 2815, 1613, 2619, + 2761, 1837, 2555, + 2681, 2028, 2453, + 2541, 2199, 2269, + 2247, 2359, 1766, + 0, 2511, 0, + 0, 2657, 0, + 0, 2799, 0, + 0, 2939, 0, + 0, 3077, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3073, 0, 2895, + 3071, 0, 2895, + 3071, 0, 2895, + 3071, 0, 2893, + 3069, 0, 2893, + 3069, 0, 2891, + 3067, 0, 2889, + 3065, 0, 2887, + 3063, 0, 2883, + 3059, 0, 2879, + 3053, 0, 2873, + 3047, 0, 2865, + 3037, 0, 2855, + 3025, 0, 2839, + 3007, 903, 2819, + 2981, 1442, 2789, + 2945, 1741, 2747, + 2893, 1967, 2683, + 2811, 2159, 2581, + 2673, 2331, 2395, + 2377, 2491, 1876, + 0, 2641, 0, + 0, 2789, 0, + 0, 2931, 0, + 0, 3071, 0, + 0, 3207, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3205, 0, 3025, + 3203, 0, 3025, + 3203, 0, 3025, + 3203, 0, 3025, + 3203, 0, 3023, + 3201, 0, 3023, + 3201, 0, 3021, + 3199, 0, 3019, + 3197, 0, 3017, + 3193, 0, 3015, + 3191, 0, 3009, + 3185, 0, 3003, + 3177, 0, 2995, + 3169, 0, 2985, + 3155, 0, 2971, + 3137, 1014, 2949, + 3113, 1568, 2919, + 3077, 1870, 2877, + 3025, 2097, 2813, + 2943, 2289, 2711, + 2803, 2461, 2521, + 2507, 2621, 1992, + 0, 2773, 0, + 0, 2919, 0, + 0, 3063, 0, + 0, 3203, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3157, + 3335, 0, 3157, + 3335, 0, 3157, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3333, 0, 3153, + 3333, 0, 3153, + 3331, 0, 3151, + 3329, 0, 3149, + 3325, 0, 3145, + 3321, 0, 3141, + 3317, 0, 3135, + 3309, 0, 3127, + 3301, 0, 3115, + 3287, 0, 3101, + 3269, 1129, 3079, + 3245, 1695, 3051, + 3209, 1999, 3007, + 3155, 2227, 2943, + 3073, 2421, 2839, + 2935, 2593, 2649, + 2637, 2753, 2111, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3469, 0, 3289, + 3467, 0, 3289, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3465, 0, 3285, + 3465, 0, 3285, + 3463, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3457, 0, 3277, + 3453, 0, 3271, + 3449, 0, 3265, + 3441, 0, 3257, + 3433, 0, 3247, + 3419, 0, 3231, + 3401, 1248, 3211, + 3377, 1824, 3181, + 3341, 2129, 3139, + 3287, 2359, 3073, + 3205, 2551, 2969, + 3065, 2725, 2779, + 2769, 2885, 2233, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3601, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3417, + 3597, 0, 3417, + 3597, 0, 3417, + 3595, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3589, 0, 3407, + 3585, 0, 3403, + 3581, 0, 3397, + 3573, 0, 3389, + 3565, 0, 3379, + 3551, 0, 3363, + 3533, 1371, 3341, + 3509, 1953, 3313, + 3473, 2261, 3269, + 3419, 2489, 3205, + 3337, 2683, 3101, + 3197, 2857, 2909, + 2899, 3017, 2357, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3733, 0, 3551, + 3733, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3549, + 3729, 0, 3549, + 3729, 0, 3547, + 3727, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3721, 0, 3539, + 3717, 0, 3535, + 3713, 0, 3529, + 3705, 0, 3521, + 3697, 0, 3509, + 3683, 0, 3495, + 3665, 1495, 3473, + 3641, 2083, 3443, + 3605, 2391, 3401, + 3551, 2621, 3335, + 3469, 2815, 3231, + 3329, 2989, 3039, + 3031, 3149, 2485, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3683, + 3865, 0, 3683, + 3865, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3681, + 3861, 0, 3679, + 3859, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3673, + 3853, 0, 3671, + 3849, 0, 3667, + 3845, 0, 3661, + 3837, 0, 3653, + 3829, 0, 3641, + 3815, 0, 3627, + 3797, 1622, 3605, + 3773, 2213, 3575, + 3737, 2523, 3533, + 3683, 2753, 3467, + 3601, 2947, 3363, + 3461, 3121, 3169, + 3163, 3281, 2611, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3813, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3809, + 3989, 0, 3805, + 3985, 0, 3803, + 3981, 0, 3799, + 3977, 0, 3793, + 3969, 0, 3785, + 3961, 0, 3773, + 3947, 0, 3757, + 3929, 1749, 3737, + 3905, 2345, 3707, + 3869, 2655, 3663, + 3815, 2885, 3599, + 3733, 3079, 3495, + 3593, 3253, 3301, + 3295, 3413, 2741, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3941, + 4095, 0, 3937, + 4095, 0, 3935, + 4095, 0, 3929, + 4095, 0, 3925, + 4095, 0, 3915, + 4093, 0, 3905, + 4079, 0, 3889, + 4061, 1878, 3869, + 4037, 2475, 3839, + 4001, 2785, 3795, + 3947, 3017, 3731, + 3865, 3211, 3625, + 3725, 3385, 3433, + 3427, 3545, 2871, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4067, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2008, 4001, + 4095, 2607, 3971, + 4095, 2917, 3927, + 4079, 3149, 3863, + 3997, 3343, 3757, + 3857, 3517, 3563, + 3559, 3677, 3001, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2139, 4095, + 4095, 2739, 4095, + 4095, 3049, 4059, + 4095, 3281, 3995, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3691, 3809, 3131, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2269, 4095, + 4095, 2871, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3823, 3941, 3263, + 761, 415, 1131, + 699, 464, 1111, + 599, 522, 1082, + 420, 590, 1041, + 0, 667, 979, + 0, 753, 880, + 0, 848, 701, + 0, 950, 229, + 0, 1058, 0, + 0, 1171, 0, + 0, 1288, 0, + 0, 1409, 0, + 0, 1533, 0, + 0, 1658, 0, + 0, 1786, 0, + 0, 1914, 0, + 0, 2043, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 829, 407, 1153, + 776, 456, 1133, + 694, 515, 1106, + 554, 584, 1067, + 255, 662, 1008, + 0, 749, 916, + 0, 845, 754, + 0, 947, 365, + 0, 1056, 0, + 0, 1169, 0, + 0, 1287, 0, + 0, 1408, 0, + 0, 1532, 0, + 0, 1658, 0, + 0, 1785, 0, + 0, 1914, 0, + 0, 2043, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 907, 396, 1180, + 863, 447, 1161, + 796, 507, 1136, + 688, 577, 1099, + 486, 656, 1045, + 0, 744, 961, + 0, 841, 817, + 0, 944, 501, + 0, 1053, 0, + 0, 1167, 0, + 0, 1286, 0, + 0, 1407, 0, + 0, 1531, 0, + 0, 1657, 0, + 0, 1785, 0, + 0, 1913, 0, + 0, 2043, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 994, 381, 1214, + 958, 433, 1197, + 904, 495, 1173, + 821, 567, 1139, + 680, 648, 1090, + 375, 737, 1015, + 0, 835, 889, + 0, 939, 636, + 0, 1050, 0, + 0, 1165, 0, + 0, 1284, 0, + 0, 1406, 0, + 0, 1530, 0, + 0, 1656, 0, + 0, 1784, 0, + 0, 1913, 0, + 0, 2042, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1089, 360, 1255, + 1060, 415, 1240, + 1018, 479, 1219, + 955, 553, 1188, + 853, 636, 1144, + 669, 728, 1078, + 164, 827, 970, + 0, 933, 770, + 0, 1045, 155, + 0, 1161, 0, + 0, 1281, 0, + 0, 1403, 0, + 0, 1528, 0, + 0, 1655, 0, + 0, 1783, 0, + 0, 1912, 0, + 0, 2042, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1191, 330, 1306, + 1168, 388, 1292, + 1135, 456, 1273, + 1087, 534, 1246, + 1014, 620, 1208, + 893, 715, 1150, + 653, 817, 1060, + 0, 925, 903, + 0, 1038, 538, + 0, 1156, 0, + 0, 1277, 0, + 0, 1401, 0, + 0, 1526, 0, + 0, 1653, 0, + 0, 1782, 0, + 0, 1911, 0, + 0, 2041, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1300, 287, 1366, + 1282, 351, 1353, + 1256, 424, 1337, + 1220, 507, 1314, + 1166, 598, 1281, + 1083, 697, 1232, + 940, 803, 1159, + 632, 914, 1036, + 0, 1030, 795, + 0, 1149, 0, + 0, 1272, 0, + 0, 1397, 0, + 0, 1523, 0, + 0, 1651, 0, + 0, 1780, 0, + 0, 1910, 0, + 0, 2040, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1413, 222, 1435, + 1399, 295, 1425, + 1380, 377, 1410, + 1352, 468, 1391, + 1313, 567, 1363, + 1254, 672, 1323, + 1161, 783, 1264, + 997, 899, 1169, + 601, 1018, 1002, + 0, 1140, 592, + 0, 1265, 0, + 0, 1391, 0, + 0, 1519, 0, + 0, 1648, 0, + 0, 1778, 0, + 0, 1908, 0, + 0, 2039, 0, + 0, 2171, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1531, 118, 1514, + 1520, 208, 1505, + 1505, 306, 1493, + 1485, 411, 1477, + 1456, 521, 1454, + 1413, 636, 1421, + 1350, 755, 1374, + 1249, 877, 1302, + 1063, 1002, 1183, + 557, 1128, 952, + 0, 1255, 0, + 0, 1384, 0, + 0, 1514, 0, + 0, 1644, 0, + 0, 1775, 0, + 0, 1906, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1652, 0, 1601, + 1644, 58, 1594, + 1633, 189, 1584, + 1617, 320, 1571, + 1596, 451, 1553, + 1565, 583, 1527, + 1520, 715, 1490, + 1453, 847, 1435, + 1344, 979, 1349, + 1139, 1110, 1201, + 490, 1242, 875, + 0, 1375, 0, + 0, 1507, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1776, 0, 1697, + 1770, 0, 1691, + 1761, 0, 1683, + 1749, 161, 1673, + 1733, 338, 1658, + 1711, 501, 1638, + 1679, 655, 1609, + 1633, 803, 1567, + 1562, 946, 1505, + 1447, 1086, 1405, + 1225, 1225, 1225, + 382, 1361, 745, + 0, 1497, 0, + 0, 1631, 0, + 0, 1765, 0, + 0, 1899, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1902, 0, 1800, + 1897, 0, 1795, + 1890, 0, 1789, + 1882, 0, 1781, + 1870, 122, 1769, + 1853, 361, 1753, + 1830, 560, 1731, + 1797, 736, 1700, + 1750, 898, 1654, + 1676, 1052, 1584, + 1556, 1199, 1471, + 1318, 1343, 1254, + 179, 1483, 480, + 0, 1621, 0, + 0, 1758, 0, + 0, 1893, 0, + 0, 2028, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2029, 0, 1909, + 2025, 0, 1905, + 2021, 0, 1900, + 2014, 0, 1894, + 2005, 0, 1885, + 1993, 63, 1873, + 1976, 390, 1856, + 1952, 628, 1832, + 1919, 826, 1798, + 1870, 1001, 1748, + 1795, 1163, 1672, + 1669, 1317, 1546, + 1419, 1464, 1290, + 0, 1607, 0, + 0, 1747, 0, + 0, 1886, 0, + 0, 2022, 0, + 0, 2157, 0, + 0, 2293, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2157, 0, 2023, + 2155, 0, 2020, + 2151, 0, 2016, + 2147, 0, 2011, + 2139, 0, 2004, + 2131, 0, 1995, + 2119, 0, 1982, + 2101, 427, 1964, + 2077, 706, 1939, + 2043, 924, 1903, + 1993, 1110, 1851, + 1916, 1279, 1769, + 1787, 1437, 1630, + 1526, 1588, 1334, + 0, 1733, 0, + 0, 1875, 0, + 0, 2014, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2287, 0, 2141, + 2285, 0, 2139, + 2283, 0, 2135, + 2279, 0, 2131, + 2273, 0, 2127, + 2267, 0, 2119, + 2257, 0, 2109, + 2245, 0, 2097, + 2227, 471, 2077, + 2203, 793, 2051, + 2169, 1028, 2014, + 2119, 1224, 1959, + 2040, 1399, 1872, + 1909, 1561, 1723, + 1639, 1714, 1388, + 0, 1861, 0, + 0, 2004, 0, + 0, 2145, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2417, 0, 2263, + 2415, 0, 2261, + 2413, 0, 2259, + 2411, 0, 2255, + 2407, 0, 2251, + 2401, 0, 2245, + 2395, 0, 2239, + 2385, 0, 2229, + 2373, 0, 2215, + 2355, 525, 2195, + 2331, 888, 2169, + 2297, 1138, 2129, + 2245, 1342, 2073, + 2165, 1522, 1982, + 2033, 1686, 1823, + 1756, 1841, 1450, + 0, 1990, 0, + 0, 2133, 0, + 0, 2275, 0, + 0, 2413, 0, + 0, 2549, 0, + 0, 2685, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2547, 0, 2387, + 2547, 0, 2385, + 2545, 0, 2383, + 2543, 0, 2381, + 2539, 0, 2377, + 2537, 0, 2373, + 2531, 0, 2369, + 2525, 0, 2361, + 2515, 0, 2351, + 2503, 0, 2337, + 2485, 587, 2317, + 2461, 990, 2289, + 2425, 1253, 2249, + 2373, 1464, 2189, + 2293, 1647, 2097, + 2159, 1813, 1930, + 1876, 1970, 1523, + 0, 2119, 0, + 0, 2263, 0, + 0, 2405, 0, + 0, 2545, 0, + 0, 2681, 0, + 0, 2817, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2679, 0, 2513, + 2677, 0, 2511, + 2677, 0, 2509, + 2675, 0, 2509, + 2673, 0, 2505, + 2669, 0, 2503, + 2667, 0, 2499, + 2661, 0, 2493, + 2655, 0, 2485, + 2645, 0, 2475, + 2633, 0, 2461, + 2615, 660, 2441, + 2589, 1098, 2413, + 2555, 1372, 2371, + 2503, 1588, 2311, + 2421, 1773, 2215, + 2285, 1942, 2042, + 1999, 2099, 1604, + 0, 2249, 0, + 0, 2395, 0, + 0, 2537, 0, + 0, 2675, 0, + 0, 2813, 0, + 0, 2949, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2809, 0, 2639, + 2809, 0, 2639, + 2809, 0, 2637, + 2807, 0, 2637, + 2805, 0, 2635, + 2803, 0, 2633, + 2801, 0, 2629, + 2797, 0, 2625, + 2791, 0, 2619, + 2785, 0, 2611, + 2775, 0, 2601, + 2763, 0, 2587, + 2745, 742, 2567, + 2721, 1212, 2537, + 2685, 1495, 2497, + 2633, 1714, 2435, + 2551, 1901, 2335, + 2415, 2071, 2159, + 2125, 2229, 1695, + 0, 2381, 0, + 0, 2525, 0, + 0, 2667, 0, + 0, 2807, 0, + 0, 2945, 0, + 0, 3081, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2941, 0, 2769, + 2941, 0, 2767, + 2939, 0, 2767, + 2939, 0, 2765, + 2937, 0, 2765, + 2937, 0, 2763, + 2935, 0, 2761, + 2931, 0, 2757, + 2927, 0, 2753, + 2923, 0, 2747, + 2915, 0, 2739, + 2907, 0, 2729, + 2893, 0, 2713, + 2875, 832, 2693, + 2851, 1330, 2665, + 2815, 1619, 2623, + 2763, 1841, 2561, + 2681, 2030, 2461, + 2543, 2201, 2279, + 2251, 2361, 1793, + 0, 2511, 0, + 0, 2657, 0, + 0, 2799, 0, + 0, 2939, 0, + 0, 3077, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3073, 0, 2897, + 3073, 0, 2897, + 3071, 0, 2897, + 3071, 0, 2895, + 3071, 0, 2895, + 3069, 0, 2893, + 3067, 0, 2891, + 3065, 0, 2889, + 3063, 0, 2887, + 3059, 0, 2881, + 3053, 0, 2877, + 3047, 0, 2869, + 3037, 0, 2857, + 3025, 0, 2843, + 3007, 930, 2821, + 2981, 1451, 2793, + 2947, 1745, 2751, + 2893, 1970, 2687, + 2813, 2161, 2587, + 2673, 2331, 2401, + 2379, 2491, 1898, + 0, 2643, 0, + 0, 2789, 0, + 0, 2931, 0, + 0, 3071, 0, + 0, 3209, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3205, 0, 3027, + 3205, 0, 3027, + 3203, 0, 3027, + 3203, 0, 3027, + 3203, 0, 3025, + 3201, 0, 3025, + 3201, 0, 3023, + 3199, 0, 3021, + 3197, 0, 3019, + 3195, 0, 3015, + 3191, 0, 3011, + 3185, 0, 3005, + 3179, 0, 2997, + 3169, 0, 2987, + 3157, 0, 2973, + 3139, 1035, 2951, + 3113, 1574, 2921, + 3077, 1873, 2879, + 3025, 2099, 2815, + 2943, 2291, 2713, + 2805, 2463, 2527, + 2509, 2623, 2008, + 0, 2775, 0, + 0, 2921, 0, + 0, 3063, 0, + 0, 3203, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3337, 0, 3159, + 3337, 0, 3157, + 3335, 0, 3157, + 3335, 0, 3157, + 3335, 0, 3157, + 3335, 0, 3155, + 3333, 0, 3155, + 3333, 0, 3153, + 3331, 0, 3151, + 3329, 0, 3149, + 3325, 0, 3147, + 3323, 0, 3141, + 3317, 0, 3137, + 3311, 0, 3129, + 3301, 0, 3117, + 3287, 0, 3103, + 3269, 1146, 3081, + 3245, 1700, 3051, + 3209, 2002, 3009, + 3157, 2229, 2945, + 3075, 2421, 2843, + 2935, 2593, 2653, + 2639, 2753, 2123, + 0, 2905, 0, + 0, 3053, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3879, 0, + 0, 4011, 0, + 3469, 0, 3289, + 3469, 0, 3289, + 3467, 0, 3289, + 3467, 0, 3289, + 3467, 0, 3289, + 3467, 0, 3287, + 3467, 0, 3287, + 3465, 0, 3285, + 3465, 0, 3285, + 3463, 0, 3283, + 3461, 0, 3281, + 3457, 0, 3277, + 3453, 0, 3273, + 3449, 0, 3267, + 3441, 0, 3259, + 3433, 0, 3247, + 3419, 0, 3233, + 3401, 1261, 3211, + 3377, 1827, 3183, + 3341, 2131, 3139, + 3287, 2359, 3075, + 3205, 2553, 2971, + 3067, 2725, 2781, + 2769, 2885, 2243, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3601, 0, 3421, + 3601, 0, 3421, + 3599, 0, 3421, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3417, + 3597, 0, 3417, + 3595, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3589, 0, 3409, + 3585, 0, 3403, + 3581, 0, 3397, + 3573, 0, 3389, + 3565, 0, 3379, + 3551, 0, 3363, + 3533, 1380, 3343, + 3509, 1956, 3313, + 3473, 2261, 3271, + 3419, 2491, 3205, + 3337, 2683, 3101, + 3199, 2857, 2911, + 2901, 3017, 2365, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3733, 0, 3551, + 3733, 0, 3551, + 3733, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3729, 0, 3549, + 3729, 0, 3549, + 3727, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3721, 0, 3539, + 3717, 0, 3535, + 3713, 0, 3529, + 3705, 0, 3521, + 3697, 0, 3511, + 3683, 0, 3495, + 3665, 1503, 3475, + 3641, 2085, 3445, + 3605, 2393, 3401, + 3551, 2623, 3337, + 3469, 2815, 3233, + 3329, 2989, 3041, + 3031, 3149, 2489, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3683, + 3865, 0, 3683, + 3865, 0, 3683, + 3865, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3861, 0, 3681, + 3861, 0, 3679, + 3859, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3853, 0, 3671, + 3849, 0, 3667, + 3845, 0, 3661, + 3837, 0, 3653, + 3829, 0, 3641, + 3815, 0, 3627, + 3797, 1627, 3605, + 3773, 2215, 3575, + 3737, 2523, 3533, + 3683, 2753, 3467, + 3601, 2947, 3363, + 3461, 3121, 3171, + 3163, 3281, 2617, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3813, + 3993, 0, 3811, + 3991, 0, 3811, + 3991, 0, 3809, + 3989, 0, 3807, + 3985, 0, 3803, + 3981, 0, 3799, + 3977, 0, 3793, + 3969, 0, 3785, + 3961, 0, 3773, + 3947, 0, 3759, + 3929, 1754, 3737, + 3905, 2345, 3707, + 3869, 2655, 3665, + 3815, 2885, 3599, + 3733, 3079, 3495, + 3593, 3253, 3301, + 3295, 3413, 2743, + 0, 3565, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3937, + 4095, 0, 3935, + 4095, 0, 3931, + 4095, 0, 3925, + 4095, 0, 3917, + 4093, 0, 3905, + 4079, 0, 3891, + 4061, 1881, 3869, + 4037, 2477, 3839, + 4001, 2787, 3795, + 3947, 3017, 3731, + 3865, 3211, 3627, + 3725, 3385, 3433, + 3427, 3545, 2873, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4073, + 4095, 0, 4069, + 4095, 0, 4067, + 4095, 0, 4063, + 4095, 0, 4057, + 4095, 0, 4049, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2010, 4001, + 4095, 2609, 3971, + 4095, 2919, 3927, + 4079, 3149, 3863, + 3997, 3343, 3757, + 3857, 3517, 3565, + 3559, 3677, 3003, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2141, 4095, + 4095, 2739, 4095, + 4095, 3049, 4059, + 4095, 3281, 3995, + 4095, 3475, 3889, + 3989, 3649, 3697, + 3691, 3809, 3133, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2271, 4095, + 4095, 2871, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3823, 3941, 3263, + 881, 513, 1262, + 834, 553, 1247, + 762, 601, 1225, + 645, 659, 1196, + 417, 726, 1152, + 0, 802, 1087, + 0, 888, 982, + 0, 982, 788, + 0, 1083, 222, + 0, 1191, 0, + 0, 1304, 0, + 0, 1421, 0, + 0, 1542, 0, + 0, 1665, 0, + 0, 1791, 0, + 0, 1918, 0, + 0, 2046, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 934, 506, 1278, + 893, 547, 1263, + 831, 596, 1243, + 731, 654, 1214, + 552, 722, 1173, + 77, 799, 1111, + 0, 885, 1012, + 0, 980, 833, + 0, 1082, 361, + 0, 1190, 0, + 0, 1303, 0, + 0, 1421, 0, + 0, 1541, 0, + 0, 1665, 0, + 0, 1791, 0, + 0, 1918, 0, + 0, 2046, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 997, 497, 1299, + 961, 539, 1285, + 908, 588, 1265, + 826, 648, 1238, + 686, 716, 1199, + 387, 794, 1140, + 0, 882, 1048, + 0, 977, 886, + 0, 1079, 498, + 0, 1188, 0, + 0, 1302, 0, + 0, 1419, 0, + 0, 1541, 0, + 0, 1664, 0, + 0, 1790, 0, + 0, 1917, 0, + 0, 2046, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1070, 485, 1325, + 1039, 528, 1312, + 995, 579, 1294, + 928, 639, 1268, + 820, 709, 1231, + 618, 788, 1177, + 0, 876, 1093, + 0, 973, 949, + 0, 1076, 633, + 0, 1185, 0, + 0, 1299, 0, + 0, 1418, 0, + 0, 1539, 0, + 0, 1663, 0, + 0, 1789, 0, + 0, 1917, 0, + 0, 2045, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1151, 469, 1358, + 1126, 513, 1346, + 1090, 565, 1329, + 1036, 627, 1305, + 954, 699, 1272, + 812, 780, 1222, + 507, 870, 1147, + 0, 967, 1021, + 0, 1071, 768, + 0, 1182, 0, + 0, 1297, 0, + 0, 1416, 0, + 0, 1538, 0, + 0, 1662, 0, + 0, 1788, 0, + 0, 1916, 0, + 0, 2045, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1242, 446, 1399, + 1221, 492, 1387, + 1192, 547, 1372, + 1150, 611, 1351, + 1086, 685, 1320, + 985, 768, 1276, + 801, 860, 1210, + 296, 960, 1102, + 0, 1065, 902, + 0, 1177, 287, + 0, 1293, 0, + 0, 1413, 0, + 0, 1536, 0, + 0, 1661, 0, + 0, 1787, 0, + 0, 1915, 0, + 0, 2044, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1340, 413, 1448, + 1323, 462, 1438, + 1300, 520, 1424, + 1267, 588, 1405, + 1219, 666, 1378, + 1146, 752, 1340, + 1024, 847, 1283, + 785, 949, 1193, + 0, 1057, 1035, + 0, 1171, 670, + 0, 1288, 0, + 0, 1409, 0, + 0, 1533, 0, + 0, 1658, 0, + 0, 1786, 0, + 0, 1914, 0, + 0, 2043, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1445, 365, 1506, + 1432, 419, 1498, + 1414, 483, 1486, + 1388, 556, 1469, + 1352, 639, 1446, + 1298, 730, 1413, + 1215, 829, 1365, + 1072, 935, 1291, + 764, 1046, 1169, + 0, 1162, 927, + 0, 1281, 0, + 0, 1404, 0, + 0, 1529, 0, + 0, 1655, 0, + 0, 1783, 0, + 0, 1912, 0, + 0, 2042, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1556, 291, 1575, + 1546, 354, 1567, + 1531, 427, 1557, + 1512, 509, 1542, + 1485, 600, 1523, + 1445, 699, 1495, + 1386, 804, 1455, + 1293, 915, 1396, + 1129, 1031, 1301, + 733, 1150, 1134, + 0, 1272, 724, + 0, 1397, 0, + 0, 1524, 0, + 0, 1651, 0, + 0, 1780, 0, + 0, 1910, 0, + 0, 2040, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1671, 169, 1652, + 1663, 250, 1646, + 1652, 340, 1637, + 1638, 438, 1625, + 1617, 543, 1609, + 1588, 653, 1586, + 1546, 768, 1554, + 1482, 887, 1506, + 1381, 1009, 1434, + 1196, 1134, 1315, + 689, 1260, 1084, + 0, 1388, 87, + 0, 1516, 0, + 0, 1646, 0, + 0, 1776, 0, + 0, 1907, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1790, 0, 1739, + 1784, 59, 1733, + 1776, 190, 1726, + 1765, 321, 1716, + 1749, 452, 1703, + 1728, 583, 1685, + 1697, 715, 1659, + 1653, 847, 1622, + 1585, 979, 1567, + 1476, 1111, 1481, + 1272, 1243, 1334, + 622, 1375, 1007, + 0, 1507, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1913, 0, 1833, + 1908, 0, 1829, + 1902, 0, 1823, + 1893, 93, 1816, + 1882, 293, 1805, + 1866, 470, 1790, + 1843, 633, 1770, + 1811, 787, 1741, + 1765, 935, 1699, + 1694, 1078, 1637, + 1579, 1218, 1537, + 1357, 1357, 1357, + 514, 1493, 877, + 0, 1629, 0, + 0, 1763, 0, + 0, 1897, 0, + 0, 2031, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2037, 0, 1935, + 2034, 0, 1932, + 2029, 0, 1927, + 2023, 0, 1921, + 2014, 0, 1913, + 2002, 254, 1901, + 1985, 493, 1885, + 1962, 692, 1863, + 1930, 868, 1832, + 1882, 1030, 1786, + 1809, 1184, 1716, + 1688, 1331, 1603, + 1450, 1475, 1386, + 311, 1615, 612, + 0, 1753, 0, + 0, 1890, 0, + 0, 2025, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2163, 0, 2044, + 2161, 0, 2041, + 2157, 0, 2037, + 2153, 0, 2033, + 2147, 0, 2026, + 2137, 0, 2017, + 2125, 195, 2005, + 2109, 522, 1988, + 2085, 760, 1964, + 2051, 958, 1930, + 2002, 1133, 1881, + 1927, 1295, 1805, + 1802, 1449, 1678, + 1551, 1596, 1422, + 0, 1739, 0, + 0, 1880, 0, + 0, 2018, 0, + 0, 2155, 0, + 0, 2289, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2291, 0, 2157, + 2289, 0, 2155, + 2287, 0, 2153, + 2283, 0, 2149, + 2279, 0, 2143, + 2271, 0, 2137, + 2263, 0, 2127, + 2251, 102, 2115, + 2233, 559, 2097, + 2209, 838, 2071, + 2175, 1055, 2035, + 2125, 1242, 1983, + 2049, 1412, 1901, + 1920, 1570, 1762, + 1658, 1720, 1466, + 0, 1866, 0, + 0, 2007, 0, + 0, 2147, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2421, 0, 2275, + 2419, 0, 2273, + 2417, 0, 2271, + 2415, 0, 2269, + 2411, 0, 2265, + 2405, 0, 2259, + 2399, 0, 2251, + 2389, 0, 2241, + 2377, 0, 2229, + 2359, 603, 2209, + 2335, 925, 2183, + 2301, 1160, 2147, + 2251, 1356, 2091, + 2173, 1531, 2004, + 2041, 1693, 1855, + 1771, 1846, 1520, + 0, 1993, 0, + 0, 2137, 0, + 0, 2277, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2551, 0, 2395, + 2549, 0, 2395, + 2547, 0, 2393, + 2545, 0, 2391, + 2543, 0, 2387, + 2539, 0, 2383, + 2533, 0, 2379, + 2527, 0, 2371, + 2517, 0, 2361, + 2505, 0, 2347, + 2487, 657, 2327, + 2463, 1020, 2301, + 2429, 1270, 2261, + 2377, 1475, 2205, + 2299, 1654, 2113, + 2165, 1818, 1955, + 1888, 1973, 1583, + 0, 2121, 0, + 0, 2265, 0, + 0, 2407, 0, + 0, 2545, 0, + 0, 2681, 0, + 0, 2817, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2681, 0, 2519, + 2679, 0, 2519, + 2679, 0, 2517, + 2677, 0, 2515, + 2675, 0, 2513, + 2673, 0, 2511, + 2669, 0, 2505, + 2663, 0, 2501, + 2657, 0, 2493, + 2647, 0, 2483, + 2635, 0, 2469, + 2617, 720, 2449, + 2593, 1122, 2421, + 2557, 1386, 2381, + 2505, 1596, 2321, + 2425, 1779, 2229, + 2291, 1946, 2061, + 2008, 2101, 1655, + 0, 2251, 0, + 0, 2397, 0, + 0, 2537, 0, + 0, 2677, 0, + 0, 2813, 0, + 0, 2949, 0, + 0, 3083, 0, + 0, 3219, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2811, 0, 2645, + 2811, 0, 2645, + 2809, 0, 2643, + 2809, 0, 2641, + 2807, 0, 2641, + 2805, 0, 2637, + 2803, 0, 2635, + 2799, 0, 2631, + 2793, 0, 2625, + 2787, 0, 2617, + 2777, 0, 2607, + 2765, 0, 2593, + 2747, 792, 2573, + 2721, 1230, 2545, + 2687, 1505, 2503, + 2635, 1720, 2443, + 2555, 1906, 2347, + 2417, 2073, 2173, + 2131, 2231, 1736, + 0, 2381, 0, + 0, 2527, 0, + 0, 2669, 0, + 0, 2807, 0, + 0, 2945, 0, + 0, 3081, 0, + 0, 3215, 0, + 0, 3351, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2943, 0, 2773, + 2941, 0, 2771, + 2941, 0, 2771, + 2941, 0, 2769, + 2939, 0, 2769, + 2937, 0, 2767, + 2935, 0, 2765, + 2933, 0, 2761, + 2929, 0, 2757, + 2923, 0, 2751, + 2917, 0, 2743, + 2907, 0, 2733, + 2895, 0, 2719, + 2877, 874, 2699, + 2853, 1344, 2669, + 2817, 1627, 2629, + 2765, 1846, 2567, + 2683, 2034, 2469, + 2547, 2203, 2291, + 2257, 2361, 1827, + 0, 2513, 0, + 0, 2657, 0, + 0, 2799, 0, + 0, 2939, 0, + 0, 3077, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3073, 0, 2901, + 3073, 0, 2901, + 3073, 0, 2899, + 3073, 0, 2899, + 3071, 0, 2897, + 3071, 0, 2897, + 3069, 0, 2895, + 3067, 0, 2893, + 3063, 0, 2889, + 3059, 0, 2885, + 3055, 0, 2879, + 3047, 0, 2871, + 3039, 0, 2861, + 3025, 0, 2847, + 3007, 964, 2825, + 2983, 1462, 2797, + 2947, 1751, 2755, + 2895, 1973, 2693, + 2813, 2163, 2593, + 2675, 2333, 2411, + 2383, 2493, 1925, + 0, 2643, 0, + 0, 2789, 0, + 0, 2931, 0, + 0, 3071, 0, + 0, 3209, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3205, 0, 3029, + 3205, 0, 3029, + 3205, 0, 3029, + 3205, 0, 3029, + 3203, 0, 3027, + 3203, 0, 3027, + 3201, 0, 3025, + 3199, 0, 3023, + 3197, 0, 3021, + 3195, 0, 3019, + 3191, 0, 3013, + 3187, 0, 3009, + 3179, 0, 3001, + 3169, 0, 2989, + 3157, 0, 2975, + 3139, 1062, 2955, + 3115, 1583, 2925, + 3079, 1877, 2883, + 3025, 2101, 2819, + 2945, 2293, 2719, + 2805, 2463, 2533, + 2513, 2623, 2030, + 0, 2775, 0, + 0, 2921, 0, + 0, 3063, 0, + 0, 3203, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3747, 0, + 0, 3879, 0, + 0, 4013, 0, + 3337, 0, 3159, + 3337, 0, 3159, + 3337, 0, 3159, + 3335, 0, 3159, + 3335, 0, 3159, + 3335, 0, 3157, + 3335, 0, 3157, + 3333, 0, 3155, + 3331, 0, 3153, + 3329, 0, 3151, + 3327, 0, 3149, + 3323, 0, 3143, + 3317, 0, 3137, + 3311, 0, 3129, + 3301, 0, 3119, + 3289, 0, 3105, + 3271, 1167, 3083, + 3245, 1707, 3055, + 3209, 2005, 3011, + 3157, 2231, 2947, + 3075, 2423, 2845, + 2937, 2595, 2659, + 2641, 2755, 2141, + 0, 2907, 0, + 0, 3053, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3879, 0, + 0, 4011, 0, + 3469, 0, 3291, + 3469, 0, 3291, + 3469, 0, 3291, + 3469, 0, 3289, + 3467, 0, 3289, + 3467, 0, 3289, + 3467, 0, 3289, + 3465, 0, 3287, + 3465, 0, 3285, + 3463, 0, 3283, + 3461, 0, 3281, + 3459, 0, 3279, + 3455, 0, 3275, + 3449, 0, 3269, + 3443, 0, 3261, + 3433, 0, 3249, + 3419, 0, 3235, + 3403, 1278, 3213, + 3377, 1832, 3183, + 3341, 2133, 3141, + 3289, 2361, 3077, + 3207, 2553, 2975, + 3067, 2725, 2785, + 2771, 2885, 2255, + 0, 3037, 0, + 0, 3185, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3601, 0, 3421, + 3601, 0, 3421, + 3601, 0, 3421, + 3601, 0, 3421, + 3599, 0, 3421, + 3599, 0, 3421, + 3599, 0, 3419, + 3599, 0, 3419, + 3597, 0, 3417, + 3597, 0, 3417, + 3595, 0, 3415, + 3593, 0, 3413, + 3589, 0, 3409, + 3587, 0, 3405, + 3581, 0, 3399, + 3573, 0, 3391, + 3565, 0, 3379, + 3551, 0, 3365, + 3533, 1393, 3345, + 3509, 1959, 3315, + 3473, 2263, 3271, + 3419, 2491, 3207, + 3339, 2685, 3103, + 3199, 2857, 2913, + 2901, 3017, 2375, + 0, 3169, 0, + 0, 3317, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3733, 0, 3553, + 3733, 0, 3553, + 3733, 0, 3553, + 3733, 0, 3553, + 3731, 0, 3553, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3729, 0, 3549, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3721, 0, 3541, + 3717, 0, 3535, + 3713, 0, 3531, + 3705, 0, 3521, + 3697, 0, 3511, + 3683, 0, 3495, + 3665, 1513, 3475, + 3641, 2087, 3445, + 3605, 2393, 3403, + 3551, 2623, 3337, + 3469, 2817, 3233, + 3331, 2989, 3043, + 3033, 3149, 2497, + 0, 3301, 0, + 0, 3449, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3683, + 3865, 0, 3683, + 3865, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3861, 0, 3681, + 3861, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3853, 0, 3671, + 3849, 0, 3667, + 3845, 0, 3661, + 3837, 0, 3653, + 3829, 0, 3643, + 3815, 0, 3627, + 3797, 1635, 3607, + 3773, 2217, 3577, + 3737, 2525, 3533, + 3683, 2755, 3469, + 3601, 2947, 3365, + 3461, 3121, 3173, + 3163, 3281, 2621, + 0, 3433, 0, + 0, 3581, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3813, + 3993, 0, 3811, + 3991, 0, 3809, + 3989, 0, 3807, + 3985, 0, 3803, + 3981, 0, 3799, + 3977, 0, 3793, + 3969, 0, 3785, + 3961, 0, 3773, + 3947, 0, 3759, + 3929, 1759, 3737, + 3905, 2347, 3707, + 3869, 2655, 3665, + 3815, 2885, 3599, + 3733, 3079, 3495, + 3593, 3253, 3303, + 3295, 3413, 2749, + 0, 3565, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3935, + 4095, 0, 3931, + 4095, 0, 3925, + 4095, 0, 3917, + 4093, 0, 3905, + 4079, 0, 3891, + 4061, 1886, 3869, + 4037, 2477, 3839, + 4001, 2787, 3797, + 3947, 3017, 3731, + 3865, 3211, 3627, + 3725, 3385, 3435, + 3427, 3545, 2877, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4069, + 4095, 0, 4067, + 4095, 0, 4063, + 4095, 0, 4057, + 4095, 0, 4049, + 4095, 0, 4037, + 4095, 0, 4023, + 4095, 2014, 4001, + 4095, 2609, 3971, + 4095, 2919, 3929, + 4079, 3149, 3863, + 3997, 3343, 3759, + 3857, 3517, 3565, + 3559, 3677, 3005, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2143, 4095, + 4095, 2741, 4095, + 4095, 3051, 4059, + 4095, 3281, 3995, + 4095, 3475, 3891, + 3989, 3649, 3697, + 3691, 3809, 3135, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2273, 4095, + 4095, 2871, 4095, + 4095, 3183, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3829, + 3823, 3941, 3265, + 1004, 617, 1393, + 969, 649, 1381, + 916, 689, 1366, + 836, 737, 1344, + 699, 794, 1313, + 412, 861, 1269, + 0, 937, 1201, + 0, 1022, 1091, + 0, 1116, 884, + 0, 1217, 213, + 0, 1324, 0, + 0, 1437, 0, + 0, 1554, 0, + 0, 1675, 0, + 0, 1798, 0, + 0, 1923, 0, + 0, 2051, 0, + 0, 2179, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1045, 612, 1405, + 1013, 645, 1394, + 966, 685, 1379, + 895, 733, 1358, + 777, 791, 1328, + 549, 858, 1284, + 0, 935, 1219, + 0, 1020, 1114, + 0, 1114, 920, + 0, 1216, 354, + 0, 1323, 0, + 0, 1436, 0, + 0, 1554, 0, + 0, 1674, 0, + 0, 1798, 0, + 0, 1923, 0, + 0, 2051, 0, + 0, 2179, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1095, 605, 1421, + 1066, 638, 1410, + 1025, 679, 1395, + 963, 728, 1375, + 864, 786, 1346, + 684, 854, 1305, + 209, 931, 1243, + 0, 1018, 1144, + 0, 1112, 965, + 0, 1214, 493, + 0, 1322, 0, + 0, 1435, 0, + 0, 1553, 0, + 0, 1674, 0, + 0, 1797, 0, + 0, 1923, 0, + 0, 2049, 0, + 0, 2179, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1154, 596, 1441, + 1129, 629, 1431, + 1093, 671, 1417, + 1040, 721, 1397, + 958, 780, 1370, + 818, 848, 1331, + 519, 927, 1272, + 0, 1014, 1180, + 0, 1109, 1018, + 0, 1211, 630, + 0, 1320, 0, + 0, 1434, 0, + 0, 1552, 0, + 0, 1673, 0, + 0, 1796, 0, + 0, 1922, 0, + 0, 2049, 0, + 0, 2179, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1223, 583, 1467, + 1202, 617, 1457, + 1171, 660, 1444, + 1127, 711, 1426, + 1060, 771, 1400, + 952, 841, 1363, + 750, 920, 1309, + 121, 1009, 1225, + 0, 1105, 1081, + 0, 1208, 765, + 0, 1317, 0, + 0, 1432, 0, + 0, 1550, 0, + 0, 1671, 0, + 0, 1796, 0, + 0, 1922, 0, + 0, 2049, 0, + 0, 2177, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1301, 565, 1499, + 1283, 601, 1490, + 1258, 645, 1478, + 1222, 697, 1461, + 1168, 759, 1437, + 1085, 831, 1404, + 944, 912, 1354, + 639, 1002, 1279, + 0, 1099, 1153, + 0, 1204, 900, + 0, 1314, 0, + 0, 1429, 0, + 0, 1548, 0, + 0, 1670, 0, + 0, 1794, 0, + 0, 1921, 0, + 0, 2049, 0, + 0, 2177, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1389, 540, 1539, + 1374, 578, 1531, + 1353, 624, 1520, + 1324, 679, 1504, + 1282, 743, 1483, + 1219, 817, 1452, + 1117, 900, 1408, + 933, 992, 1342, + 429, 1091, 1234, + 0, 1197, 1034, + 0, 1309, 419, + 0, 1425, 0, + 0, 1545, 0, + 0, 1668, 0, + 0, 1793, 0, + 0, 1919, 0, + 0, 2047, 0, + 0, 2177, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1484, 504, 1587, + 1472, 545, 1580, + 1456, 594, 1570, + 1432, 652, 1556, + 1400, 721, 1537, + 1351, 798, 1510, + 1278, 885, 1472, + 1157, 979, 1415, + 917, 1081, 1325, + 0, 1189, 1167, + 0, 1303, 802, + 0, 1420, 0, + 0, 1541, 0, + 0, 1665, 0, + 0, 1790, 0, + 0, 1918, 0, + 0, 2046, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1587, 451, 1645, + 1577, 497, 1639, + 1564, 551, 1630, + 1546, 615, 1618, + 1520, 688, 1601, + 1484, 771, 1578, + 1430, 862, 1545, + 1347, 961, 1497, + 1204, 1067, 1423, + 896, 1178, 1301, + 0, 1294, 1059, + 0, 1414, 0, + 0, 1536, 0, + 0, 1661, 0, + 0, 1788, 0, + 0, 1915, 0, + 0, 2044, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1695, 369, 1712, + 1688, 423, 1707, + 1678, 486, 1699, + 1664, 559, 1689, + 1644, 641, 1675, + 1617, 732, 1655, + 1577, 831, 1627, + 1518, 936, 1587, + 1425, 1047, 1528, + 1261, 1163, 1434, + 865, 1282, 1266, + 0, 1404, 856, + 0, 1529, 0, + 0, 1656, 0, + 0, 1784, 0, + 0, 1912, 0, + 0, 2042, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1809, 230, 1789, + 1803, 301, 1784, + 1795, 382, 1778, + 1785, 472, 1769, + 1770, 570, 1757, + 1749, 675, 1741, + 1720, 785, 1718, + 1678, 900, 1686, + 1614, 1019, 1638, + 1513, 1141, 1566, + 1328, 1266, 1448, + 821, 1392, 1216, + 0, 1520, 219, + 0, 1649, 0, + 0, 1778, 0, + 0, 1908, 0, + 0, 2039, 0, + 0, 2171, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1927, 0, 1875, + 1923, 61, 1871, + 1917, 191, 1865, + 1908, 322, 1858, + 1897, 453, 1849, + 1881, 584, 1835, + 1860, 716, 1817, + 1829, 847, 1791, + 1785, 979, 1754, + 1717, 1111, 1699, + 1608, 1243, 1613, + 1404, 1375, 1466, + 754, 1507, 1139, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2049, 0, 1969, + 2045, 0, 1966, + 2040, 0, 1961, + 2034, 0, 1955, + 2025, 225, 1948, + 2014, 425, 1937, + 1998, 602, 1922, + 1975, 765, 1902, + 1943, 919, 1873, + 1897, 1067, 1831, + 1827, 1210, 1769, + 1711, 1351, 1669, + 1489, 1489, 1489, + 646, 1625, 1009, + 0, 1761, 0, + 0, 1896, 0, + 0, 2029, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2173, 0, 2071, + 2169, 0, 2067, + 2165, 0, 2065, + 2161, 0, 2059, + 2155, 0, 2053, + 2145, 53, 2045, + 2135, 386, 2033, + 2117, 625, 2017, + 2095, 824, 1995, + 2061, 1000, 1964, + 2014, 1162, 1918, + 1941, 1316, 1848, + 1820, 1464, 1735, + 1582, 1607, 1518, + 443, 1747, 744, + 0, 1885, 0, + 0, 2022, 0, + 0, 2157, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2297, 0, 2177, + 2295, 0, 2175, + 2293, 0, 2173, + 2289, 0, 2169, + 2285, 0, 2165, + 2279, 0, 2159, + 2269, 0, 2149, + 2257, 327, 2137, + 2241, 655, 2119, + 2217, 892, 2097, + 2183, 1090, 2063, + 2135, 1265, 2013, + 2059, 1428, 1937, + 1934, 1581, 1810, + 1683, 1728, 1554, + 0, 1871, 0, + 0, 2012, 0, + 0, 2149, 0, + 0, 2287, 0, + 0, 2421, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2425, 0, 2291, + 2423, 0, 2289, + 2421, 0, 2287, + 2419, 0, 2285, + 2415, 0, 2281, + 2411, 0, 2275, + 2403, 0, 2269, + 2395, 0, 2259, + 2383, 234, 2247, + 2365, 691, 2229, + 2341, 970, 2203, + 2307, 1188, 2167, + 2257, 1374, 2115, + 2181, 1544, 2033, + 2051, 1702, 1894, + 1790, 1852, 1599, + 0, 1998, 0, + 0, 2139, 0, + 0, 2279, 0, + 0, 2417, 0, + 0, 2553, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2553, 0, 2409, + 2553, 0, 2407, + 2551, 0, 2405, + 2549, 0, 2403, + 2547, 0, 2401, + 2543, 0, 2397, + 2537, 0, 2391, + 2531, 0, 2383, + 2521, 0, 2375, + 2509, 69, 2361, + 2491, 735, 2343, + 2467, 1057, 2315, + 2433, 1292, 2279, + 2383, 1489, 2223, + 2305, 1663, 2137, + 2173, 1825, 1987, + 1903, 1978, 1652, + 0, 2125, 0, + 0, 2269, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2683, 0, 2529, + 2683, 0, 2527, + 2681, 0, 2527, + 2679, 0, 2525, + 2677, 0, 2523, + 2675, 0, 2519, + 2671, 0, 2515, + 2667, 0, 2511, + 2659, 0, 2503, + 2651, 0, 2493, + 2637, 0, 2479, + 2619, 789, 2459, + 2595, 1152, 2433, + 2561, 1403, 2395, + 2509, 1607, 2337, + 2431, 1786, 2245, + 2297, 1951, 2087, + 2020, 2105, 1715, + 0, 2253, 0, + 0, 2397, 0, + 0, 2539, 0, + 0, 2677, 0, + 0, 2815, 0, + 0, 2949, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2813, 0, 2653, + 2813, 0, 2651, + 2811, 0, 2651, + 2811, 0, 2649, + 2809, 0, 2647, + 2807, 0, 2645, + 2805, 0, 2643, + 2801, 0, 2639, + 2795, 0, 2633, + 2789, 0, 2625, + 2779, 0, 2615, + 2767, 0, 2601, + 2749, 852, 2581, + 2725, 1254, 2553, + 2689, 1518, 2513, + 2637, 1728, 2455, + 2557, 1911, 2361, + 2423, 2077, 2193, + 2141, 2235, 1787, + 0, 2383, 0, + 0, 2529, 0, + 0, 2669, 0, + 0, 2809, 0, + 0, 2945, 0, + 0, 3081, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2943, 0, 2777, + 2943, 0, 2777, + 2943, 0, 2777, + 2941, 0, 2775, + 2941, 0, 2775, + 2939, 0, 2773, + 2937, 0, 2771, + 2935, 0, 2767, + 2931, 0, 2763, + 2925, 0, 2757, + 2919, 0, 2749, + 2909, 0, 2739, + 2897, 0, 2725, + 2879, 924, 2705, + 2855, 1363, 2677, + 2819, 1637, 2635, + 2767, 1852, 2575, + 2687, 2038, 2479, + 2549, 2207, 2305, + 2263, 2363, 1869, + 0, 2513, 0, + 0, 2659, 0, + 0, 2801, 0, + 0, 2939, 0, + 0, 3077, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3483, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3075, 0, 2905, + 3075, 0, 2905, + 3073, 0, 2903, + 3073, 0, 2903, + 3073, 0, 2903, + 3071, 0, 2901, + 3069, 0, 2899, + 3067, 0, 2897, + 3065, 0, 2893, + 3061, 0, 2889, + 3055, 0, 2883, + 3049, 0, 2875, + 3039, 0, 2865, + 3027, 0, 2851, + 3009, 1006, 2831, + 2985, 1476, 2801, + 2949, 1759, 2761, + 2897, 1978, 2699, + 2815, 2165, 2601, + 2679, 2335, 2423, + 2389, 2493, 1959, + 0, 2645, 0, + 0, 2791, 0, + 0, 2931, 0, + 0, 3071, 0, + 0, 3209, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3615, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3205, 0, 3033, + 3205, 0, 3033, + 3205, 0, 3033, + 3205, 0, 3031, + 3205, 0, 3031, + 3203, 0, 3031, + 3203, 0, 3029, + 3201, 0, 3027, + 3199, 0, 3025, + 3195, 0, 3021, + 3193, 0, 3017, + 3187, 0, 3011, + 3181, 0, 3003, + 3171, 0, 2993, + 3157, 0, 2979, + 3141, 1096, 2957, + 3115, 1594, 2929, + 3079, 1883, 2887, + 3027, 2105, 2825, + 2945, 2295, 2725, + 2807, 2465, 2543, + 2515, 2625, 2057, + 0, 2775, 0, + 0, 2921, 0, + 0, 3063, 0, + 0, 3203, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3747, 0, + 0, 3879, 0, + 0, 4013, 0, + 3337, 0, 3163, + 3337, 0, 3163, + 3337, 0, 3161, + 3337, 0, 3161, + 3337, 0, 3161, + 3335, 0, 3161, + 3335, 0, 3159, + 3333, 0, 3157, + 3331, 0, 3155, + 3329, 0, 3153, + 3327, 0, 3151, + 3323, 0, 3147, + 3319, 0, 3141, + 3311, 0, 3133, + 3301, 0, 3121, + 3289, 0, 3107, + 3271, 1194, 3087, + 3247, 1715, 3057, + 3211, 2010, 3015, + 3157, 2233, 2951, + 3077, 2425, 2851, + 2937, 2595, 2665, + 2645, 2755, 2161, + 0, 2907, 0, + 0, 3053, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3879, 0, + 0, 4011, 0, + 3469, 0, 3293, + 3469, 0, 3293, + 3469, 0, 3291, + 3469, 0, 3291, + 3469, 0, 3291, + 3467, 0, 3291, + 3467, 0, 3289, + 3467, 0, 3289, + 3465, 0, 3287, + 3463, 0, 3285, + 3461, 0, 3283, + 3459, 0, 3281, + 3455, 0, 3275, + 3449, 0, 3269, + 3443, 0, 3263, + 3433, 0, 3251, + 3421, 0, 3237, + 3403, 1299, 3215, + 3377, 1839, 3187, + 3341, 2137, 3143, + 3289, 2363, 3079, + 3207, 2555, 2977, + 3069, 2727, 2791, + 2773, 2887, 2273, + 0, 3039, 0, + 0, 3185, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3601, 0, 3423, + 3601, 0, 3423, + 3601, 0, 3423, + 3601, 0, 3423, + 3601, 0, 3421, + 3599, 0, 3421, + 3599, 0, 3421, + 3599, 0, 3421, + 3597, 0, 3419, + 3597, 0, 3417, + 3595, 0, 3417, + 3593, 0, 3413, + 3591, 0, 3411, + 3587, 0, 3407, + 3581, 0, 3401, + 3575, 0, 3393, + 3565, 0, 3381, + 3553, 0, 3367, + 3535, 1410, 3345, + 3509, 1964, 3317, + 3473, 2267, 3273, + 3421, 2493, 3209, + 3339, 2685, 3107, + 3199, 2857, 2917, + 2903, 3019, 2389, + 0, 3169, 0, + 0, 3317, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3733, 0, 3553, + 3733, 0, 3553, + 3733, 0, 3553, + 3733, 0, 3553, + 3733, 0, 3553, + 3731, 0, 3553, + 3731, 0, 3553, + 3731, 0, 3551, + 3731, 0, 3551, + 3729, 0, 3551, + 3729, 0, 3549, + 3727, 0, 3547, + 3725, 0, 3545, + 3721, 0, 3541, + 3719, 0, 3537, + 3713, 0, 3531, + 3707, 0, 3523, + 3697, 0, 3513, + 3683, 0, 3497, + 3665, 1525, 3477, + 3641, 2091, 3447, + 3605, 2395, 3403, + 3553, 2625, 3339, + 3471, 2817, 3235, + 3331, 2989, 3045, + 3033, 3149, 2507, + 0, 3301, 0, + 0, 3449, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3861, 0, 3681, + 3861, 0, 3679, + 3859, 0, 3679, + 3857, 0, 3675, + 3853, 0, 3673, + 3851, 0, 3669, + 3845, 0, 3663, + 3837, 0, 3655, + 3829, 0, 3643, + 3815, 0, 3629, + 3797, 1645, 3607, + 3773, 2221, 3577, + 3737, 2527, 3535, + 3683, 2755, 3469, + 3601, 2949, 3367, + 3463, 3121, 3175, + 3165, 3281, 2629, + 0, 3433, 0, + 0, 3581, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3993, 0, 3813, + 3993, 0, 3811, + 3991, 0, 3809, + 3989, 0, 3807, + 3985, 0, 3803, + 3981, 0, 3799, + 3977, 0, 3793, + 3969, 0, 3785, + 3961, 0, 3775, + 3947, 0, 3759, + 3929, 1767, 3739, + 3905, 2349, 3709, + 3869, 2657, 3665, + 3815, 2887, 3601, + 3733, 3079, 3497, + 3593, 3253, 3305, + 3295, 3413, 2755, + 0, 3565, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3935, + 4095, 0, 3931, + 4095, 0, 3925, + 4095, 0, 3917, + 4093, 0, 3907, + 4079, 0, 3891, + 4061, 1892, 3869, + 4037, 2479, 3841, + 4001, 2787, 3797, + 3947, 3017, 3733, + 3865, 3211, 3627, + 3725, 3385, 3435, + 3427, 3545, 2881, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4067, + 4095, 0, 4063, + 4095, 0, 4057, + 4095, 0, 4049, + 4095, 0, 4037, + 4095, 0, 4023, + 4095, 2018, 4001, + 4095, 2611, 3971, + 4095, 2919, 3929, + 4079, 3149, 3863, + 3997, 3343, 3759, + 3857, 3517, 3567, + 3559, 3677, 3009, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2145, 4095, + 4095, 2741, 4095, + 4095, 3051, 4061, + 4095, 3281, 3995, + 4095, 3475, 3891, + 3989, 3649, 3697, + 3691, 3809, 3137, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2275, 4095, + 4095, 2873, 4095, + 4095, 3183, 4095, + 4095, 3413, 4095, + 4095, 3607, 4023, + 4095, 3781, 3829, + 3823, 3941, 3267, + 1129, 728, 1524, + 1102, 753, 1516, + 1064, 785, 1504, + 1008, 824, 1488, + 919, 872, 1466, + 763, 929, 1434, + 407, 995, 1388, + 0, 1071, 1319, + 0, 1156, 1205, + 0, 1249, 987, + 0, 1350, 201, + 0, 1457, 0, + 0, 1570, 0, + 0, 1687, 0, + 0, 1807, 0, + 0, 1930, 0, + 0, 2055, 0, + 0, 2183, 0, + 0, 2311, 0, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1161, 724, 1533, + 1136, 750, 1525, + 1100, 782, 1514, + 1048, 821, 1498, + 968, 869, 1476, + 832, 926, 1445, + 544, 993, 1401, + 0, 1069, 1333, + 0, 1154, 1223, + 0, 1248, 1016, + 0, 1349, 345, + 0, 1456, 0, + 0, 1569, 0, + 0, 1686, 0, + 0, 1807, 0, + 0, 1930, 0, + 0, 2055, 0, + 0, 2183, 0, + 0, 2311, 0, + 0, 2441, 0, + 0, 2569, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1200, 719, 1545, + 1177, 745, 1537, + 1145, 777, 1526, + 1098, 817, 1511, + 1026, 865, 1490, + 909, 923, 1460, + 681, 990, 1417, + 0, 1066, 1351, + 0, 1152, 1246, + 0, 1246, 1052, + 0, 1348, 486, + 0, 1455, 0, + 0, 1568, 0, + 0, 1686, 0, + 0, 1806, 0, + 0, 1930, 0, + 0, 2055, 0, + 0, 2183, 0, + 0, 2311, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1248, 711, 1561, + 1227, 738, 1553, + 1198, 770, 1542, + 1157, 811, 1528, + 1095, 860, 1507, + 996, 918, 1478, + 816, 986, 1437, + 341, 1063, 1375, + 0, 1149, 1276, + 0, 1244, 1097, + 0, 1346, 625, + 0, 1454, 0, + 0, 1567, 0, + 0, 1685, 0, + 0, 1806, 0, + 0, 1929, 0, + 0, 2055, 0, + 0, 2183, 0, + 0, 2311, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1304, 701, 1581, + 1286, 728, 1573, + 1261, 762, 1563, + 1225, 803, 1549, + 1172, 853, 1530, + 1090, 912, 1502, + 951, 981, 1463, + 651, 1058, 1405, + 0, 1146, 1312, + 0, 1241, 1150, + 0, 1343, 762, + 0, 1452, 0, + 0, 1566, 0, + 0, 1684, 0, + 0, 1805, 0, + 0, 1929, 0, + 0, 2055, 0, + 0, 2181, 0, + 0, 2311, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1371, 688, 1606, + 1355, 715, 1599, + 1334, 750, 1589, + 1303, 792, 1576, + 1259, 843, 1558, + 1192, 903, 1532, + 1084, 973, 1496, + 882, 1052, 1441, + 253, 1140, 1357, + 0, 1237, 1213, + 0, 1340, 897, + 0, 1449, 0, + 0, 1564, 0, + 0, 1682, 0, + 0, 1804, 0, + 0, 1928, 0, + 0, 2053, 0, + 0, 2181, 0, + 0, 2309, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1447, 669, 1638, + 1434, 697, 1631, + 1416, 733, 1622, + 1390, 777, 1610, + 1354, 829, 1593, + 1301, 891, 1569, + 1218, 963, 1536, + 1076, 1044, 1486, + 771, 1134, 1411, + 0, 1231, 1285, + 0, 1336, 1032, + 0, 1446, 0, + 0, 1561, 0, + 0, 1680, 0, + 0, 1802, 0, + 0, 1926, 0, + 0, 2053, 0, + 0, 2181, 0, + 0, 2309, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1532, 642, 1677, + 1521, 672, 1671, + 1506, 710, 1663, + 1485, 756, 1652, + 1456, 811, 1636, + 1414, 875, 1615, + 1351, 949, 1585, + 1249, 1032, 1541, + 1065, 1124, 1474, + 561, 1224, 1367, + 0, 1330, 1166, + 0, 1441, 551, + 0, 1557, 0, + 0, 1677, 0, + 0, 1800, 0, + 0, 1925, 0, + 0, 2051, 0, + 0, 2179, 0, + 0, 2309, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1625, 603, 1725, + 1616, 636, 1720, + 1604, 677, 1712, + 1588, 726, 1702, + 1565, 785, 1688, + 1532, 853, 1669, + 1484, 930, 1643, + 1410, 1017, 1604, + 1289, 1111, 1547, + 1049, 1213, 1457, + 0, 1321, 1300, + 0, 1435, 934, + 0, 1552, 0, + 0, 1673, 0, + 0, 1797, 0, + 0, 1923, 0, + 0, 2049, 0, + 0, 2179, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1726, 546, 1782, + 1719, 583, 1777, + 1709, 629, 1771, + 1696, 683, 1762, + 1678, 747, 1750, + 1653, 820, 1733, + 1616, 903, 1710, + 1563, 994, 1677, + 1479, 1093, 1629, + 1336, 1199, 1555, + 1028, 1310, 1433, + 0, 1426, 1191, + 0, 1546, 0, + 0, 1668, 0, + 0, 1793, 0, + 0, 1920, 0, + 0, 2047, 0, + 0, 2177, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1833, 456, 1848, + 1827, 501, 1844, + 1820, 555, 1839, + 1810, 618, 1831, + 1796, 691, 1821, + 1776, 774, 1807, + 1749, 864, 1787, + 1709, 963, 1759, + 1650, 1068, 1719, + 1558, 1179, 1660, + 1393, 1295, 1566, + 997, 1414, 1398, + 0, 1537, 988, + 0, 1661, 0, + 0, 1788, 0, + 0, 1916, 0, + 0, 2045, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1946, 299, 1925, + 1941, 362, 1921, + 1935, 433, 1916, + 1928, 514, 1910, + 1917, 604, 1901, + 1902, 702, 1889, + 1881, 807, 1873, + 1852, 917, 1850, + 1810, 1032, 1818, + 1746, 1151, 1771, + 1645, 1273, 1698, + 1460, 1398, 1580, + 953, 1524, 1348, + 0, 1652, 351, + 0, 1781, 0, + 0, 1910, 0, + 0, 2041, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2063, 0, 2010, + 2059, 63, 2007, + 2055, 193, 2003, + 2049, 323, 1998, + 2040, 454, 1990, + 2029, 585, 1981, + 2014, 716, 1967, + 1992, 848, 1949, + 1961, 979, 1923, + 1917, 1111, 1886, + 1850, 1243, 1831, + 1740, 1375, 1745, + 1536, 1507, 1598, + 886, 1639, 1271, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2183, 0, 2103, + 2181, 0, 2101, + 2177, 0, 2097, + 2173, 0, 2093, + 2167, 115, 2087, + 2157, 358, 2079, + 2145, 557, 2069, + 2129, 734, 2055, + 2107, 897, 2034, + 2075, 1051, 2005, + 2029, 1199, 1964, + 1959, 1342, 1901, + 1843, 1483, 1801, + 1621, 1621, 1621, + 778, 1758, 1141, + 0, 1893, 0, + 0, 2028, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2307, 0, 2205, + 2305, 0, 2203, + 2301, 0, 2199, + 2299, 0, 2197, + 2293, 0, 2191, + 2287, 0, 2185, + 2279, 185, 2177, + 2267, 518, 2165, + 2249, 757, 2149, + 2227, 956, 2127, + 2193, 1132, 2095, + 2145, 1295, 2051, + 2073, 1448, 1981, + 1952, 1596, 1867, + 1714, 1739, 1650, + 575, 1879, 876, + 0, 2018, 0, + 0, 2155, 0, + 0, 2289, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2431, 0, 2311, + 2429, 0, 2309, + 2427, 0, 2307, + 2425, 0, 2305, + 2421, 0, 2301, + 2417, 0, 2297, + 2411, 0, 2291, + 2401, 0, 2281, + 2389, 459, 2269, + 2373, 787, 2251, + 2349, 1024, 2229, + 2315, 1222, 2195, + 2267, 1398, 2145, + 2191, 1560, 2069, + 2065, 1713, 1942, + 1815, 1860, 1686, + 0, 2004, 0, + 0, 2143, 0, + 0, 2281, 0, + 0, 2419, 0, + 0, 2553, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2559, 0, 2425, + 2557, 0, 2423, + 2555, 0, 2421, + 2553, 0, 2419, + 2551, 0, 2417, + 2547, 0, 2413, + 2543, 0, 2407, + 2535, 0, 2401, + 2527, 0, 2391, + 2515, 366, 2379, + 2497, 823, 2361, + 2473, 1102, 2335, + 2439, 1320, 2299, + 2389, 1507, 2247, + 2313, 1676, 2165, + 2183, 1834, 2026, + 1923, 1984, 1731, + 0, 2129, 0, + 0, 2271, 0, + 0, 2411, 0, + 0, 2549, 0, + 0, 2685, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2687, 0, 2541, + 2685, 0, 2541, + 2685, 0, 2539, + 2683, 0, 2537, + 2681, 0, 2535, + 2679, 0, 2533, + 2675, 0, 2529, + 2669, 0, 2523, + 2663, 0, 2515, + 2653, 0, 2507, + 2641, 201, 2493, + 2625, 868, 2475, + 2599, 1189, 2449, + 2565, 1424, 2411, + 2515, 1621, 2355, + 2437, 1796, 2269, + 2305, 1957, 2119, + 2035, 2111, 1784, + 0, 2257, 0, + 0, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2815, 0, 2661, + 2815, 0, 2661, + 2815, 0, 2659, + 2813, 0, 2659, + 2811, 0, 2657, + 2809, 0, 2655, + 2807, 0, 2651, + 2803, 0, 2647, + 2799, 0, 2643, + 2791, 0, 2635, + 2783, 0, 2625, + 2769, 0, 2611, + 2753, 921, 2591, + 2727, 1284, 2565, + 2693, 1535, 2527, + 2641, 1739, 2469, + 2563, 1918, 2379, + 2429, 2083, 2219, + 2153, 2237, 1847, + 0, 2387, 0, + 0, 2531, 0, + 0, 2671, 0, + 0, 2809, 0, + 0, 2947, 0, + 0, 3081, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2945, 0, 2785, + 2945, 0, 2785, + 2945, 0, 2783, + 2943, 0, 2783, + 2943, 0, 2781, + 2941, 0, 2779, + 2939, 0, 2777, + 2937, 0, 2775, + 2933, 0, 2771, + 2927, 0, 2765, + 2921, 0, 2757, + 2911, 0, 2747, + 2899, 0, 2733, + 2881, 984, 2713, + 2857, 1386, 2685, + 2821, 1650, 2645, + 2769, 1860, 2587, + 2689, 2043, 2493, + 2555, 2209, 2325, + 2273, 2367, 1919, + 0, 2515, 0, + 0, 2661, 0, + 0, 2801, 0, + 0, 2941, 0, + 0, 3077, 0, + 0, 3213, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3077, 0, 2911, + 3075, 0, 2909, + 3075, 0, 2909, + 3075, 0, 2909, + 3073, 0, 2907, + 3073, 0, 2907, + 3071, 0, 2905, + 3069, 0, 2903, + 3067, 0, 2899, + 3063, 0, 2895, + 3057, 0, 2889, + 3051, 0, 2881, + 3041, 0, 2871, + 3029, 0, 2857, + 3011, 1056, 2837, + 2987, 1495, 2809, + 2951, 1769, 2767, + 2899, 1984, 2707, + 2819, 2169, 2611, + 2683, 2339, 2439, + 2395, 2495, 2001, + 0, 2645, 0, + 0, 2791, 0, + 0, 2933, 0, + 0, 3071, 0, + 0, 3209, 0, + 0, 3345, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3207, 0, 3037, + 3207, 0, 3037, + 3207, 0, 3037, + 3207, 0, 3035, + 3205, 0, 3035, + 3205, 0, 3035, + 3203, 0, 3033, + 3201, 0, 3031, + 3199, 0, 3029, + 3197, 0, 3025, + 3193, 0, 3021, + 3189, 0, 3015, + 3181, 0, 3007, + 3171, 0, 2997, + 3159, 0, 2983, + 3141, 1138, 2963, + 3117, 1608, 2933, + 3081, 1891, 2893, + 3029, 2111, 2831, + 2947, 2297, 2733, + 2811, 2467, 2555, + 2521, 2625, 2091, + 0, 2777, 0, + 0, 2923, 0, + 0, 3065, 0, + 0, 3203, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3747, 0, + 0, 3879, 0, + 0, 4013, 0, + 3339, 0, 3165, + 3339, 0, 3165, + 3337, 0, 3165, + 3337, 0, 3165, + 3337, 0, 3163, + 3337, 0, 3163, + 3335, 0, 3163, + 3335, 0, 3161, + 3333, 0, 3159, + 3331, 0, 3157, + 3327, 0, 3153, + 3325, 0, 3149, + 3319, 0, 3143, + 3313, 0, 3135, + 3303, 0, 3125, + 3289, 0, 3111, + 3273, 1228, 3089, + 3247, 1726, 3061, + 3211, 2015, 3019, + 3159, 2237, 2957, + 3077, 2427, 2857, + 2941, 2597, 2675, + 2649, 2757, 2189, + 0, 2907, 0, + 0, 3053, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3879, 0, + 0, 4013, 0, + 3469, 0, 3295, + 3469, 0, 3295, + 3469, 0, 3295, + 3469, 0, 3293, + 3469, 0, 3293, + 3469, 0, 3293, + 3467, 0, 3293, + 3467, 0, 3291, + 3465, 0, 3289, + 3465, 0, 3289, + 3461, 0, 3285, + 3459, 0, 3283, + 3455, 0, 3279, + 3451, 0, 3273, + 3443, 0, 3265, + 3435, 0, 3253, + 3421, 0, 3239, + 3403, 1326, 3219, + 3379, 1847, 3189, + 3343, 2141, 3147, + 3291, 2365, 3083, + 3209, 2557, 2983, + 3071, 2727, 2797, + 2777, 2887, 2295, + 0, 3039, 0, + 0, 3185, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3601, 0, 3425, + 3601, 0, 3425, + 3601, 0, 3425, + 3601, 0, 3423, + 3601, 0, 3423, + 3601, 0, 3423, + 3599, 0, 3423, + 3599, 0, 3421, + 3599, 0, 3421, + 3597, 0, 3419, + 3595, 0, 3417, + 3593, 0, 3415, + 3591, 0, 3413, + 3587, 0, 3407, + 3581, 0, 3403, + 3575, 0, 3395, + 3565, 0, 3383, + 3553, 0, 3369, + 3535, 1431, 3347, + 3509, 1971, 3319, + 3473, 2269, 3275, + 3421, 2495, 3213, + 3339, 2687, 3109, + 3201, 2859, 2923, + 2905, 3019, 2405, + 0, 3171, 0, + 0, 3317, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3733, 0, 3555, + 3733, 0, 3555, + 3733, 0, 3555, + 3733, 0, 3555, + 3733, 0, 3555, + 3733, 0, 3555, + 3731, 0, 3553, + 3731, 0, 3553, + 3731, 0, 3553, + 3729, 0, 3551, + 3729, 0, 3551, + 3727, 0, 3549, + 3725, 0, 3545, + 3723, 0, 3543, + 3719, 0, 3539, + 3713, 0, 3533, + 3707, 0, 3525, + 3697, 0, 3513, + 3685, 0, 3499, + 3667, 1542, 3477, + 3641, 2097, 3449, + 3605, 2399, 3405, + 3553, 2625, 3341, + 3471, 2817, 3239, + 3331, 2991, 3049, + 3035, 3151, 2521, + 0, 3303, 0, + 0, 3449, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3863, 0, 3685, + 3863, 0, 3683, + 3863, 0, 3683, + 3861, 0, 3683, + 3861, 0, 3681, + 3859, 0, 3679, + 3857, 0, 3677, + 3855, 0, 3673, + 3851, 0, 3669, + 3845, 0, 3663, + 3839, 0, 3655, + 3829, 0, 3645, + 3815, 0, 3629, + 3797, 1658, 3609, + 3773, 2223, 3579, + 3737, 2527, 3535, + 3685, 2757, 3471, + 3603, 2949, 3369, + 3463, 3121, 3177, + 3165, 3281, 2639, + 0, 3433, 0, + 0, 3581, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3995, 0, 3817, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3993, 0, 3813, + 3993, 0, 3811, + 3991, 0, 3811, + 3989, 0, 3807, + 3985, 0, 3805, + 3983, 0, 3801, + 3977, 0, 3795, + 3971, 0, 3787, + 3961, 0, 3775, + 3947, 0, 3761, + 3929, 1777, 3739, + 3905, 2353, 3709, + 3869, 2659, 3667, + 3815, 2887, 3603, + 3733, 3081, 3499, + 3595, 3253, 3307, + 3297, 3413, 2761, + 0, 3565, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3935, + 4095, 0, 3931, + 4095, 0, 3925, + 4095, 0, 3917, + 4093, 0, 3907, + 4079, 0, 3891, + 4061, 1899, 3871, + 4037, 2481, 3841, + 4001, 2789, 3797, + 3947, 3019, 3733, + 3865, 3211, 3629, + 3727, 3385, 3437, + 3429, 3545, 2887, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4067, + 4095, 0, 4063, + 4095, 0, 4057, + 4095, 0, 4049, + 4095, 0, 4039, + 4095, 0, 4023, + 4095, 2024, 4001, + 4095, 2611, 3973, + 4095, 2919, 3929, + 4079, 3149, 3865, + 3997, 3343, 3759, + 3857, 3517, 3567, + 3559, 3677, 3013, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2151, 4095, + 4095, 2743, 4095, + 4095, 3051, 4061, + 4095, 3281, 3995, + 4095, 3475, 3891, + 3989, 3649, 3699, + 3691, 3809, 3141, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2277, 4095, + 4095, 2873, 4095, + 4095, 3183, 4095, + 4095, 3413, 4095, + 4095, 3607, 4023, + 4095, 3781, 3829, + 3823, 3941, 3269, + 1256, 844, 1656, + 1236, 863, 1649, + 1208, 888, 1641, + 1167, 920, 1629, + 1106, 959, 1613, + 1010, 1006, 1590, + 837, 1063, 1558, + 399, 1129, 1511, + 0, 1204, 1440, + 0, 1289, 1323, + 0, 1382, 1096, + 0, 1483, 185, + 0, 1590, 0, + 0, 1702, 0, + 0, 1819, 0, + 0, 1940, 0, + 0, 2063, 0, + 0, 2189, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1280, 840, 1662, + 1261, 860, 1656, + 1234, 886, 1648, + 1196, 917, 1636, + 1139, 957, 1620, + 1050, 1004, 1598, + 896, 1061, 1566, + 539, 1127, 1520, + 0, 1203, 1451, + 0, 1288, 1337, + 0, 1381, 1119, + 0, 1482, 333, + 0, 1589, 0, + 0, 1702, 0, + 0, 1819, 0, + 0, 1939, 0, + 0, 2063, 0, + 0, 2187, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1310, 836, 1671, + 1293, 856, 1665, + 1268, 882, 1657, + 1233, 914, 1646, + 1180, 953, 1630, + 1100, 1001, 1608, + 964, 1058, 1578, + 676, 1125, 1533, + 0, 1201, 1465, + 0, 1286, 1355, + 0, 1380, 1148, + 0, 1481, 478, + 0, 1589, 0, + 0, 1701, 0, + 0, 1818, 0, + 0, 1939, 0, + 0, 2063, 0, + 0, 2187, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1348, 831, 1683, + 1332, 851, 1677, + 1309, 877, 1669, + 1277, 909, 1658, + 1230, 949, 1643, + 1159, 997, 1622, + 1041, 1055, 1592, + 813, 1122, 1549, + 0, 1199, 1483, + 0, 1284, 1378, + 0, 1378, 1184, + 0, 1480, 618, + 0, 1588, 0, + 0, 1701, 0, + 0, 1818, 0, + 0, 1938, 0, + 0, 2061, 0, + 0, 2187, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1394, 823, 1698, + 1380, 844, 1693, + 1359, 870, 1685, + 1331, 903, 1674, + 1289, 943, 1660, + 1227, 992, 1639, + 1128, 1050, 1611, + 948, 1118, 1569, + 474, 1195, 1507, + 0, 1282, 1408, + 0, 1376, 1229, + 0, 1478, 757, + 0, 1586, 0, + 0, 1699, 0, + 0, 1817, 0, + 0, 1938, 0, + 0, 2061, 0, + 0, 2187, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1449, 812, 1718, + 1437, 834, 1713, + 1419, 860, 1705, + 1393, 894, 1695, + 1358, 935, 1681, + 1305, 985, 1662, + 1222, 1044, 1634, + 1082, 1112, 1595, + 784, 1191, 1537, + 0, 1278, 1445, + 0, 1373, 1282, + 0, 1476, 894, + 0, 1584, 0, + 0, 1698, 0, + 0, 1816, 0, + 0, 1937, 0, + 0, 2061, 0, + 0, 2187, 0, + 0, 2313, 0, + 0, 2443, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1514, 798, 1743, + 1503, 820, 1738, + 1487, 847, 1731, + 1466, 882, 1721, + 1435, 924, 1708, + 1391, 975, 1690, + 1324, 1035, 1664, + 1216, 1105, 1628, + 1014, 1184, 1574, + 385, 1273, 1489, + 0, 1369, 1345, + 0, 1472, 1029, + 0, 1582, 0, + 0, 1696, 0, + 0, 1814, 0, + 0, 1936, 0, + 0, 2059, 0, + 0, 2185, 0, + 0, 2313, 0, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1588, 778, 1775, + 1579, 801, 1770, + 1566, 829, 1763, + 1548, 865, 1754, + 1522, 909, 1742, + 1486, 962, 1725, + 1433, 1023, 1702, + 1350, 1095, 1668, + 1208, 1176, 1619, + 903, 1266, 1543, + 0, 1363, 1417, + 0, 1468, 1164, + 0, 1578, 0, + 0, 1693, 0, + 0, 1812, 0, + 0, 1934, 0, + 0, 2059, 0, + 0, 2185, 0, + 0, 2313, 0, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1672, 750, 1814, + 1664, 774, 1809, + 1653, 804, 1803, + 1638, 842, 1795, + 1617, 888, 1784, + 1588, 943, 1768, + 1546, 1007, 1747, + 1483, 1081, 1717, + 1382, 1164, 1673, + 1197, 1256, 1606, + 693, 1356, 1499, + 0, 1462, 1298, + 0, 1573, 683, + 0, 1689, 0, + 0, 1809, 0, + 0, 1932, 0, + 0, 2057, 0, + 0, 2183, 0, + 0, 2311, 0, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1764, 709, 1861, + 1757, 735, 1857, + 1748, 768, 1852, + 1736, 809, 1844, + 1720, 858, 1834, + 1697, 917, 1821, + 1664, 985, 1801, + 1616, 1062, 1775, + 1542, 1149, 1736, + 1421, 1243, 1679, + 1181, 1345, 1589, + 0, 1454, 1432, + 0, 1567, 1066, + 0, 1685, 0, + 0, 1805, 0, + 0, 1929, 0, + 0, 2055, 0, + 0, 2181, 0, + 0, 2311, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1863, 648, 1918, + 1858, 678, 1914, + 1851, 715, 1909, + 1841, 761, 1903, + 1828, 815, 1894, + 1810, 879, 1882, + 1785, 953, 1865, + 1748, 1035, 1842, + 1695, 1126, 1809, + 1611, 1225, 1761, + 1469, 1331, 1687, + 1160, 1442, 1565, + 0, 1558, 1323, + 0, 1678, 55, + 0, 1800, 0, + 0, 1925, 0, + 0, 2051, 0, + 0, 2179, 0, + 0, 2309, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1969, 552, 1984, + 1965, 588, 1981, + 1960, 633, 1976, + 1952, 687, 1971, + 1942, 751, 1963, + 1928, 824, 1953, + 1908, 906, 1939, + 1881, 997, 1919, + 1841, 1095, 1891, + 1783, 1200, 1852, + 1690, 1311, 1792, + 1526, 1427, 1698, + 1129, 1546, 1531, + 0, 1669, 1120, + 0, 1793, 0, + 0, 1920, 0, + 0, 2047, 0, + 0, 2177, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2081, 379, 2059, + 2077, 431, 2057, + 2073, 494, 2053, + 2067, 565, 2049, + 2059, 647, 2042, + 2049, 737, 2033, + 2034, 834, 2022, + 2013, 939, 2005, + 1984, 1049, 1982, + 1942, 1164, 1950, + 1879, 1283, 1903, + 1777, 1405, 1831, + 1592, 1530, 1712, + 1085, 1656, 1480, + 0, 1784, 483, + 0, 1913, 0, + 0, 2042, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2197, 0, 2143, + 2195, 67, 2141, + 2191, 195, 2139, + 2187, 325, 2135, + 2181, 455, 2129, + 2173, 586, 2123, + 2161, 717, 2113, + 2145, 848, 2099, + 2125, 980, 2081, + 2093, 1111, 2055, + 2049, 1243, 2018, + 1982, 1375, 1963, + 1873, 1507, 1878, + 1668, 1639, 1730, + 1018, 1771, 1403, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2317, 0, 2237, + 2315, 0, 2235, + 2313, 0, 2233, + 2309, 0, 2229, + 2305, 0, 2225, + 2299, 247, 2219, + 2289, 490, 2211, + 2279, 689, 2201, + 2261, 866, 2187, + 2239, 1029, 2167, + 2207, 1183, 2137, + 2161, 1331, 2095, + 2091, 1474, 2033, + 1975, 1615, 1934, + 1753, 1753, 1753, + 910, 1890, 1273, + 0, 2025, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2439, 0, 2337, + 2439, 0, 2337, + 2437, 0, 2335, + 2433, 0, 2331, + 2431, 0, 2329, + 2425, 0, 2323, + 2419, 0, 2317, + 2411, 317, 2309, + 2399, 650, 2297, + 2381, 890, 2281, + 2359, 1088, 2259, + 2325, 1264, 2229, + 2279, 1427, 2183, + 2205, 1580, 2113, + 2085, 1728, 1999, + 1846, 1871, 1782, + 707, 2011, 1008, + 0, 2149, 0, + 0, 2287, 0, + 0, 2421, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2565, 0, 2445, + 2563, 0, 2443, + 2563, 0, 2443, + 2561, 0, 2441, + 2557, 0, 2437, + 2553, 0, 2433, + 2549, 0, 2429, + 2543, 0, 2423, + 2533, 0, 2413, + 2521, 591, 2401, + 2505, 919, 2385, + 2481, 1156, 2361, + 2447, 1354, 2327, + 2399, 1530, 2277, + 2323, 1692, 2201, + 2199, 1845, 2075, + 1947, 1993, 1818, + 74, 2135, 0, + 0, 2275, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2691, 0, 2557, + 2691, 0, 2557, + 2689, 0, 2555, + 2687, 0, 2553, + 2685, 0, 2551, + 2683, 0, 2549, + 2679, 0, 2545, + 2675, 0, 2539, + 2669, 0, 2533, + 2659, 0, 2523, + 2647, 498, 2511, + 2629, 955, 2493, + 2605, 1234, 2467, + 2571, 1452, 2431, + 2521, 1639, 2379, + 2445, 1808, 2297, + 2315, 1966, 2159, + 2055, 2117, 1863, + 0, 2261, 0, + 0, 2403, 0, + 0, 2543, 0, + 0, 2681, 0, + 0, 2817, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2819, 0, 2673, + 2819, 0, 2673, + 2817, 0, 2673, + 2817, 0, 2671, + 2815, 0, 2669, + 2813, 0, 2667, + 2811, 0, 2665, + 2807, 0, 2661, + 2801, 0, 2655, + 2795, 0, 2649, + 2787, 0, 2639, + 2773, 333, 2625, + 2757, 1000, 2607, + 2731, 1321, 2581, + 2697, 1556, 2543, + 2647, 1753, 2487, + 2569, 1928, 2401, + 2437, 2089, 2251, + 2167, 2243, 1916, + 0, 2389, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2949, 0, 2795, + 2947, 0, 2793, + 2947, 0, 2793, + 2947, 0, 2793, + 2945, 0, 2791, + 2943, 0, 2789, + 2941, 0, 2787, + 2939, 0, 2783, + 2935, 0, 2779, + 2931, 0, 2775, + 2923, 0, 2767, + 2915, 0, 2757, + 2901, 0, 2743, + 2885, 1053, 2725, + 2859, 1416, 2697, + 2825, 1667, 2659, + 2773, 1871, 2601, + 2695, 2051, 2511, + 2561, 2215, 2351, + 2285, 2369, 1979, + 0, 2519, 0, + 0, 2663, 0, + 0, 2803, 0, + 0, 2941, 0, + 0, 3079, 0, + 0, 3213, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3079, 0, 2917, + 3077, 0, 2917, + 3077, 0, 2917, + 3077, 0, 2915, + 3075, 0, 2915, + 3075, 0, 2913, + 3073, 0, 2911, + 3071, 0, 2909, + 3069, 0, 2907, + 3065, 0, 2903, + 3059, 0, 2897, + 3053, 0, 2889, + 3043, 0, 2879, + 3031, 0, 2865, + 3013, 1116, 2845, + 2989, 1518, 2817, + 2953, 1782, 2777, + 2901, 1992, 2719, + 2821, 2175, 2625, + 2687, 2341, 2459, + 2405, 2499, 2051, + 0, 2647, 0, + 0, 2793, 0, + 0, 2933, 0, + 0, 3073, 0, + 0, 3209, 0, + 0, 3345, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3209, 0, 3043, + 3209, 0, 3043, + 3209, 0, 3041, + 3207, 0, 3041, + 3207, 0, 3041, + 3207, 0, 3039, + 3205, 0, 3039, + 3203, 0, 3037, + 3201, 0, 3035, + 3199, 0, 3031, + 3195, 0, 3027, + 3189, 0, 3021, + 3183, 0, 3013, + 3173, 0, 3003, + 3161, 0, 2989, + 3143, 1188, 2969, + 3119, 1627, 2941, + 3083, 1901, 2901, + 3031, 2117, 2839, + 2951, 2301, 2743, + 2815, 2471, 2571, + 2527, 2627, 2133, + 0, 2777, 0, + 0, 2923, 0, + 0, 3065, 0, + 0, 3203, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3339, 0, 3169, + 3339, 0, 3169, + 3339, 0, 3169, + 3339, 0, 3169, + 3339, 0, 3169, + 3337, 0, 3167, + 3337, 0, 3167, + 3335, 0, 3165, + 3333, 0, 3163, + 3331, 0, 3161, + 3329, 0, 3157, + 3325, 0, 3153, + 3321, 0, 3147, + 3313, 0, 3141, + 3305, 0, 3129, + 3291, 0, 3115, + 3273, 1270, 3095, + 3249, 1740, 3067, + 3213, 2023, 3025, + 3161, 2243, 2963, + 3079, 2429, 2865, + 2943, 2599, 2687, + 2653, 2757, 2223, + 0, 2909, 0, + 0, 3055, 0, + 0, 3197, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3471, 0, 3297, + 3471, 0, 3297, + 3471, 0, 3297, + 3469, 0, 3297, + 3469, 0, 3297, + 3469, 0, 3297, + 3469, 0, 3295, + 3467, 0, 3295, + 3467, 0, 3293, + 3465, 0, 3291, + 3463, 0, 3289, + 3461, 0, 3285, + 3457, 0, 3281, + 3451, 0, 3275, + 3445, 0, 3267, + 3435, 0, 3257, + 3423, 0, 3243, + 3405, 1360, 3221, + 3379, 1858, 3193, + 3343, 2147, 3151, + 3291, 2369, 3089, + 3211, 2559, 2989, + 3073, 2729, 2807, + 2781, 2889, 2321, + 0, 3039, 0, + 0, 3185, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3877, 0, + 0, 4011, 0, + 3601, 0, 3427, + 3601, 0, 3427, + 3601, 0, 3427, + 3601, 0, 3427, + 3601, 0, 3427, + 3601, 0, 3425, + 3601, 0, 3425, + 3599, 0, 3425, + 3599, 0, 3423, + 3597, 0, 3423, + 3597, 0, 3421, + 3595, 0, 3417, + 3591, 0, 3415, + 3587, 0, 3411, + 3583, 0, 3405, + 3575, 0, 3397, + 3567, 0, 3385, + 3553, 0, 3371, + 3535, 1458, 3351, + 3511, 1979, 3321, + 3475, 2273, 3279, + 3423, 2499, 3215, + 3341, 2689, 3115, + 3203, 2861, 2929, + 2909, 3019, 2427, + 0, 3171, 0, + 0, 3317, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4009, 0, + 3733, 0, 3557, + 3733, 0, 3557, + 3733, 0, 3557, + 3733, 0, 3557, + 3733, 0, 3557, + 3733, 0, 3555, + 3733, 0, 3555, + 3731, 0, 3555, + 3731, 0, 3555, + 3731, 0, 3553, + 3729, 0, 3551, + 3727, 0, 3551, + 3725, 0, 3547, + 3723, 0, 3545, + 3719, 0, 3541, + 3713, 0, 3535, + 3707, 0, 3527, + 3697, 0, 3515, + 3685, 0, 3501, + 3667, 1564, 3479, + 3641, 2103, 3451, + 3607, 2401, 3409, + 3553, 2627, 3345, + 3471, 2819, 3243, + 3333, 2991, 3055, + 3037, 3151, 2537, + 0, 3303, 0, + 0, 3449, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3685, + 3863, 0, 3685, + 3863, 0, 3685, + 3863, 0, 3683, + 3861, 0, 3683, + 3859, 0, 3681, + 3857, 0, 3677, + 3855, 0, 3675, + 3851, 0, 3671, + 3845, 0, 3665, + 3839, 0, 3657, + 3829, 0, 3645, + 3817, 0, 3631, + 3799, 1674, 3609, + 3773, 2229, 3581, + 3737, 2531, 3537, + 3685, 2757, 3473, + 3603, 2949, 3371, + 3463, 3123, 3181, + 3167, 3283, 2653, + 0, 3435, 0, + 0, 3581, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3995, 0, 3817, + 3995, 0, 3817, + 3995, 0, 3815, + 3993, 0, 3815, + 3993, 0, 3813, + 3991, 0, 3811, + 3989, 0, 3809, + 3987, 0, 3805, + 3983, 0, 3801, + 3977, 0, 3795, + 3971, 0, 3787, + 3961, 0, 3777, + 3949, 0, 3761, + 3931, 1790, 3741, + 3905, 2355, 3711, + 3869, 2661, 3669, + 3817, 2889, 3603, + 3735, 3081, 3501, + 3595, 3253, 3311, + 3299, 3413, 2771, + 0, 3567, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3927, + 4095, 0, 3919, + 4093, 0, 3907, + 4079, 0, 3893, + 4061, 1909, 3871, + 4037, 2485, 3841, + 4001, 2791, 3799, + 3949, 3019, 3735, + 3867, 3213, 3631, + 3727, 3385, 3439, + 3429, 3545, 2893, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4063, + 4095, 0, 4057, + 4095, 0, 4049, + 4095, 0, 4039, + 4095, 0, 4023, + 4095, 2031, 4003, + 4095, 2613, 3973, + 4095, 2921, 3929, + 4079, 3151, 3865, + 3997, 3343, 3761, + 3859, 3517, 3569, + 3561, 3677, 3019, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2155, 4095, + 4095, 2743, 4095, + 4095, 3053, 4061, + 4095, 3283, 3997, + 4095, 3475, 3893, + 3989, 3649, 3699, + 3691, 3809, 3145, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2283, 4095, + 4095, 2875, 4095, + 4095, 3183, 4095, + 4095, 3413, 4095, + 4095, 3607, 4023, + 4095, 3781, 3831, + 3823, 3941, 3273, + 1384, 963, 1787, + 1369, 978, 1782, + 1348, 998, 1776, + 1319, 1023, 1767, + 1276, 1054, 1755, + 1212, 1093, 1739, + 1109, 1140, 1716, + 920, 1196, 1684, + 388, 1262, 1636, + 0, 1338, 1564, + 0, 1422, 1444, + 0, 1515, 1210, + 0, 1616, 161, + 0, 1723, 0, + 0, 1835, 0, + 0, 1952, 0, + 0, 2071, 0, + 0, 2195, 0, + 0, 2321, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1402, 960, 1792, + 1388, 976, 1788, + 1368, 995, 1781, + 1340, 1020, 1773, + 1299, 1052, 1761, + 1238, 1091, 1745, + 1142, 1138, 1722, + 969, 1195, 1690, + 531, 1261, 1643, + 0, 1337, 1572, + 0, 1421, 1455, + 0, 1514, 1228, + 0, 1615, 317, + 0, 1722, 0, + 0, 1835, 0, + 0, 1951, 0, + 0, 2071, 0, + 0, 2195, 0, + 0, 2321, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1426, 957, 1799, + 1412, 973, 1795, + 1393, 992, 1788, + 1367, 1018, 1780, + 1328, 1049, 1768, + 1272, 1088, 1752, + 1183, 1136, 1730, + 1027, 1193, 1699, + 671, 1259, 1653, + 0, 1335, 1583, + 0, 1420, 1469, + 0, 1513, 1251, + 0, 1614, 465, + 0, 1722, 0, + 0, 1834, 0, + 0, 1951, 0, + 0, 2071, 0, + 0, 2195, 0, + 0, 2319, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1455, 953, 1808, + 1443, 968, 1804, + 1425, 988, 1797, + 1400, 1014, 1789, + 1365, 1046, 1778, + 1313, 1085, 1762, + 1232, 1133, 1740, + 1096, 1190, 1710, + 809, 1257, 1665, + 0, 1333, 1597, + 0, 1419, 1487, + 0, 1512, 1280, + 0, 1613, 610, + 0, 1721, 0, + 0, 1834, 0, + 0, 1951, 0, + 0, 2071, 0, + 0, 2195, 0, + 0, 2319, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1492, 947, 1820, + 1480, 963, 1815, + 1464, 983, 1809, + 1441, 1009, 1801, + 1409, 1041, 1790, + 1362, 1081, 1775, + 1291, 1129, 1754, + 1173, 1187, 1724, + 945, 1254, 1681, + 8, 1331, 1616, + 0, 1416, 1511, + 0, 1511, 1317, + 0, 1612, 750, + 0, 1720, 0, + 0, 1833, 0, + 0, 1950, 0, + 0, 2071, 0, + 0, 2195, 0, + 0, 2319, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1537, 939, 1835, + 1526, 955, 1831, + 1512, 976, 1825, + 1491, 1002, 1817, + 1463, 1034, 1806, + 1421, 1075, 1792, + 1359, 1124, 1771, + 1260, 1182, 1743, + 1080, 1250, 1701, + 606, 1327, 1639, + 0, 1414, 1540, + 0, 1508, 1361, + 0, 1610, 889, + 0, 1718, 0, + 0, 1832, 0, + 0, 1949, 0, + 0, 2069, 0, + 0, 2193, 0, + 0, 2319, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1591, 928, 1854, + 1582, 945, 1850, + 1569, 966, 1845, + 1551, 992, 1837, + 1526, 1026, 1827, + 1490, 1067, 1813, + 1437, 1117, 1794, + 1354, 1176, 1767, + 1215, 1245, 1727, + 916, 1323, 1669, + 0, 1410, 1577, + 0, 1505, 1414, + 0, 1608, 1026, + 0, 1716, 0, + 0, 1830, 0, + 0, 1948, 0, + 0, 2069, 0, + 0, 2193, 0, + 0, 2319, 0, + 0, 2445, 0, + 0, 2575, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1654, 913, 1879, + 1646, 930, 1875, + 1635, 952, 1870, + 1620, 979, 1863, + 1598, 1014, 1854, + 1568, 1056, 1840, + 1523, 1107, 1822, + 1457, 1167, 1796, + 1348, 1237, 1760, + 1146, 1317, 1706, + 517, 1405, 1621, + 0, 1501, 1477, + 0, 1604, 1161, + 0, 1714, 0, + 0, 1828, 0, + 0, 1946, 0, + 0, 2067, 0, + 0, 2191, 0, + 0, 2317, 0, + 0, 2445, 0, + 0, 2575, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1727, 892, 1910, + 1720, 910, 1907, + 1711, 933, 1902, + 1698, 962, 1895, + 1680, 997, 1886, + 1654, 1041, 1874, + 1618, 1093, 1857, + 1565, 1156, 1834, + 1482, 1227, 1800, + 1340, 1308, 1751, + 1035, 1398, 1675, + 0, 1495, 1549, + 0, 1600, 1296, + 0, 1710, 0, + 0, 1825, 0, + 0, 1944, 0, + 0, 2067, 0, + 0, 2191, 0, + 0, 2317, 0, + 0, 2445, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1810, 863, 1949, + 1804, 882, 1946, + 1796, 906, 1941, + 1785, 936, 1935, + 1770, 974, 1927, + 1750, 1020, 1916, + 1720, 1075, 1901, + 1678, 1139, 1879, + 1615, 1213, 1849, + 1514, 1297, 1805, + 1329, 1388, 1738, + 825, 1488, 1631, + 0, 1594, 1430, + 0, 1705, 815, + 0, 1822, 0, + 0, 1941, 0, + 0, 2065, 0, + 0, 2189, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1900, 820, 1996, + 1896, 841, 1993, + 1889, 868, 1989, + 1880, 900, 1984, + 1868, 941, 1976, + 1852, 990, 1966, + 1829, 1049, 1953, + 1796, 1117, 1934, + 1748, 1194, 1907, + 1674, 1281, 1868, + 1553, 1375, 1811, + 1314, 1477, 1721, + 121, 1586, 1564, + 0, 1699, 1198, + 0, 1817, 0, + 0, 1938, 0, + 0, 2061, 0, + 0, 2187, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1999, 757, 2053, + 1995, 780, 2049, + 1990, 810, 2046, + 1983, 848, 2041, + 1973, 893, 2035, + 1960, 947, 2026, + 1942, 1011, 2014, + 1917, 1084, 1998, + 1881, 1167, 1974, + 1827, 1258, 1941, + 1743, 1357, 1893, + 1601, 1463, 1819, + 1292, 1574, 1697, + 0, 1690, 1455, + 0, 1810, 187, + 0, 1932, 0, + 0, 2057, 0, + 0, 2183, 0, + 0, 2311, 0, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2105, 654, 2119, + 2101, 684, 2115, + 2097, 721, 2113, + 2091, 765, 2109, + 2085, 819, 2103, + 2075, 883, 2095, + 2059, 956, 2085, + 2040, 1038, 2071, + 2013, 1128, 2051, + 1974, 1227, 2024, + 1915, 1332, 1984, + 1822, 1443, 1924, + 1658, 1559, 1830, + 1261, 1678, 1663, + 0, 1801, 1252, + 0, 1926, 0, + 0, 2053, 0, + 0, 2179, 0, + 0, 2309, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2215, 467, 2193, + 2213, 511, 2191, + 2209, 563, 2189, + 2205, 626, 2185, + 2199, 698, 2181, + 2191, 779, 2175, + 2181, 869, 2165, + 2167, 966, 2153, + 2145, 1071, 2137, + 2117, 1181, 2115, + 2075, 1296, 2083, + 2011, 1415, 2035, + 1909, 1538, 1963, + 1724, 1662, 1844, + 1217, 1788, 1612, + 0, 1916, 615, + 0, 2045, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2331, 0, 2277, + 2329, 71, 2277, + 2327, 199, 2273, + 2323, 327, 2271, + 2319, 457, 2267, + 2313, 587, 2261, + 2305, 718, 2255, + 2293, 849, 2245, + 2277, 980, 2231, + 2257, 1112, 2213, + 2225, 1243, 2187, + 2181, 1375, 2151, + 2113, 1507, 2095, + 2005, 1639, 2010, + 1800, 1771, 1862, + 1150, 1903, 1535, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2451, 0, 2371, + 2449, 0, 2369, + 2447, 0, 2367, + 2445, 0, 2365, + 2441, 0, 2361, + 2437, 40, 2357, + 2431, 379, 2351, + 2421, 622, 2345, + 2411, 822, 2333, + 2395, 999, 2319, + 2371, 1161, 2299, + 2339, 1315, 2269, + 2293, 1463, 2227, + 2223, 1606, 2165, + 2107, 1747, 2065, + 1885, 1885, 1885, + 1042, 2022, 1405, + 0, 2157, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2573, 0, 2471, + 2571, 0, 2469, + 2571, 0, 2469, + 2569, 0, 2467, + 2565, 0, 2463, + 2563, 0, 2461, + 2557, 0, 2455, + 2551, 0, 2449, + 2543, 449, 2441, + 2531, 782, 2429, + 2513, 1022, 2413, + 2491, 1220, 2391, + 2459, 1396, 2361, + 2411, 1559, 2315, + 2337, 1712, 2245, + 2217, 1860, 2131, + 1979, 2003, 1914, + 839, 2143, 1140, + 0, 2281, 0, + 0, 2419, 0, + 0, 2553, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2697, 0, 2577, + 2697, 0, 2577, + 2695, 0, 2575, + 2695, 0, 2575, + 2693, 0, 2573, + 2689, 0, 2569, + 2687, 0, 2565, + 2681, 0, 2561, + 2675, 0, 2555, + 2665, 12, 2545, + 2653, 723, 2533, + 2637, 1051, 2517, + 2613, 1289, 2493, + 2579, 1486, 2459, + 2531, 1662, 2409, + 2455, 1824, 2333, + 2331, 1977, 2207, + 2079, 2125, 1951, + 206, 2267, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2825, 0, 2689, + 2823, 0, 2689, + 2823, 0, 2689, + 2821, 0, 2687, + 2821, 0, 2685, + 2819, 0, 2683, + 2815, 0, 2681, + 2811, 0, 2677, + 2807, 0, 2671, + 2801, 0, 2665, + 2791, 0, 2655, + 2779, 630, 2643, + 2761, 1087, 2625, + 2737, 1366, 2599, + 2703, 1584, 2563, + 2653, 1771, 2511, + 2577, 1940, 2429, + 2449, 2099, 2291, + 2187, 2249, 1995, + 0, 2395, 0, + 0, 2535, 0, + 0, 2675, 0, + 0, 2813, 0, + 0, 2949, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2953, 0, 2807, + 2951, 0, 2807, + 2951, 0, 2805, + 2951, 0, 2805, + 2949, 0, 2803, + 2947, 0, 2801, + 2945, 0, 2799, + 2943, 0, 2797, + 2939, 0, 2793, + 2935, 0, 2787, + 2927, 0, 2781, + 2919, 0, 2771, + 2905, 465, 2757, + 2889, 1132, 2739, + 2865, 1453, 2713, + 2829, 1689, 2675, + 2779, 1885, 2619, + 2701, 2059, 2533, + 2569, 2221, 2383, + 2299, 2375, 2049, + 0, 2521, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3081, 0, 2927, + 3081, 0, 2927, + 3081, 0, 2925, + 3079, 0, 2925, + 3079, 0, 2925, + 3077, 0, 2923, + 3075, 0, 2921, + 3073, 0, 2919, + 3071, 0, 2917, + 3067, 0, 2913, + 3063, 0, 2907, + 3055, 0, 2899, + 3047, 0, 2889, + 3033, 66, 2875, + 3017, 1185, 2857, + 2991, 1548, 2829, + 2957, 1799, 2791, + 2905, 2003, 2733, + 2827, 2183, 2643, + 2693, 2347, 2483, + 2417, 2501, 2111, + 0, 2651, 0, + 0, 2795, 0, + 0, 2935, 0, + 0, 3073, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3211, 0, 3049, + 3211, 0, 3049, + 3211, 0, 3049, + 3209, 0, 3049, + 3209, 0, 3047, + 3209, 0, 3047, + 3207, 0, 3045, + 3205, 0, 3043, + 3203, 0, 3041, + 3201, 0, 3039, + 3197, 0, 3035, + 3191, 0, 3029, + 3185, 0, 3021, + 3175, 0, 3011, + 3163, 0, 2997, + 3145, 1248, 2977, + 3121, 1651, 2949, + 3085, 1914, 2909, + 3033, 2125, 2851, + 2955, 2307, 2757, + 2819, 2475, 2591, + 2537, 2631, 2183, + 0, 2779, 0, + 0, 2925, 0, + 0, 3065, 0, + 0, 3205, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3341, 0, 3175, + 3341, 0, 3175, + 3341, 0, 3175, + 3341, 0, 3173, + 3339, 0, 3173, + 3339, 0, 3173, + 3339, 0, 3171, + 3337, 0, 3171, + 3335, 0, 3169, + 3333, 0, 3167, + 3331, 0, 3163, + 3327, 0, 3159, + 3321, 0, 3153, + 3315, 0, 3145, + 3305, 0, 3135, + 3293, 0, 3121, + 3275, 1320, 3101, + 3251, 1759, 3073, + 3215, 2033, 3033, + 3163, 2249, 2971, + 3083, 2435, 2875, + 2947, 2603, 2703, + 2661, 2759, 2265, + 0, 2911, 0, + 0, 3055, 0, + 0, 3197, 0, + 0, 3337, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3471, 0, 3301, + 3471, 0, 3301, + 3471, 0, 3301, + 3471, 0, 3301, + 3471, 0, 3301, + 3471, 0, 3301, + 3469, 0, 3299, + 3469, 0, 3299, + 3467, 0, 3297, + 3467, 0, 3295, + 3463, 0, 3293, + 3461, 0, 3289, + 3457, 0, 3285, + 3453, 0, 3279, + 3445, 0, 3273, + 3437, 0, 3261, + 3423, 0, 3247, + 3405, 1402, 3227, + 3381, 1873, 3199, + 3345, 2155, 3157, + 3293, 2375, 3095, + 3213, 2563, 2997, + 3075, 2731, 2819, + 2785, 2891, 2355, + 0, 3041, 0, + 0, 3187, 0, + 0, 3329, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3877, 0, + 0, 4011, 0, + 3603, 0, 3429, + 3603, 0, 3429, + 3603, 0, 3429, + 3603, 0, 3429, + 3603, 0, 3429, + 3601, 0, 3429, + 3601, 0, 3429, + 3601, 0, 3427, + 3599, 0, 3427, + 3599, 0, 3425, + 3597, 0, 3423, + 3595, 0, 3421, + 3593, 0, 3417, + 3589, 0, 3413, + 3583, 0, 3407, + 3577, 0, 3399, + 3567, 0, 3389, + 3555, 0, 3375, + 3537, 1492, 3355, + 3511, 1990, 3325, + 3475, 2279, 3283, + 3423, 2501, 3221, + 3343, 2691, 3121, + 3205, 2861, 2939, + 2913, 3021, 2453, + 0, 3171, 0, + 0, 3317, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4009, 0, + 3735, 0, 3559, + 3735, 0, 3559, + 3735, 0, 3559, + 3733, 0, 3559, + 3733, 0, 3559, + 3733, 0, 3559, + 3733, 0, 3557, + 3733, 0, 3557, + 3731, 0, 3557, + 3731, 0, 3555, + 3729, 0, 3555, + 3729, 0, 3553, + 3727, 0, 3551, + 3723, 0, 3547, + 3719, 0, 3543, + 3715, 0, 3537, + 3707, 0, 3529, + 3699, 0, 3517, + 3685, 0, 3503, + 3667, 1591, 3483, + 3643, 2111, 3453, + 3607, 2405, 3411, + 3555, 2631, 3347, + 3473, 2821, 3247, + 3335, 2993, 3063, + 3041, 3151, 2559, + 0, 3303, 0, + 0, 3449, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3689, + 3865, 0, 3689, + 3865, 0, 3689, + 3865, 0, 3689, + 3865, 0, 3689, + 3865, 0, 3689, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3687, + 3863, 0, 3687, + 3863, 0, 3685, + 3861, 0, 3683, + 3859, 0, 3683, + 3857, 0, 3679, + 3855, 0, 3677, + 3851, 0, 3673, + 3847, 0, 3667, + 3839, 0, 3659, + 3829, 0, 3647, + 3817, 0, 3633, + 3799, 1696, 3611, + 3773, 2235, 3583, + 3739, 2533, 3541, + 3685, 2759, 3477, + 3603, 2951, 3375, + 3465, 3123, 3187, + 3169, 3283, 2669, + 0, 3435, 0, + 0, 3581, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3817, + 3995, 0, 3817, + 3995, 0, 3817, + 3995, 0, 3815, + 3993, 0, 3815, + 3991, 0, 3813, + 3989, 0, 3811, + 3987, 0, 3807, + 3983, 0, 3803, + 3977, 0, 3797, + 3971, 0, 3789, + 3961, 0, 3777, + 3949, 0, 3763, + 3931, 1806, 3741, + 3905, 2361, 3713, + 3869, 2663, 3669, + 3817, 2889, 3605, + 3735, 3083, 3503, + 3595, 3255, 3315, + 3299, 3415, 2785, + 0, 3567, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3927, + 4095, 0, 3919, + 4093, 0, 3909, + 4081, 0, 3893, + 4063, 1922, 3873, + 4037, 2487, 3843, + 4001, 2793, 3801, + 3949, 3021, 3735, + 3867, 3213, 3633, + 3727, 3385, 3443, + 3431, 3547, 2903, + 0, 3699, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4059, + 4095, 0, 4051, + 4095, 0, 4039, + 4095, 0, 4025, + 4095, 2041, 4003, + 4095, 2617, 3973, + 4095, 2923, 3931, + 4081, 3151, 3867, + 3999, 3345, 3763, + 3859, 3517, 3571, + 3561, 3677, 3025, + 0, 3831, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2163, 4095, + 4095, 2745, 4095, + 4095, 3053, 4063, + 4095, 3283, 3997, + 4095, 3477, 3893, + 3991, 3649, 3701, + 3693, 3809, 3151, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2287, 4095, + 4095, 2875, 4095, + 4095, 3185, 4095, + 4095, 3415, 4095, + 4095, 3607, 4025, + 4095, 3781, 3831, + 3823, 3941, 3277, + 1513, 1085, 1919, + 1502, 1096, 1915, + 1486, 1112, 1911, + 1465, 1131, 1904, + 1434, 1156, 1895, + 1390, 1187, 1883, + 1323, 1226, 1867, + 1214, 1273, 1844, + 1011, 1329, 1811, + 373, 1395, 1763, + 0, 1470, 1689, + 0, 1555, 1568, + 0, 1648, 1328, + 0, 1748, 128, + 0, 1855, 0, + 0, 1967, 0, + 0, 2085, 0, + 0, 2205, 0, + 0, 2327, 0, + 0, 2453, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1527, 1083, 1923, + 1516, 1095, 1919, + 1501, 1110, 1915, + 1480, 1129, 1908, + 1451, 1154, 1899, + 1408, 1186, 1888, + 1344, 1225, 1871, + 1241, 1272, 1848, + 1052, 1328, 1816, + 520, 1394, 1768, + 0, 1470, 1696, + 0, 1554, 1576, + 0, 1647, 1342, + 0, 1748, 294, + 0, 1855, 0, + 0, 1967, 0, + 0, 2083, 0, + 0, 2205, 0, + 0, 2327, 0, + 0, 2453, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1545, 1080, 1928, + 1534, 1092, 1924, + 1520, 1108, 1920, + 1500, 1127, 1913, + 1472, 1152, 1905, + 1431, 1184, 1893, + 1370, 1223, 1877, + 1274, 1270, 1854, + 1101, 1327, 1822, + 663, 1393, 1775, + 0, 1469, 1704, + 0, 1553, 1587, + 0, 1647, 1360, + 0, 1747, 449, + 0, 1854, 0, + 0, 1967, 0, + 0, 2083, 0, + 0, 2203, 0, + 0, 2327, 0, + 0, 2453, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1568, 1077, 1935, + 1558, 1089, 1931, + 1544, 1104, 1927, + 1525, 1124, 1920, + 1499, 1150, 1912, + 1460, 1181, 1900, + 1404, 1221, 1884, + 1315, 1268, 1862, + 1160, 1325, 1831, + 803, 1391, 1785, + 0, 1467, 1715, + 0, 1552, 1601, + 0, 1646, 1383, + 0, 1746, 597, + 0, 1854, 0, + 0, 1966, 0, + 0, 2083, 0, + 0, 2203, 0, + 0, 2327, 0, + 0, 2453, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1597, 1073, 1944, + 1588, 1085, 1940, + 1575, 1100, 1936, + 1557, 1120, 1930, + 1532, 1146, 1921, + 1497, 1178, 1910, + 1445, 1217, 1894, + 1364, 1265, 1873, + 1228, 1322, 1842, + 941, 1389, 1797, + 0, 1465, 1729, + 0, 1551, 1619, + 0, 1644, 1412, + 0, 1745, 742, + 0, 1853, 0, + 0, 1966, 0, + 0, 2083, 0, + 0, 2203, 0, + 0, 2327, 0, + 0, 2451, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1633, 1067, 1955, + 1624, 1079, 1952, + 1613, 1095, 1947, + 1596, 1115, 1942, + 1574, 1141, 1933, + 1541, 1173, 1922, + 1494, 1213, 1907, + 1423, 1261, 1886, + 1305, 1319, 1856, + 1077, 1386, 1813, + 140, 1463, 1748, + 0, 1549, 1643, + 0, 1643, 1449, + 0, 1744, 883, + 0, 1852, 0, + 0, 1965, 0, + 0, 2083, 0, + 0, 2203, 0, + 0, 2327, 0, + 0, 2451, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1677, 1058, 1970, + 1669, 1071, 1967, + 1659, 1087, 1963, + 1644, 1108, 1957, + 1624, 1134, 1949, + 1595, 1167, 1939, + 1553, 1207, 1924, + 1491, 1256, 1904, + 1392, 1314, 1875, + 1212, 1382, 1833, + 738, 1459, 1771, + 0, 1546, 1672, + 0, 1640, 1493, + 0, 1742, 1021, + 0, 1850, 0, + 0, 1964, 0, + 0, 2081, 0, + 0, 2203, 0, + 0, 2325, 0, + 0, 2451, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1730, 1047, 1990, + 1723, 1060, 1987, + 1714, 1076, 1982, + 1701, 1098, 1977, + 1683, 1124, 1969, + 1658, 1158, 1959, + 1622, 1199, 1945, + 1569, 1249, 1926, + 1487, 1308, 1899, + 1347, 1377, 1859, + 1048, 1455, 1801, + 0, 1542, 1709, + 0, 1637, 1546, + 0, 1740, 1158, + 0, 1848, 0, + 0, 1962, 0, + 0, 2081, 0, + 0, 2201, 0, + 0, 2325, 0, + 0, 2451, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1793, 1032, 2014, + 1787, 1045, 2011, + 1778, 1062, 2008, + 1767, 1084, 2002, + 1752, 1111, 1995, + 1730, 1146, 1986, + 1700, 1188, 1972, + 1655, 1239, 1954, + 1589, 1299, 1929, + 1481, 1369, 1892, + 1278, 1449, 1838, + 650, 1537, 1754, + 0, 1633, 1609, + 0, 1736, 1294, + 0, 1846, 0, + 0, 1960, 0, + 0, 2079, 0, + 0, 2201, 0, + 0, 2325, 0, + 0, 2451, 0, + 0, 2577, 0, + 0, 2707, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1865, 1011, 2045, + 1860, 1024, 2043, + 1853, 1042, 2039, + 1843, 1065, 2034, + 1830, 1093, 2028, + 1812, 1129, 2019, + 1787, 1173, 2006, + 1750, 1226, 1989, + 1697, 1288, 1966, + 1614, 1359, 1932, + 1472, 1440, 1883, + 1167, 1530, 1807, + 0, 1628, 1681, + 0, 1732, 1428, + 0, 1842, 0, + 0, 1957, 0, + 0, 2077, 0, + 0, 2199, 0, + 0, 2323, 0, + 0, 2449, 0, + 0, 2577, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1946, 980, 2083, + 1942, 995, 2081, + 1936, 1014, 2077, + 1928, 1038, 2073, + 1917, 1068, 2067, + 1902, 1106, 2059, + 1882, 1152, 2049, + 1853, 1207, 2033, + 1810, 1271, 2011, + 1747, 1345, 1981, + 1646, 1429, 1937, + 1461, 1520, 1870, + 957, 1620, 1763, + 0, 1726, 1562, + 0, 1838, 947, + 0, 1954, 0, + 0, 2073, 0, + 0, 2197, 0, + 0, 2321, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2036, 936, 2131, + 2033, 953, 2129, + 2028, 973, 2125, + 2021, 1000, 2121, + 2013, 1032, 2115, + 2001, 1073, 2109, + 1984, 1122, 2099, + 1961, 1181, 2085, + 1928, 1249, 2065, + 1880, 1326, 2039, + 1807, 1413, 2000, + 1685, 1508, 1943, + 1446, 1610, 1853, + 253, 1718, 1696, + 0, 1831, 1330, + 0, 1949, 0, + 0, 2069, 0, + 0, 2193, 0, + 0, 2319, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2135, 870, 2187, + 2131, 889, 2185, + 2127, 913, 2181, + 2123, 942, 2179, + 2115, 980, 2173, + 2105, 1025, 2167, + 2093, 1079, 2159, + 2075, 1143, 2147, + 2049, 1217, 2129, + 2013, 1299, 2107, + 1959, 1391, 2073, + 1876, 1490, 2025, + 1733, 1595, 1951, + 1424, 1707, 1829, + 0, 1822, 1587, + 0, 1942, 319, + 0, 2065, 0, + 0, 2189, 0, + 0, 2317, 0, + 0, 2443, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2239, 763, 2251, + 2237, 786, 2251, + 2233, 816, 2247, + 2229, 853, 2245, + 2223, 898, 2241, + 2217, 952, 2235, + 2207, 1015, 2227, + 2193, 1088, 2217, + 2173, 1170, 2203, + 2145, 1261, 2183, + 2105, 1359, 2155, + 2047, 1464, 2115, + 1954, 1575, 2057, + 1790, 1691, 1962, + 1394, 1811, 1795, + 0, 1933, 1384, + 0, 2057, 0, + 0, 2185, 0, + 0, 2313, 0, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2349, 563, 2327, + 2347, 599, 2325, + 2345, 643, 2323, + 2341, 696, 2321, + 2337, 758, 2317, + 2331, 830, 2313, + 2323, 911, 2307, + 2313, 1001, 2297, + 2299, 1098, 2285, + 2277, 1203, 2269, + 2249, 1313, 2247, + 2207, 1429, 2215, + 2143, 1548, 2167, + 2041, 1670, 2095, + 1856, 1794, 1976, + 1349, 1920, 1745, + 0, 2049, 747, + 0, 2177, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2465, 0, 2411, + 2463, 77, 2409, + 2461, 203, 2409, + 2459, 331, 2407, + 2455, 460, 2403, + 2451, 589, 2399, + 2445, 719, 2393, + 2437, 850, 2387, + 2425, 981, 2377, + 2409, 1112, 2363, + 2389, 1244, 2345, + 2357, 1376, 2319, + 2313, 1507, 2283, + 2245, 1639, 2227, + 2137, 1771, 2141, + 1932, 1903, 1994, + 1282, 2035, 1667, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2583, 0, 2503, + 2583, 0, 2503, + 2581, 0, 2501, + 2579, 0, 2499, + 2577, 0, 2497, + 2573, 0, 2495, + 2569, 172, 2489, + 2563, 511, 2483, + 2553, 754, 2477, + 2543, 954, 2465, + 2527, 1130, 2451, + 2503, 1293, 2431, + 2471, 1447, 2401, + 2425, 1595, 2359, + 2355, 1739, 2297, + 2239, 1879, 2197, + 2017, 2017, 2017, + 1174, 2153, 1537, + 0, 2289, 0, + 0, 2425, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2705, 0, 2603, + 2705, 0, 2603, + 2703, 0, 2601, + 2703, 0, 2601, + 2701, 0, 2599, + 2697, 0, 2597, + 2695, 0, 2593, + 2689, 0, 2589, + 2683, 0, 2581, + 2675, 581, 2573, + 2663, 914, 2561, + 2647, 1154, 2545, + 2623, 1352, 2523, + 2591, 1528, 2493, + 2543, 1691, 2447, + 2469, 1845, 2377, + 2349, 1992, 2263, + 2111, 2135, 2046, + 972, 2275, 1272, + 0, 2413, 0, + 0, 2551, 0, + 0, 2685, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2831, 0, 2711, + 2829, 0, 2709, + 2829, 0, 2709, + 2827, 0, 2707, + 2827, 0, 2707, + 2825, 0, 2705, + 2821, 0, 2701, + 2819, 0, 2699, + 2813, 0, 2693, + 2807, 0, 2687, + 2797, 144, 2677, + 2785, 855, 2665, + 2769, 1183, 2649, + 2745, 1421, 2625, + 2711, 1618, 2591, + 2663, 1794, 2541, + 2587, 1956, 2465, + 2463, 2109, 2339, + 2211, 2257, 2083, + 338, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2957, 0, 2823, + 2957, 0, 2821, + 2955, 0, 2821, + 2955, 0, 2821, + 2953, 0, 2819, + 2953, 0, 2817, + 2951, 0, 2815, + 2947, 0, 2813, + 2943, 0, 2809, + 2939, 0, 2803, + 2933, 0, 2797, + 2923, 0, 2787, + 2911, 762, 2775, + 2893, 1219, 2757, + 2869, 1499, 2731, + 2835, 1716, 2697, + 2785, 1903, 2643, + 2709, 2073, 2561, + 2581, 2231, 2423, + 2319, 2381, 2127, + 0, 2527, 0, + 0, 2667, 0, + 0, 2807, 0, + 0, 2945, 0, + 0, 3081, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3085, 0, 2939, + 3085, 0, 2939, + 3083, 0, 2939, + 3083, 0, 2937, + 3083, 0, 2937, + 3081, 0, 2935, + 3079, 0, 2933, + 3077, 0, 2931, + 3075, 0, 2929, + 3071, 0, 2925, + 3067, 0, 2919, + 3059, 0, 2913, + 3051, 0, 2903, + 3037, 597, 2889, + 3021, 1264, 2871, + 2997, 1585, 2845, + 2961, 1821, 2807, + 2911, 2017, 2751, + 2833, 2191, 2665, + 2701, 2353, 2515, + 2431, 2507, 2181, + 0, 2653, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3213, 0, 3059, + 3213, 0, 3059, + 3213, 0, 3059, + 3213, 0, 3057, + 3211, 0, 3057, + 3211, 0, 3057, + 3209, 0, 3055, + 3209, 0, 3053, + 3207, 0, 3051, + 3203, 0, 3049, + 3199, 0, 3045, + 3195, 0, 3039, + 3187, 0, 3031, + 3179, 0, 3021, + 3165, 198, 3007, + 3149, 1317, 2989, + 3125, 1680, 2961, + 3089, 1931, 2923, + 3037, 2135, 2865, + 2959, 2315, 2775, + 2825, 2479, 2615, + 2549, 2635, 2243, + 0, 2783, 0, + 0, 2927, 0, + 0, 3067, 0, + 0, 3205, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3343, 0, 3183, + 3343, 0, 3181, + 3343, 0, 3181, + 3343, 0, 3181, + 3341, 0, 3181, + 3341, 0, 3179, + 3341, 0, 3179, + 3339, 0, 3177, + 3337, 0, 3177, + 3335, 0, 3173, + 3333, 0, 3171, + 3329, 0, 3167, + 3323, 0, 3161, + 3317, 0, 3153, + 3307, 0, 3143, + 3295, 0, 3129, + 3277, 1380, 3109, + 3253, 1783, 3081, + 3217, 2046, 3041, + 3167, 2257, 2983, + 3087, 2439, 2889, + 2951, 2607, 2723, + 2669, 2763, 2315, + 0, 2913, 0, + 0, 3057, 0, + 0, 3197, 0, + 0, 3337, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3473, 0, 3307, + 3473, 0, 3307, + 3473, 0, 3307, + 3473, 0, 3307, + 3473, 0, 3307, + 3471, 0, 3305, + 3471, 0, 3305, + 3471, 0, 3303, + 3469, 0, 3303, + 3467, 0, 3301, + 3465, 0, 3299, + 3463, 0, 3295, + 3459, 0, 3291, + 3453, 0, 3285, + 3447, 0, 3277, + 3437, 0, 3267, + 3425, 0, 3253, + 3407, 1452, 3233, + 3383, 1891, 3205, + 3347, 2165, 3165, + 3295, 2381, 3103, + 3215, 2567, 3007, + 3079, 2735, 2835, + 2793, 2893, 2397, + 0, 3043, 0, + 0, 3187, 0, + 0, 3329, 0, + 0, 3469, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3877, 0, + 0, 4011, 0, + 3603, 0, 3435, + 3603, 0, 3433, + 3603, 0, 3433, + 3603, 0, 3433, + 3603, 0, 3433, + 3603, 0, 3433, + 3603, 0, 3433, + 3601, 0, 3431, + 3601, 0, 3431, + 3599, 0, 3429, + 3599, 0, 3427, + 3597, 0, 3425, + 3593, 0, 3423, + 3589, 0, 3417, + 3585, 0, 3413, + 3577, 0, 3405, + 3569, 0, 3393, + 3555, 0, 3379, + 3537, 1534, 3359, + 3513, 2005, 3331, + 3477, 2287, 3289, + 3425, 2507, 3227, + 3345, 2695, 3129, + 3207, 2863, 2951, + 2917, 3023, 2487, + 0, 3173, 0, + 0, 3319, 0, + 0, 3461, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4009, 0, + 3735, 0, 3563, + 3735, 0, 3563, + 3735, 0, 3561, + 3735, 0, 3561, + 3735, 0, 3561, + 3735, 0, 3561, + 3733, 0, 3561, + 3733, 0, 3561, + 3733, 0, 3559, + 3731, 0, 3559, + 3731, 0, 3557, + 3729, 0, 3555, + 3727, 0, 3553, + 3725, 0, 3549, + 3721, 0, 3545, + 3715, 0, 3539, + 3709, 0, 3533, + 3699, 0, 3521, + 3687, 0, 3507, + 3669, 1625, 3487, + 3643, 2123, 3457, + 3607, 2411, 3415, + 3555, 2633, 3353, + 3475, 2823, 3253, + 3337, 2993, 3071, + 3045, 3153, 2585, + 0, 3303, 0, + 0, 3449, 0, + 0, 3593, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3867, 0, 3691, + 3867, 0, 3691, + 3867, 0, 3691, + 3867, 0, 3691, + 3865, 0, 3691, + 3865, 0, 3691, + 3865, 0, 3691, + 3865, 0, 3689, + 3865, 0, 3689, + 3865, 0, 3689, + 3863, 0, 3687, + 3863, 0, 3687, + 3861, 0, 3685, + 3859, 0, 3683, + 3855, 0, 3679, + 3851, 0, 3675, + 3847, 0, 3669, + 3839, 0, 3661, + 3831, 0, 3651, + 3817, 0, 3635, + 3799, 1723, 3615, + 3775, 2243, 3585, + 3739, 2539, 3543, + 3687, 2763, 3481, + 3605, 2953, 3379, + 3467, 3125, 3195, + 3173, 3283, 2691, + 0, 3435, 0, + 0, 3581, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3819, + 3997, 0, 3819, + 3995, 0, 3819, + 3995, 0, 3817, + 3993, 0, 3817, + 3991, 0, 3815, + 3989, 0, 3811, + 3987, 0, 3809, + 3983, 0, 3805, + 3979, 0, 3799, + 3971, 0, 3791, + 3961, 0, 3779, + 3949, 0, 3765, + 3931, 1828, 3745, + 3907, 2367, 3715, + 3871, 2665, 3673, + 3817, 2891, 3609, + 3735, 3083, 3507, + 3597, 3255, 3319, + 3301, 3415, 2801, + 0, 3567, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3939, + 4095, 0, 3935, + 4095, 0, 3929, + 4095, 0, 3921, + 4093, 0, 3909, + 4081, 0, 3895, + 4063, 1938, 3875, + 4037, 2493, 3845, + 4001, 2795, 3801, + 3949, 3021, 3737, + 3867, 3215, 3635, + 3729, 3387, 3447, + 3431, 3547, 2917, + 0, 3699, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4059, + 4095, 0, 4051, + 4095, 0, 4041, + 4095, 0, 4025, + 4095, 2053, 4005, + 4095, 2621, 3975, + 4095, 2925, 3933, + 4081, 3153, 3867, + 3999, 3345, 3765, + 3859, 3517, 3575, + 3563, 3679, 3035, + 0, 3831, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2173, 4095, + 4095, 2749, 4095, + 4095, 3055, 4063, + 4095, 3283, 3999, + 4095, 3477, 3895, + 3991, 3649, 3703, + 3693, 3809, 3157, + 0, 3963, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2295, 4095, + 4095, 2877, 4095, + 4095, 3185, 4095, + 4095, 3415, 4095, + 4095, 3609, 4025, + 4095, 3781, 3833, + 3825, 3941, 3283, + 1643, 1209, 2051, + 1635, 1218, 2049, + 1623, 1230, 2045, + 1607, 1245, 2040, + 1585, 1264, 2033, + 1554, 1289, 2025, + 1508, 1321, 2012, + 1439, 1359, 1996, + 1326, 1406, 1972, + 1110, 1462, 1939, + 353, 1528, 1891, + 0, 1603, 1817, + 0, 1688, 1694, + 0, 1780, 1449, + 0, 1881, 80, + 0, 1987, 0, + 0, 2099, 0, + 0, 2217, 0, + 0, 2337, 0, + 0, 2459, 0, + 0, 2585, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1653, 1208, 2053, + 1645, 1217, 2051, + 1634, 1229, 2047, + 1618, 1244, 2043, + 1597, 1263, 2036, + 1566, 1288, 2028, + 1522, 1319, 2016, + 1455, 1358, 1999, + 1346, 1405, 1976, + 1143, 1462, 1943, + 505, 1527, 1895, + 0, 1603, 1821, + 0, 1687, 1700, + 0, 1780, 1460, + 0, 1880, 260, + 0, 1987, 0, + 0, 2099, 0, + 0, 2217, 0, + 0, 2337, 0, + 0, 2459, 0, + 0, 2585, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1667, 1206, 2057, + 1659, 1215, 2055, + 1648, 1227, 2051, + 1633, 1242, 2047, + 1612, 1262, 2040, + 1583, 1287, 2032, + 1540, 1318, 2020, + 1476, 1357, 2003, + 1373, 1404, 1980, + 1184, 1461, 1948, + 652, 1526, 1900, + 0, 1602, 1828, + 0, 1686, 1708, + 0, 1779, 1474, + 0, 1880, 426, + 0, 1987, 0, + 0, 2099, 0, + 0, 2215, 0, + 0, 2337, 0, + 0, 2459, 0, + 0, 2585, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1685, 1204, 2063, + 1677, 1213, 2061, + 1667, 1224, 2057, + 1652, 1240, 2051, + 1632, 1259, 2046, + 1604, 1284, 2037, + 1563, 1316, 2025, + 1503, 1355, 2009, + 1406, 1403, 1986, + 1233, 1459, 1954, + 795, 1525, 1907, + 0, 1601, 1836, + 0, 1686, 1719, + 0, 1779, 1492, + 0, 1879, 581, + 0, 1986, 0, + 0, 2099, 0, + 0, 2215, 0, + 0, 2337, 0, + 0, 2459, 0, + 0, 2585, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1707, 1200, 2069, + 1700, 1209, 2067, + 1690, 1221, 2063, + 1676, 1237, 2059, + 1657, 1256, 2053, + 1631, 1282, 2044, + 1593, 1313, 2033, + 1536, 1353, 2017, + 1447, 1400, 1994, + 1292, 1457, 1963, + 935, 1524, 1917, + 0, 1599, 1847, + 0, 1684, 1733, + 0, 1778, 1515, + 0, 1879, 730, + 0, 1986, 0, + 0, 2099, 0, + 0, 2215, 0, + 0, 2335, 0, + 0, 2459, 0, + 0, 2585, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1736, 1196, 2079, + 1729, 1205, 2075, + 1720, 1217, 2073, + 1707, 1232, 2067, + 1689, 1252, 2061, + 1664, 1278, 2053, + 1629, 1310, 2042, + 1577, 1349, 2026, + 1496, 1397, 2005, + 1360, 1455, 1974, + 1073, 1521, 1929, + 0, 1598, 1861, + 0, 1683, 1752, + 0, 1776, 1545, + 0, 1878, 874, + 0, 1985, 0, + 0, 2097, 0, + 0, 2215, 0, + 0, 2335, 0, + 0, 2459, 0, + 0, 2585, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1771, 1189, 2089, + 1765, 1199, 2087, + 1756, 1211, 2083, + 1745, 1227, 2079, + 1728, 1247, 2073, + 1706, 1273, 2065, + 1674, 1305, 2055, + 1627, 1345, 2039, + 1555, 1393, 2018, + 1437, 1451, 1988, + 1209, 1518, 1945, + 272, 1595, 1880, + 0, 1681, 1775, + 0, 1775, 1581, + 0, 1876, 1015, + 0, 1984, 0, + 0, 2097, 0, + 0, 2215, 0, + 0, 2335, 0, + 0, 2459, 0, + 0, 2583, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1815, 1181, 2105, + 1809, 1191, 2103, + 1801, 1203, 2099, + 1791, 1219, 2095, + 1776, 1240, 2089, + 1756, 1266, 2081, + 1727, 1299, 2071, + 1685, 1339, 2057, + 1623, 1388, 2036, + 1524, 1446, 2007, + 1344, 1514, 1966, + 870, 1592, 1903, + 0, 1678, 1804, + 0, 1772, 1625, + 0, 1874, 1153, + 0, 1982, 0, + 0, 2095, 0, + 0, 2213, 0, + 0, 2335, 0, + 0, 2457, 0, + 0, 2583, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1867, 1170, 2123, + 1862, 1179, 2121, + 1855, 1192, 2119, + 1846, 1209, 2115, + 1833, 1230, 2109, + 1815, 1256, 2101, + 1790, 1290, 2091, + 1754, 1331, 2077, + 1701, 1381, 2059, + 1619, 1440, 2031, + 1479, 1509, 1992, + 1180, 1587, 1933, + 0, 1674, 1841, + 0, 1769, 1678, + 0, 1872, 1290, + 0, 1981, 0, + 0, 2095, 0, + 0, 2213, 0, + 0, 2333, 0, + 0, 2457, 0, + 0, 2583, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1929, 1154, 2149, + 1925, 1164, 2147, + 1919, 1177, 2143, + 1910, 1194, 2139, + 1899, 1216, 2135, + 1884, 1243, 2127, + 1862, 1278, 2117, + 1832, 1320, 2105, + 1788, 1371, 2087, + 1721, 1432, 2061, + 1613, 1501, 2024, + 1410, 1581, 1970, + 782, 1669, 1886, + 0, 1765, 1741, + 0, 1869, 1426, + 0, 1978, 0, + 0, 2093, 0, + 0, 2211, 0, + 0, 2333, 0, + 0, 2457, 0, + 0, 2583, 0, + 0, 2709, 0, + 0, 2839, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2001, 1132, 2179, + 1997, 1143, 2177, + 1992, 1156, 2175, + 1985, 1174, 2171, + 1975, 1197, 2167, + 1962, 1226, 2159, + 1944, 1261, 2151, + 1919, 1305, 2139, + 1883, 1358, 2121, + 1829, 1420, 2097, + 1746, 1491, 2065, + 1604, 1572, 2015, + 1299, 1662, 1939, + 0, 1760, 1813, + 0, 1864, 1560, + 0, 1974, 0, + 0, 2089, 0, + 0, 2209, 0, + 0, 2331, 0, + 0, 2455, 0, + 0, 2581, 0, + 0, 2709, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2081, 1101, 2217, + 2079, 1112, 2215, + 2073, 1127, 2213, + 2069, 1146, 2211, + 2061, 1170, 2205, + 2049, 1200, 2199, + 2034, 1238, 2191, + 2014, 1284, 2181, + 1985, 1339, 2165, + 1943, 1404, 2143, + 1879, 1478, 2113, + 1778, 1561, 2069, + 1593, 1653, 2003, + 1089, 1752, 1895, + 0, 1858, 1695, + 0, 1970, 1079, + 0, 2085, 0, + 0, 2205, 0, + 0, 2329, 0, + 0, 2453, 0, + 0, 2579, 0, + 0, 2709, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2171, 1056, 2265, + 2169, 1068, 2263, + 2165, 1084, 2261, + 2159, 1105, 2257, + 2153, 1132, 2253, + 2145, 1164, 2249, + 2133, 1205, 2241, + 2117, 1254, 2231, + 2093, 1313, 2217, + 2061, 1381, 2197, + 2012, 1458, 2171, + 1939, 1545, 2133, + 1817, 1640, 2075, + 1578, 1742, 1985, + 385, 1850, 1828, + 0, 1963, 1462, + 0, 2081, 0, + 0, 2201, 0, + 0, 2325, 0, + 0, 2451, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2269, 988, 2321, + 2267, 1002, 2319, + 2263, 1021, 2317, + 2259, 1044, 2315, + 2255, 1074, 2311, + 2247, 1112, 2305, + 2237, 1157, 2299, + 2225, 1211, 2291, + 2207, 1275, 2279, + 2181, 1349, 2261, + 2145, 1431, 2239, + 2091, 1523, 2205, + 2008, 1622, 2157, + 1865, 1727, 2083, + 1556, 1839, 1961, + 0, 1955, 1720, + 0, 2075, 451, + 0, 2197, 0, + 0, 2321, 0, + 0, 2449, 0, + 0, 2577, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2373, 877, 2385, + 2371, 895, 2385, + 2369, 918, 2383, + 2365, 948, 2381, + 2361, 985, 2377, + 2357, 1029, 2373, + 2349, 1083, 2367, + 2339, 1147, 2359, + 2325, 1220, 2349, + 2305, 1302, 2335, + 2277, 1393, 2315, + 2237, 1491, 2287, + 2179, 1597, 2247, + 2087, 1708, 2189, + 1922, 1823, 2095, + 1526, 1943, 1927, + 0, 2065, 1516, + 0, 2189, 0, + 0, 2317, 0, + 0, 2445, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2483, 666, 2461, + 2481, 695, 2459, + 2479, 731, 2457, + 2477, 775, 2455, + 2475, 828, 2453, + 2469, 890, 2449, + 2463, 962, 2445, + 2457, 1043, 2439, + 2445, 1133, 2429, + 2431, 1230, 2417, + 2409, 1335, 2401, + 2381, 1445, 2379, + 2339, 1561, 2347, + 2275, 1680, 2299, + 2173, 1802, 2227, + 1988, 1926, 2109, + 1481, 2053, 1877, + 0, 2181, 879, + 0, 2309, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2597, 0, 2543, + 2597, 84, 2543, + 2595, 209, 2541, + 2593, 335, 2541, + 2591, 463, 2539, + 2587, 592, 2535, + 2583, 721, 2531, + 2577, 852, 2527, + 2569, 982, 2519, + 2557, 1113, 2509, + 2543, 1244, 2495, + 2521, 1376, 2477, + 2489, 1508, 2451, + 2445, 1640, 2415, + 2379, 1771, 2359, + 2269, 1903, 2273, + 2065, 2035, 2127, + 1415, 2167, 1799, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2717, 0, 2637, + 2715, 0, 2635, + 2715, 0, 2635, + 2713, 0, 2633, + 2711, 0, 2631, + 2709, 0, 2629, + 2705, 0, 2627, + 2701, 304, 2621, + 2695, 644, 2617, + 2687, 886, 2609, + 2675, 1086, 2597, + 2659, 1263, 2583, + 2635, 1426, 2563, + 2605, 1580, 2533, + 2557, 1727, 2493, + 2487, 1871, 2429, + 2371, 2011, 2329, + 2149, 2149, 2149, + 1306, 2287, 1669, + 0, 2421, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2839, 0, 2737, + 2837, 0, 2735, + 2837, 0, 2735, + 2837, 0, 2735, + 2835, 0, 2733, + 2833, 0, 2731, + 2831, 0, 2729, + 2827, 0, 2725, + 2821, 0, 2721, + 2815, 0, 2713, + 2807, 713, 2705, + 2795, 1046, 2693, + 2779, 1286, 2679, + 2755, 1484, 2655, + 2723, 1661, 2625, + 2675, 1823, 2579, + 2601, 1977, 2509, + 2481, 2125, 2395, + 2243, 2267, 2179, + 1103, 2407, 1404, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2963, 0, 2843, + 2963, 0, 2843, + 2961, 0, 2841, + 2961, 0, 2841, + 2959, 0, 2839, + 2959, 0, 2839, + 2957, 0, 2837, + 2953, 0, 2833, + 2951, 0, 2831, + 2945, 0, 2825, + 2939, 0, 2819, + 2929, 276, 2809, + 2917, 987, 2797, + 2901, 1315, 2781, + 2877, 1553, 2757, + 2843, 1750, 2723, + 2795, 1926, 2673, + 2719, 2089, 2597, + 2595, 2241, 2471, + 2343, 2389, 2215, + 471, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 3089, 0, 2955, + 3089, 0, 2955, + 3089, 0, 2955, + 3087, 0, 2953, + 3087, 0, 2953, + 3085, 0, 2951, + 3085, 0, 2949, + 3083, 0, 2947, + 3079, 0, 2945, + 3075, 0, 2941, + 3071, 0, 2937, + 3065, 0, 2929, + 3055, 0, 2919, + 3043, 894, 2907, + 3025, 1351, 2889, + 3001, 1631, 2863, + 2967, 1848, 2829, + 2917, 2035, 2775, + 2841, 2205, 2693, + 2713, 2363, 2555, + 2451, 2513, 2259, + 0, 2659, 0, + 0, 2801, 0, + 0, 2939, 0, + 0, 3077, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3483, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3217, 0, 3071, + 3217, 0, 3071, + 3217, 0, 3071, + 3215, 0, 3071, + 3215, 0, 3069, + 3215, 0, 3069, + 3213, 0, 3067, + 3211, 0, 3065, + 3209, 0, 3063, + 3207, 0, 3061, + 3203, 0, 3057, + 3199, 0, 3051, + 3191, 0, 3045, + 3183, 0, 3035, + 3169, 729, 3021, + 3153, 1396, 3003, + 3129, 1717, 2977, + 3093, 1953, 2939, + 3043, 2149, 2883, + 2965, 2325, 2797, + 2833, 2485, 2647, + 2563, 2639, 2313, + 0, 2785, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3345, 0, 3191, + 3345, 0, 3191, + 3345, 0, 3191, + 3345, 0, 3191, + 3345, 0, 3191, + 3343, 0, 3189, + 3343, 0, 3189, + 3341, 0, 3187, + 3341, 0, 3185, + 3339, 0, 3183, + 3335, 0, 3181, + 3331, 0, 3177, + 3327, 0, 3171, + 3319, 0, 3163, + 3311, 0, 3153, + 3299, 330, 3139, + 3281, 1449, 3121, + 3257, 1813, 3093, + 3221, 2063, 3055, + 3169, 2267, 2997, + 3091, 2447, 2907, + 2957, 2611, 2747, + 2681, 2767, 2375, + 0, 2915, 0, + 0, 3059, 0, + 0, 3199, 0, + 0, 3337, 0, + 0, 3475, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3475, 0, 3315, + 3475, 0, 3315, + 3475, 0, 3313, + 3475, 0, 3313, + 3475, 0, 3313, + 3473, 0, 3313, + 3473, 0, 3313, + 3473, 0, 3311, + 3471, 0, 3309, + 3469, 0, 3309, + 3467, 0, 3305, + 3465, 0, 3303, + 3461, 0, 3299, + 3457, 0, 3293, + 3449, 0, 3285, + 3439, 0, 3275, + 3427, 0, 3261, + 3409, 1512, 3241, + 3385, 1915, 3213, + 3349, 2179, 3175, + 3299, 2389, 3115, + 3219, 2571, 3021, + 3083, 2739, 2855, + 2801, 2895, 2447, + 0, 3045, 0, + 0, 3189, 0, + 0, 3331, 0, + 0, 3469, 0, + 0, 3607, 0, + 0, 3741, 0, + 0, 3877, 0, + 0, 4011, 0, + 3605, 0, 3439, + 3605, 0, 3439, + 3605, 0, 3439, + 3605, 0, 3439, + 3605, 0, 3439, + 3605, 0, 3439, + 3603, 0, 3437, + 3603, 0, 3437, + 3603, 0, 3437, + 3601, 0, 3435, + 3599, 0, 3433, + 3597, 0, 3431, + 3595, 0, 3427, + 3591, 0, 3423, + 3587, 0, 3417, + 3579, 0, 3411, + 3569, 0, 3399, + 3557, 0, 3385, + 3539, 1585, 3365, + 3515, 2023, 3337, + 3479, 2297, 3297, + 3427, 2513, 3235, + 3347, 2699, 3139, + 3211, 2867, 2967, + 2925, 3025, 2529, + 0, 3175, 0, + 0, 3319, 0, + 0, 3461, 0, + 0, 3601, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4009, 0, + 3737, 0, 3567, + 3737, 0, 3567, + 3735, 0, 3567, + 3735, 0, 3565, + 3735, 0, 3565, + 3735, 0, 3565, + 3735, 0, 3565, + 3735, 0, 3565, + 3733, 0, 3563, + 3733, 0, 3563, + 3731, 0, 3561, + 3731, 0, 3559, + 3729, 0, 3557, + 3725, 0, 3555, + 3721, 0, 3549, + 3717, 0, 3545, + 3709, 0, 3537, + 3701, 0, 3525, + 3687, 0, 3511, + 3669, 1666, 3491, + 3645, 2137, 3463, + 3609, 2419, 3421, + 3557, 2639, 3359, + 3477, 2827, 3261, + 3339, 2995, 3083, + 3049, 3155, 2619, + 0, 3305, 0, + 0, 3451, 0, + 0, 3593, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3867, 0, 3695, + 3867, 0, 3695, + 3867, 0, 3695, + 3867, 0, 3695, + 3867, 0, 3693, + 3867, 0, 3693, + 3867, 0, 3693, + 3867, 0, 3693, + 3865, 0, 3693, + 3865, 0, 3691, + 3865, 0, 3691, + 3863, 0, 3689, + 3861, 0, 3687, + 3859, 0, 3685, + 3857, 0, 3683, + 3853, 0, 3677, + 3847, 0, 3673, + 3841, 0, 3665, + 3831, 0, 3653, + 3819, 0, 3639, + 3801, 1757, 3619, + 3775, 2255, 3589, + 3741, 2543, 3547, + 3687, 2765, 3485, + 3607, 2955, 3385, + 3469, 3125, 3203, + 3177, 3285, 2717, + 0, 3437, 0, + 0, 3581, 0, + 0, 3725, 0, + 0, 3863, 0, + 0, 4001, 0, + 3999, 0, 3823, + 3999, 0, 3823, + 3999, 0, 3823, + 3999, 0, 3823, + 3999, 0, 3823, + 3999, 0, 3823, + 3997, 0, 3823, + 3997, 0, 3823, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3995, 0, 3819, + 3995, 0, 3819, + 3993, 0, 3817, + 3991, 0, 3815, + 3987, 0, 3811, + 3983, 0, 3807, + 3979, 0, 3801, + 3971, 0, 3793, + 3963, 0, 3783, + 3949, 0, 3767, + 3931, 1855, 3747, + 3907, 2375, 3717, + 3871, 2671, 3675, + 3819, 2895, 3613, + 3737, 3085, 3511, + 3599, 3257, 3327, + 3305, 3415, 2823, + 0, 3567, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3941, + 4095, 0, 3937, + 4095, 0, 3931, + 4095, 0, 3923, + 4093, 0, 3911, + 4081, 0, 3897, + 4063, 1960, 3877, + 4039, 2499, 3847, + 4003, 2797, 3805, + 3949, 3023, 3741, + 3869, 3215, 3639, + 3729, 3387, 3451, + 3435, 3547, 2933, + 0, 3699, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4071, + 4095, 0, 4067, + 4095, 0, 4061, + 4095, 0, 4053, + 4095, 0, 4043, + 4095, 0, 4027, + 4095, 2071, 4007, + 4095, 2625, 3977, + 4095, 2927, 3935, + 4081, 3155, 3869, + 3999, 3347, 3767, + 3861, 3519, 3579, + 3563, 3679, 3049, + 0, 3831, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2187, 4095, + 4095, 2753, 4095, + 4095, 3057, 4065, + 4095, 3285, 4001, + 4095, 3477, 3897, + 3991, 3651, 3707, + 3695, 3811, 3167, + 0, 3963, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2305, 4095, + 4095, 2881, 4095, + 4095, 3187, 4095, + 4095, 3415, 4095, + 4095, 3609, 4027, + 4095, 3781, 3835, + 3825, 3943, 3291, + 1773, 1336, 2183, + 1767, 1342, 2181, + 1759, 1351, 2179, + 1747, 1363, 2175, + 1731, 1378, 2169, + 1708, 1398, 2163, + 1676, 1422, 2155, + 1629, 1453, 2143, + 1558, 1492, 2125, + 1442, 1539, 2101, + 1216, 1595, 2069, + 324, 1661, 2020, + 0, 1736, 1945, + 0, 1820, 1821, + 0, 1913, 1573, + 0, 2013, 6, + 0, 2119, 0, + 0, 2231, 0, + 0, 2349, 0, + 0, 2469, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1781, 1335, 2185, + 1775, 1341, 2183, + 1767, 1350, 2181, + 1755, 1362, 2177, + 1739, 1377, 2171, + 1717, 1397, 2165, + 1686, 1421, 2157, + 1640, 1453, 2145, + 1571, 1491, 2127, + 1458, 1538, 2105, + 1242, 1594, 2071, + 485, 1660, 2023, + 0, 1735, 1949, + 0, 1820, 1826, + 0, 1912, 1582, + 0, 2013, 212, + 0, 2119, 0, + 0, 2231, 0, + 0, 2349, 0, + 0, 2469, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1792, 1333, 2187, + 1786, 1340, 2185, + 1777, 1349, 2183, + 1766, 1361, 2179, + 1751, 1376, 2175, + 1729, 1395, 2169, + 1699, 1420, 2159, + 1654, 1452, 2147, + 1587, 1490, 2131, + 1479, 1537, 2107, + 1275, 1594, 2075, + 637, 1659, 2027, + 0, 1735, 1954, + 0, 1819, 1832, + 0, 1912, 1592, + 0, 2012, 393, + 0, 2119, 0, + 0, 2231, 0, + 0, 2349, 0, + 0, 2469, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1805, 1331, 2191, + 1799, 1338, 2189, + 1791, 1347, 2187, + 1780, 1359, 2183, + 1765, 1374, 2179, + 1744, 1394, 2173, + 1715, 1419, 2163, + 1672, 1450, 2151, + 1608, 1489, 2135, + 1505, 1536, 2113, + 1316, 1593, 2079, + 784, 1659, 2032, + 0, 1734, 1960, + 0, 1819, 1840, + 0, 1912, 1606, + 0, 2012, 558, + 0, 2119, 0, + 0, 2231, 0, + 0, 2349, 0, + 0, 2469, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1823, 1329, 2197, + 1817, 1336, 2195, + 1809, 1345, 2193, + 1799, 1356, 2189, + 1784, 1372, 2185, + 1764, 1392, 2177, + 1736, 1417, 2169, + 1695, 1448, 2157, + 1635, 1487, 2141, + 1538, 1535, 2119, + 1365, 1591, 2087, + 927, 1657, 2040, + 0, 1733, 1968, + 0, 1818, 1851, + 0, 1911, 1624, + 0, 2011, 713, + 0, 2119, 0, + 0, 2231, 0, + 0, 2347, 0, + 0, 2469, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1845, 1325, 2203, + 1839, 1332, 2201, + 1832, 1341, 2199, + 1822, 1353, 2195, + 1809, 1369, 2191, + 1790, 1389, 2185, + 1763, 1414, 2177, + 1725, 1446, 2165, + 1668, 1485, 2149, + 1579, 1532, 2127, + 1424, 1589, 2095, + 1067, 1656, 2049, + 0, 1732, 1979, + 0, 1817, 1865, + 0, 1910, 1647, + 0, 2011, 862, + 0, 2117, 0, + 0, 2231, 0, + 0, 2347, 0, + 0, 2467, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1873, 1321, 2213, + 1868, 1328, 2211, + 1861, 1337, 2207, + 1852, 1349, 2205, + 1839, 1365, 2199, + 1821, 1385, 2193, + 1797, 1410, 2185, + 1761, 1442, 2175, + 1709, 1482, 2159, + 1628, 1530, 2137, + 1492, 1587, 2107, + 1205, 1653, 2061, + 0, 1730, 1994, + 0, 1815, 1884, + 0, 1909, 1677, + 0, 2010, 1006, + 0, 2117, 0, + 0, 2229, 0, + 0, 2347, 0, + 0, 2467, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1908, 1315, 2223, + 1904, 1322, 2221, + 1897, 1331, 2219, + 1889, 1343, 2217, + 1877, 1359, 2211, + 1861, 1379, 2205, + 1838, 1405, 2197, + 1806, 1437, 2187, + 1759, 1477, 2171, + 1687, 1526, 2151, + 1570, 1583, 2121, + 1341, 1650, 2077, + 404, 1727, 2012, + 0, 1813, 1907, + 0, 1907, 1713, + 0, 2008, 1147, + 0, 2117, 0, + 0, 2229, 0, + 0, 2347, 0, + 0, 2467, 0, + 0, 2591, 0, + 0, 2715, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 1951, 1306, 2239, + 1947, 1313, 2237, + 1941, 1323, 2235, + 1934, 1335, 2231, + 1923, 1351, 2227, + 1908, 1372, 2221, + 1888, 1398, 2213, + 1859, 1431, 2203, + 1818, 1471, 2189, + 1755, 1520, 2167, + 1656, 1579, 2139, + 1476, 1646, 2097, + 1002, 1724, 2036, + 0, 1810, 1936, + 0, 1905, 1757, + 0, 2007, 1285, + 0, 2115, 0, + 0, 2227, 0, + 0, 2345, 0, + 0, 2467, 0, + 0, 2589, 0, + 0, 2715, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 2003, 1294, 2257, + 2000, 1302, 2257, + 1994, 1312, 2253, + 1987, 1324, 2251, + 1978, 1341, 2247, + 1965, 1362, 2241, + 1947, 1389, 2233, + 1922, 1422, 2223, + 1886, 1463, 2209, + 1833, 1513, 2191, + 1751, 1572, 2163, + 1611, 1641, 2123, + 1312, 1719, 2065, + 0, 1806, 1973, + 0, 1902, 1811, + 0, 2004, 1422, + 0, 2113, 0, + 0, 2227, 0, + 0, 2345, 0, + 0, 2465, 0, + 0, 2589, 0, + 0, 2715, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 2065, 1278, 2283, + 2061, 1286, 2281, + 2057, 1296, 2279, + 2051, 1309, 2275, + 2043, 1326, 2271, + 2031, 1348, 2267, + 2016, 1376, 2259, + 1994, 1410, 2249, + 1964, 1452, 2237, + 1920, 1503, 2219, + 1853, 1564, 2193, + 1745, 1634, 2157, + 1543, 1713, 2103, + 914, 1801, 2018, + 0, 1897, 1873, + 0, 2001, 1558, + 0, 2111, 0, + 0, 2225, 0, + 0, 2343, 0, + 0, 2465, 0, + 0, 2589, 0, + 0, 2715, 0, + 0, 2841, 0, + 0, 2971, 0, + 0, 3099, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 2135, 1256, 2313, + 2133, 1264, 2311, + 2129, 1275, 2309, + 2123, 1289, 2307, + 2117, 1306, 2303, + 2107, 1329, 2299, + 2095, 1358, 2291, + 2077, 1393, 2283, + 2051, 1437, 2271, + 2015, 1490, 2253, + 1961, 1552, 2231, + 1878, 1624, 2197, + 1737, 1704, 2147, + 1431, 1794, 2071, + 0, 1892, 1946, + 0, 1996, 1693, + 0, 2107, 0, + 0, 2221, 0, + 0, 2341, 0, + 0, 2463, 0, + 0, 2587, 0, + 0, 2713, 0, + 0, 2841, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 2215, 1225, 2351, + 2213, 1233, 2349, + 2211, 1244, 2347, + 2205, 1259, 2345, + 2201, 1278, 2343, + 2193, 1302, 2337, + 2181, 1333, 2331, + 2167, 1370, 2323, + 2145, 1416, 2313, + 2117, 1471, 2297, + 2075, 1536, 2275, + 2011, 1610, 2245, + 1910, 1693, 2201, + 1725, 1785, 2135, + 1221, 1884, 2027, + 0, 1990, 1827, + 0, 2101, 1211, + 0, 2219, 0, + 0, 2337, 0, + 0, 2461, 0, + 0, 2585, 0, + 0, 2713, 0, + 0, 2841, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 2305, 1179, 2397, + 2303, 1188, 2397, + 2301, 1200, 2395, + 2297, 1217, 2393, + 2293, 1237, 2389, + 2285, 1264, 2385, + 2277, 1297, 2381, + 2265, 1337, 2373, + 2249, 1387, 2363, + 2225, 1445, 2349, + 2193, 1513, 2329, + 2145, 1591, 2303, + 2071, 1677, 2265, + 1949, 1772, 2207, + 1710, 1874, 2117, + 517, 1982, 1960, + 0, 2095, 1594, + 0, 2213, 0, + 0, 2335, 0, + 0, 2457, 0, + 0, 2583, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 2401, 1109, 2453, + 2401, 1120, 2453, + 2399, 1134, 2451, + 2395, 1153, 2449, + 2391, 1177, 2447, + 2387, 1206, 2443, + 2379, 1244, 2437, + 2369, 1289, 2431, + 2357, 1344, 2423, + 2339, 1407, 2411, + 2313, 1481, 2393, + 2277, 1564, 2371, + 2223, 1655, 2337, + 2139, 1754, 2289, + 1997, 1860, 2215, + 1688, 1971, 2093, + 0, 2087, 1852, + 0, 2207, 583, + 0, 2329, 0, + 0, 2453, 0, + 0, 2581, 0, + 0, 2709, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2505, 995, 2519, + 2505, 1009, 2517, + 2503, 1027, 2517, + 2501, 1050, 2515, + 2497, 1080, 2513, + 2493, 1117, 2509, + 2489, 1162, 2505, + 2481, 1216, 2499, + 2471, 1279, 2491, + 2457, 1352, 2481, + 2437, 1434, 2467, + 2409, 1525, 2447, + 2369, 1623, 2419, + 2311, 1729, 2381, + 2219, 1840, 2321, + 2055, 1955, 2227, + 1658, 2075, 2059, + 0, 2197, 1649, + 0, 2321, 0, + 0, 2449, 0, + 0, 2577, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2615, 775, 2593, + 2615, 798, 2593, + 2613, 827, 2591, + 2611, 863, 2589, + 2609, 907, 2587, + 2607, 960, 2585, + 2601, 1022, 2581, + 2597, 1094, 2577, + 2589, 1175, 2571, + 2577, 1265, 2561, + 2563, 1363, 2551, + 2541, 1467, 2533, + 2513, 1578, 2511, + 2471, 1693, 2479, + 2407, 1812, 2431, + 2305, 1934, 2359, + 2121, 2059, 2241, + 1614, 2185, 2009, + 0, 2313, 1012, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2731, 0, 2677, + 2729, 94, 2677, + 2729, 216, 2675, + 2727, 341, 2675, + 2725, 467, 2673, + 2723, 595, 2671, + 2719, 724, 2667, + 2715, 853, 2663, + 2709, 984, 2659, + 2701, 1114, 2651, + 2689, 1245, 2641, + 2675, 1377, 2629, + 2653, 1508, 2609, + 2621, 1640, 2583, + 2577, 1772, 2547, + 2511, 1904, 2491, + 2401, 2035, 2407, + 2197, 2167, 2259, + 1547, 2299, 1931, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2849, 0, 2769, + 2849, 0, 2769, + 2847, 0, 2767, + 2847, 0, 2767, + 2845, 0, 2765, + 2843, 0, 2763, + 2841, 0, 2761, + 2837, 0, 2759, + 2833, 436, 2755, + 2827, 776, 2749, + 2819, 1018, 2741, + 2807, 1218, 2729, + 2791, 1395, 2715, + 2769, 1558, 2695, + 2737, 1712, 2665, + 2689, 1859, 2625, + 2619, 2003, 2561, + 2503, 2143, 2463, + 2281, 2281, 2281, + 1438, 2419, 1802, + 0, 2553, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2971, 0, 2869, + 2971, 0, 2869, + 2971, 0, 2867, + 2969, 0, 2867, + 2969, 0, 2867, + 2967, 0, 2865, + 2965, 0, 2863, + 2963, 0, 2861, + 2959, 0, 2857, + 2953, 0, 2853, + 2947, 96, 2847, + 2939, 845, 2837, + 2927, 1178, 2827, + 2911, 1418, 2811, + 2887, 1617, 2789, + 2855, 1793, 2757, + 2807, 1955, 2711, + 2733, 2109, 2641, + 2613, 2257, 2527, + 2375, 2399, 2311, + 1236, 2539, 1536, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 3095, 0, 2975, + 3095, 0, 2975, + 3095, 0, 2975, + 3095, 0, 2973, + 3093, 0, 2973, + 3093, 0, 2973, + 3091, 0, 2971, + 3089, 0, 2969, + 3085, 0, 2965, + 3083, 0, 2963, + 3077, 0, 2957, + 3071, 0, 2951, + 3063, 409, 2941, + 3049, 1119, 2929, + 3033, 1447, 2913, + 3009, 1685, 2889, + 2975, 1883, 2855, + 2927, 2059, 2805, + 2851, 2221, 2729, + 2727, 2373, 2603, + 2475, 2521, 2347, + 602, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3221, 0, 3087, + 3221, 0, 3087, + 3221, 0, 3087, + 3221, 0, 3087, + 3219, 0, 3085, + 3219, 0, 3085, + 3217, 0, 3083, + 3217, 0, 3083, + 3215, 0, 3079, + 3211, 0, 3077, + 3209, 0, 3073, + 3203, 0, 3069, + 3197, 0, 3061, + 3187, 0, 3051, + 3175, 1026, 3039, + 3159, 1483, 3021, + 3135, 1763, 2997, + 3099, 1980, 2961, + 3049, 2167, 2907, + 2973, 2337, 2825, + 2845, 2495, 2687, + 2583, 2645, 2391, + 0, 2791, 0, + 0, 2933, 0, + 0, 3071, 0, + 0, 3209, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3615, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3349, 0, 3203, + 3349, 0, 3203, + 3349, 0, 3203, + 3349, 0, 3203, + 3347, 0, 3203, + 3347, 0, 3201, + 3347, 0, 3201, + 3345, 0, 3199, + 3343, 0, 3199, + 3341, 0, 3195, + 3339, 0, 3193, + 3335, 0, 3189, + 3331, 0, 3183, + 3323, 0, 3177, + 3315, 0, 3167, + 3303, 861, 3153, + 3285, 1528, 3135, + 3261, 1850, 3109, + 3225, 2085, 3071, + 3175, 2281, 3015, + 3097, 2457, 2929, + 2965, 2617, 2779, + 2695, 2771, 2445, + 0, 2919, 0, + 0, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3475, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3477, 0, 3323, + 3477, 0, 3323, + 3477, 0, 3323, + 3477, 0, 3323, + 3477, 0, 3323, + 3477, 0, 3323, + 3475, 0, 3321, + 3475, 0, 3321, + 3473, 0, 3319, + 3473, 0, 3317, + 3471, 0, 3315, + 3467, 0, 3313, + 3463, 0, 3309, + 3459, 0, 3303, + 3453, 0, 3295, + 3443, 0, 3285, + 3431, 462, 3271, + 3413, 1581, 3253, + 3389, 1945, 3225, + 3353, 2195, 3187, + 3303, 2399, 3129, + 3223, 2579, 3039, + 3089, 2743, 2879, + 2813, 2899, 2507, + 0, 3047, 0, + 0, 3191, 0, + 0, 3331, 0, + 0, 3469, 0, + 0, 3607, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3607, 0, 3447, + 3607, 0, 3447, + 3607, 0, 3447, + 3607, 0, 3447, + 3607, 0, 3445, + 3607, 0, 3445, + 3605, 0, 3445, + 3605, 0, 3445, + 3605, 0, 3443, + 3603, 0, 3441, + 3601, 0, 3441, + 3599, 0, 3439, + 3597, 0, 3435, + 3593, 0, 3431, + 3589, 0, 3425, + 3581, 0, 3417, + 3573, 0, 3407, + 3559, 0, 3393, + 3541, 1644, 3373, + 3517, 2047, 3347, + 3483, 2311, 3307, + 3431, 2521, 3247, + 3351, 2703, 3153, + 3215, 2871, 2987, + 2933, 3027, 2579, + 0, 3177, 0, + 0, 3321, 0, + 0, 3463, 0, + 0, 3601, 0, + 0, 3739, 0, + 0, 3875, 0, + 0, 4009, 0, + 3737, 0, 3571, + 3737, 0, 3571, + 3737, 0, 3571, + 3737, 0, 3571, + 3737, 0, 3571, + 3737, 0, 3571, + 3737, 0, 3571, + 3737, 0, 3569, + 3735, 0, 3569, + 3735, 0, 3569, + 3733, 0, 3567, + 3731, 0, 3565, + 3729, 0, 3563, + 3727, 0, 3559, + 3723, 0, 3555, + 3719, 0, 3549, + 3711, 0, 3543, + 3703, 0, 3531, + 3689, 0, 3517, + 3671, 1717, 3497, + 3647, 2155, 3469, + 3611, 2429, 3429, + 3559, 2645, 3367, + 3479, 2831, 3271, + 3343, 2999, 3099, + 3057, 3157, 2661, + 0, 3307, 0, + 0, 3451, 0, + 0, 3593, 0, + 0, 3733, 0, + 0, 3869, 0, + 0, 4005, 0, + 3869, 0, 3699, + 3869, 0, 3699, + 3869, 0, 3699, + 3869, 0, 3699, + 3867, 0, 3697, + 3867, 0, 3697, + 3867, 0, 3697, + 3867, 0, 3697, + 3867, 0, 3697, + 3867, 0, 3695, + 3865, 0, 3695, + 3865, 0, 3693, + 3863, 0, 3691, + 3861, 0, 3689, + 3857, 0, 3687, + 3853, 0, 3683, + 3849, 0, 3677, + 3841, 0, 3669, + 3833, 0, 3657, + 3819, 0, 3643, + 3801, 1798, 3623, + 3777, 2269, 3595, + 3741, 2551, 3553, + 3689, 2771, 3491, + 3609, 2959, 3393, + 3471, 3129, 3215, + 3181, 3287, 2751, + 0, 3437, 0, + 0, 3583, 0, + 0, 3725, 0, + 0, 3865, 0, + 0, 4001, 0, + 3999, 0, 3827, + 3999, 0, 3827, + 3999, 0, 3827, + 3999, 0, 3827, + 3999, 0, 3827, + 3999, 0, 3827, + 3999, 0, 3825, + 3999, 0, 3825, + 3999, 0, 3825, + 3997, 0, 3825, + 3997, 0, 3823, + 3997, 0, 3823, + 3995, 0, 3821, + 3993, 0, 3819, + 3991, 0, 3817, + 3989, 0, 3815, + 3985, 0, 3809, + 3979, 0, 3805, + 3973, 0, 3797, + 3963, 0, 3785, + 3951, 0, 3771, + 3933, 1889, 3751, + 3907, 2387, 3721, + 3873, 2677, 3679, + 3819, 2899, 3617, + 3739, 3087, 3517, + 3601, 3259, 3335, + 3309, 3417, 2849, + 0, 3569, 0, + 0, 3715, 0, + 0, 3857, 0, + 0, 3995, 0, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3943, + 4095, 0, 3939, + 4095, 0, 3933, + 4095, 0, 3925, + 4095, 0, 3915, + 4081, 0, 3899, + 4063, 1987, 3879, + 4039, 2507, 3849, + 4003, 2803, 3807, + 3951, 3027, 3745, + 3869, 3217, 3643, + 3731, 3389, 3459, + 3437, 3549, 2955, + 0, 3699, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4073, + 4095, 0, 4069, + 4095, 0, 4063, + 4095, 0, 4055, + 4095, 0, 4043, + 4095, 0, 4029, + 4095, 2093, 4009, + 4095, 2631, 3979, + 4095, 2931, 3937, + 4081, 3157, 3873, + 4001, 3347, 3771, + 3861, 3519, 3583, + 3567, 3679, 3065, + 0, 3831, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2203, 4095, + 4095, 2757, 4095, + 4095, 3059, 4067, + 4095, 3287, 4003, + 4095, 3479, 3899, + 3993, 3651, 3711, + 3697, 3811, 3181, + 0, 3963, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2319, 4095, + 4095, 2885, 4095, + 4095, 3189, 4095, + 4095, 3417, 4095, + 4095, 3609, 4029, + 4095, 3783, 3839, + 3827, 3943, 3299, + 1904, 1463, 2315, + 1900, 1469, 2313, + 1893, 1475, 2311, + 1884, 1484, 2309, + 1873, 1496, 2305, + 1856, 1511, 2301, + 1833, 1530, 2293, + 1801, 1555, 2285, + 1753, 1586, 2273, + 1681, 1625, 2255, + 1561, 1672, 2233, + 1327, 1728, 2199, + 282, 1793, 2149, + 0, 1868, 2075, + 0, 1952, 1949, + 0, 2045, 1699, + 0, 2145, 0, + 0, 2253, 0, + 0, 2365, 0, + 0, 2481, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3105, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1910, 1463, 2317, + 1906, 1468, 2315, + 1899, 1475, 2313, + 1891, 1483, 2311, + 1879, 1495, 2307, + 1863, 1510, 2301, + 1840, 1530, 2295, + 1808, 1554, 2287, + 1761, 1586, 2275, + 1690, 1624, 2257, + 1574, 1671, 2235, + 1348, 1727, 2201, + 456, 1793, 2151, + 0, 1868, 2077, + 0, 1952, 1953, + 0, 2045, 1706, + 0, 2145, 138, + 0, 2251, 0, + 0, 2365, 0, + 0, 2481, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1918, 1462, 2319, + 1913, 1467, 2317, + 1907, 1474, 2315, + 1899, 1482, 2313, + 1887, 1494, 2309, + 1871, 1509, 2305, + 1849, 1529, 2297, + 1818, 1554, 2289, + 1772, 1585, 2277, + 1703, 1623, 2261, + 1590, 1670, 2237, + 1374, 1727, 2203, + 617, 1792, 2155, + 0, 1867, 2081, + 0, 1952, 1958, + 0, 2045, 1714, + 0, 2145, 344, + 0, 2251, 0, + 0, 2363, 0, + 0, 2481, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1928, 1460, 2321, + 1924, 1465, 2319, + 1918, 1472, 2317, + 1909, 1481, 2315, + 1898, 1493, 2311, + 1883, 1508, 2307, + 1861, 1528, 2301, + 1831, 1552, 2291, + 1786, 1584, 2279, + 1719, 1622, 2263, + 1611, 1670, 2241, + 1407, 1726, 2207, + 769, 1792, 2159, + 0, 1867, 2085, + 0, 1951, 1964, + 0, 2044, 1724, + 0, 2145, 525, + 0, 2251, 0, + 0, 2363, 0, + 0, 2481, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1942, 1458, 2325, + 1937, 1463, 2323, + 1931, 1470, 2321, + 1923, 1479, 2319, + 1912, 1491, 2315, + 1897, 1506, 2311, + 1877, 1526, 2305, + 1847, 1551, 2295, + 1804, 1582, 2283, + 1740, 1621, 2267, + 1637, 1668, 2245, + 1448, 1725, 2213, + 916, 1791, 2165, + 0, 1866, 2093, + 0, 1951, 1972, + 0, 2044, 1738, + 0, 2145, 690, + 0, 2251, 0, + 0, 2363, 0, + 0, 2481, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1959, 1456, 2331, + 1955, 1461, 2329, + 1949, 1468, 2327, + 1941, 1477, 2325, + 1931, 1489, 2321, + 1916, 1504, 2317, + 1896, 1524, 2309, + 1868, 1549, 2301, + 1828, 1580, 2289, + 1767, 1619, 2273, + 1670, 1667, 2251, + 1497, 1723, 2219, + 1059, 1789, 2171, + 0, 1865, 2101, + 0, 1950, 1983, + 0, 2043, 1757, + 0, 2143, 845, + 0, 2251, 0, + 0, 2363, 0, + 0, 2479, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1981, 1452, 2337, + 1977, 1457, 2335, + 1972, 1464, 2333, + 1964, 1474, 2331, + 1954, 1485, 2327, + 1941, 1501, 2323, + 1922, 1521, 2317, + 1895, 1546, 2309, + 1857, 1578, 2297, + 1800, 1617, 2281, + 1711, 1665, 2259, + 1556, 1721, 2227, + 1199, 1788, 2181, + 0, 1864, 2111, + 0, 1949, 1998, + 0, 2042, 1780, + 0, 2143, 994, + 0, 2251, 0, + 0, 2363, 0, + 0, 2479, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2009, 1448, 2345, + 2005, 1453, 2345, + 2000, 1460, 2343, + 1993, 1469, 2339, + 1984, 1481, 2337, + 1971, 1497, 2333, + 1953, 1517, 2325, + 1929, 1542, 2317, + 1893, 1574, 2307, + 1841, 1614, 2291, + 1761, 1662, 2269, + 1624, 1719, 2239, + 1337, 1786, 2193, + 0, 1862, 2125, + 0, 1947, 2016, + 0, 2041, 1809, + 0, 2141, 1138, + 0, 2249, 0, + 0, 2363, 0, + 0, 2479, 0, + 0, 2599, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2044, 1441, 2357, + 2040, 1447, 2355, + 2036, 1454, 2353, + 2029, 1463, 2351, + 2021, 1475, 2349, + 2009, 1491, 2343, + 1993, 1511, 2337, + 1970, 1537, 2329, + 1938, 1569, 2319, + 1891, 1609, 2303, + 1819, 1658, 2283, + 1702, 1715, 2253, + 1473, 1783, 2209, + 536, 1859, 2145, + 0, 1945, 2039, + 0, 2039, 1845, + 0, 2141, 1279, + 0, 2249, 0, + 0, 2361, 0, + 0, 2479, 0, + 0, 2599, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2087, 1433, 2371, + 2083, 1438, 2371, + 2079, 1445, 2369, + 2073, 1455, 2367, + 2065, 1467, 2363, + 2055, 1483, 2359, + 2040, 1504, 2353, + 2020, 1530, 2345, + 1991, 1563, 2335, + 1950, 1603, 2321, + 1887, 1652, 2299, + 1788, 1711, 2271, + 1609, 1779, 2229, + 1134, 1856, 2167, + 0, 1942, 2069, + 0, 2037, 1889, + 0, 2139, 1417, + 0, 2247, 0, + 0, 2361, 0, + 0, 2477, 0, + 0, 2599, 0, + 0, 2723, 0, + 0, 2847, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2139, 1421, 2391, + 2135, 1427, 2389, + 2131, 1434, 2389, + 2127, 1444, 2385, + 2119, 1456, 2383, + 2111, 1473, 2379, + 2097, 1494, 2373, + 2079, 1521, 2365, + 2055, 1554, 2355, + 2018, 1595, 2341, + 1965, 1645, 2323, + 1883, 1704, 2295, + 1743, 1773, 2255, + 1444, 1851, 2197, + 0, 1938, 2105, + 0, 2034, 1943, + 0, 2137, 1554, + 0, 2245, 0, + 0, 2359, 0, + 0, 2477, 0, + 0, 2597, 0, + 0, 2721, 0, + 0, 2847, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2199, 1405, 2415, + 2197, 1411, 2415, + 2193, 1418, 2413, + 2189, 1428, 2411, + 2183, 1441, 2407, + 2175, 1458, 2403, + 2163, 1480, 2399, + 2149, 1508, 2391, + 2127, 1542, 2383, + 2097, 1584, 2369, + 2051, 1635, 2351, + 1985, 1696, 2325, + 1877, 1766, 2289, + 1675, 1845, 2235, + 1046, 1933, 2149, + 0, 2030, 2005, + 0, 2133, 1690, + 0, 2243, 0, + 0, 2357, 0, + 0, 2475, 0, + 0, 2597, 0, + 0, 2721, 0, + 0, 2847, 0, + 0, 2973, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2269, 1382, 2447, + 2267, 1388, 2445, + 2265, 1396, 2443, + 2261, 1407, 2441, + 2255, 1421, 2439, + 2249, 1438, 2435, + 2239, 1461, 2431, + 2227, 1490, 2423, + 2209, 1526, 2415, + 2183, 1569, 2403, + 2147, 1622, 2385, + 2093, 1684, 2363, + 2010, 1756, 2329, + 1869, 1837, 2279, + 1564, 1926, 2203, + 0, 2024, 2077, + 0, 2129, 1825, + 0, 2239, 0, + 0, 2353, 0, + 0, 2473, 0, + 0, 2595, 0, + 0, 2719, 0, + 0, 2845, 0, + 0, 2973, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2349, 1350, 2485, + 2347, 1357, 2483, + 2345, 1365, 2481, + 2343, 1377, 2481, + 2339, 1391, 2477, + 2333, 1410, 2475, + 2325, 1434, 2469, + 2313, 1465, 2463, + 2299, 1502, 2455, + 2279, 1548, 2445, + 2249, 1603, 2429, + 2207, 1668, 2407, + 2143, 1742, 2377, + 2042, 1825, 2333, + 1857, 1917, 2267, + 1353, 2016, 2159, + 0, 2123, 1959, + 0, 2233, 1343, + 0, 2351, 0, + 0, 2469, 0, + 0, 2593, 0, + 0, 2717, 0, + 0, 2845, 0, + 0, 2973, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2439, 1303, 2531, + 2437, 1311, 2529, + 2435, 1320, 2529, + 2433, 1333, 2527, + 2429, 1349, 2525, + 2425, 1369, 2521, + 2417, 1396, 2517, + 2409, 1429, 2513, + 2397, 1469, 2505, + 2381, 1519, 2495, + 2357, 1577, 2481, + 2325, 1645, 2463, + 2277, 1723, 2435, + 2203, 1809, 2397, + 2081, 1904, 2339, + 1842, 2006, 2249, + 650, 2115, 2093, + 0, 2227, 1726, + 0, 2345, 0, + 0, 2467, 0, + 0, 2589, 0, + 0, 2715, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 2535, 1232, 2587, + 2535, 1241, 2585, + 2533, 1252, 2585, + 2531, 1266, 2583, + 2527, 1285, 2581, + 2523, 1309, 2579, + 2519, 1339, 2575, + 2511, 1376, 2569, + 2503, 1421, 2563, + 2489, 1476, 2555, + 2471, 1540, 2543, + 2445, 1613, 2527, + 2409, 1696, 2503, + 2355, 1787, 2469, + 2271, 1886, 2421, + 2129, 1992, 2347, + 1820, 2103, 2225, + 0, 2219, 1984, + 0, 2339, 715, + 0, 2461, 0, + 0, 2585, 0, + 0, 2713, 0, + 0, 2841, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 2639, 1115, 2651, + 2639, 1126, 2651, + 2637, 1141, 2649, + 2635, 1159, 2649, + 2633, 1182, 2647, + 2629, 1212, 2645, + 2625, 1249, 2641, + 2621, 1294, 2637, + 2613, 1348, 2631, + 2603, 1411, 2623, + 2589, 1484, 2613, + 2569, 1566, 2599, + 2541, 1657, 2579, + 2503, 1756, 2553, + 2443, 1861, 2513, + 2351, 1972, 2453, + 2187, 2087, 2359, + 1790, 2207, 2191, + 0, 2329, 1781, + 0, 2455, 0, + 0, 2581, 0, + 0, 2709, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2749, 890, 2725, + 2749, 908, 2725, + 2747, 930, 2725, + 2745, 959, 2723, + 2743, 995, 2721, + 2741, 1039, 2719, + 2739, 1092, 2717, + 2735, 1154, 2713, + 2729, 1226, 2709, + 2721, 1307, 2703, + 2709, 1397, 2695, + 2695, 1495, 2683, + 2673, 1599, 2665, + 2645, 1710, 2643, + 2603, 1825, 2611, + 2539, 1944, 2563, + 2437, 2067, 2491, + 2253, 2191, 2373, + 1746, 2317, 2141, + 0, 2445, 1143, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2863, 0, 2809, + 2863, 107, 2809, + 2863, 226, 2809, + 2861, 348, 2807, + 2859, 473, 2807, + 2857, 599, 2805, + 2855, 727, 2803, + 2851, 856, 2799, + 2847, 986, 2795, + 2841, 1116, 2791, + 2833, 1246, 2783, + 2821, 1377, 2773, + 2807, 1509, 2761, + 2785, 1640, 2741, + 2755, 1772, 2715, + 2709, 1904, 2679, + 2643, 2036, 2623, + 2533, 2167, 2539, + 2329, 2299, 2391, + 1679, 2431, 2063, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2981, 0, 2901, + 2981, 0, 2901, + 2981, 0, 2901, + 2981, 0, 2899, + 2979, 0, 2899, + 2977, 0, 2897, + 2975, 0, 2895, + 2973, 0, 2893, + 2969, 0, 2891, + 2965, 568, 2887, + 2959, 908, 2881, + 2951, 1150, 2873, + 2939, 1350, 2861, + 2923, 1527, 2847, + 2901, 1690, 2827, + 2869, 1844, 2797, + 2821, 1992, 2757, + 2751, 2135, 2693, + 2635, 2275, 2595, + 2413, 2413, 2413, + 1570, 2551, 1934, + 0, 2685, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 3103, 0, 3001, + 3103, 0, 3001, + 3103, 0, 3001, + 3103, 0, 3001, + 3101, 0, 2999, + 3101, 0, 2999, + 3099, 0, 2997, + 3097, 0, 2995, + 3095, 0, 2993, + 3091, 0, 2989, + 3087, 0, 2985, + 3079, 228, 2979, + 3071, 978, 2969, + 3059, 1310, 2959, + 3043, 1550, 2943, + 3019, 1749, 2921, + 2987, 1925, 2889, + 2939, 2087, 2843, + 2865, 2241, 2773, + 2745, 2389, 2659, + 2507, 2531, 2443, + 1368, 2673, 1669, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 3227, 0, 3107, + 3227, 0, 3107, + 3227, 0, 3107, + 3227, 0, 3107, + 3227, 0, 3107, + 3225, 0, 3105, + 3225, 0, 3105, + 3223, 0, 3103, + 3221, 0, 3101, + 3219, 0, 3099, + 3215, 0, 3095, + 3209, 0, 3089, + 3203, 0, 3083, + 3195, 541, 3073, + 3183, 1251, 3061, + 3165, 1579, 3045, + 3141, 1817, 3021, + 3109, 2015, 2987, + 3059, 2191, 2937, + 2983, 2353, 2861, + 2859, 2505, 2735, + 2609, 2653, 2479, + 735, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3353, 0, 3219, + 3353, 0, 3219, + 3353, 0, 3219, + 3353, 0, 3219, + 3353, 0, 3219, + 3353, 0, 3217, + 3351, 0, 3217, + 3351, 0, 3215, + 3349, 0, 3215, + 3347, 0, 3213, + 3343, 0, 3209, + 3341, 0, 3205, + 3335, 0, 3201, + 3329, 0, 3193, + 3319, 0, 3185, + 3307, 1158, 3171, + 3291, 1616, 3153, + 3267, 1895, 3129, + 3233, 2113, 3093, + 3183, 2299, 3039, + 3105, 2469, 2957, + 2977, 2627, 2819, + 2715, 2777, 2523, + 0, 2923, 0, + 0, 3065, 0, + 0, 3203, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3481, 0, 3337, + 3481, 0, 3335, + 3481, 0, 3335, + 3481, 0, 3335, + 3481, 0, 3335, + 3481, 0, 3335, + 3479, 0, 3333, + 3479, 0, 3333, + 3477, 0, 3331, + 3475, 0, 3331, + 3473, 0, 3327, + 3471, 0, 3325, + 3467, 0, 3321, + 3463, 0, 3315, + 3455, 0, 3309, + 3447, 0, 3299, + 3435, 994, 3285, + 3417, 1660, 3267, + 3393, 1982, 3241, + 3359, 2217, 3203, + 3307, 2413, 3147, + 3229, 2589, 3061, + 3097, 2749, 2911, + 2827, 2903, 2577, + 0, 3051, 0, + 0, 3193, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3607, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3611, 0, 3457, + 3611, 0, 3455, + 3609, 0, 3455, + 3609, 0, 3455, + 3609, 0, 3455, + 3609, 0, 3455, + 3609, 0, 3455, + 3607, 0, 3453, + 3607, 0, 3453, + 3605, 0, 3451, + 3605, 0, 3449, + 3603, 0, 3447, + 3599, 0, 3445, + 3595, 0, 3441, + 3591, 0, 3435, + 3585, 0, 3427, + 3575, 0, 3417, + 3563, 594, 3403, + 3545, 1714, 3385, + 3521, 2077, 3357, + 3485, 2327, 3319, + 3435, 2531, 3261, + 3355, 2711, 3171, + 3221, 2875, 3011, + 2945, 3031, 2639, + 0, 3179, 0, + 0, 3323, 0, + 0, 3463, 0, + 0, 3603, 0, + 0, 3739, 0, + 0, 3875, 0, + 0, 4009, 0, + 3739, 0, 3579, + 3739, 0, 3579, + 3739, 0, 3579, + 3739, 0, 3579, + 3739, 0, 3579, + 3739, 0, 3577, + 3739, 0, 3577, + 3739, 0, 3577, + 3737, 0, 3577, + 3737, 0, 3575, + 3735, 0, 3575, + 3733, 0, 3573, + 3731, 0, 3571, + 3729, 0, 3567, + 3725, 0, 3563, + 3721, 0, 3557, + 3713, 0, 3549, + 3705, 0, 3539, + 3691, 0, 3525, + 3673, 1776, 3505, + 3649, 2179, 3479, + 3615, 2443, 3439, + 3563, 2653, 3379, + 3483, 2835, 3285, + 3347, 3003, 3119, + 3065, 3159, 2711, + 0, 3309, 0, + 0, 3453, 0, + 0, 3595, 0, + 0, 3733, 0, + 0, 3871, 0, + 0, 4007, 0, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3701, + 3867, 0, 3701, + 3867, 0, 3701, + 3865, 0, 3699, + 3863, 0, 3697, + 3861, 0, 3695, + 3859, 0, 3691, + 3855, 0, 3687, + 3851, 0, 3683, + 3843, 0, 3675, + 3835, 0, 3663, + 3821, 0, 3649, + 3803, 1849, 3629, + 3779, 2287, 3601, + 3743, 2561, 3561, + 3691, 2777, 3499, + 3611, 2963, 3403, + 3475, 3131, 3231, + 3189, 3289, 2793, + 0, 3439, 0, + 0, 3583, 0, + 0, 3725, 0, + 0, 3865, 0, + 0, 4001, 0, + 4001, 0, 3831, + 4001, 0, 3831, + 4001, 0, 3831, + 4001, 0, 3831, + 4001, 0, 3831, + 4001, 0, 3831, + 3999, 0, 3829, + 3999, 0, 3829, + 3999, 0, 3829, + 3999, 0, 3829, + 3999, 0, 3827, + 3997, 0, 3827, + 3997, 0, 3825, + 3995, 0, 3823, + 3993, 0, 3821, + 3989, 0, 3819, + 3985, 0, 3815, + 3981, 0, 3809, + 3975, 0, 3801, + 3965, 0, 3791, + 3951, 0, 3775, + 3935, 1931, 3755, + 3909, 2401, 3727, + 3873, 2683, 3685, + 3821, 2903, 3623, + 3741, 3091, 3525, + 3603, 3261, 3347, + 3313, 3419, 2883, + 0, 3569, 0, + 0, 3715, 0, + 0, 3857, 0, + 0, 3997, 0, + 4095, 0, 3959, + 4095, 0, 3959, + 4095, 0, 3959, + 4095, 0, 3959, + 4095, 0, 3959, + 4095, 0, 3959, + 4095, 0, 3959, + 4095, 0, 3957, + 4095, 0, 3957, + 4095, 0, 3957, + 4095, 0, 3957, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3953, + 4095, 0, 3951, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3943, + 4095, 0, 3937, + 4095, 0, 3929, + 4095, 0, 3917, + 4083, 0, 3903, + 4065, 2021, 3883, + 4041, 2519, 3853, + 4005, 2809, 3811, + 3951, 3031, 3749, + 3871, 3219, 3649, + 3733, 3391, 3467, + 3441, 3549, 2981, + 0, 3701, 0, + 0, 3847, 0, + 0, 3989, 0, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4075, + 4095, 0, 4071, + 4095, 0, 4065, + 4095, 0, 4057, + 4095, 0, 4047, + 4095, 0, 4031, + 4095, 2119, 4011, + 4095, 2639, 3981, + 4095, 2935, 3939, + 4083, 3159, 3877, + 4001, 3349, 3775, + 3863, 3521, 3591, + 3569, 3681, 3087, + 0, 3831, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2225, 4095, + 4095, 2763, 4095, + 4095, 3063, 4069, + 4095, 3289, 4005, + 4095, 3479, 3903, + 3993, 3651, 3715, + 3699, 3811, 3197, + 0, 3963, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2335, 4095, + 4095, 2889, 4095, + 4095, 3191, 4095, + 4095, 3419, 4095, + 4095, 3611, 4031, + 4095, 3783, 3843, + 3829, 3943, 3313, + 2035, 1592, 2447, + 2032, 1596, 2445, + 2027, 1601, 2445, + 2021, 1608, 2443, + 2012, 1617, 2439, + 2000, 1629, 2435, + 1983, 1644, 2431, + 1960, 1663, 2425, + 1927, 1688, 2415, + 1879, 1719, 2403, + 1805, 1757, 2387, + 1684, 1804, 2363, + 1443, 1860, 2329, + 219, 1926, 2281, + 0, 2001, 2205, + 0, 2085, 2079, + 0, 2177, 1827, + 0, 2277, 0, + 0, 2385, 0, + 0, 2497, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2857, 0, + 0, 2981, 0, + 0, 3109, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2040, 1592, 2447, + 2036, 1596, 2447, + 2032, 1601, 2445, + 2025, 1607, 2443, + 2017, 1616, 2441, + 2005, 1628, 2437, + 1988, 1643, 2433, + 1965, 1662, 2425, + 1933, 1687, 2417, + 1885, 1718, 2405, + 1813, 1757, 2387, + 1693, 1804, 2365, + 1459, 1860, 2331, + 414, 1925, 2281, + 0, 2000, 2207, + 0, 2085, 2081, + 0, 2177, 1831, + 0, 2277, 16, + 0, 2385, 0, + 0, 2497, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2857, 0, + 0, 2981, 0, + 0, 3109, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2046, 1591, 2449, + 2042, 1595, 2449, + 2038, 1600, 2447, + 2031, 1607, 2445, + 2023, 1616, 2443, + 2011, 1627, 2439, + 1995, 1642, 2433, + 1972, 1662, 2427, + 1940, 1687, 2419, + 1894, 1718, 2407, + 1822, 1756, 2389, + 1706, 1803, 2367, + 1480, 1859, 2333, + 588, 1925, 2285, + 0, 2000, 2209, + 0, 2085, 2085, + 0, 2177, 1838, + 0, 2277, 270, + 0, 2385, 0, + 0, 2497, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2053, 1590, 2451, + 2051, 1594, 2451, + 2046, 1599, 2449, + 2039, 1606, 2447, + 2031, 1615, 2445, + 2019, 1626, 2441, + 2004, 1641, 2437, + 1981, 1661, 2429, + 1950, 1686, 2421, + 1904, 1717, 2409, + 1835, 1756, 2393, + 1722, 1803, 2369, + 1507, 1859, 2335, + 749, 1924, 2287, + 0, 2000, 2213, + 0, 2083, 2089, + 0, 2177, 1846, + 0, 2277, 476, + 0, 2383, 0, + 0, 2497, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2063, 1588, 2455, + 2061, 1592, 2453, + 2055, 1597, 2453, + 2049, 1604, 2451, + 2042, 1613, 2447, + 2030, 1625, 2443, + 2015, 1640, 2439, + 1993, 1660, 2433, + 1963, 1685, 2423, + 1918, 1716, 2411, + 1851, 1755, 2395, + 1743, 1802, 2373, + 1540, 1858, 2339, + 902, 1924, 2291, + 0, 1999, 2217, + 0, 2083, 2097, + 0, 2177, 1857, + 0, 2277, 657, + 0, 2383, 0, + 0, 2495, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2077, 1586, 2459, + 2073, 1590, 2457, + 2069, 1596, 2455, + 2063, 1602, 2453, + 2055, 1611, 2451, + 2045, 1623, 2447, + 2030, 1638, 2443, + 2009, 1658, 2437, + 1979, 1683, 2429, + 1937, 1714, 2417, + 1872, 1753, 2399, + 1769, 1801, 2377, + 1580, 1857, 2345, + 1048, 1923, 2297, + 0, 1998, 2225, + 0, 2083, 2105, + 0, 2175, 1871, + 0, 2277, 822, + 0, 2383, 0, + 0, 2495, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2095, 1584, 2463, + 2091, 1588, 2463, + 2087, 1593, 2461, + 2081, 1600, 2459, + 2073, 1609, 2457, + 2063, 1621, 2453, + 2049, 1636, 2449, + 2029, 1656, 2441, + 2000, 1681, 2433, + 1960, 1712, 2421, + 1899, 1751, 2405, + 1802, 1799, 2383, + 1630, 1855, 2351, + 1191, 1922, 2303, + 0, 1997, 2233, + 0, 2081, 2115, + 0, 2175, 1889, + 0, 2275, 977, + 0, 2383, 0, + 0, 2495, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2117, 1580, 2471, + 2113, 1584, 2469, + 2109, 1590, 2467, + 2103, 1597, 2465, + 2097, 1606, 2463, + 2087, 1618, 2459, + 2073, 1633, 2455, + 2053, 1653, 2449, + 2027, 1678, 2441, + 1989, 1710, 2429, + 1932, 1749, 2413, + 1843, 1797, 2391, + 1688, 1854, 2359, + 1331, 1920, 2313, + 0, 1996, 2243, + 0, 2081, 2129, + 0, 2175, 1912, + 0, 2275, 1126, + 0, 2383, 0, + 0, 2495, 0, + 0, 2611, 0, + 0, 2733, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2143, 1576, 2479, + 2141, 1580, 2477, + 2137, 1585, 2477, + 2133, 1592, 2475, + 2125, 1601, 2473, + 2117, 1613, 2469, + 2103, 1629, 2465, + 2085, 1649, 2459, + 2061, 1674, 2449, + 2025, 1706, 2439, + 1973, 1746, 2423, + 1893, 1794, 2401, + 1756, 1851, 2371, + 1469, 1918, 2325, + 0, 1994, 2257, + 0, 2079, 2147, + 0, 2173, 1941, + 0, 2273, 1270, + 0, 2381, 0, + 0, 2495, 0, + 0, 2611, 0, + 0, 2731, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2179, 1569, 2491, + 2175, 1573, 2489, + 2173, 1579, 2487, + 2167, 1586, 2487, + 2161, 1595, 2483, + 2153, 1607, 2481, + 2141, 1623, 2475, + 2125, 1643, 2471, + 2103, 1669, 2461, + 2069, 1701, 2451, + 2023, 1741, 2435, + 1951, 1790, 2415, + 1834, 1848, 2385, + 1605, 1915, 2341, + 668, 1991, 2277, + 0, 2077, 2171, + 0, 2171, 1977, + 0, 2273, 1411, + 0, 2381, 0, + 0, 2493, 0, + 0, 2611, 0, + 0, 2731, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2221, 1561, 2505, + 2219, 1565, 2505, + 2215, 1570, 2503, + 2211, 1578, 2501, + 2205, 1587, 2499, + 2197, 1599, 2495, + 2187, 1615, 2491, + 2173, 1636, 2485, + 2153, 1662, 2477, + 2123, 1695, 2467, + 2081, 1736, 2453, + 2020, 1785, 2433, + 1920, 1843, 2403, + 1741, 1911, 2361, + 1266, 1988, 2299, + 0, 2075, 2201, + 0, 2169, 2022, + 0, 2271, 1549, + 0, 2379, 0, + 0, 2493, 0, + 0, 2609, 0, + 0, 2731, 0, + 0, 2855, 0, + 0, 2979, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2273, 1549, 2525, + 2271, 1553, 2523, + 2267, 1559, 2521, + 2263, 1566, 2521, + 2259, 1576, 2519, + 2251, 1589, 2515, + 2243, 1605, 2511, + 2229, 1626, 2505, + 2211, 1653, 2497, + 2187, 1686, 2487, + 2151, 1727, 2473, + 2097, 1777, 2455, + 2015, 1837, 2427, + 1875, 1905, 2387, + 1576, 1983, 2329, + 0, 2071, 2237, + 0, 2165, 2075, + 0, 2269, 1686, + 0, 2377, 0, + 0, 2491, 0, + 0, 2609, 0, + 0, 2729, 0, + 0, 2853, 0, + 0, 2979, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2333, 1532, 2549, + 2331, 1537, 2547, + 2329, 1543, 2547, + 2325, 1550, 2545, + 2321, 1560, 2543, + 2315, 1574, 2539, + 2307, 1591, 2537, + 2295, 1612, 2531, + 2281, 1640, 2523, + 2259, 1674, 2515, + 2229, 1717, 2501, + 2183, 1768, 2483, + 2117, 1828, 2457, + 2009, 1898, 2421, + 1807, 1977, 2367, + 1178, 2065, 2283, + 0, 2161, 2137, + 0, 2265, 1822, + 0, 2375, 0, + 0, 2489, 0, + 0, 2607, 0, + 0, 2729, 0, + 0, 2853, 0, + 0, 2979, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2403, 1510, 2579, + 2401, 1514, 2579, + 2399, 1520, 2577, + 2397, 1528, 2575, + 2393, 1539, 2573, + 2389, 1553, 2571, + 2381, 1571, 2567, + 2371, 1593, 2563, + 2359, 1622, 2557, + 2341, 1658, 2547, + 2315, 1701, 2535, + 2279, 1754, 2517, + 2225, 1816, 2495, + 2143, 1888, 2461, + 2001, 1969, 2411, + 1696, 2059, 2335, + 0, 2157, 2209, + 0, 2261, 1957, + 0, 2371, 0, + 0, 2485, 0, + 0, 2605, 0, + 0, 2727, 0, + 0, 2851, 0, + 0, 2977, 0, + 0, 3105, 0, + 0, 3235, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2483, 1477, 2617, + 2481, 1482, 2617, + 2481, 1489, 2615, + 2477, 1497, 2615, + 2475, 1509, 2613, + 2471, 1523, 2609, + 2465, 1542, 2607, + 2457, 1566, 2603, + 2445, 1597, 2597, + 2431, 1634, 2587, + 2411, 1680, 2577, + 2381, 1735, 2561, + 2339, 1800, 2539, + 2275, 1874, 2509, + 2175, 1957, 2465, + 1990, 2049, 2399, + 1485, 2149, 2291, + 0, 2255, 2091, + 0, 2367, 1476, + 0, 2483, 0, + 0, 2603, 0, + 0, 2725, 0, + 0, 2849, 0, + 0, 2977, 0, + 0, 3105, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2571, 1430, 2663, + 2571, 1435, 2663, + 2569, 1443, 2661, + 2567, 1452, 2661, + 2565, 1465, 2659, + 2561, 1481, 2657, + 2557, 1502, 2653, + 2549, 1528, 2649, + 2541, 1561, 2645, + 2529, 1602, 2637, + 2513, 1651, 2627, + 2489, 1709, 2613, + 2457, 1777, 2595, + 2409, 1855, 2567, + 2335, 1941, 2529, + 2213, 2036, 2471, + 1974, 2139, 2381, + 782, 2247, 2225, + 0, 2359, 1859, + 0, 2477, 0, + 0, 2599, 0, + 0, 2721, 0, + 0, 2847, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2669, 1358, 2719, + 2667, 1364, 2719, + 2667, 1373, 2717, + 2665, 1384, 2717, + 2663, 1398, 2715, + 2659, 1417, 2713, + 2655, 1441, 2711, + 2651, 1471, 2707, + 2643, 1508, 2703, + 2635, 1553, 2695, + 2621, 1608, 2687, + 2603, 1672, 2675, + 2577, 1745, 2659, + 2541, 1828, 2635, + 2487, 1919, 2601, + 2405, 2018, 2553, + 2261, 2123, 2479, + 1953, 2235, 2357, + 0, 2351, 2115, + 0, 2471, 847, + 0, 2593, 0, + 0, 2717, 0, + 0, 2845, 0, + 0, 2973, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2771, 1239, 2783, + 2771, 1248, 2783, + 2771, 1259, 2783, + 2769, 1273, 2781, + 2767, 1291, 2781, + 2765, 1315, 2779, + 2763, 1344, 2777, + 2757, 1381, 2773, + 2753, 1426, 2769, + 2745, 1480, 2763, + 2735, 1543, 2757, + 2721, 1616, 2745, + 2701, 1698, 2731, + 2673, 1789, 2711, + 2635, 1888, 2685, + 2575, 1993, 2645, + 2483, 2105, 2585, + 2319, 2219, 2491, + 1922, 2339, 2323, + 0, 2461, 1913, + 0, 2587, 0, + 0, 2713, 0, + 0, 2841, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 2881, 1008, 2859, + 2881, 1022, 2857, + 2881, 1039, 2857, + 2879, 1062, 2857, + 2877, 1091, 2855, + 2877, 1127, 2853, + 2873, 1171, 2851, + 2871, 1224, 2849, + 2867, 1286, 2845, + 2861, 1358, 2841, + 2853, 1439, 2835, + 2841, 1529, 2827, + 2827, 1627, 2815, + 2807, 1731, 2799, + 2777, 1842, 2775, + 2735, 1957, 2743, + 2671, 2077, 2695, + 2569, 2199, 2623, + 2385, 2323, 2505, + 1878, 2449, 2273, + 0, 2577, 1276, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2995, 13, 2941, + 2995, 124, 2941, + 2995, 239, 2941, + 2995, 358, 2941, + 2993, 481, 2939, + 2991, 605, 2939, + 2989, 731, 2937, + 2987, 859, 2935, + 2985, 988, 2931, + 2979, 1117, 2927, + 2973, 1248, 2923, + 2965, 1378, 2915, + 2955, 1510, 2905, + 2939, 1641, 2893, + 2917, 1772, 2873, + 2887, 1904, 2847, + 2841, 2036, 2811, + 2775, 2167, 2755, + 2665, 2299, 2671, + 2461, 2431, 2523, + 1811, 2563, 2195, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3115, 0, 3035, + 3115, 0, 3033, + 3113, 0, 3033, + 3113, 0, 3033, + 3113, 0, 3033, + 3111, 0, 3031, + 3109, 0, 3029, + 3107, 0, 3029, + 3105, 0, 3025, + 3101, 0, 3023, + 3097, 700, 3019, + 3091, 1040, 3013, + 3083, 1282, 3005, + 3071, 1482, 2993, + 3055, 1659, 2979, + 3033, 1822, 2959, + 3001, 1976, 2931, + 2955, 2123, 2889, + 2883, 2267, 2825, + 2769, 2407, 2727, + 2545, 2545, 2545, + 1703, 2683, 2065, + 0, 2817, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 3237, 0, 3133, + 3235, 0, 3133, + 3235, 0, 3133, + 3235, 0, 3133, + 3235, 0, 3133, + 3233, 0, 3131, + 3233, 0, 3131, + 3231, 0, 3129, + 3229, 0, 3127, + 3227, 0, 3125, + 3223, 0, 3121, + 3219, 0, 3117, + 3211, 360, 3111, + 3203, 1109, 3101, + 3191, 1442, 3091, + 3175, 1682, 3075, + 3151, 1881, 3053, + 3119, 2057, 3021, + 3071, 2219, 2975, + 2997, 2373, 2905, + 2877, 2521, 2791, + 2639, 2663, 2575, + 1500, 2805, 1801, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3361, 0, 3241, + 3359, 0, 3239, + 3359, 0, 3239, + 3359, 0, 3239, + 3359, 0, 3239, + 3359, 0, 3239, + 3357, 0, 3237, + 3357, 0, 3237, + 3355, 0, 3235, + 3353, 0, 3233, + 3351, 0, 3231, + 3347, 0, 3227, + 3341, 0, 3221, + 3335, 0, 3215, + 3327, 673, 3207, + 3315, 1383, 3193, + 3297, 1711, 3177, + 3273, 1949, 3153, + 3241, 2147, 3119, + 3191, 2323, 3069, + 3115, 2485, 2993, + 2991, 2637, 2867, + 2741, 2785, 2611, + 867, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3487, 0, 3351, + 3487, 0, 3351, + 3485, 0, 3351, + 3485, 0, 3351, + 3485, 0, 3351, + 3485, 0, 3351, + 3485, 0, 3349, + 3483, 0, 3349, + 3483, 0, 3347, + 3481, 0, 3347, + 3479, 0, 3345, + 3475, 0, 3341, + 3473, 0, 3337, + 3467, 0, 3333, + 3461, 0, 3325, + 3451, 0, 3317, + 3439, 1290, 3303, + 3423, 1748, 3285, + 3399, 2027, 3261, + 3365, 2245, 3225, + 3315, 2431, 3171, + 3237, 2601, 3091, + 3109, 2759, 2951, + 2847, 2909, 2655, + 0, 3055, 0, + 0, 3197, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3613, 0, 3469, + 3613, 0, 3469, + 3613, 0, 3469, + 3613, 0, 3467, + 3613, 0, 3467, + 3613, 0, 3467, + 3613, 0, 3467, + 3611, 0, 3465, + 3611, 0, 3465, + 3609, 0, 3463, + 3609, 0, 3463, + 3607, 0, 3461, + 3603, 0, 3457, + 3599, 0, 3453, + 3595, 0, 3447, + 3587, 0, 3441, + 3579, 0, 3431, + 3567, 1125, 3417, + 3549, 1792, 3399, + 3525, 2113, 3373, + 3491, 2349, 3335, + 3439, 2545, 3281, + 3361, 2721, 3193, + 3231, 2883, 3043, + 2961, 3035, 2709, + 0, 3183, 0, + 0, 3325, 0, + 0, 3465, 0, + 0, 3603, 0, + 0, 3739, 0, + 0, 3875, 0, + 0, 4009, 0, + 3743, 0, 3589, + 3743, 0, 3589, + 3743, 0, 3589, + 3743, 0, 3587, + 3741, 0, 3587, + 3741, 0, 3587, + 3741, 0, 3587, + 3741, 0, 3587, + 3741, 0, 3585, + 3739, 0, 3585, + 3739, 0, 3583, + 3737, 0, 3581, + 3735, 0, 3579, + 3731, 0, 3577, + 3729, 0, 3573, + 3723, 0, 3567, + 3717, 0, 3559, + 3707, 0, 3549, + 3695, 726, 3537, + 3677, 1846, 3517, + 3653, 2209, 3489, + 3617, 2459, 3451, + 3567, 2663, 3393, + 3487, 2843, 3303, + 3353, 3007, 3145, + 3077, 3163, 2771, + 0, 3311, 0, + 0, 3455, 0, + 0, 3595, 0, + 0, 3735, 0, + 0, 3871, 0, + 0, 4007, 0, + 3871, 0, 3711, + 3871, 0, 3711, + 3871, 0, 3711, + 3871, 0, 3711, + 3871, 0, 3711, + 3871, 0, 3711, + 3871, 0, 3711, + 3871, 0, 3709, + 3871, 0, 3709, + 3869, 0, 3709, + 3869, 0, 3707, + 3867, 0, 3707, + 3867, 0, 3705, + 3863, 0, 3703, + 3861, 0, 3699, + 3857, 0, 3695, + 3853, 0, 3689, + 3845, 0, 3683, + 3837, 0, 3671, + 3823, 0, 3657, + 3807, 1909, 3637, + 3781, 2311, 3611, + 3747, 2575, 3571, + 3695, 2785, 3511, + 3615, 2969, 3417, + 3479, 3135, 3251, + 3197, 3291, 2843, + 0, 3441, 0, + 0, 3585, 0, + 0, 3727, 0, + 0, 3865, 0, + 0, 4003, 0, + 4003, 0, 3837, + 4003, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 3999, 0, 3833, + 3999, 0, 3833, + 3997, 0, 3831, + 3997, 0, 3829, + 3995, 0, 3827, + 3991, 0, 3825, + 3987, 0, 3819, + 3983, 0, 3815, + 3975, 0, 3807, + 3967, 0, 3797, + 3953, 0, 3781, + 3935, 1981, 3761, + 3911, 2419, 3733, + 3875, 2693, 3693, + 3823, 2909, 3633, + 3743, 3095, 3535, + 3607, 3263, 3363, + 3321, 3421, 2925, + 0, 3571, 0, + 0, 3715, 0, + 0, 3857, 0, + 0, 3997, 0, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3961, + 4095, 0, 3961, + 4095, 0, 3961, + 4095, 0, 3961, + 4095, 0, 3959, + 4095, 0, 3957, + 4095, 0, 3957, + 4095, 0, 3953, + 4095, 0, 3951, + 4095, 0, 3947, + 4095, 0, 3941, + 4095, 0, 3933, + 4095, 0, 3923, + 4083, 0, 3907, + 4067, 2063, 3887, + 4041, 2533, 3859, + 4005, 2815, 3817, + 3953, 3035, 3755, + 3873, 3223, 3657, + 3735, 3393, 3479, + 3447, 3551, 3015, + 0, 3701, 0, + 0, 3847, 0, + 0, 3989, 0, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4089, + 4095, 0, 4089, + 4095, 0, 4089, + 4095, 0, 4089, + 4095, 0, 4087, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4075, + 4095, 0, 4069, + 4095, 0, 4061, + 4095, 0, 4049, + 4095, 0, 4035, + 4095, 2153, 4015, + 4095, 2651, 3985, + 4095, 2941, 3945, + 4085, 3163, 3881, + 4003, 3351, 3781, + 3865, 3523, 3599, + 3573, 3681, 3115, + 0, 3833, 0, + 0, 3979, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2251, 4095, + 4095, 2771, 4095, + 4095, 3067, 4071, + 4095, 3291, 4009, + 4095, 3481, 3907, + 3995, 3653, 3723, + 3701, 3813, 3219, + 0, 3963, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2357, 4095, + 4095, 2895, 4095, + 4095, 3195, 4095, + 4095, 3421, 4095, + 4095, 3611, 4035, + 4095, 3783, 3847, + 3831, 3943, 3329, + 2167, 1722, 2579, + 2165, 1725, 2577, + 2161, 1729, 2577, + 2155, 1734, 2575, + 2149, 1741, 2573, + 2141, 1749, 2571, + 2129, 1761, 2567, + 2111, 1776, 2563, + 2089, 1795, 2555, + 2055, 1820, 2547, + 2006, 1851, 2535, + 1932, 1890, 2517, + 1809, 1937, 2493, + 1563, 1992, 2461, + 119, 2057, 2411, + 0, 2133, 2335, + 0, 2217, 2209, + 0, 2309, 1955, + 0, 2409, 0, + 0, 2517, 0, + 0, 2629, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2989, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2171, 1722, 2579, + 2167, 1724, 2579, + 2165, 1728, 2577, + 2159, 1733, 2577, + 2153, 1740, 2575, + 2145, 1749, 2571, + 2133, 1761, 2569, + 2115, 1776, 2563, + 2093, 1795, 2557, + 2059, 1820, 2547, + 2011, 1851, 2535, + 1938, 1889, 2519, + 1816, 1936, 2495, + 1575, 1992, 2461, + 351, 2057, 2413, + 0, 2133, 2337, + 0, 2217, 2211, + 0, 2309, 1959, + 0, 2409, 0, + 0, 2517, 0, + 0, 2629, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2989, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2175, 1721, 2581, + 2173, 1724, 2581, + 2169, 1728, 2579, + 2163, 1733, 2577, + 2157, 1740, 2575, + 2149, 1748, 2573, + 2137, 1760, 2569, + 2121, 1775, 2565, + 2097, 1795, 2557, + 2065, 1819, 2549, + 2017, 1850, 2537, + 1945, 1889, 2519, + 1825, 1936, 2497, + 1592, 1992, 2463, + 546, 2057, 2413, + 0, 2133, 2339, + 0, 2217, 2213, + 0, 2309, 1964, + 0, 2409, 148, + 0, 2517, 0, + 0, 2629, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2989, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2181, 1720, 2583, + 2177, 1723, 2581, + 2175, 1727, 2581, + 2169, 1732, 2579, + 2163, 1739, 2577, + 2155, 1748, 2575, + 2143, 1759, 2571, + 2127, 1774, 2567, + 2105, 1794, 2559, + 2073, 1819, 2551, + 2026, 1850, 2539, + 1955, 1888, 2521, + 1838, 1935, 2499, + 1612, 1991, 2465, + 720, 2057, 2417, + 0, 2133, 2341, + 0, 2217, 2217, + 0, 2309, 1970, + 0, 2409, 403, + 0, 2517, 0, + 0, 2629, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2989, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2189, 1719, 2585, + 2185, 1722, 2583, + 2183, 1726, 2583, + 2177, 1731, 2581, + 2171, 1738, 2579, + 2163, 1747, 2577, + 2151, 1758, 2573, + 2135, 1774, 2569, + 2113, 1793, 2561, + 2083, 1818, 2553, + 2036, 1849, 2541, + 1967, 1888, 2525, + 1854, 1935, 2501, + 1639, 1991, 2467, + 881, 2057, 2419, + 0, 2131, 2345, + 0, 2217, 2223, + 0, 2309, 1978, + 0, 2409, 608, + 0, 2515, 0, + 0, 2629, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2989, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2199, 1718, 2587, + 2195, 1721, 2587, + 2193, 1724, 2585, + 2189, 1730, 2585, + 2181, 1736, 2583, + 2173, 1745, 2579, + 2163, 1757, 2577, + 2147, 1772, 2571, + 2125, 1792, 2565, + 2095, 1817, 2557, + 2051, 1848, 2545, + 1984, 1887, 2527, + 1875, 1934, 2505, + 1672, 1990, 2471, + 1033, 2055, 2423, + 0, 2131, 2349, + 0, 2215, 2229, + 0, 2309, 1989, + 0, 2409, 789, + 0, 2515, 0, + 0, 2627, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2987, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2211, 1716, 2591, + 2209, 1719, 2591, + 2205, 1723, 2589, + 2201, 1728, 2587, + 2195, 1735, 2587, + 2187, 1744, 2583, + 2177, 1755, 2579, + 2161, 1771, 2575, + 2141, 1790, 2569, + 2111, 1815, 2561, + 2069, 1847, 2549, + 2004, 1885, 2531, + 1901, 1933, 2509, + 1712, 1989, 2477, + 1180, 2055, 2429, + 0, 2131, 2357, + 0, 2215, 2237, + 0, 2307, 2003, + 0, 2409, 954, + 0, 2515, 0, + 0, 2627, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2987, 0, + 0, 3113, 0, + 0, 3239, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2229, 1713, 2597, + 2227, 1716, 2595, + 2223, 1720, 2595, + 2219, 1725, 2593, + 2213, 1732, 2591, + 2205, 1741, 2589, + 2195, 1753, 2585, + 2181, 1768, 2581, + 2161, 1788, 2575, + 2133, 1813, 2565, + 2091, 1845, 2553, + 2031, 1884, 2537, + 1935, 1931, 2515, + 1762, 1988, 2483, + 1323, 2053, 2435, + 0, 2129, 2365, + 0, 2215, 2247, + 0, 2307, 2021, + 0, 2407, 1109, + 0, 2515, 0, + 0, 2627, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2987, 0, + 0, 3113, 0, + 0, 3239, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2251, 1710, 2603, + 2249, 1713, 2603, + 2245, 1716, 2601, + 2241, 1722, 2599, + 2235, 1729, 2597, + 2229, 1738, 2595, + 2219, 1750, 2591, + 2205, 1765, 2587, + 2185, 1785, 2581, + 2159, 1810, 2573, + 2121, 1842, 2561, + 2065, 1881, 2545, + 1975, 1929, 2523, + 1820, 1986, 2491, + 1463, 2053, 2445, + 0, 2127, 2375, + 0, 2213, 2261, + 0, 2307, 2044, + 0, 2407, 1258, + 0, 2515, 0, + 0, 2627, 0, + 0, 2743, 0, + 0, 2865, 0, + 0, 2987, 0, + 0, 3113, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2279, 1705, 2611, + 2275, 1708, 2611, + 2273, 1712, 2609, + 2269, 1717, 2609, + 2265, 1724, 2607, + 2257, 1733, 2605, + 2249, 1745, 2601, + 2235, 1761, 2597, + 2217, 1781, 2591, + 2193, 1806, 2581, + 2157, 1838, 2571, + 2105, 1878, 2555, + 2025, 1926, 2533, + 1888, 1983, 2503, + 1601, 2049, 2457, + 0, 2127, 2389, + 0, 2211, 2281, + 0, 2305, 2073, + 0, 2407, 1402, + 0, 2513, 0, + 0, 2627, 0, + 0, 2743, 0, + 0, 2863, 0, + 0, 2987, 0, + 0, 3113, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2313, 1698, 2623, + 2311, 1701, 2623, + 2309, 1706, 2621, + 2305, 1711, 2619, + 2299, 1718, 2619, + 2293, 1727, 2615, + 2285, 1739, 2613, + 2273, 1755, 2609, + 2257, 1776, 2603, + 2235, 1801, 2595, + 2203, 1834, 2583, + 2155, 1874, 2567, + 2083, 1922, 2547, + 1966, 1980, 2517, + 1738, 2047, 2473, + 801, 2123, 2409, + 0, 2209, 2303, + 0, 2303, 2109, + 0, 2405, 1543, + 0, 2513, 0, + 0, 2625, 0, + 0, 2743, 0, + 0, 2863, 0, + 0, 2987, 0, + 0, 3113, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2355, 1690, 2637, + 2353, 1693, 2637, + 2351, 1697, 2637, + 2347, 1702, 2635, + 2343, 1710, 2633, + 2337, 1719, 2631, + 2329, 1732, 2627, + 2319, 1748, 2623, + 2305, 1768, 2617, + 2285, 1794, 2609, + 2255, 1827, 2599, + 2213, 1868, 2585, + 2151, 1917, 2565, + 2053, 1975, 2535, + 1873, 2043, 2495, + 1398, 2121, 2431, + 0, 2207, 2333, + 0, 2301, 2153, + 0, 2403, 1682, + 0, 2511, 0, + 0, 2625, 0, + 0, 2741, 0, + 0, 2863, 0, + 0, 2987, 0, + 0, 3111, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2407, 1678, 2657, + 2405, 1681, 2657, + 2403, 1685, 2655, + 2399, 1691, 2655, + 2395, 1698, 2653, + 2391, 1708, 2651, + 2383, 1721, 2647, + 2375, 1737, 2643, + 2361, 1758, 2637, + 2343, 1785, 2631, + 2319, 1818, 2619, + 2283, 1860, 2605, + 2229, 1909, 2587, + 2147, 1969, 2559, + 2007, 2037, 2521, + 1708, 2115, 2461, + 0, 2203, 2369, + 0, 2297, 2207, + 0, 2401, 1818, + 0, 2509, 0, + 0, 2623, 0, + 0, 2741, 0, + 0, 2861, 0, + 0, 2985, 0, + 0, 3111, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2467, 1661, 2681, + 2465, 1665, 2681, + 2463, 1669, 2679, + 2461, 1675, 2679, + 2457, 1683, 2677, + 2453, 1693, 2675, + 2447, 1706, 2673, + 2439, 1723, 2669, + 2427, 1744, 2663, + 2413, 1772, 2655, + 2391, 1806, 2647, + 2361, 1849, 2633, + 2317, 1900, 2615, + 2249, 1960, 2589, + 2141, 2030, 2553, + 1939, 2109, 2499, + 1310, 2197, 2415, + 0, 2293, 2269, + 0, 2397, 1954, + 0, 2507, 0, + 0, 2621, 0, + 0, 2739, 0, + 0, 2861, 0, + 0, 2985, 0, + 0, 3111, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2537, 1638, 2711, + 2535, 1642, 2711, + 2535, 1646, 2711, + 2531, 1653, 2709, + 2529, 1661, 2707, + 2525, 1671, 2705, + 2521, 1685, 2703, + 2513, 1703, 2699, + 2503, 1725, 2695, + 2491, 1754, 2689, + 2473, 1790, 2679, + 2447, 1834, 2667, + 2411, 1886, 2651, + 2357, 1948, 2627, + 2275, 2020, 2593, + 2133, 2101, 2543, + 1828, 2191, 2467, + 0, 2289, 2341, + 0, 2393, 2089, + 0, 2503, 0, + 0, 2619, 0, + 0, 2737, 0, + 0, 2859, 0, + 0, 2983, 0, + 0, 3109, 0, + 0, 3237, 0, + 0, 3367, 0, + 0, 3495, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2617, 1606, 2749, + 2615, 1609, 2749, + 2613, 1614, 2749, + 2613, 1621, 2747, + 2609, 1630, 2747, + 2607, 1641, 2745, + 2603, 1656, 2741, + 2597, 1674, 2739, + 2589, 1699, 2735, + 2577, 1729, 2729, + 2563, 1767, 2719, + 2543, 1813, 2709, + 2513, 1868, 2693, + 2471, 1932, 2671, + 2407, 2006, 2641, + 2307, 2089, 2597, + 2121, 2181, 2531, + 1617, 2281, 2423, + 0, 2387, 2223, + 0, 2499, 1608, + 0, 2615, 0, + 0, 2735, 0, + 0, 2857, 0, + 0, 2981, 0, + 0, 3109, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2705, 1558, 2797, + 2703, 1562, 2795, + 2703, 1568, 2795, + 2701, 1575, 2795, + 2699, 1584, 2793, + 2697, 1597, 2791, + 2693, 1613, 2789, + 2689, 1634, 2787, + 2683, 1660, 2781, + 2673, 1693, 2777, + 2661, 1734, 2769, + 2645, 1783, 2759, + 2621, 1841, 2745, + 2589, 1909, 2727, + 2541, 1987, 2699, + 2467, 2073, 2661, + 2345, 2169, 2603, + 2107, 2271, 2513, + 914, 2379, 2357, + 0, 2491, 1991, + 0, 2609, 0, + 0, 2731, 0, + 0, 2853, 0, + 0, 2979, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2801, 1485, 2851, + 2801, 1490, 2851, + 2799, 1496, 2851, + 2799, 1505, 2849, + 2797, 1516, 2849, + 2795, 1531, 2847, + 2791, 1549, 2845, + 2787, 1573, 2843, + 2783, 1603, 2839, + 2775, 1640, 2835, + 2767, 1686, 2827, + 2753, 1740, 2819, + 2735, 1804, 2807, + 2709, 1877, 2791, + 2673, 1960, 2767, + 2619, 2051, 2735, + 2537, 2151, 2685, + 2393, 2255, 2613, + 2085, 2367, 2489, + 0, 2483, 2249, + 0, 2603, 980, + 0, 2725, 0, + 0, 2851, 0, + 0, 2977, 0, + 0, 3105, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2905, 1365, 2917, + 2903, 1371, 2915, + 2903, 1380, 2915, + 2903, 1391, 2915, + 2901, 1405, 2913, + 2899, 1423, 2913, + 2897, 1447, 2911, + 2895, 1476, 2909, + 2891, 1513, 2905, + 2885, 1558, 2901, + 2877, 1612, 2895, + 2867, 1675, 2889, + 2853, 1748, 2877, + 2833, 1830, 2863, + 2805, 1921, 2845, + 2767, 2020, 2817, + 2707, 2125, 2777, + 2615, 2237, 2717, + 2451, 2351, 2623, + 2055, 2471, 2455, + 0, 2593, 2045, + 0, 2719, 0, + 0, 2845, 0, + 0, 2973, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 3013, 1129, 2991, + 3013, 1140, 2991, + 3013, 1154, 2989, + 3013, 1172, 2989, + 3011, 1194, 2989, + 3009, 1223, 2987, + 3009, 1259, 2987, + 3005, 1303, 2985, + 3003, 1356, 2981, + 2999, 1418, 2979, + 2993, 1490, 2973, + 2985, 1571, 2967, + 2973, 1661, 2959, + 2959, 1759, 2947, + 2939, 1864, 2931, + 2909, 1974, 2907, + 2867, 2089, 2875, + 2803, 2209, 2827, + 2701, 2331, 2755, + 2517, 2455, 2637, + 2010, 2581, 2405, + 0, 2709, 1408, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3129, 41, 3075, + 3129, 145, 3075, + 3127, 256, 3073, + 3127, 371, 3073, + 3127, 491, 3073, + 3125, 613, 3071, + 3123, 737, 3071, + 3123, 864, 3069, + 3119, 991, 3067, + 3117, 1120, 3063, + 3111, 1250, 3059, + 3105, 1380, 3055, + 3097, 1511, 3047, + 3087, 1642, 3037, + 3071, 1773, 3025, + 3049, 1905, 3007, + 3019, 2036, 2981, + 2973, 2169, 2943, + 2907, 2299, 2889, + 2797, 2431, 2803, + 2593, 2563, 2655, + 1943, 2695, 2327, + 0, 2827, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3247, 0, 3167, + 3247, 0, 3167, + 3247, 0, 3165, + 3245, 0, 3165, + 3245, 0, 3165, + 3245, 0, 3165, + 3243, 0, 3163, + 3241, 0, 3161, + 3239, 0, 3161, + 3237, 0, 3157, + 3233, 22, 3155, + 3229, 832, 3151, + 3223, 1172, 3145, + 3215, 1414, 3137, + 3203, 1614, 3127, + 3187, 1791, 3111, + 3165, 1954, 3091, + 3133, 2109, 3063, + 3087, 2255, 3021, + 3015, 2399, 2959, + 2901, 2539, 2859, + 2677, 2677, 2677, + 1835, 2815, 2197, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 3369, 0, 3267, + 3369, 0, 3265, + 3367, 0, 3265, + 3367, 0, 3265, + 3367, 0, 3265, + 3367, 0, 3265, + 3365, 0, 3263, + 3365, 0, 3263, + 3363, 0, 3261, + 3361, 0, 3259, + 3359, 0, 3257, + 3355, 0, 3253, + 3351, 0, 3249, + 3343, 492, 3243, + 3335, 1242, 3235, + 3323, 1575, 3223, + 3307, 1814, 3207, + 3283, 2013, 3185, + 3251, 2189, 3153, + 3203, 2351, 3107, + 3129, 2505, 3037, + 3009, 2653, 2925, + 2771, 2797, 2707, + 1632, 2937, 1933, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3493, 0, 3373, + 3493, 0, 3373, + 3493, 0, 3373, + 3491, 0, 3371, + 3491, 0, 3371, + 3491, 0, 3371, + 3491, 0, 3371, + 3489, 0, 3369, + 3489, 0, 3369, + 3487, 0, 3367, + 3485, 0, 3365, + 3483, 0, 3363, + 3479, 0, 3359, + 3473, 0, 3353, + 3467, 0, 3347, + 3459, 805, 3339, + 3447, 1516, 3325, + 3429, 1844, 3309, + 3405, 2081, 3285, + 3373, 2279, 3251, + 3323, 2455, 3201, + 3249, 2617, 3125, + 3123, 2771, 2999, + 2873, 2917, 2743, + 999, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3475, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3619, 0, 3485, + 3619, 0, 3485, + 3619, 0, 3483, + 3617, 0, 3483, + 3617, 0, 3483, + 3617, 0, 3483, + 3617, 0, 3483, + 3617, 0, 3481, + 3615, 0, 3481, + 3615, 0, 3479, + 3613, 0, 3479, + 3611, 0, 3477, + 3609, 0, 3473, + 3605, 0, 3469, + 3599, 0, 3465, + 3593, 0, 3457, + 3583, 0, 3449, + 3571, 1422, 3435, + 3555, 1880, 3417, + 3531, 2159, 3393, + 3497, 2377, 3357, + 3447, 2563, 3303, + 3369, 2733, 3223, + 3241, 2891, 3083, + 2979, 3041, 2787, + 0, 3187, 0, + 0, 3329, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3877, 0, + 0, 4011, 0, + 3745, 0, 3601, + 3745, 0, 3601, + 3745, 0, 3601, + 3745, 0, 3601, + 3745, 0, 3599, + 3745, 0, 3599, + 3745, 0, 3599, + 3745, 0, 3599, + 3743, 0, 3599, + 3743, 0, 3597, + 3741, 0, 3597, + 3741, 0, 3595, + 3739, 0, 3593, + 3735, 0, 3589, + 3731, 0, 3585, + 3727, 0, 3581, + 3721, 0, 3573, + 3711, 0, 3563, + 3699, 1258, 3549, + 3681, 1924, 3531, + 3657, 2245, 3505, + 3623, 2481, 3467, + 3571, 2677, 3413, + 3493, 2853, 3325, + 3363, 3015, 3177, + 3093, 3167, 2841, + 0, 3315, 0, + 0, 3457, 0, + 0, 3597, 0, + 0, 3735, 0, + 0, 3873, 0, + 0, 4007, 0, + 3875, 0, 3721, + 3875, 0, 3721, + 3875, 0, 3721, + 3875, 0, 3721, + 3875, 0, 3719, + 3873, 0, 3719, + 3873, 0, 3719, + 3873, 0, 3719, + 3873, 0, 3719, + 3873, 0, 3717, + 3871, 0, 3717, + 3871, 0, 3715, + 3869, 0, 3715, + 3867, 0, 3711, + 3863, 0, 3709, + 3861, 0, 3705, + 3855, 0, 3699, + 3849, 0, 3693, + 3839, 0, 3681, + 3827, 858, 3669, + 3809, 1978, 3649, + 3785, 2341, 3623, + 3749, 2591, 3583, + 3699, 2795, 3525, + 3619, 2975, 3435, + 3485, 3139, 3277, + 3209, 3295, 2903, + 0, 3443, 0, + 0, 3587, 0, + 0, 3727, 0, + 0, 3867, 0, + 0, 4003, 0, + 4005, 0, 3843, + 4005, 0, 3843, + 4003, 0, 3843, + 4003, 0, 3843, + 4003, 0, 3843, + 4003, 0, 3843, + 4003, 0, 3843, + 4003, 0, 3843, + 4003, 0, 3841, + 4003, 0, 3841, + 4001, 0, 3841, + 4001, 0, 3839, + 3999, 0, 3839, + 3999, 0, 3837, + 3997, 0, 3835, + 3993, 0, 3831, + 3989, 0, 3827, + 3985, 0, 3821, + 3977, 0, 3815, + 3969, 0, 3803, + 3955, 0, 3789, + 3939, 2041, 3771, + 3913, 2443, 3743, + 3879, 2707, 3703, + 3827, 2917, 3643, + 3747, 3101, 3549, + 3611, 3267, 3383, + 3329, 3423, 2977, + 0, 3573, 0, + 0, 3717, 0, + 0, 3859, 0, + 0, 3997, 0, + 4095, 0, 3969, + 4095, 0, 3969, + 4095, 0, 3969, + 4095, 0, 3969, + 4095, 0, 3967, + 4095, 0, 3967, + 4095, 0, 3967, + 4095, 0, 3967, + 4095, 0, 3967, + 4095, 0, 3967, + 4095, 0, 3967, + 4095, 0, 3965, + 4095, 0, 3965, + 4095, 0, 3963, + 4095, 0, 3961, + 4095, 0, 3959, + 4095, 0, 3957, + 4095, 0, 3951, + 4095, 0, 3947, + 4095, 0, 3939, + 4095, 0, 3929, + 4085, 0, 3913, + 4067, 2113, 3893, + 4043, 2551, 3865, + 4007, 2825, 3825, + 3955, 3041, 3765, + 3875, 3227, 3667, + 3739, 3395, 3495, + 3453, 3553, 3057, + 0, 3703, 0, + 0, 3849, 0, + 0, 3989, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4093, + 4095, 0, 4093, + 4095, 0, 4093, + 4095, 0, 4093, + 4095, 0, 4091, + 4095, 0, 4089, + 4095, 0, 4089, + 4095, 0, 4085, + 4095, 0, 4083, + 4095, 0, 4079, + 4095, 0, 4073, + 4095, 0, 4065, + 4095, 0, 4055, + 4095, 0, 4039, + 4095, 2195, 4019, + 4095, 2665, 3991, + 4095, 2947, 3949, + 4085, 3167, 3887, + 4005, 3355, 3789, + 3867, 3525, 3611, + 3579, 3683, 3149, + 0, 3833, 0, + 0, 3979, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2285, 4095, + 4095, 2783, 4095, + 4095, 3073, 4077, + 4095, 3295, 4013, + 4095, 3483, 3913, + 3997, 3655, 3731, + 3705, 3813, 3247, + 0, 3965, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2383, 4095, + 4095, 2905, 4095, + 4095, 3199, 4095, + 4095, 3423, 4095, + 4095, 3613, 4039, + 4095, 3785, 3855, + 3833, 3945, 3351, + 2299, 1852, 2711, + 2297, 1854, 2711, + 2293, 1857, 2709, + 2291, 1861, 2709, + 2285, 1866, 2707, + 2279, 1873, 2705, + 2269, 1882, 2703, + 2257, 1893, 2699, + 2241, 1909, 2693, + 2217, 1928, 2687, + 2183, 1953, 2679, + 2135, 1984, 2665, + 2059, 2022, 2649, + 1935, 2069, 2625, + 1685, 2125, 2591, + 0, 2191, 2541, + 0, 2265, 2467, + 0, 2349, 2339, + 0, 2441, 2085, + 0, 2543, 0, + 0, 2649, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2301, 1852, 2711, + 2299, 1854, 2711, + 2297, 1857, 2711, + 2293, 1861, 2709, + 2287, 1866, 2707, + 2281, 1873, 2705, + 2273, 1882, 2703, + 2261, 1893, 2699, + 2243, 1908, 2695, + 2221, 1928, 2687, + 2187, 1952, 2679, + 2139, 1983, 2667, + 2065, 2022, 2649, + 1941, 2069, 2627, + 1695, 2125, 2593, + 251, 2191, 2543, + 0, 2265, 2467, + 0, 2349, 2341, + 0, 2441, 2087, + 0, 2541, 0, + 0, 2649, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2305, 1851, 2713, + 2303, 1854, 2711, + 2299, 1857, 2711, + 2297, 1860, 2709, + 2291, 1866, 2709, + 2285, 1872, 2707, + 2277, 1881, 2703, + 2265, 1893, 2701, + 2247, 1908, 2695, + 2225, 1927, 2689, + 2191, 1952, 2679, + 2143, 1983, 2667, + 2069, 2022, 2651, + 1948, 2069, 2627, + 1708, 2125, 2593, + 483, 2189, 2545, + 0, 2265, 2469, + 0, 2349, 2343, + 0, 2441, 2091, + 0, 2541, 0, + 0, 2649, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2309, 1851, 2713, + 2307, 1853, 2713, + 2305, 1856, 2713, + 2301, 1860, 2711, + 2295, 1865, 2709, + 2289, 1872, 2707, + 2281, 1881, 2705, + 2269, 1892, 2701, + 2253, 1907, 2697, + 2229, 1927, 2691, + 2197, 1951, 2681, + 2149, 1983, 2669, + 2077, 2021, 2653, + 1958, 2069, 2629, + 1724, 2125, 2595, + 678, 2189, 2547, + 0, 2265, 2471, + 0, 2349, 2345, + 0, 2441, 2095, + 0, 2541, 280, + 0, 2649, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2315, 1850, 2715, + 2313, 1852, 2715, + 2311, 1855, 2713, + 2307, 1859, 2713, + 2301, 1864, 2711, + 2295, 1871, 2709, + 2287, 1880, 2707, + 2275, 1891, 2703, + 2259, 1907, 2699, + 2237, 1926, 2691, + 2205, 1951, 2683, + 2157, 1982, 2671, + 2087, 2021, 2653, + 1970, 2067, 2631, + 1744, 2123, 2597, + 852, 2189, 2549, + 0, 2265, 2473, + 0, 2349, 2349, + 0, 2441, 2101, + 0, 2541, 535, + 0, 2649, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2323, 1849, 2717, + 2321, 1851, 2717, + 2317, 1854, 2715, + 2315, 1858, 2715, + 2309, 1863, 2713, + 2303, 1870, 2711, + 2295, 1879, 2709, + 2283, 1890, 2705, + 2267, 1906, 2701, + 2245, 1925, 2693, + 2215, 1950, 2685, + 2169, 1981, 2673, + 2099, 2020, 2657, + 1986, 2067, 2633, + 1771, 2123, 2599, + 1013, 2189, 2551, + 0, 2263, 2477, + 0, 2349, 2355, + 0, 2441, 2111, + 0, 2541, 741, + 0, 2649, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2333, 1848, 2721, + 2331, 1850, 2719, + 2327, 1853, 2719, + 2325, 1857, 2717, + 2321, 1862, 2717, + 2315, 1869, 2715, + 2305, 1877, 2711, + 2295, 1889, 2709, + 2279, 1904, 2703, + 2257, 1924, 2697, + 2227, 1949, 2689, + 2183, 1980, 2677, + 2115, 2019, 2659, + 2007, 2065, 2637, + 1804, 2123, 2603, + 1166, 2187, 2555, + 0, 2263, 2483, + 0, 2347, 2361, + 0, 2441, 2121, + 0, 2541, 921, + 0, 2647, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2345, 1846, 2725, + 2343, 1848, 2723, + 2341, 1851, 2723, + 2337, 1855, 2721, + 2333, 1860, 2721, + 2327, 1867, 2719, + 2319, 1876, 2715, + 2309, 1887, 2713, + 2293, 1903, 2707, + 2273, 1922, 2701, + 2243, 1947, 2693, + 2201, 1979, 2681, + 2137, 2017, 2663, + 2034, 2065, 2641, + 1845, 2121, 2609, + 1312, 2187, 2561, + 0, 2263, 2489, + 0, 2347, 2369, + 0, 2441, 2135, + 0, 2541, 1086, + 0, 2647, 0, + 0, 2759, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3119, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2363, 1843, 2729, + 2361, 1845, 2729, + 2359, 1848, 2727, + 2355, 1852, 2727, + 2351, 1857, 2725, + 2345, 1864, 2723, + 2337, 1873, 2721, + 2327, 1885, 2717, + 2313, 1900, 2713, + 2293, 1920, 2707, + 2265, 1945, 2697, + 2223, 1977, 2685, + 2163, 2016, 2669, + 2067, 2063, 2647, + 1894, 2119, 2615, + 1455, 2185, 2569, + 0, 2261, 2497, + 0, 2347, 2379, + 0, 2439, 2153, + 0, 2539, 1241, + 0, 2647, 0, + 0, 2759, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3119, 0, + 0, 3245, 0, + 0, 3371, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2385, 1839, 2735, + 2383, 1842, 2735, + 2381, 1845, 2735, + 2377, 1849, 2733, + 2373, 1854, 2731, + 2367, 1861, 2729, + 2361, 1870, 2727, + 2351, 1882, 2725, + 2337, 1897, 2719, + 2319, 1917, 2713, + 2291, 1942, 2705, + 2253, 1974, 2693, + 2197, 2013, 2677, + 2107, 2061, 2655, + 1952, 2117, 2623, + 1595, 2185, 2577, + 0, 2261, 2507, + 0, 2345, 2393, + 0, 2439, 2175, + 0, 2539, 1390, + 0, 2647, 0, + 0, 2759, 0, + 0, 2875, 0, + 0, 2997, 0, + 0, 3119, 0, + 0, 3245, 0, + 0, 3371, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2411, 1835, 2745, + 2411, 1837, 2743, + 2409, 1840, 2743, + 2405, 1844, 2743, + 2401, 1849, 2741, + 2397, 1856, 2739, + 2389, 1865, 2737, + 2381, 1877, 2733, + 2367, 1893, 2729, + 2349, 1913, 2723, + 2325, 1939, 2715, + 2289, 1971, 2703, + 2237, 2010, 2687, + 2157, 2059, 2665, + 2020, 2115, 2635, + 1733, 2181, 2589, + 0, 2259, 2523, + 0, 2343, 2413, + 0, 2437, 2205, + 0, 2539, 1534, + 0, 2645, 0, + 0, 2759, 0, + 0, 2875, 0, + 0, 2997, 0, + 0, 3119, 0, + 0, 3245, 0, + 0, 3371, 0, + 0, 3499, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2447, 1828, 2755, + 2445, 1831, 2755, + 2443, 1834, 2755, + 2441, 1838, 2753, + 2437, 1843, 2753, + 2433, 1850, 2751, + 2425, 1859, 2747, + 2417, 1872, 2745, + 2405, 1887, 2741, + 2389, 1908, 2735, + 2367, 1933, 2727, + 2335, 1966, 2715, + 2287, 2006, 2701, + 2215, 2055, 2679, + 2099, 2111, 2649, + 1870, 2179, 2605, + 933, 2255, 2541, + 0, 2341, 2435, + 0, 2435, 2241, + 0, 2537, 1675, + 0, 2645, 0, + 0, 2757, 0, + 0, 2875, 0, + 0, 2995, 0, + 0, 3119, 0, + 0, 3245, 0, + 0, 3371, 0, + 0, 3499, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2489, 1819, 2771, + 2487, 1822, 2771, + 2485, 1825, 2769, + 2483, 1829, 2769, + 2479, 1835, 2767, + 2475, 1842, 2765, + 2469, 1851, 2763, + 2463, 1864, 2759, + 2451, 1880, 2755, + 2437, 1900, 2749, + 2417, 1926, 2741, + 2387, 1959, 2731, + 2347, 2000, 2717, + 2283, 2049, 2697, + 2185, 2107, 2667, + 2005, 2175, 2627, + 1530, 2253, 2565, + 0, 2339, 2465, + 0, 2433, 2285, + 0, 2535, 1814, + 0, 2643, 0, + 0, 2757, 0, + 0, 2873, 0, + 0, 2995, 0, + 0, 3119, 0, + 0, 3245, 0, + 0, 3371, 0, + 0, 3499, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2539, 1807, 2789, + 2539, 1810, 2789, + 2537, 1813, 2789, + 2535, 1817, 2787, + 2531, 1823, 2787, + 2529, 1830, 2785, + 2523, 1840, 2783, + 2515, 1853, 2779, + 2507, 1869, 2775, + 2493, 1890, 2769, + 2475, 1917, 2763, + 2451, 1951, 2753, + 2415, 1992, 2739, + 2361, 2042, 2719, + 2279, 2101, 2691, + 2139, 2169, 2653, + 1840, 2247, 2593, + 0, 2335, 2501, + 0, 2431, 2339, + 0, 2533, 1951, + 0, 2641, 0, + 0, 2755, 0, + 0, 2873, 0, + 0, 2993, 0, + 0, 3117, 0, + 0, 3243, 0, + 0, 3371, 0, + 0, 3499, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2599, 1791, 2813, + 2599, 1793, 2813, + 2597, 1797, 2813, + 2595, 1801, 2811, + 2593, 1807, 2811, + 2589, 1815, 2809, + 2585, 1825, 2807, + 2579, 1838, 2805, + 2571, 1855, 2801, + 2559, 1877, 2795, + 2545, 1904, 2789, + 2523, 1938, 2779, + 2493, 1981, 2765, + 2449, 2032, 2747, + 2381, 2093, 2721, + 2273, 2163, 2685, + 2071, 2241, 2631, + 1442, 2329, 2547, + 0, 2425, 2401, + 0, 2529, 2087, + 0, 2639, 0, + 0, 2753, 0, + 0, 2871, 0, + 0, 2993, 0, + 0, 3117, 0, + 0, 3243, 0, + 0, 3371, 0, + 0, 3499, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2669, 1768, 2845, + 2669, 1770, 2845, + 2667, 1774, 2843, + 2667, 1779, 2843, + 2665, 1785, 2841, + 2661, 1793, 2841, + 2657, 1803, 2839, + 2653, 1817, 2835, + 2645, 1835, 2831, + 2635, 1857, 2827, + 2623, 1886, 2821, + 2605, 1922, 2811, + 2579, 1966, 2799, + 2543, 2018, 2783, + 2489, 2081, 2759, + 2407, 2153, 2725, + 2265, 2233, 2675, + 1960, 2323, 2601, + 0, 2421, 2475, + 0, 2525, 2221, + 0, 2635, 0, + 0, 2751, 0, + 0, 2869, 0, + 0, 2991, 0, + 0, 3115, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3499, 0, + 0, 3627, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2749, 1735, 2883, + 2749, 1738, 2883, + 2747, 1742, 2881, + 2747, 1747, 2881, + 2745, 1753, 2879, + 2741, 1762, 2879, + 2739, 1773, 2877, + 2735, 1788, 2875, + 2729, 1807, 2871, + 2721, 1831, 2867, + 2709, 1861, 2861, + 2695, 1899, 2853, + 2675, 1945, 2841, + 2645, 2000, 2825, + 2603, 2065, 2805, + 2539, 2139, 2773, + 2439, 2221, 2729, + 2253, 2313, 2663, + 1749, 2413, 2555, + 0, 2519, 2355, + 0, 2631, 1740, + 0, 2747, 0, + 0, 2867, 0, + 0, 2989, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2837, 1687, 2929, + 2837, 1690, 2929, + 2835, 1694, 2927, + 2835, 1700, 2927, + 2833, 1707, 2927, + 2831, 1717, 2925, + 2829, 1729, 2923, + 2825, 1745, 2921, + 2821, 1766, 2919, + 2815, 1792, 2915, + 2805, 1825, 2909, + 2793, 1866, 2901, + 2777, 1915, 2891, + 2753, 1974, 2877, + 2721, 2042, 2859, + 2673, 2119, 2831, + 2599, 2205, 2793, + 2477, 2301, 2735, + 2239, 2403, 2647, + 1046, 2511, 2489, + 0, 2623, 2123, + 0, 2741, 0, + 0, 2863, 0, + 0, 2987, 0, + 0, 3111, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2933, 1614, 2983, + 2933, 1617, 2983, + 2933, 1622, 2983, + 2931, 1629, 2983, + 2931, 1637, 2981, + 2929, 1648, 2981, + 2927, 1663, 2979, + 2923, 1681, 2977, + 2921, 1705, 2975, + 2915, 1735, 2971, + 2907, 1772, 2967, + 2899, 1818, 2959, + 2885, 1872, 2951, + 2867, 1936, 2939, + 2841, 2009, 2923, + 2805, 2093, 2899, + 2751, 2183, 2867, + 2669, 2283, 2817, + 2525, 2389, 2745, + 2217, 2499, 2621, + 0, 2615, 2381, + 0, 2735, 1111, + 0, 2857, 0, + 0, 2983, 0, + 0, 3109, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 3037, 1492, 3049, + 3037, 1497, 3049, + 3037, 1503, 3049, + 3035, 1512, 3047, + 3035, 1523, 3047, + 3033, 1537, 3045, + 3031, 1555, 3045, + 3029, 1579, 3043, + 3027, 1608, 3041, + 3023, 1645, 3037, + 3017, 1690, 3033, + 3009, 1744, 3027, + 2999, 1807, 3021, + 2985, 1880, 3011, + 2965, 1962, 2995, + 2937, 2053, 2977, + 2899, 2151, 2949, + 2839, 2257, 2909, + 2747, 2369, 2849, + 2583, 2483, 2755, + 2187, 2603, 2587, + 0, 2725, 2177, + 0, 2851, 0, + 0, 2977, 0, + 0, 3105, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 3147, 1253, 3123, + 3147, 1261, 3123, + 3145, 1272, 3123, + 3145, 1286, 3123, + 3145, 1304, 3121, + 3143, 1327, 3121, + 3143, 1355, 3119, + 3141, 1391, 3119, + 3137, 1435, 3117, + 3135, 1488, 3113, + 3131, 1550, 3111, + 3125, 1622, 3105, + 3117, 1703, 3099, + 3105, 1793, 3091, + 3091, 1891, 3079, + 3071, 1996, 3063, + 3041, 2107, 3039, + 2999, 2221, 3007, + 2935, 2341, 2959, + 2835, 2463, 2887, + 2649, 2587, 2769, + 2143, 2713, 2537, + 0, 2841, 1540, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 3261, 75, 3207, + 3261, 173, 3207, + 3261, 278, 3207, + 3259, 388, 3205, + 3259, 504, 3205, + 3259, 623, 3205, + 3257, 745, 3203, + 3255, 869, 3203, + 3255, 996, 3201, + 3251, 1123, 3199, + 3249, 1252, 3195, + 3243, 1382, 3193, + 3237, 1512, 3187, + 3229, 1643, 3179, + 3219, 1774, 3169, + 3203, 1905, 3157, + 3181, 2037, 3139, + 3151, 2169, 3113, + 3105, 2301, 3075, + 3039, 2433, 3021, + 2929, 2563, 2935, + 2725, 2695, 2787, + 2075, 2829, 2459, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3379, 0, 3299, + 3379, 0, 3299, + 3379, 0, 3299, + 3379, 0, 3299, + 3377, 0, 3297, + 3377, 0, 3297, + 3377, 0, 3297, + 3375, 0, 3295, + 3375, 0, 3295, + 3373, 0, 3293, + 3369, 0, 3289, + 3367, 154, 3287, + 3361, 964, 3283, + 3355, 1304, 3277, + 3347, 1546, 3269, + 3335, 1746, 3259, + 3319, 1923, 3243, + 3297, 2087, 3223, + 3265, 2241, 3195, + 3219, 2387, 3153, + 3147, 2531, 3091, + 3033, 2671, 2991, + 2811, 2811, 2811, + 1967, 2947, 2331, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 3501, 0, 3399, + 3501, 0, 3399, + 3501, 0, 3399, + 3501, 0, 3397, + 3499, 0, 3397, + 3499, 0, 3397, + 3499, 0, 3397, + 3497, 0, 3395, + 3497, 0, 3395, + 3495, 0, 3393, + 3493, 0, 3391, + 3491, 0, 3389, + 3487, 0, 3385, + 3483, 0, 3381, + 3477, 624, 3375, + 3467, 1374, 3367, + 3455, 1707, 3355, + 3439, 1946, 3339, + 3415, 2145, 3317, + 3383, 2321, 3285, + 3335, 2483, 3239, + 3261, 2637, 3169, + 3141, 2785, 3057, + 2903, 2929, 2839, + 1764, 3069, 2065, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3625, 0, 3505, + 3625, 0, 3505, + 3625, 0, 3505, + 3625, 0, 3505, + 3623, 0, 3503, + 3623, 0, 3503, + 3623, 0, 3503, + 3623, 0, 3503, + 3621, 0, 3501, + 3621, 0, 3501, + 3619, 0, 3499, + 3617, 0, 3497, + 3615, 0, 3495, + 3611, 0, 3491, + 3607, 0, 3485, + 3599, 0, 3479, + 3591, 937, 3471, + 3579, 1648, 3459, + 3561, 1976, 3441, + 3539, 2213, 3417, + 3505, 2411, 3383, + 3455, 2587, 3335, + 3381, 2749, 3259, + 3255, 2903, 3131, + 3005, 3049, 2875, + 1131, 3193, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3607, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3751, 0, 3617, + 3751, 0, 3617, + 3751, 0, 3617, + 3751, 0, 3617, + 3751, 0, 3615, + 3749, 0, 3615, + 3749, 0, 3615, + 3749, 0, 3615, + 3749, 0, 3615, + 3747, 0, 3613, + 3747, 0, 3613, + 3745, 0, 3611, + 3743, 0, 3609, + 3741, 0, 3605, + 3737, 0, 3601, + 3731, 0, 3597, + 3725, 0, 3589, + 3717, 0, 3581, + 3703, 1555, 3567, + 3687, 2012, 3549, + 3663, 2291, 3525, + 3629, 2509, 3489, + 3579, 2695, 3437, + 3501, 2865, 3355, + 3373, 3023, 3215, + 3111, 3173, 2919, + 0, 3319, 0, + 0, 3461, 0, + 0, 3601, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4009, 0, + 3879, 0, 3733, + 3879, 0, 3733, + 3877, 0, 3733, + 3877, 0, 3733, + 3877, 0, 3733, + 3877, 0, 3733, + 3877, 0, 3731, + 3877, 0, 3731, + 3877, 0, 3731, + 3875, 0, 3731, + 3875, 0, 3729, + 3873, 0, 3729, + 3873, 0, 3727, + 3871, 0, 3725, + 3867, 0, 3721, + 3863, 0, 3717, + 3859, 0, 3713, + 3853, 0, 3705, + 3843, 0, 3695, + 3831, 1390, 3681, + 3813, 2057, 3663, + 3789, 2379, 3637, + 3755, 2613, 3599, + 3703, 2809, 3545, + 3625, 2985, 3457, + 3495, 3147, 3309, + 3225, 3299, 2973, + 0, 3447, 0, + 0, 3589, 0, + 0, 3729, 0, + 0, 3867, 0, + 0, 4005, 0, + 4007, 0, 3853, + 4007, 0, 3853, + 4007, 0, 3853, + 4007, 0, 3853, + 4007, 0, 3853, + 4007, 0, 3853, + 4007, 0, 3851, + 4005, 0, 3851, + 4005, 0, 3851, + 4005, 0, 3851, + 4005, 0, 3851, + 4003, 0, 3849, + 4003, 0, 3847, + 4001, 0, 3847, + 3999, 0, 3843, + 3997, 0, 3841, + 3993, 0, 3837, + 3987, 0, 3831, + 3981, 0, 3825, + 3971, 0, 3815, + 3959, 990, 3801, + 3941, 2109, 3781, + 3917, 2473, 3755, + 3881, 2723, 3715, + 3831, 2927, 3657, + 3751, 3107, 3567, + 3619, 3271, 3409, + 3341, 3427, 3035, + 0, 3575, 0, + 0, 3719, 0, + 0, 3861, 0, + 0, 3999, 0, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3973, + 4095, 0, 3973, + 4095, 0, 3973, + 4095, 0, 3971, + 4095, 0, 3971, + 4095, 0, 3969, + 4095, 0, 3967, + 4095, 0, 3963, + 4095, 0, 3959, + 4095, 0, 3953, + 4095, 0, 3947, + 4095, 0, 3935, + 4087, 0, 3921, + 4071, 2173, 3903, + 4045, 2575, 3875, + 4011, 2839, 3835, + 3959, 3049, 3775, + 3879, 3233, 3681, + 3743, 3399, 3515, + 3461, 3555, 3109, + 0, 3705, 0, + 0, 3849, 0, + 0, 3991, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4093, + 4095, 0, 4091, + 4095, 0, 4089, + 4095, 0, 4085, + 4095, 0, 4079, + 4095, 0, 4071, + 4095, 0, 4061, + 4095, 0, 4045, + 4095, 2245, 4025, + 4095, 2683, 3997, + 4095, 2959, 3957, + 4087, 3173, 3897, + 4007, 3359, 3799, + 3871, 3527, 3627, + 3585, 3685, 3189, + 0, 3835, 0, + 0, 3981, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2327, 4095, + 4095, 2797, 4095, + 4095, 3081, 4081, + 4095, 3299, 4019, + 4095, 3487, 3921, + 3999, 3657, 3743, + 3711, 3815, 3281, + 0, 3965, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2417, 4095, + 4095, 2915, 4095, + 4095, 3205, 4095, + 4095, 3427, 4095, + 4095, 3615, 4045, + 4095, 3787, 3865, + 3837, 3945, 3379, + 2431, 1983, 2843, + 2429, 1985, 2843, + 2427, 1987, 2841, + 2425, 1990, 2841, + 2421, 1994, 2839, + 2415, 1999, 2839, + 2409, 2005, 2837, + 2401, 2014, 2833, + 2387, 2026, 2831, + 2371, 2041, 2825, + 2347, 2061, 2819, + 2313, 2085, 2809, + 2265, 2115, 2797, + 2189, 2155, 2781, + 2063, 2201, 2757, + 1810, 2257, 2723, + 0, 2323, 2673, + 0, 2397, 2597, + 0, 2481, 2471, + 0, 2575, 2215, + 0, 2675, 0, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2433, 1983, 2843, + 2431, 1984, 2843, + 2429, 1987, 2843, + 2425, 1989, 2841, + 2423, 1993, 2841, + 2417, 1998, 2839, + 2411, 2005, 2837, + 2403, 2014, 2835, + 2389, 2026, 2831, + 2373, 2041, 2825, + 2349, 2061, 2819, + 2317, 2085, 2811, + 2267, 2115, 2797, + 2193, 2155, 2781, + 2067, 2201, 2757, + 1818, 2257, 2723, + 69, 2323, 2675, + 0, 2397, 2599, + 0, 2481, 2471, + 0, 2575, 2217, + 0, 2675, 0, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2435, 1982, 2845, + 2433, 1984, 2843, + 2431, 1986, 2843, + 2429, 1989, 2843, + 2425, 1993, 2841, + 2421, 1998, 2839, + 2413, 2005, 2837, + 2405, 2014, 2835, + 2393, 2025, 2831, + 2375, 2040, 2827, + 2353, 2059, 2819, + 2319, 2085, 2811, + 2271, 2115, 2799, + 2197, 2153, 2781, + 2073, 2201, 2759, + 1827, 2257, 2725, + 383, 2323, 2675, + 0, 2397, 2599, + 0, 2481, 2473, + 0, 2573, 2219, + 0, 2675, 0, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2437, 1982, 2845, + 2437, 1984, 2845, + 2435, 1986, 2843, + 2431, 1989, 2843, + 2429, 1993, 2843, + 2423, 1998, 2841, + 2417, 2004, 2839, + 2409, 2013, 2835, + 2397, 2025, 2833, + 2379, 2040, 2827, + 2357, 2059, 2821, + 2323, 2085, 2811, + 2275, 2115, 2799, + 2201, 2153, 2783, + 2081, 2201, 2759, + 1840, 2257, 2725, + 615, 2321, 2677, + 0, 2397, 2601, + 0, 2481, 2475, + 0, 2573, 2223, + 0, 2673, 39, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2443, 1981, 2847, + 2441, 1983, 2845, + 2439, 1985, 2845, + 2437, 1988, 2845, + 2433, 1992, 2843, + 2429, 1997, 2841, + 2421, 2004, 2839, + 2413, 2013, 2837, + 2401, 2024, 2833, + 2385, 2039, 2829, + 2361, 2059, 2823, + 2329, 2083, 2813, + 2281, 2115, 2801, + 2209, 2153, 2785, + 2089, 2201, 2761, + 1856, 2257, 2727, + 810, 2321, 2679, + 0, 2397, 2603, + 0, 2481, 2477, + 0, 2573, 2227, + 0, 2673, 413, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2449, 1981, 2847, + 2447, 1982, 2847, + 2445, 1984, 2847, + 2443, 1987, 2845, + 2439, 1991, 2845, + 2435, 1996, 2843, + 2427, 2003, 2841, + 2419, 2012, 2839, + 2407, 2024, 2835, + 2391, 2039, 2831, + 2369, 2059, 2823, + 2337, 2083, 2815, + 2289, 2115, 2803, + 2219, 2153, 2787, + 2103, 2199, 2763, + 1877, 2255, 2729, + 984, 2321, 2681, + 0, 2397, 2605, + 0, 2481, 2481, + 0, 2573, 2235, + 0, 2673, 667, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2455, 1979, 2849, + 2455, 1981, 2849, + 2453, 1983, 2849, + 2449, 1986, 2849, + 2447, 1990, 2847, + 2441, 1995, 2845, + 2435, 2002, 2843, + 2427, 2011, 2841, + 2415, 2023, 2837, + 2399, 2038, 2833, + 2377, 2057, 2827, + 2347, 2083, 2817, + 2301, 2113, 2805, + 2231, 2151, 2789, + 2119, 2199, 2765, + 1903, 2255, 2733, + 1145, 2321, 2683, + 0, 2395, 2609, + 0, 2481, 2487, + 0, 2573, 2243, + 0, 2673, 873, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2465, 1978, 2853, + 2465, 1980, 2853, + 2463, 1982, 2851, + 2461, 1985, 2851, + 2457, 1989, 2849, + 2453, 1994, 2849, + 2447, 2001, 2847, + 2437, 2010, 2843, + 2427, 2021, 2841, + 2411, 2036, 2835, + 2389, 2057, 2829, + 2359, 2081, 2821, + 2315, 2113, 2809, + 2247, 2151, 2791, + 2139, 2199, 2769, + 1936, 2255, 2735, + 1298, 2321, 2687, + 0, 2395, 2615, + 0, 2479, 2493, + 0, 2573, 2253, + 0, 2673, 1053, + 0, 2779, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2479, 1976, 2857, + 2477, 1978, 2857, + 2475, 1980, 2855, + 2473, 1983, 2855, + 2471, 1987, 2853, + 2465, 1992, 2853, + 2459, 1999, 2851, + 2451, 2008, 2847, + 2441, 2020, 2845, + 2425, 2035, 2839, + 2405, 2055, 2833, + 2375, 2079, 2825, + 2333, 2111, 2813, + 2269, 2149, 2797, + 2165, 2197, 2773, + 1977, 2253, 2741, + 1445, 2319, 2693, + 0, 2395, 2621, + 0, 2479, 2501, + 0, 2573, 2267, + 0, 2673, 1218, + 0, 2779, 0, + 0, 2891, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2495, 1973, 2861, + 2495, 1975, 2861, + 2493, 1977, 2861, + 2491, 1980, 2859, + 2487, 1984, 2859, + 2483, 1989, 2857, + 2477, 1996, 2855, + 2469, 2005, 2853, + 2459, 2017, 2849, + 2445, 2032, 2845, + 2425, 2053, 2839, + 2397, 2077, 2829, + 2357, 2109, 2819, + 2295, 2147, 2801, + 2199, 2195, 2779, + 2026, 2251, 2747, + 1587, 2317, 2701, + 0, 2393, 2629, + 0, 2479, 2511, + 0, 2571, 2285, + 0, 2673, 1373, + 0, 2779, 0, + 0, 2891, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3251, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2517, 1970, 2869, + 2517, 1972, 2867, + 2515, 1974, 2867, + 2513, 1977, 2867, + 2509, 1981, 2865, + 2505, 1986, 2863, + 2501, 1993, 2863, + 2493, 2002, 2859, + 2483, 2014, 2857, + 2469, 2029, 2851, + 2451, 2049, 2845, + 2423, 2075, 2837, + 2385, 2107, 2825, + 2329, 2145, 2809, + 2239, 2193, 2787, + 2085, 2249, 2755, + 1727, 2317, 2709, + 0, 2393, 2639, + 0, 2477, 2527, + 0, 2571, 2309, + 0, 2671, 1522, + 0, 2779, 0, + 0, 2891, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3251, 0, + 0, 3377, 0, + 0, 3503, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2545, 1965, 2877, + 2543, 1967, 2877, + 2543, 1969, 2875, + 2541, 1972, 2875, + 2537, 1976, 2875, + 2533, 1981, 2873, + 2529, 1988, 2871, + 2521, 1998, 2869, + 2513, 2010, 2865, + 2499, 2025, 2861, + 2481, 2045, 2855, + 2457, 2071, 2847, + 2421, 2103, 2835, + 2369, 2143, 2819, + 2289, 2191, 2797, + 2153, 2247, 2767, + 1865, 2315, 2721, + 0, 2391, 2655, + 0, 2475, 2545, + 0, 2569, 2337, + 0, 2671, 1666, + 0, 2777, 0, + 0, 2891, 0, + 0, 3007, 0, + 0, 3129, 0, + 0, 3251, 0, + 0, 3377, 0, + 0, 3503, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2579, 1959, 2889, + 2579, 1960, 2887, + 2577, 1963, 2887, + 2575, 1966, 2887, + 2573, 1970, 2885, + 2569, 1975, 2885, + 2565, 1982, 2883, + 2557, 1992, 2881, + 2549, 2004, 2877, + 2537, 2019, 2873, + 2521, 2040, 2867, + 2499, 2065, 2859, + 2467, 2097, 2847, + 2419, 2137, 2833, + 2347, 2187, 2811, + 2231, 2243, 2781, + 2002, 2311, 2737, + 1065, 2387, 2673, + 0, 2473, 2567, + 0, 2567, 2373, + 0, 2669, 1807, + 0, 2777, 0, + 0, 2889, 0, + 0, 3007, 0, + 0, 3127, 0, + 0, 3251, 0, + 0, 3377, 0, + 0, 3503, 0, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2621, 1950, 2903, + 2621, 1952, 2903, + 2619, 1954, 2903, + 2617, 1957, 2901, + 2615, 1961, 2901, + 2611, 1967, 2899, + 2607, 1974, 2897, + 2601, 1983, 2895, + 2595, 1996, 2891, + 2583, 2012, 2887, + 2569, 2032, 2881, + 2549, 2059, 2875, + 2519, 2091, 2863, + 2479, 2131, 2849, + 2415, 2181, 2829, + 2317, 2239, 2799, + 2137, 2307, 2759, + 1662, 2385, 2697, + 0, 2471, 2597, + 0, 2565, 2417, + 0, 2667, 1946, + 0, 2775, 0, + 0, 2889, 0, + 0, 3007, 0, + 0, 3127, 0, + 0, 3251, 0, + 0, 3377, 0, + 0, 3503, 0, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2673, 1938, 2923, + 2671, 1940, 2921, + 2671, 1942, 2921, + 2669, 1945, 2921, + 2667, 1949, 2919, + 2663, 1955, 2919, + 2661, 1962, 2917, + 2655, 1972, 2915, + 2649, 1985, 2911, + 2639, 2001, 2907, + 2625, 2022, 2901, + 2607, 2049, 2895, + 2583, 2083, 2885, + 2547, 2123, 2871, + 2493, 2173, 2851, + 2411, 2233, 2823, + 2271, 2301, 2785, + 1972, 2379, 2725, + 0, 2467, 2633, + 0, 2563, 2471, + 0, 2665, 2083, + 0, 2773, 0, + 0, 2887, 0, + 0, 3005, 0, + 0, 3127, 0, + 0, 3249, 0, + 0, 3375, 0, + 0, 3503, 0, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2733, 1921, 2947, + 2731, 1923, 2947, + 2731, 1926, 2945, + 2729, 1929, 2945, + 2727, 1933, 2945, + 2725, 1939, 2943, + 2721, 1947, 2941, + 2717, 1957, 2939, + 2711, 1970, 2937, + 2703, 1987, 2933, + 2693, 2009, 2927, + 2677, 2036, 2921, + 2655, 2071, 2911, + 2625, 2113, 2897, + 2581, 2163, 2879, + 2513, 2225, 2853, + 2405, 2295, 2817, + 2203, 2373, 2763, + 1574, 2461, 2679, + 0, 2559, 2533, + 0, 2661, 2219, + 0, 2771, 0, + 0, 2885, 0, + 0, 3003, 0, + 0, 3125, 0, + 0, 3249, 0, + 0, 3375, 0, + 0, 3503, 0, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2803, 1898, 2977, + 2801, 1900, 2977, + 2801, 1903, 2977, + 2799, 1906, 2975, + 2799, 1911, 2975, + 2797, 1917, 2973, + 2793, 1925, 2973, + 2789, 1935, 2971, + 2785, 1949, 2967, + 2777, 1967, 2963, + 2767, 1990, 2959, + 2755, 2018, 2953, + 2737, 2055, 2943, + 2711, 2097, 2931, + 2675, 2151, 2915, + 2621, 2213, 2891, + 2539, 2285, 2857, + 2397, 2365, 2807, + 2093, 2455, 2733, + 0, 2553, 2607, + 0, 2657, 2353, + 0, 2767, 0, + 0, 2883, 0, + 0, 3001, 0, + 0, 3123, 0, + 0, 3247, 0, + 0, 3375, 0, + 0, 3501, 0, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2881, 1865, 3015, + 2881, 1867, 3015, + 2881, 1870, 3015, + 2879, 1874, 3013, + 2879, 1879, 3013, + 2877, 1885, 3011, + 2875, 1894, 3011, + 2871, 1905, 3009, + 2867, 1920, 3007, + 2861, 1939, 3003, + 2853, 1963, 2999, + 2843, 1993, 2993, + 2827, 2031, 2985, + 2807, 2077, 2973, + 2777, 2131, 2957, + 2735, 2197, 2937, + 2673, 2271, 2905, + 2571, 2353, 2861, + 2387, 2445, 2795, + 1882, 2545, 2687, + 0, 2651, 2487, + 0, 2763, 1872, + 0, 2879, 0, + 0, 2999, 0, + 0, 3121, 0, + 0, 3247, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2969, 1817, 3061, + 2969, 1819, 3061, + 2969, 1822, 3061, + 2969, 1826, 3059, + 2967, 1832, 3059, + 2965, 1839, 3059, + 2963, 1849, 3057, + 2961, 1861, 3055, + 2957, 1877, 3053, + 2953, 1898, 3051, + 2947, 1924, 3047, + 2937, 1957, 3041, + 2925, 1998, 3033, + 2909, 2047, 3023, + 2885, 2105, 3009, + 2853, 2173, 2991, + 2805, 2251, 2963, + 2731, 2337, 2925, + 2611, 2433, 2869, + 2371, 2535, 2779, + 1178, 2643, 2621, + 0, 2757, 2255, + 0, 2873, 0, + 0, 2995, 0, + 0, 3119, 0, + 0, 3243, 0, + 0, 3371, 0, + 0, 3499, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 3067, 1743, 3117, + 3065, 1746, 3117, + 3065, 1749, 3115, + 3065, 1754, 3115, + 3063, 1761, 3115, + 3063, 1769, 3113, + 3061, 1780, 3113, + 3059, 1795, 3111, + 3057, 1813, 3109, + 3053, 1837, 3107, + 3047, 1867, 3103, + 3041, 1904, 3099, + 3031, 1950, 3093, + 3017, 2004, 3083, + 2999, 2069, 3071, + 2973, 2141, 3055, + 2937, 2225, 3031, + 2883, 2315, 2999, + 2801, 2415, 2951, + 2657, 2521, 2877, + 2349, 2631, 2755, + 0, 2747, 2513, + 0, 2867, 1244, + 0, 2989, 0, + 0, 3115, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 3169, 1621, 3181, + 3169, 1624, 3181, + 3169, 1629, 3181, + 3169, 1636, 3181, + 3167, 1644, 3179, + 3167, 1655, 3179, + 3165, 1669, 3179, + 3163, 1687, 3177, + 3161, 1711, 3175, + 3159, 1741, 3173, + 3155, 1777, 3169, + 3149, 1822, 3165, + 3141, 1876, 3161, + 3131, 1940, 3153, + 3117, 2012, 3143, + 3097, 2095, 3129, + 3071, 2185, 3109, + 3031, 2285, 3081, + 2971, 2389, 3041, + 2879, 2501, 2981, + 2715, 2617, 2887, + 2319, 2735, 2719, + 0, 2857, 2309, + 0, 2983, 0, + 0, 3109, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 3279, 1379, 3255, + 3279, 1385, 3255, + 3279, 1394, 3255, + 3277, 1404, 3255, + 3277, 1418, 3255, + 3277, 1436, 3253, + 3275, 1459, 3253, + 3275, 1487, 3251, + 3273, 1523, 3251, + 3271, 1567, 3249, + 3267, 1620, 3245, + 3263, 1683, 3243, + 3257, 1754, 3237, + 3249, 1836, 3231, + 3239, 1925, 3223, + 3223, 2023, 3211, + 3203, 2127, 3195, + 3173, 2239, 3171, + 3131, 2353, 3139, + 3067, 2473, 3091, + 2967, 2595, 3019, + 2781, 2719, 2901, + 2275, 2845, 2669, + 0, 2973, 1672, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 3393, 117, 3339, + 3393, 207, 3339, + 3393, 305, 3339, + 3393, 410, 3339, + 3391, 520, 3337, + 3391, 636, 3337, + 3391, 755, 3337, + 3389, 877, 3335, + 3389, 1001, 3335, + 3387, 1128, 3333, + 3383, 1255, 3331, + 3381, 1384, 3329, + 3375, 1514, 3325, + 3369, 1644, 3319, + 3361, 1775, 3311, + 3351, 1906, 3303, + 3335, 2037, 3289, + 3313, 2169, 3271, + 3283, 2301, 3245, + 3239, 2433, 3207, + 3171, 2565, 3153, + 3061, 2697, 3067, + 2857, 2829, 2919, + 2207, 2961, 2591, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3511, 0, 3431, + 3511, 0, 3431, + 3511, 0, 3431, + 3511, 0, 3431, + 3511, 0, 3431, + 3509, 0, 3429, + 3509, 0, 3429, + 3509, 0, 3429, + 3507, 0, 3427, + 3507, 0, 3427, + 3505, 0, 3425, + 3501, 0, 3423, + 3499, 286, 3419, + 3493, 1096, 3415, + 3487, 1436, 3409, + 3479, 1678, 3401, + 3467, 1878, 3391, + 3451, 2055, 3375, + 3429, 2219, 3355, + 3397, 2373, 3327, + 3351, 2521, 3285, + 3279, 2663, 3223, + 3165, 2803, 3123, + 2943, 2943, 2943, + 2099, 3079, 2463, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3633, 0, 3531, + 3633, 0, 3531, + 3633, 0, 3531, + 3633, 0, 3531, + 3633, 0, 3529, + 3631, 0, 3529, + 3631, 0, 3529, + 3631, 0, 3529, + 3629, 0, 3527, + 3629, 0, 3527, + 3627, 0, 3525, + 3625, 0, 3523, + 3623, 0, 3521, + 3619, 0, 3517, + 3615, 0, 3513, + 3609, 756, 3507, + 3599, 1506, 3499, + 3587, 1839, 3487, + 3571, 2079, 3471, + 3547, 2277, 3449, + 3515, 2453, 3417, + 3467, 2615, 3371, + 3395, 2769, 3301, + 3273, 2917, 3189, + 3035, 3061, 2971, + 1896, 3201, 2197, + 0, 3339, 0, + 0, 3475, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3757, 0, 3637, + 3757, 0, 3637, + 3757, 0, 3637, + 3757, 0, 3637, + 3757, 0, 3637, + 3757, 0, 3637, + 3755, 0, 3635, + 3755, 0, 3635, + 3755, 0, 3635, + 3753, 0, 3633, + 3753, 0, 3633, + 3751, 0, 3631, + 3749, 0, 3629, + 3747, 0, 3627, + 3743, 0, 3623, + 3739, 0, 3619, + 3731, 0, 3611, + 3723, 1069, 3603, + 3711, 1780, 3591, + 3693, 2107, 3573, + 3671, 2345, 3549, + 3637, 2543, 3515, + 3587, 2719, 3467, + 3513, 2881, 3391, + 3387, 3035, 3263, + 3137, 3181, 3007, + 1263, 3325, 0, + 0, 3465, 0, + 0, 3603, 0, + 0, 3739, 0, + 0, 3875, 0, + 0, 4009, 0, + 3883, 0, 3749, + 3883, 0, 3749, + 3883, 0, 3749, + 3883, 0, 3749, + 3883, 0, 3749, + 3883, 0, 3747, + 3881, 0, 3747, + 3881, 0, 3747, + 3881, 0, 3747, + 3881, 0, 3747, + 3879, 0, 3745, + 3879, 0, 3745, + 3877, 0, 3743, + 3875, 0, 3741, + 3873, 0, 3737, + 3869, 0, 3733, + 3863, 0, 3729, + 3857, 0, 3721, + 3849, 0, 3713, + 3835, 1687, 3699, + 3819, 2145, 3681, + 3795, 2423, 3657, + 3761, 2641, 3621, + 3711, 2827, 3569, + 3633, 2997, 3487, + 3505, 3155, 3347, + 3243, 3305, 3053, + 0, 3451, 0, + 0, 3593, 0, + 0, 3733, 0, + 0, 3869, 0, + 0, 4005, 0, + 4011, 0, 3865, + 4011, 0, 3865, + 4011, 0, 3865, + 4011, 0, 3865, + 4009, 0, 3865, + 4009, 0, 3865, + 4009, 0, 3865, + 4009, 0, 3863, + 4009, 0, 3863, + 4009, 0, 3863, + 4007, 0, 3863, + 4007, 0, 3861, + 4005, 0, 3861, + 4005, 0, 3859, + 4003, 0, 3857, + 3999, 0, 3853, + 3997, 0, 3849, + 3991, 0, 3845, + 3985, 0, 3837, + 3975, 0, 3827, + 3963, 1522, 3815, + 3945, 2189, 3795, + 3921, 2511, 3769, + 3887, 2745, 3731, + 3835, 2941, 3677, + 3757, 3117, 3589, + 3627, 3279, 3441, + 3357, 3431, 3105, + 0, 3579, 0, + 0, 3721, 0, + 0, 3861, 0, + 0, 3999, 0, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3983, + 4095, 0, 3983, + 4095, 0, 3983, + 4095, 0, 3983, + 4095, 0, 3981, + 4095, 0, 3981, + 4095, 0, 3979, + 4095, 0, 3977, + 4095, 0, 3973, + 4095, 0, 3969, + 4095, 0, 3963, + 4095, 0, 3957, + 4095, 0, 3947, + 4091, 1122, 3933, + 4073, 2243, 3913, + 4049, 2605, 3887, + 4015, 2855, 3847, + 3963, 3061, 3789, + 3883, 3239, 3699, + 3751, 3405, 3541, + 3473, 3559, 3169, + 0, 3707, 0, + 0, 3851, 0, + 0, 3993, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4091, + 4095, 0, 4085, + 4095, 0, 4079, + 4095, 0, 4069, + 4095, 0, 4053, + 4095, 2305, 4035, + 4095, 2707, 4007, + 4095, 2971, 3967, + 4091, 3181, 3907, + 4011, 3365, 3813, + 3877, 3531, 3647, + 3593, 3687, 3241, + 0, 3837, 0, + 0, 3981, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2377, 4095, + 4095, 2815, 4095, + 4095, 3091, 4089, + 4095, 3305, 4029, + 4095, 3491, 3933, + 4003, 3659, 3759, + 3717, 3817, 3321, + 0, 3967, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2459, 4095, + 4095, 2929, 4095, + 4095, 3213, 4095, + 4095, 3431, 4095, + 4095, 3619, 4053, + 4095, 3789, 3877, + 3843, 3947, 3413, + 2563, 2115, 2975, + 2561, 2115, 2975, + 2559, 2117, 2975, + 2557, 2119, 2973, + 2555, 2123, 2973, + 2551, 2125, 2971, + 2547, 2131, 2971, + 2539, 2137, 2969, + 2531, 2147, 2965, + 2519, 2159, 2961, + 2501, 2173, 2957, + 2477, 2193, 2951, + 2445, 2217, 2941, + 2395, 2249, 2929, + 2319, 2287, 2913, + 2193, 2333, 2889, + 1937, 2389, 2855, + 0, 2455, 2805, + 0, 2529, 2729, + 0, 2613, 2601, + 0, 2707, 2345, + 0, 2807, 0, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2563, 2113, 2975, + 2563, 2115, 2975, + 2561, 2117, 2975, + 2559, 2119, 2973, + 2557, 2121, 2973, + 2553, 2125, 2973, + 2547, 2131, 2971, + 2541, 2137, 2969, + 2533, 2147, 2965, + 2519, 2157, 2963, + 2503, 2173, 2957, + 2479, 2193, 2951, + 2445, 2217, 2941, + 2397, 2249, 2929, + 2321, 2287, 2913, + 2195, 2333, 2889, + 1942, 2389, 2855, + 0, 2455, 2805, + 0, 2529, 2729, + 0, 2613, 2603, + 0, 2707, 2347, + 0, 2807, 0, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2565, 2113, 2975, + 2565, 2115, 2975, + 2563, 2117, 2975, + 2561, 2119, 2975, + 2559, 2121, 2973, + 2555, 2125, 2973, + 2549, 2131, 2971, + 2543, 2137, 2969, + 2535, 2147, 2967, + 2523, 2157, 2963, + 2505, 2173, 2957, + 2481, 2193, 2951, + 2449, 2217, 2943, + 2399, 2247, 2931, + 2325, 2287, 2913, + 2199, 2333, 2889, + 1950, 2389, 2855, + 201, 2455, 2807, + 0, 2529, 2731, + 0, 2613, 2603, + 0, 2707, 2349, + 0, 2807, 0, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2567, 2113, 2977, + 2567, 2115, 2977, + 2565, 2117, 2975, + 2563, 2119, 2975, + 2561, 2121, 2975, + 2557, 2125, 2973, + 2553, 2131, 2971, + 2545, 2137, 2969, + 2537, 2145, 2967, + 2525, 2157, 2963, + 2509, 2173, 2959, + 2485, 2191, 2953, + 2451, 2217, 2943, + 2403, 2247, 2931, + 2329, 2287, 2913, + 2205, 2333, 2891, + 1959, 2389, 2857, + 515, 2455, 2807, + 0, 2529, 2731, + 0, 2613, 2605, + 0, 2707, 2351, + 0, 2807, 0, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2571, 2113, 2977, + 2569, 2115, 2977, + 2569, 2115, 2977, + 2567, 2117, 2977, + 2563, 2121, 2975, + 2561, 2125, 2975, + 2555, 2129, 2973, + 2549, 2137, 2971, + 2541, 2145, 2969, + 2529, 2157, 2965, + 2511, 2173, 2959, + 2489, 2191, 2953, + 2455, 2217, 2945, + 2407, 2247, 2931, + 2333, 2285, 2915, + 2213, 2333, 2891, + 1972, 2389, 2857, + 748, 2455, 2809, + 0, 2529, 2733, + 0, 2613, 2607, + 0, 2705, 2355, + 0, 2807, 171, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2575, 2113, 2979, + 2575, 2113, 2979, + 2573, 2115, 2977, + 2571, 2117, 2977, + 2569, 2121, 2977, + 2565, 2125, 2975, + 2561, 2129, 2973, + 2553, 2135, 2971, + 2545, 2145, 2969, + 2533, 2157, 2965, + 2517, 2171, 2961, + 2493, 2191, 2955, + 2461, 2215, 2945, + 2413, 2247, 2933, + 2341, 2285, 2917, + 2221, 2333, 2893, + 1988, 2389, 2859, + 942, 2453, 2811, + 0, 2529, 2735, + 0, 2613, 2611, + 0, 2705, 2359, + 0, 2805, 544, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2581, 2111, 2981, + 2581, 2113, 2979, + 2579, 2115, 2979, + 2577, 2117, 2979, + 2575, 2119, 2979, + 2571, 2123, 2977, + 2567, 2129, 2975, + 2559, 2135, 2973, + 2551, 2145, 2971, + 2539, 2155, 2967, + 2523, 2171, 2963, + 2501, 2191, 2955, + 2469, 2215, 2947, + 2423, 2247, 2935, + 2351, 2285, 2919, + 2235, 2331, 2895, + 2009, 2387, 2861, + 1116, 2453, 2813, + 0, 2529, 2737, + 0, 2613, 2613, + 0, 2705, 2367, + 0, 2805, 799, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2589, 2111, 2983, + 2587, 2111, 2983, + 2587, 2113, 2981, + 2585, 2115, 2981, + 2583, 2119, 2981, + 2579, 2123, 2979, + 2575, 2127, 2977, + 2567, 2135, 2975, + 2559, 2143, 2973, + 2547, 2155, 2969, + 2533, 2169, 2965, + 2509, 2189, 2959, + 2479, 2215, 2949, + 2433, 2245, 2937, + 2363, 2285, 2921, + 2251, 2331, 2897, + 2035, 2387, 2865, + 1277, 2453, 2815, + 0, 2529, 2741, + 0, 2613, 2619, + 0, 2705, 2375, + 0, 2805, 1005, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2599, 2109, 2985, + 2597, 2111, 2985, + 2597, 2111, 2985, + 2595, 2113, 2983, + 2593, 2117, 2983, + 2589, 2121, 2983, + 2585, 2125, 2981, + 2579, 2133, 2979, + 2571, 2141, 2975, + 2559, 2153, 2973, + 2543, 2169, 2967, + 2521, 2189, 2961, + 2491, 2213, 2953, + 2447, 2245, 2941, + 2379, 2283, 2923, + 2271, 2331, 2901, + 2069, 2387, 2867, + 1430, 2453, 2819, + 0, 2527, 2747, + 0, 2611, 2625, + 0, 2705, 2385, + 0, 2805, 1185, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2611, 2107, 2989, + 2611, 2109, 2989, + 2609, 2109, 2989, + 2607, 2113, 2987, + 2605, 2115, 2987, + 2603, 2119, 2985, + 2597, 2125, 2985, + 2593, 2131, 2983, + 2585, 2139, 2979, + 2573, 2151, 2977, + 2559, 2167, 2971, + 2537, 2187, 2965, + 2507, 2211, 2957, + 2465, 2243, 2945, + 2401, 2281, 2929, + 2297, 2329, 2905, + 2109, 2385, 2873, + 1577, 2451, 2825, + 0, 2527, 2753, + 0, 2611, 2633, + 0, 2705, 2399, + 0, 2805, 1350, + 0, 2911, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2629, 2105, 2995, + 2627, 2105, 2993, + 2627, 2107, 2993, + 2625, 2109, 2993, + 2623, 2113, 2991, + 2619, 2117, 2991, + 2615, 2121, 2989, + 2609, 2129, 2987, + 2601, 2137, 2985, + 2591, 2149, 2981, + 2577, 2165, 2977, + 2557, 2185, 2971, + 2529, 2209, 2961, + 2489, 2241, 2951, + 2427, 2279, 2933, + 2331, 2327, 2911, + 2159, 2383, 2879, + 1720, 2451, 2833, + 0, 2525, 2761, + 0, 2611, 2645, + 0, 2703, 2417, + 0, 2805, 1506, + 0, 2911, 0, + 0, 3023, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2651, 2101, 3001, + 2649, 2101, 3001, + 2649, 2103, 2999, + 2647, 2105, 2999, + 2645, 2109, 2999, + 2641, 2113, 2997, + 2637, 2119, 2997, + 2633, 2125, 2995, + 2625, 2135, 2991, + 2615, 2147, 2989, + 2601, 2161, 2983, + 2583, 2181, 2977, + 2555, 2207, 2969, + 2517, 2239, 2957, + 2461, 2277, 2941, + 2371, 2325, 2919, + 2217, 2383, 2887, + 1860, 2449, 2841, + 0, 2525, 2773, + 0, 2609, 2659, + 0, 2703, 2441, + 0, 2803, 1654, + 0, 2911, 0, + 0, 3023, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3383, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2677, 2095, 3009, + 2677, 2097, 3009, + 2675, 2099, 3009, + 2675, 2101, 3009, + 2673, 2105, 3007, + 2669, 2109, 3007, + 2665, 2113, 3005, + 2661, 2121, 3003, + 2653, 2129, 3001, + 2645, 2141, 2997, + 2631, 2157, 2993, + 2615, 2177, 2987, + 2589, 2203, 2979, + 2553, 2235, 2967, + 2501, 2275, 2951, + 2421, 2323, 2929, + 2285, 2379, 2899, + 1998, 2447, 2855, + 0, 2523, 2787, + 0, 2607, 2677, + 0, 2701, 2469, + 0, 2803, 1798, + 0, 2909, 0, + 0, 3023, 0, + 0, 3139, 0, + 0, 3261, 0, + 0, 3383, 0, + 0, 3509, 0, + 0, 3635, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2713, 2089, 3021, + 2711, 2091, 3021, + 2711, 2093, 3021, + 2709, 2095, 3019, + 2707, 2097, 3019, + 2705, 2101, 3017, + 2701, 2107, 3017, + 2697, 2115, 3015, + 2689, 2123, 3013, + 2681, 2135, 3009, + 2669, 2151, 3005, + 2653, 2171, 2999, + 2631, 2197, 2991, + 2599, 2231, 2979, + 2551, 2269, 2965, + 2479, 2319, 2943, + 2363, 2377, 2913, + 2133, 2443, 2869, + 1197, 2519, 2805, + 0, 2605, 2699, + 0, 2699, 2505, + 0, 2801, 1939, + 0, 2909, 0, + 0, 3021, 0, + 0, 3139, 0, + 0, 3259, 0, + 0, 3383, 0, + 0, 3509, 0, + 0, 3635, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2755, 2081, 3035, + 2753, 2081, 3035, + 2753, 2083, 3035, + 2751, 2087, 3035, + 2749, 2089, 3033, + 2747, 2093, 3033, + 2745, 2099, 3031, + 2739, 2107, 3029, + 2735, 2115, 3027, + 2727, 2127, 3025, + 2715, 2143, 3019, + 2701, 2165, 3015, + 2681, 2191, 3007, + 2651, 2223, 2995, + 2611, 2265, 2981, + 2549, 2313, 2961, + 2449, 2371, 2931, + 2269, 2439, 2891, + 1794, 2517, 2829, + 0, 2603, 2729, + 0, 2697, 2551, + 0, 2799, 2077, + 0, 2907, 0, + 0, 3021, 0, + 0, 3139, 0, + 0, 3259, 0, + 0, 3383, 0, + 0, 3509, 0, + 0, 3635, 0, + 0, 3763, 0, + 0, 3893, 0, + 0, 4023, 0, + 2805, 2069, 3055, + 2805, 2069, 3055, + 2803, 2071, 3053, + 2803, 2075, 3053, + 2801, 2077, 3053, + 2799, 2081, 3051, + 2797, 2087, 3051, + 2793, 2095, 3049, + 2787, 2105, 3047, + 2781, 2117, 3043, + 2771, 2133, 3039, + 2757, 2155, 3033, + 2739, 2181, 3027, + 2715, 2215, 3017, + 2679, 2257, 3003, + 2625, 2305, 2983, + 2543, 2365, 2955, + 2403, 2433, 2917, + 2105, 2511, 2857, + 0, 2599, 2765, + 0, 2695, 2603, + 0, 2797, 2215, + 0, 2905, 0, + 0, 3019, 0, + 0, 3137, 0, + 0, 3259, 0, + 0, 3381, 0, + 0, 3507, 0, + 0, 3635, 0, + 0, 3763, 0, + 0, 3893, 0, + 0, 4023, 0, + 2865, 2051, 3079, + 2865, 2053, 3079, + 2865, 2055, 3079, + 2863, 2057, 3077, + 2861, 2061, 3077, + 2859, 2065, 3077, + 2857, 2071, 3075, + 2855, 2079, 3073, + 2849, 2089, 3071, + 2843, 2103, 3069, + 2835, 2119, 3065, + 2825, 2141, 3059, + 2809, 2169, 3053, + 2787, 2203, 3043, + 2757, 2245, 3029, + 2713, 2297, 3011, + 2645, 2357, 2985, + 2537, 2427, 2949, + 2335, 2505, 2895, + 1706, 2593, 2811, + 0, 2691, 2667, + 0, 2793, 2351, + 0, 2903, 0, + 0, 3017, 0, + 0, 3135, 0, + 0, 3257, 0, + 0, 3381, 0, + 0, 3507, 0, + 0, 3635, 0, + 0, 3763, 0, + 0, 3893, 0, + 0, 4023, 0, + 2935, 2029, 3109, + 2935, 2030, 3109, + 2935, 2032, 3109, + 2933, 2035, 3109, + 2933, 2038, 3107, + 2931, 2043, 3107, + 2929, 2049, 3105, + 2925, 2057, 3105, + 2921, 2067, 3103, + 2917, 2081, 3099, + 2909, 2099, 3097, + 2901, 2121, 3091, + 2887, 2151, 3085, + 2869, 2187, 3075, + 2843, 2229, 3063, + 2807, 2283, 3047, + 2753, 2345, 3023, + 2671, 2417, 2989, + 2529, 2497, 2939, + 2225, 2587, 2865, + 0, 2685, 2739, + 0, 2789, 2485, + 0, 2899, 0, + 0, 3015, 0, + 0, 3133, 0, + 0, 3255, 0, + 0, 3379, 0, + 0, 3507, 0, + 0, 3633, 0, + 0, 3763, 0, + 0, 3893, 0, + 0, 4023, 0, + 3015, 1995, 3147, + 3013, 1997, 3147, + 3013, 1999, 3147, + 3013, 2002, 3147, + 3011, 2006, 3145, + 3011, 2011, 3145, + 3009, 2017, 3143, + 3007, 2026, 3143, + 3003, 2037, 3141, + 2999, 2051, 3139, + 2993, 2071, 3135, + 2985, 2095, 3131, + 2975, 2125, 3125, + 2959, 2163, 3117, + 2939, 2209, 3105, + 2909, 2263, 3089, + 2867, 2329, 3069, + 2805, 2403, 3037, + 2703, 2485, 2993, + 2519, 2577, 2927, + 2014, 2677, 2819, + 0, 2783, 2619, + 0, 2895, 2004, + 0, 3011, 0, + 0, 3131, 0, + 0, 3253, 0, + 0, 3379, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4023, 0, + 3103, 1947, 3193, + 3103, 1949, 3193, + 3101, 1951, 3193, + 3101, 1954, 3193, + 3101, 1958, 3193, + 3099, 1964, 3191, + 3097, 1971, 3191, + 3095, 1981, 3189, + 3093, 1993, 3187, + 3089, 2009, 3185, + 3085, 2030, 3183, + 3079, 2057, 3179, + 3069, 2089, 3173, + 3057, 2131, 3165, + 3041, 2179, 3155, + 3017, 2237, 3141, + 2985, 2305, 3123, + 2937, 2383, 3095, + 2863, 2469, 3057, + 2743, 2565, 3001, + 2503, 2667, 2911, + 1310, 2775, 2753, + 0, 2889, 2387, + 0, 3005, 0, + 0, 3127, 0, + 0, 3251, 0, + 0, 3377, 0, + 0, 3503, 0, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 3199, 1873, 3249, + 3199, 1875, 3249, + 3197, 1878, 3249, + 3197, 1882, 3247, + 3197, 1886, 3247, + 3195, 1893, 3247, + 3195, 1901, 3247, + 3193, 1912, 3245, + 3191, 1927, 3243, + 3189, 1946, 3241, + 3185, 1969, 3239, + 3179, 1999, 3235, + 3173, 2036, 3231, + 3163, 2081, 3225, + 3149, 2137, 3215, + 3131, 2201, 3203, + 3107, 2273, 3187, + 3069, 2357, 3163, + 3015, 2447, 3131, + 2933, 2547, 3083, + 2789, 2653, 3009, + 2481, 2763, 2887, + 0, 2879, 2645, + 0, 2999, 1376, + 0, 3121, 0, + 0, 3247, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3891, 0, + 0, 4021, 0, + 3301, 1750, 3313, + 3301, 1753, 3313, + 3301, 1757, 3313, + 3301, 1761, 3313, + 3301, 1768, 3313, + 3299, 1776, 3311, + 3299, 1787, 3311, + 3297, 1801, 3311, + 3295, 1820, 3309, + 3293, 1843, 3307, + 3291, 1873, 3305, + 3287, 1909, 3301, + 3281, 1954, 3297, + 3273, 2008, 3293, + 3263, 2071, 3285, + 3249, 2145, 3275, + 3229, 2227, 3261, + 3203, 2317, 3241, + 3163, 2417, 3213, + 3103, 2521, 3173, + 3011, 2633, 3113, + 2847, 2749, 3019, + 2451, 2867, 2851, + 0, 2991, 2441, + 0, 3115, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4019, 0, + 3411, 1507, 3387, + 3411, 1511, 3387, + 3411, 1518, 3387, + 3411, 1526, 3387, + 3409, 1536, 3387, + 3409, 1550, 3387, + 3409, 1568, 3385, + 3407, 1591, 3385, + 3407, 1620, 3383, + 3405, 1656, 3383, + 3403, 1700, 3381, + 3399, 1752, 3377, + 3395, 1815, 3375, + 3389, 1886, 3369, + 3381, 1968, 3363, + 3371, 2057, 3355, + 3355, 2155, 3343, + 3335, 2259, 3327, + 3305, 2371, 3303, + 3263, 2485, 3271, + 3199, 2605, 3223, + 3099, 2727, 3151, + 2913, 2851, 3033, + 2407, 2977, 2801, + 0, 3105, 1804, + 0, 3235, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 3525, 167, 3471, + 3525, 249, 3471, + 3525, 339, 3471, + 3525, 437, 3471, + 3525, 542, 3471, + 3523, 652, 3471, + 3523, 768, 3469, + 3523, 887, 3469, + 3521, 1009, 3467, + 3521, 1133, 3467, + 3519, 1260, 3465, + 3515, 1387, 3463, + 3513, 1516, 3461, + 3509, 1646, 3457, + 3503, 1776, 3451, + 3493, 1907, 3443, + 3483, 2038, 3435, + 3467, 2169, 3421, + 3445, 2301, 3403, + 3415, 2433, 3377, + 3371, 2565, 3339, + 3303, 2697, 3285, + 3193, 2829, 3199, + 2989, 2961, 3051, + 2339, 3093, 2725, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3643, 0, 3563, + 3643, 0, 3563, + 3643, 0, 3563, + 3643, 0, 3563, + 3643, 0, 3563, + 3643, 0, 3563, + 3643, 0, 3561, + 3641, 0, 3561, + 3641, 0, 3561, + 3639, 0, 3559, + 3639, 0, 3559, + 3637, 0, 3557, + 3633, 0, 3555, + 3631, 418, 3551, + 3625, 1228, 3547, + 3619, 1568, 3541, + 3611, 1811, 3533, + 3599, 2011, 3523, + 3583, 2187, 3507, + 3561, 2351, 3487, + 3529, 2505, 3459, + 3483, 2653, 3417, + 3413, 2795, 3355, + 3297, 2937, 3255, + 3075, 3075, 3075, + 2231, 3211, 2595, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3765, 0, 3663, + 3765, 0, 3663, + 3765, 0, 3663, + 3765, 0, 3663, + 3765, 0, 3663, + 3765, 0, 3663, + 3763, 0, 3661, + 3763, 0, 3661, + 3763, 0, 3661, + 3763, 0, 3659, + 3761, 0, 3659, + 3759, 0, 3657, + 3757, 0, 3655, + 3755, 0, 3653, + 3751, 0, 3649, + 3747, 0, 3645, + 3741, 888, 3639, + 3731, 1638, 3631, + 3719, 1971, 3619, + 3703, 2211, 3603, + 3681, 2409, 3581, + 3647, 2585, 3549, + 3599, 2749, 3503, + 3527, 2901, 3433, + 3405, 3049, 3321, + 3167, 3193, 3103, + 2028, 3333, 2329, + 0, 3471, 0, + 0, 3607, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3889, 0, 3769, + 3889, 0, 3769, + 3889, 0, 3769, + 3889, 0, 3769, + 3889, 0, 3769, + 3889, 0, 3769, + 3889, 0, 3769, + 3887, 0, 3767, + 3887, 0, 3767, + 3887, 0, 3767, + 3885, 0, 3765, + 3885, 0, 3765, + 3883, 0, 3763, + 3881, 0, 3761, + 3879, 0, 3759, + 3875, 0, 3755, + 3871, 0, 3751, + 3863, 0, 3743, + 3855, 1201, 3735, + 3843, 1912, 3723, + 3825, 2239, 3705, + 3803, 2477, 3681, + 3769, 2675, 3647, + 3719, 2851, 3599, + 3645, 3013, 3523, + 3519, 3167, 3395, + 3269, 3313, 3139, + 1395, 3457, 0, + 0, 3597, 0, + 0, 3735, 0, + 0, 3871, 0, + 0, 4007, 0, + 4015, 0, 3881, + 4015, 0, 3881, + 4015, 0, 3881, + 4015, 0, 3881, + 4015, 0, 3881, + 4015, 0, 3881, + 4015, 0, 3881, + 4015, 0, 3879, + 4013, 0, 3879, + 4013, 0, 3879, + 4013, 0, 3879, + 4011, 0, 3877, + 4011, 0, 3877, + 4009, 0, 3875, + 4007, 0, 3873, + 4005, 0, 3869, + 4001, 0, 3867, + 3995, 0, 3861, + 3989, 0, 3855, + 3981, 0, 3845, + 3967, 1819, 3831, + 3951, 2277, 3813, + 3927, 2555, 3789, + 3893, 2773, 3753, + 3843, 2961, 3701, + 3765, 3129, 3619, + 3637, 3287, 3479, + 3375, 3437, 3185, + 0, 3583, 0, + 0, 3725, 0, + 0, 3865, 0, + 0, 4001, 0, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3995, + 4095, 0, 3995, + 4095, 0, 3995, + 4095, 0, 3993, + 4095, 0, 3993, + 4095, 0, 3991, + 4095, 0, 3989, + 4095, 0, 3985, + 4095, 0, 3981, + 4095, 0, 3977, + 4095, 0, 3969, + 4095, 0, 3959, + 4095, 1654, 3947, + 4077, 2321, 3927, + 4053, 2643, 3901, + 4019, 2877, 3865, + 3967, 3075, 3809, + 3889, 3249, 3723, + 3759, 3411, 3573, + 3489, 3563, 3237, + 0, 3711, 0, + 0, 3853, 0, + 0, 3993, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4089, + 4095, 0, 4079, + 4095, 1254, 4065, + 4095, 2375, 4045, + 4095, 2737, 4019, + 4095, 2989, 3979, + 4095, 3193, 3923, + 4015, 3371, 3831, + 3883, 3537, 3673, + 3605, 3691, 3301, + 0, 3839, 0, + 0, 3983, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2437, 4095, + 4095, 2839, 4095, + 4095, 3103, 4095, + 4095, 3313, 4039, + 4095, 3497, 3945, + 4009, 3663, 3779, + 3725, 3819, 3373, + 0, 3969, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2509, 4095, + 4095, 2949, 4095, + 4095, 3223, 4095, + 4095, 3437, 4095, + 4095, 3623, 4065, + 4095, 3791, 3891, + 3849, 3949, 3455, + 2693, 2245, 3107, + 2693, 2247, 3107, + 2691, 2247, 3107, + 2691, 2249, 3107, + 2689, 2251, 3105, + 2685, 2255, 3105, + 2683, 2259, 3103, + 2677, 2263, 3103, + 2671, 2269, 3101, + 2661, 2279, 3097, + 2649, 2291, 3093, + 2633, 2305, 3089, + 2609, 2325, 3083, + 2575, 2349, 3073, + 2525, 2381, 3061, + 2449, 2419, 3043, + 2321, 2465, 3021, + 2065, 2521, 2987, + 0, 2587, 2937, + 0, 2661, 2861, + 0, 2745, 2733, + 0, 2839, 2477, + 0, 2939, 0, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2695, 2245, 3107, + 2695, 2247, 3107, + 2693, 2247, 3107, + 2691, 2249, 3107, + 2689, 2251, 3105, + 2687, 2255, 3105, + 2683, 2259, 3103, + 2679, 2263, 3103, + 2671, 2269, 3101, + 2663, 2279, 3097, + 2651, 2291, 3095, + 2633, 2305, 3089, + 2609, 2325, 3083, + 2577, 2349, 3073, + 2527, 2381, 3061, + 2451, 2419, 3045, + 2325, 2465, 3021, + 2069, 2521, 2987, + 0, 2587, 2937, + 0, 2661, 2861, + 0, 2745, 2733, + 0, 2839, 2477, + 0, 2939, 0, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2697, 2245, 3107, + 2695, 2247, 3107, + 2695, 2247, 3107, + 2693, 2249, 3107, + 2691, 2251, 3107, + 2689, 2253, 3105, + 2685, 2257, 3105, + 2679, 2263, 3103, + 2673, 2269, 3101, + 2665, 2279, 3099, + 2653, 2291, 3095, + 2635, 2305, 3089, + 2611, 2325, 3083, + 2577, 2349, 3073, + 2529, 2381, 3061, + 2453, 2419, 3045, + 2327, 2465, 3021, + 2075, 2521, 2987, + 0, 2587, 2937, + 0, 2661, 2861, + 0, 2745, 2735, + 0, 2839, 2479, + 0, 2939, 0, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2699, 2245, 3109, + 2697, 2245, 3109, + 2697, 2247, 3107, + 2695, 2249, 3107, + 2693, 2251, 3107, + 2691, 2253, 3105, + 2687, 2257, 3105, + 2681, 2263, 3103, + 2675, 2269, 3101, + 2667, 2279, 3099, + 2655, 2289, 3095, + 2637, 2305, 3091, + 2613, 2325, 3083, + 2581, 2349, 3075, + 2531, 2381, 3063, + 2457, 2419, 3045, + 2331, 2465, 3021, + 2081, 2521, 2987, + 333, 2587, 2939, + 0, 2661, 2863, + 0, 2745, 2735, + 0, 2839, 2481, + 0, 2939, 0, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2701, 2245, 3109, + 2699, 2245, 3109, + 2699, 2247, 3109, + 2697, 2249, 3107, + 2695, 2251, 3107, + 2693, 2253, 3107, + 2689, 2257, 3105, + 2685, 2263, 3103, + 2677, 2269, 3101, + 2669, 2277, 3099, + 2657, 2289, 3095, + 2641, 2305, 3091, + 2617, 2325, 3085, + 2583, 2349, 3075, + 2535, 2379, 3063, + 2461, 2419, 3047, + 2337, 2465, 3023, + 2091, 2521, 2989, + 647, 2587, 2939, + 0, 2661, 2863, + 0, 2745, 2737, + 0, 2839, 2483, + 0, 2939, 0, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2705, 2245, 3109, + 2703, 2245, 3109, + 2703, 2247, 3109, + 2701, 2247, 3109, + 2699, 2251, 3109, + 2697, 2253, 3107, + 2693, 2257, 3107, + 2687, 2261, 3105, + 2681, 2269, 3103, + 2673, 2277, 3101, + 2661, 2289, 3097, + 2643, 2305, 3091, + 2621, 2323, 3085, + 2587, 2349, 3077, + 2539, 2379, 3063, + 2467, 2417, 3047, + 2345, 2465, 3023, + 2103, 2521, 2989, + 880, 2587, 2941, + 0, 2661, 2865, + 0, 2745, 2739, + 0, 2839, 2487, + 0, 2939, 303, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2709, 2243, 3111, + 2707, 2245, 3111, + 2707, 2245, 3111, + 2705, 2247, 3111, + 2703, 2249, 3109, + 2701, 2253, 3109, + 2697, 2257, 3107, + 2693, 2261, 3107, + 2685, 2269, 3105, + 2677, 2277, 3101, + 2665, 2289, 3097, + 2649, 2303, 3093, + 2627, 2323, 3087, + 2593, 2347, 3077, + 2545, 2379, 3065, + 2473, 2417, 3049, + 2353, 2465, 3025, + 2121, 2521, 2991, + 1074, 2585, 2943, + 0, 2661, 2867, + 0, 2745, 2743, + 0, 2837, 2493, + 0, 2939, 677, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2715, 2243, 3113, + 2713, 2243, 3113, + 2713, 2245, 3113, + 2711, 2247, 3111, + 2709, 2249, 3111, + 2707, 2251, 3111, + 2703, 2255, 3109, + 2699, 2261, 3107, + 2693, 2267, 3105, + 2683, 2277, 3103, + 2671, 2287, 3099, + 2655, 2303, 3095, + 2633, 2323, 3089, + 2601, 2347, 3079, + 2555, 2379, 3067, + 2483, 2417, 3051, + 2367, 2463, 3027, + 2141, 2519, 2993, + 1248, 2585, 2945, + 0, 2661, 2869, + 0, 2745, 2745, + 0, 2837, 2499, + 0, 2937, 931, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2721, 2241, 3115, + 2721, 2243, 3115, + 2719, 2243, 3115, + 2719, 2245, 3113, + 2717, 2247, 3113, + 2715, 2251, 3113, + 2711, 2255, 3111, + 2707, 2259, 3109, + 2701, 2267, 3107, + 2691, 2275, 3105, + 2681, 2287, 3101, + 2665, 2303, 3097, + 2643, 2321, 3091, + 2611, 2347, 3081, + 2565, 2377, 3069, + 2495, 2417, 3053, + 2383, 2463, 3029, + 2167, 2519, 2997, + 1409, 2585, 2947, + 0, 2661, 2873, + 0, 2745, 2751, + 0, 2837, 2507, + 0, 2937, 1137, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2731, 2241, 3117, + 2731, 2241, 3117, + 2731, 2243, 3117, + 2729, 2243, 3117, + 2727, 2247, 3117, + 2725, 2249, 3115, + 2721, 2253, 3115, + 2717, 2259, 3113, + 2711, 2265, 3111, + 2703, 2273, 3109, + 2691, 2285, 3105, + 2675, 2301, 3099, + 2653, 2321, 3093, + 2623, 2345, 3085, + 2579, 2377, 3073, + 2513, 2415, 3057, + 2403, 2463, 3033, + 2201, 2519, 3001, + 1562, 2585, 2951, + 0, 2659, 2879, + 0, 2745, 2757, + 0, 2837, 2517, + 0, 2937, 1317, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2745, 2239, 3121, + 2745, 2239, 3121, + 2743, 2241, 3121, + 2741, 2241, 3121, + 2739, 2245, 3119, + 2737, 2247, 3119, + 2735, 2251, 3117, + 2731, 2257, 3117, + 2725, 2263, 3115, + 2717, 2273, 3111, + 2705, 2283, 3109, + 2691, 2299, 3103, + 2669, 2319, 3097, + 2639, 2343, 3089, + 2597, 2375, 3077, + 2533, 2413, 3061, + 2429, 2461, 3037, + 2241, 2517, 3005, + 1709, 2583, 2957, + 0, 2659, 2885, + 0, 2743, 2765, + 0, 2837, 2531, + 0, 2937, 1482, + 0, 3043, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2761, 2235, 3127, + 2761, 2237, 3127, + 2761, 2237, 3125, + 2759, 2239, 3125, + 2757, 2241, 3125, + 2755, 2245, 3125, + 2751, 2249, 3123, + 2747, 2253, 3121, + 2741, 2261, 3119, + 2735, 2269, 3117, + 2723, 2281, 3113, + 2709, 2297, 3109, + 2689, 2317, 3103, + 2661, 2341, 3095, + 2621, 2373, 3083, + 2559, 2413, 3067, + 2463, 2459, 3043, + 2291, 2517, 3011, + 1852, 2583, 2965, + 0, 2657, 2893, + 0, 2743, 2777, + 0, 2835, 2549, + 0, 2937, 1638, + 0, 3043, 0, + 0, 3155, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2783, 2231, 3133, + 2783, 2233, 3133, + 2781, 2235, 3133, + 2781, 2235, 3133, + 2779, 2239, 3131, + 2777, 2241, 3131, + 2773, 2245, 3129, + 2769, 2251, 3129, + 2765, 2257, 3127, + 2757, 2267, 3123, + 2747, 2279, 3121, + 2733, 2293, 3115, + 2715, 2313, 3109, + 2687, 2339, 3101, + 2649, 2371, 3089, + 2593, 2409, 3073, + 2503, 2457, 3051, + 2349, 2515, 3019, + 1992, 2581, 2973, + 0, 2657, 2905, + 0, 2741, 2791, + 0, 2835, 2573, + 0, 2935, 1786, + 0, 3043, 0, + 0, 3155, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3515, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2811, 2227, 3141, + 2811, 2229, 3141, + 2809, 2229, 3141, + 2809, 2231, 3141, + 2807, 2233, 3141, + 2805, 2237, 3139, + 2801, 2241, 3139, + 2797, 2245, 3137, + 2793, 2253, 3135, + 2787, 2261, 3133, + 2777, 2273, 3129, + 2763, 2289, 3125, + 2747, 2309, 3119, + 2721, 2335, 3111, + 2687, 2367, 3099, + 2633, 2407, 3083, + 2553, 2455, 3061, + 2417, 2511, 3031, + 2129, 2579, 2987, + 0, 2655, 2919, + 0, 2739, 2809, + 0, 2833, 2601, + 0, 2935, 1931, + 0, 3043, 0, + 0, 3155, 0, + 0, 3271, 0, + 0, 3393, 0, + 0, 3515, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2845, 2221, 3153, + 2845, 2221, 3153, + 2843, 2223, 3153, + 2843, 2225, 3153, + 2841, 2227, 3151, + 2839, 2229, 3151, + 2837, 2235, 3149, + 2833, 2239, 3149, + 2829, 2247, 3147, + 2823, 2255, 3145, + 2813, 2267, 3141, + 2801, 2283, 3137, + 2785, 2305, 3131, + 2763, 2329, 3123, + 2731, 2363, 3111, + 2683, 2403, 3097, + 2613, 2451, 3075, + 2495, 2509, 3045, + 2267, 2575, 3003, + 1329, 2653, 2937, + 0, 2737, 2831, + 0, 2831, 2637, + 0, 2933, 2071, + 0, 3041, 0, + 0, 3153, 0, + 0, 3271, 0, + 0, 3391, 0, + 0, 3515, 0, + 0, 3641, 0, + 0, 3767, 0, + 0, 3897, 0, + 0, 4025, 0, + 2887, 2211, 3167, + 2887, 2213, 3167, + 2885, 2215, 3167, + 2885, 2215, 3167, + 2883, 2219, 3167, + 2881, 2221, 3165, + 2879, 2225, 3165, + 2877, 2231, 3163, + 2873, 2239, 3161, + 2867, 2247, 3159, + 2859, 2261, 3157, + 2847, 2277, 3151, + 2833, 2297, 3147, + 2813, 2323, 3139, + 2785, 2355, 3127, + 2743, 2397, 3113, + 2681, 2445, 3093, + 2581, 2503, 3065, + 2401, 2571, 3023, + 1927, 2649, 2961, + 0, 2735, 2861, + 0, 2829, 2683, + 0, 2931, 2211, + 0, 3039, 0, + 0, 3153, 0, + 0, 3271, 0, + 0, 3391, 0, + 0, 3515, 0, + 0, 3641, 0, + 0, 3767, 0, + 0, 3895, 0, + 0, 4025, 0, + 2937, 2199, 3187, + 2937, 2201, 3187, + 2937, 2203, 3187, + 2935, 2203, 3185, + 2935, 2207, 3185, + 2933, 2209, 3185, + 2931, 2213, 3183, + 2929, 2219, 3183, + 2925, 2227, 3181, + 2919, 2237, 3179, + 2913, 2249, 3175, + 2903, 2265, 3171, + 2889, 2287, 3167, + 2873, 2313, 3159, + 2847, 2347, 3149, + 2811, 2389, 3135, + 2757, 2439, 3115, + 2675, 2497, 3087, + 2535, 2565, 3049, + 2237, 2645, 2991, + 0, 2731, 2897, + 0, 2827, 2735, + 0, 2929, 2347, + 0, 3037, 0, + 0, 3151, 0, + 0, 3269, 0, + 0, 3391, 0, + 0, 3515, 0, + 0, 3639, 0, + 0, 3767, 0, + 0, 3895, 0, + 0, 4025, 0, + 2997, 2183, 3211, + 2997, 2185, 3211, + 2997, 2185, 3211, + 2997, 2187, 3211, + 2995, 2189, 3209, + 2993, 2193, 3209, + 2993, 2197, 3209, + 2989, 2203, 3207, + 2987, 2211, 3205, + 2981, 2221, 3203, + 2975, 2235, 3201, + 2967, 2251, 3197, + 2957, 2273, 3191, + 2941, 2301, 3185, + 2919, 2335, 3175, + 2889, 2377, 3161, + 2845, 2429, 3143, + 2777, 2489, 3117, + 2669, 2559, 3081, + 2467, 2637, 3027, + 1839, 2727, 2943, + 0, 2823, 2799, + 0, 2925, 2483, + 0, 3035, 0, + 0, 3149, 0, + 0, 3267, 0, + 0, 3389, 0, + 0, 3513, 0, + 0, 3639, 0, + 0, 3767, 0, + 0, 3895, 0, + 0, 4025, 0, + 3067, 2159, 3241, + 3067, 2161, 3241, + 3067, 2163, 3241, + 3067, 2165, 3241, + 3065, 2167, 3241, + 3065, 2171, 3239, + 3063, 2175, 3239, + 3061, 2181, 3237, + 3057, 2189, 3237, + 3053, 2199, 3235, + 3049, 2213, 3231, + 3041, 2231, 3229, + 3033, 2253, 3223, + 3019, 2283, 3217, + 3001, 2319, 3207, + 2975, 2363, 3195, + 2939, 2415, 3179, + 2887, 2477, 3155, + 2803, 2549, 3121, + 2661, 2629, 3073, + 2357, 2719, 2997, + 0, 2817, 2871, + 0, 2921, 2617, + 0, 3031, 83, + 0, 3147, 0, + 0, 3265, 0, + 0, 3387, 0, + 0, 3511, 0, + 0, 3639, 0, + 0, 3765, 0, + 0, 3895, 0, + 0, 4025, 0, + 3147, 2127, 3279, + 3147, 2127, 3279, + 3147, 2129, 3279, + 3145, 2131, 3279, + 3145, 2135, 3279, + 3143, 2137, 3277, + 3143, 2143, 3277, + 3141, 2149, 3277, + 3139, 2159, 3275, + 3135, 2169, 3273, + 3131, 2185, 3271, + 3125, 2203, 3267, + 3117, 2227, 3263, + 3107, 2257, 3257, + 3091, 2295, 3249, + 3071, 2341, 3237, + 3041, 2397, 3221, + 2999, 2461, 3201, + 2937, 2535, 3171, + 2835, 2617, 3127, + 2651, 2709, 3059, + 2145, 2809, 2953, + 0, 2915, 2751, + 0, 3027, 2137, + 0, 3143, 0, + 0, 3263, 0, + 0, 3385, 0, + 0, 3511, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3895, 0, + 0, 4023, 0, + 3235, 2077, 3325, + 3235, 2079, 3325, + 3235, 2081, 3325, + 3233, 2083, 3325, + 3233, 2087, 3325, + 3233, 2091, 3325, + 3231, 2097, 3323, + 3229, 2103, 3323, + 3227, 2113, 3321, + 3225, 2125, 3319, + 3221, 2141, 3317, + 3217, 2163, 3315, + 3211, 2189, 3311, + 3201, 2221, 3305, + 3189, 2263, 3297, + 3173, 2311, 3287, + 3151, 2369, 3273, + 3117, 2437, 3255, + 3069, 2515, 3229, + 2995, 2601, 3189, + 2875, 2697, 3133, + 2635, 2799, 3043, + 1442, 2907, 2885, + 0, 3021, 2519, + 0, 3137, 0, + 0, 3259, 0, + 0, 3383, 0, + 0, 3509, 0, + 0, 3635, 0, + 0, 3763, 0, + 0, 3893, 0, + 0, 4023, 0, + 3331, 2004, 3381, + 3331, 2005, 3381, + 3331, 2007, 3381, + 3331, 2010, 3381, + 3329, 2014, 3381, + 3329, 2019, 3379, + 3329, 2025, 3379, + 3327, 2033, 3379, + 3325, 2045, 3377, + 3323, 2059, 3375, + 3321, 2077, 3373, + 3317, 2101, 3371, + 3311, 2131, 3367, + 3305, 2169, 3363, + 3295, 2215, 3357, + 3281, 2269, 3347, + 3263, 2333, 3335, + 3239, 2405, 3319, + 3201, 2489, 3295, + 3149, 2579, 3263, + 3065, 2679, 3215, + 2923, 2785, 3141, + 2613, 2895, 3019, + 0, 3011, 2777, + 0, 3131, 1508, + 0, 3253, 0, + 0, 3379, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3763, 0, + 0, 3891, 0, + 0, 4023, 0, + 3435, 1880, 3445, + 3433, 1882, 3445, + 3433, 1885, 3445, + 3433, 1889, 3445, + 3433, 1894, 3445, + 3433, 1900, 3445, + 3431, 1908, 3443, + 3431, 1919, 3443, + 3429, 1933, 3443, + 3427, 1952, 3441, + 3425, 1975, 3439, + 3423, 2005, 3437, + 3419, 2042, 3435, + 3413, 2087, 3429, + 3405, 2141, 3425, + 3395, 2203, 3417, + 3381, 2277, 3407, + 3361, 2359, 3393, + 3335, 2449, 3373, + 3295, 2549, 3345, + 3237, 2653, 3305, + 3143, 2765, 3245, + 2979, 2881, 3151, + 2583, 2999, 2985, + 0, 3123, 2573, + 0, 3247, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3631, 0, + 0, 3759, 0, + 0, 3891, 0, + 0, 4021, 0, + 3543, 1635, 3519, + 3543, 1639, 3519, + 3543, 1644, 3519, + 3543, 1650, 3519, + 3543, 1658, 3519, + 3543, 1668, 3519, + 3541, 1682, 3519, + 3541, 1700, 3517, + 3539, 1723, 3517, + 3539, 1752, 3517, + 3537, 1788, 3515, + 3535, 1832, 3513, + 3531, 1885, 3511, + 3527, 1947, 3507, + 3521, 2019, 3501, + 3513, 2099, 3495, + 3503, 2189, 3487, + 3487, 2287, 3475, + 3467, 2393, 3459, + 3437, 2503, 3435, + 3395, 2617, 3403, + 3331, 2737, 3357, + 3231, 2859, 3285, + 3045, 2983, 3165, + 2539, 3109, 2933, + 0, 3237, 1936, + 0, 3367, 0, + 0, 3495, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 3657, 227, 3603, + 3657, 299, 3603, + 3657, 381, 3603, + 3657, 471, 3603, + 3657, 569, 3603, + 3657, 674, 3603, + 3657, 784, 3603, + 3655, 900, 3601, + 3655, 1019, 3601, + 3653, 1141, 3601, + 3653, 1265, 3599, + 3651, 1392, 3597, + 3649, 1520, 3595, + 3645, 1648, 3593, + 3641, 1778, 3589, + 3635, 1908, 3583, + 3625, 2039, 3577, + 3615, 2171, 3567, + 3599, 2301, 3553, + 3577, 2433, 3535, + 3547, 2565, 3509, + 3503, 2697, 3471, + 3435, 2829, 3417, + 3327, 2961, 3331, + 3121, 3093, 3183, + 2471, 3225, 2857, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3775, 0, 3695, + 3775, 0, 3695, + 3775, 0, 3695, + 3775, 0, 3695, + 3775, 0, 3695, + 3775, 0, 3695, + 3775, 0, 3695, + 3775, 0, 3693, + 3773, 0, 3693, + 3773, 0, 3693, + 3771, 0, 3691, + 3771, 0, 3691, + 3769, 0, 3689, + 3765, 0, 3687, + 3763, 550, 3683, + 3757, 1360, 3679, + 3751, 1700, 3673, + 3743, 1943, 3665, + 3731, 2143, 3655, + 3715, 2319, 3639, + 3693, 2483, 3619, + 3661, 2637, 3591, + 3615, 2785, 3549, + 3545, 2927, 3487, + 3429, 3069, 3387, + 3207, 3207, 3207, + 2363, 3343, 2727, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3897, 0, 3795, + 3897, 0, 3795, + 3897, 0, 3795, + 3897, 0, 3795, + 3897, 0, 3795, + 3897, 0, 3795, + 3897, 0, 3795, + 3897, 0, 3793, + 3895, 0, 3793, + 3895, 0, 3793, + 3895, 0, 3793, + 3893, 0, 3791, + 3891, 0, 3789, + 3889, 0, 3787, + 3887, 0, 3785, + 3883, 0, 3781, + 3879, 0, 3777, + 3873, 1021, 3771, + 3863, 1770, 3763, + 3851, 2103, 3751, + 3835, 2343, 3735, + 3813, 2541, 3713, + 3779, 2717, 3681, + 3731, 2881, 3635, + 3659, 3033, 3567, + 3537, 3181, 3453, + 3299, 3325, 3235, + 2161, 3465, 2461, + 0, 3603, 0, + 0, 3739, 0, + 0, 3875, 0, + 0, 4009, 0, + 4021, 0, 3901, + 4021, 0, 3901, + 4021, 0, 3901, + 4021, 0, 3901, + 4021, 0, 3901, + 4021, 0, 3901, + 4021, 0, 3901, + 4021, 0, 3901, + 4019, 0, 3899, + 4019, 0, 3899, + 4019, 0, 3899, + 4019, 0, 3899, + 4017, 0, 3897, + 4015, 0, 3895, + 4013, 0, 3893, + 4011, 0, 3891, + 4007, 0, 3887, + 4003, 0, 3883, + 3995, 0, 3875, + 3987, 1333, 3867, + 3975, 2044, 3855, + 3957, 2373, 3837, + 3935, 2609, 3813, + 3901, 2807, 3779, + 3851, 2983, 3731, + 3777, 3145, 3655, + 3651, 3299, 3527, + 3401, 3445, 3271, + 1527, 3589, 0, + 0, 3729, 0, + 0, 3867, 0, + 0, 4005, 0, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4011, + 4095, 0, 4011, + 4095, 0, 4011, + 4095, 0, 4011, + 4095, 0, 4009, + 4095, 0, 4009, + 4095, 0, 4007, + 4095, 0, 4005, + 4095, 0, 4003, + 4095, 0, 3999, + 4095, 0, 3993, + 4095, 0, 3987, + 4095, 0, 3977, + 4095, 1951, 3963, + 4083, 2409, 3947, + 4059, 2687, 3921, + 4025, 2905, 3885, + 3975, 3093, 3833, + 3897, 3261, 3751, + 3769, 3419, 3611, + 3509, 3569, 3317, + 0, 3715, 0, + 0, 3857, 0, + 0, 3997, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4091, + 4095, 1786, 4079, + 4095, 2453, 4059, + 4095, 2775, 4033, + 4095, 3009, 3997, + 4095, 3207, 3941, + 4021, 3381, 3855, + 3891, 3543, 3705, + 3621, 3695, 3369, + 0, 3843, 0, + 0, 3985, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1387, 4095, + 4095, 2507, 4095, + 4095, 2869, 4095, + 4095, 3121, 4095, + 4095, 3325, 4055, + 4095, 3503, 3963, + 4015, 3669, 3805, + 3737, 3823, 3433, + 0, 3971, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2569, 4095, + 4095, 2971, 4095, + 4095, 3235, 4095, + 4095, 3445, 4095, + 4095, 3629, 4077, + 4095, 3795, 3911, + 3859, 3951, 3505, + 2825, 2377, 3239, + 2825, 2377, 3239, + 2825, 2379, 3239, + 2823, 2379, 3239, + 2821, 2381, 3237, + 2819, 2383, 3237, + 2817, 2387, 3237, + 2813, 2391, 3235, + 2809, 2395, 3233, + 2803, 2403, 3231, + 2793, 2411, 3229, + 2781, 2423, 3225, + 2763, 2437, 3221, + 2739, 2457, 3215, + 2705, 2481, 3205, + 2657, 2513, 3193, + 2579, 2551, 3175, + 2453, 2597, 3153, + 2193, 2653, 3119, + 0, 2719, 3069, + 0, 2793, 2993, + 0, 2879, 2865, + 0, 2971, 2607, + 0, 3071, 0, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 2827, 2377, 3239, + 2827, 2377, 3239, + 2825, 2379, 3239, + 2825, 2379, 3239, + 2823, 2381, 3239, + 2821, 2383, 3237, + 2817, 2387, 3237, + 2815, 2391, 3235, + 2809, 2395, 3235, + 2803, 2403, 3233, + 2793, 2411, 3229, + 2781, 2423, 3225, + 2765, 2437, 3221, + 2741, 2457, 3215, + 2707, 2481, 3205, + 2657, 2513, 3193, + 2581, 2551, 3177, + 2453, 2597, 3153, + 2197, 2653, 3119, + 0, 2719, 3069, + 0, 2793, 2993, + 0, 2877, 2865, + 0, 2971, 2609, + 0, 3071, 0, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 2827, 2377, 3239, + 2827, 2377, 3239, + 2827, 2379, 3239, + 2825, 2379, 3239, + 2823, 2381, 3239, + 2821, 2383, 3237, + 2819, 2387, 3237, + 2815, 2391, 3235, + 2811, 2395, 3235, + 2803, 2401, 3233, + 2795, 2411, 3229, + 2783, 2423, 3227, + 2765, 2437, 3221, + 2743, 2457, 3215, + 2709, 2481, 3205, + 2659, 2513, 3193, + 2583, 2551, 3177, + 2457, 2597, 3153, + 2201, 2653, 3119, + 0, 2719, 3069, + 0, 2793, 2993, + 0, 2877, 2867, + 0, 2971, 2609, + 0, 3071, 0, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 2829, 2377, 3241, + 2829, 2377, 3239, + 2827, 2379, 3239, + 2827, 2379, 3239, + 2825, 2381, 3239, + 2823, 2383, 3239, + 2821, 2387, 3237, + 2817, 2389, 3237, + 2811, 2395, 3235, + 2805, 2401, 3233, + 2797, 2411, 3231, + 2785, 2423, 3227, + 2767, 2437, 3221, + 2743, 2457, 3215, + 2711, 2481, 3207, + 2661, 2513, 3193, + 2585, 2551, 3177, + 2459, 2597, 3153, + 2207, 2653, 3119, + 0, 2719, 3069, + 0, 2793, 2993, + 0, 2877, 2867, + 0, 2971, 2611, + 0, 3071, 0, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 2831, 2377, 3241, + 2831, 2377, 3241, + 2829, 2377, 3241, + 2829, 2379, 3239, + 2827, 2381, 3239, + 2825, 2383, 3239, + 2823, 2385, 3237, + 2819, 2389, 3237, + 2813, 2395, 3235, + 2807, 2401, 3233, + 2799, 2411, 3231, + 2787, 2421, 3227, + 2769, 2437, 3223, + 2745, 2457, 3215, + 2713, 2481, 3207, + 2663, 2513, 3195, + 2589, 2551, 3177, + 2463, 2597, 3153, + 2213, 2653, 3119, + 465, 2719, 3071, + 0, 2793, 2995, + 0, 2877, 2869, + 0, 2971, 2613, + 0, 3071, 0, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 2833, 2375, 3241, + 2833, 2377, 3241, + 2833, 2377, 3241, + 2831, 2379, 3241, + 2829, 2381, 3241, + 2827, 2383, 3239, + 2825, 2385, 3239, + 2821, 2389, 3237, + 2817, 2395, 3237, + 2809, 2401, 3235, + 2801, 2411, 3231, + 2789, 2421, 3227, + 2773, 2437, 3223, + 2749, 2457, 3217, + 2715, 2481, 3207, + 2667, 2511, 3195, + 2593, 2551, 3179, + 2469, 2597, 3155, + 2223, 2653, 3121, + 779, 2719, 3071, + 0, 2793, 2995, + 0, 2877, 2869, + 0, 2971, 2615, + 0, 3071, 0, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2837, 2375, 3243, + 2837, 2377, 3243, + 2835, 2377, 3241, + 2835, 2379, 3241, + 2833, 2379, 3241, + 2831, 2383, 3241, + 2829, 2385, 3239, + 2825, 2389, 3239, + 2819, 2395, 3237, + 2813, 2401, 3235, + 2805, 2409, 3233, + 2793, 2421, 3229, + 2777, 2437, 3223, + 2753, 2455, 3217, + 2719, 2481, 3209, + 2671, 2511, 3197, + 2599, 2551, 3179, + 2477, 2597, 3155, + 2237, 2653, 3123, + 1012, 2719, 3073, + 0, 2793, 2997, + 0, 2877, 2871, + 0, 2971, 2619, + 0, 3071, 435, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2841, 2375, 3243, + 2841, 2375, 3243, + 2839, 2377, 3243, + 2839, 2377, 3243, + 2837, 2379, 3243, + 2835, 2381, 3241, + 2833, 2385, 3241, + 2829, 2389, 3239, + 2825, 2393, 3239, + 2819, 2401, 3237, + 2809, 2409, 3233, + 2797, 2421, 3229, + 2781, 2435, 3225, + 2759, 2455, 3219, + 2725, 2479, 3209, + 2679, 2511, 3197, + 2605, 2549, 3181, + 2487, 2597, 3157, + 2253, 2653, 3123, + 1206, 2719, 3075, + 0, 2793, 2999, + 0, 2877, 2875, + 0, 2971, 2625, + 0, 3071, 809, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2847, 2375, 3245, + 2847, 2375, 3245, + 2845, 2375, 3245, + 2845, 2377, 3245, + 2843, 2379, 3243, + 2841, 2381, 3243, + 2839, 2383, 3243, + 2835, 2387, 3241, + 2831, 2393, 3239, + 2825, 2399, 3237, + 2815, 2409, 3235, + 2803, 2419, 3231, + 2787, 2435, 3227, + 2765, 2455, 3221, + 2733, 2479, 3211, + 2687, 2511, 3199, + 2615, 2549, 3183, + 2499, 2597, 3159, + 2273, 2653, 3125, + 1380, 2717, 3077, + 0, 2793, 3003, + 0, 2877, 2877, + 0, 2969, 2631, + 0, 3071, 1063, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2855, 2373, 3247, + 2853, 2373, 3247, + 2853, 2375, 3247, + 2853, 2375, 3247, + 2851, 2377, 3245, + 2849, 2379, 3245, + 2847, 2383, 3245, + 2843, 2387, 3243, + 2839, 2391, 3241, + 2833, 2399, 3239, + 2823, 2407, 3237, + 2813, 2419, 3233, + 2797, 2435, 3229, + 2775, 2453, 3223, + 2743, 2479, 3213, + 2697, 2509, 3201, + 2627, 2549, 3185, + 2515, 2595, 3161, + 2299, 2651, 3129, + 1541, 2717, 3079, + 0, 2793, 3005, + 0, 2877, 2883, + 0, 2969, 2639, + 0, 3069, 1269, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2865, 2371, 3249, + 2863, 2373, 3249, + 2863, 2373, 3249, + 2863, 2375, 3249, + 2861, 2377, 3249, + 2859, 2379, 3249, + 2857, 2381, 3247, + 2853, 2385, 3247, + 2849, 2391, 3245, + 2843, 2397, 3243, + 2835, 2405, 3241, + 2823, 2417, 3237, + 2807, 2433, 3231, + 2787, 2453, 3225, + 2755, 2477, 3217, + 2711, 2509, 3205, + 2645, 2547, 3189, + 2535, 2595, 3165, + 2333, 2651, 3133, + 1694, 2717, 3085, + 0, 2791, 3011, + 0, 2877, 2889, + 0, 2969, 2649, + 0, 3069, 1449, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2877, 2369, 3253, + 2877, 2371, 3253, + 2877, 2371, 3253, + 2875, 2373, 3253, + 2873, 2375, 3253, + 2873, 2377, 3251, + 2869, 2379, 3251, + 2867, 2383, 3251, + 2863, 2389, 3249, + 2857, 2395, 3247, + 2849, 2405, 3245, + 2837, 2415, 3241, + 2823, 2431, 3235, + 2801, 2451, 3229, + 2773, 2475, 3221, + 2729, 2507, 3209, + 2665, 2547, 3193, + 2563, 2593, 3169, + 2373, 2649, 3137, + 1841, 2715, 3089, + 0, 2791, 3017, + 0, 2875, 2897, + 0, 2969, 2663, + 0, 3069, 1614, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2895, 2367, 3259, + 2893, 2367, 3259, + 2893, 2369, 3259, + 2893, 2369, 3259, + 2891, 2371, 3257, + 2889, 2373, 3257, + 2887, 2377, 3257, + 2883, 2381, 3255, + 2879, 2385, 3253, + 2873, 2393, 3251, + 2867, 2401, 3249, + 2855, 2413, 3245, + 2841, 2429, 3241, + 2821, 2449, 3235, + 2793, 2473, 3227, + 2753, 2505, 3215, + 2691, 2545, 3199, + 2595, 2591, 3175, + 2423, 2649, 3143, + 1984, 2715, 3097, + 0, 2789, 3025, + 0, 2875, 2909, + 0, 2967, 2681, + 0, 3069, 1770, + 0, 3175, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2915, 2363, 3265, + 2915, 2365, 3265, + 2915, 2365, 3265, + 2913, 2367, 3265, + 2913, 2367, 3265, + 2911, 2371, 3263, + 2909, 2373, 3263, + 2905, 2377, 3261, + 2901, 2383, 3261, + 2897, 2389, 3259, + 2889, 2399, 3255, + 2879, 2411, 3253, + 2865, 2425, 3247, + 2847, 2445, 3241, + 2819, 2471, 3233, + 2781, 2503, 3221, + 2725, 2541, 3205, + 2637, 2589, 3183, + 2481, 2647, 3151, + 2123, 2713, 3107, + 0, 2789, 3037, + 0, 2873, 2923, + 0, 2967, 2705, + 0, 3067, 1919, + 0, 3175, 0, + 0, 3287, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2943, 2359, 3275, + 2943, 2359, 3273, + 2943, 2361, 3273, + 2941, 2361, 3273, + 2941, 2363, 3273, + 2939, 2365, 3273, + 2937, 2369, 3271, + 2933, 2373, 3271, + 2931, 2377, 3269, + 2925, 2385, 3267, + 2919, 2393, 3265, + 2909, 2405, 3261, + 2897, 2421, 3257, + 2879, 2441, 3251, + 2853, 2467, 3243, + 2819, 2499, 3231, + 2767, 2539, 3215, + 2685, 2587, 3193, + 2549, 2643, 3163, + 2261, 2711, 3119, + 0, 2787, 3051, + 0, 2871, 2941, + 0, 2965, 2733, + 0, 3067, 2063, + 0, 3175, 0, + 0, 3287, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3647, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2977, 2353, 3285, + 2977, 2353, 3285, + 2977, 2353, 3285, + 2975, 2355, 3285, + 2975, 2357, 3285, + 2973, 2359, 3283, + 2971, 2363, 3283, + 2969, 2367, 3281, + 2965, 2371, 3281, + 2961, 2379, 3279, + 2955, 2387, 3277, + 2945, 2401, 3273, + 2933, 2415, 3269, + 2917, 2437, 3263, + 2895, 2461, 3255, + 2863, 2495, 3243, + 2815, 2535, 3229, + 2745, 2583, 3207, + 2627, 2641, 3177, + 2399, 2707, 3135, + 1461, 2785, 3069, + 0, 2869, 2965, + 0, 2963, 2769, + 0, 3065, 2203, + 0, 3173, 0, + 0, 3287, 0, + 0, 3403, 0, + 0, 3525, 0, + 0, 3647, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 3019, 2343, 3301, + 3019, 2343, 3299, + 3019, 2345, 3299, + 3017, 2347, 3299, + 3017, 2347, 3299, + 3015, 2351, 3299, + 3013, 2353, 3297, + 3011, 2357, 3297, + 3009, 2363, 3295, + 3005, 2371, 3293, + 2999, 2379, 3291, + 2991, 2393, 3289, + 2979, 2409, 3285, + 2965, 2429, 3279, + 2945, 2455, 3271, + 2917, 2487, 3259, + 2875, 2529, 3245, + 2813, 2577, 3225, + 2713, 2635, 3197, + 2533, 2703, 3155, + 2059, 2781, 3093, + 0, 2867, 2993, + 0, 2961, 2815, + 0, 3063, 2343, + 0, 3171, 0, + 0, 3285, 0, + 0, 3403, 0, + 0, 3523, 0, + 0, 3647, 0, + 0, 3773, 0, + 0, 3899, 0, + 0, 4029, 0, + 3071, 2331, 3319, + 3069, 2331, 3319, + 3069, 2333, 3319, + 3069, 2335, 3319, + 3067, 2335, 3319, + 3067, 2339, 3317, + 3065, 2341, 3317, + 3063, 2345, 3315, + 3061, 2351, 3315, + 3057, 2359, 3313, + 3051, 2369, 3311, + 3045, 2381, 3307, + 3035, 2397, 3303, + 3023, 2419, 3299, + 3005, 2445, 3291, + 2979, 2479, 3281, + 2943, 2521, 3267, + 2891, 2571, 3247, + 2807, 2629, 3219, + 2667, 2699, 3181, + 2369, 2777, 3123, + 0, 2863, 3031, + 0, 2959, 2867, + 0, 3061, 2479, + 0, 3169, 0, + 0, 3283, 0, + 0, 3401, 0, + 0, 3523, 0, + 0, 3647, 0, + 0, 3773, 0, + 0, 3899, 0, + 0, 4027, 0, + 3131, 2315, 3343, + 3131, 2315, 3343, + 3129, 2317, 3343, + 3129, 2317, 3343, + 3129, 2319, 3343, + 3127, 2321, 3341, + 3125, 2325, 3341, + 3125, 2329, 3341, + 3121, 2335, 3339, + 3119, 2343, 3337, + 3113, 2353, 3335, + 3107, 2367, 3333, + 3099, 2383, 3329, + 3089, 2405, 3323, + 3073, 2433, 3317, + 3051, 2467, 3307, + 3021, 2509, 3293, + 2977, 2561, 3275, + 2909, 2621, 3249, + 2801, 2691, 3213, + 2599, 2769, 3159, + 1971, 2859, 3075, + 0, 2955, 2931, + 0, 3057, 2615, + 0, 3167, 0, + 0, 3281, 0, + 0, 3399, 0, + 0, 3521, 0, + 0, 3645, 0, + 0, 3771, 0, + 0, 3899, 0, + 0, 4027, 0, + 3201, 2291, 3373, + 3199, 2291, 3373, + 3199, 2293, 3373, + 3199, 2295, 3373, + 3199, 2297, 3373, + 3197, 2299, 3373, + 3197, 2303, 3371, + 3195, 2307, 3371, + 3193, 2313, 3371, + 3189, 2321, 3369, + 3185, 2331, 3367, + 3181, 2345, 3363, + 3173, 2363, 3361, + 3165, 2387, 3355, + 3151, 2415, 3349, + 3133, 2451, 3339, + 3107, 2495, 3327, + 3071, 2547, 3311, + 3019, 2609, 3287, + 2935, 2681, 3253, + 2793, 2761, 3205, + 2489, 2851, 3129, + 0, 2949, 3003, + 0, 3053, 2749, + 0, 3163, 215, + 0, 3279, 0, + 0, 3397, 0, + 0, 3519, 0, + 0, 3645, 0, + 0, 3771, 0, + 0, 3899, 0, + 0, 4027, 0, + 3279, 2257, 3411, + 3279, 2259, 3411, + 3279, 2259, 3411, + 3279, 2261, 3411, + 3277, 2263, 3411, + 3277, 2267, 3411, + 3275, 2271, 3409, + 3275, 2275, 3409, + 3273, 2281, 3409, + 3271, 2291, 3407, + 3267, 2301, 3405, + 3263, 2317, 3403, + 3257, 2335, 3399, + 3249, 2359, 3395, + 3239, 2389, 3389, + 3223, 2427, 3381, + 3203, 2473, 3369, + 3173, 2529, 3355, + 3131, 2593, 3333, + 3069, 2667, 3303, + 2967, 2749, 3259, + 2783, 2841, 3191, + 2277, 2941, 3085, + 0, 3047, 2883, + 0, 3159, 2269, + 0, 3275, 0, + 0, 3395, 0, + 0, 3517, 0, + 0, 3643, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4027, 0, + 3367, 2209, 3457, + 3367, 2209, 3457, + 3367, 2211, 3457, + 3367, 2213, 3457, + 3365, 2215, 3457, + 3365, 2219, 3457, + 3365, 2223, 3457, + 3363, 2229, 3455, + 3361, 2235, 3455, + 3361, 2245, 3453, + 3357, 2257, 3451, + 3353, 2273, 3449, + 3349, 2295, 3447, + 3343, 2321, 3443, + 3333, 2353, 3437, + 3321, 2395, 3429, + 3305, 2443, 3419, + 3283, 2503, 3407, + 3249, 2571, 3387, + 3201, 2647, 3361, + 3127, 2735, 3321, + 3007, 2829, 3265, + 2767, 2931, 3175, + 1574, 3039, 3017, + 0, 3153, 2651, + 0, 3271, 0, + 0, 3391, 0, + 0, 3515, 0, + 0, 3641, 0, + 0, 3767, 0, + 0, 3895, 0, + 0, 4025, 0, + 3463, 2135, 3513, + 3463, 2135, 3513, + 3463, 2137, 3513, + 3463, 2139, 3513, + 3463, 2143, 3513, + 3461, 2145, 3513, + 3461, 2151, 3511, + 3461, 2157, 3511, + 3459, 2165, 3511, + 3457, 2177, 3509, + 3455, 2191, 3507, + 3453, 2209, 3505, + 3449, 2233, 3503, + 3443, 2263, 3499, + 3437, 2301, 3495, + 3427, 2347, 3489, + 3413, 2401, 3479, + 3395, 2465, 3467, + 3371, 2537, 3451, + 3333, 2621, 3427, + 3281, 2711, 3395, + 3197, 2811, 3347, + 3055, 2917, 3273, + 2745, 3027, 3151, + 0, 3143, 2909, + 0, 3263, 1640, + 0, 3385, 0, + 0, 3511, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3895, 0, + 0, 4023, 0, + 3567, 2011, 3577, + 3567, 2012, 3577, + 3567, 2014, 3577, + 3565, 2017, 3577, + 3565, 2021, 3577, + 3565, 2026, 3577, + 3565, 2032, 3577, + 3563, 2040, 3577, + 3563, 2051, 3575, + 3561, 2065, 3575, + 3561, 2083, 3573, + 3557, 2107, 3571, + 3555, 2137, 3569, + 3551, 2173, 3567, + 3545, 2219, 3563, + 3537, 2273, 3557, + 3527, 2335, 3549, + 3513, 2409, 3539, + 3493, 2491, 3525, + 3467, 2581, 3505, + 3427, 2681, 3477, + 3369, 2785, 3437, + 3275, 2897, 3377, + 3111, 3013, 3283, + 2715, 3131, 3117, + 0, 3255, 2705, + 0, 3379, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3763, 0, + 0, 3891, 0, + 0, 4023, 0, + 3675, 1765, 3653, + 3675, 1767, 3653, + 3675, 1771, 3651, + 3675, 1776, 3651, + 3675, 1782, 3651, + 3675, 1790, 3651, + 3675, 1801, 3651, + 3673, 1814, 3651, + 3673, 1832, 3651, + 3671, 1855, 3649, + 3671, 1884, 3649, + 3669, 1920, 3647, + 3667, 1964, 3645, + 3663, 2017, 3643, + 3659, 2079, 3639, + 3653, 2151, 3633, + 3645, 2231, 3627, + 3635, 2321, 3619, + 3619, 2419, 3607, + 3599, 2525, 3591, + 3569, 2635, 3567, + 3527, 2749, 3535, + 3465, 2869, 3489, + 3363, 2991, 3417, + 3177, 3115, 3297, + 2671, 3241, 3065, + 0, 3369, 2069, + 0, 3499, 0, + 0, 3627, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 3789, 297, 3735, + 3789, 359, 3735, + 3789, 432, 3735, + 3789, 513, 3735, + 3789, 603, 3735, + 3789, 701, 3735, + 3789, 806, 3735, + 3789, 917, 3735, + 3787, 1032, 3733, + 3787, 1151, 3733, + 3785, 1273, 3733, + 3785, 1398, 3731, + 3783, 1524, 3729, + 3781, 1652, 3727, + 3777, 1781, 3725, + 3773, 1910, 3721, + 3767, 2040, 3715, + 3759, 2171, 3709, + 3747, 2303, 3699, + 3731, 2433, 3685, + 3709, 2565, 3667, + 3679, 2697, 3641, + 3635, 2829, 3603, + 3567, 2961, 3549, + 3459, 3093, 3463, + 3253, 3225, 3315, + 2603, 3357, 2989, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3905, 0, 3825, + 3905, 0, 3825, + 3903, 0, 3823, + 3903, 0, 3823, + 3901, 0, 3821, + 3899, 0, 3819, + 3895, 682, 3815, + 3891, 1493, 3811, + 3883, 1832, 3805, + 3875, 2075, 3797, + 3863, 2275, 3787, + 3847, 2451, 3773, + 3825, 2615, 3751, + 3793, 2769, 3723, + 3747, 2917, 3681, + 3677, 3059, 3619, + 3561, 3201, 3519, + 3339, 3339, 3339, + 2495, 3475, 2859, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4027, 0, 3925, + 4027, 0, 3925, + 4027, 0, 3925, + 4025, 0, 3923, + 4023, 0, 3921, + 4021, 0, 3919, + 4019, 0, 3917, + 4015, 0, 3913, + 4011, 0, 3909, + 4005, 1152, 3903, + 3995, 1902, 3895, + 3983, 2235, 3883, + 3967, 2475, 3867, + 3945, 2673, 3845, + 3911, 2849, 3813, + 3863, 3013, 3767, + 3791, 3165, 3699, + 3669, 3313, 3585, + 3433, 3457, 3367, + 2293, 3597, 2593, + 0, 3735, 0, + 0, 3871, 0, + 0, 4007, 0, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4031, + 4095, 0, 4031, + 4095, 0, 4031, + 4095, 0, 4029, + 4095, 0, 4027, + 4095, 0, 4025, + 4095, 0, 4023, + 4095, 0, 4019, + 4095, 0, 4015, + 4095, 0, 4007, + 4095, 1465, 3999, + 4095, 2177, 3987, + 4091, 2505, 3969, + 4067, 2741, 3945, + 4033, 2939, 3913, + 3983, 3115, 3863, + 3909, 3277, 3787, + 3783, 3431, 3659, + 3533, 3579, 3405, + 1659, 3721, 0, + 0, 3861, 0, + 0, 3999, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2083, 4095, + 4095, 2541, 4079, + 4095, 2819, 4053, + 4095, 3037, 4017, + 4095, 3225, 3965, + 4031, 3393, 3883, + 3901, 3551, 3743, + 3641, 3703, 3449, + 0, 3847, 0, + 0, 3989, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1918, 4095, + 4095, 2585, 4095, + 4095, 2907, 4095, + 4095, 3141, 4095, + 4095, 3339, 4073, + 4095, 3513, 3987, + 4023, 3675, 3837, + 3753, 3827, 3501, + 0, 3975, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1519, 4095, + 4095, 2639, 4095, + 4095, 3001, 4095, + 4095, 3253, 4095, + 4095, 3457, 4095, + 4095, 3635, 4095, + 4095, 3801, 3937, + 3869, 3955, 3565, + 2957, 2509, 3371, + 2957, 2509, 3371, + 2957, 2509, 3371, + 2955, 2511, 3371, + 2955, 2513, 3371, + 2953, 2513, 3369, + 2951, 2515, 3369, + 2949, 2519, 3369, + 2945, 2523, 3367, + 2941, 2527, 3365, + 2933, 2535, 3363, + 2925, 2543, 3361, + 2913, 2555, 3357, + 2895, 2569, 3353, + 2871, 2589, 3347, + 2837, 2613, 3337, + 2787, 2645, 3325, + 2711, 2683, 3307, + 2583, 2731, 3283, + 2323, 2785, 3251, + 0, 2851, 3201, + 0, 2927, 3125, + 0, 3011, 2997, + 0, 3103, 2739, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3539, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2959, 2509, 3371, + 2959, 2509, 3371, + 2957, 2509, 3371, + 2957, 2511, 3371, + 2955, 2511, 3371, + 2953, 2513, 3371, + 2951, 2515, 3369, + 2949, 2519, 3369, + 2945, 2523, 3367, + 2941, 2527, 3367, + 2935, 2535, 3365, + 2925, 2543, 3361, + 2913, 2555, 3357, + 2895, 2569, 3353, + 2871, 2589, 3347, + 2839, 2613, 3337, + 2789, 2645, 3325, + 2711, 2683, 3307, + 2585, 2729, 3285, + 2327, 2785, 3251, + 0, 2851, 3201, + 0, 2927, 3125, + 0, 3011, 2997, + 0, 3103, 2739, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3539, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2959, 2509, 3371, + 2959, 2509, 3371, + 2959, 2509, 3371, + 2957, 2511, 3371, + 2957, 2511, 3371, + 2955, 2513, 3371, + 2953, 2515, 3369, + 2951, 2519, 3369, + 2947, 2523, 3367, + 2941, 2527, 3367, + 2935, 2535, 3365, + 2925, 2543, 3361, + 2913, 2555, 3357, + 2897, 2569, 3353, + 2873, 2589, 3347, + 2839, 2613, 3337, + 2789, 2645, 3325, + 2713, 2683, 3309, + 2587, 2729, 3285, + 2329, 2785, 3251, + 0, 2851, 3201, + 0, 2927, 3125, + 0, 3011, 2997, + 0, 3103, 2741, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3539, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2961, 2509, 3373, + 2959, 2509, 3371, + 2959, 2509, 3371, + 2959, 2511, 3371, + 2957, 2511, 3371, + 2955, 2513, 3371, + 2953, 2515, 3369, + 2951, 2519, 3369, + 2947, 2523, 3369, + 2943, 2527, 3367, + 2937, 2535, 3365, + 2927, 2543, 3361, + 2915, 2555, 3359, + 2897, 2569, 3353, + 2875, 2589, 3347, + 2841, 2613, 3337, + 2791, 2645, 3325, + 2715, 2683, 3309, + 2589, 2729, 3285, + 2333, 2785, 3251, + 0, 2851, 3201, + 0, 2925, 3125, + 0, 3011, 2999, + 0, 3103, 2741, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2961, 2509, 3373, + 2961, 2509, 3373, + 2961, 2509, 3373, + 2959, 2511, 3371, + 2959, 2511, 3371, + 2957, 2513, 3371, + 2955, 2515, 3371, + 2953, 2519, 3369, + 2949, 2523, 3369, + 2945, 2527, 3367, + 2937, 2533, 3365, + 2929, 2543, 3363, + 2917, 2555, 3359, + 2899, 2569, 3353, + 2875, 2589, 3347, + 2843, 2613, 3339, + 2793, 2645, 3325, + 2717, 2683, 3309, + 2591, 2729, 3285, + 2339, 2785, 3251, + 0, 2851, 3201, + 0, 2925, 3125, + 0, 3011, 2999, + 0, 3103, 2743, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2963, 2507, 3373, + 2963, 2509, 3373, + 2963, 2509, 3373, + 2961, 2511, 3373, + 2961, 2511, 3371, + 2959, 2513, 3371, + 2957, 2515, 3371, + 2955, 2517, 3371, + 2951, 2521, 3369, + 2947, 2527, 3367, + 2939, 2533, 3365, + 2931, 2543, 3363, + 2919, 2555, 3359, + 2901, 2569, 3355, + 2879, 2589, 3347, + 2845, 2613, 3339, + 2795, 2645, 3327, + 2721, 2683, 3309, + 2595, 2729, 3285, + 2347, 2785, 3253, + 597, 2851, 3203, + 0, 2925, 3127, + 0, 3009, 3001, + 0, 3103, 2745, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2967, 2507, 3373, + 2965, 2509, 3373, + 2965, 2509, 3373, + 2965, 2509, 3373, + 2963, 2511, 3373, + 2961, 2513, 3373, + 2959, 2515, 3371, + 2957, 2517, 3371, + 2953, 2521, 3369, + 2949, 2527, 3369, + 2943, 2533, 3367, + 2933, 2543, 3363, + 2921, 2553, 3359, + 2905, 2569, 3355, + 2881, 2589, 3349, + 2847, 2613, 3339, + 2799, 2645, 3327, + 2725, 2683, 3311, + 2601, 2729, 3287, + 2355, 2785, 3253, + 912, 2851, 3203, + 0, 2925, 3127, + 0, 3009, 3001, + 0, 3103, 2749, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2969, 2507, 3375, + 2969, 2507, 3375, + 2969, 2509, 3375, + 2967, 2509, 3373, + 2967, 2511, 3373, + 2965, 2513, 3373, + 2963, 2515, 3373, + 2961, 2517, 3371, + 2957, 2521, 3371, + 2953, 2527, 3369, + 2945, 2533, 3367, + 2937, 2541, 3365, + 2925, 2553, 3361, + 2909, 2569, 3355, + 2885, 2587, 3349, + 2853, 2613, 3341, + 2803, 2643, 3329, + 2731, 2683, 3311, + 2609, 2729, 3287, + 2369, 2785, 3255, + 1144, 2851, 3205, + 0, 2925, 3129, + 0, 3009, 3003, + 0, 3103, 2751, + 0, 3203, 567, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2973, 2507, 3375, + 2973, 2507, 3375, + 2973, 2507, 3375, + 2971, 2509, 3375, + 2971, 2509, 3375, + 2969, 2511, 3375, + 2967, 2513, 3373, + 2965, 2517, 3373, + 2961, 2521, 3371, + 2957, 2525, 3371, + 2951, 2533, 3369, + 2941, 2541, 3365, + 2929, 2553, 3363, + 2913, 2567, 3357, + 2891, 2587, 3351, + 2857, 2613, 3341, + 2811, 2643, 3329, + 2737, 2681, 3313, + 2619, 2729, 3289, + 2385, 2785, 3255, + 1339, 2851, 3207, + 0, 2925, 3131, + 0, 3009, 3007, + 0, 3103, 2757, + 0, 3203, 941, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2979, 2505, 3377, + 2979, 2507, 3377, + 2979, 2507, 3377, + 2977, 2507, 3377, + 2977, 2509, 3377, + 2975, 2511, 3375, + 2973, 2513, 3375, + 2971, 2515, 3375, + 2967, 2519, 3373, + 2963, 2525, 3371, + 2957, 2531, 3369, + 2947, 2541, 3367, + 2935, 2553, 3363, + 2919, 2567, 3359, + 2897, 2587, 3353, + 2865, 2611, 3343, + 2819, 2643, 3331, + 2747, 2681, 3315, + 2631, 2729, 3291, + 2405, 2785, 3257, + 1513, 2849, 3209, + 0, 2925, 3135, + 0, 3009, 3011, + 0, 3101, 2763, + 0, 3203, 1195, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2987, 2505, 3379, + 2987, 2505, 3379, + 2987, 2505, 3379, + 2985, 2507, 3379, + 2985, 2507, 3379, + 2983, 2509, 3379, + 2981, 2511, 3377, + 2979, 2515, 3377, + 2975, 2519, 3375, + 2971, 2523, 3375, + 2965, 2531, 3373, + 2955, 2539, 3369, + 2945, 2551, 3365, + 2929, 2567, 3361, + 2907, 2585, 3355, + 2875, 2611, 3345, + 2829, 2641, 3333, + 2759, 2681, 3317, + 2647, 2727, 3293, + 2431, 2783, 3261, + 1674, 2849, 3213, + 0, 2925, 3137, + 0, 3009, 3015, + 0, 3101, 2771, + 0, 3201, 1401, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3905, 0, + 0, 4033, 0, + 2997, 2503, 3383, + 2997, 2503, 3383, + 2997, 2505, 3381, + 2995, 2505, 3381, + 2995, 2507, 3381, + 2993, 2509, 3381, + 2991, 2511, 3381, + 2989, 2513, 3379, + 2985, 2517, 3379, + 2981, 2523, 3377, + 2975, 2529, 3375, + 2967, 2539, 3373, + 2955, 2549, 3369, + 2939, 2565, 3365, + 2919, 2585, 3357, + 2887, 2609, 3349, + 2843, 2641, 3337, + 2777, 2679, 3321, + 2667, 2727, 3297, + 2465, 2783, 3265, + 1826, 2849, 3217, + 0, 2923, 3143, + 0, 3009, 3021, + 0, 3101, 2781, + 0, 3201, 1581, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3905, 0, + 0, 4033, 0, + 3011, 2501, 3387, + 3009, 2501, 3385, + 3009, 2503, 3385, + 3009, 2503, 3385, + 3007, 2505, 3385, + 3007, 2507, 3385, + 3005, 2509, 3385, + 3001, 2511, 3383, + 2999, 2515, 3383, + 2995, 2521, 3381, + 2989, 2527, 3379, + 2981, 2537, 3377, + 2969, 2549, 3373, + 2955, 2563, 3369, + 2933, 2583, 3361, + 2905, 2607, 3353, + 2861, 2639, 3341, + 2797, 2679, 3325, + 2695, 2725, 3301, + 2505, 2781, 3269, + 1973, 2847, 3221, + 0, 2923, 3149, + 0, 3007, 3029, + 0, 3101, 2795, + 0, 3201, 1747, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3905, 0, + 0, 4033, 0, + 3027, 2499, 3391, + 3027, 2499, 3391, + 3025, 2499, 3391, + 3025, 2501, 3391, + 3025, 2501, 3391, + 3023, 2503, 3389, + 3021, 2505, 3389, + 3019, 2509, 3389, + 3015, 2513, 3387, + 3011, 2517, 3385, + 3007, 2525, 3383, + 2999, 2533, 3381, + 2987, 2545, 3377, + 2973, 2561, 3373, + 2953, 2581, 3367, + 2925, 2605, 3359, + 2885, 2637, 3347, + 2823, 2677, 3331, + 2727, 2723, 3307, + 2555, 2781, 3275, + 2115, 2847, 3229, + 0, 2923, 3157, + 0, 3007, 3041, + 0, 3099, 2813, + 0, 3201, 1902, + 0, 3307, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3905, 0, + 0, 4033, 0, + 3049, 2495, 3397, + 3049, 2495, 3397, + 3047, 2497, 3397, + 3047, 2497, 3397, + 3045, 2499, 3397, + 3045, 2501, 3397, + 3043, 2503, 3395, + 3041, 2505, 3395, + 3037, 2509, 3393, + 3033, 2515, 3393, + 3029, 2521, 3391, + 3021, 2531, 3389, + 3011, 2543, 3385, + 2997, 2557, 3381, + 2979, 2577, 3373, + 2953, 2603, 3365, + 2913, 2635, 3353, + 2857, 2673, 3337, + 2769, 2721, 3315, + 2613, 2779, 3285, + 2255, 2845, 3239, + 0, 2921, 3169, + 0, 3005, 3055, + 0, 3099, 2837, + 0, 3199, 2051, + 0, 3307, 0, + 0, 3419, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3905, 0, + 0, 4033, 0, + 3075, 2491, 3407, + 3075, 2491, 3407, + 3075, 2491, 3405, + 3075, 2493, 3405, + 3073, 2493, 3405, + 3073, 2495, 3405, + 3071, 2497, 3405, + 3069, 2501, 3403, + 3065, 2505, 3403, + 3063, 2509, 3401, + 3057, 2517, 3399, + 3051, 2527, 3397, + 3041, 2539, 3393, + 3029, 2553, 3389, + 3011, 2573, 3383, + 2985, 2599, 3375, + 2951, 2631, 3363, + 2899, 2671, 3347, + 2817, 2719, 3327, + 2681, 2775, 3295, + 2393, 2843, 3251, + 0, 2919, 3183, + 0, 3005, 3073, + 0, 3097, 2865, + 0, 3199, 2195, + 0, 3307, 0, + 0, 3419, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3779, 0, + 0, 3905, 0, + 0, 4033, 0, + 3109, 2483, 3417, + 3109, 2485, 3417, + 3109, 2485, 3417, + 3109, 2485, 3417, + 3107, 2487, 3417, + 3107, 2489, 3417, + 3105, 2491, 3415, + 3103, 2495, 3415, + 3101, 2499, 3415, + 3097, 2503, 3413, + 3093, 2511, 3411, + 3087, 2521, 3409, + 3077, 2533, 3405, + 3065, 2549, 3401, + 3049, 2569, 3395, + 3027, 2595, 3387, + 2995, 2627, 3375, + 2947, 2667, 3361, + 2877, 2715, 3339, + 2759, 2773, 3309, + 2531, 2839, 3267, + 1593, 2917, 3201, + 0, 3003, 3097, + 0, 3097, 2903, + 0, 3197, 2335, + 0, 3305, 0, + 0, 3419, 0, + 0, 3535, 0, + 0, 3657, 0, + 0, 3779, 0, + 0, 3905, 0, + 0, 4033, 0, + 3153, 2475, 3433, + 3151, 2475, 3433, + 3151, 2477, 3433, + 3151, 2477, 3431, + 3151, 2479, 3431, + 3149, 2481, 3431, + 3147, 2483, 3431, + 3147, 2485, 3429, + 3143, 2489, 3429, + 3141, 2495, 3427, + 3137, 2503, 3425, + 3131, 2511, 3423, + 3123, 2525, 3421, + 3113, 2541, 3417, + 3097, 2561, 3411, + 3077, 2587, 3403, + 3049, 2619, 3391, + 3007, 2661, 3377, + 2945, 2709, 3357, + 2845, 2767, 3329, + 2665, 2835, 3287, + 2191, 2913, 3225, + 0, 2999, 3125, + 0, 3093, 2947, + 0, 3195, 2475, + 0, 3303, 0, + 0, 3417, 0, + 0, 3535, 0, + 0, 3655, 0, + 0, 3779, 0, + 0, 3905, 0, + 0, 4031, 0, + 3203, 2463, 3451, + 3203, 2463, 3451, + 3203, 2463, 3451, + 3201, 2465, 3451, + 3201, 2467, 3451, + 3201, 2469, 3451, + 3199, 2471, 3449, + 3197, 2473, 3449, + 3195, 2477, 3449, + 3193, 2483, 3447, + 3189, 2491, 3445, + 3183, 2501, 3443, + 3177, 2513, 3439, + 3167, 2529, 3435, + 3155, 2551, 3431, + 3137, 2577, 3423, + 3111, 2611, 3413, + 3075, 2653, 3399, + 3023, 2703, 3379, + 2941, 2761, 3353, + 2801, 2831, 3313, + 2501, 2909, 3255, + 0, 2995, 3163, + 0, 3091, 2999, + 0, 3193, 2611, + 0, 3301, 0, + 0, 3415, 0, + 0, 3533, 0, + 0, 3655, 0, + 0, 3779, 0, + 0, 3905, 0, + 0, 4031, 0, + 3263, 2445, 3475, + 3263, 2447, 3475, + 3263, 2447, 3475, + 3261, 2449, 3475, + 3261, 2449, 3475, + 3261, 2451, 3475, + 3259, 2455, 3475, + 3259, 2457, 3473, + 3257, 2461, 3473, + 3253, 2467, 3471, + 3251, 2475, 3469, + 3247, 2485, 3467, + 3239, 2499, 3465, + 3231, 2515, 3461, + 3221, 2537, 3455, + 3205, 2565, 3449, + 3183, 2599, 3439, + 3153, 2641, 3425, + 3109, 2693, 3407, + 3043, 2753, 3383, + 2933, 2823, 3345, + 2731, 2903, 3291, + 2103, 2991, 3207, + 0, 3087, 3063, + 0, 3189, 2747, + 0, 3299, 0, + 0, 3413, 0, + 0, 3531, 0, + 0, 3653, 0, + 0, 3777, 0, + 0, 3903, 0, + 0, 4031, 0, + 3333, 2423, 3507, + 3333, 2423, 3507, + 3331, 2423, 3505, + 3331, 2425, 3505, + 3331, 2427, 3505, + 3331, 2429, 3505, + 3329, 2431, 3505, + 3329, 2435, 3505, + 3327, 2439, 3503, + 3325, 2445, 3503, + 3321, 2453, 3501, + 3319, 2463, 3499, + 3313, 2477, 3497, + 3305, 2495, 3493, + 3297, 2519, 3487, + 3283, 2547, 3481, + 3265, 2583, 3473, + 3241, 2627, 3459, + 3203, 2679, 3443, + 3151, 2741, 3419, + 3067, 2813, 3385, + 2925, 2893, 3337, + 2621, 2983, 3261, + 0, 3081, 3135, + 0, 3185, 2881, + 0, 3295, 347, + 0, 3411, 0, + 0, 3529, 0, + 0, 3651, 0, + 0, 3777, 0, + 0, 3903, 0, + 0, 4031, 0, + 3411, 2389, 3545, + 3411, 2389, 3543, + 3411, 2391, 3543, + 3411, 2391, 3543, + 3411, 2393, 3543, + 3409, 2395, 3543, + 3409, 2399, 3543, + 3409, 2403, 3543, + 3407, 2407, 3541, + 3405, 2413, 3541, + 3403, 2423, 3539, + 3399, 2433, 3537, + 3395, 2449, 3535, + 3389, 2467, 3531, + 3381, 2491, 3527, + 3371, 2521, 3521, + 3355, 2559, 3513, + 3335, 2605, 3501, + 3305, 2661, 3487, + 3263, 2725, 3465, + 3201, 2799, 3435, + 3099, 2883, 3391, + 2915, 2973, 3323, + 2411, 3073, 3217, + 0, 3179, 3015, + 0, 3291, 2401, + 0, 3407, 0, + 0, 3527, 0, + 0, 3649, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 3499, 2341, 3591, + 3499, 2341, 3591, + 3499, 2343, 3589, + 3499, 2343, 3589, + 3499, 2345, 3589, + 3499, 2347, 3589, + 3497, 2351, 3589, + 3497, 2355, 3589, + 3495, 2361, 3587, + 3495, 2367, 3587, + 3493, 2377, 3585, + 3489, 2389, 3583, + 3485, 2405, 3581, + 3481, 2427, 3579, + 3475, 2453, 3575, + 3467, 2485, 3569, + 3455, 2527, 3563, + 3437, 2575, 3551, + 3415, 2635, 3539, + 3381, 2703, 3519, + 3333, 2779, 3493, + 3259, 2867, 3453, + 3139, 2961, 3397, + 2899, 3063, 3307, + 1706, 3171, 3149, + 0, 3285, 2783, + 0, 3403, 0, + 0, 3523, 0, + 0, 3647, 0, + 0, 3773, 0, + 0, 3899, 0, + 0, 4029, 0, + 3595, 2265, 3645, + 3595, 2267, 3645, + 3595, 2267, 3645, + 3595, 2269, 3645, + 3595, 2271, 3645, + 3595, 2275, 3645, + 3593, 2277, 3645, + 3593, 2283, 3643, + 3593, 2289, 3643, + 3591, 2297, 3643, + 3589, 2309, 3641, + 3587, 2323, 3639, + 3585, 2341, 3637, + 3581, 2365, 3635, + 3575, 2395, 3631, + 3569, 2433, 3627, + 3559, 2479, 3621, + 3545, 2533, 3611, + 3527, 2597, 3599, + 3503, 2671, 3583, + 3467, 2753, 3559, + 3413, 2845, 3527, + 3329, 2943, 3479, + 3187, 3049, 3405, + 2877, 3161, 3283, + 0, 3275, 3041, + 0, 3395, 1772, + 0, 3519, 0, + 0, 3643, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4027, 0, + 3699, 2141, 3711, + 3699, 2143, 3711, + 3699, 2145, 3709, + 3699, 2147, 3709, + 3697, 2149, 3709, + 3697, 2153, 3709, + 3697, 2157, 3709, + 3697, 2165, 3709, + 3697, 2173, 3709, + 3695, 2183, 3707, + 3693, 2197, 3707, + 3693, 2217, 3705, + 3689, 2239, 3703, + 3687, 2269, 3701, + 3683, 2305, 3699, + 3677, 2351, 3695, + 3669, 2405, 3689, + 3659, 2469, 3681, + 3645, 2541, 3671, + 3627, 2623, 3657, + 3599, 2713, 3637, + 3559, 2813, 3609, + 3501, 2917, 3569, + 3407, 3029, 3509, + 3243, 3145, 3415, + 2847, 3263, 3249, + 0, 3387, 2837, + 0, 3511, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3895, 0, + 0, 4025, 0, + 3807, 1895, 3785, + 3807, 1897, 3785, + 3807, 1900, 3785, + 3807, 1903, 3785, + 3807, 1908, 3783, + 3807, 1914, 3783, + 3807, 1922, 3783, + 3807, 1933, 3783, + 3805, 1946, 3783, + 3805, 1964, 3783, + 3805, 1987, 3781, + 3803, 2016, 3781, + 3801, 2051, 3779, + 3799, 2095, 3777, + 3795, 2149, 3775, + 3791, 2211, 3771, + 3785, 2283, 3767, + 3777, 2365, 3759, + 3767, 2453, 3751, + 3751, 2551, 3739, + 3731, 2657, 3723, + 3701, 2767, 3701, + 3659, 2881, 3667, + 3597, 3001, 3621, + 3495, 3123, 3549, + 3309, 3247, 3429, + 2803, 3373, 3197, + 0, 3501, 2201, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 3921, 376, 3867, + 3921, 429, 3867, + 3921, 491, 3867, + 3921, 564, 3867, + 3921, 645, 3867, + 3921, 735, 3867, + 3921, 833, 3867, + 3921, 938, 3867, + 3921, 1048, 3867, + 3919, 1164, 3865, + 3919, 1283, 3865, + 3919, 1405, 3865, + 3917, 1530, 3863, + 3915, 1656, 3861, + 3913, 1784, 3859, + 3909, 1913, 3857, + 3905, 2042, 3853, + 3899, 2173, 3847, + 3891, 2303, 3841, + 3879, 2435, 3831, + 3863, 2565, 3817, + 3841, 2697, 3799, + 3811, 2829, 3773, + 3767, 2961, 3735, + 3699, 3093, 3681, + 3591, 3225, 3595, + 3385, 3357, 3447, + 2735, 3489, 3121, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 4041, 0, 3959, + 4041, 0, 3959, + 4041, 0, 3959, + 4039, 0, 3959, + 4039, 0, 3959, + 4039, 0, 3959, + 4039, 0, 3959, + 4039, 0, 3959, + 4039, 0, 3959, + 4039, 0, 3959, + 4037, 0, 3957, + 4037, 0, 3957, + 4037, 0, 3957, + 4035, 0, 3955, + 4033, 0, 3953, + 4031, 0, 3951, + 4027, 815, 3947, + 4023, 1625, 3943, + 4015, 1965, 3937, + 4007, 2207, 3929, + 3995, 2407, 3919, + 3979, 2583, 3905, + 3957, 2747, 3883, + 3925, 2901, 3855, + 3879, 3049, 3813, + 3809, 3193, 3751, + 3693, 3333, 3651, + 3471, 3471, 3471, + 2627, 3607, 2991, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4057, + 4095, 0, 4057, + 4095, 0, 4057, + 4095, 0, 4055, + 4095, 0, 4053, + 4095, 0, 4053, + 4095, 0, 4049, + 4095, 0, 4047, + 4095, 0, 4041, + 4095, 1285, 4035, + 4095, 2034, 4027, + 4095, 2367, 4015, + 4095, 2607, 3999, + 4077, 2805, 3977, + 4043, 2981, 3945, + 3995, 3145, 3899, + 3923, 3297, 3831, + 3801, 3445, 3717, + 3565, 3589, 3499, + 2425, 3729, 2725, + 0, 3867, 0, + 0, 4003, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1597, 4095, + 4095, 2309, 4095, + 4095, 2637, 4095, + 4095, 2875, 4079, + 4095, 3071, 4045, + 4095, 3247, 3995, + 4041, 3409, 3919, + 3915, 3563, 3791, + 3665, 3711, 3537, + 1791, 3853, 0, + 0, 3993, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2215, 4095, + 4095, 2673, 4095, + 4095, 2951, 4095, + 4095, 3169, 4095, + 4095, 3357, 4095, + 4095, 3525, 4015, + 4033, 3683, 3877, + 3773, 3835, 3581, + 0, 3979, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2051, 4095, + 4095, 2717, 4095, + 4095, 3039, 4095, + 4095, 3275, 4095, + 4095, 3471, 4095, + 4095, 3645, 4095, + 4095, 3807, 3969, + 3885, 3961, 3633, + 3089, 2641, 3503, + 3089, 2641, 3503, + 3089, 2641, 3503, + 3089, 2643, 3503, + 3087, 2643, 3503, + 3087, 2645, 3503, + 3085, 2645, 3501, + 3083, 2649, 3501, + 3081, 2651, 3501, + 3077, 2655, 3499, + 3071, 2659, 3497, + 3065, 2667, 3495, + 3057, 2675, 3493, + 3043, 2687, 3489, + 3027, 2703, 3485, + 3003, 2721, 3479, + 2969, 2747, 3469, + 2919, 2777, 3457, + 2843, 2815, 3439, + 2715, 2863, 3415, + 2453, 2919, 3383, + 0, 2983, 3333, + 0, 3059, 3257, + 0, 3143, 3129, + 0, 3235, 2871, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3089, 2641, 3503, + 3089, 2641, 3503, + 3089, 2643, 3503, + 3087, 2645, 3503, + 3085, 2645, 3503, + 3083, 2647, 3501, + 3081, 2651, 3501, + 3077, 2655, 3499, + 3073, 2659, 3499, + 3065, 2667, 3497, + 3057, 2675, 3493, + 3045, 2687, 3489, + 3027, 2701, 3485, + 3003, 2721, 3479, + 2969, 2745, 3469, + 2919, 2777, 3457, + 2843, 2815, 3439, + 2715, 2863, 3417, + 2455, 2919, 3383, + 0, 2983, 3333, + 0, 3059, 3257, + 0, 3143, 3129, + 0, 3235, 2871, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3089, 2641, 3503, + 3089, 2643, 3503, + 3087, 2645, 3503, + 3087, 2645, 3503, + 3085, 2647, 3501, + 3081, 2651, 3501, + 3077, 2655, 3499, + 3073, 2659, 3499, + 3067, 2667, 3497, + 3057, 2675, 3493, + 3045, 2687, 3489, + 3027, 2701, 3485, + 3005, 2721, 3479, + 2971, 2745, 3469, + 2921, 2777, 3457, + 2843, 2815, 3441, + 2717, 2863, 3417, + 2459, 2917, 3383, + 0, 2983, 3333, + 0, 3059, 3257, + 0, 3143, 3129, + 0, 3235, 2871, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3089, 2643, 3503, + 3089, 2643, 3503, + 3087, 2645, 3503, + 3085, 2647, 3501, + 3083, 2651, 3501, + 3079, 2655, 3499, + 3073, 2659, 3499, + 3067, 2667, 3497, + 3059, 2675, 3493, + 3045, 2687, 3491, + 3029, 2701, 3485, + 3005, 2721, 3479, + 2971, 2745, 3469, + 2921, 2777, 3457, + 2845, 2815, 3441, + 2719, 2863, 3417, + 2461, 2917, 3383, + 0, 2983, 3333, + 0, 3059, 3257, + 0, 3143, 3129, + 0, 3235, 2873, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3093, 2641, 3505, + 3093, 2641, 3505, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3091, 2643, 3503, + 3089, 2643, 3503, + 3087, 2645, 3503, + 3085, 2647, 3503, + 3083, 2651, 3501, + 3079, 2655, 3501, + 3075, 2659, 3499, + 3069, 2667, 3497, + 3059, 2675, 3495, + 3047, 2687, 3491, + 3031, 2701, 3485, + 3007, 2721, 3479, + 2973, 2745, 3469, + 2923, 2777, 3457, + 2847, 2815, 3441, + 2721, 2861, 3417, + 2465, 2917, 3383, + 0, 2983, 3333, + 0, 3059, 3257, + 0, 3143, 3131, + 0, 3235, 2873, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3095, 2639, 3505, + 3093, 2641, 3505, + 3093, 2641, 3505, + 3093, 2641, 3505, + 3091, 2643, 3503, + 3091, 2643, 3503, + 3089, 2645, 3503, + 3087, 2647, 3503, + 3085, 2651, 3501, + 3081, 2655, 3501, + 3077, 2659, 3499, + 3069, 2667, 3497, + 3061, 2675, 3495, + 3049, 2687, 3491, + 3031, 2701, 3485, + 3007, 2721, 3479, + 2975, 2745, 3471, + 2925, 2777, 3459, + 2849, 2815, 3441, + 2723, 2861, 3417, + 2471, 2917, 3383, + 108, 2983, 3335, + 0, 3059, 3257, + 0, 3143, 3131, + 0, 3235, 2875, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3097, 2639, 3505, + 3095, 2641, 3505, + 3095, 2641, 3505, + 3095, 2641, 3505, + 3093, 2643, 3505, + 3093, 2643, 3505, + 3091, 2645, 3503, + 3089, 2647, 3503, + 3087, 2651, 3503, + 3083, 2653, 3501, + 3079, 2659, 3499, + 3071, 2665, 3497, + 3063, 2675, 3495, + 3051, 2687, 3491, + 3033, 2701, 3487, + 3011, 2721, 3479, + 2977, 2745, 3471, + 2927, 2777, 3459, + 2853, 2815, 3441, + 2727, 2861, 3417, + 2479, 2917, 3385, + 729, 2983, 3335, + 0, 3057, 3259, + 0, 3143, 3133, + 0, 3235, 2877, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3099, 2639, 3505, + 3099, 2639, 3505, + 3097, 2641, 3505, + 3097, 2641, 3505, + 3097, 2641, 3505, + 3095, 2643, 3505, + 3093, 2645, 3505, + 3091, 2647, 3503, + 3089, 2649, 3503, + 3085, 2653, 3501, + 3081, 2659, 3501, + 3075, 2665, 3499, + 3065, 2675, 3495, + 3053, 2685, 3493, + 3037, 2701, 3487, + 3013, 2721, 3481, + 2979, 2745, 3471, + 2931, 2777, 3459, + 2857, 2815, 3443, + 2733, 2861, 3419, + 2487, 2917, 3385, + 1043, 2983, 3335, + 0, 3057, 3261, + 0, 3141, 3133, + 0, 3235, 2881, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3101, 2639, 3507, + 3101, 2639, 3507, + 3101, 2639, 3507, + 3101, 2641, 3507, + 3099, 2641, 3507, + 3099, 2643, 3505, + 3097, 2645, 3505, + 3095, 2647, 3505, + 3093, 2649, 3503, + 3089, 2653, 3503, + 3085, 2659, 3501, + 3077, 2665, 3499, + 3069, 2673, 3497, + 3057, 2685, 3493, + 3041, 2701, 3489, + 3017, 2721, 3481, + 2985, 2745, 3473, + 2937, 2775, 3461, + 2863, 2815, 3443, + 2741, 2861, 3419, + 2501, 2917, 3387, + 1276, 2983, 3337, + 0, 3057, 3261, + 0, 3141, 3135, + 0, 3235, 2883, + 0, 3335, 699, + 0, 3441, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3107, 2639, 3507, + 3105, 2639, 3507, + 3105, 2639, 3507, + 3105, 2639, 3507, + 3103, 2641, 3507, + 3103, 2641, 3507, + 3101, 2643, 3507, + 3099, 2645, 3505, + 3097, 2649, 3505, + 3093, 2653, 3503, + 3089, 2657, 3503, + 3083, 2665, 3501, + 3073, 2673, 3497, + 3061, 2685, 3495, + 3045, 2701, 3489, + 3023, 2719, 3483, + 2989, 2745, 3473, + 2943, 2775, 3461, + 2869, 2813, 3445, + 2751, 2861, 3421, + 2517, 2917, 3387, + 1471, 2983, 3339, + 0, 3057, 3263, + 0, 3141, 3139, + 0, 3235, 2889, + 0, 3335, 1073, + 0, 3441, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3111, 2637, 3509, + 3111, 2637, 3509, + 3111, 2639, 3509, + 3111, 2639, 3509, + 3109, 2639, 3509, + 3109, 2641, 3509, + 3107, 2643, 3509, + 3105, 2645, 3507, + 3103, 2647, 3507, + 3099, 2651, 3505, + 3095, 2657, 3505, + 3089, 2663, 3503, + 3079, 2673, 3499, + 3069, 2685, 3495, + 3051, 2699, 3491, + 3029, 2719, 3485, + 2997, 2743, 3475, + 2951, 2775, 3463, + 2879, 2813, 3447, + 2763, 2861, 3423, + 2537, 2917, 3389, + 1645, 2981, 3341, + 0, 3057, 3267, + 0, 3141, 3143, + 0, 3235, 2895, + 0, 3335, 1327, + 0, 3441, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3119, 2637, 3511, + 3119, 2637, 3511, + 3119, 2637, 3511, + 3119, 2637, 3511, + 3117, 2639, 3511, + 3117, 2641, 3511, + 3115, 2641, 3511, + 3113, 2643, 3509, + 3111, 2647, 3509, + 3107, 2651, 3507, + 3103, 2655, 3507, + 3097, 2663, 3505, + 3087, 2671, 3501, + 3077, 2683, 3499, + 3061, 2699, 3493, + 3039, 2717, 3487, + 3007, 2743, 3477, + 2961, 2773, 3465, + 2893, 2813, 3449, + 2779, 2859, 3425, + 2563, 2915, 3393, + 1806, 2981, 3345, + 0, 3057, 3271, + 0, 3141, 3147, + 0, 3233, 2903, + 0, 3335, 1533, + 0, 3441, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3789, 0, + 0, 3913, 0, + 0, 4039, 0, + 3129, 2635, 3515, + 3129, 2635, 3515, + 3129, 2635, 3515, + 3129, 2637, 3515, + 3127, 2637, 3513, + 3127, 2639, 3513, + 3125, 2641, 3513, + 3123, 2643, 3513, + 3121, 2645, 3511, + 3117, 2649, 3511, + 3113, 2655, 3509, + 3107, 2661, 3507, + 3099, 2671, 3505, + 3087, 2681, 3501, + 3071, 2697, 3497, + 3051, 2717, 3489, + 3019, 2741, 3481, + 2975, 2773, 3469, + 2909, 2811, 3453, + 2799, 2859, 3429, + 2597, 2915, 3397, + 1958, 2981, 3349, + 0, 3057, 3275, + 0, 3141, 3153, + 0, 3233, 2913, + 0, 3333, 1714, + 0, 3441, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3789, 0, + 0, 3913, 0, + 0, 4039, 0, + 3143, 2633, 3519, + 3143, 2633, 3519, + 3141, 2633, 3519, + 3141, 2635, 3517, + 3141, 2635, 3517, + 3139, 2637, 3517, + 3139, 2639, 3517, + 3137, 2641, 3517, + 3133, 2643, 3515, + 3131, 2647, 3515, + 3127, 2653, 3513, + 3121, 2659, 3511, + 3113, 2669, 3509, + 3101, 2681, 3505, + 3087, 2695, 3501, + 3065, 2715, 3493, + 3037, 2741, 3485, + 2993, 2771, 3473, + 2929, 2811, 3457, + 2827, 2857, 3433, + 2637, 2913, 3401, + 2105, 2979, 3353, + 0, 3055, 3281, + 0, 3139, 3161, + 0, 3233, 2927, + 0, 3333, 1879, + 0, 3441, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3789, 0, + 0, 3913, 0, + 0, 4037, 0, + 3159, 2631, 3523, + 3159, 2631, 3523, + 3159, 2631, 3523, + 3159, 2631, 3523, + 3157, 2633, 3523, + 3157, 2635, 3523, + 3155, 2635, 3521, + 3153, 2637, 3521, + 3151, 2641, 3521, + 3149, 2645, 3519, + 3143, 2651, 3517, + 3139, 2657, 3517, + 3131, 2665, 3513, + 3121, 2677, 3511, + 3105, 2693, 3505, + 3085, 2713, 3499, + 3057, 2737, 3491, + 3017, 2769, 3479, + 2955, 2809, 3463, + 2859, 2855, 3439, + 2687, 2913, 3407, + 2249, 2979, 3361, + 0, 3055, 3289, + 0, 3139, 3173, + 0, 3233, 2945, + 0, 3333, 2034, + 0, 3439, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3789, 0, + 0, 3913, 0, + 0, 4037, 0, + 3181, 2627, 3529, + 3181, 2627, 3529, + 3181, 2627, 3529, + 3179, 2629, 3529, + 3179, 2629, 3529, + 3179, 2631, 3529, + 3177, 2633, 3529, + 3175, 2635, 3527, + 3173, 2637, 3527, + 3171, 2641, 3527, + 3167, 2647, 3525, + 3161, 2653, 3523, + 3153, 2663, 3521, + 3143, 2675, 3517, + 3129, 2689, 3513, + 3111, 2709, 3505, + 3085, 2735, 3497, + 3047, 2767, 3485, + 2989, 2807, 3469, + 2901, 2853, 3447, + 2745, 2911, 3417, + 2389, 2977, 3371, + 0, 3053, 3301, + 0, 3137, 3187, + 0, 3231, 2969, + 0, 3333, 2183, + 0, 3439, 0, + 0, 3551, 0, + 0, 3669, 0, + 0, 3789, 0, + 0, 3913, 0, + 0, 4037, 0, + 3209, 2621, 3539, + 3207, 2623, 3539, + 3207, 2623, 3539, + 3207, 2623, 3539, + 3207, 2625, 3537, + 3205, 2625, 3537, + 3205, 2627, 3537, + 3203, 2629, 3537, + 3201, 2633, 3535, + 3199, 2637, 3535, + 3195, 2643, 3533, + 3189, 2649, 3531, + 3183, 2659, 3529, + 3173, 2671, 3525, + 3161, 2685, 3521, + 3143, 2705, 3515, + 3117, 2731, 3507, + 3083, 2763, 3495, + 3031, 2803, 3479, + 2949, 2851, 3459, + 2813, 2909, 3427, + 2527, 2975, 3383, + 0, 3051, 3315, + 0, 3137, 3205, + 0, 3229, 2997, + 0, 3331, 2327, + 0, 3439, 0, + 0, 3551, 0, + 0, 3669, 0, + 0, 3789, 0, + 0, 3913, 0, + 0, 4037, 0, + 3243, 2615, 3549, + 3243, 2615, 3549, + 3241, 2617, 3549, + 3241, 2617, 3549, + 3241, 2617, 3549, + 3239, 2619, 3549, + 3239, 2621, 3549, + 3237, 2623, 3547, + 3235, 2627, 3547, + 3233, 2631, 3547, + 3229, 2635, 3545, + 3225, 2643, 3543, + 3219, 2653, 3541, + 3209, 2665, 3537, + 3199, 2681, 3533, + 3181, 2701, 3527, + 3159, 2727, 3519, + 3127, 2759, 3507, + 3079, 2799, 3493, + 3009, 2847, 3471, + 2891, 2905, 3441, + 2663, 2971, 3399, + 1725, 3049, 3333, + 0, 3135, 3229, + 0, 3229, 3035, + 0, 3329, 2467, + 0, 3437, 0, + 0, 3551, 0, + 0, 3667, 0, + 0, 3789, 0, + 0, 3911, 0, + 0, 4037, 0, + 3285, 2607, 3565, + 3285, 2607, 3565, + 3283, 2607, 3565, + 3283, 2609, 3565, + 3283, 2609, 3565, + 3283, 2611, 3563, + 3281, 2613, 3563, + 3279, 2615, 3563, + 3279, 2617, 3563, + 3275, 2621, 3561, + 3273, 2627, 3559, + 3269, 2635, 3559, + 3263, 2645, 3555, + 3255, 2657, 3553, + 3245, 2673, 3549, + 3229, 2693, 3543, + 3209, 2719, 3535, + 3181, 2753, 3525, + 3139, 2793, 3509, + 3077, 2841, 3489, + 2977, 2899, 3461, + 2797, 2967, 3419, + 2323, 3045, 3357, + 0, 3131, 3257, + 0, 3225, 3079, + 0, 3327, 2607, + 0, 3435, 0, + 0, 3549, 0, + 0, 3667, 0, + 0, 3787, 0, + 0, 3911, 0, + 0, 4037, 0, + 3335, 2595, 3583, + 3335, 2595, 3583, + 3335, 2595, 3583, + 3335, 2597, 3583, + 3333, 2597, 3583, + 3333, 2599, 3583, + 3333, 2601, 3583, + 3331, 2603, 3581, + 3329, 2605, 3581, + 3327, 2611, 3581, + 3325, 2615, 3579, + 3321, 2623, 3577, + 3315, 2633, 3575, + 3309, 2645, 3573, + 3299, 2661, 3567, + 3287, 2683, 3563, + 3269, 2709, 3555, + 3243, 2743, 3545, + 3207, 2785, 3531, + 3155, 2835, 3511, + 3073, 2893, 3485, + 2933, 2963, 3445, + 2633, 3041, 3387, + 0, 3127, 3295, + 0, 3223, 3131, + 0, 3325, 2743, + 0, 3433, 0, + 0, 3547, 0, + 0, 3665, 0, + 0, 3787, 0, + 0, 3911, 0, + 0, 4037, 0, + 3395, 2577, 3607, + 3395, 2577, 3607, + 3395, 2579, 3607, + 3395, 2579, 3607, + 3393, 2581, 3607, + 3393, 2581, 3607, + 3393, 2583, 3607, + 3391, 2587, 3607, + 3391, 2589, 3605, + 3389, 2593, 3605, + 3385, 2599, 3603, + 3383, 2607, 3601, + 3379, 2617, 3599, + 3373, 2631, 3597, + 3363, 2647, 3593, + 3353, 2669, 3587, + 3337, 2697, 3581, + 3315, 2731, 3571, + 3285, 2773, 3559, + 3241, 2825, 3539, + 3175, 2885, 3515, + 3067, 2955, 3477, + 2863, 3035, 3423, + 2235, 3123, 3339, + 0, 3219, 3195, + 0, 3323, 2879, + 0, 3431, 0, + 0, 3545, 0, + 0, 3665, 0, + 0, 3785, 0, + 0, 3909, 0, + 0, 4035, 0, + 3465, 2555, 3639, + 3465, 2555, 3639, + 3465, 2555, 3639, + 3465, 2557, 3639, + 3463, 2557, 3637, + 3463, 2559, 3637, + 3463, 2561, 3637, + 3461, 2563, 3637, + 3461, 2567, 3637, + 3459, 2571, 3635, + 3457, 2577, 3635, + 3455, 2585, 3633, + 3451, 2597, 3631, + 3445, 2609, 3629, + 3439, 2627, 3625, + 3429, 2651, 3619, + 3415, 2679, 3613, + 3397, 2715, 3605, + 3373, 2759, 3591, + 3335, 2811, 3575, + 3283, 2873, 3551, + 3199, 2945, 3517, + 3057, 3025, 3469, + 2753, 3115, 3393, + 0, 3213, 3267, + 0, 3317, 3013, + 0, 3427, 479, + 0, 3543, 0, + 0, 3661, 0, + 0, 3783, 0, + 0, 3909, 0, + 0, 4035, 0, + 3543, 2521, 3677, + 3543, 2521, 3677, + 3543, 2521, 3677, + 3543, 2523, 3675, + 3543, 2525, 3675, + 3543, 2525, 3675, + 3541, 2527, 3675, + 3541, 2531, 3675, + 3541, 2535, 3675, + 3539, 2539, 3673, + 3537, 2545, 3673, + 3535, 2555, 3671, + 3531, 2565, 3669, + 3527, 2581, 3667, + 3521, 2599, 3663, + 3513, 2623, 3659, + 3503, 2653, 3653, + 3487, 2691, 3645, + 3467, 2737, 3633, + 3439, 2793, 3619, + 3395, 2857, 3597, + 3333, 2931, 3567, + 3231, 3015, 3523, + 3047, 3107, 3455, + 2543, 3205, 3349, + 0, 3311, 3147, + 0, 3423, 2533, + 0, 3539, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 3631, 2471, 3723, + 3631, 2473, 3723, + 3631, 2473, 3723, + 3631, 2475, 3723, + 3631, 2475, 3721, + 3631, 2477, 3721, + 3631, 2479, 3721, + 3629, 2483, 3721, + 3629, 2487, 3721, + 3627, 2493, 3719, + 3627, 2499, 3719, + 3625, 2509, 3717, + 3621, 2521, 3717, + 3619, 2537, 3713, + 3613, 2559, 3711, + 3607, 2585, 3707, + 3599, 2617, 3701, + 3587, 2659, 3695, + 3569, 2707, 3685, + 3547, 2767, 3671, + 3513, 2835, 3651, + 3465, 2911, 3625, + 3393, 2999, 3585, + 3271, 3093, 3529, + 3031, 3195, 3439, + 1838, 3303, 3281, + 0, 3417, 2915, + 0, 3535, 0, + 0, 3655, 0, + 0, 3779, 0, + 0, 3905, 0, + 0, 4031, 0, + 3727, 2397, 3777, + 3727, 2397, 3777, + 3727, 2399, 3777, + 3727, 2399, 3777, + 3727, 2401, 3777, + 3727, 2403, 3777, + 3727, 2407, 3777, + 3725, 2411, 3777, + 3725, 2415, 3775, + 3725, 2421, 3775, + 3723, 2429, 3775, + 3721, 2441, 3773, + 3719, 2455, 3773, + 3717, 2475, 3771, + 3713, 2497, 3767, + 3707, 2527, 3763, + 3701, 2565, 3759, + 3691, 2611, 3753, + 3679, 2665, 3743, + 3659, 2729, 3731, + 3635, 2803, 3715, + 3599, 2885, 3691, + 3545, 2977, 3659, + 3461, 3075, 3611, + 3319, 3181, 3537, + 3009, 3293, 3415, + 0, 3409, 3173, + 0, 3527, 1904, + 0, 3651, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 3831, 2273, 3843, + 3831, 2273, 3843, + 3831, 2275, 3843, + 3831, 2277, 3843, + 3831, 2279, 3841, + 3831, 2281, 3841, + 3829, 2285, 3841, + 3829, 2289, 3841, + 3829, 2297, 3841, + 3829, 2305, 3841, + 3827, 2315, 3839, + 3827, 2329, 3839, + 3825, 2349, 3837, + 3823, 2371, 3835, + 3819, 2401, 3833, + 3815, 2437, 3831, + 3809, 2483, 3827, + 3801, 2537, 3821, + 3791, 2601, 3813, + 3777, 2673, 3803, + 3759, 2755, 3789, + 3731, 2847, 3769, + 3691, 2945, 3741, + 3633, 3051, 3701, + 3539, 3161, 3641, + 3375, 3277, 3547, + 2979, 3397, 3381, + 0, 3519, 2969, + 0, 3643, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4027, 0, + 3939, 2026, 3917, + 3939, 2027, 3917, + 3939, 2029, 3917, + 3939, 2032, 3917, + 3939, 2035, 3917, + 3939, 2040, 3917, + 3939, 2046, 3915, + 3939, 2055, 3915, + 3939, 2065, 3915, + 3937, 2079, 3915, + 3937, 2097, 3915, + 3937, 2119, 3913, + 3935, 2149, 3913, + 3933, 2185, 3911, + 3931, 2229, 3909, + 3927, 2281, 3907, + 3923, 2343, 3903, + 3917, 2415, 3899, + 3909, 2497, 3891, + 3899, 2587, 3883, + 3883, 2683, 3871, + 3863, 2789, 3855, + 3833, 2899, 3833, + 3791, 3015, 3799, + 3729, 3133, 3753, + 3627, 3255, 3681, + 3441, 3379, 3561, + 2935, 3507, 3331, + 0, 3633, 2333, + 0, 3763, 0, + 0, 3893, 0, + 0, 4023, 0, + 4055, 463, 3999, + 4055, 508, 3999, + 4053, 561, 3999, + 4053, 623, 3999, + 4053, 696, 3999, + 4053, 777, 3999, + 4053, 867, 3999, + 4053, 965, 3999, + 4053, 1070, 3999, + 4053, 1181, 3999, + 4051, 1296, 3999, + 4051, 1415, 3997, + 4051, 1537, 3997, + 4049, 1662, 3995, + 4047, 1788, 3993, + 4045, 1916, 3991, + 4041, 2045, 3989, + 4037, 2175, 3985, + 4031, 2305, 3979, + 4023, 2435, 3973, + 4011, 2567, 3963, + 3995, 2697, 3949, + 3973, 2829, 3931, + 3943, 2961, 3905, + 3899, 3093, 3867, + 3831, 3225, 3813, + 3723, 3357, 3727, + 3517, 3489, 3579, + 2867, 3621, 3253, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4089, + 4095, 0, 4089, + 4095, 0, 4089, + 4095, 0, 4087, + 4095, 0, 4085, + 4095, 0, 4083, + 4095, 947, 4079, + 4095, 1757, 4075, + 4095, 2097, 4069, + 4095, 2339, 4061, + 4095, 2539, 4051, + 4095, 2717, 4037, + 4089, 2879, 4015, + 4057, 3033, 3987, + 4011, 3181, 3945, + 3941, 3325, 3883, + 3825, 3465, 3783, + 3603, 3603, 3603, + 2759, 3739, 3123, + 0, 3875, 0, + 0, 4009, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1417, 4095, + 4095, 2167, 4095, + 4095, 2499, 4095, + 4095, 2739, 4095, + 4095, 2937, 4095, + 4095, 3115, 4077, + 4095, 3277, 4033, + 4055, 3431, 3963, + 3933, 3577, 3849, + 3697, 3721, 3631, + 2557, 3861, 2857, + 0, 3999, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1729, 4095, + 4095, 2441, 4095, + 4095, 2769, 4095, + 4095, 3007, 4095, + 4095, 3203, 4095, + 4095, 3379, 4095, + 4095, 3541, 4051, + 4047, 3695, 3923, + 3797, 3843, 3669, + 1924, 3985, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2347, 4095, + 4095, 2805, 4095, + 4095, 3085, 4095, + 4095, 3301, 4095, + 4095, 3489, 4095, + 4095, 3657, 4095, + 4095, 3815, 4009, + 3905, 3967, 3713, + 3221, 2773, 3635, + 3221, 2773, 3635, + 3221, 2773, 3635, + 3221, 2773, 3635, + 3221, 2775, 3635, + 3219, 2775, 3635, + 3219, 2777, 3635, + 3217, 2779, 3635, + 3215, 2781, 3633, + 3213, 2783, 3633, + 3209, 2787, 3631, + 3203, 2793, 3629, + 3197, 2799, 3627, + 3187, 2807, 3625, + 3175, 2819, 3621, + 3159, 2835, 3617, + 3135, 2853, 3611, + 3101, 2879, 3601, + 3051, 2909, 3589, + 2973, 2947, 3571, + 2845, 2995, 3547, + 2585, 3051, 3515, + 0, 3115, 3465, + 0, 3191, 3387, + 0, 3275, 3261, + 0, 3367, 3003, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3221, 2773, 3635, + 3221, 2773, 3635, + 3221, 2775, 3635, + 3219, 2775, 3635, + 3219, 2777, 3635, + 3217, 2777, 3635, + 3215, 2781, 3633, + 3213, 2783, 3633, + 3209, 2787, 3631, + 3203, 2791, 3631, + 3197, 2799, 3629, + 3189, 2807, 3625, + 3175, 2819, 3621, + 3159, 2835, 3617, + 3135, 2853, 3611, + 3101, 2879, 3601, + 3051, 2909, 3589, + 2975, 2947, 3571, + 2847, 2995, 3549, + 2587, 3051, 3515, + 0, 3115, 3465, + 0, 3191, 3389, + 0, 3275, 3261, + 0, 3367, 3003, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3221, 2773, 3635, + 3221, 2775, 3635, + 3221, 2775, 3635, + 3219, 2777, 3635, + 3217, 2777, 3635, + 3215, 2781, 3633, + 3213, 2783, 3633, + 3209, 2787, 3631, + 3205, 2791, 3631, + 3197, 2799, 3629, + 3189, 2807, 3625, + 3177, 2819, 3621, + 3159, 2835, 3617, + 3135, 2853, 3611, + 3101, 2879, 3601, + 3051, 2909, 3589, + 2975, 2947, 3573, + 2847, 2995, 3549, + 2587, 3051, 3515, + 0, 3115, 3465, + 0, 3191, 3389, + 0, 3275, 3261, + 0, 3367, 3003, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3221, 2775, 3635, + 3221, 2775, 3635, + 3219, 2777, 3635, + 3219, 2777, 3635, + 3217, 2781, 3633, + 3213, 2783, 3633, + 3209, 2787, 3631, + 3205, 2791, 3631, + 3199, 2799, 3629, + 3189, 2807, 3625, + 3177, 2819, 3623, + 3161, 2835, 3617, + 3137, 2853, 3611, + 3103, 2879, 3601, + 3053, 2909, 3589, + 2977, 2947, 3573, + 2849, 2995, 3549, + 2591, 3051, 3515, + 0, 3115, 3465, + 0, 3191, 3389, + 0, 3275, 3261, + 0, 3367, 3005, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3225, 2773, 3637, + 3223, 2773, 3637, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3221, 2775, 3635, + 3221, 2777, 3635, + 3219, 2777, 3635, + 3217, 2779, 3633, + 3215, 2783, 3633, + 3211, 2787, 3633, + 3205, 2791, 3631, + 3199, 2799, 3629, + 3191, 2807, 3625, + 3177, 2819, 3623, + 3161, 2833, 3617, + 3137, 2853, 3611, + 3103, 2877, 3601, + 3053, 2909, 3589, + 2977, 2947, 3573, + 2851, 2995, 3549, + 2593, 3051, 3515, + 0, 3115, 3465, + 0, 3191, 3389, + 0, 3275, 3261, + 0, 3367, 3005, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3225, 2771, 3637, + 3225, 2773, 3637, + 3225, 2773, 3637, + 3225, 2773, 3637, + 3223, 2773, 3635, + 3223, 2775, 3635, + 3221, 2775, 3635, + 3221, 2777, 3635, + 3219, 2779, 3635, + 3215, 2783, 3633, + 3211, 2787, 3633, + 3207, 2791, 3631, + 3201, 2799, 3629, + 3191, 2807, 3627, + 3179, 2819, 3623, + 3163, 2833, 3617, + 3139, 2853, 3611, + 3105, 2877, 3603, + 3055, 2909, 3589, + 2979, 2947, 3573, + 2853, 2995, 3549, + 2597, 3049, 3515, + 0, 3115, 3465, + 0, 3191, 3389, + 0, 3275, 3263, + 0, 3367, 3007, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3227, 2771, 3637, + 3227, 2773, 3637, + 3225, 2773, 3637, + 3225, 2773, 3637, + 3225, 2773, 3637, + 3225, 2775, 3637, + 3223, 2775, 3635, + 3221, 2777, 3635, + 3219, 2779, 3635, + 3217, 2783, 3633, + 3213, 2787, 3633, + 3209, 2791, 3631, + 3201, 2799, 3629, + 3193, 2807, 3627, + 3181, 2819, 3623, + 3163, 2833, 3619, + 3141, 2853, 3611, + 3107, 2877, 3603, + 3057, 2909, 3591, + 2981, 2947, 3573, + 2855, 2993, 3549, + 2603, 3049, 3515, + 240, 3115, 3467, + 0, 3191, 3391, + 0, 3275, 3263, + 0, 3367, 3007, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3229, 2771, 3637, + 3229, 2771, 3637, + 3227, 2773, 3637, + 3227, 2773, 3637, + 3227, 2773, 3637, + 3225, 2775, 3637, + 3225, 2775, 3637, + 3223, 2777, 3635, + 3221, 2779, 3635, + 3219, 2783, 3635, + 3215, 2787, 3633, + 3211, 2791, 3631, + 3203, 2797, 3629, + 3195, 2807, 3627, + 3183, 2819, 3623, + 3165, 2833, 3619, + 3143, 2853, 3611, + 3109, 2877, 3603, + 3059, 2909, 3591, + 2985, 2947, 3573, + 2861, 2993, 3551, + 2611, 3049, 3517, + 861, 3115, 3467, + 0, 3191, 3391, + 0, 3275, 3265, + 0, 3367, 3009, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3231, 2771, 3639, + 3231, 2771, 3637, + 3231, 2771, 3637, + 3229, 2773, 3637, + 3229, 2773, 3637, + 3229, 2773, 3637, + 3227, 2775, 3637, + 3225, 2777, 3637, + 3223, 2779, 3635, + 3221, 2781, 3635, + 3217, 2785, 3633, + 3213, 2791, 3633, + 3207, 2797, 3631, + 3197, 2807, 3627, + 3185, 2819, 3625, + 3169, 2833, 3619, + 3145, 2853, 3613, + 3113, 2877, 3603, + 3063, 2909, 3591, + 2989, 2947, 3575, + 2865, 2993, 3551, + 2619, 3049, 3517, + 1175, 3115, 3467, + 0, 3189, 3393, + 0, 3275, 3267, + 0, 3367, 3013, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3235, 2771, 3639, + 3233, 2771, 3639, + 3233, 2771, 3639, + 3233, 2771, 3639, + 3233, 2773, 3639, + 3231, 2773, 3639, + 3231, 2775, 3637, + 3229, 2777, 3637, + 3227, 2779, 3637, + 3225, 2781, 3635, + 3221, 2785, 3635, + 3217, 2791, 3633, + 3209, 2797, 3631, + 3201, 2807, 3629, + 3189, 2817, 3625, + 3173, 2833, 3621, + 3149, 2853, 3613, + 3117, 2877, 3605, + 3069, 2907, 3593, + 2995, 2947, 3575, + 2873, 2993, 3553, + 2633, 3049, 3519, + 1408, 3115, 3469, + 0, 3189, 3393, + 0, 3273, 3269, + 0, 3367, 3015, + 0, 3467, 831, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3239, 2771, 3641, + 3239, 2771, 3641, + 3237, 2771, 3639, + 3237, 2771, 3639, + 3237, 2771, 3639, + 3237, 2773, 3639, + 3235, 2775, 3639, + 3233, 2775, 3639, + 3231, 2777, 3637, + 3229, 2781, 3637, + 3225, 2785, 3637, + 3221, 2789, 3635, + 3215, 2797, 3633, + 3205, 2805, 3629, + 3193, 2817, 3627, + 3177, 2833, 3621, + 3155, 2851, 3615, + 3123, 2877, 3607, + 3075, 2907, 3593, + 3001, 2947, 3577, + 2883, 2993, 3553, + 2649, 3049, 3519, + 1603, 3115, 3471, + 0, 3189, 3395, + 0, 3273, 3271, + 0, 3367, 3021, + 0, 3467, 1205, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3245, 2769, 3641, + 3245, 2769, 3641, + 3243, 2769, 3641, + 3243, 2771, 3641, + 3243, 2771, 3641, + 3241, 2773, 3641, + 3241, 2773, 3641, + 3239, 2775, 3641, + 3237, 2777, 3639, + 3235, 2781, 3639, + 3231, 2783, 3637, + 3227, 2789, 3637, + 3221, 2795, 3635, + 3211, 2805, 3631, + 3201, 2817, 3627, + 3185, 2831, 3623, + 3161, 2851, 3617, + 3129, 2875, 3607, + 3083, 2907, 3595, + 3011, 2945, 3579, + 2895, 2993, 3555, + 2669, 3049, 3523, + 1777, 3115, 3473, + 0, 3189, 3399, + 0, 3273, 3275, + 0, 3367, 3027, + 0, 3467, 1459, + 0, 3573, 0, + 0, 3685, 0, + 0, 3801, 0, + 0, 3923, 0, + 0, 4045, 0, + 3251, 2769, 3643, + 3251, 2769, 3643, + 3251, 2769, 3643, + 3251, 2769, 3643, + 3251, 2771, 3643, + 3249, 2771, 3643, + 3249, 2773, 3643, + 3247, 2773, 3643, + 3245, 2777, 3641, + 3243, 2779, 3641, + 3239, 2783, 3639, + 3235, 2789, 3639, + 3229, 2795, 3637, + 3221, 2803, 3633, + 3209, 2815, 3631, + 3193, 2831, 3625, + 3171, 2851, 3619, + 3139, 2875, 3611, + 3093, 2907, 3597, + 3025, 2945, 3581, + 2911, 2991, 3557, + 2695, 3047, 3525, + 1938, 3113, 3477, + 0, 3189, 3403, + 0, 3273, 3279, + 0, 3365, 3035, + 0, 3467, 1665, + 0, 3573, 0, + 0, 3685, 0, + 0, 3801, 0, + 0, 3923, 0, + 0, 4045, 0, + 3261, 2767, 3647, + 3261, 2767, 3647, + 3261, 2767, 3647, + 3261, 2767, 3647, + 3261, 2769, 3647, + 3259, 2769, 3645, + 3259, 2771, 3645, + 3257, 2773, 3645, + 3255, 2775, 3645, + 3253, 2777, 3643, + 3249, 2781, 3643, + 3245, 2787, 3641, + 3239, 2793, 3639, + 3231, 2803, 3637, + 3219, 2815, 3633, + 3205, 2829, 3629, + 3183, 2849, 3621, + 3151, 2873, 3613, + 3107, 2905, 3601, + 3041, 2943, 3585, + 2933, 2991, 3561, + 2729, 3047, 3529, + 2091, 3113, 3481, + 0, 3189, 3407, + 0, 3273, 3285, + 0, 3365, 3045, + 0, 3465, 1846, + 0, 3573, 0, + 0, 3685, 0, + 0, 3801, 0, + 0, 3921, 0, + 0, 4045, 0, + 3275, 2765, 3651, + 3275, 2765, 3651, + 3275, 2765, 3651, + 3273, 2765, 3651, + 3273, 2767, 3649, + 3273, 2767, 3649, + 3271, 2769, 3649, + 3271, 2771, 3649, + 3269, 2773, 3649, + 3267, 2775, 3647, + 3263, 2779, 3647, + 3259, 2785, 3645, + 3253, 2791, 3643, + 3245, 2801, 3641, + 3233, 2813, 3637, + 3219, 2827, 3633, + 3197, 2847, 3625, + 3169, 2873, 3617, + 3125, 2903, 3605, + 3061, 2943, 3589, + 2959, 2989, 3565, + 2769, 3047, 3533, + 2237, 3111, 3485, + 0, 3187, 3413, + 0, 3271, 3293, + 0, 3365, 3059, + 0, 3465, 2011, + 0, 3573, 0, + 0, 3685, 0, + 0, 3801, 0, + 0, 3921, 0, + 0, 4045, 0, + 3291, 2763, 3655, + 3291, 2763, 3655, + 3291, 2763, 3655, + 3291, 2763, 3655, + 3291, 2763, 3655, + 3289, 2765, 3655, + 3289, 2767, 3655, + 3287, 2767, 3653, + 3285, 2771, 3653, + 3283, 2773, 3653, + 3281, 2777, 3651, + 3275, 2783, 3651, + 3271, 2789, 3649, + 3263, 2799, 3645, + 3253, 2809, 3643, + 3237, 2825, 3637, + 3217, 2845, 3631, + 3189, 2871, 3623, + 3149, 2901, 3611, + 3089, 2941, 3595, + 2991, 2989, 3571, + 2819, 3045, 3539, + 2381, 3111, 3493, + 0, 3187, 3421, + 0, 3271, 3305, + 0, 3365, 3077, + 0, 3465, 2167, + 0, 3571, 0, + 0, 3685, 0, + 0, 3801, 0, + 0, 3921, 0, + 0, 4045, 0, + 3313, 2759, 3663, + 3313, 2759, 3661, + 3313, 2759, 3661, + 3313, 2759, 3661, + 3311, 2761, 3661, + 3311, 2761, 3661, + 3311, 2763, 3661, + 3309, 2765, 3661, + 3307, 2767, 3659, + 3305, 2769, 3659, + 3303, 2773, 3659, + 3299, 2779, 3657, + 3293, 2785, 3655, + 3285, 2795, 3653, + 3275, 2807, 3649, + 3261, 2823, 3645, + 3243, 2841, 3639, + 3217, 2867, 3629, + 3179, 2899, 3619, + 3121, 2939, 3603, + 3033, 2985, 3579, + 2877, 3043, 3549, + 2521, 3109, 3503, + 0, 3185, 3433, + 0, 3269, 3319, + 0, 3363, 3101, + 0, 3465, 2315, + 0, 3571, 0, + 0, 3683, 0, + 0, 3801, 0, + 0, 3921, 0, + 0, 4045, 0, + 3341, 2753, 3671, + 3341, 2753, 3671, + 3341, 2755, 3671, + 3339, 2755, 3671, + 3339, 2755, 3671, + 3339, 2757, 3671, + 3337, 2757, 3669, + 3337, 2759, 3669, + 3335, 2761, 3669, + 3333, 2765, 3667, + 3331, 2769, 3667, + 3327, 2775, 3665, + 3321, 2781, 3663, + 3315, 2791, 3661, + 3305, 2803, 3657, + 3293, 2817, 3653, + 3275, 2837, 3647, + 3249, 2863, 3639, + 3215, 2895, 3627, + 3163, 2935, 3613, + 3081, 2983, 3591, + 2945, 3041, 3559, + 2659, 3107, 3515, + 0, 3183, 3447, + 0, 3269, 3337, + 0, 3363, 3131, + 0, 3463, 2459, + 0, 3571, 0, + 0, 3683, 0, + 0, 3801, 0, + 0, 3921, 0, + 0, 4045, 0, + 3375, 2747, 3683, + 3375, 2747, 3683, + 3375, 2747, 3681, + 3373, 2749, 3681, + 3373, 2749, 3681, + 3373, 2751, 3681, + 3373, 2751, 3681, + 3371, 2753, 3681, + 3369, 2755, 3681, + 3367, 2759, 3679, + 3365, 2763, 3679, + 3361, 2767, 3677, + 3357, 2775, 3675, + 3351, 2785, 3673, + 3341, 2797, 3669, + 3331, 2813, 3665, + 3313, 2833, 3659, + 3291, 2859, 3651, + 3259, 2891, 3641, + 3213, 2931, 3625, + 3141, 2979, 3603, + 3023, 3037, 3573, + 2795, 3103, 3531, + 1857, 3181, 3465, + 0, 3267, 3361, + 0, 3361, 3167, + 0, 3461, 2601, + 0, 3569, 0, + 0, 3683, 0, + 0, 3799, 0, + 0, 3921, 0, + 0, 4043, 0, + 3417, 2739, 3697, + 3417, 2739, 3697, + 3417, 2739, 3697, + 3415, 2739, 3697, + 3415, 2741, 3697, + 3415, 2741, 3697, + 3415, 2743, 3695, + 3413, 2745, 3695, + 3413, 2747, 3695, + 3411, 2749, 3695, + 3407, 2753, 3693, + 3405, 2759, 3691, + 3401, 2767, 3691, + 3395, 2777, 3687, + 3387, 2789, 3685, + 3377, 2805, 3681, + 3361, 2825, 3675, + 3341, 2851, 3667, + 3313, 2885, 3657, + 3271, 2925, 3641, + 3209, 2973, 3621, + 3109, 3033, 3593, + 2929, 3099, 3551, + 2455, 3177, 3489, + 0, 3263, 3389, + 0, 3359, 3211, + 0, 3459, 2739, + 0, 3569, 0, + 0, 3681, 0, + 0, 3799, 0, + 0, 3919, 0, + 0, 4043, 0, + 3467, 2727, 3715, + 3467, 2727, 3715, + 3467, 2727, 3715, + 3467, 2727, 3715, + 3467, 2729, 3715, + 3465, 2729, 3715, + 3465, 2731, 3715, + 3465, 2733, 3715, + 3463, 2735, 3713, + 3461, 2737, 3713, + 3459, 2743, 3713, + 3457, 2747, 3711, + 3453, 2755, 3709, + 3447, 2765, 3707, + 3441, 2777, 3705, + 3431, 2795, 3701, + 3419, 2815, 3695, + 3401, 2841, 3687, + 3375, 2875, 3677, + 3339, 2917, 3663, + 3287, 2967, 3643, + 3205, 3025, 3617, + 3065, 3095, 3577, + 2765, 3173, 3519, + 0, 3259, 3427, + 0, 3355, 3265, + 0, 3457, 2875, + 0, 3567, 0, + 0, 3679, 0, + 0, 3797, 0, + 0, 3919, 0, + 0, 4043, 0, + 3527, 2709, 3741, + 3527, 2709, 3741, + 3527, 2711, 3739, + 3527, 2711, 3739, + 3527, 2711, 3739, + 3527, 2713, 3739, + 3525, 2713, 3739, + 3525, 2715, 3739, + 3523, 2719, 3739, + 3523, 2721, 3737, + 3521, 2727, 3737, + 3519, 2731, 3735, + 3515, 2739, 3735, + 3511, 2749, 3731, + 3505, 2763, 3729, + 3497, 2779, 3725, + 3485, 2801, 3719, + 3469, 2829, 3713, + 3447, 2863, 3703, + 3417, 2905, 3691, + 3373, 2957, 3671, + 3307, 3017, 3647, + 3199, 3087, 3609, + 2997, 3167, 3555, + 2367, 3255, 3471, + 0, 3351, 3327, + 0, 3455, 3011, + 0, 3563, 0, + 0, 3677, 0, + 0, 3797, 0, + 0, 3917, 0, + 0, 4041, 0, + 3597, 2685, 3771, + 3597, 2687, 3771, + 3597, 2687, 3771, + 3597, 2687, 3771, + 3597, 2689, 3771, + 3595, 2689, 3771, + 3595, 2691, 3769, + 3595, 2693, 3769, + 3593, 2695, 3769, + 3593, 2699, 3769, + 3591, 2703, 3767, + 3589, 2709, 3767, + 3587, 2717, 3765, + 3583, 2729, 3763, + 3577, 2741, 3761, + 3571, 2759, 3757, + 3561, 2783, 3751, + 3547, 2811, 3745, + 3529, 2847, 3737, + 3505, 2891, 3725, + 3469, 2943, 3707, + 3415, 3005, 3683, + 3331, 3077, 3649, + 3191, 3157, 3601, + 2885, 3247, 3525, + 0, 3345, 3399, + 0, 3449, 3145, + 0, 3559, 611, + 0, 3675, 0, + 0, 3795, 0, + 0, 3917, 0, + 0, 4041, 0, + 3675, 2653, 3809, + 3675, 2653, 3809, + 3675, 2653, 3809, + 3675, 2655, 3809, + 3675, 2655, 3809, + 3675, 2657, 3807, + 3675, 2657, 3807, + 3675, 2659, 3807, + 3673, 2663, 3807, + 3673, 2667, 3807, + 3671, 2671, 3805, + 3669, 2677, 3805, + 3667, 2687, 3803, + 3663, 2697, 3801, + 3659, 2713, 3799, + 3653, 2731, 3795, + 3645, 2755, 3791, + 3635, 2785, 3785, + 3621, 2823, 3777, + 3599, 2869, 3765, + 3571, 2925, 3751, + 3529, 2989, 3729, + 3465, 3063, 3699, + 3363, 3147, 3655, + 3179, 3239, 3589, + 2675, 3337, 3481, + 0, 3443, 3281, + 0, 3555, 2665, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3763, 2603, 3855, + 3763, 2605, 3855, + 3763, 2605, 3855, + 3763, 2605, 3855, + 3763, 2607, 3855, + 3763, 2607, 3855, + 3763, 2609, 3853, + 3763, 2611, 3853, + 3761, 2615, 3853, + 3761, 2619, 3853, + 3759, 2625, 3853, + 3759, 2631, 3851, + 3757, 2641, 3849, + 3753, 2653, 3849, + 3751, 2671, 3847, + 3745, 2691, 3843, + 3739, 2717, 3839, + 3731, 2751, 3833, + 3719, 2791, 3827, + 3701, 2839, 3817, + 3679, 2899, 3803, + 3645, 2967, 3783, + 3597, 3043, 3757, + 3525, 3131, 3719, + 3403, 3225, 3661, + 3163, 3327, 3571, + 1971, 3435, 3413, + 0, 3549, 3047, + 0, 3667, 0, + 0, 3787, 0, + 0, 3911, 0, + 0, 4037, 0, + 3859, 2529, 3909, + 3859, 2529, 3909, + 3859, 2531, 3909, + 3859, 2531, 3909, + 3859, 2533, 3909, + 3859, 2533, 3909, + 3859, 2535, 3909, + 3859, 2539, 3909, + 3859, 2543, 3909, + 3857, 2547, 3909, + 3857, 2553, 3907, + 3855, 2561, 3907, + 3853, 2573, 3905, + 3851, 2587, 3905, + 3849, 2607, 3903, + 3845, 2629, 3899, + 3839, 2659, 3897, + 3833, 2697, 3891, + 3823, 2743, 3885, + 3811, 2797, 3875, + 3793, 2861, 3863, + 3767, 2935, 3847, + 3731, 3017, 3825, + 3677, 3109, 3791, + 3593, 3207, 3743, + 3451, 3313, 3669, + 3141, 3425, 3547, + 0, 3541, 3305, + 0, 3659, 2036, + 0, 3783, 0, + 0, 3907, 0, + 0, 4033, 0, + 3963, 2405, 3975, + 3963, 2405, 3975, + 3963, 2407, 3975, + 3963, 2407, 3975, + 3963, 2409, 3975, + 3963, 2411, 3975, + 3963, 2413, 3973, + 3961, 2417, 3973, + 3961, 2423, 3973, + 3961, 2429, 3973, + 3961, 2437, 3973, + 3959, 2447, 3971, + 3959, 2461, 3971, + 3957, 2481, 3969, + 3955, 2503, 3967, + 3951, 2533, 3965, + 3947, 2571, 3963, + 3941, 2615, 3959, + 3935, 2669, 3953, + 3923, 2733, 3945, + 3909, 2805, 3935, + 3891, 2887, 3921, + 3863, 2979, 3901, + 3823, 3077, 3873, + 3765, 3183, 3833, + 3671, 3293, 3773, + 3507, 3409, 3679, + 3111, 3529, 3513, + 0, 3651, 3101, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 4073, 2157, 4049, + 4073, 2157, 4049, + 4071, 2159, 4049, + 4071, 2161, 4049, + 4071, 2163, 4049, + 4071, 2167, 4049, + 4071, 2173, 4049, + 4071, 2179, 4049, + 4071, 2187, 4047, + 4071, 2197, 4047, + 4071, 2211, 4047, + 4069, 2229, 4047, + 4069, 2251, 4045, + 4067, 2281, 4045, + 4065, 2317, 4043, + 4063, 2361, 4041, + 4059, 2413, 4039, + 4055, 2475, 4035, + 4049, 2547, 4031, + 4041, 2629, 4025, + 4031, 2719, 4015, + 4015, 2815, 4003, + 3995, 2921, 3987, + 3967, 3031, 3965, + 3923, 3147, 3931, + 3861, 3265, 3885, + 3759, 3387, 3813, + 3573, 3511, 3693, + 3067, 3639, 3463, + 0, 3765, 2465, + 0, 3895, 0, + 0, 4025, 0, + 4095, 559, 4095, + 4095, 596, 4095, + 4095, 640, 4095, + 4095, 693, 4095, + 4095, 756, 4095, + 4095, 828, 4095, + 4095, 909, 4095, + 4095, 999, 4095, + 4095, 1097, 4095, + 4095, 1202, 4095, + 4095, 1313, 4095, + 4095, 1428, 4095, + 4095, 1547, 4095, + 4095, 1669, 4095, + 4095, 1794, 4095, + 4095, 1920, 4095, + 4095, 2049, 4095, + 4095, 2177, 4095, + 4095, 2307, 4095, + 4095, 2437, 4095, + 4095, 2567, 4095, + 4095, 2699, 4095, + 4095, 2831, 4081, + 4095, 2961, 4063, + 4075, 3093, 4037, + 4031, 3225, 4001, + 3963, 3357, 3945, + 3855, 3489, 3859, + 3649, 3621, 3711, + 3001, 3753, 3385, + 0, 3885, 0, + 0, 4017, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1079, 4095, + 4095, 1889, 4095, + 4095, 2229, 4095, + 4095, 2471, 4095, + 4095, 2671, 4095, + 4095, 2849, 4095, + 4095, 3011, 4095, + 4095, 3165, 4095, + 4095, 3313, 4077, + 4073, 3457, 4015, + 3957, 3597, 3915, + 3735, 3735, 3735, + 2891, 3871, 3255, + 0, 4007, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1549, 4095, + 4095, 2299, 4095, + 4095, 2631, 4095, + 4095, 2871, 4095, + 4095, 3069, 4095, + 4095, 3247, 4095, + 4095, 3409, 4095, + 4095, 3563, 4095, + 4067, 3709, 3981, + 3829, 3853, 3765, + 2689, 3993, 2989, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1862, 4095, + 4095, 2573, 4095, + 4095, 2901, 4095, + 4095, 3139, 4095, + 4095, 3337, 4095, + 4095, 3511, 4095, + 4095, 3673, 4095, + 4095, 3827, 4057, + 3929, 3975, 3801, + 3355, 2905, 3767, + 3353, 2905, 3767, + 3353, 2905, 3767, + 3353, 2905, 3767, + 3353, 2905, 3767, + 3353, 2907, 3767, + 3351, 2907, 3767, + 3351, 2909, 3767, + 3349, 2911, 3767, + 3347, 2913, 3765, + 3345, 2915, 3765, + 3341, 2919, 3763, + 3335, 2925, 3763, + 3329, 2931, 3761, + 3319, 2939, 3757, + 3307, 2951, 3753, + 3291, 2967, 3749, + 3267, 2985, 3743, + 3233, 3011, 3733, + 3183, 3041, 3721, + 3105, 3079, 3703, + 2977, 3127, 3681, + 2715, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3393, + 0, 3499, 3135, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3353, 2905, 3767, + 3353, 2905, 3767, + 3353, 2905, 3767, + 3353, 2907, 3767, + 3351, 2907, 3767, + 3351, 2909, 3767, + 3349, 2911, 3767, + 3347, 2913, 3765, + 3345, 2915, 3765, + 3341, 2919, 3763, + 3335, 2925, 3763, + 3329, 2931, 3761, + 3321, 2939, 3757, + 3307, 2951, 3753, + 3291, 2967, 3749, + 3267, 2985, 3743, + 3233, 3011, 3733, + 3183, 3041, 3721, + 3105, 3079, 3703, + 2977, 3127, 3681, + 2717, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3393, + 0, 3499, 3135, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3353, 2905, 3767, + 3353, 2905, 3767, + 3353, 2907, 3767, + 3351, 2907, 3767, + 3351, 2909, 3767, + 3349, 2911, 3767, + 3347, 2913, 3765, + 3345, 2915, 3765, + 3341, 2919, 3763, + 3337, 2925, 3763, + 3329, 2931, 3761, + 3321, 2939, 3757, + 3309, 2951, 3753, + 3291, 2967, 3749, + 3267, 2985, 3743, + 3233, 3011, 3733, + 3183, 3041, 3721, + 3107, 3079, 3705, + 2979, 3127, 3681, + 2719, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3393, + 0, 3499, 3135, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3353, 2905, 3767, + 3353, 2907, 3767, + 3353, 2907, 3767, + 3351, 2909, 3767, + 3349, 2911, 3767, + 3347, 2913, 3765, + 3345, 2915, 3765, + 3341, 2919, 3763, + 3337, 2925, 3763, + 3329, 2931, 3761, + 3321, 2939, 3757, + 3309, 2951, 3753, + 3291, 2967, 3749, + 3267, 2985, 3743, + 3233, 3011, 3733, + 3183, 3041, 3721, + 3107, 3079, 3705, + 2979, 3127, 3681, + 2721, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3393, + 0, 3499, 3135, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3355, 2905, 3769, + 3355, 2905, 3769, + 3355, 2905, 3769, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3353, 2907, 3767, + 3353, 2907, 3767, + 3351, 2909, 3767, + 3351, 2909, 3767, + 3349, 2913, 3765, + 3345, 2915, 3765, + 3343, 2919, 3763, + 3337, 2923, 3763, + 3331, 2931, 3761, + 3321, 2939, 3757, + 3309, 2951, 3755, + 3293, 2967, 3749, + 3269, 2985, 3743, + 3235, 3011, 3733, + 3185, 3041, 3721, + 3109, 3079, 3705, + 2981, 3127, 3681, + 2723, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3393, + 0, 3499, 3137, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3357, 2903, 3769, + 3357, 2905, 3769, + 3355, 2905, 3769, + 3355, 2905, 3769, + 3355, 2905, 3767, + 3355, 2907, 3767, + 3353, 2907, 3767, + 3353, 2909, 3767, + 3351, 2909, 3767, + 3349, 2913, 3767, + 3347, 2915, 3765, + 3343, 2919, 3765, + 3337, 2923, 3763, + 3331, 2931, 3761, + 3323, 2939, 3757, + 3311, 2951, 3755, + 3293, 2967, 3749, + 3269, 2985, 3743, + 3235, 3011, 3733, + 3185, 3041, 3721, + 3109, 3079, 3705, + 2983, 3127, 3681, + 2725, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3393, + 0, 3499, 3137, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3357, 2903, 3769, + 3357, 2905, 3769, + 3357, 2905, 3769, + 3357, 2905, 3769, + 3357, 2905, 3769, + 3355, 2905, 3769, + 3355, 2907, 3767, + 3353, 2909, 3767, + 3353, 2909, 3767, + 3351, 2911, 3767, + 3347, 2915, 3765, + 3343, 2919, 3765, + 3339, 2923, 3763, + 3333, 2931, 3761, + 3323, 2939, 3759, + 3311, 2951, 3755, + 3295, 2965, 3749, + 3271, 2985, 3743, + 3237, 3009, 3735, + 3187, 3041, 3721, + 3111, 3079, 3705, + 2985, 3127, 3681, + 2729, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3395, + 0, 3499, 3139, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3359, 2903, 3769, + 3359, 2903, 3769, + 3359, 2905, 3769, + 3359, 2905, 3769, + 3357, 2905, 3769, + 3357, 2905, 3769, + 3357, 2907, 3769, + 3355, 2907, 3767, + 3353, 2909, 3767, + 3351, 2911, 3767, + 3349, 2915, 3765, + 3345, 2919, 3765, + 3341, 2923, 3763, + 3333, 2931, 3761, + 3325, 2939, 3759, + 3313, 2951, 3755, + 3295, 2965, 3751, + 3273, 2985, 3743, + 3239, 3009, 3735, + 3189, 3041, 3723, + 3113, 3079, 3705, + 2987, 3127, 3681, + 2735, 3181, 3647, + 372, 3247, 3599, + 0, 3323, 3523, + 0, 3407, 3395, + 0, 3499, 3139, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3361, 2903, 3769, + 3361, 2903, 3769, + 3361, 2903, 3769, + 3359, 2905, 3769, + 3359, 2905, 3769, + 3359, 2905, 3769, + 3359, 2907, 3769, + 3357, 2907, 3769, + 3355, 2909, 3767, + 3353, 2911, 3767, + 3351, 2915, 3767, + 3347, 2919, 3765, + 3343, 2923, 3763, + 3335, 2931, 3761, + 3327, 2939, 3759, + 3315, 2951, 3755, + 3297, 2965, 3751, + 3275, 2985, 3745, + 3241, 3009, 3735, + 3193, 3041, 3723, + 3117, 3079, 3705, + 2993, 3125, 3683, + 2743, 3181, 3649, + 994, 3247, 3599, + 0, 3323, 3523, + 0, 3407, 3397, + 0, 3499, 3141, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3363, 2903, 3771, + 3363, 2903, 3771, + 3363, 2903, 3771, + 3363, 2903, 3769, + 3361, 2905, 3769, + 3361, 2905, 3769, + 3361, 2907, 3769, + 3359, 2907, 3769, + 3357, 2909, 3769, + 3357, 2911, 3767, + 3353, 2915, 3767, + 3349, 2917, 3767, + 3345, 2923, 3765, + 3339, 2929, 3763, + 3329, 2939, 3759, + 3317, 2951, 3757, + 3301, 2965, 3751, + 3277, 2985, 3745, + 3245, 3009, 3735, + 3195, 3041, 3723, + 3121, 3079, 3707, + 2997, 3125, 3683, + 2753, 3181, 3649, + 1308, 3247, 3599, + 0, 3323, 3525, + 0, 3407, 3399, + 0, 3499, 3145, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3367, 2903, 3771, + 3367, 2903, 3771, + 3367, 2903, 3771, + 3365, 2903, 3771, + 3365, 2903, 3771, + 3365, 2905, 3771, + 3363, 2905, 3771, + 3363, 2907, 3769, + 3361, 2909, 3769, + 3359, 2911, 3769, + 3357, 2913, 3769, + 3353, 2917, 3767, + 3349, 2923, 3765, + 3341, 2929, 3763, + 3333, 2939, 3761, + 3321, 2949, 3757, + 3305, 2965, 3753, + 3281, 2985, 3745, + 3249, 3009, 3737, + 3201, 3041, 3725, + 3127, 3079, 3707, + 3005, 3125, 3685, + 2765, 3181, 3651, + 1540, 3247, 3601, + 0, 3321, 3525, + 0, 3407, 3401, + 0, 3499, 3147, + 0, 3599, 963, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3371, 2901, 3773, + 3371, 2903, 3773, + 3371, 2903, 3773, + 3371, 2903, 3773, + 3369, 2903, 3771, + 3369, 2905, 3771, + 3369, 2905, 3771, + 3367, 2907, 3771, + 3365, 2907, 3771, + 3363, 2911, 3771, + 3361, 2913, 3769, + 3357, 2917, 3769, + 3353, 2921, 3767, + 3347, 2929, 3765, + 3337, 2937, 3763, + 3325, 2949, 3759, + 3309, 2965, 3753, + 3287, 2983, 3747, + 3255, 3009, 3739, + 3207, 3039, 3725, + 3135, 3079, 3709, + 3015, 3125, 3685, + 2781, 3181, 3653, + 1735, 3247, 3603, + 0, 3321, 3527, + 0, 3405, 3403, + 0, 3499, 3153, + 0, 3599, 1337, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3377, 2901, 3773, + 3377, 2901, 3773, + 3377, 2901, 3773, + 3375, 2903, 3773, + 3375, 2903, 3773, + 3375, 2903, 3773, + 3375, 2905, 3773, + 3373, 2905, 3773, + 3371, 2907, 3773, + 3369, 2909, 3771, + 3367, 2913, 3771, + 3363, 2917, 3769, + 3359, 2921, 3769, + 3353, 2927, 3767, + 3345, 2937, 3763, + 3333, 2949, 3761, + 3317, 2963, 3755, + 3293, 2983, 3749, + 3261, 3007, 3739, + 3215, 3039, 3727, + 3143, 3077, 3711, + 3027, 3125, 3687, + 2801, 3181, 3655, + 1909, 3247, 3605, + 0, 3321, 3531, + 0, 3405, 3407, + 0, 3499, 3159, + 0, 3599, 1591, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3385, 2901, 3777, + 3385, 2901, 3775, + 3383, 2901, 3775, + 3383, 2901, 3775, + 3383, 2901, 3775, + 3383, 2903, 3775, + 3381, 2903, 3775, + 3381, 2905, 3775, + 3379, 2905, 3775, + 3377, 2909, 3773, + 3375, 2911, 3773, + 3371, 2915, 3771, + 3367, 2921, 3771, + 3361, 2927, 3769, + 3353, 2935, 3765, + 3341, 2947, 3763, + 3325, 2963, 3757, + 3303, 2983, 3751, + 3271, 3007, 3743, + 3225, 3039, 3731, + 3157, 3077, 3713, + 3043, 3123, 3691, + 2827, 3181, 3657, + 2071, 3245, 3609, + 0, 3321, 3535, + 0, 3405, 3411, + 0, 3499, 3167, + 0, 3599, 1797, + 0, 3705, 0, + 0, 3817, 0, + 0, 3933, 0, + 0, 4055, 0, + 3395, 2899, 3779, + 3393, 2899, 3779, + 3393, 2899, 3779, + 3393, 2899, 3779, + 3393, 2901, 3779, + 3393, 2901, 3779, + 3391, 2901, 3779, + 3391, 2903, 3777, + 3389, 2905, 3777, + 3387, 2907, 3777, + 3385, 2909, 3775, + 3381, 2913, 3775, + 3377, 2919, 3773, + 3371, 2925, 3771, + 3363, 2935, 3769, + 3351, 2947, 3765, + 3337, 2961, 3761, + 3315, 2981, 3755, + 3285, 3005, 3745, + 3239, 3037, 3733, + 3173, 3075, 3717, + 3065, 3123, 3693, + 2861, 3179, 3661, + 2223, 3245, 3613, + 0, 3321, 3539, + 0, 3405, 3417, + 0, 3497, 3177, + 0, 3599, 1978, + 0, 3705, 0, + 0, 3817, 0, + 0, 3933, 0, + 0, 4055, 0, + 3407, 2897, 3783, + 3407, 2897, 3783, + 3407, 2897, 3783, + 3407, 2897, 3783, + 3407, 2899, 3783, + 3405, 2899, 3783, + 3405, 2899, 3781, + 3403, 2901, 3781, + 3403, 2903, 3781, + 3401, 2905, 3781, + 3399, 2907, 3779, + 3395, 2911, 3779, + 3391, 2917, 3777, + 3385, 2923, 3775, + 3377, 2933, 3773, + 3365, 2945, 3769, + 3351, 2959, 3765, + 3331, 2979, 3757, + 3301, 3005, 3749, + 3257, 3035, 3737, + 3193, 3075, 3721, + 3091, 3121, 3699, + 2901, 3179, 3665, + 2369, 3245, 3617, + 0, 3319, 3545, + 0, 3405, 3425, + 0, 3497, 3191, + 0, 3597, 2143, + 0, 3705, 0, + 0, 3817, 0, + 0, 3933, 0, + 0, 4053, 0, + 3423, 2893, 3787, + 3423, 2895, 3787, + 3423, 2895, 3787, + 3423, 2895, 3787, + 3423, 2895, 3787, + 3423, 2897, 3787, + 3421, 2897, 3787, + 3421, 2899, 3787, + 3419, 2899, 3787, + 3417, 2903, 3785, + 3415, 2905, 3785, + 3413, 2909, 3783, + 3409, 2915, 3783, + 3403, 2921, 3781, + 3395, 2931, 3777, + 3385, 2943, 3775, + 3369, 2957, 3769, + 3349, 2977, 3763, + 3321, 3003, 3755, + 3281, 3033, 3743, + 3221, 3073, 3727, + 3123, 3121, 3705, + 2951, 3177, 3671, + 2513, 3243, 3625, + 0, 3319, 3553, + 0, 3403, 3437, + 0, 3497, 3209, + 0, 3597, 2299, + 0, 3705, 0, + 0, 3817, 0, + 0, 3933, 0, + 0, 4053, 0, + 3445, 2891, 3795, + 3445, 2891, 3795, + 3445, 2891, 3795, + 3445, 2891, 3795, + 3445, 2891, 3793, + 3443, 2893, 3793, + 3443, 2893, 3793, + 3443, 2895, 3793, + 3441, 2897, 3793, + 3439, 2899, 3793, + 3437, 2901, 3791, + 3435, 2905, 3791, + 3431, 2911, 3789, + 3425, 2917, 3787, + 3417, 2927, 3785, + 3407, 2939, 3781, + 3395, 2955, 3777, + 3375, 2975, 3771, + 3349, 2999, 3761, + 3311, 3031, 3751, + 3253, 3071, 3735, + 3165, 3119, 3713, + 3009, 3175, 3681, + 2653, 3241, 3635, + 0, 3317, 3565, + 0, 3403, 3451, + 0, 3495, 3233, + 0, 3597, 2447, + 0, 3703, 0, + 0, 3817, 0, + 0, 3933, 0, + 0, 4053, 0, + 3473, 2885, 3803, + 3473, 2885, 3803, + 3473, 2887, 3803, + 3473, 2887, 3803, + 3471, 2887, 3803, + 3471, 2887, 3803, + 3471, 2889, 3803, + 3469, 2889, 3801, + 3469, 2891, 3801, + 3467, 2893, 3801, + 3465, 2897, 3801, + 3463, 2901, 3799, + 3459, 2907, 3797, + 3453, 2913, 3795, + 3447, 2923, 3793, + 3437, 2935, 3789, + 3425, 2951, 3785, + 3407, 2971, 3779, + 3383, 2995, 3771, + 3347, 3027, 3759, + 3295, 3067, 3745, + 3213, 3115, 3723, + 3077, 3173, 3691, + 2791, 3239, 3647, + 0, 3315, 3579, + 0, 3401, 3469, + 0, 3495, 3263, + 0, 3595, 2591, + 0, 3703, 0, + 0, 3815, 0, + 0, 3933, 0, + 0, 4053, 0, + 3507, 2879, 3815, + 3507, 2879, 3815, + 3507, 2879, 3815, + 3507, 2879, 3815, + 3507, 2881, 3813, + 3505, 2881, 3813, + 3505, 2883, 3813, + 3505, 2883, 3813, + 3503, 2885, 3813, + 3501, 2887, 3813, + 3499, 2891, 3811, + 3497, 2895, 3811, + 3493, 2901, 3809, + 3489, 2907, 3807, + 3483, 2917, 3805, + 3475, 2929, 3801, + 3463, 2945, 3797, + 3447, 2965, 3791, + 3423, 2991, 3783, + 3391, 3023, 3773, + 3345, 3063, 3757, + 3273, 3111, 3735, + 3155, 3169, 3707, + 2927, 3235, 3663, + 1989, 3313, 3597, + 0, 3399, 3493, + 0, 3493, 3299, + 0, 3593, 2733, + 0, 3701, 0, + 0, 3815, 0, + 0, 3931, 0, + 0, 4053, 0, + 3549, 2871, 3829, + 3549, 2871, 3829, + 3549, 2871, 3829, + 3549, 2871, 3829, + 3549, 2871, 3829, + 3547, 2873, 3829, + 3547, 2873, 3829, + 3547, 2875, 3827, + 3545, 2877, 3827, + 3545, 2879, 3827, + 3543, 2881, 3827, + 3541, 2887, 3825, + 3537, 2891, 3825, + 3533, 2899, 3823, + 3527, 2909, 3819, + 3519, 2921, 3817, + 3509, 2937, 3813, + 3493, 2957, 3807, + 3473, 2983, 3799, + 3445, 3017, 3789, + 3403, 3057, 3773, + 3341, 3105, 3753, + 3241, 3165, 3725, + 3061, 3231, 3683, + 2587, 3309, 3621, + 0, 3395, 3521, + 0, 3491, 3343, + 0, 3593, 2871, + 0, 3701, 0, + 0, 3813, 0, + 0, 3931, 0, + 0, 4051, 0, + 3599, 2857, 3849, + 3599, 2859, 3847, + 3599, 2859, 3847, + 3599, 2859, 3847, + 3599, 2859, 3847, + 3599, 2861, 3847, + 3599, 2861, 3847, + 3597, 2863, 3847, + 3597, 2865, 3847, + 3595, 2867, 3847, + 3593, 2871, 3845, + 3591, 2875, 3845, + 3589, 2879, 3843, + 3585, 2887, 3841, + 3579, 2897, 3839, + 3573, 2909, 3837, + 3563, 2927, 3833, + 3551, 2947, 3827, + 3533, 2975, 3819, + 3507, 3007, 3809, + 3471, 3049, 3795, + 3419, 3099, 3775, + 3337, 3157, 3749, + 3197, 3227, 3709, + 2897, 3305, 3651, + 0, 3391, 3559, + 0, 3487, 3397, + 0, 3589, 3007, + 0, 3699, 0, + 0, 3811, 0, + 0, 3929, 0, + 0, 4051, 0, + 3659, 2841, 3873, + 3659, 2841, 3873, + 3659, 2841, 3873, + 3659, 2843, 3873, + 3659, 2843, 3871, + 3659, 2843, 3871, + 3659, 2845, 3871, + 3657, 2847, 3871, + 3657, 2847, 3871, + 3655, 2851, 3871, + 3655, 2853, 3869, + 3653, 2859, 3869, + 3651, 2865, 3867, + 3647, 2871, 3867, + 3643, 2881, 3865, + 3637, 2895, 3861, + 3629, 2911, 3857, + 3617, 2933, 3853, + 3601, 2961, 3845, + 3579, 2995, 3835, + 3549, 3037, 3823, + 3505, 3089, 3805, + 3439, 3149, 3779, + 3331, 3219, 3741, + 3129, 3299, 3687, + 2499, 3387, 3603, + 0, 3483, 3459, + 0, 3587, 3143, + 0, 3695, 0, + 0, 3809, 0, + 0, 3929, 0, + 0, 4049, 0, + 3729, 2817, 3903, + 3729, 2819, 3903, + 3729, 2819, 3903, + 3729, 2819, 3903, + 3729, 2819, 3903, + 3729, 2821, 3903, + 3727, 2821, 3903, + 3727, 2823, 3901, + 3727, 2825, 3901, + 3725, 2827, 3901, + 3725, 2831, 3901, + 3723, 2835, 3899, + 3721, 2841, 3899, + 3719, 2849, 3897, + 3715, 2861, 3895, + 3709, 2875, 3893, + 3703, 2891, 3889, + 3693, 2915, 3883, + 3679, 2943, 3877, + 3661, 2979, 3869, + 3637, 3023, 3857, + 3601, 3075, 3839, + 3547, 3137, 3815, + 3463, 3209, 3781, + 3323, 3291, 3733, + 3017, 3379, 3657, + 0, 3477, 3531, + 0, 3581, 3279, + 0, 3693, 744, + 0, 3807, 0, + 0, 3927, 0, + 0, 4049, 0, + 3809, 2785, 3941, + 3809, 2785, 3941, + 3807, 2785, 3941, + 3807, 2785, 3941, + 3807, 2787, 3941, + 3807, 2787, 3941, + 3807, 2789, 3941, + 3807, 2789, 3939, + 3807, 2791, 3939, + 3805, 2795, 3939, + 3805, 2799, 3939, + 3803, 2803, 3937, + 3801, 2811, 3937, + 3799, 2819, 3935, + 3795, 2831, 3933, + 3791, 2845, 3931, + 3785, 2863, 3927, + 3777, 2887, 3923, + 3767, 2919, 3917, + 3753, 2955, 3909, + 3731, 3001, 3897, + 3703, 3057, 3883, + 3661, 3121, 3861, + 3597, 3195, 3831, + 3495, 3279, 3787, + 3311, 3371, 3721, + 2807, 3469, 3613, + 0, 3575, 3413, + 0, 3687, 2797, + 0, 3803, 0, + 0, 3923, 0, + 0, 4047, 0, + 3897, 2735, 3987, + 3895, 2735, 3987, + 3895, 2737, 3987, + 3895, 2737, 3987, + 3895, 2737, 3987, + 3895, 2739, 3987, + 3895, 2739, 3987, + 3895, 2741, 3987, + 3895, 2743, 3985, + 3893, 2747, 3985, + 3893, 2751, 3985, + 3891, 2757, 3985, + 3891, 2765, 3983, + 3889, 2773, 3983, + 3885, 2787, 3981, + 3883, 2803, 3979, + 3877, 2823, 3975, + 3871, 2849, 3971, + 3863, 2883, 3965, + 3851, 2923, 3959, + 3833, 2973, 3949, + 3811, 3031, 3935, + 3777, 3099, 3915, + 3729, 3177, 3889, + 3657, 3263, 3851, + 3535, 3357, 3793, + 3295, 3459, 3703, + 2103, 3567, 3545, + 0, 3681, 3179, + 0, 3799, 0, + 0, 3919, 0, + 0, 4043, 0, + 3993, 2661, 4041, + 3991, 2661, 4041, + 3991, 2661, 4041, + 3991, 2663, 4041, + 3991, 2663, 4041, + 3991, 2665, 4041, + 3991, 2665, 4041, + 3991, 2667, 4041, + 3991, 2671, 4041, + 3991, 2675, 4041, + 3989, 2679, 4041, + 3989, 2685, 4039, + 3987, 2695, 4039, + 3985, 2705, 4037, + 3983, 2719, 4037, + 3981, 2739, 4035, + 3977, 2763, 4031, + 3971, 2793, 4029, + 3965, 2829, 4023, + 3955, 2875, 4017, + 3943, 2929, 4009, + 3925, 2993, 3997, + 3899, 3067, 3979, + 3863, 3149, 3957, + 3809, 3241, 3923, + 3725, 3339, 3875, + 3583, 3445, 3801, + 3273, 3557, 3679, + 0, 3673, 3437, + 0, 3791, 2169, + 0, 3915, 0, + 0, 4039, 0, + 4095, 2537, 4095, + 4095, 2537, 4095, + 4095, 2537, 4095, + 4095, 2539, 4095, + 4095, 2539, 4095, + 4095, 2541, 4095, + 4095, 2543, 4095, + 4095, 2545, 4095, + 4095, 2549, 4095, + 4093, 2555, 4095, + 4093, 2561, 4095, + 4093, 2569, 4095, + 4091, 2579, 4095, + 4091, 2595, 4095, + 4089, 2613, 4095, + 4087, 2635, 4095, + 4083, 2665, 4095, + 4079, 2703, 4095, + 4073, 2747, 4091, + 4067, 2801, 4085, + 4055, 2865, 4077, + 4041, 2937, 4067, + 4023, 3019, 4053, + 3995, 3111, 4033, + 3955, 3209, 4005, + 3897, 3315, 3965, + 3803, 3425, 3907, + 3639, 3541, 3811, + 3243, 3661, 3645, + 0, 3783, 3235, + 0, 3907, 0, + 0, 4033, 0, + 4095, 2287, 4095, + 4095, 2289, 4095, + 4095, 2289, 4095, + 4095, 2291, 4095, + 4095, 2293, 4095, + 4095, 2295, 4095, + 4095, 2299, 4095, + 4095, 2305, 4095, + 4095, 2311, 4095, + 4095, 2319, 4095, + 4095, 2329, 4095, + 4095, 2343, 4095, + 4095, 2361, 4095, + 4095, 2383, 4095, + 4095, 2413, 4095, + 4095, 2449, 4095, + 4095, 2493, 4095, + 4095, 2545, 4095, + 4095, 2607, 4095, + 4095, 2679, 4095, + 4095, 2761, 4095, + 4095, 2851, 4095, + 4095, 2949, 4095, + 4095, 3053, 4095, + 4095, 3163, 4095, + 4057, 3279, 4065, + 3993, 3397, 4017, + 3891, 3519, 3945, + 3707, 3643, 3825, + 3199, 3771, 3595, + 0, 3899, 2597, + 0, 4027, 0, + 4095, 662, 4095, + 4095, 691, 4095, + 4095, 728, 4095, + 4095, 772, 4095, + 4095, 825, 4095, + 4095, 888, 4095, + 4095, 960, 4095, + 4095, 1041, 4095, + 4095, 1131, 4095, + 4095, 1229, 4095, + 4095, 1334, 4095, + 4095, 1445, 4095, + 4095, 1560, 4095, + 4095, 1679, 4095, + 4095, 1802, 4095, + 4095, 1926, 4095, + 4095, 2053, 4095, + 4095, 2181, 4095, + 4095, 2309, 4095, + 4095, 2439, 4095, + 4095, 2569, 4095, + 4095, 2699, 4095, + 4095, 2831, 4095, + 4095, 2963, 4095, + 4095, 3093, 4095, + 4095, 3225, 4095, + 4095, 3357, 4095, + 4095, 3489, 4077, + 3987, 3621, 3991, + 3783, 3753, 3843, + 3133, 3885, 3517, + 0, 4017, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1211, 4095, + 4095, 2021, 4095, + 4095, 2361, 4095, + 4095, 2603, 4095, + 4095, 2803, 4095, + 4095, 2981, 4095, + 4095, 3143, 4095, + 4095, 3297, 4095, + 4095, 3445, 4095, + 4095, 3589, 4095, + 4089, 3729, 4047, + 3867, 3867, 3867, + 3023, 4003, 3387, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1681, 4095, + 4095, 2431, 4095, + 4095, 2763, 4095, + 4095, 3003, 4095, + 4095, 3203, 4095, + 4095, 3379, 4095, + 4095, 3541, 4095, + 4095, 3695, 4095, + 4095, 3841, 4095, + 3961, 3985, 3897, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3039, 3899, + 3483, 3039, 3899, + 3483, 3041, 3899, + 3481, 3043, 3899, + 3479, 3045, 3897, + 3475, 3047, 3897, + 3473, 3051, 3895, + 3467, 3057, 3895, + 3461, 3063, 3893, + 3451, 3071, 3889, + 3439, 3083, 3885, + 3423, 3099, 3881, + 3399, 3117, 3875, + 3365, 3143, 3865, + 3315, 3173, 3853, + 3237, 3211, 3835, + 3109, 3259, 3813, + 2847, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3525, + 0, 3631, 3267, + 0, 3731, 0, + 0, 3837, 0, + 0, 3951, 0, + 0, 4067, 0, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3039, 3899, + 3483, 3039, 3899, + 3483, 3041, 3899, + 3481, 3043, 3899, + 3479, 3045, 3897, + 3477, 3047, 3897, + 3473, 3051, 3895, + 3467, 3057, 3895, + 3461, 3063, 3893, + 3451, 3071, 3889, + 3439, 3083, 3885, + 3423, 3099, 3881, + 3399, 3117, 3875, + 3365, 3143, 3865, + 3315, 3173, 3853, + 3237, 3211, 3835, + 3109, 3259, 3813, + 2849, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3525, + 0, 3631, 3267, + 0, 3731, 0, + 0, 3837, 0, + 0, 3951, 0, + 0, 4067, 0, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3039, 3899, + 3483, 3039, 3899, + 3483, 3041, 3899, + 3481, 3043, 3899, + 3479, 3045, 3897, + 3477, 3047, 3897, + 3473, 3051, 3895, + 3467, 3057, 3895, + 3461, 3063, 3893, + 3453, 3071, 3889, + 3439, 3083, 3885, + 3423, 3099, 3881, + 3399, 3117, 3875, + 3365, 3143, 3865, + 3315, 3173, 3853, + 3239, 3211, 3837, + 3109, 3259, 3813, + 2849, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3525, + 0, 3631, 3267, + 0, 3731, 0, + 0, 3837, 0, + 0, 3951, 0, + 0, 4067, 0, + 3487, 3037, 3901, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3039, 3899, + 3485, 3039, 3899, + 3483, 3041, 3899, + 3481, 3043, 3899, + 3479, 3045, 3897, + 3477, 3047, 3897, + 3473, 3051, 3895, + 3469, 3057, 3895, + 3461, 3063, 3893, + 3453, 3071, 3889, + 3441, 3083, 3885, + 3423, 3099, 3881, + 3399, 3117, 3875, + 3365, 3143, 3865, + 3315, 3173, 3853, + 3239, 3211, 3837, + 3111, 3259, 3813, + 2851, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3525, + 0, 3631, 3267, + 0, 3731, 0, + 0, 3837, 0, + 0, 3951, 0, + 0, 4067, 0, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3485, 3037, 3899, + 3485, 3039, 3899, + 3485, 3039, 3899, + 3483, 3041, 3899, + 3481, 3043, 3899, + 3479, 3045, 3897, + 3477, 3047, 3897, + 3473, 3051, 3895, + 3469, 3057, 3895, + 3463, 3063, 3893, + 3453, 3071, 3889, + 3441, 3083, 3887, + 3423, 3099, 3881, + 3399, 3117, 3875, + 3365, 3143, 3865, + 3315, 3173, 3853, + 3239, 3211, 3837, + 3111, 3259, 3813, + 2853, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3525, + 0, 3631, 3267, + 0, 3731, 0, + 0, 3837, 0, + 0, 3951, 0, + 0, 4067, 0, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3899, + 3485, 3039, 3899, + 3485, 3039, 3899, + 3483, 3041, 3899, + 3483, 3043, 3899, + 3481, 3045, 3899, + 3477, 3047, 3897, + 3475, 3051, 3897, + 3469, 3057, 3895, + 3463, 3063, 3893, + 3453, 3071, 3889, + 3441, 3083, 3887, + 3425, 3099, 3881, + 3401, 3117, 3875, + 3367, 3143, 3865, + 3317, 3173, 3853, + 3241, 3211, 3837, + 3113, 3259, 3813, + 2855, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3525, + 0, 3631, 3269, + 0, 3731, 0, + 0, 3837, 0, + 0, 3951, 0, + 0, 4067, 0, + 3489, 3035, 3901, + 3489, 3037, 3901, + 3489, 3037, 3901, + 3489, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3039, 3899, + 3485, 3039, 3899, + 3485, 3041, 3899, + 3483, 3041, 3899, + 3481, 3045, 3899, + 3479, 3047, 3897, + 3475, 3051, 3897, + 3471, 3057, 3895, + 3463, 3063, 3893, + 3455, 3071, 3891, + 3443, 3083, 3887, + 3425, 3099, 3881, + 3401, 3117, 3875, + 3367, 3143, 3867, + 3317, 3173, 3853, + 3241, 3211, 3837, + 3115, 3259, 3813, + 2857, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3527, + 0, 3631, 3269, + 0, 3731, 0, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3489, 3035, 3901, + 3489, 3035, 3901, + 3489, 3037, 3901, + 3489, 3037, 3901, + 3489, 3037, 3901, + 3489, 3037, 3901, + 3487, 3039, 3901, + 3487, 3039, 3899, + 3485, 3041, 3899, + 3485, 3041, 3899, + 3483, 3045, 3899, + 3479, 3047, 3897, + 3477, 3051, 3897, + 3471, 3055, 3895, + 3465, 3063, 3893, + 3455, 3071, 3891, + 3443, 3083, 3887, + 3427, 3099, 3881, + 3403, 3117, 3875, + 3369, 3143, 3867, + 3319, 3173, 3855, + 3243, 3211, 3837, + 3117, 3259, 3813, + 2861, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3527, + 0, 3631, 3271, + 0, 3731, 0, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3491, 3035, 3901, + 3491, 3035, 3901, + 3491, 3035, 3901, + 3491, 3037, 3901, + 3491, 3037, 3901, + 3489, 3037, 3901, + 3489, 3037, 3901, + 3489, 3039, 3901, + 3487, 3041, 3899, + 3485, 3041, 3899, + 3483, 3043, 3899, + 3481, 3047, 3899, + 3477, 3051, 3897, + 3473, 3055, 3895, + 3467, 3063, 3893, + 3457, 3071, 3891, + 3445, 3083, 3887, + 3427, 3097, 3883, + 3405, 3117, 3875, + 3371, 3141, 3867, + 3321, 3173, 3855, + 3245, 3211, 3837, + 3121, 3259, 3813, + 2867, 3315, 3779, + 504, 3379, 3731, + 0, 3455, 3655, + 0, 3539, 3527, + 0, 3631, 3271, + 0, 3731, 0, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3493, 3035, 3901, + 3493, 3035, 3901, + 3493, 3035, 3901, + 3493, 3037, 3901, + 3493, 3037, 3901, + 3491, 3037, 3901, + 3491, 3037, 3901, + 3491, 3039, 3901, + 3489, 3039, 3901, + 3487, 3041, 3901, + 3485, 3043, 3899, + 3483, 3047, 3899, + 3479, 3051, 3897, + 3475, 3055, 3895, + 3469, 3063, 3893, + 3459, 3071, 3891, + 3447, 3083, 3887, + 3431, 3097, 3883, + 3407, 3117, 3877, + 3373, 3141, 3867, + 3325, 3173, 3855, + 3249, 3211, 3839, + 3125, 3259, 3815, + 2875, 3313, 3781, + 1125, 3379, 3731, + 0, 3455, 3655, + 0, 3539, 3529, + 0, 3631, 3273, + 0, 3731, 0, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3495, 3035, 3903, + 3495, 3035, 3903, + 3495, 3035, 3903, + 3495, 3035, 3903, + 3495, 3037, 3903, + 3495, 3037, 3901, + 3493, 3037, 3901, + 3493, 3039, 3901, + 3491, 3039, 3901, + 3491, 3041, 3901, + 3489, 3043, 3901, + 3485, 3047, 3899, + 3481, 3051, 3899, + 3477, 3055, 3897, + 3471, 3061, 3895, + 3461, 3071, 3893, + 3449, 3083, 3889, + 3433, 3097, 3883, + 3409, 3117, 3877, + 3377, 3141, 3869, + 3327, 3173, 3855, + 3253, 3211, 3839, + 3129, 3257, 3815, + 2885, 3313, 3781, + 1440, 3379, 3733, + 0, 3455, 3657, + 0, 3539, 3531, + 0, 3631, 3277, + 0, 3731, 0, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3499, 3035, 3903, + 3499, 3035, 3903, + 3499, 3035, 3903, + 3499, 3035, 3903, + 3497, 3035, 3903, + 3497, 3037, 3903, + 3497, 3037, 3903, + 3495, 3037, 3903, + 3495, 3039, 3903, + 3493, 3041, 3901, + 3491, 3043, 3901, + 3489, 3045, 3901, + 3485, 3049, 3899, + 3481, 3055, 3897, + 3475, 3061, 3895, + 3465, 3071, 3893, + 3453, 3081, 3889, + 3437, 3097, 3885, + 3413, 3117, 3877, + 3381, 3141, 3869, + 3333, 3173, 3857, + 3259, 3211, 3839, + 3137, 3257, 3817, + 2897, 3313, 3783, + 1672, 3379, 3733, + 0, 3455, 3657, + 0, 3539, 3533, + 0, 3631, 3281, + 0, 3731, 1095, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3503, 3033, 3905, + 3503, 3035, 3905, + 3503, 3035, 3905, + 3503, 3035, 3905, + 3503, 3035, 3905, + 3501, 3035, 3905, + 3501, 3037, 3903, + 3501, 3037, 3903, + 3499, 3039, 3903, + 3497, 3041, 3903, + 3495, 3043, 3903, + 3493, 3045, 3901, + 3489, 3049, 3901, + 3485, 3055, 3899, + 3479, 3061, 3897, + 3471, 3069, 3895, + 3459, 3081, 3891, + 3441, 3097, 3885, + 3419, 3115, 3879, + 3387, 3141, 3871, + 3339, 3171, 3859, + 3267, 3211, 3841, + 3147, 3257, 3817, + 2913, 3313, 3785, + 1867, 3379, 3735, + 0, 3453, 3661, + 0, 3537, 3535, + 0, 3631, 3285, + 0, 3731, 1469, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3509, 3033, 3907, + 3509, 3033, 3907, + 3509, 3033, 3905, + 3509, 3033, 3905, + 3507, 3035, 3905, + 3507, 3035, 3905, + 3507, 3035, 3905, + 3507, 3037, 3905, + 3505, 3037, 3905, + 3503, 3039, 3905, + 3501, 3041, 3903, + 3499, 3045, 3903, + 3495, 3049, 3901, + 3491, 3053, 3901, + 3485, 3061, 3899, + 3477, 3069, 3895, + 3465, 3081, 3893, + 3449, 3095, 3887, + 3425, 3115, 3881, + 3393, 3139, 3873, + 3347, 3171, 3859, + 3275, 3209, 3843, + 3159, 3257, 3819, + 2933, 3313, 3787, + 2041, 3379, 3737, + 0, 3453, 3663, + 0, 3537, 3539, + 0, 3631, 3291, + 0, 3731, 1724, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3517, 3033, 3909, + 3517, 3033, 3909, + 3517, 3033, 3909, + 3515, 3033, 3909, + 3515, 3033, 3907, + 3515, 3033, 3907, + 3515, 3035, 3907, + 3513, 3035, 3907, + 3513, 3037, 3907, + 3511, 3039, 3907, + 3509, 3041, 3905, + 3507, 3043, 3905, + 3503, 3047, 3905, + 3499, 3053, 3903, + 3493, 3059, 3901, + 3485, 3067, 3897, + 3473, 3079, 3895, + 3457, 3095, 3889, + 3435, 3115, 3883, + 3403, 3139, 3875, + 3357, 3171, 3863, + 3289, 3209, 3845, + 3175, 3257, 3823, + 2959, 3313, 3789, + 2203, 3377, 3741, + 0, 3453, 3667, + 0, 3537, 3543, + 0, 3631, 3299, + 0, 3731, 1929, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3527, 3031, 3911, + 3527, 3031, 3911, + 3527, 3031, 3911, + 3525, 3031, 3911, + 3525, 3031, 3911, + 3525, 3033, 3911, + 3525, 3033, 3911, + 3523, 3033, 3911, + 3523, 3035, 3909, + 3521, 3037, 3909, + 3519, 3039, 3909, + 3517, 3041, 3907, + 3513, 3045, 3907, + 3509, 3051, 3905, + 3503, 3057, 3903, + 3495, 3067, 3901, + 3483, 3079, 3897, + 3469, 3093, 3893, + 3447, 3113, 3887, + 3417, 3137, 3877, + 3371, 3169, 3865, + 3305, 3207, 3849, + 3197, 3255, 3825, + 2993, 3311, 3793, + 2355, 3377, 3745, + 0, 3453, 3671, + 0, 3537, 3549, + 0, 3629, 3311, + 0, 3731, 2109, + 0, 3837, 0, + 0, 3949, 0, + 0, 4065, 0, + 3539, 3029, 3915, + 3539, 3029, 3915, + 3539, 3029, 3915, + 3539, 3029, 3915, + 3539, 3029, 3915, + 3539, 3031, 3915, + 3537, 3031, 3915, + 3537, 3031, 3913, + 3535, 3033, 3913, + 3535, 3035, 3913, + 3533, 3037, 3913, + 3531, 3039, 3911, + 3527, 3043, 3911, + 3523, 3049, 3909, + 3517, 3055, 3907, + 3509, 3065, 3905, + 3499, 3077, 3901, + 3483, 3091, 3897, + 3463, 3111, 3891, + 3433, 3137, 3881, + 3389, 3167, 3869, + 3325, 3207, 3853, + 3223, 3253, 3831, + 3033, 3311, 3797, + 2501, 3377, 3751, + 0, 3451, 3677, + 0, 3537, 3559, + 0, 3629, 3325, + 0, 3729, 2275, + 0, 3837, 0, + 0, 3949, 0, + 0, 4065, 0, + 3557, 3025, 3919, + 3557, 3027, 3919, + 3555, 3027, 3919, + 3555, 3027, 3919, + 3555, 3027, 3919, + 3555, 3027, 3919, + 3555, 3029, 3919, + 3553, 3029, 3919, + 3553, 3031, 3919, + 3551, 3033, 3919, + 3549, 3035, 3917, + 3547, 3037, 3917, + 3545, 3041, 3915, + 3541, 3047, 3915, + 3535, 3053, 3913, + 3527, 3063, 3909, + 3517, 3075, 3907, + 3501, 3089, 3901, + 3483, 3109, 3895, + 3453, 3135, 3887, + 3413, 3165, 3875, + 3353, 3205, 3859, + 3255, 3253, 3837, + 3083, 3309, 3805, + 2645, 3375, 3757, + 0, 3451, 3685, + 0, 3535, 3569, + 0, 3629, 3343, + 0, 3729, 2431, + 0, 3837, 0, + 0, 3949, 0, + 0, 4065, 0, + 3577, 3023, 3927, + 3577, 3023, 3927, + 3577, 3023, 3927, + 3577, 3023, 3927, + 3577, 3023, 3927, + 3577, 3023, 3927, + 3577, 3025, 3925, + 3575, 3025, 3925, + 3575, 3027, 3925, + 3573, 3029, 3925, + 3571, 3031, 3925, + 3569, 3033, 3923, + 3567, 3037, 3923, + 3563, 3043, 3921, + 3557, 3049, 3919, + 3549, 3059, 3917, + 3539, 3071, 3913, + 3527, 3087, 3909, + 3507, 3107, 3903, + 3481, 3131, 3893, + 3443, 3163, 3883, + 3385, 3203, 3867, + 3297, 3251, 3845, + 3141, 3307, 3813, + 2785, 3373, 3767, + 0, 3449, 3697, + 0, 3535, 3583, + 0, 3627, 3365, + 0, 3729, 2579, + 0, 3835, 0, + 0, 3949, 0, + 0, 4065, 0, + 3605, 3017, 3935, + 3605, 3017, 3935, + 3605, 3017, 3935, + 3605, 3019, 3935, + 3605, 3019, 3935, + 3603, 3019, 3935, + 3603, 3019, 3935, + 3603, 3021, 3935, + 3601, 3023, 3933, + 3601, 3023, 3933, + 3599, 3027, 3933, + 3597, 3029, 3933, + 3595, 3033, 3931, + 3591, 3039, 3929, + 3585, 3045, 3927, + 3579, 3055, 3925, + 3569, 3067, 3923, + 3557, 3083, 3917, + 3539, 3103, 3911, + 3515, 3127, 3903, + 3479, 3159, 3891, + 3427, 3199, 3877, + 3347, 3247, 3855, + 3209, 3305, 3823, + 2923, 3371, 3779, + 0, 3447, 3711, + 0, 3533, 3601, + 0, 3627, 3395, + 0, 3727, 2723, + 0, 3835, 0, + 0, 3947, 0, + 0, 4065, 0, + 3639, 3011, 3947, + 3639, 3011, 3947, + 3639, 3011, 3947, + 3639, 3011, 3947, + 3639, 3013, 3947, + 3639, 3013, 3947, + 3637, 3013, 3945, + 3637, 3015, 3945, + 3637, 3015, 3945, + 3635, 3017, 3945, + 3633, 3019, 3945, + 3631, 3023, 3943, + 3629, 3027, 3943, + 3625, 3033, 3941, + 3621, 3039, 3939, + 3615, 3049, 3937, + 3607, 3061, 3933, + 3595, 3077, 3929, + 3579, 3097, 3923, + 3555, 3123, 3915, + 3523, 3155, 3905, + 3477, 3195, 3889, + 3405, 3243, 3869, + 3287, 3301, 3839, + 3059, 3369, 3795, + 2121, 3445, 3729, + 0, 3531, 3625, + 0, 3625, 3431, + 0, 3727, 2865, + 0, 3833, 0, + 0, 3947, 0, + 0, 4065, 0, + 3681, 3003, 3961, + 3681, 3003, 3961, + 3681, 3003, 3961, + 3681, 3003, 3961, + 3681, 3003, 3961, + 3681, 3003, 3961, + 3679, 3005, 3961, + 3679, 3005, 3961, + 3679, 3007, 3961, + 3677, 3009, 3959, + 3677, 3011, 3959, + 3675, 3015, 3959, + 3673, 3019, 3957, + 3669, 3023, 3957, + 3665, 3031, 3955, + 3659, 3041, 3953, + 3651, 3053, 3949, + 3641, 3069, 3945, + 3625, 3089, 3939, + 3605, 3115, 3931, + 3577, 3149, 3921, + 3535, 3189, 3905, + 3473, 3237, 3885, + 3373, 3297, 3857, + 3195, 3365, 3815, + 2719, 3441, 3753, + 0, 3527, 3655, + 0, 3623, 3475, + 0, 3725, 3003, + 0, 3833, 0, + 0, 3945, 0, + 0, 4063, 0, + 3731, 2989, 3981, + 3731, 2991, 3981, + 3731, 2991, 3981, + 3731, 2991, 3981, + 3731, 2991, 3979, + 3731, 2991, 3979, + 3731, 2993, 3979, + 3731, 2993, 3979, + 3729, 2995, 3979, + 3729, 2997, 3979, + 3727, 2999, 3979, + 3725, 3003, 3977, + 3723, 3007, 3977, + 3721, 3013, 3975, + 3717, 3019, 3973, + 3713, 3029, 3971, + 3705, 3041, 3969, + 3695, 3059, 3965, + 3683, 3079, 3959, + 3665, 3107, 3951, + 3639, 3139, 3941, + 3603, 3181, 3927, + 3551, 3231, 3907, + 3469, 3289, 3881, + 3329, 3359, 3841, + 3029, 3437, 3783, + 0, 3523, 3691, + 0, 3619, 3529, + 0, 3721, 3139, + 0, 3831, 0, + 0, 3945, 0, + 0, 4061, 0, + 3791, 2973, 4005, + 3791, 2973, 4005, + 3791, 2973, 4005, + 3791, 2973, 4005, + 3791, 2975, 4005, + 3791, 2975, 4005, + 3791, 2975, 4003, + 3791, 2977, 4003, + 3789, 2979, 4003, + 3789, 2981, 4003, + 3787, 2983, 4003, + 3787, 2985, 4001, + 3785, 2991, 4001, + 3783, 2997, 3999, + 3779, 3003, 3999, + 3775, 3013, 3997, + 3769, 3027, 3993, + 3761, 3043, 3989, + 3749, 3065, 3985, + 3733, 3093, 3977, + 3713, 3127, 3967, + 3681, 3169, 3955, + 3637, 3221, 3937, + 3571, 3281, 3911, + 3463, 3351, 3873, + 3261, 3431, 3819, + 2631, 3519, 3735, + 0, 3615, 3591, + 0, 3719, 3275, + 0, 3827, 0, + 0, 3943, 0, + 0, 4061, 0, + 3861, 2949, 4035, + 3861, 2949, 4035, + 3861, 2951, 4035, + 3861, 2951, 4035, + 3861, 2951, 4035, + 3861, 2951, 4035, + 3861, 2953, 4035, + 3861, 2953, 4035, + 3859, 2955, 4035, + 3859, 2957, 4033, + 3859, 2959, 4033, + 3857, 2963, 4033, + 3855, 2967, 4031, + 3853, 2973, 4031, + 3851, 2981, 4029, + 3847, 2993, 4027, + 3841, 3007, 4025, + 3835, 3023, 4021, + 3825, 3047, 4017, + 3811, 3075, 4009, + 3793, 3111, 4001, + 3769, 3155, 3989, + 3733, 3207, 3971, + 3679, 3269, 3947, + 3595, 3341, 3915, + 3455, 3423, 3865, + 3149, 3511, 3789, + 0, 3609, 3663, + 0, 3713, 3411, + 0, 3825, 876, + 0, 3939, 0, + 0, 4059, 0, + 3941, 2917, 4073, + 3941, 2917, 4073, + 3941, 2917, 4073, + 3941, 2917, 4073, + 3939, 2917, 4073, + 3939, 2919, 4073, + 3939, 2919, 4073, + 3939, 2921, 4073, + 3939, 2921, 4071, + 3939, 2925, 4071, + 3937, 2927, 4071, + 3937, 2931, 4071, + 3935, 2935, 4069, + 3933, 2943, 4069, + 3931, 2951, 4067, + 3927, 2963, 4065, + 3923, 2977, 4063, + 3917, 2995, 4059, + 3909, 3019, 4055, + 3899, 3051, 4049, + 3885, 3087, 4041, + 3863, 3133, 4031, + 3835, 3189, 4015, + 3793, 3253, 3993, + 3729, 3327, 3963, + 3627, 3411, 3919, + 3443, 3503, 3853, + 2939, 3601, 3745, + 0, 3707, 3545, + 0, 3819, 2929, + 0, 3935, 0, + 0, 4055, 0, + 4029, 2867, 4095, + 4029, 2867, 4095, + 4029, 2867, 4095, + 4029, 2869, 4095, + 4027, 2869, 4095, + 4027, 2869, 4095, + 4027, 2871, 4095, + 4027, 2871, 4095, + 4027, 2873, 4095, + 4027, 2877, 4095, + 4025, 2879, 4095, + 4025, 2883, 4095, + 4025, 2889, 4095, + 4023, 2897, 4095, + 4021, 2905, 4095, + 4019, 2919, 4095, + 4015, 2935, 4095, + 4009, 2955, 4095, + 4003, 2981, 4095, + 3995, 3015, 4095, + 3983, 3055, 4091, + 3965, 3105, 4081, + 3943, 3163, 4067, + 3909, 3231, 4047, + 3861, 3309, 4021, + 3789, 3395, 3983, + 3667, 3489, 3925, + 3427, 3591, 3835, + 2235, 3699, 3677, + 0, 3813, 3313, + 0, 3931, 0, + 0, 4051, 0, + 4095, 2793, 4095, + 4095, 2793, 4095, + 4095, 2793, 4095, + 4095, 2793, 4095, + 4095, 2795, 4095, + 4095, 2795, 4095, + 4095, 2797, 4095, + 4095, 2797, 4095, + 4095, 2799, 4095, + 4095, 2803, 4095, + 4095, 2807, 4095, + 4095, 2811, 4095, + 4095, 2817, 4095, + 4095, 2827, 4095, + 4095, 2837, 4095, + 4095, 2851, 4095, + 4095, 2871, 4095, + 4095, 2895, 4095, + 4095, 2925, 4095, + 4095, 2961, 4095, + 4087, 3007, 4095, + 4075, 3061, 4095, + 4057, 3125, 4095, + 4031, 3199, 4095, + 3995, 3281, 4089, + 3941, 3373, 4055, + 3857, 3471, 4007, + 3715, 3577, 3933, + 3407, 3689, 3811, + 0, 3805, 3569, + 0, 3925, 2301, + 0, 4047, 0, + 4095, 2667, 4095, + 4095, 2669, 4095, + 4095, 2669, 4095, + 4095, 2669, 4095, + 4095, 2671, 4095, + 4095, 2671, 4095, + 4095, 2673, 4095, + 4095, 2675, 4095, + 4095, 2677, 4095, + 4095, 2681, 4095, + 4095, 2687, 4095, + 4095, 2693, 4095, + 4095, 2701, 4095, + 4095, 2711, 4095, + 4095, 2727, 4095, + 4095, 2745, 4095, + 4095, 2767, 4095, + 4095, 2797, 4095, + 4095, 2835, 4095, + 4095, 2879, 4095, + 4095, 2933, 4095, + 4095, 2997, 4095, + 4095, 3069, 4095, + 4095, 3151, 4095, + 4095, 3243, 4095, + 4087, 3341, 4095, + 4029, 3447, 4095, + 3935, 3557, 4039, + 3771, 3673, 3945, + 3375, 3793, 3777, + 0, 3915, 3367, + 0, 4039, 0, + 4095, 2419, 4095, + 4095, 2421, 4095, + 4095, 2421, 4095, + 4095, 2421, 4095, + 4095, 2423, 4095, + 4095, 2425, 4095, + 4095, 2429, 4095, + 4095, 2431, 4095, + 4095, 2437, 4095, + 4095, 2443, 4095, + 4095, 2451, 4095, + 4095, 2461, 4095, + 4095, 2475, 4095, + 4095, 2493, 4095, + 4095, 2515, 4095, + 4095, 2545, 4095, + 4095, 2581, 4095, + 4095, 2625, 4095, + 4095, 2677, 4095, + 4095, 2739, 4095, + 4095, 2811, 4095, + 4095, 2893, 4095, + 4095, 2983, 4095, + 4095, 3081, 4095, + 4095, 3185, 4095, + 4095, 3295, 4095, + 4095, 3411, 4095, + 4095, 3529, 4095, + 4023, 3651, 4077, + 3839, 3777, 3959, + 3331, 3903, 3727, + 0, 4031, 2729, + 4095, 771, 4095, + 4095, 795, 4095, + 4095, 824, 4095, + 4095, 860, 4095, + 4095, 904, 4095, + 4095, 957, 4095, + 4095, 1020, 4095, + 4095, 1092, 4095, + 4095, 1173, 4095, + 4095, 1263, 4095, + 4095, 1361, 4095, + 4095, 1466, 4095, + 4095, 1577, 4095, + 4095, 1692, 4095, + 4095, 1811, 4095, + 4095, 1934, 4095, + 4095, 2059, 4095, + 4095, 2185, 4095, + 4095, 2313, 4095, + 4095, 2441, 4095, + 4095, 2571, 4095, + 4095, 2701, 4095, + 4095, 2831, 4095, + 4095, 2963, 4095, + 4095, 3095, 4095, + 4095, 3225, 4095, + 4095, 3357, 4095, + 4095, 3489, 4095, + 4095, 3621, 4095, + 4095, 3753, 4095, + 3915, 3885, 3977, + 3265, 4017, 3649, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1343, 4095, + 4095, 2153, 4095, + 4095, 2493, 4095, + 4095, 2735, 4095, + 4095, 2935, 4095, + 4095, 3113, 4095, + 4095, 3275, 4095, + 4095, 3429, 4095, + 4095, 3577, 4095, + 4095, 3721, 4095, + 4095, 3861, 4095, + 3999, 3999, 3999 +] + } +} diff --git a/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Nuke/test-grade_inv-Log2-48nits_32_LUT.azasset b/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Nuke/test-grade_inv-Log2-48nits_32_LUT.azasset new file mode 100644 index 0000000000..a91e9d0c1a --- /dev/null +++ b/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Nuke/test-grade_inv-Log2-48nits_32_LUT.azasset @@ -0,0 +1,32780 @@ +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "LookupTableAsset", + "ClassData": { + "Name": "LookupTable", + "Intervals": [ + 0, 33, 66, 99, 132, 165, 198, 231, 264, 297, 330, 363, 396, 429, 462, 495, 528, 561, 594, 627, 660, 693, 726, 759, 792, 825, 858, 891, 924, 957, 990, 1023], + "Values": [ + 0, 0, 0, + 0, 0, 0, + 0, 15, 0, + 0, 104, 0, + 0, 201, 0, + 0, 305, 0, + 0, 415, 0, + 0, 530, 0, + 0, 649, 0, + 0, 771, 0, + 0, 895, 0, + 0, 1022, 0, + 0, 1149, 0, + 0, 1278, 0, + 0, 1408, 0, + 0, 1538, 0, + 0, 1668, 0, + 0, 1799, 0, + 0, 1931, 0, + 0, 2062, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2457, 0, + 0, 2589, 0, + 0, 2721, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3381, 0, + 0, 3514, 0, + 0, 3646, 0, + 130, 0, 20, + 28, 0, 0, + 0, 33, 0, + 0, 119, 0, + 0, 213, 0, + 0, 315, 0, + 0, 423, 0, + 0, 536, 0, + 0, 654, 0, + 0, 775, 0, + 0, 898, 0, + 0, 1024, 0, + 0, 1151, 0, + 0, 1279, 0, + 0, 1408, 0, + 0, 1538, 0, + 0, 1669, 0, + 0, 1800, 0, + 0, 1931, 0, + 0, 2062, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2589, 0, + 0, 2721, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3381, 0, + 0, 3514, 0, + 0, 3646, 0, + 342, 0, 170, + 280, 0, 102, + 183, 56, 0, + 7, 139, 0, + 0, 229, 0, + 0, 328, 0, + 0, 433, 0, + 0, 544, 0, + 0, 660, 0, + 0, 779, 0, + 0, 902, 0, + 0, 1026, 0, + 0, 1153, 0, + 0, 1281, 0, + 0, 1410, 0, + 0, 1539, 0, + 0, 1670, 0, + 0, 1800, 0, + 0, 1931, 0, + 0, 2063, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2589, 0, + 0, 2721, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3381, 0, + 0, 3514, 0, + 0, 3646, 0, + 526, 0, 315, + 486, 18, 266, + 426, 86, 192, + 331, 163, 68, + 163, 250, 0, + 0, 344, 0, + 0, 446, 0, + 0, 555, 0, + 0, 668, 0, + 0, 785, 0, + 0, 906, 0, + 0, 1030, 0, + 0, 1156, 0, + 0, 1283, 0, + 0, 1411, 0, + 0, 1540, 0, + 0, 1670, 0, + 0, 1801, 0, + 0, 1932, 0, + 0, 2063, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 693, 8, 457, + 666, 60, 422, + 626, 123, 370, + 568, 195, 290, + 475, 276, 155, + 312, 366, 0, + 0, 463, 0, + 0, 568, 0, + 0, 678, 0, + 0, 794, 0, + 0, 913, 0, + 0, 1035, 0, + 0, 1159, 0, + 0, 1285, 0, + 0, 1413, 0, + 0, 1542, 0, + 0, 1672, 0, + 0, 1802, 0, + 0, 1932, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 850, 65, 596, + 831, 112, 570, + 804, 168, 534, + 765, 233, 479, + 707, 308, 395, + 616, 393, 250, + 457, 485, 0, + 82, 585, 0, + 0, 692, 0, + 0, 804, 0, + 0, 921, 0, + 0, 1041, 0, + 0, 1164, 0, + 0, 1289, 0, + 0, 1416, 0, + 0, 1544, 0, + 0, 1673, 0, + 0, 1803, 0, + 0, 1933, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 999, 131, 733, + 986, 172, 714, + 967, 222, 688, + 940, 280, 650, + 901, 348, 594, + 844, 426, 505, + 755, 513, 352, + 598, 608, 3, + 235, 710, 0, + 0, 818, 0, + 0, 932, 0, + 0, 1049, 0, + 0, 1170, 0, + 0, 1294, 0, + 0, 1420, 0, + 0, 1547, 0, + 0, 1675, 0, + 0, 1805, 0, + 0, 1935, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1144, 207, 869, + 1134, 242, 855, + 1121, 285, 836, + 1102, 336, 809, + 1075, 397, 770, + 1037, 468, 712, + 980, 547, 621, + 892, 636, 461, + 737, 732, 82, + 382, 836, 0, + 0, 946, 0, + 0, 1060, 0, + 0, 1179, 0, + 0, 1300, 0, + 0, 1424, 0, + 0, 1550, 0, + 0, 1678, 0, + 0, 1807, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1286, 293, 1004, + 1278, 322, 994, + 1268, 358, 980, + 1255, 402, 960, + 1236, 455, 932, + 1210, 518, 893, + 1172, 590, 833, + 1115, 671, 740, + 1027, 761, 574, + 874, 859, 170, + 525, 964, 0, + 0, 1074, 0, + 0, 1190, 0, + 0, 1309, 0, + 0, 1431, 0, + 0, 1555, 0, + 0, 1682, 0, + 0, 1809, 0, + 0, 1938, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1424, 386, 1138, + 1419, 410, 1131, + 1412, 440, 1120, + 1402, 477, 1106, + 1389, 523, 1086, + 1370, 577, 1058, + 1343, 641, 1018, + 1306, 714, 958, + 1250, 797, 862, + 1162, 888, 692, + 1010, 987, 267, + 665, 1093, 0, + 0, 1204, 0, + 0, 1320, 0, + 0, 1439, 0, + 0, 1562, 0, + 0, 1687, 0, + 0, 1813, 0, + 0, 1941, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1562, 487, 1272, + 1558, 506, 1266, + 1552, 531, 1258, + 1545, 561, 1248, + 1535, 599, 1234, + 1522, 646, 1213, + 1503, 701, 1185, + 1477, 766, 1144, + 1439, 840, 1084, + 1383, 924, 987, + 1296, 1016, 813, + 1145, 1116, 370, + 802, 1222, 0, + 0, 1334, 0, + 0, 1450, 0, + 0, 1570, 0, + 0, 1693, 0, + 0, 1818, 0, + 0, 1945, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2331, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1697, 595, 1405, + 1695, 610, 1401, + 1691, 629, 1395, + 1685, 654, 1387, + 1678, 685, 1377, + 1668, 724, 1362, + 1655, 771, 1342, + 1636, 827, 1314, + 1610, 893, 1273, + 1572, 968, 1211, + 1517, 1053, 1113, + 1430, 1145, 937, + 1279, 1246, 479, + 939, 1352, 0, + 0, 1465, 0, + 0, 1581, 0, + 0, 1701, 0, + 0, 1824, 0, + 0, 1950, 0, + 0, 2076, 0, + 0, 2204, 0, + 0, 2334, 0, + 0, 2463, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1832, 707, 1538, + 1830, 719, 1535, + 1827, 735, 1531, + 1823, 755, 1525, + 1818, 780, 1517, + 1811, 811, 1507, + 1801, 851, 1492, + 1788, 898, 1472, + 1769, 955, 1443, + 1743, 1021, 1402, + 1705, 1097, 1340, + 1650, 1182, 1241, + 1563, 1275, 1062, + 1412, 1376, 594, + 1074, 1483, 0, + 0, 1596, 0, + 0, 1712, 0, + 0, 1833, 0, + 0, 1956, 0, + 0, 2081, 0, + 0, 2208, 0, + 0, 2336, 0, + 0, 2466, 0, + 0, 2595, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1966, 824, 1671, + 1965, 834, 1668, + 1963, 846, 1665, + 1960, 861, 1661, + 1956, 881, 1655, + 1951, 907, 1647, + 1943, 939, 1637, + 1934, 978, 1622, + 1920, 1026, 1602, + 1902, 1084, 1573, + 1875, 1150, 1531, + 1838, 1227, 1469, + 1782, 1312, 1370, + 1696, 1406, 1190, + 1545, 1507, 712, + 1209, 1614, 0, + 0, 1727, 0, + 0, 1844, 0, + 0, 1964, 0, + 0, 2088, 0, + 0, 2213, 0, + 0, 2340, 0, + 0, 2468, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 2100, 945, 1803, + 2099, 952, 1802, + 2097, 961, 1799, + 2095, 973, 1796, + 2092, 989, 1792, + 2088, 1009, 1786, + 2083, 1035, 1778, + 2076, 1067, 1768, + 2066, 1107, 1753, + 2053, 1156, 1732, + 2034, 1213, 1703, + 2008, 1280, 1662, + 1970, 1357, 1599, + 1915, 1442, 1499, + 1828, 1536, 1318, + 1678, 1638, 834, + 1342, 1745, 0, + 0, 1858, 0, + 0, 1976, 0, + 0, 2096, 0, + 0, 2220, 0, + 0, 2345, 0, + 0, 2472, 0, + 0, 2600, 0, + 0, 2730, 0, + 0, 2859, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2233, 1068, 1936, + 2232, 1074, 1935, + 2231, 1081, 1933, + 2230, 1090, 1930, + 2227, 1102, 1927, + 2225, 1118, 1923, + 2221, 1139, 1917, + 2215, 1164, 1909, + 2208, 1197, 1899, + 2198, 1237, 1884, + 2185, 1286, 1863, + 2166, 1343, 1834, + 2140, 1411, 1793, + 2103, 1488, 1730, + 2047, 1573, 1629, + 1961, 1668, 1447, + 1811, 1769, 958, + 1476, 1877, 0, + 0, 1990, 0, + 0, 2107, 0, + 0, 2228, 0, + 0, 2351, 0, + 0, 2477, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2862, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2366, 1194, 2068, + 2366, 1198, 2067, + 2365, 1203, 2066, + 2364, 1210, 2064, + 2362, 1220, 2062, + 2360, 1232, 2059, + 2357, 1248, 2054, + 2353, 1268, 2049, + 2348, 1294, 2041, + 2340, 1327, 2030, + 2331, 1367, 2015, + 2317, 1416, 1995, + 2299, 1474, 1966, + 2273, 1542, 1924, + 2235, 1619, 1861, + 2180, 1705, 1760, + 2093, 1799, 1577, + 1944, 1901, 1084, + 1609, 2009, 0, + 0, 2122, 0, + 0, 2239, 0, + 0, 2360, 0, + 0, 2483, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2499, 1321, 2200, + 2499, 1324, 2200, + 2498, 1328, 2199, + 2497, 1333, 2197, + 2496, 1340, 2196, + 2494, 1350, 2193, + 2492, 1362, 2190, + 2489, 1378, 2186, + 2485, 1399, 2180, + 2480, 1425, 2172, + 2473, 1458, 2161, + 2463, 1498, 2147, + 2450, 1547, 2126, + 2431, 1605, 2097, + 2405, 1673, 2055, + 2367, 1750, 1992, + 2312, 1836, 1891, + 2226, 1931, 1708, + 2076, 2032, 1211, + 1742, 2140, 0, + 0, 2254, 0, + 0, 2371, 0, + 0, 2492, 0, + 0, 2615, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2996, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2632, 1449, 2333, + 2631, 1451, 2332, + 2631, 1454, 2331, + 2630, 1458, 2330, + 2629, 1464, 2329, + 2628, 1471, 2327, + 2626, 1481, 2325, + 2624, 1493, 2322, + 2621, 1509, 2318, + 2617, 1530, 2312, + 2612, 1556, 2304, + 2605, 1589, 2293, + 2595, 1629, 2278, + 2582, 1678, 2258, + 2563, 1736, 2229, + 2537, 1804, 2187, + 2500, 1881, 2123, + 2444, 1968, 2023, + 2358, 2062, 1839, + 2208, 2164, 1340, + 1874, 2272, 0, + 0, 2385, 0, + 0, 2503, 0, + 0, 2624, 0, + 0, 2747, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3128, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2764, 1578, 2465, + 2764, 1580, 2465, + 2763, 1582, 2464, + 2763, 1585, 2463, + 2762, 1589, 2462, + 2761, 1595, 2461, + 2760, 1602, 2459, + 2759, 1612, 2457, + 2756, 1624, 2454, + 2753, 1640, 2449, + 2750, 1661, 2444, + 2744, 1687, 2436, + 2737, 1720, 2425, + 2727, 1760, 2410, + 2714, 1809, 2389, + 2695, 1868, 2360, + 2669, 1936, 2318, + 2632, 2013, 2255, + 2577, 2099, 2154, + 2490, 2194, 1970, + 2341, 2296, 1469, + 2007, 2404, 0, + 0, 2517, 0, + 0, 2635, 0, + 0, 2756, 0, + 0, 2879, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3260, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1708, 2597, + 2896, 1709, 2597, + 2896, 1711, 2596, + 2896, 1713, 2596, + 2895, 1716, 2595, + 2894, 1721, 2594, + 2893, 1726, 2593, + 2892, 1733, 2591, + 2891, 1743, 2589, + 2889, 1755, 2586, + 2886, 1771, 2581, + 2882, 1792, 2575, + 2876, 1818, 2568, + 2869, 1851, 2557, + 2859, 1892, 2542, + 2846, 1941, 2521, + 2828, 1999, 2492, + 2801, 2067, 2450, + 2764, 2145, 2387, + 2709, 2231, 2286, + 2622, 2326, 2101, + 2473, 2428, 1599, + 2139, 2536, 0, + 0, 2649, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3011, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3029, 1838, 2729, + 3029, 1839, 2729, + 3028, 1841, 2729, + 3028, 1842, 2728, + 3028, 1845, 2728, + 3027, 1848, 2727, + 3027, 1852, 2726, + 3026, 1858, 2725, + 3024, 1865, 2723, + 3023, 1874, 2721, + 3021, 1887, 2717, + 3018, 1903, 2713, + 3014, 1924, 2707, + 3009, 1950, 2699, + 3001, 1983, 2689, + 2992, 2024, 2674, + 2978, 2073, 2653, + 2960, 2131, 2624, + 2934, 2199, 2582, + 2896, 2277, 2519, + 2841, 2363, 2418, + 2755, 2458, 2233, + 2605, 2560, 1730, + 2272, 2668, 0, + 0, 2781, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3143, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3161, 1969, 2861, + 3161, 1970, 2861, + 3161, 1971, 2861, + 3160, 1972, 2861, + 3160, 1974, 2860, + 3160, 1976, 2860, + 3159, 1980, 2859, + 3159, 1984, 2858, + 3158, 1989, 2857, + 3157, 1996, 2855, + 3155, 2006, 2853, + 3153, 2018, 2849, + 3150, 2035, 2845, + 3146, 2055, 2839, + 3141, 2082, 2831, + 3134, 2115, 2821, + 3124, 2155, 2806, + 3110, 2205, 2785, + 3092, 2263, 2756, + 3066, 2331, 2714, + 3028, 2409, 2651, + 2973, 2495, 2549, + 2887, 2590, 2365, + 2737, 2692, 1861, + 2404, 2800, 0, + 0, 2913, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3293, 2100, 2994, + 3293, 2101, 2993, + 3293, 2102, 2993, + 3293, 2103, 2993, + 3293, 2104, 2993, + 3292, 2106, 2992, + 3292, 2108, 2992, + 3291, 2111, 2991, + 3291, 2115, 2990, + 3290, 2121, 2989, + 3289, 2128, 2987, + 3287, 2138, 2985, + 3285, 2150, 2981, + 3282, 2166, 2977, + 3278, 2187, 2971, + 3273, 2213, 2963, + 3266, 2246, 2953, + 3256, 2287, 2938, + 3242, 2336, 2917, + 3224, 2395, 2888, + 3198, 2463, 2846, + 3161, 2541, 2783, + 3105, 2627, 2681, + 3019, 2722, 2497, + 2870, 2824, 1992, + 2536, 2932, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3660, 0, + 3425, 2232, 3126, + 3425, 2232, 3126, + 3425, 2233, 3125, + 3425, 2233, 3125, + 3425, 2234, 3125, + 3425, 2236, 3125, + 3424, 2238, 3124, + 3424, 2240, 3124, + 3424, 2243, 3123, + 3423, 2247, 3122, + 3422, 2253, 3121, + 3421, 2260, 3119, + 3419, 2270, 3117, + 3417, 2282, 3113, + 3414, 2298, 3109, + 3410, 2319, 3103, + 3405, 2345, 3095, + 3398, 2378, 3085, + 3388, 2419, 3070, + 3375, 2468, 3049, + 3356, 2527, 3020, + 3330, 2595, 2978, + 3293, 2673, 2915, + 3237, 2759, 2813, + 3151, 2854, 2629, + 3002, 2956, 2124, + 2668, 3064, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2363, 3258, + 3557, 2364, 3258, + 3557, 2364, 3258, + 3557, 2365, 3258, + 3557, 2365, 3257, + 3557, 2366, 3257, + 3557, 2368, 3257, + 3557, 2370, 3256, + 3556, 2372, 3256, + 3556, 2375, 3255, + 3555, 2379, 3254, + 3554, 2385, 3253, + 3553, 2392, 3251, + 3551, 2402, 3249, + 3549, 2414, 3245, + 3546, 2430, 3241, + 3542, 2451, 3235, + 3537, 2477, 3227, + 3530, 2510, 3217, + 3520, 2551, 3202, + 3507, 2600, 3181, + 3488, 2659, 3152, + 3462, 2727, 3110, + 3425, 2805, 3047, + 3369, 2891, 2945, + 3283, 2986, 2760, + 3134, 3088, 2255, + 2800, 3196, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3690, 2495, 3390, + 3690, 2495, 3390, + 3690, 2496, 3390, + 3689, 2496, 3390, + 3689, 2497, 3390, + 3689, 2497, 3389, + 3689, 2498, 3389, + 3689, 2500, 3389, + 3689, 2501, 3388, + 3688, 2504, 3388, + 3688, 2507, 3387, + 3687, 2511, 3386, + 3686, 2517, 3385, + 3685, 2524, 3383, + 3683, 2534, 3381, + 3681, 2546, 3378, + 3678, 2562, 3373, + 3674, 2583, 3367, + 3669, 2609, 3360, + 3662, 2642, 3349, + 3652, 2683, 3334, + 3639, 2732, 3313, + 3620, 2791, 3284, + 3594, 2859, 3242, + 3557, 2937, 3179, + 3502, 3023, 3077, + 3415, 3118, 2892, + 3266, 3220, 2387, + 2933, 3328, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3822, 2627, 3522, + 3822, 2627, 3522, + 3822, 2627, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2629, 3522, + 3821, 2629, 3521, + 3821, 2630, 3521, + 3821, 2632, 3521, + 3821, 2633, 3521, + 3820, 2636, 3520, + 3820, 2639, 3519, + 3819, 2643, 3518, + 3818, 2649, 3517, + 3817, 2656, 3515, + 3816, 2666, 3513, + 3813, 2678, 3510, + 3810, 2694, 3505, + 3807, 2715, 3499, + 3801, 2741, 3492, + 3794, 2774, 3481, + 3784, 2815, 3466, + 3771, 2864, 3445, + 3752, 2923, 3416, + 3726, 2991, 3374, + 3689, 3069, 3311, + 3634, 3155, 3209, + 3547, 3250, 3024, + 3398, 3352, 2519, + 3065, 3460, 0, + 0, 3574, 0, + 0, 3691, 0, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3953, 2761, 3654, + 3953, 2762, 3653, + 3953, 2764, 3653, + 3953, 2765, 3653, + 3952, 2768, 3652, + 3952, 2771, 3651, + 3951, 2775, 3650, + 3950, 2781, 3649, + 3949, 2788, 3647, + 3948, 2798, 3645, + 3945, 2810, 3642, + 3943, 2826, 3637, + 3939, 2847, 3632, + 3933, 2873, 3624, + 3926, 2906, 3613, + 3916, 2947, 3598, + 3903, 2996, 3577, + 3884, 3055, 3548, + 3858, 3123, 3506, + 3821, 3201, 3443, + 3766, 3287, 3341, + 3679, 3382, 3156, + 3530, 3484, 2651, + 3197, 3592, 0, + 0, 3706, 0, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2893, 3786, + 4085, 2894, 3785, + 4085, 2896, 3785, + 4085, 2897, 3785, + 4085, 2900, 3784, + 4084, 2903, 3783, + 4083, 2907, 3782, + 4083, 2913, 3781, + 4081, 2920, 3779, + 4080, 2930, 3777, + 4078, 2942, 3774, + 4075, 2958, 3769, + 4071, 2979, 3764, + 4065, 3005, 3756, + 4058, 3038, 3745, + 4049, 3079, 3730, + 4035, 3128, 3709, + 4017, 3187, 3680, + 3991, 3255, 3638, + 3953, 3333, 3575, + 3898, 3419, 3473, + 3812, 3514, 3289, + 3662, 3616, 2783, + 3329, 3725, 0, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3025, 3918, + 4095, 3026, 3917, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3032, 3916, + 4095, 3035, 3915, + 4095, 3039, 3915, + 4095, 3045, 3913, + 4095, 3052, 3911, + 4095, 3062, 3909, + 4095, 3074, 3906, + 4095, 3090, 3902, + 4095, 3111, 3896, + 4095, 3137, 3888, + 4095, 3170, 3877, + 4095, 3211, 3862, + 4095, 3261, 3842, + 4095, 3319, 3812, + 4095, 3387, 3770, + 4085, 3465, 3707, + 4030, 3551, 3605, + 3944, 3646, 3421, + 3794, 3748, 2915, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3167, 4048, + 4095, 3171, 4047, + 4095, 3177, 4045, + 4095, 3184, 4044, + 4095, 3194, 4041, + 4095, 3206, 4038, + 4095, 3222, 4034, + 4095, 3243, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3343, 3994, + 4095, 3393, 3974, + 4095, 3451, 3944, + 4095, 3519, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 0, 0, + 0, 0, 0, + 0, 49, 0, + 0, 132, 0, + 0, 224, 0, + 0, 324, 0, + 0, 430, 0, + 0, 542, 0, + 0, 658, 0, + 0, 778, 0, + 0, 901, 0, + 0, 1025, 0, + 0, 1152, 0, + 0, 1280, 0, + 0, 1409, 0, + 0, 1539, 0, + 0, 1669, 0, + 0, 1800, 0, + 0, 1931, 0, + 0, 2063, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2589, 0, + 0, 2721, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3381, 0, + 0, 3514, 0, + 0, 3646, 0, + 104, 0, 80, + 0, 0, 0, + 0, 66, 0, + 0, 147, 0, + 0, 236, 0, + 0, 333, 0, + 0, 438, 0, + 0, 548, 0, + 0, 662, 0, + 0, 781, 0, + 0, 903, 0, + 0, 1028, 0, + 0, 1154, 0, + 0, 1281, 0, + 0, 1410, 0, + 0, 1540, 0, + 0, 1670, 0, + 0, 1800, 0, + 0, 1931, 0, + 0, 2063, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2721, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3381, 0, + 0, 3514, 0, + 0, 3646, 0, + 326, 0, 214, + 262, 20, 152, + 160, 88, 54, + 0, 165, 0, + 0, 251, 0, + 0, 346, 0, + 0, 447, 0, + 0, 555, 0, + 0, 668, 0, + 0, 786, 0, + 0, 907, 0, + 0, 1030, 0, + 0, 1156, 0, + 0, 1283, 0, + 0, 1411, 0, + 0, 1540, 0, + 0, 1670, 0, + 0, 1801, 0, + 0, 1932, 0, + 0, 2063, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 515, 0, 347, + 474, 52, 302, + 413, 116, 234, + 315, 188, 122, + 139, 271, 0, + 0, 361, 0, + 0, 460, 0, + 0, 565, 0, + 0, 676, 0, + 0, 792, 0, + 0, 911, 0, + 0, 1034, 0, + 0, 1158, 0, + 0, 1285, 0, + 0, 1413, 0, + 0, 1542, 0, + 0, 1671, 0, + 0, 1802, 0, + 0, 1932, 0, + 0, 2063, 0, + 0, 2195, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 686, 42, 481, + 658, 92, 447, + 618, 150, 399, + 558, 218, 324, + 463, 295, 200, + 295, 382, 0, + 0, 477, 0, + 0, 579, 0, + 0, 687, 0, + 0, 800, 0, + 0, 918, 0, + 0, 1039, 0, + 0, 1162, 0, + 0, 1288, 0, + 0, 1415, 0, + 0, 1543, 0, + 0, 1673, 0, + 0, 1802, 0, + 0, 1933, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 844, 96, 614, + 825, 140, 589, + 798, 192, 554, + 758, 255, 502, + 700, 327, 422, + 607, 408, 287, + 444, 498, 4, + 53, 596, 0, + 0, 700, 0, + 0, 811, 0, + 0, 926, 0, + 0, 1045, 0, + 0, 1167, 0, + 0, 1291, 0, + 0, 1418, 0, + 0, 1545, 0, + 0, 1674, 0, + 0, 1804, 0, + 0, 1934, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 996, 158, 746, + 982, 197, 728, + 963, 244, 702, + 936, 300, 666, + 897, 365, 611, + 839, 440, 527, + 748, 525, 382, + 589, 617, 65, + 214, 718, 0, + 0, 824, 0, + 0, 936, 0, + 0, 1053, 0, + 0, 1173, 0, + 0, 1296, 0, + 0, 1421, 0, + 0, 1548, 0, + 0, 1676, 0, + 0, 1805, 0, + 0, 1935, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1141, 230, 879, + 1131, 263, 865, + 1118, 304, 846, + 1099, 354, 820, + 1072, 412, 782, + 1034, 481, 726, + 976, 558, 638, + 887, 645, 484, + 730, 740, 135, + 367, 842, 0, + 0, 950, 0, + 0, 1064, 0, + 0, 1181, 0, + 0, 1302, 0, + 0, 1426, 0, + 0, 1552, 0, + 0, 1679, 0, + 0, 1807, 0, + 0, 1937, 0, + 0, 2067, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1284, 312, 1011, + 1276, 340, 1001, + 1266, 374, 987, + 1253, 417, 968, + 1234, 468, 941, + 1207, 529, 902, + 1169, 600, 844, + 1112, 679, 753, + 1024, 768, 593, + 869, 865, 214, + 514, 968, 0, + 0, 1078, 0, + 0, 1192, 0, + 0, 1311, 0, + 0, 1432, 0, + 0, 1557, 0, + 0, 1683, 0, + 0, 1810, 0, + 0, 1939, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1423, 402, 1144, + 1418, 425, 1136, + 1410, 454, 1126, + 1401, 490, 1112, + 1387, 534, 1092, + 1368, 587, 1064, + 1342, 650, 1025, + 1304, 722, 966, + 1247, 803, 872, + 1159, 893, 706, + 1006, 991, 302, + 657, 1096, 0, + 0, 1206, 0, + 0, 1322, 0, + 0, 1441, 0, + 0, 1563, 0, + 0, 1687, 0, + 0, 1814, 0, + 0, 1941, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1561, 500, 1276, + 1557, 518, 1270, + 1551, 542, 1263, + 1544, 572, 1252, + 1534, 609, 1238, + 1521, 655, 1218, + 1502, 709, 1190, + 1476, 773, 1150, + 1438, 846, 1090, + 1382, 929, 994, + 1294, 1020, 824, + 1142, 1119, 399, + 797, 1225, 0, + 0, 1336, 0, + 0, 1452, 0, + 0, 1571, 0, + 0, 1694, 0, + 0, 1819, 0, + 0, 1945, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1697, 605, 1408, + 1694, 619, 1404, + 1690, 639, 1398, + 1684, 663, 1391, + 1677, 694, 1380, + 1667, 732, 1366, + 1654, 778, 1346, + 1635, 833, 1317, + 1609, 898, 1277, + 1571, 973, 1216, + 1515, 1056, 1119, + 1428, 1148, 945, + 1277, 1248, 502, + 935, 1354, 0, + 0, 1466, 0, + 0, 1582, 0, + 0, 1702, 0, + 0, 1825, 0, + 0, 1950, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1832, 715, 1540, + 1830, 727, 1537, + 1827, 742, 1533, + 1823, 761, 1527, + 1817, 786, 1519, + 1810, 818, 1509, + 1800, 856, 1494, + 1787, 903, 1474, + 1768, 959, 1446, + 1742, 1025, 1405, + 1704, 1100, 1343, + 1649, 1185, 1245, + 1562, 1277, 1069, + 1411, 1378, 612, + 1071, 1484, 0, + 0, 1597, 0, + 0, 1713, 0, + 0, 1833, 0, + 0, 1956, 0, + 0, 2082, 0, + 0, 2208, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1966, 830, 1672, + 1964, 840, 1670, + 1962, 851, 1667, + 1959, 867, 1663, + 1955, 887, 1657, + 1950, 912, 1649, + 1943, 943, 1639, + 1933, 983, 1624, + 1920, 1030, 1604, + 1901, 1087, 1575, + 1875, 1153, 1534, + 1837, 1229, 1472, + 1782, 1314, 1373, + 1695, 1407, 1194, + 1544, 1508, 726, + 1206, 1615, 0, + 0, 1728, 0, + 0, 1845, 0, + 0, 1965, 0, + 0, 2088, 0, + 0, 2213, 0, + 0, 2340, 0, + 0, 2468, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 2100, 950, 1805, + 2099, 957, 1803, + 2097, 966, 1801, + 2095, 978, 1797, + 2092, 993, 1793, + 2088, 1013, 1787, + 2083, 1039, 1780, + 2075, 1071, 1769, + 2066, 1110, 1754, + 2052, 1159, 1734, + 2034, 1216, 1705, + 2007, 1282, 1663, + 1970, 1359, 1601, + 1914, 1444, 1502, + 1828, 1538, 1322, + 1678, 1639, 844, + 1341, 1746, 0, + 0, 1859, 0, + 0, 1976, 0, + 0, 2097, 0, + 0, 2220, 0, + 0, 2345, 0, + 0, 2472, 0, + 0, 2600, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2233, 1072, 1937, + 2232, 1077, 1935, + 2231, 1084, 1934, + 2229, 1093, 1931, + 2227, 1106, 1928, + 2224, 1121, 1924, + 2220, 1142, 1918, + 2215, 1167, 1910, + 2208, 1200, 1900, + 2198, 1239, 1885, + 2185, 1288, 1864, + 2166, 1345, 1836, + 2140, 1412, 1794, + 2103, 1489, 1731, + 2047, 1575, 1631, + 1960, 1669, 1450, + 1810, 1770, 966, + 1475, 1878, 0, + 0, 1990, 0, + 0, 2108, 0, + 0, 2228, 0, + 0, 2352, 0, + 0, 2477, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2366, 1196, 2069, + 2365, 1200, 2068, + 2365, 1206, 2067, + 2363, 1213, 2065, + 2362, 1222, 2063, + 2360, 1234, 2059, + 2357, 1250, 2055, + 2353, 1271, 2049, + 2347, 1297, 2041, + 2340, 1329, 2031, + 2330, 1369, 2016, + 2317, 1418, 1995, + 2298, 1475, 1966, + 2272, 1543, 1925, + 2235, 1620, 1862, + 2180, 1706, 1762, + 2093, 1800, 1579, + 1943, 1901, 1090, + 1608, 2009, 0, + 0, 2122, 0, + 0, 2239, 0, + 0, 2360, 0, + 0, 2483, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2499, 1323, 2201, + 2498, 1326, 2200, + 2498, 1330, 2199, + 2497, 1335, 2198, + 2496, 1342, 2196, + 2494, 1352, 2194, + 2492, 1364, 2191, + 2489, 1380, 2186, + 2485, 1400, 2181, + 2480, 1426, 2173, + 2473, 1459, 2162, + 2463, 1499, 2147, + 2449, 1548, 2127, + 2431, 1606, 2098, + 2405, 1674, 2056, + 2367, 1751, 1993, + 2312, 1837, 1892, + 2225, 1931, 1709, + 2076, 2033, 1216, + 1741, 2141, 0, + 0, 2254, 0, + 0, 2371, 0, + 0, 2492, 0, + 0, 2615, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2996, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2631, 1450, 2333, + 2631, 1453, 2333, + 2631, 1456, 2332, + 2630, 1460, 2331, + 2629, 1465, 2330, + 2628, 1473, 2328, + 2626, 1482, 2325, + 2624, 1494, 2322, + 2621, 1510, 2318, + 2617, 1531, 2312, + 2612, 1557, 2304, + 2605, 1590, 2294, + 2595, 1630, 2279, + 2582, 1679, 2258, + 2563, 1737, 2229, + 2537, 1805, 2187, + 2500, 1882, 2124, + 2444, 1968, 2023, + 2358, 2063, 1840, + 2208, 2164, 1343, + 1874, 2272, 0, + 0, 2386, 0, + 0, 2503, 0, + 0, 2624, 0, + 0, 2747, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3128, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2764, 1579, 2465, + 2764, 1581, 2465, + 2763, 1583, 2464, + 2763, 1586, 2464, + 2762, 1590, 2463, + 2761, 1596, 2461, + 2760, 1603, 2460, + 2758, 1613, 2457, + 2756, 1625, 2454, + 2753, 1641, 2450, + 2749, 1662, 2444, + 2744, 1688, 2436, + 2737, 1721, 2425, + 2727, 1761, 2410, + 2714, 1810, 2390, + 2695, 1868, 2361, + 2669, 1936, 2319, + 2632, 2013, 2256, + 2576, 2100, 2155, + 2490, 2194, 1971, + 2341, 2296, 1472, + 2006, 2404, 0, + 0, 2518, 0, + 0, 2635, 0, + 0, 2756, 0, + 0, 2879, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1709, 2597, + 2896, 1710, 2597, + 2896, 1712, 2597, + 2895, 1714, 2596, + 2895, 1717, 2595, + 2894, 1721, 2594, + 2893, 1727, 2593, + 2892, 1734, 2591, + 2891, 1744, 2589, + 2888, 1756, 2586, + 2886, 1772, 2581, + 2882, 1793, 2576, + 2876, 1819, 2568, + 2869, 1852, 2557, + 2859, 1892, 2542, + 2846, 1942, 2522, + 2827, 2000, 2492, + 2801, 2068, 2450, + 2764, 2145, 2387, + 2709, 2232, 2286, + 2622, 2326, 2102, + 2473, 2428, 1601, + 2139, 2536, 0, + 0, 2650, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3011, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3029, 1839, 2729, + 3029, 1840, 2729, + 3028, 1841, 2729, + 3028, 1843, 2729, + 3028, 1845, 2728, + 3027, 1849, 2727, + 3026, 1853, 2726, + 3026, 1858, 2725, + 3024, 1865, 2723, + 3023, 1875, 2721, + 3021, 1887, 2718, + 3018, 1904, 2713, + 3014, 1924, 2708, + 3009, 1950, 2700, + 3001, 1983, 2689, + 2992, 2024, 2674, + 2978, 2073, 2653, + 2960, 2132, 2624, + 2934, 2199, 2582, + 2896, 2277, 2519, + 2841, 2363, 2418, + 2754, 2458, 2234, + 2605, 2560, 1732, + 2271, 2668, 0, + 0, 2781, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3161, 1970, 2862, + 3161, 1970, 2861, + 3161, 1971, 2861, + 3160, 1973, 2861, + 3160, 1975, 2860, + 3160, 1977, 2860, + 3159, 1980, 2859, + 3159, 1984, 2858, + 3158, 1990, 2857, + 3157, 1997, 2855, + 3155, 2006, 2853, + 3153, 2019, 2850, + 3150, 2035, 2845, + 3146, 2056, 2839, + 3141, 2082, 2832, + 3133, 2115, 2821, + 3124, 2156, 2806, + 3110, 2205, 2785, + 3092, 2263, 2756, + 3066, 2331, 2714, + 3028, 2409, 2651, + 2973, 2495, 2550, + 2887, 2590, 2365, + 2737, 2692, 1862, + 2404, 2800, 0, + 0, 2914, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3293, 2101, 2994, + 3293, 2101, 2994, + 3293, 2102, 2993, + 3293, 2103, 2993, + 3293, 2104, 2993, + 3292, 2106, 2992, + 3292, 2109, 2992, + 3291, 2112, 2991, + 3291, 2116, 2990, + 3290, 2121, 2989, + 3289, 2129, 2987, + 3287, 2138, 2985, + 3285, 2151, 2982, + 3282, 2167, 2977, + 3278, 2187, 2971, + 3273, 2214, 2963, + 3266, 2247, 2953, + 3256, 2287, 2938, + 3242, 2337, 2917, + 3224, 2395, 2888, + 3198, 2463, 2846, + 3160, 2541, 2783, + 3105, 2627, 2681, + 3019, 2722, 2497, + 2870, 2824, 1993, + 2536, 2932, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3660, 0, + 3425, 2232, 3126, + 3425, 2232, 3126, + 3425, 2233, 3126, + 3425, 2234, 3125, + 3425, 2235, 3125, + 3425, 2236, 3125, + 3424, 2238, 3124, + 3424, 2240, 3124, + 3424, 2243, 3123, + 3423, 2248, 3122, + 3422, 2253, 3121, + 3421, 2260, 3119, + 3419, 2270, 3117, + 3417, 2282, 3114, + 3414, 2299, 3109, + 3410, 2319, 3103, + 3405, 2346, 3095, + 3398, 2379, 3085, + 3388, 2419, 3070, + 3375, 2469, 3049, + 3356, 2527, 3020, + 3330, 2595, 2978, + 3293, 2673, 2915, + 3237, 2759, 2813, + 3151, 2854, 2629, + 3002, 2956, 2124, + 2668, 3064, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2364, 3258, + 3557, 2364, 3258, + 3557, 2364, 3258, + 3557, 2365, 3258, + 3557, 2366, 3257, + 3557, 2367, 3257, + 3557, 2368, 3257, + 3557, 2370, 3256, + 3556, 2372, 3256, + 3556, 2375, 3255, + 3555, 2379, 3254, + 3554, 2385, 3253, + 3553, 2392, 3251, + 3551, 2402, 3249, + 3549, 2414, 3246, + 3546, 2430, 3241, + 3542, 2451, 3235, + 3537, 2477, 3228, + 3530, 2510, 3217, + 3520, 2551, 3202, + 3507, 2600, 3181, + 3488, 2659, 3152, + 3462, 2727, 3110, + 3425, 2805, 3047, + 3369, 2891, 2945, + 3283, 2986, 2761, + 3134, 3088, 2256, + 2800, 3196, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3690, 2495, 3390, + 3690, 2495, 3390, + 3690, 2496, 3390, + 3689, 2496, 3390, + 3689, 2497, 3390, + 3689, 2497, 3389, + 3689, 2498, 3389, + 3689, 2500, 3389, + 3689, 2502, 3389, + 3688, 2504, 3388, + 3688, 2507, 3387, + 3687, 2511, 3386, + 3686, 2517, 3385, + 3685, 2524, 3383, + 3683, 2534, 3381, + 3681, 2546, 3378, + 3678, 2562, 3373, + 3674, 2583, 3367, + 3669, 2609, 3360, + 3662, 2642, 3349, + 3652, 2683, 3334, + 3639, 2732, 3313, + 3620, 2791, 3284, + 3594, 2859, 3242, + 3557, 2937, 3179, + 3502, 3023, 3077, + 3415, 3118, 2893, + 3266, 3220, 2387, + 2933, 3328, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3822, 2627, 3522, + 3822, 2627, 3522, + 3822, 2627, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3821, 2629, 3522, + 3821, 2629, 3522, + 3821, 2630, 3521, + 3821, 2632, 3521, + 3821, 2634, 3521, + 3820, 2636, 3520, + 3820, 2639, 3519, + 3819, 2643, 3518, + 3818, 2649, 3517, + 3817, 2656, 3515, + 3815, 2666, 3513, + 3813, 2678, 3510, + 3810, 2694, 3505, + 3807, 2715, 3500, + 3801, 2741, 3492, + 3794, 2774, 3481, + 3784, 2815, 3466, + 3771, 2864, 3445, + 3752, 2923, 3416, + 3726, 2991, 3374, + 3689, 3069, 3311, + 3634, 3155, 3209, + 3547, 3250, 3025, + 3398, 3352, 2519, + 3065, 3460, 0, + 0, 3574, 0, + 0, 3691, 0, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3953, 2761, 3654, + 3953, 2762, 3653, + 3953, 2764, 3653, + 3953, 2766, 3653, + 3952, 2768, 3652, + 3952, 2771, 3651, + 3951, 2775, 3650, + 3950, 2781, 3649, + 3949, 2788, 3647, + 3948, 2798, 3645, + 3945, 2810, 3642, + 3943, 2826, 3637, + 3939, 2847, 3632, + 3933, 2873, 3624, + 3926, 2906, 3613, + 3916, 2947, 3598, + 3903, 2996, 3577, + 3884, 3055, 3548, + 3858, 3123, 3506, + 3821, 3201, 3443, + 3766, 3287, 3341, + 3679, 3382, 3157, + 3530, 3484, 2651, + 3197, 3592, 0, + 0, 3706, 0, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2893, 3786, + 4085, 2894, 3785, + 4085, 2896, 3785, + 4085, 2898, 3785, + 4085, 2900, 3784, + 4084, 2903, 3783, + 4083, 2907, 3782, + 4083, 2913, 3781, + 4081, 2920, 3779, + 4080, 2930, 3777, + 4078, 2942, 3774, + 4075, 2958, 3769, + 4071, 2979, 3764, + 4065, 3005, 3756, + 4058, 3038, 3745, + 4049, 3079, 3730, + 4035, 3129, 3709, + 4017, 3187, 3680, + 3991, 3255, 3638, + 3953, 3333, 3575, + 3898, 3419, 3473, + 3811, 3514, 3289, + 3662, 3616, 2783, + 3329, 3725, 0, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3032, 3916, + 4095, 3035, 3916, + 4095, 3039, 3915, + 4095, 3045, 3913, + 4095, 3052, 3911, + 4095, 3062, 3909, + 4095, 3074, 3906, + 4095, 3090, 3902, + 4095, 3111, 3896, + 4095, 3137, 3888, + 4095, 3171, 3877, + 4095, 3211, 3862, + 4095, 3261, 3842, + 4095, 3319, 3812, + 4095, 3387, 3770, + 4085, 3465, 3707, + 4030, 3551, 3605, + 3944, 3646, 3421, + 3794, 3748, 2915, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3167, 4048, + 4095, 3171, 4047, + 4095, 3177, 4045, + 4095, 3184, 4044, + 4095, 3194, 4041, + 4095, 3206, 4038, + 4095, 3222, 4034, + 4095, 3243, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3343, 3994, + 4095, 3393, 3974, + 4095, 3451, 3944, + 4095, 3519, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 0, 36, + 0, 24, 0, + 0, 91, 0, + 0, 168, 0, + 0, 254, 0, + 0, 348, 0, + 0, 449, 0, + 0, 557, 0, + 0, 669, 0, + 0, 787, 0, + 0, 907, 0, + 0, 1031, 0, + 0, 1156, 0, + 0, 1283, 0, + 0, 1411, 0, + 0, 1541, 0, + 0, 1671, 0, + 0, 1801, 0, + 0, 1932, 0, + 0, 2063, 0, + 0, 2195, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 67, 0, 149, + 0, 42, 77, + 0, 107, 0, + 0, 181, 0, + 0, 264, 0, + 0, 356, 0, + 0, 456, 0, + 0, 562, 0, + 0, 674, 0, + 0, 790, 0, + 0, 910, 0, + 0, 1033, 0, + 0, 1158, 0, + 0, 1284, 0, + 0, 1412, 0, + 0, 1541, 0, + 0, 1671, 0, + 0, 1801, 0, + 0, 1932, 0, + 0, 2063, 0, + 0, 2195, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 303, 13, 267, + 236, 65, 212, + 127, 127, 127, + 0, 198, 0, + 0, 279, 0, + 0, 368, 0, + 0, 465, 0, + 0, 570, 0, + 0, 680, 0, + 0, 795, 0, + 0, 913, 0, + 0, 1035, 0, + 0, 1160, 0, + 0, 1286, 0, + 0, 1413, 0, + 0, 1542, 0, + 0, 1672, 0, + 0, 1802, 0, + 0, 1933, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 500, 45, 387, + 458, 94, 346, + 394, 152, 284, + 292, 220, 186, + 105, 297, 8, + 0, 383, 0, + 0, 478, 0, + 0, 579, 0, + 0, 687, 0, + 0, 801, 0, + 0, 918, 0, + 0, 1039, 0, + 0, 1162, 0, + 0, 1288, 0, + 0, 1415, 0, + 0, 1543, 0, + 0, 1673, 0, + 0, 1803, 0, + 0, 1933, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 676, 85, 511, + 647, 130, 480, + 606, 184, 434, + 545, 248, 366, + 447, 321, 254, + 271, 403, 43, + 0, 494, 0, + 0, 592, 0, + 0, 697, 0, + 0, 808, 0, + 0, 924, 0, + 0, 1044, 0, + 0, 1166, 0, + 0, 1291, 0, + 0, 1417, 0, + 0, 1545, 0, + 0, 1674, 0, + 0, 1803, 0, + 0, 1934, 0, + 0, 2064, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 837, 134, 636, + 818, 175, 613, + 790, 224, 579, + 750, 282, 531, + 690, 350, 456, + 596, 428, 332, + 427, 514, 85, + 12, 609, 0, + 0, 711, 0, + 0, 819, 0, + 0, 932, 0, + 0, 1050, 0, + 0, 1171, 0, + 0, 1294, 0, + 0, 1420, 0, + 0, 1547, 0, + 0, 1675, 0, + 0, 1805, 0, + 0, 1935, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 991, 192, 763, + 977, 228, 746, + 957, 272, 721, + 930, 325, 686, + 891, 387, 634, + 832, 459, 554, + 740, 540, 419, + 577, 630, 136, + 186, 728, 0, + 0, 832, 0, + 0, 943, 0, + 0, 1058, 0, + 0, 1177, 0, + 0, 1299, 0, + 0, 1423, 0, + 0, 1550, 0, + 0, 1677, 0, + 0, 1806, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1138, 259, 892, + 1128, 290, 878, + 1114, 329, 860, + 1095, 376, 834, + 1068, 432, 798, + 1029, 497, 743, + 971, 572, 659, + 880, 657, 514, + 721, 749, 197, + 347, 850, 0, + 0, 956, 0, + 0, 1068, 0, + 0, 1185, 0, + 0, 1305, 0, + 0, 1428, 0, + 0, 1553, 0, + 0, 1680, 0, + 0, 1808, 0, + 0, 1937, 0, + 0, 2067, 0, + 0, 2198, 0, + 0, 2328, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1281, 336, 1021, + 1274, 362, 1011, + 1264, 395, 997, + 1250, 436, 978, + 1231, 486, 952, + 1204, 544, 914, + 1166, 613, 858, + 1109, 690, 770, + 1019, 777, 616, + 862, 872, 267, + 499, 974, 0, + 0, 1082, 0, + 0, 1196, 0, + 0, 1314, 0, + 0, 1435, 0, + 0, 1558, 0, + 0, 1684, 0, + 0, 1811, 0, + 0, 1939, 0, + 0, 2069, 0, + 0, 2199, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1421, 422, 1151, + 1416, 444, 1143, + 1408, 472, 1133, + 1398, 506, 1119, + 1385, 549, 1100, + 1366, 601, 1073, + 1339, 661, 1034, + 1301, 732, 976, + 1245, 811, 885, + 1156, 900, 725, + 1001, 997, 346, + 646, 1100, 0, + 0, 1210, 0, + 0, 1324, 0, + 0, 1443, 0, + 0, 1565, 0, + 0, 1689, 0, + 0, 1815, 0, + 0, 1942, 0, + 0, 2071, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1559, 516, 1281, + 1555, 534, 1276, + 1550, 557, 1268, + 1543, 586, 1258, + 1533, 622, 1244, + 1519, 666, 1224, + 1500, 719, 1197, + 1474, 782, 1157, + 1436, 854, 1098, + 1380, 935, 1004, + 1291, 1025, 838, + 1138, 1123, 434, + 789, 1228, 0, + 0, 1339, 0, + 0, 1454, 0, + 0, 1573, 0, + 0, 1695, 0, + 0, 1820, 0, + 0, 1946, 0, + 0, 2074, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1696, 617, 1412, + 1693, 632, 1408, + 1689, 651, 1402, + 1683, 674, 1395, + 1676, 704, 1384, + 1666, 741, 1370, + 1653, 787, 1350, + 1634, 841, 1322, + 1608, 905, 1282, + 1570, 978, 1222, + 1514, 1061, 1126, + 1426, 1152, 956, + 1274, 1251, 531, + 929, 1357, 0, + 0, 1468, 0, + 0, 1584, 0, + 0, 1703, 0, + 0, 1826, 0, + 0, 1951, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1831, 725, 1543, + 1829, 737, 1540, + 1826, 752, 1536, + 1822, 771, 1530, + 1817, 795, 1523, + 1809, 826, 1512, + 1800, 864, 1498, + 1786, 910, 1478, + 1767, 965, 1449, + 1741, 1030, 1409, + 1703, 1105, 1348, + 1648, 1188, 1251, + 1560, 1280, 1077, + 1409, 1380, 634, + 1067, 1486, 0, + 0, 1598, 0, + 0, 1714, 0, + 0, 1834, 0, + 0, 1957, 0, + 0, 2082, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1965, 838, 1675, + 1964, 847, 1672, + 1962, 859, 1669, + 1959, 874, 1665, + 1955, 894, 1659, + 1949, 918, 1652, + 1942, 950, 1641, + 1932, 988, 1626, + 1919, 1035, 1606, + 1900, 1092, 1578, + 1874, 1157, 1537, + 1837, 1232, 1475, + 1781, 1317, 1377, + 1694, 1409, 1201, + 1543, 1510, 744, + 1203, 1617, 0, + 0, 1729, 0, + 0, 1845, 0, + 0, 1966, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 2099, 956, 1806, + 2098, 963, 1805, + 2097, 972, 1802, + 2094, 983, 1799, + 2091, 999, 1795, + 2087, 1019, 1789, + 2082, 1044, 1781, + 2075, 1076, 1771, + 2065, 1115, 1756, + 2052, 1162, 1736, + 2033, 1219, 1707, + 2007, 1285, 1666, + 1969, 1361, 1604, + 1914, 1446, 1505, + 1827, 1539, 1326, + 1676, 1640, 858, + 1338, 1747, 0, + 0, 1860, 0, + 0, 1977, 0, + 0, 2097, 0, + 0, 2220, 0, + 0, 2345, 0, + 0, 2472, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2233, 1076, 1938, + 2232, 1082, 1937, + 2231, 1089, 1935, + 2229, 1098, 1933, + 2227, 1110, 1929, + 2224, 1125, 1925, + 2220, 1146, 1919, + 2215, 1171, 1912, + 2208, 1203, 1901, + 2198, 1243, 1886, + 2184, 1291, 1866, + 2166, 1348, 1837, + 2140, 1415, 1796, + 2102, 1491, 1733, + 2047, 1576, 1634, + 1960, 1670, 1454, + 1810, 1771, 976, + 1473, 1878, 0, + 0, 1991, 0, + 0, 2108, 0, + 0, 2229, 0, + 0, 2352, 0, + 0, 2477, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2366, 1200, 2070, + 2365, 1204, 2069, + 2364, 1209, 2068, + 2363, 1216, 2066, + 2361, 1226, 2063, + 2359, 1238, 2060, + 2356, 1253, 2056, + 2352, 1274, 2050, + 2347, 1299, 2042, + 2340, 1332, 2032, + 2330, 1371, 2017, + 2317, 1420, 1997, + 2298, 1477, 1968, + 2272, 1544, 1926, + 2235, 1621, 1863, + 2179, 1707, 1763, + 2092, 1801, 1582, + 1943, 1902, 1098, + 1607, 2010, 0, + 0, 2123, 0, + 0, 2240, 0, + 0, 2360, 0, + 0, 2484, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2499, 1325, 2202, + 2498, 1328, 2201, + 2498, 1332, 2200, + 2497, 1338, 2199, + 2495, 1345, 2197, + 2494, 1354, 2195, + 2492, 1367, 2191, + 2489, 1382, 2187, + 2485, 1403, 2181, + 2480, 1429, 2174, + 2472, 1461, 2163, + 2463, 1501, 2148, + 2449, 1550, 2128, + 2431, 1608, 2099, + 2404, 1675, 2057, + 2367, 1752, 1994, + 2312, 1838, 1894, + 2225, 1932, 1711, + 2075, 2033, 1222, + 1740, 2141, 0, + 0, 2254, 0, + 0, 2371, 0, + 0, 2492, 0, + 0, 2616, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2996, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2631, 1452, 2334, + 2631, 1455, 2333, + 2630, 1458, 2332, + 2630, 1462, 2331, + 2629, 1467, 2330, + 2628, 1474, 2328, + 2626, 1484, 2326, + 2624, 1496, 2323, + 2621, 1512, 2319, + 2617, 1533, 2313, + 2612, 1559, 2305, + 2605, 1591, 2294, + 2595, 1631, 2279, + 2581, 1680, 2259, + 2563, 1738, 2230, + 2537, 1806, 2188, + 2499, 1883, 2125, + 2444, 1969, 2024, + 2357, 2063, 1842, + 2208, 2165, 1348, + 1873, 2273, 0, + 0, 2386, 0, + 0, 2503, 0, + 0, 2624, 0, + 0, 2748, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2764, 1581, 2466, + 2764, 1582, 2465, + 2763, 1585, 2465, + 2763, 1588, 2464, + 2762, 1592, 2463, + 2761, 1597, 2462, + 2760, 1605, 2460, + 2758, 1614, 2458, + 2756, 1626, 2454, + 2753, 1642, 2450, + 2749, 1663, 2444, + 2744, 1689, 2436, + 2737, 1722, 2426, + 2727, 1762, 2411, + 2714, 1811, 2390, + 2695, 1869, 2361, + 2669, 1937, 2319, + 2632, 2014, 2256, + 2576, 2100, 2155, + 2490, 2195, 1972, + 2340, 2297, 1475, + 2006, 2405, 0, + 0, 2518, 0, + 0, 2635, 0, + 0, 2756, 0, + 0, 2880, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1710, 2598, + 2896, 1711, 2597, + 2896, 1713, 2597, + 2895, 1715, 2596, + 2895, 1718, 2596, + 2894, 1723, 2595, + 2893, 1728, 2593, + 2892, 1735, 2592, + 2891, 1745, 2589, + 2888, 1757, 2586, + 2885, 1773, 2582, + 2882, 1794, 2576, + 2876, 1820, 2568, + 2869, 1853, 2557, + 2859, 1893, 2542, + 2846, 1942, 2522, + 2827, 2001, 2493, + 2801, 2068, 2451, + 2764, 2146, 2388, + 2709, 2232, 2287, + 2622, 2326, 2103, + 2473, 2428, 1604, + 2139, 2536, 0, + 0, 2650, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3012, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3029, 1840, 2730, + 3028, 1841, 2729, + 3028, 1842, 2729, + 3028, 1844, 2729, + 3028, 1846, 2728, + 3027, 1849, 2727, + 3026, 1854, 2726, + 3026, 1859, 2725, + 3024, 1866, 2723, + 3023, 1876, 2721, + 3021, 1888, 2718, + 3018, 1904, 2714, + 3014, 1925, 2708, + 3008, 1951, 2700, + 3001, 1984, 2689, + 2992, 2025, 2674, + 2978, 2074, 2654, + 2960, 2132, 2625, + 2933, 2200, 2582, + 2896, 2277, 2519, + 2841, 2364, 2418, + 2754, 2458, 2234, + 2605, 2560, 1733, + 2271, 2668, 0, + 0, 2782, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3161, 1970, 2862, + 3161, 1971, 2862, + 3161, 1972, 2861, + 3160, 1973, 2861, + 3160, 1975, 2861, + 3160, 1978, 2860, + 3159, 1981, 2859, + 3159, 1985, 2858, + 3158, 1990, 2857, + 3156, 1998, 2855, + 3155, 2007, 2853, + 3153, 2020, 2850, + 3150, 2036, 2845, + 3146, 2056, 2840, + 3141, 2083, 2832, + 3133, 2115, 2821, + 3124, 2156, 2806, + 3110, 2205, 2785, + 3092, 2264, 2756, + 3066, 2332, 2714, + 3028, 2409, 2651, + 2973, 2495, 2550, + 2887, 2590, 2366, + 2737, 2692, 1864, + 2403, 2800, 0, + 0, 2914, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3293, 2101, 2994, + 3293, 2102, 2994, + 3293, 2103, 2993, + 3293, 2104, 2993, + 3293, 2105, 2993, + 3292, 2107, 2993, + 3292, 2109, 2992, + 3291, 2112, 2991, + 3291, 2116, 2990, + 3290, 2122, 2989, + 3289, 2129, 2987, + 3287, 2139, 2985, + 3285, 2151, 2982, + 3282, 2167, 2977, + 3278, 2188, 2972, + 3273, 2214, 2964, + 3266, 2247, 2953, + 3256, 2288, 2938, + 3242, 2337, 2917, + 3224, 2395, 2888, + 3198, 2463, 2846, + 3160, 2541, 2783, + 3105, 2627, 2682, + 3019, 2722, 2497, + 2869, 2824, 1994, + 2536, 2932, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3660, 0, + 3425, 2232, 3126, + 3425, 2233, 3126, + 3425, 2233, 3126, + 3425, 2234, 3125, + 3425, 2235, 3125, + 3425, 2236, 3125, + 3424, 2238, 3125, + 3424, 2241, 3124, + 3424, 2244, 3123, + 3423, 2248, 3122, + 3422, 2253, 3121, + 3421, 2261, 3119, + 3419, 2270, 3117, + 3417, 2283, 3114, + 3414, 2299, 3109, + 3410, 2320, 3103, + 3405, 2346, 3096, + 3398, 2379, 3085, + 3388, 2420, 3070, + 3375, 2469, 3049, + 3356, 2527, 3020, + 3330, 2595, 2978, + 3293, 2673, 2915, + 3237, 2759, 2814, + 3151, 2854, 2629, + 3002, 2956, 2125, + 2668, 3064, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2364, 3258, + 3557, 2364, 3258, + 3557, 2365, 3258, + 3557, 2365, 3258, + 3557, 2366, 3257, + 3557, 2367, 3257, + 3557, 2368, 3257, + 3557, 2370, 3257, + 3556, 2372, 3256, + 3556, 2375, 3255, + 3555, 2380, 3254, + 3554, 2385, 3253, + 3553, 2392, 3251, + 3551, 2402, 3249, + 3549, 2414, 3246, + 3546, 2431, 3241, + 3542, 2451, 3235, + 3537, 2478, 3228, + 3530, 2511, 3217, + 3520, 2551, 3202, + 3507, 2601, 3181, + 3488, 2659, 3152, + 3462, 2727, 3110, + 3425, 2805, 3047, + 3369, 2891, 2945, + 3283, 2986, 2761, + 3134, 3088, 2256, + 2800, 3196, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3690, 2495, 3390, + 3690, 2496, 3390, + 3690, 2496, 3390, + 3689, 2496, 3390, + 3689, 2497, 3390, + 3689, 2498, 3389, + 3689, 2499, 3389, + 3689, 2500, 3389, + 3689, 2502, 3389, + 3688, 2504, 3388, + 3688, 2507, 3387, + 3687, 2511, 3386, + 3686, 2517, 3385, + 3685, 2524, 3383, + 3683, 2534, 3381, + 3681, 2546, 3378, + 3678, 2562, 3373, + 3674, 2583, 3368, + 3669, 2610, 3360, + 3662, 2643, 3349, + 3652, 2683, 3334, + 3639, 2733, 3313, + 3620, 2791, 3284, + 3594, 2859, 3242, + 3557, 2937, 3179, + 3502, 3023, 3077, + 3415, 3118, 2893, + 3266, 3220, 2388, + 2932, 3328, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3822, 2627, 3522, + 3822, 2627, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3821, 2629, 3522, + 3821, 2630, 3522, + 3821, 2631, 3521, + 3821, 2632, 3521, + 3821, 2634, 3521, + 3820, 2636, 3520, + 3820, 2639, 3519, + 3819, 2643, 3518, + 3818, 2649, 3517, + 3817, 2656, 3515, + 3815, 2666, 3513, + 3813, 2678, 3510, + 3810, 2694, 3505, + 3807, 2715, 3500, + 3801, 2742, 3492, + 3794, 2775, 3481, + 3784, 2815, 3466, + 3771, 2865, 3445, + 3752, 2923, 3416, + 3726, 2991, 3374, + 3689, 3069, 3311, + 3634, 3155, 3209, + 3547, 3250, 3025, + 3398, 3352, 2520, + 3065, 3460, 0, + 0, 3574, 0, + 0, 3691, 0, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3953, 2762, 3654, + 3953, 2763, 3653, + 3953, 2764, 3653, + 3953, 2766, 3653, + 3952, 2768, 3652, + 3952, 2771, 3651, + 3951, 2775, 3650, + 3950, 2781, 3649, + 3949, 2788, 3647, + 3948, 2798, 3645, + 3945, 2810, 3642, + 3943, 2826, 3637, + 3939, 2847, 3632, + 3933, 2873, 3624, + 3926, 2907, 3613, + 3916, 2947, 3598, + 3903, 2997, 3577, + 3884, 3055, 3548, + 3858, 3123, 3506, + 3821, 3201, 3443, + 3766, 3287, 3341, + 3679, 3382, 3157, + 3530, 3484, 2651, + 3197, 3592, 0, + 0, 3706, 0, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4085, 2895, 3785, + 4085, 2896, 3785, + 4085, 2898, 3785, + 4085, 2900, 3784, + 4084, 2903, 3783, + 4083, 2907, 3782, + 4083, 2913, 3781, + 4081, 2920, 3779, + 4080, 2930, 3777, + 4078, 2942, 3774, + 4075, 2958, 3770, + 4071, 2979, 3764, + 4065, 3005, 3756, + 4058, 3039, 3745, + 4049, 3079, 3730, + 4035, 3129, 3709, + 4017, 3187, 3680, + 3991, 3255, 3638, + 3953, 3333, 3575, + 3898, 3419, 3473, + 3811, 3514, 3289, + 3662, 3616, 2783, + 3329, 3725, 0, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3032, 3916, + 4095, 3035, 3916, + 4095, 3039, 3915, + 4095, 3045, 3913, + 4095, 3052, 3911, + 4095, 3062, 3909, + 4095, 3074, 3906, + 4095, 3090, 3902, + 4095, 3111, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3211, 3862, + 4095, 3261, 3842, + 4095, 3319, 3812, + 4095, 3387, 3770, + 4085, 3465, 3707, + 4030, 3551, 3606, + 3944, 3646, 3421, + 3794, 3748, 2915, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3167, 4048, + 4095, 3171, 4047, + 4095, 3177, 4045, + 4095, 3184, 4044, + 4095, 3194, 4041, + 4095, 3206, 4038, + 4095, 3222, 4034, + 4095, 3243, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3343, 3994, + 4095, 3393, 3974, + 4095, 3451, 3944, + 4095, 3519, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 33, 135, + 0, 83, 61, + 0, 142, 0, + 0, 211, 0, + 0, 290, 0, + 0, 377, 0, + 0, 473, 0, + 0, 576, 0, + 0, 684, 0, + 0, 798, 0, + 0, 916, 0, + 0, 1037, 0, + 0, 1161, 0, + 0, 1287, 0, + 0, 1414, 0, + 0, 1543, 0, + 0, 1672, 0, + 0, 1802, 0, + 0, 1933, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 11, 50, 228, + 0, 99, 168, + 0, 156, 74, + 0, 223, 0, + 0, 300, 0, + 0, 386, 0, + 0, 480, 0, + 0, 581, 0, + 0, 689, 0, + 0, 802, 0, + 0, 919, 0, + 0, 1039, 0, + 0, 1163, 0, + 0, 1288, 0, + 0, 1415, 0, + 0, 1543, 0, + 0, 1673, 0, + 0, 1803, 0, + 0, 1933, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 271, 73, 329, + 199, 119, 281, + 79, 174, 209, + 0, 239, 91, + 0, 313, 0, + 0, 397, 0, + 0, 489, 0, + 0, 588, 0, + 0, 694, 0, + 0, 806, 0, + 0, 922, 0, + 0, 1042, 0, + 0, 1165, 0, + 0, 1290, 0, + 0, 1416, 0, + 0, 1544, 0, + 0, 1673, 0, + 0, 1803, 0, + 0, 1934, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 480, 102, 436, + 435, 145, 399, + 368, 197, 344, + 259, 259, 259, + 54, 330, 113, + 0, 411, 0, + 0, 500, 0, + 0, 597, 0, + 0, 702, 0, + 0, 812, 0, + 0, 927, 0, + 0, 1045, 0, + 0, 1167, 0, + 0, 1292, 0, + 0, 1418, 0, + 0, 1546, 0, + 0, 1674, 0, + 0, 1804, 0, + 0, 1934, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 662, 137, 548, + 632, 177, 519, + 590, 226, 478, + 526, 284, 416, + 424, 352, 318, + 237, 429, 140, + 0, 515, 0, + 0, 610, 0, + 0, 711, 0, + 0, 819, 0, + 0, 933, 0, + 0, 1050, 0, + 0, 1171, 0, + 0, 1294, 0, + 0, 1420, 0, + 0, 1547, 0, + 0, 1675, 0, + 0, 1805, 0, + 0, 1935, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 828, 181, 665, + 808, 217, 643, + 779, 262, 612, + 738, 316, 566, + 677, 380, 498, + 579, 453, 386, + 403, 535, 175, + 0, 626, 0, + 0, 724, 0, + 0, 830, 0, + 0, 941, 0, + 0, 1056, 0, + 0, 1176, 0, + 0, 1298, 0, + 0, 1423, 0, + 0, 1549, 0, + 0, 1677, 0, + 0, 1806, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 984, 233, 785, + 970, 266, 768, + 950, 307, 745, + 922, 356, 712, + 882, 414, 663, + 822, 482, 588, + 728, 560, 464, + 559, 646, 217, + 144, 741, 0, + 0, 843, 0, + 0, 951, 0, + 0, 1064, 0, + 0, 1182, 0, + 0, 1303, 0, + 0, 1426, 0, + 0, 1552, 0, + 0, 1679, 0, + 0, 1807, 0, + 0, 1937, 0, + 0, 2067, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1133, 295, 908, + 1123, 324, 895, + 1109, 360, 878, + 1089, 404, 853, + 1062, 457, 818, + 1023, 519, 766, + 964, 591, 686, + 872, 672, 551, + 709, 762, 268, + 318, 860, 0, + 0, 964, 0, + 0, 1075, 0, + 0, 1190, 0, + 0, 1309, 0, + 0, 1431, 0, + 0, 1555, 0, + 0, 1682, 0, + 0, 1809, 0, + 0, 1938, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1277, 366, 1033, + 1270, 391, 1024, + 1260, 422, 1010, + 1246, 461, 992, + 1227, 508, 967, + 1200, 564, 930, + 1161, 629, 876, + 1103, 705, 791, + 1013, 789, 646, + 853, 882, 329, + 479, 982, 0, + 0, 1088, 0, + 0, 1201, 0, + 0, 1317, 0, + 0, 1437, 0, + 0, 1560, 0, + 0, 1685, 0, + 0, 1812, 0, + 0, 1940, 0, + 0, 2069, 0, + 0, 2199, 0, + 0, 2330, 0, + 0, 2460, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1418, 447, 1160, + 1413, 468, 1153, + 1406, 494, 1143, + 1396, 528, 1129, + 1382, 568, 1111, + 1363, 618, 1084, + 1336, 677, 1046, + 1298, 745, 990, + 1241, 822, 902, + 1151, 909, 748, + 994, 1004, 399, + 631, 1106, 0, + 0, 1214, 0, + 0, 1328, 0, + 0, 1446, 0, + 0, 1567, 0, + 0, 1690, 0, + 0, 1816, 0, + 0, 1943, 0, + 0, 2072, 0, + 0, 2201, 0, + 0, 2331, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1557, 537, 1288, + 1553, 554, 1283, + 1548, 576, 1275, + 1540, 604, 1265, + 1531, 639, 1251, + 1517, 681, 1232, + 1498, 733, 1205, + 1471, 793, 1166, + 1433, 864, 1108, + 1377, 944, 1017, + 1288, 1032, 857, + 1133, 1129, 478, + 778, 1232, 0, + 0, 1342, 0, + 0, 1456, 0, + 0, 1575, 0, + 0, 1697, 0, + 0, 1821, 0, + 0, 1947, 0, + 0, 2074, 0, + 0, 2203, 0, + 0, 2332, 0, + 0, 2463, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1694, 634, 1417, + 1691, 648, 1413, + 1687, 666, 1408, + 1682, 689, 1400, + 1675, 718, 1390, + 1665, 754, 1376, + 1651, 798, 1356, + 1632, 851, 1329, + 1606, 914, 1289, + 1568, 986, 1230, + 1512, 1067, 1136, + 1424, 1157, 970, + 1270, 1255, 567, + 921, 1360, 0, + 0, 1471, 0, + 0, 1586, 0, + 0, 1705, 0, + 0, 1827, 0, + 0, 1952, 0, + 0, 2078, 0, + 0, 2206, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1830, 738, 1547, + 1828, 750, 1544, + 1825, 764, 1540, + 1821, 783, 1534, + 1815, 806, 1527, + 1808, 836, 1516, + 1798, 873, 1502, + 1785, 919, 1482, + 1766, 973, 1454, + 1740, 1037, 1414, + 1702, 1110, 1354, + 1646, 1193, 1258, + 1558, 1284, 1088, + 1406, 1383, 663, + 1061, 1489, 0, + 0, 1600, 0, + 0, 1716, 0, + 0, 1836, 0, + 0, 1958, 0, + 0, 2083, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1965, 849, 1678, + 1963, 857, 1675, + 1961, 869, 1672, + 1958, 884, 1668, + 1954, 903, 1662, + 1949, 927, 1655, + 1941, 958, 1644, + 1932, 996, 1630, + 1918, 1042, 1610, + 1899, 1097, 1582, + 1873, 1162, 1541, + 1835, 1237, 1480, + 1780, 1320, 1383, + 1692, 1412, 1209, + 1541, 1512, 766, + 1199, 1618, 0, + 0, 1730, 0, + 0, 1847, 0, + 0, 1966, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 2099, 964, 1809, + 2098, 970, 1807, + 2096, 979, 1804, + 2094, 991, 1801, + 2091, 1006, 1797, + 2087, 1026, 1791, + 2082, 1051, 1784, + 2074, 1082, 1773, + 2065, 1120, 1759, + 2051, 1167, 1738, + 2032, 1224, 1710, + 2006, 1289, 1669, + 1969, 1364, 1607, + 1913, 1449, 1509, + 1826, 1542, 1333, + 1675, 1642, 876, + 1335, 1749, 0, + 0, 1861, 0, + 0, 1978, 0, + 0, 2098, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2232, 1083, 1940, + 2231, 1088, 1938, + 2230, 1095, 1937, + 2229, 1104, 1934, + 2226, 1116, 1931, + 2224, 1131, 1927, + 2220, 1151, 1921, + 2214, 1176, 1913, + 2207, 1208, 1903, + 2197, 1247, 1888, + 2184, 1294, 1868, + 2165, 1351, 1839, + 2139, 1417, 1798, + 2101, 1493, 1736, + 2046, 1578, 1637, + 1959, 1671, 1459, + 1809, 1772, 990, + 1470, 1879, 0, + 0, 1992, 0, + 0, 2109, 0, + 0, 2229, 0, + 0, 2352, 0, + 0, 2478, 0, + 0, 2604, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2366, 1204, 2071, + 2365, 1208, 2070, + 2364, 1214, 2069, + 2363, 1221, 2067, + 2361, 1230, 2065, + 2359, 1242, 2062, + 2356, 1258, 2057, + 2352, 1278, 2052, + 2347, 1303, 2044, + 2340, 1335, 2033, + 2330, 1375, 2018, + 2316, 1423, 1998, + 2298, 1480, 1969, + 2272, 1547, 1928, + 2234, 1623, 1865, + 2179, 1708, 1766, + 2092, 1802, 1586, + 1942, 1903, 1108, + 1605, 2010, 0, + 0, 2123, 0, + 0, 2240, 0, + 0, 2361, 0, + 0, 2484, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2498, 1329, 2203, + 2498, 1332, 2202, + 2497, 1336, 2201, + 2496, 1341, 2200, + 2495, 1348, 2198, + 2494, 1358, 2196, + 2491, 1370, 2192, + 2488, 1385, 2188, + 2485, 1406, 2182, + 2479, 1431, 2175, + 2472, 1464, 2164, + 2462, 1504, 2149, + 2449, 1552, 2129, + 2430, 1609, 2100, + 2404, 1677, 2058, + 2367, 1753, 1995, + 2311, 1839, 1896, + 2225, 1933, 1714, + 2075, 2034, 1230, + 1739, 2142, 0, + 0, 2255, 0, + 0, 2372, 0, + 0, 2492, 0, + 0, 2616, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2631, 1455, 2334, + 2631, 1457, 2334, + 2630, 1460, 2333, + 2630, 1464, 2332, + 2629, 1470, 2331, + 2628, 1477, 2329, + 2626, 1486, 2327, + 2624, 1499, 2324, + 2621, 1514, 2319, + 2617, 1535, 2313, + 2612, 1561, 2306, + 2604, 1593, 2295, + 2595, 1633, 2280, + 2581, 1682, 2260, + 2563, 1740, 2231, + 2537, 1807, 2189, + 2499, 1884, 2126, + 2444, 1970, 2026, + 2357, 2064, 1844, + 2207, 2165, 1354, + 1872, 2273, 0, + 0, 2386, 0, + 0, 2504, 0, + 0, 2624, 0, + 0, 2748, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2764, 1583, 2466, + 2763, 1584, 2466, + 2763, 1587, 2465, + 2763, 1590, 2464, + 2762, 1594, 2464, + 2761, 1599, 2462, + 2760, 1607, 2460, + 2758, 1616, 2458, + 2756, 1628, 2455, + 2753, 1644, 2451, + 2749, 1665, 2445, + 2744, 1691, 2437, + 2737, 1723, 2426, + 2727, 1764, 2411, + 2714, 1812, 2391, + 2695, 1870, 2362, + 2669, 1938, 2320, + 2631, 2015, 2257, + 2576, 2101, 2156, + 2490, 2195, 1974, + 2340, 2297, 1480, + 2005, 2405, 0, + 0, 2518, 0, + 0, 2635, 0, + 0, 2756, 0, + 0, 2880, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1711, 2598, + 2896, 1713, 2598, + 2896, 1714, 2597, + 2895, 1717, 2597, + 2895, 1720, 2596, + 2894, 1724, 2595, + 2893, 1730, 2594, + 2892, 1737, 2592, + 2890, 1746, 2590, + 2888, 1759, 2586, + 2885, 1775, 2582, + 2881, 1795, 2576, + 2876, 1821, 2568, + 2869, 1854, 2558, + 2859, 1894, 2543, + 2846, 1943, 2522, + 2827, 2001, 2493, + 2801, 2069, 2451, + 2764, 2146, 2388, + 2708, 2232, 2288, + 2622, 2327, 2104, + 2472, 2429, 1608, + 2138, 2537, 0, + 0, 2650, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3012, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3029, 1841, 2730, + 3028, 1842, 2730, + 3028, 1843, 2729, + 3028, 1845, 2729, + 3028, 1847, 2728, + 3027, 1851, 2728, + 3026, 1855, 2727, + 3025, 1860, 2725, + 3024, 1867, 2724, + 3023, 1877, 2721, + 3020, 1889, 2718, + 3018, 1905, 2714, + 3014, 1926, 2708, + 3008, 1952, 2700, + 3001, 1985, 2689, + 2991, 2025, 2675, + 2978, 2074, 2654, + 2959, 2133, 2625, + 2933, 2200, 2583, + 2896, 2278, 2520, + 2841, 2364, 2419, + 2754, 2459, 2235, + 2605, 2560, 1736, + 2271, 2668, 0, + 0, 2782, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3161, 1971, 2862, + 3161, 1972, 2862, + 3161, 1973, 2862, + 3160, 1974, 2861, + 3160, 1976, 2861, + 3160, 1978, 2860, + 3159, 1981, 2860, + 3159, 1986, 2859, + 3158, 1991, 2857, + 3156, 1998, 2856, + 3155, 2008, 2853, + 3153, 2020, 2850, + 3150, 2036, 2846, + 3146, 2057, 2840, + 3141, 2083, 2832, + 3133, 2116, 2821, + 3124, 2157, 2806, + 3110, 2206, 2786, + 3092, 2264, 2757, + 3066, 2332, 2715, + 3028, 2409, 2651, + 2973, 2496, 2550, + 2886, 2590, 2366, + 2737, 2692, 1866, + 2403, 2800, 0, + 0, 2914, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3293, 2102, 2994, + 3293, 2102, 2994, + 3293, 2103, 2994, + 3293, 2104, 2993, + 3292, 2105, 2993, + 3292, 2107, 2993, + 3292, 2110, 2992, + 3291, 2113, 2991, + 3291, 2117, 2990, + 3290, 2122, 2989, + 3289, 2130, 2987, + 3287, 2139, 2985, + 3285, 2152, 2982, + 3282, 2168, 2978, + 3278, 2188, 2972, + 3273, 2215, 2964, + 3266, 2248, 2953, + 3256, 2288, 2938, + 3242, 2337, 2918, + 3224, 2396, 2888, + 3198, 2464, 2846, + 3160, 2541, 2783, + 3105, 2628, 2682, + 3019, 2722, 2498, + 2869, 2824, 1996, + 2536, 2932, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3660, 0, + 3425, 2233, 3126, + 3425, 2233, 3126, + 3425, 2234, 3126, + 3425, 2235, 3126, + 3425, 2236, 3125, + 3425, 2237, 3125, + 3424, 2239, 3125, + 3424, 2241, 3124, + 3423, 2244, 3123, + 3423, 2248, 3122, + 3422, 2254, 3121, + 3421, 2261, 3119, + 3419, 2271, 3117, + 3417, 2283, 3114, + 3414, 2299, 3109, + 3410, 2320, 3104, + 3405, 2346, 3096, + 3398, 2379, 3085, + 3388, 2420, 3070, + 3375, 2469, 3049, + 3356, 2527, 3020, + 3330, 2595, 2978, + 3293, 2673, 2915, + 3237, 2759, 2814, + 3151, 2854, 2629, + 3002, 2956, 2126, + 2668, 3064, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2364, 3258, + 3557, 2365, 3258, + 3557, 2365, 3258, + 3557, 2365, 3258, + 3557, 2366, 3258, + 3557, 2367, 3257, + 3557, 2369, 3257, + 3556, 2370, 3257, + 3556, 2373, 3256, + 3556, 2376, 3255, + 3555, 2380, 3254, + 3554, 2386, 3253, + 3553, 2393, 3251, + 3551, 2402, 3249, + 3549, 2415, 3246, + 3546, 2431, 3241, + 3542, 2452, 3236, + 3537, 2478, 3228, + 3530, 2511, 3217, + 3520, 2552, 3202, + 3507, 2601, 3181, + 3488, 2659, 3152, + 3462, 2727, 3110, + 3425, 2805, 3047, + 3369, 2891, 2946, + 3283, 2986, 2761, + 3134, 3088, 2257, + 2800, 3196, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3690, 2496, 3390, + 3690, 2496, 3390, + 3690, 2496, 3390, + 3689, 2497, 3390, + 3689, 2497, 3390, + 3689, 2498, 3390, + 3689, 2499, 3389, + 3689, 2500, 3389, + 3689, 2502, 3389, + 3688, 2504, 3388, + 3688, 2508, 3387, + 3687, 2512, 3386, + 3686, 2517, 3385, + 3685, 2525, 3383, + 3683, 2534, 3381, + 3681, 2547, 3378, + 3678, 2563, 3373, + 3674, 2583, 3368, + 3669, 2610, 3360, + 3662, 2643, 3349, + 3652, 2683, 3334, + 3639, 2733, 3313, + 3620, 2791, 3284, + 3594, 2859, 3242, + 3557, 2937, 3179, + 3501, 3023, 3078, + 3415, 3118, 2893, + 3266, 3220, 2389, + 2932, 3328, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3822, 2627, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3821, 2629, 3522, + 3821, 2630, 3522, + 3821, 2631, 3521, + 3821, 2632, 3521, + 3821, 2634, 3521, + 3820, 2636, 3520, + 3820, 2639, 3519, + 3819, 2644, 3518, + 3818, 2649, 3517, + 3817, 2656, 3515, + 3815, 2666, 3513, + 3813, 2678, 3510, + 3810, 2695, 3505, + 3806, 2715, 3500, + 3801, 2742, 3492, + 3794, 2775, 3481, + 3784, 2815, 3466, + 3771, 2865, 3445, + 3752, 2923, 3416, + 3726, 2991, 3374, + 3689, 3069, 3311, + 3634, 3155, 3210, + 3547, 3250, 3025, + 3398, 3352, 2520, + 3065, 3460, 0, + 0, 3574, 0, + 0, 3691, 0, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3953, 2762, 3654, + 3953, 2763, 3653, + 3953, 2764, 3653, + 3953, 2766, 3653, + 3952, 2768, 3652, + 3952, 2771, 3651, + 3951, 2775, 3650, + 3950, 2781, 3649, + 3949, 2788, 3647, + 3948, 2798, 3645, + 3945, 2810, 3642, + 3943, 2826, 3637, + 3939, 2847, 3632, + 3933, 2874, 3624, + 3926, 2907, 3613, + 3916, 2947, 3598, + 3903, 2997, 3577, + 3884, 3055, 3548, + 3858, 3123, 3506, + 3821, 3201, 3443, + 3766, 3287, 3342, + 3679, 3382, 3157, + 3530, 3484, 2652, + 3197, 3593, 0, + 0, 3706, 0, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4085, 2895, 3785, + 4085, 2896, 3785, + 4085, 2898, 3785, + 4085, 2900, 3784, + 4084, 2903, 3783, + 4083, 2907, 3782, + 4082, 2913, 3781, + 4081, 2920, 3779, + 4080, 2930, 3777, + 4078, 2942, 3774, + 4075, 2958, 3770, + 4071, 2979, 3764, + 4065, 3006, 3756, + 4058, 3039, 3745, + 4048, 3079, 3730, + 4035, 3129, 3710, + 4017, 3187, 3680, + 3990, 3255, 3638, + 3953, 3333, 3575, + 3898, 3419, 3474, + 3811, 3514, 3289, + 3662, 3616, 2783, + 3329, 3725, 0, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3032, 3916, + 4095, 3035, 3916, + 4095, 3039, 3915, + 4095, 3045, 3913, + 4095, 3052, 3911, + 4095, 3062, 3909, + 4095, 3074, 3906, + 4095, 3090, 3902, + 4095, 3111, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3211, 3862, + 4095, 3261, 3842, + 4095, 3319, 3812, + 4095, 3387, 3770, + 4085, 3465, 3707, + 4030, 3552, 3606, + 3944, 3646, 3421, + 3794, 3748, 2915, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3167, 4048, + 4095, 3171, 4047, + 4095, 3177, 4045, + 4095, 3184, 4044, + 4095, 3194, 4041, + 4095, 3206, 4038, + 4095, 3222, 4034, + 4095, 3243, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3343, 3994, + 4095, 3393, 3974, + 4095, 3451, 3944, + 4095, 3519, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 108, 241, + 0, 151, 183, + 0, 203, 91, + 0, 264, 0, + 0, 334, 0, + 0, 414, 0, + 0, 503, 0, + 0, 600, 0, + 0, 704, 0, + 0, 813, 0, + 0, 928, 0, + 0, 1046, 0, + 0, 1168, 0, + 0, 1292, 0, + 0, 1418, 0, + 0, 1546, 0, + 0, 1674, 0, + 0, 1804, 0, + 0, 1934, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 123, 316, + 0, 165, 267, + 0, 215, 193, + 0, 274, 69, + 0, 343, 0, + 0, 422, 0, + 0, 509, 0, + 0, 605, 0, + 0, 708, 0, + 0, 816, 0, + 0, 930, 0, + 0, 1048, 0, + 0, 1170, 0, + 0, 1293, 0, + 0, 1419, 0, + 0, 1546, 0, + 0, 1675, 0, + 0, 1804, 0, + 0, 1934, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 225, 143, 400, + 144, 182, 360, + 6, 231, 300, + 0, 288, 206, + 0, 355, 37, + 0, 432, 0, + 0, 518, 0, + 0, 612, 0, + 0, 713, 0, + 0, 821, 0, + 0, 934, 0, + 0, 1051, 0, + 0, 1171, 0, + 0, 1295, 0, + 0, 1420, 0, + 0, 1547, 0, + 0, 1676, 0, + 0, 1805, 0, + 0, 1935, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 451, 167, 493, + 403, 205, 461, + 331, 251, 413, + 211, 306, 341, + 0, 371, 223, + 0, 445, 0, + 0, 529, 0, + 0, 621, 0, + 0, 720, 0, + 0, 826, 0, + 0, 938, 0, + 0, 1054, 0, + 0, 1174, 0, + 0, 1297, 0, + 0, 1422, 0, + 0, 1548, 0, + 0, 1676, 0, + 0, 1805, 0, + 0, 1935, 0, + 0, 2066, 0, + 0, 2196, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 643, 198, 593, + 612, 234, 568, + 567, 277, 531, + 500, 329, 476, + 391, 391, 391, + 186, 462, 245, + 0, 543, 0, + 0, 632, 0, + 0, 730, 0, + 0, 834, 0, + 0, 944, 0, + 0, 1059, 0, + 0, 1178, 0, + 0, 1299, 0, + 0, 1424, 0, + 0, 1550, 0, + 0, 1678, 0, + 0, 1806, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 815, 237, 700, + 794, 269, 680, + 765, 310, 651, + 722, 358, 610, + 658, 417, 548, + 556, 484, 450, + 369, 561, 272, + 0, 647, 0, + 0, 742, 0, + 0, 844, 0, + 0, 952, 0, + 0, 1065, 0, + 0, 1182, 0, + 0, 1303, 0, + 0, 1426, 0, + 0, 1552, 0, + 0, 1679, 0, + 0, 1808, 0, + 0, 1937, 0, + 0, 2067, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 974, 283, 813, + 960, 313, 797, + 940, 350, 775, + 911, 395, 744, + 870, 448, 699, + 809, 512, 630, + 711, 585, 518, + 535, 667, 307, + 81, 758, 0, + 0, 856, 0, + 0, 962, 0, + 0, 1073, 0, + 0, 1188, 0, + 0, 1308, 0, + 0, 1430, 0, + 0, 1555, 0, + 0, 1681, 0, + 0, 1809, 0, + 0, 1938, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1126, 339, 929, + 1116, 365, 917, + 1102, 398, 900, + 1082, 439, 877, + 1054, 488, 844, + 1014, 546, 795, + 954, 614, 720, + 860, 692, 596, + 691, 778, 349, + 276, 873, 0, + 0, 975, 0, + 0, 1083, 0, + 0, 1196, 0, + 0, 1314, 0, + 0, 1435, 0, + 0, 1558, 0, + 0, 1684, 0, + 0, 1811, 0, + 0, 1939, 0, + 0, 2069, 0, + 0, 2199, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1272, 404, 1049, + 1265, 427, 1040, + 1255, 456, 1027, + 1241, 492, 1010, + 1221, 536, 985, + 1194, 589, 950, + 1155, 651, 898, + 1096, 723, 818, + 1004, 804, 683, + 841, 894, 400, + 450, 992, 0, + 0, 1096, 0, + 0, 1207, 0, + 0, 1322, 0, + 0, 1441, 0, + 0, 1563, 0, + 0, 1688, 0, + 0, 1814, 0, + 0, 1942, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1415, 479, 1172, + 1409, 499, 1165, + 1402, 523, 1156, + 1392, 554, 1143, + 1378, 593, 1124, + 1359, 640, 1099, + 1332, 696, 1062, + 1293, 762, 1008, + 1235, 837, 923, + 1145, 921, 778, + 985, 1014, 461, + 611, 1114, 0, + 0, 1221, 0, + 0, 1333, 0, + 0, 1449, 0, + 0, 1569, 0, + 0, 1692, 0, + 0, 1817, 0, + 0, 1944, 0, + 0, 2072, 0, + 0, 2202, 0, + 0, 2331, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1555, 563, 1298, + 1551, 579, 1292, + 1545, 600, 1285, + 1538, 627, 1275, + 1528, 660, 1262, + 1514, 701, 1243, + 1495, 750, 1216, + 1468, 809, 1178, + 1430, 877, 1122, + 1373, 955, 1034, + 1283, 1041, 880, + 1127, 1136, 531, + 763, 1238, 0, + 0, 1347, 0, + 0, 1460, 0, + 0, 1578, 0, + 0, 1699, 0, + 0, 1822, 0, + 0, 1948, 0, + 0, 2075, 0, + 0, 2204, 0, + 0, 2333, 0, + 0, 2463, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1692, 656, 1424, + 1689, 669, 1420, + 1685, 686, 1415, + 1680, 708, 1408, + 1673, 736, 1397, + 1663, 771, 1384, + 1649, 813, 1364, + 1630, 865, 1337, + 1604, 926, 1298, + 1565, 996, 1240, + 1509, 1076, 1149, + 1420, 1164, 989, + 1265, 1261, 610, + 910, 1365, 0, + 0, 1474, 0, + 0, 1589, 0, + 0, 1707, 0, + 0, 1829, 0, + 0, 1953, 0, + 0, 2079, 0, + 0, 2206, 0, + 0, 2335, 0, + 0, 2464, 0, + 0, 2595, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1828, 756, 1553, + 1826, 766, 1550, + 1823, 780, 1545, + 1819, 798, 1540, + 1814, 821, 1532, + 1807, 850, 1522, + 1797, 886, 1508, + 1783, 930, 1488, + 1764, 983, 1461, + 1738, 1046, 1421, + 1700, 1118, 1362, + 1644, 1199, 1268, + 1556, 1289, 1103, + 1402, 1387, 699, + 1053, 1492, 0, + 0, 1603, 0, + 0, 1718, 0, + 0, 1837, 0, + 0, 1959, 0, + 0, 2084, 0, + 0, 2210, 0, + 0, 2338, 0, + 0, 2467, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1964, 862, 1682, + 1962, 871, 1679, + 1960, 882, 1676, + 1957, 896, 1672, + 1953, 915, 1667, + 1948, 938, 1659, + 1940, 968, 1649, + 1930, 1006, 1634, + 1917, 1051, 1614, + 1898, 1105, 1586, + 1872, 1169, 1546, + 1834, 1243, 1486, + 1778, 1325, 1391, + 1690, 1416, 1220, + 1538, 1515, 795, + 1193, 1621, 0, + 0, 1732, 0, + 0, 1848, 0, + 0, 1968, 0, + 0, 2090, 0, + 0, 2215, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 2098, 974, 1812, + 2097, 981, 1810, + 2095, 989, 1808, + 2093, 1001, 1804, + 2090, 1016, 1800, + 2086, 1035, 1795, + 2081, 1059, 1787, + 2074, 1090, 1776, + 2064, 1128, 1762, + 2050, 1174, 1742, + 2032, 1230, 1714, + 2005, 1294, 1673, + 1968, 1369, 1612, + 1912, 1452, 1515, + 1824, 1545, 1341, + 1673, 1644, 898, + 1331, 1751, 0, + 0, 1862, 0, + 0, 1979, 0, + 0, 2099, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2232, 1091, 1942, + 2231, 1096, 1941, + 2230, 1103, 1939, + 2228, 1111, 1937, + 2226, 1123, 1933, + 2223, 1138, 1929, + 2219, 1158, 1924, + 2214, 1183, 1916, + 2206, 1214, 1905, + 2197, 1253, 1891, + 2183, 1300, 1870, + 2165, 1356, 1842, + 2138, 1421, 1801, + 2101, 1497, 1739, + 2045, 1581, 1641, + 1958, 1674, 1465, + 1807, 1774, 1008, + 1467, 1881, 0, + 0, 1993, 0, + 0, 2110, 0, + 0, 2230, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2365, 1211, 2073, + 2364, 1215, 2072, + 2364, 1220, 2071, + 2362, 1227, 2069, + 2361, 1236, 2066, + 2359, 1248, 2063, + 2356, 1263, 2059, + 2352, 1283, 2053, + 2346, 1308, 2046, + 2339, 1340, 2035, + 2329, 1379, 2020, + 2316, 1427, 2000, + 2297, 1483, 1971, + 2271, 1550, 1930, + 2234, 1625, 1868, + 2178, 1710, 1769, + 2091, 1804, 1591, + 1941, 1904, 1122, + 1603, 2011, 0, + 0, 2124, 0, + 0, 2241, 0, + 0, 2361, 0, + 0, 2484, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2498, 1334, 2204, + 2498, 1337, 2203, + 2497, 1341, 2202, + 2496, 1346, 2201, + 2495, 1353, 2199, + 2493, 1362, 2197, + 2491, 1374, 2194, + 2488, 1390, 2189, + 2484, 1410, 2184, + 2479, 1435, 2176, + 2472, 1467, 2165, + 2462, 1507, 2150, + 2449, 1555, 2130, + 2430, 1612, 2101, + 2404, 1679, 2060, + 2366, 1755, 1997, + 2311, 1840, 1898, + 2224, 1934, 1718, + 2074, 2035, 1241, + 1737, 2142, 0, + 0, 2255, 0, + 0, 2372, 0, + 0, 2493, 0, + 0, 2616, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2631, 1459, 2335, + 2631, 1461, 2335, + 2630, 1464, 2334, + 2629, 1468, 2333, + 2628, 1473, 2332, + 2627, 1480, 2330, + 2626, 1490, 2328, + 2624, 1502, 2324, + 2621, 1518, 2320, + 2617, 1538, 2314, + 2611, 1564, 2307, + 2604, 1596, 2296, + 2594, 1636, 2281, + 2581, 1684, 2261, + 2562, 1742, 2232, + 2536, 1809, 2190, + 2499, 1885, 2128, + 2443, 1971, 2028, + 2357, 2065, 1846, + 2207, 2166, 1362, + 1871, 2274, 0, + 0, 2387, 0, + 0, 2504, 0, + 0, 2625, 0, + 0, 2748, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2764, 1585, 2467, + 2763, 1587, 2466, + 2763, 1589, 2466, + 2762, 1593, 2465, + 2762, 1597, 2464, + 2761, 1602, 2463, + 2760, 1609, 2461, + 2758, 1618, 2459, + 2756, 1631, 2456, + 2753, 1647, 2451, + 2749, 1667, 2446, + 2744, 1693, 2438, + 2737, 1725, 2427, + 2727, 1765, 2412, + 2713, 1814, 2392, + 2695, 1872, 2363, + 2669, 1939, 2321, + 2631, 2016, 2258, + 2576, 2102, 2158, + 2489, 2196, 1976, + 2340, 2297, 1486, + 2004, 2405, 0, + 0, 2518, 0, + 0, 2636, 0, + 0, 2756, 0, + 0, 2880, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1713, 2599, + 2896, 1715, 2598, + 2896, 1717, 2598, + 2895, 1719, 2597, + 2895, 1722, 2597, + 2894, 1726, 2596, + 2893, 1731, 2594, + 2892, 1739, 2593, + 2890, 1748, 2590, + 2888, 1760, 2587, + 2885, 1776, 2583, + 2881, 1797, 2577, + 2876, 1823, 2569, + 2869, 1855, 2558, + 2859, 1896, 2544, + 2846, 1944, 2523, + 2827, 2002, 2494, + 2801, 2070, 2452, + 2764, 2147, 2389, + 2708, 2233, 2289, + 2622, 2327, 2106, + 2472, 2429, 1612, + 2137, 2537, 0, + 0, 2650, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3012, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3028, 1843, 2730, + 3028, 1844, 2730, + 3028, 1845, 2730, + 3028, 1847, 2729, + 3027, 1849, 2729, + 3027, 1852, 2728, + 3026, 1856, 2727, + 3025, 1862, 2726, + 3024, 1869, 2724, + 3023, 1878, 2722, + 3020, 1891, 2719, + 3017, 1907, 2714, + 3014, 1927, 2708, + 3008, 1953, 2701, + 3001, 1986, 2690, + 2991, 2026, 2675, + 2978, 2075, 2654, + 2959, 2133, 2625, + 2933, 2201, 2583, + 2896, 2278, 2520, + 2840, 2364, 2420, + 2754, 2459, 2236, + 2605, 2561, 1740, + 2270, 2669, 0, + 0, 2782, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3161, 1972, 2862, + 3161, 1973, 2862, + 3160, 1974, 2862, + 3160, 1975, 2862, + 3160, 1977, 2861, + 3160, 1980, 2861, + 3159, 1983, 2860, + 3158, 1987, 2859, + 3158, 1992, 2858, + 3156, 1999, 2856, + 3155, 2009, 2853, + 3153, 2021, 2850, + 3150, 2037, 2846, + 3146, 2058, 2840, + 3140, 2084, 2832, + 3133, 2117, 2821, + 3124, 2157, 2807, + 3110, 2206, 2786, + 3092, 2265, 2757, + 3065, 2333, 2715, + 3028, 2410, 2652, + 2973, 2496, 2551, + 2886, 2591, 2367, + 2737, 2692, 1868, + 2403, 2801, 0, + 0, 2914, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3293, 2103, 2994, + 3293, 2103, 2994, + 3293, 2104, 2994, + 3293, 2105, 2994, + 3292, 2106, 2993, + 3292, 2108, 2993, + 3292, 2110, 2992, + 3291, 2114, 2992, + 3291, 2118, 2991, + 3290, 2123, 2989, + 3289, 2130, 2988, + 3287, 2140, 2985, + 3285, 2152, 2982, + 3282, 2168, 2978, + 3278, 2189, 2972, + 3273, 2215, 2964, + 3265, 2248, 2953, + 3256, 2289, 2938, + 3242, 2338, 2918, + 3224, 2396, 2889, + 3198, 2464, 2847, + 3160, 2541, 2784, + 3105, 2628, 2682, + 3019, 2722, 2498, + 2869, 2824, 1998, + 2535, 2932, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3660, 0, + 3425, 2234, 3126, + 3425, 2234, 3126, + 3425, 2235, 3126, + 3425, 2235, 3126, + 3425, 2236, 3126, + 3425, 2238, 3125, + 3424, 2239, 3125, + 3424, 2242, 3124, + 3423, 2245, 3124, + 3423, 2249, 3123, + 3422, 2255, 3121, + 3421, 2262, 3119, + 3419, 2271, 3117, + 3417, 2284, 3114, + 3414, 2300, 3110, + 3410, 2320, 3104, + 3405, 2347, 3096, + 3398, 2380, 3085, + 3388, 2420, 3070, + 3374, 2469, 3050, + 3356, 2528, 3021, + 3330, 2596, 2978, + 3292, 2673, 2915, + 3237, 2760, 2814, + 3151, 2854, 2630, + 3001, 2956, 2128, + 2668, 3064, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2365, 3258, + 3557, 2365, 3258, + 3557, 2365, 3258, + 3557, 2366, 3258, + 3557, 2367, 3258, + 3557, 2368, 3257, + 3557, 2369, 3257, + 3556, 2371, 3257, + 3556, 2373, 3256, + 3556, 2376, 3255, + 3555, 2380, 3254, + 3554, 2386, 3253, + 3553, 2393, 3251, + 3551, 2403, 3249, + 3549, 2415, 3246, + 3546, 2431, 3242, + 3542, 2452, 3236, + 3537, 2478, 3228, + 3530, 2511, 3217, + 3520, 2552, 3202, + 3507, 2601, 3182, + 3488, 2660, 3152, + 3462, 2728, 3110, + 3425, 2805, 3047, + 3369, 2892, 2946, + 3283, 2986, 2761, + 3134, 3088, 2258, + 2800, 3196, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3690, 2496, 3390, + 3690, 2496, 3390, + 3689, 2497, 3390, + 3689, 2497, 3390, + 3689, 2498, 3390, + 3689, 2498, 3390, + 3689, 2499, 3389, + 3689, 2501, 3389, + 3689, 2502, 3389, + 3688, 2505, 3388, + 3688, 2508, 3387, + 3687, 2512, 3386, + 3686, 2518, 3385, + 3685, 2525, 3383, + 3683, 2534, 3381, + 3681, 2547, 3378, + 3678, 2563, 3374, + 3674, 2584, 3368, + 3669, 2610, 3360, + 3662, 2643, 3349, + 3652, 2684, 3334, + 3639, 2733, 3314, + 3620, 2791, 3284, + 3594, 2859, 3242, + 3557, 2937, 3179, + 3501, 3023, 3078, + 3415, 3118, 2893, + 3266, 3220, 2389, + 2932, 3328, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2629, 3522, + 3821, 2629, 3522, + 3821, 2630, 3522, + 3821, 2631, 3521, + 3821, 2632, 3521, + 3821, 2634, 3521, + 3820, 2637, 3520, + 3820, 2640, 3519, + 3819, 2644, 3518, + 3818, 2649, 3517, + 3817, 2657, 3515, + 3815, 2666, 3513, + 3813, 2679, 3510, + 3810, 2695, 3506, + 3806, 2716, 3500, + 3801, 2742, 3492, + 3794, 2775, 3481, + 3784, 2816, 3466, + 3771, 2865, 3446, + 3752, 2923, 3416, + 3726, 2991, 3374, + 3689, 3069, 3311, + 3634, 3155, 3210, + 3547, 3250, 3025, + 3398, 3352, 2521, + 3064, 3460, 0, + 0, 3574, 0, + 0, 3691, 0, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3954, 2761, 3654, + 3953, 2762, 3654, + 3953, 2763, 3653, + 3953, 2764, 3653, + 3953, 2766, 3653, + 3952, 2768, 3652, + 3952, 2772, 3651, + 3951, 2776, 3650, + 3950, 2781, 3649, + 3949, 2788, 3647, + 3948, 2798, 3645, + 3945, 2811, 3642, + 3943, 2827, 3638, + 3939, 2847, 3632, + 3933, 2874, 3624, + 3926, 2907, 3613, + 3916, 2947, 3598, + 3903, 2997, 3578, + 3884, 3055, 3548, + 3858, 3123, 3506, + 3821, 3201, 3443, + 3766, 3287, 3342, + 3679, 3382, 3157, + 3530, 3484, 2652, + 3197, 3593, 0, + 0, 3706, 0, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4085, 2895, 3786, + 4085, 2896, 3785, + 4085, 2898, 3785, + 4085, 2900, 3784, + 4084, 2903, 3784, + 4083, 2908, 3783, + 4082, 2913, 3781, + 4081, 2920, 3779, + 4080, 2930, 3777, + 4078, 2942, 3774, + 4075, 2959, 3770, + 4071, 2979, 3764, + 4065, 3006, 3756, + 4058, 3039, 3745, + 4048, 3079, 3730, + 4035, 3129, 3710, + 4017, 3187, 3680, + 3990, 3255, 3638, + 3953, 3333, 3575, + 3898, 3420, 3474, + 3811, 3514, 3289, + 3662, 3616, 2784, + 3329, 3725, 0, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3032, 3916, + 4095, 3035, 3916, + 4095, 3040, 3915, + 4095, 3045, 3913, + 4095, 3052, 3912, + 4095, 3062, 3909, + 4095, 3074, 3906, + 4095, 3091, 3902, + 4095, 3111, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3211, 3862, + 4095, 3261, 3842, + 4095, 3319, 3812, + 4095, 3387, 3770, + 4085, 3465, 3707, + 4030, 3552, 3606, + 3944, 3646, 3421, + 3794, 3748, 2916, + 4095, 3155, 4051, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3167, 4048, + 4095, 3172, 4047, + 4095, 3177, 4045, + 4095, 3184, 4044, + 4095, 3194, 4041, + 4095, 3206, 4038, + 4095, 3223, 4034, + 4095, 3243, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3343, 3994, + 4095, 3393, 3974, + 4095, 3451, 3945, + 4095, 3519, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 193, 352, + 0, 229, 307, + 0, 273, 239, + 0, 326, 129, + 0, 388, 0, + 0, 459, 0, + 0, 540, 0, + 0, 630, 0, + 0, 728, 0, + 0, 833, 0, + 0, 943, 0, + 0, 1058, 0, + 0, 1177, 0, + 0, 1299, 0, + 0, 1423, 0, + 0, 1550, 0, + 0, 1677, 0, + 0, 1806, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 205, 412, + 0, 240, 373, + 0, 283, 315, + 0, 335, 223, + 0, 396, 62, + 0, 466, 0, + 0, 546, 0, + 0, 635, 0, + 0, 732, 0, + 0, 836, 0, + 0, 945, 0, + 0, 1060, 0, + 0, 1178, 0, + 0, 1300, 0, + 0, 1424, 0, + 0, 1550, 0, + 0, 1678, 0, + 0, 1807, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 154, 222, 481, + 58, 255, 448, + 0, 297, 399, + 0, 347, 325, + 0, 407, 201, + 0, 476, 0, + 0, 554, 0, + 0, 641, 0, + 0, 737, 0, + 0, 840, 0, + 0, 949, 0, + 0, 1062, 0, + 0, 1180, 0, + 0, 1302, 0, + 0, 1425, 0, + 0, 1551, 0, + 0, 1679, 0, + 0, 1807, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 409, 242, 560, + 357, 275, 532, + 276, 315, 492, + 138, 363, 433, + 0, 420, 338, + 0, 488, 170, + 0, 564, 0, + 0, 650, 0, + 0, 744, 0, + 0, 845, 0, + 0, 953, 0, + 0, 1066, 0, + 0, 1183, 0, + 0, 1304, 0, + 0, 1427, 0, + 0, 1552, 0, + 0, 1679, 0, + 0, 1808, 0, + 0, 1937, 0, + 0, 2067, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 616, 269, 648, + 583, 299, 625, + 535, 337, 593, + 463, 383, 546, + 343, 438, 474, + 109, 503, 355, + 0, 577, 124, + 0, 661, 0, + 0, 753, 0, + 0, 852, 0, + 0, 958, 0, + 0, 1070, 0, + 0, 1186, 0, + 0, 1306, 0, + 0, 1429, 0, + 0, 1554, 0, + 0, 1681, 0, + 0, 1809, 0, + 0, 1938, 0, + 0, 2067, 0, + 0, 2198, 0, + 0, 2328, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 796, 302, 744, + 775, 330, 726, + 744, 366, 700, + 700, 409, 663, + 632, 461, 608, + 523, 523, 523, + 318, 594, 377, + 0, 675, 54, + 0, 764, 0, + 0, 862, 0, + 0, 966, 0, + 0, 1076, 0, + 0, 1191, 0, + 0, 1310, 0, + 0, 1432, 0, + 0, 1556, 0, + 0, 1682, 0, + 0, 1810, 0, + 0, 1938, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 962, 343, 847, + 947, 369, 832, + 926, 401, 812, + 897, 442, 784, + 854, 490, 742, + 790, 549, 680, + 688, 616, 582, + 501, 693, 404, + 0, 780, 0, + 0, 874, 0, + 0, 976, 0, + 0, 1084, 0, + 0, 1197, 0, + 0, 1314, 0, + 0, 1435, 0, + 0, 1559, 0, + 0, 1684, 0, + 0, 1811, 0, + 0, 1940, 0, + 0, 2069, 0, + 0, 2199, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1117, 392, 956, + 1107, 415, 945, + 1092, 445, 929, + 1072, 482, 907, + 1043, 527, 876, + 1002, 581, 831, + 941, 644, 762, + 843, 717, 650, + 667, 799, 439, + 213, 890, 0, + 0, 988, 0, + 0, 1094, 0, + 0, 1205, 0, + 0, 1320, 0, + 0, 1440, 0, + 0, 1562, 0, + 0, 1687, 0, + 0, 1813, 0, + 0, 1941, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1266, 450, 1070, + 1258, 471, 1061, + 1248, 497, 1049, + 1234, 530, 1032, + 1214, 571, 1009, + 1186, 620, 976, + 1146, 678, 927, + 1086, 746, 852, + 992, 824, 728, + 824, 910, 481, + 408, 1005, 0, + 0, 1107, 0, + 0, 1215, 0, + 0, 1328, 0, + 0, 1446, 0, + 0, 1567, 0, + 0, 1690, 0, + 0, 1816, 0, + 0, 1943, 0, + 0, 2072, 0, + 0, 2201, 0, + 0, 2331, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1410, 519, 1188, + 1405, 536, 1182, + 1397, 559, 1172, + 1387, 588, 1160, + 1373, 624, 1142, + 1353, 668, 1117, + 1326, 721, 1082, + 1287, 783, 1030, + 1228, 855, 950, + 1136, 936, 815, + 973, 1026, 532, + 582, 1124, 0, + 0, 1229, 0, + 0, 1339, 0, + 0, 1454, 0, + 0, 1573, 0, + 0, 1695, 0, + 0, 1820, 0, + 0, 1946, 0, + 0, 2074, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1551, 596, 1310, + 1547, 611, 1305, + 1542, 631, 1297, + 1534, 655, 1288, + 1524, 687, 1275, + 1510, 725, 1256, + 1491, 772, 1231, + 1464, 828, 1194, + 1425, 894, 1140, + 1367, 969, 1055, + 1277, 1053, 910, + 1117, 1146, 593, + 743, 1246, 0, + 0, 1353, 0, + 0, 1465, 0, + 0, 1581, 0, + 0, 1702, 0, + 0, 1824, 0, + 0, 1950, 0, + 0, 2076, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2463, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1690, 683, 1434, + 1687, 695, 1430, + 1683, 711, 1424, + 1677, 732, 1417, + 1670, 759, 1407, + 1660, 792, 1394, + 1646, 833, 1375, + 1627, 882, 1348, + 1600, 941, 1310, + 1562, 1009, 1254, + 1505, 1087, 1166, + 1415, 1173, 1013, + 1259, 1268, 663, + 895, 1370, 0, + 0, 1479, 0, + 0, 1592, 0, + 0, 1710, 0, + 0, 1831, 0, + 0, 1954, 0, + 0, 2080, 0, + 0, 2207, 0, + 0, 2336, 0, + 0, 2465, 0, + 0, 2595, 0, + 0, 2726, 0, + 0, 2856, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1826, 777, 1560, + 1824, 788, 1557, + 1821, 801, 1552, + 1817, 818, 1547, + 1812, 840, 1540, + 1805, 868, 1530, + 1795, 903, 1516, + 1781, 945, 1496, + 1762, 997, 1469, + 1736, 1058, 1430, + 1697, 1128, 1372, + 1641, 1208, 1281, + 1552, 1296, 1121, + 1397, 1393, 742, + 1042, 1497, 0, + 0, 1606, 0, + 0, 1721, 0, + 0, 1839, 0, + 0, 1961, 0, + 0, 2085, 0, + 0, 2211, 0, + 0, 2338, 0, + 0, 2467, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1962, 880, 1687, + 1961, 888, 1685, + 1958, 898, 1682, + 1955, 912, 1678, + 1951, 930, 1672, + 1946, 953, 1664, + 1939, 982, 1654, + 1929, 1018, 1640, + 1915, 1062, 1620, + 1897, 1116, 1593, + 1870, 1178, 1553, + 1832, 1250, 1494, + 1776, 1331, 1400, + 1688, 1422, 1235, + 1534, 1520, 831, + 1185, 1624, 0, + 0, 1735, 0, + 0, 1850, 0, + 0, 1969, 0, + 0, 2091, 0, + 0, 2216, 0, + 0, 2342, 0, + 0, 2470, 0, + 0, 2599, 0, + 0, 2728, 0, + 0, 2859, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2097, 988, 1815, + 2096, 994, 1814, + 2094, 1003, 1811, + 2092, 1014, 1808, + 2089, 1028, 1804, + 2085, 1047, 1799, + 2080, 1071, 1791, + 2072, 1100, 1781, + 2063, 1138, 1766, + 2049, 1183, 1746, + 2030, 1237, 1719, + 2004, 1301, 1678, + 1966, 1375, 1618, + 1910, 1457, 1523, + 1822, 1548, 1352, + 1670, 1647, 927, + 1325, 1753, 0, + 0, 1864, 0, + 0, 1980, 0, + 0, 2100, 0, + 0, 2222, 0, + 0, 2347, 0, + 0, 2474, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2231, 1101, 1945, + 2230, 1106, 1944, + 2229, 1113, 1942, + 2227, 1122, 1940, + 2225, 1133, 1936, + 2222, 1148, 1932, + 2218, 1167, 1927, + 2213, 1191, 1919, + 2206, 1222, 1908, + 2196, 1260, 1894, + 2182, 1306, 1874, + 2164, 1362, 1846, + 2137, 1427, 1805, + 2100, 1501, 1744, + 2044, 1585, 1647, + 1956, 1677, 1473, + 1805, 1776, 1031, + 1463, 1883, 0, + 0, 1994, 0, + 0, 2111, 0, + 0, 2231, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2364, 1219, 2075, + 2364, 1223, 2074, + 2363, 1228, 2073, + 2362, 1235, 2071, + 2360, 1244, 2069, + 2358, 1255, 2066, + 2355, 1270, 2061, + 2351, 1290, 2056, + 2346, 1315, 2048, + 2339, 1346, 2037, + 2329, 1385, 2023, + 2315, 1432, 2003, + 2297, 1488, 1974, + 2270, 1553, 1933, + 2233, 1629, 1871, + 2177, 1713, 1773, + 2090, 1806, 1597, + 1939, 1906, 1140, + 1599, 2013, 0, + 0, 2125, 0, + 0, 2242, 0, + 0, 2362, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2498, 1340, 2206, + 2497, 1343, 2205, + 2497, 1347, 2204, + 2496, 1352, 2203, + 2494, 1359, 2201, + 2493, 1368, 2199, + 2491, 1380, 2195, + 2488, 1395, 2191, + 2484, 1415, 2185, + 2478, 1440, 2178, + 2471, 1472, 2167, + 2461, 1511, 2152, + 2448, 1559, 2132, + 2429, 1615, 2103, + 2403, 1682, 2062, + 2366, 1757, 2000, + 2310, 1842, 1901, + 2223, 1936, 1723, + 2073, 2036, 1254, + 1735, 2144, 0, + 0, 2256, 0, + 0, 2373, 0, + 0, 2493, 0, + 0, 2616, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2631, 1463, 2337, + 2630, 1466, 2336, + 2630, 1469, 2335, + 2629, 1473, 2334, + 2628, 1478, 2333, + 2627, 1485, 2331, + 2625, 1494, 2329, + 2623, 1506, 2326, + 2620, 1522, 2322, + 2616, 1542, 2316, + 2611, 1567, 2308, + 2604, 1599, 2297, + 2594, 1639, 2283, + 2581, 1687, 2262, + 2562, 1744, 2233, + 2536, 1811, 2192, + 2498, 1887, 2130, + 2443, 1972, 2030, + 2356, 2066, 1850, + 2206, 2167, 1373, + 1869, 2275, 0, + 0, 2387, 0, + 0, 2504, 0, + 0, 2625, 0, + 0, 2748, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2763, 1589, 2468, + 2763, 1591, 2467, + 2763, 1593, 2467, + 2762, 1596, 2466, + 2761, 1600, 2465, + 2761, 1605, 2464, + 2759, 1613, 2462, + 2758, 1622, 2460, + 2756, 1634, 2457, + 2753, 1650, 2452, + 2749, 1670, 2447, + 2743, 1696, 2439, + 2736, 1728, 2428, + 2727, 1768, 2413, + 2713, 1816, 2393, + 2694, 1874, 2364, + 2668, 1941, 2322, + 2631, 2017, 2260, + 2575, 2103, 2160, + 2489, 2197, 1978, + 2339, 2298, 1494, + 2003, 2406, 0, + 0, 2519, 0, + 0, 2636, 0, + 0, 2757, 0, + 0, 2880, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1716, 2599, + 2896, 1717, 2599, + 2895, 1719, 2599, + 2895, 1722, 2598, + 2894, 1725, 2597, + 2894, 1729, 2596, + 2893, 1734, 2595, + 2892, 1741, 2593, + 2890, 1751, 2591, + 2888, 1763, 2588, + 2885, 1779, 2583, + 2881, 1799, 2578, + 2876, 1825, 2570, + 2869, 1857, 2559, + 2859, 1897, 2544, + 2845, 1946, 2524, + 2827, 2004, 2495, + 2801, 2071, 2453, + 2763, 2148, 2390, + 2708, 2234, 2290, + 2621, 2328, 2108, + 2472, 2430, 1618, + 2136, 2537, 0, + 0, 2650, 0, + 0, 2768, 0, + 0, 2888, 0, + 0, 3012, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3028, 1845, 2731, + 3028, 1846, 2731, + 3028, 1847, 2730, + 3028, 1849, 2730, + 3027, 1851, 2729, + 3027, 1854, 2729, + 3026, 1858, 2728, + 3025, 1864, 2726, + 3024, 1871, 2725, + 3022, 1880, 2722, + 3020, 1892, 2719, + 3017, 1908, 2715, + 3013, 1929, 2709, + 3008, 1955, 2701, + 3001, 1987, 2690, + 2991, 2028, 2676, + 2978, 2076, 2655, + 2959, 2134, 2626, + 2933, 2202, 2584, + 2896, 2279, 2521, + 2840, 2365, 2421, + 2754, 2459, 2238, + 2604, 2561, 1744, + 2269, 2669, 0, + 0, 2782, 0, + 0, 2900, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3161, 1974, 2863, + 3161, 1975, 2862, + 3160, 1976, 2862, + 3160, 1977, 2862, + 3160, 1979, 2862, + 3160, 1981, 2861, + 3159, 1984, 2860, + 3158, 1988, 2859, + 3157, 1994, 2858, + 3156, 2001, 2856, + 3155, 2010, 2854, + 3152, 2023, 2851, + 3150, 2039, 2846, + 3146, 2059, 2841, + 3140, 2085, 2833, + 3133, 2118, 2822, + 3123, 2158, 2807, + 3110, 2207, 2787, + 3091, 2266, 2758, + 3065, 2333, 2716, + 3028, 2410, 2653, + 2973, 2497, 2552, + 2886, 2591, 2368, + 2737, 2693, 1872, + 2402, 2801, 0, + 0, 2914, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3293, 2104, 2994, + 3293, 2104, 2994, + 3293, 2105, 2994, + 3293, 2106, 2994, + 3292, 2107, 2994, + 3292, 2109, 2993, + 3292, 2112, 2993, + 3291, 2115, 2992, + 3291, 2119, 2991, + 3290, 2124, 2990, + 3288, 2132, 2988, + 3287, 2141, 2986, + 3285, 2153, 2982, + 3282, 2169, 2978, + 3278, 2190, 2972, + 3273, 2216, 2964, + 3265, 2249, 2954, + 3256, 2290, 2939, + 3242, 2339, 2918, + 3224, 2397, 2889, + 3198, 2465, 2847, + 3160, 2542, 2784, + 3105, 2628, 2683, + 3018, 2723, 2499, + 2869, 2825, 2000, + 2535, 2933, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3661, 0, + 3425, 2234, 3126, + 3425, 2235, 3126, + 3425, 2235, 3126, + 3425, 2236, 3126, + 3425, 2237, 3126, + 3425, 2238, 3125, + 3424, 2240, 3125, + 3424, 2243, 3124, + 3423, 2246, 3124, + 3423, 2250, 3123, + 3422, 2255, 3121, + 3421, 2263, 3120, + 3419, 2272, 3117, + 3417, 2284, 3114, + 3414, 2301, 3110, + 3410, 2321, 3104, + 3405, 2347, 3096, + 3398, 2380, 3085, + 3388, 2421, 3071, + 3374, 2470, 3050, + 3356, 2528, 3021, + 3330, 2596, 2979, + 3292, 2674, 2916, + 3237, 2760, 2815, + 3151, 2855, 2631, + 3001, 2956, 2130, + 2667, 3065, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2365, 3258, + 3557, 2366, 3258, + 3557, 2366, 3258, + 3557, 2367, 3258, + 3557, 2367, 3258, + 3557, 2368, 3258, + 3557, 2370, 3257, + 3556, 2371, 3257, + 3556, 2374, 3256, + 3556, 2377, 3256, + 3555, 2381, 3255, + 3554, 2387, 3253, + 3553, 2394, 3252, + 3551, 2403, 3249, + 3549, 2416, 3246, + 3546, 2432, 3242, + 3542, 2453, 3236, + 3537, 2479, 3228, + 3530, 2512, 3217, + 3520, 2552, 3202, + 3507, 2602, 3182, + 3488, 2660, 3153, + 3462, 2728, 3111, + 3425, 2805, 3047, + 3369, 2892, 2946, + 3283, 2986, 2762, + 3134, 3088, 2260, + 2800, 3197, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3690, 2497, 3390, + 3690, 2497, 3390, + 3689, 2497, 3390, + 3689, 2498, 3390, + 3689, 2498, 3390, + 3689, 2499, 3390, + 3689, 2500, 3390, + 3689, 2501, 3389, + 3689, 2503, 3389, + 3688, 2505, 3388, + 3688, 2508, 3388, + 3687, 2513, 3387, + 3686, 2518, 3385, + 3685, 2525, 3384, + 3683, 2535, 3381, + 3681, 2547, 3378, + 3678, 2563, 3374, + 3674, 2584, 3368, + 3669, 2610, 3360, + 3662, 2643, 3349, + 3652, 2684, 3334, + 3639, 2733, 3314, + 3620, 2792, 3285, + 3594, 2860, 3242, + 3557, 2937, 3179, + 3501, 3024, 3078, + 3415, 3118, 2894, + 3266, 3220, 2391, + 2932, 3329, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2629, 3522, + 3822, 2629, 3522, + 3821, 2630, 3522, + 3821, 2630, 3522, + 3821, 2631, 3522, + 3821, 2633, 3521, + 3821, 2635, 3521, + 3820, 2637, 3520, + 3820, 2640, 3520, + 3819, 2644, 3519, + 3818, 2650, 3517, + 3817, 2657, 3515, + 3815, 2667, 3513, + 3813, 2679, 3510, + 3810, 2695, 3506, + 3806, 2716, 3500, + 3801, 2742, 3492, + 3794, 2775, 3481, + 3784, 2816, 3466, + 3771, 2865, 3446, + 3752, 2924, 3416, + 3726, 2992, 3374, + 3689, 3069, 3311, + 3634, 3156, 3210, + 3547, 3250, 3025, + 3398, 3352, 2521, + 3064, 3461, 0, + 0, 3574, 0, + 0, 3692, 0, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3954, 2761, 3654, + 3953, 2762, 3654, + 3953, 2763, 3654, + 3953, 2764, 3653, + 3953, 2766, 3653, + 3952, 2769, 3652, + 3952, 2772, 3652, + 3951, 2776, 3651, + 3950, 2781, 3649, + 3949, 2789, 3647, + 3948, 2798, 3645, + 3945, 2811, 3642, + 3942, 2827, 3638, + 3939, 2848, 3632, + 3933, 2874, 3624, + 3926, 2907, 3613, + 3916, 2948, 3598, + 3903, 2997, 3578, + 3884, 3055, 3548, + 3858, 3123, 3506, + 3821, 3201, 3443, + 3766, 3288, 3342, + 3679, 3382, 3157, + 3530, 3484, 2653, + 3197, 3593, 0, + 0, 3706, 0, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4085, 2895, 3786, + 4085, 2896, 3785, + 4085, 2898, 3785, + 4085, 2900, 3784, + 4084, 2904, 3784, + 4083, 2908, 3783, + 4082, 2913, 3781, + 4081, 2921, 3780, + 4080, 2930, 3777, + 4078, 2943, 3774, + 4075, 2959, 3770, + 4071, 2980, 3764, + 4065, 3006, 3756, + 4058, 3039, 3745, + 4048, 3080, 3730, + 4035, 3129, 3710, + 4017, 3187, 3680, + 3990, 3255, 3638, + 3953, 3333, 3575, + 3898, 3420, 3474, + 3811, 3514, 3289, + 3662, 3616, 2784, + 3329, 3725, 0, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3032, 3916, + 4095, 3036, 3916, + 4095, 3040, 3915, + 4095, 3045, 3913, + 4095, 3052, 3912, + 4095, 3062, 3909, + 4095, 3075, 3906, + 4095, 3091, 3902, + 4095, 3111, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3212, 3862, + 4095, 3261, 3842, + 4095, 3319, 3813, + 4095, 3387, 3770, + 4085, 3465, 3707, + 4030, 3552, 3606, + 3944, 3646, 3421, + 3794, 3748, 2916, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3167, 4048, + 4095, 3172, 4047, + 4095, 3177, 4045, + 4095, 3184, 4044, + 4095, 3194, 4041, + 4095, 3206, 4038, + 4095, 3223, 4034, + 4095, 3243, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3344, 3994, + 4095, 3393, 3974, + 4095, 3451, 3945, + 4095, 3520, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 286, 468, + 0, 316, 433, + 0, 352, 383, + 0, 397, 305, + 0, 450, 175, + 0, 514, 0, + 0, 586, 0, + 0, 668, 0, + 0, 759, 0, + 0, 857, 0, + 0, 962, 0, + 0, 1073, 0, + 0, 1189, 0, + 0, 1308, 0, + 0, 1430, 0, + 0, 1555, 0, + 0, 1681, 0, + 0, 1809, 0, + 0, 1938, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 296, 515, + 0, 325, 484, + 0, 361, 439, + 0, 405, 371, + 0, 458, 261, + 0, 520, 54, + 0, 592, 0, + 0, 673, 0, + 0, 762, 0, + 0, 860, 0, + 0, 965, 0, + 0, 1075, 0, + 0, 1190, 0, + 0, 1309, 0, + 0, 1431, 0, + 0, 1556, 0, + 0, 1682, 0, + 0, 1810, 0, + 0, 1938, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 38, 310, 571, + 0, 338, 544, + 0, 372, 505, + 0, 415, 447, + 0, 467, 355, + 0, 528, 195, + 0, 599, 0, + 0, 678, 0, + 0, 767, 0, + 0, 864, 0, + 0, 968, 0, + 0, 1077, 0, + 0, 1192, 0, + 0, 1311, 0, + 0, 1432, 0, + 0, 1556, 0, + 0, 1682, 0, + 0, 1810, 0, + 0, 1939, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 347, 327, 637, + 286, 354, 613, + 190, 387, 580, + 17, 429, 531, + 0, 479, 457, + 0, 539, 333, + 0, 608, 87, + 0, 686, 0, + 0, 774, 0, + 0, 869, 0, + 0, 972, 0, + 0, 1081, 0, + 0, 1194, 0, + 0, 1312, 0, + 0, 1434, 0, + 0, 1558, 0, + 0, 1683, 0, + 0, 1811, 0, + 0, 1939, 0, + 0, 2069, 0, + 0, 2199, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 577, 349, 712, + 541, 375, 692, + 489, 407, 664, + 408, 447, 624, + 270, 495, 565, + 0, 553, 470, + 0, 620, 302, + 0, 696, 0, + 0, 782, 0, + 0, 876, 0, + 0, 977, 0, + 0, 1085, 0, + 0, 1198, 0, + 0, 1315, 0, + 0, 1436, 0, + 0, 1559, 0, + 0, 1684, 0, + 0, 1812, 0, + 0, 1940, 0, + 0, 2069, 0, + 0, 2199, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 771, 377, 796, + 748, 401, 780, + 715, 431, 757, + 668, 469, 725, + 595, 515, 678, + 475, 571, 606, + 241, 635, 487, + 0, 709, 256, + 0, 793, 0, + 0, 885, 0, + 0, 984, 0, + 0, 1091, 0, + 0, 1202, 0, + 0, 1318, 0, + 0, 1438, 0, + 0, 1561, 0, + 0, 1686, 0, + 0, 1813, 0, + 0, 1941, 0, + 0, 2070, 0, + 0, 2199, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 944, 411, 889, + 928, 434, 876, + 907, 462, 858, + 876, 498, 832, + 832, 541, 795, + 764, 594, 740, + 655, 655, 655, + 450, 726, 509, + 0, 807, 186, + 0, 896, 0, + 0, 994, 0, + 0, 1098, 0, + 0, 1208, 0, + 0, 1323, 0, + 0, 1442, 0, + 0, 1564, 0, + 0, 1688, 0, + 0, 1814, 0, + 0, 1942, 0, + 0, 2071, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1105, 454, 990, + 1094, 475, 979, + 1079, 501, 965, + 1058, 533, 944, + 1029, 574, 916, + 986, 623, 874, + 922, 681, 813, + 820, 748, 714, + 633, 825, 536, + 113, 912, 73, + 0, 1006, 0, + 0, 1108, 0, + 0, 1216, 0, + 0, 1329, 0, + 0, 1446, 0, + 0, 1567, 0, + 0, 1691, 0, + 0, 1816, 0, + 0, 1943, 0, + 0, 2072, 0, + 0, 2201, 0, + 0, 2331, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1257, 506, 1097, + 1249, 524, 1088, + 1239, 547, 1077, + 1224, 577, 1061, + 1204, 614, 1039, + 1175, 659, 1008, + 1134, 713, 963, + 1073, 776, 894, + 975, 849, 783, + 799, 931, 571, + 345, 1022, 0, + 0, 1121, 0, + 0, 1226, 0, + 0, 1337, 0, + 0, 1452, 0, + 0, 1572, 0, + 0, 1694, 0, + 0, 1819, 0, + 0, 1945, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1404, 566, 1209, + 1398, 582, 1202, + 1390, 603, 1193, + 1380, 629, 1181, + 1366, 662, 1165, + 1346, 703, 1141, + 1318, 752, 1108, + 1278, 811, 1059, + 1218, 878, 984, + 1124, 956, 860, + 956, 1042, 613, + 540, 1137, 0, + 0, 1239, 0, + 0, 1347, 0, + 0, 1461, 0, + 0, 1578, 0, + 0, 1699, 0, + 0, 1823, 0, + 0, 1948, 0, + 0, 2075, 0, + 0, 2204, 0, + 0, 2333, 0, + 0, 2463, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1546, 637, 1325, + 1542, 651, 1320, + 1537, 668, 1314, + 1529, 691, 1304, + 1519, 720, 1292, + 1505, 756, 1274, + 1486, 800, 1249, + 1458, 853, 1214, + 1419, 915, 1162, + 1360, 987, 1082, + 1268, 1068, 947, + 1105, 1158, 665, + 714, 1256, 0, + 0, 1361, 0, + 0, 1471, 0, + 0, 1586, 0, + 0, 1705, 0, + 0, 1827, 0, + 0, 1952, 0, + 0, 2078, 0, + 0, 2206, 0, + 0, 2335, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1686, 717, 1446, + 1683, 728, 1442, + 1679, 743, 1437, + 1674, 763, 1430, + 1666, 787, 1420, + 1656, 819, 1407, + 1642, 857, 1388, + 1623, 904, 1363, + 1596, 960, 1326, + 1557, 1026, 1272, + 1500, 1101, 1187, + 1409, 1185, 1042, + 1250, 1278, 725, + 875, 1378, 0, + 0, 1485, 0, + 0, 1597, 0, + 0, 1713, 0, + 0, 1834, 0, + 0, 1957, 0, + 0, 2082, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1824, 805, 1569, + 1822, 815, 1566, + 1819, 827, 1562, + 1815, 843, 1556, + 1809, 864, 1549, + 1802, 891, 1539, + 1792, 924, 1526, + 1778, 965, 1507, + 1759, 1014, 1480, + 1732, 1073, 1442, + 1694, 1141, 1386, + 1637, 1219, 1298, + 1547, 1305, 1145, + 1391, 1400, 795, + 1028, 1502, 0, + 0, 1611, 0, + 0, 1724, 0, + 0, 1842, 0, + 0, 1963, 0, + 0, 2087, 0, + 0, 2212, 0, + 0, 2339, 0, + 0, 2468, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1960, 902, 1694, + 1959, 910, 1692, + 1956, 920, 1689, + 1953, 933, 1685, + 1949, 950, 1679, + 1944, 972, 1672, + 1937, 1000, 1662, + 1927, 1035, 1648, + 1913, 1077, 1628, + 1894, 1129, 1601, + 1868, 1190, 1562, + 1830, 1260, 1505, + 1773, 1340, 1413, + 1684, 1428, 1253, + 1530, 1525, 875, + 1174, 1629, 0, + 0, 1738, 0, + 0, 1853, 0, + 0, 1971, 0, + 0, 2093, 0, + 0, 2217, 0, + 0, 2343, 0, + 0, 2471, 0, + 0, 2599, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2095, 1005, 1821, + 2094, 1012, 1819, + 2093, 1020, 1817, + 2090, 1030, 1814, + 2087, 1044, 1810, + 2084, 1062, 1804, + 2078, 1085, 1797, + 2071, 1114, 1786, + 2061, 1150, 1772, + 2047, 1195, 1753, + 2029, 1248, 1725, + 2002, 1310, 1685, + 1964, 1382, 1626, + 1908, 1464, 1533, + 1820, 1554, 1367, + 1667, 1652, 963, + 1317, 1756, 0, + 0, 1867, 0, + 0, 1982, 0, + 0, 2101, 0, + 0, 2223, 0, + 0, 2348, 0, + 0, 2474, 0, + 0, 2602, 0, + 0, 2731, 0, + 0, 2860, 0, + 0, 2991, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2230, 1115, 1949, + 2229, 1120, 1948, + 2228, 1126, 1946, + 2226, 1135, 1944, + 2224, 1146, 1941, + 2221, 1160, 1936, + 2217, 1179, 1931, + 2212, 1203, 1923, + 2205, 1233, 1913, + 2195, 1270, 1898, + 2181, 1315, 1879, + 2162, 1369, 1851, + 2136, 1433, 1810, + 2098, 1507, 1750, + 2042, 1589, 1655, + 1955, 1681, 1484, + 1802, 1780, 1059, + 1457, 1885, 0, + 0, 1996, 0, + 0, 2112, 0, + 0, 2232, 0, + 0, 2354, 0, + 0, 2479, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2364, 1229, 2078, + 2363, 1233, 2077, + 2362, 1238, 2076, + 2361, 1245, 2074, + 2359, 1254, 2072, + 2357, 1265, 2069, + 2354, 1280, 2064, + 2350, 1299, 2059, + 2345, 1323, 2051, + 2338, 1354, 2041, + 2328, 1392, 2026, + 2314, 1438, 2006, + 2296, 1494, 1978, + 2269, 1559, 1937, + 2232, 1633, 1876, + 2176, 1717, 1779, + 2089, 1809, 1606, + 1937, 1908, 1163, + 1595, 2015, 0, + 0, 2127, 0, + 0, 2243, 0, + 0, 2363, 0, + 0, 2486, 0, + 0, 2611, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2497, 1348, 2208, + 2497, 1351, 2207, + 2496, 1355, 2206, + 2495, 1360, 2205, + 2494, 1367, 2203, + 2492, 1376, 2201, + 2490, 1387, 2198, + 2487, 1402, 2193, + 2483, 1422, 2188, + 2478, 1447, 2180, + 2471, 1478, 2169, + 2461, 1517, 2155, + 2447, 1564, 2135, + 2429, 1620, 2106, + 2402, 1686, 2065, + 2365, 1761, 2004, + 2309, 1845, 1906, + 2222, 1938, 1729, + 2071, 2038, 1272, + 1731, 2145, 0, + 0, 2257, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2630, 1470, 2338, + 2630, 1472, 2338, + 2629, 1475, 2337, + 2629, 1479, 2336, + 2628, 1484, 2335, + 2627, 1491, 2333, + 2625, 1500, 2331, + 2623, 1512, 2327, + 2620, 1527, 2323, + 2616, 1547, 2317, + 2611, 1572, 2310, + 2603, 1604, 2299, + 2594, 1643, 2284, + 2580, 1691, 2264, + 2561, 1748, 2236, + 2535, 1814, 2194, + 2498, 1890, 2132, + 2442, 1974, 2033, + 2355, 2068, 1855, + 2205, 2168, 1386, + 1867, 2276, 0, + 0, 2388, 0, + 0, 2505, 0, + 0, 2625, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2763, 1594, 2469, + 2763, 1595, 2469, + 2762, 1598, 2468, + 2762, 1601, 2467, + 2761, 1605, 2466, + 2760, 1610, 2465, + 2759, 1617, 2463, + 2757, 1626, 2461, + 2755, 1638, 2458, + 2752, 1654, 2454, + 2748, 1674, 2448, + 2743, 1699, 2440, + 2736, 1731, 2429, + 2726, 1771, 2415, + 2713, 1819, 2394, + 2694, 1876, 2366, + 2668, 1943, 2324, + 2630, 2019, 2262, + 2575, 2104, 2162, + 2488, 2198, 1982, + 2338, 2299, 1505, + 2001, 2407, 0, + 0, 2519, 0, + 0, 2637, 0, + 0, 2757, 0, + 0, 2880, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1720, 2600, + 2895, 1721, 2600, + 2895, 1723, 2600, + 2895, 1725, 2599, + 2894, 1728, 2598, + 2894, 1732, 2597, + 2893, 1738, 2596, + 2891, 1745, 2594, + 2890, 1754, 2592, + 2888, 1766, 2589, + 2885, 1782, 2584, + 2881, 1802, 2579, + 2876, 1828, 2571, + 2868, 1860, 2560, + 2859, 1900, 2545, + 2845, 1948, 2525, + 2827, 2006, 2496, + 2800, 2073, 2454, + 2763, 2149, 2392, + 2708, 2235, 2292, + 2621, 2329, 2111, + 2471, 2430, 1626, + 2135, 2538, 0, + 0, 2651, 0, + 0, 2768, 0, + 0, 2889, 0, + 0, 3012, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3028, 1847, 2732, + 3028, 1848, 2731, + 3028, 1850, 2731, + 3027, 1851, 2731, + 3027, 1854, 2730, + 3027, 1857, 2729, + 3026, 1861, 2728, + 3025, 1866, 2727, + 3024, 1873, 2725, + 3022, 1883, 2723, + 3020, 1895, 2720, + 3017, 1911, 2716, + 3013, 1931, 2710, + 3008, 1957, 2702, + 3001, 1989, 2691, + 2991, 2030, 2676, + 2978, 2078, 2656, + 2959, 2136, 2627, + 2933, 2203, 2585, + 2895, 2280, 2522, + 2840, 2366, 2422, + 2753, 2460, 2240, + 2604, 2562, 1750, + 2268, 2670, 0, + 0, 2783, 0, + 0, 2900, 0, + 0, 3021, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 3160, 1976, 2863, + 3160, 1977, 2863, + 3160, 1978, 2863, + 3160, 1979, 2862, + 3160, 1981, 2862, + 3159, 1983, 2862, + 3159, 1986, 2861, + 3158, 1990, 2860, + 3157, 1996, 2858, + 3156, 2003, 2857, + 3154, 2012, 2854, + 3152, 2025, 2851, + 3149, 2040, 2847, + 3146, 2061, 2841, + 3140, 2087, 2833, + 3133, 2120, 2822, + 3123, 2160, 2808, + 3110, 2209, 2787, + 3091, 2267, 2758, + 3065, 2334, 2716, + 3028, 2411, 2653, + 2972, 2497, 2553, + 2886, 2592, 2370, + 2736, 2693, 1876, + 2401, 2801, 0, + 0, 2914, 0, + 0, 3032, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3529, 0, + 0, 3657, 0, + 3293, 2105, 2995, + 3293, 2106, 2995, + 3293, 2107, 2995, + 3292, 2108, 2994, + 3292, 2109, 2994, + 3292, 2111, 2994, + 3292, 2113, 2993, + 3291, 2116, 2992, + 3290, 2120, 2991, + 3290, 2126, 2990, + 3288, 2133, 2988, + 3287, 2142, 2986, + 3285, 2155, 2983, + 3282, 2171, 2978, + 3278, 2191, 2973, + 3272, 2217, 2965, + 3265, 2250, 2954, + 3256, 2291, 2939, + 3242, 2339, 2919, + 3224, 2398, 2890, + 3197, 2465, 2848, + 3160, 2542, 2785, + 3105, 2629, 2684, + 3018, 2723, 2500, + 2869, 2825, 2004, + 2534, 2933, 0, + 0, 3046, 0, + 0, 3164, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3661, 0, + 3425, 2236, 3127, + 3425, 2236, 3127, + 3425, 2237, 3126, + 3425, 2237, 3126, + 3425, 2238, 3126, + 3424, 2240, 3126, + 3424, 2241, 3125, + 3424, 2244, 3125, + 3423, 2247, 3124, + 3423, 2251, 3123, + 3422, 2256, 3122, + 3421, 2264, 3120, + 3419, 2273, 3118, + 3417, 2286, 3114, + 3414, 2302, 3110, + 3410, 2322, 3104, + 3405, 2348, 3096, + 3397, 2381, 3086, + 3388, 2422, 3071, + 3374, 2471, 3050, + 3356, 2529, 3021, + 3330, 2597, 2979, + 3292, 2674, 2916, + 3237, 2760, 2815, + 3150, 2855, 2631, + 3001, 2957, 2132, + 2667, 3065, 0, + 0, 3178, 0, + 0, 3296, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2366, 3259, + 3557, 2367, 3258, + 3557, 2367, 3258, + 3557, 2367, 3258, + 3557, 2368, 3258, + 3557, 2369, 3258, + 3557, 2371, 3258, + 3556, 2372, 3257, + 3556, 2375, 3257, + 3555, 2378, 3256, + 3555, 2382, 3255, + 3554, 2387, 3254, + 3553, 2395, 3252, + 3551, 2404, 3249, + 3549, 2417, 3246, + 3546, 2433, 3242, + 3542, 2453, 3236, + 3537, 2480, 3228, + 3530, 2512, 3217, + 3520, 2553, 3203, + 3506, 2602, 3182, + 3488, 2660, 3153, + 3462, 2728, 3111, + 3424, 2806, 3048, + 3369, 2892, 2947, + 3283, 2987, 2763, + 3133, 3089, 2262, + 2799, 3197, 0, + 0, 3310, 0, + 0, 3428, 0, + 0, 3548, 0, + 0, 3672, 0, + 3689, 2497, 3390, + 3689, 2497, 3390, + 3689, 2498, 3390, + 3689, 2498, 3390, + 3689, 2499, 3390, + 3689, 2499, 3390, + 3689, 2500, 3390, + 3689, 2502, 3389, + 3688, 2504, 3389, + 3688, 2506, 3388, + 3688, 2509, 3388, + 3687, 2513, 3387, + 3686, 2519, 3385, + 3685, 2526, 3384, + 3683, 2535, 3381, + 3681, 2548, 3378, + 3678, 2564, 3374, + 3674, 2585, 3368, + 3669, 2611, 3360, + 3662, 2644, 3349, + 3652, 2684, 3334, + 3639, 2734, 3314, + 3620, 2792, 3285, + 3594, 2860, 3243, + 3557, 2937, 3179, + 3501, 3024, 3078, + 3415, 3119, 2894, + 3266, 3220, 2392, + 2932, 3329, 0, + 0, 3442, 0, + 0, 3560, 0, + 0, 3680, 0, + 3822, 2628, 3522, + 3822, 2629, 3522, + 3822, 2629, 3522, + 3822, 2629, 3522, + 3821, 2630, 3522, + 3821, 2630, 3522, + 3821, 2631, 3522, + 3821, 2632, 3522, + 3821, 2633, 3521, + 3821, 2635, 3521, + 3820, 2637, 3520, + 3820, 2641, 3520, + 3819, 2645, 3519, + 3818, 2650, 3517, + 3817, 2657, 3516, + 3815, 2667, 3513, + 3813, 2679, 3510, + 3810, 2696, 3506, + 3806, 2716, 3500, + 3801, 2743, 3492, + 3794, 2775, 3481, + 3784, 2816, 3466, + 3771, 2865, 3446, + 3752, 2924, 3417, + 3726, 2992, 3375, + 3689, 3069, 3311, + 3633, 3156, 3210, + 3547, 3250, 3026, + 3398, 3352, 2523, + 3064, 3461, 0, + 0, 3574, 0, + 0, 3692, 0, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3954, 2761, 3654, + 3954, 2762, 3654, + 3953, 2763, 3654, + 3953, 2764, 3654, + 3953, 2765, 3653, + 3953, 2767, 3653, + 3952, 2769, 3652, + 3952, 2772, 3652, + 3951, 2776, 3651, + 3950, 2782, 3649, + 3949, 2789, 3648, + 3948, 2799, 3645, + 3945, 2811, 3642, + 3942, 2827, 3638, + 3939, 2848, 3632, + 3933, 2874, 3624, + 3926, 2907, 3613, + 3916, 2948, 3598, + 3903, 2997, 3578, + 3884, 3056, 3549, + 3858, 3124, 3506, + 3821, 3201, 3443, + 3766, 3288, 3342, + 3679, 3382, 3157, + 3530, 3484, 2654, + 3196, 3593, 0, + 0, 3706, 0, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4086, 2894, 3786, + 4085, 2895, 3786, + 4085, 2897, 3785, + 4085, 2898, 3785, + 4085, 2901, 3784, + 4084, 2904, 3784, + 4083, 2908, 3783, + 4082, 2914, 3781, + 4081, 2921, 3780, + 4080, 2930, 3777, + 4077, 2943, 3774, + 4075, 2959, 3770, + 4071, 2980, 3764, + 4065, 3006, 3756, + 4058, 3039, 3745, + 4048, 3080, 3730, + 4035, 3129, 3710, + 4017, 3188, 3681, + 3990, 3256, 3638, + 3953, 3333, 3575, + 3898, 3420, 3474, + 3811, 3514, 3289, + 3662, 3616, 2785, + 3329, 3725, 0, + 4095, 3023, 3919, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3033, 3916, + 4095, 3036, 3916, + 4095, 3040, 3915, + 4095, 3045, 3913, + 4095, 3053, 3912, + 4095, 3062, 3909, + 4095, 3075, 3906, + 4095, 3091, 3902, + 4095, 3112, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3212, 3862, + 4095, 3261, 3842, + 4095, 3319, 3813, + 4095, 3388, 3770, + 4085, 3465, 3707, + 4030, 3552, 3606, + 3944, 3646, 3421, + 3794, 3748, 2916, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3168, 4048, + 4095, 3172, 4047, + 4095, 3177, 4045, + 4095, 3185, 4044, + 4095, 3194, 4041, + 4095, 3207, 4038, + 4095, 3223, 4034, + 4095, 3244, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3344, 3994, + 4095, 3393, 3974, + 4095, 3451, 3945, + 4095, 3520, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 387, 587, + 0, 410, 561, + 0, 440, 523, + 0, 477, 468, + 0, 523, 381, + 0, 577, 231, + 0, 641, 0, + 0, 714, 0, + 0, 797, 0, + 0, 888, 0, + 0, 987, 0, + 0, 1093, 0, + 0, 1204, 0, + 0, 1320, 0, + 0, 1439, 0, + 0, 1562, 0, + 0, 1687, 0, + 0, 1813, 0, + 0, 1941, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 395, 624, + 0, 418, 600, + 0, 448, 565, + 0, 484, 515, + 0, 529, 437, + 0, 583, 307, + 0, 646, 42, + 0, 718, 0, + 0, 800, 0, + 0, 891, 0, + 0, 989, 0, + 0, 1094, 0, + 0, 1205, 0, + 0, 1321, 0, + 0, 1440, 0, + 0, 1562, 0, + 0, 1687, 0, + 0, 1813, 0, + 0, 1941, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 406, 669, + 0, 428, 647, + 0, 457, 616, + 0, 493, 571, + 0, 537, 503, + 0, 590, 393, + 0, 652, 186, + 0, 724, 0, + 0, 805, 0, + 0, 894, 0, + 0, 992, 0, + 0, 1097, 0, + 0, 1207, 0, + 0, 1322, 0, + 0, 1441, 0, + 0, 1563, 0, + 0, 1688, 0, + 0, 1814, 0, + 0, 1942, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 247, 420, 722, + 170, 442, 703, + 41, 470, 676, + 0, 505, 637, + 0, 547, 579, + 0, 599, 487, + 0, 660, 327, + 0, 731, 0, + 0, 811, 0, + 0, 899, 0, + 0, 996, 0, + 0, 1100, 0, + 0, 1210, 0, + 0, 1324, 0, + 0, 1443, 0, + 0, 1564, 0, + 0, 1688, 0, + 0, 1815, 0, + 0, 1942, 0, + 0, 2071, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 519, 438, 786, + 479, 459, 769, + 418, 486, 745, + 322, 520, 712, + 149, 561, 663, + 0, 611, 589, + 0, 671, 465, + 0, 740, 219, + 0, 818, 0, + 0, 906, 0, + 0, 1001, 0, + 0, 1104, 0, + 0, 1213, 0, + 0, 1327, 0, + 0, 1445, 0, + 0, 1566, 0, + 0, 1690, 0, + 0, 1815, 0, + 0, 1943, 0, + 0, 2071, 0, + 0, 2201, 0, + 0, 2331, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 734, 461, 858, + 709, 481, 844, + 673, 507, 824, + 621, 539, 797, + 540, 579, 756, + 402, 627, 697, + 110, 685, 602, + 0, 752, 434, + 0, 828, 18, + 0, 914, 0, + 0, 1008, 0, + 0, 1109, 0, + 0, 1217, 0, + 0, 1330, 0, + 0, 1447, 0, + 0, 1568, 0, + 0, 1691, 0, + 0, 1817, 0, + 0, 1944, 0, + 0, 2072, 0, + 0, 2201, 0, + 0, 2331, 0, + 0, 2462, 0, + 0, 2592, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 919, 490, 940, + 903, 509, 929, + 880, 533, 912, + 847, 563, 889, + 800, 601, 857, + 727, 647, 810, + 607, 703, 738, + 373, 767, 619, + 0, 842, 388, + 0, 925, 0, + 0, 1017, 0, + 0, 1116, 0, + 0, 1223, 0, + 0, 1334, 0, + 0, 1451, 0, + 0, 1570, 0, + 0, 1693, 0, + 0, 1818, 0, + 0, 1945, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1087, 526, 1031, + 1076, 544, 1021, + 1061, 566, 1008, + 1039, 594, 990, + 1008, 630, 964, + 964, 673, 927, + 896, 726, 872, + 787, 787, 787, + 582, 859, 641, + 0, 939, 318, + 0, 1029, 0, + 0, 1126, 0, + 0, 1230, 0, + 0, 1340, 0, + 0, 1455, 0, + 0, 1574, 0, + 0, 1696, 0, + 0, 1820, 0, + 0, 1946, 0, + 0, 2074, 0, + 0, 2203, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1245, 570, 1130, + 1237, 586, 1122, + 1226, 607, 1111, + 1211, 633, 1097, + 1190, 665, 1076, + 1161, 706, 1048, + 1118, 755, 1006, + 1055, 813, 945, + 952, 880, 846, + 765, 958, 669, + 245, 1044, 205, + 0, 1138, 0, + 0, 1240, 0, + 0, 1348, 0, + 0, 1461, 0, + 0, 1578, 0, + 0, 1699, 0, + 0, 1823, 0, + 0, 1948, 0, + 0, 2075, 0, + 0, 2204, 0, + 0, 2333, 0, + 0, 2463, 0, + 0, 2594, 0, + 0, 2724, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1395, 623, 1235, + 1389, 638, 1229, + 1381, 656, 1220, + 1371, 679, 1209, + 1356, 709, 1193, + 1336, 746, 1171, + 1308, 791, 1140, + 1267, 845, 1095, + 1205, 908, 1026, + 1107, 981, 915, + 932, 1063, 703, + 477, 1154, 0, + 0, 1253, 0, + 0, 1358, 0, + 0, 1469, 0, + 0, 1585, 0, + 0, 1704, 0, + 0, 1826, 0, + 0, 1951, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1540, 686, 1346, + 1536, 698, 1341, + 1530, 715, 1334, + 1522, 735, 1326, + 1512, 762, 1313, + 1498, 794, 1297, + 1478, 835, 1273, + 1450, 884, 1240, + 1410, 943, 1191, + 1351, 1011, 1116, + 1256, 1088, 993, + 1088, 1174, 745, + 672, 1269, 0, + 0, 1371, 0, + 0, 1479, 0, + 0, 1593, 0, + 0, 1710, 0, + 0, 1831, 0, + 0, 1955, 0, + 0, 2080, 0, + 0, 2207, 0, + 0, 2336, 0, + 0, 2465, 0, + 0, 2595, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1681, 758, 1461, + 1678, 769, 1458, + 1674, 783, 1453, + 1669, 801, 1446, + 1661, 823, 1436, + 1651, 852, 1424, + 1637, 888, 1406, + 1618, 932, 1381, + 1590, 985, 1346, + 1551, 1047, 1295, + 1492, 1119, 1215, + 1400, 1200, 1079, + 1237, 1290, 797, + 846, 1388, 0, + 0, 1493, 0, + 0, 1603, 0, + 0, 1718, 0, + 0, 1837, 0, + 0, 1959, 0, + 0, 2084, 0, + 0, 2210, 0, + 0, 2338, 0, + 0, 2467, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1820, 840, 1581, + 1818, 849, 1578, + 1815, 860, 1574, + 1811, 875, 1569, + 1806, 895, 1562, + 1798, 920, 1552, + 1788, 951, 1539, + 1774, 989, 1521, + 1755, 1036, 1495, + 1728, 1092, 1458, + 1689, 1158, 1404, + 1632, 1233, 1319, + 1541, 1317, 1174, + 1382, 1410, 857, + 1007, 1510, 0, + 0, 1617, 0, + 0, 1729, 0, + 0, 1846, 0, + 0, 1966, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1958, 930, 1703, + 1956, 937, 1701, + 1954, 947, 1698, + 1951, 959, 1694, + 1947, 976, 1689, + 1941, 996, 1681, + 1934, 1023, 1671, + 1924, 1056, 1658, + 1910, 1097, 1639, + 1891, 1146, 1613, + 1865, 1205, 1575, + 1826, 1273, 1518, + 1769, 1351, 1430, + 1679, 1437, 1277, + 1523, 1532, 927, + 1160, 1635, 0, + 0, 1743, 0, + 0, 1856, 0, + 0, 1974, 0, + 0, 2095, 0, + 0, 2219, 0, + 0, 2344, 0, + 0, 2471, 0, + 0, 2600, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2094, 1028, 1828, + 2092, 1034, 1826, + 2091, 1042, 1824, + 2088, 1052, 1821, + 2086, 1065, 1817, + 2082, 1082, 1811, + 2076, 1104, 1804, + 2069, 1132, 1794, + 2059, 1167, 1780, + 2045, 1210, 1761, + 2026, 1261, 1733, + 2000, 1322, 1695, + 1962, 1392, 1637, + 1905, 1472, 1545, + 1816, 1561, 1385, + 1662, 1657, 1007, + 1307, 1761, 0, + 0, 1870, 0, + 0, 1985, 0, + 0, 2103, 0, + 0, 2225, 0, + 0, 2349, 0, + 0, 2475, 0, + 0, 2603, 0, + 0, 2731, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2228, 1133, 1954, + 2228, 1138, 1953, + 2226, 1144, 1951, + 2225, 1152, 1949, + 2223, 1163, 1946, + 2220, 1176, 1942, + 2216, 1194, 1936, + 2210, 1217, 1929, + 2203, 1246, 1918, + 2193, 1282, 1904, + 2180, 1327, 1885, + 2161, 1380, 1857, + 2134, 1442, 1817, + 2096, 1514, 1758, + 2040, 1596, 1665, + 1952, 1686, 1499, + 1799, 1784, 1095, + 1449, 1888, 0, + 0, 1999, 0, + 0, 2114, 0, + 0, 2233, 0, + 0, 2356, 0, + 0, 2480, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2863, 0, + 0, 2992, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2363, 1243, 2082, + 2362, 1247, 2081, + 2361, 1252, 2080, + 2360, 1258, 2078, + 2358, 1267, 2076, + 2356, 1278, 2073, + 2353, 1292, 2068, + 2349, 1311, 2063, + 2344, 1335, 2055, + 2337, 1365, 2045, + 2327, 1402, 2031, + 2313, 1447, 2011, + 2294, 1502, 1983, + 2268, 1565, 1942, + 2230, 1639, 1882, + 2174, 1721, 1787, + 2087, 1813, 1617, + 1934, 1912, 1191, + 1589, 2017, 0, + 0, 2129, 0, + 0, 2244, 0, + 0, 2364, 0, + 0, 2486, 0, + 0, 2611, 0, + 0, 2738, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3124, 0, + 0, 3255, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2496, 1359, 2211, + 2496, 1362, 2210, + 2495, 1365, 2209, + 2494, 1370, 2208, + 2493, 1377, 2206, + 2491, 1386, 2204, + 2489, 1397, 2201, + 2486, 1412, 2196, + 2482, 1431, 2191, + 2477, 1455, 2183, + 2470, 1486, 2173, + 2460, 1524, 2158, + 2446, 1570, 2138, + 2428, 1626, 2110, + 2402, 1691, 2069, + 2364, 1765, 2008, + 2308, 1849, 1911, + 2221, 1941, 1738, + 2069, 2041, 1295, + 1727, 2147, 0, + 0, 2259, 0, + 0, 2375, 0, + 0, 2495, 0, + 0, 2618, 0, + 0, 2743, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3648, 0, + 2630, 1478, 2340, + 2629, 1480, 2340, + 2629, 1483, 2339, + 2628, 1487, 2338, + 2627, 1492, 2337, + 2626, 1499, 2335, + 2624, 1508, 2333, + 2622, 1519, 2330, + 2619, 1535, 2326, + 2615, 1554, 2320, + 2610, 1579, 2312, + 2603, 1610, 2302, + 2593, 1649, 2287, + 2579, 1696, 2267, + 2561, 1752, 2238, + 2535, 1818, 2197, + 2497, 1893, 2136, + 2441, 1977, 2038, + 2354, 2070, 1861, + 2203, 2170, 1404, + 1864, 2277, 0, + 0, 2389, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 2763, 1600, 2471, + 2762, 1602, 2470, + 2762, 1604, 2470, + 2761, 1607, 2469, + 2761, 1611, 2468, + 2760, 1616, 2467, + 2759, 1623, 2465, + 2757, 1632, 2463, + 2755, 1644, 2460, + 2752, 1659, 2455, + 2748, 1679, 2450, + 2743, 1704, 2442, + 2735, 1736, 2431, + 2726, 1775, 2417, + 2712, 1823, 2396, + 2694, 1880, 2368, + 2667, 1946, 2326, + 2630, 2022, 2264, + 2574, 2107, 2165, + 2487, 2200, 1987, + 2337, 2301, 1518, + 1999, 2408, 0, + 0, 2520, 0, + 0, 2637, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 2895, 1725, 2601, + 2895, 1726, 2601, + 2895, 1728, 2601, + 2894, 1730, 2600, + 2894, 1733, 2599, + 2893, 1737, 2599, + 2892, 1742, 2597, + 2891, 1749, 2595, + 2890, 1758, 2593, + 2887, 1770, 2590, + 2884, 1786, 2586, + 2881, 1806, 2580, + 2875, 1832, 2572, + 2868, 1864, 2561, + 2858, 1903, 2547, + 2845, 1951, 2526, + 2826, 2008, 2498, + 2800, 2075, 2456, + 2763, 2151, 2394, + 2707, 2237, 2294, + 2620, 2330, 2114, + 2470, 2431, 1637, + 2133, 2539, 0, + 0, 2652, 0, + 0, 2769, 0, + 0, 2889, 0, + 0, 3012, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3028, 1851, 2733, + 3028, 1852, 2732, + 3027, 1853, 2732, + 3027, 1855, 2732, + 3027, 1857, 2731, + 3026, 1860, 2730, + 3026, 1864, 2729, + 3025, 1870, 2728, + 3024, 1877, 2726, + 3022, 1886, 2724, + 3020, 1898, 2721, + 3017, 1914, 2717, + 3013, 1934, 2711, + 3008, 1960, 2703, + 3000, 1992, 2692, + 2991, 2032, 2677, + 2977, 2080, 2657, + 2959, 2138, 2628, + 2933, 2205, 2586, + 2895, 2282, 2524, + 2840, 2367, 2424, + 2753, 2461, 2243, + 2603, 2562, 1758, + 2267, 2670, 0, + 0, 2783, 0, + 0, 2900, 0, + 0, 3021, 0, + 0, 3144, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 3160, 1979, 2864, + 3160, 1979, 2864, + 3160, 1980, 2863, + 3160, 1982, 2863, + 3160, 1983, 2863, + 3159, 1986, 2862, + 3159, 1989, 2861, + 3158, 1993, 2861, + 3157, 1998, 2859, + 3156, 2005, 2857, + 3154, 2015, 2855, + 3152, 2027, 2852, + 3149, 2043, 2848, + 3145, 2063, 2842, + 3140, 2089, 2834, + 3133, 2122, 2823, + 3123, 2162, 2809, + 3110, 2210, 2788, + 3091, 2268, 2759, + 3065, 2335, 2717, + 3028, 2412, 2654, + 2972, 2498, 2554, + 2886, 2592, 2372, + 2736, 2694, 1882, + 2401, 2802, 0, + 0, 2915, 0, + 0, 3032, 0, + 0, 3153, 0, + 0, 3276, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 3293, 2107, 2995, + 3293, 2108, 2995, + 3292, 2109, 2995, + 3292, 2110, 2995, + 3292, 2111, 2995, + 3292, 2113, 2994, + 3291, 2115, 2994, + 3291, 2118, 2993, + 3290, 2122, 2992, + 3289, 2128, 2991, + 3288, 2135, 2989, + 3287, 2144, 2986, + 3284, 2157, 2983, + 3282, 2173, 2979, + 3278, 2193, 2973, + 3272, 2219, 2965, + 3265, 2252, 2955, + 3255, 2292, 2940, + 3242, 2341, 2919, + 3223, 2399, 2890, + 3197, 2466, 2848, + 3160, 2543, 2785, + 3104, 2629, 2685, + 3018, 2724, 2502, + 2868, 2825, 2008, + 2534, 2933, 0, + 0, 3046, 0, + 0, 3164, 0, + 0, 3285, 0, + 0, 3408, 0, + 0, 3534, 0, + 0, 3661, 0, + 3425, 2237, 3127, + 3425, 2238, 3127, + 3425, 2238, 3127, + 3425, 2239, 3127, + 3425, 2240, 3126, + 3424, 2241, 3126, + 3424, 2243, 3126, + 3424, 2245, 3125, + 3423, 2248, 3124, + 3423, 2252, 3123, + 3422, 2258, 3122, + 3420, 2265, 3120, + 3419, 2275, 3118, + 3417, 2287, 3115, + 3414, 2303, 3111, + 3410, 2323, 3105, + 3405, 2350, 3097, + 3397, 2382, 3086, + 3388, 2423, 3071, + 3374, 2472, 3051, + 3356, 2530, 3022, + 3330, 2597, 2980, + 3292, 2675, 2917, + 3237, 2761, 2816, + 3150, 2855, 2633, + 3001, 2957, 2136, + 2666, 3065, 0, + 0, 3178, 0, + 0, 3296, 0, + 0, 3417, 0, + 0, 3540, 0, + 0, 3666, 0, + 3557, 2367, 3259, + 3557, 2368, 3259, + 3557, 2368, 3259, + 3557, 2369, 3259, + 3557, 2369, 3258, + 3557, 2370, 3258, + 3557, 2372, 3258, + 3556, 2373, 3257, + 3556, 2376, 3257, + 3555, 2379, 3256, + 3555, 2383, 3255, + 3554, 2389, 3254, + 3553, 2396, 3252, + 3551, 2405, 3250, + 3549, 2418, 3247, + 3546, 2434, 3242, + 3542, 2454, 3236, + 3537, 2480, 3229, + 3530, 2513, 3218, + 3520, 2554, 3203, + 3506, 2603, 3182, + 3488, 2661, 3153, + 3462, 2729, 3111, + 3424, 2806, 3048, + 3369, 2892, 2947, + 3283, 2987, 2763, + 3133, 3089, 2264, + 2799, 3197, 0, + 0, 3310, 0, + 0, 3428, 0, + 0, 3548, 0, + 0, 3672, 0, + 3689, 2498, 3391, + 3689, 2498, 3391, + 3689, 2499, 3391, + 3689, 2499, 3390, + 3689, 2500, 3390, + 3689, 2500, 3390, + 3689, 2501, 3390, + 3689, 2503, 3390, + 3688, 2504, 3389, + 3688, 2507, 3389, + 3688, 2510, 3388, + 3687, 2514, 3387, + 3686, 2520, 3386, + 3685, 2527, 3384, + 3683, 2536, 3382, + 3681, 2549, 3378, + 3678, 2565, 3374, + 3674, 2585, 3368, + 3669, 2612, 3360, + 3662, 2644, 3350, + 3652, 2685, 3335, + 3639, 2734, 3314, + 3620, 2792, 3285, + 3594, 2860, 3243, + 3557, 2938, 3180, + 3501, 3024, 3079, + 3415, 3119, 2895, + 3265, 3221, 2394, + 2932, 3329, 0, + 0, 3442, 0, + 0, 3560, 0, + 0, 3681, 0, + 3822, 2629, 3523, + 3822, 2629, 3523, + 3822, 2630, 3523, + 3822, 2630, 3522, + 3821, 2630, 3522, + 3821, 2631, 3522, + 3821, 2632, 3522, + 3821, 2633, 3522, + 3821, 2634, 3522, + 3821, 2636, 3521, + 3820, 2638, 3521, + 3820, 2641, 3520, + 3819, 2645, 3519, + 3818, 2651, 3518, + 3817, 2658, 3516, + 3815, 2668, 3513, + 3813, 2680, 3510, + 3810, 2696, 3506, + 3806, 2717, 3500, + 3801, 2743, 3492, + 3794, 2776, 3481, + 3784, 2817, 3467, + 3771, 2866, 3446, + 3752, 2924, 3417, + 3726, 2992, 3375, + 3689, 3069, 3312, + 3633, 3156, 3210, + 3547, 3251, 3026, + 3398, 3353, 2524, + 3064, 3461, 0, + 0, 3574, 0, + 0, 3692, 0, + 3954, 2760, 3655, + 3954, 2761, 3655, + 3954, 2761, 3654, + 3954, 2761, 3654, + 3954, 2761, 3654, + 3954, 2762, 3654, + 3953, 2762, 3654, + 3953, 2763, 3654, + 3953, 2764, 3654, + 3953, 2765, 3653, + 3953, 2767, 3653, + 3952, 2769, 3652, + 3952, 2773, 3652, + 3951, 2777, 3651, + 3950, 2782, 3649, + 3949, 2790, 3648, + 3947, 2799, 3645, + 3945, 2812, 3642, + 3942, 2828, 3638, + 3939, 2848, 3632, + 3933, 2875, 3624, + 3926, 2908, 3613, + 3916, 2948, 3598, + 3903, 2997, 3578, + 3884, 3056, 3549, + 3858, 3124, 3507, + 3821, 3201, 3443, + 3766, 3288, 3342, + 3679, 3383, 3158, + 3530, 3485, 2655, + 3196, 3593, 0, + 0, 3706, 0, + 4086, 2892, 3787, + 4086, 2892, 3787, + 4086, 2892, 3787, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2893, 3786, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4086, 2895, 3786, + 4085, 2896, 3786, + 4085, 2897, 3785, + 4085, 2899, 3785, + 4084, 2901, 3784, + 4084, 2904, 3784, + 4083, 2908, 3783, + 4082, 2914, 3781, + 4081, 2921, 3780, + 4080, 2931, 3777, + 4077, 2943, 3774, + 4075, 2959, 3770, + 4071, 2980, 3764, + 4065, 3006, 3756, + 4058, 3039, 3745, + 4048, 3080, 3730, + 4035, 3129, 3710, + 4016, 3188, 3681, + 3990, 3256, 3639, + 3953, 3333, 3575, + 3898, 3420, 3474, + 3811, 3515, 3289, + 3662, 3617, 2786, + 3329, 3725, 0, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3029, 3917, + 4095, 3030, 3917, + 4095, 3033, 3916, + 4095, 3036, 3916, + 4095, 3040, 3915, + 4095, 3046, 3913, + 4095, 3053, 3912, + 4095, 3062, 3909, + 4095, 3075, 3906, + 4095, 3091, 3902, + 4095, 3112, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3212, 3862, + 4095, 3261, 3842, + 4095, 3320, 3813, + 4095, 3388, 3771, + 4085, 3465, 3707, + 4030, 3552, 3606, + 3943, 3647, 3421, + 3794, 3749, 2917, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3161, 4049, + 4095, 3162, 4049, + 4095, 3165, 4048, + 4095, 3168, 4048, + 4095, 3172, 4047, + 4095, 3177, 4045, + 4095, 3185, 4044, + 4095, 3194, 4041, + 4095, 3207, 4038, + 4095, 3223, 4034, + 4095, 3244, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3344, 3994, + 4095, 3393, 3974, + 4095, 3452, 3945, + 4095, 3520, 3903, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3779, 3553, + 0, 494, 709, + 0, 513, 690, + 0, 537, 662, + 0, 567, 621, + 0, 604, 561, + 0, 650, 466, + 0, 705, 295, + 0, 770, 0, + 0, 843, 0, + 0, 927, 0, + 0, 1018, 0, + 0, 1118, 0, + 0, 1223, 0, + 0, 1335, 0, + 0, 1451, 0, + 0, 1571, 0, + 0, 1693, 0, + 0, 1818, 0, + 0, 1945, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 500, 738, + 0, 519, 719, + 0, 543, 693, + 0, 572, 655, + 0, 610, 600, + 0, 655, 513, + 0, 709, 363, + 0, 773, 25, + 0, 846, 0, + 0, 929, 0, + 0, 1020, 0, + 0, 1119, 0, + 0, 1225, 0, + 0, 1336, 0, + 0, 1452, 0, + 0, 1571, 0, + 0, 1694, 0, + 0, 1819, 0, + 0, 1945, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 509, 773, + 0, 527, 756, + 0, 550, 732, + 0, 580, 697, + 0, 616, 647, + 0, 661, 569, + 0, 715, 440, + 0, 778, 174, + 0, 850, 0, + 0, 932, 0, + 0, 1023, 0, + 0, 1121, 0, + 0, 1227, 0, + 0, 1337, 0, + 0, 1453, 0, + 0, 1572, 0, + 0, 1694, 0, + 0, 1819, 0, + 0, 1946, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 66, 520, 816, + 0, 538, 801, + 0, 561, 779, + 0, 589, 748, + 0, 625, 703, + 0, 669, 635, + 0, 722, 525, + 0, 784, 318, + 0, 856, 0, + 0, 937, 0, + 0, 1027, 0, + 0, 1124, 0, + 0, 1229, 0, + 0, 1339, 0, + 0, 1454, 0, + 0, 1573, 0, + 0, 1695, 0, + 0, 1820, 0, + 0, 1946, 0, + 0, 2074, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 429, 534, 868, + 379, 552, 854, + 302, 574, 835, + 173, 602, 808, + 0, 637, 769, + 0, 680, 711, + 0, 731, 620, + 0, 792, 459, + 0, 863, 78, + 0, 943, 0, + 0, 1031, 0, + 0, 1128, 0, + 0, 1232, 0, + 0, 1342, 0, + 0, 1456, 0, + 0, 1575, 0, + 0, 1696, 0, + 0, 1821, 0, + 0, 1947, 0, + 0, 2074, 0, + 0, 2203, 0, + 0, 2332, 0, + 0, 2463, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 680, 553, 930, + 652, 570, 918, + 611, 591, 901, + 550, 618, 878, + 454, 652, 844, + 281, 693, 796, + 0, 743, 721, + 0, 803, 597, + 0, 872, 351, + 0, 950, 0, + 0, 1038, 0, + 0, 1133, 0, + 0, 1236, 0, + 0, 1345, 0, + 0, 1459, 0, + 0, 1577, 0, + 0, 1698, 0, + 0, 1822, 0, + 0, 1948, 0, + 0, 2075, 0, + 0, 2203, 0, + 0, 2333, 0, + 0, 2463, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 884, 577, 1001, + 866, 593, 990, + 841, 613, 976, + 806, 639, 956, + 753, 671, 929, + 672, 711, 889, + 534, 759, 829, + 243, 817, 734, + 0, 884, 566, + 0, 960, 150, + 0, 1046, 0, + 0, 1140, 0, + 0, 1241, 0, + 0, 1349, 0, + 0, 1462, 0, + 0, 1579, 0, + 0, 1700, 0, + 0, 1823, 0, + 0, 1949, 0, + 0, 2076, 0, + 0, 2204, 0, + 0, 2333, 0, + 0, 2463, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1063, 607, 1081, + 1051, 622, 1072, + 1035, 641, 1061, + 1012, 665, 1044, + 979, 696, 1022, + 932, 733, 989, + 859, 780, 942, + 739, 835, 870, + 505, 899, 751, + 0, 974, 520, + 0, 1057, 0, + 0, 1149, 0, + 0, 1249, 0, + 0, 1355, 0, + 0, 1466, 0, + 0, 1583, 0, + 0, 1702, 0, + 0, 1825, 0, + 0, 1950, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1228, 644, 1170, + 1219, 658, 1163, + 1208, 676, 1153, + 1193, 698, 1140, + 1171, 727, 1122, + 1140, 762, 1096, + 1096, 805, 1059, + 1029, 858, 1005, + 919, 919, 919, + 715, 991, 773, + 63, 1071, 450, + 0, 1161, 0, + 0, 1258, 0, + 0, 1362, 0, + 0, 1472, 0, + 0, 1587, 0, + 0, 1706, 0, + 0, 1828, 0, + 0, 1952, 0, + 0, 2078, 0, + 0, 2206, 0, + 0, 2335, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1383, 690, 1267, + 1377, 702, 1262, + 1369, 718, 1254, + 1358, 739, 1243, + 1343, 765, 1229, + 1322, 798, 1208, + 1293, 838, 1180, + 1250, 887, 1139, + 1187, 945, 1077, + 1084, 1013, 978, + 897, 1090, 801, + 377, 1176, 337, + 0, 1270, 0, + 0, 1372, 0, + 0, 1480, 0, + 0, 1593, 0, + 0, 1711, 0, + 0, 1831, 0, + 0, 1955, 0, + 0, 2080, 0, + 0, 2208, 0, + 0, 2336, 0, + 0, 2465, 0, + 0, 2595, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1531, 745, 1371, + 1527, 756, 1367, + 1521, 770, 1361, + 1513, 788, 1352, + 1503, 812, 1341, + 1488, 841, 1325, + 1468, 878, 1303, + 1440, 923, 1272, + 1399, 977, 1227, + 1337, 1040, 1158, + 1239, 1113, 1047, + 1064, 1195, 835, + 609, 1286, 120, + 0, 1385, 0, + 0, 1490, 0, + 0, 1601, 0, + 0, 1717, 0, + 0, 1836, 0, + 0, 1958, 0, + 0, 2083, 0, + 0, 2210, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1675, 809, 1481, + 1672, 818, 1478, + 1668, 831, 1473, + 1662, 847, 1466, + 1655, 867, 1458, + 1644, 894, 1445, + 1630, 927, 1429, + 1610, 967, 1405, + 1582, 1016, 1372, + 1542, 1075, 1323, + 1483, 1143, 1249, + 1388, 1220, 1125, + 1220, 1307, 878, + 804, 1401, 0, + 0, 1503, 0, + 0, 1611, 0, + 0, 1725, 0, + 0, 1842, 0, + 0, 1963, 0, + 0, 2087, 0, + 0, 2212, 0, + 0, 2340, 0, + 0, 2468, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1816, 882, 1596, + 1813, 890, 1593, + 1810, 901, 1590, + 1806, 915, 1585, + 1801, 933, 1578, + 1793, 955, 1569, + 1783, 984, 1556, + 1769, 1020, 1538, + 1750, 1064, 1514, + 1722, 1117, 1478, + 1683, 1179, 1427, + 1625, 1251, 1347, + 1532, 1333, 1212, + 1369, 1422, 929, + 978, 1520, 0, + 0, 1625, 0, + 0, 1735, 0, + 0, 1850, 0, + 0, 1969, 0, + 0, 2092, 0, + 0, 2216, 0, + 0, 2342, 0, + 0, 2470, 0, + 0, 2599, 0, + 0, 2728, 0, + 0, 2859, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1954, 965, 1715, + 1952, 972, 1713, + 1950, 981, 1710, + 1947, 992, 1706, + 1943, 1007, 1701, + 1938, 1027, 1694, + 1930, 1052, 1684, + 1920, 1083, 1671, + 1906, 1121, 1653, + 1887, 1168, 1627, + 1860, 1224, 1590, + 1821, 1290, 1536, + 1764, 1365, 1452, + 1673, 1449, 1307, + 1514, 1542, 989, + 1139, 1642, 0, + 0, 1749, 0, + 0, 1861, 0, + 0, 1978, 0, + 0, 2098, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2091, 1056, 1837, + 2090, 1062, 1835, + 2088, 1069, 1833, + 2086, 1079, 1830, + 2083, 1091, 1826, + 2079, 1108, 1821, + 2073, 1129, 1813, + 2066, 1155, 1803, + 2056, 1188, 1790, + 2042, 1229, 1771, + 2023, 1278, 1745, + 1997, 1337, 1707, + 1958, 1405, 1650, + 1901, 1483, 1562, + 1812, 1570, 1409, + 1655, 1664, 1059, + 1292, 1767, 0, + 0, 1875, 0, + 0, 1988, 0, + 0, 2106, 0, + 0, 2227, 0, + 0, 2351, 0, + 0, 2476, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2227, 1156, 1961, + 2226, 1160, 1960, + 2224, 1166, 1958, + 2223, 1174, 1956, + 2221, 1184, 1953, + 2218, 1197, 1949, + 2214, 1214, 1943, + 2208, 1236, 1936, + 2201, 1264, 1926, + 2191, 1299, 1912, + 2177, 1342, 1893, + 2158, 1393, 1866, + 2132, 1454, 1827, + 2094, 1524, 1769, + 2037, 1604, 1678, + 1948, 1693, 1517, + 1794, 1789, 1139, + 1439, 1893, 0, + 0, 2002, 0, + 0, 2117, 0, + 0, 2235, 0, + 0, 2357, 0, + 0, 2481, 0, + 0, 2607, 0, + 0, 2735, 0, + 0, 2863, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3647, 0, + 2361, 1261, 2087, + 2361, 1265, 2086, + 2360, 1270, 2085, + 2358, 1276, 2083, + 2357, 1284, 2081, + 2355, 1295, 2078, + 2352, 1309, 2074, + 2348, 1327, 2068, + 2342, 1349, 2061, + 2335, 1378, 2050, + 2325, 1415, 2036, + 2312, 1459, 2017, + 2293, 1512, 1989, + 2266, 1574, 1949, + 2228, 1646, 1890, + 2172, 1728, 1797, + 2084, 1818, 1631, + 1931, 1916, 1227, + 1581, 2021, 0, + 0, 2131, 0, + 0, 2246, 0, + 0, 2365, 0, + 0, 2488, 0, + 0, 2612, 0, + 0, 2738, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2495, 1373, 2215, + 2495, 1376, 2214, + 2494, 1379, 2213, + 2493, 1384, 2212, + 2492, 1391, 2210, + 2490, 1399, 2208, + 2488, 1410, 2205, + 2485, 1424, 2201, + 2481, 1443, 2195, + 2476, 1467, 2187, + 2469, 1497, 2177, + 2459, 1534, 2163, + 2445, 1579, 2143, + 2427, 1634, 2115, + 2400, 1698, 2074, + 2362, 1771, 2014, + 2306, 1854, 1919, + 2219, 1945, 1749, + 2066, 2044, 1323, + 1721, 2149, 0, + 0, 2261, 0, + 0, 2376, 0, + 0, 2496, 0, + 0, 2619, 0, + 0, 2743, 0, + 0, 2870, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3649, 0, + 2629, 1489, 2343, + 2628, 1491, 2343, + 2628, 1494, 2342, + 2627, 1497, 2341, + 2626, 1503, 2340, + 2625, 1509, 2338, + 2623, 1518, 2336, + 2621, 1529, 2333, + 2618, 1544, 2329, + 2614, 1563, 2323, + 2609, 1588, 2315, + 2602, 1618, 2305, + 2592, 1656, 2290, + 2579, 1703, 2270, + 2560, 1758, 2242, + 2534, 1823, 2201, + 2496, 1897, 2140, + 2440, 1981, 2043, + 2353, 2073, 1870, + 2201, 2173, 1427, + 1859, 2279, 0, + 0, 2391, 0, + 0, 2507, 0, + 0, 2627, 0, + 0, 2750, 0, + 0, 2875, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 2762, 1608, 2473, + 2762, 1610, 2473, + 2761, 1612, 2472, + 2761, 1615, 2471, + 2760, 1619, 2470, + 2759, 1624, 2469, + 2758, 1631, 2467, + 2756, 1640, 2465, + 2754, 1652, 2462, + 2751, 1667, 2458, + 2747, 1686, 2452, + 2742, 1711, 2444, + 2735, 1742, 2434, + 2725, 1781, 2419, + 2712, 1828, 2399, + 2693, 1884, 2370, + 2667, 1950, 2329, + 2629, 2025, 2268, + 2573, 2109, 2170, + 2486, 2202, 1993, + 2335, 2302, 1536, + 1996, 2409, 0, + 0, 2521, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 2895, 1731, 2603, + 2895, 1732, 2603, + 2894, 1734, 2602, + 2894, 1736, 2602, + 2893, 1739, 2601, + 2893, 1743, 2600, + 2892, 1748, 2599, + 2891, 1755, 2597, + 2889, 1764, 2595, + 2887, 1776, 2592, + 2884, 1791, 2587, + 2880, 1811, 2582, + 2875, 1836, 2574, + 2868, 1868, 2563, + 2858, 1907, 2549, + 2844, 1955, 2528, + 2826, 2012, 2500, + 2800, 2078, 2458, + 2762, 2154, 2396, + 2706, 2239, 2298, + 2619, 2332, 2119, + 2469, 2433, 1651, + 2131, 2540, 0, + 0, 2652, 0, + 0, 2769, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3028, 1856, 2734, + 3027, 1857, 2734, + 3027, 1858, 2733, + 3027, 1860, 2733, + 3027, 1862, 2732, + 3026, 1865, 2732, + 3025, 1869, 2731, + 3024, 1874, 2729, + 3023, 1881, 2728, + 3022, 1890, 2725, + 3019, 1902, 2722, + 3017, 1918, 2718, + 3013, 1938, 2712, + 3007, 1964, 2704, + 3000, 1996, 2694, + 2990, 2035, 2679, + 2977, 2083, 2658, + 2958, 2140, 2630, + 2932, 2207, 2588, + 2895, 2283, 2526, + 2839, 2369, 2426, + 2752, 2462, 2246, + 2602, 2563, 1769, + 2265, 2671, 0, + 0, 2784, 0, + 0, 2901, 0, + 0, 3021, 0, + 0, 3144, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 3160, 1982, 2865, + 3160, 1983, 2865, + 3160, 1984, 2864, + 3160, 1985, 2864, + 3159, 1987, 2864, + 3159, 1989, 2863, + 3158, 1992, 2862, + 3158, 1996, 2861, + 3157, 2002, 2860, + 3156, 2009, 2858, + 3154, 2018, 2856, + 3152, 2030, 2853, + 3149, 2046, 2849, + 3145, 2066, 2843, + 3140, 2092, 2835, + 3133, 2124, 2824, + 3123, 2164, 2810, + 3109, 2212, 2789, + 3091, 2270, 2760, + 3065, 2337, 2719, + 3027, 2414, 2656, + 2972, 2499, 2556, + 2885, 2593, 2375, + 2735, 2695, 1890, + 2399, 2802, 0, + 0, 2915, 0, + 0, 3032, 0, + 0, 3153, 0, + 0, 3276, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 3292, 2110, 2996, + 3292, 2111, 2996, + 3292, 2111, 2996, + 3292, 2112, 2996, + 3292, 2114, 2995, + 3292, 2116, 2995, + 3291, 2118, 2994, + 3291, 2121, 2994, + 3290, 2125, 2993, + 3289, 2130, 2991, + 3288, 2138, 2990, + 3286, 2147, 2987, + 3284, 2159, 2984, + 3281, 2175, 2980, + 3277, 2195, 2974, + 3272, 2221, 2966, + 3265, 2254, 2955, + 3255, 2294, 2941, + 3242, 2342, 2920, + 3223, 2400, 2891, + 3197, 2467, 2849, + 3160, 2544, 2787, + 3104, 2630, 2686, + 3018, 2724, 2504, + 2868, 2826, 2015, + 2533, 2934, 0, + 0, 3047, 0, + 0, 3164, 0, + 0, 3285, 0, + 0, 3408, 0, + 0, 3534, 0, + 0, 3661, 0, + 3425, 2239, 3128, + 3425, 2240, 3127, + 3425, 2240, 3127, + 3425, 2241, 3127, + 3424, 2242, 3127, + 3424, 2243, 3127, + 3424, 2245, 3126, + 3424, 2247, 3126, + 3423, 2250, 3125, + 3422, 2254, 3124, + 3421, 2260, 3123, + 3420, 2267, 3121, + 3419, 2276, 3119, + 3417, 2289, 3115, + 3414, 2305, 3111, + 3410, 2325, 3105, + 3404, 2351, 3097, + 3397, 2384, 3087, + 3387, 2424, 3072, + 3374, 2473, 3051, + 3355, 2531, 3022, + 3329, 2598, 2980, + 3292, 2675, 2918, + 3237, 2761, 2817, + 3150, 2856, 2634, + 3000, 2957, 2141, + 2666, 3065, 0, + 0, 3178, 0, + 0, 3296, 0, + 0, 3417, 0, + 0, 3540, 0, + 0, 3666, 0, + 3557, 2369, 3259, + 3557, 2369, 3259, + 3557, 2370, 3259, + 3557, 2370, 3259, + 3557, 2371, 3259, + 3557, 2372, 3259, + 3556, 2373, 3258, + 3556, 2375, 3258, + 3556, 2377, 3257, + 3555, 2380, 3257, + 3555, 2385, 3256, + 3554, 2390, 3254, + 3553, 2397, 3252, + 3551, 2407, 3250, + 3549, 2419, 3247, + 3546, 2435, 3243, + 3542, 2456, 3237, + 3537, 2482, 3229, + 3529, 2514, 3218, + 3520, 2555, 3203, + 3506, 2604, 3183, + 3488, 2662, 3154, + 3462, 2729, 3112, + 3424, 2807, 3049, + 3369, 2893, 2948, + 3282, 2987, 2765, + 3133, 3089, 2268, + 2799, 3197, 0, + 0, 3310, 0, + 0, 3428, 0, + 0, 3549, 0, + 0, 3672, 0, + 3689, 2499, 3391, + 3689, 2499, 3391, + 3689, 2500, 3391, + 3689, 2500, 3391, + 3689, 2501, 3391, + 3689, 2501, 3390, + 3689, 2502, 3390, + 3689, 2504, 3390, + 3688, 2506, 3390, + 3688, 2508, 3389, + 3687, 2511, 3388, + 3687, 2515, 3387, + 3686, 2521, 3386, + 3685, 2528, 3384, + 3683, 2537, 3382, + 3681, 2550, 3379, + 3678, 2566, 3374, + 3674, 2586, 3369, + 3669, 2613, 3361, + 3662, 2645, 3350, + 3652, 2686, 3335, + 3639, 2735, 3314, + 3620, 2793, 3285, + 3594, 2861, 3243, + 3556, 2938, 3180, + 3501, 3024, 3079, + 3415, 3119, 2896, + 3265, 3221, 2397, + 2931, 3329, 0, + 0, 3442, 0, + 0, 3560, 0, + 0, 3681, 0, + 3822, 2630, 3523, + 3822, 2630, 3523, + 3821, 2630, 3523, + 3821, 2631, 3523, + 3821, 2631, 3523, + 3821, 2632, 3522, + 3821, 2632, 3522, + 3821, 2633, 3522, + 3821, 2635, 3522, + 3821, 2637, 3521, + 3820, 2639, 3521, + 3820, 2642, 3520, + 3819, 2646, 3519, + 3818, 2652, 3518, + 3817, 2659, 3516, + 3815, 2668, 3514, + 3813, 2681, 3510, + 3810, 2697, 3506, + 3806, 2717, 3500, + 3801, 2744, 3492, + 3794, 2777, 3482, + 3784, 2817, 3467, + 3771, 2866, 3446, + 3752, 2925, 3417, + 3726, 2992, 3375, + 3689, 3070, 3312, + 3633, 3156, 3211, + 3547, 3251, 3027, + 3398, 3353, 2526, + 3064, 3461, 0, + 0, 3574, 0, + 0, 3692, 0, + 3954, 2761, 3655, + 3954, 2761, 3655, + 3954, 2761, 3655, + 3954, 2762, 3655, + 3954, 2762, 3655, + 3954, 2762, 3654, + 3953, 2763, 3654, + 3953, 2764, 3654, + 3953, 2765, 3654, + 3953, 2766, 3654, + 3953, 2768, 3653, + 3952, 2770, 3653, + 3952, 2773, 3652, + 3951, 2777, 3651, + 3950, 2783, 3650, + 3949, 2790, 3648, + 3947, 2800, 3645, + 3945, 2812, 3642, + 3942, 2828, 3638, + 3938, 2849, 3632, + 3933, 2875, 3624, + 3926, 2908, 3614, + 3916, 2949, 3599, + 3903, 2998, 3578, + 3884, 3056, 3549, + 3858, 3124, 3507, + 3821, 3202, 3444, + 3766, 3288, 3343, + 3679, 3383, 3158, + 3530, 3485, 2656, + 3196, 3593, 0, + 0, 3706, 0, + 4086, 2892, 3787, + 4086, 2893, 3787, + 4086, 2893, 3787, + 4086, 2893, 3787, + 4086, 2893, 3787, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4086, 2894, 3786, + 4085, 2895, 3786, + 4085, 2896, 3786, + 4085, 2897, 3786, + 4085, 2899, 3785, + 4084, 2902, 3785, + 4084, 2905, 3784, + 4083, 2909, 3783, + 4082, 2914, 3782, + 4081, 2922, 3780, + 4080, 2931, 3777, + 4077, 2944, 3774, + 4075, 2960, 3770, + 4071, 2980, 3764, + 4065, 3007, 3756, + 4058, 3040, 3745, + 4048, 3080, 3731, + 4035, 3130, 3710, + 4016, 3188, 3681, + 3990, 3256, 3639, + 3953, 3333, 3575, + 3898, 3420, 3474, + 3811, 3515, 3290, + 3662, 3617, 2787, + 3328, 3725, 0, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3025, 3919, + 4095, 3025, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3918, + 4095, 3029, 3918, + 4095, 3031, 3917, + 4095, 3033, 3917, + 4095, 3036, 3916, + 4095, 3040, 3915, + 4095, 3046, 3914, + 4095, 3053, 3912, + 4095, 3063, 3909, + 4095, 3075, 3906, + 4095, 3091, 3902, + 4095, 3112, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3212, 3863, + 4095, 3261, 3842, + 4095, 3320, 3813, + 4095, 3388, 3771, + 4085, 3465, 3707, + 4030, 3552, 3606, + 3943, 3647, 3422, + 3794, 3749, 2918, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3157, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3161, 4050, + 4095, 3163, 4049, + 4095, 3165, 4049, + 4095, 3168, 4048, + 4095, 3172, 4047, + 4095, 3178, 4046, + 4095, 3185, 4044, + 4095, 3195, 4041, + 4095, 3207, 4038, + 4095, 3223, 4034, + 4095, 3244, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3344, 3995, + 4095, 3393, 3974, + 4095, 3452, 3945, + 4095, 3520, 3903, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3779, 3553, + 0, 606, 834, + 0, 621, 819, + 0, 640, 798, + 0, 664, 769, + 0, 695, 726, + 0, 733, 662, + 0, 779, 559, + 0, 834, 370, + 0, 899, 0, + 0, 973, 0, + 0, 1057, 0, + 0, 1149, 0, + 0, 1248, 0, + 0, 1355, 0, + 0, 1466, 0, + 0, 1583, 0, + 0, 1702, 0, + 0, 1825, 0, + 0, 1950, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 611, 856, + 0, 626, 842, + 0, 645, 822, + 0, 669, 794, + 0, 699, 753, + 0, 737, 693, + 0, 782, 598, + 0, 837, 427, + 0, 902, 2, + 0, 976, 0, + 0, 1059, 0, + 0, 1150, 0, + 0, 1250, 0, + 0, 1356, 0, + 0, 1467, 0, + 0, 1583, 0, + 0, 1703, 0, + 0, 1825, 0, + 0, 1950, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 618, 883, + 0, 632, 870, + 0, 651, 851, + 0, 675, 825, + 0, 705, 788, + 0, 742, 732, + 0, 787, 645, + 0, 841, 495, + 0, 905, 157, + 0, 979, 0, + 0, 1061, 0, + 0, 1152, 0, + 0, 1251, 0, + 0, 1357, 0, + 0, 1468, 0, + 0, 1584, 0, + 0, 1703, 0, + 0, 1826, 0, + 0, 1951, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 627, 918, + 0, 641, 905, + 0, 659, 888, + 0, 682, 864, + 0, 712, 829, + 0, 748, 779, + 0, 793, 702, + 0, 847, 572, + 0, 910, 306, + 0, 983, 0, + 0, 1064, 0, + 0, 1155, 0, + 0, 1253, 0, + 0, 1359, 0, + 0, 1469, 0, + 0, 1585, 0, + 0, 1704, 0, + 0, 1827, 0, + 0, 1951, 0, + 0, 2078, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 271, 638, 960, + 198, 652, 948, + 78, 670, 933, + 0, 693, 911, + 0, 721, 880, + 0, 757, 835, + 0, 801, 768, + 0, 854, 657, + 0, 916, 450, + 0, 988, 0, + 0, 1069, 0, + 0, 1159, 0, + 0, 1256, 0, + 0, 1361, 0, + 0, 1471, 0, + 0, 1586, 0, + 0, 1705, 0, + 0, 1827, 0, + 0, 1952, 0, + 0, 2078, 0, + 0, 2206, 0, + 0, 2335, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 595, 653, 1011, + 561, 667, 1000, + 511, 684, 986, + 434, 706, 967, + 305, 734, 940, + 43, 769, 901, + 0, 812, 843, + 0, 863, 752, + 0, 924, 591, + 0, 995, 210, + 0, 1075, 0, + 0, 1164, 0, + 0, 1260, 0, + 0, 1364, 0, + 0, 1474, 0, + 0, 1588, 0, + 0, 1707, 0, + 0, 1829, 0, + 0, 1953, 0, + 0, 2079, 0, + 0, 2206, 0, + 0, 2335, 0, + 0, 2464, 0, + 0, 2595, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 832, 672, 1071, + 812, 685, 1062, + 784, 702, 1050, + 743, 723, 1033, + 682, 750, 1010, + 586, 784, 976, + 413, 825, 928, + 0, 875, 853, + 0, 935, 729, + 0, 1004, 483, + 0, 1082, 0, + 0, 1170, 0, + 0, 1265, 0, + 0, 1368, 0, + 0, 1477, 0, + 0, 1591, 0, + 0, 1709, 0, + 0, 1830, 0, + 0, 1954, 0, + 0, 2080, 0, + 0, 2207, 0, + 0, 2335, 0, + 0, 2465, 0, + 0, 2595, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1029, 697, 1140, + 1016, 709, 1133, + 998, 725, 1122, + 973, 745, 1108, + 938, 771, 1089, + 885, 803, 1061, + 804, 843, 1021, + 666, 891, 961, + 375, 949, 866, + 0, 1016, 698, + 0, 1093, 282, + 0, 1178, 0, + 0, 1272, 0, + 0, 1374, 0, + 0, 1481, 0, + 0, 1594, 0, + 0, 1711, 0, + 0, 1832, 0, + 0, 1955, 0, + 0, 2081, 0, + 0, 2208, 0, + 0, 2336, 0, + 0, 2465, 0, + 0, 2595, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1204, 728, 1220, + 1195, 739, 1213, + 1183, 754, 1205, + 1167, 773, 1193, + 1144, 797, 1176, + 1111, 828, 1154, + 1064, 866, 1121, + 991, 912, 1074, + 872, 967, 1002, + 637, 1032, 883, + 0, 1106, 652, + 0, 1189, 0, + 0, 1281, 0, + 0, 1381, 0, + 0, 1487, 0, + 0, 1599, 0, + 0, 1715, 0, + 0, 1835, 0, + 0, 1957, 0, + 0, 2082, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1366, 766, 1308, + 1360, 777, 1302, + 1352, 790, 1295, + 1340, 808, 1286, + 1325, 830, 1272, + 1303, 859, 1254, + 1272, 894, 1228, + 1228, 938, 1191, + 1161, 990, 1137, + 1052, 1052, 1052, + 847, 1123, 905, + 195, 1203, 583, + 0, 1293, 0, + 0, 1390, 0, + 0, 1494, 0, + 0, 1604, 0, + 0, 1719, 0, + 0, 1838, 0, + 0, 1960, 0, + 0, 2084, 0, + 0, 2210, 0, + 0, 2338, 0, + 0, 2467, 0, + 0, 2596, 0, + 0, 2727, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1519, 813, 1404, + 1515, 822, 1399, + 1509, 834, 1394, + 1501, 850, 1386, + 1490, 871, 1375, + 1475, 897, 1361, + 1454, 930, 1341, + 1425, 970, 1312, + 1383, 1019, 1271, + 1319, 1077, 1209, + 1216, 1145, 1110, + 1029, 1222, 933, + 509, 1308, 469, + 0, 1402, 0, + 0, 1504, 0, + 0, 1612, 0, + 0, 1725, 0, + 0, 1843, 0, + 0, 1963, 0, + 0, 2087, 0, + 0, 2213, 0, + 0, 2340, 0, + 0, 2468, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1666, 868, 1507, + 1663, 877, 1504, + 1659, 888, 1499, + 1653, 902, 1493, + 1645, 920, 1484, + 1635, 944, 1473, + 1620, 973, 1457, + 1600, 1010, 1435, + 1572, 1055, 1404, + 1531, 1109, 1359, + 1469, 1172, 1290, + 1372, 1245, 1179, + 1196, 1327, 967, + 741, 1418, 252, + 0, 1517, 0, + 0, 1622, 0, + 0, 1733, 0, + 0, 1849, 0, + 0, 1968, 0, + 0, 2091, 0, + 0, 2215, 0, + 0, 2342, 0, + 0, 2470, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1809, 933, 1616, + 1807, 941, 1613, + 1804, 950, 1610, + 1800, 963, 1605, + 1794, 979, 1599, + 1787, 999, 1590, + 1776, 1026, 1578, + 1762, 1059, 1561, + 1742, 1099, 1537, + 1715, 1148, 1504, + 1675, 1207, 1455, + 1615, 1275, 1381, + 1520, 1352, 1257, + 1352, 1439, 1010, + 936, 1533, 0, + 0, 1635, 0, + 0, 1743, 0, + 0, 1857, 0, + 0, 1974, 0, + 0, 2095, 0, + 0, 2219, 0, + 0, 2344, 0, + 0, 2472, 0, + 0, 2600, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1949, 1008, 1730, + 1948, 1014, 1728, + 1946, 1022, 1725, + 1943, 1033, 1722, + 1938, 1047, 1717, + 1933, 1065, 1710, + 1925, 1088, 1701, + 1915, 1116, 1688, + 1901, 1152, 1670, + 1882, 1196, 1646, + 1855, 1249, 1610, + 1815, 1312, 1559, + 1757, 1383, 1479, + 1664, 1465, 1344, + 1501, 1555, 1061, + 1110, 1652, 0, + 0, 1757, 0, + 0, 1867, 0, + 0, 1983, 0, + 0, 2102, 0, + 0, 2224, 0, + 0, 2348, 0, + 0, 2474, 0, + 0, 2602, 0, + 0, 2731, 0, + 0, 2860, 0, + 0, 2991, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2087, 1092, 1849, + 2086, 1097, 1847, + 2085, 1104, 1845, + 2082, 1113, 1842, + 2079, 1124, 1838, + 2075, 1140, 1833, + 2070, 1159, 1826, + 2062, 1184, 1816, + 2052, 1215, 1803, + 2039, 1254, 1785, + 2019, 1300, 1759, + 1992, 1357, 1722, + 1954, 1422, 1668, + 1896, 1497, 1584, + 1805, 1581, 1439, + 1646, 1674, 1121, + 1271, 1774, 0, + 0, 1881, 0, + 0, 1993, 0, + 0, 2110, 0, + 0, 2230, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2224, 1184, 1970, + 2223, 1189, 1969, + 2222, 1194, 1967, + 2220, 1201, 1965, + 2218, 1211, 1962, + 2215, 1224, 1958, + 2211, 1240, 1953, + 2206, 1261, 1945, + 2198, 1287, 1936, + 2188, 1320, 1922, + 2175, 1361, 1903, + 2156, 1410, 1877, + 2129, 1469, 1839, + 2090, 1537, 1782, + 2033, 1615, 1694, + 1944, 1702, 1541, + 1787, 1797, 1191, + 1424, 1899, 0, + 0, 2007, 0, + 0, 2121, 0, + 0, 2238, 0, + 0, 2359, 0, + 0, 2483, 0, + 0, 2608, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2359, 1284, 2094, + 2359, 1288, 2093, + 2358, 1292, 2092, + 2357, 1298, 2090, + 2355, 1306, 2088, + 2353, 1316, 2085, + 2350, 1329, 2081, + 2346, 1346, 2075, + 2340, 1368, 2068, + 2333, 1396, 2058, + 2323, 1431, 2044, + 2309, 1474, 2025, + 2291, 1525, 1998, + 2264, 1586, 1959, + 2226, 1656, 1901, + 2169, 1736, 1810, + 2080, 1825, 1649, + 1926, 1921, 1271, + 1571, 2025, 0, + 0, 2135, 0, + 0, 2249, 0, + 0, 2368, 0, + 0, 2489, 0, + 0, 2613, 0, + 0, 2739, 0, + 0, 2867, 0, + 0, 2995, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2494, 1391, 2220, + 2493, 1393, 2219, + 2493, 1397, 2218, + 2492, 1402, 2217, + 2491, 1408, 2215, + 2489, 1416, 2213, + 2487, 1427, 2210, + 2484, 1441, 2206, + 2480, 1459, 2200, + 2474, 1482, 2193, + 2467, 1511, 2183, + 2457, 1547, 2168, + 2444, 1591, 2149, + 2425, 1644, 2121, + 2398, 1706, 2082, + 2361, 1779, 2022, + 2304, 1860, 1929, + 2216, 1950, 1763, + 2063, 2048, 1359, + 1714, 2153, 0, + 0, 2263, 0, + 0, 2378, 0, + 0, 2498, 0, + 0, 2620, 0, + 0, 2744, 0, + 0, 2871, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 2628, 1503, 2347, + 2627, 1505, 2347, + 2627, 1508, 2346, + 2626, 1511, 2345, + 2625, 1516, 2344, + 2624, 1523, 2342, + 2622, 1531, 2340, + 2620, 1542, 2337, + 2617, 1557, 2333, + 2613, 1575, 2327, + 2608, 1599, 2319, + 2601, 1629, 2309, + 2591, 1666, 2295, + 2577, 1711, 2275, + 2559, 1766, 2247, + 2532, 1830, 2207, + 2495, 1903, 2146, + 2438, 1986, 2051, + 2351, 2077, 1881, + 2199, 2176, 1456, + 1853, 2281, 0, + 0, 2393, 0, + 0, 2509, 0, + 0, 2628, 0, + 0, 2751, 0, + 0, 2875, 0, + 0, 3002, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3650, 0, + 2761, 1619, 2476, + 2761, 1621, 2476, + 2760, 1623, 2475, + 2760, 1626, 2474, + 2759, 1630, 2473, + 2758, 1635, 2472, + 2757, 1641, 2470, + 2756, 1650, 2468, + 2753, 1661, 2465, + 2750, 1676, 2461, + 2747, 1695, 2455, + 2741, 1720, 2447, + 2734, 1750, 2437, + 2724, 1788, 2422, + 2711, 1835, 2402, + 2692, 1890, 2374, + 2666, 1955, 2333, + 2628, 2029, 2272, + 2572, 2113, 2176, + 2485, 2205, 2002, + 2333, 2305, 1559, + 1991, 2411, 0, + 0, 2523, 0, + 0, 2639, 0, + 0, 2759, 0, + 0, 2882, 0, + 0, 3007, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3520, 0, + 0, 3651, 0, + 2894, 1739, 2605, + 2894, 1740, 2605, + 2894, 1742, 2605, + 2893, 1744, 2604, + 2893, 1747, 2603, + 2892, 1751, 2602, + 2891, 1756, 2601, + 2890, 1763, 2599, + 2888, 1772, 2597, + 2886, 1784, 2594, + 2883, 1799, 2590, + 2879, 1818, 2584, + 2874, 1843, 2576, + 2867, 1874, 2566, + 2857, 1913, 2551, + 2844, 1960, 2531, + 2825, 2016, 2502, + 2799, 2082, 2461, + 2761, 2157, 2400, + 2705, 2241, 2302, + 2618, 2334, 2125, + 2468, 2434, 1668, + 2128, 2541, 0, + 0, 2653, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3027, 1862, 2735, + 3027, 1863, 2735, + 3027, 1864, 2735, + 3026, 1866, 2735, + 3026, 1868, 2734, + 3026, 1871, 2733, + 3025, 1875, 2732, + 3024, 1880, 2731, + 3023, 1887, 2729, + 3021, 1896, 2727, + 3019, 1908, 2724, + 3016, 1924, 2720, + 3012, 1943, 2714, + 3007, 1969, 2706, + 3000, 2000, 2695, + 2990, 2039, 2681, + 2976, 2087, 2660, + 2958, 2144, 2632, + 2932, 2210, 2590, + 2894, 2286, 2528, + 2838, 2371, 2430, + 2752, 2464, 2251, + 2601, 2565, 1783, + 2263, 2672, 0, + 0, 2784, 0, + 0, 2901, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 3160, 1987, 2866, + 3160, 1988, 2866, + 3159, 1989, 2866, + 3159, 1990, 2865, + 3159, 1992, 2865, + 3159, 1994, 2864, + 3158, 1997, 2864, + 3157, 2001, 2863, + 3157, 2006, 2861, + 3155, 2013, 2860, + 3154, 2023, 2857, + 3152, 2035, 2854, + 3149, 2050, 2850, + 3145, 2070, 2844, + 3139, 2096, 2836, + 3132, 2128, 2826, + 3122, 2167, 2811, + 3109, 2215, 2791, + 3090, 2272, 2762, + 3064, 2339, 2720, + 3027, 2415, 2658, + 2971, 2501, 2558, + 2884, 2594, 2378, + 2734, 2696, 1901, + 2397, 2803, 0, + 0, 2916, 0, + 0, 3033, 0, + 0, 3153, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 3292, 2114, 2997, + 3292, 2114, 2997, + 3292, 2115, 2997, + 3292, 2116, 2997, + 3292, 2117, 2996, + 3291, 2119, 2996, + 3291, 2121, 2995, + 3291, 2124, 2995, + 3290, 2128, 2994, + 3289, 2134, 2992, + 3288, 2141, 2990, + 3286, 2150, 2988, + 3284, 2162, 2985, + 3281, 2178, 2981, + 3277, 2198, 2975, + 3272, 2224, 2967, + 3265, 2256, 2956, + 3255, 2296, 2942, + 3241, 2344, 2921, + 3223, 2402, 2892, + 3197, 2469, 2851, + 3159, 2546, 2788, + 3104, 2631, 2688, + 3017, 2725, 2507, + 2867, 2827, 2023, + 2531, 2934, 0, + 0, 3047, 0, + 0, 3164, 0, + 0, 3285, 0, + 0, 3408, 0, + 0, 3534, 0, + 0, 3661, 0, + 3425, 2242, 3128, + 3425, 2242, 3128, + 3425, 2243, 3128, + 3424, 2244, 3128, + 3424, 2245, 3128, + 3424, 2246, 3127, + 3424, 2248, 3127, + 3423, 2250, 3126, + 3423, 2253, 3126, + 3422, 2257, 3125, + 3421, 2262, 3123, + 3420, 2270, 3122, + 3418, 2279, 3119, + 3416, 2291, 3116, + 3413, 2307, 3112, + 3410, 2327, 3106, + 3404, 2353, 3098, + 3397, 2386, 3087, + 3387, 2426, 3073, + 3374, 2474, 3052, + 3355, 2532, 3023, + 3329, 2600, 2981, + 3292, 2676, 2919, + 3236, 2762, 2818, + 3150, 2856, 2636, + 3000, 2958, 2147, + 2665, 3066, 0, + 0, 3179, 0, + 0, 3296, 0, + 0, 3417, 0, + 0, 3540, 0, + 0, 3666, 0, + 3557, 2371, 3260, + 3557, 2371, 3260, + 3557, 2372, 3260, + 3557, 2372, 3259, + 3557, 2373, 3259, + 3557, 2374, 3259, + 3556, 2375, 3259, + 3556, 2377, 3258, + 3556, 2379, 3258, + 3555, 2382, 3257, + 3554, 2387, 3256, + 3554, 2392, 3255, + 3552, 2399, 3253, + 3551, 2409, 3251, + 3549, 2421, 3247, + 3546, 2437, 3243, + 3542, 2457, 3237, + 3537, 2483, 3230, + 3529, 2516, 3219, + 3520, 2556, 3204, + 3506, 2605, 3183, + 3488, 2663, 3154, + 3461, 2730, 3113, + 3424, 2807, 3050, + 3369, 2894, 2949, + 3282, 2988, 2766, + 3133, 3090, 2273, + 2798, 3197, 0, + 0, 3311, 0, + 0, 3428, 0, + 0, 3549, 0, + 0, 3672, 0, + 3689, 2501, 3391, + 3689, 2501, 3391, + 3689, 2501, 3391, + 3689, 2502, 3391, + 3689, 2502, 3391, + 3689, 2503, 3391, + 3689, 2504, 3391, + 3689, 2505, 3390, + 3688, 2507, 3390, + 3688, 2509, 3389, + 3687, 2513, 3389, + 3687, 2517, 3388, + 3686, 2522, 3386, + 3685, 2529, 3385, + 3683, 2539, 3382, + 3681, 2551, 3379, + 3678, 2567, 3375, + 3674, 2588, 3369, + 3669, 2614, 3361, + 3662, 2646, 3350, + 3652, 2687, 3336, + 3638, 2736, 3315, + 3620, 2794, 3286, + 3594, 2862, 3244, + 3556, 2939, 3181, + 3501, 3025, 3080, + 3414, 3119, 2897, + 3265, 3221, 2400, + 2931, 3329, 0, + 0, 3442, 0, + 0, 3560, 0, + 0, 3681, 0, + 3821, 2631, 3523, + 3821, 2631, 3523, + 3821, 2632, 3523, + 3821, 2632, 3523, + 3821, 2632, 3523, + 3821, 2633, 3523, + 3821, 2634, 3523, + 3821, 2635, 3522, + 3821, 2636, 3522, + 3820, 2638, 3522, + 3820, 2640, 3521, + 3820, 2643, 3520, + 3819, 2647, 3519, + 3818, 2653, 3518, + 3817, 2660, 3516, + 3815, 2669, 3514, + 3813, 2682, 3511, + 3810, 2698, 3506, + 3806, 2718, 3501, + 3801, 2745, 3493, + 3794, 2777, 3482, + 3784, 2818, 3467, + 3771, 2867, 3447, + 3752, 2925, 3418, + 3726, 2993, 3375, + 3689, 3070, 3312, + 3633, 3157, 3211, + 3547, 3251, 3028, + 3397, 3353, 2529, + 3063, 3461, 0, + 0, 3574, 0, + 0, 3692, 0, + 3954, 2762, 3655, + 3954, 2762, 3655, + 3954, 2762, 3655, + 3954, 2762, 3655, + 3954, 2763, 3655, + 3953, 2763, 3655, + 3953, 2764, 3655, + 3953, 2765, 3654, + 3953, 2766, 3654, + 3953, 2767, 3654, + 3953, 2769, 3653, + 3952, 2771, 3653, + 3952, 2774, 3652, + 3951, 2778, 3651, + 3950, 2784, 3650, + 3949, 2791, 3648, + 3947, 2800, 3646, + 3945, 2813, 3643, + 3942, 2829, 3638, + 3938, 2850, 3632, + 3933, 2876, 3625, + 3926, 2909, 3614, + 3916, 2949, 3599, + 3903, 2998, 3578, + 3884, 3057, 3549, + 3858, 3125, 3507, + 3821, 3202, 3444, + 3765, 3288, 3343, + 3679, 3383, 3159, + 3530, 3485, 2658, + 3196, 3593, 0, + 0, 3706, 0, + 4086, 2893, 3787, + 4086, 2893, 3787, + 4086, 2893, 3787, + 4086, 2893, 3787, + 4086, 2894, 3787, + 4086, 2894, 3787, + 4086, 2894, 3787, + 4086, 2895, 3786, + 4085, 2896, 3786, + 4085, 2897, 3786, + 4085, 2898, 3786, + 4085, 2900, 3785, + 4084, 2902, 3785, + 4084, 2905, 3784, + 4083, 2909, 3783, + 4082, 2915, 3782, + 4081, 2922, 3780, + 4080, 2932, 3778, + 4077, 2944, 3774, + 4074, 2960, 3770, + 4071, 2981, 3764, + 4065, 3007, 3756, + 4058, 3040, 3746, + 4048, 3081, 3731, + 4035, 3130, 3710, + 4016, 3188, 3681, + 3990, 3256, 3639, + 3953, 3334, 3576, + 3898, 3420, 3475, + 3811, 3515, 3290, + 3662, 3617, 2788, + 3328, 3725, 0, + 4095, 3024, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3026, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3918, + 4095, 3030, 3918, + 4095, 3031, 3917, + 4095, 3034, 3917, + 4095, 3037, 3916, + 4095, 3041, 3915, + 4095, 3046, 3914, + 4095, 3054, 3912, + 4095, 3063, 3910, + 4095, 3076, 3906, + 4095, 3092, 3902, + 4095, 3113, 3896, + 4095, 3139, 3888, + 4095, 3172, 3878, + 4095, 3212, 3863, + 4095, 3262, 3842, + 4095, 3320, 3813, + 4095, 3388, 3771, + 4085, 3466, 3708, + 4030, 3552, 3606, + 3943, 3647, 3422, + 3794, 3749, 2919, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3158, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4050, + 4095, 3161, 4050, + 4095, 3163, 4049, + 4095, 3165, 4049, + 4095, 3168, 4048, + 4095, 3173, 4047, + 4095, 3178, 4046, + 4095, 3185, 4044, + 4095, 3195, 4041, + 4095, 3207, 4038, + 4095, 3224, 4034, + 4095, 3244, 4028, + 4095, 3271, 4020, + 4095, 3304, 4009, + 4095, 3344, 3995, + 4095, 3393, 3974, + 4095, 3452, 3945, + 4095, 3520, 3903, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3779, 3554, + 0, 723, 961, + 0, 734, 949, + 0, 749, 934, + 0, 769, 912, + 0, 793, 881, + 0, 824, 837, + 0, 862, 769, + 0, 908, 660, + 0, 964, 453, + 0, 1029, 0, + 0, 1104, 0, + 0, 1187, 0, + 0, 1280, 0, + 0, 1380, 0, + 0, 1486, 0, + 0, 1598, 0, + 0, 1714, 0, + 0, 1834, 0, + 0, 1957, 0, + 0, 2082, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 727, 977, + 0, 738, 966, + 0, 753, 951, + 0, 772, 930, + 0, 796, 901, + 0, 827, 858, + 0, 865, 794, + 0, 911, 691, + 0, 966, 502, + 0, 1031, 0, + 0, 1105, 0, + 0, 1189, 0, + 0, 1281, 0, + 0, 1380, 0, + 0, 1487, 0, + 0, 1598, 0, + 0, 1715, 0, + 0, 1835, 0, + 0, 1957, 0, + 0, 2082, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 732, 998, + 0, 743, 988, + 0, 758, 974, + 0, 777, 954, + 0, 801, 926, + 0, 831, 886, + 0, 869, 825, + 0, 915, 730, + 0, 969, 560, + 0, 1034, 134, + 0, 1108, 0, + 0, 1191, 0, + 0, 1282, 0, + 0, 1382, 0, + 0, 1488, 0, + 0, 1599, 0, + 0, 1715, 0, + 0, 1835, 0, + 0, 1958, 0, + 0, 2082, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 739, 1025, + 0, 750, 1015, + 0, 764, 1002, + 0, 783, 983, + 0, 807, 957, + 0, 837, 920, + 0, 874, 864, + 0, 919, 777, + 0, 973, 627, + 0, 1037, 289, + 0, 1111, 0, + 0, 1193, 0, + 0, 1284, 0, + 0, 1383, 0, + 0, 1489, 0, + 0, 1600, 0, + 0, 1716, 0, + 0, 1836, 0, + 0, 1958, 0, + 0, 2083, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 748, 1059, + 0, 759, 1050, + 0, 773, 1037, + 0, 791, 1020, + 0, 815, 996, + 0, 844, 962, + 0, 880, 911, + 0, 925, 834, + 0, 979, 704, + 0, 1042, 438, + 0, 1115, 0, + 0, 1197, 0, + 0, 1287, 0, + 0, 1386, 0, + 0, 1491, 0, + 0, 1602, 0, + 0, 1717, 0, + 0, 1836, 0, + 0, 1959, 0, + 0, 2083, 0, + 0, 2210, 0, + 0, 2338, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 450, 760, 1100, + 403, 770, 1092, + 330, 784, 1080, + 210, 802, 1065, + 0, 825, 1043, + 0, 853, 1012, + 0, 889, 967, + 0, 933, 900, + 0, 986, 790, + 0, 1048, 582, + 0, 1120, 0, + 0, 1201, 0, + 0, 1291, 0, + 0, 1388, 0, + 0, 1493, 0, + 0, 1603, 0, + 0, 1718, 0, + 0, 1837, 0, + 0, 1960, 0, + 0, 2084, 0, + 0, 2210, 0, + 0, 2338, 0, + 0, 2467, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 751, 775, 1150, + 727, 785, 1143, + 693, 799, 1132, + 643, 816, 1119, + 566, 838, 1099, + 437, 866, 1072, + 175, 901, 1033, + 0, 944, 975, + 0, 995, 884, + 0, 1056, 723, + 0, 1127, 342, + 0, 1207, 0, + 0, 1296, 0, + 0, 1392, 0, + 0, 1496, 0, + 0, 1606, 0, + 0, 1720, 0, + 0, 1839, 0, + 0, 1961, 0, + 0, 2085, 0, + 0, 2211, 0, + 0, 2338, 0, + 0, 2467, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 978, 795, 1209, + 964, 805, 1203, + 944, 817, 1194, + 916, 834, 1182, + 875, 855, 1165, + 814, 882, 1142, + 718, 916, 1108, + 545, 957, 1060, + 108, 1008, 985, + 0, 1067, 862, + 0, 1136, 615, + 0, 1215, 0, + 0, 1302, 0, + 0, 1397, 0, + 0, 1500, 0, + 0, 1609, 0, + 0, 1723, 0, + 0, 1841, 0, + 0, 1962, 0, + 0, 2086, 0, + 0, 2212, 0, + 0, 2339, 0, + 0, 2468, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2858, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1170, 820, 1278, + 1161, 829, 1273, + 1148, 841, 1265, + 1130, 857, 1255, + 1105, 877, 1240, + 1070, 903, 1221, + 1017, 935, 1193, + 936, 975, 1153, + 798, 1023, 1093, + 507, 1081, 998, + 0, 1148, 830, + 0, 1225, 414, + 0, 1310, 0, + 0, 1404, 0, + 0, 1506, 0, + 0, 1613, 0, + 0, 1726, 0, + 0, 1843, 0, + 0, 1964, 0, + 0, 2087, 0, + 0, 2213, 0, + 0, 2340, 0, + 0, 2468, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1343, 851, 1356, + 1336, 860, 1352, + 1327, 871, 1345, + 1316, 886, 1337, + 1299, 905, 1325, + 1276, 929, 1308, + 1244, 960, 1286, + 1196, 998, 1253, + 1123, 1044, 1206, + 1004, 1099, 1134, + 769, 1164, 1015, + 0, 1238, 784, + 0, 1321, 0, + 0, 1413, 0, + 0, 1513, 0, + 0, 1619, 0, + 0, 1731, 0, + 0, 1847, 0, + 0, 1967, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1502, 890, 1444, + 1498, 898, 1440, + 1492, 909, 1434, + 1484, 922, 1427, + 1472, 940, 1418, + 1457, 962, 1404, + 1435, 991, 1386, + 1405, 1026, 1360, + 1360, 1070, 1323, + 1293, 1122, 1269, + 1184, 1184, 1184, + 979, 1255, 1037, + 327, 1335, 715, + 0, 1425, 0, + 0, 1522, 0, + 0, 1626, 0, + 0, 1736, 0, + 0, 1851, 0, + 0, 1970, 0, + 0, 2092, 0, + 0, 2216, 0, + 0, 2343, 0, + 0, 2470, 0, + 0, 2599, 0, + 0, 2728, 0, + 0, 2859, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1654, 938, 1539, + 1651, 945, 1536, + 1647, 954, 1532, + 1641, 967, 1526, + 1633, 982, 1518, + 1622, 1003, 1507, + 1607, 1029, 1493, + 1586, 1062, 1473, + 1557, 1102, 1444, + 1515, 1151, 1403, + 1451, 1209, 1341, + 1349, 1277, 1243, + 1161, 1354, 1065, + 641, 1440, 601, + 0, 1534, 0, + 0, 1636, 0, + 0, 1744, 0, + 0, 1857, 0, + 0, 1975, 0, + 0, 2096, 0, + 0, 2219, 0, + 0, 2345, 0, + 0, 2472, 0, + 0, 2600, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1801, 994, 1642, + 1798, 1000, 1639, + 1795, 1009, 1636, + 1791, 1020, 1631, + 1785, 1034, 1625, + 1778, 1052, 1617, + 1767, 1076, 1605, + 1752, 1105, 1589, + 1732, 1142, 1567, + 1704, 1187, 1536, + 1663, 1241, 1491, + 1601, 1304, 1423, + 1504, 1377, 1311, + 1328, 1459, 1099, + 874, 1550, 384, + 0, 1649, 0, + 0, 1754, 0, + 0, 1865, 0, + 0, 1981, 0, + 0, 2100, 0, + 0, 2223, 0, + 0, 2347, 0, + 0, 2474, 0, + 0, 2602, 0, + 0, 2731, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1943, 1060, 1750, + 1941, 1066, 1748, + 1939, 1073, 1746, + 1936, 1082, 1742, + 1932, 1095, 1737, + 1926, 1111, 1731, + 1919, 1132, 1722, + 1908, 1158, 1710, + 1894, 1191, 1693, + 1874, 1231, 1670, + 1847, 1281, 1636, + 1807, 1339, 1587, + 1747, 1407, 1513, + 1652, 1484, 1389, + 1484, 1571, 1142, + 1068, 1665, 0, + 0, 1767, 0, + 0, 1876, 0, + 0, 1989, 0, + 0, 2106, 0, + 0, 2227, 0, + 0, 2351, 0, + 0, 2477, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2083, 1136, 1864, + 2082, 1140, 1862, + 2080, 1146, 1860, + 2078, 1155, 1858, + 2075, 1165, 1854, + 2071, 1179, 1849, + 2065, 1197, 1842, + 2058, 1220, 1833, + 2047, 1249, 1820, + 2033, 1284, 1802, + 2014, 1328, 1778, + 1987, 1381, 1743, + 1947, 1444, 1691, + 1889, 1516, 1611, + 1796, 1597, 1476, + 1633, 1687, 1193, + 1242, 1784, 0, + 0, 1889, 0, + 0, 1999, 0, + 0, 2115, 0, + 0, 2234, 0, + 0, 2356, 0, + 0, 2480, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2863, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3647, 0, + 2221, 1220, 1982, + 2220, 1224, 1981, + 2218, 1229, 1979, + 2217, 1236, 1977, + 2214, 1245, 1974, + 2211, 1257, 1970, + 2207, 1272, 1965, + 2202, 1291, 1958, + 2195, 1316, 1948, + 2185, 1347, 1935, + 2171, 1386, 1917, + 2151, 1433, 1891, + 2124, 1489, 1854, + 2086, 1554, 1800, + 2028, 1629, 1716, + 1937, 1713, 1571, + 1778, 1806, 1253, + 1403, 1906, 0, + 0, 2013, 0, + 0, 2125, 0, + 0, 2242, 0, + 0, 2362, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2357, 1313, 2103, + 2356, 1316, 2102, + 2355, 1321, 2101, + 2354, 1326, 2099, + 2352, 1334, 2097, + 2350, 1343, 2094, + 2347, 1356, 2090, + 2343, 1372, 2085, + 2338, 1393, 2078, + 2330, 1419, 2068, + 2320, 1452, 2054, + 2307, 1493, 2035, + 2288, 1543, 2009, + 2261, 1601, 1971, + 2222, 1669, 1915, + 2165, 1747, 1826, + 2076, 1834, 1673, + 1919, 1929, 1323, + 1556, 2031, 0, + 0, 2139, 0, + 0, 2253, 0, + 0, 2370, 0, + 0, 2491, 0, + 0, 2615, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2996, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2492, 1414, 2227, + 2491, 1416, 2226, + 2491, 1420, 2225, + 2490, 1424, 2224, + 2489, 1430, 2222, + 2487, 1438, 2220, + 2485, 1448, 2217, + 2482, 1461, 2213, + 2478, 1479, 2208, + 2472, 1501, 2200, + 2465, 1528, 2190, + 2455, 1563, 2176, + 2442, 1606, 2157, + 2423, 1657, 2130, + 2396, 1718, 2091, + 2358, 1788, 2033, + 2301, 1868, 1942, + 2213, 1957, 1782, + 2058, 2053, 1403, + 1703, 2157, 0, + 0, 2267, 0, + 0, 2381, 0, + 0, 2500, 0, + 0, 2621, 0, + 0, 2745, 0, + 0, 2871, 0, + 0, 2999, 0, + 0, 3128, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 2626, 1521, 2353, + 2626, 1523, 2352, + 2625, 1526, 2351, + 2625, 1529, 2350, + 2624, 1534, 2349, + 2623, 1540, 2347, + 2621, 1548, 2345, + 2619, 1559, 2342, + 2616, 1573, 2338, + 2612, 1591, 2332, + 2607, 1614, 2325, + 2599, 1643, 2315, + 2589, 1679, 2301, + 2576, 1723, 2281, + 2557, 1776, 2253, + 2531, 1839, 2214, + 2493, 1911, 2154, + 2436, 1992, 2061, + 2348, 2082, 1895, + 2195, 2180, 1491, + 1846, 2285, 0, + 0, 2395, 0, + 0, 2511, 0, + 0, 2630, 0, + 0, 2752, 0, + 0, 2876, 0, + 0, 3003, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 2760, 1633, 2480, + 2760, 1635, 2479, + 2759, 1637, 2479, + 2759, 1640, 2478, + 2758, 1643, 2477, + 2757, 1648, 2476, + 2756, 1655, 2474, + 2755, 1663, 2472, + 2752, 1674, 2469, + 2749, 1689, 2465, + 2745, 1707, 2459, + 2740, 1731, 2451, + 2733, 1761, 2441, + 2723, 1798, 2427, + 2710, 1843, 2407, + 2691, 1898, 2379, + 2664, 1962, 2339, + 2627, 2035, 2278, + 2571, 2118, 2183, + 2483, 2209, 2013, + 2331, 2308, 1588, + 1986, 2414, 0, + 0, 2525, 0, + 0, 2641, 0, + 0, 2760, 0, + 0, 2883, 0, + 0, 3007, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 2893, 1750, 2608, + 2893, 1751, 2608, + 2893, 1753, 2608, + 2893, 1755, 2607, + 2892, 1758, 2606, + 2891, 1762, 2605, + 2891, 1767, 2604, + 2889, 1773, 2602, + 2888, 1782, 2600, + 2886, 1793, 2597, + 2883, 1808, 2593, + 2879, 1827, 2587, + 2873, 1852, 2579, + 2866, 1882, 2569, + 2856, 1920, 2554, + 2843, 1967, 2534, + 2824, 2022, 2506, + 2798, 2087, 2465, + 2760, 2161, 2404, + 2704, 2245, 2308, + 2617, 2337, 2134, + 2465, 2437, 1691, + 2123, 2543, 0, + 0, 2655, 0, + 0, 2771, 0, + 0, 2891, 0, + 0, 3014, 0, + 0, 3139, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3652, 0, + 3026, 1870, 2738, + 3026, 1871, 2737, + 3026, 1873, 2737, + 3026, 1874, 2737, + 3025, 1876, 2736, + 3025, 1879, 2735, + 3024, 1883, 2735, + 3023, 1888, 2733, + 3022, 1895, 2732, + 3021, 1904, 2729, + 3018, 1916, 2726, + 3015, 1931, 2722, + 3012, 1950, 2716, + 3006, 1975, 2708, + 2999, 2006, 2698, + 2989, 2045, 2683, + 2976, 2092, 2663, + 2957, 2148, 2635, + 2931, 2214, 2593, + 2893, 2289, 2532, + 2838, 2373, 2434, + 2750, 2466, 2258, + 2600, 2567, 1800, + 2260, 2673, 0, + 0, 2786, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 3159, 1993, 2868, + 3159, 1994, 2868, + 3159, 1995, 2867, + 3159, 1996, 2867, + 3159, 1998, 2867, + 3158, 2000, 2866, + 3158, 2003, 2865, + 3157, 2007, 2864, + 3156, 2012, 2863, + 3155, 2019, 2861, + 3153, 2028, 2859, + 3151, 2040, 2856, + 3148, 2056, 2852, + 3144, 2075, 2846, + 3139, 2101, 2838, + 3132, 2132, 2827, + 3122, 2172, 2813, + 3109, 2219, 2793, + 3090, 2276, 2764, + 3064, 2342, 2723, + 3026, 2418, 2661, + 2971, 2503, 2562, + 2884, 2596, 2383, + 2733, 2697, 1915, + 2395, 2804, 0, + 0, 2917, 0, + 0, 3033, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 3292, 2119, 2998, + 3292, 2119, 2998, + 3292, 2120, 2998, + 3292, 2121, 2998, + 3291, 2122, 2997, + 3291, 2124, 2997, + 3291, 2126, 2997, + 3290, 2129, 2996, + 3290, 2133, 2995, + 3289, 2138, 2994, + 3287, 2145, 2992, + 3286, 2155, 2989, + 3284, 2167, 2986, + 3281, 2182, 2982, + 3277, 2202, 2976, + 3272, 2228, 2968, + 3264, 2260, 2958, + 3255, 2299, 2943, + 3241, 2347, 2923, + 3222, 2405, 2894, + 3196, 2471, 2852, + 3159, 2548, 2790, + 3103, 2633, 2691, + 3017, 2727, 2510, + 2866, 2828, 2033, + 2530, 2935, 0, + 0, 3048, 0, + 0, 3165, 0, + 0, 3285, 0, + 0, 3409, 0, + 0, 3534, 0, + 0, 3661, 0, + 3424, 2246, 3129, + 3424, 2246, 3129, + 3424, 2246, 3129, + 3424, 2247, 3129, + 3424, 2248, 3129, + 3424, 2249, 3128, + 3424, 2251, 3128, + 3423, 2253, 3127, + 3423, 2257, 3127, + 3422, 2261, 3126, + 3421, 2266, 3124, + 3420, 2273, 3123, + 3418, 2282, 3120, + 3416, 2294, 3117, + 3413, 2310, 3113, + 3409, 2330, 3107, + 3404, 2356, 3099, + 3397, 2388, 3088, + 3387, 2428, 3074, + 3374, 2477, 3053, + 3355, 2534, 3024, + 3329, 2601, 2983, + 3291, 2678, 2920, + 3236, 2763, 2820, + 3149, 2857, 2639, + 2999, 2959, 2155, + 2663, 3066, 0, + 0, 3179, 0, + 0, 3297, 0, + 0, 3417, 0, + 0, 3540, 0, + 0, 3666, 0, + 3557, 2374, 3260, + 3557, 2374, 3260, + 3557, 2374, 3260, + 3557, 2375, 3260, + 3556, 2376, 3260, + 3556, 2377, 3260, + 3556, 2378, 3259, + 3556, 2380, 3259, + 3555, 2382, 3259, + 3555, 2385, 3258, + 3554, 2389, 3257, + 3553, 2395, 3255, + 3552, 2402, 3254, + 3551, 2411, 3251, + 3548, 2423, 3248, + 3546, 2439, 3244, + 3542, 2459, 3238, + 3536, 2485, 3230, + 3529, 2518, 3220, + 3519, 2558, 3205, + 3506, 2607, 3184, + 3487, 2664, 3155, + 3461, 2732, 3114, + 3424, 2808, 3051, + 3368, 2894, 2950, + 3282, 2989, 2768, + 3132, 3090, 2279, + 2797, 3198, 0, + 0, 3311, 0, + 0, 3428, 0, + 0, 3549, 0, + 0, 3672, 0, + 3689, 2503, 3392, + 3689, 2503, 3392, + 3689, 2503, 3392, + 3689, 2504, 3392, + 3689, 2504, 3392, + 3689, 2505, 3391, + 3689, 2506, 3391, + 3688, 2507, 3391, + 3688, 2509, 3390, + 3688, 2511, 3390, + 3687, 2515, 3389, + 3687, 2519, 3388, + 3686, 2524, 3387, + 3684, 2531, 3385, + 3683, 2541, 3383, + 3681, 2553, 3380, + 3678, 2569, 3375, + 3674, 2589, 3369, + 3669, 2615, 3362, + 3661, 2648, 3351, + 3652, 2688, 3336, + 3638, 2737, 3316, + 3620, 2795, 3287, + 3594, 2863, 3245, + 3556, 2940, 3182, + 3501, 3026, 3081, + 3414, 3120, 2898, + 3265, 3222, 2405, + 2930, 3330, 0, + 0, 3443, 0, + 0, 3560, 0, + 0, 3681, 0, + 3821, 2633, 3524, + 3821, 2633, 3523, + 3821, 2633, 3523, + 3821, 2633, 3523, + 3821, 2634, 3523, + 3821, 2634, 3523, + 3821, 2635, 3523, + 3821, 2636, 3523, + 3821, 2637, 3522, + 3820, 2639, 3522, + 3820, 2642, 3521, + 3819, 2645, 3521, + 3819, 2649, 3520, + 3818, 2654, 3518, + 3817, 2661, 3517, + 3815, 2671, 3514, + 3813, 2683, 3511, + 3810, 2699, 3507, + 3806, 2720, 3501, + 3801, 2746, 3493, + 3794, 2779, 3482, + 3784, 2819, 3468, + 3770, 2868, 3447, + 3752, 2926, 3418, + 3726, 2994, 3376, + 3688, 3071, 3313, + 3633, 3157, 3212, + 3547, 3252, 3029, + 3397, 3353, 2532, + 3063, 3461, 0, + 0, 3575, 0, + 0, 3692, 0, + 3954, 2763, 3655, + 3954, 2763, 3655, + 3954, 2763, 3655, + 3954, 2764, 3655, + 3953, 2764, 3655, + 3953, 2764, 3655, + 3953, 2765, 3655, + 3953, 2766, 3655, + 3953, 2767, 3654, + 3953, 2768, 3654, + 3953, 2770, 3654, + 3952, 2772, 3653, + 3952, 2775, 3652, + 3951, 2779, 3651, + 3950, 2785, 3650, + 3949, 2792, 3648, + 3947, 2802, 3646, + 3945, 2814, 3643, + 3942, 2830, 3639, + 3938, 2851, 3633, + 3933, 2877, 3625, + 3926, 2910, 3614, + 3916, 2950, 3599, + 3903, 2999, 3579, + 3884, 3057, 3550, + 3858, 3125, 3508, + 3821, 3202, 3444, + 3765, 3289, 3344, + 3679, 3383, 3160, + 3529, 3485, 2661, + 3195, 3593, 0, + 0, 3706, 0, + 4086, 2894, 3787, + 4086, 2894, 3787, + 4086, 2894, 3787, + 4086, 2894, 3787, + 4086, 2895, 3787, + 4086, 2895, 3787, + 4086, 2895, 3787, + 4085, 2896, 3787, + 4085, 2897, 3786, + 4085, 2898, 3786, + 4085, 2899, 3786, + 4085, 2901, 3786, + 4084, 2903, 3785, + 4084, 2906, 3784, + 4083, 2910, 3783, + 4082, 2916, 3782, + 4081, 2923, 3780, + 4079, 2933, 3778, + 4077, 2945, 3775, + 4074, 2961, 3770, + 4071, 2982, 3765, + 4065, 3008, 3757, + 4058, 3041, 3746, + 4048, 3081, 3731, + 4035, 3130, 3710, + 4016, 3189, 3681, + 3990, 3257, 3639, + 3953, 3334, 3576, + 3898, 3420, 3475, + 3811, 3515, 3291, + 3662, 3617, 2790, + 3328, 3725, 0, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3026, 3919, + 4095, 3026, 3919, + 4095, 3026, 3919, + 4095, 3027, 3919, + 4095, 3027, 3919, + 4095, 3028, 3918, + 4095, 3029, 3918, + 4095, 3030, 3918, + 4095, 3032, 3917, + 4095, 3034, 3917, + 4095, 3037, 3916, + 4095, 3042, 3915, + 4095, 3047, 3914, + 4095, 3054, 3912, + 4095, 3064, 3910, + 4095, 3076, 3906, + 4095, 3092, 3902, + 4095, 3113, 3896, + 4095, 3139, 3888, + 4095, 3172, 3878, + 4095, 3213, 3863, + 4095, 3262, 3842, + 4095, 3320, 3813, + 4095, 3388, 3771, + 4085, 3466, 3708, + 4030, 3552, 3607, + 3943, 3647, 3422, + 3794, 3749, 2920, + 4095, 3156, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3159, 4050, + 4095, 3159, 4050, + 4095, 3160, 4050, + 4095, 3162, 4050, + 4095, 3163, 4049, + 4095, 3166, 4049, + 4095, 3169, 4048, + 4095, 3173, 4047, + 4095, 3179, 4046, + 4095, 3186, 4044, + 4095, 3195, 4042, + 4095, 3208, 4038, + 4095, 3224, 4034, + 4095, 3245, 4028, + 4095, 3271, 4020, + 4095, 3304, 4010, + 4095, 3345, 3995, + 4095, 3394, 3974, + 4095, 3452, 3945, + 4095, 3520, 3903, + 4095, 3598, 3840, + 4095, 3684, 3738, + 4075, 3779, 3554, + 0, 843, 1089, + 0, 852, 1080, + 0, 864, 1068, + 0, 879, 1052, + 0, 898, 1030, + 0, 923, 998, + 0, 954, 952, + 0, 992, 882, + 0, 1039, 767, + 0, 1094, 545, + 0, 1160, 0, + 0, 1234, 0, + 0, 1318, 0, + 0, 1411, 0, + 0, 1511, 0, + 0, 1617, 0, + 0, 1729, 0, + 0, 1846, 0, + 0, 1966, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 0, 846, 1101, + 0, 855, 1093, + 0, 867, 1082, + 0, 881, 1066, + 0, 901, 1044, + 0, 925, 1013, + 0, 956, 969, + 0, 994, 901, + 0, 1041, 792, + 0, 1096, 585, + 0, 1161, 0, + 0, 1236, 0, + 0, 1319, 0, + 0, 1412, 0, + 0, 1512, 0, + 0, 1618, 0, + 0, 1730, 0, + 0, 1846, 0, + 0, 1966, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 0, 850, 1117, + 0, 859, 1109, + 0, 870, 1098, + 0, 885, 1083, + 0, 904, 1063, + 0, 928, 1033, + 0, 959, 990, + 0, 997, 926, + 0, 1043, 823, + 0, 1098, 634, + 0, 1163, 101, + 0, 1237, 0, + 0, 1321, 0, + 0, 1413, 0, + 0, 1513, 0, + 0, 1619, 0, + 0, 1730, 0, + 0, 1847, 0, + 0, 1967, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 0, 856, 1138, + 0, 864, 1130, + 0, 875, 1120, + 0, 890, 1106, + 0, 909, 1086, + 0, 933, 1058, + 0, 963, 1018, + 0, 1001, 957, + 0, 1047, 862, + 0, 1101, 692, + 0, 1166, 266, + 0, 1240, 0, + 0, 1323, 0, + 0, 1414, 0, + 0, 1514, 0, + 0, 1620, 0, + 0, 1731, 0, + 0, 1847, 0, + 0, 1967, 0, + 0, 2090, 0, + 0, 2215, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 0, 863, 1164, + 0, 871, 1157, + 0, 882, 1147, + 0, 897, 1134, + 0, 915, 1115, + 0, 939, 1089, + 0, 969, 1052, + 0, 1006, 996, + 0, 1051, 909, + 0, 1106, 759, + 0, 1169, 421, + 0, 1243, 0, + 0, 1325, 0, + 0, 1417, 0, + 0, 1515, 0, + 0, 1621, 0, + 0, 1732, 0, + 0, 1848, 0, + 0, 1968, 0, + 0, 2090, 0, + 0, 2215, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 133, 872, 1198, + 32, 880, 1191, + 0, 891, 1182, + 0, 905, 1169, + 0, 923, 1152, + 0, 947, 1128, + 0, 976, 1094, + 0, 1013, 1043, + 0, 1057, 966, + 0, 1111, 836, + 0, 1174, 570, + 0, 1247, 0, + 0, 1329, 0, + 0, 1419, 0, + 0, 1518, 0, + 0, 1623, 0, + 0, 1734, 0, + 0, 1849, 0, + 0, 1968, 0, + 0, 2091, 0, + 0, 2215, 0, + 0, 2342, 0, + 0, 2470, 0, + 0, 2599, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 615, 884, 1238, + 582, 892, 1232, + 535, 902, 1224, + 462, 916, 1213, + 342, 934, 1197, + 107, 957, 1175, + 0, 986, 1144, + 0, 1021, 1100, + 0, 1065, 1032, + 0, 1118, 922, + 0, 1180, 714, + 0, 1252, 39, + 0, 1333, 0, + 0, 1423, 0, + 0, 1521, 0, + 0, 1625, 0, + 0, 1735, 0, + 0, 1851, 0, + 0, 1970, 0, + 0, 2092, 0, + 0, 2216, 0, + 0, 2342, 0, + 0, 2470, 0, + 0, 2599, 0, + 0, 2728, 0, + 0, 2859, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 901, 899, 1288, + 883, 907, 1282, + 859, 917, 1275, + 825, 931, 1265, + 775, 948, 1251, + 698, 970, 1231, + 569, 998, 1204, + 307, 1033, 1165, + 0, 1076, 1107, + 0, 1127, 1016, + 0, 1188, 855, + 0, 1259, 474, + 0, 1339, 0, + 0, 1428, 0, + 0, 1524, 0, + 0, 1628, 0, + 0, 1738, 0, + 0, 1852, 0, + 0, 1971, 0, + 0, 2093, 0, + 0, 2217, 0, + 0, 2343, 0, + 0, 2470, 0, + 0, 2599, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1121, 919, 1346, + 1110, 927, 1341, + 1096, 937, 1335, + 1076, 949, 1326, + 1048, 966, 1314, + 1007, 987, 1297, + 947, 1014, 1274, + 850, 1048, 1241, + 677, 1089, 1192, + 240, 1140, 1117, + 0, 1199, 994, + 0, 1268, 747, + 0, 1347, 0, + 0, 1434, 0, + 0, 1530, 0, + 0, 1632, 0, + 0, 1741, 0, + 0, 1855, 0, + 0, 1973, 0, + 0, 2094, 0, + 0, 2218, 0, + 0, 2344, 0, + 0, 2471, 0, + 0, 2600, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1309, 945, 1414, + 1302, 952, 1410, + 1293, 961, 1405, + 1280, 973, 1397, + 1262, 989, 1387, + 1237, 1009, 1372, + 1202, 1035, 1353, + 1149, 1067, 1325, + 1068, 1107, 1285, + 930, 1156, 1225, + 639, 1213, 1130, + 0, 1280, 962, + 0, 1357, 546, + 0, 1442, 0, + 0, 1536, 0, + 0, 1638, 0, + 0, 1745, 0, + 0, 1858, 0, + 0, 1976, 0, + 0, 2096, 0, + 0, 2220, 0, + 0, 2345, 0, + 0, 2472, 0, + 0, 2600, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1479, 977, 1492, + 1475, 983, 1488, + 1468, 992, 1484, + 1460, 1003, 1477, + 1448, 1018, 1469, + 1431, 1037, 1457, + 1408, 1061, 1441, + 1376, 1092, 1418, + 1328, 1130, 1385, + 1255, 1176, 1338, + 1136, 1231, 1266, + 901, 1296, 1148, + 0, 1370, 916, + 0, 1453, 0, + 0, 1545, 0, + 0, 1645, 0, + 0, 1751, 0, + 0, 1863, 0, + 0, 1979, 0, + 0, 2099, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1638, 1016, 1579, + 1635, 1022, 1576, + 1630, 1030, 1572, + 1624, 1041, 1567, + 1616, 1054, 1559, + 1604, 1072, 1550, + 1589, 1094, 1537, + 1567, 1123, 1518, + 1537, 1158, 1492, + 1492, 1202, 1455, + 1425, 1254, 1401, + 1316, 1316, 1316, + 1111, 1387, 1169, + 459, 1468, 847, + 0, 1557, 0, + 0, 1654, 0, + 0, 1758, 0, + 0, 1869, 0, + 0, 1983, 0, + 0, 2102, 0, + 0, 2224, 0, + 0, 2348, 0, + 0, 2475, 0, + 0, 2602, 0, + 0, 2731, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1789, 1064, 1673, + 1786, 1070, 1671, + 1783, 1077, 1668, + 1779, 1086, 1664, + 1773, 1099, 1658, + 1765, 1115, 1650, + 1754, 1135, 1640, + 1739, 1161, 1625, + 1719, 1194, 1605, + 1689, 1234, 1576, + 1647, 1283, 1535, + 1583, 1341, 1473, + 1481, 1409, 1375, + 1293, 1486, 1197, + 773, 1572, 733, + 0, 1667, 0, + 0, 1768, 0, + 0, 1876, 0, + 0, 1989, 0, + 0, 2107, 0, + 0, 2228, 0, + 0, 2351, 0, + 0, 2477, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1934, 1121, 1775, + 1933, 1126, 1774, + 1930, 1133, 1771, + 1927, 1141, 1768, + 1923, 1152, 1763, + 1917, 1166, 1757, + 1910, 1184, 1749, + 1899, 1208, 1737, + 1885, 1237, 1721, + 1864, 1274, 1700, + 1836, 1319, 1668, + 1795, 1373, 1623, + 1734, 1436, 1555, + 1636, 1509, 1443, + 1460, 1592, 1231, + 1006, 1682, 516, + 0, 1781, 0, + 0, 1886, 0, + 0, 1997, 0, + 0, 2113, 0, + 0, 2232, 0, + 0, 2355, 0, + 0, 2479, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2863, 0, + 0, 2992, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2076, 1188, 1884, + 2075, 1192, 1882, + 2074, 1198, 1880, + 2071, 1205, 1878, + 2068, 1214, 1874, + 2064, 1227, 1869, + 2058, 1243, 1863, + 2051, 1264, 1854, + 2041, 1290, 1842, + 2026, 1323, 1825, + 2007, 1363, 1802, + 1979, 1413, 1768, + 1939, 1471, 1720, + 1879, 1539, 1645, + 1784, 1616, 1521, + 1616, 1703, 1274, + 1200, 1798, 0, + 0, 1899, 0, + 0, 2008, 0, + 0, 2121, 0, + 0, 2239, 0, + 0, 2359, 0, + 0, 2483, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2216, 1264, 1997, + 2215, 1268, 1996, + 2214, 1272, 1995, + 2212, 1279, 1992, + 2210, 1287, 1990, + 2207, 1297, 1986, + 2203, 1311, 1981, + 2197, 1329, 1974, + 2190, 1352, 1965, + 2179, 1381, 1952, + 2165, 1417, 1935, + 2146, 1461, 1910, + 2119, 1513, 1875, + 2079, 1576, 1823, + 2021, 1648, 1743, + 1928, 1729, 1608, + 1765, 1819, 1325, + 1374, 1916, 0, + 0, 2021, 0, + 0, 2132, 0, + 0, 2247, 0, + 0, 2366, 0, + 0, 2488, 0, + 0, 2612, 0, + 0, 2739, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2353, 1349, 2115, + 2353, 1352, 2114, + 2352, 1356, 2113, + 2350, 1361, 2111, + 2349, 1368, 2109, + 2347, 1377, 2106, + 2344, 1389, 2102, + 2340, 1404, 2097, + 2334, 1423, 2090, + 2327, 1448, 2080, + 2317, 1479, 2067, + 2303, 1518, 2049, + 2284, 1565, 2023, + 2257, 1621, 1987, + 2218, 1686, 1932, + 2160, 1761, 1848, + 2069, 1846, 1703, + 1910, 1938, 1386, + 1535, 2039, 0, + 0, 2145, 0, + 0, 2257, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2489, 1443, 2236, + 2489, 1445, 2235, + 2488, 1449, 2234, + 2487, 1453, 2233, + 2486, 1458, 2231, + 2484, 1466, 2229, + 2482, 1475, 2226, + 2479, 1488, 2222, + 2475, 1504, 2217, + 2470, 1525, 2210, + 2462, 1551, 2200, + 2452, 1584, 2186, + 2439, 1625, 2167, + 2420, 1675, 2141, + 2393, 1733, 2103, + 2355, 1802, 2047, + 2297, 1879, 1958, + 2208, 1966, 1805, + 2051, 2061, 1456, + 1688, 2163, 0, + 0, 2271, 0, + 0, 2385, 0, + 0, 2502, 0, + 0, 2623, 0, + 0, 2747, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3128, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2624, 1544, 2359, + 2624, 1546, 2359, + 2624, 1549, 2358, + 2623, 1552, 2357, + 2622, 1556, 2356, + 2621, 1562, 2354, + 2619, 1570, 2352, + 2617, 1580, 2349, + 2614, 1593, 2345, + 2610, 1611, 2340, + 2605, 1633, 2332, + 2597, 1661, 2322, + 2587, 1695, 2308, + 2574, 1738, 2289, + 2555, 1789, 2262, + 2528, 1850, 2223, + 2490, 1921, 2165, + 2433, 2000, 2074, + 2345, 2089, 1914, + 2190, 2186, 1535, + 1835, 2289, 0, + 0, 2399, 0, + 0, 2513, 0, + 0, 2632, 0, + 0, 2753, 0, + 0, 2877, 0, + 0, 3004, 0, + 0, 3131, 0, + 0, 3260, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 2759, 1651, 2485, + 2758, 1653, 2485, + 2758, 1655, 2484, + 2758, 1658, 2483, + 2757, 1661, 2482, + 2756, 1666, 2481, + 2755, 1672, 2480, + 2753, 1680, 2477, + 2751, 1691, 2474, + 2748, 1705, 2470, + 2744, 1723, 2465, + 2739, 1746, 2457, + 2731, 1775, 2447, + 2721, 1811, 2433, + 2708, 1855, 2413, + 2689, 1908, 2385, + 2663, 1971, 2346, + 2625, 2043, 2287, + 2568, 2124, 2193, + 2480, 2214, 2027, + 2327, 2312, 1623, + 1978, 2417, 0, + 0, 2527, 0, + 0, 2643, 0, + 0, 2762, 0, + 0, 2884, 0, + 0, 3008, 0, + 0, 3135, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 2892, 1764, 2612, + 2892, 1765, 2612, + 2892, 1767, 2612, + 2892, 1769, 2611, + 2891, 1772, 2610, + 2890, 1775, 2609, + 2889, 1780, 2608, + 2888, 1787, 2606, + 2887, 1795, 2604, + 2884, 1806, 2601, + 2882, 1821, 2597, + 2878, 1839, 2591, + 2872, 1863, 2584, + 2865, 1893, 2573, + 2855, 1930, 2559, + 2842, 1976, 2539, + 2823, 2030, 2511, + 2797, 2094, 2471, + 2759, 2167, 2411, + 2703, 2250, 2315, + 2615, 2341, 2145, + 2463, 2440, 1720, + 2118, 2546, 0, + 0, 2657, 0, + 0, 2773, 0, + 0, 2892, 0, + 0, 3015, 0, + 0, 3140, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3653, 0, + 3026, 1881, 2741, + 3026, 1882, 2740, + 3025, 1883, 2740, + 3025, 1885, 2740, + 3025, 1887, 2739, + 3024, 1890, 2738, + 3024, 1894, 2737, + 3023, 1899, 2736, + 3021, 1905, 2734, + 3020, 1914, 2732, + 3018, 1926, 2729, + 3015, 1940, 2725, + 3011, 1960, 2719, + 3005, 1984, 2712, + 2998, 2015, 2701, + 2988, 2053, 2687, + 2975, 2099, 2667, + 2956, 2154, 2638, + 2930, 2219, 2598, + 2892, 2294, 2537, + 2836, 2377, 2440, + 2749, 2469, 2266, + 2598, 2569, 1823, + 2256, 2675, 0, + 0, 2787, 0, + 0, 2903, 0, + 0, 3023, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 3159, 2002, 2870, + 3159, 2002, 2870, + 3158, 2003, 2870, + 3158, 2005, 2869, + 3158, 2006, 2869, + 3158, 2008, 2868, + 3157, 2011, 2868, + 3156, 2015, 2867, + 3156, 2020, 2865, + 3154, 2027, 2864, + 3153, 2036, 2861, + 3151, 2048, 2858, + 3148, 2063, 2854, + 3144, 2082, 2848, + 3138, 2107, 2840, + 3131, 2139, 2830, + 3121, 2177, 2815, + 3108, 2224, 2795, + 3089, 2280, 2767, + 3063, 2346, 2726, + 3025, 2421, 2664, + 2970, 2506, 2566, + 2883, 2598, 2390, + 2732, 2699, 1933, + 2392, 2805, 0, + 0, 2918, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3403, 0, + 0, 3529, 0, + 0, 3658, 0, + 3291, 2125, 3000, + 3291, 2125, 3000, + 3291, 2126, 3000, + 3291, 2127, 2999, + 3291, 2128, 2999, + 3291, 2130, 2999, + 3290, 2132, 2998, + 3290, 2135, 2997, + 3289, 2139, 2996, + 3288, 2145, 2995, + 3287, 2151, 2993, + 3285, 2161, 2991, + 3283, 2172, 2988, + 3280, 2188, 2984, + 3276, 2208, 2978, + 3271, 2233, 2970, + 3264, 2264, 2960, + 3254, 2304, 2945, + 3241, 2351, 2925, + 3222, 2408, 2896, + 3196, 2474, 2855, + 3158, 2550, 2793, + 3103, 2635, 2694, + 3016, 2728, 2515, + 2865, 2829, 2047, + 2527, 2936, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3534, 0, + 0, 3661, 0, + 3424, 2250, 3130, + 3424, 2251, 3130, + 3424, 2251, 3130, + 3424, 2252, 3130, + 3424, 2253, 3130, + 3423, 2254, 3130, + 3423, 2256, 3129, + 3423, 2258, 3129, + 3422, 2261, 3128, + 3422, 2265, 3127, + 3421, 2271, 3126, + 3420, 2278, 3124, + 3418, 2287, 3122, + 3416, 2299, 3118, + 3413, 2314, 3114, + 3409, 2334, 3108, + 3404, 2360, 3101, + 3396, 2392, 3090, + 3387, 2431, 3075, + 3373, 2479, 3055, + 3355, 2537, 3026, + 3328, 2603, 2984, + 3291, 2680, 2922, + 3235, 2765, 2823, + 3149, 2859, 2643, + 2999, 2960, 2165, + 2662, 3067, 0, + 0, 3180, 0, + 0, 3297, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3666, 0, + 3557, 2377, 3261, + 3557, 2378, 3261, + 3556, 2378, 3261, + 3556, 2379, 3261, + 3556, 2379, 3261, + 3556, 2380, 3261, + 3556, 2382, 3260, + 3556, 2383, 3260, + 3555, 2386, 3259, + 3555, 2389, 3259, + 3554, 2393, 3258, + 3553, 2398, 3256, + 3552, 2405, 3255, + 3550, 2414, 3252, + 3548, 2427, 3249, + 3545, 2442, 3245, + 3541, 2462, 3239, + 3536, 2488, 3231, + 3529, 2520, 3221, + 3519, 2560, 3206, + 3506, 2609, 3185, + 3487, 2666, 3157, + 3461, 2733, 3115, + 3423, 2810, 3052, + 3368, 2896, 2952, + 3281, 2989, 2771, + 3131, 3091, 2287, + 2795, 3198, 0, + 0, 3311, 0, + 0, 3429, 0, + 0, 3549, 0, + 0, 3673, 0, + 3689, 2506, 3393, + 3689, 2506, 3393, + 3689, 2506, 3392, + 3689, 2506, 3392, + 3689, 2507, 3392, + 3689, 2508, 3392, + 3688, 2509, 3392, + 3688, 2510, 3392, + 3688, 2512, 3391, + 3688, 2514, 3391, + 3687, 2517, 3390, + 3686, 2521, 3389, + 3686, 2527, 3388, + 3684, 2534, 3386, + 3683, 2543, 3383, + 3681, 2555, 3380, + 3678, 2571, 3376, + 3674, 2592, 3370, + 3668, 2617, 3362, + 3661, 2650, 3352, + 3651, 2690, 3337, + 3638, 2739, 3316, + 3619, 2796, 3287, + 3593, 2864, 3246, + 3556, 2941, 3183, + 3500, 3026, 3083, + 3414, 3121, 2900, + 3264, 3222, 2411, + 2929, 3330, 0, + 0, 3443, 0, + 0, 3560, 0, + 0, 3681, 0, + 3821, 2635, 3524, + 3821, 2635, 3524, + 3821, 2635, 3524, + 3821, 2635, 3524, + 3821, 2636, 3524, + 3821, 2636, 3524, + 3821, 2637, 3523, + 3821, 2638, 3523, + 3821, 2639, 3523, + 3820, 2641, 3523, + 3820, 2644, 3522, + 3819, 2647, 3521, + 3819, 2651, 3520, + 3818, 2656, 3519, + 3817, 2663, 3517, + 3815, 2673, 3515, + 3813, 2685, 3512, + 3810, 2701, 3507, + 3806, 2721, 3502, + 3801, 2747, 3494, + 3794, 2780, 3483, + 3784, 2820, 3468, + 3770, 2869, 3448, + 3752, 2927, 3419, + 3726, 2995, 3377, + 3688, 3072, 3314, + 3633, 3158, 3213, + 3546, 3252, 3030, + 3397, 3354, 2537, + 3062, 3462, 0, + 0, 3575, 0, + 0, 3692, 0, + 3953, 2765, 3656, + 3953, 2765, 3656, + 3953, 2765, 3656, + 3953, 2765, 3656, + 3953, 2765, 3655, + 3953, 2766, 3655, + 3953, 2766, 3655, + 3953, 2767, 3655, + 3953, 2768, 3655, + 3953, 2770, 3655, + 3952, 2771, 3654, + 3952, 2774, 3654, + 3952, 2777, 3653, + 3951, 2781, 3652, + 3950, 2786, 3651, + 3949, 2793, 3649, + 3947, 2803, 3646, + 3945, 2815, 3643, + 3942, 2831, 3639, + 3938, 2852, 3633, + 3933, 2878, 3625, + 3926, 2911, 3615, + 3916, 2951, 3600, + 3903, 3000, 3579, + 3884, 3058, 3550, + 3858, 3126, 3508, + 3821, 3203, 3445, + 3765, 3289, 3344, + 3679, 3384, 3161, + 3529, 3485, 2664, + 3195, 3593, 0, + 0, 3707, 0, + 4086, 2895, 3787, + 4086, 2895, 3787, + 4086, 2895, 3787, + 4086, 2896, 3787, + 4086, 2896, 3787, + 4086, 2896, 3787, + 4086, 2896, 3787, + 4085, 2897, 3787, + 4085, 2898, 3787, + 4085, 2899, 3787, + 4085, 2900, 3786, + 4085, 2902, 3786, + 4084, 2904, 3785, + 4084, 2907, 3785, + 4083, 2911, 3784, + 4082, 2917, 3782, + 4081, 2924, 3780, + 4079, 2934, 3778, + 4077, 2946, 3775, + 4074, 2962, 3771, + 4070, 2983, 3765, + 4065, 3009, 3757, + 4058, 3042, 3746, + 4048, 3082, 3731, + 4035, 3131, 3711, + 4016, 3189, 3682, + 3990, 3257, 3640, + 3953, 3334, 3577, + 3897, 3421, 3476, + 3811, 3515, 3292, + 3662, 3617, 2793, + 3327, 3725, 0, + 4095, 3026, 3919, + 4095, 3026, 3919, + 4095, 3026, 3919, + 4095, 3026, 3919, + 4095, 3026, 3919, + 4095, 3027, 3919, + 4095, 3027, 3919, + 4095, 3027, 3919, + 4095, 3028, 3919, + 4095, 3029, 3919, + 4095, 3030, 3918, + 4095, 3031, 3918, + 4095, 3033, 3918, + 4095, 3035, 3917, + 4095, 3038, 3916, + 4095, 3042, 3915, + 4095, 3048, 3914, + 4095, 3055, 3912, + 4095, 3065, 3910, + 4095, 3077, 3907, + 4095, 3093, 3902, + 4095, 3114, 3897, + 4095, 3140, 3889, + 4095, 3173, 3878, + 4095, 3213, 3863, + 4095, 3263, 3843, + 4095, 3321, 3813, + 4095, 3389, 3771, + 4085, 3466, 3708, + 4030, 3552, 3607, + 3943, 3647, 3423, + 3794, 3749, 2922, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3159, 4051, + 4095, 3159, 4051, + 4095, 3160, 4050, + 4095, 3161, 4050, + 4095, 3162, 4050, + 4095, 3164, 4049, + 4095, 3166, 4049, + 4095, 3170, 4048, + 4095, 3174, 4047, + 4095, 3179, 4046, + 4095, 3186, 4044, + 4095, 3196, 4042, + 4095, 3208, 4039, + 4095, 3224, 4034, + 4095, 3245, 4028, + 4095, 3271, 4021, + 4095, 3304, 4010, + 4095, 3345, 3995, + 4095, 3394, 3974, + 4095, 3453, 3945, + 4095, 3520, 3903, + 4095, 3598, 3840, + 4095, 3684, 3739, + 4075, 3779, 3555, + 0, 966, 1218, + 0, 973, 1211, + 0, 982, 1202, + 0, 994, 1191, + 0, 1009, 1174, + 0, 1028, 1151, + 0, 1053, 1119, + 0, 1084, 1071, + 0, 1122, 999, + 0, 1169, 879, + 0, 1225, 645, + 0, 1291, 0, + 0, 1366, 0, + 0, 1450, 0, + 0, 1542, 0, + 0, 1643, 0, + 0, 1749, 0, + 0, 1861, 0, + 0, 1978, 0, + 0, 2098, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 0, 969, 1227, + 0, 975, 1221, + 0, 984, 1212, + 0, 996, 1201, + 0, 1011, 1185, + 0, 1030, 1162, + 0, 1055, 1130, + 0, 1086, 1084, + 0, 1124, 1014, + 0, 1171, 899, + 0, 1226, 677, + 0, 1292, 0, + 0, 1367, 0, + 0, 1451, 0, + 0, 1543, 0, + 0, 1643, 0, + 0, 1750, 0, + 0, 1862, 0, + 0, 1978, 0, + 0, 2098, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 0, 972, 1239, + 0, 978, 1233, + 0, 987, 1225, + 0, 999, 1214, + 0, 1014, 1198, + 0, 1033, 1176, + 0, 1057, 1146, + 0, 1088, 1101, + 0, 1126, 1033, + 0, 1173, 924, + 0, 1228, 717, + 0, 1293, 53, + 0, 1368, 0, + 0, 1452, 0, + 0, 1544, 0, + 0, 1644, 0, + 0, 1750, 0, + 0, 1862, 0, + 0, 1978, 0, + 0, 2098, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 0, 976, 1255, + 0, 982, 1249, + 0, 991, 1241, + 0, 1002, 1230, + 0, 1017, 1215, + 0, 1036, 1195, + 0, 1061, 1165, + 0, 1091, 1122, + 0, 1129, 1058, + 0, 1175, 955, + 0, 1231, 766, + 0, 1295, 233, + 0, 1370, 0, + 0, 1453, 0, + 0, 1545, 0, + 0, 1645, 0, + 0, 1751, 0, + 0, 1863, 0, + 0, 1979, 0, + 0, 2099, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 0, 981, 1276, + 0, 988, 1270, + 0, 996, 1263, + 0, 1008, 1252, + 0, 1022, 1238, + 0, 1041, 1218, + 0, 1065, 1190, + 0, 1095, 1150, + 0, 1133, 1090, + 0, 1179, 994, + 0, 1234, 824, + 0, 1298, 398, + 0, 1372, 0, + 0, 1455, 0, + 0, 1547, 0, + 0, 1646, 0, + 0, 1752, 0, + 0, 1863, 0, + 0, 1979, 0, + 0, 2099, 0, + 0, 2222, 0, + 0, 2347, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 0, 988, 1302, + 0, 995, 1297, + 0, 1003, 1289, + 0, 1014, 1280, + 0, 1029, 1266, + 0, 1047, 1247, + 0, 1071, 1221, + 0, 1101, 1184, + 0, 1138, 1128, + 0, 1183, 1041, + 0, 1238, 891, + 0, 1301, 553, + 0, 1375, 0, + 0, 1457, 0, + 0, 1549, 0, + 0, 1648, 0, + 0, 1753, 0, + 0, 1864, 0, + 0, 1980, 0, + 0, 2100, 0, + 0, 2222, 0, + 0, 2347, 0, + 0, 2474, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 329, 998, 1335, + 265, 1004, 1330, + 164, 1012, 1323, + 0, 1023, 1314, + 0, 1037, 1301, + 0, 1055, 1284, + 0, 1079, 1260, + 0, 1108, 1226, + 0, 1145, 1175, + 0, 1189, 1098, + 0, 1243, 968, + 0, 1306, 702, + 0, 1379, 0, + 0, 1461, 0, + 0, 1551, 0, + 0, 1650, 0, + 0, 1755, 0, + 0, 1866, 0, + 0, 1981, 0, + 0, 2101, 0, + 0, 2223, 0, + 0, 2347, 0, + 0, 2474, 0, + 0, 2602, 0, + 0, 2731, 0, + 0, 2860, 0, + 0, 2991, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 770, 1010, 1375, + 747, 1016, 1370, + 715, 1024, 1364, + 667, 1035, 1356, + 594, 1048, 1345, + 474, 1066, 1329, + 239, 1089, 1307, + 0, 1118, 1276, + 0, 1154, 1232, + 0, 1197, 1164, + 0, 1250, 1054, + 0, 1312, 846, + 0, 1384, 171, + 0, 1465, 0, + 0, 1555, 0, + 0, 1653, 0, + 0, 1757, 0, + 0, 1868, 0, + 0, 1983, 0, + 0, 2102, 0, + 0, 2224, 0, + 0, 2348, 0, + 0, 2474, 0, + 0, 2602, 0, + 0, 2731, 0, + 0, 2860, 0, + 0, 2991, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1045, 1025, 1424, + 1033, 1031, 1420, + 1016, 1039, 1414, + 992, 1049, 1407, + 957, 1063, 1397, + 907, 1080, 1383, + 830, 1102, 1364, + 702, 1130, 1336, + 440, 1165, 1297, + 0, 1208, 1239, + 0, 1260, 1148, + 0, 1321, 987, + 0, 1391, 606, + 0, 1471, 0, + 0, 1560, 0, + 0, 1657, 0, + 0, 1760, 0, + 0, 1870, 0, + 0, 1985, 0, + 0, 2103, 0, + 0, 2225, 0, + 0, 2349, 0, + 0, 2475, 0, + 0, 2603, 0, + 0, 2731, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1261, 1046, 1482, + 1253, 1051, 1478, + 1242, 1059, 1473, + 1228, 1069, 1467, + 1208, 1082, 1458, + 1180, 1098, 1446, + 1139, 1119, 1429, + 1079, 1146, 1406, + 982, 1180, 1373, + 810, 1222, 1324, + 372, 1272, 1249, + 0, 1331, 1126, + 0, 1400, 879, + 0, 1479, 0, + 0, 1566, 0, + 0, 1662, 0, + 0, 1764, 0, + 0, 1873, 0, + 0, 1987, 0, + 0, 2105, 0, + 0, 2226, 0, + 0, 2350, 0, + 0, 2476, 0, + 0, 2603, 0, + 0, 2732, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1446, 1072, 1550, + 1441, 1077, 1546, + 1434, 1084, 1542, + 1425, 1093, 1537, + 1412, 1105, 1529, + 1394, 1121, 1519, + 1370, 1141, 1505, + 1334, 1167, 1485, + 1282, 1199, 1457, + 1200, 1239, 1417, + 1063, 1288, 1357, + 771, 1345, 1263, + 0, 1412, 1094, + 0, 1489, 678, + 0, 1575, 0, + 0, 1668, 0, + 0, 1770, 0, + 0, 1877, 0, + 0, 1990, 0, + 0, 2108, 0, + 0, 2228, 0, + 0, 2352, 0, + 0, 2477, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1615, 1104, 1627, + 1611, 1109, 1624, + 1607, 1115, 1621, + 1600, 1124, 1616, + 1592, 1135, 1609, + 1580, 1150, 1601, + 1563, 1169, 1589, + 1540, 1193, 1573, + 1508, 1224, 1550, + 1460, 1262, 1518, + 1388, 1308, 1470, + 1268, 1363, 1398, + 1033, 1428, 1280, + 0, 1502, 1048, + 0, 1585, 57, + 0, 1677, 0, + 0, 1777, 0, + 0, 1883, 0, + 0, 1995, 0, + 0, 2111, 0, + 0, 2231, 0, + 0, 2354, 0, + 0, 2479, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 1772, 1144, 1713, + 1770, 1148, 1711, + 1767, 1154, 1708, + 1762, 1162, 1704, + 1756, 1173, 1699, + 1748, 1186, 1692, + 1737, 1204, 1682, + 1721, 1226, 1669, + 1699, 1255, 1650, + 1669, 1290, 1624, + 1624, 1334, 1588, + 1557, 1386, 1533, + 1448, 1448, 1448, + 1243, 1519, 1301, + 591, 1600, 979, + 0, 1689, 0, + 0, 1786, 0, + 0, 1891, 0, + 0, 2001, 0, + 0, 2116, 0, + 0, 2234, 0, + 0, 2356, 0, + 0, 2481, 0, + 0, 2607, 0, + 0, 2734, 0, + 0, 2863, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3647, 0, + 1923, 1192, 1807, + 1921, 1196, 1805, + 1919, 1202, 1803, + 1915, 1209, 1800, + 1911, 1218, 1796, + 1905, 1231, 1790, + 1897, 1247, 1782, + 1886, 1267, 1772, + 1871, 1293, 1757, + 1851, 1326, 1737, + 1821, 1366, 1708, + 1779, 1415, 1667, + 1715, 1473, 1605, + 1613, 1541, 1507, + 1426, 1618, 1329, + 905, 1704, 865, + 0, 1799, 0, + 0, 1900, 0, + 0, 2008, 0, + 0, 2122, 0, + 0, 2239, 0, + 0, 2360, 0, + 0, 2483, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2068, 1250, 1909, + 2067, 1253, 1908, + 2065, 1258, 1906, + 2063, 1265, 1903, + 2059, 1273, 1900, + 2055, 1284, 1895, + 2049, 1298, 1889, + 2042, 1317, 1881, + 2031, 1340, 1869, + 2017, 1370, 1854, + 1997, 1406, 1832, + 1968, 1451, 1801, + 1927, 1505, 1755, + 1866, 1569, 1687, + 1768, 1641, 1575, + 1592, 1724, 1364, + 1138, 1815, 648, + 0, 1913, 0, + 0, 2018, 0, + 0, 2129, 0, + 0, 2245, 0, + 0, 2364, 0, + 0, 2487, 0, + 0, 2612, 0, + 0, 2738, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3124, 0, + 0, 3255, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2210, 1317, 2017, + 2209, 1320, 2016, + 2207, 1324, 2014, + 2206, 1330, 2012, + 2203, 1337, 2010, + 2200, 1347, 2006, + 2196, 1359, 2001, + 2191, 1375, 1995, + 2183, 1396, 1986, + 2173, 1422, 1974, + 2158, 1455, 1957, + 2139, 1496, 1934, + 2111, 1545, 1900, + 2071, 1603, 1852, + 2011, 1671, 1777, + 1916, 1749, 1653, + 1748, 1835, 1406, + 1333, 1930, 0, + 0, 2032, 0, + 0, 2140, 0, + 0, 2253, 0, + 0, 2371, 0, + 0, 2492, 0, + 0, 2615, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2996, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2349, 1394, 2130, + 2348, 1396, 2129, + 2347, 1400, 2128, + 2346, 1404, 2127, + 2344, 1411, 2125, + 2342, 1419, 2122, + 2339, 1429, 2118, + 2335, 1443, 2113, + 2329, 1461, 2106, + 2322, 1484, 2097, + 2312, 1513, 2084, + 2298, 1549, 2067, + 2278, 1593, 2042, + 2251, 1646, 2007, + 2211, 1708, 1955, + 2153, 1780, 1875, + 2061, 1861, 1740, + 1898, 1951, 1457, + 1507, 2049, 0, + 0, 2153, 0, + 0, 2264, 0, + 0, 2379, 0, + 0, 2498, 0, + 0, 2620, 0, + 0, 2744, 0, + 0, 2871, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 2486, 1479, 2248, + 2485, 1482, 2247, + 2485, 1484, 2246, + 2484, 1488, 2245, + 2483, 1493, 2243, + 2481, 1500, 2241, + 2479, 1509, 2238, + 2476, 1521, 2234, + 2472, 1536, 2229, + 2466, 1555, 2222, + 2459, 1580, 2213, + 2449, 1611, 2199, + 2435, 1650, 2181, + 2416, 1697, 2155, + 2389, 1753, 2119, + 2350, 1818, 2064, + 2292, 1893, 1980, + 2201, 1978, 1835, + 2042, 2070, 1518, + 1668, 2171, 0, + 0, 2277, 0, + 0, 2389, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 2622, 1573, 2368, + 2621, 1575, 2368, + 2621, 1578, 2367, + 2620, 1581, 2366, + 2619, 1585, 2365, + 2618, 1590, 2363, + 2616, 1598, 2361, + 2614, 1607, 2358, + 2611, 1620, 2354, + 2607, 1636, 2349, + 2602, 1657, 2342, + 2595, 1683, 2332, + 2585, 1716, 2318, + 2571, 1757, 2299, + 2552, 1807, 2273, + 2525, 1865, 2235, + 2487, 1934, 2179, + 2430, 2011, 2091, + 2340, 2098, 1937, + 2183, 2193, 1588, + 1820, 2295, 0, + 0, 2403, 0, + 0, 2517, 0, + 0, 2634, 0, + 0, 2755, 0, + 0, 2879, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3260, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2757, 1675, 2492, + 2756, 1676, 2491, + 2756, 1678, 2491, + 2756, 1681, 2490, + 2755, 1684, 2489, + 2754, 1688, 2488, + 2753, 1694, 2486, + 2751, 1702, 2484, + 2749, 1712, 2481, + 2746, 1726, 2477, + 2742, 1743, 2472, + 2737, 1765, 2464, + 2729, 1793, 2454, + 2719, 1827, 2440, + 2706, 1870, 2421, + 2687, 1922, 2394, + 2660, 1982, 2355, + 2622, 2053, 2297, + 2566, 2132, 2206, + 2477, 2221, 2046, + 2322, 2318, 1667, + 1967, 2421, 0, + 0, 2531, 0, + 0, 2645, 0, + 0, 2764, 0, + 0, 2885, 0, + 0, 3010, 0, + 0, 3136, 0, + 0, 3263, 0, + 0, 3392, 0, + 0, 3521, 0, + 0, 3651, 0, + 2891, 1782, 2617, + 2891, 1784, 2617, + 2890, 1785, 2617, + 2890, 1787, 2616, + 2890, 1790, 2615, + 2889, 1793, 2615, + 2888, 1798, 2613, + 2887, 1804, 2612, + 2885, 1812, 2609, + 2883, 1823, 2606, + 2880, 1837, 2602, + 2876, 1855, 2597, + 2871, 1878, 2589, + 2863, 1907, 2579, + 2854, 1943, 2565, + 2840, 1987, 2545, + 2821, 2040, 2518, + 2795, 2103, 2478, + 2757, 2175, 2419, + 2701, 2256, 2325, + 2612, 2346, 2159, + 2459, 2444, 1755, + 2110, 2549, 0, + 0, 2659, 0, + 0, 2775, 0, + 0, 2894, 0, + 0, 3016, 0, + 0, 3140, 0, + 0, 3267, 0, + 0, 3395, 0, + 0, 3523, 0, + 0, 3653, 0, + 3025, 1895, 2745, + 3024, 1896, 2744, + 3024, 1897, 2744, + 3024, 1899, 2744, + 3024, 1901, 2743, + 3023, 1904, 2742, + 3022, 1908, 2741, + 3022, 1912, 2740, + 3020, 1919, 2738, + 3019, 1927, 2736, + 3017, 1938, 2733, + 3014, 1953, 2729, + 3010, 1971, 2723, + 3004, 1995, 2716, + 2997, 2025, 2705, + 2987, 2062, 2691, + 2974, 2108, 2671, + 2955, 2162, 2643, + 2929, 2226, 2603, + 2891, 2299, 2543, + 2835, 2382, 2447, + 2747, 2473, 2277, + 2595, 2572, 1852, + 2250, 2678, 0, + 0, 2789, 0, + 0, 2905, 0, + 0, 3024, 0, + 0, 3147, 0, + 0, 3272, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 3158, 2013, 2873, + 3158, 2013, 2873, + 3158, 2014, 2872, + 3157, 2015, 2872, + 3157, 2017, 2872, + 3157, 2019, 2871, + 3156, 2022, 2871, + 3156, 2026, 2870, + 3155, 2031, 2868, + 3154, 2038, 2867, + 3152, 2046, 2864, + 3150, 2058, 2861, + 3147, 2073, 2857, + 3143, 2092, 2851, + 3138, 2116, 2844, + 3130, 2147, 2833, + 3120, 2185, 2819, + 3107, 2231, 2799, + 3088, 2286, 2770, + 3062, 2351, 2730, + 3024, 2426, 2669, + 2968, 2509, 2572, + 2881, 2601, 2398, + 2730, 2701, 1955, + 2388, 2807, 0, + 0, 2919, 0, + 0, 3035, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 3291, 2133, 3002, + 3291, 2134, 3002, + 3291, 2135, 3002, + 3291, 2135, 3002, + 3290, 2137, 3001, + 3290, 2138, 3001, + 3290, 2141, 3000, + 3289, 2143, 3000, + 3288, 2147, 2999, + 3288, 2153, 2997, + 3286, 2159, 2996, + 3285, 2168, 2993, + 3283, 2180, 2990, + 3280, 2195, 2986, + 3276, 2215, 2980, + 3270, 2239, 2973, + 3263, 2271, 2962, + 3253, 2309, 2947, + 3240, 2356, 2927, + 3221, 2412, 2899, + 3195, 2478, 2858, + 3157, 2553, 2796, + 3102, 2638, 2698, + 3015, 2730, 2522, + 2864, 2831, 2065, + 2524, 2938, 0, + 0, 3050, 0, + 0, 3166, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 3424, 2257, 3132, + 3424, 2257, 3132, + 3423, 2258, 3132, + 3423, 2258, 3132, + 3423, 2259, 3132, + 3423, 2261, 3131, + 3423, 2262, 3131, + 3422, 2264, 3130, + 3422, 2267, 3130, + 3421, 2271, 3129, + 3420, 2277, 3127, + 3419, 2284, 3126, + 3417, 2293, 3123, + 3415, 2304, 3120, + 3412, 2320, 3116, + 3408, 2340, 3110, + 3403, 2365, 3102, + 3396, 2397, 3092, + 3386, 2436, 3077, + 3373, 2483, 3057, + 3354, 2540, 3028, + 3328, 2606, 2987, + 3290, 2682, 2925, + 3235, 2767, 2826, + 3148, 2860, 2647, + 2997, 2961, 2179, + 2659, 3068, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3666, 0, + 3556, 2382, 3263, + 3556, 2382, 3263, + 3556, 2383, 3262, + 3556, 2383, 3262, + 3556, 2384, 3262, + 3556, 2385, 3262, + 3556, 2386, 3262, + 3555, 2388, 3261, + 3555, 2390, 3261, + 3554, 2393, 3260, + 3554, 2397, 3259, + 3553, 2403, 3258, + 3552, 2410, 3256, + 3550, 2419, 3254, + 3548, 2431, 3250, + 3545, 2446, 3246, + 3541, 2466, 3240, + 3536, 2492, 3233, + 3529, 2524, 3222, + 3519, 2564, 3207, + 3505, 2612, 3187, + 3487, 2669, 3158, + 3461, 2736, 3117, + 3423, 2812, 3054, + 3368, 2897, 2955, + 3281, 2991, 2775, + 3131, 3092, 2297, + 2794, 3199, 0, + 0, 3312, 0, + 0, 3429, 0, + 0, 3550, 0, + 0, 3673, 0, + 3689, 2509, 3394, + 3689, 2509, 3393, + 3689, 2510, 3393, + 3689, 2510, 3393, + 3688, 2511, 3393, + 3688, 2511, 3393, + 3688, 2512, 3393, + 3688, 2514, 3392, + 3688, 2515, 3392, + 3687, 2518, 3392, + 3687, 2521, 3391, + 3686, 2525, 3390, + 3685, 2530, 3389, + 3684, 2537, 3387, + 3682, 2546, 3384, + 3680, 2559, 3381, + 3677, 2574, 3377, + 3673, 2595, 3371, + 3668, 2620, 3363, + 3661, 2653, 3353, + 3651, 2692, 3338, + 3638, 2741, 3318, + 3619, 2798, 3289, + 3593, 2865, 3247, + 3556, 2942, 3184, + 3500, 3028, 3084, + 3413, 3122, 2903, + 3264, 3223, 2419, + 2928, 3331, 0, + 0, 3443, 0, + 0, 3561, 0, + 0, 3681, 0, + 3821, 2637, 3525, + 3821, 2638, 3525, + 3821, 2638, 3525, + 3821, 2638, 3525, + 3821, 2639, 3524, + 3821, 2639, 3524, + 3821, 2640, 3524, + 3821, 2641, 3524, + 3820, 2642, 3524, + 3820, 2644, 3523, + 3820, 2646, 3523, + 3819, 2649, 3522, + 3818, 2653, 3521, + 3818, 2659, 3520, + 3816, 2666, 3518, + 3815, 2675, 3516, + 3813, 2687, 3512, + 3810, 2703, 3508, + 3806, 2724, 3502, + 3801, 2750, 3494, + 3793, 2782, 3484, + 3784, 2822, 3469, + 3770, 2871, 3448, + 3752, 2929, 3420, + 3725, 2996, 3378, + 3688, 3073, 3315, + 3633, 3159, 3215, + 3546, 3253, 3032, + 3396, 3354, 2543, + 3061, 3462, 0, + 0, 3575, 0, + 0, 3692, 0, + 3953, 2767, 3656, + 3953, 2767, 3656, + 3953, 2767, 3656, + 3953, 2767, 3656, + 3953, 2768, 3656, + 3953, 2768, 3656, + 3953, 2769, 3656, + 3953, 2769, 3656, + 3953, 2770, 3655, + 3953, 2772, 3655, + 3952, 2773, 3655, + 3952, 2776, 3654, + 3951, 2779, 3653, + 3951, 2783, 3652, + 3950, 2788, 3651, + 3949, 2795, 3649, + 3947, 2805, 3647, + 3945, 2817, 3644, + 3942, 2833, 3639, + 3938, 2854, 3634, + 3933, 2880, 3626, + 3926, 2912, 3615, + 3916, 2952, 3600, + 3902, 3001, 3580, + 3884, 3059, 3551, + 3858, 3127, 3509, + 3820, 3204, 3446, + 3765, 3290, 3345, + 3678, 3384, 3162, + 3529, 3486, 2669, + 3194, 3594, 0, + 0, 3707, 0, + 4086, 2897, 3788, + 4086, 2897, 3788, + 4086, 2897, 3788, + 4086, 2897, 3788, + 4086, 2897, 3788, + 4085, 2898, 3788, + 4085, 2898, 3787, + 4085, 2899, 3787, + 4085, 2899, 3787, + 4085, 2900, 3787, + 4085, 2902, 3787, + 4085, 2903, 3786, + 4084, 2906, 3786, + 4084, 2909, 3785, + 4083, 2913, 3784, + 4082, 2918, 3783, + 4081, 2926, 3781, + 4079, 2935, 3779, + 4077, 2947, 3775, + 4074, 2963, 3771, + 4070, 2984, 3765, + 4065, 3010, 3757, + 4058, 3043, 3747, + 4048, 3083, 3732, + 4035, 3132, 3711, + 4016, 3190, 3682, + 3990, 3258, 3640, + 3953, 3335, 3577, + 3897, 3421, 3476, + 3811, 3516, 3293, + 3661, 3617, 2796, + 3327, 3725, 0, + 4095, 3027, 3919, + 4095, 3027, 3919, + 4095, 3027, 3919, + 4095, 3027, 3919, + 4095, 3028, 3919, + 4095, 3028, 3919, + 4095, 3028, 3919, + 4095, 3029, 3919, + 4095, 3029, 3919, + 4095, 3030, 3919, + 4095, 3031, 3919, + 4095, 3032, 3918, + 4095, 3034, 3918, + 4095, 3036, 3917, + 4095, 3039, 3917, + 4095, 3044, 3916, + 4095, 3049, 3914, + 4095, 3056, 3913, + 4095, 3066, 3910, + 4095, 3078, 3907, + 4095, 3094, 3903, + 4095, 3115, 3897, + 4095, 3141, 3889, + 4095, 3174, 3878, + 4095, 3214, 3863, + 4095, 3263, 3843, + 4095, 3321, 3814, + 4095, 3389, 3772, + 4085, 3467, 3709, + 4030, 3553, 3608, + 3943, 3647, 3424, + 3794, 3749, 2925, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3159, 4051, + 4095, 3159, 4051, + 4095, 3159, 4051, + 4095, 3160, 4051, + 4095, 3160, 4051, + 4095, 3161, 4051, + 4095, 3162, 4050, + 4095, 3163, 4050, + 4095, 3165, 4050, + 4095, 3167, 4049, + 4095, 3170, 4048, + 4095, 3175, 4047, + 4095, 3180, 4046, + 4095, 3187, 4044, + 4095, 3197, 4042, + 4095, 3209, 4039, + 4095, 3225, 4035, + 4095, 3246, 4029, + 4095, 3272, 4021, + 4095, 3305, 4010, + 4095, 3346, 3995, + 4095, 3395, 3975, + 4095, 3453, 3946, + 4095, 3521, 3903, + 4095, 3598, 3840, + 4095, 3685, 3739, + 4075, 3779, 3555, + 0, 1092, 1347, + 0, 1097, 1342, + 0, 1104, 1336, + 0, 1112, 1327, + 0, 1124, 1315, + 0, 1139, 1298, + 0, 1159, 1275, + 0, 1183, 1242, + 0, 1215, 1193, + 0, 1253, 1119, + 0, 1300, 996, + 0, 1356, 751, + 0, 1422, 0, + 0, 1497, 0, + 0, 1581, 0, + 0, 1674, 0, + 0, 1774, 0, + 0, 1881, 0, + 0, 1993, 0, + 0, 2110, 0, + 0, 2230, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 0, 1093, 1354, + 0, 1098, 1350, + 0, 1105, 1343, + 0, 1114, 1335, + 0, 1126, 1323, + 0, 1141, 1306, + 0, 1160, 1283, + 0, 1185, 1251, + 0, 1216, 1203, + 0, 1254, 1131, + 0, 1301, 1011, + 0, 1357, 777, + 0, 1423, 0, + 0, 1498, 0, + 0, 1582, 0, + 0, 1674, 0, + 0, 1775, 0, + 0, 1881, 0, + 0, 1993, 0, + 0, 2110, 0, + 0, 2230, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 0, 1096, 1364, + 0, 1101, 1359, + 0, 1107, 1353, + 0, 1116, 1344, + 0, 1128, 1333, + 0, 1143, 1317, + 0, 1162, 1294, + 0, 1187, 1262, + 0, 1218, 1216, + 0, 1256, 1146, + 0, 1303, 1031, + 0, 1359, 809, + 0, 1424, 0, + 0, 1499, 0, + 0, 1583, 0, + 0, 1675, 0, + 0, 1775, 0, + 0, 1882, 0, + 0, 1994, 0, + 0, 2110, 0, + 0, 2230, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 0, 1099, 1376, + 0, 1104, 1371, + 0, 1110, 1365, + 0, 1119, 1357, + 0, 1131, 1346, + 0, 1146, 1330, + 0, 1165, 1308, + 0, 1189, 1278, + 0, 1220, 1233, + 0, 1258, 1165, + 0, 1305, 1056, + 0, 1360, 850, + 0, 1425, 185, + 0, 1500, 0, + 0, 1584, 0, + 0, 1676, 0, + 0, 1776, 0, + 0, 1882, 0, + 0, 1994, 0, + 0, 2110, 0, + 0, 2230, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 0, 1103, 1392, + 0, 1108, 1387, + 0, 1114, 1381, + 0, 1123, 1373, + 0, 1135, 1363, + 0, 1149, 1348, + 0, 1168, 1327, + 0, 1193, 1297, + 0, 1223, 1255, + 0, 1261, 1190, + 0, 1307, 1087, + 0, 1363, 898, + 0, 1427, 365, + 0, 1502, 0, + 0, 1585, 0, + 0, 1677, 0, + 0, 1777, 0, + 0, 1883, 0, + 0, 1995, 0, + 0, 2111, 0, + 0, 2231, 0, + 0, 2354, 0, + 0, 2479, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 0, 1108, 1412, + 0, 1113, 1408, + 0, 1120, 1402, + 0, 1128, 1395, + 0, 1140, 1384, + 0, 1154, 1370, + 0, 1173, 1350, + 0, 1197, 1322, + 0, 1227, 1282, + 0, 1265, 1222, + 0, 1311, 1126, + 0, 1366, 956, + 0, 1430, 530, + 0, 1504, 0, + 0, 1587, 0, + 0, 1679, 0, + 0, 1778, 0, + 0, 1884, 0, + 0, 1995, 0, + 0, 2112, 0, + 0, 2231, 0, + 0, 2354, 0, + 0, 2479, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 0, 1115, 1438, + 0, 1120, 1434, + 0, 1127, 1429, + 0, 1135, 1421, + 0, 1146, 1412, + 0, 1161, 1398, + 0, 1179, 1380, + 0, 1203, 1353, + 0, 1233, 1316, + 0, 1270, 1260, + 0, 1315, 1173, + 0, 1370, 1023, + 0, 1434, 686, + 0, 1507, 0, + 0, 1590, 0, + 0, 1681, 0, + 0, 1780, 0, + 0, 1885, 0, + 0, 1996, 0, + 0, 2112, 0, + 0, 2232, 0, + 0, 2354, 0, + 0, 2479, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 503, 1125, 1470, + 461, 1130, 1467, + 397, 1136, 1462, + 296, 1144, 1455, + 111, 1155, 1446, + 0, 1169, 1433, + 0, 1188, 1416, + 0, 1211, 1392, + 0, 1240, 1358, + 0, 1277, 1307, + 0, 1322, 1230, + 0, 1375, 1100, + 0, 1438, 834, + 0, 1511, 0, + 0, 1593, 0, + 0, 1683, 0, + 0, 1782, 0, + 0, 1887, 0, + 0, 1998, 0, + 0, 2113, 0, + 0, 2233, 0, + 0, 2355, 0, + 0, 2480, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2863, 0, + 0, 2992, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 919, 1137, 1510, + 902, 1142, 1507, + 879, 1148, 1502, + 847, 1156, 1496, + 799, 1167, 1488, + 726, 1180, 1477, + 606, 1198, 1461, + 371, 1221, 1439, + 0, 1250, 1409, + 0, 1286, 1364, + 0, 1330, 1296, + 0, 1382, 1186, + 0, 1444, 978, + 0, 1516, 303, + 0, 1597, 0, + 0, 1687, 0, + 0, 1785, 0, + 0, 1889, 0, + 0, 2000, 0, + 0, 2115, 0, + 0, 2234, 0, + 0, 2356, 0, + 0, 2480, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2863, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3647, 0, + 1186, 1153, 1559, + 1177, 1158, 1556, + 1165, 1164, 1552, + 1148, 1171, 1546, + 1124, 1182, 1539, + 1090, 1195, 1529, + 1039, 1212, 1515, + 962, 1234, 1496, + 834, 1262, 1468, + 572, 1297, 1429, + 0, 1340, 1371, + 0, 1392, 1280, + 0, 1453, 1119, + 0, 1523, 738, + 0, 1603, 0, + 0, 1692, 0, + 0, 1789, 0, + 0, 1892, 0, + 0, 2002, 0, + 0, 2117, 0, + 0, 2235, 0, + 0, 2357, 0, + 0, 2481, 0, + 0, 2607, 0, + 0, 2735, 0, + 0, 2863, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3647, 0, + 1398, 1174, 1617, + 1393, 1178, 1614, + 1385, 1184, 1610, + 1375, 1191, 1606, + 1360, 1201, 1599, + 1340, 1214, 1590, + 1312, 1230, 1578, + 1271, 1251, 1561, + 1211, 1278, 1538, + 1114, 1312, 1505, + 942, 1354, 1456, + 504, 1404, 1382, + 0, 1463, 1258, + 0, 1532, 1012, + 0, 1611, 0, + 0, 1698, 0, + 0, 1794, 0, + 0, 1896, 0, + 0, 2005, 0, + 0, 2119, 0, + 0, 2237, 0, + 0, 2358, 0, + 0, 2482, 0, + 0, 2608, 0, + 0, 2735, 0, + 0, 2864, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3647, 0, + 1582, 1200, 1684, + 1579, 1204, 1682, + 1573, 1209, 1679, + 1567, 1216, 1674, + 1557, 1225, 1669, + 1544, 1237, 1661, + 1527, 1253, 1651, + 1502, 1273, 1637, + 1466, 1299, 1617, + 1414, 1331, 1589, + 1332, 1371, 1549, + 1195, 1420, 1489, + 903, 1477, 1395, + 0, 1544, 1226, + 0, 1621, 810, + 0, 1707, 0, + 0, 1801, 0, + 0, 1902, 0, + 0, 2010, 0, + 0, 2123, 0, + 0, 2240, 0, + 0, 2360, 0, + 0, 2484, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 1750, 1232, 1761, + 1747, 1236, 1759, + 1744, 1241, 1756, + 1739, 1248, 1753, + 1732, 1256, 1748, + 1724, 1268, 1742, + 1712, 1282, 1733, + 1695, 1301, 1721, + 1672, 1326, 1705, + 1640, 1356, 1682, + 1592, 1394, 1650, + 1520, 1440, 1602, + 1400, 1495, 1530, + 1165, 1560, 1412, + 102, 1634, 1180, + 0, 1718, 189, + 0, 1809, 0, + 0, 1909, 0, + 0, 2015, 0, + 0, 2127, 0, + 0, 2243, 0, + 0, 2363, 0, + 0, 2486, 0, + 0, 2611, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 1906, 1272, 1846, + 1905, 1276, 1845, + 1902, 1280, 1843, + 1899, 1286, 1840, + 1894, 1294, 1836, + 1888, 1305, 1831, + 1880, 1319, 1824, + 1869, 1336, 1814, + 1853, 1359, 1801, + 1831, 1387, 1782, + 1801, 1422, 1757, + 1756, 1466, 1720, + 1689, 1518, 1665, + 1580, 1580, 1580, + 1375, 1651, 1434, + 723, 1732, 1111, + 0, 1821, 0, + 0, 1918, 0, + 0, 2023, 0, + 0, 2133, 0, + 0, 2248, 0, + 0, 2366, 0, + 0, 2488, 0, + 0, 2613, 0, + 0, 2739, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2056, 1321, 1941, + 2055, 1324, 1939, + 2053, 1328, 1938, + 2051, 1334, 1935, + 2047, 1341, 1932, + 2043, 1350, 1928, + 2037, 1363, 1922, + 2029, 1379, 1914, + 2018, 1399, 1904, + 2003, 1425, 1889, + 1983, 1458, 1869, + 1953, 1498, 1840, + 1911, 1547, 1799, + 1847, 1605, 1737, + 1745, 1673, 1639, + 1558, 1750, 1461, + 1037, 1836, 997, + 0, 1931, 0, + 0, 2032, 0, + 0, 2140, 0, + 0, 2254, 0, + 0, 2371, 0, + 0, 2492, 0, + 0, 2615, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2996, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2201, 1379, 2042, + 2200, 1382, 2041, + 2199, 1386, 2040, + 2197, 1390, 2038, + 2195, 1397, 2035, + 2191, 1405, 2032, + 2187, 1416, 2027, + 2182, 1430, 2021, + 2174, 1449, 2013, + 2163, 1472, 2001, + 2149, 1502, 1986, + 2129, 1538, 1964, + 2100, 1583, 1933, + 2059, 1637, 1887, + 1998, 1701, 1819, + 1900, 1774, 1707, + 1724, 1856, 1496, + 1270, 1947, 780, + 0, 2045, 0, + 0, 2151, 0, + 0, 2262, 0, + 0, 2377, 0, + 0, 2497, 0, + 0, 2619, 0, + 0, 2744, 0, + 0, 2870, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 2342, 1447, 2150, + 2342, 1449, 2149, + 2341, 1452, 2148, + 2339, 1456, 2146, + 2338, 1462, 2145, + 2335, 1469, 2142, + 2332, 1479, 2138, + 2328, 1491, 2133, + 2323, 1507, 2127, + 2315, 1528, 2118, + 2305, 1554, 2106, + 2290, 1587, 2089, + 2271, 1628, 2066, + 2243, 1677, 2032, + 2203, 1735, 1984, + 2143, 1803, 1909, + 2049, 1881, 1785, + 1880, 1967, 1538, + 1465, 2062, 3, + 0, 2164, 0, + 0, 2272, 0, + 0, 2385, 0, + 0, 2503, 0, + 0, 2624, 0, + 0, 2747, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3128, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2481, 1524, 2263, + 2481, 1526, 2262, + 2480, 1528, 2261, + 2479, 1532, 2260, + 2478, 1537, 2259, + 2476, 1543, 2257, + 2474, 1551, 2254, + 2471, 1561, 2250, + 2467, 1575, 2245, + 2461, 1593, 2238, + 2454, 1616, 2229, + 2444, 1645, 2216, + 2430, 1681, 2199, + 2410, 1725, 2174, + 2383, 1778, 2139, + 2344, 1840, 2087, + 2285, 1912, 2007, + 2193, 1993, 1872, + 2030, 2083, 1589, + 1639, 2181, 0, + 0, 2285, 0, + 0, 2396, 0, + 0, 2511, 0, + 0, 2630, 0, + 0, 2752, 0, + 0, 2876, 0, + 0, 3003, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 2618, 1610, 2380, + 2618, 1611, 2380, + 2617, 1614, 2379, + 2617, 1617, 2378, + 2616, 1620, 2377, + 2615, 1626, 2375, + 2613, 1632, 2373, + 2611, 1641, 2370, + 2608, 1653, 2367, + 2604, 1668, 2361, + 2598, 1687, 2354, + 2591, 1712, 2345, + 2581, 1743, 2331, + 2567, 1782, 2313, + 2548, 1829, 2287, + 2521, 1885, 2251, + 2482, 1950, 2197, + 2424, 2026, 2112, + 2333, 2110, 1967, + 2174, 2202, 1650, + 1800, 2303, 0, + 0, 2409, 0, + 0, 2522, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 2754, 1704, 2501, + 2754, 1705, 2500, + 2754, 1707, 2500, + 2753, 1710, 2499, + 2752, 1713, 2498, + 2751, 1717, 2497, + 2750, 1723, 2496, + 2749, 1730, 2493, + 2746, 1739, 2490, + 2743, 1752, 2486, + 2739, 1768, 2481, + 2734, 1789, 2474, + 2727, 1815, 2464, + 2717, 1849, 2450, + 2703, 1889, 2432, + 2684, 1939, 2405, + 2657, 1997, 2367, + 2619, 2066, 2311, + 2562, 2143, 2223, + 2472, 2230, 2069, + 2315, 2325, 1720, + 1952, 2427, 0, + 0, 2535, 0, + 0, 2649, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3011, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3392, 0, + 0, 3522, 0, + 0, 3652, 0, + 2889, 1806, 2624, + 2889, 1807, 2624, + 2889, 1808, 2624, + 2888, 1810, 2623, + 2888, 1813, 2622, + 2887, 1816, 2621, + 2886, 1821, 2620, + 2885, 1826, 2619, + 2883, 1834, 2616, + 2881, 1844, 2613, + 2878, 1858, 2609, + 2874, 1875, 2604, + 2869, 1897, 2596, + 2861, 1925, 2586, + 2852, 1959, 2572, + 2838, 2002, 2553, + 2819, 2054, 2526, + 2792, 2114, 2487, + 2754, 2185, 2429, + 2698, 2265, 2338, + 2609, 2353, 2178, + 2454, 2450, 1799, + 2099, 2553, 0, + 0, 2663, 0, + 0, 2777, 0, + 0, 2896, 0, + 0, 3018, 0, + 0, 3142, 0, + 0, 3268, 0, + 0, 3395, 0, + 0, 3524, 0, + 0, 3653, 0, + 3023, 1914, 2750, + 3023, 1915, 2749, + 3023, 1916, 2749, + 3023, 1917, 2749, + 3022, 1919, 2748, + 3022, 1922, 2748, + 3021, 1925, 2747, + 3020, 1930, 2745, + 3019, 1936, 2744, + 3017, 1944, 2741, + 3015, 1955, 2738, + 3012, 1969, 2734, + 3008, 1987, 2729, + 3003, 2010, 2721, + 2996, 2039, 2711, + 2986, 2075, 2697, + 2972, 2119, 2677, + 2953, 2172, 2650, + 2927, 2235, 2610, + 2889, 2307, 2551, + 2833, 2388, 2457, + 2744, 2478, 2291, + 2591, 2576, 1888, + 2242, 2681, 0, + 0, 2792, 0, + 0, 2907, 0, + 0, 3026, 0, + 0, 3148, 0, + 0, 3273, 0, + 0, 3399, 0, + 0, 3527, 0, + 0, 3655, 0, + 3157, 2027, 2877, + 3157, 2028, 2877, + 3157, 2028, 2876, + 3156, 2030, 2876, + 3156, 2031, 2876, + 3156, 2033, 2875, + 3155, 2036, 2874, + 3155, 2040, 2874, + 3154, 2045, 2872, + 3152, 2051, 2871, + 3151, 2059, 2868, + 3149, 2071, 2865, + 3146, 2085, 2861, + 3142, 2104, 2855, + 3136, 2127, 2848, + 3129, 2157, 2837, + 3119, 2194, 2823, + 3106, 2240, 2803, + 3087, 2294, 2775, + 3061, 2358, 2735, + 3023, 2431, 2675, + 2967, 2514, 2579, + 2879, 2605, 2409, + 2727, 2704, 1984, + 2382, 2810, 0, + 0, 2921, 0, + 0, 3037, 0, + 0, 3157, 0, + 0, 3279, 0, + 0, 3404, 0, + 0, 3530, 0, + 0, 3658, 0, + 3290, 2144, 3005, + 3290, 2145, 3005, + 3290, 2145, 3005, + 3290, 2146, 3005, + 3290, 2148, 3004, + 3289, 2149, 3004, + 3289, 2151, 3003, + 3288, 2154, 3003, + 3288, 2158, 3002, + 3287, 2163, 3000, + 3286, 2170, 2999, + 3284, 2178, 2996, + 3282, 2190, 2993, + 3279, 2205, 2989, + 3275, 2224, 2983, + 3270, 2248, 2976, + 3262, 2279, 2965, + 3253, 2317, 2951, + 3239, 2363, 2931, + 3220, 2418, 2902, + 3194, 2483, 2862, + 3156, 2558, 2801, + 3101, 2641, 2704, + 3013, 2733, 2530, + 2862, 2833, 2087, + 2520, 2939, 0, + 0, 3051, 0, + 0, 3168, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 3423, 2265, 3134, + 3423, 2265, 3134, + 3423, 2266, 3134, + 3423, 2267, 3134, + 3423, 2268, 3134, + 3422, 2269, 3133, + 3422, 2270, 3133, + 3422, 2273, 3132, + 3421, 2276, 3132, + 3421, 2279, 3131, + 3420, 2285, 3130, + 3418, 2291, 3128, + 3417, 2300, 3125, + 3415, 2312, 3122, + 3412, 2327, 3118, + 3408, 2347, 3112, + 3403, 2371, 3105, + 3395, 2403, 3094, + 3386, 2441, 3080, + 3372, 2488, 3059, + 3353, 2545, 3031, + 3327, 2610, 2990, + 3290, 2685, 2928, + 3234, 2770, 2830, + 3147, 2863, 2654, + 2996, 2963, 2197, + 2656, 3070, 0, + 0, 3182, 0, + 0, 3298, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 3556, 2388, 3264, + 3556, 2389, 3264, + 3556, 2389, 3264, + 3556, 2390, 3264, + 3555, 2390, 3264, + 3555, 2391, 3264, + 3555, 2393, 3263, + 3555, 2394, 3263, + 3554, 2397, 3262, + 3554, 2400, 3262, + 3553, 2403, 3261, + 3552, 2409, 3259, + 3551, 2416, 3258, + 3550, 2425, 3255, + 3547, 2437, 3252, + 3544, 2452, 3248, + 3541, 2472, 3242, + 3535, 2497, 3234, + 3528, 2529, 3224, + 3518, 2568, 3209, + 3505, 2615, 3189, + 3486, 2672, 3160, + 3460, 2738, 3119, + 3422, 2814, 3057, + 3367, 2899, 2958, + 3280, 2992, 2780, + 3130, 3093, 2311, + 2791, 3200, 0, + 0, 3313, 0, + 0, 3430, 0, + 0, 3550, 0, + 0, 3673, 0, + 3688, 2514, 3395, + 3688, 2514, 3395, + 3688, 2515, 3395, + 3688, 2515, 3395, + 3688, 2515, 3394, + 3688, 2516, 3394, + 3688, 2517, 3394, + 3688, 2518, 3394, + 3687, 2520, 3393, + 3687, 2522, 3393, + 3686, 2525, 3392, + 3686, 2529, 3391, + 3685, 2535, 3390, + 3684, 2542, 3388, + 3682, 2551, 3386, + 3680, 2563, 3383, + 3677, 2579, 3378, + 3673, 2599, 3373, + 3668, 2624, 3365, + 3661, 2656, 3354, + 3651, 2696, 3339, + 3637, 2744, 3319, + 3619, 2801, 3290, + 3593, 2868, 3249, + 3555, 2944, 3186, + 3500, 3029, 3087, + 3413, 3123, 2907, + 3263, 3224, 2429, + 2926, 3331, 0, + 0, 3444, 0, + 0, 3561, 0, + 0, 3682, 0, + 3821, 2641, 3526, + 3821, 2641, 3526, + 3821, 2641, 3526, + 3821, 2642, 3526, + 3821, 2642, 3525, + 3821, 2643, 3525, + 3820, 2643, 3525, + 3820, 2644, 3525, + 3820, 2646, 3525, + 3820, 2647, 3524, + 3819, 2650, 3524, + 3819, 2653, 3523, + 3818, 2657, 3522, + 3817, 2662, 3521, + 3816, 2669, 3519, + 3815, 2679, 3517, + 3812, 2691, 3513, + 3809, 2706, 3509, + 3806, 2727, 3503, + 3800, 2752, 3495, + 3793, 2785, 3485, + 3783, 2825, 3470, + 3770, 2873, 3450, + 3751, 2930, 3421, + 3725, 2998, 3379, + 3688, 3074, 3316, + 3632, 3160, 3216, + 3546, 3254, 3035, + 3396, 3355, 2551, + 3060, 3463, 0, + 0, 3576, 0, + 0, 3693, 0, + 3953, 2769, 3657, + 3953, 2770, 3657, + 3953, 2770, 3657, + 3953, 2770, 3657, + 3953, 2770, 3657, + 3953, 2771, 3657, + 3953, 2771, 3656, + 3953, 2772, 3656, + 3953, 2773, 3656, + 3952, 2774, 3656, + 3952, 2776, 3655, + 3952, 2778, 3655, + 3951, 2781, 3654, + 3951, 2785, 3653, + 3950, 2791, 3652, + 3948, 2798, 3650, + 3947, 2807, 3648, + 3945, 2820, 3644, + 3942, 2835, 3640, + 3938, 2856, 3634, + 3933, 2882, 3627, + 3925, 2914, 3616, + 3916, 2954, 3601, + 3902, 3003, 3581, + 3884, 3061, 3552, + 3858, 3128, 3510, + 3820, 3205, 3447, + 3765, 3291, 3347, + 3678, 3385, 3165, + 3528, 3486, 2675, + 3193, 3594, 0, + 0, 3707, 0, + 4085, 2899, 3788, + 4085, 2899, 3788, + 4085, 2899, 3788, + 4085, 2899, 3788, + 4085, 2899, 3788, + 4085, 2900, 3788, + 4085, 2900, 3788, + 4085, 2901, 3788, + 4085, 2901, 3788, + 4085, 2902, 3787, + 4085, 2904, 3787, + 4084, 2905, 3787, + 4084, 2908, 3786, + 4084, 2911, 3785, + 4083, 2915, 3784, + 4082, 2920, 3783, + 4081, 2928, 3781, + 4079, 2937, 3779, + 4077, 2949, 3776, + 4074, 2965, 3772, + 4070, 2986, 3766, + 4065, 3012, 3758, + 4058, 3044, 3747, + 4048, 3084, 3732, + 4035, 3133, 3712, + 4016, 3191, 3683, + 3990, 3259, 3641, + 3952, 3336, 3578, + 3897, 3422, 3477, + 3811, 3516, 3295, + 3661, 3618, 2801, + 3326, 3726, 0, + 4095, 3029, 3920, + 4095, 3029, 3920, + 4095, 3029, 3920, + 4095, 3029, 3920, + 4095, 3029, 3920, + 4095, 3029, 3920, + 4095, 3030, 3920, + 4095, 3030, 3920, + 4095, 3031, 3919, + 4095, 3031, 3919, + 4095, 3032, 3919, + 4095, 3034, 3919, + 4095, 3035, 3918, + 4095, 3038, 3918, + 4095, 3041, 3917, + 4095, 3045, 3916, + 4095, 3050, 3915, + 4095, 3058, 3913, + 4095, 3067, 3911, + 4095, 3079, 3907, + 4095, 3095, 3903, + 4095, 3116, 3897, + 4095, 3142, 3889, + 4095, 3175, 3879, + 4095, 3215, 3864, + 4095, 3264, 3843, + 4095, 3322, 3814, + 4095, 3390, 3772, + 4085, 3467, 3709, + 4029, 3553, 3609, + 3943, 3648, 3425, + 3793, 3750, 2928, + 4095, 3159, 4052, + 4095, 3159, 4052, + 4095, 3159, 4052, + 4095, 3159, 4052, + 4095, 3160, 4052, + 4095, 3160, 4051, + 4095, 3160, 4051, + 4095, 3160, 4051, + 4095, 3161, 4051, + 4095, 3161, 4051, + 4095, 3162, 4051, + 4095, 3163, 4051, + 4095, 3164, 4050, + 4095, 3166, 4050, + 4095, 3168, 4049, + 4095, 3171, 4049, + 4095, 3176, 4048, + 4095, 3181, 4046, + 4095, 3188, 4045, + 4095, 3198, 4042, + 4095, 3210, 4039, + 4095, 3226, 4035, + 4095, 3247, 4029, + 4095, 3273, 4021, + 4095, 3306, 4010, + 4095, 3346, 3996, + 4095, 3395, 3975, + 4095, 3454, 3946, + 4095, 3521, 3904, + 4095, 3599, 3841, + 4095, 3685, 3740, + 4075, 3780, 3556, + 0, 1218, 1478, + 0, 1222, 1474, + 0, 1228, 1469, + 0, 1234, 1463, + 0, 1243, 1454, + 0, 1255, 1441, + 0, 1270, 1424, + 0, 1290, 1401, + 0, 1314, 1367, + 0, 1346, 1318, + 0, 1384, 1242, + 0, 1431, 1116, + 0, 1488, 863, + 0, 1553, 0, + 0, 1629, 0, + 0, 1713, 0, + 0, 1806, 0, + 0, 1906, 0, + 0, 2013, 0, + 0, 2125, 0, + 0, 2242, 0, + 0, 2362, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1220, 1483, + 0, 1224, 1479, + 0, 1229, 1475, + 0, 1236, 1468, + 0, 1245, 1459, + 0, 1256, 1447, + 0, 1271, 1430, + 0, 1291, 1407, + 0, 1316, 1374, + 0, 1347, 1325, + 0, 1385, 1251, + 0, 1432, 1128, + 0, 1488, 883, + 0, 1554, 0, + 0, 1629, 0, + 0, 1713, 0, + 0, 1806, 0, + 0, 1906, 0, + 0, 2013, 0, + 0, 2125, 0, + 0, 2242, 0, + 0, 2362, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1222, 1490, + 0, 1225, 1486, + 0, 1231, 1482, + 0, 1237, 1475, + 0, 1246, 1467, + 0, 1258, 1455, + 0, 1273, 1438, + 0, 1292, 1415, + 0, 1317, 1383, + 0, 1348, 1335, + 0, 1387, 1263, + 0, 1433, 1143, + 0, 1489, 909, + 0, 1555, 0, + 0, 1630, 0, + 0, 1714, 0, + 0, 1807, 0, + 0, 1907, 0, + 0, 2013, 0, + 0, 2125, 0, + 0, 2242, 0, + 0, 2362, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1224, 1499, + 0, 1228, 1496, + 0, 1233, 1491, + 0, 1240, 1485, + 0, 1248, 1476, + 0, 1260, 1465, + 0, 1275, 1449, + 0, 1294, 1426, + 0, 1319, 1395, + 0, 1350, 1348, + 0, 1388, 1278, + 0, 1435, 1163, + 0, 1491, 942, + 0, 1556, 111, + 0, 1631, 0, + 0, 1715, 0, + 0, 1807, 0, + 0, 1907, 0, + 0, 2014, 0, + 0, 2126, 0, + 0, 2242, 0, + 0, 2362, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1227, 1511, + 0, 1231, 1508, + 0, 1236, 1503, + 0, 1243, 1497, + 0, 1251, 1489, + 0, 1263, 1478, + 0, 1278, 1462, + 0, 1297, 1441, + 0, 1321, 1410, + 0, 1352, 1365, + 0, 1390, 1298, + 0, 1437, 1188, + 0, 1492, 982, + 0, 1557, 317, + 0, 1632, 0, + 0, 1716, 0, + 0, 1808, 0, + 0, 1908, 0, + 0, 2014, 0, + 0, 2126, 0, + 0, 2243, 0, + 0, 2363, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1231, 1527, + 0, 1235, 1524, + 0, 1240, 1519, + 0, 1247, 1514, + 0, 1255, 1506, + 0, 1267, 1495, + 0, 1281, 1480, + 0, 1300, 1459, + 0, 1325, 1429, + 0, 1355, 1387, + 0, 1393, 1322, + 0, 1439, 1219, + 0, 1495, 1030, + 0, 1559, 497, + 0, 1634, 0, + 0, 1717, 0, + 0, 1809, 0, + 0, 1909, 0, + 0, 2015, 0, + 0, 2127, 0, + 0, 2243, 0, + 0, 2363, 0, + 0, 2486, 0, + 0, 2611, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1237, 1547, + 0, 1240, 1544, + 0, 1245, 1540, + 0, 1252, 1534, + 0, 1260, 1527, + 0, 1272, 1516, + 0, 1286, 1502, + 0, 1305, 1482, + 0, 1329, 1454, + 0, 1360, 1414, + 0, 1397, 1354, + 0, 1443, 1258, + 0, 1498, 1088, + 0, 1562, 662, + 0, 1636, 0, + 0, 1719, 0, + 0, 1811, 0, + 0, 1910, 0, + 0, 2016, 0, + 0, 2128, 0, + 0, 2244, 0, + 0, 2363, 0, + 0, 2486, 0, + 0, 2611, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3255, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1244, 1573, + 0, 1248, 1570, + 0, 1252, 1566, + 0, 1259, 1561, + 0, 1267, 1554, + 0, 1278, 1544, + 0, 1293, 1530, + 0, 1311, 1512, + 0, 1335, 1486, + 0, 1365, 1448, + 0, 1402, 1392, + 0, 1448, 1306, + 0, 1502, 1155, + 0, 1566, 818, + 0, 1639, 0, + 0, 1722, 0, + 0, 1813, 0, + 0, 1912, 0, + 0, 2017, 0, + 0, 2129, 0, + 0, 2244, 0, + 0, 2364, 0, + 0, 2486, 0, + 0, 2611, 0, + 0, 2738, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3124, 0, + 0, 3255, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 664, 1253, 1605, + 635, 1257, 1602, + 593, 1262, 1599, + 530, 1268, 1594, + 428, 1276, 1587, + 243, 1287, 1578, + 0, 1301, 1566, + 0, 1320, 1548, + 0, 1343, 1524, + 0, 1372, 1490, + 0, 1409, 1440, + 0, 1454, 1362, + 0, 1507, 1232, + 0, 1570, 966, + 0, 1643, 0, + 0, 1725, 0, + 0, 1816, 0, + 0, 1914, 0, + 0, 2019, 0, + 0, 2130, 0, + 0, 2245, 0, + 0, 2365, 0, + 0, 2487, 0, + 0, 2612, 0, + 0, 2738, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3124, 0, + 0, 3255, 0, + 0, 3385, 0, + 0, 3517, 0, + 0, 3648, 0, + 1063, 1266, 1645, + 1051, 1269, 1642, + 1034, 1274, 1639, + 1011, 1280, 1635, + 979, 1288, 1628, + 931, 1299, 1620, + 858, 1313, 1609, + 738, 1330, 1593, + 503, 1353, 1571, + 0, 1382, 1541, + 0, 1418, 1496, + 0, 1462, 1428, + 0, 1514, 1318, + 0, 1577, 1110, + 0, 1648, 435, + 0, 1729, 0, + 0, 1819, 0, + 0, 1917, 0, + 0, 2021, 0, + 0, 2132, 0, + 0, 2247, 0, + 0, 2366, 0, + 0, 2488, 0, + 0, 2612, 0, + 0, 2739, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 1325, 1282, 1693, + 1318, 1285, 1691, + 1309, 1290, 1688, + 1297, 1296, 1684, + 1280, 1303, 1678, + 1256, 1314, 1671, + 1222, 1327, 1661, + 1172, 1344, 1647, + 1095, 1366, 1628, + 966, 1394, 1601, + 704, 1429, 1562, + 0, 1472, 1503, + 0, 1524, 1412, + 0, 1585, 1251, + 0, 1655, 870, + 0, 1735, 0, + 0, 1824, 0, + 0, 1921, 0, + 0, 2024, 0, + 0, 2134, 0, + 0, 2249, 0, + 0, 2367, 0, + 0, 2489, 0, + 0, 2613, 0, + 0, 2739, 0, + 0, 2867, 0, + 0, 2995, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 1535, 1302, 1751, + 1530, 1306, 1749, + 1525, 1310, 1746, + 1517, 1316, 1742, + 1507, 1323, 1738, + 1492, 1333, 1731, + 1472, 1346, 1722, + 1444, 1362, 1710, + 1404, 1384, 1693, + 1343, 1411, 1670, + 1246, 1444, 1637, + 1074, 1486, 1588, + 636, 1536, 1514, + 0, 1595, 1390, + 0, 1664, 1144, + 0, 1743, 0, + 0, 1830, 0, + 0, 1926, 0, + 0, 2029, 0, + 0, 2137, 0, + 0, 2251, 0, + 0, 2369, 0, + 0, 2490, 0, + 0, 2614, 0, + 0, 2740, 0, + 0, 2867, 0, + 0, 2996, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 1717, 1329, 1818, + 1714, 1332, 1816, + 1711, 1336, 1814, + 1706, 1341, 1811, + 1699, 1348, 1806, + 1689, 1357, 1801, + 1676, 1370, 1793, + 1659, 1385, 1783, + 1634, 1406, 1769, + 1598, 1431, 1749, + 1546, 1464, 1721, + 1465, 1503, 1681, + 1327, 1552, 1621, + 1035, 1609, 1527, + 0, 1676, 1358, + 0, 1753, 942, + 0, 1839, 0, + 0, 1933, 0, + 0, 2034, 0, + 0, 2142, 0, + 0, 2255, 0, + 0, 2372, 0, + 0, 2492, 0, + 0, 2616, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 1884, 1361, 1894, + 1882, 1364, 1893, + 1879, 1368, 1891, + 1876, 1373, 1888, + 1871, 1380, 1885, + 1865, 1388, 1880, + 1856, 1400, 1874, + 1844, 1414, 1865, + 1827, 1433, 1853, + 1805, 1458, 1837, + 1772, 1488, 1814, + 1724, 1526, 1782, + 1652, 1572, 1734, + 1532, 1627, 1662, + 1297, 1692, 1544, + 234, 1766, 1313, + 0, 1850, 322, + 0, 1942, 0, + 0, 2041, 0, + 0, 2147, 0, + 0, 2259, 0, + 0, 2375, 0, + 0, 2495, 0, + 0, 2618, 0, + 0, 2743, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3648, 0, + 2040, 1402, 1980, + 2038, 1405, 1979, + 2037, 1408, 1977, + 2034, 1413, 1975, + 2031, 1419, 1972, + 2026, 1427, 1968, + 2020, 1437, 1963, + 2012, 1451, 1956, + 2001, 1468, 1946, + 1985, 1491, 1933, + 1964, 1519, 1914, + 1933, 1555, 1889, + 1888, 1598, 1852, + 1821, 1650, 1797, + 1712, 1712, 1712, + 1507, 1783, 1566, + 855, 1864, 1243, + 0, 1953, 0, + 0, 2051, 0, + 0, 2155, 0, + 0, 2265, 0, + 0, 2380, 0, + 0, 2499, 0, + 0, 2620, 0, + 0, 2745, 0, + 0, 2871, 0, + 0, 2999, 0, + 0, 3127, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 2189, 1451, 2074, + 2188, 1453, 2073, + 2187, 1456, 2071, + 2185, 1461, 2070, + 2183, 1466, 2067, + 2180, 1473, 2064, + 2175, 1483, 2060, + 2169, 1495, 2054, + 2161, 1511, 2046, + 2151, 1531, 2036, + 2136, 1557, 2021, + 2115, 1590, 2001, + 2085, 1630, 1972, + 2043, 1679, 1931, + 1979, 1737, 1869, + 1877, 1805, 1771, + 1690, 1882, 1593, + 1170, 1968, 1129, + 0, 2063, 0, + 0, 2165, 0, + 0, 2273, 0, + 0, 2386, 0, + 0, 2503, 0, + 0, 2624, 0, + 0, 2747, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3128, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2334, 1509, 2175, + 2333, 1511, 2174, + 2332, 1514, 2173, + 2331, 1518, 2172, + 2329, 1522, 2170, + 2327, 1529, 2167, + 2324, 1537, 2164, + 2319, 1548, 2159, + 2314, 1562, 2153, + 2306, 1581, 2145, + 2295, 1604, 2134, + 2281, 1634, 2118, + 2261, 1671, 2096, + 2232, 1716, 2065, + 2191, 1769, 2019, + 2130, 1833, 1951, + 2032, 1906, 1839, + 1856, 1988, 1628, + 1402, 2079, 912, + 0, 2177, 0, + 0, 2283, 0, + 0, 2394, 0, + 0, 2509, 0, + 0, 2629, 0, + 0, 2751, 0, + 0, 2876, 0, + 0, 3002, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 2475, 1577, 2283, + 2474, 1579, 2282, + 2474, 1581, 2281, + 2473, 1584, 2280, + 2472, 1588, 2279, + 2470, 1594, 2277, + 2468, 1601, 2274, + 2464, 1611, 2270, + 2460, 1623, 2266, + 2455, 1639, 2259, + 2447, 1660, 2250, + 2437, 1686, 2238, + 2423, 1719, 2221, + 2403, 1760, 2198, + 2375, 1809, 2165, + 2335, 1867, 2116, + 2275, 1935, 2041, + 2181, 2013, 1917, + 2012, 2099, 1670, + 1597, 2194, 135, + 0, 2296, 0, + 0, 2404, 0, + 0, 2517, 0, + 0, 2635, 0, + 0, 2756, 0, + 0, 2879, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3260, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2614, 1654, 2395, + 2613, 1656, 2395, + 2613, 1658, 2394, + 2612, 1660, 2393, + 2611, 1664, 2392, + 2610, 1669, 2391, + 2608, 1675, 2389, + 2606, 1683, 2386, + 2603, 1694, 2382, + 2599, 1707, 2377, + 2593, 1725, 2370, + 2586, 1748, 2361, + 2576, 1777, 2348, + 2562, 1813, 2331, + 2542, 1857, 2306, + 2515, 1910, 2271, + 2476, 1972, 2219, + 2417, 2044, 2139, + 2325, 2125, 2004, + 2162, 2215, 1721, + 1771, 2313, 0, + 0, 2417, 0, + 0, 2528, 0, + 0, 2643, 0, + 0, 2762, 0, + 0, 2884, 0, + 0, 3009, 0, + 0, 3135, 0, + 0, 3263, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 2751, 1741, 2513, + 2750, 1742, 2512, + 2750, 1744, 2512, + 2750, 1746, 2511, + 2749, 1749, 2510, + 2748, 1753, 2509, + 2747, 1758, 2507, + 2745, 1764, 2505, + 2743, 1773, 2502, + 2740, 1785, 2499, + 2736, 1800, 2493, + 2730, 1819, 2486, + 2723, 1844, 2477, + 2713, 1875, 2464, + 2699, 1914, 2445, + 2680, 1961, 2420, + 2653, 2017, 2383, + 2614, 2083, 2329, + 2556, 2158, 2244, + 2466, 2242, 2099, + 2306, 2335, 1782, + 1932, 2435, 0, + 0, 2542, 0, + 0, 2654, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 2887, 1835, 2633, + 2886, 1836, 2633, + 2886, 1838, 2633, + 2886, 1839, 2632, + 2885, 1842, 2631, + 2884, 1845, 2630, + 2884, 1849, 2629, + 2882, 1855, 2628, + 2881, 1862, 2625, + 2878, 1872, 2623, + 2875, 1884, 2619, + 2871, 1900, 2613, + 2866, 1921, 2606, + 2859, 1948, 2596, + 2849, 1981, 2582, + 2835, 2021, 2564, + 2816, 2071, 2537, + 2789, 2130, 2499, + 2751, 2198, 2443, + 2694, 2275, 2355, + 2604, 2362, 2201, + 2447, 2457, 1852, + 2084, 2559, 0, + 0, 2668, 0, + 0, 2781, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3143, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3021, 1937, 2757, + 3021, 1938, 2756, + 3021, 1939, 2756, + 3021, 1940, 2756, + 3020, 1942, 2755, + 3020, 1945, 2754, + 3019, 1948, 2754, + 3018, 1953, 2752, + 3017, 1959, 2751, + 3015, 1966, 2748, + 3013, 1977, 2745, + 3010, 1990, 2741, + 3006, 2007, 2736, + 3001, 2029, 2728, + 2994, 2057, 2718, + 2984, 2092, 2705, + 2970, 2134, 2685, + 2951, 2186, 2658, + 2924, 2247, 2619, + 2886, 2317, 2561, + 2830, 2397, 2470, + 2741, 2485, 2310, + 2586, 2582, 1931, + 2231, 2685, 0, + 0, 2795, 0, + 0, 2910, 0, + 0, 3028, 0, + 0, 3150, 0, + 0, 3274, 0, + 0, 3400, 0, + 0, 3527, 0, + 0, 3656, 0, + 3155, 2045, 2882, + 3155, 2046, 2882, + 3155, 2047, 2882, + 3155, 2048, 2881, + 3155, 2049, 2881, + 3154, 2051, 2880, + 3154, 2054, 2880, + 3153, 2057, 2879, + 3152, 2062, 2877, + 3151, 2068, 2876, + 3149, 2077, 2874, + 3147, 2087, 2870, + 3144, 2101, 2866, + 3140, 2119, 2861, + 3135, 2142, 2853, + 3128, 2171, 2843, + 3118, 2207, 2829, + 3104, 2251, 2809, + 3085, 2304, 2782, + 3059, 2367, 2742, + 3021, 2439, 2683, + 2965, 2520, 2589, + 2877, 2610, 2423, + 2723, 2708, 2020, + 2374, 2813, 0, + 0, 2924, 0, + 0, 3039, 0, + 0, 3158, 0, + 0, 3280, 0, + 0, 3405, 0, + 0, 3531, 0, + 0, 3659, 0, + 3289, 2158, 3009, + 3289, 2159, 3009, + 3289, 2160, 3009, + 3289, 2160, 3009, + 3288, 2162, 3008, + 3288, 2163, 3008, + 3288, 2165, 3007, + 3287, 2168, 3007, + 3287, 2172, 3006, + 3286, 2177, 3004, + 3285, 2183, 3003, + 3283, 2192, 3000, + 3281, 2203, 2997, + 3278, 2217, 2993, + 3274, 2236, 2988, + 3269, 2259, 2980, + 3261, 2289, 2969, + 3251, 2326, 2955, + 3238, 2372, 2935, + 3219, 2426, 2907, + 3193, 2490, 2867, + 3155, 2563, 2807, + 3099, 2646, 2711, + 3011, 2737, 2541, + 2859, 2836, 2116, + 2514, 2942, 0, + 0, 3053, 0, + 0, 3169, 0, + 0, 3289, 0, + 0, 3411, 0, + 0, 3536, 0, + 0, 3662, 0, + 3422, 2276, 3137, + 3422, 2276, 3137, + 3422, 2277, 3137, + 3422, 2278, 3137, + 3422, 2278, 3137, + 3422, 2280, 3136, + 3421, 2281, 3136, + 3421, 2283, 3135, + 3420, 2286, 3135, + 3420, 2290, 3134, + 3419, 2295, 3133, + 3418, 2302, 3131, + 3416, 2310, 3128, + 3414, 2322, 3125, + 3411, 2337, 3121, + 3407, 2356, 3115, + 3402, 2380, 3108, + 3394, 2411, 3097, + 3385, 2449, 3083, + 3371, 2495, 3063, + 3352, 2551, 3035, + 3326, 2615, 2994, + 3289, 2690, 2933, + 3233, 2773, 2836, + 3145, 2866, 2662, + 2994, 2965, 2219, + 2652, 3072, 0, + 0, 3183, 0, + 0, 3300, 0, + 0, 3420, 0, + 0, 3542, 0, + 0, 3667, 0, + 3555, 2397, 3267, + 3555, 2397, 3266, + 3555, 2398, 3266, + 3555, 2398, 3266, + 3555, 2399, 3266, + 3555, 2400, 3266, + 3555, 2401, 3266, + 3554, 2403, 3265, + 3554, 2405, 3265, + 3553, 2408, 3264, + 3553, 2412, 3263, + 3552, 2417, 3262, + 3551, 2423, 3260, + 3549, 2432, 3258, + 3547, 2444, 3254, + 3544, 2459, 3250, + 3540, 2479, 3245, + 3535, 2504, 3237, + 3527, 2535, 3226, + 3518, 2573, 3212, + 3504, 2621, 3191, + 3485, 2677, 3163, + 3459, 2742, 3122, + 3422, 2818, 3060, + 3366, 2902, 2962, + 3279, 2995, 2786, + 3128, 3095, 2329, + 2788, 3202, 0, + 0, 3314, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 3688, 2520, 3396, + 3688, 2521, 3396, + 3688, 2521, 3396, + 3688, 2521, 3396, + 3688, 2522, 3396, + 3688, 2522, 3396, + 3687, 2523, 3396, + 3687, 2525, 3395, + 3687, 2526, 3395, + 3687, 2529, 3394, + 3686, 2532, 3394, + 3685, 2536, 3393, + 3684, 2541, 3391, + 3683, 2548, 3390, + 3682, 2557, 3387, + 3679, 2569, 3384, + 3677, 2584, 3380, + 3673, 2604, 3374, + 3667, 2629, 3366, + 3660, 2661, 3356, + 3650, 2700, 3341, + 3637, 2748, 3321, + 3618, 2804, 3292, + 3592, 2871, 3251, + 3555, 2946, 3189, + 3499, 3031, 3090, + 3412, 3125, 2912, + 3262, 3225, 2443, + 2923, 3332, 0, + 0, 3445, 0, + 0, 3562, 0, + 0, 3682, 0, + 3820, 2646, 3527, + 3820, 2646, 3527, + 3820, 2646, 3527, + 3820, 2647, 3527, + 3820, 2647, 3527, + 3820, 2648, 3527, + 3820, 2648, 3526, + 3820, 2649, 3526, + 3820, 2651, 3526, + 3819, 2652, 3525, + 3819, 2654, 3525, + 3819, 2658, 3524, + 3818, 2662, 3523, + 3817, 2667, 3522, + 3816, 2674, 3520, + 3814, 2683, 3518, + 3812, 2695, 3515, + 3809, 2711, 3510, + 3805, 2731, 3505, + 3800, 2756, 3497, + 3793, 2788, 3486, + 3783, 2828, 3471, + 3769, 2876, 3451, + 3751, 2933, 3422, + 3725, 3000, 3381, + 3687, 3076, 3318, + 3632, 3161, 3219, + 3545, 3255, 3039, + 3395, 3356, 2562, + 3058, 3463, 0, + 0, 3576, 0, + 0, 3693, 0, + 3953, 2773, 3658, + 3953, 2773, 3658, + 3953, 2773, 3658, + 3953, 2774, 3658, + 3953, 2774, 3658, + 3953, 2774, 3658, + 3953, 2775, 3657, + 3953, 2776, 3657, + 3952, 2777, 3657, + 3952, 2778, 3657, + 3952, 2780, 3656, + 3952, 2782, 3656, + 3951, 2785, 3655, + 3950, 2789, 3654, + 3949, 2794, 3653, + 3948, 2801, 3651, + 3947, 2811, 3649, + 3944, 2823, 3645, + 3942, 2839, 3641, + 3938, 2859, 3635, + 3932, 2885, 3628, + 3925, 2917, 3617, + 3915, 2957, 3602, + 3902, 3005, 3582, + 3883, 3063, 3553, + 3857, 3130, 3511, + 3820, 3206, 3449, + 3764, 3292, 3349, + 3678, 3386, 3167, + 3528, 3487, 2683, + 3192, 3595, 0, + 0, 3708, 0, + 4085, 2901, 3789, + 4085, 2902, 3789, + 4085, 2902, 3789, + 4085, 2902, 3789, + 4085, 2902, 3789, + 4085, 2902, 3789, + 4085, 2903, 3789, + 4085, 2903, 3789, + 4085, 2904, 3788, + 4085, 2905, 3788, + 4085, 2906, 3788, + 4084, 2908, 3787, + 4084, 2910, 3787, + 4083, 2913, 3786, + 4083, 2918, 3785, + 4082, 2923, 3784, + 4081, 2930, 3782, + 4079, 2939, 3780, + 4077, 2952, 3777, + 4074, 2968, 3772, + 4070, 2988, 3767, + 4065, 3014, 3759, + 4058, 3046, 3748, + 4048, 3086, 3733, + 4034, 3135, 3713, + 4016, 3193, 3684, + 3990, 3260, 3642, + 3952, 3337, 3579, + 3897, 3423, 3479, + 3810, 3517, 3297, + 3660, 3618, 2807, + 3325, 3726, 0, + 4095, 3031, 3920, + 4095, 3031, 3920, + 4095, 3031, 3920, + 4095, 3031, 3920, + 4095, 3031, 3920, + 4095, 3031, 3920, + 4095, 3032, 3920, + 4095, 3032, 3920, + 4095, 3033, 3920, + 4095, 3033, 3920, + 4095, 3034, 3920, + 4095, 3036, 3919, + 4095, 3037, 3919, + 4095, 3040, 3918, + 4095, 3043, 3918, + 4095, 3047, 3917, + 4095, 3052, 3915, + 4095, 3060, 3914, + 4095, 3069, 3911, + 4095, 3081, 3908, + 4095, 3097, 3904, + 4095, 3118, 3898, + 4095, 3144, 3890, + 4095, 3176, 3879, + 4095, 3217, 3864, + 4095, 3265, 3844, + 4095, 3323, 3815, + 4095, 3391, 3773, + 4085, 3468, 3710, + 4029, 3554, 3610, + 3943, 3648, 3427, + 3793, 3750, 2933, + 4095, 3161, 4052, + 4095, 3161, 4052, + 4095, 3161, 4052, + 4095, 3161, 4052, + 4095, 3161, 4052, + 4095, 3161, 4052, + 4095, 3161, 4052, + 4095, 3162, 4052, + 4095, 3162, 4052, + 4095, 3163, 4052, + 4095, 3163, 4051, + 4095, 3164, 4051, + 4095, 3166, 4051, + 4095, 3168, 4050, + 4095, 3170, 4050, + 4095, 3173, 4049, + 4095, 3177, 4048, + 4095, 3183, 4047, + 4095, 3190, 4045, + 4095, 3199, 4043, + 4095, 3212, 4040, + 4095, 3228, 4035, + 4095, 3248, 4029, + 4095, 3274, 4022, + 4095, 3307, 4011, + 4095, 3347, 3996, + 4095, 3396, 3975, + 4095, 3454, 3946, + 4095, 3522, 3904, + 4095, 3599, 3841, + 4095, 3685, 3741, + 4075, 3780, 3557, + 0, 1347, 1608, + 0, 1350, 1606, + 0, 1354, 1602, + 0, 1359, 1597, + 0, 1365, 1590, + 0, 1374, 1581, + 0, 1386, 1569, + 0, 1401, 1552, + 0, 1421, 1528, + 0, 1446, 1494, + 0, 1477, 1444, + 0, 1516, 1367, + 0, 1563, 1239, + 0, 1619, 979, + 0, 1685, 0, + 0, 1760, 0, + 0, 1845, 0, + 0, 1938, 0, + 0, 2038, 0, + 0, 2145, 0, + 0, 2257, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1348, 1612, + 0, 1351, 1610, + 0, 1354, 1606, + 0, 1360, 1601, + 0, 1366, 1595, + 0, 1375, 1586, + 0, 1387, 1573, + 0, 1402, 1557, + 0, 1422, 1533, + 0, 1447, 1499, + 0, 1478, 1450, + 0, 1516, 1374, + 0, 1564, 1248, + 0, 1620, 995, + 0, 1685, 0, + 0, 1761, 0, + 0, 1845, 0, + 0, 1938, 0, + 0, 2038, 0, + 0, 2145, 0, + 0, 2257, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1349, 1618, + 0, 1352, 1615, + 0, 1356, 1611, + 0, 1361, 1607, + 0, 1368, 1600, + 0, 1377, 1591, + 0, 1388, 1579, + 0, 1403, 1563, + 0, 1423, 1539, + 0, 1448, 1506, + 0, 1479, 1457, + 0, 1517, 1383, + 0, 1564, 1260, + 0, 1620, 1015, + 0, 1686, 0, + 0, 1761, 0, + 0, 1845, 0, + 0, 1938, 0, + 0, 2038, 0, + 0, 2145, 0, + 0, 2257, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1351, 1625, + 0, 1354, 1622, + 0, 1358, 1619, + 0, 1363, 1614, + 0, 1369, 1607, + 0, 1378, 1599, + 0, 1390, 1587, + 0, 1405, 1570, + 0, 1424, 1548, + 0, 1449, 1515, + 0, 1480, 1467, + 0, 1519, 1395, + 0, 1565, 1275, + 0, 1621, 1041, + 0, 1687, 0, + 0, 1762, 0, + 0, 1846, 0, + 0, 1939, 0, + 0, 2039, 0, + 0, 2145, 0, + 0, 2258, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1353, 1634, + 0, 1356, 1631, + 0, 1360, 1628, + 0, 1365, 1623, + 0, 1372, 1617, + 0, 1381, 1608, + 0, 1392, 1597, + 0, 1407, 1581, + 0, 1426, 1558, + 0, 1451, 1527, + 0, 1482, 1480, + 0, 1520, 1410, + 0, 1567, 1295, + 0, 1623, 1074, + 0, 1688, 244, + 0, 1763, 0, + 0, 1847, 0, + 0, 1939, 0, + 0, 2039, 0, + 0, 2146, 0, + 0, 2258, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1356, 1646, + 0, 1359, 1643, + 0, 1363, 1640, + 0, 1368, 1636, + 0, 1375, 1629, + 0, 1383, 1621, + 0, 1395, 1610, + 0, 1410, 1594, + 0, 1429, 1573, + 0, 1453, 1542, + 0, 1484, 1497, + 0, 1522, 1430, + 0, 1569, 1320, + 0, 1624, 1114, + 0, 1690, 449, + 0, 1764, 0, + 0, 1848, 0, + 0, 1940, 0, + 0, 2040, 0, + 0, 2146, 0, + 0, 2258, 0, + 0, 2375, 0, + 0, 2495, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1360, 1662, + 0, 1363, 1659, + 0, 1367, 1656, + 0, 1372, 1652, + 0, 1379, 1646, + 0, 1387, 1638, + 0, 1399, 1627, + 0, 1414, 1612, + 0, 1433, 1591, + 0, 1457, 1561, + 0, 1487, 1519, + 0, 1525, 1455, + 0, 1572, 1351, + 0, 1627, 1162, + 0, 1692, 629, + 0, 1766, 0, + 0, 1849, 0, + 0, 1941, 0, + 0, 2041, 0, + 0, 2147, 0, + 0, 2259, 0, + 0, 2375, 0, + 0, 2495, 0, + 0, 2618, 0, + 0, 2743, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1366, 1682, + 0, 1369, 1679, + 0, 1373, 1676, + 0, 1377, 1672, + 0, 1384, 1666, + 0, 1393, 1659, + 0, 1404, 1648, + 0, 1418, 1634, + 0, 1437, 1614, + 0, 1461, 1586, + 0, 1492, 1546, + 0, 1529, 1486, + 0, 1575, 1390, + 0, 1630, 1220, + 0, 1694, 795, + 0, 1768, 0, + 0, 1851, 0, + 0, 1943, 0, + 0, 2042, 0, + 0, 2148, 0, + 0, 2260, 0, + 0, 2376, 0, + 0, 2495, 0, + 0, 2618, 0, + 0, 2743, 0, + 0, 2870, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3649, 0, + 0, 1373, 1707, + 0, 1376, 1705, + 0, 1380, 1702, + 0, 1385, 1698, + 0, 1391, 1693, + 0, 1399, 1686, + 0, 1411, 1676, + 0, 1425, 1662, + 0, 1444, 1644, + 0, 1467, 1618, + 0, 1497, 1580, + 0, 1534, 1525, + 0, 1580, 1438, + 0, 1634, 1287, + 0, 1698, 950, + 0, 1771, 0, + 0, 1854, 0, + 0, 1945, 0, + 0, 2044, 0, + 0, 2149, 0, + 0, 2261, 0, + 0, 2377, 0, + 0, 2496, 0, + 0, 2619, 0, + 0, 2743, 0, + 0, 2870, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3649, 0, + 817, 1383, 1739, + 796, 1385, 1737, + 767, 1389, 1734, + 725, 1394, 1731, + 662, 1400, 1726, + 560, 1408, 1719, + 375, 1419, 1710, + 0, 1433, 1698, + 0, 1452, 1680, + 0, 1475, 1656, + 0, 1504, 1622, + 0, 1541, 1572, + 0, 1586, 1494, + 0, 1639, 1364, + 0, 1702, 1098, + 0, 1775, 0, + 0, 1857, 0, + 0, 1948, 0, + 0, 2046, 0, + 0, 2151, 0, + 0, 2262, 0, + 0, 2378, 0, + 0, 2497, 0, + 0, 2619, 0, + 0, 2744, 0, + 0, 2870, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 1204, 1395, 1779, + 1195, 1398, 1777, + 1183, 1401, 1775, + 1166, 1406, 1771, + 1143, 1412, 1767, + 1111, 1420, 1761, + 1063, 1431, 1752, + 990, 1445, 1741, + 870, 1462, 1725, + 635, 1485, 1704, + 0, 1514, 1673, + 0, 1550, 1628, + 0, 1594, 1560, + 0, 1646, 1450, + 0, 1709, 1243, + 0, 1780, 567, + 0, 1861, 0, + 0, 1951, 0, + 0, 2049, 0, + 0, 2154, 0, + 0, 2264, 0, + 0, 2379, 0, + 0, 2498, 0, + 0, 2620, 0, + 0, 2744, 0, + 0, 2871, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 1462, 1411, 1827, + 1457, 1414, 1825, + 1450, 1417, 1823, + 1441, 1422, 1820, + 1429, 1428, 1816, + 1412, 1436, 1811, + 1388, 1446, 1803, + 1354, 1459, 1793, + 1304, 1476, 1779, + 1227, 1498, 1760, + 1098, 1526, 1733, + 836, 1561, 1694, + 0, 1604, 1636, + 0, 1656, 1544, + 0, 1717, 1383, + 0, 1787, 1003, + 0, 1867, 0, + 0, 1956, 0, + 0, 2053, 0, + 0, 2157, 0, + 0, 2266, 0, + 0, 2381, 0, + 0, 2499, 0, + 0, 2621, 0, + 0, 2745, 0, + 0, 2871, 0, + 0, 2999, 0, + 0, 3128, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 1670, 1432, 1884, + 1667, 1435, 1883, + 1663, 1438, 1881, + 1657, 1442, 1878, + 1649, 1448, 1875, + 1639, 1455, 1870, + 1624, 1465, 1863, + 1604, 1478, 1854, + 1576, 1494, 1842, + 1536, 1516, 1826, + 1475, 1543, 1802, + 1378, 1576, 1769, + 1206, 1618, 1720, + 769, 1668, 1646, + 0, 1728, 1522, + 0, 1797, 1276, + 0, 1875, 0, + 0, 1962, 0, + 0, 2058, 0, + 0, 2161, 0, + 0, 2270, 0, + 0, 2383, 0, + 0, 2501, 0, + 0, 2623, 0, + 0, 2746, 0, + 0, 2872, 0, + 0, 3000, 0, + 0, 3128, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 1851, 1458, 1951, + 1849, 1461, 1950, + 1847, 1464, 1948, + 1843, 1468, 1946, + 1838, 1473, 1943, + 1831, 1480, 1939, + 1821, 1490, 1933, + 1809, 1502, 1925, + 1791, 1517, 1915, + 1766, 1538, 1901, + 1730, 1563, 1881, + 1678, 1596, 1853, + 1597, 1636, 1813, + 1459, 1684, 1753, + 1167, 1741, 1659, + 0, 1809, 1491, + 0, 1885, 1074, + 0, 1971, 0, + 0, 2065, 0, + 0, 2166, 0, + 0, 2274, 0, + 0, 2387, 0, + 0, 2504, 0, + 0, 2625, 0, + 0, 2748, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2017, 1491, 2027, + 2016, 1494, 2026, + 2014, 1496, 2025, + 2011, 1500, 2023, + 2008, 1505, 2020, + 2003, 1512, 2017, + 1997, 1520, 2012, + 1988, 1532, 2006, + 1976, 1547, 1997, + 1960, 1566, 1985, + 1937, 1590, 1969, + 1904, 1620, 1946, + 1856, 1658, 1914, + 1784, 1704, 1867, + 1664, 1759, 1794, + 1430, 1824, 1676, + 367, 1898, 1445, + 0, 1982, 454, + 0, 2074, 0, + 0, 2173, 0, + 0, 2279, 0, + 0, 2391, 0, + 0, 2507, 0, + 0, 2627, 0, + 0, 2750, 0, + 0, 2875, 0, + 0, 3002, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 2173, 1532, 2113, + 2172, 1534, 2112, + 2171, 1537, 2111, + 2169, 1540, 2109, + 2166, 1545, 2107, + 2163, 1551, 2104, + 2158, 1559, 2100, + 2152, 1569, 2095, + 2144, 1583, 2088, + 2133, 1600, 2078, + 2117, 1623, 2065, + 2096, 1651, 2047, + 2065, 1687, 2021, + 2021, 1730, 1984, + 1953, 1782, 1929, + 1844, 1844, 1844, + 1639, 1915, 1698, + 988, 1996, 1375, + 0, 2085, 0, + 0, 2183, 0, + 0, 2287, 0, + 0, 2397, 0, + 0, 2512, 0, + 0, 2631, 0, + 0, 2753, 0, + 0, 2877, 0, + 0, 3003, 0, + 0, 3131, 0, + 0, 3259, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 2322, 1581, 2206, + 2321, 1583, 2206, + 2320, 1585, 2205, + 2319, 1588, 2204, + 2317, 1593, 2202, + 2315, 1598, 2199, + 2312, 1605, 2196, + 2307, 1615, 2192, + 2301, 1627, 2186, + 2293, 1643, 2179, + 2283, 1663, 2168, + 2268, 1690, 2153, + 2247, 1722, 2133, + 2218, 1763, 2105, + 2175, 1811, 2063, + 2111, 1870, 2001, + 2009, 1937, 1903, + 1822, 2014, 1725, + 1302, 2100, 1261, + 0, 2195, 0, + 0, 2297, 0, + 0, 2405, 0, + 0, 2518, 0, + 0, 2635, 0, + 0, 2756, 0, + 0, 2880, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2466, 1640, 2308, + 2466, 1641, 2307, + 2465, 1643, 2306, + 2464, 1646, 2305, + 2463, 1650, 2304, + 2461, 1655, 2302, + 2459, 1661, 2299, + 2456, 1669, 2296, + 2451, 1680, 2292, + 2446, 1694, 2285, + 2438, 1713, 2277, + 2427, 1736, 2266, + 2413, 1766, 2250, + 2393, 1803, 2228, + 2364, 1848, 2197, + 2323, 1902, 2152, + 2262, 1965, 2083, + 2164, 2038, 1971, + 1988, 2120, 1760, + 1534, 2211, 1044, + 0, 2309, 0, + 0, 2415, 0, + 0, 2526, 0, + 0, 2641, 0, + 0, 2761, 0, + 0, 2883, 0, + 0, 3008, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 2607, 1708, 2415, + 2607, 1709, 2415, + 2607, 1711, 2414, + 2606, 1713, 2413, + 2605, 1716, 2412, + 2604, 1721, 2411, + 2602, 1726, 2409, + 2600, 1733, 2406, + 2597, 1743, 2402, + 2592, 1755, 2398, + 2587, 1771, 2391, + 2579, 1792, 2382, + 2569, 1818, 2370, + 2555, 1851, 2353, + 2535, 1892, 2330, + 2507, 1941, 2297, + 2467, 1999, 2248, + 2407, 2067, 2173, + 2313, 2145, 2049, + 2144, 2231, 1802, + 1729, 2326, 267, + 0, 2428, 0, + 0, 2536, 0, + 0, 2649, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3011, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 2746, 1785, 2528, + 2746, 1786, 2528, + 2745, 1788, 2527, + 2745, 1790, 2526, + 2744, 1793, 2526, + 2743, 1796, 2524, + 2742, 1801, 2523, + 2740, 1807, 2521, + 2738, 1815, 2518, + 2735, 1826, 2514, + 2731, 1839, 2509, + 2726, 1857, 2502, + 2718, 1880, 2493, + 2708, 1909, 2480, + 2694, 1945, 2463, + 2674, 1989, 2438, + 2647, 2042, 2403, + 2608, 2104, 2351, + 2549, 2176, 2271, + 2457, 2257, 2136, + 2294, 2347, 1853, + 1903, 2445, 0, + 0, 2549, 0, + 0, 2660, 0, + 0, 2775, 0, + 0, 2894, 0, + 0, 3016, 0, + 0, 3141, 0, + 0, 3267, 0, + 0, 3395, 0, + 0, 3523, 0, + 0, 3653, 0, + 2883, 1872, 2645, + 2883, 1873, 2645, + 2883, 1874, 2644, + 2882, 1876, 2644, + 2882, 1878, 2643, + 2881, 1881, 2642, + 2880, 1885, 2641, + 2879, 1890, 2640, + 2877, 1897, 2637, + 2875, 1905, 2635, + 2872, 1917, 2631, + 2868, 1932, 2625, + 2862, 1952, 2618, + 2855, 1976, 2609, + 2845, 2008, 2596, + 2831, 2046, 2577, + 2812, 2093, 2552, + 2785, 2149, 2515, + 2746, 2215, 2461, + 2688, 2290, 2376, + 2598, 2374, 2231, + 2438, 2467, 1914, + 2064, 2567, 0, + 0, 2674, 0, + 0, 2786, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3271, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 3019, 1967, 2766, + 3019, 1967, 2765, + 3018, 1968, 2765, + 3018, 1970, 2765, + 3018, 1971, 2764, + 3017, 1974, 2763, + 3017, 1977, 2763, + 3016, 1981, 2761, + 3014, 1987, 2760, + 3013, 1994, 2758, + 3011, 2004, 2755, + 3008, 2016, 2751, + 3004, 2032, 2745, + 2998, 2053, 2738, + 2991, 2080, 2728, + 2981, 2113, 2715, + 2967, 2154, 2696, + 2948, 2203, 2669, + 2921, 2262, 2631, + 2883, 2330, 2575, + 2826, 2408, 2487, + 2736, 2494, 2334, + 2580, 2589, 1984, + 2216, 2691, 0, + 0, 2800, 0, + 0, 2913, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3275, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3154, 2069, 2889, + 3153, 2069, 2889, + 3153, 2070, 2888, + 3153, 2071, 2888, + 3153, 2072, 2888, + 3152, 2074, 2887, + 3152, 2077, 2887, + 3151, 2080, 2886, + 3150, 2085, 2884, + 3149, 2091, 2883, + 3147, 2098, 2881, + 3145, 2109, 2878, + 3142, 2122, 2873, + 3138, 2139, 2868, + 3133, 2161, 2861, + 3126, 2189, 2850, + 3116, 2224, 2837, + 3102, 2266, 2817, + 3083, 2318, 2790, + 3057, 2379, 2751, + 3018, 2449, 2693, + 2962, 2529, 2602, + 2873, 2617, 2442, + 2718, 2714, 2063, + 2363, 2818, 0, + 0, 2927, 0, + 0, 3042, 0, + 0, 3160, 0, + 0, 3282, 0, + 0, 3406, 0, + 0, 3532, 0, + 0, 3659, 0, + 3288, 2177, 3014, + 3288, 2177, 3014, + 3287, 2178, 3014, + 3287, 2179, 3014, + 3287, 2180, 3013, + 3287, 2181, 3013, + 3286, 2183, 3012, + 3286, 2186, 3012, + 3285, 2190, 3011, + 3284, 2194, 3010, + 3283, 2200, 3008, + 3281, 2209, 3006, + 3279, 2219, 3003, + 3276, 2233, 2998, + 3272, 2251, 2993, + 3267, 2274, 2985, + 3260, 2303, 2975, + 3250, 2339, 2961, + 3236, 2383, 2941, + 3217, 2437, 2914, + 3191, 2499, 2874, + 3153, 2571, 2815, + 3097, 2652, 2721, + 3009, 2743, 2556, + 2855, 2840, 2152, + 2506, 2945, 0, + 0, 3056, 0, + 0, 3171, 0, + 0, 3290, 0, + 0, 3412, 0, + 0, 3537, 0, + 0, 3663, 0, + 3421, 2290, 3141, + 3421, 2291, 3141, + 3421, 2291, 3141, + 3421, 2292, 3141, + 3421, 2293, 3141, + 3421, 2294, 3140, + 3420, 2295, 3140, + 3420, 2297, 3139, + 3419, 2300, 3139, + 3419, 2304, 3138, + 3418, 2309, 3136, + 3417, 2315, 3135, + 3415, 2324, 3132, + 3413, 2335, 3129, + 3410, 2349, 3125, + 3406, 2368, 3120, + 3401, 2392, 3112, + 3393, 2421, 3102, + 3384, 2459, 3087, + 3370, 2504, 3067, + 3351, 2558, 3039, + 3325, 2622, 2999, + 3287, 2696, 2939, + 3231, 2778, 2844, + 3143, 2869, 2673, + 2991, 2968, 2248, + 2646, 3074, 0, + 0, 3185, 0, + 0, 3301, 0, + 0, 3421, 0, + 0, 3543, 0, + 0, 3668, 0, + 3554, 2408, 3269, + 3554, 2408, 3269, + 3554, 2408, 3269, + 3554, 2409, 3269, + 3554, 2410, 3269, + 3554, 2411, 3269, + 3554, 2412, 3268, + 3553, 2413, 3268, + 3553, 2416, 3268, + 3553, 2418, 3267, + 3552, 2422, 3266, + 3551, 2427, 3265, + 3550, 2434, 3263, + 3548, 2443, 3261, + 3546, 2454, 3257, + 3543, 2469, 3253, + 3539, 2488, 3248, + 3534, 2512, 3240, + 3527, 2543, 3229, + 3517, 2581, 3215, + 3503, 2627, 3195, + 3485, 2683, 3167, + 3458, 2747, 3126, + 3421, 2822, 3065, + 3365, 2905, 2968, + 3277, 2998, 2794, + 3126, 3097, 2352, + 2784, 3204, 0, + 0, 3315, 0, + 0, 3432, 0, + 0, 3552, 0, + 0, 3674, 0, + 3687, 2529, 3399, + 3687, 2529, 3399, + 3687, 2529, 3399, + 3687, 2530, 3398, + 3687, 2530, 3398, + 3687, 2531, 3398, + 3687, 2532, 3398, + 3687, 2533, 3398, + 3686, 2535, 3397, + 3686, 2537, 3397, + 3685, 2540, 3396, + 3685, 2544, 3395, + 3684, 2549, 3394, + 3683, 2556, 3392, + 3681, 2565, 3390, + 3679, 2576, 3387, + 3676, 2591, 3382, + 3672, 2611, 3377, + 3667, 2636, 3369, + 3660, 2667, 3358, + 3650, 2706, 3344, + 3636, 2753, 3324, + 3618, 2809, 3295, + 3591, 2874, 3254, + 3554, 2950, 3192, + 3498, 3034, 3094, + 3411, 3127, 2918, + 3260, 3227, 2461, + 2920, 3334, 0, + 0, 3446, 0, + 0, 3563, 0, + 0, 3683, 0, + 3820, 2652, 3529, + 3820, 2652, 3529, + 3820, 2653, 3528, + 3820, 2653, 3528, + 3820, 2653, 3528, + 3820, 2654, 3528, + 3820, 2655, 3528, + 3820, 2656, 3528, + 3819, 2657, 3528, + 3819, 2658, 3527, + 3819, 2661, 3527, + 3818, 2664, 3526, + 3817, 2668, 3525, + 3817, 2673, 3524, + 3815, 2680, 3522, + 3814, 2689, 3519, + 3812, 2701, 3516, + 3809, 2716, 3512, + 3805, 2736, 3506, + 3799, 2761, 3499, + 3792, 2793, 3488, + 3782, 2832, 3473, + 3769, 2880, 3453, + 3750, 2936, 3424, + 3724, 3003, 3383, + 3687, 3078, 3321, + 3631, 3163, 3222, + 3544, 3257, 3044, + 3394, 3357, 2575, + 3056, 3465, 0, + 0, 3577, 0, + 0, 3694, 0, + 3953, 2778, 3659, + 3953, 2778, 3659, + 3953, 2778, 3659, + 3953, 2778, 3659, + 3952, 2779, 3659, + 3952, 2779, 3659, + 3952, 2780, 3659, + 3952, 2780, 3658, + 3952, 2781, 3658, + 3952, 2783, 3658, + 3952, 2784, 3658, + 3951, 2787, 3657, + 3951, 2790, 3656, + 3950, 2794, 3655, + 3949, 2799, 3654, + 3948, 2806, 3652, + 3946, 2815, 3650, + 3944, 2827, 3647, + 3941, 2843, 3642, + 3937, 2863, 3637, + 3932, 2888, 3629, + 3925, 2920, 3618, + 3915, 2960, 3604, + 3902, 3008, 3583, + 3883, 3065, 3554, + 3857, 3132, 3513, + 3819, 3208, 3450, + 3764, 3293, 3351, + 3677, 3387, 3171, + 3527, 3488, 2694, + 3190, 3596, 0, + 0, 3708, 0, + 4085, 2905, 3790, + 4085, 2905, 3790, + 4085, 2905, 3790, + 4085, 2905, 3790, + 4085, 2906, 3790, + 4085, 2906, 3790, + 4085, 2906, 3790, + 4085, 2907, 3789, + 4085, 2908, 3789, + 4084, 2909, 3789, + 4084, 2910, 3789, + 4084, 2912, 3788, + 4084, 2914, 3788, + 4083, 2917, 3787, + 4082, 2921, 3786, + 4082, 2926, 3785, + 4080, 2933, 3783, + 4079, 2943, 3781, + 4077, 2955, 3778, + 4074, 2971, 3773, + 4070, 2991, 3768, + 4064, 3017, 3760, + 4057, 3049, 3749, + 4047, 3089, 3734, + 4034, 3137, 3714, + 4015, 3195, 3685, + 3989, 3262, 3643, + 3952, 3338, 3581, + 3896, 3424, 3481, + 3810, 3518, 3299, + 3660, 3619, 2815, + 3324, 3727, 0, + 4095, 3033, 3921, + 4095, 3034, 3921, + 4095, 3034, 3921, + 4095, 3034, 3921, + 4095, 3034, 3921, + 4095, 3034, 3921, + 4095, 3034, 3921, + 4095, 3035, 3921, + 4095, 3035, 3921, + 4095, 3036, 3920, + 4095, 3037, 3920, + 4095, 3038, 3920, + 4095, 3040, 3920, + 4095, 3042, 3919, + 4095, 3046, 3918, + 4095, 3050, 3917, + 4095, 3055, 3916, + 4095, 3062, 3914, + 4095, 3072, 3912, + 4095, 3084, 3909, + 4095, 3100, 3904, + 4095, 3120, 3899, + 4095, 3146, 3891, + 4095, 3178, 3880, + 4095, 3218, 3865, + 4095, 3267, 3845, + 4095, 3325, 3816, + 4095, 3392, 3774, + 4084, 3469, 3711, + 4029, 3555, 3611, + 3942, 3649, 3429, + 3793, 3751, 2939, + 4095, 3163, 4053, + 4095, 3163, 4052, + 4095, 3163, 4052, + 4095, 3163, 4052, + 4095, 3163, 4052, + 4095, 3163, 4052, + 4095, 3164, 4052, + 4095, 3164, 4052, + 4095, 3164, 4052, + 4095, 3165, 4052, + 4095, 3166, 4052, + 4095, 3167, 4052, + 4095, 3168, 4051, + 4095, 3170, 4051, + 4095, 3172, 4050, + 4095, 3175, 4050, + 4095, 3179, 4049, + 4095, 3185, 4047, + 4095, 3192, 4046, + 4095, 3201, 4043, + 4095, 3213, 4040, + 4095, 3229, 4036, + 4095, 3250, 4030, + 4095, 3276, 4022, + 4095, 3308, 4011, + 4095, 3349, 3997, + 4095, 3397, 3976, + 4095, 3455, 3947, + 4095, 3523, 3905, + 4095, 3600, 3842, + 4095, 3686, 3742, + 4075, 3780, 3559, + 0, 1476, 1739, + 0, 1478, 1737, + 0, 1481, 1735, + 0, 1485, 1731, + 0, 1490, 1726, + 0, 1497, 1719, + 0, 1506, 1710, + 0, 1518, 1698, + 0, 1533, 1681, + 0, 1552, 1657, + 0, 1577, 1622, + 0, 1609, 1572, + 0, 1647, 1494, + 0, 1695, 1365, + 0, 1751, 1099, + 0, 1817, 0, + 0, 1892, 0, + 0, 1976, 0, + 0, 2069, 0, + 0, 2170, 0, + 0, 2277, 0, + 0, 2389, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 0, 1477, 1742, + 0, 1479, 1740, + 0, 1482, 1738, + 0, 1486, 1734, + 0, 1491, 1729, + 0, 1498, 1723, + 0, 1507, 1713, + 0, 1518, 1701, + 0, 1533, 1684, + 0, 1553, 1660, + 0, 1578, 1626, + 0, 1609, 1576, + 0, 1648, 1500, + 0, 1695, 1371, + 0, 1751, 1111, + 0, 1817, 0, + 0, 1892, 0, + 0, 1977, 0, + 0, 2070, 0, + 0, 2170, 0, + 0, 2277, 0, + 0, 2389, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1478, 1746, + 0, 1480, 1744, + 0, 1483, 1742, + 0, 1487, 1738, + 0, 1492, 1733, + 0, 1499, 1727, + 0, 1507, 1718, + 0, 1519, 1706, + 0, 1534, 1689, + 0, 1554, 1665, + 0, 1579, 1631, + 0, 1610, 1582, + 0, 1649, 1506, + 0, 1696, 1380, + 0, 1752, 1127, + 0, 1818, 0, + 0, 1893, 0, + 0, 1977, 0, + 0, 2070, 0, + 0, 2170, 0, + 0, 2277, 0, + 0, 2389, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1479, 1752, + 0, 1481, 1750, + 0, 1484, 1747, + 0, 1488, 1744, + 0, 1493, 1739, + 0, 1500, 1732, + 0, 1509, 1723, + 0, 1520, 1711, + 0, 1535, 1695, + 0, 1555, 1671, + 0, 1580, 1638, + 0, 1611, 1590, + 0, 1650, 1515, + 0, 1696, 1392, + 0, 1753, 1147, + 0, 1818, 0, + 0, 1893, 0, + 0, 1978, 0, + 0, 2070, 0, + 0, 2171, 0, + 0, 2277, 0, + 0, 2389, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1481, 1759, + 0, 1483, 1757, + 0, 1486, 1754, + 0, 1490, 1751, + 0, 1495, 1746, + 0, 1502, 1740, + 0, 1510, 1731, + 0, 1522, 1719, + 0, 1537, 1703, + 0, 1556, 1680, + 0, 1581, 1647, + 0, 1612, 1600, + 0, 1651, 1527, + 0, 1698, 1407, + 0, 1754, 1173, + 0, 1819, 122, + 0, 1894, 0, + 0, 1978, 0, + 0, 2071, 0, + 0, 2171, 0, + 0, 2278, 0, + 0, 2390, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1483, 1768, + 0, 1485, 1766, + 0, 1488, 1763, + 0, 1492, 1760, + 0, 1497, 1755, + 0, 1504, 1749, + 0, 1513, 1741, + 0, 1524, 1729, + 0, 1539, 1713, + 0, 1558, 1691, + 0, 1583, 1659, + 0, 1614, 1612, + 0, 1652, 1542, + 0, 1699, 1427, + 0, 1755, 1206, + 0, 1820, 376, + 0, 1895, 0, + 0, 1979, 0, + 0, 2071, 0, + 0, 2171, 0, + 0, 2278, 0, + 0, 2390, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1486, 1780, + 0, 1488, 1778, + 0, 1491, 1776, + 0, 1495, 1772, + 0, 1500, 1768, + 0, 1507, 1762, + 0, 1516, 1753, + 0, 1527, 1742, + 0, 1542, 1726, + 0, 1561, 1705, + 0, 1586, 1674, + 0, 1616, 1629, + 0, 1655, 1562, + 0, 1701, 1452, + 0, 1757, 1246, + 0, 1822, 581, + 0, 1896, 0, + 0, 1980, 0, + 0, 2072, 0, + 0, 2172, 0, + 0, 2279, 0, + 0, 2390, 0, + 0, 2507, 0, + 0, 2627, 0, + 0, 2750, 0, + 0, 2875, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1490, 1795, + 0, 1493, 1794, + 0, 1495, 1791, + 0, 1499, 1788, + 0, 1504, 1784, + 0, 1511, 1778, + 0, 1519, 1770, + 0, 1531, 1759, + 0, 1546, 1744, + 0, 1565, 1723, + 0, 1589, 1694, + 0, 1620, 1651, + 0, 1657, 1587, + 0, 1704, 1484, + 0, 1759, 1294, + 0, 1824, 762, + 0, 1898, 0, + 0, 1981, 0, + 0, 2073, 0, + 0, 2173, 0, + 0, 2279, 0, + 0, 2391, 0, + 0, 2507, 0, + 0, 2627, 0, + 0, 2750, 0, + 0, 2875, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3259, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1496, 1815, + 0, 1498, 1814, + 0, 1501, 1811, + 0, 1505, 1808, + 0, 1510, 1804, + 0, 1516, 1799, + 0, 1525, 1791, + 0, 1536, 1781, + 0, 1551, 1766, + 0, 1569, 1746, + 0, 1593, 1718, + 0, 1624, 1678, + 0, 1661, 1618, + 0, 1707, 1522, + 0, 1762, 1352, + 0, 1826, 927, + 0, 1900, 0, + 0, 1983, 0, + 0, 2075, 0, + 0, 2174, 0, + 0, 2280, 0, + 0, 2392, 0, + 0, 2508, 0, + 0, 2628, 0, + 0, 2750, 0, + 0, 2875, 0, + 0, 3002, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1503, 1841, + 0, 1505, 1839, + 0, 1508, 1837, + 0, 1512, 1834, + 0, 1517, 1830, + 0, 1523, 1825, + 0, 1532, 1818, + 0, 1543, 1808, + 0, 1557, 1795, + 0, 1576, 1776, + 0, 1599, 1750, + 0, 1629, 1712, + 0, 1666, 1657, + 0, 1712, 1570, + 0, 1766, 1419, + 0, 1830, 1082, + 0, 1903, 0, + 0, 1986, 0, + 0, 2077, 0, + 0, 2176, 0, + 0, 2282, 0, + 0, 2393, 0, + 0, 2509, 0, + 0, 2628, 0, + 0, 2751, 0, + 0, 2875, 0, + 0, 3002, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3650, 0, + 964, 1513, 1873, + 949, 1515, 1871, + 928, 1518, 1869, + 899, 1521, 1867, + 857, 1526, 1863, + 794, 1532, 1858, + 692, 1541, 1851, + 507, 1551, 1842, + 0, 1566, 1830, + 0, 1584, 1813, + 0, 1607, 1788, + 0, 1637, 1754, + 0, 1673, 1704, + 0, 1718, 1626, + 0, 1771, 1496, + 0, 1835, 1231, + 0, 1907, 0, + 0, 1989, 0, + 0, 2080, 0, + 0, 2178, 0, + 0, 2283, 0, + 0, 2394, 0, + 0, 2510, 0, + 0, 2629, 0, + 0, 2751, 0, + 0, 2876, 0, + 0, 3002, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 1342, 1525, 1912, + 1336, 1527, 1911, + 1327, 1530, 1909, + 1315, 1533, 1907, + 1299, 1538, 1903, + 1276, 1544, 1899, + 1243, 1552, 1893, + 1195, 1563, 1884, + 1123, 1577, 1873, + 1003, 1595, 1857, + 767, 1617, 1836, + 0, 1646, 1805, + 0, 1682, 1760, + 0, 1726, 1692, + 0, 1779, 1582, + 0, 1841, 1375, + 0, 1912, 699, + 0, 1994, 0, + 0, 2083, 0, + 0, 2181, 0, + 0, 2286, 0, + 0, 2396, 0, + 0, 2511, 0, + 0, 2630, 0, + 0, 2752, 0, + 0, 2877, 0, + 0, 3003, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 1598, 1542, 1960, + 1594, 1543, 1959, + 1589, 1546, 1957, + 1582, 1549, 1955, + 1573, 1554, 1952, + 1561, 1560, 1948, + 1544, 1568, 1943, + 1520, 1578, 1935, + 1486, 1591, 1925, + 1436, 1608, 1911, + 1359, 1631, 1892, + 1230, 1659, 1865, + 968, 1693, 1826, + 0, 1736, 1768, + 0, 1788, 1676, + 0, 1849, 1516, + 0, 1919, 1135, + 0, 1999, 0, + 0, 2088, 0, + 0, 2185, 0, + 0, 2289, 0, + 0, 2398, 0, + 0, 2513, 0, + 0, 2632, 0, + 0, 2753, 0, + 0, 2877, 0, + 0, 3003, 0, + 0, 3131, 0, + 0, 3260, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 1804, 1562, 2017, + 1802, 1564, 2016, + 1799, 1567, 2015, + 1795, 1570, 2013, + 1789, 1574, 2010, + 1781, 1580, 2007, + 1771, 1587, 2002, + 1756, 1597, 1995, + 1737, 1610, 1987, + 1708, 1626, 1974, + 1668, 1648, 1958, + 1607, 1675, 1934, + 1511, 1708, 1901, + 1338, 1750, 1852, + 901, 1800, 1778, + 0, 1860, 1654, + 0, 1929, 1408, + 0, 2007, 0, + 0, 2095, 0, + 0, 2190, 0, + 0, 2293, 0, + 0, 2402, 0, + 0, 2515, 0, + 0, 2633, 0, + 0, 2755, 0, + 0, 2878, 0, + 0, 3004, 0, + 0, 3132, 0, + 0, 3260, 0, + 0, 3389, 0, + 0, 3520, 0, + 0, 3650, 0, + 1985, 1589, 2084, + 1983, 1591, 2083, + 1981, 1593, 2082, + 1979, 1596, 2080, + 1975, 1600, 2078, + 1970, 1605, 2075, + 1963, 1612, 2071, + 1953, 1622, 2065, + 1941, 1634, 2058, + 1923, 1650, 2047, + 1898, 1670, 2033, + 1862, 1695, 2013, + 1810, 1728, 1985, + 1729, 1768, 1945, + 1591, 1816, 1886, + 1299, 1874, 1791, + 0, 1941, 1623, + 0, 2017, 1207, + 0, 2103, 0, + 0, 2197, 0, + 0, 2298, 0, + 0, 2406, 0, + 0, 2519, 0, + 0, 2636, 0, + 0, 2757, 0, + 0, 2880, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2150, 1622, 2160, + 2149, 1623, 2159, + 2148, 1626, 2158, + 2146, 1628, 2157, + 2143, 1632, 2155, + 2140, 1637, 2152, + 2135, 1644, 2149, + 2129, 1653, 2144, + 2120, 1664, 2138, + 2108, 1679, 2129, + 2092, 1698, 2117, + 2069, 1722, 2101, + 2036, 1752, 2078, + 1989, 1790, 2046, + 1916, 1836, 1999, + 1796, 1892, 1927, + 1562, 1956, 1808, + 499, 2030, 1577, + 0, 2114, 586, + 0, 2206, 0, + 0, 2305, 0, + 0, 2412, 0, + 0, 2523, 0, + 0, 2639, 0, + 0, 2759, 0, + 0, 2882, 0, + 0, 3007, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3520, 0, + 0, 3651, 0, + 2306, 1663, 2246, + 2305, 1664, 2245, + 2304, 1666, 2244, + 2303, 1669, 2243, + 2301, 1672, 2241, + 2298, 1677, 2239, + 2295, 1683, 2236, + 2291, 1691, 2232, + 2284, 1701, 2227, + 2276, 1715, 2220, + 2265, 1732, 2210, + 2249, 1755, 2197, + 2228, 1783, 2179, + 2197, 1819, 2153, + 2153, 1862, 2116, + 2085, 1915, 2061, + 1976, 1976, 1976, + 1771, 2047, 1830, + 1120, 2128, 1507, + 0, 2217, 0, + 0, 2315, 0, + 0, 2419, 0, + 0, 2529, 0, + 0, 2644, 0, + 0, 2763, 0, + 0, 2885, 0, + 0, 3009, 0, + 0, 3135, 0, + 0, 3263, 0, + 0, 3392, 0, + 0, 3521, 0, + 0, 3651, 0, + 2455, 1712, 2339, + 2454, 1713, 2339, + 2453, 1715, 2338, + 2452, 1717, 2337, + 2451, 1721, 2336, + 2449, 1725, 2334, + 2447, 1730, 2332, + 2444, 1737, 2328, + 2439, 1747, 2324, + 2434, 1759, 2318, + 2426, 1775, 2311, + 2415, 1796, 2300, + 2400, 1822, 2285, + 2379, 1854, 2265, + 2350, 1895, 2237, + 2307, 1944, 2195, + 2243, 2002, 2134, + 2141, 2069, 2035, + 1954, 2146, 1857, + 1434, 2233, 1394, + 0, 2327, 0, + 0, 2429, 0, + 0, 2537, 0, + 0, 2650, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3012, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 2599, 1771, 2440, + 2598, 1772, 2440, + 2598, 1773, 2439, + 2597, 1775, 2438, + 2596, 1778, 2437, + 2595, 1782, 2436, + 2593, 1787, 2434, + 2591, 1793, 2432, + 2588, 1801, 2428, + 2584, 1812, 2424, + 2578, 1827, 2418, + 2570, 1845, 2409, + 2560, 1868, 2398, + 2545, 1898, 2382, + 2525, 1935, 2360, + 2496, 1980, 2329, + 2455, 2034, 2284, + 2394, 2097, 2215, + 2296, 2170, 2104, + 2120, 2252, 1892, + 1666, 2343, 1176, + 0, 2441, 0, + 0, 2547, 0, + 0, 2658, 0, + 0, 2773, 0, + 0, 2893, 0, + 0, 3015, 0, + 0, 3140, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3653, 0, + 2740, 1839, 2548, + 2740, 1840, 2547, + 2739, 1841, 2547, + 2739, 1843, 2546, + 2738, 1845, 2545, + 2737, 1848, 2544, + 2736, 1853, 2543, + 2734, 1858, 2541, + 2732, 1865, 2538, + 2729, 1875, 2535, + 2725, 1887, 2530, + 2719, 1903, 2523, + 2711, 1924, 2514, + 2701, 1950, 2502, + 2687, 1983, 2486, + 2667, 2024, 2462, + 2639, 2073, 2429, + 2599, 2132, 2380, + 2539, 2199, 2305, + 2445, 2277, 2181, + 2277, 2363, 1934, + 1861, 2458, 400, + 0, 2560, 0, + 0, 2668, 0, + 0, 2781, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 2878, 1917, 2660, + 2878, 1917, 2660, + 2878, 1919, 2660, + 2878, 1920, 2659, + 2877, 1922, 2659, + 2876, 1925, 2658, + 2875, 1928, 2657, + 2874, 1933, 2655, + 2872, 1939, 2653, + 2870, 1947, 2650, + 2867, 1958, 2646, + 2863, 1972, 2641, + 2858, 1989, 2635, + 2850, 2012, 2625, + 2840, 2041, 2613, + 2826, 2077, 2595, + 2807, 2121, 2570, + 2779, 2174, 2535, + 2740, 2236, 2483, + 2681, 2308, 2403, + 2589, 2389, 2268, + 2426, 2479, 1986, + 2035, 2577, 0, + 0, 2682, 0, + 0, 2792, 0, + 0, 2907, 0, + 0, 3026, 0, + 0, 3148, 0, + 0, 3273, 0, + 0, 3399, 0, + 0, 3527, 0, + 0, 3656, 0, + 3015, 2003, 2777, + 3015, 2004, 2777, + 3015, 2005, 2777, + 3015, 2006, 2776, + 3014, 2008, 2776, + 3014, 2010, 2775, + 3013, 2013, 2774, + 3012, 2017, 2773, + 3011, 2022, 2772, + 3009, 2029, 2770, + 3007, 2038, 2767, + 3004, 2049, 2763, + 3000, 2064, 2758, + 2995, 2084, 2751, + 2987, 2108, 2741, + 2977, 2140, 2728, + 2963, 2178, 2709, + 2944, 2225, 2684, + 2917, 2281, 2647, + 2878, 2347, 2593, + 2821, 2422, 2508, + 2730, 2506, 2363, + 2570, 2599, 2046, + 2196, 2699, 0, + 0, 2806, 0, + 0, 2918, 0, + 0, 3034, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3529, 0, + 0, 3658, 0, + 3151, 2098, 2898, + 3151, 2099, 2898, + 3151, 2099, 2897, + 3150, 2100, 2897, + 3150, 2102, 2897, + 3150, 2104, 2896, + 3149, 2106, 2896, + 3149, 2109, 2895, + 3148, 2113, 2893, + 3147, 2119, 2892, + 3145, 2126, 2890, + 3143, 2136, 2887, + 3140, 2148, 2883, + 3136, 2164, 2877, + 3130, 2185, 2870, + 3123, 2212, 2860, + 3113, 2245, 2847, + 3099, 2286, 2828, + 3080, 2335, 2801, + 3053, 2394, 2763, + 3015, 2462, 2707, + 2958, 2540, 2619, + 2868, 2626, 2466, + 2712, 2721, 2116, + 2349, 2823, 0, + 0, 2932, 0, + 0, 3045, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3407, 0, + 0, 3533, 0, + 0, 3660, 0, + 3286, 2200, 3021, + 3286, 2201, 3021, + 3286, 2201, 3021, + 3285, 2202, 3021, + 3285, 2203, 3020, + 3285, 2205, 3020, + 3284, 2206, 3019, + 3284, 2209, 3019, + 3283, 2212, 3018, + 3282, 2217, 3016, + 3281, 2223, 3015, + 3280, 2231, 3013, + 3277, 2241, 3010, + 3274, 2254, 3006, + 3270, 2271, 3000, + 3265, 2293, 2993, + 3258, 2321, 2983, + 3248, 2356, 2969, + 3234, 2398, 2949, + 3215, 2450, 2922, + 3189, 2511, 2883, + 3151, 2581, 2825, + 3094, 2661, 2734, + 3005, 2749, 2574, + 2850, 2846, 2196, + 2495, 2950, 0, + 0, 3059, 0, + 0, 3174, 0, + 0, 3292, 0, + 0, 3414, 0, + 0, 3538, 0, + 0, 3664, 0, + 3420, 2309, 3146, + 3420, 2309, 3146, + 3420, 2309, 3146, + 3420, 2310, 3146, + 3419, 2311, 3146, + 3419, 2312, 3145, + 3419, 2313, 3145, + 3418, 2315, 3145, + 3418, 2318, 3144, + 3417, 2322, 3143, + 3416, 2326, 3142, + 3415, 2333, 3140, + 3414, 2341, 3138, + 3411, 2351, 3135, + 3408, 2365, 3131, + 3404, 2383, 3125, + 3399, 2406, 3117, + 3392, 2435, 3107, + 3382, 2471, 3093, + 3368, 2516, 3074, + 3350, 2569, 3046, + 3323, 2631, 3006, + 3285, 2703, 2947, + 3229, 2785, 2853, + 3141, 2875, 2688, + 2988, 2973, 2284, + 2638, 3077, 0, + 0, 3188, 0, + 0, 3303, 0, + 0, 3422, 0, + 0, 3544, 0, + 0, 3669, 0, + 3553, 2422, 3273, + 3553, 2422, 3273, + 3553, 2423, 3273, + 3553, 2423, 3273, + 3553, 2424, 3273, + 3553, 2425, 3273, + 3553, 2426, 3272, + 3552, 2427, 3272, + 3552, 2430, 3271, + 3552, 2432, 3271, + 3551, 2436, 3270, + 3550, 2441, 3269, + 3549, 2447, 3267, + 3547, 2456, 3265, + 3545, 2467, 3261, + 3542, 2481, 3257, + 3538, 2500, 3252, + 3533, 2524, 3244, + 3525, 2554, 3234, + 3516, 2591, 3219, + 3502, 2636, 3200, + 3483, 2690, 3172, + 3457, 2754, 3131, + 3419, 2828, 3071, + 3363, 2910, 2976, + 3275, 3002, 2805, + 3123, 3100, 2380, + 2778, 3206, 0, + 0, 3317, 0, + 0, 3433, 0, + 0, 3553, 0, + 0, 3675, 0, + 3687, 2540, 3402, + 3687, 2540, 3402, + 3686, 2540, 3401, + 3686, 2541, 3401, + 3686, 2541, 3401, + 3686, 2542, 3401, + 3686, 2543, 3401, + 3686, 2544, 3401, + 3686, 2545, 3400, + 3685, 2548, 3400, + 3685, 2550, 3399, + 3684, 2554, 3398, + 3683, 2559, 3397, + 3682, 2566, 3395, + 3680, 2575, 3393, + 3678, 2586, 3390, + 3675, 2601, 3385, + 3671, 2620, 3380, + 3666, 2644, 3372, + 3659, 2675, 3362, + 3649, 2713, 3347, + 3635, 2759, 3327, + 3617, 2815, 3299, + 3590, 2880, 3258, + 3553, 2954, 3197, + 3497, 3038, 3100, + 3410, 3130, 2926, + 3258, 3229, 2484, + 2916, 3336, 0, + 0, 3448, 0, + 0, 3564, 0, + 0, 3684, 0, + 3819, 2661, 3531, + 3819, 2661, 3531, + 3819, 2661, 3531, + 3819, 2661, 3531, + 3819, 2662, 3531, + 3819, 2662, 3530, + 3819, 2663, 3530, + 3819, 2664, 3530, + 3819, 2665, 3530, + 3818, 2667, 3529, + 3818, 2669, 3529, + 3818, 2672, 3528, + 3817, 2676, 3527, + 3816, 2681, 3526, + 3815, 2688, 3524, + 3813, 2697, 3522, + 3811, 2708, 3519, + 3808, 2723, 3514, + 3804, 2743, 3509, + 3799, 2768, 3501, + 3792, 2799, 3490, + 3782, 2838, 3476, + 3768, 2885, 3456, + 3750, 2941, 3427, + 3723, 3007, 3386, + 3686, 3082, 3325, + 3630, 3166, 3227, + 3543, 3259, 3050, + 3392, 3359, 2593, + 3052, 3466, 0, + 0, 3578, 0, + 0, 3695, 0, + 3952, 2784, 3661, + 3952, 2784, 3661, + 3952, 2785, 3661, + 3952, 2785, 3661, + 3952, 2785, 3661, + 3952, 2785, 3660, + 3952, 2786, 3660, + 3952, 2787, 3660, + 3952, 2788, 3660, + 3951, 2789, 3660, + 3951, 2791, 3659, + 3951, 2793, 3659, + 3950, 2796, 3658, + 3950, 2800, 3657, + 3949, 2805, 3656, + 3947, 2812, 3654, + 3946, 2821, 3652, + 3944, 2833, 3648, + 3941, 2848, 3644, + 3937, 2868, 3638, + 3932, 2893, 3631, + 3924, 2925, 3620, + 3915, 2964, 3605, + 3901, 3012, 3585, + 3882, 3068, 3556, + 3856, 3135, 3515, + 3819, 3211, 3453, + 3763, 3295, 3354, + 3676, 3389, 3176, + 3526, 3489, 2707, + 3188, 3597, 0, + 0, 3709, 0, + 4085, 2910, 3791, + 4085, 2910, 3791, + 4085, 2910, 3791, + 4085, 2910, 3791, + 4085, 2911, 3791, + 4085, 2911, 3791, + 4085, 2911, 3791, + 4084, 2912, 3791, + 4084, 2912, 3791, + 4084, 2913, 3790, + 4084, 2915, 3790, + 4084, 2916, 3790, + 4083, 2919, 3789, + 4083, 2922, 3788, + 4082, 2926, 3787, + 4081, 2931, 3786, + 4080, 2938, 3784, + 4078, 2947, 3782, + 4076, 2959, 3779, + 4073, 2975, 3775, + 4069, 2995, 3769, + 4064, 3020, 3761, + 4057, 3052, 3750, + 4047, 3092, 3736, + 4034, 3140, 3715, + 4015, 3197, 3686, + 3989, 3264, 3645, + 3951, 3340, 3583, + 3896, 3425, 3483, + 3809, 3519, 3303, + 3659, 3620, 2826, + 3322, 3728, 0, + 4095, 3037, 3922, + 4095, 3037, 3922, + 4095, 3037, 3922, + 4095, 3037, 3922, + 4095, 3038, 3922, + 4095, 3038, 3922, + 4095, 3038, 3922, + 4095, 3039, 3922, + 4095, 3039, 3922, + 4095, 3040, 3921, + 4095, 3041, 3921, + 4095, 3042, 3921, + 4095, 3044, 3920, + 4095, 3046, 3920, + 4095, 3049, 3919, + 4095, 3053, 3918, + 4095, 3059, 3917, + 4095, 3066, 3915, + 4095, 3075, 3913, + 4095, 3087, 3910, + 4095, 3103, 3905, + 4095, 3123, 3900, + 4095, 3149, 3892, + 4095, 3181, 3881, + 4095, 3221, 3866, + 4095, 3269, 3846, + 4095, 3327, 3817, + 4095, 3394, 3775, + 4084, 3470, 3713, + 4029, 3556, 3613, + 3942, 3650, 3432, + 3792, 3751, 2947, + 4095, 3166, 4053, + 4095, 3166, 4053, + 4095, 3166, 4053, + 4095, 3166, 4053, + 4095, 3166, 4053, + 4095, 3166, 4053, + 4095, 3166, 4053, + 4095, 3167, 4053, + 4095, 3167, 4053, + 4095, 3168, 4053, + 4095, 3168, 4053, + 4095, 3169, 4052, + 4095, 3171, 4052, + 4095, 3172, 4052, + 4095, 3175, 4051, + 4095, 3178, 4050, + 4095, 3182, 4049, + 4095, 3187, 4048, + 4095, 3194, 4046, + 4095, 3204, 4044, + 4095, 3216, 4041, + 4095, 3232, 4037, + 4095, 3252, 4031, + 4095, 3278, 4023, + 4095, 3310, 4012, + 4095, 3350, 3997, + 4095, 3399, 3977, + 4095, 3457, 3948, + 4095, 3524, 3906, + 4095, 3601, 3843, + 4095, 3687, 3743, + 4074, 3781, 3561, + 0, 1606, 1871, + 0, 1607, 1869, + 0, 1610, 1867, + 0, 1612, 1864, + 0, 1616, 1861, + 0, 1622, 1856, + 0, 1628, 1849, + 0, 1637, 1840, + 0, 1649, 1827, + 0, 1664, 1810, + 0, 1684, 1786, + 0, 1709, 1751, + 0, 1740, 1701, + 0, 1779, 1623, + 0, 1826, 1491, + 0, 1883, 1222, + 0, 1949, 0, + 0, 2024, 0, + 0, 2108, 0, + 0, 2201, 0, + 0, 2302, 0, + 0, 2409, 0, + 0, 2521, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1606, 1873, + 0, 1608, 1871, + 0, 1610, 1869, + 0, 1613, 1867, + 0, 1617, 1863, + 0, 1622, 1858, + 0, 1629, 1851, + 0, 1638, 1842, + 0, 1650, 1830, + 0, 1665, 1813, + 0, 1684, 1789, + 0, 1709, 1754, + 0, 1741, 1704, + 0, 1779, 1626, + 0, 1827, 1497, + 0, 1883, 1231, + 0, 1949, 0, + 0, 2024, 0, + 0, 2109, 0, + 0, 2202, 0, + 0, 2302, 0, + 0, 2409, 0, + 0, 2521, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1607, 1876, + 0, 1609, 1874, + 0, 1611, 1872, + 0, 1614, 1870, + 0, 1618, 1866, + 0, 1623, 1861, + 0, 1630, 1855, + 0, 1639, 1846, + 0, 1650, 1833, + 0, 1666, 1816, + 0, 1685, 1792, + 0, 1710, 1758, + 0, 1741, 1708, + 0, 1780, 1632, + 0, 1827, 1503, + 0, 1883, 1243, + 0, 1949, 0, + 0, 2024, 0, + 0, 2109, 0, + 0, 2202, 0, + 0, 2302, 0, + 0, 2409, 0, + 0, 2521, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1608, 1880, + 0, 1610, 1878, + 0, 1612, 1876, + 0, 1615, 1874, + 0, 1619, 1870, + 0, 1624, 1865, + 0, 1631, 1859, + 0, 1640, 1850, + 0, 1651, 1838, + 0, 1666, 1821, + 0, 1686, 1797, + 0, 1711, 1763, + 0, 1742, 1714, + 0, 1781, 1638, + 0, 1828, 1512, + 0, 1884, 1259, + 0, 1950, 0, + 0, 2025, 0, + 0, 2109, 0, + 0, 2202, 0, + 0, 2302, 0, + 0, 2409, 0, + 0, 2521, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1609, 1885, + 0, 1611, 1884, + 0, 1613, 1882, + 0, 1616, 1879, + 0, 1620, 1876, + 0, 1625, 1871, + 0, 1632, 1864, + 0, 1641, 1855, + 0, 1652, 1843, + 0, 1668, 1827, + 0, 1687, 1803, + 0, 1712, 1770, + 0, 1743, 1722, + 0, 1782, 1647, + 0, 1829, 1524, + 0, 1885, 1280, + 0, 1950, 0, + 0, 2025, 0, + 0, 2110, 0, + 0, 2202, 0, + 0, 2303, 0, + 0, 2409, 0, + 0, 2522, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1611, 1892, + 0, 1613, 1891, + 0, 1615, 1889, + 0, 1618, 1886, + 0, 1622, 1883, + 0, 1627, 1878, + 0, 1634, 1872, + 0, 1642, 1863, + 0, 1654, 1851, + 0, 1669, 1835, + 0, 1689, 1812, + 0, 1713, 1779, + 0, 1744, 1732, + 0, 1783, 1659, + 0, 1830, 1540, + 0, 1886, 1305, + 0, 1951, 254, + 0, 2026, 0, + 0, 2110, 0, + 0, 2203, 0, + 0, 2303, 0, + 0, 2410, 0, + 0, 2522, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1614, 1901, + 0, 1615, 1900, + 0, 1617, 1898, + 0, 1620, 1896, + 0, 1624, 1892, + 0, 1629, 1887, + 0, 1636, 1881, + 0, 1645, 1873, + 0, 1656, 1861, + 0, 1671, 1845, + 0, 1691, 1823, + 0, 1715, 1791, + 0, 1746, 1745, + 0, 1784, 1674, + 0, 1831, 1559, + 0, 1887, 1338, + 0, 1952, 508, + 0, 2027, 0, + 0, 2111, 0, + 0, 2203, 0, + 0, 2304, 0, + 0, 2410, 0, + 0, 2522, 0, + 0, 2639, 0, + 0, 2759, 0, + 0, 2881, 0, + 0, 3007, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1617, 1913, + 0, 1618, 1912, + 0, 1620, 1910, + 0, 1623, 1908, + 0, 1627, 1904, + 0, 1632, 1900, + 0, 1639, 1894, + 0, 1648, 1885, + 0, 1659, 1874, + 0, 1674, 1859, + 0, 1693, 1837, + 0, 1718, 1806, + 0, 1748, 1761, + 0, 1787, 1694, + 0, 1833, 1584, + 0, 1889, 1378, + 0, 1954, 713, + 0, 2028, 0, + 0, 2112, 0, + 0, 2204, 0, + 0, 2304, 0, + 0, 2411, 0, + 0, 2522, 0, + 0, 2639, 0, + 0, 2759, 0, + 0, 2882, 0, + 0, 3007, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3391, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1621, 1929, + 0, 1622, 1928, + 0, 1625, 1926, + 0, 1627, 1923, + 0, 1631, 1920, + 0, 1636, 1916, + 0, 1643, 1910, + 0, 1652, 1902, + 0, 1663, 1891, + 0, 1678, 1876, + 0, 1697, 1855, + 0, 1721, 1826, + 0, 1752, 1783, + 0, 1790, 1719, + 0, 1836, 1616, + 0, 1891, 1426, + 0, 1956, 894, + 0, 2030, 0, + 0, 2113, 0, + 0, 2206, 0, + 0, 2305, 0, + 0, 2411, 0, + 0, 2523, 0, + 0, 2639, 0, + 0, 2759, 0, + 0, 2882, 0, + 0, 3007, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1626, 1949, + 0, 1628, 1948, + 0, 1630, 1946, + 0, 1633, 1944, + 0, 1637, 1940, + 0, 1642, 1936, + 0, 1648, 1931, + 0, 1657, 1923, + 0, 1668, 1913, + 0, 1683, 1898, + 0, 1701, 1878, + 0, 1726, 1851, + 0, 1756, 1810, + 0, 1793, 1750, + 0, 1839, 1655, + 0, 1894, 1484, + 0, 1958, 1059, + 0, 2032, 0, + 0, 2115, 0, + 0, 2207, 0, + 0, 2306, 0, + 0, 2412, 0, + 0, 2524, 0, + 0, 2640, 0, + 0, 2760, 0, + 0, 2882, 0, + 0, 3007, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1634, 1974, + 0, 1635, 1973, + 0, 1637, 1971, + 0, 1640, 1969, + 0, 1644, 1966, + 0, 1649, 1962, + 0, 1655, 1957, + 0, 1664, 1950, + 0, 1675, 1940, + 0, 1689, 1927, + 0, 1708, 1908, + 0, 1731, 1882, + 0, 1761, 1844, + 0, 1798, 1789, + 0, 1844, 1702, + 0, 1898, 1552, + 0, 1962, 1214, + 0, 2035, 0, + 0, 2118, 0, + 0, 2209, 0, + 0, 2308, 0, + 0, 2414, 0, + 0, 2525, 0, + 0, 2641, 0, + 0, 2760, 0, + 0, 2883, 0, + 0, 3008, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 1107, 1643, 2006, + 1096, 1645, 2005, + 1081, 1647, 2003, + 1061, 1650, 2001, + 1031, 1653, 1999, + 989, 1658, 1995, + 926, 1664, 1990, + 824, 1673, 1983, + 639, 1684, 1974, + 132, 1698, 1962, + 0, 1716, 1945, + 0, 1739, 1921, + 0, 1769, 1886, + 0, 1805, 1836, + 0, 1850, 1758, + 0, 1904, 1628, + 0, 1967, 1363, + 0, 2039, 0, + 0, 2121, 0, + 0, 2212, 0, + 0, 2310, 0, + 0, 2415, 0, + 0, 2526, 0, + 0, 2642, 0, + 0, 2761, 0, + 0, 2883, 0, + 0, 3008, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 1479, 1656, 2045, + 1474, 1657, 2044, + 1468, 1659, 2043, + 1459, 1662, 2041, + 1447, 1666, 2039, + 1431, 1670, 2035, + 1408, 1676, 2031, + 1375, 1684, 2025, + 1327, 1695, 2016, + 1255, 1709, 2005, + 1135, 1727, 1989, + 899, 1749, 1968, + 0, 1778, 1937, + 0, 1814, 1892, + 0, 1858, 1824, + 0, 1911, 1714, + 0, 1973, 1507, + 0, 2045, 831, + 0, 2126, 0, + 0, 2215, 0, + 0, 2313, 0, + 0, 2418, 0, + 0, 2528, 0, + 0, 2643, 0, + 0, 2762, 0, + 0, 2884, 0, + 0, 3009, 0, + 0, 3135, 0, + 0, 3263, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 1732, 1672, 2093, + 1730, 1674, 2092, + 1726, 1676, 2091, + 1721, 1678, 2089, + 1715, 1681, 2087, + 1706, 1686, 2084, + 1693, 1692, 2080, + 1676, 1700, 2075, + 1652, 1710, 2067, + 1618, 1723, 2057, + 1568, 1741, 2043, + 1491, 1763, 2024, + 1362, 1791, 1997, + 1100, 1826, 1958, + 0, 1868, 1900, + 0, 1920, 1808, + 0, 1981, 1648, + 0, 2052, 1267, + 0, 2132, 0, + 0, 2220, 0, + 0, 2317, 0, + 0, 2421, 0, + 0, 2530, 0, + 0, 2645, 0, + 0, 2764, 0, + 0, 2885, 0, + 0, 3009, 0, + 0, 3136, 0, + 0, 3263, 0, + 0, 3392, 0, + 0, 3521, 0, + 0, 3651, 0, + 1938, 1693, 2150, + 1936, 1694, 2150, + 1934, 1696, 2148, + 1931, 1699, 2147, + 1927, 1702, 2145, + 1921, 1706, 2142, + 1913, 1712, 2139, + 1903, 1719, 2134, + 1889, 1729, 2127, + 1869, 1742, 2119, + 1840, 1759, 2106, + 1800, 1780, 2090, + 1739, 1807, 2066, + 1643, 1841, 2033, + 1470, 1882, 1984, + 1033, 1932, 1910, + 0, 1992, 1786, + 0, 2061, 1540, + 0, 2139, 54, + 0, 2227, 0, + 0, 2322, 0, + 0, 2425, 0, + 0, 2534, 0, + 0, 2648, 0, + 0, 2766, 0, + 0, 2887, 0, + 0, 3011, 0, + 0, 3136, 0, + 0, 3264, 0, + 0, 3392, 0, + 0, 3522, 0, + 0, 3652, 0, + 2118, 1720, 2217, + 2117, 1721, 2216, + 2116, 1723, 2215, + 2113, 1725, 2214, + 2111, 1728, 2212, + 2107, 1732, 2210, + 2102, 1737, 2207, + 2095, 1744, 2203, + 2086, 1754, 2197, + 2073, 1766, 2190, + 2055, 1782, 2179, + 2030, 1802, 2165, + 1994, 1828, 2145, + 1942, 1860, 2118, + 1861, 1900, 2077, + 1723, 1948, 2018, + 1431, 2006, 1923, + 0, 2073, 1755, + 0, 2149, 1339, + 0, 2235, 0, + 0, 2329, 0, + 0, 2430, 0, + 0, 2538, 0, + 0, 2651, 0, + 0, 2768, 0, + 0, 2889, 0, + 0, 3012, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 2283, 1753, 2293, + 2282, 1754, 2292, + 2281, 1756, 2292, + 2280, 1758, 2290, + 2278, 1761, 2289, + 2275, 1764, 2287, + 2272, 1769, 2285, + 2267, 1776, 2281, + 2261, 1785, 2276, + 2252, 1796, 2270, + 2240, 1811, 2261, + 2224, 1830, 2249, + 2201, 1854, 2233, + 2168, 1884, 2210, + 2121, 1922, 2178, + 2048, 1968, 2131, + 1928, 2024, 2059, + 1694, 2088, 1940, + 631, 2163, 1709, + 0, 2246, 718, + 0, 2338, 0, + 0, 2437, 0, + 0, 2544, 0, + 0, 2655, 0, + 0, 2772, 0, + 0, 2891, 0, + 0, 3014, 0, + 0, 3139, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3653, 0, + 2439, 1794, 2378, + 2438, 1795, 2378, + 2437, 1796, 2377, + 2436, 1798, 2376, + 2435, 1801, 2375, + 2433, 1804, 2373, + 2430, 1809, 2371, + 2427, 1815, 2368, + 2423, 1823, 2364, + 2417, 1833, 2359, + 2408, 1847, 2352, + 2397, 1864, 2342, + 2382, 1887, 2329, + 2360, 1915, 2311, + 2329, 1951, 2285, + 2285, 1994, 2248, + 2217, 2047, 2193, + 2108, 2108, 2108, + 1903, 2180, 1962, + 1252, 2260, 1639, + 0, 2350, 0, + 0, 2447, 0, + 0, 2551, 0, + 0, 2661, 0, + 0, 2776, 0, + 0, 2895, 0, + 0, 3017, 0, + 0, 3141, 0, + 0, 3267, 0, + 0, 3395, 0, + 0, 3524, 0, + 0, 3653, 0, + 2587, 1843, 2472, + 2587, 1844, 2471, + 2586, 1845, 2471, + 2585, 1847, 2470, + 2584, 1850, 2469, + 2583, 1853, 2468, + 2581, 1857, 2466, + 2579, 1862, 2464, + 2576, 1869, 2460, + 2571, 1879, 2456, + 2566, 1891, 2451, + 2558, 1907, 2443, + 2547, 1928, 2432, + 2532, 1954, 2418, + 2511, 1986, 2397, + 2482, 2027, 2369, + 2439, 2076, 2327, + 2375, 2134, 2266, + 2273, 2201, 2167, + 2086, 2279, 1990, + 1566, 2365, 1526, + 0, 2459, 0, + 0, 2561, 0, + 0, 2669, 0, + 0, 2782, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 2731, 1902, 2573, + 2731, 1903, 2572, + 2731, 1904, 2572, + 2730, 1906, 2571, + 2729, 1908, 2570, + 2728, 1910, 2569, + 2727, 1914, 2568, + 2725, 1919, 2566, + 2723, 1925, 2564, + 2720, 1933, 2560, + 2716, 1944, 2556, + 2710, 1959, 2550, + 2702, 1977, 2541, + 2692, 2000, 2530, + 2677, 2030, 2514, + 2657, 2067, 2492, + 2629, 2112, 2461, + 2588, 2166, 2416, + 2526, 2229, 2347, + 2428, 2302, 2236, + 2252, 2384, 2024, + 1798, 2475, 1309, + 0, 2574, 0, + 0, 2679, 0, + 0, 2790, 0, + 0, 2906, 0, + 0, 3025, 0, + 0, 3147, 0, + 0, 3272, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 2872, 1970, 2680, + 2872, 1971, 2680, + 2872, 1972, 2679, + 2871, 1973, 2679, + 2871, 1975, 2678, + 2870, 1977, 2677, + 2869, 1981, 2676, + 2868, 1985, 2675, + 2866, 1990, 2673, + 2864, 1998, 2670, + 2861, 2007, 2667, + 2857, 2019, 2662, + 2851, 2036, 2655, + 2843, 2056, 2646, + 2833, 2083, 2634, + 2819, 2115, 2618, + 2799, 2156, 2594, + 2771, 2205, 2561, + 2731, 2264, 2512, + 2672, 2332, 2437, + 2577, 2409, 2314, + 2409, 2495, 2066, + 1993, 2590, 532, + 0, 2692, 0, + 0, 2800, 0, + 0, 2914, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3011, 2048, 2793, + 3011, 2049, 2792, + 3010, 2050, 2792, + 3010, 2051, 2792, + 3010, 2052, 2791, + 3009, 2054, 2791, + 3008, 2057, 2790, + 3007, 2060, 2789, + 3006, 2065, 2787, + 3005, 2071, 2785, + 3002, 2079, 2782, + 2999, 2090, 2779, + 2995, 2104, 2774, + 2990, 2122, 2767, + 2982, 2144, 2757, + 2972, 2173, 2745, + 2958, 2209, 2727, + 2939, 2253, 2702, + 2911, 2306, 2667, + 2872, 2368, 2616, + 2813, 2440, 2536, + 2721, 2521, 2400, + 2558, 2611, 2118, + 2167, 2709, 0, + 0, 2814, 0, + 0, 2924, 0, + 0, 3039, 0, + 0, 3158, 0, + 0, 3280, 0, + 0, 3405, 0, + 0, 3531, 0, + 0, 3659, 0, + 3148, 2135, 2910, + 3147, 2135, 2909, + 3147, 2136, 2909, + 3147, 2137, 2909, + 3147, 2138, 2909, + 3146, 2140, 2908, + 3146, 2142, 2907, + 3145, 2145, 2907, + 3144, 2149, 2905, + 3143, 2154, 2904, + 3141, 2161, 2902, + 3139, 2170, 2899, + 3136, 2181, 2895, + 3132, 2196, 2890, + 3127, 2216, 2883, + 3119, 2241, 2873, + 3109, 2272, 2860, + 3095, 2310, 2842, + 3076, 2357, 2816, + 3049, 2413, 2779, + 3010, 2479, 2725, + 2953, 2554, 2640, + 2862, 2638, 2495, + 2703, 2731, 2178, + 2328, 2831, 0, + 0, 2938, 0, + 0, 3050, 0, + 0, 3167, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 3283, 2230, 3030, + 3283, 2230, 3030, + 3283, 2231, 3030, + 3283, 2232, 3030, + 3283, 2233, 3029, + 3282, 2234, 3029, + 3282, 2236, 3028, + 3281, 2238, 3028, + 3281, 2241, 3027, + 3280, 2245, 3026, + 3279, 2251, 3024, + 3277, 2258, 3022, + 3275, 2268, 3019, + 3272, 2280, 3015, + 3268, 2297, 3010, + 3262, 2317, 3002, + 3255, 2344, 2992, + 3245, 2377, 2979, + 3231, 2418, 2960, + 3212, 2467, 2933, + 3186, 2526, 2896, + 3147, 2594, 2839, + 3090, 2672, 2751, + 3000, 2758, 2598, + 2844, 2853, 2248, + 2481, 2955, 0, + 0, 3064, 0, + 0, 3177, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3418, 2332, 3153, + 3418, 2332, 3153, + 3418, 2333, 3153, + 3418, 2333, 3153, + 3417, 2334, 3153, + 3417, 2335, 3152, + 3417, 2337, 3152, + 3417, 2339, 3151, + 3416, 2341, 3151, + 3415, 2344, 3150, + 3414, 2349, 3149, + 3413, 2355, 3147, + 3412, 2363, 3145, + 3409, 2373, 3142, + 3406, 2386, 3138, + 3403, 2403, 3132, + 3397, 2425, 3125, + 3390, 2453, 3115, + 3380, 2488, 3101, + 3366, 2531, 3082, + 3347, 2582, 3054, + 3321, 2643, 3016, + 3283, 2713, 2958, + 3226, 2793, 2866, + 3137, 2882, 2706, + 2983, 2978, 2328, + 2627, 3082, 0, + 0, 3191, 0, + 0, 3306, 0, + 0, 3424, 0, + 0, 3546, 0, + 0, 3670, 0, + 3552, 2440, 3279, + 3552, 2441, 3278, + 3552, 2441, 3278, + 3552, 2441, 3278, + 3552, 2442, 3278, + 3551, 2443, 3278, + 3551, 2444, 3278, + 3551, 2446, 3277, + 3551, 2448, 3277, + 3550, 2450, 3276, + 3549, 2454, 3275, + 3549, 2458, 3274, + 3547, 2465, 3272, + 3546, 2473, 3270, + 3543, 2484, 3267, + 3541, 2497, 3263, + 3537, 2515, 3257, + 3531, 2538, 3250, + 3524, 2567, 3239, + 3514, 2603, 3225, + 3500, 2648, 3206, + 3482, 2701, 3178, + 3455, 2763, 3138, + 3417, 2835, 3079, + 3361, 2917, 2986, + 3273, 3007, 2820, + 3120, 3105, 2416, + 2770, 3209, 0, + 0, 3320, 0, + 0, 3435, 0, + 0, 3554, 0, + 0, 3676, 0, + 3685, 2554, 3406, + 3685, 2554, 3405, + 3685, 2554, 3405, + 3685, 2555, 3405, + 3685, 2555, 3405, + 3685, 2556, 3405, + 3685, 2557, 3405, + 3685, 2558, 3405, + 3684, 2560, 3404, + 3684, 2562, 3404, + 3684, 2564, 3403, + 3683, 2568, 3402, + 3682, 2573, 3401, + 3681, 2579, 3399, + 3679, 2588, 3397, + 3677, 2599, 3394, + 3674, 2613, 3389, + 3670, 2632, 3384, + 3665, 2656, 3376, + 3658, 2686, 3366, + 3648, 2723, 3351, + 3634, 2768, 3332, + 3615, 2823, 3304, + 3589, 2886, 3263, + 3551, 2960, 3203, + 3495, 3042, 3108, + 3408, 3134, 2938, + 3255, 3233, 2512, + 2910, 3338, 0, + 0, 3449, 0, + 0, 3565, 0, + 0, 3685, 0, + 3819, 2672, 3534, + 3819, 2672, 3534, + 3819, 2672, 3534, + 3819, 2672, 3534, + 3818, 2673, 3533, + 3818, 2673, 3533, + 3818, 2674, 3533, + 3818, 2675, 3533, + 3818, 2676, 3533, + 3818, 2678, 3532, + 3817, 2680, 3532, + 3817, 2683, 3531, + 3816, 2686, 3530, + 3815, 2691, 3529, + 3814, 2698, 3527, + 3812, 2707, 3525, + 3810, 2718, 3522, + 3807, 2733, 3517, + 3803, 2752, 3512, + 3798, 2776, 3504, + 3791, 2807, 3494, + 3781, 2845, 3479, + 3767, 2891, 3459, + 3749, 2947, 3431, + 3722, 3012, 3390, + 3685, 3086, 3329, + 3629, 3170, 3232, + 3542, 3262, 3059, + 3390, 3362, 2616, + 3048, 3468, 0, + 0, 3580, 0, + 0, 3696, 0, + 3952, 2793, 3663, + 3952, 2793, 3663, + 3952, 2793, 3663, + 3951, 2793, 3663, + 3951, 2793, 3663, + 3951, 2794, 3663, + 3951, 2794, 3663, + 3951, 2795, 3662, + 3951, 2796, 3662, + 3951, 2797, 3662, + 3951, 2799, 3661, + 3950, 2801, 3661, + 3950, 2804, 3660, + 3949, 2808, 3659, + 3948, 2813, 3658, + 3947, 2820, 3656, + 3945, 2829, 3654, + 3943, 2840, 3651, + 3940, 2856, 3646, + 3936, 2875, 3641, + 3931, 2900, 3633, + 3924, 2931, 3622, + 3914, 2970, 3608, + 3900, 3017, 3588, + 3882, 3073, 3559, + 3856, 3139, 3518, + 3818, 3214, 3457, + 3762, 3298, 3359, + 3675, 3391, 3182, + 3524, 3491, 2725, + 3184, 3598, 0, + 0, 3710, 0, + 4084, 2916, 3793, + 4084, 2916, 3793, + 4084, 2916, 3793, + 4084, 2917, 3793, + 4084, 2917, 3793, + 4084, 2917, 3793, + 4084, 2918, 3793, + 4084, 2918, 3792, + 4084, 2919, 3792, + 4084, 2920, 3792, + 4083, 2921, 3792, + 4083, 2923, 3791, + 4083, 2925, 3791, + 4082, 2928, 3790, + 4082, 2932, 3789, + 4081, 2937, 3788, + 4080, 2944, 3786, + 4078, 2953, 3784, + 4076, 2965, 3781, + 4073, 2980, 3776, + 4069, 3000, 3771, + 4064, 3025, 3763, + 4056, 3057, 3752, + 4047, 3096, 3738, + 4033, 3144, 3717, + 4015, 3201, 3689, + 3988, 3267, 3647, + 3951, 3343, 3585, + 3895, 3428, 3486, + 3808, 3521, 3308, + 3658, 3622, 2839, + 3320, 3729, 0, + 4095, 3042, 3923, + 4095, 3042, 3923, + 4095, 3042, 3923, + 4095, 3042, 3923, + 4095, 3042, 3923, + 4095, 3043, 3923, + 4095, 3043, 3923, + 4095, 3043, 3923, + 4095, 3044, 3923, + 4095, 3045, 3923, + 4095, 3046, 3922, + 4095, 3047, 3922, + 4095, 3049, 3922, + 4095, 3051, 3921, + 4095, 3054, 3920, + 4095, 3058, 3919, + 4095, 3063, 3918, + 4095, 3070, 3916, + 4095, 3079, 3914, + 4095, 3091, 3911, + 4095, 3107, 3907, + 4095, 3127, 3901, + 4095, 3152, 3893, + 4095, 3184, 3882, + 4095, 3224, 3868, + 4095, 3272, 3847, + 4095, 3329, 3819, + 4095, 3396, 3777, + 4084, 3472, 3715, + 4028, 3558, 3615, + 3941, 3651, 3435, + 3791, 3752, 2958, + 4095, 3169, 4054, + 4095, 3169, 4054, + 4095, 3169, 4054, + 4095, 3169, 4054, + 4095, 3169, 4054, + 4095, 3170, 4054, + 4095, 3170, 4054, + 4095, 3170, 4054, + 4095, 3171, 4054, + 4095, 3171, 4054, + 4095, 3172, 4054, + 4095, 3173, 4053, + 4095, 3174, 4053, + 4095, 3176, 4053, + 4095, 3178, 4052, + 4095, 3181, 4051, + 4095, 3185, 4050, + 4095, 3191, 4049, + 4095, 3198, 4047, + 4095, 3207, 4045, + 4095, 3219, 4042, + 4095, 3235, 4037, + 4095, 3255, 4032, + 4095, 3281, 4024, + 4095, 3313, 4013, + 4095, 3353, 3998, + 4095, 3401, 3978, + 4095, 3459, 3949, + 4095, 3526, 3907, + 4095, 3602, 3845, + 4095, 3688, 3745, + 4074, 3782, 3564, + 0, 1736, 2002, + 0, 1737, 2001, + 0, 1739, 2000, + 0, 1741, 1998, + 0, 1744, 1995, + 0, 1748, 1991, + 0, 1753, 1986, + 0, 1760, 1979, + 0, 1769, 1970, + 0, 1781, 1958, + 0, 1796, 1940, + 0, 1816, 1916, + 0, 1841, 1881, + 0, 1872, 1830, + 0, 1911, 1752, + 0, 1958, 1620, + 0, 2015, 1347, + 0, 2080, 0, + 0, 2156, 0, + 0, 2240, 0, + 0, 2333, 0, + 0, 2434, 0, + 0, 2541, 0, + 0, 2653, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 0, 1737, 2004, + 0, 1738, 2003, + 0, 1739, 2001, + 0, 1742, 1999, + 0, 1745, 1997, + 0, 1749, 1993, + 0, 1754, 1988, + 0, 1761, 1981, + 0, 1769, 1972, + 0, 1781, 1960, + 0, 1796, 1942, + 0, 1816, 1918, + 0, 1841, 1883, + 0, 1872, 1833, + 0, 1911, 1755, + 0, 1958, 1624, + 0, 2015, 1354, + 0, 2081, 0, + 0, 2156, 0, + 0, 2241, 0, + 0, 2333, 0, + 0, 2434, 0, + 0, 2541, 0, + 0, 2653, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 0, 1737, 2006, + 0, 1738, 2005, + 0, 1740, 2004, + 0, 1742, 2002, + 0, 1745, 1999, + 0, 1749, 1995, + 0, 1754, 1990, + 0, 1761, 1984, + 0, 1770, 1974, + 0, 1782, 1962, + 0, 1797, 1945, + 0, 1817, 1921, + 0, 1841, 1886, + 0, 1873, 1836, + 0, 1912, 1759, + 0, 1959, 1629, + 0, 2015, 1363, + 0, 2081, 0, + 0, 2156, 0, + 0, 2241, 0, + 0, 2334, 0, + 0, 2434, 0, + 0, 2541, 0, + 0, 2653, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 0, 1738, 2009, + 0, 1739, 2008, + 0, 1741, 2007, + 0, 1743, 2005, + 0, 1746, 2002, + 0, 1750, 1998, + 0, 1755, 1993, + 0, 1762, 1987, + 0, 1771, 1978, + 0, 1782, 1965, + 0, 1798, 1948, + 0, 1817, 1924, + 0, 1842, 1890, + 0, 1873, 1840, + 0, 1912, 1764, + 0, 1959, 1636, + 0, 2015, 1375, + 0, 2081, 0, + 0, 2157, 0, + 0, 2241, 0, + 0, 2334, 0, + 0, 2434, 0, + 0, 2541, 0, + 0, 2653, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 0, 1739, 2013, + 0, 1740, 2012, + 0, 1742, 2011, + 0, 1744, 2009, + 0, 1747, 2006, + 0, 1751, 2002, + 0, 1756, 1997, + 0, 1763, 1991, + 0, 1772, 1982, + 0, 1783, 1970, + 0, 1798, 1953, + 0, 1818, 1929, + 0, 1843, 1895, + 0, 1874, 1846, + 0, 1913, 1771, + 0, 1960, 1645, + 0, 2016, 1391, + 0, 2082, 0, + 0, 2157, 0, + 0, 2241, 0, + 0, 2334, 0, + 0, 2434, 0, + 0, 2541, 0, + 0, 2653, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 0, 1740, 2018, + 0, 1741, 2017, + 0, 1743, 2016, + 0, 1745, 2014, + 0, 1748, 2011, + 0, 1752, 2008, + 0, 1757, 2003, + 0, 1764, 1996, + 0, 1773, 1988, + 0, 1785, 1975, + 0, 1800, 1959, + 0, 1819, 1935, + 0, 1844, 1902, + 0, 1875, 1854, + 0, 1914, 1779, + 0, 1961, 1656, + 0, 2017, 1412, + 0, 2082, 13, + 0, 2157, 0, + 0, 2242, 0, + 0, 2334, 0, + 0, 2435, 0, + 0, 2541, 0, + 0, 2654, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 0, 1742, 2025, + 0, 1743, 2024, + 0, 1745, 2023, + 0, 1747, 2021, + 0, 1750, 2018, + 0, 1754, 2015, + 0, 1759, 2010, + 0, 1766, 2004, + 0, 1775, 1995, + 0, 1786, 1983, + 0, 1801, 1967, + 0, 1821, 1944, + 0, 1845, 1911, + 0, 1876, 1864, + 0, 1915, 1791, + 0, 1962, 1672, + 0, 2018, 1438, + 0, 2083, 386, + 0, 2158, 0, + 0, 2242, 0, + 0, 2335, 0, + 0, 2435, 0, + 0, 2542, 0, + 0, 2654, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3139, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3523, 0, + 0, 3652, 0, + 0, 1744, 2035, + 0, 1746, 2033, + 0, 1747, 2032, + 0, 1749, 2030, + 0, 1752, 2028, + 0, 1756, 2024, + 0, 1761, 2020, + 0, 1768, 2013, + 0, 1777, 2005, + 0, 1788, 1993, + 0, 1803, 1977, + 0, 1823, 1955, + 0, 1847, 1923, + 0, 1878, 1877, + 0, 1917, 1806, + 0, 1963, 1691, + 0, 2019, 1470, + 0, 2084, 640, + 0, 2159, 0, + 0, 2243, 0, + 0, 2336, 0, + 0, 2436, 0, + 0, 2542, 0, + 0, 2654, 0, + 0, 2771, 0, + 0, 2891, 0, + 0, 3014, 0, + 0, 3139, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3523, 0, + 0, 3652, 0, + 0, 1748, 2046, + 0, 1749, 2045, + 0, 1750, 2044, + 0, 1753, 2042, + 0, 1755, 2040, + 0, 1759, 2036, + 0, 1764, 2032, + 0, 1771, 2026, + 0, 1780, 2018, + 0, 1791, 2006, + 0, 1806, 1991, + 0, 1825, 1969, + 0, 1850, 1938, + 0, 1881, 1893, + 0, 1919, 1826, + 0, 1965, 1716, + 0, 2021, 1510, + 0, 2086, 846, + 0, 2160, 0, + 0, 2244, 0, + 0, 2336, 0, + 0, 2436, 0, + 0, 2543, 0, + 0, 2655, 0, + 0, 2771, 0, + 0, 2891, 0, + 0, 3014, 0, + 0, 3139, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3652, 0, + 0, 1752, 2062, + 0, 1753, 2061, + 0, 1755, 2060, + 0, 1757, 2058, + 0, 1760, 2055, + 0, 1763, 2052, + 0, 1768, 2048, + 0, 1775, 2042, + 0, 1784, 2034, + 0, 1795, 2023, + 0, 1810, 2008, + 0, 1829, 1987, + 0, 1853, 1958, + 0, 1884, 1915, + 0, 1922, 1851, + 0, 1968, 1748, + 0, 2023, 1559, + 0, 2088, 1026, + 0, 2162, 0, + 0, 2246, 0, + 0, 2338, 0, + 0, 2437, 0, + 0, 2543, 0, + 0, 2655, 0, + 0, 2771, 0, + 0, 2891, 0, + 0, 3014, 0, + 0, 3139, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3652, 0, + 0, 1757, 2082, + 0, 1759, 2081, + 0, 1760, 2080, + 0, 1762, 2078, + 0, 1765, 2076, + 0, 1769, 2073, + 0, 1774, 2068, + 0, 1780, 2063, + 0, 1789, 2055, + 0, 1800, 2045, + 0, 1815, 2030, + 0, 1834, 2011, + 0, 1858, 1983, + 0, 1888, 1942, + 0, 1925, 1882, + 0, 1971, 1787, + 0, 2026, 1616, + 0, 2090, 1191, + 0, 2164, 0, + 0, 2247, 0, + 0, 2339, 0, + 0, 2438, 0, + 0, 2544, 0, + 0, 2656, 0, + 0, 2772, 0, + 0, 2892, 0, + 0, 3014, 0, + 0, 3139, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3653, 0, + 30, 1765, 2107, + 0, 1766, 2106, + 0, 1767, 2105, + 0, 1770, 2103, + 0, 1772, 2101, + 0, 1776, 2098, + 0, 1781, 2094, + 0, 1787, 2089, + 0, 1796, 2082, + 0, 1807, 2072, + 0, 1821, 2059, + 0, 1840, 2040, + 0, 1864, 2014, + 0, 1893, 1976, + 0, 1931, 1921, + 0, 1976, 1834, + 0, 2030, 1684, + 0, 2094, 1346, + 0, 2167, 0, + 0, 2250, 0, + 0, 2341, 0, + 0, 2440, 0, + 0, 2546, 0, + 0, 2657, 0, + 0, 2773, 0, + 0, 2892, 0, + 0, 3015, 0, + 0, 3140, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3653, 0, + 1247, 1774, 2139, + 1239, 1775, 2138, + 1228, 1777, 2137, + 1213, 1779, 2136, + 1193, 1782, 2133, + 1163, 1785, 2131, + 1121, 1790, 2127, + 1058, 1796, 2122, + 956, 1805, 2116, + 771, 1816, 2106, + 265, 1830, 2094, + 0, 1848, 2077, + 0, 1871, 2053, + 0, 1901, 2018, + 0, 1937, 1968, + 0, 1982, 1890, + 0, 2036, 1760, + 0, 2099, 1495, + 0, 2171, 0, + 0, 2253, 0, + 0, 2344, 0, + 0, 2442, 0, + 0, 2547, 0, + 0, 2658, 0, + 0, 2774, 0, + 0, 2893, 0, + 0, 3015, 0, + 0, 3140, 0, + 0, 3267, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3653, 0, + 1614, 1787, 2178, + 1611, 1788, 2178, + 1606, 1790, 2177, + 1600, 1792, 2175, + 1591, 1794, 2173, + 1579, 1798, 2171, + 1563, 1802, 2167, + 1540, 1808, 2163, + 1507, 1817, 2157, + 1459, 1827, 2149, + 1387, 1841, 2137, + 1267, 1859, 2122, + 1031, 1881, 2100, + 0, 1910, 2069, + 0, 1946, 2024, + 0, 1990, 1956, + 0, 2043, 1846, + 0, 2105, 1639, + 0, 2177, 963, + 0, 2258, 0, + 0, 2348, 0, + 0, 2445, 0, + 0, 2550, 0, + 0, 2660, 0, + 0, 2775, 0, + 0, 2894, 0, + 0, 3016, 0, + 0, 3141, 0, + 0, 3267, 0, + 0, 3395, 0, + 0, 3523, 0, + 0, 3653, 0, + 1867, 1803, 2226, + 1865, 1804, 2225, + 1862, 1806, 2224, + 1858, 1808, 2223, + 1853, 1810, 2222, + 1847, 1814, 2219, + 1838, 1818, 2216, + 1825, 1824, 2212, + 1808, 1832, 2207, + 1784, 1842, 2199, + 1750, 1855, 2189, + 1700, 1873, 2175, + 1623, 1895, 2156, + 1494, 1923, 2129, + 1232, 1958, 2090, + 0, 2000, 2032, + 0, 2052, 1940, + 0, 2113, 1780, + 0, 2184, 1399, + 0, 2264, 0, + 0, 2352, 0, + 0, 2449, 0, + 0, 2553, 0, + 0, 2663, 0, + 0, 2777, 0, + 0, 2896, 0, + 0, 3017, 0, + 0, 3142, 0, + 0, 3268, 0, + 0, 3395, 0, + 0, 3524, 0, + 0, 3653, 0, + 2071, 1824, 2283, + 2070, 1825, 2282, + 2068, 1827, 2282, + 2066, 1828, 2281, + 2063, 1831, 2279, + 2059, 1834, 2277, + 2053, 1838, 2274, + 2046, 1844, 2271, + 2035, 1851, 2266, + 2021, 1861, 2260, + 2001, 1874, 2251, + 1973, 1891, 2239, + 1932, 1912, 2222, + 1871, 1939, 2198, + 1775, 1973, 2165, + 1602, 2014, 2117, + 1165, 2064, 2042, + 0, 2124, 1918, + 0, 2193, 1672, + 0, 2271, 186, + 0, 2359, 0, + 0, 2454, 0, + 0, 2557, 0, + 0, 2666, 0, + 0, 2780, 0, + 0, 2898, 0, + 0, 3019, 0, + 0, 3143, 0, + 0, 3268, 0, + 0, 3396, 0, + 0, 3524, 0, + 0, 3654, 0, + 2251, 1851, 2350, + 2250, 1852, 2349, + 2249, 1853, 2348, + 2248, 1855, 2347, + 2246, 1857, 2346, + 2243, 1860, 2344, + 2239, 1864, 2342, + 2234, 1869, 2339, + 2227, 1877, 2335, + 2218, 1886, 2329, + 2205, 1898, 2322, + 2187, 1914, 2311, + 2162, 1934, 2297, + 2127, 1960, 2277, + 2074, 1992, 2250, + 1993, 2032, 2210, + 1855, 2080, 2150, + 1563, 2138, 2055, + 0, 2205, 1887, + 0, 2281, 1471, + 0, 2367, 0, + 0, 2461, 0, + 0, 2562, 0, + 0, 2670, 0, + 0, 2783, 0, + 0, 2900, 0, + 0, 3021, 0, + 0, 3144, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 2416, 1884, 2425, + 2415, 1885, 2425, + 2415, 1886, 2424, + 2413, 1888, 2424, + 2412, 1890, 2423, + 2410, 1893, 2421, + 2408, 1896, 2419, + 2404, 1901, 2417, + 2399, 1908, 2413, + 2393, 1917, 2408, + 2384, 1928, 2402, + 2372, 1943, 2393, + 2356, 1962, 2382, + 2333, 1986, 2365, + 2300, 2017, 2342, + 2253, 2054, 2310, + 2180, 2101, 2263, + 2060, 2156, 2191, + 1826, 2220, 2072, + 763, 2295, 1841, + 0, 2378, 850, + 0, 2470, 0, + 0, 2570, 0, + 0, 2676, 0, + 0, 2787, 0, + 0, 2904, 0, + 0, 3023, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 2571, 1925, 2511, + 2571, 1926, 2510, + 2570, 1927, 2510, + 2569, 1928, 2509, + 2568, 1930, 2508, + 2567, 1933, 2507, + 2565, 1936, 2505, + 2563, 1941, 2503, + 2559, 1947, 2500, + 2555, 1955, 2496, + 2549, 1965, 2491, + 2540, 1979, 2484, + 2529, 1997, 2474, + 2514, 2019, 2461, + 2492, 2048, 2443, + 2461, 2083, 2417, + 2417, 2126, 2380, + 2350, 2179, 2326, + 2240, 2240, 2240, + 2036, 2312, 2094, + 1384, 2392, 1771, + 0, 2482, 0, + 0, 2579, 0, + 0, 2683, 0, + 0, 2793, 0, + 0, 2908, 0, + 0, 3027, 0, + 0, 3149, 0, + 0, 3273, 0, + 0, 3399, 0, + 0, 3527, 0, + 0, 3656, 0, + 2720, 1975, 2604, + 2719, 1975, 2604, + 2719, 1976, 2603, + 2718, 1978, 2603, + 2718, 1979, 2602, + 2717, 1982, 2601, + 2715, 1985, 2600, + 2713, 1989, 2598, + 2711, 1994, 2596, + 2708, 2002, 2593, + 2704, 2011, 2588, + 2698, 2023, 2583, + 2690, 2039, 2575, + 2679, 2060, 2564, + 2664, 2086, 2550, + 2643, 2119, 2529, + 2614, 2159, 2501, + 2571, 2208, 2460, + 2508, 2266, 2398, + 2405, 2333, 2299, + 2218, 2411, 2122, + 1698, 2497, 1658, + 0, 2591, 0, + 0, 2693, 0, + 0, 2801, 0, + 0, 2914, 0, + 0, 3032, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3529, 0, + 0, 3657, 0, + 2864, 2033, 2705, + 2863, 2034, 2705, + 2863, 2035, 2704, + 2863, 2036, 2704, + 2862, 2038, 2703, + 2861, 2040, 2703, + 2860, 2042, 2702, + 2859, 2046, 2700, + 2857, 2051, 2698, + 2855, 2057, 2696, + 2852, 2066, 2692, + 2848, 2076, 2688, + 2842, 2091, 2682, + 2834, 2109, 2673, + 2824, 2133, 2662, + 2809, 2162, 2646, + 2789, 2199, 2624, + 2761, 2244, 2593, + 2720, 2298, 2548, + 2658, 2361, 2479, + 2560, 2434, 2368, + 2385, 2516, 2156, + 1930, 2607, 1441, + 0, 2706, 0, + 0, 2811, 0, + 0, 2922, 0, + 0, 3038, 0, + 0, 3157, 0, + 0, 3279, 0, + 0, 3404, 0, + 0, 3531, 0, + 0, 3658, 0, + 3004, 2102, 2812, + 3004, 2102, 2812, + 3004, 2103, 2812, + 3004, 2104, 2811, + 3003, 2105, 2811, + 3003, 2107, 2810, + 3002, 2110, 2810, + 3001, 2113, 2808, + 3000, 2117, 2807, + 2998, 2122, 2805, + 2996, 2130, 2802, + 2993, 2139, 2799, + 2989, 2152, 2794, + 2983, 2168, 2787, + 2976, 2188, 2779, + 2965, 2215, 2766, + 2951, 2248, 2750, + 2931, 2288, 2726, + 2903, 2337, 2693, + 2863, 2396, 2644, + 2804, 2464, 2570, + 2709, 2541, 2446, + 2541, 2628, 2199, + 2125, 2722, 664, + 0, 2824, 0, + 0, 2932, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3660, 0, + 3143, 2180, 2925, + 3143, 2180, 2925, + 3143, 2181, 2924, + 3142, 2182, 2924, + 3142, 2183, 2924, + 3142, 2184, 2923, + 3141, 2186, 2923, + 3141, 2189, 2922, + 3140, 2192, 2921, + 3138, 2197, 2919, + 3137, 2203, 2917, + 3134, 2211, 2914, + 3131, 2222, 2911, + 3127, 2236, 2906, + 3122, 2254, 2899, + 3114, 2276, 2890, + 3104, 2305, 2877, + 3090, 2341, 2859, + 3071, 2385, 2835, + 3043, 2438, 2799, + 3004, 2500, 2748, + 2945, 2572, 2668, + 2853, 2653, 2532, + 2690, 2743, 2250, + 2299, 2841, 0, + 0, 2946, 0, + 0, 3056, 0, + 0, 3171, 0, + 0, 3290, 0, + 0, 3412, 0, + 0, 3537, 0, + 0, 3663, 0, + 3280, 2267, 3042, + 3280, 2267, 3042, + 3280, 2267, 3041, + 3279, 2268, 3041, + 3279, 2269, 3041, + 3279, 2270, 3041, + 3278, 2272, 3040, + 3278, 2274, 3039, + 3277, 2277, 3039, + 3276, 2281, 3037, + 3275, 2286, 3036, + 3273, 2293, 3034, + 3271, 2302, 3031, + 3268, 2313, 3027, + 3264, 2328, 3022, + 3259, 2348, 3015, + 3251, 2373, 3005, + 3241, 2404, 2992, + 3227, 2442, 2974, + 3208, 2489, 2948, + 3181, 2545, 2911, + 3142, 2611, 2857, + 3085, 2686, 2773, + 2994, 2770, 2628, + 2835, 2863, 2310, + 2460, 2963, 0, + 0, 3070, 0, + 0, 3182, 0, + 0, 3299, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 3415, 2362, 3162, + 3415, 2362, 3162, + 3415, 2362, 3162, + 3415, 2363, 3162, + 3415, 2364, 3162, + 3415, 2365, 3161, + 3414, 2366, 3161, + 3414, 2368, 3160, + 3414, 2370, 3160, + 3413, 2373, 3159, + 3412, 2377, 3158, + 3411, 2383, 3156, + 3409, 2390, 3154, + 3407, 2400, 3151, + 3404, 2412, 3147, + 3400, 2429, 3142, + 3394, 2449, 3134, + 3387, 2476, 3124, + 3377, 2509, 3111, + 3363, 2550, 3092, + 3344, 2599, 3066, + 3318, 2658, 3028, + 3279, 2726, 2971, + 3222, 2804, 2883, + 3132, 2891, 2730, + 2976, 2985, 2380, + 2613, 3088, 0, + 0, 3196, 0, + 0, 3309, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3550, 2464, 3285, + 3550, 2464, 3285, + 3550, 2464, 3285, + 3550, 2465, 3285, + 3550, 2465, 3285, + 3550, 2466, 3285, + 3549, 2467, 3284, + 3549, 2469, 3284, + 3549, 2471, 3284, + 3548, 2473, 3283, + 3548, 2477, 3282, + 3547, 2481, 3281, + 3545, 2487, 3279, + 3544, 2495, 3277, + 3542, 2505, 3274, + 3539, 2518, 3270, + 3535, 2535, 3264, + 3529, 2557, 3257, + 3522, 2585, 3247, + 3512, 2620, 3233, + 3498, 2663, 3214, + 3479, 2714, 3187, + 3453, 2775, 3148, + 3415, 2845, 3090, + 3358, 2925, 2999, + 3269, 3014, 2838, + 3115, 3110, 2460, + 2760, 3214, 0, + 0, 3323, 0, + 0, 3438, 0, + 0, 3556, 0, + 0, 3678, 0, + 3684, 2572, 3411, + 3684, 2572, 3411, + 3684, 2573, 3411, + 3684, 2573, 3410, + 3684, 2574, 3410, + 3684, 2574, 3410, + 3684, 2575, 3410, + 3683, 2576, 3410, + 3683, 2578, 3409, + 3683, 2580, 3409, + 3682, 2582, 3408, + 3682, 2586, 3407, + 3681, 2591, 3406, + 3679, 2597, 3404, + 3678, 2605, 3402, + 3676, 2616, 3399, + 3673, 2630, 3395, + 3669, 2647, 3389, + 3663, 2670, 3382, + 3656, 2699, 3371, + 3646, 2736, 3357, + 3633, 2780, 3338, + 3614, 2833, 3310, + 3587, 2895, 3270, + 3549, 2967, 3211, + 3493, 3049, 3118, + 3405, 3139, 2952, + 3252, 3237, 2548, + 2902, 3342, 0, + 0, 3452, 0, + 0, 3567, 0, + 0, 3686, 0, + 3818, 2686, 3538, + 3818, 2686, 3538, + 3818, 2686, 3538, + 3818, 2686, 3537, + 3817, 2687, 3537, + 3817, 2687, 3537, + 3817, 2688, 3537, + 3817, 2689, 3537, + 3817, 2690, 3537, + 3817, 2692, 3536, + 3816, 2694, 3536, + 3816, 2696, 3535, + 3815, 2700, 3534, + 3814, 2705, 3533, + 3813, 2711, 3531, + 3811, 2720, 3529, + 3809, 2731, 3526, + 3806, 2745, 3522, + 3802, 2764, 3516, + 3797, 2788, 3508, + 3790, 2818, 3498, + 3780, 2855, 3484, + 3766, 2900, 3464, + 3748, 2955, 3436, + 3721, 3018, 3395, + 3683, 3092, 3335, + 3627, 3174, 3240, + 3540, 3266, 3070, + 3387, 3365, 2644, + 3042, 3470, 0, + 0, 3582, 0, + 0, 3697, 0, + 3951, 2804, 3666, + 3951, 2804, 3666, + 3951, 2804, 3666, + 3951, 2804, 3666, + 3951, 2804, 3666, + 3951, 2805, 3666, + 3951, 2805, 3665, + 3950, 2806, 3665, + 3950, 2807, 3665, + 3950, 2808, 3665, + 3950, 2810, 3664, + 3949, 2812, 3664, + 3949, 2815, 3663, + 3948, 2818, 3662, + 3947, 2823, 3661, + 3946, 2830, 3659, + 3944, 2839, 3657, + 3942, 2850, 3654, + 3939, 2865, 3650, + 3935, 2884, 3644, + 3930, 2909, 3636, + 3923, 2939, 3626, + 3913, 2977, 3611, + 3900, 3024, 3591, + 3881, 3079, 3563, + 3855, 3144, 3522, + 3817, 3218, 3461, + 3761, 3302, 3364, + 3674, 3394, 3191, + 3522, 3494, 2748, + 3180, 3600, 0, + 0, 3712, 0, + 4084, 2925, 3795, + 4084, 2925, 3795, + 4084, 2925, 3795, + 4084, 2925, 3795, + 4084, 2925, 3795, + 4084, 2926, 3795, + 4083, 2926, 3795, + 4083, 2926, 3795, + 4083, 2927, 3794, + 4083, 2928, 3794, + 4083, 2929, 3794, + 4083, 2931, 3794, + 4082, 2933, 3793, + 4082, 2936, 3792, + 4081, 2940, 3791, + 4080, 2945, 3790, + 4079, 2952, 3788, + 4077, 2961, 3786, + 4075, 2972, 3783, + 4072, 2988, 3779, + 4068, 3007, 3773, + 4063, 3032, 3765, + 4056, 3063, 3755, + 4046, 3102, 3740, + 4033, 3149, 3720, + 4014, 3205, 3691, + 3988, 3271, 3650, + 3950, 3346, 3589, + 3894, 3430, 3491, + 3807, 3523, 3314, + 3656, 3623, 2857, + 3317, 3730, 0, + 4095, 3048, 3925, + 4095, 3048, 3925, + 4095, 3048, 3925, + 4095, 3049, 3925, + 4095, 3049, 3925, + 4095, 3049, 3925, + 4095, 3049, 3925, + 4095, 3050, 3925, + 4095, 3050, 3924, + 4095, 3051, 3924, + 4095, 3052, 3924, + 4095, 3053, 3924, + 4095, 3055, 3923, + 4095, 3057, 3923, + 4095, 3060, 3922, + 4095, 3064, 3921, + 4095, 3069, 3920, + 4095, 3076, 3918, + 4095, 3085, 3916, + 4095, 3097, 3913, + 4095, 3112, 3908, + 4095, 3132, 3903, + 4095, 3157, 3895, + 4095, 3189, 3884, + 4095, 3228, 3870, + 4095, 3276, 3849, + 4095, 3333, 3821, + 4095, 3399, 3779, + 4083, 3475, 3717, + 4027, 3560, 3619, + 3940, 3653, 3440, + 3790, 3754, 2972, + 4095, 3174, 4055, + 4095, 3174, 4055, + 4095, 3174, 4055, + 4095, 3174, 4055, + 4095, 3174, 4055, + 4095, 3174, 4055, + 4095, 3175, 4055, + 4095, 3175, 4055, + 4095, 3175, 4055, + 4095, 3176, 4055, + 4095, 3177, 4055, + 4095, 3178, 4055, + 4095, 3179, 4054, + 4095, 3181, 4054, + 4095, 3183, 4053, + 4095, 3186, 4053, + 4095, 3190, 4052, + 4095, 3195, 4050, + 4095, 3202, 4049, + 4095, 3211, 4046, + 4095, 3223, 4043, + 4095, 3239, 4039, + 4095, 3259, 4033, + 4095, 3285, 4025, + 4095, 3317, 4015, + 4095, 3356, 4000, + 4095, 3404, 3979, + 4095, 3461, 3951, + 4095, 3528, 3909, + 4095, 3604, 3847, + 4095, 3690, 3747, + 4073, 3783, 3567, + 0, 1867, 2134, + 0, 1868, 2133, + 0, 1869, 2132, + 0, 1871, 2130, + 0, 1873, 2128, + 0, 1876, 2126, + 0, 1880, 2122, + 0, 1885, 2117, + 0, 1892, 2110, + 0, 1901, 2101, + 0, 1913, 2088, + 0, 1928, 2071, + 0, 1948, 2047, + 0, 1973, 2012, + 0, 2004, 1961, + 0, 2043, 1882, + 0, 2090, 1749, + 0, 2146, 1473, + 0, 2212, 0, + 0, 2288, 0, + 0, 2372, 0, + 0, 2465, 0, + 0, 2566, 0, + 0, 2673, 0, + 0, 2785, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 0, 1867, 2135, + 0, 1868, 2134, + 0, 1869, 2133, + 0, 1871, 2132, + 0, 1873, 2130, + 0, 1876, 2127, + 0, 1880, 2123, + 0, 1885, 2118, + 0, 1892, 2112, + 0, 1901, 2102, + 0, 1913, 2090, + 0, 1928, 2072, + 0, 1948, 2048, + 0, 1973, 2013, + 0, 2004, 1962, + 0, 2043, 1884, + 0, 2090, 1752, + 0, 2147, 1479, + 0, 2213, 0, + 0, 2288, 0, + 0, 2372, 0, + 0, 2465, 0, + 0, 2566, 0, + 0, 2673, 0, + 0, 2785, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 0, 1868, 2137, + 0, 1869, 2136, + 0, 1870, 2135, + 0, 1872, 2133, + 0, 1874, 2131, + 0, 1877, 2129, + 0, 1881, 2125, + 0, 1886, 2120, + 0, 1893, 2113, + 0, 1902, 2104, + 0, 1913, 2092, + 0, 1929, 2074, + 0, 1948, 2050, + 0, 1973, 2016, + 0, 2004, 1965, + 0, 2043, 1887, + 0, 2091, 1756, + 0, 2147, 1486, + 0, 2213, 0, + 0, 2288, 0, + 0, 2373, 0, + 0, 2466, 0, + 0, 2566, 0, + 0, 2673, 0, + 0, 2785, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 0, 1868, 2139, + 0, 1869, 2138, + 0, 1870, 2137, + 0, 1872, 2136, + 0, 1874, 2134, + 0, 1877, 2131, + 0, 1881, 2127, + 0, 1886, 2122, + 0, 1893, 2116, + 0, 1902, 2107, + 0, 1914, 2094, + 0, 1929, 2077, + 0, 1949, 2053, + 0, 1974, 2019, + 0, 2005, 1968, + 0, 2044, 1891, + 0, 2091, 1761, + 0, 2147, 1495, + 0, 2213, 0, + 0, 2288, 0, + 0, 2373, 0, + 0, 2466, 0, + 0, 2566, 0, + 0, 2673, 0, + 0, 2785, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 0, 1869, 2142, + 0, 1870, 2141, + 0, 1871, 2140, + 0, 1873, 2139, + 0, 1875, 2137, + 0, 1878, 2134, + 0, 1882, 2130, + 0, 1887, 2125, + 0, 1894, 2119, + 0, 1903, 2110, + 0, 1915, 2097, + 0, 1930, 2080, + 0, 1949, 2056, + 0, 1974, 2022, + 0, 2005, 1973, + 0, 2044, 1896, + 0, 2091, 1768, + 0, 2148, 1508, + 0, 2213, 0, + 0, 2289, 0, + 0, 2373, 0, + 0, 2466, 0, + 0, 2566, 0, + 0, 2673, 0, + 0, 2785, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 0, 1870, 2146, + 0, 1871, 2145, + 0, 1872, 2144, + 0, 1874, 2143, + 0, 1876, 2141, + 0, 1879, 2138, + 0, 1883, 2134, + 0, 1888, 2130, + 0, 1895, 2123, + 0, 1904, 2114, + 0, 1915, 2102, + 0, 1931, 2085, + 0, 1950, 2061, + 0, 1975, 2028, + 0, 2006, 1978, + 0, 2045, 1903, + 0, 2092, 1777, + 0, 2148, 1523, + 0, 2214, 0, + 0, 2289, 0, + 0, 2373, 0, + 0, 2466, 0, + 0, 2567, 0, + 0, 2673, 0, + 0, 2786, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 0, 1871, 2151, + 0, 1872, 2151, + 0, 1874, 2149, + 0, 1875, 2148, + 0, 1877, 2146, + 0, 1880, 2143, + 0, 1884, 2140, + 0, 1889, 2135, + 0, 1896, 2129, + 0, 1905, 2120, + 0, 1917, 2108, + 0, 1932, 2091, + 0, 1951, 2068, + 0, 1976, 2034, + 0, 2007, 1986, + 0, 2046, 1912, + 0, 2093, 1788, + 0, 2149, 1544, + 0, 2214, 145, + 0, 2290, 0, + 0, 2374, 0, + 0, 2467, 0, + 0, 2567, 0, + 0, 2674, 0, + 0, 2786, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3271, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 0, 1873, 2158, + 0, 1874, 2157, + 0, 1875, 2156, + 0, 1877, 2155, + 0, 1879, 2153, + 0, 1882, 2150, + 0, 1886, 2147, + 0, 1891, 2142, + 0, 1898, 2136, + 0, 1907, 2127, + 0, 1918, 2115, + 0, 1933, 2099, + 0, 1953, 2076, + 0, 1977, 2043, + 0, 2009, 1996, + 0, 2047, 1923, + 0, 2094, 1804, + 0, 2150, 1570, + 0, 2215, 518, + 0, 2290, 0, + 0, 2374, 0, + 0, 2467, 0, + 0, 2567, 0, + 0, 2674, 0, + 0, 2786, 0, + 0, 2902, 0, + 0, 3023, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3397, 0, + 0, 3526, 0, + 0, 3655, 0, + 0, 1876, 2167, + 0, 1876, 2167, + 0, 1878, 2166, + 0, 1879, 2164, + 0, 1882, 2162, + 0, 1884, 2160, + 0, 1888, 2156, + 0, 1893, 2152, + 0, 1900, 2145, + 0, 1909, 2137, + 0, 1920, 2125, + 0, 1935, 2109, + 0, 1955, 2087, + 0, 1979, 2055, + 0, 2010, 2009, + 0, 2049, 1938, + 0, 2095, 1823, + 0, 2151, 1602, + 0, 2216, 772, + 0, 2291, 0, + 0, 2375, 0, + 0, 2468, 0, + 0, 2568, 0, + 0, 2674, 0, + 0, 2786, 0, + 0, 2903, 0, + 0, 3023, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 0, 1879, 2179, + 0, 1880, 2179, + 0, 1881, 2178, + 0, 1883, 2176, + 0, 1885, 2174, + 0, 1888, 2172, + 0, 1891, 2168, + 0, 1896, 2164, + 0, 1903, 2158, + 0, 1912, 2150, + 0, 1923, 2138, + 0, 1938, 2123, + 0, 1957, 2101, + 0, 1982, 2070, + 0, 2013, 2026, + 0, 2051, 1958, + 0, 2097, 1848, + 0, 2153, 1642, + 0, 2218, 978, + 0, 2293, 0, + 0, 2376, 0, + 0, 2469, 0, + 0, 2568, 0, + 0, 2675, 0, + 0, 2787, 0, + 0, 2903, 0, + 0, 3023, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 0, 1883, 2195, + 0, 1884, 2194, + 0, 1885, 2193, + 0, 1887, 2192, + 0, 1889, 2190, + 0, 1892, 2188, + 0, 1895, 2184, + 0, 1900, 2180, + 0, 1907, 2174, + 0, 1916, 2166, + 0, 1927, 2155, + 0, 1942, 2140, + 0, 1961, 2119, + 0, 1985, 2090, + 0, 2016, 2047, + 0, 2054, 1983, + 0, 2100, 1880, + 0, 2155, 1691, + 0, 2220, 1158, + 0, 2294, 0, + 0, 2378, 0, + 0, 2470, 0, + 0, 2569, 0, + 0, 2676, 0, + 0, 2787, 0, + 0, 2904, 0, + 0, 3023, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 0, 1889, 2215, + 0, 1889, 2214, + 0, 1891, 2213, + 0, 1892, 2212, + 0, 1894, 2210, + 0, 1897, 2208, + 0, 1901, 2205, + 0, 1906, 2200, + 0, 1912, 2195, + 0, 1921, 2187, + 0, 1932, 2177, + 0, 1947, 2163, + 0, 1966, 2143, + 0, 1990, 2115, + 0, 2020, 2074, + 0, 2058, 2014, + 0, 2103, 1919, + 0, 2158, 1748, + 0, 2223, 1323, + 0, 2296, 0, + 0, 2380, 0, + 0, 2471, 0, + 0, 2571, 0, + 0, 2677, 0, + 0, 2788, 0, + 0, 2904, 0, + 0, 3024, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 241, 1896, 2240, + 162, 1897, 2239, + 31, 1898, 2238, + 0, 1900, 2237, + 0, 1902, 2236, + 0, 1904, 2233, + 0, 1908, 2230, + 0, 1913, 2227, + 0, 1919, 2221, + 0, 1928, 2214, + 0, 1939, 2204, + 0, 1953, 2191, + 0, 1972, 2172, + 0, 1996, 2146, + 0, 2026, 2108, + 0, 2063, 2053, + 0, 2108, 1966, + 0, 2162, 1816, + 0, 2226, 1478, + 0, 2299, 0, + 0, 2382, 0, + 0, 2473, 0, + 0, 2572, 0, + 0, 2678, 0, + 0, 2789, 0, + 0, 2905, 0, + 0, 3024, 0, + 0, 3147, 0, + 0, 3272, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 1385, 1906, 2272, + 1379, 1906, 2271, + 1371, 1908, 2270, + 1360, 1909, 2269, + 1345, 1911, 2268, + 1325, 1914, 2266, + 1296, 1917, 2263, + 1253, 1922, 2259, + 1190, 1929, 2254, + 1089, 1937, 2248, + 903, 1948, 2239, + 397, 1962, 2226, + 0, 1980, 2209, + 0, 2003, 2185, + 0, 2033, 2150, + 0, 2069, 2100, + 0, 2114, 2023, + 0, 2168, 1893, + 0, 2231, 1627, + 0, 2303, 0, + 0, 2385, 0, + 0, 2476, 0, + 0, 2574, 0, + 0, 2680, 0, + 0, 2790, 0, + 0, 2906, 0, + 0, 3025, 0, + 0, 3148, 0, + 0, 3272, 0, + 0, 3399, 0, + 0, 3526, 0, + 0, 3655, 0, + 1749, 1918, 2311, + 1747, 1919, 2310, + 1743, 1920, 2310, + 1738, 1922, 2309, + 1732, 1924, 2307, + 1723, 1926, 2305, + 1711, 1930, 2303, + 1695, 1934, 2300, + 1672, 1941, 2295, + 1639, 1949, 2289, + 1592, 1959, 2281, + 1519, 1973, 2269, + 1399, 1991, 2254, + 1164, 2014, 2232, + 83, 2042, 2201, + 0, 2078, 2156, + 0, 2122, 2088, + 0, 2175, 1978, + 0, 2237, 1771, + 0, 2309, 1096, + 0, 2390, 0, + 0, 2480, 0, + 0, 2577, 0, + 0, 2682, 0, + 0, 2792, 0, + 0, 2907, 0, + 0, 3026, 0, + 0, 3148, 0, + 0, 3273, 0, + 0, 3399, 0, + 0, 3527, 0, + 0, 3656, 0, + 2000, 1935, 2359, + 1999, 1935, 2358, + 1997, 1936, 2358, + 1994, 1938, 2357, + 1990, 1940, 2355, + 1985, 1942, 2354, + 1979, 1946, 2351, + 1970, 1950, 2348, + 1957, 1956, 2344, + 1940, 1964, 2339, + 1916, 1974, 2331, + 1882, 1988, 2321, + 1832, 2005, 2307, + 1755, 2027, 2288, + 1626, 2055, 2261, + 1364, 2090, 2222, + 0, 2133, 2164, + 0, 2184, 2073, + 0, 2245, 1912, + 0, 2316, 1531, + 0, 2396, 0, + 0, 2484, 0, + 0, 2581, 0, + 0, 2685, 0, + 0, 2795, 0, + 0, 2909, 0, + 0, 3028, 0, + 0, 3149, 0, + 0, 3274, 0, + 0, 3400, 0, + 0, 3527, 0, + 0, 3656, 0, + 2205, 1955, 2416, + 2204, 1956, 2415, + 2202, 1957, 2415, + 2201, 1959, 2414, + 2198, 1960, 2413, + 2195, 1963, 2411, + 2191, 1966, 2409, + 2185, 1970, 2407, + 2178, 1976, 2403, + 2167, 1984, 2398, + 2153, 1993, 2392, + 2133, 2006, 2383, + 2105, 2023, 2371, + 2064, 2044, 2354, + 2003, 2071, 2331, + 1907, 2105, 2297, + 1734, 2146, 2249, + 1297, 2196, 2174, + 0, 2256, 2050, + 0, 2325, 1804, + 0, 2403, 318, + 0, 2491, 0, + 0, 2586, 0, + 0, 2689, 0, + 0, 2798, 0, + 0, 2912, 0, + 0, 3030, 0, + 0, 3151, 0, + 0, 3275, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3656, 0, + 2384, 1982, 2482, + 2383, 1983, 2482, + 2382, 1984, 2481, + 2381, 1985, 2480, + 2380, 1987, 2479, + 2378, 1989, 2478, + 2375, 1992, 2476, + 2371, 1996, 2474, + 2366, 2002, 2471, + 2359, 2009, 2467, + 2350, 2018, 2461, + 2337, 2030, 2454, + 2319, 2046, 2443, + 2294, 2066, 2429, + 2259, 2092, 2410, + 2206, 2124, 2382, + 2125, 2164, 2342, + 1987, 2212, 2282, + 1696, 2270, 2187, + 0, 2337, 2019, + 0, 2414, 1603, + 0, 2499, 0, + 0, 2593, 0, + 0, 2694, 0, + 0, 2802, 0, + 0, 2915, 0, + 0, 3032, 0, + 0, 3153, 0, + 0, 3276, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 2549, 2015, 2558, + 2548, 2016, 2558, + 2547, 2017, 2557, + 2547, 2018, 2557, + 2546, 2020, 2556, + 2544, 2022, 2555, + 2542, 2025, 2553, + 2540, 2029, 2551, + 2536, 2034, 2549, + 2531, 2040, 2545, + 2525, 2049, 2541, + 2516, 2060, 2534, + 2504, 2075, 2526, + 2488, 2094, 2514, + 2465, 2118, 2497, + 2432, 2149, 2475, + 2385, 2187, 2442, + 2312, 2233, 2395, + 2192, 2288, 2323, + 1958, 2352, 2204, + 895, 2427, 1973, + 0, 2510, 982, + 0, 2602, 0, + 0, 2702, 0, + 0, 2808, 0, + 0, 2919, 0, + 0, 3036, 0, + 0, 3156, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 2703, 2056, 2643, + 2703, 2057, 2643, + 2703, 2058, 2642, + 2702, 2059, 2642, + 2701, 2060, 2641, + 2700, 2062, 2640, + 2699, 2065, 2639, + 2697, 2068, 2637, + 2695, 2073, 2635, + 2691, 2079, 2632, + 2687, 2087, 2629, + 2681, 2097, 2623, + 2673, 2111, 2616, + 2661, 2129, 2607, + 2646, 2151, 2593, + 2624, 2180, 2575, + 2593, 2215, 2549, + 2549, 2259, 2512, + 2482, 2311, 2458, + 2373, 2373, 2373, + 2168, 2444, 2226, + 1516, 2524, 1903, + 0, 2614, 0, + 0, 2711, 0, + 0, 2815, 0, + 0, 2925, 0, + 0, 3040, 0, + 0, 3159, 0, + 0, 3281, 0, + 0, 3405, 0, + 0, 3531, 0, + 0, 3659, 0, + 2852, 2106, 2736, + 2852, 2107, 2736, + 2851, 2107, 2736, + 2851, 2108, 2735, + 2850, 2110, 2735, + 2850, 2111, 2734, + 2849, 2114, 2733, + 2847, 2117, 2732, + 2846, 2121, 2730, + 2843, 2126, 2728, + 2840, 2134, 2725, + 2836, 2143, 2720, + 2830, 2155, 2715, + 2822, 2171, 2707, + 2811, 2192, 2696, + 2796, 2218, 2682, + 2775, 2251, 2662, + 2746, 2291, 2633, + 2703, 2340, 2592, + 2640, 2398, 2530, + 2537, 2466, 2431, + 2350, 2543, 2254, + 1830, 2629, 1790, + 0, 2723, 0, + 0, 2825, 0, + 0, 2933, 0, + 0, 3046, 0, + 0, 3164, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3661, 0, + 2996, 2165, 2837, + 2996, 2165, 2837, + 2995, 2166, 2837, + 2995, 2167, 2836, + 2995, 2168, 2836, + 2994, 2170, 2835, + 2994, 2172, 2835, + 2993, 2174, 2834, + 2991, 2178, 2832, + 2990, 2183, 2830, + 2987, 2189, 2828, + 2984, 2198, 2825, + 2980, 2209, 2820, + 2974, 2223, 2814, + 2966, 2241, 2805, + 2956, 2265, 2794, + 2941, 2294, 2778, + 2921, 2331, 2756, + 2893, 2376, 2725, + 2852, 2430, 2680, + 2790, 2493, 2611, + 2693, 2566, 2500, + 2517, 2648, 2288, + 2062, 2739, 1573, + 0, 2838, 0, + 0, 2943, 0, + 0, 3054, 0, + 0, 3170, 0, + 0, 3289, 0, + 0, 3412, 0, + 0, 3536, 0, + 0, 3663, 0, + 3137, 2233, 2944, + 3136, 2234, 2944, + 3136, 2234, 2944, + 3136, 2235, 2944, + 3136, 2236, 2944, + 3135, 2238, 2943, + 3135, 2239, 2942, + 3134, 2242, 2942, + 3133, 2245, 2941, + 3132, 2249, 2939, + 3130, 2254, 2937, + 3128, 2262, 2934, + 3125, 2271, 2931, + 3121, 2284, 2926, + 3115, 2300, 2920, + 3108, 2320, 2911, + 3097, 2347, 2899, + 3083, 2380, 2882, + 3063, 2420, 2858, + 3036, 2469, 2825, + 2996, 2528, 2776, + 2936, 2596, 2702, + 2841, 2673, 2578, + 2673, 2760, 2331, + 2257, 2854, 796, + 0, 2956, 0, + 0, 3064, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3275, 2311, 3057, + 3275, 2312, 3057, + 3275, 2312, 3057, + 3275, 2313, 3057, + 3275, 2314, 3056, + 3274, 2315, 3056, + 3274, 2316, 3055, + 3273, 2318, 3055, + 3273, 2321, 3054, + 3272, 2324, 3053, + 3270, 2329, 3051, + 3269, 2335, 3049, + 3267, 2343, 3046, + 3263, 2354, 3043, + 3259, 2368, 3038, + 3254, 2386, 3031, + 3246, 2409, 3022, + 3236, 2437, 3009, + 3222, 2473, 2991, + 3203, 2517, 2967, + 3175, 2570, 2931, + 3136, 2633, 2880, + 3078, 2704, 2800, + 2985, 2786, 2665, + 2822, 2875, 2382, + 2431, 2973, 0, + 0, 3078, 0, + 0, 3188, 0, + 0, 3303, 0, + 0, 3422, 0, + 0, 3545, 0, + 0, 3669, 0, + 3412, 2398, 3174, + 3412, 2399, 3174, + 3412, 2399, 3174, + 3412, 2400, 3174, + 3411, 2400, 3173, + 3411, 2401, 3173, + 3411, 2402, 3173, + 3411, 2404, 3172, + 3410, 2406, 3172, + 3409, 2409, 3171, + 3408, 2413, 3170, + 3407, 2418, 3168, + 3406, 2425, 3166, + 3403, 2434, 3163, + 3400, 2445, 3159, + 3396, 2461, 3154, + 3391, 2480, 3147, + 3383, 2505, 3137, + 3373, 2536, 3124, + 3360, 2574, 3106, + 3340, 2621, 3080, + 3313, 2677, 3043, + 3275, 2743, 2989, + 3217, 2818, 2905, + 3126, 2902, 2760, + 2967, 2995, 2442, + 2592, 3095, 0, + 0, 3202, 0, + 0, 3314, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 3547, 2493, 3294, + 3547, 2494, 3294, + 3547, 2494, 3294, + 3547, 2494, 3294, + 3547, 2495, 3294, + 3547, 2496, 3294, + 3547, 2497, 3293, + 3547, 2498, 3293, + 3546, 2500, 3293, + 3546, 2502, 3292, + 3545, 2505, 3291, + 3544, 2510, 3290, + 3543, 2515, 3288, + 3541, 2522, 3286, + 3539, 2532, 3283, + 3536, 2545, 3279, + 3532, 2561, 3274, + 3527, 2582, 3266, + 3519, 2608, 3257, + 3509, 2641, 3243, + 3496, 2682, 3224, + 3476, 2731, 3198, + 3450, 2790, 3160, + 3411, 2858, 3103, + 3354, 2936, 3015, + 3265, 3023, 2862, + 3108, 3118, 2512, + 2745, 3220, 0, + 0, 3328, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3682, 2596, 3418, + 3682, 2596, 3417, + 3682, 2596, 3417, + 3682, 2597, 3417, + 3682, 2597, 3417, + 3682, 2598, 3417, + 3682, 2598, 3417, + 3681, 2599, 3417, + 3681, 2601, 3416, + 3681, 2603, 3416, + 3680, 2605, 3415, + 3680, 2609, 3414, + 3679, 2613, 3413, + 3677, 2619, 3411, + 3676, 2627, 3409, + 3674, 2637, 3406, + 3671, 2650, 3402, + 3667, 2667, 3396, + 3661, 2689, 3389, + 3654, 2717, 3379, + 3644, 2752, 3365, + 3630, 2795, 3346, + 3612, 2846, 3319, + 3585, 2907, 3280, + 3547, 2977, 3222, + 3490, 3057, 3131, + 3401, 3146, 2970, + 3247, 3242, 2592, + 2892, 3346, 0, + 0, 3456, 0, + 0, 3570, 0, + 0, 3689, 0, + 3816, 2704, 3543, + 3816, 2704, 3543, + 3816, 2705, 3543, + 3816, 2705, 3543, + 3816, 2705, 3543, + 3816, 2706, 3542, + 3816, 2706, 3542, + 3816, 2707, 3542, + 3815, 2708, 3542, + 3815, 2710, 3541, + 3815, 2712, 3541, + 3814, 2714, 3540, + 3814, 2718, 3539, + 3813, 2723, 3538, + 3811, 2729, 3536, + 3810, 2737, 3534, + 3808, 2748, 3531, + 3805, 2762, 3527, + 3801, 2780, 3521, + 3795, 2803, 3514, + 3788, 2832, 3504, + 3778, 2868, 3489, + 3765, 2912, 3470, + 3746, 2965, 3442, + 3719, 3027, 3403, + 3681, 3099, 3343, + 3625, 3181, 3250, + 3537, 3271, 3084, + 3384, 3369, 2680, + 3034, 3474, 0, + 0, 3584, 0, + 0, 3699, 0, + 3950, 2818, 3670, + 3950, 2818, 3670, + 3950, 2818, 3670, + 3950, 2818, 3670, + 3950, 2819, 3670, + 3950, 2819, 3669, + 3949, 2819, 3669, + 3949, 2820, 3669, + 3949, 2821, 3669, + 3949, 2822, 3669, + 3949, 2824, 3668, + 3948, 2826, 3668, + 3948, 2829, 3667, + 3947, 2832, 3666, + 3946, 2837, 3665, + 3945, 2844, 3663, + 3943, 2852, 3661, + 3941, 2863, 3658, + 3938, 2878, 3654, + 3934, 2896, 3648, + 3929, 2920, 3640, + 3922, 2950, 3630, + 3912, 2987, 3616, + 3898, 3032, 3596, + 3880, 3087, 3568, + 3853, 3151, 3528, + 3815, 3224, 3467, + 3759, 3307, 3372, + 3672, 3398, 3202, + 3520, 3497, 2776, + 3174, 3602, 0, + 0, 3714, 0, + 4083, 2936, 3798, + 4083, 2936, 3798, + 4083, 2936, 3798, + 4083, 2936, 3798, + 4083, 2936, 3798, + 4083, 2936, 3798, + 4083, 2937, 3798, + 4083, 2937, 3798, + 4082, 2938, 3797, + 4082, 2939, 3797, + 4082, 2940, 3797, + 4082, 2942, 3796, + 4081, 2944, 3796, + 4081, 2947, 3795, + 4080, 2951, 3794, + 4079, 2956, 3793, + 4078, 2962, 3791, + 4077, 2971, 3789, + 4074, 2982, 3786, + 4071, 2997, 3782, + 4068, 3016, 3776, + 4062, 3041, 3768, + 4055, 3071, 3758, + 4045, 3109, 3743, + 4032, 3156, 3723, + 4013, 3211, 3695, + 3987, 3276, 3654, + 3949, 3350, 3593, + 3893, 3434, 3496, + 3806, 3526, 3323, + 3654, 3626, 2880, + 3312, 3732, 0, + 4095, 3057, 3927, + 4095, 3057, 3927, + 4095, 3057, 3927, + 4095, 3057, 3927, + 4095, 3057, 3927, + 4095, 3057, 3927, + 4095, 3058, 3927, + 4095, 3058, 3927, + 4095, 3059, 3927, + 4095, 3059, 3927, + 4095, 3060, 3926, + 4095, 3061, 3926, + 4095, 3063, 3926, + 4095, 3065, 3925, + 4095, 3068, 3924, + 4095, 3072, 3923, + 4095, 3077, 3922, + 4095, 3084, 3920, + 4095, 3093, 3918, + 4095, 3105, 3915, + 4095, 3120, 3911, + 4095, 3139, 3905, + 4095, 3164, 3897, + 4095, 3195, 3887, + 4095, 3234, 3872, + 4095, 3281, 3852, + 4095, 3337, 3823, + 4095, 3403, 3782, + 4082, 3478, 3721, + 4026, 3562, 3623, + 3939, 3655, 3446, + 3788, 3755, 2989, + 4095, 3180, 4057, + 4095, 3180, 4057, + 4095, 3180, 4057, + 4095, 3181, 4057, + 4095, 3181, 4057, + 4095, 3181, 4057, + 4095, 3181, 4057, + 4095, 3181, 4057, + 4095, 3182, 4057, + 4095, 3182, 4057, + 4095, 3183, 4056, + 4095, 3184, 4056, + 4095, 3185, 4056, + 4095, 3187, 4055, + 4095, 3189, 4055, + 4095, 3192, 4054, + 4095, 3196, 4053, + 4095, 3201, 4052, + 4095, 3208, 4050, + 4095, 3217, 4048, + 4095, 3229, 4045, + 4095, 3245, 4040, + 4095, 3264, 4035, + 4095, 3290, 4027, + 4095, 3321, 4016, + 4095, 3360, 4002, + 4095, 3408, 3981, + 4095, 3465, 3953, + 4095, 3531, 3911, + 4095, 3607, 3849, + 4095, 3692, 3751, + 4073, 3785, 3572, + 0, 1998, 2266, + 0, 1999, 2265, + 0, 2000, 2264, + 0, 2001, 2263, + 0, 2003, 2262, + 0, 2005, 2260, + 0, 2008, 2257, + 0, 2012, 2253, + 0, 2017, 2248, + 0, 2024, 2241, + 0, 2033, 2232, + 0, 2045, 2219, + 0, 2060, 2202, + 0, 2079, 2177, + 0, 2104, 2143, + 0, 2136, 2091, + 0, 2175, 2012, + 0, 2222, 1879, + 0, 2278, 1601, + 0, 2344, 0, + 0, 2420, 0, + 0, 2504, 0, + 0, 2597, 0, + 0, 2698, 0, + 0, 2805, 0, + 0, 2917, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 0, 1998, 2267, + 0, 1999, 2266, + 0, 2000, 2265, + 0, 2001, 2264, + 0, 2003, 2263, + 0, 2005, 2260, + 0, 2008, 2258, + 0, 2012, 2254, + 0, 2017, 2249, + 0, 2024, 2242, + 0, 2033, 2233, + 0, 2045, 2220, + 0, 2060, 2203, + 0, 2080, 2179, + 0, 2105, 2144, + 0, 2136, 2093, + 0, 2175, 2014, + 0, 2222, 1881, + 0, 2279, 1606, + 0, 2344, 0, + 0, 2420, 0, + 0, 2504, 0, + 0, 2597, 0, + 0, 2698, 0, + 0, 2805, 0, + 0, 2917, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 0, 1999, 2268, + 0, 1999, 2267, + 0, 2000, 2266, + 0, 2002, 2265, + 0, 2003, 2264, + 0, 2005, 2262, + 0, 2008, 2259, + 0, 2012, 2255, + 0, 2017, 2250, + 0, 2024, 2244, + 0, 2033, 2234, + 0, 2045, 2222, + 0, 2060, 2204, + 0, 2080, 2180, + 0, 2105, 2145, + 0, 2136, 2095, + 0, 2175, 2016, + 0, 2222, 1884, + 0, 2279, 1611, + 0, 2345, 0, + 0, 2420, 0, + 0, 2505, 0, + 0, 2598, 0, + 0, 2698, 0, + 0, 2805, 0, + 0, 2917, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 0, 1999, 2270, + 0, 2000, 2269, + 0, 2001, 2268, + 0, 2002, 2267, + 0, 2004, 2265, + 0, 2006, 2263, + 0, 2009, 2261, + 0, 2013, 2257, + 0, 2018, 2252, + 0, 2025, 2245, + 0, 2034, 2236, + 0, 2045, 2224, + 0, 2061, 2206, + 0, 2080, 2182, + 0, 2105, 2148, + 0, 2137, 2097, + 0, 2175, 2019, + 0, 2223, 1888, + 0, 2279, 1618, + 0, 2345, 0, + 0, 2420, 0, + 0, 2505, 0, + 0, 2598, 0, + 0, 2698, 0, + 0, 2805, 0, + 0, 2917, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 0, 2000, 2272, + 0, 2000, 2271, + 0, 2001, 2270, + 0, 2003, 2269, + 0, 2004, 2268, + 0, 2006, 2266, + 0, 2009, 2263, + 0, 2013, 2259, + 0, 2018, 2254, + 0, 2025, 2248, + 0, 2034, 2239, + 0, 2046, 2226, + 0, 2061, 2209, + 0, 2081, 2185, + 0, 2106, 2151, + 0, 2137, 2100, + 0, 2176, 2023, + 0, 2223, 1893, + 0, 2279, 1627, + 0, 2345, 0, + 0, 2420, 0, + 0, 2505, 0, + 0, 2598, 0, + 0, 2698, 0, + 0, 2805, 0, + 0, 2917, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 0, 2000, 2275, + 0, 2001, 2274, + 0, 2002, 2273, + 0, 2003, 2272, + 0, 2005, 2271, + 0, 2007, 2269, + 0, 2010, 2266, + 0, 2014, 2262, + 0, 2019, 2258, + 0, 2026, 2251, + 0, 2035, 2242, + 0, 2047, 2230, + 0, 2062, 2212, + 0, 2081, 2189, + 0, 2106, 2155, + 0, 2138, 2105, + 0, 2176, 2028, + 0, 2223, 1900, + 0, 2280, 1640, + 0, 2345, 0, + 0, 2421, 0, + 0, 2505, 0, + 0, 2598, 0, + 0, 2698, 0, + 0, 2805, 0, + 0, 2917, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3403, 0, + 0, 3529, 0, + 0, 3658, 0, + 0, 2001, 2279, + 0, 2002, 2278, + 0, 2003, 2277, + 0, 2004, 2276, + 0, 2006, 2275, + 0, 2008, 2273, + 0, 2011, 2270, + 0, 2015, 2267, + 0, 2020, 2262, + 0, 2027, 2255, + 0, 2036, 2246, + 0, 2048, 2234, + 0, 2063, 2217, + 0, 2082, 2193, + 0, 2107, 2160, + 0, 2138, 2110, + 0, 2177, 2035, + 0, 2224, 1909, + 0, 2280, 1655, + 0, 2346, 0, + 0, 2421, 0, + 0, 2505, 0, + 0, 2598, 0, + 0, 2699, 0, + 0, 2805, 0, + 0, 2918, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3403, 0, + 0, 3529, 0, + 0, 3658, 0, + 0, 2003, 2284, + 0, 2003, 2283, + 0, 2004, 2283, + 0, 2006, 2282, + 0, 2007, 2280, + 0, 2009, 2278, + 0, 2012, 2275, + 0, 2016, 2272, + 0, 2021, 2267, + 0, 2028, 2261, + 0, 2037, 2252, + 0, 2049, 2240, + 0, 2064, 2223, + 0, 2083, 2200, + 0, 2108, 2166, + 0, 2139, 2118, + 0, 2178, 2044, + 0, 2225, 1921, + 0, 2281, 1676, + 0, 2347, 277, + 0, 2422, 0, + 0, 2506, 0, + 0, 2599, 0, + 0, 2699, 0, + 0, 2806, 0, + 0, 2918, 0, + 0, 3034, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3529, 0, + 0, 3658, 0, + 0, 2005, 2291, + 0, 2005, 2290, + 0, 2006, 2290, + 0, 2007, 2288, + 0, 2009, 2287, + 0, 2011, 2285, + 0, 2014, 2283, + 0, 2018, 2279, + 0, 2023, 2274, + 0, 2030, 2268, + 0, 2039, 2259, + 0, 2050, 2247, + 0, 2065, 2231, + 0, 2085, 2208, + 0, 2110, 2175, + 0, 2141, 2128, + 0, 2179, 2055, + 0, 2226, 1936, + 0, 2282, 1702, + 0, 2347, 650, + 0, 2422, 0, + 0, 2507, 0, + 0, 2599, 0, + 0, 2699, 0, + 0, 2806, 0, + 0, 2918, 0, + 0, 3035, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 0, 2007, 2300, + 0, 2008, 2299, + 0, 2009, 2299, + 0, 2010, 2298, + 0, 2011, 2296, + 0, 2014, 2294, + 0, 2017, 2292, + 0, 2020, 2288, + 0, 2025, 2284, + 0, 2032, 2277, + 0, 2041, 2269, + 0, 2053, 2257, + 0, 2068, 2241, + 0, 2087, 2219, + 0, 2111, 2187, + 0, 2142, 2141, + 0, 2181, 2071, + 0, 2227, 1955, + 0, 2283, 1734, + 0, 2349, 904, + 0, 2423, 0, + 0, 2507, 0, + 0, 2600, 0, + 0, 2700, 0, + 0, 2806, 0, + 0, 2918, 0, + 0, 3035, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 0, 2010, 2312, + 0, 2011, 2311, + 0, 2012, 2311, + 0, 2013, 2310, + 0, 2015, 2308, + 0, 2017, 2306, + 0, 2020, 2304, + 0, 2023, 2301, + 0, 2029, 2296, + 0, 2035, 2290, + 0, 2044, 2282, + 0, 2055, 2270, + 0, 2070, 2255, + 0, 2090, 2233, + 0, 2114, 2202, + 0, 2145, 2158, + 0, 2183, 2090, + 0, 2229, 1980, + 0, 2285, 1774, + 0, 2350, 1110, + 0, 2425, 0, + 0, 2508, 0, + 0, 2601, 0, + 0, 2700, 0, + 0, 2807, 0, + 0, 2919, 0, + 0, 3035, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 0, 2014, 2327, + 0, 2015, 2327, + 0, 2016, 2326, + 0, 2017, 2325, + 0, 2019, 2324, + 0, 2021, 2322, + 0, 2024, 2320, + 0, 2028, 2316, + 0, 2033, 2312, + 0, 2039, 2306, + 0, 2048, 2298, + 0, 2059, 2287, + 0, 2074, 2272, + 0, 2093, 2251, + 0, 2117, 2222, + 0, 2148, 2179, + 0, 2186, 2115, + 0, 2232, 2012, + 0, 2287, 1823, + 0, 2352, 1290, + 0, 2426, 0, + 0, 2510, 0, + 0, 2602, 0, + 0, 2701, 0, + 0, 2808, 0, + 0, 2919, 0, + 0, 3036, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 0, 2020, 2347, + 0, 2021, 2347, + 0, 2022, 2346, + 0, 2023, 2345, + 0, 2024, 2344, + 0, 2026, 2342, + 0, 2029, 2340, + 0, 2033, 2337, + 0, 2038, 2333, + 0, 2044, 2327, + 0, 2053, 2319, + 0, 2064, 2309, + 0, 2079, 2295, + 0, 2098, 2275, + 0, 2122, 2247, + 0, 2152, 2206, + 0, 2190, 2146, + 0, 2235, 2051, + 0, 2290, 1881, + 0, 2355, 1455, + 0, 2429, 0, + 0, 2512, 0, + 0, 2603, 0, + 0, 2703, 0, + 0, 2809, 0, + 0, 2920, 0, + 0, 3036, 0, + 0, 3156, 0, + 0, 3279, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 423, 2027, 2373, + 373, 2028, 2372, + 295, 2029, 2371, + 163, 2030, 2370, + 0, 2032, 2369, + 0, 2034, 2368, + 0, 2036, 2365, + 0, 2040, 2363, + 0, 2045, 2359, + 0, 2051, 2353, + 0, 2060, 2346, + 0, 2071, 2336, + 0, 2085, 2323, + 0, 2104, 2304, + 0, 2128, 2278, + 0, 2158, 2241, + 0, 2195, 2185, + 0, 2240, 2098, + 0, 2294, 1948, + 0, 2358, 1610, + 0, 2432, 0, + 0, 2514, 0, + 0, 2605, 0, + 0, 2704, 0, + 0, 2810, 0, + 0, 2921, 0, + 0, 3037, 0, + 0, 3157, 0, + 0, 3279, 0, + 0, 3404, 0, + 0, 3530, 0, + 0, 3658, 0, + 1521, 2037, 2404, + 1517, 2038, 2404, + 1511, 2039, 2403, + 1503, 2040, 2402, + 1492, 2041, 2401, + 1477, 2043, 2400, + 1457, 2046, 2398, + 1428, 2050, 2395, + 1385, 2054, 2391, + 1322, 2061, 2386, + 1221, 2069, 2380, + 1036, 2080, 2371, + 529, 2094, 2358, + 0, 2112, 2341, + 0, 2135, 2317, + 0, 2165, 2283, + 0, 2201, 2232, + 0, 2246, 2155, + 0, 2300, 2025, + 0, 2363, 1759, + 0, 2436, 0, + 0, 2518, 0, + 0, 2608, 0, + 0, 2707, 0, + 0, 2812, 0, + 0, 2923, 0, + 0, 3038, 0, + 0, 3157, 0, + 0, 3280, 0, + 0, 3404, 0, + 0, 3531, 0, + 0, 3659, 0, + 1883, 2050, 2444, + 1881, 2050, 2443, + 1879, 2051, 2443, + 1875, 2052, 2442, + 1870, 2054, 2441, + 1864, 2056, 2439, + 1855, 2058, 2437, + 1843, 2062, 2435, + 1827, 2066, 2432, + 1804, 2073, 2427, + 1771, 2081, 2421, + 1724, 2091, 2413, + 1651, 2105, 2401, + 1531, 2123, 2386, + 1296, 2146, 2364, + 216, 2174, 2333, + 0, 2210, 2288, + 0, 2254, 2221, + 0, 2307, 2111, + 0, 2369, 1903, + 0, 2441, 1228, + 0, 2522, 0, + 0, 2612, 0, + 0, 2709, 0, + 0, 2814, 0, + 0, 2924, 0, + 0, 3039, 0, + 0, 3158, 0, + 0, 3280, 0, + 0, 3405, 0, + 0, 3531, 0, + 0, 3659, 0, + 2133, 2066, 2491, + 2132, 2067, 2491, + 2131, 2067, 2490, + 2129, 2068, 2490, + 2126, 2070, 2489, + 2122, 2072, 2487, + 2118, 2074, 2486, + 2111, 2078, 2484, + 2102, 2082, 2481, + 2089, 2088, 2476, + 2072, 2096, 2471, + 2048, 2106, 2464, + 2014, 2120, 2453, + 1964, 2137, 2440, + 1887, 2159, 2420, + 1758, 2187, 2393, + 1496, 2222, 2354, + 0, 2265, 2296, + 0, 2316, 2205, + 0, 2377, 2044, + 0, 2448, 1663, + 0, 2528, 0, + 0, 2617, 0, + 0, 2713, 0, + 0, 2817, 0, + 0, 2927, 0, + 0, 3041, 0, + 0, 3160, 0, + 0, 3282, 0, + 0, 3406, 0, + 0, 3532, 0, + 0, 3659, 0, + 2337, 2087, 2548, + 2337, 2088, 2548, + 2336, 2088, 2547, + 2334, 2089, 2547, + 2333, 2091, 2546, + 2330, 2093, 2545, + 2327, 2095, 2543, + 2323, 2098, 2541, + 2317, 2103, 2539, + 2310, 2108, 2535, + 2299, 2116, 2530, + 2285, 2126, 2524, + 2265, 2138, 2515, + 2237, 2155, 2503, + 2196, 2176, 2486, + 2135, 2203, 2463, + 2039, 2237, 2429, + 1866, 2278, 2381, + 1429, 2329, 2306, + 0, 2388, 2182, + 0, 2457, 1936, + 0, 2536, 450, + 0, 2623, 0, + 0, 2718, 0, + 0, 2821, 0, + 0, 2930, 0, + 0, 3044, 0, + 0, 3162, 0, + 0, 3283, 0, + 0, 3407, 0, + 0, 3533, 0, + 0, 3660, 0, + 2517, 2114, 2614, + 2516, 2114, 2614, + 2515, 2115, 2614, + 2515, 2116, 2613, + 2513, 2117, 2612, + 2512, 2119, 2612, + 2510, 2121, 2610, + 2507, 2124, 2609, + 2503, 2128, 2606, + 2498, 2134, 2603, + 2491, 2141, 2599, + 2482, 2150, 2593, + 2469, 2162, 2586, + 2451, 2178, 2576, + 2426, 2198, 2561, + 2391, 2224, 2542, + 2338, 2256, 2514, + 2257, 2296, 2474, + 2119, 2344, 2414, + 1828, 2402, 2319, + 0, 2469, 2151, + 0, 2546, 1735, + 0, 2631, 0, + 0, 2725, 0, + 0, 2827, 0, + 0, 2934, 0, + 0, 3047, 0, + 0, 3164, 0, + 0, 3285, 0, + 0, 3408, 0, + 0, 3534, 0, + 0, 3661, 0, + 2681, 2147, 2690, + 2681, 2147, 2690, + 2680, 2148, 2690, + 2680, 2149, 2689, + 2679, 2150, 2689, + 2678, 2152, 2688, + 2676, 2154, 2687, + 2674, 2157, 2685, + 2672, 2161, 2683, + 2668, 2166, 2681, + 2663, 2172, 2677, + 2657, 2181, 2673, + 2648, 2192, 2666, + 2636, 2207, 2658, + 2620, 2226, 2646, + 2597, 2250, 2629, + 2565, 2281, 2607, + 2517, 2319, 2574, + 2444, 2365, 2527, + 2325, 2420, 2455, + 2090, 2485, 2336, + 1027, 2559, 2105, + 0, 2642, 1114, + 0, 2734, 0, + 0, 2834, 0, + 0, 2940, 0, + 0, 3052, 0, + 0, 3168, 0, + 0, 3288, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 2836, 2188, 2775, + 2836, 2189, 2775, + 2835, 2189, 2775, + 2835, 2190, 2774, + 2834, 2191, 2774, + 2833, 2193, 2773, + 2832, 2194, 2772, + 2831, 2197, 2771, + 2829, 2201, 2770, + 2827, 2205, 2767, + 2823, 2211, 2765, + 2819, 2219, 2761, + 2813, 2230, 2755, + 2805, 2243, 2748, + 2793, 2261, 2739, + 2778, 2283, 2725, + 2756, 2312, 2707, + 2726, 2347, 2681, + 2681, 2391, 2644, + 2614, 2443, 2590, + 2505, 2505, 2505, + 2300, 2576, 2358, + 1648, 2656, 2036, + 0, 2746, 0, + 0, 2843, 0, + 0, 2947, 0, + 0, 3057, 0, + 0, 3172, 0, + 0, 3291, 0, + 0, 3413, 0, + 0, 3537, 0, + 0, 3664, 0, + 2984, 2238, 2869, + 2984, 2238, 2868, + 2984, 2239, 2868, + 2983, 2239, 2868, + 2983, 2240, 2868, + 2983, 2242, 2867, + 2982, 2244, 2866, + 2981, 2246, 2865, + 2979, 2249, 2864, + 2978, 2253, 2862, + 2975, 2259, 2860, + 2972, 2266, 2857, + 2968, 2275, 2853, + 2962, 2287, 2847, + 2954, 2303, 2839, + 2943, 2324, 2828, + 2928, 2350, 2814, + 2907, 2383, 2794, + 2878, 2423, 2765, + 2836, 2472, 2724, + 2772, 2530, 2662, + 2669, 2598, 2563, + 2482, 2675, 2386, + 1962, 2761, 1922, + 0, 2855, 0, + 0, 2957, 0, + 0, 3065, 0, + 0, 3178, 0, + 0, 3296, 0, + 0, 3417, 0, + 0, 3540, 0, + 0, 3666, 0, + 3128, 2297, 2969, + 3128, 2297, 2969, + 3128, 2298, 2969, + 3128, 2298, 2969, + 3127, 2299, 2969, + 3127, 2300, 2968, + 3126, 2302, 2968, + 3126, 2304, 2967, + 3125, 2307, 2966, + 3123, 2310, 2964, + 3122, 2315, 2962, + 3119, 2321, 2960, + 3116, 2330, 2957, + 3112, 2341, 2952, + 3106, 2355, 2946, + 3099, 2373, 2938, + 3088, 2397, 2926, + 3073, 2426, 2910, + 3053, 2463, 2888, + 3025, 2508, 2857, + 2984, 2562, 2812, + 2922, 2625, 2744, + 2825, 2698, 2632, + 2649, 2780, 2420, + 2195, 2871, 1705, + 0, 2970, 0, + 0, 3075, 0, + 0, 3186, 0, + 0, 3302, 0, + 0, 3421, 0, + 0, 3544, 0, + 0, 3668, 0, + 3269, 2365, 3077, + 3269, 2366, 3077, + 3269, 2366, 3076, + 3268, 2367, 3076, + 3268, 2367, 3076, + 3268, 2368, 3076, + 3268, 2370, 3075, + 3267, 2371, 3075, + 3266, 2374, 3074, + 3265, 2377, 3073, + 3264, 2381, 3071, + 3262, 2387, 3069, + 3260, 2394, 3067, + 3257, 2403, 3063, + 3253, 2416, 3058, + 3247, 2432, 3052, + 3240, 2453, 3043, + 3229, 2479, 3031, + 3215, 2512, 3014, + 3195, 2552, 2990, + 3168, 2601, 2957, + 3128, 2660, 2908, + 3068, 2728, 2834, + 2973, 2805, 2710, + 2805, 2892, 2463, + 2389, 2986, 928, + 0, 3088, 0, + 0, 3197, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3407, 2443, 3189, + 3407, 2444, 3189, + 3407, 2444, 3189, + 3407, 2444, 3189, + 3407, 2445, 3189, + 3407, 2446, 3188, + 3406, 2447, 3188, + 3406, 2448, 3188, + 3405, 2450, 3187, + 3405, 2453, 3186, + 3404, 2457, 3185, + 3403, 2461, 3183, + 3401, 2467, 3181, + 3399, 2475, 3179, + 3396, 2486, 3175, + 3392, 2500, 3170, + 3386, 2518, 3163, + 3379, 2541, 3154, + 3368, 2570, 3141, + 3354, 2605, 3123, + 3335, 2649, 3099, + 3308, 2702, 3064, + 3268, 2765, 3012, + 3210, 2836, 2932, + 3117, 2918, 2797, + 2954, 3008, 2514, + 2563, 3105, 0, + 0, 3210, 0, + 0, 3320, 0, + 0, 3436, 0, + 0, 3555, 0, + 0, 3677, 0, + 3544, 2530, 3306, + 3544, 2530, 3306, + 3544, 2531, 3306, + 3544, 2531, 3306, + 3544, 2532, 3306, + 3544, 2532, 3305, + 3543, 2533, 3305, + 3543, 2534, 3305, + 3543, 2536, 3304, + 3542, 2538, 3304, + 3541, 2541, 3303, + 3541, 2545, 3302, + 3539, 2550, 3300, + 3538, 2557, 3298, + 3535, 2566, 3295, + 3532, 2578, 3291, + 3528, 2593, 3286, + 3523, 2612, 3279, + 3516, 2637, 3269, + 3505, 2668, 3256, + 3492, 2707, 3238, + 3472, 2754, 3212, + 3445, 2810, 3175, + 3407, 2875, 3121, + 3349, 2950, 3037, + 3258, 3034, 2892, + 3099, 3127, 2574, + 2724, 3227, 0, + 0, 3334, 0, + 0, 3446, 0, + 0, 3563, 0, + 0, 3683, 0, + 3680, 2625, 3427, + 3680, 2626, 3426, + 3680, 2626, 3426, + 3679, 2626, 3426, + 3679, 2626, 3426, + 3679, 2627, 3426, + 3679, 2628, 3426, + 3679, 2629, 3426, + 3679, 2630, 3425, + 3678, 2632, 3425, + 3678, 2634, 3424, + 3677, 2637, 3423, + 3676, 2642, 3422, + 3675, 2647, 3420, + 3673, 2655, 3418, + 3671, 2664, 3415, + 3668, 2677, 3411, + 3664, 2693, 3406, + 3659, 2714, 3399, + 3651, 2740, 3389, + 3641, 2773, 3375, + 3628, 2814, 3356, + 3609, 2863, 3330, + 3582, 2922, 3292, + 3543, 2990, 3236, + 3486, 3068, 3147, + 3397, 3155, 2994, + 3240, 3250, 2644, + 2877, 3352, 0, + 0, 3460, 0, + 0, 3574, 0, + 0, 3691, 0, + 3814, 2728, 3550, + 3814, 2728, 3550, + 3814, 2728, 3550, + 3814, 2728, 3550, + 3814, 2729, 3549, + 3814, 2729, 3549, + 3814, 2730, 3549, + 3814, 2730, 3549, + 3814, 2732, 3549, + 3813, 2733, 3548, + 3813, 2735, 3548, + 3812, 2737, 3547, + 3812, 2741, 3546, + 3811, 2745, 3545, + 3810, 2751, 3543, + 3808, 2759, 3541, + 3806, 2769, 3538, + 3803, 2782, 3534, + 3799, 2800, 3528, + 3793, 2822, 3521, + 3786, 2849, 3511, + 3776, 2884, 3497, + 3763, 2927, 3478, + 3744, 2978, 3451, + 3717, 3039, 3412, + 3679, 3109, 3354, + 3622, 3189, 3263, + 3534, 3278, 3102, + 3379, 3374, 2724, + 3024, 3478, 0, + 0, 3588, 0, + 0, 3702, 0, + 3948, 2836, 3675, + 3948, 2836, 3675, + 3948, 2836, 3675, + 3948, 2837, 3675, + 3948, 2837, 3675, + 3948, 2837, 3675, + 3948, 2838, 3675, + 3948, 2838, 3674, + 3948, 2839, 3674, + 3948, 2840, 3674, + 3947, 2842, 3673, + 3947, 2844, 3673, + 3946, 2847, 3672, + 3946, 2850, 3671, + 3945, 2855, 3670, + 3944, 2861, 3668, + 3942, 2869, 3666, + 3940, 2880, 3663, + 3937, 2894, 3659, + 3933, 2912, 3653, + 3928, 2935, 3646, + 3920, 2964, 3636, + 3910, 3000, 3622, + 3897, 3044, 3602, + 3878, 3097, 3574, + 3852, 3160, 3535, + 3814, 3232, 3475, + 3757, 3313, 3382, + 3669, 3403, 3216, + 3516, 3501, 2812, + 3167, 3606, 0, + 0, 3716, 0, + 4082, 2950, 3802, + 4082, 2950, 3802, + 4082, 2950, 3802, + 4082, 2950, 3802, + 4082, 2950, 3802, + 4082, 2951, 3802, + 4082, 2951, 3802, + 4082, 2952, 3801, + 4081, 2952, 3801, + 4081, 2953, 3801, + 4081, 2954, 3801, + 4081, 2956, 3800, + 4080, 2958, 3800, + 4080, 2961, 3799, + 4079, 2964, 3798, + 4078, 2969, 3797, + 4077, 2976, 3795, + 4075, 2984, 3793, + 4073, 2995, 3790, + 4070, 3010, 3786, + 4066, 3028, 3780, + 4061, 3052, 3772, + 4054, 3082, 3762, + 4044, 3119, 3748, + 4030, 3164, 3728, + 4012, 3219, 3700, + 3985, 3283, 3660, + 3948, 3356, 3599, + 3892, 3439, 3504, + 3804, 3530, 3334, + 3652, 3629, 2909, + 3307, 3735, 0, + 4095, 3068, 3930, + 4095, 3068, 3930, + 4095, 3068, 3930, + 4095, 3068, 3930, + 4095, 3068, 3930, + 4095, 3068, 3930, + 4095, 3069, 3930, + 4095, 3069, 3930, + 4095, 3069, 3930, + 4095, 3070, 3929, + 4095, 3071, 3929, + 4095, 3072, 3929, + 4095, 3074, 3929, + 4095, 3076, 3928, + 4095, 3079, 3927, + 4095, 3083, 3926, + 4095, 3088, 3925, + 4095, 3094, 3923, + 4095, 3103, 3921, + 4095, 3114, 3918, + 4095, 3129, 3914, + 4095, 3148, 3908, + 4095, 3173, 3900, + 4095, 3203, 3890, + 4095, 3241, 3875, + 4095, 3288, 3855, + 4095, 3343, 3827, + 4095, 3408, 3786, + 4081, 3482, 3725, + 4025, 3566, 3629, + 3938, 3658, 3455, + 3786, 3758, 3012, + 4095, 3189, 4059, + 4095, 3189, 4059, + 4095, 3189, 4059, + 4095, 3189, 4059, + 4095, 3189, 4059, + 4095, 3189, 4059, + 4095, 3189, 4059, + 4095, 3190, 4059, + 4095, 3190, 4059, + 4095, 3191, 4059, + 4095, 3191, 4059, + 4095, 3192, 4058, + 4095, 3193, 4058, + 4095, 3195, 4058, + 4095, 3197, 4057, + 4095, 3200, 4056, + 4095, 3204, 4055, + 4095, 3209, 4054, + 4095, 3216, 4052, + 4095, 3225, 4050, + 4095, 3237, 4047, + 4095, 3252, 4043, + 4095, 3271, 4037, + 4095, 3296, 4029, + 4095, 3327, 4019, + 4095, 3366, 4004, + 4095, 3413, 3984, + 4095, 3469, 3956, + 4095, 3535, 3914, + 4095, 3610, 3853, + 4095, 3694, 3755, + 4071, 3787, 3579, + 0, 2129, 2398, + 0, 2130, 2397, + 0, 2131, 2396, + 0, 2132, 2396, + 0, 2133, 2394, + 0, 2135, 2393, + 0, 2137, 2391, + 0, 2140, 2388, + 0, 2144, 2384, + 0, 2149, 2379, + 0, 2156, 2373, + 0, 2165, 2363, + 0, 2176, 2351, + 0, 2192, 2333, + 0, 2211, 2309, + 0, 2236, 2274, + 0, 2268, 2222, + 0, 2307, 2143, + 0, 2354, 2009, + 0, 2410, 1731, + 0, 2476, 0, + 0, 2552, 0, + 0, 2636, 0, + 0, 2729, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2130, 2398, + 0, 2130, 2398, + 0, 2131, 2397, + 0, 2132, 2396, + 0, 2133, 2395, + 0, 2135, 2394, + 0, 2137, 2392, + 0, 2140, 2389, + 0, 2144, 2385, + 0, 2149, 2380, + 0, 2156, 2373, + 0, 2165, 2364, + 0, 2177, 2352, + 0, 2192, 2334, + 0, 2212, 2310, + 0, 2237, 2275, + 0, 2268, 2223, + 0, 2307, 2144, + 0, 2354, 2011, + 0, 2411, 1734, + 0, 2476, 0, + 0, 2552, 0, + 0, 2636, 0, + 0, 2729, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2130, 2399, + 0, 2130, 2399, + 0, 2131, 2398, + 0, 2132, 2397, + 0, 2133, 2396, + 0, 2135, 2395, + 0, 2137, 2393, + 0, 2140, 2390, + 0, 2144, 2386, + 0, 2149, 2381, + 0, 2156, 2374, + 0, 2165, 2365, + 0, 2177, 2353, + 0, 2192, 2335, + 0, 2212, 2311, + 0, 2237, 2276, + 0, 2268, 2225, + 0, 2307, 2146, + 0, 2354, 2013, + 0, 2411, 1738, + 0, 2477, 0, + 0, 2552, 0, + 0, 2637, 0, + 0, 2730, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2130, 2400, + 0, 2131, 2400, + 0, 2131, 2399, + 0, 2132, 2399, + 0, 2134, 2397, + 0, 2135, 2396, + 0, 2138, 2394, + 0, 2140, 2391, + 0, 2144, 2387, + 0, 2150, 2382, + 0, 2156, 2376, + 0, 2165, 2367, + 0, 2177, 2354, + 0, 2192, 2337, + 0, 2212, 2312, + 0, 2237, 2278, + 0, 2268, 2227, + 0, 2307, 2148, + 0, 2354, 2016, + 0, 2411, 1743, + 0, 2477, 0, + 0, 2552, 0, + 0, 2637, 0, + 0, 2730, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2131, 2402, + 0, 2131, 2402, + 0, 2132, 2401, + 0, 2133, 2400, + 0, 2134, 2399, + 0, 2136, 2398, + 0, 2138, 2396, + 0, 2141, 2393, + 0, 2145, 2389, + 0, 2150, 2384, + 0, 2157, 2377, + 0, 2166, 2368, + 0, 2177, 2356, + 0, 2193, 2339, + 0, 2212, 2314, + 0, 2237, 2280, + 0, 2269, 2229, + 0, 2307, 2151, + 0, 2355, 2020, + 0, 2411, 1750, + 0, 2477, 0, + 0, 2552, 0, + 0, 2637, 0, + 0, 2730, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2131, 2404, + 0, 2132, 2404, + 0, 2132, 2403, + 0, 2133, 2402, + 0, 2135, 2401, + 0, 2136, 2400, + 0, 2139, 2398, + 0, 2141, 2395, + 0, 2145, 2391, + 0, 2151, 2387, + 0, 2157, 2380, + 0, 2166, 2371, + 0, 2178, 2358, + 0, 2193, 2341, + 0, 2213, 2317, + 0, 2238, 2283, + 0, 2269, 2232, + 0, 2308, 2155, + 0, 2355, 2025, + 0, 2411, 1760, + 0, 2477, 0, + 0, 2553, 0, + 0, 2637, 0, + 0, 2730, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2132, 2407, + 0, 2133, 2407, + 0, 2133, 2406, + 0, 2134, 2405, + 0, 2135, 2404, + 0, 2137, 2403, + 0, 2139, 2401, + 0, 2142, 2398, + 0, 2146, 2395, + 0, 2151, 2390, + 0, 2158, 2383, + 0, 2167, 2374, + 0, 2179, 2362, + 0, 2194, 2345, + 0, 2213, 2321, + 0, 2238, 2287, + 0, 2270, 2237, + 0, 2308, 2160, + 0, 2356, 2032, + 0, 2412, 1772, + 0, 2478, 0, + 0, 2553, 0, + 0, 2637, 0, + 0, 2730, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3050, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2133, 2411, + 0, 2134, 2411, + 0, 2134, 2410, + 0, 2135, 2409, + 0, 2136, 2408, + 0, 2138, 2407, + 0, 2140, 2405, + 0, 2143, 2402, + 0, 2147, 2399, + 0, 2152, 2394, + 0, 2159, 2387, + 0, 2168, 2378, + 0, 2180, 2366, + 0, 2195, 2349, + 0, 2214, 2325, + 0, 2239, 2292, + 0, 2270, 2242, + 0, 2309, 2167, + 0, 2356, 2041, + 0, 2412, 1788, + 0, 2478, 0, + 0, 2553, 0, + 0, 2638, 0, + 0, 2730, 0, + 0, 2831, 0, + 0, 2937, 0, + 0, 3050, 0, + 0, 3166, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 0, 2134, 2417, + 0, 2135, 2416, + 0, 2136, 2416, + 0, 2136, 2415, + 0, 2138, 2414, + 0, 2139, 2412, + 0, 2142, 2410, + 0, 2144, 2408, + 0, 2148, 2404, + 0, 2154, 2399, + 0, 2160, 2393, + 0, 2169, 2384, + 0, 2181, 2372, + 0, 2196, 2355, + 0, 2215, 2332, + 0, 2240, 2299, + 0, 2271, 2250, + 0, 2310, 2176, + 0, 2357, 2053, + 0, 2413, 1808, + 0, 2479, 410, + 0, 2554, 0, + 0, 2638, 0, + 0, 2731, 0, + 0, 2831, 0, + 0, 2938, 0, + 0, 3050, 0, + 0, 3166, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 0, 2136, 2424, + 0, 2137, 2423, + 0, 2137, 2422, + 0, 2138, 2422, + 0, 2140, 2421, + 0, 2141, 2419, + 0, 2143, 2417, + 0, 2146, 2415, + 0, 2150, 2411, + 0, 2155, 2406, + 0, 2162, 2400, + 0, 2171, 2391, + 0, 2182, 2379, + 0, 2198, 2363, + 0, 2217, 2340, + 0, 2242, 2308, + 0, 2273, 2260, + 0, 2311, 2187, + 0, 2358, 2068, + 0, 2414, 1834, + 0, 2479, 782, + 0, 2554, 0, + 0, 2639, 0, + 0, 2731, 0, + 0, 2831, 0, + 0, 2938, 0, + 0, 3050, 0, + 0, 3167, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 0, 2139, 2433, + 0, 2139, 2432, + 0, 2140, 2432, + 0, 2141, 2431, + 0, 2142, 2430, + 0, 2144, 2428, + 0, 2146, 2426, + 0, 2149, 2424, + 0, 2152, 2420, + 0, 2158, 2416, + 0, 2164, 2410, + 0, 2173, 2401, + 0, 2185, 2389, + 0, 2200, 2373, + 0, 2219, 2351, + 0, 2244, 2319, + 0, 2274, 2273, + 0, 2313, 2203, + 0, 2360, 2088, + 0, 2415, 1866, + 0, 2481, 1036, + 0, 2555, 0, + 0, 2639, 0, + 0, 2732, 0, + 0, 2832, 0, + 0, 2938, 0, + 0, 3050, 0, + 0, 3167, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 0, 2142, 2444, + 0, 2142, 2444, + 0, 2143, 2443, + 0, 2144, 2443, + 0, 2145, 2442, + 0, 2147, 2440, + 0, 2149, 2438, + 0, 2152, 2436, + 0, 2156, 2433, + 0, 2161, 2428, + 0, 2167, 2422, + 0, 2176, 2414, + 0, 2188, 2402, + 0, 2202, 2387, + 0, 2222, 2365, + 0, 2246, 2334, + 0, 2277, 2290, + 0, 2315, 2222, + 0, 2362, 2113, + 0, 2417, 1906, + 0, 2482, 1242, + 0, 2557, 0, + 0, 2640, 0, + 0, 2733, 0, + 0, 2833, 0, + 0, 2939, 0, + 0, 3051, 0, + 0, 3167, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 0, 2146, 2460, + 0, 2146, 2460, + 0, 2147, 2459, + 0, 2148, 2458, + 0, 2149, 2457, + 0, 2151, 2456, + 0, 2153, 2454, + 0, 2156, 2452, + 0, 2160, 2448, + 0, 2165, 2444, + 0, 2171, 2438, + 0, 2180, 2430, + 0, 2191, 2419, + 0, 2206, 2404, + 0, 2225, 2383, + 0, 2249, 2354, + 0, 2280, 2311, + 0, 2318, 2247, + 0, 2364, 2144, + 0, 2419, 1955, + 0, 2484, 1422, + 0, 2558, 0, + 0, 2642, 0, + 0, 2734, 0, + 0, 2834, 0, + 0, 2940, 0, + 0, 3051, 0, + 0, 3168, 0, + 0, 3288, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 0, 2152, 2480, + 0, 2152, 2479, + 0, 2153, 2479, + 0, 2154, 2478, + 0, 2155, 2477, + 0, 2156, 2476, + 0, 2159, 2474, + 0, 2161, 2472, + 0, 2165, 2469, + 0, 2170, 2465, + 0, 2177, 2459, + 0, 2185, 2451, + 0, 2196, 2441, + 0, 2211, 2427, + 0, 2230, 2407, + 0, 2254, 2379, + 0, 2284, 2339, + 0, 2322, 2278, + 0, 2368, 2183, + 0, 2422, 2013, + 0, 2487, 1587, + 0, 2561, 0, + 0, 2644, 0, + 0, 2735, 0, + 0, 2835, 0, + 0, 2941, 0, + 0, 3052, 0, + 0, 3168, 0, + 0, 3288, 0, + 0, 3411, 0, + 0, 3536, 0, + 0, 3662, 0, + 590, 2159, 2505, + 556, 2159, 2505, + 505, 2160, 2504, + 427, 2161, 2503, + 295, 2162, 2503, + 26, 2164, 2501, + 0, 2166, 2500, + 0, 2169, 2498, + 0, 2172, 2495, + 0, 2177, 2491, + 0, 2184, 2485, + 0, 2192, 2478, + 0, 2203, 2468, + 0, 2218, 2455, + 0, 2236, 2436, + 0, 2260, 2410, + 0, 2290, 2373, + 0, 2327, 2317, + 0, 2372, 2230, + 0, 2427, 2080, + 0, 2490, 1742, + 0, 2564, 0, + 0, 2646, 0, + 0, 2737, 0, + 0, 2836, 0, + 0, 2942, 0, + 0, 3053, 0, + 0, 3169, 0, + 0, 3289, 0, + 0, 3411, 0, + 0, 3536, 0, + 0, 3662, 0, + 1656, 2169, 2537, + 1653, 2169, 2536, + 1649, 2170, 2536, + 1643, 2171, 2535, + 1635, 2172, 2534, + 1624, 2173, 2533, + 1610, 2175, 2532, + 1589, 2178, 2530, + 1560, 2182, 2527, + 1518, 2186, 2523, + 1454, 2193, 2518, + 1353, 2201, 2512, + 1168, 2212, 2503, + 661, 2226, 2490, + 0, 2244, 2473, + 0, 2268, 2449, + 0, 2297, 2415, + 0, 2334, 2364, + 0, 2378, 2287, + 0, 2432, 2157, + 0, 2495, 1891, + 0, 2568, 0, + 0, 2650, 0, + 0, 2740, 0, + 0, 2839, 0, + 0, 2944, 0, + 0, 3055, 0, + 0, 3170, 0, + 0, 3289, 0, + 0, 3412, 0, + 0, 3536, 0, + 0, 3663, 0, + 2017, 2181, 2576, + 2015, 2182, 2576, + 2013, 2182, 2575, + 2011, 2183, 2575, + 2007, 2184, 2574, + 2002, 2186, 2573, + 1996, 2188, 2571, + 1987, 2190, 2570, + 1975, 2194, 2567, + 1959, 2199, 2564, + 1936, 2205, 2559, + 1903, 2213, 2553, + 1856, 2223, 2545, + 1783, 2237, 2533, + 1663, 2255, 2518, + 1428, 2278, 2496, + 348, 2307, 2465, + 0, 2342, 2420, + 0, 2386, 2353, + 0, 2439, 2243, + 0, 2501, 2035, + 0, 2573, 1360, + 0, 2654, 0, + 0, 2744, 0, + 0, 2842, 0, + 0, 2946, 0, + 0, 3056, 0, + 0, 3172, 0, + 0, 3291, 0, + 0, 3413, 0, + 0, 3537, 0, + 0, 3663, 0, + 2266, 2198, 2624, + 2266, 2198, 2623, + 2264, 2199, 2623, + 2263, 2200, 2622, + 2261, 2201, 2622, + 2258, 2202, 2621, + 2255, 2204, 2620, + 2250, 2206, 2618, + 2243, 2210, 2616, + 2234, 2214, 2613, + 2222, 2220, 2609, + 2204, 2228, 2603, + 2180, 2238, 2596, + 2146, 2252, 2586, + 2096, 2269, 2572, + 2019, 2291, 2552, + 1890, 2319, 2525, + 1628, 2354, 2486, + 0, 2397, 2428, + 0, 2448, 2337, + 0, 2509, 2176, + 0, 2580, 1795, + 0, 2660, 0, + 0, 2749, 0, + 0, 2845, 0, + 0, 2949, 0, + 0, 3059, 0, + 0, 3173, 0, + 0, 3292, 0, + 0, 3414, 0, + 0, 3538, 0, + 0, 3664, 0, + 2470, 2219, 2680, + 2469, 2219, 2680, + 2469, 2220, 2680, + 2468, 2220, 2679, + 2466, 2221, 2679, + 2465, 2223, 2678, + 2462, 2225, 2677, + 2459, 2227, 2675, + 2455, 2230, 2673, + 2450, 2235, 2671, + 2442, 2240, 2667, + 2431, 2248, 2662, + 2417, 2258, 2656, + 2397, 2270, 2647, + 2369, 2287, 2635, + 2328, 2308, 2618, + 2267, 2335, 2595, + 2171, 2369, 2561, + 1998, 2410, 2513, + 1561, 2461, 2438, + 0, 2520, 2315, + 0, 2589, 2068, + 0, 2668, 582, + 0, 2755, 0, + 0, 2851, 0, + 0, 2953, 0, + 0, 3062, 0, + 0, 3176, 0, + 0, 3294, 0, + 0, 3415, 0, + 0, 3539, 0, + 0, 3665, 0, + 2649, 2245, 2747, + 2649, 2246, 2746, + 2648, 2246, 2746, + 2648, 2247, 2746, + 2647, 2248, 2745, + 2646, 2249, 2745, + 2644, 2251, 2744, + 2642, 2253, 2742, + 2639, 2256, 2741, + 2635, 2260, 2738, + 2630, 2266, 2735, + 2623, 2273, 2731, + 2614, 2282, 2726, + 2601, 2294, 2718, + 2583, 2310, 2708, + 2558, 2330, 2693, + 2523, 2356, 2674, + 2470, 2388, 2646, + 2389, 2428, 2606, + 2251, 2476, 2546, + 1960, 2534, 2451, + 0, 2601, 2283, + 0, 2678, 1867, + 0, 2763, 0, + 0, 2857, 0, + 0, 2959, 0, + 0, 3066, 0, + 0, 3179, 0, + 0, 3296, 0, + 0, 3417, 0, + 0, 3540, 0, + 0, 3666, 0, + 2813, 2279, 2823, + 2813, 2279, 2822, + 2813, 2280, 2822, + 2812, 2280, 2822, + 2812, 2281, 2821, + 2811, 2282, 2821, + 2810, 2284, 2820, + 2808, 2286, 2819, + 2806, 2289, 2817, + 2804, 2293, 2816, + 2800, 2298, 2813, + 2796, 2304, 2809, + 2789, 2313, 2805, + 2780, 2324, 2798, + 2769, 2339, 2790, + 2752, 2358, 2778, + 2729, 2382, 2762, + 2697, 2413, 2739, + 2649, 2451, 2706, + 2576, 2497, 2659, + 2457, 2552, 2587, + 2222, 2617, 2468, + 1159, 2691, 2237, + 0, 2774, 1246, + 0, 2866, 0, + 0, 2966, 0, + 0, 3072, 0, + 0, 3184, 0, + 0, 3300, 0, + 0, 3420, 0, + 0, 3542, 0, + 0, 3667, 0, + 2968, 2320, 2907, + 2968, 2320, 2907, + 2968, 2321, 2907, + 2967, 2321, 2907, + 2967, 2322, 2906, + 2966, 2323, 2906, + 2966, 2325, 2905, + 2965, 2327, 2904, + 2963, 2329, 2903, + 2961, 2333, 2902, + 2959, 2337, 2900, + 2956, 2343, 2897, + 2951, 2351, 2893, + 2945, 2362, 2888, + 2937, 2375, 2880, + 2925, 2393, 2871, + 2910, 2415, 2857, + 2888, 2444, 2839, + 2858, 2479, 2813, + 2813, 2523, 2776, + 2746, 2575, 2722, + 2637, 2637, 2637, + 2432, 2708, 2490, + 1780, 2789, 2168, + 0, 2878, 0, + 0, 2975, 0, + 0, 3079, 0, + 0, 3190, 0, + 0, 3304, 0, + 0, 3423, 0, + 0, 3545, 0, + 0, 3669, 0, + 3116, 2370, 3001, + 3116, 2370, 3001, + 3116, 2370, 3001, + 3116, 2371, 3000, + 3116, 2372, 3000, + 3115, 2373, 3000, + 3115, 2374, 2999, + 3114, 2376, 2998, + 3113, 2378, 2997, + 3112, 2381, 2996, + 3110, 2385, 2994, + 3107, 2391, 2992, + 3104, 2398, 2989, + 3100, 2407, 2985, + 3094, 2420, 2979, + 3086, 2436, 2971, + 3075, 2456, 2961, + 3060, 2482, 2946, + 3039, 2515, 2926, + 3010, 2555, 2897, + 2968, 2604, 2856, + 2904, 2662, 2794, + 2802, 2730, 2696, + 2614, 2807, 2518, + 2094, 2893, 2054, + 0, 2987, 0, + 0, 3089, 0, + 0, 3197, 0, + 0, 3310, 0, + 0, 3428, 0, + 0, 3549, 0, + 0, 3672, 0, + 3260, 2429, 3102, + 3260, 2429, 3102, + 3260, 2429, 3101, + 3260, 2430, 3101, + 3260, 2430, 3101, + 3259, 2431, 3101, + 3259, 2432, 3100, + 3258, 2434, 3100, + 3258, 2436, 3099, + 3257, 2439, 3098, + 3255, 2442, 3096, + 3254, 2447, 3095, + 3251, 2453, 3092, + 3248, 2462, 3089, + 3244, 2473, 3084, + 3238, 2487, 3078, + 3231, 2505, 3070, + 3220, 2529, 3058, + 3206, 2558, 3042, + 3185, 2595, 3021, + 3157, 2640, 2989, + 3116, 2694, 2944, + 3054, 2757, 2876, + 2957, 2830, 2764, + 2781, 2913, 2552, + 2327, 3003, 1837, + 0, 3102, 0, + 0, 3207, 0, + 0, 3318, 0, + 0, 3434, 0, + 0, 3553, 0, + 0, 3676, 0, + 3401, 2497, 3209, + 3401, 2497, 3209, + 3401, 2498, 3209, + 3401, 2498, 3208, + 3401, 2499, 3208, + 3400, 2499, 3208, + 3400, 2500, 3208, + 3400, 2502, 3207, + 3399, 2503, 3207, + 3398, 2506, 3206, + 3397, 2509, 3205, + 3396, 2513, 3203, + 3394, 2519, 3201, + 3392, 2526, 3199, + 3389, 2535, 3195, + 3385, 2548, 3190, + 3379, 2564, 3184, + 3372, 2585, 3175, + 3361, 2611, 3163, + 3347, 2644, 3146, + 3328, 2684, 3123, + 3300, 2734, 3089, + 3260, 2792, 3040, + 3200, 2860, 2966, + 3105, 2937, 2842, + 2937, 3024, 2595, + 2521, 3118, 1060, + 0, 3220, 0, + 0, 3329, 0, + 0, 3442, 0, + 0, 3560, 0, + 0, 3680, 0, + 3539, 2575, 3321, + 3539, 2575, 3321, + 3539, 2576, 3321, + 3539, 2576, 3321, + 3539, 2576, 3321, + 3539, 2577, 3321, + 3539, 2578, 3320, + 3538, 2579, 3320, + 3538, 2581, 3320, + 3537, 2582, 3319, + 3537, 2585, 3318, + 3536, 2589, 3317, + 3535, 2593, 3315, + 3533, 2599, 3313, + 3531, 2608, 3311, + 3528, 2618, 3307, + 3524, 2632, 3302, + 3518, 2650, 3295, + 3511, 2673, 3286, + 3500, 2702, 3273, + 3486, 2738, 3255, + 3467, 2782, 3231, + 3440, 2834, 3196, + 3400, 2897, 3144, + 3342, 2969, 3064, + 3249, 3050, 2929, + 3086, 3140, 2646, + 2695, 3237, 0, + 0, 3342, 0, + 0, 3452, 0, + 0, 3568, 0, + 0, 3687, 0, + 3676, 2662, 3438, + 3676, 2662, 3438, + 3676, 2663, 3438, + 3676, 2663, 3438, + 3676, 2663, 3438, + 3676, 2664, 3438, + 3676, 2664, 3438, + 3675, 2665, 3437, + 3675, 2667, 3437, + 3675, 2668, 3436, + 3674, 2670, 3436, + 3674, 2673, 3435, + 3673, 2677, 3434, + 3671, 2682, 3432, + 3670, 2689, 3430, + 3668, 2698, 3427, + 3665, 2710, 3423, + 3661, 2725, 3418, + 3655, 2744, 3411, + 3648, 2769, 3401, + 3638, 2800, 3388, + 3624, 2839, 3370, + 3605, 2886, 3344, + 3578, 2942, 3308, + 3539, 3007, 3253, + 3481, 3082, 3169, + 3390, 3167, 3024, + 3231, 3259, 2706, + 2856, 3359, 0, + 0, 3466, 0, + 0, 3578, 0, + 0, 3695, 0, + 3812, 2757, 3559, + 3812, 2757, 3559, + 3812, 2758, 3559, + 3812, 2758, 3558, + 3812, 2758, 3558, + 3811, 2759, 3558, + 3811, 2759, 3558, + 3811, 2760, 3558, + 3811, 2761, 3558, + 3811, 2762, 3557, + 3810, 2764, 3557, + 3810, 2766, 3556, + 3809, 2770, 3555, + 3808, 2774, 3554, + 3807, 2779, 3552, + 3805, 2787, 3550, + 3803, 2796, 3547, + 3800, 2809, 3543, + 3796, 2825, 3538, + 3791, 2846, 3531, + 3783, 2872, 3521, + 3773, 2905, 3507, + 3760, 2946, 3488, + 3741, 2996, 3462, + 3714, 3054, 3424, + 3675, 3122, 3368, + 3618, 3200, 3279, + 3529, 3287, 3126, + 3372, 3382, 2777, + 3009, 3484, 0, + 0, 3592, 0, + 0, 3706, 0, + 3946, 2860, 3682, + 3946, 2860, 3682, + 3946, 2860, 3682, + 3946, 2860, 3682, + 3946, 2860, 3682, + 3946, 2861, 3682, + 3946, 2861, 3681, + 3946, 2862, 3681, + 3946, 2863, 3681, + 3946, 2864, 3681, + 3945, 2865, 3680, + 3945, 2867, 3680, + 3944, 2869, 3679, + 3944, 2873, 3678, + 3943, 2877, 3677, + 3942, 2883, 3675, + 3940, 2891, 3673, + 3938, 2901, 3670, + 3935, 2914, 3666, + 3931, 2932, 3661, + 3926, 2954, 3653, + 3918, 2981, 3643, + 3908, 3016, 3629, + 3895, 3059, 3610, + 3876, 3110, 3583, + 3849, 3171, 3544, + 3811, 3242, 3486, + 3754, 3321, 3395, + 3666, 3410, 3235, + 3511, 3507, 2856, + 3156, 3610, 0, + 0, 3720, 0, + 4080, 2968, 3807, + 4080, 2968, 3807, + 4080, 2968, 3807, + 4080, 2969, 3807, + 4080, 2969, 3807, + 4080, 2969, 3807, + 4080, 2969, 3807, + 4080, 2970, 3807, + 4080, 2970, 3806, + 4080, 2971, 3806, + 4080, 2972, 3806, + 4079, 2974, 3806, + 4079, 2976, 3805, + 4078, 2979, 3804, + 4078, 2982, 3803, + 4077, 2987, 3802, + 4076, 2993, 3800, + 4074, 3001, 3798, + 4072, 3012, 3795, + 4069, 3026, 3791, + 4065, 3044, 3786, + 4060, 3067, 3778, + 4052, 3096, 3768, + 4042, 3132, 3754, + 4029, 3176, 3734, + 4010, 3229, 3706, + 3984, 3292, 3667, + 3946, 3364, 3608, + 3889, 3445, 3514, + 3801, 3535, 3348, + 3648, 3633, 2944, + 3299, 3738, 0, + 4095, 3082, 3934, + 4095, 3082, 3934, + 4095, 3082, 3934, + 4095, 3082, 3934, + 4095, 3082, 3934, + 4095, 3082, 3934, + 4095, 3083, 3934, + 4095, 3083, 3934, + 4095, 3084, 3934, + 4095, 3084, 3933, + 4095, 3085, 3933, + 4095, 3086, 3933, + 4095, 3088, 3932, + 4095, 3090, 3932, + 4095, 3093, 3931, + 4095, 3096, 3930, + 4095, 3101, 3929, + 4095, 3108, 3927, + 4095, 3116, 3925, + 4095, 3127, 3922, + 4095, 3142, 3918, + 4095, 3160, 3912, + 4095, 3184, 3905, + 4095, 3214, 3894, + 4095, 3251, 3880, + 4095, 3297, 3860, + 4095, 3351, 3832, + 4095, 3415, 3792, + 4080, 3488, 3732, + 4024, 3571, 3636, + 3936, 3662, 3466, + 3784, 3761, 3041, + 4095, 3200, 4062, + 4095, 3200, 4062, + 4095, 3200, 4062, + 4095, 3200, 4062, + 4095, 3200, 4062, + 4095, 3200, 4062, + 4095, 3200, 4062, + 4095, 3201, 4062, + 4095, 3201, 4062, + 4095, 3202, 4062, + 4095, 3202, 4062, + 4095, 3203, 4061, + 4095, 3204, 4061, + 4095, 3206, 4061, + 4095, 3208, 4060, + 4095, 3211, 4059, + 4095, 3215, 4058, + 4095, 3220, 4057, + 4095, 3226, 4055, + 4095, 3235, 4053, + 4095, 3247, 4050, + 4095, 3261, 4046, + 4095, 3280, 4040, + 4095, 3305, 4032, + 4095, 3335, 4022, + 4095, 3374, 4008, + 4095, 3420, 3988, + 4095, 3475, 3959, + 4095, 3540, 3918, + 4095, 3614, 3858, + 4095, 3698, 3761, + 4070, 3790, 3587, + 0, 2261, 2529, + 0, 2261, 2529, + 0, 2262, 2529, + 0, 2263, 2528, + 0, 2264, 2527, + 0, 2265, 2526, + 0, 2267, 2524, + 0, 2269, 2522, + 0, 2272, 2520, + 0, 2276, 2516, + 0, 2281, 2511, + 0, 2288, 2504, + 0, 2297, 2495, + 0, 2308, 2482, + 0, 2324, 2465, + 0, 2343, 2440, + 0, 2368, 2405, + 0, 2400, 2354, + 0, 2439, 2274, + 0, 2486, 2140, + 0, 2542, 1860, + 0, 2608, 0, + 0, 2684, 0, + 0, 2768, 0, + 0, 2861, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3667, 0, + 0, 2261, 2530, + 0, 2262, 2530, + 0, 2262, 2529, + 0, 2263, 2529, + 0, 2264, 2528, + 0, 2265, 2527, + 0, 2267, 2525, + 0, 2269, 2523, + 0, 2272, 2520, + 0, 2276, 2517, + 0, 2281, 2512, + 0, 2288, 2505, + 0, 2297, 2495, + 0, 2309, 2483, + 0, 2324, 2465, + 0, 2343, 2441, + 0, 2368, 2406, + 0, 2400, 2354, + 0, 2439, 2275, + 0, 2486, 2141, + 0, 2543, 1863, + 0, 2608, 0, + 0, 2684, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3667, 0, + 0, 2261, 2531, + 0, 2262, 2530, + 0, 2262, 2530, + 0, 2263, 2529, + 0, 2264, 2528, + 0, 2265, 2527, + 0, 2267, 2526, + 0, 2269, 2524, + 0, 2272, 2521, + 0, 2276, 2517, + 0, 2281, 2512, + 0, 2288, 2505, + 0, 2297, 2496, + 0, 2309, 2484, + 0, 2324, 2466, + 0, 2344, 2442, + 0, 2369, 2407, + 0, 2400, 2355, + 0, 2439, 2276, + 0, 2486, 2143, + 0, 2543, 1866, + 0, 2609, 0, + 0, 2684, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3667, 0, + 0, 2262, 2532, + 0, 2262, 2531, + 0, 2263, 2531, + 0, 2263, 2530, + 0, 2264, 2529, + 0, 2265, 2528, + 0, 2267, 2527, + 0, 2269, 2525, + 0, 2272, 2522, + 0, 2276, 2518, + 0, 2281, 2513, + 0, 2288, 2506, + 0, 2297, 2497, + 0, 2309, 2485, + 0, 2324, 2467, + 0, 2344, 2443, + 0, 2369, 2408, + 0, 2400, 2357, + 0, 2439, 2278, + 0, 2486, 2145, + 0, 2543, 1870, + 0, 2609, 0, + 0, 2684, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3667, 0, + 0, 2262, 2533, + 0, 2262, 2533, + 0, 2263, 2532, + 0, 2264, 2531, + 0, 2264, 2531, + 0, 2266, 2529, + 0, 2267, 2528, + 0, 2270, 2526, + 0, 2273, 2523, + 0, 2276, 2520, + 0, 2282, 2515, + 0, 2288, 2508, + 0, 2297, 2499, + 0, 2309, 2486, + 0, 2324, 2469, + 0, 2344, 2444, + 0, 2369, 2410, + 0, 2400, 2359, + 0, 2439, 2280, + 0, 2487, 2148, + 0, 2543, 1875, + 0, 2609, 0, + 0, 2684, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3667, 0, + 0, 2262, 2535, + 0, 2263, 2534, + 0, 2263, 2534, + 0, 2264, 2533, + 0, 2265, 2532, + 0, 2266, 2531, + 0, 2268, 2530, + 0, 2270, 2528, + 0, 2273, 2525, + 0, 2277, 2521, + 0, 2282, 2516, + 0, 2289, 2510, + 0, 2298, 2500, + 0, 2310, 2488, + 0, 2325, 2471, + 0, 2344, 2446, + 0, 2369, 2412, + 0, 2401, 2361, + 0, 2440, 2283, + 0, 2487, 2152, + 0, 2543, 1882, + 0, 2609, 0, + 0, 2684, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3667, 0, + 0, 2263, 2537, + 0, 2263, 2537, + 0, 2264, 2536, + 0, 2265, 2535, + 0, 2265, 2535, + 0, 2267, 2533, + 0, 2268, 2532, + 0, 2271, 2530, + 0, 2274, 2527, + 0, 2277, 2524, + 0, 2283, 2519, + 0, 2289, 2512, + 0, 2298, 2503, + 0, 2310, 2490, + 0, 2325, 2473, + 0, 2345, 2449, + 0, 2370, 2415, + 0, 2401, 2364, + 0, 2440, 2287, + 0, 2487, 2157, + 0, 2543, 1892, + 0, 2609, 0, + 0, 2685, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3182, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2264, 2540, + 0, 2264, 2539, + 0, 2265, 2539, + 0, 2265, 2538, + 0, 2266, 2538, + 0, 2267, 2536, + 0, 2269, 2535, + 0, 2271, 2533, + 0, 2274, 2530, + 0, 2278, 2527, + 0, 2283, 2522, + 0, 2290, 2515, + 0, 2299, 2506, + 0, 2311, 2494, + 0, 2326, 2477, + 0, 2346, 2453, + 0, 2370, 2419, + 0, 2402, 2369, + 0, 2440, 2292, + 0, 2488, 2164, + 0, 2544, 1904, + 0, 2610, 0, + 0, 2685, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2963, 0, + 0, 3069, 0, + 0, 3182, 0, + 0, 3298, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2265, 2544, + 0, 2265, 2543, + 0, 2266, 2543, + 0, 2266, 2542, + 0, 2267, 2542, + 0, 2268, 2540, + 0, 2270, 2539, + 0, 2272, 2537, + 0, 2275, 2534, + 0, 2279, 2531, + 0, 2284, 2526, + 0, 2291, 2519, + 0, 2300, 2510, + 0, 2312, 2498, + 0, 2327, 2481, + 0, 2346, 2458, + 0, 2371, 2424, + 0, 2402, 2375, + 0, 2441, 2299, + 0, 2488, 2173, + 0, 2544, 1920, + 0, 2610, 0, + 0, 2685, 0, + 0, 2770, 0, + 0, 2862, 0, + 0, 2963, 0, + 0, 3070, 0, + 0, 3182, 0, + 0, 3298, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2266, 2549, + 0, 2266, 2549, + 0, 2267, 2548, + 0, 2268, 2548, + 0, 2269, 2547, + 0, 2270, 2546, + 0, 2271, 2544, + 0, 2274, 2542, + 0, 2277, 2540, + 0, 2280, 2536, + 0, 2286, 2531, + 0, 2292, 2525, + 0, 2301, 2516, + 0, 2313, 2504, + 0, 2328, 2487, + 0, 2348, 2464, + 0, 2372, 2431, + 0, 2403, 2382, + 0, 2442, 2308, + 0, 2489, 2185, + 0, 2545, 1940, + 0, 2611, 542, + 0, 2686, 0, + 0, 2770, 0, + 0, 2863, 0, + 0, 2963, 0, + 0, 3070, 0, + 0, 3182, 0, + 0, 3299, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2268, 2556, + 0, 2268, 2556, + 0, 2269, 2555, + 0, 2269, 2555, + 0, 2270, 2554, + 0, 2272, 2553, + 0, 2273, 2551, + 0, 2275, 2549, + 0, 2278, 2547, + 0, 2282, 2543, + 0, 2287, 2538, + 0, 2294, 2532, + 0, 2303, 2523, + 0, 2315, 2512, + 0, 2330, 2495, + 0, 2349, 2472, + 0, 2374, 2440, + 0, 2405, 2392, + 0, 2443, 2320, + 0, 2490, 2200, + 0, 2546, 1966, + 0, 2612, 914, + 0, 2687, 0, + 0, 2771, 0, + 0, 2863, 0, + 0, 2963, 0, + 0, 3070, 0, + 0, 3182, 0, + 0, 3299, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2270, 2565, + 0, 2271, 2565, + 0, 2271, 2564, + 0, 2272, 2564, + 0, 2273, 2563, + 0, 2274, 2562, + 0, 2276, 2560, + 0, 2278, 2559, + 0, 2281, 2556, + 0, 2285, 2553, + 0, 2290, 2548, + 0, 2296, 2542, + 0, 2305, 2533, + 0, 2317, 2522, + 0, 2332, 2505, + 0, 2351, 2483, + 0, 2376, 2451, + 0, 2407, 2405, + 0, 2445, 2335, + 0, 2492, 2220, + 0, 2547, 1998, + 0, 2613, 1168, + 0, 2688, 0, + 0, 2772, 0, + 0, 2864, 0, + 0, 2964, 0, + 0, 3071, 0, + 0, 3183, 0, + 0, 3299, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2273, 2577, + 0, 2274, 2577, + 0, 2274, 2576, + 0, 2275, 2576, + 0, 2276, 2575, + 0, 2277, 2574, + 0, 2279, 2572, + 0, 2281, 2571, + 0, 2284, 2568, + 0, 2288, 2565, + 0, 2293, 2560, + 0, 2299, 2554, + 0, 2308, 2546, + 0, 2320, 2535, + 0, 2335, 2519, + 0, 2354, 2497, + 0, 2378, 2467, + 0, 2409, 2422, + 0, 2447, 2354, + 0, 2494, 2245, + 0, 2549, 2038, + 0, 2614, 1374, + 0, 2689, 0, + 0, 2773, 0, + 0, 2865, 0, + 0, 2965, 0, + 0, 3071, 0, + 0, 3183, 0, + 0, 3299, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2278, 2592, + 0, 2278, 2592, + 0, 2279, 2592, + 0, 2279, 2591, + 0, 2280, 2590, + 0, 2281, 2589, + 0, 2283, 2588, + 0, 2285, 2586, + 0, 2288, 2584, + 0, 2292, 2581, + 0, 2297, 2576, + 0, 2303, 2570, + 0, 2312, 2562, + 0, 2323, 2551, + 0, 2338, 2536, + 0, 2357, 2516, + 0, 2382, 2486, + 0, 2412, 2443, + 0, 2450, 2379, + 0, 2496, 2276, + 0, 2551, 2087, + 0, 2616, 1554, + 0, 2690, 0, + 0, 2774, 0, + 0, 2866, 0, + 0, 2966, 0, + 0, 3072, 0, + 0, 3184, 0, + 0, 3300, 0, + 0, 3420, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2283, 2612, + 0, 2284, 2612, + 0, 2284, 2611, + 0, 2285, 2611, + 0, 2286, 2610, + 0, 2287, 2609, + 0, 2289, 2608, + 0, 2291, 2606, + 0, 2293, 2604, + 0, 2297, 2601, + 0, 2302, 2597, + 0, 2309, 2591, + 0, 2317, 2584, + 0, 2329, 2573, + 0, 2343, 2559, + 0, 2362, 2539, + 0, 2386, 2511, + 0, 2416, 2471, + 0, 2454, 2410, + 0, 2500, 2315, + 0, 2555, 2145, + 0, 2619, 1719, + 0, 2693, 0, + 0, 2776, 0, + 0, 2868, 0, + 0, 2967, 0, + 0, 3073, 0, + 0, 3184, 0, + 0, 3300, 0, + 0, 3420, 0, + 0, 3543, 0, + 0, 3668, 0, + 746, 2291, 2637, + 722, 2291, 2637, + 688, 2292, 2637, + 637, 2292, 2636, + 559, 2293, 2636, + 428, 2294, 2635, + 158, 2296, 2633, + 0, 2298, 2632, + 0, 2301, 2630, + 0, 2304, 2627, + 0, 2309, 2623, + 0, 2316, 2618, + 0, 2324, 2610, + 0, 2335, 2601, + 0, 2350, 2587, + 0, 2368, 2568, + 0, 2392, 2542, + 0, 2422, 2505, + 0, 2459, 2449, + 0, 2504, 2362, + 0, 2559, 2212, + 0, 2622, 1874, + 0, 2696, 0, + 0, 2778, 0, + 0, 2870, 0, + 0, 2969, 0, + 0, 3074, 0, + 0, 3185, 0, + 0, 3301, 0, + 0, 3421, 0, + 0, 3543, 0, + 0, 3668, 0, + 1791, 2300, 2669, + 1789, 2301, 2669, + 1785, 2301, 2668, + 1781, 2302, 2668, + 1775, 2303, 2667, + 1767, 2304, 2667, + 1757, 2305, 2665, + 1742, 2307, 2664, + 1721, 2310, 2662, + 1692, 2314, 2659, + 1650, 2319, 2656, + 1586, 2325, 2651, + 1485, 2333, 2644, + 1300, 2344, 2635, + 793, 2358, 2622, + 0, 2376, 2605, + 0, 2400, 2581, + 0, 2429, 2547, + 0, 2466, 2496, + 0, 2510, 2419, + 0, 2564, 2289, + 0, 2627, 2023, + 0, 2700, 0, + 0, 2782, 0, + 0, 2872, 0, + 0, 2971, 0, + 0, 3076, 0, + 0, 3187, 0, + 0, 3302, 0, + 0, 3422, 0, + 0, 3544, 0, + 0, 3668, 0, + 2150, 2313, 2708, + 2149, 2313, 2708, + 2147, 2314, 2708, + 2145, 2314, 2707, + 2143, 2315, 2707, + 2139, 2316, 2706, + 2135, 2318, 2705, + 2128, 2320, 2704, + 2119, 2323, 2702, + 2108, 2326, 2699, + 2091, 2331, 2696, + 2068, 2337, 2691, + 2036, 2345, 2685, + 1988, 2356, 2677, + 1915, 2369, 2666, + 1795, 2387, 2650, + 1560, 2410, 2628, + 480, 2439, 2597, + 0, 2474, 2553, + 0, 2518, 2485, + 0, 2571, 2375, + 0, 2633, 2167, + 0, 2705, 1492, + 0, 2786, 0, + 0, 2876, 0, + 0, 2974, 0, + 0, 3078, 0, + 0, 3189, 0, + 0, 3304, 0, + 0, 3423, 0, + 0, 3545, 0, + 0, 3669, 0, + 2399, 2329, 2756, + 2398, 2330, 2756, + 2398, 2330, 2755, + 2396, 2331, 2755, + 2395, 2332, 2754, + 2393, 2333, 2754, + 2390, 2334, 2753, + 2387, 2336, 2752, + 2382, 2339, 2750, + 2375, 2342, 2748, + 2366, 2346, 2745, + 2354, 2352, 2741, + 2337, 2360, 2735, + 2313, 2370, 2728, + 2278, 2384, 2718, + 2228, 2401, 2704, + 2151, 2423, 2684, + 2023, 2451, 2657, + 1760, 2486, 2618, + 0, 2529, 2560, + 0, 2581, 2469, + 0, 2642, 2308, + 0, 2712, 1927, + 0, 2792, 0, + 0, 2881, 0, + 0, 2978, 0, + 0, 3081, 0, + 0, 3191, 0, + 0, 3306, 0, + 0, 3424, 0, + 0, 3546, 0, + 0, 3670, 0, + 2602, 2350, 2813, + 2602, 2351, 2812, + 2602, 2351, 2812, + 2601, 2352, 2812, + 2600, 2353, 2811, + 2599, 2354, 2811, + 2597, 2355, 2810, + 2595, 2357, 2809, + 2591, 2359, 2807, + 2587, 2362, 2805, + 2582, 2367, 2803, + 2574, 2372, 2799, + 2563, 2380, 2794, + 2549, 2390, 2788, + 2529, 2402, 2779, + 2501, 2419, 2767, + 2460, 2440, 2750, + 2400, 2467, 2727, + 2303, 2501, 2694, + 2131, 2543, 2645, + 1693, 2593, 2570, + 0, 2652, 2447, + 0, 2721, 2200, + 0, 2800, 714, + 0, 2887, 0, + 0, 2983, 0, + 0, 3085, 0, + 0, 3194, 0, + 0, 3308, 0, + 0, 3426, 0, + 0, 3547, 0, + 0, 3671, 0, + 2781, 2377, 2879, + 2781, 2377, 2879, + 2781, 2378, 2879, + 2780, 2378, 2878, + 2780, 2379, 2878, + 2779, 2380, 2877, + 2778, 2381, 2877, + 2776, 2383, 2876, + 2774, 2385, 2874, + 2771, 2388, 2873, + 2767, 2392, 2870, + 2762, 2398, 2867, + 2755, 2405, 2863, + 2746, 2414, 2858, + 2733, 2426, 2850, + 2715, 2442, 2840, + 2691, 2462, 2826, + 2655, 2488, 2806, + 2602, 2520, 2778, + 2521, 2560, 2738, + 2384, 2609, 2678, + 2092, 2666, 2584, + 0, 2733, 2415, + 0, 2810, 1999, + 0, 2895, 0, + 0, 2989, 0, + 0, 3091, 0, + 0, 3198, 0, + 0, 3311, 0, + 0, 3429, 0, + 0, 3549, 0, + 0, 3673, 0, + 2946, 2411, 2955, + 2945, 2411, 2955, + 2945, 2411, 2954, + 2945, 2412, 2954, + 2944, 2412, 2954, + 2944, 2413, 2953, + 2943, 2414, 2953, + 2942, 2416, 2952, + 2940, 2418, 2951, + 2939, 2421, 2950, + 2936, 2425, 2948, + 2932, 2430, 2945, + 2928, 2436, 2942, + 2921, 2445, 2937, + 2913, 2456, 2930, + 2901, 2471, 2922, + 2884, 2490, 2910, + 2861, 2514, 2894, + 2829, 2545, 2871, + 2781, 2583, 2838, + 2709, 2629, 2791, + 2589, 2684, 2719, + 2354, 2749, 2601, + 1291, 2823, 2369, + 0, 2906, 1378, + 0, 2998, 0, + 0, 3098, 0, + 0, 3204, 0, + 0, 3316, 0, + 0, 3432, 0, + 0, 3552, 0, + 0, 3675, 0, + 3100, 2452, 3040, + 3100, 2452, 3040, + 3100, 2452, 3039, + 3100, 2453, 3039, + 3099, 2453, 3039, + 3099, 2454, 3039, + 3098, 2455, 3038, + 3098, 2457, 3037, + 3097, 2459, 3037, + 3095, 2461, 3035, + 3093, 2465, 3034, + 3091, 2469, 3032, + 3088, 2475, 3029, + 3083, 2483, 3025, + 3077, 2494, 3020, + 3069, 2507, 3013, + 3058, 2525, 3003, + 3042, 2547, 2990, + 3020, 2576, 2971, + 2990, 2611, 2945, + 2945, 2655, 2909, + 2878, 2707, 2854, + 2769, 2769, 2769, + 2564, 2840, 2622, + 1912, 2921, 2300, + 0, 3010, 0, + 0, 3107, 0, + 0, 3212, 0, + 0, 3322, 0, + 0, 3437, 0, + 0, 3555, 0, + 0, 3677, 0, + 3249, 2501, 3133, + 3248, 2502, 3133, + 3248, 2502, 3133, + 3248, 2502, 3133, + 3248, 2503, 3132, + 3248, 2504, 3132, + 3247, 2505, 3132, + 3247, 2506, 3131, + 3246, 2508, 3130, + 3245, 2510, 3129, + 3244, 2513, 3128, + 3242, 2517, 3126, + 3239, 2523, 3124, + 3236, 2530, 3121, + 3232, 2539, 3117, + 3226, 2552, 3111, + 3218, 2568, 3103, + 3207, 2588, 3093, + 3192, 2614, 3078, + 3172, 2647, 3058, + 3142, 2687, 3029, + 3100, 2736, 2988, + 3036, 2794, 2926, + 2934, 2862, 2828, + 2746, 2939, 2650, + 2226, 3025, 2186, + 0, 3120, 0, + 0, 3221, 0, + 0, 3329, 0, + 0, 3443, 0, + 0, 3560, 0, + 0, 3681, 0, + 3392, 2560, 3234, + 3392, 2561, 3234, + 3392, 2561, 3234, + 3392, 2561, 3233, + 3392, 2562, 3233, + 3392, 2562, 3233, + 3391, 2563, 3233, + 3391, 2564, 3232, + 3391, 2566, 3232, + 3390, 2568, 3231, + 3389, 2571, 3230, + 3388, 2574, 3229, + 3386, 2579, 3227, + 3383, 2586, 3224, + 3380, 2594, 3221, + 3376, 2605, 3216, + 3370, 2619, 3210, + 3363, 2637, 3202, + 3352, 2661, 3190, + 3338, 2691, 3175, + 3317, 2727, 3153, + 3289, 2772, 3121, + 3248, 2826, 3076, + 3187, 2890, 3008, + 3089, 2962, 2896, + 2913, 3045, 2685, + 2459, 3135, 1969, + 0, 3234, 0, + 0, 3339, 0, + 0, 3450, 0, + 0, 3566, 0, + 0, 3685, 0, + 3533, 2629, 3341, + 3533, 2629, 3341, + 3533, 2629, 3341, + 3533, 2630, 3341, + 3533, 2630, 3341, + 3533, 2631, 3340, + 3532, 2631, 3340, + 3532, 2632, 3340, + 3532, 2634, 3339, + 3531, 2636, 3339, + 3530, 2638, 3338, + 3530, 2641, 3337, + 3528, 2645, 3335, + 3527, 2651, 3333, + 3524, 2658, 3331, + 3521, 2668, 3327, + 3517, 2680, 3322, + 3512, 2696, 3316, + 3504, 2717, 3307, + 3494, 2743, 3295, + 3479, 2776, 3278, + 3460, 2817, 3255, + 3432, 2866, 3221, + 3392, 2924, 3173, + 3332, 2992, 3098, + 3237, 3069, 2974, + 3069, 3156, 2727, + 2654, 3251, 1192, + 0, 3353, 0, + 0, 3461, 0, + 0, 3574, 0, + 0, 3692, 0, + 3672, 2707, 3453, + 3672, 2707, 3453, + 3671, 2707, 3453, + 3671, 2708, 3453, + 3671, 2708, 3453, + 3671, 2709, 3453, + 3671, 2709, 3453, + 3671, 2710, 3453, + 3671, 2711, 3452, + 3670, 2713, 3452, + 3670, 2715, 3451, + 3669, 2717, 3450, + 3668, 2721, 3449, + 3667, 2725, 3448, + 3665, 2732, 3446, + 3663, 2740, 3443, + 3660, 2750, 3439, + 3656, 2764, 3434, + 3650, 2782, 3427, + 3643, 2805, 3418, + 3633, 2834, 3405, + 3619, 2870, 3388, + 3599, 2914, 3363, + 3572, 2967, 3328, + 3532, 3029, 3276, + 3474, 3101, 3196, + 3382, 3182, 3061, + 3218, 3272, 2778, + 2827, 3370, 0, + 0, 3474, 0, + 0, 3585, 0, + 0, 3700, 0, + 3808, 2794, 3570, + 3808, 2794, 3570, + 3808, 2794, 3570, + 3808, 2795, 3570, + 3808, 2795, 3570, + 3808, 2795, 3570, + 3808, 2796, 3570, + 3808, 2796, 3570, + 3808, 2797, 3569, + 3807, 2799, 3569, + 3807, 2800, 3569, + 3806, 2803, 3568, + 3806, 2805, 3567, + 3805, 2809, 3566, + 3804, 2814, 3564, + 3802, 2821, 3562, + 3800, 2830, 3559, + 3797, 2842, 3555, + 3793, 2857, 3550, + 3787, 2876, 3543, + 3780, 2901, 3533, + 3770, 2932, 3520, + 3756, 2971, 3502, + 3737, 3018, 3476, + 3710, 3074, 3440, + 3671, 3139, 3385, + 3613, 3214, 3301, + 3522, 3299, 3156, + 3363, 3391, 2839, + 2989, 3492, 0, + 0, 3598, 0, + 0, 3710, 0, + 3944, 2889, 3691, + 3944, 2889, 3691, + 3944, 2890, 3691, + 3944, 2890, 3691, + 3944, 2890, 3691, + 3944, 2890, 3691, + 3944, 2891, 3690, + 3943, 2891, 3690, + 3943, 2892, 3690, + 3943, 2893, 3690, + 3943, 2894, 3689, + 3942, 2896, 3689, + 3942, 2898, 3688, + 3941, 2902, 3687, + 3940, 2906, 3686, + 3939, 2911, 3684, + 3937, 2919, 3682, + 3935, 2928, 3679, + 3932, 2941, 3675, + 3928, 2957, 3670, + 3923, 2978, 3663, + 3916, 3004, 3653, + 3906, 3037, 3639, + 3892, 3078, 3620, + 3873, 3128, 3594, + 3846, 3186, 3556, + 3808, 3255, 3500, + 3750, 3332, 3412, + 3661, 3419, 3258, + 3504, 3514, 2909, + 3141, 3616, 0, + 0, 3724, 0, + 4079, 2992, 3814, + 4079, 2992, 3814, + 4078, 2992, 3814, + 4078, 2992, 3814, + 4078, 2992, 3814, + 4078, 2992, 3814, + 4078, 2993, 3814, + 4078, 2993, 3813, + 4078, 2994, 3813, + 4078, 2995, 3813, + 4078, 2996, 3813, + 4077, 2997, 3812, + 4077, 2999, 3812, + 4077, 3002, 3811, + 4076, 3005, 3810, + 4075, 3009, 3809, + 4074, 3015, 3807, + 4072, 3023, 3805, + 4070, 3033, 3802, + 4067, 3047, 3798, + 4063, 3064, 3793, + 4058, 3086, 3785, + 4050, 3114, 3775, + 4040, 3148, 3761, + 4027, 3191, 3742, + 4008, 3242, 3715, + 3981, 3303, 3676, + 3943, 3374, 3618, + 3886, 3453, 3527, + 3798, 3542, 3367, + 3643, 3639, 2988, + 3288, 3742, 0, + 4095, 3100, 3939, + 4095, 3100, 3939, + 4095, 3100, 3939, + 4095, 3101, 3939, + 4095, 3101, 3939, + 4095, 3101, 3939, + 4095, 3101, 3939, + 4095, 3101, 3939, + 4095, 3102, 3939, + 4095, 3103, 3939, + 4095, 3103, 3938, + 4095, 3105, 3938, + 4095, 3106, 3938, + 4095, 3108, 3937, + 4095, 3111, 3936, + 4095, 3114, 3936, + 4095, 3119, 3934, + 4095, 3125, 3933, + 4095, 3133, 3930, + 4095, 3144, 3927, + 4095, 3158, 3923, + 4095, 3176, 3918, + 4095, 3199, 3910, + 4095, 3228, 3900, + 4095, 3264, 3886, + 4095, 3308, 3866, + 4095, 3361, 3839, + 4095, 3424, 3799, + 4078, 3496, 3740, + 4021, 3577, 3646, + 3933, 3667, 3480, + 3780, 3765, 3076, + 4095, 3214, 4066, + 4095, 3214, 4066, + 4095, 3214, 4066, + 4095, 3214, 4066, + 4095, 3214, 4066, + 4095, 3214, 4066, + 4095, 3215, 4066, + 4095, 3215, 4066, + 4095, 3215, 4066, + 4095, 3216, 4066, + 4095, 3216, 4066, + 4095, 3217, 4065, + 4095, 3218, 4065, + 4095, 3220, 4065, + 4095, 3222, 4064, + 4095, 3225, 4063, + 4095, 3229, 4062, + 4095, 3233, 4061, + 4095, 3240, 4059, + 4095, 3248, 4057, + 4095, 3259, 4054, + 4095, 3274, 4050, + 4095, 3292, 4044, + 4095, 3316, 4037, + 4095, 3346, 4026, + 4095, 3383, 4012, + 4095, 3429, 3992, + 4095, 3483, 3964, + 4095, 3547, 3924, + 4095, 3620, 3864, + 4095, 3703, 3768, + 4068, 3794, 3598, + 0, 2393, 2661, + 0, 2393, 2661, + 0, 2393, 2661, + 0, 2394, 2660, + 0, 2395, 2660, + 0, 2396, 2659, + 0, 2397, 2658, + 0, 2399, 2656, + 0, 2401, 2654, + 0, 2404, 2651, + 0, 2408, 2648, + 0, 2413, 2643, + 0, 2420, 2636, + 0, 2429, 2627, + 0, 2440, 2614, + 0, 2456, 2596, + 0, 2475, 2572, + 0, 2500, 2537, + 0, 2532, 2485, + 0, 2571, 2406, + 0, 2618, 2271, + 0, 2674, 1991, + 0, 2740, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3313, 0, + 0, 3430, 0, + 0, 3550, 0, + 0, 3673, 0, + 0, 2393, 2662, + 0, 2393, 2662, + 0, 2394, 2661, + 0, 2394, 2661, + 0, 2395, 2660, + 0, 2396, 2659, + 0, 2397, 2658, + 0, 2399, 2657, + 0, 2401, 2655, + 0, 2404, 2652, + 0, 2408, 2648, + 0, 2413, 2643, + 0, 2420, 2636, + 0, 2429, 2627, + 0, 2441, 2614, + 0, 2456, 2597, + 0, 2475, 2572, + 0, 2500, 2537, + 0, 2532, 2486, + 0, 2571, 2406, + 0, 2618, 2272, + 0, 2675, 1992, + 0, 2740, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3313, 0, + 0, 3430, 0, + 0, 3550, 0, + 0, 3673, 0, + 0, 2393, 2662, + 0, 2393, 2662, + 0, 2394, 2662, + 0, 2394, 2661, + 0, 2395, 2661, + 0, 2396, 2660, + 0, 2397, 2659, + 0, 2399, 2657, + 0, 2401, 2655, + 0, 2404, 2652, + 0, 2408, 2649, + 0, 2413, 2644, + 0, 2420, 2637, + 0, 2429, 2628, + 0, 2441, 2615, + 0, 2456, 2597, + 0, 2476, 2573, + 0, 2501, 2538, + 0, 2532, 2487, + 0, 2571, 2407, + 0, 2618, 2273, + 0, 2675, 1995, + 0, 2741, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3313, 0, + 0, 3430, 0, + 0, 3550, 0, + 0, 3673, 0, + 0, 2393, 2663, + 0, 2393, 2663, + 0, 2394, 2662, + 0, 2394, 2662, + 0, 2395, 2661, + 0, 2396, 2661, + 0, 2397, 2659, + 0, 2399, 2658, + 0, 2401, 2656, + 0, 2404, 2653, + 0, 2408, 2649, + 0, 2413, 2644, + 0, 2420, 2638, + 0, 2429, 2628, + 0, 2441, 2616, + 0, 2456, 2598, + 0, 2476, 2574, + 0, 2501, 2539, + 0, 2532, 2488, + 0, 2571, 2408, + 0, 2618, 2275, + 0, 2675, 1998, + 0, 2741, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3313, 0, + 0, 3430, 0, + 0, 3550, 0, + 0, 3674, 0, + 0, 2393, 2664, + 0, 2394, 2664, + 0, 2394, 2663, + 0, 2395, 2663, + 0, 2395, 2662, + 0, 2396, 2661, + 0, 2398, 2660, + 0, 2399, 2659, + 0, 2401, 2657, + 0, 2404, 2654, + 0, 2408, 2650, + 0, 2413, 2645, + 0, 2420, 2639, + 0, 2429, 2629, + 0, 2441, 2617, + 0, 2456, 2599, + 0, 2476, 2575, + 0, 2501, 2540, + 0, 2532, 2489, + 0, 2571, 2410, + 0, 2618, 2277, + 0, 2675, 2002, + 0, 2741, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3313, 0, + 0, 3430, 0, + 0, 3550, 0, + 0, 3674, 0, + 0, 2394, 2665, + 0, 2394, 2665, + 0, 2394, 2665, + 0, 2395, 2664, + 0, 2396, 2664, + 0, 2397, 2663, + 0, 2398, 2662, + 0, 2399, 2660, + 0, 2402, 2658, + 0, 2405, 2655, + 0, 2409, 2652, + 0, 2414, 2647, + 0, 2421, 2640, + 0, 2430, 2631, + 0, 2441, 2618, + 0, 2457, 2601, + 0, 2476, 2576, + 0, 2501, 2542, + 0, 2533, 2491, + 0, 2571, 2412, + 0, 2619, 2280, + 0, 2675, 2007, + 0, 2741, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3314, 0, + 0, 3430, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2394, 2667, + 0, 2394, 2667, + 0, 2395, 2666, + 0, 2395, 2666, + 0, 2396, 2665, + 0, 2397, 2664, + 0, 2398, 2663, + 0, 2400, 2662, + 0, 2402, 2660, + 0, 2405, 2657, + 0, 2409, 2653, + 0, 2414, 2648, + 0, 2421, 2642, + 0, 2430, 2633, + 0, 2442, 2620, + 0, 2457, 2603, + 0, 2477, 2579, + 0, 2501, 2544, + 0, 2533, 2493, + 0, 2572, 2415, + 0, 2619, 2284, + 0, 2675, 2014, + 0, 2741, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3314, 0, + 0, 3430, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2395, 2669, + 0, 2395, 2669, + 0, 2395, 2669, + 0, 2396, 2668, + 0, 2397, 2668, + 0, 2398, 2667, + 0, 2399, 2666, + 0, 2400, 2664, + 0, 2403, 2662, + 0, 2406, 2659, + 0, 2410, 2656, + 0, 2415, 2651, + 0, 2422, 2644, + 0, 2430, 2635, + 0, 2442, 2623, + 0, 2457, 2605, + 0, 2477, 2581, + 0, 2502, 2547, + 0, 2533, 2497, + 0, 2572, 2419, + 0, 2619, 2289, + 0, 2676, 2024, + 0, 2741, 0, + 0, 2817, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3095, 0, + 0, 3201, 0, + 0, 3314, 0, + 0, 3430, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2395, 2672, + 0, 2396, 2672, + 0, 2396, 2672, + 0, 2397, 2671, + 0, 2397, 2670, + 0, 2398, 2670, + 0, 2400, 2669, + 0, 2401, 2667, + 0, 2403, 2665, + 0, 2406, 2662, + 0, 2410, 2659, + 0, 2415, 2654, + 0, 2422, 2647, + 0, 2431, 2638, + 0, 2443, 2626, + 0, 2458, 2609, + 0, 2478, 2585, + 0, 2503, 2551, + 0, 2534, 2501, + 0, 2573, 2424, + 0, 2620, 2296, + 0, 2676, 2036, + 0, 2742, 0, + 0, 2817, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3095, 0, + 0, 3202, 0, + 0, 3314, 0, + 0, 3430, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2397, 2676, + 0, 2397, 2676, + 0, 2397, 2676, + 0, 2398, 2675, + 0, 2398, 2674, + 0, 2399, 2674, + 0, 2401, 2673, + 0, 2402, 2671, + 0, 2404, 2669, + 0, 2407, 2666, + 0, 2411, 2663, + 0, 2416, 2658, + 0, 2423, 2651, + 0, 2432, 2642, + 0, 2444, 2630, + 0, 2459, 2613, + 0, 2478, 2590, + 0, 2503, 2556, + 0, 2535, 2507, + 0, 2573, 2431, + 0, 2620, 2305, + 0, 2677, 2052, + 0, 2742, 0, + 0, 2817, 0, + 0, 2902, 0, + 0, 2995, 0, + 0, 3095, 0, + 0, 3202, 0, + 0, 3314, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2398, 2681, + 0, 2398, 2681, + 0, 2399, 2681, + 0, 2399, 2680, + 0, 2400, 2680, + 0, 2401, 2679, + 0, 2402, 2678, + 0, 2404, 2676, + 0, 2406, 2674, + 0, 2409, 2672, + 0, 2413, 2668, + 0, 2418, 2663, + 0, 2424, 2657, + 0, 2433, 2648, + 0, 2445, 2636, + 0, 2460, 2619, + 0, 2480, 2596, + 0, 2504, 2563, + 0, 2536, 2514, + 0, 2574, 2440, + 0, 2621, 2317, + 0, 2677, 2072, + 0, 2743, 674, + 0, 2818, 0, + 0, 2902, 0, + 0, 2995, 0, + 0, 3095, 0, + 0, 3202, 0, + 0, 3314, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2400, 2688, + 0, 2400, 2688, + 0, 2400, 2688, + 0, 2401, 2687, + 0, 2402, 2687, + 0, 2402, 2686, + 0, 2404, 2685, + 0, 2405, 2683, + 0, 2408, 2681, + 0, 2410, 2679, + 0, 2414, 2675, + 0, 2419, 2671, + 0, 2426, 2664, + 0, 2435, 2656, + 0, 2447, 2644, + 0, 2462, 2627, + 0, 2481, 2604, + 0, 2506, 2572, + 0, 2537, 2524, + 0, 2575, 2452, + 0, 2622, 2332, + 0, 2678, 2098, + 0, 2744, 1046, + 0, 2819, 0, + 0, 2903, 0, + 0, 2995, 0, + 0, 3096, 0, + 0, 3202, 0, + 0, 3314, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2402, 2697, + 0, 2402, 2697, + 0, 2403, 2697, + 0, 2403, 2696, + 0, 2404, 2696, + 0, 2405, 2695, + 0, 2406, 2694, + 0, 2408, 2693, + 0, 2410, 2691, + 0, 2413, 2688, + 0, 2417, 2685, + 0, 2422, 2680, + 0, 2428, 2674, + 0, 2437, 2665, + 0, 2449, 2654, + 0, 2464, 2638, + 0, 2483, 2615, + 0, 2508, 2583, + 0, 2539, 2537, + 0, 2577, 2467, + 0, 2624, 2352, + 0, 2680, 2130, + 0, 2745, 1300, + 0, 2820, 0, + 0, 2904, 0, + 0, 2996, 0, + 0, 3096, 0, + 0, 3203, 0, + 0, 3315, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2405, 2709, + 0, 2406, 2709, + 0, 2406, 2709, + 0, 2406, 2708, + 0, 2407, 2708, + 0, 2408, 2707, + 0, 2409, 2706, + 0, 2411, 2705, + 0, 2413, 2703, + 0, 2416, 2700, + 0, 2420, 2697, + 0, 2425, 2692, + 0, 2431, 2686, + 0, 2440, 2678, + 0, 2452, 2667, + 0, 2467, 2651, + 0, 2486, 2629, + 0, 2510, 2599, + 0, 2541, 2554, + 0, 2579, 2486, + 0, 2626, 2377, + 0, 2681, 2170, + 0, 2746, 1506, + 0, 2821, 0, + 0, 2905, 0, + 0, 2997, 0, + 0, 3097, 0, + 0, 3203, 0, + 0, 3315, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2410, 2725, + 0, 2410, 2724, + 0, 2410, 2724, + 0, 2411, 2724, + 0, 2411, 2723, + 0, 2412, 2722, + 0, 2413, 2721, + 0, 2415, 2720, + 0, 2417, 2718, + 0, 2420, 2716, + 0, 2424, 2713, + 0, 2429, 2708, + 0, 2435, 2702, + 0, 2444, 2694, + 0, 2456, 2684, + 0, 2470, 2669, + 0, 2489, 2648, + 0, 2514, 2618, + 0, 2544, 2575, + 0, 2582, 2511, + 0, 2628, 2408, + 0, 2684, 2219, + 0, 2748, 1686, + 0, 2823, 0, + 0, 2906, 0, + 0, 2998, 0, + 0, 3098, 0, + 0, 3204, 0, + 0, 3316, 0, + 0, 3432, 0, + 0, 3552, 0, + 0, 3675, 0, + 0, 2415, 2744, + 0, 2415, 2744, + 0, 2416, 2744, + 0, 2416, 2744, + 0, 2417, 2743, + 0, 2418, 2742, + 0, 2419, 2741, + 0, 2421, 2740, + 0, 2423, 2738, + 0, 2426, 2736, + 0, 2429, 2733, + 0, 2434, 2729, + 0, 2441, 2723, + 0, 2449, 2716, + 0, 2461, 2705, + 0, 2475, 2691, + 0, 2494, 2671, + 0, 2518, 2643, + 0, 2548, 2603, + 0, 2586, 2543, + 0, 2632, 2447, + 0, 2687, 2277, + 0, 2751, 1851, + 0, 2825, 0, + 0, 2908, 0, + 0, 3000, 0, + 0, 3099, 0, + 0, 3205, 0, + 0, 3316, 0, + 0, 3432, 0, + 0, 3552, 0, + 0, 3675, 0, + 896, 2423, 2770, + 879, 2423, 2769, + 854, 2423, 2769, + 820, 2424, 2769, + 769, 2424, 2768, + 691, 2425, 2768, + 560, 2426, 2767, + 290, 2428, 2766, + 0, 2430, 2764, + 0, 2433, 2762, + 0, 2436, 2759, + 0, 2441, 2755, + 0, 2448, 2750, + 0, 2456, 2742, + 0, 2467, 2733, + 0, 2482, 2719, + 0, 2500, 2701, + 0, 2524, 2674, + 0, 2554, 2637, + 0, 2591, 2581, + 0, 2636, 2494, + 0, 2691, 2344, + 0, 2755, 2007, + 0, 2828, 0, + 0, 2910, 0, + 0, 3002, 0, + 0, 3101, 0, + 0, 3206, 0, + 0, 3317, 0, + 0, 3433, 0, + 0, 3553, 0, + 0, 3675, 0, + 1925, 2432, 2801, + 1923, 2432, 2801, + 1921, 2433, 2801, + 1917, 2433, 2801, + 1913, 2434, 2800, + 1907, 2435, 2799, + 1899, 2436, 2799, + 1889, 2438, 2798, + 1874, 2440, 2796, + 1853, 2442, 2794, + 1824, 2446, 2791, + 1782, 2451, 2788, + 1718, 2457, 2783, + 1617, 2465, 2776, + 1432, 2476, 2767, + 925, 2490, 2754, + 0, 2508, 2737, + 0, 2532, 2713, + 0, 2561, 2679, + 0, 2598, 2628, + 0, 2642, 2551, + 0, 2696, 2421, + 0, 2759, 2155, + 0, 2832, 0, + 0, 2914, 0, + 0, 3004, 0, + 0, 3103, 0, + 0, 3208, 0, + 0, 3319, 0, + 0, 3434, 0, + 0, 3554, 0, + 0, 3676, 0, + 2283, 2445, 2841, + 2282, 2445, 2840, + 2281, 2445, 2840, + 2279, 2446, 2840, + 2278, 2447, 2839, + 2275, 2447, 2839, + 2271, 2449, 2838, + 2267, 2450, 2837, + 2260, 2452, 2836, + 2252, 2455, 2834, + 2240, 2458, 2831, + 2223, 2463, 2828, + 2200, 2469, 2823, + 2168, 2477, 2817, + 2120, 2488, 2809, + 2047, 2501, 2798, + 1927, 2519, 2782, + 1692, 2542, 2760, + 612, 2571, 2729, + 0, 2607, 2685, + 0, 2650, 2617, + 0, 2703, 2507, + 0, 2765, 2299, + 0, 2837, 1624, + 0, 2918, 0, + 0, 3008, 0, + 0, 3106, 0, + 0, 3210, 0, + 0, 3321, 0, + 0, 3436, 0, + 0, 3555, 0, + 0, 3677, 0, + 2532, 2461, 2888, + 2531, 2462, 2888, + 2531, 2462, 2888, + 2530, 2462, 2887, + 2529, 2463, 2887, + 2527, 2464, 2887, + 2525, 2465, 2886, + 2522, 2466, 2885, + 2519, 2468, 2884, + 2514, 2471, 2882, + 2507, 2474, 2880, + 2498, 2479, 2877, + 2486, 2484, 2873, + 2469, 2492, 2867, + 2445, 2503, 2860, + 2411, 2516, 2850, + 2360, 2533, 2836, + 2283, 2555, 2817, + 2155, 2583, 2789, + 1893, 2618, 2750, + 0, 2661, 2692, + 0, 2713, 2601, + 0, 2774, 2440, + 0, 2844, 2059, + 0, 2924, 0, + 0, 3013, 0, + 0, 3110, 0, + 0, 3213, 0, + 0, 3323, 0, + 0, 3438, 0, + 0, 3556, 0, + 0, 3678, 0, + 2735, 2482, 2945, + 2735, 2483, 2945, + 2734, 2483, 2945, + 2734, 2483, 2944, + 2733, 2484, 2944, + 2732, 2485, 2944, + 2731, 2486, 2943, + 2729, 2487, 2942, + 2727, 2489, 2941, + 2724, 2491, 2940, + 2719, 2495, 2938, + 2714, 2499, 2935, + 2706, 2504, 2931, + 2696, 2512, 2927, + 2681, 2522, 2920, + 2661, 2535, 2911, + 2633, 2551, 2899, + 2592, 2572, 2882, + 2532, 2599, 2859, + 2435, 2633, 2826, + 2263, 2675, 2777, + 1825, 2725, 2702, + 0, 2784, 2579, + 0, 2853, 2332, + 0, 2932, 847, + 0, 3019, 0, + 0, 3115, 0, + 0, 3217, 0, + 0, 3326, 0, + 0, 3440, 0, + 0, 3558, 0, + 0, 3679, 0, + 2914, 2509, 3011, + 2913, 2509, 3011, + 2913, 2510, 3011, + 2913, 2510, 3011, + 2912, 2510, 3010, + 2912, 2511, 3010, + 2911, 2512, 3009, + 2910, 2513, 3009, + 2908, 2515, 3008, + 2906, 2517, 3007, + 2903, 2521, 3005, + 2900, 2525, 3003, + 2894, 2530, 3000, + 2888, 2537, 2995, + 2878, 2546, 2990, + 2865, 2558, 2982, + 2848, 2574, 2972, + 2823, 2594, 2958, + 2787, 2620, 2938, + 2735, 2652, 2910, + 2653, 2692, 2870, + 2516, 2741, 2810, + 2224, 2798, 2716, + 0, 2865, 2547, + 0, 2942, 2131, + 0, 3028, 0, + 0, 3122, 0, + 0, 3223, 0, + 0, 3331, 0, + 0, 3443, 0, + 0, 3561, 0, + 0, 3681, 0, + 3078, 2542, 3087, + 3078, 2543, 3087, + 3077, 2543, 3087, + 3077, 2543, 3087, + 3077, 2544, 3086, + 3076, 2544, 3086, + 3076, 2545, 3086, + 3075, 2547, 3085, + 3074, 2548, 3084, + 3073, 2550, 3083, + 3071, 2553, 3082, + 3068, 2557, 3080, + 3064, 2562, 3077, + 3060, 2569, 3074, + 3053, 2577, 3069, + 3045, 2589, 3063, + 3033, 2603, 3054, + 3016, 2622, 3042, + 2993, 2647, 3026, + 2961, 2677, 3003, + 2913, 2715, 2971, + 2841, 2761, 2923, + 2721, 2816, 2851, + 2486, 2881, 2733, + 1423, 2955, 2501, + 0, 3039, 1510, + 0, 3130, 0, + 0, 3230, 0, + 0, 3336, 0, + 0, 3448, 0, + 0, 3564, 0, + 0, 3684, 0, + 3232, 2584, 3172, + 3232, 2584, 3172, + 3232, 2584, 3172, + 3232, 2584, 3172, + 3232, 2585, 3171, + 3232, 2585, 3171, + 3231, 2586, 3171, + 3231, 2587, 3170, + 3230, 2589, 3170, + 3229, 2591, 3169, + 3227, 2593, 3167, + 3226, 2597, 3166, + 3223, 2601, 3164, + 3220, 2607, 3161, + 3215, 2615, 3157, + 3209, 2626, 3152, + 3201, 2639, 3145, + 3190, 2657, 3135, + 3174, 2680, 3122, + 3152, 2708, 3103, + 3122, 2743, 3078, + 3077, 2787, 3041, + 3010, 2839, 2986, + 2901, 2901, 2901, + 2696, 2972, 2754, + 2044, 3053, 2432, + 0, 3142, 0, + 0, 3239, 0, + 0, 3344, 0, + 0, 3454, 0, + 0, 3569, 0, + 0, 3687, 0, + 3381, 2633, 3265, + 3381, 2634, 3265, + 3381, 2634, 3265, + 3380, 2634, 3265, + 3380, 2634, 3265, + 3380, 2635, 3265, + 3380, 2636, 3264, + 3379, 2637, 3264, + 3379, 2638, 3263, + 3378, 2640, 3263, + 3377, 2642, 3262, + 3376, 2645, 3260, + 3374, 2649, 3259, + 3372, 2655, 3256, + 3368, 2662, 3253, + 3364, 2671, 3249, + 3358, 2684, 3243, + 3350, 2700, 3235, + 3339, 2720, 3225, + 3324, 2746, 3210, + 3304, 2779, 3190, + 3274, 2819, 3161, + 3232, 2868, 3120, + 3168, 2926, 3058, + 3066, 2994, 2960, + 2879, 3071, 2782, + 2358, 3157, 2318, + 0, 3252, 0, + 0, 3353, 0, + 0, 3461, 0, + 0, 3575, 0, + 0, 3692, 0, + 3525, 2692, 3366, + 3525, 2693, 3366, + 3524, 2693, 3366, + 3524, 2693, 3366, + 3524, 2693, 3366, + 3524, 2694, 3365, + 3524, 2695, 3365, + 3524, 2695, 3365, + 3523, 2697, 3364, + 3523, 2698, 3364, + 3522, 2700, 3363, + 3521, 2703, 3362, + 3520, 2707, 3361, + 3518, 2711, 3359, + 3516, 2718, 3356, + 3512, 2726, 3353, + 3508, 2737, 3348, + 3503, 2751, 3342, + 3495, 2770, 3334, + 3484, 2793, 3322, + 3470, 2823, 3307, + 3450, 2859, 3285, + 3421, 2904, 3254, + 3380, 2958, 3208, + 3319, 3022, 3140, + 3221, 3095, 3028, + 3045, 3177, 2817, + 2591, 3268, 2101, + 0, 3366, 0, + 0, 3471, 0, + 0, 3582, 0, + 0, 3698, 0, + 3665, 2761, 3473, + 3665, 2761, 3473, + 3665, 2761, 3473, + 3665, 2762, 3473, + 3665, 2762, 3473, + 3665, 2762, 3473, + 3665, 2763, 3472, + 3665, 2764, 3472, + 3664, 2765, 3472, + 3664, 2766, 3471, + 3663, 2768, 3471, + 3663, 2770, 3470, + 3662, 2773, 3469, + 3660, 2777, 3467, + 3659, 2783, 3465, + 3656, 2790, 3463, + 3653, 2800, 3459, + 3649, 2812, 3454, + 3644, 2828, 3448, + 3636, 2849, 3439, + 3626, 2875, 3427, + 3611, 2908, 3410, + 3592, 2949, 3387, + 3564, 2998, 3353, + 3524, 3056, 3305, + 3464, 3124, 3230, + 3370, 3202, 3106, + 3201, 3288, 2859, + 2786, 3383, 1324, + 0, 3485, 0, + 0, 3593, 0, + 0, 3706, 0, + 3804, 2839, 3586, + 3804, 2839, 3586, + 3804, 2839, 3586, + 3804, 2840, 3585, + 3803, 2840, 3585, + 3803, 2840, 3585, + 3803, 2841, 3585, + 3803, 2841, 3585, + 3803, 2842, 3585, + 3803, 2843, 3584, + 3802, 2845, 3584, + 3802, 2847, 3583, + 3801, 2849, 3582, + 3800, 2853, 3581, + 3799, 2858, 3580, + 3797, 2864, 3578, + 3795, 2872, 3575, + 3792, 2882, 3571, + 3788, 2896, 3566, + 3782, 2914, 3559, + 3775, 2937, 3550, + 3765, 2966, 3537, + 3751, 3002, 3520, + 3731, 3046, 3495, + 3704, 3099, 3460, + 3665, 3161, 3408, + 3606, 3233, 3328, + 3514, 3314, 3193, + 3351, 3404, 2910, + 2960, 3502, 0, + 0, 3606, 0, + 0, 3717, 0, + 3940, 2926, 3703, + 3940, 2926, 3702, + 3940, 2926, 3702, + 3940, 2926, 3702, + 3940, 2927, 3702, + 3940, 2927, 3702, + 3940, 2927, 3702, + 3940, 2928, 3702, + 3940, 2929, 3702, + 3940, 2930, 3702, + 3939, 2931, 3701, + 3939, 2932, 3701, + 3938, 2935, 3700, + 3938, 2938, 3699, + 3937, 2941, 3698, + 3936, 2947, 3696, + 3934, 2953, 3694, + 3932, 2962, 3691, + 3929, 2974, 3687, + 3925, 2989, 3682, + 3919, 3008, 3675, + 3912, 3033, 3666, + 3902, 3064, 3652, + 3888, 3103, 3634, + 3869, 3150, 3608, + 3842, 3206, 3572, + 3803, 3271, 3517, + 3745, 3347, 3433, + 3654, 3431, 3288, + 3495, 3523, 2971, + 3121, 3624, 0, + 0, 3730, 0, + 4076, 3021, 3823, + 4076, 3021, 3823, + 4076, 3021, 3823, + 4076, 3022, 3823, + 4076, 3022, 3823, + 4076, 3022, 3823, + 4076, 3022, 3823, + 4076, 3023, 3822, + 4076, 3023, 3822, + 4075, 3024, 3822, + 4075, 3025, 3822, + 4075, 3026, 3821, + 4075, 3028, 3821, + 4074, 3031, 3820, + 4073, 3034, 3819, + 4072, 3038, 3818, + 4071, 3043, 3817, + 4070, 3051, 3814, + 4067, 3060, 3811, + 4064, 3073, 3807, + 4060, 3089, 3802, + 4055, 3110, 3795, + 4048, 3136, 3785, + 4038, 3170, 3771, + 4024, 3210, 3753, + 4005, 3260, 3726, + 3978, 3318, 3688, + 3940, 3387, 3632, + 3883, 3464, 3544, + 3793, 3551, 3390, + 3636, 3646, 3041, + 3273, 3748, 0, + 4095, 3124, 3946, + 4095, 3124, 3946, + 4095, 3124, 3946, + 4095, 3124, 3946, + 4095, 3124, 3946, + 4095, 3124, 3946, + 4095, 3125, 3946, + 4095, 3125, 3946, + 4095, 3125, 3946, + 4095, 3126, 3945, + 4095, 3127, 3945, + 4095, 3128, 3945, + 4095, 3129, 3945, + 4095, 3131, 3944, + 4095, 3134, 3943, + 4095, 3137, 3942, + 4095, 3142, 3941, + 4095, 3147, 3940, + 4095, 3155, 3937, + 4095, 3165, 3934, + 4095, 3179, 3930, + 4095, 3196, 3925, + 4095, 3218, 3917, + 4095, 3246, 3907, + 4095, 3280, 3893, + 4095, 3323, 3874, + 4095, 3375, 3847, + 4095, 3435, 3808, + 4075, 3506, 3750, + 4019, 3586, 3659, + 3930, 3674, 3499, + 3775, 3771, 3120, + 4095, 3232, 4071, + 4095, 3232, 4071, + 4095, 3232, 4071, + 4095, 3232, 4071, + 4095, 3233, 4071, + 4095, 3233, 4071, + 4095, 3233, 4071, + 4095, 3233, 4071, + 4095, 3234, 4071, + 4095, 3234, 4071, + 4095, 3235, 4071, + 4095, 3236, 4070, + 4095, 3237, 4070, + 4095, 3238, 4070, + 4095, 3240, 4069, + 4095, 3243, 4069, + 4095, 3246, 4068, + 4095, 3251, 4066, + 4095, 3257, 4065, + 4095, 3265, 4062, + 4095, 3276, 4059, + 4095, 3290, 4055, + 4095, 3308, 4050, + 4095, 3331, 4042, + 4095, 3360, 4032, + 4095, 3396, 4018, + 4095, 3440, 3998, + 4095, 3493, 3971, + 4095, 3556, 3931, + 4095, 3628, 3872, + 4095, 3709, 3778, + 4065, 3799, 3612, + 0, 2525, 2793, + 0, 2525, 2793, + 0, 2525, 2793, + 0, 2525, 2793, + 0, 2526, 2792, + 0, 2527, 2792, + 0, 2528, 2791, + 0, 2529, 2790, + 0, 2531, 2788, + 0, 2533, 2786, + 0, 2536, 2783, + 0, 2540, 2779, + 0, 2545, 2774, + 0, 2552, 2768, + 0, 2561, 2758, + 0, 2572, 2746, + 0, 2588, 2728, + 0, 2607, 2704, + 0, 2632, 2668, + 0, 2664, 2617, + 0, 2703, 2537, + 0, 2750, 2402, + 0, 2807, 2121, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3445, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2525, 2794, + 0, 2525, 2794, + 0, 2525, 2793, + 0, 2526, 2793, + 0, 2526, 2792, + 0, 2527, 2792, + 0, 2528, 2791, + 0, 2529, 2790, + 0, 2531, 2788, + 0, 2533, 2786, + 0, 2536, 2783, + 0, 2540, 2780, + 0, 2545, 2775, + 0, 2552, 2768, + 0, 2561, 2759, + 0, 2573, 2746, + 0, 2588, 2728, + 0, 2607, 2704, + 0, 2632, 2669, + 0, 2664, 2617, + 0, 2703, 2538, + 0, 2750, 2403, + 0, 2807, 2123, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2525, 2794, + 0, 2525, 2794, + 0, 2525, 2794, + 0, 2526, 2793, + 0, 2526, 2793, + 0, 2527, 2792, + 0, 2528, 2791, + 0, 2529, 2790, + 0, 2531, 2789, + 0, 2533, 2787, + 0, 2536, 2784, + 0, 2540, 2780, + 0, 2545, 2775, + 0, 2552, 2768, + 0, 2561, 2759, + 0, 2573, 2746, + 0, 2588, 2729, + 0, 2608, 2704, + 0, 2633, 2669, + 0, 2664, 2618, + 0, 2703, 2538, + 0, 2750, 2404, + 0, 2807, 2124, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2525, 2795, + 0, 2525, 2794, + 0, 2525, 2794, + 0, 2526, 2794, + 0, 2526, 2793, + 0, 2527, 2793, + 0, 2528, 2792, + 0, 2529, 2791, + 0, 2531, 2789, + 0, 2533, 2787, + 0, 2536, 2784, + 0, 2540, 2781, + 0, 2545, 2776, + 0, 2552, 2769, + 0, 2561, 2760, + 0, 2573, 2747, + 0, 2588, 2730, + 0, 2608, 2705, + 0, 2633, 2670, + 0, 2664, 2619, + 0, 2703, 2539, + 0, 2750, 2405, + 0, 2807, 2127, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2525, 2795, + 0, 2525, 2795, + 0, 2526, 2795, + 0, 2526, 2795, + 0, 2526, 2794, + 0, 2527, 2793, + 0, 2528, 2793, + 0, 2529, 2791, + 0, 2531, 2790, + 0, 2533, 2788, + 0, 2536, 2785, + 0, 2540, 2781, + 0, 2545, 2776, + 0, 2552, 2770, + 0, 2561, 2760, + 0, 2573, 2748, + 0, 2588, 2730, + 0, 2608, 2706, + 0, 2633, 2671, + 0, 2664, 2620, + 0, 2703, 2540, + 0, 2750, 2407, + 0, 2807, 2130, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2525, 2796, + 0, 2526, 2796, + 0, 2526, 2796, + 0, 2526, 2795, + 0, 2527, 2795, + 0, 2527, 2794, + 0, 2528, 2794, + 0, 2530, 2792, + 0, 2531, 2791, + 0, 2533, 2789, + 0, 2536, 2786, + 0, 2540, 2782, + 0, 2546, 2777, + 0, 2552, 2771, + 0, 2561, 2761, + 0, 2573, 2749, + 0, 2588, 2731, + 0, 2608, 2707, + 0, 2633, 2672, + 0, 2664, 2621, + 0, 2703, 2542, + 0, 2751, 2409, + 0, 2807, 2134, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2526, 2798, + 0, 2526, 2797, + 0, 2526, 2797, + 0, 2527, 2797, + 0, 2527, 2796, + 0, 2528, 2796, + 0, 2529, 2795, + 0, 2530, 2794, + 0, 2532, 2792, + 0, 2534, 2790, + 0, 2537, 2787, + 0, 2541, 2784, + 0, 2546, 2779, + 0, 2553, 2772, + 0, 2562, 2763, + 0, 2573, 2750, + 0, 2589, 2733, + 0, 2608, 2709, + 0, 2633, 2674, + 0, 2665, 2623, + 0, 2703, 2544, + 0, 2751, 2412, + 0, 2807, 2139, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2526, 2799, + 0, 2526, 2799, + 0, 2527, 2799, + 0, 2527, 2798, + 0, 2527, 2798, + 0, 2528, 2797, + 0, 2529, 2797, + 0, 2530, 2795, + 0, 2532, 2794, + 0, 2534, 2792, + 0, 2537, 2789, + 0, 2541, 2785, + 0, 2546, 2780, + 0, 2553, 2774, + 0, 2562, 2765, + 0, 2574, 2752, + 0, 2589, 2735, + 0, 2609, 2711, + 0, 2634, 2676, + 0, 2665, 2625, + 0, 2704, 2547, + 0, 2751, 2416, + 0, 2807, 2146, + 0, 2873, 0, + 0, 2949, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2527, 2801, + 0, 2527, 2801, + 0, 2527, 2801, + 0, 2528, 2801, + 0, 2528, 2800, + 0, 2529, 2800, + 0, 2530, 2799, + 0, 2531, 2798, + 0, 2533, 2796, + 0, 2535, 2794, + 0, 2538, 2791, + 0, 2542, 2788, + 0, 2547, 2783, + 0, 2554, 2776, + 0, 2563, 2767, + 0, 2574, 2755, + 0, 2590, 2737, + 0, 2609, 2713, + 0, 2634, 2679, + 0, 2665, 2629, + 0, 2704, 2551, + 0, 2751, 2421, + 0, 2808, 2156, + 0, 2873, 0, + 0, 2949, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3227, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2527, 2804, + 0, 2528, 2804, + 0, 2528, 2804, + 0, 2528, 2804, + 0, 2529, 2803, + 0, 2529, 2803, + 0, 2530, 2802, + 0, 2532, 2801, + 0, 2533, 2799, + 0, 2536, 2797, + 0, 2538, 2794, + 0, 2542, 2791, + 0, 2548, 2786, + 0, 2554, 2779, + 0, 2563, 2770, + 0, 2575, 2758, + 0, 2590, 2741, + 0, 2610, 2717, + 0, 2635, 2683, + 0, 2666, 2633, + 0, 2705, 2556, + 0, 2752, 2428, + 0, 2808, 2168, + 0, 2874, 0, + 0, 2949, 0, + 0, 3034, 0, + 0, 3126, 0, + 0, 3227, 0, + 0, 3334, 0, + 0, 3446, 0, + 0, 3563, 0, + 0, 3683, 0, + 0, 2528, 2808, + 0, 2529, 2808, + 0, 2529, 2808, + 0, 2529, 2808, + 0, 2530, 2807, + 0, 2531, 2807, + 0, 2531, 2806, + 0, 2533, 2805, + 0, 2534, 2803, + 0, 2537, 2801, + 0, 2539, 2799, + 0, 2543, 2795, + 0, 2549, 2790, + 0, 2555, 2783, + 0, 2564, 2775, + 0, 2576, 2762, + 0, 2591, 2745, + 0, 2611, 2722, + 0, 2635, 2688, + 0, 2667, 2639, + 0, 2705, 2563, + 0, 2752, 2437, + 0, 2809, 2184, + 0, 2874, 0, + 0, 2949, 0, + 0, 3034, 0, + 0, 3127, 0, + 0, 3227, 0, + 0, 3334, 0, + 0, 3446, 0, + 0, 3563, 0, + 0, 3683, 0, + 0, 2530, 2814, + 0, 2530, 2813, + 0, 2530, 2813, + 0, 2531, 2813, + 0, 2531, 2812, + 0, 2532, 2812, + 0, 2533, 2811, + 0, 2534, 2810, + 0, 2536, 2808, + 0, 2538, 2806, + 0, 2541, 2804, + 0, 2545, 2800, + 0, 2550, 2795, + 0, 2557, 2789, + 0, 2565, 2780, + 0, 2577, 2768, + 0, 2592, 2751, + 0, 2612, 2728, + 0, 2636, 2695, + 0, 2668, 2646, + 0, 2706, 2572, + 0, 2753, 2449, + 0, 2809, 2204, + 0, 2875, 806, + 0, 2950, 0, + 0, 3034, 0, + 0, 3127, 0, + 0, 3227, 0, + 0, 3334, 0, + 0, 3446, 0, + 0, 3563, 0, + 0, 3683, 0, + 0, 2532, 2821, + 0, 2532, 2820, + 0, 2532, 2820, + 0, 2532, 2820, + 0, 2533, 2819, + 0, 2534, 2819, + 0, 2535, 2818, + 0, 2536, 2817, + 0, 2537, 2815, + 0, 2540, 2814, + 0, 2543, 2811, + 0, 2546, 2807, + 0, 2552, 2803, + 0, 2558, 2796, + 0, 2567, 2788, + 0, 2579, 2776, + 0, 2594, 2759, + 0, 2613, 2736, + 0, 2638, 2704, + 0, 2669, 2656, + 0, 2708, 2584, + 0, 2754, 2464, + 0, 2810, 2230, + 0, 2876, 1179, + 0, 2951, 0, + 0, 3035, 0, + 0, 3128, 0, + 0, 3228, 0, + 0, 3334, 0, + 0, 3446, 0, + 0, 3563, 0, + 0, 3683, 0, + 0, 2534, 2830, + 0, 2534, 2829, + 0, 2534, 2829, + 0, 2535, 2829, + 0, 2535, 2828, + 0, 2536, 2828, + 0, 2537, 2827, + 0, 2538, 2826, + 0, 2540, 2825, + 0, 2542, 2823, + 0, 2545, 2820, + 0, 2549, 2817, + 0, 2554, 2812, + 0, 2561, 2806, + 0, 2569, 2797, + 0, 2581, 2786, + 0, 2596, 2770, + 0, 2615, 2747, + 0, 2640, 2716, + 0, 2671, 2669, + 0, 2709, 2599, + 0, 2756, 2484, + 0, 2812, 2263, + 0, 2877, 1432, + 0, 2952, 0, + 0, 3036, 0, + 0, 3128, 0, + 0, 3228, 0, + 0, 3335, 0, + 0, 3447, 0, + 0, 3563, 0, + 0, 3683, 0, + 0, 2537, 2842, + 0, 2537, 2841, + 0, 2538, 2841, + 0, 2538, 2841, + 0, 2539, 2840, + 0, 2539, 2840, + 0, 2540, 2839, + 0, 2541, 2838, + 0, 2543, 2837, + 0, 2545, 2835, + 0, 2548, 2832, + 0, 2552, 2829, + 0, 2557, 2824, + 0, 2564, 2818, + 0, 2572, 2810, + 0, 2584, 2799, + 0, 2599, 2783, + 0, 2618, 2761, + 0, 2642, 2731, + 0, 2673, 2686, + 0, 2711, 2618, + 0, 2758, 2509, + 0, 2813, 2303, + 0, 2878, 1638, + 0, 2953, 0, + 0, 3037, 0, + 0, 3129, 0, + 0, 3229, 0, + 0, 3335, 0, + 0, 3447, 0, + 0, 3564, 0, + 0, 3684, 0, + 0, 2541, 2857, + 0, 2542, 2857, + 0, 2542, 2857, + 0, 2542, 2856, + 0, 2543, 2856, + 0, 2543, 2855, + 0, 2544, 2854, + 0, 2546, 2854, + 0, 2547, 2852, + 0, 2549, 2850, + 0, 2552, 2848, + 0, 2556, 2845, + 0, 2561, 2840, + 0, 2568, 2835, + 0, 2576, 2827, + 0, 2588, 2816, + 0, 2602, 2801, + 0, 2621, 2780, + 0, 2646, 2750, + 0, 2676, 2708, + 0, 2714, 2643, + 0, 2760, 2540, + 0, 2816, 2351, + 0, 2880, 1818, + 0, 2955, 0, + 0, 3038, 0, + 0, 3130, 0, + 0, 3230, 0, + 0, 3336, 0, + 0, 3448, 0, + 0, 3564, 0, + 0, 3684, 0, + 0, 2547, 2877, + 0, 2547, 2877, + 0, 2547, 2876, + 0, 2548, 2876, + 0, 2548, 2876, + 0, 2549, 2875, + 0, 2550, 2874, + 0, 2551, 2873, + 0, 2553, 2872, + 0, 2555, 2870, + 0, 2558, 2868, + 0, 2561, 2865, + 0, 2566, 2861, + 0, 2573, 2855, + 0, 2581, 2848, + 0, 2593, 2837, + 0, 2607, 2823, + 0, 2626, 2803, + 0, 2650, 2775, + 0, 2680, 2735, + 0, 2718, 2675, + 0, 2764, 2579, + 0, 2819, 2409, + 0, 2883, 1983, + 0, 2957, 0, + 0, 3040, 0, + 0, 3132, 0, + 0, 3231, 0, + 0, 3337, 0, + 0, 3449, 0, + 0, 3565, 0, + 0, 3684, 0, + 1040, 2554, 2902, + 1028, 2555, 2902, + 1011, 2555, 2902, + 986, 2555, 2901, + 952, 2556, 2901, + 901, 2556, 2900, + 823, 2557, 2900, + 692, 2558, 2899, + 422, 2560, 2898, + 0, 2562, 2896, + 0, 2565, 2894, + 0, 2569, 2891, + 0, 2573, 2887, + 0, 2580, 2882, + 0, 2588, 2875, + 0, 2599, 2865, + 0, 2614, 2851, + 0, 2632, 2833, + 0, 2656, 2806, + 0, 2686, 2769, + 0, 2723, 2713, + 0, 2768, 2627, + 0, 2823, 2476, + 0, 2887, 2139, + 0, 2960, 0, + 0, 3043, 0, + 0, 3134, 0, + 0, 3233, 0, + 0, 3338, 0, + 0, 3450, 0, + 0, 3565, 0, + 0, 3685, 0, + 2058, 2564, 2934, + 2057, 2564, 2933, + 2055, 2565, 2933, + 2053, 2565, 2933, + 2050, 2565, 2933, + 2045, 2566, 2932, + 2039, 2567, 2932, + 2032, 2568, 2931, + 2021, 2570, 2930, + 2006, 2572, 2928, + 1985, 2574, 2926, + 1956, 2578, 2923, + 1914, 2583, 2920, + 1850, 2589, 2915, + 1749, 2597, 2908, + 1564, 2608, 2899, + 1057, 2622, 2887, + 0, 2641, 2869, + 0, 2664, 2845, + 0, 2693, 2811, + 0, 2730, 2761, + 0, 2775, 2683, + 0, 2828, 2553, + 0, 2891, 2287, + 0, 2964, 0, + 0, 3046, 0, + 0, 3137, 0, + 0, 3235, 0, + 0, 3340, 0, + 0, 3451, 0, + 0, 3566, 0, + 0, 3686, 0, + 2415, 2577, 2973, + 2415, 2577, 2973, + 2414, 2577, 2972, + 2413, 2578, 2972, + 2412, 2578, 2972, + 2410, 2579, 2971, + 2407, 2580, 2971, + 2404, 2581, 2970, + 2399, 2582, 2969, + 2392, 2584, 2968, + 2384, 2587, 2966, + 2372, 2590, 2963, + 2355, 2595, 2960, + 2332, 2601, 2956, + 2300, 2609, 2949, + 2252, 2620, 2941, + 2179, 2633, 2930, + 2059, 2651, 2914, + 1824, 2674, 2892, + 744, 2703, 2862, + 0, 2739, 2817, + 0, 2783, 2749, + 0, 2835, 2639, + 0, 2898, 2431, + 0, 2969, 1756, + 0, 3050, 0, + 0, 3140, 0, + 0, 3238, 0, + 0, 3342, 0, + 0, 3453, 0, + 0, 3568, 0, + 0, 3687, 0, + 2664, 2593, 3020, + 2664, 2593, 3020, + 2663, 2594, 3020, + 2663, 2594, 3020, + 2662, 2594, 3020, + 2661, 2595, 3019, + 2659, 2596, 3019, + 2657, 2597, 3018, + 2654, 2598, 3017, + 2651, 2600, 3016, + 2646, 2603, 3014, + 2639, 2606, 3012, + 2630, 2611, 3009, + 2618, 2617, 3005, + 2601, 2624, 2999, + 2577, 2635, 2992, + 2543, 2648, 2982, + 2493, 2665, 2968, + 2416, 2687, 2949, + 2287, 2715, 2922, + 2025, 2750, 2883, + 0, 2793, 2824, + 0, 2845, 2733, + 0, 2906, 2572, + 0, 2976, 2191, + 0, 3056, 0, + 0, 3145, 0, + 0, 3242, 0, + 0, 3345, 0, + 0, 3455, 0, + 0, 3570, 0, + 0, 3688, 0, + 2867, 2614, 3077, + 2867, 2614, 3077, + 2867, 2615, 3077, + 2866, 2615, 3077, + 2866, 2615, 3076, + 2865, 2616, 3076, + 2864, 2617, 3076, + 2863, 2618, 3075, + 2861, 2619, 3074, + 2859, 2621, 3073, + 2856, 2623, 3072, + 2851, 2627, 3070, + 2846, 2631, 3067, + 2838, 2637, 3063, + 2828, 2644, 3059, + 2813, 2654, 3052, + 2793, 2667, 3043, + 2765, 2683, 3031, + 2724, 2705, 3014, + 2664, 2731, 2991, + 2567, 2765, 2958, + 2395, 2807, 2909, + 1957, 2857, 2835, + 0, 2916, 2711, + 0, 2985, 2465, + 0, 3064, 979, + 0, 3151, 0, + 0, 3247, 0, + 0, 3350, 0, + 0, 3458, 0, + 0, 3572, 0, + 0, 3690, 0, + 3046, 2641, 3143, + 3046, 2641, 3143, + 3046, 2641, 3143, + 3045, 2642, 3143, + 3045, 2642, 3143, + 3044, 2643, 3142, + 3044, 2643, 3142, + 3043, 2644, 3142, + 3042, 2646, 3141, + 3040, 2647, 3140, + 3038, 2650, 3139, + 3035, 2653, 3137, + 3032, 2657, 3135, + 3027, 2662, 3132, + 3020, 2669, 3127, + 3010, 2678, 3122, + 2997, 2691, 3114, + 2980, 2706, 3104, + 2955, 2727, 3090, + 2919, 2752, 3070, + 2867, 2785, 3042, + 2786, 2824, 3002, + 2648, 2873, 2942, + 2356, 2930, 2848, + 0, 2997, 2679, + 0, 3074, 2263, + 0, 3160, 0, + 0, 3254, 0, + 0, 3355, 0, + 0, 3463, 0, + 0, 3576, 0, + 0, 3693, 0, + 3210, 2674, 3219, + 3210, 2674, 3219, + 3210, 2675, 3219, + 3210, 2675, 3219, + 3209, 2675, 3219, + 3209, 2676, 3218, + 3209, 2677, 3218, + 3208, 2677, 3218, + 3207, 2679, 3217, + 3206, 2680, 3216, + 3205, 2682, 3215, + 3203, 2685, 3214, + 3200, 2689, 3212, + 3197, 2694, 3209, + 3192, 2701, 3206, + 3185, 2709, 3201, + 3177, 2721, 3195, + 3165, 2735, 3186, + 3148, 2754, 3174, + 3126, 2779, 3158, + 3093, 2809, 3135, + 3045, 2847, 3103, + 2973, 2893, 3055, + 2853, 2948, 2983, + 2618, 3013, 2865, + 1555, 3087, 2634, + 0, 3171, 1643, + 0, 3263, 0, + 0, 3362, 0, + 0, 3468, 0, + 0, 3580, 0, + 0, 3696, 0, + 3365, 2716, 3304, + 3365, 2716, 3304, + 3364, 2716, 3304, + 3364, 2716, 3304, + 3364, 2716, 3304, + 3364, 2717, 3303, + 3364, 2718, 3303, + 3363, 2718, 3303, + 3363, 2719, 3302, + 3362, 2721, 3302, + 3361, 2723, 3301, + 3359, 2725, 3300, + 3358, 2729, 3298, + 3355, 2734, 3296, + 3352, 2740, 3293, + 3347, 2748, 3289, + 3341, 2758, 3284, + 3333, 2772, 3277, + 3322, 2789, 3267, + 3306, 2812, 3254, + 3285, 2840, 3235, + 3254, 2876, 3210, + 3209, 2919, 3173, + 3142, 2971, 3118, + 3033, 3033, 3033, + 2828, 3104, 2887, + 2176, 3185, 2564, + 0, 3274, 0, + 0, 3372, 0, + 0, 3476, 0, + 0, 3586, 0, + 0, 3701, 0, + 3513, 2765, 3397, + 3513, 2765, 3397, + 3513, 2766, 3397, + 3513, 2766, 3397, + 3513, 2766, 3397, + 3512, 2767, 3397, + 3512, 2767, 3397, + 3512, 2768, 3396, + 3511, 2769, 3396, + 3511, 2770, 3395, + 3510, 2772, 3395, + 3509, 2774, 3394, + 3508, 2777, 3392, + 3506, 2781, 3391, + 3504, 2787, 3388, + 3500, 2794, 3385, + 3496, 2804, 3381, + 3490, 2816, 3375, + 3482, 2832, 3367, + 3471, 2852, 3357, + 3457, 2878, 3342, + 3436, 2911, 3322, + 3406, 2951, 3293, + 3364, 3000, 3252, + 3300, 3058, 3190, + 3198, 3126, 3092, + 3011, 3203, 2914, + 2491, 3289, 2450, + 0, 3384, 0, + 0, 3486, 0, + 0, 3594, 0, + 0, 3707, 0, + 3657, 2824, 3498, + 3657, 2824, 3498, + 3657, 2825, 3498, + 3657, 2825, 3498, + 3656, 2825, 3498, + 3656, 2825, 3498, + 3656, 2826, 3497, + 3656, 2827, 3497, + 3656, 2827, 3497, + 3655, 2829, 3497, + 3655, 2830, 3496, + 3654, 2832, 3495, + 3653, 2835, 3494, + 3652, 2839, 3493, + 3650, 2843, 3491, + 3648, 2850, 3488, + 3645, 2858, 3485, + 3640, 2869, 3480, + 3635, 2883, 3474, + 3627, 2902, 3466, + 3616, 2925, 3454, + 3602, 2955, 3439, + 3582, 2992, 3417, + 3553, 3036, 3386, + 3512, 3090, 3340, + 3451, 3154, 3272, + 3353, 3227, 3160, + 3177, 3309, 2949, + 2723, 3400, 2233, + 0, 3498, 0, + 0, 3604, 0, + 0, 3715, 0, + 3797, 2893, 3605, + 3797, 2893, 3605, + 3797, 2893, 3605, + 3797, 2893, 3605, + 3797, 2894, 3605, + 3797, 2894, 3605, + 3797, 2894, 3605, + 3797, 2895, 3605, + 3797, 2896, 3604, + 3796, 2897, 3604, + 3796, 2898, 3604, + 3795, 2900, 3603, + 3795, 2902, 3602, + 3794, 2905, 3601, + 3792, 2909, 3600, + 3791, 2915, 3598, + 3788, 2922, 3595, + 3785, 2932, 3591, + 3781, 2944, 3587, + 3776, 2960, 3580, + 3768, 2981, 3571, + 3758, 3007, 3559, + 3744, 3040, 3542, + 3724, 3081, 3519, + 3696, 3130, 3486, + 3656, 3188, 3437, + 3596, 3256, 3362, + 3502, 3334, 3238, + 3333, 3420, 2991, + 2918, 3515, 1456, + 0, 3617, 0, + 0, 3725, 0, + 3936, 2971, 3718, + 3936, 2971, 3718, + 3936, 2971, 3718, + 3936, 2971, 3718, + 3936, 2972, 3718, + 3936, 2972, 3717, + 3935, 2972, 3717, + 3935, 2973, 3717, + 3935, 2973, 3717, + 3935, 2974, 3717, + 3935, 2975, 3716, + 3934, 2977, 3716, + 3934, 2979, 3715, + 3933, 2981, 3714, + 3932, 2985, 3713, + 3931, 2990, 3712, + 3929, 2996, 3710, + 3927, 3004, 3707, + 3924, 3015, 3703, + 3920, 3028, 3698, + 3914, 3046, 3691, + 3907, 3069, 3682, + 3897, 3098, 3669, + 3883, 3134, 3652, + 3863, 3178, 3627, + 3836, 3231, 3592, + 3797, 3293, 3540, + 3738, 3365, 3460, + 3646, 3446, 3325, + 3483, 3536, 3042, + 3092, 3634, 0, + 0, 3738, 0, + 4073, 3058, 3835, + 4073, 3058, 3835, + 4072, 3058, 3835, + 4072, 3058, 3835, + 4072, 3059, 3834, + 4072, 3059, 3834, + 4072, 3059, 3834, + 4072, 3059, 3834, + 4072, 3060, 3834, + 4072, 3061, 3834, + 4072, 3062, 3834, + 4071, 3063, 3833, + 4071, 3064, 3833, + 4071, 3067, 3832, + 4070, 3070, 3831, + 4069, 3073, 3830, + 4068, 3079, 3828, + 4066, 3085, 3826, + 4064, 3094, 3823, + 4061, 3106, 3820, + 4057, 3121, 3814, + 4051, 3140, 3807, + 4044, 3165, 3798, + 4034, 3196, 3784, + 4020, 3235, 3766, + 4001, 3282, 3741, + 3974, 3338, 3704, + 3935, 3404, 3650, + 3877, 3479, 3565, + 3787, 3563, 3420, + 3627, 3656, 3103, + 3253, 3756, 0, + 4095, 3153, 3955, + 4095, 3153, 3955, + 4095, 3153, 3955, + 4095, 3154, 3955, + 4095, 3154, 3955, + 4095, 3154, 3955, + 4095, 3154, 3955, + 4095, 3154, 3955, + 4095, 3155, 3955, + 4095, 3155, 3954, + 4095, 3156, 3954, + 4095, 3157, 3954, + 4095, 3159, 3954, + 4095, 3160, 3953, + 4095, 3163, 3952, + 4095, 3166, 3951, + 4095, 3170, 3950, + 4095, 3176, 3949, + 4095, 3183, 3946, + 4095, 3192, 3943, + 4095, 3205, 3940, + 4095, 3221, 3934, + 4095, 3242, 3927, + 4095, 3269, 3917, + 4095, 3302, 3903, + 4095, 3342, 3885, + 4095, 3392, 3858, + 4095, 3451, 3820, + 4072, 3519, 3764, + 4015, 3596, 3676, + 3925, 3683, 3522, + 3768, 3778, 3173, + 4095, 3256, 4078, + 4095, 3256, 4078, + 4095, 3256, 4078, + 4095, 3256, 4078, + 4095, 3256, 4078, + 4095, 3256, 4078, + 4095, 3256, 4078, + 4095, 3257, 4078, + 4095, 3257, 4078, + 4095, 3257, 4078, + 4095, 3258, 4078, + 4095, 3259, 4077, + 4095, 3260, 4077, + 4095, 3261, 4077, + 4095, 3263, 4076, + 4095, 3266, 4075, + 4095, 3269, 4075, + 4095, 3274, 4073, + 4095, 3280, 4072, + 4095, 3287, 4069, + 4095, 3297, 4066, + 4095, 3311, 4062, + 4095, 3328, 4057, + 4095, 3350, 4049, + 4095, 3378, 4039, + 4095, 3413, 4025, + 4095, 3455, 4006, + 4095, 3507, 3979, + 4095, 3567, 3940, + 4095, 3638, 3882, + 4095, 3718, 3791, + 4062, 3806, 3631, + 0, 2656, 2925, + 0, 2657, 2925, + 0, 2657, 2925, + 0, 2657, 2925, + 0, 2658, 2924, + 0, 2658, 2924, + 0, 2659, 2923, + 0, 2660, 2923, + 0, 2661, 2921, + 0, 2663, 2920, + 0, 2665, 2918, + 0, 2668, 2915, + 0, 2672, 2911, + 0, 2677, 2906, + 0, 2684, 2899, + 0, 2693, 2890, + 0, 2705, 2878, + 0, 2720, 2860, + 0, 2739, 2835, + 0, 2764, 2800, + 0, 2796, 2749, + 0, 2835, 2669, + 0, 2882, 2534, + 0, 2939, 2253, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2657, 2926, + 0, 2657, 2926, + 0, 2657, 2925, + 0, 2657, 2925, + 0, 2658, 2925, + 0, 2658, 2924, + 0, 2659, 2924, + 0, 2660, 2923, + 0, 2661, 2922, + 0, 2663, 2920, + 0, 2665, 2918, + 0, 2668, 2915, + 0, 2672, 2912, + 0, 2677, 2907, + 0, 2684, 2900, + 0, 2693, 2890, + 0, 2705, 2878, + 0, 2720, 2860, + 0, 2739, 2836, + 0, 2765, 2801, + 0, 2796, 2749, + 0, 2835, 2669, + 0, 2882, 2535, + 0, 2939, 2254, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2657, 2926, + 0, 2657, 2926, + 0, 2657, 2926, + 0, 2657, 2925, + 0, 2658, 2925, + 0, 2658, 2925, + 0, 2659, 2924, + 0, 2660, 2923, + 0, 2661, 2922, + 0, 2663, 2920, + 0, 2665, 2918, + 0, 2668, 2916, + 0, 2672, 2912, + 0, 2677, 2907, + 0, 2684, 2900, + 0, 2693, 2891, + 0, 2705, 2878, + 0, 2720, 2861, + 0, 2740, 2836, + 0, 2765, 2801, + 0, 2796, 2749, + 0, 2835, 2670, + 0, 2882, 2535, + 0, 2939, 2255, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2657, 2926, + 0, 2657, 2926, + 0, 2657, 2926, + 0, 2657, 2926, + 0, 2658, 2925, + 0, 2658, 2925, + 0, 2659, 2924, + 0, 2660, 2923, + 0, 2661, 2922, + 0, 2663, 2921, + 0, 2665, 2919, + 0, 2668, 2916, + 0, 2672, 2912, + 0, 2677, 2907, + 0, 2684, 2900, + 0, 2693, 2891, + 0, 2705, 2879, + 0, 2720, 2861, + 0, 2740, 2836, + 0, 2765, 2801, + 0, 2796, 2750, + 0, 2835, 2670, + 0, 2882, 2536, + 0, 2939, 2257, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2657, 2927, + 0, 2657, 2927, + 0, 2657, 2927, + 0, 2657, 2926, + 0, 2658, 2926, + 0, 2658, 2925, + 0, 2659, 2925, + 0, 2660, 2924, + 0, 2661, 2923, + 0, 2663, 2921, + 0, 2665, 2919, + 0, 2668, 2917, + 0, 2672, 2913, + 0, 2677, 2908, + 0, 2684, 2901, + 0, 2693, 2892, + 0, 2705, 2879, + 0, 2720, 2862, + 0, 2740, 2837, + 0, 2765, 2802, + 0, 2796, 2751, + 0, 2835, 2671, + 0, 2882, 2537, + 0, 2939, 2259, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2657, 2928, + 0, 2657, 2927, + 0, 2657, 2927, + 0, 2658, 2927, + 0, 2658, 2927, + 0, 2659, 2926, + 0, 2659, 2926, + 0, 2660, 2925, + 0, 2661, 2924, + 0, 2663, 2922, + 0, 2665, 2920, + 0, 2668, 2917, + 0, 2672, 2914, + 0, 2677, 2909, + 0, 2684, 2902, + 0, 2693, 2893, + 0, 2705, 2880, + 0, 2720, 2862, + 0, 2740, 2838, + 0, 2765, 2803, + 0, 2796, 2752, + 0, 2835, 2673, + 0, 2882, 2539, + 0, 2939, 2262, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2657, 2929, + 0, 2657, 2928, + 0, 2658, 2928, + 0, 2658, 2928, + 0, 2658, 2928, + 0, 2659, 2927, + 0, 2660, 2926, + 0, 2660, 2926, + 0, 2662, 2925, + 0, 2663, 2923, + 0, 2666, 2921, + 0, 2669, 2918, + 0, 2672, 2915, + 0, 2678, 2910, + 0, 2684, 2903, + 0, 2693, 2894, + 0, 2705, 2881, + 0, 2720, 2864, + 0, 2740, 2839, + 0, 2765, 2804, + 0, 2796, 2753, + 0, 2835, 2674, + 0, 2883, 2541, + 0, 2939, 2266, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2658, 2930, + 0, 2658, 2930, + 0, 2658, 2929, + 0, 2658, 2929, + 0, 2659, 2929, + 0, 2659, 2928, + 0, 2660, 2928, + 0, 2661, 2927, + 0, 2662, 2926, + 0, 2664, 2924, + 0, 2666, 2922, + 0, 2669, 2919, + 0, 2673, 2916, + 0, 2678, 2911, + 0, 2685, 2904, + 0, 2694, 2895, + 0, 2706, 2882, + 0, 2721, 2865, + 0, 2740, 2841, + 0, 2765, 2806, + 0, 2797, 2755, + 0, 2836, 2676, + 0, 2883, 2544, + 0, 2939, 2271, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2658, 2931, + 0, 2658, 2931, + 0, 2658, 2931, + 0, 2659, 2931, + 0, 2659, 2931, + 0, 2660, 2930, + 0, 2660, 2929, + 0, 2661, 2929, + 0, 2662, 2927, + 0, 2664, 2926, + 0, 2666, 2924, + 0, 2669, 2921, + 0, 2673, 2918, + 0, 2678, 2913, + 0, 2685, 2906, + 0, 2694, 2897, + 0, 2706, 2884, + 0, 2721, 2867, + 0, 2741, 2843, + 0, 2766, 2808, + 0, 2797, 2757, + 0, 2836, 2679, + 0, 2883, 2548, + 0, 2939, 2279, + 0, 3005, 0, + 0, 3081, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3359, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2659, 2934, + 0, 2659, 2934, + 0, 2659, 2933, + 0, 2659, 2933, + 0, 2660, 2933, + 0, 2660, 2932, + 0, 2661, 2932, + 0, 2662, 2931, + 0, 2663, 2930, + 0, 2665, 2928, + 0, 2667, 2926, + 0, 2670, 2924, + 0, 2674, 2920, + 0, 2679, 2915, + 0, 2686, 2908, + 0, 2695, 2899, + 0, 2706, 2887, + 0, 2722, 2870, + 0, 2741, 2845, + 0, 2766, 2811, + 0, 2797, 2761, + 0, 2836, 2683, + 0, 2883, 2553, + 0, 2940, 2288, + 0, 3006, 0, + 0, 3081, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3359, 0, + 0, 3466, 0, + 0, 3578, 0, + 0, 3695, 0, + 0, 2659, 2937, + 0, 2659, 2937, + 0, 2660, 2936, + 0, 2660, 2936, + 0, 2660, 2936, + 0, 2661, 2935, + 0, 2662, 2935, + 0, 2663, 2934, + 0, 2664, 2933, + 0, 2665, 2931, + 0, 2668, 2929, + 0, 2671, 2927, + 0, 2674, 2923, + 0, 2680, 2918, + 0, 2686, 2911, + 0, 2695, 2902, + 0, 2707, 2890, + 0, 2722, 2873, + 0, 2742, 2849, + 0, 2767, 2815, + 0, 2798, 2765, + 0, 2837, 2688, + 0, 2884, 2560, + 0, 2940, 2300, + 0, 3006, 0, + 0, 3081, 0, + 0, 3166, 0, + 0, 3258, 0, + 0, 3359, 0, + 0, 3466, 0, + 0, 3578, 0, + 0, 3695, 0, + 0, 2660, 2941, + 0, 2660, 2941, + 0, 2661, 2940, + 0, 2661, 2940, + 0, 2661, 2940, + 0, 2662, 2939, + 0, 2663, 2939, + 0, 2664, 2938, + 0, 2665, 2937, + 0, 2666, 2935, + 0, 2669, 2933, + 0, 2672, 2931, + 0, 2675, 2927, + 0, 2681, 2922, + 0, 2687, 2916, + 0, 2696, 2907, + 0, 2708, 2894, + 0, 2723, 2877, + 0, 2743, 2854, + 0, 2768, 2820, + 0, 2799, 2771, + 0, 2837, 2695, + 0, 2885, 2569, + 0, 2941, 2316, + 0, 3006, 0, + 0, 3082, 0, + 0, 3166, 0, + 0, 3259, 0, + 0, 3359, 0, + 0, 3466, 0, + 0, 3578, 0, + 0, 3695, 0, + 0, 2662, 2946, + 0, 2662, 2946, + 0, 2662, 2946, + 0, 2662, 2945, + 0, 2663, 2945, + 0, 2663, 2945, + 0, 2664, 2944, + 0, 2665, 2943, + 0, 2666, 2942, + 0, 2668, 2941, + 0, 2670, 2939, + 0, 2673, 2936, + 0, 2677, 2932, + 0, 2682, 2928, + 0, 2689, 2921, + 0, 2698, 2912, + 0, 2709, 2900, + 0, 2724, 2883, + 0, 2744, 2860, + 0, 2769, 2827, + 0, 2800, 2778, + 0, 2838, 2704, + 0, 2885, 2581, + 0, 2941, 2336, + 0, 3007, 938, + 0, 3082, 0, + 0, 3166, 0, + 0, 3259, 0, + 0, 3359, 0, + 0, 3466, 0, + 0, 3578, 0, + 0, 3695, 0, + 0, 2663, 2953, + 0, 2664, 2953, + 0, 2664, 2952, + 0, 2664, 2952, + 0, 2665, 2952, + 0, 2665, 2951, + 0, 2666, 2951, + 0, 2667, 2950, + 0, 2668, 2949, + 0, 2670, 2948, + 0, 2672, 2946, + 0, 2675, 2943, + 0, 2679, 2940, + 0, 2684, 2935, + 0, 2690, 2928, + 0, 2699, 2920, + 0, 2711, 2908, + 0, 2726, 2891, + 0, 2745, 2868, + 0, 2770, 2836, + 0, 2801, 2788, + 0, 2840, 2716, + 0, 2886, 2596, + 0, 2942, 2362, + 0, 3008, 1311, + 0, 3083, 0, + 0, 3167, 0, + 0, 3260, 0, + 0, 3360, 0, + 0, 3466, 0, + 0, 3579, 0, + 0, 3695, 0, + 0, 2666, 2962, + 0, 2666, 2962, + 0, 2666, 2962, + 0, 2667, 2961, + 0, 2667, 2961, + 0, 2667, 2961, + 0, 2668, 2960, + 0, 2669, 2959, + 0, 2670, 2958, + 0, 2672, 2957, + 0, 2674, 2955, + 0, 2677, 2952, + 0, 2681, 2949, + 0, 2686, 2944, + 0, 2693, 2938, + 0, 2701, 2929, + 0, 2713, 2918, + 0, 2728, 2902, + 0, 2747, 2879, + 0, 2772, 2848, + 0, 2803, 2801, + 0, 2841, 2731, + 0, 2888, 2616, + 0, 2944, 2395, + 0, 3009, 1565, + 0, 3084, 0, + 0, 3168, 0, + 0, 3260, 0, + 0, 3360, 0, + 0, 3467, 0, + 0, 3579, 0, + 0, 3695, 0, + 0, 2669, 2974, + 0, 2669, 2974, + 0, 2669, 2973, + 0, 2670, 2973, + 0, 2670, 2973, + 0, 2671, 2972, + 0, 2671, 2972, + 0, 2672, 2971, + 0, 2673, 2970, + 0, 2675, 2969, + 0, 2677, 2967, + 0, 2680, 2964, + 0, 2684, 2961, + 0, 2689, 2957, + 0, 2696, 2950, + 0, 2704, 2942, + 0, 2716, 2931, + 0, 2731, 2915, + 0, 2750, 2894, + 0, 2774, 2863, + 0, 2805, 2818, + 0, 2843, 2751, + 0, 2890, 2641, + 0, 2945, 2435, + 0, 3010, 1770, + 0, 3085, 0, + 0, 3169, 0, + 0, 3261, 0, + 0, 3361, 0, + 0, 3467, 0, + 0, 3579, 0, + 0, 3696, 0, + 0, 2673, 2989, + 0, 2673, 2989, + 0, 2674, 2989, + 0, 2674, 2989, + 0, 2674, 2988, + 0, 2675, 2988, + 0, 2676, 2987, + 0, 2676, 2987, + 0, 2678, 2986, + 0, 2679, 2984, + 0, 2681, 2982, + 0, 2684, 2980, + 0, 2688, 2977, + 0, 2693, 2973, + 0, 2700, 2967, + 0, 2708, 2959, + 0, 2720, 2948, + 0, 2735, 2933, + 0, 2754, 2912, + 0, 2778, 2882, + 0, 2808, 2840, + 0, 2846, 2775, + 0, 2893, 2672, + 0, 2948, 2483, + 0, 3013, 1950, + 0, 3087, 0, + 0, 3170, 0, + 0, 3262, 0, + 0, 3362, 0, + 0, 3468, 0, + 0, 3580, 0, + 0, 3696, 0, + 0, 2679, 3009, + 0, 2679, 3009, + 0, 2679, 3009, + 0, 2680, 3008, + 0, 2680, 3008, + 0, 2680, 3008, + 0, 2681, 3007, + 0, 2682, 3007, + 0, 2683, 3006, + 0, 2685, 3004, + 0, 2687, 3003, + 0, 2690, 3000, + 0, 2693, 2997, + 0, 2698, 2993, + 0, 2705, 2987, + 0, 2714, 2980, + 0, 2725, 2969, + 0, 2739, 2955, + 0, 2758, 2935, + 0, 2782, 2907, + 0, 2813, 2867, + 0, 2850, 2807, + 0, 2896, 2711, + 0, 2951, 2541, + 0, 3015, 2115, + 0, 3089, 0, + 0, 3172, 0, + 0, 3264, 0, + 0, 3363, 0, + 0, 3469, 0, + 0, 3581, 0, + 0, 3697, 0, + 1182, 2686, 3034, + 1173, 2686, 3034, + 1160, 2687, 3034, + 1143, 2687, 3034, + 1119, 2687, 3033, + 1084, 2688, 3033, + 1033, 2688, 3033, + 955, 2689, 3032, + 824, 2691, 3031, + 554, 2692, 3030, + 0, 2694, 3028, + 0, 2697, 3026, + 0, 2701, 3023, + 0, 2706, 3019, + 0, 2712, 3014, + 0, 2720, 3007, + 0, 2731, 2997, + 0, 2746, 2983, + 0, 2764, 2965, + 0, 2788, 2939, + 0, 2818, 2901, + 0, 2855, 2846, + 0, 2901, 2759, + 0, 2955, 2608, + 0, 3019, 2271, + 0, 3092, 0, + 0, 3175, 0, + 0, 3266, 0, + 0, 3365, 0, + 0, 3470, 0, + 0, 3582, 0, + 0, 3697, 0, + 2191, 2696, 3066, + 2190, 2696, 3066, + 2189, 2696, 3066, + 2187, 2697, 3065, + 2185, 2697, 3065, + 2182, 2698, 3065, + 2177, 2698, 3064, + 2172, 2699, 3064, + 2164, 2700, 3063, + 2153, 2702, 3062, + 2138, 2704, 3060, + 2117, 2706, 3058, + 2088, 2710, 3055, + 2046, 2715, 3052, + 1983, 2721, 3047, + 1881, 2729, 3040, + 1696, 2740, 3031, + 1189, 2754, 3019, + 0, 2773, 3001, + 0, 2796, 2977, + 0, 2825, 2943, + 0, 2862, 2893, + 0, 2907, 2815, + 0, 2960, 2685, + 0, 3023, 2419, + 0, 3096, 0, + 0, 3178, 0, + 0, 3269, 0, + 0, 3367, 0, + 0, 3472, 0, + 0, 3583, 0, + 0, 3699, 0, + 2548, 2709, 3105, + 2548, 2709, 3105, + 2547, 2709, 3105, + 2546, 2709, 3105, + 2545, 2710, 3104, + 2544, 2710, 3104, + 2542, 2711, 3104, + 2539, 2712, 3103, + 2536, 2713, 3102, + 2531, 2714, 3101, + 2524, 2716, 3100, + 2516, 2719, 3098, + 2504, 2722, 3095, + 2487, 2727, 3092, + 2464, 2733, 3088, + 2432, 2741, 3082, + 2384, 2752, 3073, + 2311, 2766, 3062, + 2191, 2783, 3046, + 1956, 2806, 3025, + 876, 2835, 2994, + 0, 2871, 2949, + 0, 2915, 2881, + 0, 2967, 2771, + 0, 3030, 2564, + 0, 3101, 1888, + 0, 3182, 0, + 0, 3272, 0, + 0, 3370, 0, + 0, 3474, 0, + 0, 3585, 0, + 0, 3700, 0, + 2796, 2725, 3153, + 2796, 2725, 3152, + 2796, 2725, 3152, + 2795, 2726, 3152, + 2795, 2726, 3152, + 2794, 2726, 3152, + 2793, 2727, 3151, + 2791, 2728, 3151, + 2789, 2729, 3150, + 2787, 2730, 3149, + 2783, 2732, 3148, + 2778, 2735, 3146, + 2771, 2738, 3144, + 2762, 2743, 3141, + 2750, 2749, 3137, + 2733, 2756, 3131, + 2709, 2767, 3124, + 2675, 2780, 3114, + 2625, 2797, 3100, + 2548, 2819, 3081, + 2419, 2847, 3054, + 2157, 2882, 3015, + 0, 2925, 2957, + 0, 2977, 2865, + 0, 3038, 2704, + 0, 3108, 2323, + 0, 3188, 0, + 0, 3277, 0, + 0, 3374, 0, + 0, 3478, 0, + 0, 3587, 0, + 0, 3702, 0, + 2999, 2746, 3209, + 2999, 2746, 3209, + 2999, 2746, 3209, + 2999, 2747, 3209, + 2998, 2747, 3209, + 2998, 2747, 3209, + 2997, 2748, 3208, + 2996, 2749, 3208, + 2995, 2750, 3207, + 2993, 2751, 3206, + 2991, 2753, 3205, + 2988, 2755, 3204, + 2984, 2759, 3202, + 2978, 2763, 3199, + 2970, 2769, 3196, + 2960, 2776, 3191, + 2945, 2786, 3184, + 2925, 2799, 3175, + 2897, 2815, 3163, + 2857, 2837, 3147, + 2796, 2864, 3123, + 2699, 2897, 3090, + 2527, 2939, 3041, + 2089, 2989, 2967, + 0, 3048, 2843, + 0, 3118, 2597, + 0, 3196, 1111, + 0, 3283, 0, + 0, 3379, 0, + 0, 3482, 0, + 0, 3590, 0, + 0, 3704, 0, + 3178, 2773, 3276, + 3178, 2773, 3275, + 3178, 2773, 3275, + 3178, 2773, 3275, + 3177, 2774, 3275, + 3177, 2774, 3275, + 3177, 2775, 3275, + 3176, 2775, 3274, + 3175, 2776, 3274, + 3174, 2778, 3273, + 3172, 2779, 3272, + 3170, 2782, 3271, + 3167, 2785, 3269, + 3164, 2789, 3267, + 3159, 2794, 3264, + 3152, 2801, 3260, + 3142, 2811, 3254, + 3130, 2823, 3246, + 3112, 2838, 3236, + 3087, 2859, 3222, + 3051, 2884, 3202, + 2999, 2917, 3174, + 2918, 2956, 3134, + 2780, 3005, 3074, + 2488, 3062, 2980, + 0, 3130, 2811, + 0, 3206, 2395, + 0, 3292, 0, + 0, 3386, 0, + 0, 3487, 0, + 0, 3595, 0, + 0, 3708, 0, + 3342, 2806, 3351, + 3342, 2806, 3351, + 3342, 2807, 3351, + 3342, 2807, 3351, + 3342, 2807, 3351, + 3341, 2807, 3351, + 3341, 2808, 3350, + 3341, 2809, 3350, + 3340, 2810, 3350, + 3339, 2811, 3349, + 3338, 2812, 3348, + 3337, 2814, 3347, + 3335, 2817, 3346, + 3332, 2821, 3344, + 3329, 2826, 3341, + 3324, 2833, 3338, + 3318, 2841, 3333, + 3309, 2853, 3327, + 3297, 2867, 3318, + 3281, 2886, 3306, + 3258, 2911, 3290, + 3225, 2941, 3267, + 3177, 2979, 3235, + 3105, 3025, 3187, + 2985, 3080, 3115, + 2750, 3145, 2997, + 1687, 3219, 2766, + 0, 3303, 1775, + 0, 3395, 0, + 0, 3494, 0, + 0, 3600, 0, + 0, 3712, 0, + 3497, 2847, 3436, + 3497, 2848, 3436, + 3497, 2848, 3436, + 3497, 2848, 3436, + 3496, 2848, 3436, + 3496, 2849, 3436, + 3496, 2849, 3436, + 3496, 2850, 3435, + 3495, 2850, 3435, + 3495, 2852, 3434, + 3494, 2853, 3434, + 3493, 2855, 3433, + 3492, 2858, 3432, + 3490, 2861, 3430, + 3487, 2866, 3428, + 3484, 2872, 3425, + 3479, 2880, 3421, + 3473, 2890, 3416, + 3465, 2904, 3409, + 3454, 2921, 3399, + 3438, 2944, 3386, + 3417, 2972, 3368, + 3386, 3008, 3342, + 3341, 3051, 3305, + 3274, 3103, 3250, + 3165, 3165, 3165, + 2960, 3236, 3019, + 2308, 3317, 2696, + 0, 3406, 0, + 0, 3504, 0, + 0, 3608, 0, + 0, 3718, 0, + 3645, 2897, 3529, + 3645, 2897, 3529, + 3645, 2898, 3529, + 3645, 2898, 3529, + 3645, 2898, 3529, + 3645, 2898, 3529, + 3644, 2899, 3529, + 3644, 2899, 3529, + 3644, 2900, 3528, + 3644, 2901, 3528, + 3643, 2902, 3527, + 3642, 2904, 3527, + 3641, 2906, 3526, + 3640, 2909, 3524, + 3638, 2914, 3523, + 3636, 2919, 3520, + 3633, 2926, 3517, + 3628, 2936, 3513, + 3622, 2948, 3507, + 3614, 2964, 3500, + 3604, 2984, 3489, + 3589, 3011, 3474, + 3568, 3043, 3454, + 3539, 3084, 3426, + 3496, 3132, 3384, + 3432, 3191, 3322, + 3330, 3258, 3224, + 3143, 3335, 3046, + 2623, 3421, 2582, + 0, 3516, 0, + 0, 3618, 0, + 0, 3726, 0, + 3789, 2956, 3630, + 3789, 2956, 3630, + 3789, 2957, 3630, + 3789, 2957, 3630, + 3789, 2957, 3630, + 3789, 2957, 3630, + 3788, 2958, 3630, + 3788, 2958, 3630, + 3788, 2959, 3629, + 3788, 2960, 3629, + 3787, 2961, 3629, + 3787, 2962, 3628, + 3786, 2964, 3627, + 3785, 2967, 3626, + 3784, 2971, 3625, + 3782, 2976, 3623, + 3780, 2982, 3620, + 3777, 2990, 3617, + 3772, 3001, 3613, + 3767, 3015, 3606, + 3759, 3034, 3598, + 3748, 3057, 3587, + 3734, 3087, 3571, + 3714, 3124, 3549, + 3685, 3169, 3518, + 3644, 3222, 3473, + 3583, 3286, 3404, + 3485, 3359, 3292, + 3309, 3441, 3081, + 2855, 3532, 2365, + 0, 3630, 0, + 0, 3736, 0, + 3929, 3025, 3737, + 3929, 3025, 3737, + 3929, 3025, 3737, + 3929, 3025, 3737, + 3929, 3026, 3737, + 3929, 3026, 3737, + 3929, 3026, 3737, + 3929, 3026, 3737, + 3929, 3027, 3737, + 3929, 3028, 3736, + 3928, 3029, 3736, + 3928, 3030, 3736, + 3927, 3032, 3735, + 3927, 3034, 3734, + 3926, 3037, 3733, + 3925, 3042, 3732, + 3923, 3047, 3730, + 3921, 3054, 3727, + 3918, 3064, 3723, + 3913, 3076, 3719, + 3908, 3092, 3712, + 3900, 3113, 3703, + 3890, 3139, 3691, + 3876, 3172, 3674, + 3856, 3213, 3651, + 3828, 3262, 3618, + 3788, 3320, 3569, + 3728, 3388, 3494, + 3634, 3466, 3370, + 3465, 3552, 3123, + 3050, 3647, 1588, + 0, 3749, 0, + 4068, 3103, 3850, + 4068, 3103, 3850, + 4068, 3103, 3850, + 4068, 3103, 3850, + 4068, 3104, 3850, + 4068, 3104, 3850, + 4068, 3104, 3850, + 4068, 3104, 3849, + 4067, 3105, 3849, + 4067, 3105, 3849, + 4067, 3106, 3849, + 4067, 3107, 3849, + 4066, 3109, 3848, + 4066, 3111, 3847, + 4065, 3114, 3847, + 4064, 3117, 3845, + 4063, 3122, 3844, + 4061, 3128, 3842, + 4059, 3136, 3839, + 4056, 3147, 3835, + 4052, 3160, 3830, + 4046, 3178, 3823, + 4039, 3201, 3814, + 4029, 3230, 3801, + 4015, 3266, 3784, + 3995, 3310, 3759, + 3968, 3363, 3724, + 3929, 3425, 3672, + 3870, 3497, 3592, + 3778, 3578, 3457, + 3615, 3668, 3174, + 3224, 3766, 0, + 4095, 3190, 3967, + 4095, 3190, 3967, + 4095, 3190, 3967, + 4095, 3190, 3967, + 4095, 3191, 3967, + 4095, 3191, 3967, + 4095, 3191, 3967, + 4095, 3191, 3966, + 4095, 3192, 3966, + 4095, 3192, 3966, + 4095, 3193, 3966, + 4095, 3194, 3966, + 4095, 3195, 3965, + 4095, 3197, 3965, + 4095, 3199, 3964, + 4095, 3202, 3963, + 4095, 3206, 3962, + 4095, 3211, 3961, + 4095, 3217, 3958, + 4095, 3226, 3956, + 4095, 3238, 3952, + 4095, 3253, 3946, + 4095, 3273, 3939, + 4095, 3297, 3930, + 4095, 3328, 3917, + 4095, 3367, 3898, + 4095, 3414, 3873, + 4095, 3470, 3836, + 4067, 3536, 3782, + 4009, 3611, 3697, + 3919, 3695, 3552, + 3759, 3788, 3235, + 4095, 3285, 4087, + 4095, 3285, 4087, + 4095, 3286, 4087, + 4095, 3286, 4087, + 4095, 3286, 4087, + 4095, 3286, 4087, + 4095, 3286, 4087, + 4095, 3286, 4087, + 4095, 3287, 4087, + 4095, 3287, 4087, + 4095, 3288, 4087, + 4095, 3288, 4086, + 4095, 3289, 4086, + 4095, 3291, 4086, + 4095, 3292, 4085, + 4095, 3295, 4084, + 4095, 3298, 4084, + 4095, 3302, 4082, + 4095, 3308, 4081, + 4095, 3315, 4079, + 4095, 3325, 4076, + 4095, 3337, 4072, + 4095, 3353, 4066, + 4095, 3374, 4059, + 4095, 3401, 4049, + 4095, 3434, 4036, + 4095, 3475, 4017, + 4095, 3524, 3990, + 4095, 3583, 3952, + 4095, 3651, 3896, + 4095, 3729, 3808, + 4057, 3815, 3655, + 0, 2788, 3057, + 0, 2789, 3057, + 0, 2789, 3057, + 0, 2789, 3057, + 0, 2789, 3057, + 0, 2790, 3056, + 0, 2790, 3056, + 0, 2791, 3055, + 0, 2792, 3054, + 0, 2793, 3053, + 0, 2795, 3052, + 0, 2797, 3050, + 0, 2800, 3047, + 0, 2804, 3043, + 0, 2809, 3038, + 0, 2816, 3031, + 0, 2825, 3022, + 0, 2837, 3009, + 0, 2852, 2992, + 0, 2872, 2967, + 0, 2897, 2932, + 0, 2928, 2880, + 0, 2967, 2801, + 0, 3014, 2666, + 0, 3071, 2384, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2788, 3058, + 0, 2789, 3058, + 0, 2789, 3057, + 0, 2789, 3057, + 0, 2789, 3057, + 0, 2790, 3057, + 0, 2790, 3056, + 0, 2791, 3055, + 0, 2792, 3055, + 0, 2793, 3053, + 0, 2795, 3052, + 0, 2797, 3050, + 0, 2800, 3047, + 0, 2804, 3043, + 0, 2809, 3038, + 0, 2816, 3032, + 0, 2825, 3022, + 0, 2837, 3010, + 0, 2852, 2992, + 0, 2872, 2967, + 0, 2897, 2932, + 0, 2928, 2881, + 0, 2967, 2801, + 0, 3014, 2666, + 0, 3071, 2385, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2788, 3058, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2789, 3057, + 0, 2789, 3057, + 0, 2790, 3057, + 0, 2790, 3056, + 0, 2791, 3056, + 0, 2792, 3055, + 0, 2793, 3054, + 0, 2795, 3052, + 0, 2797, 3050, + 0, 2800, 3047, + 0, 2804, 3044, + 0, 2809, 3039, + 0, 2816, 3032, + 0, 2825, 3023, + 0, 2837, 3010, + 0, 2852, 2992, + 0, 2872, 2968, + 0, 2897, 2933, + 0, 2928, 2881, + 0, 2967, 2801, + 0, 3014, 2667, + 0, 3071, 2386, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2789, 3057, + 0, 2790, 3057, + 0, 2790, 3057, + 0, 2791, 3056, + 0, 2792, 3055, + 0, 2793, 3054, + 0, 2795, 3052, + 0, 2797, 3050, + 0, 2800, 3048, + 0, 2804, 3044, + 0, 2809, 3039, + 0, 2816, 3032, + 0, 2825, 3023, + 0, 2837, 3010, + 0, 2852, 2993, + 0, 2872, 2968, + 0, 2897, 2933, + 0, 2928, 2881, + 0, 2967, 2802, + 0, 3014, 2667, + 0, 3071, 2387, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2789, 3059, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2790, 3058, + 0, 2790, 3057, + 0, 2791, 3056, + 0, 2792, 3056, + 0, 2793, 3054, + 0, 2795, 3053, + 0, 2797, 3051, + 0, 2800, 3048, + 0, 2804, 3044, + 0, 2809, 3039, + 0, 2816, 3033, + 0, 2825, 3023, + 0, 2837, 3011, + 0, 2852, 2993, + 0, 2872, 2969, + 0, 2897, 2934, + 0, 2928, 2882, + 0, 2967, 2802, + 0, 3014, 2668, + 0, 3071, 2389, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2789, 3059, + 0, 2789, 3059, + 0, 2789, 3059, + 0, 2789, 3059, + 0, 2790, 3058, + 0, 2790, 3058, + 0, 2791, 3058, + 0, 2791, 3057, + 0, 2792, 3056, + 0, 2793, 3055, + 0, 2795, 3053, + 0, 2797, 3051, + 0, 2800, 3049, + 0, 2804, 3045, + 0, 2809, 3040, + 0, 2816, 3033, + 0, 2825, 3024, + 0, 2837, 3011, + 0, 2852, 2994, + 0, 2872, 2969, + 0, 2897, 2934, + 0, 2928, 2883, + 0, 2967, 2803, + 0, 3014, 2670, + 0, 3071, 2391, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2789, 3060, + 0, 2789, 3060, + 0, 2789, 3060, + 0, 2789, 3059, + 0, 2790, 3059, + 0, 2790, 3059, + 0, 2791, 3058, + 0, 2791, 3058, + 0, 2792, 3057, + 0, 2794, 3056, + 0, 2795, 3054, + 0, 2797, 3052, + 0, 2800, 3049, + 0, 2804, 3046, + 0, 2810, 3041, + 0, 2816, 3034, + 0, 2825, 3025, + 0, 2837, 3012, + 0, 2852, 2995, + 0, 2872, 2970, + 0, 2897, 2935, + 0, 2928, 2884, + 0, 2967, 2805, + 0, 3015, 2671, + 0, 3071, 2394, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2789, 3061, + 0, 2789, 3061, + 0, 2789, 3061, + 0, 2790, 3060, + 0, 2790, 3060, + 0, 2790, 3060, + 0, 2791, 3059, + 0, 2792, 3059, + 0, 2793, 3058, + 0, 2794, 3057, + 0, 2795, 3055, + 0, 2798, 3053, + 0, 2801, 3050, + 0, 2805, 3047, + 0, 2810, 3042, + 0, 2817, 3035, + 0, 2826, 3026, + 0, 2837, 3013, + 0, 2853, 2996, + 0, 2872, 2971, + 0, 2897, 2936, + 0, 2929, 2885, + 0, 2967, 2806, + 0, 3015, 2673, + 0, 3071, 2398, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3491, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2790, 3062, + 0, 2790, 3062, + 0, 2790, 3062, + 0, 2790, 3062, + 0, 2790, 3061, + 0, 2791, 3061, + 0, 2791, 3060, + 0, 2792, 3060, + 0, 2793, 3059, + 0, 2794, 3058, + 0, 2796, 3056, + 0, 2798, 3054, + 0, 2801, 3052, + 0, 2805, 3048, + 0, 2810, 3043, + 0, 2817, 3036, + 0, 2826, 3027, + 0, 2838, 3014, + 0, 2853, 2997, + 0, 2872, 2973, + 0, 2897, 2938, + 0, 2929, 2887, + 0, 2968, 2809, + 0, 3015, 2676, + 0, 3071, 2404, + 0, 3137, 0, + 0, 3213, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3491, 0, + 0, 3598, 0, + 0, 3710, 0, + 0, 2790, 3064, + 0, 2790, 3064, + 0, 2790, 3063, + 0, 2790, 3063, + 0, 2791, 3063, + 0, 2791, 3063, + 0, 2792, 3062, + 0, 2792, 3062, + 0, 2793, 3061, + 0, 2795, 3060, + 0, 2796, 3058, + 0, 2798, 3056, + 0, 2801, 3053, + 0, 2805, 3050, + 0, 2810, 3045, + 0, 2817, 3038, + 0, 2826, 3029, + 0, 2838, 3016, + 0, 2853, 2999, + 0, 2873, 2975, + 0, 2898, 2940, + 0, 2929, 2890, + 0, 2968, 2811, + 0, 3015, 2680, + 0, 3072, 2411, + 0, 3137, 0, + 0, 3213, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3491, 0, + 0, 3598, 0, + 0, 3710, 0, + 0, 2791, 3066, + 0, 2791, 3066, + 0, 2791, 3066, + 0, 2791, 3065, + 0, 2791, 3065, + 0, 2792, 3065, + 0, 2792, 3064, + 0, 2793, 3064, + 0, 2794, 3063, + 0, 2795, 3062, + 0, 2797, 3060, + 0, 2799, 3058, + 0, 2802, 3056, + 0, 2806, 3052, + 0, 2811, 3047, + 0, 2818, 3040, + 0, 2827, 3031, + 0, 2838, 3019, + 0, 2854, 3002, + 0, 2873, 2978, + 0, 2898, 2943, + 0, 2930, 2893, + 0, 2968, 2815, + 0, 3016, 2685, + 0, 3072, 2420, + 0, 3138, 0, + 0, 3213, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3491, 0, + 0, 3598, 0, + 0, 3710, 0, + 0, 2791, 3069, + 0, 2791, 3069, + 0, 2792, 3069, + 0, 2792, 3068, + 0, 2792, 3068, + 0, 2792, 3068, + 0, 2793, 3067, + 0, 2794, 3067, + 0, 2795, 3066, + 0, 2796, 3065, + 0, 2798, 3063, + 0, 2800, 3061, + 0, 2803, 3059, + 0, 2807, 3055, + 0, 2812, 3050, + 0, 2819, 3043, + 0, 2827, 3034, + 0, 2839, 3022, + 0, 2854, 3005, + 0, 2874, 2981, + 0, 2899, 2947, + 0, 2930, 2897, + 0, 2969, 2821, + 0, 3016, 2692, + 0, 3072, 2432, + 0, 3138, 0, + 0, 3213, 0, + 0, 3298, 0, + 0, 3391, 0, + 0, 3491, 0, + 0, 3598, 0, + 0, 3710, 0, + 0, 2792, 3073, + 0, 2792, 3073, + 0, 2793, 3073, + 0, 2793, 3072, + 0, 2793, 3072, + 0, 2793, 3072, + 0, 2794, 3071, + 0, 2795, 3071, + 0, 2796, 3070, + 0, 2797, 3069, + 0, 2799, 3067, + 0, 2801, 3065, + 0, 2804, 3063, + 0, 2808, 3059, + 0, 2813, 3054, + 0, 2819, 3048, + 0, 2828, 3039, + 0, 2840, 3026, + 0, 2855, 3010, + 0, 2875, 2986, + 0, 2900, 2952, + 0, 2931, 2903, + 0, 2970, 2827, + 0, 3017, 2701, + 0, 3073, 2448, + 0, 3138, 0, + 0, 3214, 0, + 0, 3298, 0, + 0, 3391, 0, + 0, 3491, 0, + 0, 3598, 0, + 0, 3710, 0, + 0, 2794, 3078, + 0, 2794, 3078, + 0, 2794, 3078, + 0, 2794, 3078, + 0, 2794, 3077, + 0, 2795, 3077, + 0, 2795, 3077, + 0, 2796, 3076, + 0, 2797, 3075, + 0, 2798, 3074, + 0, 2800, 3073, + 0, 2802, 3071, + 0, 2805, 3068, + 0, 2809, 3064, + 0, 2814, 3060, + 0, 2821, 3053, + 0, 2830, 3044, + 0, 2841, 3032, + 0, 2856, 3016, + 0, 2876, 2992, + 0, 2901, 2959, + 0, 2932, 2911, + 0, 2970, 2836, + 0, 3017, 2713, + 0, 3074, 2468, + 0, 3139, 1070, + 0, 3214, 0, + 0, 3298, 0, + 0, 3391, 0, + 0, 3491, 0, + 0, 3598, 0, + 0, 3710, 0, + 0, 2795, 3085, + 0, 2796, 3085, + 0, 2796, 3085, + 0, 2796, 3085, + 0, 2796, 3084, + 0, 2797, 3084, + 0, 2797, 3084, + 0, 2798, 3083, + 0, 2799, 3082, + 0, 2800, 3081, + 0, 2802, 3080, + 0, 2804, 3078, + 0, 2807, 3075, + 0, 2811, 3072, + 0, 2816, 3067, + 0, 2822, 3060, + 0, 2831, 3052, + 0, 2843, 3040, + 0, 2858, 3023, + 0, 2877, 3001, + 0, 2902, 2968, + 0, 2933, 2920, + 0, 2972, 2848, + 0, 3019, 2728, + 0, 3075, 2494, + 0, 3140, 1443, + 0, 3215, 0, + 0, 3299, 0, + 0, 3392, 0, + 0, 3492, 0, + 0, 3599, 0, + 0, 3711, 0, + 0, 2798, 3094, + 0, 2798, 3094, + 0, 2798, 3094, + 0, 2798, 3094, + 0, 2799, 3093, + 0, 2799, 3093, + 0, 2800, 3093, + 0, 2800, 3092, + 0, 2801, 3091, + 0, 2802, 3090, + 0, 2804, 3089, + 0, 2806, 3087, + 0, 2809, 3084, + 0, 2813, 3081, + 0, 2818, 3076, + 0, 2825, 3070, + 0, 2834, 3062, + 0, 2845, 3050, + 0, 2860, 3034, + 0, 2879, 3011, + 0, 2904, 2980, + 0, 2935, 2933, + 0, 2973, 2863, + 0, 3020, 2748, + 0, 3076, 2527, + 0, 3141, 1697, + 0, 3216, 0, + 0, 3300, 0, + 0, 3392, 0, + 0, 3492, 0, + 0, 3599, 0, + 0, 3711, 0, + 0, 2801, 3106, + 0, 2801, 3106, + 0, 2801, 3106, + 0, 2802, 3106, + 0, 2802, 3105, + 0, 2802, 3105, + 0, 2803, 3105, + 0, 2803, 3104, + 0, 2804, 3103, + 0, 2806, 3102, + 0, 2807, 3101, + 0, 2809, 3099, + 0, 2812, 3096, + 0, 2816, 3093, + 0, 2821, 3089, + 0, 2828, 3083, + 0, 2837, 3074, + 0, 2848, 3063, + 0, 2863, 3047, + 0, 2882, 3026, + 0, 2907, 2995, + 0, 2937, 2950, + 0, 2976, 2883, + 0, 3022, 2773, + 0, 3078, 2567, + 0, 3143, 1902, + 0, 3217, 0, + 0, 3301, 0, + 0, 3393, 0, + 0, 3493, 0, + 0, 3599, 0, + 0, 3711, 0, + 0, 2805, 3121, + 0, 2805, 3121, + 0, 2806, 3121, + 0, 2806, 3121, + 0, 2806, 3121, + 0, 2806, 3120, + 0, 2807, 3120, + 0, 2808, 3119, + 0, 2809, 3119, + 0, 2810, 3118, + 0, 2811, 3116, + 0, 2814, 3115, + 0, 2816, 3112, + 0, 2820, 3109, + 0, 2825, 3105, + 0, 2832, 3099, + 0, 2840, 3091, + 0, 2852, 3080, + 0, 2867, 3065, + 0, 2886, 3044, + 0, 2910, 3014, + 0, 2940, 2972, + 0, 2978, 2908, + 0, 3025, 2805, + 0, 3080, 2615, + 0, 3145, 2083, + 0, 3219, 0, + 0, 3302, 0, + 0, 3394, 0, + 0, 3494, 0, + 0, 3600, 0, + 0, 3712, 0, + 0, 2811, 3141, + 0, 2811, 3141, + 0, 2811, 3141, + 0, 2811, 3141, + 0, 2812, 3141, + 0, 2812, 3140, + 0, 2813, 3140, + 0, 2813, 3139, + 0, 2814, 3139, + 0, 2815, 3138, + 0, 2817, 3136, + 0, 2819, 3135, + 0, 2822, 3132, + 0, 2826, 3129, + 0, 2831, 3125, + 0, 2837, 3120, + 0, 2846, 3112, + 0, 2857, 3101, + 0, 2872, 3087, + 0, 2890, 3067, + 0, 2914, 3039, + 0, 2945, 2999, + 0, 2982, 2939, + 0, 3028, 2843, + 0, 3083, 2673, + 0, 3147, 2248, + 0, 3221, 0, + 0, 3304, 0, + 0, 3396, 0, + 0, 3495, 0, + 0, 3601, 0, + 0, 3713, 0, + 1321, 2818, 3166, + 1314, 2818, 3166, + 1305, 2819, 3166, + 1292, 2819, 3166, + 1275, 2819, 3166, + 1251, 2819, 3165, + 1216, 2820, 3165, + 1165, 2821, 3165, + 1087, 2821, 3164, + 956, 2823, 3163, + 686, 2824, 3162, + 0, 2826, 3160, + 0, 2829, 3158, + 0, 2833, 3155, + 0, 2838, 3151, + 0, 2844, 3146, + 0, 2853, 3139, + 0, 2864, 3129, + 0, 2878, 3115, + 0, 2897, 3097, + 0, 2920, 3071, + 0, 2950, 3033, + 0, 2987, 2978, + 0, 3033, 2891, + 0, 3087, 2740, + 0, 3151, 2403, + 0, 3224, 0, + 0, 3307, 0, + 0, 3398, 0, + 0, 3497, 0, + 0, 3603, 0, + 0, 3714, 0, + 2324, 2828, 3198, + 2323, 2828, 3198, + 2322, 2828, 3198, + 2321, 2828, 3198, + 2319, 2829, 3197, + 2317, 2829, 3197, + 2314, 2830, 3197, + 2309, 2830, 3196, + 2304, 2831, 3196, + 2296, 2832, 3195, + 2285, 2834, 3194, + 2270, 2836, 3192, + 2249, 2839, 3190, + 2220, 2842, 3188, + 2178, 2847, 3184, + 2115, 2853, 3179, + 2013, 2862, 3172, + 1828, 2872, 3163, + 1321, 2887, 3151, + 0, 2905, 3134, + 0, 2928, 3109, + 0, 2957, 3075, + 0, 2994, 3025, + 0, 3039, 2947, + 0, 3092, 2817, + 0, 3156, 2552, + 0, 3228, 0, + 0, 3310, 0, + 0, 3401, 0, + 0, 3499, 0, + 0, 3604, 0, + 0, 3715, 0, + 2680, 2841, 3237, + 2680, 2841, 3237, + 2680, 2841, 3237, + 2679, 2841, 3237, + 2678, 2841, 3237, + 2677, 2842, 3236, + 2676, 2842, 3236, + 2674, 2843, 3236, + 2671, 2844, 3235, + 2668, 2845, 3234, + 2663, 2846, 3233, + 2657, 2848, 3232, + 2648, 2851, 3230, + 2636, 2854, 3228, + 2620, 2859, 3224, + 2597, 2865, 3220, + 2564, 2873, 3214, + 2516, 2884, 3205, + 2444, 2898, 3194, + 2324, 2915, 3178, + 2088, 2938, 3157, + 1008, 2967, 3126, + 0, 3003, 3081, + 0, 3047, 3013, + 0, 3100, 2903, + 0, 3162, 2696, + 0, 3233, 2020, + 0, 3315, 0, + 0, 3404, 0, + 0, 3502, 0, + 0, 3607, 0, + 0, 3717, 0, + 2929, 2857, 3285, + 2929, 2857, 3285, + 2928, 2857, 3285, + 2928, 2858, 3284, + 2927, 2858, 3284, + 2927, 2858, 3284, + 2926, 2859, 3284, + 2925, 2859, 3283, + 2923, 2860, 3283, + 2921, 2861, 3282, + 2919, 2863, 3281, + 2915, 2864, 3280, + 2910, 2867, 3278, + 2903, 2870, 3276, + 2894, 2875, 3273, + 2882, 2881, 3269, + 2865, 2889, 3264, + 2841, 2899, 3256, + 2807, 2912, 3246, + 2757, 2929, 3232, + 2680, 2952, 3213, + 2551, 2980, 3186, + 2289, 3014, 3147, + 0, 3057, 3089, + 0, 3109, 2997, + 0, 3170, 2837, + 0, 3240, 2456, + 0, 3320, 0, + 0, 3409, 0, + 0, 3506, 0, + 0, 3610, 0, + 0, 3719, 0, + 3132, 2878, 3341, + 3132, 2878, 3341, + 3131, 2878, 3341, + 3131, 2879, 3341, + 3131, 2879, 3341, + 3130, 2879, 3341, + 3130, 2880, 3341, + 3129, 2880, 3340, + 3128, 2881, 3340, + 3127, 2882, 3339, + 3125, 2883, 3338, + 3123, 2885, 3337, + 3120, 2888, 3336, + 3116, 2891, 3334, + 3110, 2895, 3331, + 3102, 2901, 3328, + 3092, 2908, 3323, + 3077, 2918, 3316, + 3057, 2931, 3307, + 3029, 2947, 3295, + 2989, 2969, 3279, + 2928, 2996, 3255, + 2832, 3029, 3222, + 2659, 3071, 3173, + 2222, 3121, 3099, + 0, 3181, 2975, + 0, 3250, 2729, + 0, 3328, 1243, + 0, 3415, 0, + 0, 3511, 0, + 0, 3614, 0, + 0, 3723, 0, + 3310, 2905, 3408, + 3310, 2905, 3408, + 3310, 2905, 3408, + 3310, 2905, 3407, + 3310, 2906, 3407, + 3309, 2906, 3407, + 3309, 2906, 3407, + 3309, 2907, 3407, + 3308, 2907, 3406, + 3307, 2908, 3406, + 3306, 2910, 3405, + 3304, 2911, 3404, + 3302, 2914, 3403, + 3300, 2917, 3401, + 3296, 2921, 3399, + 3291, 2926, 3396, + 3284, 2933, 3392, + 3274, 2943, 3386, + 3262, 2955, 3378, + 3244, 2970, 3368, + 3219, 2991, 3354, + 3183, 3016, 3334, + 3131, 3049, 3306, + 3050, 3089, 3266, + 2912, 3137, 3207, + 2620, 3195, 3112, + 0, 3262, 2944, + 0, 3338, 2528, + 0, 3424, 0, + 0, 3518, 0, + 0, 3619, 0, + 0, 3727, 0, + 3474, 2938, 3483, + 3474, 2938, 3483, + 3474, 2939, 3483, + 3474, 2939, 3483, + 3474, 2939, 3483, + 3474, 2939, 3483, + 3474, 2940, 3483, + 3473, 2940, 3483, + 3473, 2941, 3482, + 3472, 2942, 3482, + 3471, 2943, 3481, + 3470, 2944, 3480, + 3469, 2947, 3479, + 3467, 2949, 3478, + 3464, 2953, 3476, + 3461, 2958, 3473, + 3456, 2965, 3470, + 3450, 2973, 3465, + 3441, 2985, 3459, + 3429, 3000, 3450, + 3413, 3019, 3438, + 3390, 3043, 3422, + 3357, 3073, 3399, + 3310, 3111, 3367, + 3237, 3157, 3320, + 3117, 3213, 3248, + 2883, 3277, 3129, + 1820, 3351, 2898, + 0, 3435, 1907, + 0, 3527, 0, + 0, 3626, 0, + 0, 3732, 0, + 3629, 2980, 3568, + 3629, 2980, 3568, + 3629, 2980, 3568, + 3629, 2980, 3568, + 3629, 2980, 3568, + 3629, 2980, 3568, + 3628, 2981, 3568, + 3628, 2981, 3568, + 3628, 2982, 3567, + 3627, 2983, 3567, + 3627, 2984, 3566, + 3626, 2985, 3566, + 3625, 2987, 3565, + 3624, 2990, 3564, + 3622, 2993, 3562, + 3619, 2998, 3560, + 3616, 3004, 3557, + 3612, 3012, 3553, + 3605, 3022, 3548, + 3597, 3036, 3541, + 3586, 3053, 3531, + 3570, 3076, 3518, + 3549, 3104, 3500, + 3518, 3140, 3474, + 3474, 3183, 3437, + 3406, 3235, 3382, + 3297, 3297, 3297, + 3092, 3368, 3151, + 2441, 3449, 2828, + 0, 3538, 0, + 0, 3636, 0, + 0, 3740, 0, + 3777, 3029, 3662, + 3777, 3029, 3662, + 3777, 3030, 3662, + 3777, 3030, 3661, + 3777, 3030, 3661, + 3777, 3030, 3661, + 3777, 3030, 3661, + 3777, 3031, 3661, + 3776, 3031, 3661, + 3776, 3032, 3660, + 3776, 3033, 3660, + 3775, 3034, 3660, + 3774, 3036, 3659, + 3773, 3038, 3658, + 3772, 3042, 3657, + 3770, 3046, 3655, + 3768, 3051, 3652, + 3765, 3058, 3649, + 3760, 3068, 3645, + 3754, 3080, 3639, + 3747, 3096, 3632, + 3736, 3117, 3621, + 3721, 3143, 3606, + 3700, 3175, 3586, + 3671, 3216, 3558, + 3628, 3265, 3516, + 3564, 3323, 3455, + 3462, 3390, 3356, + 3275, 3467, 3178, + 2755, 3554, 2715, + 0, 3648, 0, + 0, 3750, 0, + 3921, 3088, 3762, + 3921, 3088, 3762, + 3921, 3089, 3762, + 3921, 3089, 3762, + 3921, 3089, 3762, + 3921, 3089, 3762, + 3921, 3089, 3762, + 3921, 3090, 3762, + 3920, 3090, 3762, + 3920, 3091, 3761, + 3920, 3092, 3761, + 3919, 3093, 3761, + 3919, 3094, 3760, + 3918, 3096, 3759, + 3917, 3099, 3758, + 3916, 3103, 3757, + 3914, 3108, 3755, + 3912, 3114, 3753, + 3909, 3122, 3749, + 3905, 3133, 3745, + 3899, 3148, 3738, + 3891, 3166, 3730, + 3881, 3189, 3719, + 3866, 3219, 3703, + 3846, 3256, 3681, + 3817, 3301, 3650, + 3776, 3355, 3605, + 3715, 3418, 3536, + 3617, 3491, 3424, + 3441, 3573, 3213, + 2987, 3664, 2497, + 0, 3762, 0, + 4062, 3157, 3869, + 4062, 3157, 3869, + 4062, 3157, 3869, + 4062, 3157, 3869, + 4062, 3157, 3869, + 4061, 3158, 3869, + 4061, 3158, 3869, + 4061, 3158, 3869, + 4061, 3159, 3869, + 4061, 3159, 3869, + 4061, 3160, 3869, + 4060, 3161, 3868, + 4060, 3162, 3868, + 4060, 3164, 3867, + 4059, 3166, 3866, + 4058, 3169, 3865, + 4057, 3174, 3864, + 4055, 3179, 3862, + 4053, 3186, 3859, + 4050, 3196, 3856, + 4045, 3208, 3851, + 4040, 3224, 3844, + 4032, 3245, 3835, + 4022, 3271, 3823, + 4008, 3304, 3806, + 3988, 3345, 3783, + 3960, 3394, 3750, + 3920, 3452, 3701, + 3860, 3520, 3626, + 3766, 3598, 3502, + 3598, 3684, 3255, + 3182, 3779, 1720, + 4095, 3235, 3982, + 4095, 3235, 3982, + 4095, 3235, 3982, + 4095, 3235, 3982, + 4095, 3235, 3982, + 4095, 3236, 3982, + 4095, 3236, 3982, + 4095, 3236, 3982, + 4095, 3236, 3982, + 4095, 3237, 3981, + 4095, 3238, 3981, + 4095, 3238, 3981, + 4095, 3239, 3981, + 4095, 3241, 3980, + 4095, 3243, 3979, + 4095, 3246, 3979, + 4095, 3249, 3978, + 4095, 3254, 3976, + 4095, 3260, 3974, + 4095, 3268, 3971, + 4095, 3279, 3967, + 4095, 3293, 3962, + 4095, 3310, 3956, + 4095, 3333, 3946, + 4095, 3362, 3934, + 4095, 3398, 3916, + 4095, 3442, 3891, + 4095, 3495, 3856, + 4061, 3557, 3804, + 4002, 3629, 3724, + 3910, 3710, 3589, + 3747, 3800, 3306, + 4095, 3322, 4095, + 4095, 3322, 4095, + 4095, 3322, 4095, + 4095, 3322, 4095, + 4095, 3322, 4095, + 4095, 3323, 4095, + 4095, 3323, 4095, + 4095, 3323, 4095, + 4095, 3323, 4095, + 4095, 3324, 4095, + 4095, 3324, 4095, + 4095, 3325, 4095, + 4095, 3326, 4095, + 4095, 3327, 4095, + 4095, 3329, 4095, + 4095, 3331, 4095, + 4095, 3334, 4095, + 4095, 3338, 4094, + 4095, 3343, 4093, + 4095, 3350, 4090, + 4095, 3358, 4088, + 4095, 3370, 4084, + 4095, 3385, 4079, + 4095, 3405, 4071, + 4095, 3429, 4062, + 4095, 3461, 4049, + 4095, 3499, 4030, + 4095, 3546, 4005, + 4095, 3602, 3968, + 4095, 3668, 3914, + 4095, 3743, 3829, + 4051, 3827, 3684, + 0, 2920, 3190, + 0, 2920, 3189, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2922, 3188, + 0, 2922, 3188, + 0, 2923, 3187, + 0, 2924, 3186, + 0, 2925, 3185, + 0, 2927, 3184, + 0, 2929, 3182, + 0, 2932, 3179, + 0, 2936, 3175, + 0, 2941, 3170, + 0, 2948, 3163, + 0, 2957, 3154, + 0, 2969, 3141, + 0, 2984, 3124, + 0, 3004, 3099, + 0, 3029, 3064, + 0, 3060, 3012, + 0, 3099, 2932, + 0, 3146, 2798, + 0, 3203, 2515, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3622, 0, + 0, 3729, 0, + 0, 2920, 3190, + 0, 2920, 3190, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2922, 3189, + 0, 2922, 3188, + 0, 2923, 3187, + 0, 2924, 3187, + 0, 2925, 3185, + 0, 2927, 3184, + 0, 2929, 3182, + 0, 2932, 3179, + 0, 2936, 3175, + 0, 2941, 3170, + 0, 2948, 3163, + 0, 2957, 3154, + 0, 2969, 3142, + 0, 2984, 3124, + 0, 3004, 3099, + 0, 3029, 3064, + 0, 3060, 3013, + 0, 3099, 2933, + 0, 3146, 2798, + 0, 3203, 2516, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3622, 0, + 0, 3729, 0, + 0, 2920, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2922, 3189, + 0, 2922, 3188, + 0, 2923, 3188, + 0, 2924, 3187, + 0, 2925, 3186, + 0, 2927, 3184, + 0, 2929, 3182, + 0, 2932, 3179, + 0, 2936, 3176, + 0, 2941, 3170, + 0, 2948, 3164, + 0, 2957, 3154, + 0, 2969, 3142, + 0, 2984, 3124, + 0, 3004, 3100, + 0, 3029, 3064, + 0, 3060, 3013, + 0, 3099, 2933, + 0, 3146, 2798, + 0, 3203, 2517, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3622, 0, + 0, 3729, 0, + 0, 2920, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3189, + 0, 2922, 3189, + 0, 2922, 3188, + 0, 2923, 3188, + 0, 2924, 3187, + 0, 2925, 3186, + 0, 2927, 3184, + 0, 2929, 3182, + 0, 2932, 3179, + 0, 2936, 3176, + 0, 2941, 3171, + 0, 2948, 3164, + 0, 2957, 3155, + 0, 2969, 3142, + 0, 2984, 3124, + 0, 3004, 3100, + 0, 3029, 3065, + 0, 3060, 3013, + 0, 3099, 2933, + 0, 3146, 2799, + 0, 3203, 2518, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3622, 0, + 0, 3729, 0, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2922, 3189, + 0, 2922, 3189, + 0, 2923, 3188, + 0, 2924, 3187, + 0, 2925, 3186, + 0, 2927, 3185, + 0, 2929, 3183, + 0, 2932, 3180, + 0, 2936, 3176, + 0, 2941, 3171, + 0, 2948, 3164, + 0, 2957, 3155, + 0, 2969, 3142, + 0, 2984, 3125, + 0, 3004, 3100, + 0, 3029, 3065, + 0, 3060, 3014, + 0, 3099, 2934, + 0, 3146, 2799, + 0, 3203, 2519, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3622, 0, + 0, 3729, 0, + 0, 2921, 3191, + 0, 2921, 3191, + 0, 2921, 3191, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2922, 3190, + 0, 2922, 3190, + 0, 2922, 3189, + 0, 2923, 3188, + 0, 2924, 3188, + 0, 2925, 3187, + 0, 2927, 3185, + 0, 2929, 3183, + 0, 2932, 3180, + 0, 2936, 3176, + 0, 2941, 3171, + 0, 2948, 3165, + 0, 2957, 3155, + 0, 2969, 3143, + 0, 2984, 3125, + 0, 3004, 3101, + 0, 3029, 3066, + 0, 3060, 3014, + 0, 3099, 2935, + 0, 3146, 2800, + 0, 3203, 2521, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3622, 0, + 0, 3729, 0, + 0, 2921, 3191, + 0, 2921, 3191, + 0, 2921, 3191, + 0, 2921, 3191, + 0, 2921, 3191, + 0, 2922, 3190, + 0, 2922, 3190, + 0, 2923, 3190, + 0, 2923, 3189, + 0, 2924, 3188, + 0, 2925, 3187, + 0, 2927, 3186, + 0, 2929, 3183, + 0, 2932, 3181, + 0, 2936, 3177, + 0, 2941, 3172, + 0, 2948, 3165, + 0, 2957, 3156, + 0, 2969, 3143, + 0, 2984, 3126, + 0, 3004, 3101, + 0, 3029, 3066, + 0, 3060, 3015, + 0, 3099, 2936, + 0, 3147, 2802, + 0, 3203, 2523, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3623, 0, + 0, 3729, 0, + 0, 2921, 3192, + 0, 2921, 3192, + 0, 2921, 3192, + 0, 2921, 3192, + 0, 2922, 3191, + 0, 2922, 3191, + 0, 2922, 3191, + 0, 2923, 3190, + 0, 2923, 3190, + 0, 2924, 3189, + 0, 2926, 3188, + 0, 2927, 3186, + 0, 2930, 3184, + 0, 2933, 3181, + 0, 2936, 3178, + 0, 2942, 3173, + 0, 2948, 3166, + 0, 2957, 3157, + 0, 2969, 3144, + 0, 2984, 3127, + 0, 3004, 3102, + 0, 3029, 3067, + 0, 3061, 3016, + 0, 3099, 2937, + 0, 3147, 2803, + 0, 3203, 2526, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2921, 3193, + 0, 2921, 3193, + 0, 2921, 3193, + 0, 2922, 3193, + 0, 2922, 3192, + 0, 2922, 3192, + 0, 2922, 3192, + 0, 2923, 3191, + 0, 2924, 3191, + 0, 2925, 3190, + 0, 2926, 3189, + 0, 2928, 3187, + 0, 2930, 3185, + 0, 2933, 3182, + 0, 2937, 3179, + 0, 2942, 3174, + 0, 2949, 3167, + 0, 2958, 3158, + 0, 2969, 3145, + 0, 2985, 3128, + 0, 3004, 3103, + 0, 3029, 3069, + 0, 3061, 3017, + 0, 3100, 2938, + 0, 3147, 2806, + 0, 3203, 2530, + 0, 3269, 0, + 0, 3345, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2922, 3194, + 0, 2922, 3194, + 0, 2922, 3194, + 0, 2922, 3194, + 0, 2922, 3194, + 0, 2922, 3193, + 0, 2923, 3193, + 0, 2923, 3193, + 0, 2924, 3192, + 0, 2925, 3191, + 0, 2926, 3190, + 0, 2928, 3188, + 0, 2930, 3186, + 0, 2933, 3184, + 0, 2937, 3180, + 0, 2942, 3175, + 0, 2949, 3168, + 0, 2958, 3159, + 0, 2970, 3147, + 0, 2985, 3129, + 0, 3005, 3105, + 0, 3030, 3070, + 0, 3061, 3019, + 0, 3100, 2941, + 0, 3147, 2808, + 0, 3203, 2536, + 0, 3269, 0, + 0, 3345, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2922, 3196, + 0, 2922, 3196, + 0, 2922, 3196, + 0, 2922, 3196, + 0, 2923, 3195, + 0, 2923, 3195, + 0, 2923, 3195, + 0, 2924, 3194, + 0, 2924, 3194, + 0, 2925, 3193, + 0, 2927, 3192, + 0, 2928, 3190, + 0, 2931, 3188, + 0, 2933, 3185, + 0, 2937, 3182, + 0, 2943, 3177, + 0, 2949, 3170, + 0, 2958, 3161, + 0, 2970, 3148, + 0, 2985, 3131, + 0, 3005, 3107, + 0, 3030, 3072, + 0, 3061, 3022, + 0, 3100, 2944, + 0, 3147, 2812, + 0, 3204, 2543, + 0, 3269, 0, + 0, 3345, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2923, 3198, + 0, 2923, 3198, + 0, 2923, 3198, + 0, 2923, 3198, + 0, 2923, 3198, + 0, 2923, 3197, + 0, 2924, 3197, + 0, 2924, 3197, + 0, 2925, 3196, + 0, 2926, 3195, + 0, 2927, 3194, + 0, 2929, 3192, + 0, 2931, 3190, + 0, 2934, 3188, + 0, 2938, 3184, + 0, 2943, 3179, + 0, 2950, 3172, + 0, 2959, 3163, + 0, 2971, 3151, + 0, 2986, 3134, + 0, 3005, 3110, + 0, 3030, 3075, + 0, 3062, 3025, + 0, 3100, 2947, + 0, 3148, 2818, + 0, 3204, 2552, + 0, 3270, 0, + 0, 3345, 0, + 0, 3430, 0, + 0, 3522, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2923, 3201, + 0, 2923, 3201, + 0, 2924, 3201, + 0, 2924, 3201, + 0, 2924, 3201, + 0, 2924, 3200, + 0, 2925, 3200, + 0, 2925, 3200, + 0, 2926, 3199, + 0, 2927, 3198, + 0, 2928, 3197, + 0, 2930, 3195, + 0, 2932, 3193, + 0, 2935, 3191, + 0, 2939, 3187, + 0, 2944, 3182, + 0, 2951, 3176, + 0, 2960, 3167, + 0, 2971, 3154, + 0, 2986, 3137, + 0, 3006, 3113, + 0, 3031, 3079, + 0, 3062, 3029, + 0, 3101, 2953, + 0, 3148, 2824, + 0, 3204, 2564, + 0, 3270, 0, + 0, 3345, 0, + 0, 3430, 0, + 0, 3523, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2924, 3205, + 0, 2924, 3205, + 0, 2925, 3205, + 0, 2925, 3205, + 0, 2925, 3205, + 0, 2925, 3204, + 0, 2926, 3204, + 0, 2926, 3203, + 0, 2927, 3203, + 0, 2928, 3202, + 0, 2929, 3201, + 0, 2931, 3199, + 0, 2933, 3197, + 0, 2936, 3195, + 0, 2940, 3191, + 0, 2945, 3186, + 0, 2952, 3180, + 0, 2961, 3171, + 0, 2972, 3159, + 0, 2987, 3142, + 0, 3007, 3118, + 0, 3032, 3084, + 0, 3063, 3035, + 0, 3102, 2959, + 0, 3149, 2833, + 0, 3205, 2580, + 0, 3271, 0, + 0, 3346, 0, + 0, 3430, 0, + 0, 3523, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2926, 3210, + 0, 2926, 3210, + 0, 2926, 3210, + 0, 2926, 3210, + 0, 2926, 3210, + 0, 2927, 3210, + 0, 2927, 3209, + 0, 2927, 3209, + 0, 2928, 3208, + 0, 2929, 3207, + 0, 2930, 3206, + 0, 2932, 3205, + 0, 2934, 3203, + 0, 2937, 3200, + 0, 2941, 3197, + 0, 2946, 3192, + 0, 2953, 3185, + 0, 2962, 3176, + 0, 2973, 3164, + 0, 2989, 3148, + 0, 3008, 3124, + 0, 3033, 3091, + 0, 3064, 3043, + 0, 3103, 2968, + 0, 3150, 2845, + 0, 3206, 2601, + 0, 3271, 1202, + 0, 3346, 0, + 0, 3431, 0, + 0, 3523, 0, + 0, 3624, 0, + 0, 3730, 0, + 0, 2927, 3217, + 0, 2928, 3217, + 0, 2928, 3217, + 0, 2928, 3217, + 0, 2928, 3217, + 0, 2928, 3216, + 0, 2929, 3216, + 0, 2929, 3216, + 0, 2930, 3215, + 0, 2931, 3214, + 0, 2932, 3213, + 0, 2934, 3212, + 0, 2936, 3210, + 0, 2939, 3207, + 0, 2943, 3204, + 0, 2948, 3199, + 0, 2955, 3193, + 0, 2963, 3184, + 0, 2975, 3172, + 0, 2990, 3156, + 0, 3010, 3133, + 0, 3034, 3100, + 0, 3065, 3053, + 0, 3104, 2980, + 0, 3151, 2860, + 0, 3207, 2626, + 0, 3272, 1575, + 0, 3347, 0, + 0, 3431, 0, + 0, 3524, 0, + 0, 3624, 0, + 0, 3731, 0, + 0, 2930, 3226, + 0, 2930, 3226, + 0, 2930, 3226, + 0, 2930, 3226, + 0, 2930, 3226, + 0, 2931, 3226, + 0, 2931, 3225, + 0, 2932, 3225, + 0, 2932, 3224, + 0, 2933, 3223, + 0, 2934, 3222, + 0, 2936, 3221, + 0, 2938, 3219, + 0, 2941, 3216, + 0, 2945, 3213, + 0, 2950, 3208, + 0, 2957, 3202, + 0, 2966, 3194, + 0, 2977, 3182, + 0, 2992, 3166, + 0, 3012, 3144, + 0, 3036, 3112, + 0, 3067, 3066, + 0, 3105, 2995, + 0, 3152, 2880, + 0, 3208, 2659, + 0, 3273, 1829, + 0, 3348, 0, + 0, 3432, 0, + 0, 3524, 0, + 0, 3624, 0, + 0, 3731, 0, + 0, 2933, 3238, + 0, 2933, 3238, + 0, 2933, 3238, + 0, 2933, 3238, + 0, 2934, 3238, + 0, 2934, 3237, + 0, 2934, 3237, + 0, 2935, 3237, + 0, 2936, 3236, + 0, 2936, 3235, + 0, 2938, 3234, + 0, 2939, 3233, + 0, 2941, 3231, + 0, 2944, 3229, + 0, 2948, 3225, + 0, 2953, 3221, + 0, 2960, 3215, + 0, 2969, 3206, + 0, 2980, 3195, + 0, 2995, 3179, + 0, 3014, 3158, + 0, 3039, 3127, + 0, 3069, 3082, + 0, 3108, 3015, + 0, 3154, 2905, + 0, 3210, 2699, + 0, 3275, 2034, + 0, 3349, 0, + 0, 3433, 0, + 0, 3525, 0, + 0, 3625, 0, + 0, 3732, 0, + 0, 2937, 3254, + 0, 2937, 3253, + 0, 2938, 3253, + 0, 2938, 3253, + 0, 2938, 3253, + 0, 2938, 3253, + 0, 2939, 3252, + 0, 2939, 3252, + 0, 2940, 3252, + 0, 2941, 3251, + 0, 2942, 3250, + 0, 2943, 3248, + 0, 2946, 3247, + 0, 2948, 3244, + 0, 2952, 3241, + 0, 2957, 3237, + 0, 2964, 3231, + 0, 2973, 3223, + 0, 2984, 3212, + 0, 2999, 3197, + 0, 3018, 3176, + 0, 3042, 3147, + 0, 3073, 3104, + 0, 3110, 3040, + 0, 3157, 2937, + 0, 3212, 2747, + 0, 3277, 2215, + 0, 3351, 0, + 0, 3434, 0, + 0, 3526, 0, + 0, 3626, 0, + 0, 3732, 0, + 0, 2943, 3273, + 0, 2943, 3273, + 0, 2943, 3273, + 0, 2943, 3273, + 0, 2944, 3273, + 0, 2944, 3273, + 0, 2944, 3272, + 0, 2945, 3272, + 0, 2945, 3271, + 0, 2946, 3271, + 0, 2947, 3270, + 0, 2949, 3268, + 0, 2951, 3267, + 0, 2954, 3264, + 0, 2958, 3261, + 0, 2963, 3257, + 0, 2969, 3252, + 0, 2978, 3244, + 0, 2989, 3234, + 0, 3004, 3219, + 0, 3022, 3199, + 0, 3046, 3171, + 0, 3077, 3131, + 0, 3114, 3071, + 0, 3160, 2976, + 0, 3215, 2805, + 0, 3279, 2380, + 0, 3353, 0, + 0, 3436, 0, + 0, 3528, 0, + 0, 3627, 0, + 0, 3733, 0, + 1458, 2950, 3298, + 1453, 2950, 3298, + 1446, 2951, 3298, + 1437, 2951, 3298, + 1424, 2951, 3298, + 1407, 2951, 3298, + 1383, 2952, 3298, + 1348, 2952, 3297, + 1297, 2953, 3297, + 1219, 2954, 3296, + 1088, 2955, 3295, + 818, 2956, 3294, + 0, 2958, 3292, + 0, 2961, 3290, + 0, 2965, 3287, + 0, 2970, 3283, + 0, 2976, 3278, + 0, 2985, 3271, + 0, 2996, 3261, + 0, 3010, 3248, + 0, 3029, 3229, + 0, 3052, 3203, + 0, 3082, 3165, + 0, 3119, 3110, + 0, 3165, 3023, + 0, 3219, 2873, + 0, 3283, 2535, + 0, 3356, 0, + 0, 3439, 0, + 0, 3530, 0, + 0, 3629, 0, + 0, 3735, 0, + 2457, 2960, 3330, + 2456, 2960, 3330, + 2456, 2960, 3330, + 2455, 2960, 3330, + 2453, 2961, 3330, + 2451, 2961, 3330, + 2449, 2961, 3329, + 2446, 2962, 3329, + 2442, 2962, 3328, + 2436, 2963, 3328, + 2428, 2964, 3327, + 2417, 2966, 3326, + 2402, 2968, 3324, + 2382, 2971, 3322, + 2352, 2974, 3320, + 2310, 2979, 3316, + 2247, 2985, 3311, + 2145, 2994, 3304, + 1960, 3004, 3295, + 1453, 3019, 3283, + 0, 3037, 3266, + 0, 3060, 3242, + 0, 3090, 3207, + 0, 3126, 3157, + 0, 3171, 3079, + 0, 3225, 2949, + 0, 3288, 2684, + 0, 3360, 0, + 0, 3442, 0, + 0, 3533, 0, + 0, 3631, 0, + 0, 3736, 0, + 2813, 2973, 3369, + 2813, 2973, 3369, + 2812, 2973, 3369, + 2812, 2973, 3369, + 2811, 2973, 3369, + 2810, 2974, 3369, + 2809, 2974, 3369, + 2808, 2974, 3368, + 2806, 2975, 3368, + 2803, 2976, 3367, + 2800, 2977, 3366, + 2795, 2978, 3365, + 2789, 2980, 3364, + 2780, 2983, 3362, + 2768, 2987, 3360, + 2752, 2991, 3356, + 2729, 2997, 3352, + 2696, 3005, 3346, + 2648, 3016, 3337, + 2576, 3030, 3326, + 2456, 3048, 3310, + 2220, 3070, 3289, + 1140, 3099, 3258, + 0, 3135, 3213, + 0, 3179, 3145, + 0, 3232, 3035, + 0, 3294, 2828, + 0, 3366, 2152, + 0, 3447, 0, + 0, 3536, 0, + 0, 3634, 0, + 0, 3739, 0, + 3061, 2989, 3417, + 3061, 2989, 3417, + 3061, 2989, 3417, + 3060, 2989, 3417, + 3060, 2990, 3417, + 3060, 2990, 3416, + 3059, 2990, 3416, + 3058, 2991, 3416, + 3057, 2991, 3415, + 3055, 2992, 3415, + 3053, 2993, 3414, + 3051, 2995, 3413, + 3047, 2997, 3412, + 3042, 2999, 3410, + 3036, 3002, 3408, + 3027, 3007, 3405, + 3014, 3013, 3401, + 2997, 3021, 3396, + 2973, 3031, 3388, + 2939, 3044, 3378, + 2889, 3062, 3364, + 2812, 3084, 3345, + 2683, 3112, 3318, + 2421, 3147, 3279, + 0, 3189, 3221, + 0, 3241, 3129, + 0, 3302, 2969, + 0, 3373, 2588, + 0, 3452, 0, + 0, 3541, 0, + 0, 3638, 0, + 0, 3742, 0, + 3264, 3010, 3474, + 3264, 3010, 3474, + 3264, 3010, 3473, + 3263, 3010, 3473, + 3263, 3011, 3473, + 3263, 3011, 3473, + 3263, 3011, 3473, + 3262, 3012, 3473, + 3261, 3012, 3472, + 3260, 3013, 3472, + 3259, 3014, 3471, + 3257, 3015, 3470, + 3255, 3017, 3469, + 3252, 3020, 3468, + 3248, 3023, 3466, + 3242, 3027, 3463, + 3234, 3033, 3460, + 3224, 3040, 3455, + 3210, 3050, 3448, + 3190, 3063, 3440, + 3161, 3080, 3427, + 3121, 3101, 3411, + 3060, 3128, 3387, + 2964, 3162, 3354, + 2791, 3203, 3305, + 2354, 3253, 3231, + 0, 3313, 3107, + 0, 3382, 2861, + 0, 3460, 1375, + 0, 3548, 0, + 0, 3643, 0, + 0, 3746, 0, + 3442, 3037, 3540, + 3442, 3037, 3540, + 3442, 3037, 3540, + 3442, 3037, 3540, + 3442, 3037, 3540, + 3442, 3038, 3539, + 3442, 3038, 3539, + 3441, 3038, 3539, + 3441, 3039, 3539, + 3440, 3040, 3538, + 3439, 3041, 3538, + 3438, 3042, 3537, + 3437, 3044, 3536, + 3434, 3046, 3535, + 3432, 3049, 3533, + 3428, 3053, 3531, + 3423, 3058, 3528, + 3416, 3065, 3524, + 3407, 3075, 3518, + 3394, 3087, 3511, + 3376, 3103, 3500, + 3351, 3123, 3486, + 3315, 3149, 3466, + 3263, 3181, 3438, + 3182, 3221, 3398, + 3044, 3269, 3339, + 2752, 3327, 3244, + 0, 3394, 3076, + 0, 3470, 2660, + 0, 3556, 0, + 0, 3650, 0, + 0, 3751, 0, + 3606, 3070, 3616, + 3606, 3070, 3616, + 3606, 3071, 3616, + 3606, 3071, 3615, + 3606, 3071, 3615, + 3606, 3071, 3615, + 3606, 3071, 3615, + 3606, 3072, 3615, + 3605, 3072, 3615, + 3605, 3073, 3614, + 3604, 3074, 3614, + 3603, 3075, 3613, + 3602, 3077, 3613, + 3601, 3079, 3611, + 3599, 3082, 3610, + 3596, 3085, 3608, + 3593, 3090, 3605, + 3588, 3097, 3602, + 3582, 3106, 3597, + 3573, 3117, 3591, + 3561, 3132, 3582, + 3545, 3151, 3570, + 3522, 3175, 3554, + 3489, 3205, 3531, + 3442, 3243, 3499, + 3369, 3289, 3452, + 3249, 3345, 3380, + 3015, 3409, 3261, + 1952, 3483, 3030, + 0, 3567, 2039, + 0, 3659, 0, + 0, 3758, 0, + 3761, 3112, 3700, + 3761, 3112, 3700, + 3761, 3112, 3700, + 3761, 3112, 3700, + 3761, 3112, 3700, + 3761, 3112, 3700, + 3761, 3112, 3700, + 3760, 3113, 3700, + 3760, 3113, 3700, + 3760, 3114, 3699, + 3759, 3115, 3699, + 3759, 3116, 3699, + 3758, 3117, 3698, + 3757, 3119, 3697, + 3756, 3122, 3696, + 3754, 3125, 3694, + 3751, 3130, 3692, + 3748, 3136, 3689, + 3744, 3144, 3685, + 3738, 3154, 3680, + 3729, 3168, 3673, + 3718, 3185, 3663, + 3702, 3208, 3650, + 3681, 3236, 3632, + 3650, 3272, 3606, + 3606, 3315, 3569, + 3538, 3368, 3514, + 3429, 3429, 3429, + 3224, 3501, 3283, + 2573, 3581, 2960, + 0, 3671, 0, + 0, 3768, 0, + 3909, 3161, 3794, + 3909, 3161, 3794, + 3909, 3162, 3794, + 3909, 3162, 3794, + 3909, 3162, 3794, + 3909, 3162, 3794, + 3909, 3162, 3793, + 3909, 3162, 3793, + 3909, 3163, 3793, + 3908, 3163, 3793, + 3908, 3164, 3793, + 3908, 3165, 3792, + 3907, 3166, 3792, + 3906, 3168, 3791, + 3905, 3171, 3790, + 3904, 3174, 3789, + 3902, 3178, 3787, + 3900, 3183, 3785, + 3897, 3190, 3781, + 3892, 3200, 3777, + 3887, 3212, 3771, + 3879, 3228, 3764, + 3868, 3249, 3753, + 3853, 3275, 3739, + 3832, 3307, 3718, + 3803, 3348, 3690, + 3760, 3397, 3648, + 3696, 3455, 3587, + 3594, 3522, 3488, + 3407, 3599, 3311, + 2887, 3686, 2847, + 0, 3780, 0, + 4053, 3220, 3894, + 4053, 3221, 3894, + 4053, 3221, 3894, + 4053, 3221, 3894, + 4053, 3221, 3894, + 4053, 3221, 3894, + 4053, 3221, 3894, + 4053, 3221, 3894, + 4053, 3222, 3894, + 4052, 3222, 3894, + 4052, 3223, 3894, + 4052, 3224, 3893, + 4052, 3225, 3893, + 4051, 3226, 3892, + 4050, 3229, 3891, + 4049, 3231, 3890, + 4048, 3235, 3889, + 4046, 3240, 3887, + 4044, 3246, 3885, + 4041, 3254, 3881, + 4037, 3265, 3877, + 4031, 3280, 3871, + 4023, 3298, 3862, + 4013, 3321, 3851, + 3998, 3351, 3835, + 3978, 3388, 3813, + 3950, 3433, 3782, + 3908, 3487, 3737, + 3847, 3550, 3668, + 3749, 3623, 3557, + 3573, 3705, 3345, + 3119, 3796, 2630, + 4095, 3289, 4002, + 4095, 3289, 4002, + 4095, 3289, 4002, + 4095, 3289, 4002, + 4095, 3289, 4001, + 4095, 3290, 4001, + 4095, 3290, 4001, + 4095, 3290, 4001, + 4095, 3290, 4001, + 4095, 3291, 4001, + 4095, 3291, 4001, + 4095, 3292, 4001, + 4095, 3293, 4000, + 4095, 3294, 4000, + 4095, 3296, 3999, + 4095, 3298, 3998, + 4095, 3302, 3997, + 4095, 3306, 3996, + 4095, 3311, 3994, + 4095, 3318, 3991, + 4095, 3328, 3988, + 4095, 3340, 3983, + 4095, 3357, 3976, + 4095, 3377, 3967, + 4095, 3403, 3955, + 4095, 3436, 3939, + 4095, 3477, 3915, + 4092, 3526, 3882, + 4052, 3585, 3833, + 3993, 3653, 3758, + 3898, 3730, 3634, + 3730, 3816, 3387, + 4095, 3367, 4095, + 4095, 3367, 4095, + 4095, 3367, 4095, + 4095, 3367, 4095, + 4095, 3367, 4095, + 4095, 3368, 4095, + 4095, 3368, 4095, + 4095, 3368, 4095, + 4095, 3368, 4095, + 4095, 3369, 4095, + 4095, 3369, 4095, + 4095, 3370, 4095, + 4095, 3370, 4095, + 4095, 3372, 4095, + 4095, 3373, 4095, + 4095, 3375, 4095, + 4095, 3378, 4095, + 4095, 3381, 4095, + 4095, 3386, 4095, + 4095, 3392, 4095, + 4095, 3400, 4095, + 4095, 3411, 4095, + 4095, 3425, 4094, + 4095, 3442, 4088, + 4095, 3465, 4078, + 4095, 3494, 4066, + 4095, 3530, 4048, + 4095, 3574, 4023, + 4095, 3627, 3988, + 4095, 3689, 3936, + 4095, 3761, 3857, + 4042, 3842, 3721, + 0, 3052, 3322, + 0, 3052, 3322, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3054, 3320, + 0, 3054, 3320, + 0, 3055, 3319, + 0, 3056, 3318, + 0, 3057, 3317, + 0, 3059, 3316, + 0, 3061, 3314, + 0, 3064, 3311, + 0, 3068, 3307, + 0, 3073, 3302, + 0, 3080, 3295, + 0, 3089, 3286, + 0, 3101, 3273, + 0, 3116, 3256, + 0, 3136, 3231, + 0, 3161, 3196, + 0, 3192, 3144, + 0, 3231, 3064, + 0, 3278, 2929, + 0, 3335, 2647, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3052, 3322, + 0, 3052, 3322, + 0, 3053, 3322, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3054, 3320, + 0, 3054, 3320, + 0, 3055, 3319, + 0, 3056, 3319, + 0, 3057, 3317, + 0, 3059, 3316, + 0, 3061, 3314, + 0, 3064, 3311, + 0, 3068, 3307, + 0, 3073, 3302, + 0, 3080, 3295, + 0, 3089, 3286, + 0, 3101, 3273, + 0, 3116, 3256, + 0, 3136, 3231, + 0, 3161, 3196, + 0, 3192, 3144, + 0, 3231, 3065, + 0, 3278, 2930, + 0, 3335, 2648, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3052, 3322, + 0, 3052, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3054, 3321, + 0, 3054, 3320, + 0, 3055, 3319, + 0, 3056, 3319, + 0, 3057, 3318, + 0, 3059, 3316, + 0, 3061, 3314, + 0, 3064, 3311, + 0, 3068, 3307, + 0, 3073, 3302, + 0, 3080, 3296, + 0, 3089, 3286, + 0, 3101, 3274, + 0, 3116, 3256, + 0, 3136, 3231, + 0, 3161, 3196, + 0, 3192, 3145, + 0, 3231, 3065, + 0, 3278, 2930, + 0, 3335, 2648, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3052, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3054, 3321, + 0, 3054, 3320, + 0, 3055, 3320, + 0, 3056, 3319, + 0, 3057, 3318, + 0, 3059, 3316, + 0, 3061, 3314, + 0, 3064, 3311, + 0, 3068, 3308, + 0, 3073, 3303, + 0, 3080, 3296, + 0, 3089, 3286, + 0, 3101, 3274, + 0, 3116, 3256, + 0, 3136, 3232, + 0, 3161, 3197, + 0, 3192, 3145, + 0, 3231, 3065, + 0, 3278, 2930, + 0, 3335, 2649, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3321, + 0, 3054, 3321, + 0, 3054, 3321, + 0, 3055, 3320, + 0, 3056, 3319, + 0, 3057, 3318, + 0, 3059, 3316, + 0, 3061, 3314, + 0, 3064, 3312, + 0, 3068, 3308, + 0, 3073, 3303, + 0, 3080, 3296, + 0, 3089, 3287, + 0, 3101, 3274, + 0, 3116, 3256, + 0, 3136, 3232, + 0, 3161, 3197, + 0, 3192, 3145, + 0, 3231, 3065, + 0, 3278, 2931, + 0, 3335, 2650, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3053, 3323, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3054, 3322, + 0, 3054, 3321, + 0, 3054, 3321, + 0, 3055, 3320, + 0, 3056, 3319, + 0, 3057, 3318, + 0, 3059, 3317, + 0, 3061, 3315, + 0, 3064, 3312, + 0, 3068, 3308, + 0, 3073, 3303, + 0, 3080, 3296, + 0, 3089, 3287, + 0, 3101, 3274, + 0, 3116, 3257, + 0, 3136, 3232, + 0, 3161, 3197, + 0, 3192, 3146, + 0, 3231, 3066, + 0, 3279, 2932, + 0, 3335, 2651, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3322, + 0, 3054, 3322, + 0, 3054, 3322, + 0, 3055, 3321, + 0, 3055, 3321, + 0, 3056, 3320, + 0, 3057, 3319, + 0, 3059, 3317, + 0, 3061, 3315, + 0, 3064, 3312, + 0, 3068, 3309, + 0, 3073, 3304, + 0, 3080, 3297, + 0, 3089, 3287, + 0, 3101, 3275, + 0, 3116, 3257, + 0, 3136, 3233, + 0, 3161, 3198, + 0, 3192, 3146, + 0, 3231, 3067, + 0, 3279, 2932, + 0, 3335, 2653, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3054, 3323, + 0, 3054, 3322, + 0, 3055, 3322, + 0, 3055, 3321, + 0, 3056, 3320, + 0, 3058, 3319, + 0, 3059, 3318, + 0, 3061, 3316, + 0, 3064, 3313, + 0, 3068, 3309, + 0, 3074, 3304, + 0, 3080, 3297, + 0, 3089, 3288, + 0, 3101, 3275, + 0, 3116, 3258, + 0, 3136, 3233, + 0, 3161, 3198, + 0, 3192, 3147, + 0, 3231, 3068, + 0, 3279, 2934, + 0, 3335, 2655, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3053, 3324, + 0, 3053, 3324, + 0, 3053, 3324, + 0, 3053, 3324, + 0, 3053, 3324, + 0, 3054, 3324, + 0, 3054, 3323, + 0, 3054, 3323, + 0, 3055, 3322, + 0, 3056, 3322, + 0, 3057, 3321, + 0, 3058, 3320, + 0, 3059, 3318, + 0, 3062, 3316, + 0, 3065, 3314, + 0, 3069, 3310, + 0, 3074, 3305, + 0, 3081, 3298, + 0, 3090, 3289, + 0, 3101, 3276, + 0, 3117, 3259, + 0, 3136, 3234, + 0, 3161, 3199, + 0, 3193, 3148, + 0, 3231, 3069, + 0, 3279, 2935, + 0, 3335, 2658, + 0, 3401, 0, + 0, 3477, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3053, 3325, + 0, 3053, 3325, + 0, 3053, 3325, + 0, 3054, 3325, + 0, 3054, 3325, + 0, 3054, 3325, + 0, 3054, 3324, + 0, 3055, 3324, + 0, 3055, 3323, + 0, 3056, 3323, + 0, 3057, 3322, + 0, 3058, 3321, + 0, 3060, 3319, + 0, 3062, 3317, + 0, 3065, 3314, + 0, 3069, 3311, + 0, 3074, 3306, + 0, 3081, 3299, + 0, 3090, 3290, + 0, 3102, 3277, + 0, 3117, 3260, + 0, 3136, 3235, + 0, 3161, 3201, + 0, 3193, 3149, + 0, 3232, 3071, + 0, 3279, 2938, + 0, 3335, 2662, + 0, 3401, 0, + 0, 3477, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3054, 3326, + 0, 3054, 3326, + 0, 3054, 3326, + 0, 3054, 3326, + 0, 3054, 3326, + 0, 3054, 3326, + 0, 3055, 3326, + 0, 3055, 3325, + 0, 3055, 3325, + 0, 3056, 3324, + 0, 3057, 3323, + 0, 3058, 3322, + 0, 3060, 3321, + 0, 3062, 3319, + 0, 3065, 3316, + 0, 3069, 3312, + 0, 3074, 3307, + 0, 3081, 3300, + 0, 3090, 3291, + 0, 3102, 3279, + 0, 3117, 3261, + 0, 3137, 3237, + 0, 3162, 3202, + 0, 3193, 3151, + 0, 3232, 3073, + 0, 3279, 2941, + 0, 3335, 2668, + 0, 3401, 0, + 0, 3477, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3054, 3328, + 0, 3054, 3328, + 0, 3054, 3328, + 0, 3054, 3328, + 0, 3054, 3328, + 0, 3055, 3327, + 0, 3055, 3327, + 0, 3055, 3327, + 0, 3056, 3326, + 0, 3057, 3326, + 0, 3057, 3325, + 0, 3059, 3324, + 0, 3060, 3322, + 0, 3063, 3320, + 0, 3066, 3318, + 0, 3069, 3314, + 0, 3075, 3309, + 0, 3081, 3302, + 0, 3090, 3293, + 0, 3102, 3281, + 0, 3117, 3263, + 0, 3137, 3239, + 0, 3162, 3204, + 0, 3193, 3154, + 0, 3232, 3076, + 0, 3279, 2944, + 0, 3336, 2675, + 0, 3402, 0, + 0, 3477, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3055, 3330, + 0, 3055, 3330, + 0, 3055, 3330, + 0, 3055, 3330, + 0, 3055, 3330, + 0, 3055, 3330, + 0, 3056, 3329, + 0, 3056, 3329, + 0, 3056, 3329, + 0, 3057, 3328, + 0, 3058, 3327, + 0, 3059, 3326, + 0, 3061, 3325, + 0, 3063, 3323, + 0, 3066, 3320, + 0, 3070, 3316, + 0, 3075, 3311, + 0, 3082, 3305, + 0, 3091, 3295, + 0, 3103, 3283, + 0, 3118, 3266, + 0, 3137, 3242, + 0, 3162, 3207, + 0, 3194, 3157, + 0, 3233, 3080, + 0, 3280, 2950, + 0, 3336, 2684, + 0, 3402, 0, + 0, 3477, 0, + 0, 3562, 0, + 0, 3655, 0, + 0, 3755, 0, + 0, 3055, 3333, + 0, 3055, 3333, + 0, 3055, 3333, + 0, 3056, 3333, + 0, 3056, 3333, + 0, 3056, 3333, + 0, 3056, 3332, + 0, 3057, 3332, + 0, 3057, 3332, + 0, 3058, 3331, + 0, 3059, 3330, + 0, 3060, 3329, + 0, 3062, 3328, + 0, 3064, 3326, + 0, 3067, 3323, + 0, 3071, 3319, + 0, 3076, 3314, + 0, 3083, 3308, + 0, 3092, 3299, + 0, 3103, 3286, + 0, 3119, 3269, + 0, 3138, 3245, + 0, 3163, 3211, + 0, 3194, 3161, + 0, 3233, 3085, + 0, 3280, 2957, + 0, 3336, 2696, + 0, 3402, 0, + 0, 3477, 0, + 0, 3562, 0, + 0, 3655, 0, + 0, 3755, 0, + 0, 3056, 3337, + 0, 3056, 3337, + 0, 3056, 3337, + 0, 3057, 3337, + 0, 3057, 3337, + 0, 3057, 3337, + 0, 3057, 3336, + 0, 3058, 3336, + 0, 3058, 3336, + 0, 3059, 3335, + 0, 3060, 3334, + 0, 3061, 3333, + 0, 3063, 3332, + 0, 3065, 3330, + 0, 3068, 3327, + 0, 3072, 3323, + 0, 3077, 3318, + 0, 3084, 3312, + 0, 3093, 3303, + 0, 3104, 3291, + 0, 3119, 3274, + 0, 3139, 3250, + 0, 3164, 3216, + 0, 3195, 3167, + 0, 3234, 3092, + 0, 3281, 2966, + 0, 3337, 2712, + 0, 3403, 0, + 0, 3478, 0, + 0, 3562, 0, + 0, 3655, 0, + 0, 3755, 0, + 0, 3058, 3342, + 0, 3058, 3342, + 0, 3058, 3342, + 0, 3058, 3342, + 0, 3058, 3342, + 0, 3058, 3342, + 0, 3059, 3342, + 0, 3059, 3341, + 0, 3060, 3341, + 0, 3060, 3340, + 0, 3061, 3339, + 0, 3062, 3338, + 0, 3064, 3337, + 0, 3066, 3335, + 0, 3069, 3332, + 0, 3073, 3329, + 0, 3078, 3324, + 0, 3085, 3317, + 0, 3094, 3309, + 0, 3106, 3296, + 0, 3121, 3280, + 0, 3140, 3256, + 0, 3165, 3223, + 0, 3196, 3175, + 0, 3235, 3100, + 0, 3282, 2977, + 0, 3338, 2733, + 0, 3403, 1334, + 0, 3478, 0, + 0, 3563, 0, + 0, 3655, 0, + 0, 3756, 0, + 0, 3059, 3349, + 0, 3060, 3349, + 0, 3060, 3349, + 0, 3060, 3349, + 0, 3060, 3349, + 0, 3060, 3349, + 0, 3060, 3349, + 0, 3061, 3348, + 0, 3061, 3348, + 0, 3062, 3347, + 0, 3063, 3346, + 0, 3064, 3345, + 0, 3066, 3344, + 0, 3068, 3342, + 0, 3071, 3339, + 0, 3075, 3336, + 0, 3080, 3331, + 0, 3087, 3325, + 0, 3096, 3316, + 0, 3107, 3304, + 0, 3122, 3288, + 0, 3142, 3265, + 0, 3166, 3232, + 0, 3197, 3185, + 0, 3236, 3112, + 0, 3283, 2993, + 0, 3339, 2758, + 0, 3404, 1707, + 0, 3479, 0, + 0, 3563, 0, + 0, 3656, 0, + 0, 3756, 0, + 0, 3062, 3358, + 0, 3062, 3358, + 0, 3062, 3358, + 0, 3062, 3358, + 0, 3062, 3358, + 0, 3063, 3358, + 0, 3063, 3358, + 0, 3063, 3357, + 0, 3064, 3357, + 0, 3064, 3356, + 0, 3065, 3355, + 0, 3067, 3354, + 0, 3068, 3353, + 0, 3070, 3351, + 0, 3073, 3349, + 0, 3077, 3345, + 0, 3082, 3341, + 0, 3089, 3334, + 0, 3098, 3326, + 0, 3109, 3314, + 0, 3124, 3298, + 0, 3144, 3276, + 0, 3168, 3244, + 0, 3199, 3198, + 0, 3238, 3127, + 0, 3284, 3012, + 0, 3340, 2791, + 0, 3405, 1961, + 0, 3480, 0, + 0, 3564, 0, + 0, 3657, 0, + 0, 3757, 0, + 0, 3065, 3370, + 0, 3065, 3370, + 0, 3065, 3370, + 0, 3065, 3370, + 0, 3066, 3370, + 0, 3066, 3370, + 0, 3066, 3369, + 0, 3066, 3369, + 0, 3067, 3369, + 0, 3068, 3368, + 0, 3069, 3367, + 0, 3070, 3366, + 0, 3071, 3365, + 0, 3074, 3363, + 0, 3076, 3361, + 0, 3080, 3357, + 0, 3085, 3353, + 0, 3092, 3347, + 0, 3101, 3338, + 0, 3112, 3327, + 0, 3127, 3312, + 0, 3146, 3290, + 0, 3171, 3259, + 0, 3202, 3214, + 0, 3240, 3147, + 0, 3286, 3037, + 0, 3342, 2831, + 0, 3407, 2166, + 0, 3481, 0, + 0, 3565, 0, + 0, 3657, 0, + 0, 3757, 0, + 0, 3069, 3386, + 0, 3069, 3386, + 0, 3070, 3386, + 0, 3070, 3385, + 0, 3070, 3385, + 0, 3070, 3385, + 0, 3070, 3385, + 0, 3071, 3385, + 0, 3071, 3384, + 0, 3072, 3384, + 0, 3073, 3383, + 0, 3074, 3382, + 0, 3076, 3381, + 0, 3078, 3379, + 0, 3081, 3376, + 0, 3084, 3373, + 0, 3089, 3369, + 0, 3096, 3363, + 0, 3105, 3355, + 0, 3116, 3344, + 0, 3131, 3329, + 0, 3150, 3308, + 0, 3174, 3279, + 0, 3205, 3236, + 0, 3243, 3172, + 0, 3289, 3069, + 0, 3344, 2880, + 0, 3409, 2347, + 0, 3483, 0, + 0, 3567, 0, + 0, 3659, 0, + 0, 3758, 0, + 0, 3075, 3405, + 0, 3075, 3405, + 0, 3075, 3405, + 0, 3075, 3405, + 0, 3075, 3405, + 0, 3076, 3405, + 0, 3076, 3405, + 0, 3076, 3404, + 0, 3077, 3404, + 0, 3077, 3404, + 0, 3078, 3403, + 0, 3080, 3402, + 0, 3081, 3401, + 0, 3083, 3399, + 0, 3086, 3397, + 0, 3090, 3393, + 0, 3095, 3389, + 0, 3101, 3384, + 0, 3110, 3376, + 0, 3121, 3366, + 0, 3136, 3351, + 0, 3155, 3332, + 0, 3179, 3304, + 0, 3209, 3263, + 0, 3246, 3203, + 0, 3292, 3108, + 0, 3347, 2937, + 0, 3411, 2512, + 0, 3485, 0, + 0, 3568, 0, + 0, 3660, 0, + 0, 3759, 0, + 1593, 3082, 3431, + 1590, 3082, 3431, + 1585, 3083, 3431, + 1578, 3083, 3430, + 1569, 3083, 3430, + 1556, 3083, 3430, + 1539, 3083, 3430, + 1515, 3084, 3430, + 1480, 3084, 3429, + 1429, 3085, 3429, + 1351, 3086, 3428, + 1220, 3087, 3427, + 950, 3088, 3426, + 0, 3090, 3424, + 0, 3093, 3422, + 0, 3097, 3419, + 0, 3102, 3415, + 0, 3108, 3410, + 0, 3117, 3403, + 0, 3128, 3393, + 0, 3142, 3380, + 0, 3161, 3361, + 0, 3184, 3335, + 0, 3214, 3297, + 0, 3252, 3242, + 0, 3297, 3155, + 0, 3351, 3005, + 0, 3415, 2667, + 0, 3488, 0, + 0, 3571, 0, + 0, 3662, 0, + 0, 3761, 0, + 2589, 3092, 3462, + 2589, 3092, 3462, + 2588, 3092, 3462, + 2588, 3092, 3462, + 2587, 3092, 3462, + 2585, 3093, 3462, + 2584, 3093, 3462, + 2581, 3093, 3461, + 2578, 3094, 3461, + 2574, 3094, 3461, + 2568, 3095, 3460, + 2560, 3096, 3459, + 2549, 3098, 3458, + 2534, 3100, 3456, + 2514, 3103, 3454, + 2484, 3106, 3452, + 2442, 3111, 3448, + 2379, 3117, 3443, + 2277, 3126, 3436, + 2092, 3137, 3427, + 1586, 3151, 3415, + 0, 3169, 3398, + 0, 3192, 3374, + 0, 3222, 3339, + 0, 3258, 3289, + 0, 3303, 3211, + 0, 3357, 3081, + 0, 3420, 2816, + 0, 3492, 0, + 0, 3574, 0, + 0, 3665, 0, + 0, 3763, 0, + 2945, 3105, 3501, + 2945, 3105, 3501, + 2945, 3105, 3501, + 2944, 3105, 3501, + 2944, 3105, 3501, + 2943, 3105, 3501, + 2942, 3106, 3501, + 2941, 3106, 3501, + 2940, 3106, 3500, + 2938, 3107, 3500, + 2935, 3108, 3499, + 2932, 3109, 3499, + 2927, 3110, 3497, + 2921, 3112, 3496, + 2912, 3115, 3494, + 2900, 3119, 3492, + 2884, 3123, 3488, + 2861, 3129, 3484, + 2828, 3137, 3478, + 2780, 3148, 3470, + 2708, 3162, 3458, + 2588, 3180, 3443, + 2352, 3202, 3421, + 1272, 3231, 3390, + 0, 3267, 3345, + 0, 3311, 3277, + 0, 3364, 3167, + 0, 3426, 2960, + 0, 3498, 2284, + 0, 3579, 0, + 0, 3669, 0, + 0, 3766, 0, + 3193, 3121, 3549, + 3193, 3121, 3549, + 3193, 3121, 3549, + 3193, 3121, 3549, + 3192, 3122, 3549, + 3192, 3122, 3549, + 3192, 3122, 3548, + 3191, 3122, 3548, + 3190, 3123, 3548, + 3189, 3123, 3548, + 3188, 3124, 3547, + 3186, 3125, 3546, + 3183, 3127, 3545, + 3179, 3129, 3544, + 3174, 3131, 3543, + 3168, 3135, 3540, + 3159, 3139, 3537, + 3146, 3145, 3533, + 3129, 3153, 3528, + 3105, 3163, 3520, + 3071, 3176, 3510, + 3021, 3194, 3496, + 2944, 3216, 3477, + 2815, 3244, 3450, + 2553, 3279, 3411, + 0, 3321, 3353, + 0, 3373, 3261, + 0, 3434, 3101, + 0, 3505, 2720, + 0, 3585, 0, + 0, 3673, 0, + 0, 3770, 0, + 3396, 3142, 3606, + 3396, 3142, 3606, + 3396, 3142, 3606, + 3396, 3142, 3606, + 3396, 3143, 3605, + 3395, 3143, 3605, + 3395, 3143, 3605, + 3395, 3143, 3605, + 3394, 3144, 3605, + 3393, 3144, 3604, + 3392, 3145, 3604, + 3391, 3146, 3603, + 3389, 3148, 3603, + 3387, 3149, 3601, + 3384, 3152, 3600, + 3380, 3155, 3598, + 3374, 3159, 3595, + 3367, 3165, 3592, + 3356, 3172, 3587, + 3342, 3182, 3581, + 3322, 3195, 3572, + 3294, 3212, 3560, + 3253, 3233, 3543, + 3192, 3260, 3519, + 3096, 3294, 3486, + 2923, 3335, 3437, + 2486, 3385, 3363, + 0, 3445, 3239, + 0, 3514, 2993, + 0, 3592, 1507, + 0, 3680, 0, + 0, 3775, 0, + 3575, 3169, 3672, + 3575, 3169, 3672, + 3574, 3169, 3672, + 3574, 3169, 3672, + 3574, 3169, 3672, + 3574, 3169, 3672, + 3574, 3170, 3672, + 3574, 3170, 3671, + 3573, 3170, 3671, + 3573, 3171, 3671, + 3572, 3172, 3670, + 3571, 3173, 3670, + 3570, 3174, 3669, + 3569, 3176, 3668, + 3567, 3178, 3667, + 3564, 3181, 3665, + 3560, 3185, 3663, + 3555, 3190, 3660, + 3548, 3198, 3656, + 3539, 3207, 3650, + 3526, 3219, 3643, + 3508, 3235, 3632, + 3483, 3255, 3618, + 3448, 3281, 3598, + 3395, 3313, 3571, + 3314, 3353, 3531, + 3176, 3401, 3471, + 2884, 3459, 3376, + 0, 3526, 3208, + 0, 3602, 2792, + 0, 3688, 0, + 0, 3782, 0, + 3739, 3202, 3748, + 3739, 3202, 3748, + 3739, 3203, 3748, + 3738, 3203, 3748, + 3738, 3203, 3748, + 3738, 3203, 3747, + 3738, 3203, 3747, + 3738, 3203, 3747, + 3738, 3204, 3747, + 3737, 3204, 3747, + 3737, 3205, 3746, + 3736, 3206, 3746, + 3736, 3207, 3745, + 3734, 3209, 3745, + 3733, 3211, 3744, + 3731, 3214, 3742, + 3728, 3217, 3740, + 3725, 3222, 3738, + 3720, 3229, 3734, + 3714, 3238, 3729, + 3705, 3249, 3723, + 3693, 3264, 3714, + 3677, 3283, 3703, + 3654, 3307, 3686, + 3621, 3338, 3663, + 3574, 3375, 3631, + 3501, 3422, 3584, + 3381, 3477, 3512, + 3147, 3541, 3393, + 2084, 3616, 3162, + 0, 3699, 2171, + 0, 3791, 0, + 3893, 3244, 3833, + 3893, 3244, 3833, + 3893, 3244, 3833, + 3893, 3244, 3832, + 3893, 3244, 3832, + 3893, 3244, 3832, + 3893, 3244, 3832, + 3893, 3244, 3832, + 3893, 3245, 3832, + 3892, 3245, 3832, + 3892, 3246, 3832, + 3892, 3247, 3831, + 3891, 3248, 3831, + 3890, 3249, 3830, + 3889, 3251, 3829, + 3888, 3254, 3828, + 3886, 3257, 3826, + 3884, 3262, 3824, + 3880, 3268, 3821, + 3876, 3276, 3817, + 3870, 3286, 3812, + 3861, 3300, 3805, + 3850, 3318, 3795, + 3835, 3340, 3782, + 3813, 3368, 3764, + 3782, 3404, 3738, + 3738, 3447, 3701, + 3670, 3500, 3646, + 3561, 3561, 3561, + 3357, 3633, 3415, + 2705, 3713, 3092, + 0, 3803, 0, + 4041, 3293, 3926, + 4041, 3293, 3926, + 4041, 3294, 3926, + 4041, 3294, 3926, + 4041, 3294, 3926, + 4041, 3294, 3926, + 4041, 3294, 3926, + 4041, 3294, 3926, + 4041, 3295, 3925, + 4041, 3295, 3925, + 4041, 3296, 3925, + 4040, 3296, 3925, + 4040, 3297, 3924, + 4039, 3299, 3924, + 4039, 3300, 3923, + 4038, 3303, 3922, + 4036, 3306, 3921, + 4034, 3310, 3919, + 4032, 3315, 3917, + 4029, 3322, 3914, + 4025, 3332, 3909, + 4019, 3344, 3904, + 4011, 3360, 3896, + 4000, 3381, 3885, + 3985, 3407, 3871, + 3964, 3440, 3850, + 3935, 3480, 3822, + 3892, 3529, 3781, + 3829, 3587, 3719, + 3726, 3654, 3620, + 3539, 3732, 3443, + 3019, 3818, 2979, + 4095, 3353, 4027, + 4095, 3353, 4027, + 4095, 3353, 4027, + 4095, 3353, 4027, + 4095, 3353, 4026, + 4095, 3353, 4026, + 4095, 3353, 4026, + 4095, 3353, 4026, + 4095, 3354, 4026, + 4095, 3354, 4026, + 4095, 3354, 4026, + 4095, 3355, 4026, + 4095, 3356, 4025, + 4095, 3357, 4025, + 4095, 3359, 4024, + 4095, 3361, 4024, + 4095, 3363, 4023, + 4095, 3367, 4021, + 4095, 3372, 4019, + 4095, 3378, 4017, + 4095, 3387, 4013, + 4095, 3397, 4009, + 4095, 3412, 4003, + 4095, 3430, 3994, + 4095, 3454, 3983, + 4095, 3483, 3967, + 4095, 3520, 3945, + 4082, 3565, 3914, + 4041, 3619, 3869, + 3979, 3682, 3800, + 3881, 3755, 3689, + 3706, 3837, 3477, + 4095, 3421, 4095, + 4095, 3421, 4095, + 4095, 3421, 4095, + 4095, 3421, 4095, + 4095, 3421, 4095, + 4095, 3421, 4095, + 4095, 3422, 4095, + 4095, 3422, 4095, + 4095, 3422, 4095, + 4095, 3422, 4095, + 4095, 3423, 4095, + 4095, 3423, 4095, + 4095, 3424, 4095, + 4095, 3425, 4095, + 4095, 3426, 4095, + 4095, 3428, 4095, + 4095, 3431, 4095, + 4095, 3434, 4095, + 4095, 3438, 4095, + 4095, 3443, 4095, + 4095, 3451, 4095, + 4095, 3460, 4095, + 4095, 3473, 4095, + 4095, 3489, 4095, + 4095, 3509, 4095, + 4095, 3536, 4087, + 4095, 3568, 4071, + 4095, 3609, 4047, + 4095, 3658, 4014, + 4095, 3717, 3965, + 4095, 3785, 3891, + 4030, 3862, 3767, + 0, 3184, 3454, + 0, 3184, 3454, + 0, 3185, 3454, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3186, 3452, + 0, 3186, 3452, + 0, 3187, 3451, + 0, 3188, 3450, + 0, 3189, 3449, + 0, 3191, 3448, + 0, 3193, 3446, + 0, 3196, 3443, + 0, 3200, 3439, + 0, 3205, 3434, + 0, 3212, 3427, + 0, 3221, 3418, + 0, 3233, 3405, + 0, 3248, 3388, + 0, 3268, 3363, + 0, 3293, 3328, + 0, 3324, 3276, + 0, 3363, 3196, + 0, 3410, 3061, + 0, 3467, 2779, + 0, 3533, 0, + 0, 3608, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3184, 3454, + 0, 3184, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3186, 3452, + 0, 3186, 3452, + 0, 3187, 3451, + 0, 3188, 3451, + 0, 3189, 3449, + 0, 3191, 3448, + 0, 3193, 3446, + 0, 3196, 3443, + 0, 3200, 3439, + 0, 3205, 3434, + 0, 3212, 3427, + 0, 3221, 3418, + 0, 3233, 3405, + 0, 3248, 3388, + 0, 3268, 3363, + 0, 3293, 3328, + 0, 3324, 3276, + 0, 3363, 3196, + 0, 3410, 3061, + 0, 3467, 2779, + 0, 3533, 0, + 0, 3608, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3184, 3454, + 0, 3184, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3186, 3453, + 0, 3186, 3452, + 0, 3187, 3451, + 0, 3188, 3451, + 0, 3189, 3449, + 0, 3191, 3448, + 0, 3193, 3446, + 0, 3196, 3443, + 0, 3200, 3439, + 0, 3205, 3434, + 0, 3212, 3428, + 0, 3221, 3418, + 0, 3233, 3406, + 0, 3248, 3388, + 0, 3268, 3363, + 0, 3293, 3328, + 0, 3324, 3277, + 0, 3363, 3197, + 0, 3411, 3062, + 0, 3467, 2780, + 0, 3533, 0, + 0, 3608, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3184, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3186, 3453, + 0, 3186, 3452, + 0, 3187, 3452, + 0, 3188, 3451, + 0, 3189, 3450, + 0, 3191, 3448, + 0, 3193, 3446, + 0, 3196, 3443, + 0, 3200, 3440, + 0, 3205, 3434, + 0, 3212, 3428, + 0, 3221, 3418, + 0, 3233, 3406, + 0, 3248, 3388, + 0, 3268, 3364, + 0, 3293, 3328, + 0, 3324, 3277, + 0, 3363, 3197, + 0, 3411, 3062, + 0, 3467, 2780, + 0, 3533, 0, + 0, 3608, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3184, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3453, + 0, 3186, 3453, + 0, 3186, 3453, + 0, 3186, 3452, + 0, 3187, 3452, + 0, 3188, 3451, + 0, 3189, 3450, + 0, 3191, 3448, + 0, 3193, 3446, + 0, 3196, 3443, + 0, 3200, 3440, + 0, 3205, 3435, + 0, 3212, 3428, + 0, 3221, 3419, + 0, 3233, 3406, + 0, 3248, 3388, + 0, 3268, 3364, + 0, 3293, 3329, + 0, 3324, 3277, + 0, 3363, 3197, + 0, 3411, 3062, + 0, 3467, 2781, + 0, 3533, 0, + 0, 3608, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3186, 3453, + 0, 3186, 3453, + 0, 3186, 3453, + 0, 3187, 3452, + 0, 3188, 3451, + 0, 3189, 3450, + 0, 3191, 3448, + 0, 3193, 3446, + 0, 3196, 3444, + 0, 3200, 3440, + 0, 3205, 3435, + 0, 3212, 3428, + 0, 3221, 3419, + 0, 3233, 3406, + 0, 3248, 3389, + 0, 3268, 3364, + 0, 3293, 3329, + 0, 3324, 3277, + 0, 3363, 3198, + 0, 3411, 3063, + 0, 3467, 2782, + 0, 3533, 0, + 0, 3608, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3186, 3454, + 0, 3186, 3453, + 0, 3187, 3453, + 0, 3187, 3452, + 0, 3188, 3451, + 0, 3189, 3450, + 0, 3191, 3449, + 0, 3193, 3447, + 0, 3196, 3444, + 0, 3200, 3440, + 0, 3205, 3435, + 0, 3212, 3428, + 0, 3221, 3419, + 0, 3233, 3406, + 0, 3248, 3389, + 0, 3268, 3364, + 0, 3293, 3329, + 0, 3324, 3278, + 0, 3363, 3198, + 0, 3411, 3064, + 0, 3467, 2783, + 0, 3533, 0, + 0, 3609, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3454, + 0, 3186, 3454, + 0, 3186, 3454, + 0, 3187, 3453, + 0, 3187, 3453, + 0, 3188, 3452, + 0, 3190, 3451, + 0, 3191, 3449, + 0, 3193, 3447, + 0, 3196, 3444, + 0, 3200, 3441, + 0, 3205, 3436, + 0, 3212, 3429, + 0, 3221, 3420, + 0, 3233, 3407, + 0, 3248, 3389, + 0, 3268, 3365, + 0, 3293, 3330, + 0, 3324, 3278, + 0, 3363, 3199, + 0, 3411, 3065, + 0, 3467, 2785, + 0, 3533, 0, + 0, 3609, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3185, 3456, + 0, 3185, 3456, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3186, 3455, + 0, 3186, 3455, + 0, 3186, 3454, + 0, 3187, 3454, + 0, 3187, 3453, + 0, 3188, 3452, + 0, 3190, 3451, + 0, 3191, 3450, + 0, 3194, 3448, + 0, 3197, 3445, + 0, 3200, 3441, + 0, 3206, 3436, + 0, 3212, 3429, + 0, 3221, 3420, + 0, 3233, 3407, + 0, 3248, 3390, + 0, 3268, 3365, + 0, 3293, 3331, + 0, 3325, 3279, + 0, 3363, 3200, + 0, 3411, 3066, + 0, 3467, 2787, + 0, 3533, 0, + 0, 3609, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3185, 3456, + 0, 3185, 3456, + 0, 3185, 3456, + 0, 3185, 3456, + 0, 3185, 3456, + 0, 3186, 3456, + 0, 3186, 3456, + 0, 3186, 3455, + 0, 3186, 3455, + 0, 3187, 3455, + 0, 3188, 3454, + 0, 3189, 3453, + 0, 3190, 3452, + 0, 3192, 3450, + 0, 3194, 3448, + 0, 3197, 3446, + 0, 3201, 3442, + 0, 3206, 3437, + 0, 3213, 3430, + 0, 3222, 3421, + 0, 3233, 3408, + 0, 3249, 3391, + 0, 3268, 3366, + 0, 3293, 3331, + 0, 3325, 3280, + 0, 3364, 3201, + 0, 3411, 3067, + 0, 3467, 2790, + 0, 3533, 0, + 0, 3609, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3185, 3457, + 0, 3185, 3457, + 0, 3185, 3457, + 0, 3185, 3457, + 0, 3186, 3457, + 0, 3186, 3457, + 0, 3186, 3457, + 0, 3186, 3456, + 0, 3187, 3456, + 0, 3187, 3456, + 0, 3188, 3455, + 0, 3189, 3454, + 0, 3190, 3453, + 0, 3192, 3451, + 0, 3194, 3449, + 0, 3197, 3447, + 0, 3201, 3443, + 0, 3206, 3438, + 0, 3213, 3431, + 0, 3222, 3422, + 0, 3234, 3409, + 0, 3249, 3392, + 0, 3268, 3368, + 0, 3293, 3333, + 0, 3325, 3282, + 0, 3364, 3203, + 0, 3411, 3070, + 0, 3467, 2794, + 0, 3533, 0, + 0, 3609, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3186, 3459, + 0, 3186, 3458, + 0, 3186, 3458, + 0, 3186, 3458, + 0, 3186, 3458, + 0, 3186, 3458, + 0, 3186, 3458, + 0, 3187, 3458, + 0, 3187, 3457, + 0, 3188, 3457, + 0, 3188, 3456, + 0, 3189, 3455, + 0, 3190, 3454, + 0, 3192, 3453, + 0, 3194, 3451, + 0, 3197, 3448, + 0, 3201, 3444, + 0, 3206, 3439, + 0, 3213, 3432, + 0, 3222, 3423, + 0, 3234, 3411, + 0, 3249, 3393, + 0, 3269, 3369, + 0, 3294, 3334, + 0, 3325, 3283, + 0, 3364, 3205, + 0, 3411, 3073, + 0, 3468, 2800, + 0, 3533, 0, + 0, 3609, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3186, 3460, + 0, 3186, 3460, + 0, 3186, 3460, + 0, 3186, 3460, + 0, 3186, 3460, + 0, 3187, 3460, + 0, 3187, 3460, + 0, 3187, 3459, + 0, 3187, 3459, + 0, 3188, 3458, + 0, 3189, 3458, + 0, 3190, 3457, + 0, 3191, 3456, + 0, 3193, 3454, + 0, 3195, 3452, + 0, 3198, 3450, + 0, 3202, 3446, + 0, 3207, 3441, + 0, 3214, 3434, + 0, 3223, 3425, + 0, 3234, 3413, + 0, 3250, 3395, + 0, 3269, 3371, + 0, 3294, 3337, + 0, 3325, 3286, + 0, 3364, 3208, + 0, 3411, 3077, + 0, 3468, 2807, + 0, 3534, 0, + 0, 3609, 0, + 0, 3694, 0, + 0, 3787, 0, + 0, 3187, 3462, + 0, 3187, 3462, + 0, 3187, 3462, + 0, 3187, 3462, + 0, 3187, 3462, + 0, 3187, 3462, + 0, 3187, 3462, + 0, 3188, 3462, + 0, 3188, 3461, + 0, 3189, 3461, + 0, 3189, 3460, + 0, 3190, 3459, + 0, 3191, 3458, + 0, 3193, 3457, + 0, 3195, 3455, + 0, 3198, 3452, + 0, 3202, 3448, + 0, 3207, 3443, + 0, 3214, 3437, + 0, 3223, 3428, + 0, 3235, 3415, + 0, 3250, 3398, + 0, 3270, 3374, + 0, 3295, 3339, + 0, 3326, 3289, + 0, 3365, 3212, + 0, 3412, 3082, + 0, 3468, 2816, + 0, 3534, 0, + 0, 3609, 0, + 0, 3694, 0, + 0, 3787, 0, + 0, 3187, 3465, + 0, 3187, 3465, + 0, 3187, 3465, + 0, 3188, 3465, + 0, 3188, 3465, + 0, 3188, 3465, + 0, 3188, 3465, + 0, 3188, 3465, + 0, 3189, 3464, + 0, 3189, 3464, + 0, 3190, 3463, + 0, 3191, 3462, + 0, 3192, 3461, + 0, 3194, 3460, + 0, 3196, 3458, + 0, 3199, 3455, + 0, 3203, 3451, + 0, 3208, 3446, + 0, 3215, 3440, + 0, 3224, 3431, + 0, 3235, 3418, + 0, 3251, 3401, + 0, 3270, 3377, + 0, 3295, 3343, + 0, 3326, 3293, + 0, 3365, 3217, + 0, 3412, 3089, + 0, 3469, 2829, + 0, 3534, 0, + 0, 3610, 0, + 0, 3694, 0, + 0, 3787, 0, + 0, 3188, 3469, + 0, 3188, 3469, + 0, 3188, 3469, + 0, 3189, 3469, + 0, 3189, 3469, + 0, 3189, 3469, + 0, 3189, 3469, + 0, 3189, 3468, + 0, 3190, 3468, + 0, 3190, 3468, + 0, 3191, 3467, + 0, 3192, 3466, + 0, 3193, 3465, + 0, 3195, 3464, + 0, 3197, 3462, + 0, 3200, 3459, + 0, 3204, 3455, + 0, 3209, 3451, + 0, 3216, 3444, + 0, 3225, 3435, + 0, 3236, 3423, + 0, 3252, 3406, + 0, 3271, 3382, + 0, 3296, 3349, + 0, 3327, 3299, + 0, 3366, 3224, + 0, 3413, 3098, + 0, 3469, 2844, + 0, 3535, 106, + 0, 3610, 0, + 0, 3694, 0, + 0, 3787, 0, + 0, 3190, 3475, + 0, 3190, 3475, + 0, 3190, 3474, + 0, 3190, 3474, + 0, 3190, 3474, + 0, 3190, 3474, + 0, 3190, 3474, + 0, 3191, 3474, + 0, 3191, 3473, + 0, 3192, 3473, + 0, 3192, 3472, + 0, 3193, 3471, + 0, 3195, 3470, + 0, 3196, 3469, + 0, 3198, 3467, + 0, 3201, 3464, + 0, 3205, 3461, + 0, 3210, 3456, + 0, 3217, 3449, + 0, 3226, 3441, + 0, 3238, 3429, + 0, 3253, 3412, + 0, 3272, 3389, + 0, 3297, 3355, + 0, 3328, 3307, + 0, 3367, 3233, + 0, 3414, 3109, + 0, 3470, 2865, + 0, 3535, 1466, + 0, 3611, 0, + 0, 3695, 0, + 0, 3788, 0, + 0, 3192, 3481, + 0, 3192, 3481, + 0, 3192, 3481, + 0, 3192, 3481, + 0, 3192, 3481, + 0, 3192, 3481, + 0, 3192, 3481, + 0, 3193, 3481, + 0, 3193, 3480, + 0, 3193, 3480, + 0, 3194, 3479, + 0, 3195, 3478, + 0, 3196, 3477, + 0, 3198, 3476, + 0, 3200, 3474, + 0, 3203, 3471, + 0, 3207, 3468, + 0, 3212, 3463, + 0, 3219, 3457, + 0, 3228, 3448, + 0, 3239, 3436, + 0, 3254, 3420, + 0, 3274, 3397, + 0, 3298, 3364, + 0, 3329, 3317, + 0, 3368, 3244, + 0, 3415, 3125, + 0, 3471, 2891, + 0, 3536, 1839, + 0, 3611, 0, + 0, 3695, 0, + 0, 3788, 0, + 0, 3194, 3491, + 0, 3194, 3491, + 0, 3194, 3490, + 0, 3194, 3490, + 0, 3194, 3490, + 0, 3194, 3490, + 0, 3195, 3490, + 0, 3195, 3490, + 0, 3195, 3489, + 0, 3196, 3489, + 0, 3197, 3488, + 0, 3197, 3488, + 0, 3199, 3487, + 0, 3200, 3485, + 0, 3202, 3483, + 0, 3205, 3481, + 0, 3209, 3477, + 0, 3214, 3473, + 0, 3221, 3466, + 0, 3230, 3458, + 0, 3241, 3446, + 0, 3256, 3430, + 0, 3276, 3408, + 0, 3300, 3376, + 0, 3331, 3330, + 0, 3370, 3259, + 0, 3416, 3144, + 0, 3472, 2923, + 0, 3537, 2093, + 0, 3612, 0, + 0, 3696, 0, + 0, 3789, 0, + 0, 3197, 3502, + 0, 3197, 3502, + 0, 3197, 3502, + 0, 3197, 3502, + 0, 3197, 3502, + 0, 3198, 3502, + 0, 3198, 3502, + 0, 3198, 3502, + 0, 3199, 3501, + 0, 3199, 3501, + 0, 3200, 3500, + 0, 3201, 3500, + 0, 3202, 3498, + 0, 3203, 3497, + 0, 3206, 3495, + 0, 3209, 3493, + 0, 3212, 3489, + 0, 3217, 3485, + 0, 3224, 3479, + 0, 3233, 3471, + 0, 3244, 3459, + 0, 3259, 3444, + 0, 3278, 3422, + 0, 3303, 3391, + 0, 3334, 3347, + 0, 3372, 3279, + 0, 3418, 3169, + 0, 3474, 2963, + 0, 3539, 2299, + 0, 3613, 0, + 0, 3697, 0, + 0, 3790, 0, + 0, 3201, 3518, + 0, 3201, 3518, + 0, 3202, 3518, + 0, 3202, 3518, + 0, 3202, 3518, + 0, 3202, 3517, + 0, 3202, 3517, + 0, 3202, 3517, + 0, 3203, 3517, + 0, 3203, 3516, + 0, 3204, 3516, + 0, 3205, 3515, + 0, 3206, 3514, + 0, 3208, 3513, + 0, 3210, 3511, + 0, 3213, 3508, + 0, 3216, 3505, + 0, 3221, 3501, + 0, 3228, 3495, + 0, 3237, 3487, + 0, 3248, 3476, + 0, 3263, 3461, + 0, 3282, 3440, + 0, 3306, 3411, + 0, 3337, 3368, + 0, 3375, 3304, + 0, 3421, 3201, + 0, 3476, 3012, + 0, 3541, 2479, + 0, 3615, 0, + 0, 3699, 0, + 0, 3791, 0, + 0, 3207, 3538, + 0, 3207, 3538, + 0, 3207, 3537, + 0, 3207, 3537, + 0, 3207, 3537, + 0, 3207, 3537, + 0, 3208, 3537, + 0, 3208, 3537, + 0, 3208, 3537, + 0, 3209, 3536, + 0, 3210, 3536, + 0, 3210, 3535, + 0, 3212, 3534, + 0, 3213, 3533, + 0, 3215, 3531, + 0, 3218, 3529, + 0, 3222, 3526, + 0, 3227, 3521, + 0, 3233, 3516, + 0, 3242, 3508, + 0, 3253, 3498, + 0, 3268, 3483, + 0, 3287, 3464, + 0, 3311, 3436, + 0, 3341, 3395, + 0, 3379, 3335, + 0, 3424, 3240, + 0, 3479, 3069, + 0, 3544, 2644, + 0, 3617, 0, + 0, 3701, 0, + 0, 3792, 0, + 1728, 3214, 3563, + 1725, 3214, 3563, + 1722, 3215, 3563, + 1717, 3215, 3563, + 1710, 3215, 3563, + 1701, 3215, 3562, + 1688, 3215, 3562, + 1671, 3215, 3562, + 1647, 3216, 3562, + 1612, 3216, 3561, + 1562, 3217, 3561, + 1483, 3218, 3560, + 1352, 3219, 3559, + 1082, 3220, 3558, + 0, 3223, 3557, + 0, 3225, 3554, + 0, 3229, 3551, + 0, 3234, 3548, + 0, 3240, 3542, + 0, 3249, 3535, + 0, 3260, 3525, + 0, 3274, 3512, + 0, 3293, 3493, + 0, 3317, 3467, + 0, 3346, 3429, + 0, 3384, 3374, + 0, 3429, 3287, + 0, 3483, 3137, + 0, 3547, 2799, + 0, 3620, 0, + 0, 3703, 0, + 0, 3794, 0, + 2722, 3224, 3594, + 2721, 3224, 3594, + 2721, 3224, 3594, + 2720, 3224, 3594, + 2720, 3224, 3594, + 2719, 3225, 3594, + 2717, 3225, 3594, + 2716, 3225, 3594, + 2713, 3225, 3593, + 2710, 3226, 3593, + 2706, 3227, 3593, + 2700, 3227, 3592, + 2692, 3229, 3591, + 2681, 3230, 3590, + 2666, 3232, 3589, + 2646, 3235, 3587, + 2617, 3238, 3584, + 2574, 3243, 3580, + 2511, 3250, 3575, + 2410, 3258, 3569, + 2224, 3269, 3559, + 1718, 3283, 3547, + 0, 3301, 3530, + 0, 3324, 3506, + 0, 3354, 3471, + 0, 3390, 3421, + 0, 3435, 3343, + 0, 3489, 3214, + 0, 3552, 2948, + 0, 3624, 0, + 0, 3706, 0, + 0, 3797, 0, + 3077, 3237, 3634, + 3077, 3237, 3634, + 3077, 3237, 3633, + 3077, 3237, 3633, + 3076, 3237, 3633, + 3076, 3237, 3633, + 3075, 3237, 3633, + 3075, 3238, 3633, + 3073, 3238, 3633, + 3072, 3239, 3632, + 3070, 3239, 3632, + 3068, 3240, 3631, + 3064, 3241, 3631, + 3059, 3243, 3630, + 3053, 3245, 3628, + 3044, 3247, 3626, + 3032, 3251, 3624, + 3016, 3255, 3621, + 2993, 3262, 3616, + 2960, 3270, 3610, + 2913, 3280, 3602, + 2840, 3294, 3590, + 2720, 3312, 3575, + 2485, 3335, 3553, + 1404, 3363, 3522, + 0, 3399, 3477, + 0, 3443, 3409, + 0, 3496, 3299, + 0, 3558, 3092, + 0, 3630, 2417, + 0, 3711, 0, + 0, 3801, 0, + 3325, 3253, 3681, + 3325, 3253, 3681, + 3325, 3253, 3681, + 3325, 3253, 3681, + 3325, 3254, 3681, + 3325, 3254, 3681, + 3324, 3254, 3681, + 3324, 3254, 3681, + 3323, 3254, 3680, + 3322, 3255, 3680, + 3321, 3255, 3680, + 3320, 3256, 3679, + 3318, 3257, 3678, + 3315, 3259, 3678, + 3311, 3261, 3676, + 3306, 3263, 3675, + 3300, 3267, 3672, + 3291, 3271, 3669, + 3278, 3277, 3665, + 3261, 3285, 3660, + 3237, 3295, 3652, + 3203, 3308, 3642, + 3153, 3326, 3628, + 3076, 3348, 3609, + 2947, 3376, 3582, + 2685, 3411, 3543, + 0, 3454, 3485, + 0, 3505, 3394, + 0, 3566, 3233, + 0, 3637, 2852, + 0, 3717, 0, + 0, 3805, 0, + 3528, 3274, 3738, + 3528, 3274, 3738, + 3528, 3274, 3738, + 3528, 3274, 3738, + 3528, 3275, 3738, + 3528, 3275, 3738, + 3527, 3275, 3737, + 3527, 3275, 3737, + 3527, 3275, 3737, + 3526, 3276, 3737, + 3525, 3276, 3737, + 3525, 3277, 3736, + 3523, 3278, 3735, + 3522, 3280, 3735, + 3519, 3281, 3734, + 3516, 3284, 3732, + 3512, 3287, 3730, + 3506, 3291, 3728, + 3499, 3297, 3724, + 3488, 3305, 3719, + 3474, 3314, 3713, + 3454, 3327, 3704, + 3426, 3344, 3692, + 3385, 3365, 3675, + 3324, 3392, 3652, + 3228, 3426, 3618, + 3055, 3467, 3570, + 2618, 3517, 3495, + 0, 3577, 3371, + 0, 3646, 3125, + 0, 3724, 1639, + 0, 3812, 0, + 3707, 3301, 3804, + 3707, 3301, 3804, + 3707, 3301, 3804, + 3707, 3301, 3804, + 3707, 3301, 3804, + 3706, 3301, 3804, + 3706, 3302, 3804, + 3706, 3302, 3804, + 3706, 3302, 3803, + 3705, 3303, 3803, + 3705, 3303, 3803, + 3704, 3304, 3803, + 3703, 3305, 3802, + 3702, 3306, 3801, + 3701, 3308, 3800, + 3699, 3310, 3799, + 3696, 3313, 3797, + 3692, 3317, 3795, + 3687, 3323, 3792, + 3680, 3330, 3788, + 3671, 3339, 3782, + 3658, 3351, 3775, + 3640, 3367, 3764, + 3615, 3387, 3750, + 3580, 3413, 3730, + 3527, 3445, 3703, + 3446, 3485, 3663, + 3308, 3533, 3603, + 3017, 3591, 3508, + 0, 3658, 3340, + 0, 3734, 2924, + 0, 3820, 0, + 3871, 3334, 3880, + 3871, 3334, 3880, + 3871, 3335, 3880, + 3871, 3335, 3880, + 3871, 3335, 3880, + 3871, 3335, 3880, + 3870, 3335, 3880, + 3870, 3335, 3879, + 3870, 3335, 3879, + 3870, 3336, 3879, + 3869, 3336, 3879, + 3869, 3337, 3879, + 3868, 3338, 3878, + 3868, 3339, 3878, + 3867, 3341, 3877, + 3865, 3343, 3876, + 3863, 3346, 3874, + 3861, 3349, 3872, + 3857, 3354, 3870, + 3852, 3361, 3866, + 3846, 3370, 3862, + 3837, 3381, 3855, + 3825, 3396, 3846, + 3809, 3415, 3835, + 3786, 3439, 3818, + 3753, 3470, 3796, + 3706, 3507, 3763, + 3633, 3554, 3716, + 3513, 3609, 3644, + 3279, 3673, 3525, + 2216, 3748, 3294, + 0, 3831, 2303, + 4025, 3376, 3965, + 4025, 3376, 3965, + 4025, 3376, 3965, + 4025, 3376, 3965, + 4025, 3376, 3965, + 4025, 3376, 3965, + 4025, 3376, 3964, + 4025, 3376, 3964, + 4025, 3377, 3964, + 4025, 3377, 3964, + 4024, 3377, 3964, + 4024, 3378, 3964, + 4024, 3379, 3963, + 4023, 3380, 3963, + 4022, 3381, 3962, + 4021, 3383, 3961, + 4020, 3386, 3960, + 4018, 3389, 3958, + 4016, 3394, 3956, + 4012, 3400, 3953, + 4008, 3408, 3950, + 4002, 3418, 3944, + 3993, 3432, 3937, + 3982, 3450, 3928, + 3967, 3472, 3914, + 3945, 3501, 3896, + 3914, 3536, 3870, + 3870, 3579, 3833, + 3803, 3632, 3779, + 3693, 3693, 3693, + 3489, 3765, 3547, + 2837, 3845, 3224, + 4095, 3425, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3427, 4057, + 4095, 3427, 4057, + 4095, 3428, 4057, + 4095, 3428, 4057, + 4095, 3429, 4056, + 4095, 3431, 4056, + 4095, 3432, 4055, + 4095, 3435, 4054, + 4095, 3438, 4053, + 4095, 3442, 4051, + 4095, 3447, 4049, + 4095, 3455, 4046, + 4095, 3464, 4041, + 4095, 3476, 4036, + 4095, 3492, 4028, + 4095, 3513, 4017, + 4095, 3539, 4003, + 4095, 3572, 3982, + 4067, 3612, 3954, + 4024, 3661, 3913, + 3961, 3719, 3851, + 3858, 3787, 3752, + 3671, 3864, 3575, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3486, 4095, + 4095, 3486, 4095, + 4095, 3486, 4095, + 4095, 3487, 4095, + 4095, 3488, 4095, + 4095, 3489, 4095, + 4095, 3491, 4095, + 4095, 3493, 4095, + 4095, 3495, 4095, + 4095, 3499, 4095, + 4095, 3504, 4095, + 4095, 3510, 4095, + 4095, 3519, 4095, + 4095, 3530, 4095, + 4095, 3544, 4095, + 4095, 3562, 4095, + 4095, 3586, 4095, + 4095, 3615, 4095, + 4095, 3652, 4077, + 4095, 3697, 4046, + 4095, 3751, 4001, + 4095, 3814, 3932, + 4014, 3887, 3821, + 0, 3316, 3586, + 0, 3316, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3318, 3584, + 0, 3318, 3584, + 0, 3319, 3583, + 0, 3320, 3582, + 0, 3321, 3581, + 0, 3323, 3580, + 0, 3325, 3578, + 0, 3328, 3575, + 0, 3332, 3571, + 0, 3337, 3566, + 0, 3344, 3559, + 0, 3353, 3550, + 0, 3365, 3537, + 0, 3380, 3520, + 0, 3400, 3495, + 0, 3425, 3460, + 0, 3456, 3408, + 0, 3495, 3328, + 0, 3543, 3193, + 0, 3599, 2911, + 0, 3665, 0, + 0, 3740, 0, + 0, 3825, 0, + 0, 3316, 3586, + 0, 3316, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3318, 3585, + 0, 3318, 3584, + 0, 3319, 3583, + 0, 3320, 3583, + 0, 3321, 3581, + 0, 3323, 3580, + 0, 3325, 3578, + 0, 3328, 3575, + 0, 3332, 3571, + 0, 3337, 3566, + 0, 3344, 3559, + 0, 3353, 3550, + 0, 3365, 3537, + 0, 3380, 3520, + 0, 3400, 3495, + 0, 3425, 3460, + 0, 3456, 3408, + 0, 3495, 3328, + 0, 3543, 3193, + 0, 3599, 2911, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3316, 3586, + 0, 3316, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3318, 3585, + 0, 3318, 3585, + 0, 3318, 3584, + 0, 3319, 3583, + 0, 3320, 3583, + 0, 3321, 3581, + 0, 3323, 3580, + 0, 3325, 3578, + 0, 3328, 3575, + 0, 3332, 3571, + 0, 3337, 3566, + 0, 3344, 3560, + 0, 3353, 3550, + 0, 3365, 3538, + 0, 3380, 3520, + 0, 3400, 3495, + 0, 3425, 3460, + 0, 3456, 3408, + 0, 3495, 3329, + 0, 3543, 3194, + 0, 3599, 2911, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3316, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3318, 3585, + 0, 3318, 3585, + 0, 3318, 3584, + 0, 3319, 3584, + 0, 3320, 3583, + 0, 3321, 3582, + 0, 3323, 3580, + 0, 3325, 3578, + 0, 3328, 3575, + 0, 3332, 3571, + 0, 3337, 3566, + 0, 3344, 3560, + 0, 3353, 3550, + 0, 3365, 3538, + 0, 3380, 3520, + 0, 3400, 3495, + 0, 3425, 3460, + 0, 3456, 3409, + 0, 3495, 3329, + 0, 3543, 3194, + 0, 3599, 2912, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3585, + 0, 3318, 3585, + 0, 3318, 3585, + 0, 3318, 3584, + 0, 3319, 3584, + 0, 3320, 3583, + 0, 3321, 3582, + 0, 3323, 3580, + 0, 3325, 3578, + 0, 3328, 3575, + 0, 3332, 3572, + 0, 3337, 3567, + 0, 3344, 3560, + 0, 3353, 3551, + 0, 3365, 3538, + 0, 3380, 3520, + 0, 3400, 3496, + 0, 3425, 3460, + 0, 3456, 3409, + 0, 3495, 3329, + 0, 3543, 3194, + 0, 3599, 2912, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3318, 3585, + 0, 3318, 3585, + 0, 3319, 3584, + 0, 3319, 3584, + 0, 3320, 3583, + 0, 3321, 3582, + 0, 3323, 3580, + 0, 3325, 3578, + 0, 3328, 3576, + 0, 3332, 3572, + 0, 3337, 3567, + 0, 3344, 3560, + 0, 3353, 3551, + 0, 3365, 3538, + 0, 3380, 3520, + 0, 3400, 3496, + 0, 3425, 3461, + 0, 3456, 3409, + 0, 3495, 3329, + 0, 3543, 3194, + 0, 3599, 2913, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3318, 3586, + 0, 3318, 3585, + 0, 3319, 3585, + 0, 3319, 3584, + 0, 3320, 3583, + 0, 3321, 3582, + 0, 3323, 3581, + 0, 3325, 3579, + 0, 3328, 3576, + 0, 3332, 3572, + 0, 3337, 3567, + 0, 3344, 3560, + 0, 3353, 3551, + 0, 3365, 3538, + 0, 3380, 3521, + 0, 3400, 3496, + 0, 3425, 3461, + 0, 3456, 3409, + 0, 3495, 3330, + 0, 3543, 3195, + 0, 3599, 2914, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3318, 3586, + 0, 3318, 3585, + 0, 3319, 3585, + 0, 3319, 3584, + 0, 3320, 3584, + 0, 3322, 3582, + 0, 3323, 3581, + 0, 3325, 3579, + 0, 3328, 3576, + 0, 3332, 3572, + 0, 3338, 3567, + 0, 3344, 3561, + 0, 3353, 3551, + 0, 3365, 3539, + 0, 3380, 3521, + 0, 3400, 3496, + 0, 3425, 3461, + 0, 3456, 3410, + 0, 3495, 3330, + 0, 3543, 3196, + 0, 3599, 2915, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3318, 3587, + 0, 3318, 3586, + 0, 3318, 3586, + 0, 3319, 3585, + 0, 3319, 3585, + 0, 3320, 3584, + 0, 3322, 3583, + 0, 3323, 3581, + 0, 3326, 3579, + 0, 3328, 3576, + 0, 3332, 3573, + 0, 3338, 3568, + 0, 3344, 3561, + 0, 3353, 3552, + 0, 3365, 3539, + 0, 3380, 3521, + 0, 3400, 3497, + 0, 3425, 3462, + 0, 3457, 3410, + 0, 3495, 3331, + 0, 3543, 3197, + 0, 3599, 2917, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3318, 3587, + 0, 3318, 3587, + 0, 3318, 3586, + 0, 3319, 3586, + 0, 3320, 3585, + 0, 3321, 3584, + 0, 3322, 3583, + 0, 3323, 3582, + 0, 3326, 3580, + 0, 3329, 3577, + 0, 3333, 3573, + 0, 3338, 3568, + 0, 3345, 3561, + 0, 3354, 3552, + 0, 3365, 3540, + 0, 3381, 3522, + 0, 3400, 3498, + 0, 3425, 3463, + 0, 3457, 3411, + 0, 3496, 3332, + 0, 3543, 3198, + 0, 3599, 2919, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3318, 3588, + 0, 3318, 3588, + 0, 3318, 3587, + 0, 3319, 3587, + 0, 3319, 3587, + 0, 3320, 3586, + 0, 3321, 3585, + 0, 3322, 3584, + 0, 3324, 3583, + 0, 3326, 3580, + 0, 3329, 3578, + 0, 3333, 3574, + 0, 3338, 3569, + 0, 3345, 3562, + 0, 3354, 3553, + 0, 3365, 3540, + 0, 3381, 3523, + 0, 3400, 3498, + 0, 3425, 3464, + 0, 3457, 3412, + 0, 3496, 3333, + 0, 3543, 3200, + 0, 3599, 2922, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3589, + 0, 3317, 3589, + 0, 3317, 3589, + 0, 3317, 3589, + 0, 3318, 3589, + 0, 3318, 3589, + 0, 3318, 3589, + 0, 3318, 3589, + 0, 3318, 3588, + 0, 3319, 3588, + 0, 3319, 3588, + 0, 3320, 3587, + 0, 3321, 3586, + 0, 3322, 3585, + 0, 3324, 3583, + 0, 3326, 3581, + 0, 3329, 3579, + 0, 3333, 3575, + 0, 3338, 3570, + 0, 3345, 3563, + 0, 3354, 3554, + 0, 3366, 3541, + 0, 3381, 3524, + 0, 3401, 3500, + 0, 3426, 3465, + 0, 3457, 3414, + 0, 3496, 3335, + 0, 3543, 3202, + 0, 3600, 2927, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3318, 3591, + 0, 3318, 3591, + 0, 3318, 3591, + 0, 3318, 3590, + 0, 3318, 3590, + 0, 3318, 3590, + 0, 3318, 3590, + 0, 3318, 3590, + 0, 3319, 3590, + 0, 3319, 3589, + 0, 3320, 3589, + 0, 3320, 3588, + 0, 3321, 3587, + 0, 3323, 3586, + 0, 3324, 3585, + 0, 3326, 3583, + 0, 3329, 3580, + 0, 3333, 3576, + 0, 3338, 3571, + 0, 3345, 3565, + 0, 3354, 3555, + 0, 3366, 3543, + 0, 3381, 3525, + 0, 3401, 3501, + 0, 3426, 3466, + 0, 3457, 3415, + 0, 3496, 3337, + 0, 3543, 3205, + 0, 3600, 2932, + 0, 3666, 0, + 0, 3741, 0, + 0, 3826, 0, + 0, 3318, 3592, + 0, 3318, 3592, + 0, 3318, 3592, + 0, 3318, 3592, + 0, 3318, 3592, + 0, 3318, 3592, + 0, 3319, 3592, + 0, 3319, 3592, + 0, 3319, 3591, + 0, 3320, 3591, + 0, 3320, 3591, + 0, 3321, 3590, + 0, 3322, 3589, + 0, 3323, 3588, + 0, 3325, 3586, + 0, 3327, 3584, + 0, 3330, 3582, + 0, 3334, 3578, + 0, 3339, 3573, + 0, 3346, 3566, + 0, 3355, 3557, + 0, 3366, 3545, + 0, 3382, 3527, + 0, 3401, 3503, + 0, 3426, 3469, + 0, 3458, 3418, + 0, 3496, 3340, + 0, 3544, 3209, + 0, 3600, 2939, + 0, 3666, 0, + 0, 3741, 0, + 0, 3826, 0, + 0, 3319, 3595, + 0, 3319, 3595, + 0, 3319, 3594, + 0, 3319, 3594, + 0, 3319, 3594, + 0, 3319, 3594, + 0, 3319, 3594, + 0, 3319, 3594, + 0, 3320, 3594, + 0, 3320, 3593, + 0, 3321, 3593, + 0, 3321, 3592, + 0, 3322, 3591, + 0, 3324, 3590, + 0, 3325, 3589, + 0, 3327, 3587, + 0, 3330, 3584, + 0, 3334, 3580, + 0, 3339, 3575, + 0, 3346, 3569, + 0, 3355, 3560, + 0, 3367, 3547, + 0, 3382, 3530, + 0, 3402, 3506, + 0, 3427, 3472, + 0, 3458, 3421, + 0, 3497, 3344, + 0, 3544, 3214, + 0, 3600, 2948, + 0, 3666, 0, + 0, 3741, 0, + 0, 3826, 0, + 0, 3319, 3598, + 0, 3319, 3597, + 0, 3320, 3597, + 0, 3320, 3597, + 0, 3320, 3597, + 0, 3320, 3597, + 0, 3320, 3597, + 0, 3320, 3597, + 0, 3320, 3597, + 0, 3321, 3596, + 0, 3321, 3596, + 0, 3322, 3595, + 0, 3323, 3594, + 0, 3324, 3593, + 0, 3326, 3592, + 0, 3328, 3590, + 0, 3331, 3587, + 0, 3335, 3583, + 0, 3340, 3579, + 0, 3347, 3572, + 0, 3356, 3563, + 0, 3368, 3550, + 0, 3383, 3533, + 0, 3402, 3510, + 0, 3427, 3475, + 0, 3459, 3426, + 0, 3497, 3349, + 0, 3544, 3221, + 0, 3601, 2961, + 0, 3666, 0, + 0, 3742, 0, + 0, 3826, 0, + 0, 3320, 3601, + 0, 3320, 3601, + 0, 3321, 3601, + 0, 3321, 3601, + 0, 3321, 3601, + 0, 3321, 3601, + 0, 3321, 3601, + 0, 3321, 3601, + 0, 3321, 3601, + 0, 3322, 3600, + 0, 3322, 3600, + 0, 3323, 3599, + 0, 3324, 3598, + 0, 3325, 3597, + 0, 3327, 3596, + 0, 3329, 3594, + 0, 3332, 3591, + 0, 3336, 3587, + 0, 3341, 3583, + 0, 3348, 3576, + 0, 3357, 3567, + 0, 3368, 3555, + 0, 3384, 3538, + 0, 3403, 3514, + 0, 3428, 3481, + 0, 3459, 3431, + 0, 3498, 3356, + 0, 3545, 3230, + 0, 3601, 2976, + 0, 3667, 238, + 0, 3742, 0, + 0, 3826, 0, + 0, 3322, 3607, + 0, 3322, 3607, + 0, 3322, 3607, + 0, 3322, 3607, + 0, 3322, 3606, + 0, 3322, 3606, + 0, 3322, 3606, + 0, 3323, 3606, + 0, 3323, 3606, + 0, 3323, 3605, + 0, 3324, 3605, + 0, 3324, 3604, + 0, 3325, 3604, + 0, 3327, 3603, + 0, 3328, 3601, + 0, 3330, 3599, + 0, 3333, 3596, + 0, 3337, 3593, + 0, 3342, 3588, + 0, 3349, 3582, + 0, 3358, 3573, + 0, 3370, 3561, + 0, 3385, 3544, + 0, 3404, 3521, + 0, 3429, 3487, + 0, 3460, 3439, + 0, 3499, 3365, + 0, 3546, 3241, + 0, 3602, 2997, + 0, 3668, 1599, + 0, 3743, 0, + 0, 3827, 0, + 0, 3324, 3614, + 0, 3324, 3614, + 0, 3324, 3614, + 0, 3324, 3613, + 0, 3324, 3613, + 0, 3324, 3613, + 0, 3324, 3613, + 0, 3324, 3613, + 0, 3325, 3613, + 0, 3325, 3612, + 0, 3326, 3612, + 0, 3326, 3611, + 0, 3327, 3611, + 0, 3328, 3609, + 0, 3330, 3608, + 0, 3332, 3606, + 0, 3335, 3603, + 0, 3339, 3600, + 0, 3344, 3595, + 0, 3351, 3589, + 0, 3360, 3580, + 0, 3371, 3568, + 0, 3386, 3552, + 0, 3406, 3529, + 0, 3431, 3496, + 0, 3462, 3449, + 0, 3500, 3376, + 0, 3547, 3257, + 0, 3603, 3023, + 0, 3668, 1971, + 0, 3743, 0, + 0, 3827, 0, + 0, 3326, 3623, + 0, 3326, 3623, + 0, 3326, 3623, + 0, 3326, 3623, + 0, 3326, 3622, + 0, 3326, 3622, + 0, 3327, 3622, + 0, 3327, 3622, + 0, 3327, 3622, + 0, 3327, 3621, + 0, 3328, 3621, + 0, 3329, 3620, + 0, 3330, 3620, + 0, 3331, 3619, + 0, 3332, 3617, + 0, 3335, 3615, + 0, 3337, 3613, + 0, 3341, 3609, + 0, 3346, 3605, + 0, 3353, 3598, + 0, 3362, 3590, + 0, 3374, 3578, + 0, 3388, 3562, + 0, 3408, 3540, + 0, 3432, 3508, + 0, 3463, 3462, + 0, 3502, 3392, + 0, 3548, 3276, + 0, 3604, 3055, + 0, 3669, 2225, + 0, 3744, 0, + 0, 3828, 0, + 0, 3329, 3635, + 0, 3329, 3635, + 0, 3329, 3634, + 0, 3329, 3634, + 0, 3329, 3634, + 0, 3330, 3634, + 0, 3330, 3634, + 0, 3330, 3634, + 0, 3330, 3634, + 0, 3331, 3633, + 0, 3331, 3633, + 0, 3332, 3632, + 0, 3333, 3632, + 0, 3334, 3631, + 0, 3336, 3629, + 0, 3338, 3627, + 0, 3341, 3625, + 0, 3344, 3622, + 0, 3349, 3617, + 0, 3356, 3611, + 0, 3365, 3603, + 0, 3376, 3591, + 0, 3391, 3576, + 0, 3410, 3554, + 0, 3435, 3523, + 0, 3466, 3479, + 0, 3504, 3411, + 0, 3550, 3301, + 0, 3606, 3095, + 0, 3671, 2431, + 0, 3746, 0, + 0, 3829, 0, + 0, 3333, 3650, + 0, 3333, 3650, + 0, 3334, 3650, + 0, 3334, 3650, + 0, 3334, 3650, + 0, 3334, 3650, + 0, 3334, 3649, + 0, 3334, 3649, + 0, 3334, 3649, + 0, 3335, 3649, + 0, 3335, 3648, + 0, 3336, 3648, + 0, 3337, 3647, + 0, 3338, 3646, + 0, 3340, 3645, + 0, 3342, 3643, + 0, 3345, 3641, + 0, 3349, 3637, + 0, 3354, 3633, + 0, 3360, 3627, + 0, 3369, 3619, + 0, 3380, 3608, + 0, 3395, 3593, + 0, 3414, 3572, + 0, 3438, 3543, + 0, 3469, 3500, + 0, 3507, 3436, + 0, 3553, 3333, + 0, 3608, 3144, + 0, 3673, 2611, + 0, 3747, 0, + 0, 3831, 0, + 0, 3339, 3670, + 0, 3339, 3670, + 0, 3339, 3670, + 0, 3339, 3670, + 0, 3339, 3670, + 0, 3339, 3669, + 0, 3340, 3669, + 0, 3340, 3669, + 0, 3340, 3669, + 0, 3340, 3669, + 0, 3341, 3668, + 0, 3342, 3668, + 0, 3343, 3667, + 0, 3344, 3666, + 0, 3345, 3665, + 0, 3347, 3663, + 0, 3350, 3661, + 0, 3354, 3658, + 0, 3359, 3654, + 0, 3365, 3648, + 0, 3374, 3640, + 0, 3385, 3630, + 0, 3400, 3616, + 0, 3419, 3596, + 0, 3443, 3568, + 0, 3473, 3527, + 0, 3511, 3467, + 0, 3556, 3372, + 0, 3611, 3202, + 0, 3676, 2776, + 0, 3750, 0, + 0, 3833, 0, + 1862, 3346, 3695, + 1860, 3347, 3695, + 1858, 3347, 3695, + 1854, 3347, 3695, + 1849, 3347, 3695, + 1842, 3347, 3695, + 1833, 3347, 3695, + 1821, 3347, 3694, + 1803, 3347, 3694, + 1779, 3348, 3694, + 1744, 3348, 3693, + 1694, 3349, 3693, + 1616, 3350, 3692, + 1484, 3351, 3691, + 1214, 3353, 3690, + 0, 3355, 3689, + 0, 3357, 3686, + 0, 3361, 3684, + 0, 3366, 3680, + 0, 3372, 3674, + 0, 3381, 3667, + 0, 3392, 3657, + 0, 3406, 3644, + 0, 3425, 3625, + 0, 3449, 3599, + 0, 3479, 3562, + 0, 3516, 3506, + 0, 3561, 3419, + 0, 3615, 3269, + 0, 3679, 2931, + 0, 3753, 0, + 0, 3835, 0, + 2854, 3356, 3727, + 2854, 3356, 3727, + 2853, 3356, 3726, + 2853, 3356, 3726, + 2853, 3356, 3726, + 2852, 3357, 3726, + 2851, 3357, 3726, + 2849, 3357, 3726, + 2848, 3357, 3726, + 2845, 3358, 3726, + 2842, 3358, 3725, + 2838, 3359, 3725, + 2832, 3360, 3724, + 2824, 3361, 3723, + 2813, 3362, 3722, + 2798, 3364, 3721, + 2778, 3367, 3719, + 2749, 3371, 3716, + 2706, 3375, 3712, + 2643, 3382, 3707, + 2542, 3390, 3701, + 2357, 3401, 3692, + 1850, 3415, 3679, + 0, 3433, 3662, + 0, 3456, 3638, + 0, 3486, 3604, + 0, 3522, 3553, + 0, 3567, 3476, + 0, 3621, 3346, + 0, 3684, 3080, + 0, 3757, 0, + 0, 3838, 0, + 3210, 3369, 3766, + 3209, 3369, 3766, + 3209, 3369, 3766, + 3209, 3369, 3766, + 3209, 3369, 3766, + 3209, 3369, 3765, + 3208, 3369, 3765, + 3207, 3370, 3765, + 3207, 3370, 3765, + 3206, 3370, 3765, + 3204, 3371, 3764, + 3202, 3371, 3764, + 3200, 3372, 3763, + 3196, 3373, 3763, + 3191, 3375, 3762, + 3185, 3377, 3760, + 3176, 3379, 3758, + 3164, 3383, 3756, + 3148, 3387, 3753, + 3125, 3394, 3748, + 3092, 3402, 3742, + 3045, 3412, 3734, + 2972, 3426, 3722, + 2852, 3444, 3707, + 2617, 3467, 3685, + 1537, 3495, 3654, + 0, 3531, 3609, + 0, 3575, 3542, + 0, 3628, 3431, + 0, 3690, 3224, + 0, 3762, 2549, + 0, 3843, 0, + 3457, 3385, 3813, + 3457, 3385, 3813, + 3457, 3385, 3813, + 3457, 3385, 3813, + 3457, 3385, 3813, + 3457, 3386, 3813, + 3457, 3386, 3813, + 3456, 3386, 3813, + 3456, 3386, 3813, + 3455, 3387, 3812, + 3454, 3387, 3812, + 3453, 3388, 3812, + 3452, 3388, 3811, + 3450, 3389, 3811, + 3447, 3391, 3810, + 3443, 3393, 3808, + 3439, 3395, 3807, + 3432, 3399, 3805, + 3423, 3403, 3802, + 3410, 3409, 3797, + 3393, 3417, 3792, + 3369, 3427, 3785, + 3335, 3441, 3774, + 3285, 3458, 3761, + 3208, 3480, 3741, + 3079, 3508, 3714, + 2817, 3543, 3675, + 0, 3586, 3617, + 0, 3637, 3526, + 0, 3698, 3365, + 0, 3769, 2984, + 0, 3849, 0, + 3660, 3406, 3870, + 3660, 3406, 3870, + 3660, 3406, 3870, + 3660, 3406, 3870, + 3660, 3407, 3870, + 3660, 3407, 3870, + 3660, 3407, 3870, + 3660, 3407, 3870, + 3659, 3407, 3869, + 3659, 3408, 3869, + 3658, 3408, 3869, + 3658, 3409, 3869, + 3657, 3409, 3868, + 3655, 3410, 3868, + 3654, 3412, 3867, + 3651, 3414, 3866, + 3648, 3416, 3864, + 3644, 3419, 3862, + 3638, 3424, 3860, + 3631, 3429, 3856, + 3620, 3437, 3851, + 3606, 3446, 3845, + 3586, 3459, 3836, + 3558, 3476, 3824, + 3517, 3497, 3807, + 3456, 3524, 3784, + 3360, 3558, 3750, + 3187, 3599, 3702, + 2750, 3650, 3627, + 0, 3709, 3503, + 0, 3778, 3257, + 0, 3856, 1771, + 3839, 3433, 3936, + 3839, 3433, 3936, + 3839, 3433, 3936, + 3839, 3433, 3936, + 3839, 3433, 3936, + 3839, 3433, 3936, + 3838, 3433, 3936, + 3838, 3434, 3936, + 3838, 3434, 3936, + 3838, 3434, 3936, + 3838, 3435, 3935, + 3837, 3435, 3935, + 3836, 3436, 3935, + 3836, 3437, 3934, + 3834, 3438, 3933, + 3833, 3440, 3932, + 3831, 3442, 3931, + 3828, 3445, 3930, + 3824, 3449, 3927, + 3819, 3455, 3924, + 3812, 3462, 3920, + 3803, 3471, 3914, + 3790, 3483, 3907, + 3772, 3499, 3897, + 3747, 3519, 3882, + 3712, 3545, 3863, + 3659, 3577, 3835, + 3578, 3617, 3795, + 3440, 3665, 3735, + 3149, 3723, 3640, + 0, 3790, 3472, + 0, 3867, 3056, + 4003, 3467, 4012, + 4003, 3467, 4012, + 4003, 3467, 4012, + 4003, 3467, 4012, + 4003, 3467, 4012, + 4003, 3467, 4012, + 4003, 3467, 4012, + 4002, 3467, 4012, + 4002, 3467, 4012, + 4002, 3468, 4011, + 4002, 3468, 4011, + 4002, 3468, 4011, + 4001, 3469, 4011, + 4001, 3470, 4010, + 4000, 3471, 4010, + 3999, 3473, 4009, + 3997, 3475, 4008, + 3995, 3478, 4006, + 3993, 3482, 4004, + 3989, 3487, 4002, + 3984, 3493, 3998, + 3978, 3502, 3994, + 3969, 3513, 3987, + 3957, 3528, 3979, + 3941, 3547, 3967, + 3918, 3571, 3950, + 3886, 3602, 3928, + 3838, 3640, 3895, + 3765, 3686, 3848, + 3646, 3741, 3776, + 3411, 3806, 3657, + 2348, 3880, 3426, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3509, 4095, + 4095, 3509, 4095, + 4095, 3509, 4095, + 4095, 3510, 4095, + 4095, 3511, 4095, + 4095, 3512, 4095, + 4095, 3513, 4094, + 4095, 3515, 4093, + 4095, 3518, 4092, + 4095, 3522, 4091, + 4095, 3526, 4088, + 4095, 3532, 4086, + 4095, 3540, 4082, + 4095, 3551, 4076, + 4095, 3564, 4069, + 4095, 3582, 4060, + 4095, 3604, 4046, + 4077, 3633, 4028, + 4046, 3668, 4002, + 4002, 3712, 3965, + 3935, 3764, 3911, + 3826, 3826, 3826, + 3621, 3897, 3679, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3559, 4095, + 4095, 3559, 4095, + 4095, 3560, 4095, + 4095, 3560, 4095, + 4095, 3561, 4095, + 4095, 3563, 4095, + 4095, 3564, 4095, + 4095, 3567, 4095, + 4095, 3570, 4095, + 4095, 3574, 4095, + 4095, 3580, 4095, + 4095, 3587, 4095, + 4095, 3596, 4095, + 4095, 3608, 4095, + 4095, 3624, 4095, + 4095, 3645, 4095, + 4095, 3671, 4095, + 4095, 3704, 4095, + 4095, 3744, 4086, + 4095, 3793, 4045, + 4093, 3851, 3983, + 3990, 3919, 3884, + 0, 3448, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3717, + 0, 3449, 3717, + 0, 3449, 3717, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3450, 3716, + 0, 3451, 3715, + 0, 3452, 3715, + 0, 3453, 3713, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3707, + 0, 3464, 3703, + 0, 3469, 3698, + 0, 3476, 3691, + 0, 3485, 3682, + 0, 3497, 3669, + 0, 3512, 3652, + 0, 3532, 3627, + 0, 3557, 3592, + 0, 3588, 3540, + 0, 3627, 3460, + 0, 3675, 3325, + 0, 3731, 3043, + 0, 3797, 0, + 0, 3873, 0, + 0, 3448, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3717, + 0, 3449, 3717, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3451, 3716, + 0, 3451, 3715, + 0, 3452, 3715, + 0, 3453, 3713, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3707, + 0, 3464, 3703, + 0, 3469, 3698, + 0, 3476, 3692, + 0, 3485, 3682, + 0, 3497, 3670, + 0, 3512, 3652, + 0, 3532, 3627, + 0, 3557, 3592, + 0, 3588, 3540, + 0, 3627, 3460, + 0, 3675, 3325, + 0, 3731, 3043, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3717, + 0, 3449, 3717, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3451, 3716, + 0, 3451, 3716, + 0, 3452, 3715, + 0, 3453, 3714, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3707, + 0, 3464, 3703, + 0, 3469, 3698, + 0, 3476, 3692, + 0, 3485, 3682, + 0, 3497, 3670, + 0, 3512, 3652, + 0, 3532, 3627, + 0, 3557, 3592, + 0, 3588, 3540, + 0, 3627, 3461, + 0, 3675, 3326, + 0, 3731, 3043, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3717, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3451, 3716, + 0, 3451, 3716, + 0, 3452, 3715, + 0, 3453, 3714, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3707, + 0, 3464, 3703, + 0, 3469, 3698, + 0, 3476, 3692, + 0, 3485, 3682, + 0, 3497, 3670, + 0, 3512, 3652, + 0, 3532, 3627, + 0, 3557, 3592, + 0, 3588, 3541, + 0, 3627, 3461, + 0, 3675, 3326, + 0, 3731, 3043, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3717, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3451, 3716, + 0, 3451, 3716, + 0, 3452, 3715, + 0, 3453, 3714, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3707, + 0, 3464, 3704, + 0, 3469, 3699, + 0, 3476, 3692, + 0, 3485, 3682, + 0, 3497, 3670, + 0, 3512, 3652, + 0, 3532, 3628, + 0, 3557, 3592, + 0, 3588, 3541, + 0, 3627, 3461, + 0, 3675, 3326, + 0, 3731, 3044, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3451, 3716, + 0, 3451, 3716, + 0, 3452, 3715, + 0, 3453, 3714, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3707, + 0, 3464, 3704, + 0, 3469, 3699, + 0, 3476, 3692, + 0, 3485, 3683, + 0, 3497, 3670, + 0, 3512, 3652, + 0, 3532, 3628, + 0, 3557, 3593, + 0, 3588, 3541, + 0, 3627, 3461, + 0, 3675, 3326, + 0, 3731, 3044, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3451, 3717, + 0, 3451, 3716, + 0, 3452, 3715, + 0, 3454, 3714, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3708, + 0, 3464, 3704, + 0, 3469, 3699, + 0, 3476, 3692, + 0, 3485, 3683, + 0, 3497, 3670, + 0, 3512, 3653, + 0, 3532, 3628, + 0, 3557, 3593, + 0, 3588, 3541, + 0, 3627, 3461, + 0, 3675, 3327, + 0, 3731, 3045, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3450, 3718, + 0, 3450, 3717, + 0, 3451, 3717, + 0, 3451, 3716, + 0, 3452, 3715, + 0, 3454, 3714, + 0, 3455, 3713, + 0, 3457, 3711, + 0, 3460, 3708, + 0, 3464, 3704, + 0, 3470, 3699, + 0, 3476, 3692, + 0, 3485, 3683, + 0, 3497, 3670, + 0, 3512, 3653, + 0, 3532, 3628, + 0, 3557, 3593, + 0, 3589, 3541, + 0, 3627, 3462, + 0, 3675, 3327, + 0, 3731, 3046, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3718, + 0, 3450, 3718, + 0, 3450, 3718, + 0, 3450, 3718, + 0, 3451, 3717, + 0, 3451, 3716, + 0, 3452, 3716, + 0, 3454, 3714, + 0, 3455, 3713, + 0, 3458, 3711, + 0, 3460, 3708, + 0, 3464, 3704, + 0, 3470, 3699, + 0, 3476, 3693, + 0, 3485, 3683, + 0, 3497, 3671, + 0, 3512, 3653, + 0, 3532, 3629, + 0, 3557, 3593, + 0, 3589, 3542, + 0, 3627, 3462, + 0, 3675, 3328, + 0, 3731, 3047, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3450, 3719, + 0, 3450, 3718, + 0, 3450, 3718, + 0, 3451, 3718, + 0, 3452, 3717, + 0, 3452, 3716, + 0, 3454, 3715, + 0, 3455, 3713, + 0, 3458, 3711, + 0, 3461, 3709, + 0, 3465, 3705, + 0, 3470, 3700, + 0, 3477, 3693, + 0, 3486, 3684, + 0, 3497, 3671, + 0, 3513, 3654, + 0, 3532, 3629, + 0, 3557, 3594, + 0, 3589, 3542, + 0, 3628, 3463, + 0, 3675, 3329, + 0, 3731, 3049, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3719, + 0, 3450, 3719, + 0, 3450, 3719, + 0, 3450, 3719, + 0, 3450, 3719, + 0, 3451, 3718, + 0, 3452, 3717, + 0, 3453, 3717, + 0, 3454, 3715, + 0, 3456, 3714, + 0, 3458, 3712, + 0, 3461, 3709, + 0, 3465, 3705, + 0, 3470, 3700, + 0, 3477, 3694, + 0, 3486, 3684, + 0, 3497, 3672, + 0, 3513, 3654, + 0, 3532, 3630, + 0, 3557, 3595, + 0, 3589, 3543, + 0, 3628, 3464, + 0, 3675, 3330, + 0, 3731, 3051, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3721, + 0, 3449, 3721, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3450, 3720, + 0, 3450, 3720, + 0, 3450, 3720, + 0, 3450, 3720, + 0, 3451, 3719, + 0, 3451, 3719, + 0, 3452, 3718, + 0, 3453, 3717, + 0, 3454, 3716, + 0, 3456, 3715, + 0, 3458, 3713, + 0, 3461, 3710, + 0, 3465, 3706, + 0, 3470, 3701, + 0, 3477, 3694, + 0, 3486, 3685, + 0, 3498, 3672, + 0, 3513, 3655, + 0, 3532, 3631, + 0, 3557, 3596, + 0, 3589, 3544, + 0, 3628, 3465, + 0, 3675, 3332, + 0, 3731, 3055, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3721, + 0, 3449, 3721, + 0, 3449, 3721, + 0, 3450, 3721, + 0, 3450, 3721, + 0, 3450, 3721, + 0, 3450, 3721, + 0, 3450, 3721, + 0, 3450, 3721, + 0, 3450, 3721, + 0, 3451, 3720, + 0, 3451, 3720, + 0, 3452, 3719, + 0, 3453, 3718, + 0, 3454, 3717, + 0, 3456, 3716, + 0, 3458, 3714, + 0, 3461, 3711, + 0, 3465, 3707, + 0, 3470, 3702, + 0, 3477, 3695, + 0, 3486, 3686, + 0, 3498, 3674, + 0, 3513, 3656, + 0, 3533, 3632, + 0, 3558, 3597, + 0, 3589, 3546, + 0, 3628, 3467, + 0, 3675, 3334, + 0, 3732, 3059, + 0, 3798, 0, + 0, 3873, 0, + 0, 3450, 3723, + 0, 3450, 3723, + 0, 3450, 3723, + 0, 3450, 3723, + 0, 3450, 3723, + 0, 3450, 3723, + 0, 3450, 3722, + 0, 3450, 3722, + 0, 3451, 3722, + 0, 3451, 3722, + 0, 3451, 3721, + 0, 3452, 3721, + 0, 3452, 3720, + 0, 3453, 3719, + 0, 3455, 3718, + 0, 3456, 3717, + 0, 3458, 3715, + 0, 3461, 3712, + 0, 3465, 3708, + 0, 3471, 3703, + 0, 3477, 3697, + 0, 3486, 3687, + 0, 3498, 3675, + 0, 3513, 3658, + 0, 3533, 3633, + 0, 3558, 3599, + 0, 3589, 3548, + 0, 3628, 3469, + 0, 3675, 3337, + 0, 3732, 3064, + 0, 3798, 0, + 0, 3873, 0, + 0, 3450, 3724, + 0, 3450, 3724, + 0, 3450, 3724, + 0, 3450, 3724, + 0, 3450, 3724, + 0, 3450, 3724, + 0, 3451, 3724, + 0, 3451, 3724, + 0, 3451, 3724, + 0, 3451, 3723, + 0, 3452, 3723, + 0, 3452, 3723, + 0, 3453, 3722, + 0, 3454, 3721, + 0, 3455, 3720, + 0, 3457, 3719, + 0, 3459, 3717, + 0, 3462, 3714, + 0, 3466, 3710, + 0, 3471, 3705, + 0, 3478, 3698, + 0, 3487, 3689, + 0, 3498, 3677, + 0, 3514, 3659, + 0, 3533, 3635, + 0, 3558, 3601, + 0, 3590, 3550, + 0, 3628, 3472, + 0, 3676, 3341, + 0, 3732, 3071, + 0, 3798, 0, + 0, 3873, 0, + 0, 3451, 3727, + 0, 3451, 3727, + 0, 3451, 3727, + 0, 3451, 3727, + 0, 3451, 3727, + 0, 3451, 3726, + 0, 3451, 3726, + 0, 3451, 3726, + 0, 3452, 3726, + 0, 3452, 3726, + 0, 3452, 3725, + 0, 3453, 3725, + 0, 3453, 3724, + 0, 3454, 3723, + 0, 3456, 3722, + 0, 3457, 3721, + 0, 3459, 3719, + 0, 3462, 3716, + 0, 3466, 3712, + 0, 3471, 3708, + 0, 3478, 3701, + 0, 3487, 3692, + 0, 3499, 3679, + 0, 3514, 3662, + 0, 3534, 3638, + 0, 3559, 3604, + 0, 3590, 3553, + 0, 3629, 3476, + 0, 3676, 3346, + 0, 3732, 3081, + 0, 3798, 0, + 0, 3873, 0, + 0, 3451, 3730, + 0, 3452, 3730, + 0, 3452, 3730, + 0, 3452, 3730, + 0, 3452, 3729, + 0, 3452, 3729, + 0, 3452, 3729, + 0, 3452, 3729, + 0, 3452, 3729, + 0, 3453, 3729, + 0, 3453, 3728, + 0, 3453, 3728, + 0, 3454, 3727, + 0, 3455, 3726, + 0, 3456, 3725, + 0, 3458, 3724, + 0, 3460, 3722, + 0, 3463, 3719, + 0, 3467, 3716, + 0, 3472, 3711, + 0, 3479, 3704, + 0, 3488, 3695, + 0, 3500, 3683, + 0, 3515, 3666, + 0, 3534, 3642, + 0, 3559, 3608, + 0, 3591, 3558, + 0, 3629, 3481, + 0, 3676, 3353, + 0, 3733, 3093, + 0, 3798, 0, + 0, 3874, 0, + 0, 3453, 3734, + 0, 3453, 3734, + 0, 3453, 3734, + 0, 3453, 3734, + 0, 3453, 3733, + 0, 3453, 3733, + 0, 3453, 3733, + 0, 3453, 3733, + 0, 3453, 3733, + 0, 3454, 3733, + 0, 3454, 3732, + 0, 3454, 3732, + 0, 3455, 3731, + 0, 3456, 3730, + 0, 3457, 3729, + 0, 3459, 3728, + 0, 3461, 3726, + 0, 3464, 3723, + 0, 3468, 3720, + 0, 3473, 3715, + 0, 3480, 3708, + 0, 3489, 3699, + 0, 3501, 3687, + 0, 3516, 3670, + 0, 3535, 3646, + 0, 3560, 3613, + 0, 3591, 3563, + 0, 3630, 3488, + 0, 3677, 3362, + 0, 3733, 3109, + 0, 3799, 370, + 0, 3874, 0, + 0, 3454, 3739, + 0, 3454, 3739, + 0, 3454, 3739, + 0, 3454, 3739, + 0, 3454, 3739, + 0, 3454, 3739, + 0, 3454, 3738, + 0, 3454, 3738, + 0, 3455, 3738, + 0, 3455, 3738, + 0, 3455, 3738, + 0, 3456, 3737, + 0, 3457, 3737, + 0, 3457, 3736, + 0, 3459, 3735, + 0, 3460, 3733, + 0, 3463, 3731, + 0, 3465, 3729, + 0, 3469, 3725, + 0, 3474, 3720, + 0, 3481, 3714, + 0, 3490, 3705, + 0, 3502, 3693, + 0, 3517, 3676, + 0, 3536, 3653, + 0, 3561, 3620, + 0, 3592, 3571, + 0, 3631, 3497, + 0, 3678, 3374, + 0, 3734, 3129, + 0, 3800, 1731, + 0, 3875, 0, + 0, 3456, 3746, + 0, 3456, 3746, + 0, 3456, 3746, + 0, 3456, 3746, + 0, 3456, 3746, + 0, 3456, 3745, + 0, 3456, 3745, + 0, 3456, 3745, + 0, 3456, 3745, + 0, 3457, 3745, + 0, 3457, 3744, + 0, 3458, 3744, + 0, 3458, 3743, + 0, 3459, 3743, + 0, 3460, 3742, + 0, 3462, 3740, + 0, 3464, 3738, + 0, 3467, 3736, + 0, 3471, 3732, + 0, 3476, 3727, + 0, 3483, 3721, + 0, 3492, 3712, + 0, 3503, 3700, + 0, 3518, 3684, + 0, 3538, 3661, + 0, 3563, 3629, + 0, 3594, 3581, + 0, 3632, 3508, + 0, 3679, 3389, + 0, 3735, 3155, + 0, 3800, 2103, + 0, 3875, 0, + 0, 3458, 3755, + 0, 3458, 3755, + 0, 3458, 3755, + 0, 3458, 3755, + 0, 3458, 3755, + 0, 3458, 3755, + 0, 3458, 3754, + 0, 3459, 3754, + 0, 3459, 3754, + 0, 3459, 3754, + 0, 3460, 3754, + 0, 3460, 3753, + 0, 3461, 3753, + 0, 3462, 3752, + 0, 3463, 3751, + 0, 3465, 3749, + 0, 3467, 3747, + 0, 3470, 3745, + 0, 3473, 3741, + 0, 3479, 3737, + 0, 3485, 3731, + 0, 3494, 3722, + 0, 3506, 3710, + 0, 3521, 3694, + 0, 3540, 3672, + 0, 3565, 3640, + 0, 3595, 3594, + 0, 3634, 3524, + 0, 3681, 3409, + 0, 3736, 3187, + 0, 3802, 2357, + 0, 3876, 0, + 0, 3461, 3767, + 0, 3461, 3767, + 0, 3461, 3767, + 0, 3461, 3767, + 0, 3461, 3767, + 0, 3462, 3766, + 0, 3462, 3766, + 0, 3462, 3766, + 0, 3462, 3766, + 0, 3462, 3766, + 0, 3463, 3765, + 0, 3463, 3765, + 0, 3464, 3764, + 0, 3465, 3764, + 0, 3466, 3763, + 0, 3468, 3761, + 0, 3470, 3759, + 0, 3473, 3757, + 0, 3477, 3754, + 0, 3482, 3749, + 0, 3488, 3743, + 0, 3497, 3735, + 0, 3508, 3723, + 0, 3523, 3708, + 0, 3543, 3686, + 0, 3567, 3655, + 0, 3598, 3611, + 0, 3636, 3543, + 0, 3682, 3434, + 0, 3738, 3227, + 0, 3803, 2563, + 0, 3878, 0, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3781, + 0, 3467, 3781, + 0, 3467, 3781, + 0, 3467, 3780, + 0, 3468, 3780, + 0, 3469, 3779, + 0, 3470, 3778, + 0, 3472, 3777, + 0, 3474, 3775, + 0, 3477, 3773, + 0, 3481, 3769, + 0, 3486, 3765, + 0, 3492, 3759, + 0, 3501, 3751, + 0, 3512, 3740, + 0, 3527, 3725, + 0, 3546, 3704, + 0, 3570, 3675, + 0, 3601, 3632, + 0, 3639, 3568, + 0, 3685, 3465, + 0, 3740, 3276, + 0, 3805, 2743, + 0, 3879, 0, + 0, 3471, 3802, + 0, 3471, 3802, + 0, 3471, 3802, + 0, 3471, 3802, + 0, 3471, 3802, + 0, 3471, 3802, + 0, 3472, 3802, + 0, 3472, 3801, + 0, 3472, 3801, + 0, 3472, 3801, + 0, 3473, 3801, + 0, 3473, 3800, + 0, 3474, 3800, + 0, 3475, 3799, + 0, 3476, 3798, + 0, 3477, 3797, + 0, 3480, 3795, + 0, 3482, 3793, + 0, 3486, 3790, + 0, 3491, 3786, + 0, 3498, 3780, + 0, 3506, 3772, + 0, 3517, 3762, + 0, 3532, 3748, + 0, 3551, 3728, + 0, 3575, 3700, + 0, 3605, 3660, + 0, 3643, 3599, + 0, 3689, 3504, + 0, 3743, 3334, + 0, 3808, 2908, + 0, 3882, 0, + 1996, 3479, 3827, + 1994, 3479, 3827, + 1992, 3479, 3827, + 1990, 3479, 3827, + 1986, 3479, 3827, + 1981, 3479, 3827, + 1974, 3479, 3827, + 1965, 3479, 3827, + 1953, 3479, 3826, + 1935, 3480, 3826, + 1911, 3480, 3826, + 1877, 3480, 3826, + 1826, 3481, 3825, + 1748, 3482, 3824, + 1616, 3483, 3824, + 1346, 3485, 3822, + 0, 3487, 3821, + 0, 3490, 3819, + 0, 3493, 3816, + 0, 3498, 3812, + 0, 3505, 3806, + 0, 3513, 3799, + 0, 3524, 3789, + 0, 3538, 3776, + 0, 3557, 3757, + 0, 3581, 3731, + 0, 3611, 3694, + 0, 3648, 3638, + 0, 3693, 3551, + 0, 3748, 3401, + 0, 3811, 3063, + 0, 3885, 0, + 2986, 3488, 3859, + 2986, 3488, 3859, + 2986, 3488, 3859, + 2986, 3488, 3859, + 2985, 3488, 3859, + 2985, 3489, 3858, + 2984, 3489, 3858, + 2983, 3489, 3858, + 2982, 3489, 3858, + 2980, 3489, 3858, + 2977, 3490, 3858, + 2974, 3490, 3857, + 2970, 3491, 3857, + 2964, 3492, 3856, + 2956, 3493, 3855, + 2945, 3494, 3854, + 2931, 3496, 3853, + 2910, 3499, 3851, + 2881, 3503, 3848, + 2839, 3507, 3844, + 2775, 3514, 3839, + 2674, 3522, 3833, + 2489, 3533, 3824, + 1982, 3547, 3811, + 0, 3565, 3794, + 0, 3589, 3770, + 0, 3618, 3736, + 0, 3655, 3685, + 0, 3699, 3608, + 0, 3753, 3478, + 0, 3816, 3212, + 0, 3889, 0, + 3342, 3501, 3898, + 3342, 3501, 3898, + 3342, 3501, 3898, + 3341, 3501, 3898, + 3341, 3501, 3898, + 3341, 3501, 3898, + 3341, 3501, 3898, + 3340, 3501, 3897, + 3340, 3502, 3897, + 3339, 3502, 3897, + 3338, 3502, 3897, + 3336, 3503, 3897, + 3334, 3503, 3896, + 3332, 3504, 3896, + 3328, 3505, 3895, + 3323, 3507, 3894, + 3317, 3509, 3892, + 3308, 3511, 3891, + 3296, 3515, 3888, + 3280, 3520, 3885, + 3257, 3526, 3880, + 3224, 3534, 3874, + 3177, 3544, 3866, + 3104, 3558, 3854, + 2984, 3576, 3839, + 2749, 3599, 3817, + 1669, 3628, 3786, + 0, 3663, 3741, + 0, 3707, 3674, + 0, 3760, 3564, + 0, 3822, 3356, + 0, 3894, 2681, + 3590, 3517, 3945, + 3590, 3517, 3945, + 3590, 3517, 3945, + 3589, 3517, 3945, + 3589, 3518, 3945, + 3589, 3518, 3945, + 3589, 3518, 3945, + 3589, 3518, 3945, + 3588, 3518, 3945, + 3588, 3518, 3945, + 3587, 3519, 3945, + 3586, 3519, 3944, + 3585, 3520, 3944, + 3584, 3520, 3943, + 3582, 3522, 3943, + 3579, 3523, 3942, + 3576, 3525, 3941, + 3571, 3527, 3939, + 3564, 3531, 3937, + 3555, 3535, 3934, + 3543, 3541, 3930, + 3525, 3549, 3924, + 3501, 3559, 3917, + 3467, 3573, 3907, + 3417, 3590, 3893, + 3340, 3612, 3873, + 3211, 3640, 3846, + 2949, 3675, 3807, + 0, 3718, 3749, + 0, 3769, 3658, + 0, 3830, 3497, + 0, 3901, 3116, + 3792, 3538, 4002, + 3792, 3538, 4002, + 3792, 3538, 4002, + 3792, 3539, 4002, + 3792, 3539, 4002, + 3792, 3539, 4002, + 3792, 3539, 4002, + 3792, 3539, 4002, + 3792, 3539, 4002, + 3791, 3539, 4002, + 3791, 3540, 4001, + 3790, 3540, 4001, + 3790, 3541, 4001, + 3789, 3541, 4000, + 3787, 3542, 4000, + 3786, 3544, 3999, + 3783, 3546, 3998, + 3780, 3548, 3996, + 3776, 3551, 3994, + 3770, 3556, 3992, + 3763, 3561, 3988, + 3752, 3569, 3983, + 3738, 3579, 3977, + 3718, 3591, 3968, + 3690, 3608, 3956, + 3649, 3629, 3939, + 3588, 3656, 3916, + 3492, 3690, 3882, + 3319, 3731, 3834, + 2882, 3782, 3759, + 0, 3841, 3636, + 0, 3910, 3389, + 3971, 3565, 4068, + 3971, 3565, 4068, + 3971, 3565, 4068, + 3971, 3565, 4068, + 3971, 3565, 4068, + 3971, 3565, 4068, + 3971, 3565, 4068, + 3971, 3566, 4068, + 3970, 3566, 4068, + 3970, 3566, 4068, + 3970, 3566, 4068, + 3970, 3567, 4067, + 3969, 3567, 4067, + 3968, 3568, 4067, + 3968, 3569, 4066, + 3966, 3570, 4066, + 3965, 3572, 4065, + 3963, 3574, 4063, + 3960, 3577, 4062, + 3956, 3581, 4059, + 3951, 3587, 4056, + 3944, 3594, 4052, + 3935, 3603, 4047, + 3922, 3615, 4039, + 3904, 3631, 4029, + 3879, 3651, 4014, + 3844, 3677, 3995, + 3791, 3709, 3967, + 3710, 3749, 3927, + 3572, 3797, 3867, + 3281, 3855, 3772, + 0, 3922, 3604, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3600, 4095, + 4095, 3600, 4095, + 4095, 3601, 4095, + 4095, 3601, 4095, + 4095, 3602, 4095, + 4095, 3603, 4095, + 4095, 3605, 4095, + 4095, 3607, 4095, + 4095, 3610, 4095, + 4095, 3614, 4095, + 4095, 3619, 4095, + 4095, 3625, 4095, + 4095, 3634, 4095, + 4095, 3645, 4095, + 4090, 3660, 4095, + 4073, 3679, 4095, + 4050, 3703, 4083, + 4018, 3734, 4060, + 3970, 3772, 4027, + 3897, 3818, 3980, + 3778, 3873, 3908, + 3543, 3938, 3789, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3641, 4095, + 4095, 3641, 4095, + 4095, 3641, 4095, + 4095, 3642, 4095, + 4095, 3642, 4095, + 4095, 3643, 4095, + 4095, 3644, 4095, + 4095, 3646, 4095, + 4095, 3648, 4095, + 4095, 3650, 4095, + 4095, 3654, 4095, + 4095, 3658, 4095, + 4095, 3664, 4095, + 4095, 3672, 4095, + 4095, 3683, 4095, + 4095, 3696, 4095, + 4095, 3714, 4095, + 4095, 3736, 4095, + 4095, 3765, 4095, + 4095, 3800, 4095, + 4095, 3844, 4095, + 4067, 3896, 4043, + 3958, 3958, 3958 +] + } +} diff --git a/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Photoshop/inv-Log2-48nits/Test_3DL_32_LUT.azasset b/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Photoshop/inv-Log2-48nits/Test_3DL_32_LUT.azasset new file mode 100644 index 0000000000..b643955084 --- /dev/null +++ b/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Photoshop/inv-Log2-48nits/Test_3DL_32_LUT.azasset @@ -0,0 +1,4922 @@ +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "LookupTableAsset", + "ClassData": { + "Name": "LookupTable", + "Intervals": [0, 64, 128, 192, 256, 320, 384, 448, 512, 575, 639, 703, 767, 831, 895, 959, 1023], + "Values": [128, 193, 337, +96, 193, 353, +145, 241, 418, +177, 273, 514, +225, 273, 562, +337, 337, 707, +385, 385, 803, +450, 450, 883, +562, 514, 996, +594, 578, 1108, +691, 658, 1220, +739, 723, 1317, +803, 787, 1429, +915, 867, 1574, +980, 915, 1638, +1028, 996, 1766, +1092, 1044, 1847, +257, 353, 401, +289, 353, 434, +305, 369, 514, +273, 385, 594, +321, 385, 642, +353, 466, 771, +434, 482, 835, +498, 562, 964, +562, 594, 1060, +642, 658, 1140, +691, 723, 1253, +755, 787, 1349, +851, 835, 1477, +899, 899, 1574, +947, 964, 1670, +1044, 1044, 1783, +1124, 1076, 1863, +337, 530, 482, +385, 546, 530, +401, 562, 594, +401, 562, 691, +434, 594, 771, +450, 642, 867, +482, 642, 931, +562, 674, 1028, +610, 739, 1108, +658, 771, 1204, +739, 819, 1317, +851, 899, 1445, +867, 915, 1510, +947, 980, 1590, +1012, 1044, 1718, +1060, 1076, 1815, +1140, 1140, 1927, +466, 771, 642, +482, 771, 691, +482, 771, 755, +514, 787, 803, +514, 803, 915, +578, 803, 964, +626, 851, 1044, +658, 867, 1124, +707, 899, 1220, +771, 931, 1301, +787, 947, 1381, +883, 1012, 1477, +931, 1044, 1590, +1012, 1108, 1686, +1044, 1140, 1766, +1140, 1204, 1879, +1188, 1253, 1991, +691, 1012, 755, +674, 1012, 803, +674, 980, 883, +658, 980, 947, +658, 1012, 980, +642, 1012, 1092, +707, 1012, 1156, +755, 1060, 1269, +771, 1060, 1317, +835, 1108, 1397, +931, 1156, 1510, +947, 1156, 1574, +980, 1188, 1654, +1076, 1237, 1783, +1140, 1285, 1863, +1188, 1301, 1911, +1237, 1349, 2023, +851, 1220, 899, +803, 1204, 931, +835, 1204, 996, +819, 1204, 1060, +835, 1204, 1124, +867, 1204, 1156, +883, 1220, 1253, +899, 1237, 1349, +931, 1253, 1429, +996, 1269, 1510, +996, 1317, 1590, +1060, 1349, 1670, +1124, 1349, 1750, +1156, 1397, 1847, +1253, 1429, 1943, +1285, 1461, 2039, +1333, 1477, 2104, +980, 1413, 1012, +980, 1429, 1060, +980, 1413, 1108, +980, 1413, 1172, +996, 1397, 1237, +1012, 1429, 1333, +1044, 1429, 1365, +1076, 1445, 1445, +1044, 1445, 1526, +1124, 1477, 1622, +1140, 1493, 1702, +1156, 1493, 1750, +1188, 1558, 1863, +1285, 1558, 1943, +1349, 1590, 2023, +1381, 1622, 2104, +1461, 1654, 2216, +1156, 1606, 1124, +1140, 1622, 1172, +1140, 1606, 1253, +1172, 1622, 1317, +1188, 1622, 1381, +1172, 1638, 1445, +1188, 1638, 1510, +1220, 1638, 1542, +1237, 1638, 1606, +1301, 1654, 1718, +1333, 1670, 1799, +1365, 1702, 1879, +1397, 1734, 1975, +1429, 1734, 2039, +1477, 1766, 2104, +1526, 1815, 2216, +1558, 1831, 2296, +1317, 1815, 1285, +1285, 1831, 1317, +1301, 1831, 1365, +1317, 1815, 1397, +1333, 1799, 1445, +1349, 1831, 1542, +1381, 1831, 1622, +1381, 1815, 1654, +1413, 1863, 1734, +1461, 1863, 1799, +1477, 1863, 1895, +1510, 1895, 1991, +1542, 1895, 2023, +1638, 1943, 2136, +1670, 1927, 2184, +1670, 1943, 2264, +1734, 1991, 2377, +1542, 2007, 1381, +1510, 2023, 1381, +1526, 2023, 1445, +1542, 2023, 1526, +1542, 2007, 1590, +1574, 2023, 1654, +1558, 2023, 1686, +1606, 2039, 1766, +1606, 2023, 1815, +1654, 2056, 1863, +1686, 2072, 1943, +1718, 2088, 2072, +1734, 2104, 2168, +1766, 2120, 2248, +1847, 2136, 2296, +1927, 2152, 2361, +1975, 2184, 2457, +1734, 2232, 1493, +1766, 2248, 1510, +1734, 2232, 1526, +1766, 2248, 1590, +1766, 2232, 1686, +1815, 2232, 1766, +1799, 2232, 1815, +1847, 2264, 1927, +1831, 2264, 1927, +1879, 2280, 2007, +1895, 2280, 2072, +1911, 2280, 2136, +1959, 2312, 2232, +1975, 2329, 2345, +2023, 2361, 2425, +2072, 2329, 2441, +2104, 2361, 2537, +1975, 2457, 1654, +1943, 2457, 1638, +1959, 2457, 1670, +1975, 2441, 1734, +1991, 2441, 1799, +2007, 2441, 1895, +2023, 2441, 1943, +2023, 2441, 1991, +2023, 2441, 2072, +2072, 2473, 2168, +2104, 2473, 2200, +2120, 2473, 2264, +2184, 2489, 2296, +2216, 2505, 2377, +2200, 2521, 2537, +2248, 2553, 2634, +2264, 2537, 2682, +2152, 2650, 1734, +2168, 2634, 1783, +2120, 2650, 1815, +2136, 2650, 1879, +2168, 2650, 1959, +2200, 2650, 2023, +2216, 2650, 2088, +2200, 2666, 2120, +2248, 2682, 2200, +2232, 2682, 2264, +2248, 2682, 2329, +2280, 2682, 2377, +2312, 2698, 2457, +2345, 2714, 2537, +2361, 2714, 2602, +2393, 2730, 2714, +2425, 2762, 2810, +2312, 2858, 1895, +2329, 2858, 1895, +2329, 2875, 1959, +2296, 2858, 1991, +2329, 2875, 2056, +2345, 2858, 2120, +2377, 2875, 2184, +2377, 2875, 2296, +2393, 2891, 2329, +2409, 2875, 2361, +2473, 2875, 2441, +2441, 2875, 2489, +2489, 2891, 2553, +2521, 2907, 2618, +2537, 2907, 2698, +2585, 2923, 2778, +2618, 2955, 2907, +2553, 3067, 2023, +2537, 3067, 2056, +2489, 3067, 2088, +2521, 3067, 2120, +2537, 3051, 2184, +2537, 3051, 2280, +2585, 3067, 2312, +2602, 3051, 2377, +2602, 3083, 2425, +2602, 3067, 2505, +2618, 3083, 2553, +2634, 3083, 2618, +2666, 3083, 2666, +2698, 3083, 2714, +2730, 3115, 2794, +2746, 3115, 2907, +2778, 3131, 2987, +2714, 3276, 2184, +2714, 3276, 2216, +2682, 3292, 2232, +2698, 3292, 2280, +2698, 3292, 2296, +2746, 3276, 2393, +2730, 3292, 2457, +2762, 3292, 2521, +2762, 3276, 2585, +2778, 3260, 2634, +2746, 3260, 2698, +2810, 3276, 2746, +2842, 3292, 2842, +2826, 3292, 2858, +2858, 3292, 2907, +2875, 3308, 3003, +2923, 3324, 3067, +2891, 3501, 2345, +2891, 3485, 2377, +2875, 3485, 2361, +2842, 3501, 2377, +2858, 3485, 2425, +2907, 3501, 2521, +2907, 3485, 2602, +2939, 3485, 2650, +2939, 3469, 2698, +2955, 3501, 2762, +2955, 3485, 2810, +3035, 3485, 2891, +3019, 3501, 2971, +3067, 3517, 3051, +3067, 3517, 3115, +3115, 3533, 3164, +3099, 3549, 3244, +273, 225, 353, +273, 241, 385, +225, 273, 450, +257, 257, 514, +305, 321, 626, +369, 353, 707, +434, 434, 819, +498, 482, 915, +562, 562, 1028, +594, 594, 1124, +723, 658, 1220, +755, 723, 1333, +819, 819, 1445, +899, 883, 1590, +980, 915, 1638, +1060, 1012, 1750, +1108, 1060, 1863, +337, 353, 401, +337, 369, 450, +321, 401, 546, +337, 401, 594, +369, 434, 707, +418, 466, 771, +466, 514, 867, +546, 578, 996, +578, 626, 1076, +691, 674, 1156, +723, 739, 1269, +755, 803, 1365, +867, 851, 1493, +931, 915, 1558, +996, 980, 1670, +1060, 1044, 1783, +1124, 1076, 1863, +434, 546, 482, +418, 562, 546, +466, 594, 626, +466, 594, 707, +466, 642, 819, +482, 642, 867, +514, 674, 964, +578, 707, 1028, +626, 755, 1140, +707, 787, 1220, +755, 835, 1333, +835, 883, 1429, +915, 931, 1510, +947, 996, 1606, +1028, 1060, 1734, +1076, 1076, 1799, +1140, 1140, 1927, +562, 771, 594, +530, 787, 707, +546, 803, 771, +578, 803, 803, +578, 803, 867, +594, 819, 980, +642, 867, 1076, +658, 883, 1140, +739, 915, 1237, +771, 931, 1301, +787, 980, 1413, +883, 1012, 1493, +947, 1060, 1574, +996, 1108, 1670, +1060, 1140, 1783, +1140, 1204, 1879, +1220, 1237, 1991, +723, 996, 755, +691, 996, 819, +707, 996, 883, +674, 1012, 964, +707, 1012, 996, +723, 1028, 1092, +723, 1044, 1172, +787, 1060, 1253, +819, 1092, 1317, +851, 1124, 1413, +931, 1156, 1510, +964, 1172, 1590, +1012, 1172, 1654, +1076, 1237, 1783, +1140, 1285, 1863, +1220, 1333, 1943, +1285, 1349, 2039, +851, 1220, 867, +835, 1220, 931, +835, 1220, 996, +835, 1220, 1076, +851, 1204, 1140, +867, 1204, 1156, +883, 1220, 1253, +915, 1253, 1381, +980, 1269, 1445, +996, 1285, 1510, +1012, 1317, 1606, +1108, 1349, 1686, +1124, 1365, 1750, +1156, 1381, 1847, +1237, 1413, 1927, +1285, 1445, 2039, +1349, 1493, 2104, +1028, 1413, 996, +996, 1413, 1044, +1012, 1413, 1140, +1028, 1413, 1188, +1044, 1413, 1253, +1012, 1413, 1333, +1060, 1429, 1333, +1076, 1445, 1445, +1060, 1477, 1542, +1108, 1477, 1606, +1140, 1493, 1702, +1172, 1510, 1783, +1220, 1542, 1863, +1285, 1558, 1959, +1349, 1606, 2023, +1413, 1622, 2120, +1477, 1670, 2232, +1188, 1606, 1156, +1140, 1622, 1172, +1156, 1606, 1220, +1156, 1606, 1317, +1172, 1606, 1381, +1188, 1622, 1461, +1220, 1622, 1510, +1237, 1654, 1558, +1253, 1654, 1622, +1285, 1686, 1734, +1333, 1670, 1799, +1381, 1718, 1895, +1397, 1718, 1959, +1429, 1734, 2039, +1477, 1766, 2104, +1526, 1815, 2200, +1558, 1831, 2296, +1333, 1815, 1253, +1349, 1815, 1301, +1317, 1831, 1349, +1333, 1815, 1397, +1365, 1815, 1493, +1365, 1831, 1558, +1365, 1815, 1590, +1397, 1847, 1686, +1429, 1847, 1718, +1461, 1863, 1799, +1477, 1879, 1911, +1493, 1895, 2007, +1574, 1927, 2039, +1670, 1927, 2136, +1686, 1927, 2200, +1670, 1943, 2264, +1718, 1991, 2377, +1558, 2023, 1365, +1542, 2023, 1381, +1542, 2023, 1445, +1558, 2023, 1510, +1574, 2023, 1606, +1574, 2023, 1654, +1622, 2023, 1702, +1606, 2039, 1766, +1622, 2056, 1831, +1654, 2056, 1863, +1686, 2056, 1943, +1718, 2088, 2056, +1718, 2088, 2152, +1766, 2136, 2248, +1879, 2120, 2264, +1927, 2152, 2361, +1975, 2184, 2473, +1799, 2232, 1477, +1783, 2232, 1510, +1766, 2232, 1558, +1783, 2232, 1622, +1799, 2216, 1670, +1815, 2232, 1766, +1815, 2248, 1815, +1847, 2264, 1895, +1879, 2280, 1975, +1879, 2296, 2023, +1911, 2296, 2088, +1911, 2280, 2136, +2007, 2312, 2248, +1975, 2329, 2345, +2056, 2345, 2393, +2072, 2345, 2457, +2120, 2361, 2553, +2007, 2457, 1654, +1991, 2473, 1654, +1959, 2457, 1670, +1975, 2441, 1734, +1991, 2441, 1799, +2007, 2441, 1863, +2039, 2457, 1959, +2072, 2473, 2039, +2039, 2457, 2088, +2072, 2473, 2168, +2120, 2489, 2216, +2120, 2457, 2264, +2168, 2505, 2361, +2200, 2505, 2441, +2216, 2537, 2553, +2232, 2537, 2618, +2248, 2537, 2682, +2168, 2666, 1750, +2168, 2650, 1799, +2120, 2650, 1815, +2168, 2666, 1879, +2168, 2650, 1959, +2184, 2650, 2023, +2216, 2650, 2056, +2216, 2666, 2136, +2216, 2650, 2184, +2248, 2666, 2248, +2248, 2682, 2345, +2280, 2682, 2377, +2312, 2698, 2457, +2329, 2698, 2521, +2377, 2730, 2618, +2393, 2746, 2714, +2425, 2762, 2794, +2345, 2842, 1895, +2329, 2858, 1895, +2296, 2858, 1943, +2312, 2875, 1959, +2329, 2875, 2056, +2345, 2858, 2120, +2377, 2875, 2200, +2393, 2875, 2264, +2425, 2875, 2329, +2409, 2875, 2361, +2473, 2875, 2441, +2489, 2875, 2505, +2505, 2891, 2553, +2505, 2875, 2602, +2553, 2907, 2698, +2585, 2923, 2778, +2602, 2955, 2891, +2537, 3067, 2023, +2569, 3067, 2056, +2505, 3067, 2056, +2521, 3067, 2120, +2537, 3067, 2184, +2569, 3083, 2264, +2585, 3067, 2329, +2585, 3051, 2377, +2602, 3083, 2425, +2602, 3067, 2521, +2634, 3083, 2602, +2618, 3067, 2618, +2666, 3083, 2666, +2698, 3099, 2714, +2730, 3115, 2794, +2778, 3131, 2891, +2778, 3131, 2987, +2714, 3276, 2184, +2746, 3308, 2216, +2698, 3308, 2232, +2714, 3308, 2312, +2714, 3308, 2296, +2730, 3292, 2361, +2730, 3292, 2457, +2778, 3276, 2553, +2778, 3276, 2585, +2778, 3260, 2634, +2762, 3276, 2698, +2794, 3260, 2730, +2826, 3292, 2826, +2810, 3276, 2858, +2842, 3292, 2923, +2875, 3308, 3003, +2939, 3340, 3083, +2891, 3485, 2345, +2875, 3485, 2329, +2875, 3485, 2377, +2842, 3501, 2377, +2891, 3517, 2457, +2907, 3501, 2521, +2907, 3485, 2569, +2907, 3485, 2666, +2939, 3485, 2714, +2971, 3485, 2778, +3019, 3501, 2826, +3035, 3485, 2891, +3035, 3517, 2971, +3051, 3517, 3051, +3083, 3533, 3131, +3099, 3517, 3164, +3148, 3533, 3212, +385, 257, 369, +353, 289, 401, +369, 305, 482, +401, 337, 594, +401, 337, 642, +434, 401, 771, +482, 466, 835, +562, 530, 947, +578, 578, 1060, +674, 626, 1124, +723, 707, 1253, +803, 755, 1349, +883, 835, 1477, +915, 883, 1558, +1044, 947, 1670, +1076, 1012, 1766, +1108, 1060, 1863, +498, 369, 385, +450, 401, 498, +434, 434, 578, +401, 466, 626, +450, 498, 723, +514, 514, 803, +562, 594, 931, +578, 610, 996, +642, 642, 1076, +691, 707, 1188, +755, 771, 1285, +835, 835, 1413, +867, 867, 1477, +964, 915, 1574, +996, 996, 1670, +1108, 1060, 1815, +1140, 1108, 1895, +562, 594, 514, +562, 610, 578, +530, 610, 674, +514, 642, 739, +514, 626, 803, +562, 674, 883, +610, 707, 980, +658, 755, 1076, +674, 771, 1156, +755, 819, 1237, +819, 883, 1365, +851, 915, 1445, +931, 964, 1542, +980, 1012, 1622, +1076, 1076, 1766, +1076, 1092, 1799, +1172, 1172, 1959, +658, 787, 610, +642, 803, 658, +610, 803, 755, +626, 819, 819, +642, 835, 915, +674, 851, 980, +707, 883, 1092, +723, 899, 1172, +771, 947, 1269, +771, 964, 1349, +851, 996, 1445, +915, 1044, 1493, +996, 1092, 1606, +1012, 1108, 1686, +1092, 1172, 1783, +1140, 1220, 1895, +1253, 1269, 1959, +771, 1012, 755, +771, 1012, 803, +723, 1012, 899, +739, 1028, 964, +755, 1028, 1012, +771, 1044, 1108, +787, 1060, 1204, +819, 1092, 1285, +851, 1092, 1333, +915, 1140, 1429, +931, 1156, 1510, +996, 1172, 1590, +1044, 1220, 1702, +1108, 1253, 1783, +1172, 1301, 1847, +1253, 1317, 1959, +1285, 1365, 2023, +883, 1204, 835, +915, 1220, 931, +867, 1220, 1012, +883, 1220, 1060, +899, 1220, 1156, +931, 1220, 1188, +947, 1237, 1285, +947, 1253, 1365, +980, 1269, 1445, +1012, 1285, 1526, +1060, 1333, 1622, +1092, 1333, 1670, +1140, 1381, 1766, +1220, 1397, 1863, +1269, 1445, 1959, +1317, 1477, 2039, +1381, 1477, 2120, +1060, 1413, 996, +1044, 1413, 1028, +1028, 1429, 1124, +1044, 1429, 1172, +1060, 1429, 1269, +1076, 1445, 1333, +1108, 1445, 1365, +1076, 1445, 1445, +1092, 1461, 1542, +1124, 1493, 1622, +1220, 1526, 1734, +1204, 1542, 1799, +1237, 1558, 1879, +1317, 1574, 1943, +1365, 1606, 2039, +1413, 1622, 2120, +1477, 1654, 2200, +1188, 1606, 1108, +1204, 1606, 1188, +1172, 1622, 1253, +1188, 1622, 1301, +1237, 1622, 1397, +1220, 1638, 1429, +1253, 1654, 1526, +1285, 1654, 1574, +1285, 1654, 1622, +1317, 1670, 1734, +1349, 1702, 1815, +1381, 1718, 1895, +1429, 1718, 1959, +1445, 1750, 2023, +1493, 1783, 2120, +1574, 1815, 2216, +1622, 1847, 2312, +1365, 1815, 1253, +1365, 1815, 1285, +1333, 1815, 1365, +1365, 1815, 1397, +1397, 1831, 1477, +1397, 1815, 1558, +1413, 1831, 1622, +1413, 1863, 1702, +1461, 1863, 1750, +1477, 1879, 1815, +1493, 1879, 1911, +1542, 1879, 1975, +1606, 1911, 2039, +1670, 1927, 2136, +1686, 1927, 2200, +1686, 1975, 2280, +1766, 2007, 2361, +1558, 2023, 1365, +1574, 2007, 1381, +1542, 2039, 1461, +1558, 2023, 1510, +1590, 2039, 1590, +1606, 2023, 1654, +1638, 2056, 1718, +1638, 2039, 1766, +1670, 2056, 1847, +1702, 2056, 1879, +1702, 2088, 1991, +1766, 2088, 2072, +1783, 2104, 2152, +1847, 2136, 2216, +1879, 2120, 2264, +1911, 2136, 2345, +1975, 2184, 2473, +1799, 2248, 1477, +1783, 2232, 1477, +1799, 2264, 1558, +1799, 2248, 1638, +1799, 2216, 1670, +1831, 2232, 1750, +1831, 2216, 1799, +1863, 2264, 1895, +1895, 2280, 1943, +1911, 2280, 2023, +1959, 2296, 2072, +1975, 2296, 2120, +2007, 2329, 2248, +2039, 2329, 2329, +2056, 2345, 2393, +2088, 2361, 2473, +2120, 2377, 2553, +2007, 2457, 1654, +2023, 2457, 1622, +1975, 2457, 1638, +2007, 2457, 1718, +2007, 2441, 1799, +2039, 2425, 1879, +2039, 2457, 1927, +2072, 2457, 2039, +2039, 2457, 2088, +2072, 2473, 2136, +2104, 2473, 2200, +2168, 2489, 2232, +2152, 2489, 2345, +2200, 2521, 2441, +2216, 2521, 2537, +2248, 2553, 2634, +2264, 2553, 2698, +2168, 2666, 1750, +2152, 2666, 1783, +2152, 2666, 1815, +2168, 2650, 1863, +2200, 2682, 1943, +2216, 2666, 2007, +2216, 2650, 2056, +2264, 2682, 2152, +2248, 2682, 2216, +2264, 2682, 2264, +2296, 2682, 2345, +2280, 2682, 2377, +2312, 2698, 2457, +2329, 2698, 2521, +2377, 2730, 2618, +2393, 2746, 2730, +2425, 2762, 2794, +2345, 2875, 1911, +2345, 2875, 1911, +2345, 2891, 1943, +2345, 2875, 1991, +2345, 2875, 2039, +2345, 2875, 2120, +2409, 2875, 2232, +2409, 2891, 2280, +2425, 2875, 2329, +2457, 2891, 2377, +2489, 2891, 2441, +2505, 2891, 2521, +2521, 2875, 2537, +2569, 2907, 2634, +2553, 2907, 2698, +2618, 2907, 2778, +2618, 2955, 2907, +2553, 3067, 2039, +2569, 3067, 2056, +2537, 3067, 2072, +2521, 3067, 2120, +2553, 3083, 2200, +2553, 3067, 2248, +2585, 3067, 2312, +2618, 3083, 2409, +2634, 3067, 2457, +2634, 3099, 2505, +2634, 3083, 2585, +2666, 3083, 2634, +2666, 3099, 2682, +2730, 3115, 2746, +2746, 3131, 2810, +2778, 3131, 2891, +2778, 3131, 2971, +2746, 3308, 2200, +2730, 3292, 2200, +2682, 3292, 2216, +2714, 3308, 2296, +2746, 3308, 2345, +2762, 3292, 2393, +2778, 3276, 2457, +2746, 3276, 2521, +2762, 3276, 2569, +2778, 3260, 2634, +2794, 3276, 2714, +2794, 3276, 2746, +2842, 3292, 2794, +2875, 3292, 2875, +2858, 3292, 2907, +2891, 3308, 2987, +2923, 3340, 3099, +2891, 3485, 2345, +2891, 3485, 2345, +2939, 3501, 2361, +2875, 3485, 2409, +2858, 3485, 2425, +2907, 3501, 2489, +2907, 3485, 2569, +2923, 3485, 2634, +2955, 3501, 2714, +2987, 3485, 2746, +3019, 3501, 2842, +3051, 3517, 2923, +3067, 3501, 2971, +3051, 3517, 3051, +3099, 3533, 3131, +3131, 3533, 3180, +3164, 3549, 3228, +594, 321, 466, +530, 369, 498, +498, 401, 562, +530, 418, 658, +562, 450, 707, +546, 482, 787, +594, 562, 915, +642, 594, 996, +707, 626, 1076, +755, 707, 1204, +787, 755, 1285, +851, 803, 1397, +899, 867, 1493, +1012, 915, 1574, +1060, 980, 1670, +1108, 1060, 1815, +1188, 1108, 1895, +658, 450, 466, +610, 450, 546, +546, 482, 594, +578, 514, 674, +562, 562, 771, +594, 594, 867, +594, 610, 931, +642, 642, 1028, +707, 723, 1124, +739, 739, 1204, +803, 803, 1317, +899, 883, 1445, +931, 899, 1510, +996, 947, 1606, +1060, 1012, 1702, +1092, 1076, 1783, +1188, 1140, 1927, +658, 626, 514, +674, 626, 562, +642, 642, 723, +658, 658, 787, +626, 691, 851, +610, 723, 947, +658, 739, 996, +707, 787, 1092, +739, 803, 1172, +803, 867, 1301, +867, 883, 1381, +883, 915, 1445, +947, 980, 1542, +1028, 1028, 1654, +1092, 1092, 1750, +1156, 1124, 1863, +1204, 1188, 1943, +755, 835, 642, +755, 819, 674, +739, 819, 755, +739, 851, 867, +723, 867, 931, +755, 899, 1044, +787, 915, 1108, +819, 947, 1204, +819, 964, 1269, +851, 996, 1349, +899, 1012, 1413, +964, 1076, 1526, +1028, 1092, 1622, +1076, 1140, 1718, +1156, 1188, 1815, +1220, 1237, 1927, +1253, 1269, 1975, +835, 1028, 739, +835, 1012, 787, +819, 1028, 867, +803, 1044, 996, +835, 1060, 1060, +851, 1076, 1156, +883, 1092, 1188, +883, 1108, 1269, +931, 1124, 1381, +964, 1140, 1461, +980, 1172, 1526, +1028, 1204, 1622, +1092, 1253, 1702, +1140, 1285, 1799, +1220, 1301, 1863, +1285, 1349, 1975, +1349, 1397, 2072, +980, 1220, 867, +964, 1220, 915, +964, 1237, 996, +931, 1220, 1076, +947, 1220, 1156, +980, 1237, 1204, +996, 1253, 1301, +1028, 1269, 1381, +1060, 1285, 1461, +1044, 1317, 1558, +1092, 1349, 1622, +1140, 1349, 1686, +1188, 1381, 1783, +1253, 1429, 1863, +1301, 1461, 1959, +1381, 1493, 2056, +1429, 1526, 2120, +1124, 1429, 980, +1108, 1429, 1028, +1124, 1429, 1108, +1108, 1445, 1204, +1124, 1461, 1301, +1124, 1445, 1349, +1108, 1445, 1365, +1156, 1477, 1493, +1172, 1493, 1558, +1188, 1493, 1654, +1204, 1526, 1734, +1220, 1558, 1815, +1269, 1558, 1895, +1365, 1590, 1959, +1397, 1606, 2039, +1445, 1638, 2104, +1510, 1686, 2216, +1237, 1638, 1124, +1269, 1622, 1188, +1285, 1638, 1220, +1253, 1638, 1301, +1285, 1622, 1381, +1269, 1638, 1445, +1285, 1654, 1542, +1349, 1670, 1558, +1349, 1670, 1622, +1365, 1686, 1750, +1397, 1718, 1847, +1413, 1718, 1911, +1461, 1750, 1991, +1461, 1766, 2039, +1558, 1815, 2152, +1574, 1815, 2232, +1638, 1863, 2345, +1413, 1831, 1220, +1429, 1831, 1285, +1445, 1831, 1349, +1397, 1831, 1397, +1429, 1831, 1477, +1445, 1847, 1574, +1429, 1847, 1638, +1477, 1863, 1718, +1493, 1863, 1750, +1526, 1895, 1831, +1542, 1895, 1895, +1574, 1911, 1975, +1654, 1927, 2072, +1686, 1943, 2152, +1718, 1959, 2232, +1766, 1991, 2329, +1783, 1991, 2361, +1622, 2039, 1349, +1638, 2039, 1413, +1654, 2056, 1461, +1606, 2039, 1542, +1638, 2039, 1574, +1654, 2056, 1670, +1670, 2039, 1718, +1686, 2039, 1783, +1702, 2072, 1863, +1718, 2072, 1911, +1750, 2088, 1975, +1750, 2088, 2072, +1831, 2136, 2152, +1831, 2120, 2200, +1895, 2136, 2280, +1959, 2136, 2361, +1991, 2200, 2473, +1847, 2248, 1477, +1847, 2248, 1493, +1831, 2248, 1526, +1815, 2248, 1606, +1831, 2248, 1670, +1863, 2264, 1783, +1879, 2264, 1847, +1911, 2264, 1879, +1927, 2280, 1959, +1927, 2296, 2023, +1975, 2312, 2072, +1991, 2312, 2152, +2007, 2329, 2248, +2056, 2361, 2345, +2056, 2345, 2393, +2136, 2361, 2489, +2136, 2345, 2537, +2023, 2457, 1590, +2072, 2457, 1638, +2039, 2441, 1654, +2007, 2441, 1734, +2056, 2457, 1815, +2056, 2441, 1863, +2104, 2473, 1959, +2072, 2457, 2007, +2104, 2473, 2072, +2120, 2473, 2152, +2152, 2473, 2216, +2168, 2505, 2280, +2184, 2505, 2345, +2184, 2521, 2473, +2216, 2537, 2553, +2264, 2553, 2602, +2329, 2553, 2682, +2200, 2650, 1750, +2232, 2666, 1799, +2216, 2666, 1815, +2184, 2666, 1847, +2216, 2682, 1959, +2232, 2682, 2023, +2264, 2650, 2072, +2280, 2682, 2152, +2280, 2666, 2216, +2280, 2698, 2280, +2296, 2682, 2345, +2345, 2698, 2393, +2361, 2714, 2473, +2409, 2714, 2521, +2425, 2714, 2585, +2409, 2762, 2730, +2441, 2762, 2810, +2393, 2891, 1927, +2393, 2891, 1927, +2393, 2891, 1959, +2361, 2891, 2007, +2377, 2875, 2072, +2409, 2875, 2152, +2425, 2875, 2216, +2441, 2875, 2312, +2473, 2891, 2361, +2489, 2875, 2377, +2473, 2875, 2441, +2505, 2891, 2521, +2553, 2907, 2569, +2553, 2891, 2618, +2585, 2907, 2698, +2634, 2923, 2794, +2634, 2939, 2891, +2553, 3083, 2039, +2569, 3083, 2039, +2585, 3083, 2120, +2553, 3083, 2104, +2553, 3083, 2168, +2569, 3067, 2248, +2585, 3051, 2280, +2618, 3035, 2377, +2634, 3083, 2473, +2634, 3083, 2505, +2650, 3067, 2569, +2682, 3099, 2650, +2730, 3099, 2698, +2714, 3115, 2730, +2762, 3131, 2810, +2794, 3148, 2891, +2794, 3148, 2987, +2778, 3292, 2200, +2746, 3308, 2200, +2762, 3292, 2248, +2730, 3308, 2280, +2746, 3292, 2296, +2762, 3276, 2361, +2778, 3292, 2457, +2794, 3276, 2521, +2810, 3276, 2585, +2778, 3260, 2634, +2826, 3292, 2698, +2826, 3292, 2730, +2842, 3276, 2794, +2875, 3292, 2875, +2907, 3308, 2923, +2955, 3324, 3003, +2939, 3340, 3083, +2955, 3501, 2329, +2891, 3485, 2345, +2923, 3517, 2329, +2939, 3501, 2393, +2907, 3501, 2457, +2923, 3517, 2505, +2923, 3517, 2602, +2955, 3501, 2666, +2987, 3485, 2730, +3019, 3485, 2762, +3051, 3485, 2826, +3051, 3517, 2923, +3067, 3501, 2971, +3099, 3517, 3051, +3083, 3533, 3131, +3115, 3533, 3180, +3164, 3549, 3228, +771, 418, 498, +739, 450, 562, +674, 498, 642, +658, 530, 707, +707, 562, 819, +691, 578, 883, +674, 626, 964, +739, 658, 1028, +755, 707, 1124, +819, 755, 1237, +867, 819, 1333, +931, 867, 1429, +980, 899, 1510, +1076, 964, 1606, +1108, 1028, 1718, +1140, 1060, 1799, +1204, 1124, 1927, +851, 530, 530, +819, 546, 610, +723, 594, 691, +691, 610, 755, +707, 626, 835, +723, 626, 931, +755, 691, 980, +755, 723, 1060, +803, 771, 1172, +867, 819, 1269, +915, 867, 1381, +964, 899, 1461, +1012, 947, 1526, +1044, 996, 1638, +1124, 1060, 1734, +1156, 1092, 1831, +1253, 1188, 1959, +915, 674, 498, +883, 691, 562, +819, 691, 755, +739, 739, 835, +755, 755, 899, +771, 771, 980, +771, 803, 1044, +803, 835, 1140, +851, 867, 1220, +883, 899, 1317, +899, 931, 1413, +980, 980, 1493, +1028, 1044, 1606, +1092, 1076, 1686, +1140, 1108, 1766, +1188, 1172, 1879, +1285, 1220, 1991, +899, 883, 658, +899, 867, 707, +915, 883, 787, +883, 899, 947, +867, 931, 996, +835, 931, 1076, +835, 947, 1124, +867, 980, 1237, +883, 996, 1317, +947, 1044, 1397, +964, 1044, 1461, +1028, 1108, 1574, +1076, 1140, 1638, +1124, 1172, 1734, +1188, 1220, 1847, +1269, 1253, 1911, +1317, 1301, 2007, +964, 1044, 771, +947, 1060, 851, +964, 1044, 899, +947, 1076, 1012, +931, 1076, 1076, +931, 1108, 1156, +947, 1124, 1237, +996, 1156, 1333, +980, 1172, 1397, +1028, 1156, 1445, +1076, 1204, 1558, +1108, 1237, 1638, +1140, 1253, 1718, +1204, 1301, 1799, +1285, 1333, 1879, +1301, 1349, 1959, +1365, 1413, 2088, +1076, 1253, 883, +1060, 1253, 947, +1092, 1253, 996, +1076, 1269, 1092, +1044, 1269, 1172, +1092, 1285, 1269, +1060, 1285, 1349, +1108, 1317, 1429, +1092, 1317, 1493, +1140, 1349, 1558, +1156, 1365, 1622, +1172, 1397, 1702, +1237, 1413, 1799, +1317, 1445, 1895, +1349, 1477, 1975, +1397, 1510, 2088, +1477, 1558, 2136, +1220, 1445, 1012, +1204, 1445, 1028, +1188, 1461, 1124, +1188, 1445, 1204, +1156, 1445, 1269, +1156, 1477, 1381, +1172, 1477, 1397, +1204, 1493, 1510, +1220, 1493, 1574, +1253, 1526, 1654, +1237, 1542, 1750, +1301, 1558, 1847, +1349, 1574, 1847, +1413, 1622, 1975, +1445, 1654, 2056, +1510, 1670, 2152, +1542, 1686, 2232, +1333, 1654, 1092, +1349, 1638, 1156, +1333, 1654, 1204, +1349, 1654, 1301, +1317, 1654, 1381, +1333, 1654, 1477, +1365, 1686, 1542, +1381, 1670, 1574, +1413, 1686, 1686, +1429, 1702, 1750, +1461, 1734, 1879, +1461, 1750, 1911, +1493, 1766, 1991, +1526, 1799, 2072, +1558, 1815, 2168, +1622, 1847, 2232, +1686, 1895, 2312, +1461, 1847, 1220, +1493, 1847, 1269, +1510, 1847, 1333, +1493, 1847, 1397, +1461, 1847, 1461, +1526, 1863, 1574, +1510, 1863, 1638, +1526, 1879, 1702, +1558, 1879, 1750, +1590, 1895, 1783, +1574, 1911, 1927, +1606, 1927, 2007, +1686, 1927, 2072, +1718, 1927, 2152, +1718, 1975, 2232, +1783, 2007, 2312, +1815, 2023, 2393, +1670, 2039, 1333, +1686, 2056, 1381, +1670, 2056, 1445, +1670, 2056, 1493, +1686, 2072, 1574, +1702, 2056, 1686, +1734, 2072, 1766, +1718, 2072, 1815, +1750, 2088, 1879, +1799, 2104, 1943, +1831, 2104, 1975, +1815, 2136, 2088, +1863, 2136, 2152, +1927, 2136, 2232, +1943, 2136, 2296, +2007, 2184, 2409, +2023, 2232, 2505, +1895, 2280, 1461, +1879, 2280, 1493, +1895, 2264, 1558, +1895, 2280, 1622, +1895, 2280, 1702, +1911, 2280, 1815, +1927, 2264, 1863, +1975, 2296, 1911, +1943, 2296, 1975, +1975, 2296, 2039, +2007, 2312, 2088, +2039, 2329, 2168, +2088, 2361, 2296, +2088, 2345, 2345, +2104, 2361, 2409, +2136, 2361, 2489, +2184, 2393, 2585, +2088, 2473, 1622, +2088, 2489, 1622, +2088, 2473, 1654, +2104, 2473, 1718, +2072, 2473, 1799, +2072, 2457, 1895, +2136, 2473, 1991, +2136, 2489, 2039, +2136, 2473, 2088, +2152, 2489, 2136, +2184, 2505, 2216, +2216, 2521, 2264, +2248, 2521, 2329, +2264, 2537, 2473, +2296, 2537, 2505, +2312, 2537, 2585, +2329, 2569, 2698, +2264, 2682, 1750, +2264, 2682, 1783, +2248, 2666, 1799, +2248, 2698, 1879, +2216, 2682, 1927, +2264, 2666, 2023, +2280, 2682, 2088, +2312, 2682, 2152, +2280, 2682, 2216, +2312, 2682, 2280, +2345, 2698, 2377, +2377, 2698, 2409, +2377, 2714, 2489, +2409, 2730, 2569, +2441, 2746, 2650, +2473, 2778, 2762, +2473, 2762, 2778, +2409, 2891, 1911, +2393, 2891, 1927, +2425, 2891, 1927, +2425, 2891, 1991, +2409, 2907, 2072, +2473, 2891, 2136, +2473, 2891, 2232, +2489, 2891, 2296, +2505, 2891, 2361, +2537, 2875, 2393, +2521, 2891, 2457, +2521, 2875, 2505, +2585, 2891, 2569, +2569, 2907, 2634, +2618, 2939, 2730, +2634, 2939, 2810, +2634, 2939, 2891, +2602, 3067, 2007, +2618, 3099, 2056, +2602, 3067, 2072, +2585, 3083, 2120, +2602, 3083, 2216, +2618, 3083, 2280, +2650, 3083, 2312, +2650, 3067, 2361, +2666, 3067, 2473, +2682, 3099, 2521, +2682, 3083, 2569, +2698, 3115, 2666, +2730, 3115, 2714, +2762, 3115, 2746, +2778, 3115, 2810, +2842, 3148, 2923, +2794, 3148, 3003, +2746, 3292, 2168, +2778, 3292, 2216, +2778, 3292, 2216, +2762, 3292, 2264, +2762, 3308, 2312, +2762, 3292, 2361, +2778, 3276, 2425, +2794, 3260, 2489, +2794, 3260, 2569, +2826, 3276, 2650, +2858, 3308, 2682, +2842, 3276, 2762, +2875, 3292, 2842, +2891, 3308, 2891, +2939, 3324, 2939, +2955, 3324, 3019, +2987, 3340, 3083, +2907, 3501, 2329, +2923, 3501, 2329, +2939, 3501, 2361, +2987, 3517, 2409, +2923, 3517, 2473, +2955, 3517, 2537, +2955, 3501, 2585, +3003, 3501, 2634, +3035, 3501, 2746, +3035, 3501, 2778, +3067, 3501, 2842, +3099, 3517, 2923, +3067, 3517, 2987, +3083, 3517, 3051, +3131, 3533, 3131, +3131, 3533, 3180, +3164, 3549, 3228, +996, 514, 562, +947, 546, 626, +819, 578, 723, +803, 626, 771, +803, 642, 851, +819, 674, 947, +819, 707, 1012, +867, 739, 1108, +883, 787, 1188, +947, 819, 1301, +964, 851, 1365, +1012, 899, 1461, +1076, 947, 1542, +1124, 1028, 1654, +1156, 1060, 1734, +1220, 1124, 1863, +1285, 1188, 1959, +1028, 594, 562, +996, 610, 658, +899, 674, 787, +835, 723, 851, +835, 723, 883, +851, 739, 980, +851, 755, 1044, +883, 803, 1140, +883, 835, 1220, +947, 883, 1317, +980, 899, 1397, +1060, 964, 1493, +1076, 1012, 1590, +1108, 1060, 1670, +1172, 1108, 1783, +1253, 1172, 1879, +1317, 1220, 2007, +1092, 723, 514, +1028, 739, 658, +980, 755, 803, +883, 803, 883, +899, 851, 964, +915, 851, 1044, +931, 867, 1140, +931, 899, 1188, +947, 915, 1269, +964, 947, 1349, +1012, 980, 1413, +1044, 1044, 1526, +1092, 1076, 1622, +1140, 1124, 1734, +1204, 1172, 1815, +1269, 1220, 1927, +1349, 1253, 1975, +1076, 899, 642, +1108, 899, 707, +1108, 899, 771, +1028, 931, 980, +931, 947, 1028, +964, 980, 1140, +947, 996, 1204, +964, 1028, 1269, +996, 1044, 1333, +1044, 1076, 1413, +1076, 1108, 1510, +1108, 1124, 1574, +1156, 1172, 1686, +1220, 1204, 1766, +1269, 1269, 1847, +1349, 1301, 1959, +1365, 1333, 2023, +1092, 1092, 787, +1108, 1124, 851, +1108, 1124, 931, +1108, 1092, 964, +1092, 1140, 1156, +1060, 1140, 1172, +1044, 1172, 1269, +1044, 1156, 1317, +1076, 1204, 1413, +1108, 1237, 1493, +1140, 1253, 1574, +1188, 1285, 1670, +1269, 1301, 1734, +1285, 1349, 1831, +1349, 1365, 1927, +1381, 1381, 2007, +1429, 1461, 2104, +1220, 1285, 915, +1204, 1285, 964, +1204, 1301, 1060, +1188, 1285, 1124, +1172, 1301, 1220, +1172, 1333, 1317, +1156, 1333, 1381, +1172, 1333, 1445, +1188, 1365, 1477, +1220, 1397, 1606, +1204, 1397, 1654, +1253, 1413, 1734, +1301, 1445, 1831, +1333, 1477, 1927, +1365, 1493, 2007, +1461, 1542, 2056, +1526, 1590, 2184, +1285, 1477, 1044, +1301, 1477, 1076, +1253, 1477, 1108, +1269, 1477, 1204, +1285, 1477, 1301, +1237, 1493, 1349, +1253, 1510, 1445, +1269, 1526, 1558, +1301, 1542, 1622, +1269, 1542, 1670, +1381, 1574, 1750, +1397, 1590, 1831, +1445, 1622, 1911, +1477, 1654, 2007, +1510, 1670, 2088, +1558, 1702, 2184, +1622, 1734, 2232, +1429, 1686, 1140, +1461, 1670, 1172, +1445, 1686, 1237, +1429, 1686, 1317, +1429, 1686, 1397, +1413, 1702, 1493, +1413, 1702, 1574, +1445, 1702, 1622, +1477, 1718, 1718, +1526, 1750, 1783, +1542, 1750, 1831, +1542, 1766, 1927, +1574, 1799, 1991, +1622, 1815, 2088, +1638, 1831, 2168, +1702, 1863, 2232, +1750, 1879, 2312, +1558, 1863, 1237, +1558, 1879, 1285, +1574, 1879, 1349, +1542, 1863, 1381, +1574, 1863, 1477, +1558, 1895, 1590, +1590, 1879, 1654, +1606, 1895, 1718, +1638, 1911, 1750, +1638, 1911, 1847, +1654, 1927, 1943, +1686, 1927, 2023, +1750, 1943, 2104, +1766, 1991, 2200, +1799, 1991, 2232, +1847, 2023, 2345, +1895, 2039, 2393, +1750, 2088, 1397, +1750, 2088, 1381, +1734, 2088, 1413, +1750, 2072, 1493, +1750, 2072, 1558, +1750, 2088, 1654, +1783, 2072, 1766, +1783, 2088, 1799, +1799, 2088, 1863, +1847, 2104, 1927, +1879, 2120, 1975, +1847, 2136, 2104, +1911, 2136, 2168, +1975, 2152, 2264, +2023, 2184, 2345, +2023, 2216, 2441, +2056, 2232, 2521, +1959, 2312, 1510, +1943, 2296, 1493, +1959, 2296, 1558, +1991, 2296, 1622, +1959, 2296, 1702, +1959, 2280, 1783, +1991, 2280, 1863, +2023, 2296, 1943, +2023, 2329, 2007, +2039, 2329, 2072, +2072, 2345, 2120, +2104, 2345, 2200, +2104, 2329, 2280, +2104, 2361, 2361, +2120, 2361, 2425, +2136, 2377, 2505, +2264, 2393, 2602, +2136, 2473, 1638, +2088, 2473, 1622, +2136, 2489, 1638, +2120, 2489, 1702, +2120, 2473, 1783, +2152, 2489, 1895, +2152, 2473, 1975, +2168, 2489, 2039, +2184, 2473, 2104, +2200, 2505, 2152, +2232, 2505, 2232, +2264, 2521, 2264, +2296, 2521, 2345, +2312, 2537, 2457, +2329, 2537, 2521, +2361, 2553, 2602, +2393, 2585, 2682, +2264, 2682, 1750, +2264, 2682, 1750, +2296, 2682, 1831, +2296, 2666, 1863, +2296, 2682, 1943, +2280, 2682, 2007, +2312, 2682, 2072, +2377, 2714, 2200, +2361, 2698, 2248, +2377, 2698, 2312, +2361, 2714, 2345, +2393, 2714, 2425, +2457, 2746, 2457, +2473, 2746, 2553, +2473, 2746, 2650, +2521, 2762, 2730, +2537, 2778, 2810, +2457, 2891, 1879, +2457, 2907, 1895, +2505, 2907, 1927, +2521, 2907, 1991, +2521, 2891, 2072, +2489, 2907, 2120, +2521, 2891, 2200, +2537, 2891, 2296, +2569, 2891, 2345, +2553, 2891, 2409, +2569, 2907, 2473, +2602, 2907, 2553, +2618, 2923, 2602, +2618, 2923, 2666, +2650, 2923, 2730, +2698, 2955, 2794, +2714, 2971, 2939, +2650, 3083, 2023, +2650, 3083, 2039, +2650, 3083, 2056, +2682, 3099, 2136, +2666, 3099, 2216, +2634, 3099, 2264, +2666, 3099, 2345, +2682, 3099, 2393, +2698, 3083, 2457, +2730, 3099, 2537, +2714, 3115, 2602, +2746, 3115, 2682, +2778, 3115, 2714, +2794, 3148, 2778, +2826, 3148, 2842, +2826, 3148, 2907, +2875, 3180, 3035, +2826, 3292, 2184, +2794, 3308, 2184, +2778, 3292, 2200, +2794, 3276, 2232, +2810, 3276, 2296, +2762, 3276, 2329, +2826, 3292, 2441, +2842, 3292, 2537, +2842, 3276, 2585, +2858, 3292, 2650, +2875, 3292, 2714, +2907, 3292, 2778, +2907, 3308, 2826, +2939, 3324, 2907, +2955, 3308, 2939, +3003, 3340, 3035, +3003, 3356, 3099, +2939, 3517, 2312, +3019, 3517, 2361, +2971, 3517, 2345, +3035, 3517, 2393, +2971, 3517, 2441, +3003, 3517, 2521, +3003, 3501, 2618, +3035, 3501, 2682, +3051, 3501, 2746, +3083, 3501, 2778, +3115, 3517, 2875, +3099, 3517, 2939, +3131, 3533, 3019, +3148, 3517, 3067, +3164, 3549, 3131, +3180, 3549, 3164, +3212, 3549, 3228, +1188, 594, 578, +1124, 642, 674, +1044, 691, 803, +947, 739, 851, +931, 755, 931, +980, 787, 1012, +996, 819, 1092, +1028, 851, 1204, +1044, 867, 1253, +1028, 899, 1349, +1044, 931, 1413, +1108, 996, 1510, +1156, 1044, 1622, +1188, 1060, 1686, +1253, 1124, 1799, +1317, 1188, 1911, +1349, 1220, 1959, +1220, 691, 610, +1204, 691, 691, +1092, 739, 819, +996, 787, 899, +996, 819, 964, +996, 835, 1060, +1028, 883, 1124, +1028, 883, 1204, +1060, 915, 1269, +1060, 947, 1365, +1108, 1012, 1461, +1140, 1028, 1542, +1172, 1060, 1638, +1204, 1108, 1702, +1285, 1156, 1831, +1333, 1204, 1943, +1381, 1237, 1975, +1285, 771, 578, +1237, 803, 739, +1172, 835, 851, +1092, 867, 964, +1044, 899, 1012, +1044, 915, 1076, +1028, 931, 1156, +1076, 947, 1237, +1060, 1012, 1333, +1076, 1044, 1397, +1124, 1076, 1493, +1140, 1092, 1558, +1204, 1140, 1670, +1253, 1172, 1766, +1285, 1220, 1847, +1381, 1253, 1927, +1381, 1285, 2023, +1285, 931, 626, +1301, 931, 674, +1237, 947, 867, +1172, 996, 1044, +1092, 1028, 1076, +1108, 1060, 1156, +1108, 1060, 1237, +1140, 1076, 1301, +1108, 1108, 1381, +1140, 1140, 1461, +1140, 1156, 1542, +1220, 1188, 1638, +1253, 1237, 1734, +1301, 1269, 1815, +1349, 1301, 1895, +1397, 1333, 1959, +1461, 1381, 2072, +1269, 1124, 771, +1285, 1124, 819, +1253, 1124, 883, +1285, 1108, 964, +1220, 1140, 1172, +1172, 1188, 1237, +1188, 1204, 1301, +1172, 1220, 1397, +1172, 1237, 1461, +1220, 1269, 1558, +1237, 1285, 1622, +1253, 1317, 1686, +1333, 1333, 1783, +1365, 1349, 1863, +1413, 1413, 1959, +1461, 1445, 2056, +1526, 1493, 2120, +1301, 1333, 980, +1301, 1333, 980, +1317, 1333, 1028, +1317, 1317, 1108, +1333, 1317, 1188, +1301, 1333, 1317, +1285, 1365, 1381, +1269, 1381, 1461, +1237, 1397, 1526, +1253, 1429, 1606, +1317, 1429, 1686, +1349, 1445, 1766, +1397, 1493, 1863, +1429, 1510, 1943, +1493, 1542, 2023, +1542, 1590, 2120, +1622, 1638, 2200, +1397, 1526, 1076, +1429, 1510, 1108, +1413, 1526, 1156, +1397, 1526, 1253, +1397, 1526, 1333, +1381, 1542, 1413, +1365, 1542, 1493, +1349, 1558, 1558, +1365, 1558, 1622, +1397, 1574, 1686, +1445, 1606, 1766, +1477, 1622, 1879, +1493, 1638, 1943, +1542, 1670, 2039, +1574, 1686, 2120, +1654, 1734, 2184, +1686, 1750, 2264, +1574, 1718, 1204, +1558, 1702, 1220, +1558, 1718, 1253, +1526, 1718, 1333, +1542, 1718, 1413, +1558, 1718, 1510, +1542, 1718, 1590, +1558, 1750, 1654, +1558, 1750, 1734, +1558, 1734, 1783, +1574, 1766, 1863, +1622, 1815, 1975, +1638, 1815, 2023, +1670, 1831, 2120, +1734, 1879, 2200, +1783, 1879, 2264, +1815, 1895, 2345, +1686, 1895, 1285, +1670, 1895, 1285, +1670, 1879, 1333, +1654, 1895, 1397, +1670, 1895, 1493, +1670, 1911, 1558, +1670, 1911, 1686, +1686, 1911, 1734, +1734, 1927, 1799, +1734, 1927, 1879, +1766, 1943, 1959, +1815, 1975, 2023, +1815, 1975, 2088, +1847, 2007, 2168, +1863, 2039, 2264, +1911, 2039, 2345, +1943, 2056, 2425, +1847, 2088, 1349, +1863, 2104, 1397, +1831, 2104, 1413, +1847, 2088, 1493, +1847, 2104, 1574, +1863, 2104, 1670, +1847, 2104, 1783, +1911, 2120, 1831, +1879, 2136, 1895, +1927, 2136, 1943, +1959, 2120, 2023, +1975, 2120, 2088, +2023, 2152, 2184, +2023, 2184, 2296, +2056, 2216, 2393, +2072, 2232, 2441, +2120, 2280, 2537, +2039, 2312, 1493, +2039, 2312, 1526, +2007, 2296, 1542, +2023, 2329, 1622, +2056, 2312, 1702, +2056, 2329, 1783, +2023, 2329, 1863, +2088, 2329, 1975, +2072, 2329, 1991, +2104, 2345, 2104, +2136, 2345, 2136, +2136, 2329, 2168, +2136, 2377, 2312, +2152, 2377, 2377, +2184, 2393, 2457, +2232, 2393, 2537, +2280, 2409, 2634, +2216, 2505, 1606, +2200, 2489, 1606, +2200, 2505, 1670, +2216, 2505, 1734, +2200, 2505, 1783, +2232, 2521, 1895, +2200, 2505, 1943, +2232, 2505, 2072, +2264, 2505, 2120, +2264, 2521, 2184, +2296, 2537, 2264, +2329, 2537, 2312, +2345, 2537, 2377, +2312, 2537, 2457, +2361, 2569, 2553, +2393, 2585, 2634, +2425, 2602, 2714, +2345, 2698, 1718, +2345, 2714, 1766, +2361, 2714, 1815, +2345, 2698, 1879, +2377, 2714, 1943, +2393, 2714, 2007, +2377, 2714, 2104, +2393, 2714, 2184, +2409, 2714, 2232, +2441, 2714, 2312, +2425, 2730, 2377, +2473, 2746, 2441, +2505, 2762, 2473, +2521, 2762, 2569, +2537, 2762, 2666, +2521, 2778, 2746, +2569, 2810, 2842, +2521, 2907, 1879, +2489, 2891, 1895, +2537, 2907, 1943, +2521, 2891, 1959, +2537, 2891, 2023, +2553, 2891, 2120, +2537, 2907, 2216, +2553, 2907, 2280, +2585, 2907, 2329, +2602, 2907, 2425, +2618, 2907, 2489, +2634, 2923, 2537, +2666, 2939, 2618, +2698, 2939, 2666, +2730, 2955, 2746, +2714, 2971, 2842, +2746, 2955, 2907, +2682, 3099, 2023, +2682, 3099, 2023, +2682, 3115, 2056, +2682, 3099, 2104, +2714, 3115, 2184, +2698, 3099, 2248, +2714, 3131, 2296, +2714, 3099, 2409, +2746, 3099, 2473, +2778, 3099, 2553, +2778, 3131, 2634, +2794, 3131, 2698, +2810, 3148, 2746, +2826, 3131, 2778, +2842, 3131, 2842, +2907, 3180, 2939, +2939, 3180, 3003, +2810, 3276, 2136, +2826, 3292, 2152, +2858, 3292, 2232, +2842, 3292, 2264, +2842, 3292, 2248, +2858, 3292, 2361, +2842, 3308, 2457, +2858, 3308, 2521, +2907, 3324, 2602, +2907, 3308, 2666, +2939, 3308, 2698, +2955, 3340, 2794, +2955, 3324, 2858, +2987, 3324, 2923, +3003, 3356, 2987, +3019, 3356, 3051, +3067, 3388, 3148, +3051, 3517, 2329, +3051, 3517, 2361, +3051, 3517, 2361, +3083, 3517, 2393, +3035, 3517, 2425, +3003, 3517, 2489, +3035, 3517, 2569, +3083, 3517, 2666, +3099, 3501, 2762, +3131, 3517, 2810, +3131, 3533, 2891, +3148, 3533, 2955, +3131, 3533, 3003, +3164, 3533, 3067, +3196, 3549, 3131, +3244, 3565, 3180, +3212, 3565, 3244, +1365, 707, 658, +1349, 739, 739, +1237, 787, 883, +1140, 835, 980, +1108, 883, 1028, +1108, 867, 1092, +1124, 899, 1172, +1172, 947, 1269, +1156, 980, 1349, +1204, 996, 1397, +1188, 1044, 1493, +1220, 1060, 1574, +1269, 1092, 1654, +1317, 1156, 1783, +1349, 1204, 1847, +1397, 1237, 1927, +1461, 1285, 2039, +1381, 771, 658, +1397, 771, 739, +1301, 835, 899, +1188, 867, 980, +1140, 899, 1044, +1124, 915, 1108, +1124, 931, 1188, +1156, 980, 1285, +1172, 1012, 1349, +1220, 1044, 1445, +1204, 1076, 1526, +1269, 1092, 1606, +1285, 1140, 1702, +1317, 1188, 1766, +1381, 1237, 1847, +1445, 1285, 1959, +1445, 1301, 2007, +1445, 851, 642, +1413, 867, 755, +1365, 883, 899, +1237, 947, 1028, +1156, 1012, 1092, +1172, 1012, 1156, +1188, 1044, 1237, +1188, 1060, 1301, +1220, 1076, 1381, +1220, 1076, 1477, +1220, 1124, 1542, +1269, 1156, 1622, +1301, 1188, 1718, +1397, 1253, 1815, +1413, 1269, 1895, +1461, 1317, 1975, +1526, 1365, 2088, +1493, 996, 658, +1493, 980, 723, +1413, 1028, 915, +1349, 1060, 1060, +1253, 1092, 1156, +1237, 1108, 1204, +1204, 1124, 1269, +1253, 1140, 1365, +1253, 1172, 1429, +1253, 1188, 1493, +1269, 1237, 1590, +1333, 1269, 1670, +1365, 1301, 1766, +1397, 1317, 1831, +1429, 1333, 1927, +1510, 1397, 2056, +1510, 1413, 2104, +1461, 1140, 755, +1461, 1156, 819, +1510, 1140, 883, +1445, 1188, 1108, +1381, 1204, 1220, +1301, 1253, 1285, +1301, 1269, 1365, +1317, 1285, 1445, +1333, 1301, 1493, +1349, 1333, 1590, +1365, 1333, 1638, +1397, 1365, 1734, +1397, 1381, 1815, +1445, 1413, 1911, +1477, 1445, 1991, +1574, 1493, 2056, +1622, 1526, 2152, +1493, 1365, 931, +1461, 1349, 964, +1510, 1365, 1028, +1510, 1365, 1108, +1510, 1349, 1172, +1429, 1397, 1397, +1397, 1397, 1429, +1397, 1429, 1493, +1333, 1461, 1574, +1413, 1461, 1638, +1461, 1493, 1766, +1477, 1510, 1831, +1510, 1510, 1879, +1542, 1542, 1943, +1590, 1590, 2039, +1638, 1622, 2136, +1686, 1654, 2248, +1526, 1526, 1076, +1542, 1558, 1172, +1477, 1542, 1156, +1493, 1542, 1220, +1526, 1558, 1301, +1574, 1558, 1397, +1510, 1574, 1526, +1526, 1590, 1574, +1526, 1622, 1686, +1542, 1638, 1750, +1526, 1638, 1815, +1574, 1670, 1895, +1606, 1702, 1991, +1654, 1718, 2039, +1686, 1734, 2120, +1734, 1766, 2232, +1766, 1783, 2312, +1686, 1750, 1204, +1670, 1750, 1237, +1654, 1734, 1285, +1670, 1734, 1349, +1654, 1734, 1397, +1670, 1750, 1510, +1670, 1766, 1590, +1638, 1766, 1670, +1654, 1799, 1766, +1638, 1815, 1815, +1670, 1815, 1895, +1702, 1847, 1991, +1750, 1863, 2039, +1766, 1863, 2104, +1815, 1895, 2200, +1863, 1911, 2280, +1911, 1943, 2377, +1815, 1927, 1285, +1799, 1911, 1301, +1799, 1927, 1365, +1766, 1927, 1429, +1799, 1927, 1477, +1815, 1927, 1574, +1815, 1927, 1670, +1799, 1927, 1750, +1847, 1959, 1815, +1799, 1943, 1879, +1847, 1975, 1975, +1847, 2007, 2056, +1863, 1991, 2120, +1911, 2023, 2200, +1959, 2056, 2296, +1991, 2072, 2377, +2023, 2088, 2425, +1959, 2120, 1397, +1943, 2120, 1429, +1943, 2136, 1461, +1959, 2120, 1526, +1943, 2120, 1574, +1927, 2136, 1670, +1943, 2136, 1734, +1943, 2136, 1847, +1991, 2120, 1911, +2007, 2136, 1959, +2023, 2152, 2056, +2072, 2184, 2152, +2088, 2184, 2216, +2120, 2232, 2296, +2104, 2248, 2393, +2120, 2248, 2457, +2168, 2280, 2553, +2136, 2329, 1526, +2152, 2345, 1542, +2136, 2345, 1606, +2120, 2345, 1654, +2136, 2345, 1718, +2120, 2345, 1783, +2168, 2361, 1863, +2152, 2345, 1975, +2168, 2345, 2039, +2152, 2345, 2088, +2200, 2361, 2152, +2200, 2377, 2232, +2232, 2377, 2312, +2232, 2393, 2377, +2296, 2409, 2473, +2329, 2425, 2553, +2329, 2441, 2634, +2296, 2505, 1590, +2264, 2521, 1622, +2296, 2537, 1686, +2264, 2505, 1718, +2280, 2537, 1799, +2280, 2521, 1879, +2329, 2521, 1991, +2296, 2521, 2072, +2345, 2537, 2152, +2329, 2553, 2216, +2345, 2537, 2280, +2393, 2553, 2296, +2425, 2569, 2377, +2377, 2553, 2489, +2425, 2602, 2585, +2473, 2618, 2650, +2489, 2618, 2746, +2441, 2714, 1750, +2441, 2730, 1799, +2425, 2730, 1815, +2409, 2730, 1847, +2409, 2730, 1911, +2441, 2746, 1991, +2457, 2714, 2104, +2473, 2746, 2184, +2473, 2746, 2280, +2505, 2746, 2345, +2505, 2762, 2425, +2537, 2778, 2473, +2569, 2762, 2505, +2553, 2778, 2569, +2569, 2794, 2714, +2569, 2794, 2762, +2634, 2794, 2842, +2553, 2907, 1879, +2602, 2923, 1895, +2602, 2923, 1895, +2602, 2923, 1975, +2602, 2907, 2056, +2618, 2907, 2120, +2618, 2923, 2200, +2602, 2907, 2312, +2634, 2907, 2345, +2666, 2923, 2409, +2698, 2939, 2505, +2666, 2923, 2553, +2714, 2939, 2634, +2746, 2955, 2682, +2778, 2955, 2762, +2746, 2971, 2858, +2794, 2987, 2939, +2746, 3115, 2007, +2714, 3115, 2023, +2746, 3131, 2056, +2762, 3131, 2120, +2778, 3115, 2184, +2778, 3099, 2264, +2746, 3131, 2312, +2778, 3131, 2377, +2794, 3131, 2489, +2842, 3131, 2585, +2842, 3148, 2618, +2858, 3131, 2682, +2858, 3148, 2762, +2891, 3164, 2810, +2907, 3164, 2875, +2955, 3164, 2923, +2955, 3196, 3051, +2875, 3324, 2152, +2858, 3324, 2152, +2875, 3308, 2200, +2875, 3308, 2232, +2923, 3324, 2296, +2875, 3308, 2345, +2875, 3324, 2409, +2907, 3340, 2537, +2939, 3324, 2618, +2955, 3308, 2682, +2987, 3308, 2730, +2971, 3324, 2778, +3019, 3340, 2891, +2987, 3340, 2923, +3051, 3356, 2987, +3099, 3388, 3099, +3099, 3372, 3148, +3083, 3533, 2312, +3083, 3533, 2361, +3083, 3533, 2361, +3115, 3549, 2409, +3083, 3517, 2409, +3115, 3533, 2521, +3131, 3533, 2585, +3131, 3549, 2698, +3131, 3533, 2762, +3180, 3549, 2810, +3196, 3533, 2875, +3212, 3549, 2987, +3196, 3549, 3003, +3212, 3549, 3067, +3228, 3533, 3131, +3244, 3565, 3196, +3276, 3565, 3276, +1558, 771, 691, +1542, 803, 771, +1445, 867, 947, +1349, 931, 1060, +1253, 964, 1108, +1269, 996, 1156, +1253, 1012, 1237, +1253, 1028, 1301, +1285, 1044, 1381, +1301, 1076, 1461, +1333, 1092, 1542, +1349, 1140, 1638, +1381, 1188, 1734, +1445, 1220, 1815, +1461, 1269, 1879, +1510, 1285, 1959, +1542, 1349, 2088, +1574, 835, 691, +1574, 851, 803, +1477, 883, 915, +1365, 964, 1028, +1285, 1028, 1124, +1269, 1028, 1188, +1269, 1044, 1237, +1285, 1060, 1333, +1301, 1092, 1397, +1317, 1092, 1477, +1349, 1140, 1542, +1397, 1172, 1670, +1413, 1220, 1766, +1429, 1269, 1815, +1493, 1285, 1895, +1510, 1317, 1991, +1574, 1365, 2072, +1606, 931, 707, +1590, 931, 803, +1558, 964, 931, +1429, 1012, 1060, +1333, 1076, 1172, +1301, 1076, 1188, +1285, 1092, 1253, +1333, 1124, 1365, +1317, 1124, 1429, +1365, 1156, 1510, +1381, 1204, 1606, +1397, 1237, 1702, +1397, 1253, 1734, +1461, 1301, 1847, +1510, 1333, 1943, +1542, 1397, 2023, +1574, 1413, 2104, +1670, 1028, 674, +1606, 1060, 819, +1590, 1060, 964, +1510, 1076, 1076, +1397, 1156, 1220, +1349, 1188, 1269, +1333, 1204, 1349, +1365, 1220, 1429, +1397, 1220, 1493, +1413, 1253, 1542, +1429, 1269, 1638, +1429, 1317, 1718, +1461, 1349, 1799, +1510, 1365, 1879, +1558, 1413, 1975, +1606, 1445, 2088, +1654, 1493, 2136, +1702, 1204, 755, +1718, 1204, 819, +1702, 1204, 915, +1622, 1220, 1124, +1542, 1253, 1220, +1445, 1301, 1333, +1445, 1317, 1413, +1445, 1349, 1477, +1461, 1333, 1542, +1461, 1365, 1606, +1477, 1413, 1702, +1461, 1413, 1766, +1526, 1461, 1863, +1542, 1461, 1943, +1622, 1526, 2023, +1670, 1558, 2120, +1686, 1590, 2184, +1670, 1397, 931, +1686, 1381, 947, +1686, 1397, 1028, +1718, 1365, 1076, +1654, 1397, 1285, +1590, 1429, 1413, +1493, 1461, 1461, +1510, 1461, 1526, +1510, 1477, 1606, +1526, 1493, 1702, +1558, 1526, 1766, +1558, 1558, 1847, +1590, 1590, 1927, +1638, 1622, 2023, +1686, 1638, 2104, +1718, 1654, 2168, +1750, 1702, 2232, +1686, 1574, 1044, +1702, 1558, 1092, +1702, 1574, 1172, +1702, 1590, 1220, +1750, 1590, 1301, +1750, 1574, 1397, +1670, 1606, 1558, +1638, 1638, 1638, +1638, 1654, 1702, +1638, 1686, 1783, +1638, 1702, 1831, +1654, 1702, 1895, +1686, 1718, 1959, +1750, 1750, 2072, +1799, 1783, 2168, +1815, 1799, 2248, +1879, 1847, 2329, +1799, 1766, 1204, +1766, 1766, 1253, +1783, 1783, 1285, +1766, 1799, 1381, +1750, 1783, 1429, +1766, 1783, 1526, +1783, 1799, 1590, +1766, 1799, 1734, +1750, 1831, 1815, +1766, 1847, 1847, +1783, 1863, 1927, +1799, 1895, 2007, +1831, 1879, 2072, +1863, 1895, 2152, +1927, 1927, 2248, +1943, 1943, 2329, +1991, 1991, 2377, +1927, 1927, 1285, +1927, 1927, 1317, +1911, 1927, 1381, +1927, 1959, 1461, +1927, 1943, 1526, +1911, 1943, 1590, +1943, 1959, 1654, +1927, 1975, 1750, +1911, 1991, 1847, +1895, 1975, 1895, +1911, 2023, 2007, +1943, 2039, 2072, +1975, 2056, 2152, +2007, 2072, 2232, +2039, 2072, 2280, +2072, 2088, 2361, +2120, 2136, 2457, +2072, 2120, 1397, +2088, 2120, 1429, +2088, 2136, 1493, +2088, 2136, 1526, +2072, 2136, 1590, +2088, 2136, 1670, +2072, 2136, 1734, +2056, 2152, 1831, +2072, 2152, 1927, +2120, 2168, 1991, +2104, 2200, 2088, +2152, 2216, 2168, +2136, 2216, 2232, +2168, 2248, 2312, +2184, 2280, 2409, +2216, 2296, 2473, +2248, 2312, 2537, +2248, 2361, 1542, +2232, 2345, 1558, +2232, 2361, 1606, +2216, 2345, 1654, +2216, 2345, 1718, +2216, 2345, 1750, +2216, 2361, 1847, +2216, 2361, 1959, +2216, 2361, 2056, +2248, 2361, 2120, +2248, 2377, 2168, +2264, 2393, 2264, +2329, 2393, 2345, +2345, 2425, 2441, +2361, 2425, 2505, +2361, 2457, 2585, +2393, 2473, 2666, +2409, 2537, 1654, +2377, 2521, 1654, +2393, 2537, 1702, +2377, 2537, 1734, +2377, 2537, 1799, +2393, 2553, 1895, +2377, 2553, 1991, +2377, 2537, 2072, +2377, 2553, 2120, +2425, 2553, 2216, +2409, 2553, 2280, +2457, 2585, 2345, +2473, 2585, 2441, +2505, 2602, 2505, +2489, 2618, 2585, +2521, 2618, 2666, +2569, 2650, 2762, +2505, 2746, 1799, +2505, 2746, 1783, +2489, 2746, 1815, +2505, 2746, 1879, +2505, 2746, 1943, +2521, 2762, 1991, +2537, 2746, 2104, +2537, 2762, 2184, +2553, 2762, 2280, +2553, 2762, 2377, +2553, 2778, 2441, +2569, 2762, 2473, +2618, 2778, 2521, +2650, 2778, 2553, +2618, 2810, 2698, +2666, 2794, 2794, +2682, 2810, 2875, +2666, 2939, 1895, +2682, 2939, 1895, +2682, 2955, 1943, +2682, 2939, 1991, +2682, 2939, 2023, +2666, 2939, 2088, +2698, 2923, 2216, +2714, 2939, 2312, +2714, 2939, 2393, +2730, 2955, 2457, +2746, 2939, 2521, +2730, 2955, 2585, +2778, 2971, 2666, +2794, 2955, 2698, +2826, 2971, 2778, +2810, 2987, 2891, +2842, 3003, 2955, +2826, 3164, 2023, +2794, 3131, 2039, +2794, 3148, 2039, +2794, 3164, 2120, +2810, 3148, 2168, +2826, 3148, 2280, +2875, 3164, 2329, +2875, 3148, 2409, +2842, 3131, 2489, +2875, 3148, 2569, +2875, 3148, 2666, +2923, 3164, 2714, +2939, 3180, 2762, +2939, 3180, 2826, +3003, 3196, 2891, +3003, 3180, 2955, +2987, 3196, 3051, +2923, 3340, 2136, +2971, 3340, 2184, +2955, 3340, 2216, +2923, 3324, 2232, +2907, 3324, 2296, +2955, 3340, 2345, +2971, 3324, 2441, +2971, 3340, 2521, +2987, 3340, 2618, +3003, 3340, 2682, +3067, 3340, 2762, +3019, 3324, 2794, +3067, 3340, 2891, +3067, 3356, 2971, +3115, 3388, 3035, +3131, 3372, 3051, +3164, 3388, 3148, +3131, 3533, 2296, +3148, 3565, 2361, +3148, 3565, 2345, +3164, 3549, 2425, +3164, 3565, 2457, +3148, 3549, 2489, +3164, 3549, 2585, +3148, 3565, 2650, +3164, 3565, 2746, +3212, 3549, 2810, +3244, 3549, 2891, +3244, 3533, 2971, +3244, 3549, 3019, +3276, 3565, 3099, +3260, 3565, 3180, +3308, 3581, 3228, +3340, 3597, 3308, +1734, 883, 755, +1734, 867, 819, +1670, 931, 964, +1510, 996, 1076, +1429, 1028, 1140, +1381, 1060, 1204, +1397, 1108, 1301, +1413, 1124, 1365, +1429, 1140, 1461, +1429, 1156, 1542, +1477, 1188, 1622, +1510, 1237, 1702, +1542, 1253, 1766, +1542, 1301, 1831, +1558, 1333, 1927, +1622, 1381, 2039, +1654, 1397, 2120, +1734, 915, 755, +1750, 915, 819, +1654, 947, 980, +1558, 1012, 1076, +1477, 1076, 1204, +1413, 1124, 1253, +1413, 1140, 1317, +1429, 1140, 1397, +1445, 1172, 1461, +1461, 1188, 1574, +1510, 1220, 1606, +1510, 1253, 1686, +1542, 1269, 1766, +1542, 1333, 1863, +1590, 1365, 1975, +1622, 1397, 2056, +1686, 1429, 2136, +1750, 1012, 771, +1734, 1028, 883, +1718, 1028, 980, +1622, 1076, 1108, +1542, 1124, 1220, +1429, 1172, 1269, +1445, 1204, 1349, +1477, 1220, 1445, +1477, 1237, 1493, +1493, 1237, 1558, +1526, 1285, 1654, +1558, 1301, 1734, +1574, 1333, 1815, +1590, 1381, 1911, +1638, 1413, 2007, +1654, 1445, 2072, +1702, 1493, 2152, +1879, 1092, 739, +1799, 1124, 883, +1783, 1140, 1012, +1718, 1172, 1156, +1606, 1220, 1253, +1510, 1237, 1317, +1510, 1269, 1365, +1510, 1301, 1461, +1542, 1317, 1542, +1542, 1333, 1606, +1574, 1349, 1686, +1606, 1397, 1799, +1590, 1413, 1863, +1590, 1445, 1943, +1654, 1477, 2007, +1702, 1526, 2120, +1750, 1542, 2200, +1863, 1220, 771, +1895, 1237, 835, +1831, 1237, 964, +1783, 1269, 1140, +1718, 1301, 1285, +1606, 1349, 1397, +1558, 1381, 1429, +1558, 1397, 1526, +1590, 1429, 1622, +1606, 1461, 1686, +1622, 1461, 1750, +1654, 1477, 1847, +1654, 1526, 1895, +1686, 1542, 1975, +1734, 1574, 2072, +1750, 1622, 2184, +1799, 1654, 2232, +1863, 1413, 899, +1895, 1413, 931, +1879, 1413, 1028, +1879, 1397, 1124, +1815, 1429, 1317, +1734, 1477, 1461, +1670, 1510, 1526, +1654, 1542, 1574, +1670, 1558, 1670, +1670, 1574, 1750, +1686, 1574, 1815, +1702, 1622, 1895, +1718, 1654, 1991, +1734, 1654, 2039, +1766, 1670, 2104, +1847, 1734, 2232, +1911, 1734, 2312, +1879, 1606, 1028, +1895, 1606, 1092, +1895, 1622, 1156, +1943, 1638, 1237, +1927, 1606, 1301, +1911, 1622, 1477, +1831, 1654, 1590, +1734, 1686, 1638, +1766, 1702, 1750, +1766, 1718, 1783, +1799, 1750, 1895, +1799, 1766, 1975, +1831, 1783, 2056, +1879, 1799, 2120, +1911, 1831, 2200, +1959, 1847, 2296, +1959, 1863, 2329, +1959, 1815, 1220, +1943, 1815, 1237, +1927, 1815, 1269, +1927, 1815, 1365, +1927, 1815, 1445, +2007, 1815, 1493, +2023, 1831, 1590, +1943, 1847, 1783, +1879, 1863, 1815, +1911, 1879, 1895, +1911, 1895, 1959, +1911, 1911, 2023, +1943, 1927, 2072, +1975, 1943, 2168, +2023, 1959, 2248, +2023, 2007, 2329, +2104, 2023, 2441, +2056, 1991, 1365, +2039, 1975, 1381, +2039, 1975, 1413, +2039, 1991, 1445, +2023, 1991, 1526, +2007, 1991, 1590, +2039, 2007, 1702, +2039, 2007, 1783, +2023, 2023, 1911, +2023, 2039, 1975, +2007, 2056, 1991, +2056, 2072, 2104, +2072, 2072, 2152, +2104, 2088, 2232, +2168, 2136, 2345, +2216, 2168, 2441, +2232, 2168, 2505, +2248, 2184, 1461, +2248, 2184, 1445, +2216, 2184, 1510, +2216, 2184, 1558, +2200, 2184, 1622, +2200, 2168, 1702, +2200, 2184, 1799, +2232, 2200, 1895, +2232, 2232, 1959, +2216, 2232, 2039, +2216, 2248, 2120, +2216, 2264, 2200, +2232, 2280, 2264, +2264, 2280, 2345, +2264, 2312, 2425, +2280, 2312, 2489, +2312, 2312, 2553, +2329, 2377, 1574, +2329, 2377, 1574, +2312, 2361, 1606, +2329, 2361, 1686, +2329, 2361, 1718, +2312, 2377, 1783, +2312, 2361, 1863, +2329, 2393, 1991, +2329, 2377, 2039, +2361, 2393, 2152, +2377, 2393, 2216, +2361, 2409, 2312, +2393, 2425, 2393, +2393, 2441, 2457, +2409, 2473, 2553, +2425, 2489, 2634, +2457, 2489, 2666, +2457, 2553, 1638, +2457, 2553, 1670, +2489, 2553, 1718, +2457, 2537, 1750, +2473, 2569, 1847, +2441, 2553, 1895, +2457, 2553, 1991, +2505, 2585, 2072, +2473, 2553, 2104, +2489, 2585, 2248, +2505, 2585, 2312, +2505, 2602, 2361, +2537, 2618, 2473, +2553, 2618, 2537, +2553, 2634, 2618, +2602, 2666, 2714, +2602, 2682, 2794, +2618, 2778, 1799, +2634, 2762, 1831, +2618, 2762, 1847, +2618, 2794, 1911, +2618, 2778, 1959, +2602, 2778, 1991, +2618, 2762, 2072, +2602, 2778, 2184, +2602, 2762, 2248, +2618, 2778, 2377, +2666, 2794, 2409, +2666, 2810, 2489, +2682, 2794, 2521, +2730, 2794, 2618, +2730, 2810, 2698, +2762, 2826, 2778, +2778, 2826, 2842, +2762, 2955, 1895, +2762, 2939, 1895, +2778, 2971, 1943, +2730, 2939, 1975, +2778, 2955, 2056, +2762, 2971, 2136, +2746, 2971, 2184, +2810, 2971, 2296, +2794, 2971, 2361, +2810, 2971, 2473, +2810, 2955, 2537, +2794, 2971, 2618, +2826, 2971, 2682, +2858, 2971, 2730, +2907, 3003, 2778, +2875, 3019, 2923, +2939, 3051, 2987, +2907, 3148, 2039, +2923, 3180, 2056, +2907, 3164, 2088, +2891, 3164, 2104, +2891, 3164, 2184, +2891, 3164, 2264, +2939, 3180, 2312, +2923, 3148, 2393, +2939, 3164, 2505, +2939, 3180, 2618, +2955, 3164, 2666, +2987, 3180, 2714, +2987, 3196, 2794, +3003, 3196, 2858, +3019, 3180, 2891, +3051, 3196, 2971, +3019, 3196, 3051, +3019, 3340, 2168, +3019, 3340, 2168, +3035, 3340, 2200, +3003, 3356, 2232, +3035, 3356, 2312, +3035, 3356, 2345, +3035, 3356, 2441, +3051, 3340, 2505, +3051, 3372, 2650, +3051, 3356, 2714, +3099, 3372, 2762, +3131, 3404, 2875, +3148, 3388, 2939, +3148, 3388, 2971, +3164, 3388, 3035, +3196, 3404, 3099, +3228, 3404, 3164, +3212, 3565, 2345, +3212, 3565, 2345, +3212, 3565, 2345, +3244, 3581, 2425, +3228, 3565, 2441, +3244, 3565, 2521, +3228, 3581, 2585, +3276, 3565, 2682, +3228, 3565, 2730, +3228, 3549, 2794, +3260, 3565, 2875, +3276, 3549, 2971, +3308, 3565, 3051, +3324, 3581, 3115, +3308, 3581, 3180, +3356, 3581, 3228, +3404, 3613, 3292, +1927, 964, 803, +1911, 964, 899, +1847, 1012, 1028, +1766, 1092, 1172, +1654, 1140, 1269, +1574, 1204, 1333, +1574, 1220, 1365, +1558, 1220, 1429, +1574, 1253, 1510, +1606, 1269, 1622, +1606, 1285, 1654, +1638, 1301, 1766, +1670, 1349, 1831, +1702, 1365, 1911, +1686, 1413, 1991, +1766, 1461, 2088, +1783, 1510, 2184, +1959, 1012, 835, +1943, 1012, 899, +1863, 1060, 1028, +1783, 1108, 1172, +1702, 1172, 1253, +1590, 1220, 1317, +1558, 1220, 1349, +1590, 1253, 1461, +1590, 1253, 1510, +1590, 1285, 1590, +1638, 1317, 1686, +1638, 1333, 1766, +1686, 1365, 1847, +1686, 1381, 1927, +1734, 1445, 2007, +1766, 1461, 2088, +1799, 1510, 2200, +1927, 1076, 819, +1911, 1076, 899, +1911, 1092, 1012, +1799, 1140, 1140, +1750, 1220, 1301, +1638, 1253, 1365, +1606, 1301, 1413, +1606, 1301, 1493, +1622, 1333, 1542, +1654, 1349, 1654, +1638, 1349, 1718, +1686, 1381, 1799, +1702, 1413, 1895, +1734, 1429, 1943, +1734, 1493, 2039, +1799, 1526, 2136, +1831, 1574, 2216, +1991, 1156, 803, +1943, 1204, 915, +1927, 1188, 1044, +1879, 1204, 1140, +1799, 1253, 1285, +1702, 1317, 1397, +1638, 1365, 1445, +1638, 1381, 1542, +1654, 1381, 1606, +1670, 1413, 1686, +1686, 1429, 1750, +1702, 1445, 1831, +1750, 1477, 1895, +1766, 1526, 1991, +1783, 1558, 2072, +1847, 1606, 2184, +1847, 1606, 2200, +2088, 1285, 819, +2072, 1285, 883, +1975, 1333, 1092, +1959, 1333, 1220, +1879, 1365, 1349, +1766, 1413, 1461, +1686, 1445, 1510, +1702, 1477, 1590, +1702, 1477, 1622, +1750, 1510, 1718, +1750, 1542, 1799, +1783, 1558, 1879, +1799, 1590, 1959, +1815, 1622, 2056, +1815, 1638, 2088, +1895, 1670, 2200, +1943, 1702, 2280, +2056, 1461, 915, +2088, 1461, 947, +2088, 1461, 1028, +2039, 1477, 1188, +1991, 1493, 1365, +1927, 1526, 1510, +1847, 1574, 1590, +1799, 1622, 1638, +1799, 1638, 1734, +1831, 1638, 1783, +1831, 1654, 1847, +1847, 1654, 1911, +1879, 1686, 2023, +1879, 1734, 2104, +1943, 1750, 2168, +2007, 1783, 2248, +2007, 1799, 2329, +2072, 1654, 1028, +2088, 1638, 1060, +2104, 1638, 1108, +2136, 1638, 1188, +2104, 1638, 1285, +2072, 1670, 1510, +1991, 1702, 1638, +1911, 1734, 1734, +1879, 1766, 1766, +1911, 1783, 1863, +1943, 1799, 1927, +1975, 1815, 1991, +1959, 1847, 2088, +1975, 1847, 2152, +2007, 1863, 2232, +2056, 1895, 2312, +2104, 1927, 2377, +2136, 1847, 1172, +2136, 1847, 1188, +2152, 1847, 1269, +2136, 1831, 1317, +2168, 1847, 1413, +2200, 1815, 1461, +2136, 1847, 1654, +2120, 1879, 1766, +2023, 1911, 1815, +2039, 1911, 1895, +2039, 1927, 1959, +2088, 1975, 2088, +2072, 1991, 2136, +2088, 2023, 2248, +2152, 2007, 2280, +2200, 2039, 2377, +2216, 2072, 2441, +2216, 2007, 1301, +2184, 2023, 1365, +2200, 2007, 1381, +2200, 2039, 1461, +2184, 2039, 1510, +2200, 2023, 1590, +2232, 2039, 1686, +2296, 2023, 1734, +2184, 2056, 1911, +2184, 2072, 1975, +2168, 2072, 2039, +2152, 2120, 2136, +2200, 2152, 2216, +2232, 2152, 2296, +2264, 2184, 2393, +2312, 2200, 2473, +2312, 2232, 2553, +2345, 2216, 1461, +2361, 2216, 1510, +2345, 2216, 1526, +2329, 2216, 1590, +2329, 2232, 1654, +2312, 2232, 1750, +2312, 2248, 1847, +2345, 2248, 1895, +2361, 2264, 1959, +2329, 2264, 2104, +2329, 2296, 2184, +2296, 2296, 2216, +2312, 2312, 2312, +2329, 2312, 2377, +2345, 2312, 2441, +2361, 2345, 2505, +2425, 2361, 2634, +2505, 2393, 1606, +2489, 2377, 1590, +2489, 2377, 1622, +2473, 2393, 1686, +2457, 2377, 1734, +2457, 2393, 1831, +2473, 2393, 1895, +2473, 2409, 2007, +2489, 2409, 2072, +2473, 2425, 2152, +2473, 2441, 2232, +2473, 2457, 2296, +2473, 2489, 2393, +2505, 2489, 2473, +2489, 2505, 2521, +2505, 2505, 2602, +2553, 2537, 2698, +2585, 2569, 1686, +2585, 2569, 1686, +2585, 2585, 1750, +2585, 2585, 1783, +2569, 2585, 1847, +2618, 2618, 1959, +2569, 2585, 2007, +2569, 2602, 2072, +2602, 2618, 2152, +2602, 2634, 2264, +2585, 2618, 2329, +2618, 2634, 2409, +2634, 2666, 2505, +2650, 2666, 2569, +2650, 2666, 2634, +2666, 2714, 2730, +2666, 2698, 2778, +2746, 2778, 1831, +2698, 2778, 1815, +2714, 2810, 1879, +2714, 2794, 1927, +2730, 2794, 1975, +2698, 2794, 2023, +2730, 2794, 2088, +2698, 2794, 2168, +2698, 2810, 2248, +2746, 2810, 2361, +2762, 2810, 2457, +2762, 2794, 2505, +2778, 2810, 2553, +2794, 2826, 2666, +2842, 2858, 2762, +2842, 2842, 2810, +2842, 2858, 2891, +2858, 2971, 1943, +2875, 2971, 1943, +2842, 2955, 1959, +2858, 2987, 2007, +2875, 2971, 2072, +2858, 2971, 2120, +2842, 2971, 2216, +2826, 2987, 2280, +2858, 2987, 2361, +2858, 2987, 2441, +2875, 2987, 2553, +2907, 3003, 2634, +2891, 3003, 2682, +2939, 3003, 2698, +2971, 3019, 2794, +2939, 3035, 2907, +3003, 3067, 3019, +2971, 3180, 2039, +3003, 3180, 2072, +3019, 3196, 2136, +2987, 3180, 2152, +2987, 3196, 2216, +3003, 3180, 2280, +2987, 3180, 2329, +3019, 3196, 2409, +3051, 3196, 2489, +3035, 3180, 2602, +3019, 3196, 2682, +3051, 3196, 2746, +3051, 3180, 2794, +3051, 3196, 2875, +3099, 3196, 2891, +3115, 3196, 2955, +3148, 3228, 3067, +3099, 3372, 2184, +3115, 3356, 2200, +3131, 3388, 2216, +3115, 3372, 2280, +3099, 3372, 2296, +3115, 3388, 2345, +3115, 3388, 2441, +3164, 3404, 2537, +3180, 3404, 2634, +3148, 3388, 2714, +3148, 3388, 2778, +3180, 3404, 2858, +3196, 3388, 2923, +3244, 3404, 3003, +3260, 3404, 3083, +3276, 3404, 3115, +3324, 3421, 3196, +3292, 3565, 2312, +3308, 3581, 2329, +3276, 3565, 2345, +3292, 3581, 2409, +3276, 3581, 2425, +3308, 3581, 2505, +3292, 3581, 2569, +3308, 3581, 2666, +3292, 3581, 2730, +3308, 3581, 2826, +3324, 3581, 2891, +3356, 3581, 2971, +3372, 3597, 3083, +3372, 3581, 3148, +3404, 3613, 3212, +3421, 3613, 3276, +3437, 3613, 3308, +2120, 1060, 867, +2104, 1060, 931, +2056, 1092, 1044, +1943, 1140, 1188, +1831, 1204, 1285, +1750, 1269, 1381, +1718, 1301, 1445, +1702, 1317, 1510, +1734, 1349, 1606, +1750, 1365, 1670, +1750, 1381, 1734, +1766, 1381, 1799, +1815, 1429, 1879, +1831, 1477, 1975, +1879, 1493, 2072, +1911, 1558, 2168, +1927, 1590, 2264, +2088, 1108, 867, +2072, 1092, 947, +2072, 1140, 1076, +1975, 1172, 1188, +1895, 1237, 1301, +1783, 1285, 1413, +1718, 1349, 1445, +1734, 1349, 1542, +1750, 1365, 1622, +1734, 1381, 1686, +1766, 1397, 1766, +1783, 1429, 1815, +1815, 1445, 1927, +1847, 1493, 1991, +1895, 1510, 2088, +1911, 1558, 2184, +1959, 1590, 2248, +2136, 1188, 899, +2120, 1204, 1012, +2104, 1188, 1076, +2023, 1237, 1237, +1927, 1269, 1333, +1831, 1333, 1461, +1750, 1381, 1477, +1766, 1397, 1558, +1750, 1397, 1606, +1783, 1445, 1686, +1799, 1445, 1766, +1815, 1477, 1831, +1847, 1510, 1943, +1879, 1542, 2007, +1895, 1558, 2120, +1959, 1590, 2184, +1991, 1622, 2248, +2168, 1253, 915, +2120, 1253, 996, +2120, 1269, 1108, +2072, 1269, 1188, +1975, 1349, 1381, +1895, 1397, 1477, +1815, 1445, 1526, +1799, 1461, 1590, +1815, 1477, 1654, +1799, 1493, 1718, +1847, 1526, 1815, +1847, 1542, 1879, +1895, 1590, 2007, +1895, 1606, 2056, +1943, 1622, 2104, +1959, 1654, 2200, +2023, 1702, 2312, +2280, 1333, 835, +2232, 1365, 947, +2168, 1381, 1108, +2152, 1397, 1204, +2088, 1445, 1381, +1991, 1461, 1477, +1911, 1542, 1590, +1847, 1558, 1638, +1895, 1590, 1718, +1879, 1606, 1799, +1895, 1622, 1831, +1911, 1622, 1911, +1927, 1654, 1975, +1991, 1670, 2072, +2023, 1702, 2200, +2039, 1750, 2232, +2088, 1783, 2329, +2329, 1493, 931, +2312, 1493, 980, +2296, 1493, 1076, +2184, 1542, 1285, +2200, 1542, 1381, +2120, 1606, 1526, +2023, 1638, 1638, +1943, 1670, 1686, +1943, 1686, 1766, +1959, 1718, 1831, +1975, 1718, 1895, +1991, 1718, 1975, +2072, 1766, 2056, +2088, 1799, 2136, +2072, 1815, 2200, +2072, 1831, 2280, +2120, 1879, 2377, +2329, 1686, 1076, +2345, 1686, 1076, +2361, 1702, 1140, +2377, 1686, 1237, +2312, 1702, 1397, +2264, 1702, 1526, +2168, 1750, 1670, +2120, 1799, 1766, +2072, 1831, 1831, +2056, 1831, 1895, +2104, 1863, 1959, +2104, 1863, 2023, +2136, 1879, 2104, +2136, 1911, 2184, +2152, 1959, 2280, +2184, 1959, 2345, +2232, 1991, 2441, +2345, 1863, 1156, +2312, 1863, 1204, +2345, 1879, 1253, +2345, 1863, 1301, +2377, 1863, 1397, +2377, 1879, 1493, +2312, 1895, 1686, +2280, 1927, 1815, +2184, 1959, 1895, +2152, 1975, 1927, +2184, 1991, 2007, +2216, 2007, 2088, +2248, 2023, 2168, +2216, 2039, 2232, +2264, 2072, 2329, +2312, 2104, 2425, +2361, 2136, 2521, +2393, 2039, 1301, +2393, 2039, 1333, +2409, 2039, 1365, +2409, 2039, 1445, +2441, 2039, 1477, +2425, 2039, 1558, +2473, 2039, 1670, +2425, 2072, 1847, +2361, 2120, 1975, +2312, 2136, 2007, +2329, 2152, 2104, +2345, 2168, 2168, +2361, 2184, 2248, +2329, 2200, 2296, +2393, 2232, 2393, +2393, 2232, 2489, +2425, 2280, 2553, +2489, 2264, 1510, +2489, 2264, 1510, +2489, 2280, 1558, +2505, 2264, 1606, +2457, 2280, 1670, +2473, 2280, 1734, +2457, 2264, 1783, +2521, 2280, 1863, +2553, 2248, 1943, +2425, 2296, 2152, +2425, 2296, 2184, +2425, 2312, 2248, +2473, 2345, 2345, +2457, 2361, 2409, +2489, 2377, 2489, +2505, 2377, 2553, +2537, 2409, 2650, +2634, 2441, 1606, +2618, 2425, 1622, +2602, 2425, 1670, +2602, 2441, 1718, +2618, 2457, 1799, +2569, 2441, 1863, +2569, 2457, 1927, +2585, 2473, 2039, +2585, 2457, 2104, +2618, 2457, 2136, +2569, 2473, 2280, +2585, 2489, 2361, +2569, 2505, 2425, +2569, 2521, 2505, +2602, 2521, 2569, +2634, 2569, 2650, +2666, 2569, 2746, +2698, 2602, 1702, +2714, 2618, 1750, +2746, 2618, 1799, +2714, 2618, 1847, +2730, 2634, 1911, +2714, 2634, 1975, +2698, 2634, 2039, +2714, 2618, 2088, +2714, 2650, 2200, +2746, 2666, 2312, +2730, 2682, 2377, +2714, 2682, 2441, +2714, 2698, 2505, +2714, 2714, 2618, +2714, 2698, 2682, +2730, 2730, 2762, +2746, 2746, 2842, +2842, 2810, 1847, +2842, 2810, 1879, +2858, 2794, 1911, +2875, 2810, 1911, +2858, 2810, 1975, +2842, 2810, 2039, +2842, 2794, 2120, +2826, 2794, 2184, +2858, 2810, 2296, +2858, 2826, 2329, +2858, 2842, 2441, +2858, 2842, 2537, +2875, 2842, 2602, +2875, 2858, 2682, +2907, 2875, 2762, +2907, 2891, 2826, +2907, 2907, 2907, +2971, 3003, 1943, +2971, 2971, 1959, +2987, 2987, 2007, +2939, 2987, 2023, +2971, 2987, 2104, +2955, 2987, 2152, +2939, 3003, 2232, +2987, 3003, 2312, +2955, 3003, 2361, +2987, 3003, 2473, +3003, 3019, 2585, +2987, 3035, 2682, +3019, 3035, 2714, +3019, 3051, 2762, +3035, 3051, 2858, +3067, 3067, 2971, +3051, 3083, 3035, +3115, 3212, 2104, +3115, 3212, 2088, +3115, 3212, 2136, +3083, 3196, 2184, +3083, 3212, 2216, +3083, 3212, 2280, +3099, 3196, 2312, +3083, 3212, 2409, +3099, 3196, 2473, +3067, 3196, 2569, +3099, 3212, 2666, +3115, 3212, 2746, +3148, 3228, 2826, +3131, 3228, 2875, +3164, 3228, 2923, +3196, 3244, 3003, +3212, 3260, 3115, +3228, 3404, 2216, +3244, 3404, 2232, +3212, 3404, 2264, +3228, 3404, 2296, +3212, 3404, 2345, +3196, 3404, 2377, +3212, 3388, 2441, +3212, 3404, 2521, +3228, 3404, 2618, +3228, 3388, 2714, +3324, 3421, 2810, +3292, 3421, 2907, +3292, 3404, 2955, +3340, 3421, 3051, +3324, 3437, 3115, +3372, 3453, 3164, +3388, 3437, 3196, +3388, 3581, 2361, +3421, 3613, 2377, +3404, 3597, 2409, +3388, 3597, 2441, +3388, 3597, 2473, +3372, 3597, 2505, +3356, 3597, 2553, +3388, 3613, 2666, +3388, 3629, 2746, +3372, 3613, 2826, +3421, 3581, 2891, +3421, 3613, 2971, +3453, 3581, 3099, +3469, 3613, 3148, +3469, 3597, 3212, +3485, 3613, 3260, +3517, 3629, 3308, +2296, 1156, 915, +2296, 1156, 1012, +2264, 1172, 1140, +2168, 1237, 1237, +2072, 1301, 1381, +1975, 1333, 1445, +1879, 1397, 1542, +1895, 1429, 1558, +1879, 1445, 1654, +1911, 1461, 1718, +1927, 1493, 1815, +1927, 1510, 1879, +1959, 1526, 1959, +1975, 1558, 2039, +2056, 1574, 2120, +2088, 1622, 2216, +2120, 1654, 2312, +2296, 1172, 931, +2296, 1188, 1012, +2280, 1188, 1124, +2184, 1253, 1285, +2072, 1301, 1381, +1991, 1365, 1445, +1911, 1413, 1526, +1895, 1445, 1574, +1911, 1461, 1654, +1911, 1493, 1750, +1943, 1510, 1831, +1943, 1526, 1911, +1959, 1574, 1991, +2007, 1574, 2039, +2056, 1606, 2104, +2072, 1622, 2216, +2120, 1670, 2280, +2312, 1253, 947, +2329, 1237, 996, +2329, 1253, 1124, +2232, 1285, 1237, +2136, 1365, 1381, +2023, 1413, 1493, +1927, 1461, 1574, +1943, 1510, 1638, +1927, 1526, 1702, +1943, 1526, 1750, +1975, 1574, 1863, +1975, 1574, 1895, +1991, 1590, 1991, +2023, 1606, 2072, +2072, 1622, 2152, +2104, 1670, 2232, +2136, 1702, 2361, +2361, 1317, 947, +2329, 1333, 1060, +2329, 1349, 1140, +2296, 1349, 1269, +2184, 1429, 1413, +2120, 1477, 1542, +2007, 1542, 1622, +1959, 1558, 1638, +1959, 1574, 1718, +1959, 1590, 1783, +1975, 1606, 1847, +1975, 1622, 1927, +2056, 1638, 2023, +2072, 1686, 2104, +2120, 1702, 2200, +2136, 1734, 2248, +2184, 1750, 2345, +2473, 1397, 915, +2425, 1445, 1060, +2361, 1445, 1172, +2345, 1445, 1285, +2296, 1477, 1397, +2200, 1542, 1510, +2088, 1590, 1622, +2023, 1654, 1702, +2023, 1654, 1750, +2039, 1654, 1815, +2056, 1686, 1911, +2088, 1702, 1991, +2120, 1750, 2056, +2152, 1766, 2136, +2152, 1783, 2200, +2200, 1815, 2296, +2168, 1847, 2377, +2537, 1558, 947, +2505, 1526, 996, +2489, 1558, 1140, +2409, 1606, 1349, +2377, 1606, 1445, +2296, 1622, 1574, +2232, 1686, 1670, +2152, 1734, 1766, +2104, 1766, 1799, +2136, 1766, 1879, +2136, 1799, 1943, +2136, 1815, 2007, +2168, 1815, 2088, +2184, 1847, 2168, +2216, 1863, 2232, +2312, 1911, 2377, +2280, 1943, 2425, +2553, 1718, 1012, +2521, 1702, 1060, +2569, 1702, 1140, +2521, 1718, 1237, +2441, 1734, 1429, +2441, 1766, 1590, +2377, 1799, 1670, +2264, 1847, 1815, +2184, 1895, 1847, +2216, 1911, 1943, +2216, 1927, 2007, +2232, 1943, 2088, +2248, 1943, 2152, +2296, 1959, 2264, +2312, 1975, 2280, +2329, 2007, 2361, +2361, 2072, 2473, +2585, 1911, 1156, +2585, 1911, 1188, +2618, 1911, 1237, +2585, 1895, 1317, +2585, 1879, 1381, +2569, 1927, 1590, +2537, 1927, 1718, +2441, 1975, 1847, +2345, 2007, 1943, +2345, 2039, 2007, +2329, 2056, 2072, +2345, 2056, 2136, +2377, 2104, 2232, +2425, 2120, 2296, +2409, 2136, 2393, +2425, 2168, 2473, +2489, 2200, 2553, +2618, 2088, 1285, +2618, 2104, 1317, +2602, 2104, 1381, +2634, 2072, 1413, +2618, 2104, 1510, +2666, 2088, 1606, +2666, 2104, 1702, +2602, 2120, 1863, +2537, 2152, 2023, +2441, 2200, 2088, +2457, 2216, 2136, +2473, 2216, 2232, +2473, 2232, 2296, +2489, 2248, 2361, +2473, 2248, 2441, +2505, 2296, 2537, +2553, 2296, 2602, +2650, 2280, 1445, +2666, 2280, 1477, +2634, 2264, 1526, +2634, 2264, 1558, +2634, 2280, 1622, +2650, 2280, 1686, +2650, 2296, 1783, +2746, 2264, 1863, +2682, 2280, 2023, +2602, 2312, 2184, +2585, 2361, 2216, +2602, 2361, 2264, +2585, 2377, 2393, +2618, 2393, 2489, +2602, 2425, 2537, +2618, 2425, 2602, +2634, 2473, 2698, +2714, 2473, 1622, +2714, 2473, 1654, +2698, 2473, 1670, +2730, 2473, 1718, +2730, 2489, 1783, +2698, 2473, 1831, +2698, 2457, 1911, +2714, 2489, 1991, +2762, 2473, 2056, +2794, 2473, 2136, +2746, 2505, 2329, +2666, 2537, 2393, +2698, 2553, 2457, +2698, 2553, 2537, +2714, 2585, 2618, +2746, 2618, 2714, +2762, 2602, 2762, +2842, 2666, 1783, +2842, 2666, 1783, +2826, 2650, 1799, +2858, 2666, 1879, +2858, 2666, 1943, +2826, 2666, 1959, +2842, 2682, 2072, +2826, 2698, 2168, +2794, 2682, 2216, +2826, 2682, 2296, +2842, 2682, 2361, +2826, 2714, 2489, +2826, 2730, 2569, +2810, 2730, 2634, +2858, 2746, 2682, +2875, 2746, 2746, +2875, 2762, 2826, +2971, 2810, 1879, +2971, 2826, 1895, +2955, 2810, 1911, +2971, 2826, 1927, +2971, 2810, 2007, +2971, 2826, 2088, +2971, 2842, 2152, +2955, 2842, 2248, +2955, 2875, 2329, +2971, 2858, 2393, +3003, 2875, 2489, +2971, 2875, 2553, +2971, 2891, 2666, +2971, 2907, 2730, +2955, 2907, 2794, +2987, 2939, 2891, +2987, 2939, 2955, +3083, 3035, 1991, +3067, 3003, 1975, +3067, 3035, 2023, +3067, 3035, 2072, +3083, 3019, 2120, +3067, 3019, 2184, +3083, 3019, 2280, +3099, 3035, 2329, +3083, 3035, 2377, +3099, 3051, 2489, +3067, 3051, 2569, +3067, 3067, 2650, +3115, 3083, 2746, +3131, 3083, 2810, +3131, 3099, 2891, +3164, 3115, 2971, +3164, 3131, 3035, +3180, 3196, 2072, +3180, 3196, 2104, +3180, 3196, 2136, +3180, 3212, 2168, +3196, 3196, 2232, +3180, 3228, 2280, +3164, 3196, 2329, +3180, 3212, 2409, +3180, 3212, 2505, +3196, 3244, 2585, +3180, 3212, 2666, +3228, 3228, 2746, +3212, 3244, 2858, +3228, 3244, 2923, +3276, 3260, 2971, +3260, 3276, 3083, +3276, 3324, 3180, +3340, 3421, 2232, +3324, 3404, 2264, +3340, 3421, 2296, +3324, 3421, 2329, +3372, 3437, 2377, +3340, 3421, 2393, +3340, 3421, 2473, +3356, 3421, 2569, +3356, 3437, 2650, +3372, 3437, 2698, +3372, 3453, 2778, +3372, 3453, 2875, +3388, 3453, 2971, +3421, 3469, 3099, +3437, 3453, 3131, +3453, 3469, 3180, +3453, 3469, 3244, +3485, 3597, 2393, +3517, 3629, 2409, +3501, 3613, 2409, +3485, 3613, 2473, +3469, 3613, 2489, +3469, 3613, 2537, +3501, 3645, 2602, +3501, 3629, 2682, +3485, 3645, 2746, +3485, 3629, 2842, +3517, 3629, 2907, +3517, 3613, 3003, +3485, 3629, 3099, +3533, 3645, 3196, +3533, 3629, 3244, +3549, 3661, 3308, +3597, 3661, 3356, +2505, 1253, 996, +2537, 1253, 1060, +2473, 1253, 1140, +2377, 1317, 1317, +2296, 1365, 1413, +2184, 1445, 1526, +2104, 1493, 1622, +2039, 1542, 1670, +2072, 1574, 1718, +2039, 1558, 1750, +2056, 1574, 1847, +2104, 1606, 1943, +2120, 1638, 2039, +2152, 1654, 2104, +2184, 1670, 2168, +2232, 1702, 2264, +2232, 1734, 2345, +2521, 1269, 980, +2505, 1301, 1076, +2505, 1285, 1156, +2393, 1333, 1301, +2312, 1381, 1429, +2200, 1461, 1542, +2120, 1510, 1638, +2056, 1574, 1654, +2072, 1574, 1718, +2104, 1590, 1799, +2104, 1606, 1863, +2136, 1622, 1959, +2152, 1654, 2056, +2168, 1686, 2104, +2200, 1702, 2200, +2232, 1734, 2248, +2264, 1750, 2329, +2521, 1333, 1012, +2521, 1349, 1108, +2505, 1349, 1188, +2457, 1381, 1317, +2377, 1429, 1429, +2264, 1477, 1526, +2136, 1542, 1606, +2088, 1606, 1686, +2056, 1606, 1734, +2120, 1638, 1831, +2136, 1638, 1895, +2136, 1638, 1959, +2168, 1670, 2072, +2200, 1702, 2104, +2232, 1718, 2184, +2248, 1766, 2312, +2264, 1783, 2361, +2537, 1397, 1028, +2537, 1413, 1092, +2521, 1413, 1172, +2521, 1429, 1317, +2425, 1493, 1445, +2296, 1542, 1574, +2232, 1590, 1670, +2152, 1638, 1734, +2136, 1670, 1783, +2168, 1686, 1879, +2184, 1718, 1943, +2184, 1718, 2007, +2232, 1750, 2088, +2216, 1750, 2152, +2232, 1783, 2232, +2280, 1815, 2329, +2345, 1815, 2377, +2634, 1477, 1012, +2585, 1510, 1092, +2553, 1542, 1220, +2569, 1526, 1349, +2489, 1558, 1461, +2393, 1622, 1606, +2312, 1654, 1686, +2232, 1702, 1766, +2200, 1750, 1815, +2200, 1766, 1895, +2216, 1766, 1959, +2216, 1783, 2023, +2248, 1815, 2088, +2280, 1831, 2168, +2296, 1863, 2248, +2361, 1879, 2345, +2409, 1911, 2441, +2698, 1590, 980, +2682, 1590, 1028, +2650, 1638, 1188, +2569, 1654, 1317, +2585, 1654, 1461, +2489, 1686, 1590, +2409, 1734, 1718, +2312, 1799, 1799, +2248, 1847, 1847, +2280, 1863, 1927, +2264, 1863, 1975, +2329, 1895, 2072, +2345, 1895, 2136, +2377, 1911, 2248, +2393, 1943, 2312, +2425, 1959, 2345, +2425, 1975, 2441, +2794, 1734, 1044, +2778, 1718, 1092, +2778, 1734, 1172, +2730, 1766, 1285, +2650, 1799, 1477, +2618, 1799, 1606, +2569, 1847, 1734, +2505, 1895, 1847, +2393, 1943, 1927, +2393, 1975, 1975, +2361, 1975, 2023, +2409, 1991, 2104, +2409, 2007, 2184, +2457, 2039, 2280, +2457, 2072, 2361, +2489, 2088, 2441, +2553, 2136, 2569, +2778, 1911, 1140, +2794, 1927, 1188, +2794, 1911, 1237, +2826, 1943, 1333, +2826, 1959, 1429, +2714, 1991, 1654, +2730, 1991, 1766, +2634, 2039, 1879, +2537, 2072, 1959, +2473, 2120, 2039, +2473, 2136, 2104, +2505, 2152, 2184, +2505, 2168, 2248, +2553, 2200, 2361, +2569, 2184, 2409, +2602, 2200, 2489, +2585, 2200, 2553, +2810, 2136, 1317, +2810, 2152, 1349, +2810, 2120, 1365, +2810, 2136, 1429, +2842, 2120, 1493, +2842, 2120, 1590, +2778, 2152, 1799, +2746, 2152, 1895, +2682, 2184, 2056, +2602, 2248, 2152, +2553, 2248, 2184, +2553, 2264, 2248, +2602, 2280, 2345, +2634, 2296, 2425, +2666, 2312, 2489, +2682, 2345, 2553, +2666, 2361, 2666, +2826, 2280, 1429, +2826, 2296, 1477, +2858, 2296, 1526, +2842, 2296, 1574, +2858, 2296, 1606, +2907, 2296, 1686, +2891, 2312, 1783, +2923, 2312, 1879, +2842, 2312, 2072, +2778, 2361, 2200, +2698, 2409, 2280, +2714, 2441, 2361, +2682, 2425, 2409, +2730, 2441, 2489, +2746, 2441, 2553, +2730, 2489, 2650, +2746, 2489, 2714, +2875, 2505, 1622, +2891, 2489, 1622, +2891, 2505, 1654, +2875, 2505, 1718, +2907, 2489, 1750, +2891, 2489, 1847, +2907, 2489, 1943, +2923, 2505, 1975, +2955, 2489, 2039, +2939, 2505, 2232, +2842, 2537, 2377, +2794, 2569, 2425, +2810, 2602, 2505, +2810, 2602, 2602, +2858, 2634, 2698, +2842, 2666, 2746, +2858, 2666, 2810, +2939, 2682, 1799, +2939, 2682, 1799, +2923, 2682, 1815, +2939, 2698, 1895, +2923, 2698, 1927, +2955, 2698, 1991, +2939, 2698, 2056, +2971, 2714, 2136, +2971, 2714, 2200, +3003, 2714, 2296, +3083, 2682, 2361, +2971, 2730, 2553, +2923, 2746, 2569, +2955, 2746, 2650, +2923, 2778, 2730, +2971, 2794, 2810, +3019, 2826, 2907, +3083, 2842, 1911, +3099, 2875, 1927, +3083, 2858, 1943, +3115, 2858, 1991, +3115, 2875, 2072, +3099, 2875, 2120, +3083, 2875, 2216, +3083, 2891, 2280, +3083, 2907, 2329, +3067, 2907, 2409, +3067, 2891, 2457, +3099, 2907, 2569, +3099, 2891, 2698, +3083, 2939, 2794, +3035, 2955, 2810, +3067, 2955, 2891, +3115, 2987, 2987, +3228, 3051, 2023, +3228, 3051, 2023, +3228, 3067, 2088, +3212, 3051, 2120, +3212, 3067, 2184, +3180, 3051, 2232, +3212, 3067, 2312, +3212, 3067, 2345, +3196, 3083, 2441, +3212, 3067, 2505, +3212, 3099, 2618, +3244, 3115, 2698, +3228, 3115, 2762, +3228, 3131, 2875, +3212, 3131, 2939, +3180, 3131, 2987, +3212, 3148, 3067, +3308, 3244, 2136, +3292, 3228, 2152, +3292, 3244, 2168, +3324, 3228, 2232, +3276, 3244, 2248, +3292, 3228, 2329, +3292, 3228, 2345, +3292, 3260, 2457, +3308, 3244, 2521, +3308, 3260, 2634, +3308, 3244, 2682, +3308, 3260, 2762, +3308, 3292, 2842, +3324, 3292, 2939, +3372, 3324, 3035, +3340, 3308, 3099, +3372, 3308, 3164, +3469, 3437, 2280, +3485, 3437, 2280, +3469, 3437, 2312, +3469, 3437, 2345, +3485, 3469, 2425, +3469, 3469, 2425, +3485, 3453, 2521, +3469, 3453, 2585, +3453, 3453, 2634, +3485, 3469, 2762, +3485, 3485, 2810, +3485, 3469, 2891, +3501, 3469, 2987, +3469, 3469, 3067, +3517, 3501, 3180, +3501, 3501, 3212, +3533, 3501, 3324, +3597, 3629, 2409, +3549, 3629, 2425, +3581, 3613, 2425, +3581, 3613, 2457, +3597, 3645, 2489, +3565, 3629, 2521, +3549, 3629, 2585, +3581, 3629, 2698, +3581, 3645, 2746, +3565, 3645, 2842, +3581, 3645, 2875, +3565, 3645, 2971, +3581, 3661, 3083, +3597, 3677, 3228, +3613, 3661, 3292, +3677, 3677, 3324, +3677, 3694, 3356, +2682, 1333, 1028, +2666, 1333, 1108, +2666, 1349, 1188, +2602, 1413, 1333, +2505, 1445, 1461, +2441, 1510, 1574, +2329, 1590, 1702, +2264, 1638, 1766, +2216, 1638, 1783, +2232, 1654, 1831, +2264, 1686, 1943, +2280, 1718, 2023, +2280, 1718, 2056, +2312, 1750, 2184, +2329, 1766, 2232, +2377, 1799, 2329, +2409, 1815, 2409, +2682, 1365, 1044, +2698, 1365, 1092, +2714, 1381, 1220, +2634, 1429, 1349, +2521, 1493, 1493, +2441, 1526, 1590, +2361, 1574, 1686, +2264, 1638, 1766, +2264, 1686, 1799, +2264, 1686, 1863, +2264, 1702, 1927, +2280, 1734, 2007, +2312, 1750, 2120, +2312, 1766, 2168, +2361, 1783, 2248, +2409, 1815, 2312, +2457, 1847, 2441, +2698, 1429, 1076, +2698, 1397, 1108, +2714, 1413, 1220, +2682, 1461, 1365, +2569, 1526, 1493, +2473, 1558, 1590, +2377, 1622, 1686, +2312, 1670, 1783, +2280, 1718, 1831, +2248, 1718, 1879, +2296, 1734, 1943, +2296, 1750, 2023, +2329, 1783, 2088, +2361, 1799, 2168, +2361, 1831, 2248, +2425, 1831, 2329, +2457, 1879, 2441, +2730, 1493, 1092, +2746, 1493, 1156, +2746, 1493, 1237, +2698, 1510, 1333, +2634, 1574, 1493, +2553, 1622, 1590, +2457, 1686, 1718, +2345, 1702, 1783, +2296, 1766, 1831, +2329, 1766, 1863, +2329, 1799, 1975, +2329, 1799, 2007, +2361, 1831, 2136, +2393, 1831, 2200, +2425, 1879, 2264, +2457, 1895, 2377, +2489, 1927, 2409, +2842, 1558, 1044, +2730, 1574, 1156, +2746, 1606, 1269, +2730, 1606, 1365, +2698, 1622, 1477, +2569, 1670, 1606, +2521, 1734, 1718, +2425, 1766, 1799, +2361, 1815, 1863, +2345, 1847, 1927, +2393, 1879, 2023, +2425, 1895, 2104, +2441, 1879, 2168, +2457, 1927, 2216, +2441, 1927, 2280, +2505, 1959, 2377, +2521, 1991, 2473, +2907, 1638, 1012, +2891, 1670, 1140, +2826, 1718, 1269, +2778, 1702, 1349, +2794, 1718, 1510, +2730, 1766, 1638, +2634, 1799, 1766, +2553, 1879, 1847, +2489, 1895, 1927, +2473, 1959, 1991, +2441, 1959, 2039, +2473, 1959, 2104, +2473, 1975, 2200, +2521, 2023, 2280, +2553, 2039, 2361, +2553, 2072, 2457, +2602, 2104, 2537, +2987, 1766, 1044, +2955, 1783, 1108, +2939, 1799, 1204, +2875, 1831, 1365, +2842, 1863, 1493, +2826, 1863, 1638, +2746, 1911, 1783, +2634, 1943, 1879, +2585, 2007, 1975, +2521, 2056, 2007, +2553, 2072, 2088, +2553, 2088, 2152, +2602, 2120, 2248, +2602, 2136, 2329, +2618, 2168, 2409, +2602, 2152, 2489, +2682, 2168, 2553, +3019, 1991, 1204, +3003, 1975, 1237, +3003, 1991, 1269, +3019, 1991, 1365, +2955, 2007, 1526, +2891, 2039, 1670, +2923, 2056, 1815, +2810, 2088, 1943, +2730, 2136, 2039, +2634, 2168, 2120, +2618, 2200, 2168, +2602, 2200, 2232, +2666, 2216, 2312, +2682, 2232, 2393, +2682, 2232, 2441, +2698, 2264, 2537, +2730, 2280, 2618, +3003, 2136, 1285, +2987, 2136, 1301, +3035, 2136, 1349, +3067, 2136, 1429, +3051, 2104, 1493, +3035, 2152, 1638, +2939, 2168, 1831, +2955, 2168, 1959, +2875, 2216, 2088, +2746, 2264, 2200, +2714, 2312, 2200, +2714, 2329, 2280, +2746, 2345, 2361, +2746, 2361, 2473, +2794, 2377, 2521, +2762, 2377, 2602, +2794, 2409, 2698, +3051, 2345, 1461, +3035, 2345, 1477, +3067, 2345, 1526, +3067, 2345, 1558, +3051, 2345, 1606, +3051, 2329, 1686, +3067, 2312, 1783, +3019, 2345, 1991, +3003, 2345, 2072, +2939, 2393, 2216, +2858, 2457, 2345, +2810, 2457, 2361, +2826, 2489, 2457, +2842, 2505, 2537, +2858, 2521, 2618, +2891, 2521, 2682, +2907, 2569, 2778, +3083, 2553, 1622, +3067, 2537, 1638, +3051, 2521, 1622, +3067, 2521, 1686, +3083, 2537, 1766, +3099, 2537, 1831, +3115, 2537, 1927, +3180, 2537, 1991, +3148, 2521, 2056, +3083, 2553, 2264, +3035, 2602, 2441, +2955, 2634, 2473, +2955, 2650, 2505, +2939, 2666, 2602, +2955, 2666, 2714, +2971, 2682, 2730, +2987, 2698, 2875, +3148, 2714, 1783, +3131, 2714, 1799, +3131, 2714, 1831, +3115, 2714, 1863, +3099, 2714, 1911, +3131, 2714, 1959, +3131, 2714, 2023, +3148, 2714, 2088, +3212, 2714, 2200, +3212, 2698, 2248, +3164, 2730, 2457, +3115, 2762, 2569, +3067, 2794, 2618, +3067, 2810, 2698, +3099, 2826, 2778, +3099, 2826, 2842, +3099, 2858, 2923, +3212, 2891, 1911, +3180, 2907, 1943, +3212, 2907, 1975, +3164, 2907, 1991, +3196, 2907, 2072, +3196, 2923, 2136, +3180, 2907, 2200, +3180, 2907, 2248, +3228, 2907, 2296, +3212, 2907, 2361, +3276, 2923, 2473, +3276, 2907, 2537, +3228, 2939, 2698, +3180, 2987, 2778, +3196, 2987, 2891, +3164, 3019, 2955, +3212, 3035, 3051, +3356, 3099, 2056, +3324, 3083, 2072, +3340, 3099, 2104, +3356, 3115, 2152, +3340, 3115, 2216, +3340, 3099, 2280, +3340, 3099, 2296, +3340, 3131, 2425, +3324, 3115, 2473, +3292, 3115, 2553, +3292, 3131, 2634, +3292, 3115, 2682, +3324, 3115, 2762, +3292, 3115, 2875, +3292, 3148, 2955, +3292, 3196, 3035, +3308, 3180, 3083, +3421, 3276, 2152, +3421, 3276, 2184, +3453, 3260, 2216, +3437, 3276, 2248, +3404, 3276, 2312, +3437, 3292, 2361, +3421, 3292, 2425, +3404, 3292, 2489, +3453, 3308, 2585, +3437, 3324, 2682, +3453, 3308, 2778, +3453, 3324, 2810, +3453, 3308, 2891, +3453, 3324, 2971, +3485, 3340, 3083, +3485, 3372, 3164, +3453, 3356, 3228, +3597, 3469, 2329, +3581, 3469, 2329, +3597, 3485, 2377, +3581, 3469, 2393, +3581, 3485, 2425, +3581, 3485, 2473, +3549, 3469, 2521, +3565, 3469, 2618, +3565, 3453, 2682, +3581, 3469, 2746, +3597, 3469, 2826, +3597, 3501, 2907, +3613, 3501, 3019, +3581, 3517, 3067, +3597, 3517, 3180, +3613, 3517, 3244, +3629, 3549, 3340, +3677, 3661, 2425, +3677, 3661, 2457, +3677, 3661, 2441, +3694, 3645, 2473, +3694, 3645, 2505, +3677, 3645, 2537, +3694, 3677, 2634, +3710, 3677, 2730, +3677, 3661, 2778, +3710, 3677, 2907, +3694, 3677, 2923, +3710, 3677, 3019, +3710, 3694, 3115, +3726, 3694, 3212, +3694, 3694, 3308, +3758, 3726, 3404, +3806, 3758, 3517, +2923, 1445, 1108, +2907, 1429, 1156, +2907, 1445, 1285, +2842, 1477, 1381, +2730, 1526, 1510, +2634, 1590, 1606, +2553, 1638, 1718, +2441, 1686, 1799, +2409, 1766, 1847, +2409, 1783, 1911, +2441, 1783, 1975, +2473, 1799, 2056, +2473, 1815, 2120, +2489, 1847, 2216, +2521, 1863, 2280, +2553, 1895, 2361, +2553, 1927, 2441, +2923, 1429, 1076, +2923, 1445, 1156, +2907, 1445, 1237, +2842, 1461, 1349, +2778, 1526, 1493, +2650, 1606, 1622, +2585, 1654, 1718, +2489, 1718, 1783, +2409, 1766, 1831, +2425, 1783, 1911, +2425, 1815, 1991, +2457, 1815, 2072, +2489, 1831, 2152, +2489, 1847, 2216, +2537, 1879, 2329, +2553, 1895, 2361, +2569, 1943, 2441, +2939, 1477, 1108, +2923, 1477, 1188, +2907, 1477, 1269, +2875, 1493, 1365, +2794, 1574, 1526, +2714, 1622, 1638, +2602, 1702, 1734, +2521, 1750, 1815, +2441, 1799, 1863, +2409, 1815, 1927, +2489, 1831, 2023, +2489, 1847, 2104, +2489, 1879, 2168, +2537, 1879, 2216, +2537, 1911, 2296, +2569, 1943, 2393, +2602, 1959, 2473, +2955, 1558, 1156, +2939, 1558, 1204, +2923, 1558, 1285, +2923, 1574, 1397, +2858, 1638, 1526, +2778, 1670, 1622, +2666, 1734, 1766, +2602, 1783, 1831, +2537, 1847, 1927, +2505, 1863, 1959, +2521, 1879, 2007, +2537, 1911, 2088, +2505, 1911, 2136, +2553, 1927, 2264, +2553, 1943, 2296, +2634, 2007, 2425, +2650, 2039, 2521, +2987, 1654, 1172, +2987, 1654, 1204, +2971, 1654, 1253, +2971, 1670, 1381, +2907, 1702, 1526, +2826, 1750, 1686, +2762, 1799, 1750, +2682, 1863, 1879, +2553, 1895, 1943, +2537, 1911, 1975, +2553, 1943, 2072, +2569, 1975, 2136, +2569, 2007, 2232, +2618, 2023, 2312, +2618, 2039, 2393, +2666, 2056, 2473, +2666, 2088, 2553, +3099, 1702, 1092, +3035, 1766, 1220, +3003, 1783, 1333, +2987, 1783, 1413, +2971, 1783, 1526, +2907, 1815, 1670, +2826, 1863, 1783, +2762, 1959, 1927, +2682, 2007, 1991, +2618, 2039, 2023, +2634, 2056, 2104, +2650, 2072, 2184, +2650, 2088, 2248, +2666, 2088, 2312, +2682, 2120, 2393, +2714, 2136, 2505, +2746, 2152, 2569, +3228, 1847, 1124, +3164, 1847, 1156, +3180, 1879, 1269, +3083, 1927, 1445, +3067, 1927, 1590, +3051, 1927, 1702, +2939, 1975, 1831, +2875, 2039, 1959, +2778, 2088, 2056, +2714, 2136, 2120, +2682, 2152, 2152, +2666, 2152, 2200, +2746, 2184, 2345, +2730, 2168, 2361, +2762, 2200, 2473, +2778, 2232, 2569, +2794, 2248, 2618, +3260, 2007, 1172, +3244, 2007, 1204, +3228, 2007, 1285, +3196, 2007, 1365, +3115, 2056, 1590, +3083, 2039, 1686, +3099, 2072, 1815, +2987, 2104, 1959, +2923, 2168, 2088, +2826, 2200, 2168, +2778, 2264, 2232, +2810, 2264, 2264, +2778, 2264, 2361, +2794, 2296, 2441, +2810, 2312, 2553, +2842, 2345, 2602, +2858, 2345, 2698, +3244, 2168, 1285, +3228, 2168, 1317, +3260, 2168, 1349, +3228, 2152, 1429, +3244, 2168, 1542, +3212, 2200, 1702, +3131, 2232, 1879, +3099, 2232, 2007, +3051, 2280, 2152, +2955, 2345, 2248, +2858, 2377, 2296, +2842, 2377, 2312, +2858, 2393, 2409, +2891, 2409, 2521, +2891, 2425, 2553, +2923, 2457, 2682, +2939, 2473, 2730, +3228, 2377, 1461, +3244, 2393, 1510, +3228, 2377, 1493, +3276, 2361, 1526, +3276, 2361, 1606, +3292, 2361, 1686, +3276, 2361, 1815, +3196, 2409, 2023, +3196, 2425, 2168, +3099, 2473, 2312, +2987, 2489, 2377, +2939, 2537, 2425, +2955, 2553, 2505, +2971, 2553, 2585, +2971, 2585, 2666, +3003, 2585, 2730, +3019, 2618, 2826, +3260, 2569, 1590, +3260, 2569, 1622, +3260, 2569, 1654, +3244, 2569, 1718, +3260, 2569, 1766, +3308, 2537, 1799, +3292, 2537, 1895, +3324, 2553, 1975, +3260, 2569, 2152, +3244, 2585, 2345, +3164, 2634, 2441, +3131, 2666, 2537, +3067, 2698, 2585, +3099, 2698, 2650, +3099, 2714, 2730, +3115, 2714, 2794, +3115, 2730, 2875, +3292, 2746, 1766, +3324, 2746, 1783, +3324, 2746, 1815, +3308, 2746, 1879, +3308, 2746, 1911, +3324, 2730, 1927, +3324, 2746, 2039, +3356, 2746, 2104, +3404, 2746, 2184, +3388, 2762, 2312, +3356, 2762, 2457, +3292, 2810, 2618, +3196, 2842, 2682, +3196, 2842, 2714, +3180, 2858, 2794, +3228, 2891, 2907, +3228, 2907, 2955, +3372, 2939, 1927, +3388, 2939, 1927, +3372, 2939, 1959, +3372, 2939, 2023, +3388, 2955, 2072, +3372, 2955, 2120, +3356, 2923, 2200, +3388, 2939, 2248, +3404, 2955, 2312, +3404, 2939, 2377, +3469, 2939, 2457, +3404, 2971, 2682, +3372, 3003, 2778, +3324, 3035, 2826, +3324, 3051, 2907, +3372, 3083, 3003, +3340, 3067, 3051, +3404, 3115, 2072, +3404, 3115, 2072, +3404, 3115, 2104, +3404, 3115, 2136, +3404, 3131, 2216, +3421, 3131, 2280, +3404, 3115, 2296, +3388, 3115, 2361, +3404, 3115, 2425, +3404, 3131, 2537, +3437, 3131, 2618, +3453, 3131, 2682, +3517, 3131, 2714, +3421, 3180, 2955, +3404, 3212, 3003, +3437, 3212, 3067, +3437, 3228, 3148, +3565, 3308, 2216, +3597, 3324, 2232, +3581, 3308, 2248, +3565, 3308, 2280, +3565, 3324, 2345, +3565, 3324, 2393, +3581, 3324, 2457, +3581, 3324, 2521, +3549, 3324, 2618, +3533, 3324, 2666, +3565, 3340, 2762, +3581, 3356, 2842, +3581, 3356, 2891, +3613, 3356, 3003, +3597, 3372, 3148, +3597, 3404, 3228, +3581, 3421, 3276, +3694, 3485, 2329, +3694, 3485, 2361, +3694, 3485, 2361, +3694, 3501, 2409, +3710, 3501, 2489, +3710, 3501, 2489, +3710, 3501, 2553, +3694, 3501, 2650, +3677, 3517, 2714, +3694, 3517, 2778, +3677, 3517, 2875, +3710, 3517, 2955, +3694, 3533, 3019, +3710, 3533, 3131, +3710, 3549, 3196, +3694, 3549, 3260, +3710, 3581, 3356, +3838, 3694, 2473, +3806, 3677, 2457, +3822, 3677, 2505, +3822, 3694, 2553, +3806, 3694, 2569, +3790, 3677, 2602, +3790, 3694, 2666, +3806, 3677, 2730, +3790, 3694, 2842, +3790, 3710, 2907, +3838, 3742, 3003, +3854, 3774, 3131, +3854, 3758, 3196, +3854, 3790, 3340, +3822, 3774, 3388, +3838, 3790, 3533, +3854, 3806, 3645, +3115, 1526, 1172, +3099, 1526, 1253, +3099, 1542, 1285, +3067, 1542, 1413, +2971, 1590, 1542, +2891, 1670, 1670, +2794, 1750, 1783, +2730, 1799, 1847, +2650, 1831, 1943, +2618, 1879, 1991, +2602, 1879, 2039, +2618, 1879, 2104, +2634, 1911, 2184, +2650, 1959, 2280, +2666, 1991, 2361, +2698, 1991, 2441, +2746, 2056, 2553, +3099, 1558, 1172, +3115, 1542, 1204, +3099, 1542, 1285, +3083, 1574, 1445, +2971, 1622, 1558, +2891, 1670, 1670, +2826, 1766, 1783, +2746, 1815, 1863, +2634, 1863, 1959, +2618, 1879, 1959, +2585, 1879, 2023, +2602, 1911, 2120, +2634, 1911, 2184, +2666, 1959, 2280, +2698, 2007, 2393, +2730, 2023, 2473, +2730, 2039, 2553, +3131, 1590, 1172, +3148, 1590, 1220, +3115, 1574, 1301, +3067, 1590, 1413, +3019, 1654, 1574, +2955, 1718, 1686, +2842, 1783, 1799, +2746, 1815, 1879, +2650, 1879, 1943, +2618, 1911, 1975, +2650, 1927, 2056, +2666, 1959, 2136, +2682, 1991, 2248, +2666, 1991, 2312, +2714, 2023, 2409, +2730, 2056, 2489, +2762, 2072, 2569, +3131, 1638, 1172, +3115, 1638, 1253, +3131, 1654, 1317, +3115, 1622, 1413, +3035, 1670, 1542, +2987, 1734, 1654, +2875, 1815, 1799, +2810, 1863, 1895, +2730, 1943, 1975, +2682, 1975, 2007, +2682, 1991, 2072, +2698, 2007, 2152, +2682, 2023, 2216, +2730, 2056, 2345, +2762, 2088, 2409, +2794, 2088, 2473, +2810, 2088, 2537, +3148, 1718, 1237, +3180, 1750, 1301, +3164, 1750, 1349, +3180, 1750, 1477, +3180, 1750, 1574, +3051, 1831, 1702, +2987, 1895, 1863, +2875, 1943, 1927, +2778, 1991, 1991, +2714, 2072, 2072, +2730, 2072, 2152, +2730, 2072, 2200, +2762, 2104, 2296, +2794, 2104, 2361, +2794, 2120, 2441, +2810, 2120, 2505, +2826, 2152, 2585, +3324, 1799, 1204, +3276, 1831, 1285, +3228, 1831, 1365, +3228, 1847, 1477, +3212, 1847, 1590, +3148, 1879, 1734, +3083, 1943, 1831, +2955, 2023, 1975, +2907, 2056, 2072, +2794, 2120, 2136, +2762, 2120, 2152, +2810, 2136, 2248, +2794, 2152, 2312, +2826, 2152, 2377, +2842, 2200, 2473, +2842, 2200, 2537, +2891, 2232, 2634, +3404, 1895, 1188, +3372, 1895, 1204, +3324, 1943, 1349, +3228, 1991, 1526, +3228, 1991, 1654, +3212, 1991, 1734, +3148, 2023, 1847, +3067, 2072, 1991, +2987, 2136, 2088, +2891, 2200, 2184, +2842, 2216, 2216, +2858, 2232, 2296, +2858, 2248, 2361, +2858, 2248, 2425, +2907, 2280, 2553, +2907, 2296, 2618, +2907, 2329, 2666, +3437, 2056, 1204, +3421, 2039, 1253, +3388, 2056, 1317, +3372, 2056, 1397, +3276, 2120, 1638, +3260, 2120, 1766, +3244, 2136, 1911, +3164, 2184, 2039, +3067, 2232, 2152, +3019, 2296, 2232, +2907, 2312, 2280, +2923, 2345, 2329, +2923, 2361, 2393, +2939, 2361, 2489, +2955, 2377, 2553, +2955, 2409, 2618, +3003, 2441, 2746, +3404, 2200, 1301, +3469, 2216, 1365, +3453, 2216, 1397, +3437, 2200, 1461, +3421, 2232, 1574, +3340, 2248, 1734, +3292, 2280, 1927, +3308, 2296, 2056, +3228, 2312, 2136, +3099, 2377, 2280, +3019, 2425, 2345, +2987, 2473, 2409, +3003, 2457, 2489, +3035, 2505, 2569, +3035, 2521, 2634, +3051, 2537, 2746, +3051, 2537, 2778, +3437, 2393, 1445, +3469, 2409, 1461, +3469, 2409, 1493, +3485, 2409, 1574, +3469, 2393, 1622, +3469, 2409, 1750, +3437, 2409, 1895, +3388, 2457, 2088, +3340, 2457, 2200, +3292, 2521, 2345, +3164, 2553, 2457, +3083, 2585, 2473, +3099, 2602, 2521, +3099, 2618, 2602, +3115, 2634, 2714, +3164, 2650, 2762, +3164, 2650, 2891, +3469, 2585, 1590, +3469, 2585, 1606, +3453, 2585, 1654, +3485, 2569, 1686, +3469, 2569, 1750, +3533, 2569, 1847, +3549, 2553, 1927, +3501, 2569, 2007, +3421, 2602, 2216, +3437, 2602, 2345, +3340, 2666, 2489, +3260, 2714, 2585, +3212, 2746, 2634, +3212, 2762, 2698, +3228, 2762, 2762, +3244, 2794, 2858, +3260, 2778, 2907, +3485, 2778, 1750, +3485, 2778, 1799, +3469, 2762, 1815, +3469, 2778, 1847, +3485, 2762, 1895, +3533, 2778, 1959, +3517, 2746, 1991, +3565, 2762, 2088, +3565, 2746, 2168, +3549, 2778, 2345, +3517, 2794, 2505, +3421, 2810, 2634, +3356, 2875, 2714, +3308, 2907, 2762, +3324, 2923, 2875, +3324, 2939, 2939, +3356, 2939, 3019, +3533, 2971, 1895, +3533, 3003, 1943, +3549, 2987, 1927, +3533, 2971, 1991, +3581, 2987, 2039, +3581, 2955, 2088, +3549, 2987, 2184, +3565, 2987, 2264, +3613, 2971, 2329, +3645, 2971, 2361, +3645, 2987, 2505, +3581, 3019, 2730, +3533, 3035, 2810, +3404, 3067, 2875, +3404, 3051, 2923, +3404, 3067, 2971, +3437, 3083, 3083, +3581, 3164, 2056, +3565, 3148, 2072, +3565, 3164, 2120, +3581, 3131, 2136, +3549, 3148, 2216, +3581, 3148, 2248, +3581, 3164, 2329, +3597, 3164, 2377, +3597, 3180, 2457, +3613, 3164, 2521, +3645, 3164, 2602, +3661, 3164, 2698, +3645, 3180, 2858, +3597, 3228, 3003, +3549, 3260, 3051, +3549, 3260, 3115, +3565, 3276, 3196, +3710, 3356, 2248, +3694, 3340, 2280, +3694, 3340, 2280, +3694, 3372, 2361, +3710, 3372, 2393, +3694, 3372, 2425, +3677, 3372, 2489, +3694, 3356, 2537, +3694, 3372, 2618, +3694, 3388, 2682, +3694, 3372, 2794, +3742, 3388, 2826, +3758, 3388, 2907, +3790, 3372, 3003, +3710, 3404, 3196, +3677, 3437, 3244, +3710, 3437, 3308, +3854, 3533, 2409, +3854, 3533, 2409, +3806, 3517, 2393, +3854, 3533, 2473, +3806, 3549, 2505, +3822, 3533, 2537, +3822, 3549, 2602, +3806, 3533, 2666, +3822, 3533, 2730, +3790, 3533, 2810, +3806, 3549, 2858, +3790, 3549, 2955, +3790, 3581, 3051, +3806, 3581, 3148, +3822, 3581, 3212, +3822, 3597, 3324, +3806, 3597, 3388, +3983, 3758, 2553, +3983, 3774, 2602, +3950, 3758, 2618, +3967, 3774, 2634, +3967, 3774, 2698, +3950, 3774, 2762, +3934, 3758, 2746, +3950, 3758, 2891, +3934, 3758, 2955, +3918, 3774, 3019, +3950, 3774, 3131, +3934, 3790, 3196, +3950, 3806, 3340, +3934, 3790, 3404, +3950, 3854, 3613, +3918, 3854, 3661, +3902, 3870, 3806] + } +} \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Photoshop/inv-Log2-48nits/test_clt_32_LUT.azasset b/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Photoshop/inv-Log2-48nits/test_clt_32_LUT.azasset new file mode 100644 index 0000000000..92f5a49363 --- /dev/null +++ b/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Photoshop/inv-Log2-48nits/test_clt_32_LUT.azasset @@ -0,0 +1,32777 @@ +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "LookupTableAsset", + "ClassData": { + "Name": "LookupTable", + "Intervals": [0, 33, 66, 99, 132, 165, 198, 231, 264, 297, 330, 363, 396, 429, 462, 495, 528, 561, 594, 627, 660, 693, 726, 759, 792, 825, 858, 891, 924, 957, 990, 1023], + "Values": [0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 28, +0, 0, 152, +0, 0, 280, +0, 0, 408, +0, 0, 537, +0, 0, 667, +0, 0, 797, +0, 0, 928, +0, 0, 1084, +0, 0, 1291, +0, 0, 1472, +0, 0, 1634, +361, 0, 1771, +1145, 0, 1881, +1561, 0, 2006, +1561, 0, 2154, +432, 987, 2341, +1228, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 54, +0, 0, 173, +0, 0, 295, +0, 0, 419, +0, 0, 545, +0, 0, 673, +0, 0, 802, +0, 0, 932, +0, 0, 1087, +0, 0, 1293, +0, 0, 1473, +0, 0, 1635, +370, 0, 1772, +1144, 0, 1882, +1559, 0, 2006, +1558, 0, 2154, +428, 992, 2341, +1232, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 87, +0, 0, 198, +0, 0, 315, +0, 0, 434, +0, 0, 557, +0, 0, 682, +0, 0, 809, +0, 0, 937, +0, 0, 1091, +0, 0, 1295, +0, 0, 1474, +0, 0, 1635, +381, 0, 1773, +1143, 0, 1883, +1556, 0, 2007, +1554, 0, 2155, +423, 998, 2341, +1238, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 31, +0, 0, 127, +0, 0, 230, +0, 0, 340, +0, 0, 454, +0, 0, 572, +0, 0, 693, +0, 0, 817, +0, 0, 943, +0, 0, 1095, +0, 0, 1298, +0, 0, 1476, +0, 0, 1636, +395, 0, 1774, +1142, 0, 1883, +1552, 0, 2008, +1548, 0, 2156, +416, 1005, 2342, +1246, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 31, +0, 0, 176, +0, 0, 270, +0, 0, 371, +0, 0, 478, +0, 0, 591, +0, 0, 708, +0, 0, 828, +0, 0, 952, +0, 0, 1101, +0, 0, 1302, +0, 0, 1479, +0, 0, 1637, +414, 0, 1775, +1140, 0, 1884, +1547, 0, 2010, +1540, 58, 2158, +407, 1015, 2342, +1257, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 31, +0, 7, 176, +0, 63, 318, +0, 63, 410, +0, 63, 509, +0, 63, 615, +0, 63, 727, +0, 63, 843, +0, 63, 963, +0, 103, 1109, +0, 30, 1307, +0, 30, 1482, +0, 3, 1639, +438, 0, 1777, +1137, 0, 1886, +1539, 0, 2011, +1530, 197, 2160, +394, 1028, 2343, +1270, 621, 2470, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +0, 4, 0, +0, 23, 0, +0, 47, 0, +0, 77, 31, +0, 114, 176, +0, 159, 318, +0, 214, 457, +0, 214, 548, +0, 214, 646, +0, 214, 751, +0, 214, 862, +0, 214, 977, +0, 243, 1120, +0, 163, 1314, +0, 163, 1487, +0, 142, 1641, +468, 0, 1779, +1134, 0, 1888, +1530, 32, 2014, +1515, 333, 2163, +376, 1045, 2344, +1287, 621, 2470, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +0, 144, 0, +0, 157, 0, +0, 175, 0, +0, 198, 31, +0, 227, 176, +0, 262, 318, +0, 306, 457, +0, 359, 595, +0, 359, 684, +0, 359, 782, +0, 359, 886, +0, 359, 996, +0, 380, 1134, +0, 295, 1323, +0, 295, 1494, +0, 280, 1644, +506, 122, 1783, +1129, 0, 1891, +1516, 164, 2017, +1495, 469, 2167, +352, 1066, 2345, +1309, 621, 2470, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +0, 281, 0, +0, 291, 0, +0, 304, 0, +0, 322, 31, +0, 344, 176, +0, 371, 318, +0, 406, 457, +0, 449, 595, +0, 501, 730, +0, 501, 819, +0, 501, 916, +0, 501, 1020, +0, 516, 1151, +0, 426, 1335, +0, 426, 1502, +0, 415, 1648, +552, 265, 1787, +1123, 111, 1894, +1498, 296, 2021, +1467, 603, 2172, +317, 1093, 2347, +1348, 639, 2470, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +0, 417, 0, +0, 424, 0, +0, 434, 0, +0, 447, 31, +0, 464, 176, +0, 486, 318, +0, 513, 457, +0, 547, 595, +0, 589, 730, +0, 640, 865, +0, 640, 954, +0, 640, 1050, +0, 651, 1174, +0, 570, 1350, +0, 559, 1512, +0, 550, 1653, +556, 441, 1791, +1115, 244, 1898, +1471, 428, 2027, +1426, 737, 2178, +265, 1128, 2349, +1396, 662, 2470, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +0, 552, 0, +0, 557, 0, +0, 565, 0, +0, 575, 31, +0, 587, 176, +0, 604, 318, +0, 625, 457, +0, 652, 595, +0, 686, 730, +0, 727, 865, +0, 777, 1000, +0, 777, 1088, +0, 786, 1203, +0, 726, 1370, +0, 691, 1526, +0, 685, 1662, +556, 606, 1796, +1132, 422, 1904, +1434, 560, 2035, +1365, 871, 2187, +186, 1169, 2352, +1454, 691, 2470, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +0, 686, 0, +0, 690, 0, +0, 696, 0, +0, 703, 31, +0, 713, 176, +0, 726, 318, +0, 742, 457, +0, 763, 595, +0, 789, 730, +0, 823, 865, +0, 864, 1000, +0, 913, 1133, +0, 920, 1239, +0, 876, 1395, +0, 823, 1544, +0, 818, 1675, +556, 761, 1803, +1160, 593, 1912, +1378, 692, 2045, +1267, 1004, 2199, +0, 1212, 2357, +1520, 728, 2470, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +0, 857, 100, +0, 857, 131, +0, 861, 202, +0, 866, 282, +0, 873, 371, +0, 882, 468, +0, 894, 573, +0, 909, 683, +0, 928, 797, +0, 953, 916, +0, 984, 1038, +0, 1023, 1162, +0, 1061, 1287, +0, 1030, 1430, +0, 984, 1569, +0, 971, 1697, +566, 941, 1817, +1178, 799, 1926, +1302, 849, 2057, +1119, 1137, 2212, +0, 1255, 2365, +1585, 801, 2470, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +0, 1184, 1027, +0, 1184, 1031, +0, 1184, 1036, +0, 1184, 1043, +0, 1184, 1052, +0, 1184, 1064, +0, 1184, 1080, +0, 1184, 1099, +0, 1184, 1125, +0, 1190, 1168, +0, 1209, 1242, +0, 1232, 1325, +0, 1257, 1416, +0, 1237, 1493, +0, 1209, 1617, +0, 1222, 1740, +636, 1187, 1854, +1040, 1131, 1961, +1243, 1131, 2080, +1031, 1271, 2224, +472, 1312, 2372, +1588, 1032, 2472, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +0, 1421, 1377, +0, 1421, 1379, +0, 1421, 1382, +0, 1421, 1385, +0, 1421, 1389, +0, 1421, 1395, +0, 1421, 1402, +0, 1421, 1412, +0, 1421, 1425, +0, 1421, 1442, +0, 1421, 1463, +0, 1421, 1491, +0, 1432, 1546, +0, 1418, 1604, +0, 1399, 1673, +0, 1412, 1786, +636, 1404, 1895, +1048, 1353, 1999, +1151, 1350, 2110, +878, 1405, 2240, +666, 1388, 2378, +1601, 1209, 2473, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +901, 1580, 1648, +901, 1579, 1649, +901, 1579, 1650, +901, 1579, 1652, +901, 1578, 1655, +901, 1577, 1658, +901, 1576, 1662, +901, 1574, 1668, +901, 1572, 1675, +901, 1569, 1685, +901, 1567, 1698, +901, 1567, 1714, +886, 1567, 1736, +886, 1577, 1788, +886, 1569, 1838, +890, 1552, 1888, +807, 1557, 1969, +921, 1536, 2067, +942, 1537, 2170, +810, 1524, 2268, +1125, 1501, 2382, +1680, 1435, 2473, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1449, 1705, 1856, +1448, 1705, 1856, +1447, 1705, 1857, +1446, 1705, 1859, +1444, 1705, 1860, +1441, 1705, 1862, +1438, 1705, 1865, +1433, 1705, 1868, +1427, 1705, 1873, +1426, 1703, 1880, +1426, 1700, 1888, +1426, 1696, 1899, +1423, 1691, 1913, +1400, 1685, 1931, +1400, 1696, 1976, +1370, 1702, 2022, +1371, 1685, 2062, +1192, 1672, 2128, +1127, 1678, 2221, +1173, 1647, 2295, +1519, 1631, 2386, +1775, 1634, 2475, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1785, 1818, 1978, +1786, 1818, 1978, +1786, 1818, 1979, +1786, 1818, 1980, +1786, 1818, 1981, +1787, 1818, 1982, +1788, 1818, 1983, +1789, 1818, 1986, +1790, 1818, 1988, +1792, 1818, 1992, +1788, 1818, 1998, +1781, 1818, 2007, +1772, 1818, 2018, +1752, 1824, 2037, +1733, 1818, 2052, +1727, 1802, 2080, +1685, 1816, 2123, +1705, 1809, 2166, +1657, 1793, 2234, +1664, 1793, 2304, +1754, 1797, 2389, +1874, 1790, 2475, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1958, 1958, 2028, +1957, 1958, 2029, +1957, 1958, 2029, +1957, 1958, 2030, +1956, 1958, 2031, +1956, 1958, 2031, +1956, 1958, 2033, +1955, 1958, 2035, +1954, 1958, 2037, +1953, 1958, 2041, +1951, 1958, 2045, +1948, 1958, 2051, +1946, 1958, 2058, +1941, 1962, 2068, +1935, 1968, 2081, +1927, 1969, 2115, +1913, 1965, 2153, +1905, 1963, 2189, +1920, 1969, 2243, +1881, 1969, 2320, +1929, 1954, 2391, +2032, 1964, 2481, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2119, 2119, 2068, +2119, 2119, 2068, +2119, 2119, 2068, +2119, 2120, 2069, +2119, 2120, 2069, +2119, 2120, 2071, +2119, 2120, 2072, +2119, 2121, 2073, +2119, 2122, 2076, +2119, 2122, 2079, +2119, 2124, 2083, +2119, 2125, 2088, +2119, 2127, 2095, +2119, 2127, 2101, +2119, 2127, 2110, +2115, 2131, 2133, +2108, 2133, 2164, +2103, 2131, 2206, +2110, 2135, 2256, +2119, 2135, 2316, +2148, 2131, 2395, +2212, 2147, 2485, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2369, 2356, 2125, +2369, 2356, 2126, +2369, 2356, 2126, +2369, 2356, 2127, +2369, 2357, 2129, +2368, 2357, 2131, +2367, 2358, 2133, +2368, 2359, 2137, +2369, 2360, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2368, 2358, 2163, +2370, 2358, 2193, +2369, 2358, 2226, +2372, 2355, 2273, +2383, 2356, 2337, +2410, 2367, 2405, +2467, 2385, 2498, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2654, 1964, +2681, 2654, 1965, +2681, 2654, 1966, +2681, 2654, 1968, +2681, 2654, 1967, +2681, 2654, 1965, +2680, 2653, 1964, +2680, 2653, 1961, +2679, 2652, 1961, +2678, 2653, 1968, +2677, 2654, 1989, +2676, 2653, 2013, +2675, 2649, 2032, +2677, 2655, 2124, +2681, 2656, 2208, +2687, 2661, 2306, +2695, 2667, 2410, +2715, 2678, 2527, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 28, +0, 0, 152, +0, 0, 280, +0, 0, 408, +0, 0, 537, +0, 0, 667, +0, 0, 797, +0, 0, 928, +0, 0, 1088, +0, 0, 1293, +0, 0, 1473, +0, 0, 1634, +398, 0, 1772, +1148, 0, 1882, +1561, 0, 2006, +1560, 0, 2154, +428, 987, 2341, +1231, 619, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 36, +0, 0, 159, +0, 0, 285, +0, 0, 412, +0, 0, 540, +0, 0, 669, +0, 0, 799, +0, 0, 930, +0, 0, 1089, +0, 0, 1294, +0, 0, 1474, +0, 0, 1635, +378, 0, 1771, +1147, 0, 1882, +1561, 0, 2006, +1559, 0, 2154, +428, 992, 2341, +1235, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 71, +0, 0, 186, +0, 0, 305, +0, 0, 427, +0, 0, 551, +0, 0, 678, +0, 0, 805, +0, 0, 935, +0, 0, 1092, +0, 0, 1296, +0, 0, 1475, +0, 0, 1635, +389, 0, 1772, +1146, 0, 1883, +1558, 0, 2007, +1555, 0, 2155, +423, 998, 2341, +1241, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 13, +0, 0, 112, +0, 0, 219, +0, 0, 330, +0, 0, 446, +0, 0, 566, +0, 0, 689, +0, 0, 814, +0, 0, 941, +0, 0, 1097, +0, 0, 1299, +0, 0, 1477, +0, 0, 1636, +403, 0, 1773, +1145, 0, 1884, +1554, 0, 2008, +1549, 0, 2156, +416, 1005, 2342, +1249, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 13, +0, 0, 163, +0, 0, 259, +0, 0, 363, +0, 0, 472, +0, 0, 586, +0, 0, 704, +0, 0, 825, +0, 0, 949, +0, 0, 1103, +0, 0, 1303, +0, 0, 1480, +0, 0, 1637, +422, 0, 1775, +1143, 0, 1884, +1548, 0, 2010, +1541, 50, 2158, +407, 1015, 2342, +1259, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 13, +0, 0, 163, +0, 38, 309, +0, 38, 402, +0, 38, 503, +0, 38, 610, +0, 38, 723, +0, 38, 840, +0, 38, 961, +0, 102, 1111, +0, 30, 1308, +0, 30, 1483, +0, 0, 1639, +445, 0, 1776, +1140, 0, 1886, +1541, 0, 2011, +1531, 190, 2160, +394, 1028, 2343, +1272, 621, 2470, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +0, 4, 0, +0, 0, 0, +0, 20, 0, +0, 52, 13, +0, 91, 163, +0, 139, 309, +0, 195, 450, +0, 195, 542, +0, 195, 641, +0, 195, 748, +0, 195, 859, +0, 195, 975, +0, 242, 1121, +0, 163, 1315, +0, 163, 1488, +0, 135, 1641, +475, 0, 1779, +1137, 0, 1888, +1532, 32, 2014, +1516, 329, 2163, +376, 1045, 2344, +1289, 621, 2470, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +0, 144, 0, +0, 137, 0, +0, 155, 0, +0, 179, 13, +0, 209, 163, +0, 246, 309, +0, 291, 450, +0, 346, 589, +0, 346, 680, +0, 346, 778, +0, 346, 883, +0, 346, 994, +0, 380, 1135, +0, 295, 1324, +0, 295, 1494, +0, 274, 1644, +512, 108, 1782, +1133, 0, 1891, +1518, 164, 2017, +1496, 465, 2167, +352, 1066, 2345, +1311, 621, 2470, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +0, 281, 0, +0, 276, 0, +0, 289, 0, +0, 307, 13, +0, 330, 163, +0, 359, 309, +0, 394, 450, +0, 438, 589, +0, 491, 727, +0, 491, 816, +0, 491, 914, +0, 491, 1018, +0, 516, 1153, +0, 426, 1336, +0, 426, 1502, +0, 412, 1648, +557, 254, 1787, +1126, 111, 1894, +1500, 296, 2021, +1468, 601, 2172, +317, 1093, 2347, +1350, 639, 2470, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +0, 417, 0, +0, 413, 0, +0, 423, 0, +0, 437, 13, +0, 454, 163, +0, 476, 309, +0, 504, 450, +0, 539, 589, +0, 581, 727, +0, 633, 862, +0, 633, 952, +0, 633, 1049, +0, 651, 1176, +0, 570, 1351, +0, 559, 1513, +0, 547, 1653, +561, 434, 1790, +1118, 244, 1898, +1474, 428, 2027, +1427, 736, 2178, +265, 1128, 2349, +1398, 662, 2470, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +0, 552, 0, +0, 549, 0, +0, 557, 0, +0, 566, 13, +0, 579, 163, +0, 596, 309, +0, 618, 450, +0, 645, 589, +0, 679, 727, +0, 721, 862, +0, 772, 997, +0, 772, 1086, +0, 785, 1204, +0, 726, 1371, +0, 691, 1527, +0, 682, 1662, +561, 601, 1796, +1135, 422, 1904, +1436, 560, 2035, +1366, 869, 2187, +186, 1169, 2352, +1455, 691, 2470, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +0, 686, 0, +0, 684, 0, +0, 690, 0, +0, 697, 13, +0, 707, 163, +0, 720, 309, +0, 736, 450, +0, 758, 589, +0, 784, 727, +0, 818, 862, +0, 859, 997, +0, 909, 1132, +0, 919, 1240, +0, 876, 1396, +0, 823, 1545, +0, 817, 1675, +561, 758, 1802, +1163, 593, 1912, +1381, 692, 2045, +1269, 1003, 2199, +0, 1212, 2357, +1522, 728, 2470, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +0, 854, 85, +0, 854, 130, +0, 858, 201, +0, 863, 282, +0, 870, 371, +0, 879, 468, +0, 891, 572, +0, 906, 682, +0, 925, 797, +0, 950, 916, +0, 981, 1038, +0, 1020, 1162, +0, 1060, 1288, +0, 1029, 1430, +0, 983, 1570, +0, 969, 1697, +572, 942, 1817, +1182, 800, 1926, +1302, 849, 2057, +1120, 1137, 2212, +0, 1254, 2365, +1585, 800, 2470, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +0, 1183, 1025, +0, 1183, 1031, +0, 1183, 1036, +0, 1183, 1043, +0, 1183, 1052, +0, 1183, 1064, +0, 1183, 1080, +0, 1183, 1099, +0, 1183, 1125, +0, 1188, 1168, +0, 1207, 1242, +0, 1231, 1325, +0, 1257, 1417, +0, 1236, 1493, +0, 1208, 1617, +0, 1221, 1741, +640, 1187, 1855, +1045, 1132, 1961, +1243, 1131, 2080, +1031, 1271, 2225, +498, 1311, 2371, +1589, 1031, 2471, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +0, 1421, 1376, +0, 1421, 1379, +0, 1421, 1382, +0, 1421, 1385, +0, 1421, 1389, +0, 1421, 1395, +0, 1421, 1402, +0, 1421, 1412, +0, 1421, 1425, +0, 1421, 1442, +0, 1421, 1463, +0, 1421, 1491, +0, 1431, 1546, +0, 1417, 1605, +0, 1399, 1673, +0, 1411, 1786, +640, 1405, 1896, +1052, 1353, 1999, +1151, 1350, 2110, +878, 1405, 2240, +684, 1387, 2378, +1602, 1208, 2473, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +913, 1579, 1648, +912, 1579, 1649, +912, 1579, 1651, +912, 1579, 1653, +912, 1578, 1655, +912, 1577, 1658, +912, 1576, 1662, +912, 1574, 1668, +912, 1572, 1675, +912, 1569, 1685, +912, 1567, 1698, +912, 1567, 1714, +892, 1567, 1736, +891, 1577, 1788, +891, 1569, 1838, +896, 1552, 1889, +818, 1557, 1970, +929, 1536, 2067, +946, 1537, 2170, +810, 1524, 2268, +1128, 1500, 2382, +1680, 1435, 2473, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1450, 1705, 1856, +1449, 1705, 1856, +1448, 1705, 1857, +1446, 1705, 1859, +1444, 1705, 1860, +1442, 1705, 1862, +1439, 1705, 1865, +1434, 1705, 1868, +1427, 1705, 1873, +1427, 1703, 1880, +1427, 1700, 1888, +1427, 1696, 1899, +1424, 1691, 1913, +1401, 1685, 1931, +1401, 1696, 1976, +1370, 1701, 2022, +1372, 1685, 2062, +1195, 1672, 2128, +1129, 1678, 2221, +1176, 1647, 2295, +1520, 1631, 2386, +1776, 1634, 2475, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1786, 1817, 1978, +1786, 1817, 1978, +1786, 1817, 1979, +1786, 1817, 1980, +1787, 1817, 1981, +1787, 1817, 1982, +1788, 1817, 1983, +1789, 1817, 1986, +1790, 1817, 1988, +1793, 1817, 1992, +1789, 1817, 1998, +1782, 1817, 2007, +1772, 1818, 2018, +1753, 1824, 2036, +1733, 1818, 2052, +1727, 1803, 2080, +1686, 1816, 2123, +1706, 1808, 2166, +1658, 1793, 2234, +1664, 1793, 2304, +1754, 1797, 2389, +1874, 1790, 2475, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1958, 1958, 2028, +1958, 1958, 2029, +1957, 1958, 2029, +1957, 1958, 2030, +1957, 1958, 2031, +1956, 1958, 2031, +1956, 1958, 2033, +1955, 1958, 2035, +1954, 1958, 2037, +1953, 1958, 2041, +1951, 1958, 2045, +1948, 1958, 2051, +1946, 1958, 2058, +1941, 1962, 2068, +1936, 1968, 2081, +1927, 1969, 2115, +1913, 1965, 2153, +1905, 1963, 2189, +1920, 1969, 2243, +1881, 1968, 2320, +1929, 1954, 2392, +2033, 1964, 2481, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2120, 2119, 2068, +2120, 2119, 2068, +2120, 2119, 2068, +2120, 2120, 2069, +2120, 2120, 2069, +2120, 2120, 2070, +2120, 2120, 2072, +2120, 2121, 2073, +2120, 2122, 2076, +2120, 2122, 2079, +2120, 2124, 2083, +2120, 2125, 2088, +2119, 2127, 2095, +2119, 2127, 2101, +2119, 2127, 2110, +2115, 2131, 2133, +2109, 2133, 2164, +2103, 2131, 2206, +2111, 2135, 2256, +2119, 2135, 2316, +2148, 2131, 2395, +2212, 2147, 2485, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2356, 2125, +2369, 2356, 2126, +2369, 2356, 2126, +2369, 2356, 2127, +2369, 2357, 2129, +2368, 2357, 2131, +2367, 2358, 2133, +2368, 2359, 2137, +2369, 2360, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2368, 2358, 2163, +2370, 2358, 2193, +2369, 2358, 2226, +2372, 2355, 2273, +2383, 2356, 2337, +2410, 2367, 2405, +2467, 2385, 2498, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2654, 1965, +2681, 2654, 1966, +2681, 2654, 1968, +2681, 2654, 1967, +2681, 2654, 1966, +2680, 2653, 1964, +2680, 2653, 1962, +2679, 2652, 1962, +2678, 2653, 1969, +2677, 2654, 1990, +2676, 2653, 2014, +2675, 2650, 2033, +2677, 2655, 2124, +2681, 2656, 2208, +2687, 2661, 2306, +2695, 2667, 2410, +2715, 2678, 2527, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 28, +0, 0, 152, +0, 0, 280, +0, 0, 408, +0, 0, 537, +0, 0, 667, +0, 0, 797, +0, 0, 928, +0, 0, 1088, +0, 0, 1296, +0, 0, 1475, +0, 0, 1634, +445, 0, 1772, +1152, 0, 1882, +1561, 0, 2006, +1559, 0, 2155, +423, 987, 2341, +1234, 615, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 36, +0, 0, 159, +0, 0, 285, +0, 0, 412, +0, 0, 540, +0, 0, 669, +0, 0, 799, +0, 0, 930, +0, 0, 1089, +0, 0, 1297, +0, 0, 1475, +0, 0, 1635, +426, 0, 1772, +1151, 0, 1882, +1561, 0, 2007, +1558, 0, 2155, +423, 992, 2341, +1238, 618, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 48, +0, 0, 168, +0, 0, 291, +0, 0, 417, +0, 0, 544, +0, 0, 672, +0, 0, 801, +0, 0, 931, +0, 0, 1090, +0, 0, 1298, +0, 0, 1476, +0, 0, 1635, +400, 0, 1772, +1150, 0, 1883, +1560, 0, 2007, +1556, 0, 2155, +423, 998, 2341, +1244, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 92, +0, 0, 203, +0, 0, 318, +0, 0, 437, +0, 0, 559, +0, 0, 683, +0, 0, 810, +0, 0, 938, +0, 0, 1094, +0, 0, 1300, +0, 0, 1478, +0, 0, 1636, +414, 0, 1773, +1149, 0, 1884, +1556, 0, 2008, +1550, 0, 2156, +416, 1005, 2342, +1252, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 145, +0, 0, 245, +0, 0, 351, +0, 0, 462, +0, 0, 579, +0, 0, 699, +0, 0, 821, +0, 0, 946, +0, 0, 1101, +0, 0, 1304, +0, 0, 1481, +0, 0, 1637, +432, 0, 1774, +1147, 0, 1885, +1551, 0, 2010, +1543, 38, 2158, +407, 1015, 2342, +1262, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 145, +0, 1, 295, +0, 1, 391, +0, 1, 494, +0, 1, 604, +0, 1, 718, +0, 1, 836, +0, 1, 958, +0, 70, 1109, +0, 30, 1310, +0, 30, 1484, +0, 0, 1639, +455, 0, 1776, +1144, 0, 1886, +1544, 0, 2012, +1532, 182, 2160, +394, 1028, 2343, +1275, 621, 2470, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +0, 4, 0, +0, 0, 0, +0, 0, 0, +0, 16, 0, +0, 58, 145, +0, 109, 295, +0, 170, 441, +0, 170, 534, +0, 170, 635, +0, 170, 742, +0, 170, 855, +0, 170, 973, +0, 218, 1119, +0, 163, 1316, +0, 163, 1489, +0, 126, 1641, +484, 0, 1778, +1141, 0, 1888, +1534, 32, 2014, +1518, 322, 2163, +376, 1045, 2344, +1292, 621, 2470, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +0, 144, 0, +0, 137, 0, +0, 127, 0, +0, 152, 0, +0, 184, 145, +0, 223, 295, +0, 271, 441, +0, 327, 582, +0, 327, 674, +0, 327, 773, +0, 327, 879, +0, 327, 991, +0, 363, 1133, +0, 295, 1325, +0, 295, 1495, +0, 267, 1644, +520, 87, 1782, +1137, 0, 1891, +1521, 164, 2017, +1498, 461, 2167, +352, 1066, 2345, +1314, 621, 2470, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +0, 281, 0, +0, 276, 0, +0, 269, 0, +0, 287, 0, +0, 311, 145, +0, 341, 295, +0, 378, 441, +0, 423, 582, +0, 478, 721, +0, 478, 812, +0, 478, 910, +0, 478, 1016, +0, 503, 1151, +0, 426, 1337, +0, 426, 1503, +0, 406, 1648, +565, 239, 1786, +1131, 111, 1894, +1503, 296, 2022, +1470, 597, 2172, +317, 1093, 2347, +1353, 639, 2470, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +0, 417, 0, +0, 413, 0, +0, 408, 0, +0, 422, 0, +0, 439, 145, +0, 462, 295, +0, 491, 441, +0, 527, 582, +0, 570, 721, +0, 623, 859, +0, 623, 948, +0, 623, 1046, +0, 642, 1174, +0, 570, 1352, +0, 559, 1514, +0, 544, 1653, +569, 424, 1790, +1123, 244, 1899, +1477, 428, 2027, +1429, 733, 2178, +265, 1128, 2349, +1400, 662, 2470, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +0, 552, 0, +0, 549, 0, +0, 545, 0, +0, 555, 0, +0, 568, 145, +0, 586, 295, +0, 608, 441, +0, 636, 582, +0, 670, 721, +0, 713, 859, +0, 765, 995, +0, 765, 1084, +0, 778, 1202, +0, 726, 1372, +0, 691, 1528, +0, 680, 1662, +569, 594, 1795, +1139, 422, 1905, +1440, 560, 2035, +1368, 868, 2187, +186, 1169, 2352, +1457, 691, 2470, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +0, 686, 0, +0, 684, 0, +0, 681, 0, +0, 689, 0, +0, 699, 145, +0, 712, 295, +0, 729, 441, +0, 750, 582, +0, 777, 721, +0, 811, 859, +0, 854, 995, +0, 904, 1130, +0, 914, 1238, +0, 876, 1397, +0, 823, 1546, +0, 815, 1675, +569, 753, 1802, +1167, 593, 1913, +1385, 692, 2045, +1272, 1002, 2199, +0, 1212, 2357, +1524, 728, 2470, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +0, 854, 85, +0, 854, 130, +0, 852, 185, +0, 857, 268, +0, 864, 360, +0, 873, 459, +0, 885, 565, +0, 901, 676, +0, 920, 793, +0, 946, 912, +0, 977, 1035, +0, 1016, 1160, +0, 1056, 1287, +0, 1029, 1432, +0, 983, 1571, +0, 967, 1697, +579, 939, 1816, +1186, 800, 1926, +1306, 849, 2057, +1123, 1137, 2212, +0, 1254, 2365, +1587, 800, 2470, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +0, 1181, 1022, +0, 1181, 1028, +0, 1181, 1036, +0, 1181, 1043, +0, 1181, 1052, +0, 1181, 1064, +0, 1181, 1080, +0, 1181, 1099, +0, 1181, 1125, +0, 1186, 1168, +0, 1205, 1242, +0, 1229, 1325, +0, 1255, 1417, +0, 1235, 1494, +0, 1207, 1618, +0, 1219, 1741, +647, 1188, 1855, +1051, 1133, 1961, +1243, 1131, 2080, +1031, 1271, 2225, +532, 1310, 2371, +1590, 1030, 2471, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +0, 1420, 1375, +0, 1420, 1378, +0, 1420, 1382, +0, 1420, 1385, +0, 1420, 1389, +0, 1420, 1395, +0, 1420, 1402, +0, 1420, 1412, +0, 1420, 1425, +0, 1420, 1442, +0, 1420, 1463, +0, 1420, 1491, +0, 1430, 1546, +0, 1417, 1606, +0, 1398, 1674, +0, 1410, 1786, +647, 1405, 1896, +1059, 1354, 2000, +1151, 1350, 2109, +878, 1405, 2240, +706, 1386, 2378, +1603, 1208, 2473, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +929, 1579, 1649, +928, 1579, 1650, +926, 1579, 1651, +926, 1579, 1653, +926, 1578, 1655, +926, 1577, 1658, +926, 1576, 1663, +926, 1574, 1668, +926, 1572, 1676, +926, 1569, 1685, +926, 1567, 1698, +926, 1567, 1715, +906, 1567, 1736, +898, 1576, 1787, +898, 1569, 1837, +906, 1552, 1889, +833, 1557, 1970, +939, 1536, 2067, +950, 1537, 2170, +810, 1524, 2268, +1132, 1500, 2382, +1680, 1435, 2473, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1452, 1705, 1855, +1450, 1705, 1856, +1449, 1705, 1857, +1448, 1705, 1859, +1446, 1705, 1860, +1443, 1705, 1862, +1440, 1705, 1865, +1435, 1705, 1868, +1429, 1705, 1873, +1428, 1703, 1880, +1428, 1700, 1888, +1428, 1696, 1899, +1425, 1691, 1913, +1402, 1685, 1931, +1402, 1696, 1977, +1371, 1701, 2021, +1374, 1685, 2062, +1200, 1672, 2128, +1132, 1678, 2221, +1180, 1647, 2295, +1520, 1631, 2386, +1776, 1634, 2475, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1787, 1817, 1978, +1787, 1817, 1978, +1786, 1817, 1979, +1786, 1817, 1980, +1787, 1817, 1981, +1787, 1817, 1982, +1788, 1817, 1983, +1789, 1817, 1986, +1791, 1817, 1988, +1793, 1817, 1992, +1789, 1817, 1998, +1782, 1817, 2007, +1772, 1818, 2018, +1753, 1823, 2036, +1734, 1818, 2052, +1728, 1803, 2080, +1687, 1816, 2123, +1706, 1808, 2166, +1658, 1793, 2234, +1666, 1793, 2304, +1755, 1797, 2389, +1874, 1790, 2475, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1958, 1958, 2029, +1958, 1958, 2029, +1958, 1958, 2029, +1958, 1958, 2030, +1957, 1958, 2031, +1957, 1958, 2032, +1956, 1958, 2033, +1955, 1958, 2035, +1955, 1958, 2037, +1953, 1958, 2041, +1951, 1958, 2045, +1949, 1958, 2051, +1946, 1958, 2058, +1941, 1962, 2068, +1936, 1968, 2081, +1927, 1969, 2114, +1914, 1966, 2153, +1905, 1963, 2189, +1920, 1969, 2243, +1882, 1968, 2320, +1930, 1954, 2392, +2034, 1964, 2481, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2120, 2119, 2068, +2120, 2119, 2068, +2120, 2119, 2068, +2120, 2120, 2069, +2120, 2120, 2069, +2120, 2120, 2070, +2120, 2120, 2071, +2120, 2121, 2073, +2120, 2122, 2076, +2120, 2122, 2079, +2120, 2124, 2083, +2120, 2125, 2088, +2119, 2127, 2095, +2119, 2127, 2101, +2119, 2127, 2110, +2116, 2131, 2132, +2109, 2133, 2164, +2103, 2131, 2206, +2111, 2135, 2256, +2120, 2135, 2316, +2148, 2131, 2395, +2212, 2147, 2485, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2356, 2126, +2369, 2356, 2126, +2369, 2356, 2127, +2369, 2357, 2129, +2368, 2357, 2131, +2367, 2358, 2133, +2368, 2359, 2137, +2369, 2360, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2368, 2358, 2163, +2370, 2358, 2193, +2369, 2358, 2226, +2372, 2355, 2273, +2384, 2356, 2337, +2410, 2367, 2405, +2467, 2385, 2498, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2655, 1965, +2681, 2655, 1966, +2681, 2654, 1967, +2681, 2654, 1969, +2681, 2654, 1968, +2681, 2654, 1966, +2680, 2653, 1965, +2680, 2653, 1962, +2679, 2652, 1963, +2678, 2653, 1970, +2677, 2655, 1992, +2676, 2653, 2015, +2675, 2650, 2035, +2677, 2655, 2124, +2681, 2656, 2208, +2687, 2661, 2306, +2695, 2666, 2409, +2715, 2678, 2527, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 28, +0, 0, 152, +0, 0, 280, +0, 0, 408, +0, 0, 537, +0, 0, 667, +0, 0, 797, +0, 0, 928, +0, 0, 1088, +0, 0, 1300, +0, 0, 1478, +0, 0, 1634, +499, 0, 1773, +1157, 0, 1883, +1561, 0, 2007, +1557, 0, 2156, +416, 987, 2341, +1238, 611, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 36, +0, 0, 159, +0, 0, 285, +0, 0, 412, +0, 0, 540, +0, 0, 669, +0, 0, 799, +0, 0, 930, +0, 0, 1089, +0, 0, 1301, +0, 0, 1478, +0, 0, 1635, +483, 0, 1773, +1157, 0, 1883, +1561, 0, 2007, +1556, 0, 2156, +416, 992, 2341, +1243, 614, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 48, +0, 0, 168, +0, 0, 291, +0, 0, 417, +0, 0, 544, +0, 0, 672, +0, 0, 801, +0, 0, 931, +0, 0, 1090, +0, 0, 1302, +0, 0, 1479, +0, 0, 1635, +460, 0, 1772, +1156, 0, 1884, +1560, 0, 2008, +1554, 0, 2156, +416, 998, 2341, +1249, 617, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 63, +0, 0, 180, +0, 0, 300, +0, 0, 424, +0, 0, 549, +0, 0, 676, +0, 0, 804, +0, 0, 933, +0, 0, 1091, +0, 0, 1302, +0, 0, 1480, +0, 0, 1636, +427, 0, 1772, +1154, 0, 1884, +1560, 0, 2009, +1552, 0, 2156, +416, 1005, 2342, +1256, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 120, +0, 0, 224, +0, 0, 335, +0, 0, 450, +0, 0, 569, +0, 0, 691, +0, 0, 816, +0, 0, 942, +0, 0, 1097, +0, 0, 1306, +0, 0, 1482, +0, 0, 1637, +445, 0, 1774, +1153, 0, 1885, +1554, 0, 2010, +1544, 22, 2158, +407, 1015, 2342, +1266, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 120, +0, 0, 277, +0, 0, 376, +0, 0, 483, +0, 0, 594, +0, 0, 711, +0, 0, 831, +0, 0, 954, +0, 23, 1106, +0, 30, 1311, +0, 30, 1486, +0, 0, 1639, +467, 0, 1775, +1150, 0, 1887, +1547, 0, 2012, +1534, 170, 2160, +394, 1028, 2343, +1279, 621, 2470, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +0, 4, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 11, 120, +0, 67, 277, +0, 133, 427, +0, 133, 523, +0, 133, 627, +0, 133, 736, +0, 133, 850, +0, 133, 968, +0, 186, 1116, +0, 163, 1318, +0, 163, 1490, +0, 112, 1641, +496, 0, 1778, +1147, 0, 1888, +1538, 32, 2014, +1520, 314, 2163, +376, 1045, 2344, +1296, 621, 2470, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +0, 144, 0, +0, 137, 0, +0, 127, 0, +0, 114, 0, +0, 148, 120, +0, 190, 277, +0, 241, 427, +0, 302, 573, +0, 302, 666, +0, 302, 767, +0, 302, 875, +0, 302, 987, +0, 339, 1130, +0, 295, 1327, +0, 295, 1496, +0, 258, 1644, +531, 58, 1781, +1142, 0, 1891, +1524, 164, 2018, +1500, 455, 2167, +352, 1066, 2345, +1318, 621, 2470, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +0, 281, 0, +0, 276, 0, +0, 269, 0, +0, 259, 0, +0, 284, 120, +0, 316, 277, +0, 355, 427, +0, 403, 573, +0, 459, 714, +0, 459, 806, +0, 459, 906, +0, 459, 1012, +0, 486, 1148, +0, 426, 1339, +0, 426, 1504, +0, 399, 1648, +574, 219, 1786, +1136, 111, 1894, +1506, 296, 2022, +1472, 593, 2172, +317, 1093, 2347, +1356, 639, 2470, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +0, 417, 0, +0, 413, 0, +0, 408, 0, +0, 401, 0, +0, 419, 120, +0, 443, 277, +0, 473, 427, +0, 510, 573, +0, 556, 714, +0, 610, 854, +0, 610, 944, +0, 610, 1043, +0, 629, 1171, +0, 570, 1354, +0, 559, 1515, +0, 539, 1653, +578, 410, 1789, +1128, 244, 1899, +1481, 428, 2028, +1431, 730, 2178, +265, 1128, 2349, +1403, 662, 2470, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +0, 552, 0, +0, 549, 0, +0, 545, 0, +0, 540, 0, +0, 553, 120, +0, 571, 277, +0, 594, 427, +0, 623, 573, +0, 658, 714, +0, 702, 854, +0, 755, 991, +0, 755, 1080, +0, 769, 1200, +0, 726, 1374, +0, 691, 1529, +0, 676, 1662, +578, 585, 1795, +1145, 422, 1905, +1444, 560, 2035, +1371, 865, 2187, +186, 1169, 2352, +1460, 691, 2470, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +0, 686, 0, +0, 684, 0, +0, 681, 0, +0, 677, 0, +0, 688, 120, +0, 701, 277, +0, 718, 427, +0, 740, 573, +0, 768, 714, +0, 803, 854, +0, 845, 991, +0, 897, 1127, +0, 907, 1236, +0, 876, 1399, +0, 823, 1547, +0, 812, 1675, +578, 746, 1801, +1172, 593, 1913, +1390, 692, 2045, +1275, 1000, 2199, +0, 1212, 2357, +1526, 728, 2470, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +0, 854, 85, +0, 854, 130, +0, 852, 185, +0, 850, 248, +0, 857, 344, +0, 866, 446, +0, 878, 555, +0, 894, 669, +0, 914, 787, +0, 939, 908, +0, 971, 1032, +0, 1011, 1157, +0, 1051, 1285, +0, 1029, 1433, +0, 983, 1572, +27, 965, 1697, +589, 934, 1816, +1190, 800, 1926, +1312, 849, 2057, +1127, 1135, 2212, +0, 1254, 2365, +1589, 800, 2470, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +0, 1178, 1018, +0, 1178, 1024, +0, 1178, 1032, +0, 1178, 1043, +0, 1178, 1052, +0, 1178, 1064, +0, 1178, 1080, +0, 1178, 1099, +0, 1178, 1125, +0, 1184, 1168, +0, 1203, 1242, +0, 1227, 1325, +0, 1253, 1417, +21, 1234, 1496, +21, 1206, 1619, +81, 1217, 1742, +655, 1189, 1855, +1060, 1135, 1962, +1243, 1131, 2080, +1031, 1271, 2225, +573, 1308, 2371, +1592, 1028, 2471, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +0, 1418, 1374, +0, 1418, 1376, +0, 1418, 1380, +0, 1418, 1385, +0, 1418, 1389, +0, 1418, 1395, +0, 1418, 1402, +0, 1418, 1412, +0, 1418, 1425, +0, 1418, 1442, +0, 1418, 1463, +0, 1418, 1491, +0, 1429, 1546, +21, 1416, 1607, +21, 1397, 1675, +81, 1409, 1787, +655, 1406, 1896, +1067, 1355, 2000, +1151, 1350, 2109, +878, 1405, 2240, +735, 1384, 2378, +1605, 1206, 2473, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +949, 1577, 1650, +947, 1578, 1651, +946, 1578, 1652, +943, 1579, 1653, +943, 1578, 1656, +943, 1577, 1659, +943, 1576, 1663, +943, 1574, 1669, +943, 1572, 1676, +943, 1569, 1686, +943, 1567, 1699, +943, 1567, 1715, +924, 1567, 1737, +908, 1576, 1787, +908, 1568, 1837, +917, 1552, 1889, +852, 1557, 1971, +951, 1536, 2066, +957, 1537, 2170, +810, 1525, 2268, +1138, 1499, 2382, +1680, 1435, 2473, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1454, 1705, 1855, +1453, 1705, 1856, +1451, 1705, 1857, +1449, 1705, 1859, +1447, 1705, 1860, +1444, 1705, 1862, +1441, 1705, 1865, +1436, 1705, 1868, +1430, 1705, 1873, +1430, 1703, 1880, +1430, 1700, 1888, +1430, 1696, 1899, +1426, 1691, 1913, +1403, 1685, 1931, +1403, 1696, 1977, +1372, 1701, 2021, +1375, 1686, 2063, +1206, 1672, 2128, +1137, 1678, 2221, +1185, 1647, 2295, +1521, 1632, 2386, +1778, 1634, 2475, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1788, 1817, 1978, +1788, 1817, 1978, +1787, 1817, 1979, +1787, 1817, 1980, +1787, 1817, 1981, +1788, 1817, 1982, +1789, 1817, 1983, +1790, 1817, 1986, +1791, 1817, 1988, +1793, 1817, 1992, +1789, 1817, 1998, +1782, 1817, 2007, +1773, 1818, 2018, +1754, 1823, 2036, +1735, 1818, 2051, +1730, 1803, 2080, +1689, 1816, 2124, +1707, 1808, 2166, +1658, 1793, 2234, +1668, 1793, 2304, +1756, 1797, 2389, +1874, 1789, 2475, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1959, 1958, 2029, +1959, 1958, 2029, +1958, 1958, 2030, +1958, 1958, 2030, +1958, 1958, 2031, +1957, 1958, 2032, +1957, 1958, 2033, +1956, 1958, 2035, +1955, 1958, 2037, +1954, 1958, 2041, +1952, 1958, 2045, +1950, 1958, 2051, +1946, 1958, 2058, +1942, 1962, 2068, +1936, 1967, 2081, +1928, 1969, 2114, +1915, 1966, 2154, +1905, 1962, 2189, +1920, 1968, 2243, +1883, 1968, 2320, +1930, 1954, 2392, +2035, 1964, 2481, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2120, 2120, 2068, +2120, 2120, 2068, +2120, 2120, 2068, +2120, 2120, 2069, +2120, 2120, 2069, +2120, 2120, 2070, +2120, 2120, 2071, +2120, 2121, 2073, +2120, 2122, 2075, +2120, 2122, 2078, +2120, 2124, 2082, +2120, 2125, 2088, +2119, 2127, 2095, +2119, 2127, 2101, +2119, 2127, 2110, +2116, 2131, 2132, +2110, 2133, 2165, +2104, 2131, 2206, +2111, 2134, 2256, +2120, 2135, 2316, +2148, 2131, 2395, +2212, 2147, 2485, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2356, 2126, +2369, 2356, 2126, +2369, 2356, 2127, +2369, 2357, 2129, +2368, 2357, 2131, +2368, 2358, 2133, +2368, 2359, 2137, +2369, 2360, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2369, 2358, 2163, +2371, 2358, 2193, +2369, 2358, 2226, +2372, 2355, 2273, +2384, 2357, 2337, +2410, 2367, 2405, +2467, 2385, 2498, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2655, 1966, +2681, 2655, 1967, +2681, 2655, 1968, +2681, 2655, 1969, +2681, 2654, 1968, +2681, 2654, 1967, +2680, 2654, 1965, +2680, 2653, 1963, +2679, 2653, 1963, +2678, 2654, 1973, +2677, 2655, 1994, +2676, 2653, 2016, +2675, 2650, 2036, +2677, 2655, 2123, +2681, 2656, 2208, +2687, 2661, 2306, +2695, 2666, 2409, +2715, 2678, 2527, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +58, 0, 0, +58, 0, 0, +58, 0, 0, +58, 0, 0, +58, 0, 28, +58, 0, 152, +58, 0, 280, +58, 0, 408, +58, 0, 537, +58, 0, 667, +58, 0, 797, +58, 0, 928, +0, 0, 1088, +0, 0, 1305, +0, 0, 1481, +28, 0, 1634, +564, 0, 1774, +1165, 0, 1884, +1561, 0, 2007, +1555, 0, 2157, +407, 987, 2341, +1245, 605, 2470, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +41, 0, 0, +50, 0, 0, +50, 0, 0, +50, 0, 0, +50, 0, 36, +50, 0, 159, +50, 0, 285, +50, 0, 412, +50, 0, 540, +50, 0, 669, +50, 0, 799, +50, 0, 930, +0, 0, 1089, +0, 0, 1306, +0, 0, 1482, +36, 0, 1635, +550, 0, 1774, +1164, 0, 1884, +1561, 0, 2008, +1554, 0, 2157, +407, 992, 2341, +1249, 608, 2470, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +17, 0, 0, +26, 0, 0, +38, 0, 0, +38, 0, 0, +38, 0, 48, +38, 0, 168, +38, 0, 291, +38, 0, 417, +38, 0, 544, +38, 0, 672, +38, 0, 801, +38, 0, 931, +0, 0, 1090, +0, 0, 1307, +0, 0, 1482, +48, 0, 1635, +530, 0, 1773, +1163, 0, 1884, +1560, 0, 2008, +1552, 0, 2157, +407, 998, 2341, +1254, 611, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +6, 0, 0, +22, 0, 0, +22, 0, 63, +22, 0, 180, +22, 0, 300, +22, 0, 424, +22, 0, 549, +22, 0, 676, +22, 0, 804, +22, 0, 933, +0, 0, 1091, +0, 0, 1308, +0, 0, 1483, +63, 0, 1636, +502, 0, 1773, +1162, 0, 1885, +1560, 0, 2009, +1550, 0, 2158, +407, 1005, 2342, +1262, 615, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 83, +0, 0, 195, +0, 0, 312, +0, 0, 433, +0, 0, 556, +0, 0, 681, +0, 0, 808, +0, 0, 936, +0, 0, 1093, +0, 0, 1309, +0, 0, 1484, +83, 0, 1637, +462, 0, 1772, +1160, 0, 1885, +1559, 0, 2010, +1547, 0, 2158, +407, 1015, 2342, +1272, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 83, +0, 0, 251, +0, 0, 356, +0, 0, 467, +0, 0, 582, +0, 0, 701, +0, 0, 823, +0, 0, 948, +0, 0, 1102, +0, 30, 1314, +0, 30, 1487, +83, 0, 1639, +483, 0, 1774, +1157, 0, 1887, +1552, 0, 2012, +1536, 154, 2160, +394, 1028, 2343, +1285, 621, 2470, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +0, 4, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 83, +0, 3, 251, +0, 78, 409, +0, 78, 509, +0, 78, 615, +0, 78, 727, +0, 78, 843, +0, 78, 963, +0, 137, 1112, +0, 163, 1321, +0, 163, 1492, +83, 94, 1641, +511, 0, 1777, +1154, 0, 1889, +1542, 32, 2015, +1522, 302, 2163, +376, 1045, 2344, +1302, 621, 2470, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +0, 144, 0, +0, 137, 0, +0, 127, 0, +0, 114, 0, +0, 96, 83, +0, 143, 251, +0, 199, 409, +0, 265, 559, +0, 265, 655, +0, 265, 759, +0, 265, 868, +0, 265, 982, +0, 305, 1126, +0, 295, 1330, +0, 295, 1498, +83, 244, 1644, +545, 15, 1780, +1150, 0, 1891, +1529, 164, 2018, +1502, 446, 2167, +352, 1066, 2345, +1323, 621, 2470, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +0, 281, 0, +0, 276, 0, +0, 269, 0, +0, 259, 0, +0, 246, 83, +0, 280, 251, +0, 322, 409, +0, 373, 559, +0, 434, 705, +0, 434, 798, +0, 434, 899, +0, 434, 1007, +0, 462, 1144, +0, 426, 1341, +0, 426, 1506, +83, 390, 1648, +587, 190, 1784, +1144, 111, 1895, +1511, 296, 2022, +1474, 586, 2172, +317, 1093, 2347, +1361, 639, 2470, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +0, 417, 0, +0, 413, 0, +0, 408, 0, +0, 401, 0, +0, 391, 83, +0, 416, 251, +0, 448, 409, +0, 487, 559, +0, 535, 705, +0, 591, 846, +0, 591, 938, +0, 591, 1038, +0, 611, 1167, +0, 570, 1357, +0, 559, 1517, +83, 531, 1653, +591, 391, 1789, +1136, 244, 1899, +1486, 428, 2028, +1434, 725, 2178, +265, 1128, 2349, +1407, 662, 2470, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +0, 552, 0, +0, 549, 0, +0, 545, 0, +0, 540, 0, +0, 533, 83, +0, 551, 251, +0, 575, 409, +0, 605, 559, +0, 642, 705, +0, 688, 846, +0, 742, 985, +0, 742, 1076, +0, 756, 1197, +0, 726, 1376, +0, 691, 1531, +83, 670, 1662, +591, 572, 1794, +1152, 422, 1905, +1450, 560, 2036, +1374, 862, 2187, +186, 1169, 2352, +1464, 691, 2470, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +0, 686, 0, +0, 684, 0, +0, 681, 0, +0, 677, 0, +0, 672, 83, +0, 686, 251, +0, 703, 409, +0, 726, 559, +0, 755, 705, +0, 791, 846, +0, 835, 985, +0, 887, 1123, +0, 898, 1233, +0, 876, 1401, +0, 823, 1548, +83, 808, 1675, +591, 737, 1800, +1179, 593, 1913, +1396, 692, 2046, +1279, 997, 2199, +0, 1212, 2357, +1529, 728, 2470, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +0, 854, 85, +0, 854, 130, +0, 852, 185, +0, 850, 248, +0, 846, 322, +0, 855, 429, +0, 868, 541, +0, 884, 658, +0, 904, 778, +0, 930, 901, +0, 963, 1027, +0, 1003, 1154, +69, 1044, 1282, +0, 1029, 1435, +0, 983, 1573, +141, 963, 1697, +601, 928, 1815, +1197, 800, 1927, +1320, 849, 2058, +1133, 1133, 2212, +0, 1254, 2365, +1592, 800, 2470, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +136, 1175, 1014, +107, 1175, 1020, +65, 1175, 1028, +1, 1175, 1038, +0, 1175, 1052, +0, 1175, 1064, +0, 1175, 1080, +0, 1175, 1099, +0, 1175, 1125, +0, 1180, 1168, +0, 1200, 1242, +0, 1224, 1325, +21, 1250, 1417, +153, 1233, 1497, +153, 1204, 1620, +214, 1214, 1743, +666, 1191, 1855, +1071, 1137, 1962, +1243, 1131, 2080, +1031, 1271, 2226, +622, 1305, 2371, +1594, 1025, 2471, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +136, 1416, 1371, +107, 1416, 1374, +65, 1416, 1378, +1, 1416, 1383, +0, 1416, 1389, +0, 1416, 1395, +0, 1416, 1402, +0, 1416, 1412, +0, 1416, 1425, +0, 1416, 1442, +0, 1416, 1463, +0, 1416, 1491, +21, 1427, 1546, +153, 1415, 1608, +153, 1396, 1676, +214, 1407, 1788, +666, 1407, 1897, +1078, 1356, 2001, +1151, 1350, 2109, +878, 1405, 2241, +770, 1382, 2378, +1607, 1205, 2473, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +973, 1576, 1651, +973, 1576, 1652, +971, 1577, 1653, +969, 1577, 1654, +966, 1578, 1656, +966, 1577, 1659, +966, 1576, 1664, +966, 1574, 1669, +966, 1572, 1677, +966, 1569, 1686, +966, 1567, 1699, +966, 1567, 1716, +948, 1567, 1737, +920, 1575, 1786, +920, 1568, 1836, +932, 1552, 1890, +876, 1557, 1972, +968, 1536, 2066, +965, 1537, 2170, +810, 1526, 2268, +1145, 1498, 2382, +1680, 1435, 2473, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1457, 1704, 1855, +1456, 1704, 1856, +1454, 1705, 1857, +1452, 1705, 1858, +1449, 1705, 1860, +1446, 1705, 1862, +1443, 1705, 1865, +1438, 1705, 1868, +1432, 1705, 1873, +1431, 1703, 1880, +1431, 1700, 1888, +1431, 1696, 1899, +1428, 1691, 1913, +1405, 1685, 1932, +1405, 1696, 1977, +1373, 1700, 2021, +1378, 1686, 2063, +1214, 1672, 2128, +1142, 1679, 2221, +1192, 1647, 2295, +1522, 1633, 2386, +1779, 1634, 2475, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1790, 1816, 1977, +1790, 1816, 1978, +1789, 1816, 1978, +1789, 1816, 1979, +1788, 1816, 1981, +1788, 1816, 1982, +1789, 1816, 1983, +1790, 1816, 1986, +1792, 1816, 1988, +1793, 1816, 1992, +1790, 1816, 1998, +1783, 1816, 2007, +1773, 1817, 2018, +1755, 1823, 2036, +1736, 1817, 2051, +1731, 1804, 2079, +1691, 1816, 2124, +1708, 1807, 2166, +1659, 1793, 2234, +1670, 1794, 2305, +1757, 1797, 2389, +1873, 1789, 2475, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1960, 1958, 2029, +1960, 1958, 2029, +1959, 1958, 2030, +1959, 1958, 2030, +1958, 1958, 2031, +1958, 1958, 2032, +1957, 1958, 2034, +1956, 1958, 2035, +1956, 1958, 2038, +1954, 1958, 2041, +1952, 1958, 2046, +1950, 1958, 2051, +1947, 1958, 2059, +1942, 1961, 2068, +1936, 1967, 2081, +1928, 1969, 2113, +1916, 1966, 2154, +1905, 1962, 2189, +1920, 1968, 2242, +1884, 1968, 2319, +1930, 1954, 2392, +2036, 1964, 2481, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2120, 2120, 2068, +2120, 2120, 2068, +2120, 2120, 2069, +2120, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2070, +2121, 2120, 2071, +2121, 2121, 2073, +2121, 2122, 2075, +2121, 2122, 2078, +2121, 2124, 2082, +2121, 2125, 2087, +2120, 2127, 2094, +2119, 2127, 2101, +2119, 2127, 2110, +2116, 2131, 2132, +2110, 2134, 2165, +2104, 2130, 2206, +2111, 2134, 2256, +2120, 2134, 2316, +2148, 2131, 2395, +2213, 2146, 2485, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2370, 2356, 2126, +2369, 2356, 2127, +2369, 2356, 2129, +2369, 2357, 2131, +2368, 2357, 2133, +2368, 2359, 2137, +2369, 2360, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2369, 2358, 2162, +2371, 2358, 2193, +2370, 2358, 2226, +2372, 2356, 2273, +2384, 2357, 2337, +2410, 2367, 2406, +2466, 2384, 2498, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2655, 1967, +2681, 2655, 1968, +2681, 2655, 1969, +2681, 2655, 1970, +2681, 2655, 1969, +2681, 2654, 1968, +2680, 2654, 1966, +2680, 2653, 1964, +2679, 2653, 1964, +2678, 2654, 1975, +2677, 2655, 1997, +2676, 2654, 2018, +2675, 2650, 2038, +2677, 2655, 2123, +2681, 2656, 2208, +2687, 2661, 2306, +2695, 2666, 2409, +2715, 2678, 2527, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +197, 0, 0, +197, 0, 0, +197, 0, 0, +197, 0, 0, +197, 0, 28, +197, 0, 152, +197, 0, 280, +197, 0, 408, +197, 0, 537, +197, 0, 667, +197, 0, 797, +197, 0, 928, +71, 0, 1088, +0, 0, 1312, +0, 0, 1486, +152, 0, 1634, +638, 0, 1775, +1174, 0, 1884, +1561, 0, 2008, +1552, 0, 2159, +394, 987, 2341, +1252, 597, 2470, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +184, 0, 0, +190, 0, 0, +190, 0, 0, +190, 0, 0, +190, 0, 36, +190, 0, 159, +190, 0, 285, +190, 0, 412, +190, 0, 540, +190, 0, 669, +190, 0, 799, +190, 0, 930, +46, 0, 1089, +0, 0, 1313, +0, 0, 1486, +159, 0, 1635, +626, 0, 1775, +1173, 0, 1885, +1561, 0, 2008, +1551, 0, 2159, +394, 992, 2341, +1257, 599, 2470, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +167, 0, 0, +173, 0, 0, +182, 0, 0, +182, 0, 0, +182, 0, 48, +182, 0, 168, +182, 0, 291, +182, 0, 417, +182, 0, 544, +182, 0, 672, +182, 0, 801, +182, 0, 931, +35, 0, 1090, +0, 0, 1313, +0, 0, 1487, +168, 0, 1635, +609, 0, 1775, +1172, 0, 1885, +1560, 0, 2009, +1549, 0, 2159, +394, 998, 2341, +1262, 603, 2470, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +142, 0, 0, +149, 0, 0, +158, 0, 0, +170, 0, 0, +170, 0, 63, +170, 0, 180, +170, 0, 300, +170, 0, 424, +170, 0, 549, +170, 0, 676, +170, 0, 804, +170, 0, 933, +19, 0, 1091, +0, 0, 1315, +0, 0, 1487, +180, 0, 1636, +586, 0, 1774, +1171, 0, 1886, +1560, 0, 2010, +1547, 0, 2159, +394, 1005, 2342, +1270, 608, 2470, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +107, 0, 0, +115, 0, 0, +125, 0, 0, +138, 0, 0, +154, 0, 83, +154, 0, 195, +154, 0, 312, +154, 0, 433, +154, 0, 556, +154, 0, 681, +154, 0, 808, +154, 0, 936, +0, 0, 1093, +0, 0, 1316, +0, 0, 1489, +195, 0, 1637, +552, 0, 1774, +1169, 0, 1886, +1559, 0, 2011, +1544, 57, 2160, +394, 1015, 2342, +1279, 613, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +56, 0, 0, +65, 0, 0, +76, 0, 0, +90, 0, 0, +108, 0, 83, +132, 0, 215, +132, 0, 327, +132, 0, 444, +132, 0, 564, +132, 0, 688, +132, 0, 813, +132, 0, 940, +0, 0, 1096, +0, 30, 1317, +0, 30, 1490, +215, 0, 1639, +504, 0, 1773, +1167, 0, 1887, +1558, 0, 2012, +1540, 132, 2160, +394, 1028, 2343, +1292, 621, 2470, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +56, 4, 0, +65, 0, 0, +76, 0, 0, +90, 0, 0, +108, 0, 83, +132, 0, 215, +132, 0, 383, +132, 0, 488, +132, 0, 599, +132, 0, 714, +132, 0, 833, +132, 0, 955, +0, 64, 1107, +0, 163, 1324, +0, 163, 1494, +215, 68, 1641, +530, 0, 1776, +1164, 0, 1889, +1548, 32, 2015, +1525, 286, 2163, +376, 1045, 2344, +1308, 621, 2470, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +56, 144, 0, +65, 137, 0, +76, 127, 0, +90, 114, 0, +108, 96, 83, +132, 70, 215, +132, 135, 383, +132, 210, 541, +132, 210, 641, +132, 210, 747, +132, 210, 859, +132, 210, 975, +0, 255, 1121, +0, 295, 1333, +0, 295, 1500, +215, 226, 1644, +563, 0, 1779, +1159, 0, 1892, +1536, 164, 2018, +1506, 434, 2167, +352, 1066, 2345, +1329, 621, 2470, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +56, 281, 0, +65, 276, 0, +76, 269, 0, +90, 259, 0, +108, 246, 83, +132, 227, 215, +132, 275, 383, +132, 331, 541, +132, 397, 691, +132, 397, 787, +132, 397, 891, +132, 397, 1000, +0, 427, 1139, +0, 426, 1344, +0, 426, 1508, +215, 376, 1648, +604, 147, 1783, +1154, 111, 1895, +1518, 296, 2022, +1478, 578, 2172, +317, 1093, 2347, +1367, 639, 2470, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +56, 417, 0, +65, 413, 0, +76, 408, 0, +90, 401, 0, +108, 391, 83, +132, 378, 215, +132, 412, 383, +132, 455, 541, +132, 505, 691, +132, 566, 837, +132, 566, 930, +132, 566, 1032, +0, 587, 1163, +0, 570, 1359, +0, 559, 1519, +215, 522, 1653, +607, 365, 1787, +1146, 244, 1900, +1493, 428, 2028, +1438, 719, 2178, +265, 1128, 2349, +1413, 662, 2470, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +56, 552, 0, +65, 549, 0, +76, 545, 0, +90, 540, 0, +108, 533, 83, +132, 523, 215, +132, 548, 383, +132, 580, 541, +132, 619, 691, +132, 667, 837, +132, 723, 978, +132, 723, 1071, +0, 738, 1192, +0, 726, 1379, +0, 691, 1532, +215, 663, 1662, +607, 554, 1792, +1162, 422, 1905, +1457, 560, 2036, +1379, 857, 2187, +186, 1169, 2352, +1468, 691, 2470, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +56, 686, 0, +65, 684, 0, +76, 681, 0, +90, 677, 0, +108, 672, 83, +132, 665, 215, +132, 684, 383, +132, 708, 541, +132, 737, 691, +132, 774, 837, +132, 820, 978, +132, 874, 1118, +0, 885, 1229, +0, 876, 1403, +0, 823, 1550, +215, 803, 1675, +607, 725, 1799, +1188, 593, 1913, +1404, 692, 2046, +1285, 994, 2199, +0, 1212, 2357, +1533, 728, 2470, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +63, 854, 85, +31, 854, 130, +43, 852, 185, +58, 850, 248, +78, 846, 322, +103, 841, 404, +103, 854, 522, +103, 870, 643, +103, 892, 767, +103, 918, 893, +103, 952, 1020, +103, 993, 1149, +185, 1035, 1278, +0, 1029, 1438, +0, 983, 1575, +259, 959, 1697, +617, 920, 1814, +1206, 800, 1927, +1329, 849, 2058, +1141, 1131, 2212, +0, 1254, 2365, +1596, 800, 2470, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +289, 1170, 1007, +268, 1170, 1013, +239, 1170, 1021, +196, 1170, 1032, +132, 1170, 1046, +30, 1170, 1064, +30, 1170, 1080, +30, 1170, 1099, +30, 1170, 1125, +30, 1176, 1168, +30, 1195, 1242, +30, 1220, 1325, +125, 1246, 1417, +285, 1231, 1499, +285, 1202, 1622, +345, 1210, 1744, +680, 1193, 1856, +1086, 1139, 1963, +1243, 1131, 2080, +1031, 1271, 2226, +681, 1302, 2370, +1597, 1022, 2471, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +289, 1413, 1368, +268, 1413, 1371, +239, 1413, 1375, +196, 1413, 1380, +132, 1413, 1386, +30, 1413, 1395, +30, 1413, 1402, +30, 1413, 1412, +30, 1413, 1425, +30, 1413, 1442, +30, 1413, 1463, +30, 1413, 1491, +125, 1424, 1546, +285, 1414, 1610, +285, 1395, 1677, +345, 1404, 1789, +680, 1408, 1897, +1092, 1358, 2001, +1151, 1350, 2109, +878, 1405, 2241, +813, 1379, 2377, +1609, 1202, 2473, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1005, 1574, 1653, +1004, 1574, 1654, +1003, 1575, 1655, +1001, 1575, 1656, +998, 1576, 1658, +995, 1577, 1660, +995, 1576, 1664, +995, 1574, 1670, +995, 1572, 1678, +995, 1569, 1687, +995, 1567, 1700, +995, 1567, 1716, +977, 1567, 1738, +937, 1574, 1785, +937, 1567, 1835, +952, 1552, 1890, +906, 1557, 1973, +989, 1536, 2066, +976, 1537, 2170, +810, 1527, 2268, +1155, 1497, 2382, +1680, 1435, 2473, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1461, 1703, 1854, +1459, 1704, 1855, +1458, 1704, 1856, +1456, 1704, 1858, +1453, 1705, 1859, +1449, 1705, 1862, +1446, 1705, 1865, +1441, 1705, 1868, +1435, 1705, 1873, +1434, 1703, 1880, +1434, 1700, 1888, +1434, 1696, 1899, +1431, 1691, 1913, +1408, 1685, 1932, +1408, 1696, 1977, +1375, 1699, 2021, +1380, 1687, 2064, +1224, 1672, 2127, +1149, 1680, 2221, +1200, 1647, 2295, +1523, 1633, 2386, +1781, 1634, 2475, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1793, 1816, 1977, +1792, 1816, 1977, +1792, 1816, 1978, +1791, 1816, 1979, +1790, 1816, 1980, +1789, 1816, 1982, +1790, 1816, 1983, +1791, 1816, 1986, +1792, 1816, 1988, +1794, 1816, 1992, +1790, 1816, 1998, +1783, 1816, 2007, +1774, 1817, 2018, +1756, 1822, 2035, +1737, 1817, 2051, +1733, 1804, 2079, +1694, 1816, 2124, +1710, 1807, 2166, +1660, 1793, 2234, +1673, 1795, 2305, +1759, 1797, 2389, +1873, 1788, 2475, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1961, 1958, 2029, +1961, 1958, 2030, +1961, 1958, 2030, +1960, 1958, 2031, +1959, 1958, 2031, +1959, 1958, 2032, +1958, 1958, 2034, +1958, 1958, 2036, +1956, 1958, 2038, +1955, 1958, 2042, +1953, 1958, 2046, +1951, 1958, 2052, +1948, 1958, 2059, +1943, 1961, 2068, +1937, 1966, 2081, +1930, 1968, 2112, +1918, 1966, 2154, +1905, 1962, 2189, +1920, 1968, 2242, +1885, 1967, 2319, +1930, 1954, 2392, +2038, 1964, 2481, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2120, 2120, 2069, +2120, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2071, +2121, 2121, 2073, +2121, 2122, 2075, +2121, 2122, 2078, +2121, 2124, 2082, +2121, 2125, 2087, +2120, 2127, 2094, +2119, 2127, 2101, +2119, 2127, 2110, +2117, 2131, 2132, +2111, 2134, 2166, +2105, 2130, 2206, +2111, 2134, 2255, +2121, 2134, 2316, +2148, 2131, 2396, +2213, 2146, 2485, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2370, 2355, 2126, +2370, 2356, 2127, +2369, 2356, 2129, +2369, 2357, 2131, +2368, 2357, 2133, +2369, 2358, 2137, +2369, 2359, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2369, 2358, 2162, +2371, 2358, 2193, +2370, 2358, 2226, +2373, 2356, 2273, +2385, 2357, 2337, +2411, 2367, 2406, +2466, 2384, 2498, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2655, 1967, +2681, 2655, 1969, +2681, 2655, 1970, +2681, 2655, 1971, +2681, 2655, 1970, +2681, 2655, 1969, +2680, 2654, 1968, +2680, 2654, 1965, +2679, 2653, 1966, +2679, 2654, 1979, +2677, 2655, 2000, +2676, 2654, 2020, +2675, 2650, 2041, +2677, 2655, 2122, +2681, 2656, 2208, +2688, 2661, 2306, +2695, 2666, 2408, +2715, 2678, 2527, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +333, 0, 0, +333, 0, 0, +333, 0, 0, +333, 0, 0, +333, 0, 28, +333, 0, 152, +333, 0, 280, +333, 0, 408, +333, 0, 537, +333, 0, 667, +333, 0, 797, +333, 0, 928, +244, 0, 1088, +0, 0, 1321, +0, 0, 1492, +280, 0, 1634, +721, 0, 1777, +1186, 0, 1886, +1561, 0, 2009, +1548, 0, 2161, +376, 987, 2341, +1263, 586, 2469, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +324, 0, 0, +329, 0, 0, +329, 0, 0, +329, 0, 0, +329, 0, 36, +329, 0, 159, +329, 0, 285, +329, 0, 412, +329, 0, 540, +329, 0, 669, +329, 0, 799, +329, 0, 930, +227, 0, 1089, +0, 0, 1322, +0, 0, 1493, +285, 0, 1635, +711, 0, 1776, +1185, 0, 1886, +1561, 0, 2009, +1547, 0, 2161, +376, 992, 2341, +1267, 588, 2469, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +311, 0, 0, +316, 0, 0, +322, 0, 0, +322, 0, 0, +322, 0, 48, +322, 0, 168, +322, 0, 291, +322, 0, 417, +322, 0, 544, +322, 0, 672, +322, 0, 801, +322, 0, 931, +219, 0, 1090, +0, 0, 1323, +0, 0, 1493, +291, 0, 1635, +697, 0, 1776, +1184, 0, 1886, +1560, 0, 2010, +1545, 22, 2161, +376, 998, 2341, +1272, 592, 2469, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +294, 0, 0, +299, 0, 0, +305, 0, 0, +314, 0, 0, +314, 0, 63, +314, 0, 180, +314, 0, 300, +314, 0, 424, +314, 0, 549, +314, 0, 676, +314, 0, 804, +314, 0, 933, +209, 0, 1091, +0, 0, 1323, +0, 0, 1494, +300, 0, 1636, +678, 0, 1776, +1183, 0, 1887, +1560, 0, 2011, +1543, 69, 2161, +376, 1005, 2342, +1280, 596, 2469, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +269, 0, 0, +274, 0, 0, +281, 0, 0, +290, 0, 0, +302, 0, 83, +302, 0, 195, +302, 0, 312, +302, 0, 433, +302, 0, 556, +302, 0, 681, +302, 0, 808, +302, 0, 936, +194, 0, 1093, +0, 0, 1325, +0, 0, 1495, +312, 0, 1637, +651, 0, 1776, +1181, 0, 1887, +1559, 0, 2012, +1540, 124, 2162, +376, 1015, 2342, +1289, 603, 2469, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +234, 0, 0, +239, 0, 0, +247, 0, 0, +257, 0, 0, +270, 0, 83, +286, 0, 215, +286, 0, 327, +286, 0, 444, +286, 0, 564, +286, 0, 688, +286, 0, 813, +286, 0, 940, +173, 0, 1096, +0, 30, 1326, +0, 30, 1496, +327, 0, 1639, +613, 0, 1775, +1179, 0, 1888, +1558, 0, 2013, +1535, 189, 2162, +376, 1028, 2343, +1301, 611, 2469, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +182, 4, 0, +188, 0, 0, +197, 0, 0, +208, 0, 0, +222, 0, 83, +241, 0, 215, +264, 0, 347, +264, 0, 459, +264, 0, 576, +264, 0, 697, +264, 0, 820, +264, 0, 946, +145, 0, 1100, +0, 163, 1329, +0, 163, 1497, +347, 32, 1641, +555, 0, 1774, +1176, 0, 1890, +1557, 32, 2015, +1530, 264, 2163, +376, 1045, 2344, +1318, 621, 2469, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +182, 144, 0, +188, 137, 0, +197, 127, 0, +208, 114, 0, +222, 96, 83, +241, 70, 215, +264, 34, 347, +264, 126, 516, +264, 126, 620, +264, 126, 731, +264, 126, 846, +264, 126, 966, +145, 179, 1114, +0, 295, 1337, +0, 295, 1503, +347, 201, 1644, +586, 0, 1777, +1172, 0, 1892, +1544, 164, 2019, +1510, 418, 2167, +352, 1066, 2345, +1338, 621, 2469, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +182, 281, 0, +188, 276, 0, +197, 269, 0, +208, 259, 0, +222, 246, 83, +241, 227, 215, +264, 202, 347, +264, 267, 516, +264, 342, 673, +264, 342, 773, +264, 342, 879, +264, 342, 991, +145, 376, 1133, +0, 426, 1349, +0, 426, 1511, +347, 358, 1648, +625, 84, 1782, +1166, 111, 1896, +1526, 296, 2023, +1483, 566, 2172, +317, 1093, 2347, +1375, 639, 2469, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +182, 417, 0, +188, 413, 0, +197, 408, 0, +208, 401, 0, +222, 391, 83, +241, 378, 215, +264, 360, 347, +264, 407, 516, +264, 463, 673, +264, 529, 824, +264, 529, 920, +264, 529, 1023, +145, 552, 1156, +0, 570, 1364, +0, 559, 1522, +347, 509, 1653, +628, 326, 1786, +1159, 244, 1900, +1502, 428, 2029, +1443, 710, 2178, +265, 1128, 2349, +1420, 662, 2469, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +182, 552, 0, +188, 549, 0, +197, 545, 0, +208, 540, 0, +222, 533, 83, +241, 523, 215, +264, 510, 347, +264, 544, 516, +264, 586, 673, +264, 637, 824, +264, 698, 969, +264, 698, 1063, +145, 714, 1186, +0, 726, 1383, +0, 691, 1535, +347, 654, 1662, +628, 529, 1791, +1174, 422, 1906, +1467, 560, 2036, +1385, 851, 2187, +186, 1169, 2352, +1475, 691, 2469, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +182, 686, 0, +188, 684, 0, +197, 681, 0, +208, 677, 0, +222, 672, 83, +241, 665, 215, +264, 655, 347, +264, 681, 516, +264, 712, 673, +264, 752, 824, +264, 799, 969, +264, 856, 1111, +145, 867, 1223, +0, 876, 1407, +0, 823, 1553, +347, 796, 1675, +628, 708, 1798, +1200, 593, 1914, +1415, 692, 2046, +1292, 989, 2199, +0, 1212, 2357, +1539, 728, 2469, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +187, 854, 85, +163, 854, 130, +172, 852, 185, +183, 850, 248, +198, 846, 322, +218, 841, 404, +243, 835, 496, +243, 852, 623, +243, 874, 752, +243, 902, 881, +243, 936, 1011, +243, 979, 1142, +304, 1023, 1273, +0, 1029, 1441, +0, 983, 1578, +380, 954, 1697, +638, 909, 1812, +1217, 800, 1928, +1343, 849, 2058, +1151, 1127, 2212, +0, 1254, 2365, +1600, 800, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +436, 1164, 998, +421, 1164, 1004, +400, 1164, 1013, +371, 1164, 1024, +328, 1164, 1038, +265, 1164, 1056, +163, 1164, 1080, +163, 1164, 1099, +163, 1164, 1125, +163, 1170, 1168, +163, 1189, 1242, +163, 1214, 1325, +235, 1241, 1417, +417, 1228, 1503, +417, 1199, 1624, +478, 1204, 1746, +698, 1196, 1857, +1104, 1142, 1964, +1243, 1131, 2079, +1031, 1271, 2226, +750, 1297, 2370, +1600, 1018, 2470, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +436, 1410, 1364, +421, 1410, 1367, +400, 1410, 1371, +371, 1410, 1376, +328, 1410, 1382, +265, 1410, 1391, +163, 1410, 1402, +163, 1410, 1412, +163, 1410, 1425, +163, 1410, 1442, +163, 1410, 1463, +163, 1410, 1491, +235, 1421, 1546, +417, 1412, 1612, +417, 1393, 1679, +478, 1400, 1791, +698, 1410, 1897, +1111, 1360, 2002, +1151, 1350, 2108, +878, 1405, 2242, +865, 1375, 2377, +1613, 1200, 2472, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1044, 1572, 1655, +1043, 1572, 1656, +1042, 1572, 1657, +1040, 1573, 1658, +1038, 1573, 1660, +1034, 1574, 1662, +1030, 1576, 1666, +1030, 1574, 1671, +1030, 1572, 1679, +1030, 1569, 1688, +1030, 1567, 1701, +1030, 1567, 1717, +1014, 1567, 1739, +958, 1573, 1783, +958, 1565, 1833, +977, 1552, 1891, +944, 1557, 1974, +1016, 1536, 2066, +990, 1537, 2170, +810, 1528, 2268, +1168, 1496, 2382, +1680, 1435, 2473, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1466, 1702, 1854, +1464, 1703, 1855, +1463, 1703, 1855, +1461, 1703, 1857, +1458, 1704, 1859, +1454, 1705, 1862, +1449, 1705, 1865, +1444, 1705, 1868, +1438, 1705, 1873, +1438, 1703, 1880, +1438, 1700, 1888, +1438, 1696, 1899, +1434, 1691, 1913, +1412, 1685, 1932, +1412, 1696, 1978, +1377, 1698, 2020, +1384, 1688, 2065, +1238, 1672, 2127, +1159, 1681, 2221, +1212, 1647, 2296, +1524, 1635, 2386, +1783, 1634, 2474, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1796, 1815, 1977, +1795, 1815, 1977, +1795, 1815, 1978, +1794, 1815, 1978, +1793, 1815, 1980, +1792, 1815, 1981, +1790, 1815, 1983, +1792, 1815, 1986, +1793, 1815, 1988, +1795, 1815, 1992, +1791, 1815, 1998, +1784, 1815, 2007, +1775, 1816, 2018, +1758, 1821, 2035, +1739, 1816, 2051, +1736, 1805, 2078, +1698, 1816, 2124, +1712, 1806, 2166, +1661, 1793, 2234, +1677, 1795, 2305, +1762, 1797, 2390, +1872, 1787, 2475, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1963, 1958, 2030, +1962, 1958, 2030, +1962, 1958, 2031, +1962, 1958, 2031, +1961, 1958, 2032, +1960, 1958, 2033, +1959, 1958, 2034, +1958, 1958, 2036, +1958, 1958, 2039, +1956, 1958, 2042, +1955, 1958, 2047, +1952, 1958, 2052, +1949, 1958, 2059, +1943, 1961, 2068, +1937, 1966, 2081, +1930, 1968, 2111, +1921, 1967, 2155, +1905, 1961, 2189, +1920, 1967, 2241, +1887, 1967, 2319, +1931, 1954, 2392, +2040, 1964, 2481, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2121, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2070, +2122, 2120, 2070, +2122, 2120, 2070, +2122, 2121, 2072, +2122, 2122, 2074, +2122, 2122, 2078, +2122, 2124, 2082, +2122, 2125, 2087, +2121, 2127, 2094, +2119, 2127, 2101, +2119, 2127, 2110, +2118, 2131, 2131, +2112, 2134, 2166, +2105, 2129, 2205, +2112, 2134, 2255, +2122, 2134, 2316, +2148, 2132, 2396, +2214, 2146, 2485, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2371, 2355, 2126, +2370, 2356, 2127, +2370, 2356, 2129, +2369, 2357, 2131, +2369, 2357, 2133, +2369, 2358, 2137, +2370, 2359, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2369, 2358, 2162, +2372, 2358, 2193, +2371, 2358, 2226, +2374, 2356, 2273, +2386, 2358, 2337, +2411, 2367, 2406, +2465, 2384, 2499, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2655, 1967, +2681, 2655, 1969, +2681, 2656, 1972, +2681, 2656, 1973, +2681, 2655, 1972, +2681, 2655, 1971, +2680, 2655, 1969, +2680, 2654, 1967, +2679, 2654, 1967, +2679, 2655, 1983, +2677, 2656, 2005, +2677, 2654, 2023, +2675, 2651, 2045, +2677, 2655, 2122, +2681, 2656, 2208, +2688, 2660, 2305, +2695, 2666, 2408, +2715, 2678, 2527, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +469, 0, 0, +469, 0, 0, +469, 0, 0, +469, 0, 0, +469, 0, 28, +469, 0, 152, +469, 0, 280, +469, 0, 408, +469, 0, 537, +469, 0, 667, +469, 0, 797, +469, 0, 928, +404, 0, 1088, +100, 0, 1333, +100, 0, 1501, +408, 0, 1634, +813, 0, 1779, +1202, 0, 1887, +1561, 0, 2010, +1542, 61, 2164, +352, 987, 2341, +1276, 570, 2469, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +462, 0, 0, +465, 0, 0, +465, 0, 0, +465, 0, 0, +465, 0, 36, +465, 0, 159, +465, 0, 285, +465, 0, 412, +465, 0, 540, +465, 0, 669, +465, 0, 799, +465, 0, 930, +393, 0, 1089, +76, 0, 1333, +76, 0, 1501, +412, 0, 1635, +805, 0, 1779, +1201, 0, 1887, +1561, 0, 2011, +1541, 86, 2164, +352, 992, 2341, +1280, 573, 2469, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +453, 0, 0, +456, 0, 0, +461, 0, 0, +461, 0, 0, +461, 0, 48, +461, 0, 168, +461, 0, 291, +461, 0, 417, +461, 0, 544, +461, 0, 672, +461, 0, 801, +461, 0, 931, +387, 0, 1090, +43, 0, 1334, +43, 0, 1501, +417, 0, 1635, +793, 0, 1778, +1200, 0, 1888, +1560, 0, 2011, +1539, 116, 2164, +352, 998, 2341, +1285, 577, 2469, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +440, 0, 0, +444, 0, 0, +448, 0, 0, +455, 0, 0, +455, 0, 63, +455, 0, 180, +455, 0, 300, +455, 0, 424, +455, 0, 549, +455, 0, 676, +455, 0, 804, +455, 0, 933, +380, 0, 1091, +0, 0, 1335, +0, 0, 1502, +424, 0, 1636, +778, 0, 1778, +1199, 0, 1889, +1560, 0, 2012, +1537, 154, 2164, +352, 1005, 2342, +1292, 582, 2469, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +422, 0, 0, +426, 0, 0, +431, 0, 0, +437, 0, 0, +446, 0, 83, +446, 0, 195, +446, 0, 312, +446, 0, 433, +446, 0, 556, +446, 0, 681, +446, 0, 808, +446, 0, 936, +370, 0, 1093, +0, 0, 1336, +0, 0, 1503, +433, 0, 1637, +757, 0, 1778, +1197, 0, 1889, +1559, 0, 2013, +1534, 201, 2165, +352, 1015, 2342, +1302, 588, 2469, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +397, 0, 0, +401, 0, 0, +406, 0, 0, +413, 0, 0, +422, 0, 83, +434, 0, 215, +434, 0, 327, +434, 0, 444, +434, 0, 564, +434, 0, 688, +434, 0, 813, +434, 0, 940, +356, 0, 1096, +0, 30, 1338, +0, 30, 1504, +444, 0, 1639, +726, 0, 1777, +1195, 0, 1890, +1558, 0, 2015, +1530, 256, 2165, +352, 1028, 2343, +1314, 596, 2469, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +362, 4, 0, +366, 0, 0, +371, 0, 0, +379, 0, 0, +389, 0, 83, +402, 0, 215, +418, 0, 347, +418, 0, 459, +418, 0, 576, +418, 0, 697, +418, 0, 820, +418, 0, 946, +337, 0, 1100, +0, 163, 1340, +0, 163, 1505, +459, 32, 1641, +682, 0, 1776, +1192, 0, 1891, +1557, 32, 2017, +1524, 322, 2166, +352, 1045, 2344, +1329, 607, 2469, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +309, 144, 0, +314, 137, 0, +320, 127, 0, +329, 114, 0, +340, 96, 83, +354, 70, 215, +373, 34, 347, +396, 0, 479, +396, 0, 591, +396, 0, 708, +396, 0, 829, +396, 0, 952, +310, 52, 1105, +0, 295, 1343, +0, 295, 1507, +479, 164, 1644, +615, 0, 1775, +1188, 0, 1893, +1555, 164, 2019, +1516, 396, 2167, +352, 1066, 2345, +1349, 621, 2469, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +309, 281, 0, +314, 276, 0, +320, 269, 0, +329, 259, 0, +340, 246, 83, +354, 227, 215, +373, 202, 347, +396, 166, 479, +396, 257, 648, +396, 257, 752, +396, 257, 863, +396, 257, 978, +310, 298, 1124, +0, 426, 1354, +0, 426, 1515, +479, 333, 1648, +652, 0, 1779, +1183, 111, 1897, +1538, 296, 2024, +1489, 550, 2172, +317, 1093, 2347, +1385, 639, 2469, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +309, 417, 0, +314, 413, 0, +320, 408, 0, +329, 401, 0, +340, 391, 83, +354, 378, 215, +373, 360, 347, +396, 334, 479, +396, 399, 648, +396, 474, 805, +396, 474, 905, +396, 474, 1011, +310, 500, 1148, +0, 570, 1369, +0, 559, 1526, +479, 490, 1653, +655, 270, 1784, +1176, 244, 1901, +1514, 428, 2029, +1450, 699, 2178, +265, 1128, 2349, +1430, 662, 2469, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +309, 552, 0, +314, 549, 0, +320, 545, 0, +329, 540, 0, +340, 533, 83, +354, 523, 215, +373, 510, 347, +396, 492, 479, +396, 539, 648, +396, 595, 805, +396, 661, 955, +396, 661, 1052, +310, 678, 1178, +0, 726, 1388, +0, 691, 1539, +479, 640, 1662, +655, 494, 1789, +1191, 422, 1907, +1480, 560, 2037, +1393, 842, 2187, +186, 1169, 2352, +1483, 691, 2469, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +309, 686, 0, +314, 684, 0, +320, 681, 0, +329, 677, 0, +340, 672, 83, +354, 665, 215, +373, 655, 347, +396, 643, 479, +396, 677, 648, +396, 719, 805, +396, 770, 955, +396, 830, 1101, +310, 842, 1216, +0, 876, 1412, +0, 823, 1557, +479, 786, 1675, +655, 684, 1796, +1216, 593, 1915, +1430, 692, 2047, +1302, 983, 2199, +0, 1212, 2357, +1546, 728, 2469, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +313, 854, 85, +295, 854, 130, +302, 852, 185, +310, 850, 248, +322, 846, 322, +336, 841, 404, +356, 835, 496, +380, 826, 594, +380, 849, 730, +380, 878, 865, +380, 915, 1000, +380, 960, 1133, +426, 1005, 1267, +0, 1029, 1446, +0, 983, 1581, +504, 947, 1697, +664, 894, 1810, +1232, 800, 1928, +1359, 849, 2059, +1164, 1123, 2212, +0, 1254, 2365, +1607, 800, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +579, 1156, 985, +568, 1156, 992, +553, 1156, 1001, +532, 1156, 1012, +503, 1156, 1027, +461, 1156, 1045, +397, 1156, 1069, +295, 1156, 1099, +295, 1156, 1125, +295, 1161, 1168, +295, 1181, 1242, +295, 1207, 1325, +350, 1233, 1417, +549, 1224, 1507, +549, 1195, 1627, +610, 1196, 1748, +721, 1200, 1858, +1128, 1147, 1966, +1243, 1131, 2078, +1031, 1271, 2227, +827, 1290, 2369, +1605, 1012, 2470, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +579, 1405, 1359, +568, 1405, 1361, +553, 1405, 1365, +532, 1405, 1370, +503, 1405, 1377, +461, 1405, 1386, +397, 1405, 1397, +295, 1405, 1412, +295, 1405, 1425, +295, 1405, 1442, +295, 1405, 1463, +295, 1405, 1491, +350, 1416, 1546, +549, 1410, 1615, +549, 1390, 1682, +610, 1395, 1793, +721, 1413, 1898, +1134, 1362, 2004, +1151, 1350, 2108, +878, 1405, 2243, +927, 1369, 2376, +1617, 1196, 2472, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1091, 1568, 1658, +1091, 1569, 1659, +1089, 1569, 1660, +1088, 1569, 1661, +1086, 1570, 1663, +1083, 1571, 1665, +1079, 1572, 1668, +1074, 1574, 1673, +1074, 1572, 1680, +1074, 1569, 1690, +1074, 1567, 1702, +1074, 1567, 1718, +1060, 1567, 1740, +984, 1571, 1781, +984, 1563, 1832, +1008, 1552, 1891, +990, 1557, 1977, +1050, 1536, 2065, +1008, 1537, 2170, +810, 1530, 2268, +1184, 1494, 2382, +1680, 1435, 2473, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1472, 1701, 1853, +1471, 1701, 1854, +1469, 1702, 1855, +1467, 1702, 1856, +1464, 1703, 1858, +1461, 1703, 1861, +1456, 1704, 1864, +1449, 1705, 1868, +1443, 1705, 1873, +1442, 1703, 1880, +1442, 1700, 1888, +1442, 1696, 1899, +1439, 1691, 1913, +1417, 1685, 1933, +1417, 1696, 1979, +1379, 1697, 2020, +1390, 1690, 2066, +1256, 1672, 2126, +1172, 1682, 2221, +1227, 1647, 2296, +1526, 1636, 2386, +1786, 1634, 2474, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1800, 1814, 1976, +1800, 1814, 1976, +1799, 1814, 1977, +1799, 1814, 1978, +1797, 1814, 1979, +1796, 1814, 1981, +1795, 1814, 1983, +1793, 1814, 1986, +1794, 1814, 1988, +1796, 1814, 1992, +1792, 1814, 1998, +1785, 1814, 2007, +1776, 1815, 2018, +1760, 1821, 2034, +1741, 1815, 2050, +1739, 1806, 2078, +1704, 1816, 2125, +1714, 1805, 2166, +1662, 1793, 2234, +1683, 1796, 2305, +1765, 1797, 2390, +1871, 1786, 2475, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1965, 1958, 2031, +1965, 1958, 2031, +1964, 1958, 2031, +1964, 1958, 2032, +1963, 1958, 2032, +1962, 1958, 2034, +1961, 1958, 2035, +1960, 1958, 2037, +1959, 1958, 2039, +1958, 1958, 2042, +1956, 1958, 2047, +1953, 1958, 2053, +1951, 1958, 2060, +1944, 1960, 2068, +1938, 1965, 2081, +1932, 1967, 2110, +1924, 1968, 2156, +1905, 1961, 2189, +1920, 1966, 2240, +1890, 1966, 2318, +1932, 1954, 2393, +2043, 1964, 2481, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2121, 2121, 2069, +2121, 2121, 2070, +2121, 2121, 2070, +2122, 2121, 2070, +2122, 2121, 2070, +2122, 2121, 2071, +2122, 2121, 2071, +2123, 2121, 2071, +2123, 2122, 2074, +2123, 2122, 2077, +2123, 2124, 2081, +2123, 2125, 2086, +2122, 2127, 2093, +2119, 2127, 2101, +2119, 2127, 2110, +2119, 2131, 2131, +2114, 2135, 2167, +2107, 2129, 2205, +2112, 2133, 2255, +2123, 2133, 2316, +2148, 2132, 2397, +2215, 2145, 2485, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2371, 2355, 2126, +2371, 2355, 2127, +2371, 2356, 2129, +2370, 2356, 2131, +2369, 2357, 2133, +2369, 2358, 2137, +2370, 2359, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2369, 2358, 2161, +2372, 2358, 2193, +2371, 2358, 2227, +2375, 2356, 2273, +2387, 2359, 2337, +2411, 2367, 2406, +2465, 2384, 2499, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2655, 1967, +2681, 2655, 1969, +2681, 2656, 1972, +2681, 2656, 1975, +2681, 2656, 1974, +2681, 2656, 1973, +2680, 2655, 1971, +2680, 2655, 1969, +2679, 2654, 1969, +2679, 2655, 1990, +2678, 2657, 2010, +2677, 2655, 2027, +2675, 2651, 2050, +2677, 2656, 2121, +2681, 2656, 2208, +2688, 2660, 2305, +2695, 2665, 2407, +2715, 2678, 2527, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +603, 0, 0, +603, 0, 0, +603, 0, 0, +603, 0, 0, +603, 0, 28, +603, 0, 152, +603, 0, 280, +603, 0, 408, +603, 0, 537, +603, 0, 667, +603, 0, 797, +603, 0, 928, +556, 0, 1088, +249, 0, 1348, +249, 0, 1511, +537, 0, 1634, +912, 0, 1782, +1222, 0, 1890, +1561, 0, 2012, +1535, 174, 2167, +317, 987, 2341, +1325, 528, 2469, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +598, 0, 0, +601, 0, 0, +601, 0, 0, +601, 0, 0, +601, 0, 36, +601, 0, 159, +601, 0, 285, +601, 0, 412, +601, 0, 540, +601, 0, 669, +601, 0, 799, +601, 0, 930, +548, 0, 1089, +232, 0, 1349, +232, 0, 1511, +540, 0, 1635, +906, 0, 1782, +1221, 0, 1890, +1561, 0, 2013, +1534, 193, 2167, +317, 992, 2341, +1328, 531, 2469, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +591, 0, 0, +594, 0, 0, +597, 0, 0, +597, 0, 0, +597, 0, 48, +597, 0, 168, +597, 0, 291, +597, 0, 417, +597, 0, 544, +597, 0, 672, +597, 0, 801, +597, 0, 931, +544, 0, 1090, +208, 0, 1349, +208, 0, 1512, +544, 0, 1635, +897, 0, 1781, +1221, 0, 1891, +1560, 0, 2013, +1532, 217, 2168, +317, 998, 2341, +1333, 535, 2469, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +582, 0, 0, +585, 0, 0, +588, 0, 0, +593, 0, 0, +593, 0, 63, +593, 0, 180, +593, 0, 300, +593, 0, 424, +593, 0, 549, +593, 0, 676, +593, 0, 804, +593, 0, 933, +539, 0, 1091, +175, 0, 1351, +175, 0, 1512, +549, 0, 1636, +884, 0, 1781, +1220, 0, 1891, +1560, 0, 2014, +1530, 248, 2168, +317, 1005, 2342, +1339, 540, 2469, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +569, 0, 0, +572, 0, 0, +575, 0, 0, +580, 0, 0, +586, 0, 83, +586, 0, 195, +586, 0, 312, +586, 0, 433, +586, 0, 556, +586, 0, 681, +586, 0, 808, +586, 0, 936, +532, 0, 1093, +125, 0, 1352, +125, 0, 1513, +556, 0, 1637, +867, 0, 1781, +1218, 0, 1891, +1559, 0, 2015, +1526, 286, 2168, +317, 1015, 2342, +1348, 547, 2469, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +551, 0, 0, +554, 0, 0, +558, 0, 0, +563, 0, 0, +569, 0, 83, +578, 0, 215, +578, 0, 327, +578, 0, 444, +578, 0, 564, +578, 0, 688, +578, 0, 813, +578, 0, 940, +522, 0, 1096, +50, 30, 1353, +50, 30, 1514, +564, 0, 1639, +844, 0, 1780, +1216, 0, 1893, +1558, 0, 2017, +1522, 333, 2169, +317, 1028, 2343, +1359, 556, 2469, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +526, 4, 0, +529, 0, 0, +533, 0, 0, +538, 0, 0, +545, 0, 83, +554, 0, 215, +566, 0, 347, +566, 0, 459, +566, 0, 576, +566, 0, 697, +566, 0, 820, +566, 0, 946, +509, 0, 1100, +0, 163, 1355, +0, 163, 1516, +576, 32, 1641, +810, 0, 1779, +1213, 0, 1894, +1557, 32, 2019, +1516, 388, 2170, +317, 1045, 2344, +1373, 568, 2469, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +490, 144, 0, +494, 137, 0, +498, 127, 0, +504, 114, 0, +511, 96, 83, +521, 70, 215, +534, 34, 347, +550, 0, 479, +550, 0, 591, +550, 0, 708, +550, 0, 829, +550, 0, 952, +491, 52, 1105, +0, 295, 1358, +0, 295, 1518, +591, 164, 1644, +761, 0, 1778, +1209, 0, 1896, +1555, 164, 2021, +1508, 454, 2170, +317, 1066, 2345, +1391, 584, 2469, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +438, 281, 0, +441, 276, 0, +446, 269, 0, +452, 259, 0, +461, 246, 83, +472, 227, 215, +486, 202, 347, +505, 166, 479, +528, 111, 611, +528, 111, 723, +528, 111, 840, +528, 111, 961, +465, 167, 1111, +0, 426, 1362, +0, 426, 1520, +611, 296, 1648, +685, 0, 1777, +1204, 111, 1898, +1552, 296, 2024, +1498, 528, 2172, +317, 1093, 2347, +1405, 655, 2469, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +438, 417, 0, +441, 413, 0, +446, 408, 0, +452, 401, 0, +461, 391, 83, +472, 378, 215, +486, 360, 347, +505, 334, 479, +528, 298, 611, +528, 390, 780, +528, 390, 884, +528, 390, 995, +465, 420, 1136, +0, 570, 1376, +0, 559, 1531, +611, 465, 1653, +688, 180, 1781, +1197, 244, 1902, +1529, 428, 2030, +1459, 683, 2178, +265, 1128, 2349, +1448, 678, 2469, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +438, 552, 0, +441, 549, 0, +446, 545, 0, +452, 540, 0, +461, 533, 83, +472, 523, 215, +486, 510, 347, +505, 492, 479, +528, 466, 611, +528, 532, 780, +528, 606, 937, +528, 606, 1037, +465, 626, 1167, +0, 726, 1395, +0, 691, 1544, +611, 622, 1662, +688, 441, 1786, +1211, 422, 1908, +1496, 560, 2038, +1403, 831, 2187, +186, 1169, 2352, +1499, 706, 2469, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +438, 686, 0, +441, 684, 0, +446, 681, 0, +452, 677, 0, +461, 672, 83, +472, 665, 215, +486, 655, 347, +505, 643, 479, +528, 624, 611, +528, 671, 780, +528, 728, 937, +528, 793, 1088, +465, 806, 1206, +0, 876, 1419, +0, 823, 1561, +611, 773, 1675, +688, 651, 1793, +1235, 593, 1916, +1448, 692, 2048, +1314, 975, 2199, +0, 1212, 2357, +1560, 742, 2469, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +441, 854, 85, +427, 854, 130, +432, 852, 185, +438, 850, 248, +447, 846, 322, +458, 841, 404, +473, 835, 496, +492, 826, 594, +516, 814, 700, +516, 845, 843, +516, 884, 983, +516, 932, 1121, +551, 980, 1257, +0, 1029, 1452, +0, 983, 1586, +630, 938, 1697, +697, 873, 1807, +1251, 800, 1930, +1381, 849, 2060, +1181, 1116, 2212, +0, 1254, 2365, +1619, 811, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +719, 1144, 968, +711, 1144, 975, +700, 1144, 984, +685, 1144, 996, +664, 1144, 1011, +635, 1144, 1030, +592, 1144, 1055, +529, 1144, 1086, +426, 1144, 1125, +426, 1150, 1168, +426, 1170, 1242, +426, 1196, 1325, +469, 1224, 1417, +681, 1219, 1512, +681, 1190, 1631, +741, 1186, 1751, +750, 1205, 1859, +1158, 1153, 1968, +1243, 1131, 2078, +1031, 1271, 2228, +914, 1282, 2369, +1608, 1020, 2470, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +719, 1398, 1351, +711, 1398, 1354, +700, 1398, 1358, +685, 1398, 1363, +664, 1398, 1370, +635, 1398, 1379, +592, 1398, 1390, +529, 1398, 1406, +426, 1398, 1425, +426, 1398, 1442, +426, 1398, 1463, +426, 1398, 1491, +469, 1409, 1546, +681, 1406, 1619, +681, 1387, 1686, +741, 1388, 1796, +750, 1416, 1900, +1164, 1366, 2006, +1151, 1350, 2107, +878, 1405, 2243, +998, 1362, 2375, +1620, 1201, 2472, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1148, 1563, 1662, +1147, 1564, 1663, +1146, 1564, 1663, +1145, 1565, 1665, +1143, 1565, 1667, +1140, 1566, 1669, +1137, 1568, 1672, +1133, 1569, 1676, +1126, 1572, 1682, +1126, 1569, 1691, +1126, 1567, 1704, +1126, 1567, 1720, +1114, 1567, 1742, +1017, 1569, 1778, +1017, 1561, 1829, +1046, 1552, 1893, +1045, 1557, 1979, +1092, 1536, 2064, +1032, 1537, 2170, +810, 1533, 2268, +1205, 1491, 2382, +1680, 1432, 2474, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1481, 1699, 1851, +1480, 1700, 1852, +1478, 1700, 1853, +1476, 1700, 1855, +1473, 1701, 1857, +1470, 1702, 1859, +1465, 1703, 1863, +1458, 1704, 1867, +1449, 1705, 1873, +1448, 1703, 1880, +1448, 1700, 1888, +1448, 1696, 1899, +1445, 1691, 1913, +1423, 1685, 1934, +1423, 1696, 1979, +1383, 1695, 2019, +1396, 1691, 2067, +1278, 1672, 2126, +1188, 1684, 2221, +1246, 1647, 2296, +1529, 1638, 2386, +1793, 1636, 2474, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1805, 1813, 1975, +1805, 1813, 1975, +1805, 1813, 1976, +1804, 1813, 1977, +1803, 1813, 1978, +1802, 1813, 1979, +1800, 1813, 1982, +1798, 1813, 1984, +1796, 1813, 1988, +1797, 1813, 1992, +1793, 1813, 1998, +1787, 1813, 2007, +1777, 1813, 2018, +1763, 1819, 2033, +1745, 1813, 2049, +1744, 1807, 2077, +1710, 1816, 2126, +1718, 1804, 2166, +1664, 1793, 2234, +1690, 1798, 2306, +1770, 1797, 2390, +1871, 1786, 2475, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1968, 1958, 2031, +1968, 1958, 2031, +1967, 1958, 2032, +1967, 1958, 2032, +1966, 1958, 2033, +1965, 1958, 2034, +1964, 1958, 2036, +1963, 1958, 2038, +1961, 1958, 2040, +1960, 1958, 2043, +1958, 1958, 2048, +1955, 1958, 2054, +1953, 1958, 2061, +1945, 1959, 2068, +1939, 1964, 2081, +1934, 1966, 2107, +1928, 1969, 2157, +1905, 1959, 2189, +1920, 1965, 2239, +1893, 1965, 2317, +1933, 1954, 2393, +2043, 1964, 2481, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2122, 2122, 2070, +2122, 2122, 2070, +2122, 2122, 2071, +2122, 2122, 2071, +2122, 2122, 2071, +2123, 2122, 2071, +2123, 2122, 2072, +2124, 2122, 2072, +2124, 2122, 2073, +2124, 2122, 2076, +2124, 2124, 2080, +2124, 2125, 2086, +2124, 2127, 2093, +2119, 2127, 2101, +2119, 2127, 2110, +2120, 2131, 2130, +2116, 2135, 2169, +2108, 2128, 2204, +2113, 2132, 2254, +2124, 2133, 2316, +2148, 2133, 2397, +2216, 2146, 2485, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2371, 2355, 2126, +2371, 2355, 2127, +2371, 2355, 2129, +2371, 2356, 2131, +2370, 2357, 2133, +2370, 2357, 2137, +2371, 2358, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2370, 2358, 2161, +2373, 2358, 2193, +2372, 2358, 2227, +2376, 2357, 2273, +2388, 2360, 2337, +2411, 2367, 2406, +2465, 2385, 2499, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2680, 2654, 1962, +2680, 2655, 1962, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1966, +2681, 2655, 1968, +2681, 2656, 1970, +2681, 2656, 1974, +2681, 2656, 1972, +2681, 2655, 1970, +2680, 2655, 1969, +2680, 2654, 1966, +2679, 2654, 1967, +2679, 2655, 1987, +2677, 2657, 2008, +2677, 2656, 2029, +2675, 2652, 2050, +2677, 2656, 2121, +2681, 2656, 2208, +2688, 2660, 2306, +2695, 2665, 2407, +2715, 2678, 2527, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +737, 0, 0, +737, 0, 0, +737, 0, 0, +737, 0, 0, +737, 0, 28, +737, 0, 152, +737, 0, 280, +737, 0, 408, +737, 0, 537, +737, 0, 667, +737, 0, 797, +737, 0, 928, +703, 0, 1088, +438, 0, 1361, +394, 0, 1525, +667, 0, 1634, +977, 0, 1782, +1248, 0, 1893, +1561, 0, 2015, +1525, 291, 2172, +265, 987, 2341, +1385, 462, 2468, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +734, 0, 0, +736, 0, 0, +736, 0, 0, +736, 0, 0, +736, 0, 36, +736, 0, 159, +736, 0, 285, +736, 0, 412, +736, 0, 540, +736, 0, 669, +736, 0, 799, +736, 0, 930, +697, 0, 1089, +427, 0, 1361, +381, 0, 1525, +669, 0, 1635, +971, 0, 1782, +1248, 0, 1893, +1561, 0, 2015, +1524, 306, 2173, +265, 992, 2341, +1388, 465, 2468, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +729, 0, 0, +730, 0, 0, +733, 0, 0, +733, 0, 0, +733, 0, 48, +733, 0, 168, +733, 0, 291, +733, 0, 417, +733, 0, 544, +733, 0, 672, +733, 0, 801, +733, 0, 931, +694, 0, 1090, +412, 0, 1362, +365, 0, 1526, +672, 0, 1635, +963, 0, 1782, +1247, 0, 1894, +1560, 0, 2016, +1522, 325, 2173, +265, 998, 2341, +1392, 470, 2468, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +722, 0, 0, +723, 0, 0, +726, 0, 0, +730, 0, 0, +730, 0, 63, +730, 0, 180, +730, 0, 300, +730, 0, 424, +730, 0, 549, +730, 0, 676, +730, 0, 804, +730, 0, 933, +690, 0, 1091, +391, 0, 1363, +341, 0, 1526, +676, 0, 1636, +953, 0, 1781, +1245, 0, 1894, +1560, 0, 2017, +1519, 349, 2173, +265, 1005, 2342, +1398, 476, 2468, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +712, 0, 0, +714, 0, 0, +717, 0, 0, +720, 0, 0, +725, 0, 83, +725, 0, 195, +725, 0, 312, +725, 0, 433, +725, 0, 556, +725, 0, 681, +725, 0, 808, +725, 0, 936, +685, 0, 1093, +361, 0, 1364, +307, 0, 1527, +681, 0, 1637, +939, 0, 1781, +1244, 0, 1895, +1559, 0, 2018, +1516, 380, 2173, +265, 1015, 2342, +1405, 484, 2468, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +699, 0, 0, +701, 0, 0, +704, 0, 0, +708, 0, 0, +712, 0, 83, +719, 0, 215, +719, 0, 327, +719, 0, 444, +719, 0, 564, +719, 0, 688, +719, 0, 813, +719, 0, 940, +678, 0, 1096, +317, 30, 1365, +258, 30, 1528, +688, 0, 1639, +918, 0, 1780, +1242, 0, 1896, +1558, 0, 2019, +1512, 419, 2174, +265, 1028, 2343, +1415, 494, 2468, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +681, 4, 0, +683, 0, 0, +686, 0, 0, +690, 0, 0, +695, 0, 83, +702, 0, 215, +710, 0, 347, +710, 0, 459, +710, 0, 576, +710, 0, 697, +710, 0, 820, +710, 0, 946, +669, 0, 1100, +251, 163, 1367, +182, 163, 1530, +697, 32, 1641, +890, 0, 1779, +1239, 0, 1897, +1557, 32, 2021, +1506, 465, 2175, +265, 1045, 2344, +1427, 508, 2468, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +656, 144, 0, +658, 137, 0, +661, 127, 0, +665, 114, 0, +670, 96, 83, +678, 70, 215, +686, 34, 347, +699, 0, 479, +699, 0, 591, +699, 0, 708, +699, 0, 829, +699, 0, 952, +656, 52, 1105, +145, 295, 1370, +56, 295, 1531, +708, 164, 1644, +849, 0, 1778, +1236, 0, 1899, +1555, 164, 2023, +1498, 521, 2175, +265, 1066, 2345, +1443, 526, 2468, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +620, 281, 0, +623, 276, 0, +626, 269, 0, +630, 259, 0, +636, 246, 83, +643, 227, 215, +653, 202, 347, +666, 166, 479, +683, 111, 611, +683, 111, 723, +683, 111, 840, +683, 111, 961, +639, 167, 1111, +0, 426, 1374, +0, 426, 1534, +723, 296, 1648, +788, 0, 1777, +1231, 111, 1901, +1552, 296, 2027, +1487, 586, 2177, +265, 1093, 2347, +1456, 606, 2469, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +567, 417, 0, +570, 413, 0, +573, 408, 0, +578, 401, 0, +585, 391, 83, +593, 378, 215, +604, 360, 347, +618, 334, 479, +637, 298, 611, +660, 244, 743, +660, 244, 856, +660, 244, 973, +614, 286, 1119, +0, 536, 1379, +0, 559, 1537, +743, 428, 1653, +797, 104, 1780, +1224, 244, 1904, +1549, 428, 2031, +1472, 660, 2178, +265, 1128, 2349, +1472, 699, 2469, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +567, 552, 0, +570, 549, 0, +573, 545, 0, +578, 540, 0, +585, 533, 83, +593, 523, 215, +604, 510, 347, +618, 492, 479, +637, 466, 611, +660, 430, 743, +660, 521, 912, +660, 521, 1017, +614, 545, 1152, +0, 703, 1397, +0, 691, 1550, +743, 597, 1662, +797, 399, 1786, +1238, 422, 1910, +1518, 560, 2039, +1417, 815, 2187, +186, 1169, 2352, +1521, 727, 2469, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +567, 686, 0, +570, 684, 0, +573, 681, 0, +578, 677, 0, +585, 672, 83, +593, 665, 215, +604, 655, 347, +618, 643, 479, +637, 624, 611, +660, 599, 743, +660, 664, 912, +660, 739, 1070, +614, 754, 1192, +0, 860, 1421, +0, 823, 1568, +743, 755, 1675, +797, 625, 1792, +1261, 593, 1918, +1472, 692, 2049, +1331, 963, 2199, +0, 1212, 2357, +1579, 761, 2469, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +569, 854, 85, +559, 854, 130, +563, 852, 185, +568, 850, 248, +574, 846, 322, +583, 841, 404, +594, 835, 496, +608, 826, 594, +627, 814, 700, +651, 797, 811, +651, 841, 960, +651, 893, 1104, +678, 945, 1245, +0, 1017, 1454, +0, 983, 1592, +758, 925, 1697, +804, 857, 1807, +1275, 800, 1931, +1408, 849, 2061, +1203, 1108, 2212, +0, 1254, 2365, +1635, 828, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +834, 1134, 954, +827, 1134, 961, +819, 1134, 970, +808, 1134, 982, +792, 1134, 998, +770, 1134, 1018, +739, 1134, 1043, +693, 1134, 1075, +625, 1134, 1115, +570, 1131, 1163, +570, 1152, 1237, +570, 1179, 1321, +601, 1208, 1413, +800, 1208, 1514, +767, 1185, 1636, +863, 1174, 1754, +863, 1195, 1861, +1192, 1157, 1970, +1257, 1131, 2078, +1043, 1269, 2229, +975, 1275, 2368, +1616, 1030, 2470, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +857, 1389, 1341, +851, 1389, 1344, +843, 1389, 1348, +832, 1389, 1353, +817, 1389, 1360, +797, 1389, 1369, +767, 1389, 1381, +725, 1389, 1397, +661, 1389, 1417, +559, 1389, 1442, +559, 1389, 1463, +559, 1389, 1491, +591, 1400, 1546, +794, 1400, 1623, +813, 1382, 1691, +874, 1379, 1799, +874, 1408, 1902, +1201, 1371, 2008, +1151, 1350, 2106, +878, 1405, 2245, +1078, 1352, 2375, +1623, 1208, 2472, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1214, 1557, 1667, +1213, 1557, 1668, +1212, 1558, 1669, +1211, 1558, 1670, +1209, 1559, 1672, +1207, 1560, 1674, +1205, 1561, 1677, +1201, 1563, 1681, +1195, 1565, 1686, +1188, 1569, 1694, +1188, 1567, 1706, +1188, 1567, 1722, +1177, 1567, 1744, +1072, 1567, 1776, +1057, 1558, 1825, +1094, 1552, 1894, +1094, 1557, 1981, +1142, 1536, 2063, +1061, 1537, 2170, +810, 1536, 2268, +1232, 1487, 2382, +1680, 1427, 2474, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1512, 1695, 1855, +1511, 1695, 1855, +1510, 1695, 1856, +1508, 1696, 1858, +1505, 1696, 1860, +1502, 1697, 1862, +1497, 1698, 1866, +1491, 1699, 1870, +1482, 1701, 1876, +1478, 1703, 1881, +1478, 1700, 1889, +1478, 1696, 1900, +1475, 1691, 1914, +1446, 1684, 1934, +1440, 1693, 1977, +1405, 1695, 2020, +1418, 1691, 2069, +1312, 1672, 2125, +1209, 1684, 2221, +1248, 1649, 2296, +1541, 1636, 2386, +1794, 1633, 2475, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1813, 1811, 1973, +1812, 1811, 1974, +1812, 1811, 1975, +1811, 1811, 1976, +1810, 1811, 1977, +1809, 1811, 1978, +1808, 1811, 1981, +1806, 1811, 1983, +1803, 1811, 1987, +1799, 1811, 1992, +1795, 1811, 1998, +1789, 1811, 2007, +1779, 1812, 2018, +1767, 1817, 2033, +1749, 1812, 2048, +1751, 1809, 2076, +1717, 1818, 2125, +1722, 1802, 2166, +1667, 1793, 2234, +1699, 1800, 2306, +1776, 1797, 2391, +1871, 1786, 2475, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1972, 1958, 2032, +1972, 1958, 2033, +1971, 1958, 2033, +1971, 1958, 2034, +1970, 1958, 2034, +1969, 1958, 2036, +1968, 1958, 2037, +1967, 1958, 2039, +1965, 1958, 2041, +1962, 1958, 2045, +1961, 1958, 2049, +1958, 1958, 2055, +1955, 1958, 2062, +1947, 1958, 2069, +1940, 1963, 2081, +1937, 1965, 2105, +1931, 1968, 2155, +1905, 1958, 2189, +1920, 1964, 2238, +1898, 1964, 2316, +1934, 1954, 2393, +2043, 1964, 2481, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2123, 2122, 2071, +2123, 2122, 2071, +2123, 2122, 2071, +2123, 2122, 2072, +2124, 2122, 2072, +2124, 2122, 2072, +2124, 2122, 2073, +2125, 2122, 2073, +2125, 2122, 2074, +2126, 2122, 2075, +2126, 2124, 2079, +2126, 2125, 2085, +2125, 2127, 2092, +2119, 2127, 2101, +2119, 2127, 2110, +2122, 2131, 2129, +2118, 2135, 2168, +2110, 2127, 2203, +2114, 2132, 2254, +2126, 2132, 2316, +2148, 2134, 2399, +2218, 2147, 2485, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2371, 2355, 2126, +2371, 2355, 2127, +2371, 2355, 2129, +2372, 2355, 2131, +2371, 2356, 2133, +2372, 2357, 2137, +2372, 2358, 2143, +2371, 2358, 2146, +2369, 2356, 2148, +2370, 2358, 2160, +2373, 2358, 2193, +2373, 2358, 2228, +2377, 2357, 2273, +2391, 2362, 2337, +2412, 2367, 2407, +2466, 2386, 2499, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2680, 2654, 1961, +2680, 2654, 1961, +2680, 2654, 1962, +2680, 2654, 1963, +2680, 2655, 1965, +2680, 2655, 1966, +2681, 2655, 1969, +2681, 2656, 1973, +2681, 2655, 1970, +2680, 2654, 1966, +2680, 2654, 1965, +2679, 2653, 1962, +2679, 2653, 1963, +2678, 2655, 1982, +2677, 2657, 2003, +2678, 2657, 2033, +2676, 2653, 2053, +2678, 2656, 2122, +2681, 2656, 2208, +2688, 2660, 2306, +2695, 2665, 2407, +2715, 2678, 2527, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +871, 0, 0, +871, 0, 0, +871, 0, 0, +871, 0, 0, +871, 0, 28, +871, 0, 152, +871, 0, 280, +871, 0, 408, +871, 0, 537, +871, 0, 667, +871, 0, 797, +871, 0, 928, +845, 0, 1088, +668, 0, 1361, +535, 0, 1543, +769, 0, 1643, +1048, 0, 1782, +1313, 0, 1897, +1561, 0, 2018, +1511, 412, 2179, +186, 987, 2341, +1454, 356, 2467, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +868, 0, 0, +869, 0, 0, +869, 0, 0, +869, 0, 0, +869, 0, 36, +869, 0, 159, +869, 0, 285, +869, 0, 412, +869, 0, 540, +869, 0, 669, +869, 0, 799, +869, 0, 930, +841, 0, 1089, +662, 0, 1361, +526, 0, 1543, +770, 0, 1643, +1043, 0, 1782, +1313, 0, 1897, +1561, 0, 2018, +1510, 423, 2179, +186, 992, 2341, +1457, 360, 2467, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +864, 0, 0, +866, 0, 0, +868, 0, 0, +868, 0, 0, +868, 0, 48, +868, 0, 168, +868, 0, 291, +868, 0, 417, +868, 0, 544, +868, 0, 672, +868, 0, 801, +868, 0, 931, +839, 0, 1090, +653, 0, 1362, +513, 0, 1544, +773, 0, 1644, +1036, 0, 1782, +1312, 0, 1897, +1560, 0, 2019, +1508, 438, 2179, +186, 998, 2341, +1461, 366, 2467, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +859, 0, 0, +861, 0, 0, +862, 0, 0, +865, 0, 0, +865, 0, 63, +865, 0, 180, +865, 0, 300, +865, 0, 424, +865, 0, 549, +865, 0, 676, +865, 0, 804, +865, 0, 933, +836, 0, 1091, +640, 0, 1363, +496, 0, 1544, +776, 0, 1645, +1027, 0, 1781, +1311, 0, 1898, +1560, 0, 2020, +1505, 457, 2180, +186, 1005, 2342, +1465, 373, 2467, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +852, 0, 0, +854, 0, 0, +856, 0, 0, +858, 0, 0, +862, 0, 83, +862, 0, 195, +862, 0, 312, +862, 0, 433, +862, 0, 556, +862, 0, 681, +862, 0, 808, +862, 0, 936, +833, 0, 1093, +623, 0, 1364, +473, 0, 1545, +780, 0, 1646, +1015, 0, 1781, +1310, 0, 1899, +1559, 0, 2021, +1502, 482, 2180, +186, 1015, 2342, +1472, 383, 2467, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +843, 0, 0, +844, 0, 0, +846, 0, 0, +849, 0, 0, +852, 0, 83, +857, 0, 215, +857, 0, 327, +857, 0, 444, +857, 0, 564, +857, 0, 688, +857, 0, 813, +857, 0, 940, +827, 0, 1096, +599, 30, 1365, +439, 30, 1546, +785, 0, 1648, +998, 0, 1780, +1308, 0, 1900, +1558, 0, 2022, +1497, 512, 2180, +186, 1028, 2343, +1480, 397, 2467, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +830, 4, 0, +831, 0, 0, +833, 0, 0, +836, 0, 0, +839, 0, 83, +844, 0, 215, +851, 0, 347, +851, 0, 459, +851, 0, 576, +851, 0, 697, +851, 0, 820, +851, 0, 946, +821, 0, 1100, +565, 163, 1367, +390, 163, 1547, +793, 32, 1650, +974, 0, 1779, +1306, 0, 1901, +1557, 32, 2024, +1491, 551, 2181, +186, 1045, 2344, +1491, 413, 2467, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +812, 144, 0, +813, 137, 0, +815, 127, 0, +818, 114, 0, +822, 96, 83, +827, 70, 215, +834, 34, 347, +842, 0, 479, +842, 0, 591, +842, 0, 708, +842, 0, 829, +842, 0, 952, +812, 52, 1105, +515, 295, 1370, +314, 295, 1549, +802, 164, 1653, +940, 0, 1778, +1302, 0, 1903, +1555, 164, 2027, +1483, 597, 2182, +186, 1066, 2345, +1505, 435, 2467, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +787, 281, 0, +788, 276, 0, +790, 269, 0, +793, 259, 0, +797, 246, 83, +803, 227, 215, +809, 202, 347, +819, 166, 479, +831, 111, 611, +831, 111, 723, +831, 111, 840, +831, 111, 961, +799, 167, 1111, +438, 426, 1374, +188, 426, 1552, +814, 296, 1657, +891, 0, 1777, +1298, 111, 1905, +1552, 296, 2030, +1472, 653, 2183, +186, 1093, 2347, +1516, 532, 2467, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +750, 417, 0, +752, 413, 0, +755, 408, 0, +758, 401, 0, +762, 391, 83, +768, 378, 215, +775, 360, 347, +785, 334, 479, +798, 298, 611, +815, 244, 743, +815, 244, 856, +815, 244, 973, +782, 286, 1119, +345, 536, 1379, +0, 559, 1555, +831, 428, 1662, +899, 104, 1780, +1292, 244, 1908, +1549, 428, 2034, +1456, 718, 2185, +186, 1128, 2349, +1530, 640, 2468, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +697, 552, 0, +699, 549, 0, +702, 545, 0, +705, 540, 0, +710, 533, 83, +717, 523, 215, +725, 510, 347, +736, 492, 479, +750, 466, 611, +769, 430, 743, +792, 376, 875, +792, 376, 988, +758, 407, 1131, +280, 611, 1385, +0, 691, 1559, +799, 583, 1666, +916, 342, 1786, +1257, 324, 1907, +1545, 560, 2040, +1434, 792, 2187, +186, 1169, 2352, +1547, 752, 2469, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +697, 686, 0, +699, 684, 0, +702, 681, 0, +705, 677, 0, +710, 672, 83, +717, 665, 215, +725, 655, 347, +736, 643, 479, +750, 624, 611, +769, 599, 743, +792, 562, 875, +792, 654, 1044, +758, 672, 1172, +280, 796, 1409, +0, 823, 1576, +799, 745, 1680, +916, 591, 1792, +1279, 529, 1915, +1502, 692, 2050, +1352, 947, 2199, +0, 1212, 2357, +1603, 785, 2469, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +699, 854, 85, +691, 854, 130, +694, 852, 185, +698, 850, 248, +702, 846, 322, +709, 841, 404, +717, 835, 496, +728, 826, 594, +743, 814, 700, +762, 797, 811, +786, 774, 927, +786, 834, 1081, +805, 893, 1228, +403, 973, 1443, +0, 983, 1599, +812, 918, 1701, +921, 837, 1807, +1293, 760, 1928, +1442, 849, 2062, +1230, 1096, 2212, +0, 1254, 2365, +1657, 848, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +910, 1134, 954, +905, 1134, 961, +898, 1134, 970, +889, 1134, 982, +875, 1134, 998, +857, 1134, 1018, +832, 1134, 1043, +795, 1134, 1075, +741, 1134, 1115, +699, 1131, 1163, +726, 1120, 1220, +726, 1149, 1307, +748, 1179, 1402, +901, 1179, 1504, +767, 1185, 1644, +906, 1170, 1757, +968, 1186, 1861, +1214, 1140, 1967, +1304, 1131, 2079, +1082, 1261, 2229, +975, 1275, 2368, +1638, 1044, 2470, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +993, 1376, 1327, +989, 1376, 1330, +983, 1376, 1334, +975, 1376, 1340, +964, 1376, 1347, +949, 1376, 1356, +928, 1376, 1368, +899, 1376, 1385, +857, 1376, 1405, +793, 1376, 1431, +691, 1376, 1463, +691, 1376, 1491, +715, 1388, 1546, +877, 1388, 1623, +945, 1376, 1697, +997, 1370, 1804, +1006, 1396, 1906, +1223, 1377, 2010, +1151, 1350, 2105, +878, 1405, 2247, +1167, 1339, 2373, +1626, 1218, 2473, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1284, 1548, 1666, +1284, 1549, 1666, +1283, 1549, 1667, +1282, 1550, 1668, +1281, 1550, 1670, +1279, 1551, 1673, +1276, 1553, 1675, +1273, 1555, 1680, +1269, 1557, 1685, +1263, 1560, 1692, +1239, 1562, 1707, +1239, 1562, 1723, +1229, 1562, 1745, +1136, 1562, 1777, +1127, 1554, 1826, +1162, 1550, 1897, +1168, 1552, 1984, +1181, 1539, 2065, +1075, 1537, 2169, +810, 1538, 2270, +1285, 1479, 2381, +1681, 1429, 2475, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1553, 1689, 1859, +1552, 1689, 1860, +1551, 1689, 1861, +1549, 1690, 1862, +1547, 1690, 1864, +1544, 1691, 1867, +1539, 1692, 1870, +1534, 1693, 1874, +1526, 1695, 1880, +1522, 1697, 1885, +1517, 1700, 1891, +1517, 1696, 1902, +1515, 1691, 1916, +1488, 1684, 1935, +1461, 1690, 1974, +1430, 1693, 2019, +1446, 1691, 2070, +1360, 1672, 2128, +1236, 1684, 2221, +1248, 1653, 2296, +1559, 1632, 2386, +1794, 1630, 2475, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1821, 1809, 1972, +1820, 1809, 1972, +1820, 1809, 1973, +1819, 1809, 1974, +1818, 1809, 1975, +1817, 1809, 1977, +1816, 1809, 1979, +1813, 1809, 1982, +1811, 1809, 1986, +1807, 1809, 1990, +1800, 1811, 1998, +1793, 1811, 2007, +1784, 1811, 2018, +1772, 1817, 2033, +1754, 1811, 2049, +1756, 1809, 2076, +1721, 1816, 2124, +1728, 1804, 2168, +1675, 1795, 2234, +1712, 1800, 2308, +1779, 1799, 2391, +1880, 1789, 2475, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1977, 1958, 2034, +1977, 1958, 2034, +1976, 1958, 2035, +1976, 1958, 2035, +1975, 1958, 2036, +1974, 1958, 2037, +1973, 1958, 2038, +1972, 1958, 2040, +1970, 1958, 2043, +1968, 1958, 2046, +1964, 1958, 2050, +1962, 1958, 2056, +1959, 1958, 2063, +1950, 1958, 2070, +1942, 1961, 2081, +1940, 1963, 2103, +1935, 1966, 2152, +1912, 1959, 2190, +1920, 1962, 2236, +1904, 1962, 2314, +1936, 1954, 2394, +2043, 1964, 2481, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2124, 2124, 2073, +2124, 2124, 2073, +2124, 2124, 2073, +2125, 2124, 2073, +2125, 2124, 2073, +2125, 2124, 2074, +2125, 2124, 2074, +2126, 2124, 2075, +2126, 2124, 2076, +2127, 2124, 2076, +2129, 2124, 2078, +2129, 2125, 2083, +2128, 2127, 2090, +2122, 2127, 2100, +2119, 2127, 2110, +2123, 2131, 2129, +2120, 2135, 2167, +2113, 2128, 2205, +2115, 2130, 2253, +2128, 2131, 2316, +2148, 2135, 2400, +2220, 2148, 2485, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2371, 2355, 2126, +2371, 2355, 2127, +2371, 2355, 2129, +2372, 2355, 2131, +2372, 2355, 2133, +2373, 2356, 2137, +2374, 2357, 2143, +2372, 2357, 2146, +2369, 2356, 2148, +2370, 2358, 2159, +2374, 2358, 2192, +2374, 2358, 2228, +2379, 2358, 2273, +2393, 2364, 2337, +2413, 2367, 2408, +2467, 2387, 2498, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2680, 2654, 1959, +2680, 2654, 1959, +2680, 2654, 1960, +2680, 2654, 1961, +2680, 2654, 1963, +2680, 2655, 1965, +2680, 2655, 1968, +2680, 2655, 1971, +2680, 2655, 1969, +2680, 2654, 1965, +2679, 2653, 1959, +2679, 2652, 1957, +2678, 2652, 1958, +2678, 2654, 1977, +2677, 2657, 1996, +2678, 2657, 2031, +2677, 2654, 2057, +2678, 2657, 2122, +2682, 2656, 2208, +2688, 2660, 2307, +2695, 2665, 2407, +2715, 2678, 2527, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +1004, 0, 0, +1004, 0, 0, +1004, 0, 0, +1004, 0, 0, +1004, 0, 28, +1004, 0, 152, +1004, 0, 280, +1004, 0, 408, +1004, 0, 537, +1004, 0, 667, +1004, 0, 797, +1004, 0, 928, +985, 0, 1088, +862, 0, 1361, +674, 0, 1566, +856, 0, 1661, +1128, 0, 1782, +1394, 0, 1902, +1561, 0, 2022, +1491, 535, 2188, +220, 987, 2343, +1533, 158, 2465, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1002, 0, 0, +1003, 0, 0, +1003, 0, 0, +1003, 0, 0, +1003, 0, 36, +1003, 0, 159, +1003, 0, 285, +1003, 0, 412, +1003, 0, 540, +1003, 0, 669, +1003, 0, 799, +1003, 0, 930, +982, 0, 1089, +858, 0, 1361, +667, 0, 1566, +858, 0, 1662, +1124, 0, 1782, +1393, 0, 1903, +1561, 0, 2022, +1490, 544, 2188, +220, 992, 2343, +1536, 164, 2465, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +999, 0, 0, +1000, 0, 0, +1002, 0, 0, +1002, 0, 0, +1002, 0, 48, +1002, 0, 168, +1002, 0, 291, +1002, 0, 417, +1002, 0, 544, +1002, 0, 672, +1002, 0, 801, +1002, 0, 931, +981, 0, 1090, +852, 0, 1362, +658, 0, 1567, +860, 0, 1662, +1118, 0, 1782, +1393, 0, 1903, +1560, 0, 2023, +1488, 556, 2188, +220, 998, 2343, +1539, 173, 2465, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +996, 0, 0, +996, 0, 0, +998, 0, 0, +1000, 0, 0, +1000, 0, 63, +1000, 0, 180, +1000, 0, 300, +1000, 0, 424, +1000, 0, 549, +1000, 0, 676, +1000, 0, 804, +1000, 0, 933, +979, 0, 1091, +844, 0, 1363, +645, 0, 1567, +862, 0, 1663, +1110, 0, 1781, +1392, 0, 1903, +1560, 0, 2024, +1486, 570, 2188, +220, 1005, 2344, +1543, 185, 2465, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +990, 0, 0, +991, 0, 0, +993, 0, 0, +995, 0, 0, +997, 0, 83, +997, 0, 195, +997, 0, 312, +997, 0, 433, +997, 0, 556, +997, 0, 681, +997, 0, 808, +997, 0, 936, +976, 0, 1093, +833, 0, 1364, +629, 0, 1568, +866, 0, 1664, +1100, 0, 1781, +1391, 0, 1904, +1559, 0, 2025, +1482, 590, 2189, +220, 1015, 2344, +1548, 200, 2465, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +983, 0, 0, +985, 0, 0, +986, 0, 0, +988, 0, 0, +991, 0, 83, +994, 0, 215, +994, 0, 327, +994, 0, 444, +994, 0, 564, +994, 0, 688, +994, 0, 813, +994, 0, 940, +973, 0, 1096, +819, 30, 1365, +605, 30, 1569, +871, 0, 1666, +1086, 0, 1780, +1390, 0, 1905, +1558, 0, 2026, +1477, 614, 2189, +220, 1028, 2345, +1555, 219, 2465, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +974, 4, 0, +975, 0, 0, +977, 0, 0, +979, 0, 0, +981, 0, 83, +985, 0, 215, +989, 0, 347, +989, 0, 459, +989, 0, 576, +989, 0, 697, +989, 0, 820, +989, 0, 946, +968, 0, 1100, +798, 163, 1367, +571, 163, 1570, +876, 32, 1668, +1067, 0, 1779, +1388, 0, 1906, +1557, 32, 2028, +1471, 645, 2190, +220, 1045, 2346, +1564, 244, 2465, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +961, 144, 0, +962, 137, 0, +963, 127, 0, +966, 114, 0, +968, 96, 83, +972, 70, 215, +977, 34, 347, +983, 0, 479, +983, 0, 591, +983, 0, 708, +983, 0, 829, +983, 0, 952, +961, 52, 1105, +769, 295, 1370, +522, 295, 1572, +884, 164, 1671, +1039, 0, 1778, +1385, 0, 1908, +1555, 164, 2031, +1462, 683, 2191, +220, 1066, 2347, +1576, 275, 2465, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +943, 281, 0, +944, 276, 0, +946, 269, 0, +948, 259, 0, +951, 246, 83, +955, 227, 215, +959, 202, 347, +966, 166, 479, +975, 111, 611, +975, 111, 723, +975, 111, 840, +975, 111, 961, +952, 167, 1111, +726, 426, 1374, +446, 426, 1574, +895, 296, 1674, +1000, 0, 1777, +1382, 111, 1910, +1552, 296, 2034, +1450, 729, 2192, +220, 1093, 2349, +1586, 407, 2466, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +917, 417, 0, +919, 413, 0, +920, 408, 0, +923, 401, 0, +926, 391, 83, +930, 378, 215, +935, 360, 347, +942, 334, 479, +951, 298, 611, +963, 244, 743, +963, 244, 856, +963, 244, 973, +940, 286, 1119, +679, 536, 1379, +320, 559, 1577, +908, 428, 1679, +1006, 104, 1780, +1377, 244, 1913, +1549, 428, 2038, +1434, 785, 2194, +220, 1128, 2351, +1598, 544, 2467, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +881, 552, 0, +883, 549, 0, +884, 545, 0, +887, 540, 0, +890, 533, 83, +894, 523, 215, +900, 510, 347, +908, 492, 479, +917, 466, 611, +930, 430, 743, +947, 376, 875, +947, 376, 988, +923, 407, 1131, +649, 611, 1385, +67, 691, 1581, +882, 583, 1684, +1020, 342, 1786, +1348, 324, 1912, +1545, 560, 2044, +1411, 850, 2196, +220, 1169, 2354, +1613, 680, 2468, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +828, 686, 0, +829, 684, 0, +831, 681, 0, +834, 677, 0, +838, 672, 83, +842, 665, 215, +849, 655, 347, +857, 643, 479, +868, 624, 611, +883, 599, 743, +901, 562, 875, +925, 508, 1007, +899, 532, 1145, +605, 694, 1393, +0, 823, 1587, +799, 745, 1688, +1039, 540, 1792, +1299, 403, 1909, +1539, 692, 2052, +1379, 925, 2199, +0, 1212, 2357, +1633, 815, 2469, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +829, 854, 85, +823, 854, 130, +825, 852, 185, +828, 850, 248, +832, 846, 322, +837, 841, 404, +843, 835, 496, +852, 826, 594, +863, 814, 700, +877, 797, 811, +896, 774, 927, +920, 741, 1047, +934, 812, 1203, +669, 906, 1428, +0, 983, 1610, +812, 918, 1709, +1043, 809, 1807, +1313, 689, 1923, +1484, 849, 2064, +1265, 1080, 2212, +0, 1254, 2365, +1683, 875, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +996, 1134, 954, +992, 1134, 961, +986, 1134, 970, +979, 1134, 982, +968, 1134, 998, +953, 1134, 1018, +932, 1134, 1043, +903, 1134, 1075, +861, 1134, 1115, +829, 1131, 1163, +850, 1120, 1220, +876, 1105, 1286, +892, 1138, 1385, +1008, 1138, 1491, +767, 1185, 1653, +906, 1170, 1765, +1078, 1173, 1861, +1237, 1110, 1962, +1360, 1131, 2081, +1129, 1250, 2229, +975, 1275, 2368, +1666, 1061, 2470, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1129, 1359, 1308, +1126, 1359, 1311, +1121, 1359, 1315, +1115, 1359, 1321, +1107, 1359, 1328, +1097, 1359, 1338, +1082, 1359, 1351, +1061, 1359, 1367, +1032, 1359, 1389, +989, 1359, 1416, +926, 1359, 1449, +823, 1359, 1491, +841, 1371, 1546, +969, 1371, 1623, +1077, 1367, 1705, +1117, 1361, 1811, +1138, 1380, 1911, +1246, 1386, 2012, +1151, 1350, 2103, +878, 1405, 2249, +1204, 1332, 2374, +1631, 1230, 2474, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1361, 1536, 1656, +1360, 1537, 1657, +1360, 1537, 1658, +1359, 1538, 1659, +1358, 1539, 1661, +1356, 1540, 1663, +1354, 1541, 1667, +1351, 1543, 1671, +1347, 1545, 1676, +1342, 1549, 1684, +1323, 1550, 1699, +1283, 1550, 1723, +1274, 1550, 1745, +1190, 1550, 1777, +1220, 1548, 1833, +1249, 1544, 1903, +1265, 1540, 1988, +1206, 1545, 2067, +1075, 1537, 2167, +810, 1538, 2272, +1313, 1474, 2382, +1686, 1437, 2475, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1603, 1680, 1865, +1602, 1680, 1865, +1600, 1680, 1867, +1599, 1681, 1868, +1597, 1681, 1870, +1594, 1682, 1872, +1590, 1683, 1876, +1585, 1684, 1880, +1578, 1686, 1886, +1575, 1689, 1891, +1571, 1692, 1897, +1565, 1696, 1905, +1563, 1691, 1919, +1538, 1684, 1938, +1489, 1686, 1969, +1460, 1689, 2014, +1482, 1691, 2072, +1418, 1672, 2133, +1270, 1684, 2221, +1248, 1657, 2296, +1563, 1627, 2386, +1794, 1625, 2476, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1830, 1805, 1969, +1830, 1805, 1970, +1829, 1805, 1971, +1829, 1805, 1972, +1828, 1805, 1973, +1827, 1805, 1974, +1825, 1805, 1977, +1823, 1805, 1979, +1821, 1805, 1983, +1817, 1805, 1988, +1810, 1807, 1996, +1800, 1811, 2007, +1791, 1811, 2018, +1779, 1817, 2033, +1762, 1811, 2051, +1763, 1809, 2078, +1725, 1813, 2122, +1736, 1807, 2171, +1689, 1798, 2234, +1727, 1800, 2309, +1778, 1800, 2391, +1894, 1792, 2475, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1983, 1958, 2036, +1983, 1958, 2036, +1983, 1958, 2037, +1983, 1958, 2037, +1982, 1958, 2038, +1981, 1958, 2039, +1980, 1958, 2040, +1979, 1958, 2042, +1977, 1958, 2045, +1974, 1958, 2048, +1971, 1958, 2052, +1966, 1958, 2058, +1963, 1958, 2065, +1955, 1958, 2072, +1945, 1959, 2081, +1942, 1961, 2103, +1940, 1963, 2147, +1922, 1962, 2193, +1920, 1960, 2233, +1912, 1960, 2312, +1943, 1954, 2394, +2043, 1964, 2481, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2126, 2125, 2075, +2126, 2125, 2075, +2126, 2125, 2075, +2126, 2125, 2075, +2126, 2125, 2075, +2127, 2125, 2076, +2127, 2125, 2076, +2127, 2125, 2076, +2128, 2125, 2077, +2129, 2125, 2078, +2130, 2125, 2080, +2132, 2125, 2082, +2131, 2127, 2089, +2125, 2127, 2098, +2119, 2127, 2110, +2123, 2131, 2129, +2124, 2135, 2165, +2118, 2130, 2208, +2117, 2129, 2251, +2132, 2129, 2316, +2154, 2135, 2400, +2222, 2149, 2485, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2371, 2355, 2125, +2371, 2355, 2125, +2371, 2355, 2125, +2371, 2355, 2126, +2372, 2355, 2126, +2372, 2355, 2127, +2372, 2355, 2127, +2372, 2355, 2128, +2372, 2355, 2130, +2373, 2355, 2132, +2374, 2355, 2134, +2374, 2355, 2136, +2375, 2356, 2142, +2373, 2356, 2145, +2371, 2355, 2148, +2372, 2357, 2159, +2375, 2358, 2191, +2375, 2358, 2229, +2381, 2358, 2273, +2396, 2366, 2336, +2413, 2367, 2408, +2468, 2388, 2498, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2679, 2653, 1956, +2679, 2653, 1957, +2679, 2653, 1958, +2679, 2654, 1959, +2679, 2654, 1961, +2680, 2654, 1962, +2680, 2654, 1965, +2680, 2655, 1969, +2680, 2654, 1966, +2679, 2653, 1962, +2679, 2652, 1957, +2678, 2651, 1950, +2678, 2650, 1950, +2677, 2652, 1970, +2676, 2657, 1988, +2678, 2657, 2023, +2679, 2655, 2063, +2679, 2657, 2122, +2682, 2656, 2208, +2688, 2660, 2308, +2695, 2665, 2407, +2715, 2678, 2527, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +1146, 0, 0, +1146, 0, 0, +1146, 0, 0, +1146, 0, 46, +1146, 0, 140, +1146, 0, 240, +1146, 0, 347, +1146, 0, 460, +1146, 0, 576, +1146, 0, 697, +1146, 0, 820, +1146, 0, 946, +1143, 0, 1084, +1060, 0, 1359, +918, 0, 1574, +981, 0, 1683, +1223, 0, 1785, +1476, 0, 1909, +1569, 0, 2028, +1478, 645, 2197, +391, 989, 2347, +1611, 0, 2464, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1146, 0, 0, +1146, 0, 0, +1146, 0, 27, +1146, 0, 101, +1146, 0, 185, +1146, 0, 277, +1146, 0, 376, +1146, 0, 482, +1146, 0, 594, +1146, 0, 710, +1146, 0, 830, +1146, 0, 953, +1142, 0, 1089, +1059, 0, 1361, +917, 0, 1576, +981, 0, 1683, +1223, 0, 1786, +1476, 0, 1910, +1569, 0, 2029, +1477, 656, 2197, +395, 992, 2347, +1611, 0, 2464, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1143, 0, 0, +1143, 0, 0, +1144, 0, 38, +1144, 0, 111, +1144, 0, 193, +1144, 0, 284, +1144, 0, 382, +1144, 0, 487, +1144, 0, 598, +1144, 0, 713, +1144, 0, 833, +1144, 0, 955, +1141, 0, 1090, +1055, 0, 1362, +911, 0, 1576, +982, 0, 1684, +1219, 0, 1785, +1475, 0, 1911, +1568, 0, 2029, +1475, 665, 2197, +395, 998, 2347, +1614, 0, 2464, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1141, 0, 0, +1141, 0, 0, +1142, 0, 38, +1143, 0, 124, +1143, 0, 204, +1143, 0, 293, +1143, 0, 389, +1143, 0, 493, +1143, 0, 602, +1143, 0, 717, +1143, 0, 835, +1143, 0, 957, +1140, 0, 1091, +1050, 0, 1363, +904, 0, 1577, +984, 0, 1685, +1213, 0, 1785, +1474, 0, 1911, +1568, 0, 2030, +1472, 676, 2198, +395, 1005, 2348, +1617, 0, 2464, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1137, 0, 0, +1137, 0, 0, +1138, 0, 38, +1139, 0, 124, +1141, 0, 219, +1141, 0, 305, +1141, 0, 399, +1141, 0, 501, +1141, 0, 608, +1141, 0, 722, +1141, 0, 839, +1141, 0, 960, +1138, 0, 1093, +1043, 0, 1364, +895, 0, 1577, +987, 0, 1686, +1205, 0, 1784, +1474, 0, 1912, +1567, 0, 2031, +1469, 692, 2198, +395, 1015, 2348, +1622, 0, 2464, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1132, 0, 0, +1132, 0, 0, +1133, 0, 38, +1134, 0, 124, +1136, 0, 219, +1139, 0, 320, +1139, 0, 411, +1139, 0, 511, +1139, 0, 616, +1139, 0, 728, +1139, 0, 844, +1139, 0, 963, +1136, 0, 1096, +1034, 0, 1365, +882, 0, 1578, +990, 0, 1687, +1194, 0, 1784, +1472, 0, 1913, +1566, 0, 2032, +1464, 711, 2199, +395, 1028, 2349, +1628, 0, 2464, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1125, 13, 0, +1125, 0, 0, +1126, 0, 38, +1128, 0, 124, +1129, 0, 219, +1132, 0, 320, +1135, 0, 428, +1135, 0, 524, +1135, 0, 627, +1135, 0, 736, +1135, 0, 850, +1135, 0, 968, +1132, 0, 1100, +1021, 107, 1367, +864, 107, 1579, +995, 0, 1690, +1178, 0, 1783, +1471, 0, 1914, +1565, 97, 2034, +1457, 736, 2199, +395, 1045, 2350, +1636, 0, 2464, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1116, 150, 0, +1116, 137, 0, +1117, 127, 38, +1118, 114, 124, +1120, 96, 219, +1123, 70, 320, +1126, 34, 428, +1131, 0, 541, +1131, 0, 640, +1131, 0, 747, +1131, 0, 858, +1131, 0, 975, +1128, 0, 1105, +1003, 254, 1370, +839, 254, 1581, +1001, 137, 1692, +1157, 0, 1782, +1469, 17, 1915, +1563, 213, 2037, +1448, 768, 2200, +395, 1066, 2351, +1646, 21, 2464, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1103, 286, 0, +1103, 276, 0, +1104, 269, 38, +1106, 259, 124, +1108, 246, 219, +1110, 227, 320, +1114, 202, 428, +1118, 166, 541, +1125, 111, 658, +1125, 111, 760, +1125, 111, 869, +1125, 111, 983, +1121, 111, 1111, +979, 396, 1374, +803, 396, 1584, +1009, 276, 1696, +1127, 0, 1781, +1466, 140, 1918, +1560, 333, 2040, +1436, 807, 2201, +395, 1093, 2353, +1654, 232, 2464, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1085, 420, 0, +1085, 413, 0, +1086, 408, 38, +1088, 401, 124, +1090, 391, 219, +1093, 378, 320, +1097, 360, 428, +1102, 334, 541, +1108, 298, 658, +1116, 244, 779, +1116, 244, 884, +1116, 244, 995, +1113, 244, 1119, +952, 513, 1379, +749, 536, 1587, +1019, 413, 1700, +1132, 186, 1784, +1462, 265, 1920, +1557, 456, 2044, +1419, 854, 2202, +395, 1128, 2355, +1664, 421, 2465, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1061, 554, 0, +1061, 549, 0, +1062, 545, 38, +1064, 540, 124, +1066, 533, 219, +1069, 523, 320, +1073, 510, 428, +1078, 492, 541, +1085, 466, 658, +1093, 430, 779, +1105, 376, 902, +1105, 376, 1009, +1102, 376, 1131, +936, 591, 1385, +666, 674, 1590, +999, 572, 1705, +1142, 392, 1789, +1438, 342, 1919, +1553, 581, 2050, +1395, 910, 2205, +395, 1169, 2358, +1678, 592, 2466, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1025, 688, 0, +1025, 684, 0, +1027, 681, 38, +1028, 677, 124, +1031, 672, 219, +1034, 665, 320, +1038, 655, 428, +1044, 643, 541, +1051, 624, 658, +1061, 599, 779, +1073, 562, 902, +1089, 508, 1028, +1086, 508, 1145, +913, 678, 1393, +525, 811, 1596, +936, 738, 1709, +1157, 573, 1796, +1399, 418, 1917, +1547, 709, 2058, +1361, 976, 2207, +221, 1212, 2361, +1695, 752, 2468, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +998, 854, 247, +999, 854, 274, +1000, 852, 314, +1002, 850, 363, +1005, 846, 421, +1008, 841, 488, +1013, 835, 565, +1018, 826, 651, +1026, 814, 746, +1036, 797, 847, +1050, 774, 955, +1067, 741, 1069, +1082, 701, 1186, +907, 818, 1417, +458, 939, 1611, +854, 914, 1719, +1166, 781, 1811, +1344, 583, 1918, +1532, 855, 2069, +1306, 1062, 2213, +0, 1254, 2365, +1713, 908, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1120, 1134, 981, +1120, 1134, 987, +1116, 1134, 996, +1110, 1134, 1007, +1102, 1134, 1022, +1091, 1134, 1041, +1076, 1134, 1065, +1055, 1134, 1096, +1025, 1134, 1133, +1003, 1131, 1180, +1017, 1120, 1235, +1036, 1105, 1300, +1052, 1087, 1374, +1136, 1087, 1482, +920, 1158, 1655, +941, 1167, 1774, +1193, 1161, 1864, +1274, 1071, 1958, +1421, 1134, 2085, +1184, 1237, 2230, +980, 1275, 2368, +1697, 1083, 2471, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1244, 1351, 1313, +1244, 1351, 1315, +1241, 1351, 1320, +1236, 1351, 1325, +1230, 1351, 1332, +1222, 1351, 1342, +1211, 1351, 1355, +1195, 1351, 1371, +1174, 1351, 1392, +1143, 1351, 1419, +1099, 1351, 1452, +1031, 1351, 1493, +1008, 1345, 1543, +1101, 1345, 1620, +1200, 1345, 1706, +1180, 1356, 1819, +1250, 1368, 1917, +1282, 1376, 2010, +1214, 1352, 2106, +941, 1399, 2251, +1206, 1332, 2375, +1655, 1246, 2474, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1442, 1522, 1648, +1441, 1522, 1649, +1440, 1523, 1650, +1440, 1523, 1651, +1439, 1524, 1653, +1437, 1525, 1655, +1436, 1526, 1658, +1433, 1528, 1663, +1430, 1531, 1668, +1426, 1534, 1676, +1410, 1536, 1691, +1377, 1536, 1716, +1335, 1537, 1749, +1263, 1537, 1781, +1301, 1537, 1839, +1339, 1536, 1910, +1357, 1528, 1994, +1241, 1551, 2071, +1105, 1537, 2167, +883, 1536, 2275, +1324, 1476, 2384, +1692, 1446, 2476, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1656, 1669, 1872, +1656, 1669, 1873, +1655, 1669, 1874, +1654, 1670, 1875, +1652, 1671, 1877, +1650, 1671, 1879, +1646, 1672, 1883, +1642, 1674, 1887, +1636, 1675, 1893, +1633, 1678, 1897, +1629, 1681, 1903, +1624, 1685, 1911, +1616, 1691, 1922, +1595, 1684, 1941, +1542, 1684, 1969, +1504, 1684, 2010, +1525, 1691, 2073, +1483, 1671, 2138, +1324, 1684, 2221, +1259, 1662, 2297, +1564, 1621, 2385, +1796, 1617, 2477, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1843, 1802, 1967, +1843, 1802, 1968, +1843, 1802, 1969, +1842, 1802, 1969, +1841, 1802, 1971, +1840, 1802, 1972, +1839, 1802, 1974, +1837, 1802, 1977, +1834, 1802, 1981, +1831, 1802, 1986, +1824, 1804, 1994, +1814, 1807, 2005, +1802, 1811, 2018, +1790, 1817, 2033, +1773, 1811, 2052, +1772, 1809, 2081, +1734, 1809, 2120, +1747, 1811, 2175, +1708, 1801, 2234, +1744, 1800, 2309, +1774, 1800, 2391, +1911, 1796, 2475, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1991, 1958, 2038, +1991, 1958, 2038, +1990, 1958, 2040, +1989, 1958, 2041, +1988, 1958, 2043, +1986, 1958, 2045, +1983, 1958, 2049, +1980, 1958, 2053, +1976, 1958, 2059, +1970, 1958, 2067, +1962, 1958, 2074, +1950, 1958, 2082, +1946, 1958, 2104, +1947, 1962, 2142, +1936, 1964, 2196, +1923, 1957, 2231, +1922, 1958, 2310, +1954, 1955, 2394, +2043, 1964, 2481, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2128, 2127, 2076, +2128, 2127, 2077, +2129, 2127, 2077, +2129, 2127, 2077, +2129, 2127, 2077, +2129, 2127, 2078, +2130, 2127, 2078, +2130, 2127, 2079, +2131, 2127, 2080, +2132, 2127, 2080, +2133, 2127, 2082, +2135, 2127, 2084, +2135, 2127, 2087, +2129, 2127, 2097, +2122, 2127, 2109, +2124, 2131, 2129, +2128, 2135, 2163, +2124, 2132, 2210, +2119, 2127, 2251, +2135, 2128, 2316, +2164, 2135, 2400, +2226, 2151, 2485, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2374, 2355, 2126, +2374, 2355, 2127, +2374, 2355, 2127, +2374, 2355, 2127, +2374, 2355, 2127, +2374, 2355, 2128, +2374, 2355, 2129, +2375, 2355, 2130, +2375, 2355, 2131, +2375, 2355, 2133, +2376, 2355, 2135, +2377, 2355, 2138, +2376, 2355, 2140, +2375, 2355, 2143, +2372, 2354, 2147, +2374, 2356, 2159, +2375, 2358, 2191, +2375, 2357, 2230, +2381, 2358, 2275, +2398, 2368, 2335, +2415, 2368, 2409, +2469, 2388, 2498, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2679, 2653, 1955, +2679, 2653, 1955, +2679, 2653, 1956, +2679, 2653, 1957, +2679, 2653, 1958, +2679, 2654, 1961, +2679, 2654, 1963, +2679, 2654, 1967, +2679, 2654, 1964, +2679, 2653, 1961, +2678, 2652, 1955, +2678, 2650, 1948, +2677, 2648, 1939, +2677, 2650, 1960, +2676, 2655, 1976, +2677, 2657, 2013, +2680, 2657, 2068, +2679, 2658, 2122, +2683, 2657, 2209, +2688, 2661, 2310, +2695, 2666, 2408, +2715, 2679, 2527, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +1314, 0, 0, +1314, 0, 0, +1315, 0, 0, +1316, 0, 18, +1317, 0, 98, +1319, 0, 188, +1321, 0, 285, +1324, 0, 389, +1328, 0, 499, +1331, 0, 624, +1331, 0, 765, +1331, 0, 904, +1329, 0, 1054, +1312, 0, 1291, +1236, 0, 1533, +1269, 0, 1690, +1323, 0, 1781, +1534, 0, 1909, +1607, 0, 2039, +1502, 645, 2197, +677, 1023, 2352, +1658, 0, 2466, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1314, 0, 0, +1314, 0, 0, +1315, 0, 17, +1315, 0, 78, +1316, 0, 150, +1318, 0, 230, +1321, 0, 319, +1324, 0, 417, +1328, 0, 521, +1331, 0, 640, +1331, 0, 777, +1331, 0, 914, +1329, 0, 1059, +1311, 0, 1294, +1235, 0, 1535, +1268, 0, 1691, +1323, 0, 1782, +1533, 0, 1910, +1607, 0, 2039, +1501, 656, 2197, +679, 1026, 2352, +1659, 0, 2466, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1314, 0, 0, +1314, 0, 17, +1314, 0, 97, +1315, 0, 149, +1316, 0, 211, +1318, 0, 282, +1320, 0, 363, +1323, 0, 452, +1327, 0, 549, +1330, 0, 662, +1330, 0, 794, +1330, 0, 926, +1328, 0, 1068, +1311, 0, 1298, +1235, 0, 1537, +1267, 0, 1692, +1323, 0, 1783, +1532, 0, 1911, +1606, 0, 2040, +1500, 671, 2198, +682, 1030, 2352, +1660, 0, 2466, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1314, 0, 18, +1314, 0, 78, +1314, 0, 149, +1314, 0, 229, +1315, 0, 281, +1316, 0, 343, +1319, 0, 414, +1322, 0, 494, +1326, 0, 584, +1329, 0, 689, +1329, 0, 814, +1329, 0, 941, +1327, 0, 1079, +1310, 0, 1302, +1233, 0, 1540, +1266, 0, 1693, +1323, 0, 1784, +1531, 0, 1912, +1605, 0, 2041, +1498, 690, 2198, +686, 1035, 2353, +1661, 0, 2466, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1314, 0, 98, +1314, 0, 150, +1314, 0, 211, +1314, 0, 281, +1314, 0, 361, +1315, 0, 413, +1318, 0, 475, +1321, 0, 546, +1325, 0, 627, +1328, 0, 723, +1328, 0, 840, +1328, 0, 961, +1326, 0, 1094, +1309, 0, 1309, +1232, 0, 1544, +1265, 0, 1695, +1323, 0, 1787, +1529, 0, 1914, +1603, 0, 2042, +1497, 714, 2199, +691, 1042, 2353, +1662, 0, 2466, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1314, 0, 188, +1314, 0, 230, +1314, 0, 282, +1314, 0, 343, +1314, 0, 413, +1314, 0, 493, +1316, 0, 545, +1319, 0, 607, +1323, 0, 678, +1326, 0, 766, +1326, 0, 873, +1326, 0, 986, +1324, 0, 1113, +1307, 0, 1317, +1230, 0, 1549, +1263, 0, 1697, +1323, 30, 1790, +1527, 0, 1916, +1602, 132, 2043, +1495, 745, 2200, +698, 1051, 2354, +1663, 0, 2466, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1314, 121, 285, +1314, 106, 319, +1314, 85, 363, +1314, 56, 414, +1314, 13, 475, +1314, 0, 545, +1314, 0, 625, +1317, 0, 677, +1321, 0, 739, +1324, 0, 816, +1324, 0, 914, +1324, 0, 1018, +1322, 0, 1138, +1304, 0, 1329, +1227, 0, 1556, +1261, 0, 1700, +1323, 163, 1794, +1524, 32, 1919, +1599, 264, 2045, +1491, 783, 2201, +706, 1063, 2354, +1666, 32, 2466, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1314, 264, 389, +1314, 253, 417, +1314, 238, 452, +1314, 217, 494, +1314, 188, 546, +1314, 146, 607, +1314, 82, 677, +1314, 0, 757, +1318, 0, 809, +1321, 0, 876, +1321, 0, 963, +1321, 0, 1058, +1319, 0, 1168, +1302, 0, 1343, +1223, 0, 1565, +1257, 0, 1704, +1323, 295, 1799, +1520, 164, 1923, +1596, 396, 2047, +1487, 830, 2203, +718, 1079, 2355, +1668, 164, 2466, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1314, 404, 499, +1314, 396, 521, +1314, 385, 549, +1314, 370, 584, +1314, 349, 627, +1314, 320, 678, +1314, 277, 739, +1314, 214, 809, +1314, 111, 889, +1317, 111, 946, +1317, 111, 1021, +1317, 111, 1106, +1315, 111, 1206, +1297, 111, 1362, +1218, 111, 1576, +1252, 111, 1709, +1323, 426, 1806, +1515, 296, 1928, +1592, 528, 2051, +1482, 885, 2205, +733, 1099, 2357, +1667, 296, 2465, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1310, 530, 574, +1310, 524, 592, +1310, 516, 616, +1310, 505, 646, +1310, 490, 684, +1310, 468, 730, +1310, 438, 784, +1310, 394, 848, +1310, 328, 922, +1311, 244, 1001, +1311, 244, 1068, +1311, 244, 1145, +1310, 244, 1238, +1292, 244, 1379, +1207, 285, 1587, +1251, 265, 1716, +1322, 514, 1811, +1510, 413, 1934, +1587, 643, 2055, +1471, 941, 2208, +745, 1128, 2358, +1669, 442, 2465, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1294, 639, 574, +1294, 634, 592, +1294, 627, 616, +1294, 619, 646, +1294, 607, 684, +1294, 591, 730, +1294, 568, 784, +1294, 535, 848, +1294, 488, 922, +1297, 430, 1001, +1304, 376, 1080, +1304, 376, 1155, +1302, 376, 1246, +1284, 376, 1385, +1178, 503, 1590, +1239, 473, 1720, +1329, 626, 1816, +1488, 470, 1933, +1583, 729, 2060, +1450, 988, 2209, +745, 1169, 2362, +1682, 607, 2467, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1274, 753, 574, +1274, 749, 592, +1274, 744, 616, +1274, 737, 646, +1274, 728, 684, +1274, 716, 730, +1274, 698, 784, +1274, 674, 848, +1274, 640, 922, +1276, 599, 1001, +1284, 562, 1080, +1294, 508, 1169, +1292, 508, 1257, +1273, 508, 1393, +1137, 691, 1596, +1203, 671, 1723, +1338, 742, 1822, +1453, 529, 1930, +1577, 824, 2068, +1421, 1044, 2212, +672, 1212, 2365, +1699, 762, 2468, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1258, 900, 682, +1259, 900, 693, +1259, 896, 712, +1259, 891, 736, +1259, 885, 767, +1259, 876, 806, +1259, 864, 852, +1259, 847, 908, +1259, 824, 973, +1261, 797, 1044, +1269, 774, 1117, +1280, 741, 1199, +1289, 701, 1290, +1270, 701, 1417, +1120, 852, 1611, +1159, 869, 1734, +1344, 895, 1836, +1405, 663, 1931, +1563, 942, 2078, +1372, 1118, 2218, +602, 1254, 2368, +1718, 915, 2470, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1314, 1134, 1183, +1314, 1134, 1187, +1315, 1134, 1191, +1316, 1134, 1197, +1317, 1134, 1206, +1319, 1134, 1216, +1321, 1134, 1230, +1324, 1134, 1248, +1328, 1134, 1271, +1333, 1131, 1302, +1340, 1120, 1345, +1349, 1105, 1396, +1358, 1087, 1457, +1341, 1087, 1528, +1216, 1158, 1687, +1159, 1142, 1780, +1317, 1176, 1886, +1360, 1041, 1962, +1486, 1159, 2104, +1228, 1237, 2234, +1015, 1275, 2368, +1721, 1100, 2471, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1399, 1351, 1421, +1399, 1351, 1423, +1400, 1351, 1426, +1400, 1351, 1429, +1401, 1351, 1434, +1403, 1351, 1441, +1405, 1351, 1449, +1407, 1351, 1460, +1410, 1351, 1475, +1407, 1351, 1495, +1382, 1351, 1523, +1347, 1351, 1559, +1336, 1345, 1602, +1319, 1345, 1655, +1383, 1345, 1736, +1321, 1339, 1825, +1361, 1378, 1936, +1367, 1360, 2014, +1313, 1367, 2124, +1014, 1399, 2255, +1228, 1332, 2375, +1681, 1258, 2475, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1514, 1522, 1673, +1514, 1522, 1673, +1513, 1522, 1674, +1512, 1522, 1674, +1510, 1522, 1676, +1508, 1522, 1677, +1505, 1522, 1679, +1501, 1522, 1682, +1495, 1522, 1685, +1489, 1523, 1691, +1475, 1525, 1706, +1447, 1525, 1730, +1412, 1526, 1762, +1397, 1537, 1811, +1426, 1537, 1865, +1415, 1525, 1919, +1395, 1535, 2005, +1299, 1551, 2087, +1205, 1526, 2170, +1197, 1525, 2279, +1402, 1488, 2382, +1717, 1446, 2476, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1678, 1669, 1879, +1678, 1669, 1879, +1678, 1669, 1880, +1678, 1669, 1882, +1678, 1669, 1884, +1678, 1669, 1886, +1678, 1669, 1889, +1678, 1669, 1894, +1678, 1669, 1900, +1674, 1670, 1903, +1671, 1673, 1909, +1667, 1678, 1917, +1659, 1683, 1928, +1644, 1684, 1948, +1597, 1684, 1976, +1591, 1683, 2015, +1577, 1683, 2072, +1536, 1664, 2140, +1423, 1683, 2226, +1349, 1660, 2299, +1619, 1615, 2384, +1819, 1607, 2477, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1848, 1802, 1967, +1848, 1802, 1968, +1849, 1802, 1969, +1849, 1803, 1970, +1849, 1803, 1972, +1850, 1804, 1973, +1851, 1805, 1976, +1851, 1806, 1980, +1853, 1807, 1984, +1853, 1808, 1990, +1846, 1810, 1998, +1837, 1813, 2009, +1825, 1817, 2022, +1820, 1817, 2033, +1804, 1811, 2052, +1785, 1809, 2084, +1764, 1804, 2118, +1767, 1811, 2177, +1736, 1801, 2237, +1751, 1800, 2307, +1774, 1800, 2391, +1919, 1797, 2474, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2038, +1992, 1958, 2038, +1992, 1958, 2039, +1992, 1958, 2040, +1991, 1958, 2042, +1988, 1958, 2046, +1983, 1958, 2052, +1978, 1958, 2060, +1974, 1962, 2077, +1963, 1962, 2086, +1955, 1958, 2110, +1955, 1962, 2141, +1953, 1964, 2193, +1941, 1953, 2231, +1931, 1953, 2310, +1966, 1959, 2394, +2048, 1966, 2481, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2134, 2127, 2070, +2134, 2127, 2070, +2134, 2127, 2071, +2135, 2127, 2071, +2135, 2127, 2073, +2135, 2127, 2074, +2135, 2127, 2076, +2136, 2127, 2078, +2137, 2127, 2081, +2137, 2127, 2084, +2139, 2127, 2085, +2140, 2127, 2087, +2141, 2127, 2091, +2135, 2127, 2100, +2127, 2127, 2112, +2129, 2128, 2129, +2136, 2135, 2161, +2130, 2135, 2208, +2125, 2127, 2253, +2141, 2131, 2316, +2170, 2132, 2397, +2230, 2150, 2485, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2377, 2355, 2126, +2377, 2355, 2127, +2377, 2355, 2127, +2377, 2355, 2127, +2377, 2355, 2127, +2378, 2355, 2127, +2378, 2355, 2128, +2378, 2355, 2128, +2378, 2355, 2129, +2379, 2355, 2130, +2380, 2355, 2133, +2380, 2355, 2135, +2380, 2355, 2137, +2378, 2357, 2143, +2376, 2356, 2147, +2376, 2354, 2159, +2375, 2358, 2194, +2375, 2357, 2230, +2381, 2357, 2273, +2399, 2366, 2335, +2418, 2368, 2408, +2472, 2387, 2495, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2680, 2655, 1964, +2680, 2655, 1964, +2680, 2655, 1964, +2680, 2655, 1964, +2680, 2655, 1964, +2680, 2655, 1964, +2680, 2655, 1964, +2680, 2655, 1964, +2679, 2655, 1968, +2679, 2655, 1970, +2679, 2654, 1965, +2678, 2652, 1958, +2677, 2650, 1949, +2677, 2648, 1945, +2675, 2653, 1962, +2676, 2656, 2011, +2680, 2657, 2064, +2681, 2657, 2122, +2684, 2657, 2213, +2688, 2662, 2314, +2696, 2667, 2413, +2716, 2679, 2527, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +1471, 0, 0, +1471, 0, 0, +1472, 0, 0, +1472, 0, 18, +1473, 0, 98, +1475, 0, 188, +1476, 0, 285, +1478, 0, 389, +1481, 0, 499, +1485, 0, 614, +1490, 0, 733, +1496, 0, 855, +1498, 0, 1011, +1486, 0, 1266, +1470, 0, 1472, +1490, 0, 1659, +1524, 0, 1789, +1589, 0, 1904, +1654, 0, 2053, +1531, 645, 2197, +923, 1046, 2356, +1710, 0, 2469, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1471, 0, 0, +1471, 0, 0, +1471, 0, 17, +1472, 0, 78, +1473, 0, 150, +1474, 0, 230, +1476, 0, 319, +1478, 0, 417, +1481, 0, 521, +1485, 0, 631, +1489, 0, 746, +1496, 0, 865, +1497, 0, 1017, +1486, 0, 1269, +1469, 0, 1474, +1489, 0, 1660, +1524, 0, 1790, +1589, 0, 1905, +1653, 0, 2053, +1531, 656, 2197, +924, 1049, 2356, +1710, 0, 2469, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1471, 0, 0, +1471, 0, 17, +1471, 0, 97, +1472, 0, 149, +1472, 0, 211, +1474, 0, 282, +1475, 0, 363, +1477, 0, 452, +1480, 0, 549, +1484, 0, 653, +1489, 0, 763, +1496, 0, 878, +1497, 0, 1026, +1485, 0, 1273, +1469, 0, 1476, +1489, 0, 1661, +1524, 0, 1791, +1588, 0, 1905, +1652, 0, 2054, +1530, 671, 2198, +926, 1053, 2357, +1711, 0, 2469, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1471, 0, 18, +1471, 0, 78, +1471, 0, 149, +1471, 0, 229, +1472, 0, 281, +1473, 0, 343, +1475, 0, 414, +1477, 0, 494, +1480, 0, 584, +1483, 0, 681, +1488, 0, 785, +1495, 0, 895, +1496, 0, 1039, +1485, 0, 1278, +1468, 0, 1480, +1488, 0, 1662, +1524, 0, 1793, +1587, 0, 1907, +1651, 0, 2054, +1529, 690, 2198, +928, 1058, 2357, +1712, 0, 2469, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1471, 0, 98, +1471, 0, 150, +1471, 0, 211, +1471, 0, 281, +1471, 0, 361, +1472, 0, 413, +1474, 0, 475, +1476, 0, 546, +1479, 0, 627, +1482, 0, 716, +1487, 0, 813, +1494, 0, 917, +1495, 0, 1055, +1484, 0, 1285, +1467, 0, 1484, +1487, 0, 1664, +1524, 0, 1795, +1585, 0, 1908, +1650, 0, 2055, +1527, 714, 2199, +931, 1065, 2357, +1713, 0, 2469, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1471, 0, 188, +1471, 0, 230, +1471, 0, 282, +1471, 0, 343, +1471, 0, 413, +1471, 0, 493, +1472, 0, 545, +1475, 0, 607, +1478, 0, 678, +1481, 0, 759, +1486, 0, 848, +1493, 0, 946, +1494, 0, 1075, +1482, 0, 1294, +1466, 0, 1490, +1486, 0, 1667, +1524, 30, 1798, +1584, 0, 1911, +1648, 132, 2057, +1525, 745, 2200, +935, 1074, 2358, +1715, 0, 2469, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1471, 121, 285, +1471, 106, 319, +1471, 85, 363, +1471, 56, 414, +1471, 13, 475, +1471, 0, 545, +1471, 0, 625, +1473, 0, 677, +1476, 0, 739, +1480, 0, 810, +1485, 0, 891, +1491, 0, 980, +1493, 0, 1102, +1481, 0, 1306, +1464, 0, 1497, +1485, 0, 1670, +1524, 163, 1802, +1581, 32, 1914, +1646, 264, 2058, +1522, 783, 2201, +940, 1085, 2358, +1716, 32, 2469, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1471, 264, 389, +1471, 253, 417, +1471, 238, 452, +1471, 217, 494, +1471, 188, 546, +1471, 146, 607, +1471, 82, 677, +1471, 0, 757, +1474, 0, 809, +1478, 0, 871, +1483, 0, 942, +1489, 0, 1023, +1491, 0, 1135, +1479, 0, 1321, +1462, 0, 1507, +1482, 0, 1674, +1524, 295, 1807, +1578, 164, 1918, +1644, 396, 2061, +1518, 830, 2203, +947, 1100, 2359, +1719, 164, 2469, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1471, 404, 499, +1471, 396, 521, +1471, 385, 549, +1471, 370, 584, +1471, 349, 627, +1471, 320, 678, +1471, 277, 739, +1471, 214, 809, +1471, 111, 889, +1475, 111, 942, +1480, 111, 1003, +1486, 111, 1075, +1488, 111, 1176, +1476, 111, 1340, +1459, 111, 1520, +1480, 111, 1680, +1524, 426, 1814, +1573, 296, 1923, +1640, 528, 2064, +1513, 885, 2205, +956, 1119, 2361, +1717, 296, 2469, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1471, 542, 614, +1471, 536, 631, +1471, 528, 653, +1471, 517, 681, +1471, 502, 716, +1471, 482, 759, +1471, 452, 810, +1471, 410, 871, +1471, 346, 942, +1471, 244, 1021, +1476, 244, 1074, +1483, 244, 1135, +1484, 244, 1225, +1472, 244, 1369, +1455, 244, 1537, +1476, 244, 1687, +1520, 502, 1820, +1567, 428, 1930, +1634, 660, 2068, +1506, 950, 2208, +968, 1143, 2362, +1715, 428, 2469, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1471, 678, 733, +1471, 674, 746, +1471, 668, 763, +1471, 660, 785, +1471, 649, 813, +1471, 634, 848, +1471, 613, 891, +1471, 584, 942, +1471, 542, 1003, +1471, 478, 1074, +1471, 376, 1153, +1478, 376, 1206, +1479, 376, 1283, +1467, 376, 1412, +1450, 376, 1559, +1471, 376, 1701, +1516, 581, 1827, +1566, 591, 1940, +1627, 792, 2074, +1496, 1025, 2212, +983, 1174, 2364, +1712, 560, 2468, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1471, 814, 855, +1471, 811, 865, +1471, 806, 878, +1471, 800, 895, +1471, 792, 917, +1471, 782, 946, +1471, 767, 980, +1471, 746, 1023, +1471, 717, 1075, +1471, 674, 1135, +1471, 611, 1206, +1471, 508, 1285, +1472, 508, 1352, +1460, 508, 1465, +1443, 508, 1587, +1464, 508, 1721, +1509, 670, 1836, +1566, 751, 1952, +1617, 925, 2081, +1483, 1109, 2218, +935, 1212, 2368, +1708, 692, 2467, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1467, 954, 955, +1467, 954, 960, +1467, 951, 971, +1467, 947, 985, +1467, 941, 1004, +1467, 933, 1027, +1467, 923, 1056, +1467, 908, 1092, +1467, 888, 1137, +1467, 859, 1191, +1467, 818, 1254, +1467, 755, 1326, +1471, 701, 1400, +1458, 701, 1503, +1441, 701, 1611, +1446, 742, 1738, +1508, 833, 1851, +1542, 872, 1959, +1602, 1037, 2091, +1448, 1185, 2224, +886, 1254, 2372, +1718, 855, 2468, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1503, 1167, 1293, +1503, 1167, 1296, +1504, 1167, 1299, +1504, 1167, 1304, +1505, 1167, 1311, +1506, 1167, 1319, +1508, 1167, 1330, +1510, 1167, 1344, +1512, 1167, 1363, +1514, 1162, 1390, +1514, 1141, 1432, +1514, 1111, 1482, +1517, 1087, 1536, +1506, 1087, 1597, +1491, 1087, 1687, +1446, 1077, 1783, +1489, 1144, 1900, +1509, 1144, 1988, +1532, 1221, 2116, +1329, 1289, 2240, +1151, 1275, 2372, +1721, 1061, 2469, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1547, 1351, 1534, +1547, 1351, 1536, +1547, 1351, 1538, +1548, 1351, 1541, +1549, 1351, 1545, +1550, 1351, 1550, +1551, 1351, 1556, +1553, 1351, 1565, +1555, 1351, 1577, +1558, 1351, 1592, +1563, 1351, 1611, +1569, 1351, 1636, +1573, 1345, 1671, +1563, 1345, 1717, +1550, 1345, 1771, +1498, 1335, 1850, +1489, 1358, 1942, +1476, 1376, 2036, +1418, 1388, 2147, +1096, 1399, 2261, +1290, 1332, 2375, +1730, 1258, 2473, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1626, 1522, 1733, +1625, 1522, 1734, +1625, 1522, 1734, +1623, 1522, 1735, +1622, 1522, 1736, +1621, 1522, 1737, +1618, 1522, 1739, +1615, 1522, 1742, +1611, 1522, 1745, +1605, 1522, 1749, +1605, 1522, 1760, +1609, 1522, 1778, +1596, 1523, 1805, +1587, 1534, 1850, +1574, 1537, 1894, +1558, 1522, 1941, +1509, 1521, 2012, +1413, 1563, 2107, +1330, 1535, 2187, +1296, 1523, 2285, +1459, 1491, 2382, +1767, 1446, 2474, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1737, 1669, 1898, +1737, 1669, 1899, +1737, 1669, 1900, +1737, 1669, 1901, +1737, 1669, 1903, +1737, 1669, 1905, +1737, 1669, 1908, +1737, 1669, 1913, +1737, 1669, 1918, +1732, 1669, 1922, +1727, 1669, 1925, +1719, 1669, 1930, +1711, 1672, 1940, +1697, 1674, 1960, +1687, 1684, 2003, +1675, 1681, 2036, +1638, 1672, 2080, +1565, 1674, 2153, +1492, 1672, 2229, +1526, 1649, 2305, +1680, 1621, 2385, +1871, 1607, 2473, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1862, 1802, 1972, +1862, 1802, 1973, +1862, 1802, 1973, +1862, 1803, 1975, +1862, 1803, 1976, +1863, 1804, 1978, +1864, 1805, 1981, +1865, 1806, 1984, +1866, 1807, 1989, +1868, 1809, 1995, +1868, 1809, 2004, +1868, 1809, 2014, +1861, 1811, 2027, +1856, 1811, 2038, +1842, 1811, 2056, +1824, 1809, 2088, +1829, 1804, 2122, +1805, 1804, 2175, +1793, 1801, 2242, +1782, 1800, 2309, +1820, 1797, 2390, +1940, 1796, 2477, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2038, +1992, 1958, 2038, +1992, 1958, 2039, +1992, 1958, 2040, +1992, 1958, 2041, +1992, 1958, 2042, +1992, 1958, 2044, +1989, 1958, 2051, +1984, 1962, 2068, +1979, 1968, 2090, +1970, 1962, 2115, +1966, 1962, 2148, +1966, 1964, 2190, +1964, 1947, 2231, +1943, 1947, 2310, +1978, 1965, 2395, +2061, 1971, 2481, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2142, 2127, 2061, +2142, 2127, 2061, +2142, 2127, 2062, +2142, 2127, 2063, +2142, 2127, 2064, +2143, 2127, 2065, +2143, 2127, 2067, +2143, 2127, 2069, +2144, 2127, 2072, +2145, 2127, 2076, +2146, 2127, 2082, +2148, 2127, 2089, +2148, 2127, 2095, +2143, 2127, 2104, +2135, 2127, 2116, +2137, 2127, 2132, +2144, 2131, 2161, +2141, 2135, 2204, +2133, 2127, 2256, +2149, 2134, 2316, +2174, 2130, 2395, +2237, 2146, 2485, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2379, 2355, 2126, +2380, 2355, 2127, +2380, 2355, 2127, +2380, 2355, 2127, +2380, 2355, 2127, +2380, 2355, 2127, +2380, 2355, 2128, +2381, 2355, 2128, +2381, 2355, 2129, +2381, 2355, 2130, +2382, 2355, 2131, +2382, 2355, 2133, +2382, 2355, 2135, +2381, 2357, 2141, +2379, 2358, 2148, +2379, 2355, 2161, +2378, 2357, 2192, +2376, 2358, 2230, +2382, 2354, 2270, +2402, 2364, 2335, +2420, 2368, 2405, +2473, 2383, 2495, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2656, 1951, +2680, 2656, 1956, +2680, 2656, 1963, +2679, 2655, 1973, +2679, 2654, 1971, +2678, 2651, 1967, +2678, 2651, 1962, +2678, 2655, 2011, +2679, 2657, 2064, +2682, 2657, 2129, +2684, 2657, 2213, +2688, 2661, 2311, +2699, 2668, 2415, +2717, 2681, 2528, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +1677, 0, 708, +1676, 0, 722, +1676, 0, 740, +1675, 0, 763, +1674, 0, 792, +1672, 0, 829, +1670, 0, 873, +1667, 0, 927, +1663, 0, 989, +1658, 0, 1062, +1657, 0, 1123, +1662, 0, 1179, +1666, 0, 1250, +1649, 0, 1372, +1636, 0, 1533, +1634, 0, 1672, +1671, 0, 1828, +1667, 0, 1929, +1689, 355, 2079, +1608, 810, 2211, +1232, 994, 2359, +1771, 0, 2470, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1676, 0, 726, +1676, 0, 735, +1675, 0, 753, +1674, 0, 775, +1673, 0, 804, +1672, 0, 839, +1669, 0, 883, +1667, 0, 935, +1663, 0, 997, +1658, 0, 1068, +1657, 0, 1129, +1662, 0, 1184, +1666, 0, 1253, +1649, 0, 1375, +1636, 0, 1535, +1635, 0, 1673, +1670, 0, 1829, +1666, 0, 1930, +1689, 372, 2079, +1607, 814, 2211, +1238, 995, 2359, +1771, 0, 2470, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1676, 0, 749, +1675, 0, 758, +1675, 0, 770, +1674, 0, 791, +1673, 0, 819, +1672, 0, 853, +1669, 0, 895, +1666, 0, 946, +1663, 0, 1007, +1657, 0, 1077, +1657, 0, 1136, +1661, 0, 1191, +1665, 0, 1259, +1649, 0, 1378, +1636, 0, 1537, +1635, 0, 1674, +1669, 0, 1829, +1665, 0, 1930, +1688, 394, 2080, +1606, 821, 2211, +1245, 996, 2359, +1771, 0, 2470, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1675, 0, 777, +1674, 0, 786, +1674, 0, 797, +1674, 0, 812, +1673, 0, 838, +1671, 0, 871, +1669, 0, 912, +1666, 0, 961, +1662, 0, 1020, +1657, 0, 1088, +1656, 0, 1146, +1661, 0, 1199, +1665, 0, 1266, +1649, 0, 1383, +1636, 0, 1541, +1636, 0, 1676, +1668, 0, 1830, +1663, 0, 1932, +1687, 422, 2080, +1605, 829, 2212, +1255, 998, 2359, +1772, 0, 2470, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1674, 0, 814, +1673, 0, 822, +1673, 0, 832, +1673, 0, 845, +1672, 0, 863, +1671, 0, 894, +1668, 0, 933, +1666, 0, 980, +1662, 0, 1036, +1656, 0, 1102, +1655, 0, 1159, +1660, 0, 1210, +1664, 0, 1276, +1649, 0, 1390, +1636, 0, 1545, +1637, 0, 1679, +1667, 0, 1831, +1662, 0, 1934, +1686, 457, 2081, +1603, 840, 2212, +1268, 1001, 2360, +1772, 0, 2470, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1672, 0, 858, +1672, 0, 865, +1672, 0, 874, +1671, 0, 887, +1671, 0, 903, +1670, 0, 923, +1667, 0, 960, +1664, 0, 1004, +1661, 0, 1058, +1655, 0, 1121, +1655, 0, 1175, +1659, 0, 1225, +1663, 0, 1289, +1649, 0, 1398, +1636, 0, 1551, +1639, 0, 1683, +1666, 0, 1832, +1659, 132, 1936, +1684, 500, 2083, +1600, 854, 2213, +1285, 1004, 2360, +1773, 0, 2470, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1670, 32, 911, +1669, 32, 917, +1669, 32, 926, +1669, 32, 937, +1668, 32, 951, +1667, 32, 970, +1667, 32, 993, +1663, 32, 1035, +1660, 32, 1085, +1654, 32, 1144, +1654, 32, 1196, +1658, 32, 1244, +1662, 0, 1305, +1649, 0, 1410, +1636, 0, 1560, +1641, 32, 1688, +1663, 32, 1833, +1656, 264, 1939, +1682, 551, 2084, +1596, 873, 2214, +1306, 1009, 2361, +1773, 0, 2470, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1667, 164, 973, +1667, 164, 979, +1666, 164, 986, +1666, 164, 996, +1666, 164, 1009, +1664, 164, 1025, +1663, 164, 1046, +1662, 164, 1073, +1658, 164, 1119, +1653, 164, 1174, +1652, 164, 1223, +1657, 164, 1268, +1661, 137, 1326, +1649, 0, 1424, +1636, 0, 1570, +1644, 164, 1695, +1661, 164, 1835, +1652, 396, 1943, +1680, 612, 2086, +1591, 896, 2215, +1333, 1014, 2362, +1774, 0, 2470, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1663, 296, 1045, +1663, 296, 1050, +1663, 296, 1056, +1662, 296, 1065, +1662, 296, 1075, +1661, 296, 1090, +1660, 296, 1108, +1658, 296, 1131, +1656, 296, 1161, +1651, 296, 1212, +1650, 296, 1257, +1655, 296, 1299, +1659, 276, 1353, +1649, 111, 1443, +1636, 111, 1584, +1648, 296, 1704, +1657, 296, 1838, +1646, 528, 1948, +1676, 683, 2089, +1585, 926, 2217, +1367, 1022, 2363, +1772, 0, 2470, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1658, 428, 1127, +1658, 428, 1131, +1657, 428, 1136, +1657, 428, 1143, +1656, 428, 1152, +1655, 428, 1164, +1654, 428, 1180, +1653, 428, 1200, +1651, 428, 1225, +1648, 428, 1257, +1648, 428, 1298, +1653, 428, 1336, +1657, 413, 1387, +1648, 265, 1468, +1636, 244, 1601, +1653, 428, 1715, +1661, 428, 1846, +1638, 660, 1955, +1671, 762, 2093, +1576, 963, 2219, +1408, 1032, 2365, +1768, 91, 2470, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1655, 583, 1188, +1655, 583, 1191, +1654, 583, 1196, +1654, 583, 1202, +1654, 583, 1210, +1653, 583, 1221, +1651, 583, 1234, +1650, 583, 1252, +1648, 583, 1275, +1646, 583, 1304, +1644, 536, 1348, +1649, 536, 1383, +1653, 524, 1429, +1645, 413, 1503, +1633, 376, 1622, +1654, 536, 1730, +1662, 536, 1854, +1635, 766, 1962, +1664, 863, 2099, +1566, 1025, 2222, +1432, 1062, 2367, +1764, 309, 2470, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1655, 745, 1237, +1655, 745, 1240, +1654, 745, 1244, +1654, 745, 1249, +1654, 745, 1257, +1653, 745, 1266, +1651, 745, 1279, +1650, 745, 1295, +1648, 745, 1315, +1646, 745, 1342, +1644, 713, 1383, +1644, 633, 1439, +1648, 624, 1479, +1640, 536, 1547, +1628, 508, 1646, +1649, 633, 1749, +1657, 633, 1863, +1635, 881, 1973, +1655, 979, 2105, +1554, 1109, 2228, +1415, 1110, 2370, +1760, 519, 2469, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1655, 918, 1304, +1656, 918, 1306, +1655, 918, 1310, +1655, 918, 1314, +1654, 918, 1320, +1654, 918, 1329, +1653, 918, 1340, +1651, 918, 1354, +1649, 918, 1372, +1647, 918, 1395, +1645, 897, 1432, +1645, 845, 1482, +1643, 779, 1541, +1635, 719, 1601, +1623, 701, 1686, +1641, 772, 1775, +1650, 779, 1877, +1631, 1007, 1989, +1643, 1092, 2115, +1533, 1205, 2236, +1384, 1170, 2375, +1758, 725, 2468, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1647, 1170, 1441, +1648, 1170, 1443, +1648, 1170, 1445, +1648, 1170, 1448, +1649, 1170, 1452, +1650, 1170, 1457, +1651, 1170, 1463, +1653, 1170, 1472, +1654, 1170, 1484, +1655, 1170, 1500, +1654, 1157, 1529, +1654, 1129, 1570, +1651, 1095, 1619, +1635, 1095, 1678, +1623, 1087, 1751, +1615, 1062, 1817, +1632, 1090, 1907, +1595, 1178, 2016, +1626, 1217, 2123, +1463, 1323, 2255, +1427, 1258, 2375, +1780, 1002, 2468, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1671, 1358, 1617, +1671, 1358, 1618, +1672, 1358, 1619, +1672, 1358, 1621, +1672, 1358, 1624, +1673, 1358, 1628, +1674, 1358, 1632, +1676, 1358, 1638, +1678, 1358, 1646, +1680, 1358, 1657, +1683, 1358, 1672, +1687, 1358, 1694, +1687, 1345, 1729, +1672, 1345, 1775, +1659, 1345, 1825, +1644, 1322, 1879, +1625, 1320, 1950, +1565, 1390, 2060, +1550, 1377, 2150, +1313, 1430, 2275, +1491, 1332, 2378, +1794, 1220, 2471, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1720, 1522, 1779, +1720, 1522, 1780, +1719, 1522, 1781, +1718, 1522, 1782, +1717, 1522, 1783, +1716, 1522, 1785, +1714, 1522, 1787, +1712, 1522, 1790, +1708, 1522, 1795, +1704, 1522, 1800, +1703, 1522, 1811, +1707, 1522, 1827, +1711, 1522, 1847, +1703, 1522, 1873, +1693, 1522, 1912, +1668, 1522, 1965, +1628, 1506, 2021, +1607, 1566, 2121, +1540, 1536, 2191, +1494, 1506, 2283, +1572, 1474, 2382, +1813, 1446, 2473, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1810, 1655, 1910, +1809, 1655, 1911, +1809, 1655, 1911, +1808, 1655, 1912, +1807, 1656, 1913, +1806, 1657, 1915, +1805, 1658, 1918, +1802, 1659, 1921, +1800, 1661, 1925, +1796, 1662, 1930, +1791, 1662, 1934, +1784, 1662, 1939, +1776, 1662, 1948, +1775, 1662, 1972, +1766, 1670, 2011, +1745, 1681, 2051, +1732, 1662, 2087, +1680, 1676, 2155, +1604, 1655, 2226, +1644, 1643, 2305, +1738, 1626, 2385, +1900, 1611, 2473, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1907, 1800, 1983, +1907, 1800, 1984, +1907, 1800, 1984, +1907, 1800, 1985, +1907, 1800, 1986, +1907, 1800, 1987, +1907, 1800, 1989, +1907, 1800, 1991, +1907, 1800, 1994, +1907, 1800, 1997, +1906, 1801, 2005, +1906, 1801, 2015, +1905, 1801, 2029, +1901, 1801, 2043, +1890, 1801, 2062, +1872, 1801, 2086, +1874, 1807, 2128, +1850, 1801, 2174, +1847, 1800, 2243, +1818, 1792, 2312, +1871, 1797, 2387, +1976, 1799, 2480, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1958, 2033, +2033, 1958, 2033, +2033, 1958, 2034, +2032, 1958, 2034, +2031, 1959, 2036, +2031, 1959, 2037, +2029, 1960, 2039, +2027, 1961, 2041, +2025, 1961, 2044, +2021, 1963, 2049, +2020, 1963, 2052, +2020, 1963, 2054, +2020, 1963, 2059, +2020, 1959, 2069, +2016, 1962, 2088, +2004, 1969, 2111, +1998, 1964, 2152, +1993, 1963, 2193, +1987, 1952, 2238, +1975, 1952, 2313, +2009, 1966, 2398, +2073, 1966, 2481, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2163, 2131, 2063, +2163, 2131, 2063, +2163, 2131, 2064, +2163, 2131, 2065, +2163, 2131, 2065, +2163, 2131, 2066, +2163, 2131, 2068, +2163, 2131, 2069, +2163, 2131, 2072, +2163, 2131, 2075, +2164, 2131, 2080, +2165, 2131, 2087, +2166, 2131, 2096, +2164, 2131, 2105, +2157, 2131, 2117, +2148, 2127, 2128, +2154, 2127, 2154, +2155, 2131, 2206, +2143, 2127, 2260, +2159, 2135, 2315, +2188, 2134, 2395, +2251, 2149, 2486, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2386, 2355, 2123, +2386, 2355, 2123, +2386, 2356, 2123, +2387, 2356, 2123, +2387, 2356, 2124, +2387, 2356, 2124, +2387, 2356, 2125, +2387, 2357, 2126, +2388, 2357, 2127, +2388, 2357, 2129, +2389, 2358, 2131, +2389, 2358, 2133, +2389, 2357, 2135, +2386, 2356, 2141, +2384, 2356, 2148, +2382, 2356, 2170, +2388, 2357, 2191, +2386, 2356, 2226, +2394, 2358, 2272, +2409, 2366, 2337, +2431, 2373, 2403, +2476, 2384, 2495, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2684, 2656, 1957, +2684, 2656, 1957, +2684, 2656, 1956, +2684, 2656, 1956, +2684, 2656, 1956, +2684, 2656, 1956, +2684, 2656, 1955, +2684, 2656, 1954, +2684, 2656, 1955, +2684, 2656, 1956, +2684, 2656, 1961, +2683, 2656, 1971, +2683, 2655, 1982, +2682, 2655, 1994, +2682, 2655, 1993, +2681, 2656, 2011, +2682, 2656, 2069, +2683, 2657, 2133, +2686, 2657, 2216, +2691, 2663, 2315, +2700, 2669, 2417, +2719, 2681, 2533, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +1824, 0, 1212, +1824, 0, 1217, +1825, 0, 1223, +1825, 0, 1231, +1826, 0, 1242, +1827, 0, 1255, +1829, 0, 1273, +1831, 0, 1296, +1833, 0, 1325, +1830, 0, 1360, +1825, 0, 1405, +1819, 0, 1458, +1810, 0, 1521, +1804, 0, 1576, +1787, 0, 1659, +1777, 0, 1755, +1770, 0, 1865, +1790, 0, 1986, +1740, 750, 2108, +1692, 916, 2230, +1561, 947, 2370, +1845, 0, 2469, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1824, 0, 1216, +1824, 0, 1219, +1825, 0, 1225, +1825, 0, 1233, +1826, 0, 1243, +1827, 0, 1257, +1829, 0, 1275, +1831, 0, 1298, +1833, 0, 1326, +1830, 0, 1362, +1825, 0, 1406, +1819, 0, 1459, +1810, 0, 1523, +1804, 0, 1578, +1787, 0, 1661, +1777, 0, 1756, +1770, 0, 1866, +1790, 32, 1986, +1740, 754, 2108, +1692, 922, 2231, +1561, 949, 2370, +1845, 0, 2470, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1825, 0, 1221, +1825, 0, 1224, +1825, 0, 1228, +1825, 0, 1235, +1826, 0, 1246, +1827, 0, 1260, +1829, 0, 1277, +1831, 0, 1300, +1833, 0, 1328, +1830, 0, 1364, +1825, 0, 1408, +1819, 0, 1461, +1810, 0, 1524, +1804, 0, 1580, +1787, 0, 1663, +1777, 0, 1758, +1770, 44, 1866, +1789, 88, 1987, +1740, 759, 2109, +1692, 931, 2231, +1562, 952, 2370, +1845, 0, 2470, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1825, 0, 1228, +1825, 0, 1231, +1825, 0, 1234, +1825, 0, 1239, +1826, 0, 1249, +1827, 0, 1263, +1829, 0, 1280, +1831, 0, 1302, +1833, 0, 1331, +1830, 0, 1366, +1825, 0, 1410, +1819, 0, 1463, +1810, 0, 1526, +1804, 0, 1584, +1787, 0, 1666, +1777, 0, 1760, +1769, 102, 1867, +1788, 153, 1988, +1739, 765, 2110, +1692, 942, 2232, +1563, 957, 2370, +1845, 0, 2470, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1826, 0, 1238, +1826, 0, 1240, +1826, 0, 1243, +1826, 0, 1248, +1826, 0, 1254, +1827, 0, 1267, +1829, 0, 1284, +1831, 0, 1306, +1833, 0, 1335, +1830, 0, 1370, +1825, 0, 1413, +1819, 0, 1465, +1810, 0, 1528, +1804, 0, 1588, +1787, 0, 1669, +1777, 83, 1763, +1769, 170, 1868, +1787, 229, 1990, +1739, 774, 2111, +1692, 956, 2233, +1563, 962, 2370, +1845, 0, 2470, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1827, 0, 1250, +1827, 0, 1252, +1827, 0, 1255, +1827, 0, 1260, +1827, 1, 1265, +1827, 30, 1273, +1829, 30, 1290, +1831, 30, 1312, +1833, 30, 1339, +1830, 30, 1375, +1825, 30, 1417, +1819, 30, 1469, +1810, 64, 1531, +1804, 132, 1593, +1787, 132, 1674, +1777, 215, 1767, +1768, 247, 1870, +1785, 313, 1991, +1738, 785, 2113, +1692, 974, 2235, +1564, 970, 2370, +1845, 0, 2470, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1829, 58, 1265, +1829, 66, 1267, +1829, 77, 1270, +1829, 91, 1275, +1829, 109, 1280, +1829, 133, 1288, +1829, 163, 1297, +1831, 163, 1318, +1833, 163, 1346, +1830, 163, 1380, +1825, 163, 1423, +1819, 163, 1474, +1810, 188, 1536, +1804, 264, 1601, +1787, 264, 1680, +1777, 347, 1772, +1767, 334, 1872, +1783, 406, 1994, +1737, 799, 2115, +1692, 998, 2237, +1565, 979, 2370, +1845, 32, 2471, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1831, 183, 1285, +1831, 190, 1287, +1831, 198, 1290, +1831, 209, 1294, +1831, 223, 1299, +1831, 242, 1306, +1831, 265, 1315, +1831, 295, 1328, +1833, 295, 1354, +1830, 295, 1388, +1825, 295, 1430, +1819, 295, 1480, +1810, 314, 1541, +1804, 396, 1611, +1787, 396, 1688, +1777, 479, 1778, +1766, 428, 1875, +1779, 506, 1998, +1736, 818, 2119, +1692, 1027, 2240, +1567, 992, 2369, +1845, 164, 2471, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1833, 310, 1310, +1833, 315, 1312, +1833, 322, 1315, +1833, 330, 1319, +1833, 341, 1324, +1833, 355, 1331, +1833, 373, 1339, +1833, 397, 1351, +1833, 426, 1365, +1830, 426, 1398, +1825, 426, 1439, +1819, 426, 1489, +1810, 441, 1548, +1804, 528, 1623, +1787, 528, 1699, +1777, 611, 1787, +1765, 530, 1878, +1775, 613, 2002, +1734, 841, 2123, +1692, 1064, 2244, +1569, 1008, 2369, +1844, 330, 2472, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1830, 439, 1356, +1830, 443, 1358, +1830, 447, 1361, +1830, 454, 1364, +1830, 462, 1369, +1830, 473, 1375, +1830, 487, 1383, +1830, 506, 1393, +1830, 529, 1407, +1828, 531, 1428, +1824, 531, 1466, +1817, 531, 1513, +1809, 543, 1570, +1803, 601, 1641, +1787, 591, 1713, +1780, 686, 1796, +1768, 615, 1886, +1769, 725, 2008, +1730, 897, 2126, +1685, 1092, 2246, +1595, 1019, 2371, +1840, 422, 2472, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1825, 568, 1412, +1825, 571, 1414, +1825, 575, 1417, +1825, 579, 1420, +1825, 586, 1424, +1825, 594, 1429, +1825, 605, 1436, +1825, 619, 1445, +1825, 638, 1457, +1824, 640, 1476, +1821, 640, 1501, +1814, 640, 1545, +1806, 648, 1598, +1800, 695, 1664, +1787, 658, 1731, +1782, 751, 1810, +1774, 707, 1896, +1763, 805, 2012, +1724, 965, 2131, +1675, 1127, 2249, +1629, 1033, 2373, +1836, 515, 2472, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1819, 699, 1479, +1819, 701, 1480, +1819, 703, 1482, +1819, 707, 1485, +1819, 712, 1488, +1819, 718, 1493, +1819, 727, 1499, +1819, 737, 1507, +1819, 752, 1518, +1817, 753, 1534, +1814, 753, 1556, +1811, 753, 1584, +1803, 760, 1633, +1797, 797, 1695, +1787, 733, 1754, +1782, 813, 1830, +1781, 806, 1910, +1756, 887, 2016, +1716, 1042, 2138, +1662, 1169, 2253, +1634, 1062, 2374, +1829, 616, 2472, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1811, 848, 1553, +1811, 848, 1554, +1811, 851, 1556, +1811, 853, 1558, +1811, 857, 1561, +1811, 861, 1565, +1811, 867, 1570, +1811, 875, 1577, +1811, 886, 1586, +1809, 887, 1600, +1807, 887, 1619, +1804, 887, 1644, +1799, 892, 1675, +1793, 920, 1732, +1785, 861, 1784, +1781, 901, 1853, +1789, 932, 1929, +1748, 990, 2023, +1706, 1137, 2147, +1648, 1218, 2257, +1620, 1108, 2375, +1824, 746, 2471, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1820, 1109, 1630, +1820, 1109, 1631, +1819, 1109, 1633, +1819, 1109, 1635, +1818, 1109, 1637, +1817, 1109, 1641, +1815, 1109, 1645, +1813, 1109, 1651, +1810, 1109, 1659, +1810, 1109, 1670, +1808, 1109, 1686, +1805, 1109, 1707, +1800, 1112, 1734, +1793, 1134, 1775, +1785, 1098, 1823, +1767, 1090, 1881, +1785, 1153, 1970, +1749, 1166, 2045, +1704, 1267, 2165, +1646, 1289, 2266, +1638, 1188, 2377, +1843, 976, 2471, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1812, 1336, 1724, +1812, 1336, 1725, +1811, 1336, 1727, +1811, 1336, 1728, +1810, 1336, 1730, +1809, 1336, 1733, +1807, 1336, 1736, +1805, 1336, 1741, +1802, 1336, 1748, +1804, 1336, 1756, +1806, 1336, 1767, +1810, 1336, 1781, +1808, 1338, 1803, +1801, 1351, 1839, +1785, 1351, 1887, +1762, 1338, 1936, +1760, 1342, 2007, +1728, 1366, 2073, +1683, 1382, 2175, +1573, 1418, 2288, +1713, 1264, 2379, +1872, 1202, 2471, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1832, 1511, 1838, +1832, 1511, 1839, +1832, 1511, 1839, +1832, 1511, 1840, +1832, 1511, 1841, +1832, 1511, 1843, +1832, 1511, 1845, +1832, 1511, 1848, +1832, 1511, 1852, +1829, 1511, 1857, +1829, 1511, 1865, +1832, 1511, 1876, +1834, 1511, 1891, +1824, 1511, 1912, +1810, 1511, 1951, +1783, 1522, 2002, +1774, 1495, 2052, +1746, 1515, 2117, +1708, 1501, 2192, +1652, 1522, 2297, +1779, 1436, 2383, +1898, 1422, 2472, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1888, 1654, 1938, +1888, 1654, 1938, +1888, 1654, 1939, +1888, 1654, 1940, +1888, 1654, 1940, +1888, 1654, 1942, +1888, 1654, 1943, +1888, 1654, 1946, +1888, 1654, 1949, +1885, 1654, 1953, +1881, 1654, 1958, +1875, 1654, 1965, +1868, 1655, 1975, +1863, 1662, 1991, +1855, 1662, 2017, +1843, 1654, 2055, +1817, 1654, 2107, +1794, 1657, 2159, +1766, 1662, 2229, +1800, 1621, 2303, +1843, 1605, 2385, +1921, 1624, 2474, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +1977, 1783, 1983, +1977, 1783, 1984, +1977, 1783, 1984, +1977, 1783, 1985, +1977, 1783, 1986, +1978, 1783, 1987, +1978, 1783, 1989, +1979, 1783, 1991, +1980, 1783, 1994, +1980, 1783, 1997, +1977, 1785, 2004, +1973, 1788, 2012, +1966, 1792, 2023, +1959, 1786, 2037, +1958, 1786, 2064, +1950, 1793, 2093, +1929, 1801, 2129, +1939, 1792, 2174, +1905, 1778, 2235, +1877, 1792, 2311, +1920, 1800, 2389, +2007, 1802, 2476, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2083, 1958, 2032, +2082, 1958, 2032, +2082, 1958, 2032, +2082, 1958, 2033, +2082, 1958, 2034, +2082, 1958, 2035, +2081, 1958, 2036, +2081, 1958, 2038, +2080, 1958, 2041, +2077, 1959, 2045, +2073, 1961, 2051, +2067, 1963, 2058, +2061, 1965, 2068, +2056, 1964, 2080, +2056, 1959, 2093, +2052, 1959, 2114, +2036, 1961, 2142, +2031, 1968, 2199, +2019, 1953, 2244, +2017, 1958, 2317, +2046, 1962, 2395, +2106, 1970, 2483, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2191, 2132, 2068, +2191, 2132, 2068, +2191, 2132, 2069, +2190, 2132, 2069, +2190, 2132, 2070, +2190, 2131, 2071, +2189, 2131, 2072, +2188, 2130, 2074, +2187, 2130, 2076, +2187, 2129, 2079, +2187, 2129, 2083, +2187, 2129, 2088, +2187, 2129, 2096, +2184, 2129, 2105, +2180, 2129, 2117, +2180, 2128, 2131, +2170, 2124, 2154, +2176, 2127, 2200, +2167, 2133, 2262, +2179, 2135, 2315, +2208, 2135, 2395, +2271, 2155, 2484, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2407, 2360, 2121, +2407, 2360, 2121, +2407, 2360, 2121, +2407, 2360, 2121, +2407, 2360, 2121, +2407, 2359, 2122, +2407, 2359, 2122, +2407, 2359, 2123, +2407, 2358, 2123, +2408, 2359, 2125, +2408, 2360, 2128, +2409, 2360, 2131, +2409, 2360, 2135, +2408, 2362, 2141, +2405, 2359, 2147, +2402, 2358, 2164, +2395, 2358, 2193, +2399, 2361, 2228, +2408, 2365, 2275, +2419, 2368, 2338, +2446, 2373, 2402, +2486, 2387, 2498, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2687, 2656, 1984, +2687, 2656, 1984, +2687, 2656, 1984, +2687, 2656, 1984, +2687, 2656, 1984, +2687, 2656, 1984, +2687, 2656, 1984, +2687, 2656, 1984, +2688, 2656, 1989, +2688, 2656, 1991, +2688, 2656, 1992, +2689, 2656, 1995, +2690, 2656, 1999, +2690, 2657, 2008, +2688, 2657, 2023, +2688, 2657, 2054, +2688, 2658, 2083, +2688, 2659, 2149, +2689, 2659, 2227, +2696, 2667, 2323, +2703, 2668, 2417, +2722, 2681, 2534, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +1906, 311, 1618, +1906, 316, 1619, +1906, 322, 1620, +1906, 330, 1621, +1905, 342, 1623, +1905, 356, 1626, +1905, 374, 1630, +1904, 398, 1634, +1903, 427, 1640, +1901, 464, 1648, +1904, 471, 1670, +1909, 471, 1700, +1914, 464, 1736, +1910, 152, 1775, +1903, 63, 1817, +1900, 481, 1880, +1885, 481, 1958, +1866, 624, 2053, +1837, 927, 2156, +1786, 933, 2261, +1818, 679, 2380, +1933, 0, 2471, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1906, 330, 1619, +1907, 325, 1621, +1906, 332, 1622, +1906, 340, 1623, +1906, 351, 1625, +1905, 365, 1628, +1905, 383, 1631, +1904, 406, 1636, +1903, 435, 1642, +1901, 471, 1650, +1904, 478, 1672, +1910, 478, 1702, +1915, 478, 1736, +1910, 179, 1776, +1903, 95, 1817, +1900, 491, 1880, +1885, 491, 1958, +1866, 631, 2054, +1837, 928, 2156, +1786, 935, 2261, +1818, 681, 2380, +1933, 0, 2471, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1906, 354, 1621, +1907, 350, 1622, +1907, 344, 1624, +1907, 352, 1625, +1906, 362, 1627, +1906, 376, 1630, +1905, 393, 1633, +1904, 416, 1638, +1903, 444, 1644, +1902, 480, 1652, +1905, 486, 1674, +1910, 486, 1704, +1915, 486, 1738, +1910, 212, 1777, +1904, 135, 1818, +1900, 504, 1881, +1885, 504, 1959, +1866, 640, 2054, +1837, 930, 2156, +1787, 936, 2261, +1819, 684, 2380, +1933, 0, 2471, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1906, 384, 1623, +1907, 381, 1624, +1907, 375, 1626, +1907, 367, 1628, +1907, 377, 1630, +1906, 391, 1633, +1905, 408, 1636, +1905, 430, 1641, +1904, 457, 1647, +1902, 491, 1655, +1905, 498, 1676, +1911, 498, 1706, +1915, 498, 1740, +1910, 253, 1778, +1904, 183, 1819, +1900, 520, 1882, +1885, 520, 1960, +1866, 653, 2055, +1838, 932, 2156, +1787, 939, 2261, +1819, 688, 2381, +1933, 0, 2471, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1906, 422, 1625, +1907, 419, 1626, +1907, 413, 1628, +1907, 406, 1631, +1908, 397, 1634, +1907, 409, 1636, +1906, 426, 1640, +1905, 447, 1644, +1904, 473, 1650, +1903, 507, 1658, +1906, 513, 1680, +1911, 513, 1709, +1916, 513, 1743, +1911, 303, 1780, +1904, 241, 1821, +1899, 542, 1884, +1886, 542, 1962, +1866, 669, 2056, +1838, 935, 2156, +1788, 941, 2261, +1820, 693, 2381, +1933, 0, 2471, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1906, 468, 1629, +1907, 465, 1630, +1907, 460, 1632, +1907, 454, 1634, +1908, 445, 1637, +1908, 434, 1641, +1907, 449, 1645, +1906, 469, 1649, +1905, 495, 1655, +1904, 526, 1663, +1907, 533, 1684, +1912, 533, 1713, +1917, 533, 1747, +1911, 362, 1783, +1905, 308, 1823, +1899, 569, 1886, +1886, 569, 1964, +1866, 690, 2057, +1839, 939, 2157, +1789, 945, 2262, +1821, 700, 2381, +1933, 10, 2471, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1906, 523, 1633, +1907, 520, 1635, +1907, 516, 1636, +1907, 511, 1639, +1908, 503, 1642, +1908, 493, 1646, +1908, 479, 1651, +1908, 498, 1656, +1907, 521, 1662, +1905, 551, 1669, +1908, 557, 1690, +1913, 557, 1719, +1918, 557, 1753, +1912, 430, 1786, +1905, 384, 1826, +1898, 602, 1888, +1887, 602, 1966, +1866, 716, 2059, +1839, 944, 2157, +1791, 950, 2262, +1823, 708, 2381, +1933, 84, 2470, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1906, 588, 1640, +1907, 585, 1641, +1907, 582, 1643, +1907, 577, 1645, +1908, 570, 1648, +1908, 562, 1652, +1908, 550, 1657, +1909, 533, 1664, +1908, 555, 1670, +1907, 583, 1678, +1910, 588, 1698, +1915, 588, 1727, +1920, 588, 1759, +1913, 508, 1790, +1906, 470, 1830, +1897, 644, 1892, +1888, 644, 1970, +1866, 749, 2061, +1840, 951, 2157, +1793, 957, 2263, +1825, 720, 2382, +1933, 167, 2470, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1906, 662, 1647, +1907, 660, 1649, +1907, 657, 1650, +1907, 653, 1653, +1908, 647, 1655, +1908, 640, 1659, +1908, 629, 1665, +1909, 615, 1672, +1911, 596, 1681, +1909, 622, 1689, +1912, 627, 1708, +1917, 627, 1736, +1922, 627, 1769, +1913, 595, 1796, +1907, 563, 1835, +1896, 695, 1896, +1889, 695, 1975, +1866, 789, 2064, +1841, 960, 2158, +1796, 966, 2263, +1827, 735, 2383, +1933, 330, 2471, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1906, 745, 1658, +1907, 743, 1659, +1907, 741, 1661, +1907, 737, 1663, +1908, 733, 1666, +1908, 727, 1670, +1908, 718, 1675, +1909, 707, 1682, +1911, 691, 1691, +1912, 669, 1703, +1915, 674, 1722, +1920, 674, 1749, +1925, 674, 1780, +1915, 674, 1805, +1909, 665, 1842, +1894, 754, 1903, +1887, 754, 1980, +1866, 838, 2069, +1843, 972, 2159, +1800, 977, 2264, +1831, 754, 2384, +1933, 489, 2472, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +1910, 819, 1677, +1910, 817, 1678, +1910, 815, 1680, +1911, 812, 1682, +1911, 809, 1685, +1911, 803, 1689, +1912, 796, 1693, +1913, 787, 1700, +1914, 773, 1708, +1915, 755, 1720, +1915, 772, 1732, +1921, 772, 1758, +1925, 772, 1789, +1916, 772, 1813, +1909, 792, 1855, +1894, 863, 1914, +1887, 875, 1990, +1865, 911, 2073, +1841, 1000, 2165, +1800, 1040, 2269, +1833, 798, 2384, +1931, 640, 2472, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +1915, 898, 1703, +1915, 897, 1704, +1915, 895, 1705, +1915, 893, 1707, +1916, 890, 1710, +1916, 885, 1713, +1917, 879, 1718, +1918, 871, 1724, +1919, 860, 1732, +1920, 845, 1743, +1921, 860, 1755, +1921, 885, 1769, +1925, 885, 1799, +1916, 885, 1823, +1909, 925, 1873, +1894, 979, 1929, +1887, 1007, 2002, +1862, 997, 2078, +1838, 1037, 2174, +1800, 1121, 2277, +1843, 837, 2383, +1928, 785, 2473, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +1922, 997, 1735, +1922, 998, 1736, +1922, 997, 1737, +1922, 995, 1739, +1923, 993, 1741, +1923, 989, 1745, +1924, 984, 1749, +1925, 978, 1755, +1926, 969, 1763, +1927, 958, 1772, +1927, 969, 1783, +1927, 989, 1797, +1926, 1011, 1816, +1917, 1011, 1839, +1910, 1049, 1891, +1895, 1094, 1949, +1888, 1137, 2019, +1859, 1095, 2086, +1833, 1102, 2184, +1802, 1203, 2287, +1856, 905, 2383, +1926, 942, 2474, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +1931, 1121, 1774, +1931, 1122, 1775, +1931, 1123, 1776, +1932, 1124, 1778, +1932, 1126, 1780, +1932, 1129, 1783, +1933, 1132, 1787, +1934, 1137, 1793, +1935, 1143, 1800, +1936, 1145, 1809, +1936, 1152, 1819, +1936, 1166, 1832, +1935, 1181, 1849, +1921, 1181, 1881, +1914, 1207, 1928, +1905, 1197, 1974, +1898, 1248, 2038, +1870, 1219, 2099, +1827, 1224, 2189, +1814, 1266, 2289, +1856, 1137, 2381, +1933, 1139, 2475, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +1943, 1312, 1836, +1943, 1312, 1837, +1943, 1313, 1838, +1943, 1314, 1839, +1944, 1315, 1841, +1944, 1317, 1844, +1945, 1319, 1847, +1945, 1322, 1852, +1946, 1326, 1858, +1948, 1331, 1866, +1945, 1332, 1875, +1940, 1332, 1886, +1936, 1339, 1902, +1923, 1339, 1930, +1915, 1358, 1965, +1906, 1343, 2006, +1889, 1364, 2062, +1872, 1381, 2136, +1826, 1367, 2210, +1822, 1339, 2296, +1868, 1258, 2382, +1955, 1262, 2478, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +1969, 1458, 1884, +1969, 1458, 1884, +1968, 1458, 1885, +1968, 1458, 1887, +1968, 1458, 1888, +1968, 1458, 1890, +1967, 1458, 1892, +1966, 1458, 1896, +1965, 1458, 1900, +1964, 1458, 1906, +1962, 1458, 1913, +1957, 1458, 1924, +1950, 1459, 1938, +1941, 1472, 1960, +1934, 1487, 1991, +1937, 1461, 2031, +1908, 1472, 2078, +1899, 1508, 2159, +1871, 1507, 2226, +1869, 1459, 2304, +1906, 1424, 2382, +1989, 1433, 2480, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +1995, 1625, 1959, +1995, 1625, 1960, +1995, 1625, 1961, +1995, 1626, 1962, +1995, 1626, 1963, +1994, 1627, 1965, +1994, 1628, 1968, +1993, 1630, 1972, +1992, 1632, 1976, +1991, 1632, 1982, +1990, 1632, 1987, +1990, 1632, 1993, +1990, 1632, 2002, +1989, 1633, 2018, +1978, 1635, 2038, +1968, 1630, 2070, +1945, 1650, 2122, +1941, 1635, 2175, +1926, 1623, 2233, +1921, 1624, 2309, +1947, 1613, 2388, +2014, 1610, 2474, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2048, 1766, 1996, +2048, 1766, 1996, +2048, 1766, 1996, +2048, 1766, 1997, +2048, 1766, 1998, +2048, 1766, 1999, +2048, 1766, 2000, +2048, 1766, 2002, +2048, 1766, 2006, +2048, 1766, 2009, +2048, 1766, 2014, +2048, 1766, 2020, +2048, 1767, 2029, +2044, 1773, 2043, +2040, 1782, 2061, +2029, 1792, 2098, +2027, 1783, 2138, +1997, 1783, 2185, +1996, 1799, 2243, +1996, 1791, 2315, +2012, 1789, 2391, +2075, 1804, 2478, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2118, 1947, 2038, +2118, 1947, 2038, +2118, 1947, 2039, +2118, 1947, 2039, +2118, 1948, 2040, +2119, 1948, 2041, +2119, 1948, 2042, +2120, 1949, 2044, +2120, 1950, 2047, +2121, 1951, 2050, +2120, 1952, 2054, +2119, 1952, 2060, +2117, 1952, 2068, +2111, 1952, 2078, +2102, 1952, 2094, +2100, 1957, 2116, +2094, 1953, 2146, +2078, 1951, 2186, +2073, 1951, 2247, +2076, 1958, 2318, +2097, 1963, 2398, +2161, 1972, 2478, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2223, 2127, 2077, +2223, 2127, 2077, +2223, 2127, 2077, +2223, 2128, 2078, +2223, 2128, 2078, +2223, 2128, 2078, +2223, 2128, 2079, +2223, 2129, 2080, +2223, 2130, 2082, +2223, 2131, 2084, +2221, 2130, 2088, +2219, 2128, 2093, +2216, 2127, 2099, +2213, 2127, 2109, +2210, 2127, 2121, +2206, 2127, 2136, +2216, 2126, 2162, +2212, 2127, 2204, +2215, 2139, 2260, +2222, 2139, 2318, +2237, 2143, 2401, +2282, 2159, 2486, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2426, 2364, 2124, +2426, 2364, 2124, +2426, 2364, 2124, +2426, 2364, 2125, +2426, 2364, 2125, +2426, 2364, 2126, +2426, 2364, 2126, +2426, 2364, 2127, +2426, 2364, 2129, +2426, 2364, 2131, +2426, 2364, 2132, +2426, 2363, 2135, +2427, 2362, 2138, +2429, 2364, 2138, +2428, 2365, 2146, +2427, 2363, 2161, +2428, 2366, 2187, +2427, 2369, 2230, +2430, 2369, 2278, +2430, 2368, 2333, +2463, 2376, 2405, +2502, 2392, 2495, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2694, 2658, 1982, +2694, 2658, 1982, +2694, 2658, 1982, +2694, 2658, 1981, +2694, 2658, 1981, +2694, 2658, 1979, +2693, 2657, 1979, +2693, 2657, 1977, +2693, 2657, 1978, +2693, 2657, 1979, +2693, 2658, 1988, +2694, 2659, 2001, +2694, 2660, 2015, +2696, 2660, 2021, +2695, 2657, 2016, +2695, 2660, 2055, +2697, 2662, 2117, +2697, 2663, 2170, +2697, 2666, 2245, +2701, 2667, 2320, +2711, 2672, 2426, +2725, 2685, 2539, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2036, 810, 1881, +2036, 808, 1882, +2036, 806, 1882, +2036, 803, 1883, +2037, 799, 1884, +2037, 794, 1886, +2037, 787, 1887, +2038, 777, 1890, +2039, 763, 1894, +2040, 745, 1898, +2042, 718, 1904, +2043, 681, 1912, +2044, 657, 1923, +2037, 657, 1946, +2028, 657, 1974, +2025, 726, 2020, +2019, 820, 2081, +1994, 874, 2146, +1993, 810, 2228, +2002, 0, 2298, +2010, 0, 2382, +2069, 0, 2474, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2036, 813, 1881, +2036, 813, 1882, +2036, 811, 1883, +2036, 808, 1884, +2037, 804, 1884, +2037, 799, 1886, +2037, 791, 1888, +2038, 782, 1891, +2039, 769, 1894, +2040, 750, 1898, +2042, 724, 1905, +2043, 687, 1912, +2044, 666, 1924, +2037, 666, 1946, +2028, 666, 1974, +2024, 730, 2021, +2019, 824, 2081, +1994, 876, 2146, +1994, 812, 2228, +2002, 0, 2298, +2010, 0, 2382, +2069, 0, 2474, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2037, 817, 1881, +2036, 817, 1882, +2036, 817, 1883, +2036, 814, 1884, +2037, 810, 1885, +2037, 805, 1887, +2037, 798, 1888, +2038, 789, 1891, +2039, 776, 1894, +2040, 757, 1899, +2042, 732, 1905, +2043, 695, 1913, +2044, 675, 1924, +2037, 678, 1946, +2028, 678, 1974, +2024, 735, 2021, +2019, 831, 2081, +1994, 877, 2146, +1994, 814, 2228, +2002, 0, 2298, +2010, 0, 2382, +2069, 0, 2474, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2037, 823, 1882, +2037, 823, 1883, +2037, 823, 1884, +2036, 823, 1885, +2037, 819, 1886, +2037, 814, 1887, +2037, 807, 1889, +2038, 797, 1892, +2039, 785, 1895, +2040, 767, 1900, +2042, 742, 1906, +2043, 706, 1914, +2044, 686, 1925, +2038, 693, 1947, +2028, 693, 1975, +2024, 742, 2022, +2020, 839, 2082, +1995, 880, 2146, +1995, 817, 2228, +2003, 0, 2298, +2010, 0, 2382, +2069, 0, 2474, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2037, 830, 1882, +2037, 830, 1883, +2037, 830, 1884, +2037, 830, 1885, +2037, 830, 1887, +2037, 825, 1888, +2037, 818, 1891, +2038, 809, 1893, +2039, 797, 1897, +2040, 779, 1901, +2042, 755, 1907, +2043, 721, 1915, +2044, 701, 1926, +2038, 713, 1948, +2029, 713, 1976, +2024, 751, 2023, +2020, 850, 2082, +1995, 883, 2147, +1996, 821, 2228, +2004, 0, 2298, +2011, 0, 2383, +2069, 0, 2474, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2038, 840, 1883, +2038, 840, 1884, +2038, 840, 1884, +2037, 840, 1886, +2037, 840, 1887, +2037, 840, 1890, +2037, 833, 1892, +2038, 825, 1894, +2039, 813, 1898, +2040, 796, 1902, +2042, 772, 1908, +2043, 739, 1916, +2044, 721, 1927, +2038, 737, 1950, +2029, 737, 1977, +2023, 762, 2025, +2021, 864, 2083, +1996, 888, 2147, +1997, 826, 2228, +2005, 48, 2298, +2011, 0, 2383, +2069, 10, 2474, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2039, 853, 1883, +2039, 853, 1884, +2039, 853, 1885, +2038, 853, 1887, +2038, 853, 1888, +2038, 853, 1891, +2037, 853, 1894, +2038, 844, 1896, +2039, 833, 1900, +2040, 817, 1904, +2042, 794, 1910, +2043, 763, 1918, +2044, 745, 1929, +2039, 769, 1951, +2029, 769, 1979, +2023, 777, 2027, +2022, 882, 2084, +1997, 894, 2148, +1998, 832, 2227, +2006, 147, 2298, +2011, 89, 2384, +2069, 84, 2473, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2040, 869, 1884, +2040, 869, 1885, +2040, 869, 1886, +2040, 869, 1887, +2039, 869, 1889, +2039, 869, 1891, +2039, 869, 1894, +2038, 869, 1899, +2039, 858, 1902, +2040, 843, 1907, +2042, 822, 1913, +2043, 792, 1920, +2044, 776, 1932, +2039, 807, 1954, +2030, 807, 1981, +2022, 797, 2029, +2023, 905, 2085, +1998, 901, 2149, +2000, 841, 2227, +2007, 253, 2298, +2012, 208, 2384, +2069, 167, 2473, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2042, 890, 1885, +2042, 890, 1886, +2042, 890, 1887, +2041, 890, 1888, +2041, 890, 1890, +2041, 890, 1893, +2040, 890, 1896, +2040, 890, 1900, +2039, 890, 1905, +2040, 876, 1910, +2042, 857, 1916, +2043, 829, 1924, +2044, 814, 1935, +2040, 854, 1957, +2031, 854, 1984, +2021, 822, 2032, +2025, 934, 2086, +2000, 911, 2150, +2003, 852, 2226, +2009, 364, 2298, +2013, 329, 2385, +2069, 258, 2473, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2044, 917, 1887, +2044, 917, 1887, +2044, 917, 1889, +2043, 917, 1890, +2043, 917, 1892, +2043, 917, 1894, +2042, 917, 1897, +2042, 917, 1901, +2041, 917, 1907, +2040, 917, 1914, +2042, 899, 1920, +2043, 874, 1928, +2044, 861, 1939, +2041, 906, 1961, +2032, 910, 1988, +2020, 853, 2037, +2024, 959, 2090, +2002, 924, 2152, +2007, 867, 2226, +2011, 480, 2298, +2014, 453, 2386, +2069, 358, 2472, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2047, 951, 1889, +2047, 951, 1890, +2047, 951, 1891, +2047, 951, 1892, +2046, 951, 1894, +2046, 951, 1896, +2045, 951, 1899, +2045, 951, 1903, +2044, 951, 1909, +2043, 951, 1916, +2042, 951, 1926, +2043, 928, 1933, +2044, 916, 1944, +2041, 956, 1966, +2033, 976, 1993, +2021, 913, 2042, +2022, 990, 2095, +2006, 968, 2154, +2012, 886, 2225, +2014, 599, 2298, +2016, 579, 2387, +2069, 463, 2472, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2051, 992, 1892, +2051, 992, 1892, +2051, 992, 1894, +2050, 992, 1895, +2050, 992, 1897, +2050, 992, 1899, +2049, 992, 1902, +2049, 992, 1906, +2048, 992, 1912, +2047, 992, 1919, +2045, 992, 1928, +2043, 992, 1941, +2044, 981, 1951, +2041, 1016, 1973, +2035, 1052, 1999, +2023, 999, 2048, +2020, 1028, 2102, +2010, 1027, 2157, +2018, 910, 2223, +2019, 722, 2298, +2019, 682, 2389, +2069, 575, 2471, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2055, 1051, 1898, +2055, 1052, 1899, +2055, 1052, 1900, +2055, 1052, 1902, +2054, 1052, 1903, +2054, 1052, 1905, +2054, 1052, 1909, +2053, 1052, 1913, +2052, 1052, 1918, +2051, 1052, 1925, +2050, 1052, 1935, +2048, 1052, 1947, +2047, 1053, 1963, +2043, 1083, 1983, +2038, 1120, 2010, +2027, 1089, 2055, +2019, 1074, 2110, +2016, 1091, 2162, +2024, 958, 2224, +2023, 859, 2299, +2024, 795, 2391, +2069, 729, 2471, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2065, 1109, 1913, +2065, 1110, 1913, +2065, 1112, 1915, +2065, 1113, 1916, +2064, 1115, 1918, +2063, 1118, 1921, +2063, 1121, 1924, +2061, 1126, 1929, +2060, 1132, 1936, +2058, 1137, 1943, +2057, 1137, 1952, +2055, 1137, 1964, +2053, 1137, 1979, +2053, 1164, 1999, +2049, 1195, 2025, +2041, 1167, 2059, +2028, 1112, 2110, +2027, 1145, 2168, +2024, 1061, 2228, +2023, 1050, 2301, +2024, 973, 2387, +2069, 983, 2473, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2079, 1177, 1931, +2078, 1178, 1932, +2078, 1179, 1933, +2078, 1180, 1934, +2077, 1182, 1936, +2077, 1184, 1939, +2076, 1187, 1942, +2075, 1191, 1947, +2073, 1196, 1953, +2071, 1204, 1961, +2068, 1213, 1971, +2065, 1225, 1985, +2062, 1230, 2000, +2062, 1252, 2020, +2062, 1280, 2044, +2056, 1256, 2073, +2047, 1209, 2114, +2037, 1182, 2169, +2024, 1169, 2235, +2023, 1221, 2303, +2029, 1152, 2384, +2060, 1207, 2475, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2099, 1357, 1955, +2099, 1357, 1955, +2099, 1357, 1955, +2099, 1357, 1956, +2098, 1357, 1957, +2098, 1357, 1958, +2097, 1357, 1960, +2096, 1357, 1962, +2094, 1357, 1965, +2093, 1357, 1969, +2090, 1361, 1977, +2086, 1370, 1990, +2083, 1381, 2008, +2080, 1396, 2034, +2079, 1416, 2059, +2078, 1420, 2093, +2067, 1399, 2124, +2059, 1381, 2174, +2045, 1359, 2234, +2030, 1417, 2304, +2051, 1393, 2388, +2070, 1417, 2476, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2118, 1561, 1978, +2118, 1561, 1978, +2118, 1561, 1979, +2118, 1561, 1980, +2119, 1561, 1982, +2119, 1561, 1984, +2119, 1561, 1986, +2120, 1561, 1990, +2120, 1561, 1994, +2119, 1561, 1998, +2116, 1561, 2003, +2113, 1561, 2009, +2109, 1560, 2018, +2103, 1553, 2032, +2099, 1566, 2064, +2098, 1570, 2096, +2095, 1587, 2145, +2080, 1579, 2177, +2077, 1562, 2236, +2046, 1604, 2305, +2071, 1614, 2389, +2114, 1600, 2477, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2134, 1765, 2000, +2134, 1765, 2001, +2134, 1766, 2001, +2134, 1766, 2002, +2134, 1767, 2003, +2134, 1767, 2004, +2134, 1768, 2005, +2134, 1769, 2007, +2134, 1771, 2010, +2134, 1772, 2014, +2135, 1773, 2021, +2137, 1773, 2031, +2138, 1773, 2045, +2138, 1767, 2062, +2131, 1758, 2076, +2129, 1756, 2098, +2124, 1756, 2137, +2121, 1783, 2193, +2113, 1774, 2243, +2086, 1783, 2307, +2096, 1787, 2390, +2148, 1816, 2480, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2181, 1956, 2056, +2181, 1956, 2057, +2181, 1956, 2057, +2182, 1956, 2057, +2182, 1955, 2057, +2182, 1955, 2057, +2182, 1955, 2058, +2183, 1954, 2058, +2183, 1953, 2059, +2184, 1951, 2060, +2185, 1950, 2062, +2187, 1947, 2063, +2188, 1945, 2068, +2188, 1950, 2081, +2188, 1955, 2098, +2191, 1957, 2124, +2187, 1958, 2158, +2166, 1958, 2197, +2157, 1958, 2256, +2157, 1958, 2315, +2170, 1965, 2391, +2214, 1983, 2481, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2280, 2135, 2094, +2279, 2135, 2094, +2279, 2135, 2094, +2279, 2135, 2093, +2279, 2135, 2093, +2279, 2135, 2093, +2278, 2135, 2093, +2278, 2135, 2092, +2278, 2135, 2091, +2277, 2135, 2090, +2276, 2135, 2089, +2275, 2135, 2087, +2273, 2135, 2088, +2271, 2132, 2104, +2268, 2128, 2124, +2265, 2127, 2141, +2261, 2127, 2163, +2267, 2131, 2204, +2267, 2143, 2274, +2279, 2151, 2326, +2302, 2151, 2402, +2336, 2169, 2486, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2461, 2367, 2129, +2461, 2367, 2129, +2461, 2367, 2129, +2460, 2367, 2129, +2460, 2367, 2129, +2460, 2367, 2129, +2460, 2367, 2129, +2459, 2367, 2129, +2458, 2367, 2129, +2457, 2367, 2129, +2456, 2367, 2129, +2456, 2367, 2131, +2456, 2368, 2135, +2457, 2370, 2144, +2458, 2370, 2155, +2459, 2368, 2173, +2458, 2367, 2191, +2459, 2372, 2228, +2457, 2374, 2273, +2469, 2375, 2338, +2498, 2390, 2405, +2539, 2403, 2489, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2709, 2666, 2040, +2709, 2666, 2040, +2709, 2665, 2040, +2709, 2665, 2040, +2709, 2665, 2040, +2709, 2665, 2040, +2709, 2665, 2040, +2710, 2664, 2040, +2710, 2664, 2039, +2710, 2664, 2038, +2710, 2664, 2037, +2710, 2663, 2035, +2710, 2663, 2036, +2709, 2665, 2056, +2708, 2668, 2074, +2708, 2667, 2090, +2708, 2666, 2122, +2710, 2669, 2190, +2713, 2675, 2273, +2712, 2672, 2336, +2722, 2681, 2446, +2732, 2688, 2548, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2203, 0, 1962, +2203, 0, 1963, +2203, 0, 1963, +2203, 0, 1964, +2202, 0, 1966, +2202, 0, 1967, +2202, 0, 1969, +2202, 0, 1972, +2201, 0, 1976, +2200, 0, 1981, +2199, 0, 1988, +2198, 0, 1996, +2196, 0, 2008, +2194, 0, 2027, +2190, 0, 2051, +2189, 0, 2090, +2187, 0, 2135, +2178, 0, 2178, +2160, 0, 2231, +2145, 0, 2305, +2169, 0, 2389, +2195, 0, 2474, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2203, 0, 1962, +2203, 0, 1963, +2203, 0, 1963, +2203, 0, 1965, +2202, 0, 1966, +2202, 0, 1967, +2202, 0, 1969, +2202, 0, 1972, +2201, 0, 1976, +2200, 0, 1981, +2199, 0, 1988, +2198, 0, 1997, +2196, 0, 2008, +2194, 0, 2027, +2190, 0, 2051, +2189, 0, 2090, +2187, 0, 2135, +2178, 0, 2178, +2160, 0, 2231, +2145, 0, 2305, +2169, 0, 2389, +2195, 0, 2474, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2203, 0, 1962, +2203, 0, 1963, +2203, 0, 1964, +2203, 0, 1965, +2202, 0, 1966, +2202, 0, 1968, +2202, 0, 1970, +2202, 0, 1973, +2201, 0, 1976, +2200, 0, 1981, +2199, 0, 1988, +2198, 0, 1997, +2196, 0, 2008, +2194, 0, 2026, +2190, 0, 2051, +2189, 0, 2090, +2187, 0, 2135, +2178, 0, 2178, +2161, 0, 2231, +2146, 0, 2305, +2169, 0, 2389, +2195, 0, 2474, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2203, 0, 1963, +2203, 0, 1963, +2203, 0, 1964, +2203, 0, 1965, +2202, 0, 1966, +2202, 0, 1968, +2202, 0, 1970, +2202, 0, 1973, +2201, 0, 1977, +2200, 0, 1982, +2199, 0, 1988, +2198, 0, 1997, +2196, 0, 2008, +2194, 0, 2026, +2190, 0, 2050, +2189, 0, 2090, +2187, 0, 2135, +2178, 0, 2178, +2161, 0, 2232, +2146, 0, 2305, +2169, 0, 2389, +2195, 0, 2474, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2202, 0, 1963, +2202, 0, 1963, +2202, 0, 1964, +2202, 0, 1965, +2202, 0, 1966, +2202, 0, 1968, +2202, 0, 1970, +2202, 0, 1973, +2201, 0, 1977, +2200, 0, 1982, +2199, 0, 1989, +2198, 0, 1997, +2196, 0, 2009, +2194, 0, 2026, +2190, 0, 2050, +2188, 0, 2090, +2187, 0, 2136, +2178, 0, 2178, +2161, 0, 2232, +2147, 0, 2305, +2169, 0, 2389, +2195, 0, 2474, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2202, 0, 1963, +2202, 0, 1964, +2202, 0, 1965, +2202, 0, 1966, +2202, 0, 1967, +2202, 0, 1969, +2202, 0, 1970, +2202, 0, 1973, +2201, 0, 1977, +2200, 0, 1982, +2199, 0, 1989, +2198, 0, 1998, +2196, 0, 2009, +2194, 0, 2026, +2190, 0, 2050, +2188, 0, 2090, +2187, 0, 2136, +2178, 0, 2178, +2162, 0, 2232, +2148, 0, 2305, +2169, 0, 2389, +2195, 74, 2474, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2202, 0, 1964, +2202, 0, 1965, +2202, 0, 1965, +2202, 0, 1966, +2202, 0, 1968, +2202, 0, 1969, +2202, 0, 1971, +2202, 0, 1974, +2201, 0, 1978, +2200, 0, 1983, +2199, 0, 1989, +2198, 0, 1998, +2196, 0, 2010, +2194, 0, 2025, +2190, 0, 2049, +2188, 0, 2090, +2187, 0, 2137, +2178, 0, 2178, +2162, 0, 2232, +2149, 0, 2305, +2168, 0, 2389, +2196, 195, 2474, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2202, 0, 1965, +2202, 0, 1965, +2202, 0, 1966, +2202, 0, 1967, +2202, 0, 1968, +2202, 0, 1970, +2202, 0, 1972, +2202, 0, 1975, +2201, 0, 1979, +2200, 0, 1984, +2199, 0, 1990, +2198, 0, 1999, +2196, 0, 2010, +2194, 0, 2024, +2190, 0, 2049, +2188, 0, 2090, +2187, 0, 2138, +2178, 0, 2178, +2163, 0, 2233, +2150, 0, 2306, +2168, 0, 2388, +2196, 319, 2474, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2201, 0, 1966, +2201, 0, 1966, +2201, 0, 1967, +2201, 0, 1968, +2201, 0, 1969, +2201, 0, 1971, +2201, 0, 1973, +2201, 0, 1976, +2201, 0, 1979, +2200, 0, 1984, +2199, 0, 1991, +2198, 0, 2000, +2196, 0, 2011, +2194, 0, 2024, +2190, 0, 2048, +2187, 0, 2090, +2187, 0, 2140, +2178, 0, 2178, +2165, 0, 2233, +2152, 111, 2306, +2167, 0, 2388, +2195, 419, 2475, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2200, 0, 1967, +2200, 0, 1968, +2200, 0, 1968, +2200, 0, 1969, +2200, 0, 1970, +2200, 0, 1972, +2200, 0, 1974, +2200, 0, 1977, +2200, 0, 1981, +2200, 0, 1986, +2199, 0, 1993, +2198, 0, 2001, +2196, 0, 2012, +2194, 0, 2023, +2190, 0, 2047, +2186, 0, 2090, +2186, 0, 2140, +2178, 0, 2178, +2166, 0, 2234, +2155, 244, 2307, +2166, 0, 2388, +2195, 523, 2475, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 0, 1969, +2199, 0, 1969, +2199, 0, 1970, +2199, 0, 1971, +2199, 0, 1972, +2199, 0, 1974, +2199, 0, 1976, +2199, 0, 1979, +2199, 0, 1983, +2199, 0, 1988, +2199, 0, 1994, +2198, 0, 2003, +2196, 0, 2014, +2194, 0, 2025, +2190, 0, 2045, +2186, 0, 2089, +2185, 0, 2140, +2178, 0, 2180, +2169, 0, 2235, +2158, 376, 2308, +2165, 61, 2387, +2194, 633, 2476, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2198, 0, 1971, +2198, 0, 1972, +2198, 0, 1972, +2198, 0, 1973, +2198, 0, 1974, +2198, 0, 1976, +2198, 0, 1978, +2198, 0, 1981, +2198, 0, 1985, +2198, 0, 1990, +2198, 0, 1996, +2198, 0, 2005, +2196, 0, 2016, +2194, 0, 2027, +2190, 0, 2043, +2186, 0, 2087, +2183, 0, 2140, +2178, 0, 2183, +2172, 0, 2236, +2163, 508, 2309, +2167, 263, 2387, +2192, 748, 2476, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2197, 0, 1974, +2197, 0, 1974, +2197, 0, 1975, +2197, 0, 1976, +2197, 0, 1977, +2197, 0, 1979, +2197, 0, 1981, +2197, 0, 1984, +2197, 0, 1988, +2197, 0, 1993, +2197, 0, 1999, +2197, 0, 2008, +2196, 0, 2019, +2194, 0, 2030, +2190, 0, 2044, +2186, 0, 2085, +2183, 0, 2139, +2179, 0, 2186, +2175, 0, 2237, +2168, 643, 2310, +2170, 532, 2388, +2192, 890, 2477, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2200, 621, 1974, +2200, 621, 1974, +2200, 621, 1976, +2200, 621, 1977, +2200, 621, 1978, +2200, 621, 1980, +2201, 621, 1983, +2201, 621, 1986, +2202, 621, 1991, +2202, 621, 1997, +2202, 621, 2003, +2202, 621, 2012, +2202, 617, 2022, +2196, 529, 2033, +2193, 529, 2047, +2189, 621, 2082, +2185, 627, 2133, +2182, 413, 2189, +2177, 708, 2240, +2170, 828, 2310, +2173, 948, 2390, +2196, 1121, 2478, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2203, 974, 1974, +2203, 974, 1974, +2203, 974, 1976, +2203, 974, 1977, +2203, 974, 1978, +2204, 974, 1980, +2204, 974, 1983, +2204, 974, 1986, +2205, 974, 1991, +2206, 974, 1997, +2207, 974, 2005, +2208, 974, 2016, +2208, 973, 2027, +2203, 934, 2038, +2196, 877, 2052, +2192, 934, 2084, +2188, 977, 2129, +2185, 874, 2183, +2181, 1059, 2243, +2174, 996, 2310, +2175, 1202, 2391, +2206, 1271, 2478, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2208, 1278, 1984, +2208, 1279, 1985, +2208, 1279, 1986, +2208, 1281, 1986, +2209, 1282, 1987, +2209, 1284, 1988, +2209, 1286, 1990, +2209, 1289, 1992, +2210, 1294, 1995, +2211, 1299, 1998, +2212, 1302, 2005, +2213, 1302, 2016, +2214, 1300, 2030, +2212, 1282, 2047, +2206, 1256, 2063, +2201, 1278, 2090, +2194, 1321, 2134, +2193, 1308, 2182, +2182, 1327, 2241, +2178, 1331, 2310, +2182, 1416, 2391, +2214, 1452, 2477, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2220, 1531, 2004, +2220, 1531, 2004, +2220, 1531, 2004, +2220, 1532, 2005, +2220, 1533, 2006, +2220, 1534, 2007, +2220, 1535, 2008, +2220, 1537, 2010, +2220, 1540, 2013, +2221, 1543, 2017, +2222, 1547, 2021, +2223, 1553, 2027, +2224, 1559, 2037, +2222, 1557, 2051, +2218, 1543, 2073, +2214, 1535, 2102, +2208, 1550, 2140, +2199, 1572, 2190, +2195, 1558, 2240, +2192, 1577, 2310, +2192, 1604, 2393, +2223, 1653, 2476, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2241, 1755, 2023, +2241, 1755, 2023, +2241, 1755, 2024, +2241, 1755, 2024, +2241, 1755, 2025, +2241, 1755, 2025, +2241, 1755, 2026, +2241, 1755, 2028, +2241, 1755, 2029, +2241, 1755, 2031, +2241, 1758, 2036, +2241, 1761, 2042, +2240, 1765, 2049, +2240, 1765, 2063, +2238, 1765, 2080, +2237, 1764, 2104, +2229, 1762, 2147, +2223, 1755, 2193, +2223, 1765, 2244, +2223, 1774, 2315, +2215, 1795, 2391, +2250, 1824, 2482, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2268, 1946, 2048, +2268, 1946, 2049, +2269, 1946, 2049, +2269, 1946, 2050, +2269, 1946, 2051, +2269, 1946, 2051, +2270, 1946, 2053, +2270, 1946, 2054, +2270, 1946, 2057, +2271, 1946, 2060, +2272, 1946, 2064, +2273, 1946, 2070, +2274, 1945, 2077, +2274, 1945, 2087, +2274, 1945, 2099, +2271, 1951, 2124, +2268, 1961, 2158, +2265, 1963, 2203, +2273, 1968, 2256, +2261, 1969, 2321, +2271, 1965, 2394, +2310, 1995, 2482, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2351, 2143, 2087, +2351, 2143, 2087, +2351, 2143, 2087, +2351, 2143, 2088, +2351, 2143, 2088, +2351, 2143, 2089, +2351, 2143, 2091, +2351, 2143, 2092, +2351, 2143, 2094, +2351, 2143, 2097, +2351, 2143, 2101, +2351, 2143, 2106, +2351, 2143, 2112, +2351, 2143, 2115, +2351, 2143, 2119, +2351, 2143, 2141, +2349, 2146, 2174, +2346, 2147, 2214, +2351, 2143, 2263, +2356, 2159, 2326, +2362, 2167, 2401, +2402, 2189, 2492, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2515, 2384, 2126, +2514, 2384, 2127, +2514, 2384, 2127, +2514, 2384, 2127, +2514, 2383, 2127, +2514, 2383, 2127, +2514, 2383, 2128, +2514, 2383, 2128, +2514, 2382, 2129, +2513, 2382, 2130, +2513, 2381, 2131, +2513, 2381, 2133, +2514, 2382, 2135, +2515, 2384, 2141, +2515, 2385, 2150, +2515, 2388, 2172, +2515, 2388, 2195, +2520, 2388, 2230, +2523, 2391, 2279, +2523, 2395, 2342, +2548, 2407, 2404, +2582, 2421, 2483, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2731, 2680, 2128, +2731, 2680, 2129, +2731, 2680, 2129, +2731, 2680, 2130, +2731, 2680, 2131, +2731, 2681, 2132, +2731, 2681, 2133, +2731, 2681, 2135, +2731, 2681, 2136, +2730, 2681, 2137, +2730, 2681, 2138, +2729, 2680, 2140, +2728, 2679, 2142, +2728, 2679, 2150, +2730, 2679, 2164, +2731, 2678, 2176, +2730, 2679, 2195, +2730, 2680, 2243, +2735, 2682, 2308, +2735, 2687, 2382, +2739, 2689, 2468, +2750, 2708, 2581, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2331, 0, 2000, +2331, 0, 2000, +2331, 0, 2001, +2331, 0, 2001, +2331, 0, 2002, +2331, 0, 2003, +2331, 0, 2005, +2331, 0, 2007, +2331, 0, 2010, +2331, 0, 2013, +2331, 0, 2018, +2331, 0, 2024, +2330, 0, 2034, +2326, 0, 2051, +2322, 0, 2072, +2321, 0, 2094, +2320, 0, 2138, +2314, 0, 2186, +2319, 0, 2244, +2315, 0, 2315, +2317, 0, 2391, +2334, 913, 2480, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2331, 0, 2000, +2331, 0, 2000, +2331, 0, 2001, +2331, 0, 2001, +2331, 0, 2002, +2331, 0, 2003, +2331, 0, 2005, +2331, 0, 2007, +2331, 0, 2010, +2331, 0, 2013, +2331, 0, 2018, +2331, 0, 2024, +2330, 0, 2034, +2326, 0, 2051, +2322, 0, 2072, +2321, 0, 2094, +2320, 0, 2138, +2315, 0, 2186, +2319, 0, 2245, +2315, 0, 2315, +2317, 0, 2392, +2334, 917, 2480, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2331, 0, 2000, +2331, 0, 2000, +2331, 0, 2001, +2331, 0, 2001, +2331, 0, 2002, +2331, 0, 2003, +2331, 0, 2005, +2331, 0, 2007, +2331, 0, 2010, +2331, 0, 2013, +2331, 0, 2018, +2330, 0, 2024, +2329, 0, 2034, +2326, 0, 2051, +2322, 0, 2072, +2321, 0, 2095, +2320, 0, 2138, +2315, 0, 2186, +2319, 0, 2245, +2315, 0, 2315, +2317, 0, 2392, +2334, 922, 2479, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2331, 0, 2000, +2331, 0, 2000, +2331, 0, 2001, +2331, 0, 2001, +2331, 0, 2002, +2331, 0, 2003, +2331, 0, 2005, +2331, 0, 2007, +2331, 0, 2010, +2331, 0, 2013, +2331, 0, 2018, +2330, 0, 2024, +2329, 0, 2034, +2326, 0, 2052, +2322, 0, 2072, +2321, 0, 2095, +2321, 0, 2138, +2315, 0, 2186, +2319, 0, 2245, +2315, 0, 2315, +2317, 0, 2392, +2334, 929, 2479, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2331, 0, 2000, +2331, 0, 2000, +2331, 0, 2001, +2331, 0, 2001, +2331, 0, 2002, +2331, 0, 2003, +2331, 0, 2005, +2331, 0, 2007, +2331, 0, 2010, +2331, 0, 2013, +2331, 0, 2018, +2330, 0, 2024, +2329, 0, 2034, +2326, 0, 2052, +2322, 0, 2072, +2321, 0, 2095, +2321, 0, 2138, +2315, 0, 2186, +2319, 0, 2245, +2315, 0, 2315, +2317, 0, 2392, +2334, 938, 2479, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2331, 0, 2000, +2331, 0, 2000, +2331, 0, 2001, +2331, 0, 2001, +2330, 0, 2002, +2330, 0, 2003, +2330, 0, 2005, +2330, 0, 2007, +2330, 0, 2010, +2330, 0, 2013, +2330, 0, 2018, +2330, 0, 2024, +2329, 0, 2034, +2326, 0, 2052, +2322, 0, 2073, +2321, 0, 2095, +2322, 0, 2138, +2315, 0, 2186, +2318, 0, 2245, +2315, 30, 2315, +2317, 0, 2392, +2334, 949, 2479, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2331, 0, 2000, +2330, 0, 2000, +2330, 0, 2001, +2330, 0, 2001, +2330, 0, 2002, +2330, 0, 2003, +2330, 0, 2005, +2330, 0, 2007, +2330, 0, 2010, +2330, 0, 2013, +2330, 0, 2018, +2329, 0, 2024, +2328, 0, 2034, +2327, 0, 2053, +2323, 0, 2073, +2321, 0, 2096, +2322, 0, 2139, +2315, 0, 2186, +2318, 0, 2245, +2315, 163, 2315, +2317, 32, 2392, +2334, 964, 2478, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2330, 0, 2000, +2330, 0, 2000, +2330, 0, 2001, +2330, 0, 2001, +2330, 0, 2002, +2330, 0, 2003, +2329, 0, 2005, +2329, 0, 2007, +2329, 0, 2010, +2329, 0, 2013, +2329, 0, 2018, +2328, 0, 2024, +2327, 0, 2034, +2327, 0, 2053, +2323, 0, 2073, +2321, 0, 2096, +2323, 0, 2139, +2316, 0, 2186, +2318, 0, 2246, +2315, 295, 2315, +2317, 164, 2393, +2334, 983, 2478, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2330, 0, 2000, +2330, 0, 2000, +2330, 0, 2001, +2330, 0, 2001, +2329, 0, 2002, +2329, 0, 2003, +2329, 0, 2005, +2329, 0, 2007, +2328, 0, 2010, +2328, 0, 2013, +2328, 0, 2018, +2328, 0, 2024, +2327, 0, 2034, +2327, 0, 2054, +2323, 0, 2074, +2321, 0, 2097, +2325, 0, 2140, +2316, 0, 2186, +2317, 111, 2246, +2315, 426, 2315, +2317, 296, 2393, +2334, 993, 2478, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2329, 0, 2000, +2329, 0, 2000, +2329, 0, 2001, +2329, 0, 2001, +2329, 0, 2002, +2329, 0, 2003, +2328, 0, 2005, +2328, 0, 2007, +2328, 0, 2010, +2327, 0, 2013, +2327, 0, 2018, +2326, 0, 2024, +2325, 0, 2034, +2327, 0, 2055, +2324, 0, 2075, +2321, 0, 2098, +2325, 0, 2141, +2317, 0, 2186, +2317, 244, 2247, +2315, 559, 2315, +2317, 428, 2393, +2335, 1003, 2479, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2328, 0, 2000, +2328, 0, 2000, +2328, 0, 2001, +2328, 0, 2001, +2328, 0, 2002, +2328, 0, 2003, +2328, 0, 2005, +2327, 0, 2007, +2327, 0, 2010, +2326, 0, 2013, +2325, 0, 2018, +2325, 0, 2024, +2324, 0, 2034, +2326, 0, 2055, +2325, 61, 2077, +2322, 0, 2099, +2325, 0, 2142, +2319, 0, 2187, +2316, 376, 2248, +2315, 691, 2315, +2317, 560, 2394, +2337, 1018, 2479, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2328, 0, 2000, +2328, 0, 2000, +2328, 0, 2001, +2328, 0, 2001, +2328, 0, 2002, +2327, 0, 2003, +2327, 0, 2005, +2327, 0, 2007, +2326, 0, 2010, +2326, 0, 2013, +2325, 0, 2018, +2325, 0, 2027, +2324, 0, 2036, +2326, 0, 2057, +2327, 111, 2081, +2323, 0, 2103, +2324, 0, 2142, +2322, 0, 2190, +2315, 426, 2247, +2315, 741, 2315, +2319, 692, 2394, +2338, 1091, 2481, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2328, 0, 2000, +2328, 0, 2001, +2328, 0, 2001, +2328, 0, 2002, +2328, 0, 2003, +2328, 0, 2004, +2328, 0, 2006, +2327, 0, 2008, +2327, 0, 2011, +2326, 0, 2014, +2326, 0, 2019, +2325, 0, 2028, +2325, 0, 2040, +2327, 44, 2061, +2328, 216, 2085, +2326, 0, 2109, +2323, 0, 2139, +2324, 123, 2193, +2314, 517, 2247, +2316, 765, 2314, +2321, 843, 2393, +2340, 1204, 2482, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2332, 614, 2005, +2332, 614, 2005, +2332, 614, 2006, +2332, 614, 2007, +2332, 614, 2008, +2332, 614, 2009, +2331, 614, 2011, +2331, 614, 2014, +2331, 614, 2017, +2330, 614, 2021, +2329, 614, 2026, +2329, 614, 2035, +2329, 614, 2047, +2329, 614, 2057, +2330, 670, 2082, +2328, 727, 2109, +2321, 757, 2137, +2324, 709, 2196, +2318, 901, 2249, +2318, 868, 2316, +2319, 1072, 2391, +2342, 1300, 2483, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2336, 924, 2012, +2336, 924, 2013, +2336, 924, 2013, +2336, 924, 2014, +2335, 924, 2015, +2335, 924, 2017, +2335, 924, 2019, +2335, 924, 2021, +2335, 924, 2024, +2334, 924, 2029, +2333, 924, 2035, +2333, 924, 2042, +2333, 924, 2052, +2333, 924, 2063, +2333, 971, 2080, +2330, 1020, 2108, +2324, 1065, 2141, +2325, 1052, 2197, +2321, 1173, 2253, +2319, 1077, 2317, +2317, 1227, 2391, +2345, 1377, 2483, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2339, 1291, 2020, +2339, 1291, 2020, +2339, 1290, 2020, +2339, 1289, 2020, +2339, 1288, 2021, +2339, 1286, 2022, +2338, 1283, 2023, +2338, 1280, 2024, +2338, 1276, 2026, +2337, 1270, 2028, +2336, 1267, 2033, +2336, 1267, 2040, +2336, 1269, 2048, +2336, 1288, 2065, +2336, 1315, 2084, +2334, 1351, 2116, +2331, 1343, 2151, +2330, 1343, 2198, +2326, 1378, 2257, +2319, 1407, 2317, +2328, 1414, 2394, +2350, 1546, 2482, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2349, 1557, 2025, +2349, 1557, 2025, +2349, 1557, 2025, +2349, 1557, 2026, +2348, 1557, 2026, +2348, 1557, 2027, +2348, 1557, 2028, +2348, 1557, 2029, +2347, 1557, 2031, +2347, 1554, 2033, +2346, 1550, 2036, +2345, 1548, 2041, +2344, 1548, 2050, +2344, 1550, 2067, +2343, 1557, 2089, +2339, 1571, 2115, +2337, 1566, 2150, +2337, 1567, 2198, +2334, 1596, 2255, +2334, 1620, 2319, +2342, 1646, 2396, +2365, 1717, 2481, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2364, 1776, 2032, +2364, 1776, 2033, +2364, 1776, 2033, +2364, 1777, 2034, +2364, 1778, 2035, +2364, 1779, 2037, +2363, 1781, 2038, +2363, 1783, 2041, +2363, 1786, 2044, +2362, 1790, 2049, +2361, 1791, 2052, +2360, 1789, 2057, +2359, 1784, 2065, +2361, 1784, 2074, +2360, 1788, 2094, +2357, 1783, 2117, +2358, 1792, 2156, +2361, 1806, 2207, +2354, 1805, 2259, +2356, 1809, 2322, +2365, 1822, 2394, +2383, 1874, 2484, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2391, 1976, 2073, +2391, 1976, 2073, +2391, 1976, 2073, +2391, 1976, 2073, +2391, 1976, 2073, +2391, 1976, 2074, +2391, 1976, 2074, +2391, 1976, 2075, +2391, 1976, 2076, +2391, 1976, 2077, +2391, 1976, 2078, +2391, 1976, 2080, +2392, 1977, 2084, +2394, 1981, 2093, +2395, 1984, 2105, +2395, 1984, 2134, +2392, 1984, 2163, +2391, 1984, 2207, +2387, 1995, 2266, +2396, 1995, 2324, +2406, 2017, 2405, +2425, 2038, 2488, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2463, 2177, 2109, +2463, 2177, 2109, +2463, 2177, 2110, +2463, 2177, 2110, +2463, 2177, 2110, +2463, 2177, 2111, +2463, 2178, 2112, +2463, 2178, 2113, +2463, 2179, 2114, +2463, 2180, 2116, +2463, 2181, 2119, +2462, 2182, 2121, +2460, 2183, 2124, +2459, 2181, 2126, +2458, 2177, 2134, +2459, 2184, 2157, +2463, 2186, 2183, +2461, 2184, 2220, +2460, 2188, 2268, +2468, 2189, 2340, +2476, 2191, 2406, +2508, 2230, 2493, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2598, 2410, 2071, +2598, 2410, 2071, +2599, 2411, 2071, +2599, 2411, 2071, +2599, 2411, 2071, +2600, 2412, 2070, +2600, 2412, 2070, +2602, 2413, 2069, +2603, 2414, 2069, +2604, 2416, 2068, +2606, 2418, 2066, +2607, 2419, 2068, +2607, 2420, 2073, +2607, 2420, 2079, +2607, 2420, 2088, +2607, 2420, 2112, +2607, 2422, 2147, +2606, 2422, 2181, +2609, 2420, 2243, +2615, 2426, 2302, +2628, 2437, 2380, +2656, 2458, 2462, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2763, 2702, 2255, +2763, 2702, 2255, +2763, 2702, 2255, +2762, 2701, 2255, +2762, 2701, 2255, +2762, 2701, 2255, +2762, 2701, 2255, +2762, 2701, 2255, +2762, 2701, 2255, +2763, 2701, 2256, +2763, 2701, 2257, +2764, 2701, 2260, +2765, 2701, 2267, +2765, 2701, 2274, +2763, 2702, 2284, +2762, 2704, 2300, +2763, 2706, 2316, +2764, 2703, 2348, +2764, 2703, 2388, +2768, 2710, 2455, +2769, 2717, 2538, +2774, 2727, 2626, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2481, 974, 2044, +2481, 973, 2044, +2481, 971, 2044, +2481, 969, 2045, +2480, 967, 2045, +2480, 963, 2046, +2480, 958, 2047, +2480, 951, 2048, +2480, 951, 2051, +2480, 951, 2054, +2480, 951, 2058, +2480, 951, 2063, +2480, 955, 2072, +2479, 992, 2087, +2477, 1037, 2103, +2476, 1071, 2127, +2475, 1132, 2163, +2475, 1219, 2209, +2476, 1370, 2267, +2478, 1392, 2329, +2488, 1469, 2402, +2504, 1610, 2488, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2481, 977, 2044, +2481, 977, 2044, +2481, 976, 2044, +2480, 974, 2045, +2480, 971, 2045, +2480, 968, 2046, +2480, 963, 2047, +2480, 956, 2048, +2480, 955, 2051, +2480, 955, 2054, +2480, 955, 2058, +2480, 955, 2063, +2480, 960, 2072, +2479, 996, 2087, +2477, 1041, 2103, +2476, 1074, 2127, +2476, 1133, 2163, +2475, 1220, 2209, +2476, 1373, 2267, +2478, 1394, 2329, +2488, 1469, 2402, +2504, 1611, 2488, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2481, 982, 2044, +2481, 982, 2044, +2480, 982, 2044, +2480, 980, 2045, +2480, 977, 2045, +2480, 974, 2046, +2480, 969, 2047, +2480, 962, 2048, +2480, 962, 2051, +2480, 962, 2054, +2480, 962, 2058, +2480, 962, 2063, +2480, 966, 2072, +2479, 1002, 2087, +2477, 1046, 2103, +2476, 1079, 2127, +2476, 1136, 2162, +2475, 1221, 2209, +2476, 1377, 2267, +2478, 1397, 2329, +2488, 1469, 2402, +2504, 1611, 2488, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2481, 988, 2044, +2480, 988, 2044, +2480, 988, 2044, +2480, 988, 2045, +2480, 985, 2045, +2480, 981, 2046, +2480, 977, 2047, +2480, 970, 2048, +2480, 970, 2051, +2480, 970, 2054, +2480, 970, 2058, +2480, 970, 2063, +2480, 974, 2072, +2479, 1010, 2087, +2477, 1053, 2103, +2476, 1085, 2127, +2476, 1138, 2162, +2475, 1222, 2209, +2476, 1382, 2267, +2478, 1400, 2329, +2488, 1469, 2402, +2504, 1612, 2488, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2480, 996, 2044, +2480, 996, 2044, +2480, 996, 2044, +2480, 996, 2045, +2480, 996, 2045, +2480, 992, 2046, +2480, 987, 2047, +2480, 981, 2048, +2480, 981, 2051, +2480, 981, 2054, +2480, 981, 2058, +2480, 981, 2063, +2480, 985, 2072, +2479, 1020, 2087, +2477, 1062, 2103, +2476, 1094, 2127, +2476, 1142, 2162, +2476, 1223, 2208, +2476, 1388, 2268, +2478, 1404, 2329, +2488, 1469, 2402, +2504, 1614, 2487, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2480, 1006, 2044, +2480, 1006, 2044, +2480, 1006, 2044, +2480, 1006, 2045, +2480, 1006, 2045, +2480, 1006, 2046, +2480, 1001, 2047, +2479, 995, 2048, +2479, 995, 2051, +2479, 995, 2054, +2479, 995, 2058, +2479, 995, 2063, +2479, 999, 2072, +2479, 1032, 2087, +2477, 1074, 2103, +2476, 1105, 2127, +2476, 1147, 2162, +2476, 1225, 2208, +2476, 1397, 2268, +2478, 1409, 2329, +2488, 1469, 2401, +2503, 1615, 2487, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2480, 1019, 2044, +2480, 1019, 2044, +2480, 1019, 2044, +2480, 1019, 2045, +2480, 1019, 2045, +2480, 1019, 2046, +2479, 1019, 2047, +2479, 1013, 2048, +2479, 1013, 2051, +2479, 1013, 2054, +2479, 1013, 2058, +2479, 1013, 2063, +2479, 1017, 2072, +2479, 1049, 2087, +2477, 1089, 2103, +2475, 1119, 2127, +2476, 1154, 2161, +2476, 1228, 2208, +2477, 1408, 2268, +2477, 1417, 2329, +2488, 1469, 2401, +2503, 1618, 2486, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2480, 1036, 2044, +2480, 1036, 2044, +2480, 1036, 2044, +2480, 1036, 2045, +2480, 1036, 2045, +2479, 1036, 2046, +2479, 1036, 2047, +2479, 1036, 2048, +2479, 1036, 2051, +2479, 1036, 2054, +2479, 1036, 2058, +2479, 1036, 2063, +2479, 1039, 2072, +2478, 1070, 2087, +2476, 1108, 2103, +2475, 1137, 2127, +2477, 1162, 2161, +2476, 1232, 2207, +2477, 1423, 2268, +2477, 1426, 2329, +2488, 1469, 2401, +2503, 1621, 2486, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2480, 1071, 2044, +2480, 1071, 2044, +2480, 1071, 2044, +2480, 1071, 2045, +2480, 1071, 2045, +2479, 1071, 2046, +2479, 1071, 2047, +2479, 1071, 2048, +2479, 1044, 2051, +2479, 1044, 2054, +2479, 1044, 2058, +2479, 1044, 2063, +2479, 1048, 2072, +2479, 1085, 2087, +2477, 1122, 2103, +2476, 1149, 2126, +2478, 1179, 2161, +2476, 1241, 2208, +2477, 1424, 2268, +2478, 1436, 2329, +2488, 1480, 2401, +2504, 1627, 2485, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2480, 1115, 2044, +2480, 1115, 2044, +2480, 1115, 2044, +2480, 1115, 2045, +2480, 1115, 2045, +2479, 1115, 2046, +2479, 1115, 2047, +2479, 1115, 2048, +2479, 1091, 2051, +2479, 1054, 2054, +2479, 1054, 2058, +2479, 1054, 2063, +2479, 1058, 2072, +2479, 1099, 2087, +2478, 1138, 2103, +2476, 1165, 2125, +2478, 1193, 2160, +2477, 1254, 2209, +2477, 1424, 2266, +2479, 1448, 2329, +2488, 1495, 2401, +2504, 1635, 2485, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2480, 1169, 2044, +2480, 1169, 2044, +2480, 1169, 2044, +2480, 1169, 2045, +2480, 1169, 2045, +2479, 1169, 2046, +2479, 1169, 2047, +2479, 1169, 2048, +2479, 1147, 2051, +2479, 1114, 2054, +2479, 1067, 2058, +2479, 1067, 2063, +2479, 1070, 2072, +2479, 1111, 2087, +2479, 1159, 2103, +2478, 1185, 2125, +2480, 1212, 2159, +2478, 1278, 2209, +2477, 1424, 2264, +2480, 1464, 2329, +2488, 1514, 2402, +2505, 1646, 2485, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2480, 1231, 2044, +2480, 1231, 2044, +2480, 1231, 2044, +2480, 1231, 2045, +2480, 1231, 2045, +2479, 1231, 2046, +2479, 1231, 2047, +2479, 1231, 2048, +2479, 1212, 2051, +2479, 1184, 2054, +2479, 1144, 2058, +2479, 1083, 2063, +2479, 1087, 2072, +2479, 1126, 2087, +2481, 1186, 2103, +2479, 1210, 2125, +2481, 1236, 2158, +2479, 1308, 2209, +2477, 1424, 2262, +2481, 1485, 2329, +2488, 1542, 2402, +2507, 1660, 2485, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2480, 1299, 2045, +2480, 1299, 2045, +2480, 1299, 2045, +2480, 1299, 2046, +2480, 1299, 2046, +2480, 1299, 2047, +2480, 1299, 2048, +2479, 1299, 2049, +2479, 1283, 2051, +2479, 1259, 2054, +2479, 1225, 2059, +2479, 1174, 2064, +2479, 1114, 2072, +2480, 1151, 2087, +2481, 1213, 2103, +2481, 1244, 2125, +2483, 1268, 2156, +2481, 1346, 2209, +2477, 1430, 2260, +2483, 1511, 2329, +2489, 1583, 2403, +2509, 1680, 2486, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2482, 1385, 2049, +2482, 1385, 2049, +2482, 1384, 2049, +2482, 1384, 2050, +2482, 1382, 2050, +2482, 1381, 2051, +2482, 1379, 2052, +2481, 1376, 2053, +2482, 1366, 2055, +2482, 1349, 2058, +2482, 1321, 2063, +2482, 1281, 2068, +2482, 1235, 2076, +2482, 1263, 2087, +2484, 1312, 2103, +2484, 1330, 2127, +2485, 1346, 2157, +2483, 1386, 2211, +2480, 1472, 2262, +2483, 1568, 2328, +2492, 1634, 2404, +2509, 1714, 2486, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2484, 1508, 2049, +2484, 1507, 2049, +2484, 1507, 2049, +2484, 1506, 2050, +2484, 1506, 2050, +2484, 1504, 2051, +2483, 1503, 2052, +2483, 1501, 2053, +2483, 1493, 2055, +2484, 1482, 2058, +2485, 1467, 2063, +2485, 1445, 2068, +2485, 1416, 2076, +2486, 1436, 2087, +2488, 1470, 2103, +2487, 1479, 2127, +2487, 1478, 2157, +2484, 1484, 2208, +2487, 1547, 2268, +2485, 1642, 2328, +2495, 1671, 2406, +2509, 1751, 2486, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2490, 1632, 2052, +2490, 1632, 2052, +2490, 1632, 2053, +2490, 1632, 2054, +2490, 1632, 2054, +2490, 1632, 2056, +2490, 1632, 2057, +2490, 1632, 2060, +2490, 1628, 2062, +2491, 1623, 2066, +2491, 1613, 2070, +2492, 1598, 2075, +2493, 1580, 2082, +2492, 1580, 2091, +2493, 1600, 2105, +2492, 1613, 2131, +2491, 1631, 2162, +2489, 1632, 2206, +2493, 1658, 2265, +2493, 1730, 2328, +2499, 1742, 2404, +2518, 1813, 2489, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2502, 1784, 2071, +2502, 1784, 2071, +2502, 1784, 2071, +2502, 1784, 2072, +2502, 1784, 2073, +2502, 1784, 2073, +2502, 1784, 2075, +2502, 1784, 2077, +2502, 1779, 2078, +2502, 1774, 2081, +2503, 1769, 2085, +2503, 1762, 2090, +2504, 1754, 2098, +2504, 1757, 2107, +2503, 1757, 2115, +2502, 1754, 2140, +2499, 1757, 2175, +2500, 1778, 2215, +2501, 1806, 2266, +2500, 1817, 2326, +2509, 1832, 2402, +2528, 1891, 2490, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2516, 1927, 2075, +2516, 1928, 2075, +2516, 1928, 2075, +2516, 1928, 2076, +2516, 1928, 2076, +2517, 1929, 2077, +2517, 1929, 2078, +2517, 1930, 2079, +2517, 1930, 2081, +2516, 1930, 2084, +2516, 1924, 2087, +2515, 1913, 2090, +2514, 1901, 2096, +2516, 1900, 2105, +2517, 1912, 2120, +2515, 1910, 2143, +2514, 1921, 2180, +2513, 1918, 2218, +2516, 1938, 2272, +2518, 1938, 2333, +2528, 1977, 2406, +2552, 2008, 2491, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2547, 2073, 2093, +2547, 2073, 2093, +2547, 2073, 2093, +2546, 2073, 2093, +2546, 2073, 2094, +2546, 2073, 2094, +2545, 2073, 2095, +2545, 2073, 2096, +2545, 2073, 2098, +2545, 2073, 2100, +2545, 2073, 2102, +2545, 2073, 2106, +2545, 2073, 2111, +2545, 2075, 2119, +2543, 2075, 2127, +2543, 2078, 2149, +2543, 2075, 2180, +2546, 2089, 2222, +2546, 2091, 2274, +2551, 2098, 2337, +2558, 2115, 2411, +2588, 2155, 2491, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2602, 2259, 2099, +2602, 2258, 2099, +2602, 2258, 2099, +2602, 2258, 2099, +2602, 2258, 2099, +2601, 2258, 2099, +2600, 2258, 2099, +2600, 2257, 2099, +2600, 2257, 2101, +2600, 2257, 2104, +2600, 2257, 2108, +2600, 2257, 2113, +2600, 2257, 2120, +2603, 2257, 2132, +2606, 2257, 2144, +2606, 2263, 2161, +2611, 2270, 2190, +2606, 2266, 2226, +2612, 2277, 2289, +2615, 2277, 2347, +2621, 2290, 2414, +2651, 2318, 2497, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2722, 2488, 1839, +2722, 2488, 1839, +2722, 2488, 1841, +2722, 2488, 1843, +2723, 2488, 1845, +2723, 2489, 1848, +2724, 2489, 1852, +2724, 2489, 1858, +2724, 2489, 1862, +2724, 2489, 1867, +2724, 2488, 1873, +2723, 2488, 1876, +2723, 2488, 1878, +2722, 2488, 1891, +2722, 2486, 1913, +2722, 2485, 1956, +2723, 2487, 2015, +2723, 2486, 2070, +2727, 2489, 2159, +2732, 2495, 2242, +2745, 2509, 2352, +2763, 2528, 2453, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2811, 2738, 2425, +2811, 2738, 2425, +2811, 2738, 2426, +2811, 2738, 2426, +2811, 2738, 2426, +2811, 2738, 2426, +2811, 2738, 2427, +2811, 2738, 2427, +2811, 2739, 2428, +2811, 2739, 2430, +2811, 2739, 2431, +2811, 2740, 2434, +2811, 2740, 2437, +2811, 2740, 2440, +2810, 2740, 2444, +2810, 2740, 2448, +2811, 2742, 2464, +2810, 2743, 2483, +2810, 2745, 2522, +2810, 2748, 2564, +2811, 2752, 2623, +2810, 2762, 2701, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819] + } +} \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Photoshop/inv-Log2-48nits/test_hue-sat_32_LUT.azasset b/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Photoshop/inv-Log2-48nits/test_hue-sat_32_LUT.azasset new file mode 100644 index 0000000000..82fbee2eee --- /dev/null +++ b/Gems/Atom/Feature/Common/Assets/ColorGrading/TestData/Photoshop/inv-Log2-48nits/test_hue-sat_32_LUT.azasset @@ -0,0 +1,32777 @@ +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "LookupTableAsset", + "ClassData": { + "Name": "LookupTable", + "Intervals": [0, 33, 66, 99, 132, 165, 198, 231, 264, 297, 330, 363, 396, 429, 462, 495, 528, 561, 594, 627, 660, 693, 726, 759, 792, 825, 858, 891, 924, 957, 990, 1023], + "Values": [0, 0, 0, +97, 163, 0, +201, 318, 0, +312, 466, 0, +427, 609, 0, +545, 750, 0, +667, 888, 0, +792, 1025, 0, +918, 1160, 0, +1046, 1295, 0, +1174, 1429, 0, +1304, 1563, 0, +1434, 1696, 0, +1565, 1828, 0, +1696, 1961, 0, +1827, 2094, 0, +1959, 2226, 0, +2090, 2358, 0, +2222, 2491, 0, +2354, 2623, 0, +2486, 2755, 0, +2618, 2887, 0, +2750, 3019, 0, +2882, 3152, 0, +3014, 3284, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +163, 0, 97, +163, 42, 0, +318, 300, 0, +419, 466, 0, +512, 609, 0, +613, 750, 0, +719, 888, 0, +832, 1025, 0, +949, 1160, 0, +1069, 1295, 0, +1192, 1429, 0, +1318, 1563, 0, +1444, 1696, 0, +1572, 1828, 0, +1702, 1961, 0, +1831, 2094, 0, +1962, 2226, 0, +2093, 2358, 0, +2224, 2491, 0, +2355, 2623, 0, +2487, 2755, 0, +2619, 2887, 0, +2750, 3019, 0, +2883, 3152, 0, +3014, 3284, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +318, 0, 201, +318, 0, 13, +318, 93, 0, +466, 388, 0, +606, 609, 0, +689, 750, 0, +781, 888, 0, +881, 1025, 0, +987, 1160, 0, +1099, 1295, 0, +1215, 1429, 0, +1335, 1563, 0, +1457, 1696, 0, +1582, 1828, 0, +1709, 1961, 0, +1837, 2094, 0, +1966, 2226, 0, +2096, 2358, 0, +2226, 2491, 0, +2357, 2623, 0, +2488, 2755, 0, +2620, 2887, 0, +2751, 3019, 0, +2883, 3152, 0, +3014, 3284, 0, +3147, 3416, 0, +3279, 3548, 0, +3410, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +466, 0, 312, +466, 0, 171, +466, 0, 0, +466, 154, 0, +609, 485, 0, +750, 723, 0, +852, 888, 0, +939, 1025, 0, +1033, 1160, 0, +1135, 1295, 0, +1244, 1429, 0, +1357, 1563, 0, +1475, 1696, 0, +1596, 1828, 0, +1719, 1961, 0, +1845, 2094, 0, +1972, 2226, 0, +2100, 2358, 0, +2230, 2491, 0, +2359, 2623, 0, +2490, 2755, 0, +2621, 2887, 0, +2752, 3019, 0, +2884, 3152, 0, +3015, 3284, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +609, 0, 427, +609, 0, 322, +609, 0, 127, +609, 0, 0, +609, 224, 0, +750, 587, 0, +888, 838, 0, +1006, 1025, 0, +1089, 1160, 0, +1181, 1295, 0, +1280, 1429, 0, +1385, 1563, 0, +1496, 1696, 0, +1612, 1828, 0, +1732, 1961, 0, +1855, 2094, 0, +1979, 2226, 0, +2106, 2358, 0, +2234, 2491, 0, +2363, 2623, 0, +2493, 2755, 0, +2623, 2887, 0, +2754, 3019, 0, +2885, 3152, 0, +3016, 3284, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +750, 0, 545, +750, 0, 467, +750, 0, 334, +750, 0, 59, +750, 0, 0, +750, 304, 0, +888, 697, 0, +1025, 957, 0, +1154, 1160, 0, +1234, 1295, 0, +1323, 1429, 0, +1421, 1563, 0, +1524, 1696, 0, +1634, 1828, 0, +1749, 1961, 0, +1867, 2094, 0, +1989, 2226, 0, +2113, 2358, 0, +2239, 2491, 0, +2367, 2623, 0, +2496, 2755, 0, +2625, 2887, 0, +2755, 3019, 0, +2886, 3152, 0, +3017, 3284, 0, +3148, 3416, 0, +3280, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +888, 0, 667, +888, 0, 608, +888, 0, 515, +888, 0, 350, +888, 0, 0, +888, 0, 0, +888, 392, 0, +1025, 811, 0, +1160, 1079, 0, +1295, 1292, 0, +1376, 1429, 0, +1463, 1563, 0, +1559, 1696, 0, +1661, 1828, 0, +1770, 1961, 0, +1884, 2094, 0, +2002, 2226, 0, +2123, 2358, 0, +2247, 2491, 0, +2372, 2623, 0, +2500, 2755, 0, +2628, 2887, 0, +2758, 3019, 0, +2888, 3152, 0, +3018, 3284, 0, +3149, 3416, 0, +3280, 3548, 0, +3412, 3680, 0, +3544, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1025, 0, 792, +1025, 0, 748, +1025, 0, 681, +1025, 0, 573, +1025, 0, 371, +1025, 0, 0, +1025, 0, 0, +1025, 488, 0, +1160, 929, 0, +1295, 1204, 0, +1429, 1419, 0, +1515, 1563, 0, +1601, 1696, 0, +1696, 1828, 0, +1797, 1961, 0, +1905, 2094, 0, +2018, 2226, 0, +2136, 2358, 0, +2256, 2491, 0, +2380, 2623, 0, +2505, 2755, 0, +2633, 2887, 0, +2761, 3019, 0, +2890, 3152, 0, +3020, 3284, 0, +3151, 3416, 0, +3281, 3548, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3939, 4095, 0, +1160, 0, 918, +1160, 0, 885, +1160, 0, 836, +1160, 0, 762, +1160, 0, 640, +1160, 0, 397, +1160, 0, 0, +1160, 0, 0, +1160, 592, 0, +1295, 1051, 0, +1429, 1330, 0, +1563, 1548, 0, +1653, 1696, 0, +1738, 1828, 0, +1831, 1961, 0, +1932, 2094, 0, +2039, 2226, 0, +2152, 2358, 0, +2269, 2491, 0, +2390, 2623, 0, +2513, 2755, 0, +2638, 2887, 0, +2765, 3019, 0, +2893, 3152, 0, +3022, 3284, 0, +3152, 3416, 0, +3283, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1295, 0, 1046, +1295, 0, 1021, +1295, 0, 985, +1295, 0, 934, +1295, 0, 853, +1295, 0, 717, +1295, 0, 431, +1295, 0, 0, +1295, 0, 0, +1295, 702, 0, +1429, 1174, 0, +1563, 1458, 0, +1696, 1677, 0, +1789, 1828, 0, +1873, 1961, 0, +1966, 2094, 0, +2066, 2226, 0, +2173, 2358, 0, +2285, 2491, 0, +2402, 2623, 0, +2523, 2755, 0, +2646, 2887, 0, +2771, 3019, 0, +2898, 3152, 0, +3025, 3284, 0, +3155, 3416, 0, +3285, 3548, 0, +3415, 3680, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1174, +1429, 0, 1156, +1429, 0, 1130, +1429, 0, 1092, +1429, 0, 1037, +1429, 0, 951, +1429, 0, 803, +1429, 0, 471, +1429, 0, 0, +1429, 0, 0, +1429, 816, 0, +1563, 1301, 0, +1696, 1587, 0, +1828, 1807, 0, +1923, 1961, 0, +2007, 2094, 0, +2100, 2226, 0, +2200, 2358, 0, +2306, 2491, 0, +2419, 2623, 0, +2535, 2755, 0, +2655, 2887, 0, +2778, 3019, 0, +2903, 3152, 0, +3030, 3284, 0, +3158, 3416, 0, +3287, 3548, 0, +3417, 3680, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1563, 0, 1304, +1563, 0, 1290, +1563, 0, 1271, +1563, 0, 1244, +1563, 0, 1205, +1563, 0, 1148, +1563, 0, 1057, +1563, 0, 897, +1563, 0, 523, +1563, 0, 0, +1563, 0, 0, +1563, 934, 0, +1696, 1427, 0, +1828, 1716, 0, +1961, 1938, 0, +2058, 2094, 0, +2141, 2226, 0, +2233, 2358, 0, +2333, 2491, 0, +2440, 2623, 0, +2552, 2755, 0, +2668, 2887, 0, +2788, 3019, 0, +2911, 3152, 0, +3035, 3284, 0, +3162, 3416, 0, +3290, 3548, 0, +3419, 3680, 0, +3549, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1434, +1696, 0, 1424, +1696, 0, 1410, +1696, 0, 1390, +1696, 0, 1362, +1696, 0, 1322, +1696, 0, 1262, +1696, 0, 1167, +1696, 0, 998, +1696, 0, 580, +1696, 0, 0, +1696, 0, 0, +1696, 1056, 0, +1828, 1557, 0, +1961, 1847, 0, +2094, 2069, 0, +2191, 2226, 0, +2275, 2358, 0, +2367, 2491, 0, +2466, 2623, 0, +2573, 2755, 0, +2684, 2887, 0, +2800, 3019, 0, +2920, 3152, 0, +3043, 3284, 0, +3168, 3416, 0, +3294, 3548, 0, +3422, 3680, 0, +3552, 3812, 0, +3681, 3944, 0, +3812, 4076, 0, +3942, 4095, 0, +1828, 0, 1565, +1828, 0, 1557, +1828, 0, 1547, +1828, 0, 1532, +1828, 0, 1512, +1828, 0, 1484, +1828, 0, 1442, +1828, 0, 1381, +1828, 0, 1283, +1828, 0, 1106, +1828, 0, 650, +1828, 0, 0, +1828, 0, 0, +1828, 1180, 0, +1961, 1686, 0, +2094, 1977, 0, +2226, 2200, 0, +2325, 2358, 0, +2408, 2491, 0, +2500, 2623, 0, +2599, 2755, 0, +2705, 2887, 0, +2816, 3019, 0, +2933, 3152, 0, +3052, 3284, 0, +3175, 3416, 0, +3300, 3548, 0, +3427, 3680, 0, +3554, 3812, 0, +3683, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +1961, 0, 1696, +1961, 0, 1690, +1961, 0, 1682, +1961, 0, 1672, +1961, 0, 1657, +1961, 0, 1636, +1961, 0, 1607, +1961, 0, 1565, +1961, 0, 1503, +1961, 0, 1402, +1961, 0, 1220, +1961, 0, 726, +1961, 0, 0, +1961, 0, 0, +1961, 1306, 0, +2094, 1816, 0, +2226, 2108, 0, +2358, 2332, 0, +2458, 2491, 0, +2541, 2623, 0, +2632, 2755, 0, +2732, 2887, 0, +2837, 3019, 0, +2949, 3152, 0, +3065, 3284, 0, +3184, 3416, 0, +3307, 3548, 0, +3432, 3680, 0, +3559, 3812, 0, +3687, 3944, 0, +3816, 4076, 0, +3946, 4095, 0, +2094, 0, 1827, +2094, 0, 1823, +2094, 0, 1817, +2094, 0, 1809, +2094, 0, 1798, +2094, 0, 1783, +2094, 0, 1763, +2094, 0, 1733, +2094, 0, 1691, +2094, 0, 1626, +2094, 0, 1524, +2094, 0, 1336, +2094, 0, 814, +2094, 0, 0, +2094, 0, 0, +2094, 1433, 0, +2226, 1946, 0, +2358, 2239, 0, +2491, 2463, 0, +2590, 2623, 0, +2673, 2755, 0, +2765, 2887, 0, +2864, 3019, 0, +2970, 3152, 0, +3081, 3284, 0, +3197, 3416, 0, +3317, 3548, 0, +3440, 3680, 0, +3564, 3812, 0, +3691, 3944, 0, +3819, 4076, 0, +3948, 4095, 0, +2226, 0, 1959, +2226, 0, 1956, +2226, 0, 1951, +2226, 0, 1945, +2226, 0, 1937, +2226, 0, 1926, +2226, 0, 1911, +2226, 0, 1890, +2226, 0, 1860, +2226, 0, 1817, +2226, 0, 1753, +2226, 0, 1648, +2226, 0, 1457, +2226, 0, 907, +2226, 0, 0, +2226, 0, 0, +2226, 1562, 0, +2358, 2078, 0, +2491, 2371, 0, +2623, 2595, 0, +2723, 2755, 0, +2806, 2887, 0, +2897, 3019, 0, +2996, 3152, 0, +3102, 3284, 0, +3213, 3416, 0, +3329, 3548, 0, +3449, 3680, 0, +3572, 3812, 0, +3696, 3944, 0, +3823, 4076, 0, +3951, 4095, 0, +2358, 0, 2090, +2358, 0, 2088, +2358, 0, 2085, +2358, 0, 2080, +2358, 0, 2074, +2358, 0, 2066, +2358, 0, 2055, +2358, 0, 2040, +2358, 0, 2019, +2358, 0, 1989, +2358, 0, 1946, +2358, 0, 1880, +2358, 0, 1775, +2358, 0, 1580, +2358, 0, 1009, +2358, 0, 0, +2358, 0, 0, +2358, 1692, 0, +2491, 2209, 0, +2623, 2503, 0, +2755, 2727, 0, +2856, 2887, 0, +2938, 3019, 0, +3030, 3152, 0, +3128, 3284, 0, +3234, 3416, 0, +3346, 3548, 0, +3462, 3680, 0, +3581, 3812, 0, +3704, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2222, +2491, 0, 2220, +2491, 0, 2218, +2491, 0, 2215, +2491, 0, 2210, +2491, 0, 2204, +2491, 0, 2196, +2491, 0, 2185, +2491, 0, 2170, +2491, 0, 2149, +2491, 0, 2119, +2491, 0, 2075, +2491, 0, 2009, +2491, 0, 1903, +2491, 0, 1706, +2491, 0, 1120, +2491, 0, 0, +2491, 0, 0, +2491, 1822, 0, +2623, 2340, 0, +2755, 2635, 0, +2887, 2859, 0, +2988, 3019, 0, +3071, 3152, 0, +3162, 3284, 0, +3261, 3416, 0, +3367, 3548, 0, +3478, 3680, 0, +3594, 3812, 0, +3713, 3944, 0, +3836, 4076, 0, +3961, 4095, 0, +2623, 0, 2354, +2623, 0, 2352, +2623, 0, 2351, +2623, 0, 2348, +2623, 0, 2345, +2623, 0, 2341, +2623, 0, 2335, +2623, 0, 2327, +2623, 0, 2315, +2623, 0, 2300, +2623, 0, 2278, +2623, 0, 2248, +2623, 0, 2205, +2623, 0, 2138, +2623, 0, 2032, +2623, 0, 1833, +2623, 0, 1232, +2623, 0, 0, +2623, 0, 0, +2623, 1952, 0, +2755, 2473, 0, +2887, 2767, 0, +3019, 2991, 0, +3120, 3152, 0, +3203, 3284, 0, +3294, 3416, 0, +3393, 3548, 0, +3499, 3680, 0, +3610, 3812, 0, +3726, 3944, 0, +3846, 4076, 0, +3968, 4095, 0, +2755, 0, 2486, +2755, 0, 2485, +2755, 0, 2484, +2755, 0, 2482, +2755, 0, 2479, +2755, 0, 2476, +2755, 0, 2472, +2755, 0, 2466, +2755, 0, 2457, +2755, 0, 2446, +2755, 0, 2431, +2755, 0, 2409, +2755, 0, 2379, +2755, 0, 2335, +2755, 0, 2269, +2755, 0, 2162, +2755, 0, 1962, +2755, 0, 1353, +2755, 0, 0, +2755, 0, 0, +2755, 2083, 0, +2887, 2604, 0, +3019, 2898, 0, +3152, 3123, 0, +3252, 3284, 0, +3335, 3416, 0, +3426, 3548, 0, +3525, 3680, 0, +3631, 3812, 0, +3742, 3944, 0, +3858, 4076, 0, +3978, 4095, 0, +2887, 0, 2618, +2887, 0, 2617, +2887, 0, 2616, +2887, 0, 2615, +2887, 0, 2613, +2887, 0, 2611, +2887, 0, 2607, +2887, 0, 2603, +2887, 0, 2597, +2887, 0, 2589, +2887, 0, 2577, +2887, 0, 2562, +2887, 0, 2541, +2887, 0, 2510, +2887, 0, 2466, +2887, 0, 2400, +2887, 0, 2292, +2887, 0, 2091, +2887, 0, 1472, +2887, 0, 0, +2887, 0, 0, +2887, 2215, 0, +3019, 2735, 0, +3152, 3031, 0, +3284, 3254, 0, +3385, 3416, 0, +3467, 3548, 0, +3558, 3680, 0, +3657, 3812, 0, +3763, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2750, +3019, 0, 2749, +3019, 0, 2748, +3019, 0, 2747, +3019, 0, 2746, +3019, 0, 2744, +3019, 0, 2742, +3019, 0, 2738, +3019, 0, 2734, +3019, 0, 2728, +3019, 0, 2720, +3019, 0, 2708, +3019, 0, 2693, +3019, 0, 2672, +3019, 0, 2641, +3019, 0, 2597, +3019, 0, 2530, +3019, 0, 2422, +3019, 0, 2220, +3019, 0, 1594, +3019, 0, 0, +3019, 0, 0, +3019, 2346, 0, +3152, 2868, 0, +3284, 3162, 0, +3416, 3387, 0, +3516, 3548, 0, +3599, 3680, 0, +3691, 3812, 0, +3790, 3944, 0, +3895, 4076, 0, +4007, 4095, 0, +3152, 0, 2882, +3152, 0, 2881, +3152, 0, 2881, +3152, 0, 2880, +3152, 0, 2879, +3152, 0, 2878, +3152, 0, 2876, +3152, 0, 2873, +3152, 0, 2870, +3152, 0, 2866, +3152, 0, 2860, +3152, 0, 2851, +3152, 0, 2840, +3152, 0, 2825, +3152, 0, 2803, +3152, 0, 2773, +3152, 0, 2729, +3152, 0, 2662, +3152, 0, 2554, +3152, 0, 2352, +3152, 0, 1720, +3152, 0, 0, +3152, 0, 0, +3152, 2478, 0, +3284, 2999, 0, +3416, 3294, 0, +3548, 3519, 0, +3649, 3680, 0, +3732, 3812, 0, +3823, 3944, 0, +3922, 4076, 0, +4027, 4095, 0, +3284, 0, 3014, +3284, 0, 3014, +3284, 0, 3013, +3284, 0, 3012, +3284, 0, 3012, +3284, 0, 3011, +3284, 0, 3009, +3284, 0, 3008, +3284, 0, 3005, +3284, 0, 3002, +3284, 0, 2997, +3284, 0, 2991, +3284, 0, 2983, +3284, 0, 2972, +3284, 0, 2956, +3284, 0, 2935, +3284, 0, 2904, +3284, 0, 2860, +3284, 0, 2793, +3284, 0, 2684, +3284, 0, 2481, +3284, 0, 1844, +3284, 0, 0, +3284, 0, 0, +3284, 2609, 0, +3416, 3132, 0, +3548, 3426, 0, +3680, 3651, 0, +3781, 3812, 0, +3864, 3944, 0, +3955, 4076, 0, +4054, 4095, 0, +3416, 0, 3146, +3416, 0, 3146, +3416, 0, 3145, +3416, 0, 3145, +3416, 0, 3144, +3416, 0, 3144, +3416, 0, 3143, +3416, 0, 3141, +3416, 0, 3139, +3416, 0, 3137, +3416, 0, 3134, +3416, 0, 3129, +3416, 0, 3123, +3416, 0, 3115, +3416, 0, 3104, +3416, 0, 3088, +3416, 0, 3067, +3416, 0, 3036, +3416, 0, 2992, +3416, 0, 2925, +3416, 0, 2816, +3416, 0, 2613, +3416, 0, 1977, +3416, 0, 0, +3416, 0, 0, +3416, 2741, 0, +3548, 3264, 0, +3680, 3558, 0, +3812, 3783, 0, +3913, 3944, 0, +3996, 4076, 0, +4087, 4095, 0, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3277, +3548, 0, 3277, +3548, 0, 3276, +3548, 0, 3276, +3548, 0, 3275, +3548, 0, 3273, +3548, 0, 3271, +3548, 0, 3269, +3548, 0, 3266, +3548, 0, 3261, +3548, 0, 3255, +3548, 0, 3247, +3548, 0, 3236, +3548, 0, 3220, +3548, 0, 3198, +3548, 0, 3168, +3548, 0, 3124, +3548, 0, 3056, +3548, 0, 2948, +3548, 0, 2745, +3548, 0, 2104, +3548, 0, 0, +3548, 0, 0, +3548, 2873, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3408, +3680, 0, 3406, +3680, 0, 3405, +3680, 0, 3403, +3680, 0, 3401, +3680, 0, 3398, +3680, 0, 3393, +3680, 0, 3387, +3680, 0, 3379, +3680, 0, 3367, +3680, 0, 3352, +3680, 0, 3330, +3680, 0, 3300, +3680, 0, 3255, +3680, 0, 3188, +3680, 0, 3080, +3680, 0, 2876, +3680, 0, 2237, +3680, 0, 0, +3680, 0, 0, +3680, 3005, 0, +3812, 3528, 0, +3944, 3822, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3540, +3812, 0, 3538, +3812, 0, 3537, +3812, 0, 3535, +3812, 0, 3533, +3812, 0, 3530, +3812, 0, 3525, +3812, 0, 3519, +3812, 0, 3511, +3812, 0, 3499, +3812, 0, 3484, +3812, 0, 3462, +3812, 0, 3432, +3812, 0, 3387, +3812, 0, 3320, +3812, 0, 3211, +3812, 0, 3008, +3812, 0, 2367, +3812, 0, 0, +3812, 0, 0, +3812, 3137, 0, +3944, 3660, 0, +4076, 3954, 0, +4095, 4095, 0, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3670, +3944, 0, 3669, +3944, 0, 3667, +3944, 0, 3665, +3944, 0, 3661, +3944, 0, 3657, +3944, 0, 3651, +3944, 0, 3643, +3944, 0, 3631, +3944, 0, 3616, +3944, 0, 3594, +3944, 0, 3564, +3944, 0, 3520, +3944, 0, 3452, +3944, 0, 3344, +3944, 0, 3140, +3944, 0, 2497, +3944, 0, 0, +3944, 0, 0, +3944, 3269, 0, +4076, 3791, 0, +4095, 4087, 0, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3803, +4076, 0, 3801, +4076, 0, 3799, +4076, 0, 3797, +4076, 0, 3793, +4076, 0, 3789, +4076, 0, 3783, +4076, 0, 3774, +4076, 0, 3763, +4076, 0, 3748, +4076, 0, 3726, +4076, 0, 3696, +4076, 0, 3651, +4076, 0, 3584, +4076, 0, 3475, +4076, 0, 3271, +4076, 0, 2626, +4076, 0, 0, +4076, 0, 0, +4076, 3401, 0, +4095, 3924, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3933, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3926, +4095, 0, 3921, +4095, 0, 3915, +4095, 0, 3907, +4095, 0, 3896, +4095, 0, 3880, +4095, 0, 3859, +4095, 0, 3828, +4095, 0, 3784, +4095, 0, 3716, +4095, 0, 3608, +4095, 0, 3404, +4095, 0, 2761, +4095, 0, 0, +4095, 0, 0, +4095, 3533, 0, +0, 97, 163, +0, 163, 42, +13, 318, 0, +171, 466, 0, +322, 609, 0, +467, 750, 0, +608, 888, 0, +748, 1025, 0, +885, 1160, 0, +1021, 1295, 0, +1156, 1429, 0, +1290, 1563, 0, +1424, 1696, 0, +1557, 1828, 0, +1690, 1961, 0, +1823, 2094, 0, +1956, 2226, 0, +2088, 2358, 0, +2220, 2491, 0, +2352, 2623, 0, +2485, 2755, 0, +2617, 2887, 0, +2749, 3019, 0, +2881, 3152, 0, +3014, 3284, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +42, 0, 163, +131, 131, 131, +229, 295, 86, +333, 450, 15, +444, 598, 0, +559, 741, 0, +678, 882, 0, +800, 1020, 0, +924, 1157, 0, +1050, 1292, 0, +1178, 1427, 0, +1307, 1561, 0, +1436, 1695, 0, +1566, 1828, 0, +1697, 1961, 0, +1828, 2093, 0, +1959, 2226, 0, +2091, 2358, 0, +2223, 2491, 0, +2354, 2623, 0, +2486, 2755, 0, +2618, 2887, 0, +2750, 3019, 0, +2882, 3152, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +300, 0, 318, +295, 86, 229, +295, 174, 86, +450, 432, 15, +551, 598, 0, +644, 741, 0, +745, 882, 0, +852, 1020, 0, +964, 1157, 0, +1081, 1292, 0, +1201, 1427, 0, +1325, 1561, 0, +1450, 1695, 0, +1576, 1828, 0, +1705, 1961, 0, +1834, 2093, 0, +1963, 2226, 0, +2094, 2358, 0, +2225, 2491, 0, +2356, 2623, 0, +2488, 2755, 0, +2619, 2887, 0, +2751, 3019, 0, +2883, 3152, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +466, 0, 419, +450, 15, 333, +450, 15, 145, +450, 225, 15, +598, 520, 0, +738, 741, 0, +822, 882, 0, +914, 1020, 0, +1013, 1157, 0, +1119, 1292, 0, +1231, 1427, 0, +1347, 1561, 0, +1467, 1695, 0, +1590, 1828, 0, +1715, 1961, 0, +1841, 2093, 0, +1969, 2226, 0, +2098, 2358, 0, +2228, 2491, 0, +2358, 2623, 0, +2489, 2755, 0, +2620, 2887, 0, +2752, 3019, 0, +2883, 3152, 0, +3015, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +609, 0, 512, +598, 0, 444, +598, 0, 303, +598, 0, 0, +598, 286, 0, +741, 616, 0, +882, 855, 0, +985, 1020, 0, +1071, 1157, 0, +1166, 1292, 0, +1267, 1427, 0, +1376, 1561, 0, +1489, 1695, 0, +1607, 1828, 0, +1728, 1961, 0, +1851, 2093, 0, +1977, 2226, 0, +2104, 2358, 0, +2233, 2491, 0, +2362, 2623, 0, +2492, 2755, 0, +2622, 2887, 0, +2753, 3019, 0, +2885, 3152, 0, +3016, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +750, 0, 613, +741, 0, 559, +741, 0, 453, +741, 0, 258, +741, 0, 0, +741, 356, 0, +882, 719, 0, +1020, 970, 0, +1139, 1157, 0, +1221, 1292, 0, +1313, 1427, 0, +1412, 1561, 0, +1517, 1695, 0, +1629, 1828, 0, +1745, 1961, 0, +1864, 2093, 0, +1987, 2226, 0, +2111, 2358, 0, +2238, 2491, 0, +2366, 2623, 0, +2495, 2755, 0, +2625, 2887, 0, +2755, 3019, 0, +2886, 3152, 0, +3017, 3283, 0, +3148, 3416, 0, +3280, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +888, 0, 719, +882, 0, 678, +882, 0, 599, +882, 0, 466, +882, 0, 190, +882, 0, 0, +882, 436, 0, +1020, 829, 0, +1157, 1089, 0, +1286, 1292, 0, +1366, 1427, 0, +1456, 1561, 0, +1552, 1695, 0, +1656, 1828, 0, +1766, 1961, 0, +1881, 2093, 0, +1999, 2226, 0, +2121, 2358, 0, +2245, 2491, 0, +2372, 2623, 0, +2499, 2755, 0, +2628, 2887, 0, +2757, 3019, 0, +2888, 3152, 0, +3018, 3283, 0, +3149, 3416, 0, +3280, 3548, 0, +3412, 3680, 0, +3544, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1025, 0, 832, +1020, 0, 800, +1020, 0, 740, +1020, 0, 647, +1020, 0, 482, +1020, 0, 81, +1020, 0, 0, +1020, 524, 0, +1157, 943, 0, +1292, 1211, 0, +1427, 1424, 0, +1508, 1561, 0, +1596, 1695, 0, +1691, 1828, 0, +1793, 1961, 0, +1902, 2093, 0, +2016, 2226, 0, +2134, 2358, 0, +2255, 2491, 0, +2379, 2623, 0, +2505, 2755, 0, +2632, 2887, 0, +2760, 3019, 0, +2890, 3152, 0, +3020, 3283, 0, +3151, 3416, 0, +3281, 3548, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1160, 0, 949, +1157, 0, 924, +1157, 0, 879, +1157, 0, 813, +1157, 0, 705, +1157, 0, 503, +1157, 0, 0, +1157, 0, 0, +1157, 620, 0, +1292, 1062, 0, +1427, 1336, 0, +1561, 1552, 0, +1647, 1695, 0, +1733, 1828, 0, +1828, 1961, 0, +1929, 2093, 0, +2037, 2226, 0, +2150, 2358, 0, +2268, 2491, 0, +2388, 2623, 0, +2512, 2755, 0, +2638, 2887, 0, +2765, 3019, 0, +2893, 3152, 0, +3022, 3283, 0, +3152, 3416, 0, +3283, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1295, 0, 1069, +1292, 0, 1050, +1292, 0, 1017, +1292, 0, 968, +1292, 0, 894, +1292, 0, 772, +1292, 0, 529, +1292, 0, 0, +1292, 0, 0, +1292, 724, 0, +1427, 1182, 0, +1561, 1463, 0, +1695, 1680, 0, +1785, 1828, 0, +1870, 1961, 0, +1963, 2093, 0, +2064, 2226, 0, +2171, 2358, 0, +2284, 2491, 0, +2401, 2623, 0, +2522, 2755, 0, +2645, 2887, 0, +2770, 3019, 0, +2897, 3152, 0, +3025, 3283, 0, +3154, 3416, 0, +3284, 3548, 0, +3415, 3680, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1192, +1427, 0, 1178, +1427, 0, 1153, +1427, 0, 1118, +1427, 0, 1065, +1427, 0, 985, +1427, 0, 849, +1427, 0, 562, +1427, 0, 0, +1427, 0, 0, +1427, 833, 0, +1561, 1307, 0, +1695, 1590, 0, +1828, 1810, 0, +1920, 1961, 0, +2005, 2093, 0, +2098, 2226, 0, +2199, 2358, 0, +2305, 2491, 0, +2417, 2623, 0, +2535, 2755, 0, +2655, 2887, 0, +2777, 3019, 0, +2903, 3152, 0, +3029, 3283, 0, +3158, 3416, 0, +3287, 3548, 0, +3417, 3680, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1563, 0, 1318, +1561, 0, 1307, +1561, 0, 1288, +1561, 0, 1262, +1561, 0, 1225, +1561, 0, 1170, +1561, 0, 1084, +1561, 0, 935, +1561, 0, 605, +1561, 0, 0, +1561, 0, 0, +1561, 948, 0, +1695, 1432, 0, +1828, 1719, 0, +1961, 1940, 0, +2056, 2093, 0, +2140, 2226, 0, +2232, 2358, 0, +2332, 2491, 0, +2439, 2623, 0, +2551, 2755, 0, +2667, 2887, 0, +2787, 3019, 0, +2910, 3152, 0, +3035, 3283, 0, +3162, 3416, 0, +3290, 3548, 0, +3419, 3680, 0, +3549, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1444, +1695, 0, 1436, +1695, 0, 1422, +1695, 0, 1403, +1695, 0, 1376, +1695, 0, 1337, +1695, 0, 1279, +1695, 0, 1188, +1695, 0, 1029, +1695, 0, 653, +1695, 0, 0, +1695, 0, 0, +1695, 1066, 0, +1828, 1560, 0, +1961, 1849, 0, +2093, 2070, 0, +2190, 2226, 0, +2273, 2358, 0, +2366, 2491, 0, +2465, 2623, 0, +2572, 2755, 0, +2684, 2887, 0, +2800, 3019, 0, +2920, 3152, 0, +3042, 3283, 0, +3168, 3416, 0, +3294, 3548, 0, +3422, 3680, 0, +3551, 3812, 0, +3681, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1828, 0, 1572, +1828, 0, 1566, +1828, 0, 1556, +1828, 0, 1542, +1828, 0, 1522, +1828, 0, 1494, +1828, 0, 1454, +1828, 0, 1394, +1828, 0, 1300, +1828, 0, 1131, +1828, 0, 713, +1828, 0, 0, +1828, 0, 0, +1828, 1188, 0, +1961, 1689, 0, +2093, 1979, 0, +2226, 2201, 0, +2324, 2358, 0, +2407, 2491, 0, +2499, 2623, 0, +2598, 2755, 0, +2705, 2887, 0, +2816, 3019, 0, +2932, 3152, 0, +3052, 3283, 0, +3175, 3416, 0, +3300, 3548, 0, +3426, 3680, 0, +3554, 3812, 0, +3683, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +1961, 0, 1702, +1961, 0, 1697, +1961, 0, 1689, +1961, 0, 1679, +1961, 0, 1664, +1961, 0, 1644, +1961, 0, 1615, +1961, 0, 1574, +1961, 0, 1513, +1961, 0, 1415, +1961, 0, 1238, +1961, 0, 780, +1961, 0, 0, +1961, 0, 0, +1961, 1312, 0, +2093, 1818, 0, +2226, 2109, 0, +2358, 2332, 0, +2457, 2491, 0, +2540, 2623, 0, +2632, 2755, 0, +2731, 2887, 0, +2837, 3019, 0, +2949, 3152, 0, +3065, 3283, 0, +3184, 3416, 0, +3307, 3548, 0, +3432, 3680, 0, +3559, 3812, 0, +3687, 3944, 0, +3816, 4076, 0, +3946, 4095, 0, +2094, 0, 1831, +2093, 0, 1828, +2093, 0, 1822, +2093, 0, 1814, +2093, 0, 1804, +2093, 0, 1789, +2093, 0, 1768, +2093, 0, 1739, +2093, 0, 1698, +2093, 0, 1635, +2093, 0, 1534, +2093, 0, 1351, +2093, 0, 859, +2093, 0, 0, +2093, 0, 0, +2093, 1438, 0, +2226, 1948, 0, +2358, 2240, 0, +2491, 2464, 0, +2590, 2623, 0, +2673, 2755, 0, +2764, 2887, 0, +2863, 3019, 0, +2970, 3152, 0, +3081, 3283, 0, +3197, 3416, 0, +3317, 3548, 0, +3439, 3680, 0, +3564, 3812, 0, +3691, 3944, 0, +3819, 4076, 0, +3948, 4095, 0, +2226, 0, 1962, +2226, 0, 1959, +2226, 0, 1955, +2226, 0, 1949, +2226, 0, 1941, +2226, 0, 1930, +2226, 0, 1915, +2226, 0, 1894, +2226, 0, 1865, +2226, 0, 1823, +2226, 0, 1759, +2226, 0, 1656, +2226, 0, 1469, +2226, 0, 944, +2226, 0, 0, +2226, 0, 0, +2226, 1565, 0, +2358, 2079, 0, +2491, 2372, 0, +2623, 2595, 0, +2723, 2755, 0, +2805, 2887, 0, +2897, 3019, 0, +2996, 3152, 0, +3102, 3283, 0, +3213, 3416, 0, +3329, 3548, 0, +3449, 3680, 0, +3572, 3812, 0, +3696, 3944, 0, +3823, 4076, 0, +3951, 4095, 0, +2358, 0, 2093, +2358, 0, 2091, +2358, 0, 2087, +2358, 0, 2083, +2358, 0, 2077, +2358, 0, 2069, +2358, 0, 2058, +2358, 0, 2043, +2358, 0, 2022, +2358, 0, 1993, +2358, 0, 1950, +2358, 0, 1885, +2358, 0, 1781, +2358, 0, 1589, +2358, 0, 1039, +2358, 0, 0, +2358, 0, 0, +2358, 1694, 0, +2491, 2210, 0, +2623, 2503, 0, +2755, 2727, 0, +2855, 2887, 0, +2938, 3019, 0, +3029, 3152, 0, +3128, 3283, 0, +3234, 3416, 0, +3346, 3548, 0, +3462, 3680, 0, +3581, 3812, 0, +3704, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2224, +2491, 0, 2223, +2491, 0, 2220, +2491, 0, 2217, +2491, 0, 2212, +2491, 0, 2206, +2491, 0, 2199, +2491, 0, 2187, +2491, 0, 2172, +2491, 0, 2151, +2491, 0, 2121, +2491, 0, 2078, +2491, 0, 2013, +2491, 0, 1907, +2491, 0, 1713, +2491, 0, 1143, +2491, 0, 0, +2491, 0, 0, +2491, 1824, 0, +2623, 2341, 0, +2755, 2635, 0, +2887, 2859, 0, +2987, 3019, 0, +3070, 3152, 0, +3162, 3283, 0, +3261, 3416, 0, +3367, 3548, 0, +3478, 3680, 0, +3594, 3812, 0, +3713, 3944, 0, +3836, 4076, 0, +3961, 4095, 0, +2623, 0, 2355, +2623, 0, 2354, +2623, 0, 2352, +2623, 0, 2350, +2623, 0, 2347, +2623, 0, 2342, +2623, 0, 2336, +2623, 0, 2328, +2623, 0, 2317, +2623, 0, 2302, +2623, 0, 2281, +2623, 0, 2250, +2623, 0, 2207, +2623, 0, 2141, +2623, 0, 2035, +2623, 0, 1838, +2623, 0, 1251, +2623, 0, 0, +2623, 0, 0, +2623, 1954, 0, +2755, 2473, 0, +2887, 2767, 0, +3019, 2991, 0, +3120, 3152, 0, +3203, 3283, 0, +3294, 3416, 0, +3393, 3548, 0, +3499, 3680, 0, +3610, 3812, 0, +3726, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2487, +2755, 0, 2486, +2755, 0, 2485, +2755, 0, 2483, +2755, 0, 2481, +2755, 0, 2477, +2755, 0, 2473, +2755, 0, 2467, +2755, 0, 2459, +2755, 0, 2448, +2755, 0, 2432, +2755, 0, 2411, +2755, 0, 2381, +2755, 0, 2337, +2755, 0, 2271, +2755, 0, 2164, +2755, 0, 1966, +2755, 0, 1367, +2755, 0, 0, +2755, 0, 0, +2755, 2084, 0, +2887, 2604, 0, +3019, 2898, 0, +3152, 3123, 0, +3252, 3283, 0, +3335, 3416, 0, +3426, 3548, 0, +3525, 3680, 0, +3631, 3812, 0, +3742, 3944, 0, +3858, 4076, 0, +3978, 4095, 0, +2887, 0, 2619, +2887, 0, 2618, +2887, 0, 2617, +2887, 0, 2616, +2887, 0, 2614, +2887, 0, 2612, +2887, 0, 2608, +2887, 0, 2604, +2887, 0, 2598, +2887, 0, 2589, +2887, 0, 2578, +2887, 0, 2563, +2887, 0, 2542, +2887, 0, 2511, +2887, 0, 2467, +2887, 0, 2401, +2887, 0, 2294, +2887, 0, 2094, +2887, 0, 1483, +2887, 0, 0, +2887, 0, 0, +2887, 2215, 0, +3019, 2735, 0, +3152, 3031, 0, +3283, 3254, 0, +3385, 3416, 0, +3467, 3548, 0, +3558, 3680, 0, +3657, 3812, 0, +3763, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2750, +3019, 0, 2750, +3019, 0, 2749, +3019, 0, 2748, +3019, 0, 2747, +3019, 0, 2745, +3019, 0, 2742, +3019, 0, 2739, +3019, 0, 2735, +3019, 0, 2729, +3019, 0, 2720, +3019, 0, 2709, +3019, 0, 2694, +3019, 0, 2672, +3019, 0, 2642, +3019, 0, 2598, +3019, 0, 2531, +3019, 0, 2424, +3019, 0, 2222, +3019, 0, 1602, +3019, 0, 0, +3019, 0, 0, +3019, 2346, 0, +3152, 2868, 0, +3283, 3162, 0, +3416, 3387, 0, +3516, 3548, 0, +3599, 3680, 0, +3691, 3812, 0, +3790, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2883, +3152, 0, 2882, +3152, 0, 2881, +3152, 0, 2881, +3152, 0, 2880, +3152, 0, 2878, +3152, 0, 2877, +3152, 0, 2874, +3152, 0, 2871, +3152, 0, 2866, +3152, 0, 2860, +3152, 0, 2852, +3152, 0, 2841, +3152, 0, 2825, +3152, 0, 2804, +3152, 0, 2773, +3152, 0, 2729, +3152, 0, 2663, +3152, 0, 2555, +3152, 0, 2353, +3152, 0, 1726, +3152, 0, 0, +3152, 0, 0, +3152, 2478, 0, +3283, 2999, 0, +3416, 3294, 0, +3548, 3519, 0, +3649, 3680, 0, +3731, 3812, 0, +3823, 3944, 0, +3922, 4076, 0, +4027, 4095, 0, +3284, 0, 3014, +3283, 0, 3014, +3283, 0, 3014, +3283, 0, 3013, +3283, 0, 3012, +3283, 0, 3011, +3283, 0, 3010, +3283, 0, 3008, +3283, 0, 3005, +3283, 0, 3002, +3283, 0, 2998, +3283, 0, 2992, +3283, 0, 2983, +3283, 0, 2972, +3283, 0, 2957, +3283, 0, 2935, +3283, 0, 2905, +3283, 0, 2860, +3283, 0, 2793, +3283, 0, 2685, +3283, 0, 2482, +3283, 0, 1849, +3283, 0, 0, +3283, 0, 0, +3283, 2609, 0, +3416, 3132, 0, +3548, 3426, 0, +3680, 3651, 0, +3781, 3812, 0, +3864, 3944, 0, +3955, 4076, 0, +4054, 4095, 0, +3416, 0, 3146, +3416, 0, 3146, +3416, 0, 3146, +3416, 0, 3145, +3416, 0, 3145, +3416, 0, 3144, +3416, 0, 3143, +3416, 0, 3141, +3416, 0, 3140, +3416, 0, 3137, +3416, 0, 3134, +3416, 0, 3129, +3416, 0, 3123, +3416, 0, 3115, +3416, 0, 3104, +3416, 0, 3088, +3416, 0, 3067, +3416, 0, 3036, +3416, 0, 2992, +3416, 0, 2925, +3416, 0, 2817, +3416, 0, 2614, +3416, 0, 1981, +3416, 0, 0, +3416, 0, 0, +3416, 2741, 0, +3548, 3264, 0, +3680, 3558, 0, +3812, 3783, 0, +3913, 3944, 0, +3996, 4076, 0, +4087, 4095, 0, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3277, +3548, 0, 3277, +3548, 0, 3276, +3548, 0, 3275, +3548, 0, 3273, +3548, 0, 3272, +3548, 0, 3269, +3548, 0, 3266, +3548, 0, 3261, +3548, 0, 3255, +3548, 0, 3247, +3548, 0, 3236, +3548, 0, 3220, +3548, 0, 3199, +3548, 0, 3168, +3548, 0, 3124, +3548, 0, 3057, +3548, 0, 2948, +3548, 0, 2745, +3548, 0, 2107, +3548, 0, 0, +3548, 0, 0, +3548, 2873, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3408, +3680, 0, 3407, +3680, 0, 3405, +3680, 0, 3403, +3680, 0, 3401, +3680, 0, 3398, +3680, 0, 3393, +3680, 0, 3387, +3680, 0, 3379, +3680, 0, 3368, +3680, 0, 3352, +3680, 0, 3331, +3680, 0, 3300, +3680, 0, 3256, +3680, 0, 3188, +3680, 0, 3080, +3680, 0, 2877, +3680, 0, 2239, +3680, 0, 0, +3680, 0, 0, +3680, 3005, 0, +3812, 3528, 0, +3944, 3822, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3540, +3812, 0, 3538, +3812, 0, 3537, +3812, 0, 3536, +3812, 0, 3533, +3812, 0, 3530, +3812, 0, 3525, +3812, 0, 3519, +3812, 0, 3511, +3812, 0, 3499, +3812, 0, 3484, +3812, 0, 3462, +3812, 0, 3432, +3812, 0, 3388, +3812, 0, 3321, +3812, 0, 3212, +3812, 0, 3009, +3812, 0, 2369, +3812, 0, 0, +3812, 0, 0, +3812, 3137, 0, +3944, 3660, 0, +4076, 3954, 0, +4095, 4095, 0, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3671, +3944, 0, 3669, +3944, 0, 3667, +3944, 0, 3665, +3944, 0, 3662, +3944, 0, 3657, +3944, 0, 3651, +3944, 0, 3643, +3944, 0, 3632, +3944, 0, 3616, +3944, 0, 3595, +3944, 0, 3564, +3944, 0, 3520, +3944, 0, 3452, +3944, 0, 3344, +3944, 0, 3140, +3944, 0, 2498, +3944, 0, 0, +3944, 0, 0, +3944, 3269, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3803, +4076, 0, 3801, +4076, 0, 3799, +4076, 0, 3797, +4076, 0, 3793, +4076, 0, 3789, +4076, 0, 3783, +4076, 0, 3775, +4076, 0, 3763, +4076, 0, 3748, +4076, 0, 3726, +4076, 0, 3696, +4076, 0, 3651, +4076, 0, 3584, +4076, 0, 3475, +4076, 0, 3272, +4076, 0, 2627, +4076, 0, 0, +4076, 0, 0, +4076, 3401, 0, +4095, 3924, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3933, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3926, +4095, 0, 3921, +4095, 0, 3915, +4095, 0, 3907, +4095, 0, 3896, +4095, 0, 3880, +4095, 0, 3859, +4095, 0, 3828, +4095, 0, 3784, +4095, 0, 3717, +4095, 0, 3608, +4095, 0, 3404, +4095, 0, 2762, +4095, 0, 0, +4095, 0, 0, +4095, 3533, 0, +0, 201, 318, +0, 318, 300, +0, 318, 93, +0, 466, 0, +127, 609, 0, +334, 750, 0, +515, 888, 0, +681, 1025, 0, +836, 1160, 0, +985, 1295, 0, +1130, 1429, 0, +1271, 1563, 0, +1410, 1696, 0, +1547, 1828, 0, +1682, 1961, 0, +1817, 2094, 0, +1951, 2226, 0, +2085, 2358, 0, +2218, 2491, 0, +2351, 2623, 0, +2484, 2755, 0, +2616, 2887, 0, +2748, 3019, 0, +2881, 3152, 0, +3013, 3284, 0, +3145, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 13, 318, +86, 229, 295, +86, 295, 174, +145, 450, 15, +303, 598, 0, +453, 741, 0, +599, 882, 0, +740, 1020, 0, +879, 1157, 0, +1017, 1292, 0, +1153, 1427, 0, +1288, 1561, 0, +1422, 1695, 0, +1556, 1828, 0, +1689, 1961, 0, +1822, 2093, 0, +1955, 2226, 0, +2087, 2358, 0, +2220, 2491, 0, +2352, 2623, 0, +2485, 2755, 0, +2617, 2887, 0, +2749, 3019, 0, +2881, 3152, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +93, 0, 318, +174, 86, 295, +264, 264, 264, +361, 427, 218, +466, 582, 148, +576, 730, 34, +691, 873, 0, +810, 1014, 0, +932, 1152, 0, +1056, 1289, 0, +1182, 1424, 0, +1310, 1559, 0, +1439, 1693, 0, +1568, 1827, 0, +1699, 1960, 0, +1829, 2093, 0, +1960, 2225, 0, +2091, 2358, 0, +2223, 2490, 0, +2355, 2623, 0, +2486, 2755, 0, +2618, 2887, 0, +2750, 3019, 0, +2882, 3152, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +388, 0, 466, +432, 15, 450, +427, 218, 361, +427, 306, 218, +582, 564, 148, +683, 730, 34, +776, 873, 0, +877, 1014, 0, +984, 1152, 0, +1096, 1289, 0, +1213, 1424, 0, +1333, 1559, 0, +1456, 1693, 0, +1582, 1827, 0, +1708, 1960, 0, +1837, 2093, 0, +1966, 2225, 0, +2096, 2358, 0, +2226, 2490, 0, +2357, 2623, 0, +2488, 2755, 0, +2620, 2887, 0, +2751, 3019, 0, +2883, 3152, 0, +3014, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3410, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +609, 0, 606, +598, 0, 551, +582, 148, 466, +582, 148, 277, +582, 357, 148, +730, 652, 34, +870, 873, 0, +954, 1014, 0, +1045, 1152, 0, +1145, 1289, 0, +1251, 1424, 0, +1363, 1559, 0, +1479, 1693, 0, +1599, 1827, 0, +1722, 1960, 0, +1847, 2093, 0, +1973, 2225, 0, +2101, 2358, 0, +2230, 2490, 0, +2360, 2623, 0, +2491, 2755, 0, +2621, 2887, 0, +2752, 3019, 0, +2884, 3152, 0, +3015, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +750, 0, 689, +741, 0, 644, +730, 34, 576, +730, 34, 435, +730, 34, 132, +730, 418, 34, +873, 749, 0, +1014, 987, 0, +1117, 1152, 0, +1203, 1289, 0, +1298, 1424, 0, +1400, 1559, 0, +1508, 1693, 0, +1621, 1827, 0, +1739, 1960, 0, +1860, 2093, 0, +1983, 2225, 0, +2109, 2358, 0, +2236, 2490, 0, +2364, 2623, 0, +2494, 2755, 0, +2624, 2887, 0, +2754, 3019, 0, +2885, 3152, 0, +3016, 3283, 0, +3148, 3416, 0, +3280, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +888, 0, 781, +882, 0, 745, +873, 0, 691, +873, 0, 585, +873, 0, 390, +873, 0, 0, +873, 488, 0, +1014, 852, 0, +1152, 1102, 0, +1271, 1289, 0, +1353, 1424, 0, +1445, 1559, 0, +1544, 1693, 0, +1650, 1827, 0, +1761, 1960, 0, +1877, 2093, 0, +1996, 2225, 0, +2119, 2358, 0, +2243, 2490, 0, +2370, 2623, 0, +2498, 2755, 0, +2627, 2887, 0, +2757, 3019, 0, +2887, 3152, 0, +3018, 3283, 0, +3149, 3416, 0, +3280, 3548, 0, +3412, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1025, 0, 881, +1020, 0, 852, +1014, 0, 810, +1014, 0, 731, +1014, 0, 598, +1014, 0, 323, +1014, 0, 0, +1014, 568, 0, +1152, 960, 0, +1289, 1221, 0, +1418, 1424, 0, +1499, 1559, 0, +1588, 1693, 0, +1684, 1827, 0, +1789, 1960, 0, +1898, 2093, 0, +2013, 2225, 0, +2132, 2358, 0, +2253, 2490, 0, +2378, 2623, 0, +2504, 2755, 0, +2631, 2887, 0, +2760, 3019, 0, +2890, 3152, 0, +3019, 3283, 0, +3150, 3416, 0, +3281, 3548, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1160, 0, 987, +1157, 0, 964, +1152, 0, 932, +1152, 0, 873, +1152, 0, 779, +1152, 0, 614, +1152, 0, 214, +1152, 0, 0, +1152, 656, 0, +1289, 1075, 0, +1424, 1343, 0, +1559, 1556, 0, +1640, 1693, 0, +1727, 1827, 0, +1823, 1960, 0, +1926, 2093, 0, +2034, 2225, 0, +2148, 2358, 0, +2266, 2490, 0, +2387, 2623, 0, +2511, 2755, 0, +2637, 2887, 0, +2764, 3019, 0, +2893, 3152, 0, +3022, 3283, 0, +3152, 3416, 0, +3282, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1295, 0, 1099, +1292, 0, 1081, +1289, 0, 1056, +1289, 0, 1012, +1289, 0, 945, +1289, 0, 837, +1289, 0, 635, +1289, 0, 9, +1289, 0, 0, +1289, 753, 0, +1424, 1193, 0, +1559, 1468, 0, +1693, 1683, 0, +1779, 1827, 0, +1865, 1960, 0, +1960, 2093, 0, +2061, 2225, 0, +2169, 2358, 0, +2283, 2490, 0, +2400, 2623, 0, +2521, 2755, 0, +2644, 2887, 0, +2770, 3019, 0, +2897, 3152, 0, +3025, 3283, 0, +3154, 3416, 0, +3284, 3548, 0, +3415, 3680, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1215, +1427, 0, 1201, +1424, 0, 1182, +1424, 0, 1149, +1424, 0, 1101, +1424, 0, 1027, +1424, 0, 904, +1424, 0, 662, +1424, 0, 0, +1424, 0, 0, +1424, 856, 0, +1559, 1315, 0, +1693, 1594, 0, +1827, 1812, 0, +1917, 1960, 0, +2002, 2093, 0, +2095, 2225, 0, +2196, 2358, 0, +2304, 2490, 0, +2416, 2623, 0, +2533, 2755, 0, +2654, 2887, 0, +2777, 3019, 0, +2903, 3152, 0, +3029, 3283, 0, +3157, 3416, 0, +3287, 3548, 0, +3417, 3680, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1563, 0, 1335, +1561, 0, 1325, +1559, 0, 1310, +1559, 0, 1285, +1559, 0, 1250, +1559, 0, 1198, +1559, 0, 1118, +1559, 0, 981, +1559, 0, 696, +1559, 0, 0, +1559, 0, 0, +1559, 966, 0, +1693, 1439, 0, +1827, 1722, 0, +1960, 1941, 0, +2053, 2093, 0, +2137, 2225, 0, +2230, 2358, 0, +2331, 2490, 0, +2437, 2623, 0, +2550, 2755, 0, +2667, 2887, 0, +2787, 3019, 0, +2910, 3152, 0, +3035, 3283, 0, +3162, 3416, 0, +3290, 3548, 0, +3419, 3680, 0, +3549, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1457, +1695, 0, 1450, +1693, 0, 1439, +1693, 0, 1420, +1693, 0, 1394, +1693, 0, 1357, +1693, 0, 1302, +1693, 0, 1216, +1693, 0, 1067, +1693, 0, 736, +1693, 0, 0, +1693, 0, 0, +1693, 1080, 0, +1827, 1565, 0, +1960, 1851, 0, +2093, 2071, 0, +2188, 2225, 0, +2271, 2358, 0, +2364, 2490, 0, +2464, 2623, 0, +2571, 2755, 0, +2683, 2887, 0, +2799, 3019, 0, +2919, 3152, 0, +3042, 3283, 0, +3167, 3416, 0, +3294, 3548, 0, +3422, 3680, 0, +3551, 3812, 0, +3681, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1828, 0, 1582, +1828, 0, 1576, +1827, 0, 1568, +1827, 0, 1554, +1827, 0, 1535, +1827, 0, 1508, +1827, 0, 1469, +1827, 0, 1412, +1827, 0, 1321, +1827, 0, 1161, +1827, 0, 786, +1827, 0, 0, +1827, 0, 0, +1827, 1198, 0, +1960, 1692, 0, +2093, 1981, 0, +2225, 2202, 0, +2322, 2358, 0, +2406, 2490, 0, +2498, 2623, 0, +2598, 2755, 0, +2704, 2887, 0, +2816, 3019, 0, +2932, 3152, 0, +3052, 3283, 0, +3175, 3416, 0, +3300, 3548, 0, +3426, 3680, 0, +3554, 3812, 0, +3683, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +1961, 0, 1709, +1961, 0, 1705, +1960, 0, 1699, +1960, 0, 1688, +1960, 0, 1674, +1960, 0, 1654, +1960, 0, 1626, +1960, 0, 1586, +1960, 0, 1526, +1960, 0, 1431, +1960, 0, 1263, +1960, 0, 844, +1960, 0, 0, +1960, 0, 0, +1960, 1320, 0, +2093, 1821, 0, +2225, 2111, 0, +2358, 2333, 0, +2456, 2490, 0, +2539, 2623, 0, +2631, 2755, 0, +2731, 2887, 0, +2836, 3019, 0, +2948, 3152, 0, +3064, 3283, 0, +3184, 3416, 0, +3307, 3548, 0, +3432, 3680, 0, +3559, 3812, 0, +3687, 3944, 0, +3816, 4076, 0, +3945, 4095, 0, +2094, 0, 1837, +2093, 0, 1834, +2093, 0, 1829, +2093, 0, 1821, +2093, 0, 1811, +2093, 0, 1796, +2093, 0, 1776, +2093, 0, 1748, +2093, 0, 1706, +2093, 0, 1645, +2093, 0, 1547, +2093, 0, 1370, +2093, 0, 913, +2093, 0, 0, +2093, 0, 0, +2093, 1444, 0, +2225, 1950, 0, +2358, 2241, 0, +2490, 2464, 0, +2589, 2623, 0, +2672, 2755, 0, +2764, 2887, 0, +2863, 3019, 0, +2969, 3152, 0, +3081, 3283, 0, +3197, 3416, 0, +3317, 3548, 0, +3439, 3680, 0, +3564, 3812, 0, +3691, 3944, 0, +3819, 4076, 0, +3948, 4095, 0, +2226, 0, 1966, +2226, 0, 1963, +2225, 0, 1960, +2225, 0, 1954, +2225, 0, 1946, +2225, 0, 1936, +2225, 0, 1921, +2225, 0, 1900, +2225, 0, 1871, +2225, 0, 1829, +2225, 0, 1767, +2225, 0, 1666, +2225, 0, 1484, +2225, 0, 990, +2225, 0, 0, +2225, 0, 0, +2225, 1570, 0, +2358, 2080, 0, +2490, 2373, 0, +2623, 2596, 0, +2722, 2755, 0, +2805, 2887, 0, +2896, 3019, 0, +2996, 3152, 0, +3101, 3283, 0, +3213, 3416, 0, +3329, 3548, 0, +3449, 3680, 0, +3572, 3812, 0, +3696, 3944, 0, +3823, 4076, 0, +3951, 4095, 0, +2358, 0, 2096, +2358, 0, 2094, +2358, 0, 2091, +2358, 0, 2087, +2358, 0, 2081, +2358, 0, 2073, +2358, 0, 2062, +2358, 0, 2047, +2358, 0, 2027, +2358, 0, 1997, +2358, 0, 1955, +2358, 0, 1891, +2358, 0, 1788, +2358, 0, 1600, +2358, 0, 1076, +2358, 0, 0, +2358, 0, 0, +2358, 1698, 0, +2490, 2211, 0, +2623, 2504, 0, +2755, 2728, 0, +2855, 2887, 0, +2938, 3019, 0, +3029, 3152, 0, +3128, 3283, 0, +3234, 3416, 0, +3346, 3548, 0, +3462, 3680, 0, +3581, 3812, 0, +3704, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2226, +2491, 0, 2225, +2490, 0, 2223, +2490, 0, 2220, +2490, 0, 2215, +2490, 0, 2209, +2490, 0, 2202, +2490, 0, 2190, +2490, 0, 2175, +2490, 0, 2154, +2490, 0, 2125, +2490, 0, 2082, +2490, 0, 2017, +2490, 0, 1913, +2490, 0, 1722, +2490, 0, 1173, +2490, 0, 0, +2490, 0, 0, +2490, 1826, 0, +2623, 2342, 0, +2755, 2636, 0, +2887, 2859, 0, +2987, 3019, 0, +3070, 3152, 0, +3161, 3283, 0, +3260, 3416, 0, +3366, 3548, 0, +3478, 3680, 0, +3594, 3812, 0, +3713, 3944, 0, +3836, 4076, 0, +3961, 4095, 0, +2623, 0, 2357, +2623, 0, 2356, +2623, 0, 2355, +2623, 0, 2352, +2623, 0, 2349, +2623, 0, 2345, +2623, 0, 2338, +2623, 0, 2331, +2623, 0, 2320, +2623, 0, 2304, +2623, 0, 2283, +2623, 0, 2253, +2623, 0, 2210, +2623, 0, 2144, +2623, 0, 2039, +2623, 0, 1845, +2623, 0, 1275, +2623, 0, 0, +2623, 0, 0, +2623, 1956, 0, +2755, 2474, 0, +2887, 2767, 0, +3019, 2991, 0, +3120, 3152, 0, +3202, 3283, 0, +3294, 3416, 0, +3393, 3548, 0, +3499, 3680, 0, +3610, 3812, 0, +3726, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2488, +2755, 0, 2488, +2755, 0, 2486, +2755, 0, 2485, +2755, 0, 2482, +2755, 0, 2479, +2755, 0, 2475, +2755, 0, 2469, +2755, 0, 2460, +2755, 0, 2449, +2755, 0, 2434, +2755, 0, 2413, +2755, 0, 2383, +2755, 0, 2339, +2755, 0, 2274, +2755, 0, 2167, +2755, 0, 1971, +2755, 0, 1386, +2755, 0, 0, +2755, 0, 0, +2755, 2086, 0, +2887, 2605, 0, +3019, 2898, 0, +3152, 3123, 0, +3252, 3283, 0, +3335, 3416, 0, +3426, 3548, 0, +3525, 3680, 0, +3631, 3812, 0, +3742, 3944, 0, +3858, 4076, 0, +3978, 4095, 0, +2887, 0, 2620, +2887, 0, 2619, +2887, 0, 2618, +2887, 0, 2617, +2887, 0, 2615, +2887, 0, 2613, +2887, 0, 2609, +2887, 0, 2605, +2887, 0, 2599, +2887, 0, 2591, +2887, 0, 2580, +2887, 0, 2564, +2887, 0, 2543, +2887, 0, 2513, +2887, 0, 2469, +2887, 0, 2403, +2887, 0, 2296, +2887, 0, 2098, +2887, 0, 1497, +2887, 0, 0, +2887, 0, 0, +2887, 2217, 0, +3019, 2736, 0, +3152, 3031, 0, +3283, 3255, 0, +3384, 3416, 0, +3467, 3548, 0, +3558, 3680, 0, +3657, 3812, 0, +3763, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2751, +3019, 0, 2751, +3019, 0, 2750, +3019, 0, 2749, +3019, 0, 2747, +3019, 0, 2746, +3019, 0, 2743, +3019, 0, 2740, +3019, 0, 2735, +3019, 0, 2729, +3019, 0, 2721, +3019, 0, 2710, +3019, 0, 2695, +3019, 0, 2673, +3019, 0, 2643, +3019, 0, 2599, +3019, 0, 2533, +3019, 0, 2426, +3019, 0, 2225, +3019, 0, 1613, +3019, 0, 0, +3019, 0, 0, +3019, 2347, 0, +3152, 2869, 0, +3283, 3163, 0, +3416, 3387, 0, +3516, 3548, 0, +3599, 3680, 0, +3690, 3812, 0, +3790, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2883, +3152, 0, 2883, +3152, 0, 2882, +3152, 0, 2881, +3152, 0, 2880, +3152, 0, 2879, +3152, 0, 2877, +3152, 0, 2875, +3152, 0, 2871, +3152, 0, 2867, +3152, 0, 2861, +3152, 0, 2853, +3152, 0, 2842, +3152, 0, 2826, +3152, 0, 2805, +3152, 0, 2774, +3152, 0, 2730, +3152, 0, 2664, +3152, 0, 2556, +3152, 0, 2355, +3152, 0, 1735, +3152, 0, 0, +3152, 0, 0, +3152, 2479, 0, +3283, 2999, 0, +3416, 3294, 0, +3548, 3519, 0, +3649, 3680, 0, +3731, 3812, 0, +3823, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3014, +3283, 0, 3014, +3283, 0, 3014, +3283, 0, 3013, +3283, 0, 3013, +3283, 0, 3011, +3283, 0, 3010, +3283, 0, 3008, +3283, 0, 3006, +3283, 0, 3002, +3283, 0, 2998, +3283, 0, 2992, +3283, 0, 2984, +3283, 0, 2973, +3283, 0, 2957, +3283, 0, 2936, +3283, 0, 2905, +3283, 0, 2861, +3283, 0, 2794, +3283, 0, 2686, +3283, 0, 2484, +3283, 0, 1856, +3283, 0, 0, +3283, 0, 0, +3283, 2610, 0, +3416, 3132, 0, +3548, 3427, 0, +3680, 3651, 0, +3781, 3812, 0, +3863, 3944, 0, +3955, 4076, 0, +4054, 4095, 0, +3416, 0, 3147, +3416, 0, 3146, +3416, 0, 3146, +3416, 0, 3146, +3416, 0, 3145, +3416, 0, 3144, +3416, 0, 3143, +3416, 0, 3142, +3416, 0, 3140, +3416, 0, 3138, +3416, 0, 3134, +3416, 0, 3130, +3416, 0, 3124, +3416, 0, 3115, +3416, 0, 3104, +3416, 0, 3089, +3416, 0, 3067, +3416, 0, 3037, +3416, 0, 2992, +3416, 0, 2926, +3416, 0, 2817, +3416, 0, 2615, +3416, 0, 1986, +3416, 0, 0, +3416, 0, 0, +3416, 2742, 0, +3548, 3264, 0, +3680, 3559, 0, +3812, 3783, 0, +3913, 3944, 0, +3996, 4076, 0, +4087, 4095, 0, +3548, 0, 3279, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3277, +3548, 0, 3277, +3548, 0, 3276, +3548, 0, 3275, +3548, 0, 3274, +3548, 0, 3272, +3548, 0, 3269, +3548, 0, 3266, +3548, 0, 3261, +3548, 0, 3256, +3548, 0, 3247, +3548, 0, 3236, +3548, 0, 3221, +3548, 0, 3199, +3548, 0, 3168, +3548, 0, 3124, +3548, 0, 3057, +3548, 0, 2949, +3548, 0, 2746, +3548, 0, 2111, +3548, 0, 0, +3548, 0, 0, +3548, 2873, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3407, +3680, 0, 3405, +3680, 0, 3404, +3680, 0, 3401, +3680, 0, 3398, +3680, 0, 3393, +3680, 0, 3387, +3680, 0, 3379, +3680, 0, 3368, +3680, 0, 3353, +3680, 0, 3331, +3680, 0, 3300, +3680, 0, 3256, +3680, 0, 3189, +3680, 0, 3081, +3680, 0, 2877, +3680, 0, 2242, +3680, 0, 0, +3680, 0, 0, +3680, 3005, 0, +3812, 3528, 0, +3944, 3822, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3539, +3812, 0, 3537, +3812, 0, 3536, +3812, 0, 3533, +3812, 0, 3530, +3812, 0, 3525, +3812, 0, 3519, +3812, 0, 3511, +3812, 0, 3500, +3812, 0, 3484, +3812, 0, 3463, +3812, 0, 3432, +3812, 0, 3388, +3812, 0, 3321, +3812, 0, 3212, +3812, 0, 3009, +3812, 0, 2371, +3812, 0, 0, +3812, 0, 0, +3812, 3137, 0, +3944, 3660, 0, +4076, 3954, 0, +4095, 4095, 0, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3669, +3944, 0, 3668, +3944, 0, 3665, +3944, 0, 3662, +3944, 0, 3657, +3944, 0, 3651, +3944, 0, 3643, +3944, 0, 3632, +3944, 0, 3616, +3944, 0, 3595, +3944, 0, 3564, +3944, 0, 3520, +3944, 0, 3453, +3944, 0, 3344, +3944, 0, 3140, +3944, 0, 2500, +3944, 0, 0, +3944, 0, 0, +3944, 3269, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3803, +4076, 0, 3801, +4076, 0, 3799, +4076, 0, 3797, +4076, 0, 3793, +4076, 0, 3789, +4076, 0, 3783, +4076, 0, 3775, +4076, 0, 3763, +4076, 0, 3748, +4076, 0, 3726, +4076, 0, 3696, +4076, 0, 3651, +4076, 0, 3585, +4076, 0, 3476, +4076, 0, 3272, +4076, 0, 2628, +4076, 0, 0, +4076, 0, 0, +4076, 3401, 0, +4095, 3924, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3933, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3926, +4095, 0, 3921, +4095, 0, 3915, +4095, 0, 3907, +4095, 0, 3896, +4095, 0, 3880, +4095, 0, 3859, +4095, 0, 3828, +4095, 0, 3784, +4095, 0, 3717, +4095, 0, 3608, +4095, 0, 3404, +4095, 0, 2762, +4095, 0, 0, +4095, 0, 0, +4095, 3533, 0, +0, 312, 466, +0, 419, 466, +0, 466, 388, +0, 466, 154, +0, 609, 0, +59, 750, 0, +350, 888, 0, +573, 1025, 0, +762, 1160, 0, +934, 1295, 0, +1092, 1429, 0, +1244, 1563, 0, +1390, 1696, 0, +1532, 1828, 0, +1672, 1961, 0, +1809, 2094, 0, +1945, 2226, 0, +2080, 2358, 0, +2215, 2491, 0, +2348, 2623, 0, +2482, 2755, 0, +2615, 2887, 0, +2747, 3019, 0, +2880, 3152, 0, +3012, 3284, 0, +3145, 3416, 0, +3277, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 171, 466, +15, 333, 450, +15, 450, 432, +15, 450, 225, +0, 598, 0, +258, 741, 0, +466, 882, 0, +647, 1020, 0, +813, 1157, 0, +968, 1292, 0, +1118, 1427, 0, +1262, 1561, 0, +1403, 1695, 0, +1542, 1828, 0, +1679, 1961, 0, +1814, 2093, 0, +1949, 2226, 0, +2083, 2358, 0, +2217, 2491, 0, +2350, 2623, 0, +2483, 2755, 0, +2616, 2887, 0, +2748, 3019, 0, +2881, 3152, 0, +3013, 3283, 0, +3145, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 0, 466, +15, 145, 450, +218, 361, 427, +218, 427, 306, +277, 582, 148, +435, 730, 34, +585, 873, 0, +731, 1014, 0, +873, 1152, 0, +1012, 1289, 0, +1149, 1424, 0, +1285, 1559, 0, +1420, 1693, 0, +1554, 1827, 0, +1688, 1960, 0, +1821, 2093, 0, +1954, 2225, 0, +2087, 2358, 0, +2220, 2490, 0, +2352, 2623, 0, +2485, 2755, 0, +2617, 2887, 0, +2749, 3019, 0, +2881, 3152, 0, +3013, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +154, 0, 466, +225, 15, 450, +306, 218, 427, +396, 396, 396, +494, 560, 350, +598, 714, 280, +708, 862, 166, +823, 1005, 0, +942, 1146, 0, +1064, 1284, 0, +1188, 1421, 0, +1315, 1557, 0, +1442, 1691, 0, +1571, 1825, 0, +1700, 1959, 0, +1830, 2092, 0, +1961, 2225, 0, +2092, 2357, 0, +2223, 2490, 0, +2355, 2622, 0, +2487, 2755, 0, +2619, 2887, 0, +2750, 3019, 0, +2882, 3151, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +485, 0, 609, +520, 0, 598, +564, 148, 582, +560, 350, 494, +560, 438, 350, +714, 696, 280, +815, 862, 166, +908, 1005, 0, +1009, 1146, 0, +1116, 1284, 0, +1228, 1421, 0, +1345, 1557, 0, +1465, 1691, 0, +1588, 1825, 0, +1714, 1959, 0, +1841, 2092, 0, +1969, 2225, 0, +2098, 2357, 0, +2228, 2490, 0, +2358, 2622, 0, +2489, 2755, 0, +2620, 2887, 0, +2751, 3019, 0, +2883, 3151, 0, +3015, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +723, 0, 750, +741, 0, 738, +730, 34, 683, +714, 280, 598, +714, 280, 409, +714, 490, 280, +862, 784, 166, +1002, 1005, 0, +1086, 1146, 0, +1177, 1284, 0, +1277, 1421, 0, +1384, 1557, 0, +1495, 1691, 0, +1611, 1825, 0, +1731, 1959, 0, +1854, 2092, 0, +1979, 2225, 0, +2105, 2357, 0, +2234, 2490, 0, +2362, 2622, 0, +2492, 2755, 0, +2623, 2887, 0, +2753, 3019, 0, +2885, 3151, 0, +3016, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +888, 0, 852, +882, 0, 822, +873, 0, 776, +862, 166, 708, +862, 166, 567, +862, 166, 264, +862, 550, 166, +1005, 881, 0, +1146, 1119, 0, +1249, 1284, 0, +1335, 1421, 0, +1430, 1557, 0, +1532, 1691, 0, +1640, 1825, 0, +1754, 1959, 0, +1871, 2092, 0, +1992, 2225, 0, +2115, 2357, 0, +2241, 2490, 0, +2368, 2622, 0, +2497, 2755, 0, +2626, 2887, 0, +2756, 3019, 0, +2886, 3151, 0, +3017, 3283, 0, +3148, 3416, 0, +3280, 3548, 0, +3412, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1025, 0, 939, +1020, 0, 914, +1014, 0, 877, +1005, 0, 823, +1005, 0, 717, +1005, 0, 523, +1005, 0, 0, +1005, 620, 0, +1146, 983, 0, +1284, 1235, 0, +1403, 1421, 0, +1486, 1557, 0, +1577, 1691, 0, +1676, 1825, 0, +1781, 1959, 0, +1893, 2092, 0, +2009, 2225, 0, +2128, 2357, 0, +2251, 2490, 0, +2375, 2622, 0, +2502, 2755, 0, +2630, 2887, 0, +2759, 3019, 0, +2889, 3151, 0, +3019, 3283, 0, +3150, 3416, 0, +3281, 3548, 0, +3412, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1160, 0, 1033, +1157, 0, 1013, +1152, 0, 984, +1146, 0, 942, +1146, 0, 863, +1146, 0, 730, +1146, 0, 455, +1146, 0, 0, +1146, 700, 0, +1284, 1093, 0, +1421, 1353, 0, +1551, 1557, 0, +1631, 1691, 0, +1720, 1825, 0, +1817, 1959, 0, +1920, 2092, 0, +2030, 2225, 0, +2145, 2357, 0, +2264, 2490, 0, +2385, 2622, 0, +2510, 2755, 0, +2636, 2887, 0, +2763, 3019, 0, +2892, 3151, 0, +3021, 3283, 0, +3151, 3416, 0, +3282, 3548, 0, +3413, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1295, 0, 1135, +1292, 0, 1119, +1289, 0, 1096, +1284, 0, 1064, +1284, 0, 1005, +1284, 0, 911, +1284, 0, 746, +1284, 0, 346, +1284, 0, 0, +1284, 788, 0, +1421, 1207, 0, +1557, 1476, 0, +1691, 1688, 0, +1772, 1825, 0, +1860, 1959, 0, +1955, 2092, 0, +2058, 2225, 0, +2166, 2357, 0, +2280, 2490, 0, +2398, 2622, 0, +2520, 2755, 0, +2643, 2887, 0, +2769, 3019, 0, +2896, 3151, 0, +3025, 3283, 0, +3154, 3416, 0, +3284, 3548, 0, +3415, 3680, 0, +3545, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1244, +1427, 0, 1231, +1424, 0, 1213, +1421, 0, 1188, +1421, 0, 1144, +1421, 0, 1077, +1421, 0, 969, +1421, 0, 767, +1421, 0, 141, +1421, 0, 0, +1421, 885, 0, +1557, 1326, 0, +1691, 1600, 0, +1825, 1816, 0, +1911, 1959, 0, +1997, 2092, 0, +2092, 2225, 0, +2193, 2357, 0, +2302, 2490, 0, +2414, 2622, 0, +2532, 2755, 0, +2653, 2887, 0, +2776, 3019, 0, +2902, 3151, 0, +3029, 3283, 0, +3157, 3416, 0, +3286, 3548, 0, +3416, 3680, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1563, 0, 1357, +1561, 0, 1347, +1559, 0, 1333, +1557, 0, 1315, +1557, 0, 1281, +1557, 0, 1233, +1557, 0, 1159, +1557, 0, 1037, +1557, 0, 794, +1557, 0, 0, +1557, 0, 0, +1557, 988, 0, +1691, 1447, 0, +1825, 1727, 0, +1959, 1944, 0, +2049, 2092, 0, +2134, 2225, 0, +2228, 2357, 0, +2329, 2490, 0, +2436, 2622, 0, +2549, 2755, 0, +2666, 2887, 0, +2786, 3019, 0, +2909, 3151, 0, +3034, 3283, 0, +3161, 3416, 0, +3290, 3548, 0, +3419, 3680, 0, +3549, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1475, +1695, 0, 1467, +1693, 0, 1456, +1691, 0, 1442, +1691, 0, 1417, +1691, 0, 1382, +1691, 0, 1330, +1691, 0, 1249, +1691, 0, 1113, +1691, 0, 827, +1691, 0, 0, +1691, 0, 0, +1691, 1098, 0, +1825, 1571, 0, +1959, 1854, 0, +2092, 2073, 0, +2185, 2225, 0, +2269, 2357, 0, +2362, 2490, 0, +2463, 2622, 0, +2570, 2755, 0, +2682, 2887, 0, +2798, 3019, 0, +2919, 3151, 0, +3042, 3283, 0, +3167, 3416, 0, +3294, 3548, 0, +3422, 3680, 0, +3551, 3812, 0, +3681, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1828, 0, 1596, +1828, 0, 1590, +1827, 0, 1582, +1825, 0, 1571, +1825, 0, 1552, +1825, 0, 1526, +1825, 0, 1489, +1825, 0, 1434, +1825, 0, 1348, +1825, 0, 1199, +1825, 0, 869, +1825, 0, 0, +1825, 0, 0, +1825, 1212, 0, +1959, 1697, 0, +2092, 1983, 0, +2225, 2203, 0, +2320, 2357, 0, +2404, 2490, 0, +2496, 2622, 0, +2596, 2755, 0, +2703, 2887, 0, +2815, 3019, 0, +2932, 3151, 0, +3051, 3283, 0, +3174, 3416, 0, +3299, 3548, 0, +3426, 3680, 0, +3554, 3812, 0, +3683, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +1961, 0, 1719, +1961, 0, 1715, +1960, 0, 1708, +1959, 0, 1700, +1959, 0, 1686, +1959, 0, 1667, +1959, 0, 1640, +1959, 0, 1601, +1959, 0, 1544, +1959, 0, 1453, +1959, 0, 1294, +1959, 0, 917, +1959, 0, 0, +1959, 0, 0, +1959, 1331, 0, +2092, 1824, 0, +2225, 2112, 0, +2357, 2334, 0, +2454, 2490, 0, +2538, 2622, 0, +2630, 2755, 0, +2730, 2887, 0, +2836, 3019, 0, +2948, 3151, 0, +3064, 3283, 0, +3184, 3416, 0, +3307, 3548, 0, +3432, 3680, 0, +3558, 3812, 0, +3686, 3944, 0, +3815, 4076, 0, +3945, 4095, 0, +2094, 0, 1845, +2093, 0, 1841, +2093, 0, 1837, +2092, 0, 1830, +2092, 0, 1820, +2092, 0, 1806, +2092, 0, 1786, +2092, 0, 1758, +2092, 0, 1718, +2092, 0, 1658, +2092, 0, 1564, +2092, 0, 1394, +2092, 0, 977, +2092, 0, 0, +2092, 0, 0, +2092, 1452, 0, +2225, 1953, 0, +2357, 2243, 0, +2490, 2465, 0, +2588, 2622, 0, +2671, 2755, 0, +2763, 2887, 0, +2863, 3019, 0, +2969, 3151, 0, +3080, 3283, 0, +3196, 3416, 0, +3316, 3548, 0, +3439, 3680, 0, +3564, 3812, 0, +3691, 3944, 0, +3818, 4076, 0, +3948, 4095, 0, +2226, 0, 1972, +2226, 0, 1969, +2225, 0, 1966, +2225, 0, 1961, +2225, 0, 1953, +2225, 0, 1943, +2225, 0, 1928, +2225, 0, 1908, +2225, 0, 1880, +2225, 0, 1839, +2225, 0, 1777, +2225, 0, 1679, +2225, 0, 1503, +2225, 0, 1044, +2225, 0, 0, +2225, 0, 0, +2225, 1576, 0, +2357, 2082, 0, +2490, 2374, 0, +2622, 2596, 0, +2721, 2755, 0, +2804, 2887, 0, +2896, 3019, 0, +2995, 3151, 0, +3101, 3283, 0, +3213, 3416, 0, +3329, 3548, 0, +3449, 3680, 0, +3571, 3812, 0, +3696, 3944, 0, +3823, 4076, 0, +3951, 4095, 0, +2358, 0, 2100, +2358, 0, 2098, +2358, 0, 2096, +2357, 0, 2092, +2357, 0, 2086, +2357, 0, 2078, +2357, 0, 2068, +2357, 0, 2053, +2357, 0, 2032, +2357, 0, 2004, +2357, 0, 1962, +2357, 0, 1899, +2357, 0, 1798, +2357, 0, 1615, +2357, 0, 1122, +2357, 0, 0, +2357, 0, 0, +2357, 1702, 0, +2490, 2213, 0, +2622, 2505, 0, +2755, 2728, 0, +2854, 2887, 0, +2937, 3019, 0, +3029, 3151, 0, +3128, 3283, 0, +3234, 3416, 0, +3345, 3548, 0, +3461, 3680, 0, +3581, 3812, 0, +3703, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2230, +2491, 0, 2228, +2490, 0, 2226, +2490, 0, 2223, +2490, 0, 2219, +2490, 0, 2213, +2490, 0, 2206, +2490, 0, 2195, +2490, 0, 2180, +2490, 0, 2159, +2490, 0, 2129, +2490, 0, 2087, +2490, 0, 2023, +2490, 0, 1920, +2490, 0, 1733, +2490, 0, 1210, +2490, 0, 0, +2490, 0, 0, +2490, 1830, 0, +2622, 2343, 0, +2755, 2636, 0, +2887, 2860, 0, +2987, 3019, 0, +3070, 3151, 0, +3161, 3283, 0, +3260, 3416, 0, +3366, 3548, 0, +3478, 3680, 0, +3594, 3812, 0, +3713, 3944, 0, +3836, 4076, 0, +3961, 4095, 0, +2623, 0, 2359, +2623, 0, 2358, +2623, 0, 2357, +2622, 0, 2355, +2622, 0, 2352, +2622, 0, 2347, +2622, 0, 2341, +2622, 0, 2334, +2622, 0, 2323, +2622, 0, 2308, +2622, 0, 2287, +2622, 0, 2256, +2622, 0, 2214, +2622, 0, 2149, +2622, 0, 2045, +2622, 0, 1853, +2622, 0, 1304, +2622, 0, 0, +2622, 0, 0, +2622, 1958, 0, +2755, 2475, 0, +2887, 2768, 0, +3019, 2991, 0, +3119, 3151, 0, +3202, 3283, 0, +3293, 3416, 0, +3393, 3548, 0, +3499, 3680, 0, +3610, 3812, 0, +3726, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2490, +2755, 0, 2489, +2755, 0, 2488, +2755, 0, 2487, +2755, 0, 2484, +2755, 0, 2481, +2755, 0, 2477, +2755, 0, 2471, +2755, 0, 2463, +2755, 0, 2452, +2755, 0, 2436, +2755, 0, 2415, +2755, 0, 2386, +2755, 0, 2342, +2755, 0, 2277, +2755, 0, 2172, +2755, 0, 1977, +2755, 0, 1409, +2755, 0, 0, +2755, 0, 0, +2755, 2088, 0, +2887, 2605, 0, +3019, 2899, 0, +3151, 3123, 0, +3252, 3283, 0, +3335, 3416, 0, +3426, 3548, 0, +3525, 3680, 0, +3631, 3812, 0, +3742, 3944, 0, +3858, 4076, 0, +3978, 4095, 0, +2887, 0, 2621, +2887, 0, 2620, +2887, 0, 2620, +2887, 0, 2619, +2887, 0, 2617, +2887, 0, 2614, +2887, 0, 2611, +2887, 0, 2607, +2887, 0, 2601, +2887, 0, 2592, +2887, 0, 2581, +2887, 0, 2566, +2887, 0, 2545, +2887, 0, 2515, +2887, 0, 2471, +2887, 0, 2406, +2887, 0, 2299, +2887, 0, 2103, +2887, 0, 1516, +2887, 0, 0, +2887, 0, 0, +2887, 2218, 0, +3019, 2736, 0, +3151, 3031, 0, +3283, 3255, 0, +3384, 3416, 0, +3467, 3548, 0, +3558, 3680, 0, +3657, 3812, 0, +3763, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2752, +3019, 0, 2752, +3019, 0, 2751, +3019, 0, 2750, +3019, 0, 2749, +3019, 0, 2747, +3019, 0, 2745, +3019, 0, 2741, +3019, 0, 2737, +3019, 0, 2731, +3019, 0, 2723, +3019, 0, 2712, +3019, 0, 2696, +3019, 0, 2675, +3019, 0, 2645, +3019, 0, 2601, +3019, 0, 2535, +3019, 0, 2428, +3019, 0, 2229, +3019, 0, 1628, +3019, 0, 0, +3019, 0, 0, +3019, 2348, 0, +3151, 2869, 0, +3283, 3163, 0, +3416, 3387, 0, +3516, 3548, 0, +3599, 3680, 0, +3690, 3812, 0, +3790, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2884, +3152, 0, 2883, +3152, 0, 2883, +3151, 0, 2882, +3151, 0, 2881, +3151, 0, 2880, +3151, 0, 2878, +3151, 0, 2876, +3151, 0, 2872, +3151, 0, 2868, +3151, 0, 2862, +3151, 0, 2854, +3151, 0, 2842, +3151, 0, 2827, +3151, 0, 2806, +3151, 0, 2775, +3151, 0, 2732, +3151, 0, 2665, +3151, 0, 2558, +3151, 0, 2358, +3151, 0, 1746, +3151, 0, 0, +3151, 0, 0, +3151, 2480, 0, +3283, 2999, 0, +3416, 3294, 0, +3548, 3519, 0, +3649, 3680, 0, +3731, 3812, 0, +3822, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3015, +3283, 0, 3015, +3283, 0, 3014, +3283, 0, 3014, +3283, 0, 3013, +3283, 0, 3012, +3283, 0, 3011, +3283, 0, 3009, +3283, 0, 3007, +3283, 0, 3003, +3283, 0, 2999, +3283, 0, 2993, +3283, 0, 2985, +3283, 0, 2973, +3283, 0, 2958, +3283, 0, 2936, +3283, 0, 2906, +3283, 0, 2862, +3283, 0, 2795, +3283, 0, 2688, +3283, 0, 2486, +3283, 0, 1864, +3283, 0, 0, +3283, 0, 0, +3283, 2611, 0, +3416, 3132, 0, +3548, 3427, 0, +3680, 3651, 0, +3781, 3812, 0, +3863, 3944, 0, +3955, 4076, 0, +4054, 4095, 0, +3416, 0, 3147, +3416, 0, 3147, +3416, 0, 3147, +3416, 0, 3146, +3416, 0, 3146, +3416, 0, 3145, +3416, 0, 3144, +3416, 0, 3142, +3416, 0, 3141, +3416, 0, 3138, +3416, 0, 3135, +3416, 0, 3130, +3416, 0, 3124, +3416, 0, 3116, +3416, 0, 3105, +3416, 0, 3089, +3416, 0, 3068, +3416, 0, 3038, +3416, 0, 2993, +3416, 0, 2927, +3416, 0, 2818, +3416, 0, 2617, +3416, 0, 1992, +3416, 0, 0, +3416, 0, 0, +3416, 2742, 0, +3548, 3264, 0, +3680, 3559, 0, +3812, 3783, 0, +3913, 3944, 0, +3995, 4076, 0, +4087, 4095, 0, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3277, +3548, 0, 3277, +3548, 0, 3275, +3548, 0, 3274, +3548, 0, 3272, +3548, 0, 3270, +3548, 0, 3267, +3548, 0, 3262, +3548, 0, 3256, +3548, 0, 3248, +3548, 0, 3237, +3548, 0, 3221, +3548, 0, 3200, +3548, 0, 3169, +3548, 0, 3125, +3548, 0, 3058, +3548, 0, 2950, +3548, 0, 2747, +3548, 0, 2115, +3548, 0, 0, +3548, 0, 0, +3548, 2874, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3407, +3680, 0, 3406, +3680, 0, 3404, +3680, 0, 3401, +3680, 0, 3398, +3680, 0, 3394, +3680, 0, 3388, +3680, 0, 3379, +3680, 0, 3368, +3680, 0, 3353, +3680, 0, 3331, +3680, 0, 3301, +3680, 0, 3256, +3680, 0, 3189, +3680, 0, 3081, +3680, 0, 2878, +3680, 0, 2246, +3680, 0, 0, +3680, 0, 0, +3680, 3006, 0, +3812, 3528, 0, +3944, 3823, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3539, +3812, 0, 3538, +3812, 0, 3536, +3812, 0, 3533, +3812, 0, 3530, +3812, 0, 3526, +3812, 0, 3520, +3812, 0, 3511, +3812, 0, 3500, +3812, 0, 3485, +3812, 0, 3463, +3812, 0, 3432, +3812, 0, 3388, +3812, 0, 3321, +3812, 0, 3213, +3812, 0, 3010, +3812, 0, 2374, +3812, 0, 0, +3812, 0, 0, +3812, 3138, 0, +3944, 3660, 0, +4076, 3954, 0, +4095, 4095, 0, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3669, +3944, 0, 3668, +3944, 0, 3665, +3944, 0, 3662, +3944, 0, 3657, +3944, 0, 3651, +3944, 0, 3643, +3944, 0, 3632, +3944, 0, 3616, +3944, 0, 3595, +3944, 0, 3564, +3944, 0, 3520, +3944, 0, 3453, +3944, 0, 3344, +3944, 0, 3141, +3944, 0, 2502, +3944, 0, 0, +3944, 0, 0, +3944, 3269, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3801, +4076, 0, 3799, +4076, 0, 3797, +4076, 0, 3794, +4076, 0, 3789, +4076, 0, 3783, +4076, 0, 3775, +4076, 0, 3764, +4076, 0, 3748, +4076, 0, 3727, +4076, 0, 3696, +4076, 0, 3652, +4076, 0, 3585, +4076, 0, 3476, +4076, 0, 3272, +4076, 0, 2630, +4076, 0, 0, +4076, 0, 0, +4076, 3401, 0, +4095, 3924, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3933, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3926, +4095, 0, 3921, +4095, 0, 3915, +4095, 0, 3907, +4095, 0, 3896, +4095, 0, 3880, +4095, 0, 3859, +4095, 0, 3828, +4095, 0, 3784, +4095, 0, 3717, +4095, 0, 3608, +4095, 0, 3405, +4095, 0, 2764, +4095, 0, 0, +4095, 0, 0, +4095, 3534, 0, +0, 427, 609, +0, 512, 609, +0, 606, 609, +0, 609, 485, +0, 609, 224, +0, 750, 0, +0, 888, 0, +371, 1025, 0, +640, 1160, 0, +853, 1295, 0, +1037, 1429, 0, +1205, 1563, 0, +1362, 1696, 0, +1512, 1828, 0, +1657, 1961, 0, +1798, 2094, 0, +1937, 2226, 0, +2074, 2358, 0, +2210, 2491, 0, +2345, 2623, 0, +2479, 2755, 0, +2613, 2887, 0, +2746, 3019, 0, +2879, 3152, 0, +3012, 3284, 0, +3144, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 322, 609, +0, 444, 598, +0, 551, 598, +0, 598, 520, +0, 598, 286, +0, 741, 0, +190, 882, 0, +482, 1020, 0, +705, 1157, 0, +894, 1292, 0, +1065, 1427, 0, +1225, 1561, 0, +1376, 1695, 0, +1522, 1828, 0, +1664, 1961, 0, +1804, 2093, 0, +1941, 2226, 0, +2077, 2358, 0, +2212, 2491, 0, +2347, 2623, 0, +2481, 2755, 0, +2614, 2887, 0, +2747, 3019, 0, +2880, 3152, 0, +3012, 3283, 0, +3145, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 127, 609, +0, 303, 598, +148, 466, 582, +148, 582, 564, +148, 582, 357, +132, 730, 34, +390, 873, 0, +598, 1014, 0, +779, 1152, 0, +945, 1289, 0, +1101, 1424, 0, +1250, 1559, 0, +1394, 1693, 0, +1535, 1827, 0, +1674, 1960, 0, +1811, 2093, 0, +1946, 2225, 0, +2081, 2358, 0, +2215, 2490, 0, +2349, 2623, 0, +2482, 2755, 0, +2615, 2887, 0, +2747, 3019, 0, +2880, 3152, 0, +3013, 3283, 0, +3145, 3416, 0, +3277, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 0, 609, +0, 0, 598, +148, 277, 582, +350, 494, 560, +350, 560, 438, +409, 714, 280, +567, 862, 166, +717, 1005, 0, +863, 1146, 0, +1005, 1284, 0, +1144, 1421, 0, +1281, 1557, 0, +1417, 1691, 0, +1552, 1825, 0, +1686, 1959, 0, +1820, 2092, 0, +1953, 2225, 0, +2086, 2357, 0, +2219, 2490, 0, +2352, 2622, 0, +2484, 2755, 0, +2617, 2887, 0, +2749, 3019, 0, +2881, 3151, 0, +3013, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +224, 0, 609, +286, 0, 598, +357, 148, 582, +438, 350, 560, +528, 528, 528, +625, 691, 482, +730, 846, 412, +840, 994, 298, +955, 1137, 80, +1074, 1278, 0, +1196, 1416, 0, +1320, 1553, 0, +1446, 1689, 0, +1574, 1823, 0, +1703, 1958, 0, +1832, 2091, 0, +1963, 2224, 0, +2093, 2357, 0, +2224, 2489, 0, +2356, 2622, 0, +2487, 2755, 0, +2619, 2887, 0, +2750, 3019, 0, +2883, 3151, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +587, 0, 750, +616, 0, 741, +652, 34, 730, +696, 280, 714, +691, 482, 625, +691, 570, 482, +846, 828, 412, +947, 994, 298, +1040, 1137, 80, +1141, 1278, 0, +1248, 1416, 0, +1360, 1553, 0, +1477, 1689, 0, +1598, 1823, 0, +1721, 1958, 0, +1846, 2091, 0, +1973, 2224, 0, +2101, 2357, 0, +2230, 2489, 0, +2360, 2622, 0, +2490, 2755, 0, +2621, 2887, 0, +2752, 3019, 0, +2884, 3151, 0, +3015, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +838, 0, 888, +855, 0, 882, +873, 0, 870, +862, 166, 815, +846, 412, 730, +846, 412, 541, +846, 622, 412, +994, 917, 298, +1134, 1137, 80, +1218, 1278, 0, +1310, 1416, 0, +1409, 1553, 0, +1515, 1689, 0, +1627, 1823, 0, +1743, 1958, 0, +1863, 2091, 0, +1986, 2224, 0, +2111, 2357, 0, +2238, 2489, 0, +2366, 2622, 0, +2495, 2755, 0, +2625, 2887, 0, +2755, 3019, 0, +2886, 3151, 0, +3016, 3283, 0, +3148, 3416, 0, +3280, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1025, 0, 1006, +1020, 0, 985, +1014, 0, 954, +1005, 0, 908, +994, 298, 840, +994, 298, 699, +994, 298, 397, +994, 682, 298, +1137, 1013, 80, +1278, 1251, 0, +1381, 1416, 0, +1467, 1553, 0, +1562, 1689, 0, +1664, 1823, 0, +1772, 1958, 0, +1885, 2091, 0, +2003, 2224, 0, +2124, 2357, 0, +2247, 2489, 0, +2373, 2622, 0, +2501, 2755, 0, +2629, 2887, 0, +2758, 3019, 0, +2888, 3151, 0, +3018, 3283, 0, +3149, 3416, 0, +3280, 3548, 0, +3412, 3680, 0, +3544, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1160, 0, 1089, +1157, 0, 1071, +1152, 0, 1045, +1146, 0, 1009, +1137, 80, 955, +1137, 80, 850, +1137, 80, 655, +1137, 80, 81, +1137, 753, 80, +1278, 1116, 0, +1416, 1367, 0, +1535, 1553, 0, +1617, 1689, 0, +1709, 1823, 0, +1808, 1958, 0, +1913, 2091, 0, +2025, 2224, 0, +2141, 2357, 0, +2260, 2489, 0, +2383, 2622, 0, +2508, 2755, 0, +2635, 2887, 0, +2762, 3019, 0, +2891, 3151, 0, +3021, 3283, 0, +3151, 3416, 0, +3282, 3548, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1295, 0, 1181, +1292, 0, 1166, +1289, 0, 1145, +1284, 0, 1116, +1278, 0, 1074, +1278, 0, 995, +1278, 0, 862, +1278, 0, 587, +1278, 0, 0, +1278, 832, 0, +1416, 1225, 0, +1553, 1486, 0, +1683, 1689, 0, +1763, 1823, 0, +1852, 1958, 0, +1949, 2091, 0, +2053, 2224, 0, +2162, 2357, 0, +2277, 2489, 0, +2396, 2622, 0, +2517, 2755, 0, +2642, 2887, 0, +2768, 3019, 0, +2895, 3151, 0, +3024, 3283, 0, +3154, 3416, 0, +3284, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1280, +1427, 0, 1267, +1424, 0, 1251, +1421, 0, 1228, +1416, 0, 1196, +1416, 0, 1137, +1416, 0, 1043, +1416, 0, 878, +1416, 0, 478, +1416, 0, 0, +1416, 920, 0, +1553, 1340, 0, +1689, 1608, 0, +1823, 1821, 0, +1905, 1958, 0, +1992, 2091, 0, +2087, 2224, 0, +2190, 2357, 0, +2298, 2489, 0, +2412, 2622, 0, +2530, 2755, 0, +2651, 2887, 0, +2775, 3019, 0, +2901, 3151, 0, +3028, 3283, 0, +3157, 3416, 0, +3286, 3548, 0, +3416, 3680, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1563, 0, 1385, +1561, 0, 1376, +1559, 0, 1363, +1557, 0, 1345, +1553, 0, 1320, +1553, 0, 1276, +1553, 0, 1209, +1553, 0, 1102, +1553, 0, 900, +1553, 0, 275, +1553, 0, 0, +1553, 1017, 0, +1689, 1457, 0, +1823, 1732, 0, +1958, 1948, 0, +2044, 2091, 0, +2130, 2224, 0, +2224, 2357, 0, +2326, 2489, 0, +2434, 2622, 0, +2547, 2755, 0, +2664, 2887, 0, +2785, 3019, 0, +2908, 3151, 0, +3034, 3283, 0, +3161, 3416, 0, +3289, 3548, 0, +3419, 3680, 0, +3549, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1496, +1695, 0, 1489, +1693, 0, 1479, +1691, 0, 1465, +1689, 0, 1446, +1689, 0, 1413, +1689, 0, 1365, +1689, 0, 1291, +1689, 0, 1169, +1689, 0, 926, +1689, 0, 0, +1689, 0, 0, +1689, 1120, 0, +1823, 1579, 0, +1958, 1859, 0, +2091, 2076, 0, +2181, 2224, 0, +2266, 2357, 0, +2360, 2489, 0, +2460, 2622, 0, +2568, 2755, 0, +2681, 2887, 0, +2797, 3019, 0, +2918, 3151, 0, +3041, 3283, 0, +3166, 3416, 0, +3293, 3548, 0, +3422, 3680, 0, +3551, 3812, 0, +3681, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1828, 0, 1612, +1828, 0, 1607, +1827, 0, 1599, +1825, 0, 1588, +1823, 0, 1574, +1823, 0, 1549, +1823, 0, 1514, +1823, 0, 1462, +1823, 0, 1382, +1823, 0, 1245, +1823, 0, 960, +1823, 0, 0, +1823, 0, 0, +1823, 1230, 0, +1958, 1703, 0, +2091, 1986, 0, +2224, 2206, 0, +2317, 2357, 0, +2401, 2489, 0, +2494, 2622, 0, +2595, 2755, 0, +2702, 2887, 0, +2814, 3019, 0, +2931, 3151, 0, +3051, 3283, 0, +3174, 3416, 0, +3299, 3548, 0, +3426, 3680, 0, +3554, 3812, 0, +3683, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +1961, 0, 1732, +1961, 0, 1728, +1960, 0, 1722, +1959, 0, 1714, +1958, 0, 1703, +1958, 0, 1684, +1958, 0, 1658, +1958, 0, 1621, +1958, 0, 1566, +1958, 0, 1480, +1958, 0, 1332, +1958, 0, 1000, +1958, 0, 0, +1958, 0, 0, +1958, 1344, 0, +2091, 1829, 0, +2224, 2115, 0, +2357, 2335, 0, +2452, 2489, 0, +2536, 2622, 0, +2628, 2755, 0, +2728, 2887, 0, +2835, 3019, 0, +2947, 3151, 0, +3063, 3283, 0, +3184, 3416, 0, +3307, 3548, 0, +3431, 3680, 0, +3558, 3812, 0, +3686, 3944, 0, +3815, 4076, 0, +3945, 4095, 0, +2094, 0, 1855, +2093, 0, 1851, +2093, 0, 1847, +2092, 0, 1841, +2091, 0, 1832, +2091, 0, 1819, +2091, 0, 1799, +2091, 0, 1772, +2091, 0, 1733, +2091, 0, 1676, +2091, 0, 1585, +2091, 0, 1425, +2091, 0, 1050, +2091, 0, 0, +2091, 0, 0, +2091, 1463, 0, +2224, 1956, 0, +2357, 2245, 0, +2489, 2466, 0, +2586, 2622, 0, +2670, 2755, 0, +2762, 2887, 0, +2862, 3019, 0, +2968, 3151, 0, +3080, 3283, 0, +3196, 3416, 0, +3316, 3548, 0, +3439, 3680, 0, +3564, 3812, 0, +3691, 3944, 0, +3818, 4076, 0, +3948, 4095, 0, +2226, 0, 1979, +2226, 0, 1977, +2225, 0, 1973, +2225, 0, 1969, +2224, 0, 1963, +2224, 0, 1952, +2224, 0, 1938, +2224, 0, 1918, +2224, 0, 1891, +2224, 0, 1850, +2224, 0, 1790, +2224, 0, 1695, +2224, 0, 1527, +2224, 0, 1108, +2224, 0, 0, +2224, 0, 0, +2224, 1584, 0, +2357, 2085, 0, +2489, 2375, 0, +2622, 2597, 0, +2720, 2755, 0, +2803, 2887, 0, +2895, 3019, 0, +2995, 3151, 0, +3101, 3283, 0, +3212, 3416, 0, +3329, 3548, 0, +3448, 3680, 0, +3571, 3812, 0, +3696, 3944, 0, +3823, 4076, 0, +3951, 4095, 0, +2358, 0, 2106, +2358, 0, 2104, +2358, 0, 2101, +2357, 0, 2098, +2357, 0, 2093, +2357, 0, 2086, +2357, 0, 2075, +2357, 0, 2060, +2357, 0, 2040, +2357, 0, 2012, +2357, 0, 1970, +2357, 0, 1909, +2357, 0, 1811, +2357, 0, 1634, +2357, 0, 1176, +2357, 0, 0, +2357, 0, 0, +2357, 1708, 0, +2489, 2215, 0, +2622, 2506, 0, +2755, 2729, 0, +2853, 2887, 0, +2936, 3019, 0, +3028, 3151, 0, +3127, 3283, 0, +3233, 3416, 0, +3345, 3548, 0, +3461, 3680, 0, +3581, 3812, 0, +3703, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2234, +2491, 0, 2233, +2490, 0, 2230, +2490, 0, 2228, +2489, 0, 2224, +2489, 0, 2219, +2489, 0, 2211, +2489, 0, 2200, +2489, 0, 2185, +2489, 0, 2165, +2489, 0, 2136, +2489, 0, 2094, +2489, 0, 2031, +2489, 0, 1930, +2489, 0, 1748, +2489, 0, 1255, +2489, 0, 0, +2489, 0, 0, +2489, 1834, 0, +2622, 2344, 0, +2755, 2637, 0, +2887, 2860, 0, +2986, 3019, 0, +3069, 3151, 0, +3160, 3283, 0, +3260, 3416, 0, +3366, 3548, 0, +3478, 3680, 0, +3594, 3812, 0, +3713, 3944, 0, +3836, 4076, 0, +3961, 4095, 0, +2623, 0, 2363, +2623, 0, 2362, +2623, 0, 2360, +2622, 0, 2358, +2622, 0, 2356, +2622, 0, 2351, +2622, 0, 2346, +2622, 0, 2337, +2622, 0, 2327, +2622, 0, 2312, +2622, 0, 2291, +2622, 0, 2261, +2622, 0, 2219, +2622, 0, 2155, +2622, 0, 2052, +2622, 0, 1865, +2622, 0, 1342, +2622, 0, 0, +2622, 0, 0, +2622, 1962, 0, +2755, 2476, 0, +2887, 2768, 0, +3019, 2992, 0, +3119, 3151, 0, +3201, 3283, 0, +3293, 3416, 0, +3392, 3548, 0, +3498, 3680, 0, +3610, 3812, 0, +3726, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2493, +2755, 0, 2492, +2755, 0, 2491, +2755, 0, 2489, +2755, 0, 2487, +2755, 0, 2484, +2755, 0, 2480, +2755, 0, 2474, +2755, 0, 2466, +2755, 0, 2455, +2755, 0, 2440, +2755, 0, 2419, +2755, 0, 2389, +2755, 0, 2346, +2755, 0, 2281, +2755, 0, 2177, +2755, 0, 1986, +2755, 0, 1439, +2755, 0, 0, +2755, 0, 0, +2755, 2091, 0, +2887, 2606, 0, +3019, 2899, 0, +3151, 3123, 0, +3251, 3283, 0, +3334, 3416, 0, +3426, 3548, 0, +3525, 3680, 0, +3631, 3812, 0, +3742, 3944, 0, +3858, 4076, 0, +3977, 4095, 0, +2887, 0, 2623, +2887, 0, 2622, +2887, 0, 2621, +2887, 0, 2620, +2887, 0, 2619, +2887, 0, 2617, +2887, 0, 2613, +2887, 0, 2609, +2887, 0, 2603, +2887, 0, 2595, +2887, 0, 2584, +2887, 0, 2569, +2887, 0, 2548, +2887, 0, 2517, +2887, 0, 2474, +2887, 0, 2409, +2887, 0, 2304, +2887, 0, 2110, +2887, 0, 1540, +2887, 0, 0, +2887, 0, 0, +2887, 2220, 0, +3019, 2737, 0, +3151, 3031, 0, +3283, 3255, 0, +3384, 3416, 0, +3467, 3548, 0, +3558, 3680, 0, +3657, 3812, 0, +3763, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2754, +3019, 0, 2753, +3019, 0, 2752, +3019, 0, 2751, +3019, 0, 2750, +3019, 0, 2749, +3019, 0, 2746, +3019, 0, 2743, +3019, 0, 2738, +3019, 0, 2732, +3019, 0, 2724, +3019, 0, 2713, +3019, 0, 2698, +3019, 0, 2677, +3019, 0, 2647, +3019, 0, 2603, +3019, 0, 2537, +3019, 0, 2431, +3019, 0, 2234, +3019, 0, 1646, +3019, 0, 0, +3019, 0, 0, +3019, 2350, 0, +3151, 2869, 0, +3283, 3163, 0, +3416, 3387, 0, +3516, 3548, 0, +3599, 3680, 0, +3690, 3812, 0, +3789, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2885, +3152, 0, 2885, +3152, 0, 2884, +3151, 0, 2883, +3151, 0, 2883, +3151, 0, 2881, +3151, 0, 2879, +3151, 0, 2877, +3151, 0, 2873, +3151, 0, 2869, +3151, 0, 2863, +3151, 0, 2855, +3151, 0, 2844, +3151, 0, 2829, +3151, 0, 2807, +3151, 0, 2777, +3151, 0, 2733, +3151, 0, 2667, +3151, 0, 2560, +3151, 0, 2362, +3151, 0, 1760, +3151, 0, 0, +3151, 0, 0, +3151, 2481, 0, +3283, 3000, 0, +3416, 3295, 0, +3548, 3519, 0, +3648, 3680, 0, +3731, 3812, 0, +3822, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3016, +3283, 0, 3016, +3283, 0, 3015, +3283, 0, 3015, +3283, 0, 3014, +3283, 0, 3013, +3283, 0, 3012, +3283, 0, 3010, +3283, 0, 3008, +3283, 0, 3004, +3283, 0, 3000, +3283, 0, 2994, +3283, 0, 2986, +3283, 0, 2974, +3283, 0, 2959, +3283, 0, 2938, +3283, 0, 2907, +3283, 0, 2863, +3283, 0, 2797, +3283, 0, 2690, +3283, 0, 2489, +3283, 0, 1875, +3283, 0, 0, +3283, 0, 0, +3283, 2612, 0, +3416, 3132, 0, +3548, 3427, 0, +3680, 3651, 0, +3781, 3812, 0, +3863, 3944, 0, +3955, 4076, 0, +4054, 4095, 0, +3416, 0, 3147, +3416, 0, 3147, +3416, 0, 3147, +3416, 0, 3147, +3416, 0, 3146, +3416, 0, 3145, +3416, 0, 3144, +3416, 0, 3143, +3416, 0, 3141, +3416, 0, 3139, +3416, 0, 3135, +3416, 0, 3131, +3416, 0, 3125, +3416, 0, 3117, +3416, 0, 3106, +3416, 0, 3090, +3416, 0, 3069, +3416, 0, 3038, +3416, 0, 2994, +3416, 0, 2928, +3416, 0, 2820, +3416, 0, 2619, +3416, 0, 2000, +3416, 0, 0, +3416, 0, 0, +3416, 2743, 0, +3548, 3264, 0, +3680, 3559, 0, +3812, 3783, 0, +3913, 3944, 0, +3995, 4076, 0, +4087, 4095, 0, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3277, +3548, 0, 3276, +3548, 0, 3275, +3548, 0, 3273, +3548, 0, 3270, +3548, 0, 3267, +3548, 0, 3262, +3548, 0, 3256, +3548, 0, 3248, +3548, 0, 3237, +3548, 0, 3222, +3548, 0, 3200, +3548, 0, 3170, +3548, 0, 3125, +3548, 0, 3059, +3548, 0, 2951, +3548, 0, 2749, +3548, 0, 2122, +3548, 0, 0, +3548, 0, 0, +3548, 2874, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3406, +3680, 0, 3404, +3680, 0, 3402, +3680, 0, 3399, +3680, 0, 3394, +3680, 0, 3388, +3680, 0, 3380, +3680, 0, 3369, +3680, 0, 3353, +3680, 0, 3332, +3680, 0, 3301, +3680, 0, 3257, +3680, 0, 3190, +3680, 0, 3082, +3680, 0, 2879, +3680, 0, 2251, +3680, 0, 0, +3680, 0, 0, +3680, 3006, 0, +3812, 3528, 0, +3944, 3823, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3539, +3812, 0, 3538, +3812, 0, 3536, +3812, 0, 3534, +3812, 0, 3530, +3812, 0, 3526, +3812, 0, 3520, +3812, 0, 3511, +3812, 0, 3500, +3812, 0, 3485, +3812, 0, 3463, +3812, 0, 3433, +3812, 0, 3388, +3812, 0, 3322, +3812, 0, 3213, +3812, 0, 3011, +3812, 0, 2377, +3812, 0, 0, +3812, 0, 0, +3812, 3138, 0, +3944, 3660, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3670, +3944, 0, 3668, +3944, 0, 3665, +3944, 0, 3662, +3944, 0, 3658, +3944, 0, 3652, +3944, 0, 3643, +3944, 0, 3632, +3944, 0, 3617, +3944, 0, 3595, +3944, 0, 3564, +3944, 0, 3520, +3944, 0, 3453, +3944, 0, 3345, +3944, 0, 3142, +3944, 0, 2505, +3944, 0, 0, +3944, 0, 0, +3944, 3270, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3801, +4076, 0, 3800, +4076, 0, 3797, +4076, 0, 3794, +4076, 0, 3790, +4076, 0, 3783, +4076, 0, 3775, +4076, 0, 3764, +4076, 0, 3748, +4076, 0, 3727, +4076, 0, 3696, +4076, 0, 3652, +4076, 0, 3585, +4076, 0, 3476, +4076, 0, 3273, +4076, 0, 2632, +4076, 0, 0, +4076, 0, 0, +4076, 3401, 0, +4095, 3924, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3934, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3926, +4095, 0, 3921, +4095, 0, 3915, +4095, 0, 3907, +4095, 0, 3896, +4095, 0, 3880, +4095, 0, 3859, +4095, 0, 3828, +4095, 0, 3784, +4095, 0, 3717, +4095, 0, 3608, +4095, 0, 3405, +4095, 0, 2765, +4095, 0, 0, +4095, 0, 0, +4095, 3534, 0, +0, 545, 750, +0, 613, 750, +0, 689, 750, +0, 750, 723, +0, 750, 587, +0, 750, 304, +0, 888, 0, +0, 1025, 0, +397, 1160, 0, +717, 1295, 0, +951, 1429, 0, +1148, 1563, 0, +1322, 1696, 0, +1484, 1828, 0, +1636, 1961, 0, +1783, 2094, 0, +1926, 2226, 0, +2066, 2358, 0, +2204, 2491, 0, +2341, 2623, 0, +2476, 2755, 0, +2611, 2887, 0, +2744, 3019, 0, +2878, 3152, 0, +3011, 3284, 0, +3144, 3416, 0, +3276, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 467, 750, +0, 559, 741, +0, 644, 741, +0, 738, 741, +0, 741, 616, +0, 741, 356, +0, 882, 0, +81, 1020, 0, +503, 1157, 0, +772, 1292, 0, +985, 1427, 0, +1170, 1561, 0, +1337, 1695, 0, +1494, 1828, 0, +1644, 1961, 0, +1789, 2093, 0, +1930, 2226, 0, +2069, 2358, 0, +2206, 2491, 0, +2342, 2623, 0, +2477, 2755, 0, +2612, 2887, 0, +2745, 3019, 0, +2878, 3152, 0, +3011, 3283, 0, +3144, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 334, 750, +0, 453, 741, +34, 576, 730, +34, 683, 730, +34, 730, 652, +34, 730, 418, +0, 873, 0, +323, 1014, 0, +614, 1152, 0, +837, 1289, 0, +1027, 1424, 0, +1198, 1559, 0, +1357, 1693, 0, +1508, 1827, 0, +1654, 1960, 0, +1796, 2093, 0, +1936, 2225, 0, +2073, 2358, 0, +2209, 2490, 0, +2345, 2623, 0, +2479, 2755, 0, +2613, 2887, 0, +2746, 3019, 0, +2879, 3152, 0, +3011, 3283, 0, +3144, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 59, 750, +0, 258, 741, +34, 435, 730, +280, 598, 714, +280, 714, 696, +280, 714, 490, +264, 862, 166, +523, 1005, 0, +730, 1146, 0, +911, 1284, 0, +1077, 1421, 0, +1233, 1557, 0, +1382, 1691, 0, +1526, 1825, 0, +1667, 1959, 0, +1806, 2092, 0, +1943, 2225, 0, +2078, 2357, 0, +2213, 2490, 0, +2347, 2622, 0, +2481, 2755, 0, +2614, 2887, 0, +2747, 3019, 0, +2880, 3151, 0, +3012, 3283, 0, +3145, 3416, 0, +3277, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 0, 750, +0, 0, 741, +34, 132, 730, +280, 409, 714, +482, 625, 691, +482, 691, 570, +541, 846, 412, +699, 994, 298, +850, 1137, 80, +995, 1278, 0, +1137, 1416, 0, +1276, 1553, 0, +1413, 1689, 0, +1549, 1823, 0, +1684, 1958, 0, +1819, 2091, 0, +1952, 2224, 0, +2086, 2357, 0, +2219, 2489, 0, +2351, 2622, 0, +2484, 2755, 0, +2617, 2887, 0, +2749, 3019, 0, +2881, 3151, 0, +3013, 3283, 0, +3145, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +304, 0, 750, +356, 0, 741, +418, 34, 730, +490, 280, 714, +570, 482, 691, +660, 660, 660, +758, 824, 614, +862, 978, 544, +972, 1126, 430, +1087, 1270, 212, +1206, 1410, 0, +1328, 1549, 0, +1452, 1685, 0, +1579, 1821, 0, +1706, 1956, 0, +1835, 2089, 0, +1965, 2223, 0, +2095, 2356, 0, +2226, 2489, 0, +2356, 2621, 0, +2488, 2754, 0, +2619, 2887, 0, +2751, 3019, 0, +2883, 3151, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +697, 0, 888, +719, 0, 882, +749, 0, 873, +784, 166, 862, +828, 412, 846, +824, 614, 758, +824, 702, 614, +978, 960, 544, +1079, 1126, 430, +1172, 1270, 212, +1273, 1410, 0, +1380, 1549, 0, +1492, 1685, 0, +1609, 1821, 0, +1730, 1956, 0, +1853, 2089, 0, +1978, 2223, 0, +2105, 2356, 0, +2233, 2489, 0, +2362, 2621, 0, +2492, 2754, 0, +2623, 2887, 0, +2753, 3019, 0, +2885, 3151, 0, +3016, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +957, 0, 1025, +970, 0, 1020, +987, 0, 1014, +1005, 0, 1002, +994, 298, 947, +978, 544, 862, +978, 544, 673, +978, 754, 544, +1126, 1049, 430, +1266, 1270, 212, +1350, 1410, 0, +1442, 1549, 0, +1541, 1685, 0, +1648, 1821, 0, +1759, 1956, 0, +1875, 2089, 0, +1995, 2223, 0, +2118, 2356, 0, +2243, 2489, 0, +2370, 2621, 0, +2498, 2754, 0, +2627, 2887, 0, +2756, 3019, 0, +2887, 3151, 0, +3018, 3283, 0, +3149, 3416, 0, +3280, 3548, 0, +3412, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1160, 0, 1154, +1157, 0, 1139, +1152, 0, 1117, +1146, 0, 1086, +1137, 80, 1040, +1126, 430, 972, +1126, 430, 831, +1126, 430, 529, +1126, 814, 430, +1270, 1145, 212, +1410, 1383, 0, +1513, 1549, 0, +1599, 1685, 0, +1694, 1821, 0, +1796, 1956, 0, +1904, 2089, 0, +2018, 2223, 0, +2135, 2356, 0, +2256, 2489, 0, +2380, 2621, 0, +2505, 2754, 0, +2632, 2887, 0, +2761, 3019, 0, +2890, 3151, 0, +3020, 3283, 0, +3151, 3416, 0, +3281, 3548, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3939, 4095, 0, +1295, 0, 1234, +1292, 0, 1221, +1289, 0, 1203, +1284, 0, 1177, +1278, 0, 1141, +1270, 212, 1087, +1270, 212, 982, +1270, 212, 787, +1270, 212, 214, +1270, 884, 212, +1410, 1248, 0, +1549, 1499, 0, +1667, 1685, 0, +1750, 1821, 0, +1841, 1956, 0, +1940, 2089, 0, +2046, 2223, 0, +2157, 2356, 0, +2273, 2489, 0, +2393, 2621, 0, +2515, 2754, 0, +2640, 2887, 0, +2766, 3019, 0, +2895, 3151, 0, +3023, 3283, 0, +3153, 3416, 0, +3283, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1323, +1427, 0, 1313, +1424, 0, 1298, +1421, 0, 1277, +1416, 0, 1248, +1410, 0, 1206, +1410, 0, 1127, +1410, 0, 994, +1410, 0, 719, +1410, 47, 0, +1410, 964, 0, +1549, 1358, 0, +1685, 1618, 0, +1815, 1821, 0, +1895, 1956, 0, +1984, 2089, 0, +2081, 2223, 0, +2185, 2356, 0, +2294, 2489, 0, +2409, 2621, 0, +2528, 2754, 0, +2650, 2887, 0, +2774, 3019, 0, +2900, 3151, 0, +3027, 3283, 0, +3156, 3416, 0, +3286, 3548, 0, +3416, 3680, 0, +3547, 3812, 0, +3677, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1563, 0, 1421, +1561, 0, 1412, +1559, 0, 1400, +1557, 0, 1384, +1553, 0, 1360, +1549, 0, 1328, +1549, 0, 1269, +1549, 0, 1176, +1549, 0, 1011, +1549, 0, 611, +1549, 0, 0, +1549, 1053, 0, +1685, 1471, 0, +1821, 1740, 0, +1956, 1953, 0, +2037, 2089, 0, +2124, 2223, 0, +2219, 2356, 0, +2322, 2489, 0, +2431, 2621, 0, +2545, 2754, 0, +2662, 2887, 0, +2784, 3019, 0, +2907, 3151, 0, +3033, 3283, 0, +3160, 3416, 0, +3289, 3548, 0, +3418, 3680, 0, +3548, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1524, +1695, 0, 1517, +1693, 0, 1508, +1691, 0, 1495, +1689, 0, 1477, +1685, 0, 1452, +1685, 0, 1408, +1685, 0, 1341, +1685, 0, 1233, +1685, 0, 1031, +1685, 0, 406, +1685, 0, 0, +1685, 1149, 0, +1821, 1590, 0, +1956, 1865, 0, +2089, 2080, 0, +2176, 2223, 0, +2262, 2356, 0, +2356, 2489, 0, +2458, 2621, 0, +2566, 2754, 0, +2679, 2887, 0, +2796, 3019, 0, +2917, 3151, 0, +3040, 3283, 0, +3166, 3416, 0, +3293, 3548, 0, +3421, 3680, 0, +3551, 3812, 0, +3681, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1828, 0, 1634, +1828, 0, 1629, +1827, 0, 1621, +1825, 0, 1611, +1823, 0, 1598, +1821, 0, 1579, +1821, 0, 1545, +1821, 0, 1497, +1821, 0, 1423, +1821, 0, 1301, +1821, 0, 1059, +1821, 0, 0, +1821, 0, 0, +1821, 1253, 0, +1956, 1711, 0, +2089, 1991, 0, +2223, 2208, 0, +2313, 2356, 0, +2398, 2489, 0, +2492, 2621, 0, +2593, 2754, 0, +2700, 2887, 0, +2813, 3019, 0, +2930, 3151, 0, +3050, 3283, 0, +3173, 3416, 0, +3299, 3548, 0, +3426, 3680, 0, +3554, 3812, 0, +3683, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +1961, 0, 1749, +1961, 0, 1745, +1960, 0, 1739, +1959, 0, 1731, +1958, 0, 1721, +1956, 0, 1706, +1956, 0, 1681, +1956, 0, 1646, +1956, 0, 1594, +1956, 0, 1514, +1956, 0, 1378, +1956, 0, 1091, +1956, 0, 0, +1956, 0, 0, +1956, 1362, 0, +2089, 1835, 0, +2223, 2118, 0, +2356, 2338, 0, +2449, 2489, 0, +2533, 2621, 0, +2627, 2754, 0, +2727, 2887, 0, +2834, 3019, 0, +2946, 3151, 0, +3062, 3283, 0, +3183, 3416, 0, +3306, 3548, 0, +3431, 3680, 0, +3558, 3812, 0, +3686, 3944, 0, +3815, 4076, 0, +3945, 4095, 0, +2094, 0, 1867, +2093, 0, 1864, +2093, 0, 1860, +2092, 0, 1854, +2091, 0, 1846, +2089, 0, 1835, +2089, 0, 1816, +2089, 0, 1790, +2089, 0, 1753, +2089, 0, 1698, +2089, 0, 1612, +2089, 0, 1463, +2089, 0, 1133, +2089, 0, 0, +2089, 0, 0, +2089, 1476, 0, +2223, 1961, 0, +2356, 2247, 0, +2489, 2468, 0, +2584, 2621, 0, +2668, 2754, 0, +2761, 2887, 0, +2860, 3019, 0, +2967, 3151, 0, +3079, 3283, 0, +3196, 3416, 0, +3316, 3548, 0, +3438, 3680, 0, +3564, 3812, 0, +3690, 3944, 0, +3818, 4076, 0, +3948, 4095, 0, +2226, 0, 1989, +2226, 0, 1987, +2225, 0, 1983, +2225, 0, 1979, +2224, 0, 1973, +2223, 0, 1965, +2223, 0, 1951, +2223, 0, 1931, +2223, 0, 1904, +2223, 0, 1865, +2223, 0, 1808, +2223, 0, 1717, +2223, 0, 1557, +2223, 0, 1181, +2223, 0, 0, +2223, 0, 0, +2223, 1595, 0, +2356, 2088, 0, +2489, 2377, 0, +2621, 2598, 0, +2718, 2754, 0, +2802, 2887, 0, +2894, 3019, 0, +2994, 3151, 0, +3100, 3283, 0, +3212, 3416, 0, +3328, 3548, 0, +3448, 3680, 0, +3571, 3812, 0, +3696, 3944, 0, +3822, 4076, 0, +3951, 4095, 0, +2358, 0, 2113, +2358, 0, 2111, +2358, 0, 2109, +2357, 0, 2105, +2357, 0, 2101, +2356, 0, 2095, +2356, 0, 2084, +2356, 0, 2070, +2356, 0, 2050, +2356, 0, 2022, +2356, 0, 1982, +2356, 0, 1922, +2356, 0, 1828, +2356, 0, 1659, +2356, 0, 1240, +2356, 0, 0, +2356, 0, 0, +2356, 1716, 0, +2489, 2218, 0, +2621, 2507, 0, +2754, 2730, 0, +2852, 2887, 0, +2935, 3019, 0, +3027, 3151, 0, +3127, 3283, 0, +3233, 3416, 0, +3344, 3548, 0, +3461, 3680, 0, +3581, 3812, 0, +3703, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2239, +2491, 0, 2238, +2490, 0, 2236, +2490, 0, 2234, +2489, 0, 2230, +2489, 0, 2226, +2489, 0, 2218, +2489, 0, 2207, +2489, 0, 2193, +2489, 0, 2172, +2489, 0, 2144, +2489, 0, 2103, +2489, 0, 2041, +2489, 0, 1943, +2489, 0, 1767, +2489, 0, 1310, +2489, 0, 0, +2489, 0, 0, +2489, 1840, 0, +2621, 2346, 0, +2754, 2638, 0, +2887, 2861, 0, +2985, 3019, 0, +3068, 3151, 0, +3160, 3283, 0, +3259, 3416, 0, +3365, 3548, 0, +3477, 3680, 0, +3593, 3812, 0, +3713, 3944, 0, +3835, 4076, 0, +3961, 4095, 0, +2623, 0, 2367, +2623, 0, 2366, +2623, 0, 2364, +2622, 0, 2362, +2622, 0, 2360, +2621, 0, 2356, +2621, 0, 2351, +2621, 0, 2343, +2621, 0, 2332, +2621, 0, 2317, +2621, 0, 2297, +2621, 0, 2268, +2621, 0, 2226, +2621, 0, 2163, +2621, 0, 2062, +2621, 0, 1880, +2621, 0, 1387, +2621, 0, 0, +2621, 0, 0, +2621, 1966, 0, +2754, 2477, 0, +2887, 2769, 0, +3019, 2992, 0, +3118, 3151, 0, +3201, 3283, 0, +3293, 3416, 0, +3392, 3548, 0, +3498, 3680, 0, +3609, 3812, 0, +3725, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2496, +2755, 0, 2495, +2755, 0, 2494, +2755, 0, 2492, +2755, 0, 2490, +2754, 0, 2488, +2754, 0, 2484, +2754, 0, 2478, +2754, 0, 2470, +2754, 0, 2459, +2754, 0, 2444, +2754, 0, 2423, +2754, 0, 2394, +2754, 0, 2351, +2754, 0, 2287, +2754, 0, 2185, +2754, 0, 1997, +2754, 0, 1476, +2754, 0, 0, +2754, 0, 0, +2754, 2094, 0, +2887, 2607, 0, +3019, 2900, 0, +3151, 3124, 0, +3251, 3283, 0, +3334, 3416, 0, +3425, 3548, 0, +3525, 3680, 0, +3630, 3812, 0, +3742, 3944, 0, +3858, 4076, 0, +3977, 4095, 0, +2887, 0, 2625, +2887, 0, 2625, +2887, 0, 2624, +2887, 0, 2623, +2887, 0, 2621, +2887, 0, 2619, +2887, 0, 2616, +2887, 0, 2612, +2887, 0, 2606, +2887, 0, 2598, +2887, 0, 2587, +2887, 0, 2572, +2887, 0, 2551, +2887, 0, 2521, +2887, 0, 2478, +2887, 0, 2413, +2887, 0, 2310, +2887, 0, 2118, +2887, 0, 1569, +2887, 0, 0, +2887, 0, 0, +2887, 2223, 0, +3019, 2738, 0, +3151, 3032, 0, +3283, 3255, 0, +3384, 3416, 0, +3466, 3548, 0, +3558, 3680, 0, +3657, 3812, 0, +3763, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2755, +3019, 0, 2755, +3019, 0, 2754, +3019, 0, 2753, +3019, 0, 2752, +3019, 0, 2751, +3019, 0, 2748, +3019, 0, 2745, +3019, 0, 2741, +3019, 0, 2735, +3019, 0, 2727, +3019, 0, 2716, +3019, 0, 2701, +3019, 0, 2679, +3019, 0, 2649, +3019, 0, 2606, +3019, 0, 2541, +3019, 0, 2435, +3019, 0, 2241, +3019, 0, 1670, +3019, 0, 0, +3019, 0, 0, +3019, 2352, 0, +3151, 2870, 0, +3283, 3163, 0, +3416, 3387, 0, +3516, 3548, 0, +3599, 3680, 0, +3690, 3812, 0, +3789, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2886, +3152, 0, 2886, +3152, 0, 2885, +3151, 0, 2885, +3151, 0, 2884, +3151, 0, 2883, +3151, 0, 2881, +3151, 0, 2879, +3151, 0, 2875, +3151, 0, 2871, +3151, 0, 2865, +3151, 0, 2857, +3151, 0, 2845, +3151, 0, 2830, +3151, 0, 2809, +3151, 0, 2779, +3151, 0, 2735, +3151, 0, 2670, +3151, 0, 2564, +3151, 0, 2367, +3151, 0, 1779, +3151, 0, 0, +3151, 0, 0, +3151, 2482, 0, +3283, 3000, 0, +3416, 3295, 0, +3548, 3519, 0, +3648, 3680, 0, +3731, 3812, 0, +3822, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3017, +3283, 0, 3017, +3283, 0, 3016, +3283, 0, 3016, +3283, 0, 3015, +3283, 0, 3014, +3283, 0, 3013, +3283, 0, 3011, +3283, 0, 3009, +3283, 0, 3005, +3283, 0, 3001, +3283, 0, 2995, +3283, 0, 2987, +3283, 0, 2976, +3283, 0, 2960, +3283, 0, 2939, +3283, 0, 2909, +3283, 0, 2865, +3283, 0, 2799, +3283, 0, 2692, +3283, 0, 2493, +3283, 0, 1890, +3283, 0, 0, +3283, 0, 0, +3283, 2613, 0, +3416, 3133, 0, +3548, 3427, 0, +3680, 3651, 0, +3781, 3812, 0, +3863, 3944, 0, +3954, 4076, 0, +4054, 4095, 0, +3416, 0, 3148, +3416, 0, 3148, +3416, 0, 3148, +3416, 0, 3147, +3416, 0, 3147, +3416, 0, 3146, +3416, 0, 3145, +3416, 0, 3144, +3416, 0, 3142, +3416, 0, 3140, +3416, 0, 3136, +3416, 0, 3132, +3416, 0, 3126, +3416, 0, 3118, +3416, 0, 3106, +3416, 0, 3091, +3416, 0, 3070, +3416, 0, 3039, +3416, 0, 2996, +3416, 0, 2929, +3416, 0, 2822, +3416, 0, 2621, +3416, 0, 2011, +3416, 0, 0, +3416, 0, 0, +3416, 2744, 0, +3548, 3265, 0, +3680, 3559, 0, +3812, 3783, 0, +3913, 3944, 0, +3995, 4076, 0, +4087, 4095, 0, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3277, +3548, 0, 3275, +3548, 0, 3273, +3548, 0, 3271, +3548, 0, 3268, +3548, 0, 3263, +3548, 0, 3257, +3548, 0, 3249, +3548, 0, 3238, +3548, 0, 3222, +3548, 0, 3201, +3548, 0, 3171, +3548, 0, 3126, +3548, 0, 3060, +3548, 0, 2952, +3548, 0, 2751, +3548, 0, 2130, +3548, 0, 0, +3548, 0, 0, +3548, 2875, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3407, +3680, 0, 3405, +3680, 0, 3402, +3680, 0, 3399, +3680, 0, 3395, +3680, 0, 3388, +3680, 0, 3380, +3680, 0, 3369, +3680, 0, 3354, +3680, 0, 3332, +3680, 0, 3302, +3680, 0, 3258, +3680, 0, 3191, +3680, 0, 3083, +3680, 0, 2881, +3680, 0, 2257, +3680, 0, 0, +3680, 0, 0, +3680, 3006, 0, +3812, 3528, 0, +3944, 3823, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3538, +3812, 0, 3537, +3812, 0, 3534, +3812, 0, 3531, +3812, 0, 3526, +3812, 0, 3520, +3812, 0, 3512, +3812, 0, 3501, +3812, 0, 3485, +3812, 0, 3464, +3812, 0, 3433, +3812, 0, 3389, +3812, 0, 3322, +3812, 0, 3214, +3812, 0, 3012, +3812, 0, 2382, +3812, 0, 0, +3812, 0, 0, +3812, 3138, 0, +3944, 3660, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3670, +3944, 0, 3668, +3944, 0, 3666, +3944, 0, 3662, +3944, 0, 3658, +3944, 0, 3652, +3944, 0, 3644, +3944, 0, 3632, +3944, 0, 3617, +3944, 0, 3595, +3944, 0, 3565, +3944, 0, 3521, +3944, 0, 3454, +3944, 0, 3346, +3944, 0, 3143, +3944, 0, 2508, +3944, 0, 0, +3944, 0, 0, +3944, 3270, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3802, +4076, 0, 3800, +4076, 0, 3797, +4076, 0, 3794, +4076, 0, 3790, +4076, 0, 3784, +4076, 0, 3775, +4076, 0, 3764, +4076, 0, 3749, +4076, 0, 3727, +4076, 0, 3696, +4076, 0, 3652, +4076, 0, 3585, +4076, 0, 3477, +4076, 0, 3273, +4076, 0, 2635, +4076, 0, 0, +4076, 0, 0, +4076, 3402, 0, +4095, 3925, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3934, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3926, +4095, 0, 3922, +4095, 0, 3916, +4095, 0, 3908, +4095, 0, 3896, +4095, 0, 3881, +4095, 0, 3859, +4095, 0, 3829, +4095, 0, 3784, +4095, 0, 3717, +4095, 0, 3609, +4095, 0, 3405, +4095, 0, 2767, +4095, 0, 0, +4095, 0, 0, +4095, 3534, 0, +0, 667, 888, +0, 719, 888, +0, 781, 888, +0, 852, 888, +0, 888, 838, +0, 888, 697, +0, 888, 392, +0, 1025, 0, +0, 1160, 0, +431, 1295, 0, +803, 1429, 0, +1057, 1563, 0, +1262, 1696, 0, +1442, 1828, 0, +1607, 1961, 0, +1763, 2094, 0, +1911, 2226, 0, +2055, 2358, 0, +2196, 2491, 0, +2335, 2623, 0, +2472, 2755, 0, +2607, 2887, 0, +2742, 3019, 0, +2876, 3152, 0, +3009, 3284, 0, +3143, 3416, 0, +3276, 3548, 0, +3408, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 608, 888, +0, 678, 882, +0, 745, 882, +0, 822, 882, +0, 882, 855, +0, 882, 719, +0, 882, 436, +0, 1020, 0, +0, 1157, 0, +529, 1292, 0, +849, 1427, 0, +1084, 1561, 0, +1279, 1695, 0, +1454, 1828, 0, +1615, 1961, 0, +1768, 2093, 0, +1915, 2226, 0, +2058, 2358, 0, +2199, 2491, 0, +2336, 2623, 0, +2473, 2755, 0, +2608, 2887, 0, +2742, 3019, 0, +2877, 3152, 0, +3010, 3283, 0, +3143, 3416, 0, +3276, 3548, 0, +3408, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 515, 888, +0, 599, 882, +0, 691, 873, +0, 776, 873, +0, 870, 873, +0, 873, 749, +0, 873, 488, +0, 1014, 0, +214, 1152, 0, +635, 1289, 0, +904, 1424, 0, +1118, 1559, 0, +1302, 1693, 0, +1469, 1827, 0, +1626, 1960, 0, +1776, 2093, 0, +1921, 2225, 0, +2062, 2358, 0, +2202, 2490, 0, +2338, 2623, 0, +2475, 2755, 0, +2609, 2887, 0, +2743, 3019, 0, +2877, 3152, 0, +3010, 3283, 0, +3143, 3416, 0, +3276, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 350, 888, +0, 466, 882, +0, 585, 873, +166, 708, 862, +166, 815, 862, +166, 862, 784, +166, 862, 550, +0, 1005, 0, +455, 1146, 0, +746, 1284, 0, +969, 1421, 0, +1159, 1557, 0, +1330, 1691, 0, +1489, 1825, 0, +1640, 1959, 0, +1786, 2092, 0, +1928, 2225, 0, +2068, 2357, 0, +2206, 2490, 0, +2341, 2622, 0, +2477, 2755, 0, +2611, 2887, 0, +2745, 3019, 0, +2878, 3151, 0, +3011, 3283, 0, +3144, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 0, 888, +0, 190, 882, +0, 390, 873, +166, 567, 862, +412, 730, 846, +412, 846, 828, +412, 846, 622, +397, 994, 298, +655, 1137, 80, +862, 1278, 0, +1043, 1416, 0, +1209, 1553, 0, +1365, 1689, 0, +1514, 1823, 0, +1658, 1958, 0, +1799, 2091, 0, +1938, 2224, 0, +2075, 2357, 0, +2211, 2489, 0, +2346, 2622, 0, +2480, 2755, 0, +2613, 2887, 0, +2746, 3019, 0, +2879, 3151, 0, +3012, 3283, 0, +3144, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 0, 888, +0, 0, 882, +0, 0, 873, +166, 264, 862, +412, 541, 846, +614, 758, 824, +614, 824, 702, +673, 978, 544, +831, 1126, 430, +982, 1270, 212, +1127, 1410, 0, +1269, 1549, 0, +1408, 1685, 0, +1545, 1821, 0, +1681, 1956, 0, +1816, 2089, 0, +1951, 2223, 0, +2084, 2356, 0, +2218, 2489, 0, +2351, 2621, 0, +2484, 2754, 0, +2616, 2887, 0, +2748, 3019, 0, +2881, 3151, 0, +3013, 3283, 0, +3145, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +392, 0, 888, +436, 0, 882, +488, 0, 873, +550, 166, 862, +622, 412, 846, +702, 614, 824, +792, 792, 792, +890, 956, 746, +994, 1110, 676, +1104, 1258, 562, +1219, 1402, 344, +1338, 1543, 0, +1460, 1681, 0, +1585, 1817, 0, +1711, 1953, 0, +1838, 2087, 0, +1967, 2221, 0, +2096, 2355, 0, +2227, 2488, 0, +2357, 2621, 0, +2489, 2754, 0, +2620, 2886, 0, +2751, 3018, 0, +2883, 3151, 0, +3015, 3283, 0, +3147, 3415, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +811, 0, 1025, +829, 0, 1020, +852, 0, 1014, +881, 0, 1005, +917, 298, 994, +960, 544, 978, +956, 746, 890, +956, 834, 746, +1110, 1092, 676, +1211, 1258, 562, +1304, 1402, 344, +1405, 1543, 0, +1512, 1681, 0, +1625, 1817, 0, +1742, 1953, 0, +1862, 2087, 0, +1985, 2221, 0, +2110, 2355, 0, +2237, 2488, 0, +2365, 2621, 0, +2494, 2754, 0, +2624, 2886, 0, +2754, 3018, 0, +2885, 3151, 0, +3016, 3283, 0, +3148, 3415, 0, +3280, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1079, 0, 1160, +1089, 0, 1157, +1102, 0, 1152, +1119, 0, 1146, +1137, 80, 1134, +1126, 430, 1079, +1110, 676, 994, +1110, 676, 805, +1110, 886, 676, +1258, 1181, 562, +1398, 1402, 344, +1482, 1543, 0, +1574, 1681, 0, +1673, 1817, 0, +1779, 1953, 0, +1891, 2087, 0, +2008, 2221, 0, +2127, 2355, 0, +2250, 2488, 0, +2375, 2621, 0, +2502, 2754, 0, +2630, 2886, 0, +2759, 3018, 0, +2889, 3151, 0, +3019, 3283, 0, +3150, 3415, 0, +3281, 3548, 0, +3412, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1292, 0, 1295, +1292, 0, 1286, +1289, 0, 1271, +1284, 0, 1249, +1278, 0, 1218, +1270, 212, 1172, +1258, 562, 1104, +1258, 562, 963, +1258, 562, 661, +1258, 946, 562, +1402, 1277, 344, +1543, 1516, 0, +1645, 1681, 0, +1732, 1817, 0, +1826, 1953, 0, +1928, 2087, 0, +2036, 2221, 0, +2150, 2355, 0, +2267, 2488, 0, +2388, 2621, 0, +2512, 2754, 0, +2637, 2886, 0, +2764, 3018, 0, +2893, 3151, 0, +3022, 3283, 0, +3152, 3415, 0, +3283, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1376, +1427, 0, 1366, +1424, 0, 1353, +1421, 0, 1335, +1416, 0, 1310, +1410, 0, 1273, +1402, 344, 1219, +1402, 344, 1114, +1402, 344, 919, +1402, 344, 345, +1402, 1017, 344, +1543, 1381, 0, +1681, 1631, 0, +1799, 1817, 0, +1882, 1953, 0, +1973, 2087, 0, +2072, 2221, 0, +2178, 2355, 0, +2289, 2488, 0, +2405, 2621, 0, +2525, 2754, 0, +2647, 2886, 0, +2772, 3018, 0, +2898, 3151, 0, +3026, 3283, 0, +3155, 3415, 0, +3285, 3548, 0, +3415, 3680, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1563, 0, 1463, +1561, 0, 1456, +1559, 0, 1445, +1557, 0, 1430, +1553, 0, 1409, +1549, 0, 1380, +1543, 0, 1338, +1543, 0, 1259, +1543, 0, 1127, +1543, 0, 852, +1543, 172, 0, +1543, 1096, 0, +1681, 1489, 0, +1817, 1750, 0, +1947, 1953, 0, +2027, 2087, 0, +2116, 2221, 0, +2213, 2355, 0, +2317, 2488, 0, +2427, 2621, 0, +2541, 2754, 0, +2660, 2886, 0, +2782, 3018, 0, +2906, 3151, 0, +3032, 3283, 0, +3160, 3415, 0, +3288, 3548, 0, +3418, 3680, 0, +3548, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1559, +1695, 0, 1552, +1693, 0, 1544, +1691, 0, 1532, +1689, 0, 1515, +1685, 0, 1492, +1681, 0, 1460, +1681, 0, 1401, +1681, 0, 1308, +1681, 0, 1142, +1681, 0, 742, +1681, 0, 0, +1681, 1184, 0, +1817, 1604, 0, +1953, 1872, 0, +2087, 2085, 0, +2169, 2221, 0, +2256, 2355, 0, +2352, 2488, 0, +2454, 2621, 0, +2563, 2754, 0, +2677, 2886, 0, +2794, 3018, 0, +2916, 3151, 0, +3039, 3283, 0, +3165, 3415, 0, +3292, 3548, 0, +3421, 3680, 0, +3550, 3812, 0, +3680, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1828, 0, 1661, +1828, 0, 1656, +1827, 0, 1650, +1825, 0, 1640, +1823, 0, 1627, +1821, 0, 1609, +1817, 0, 1585, +1817, 0, 1540, +1817, 0, 1474, +1817, 0, 1366, +1817, 0, 1164, +1817, 0, 536, +1817, 0, 0, +1817, 1281, 0, +1953, 1722, 0, +2087, 1996, 0, +2221, 2212, 0, +2308, 2355, 0, +2394, 2488, 0, +2488, 2621, 0, +2590, 2754, 0, +2698, 2886, 0, +2811, 3018, 0, +2928, 3151, 0, +3049, 3283, 0, +3173, 3415, 0, +3298, 3548, 0, +3425, 3680, 0, +3553, 3812, 0, +3683, 3944, 0, +3812, 4076, 0, +3943, 4095, 0, +1961, 0, 1770, +1961, 0, 1766, +1960, 0, 1761, +1959, 0, 1754, +1958, 0, 1743, +1956, 0, 1730, +1953, 0, 1711, +1953, 0, 1678, +1953, 0, 1629, +1953, 0, 1555, +1953, 0, 1433, +1953, 0, 1190, +1953, 0, 0, +1953, 0, 0, +1953, 1385, 0, +2087, 1843, 0, +2221, 2123, 0, +2355, 2340, 0, +2445, 2488, 0, +2530, 2621, 0, +2624, 2754, 0, +2725, 2886, 0, +2832, 3018, 0, +2945, 3151, 0, +3062, 3283, 0, +3182, 3415, 0, +3305, 3548, 0, +3431, 3680, 0, +3558, 3812, 0, +3686, 3944, 0, +3815, 4076, 0, +3945, 4095, 0, +2094, 0, 1884, +2093, 0, 1881, +2093, 0, 1877, +2092, 0, 1871, +2091, 0, 1863, +2089, 0, 1853, +2087, 0, 1838, +2087, 0, 1813, +2087, 0, 1778, +2087, 0, 1726, +2087, 0, 1646, +2087, 0, 1509, +2087, 0, 1224, +2087, 0, 0, +2087, 0, 0, +2087, 1494, 0, +2221, 1967, 0, +2355, 2251, 0, +2488, 2470, 0, +2581, 2621, 0, +2666, 2754, 0, +2759, 2886, 0, +2859, 3018, 0, +2966, 3151, 0, +3078, 3283, 0, +3195, 3415, 0, +3315, 3548, 0, +3438, 3680, 0, +3563, 3812, 0, +3690, 3944, 0, +3818, 4076, 0, +3947, 4095, 0, +2226, 0, 2002, +2226, 0, 1999, +2225, 0, 1996, +2225, 0, 1992, +2224, 0, 1986, +2223, 0, 1978, +2221, 0, 1967, +2221, 0, 1948, +2221, 0, 1922, +2221, 0, 1885, +2221, 0, 1830, +2221, 0, 1744, +2221, 0, 1596, +2221, 0, 1264, +2221, 0, 0, +2221, 0, 0, +2221, 1608, 0, +2355, 2093, 0, +2488, 2379, 0, +2621, 2600, 0, +2716, 2754, 0, +2800, 2886, 0, +2892, 3018, 0, +2993, 3151, 0, +3099, 3283, 0, +3211, 3415, 0, +3328, 3548, 0, +3448, 3680, 0, +3571, 3812, 0, +3696, 3944, 0, +3822, 4076, 0, +3951, 4095, 0, +2358, 0, 2123, +2358, 0, 2121, +2358, 0, 2119, +2357, 0, 2115, +2357, 0, 2111, +2356, 0, 2105, +2355, 0, 2096, +2355, 0, 2083, +2355, 0, 2063, +2355, 0, 2037, +2355, 0, 1998, +2355, 0, 1940, +2355, 0, 1849, +2355, 0, 1689, +2355, 0, 1313, +2355, 0, 0, +2355, 0, 0, +2355, 1727, 0, +2488, 2221, 0, +2621, 2509, 0, +2754, 2731, 0, +2850, 2886, 0, +2934, 3018, 0, +3026, 3151, 0, +3126, 3283, 0, +3232, 3415, 0, +3344, 3548, 0, +3460, 3680, 0, +3580, 3812, 0, +3703, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2247, +2491, 0, 2245, +2490, 0, 2243, +2490, 0, 2241, +2489, 0, 2238, +2489, 0, 2233, +2488, 0, 2227, +2488, 0, 2217, +2488, 0, 2202, +2488, 0, 2183, +2488, 0, 2155, +2488, 0, 2115, +2488, 0, 2055, +2488, 0, 1960, +2488, 0, 1791, +2488, 0, 1373, +2488, 0, 0, +2488, 0, 0, +2488, 1848, 0, +2621, 2349, 0, +2754, 2640, 0, +2886, 2862, 0, +2984, 3018, 0, +3067, 3151, 0, +3159, 3283, 0, +3259, 3415, 0, +3365, 3548, 0, +3477, 3680, 0, +3593, 3812, 0, +3713, 3944, 0, +3835, 4076, 0, +3961, 4095, 0, +2623, 0, 2372, +2623, 0, 2372, +2623, 0, 2370, +2622, 0, 2368, +2622, 0, 2366, +2621, 0, 2362, +2621, 0, 2357, +2621, 0, 2350, +2621, 0, 2339, +2621, 0, 2325, +2621, 0, 2304, +2621, 0, 2276, +2621, 0, 2235, +2621, 0, 2173, +2621, 0, 2075, +2621, 0, 1899, +2621, 0, 1441, +2621, 0, 0, +2621, 0, 0, +2621, 1972, 0, +2754, 2479, 0, +2886, 2770, 0, +3018, 2992, 0, +3117, 3151, 0, +3200, 3283, 0, +3292, 3415, 0, +3392, 3548, 0, +3497, 3680, 0, +3609, 3812, 0, +3725, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2500, +2755, 0, 2499, +2755, 0, 2498, +2755, 0, 2497, +2755, 0, 2495, +2754, 0, 2492, +2754, 0, 2489, +2754, 0, 2483, +2754, 0, 2475, +2754, 0, 2464, +2754, 0, 2450, +2754, 0, 2429, +2754, 0, 2400, +2754, 0, 2358, +2754, 0, 2295, +2754, 0, 2195, +2754, 0, 2012, +2754, 0, 1521, +2754, 0, 0, +2754, 0, 0, +2754, 2099, 0, +2886, 2609, 0, +3018, 2901, 0, +3151, 3124, 0, +3250, 3283, 0, +3333, 3415, 0, +3425, 3548, 0, +3524, 3680, 0, +3630, 3812, 0, +3741, 3944, 0, +3858, 4076, 0, +3977, 4095, 0, +2887, 0, 2628, +2887, 0, 2628, +2887, 0, 2627, +2887, 0, 2626, +2887, 0, 2625, +2887, 0, 2623, +2886, 0, 2620, +2886, 0, 2616, +2886, 0, 2610, +2886, 0, 2602, +2886, 0, 2591, +2886, 0, 2576, +2886, 0, 2555, +2886, 0, 2526, +2886, 0, 2483, +2886, 0, 2419, +2886, 0, 2317, +2886, 0, 2129, +2886, 0, 1606, +2886, 0, 0, +2886, 0, 0, +2886, 2226, 0, +3018, 2739, 0, +3151, 3032, 0, +3283, 3256, 0, +3383, 3415, 0, +3466, 3548, 0, +3557, 3680, 0, +3657, 3812, 0, +3762, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2758, +3019, 0, 2757, +3019, 0, 2757, +3019, 0, 2756, +3019, 0, 2755, +3019, 0, 2753, +3018, 0, 2751, +3018, 0, 2748, +3018, 0, 2744, +3018, 0, 2738, +3018, 0, 2730, +3018, 0, 2719, +3018, 0, 2703, +3018, 0, 2683, +3018, 0, 2653, +3018, 0, 2610, +3018, 0, 2545, +3018, 0, 2441, +3018, 0, 2249, +3018, 0, 1700, +3018, 0, 0, +3018, 0, 0, +3018, 2354, 0, +3151, 2871, 0, +3283, 3164, 0, +3415, 3387, 0, +3515, 3548, 0, +3598, 3680, 0, +3690, 3812, 0, +3789, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2888, +3152, 0, 2888, +3152, 0, 2887, +3151, 0, 2886, +3151, 0, 2886, +3151, 0, 2885, +3151, 0, 2883, +3151, 0, 2881, +3151, 0, 2877, +3151, 0, 2873, +3151, 0, 2867, +3151, 0, 2859, +3151, 0, 2848, +3151, 0, 2833, +3151, 0, 2812, +3151, 0, 2782, +3151, 0, 2738, +3151, 0, 2673, +3151, 0, 2568, +3151, 0, 2373, +3151, 0, 1802, +3151, 0, 0, +3151, 0, 0, +3151, 2484, 0, +3283, 3001, 0, +3415, 3295, 0, +3548, 3519, 0, +3648, 3680, 0, +3731, 3812, 0, +3822, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3018, +3283, 0, 3018, +3283, 0, 3018, +3283, 0, 3017, +3283, 0, 3016, +3283, 0, 3016, +3283, 0, 3015, +3283, 0, 3013, +3283, 0, 3010, +3283, 0, 3007, +3283, 0, 3003, +3283, 0, 2997, +3283, 0, 2988, +3283, 0, 2977, +3283, 0, 2962, +3283, 0, 2941, +3283, 0, 2911, +3283, 0, 2867, +3283, 0, 2801, +3283, 0, 2695, +3283, 0, 2498, +3283, 0, 1908, +3283, 0, 0, +3283, 0, 0, +3283, 2614, 0, +3415, 3133, 0, +3548, 3427, 0, +3680, 3651, 0, +3781, 3812, 0, +3863, 3944, 0, +3954, 4076, 0, +4054, 4095, 0, +3416, 0, 3149, +3416, 0, 3149, +3416, 0, 3149, +3416, 0, 3148, +3416, 0, 3148, +3416, 0, 3147, +3415, 0, 3147, +3415, 0, 3145, +3415, 0, 3144, +3415, 0, 3141, +3415, 0, 3138, +3415, 0, 3133, +3415, 0, 3127, +3415, 0, 3119, +3415, 0, 3108, +3415, 0, 3093, +3415, 0, 3071, +3415, 0, 3041, +3415, 0, 2997, +3415, 0, 2931, +3415, 0, 2824, +3415, 0, 2625, +3415, 0, 2026, +3415, 0, 0, +3415, 0, 0, +3415, 2745, 0, +3548, 3265, 0, +3680, 3559, 0, +3812, 3783, 0, +3913, 3944, 0, +3995, 4076, 0, +4087, 4095, 0, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3278, +3548, 0, 3276, +3548, 0, 3274, +3548, 0, 3272, +3548, 0, 3269, +3548, 0, 3264, +3548, 0, 3258, +3548, 0, 3250, +3548, 0, 3239, +3548, 0, 3223, +3548, 0, 3202, +3548, 0, 3172, +3548, 0, 3128, +3548, 0, 3061, +3548, 0, 2954, +3548, 0, 2754, +3548, 0, 2141, +3548, 0, 0, +3548, 0, 0, +3548, 2876, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3412, +3680, 0, 3412, +3680, 0, 3412, +3680, 0, 3412, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3407, +3680, 0, 3406, +3680, 0, 3403, +3680, 0, 3400, +3680, 0, 3395, +3680, 0, 3389, +3680, 0, 3381, +3680, 0, 3370, +3680, 0, 3354, +3680, 0, 3333, +3680, 0, 3303, +3680, 0, 3258, +3680, 0, 3192, +3680, 0, 3084, +3680, 0, 2883, +3680, 0, 2266, +3680, 0, 0, +3680, 0, 0, +3680, 3007, 0, +3812, 3528, 0, +3944, 3823, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3539, +3812, 0, 3537, +3812, 0, 3534, +3812, 0, 3531, +3812, 0, 3527, +3812, 0, 3521, +3812, 0, 3513, +3812, 0, 3501, +3812, 0, 3486, +3812, 0, 3464, +3812, 0, 3434, +3812, 0, 3390, +3812, 0, 3323, +3812, 0, 3215, +3812, 0, 3014, +3812, 0, 2389, +3812, 0, 0, +3812, 0, 0, +3812, 3139, 0, +3944, 3660, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3670, +3944, 0, 3668, +3944, 0, 3666, +3944, 0, 3663, +3944, 0, 3658, +3944, 0, 3652, +3944, 0, 3644, +3944, 0, 3633, +3944, 0, 3617, +3944, 0, 3596, +3944, 0, 3565, +3944, 0, 3521, +3944, 0, 3454, +3944, 0, 3346, +3944, 0, 3144, +3944, 0, 2513, +3944, 0, 0, +3944, 0, 0, +3944, 3270, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3802, +4076, 0, 3800, +4076, 0, 3798, +4076, 0, 3794, +4076, 0, 3790, +4076, 0, 3784, +4076, 0, 3776, +4076, 0, 3764, +4076, 0, 3749, +4076, 0, 3727, +4076, 0, 3697, +4076, 0, 3653, +4076, 0, 3586, +4076, 0, 3477, +4076, 0, 3274, +4076, 0, 2639, +4076, 0, 0, +4076, 0, 0, +4076, 3402, 0, +4095, 3925, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3935, +4095, 0, 3934, +4095, 0, 3932, +4095, 0, 3930, +4095, 0, 3927, +4095, 0, 3922, +4095, 0, 3916, +4095, 0, 3908, +4095, 0, 3896, +4095, 0, 3881, +4095, 0, 3859, +4095, 0, 3829, +4095, 0, 3784, +4095, 0, 3718, +4095, 0, 3609, +4095, 0, 3406, +4095, 0, 2770, +4095, 0, 0, +4095, 0, 0, +4095, 3534, 0, +0, 792, 1025, +0, 832, 1025, +0, 881, 1025, +0, 939, 1025, +0, 1006, 1025, +0, 1025, 957, +0, 1025, 811, +0, 1025, 488, +0, 1160, 0, +0, 1295, 0, +471, 1429, 0, +897, 1563, 0, +1167, 1696, 0, +1381, 1828, 0, +1565, 1961, 0, +1733, 2094, 0, +1890, 2226, 0, +2040, 2358, 0, +2185, 2491, 0, +2327, 2623, 0, +2466, 2755, 0, +2603, 2887, 0, +2738, 3019, 0, +2873, 3152, 0, +3008, 3284, 0, +3141, 3416, 0, +3275, 3548, 0, +3408, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 748, 1025, +0, 800, 1020, +0, 852, 1020, +0, 914, 1020, +0, 985, 1020, +0, 1020, 970, +0, 1020, 829, +0, 1020, 524, +0, 1157, 0, +0, 1292, 0, +562, 1427, 0, +935, 1561, 0, +1188, 1695, 0, +1394, 1828, 0, +1574, 1961, 0, +1739, 2093, 0, +1894, 2226, 0, +2043, 2358, 0, +2187, 2491, 0, +2328, 2623, 0, +2467, 2755, 0, +2604, 2887, 0, +2739, 3019, 0, +2874, 3152, 0, +3008, 3283, 0, +3141, 3416, 0, +3275, 3548, 0, +3408, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 681, 1025, +0, 740, 1020, +0, 810, 1014, +0, 877, 1014, +0, 954, 1014, +0, 1014, 987, +0, 1014, 852, +0, 1014, 568, +0, 1152, 0, +9, 1289, 0, +662, 1424, 0, +981, 1559, 0, +1216, 1693, 0, +1412, 1827, 0, +1586, 1960, 0, +1748, 2093, 0, +1900, 2225, 0, +2047, 2358, 0, +2190, 2490, 0, +2331, 2623, 0, +2469, 2755, 0, +2605, 2887, 0, +2740, 3019, 0, +2875, 3152, 0, +3008, 3283, 0, +3142, 3416, 0, +3275, 3548, 0, +3408, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 573, 1025, +0, 647, 1020, +0, 731, 1014, +0, 823, 1005, +0, 908, 1005, +0, 1002, 1005, +0, 1005, 881, +0, 1005, 620, +0, 1146, 0, +346, 1284, 0, +767, 1421, 0, +1037, 1557, 0, +1249, 1691, 0, +1434, 1825, 0, +1601, 1959, 0, +1758, 2092, 0, +1908, 2225, 0, +2053, 2357, 0, +2195, 2490, 0, +2334, 2622, 0, +2471, 2755, 0, +2607, 2887, 0, +2741, 3019, 0, +2876, 3151, 0, +3009, 3283, 0, +3142, 3416, 0, +3275, 3548, 0, +3408, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 371, 1025, +0, 482, 1020, +0, 598, 1014, +0, 717, 1005, +298, 840, 994, +298, 947, 994, +298, 994, 917, +298, 994, 682, +81, 1137, 80, +587, 1278, 0, +878, 1416, 0, +1102, 1553, 0, +1291, 1689, 0, +1462, 1823, 0, +1621, 1958, 0, +1772, 2091, 0, +1918, 2224, 0, +2060, 2357, 0, +2200, 2489, 0, +2337, 2622, 0, +2474, 2755, 0, +2609, 2887, 0, +2743, 3019, 0, +2877, 3151, 0, +3010, 3283, 0, +3143, 3416, 0, +3276, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 0, 1025, +0, 81, 1020, +0, 323, 1014, +0, 523, 1005, +298, 699, 994, +544, 862, 978, +544, 978, 960, +544, 978, 754, +529, 1126, 430, +787, 1270, 212, +994, 1410, 0, +1176, 1549, 0, +1341, 1685, 0, +1497, 1821, 0, +1646, 1956, 0, +1790, 2089, 0, +1931, 2223, 0, +2070, 2356, 0, +2207, 2489, 0, +2343, 2621, 0, +2478, 2754, 0, +2612, 2887, 0, +2745, 3019, 0, +2879, 3151, 0, +3011, 3283, 0, +3144, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 0, 1025, +0, 0, 1020, +0, 0, 1014, +0, 0, 1005, +298, 397, 994, +544, 673, 978, +746, 890, 956, +746, 956, 834, +805, 1110, 676, +963, 1258, 562, +1114, 1402, 344, +1259, 1543, 0, +1401, 1681, 0, +1540, 1817, 0, +1678, 1953, 0, +1813, 2087, 0, +1948, 2221, 0, +2083, 2355, 0, +2217, 2488, 0, +2350, 2621, 0, +2483, 2754, 0, +2616, 2886, 0, +2748, 3018, 0, +2881, 3151, 0, +3013, 3283, 0, +3145, 3415, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +488, 0, 1025, +524, 0, 1020, +568, 0, 1014, +620, 0, 1005, +682, 298, 994, +754, 544, 978, +834, 746, 956, +924, 924, 924, +1021, 1088, 878, +1126, 1242, 809, +1236, 1390, 695, +1351, 1534, 476, +1470, 1674, 0, +1592, 1813, 0, +1716, 1950, 0, +1843, 2085, 0, +1970, 2220, 0, +2099, 2353, 0, +2229, 2487, 0, +2359, 2620, 0, +2490, 2753, 0, +2621, 2886, 0, +2752, 3018, 0, +2883, 3151, 0, +3015, 3283, 0, +3147, 3415, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +929, 0, 1160, +943, 0, 1157, +960, 0, 1152, +983, 0, 1146, +1013, 80, 1137, +1049, 430, 1126, +1092, 676, 1110, +1088, 878, 1021, +1088, 967, 878, +1242, 1225, 809, +1343, 1390, 695, +1437, 1534, 476, +1537, 1674, 0, +1644, 1813, 0, +1757, 1950, 0, +1873, 2085, 0, +1994, 2220, 0, +2117, 2353, 0, +2242, 2487, 0, +2369, 2620, 0, +2497, 2753, 0, +2626, 2886, 0, +2756, 3018, 0, +2887, 3151, 0, +3017, 3283, 0, +3149, 3415, 0, +3280, 3548, 0, +3412, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1204, 0, 1295, +1211, 0, 1292, +1221, 0, 1289, +1235, 0, 1284, +1251, 0, 1278, +1270, 212, 1266, +1258, 562, 1211, +1242, 809, 1126, +1242, 809, 938, +1242, 1018, 809, +1390, 1313, 695, +1531, 1534, 476, +1614, 1674, 0, +1706, 1813, 0, +1806, 1950, 0, +1912, 2085, 0, +2023, 2220, 0, +2140, 2353, 0, +2260, 2487, 0, +2382, 2620, 0, +2507, 2753, 0, +2634, 2886, 0, +2762, 3018, 0, +2891, 3151, 0, +3021, 3283, 0, +3151, 3415, 0, +3282, 3548, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1419, 0, 1429, +1424, 0, 1427, +1424, 0, 1418, +1421, 0, 1403, +1416, 0, 1381, +1410, 0, 1350, +1402, 344, 1304, +1390, 695, 1236, +1390, 695, 1095, +1390, 695, 793, +1390, 1078, 695, +1534, 1409, 476, +1674, 1648, 0, +1777, 1813, 0, +1864, 1950, 0, +1958, 2085, 0, +2060, 2220, 0, +2168, 2353, 0, +2282, 2487, 0, +2399, 2620, 0, +2521, 2753, 0, +2644, 2886, 0, +2769, 3018, 0, +2896, 3151, 0, +3025, 3283, 0, +3154, 3415, 0, +3284, 3548, 0, +3415, 3680, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1563, 0, 1515, +1561, 0, 1508, +1559, 0, 1499, +1557, 0, 1486, +1553, 0, 1467, +1549, 0, 1442, +1543, 0, 1405, +1534, 476, 1351, +1534, 476, 1246, +1534, 476, 1051, +1534, 476, 479, +1534, 1149, 476, +1674, 1512, 0, +1813, 1763, 0, +1931, 1950, 0, +2014, 2085, 0, +2105, 2220, 0, +2204, 2353, 0, +2310, 2487, 0, +2421, 2620, 0, +2537, 2753, 0, +2657, 2886, 0, +2779, 3018, 0, +2904, 3151, 0, +3031, 3283, 0, +3158, 3415, 0, +3287, 3548, 0, +3417, 3680, 0, +3548, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1696, 0, 1601, +1695, 0, 1596, +1693, 0, 1588, +1691, 0, 1577, +1689, 0, 1562, +1685, 0, 1541, +1681, 0, 1512, +1674, 0, 1470, +1674, 0, 1391, +1674, 0, 1258, +1674, 0, 983, +1674, 313, 0, +1674, 1228, 0, +1813, 1622, 0, +1950, 1882, 0, +2079, 2085, 0, +2159, 2220, 0, +2248, 2353, 0, +2345, 2487, 0, +2449, 2620, 0, +2559, 2753, 0, +2673, 2886, 0, +2792, 3018, 0, +2914, 3151, 0, +3038, 3283, 0, +3164, 3415, 0, +3292, 3548, 0, +3420, 3680, 0, +3550, 3812, 0, +3680, 3944, 0, +3810, 4076, 0, +3942, 4095, 0, +1828, 0, 1696, +1828, 0, 1691, +1827, 0, 1684, +1825, 0, 1676, +1823, 0, 1664, +1821, 0, 1648, +1817, 0, 1625, +1813, 0, 1592, +1813, 0, 1533, +1813, 0, 1440, +1813, 0, 1275, +1813, 0, 874, +1813, 0, 0, +1813, 1317, 0, +1950, 1736, 0, +2085, 2004, 0, +2220, 2217, 0, +2301, 2353, 0, +2388, 2487, 0, +2483, 2620, 0, +2586, 2753, 0, +2695, 2886, 0, +2808, 3018, 0, +2927, 3151, 0, +3047, 3283, 0, +3171, 3415, 0, +3297, 3548, 0, +3425, 3680, 0, +3553, 3812, 0, +3682, 3944, 0, +3812, 4076, 0, +3943, 4095, 0, +1961, 0, 1797, +1961, 0, 1793, +1960, 0, 1789, +1959, 0, 1781, +1958, 0, 1772, +1956, 0, 1759, +1953, 0, 1742, +1950, 0, 1716, +1950, 0, 1672, +1950, 0, 1606, +1950, 0, 1498, +1950, 0, 1295, +1950, 0, 670, +1950, 0, 0, +1950, 1413, 0, +2085, 1854, 0, +2220, 2128, 0, +2353, 2344, 0, +2440, 2487, 0, +2526, 2620, 0, +2620, 2753, 0, +2722, 2886, 0, +2830, 3018, 0, +2943, 3151, 0, +3060, 3283, 0, +3181, 3415, 0, +3305, 3548, 0, +3430, 3680, 0, +3557, 3812, 0, +3686, 3944, 0, +3815, 4076, 0, +3945, 4095, 0, +2094, 0, 1905, +2093, 0, 1902, +2093, 0, 1898, +2092, 0, 1893, +2091, 0, 1885, +2089, 0, 1875, +2087, 0, 1862, +2085, 0, 1843, +2085, 0, 1810, +2085, 0, 1761, +2085, 0, 1687, +2085, 0, 1565, +2085, 0, 1322, +2085, 0, 10, +2085, 0, 0, +2085, 1517, 0, +2220, 1975, 0, +2353, 2255, 0, +2487, 2473, 0, +2577, 2620, 0, +2662, 2753, 0, +2756, 2886, 0, +2857, 3018, 0, +2964, 3151, 0, +3077, 3283, 0, +3194, 3415, 0, +3314, 3548, 0, +3437, 3680, 0, +3563, 3812, 0, +3690, 3944, 0, +3818, 4076, 0, +3947, 4095, 0, +2226, 0, 2018, +2226, 0, 2016, +2225, 0, 2013, +2225, 0, 2009, +2224, 0, 2003, +2223, 0, 1995, +2221, 0, 1985, +2220, 0, 1970, +2220, 0, 1946, +2220, 0, 1910, +2220, 0, 1858, +2220, 0, 1778, +2220, 0, 1642, +2220, 0, 1355, +2220, 0, 0, +2220, 0, 0, +2220, 1626, 0, +2353, 2099, 0, +2487, 2383, 0, +2620, 2602, 0, +2713, 2753, 0, +2798, 2886, 0, +2890, 3018, 0, +2991, 3151, 0, +3098, 3283, 0, +3210, 3415, 0, +3327, 3548, 0, +3447, 3680, 0, +3570, 3812, 0, +3695, 3944, 0, +3822, 4076, 0, +3950, 4095, 0, +2358, 0, 2136, +2358, 0, 2134, +2358, 0, 2132, +2357, 0, 2128, +2357, 0, 2124, +2356, 0, 2118, +2355, 0, 2110, +2353, 0, 2099, +2353, 0, 2081, +2353, 0, 2054, +2353, 0, 2017, +2353, 0, 1962, +2353, 0, 1876, +2353, 0, 1727, +2353, 0, 1396, +2353, 0, 0, +2353, 0, 0, +2353, 1740, 0, +2487, 2226, 0, +2620, 2511, 0, +2753, 2732, 0, +2848, 2886, 0, +2932, 3018, 0, +3025, 3151, 0, +3125, 3283, 0, +3231, 3415, 0, +3343, 3548, 0, +3460, 3680, 0, +3580, 3812, 0, +3703, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2256, +2491, 0, 2255, +2490, 0, 2253, +2490, 0, 2251, +2489, 0, 2247, +2489, 0, 2243, +2488, 0, 2237, +2487, 0, 2229, +2487, 0, 2215, +2487, 0, 2196, +2487, 0, 2169, +2487, 0, 2130, +2487, 0, 2072, +2487, 0, 1981, +2487, 0, 1822, +2487, 0, 1446, +2487, 0, 0, +2487, 0, 0, +2487, 1859, 0, +2620, 2352, 0, +2753, 2641, 0, +2886, 2863, 0, +2982, 3018, 0, +3066, 3151, 0, +3158, 3283, 0, +3258, 3415, 0, +3364, 3548, 0, +3476, 3680, 0, +3593, 3812, 0, +3712, 3944, 0, +3835, 4076, 0, +3960, 4095, 0, +2623, 0, 2380, +2623, 0, 2379, +2623, 0, 2378, +2622, 0, 2375, +2622, 0, 2373, +2621, 0, 2370, +2621, 0, 2365, +2620, 0, 2359, +2620, 0, 2348, +2620, 0, 2334, +2620, 0, 2314, +2620, 0, 2287, +2620, 0, 2247, +2620, 0, 2187, +2620, 0, 2092, +2620, 0, 1923, +2620, 0, 1505, +2620, 0, 0, +2620, 0, 0, +2620, 1981, 0, +2753, 2482, 0, +2886, 2772, 0, +3018, 2993, 0, +3116, 3151, 0, +3199, 3283, 0, +3291, 3415, 0, +3391, 3548, 0, +3497, 3680, 0, +3609, 3812, 0, +3725, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2505, +2755, 0, 2505, +2755, 0, 2504, +2755, 0, 2502, +2755, 0, 2501, +2754, 0, 2498, +2754, 0, 2494, +2753, 0, 2490, +2753, 0, 2482, +2753, 0, 2471, +2753, 0, 2457, +2753, 0, 2437, +2753, 0, 2408, +2753, 0, 2367, +2753, 0, 2305, +2753, 0, 2208, +2753, 0, 2031, +2753, 0, 1575, +2753, 0, 0, +2753, 0, 0, +2753, 2105, 0, +2886, 2611, 0, +3018, 2902, 0, +3151, 3125, 0, +3249, 3283, 0, +3333, 3415, 0, +3424, 3548, 0, +3524, 3680, 0, +3630, 3812, 0, +3741, 3944, 0, +3857, 4076, 0, +3977, 4095, 0, +2887, 0, 2633, +2887, 0, 2632, +2887, 0, 2631, +2887, 0, 2630, +2887, 0, 2629, +2887, 0, 2627, +2886, 0, 2624, +2886, 0, 2621, +2886, 0, 2615, +2886, 0, 2607, +2886, 0, 2596, +2886, 0, 2581, +2886, 0, 2561, +2886, 0, 2532, +2886, 0, 2490, +2886, 0, 2427, +2886, 0, 2327, +2886, 0, 2144, +2886, 0, 1651, +2886, 0, 0, +2886, 0, 0, +2886, 2231, 0, +3018, 2740, 0, +3151, 3033, 0, +3283, 3256, 0, +3382, 3415, 0, +3466, 3548, 0, +3557, 3680, 0, +3656, 3812, 0, +3762, 3944, 0, +3873, 4076, 0, +3990, 4095, 0, +3019, 0, 2761, +3019, 0, 2760, +3019, 0, 2760, +3019, 0, 2759, +3019, 0, 2758, +3019, 0, 2756, +3018, 0, 2754, +3018, 0, 2752, +3018, 0, 2747, +3018, 0, 2742, +3018, 0, 2734, +3018, 0, 2723, +3018, 0, 2708, +3018, 0, 2687, +3018, 0, 2658, +3018, 0, 2615, +3018, 0, 2551, +3018, 0, 2449, +3018, 0, 2261, +3018, 0, 1737, +3018, 0, 0, +3018, 0, 0, +3018, 2358, 0, +3151, 2872, 0, +3283, 3164, 0, +3415, 3388, 0, +3515, 3548, 0, +3598, 3680, 0, +3690, 3812, 0, +3789, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2890, +3152, 0, 2890, +3152, 0, 2890, +3151, 0, 2889, +3151, 0, 2888, +3151, 0, 2887, +3151, 0, 2885, +3151, 0, 2883, +3151, 0, 2880, +3151, 0, 2876, +3151, 0, 2870, +3151, 0, 2862, +3151, 0, 2851, +3151, 0, 2836, +3151, 0, 2815, +3151, 0, 2785, +3151, 0, 2742, +3151, 0, 2678, +3151, 0, 2573, +3151, 0, 2382, +3151, 0, 1832, +3151, 0, 0, +3151, 0, 0, +3151, 2487, 0, +3283, 3002, 0, +3415, 3296, 0, +3548, 3520, 0, +3648, 3680, 0, +3730, 3812, 0, +3822, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3020, +3283, 0, 3020, +3283, 0, 3019, +3283, 0, 3019, +3283, 0, 3018, +3283, 0, 3018, +3283, 0, 3016, +3283, 0, 3015, +3283, 0, 3013, +3283, 0, 3009, +3283, 0, 3005, +3283, 0, 2999, +3283, 0, 2991, +3283, 0, 2980, +3283, 0, 2965, +3283, 0, 2943, +3283, 0, 2914, +3283, 0, 2870, +3283, 0, 2805, +3283, 0, 2700, +3283, 0, 2504, +3283, 0, 1932, +3283, 0, 0, +3283, 0, 0, +3283, 2616, 0, +3415, 3134, 0, +3548, 3428, 0, +3680, 3652, 0, +3780, 3812, 0, +3863, 3944, 0, +3954, 4076, 0, +4053, 4095, 0, +3416, 0, 3151, +3416, 0, 3151, +3416, 0, 3150, +3416, 0, 3150, +3416, 0, 3149, +3416, 0, 3149, +3415, 0, 3148, +3415, 0, 3147, +3415, 0, 3145, +3415, 0, 3143, +3415, 0, 3139, +3415, 0, 3135, +3415, 0, 3129, +3415, 0, 3121, +3415, 0, 3110, +3415, 0, 3094, +3415, 0, 3073, +3415, 0, 3043, +3415, 0, 2999, +3415, 0, 2934, +3415, 0, 2827, +3415, 0, 2630, +3415, 0, 2044, +3415, 0, 0, +3415, 0, 0, +3415, 2746, 0, +3548, 3265, 0, +3680, 3559, 0, +3812, 3784, 0, +3912, 3944, 0, +3995, 4076, 0, +4087, 4095, 0, +3548, 0, 3281, +3548, 0, 3281, +3548, 0, 3281, +3548, 0, 3281, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3279, +3548, 0, 3277, +3548, 0, 3276, +3548, 0, 3273, +3548, 0, 3270, +3548, 0, 3265, +3548, 0, 3259, +3548, 0, 3251, +3548, 0, 3240, +3548, 0, 3225, +3548, 0, 3203, +3548, 0, 3173, +3548, 0, 3129, +3548, 0, 3063, +3548, 0, 2956, +3548, 0, 2758, +3548, 0, 2156, +3548, 0, 0, +3548, 0, 0, +3548, 2877, 0, +3680, 3397, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3413, +3680, 0, 3413, +3680, 0, 3413, +3680, 0, 3412, +3680, 0, 3412, +3680, 0, 3412, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3410, +3680, 0, 3408, +3680, 0, 3406, +3680, 0, 3404, +3680, 0, 3401, +3680, 0, 3396, +3680, 0, 3390, +3680, 0, 3382, +3680, 0, 3371, +3680, 0, 3356, +3680, 0, 3334, +3680, 0, 3304, +3680, 0, 3260, +3680, 0, 3193, +3680, 0, 3086, +3680, 0, 2886, +3680, 0, 2277, +3680, 0, 0, +3680, 0, 0, +3680, 3008, 0, +3812, 3529, 0, +3944, 3823, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3538, +3812, 0, 3535, +3812, 0, 3532, +3812, 0, 3528, +3812, 0, 3521, +3812, 0, 3513, +3812, 0, 3502, +3812, 0, 3487, +3812, 0, 3465, +3812, 0, 3435, +3812, 0, 3391, +3812, 0, 3324, +3812, 0, 3216, +3812, 0, 3016, +3812, 0, 2397, +3812, 0, 0, +3812, 0, 0, +3812, 3139, 0, +3944, 3660, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3669, +3944, 0, 3666, +3944, 0, 3663, +3944, 0, 3659, +3944, 0, 3653, +3944, 0, 3645, +3944, 0, 3633, +3944, 0, 3618, +3944, 0, 3596, +3944, 0, 3566, +3944, 0, 3522, +3944, 0, 3455, +3944, 0, 3347, +3944, 0, 3145, +3944, 0, 2520, +3944, 0, 0, +3944, 0, 0, +3944, 3271, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3808, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3802, +4076, 0, 3801, +4076, 0, 3798, +4076, 0, 3795, +4076, 0, 3790, +4076, 0, 3784, +4076, 0, 3776, +4076, 0, 3765, +4076, 0, 3749, +4076, 0, 3728, +4076, 0, 3697, +4076, 0, 3653, +4076, 0, 3586, +4076, 0, 3478, +4076, 0, 3276, +4076, 0, 2644, +4076, 0, 0, +4076, 0, 0, +4076, 3402, 0, +4095, 3925, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3934, +4095, 0, 3932, +4095, 0, 3930, +4095, 0, 3927, +4095, 0, 3922, +4095, 0, 3916, +4095, 0, 3908, +4095, 0, 3897, +4095, 0, 3881, +4095, 0, 3860, +4095, 0, 3829, +4095, 0, 3785, +4095, 0, 3718, +4095, 0, 3610, +4095, 0, 3407, +4095, 0, 2773, +4095, 0, 0, +4095, 0, 0, +4095, 3534, 0, +0, 918, 1160, +0, 949, 1160, +0, 987, 1160, +0, 1033, 1160, +0, 1089, 1160, +0, 1154, 1160, +0, 1160, 1079, +0, 1160, 929, +0, 1160, 592, +0, 1295, 0, +0, 1429, 0, +523, 1563, 0, +998, 1696, 0, +1283, 1828, 0, +1503, 1961, 0, +1691, 2094, 0, +1860, 2226, 0, +2019, 2358, 0, +2170, 2491, 0, +2315, 2623, 0, +2457, 2755, 0, +2597, 2887, 0, +2734, 3019, 0, +2870, 3152, 0, +3005, 3284, 0, +3139, 3416, 0, +3273, 3548, 0, +3406, 3680, 0, +3540, 3812, 0, +3672, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 885, 1160, +0, 924, 1157, +0, 964, 1157, +0, 1013, 1157, +0, 1071, 1157, +0, 1139, 1157, +0, 1157, 1089, +0, 1157, 943, +0, 1157, 620, +0, 1292, 0, +0, 1427, 0, +605, 1561, 0, +1029, 1695, 0, +1300, 1828, 0, +1513, 1961, 0, +1698, 2093, 0, +1865, 2226, 0, +2022, 2358, 0, +2172, 2491, 0, +2317, 2623, 0, +2459, 2755, 0, +2598, 2887, 0, +2735, 3019, 0, +2871, 3152, 0, +3005, 3283, 0, +3140, 3416, 0, +3273, 3548, 0, +3407, 3680, 0, +3540, 3812, 0, +3672, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 836, 1160, +0, 879, 1157, +0, 932, 1152, +0, 984, 1152, +0, 1045, 1152, +0, 1117, 1152, +0, 1152, 1102, +0, 1152, 960, +0, 1152, 656, +0, 1289, 0, +0, 1424, 0, +696, 1559, 0, +1067, 1693, 0, +1321, 1827, 0, +1526, 1960, 0, +1706, 2093, 0, +1871, 2225, 0, +2027, 2358, 0, +2175, 2490, 0, +2320, 2623, 0, +2460, 2755, 0, +2599, 2887, 0, +2735, 3019, 0, +2871, 3152, 0, +3006, 3283, 0, +3140, 3416, 0, +3274, 3548, 0, +3407, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 762, 1160, +0, 813, 1157, +0, 873, 1152, +0, 942, 1146, +0, 1009, 1146, +0, 1086, 1146, +0, 1146, 1119, +0, 1146, 983, +0, 1146, 700, +0, 1284, 0, +141, 1421, 0, +794, 1557, 0, +1113, 1691, 0, +1348, 1825, 0, +1544, 1959, 0, +1718, 2092, 0, +1880, 2225, 0, +2032, 2357, 0, +2180, 2490, 0, +2323, 2622, 0, +2463, 2755, 0, +2601, 2887, 0, +2737, 3019, 0, +2872, 3151, 0, +3007, 3283, 0, +3141, 3416, 0, +3274, 3548, 0, +3407, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 640, 1160, +0, 705, 1157, +0, 779, 1152, +0, 863, 1146, +80, 955, 1137, +80, 1040, 1137, +80, 1134, 1137, +80, 1137, 1013, +80, 1137, 753, +0, 1278, 0, +478, 1416, 0, +900, 1553, 0, +1169, 1689, 0, +1382, 1823, 0, +1566, 1958, 0, +1733, 2091, 0, +1891, 2224, 0, +2040, 2357, 0, +2185, 2489, 0, +2327, 2622, 0, +2466, 2755, 0, +2603, 2887, 0, +2738, 3019, 0, +2873, 3151, 0, +3008, 3283, 0, +3141, 3416, 0, +3275, 3548, 0, +3408, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 397, 1160, +0, 503, 1157, +0, 614, 1152, +0, 730, 1146, +80, 850, 1137, +430, 972, 1126, +430, 1079, 1126, +430, 1126, 1049, +430, 1126, 814, +214, 1270, 212, +719, 1410, 0, +1011, 1549, 0, +1233, 1685, 0, +1423, 1821, 0, +1594, 1956, 0, +1753, 2089, 0, +1904, 2223, 0, +2050, 2356, 0, +2193, 2489, 0, +2332, 2621, 0, +2470, 2754, 0, +2606, 2887, 0, +2741, 3019, 0, +2875, 3151, 0, +3009, 3283, 0, +3142, 3416, 0, +3275, 3548, 0, +3408, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 0, 1160, +0, 0, 1157, +0, 214, 1152, +0, 455, 1146, +80, 655, 1137, +430, 831, 1126, +676, 994, 1110, +676, 1110, 1092, +676, 1110, 886, +661, 1258, 562, +919, 1402, 344, +1127, 1543, 0, +1308, 1681, 0, +1474, 1817, 0, +1629, 1953, 0, +1778, 2087, 0, +1922, 2221, 0, +2063, 2355, 0, +2202, 2488, 0, +2339, 2621, 0, +2475, 2754, 0, +2610, 2886, 0, +2744, 3018, 0, +2877, 3151, 0, +3010, 3283, 0, +3144, 3415, 0, +3276, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 0, 1160, +0, 0, 1157, +0, 0, 1152, +0, 0, 1146, +80, 81, 1137, +430, 529, 1126, +676, 805, 1110, +878, 1021, 1088, +878, 1088, 967, +938, 1242, 809, +1095, 1390, 695, +1246, 1534, 476, +1391, 1674, 0, +1533, 1813, 0, +1672, 1950, 0, +1810, 2085, 0, +1946, 2220, 0, +2081, 2353, 0, +2215, 2487, 0, +2348, 2620, 0, +2482, 2753, 0, +2615, 2886, 0, +2747, 3018, 0, +2880, 3151, 0, +3013, 3283, 0, +3145, 3415, 0, +3277, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +592, 0, 1160, +620, 0, 1157, +656, 0, 1152, +700, 0, 1146, +753, 80, 1137, +814, 430, 1126, +886, 676, 1110, +967, 878, 1088, +1056, 1056, 1056, +1154, 1220, 1010, +1258, 1374, 940, +1368, 1523, 826, +1483, 1666, 608, +1602, 1807, 0, +1724, 1945, 0, +1849, 2082, 0, +1975, 2217, 0, +2102, 2352, 0, +2231, 2486, 0, +2361, 2619, 0, +2491, 2752, 0, +2622, 2885, 0, +2752, 3018, 0, +2884, 3151, 0, +3015, 3283, 0, +3147, 3415, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1051, 0, 1295, +1062, 0, 1292, +1075, 0, 1289, +1093, 0, 1284, +1116, 0, 1278, +1145, 212, 1270, +1181, 562, 1258, +1225, 809, 1242, +1220, 1010, 1154, +1220, 1099, 1010, +1374, 1357, 940, +1476, 1523, 826, +1569, 1666, 608, +1669, 1807, 0, +1776, 1945, 0, +1889, 2082, 0, +2006, 2217, 0, +2126, 2352, 0, +2249, 2486, 0, +2374, 2619, 0, +2501, 2752, 0, +2629, 2885, 0, +2758, 3018, 0, +2888, 3151, 0, +3018, 3283, 0, +3150, 3415, 0, +3281, 3548, 0, +3412, 3680, 0, +3544, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1330, 0, 1429, +1336, 0, 1427, +1343, 0, 1424, +1353, 0, 1421, +1367, 0, 1416, +1383, 0, 1410, +1402, 344, 1398, +1390, 695, 1343, +1374, 940, 1258, +1374, 940, 1069, +1374, 1150, 940, +1523, 1445, 826, +1663, 1666, 608, +1746, 1807, 0, +1838, 1945, 0, +1938, 2082, 0, +2044, 2217, 0, +2155, 2352, 0, +2272, 2486, 0, +2392, 2619, 0, +2514, 2752, 0, +2639, 2885, 0, +2766, 3018, 0, +2894, 3151, 0, +3023, 3283, 0, +3153, 3415, 0, +3283, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1548, 0, 1563, +1552, 0, 1561, +1556, 0, 1559, +1557, 0, 1551, +1553, 0, 1535, +1549, 0, 1513, +1543, 0, 1482, +1534, 476, 1437, +1523, 826, 1368, +1523, 826, 1228, +1523, 826, 926, +1523, 1211, 826, +1666, 1541, 608, +1807, 1780, 0, +1909, 1945, 0, +1996, 2082, 0, +2090, 2217, 0, +2192, 2352, 0, +2301, 2486, 0, +2414, 2619, 0, +2532, 2752, 0, +2652, 2885, 0, +2776, 3018, 0, +2902, 3151, 0, +3029, 3283, 0, +3157, 3415, 0, +3286, 3548, 0, +3416, 3680, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1696, 0, 1653, +1695, 0, 1647, +1693, 0, 1640, +1691, 0, 1631, +1689, 0, 1617, +1685, 0, 1599, +1681, 0, 1574, +1674, 0, 1537, +1666, 608, 1483, +1666, 608, 1378, +1666, 608, 1183, +1666, 609, 608, +1666, 1281, 608, +1807, 1644, 0, +1945, 1895, 0, +2063, 2082, 0, +2146, 2217, 0, +2237, 2352, 0, +2336, 2486, 0, +2442, 2619, 0, +2553, 2752, 0, +2669, 2885, 0, +2789, 3018, 0, +2911, 3151, 0, +3036, 3283, 0, +3163, 3415, 0, +3291, 3548, 0, +3420, 3680, 0, +3549, 3812, 0, +3680, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1828, 0, 1738, +1828, 0, 1733, +1827, 0, 1727, +1825, 0, 1720, +1823, 0, 1709, +1821, 0, 1694, +1817, 0, 1673, +1813, 0, 1644, +1807, 0, 1602, +1807, 0, 1523, +1807, 0, 1391, +1807, 0, 1115, +1807, 438, 0, +1807, 1360, 0, +1945, 1754, 0, +2082, 2014, 0, +2211, 2217, 0, +2291, 2352, 0, +2380, 2486, 0, +2477, 2619, 0, +2581, 2752, 0, +2691, 2885, 0, +2805, 3018, 0, +2924, 3151, 0, +3046, 3283, 0, +3170, 3415, 0, +3296, 3548, 0, +3424, 3680, 0, +3552, 3812, 0, +3682, 3944, 0, +3812, 4076, 0, +3943, 4095, 0, +1961, 0, 1831, +1961, 0, 1828, +1960, 0, 1823, +1959, 0, 1817, +1958, 0, 1808, +1956, 0, 1796, +1953, 0, 1779, +1950, 0, 1757, +1945, 0, 1724, +1945, 0, 1665, +1945, 0, 1572, +1945, 0, 1407, +1945, 0, 1007, +1945, 37, 0, +1945, 1449, 0, +2082, 1868, 0, +2217, 2136, 0, +2352, 2349, 0, +2433, 2486, 0, +2520, 2619, 0, +2616, 2752, 0, +2718, 2885, 0, +2827, 3018, 0, +2941, 3151, 0, +3059, 3283, 0, +3180, 3415, 0, +3303, 3548, 0, +3429, 3680, 0, +3557, 3812, 0, +3685, 3944, 0, +3814, 4076, 0, +3945, 4095, 0, +2094, 0, 1932, +2093, 0, 1929, +2093, 0, 1926, +2092, 0, 1920, +2091, 0, 1913, +2089, 0, 1904, +2087, 0, 1891, +2085, 0, 1873, +2082, 0, 1849, +2082, 0, 1804, +2082, 0, 1738, +2082, 0, 1630, +2082, 0, 1428, +2082, 0, 800, +2082, 0, 0, +2082, 1545, 0, +2217, 1986, 0, +2352, 2261, 0, +2486, 2476, 0, +2572, 2619, 0, +2658, 2752, 0, +2752, 2885, 0, +2854, 3018, 0, +2962, 3151, 0, +3075, 3283, 0, +3192, 3415, 0, +3313, 3548, 0, +3437, 3680, 0, +3562, 3812, 0, +3689, 3944, 0, +3818, 4076, 0, +3947, 4095, 0, +2226, 0, 2039, +2226, 0, 2037, +2225, 0, 2034, +2225, 0, 2030, +2224, 0, 2025, +2223, 0, 2018, +2221, 0, 2008, +2220, 0, 1994, +2217, 0, 1975, +2217, 0, 1941, +2217, 0, 1894, +2217, 0, 1819, +2217, 0, 1697, +2217, 0, 1454, +2217, 0, 140, +2217, 0, 0, +2217, 1649, 0, +2352, 2107, 0, +2486, 2387, 0, +2619, 2604, 0, +2710, 2752, 0, +2795, 2885, 0, +2888, 3018, 0, +2989, 3151, 0, +3096, 3283, 0, +3209, 3415, 0, +3326, 3548, 0, +3446, 3680, 0, +3570, 3812, 0, +3695, 3944, 0, +3822, 4076, 0, +3950, 4095, 0, +2358, 0, 2152, +2358, 0, 2150, +2358, 0, 2148, +2357, 0, 2145, +2357, 0, 2141, +2356, 0, 2135, +2355, 0, 2127, +2353, 0, 2117, +2352, 0, 2102, +2352, 0, 2078, +2352, 0, 2042, +2352, 0, 1990, +2352, 0, 1910, +2352, 0, 1773, +2352, 0, 1487, +2352, 0, 0, +2352, 0, 0, +2352, 1758, 0, +2486, 2232, 0, +2619, 2515, 0, +2752, 2734, 0, +2845, 2885, 0, +2930, 3018, 0, +3023, 3151, 0, +3123, 3283, 0, +3230, 3415, 0, +3342, 3548, 0, +3459, 3680, 0, +3579, 3812, 0, +3702, 3944, 0, +3827, 4076, 0, +3954, 4095, 0, +2491, 0, 2269, +2491, 0, 2268, +2490, 0, 2266, +2490, 0, 2264, +2489, 0, 2260, +2489, 0, 2256, +2488, 0, 2250, +2487, 0, 2242, +2486, 0, 2231, +2486, 0, 2213, +2486, 0, 2187, +2486, 0, 2149, +2486, 0, 2094, +2486, 0, 2008, +2486, 0, 1859, +2486, 0, 1529, +2486, 0, 0, +2486, 0, 0, +2486, 1873, 0, +2619, 2357, 0, +2752, 2644, 0, +2885, 2864, 0, +2980, 3018, 0, +3064, 3151, 0, +3157, 3283, 0, +3257, 3415, 0, +3363, 3548, 0, +3475, 3680, 0, +3592, 3812, 0, +3712, 3944, 0, +3835, 4076, 0, +3960, 4095, 0, +2623, 0, 2390, +2623, 0, 2388, +2623, 0, 2387, +2622, 0, 2385, +2622, 0, 2383, +2621, 0, 2380, +2621, 0, 2375, +2620, 0, 2369, +2619, 0, 2361, +2619, 0, 2347, +2619, 0, 2328, +2619, 0, 2301, +2619, 0, 2262, +2619, 0, 2204, +2619, 0, 2113, +2619, 0, 1954, +2619, 0, 1578, +2619, 0, 0, +2619, 0, 0, +2619, 1991, 0, +2752, 2485, 0, +2885, 2773, 0, +3018, 2995, 0, +3115, 3151, 0, +3198, 3283, 0, +3290, 3415, 0, +3390, 3548, 0, +3496, 3680, 0, +3608, 3812, 0, +3725, 3944, 0, +3845, 4076, 0, +3967, 4095, 0, +2755, 0, 2513, +2755, 0, 2512, +2755, 0, 2511, +2755, 0, 2510, +2755, 0, 2508, +2754, 0, 2505, +2754, 0, 2502, +2753, 0, 2497, +2752, 0, 2491, +2752, 0, 2481, +2752, 0, 2467, +2752, 0, 2447, +2752, 0, 2419, +2752, 0, 2379, +2752, 0, 2319, +2752, 0, 2224, +2752, 0, 2056, +2752, 0, 1638, +2752, 0, 0, +2752, 0, 0, +2752, 2113, 0, +2885, 2613, 0, +3018, 2903, 0, +3151, 3126, 0, +3248, 3283, 0, +3331, 3415, 0, +3423, 3548, 0, +3523, 3680, 0, +3629, 3812, 0, +3741, 3944, 0, +3857, 4076, 0, +3977, 4095, 0, +2887, 0, 2638, +2887, 0, 2638, +2887, 0, 2637, +2887, 0, 2636, +2887, 0, 2635, +2887, 0, 2632, +2886, 0, 2630, +2886, 0, 2626, +2885, 0, 2622, +2885, 0, 2614, +2885, 0, 2603, +2885, 0, 2589, +2885, 0, 2569, +2885, 0, 2540, +2885, 0, 2499, +2885, 0, 2438, +2885, 0, 2340, +2885, 0, 2163, +2885, 0, 1706, +2885, 0, 0, +2885, 0, 0, +2885, 2237, 0, +3018, 2742, 0, +3151, 3034, 0, +3283, 3257, 0, +3381, 3415, 0, +3465, 3548, 0, +3556, 3680, 0, +3656, 3812, 0, +3762, 3944, 0, +3873, 4076, 0, +3989, 4095, 0, +3019, 0, 2765, +3019, 0, 2765, +3019, 0, 2764, +3019, 0, 2763, +3019, 0, 2762, +3019, 0, 2761, +3018, 0, 2759, +3018, 0, 2756, +3018, 0, 2752, +3018, 0, 2747, +3018, 0, 2739, +3018, 0, 2728, +3018, 0, 2714, +3018, 0, 2693, +3018, 0, 2664, +3018, 0, 2622, +3018, 0, 2559, +3018, 0, 2459, +3018, 0, 2276, +3018, 0, 1782, +3018, 0, 0, +3018, 0, 0, +3018, 2362, 0, +3151, 2873, 0, +3283, 3165, 0, +3415, 3388, 0, +3514, 3548, 0, +3597, 3680, 0, +3689, 3812, 0, +3788, 3944, 0, +3894, 4076, 0, +4006, 4095, 0, +3152, 0, 2893, +3152, 0, 2893, +3152, 0, 2893, +3151, 0, 2892, +3151, 0, 2891, +3151, 0, 2890, +3151, 0, 2889, +3151, 0, 2887, +3151, 0, 2884, +3151, 0, 2880, +3151, 0, 2874, +3151, 0, 2866, +3151, 0, 2855, +3151, 0, 2840, +3151, 0, 2819, +3151, 0, 2790, +3151, 0, 2747, +3151, 0, 2684, +3151, 0, 2581, +3151, 0, 2394, +3151, 0, 1869, +3151, 0, 0, +3151, 0, 0, +3151, 2490, 0, +3283, 3003, 0, +3415, 3296, 0, +3548, 3520, 0, +3647, 3680, 0, +3730, 3812, 0, +3822, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3022, +3283, 0, 3022, +3283, 0, 3022, +3283, 0, 3021, +3283, 0, 3021, +3283, 0, 3020, +3283, 0, 3019, +3283, 0, 3017, +3283, 0, 3015, +3283, 0, 3012, +3283, 0, 3008, +3283, 0, 3002, +3283, 0, 2994, +3283, 0, 2983, +3283, 0, 2968, +3283, 0, 2947, +3283, 0, 2917, +3283, 0, 2874, +3283, 0, 2809, +3283, 0, 2705, +3283, 0, 2513, +3283, 0, 1962, +3283, 0, 0, +3283, 0, 0, +3283, 2619, 0, +3415, 3135, 0, +3548, 3428, 0, +3680, 3652, 0, +3780, 3812, 0, +3863, 3944, 0, +3954, 4076, 0, +4053, 4095, 0, +3416, 0, 3152, +3416, 0, 3152, +3416, 0, 3152, +3416, 0, 3151, +3416, 0, 3151, +3416, 0, 3151, +3415, 0, 3150, +3415, 0, 3149, +3415, 0, 3147, +3415, 0, 3145, +3415, 0, 3141, +3415, 0, 3137, +3415, 0, 3131, +3415, 0, 3123, +3415, 0, 3112, +3415, 0, 3097, +3415, 0, 3076, +3415, 0, 3046, +3415, 0, 3002, +3415, 0, 2937, +3415, 0, 2832, +3415, 0, 2637, +3415, 0, 2068, +3415, 0, 0, +3415, 0, 0, +3415, 2748, 0, +3548, 3266, 0, +3680, 3560, 0, +3812, 3784, 0, +3912, 3944, 0, +3995, 4076, 0, +4086, 4095, 0, +3548, 0, 3283, +3548, 0, 3283, +3548, 0, 3282, +3548, 0, 3282, +3548, 0, 3282, +3548, 0, 3281, +3548, 0, 3281, +3548, 0, 3280, +3548, 0, 3279, +3548, 0, 3277, +3548, 0, 3275, +3548, 0, 3271, +3548, 0, 3267, +3548, 0, 3261, +3548, 0, 3253, +3548, 0, 3242, +3548, 0, 3226, +3548, 0, 3205, +3548, 0, 3175, +3548, 0, 3132, +3548, 0, 3066, +3548, 0, 2960, +3548, 0, 2763, +3548, 0, 2174, +3548, 0, 0, +3548, 0, 0, +3548, 2878, 0, +3680, 3397, 0, +3812, 3691, 0, +3944, 3915, 0, +4044, 4076, 0, +4095, 4095, 0, +3680, 0, 3414, +3680, 0, 3414, +3680, 0, 3414, +3680, 0, 3413, +3680, 0, 3413, +3680, 0, 3413, +3680, 0, 3412, +3680, 0, 3412, +3680, 0, 3411, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3405, +3680, 0, 3402, +3680, 0, 3397, +3680, 0, 3392, +3680, 0, 3383, +3680, 0, 3372, +3680, 0, 3357, +3680, 0, 3336, +3680, 0, 3305, +3680, 0, 3261, +3680, 0, 3195, +3680, 0, 3089, +3680, 0, 2890, +3680, 0, 2291, +3680, 0, 0, +3680, 0, 0, +3680, 3009, 0, +3812, 3529, 0, +3944, 3823, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3545, +3812, 0, 3545, +3812, 0, 3545, +3812, 0, 3545, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3540, +3812, 0, 3538, +3812, 0, 3536, +3812, 0, 3533, +3812, 0, 3528, +3812, 0, 3522, +3812, 0, 3514, +3812, 0, 3503, +3812, 0, 3488, +3812, 0, 3466, +3812, 0, 3436, +3812, 0, 3392, +3812, 0, 3326, +3812, 0, 3218, +3812, 0, 3019, +3812, 0, 2408, +3812, 0, 0, +3812, 0, 0, +3812, 3140, 0, +3944, 3661, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3671, +3944, 0, 3670, +3944, 0, 3667, +3944, 0, 3664, +3944, 0, 3659, +3944, 0, 3653, +3944, 0, 3645, +3944, 0, 3634, +3944, 0, 3619, +3944, 0, 3597, +3944, 0, 3567, +3944, 0, 3523, +3944, 0, 3456, +3944, 0, 3349, +3944, 0, 3147, +3944, 0, 2528, +3944, 0, 0, +3944, 0, 0, +3944, 3271, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3801, +4076, 0, 3798, +4076, 0, 3795, +4076, 0, 3791, +4076, 0, 3785, +4076, 0, 3777, +4076, 0, 3765, +4076, 0, 3750, +4076, 0, 3728, +4076, 0, 3698, +4076, 0, 3654, +4076, 0, 3587, +4076, 0, 3479, +4076, 0, 3277, +4076, 0, 2650, +4076, 0, 0, +4076, 0, 0, +4076, 3403, 0, +4095, 3925, 0, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3933, +4095, 0, 3930, +4095, 0, 3927, +4095, 0, 3923, +4095, 0, 3917, +4095, 0, 3908, +4095, 0, 3897, +4095, 0, 3881, +4095, 0, 3860, +4095, 0, 3830, +4095, 0, 3786, +4095, 0, 3719, +4095, 0, 3611, +4095, 0, 3408, +4095, 0, 2778, +4095, 0, 0, +4095, 0, 0, +4095, 3534, 0, +0, 1046, 1295, +0, 1069, 1295, +0, 1099, 1295, +0, 1135, 1295, +0, 1181, 1295, +0, 1234, 1295, +0, 1295, 1292, +0, 1295, 1204, +0, 1295, 1051, +0, 1295, 702, +0, 1429, 0, +0, 1563, 0, +580, 1696, 0, +1106, 1828, 0, +1402, 1961, 0, +1626, 2094, 0, +1817, 2226, 0, +1989, 2358, 0, +2149, 2491, 0, +2300, 2623, 0, +2446, 2755, 0, +2589, 2887, 0, +2728, 3019, 0, +2866, 3152, 0, +3002, 3284, 0, +3137, 3416, 0, +3271, 3548, 0, +3405, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 1021, 1295, +0, 1050, 1292, +0, 1081, 1292, +0, 1119, 1292, +0, 1166, 1292, +0, 1221, 1292, +0, 1286, 1292, +0, 1292, 1211, +0, 1292, 1062, +0, 1292, 724, +0, 1427, 0, +0, 1561, 0, +653, 1695, 0, +1131, 1828, 0, +1415, 1961, 0, +1635, 2093, 0, +1823, 2226, 0, +1993, 2358, 0, +2151, 2491, 0, +2302, 2623, 0, +2448, 2755, 0, +2589, 2887, 0, +2729, 3019, 0, +2866, 3152, 0, +3002, 3283, 0, +3137, 3416, 0, +3272, 3548, 0, +3405, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 985, 1295, +0, 1017, 1292, +0, 1056, 1289, +0, 1096, 1289, +0, 1145, 1289, +0, 1203, 1289, +0, 1271, 1289, +0, 1289, 1221, +0, 1289, 1075, +0, 1289, 753, +0, 1424, 0, +0, 1559, 0, +736, 1693, 0, +1161, 1827, 0, +1431, 1960, 0, +1645, 2093, 0, +1829, 2225, 0, +1997, 2358, 0, +2154, 2490, 0, +2304, 2623, 0, +2449, 2755, 0, +2591, 2887, 0, +2729, 3019, 0, +2867, 3152, 0, +3002, 3283, 0, +3138, 3416, 0, +3272, 3548, 0, +3405, 3680, 0, +3539, 3812, 0, +3672, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 934, 1295, +0, 968, 1292, +0, 1012, 1289, +0, 1064, 1284, +0, 1116, 1284, +0, 1177, 1284, +0, 1249, 1284, +0, 1284, 1235, +0, 1284, 1093, +0, 1284, 788, +0, 1421, 0, +0, 1557, 0, +827, 1691, 0, +1199, 1825, 0, +1453, 1959, 0, +1658, 2092, 0, +1839, 2225, 0, +2004, 2357, 0, +2159, 2490, 0, +2308, 2622, 0, +2452, 2755, 0, +2592, 2887, 0, +2731, 3019, 0, +2868, 3151, 0, +3003, 3283, 0, +3138, 3416, 0, +3272, 3548, 0, +3406, 3680, 0, +3539, 3812, 0, +3672, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 853, 1295, +0, 894, 1292, +0, 945, 1289, +0, 1005, 1284, +0, 1074, 1278, +0, 1141, 1278, +0, 1218, 1278, +0, 1278, 1251, +0, 1278, 1116, +0, 1278, 832, +0, 1416, 0, +275, 1553, 0, +926, 1689, 0, +1245, 1823, 0, +1480, 1958, 0, +1676, 2091, 0, +1850, 2224, 0, +2012, 2357, 0, +2165, 2489, 0, +2312, 2622, 0, +2455, 2755, 0, +2595, 2887, 0, +2732, 3019, 0, +2869, 3151, 0, +3004, 3283, 0, +3139, 3416, 0, +3273, 3548, 0, +3406, 3680, 0, +3539, 3812, 0, +3672, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 717, 1295, +0, 772, 1292, +0, 837, 1289, +0, 911, 1284, +0, 995, 1278, +212, 1087, 1270, +212, 1172, 1270, +212, 1266, 1270, +212, 1270, 1145, +212, 1270, 884, +0, 1410, 47, +611, 1549, 0, +1031, 1685, 0, +1301, 1821, 0, +1514, 1956, 0, +1698, 2089, 0, +1865, 2223, 0, +2022, 2356, 0, +2172, 2489, 0, +2317, 2621, 0, +2459, 2754, 0, +2598, 2887, 0, +2735, 3019, 0, +2871, 3151, 0, +3005, 3283, 0, +3140, 3416, 0, +3273, 3548, 0, +3407, 3680, 0, +3540, 3812, 0, +3672, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 431, 1295, +0, 529, 1292, +0, 635, 1289, +0, 746, 1284, +0, 862, 1278, +212, 982, 1270, +562, 1104, 1258, +562, 1211, 1258, +562, 1258, 1181, +562, 1258, 946, +345, 1402, 344, +852, 1543, 0, +1142, 1681, 0, +1366, 1817, 0, +1555, 1953, 0, +1726, 2087, 0, +1885, 2221, 0, +2037, 2355, 0, +2183, 2488, 0, +2325, 2621, 0, +2464, 2754, 0, +2602, 2886, 0, +2738, 3018, 0, +2873, 3151, 0, +3007, 3283, 0, +3141, 3415, 0, +3274, 3548, 0, +3407, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 0, 1295, +0, 0, 1292, +0, 9, 1289, +0, 346, 1284, +0, 587, 1278, +212, 787, 1270, +562, 963, 1258, +809, 1126, 1242, +809, 1242, 1225, +809, 1242, 1018, +793, 1390, 695, +1051, 1534, 476, +1258, 1674, 0, +1440, 1813, 0, +1606, 1950, 0, +1761, 2085, 0, +1910, 2220, 0, +2054, 2353, 0, +2196, 2487, 0, +2334, 2620, 0, +2471, 2753, 0, +2607, 2886, 0, +2742, 3018, 0, +2876, 3151, 0, +3009, 3283, 0, +3143, 3415, 0, +3276, 3548, 0, +3408, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 0, 1295, +0, 0, 1292, +0, 0, 1289, +0, 0, 1284, +0, 0, 1278, +212, 214, 1270, +562, 661, 1258, +809, 938, 1242, +1010, 1154, 1220, +1010, 1220, 1099, +1069, 1374, 940, +1228, 1523, 826, +1378, 1666, 608, +1523, 1807, 0, +1665, 1945, 0, +1804, 2082, 0, +1942, 2217, 0, +2078, 2352, 0, +2213, 2486, 0, +2347, 2619, 0, +2481, 2752, 0, +2614, 2885, 0, +2747, 3018, 0, +2880, 3151, 0, +3012, 3283, 0, +3145, 3415, 0, +3277, 3548, 0, +3409, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +702, 0, 1295, +724, 0, 1292, +753, 0, 1289, +788, 0, 1284, +832, 0, 1278, +884, 212, 1270, +946, 562, 1258, +1018, 809, 1242, +1099, 1010, 1220, +1188, 1188, 1188, +1286, 1352, 1142, +1390, 1507, 1073, +1500, 1654, 959, +1615, 1798, 740, +1734, 1939, 0, +1856, 2077, 0, +1981, 2214, 0, +2107, 2349, 0, +2235, 2484, 0, +2363, 2618, 0, +2493, 2751, 0, +2623, 2885, 0, +2754, 3017, 0, +2885, 3150, 0, +3016, 3282, 0, +3147, 3415, 0, +3279, 3547, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1174, 0, 1429, +1182, 0, 1427, +1193, 0, 1424, +1207, 0, 1421, +1225, 0, 1416, +1248, 0, 1410, +1277, 344, 1402, +1313, 695, 1390, +1357, 940, 1374, +1352, 1142, 1286, +1352, 1231, 1142, +1507, 1489, 1073, +1608, 1654, 959, +1701, 1798, 740, +1801, 1939, 0, +1908, 2077, 0, +2021, 2214, 0, +2138, 2349, 0, +2258, 2484, 0, +2381, 2618, 0, +2506, 2751, 0, +2633, 2885, 0, +2761, 3017, 0, +2891, 3150, 0, +3020, 3282, 0, +3151, 3415, 0, +3282, 3547, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1458, 0, 1563, +1463, 0, 1561, +1468, 0, 1559, +1476, 0, 1557, +1486, 0, 1553, +1499, 0, 1549, +1516, 0, 1543, +1534, 476, 1531, +1523, 826, 1476, +1507, 1073, 1390, +1507, 1073, 1202, +1507, 1282, 1073, +1654, 1577, 959, +1795, 1798, 740, +1878, 1939, 0, +1970, 2077, 0, +2070, 2214, 0, +2176, 2349, 0, +2288, 2484, 0, +2404, 2618, 0, +2524, 2751, 0, +2647, 2885, 0, +2771, 3017, 0, +2898, 3150, 0, +3026, 3282, 0, +3155, 3415, 0, +3285, 3547, 0, +3415, 3680, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1677, 0, 1696, +1680, 0, 1695, +1683, 0, 1693, +1688, 0, 1691, +1689, 0, 1683, +1685, 0, 1667, +1681, 0, 1645, +1674, 0, 1614, +1666, 608, 1569, +1654, 959, 1500, +1654, 959, 1360, +1654, 959, 1056, +1654, 1343, 959, +1798, 1673, 740, +1939, 1912, 0, +2041, 2077, 0, +2128, 2214, 0, +2223, 2349, 0, +2325, 2484, 0, +2432, 2618, 0, +2546, 2751, 0, +2664, 2885, 0, +2784, 3017, 0, +2908, 3150, 0, +3033, 3282, 0, +3161, 3415, 0, +3289, 3547, 0, +3418, 3680, 0, +3548, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1828, 0, 1789, +1828, 0, 1785, +1827, 0, 1779, +1825, 0, 1772, +1823, 0, 1763, +1821, 0, 1750, +1817, 0, 1732, +1813, 0, 1706, +1807, 0, 1669, +1798, 740, 1615, +1798, 740, 1510, +1798, 740, 1315, +1798, 740, 742, +1798, 1413, 740, +1939, 1776, 0, +2077, 2027, 0, +2195, 2214, 0, +2278, 2349, 0, +2369, 2484, 0, +2469, 2618, 0, +2574, 2751, 0, +2685, 2885, 0, +2801, 3017, 0, +2921, 3150, 0, +3043, 3282, 0, +3168, 3415, 0, +3295, 3547, 0, +3423, 3680, 0, +3552, 3812, 0, +3681, 3944, 0, +3812, 4076, 0, +3943, 4095, 0, +1961, 0, 1873, +1961, 0, 1870, +1960, 0, 1865, +1959, 0, 1860, +1958, 0, 1852, +1956, 0, 1841, +1953, 0, 1826, +1950, 0, 1806, +1945, 0, 1776, +1939, 0, 1734, +1939, 0, 1655, +1939, 0, 1523, +1939, 0, 1248, +1939, 573, 0, +1939, 1492, 0, +2077, 1886, 0, +2214, 2146, 0, +2343, 2349, 0, +2423, 2484, 0, +2512, 2618, 0, +2609, 2751, 0, +2713, 2885, 0, +2823, 3017, 0, +2938, 3150, 0, +3056, 3282, 0, +3178, 3415, 0, +3302, 3547, 0, +3428, 3680, 0, +3556, 3812, 0, +3685, 3944, 0, +3814, 4076, 0, +3944, 4095, 0, +2094, 0, 1966, +2093, 0, 1963, +2093, 0, 1960, +2092, 0, 1955, +2091, 0, 1949, +2089, 0, 1940, +2087, 0, 1928, +2085, 0, 1912, +2082, 0, 1889, +2077, 0, 1856, +2077, 0, 1797, +2077, 0, 1704, +2077, 0, 1539, +2077, 0, 1138, +2077, 173, 0, +2077, 1581, 0, +2214, 2000, 0, +2349, 2268, 0, +2484, 2481, 0, +2565, 2618, 0, +2652, 2751, 0, +2748, 2885, 0, +2850, 3017, 0, +2959, 3150, 0, +3073, 3282, 0, +3191, 3415, 0, +3312, 3547, 0, +3436, 3680, 0, +3562, 3812, 0, +3689, 3944, 0, +3817, 4076, 0, +3947, 4095, 0, +2226, 0, 2066, +2226, 0, 2064, +2225, 0, 2061, +2225, 0, 2058, +2224, 0, 2053, +2223, 0, 2046, +2221, 0, 2036, +2220, 0, 2023, +2217, 0, 2006, +2214, 0, 1981, +2214, 0, 1936, +2214, 0, 1870, +2214, 0, 1762, +2214, 0, 1560, +2214, 0, 932, +2214, 0, 0, +2214, 1677, 0, +2349, 2118, 0, +2484, 2393, 0, +2618, 2608, 0, +2704, 2751, 0, +2790, 2885, 0, +2885, 3017, 0, +2986, 3150, 0, +3094, 3282, 0, +3207, 3415, 0, +3325, 3547, 0, +3445, 3680, 0, +3569, 3812, 0, +3694, 3944, 0, +3821, 4076, 0, +3950, 4095, 0, +2358, 0, 2173, +2358, 0, 2171, +2358, 0, 2169, +2357, 0, 2166, +2357, 0, 2162, +2356, 0, 2157, +2355, 0, 2150, +2353, 0, 2140, +2352, 0, 2126, +2349, 0, 2107, +2349, 0, 2074, +2349, 0, 2025, +2349, 0, 1951, +2349, 0, 1829, +2349, 0, 1586, +2349, 0, 275, +2349, 0, 0, +2349, 1781, 0, +2484, 2240, 0, +2618, 2519, 0, +2751, 2737, 0, +2842, 2885, 0, +2927, 3017, 0, +3020, 3150, 0, +3121, 3282, 0, +3228, 3415, 0, +3341, 3547, 0, +3458, 3680, 0, +3579, 3812, 0, +3702, 3944, 0, +3827, 4076, 0, +3954, 4095, 0, +2491, 0, 2285, +2491, 0, 2284, +2490, 0, 2283, +2490, 0, 2280, +2489, 0, 2277, +2489, 0, 2273, +2488, 0, 2267, +2487, 0, 2260, +2486, 0, 2249, +2484, 0, 2235, +2484, 0, 2210, +2484, 0, 2174, +2484, 0, 2122, +2484, 0, 2042, +2484, 0, 1906, +2484, 0, 1620, +2484, 0, 0, +2484, 0, 0, +2484, 1891, 0, +2618, 2363, 0, +2751, 2647, 0, +2885, 2866, 0, +2977, 3017, 0, +3062, 3150, 0, +3155, 3282, 0, +3255, 3415, 0, +3362, 3547, 0, +3475, 3680, 0, +3591, 3812, 0, +3711, 3944, 0, +3834, 4076, 0, +3960, 4095, 0, +2623, 0, 2402, +2623, 0, 2401, +2623, 0, 2400, +2622, 0, 2398, +2622, 0, 2396, +2621, 0, 2393, +2621, 0, 2388, +2620, 0, 2382, +2619, 0, 2374, +2618, 0, 2363, +2618, 0, 2345, +2618, 0, 2319, +2618, 0, 2281, +2618, 0, 2226, +2618, 0, 2140, +2618, 0, 1991, +2618, 0, 1661, +2618, 0, 0, +2618, 0, 0, +2618, 2005, 0, +2751, 2490, 0, +2885, 2776, 0, +3017, 2996, 0, +3112, 3150, 0, +3196, 3282, 0, +3289, 3415, 0, +3389, 3547, 0, +3495, 3680, 0, +3607, 3812, 0, +3724, 3944, 0, +3844, 4076, 0, +3967, 4095, 0, +2755, 0, 2523, +2755, 0, 2522, +2755, 0, 2521, +2755, 0, 2520, +2755, 0, 2517, +2754, 0, 2515, +2754, 0, 2512, +2753, 0, 2507, +2752, 0, 2501, +2751, 0, 2493, +2751, 0, 2479, +2751, 0, 2460, +2751, 0, 2433, +2751, 0, 2394, +2751, 0, 2336, +2751, 0, 2245, +2751, 0, 2086, +2751, 0, 1711, +2751, 0, 0, +2751, 0, 0, +2751, 2123, 0, +2885, 2617, 0, +3017, 2905, 0, +3150, 3127, 0, +3247, 3282, 0, +3330, 3415, 0, +3422, 3547, 0, +3522, 3680, 0, +3629, 3812, 0, +3740, 3944, 0, +3856, 4076, 0, +3977, 4095, 0, +2887, 0, 2646, +2887, 0, 2645, +2887, 0, 2644, +2887, 0, 2643, +2887, 0, 2642, +2887, 0, 2640, +2886, 0, 2637, +2886, 0, 2634, +2885, 0, 2629, +2885, 0, 2623, +2885, 0, 2613, +2885, 0, 2599, +2885, 0, 2579, +2885, 0, 2551, +2885, 0, 2511, +2885, 0, 2451, +2885, 0, 2356, +2885, 0, 2188, +2885, 0, 1769, +2885, 0, 0, +2885, 0, 0, +2885, 2245, 0, +3017, 2745, 0, +3150, 3036, 0, +3282, 3257, 0, +3380, 3415, 0, +3464, 3547, 0, +3556, 3680, 0, +3655, 3812, 0, +3761, 3944, 0, +3873, 4076, 0, +3989, 4095, 0, +3019, 0, 2771, +3019, 0, 2770, +3019, 0, 2770, +3019, 0, 2769, +3019, 0, 2768, +3019, 0, 2766, +3018, 0, 2764, +3018, 0, 2762, +3018, 0, 2758, +3017, 0, 2754, +3017, 0, 2746, +3017, 0, 2735, +3017, 0, 2721, +3017, 0, 2701, +3017, 0, 2672, +3017, 0, 2631, +3017, 0, 2570, +3017, 0, 2471, +3017, 0, 2294, +3017, 0, 1837, +3017, 0, 0, +3017, 0, 0, +3017, 2369, 0, +3150, 2875, 0, +3282, 3166, 0, +3415, 3389, 0, +3513, 3547, 0, +3597, 3680, 0, +3689, 3812, 0, +3788, 3944, 0, +3894, 4076, 0, +4005, 4095, 0, +3152, 0, 2898, +3152, 0, 2897, +3152, 0, 2897, +3151, 0, 2896, +3151, 0, 2895, +3151, 0, 2895, +3151, 0, 2893, +3151, 0, 2891, +3151, 0, 2888, +3150, 0, 2885, +3150, 0, 2879, +3150, 0, 2871, +3150, 0, 2860, +3150, 0, 2846, +3150, 0, 2825, +3150, 0, 2796, +3150, 0, 2754, +3150, 0, 2691, +3150, 0, 2591, +3150, 0, 2408, +3150, 0, 1915, +3150, 0, 0, +3150, 0, 0, +3150, 2495, 0, +3282, 3005, 0, +3415, 3297, 0, +3547, 3520, 0, +3646, 3680, 0, +3729, 3812, 0, +3821, 3944, 0, +3921, 4076, 0, +4026, 4095, 0, +3284, 0, 3025, +3283, 0, 3025, +3283, 0, 3025, +3283, 0, 3025, +3283, 0, 3024, +3283, 0, 3023, +3283, 0, 3022, +3283, 0, 3021, +3283, 0, 3018, +3282, 0, 3016, +3282, 0, 3012, +3282, 0, 3006, +3282, 0, 2998, +3282, 0, 2987, +3282, 0, 2972, +3282, 0, 2951, +3282, 0, 2922, +3282, 0, 2879, +3282, 0, 2815, +3282, 0, 2713, +3282, 0, 2524, +3282, 0, 1999, +3282, 0, 0, +3282, 0, 0, +3282, 2622, 0, +3415, 3136, 0, +3547, 3429, 0, +3680, 3652, 0, +3779, 3812, 0, +3862, 3944, 0, +3953, 4076, 0, +4053, 4095, 0, +3416, 0, 3155, +3416, 0, 3154, +3416, 0, 3154, +3416, 0, 3154, +3416, 0, 3154, +3416, 0, 3153, +3415, 0, 3152, +3415, 0, 3151, +3415, 0, 3150, +3415, 0, 3147, +3415, 0, 3144, +3415, 0, 3140, +3415, 0, 3134, +3415, 0, 3126, +3415, 0, 3115, +3415, 0, 3100, +3415, 0, 3079, +3415, 0, 3049, +3415, 0, 3006, +3415, 0, 2942, +3415, 0, 2837, +3415, 0, 2646, +3415, 0, 2098, +3415, 0, 0, +3415, 0, 0, +3415, 2751, 0, +3547, 3267, 0, +3680, 3560, 0, +3812, 3784, 0, +3912, 3944, 0, +3995, 4076, 0, +4086, 4095, 0, +3548, 0, 3285, +3548, 0, 3284, +3548, 0, 3284, +3548, 0, 3284, +3548, 0, 3284, +3548, 0, 3283, +3548, 0, 3283, +3548, 0, 3282, +3548, 0, 3281, +3547, 0, 3279, +3547, 0, 3277, +3547, 0, 3274, +3547, 0, 3269, +3547, 0, 3263, +3547, 0, 3255, +3547, 0, 3244, +3547, 0, 3229, +3547, 0, 3208, +3547, 0, 3178, +3547, 0, 3135, +3547, 0, 3069, +3547, 0, 2964, +3547, 0, 2770, +3547, 0, 2198, +3547, 0, 0, +3547, 0, 0, +3547, 2880, 0, +3680, 3398, 0, +3812, 3692, 0, +3944, 3916, 0, +4044, 4076, 0, +4095, 4095, 0, +3680, 0, 3415, +3680, 0, 3415, +3680, 0, 3415, +3680, 0, 3415, +3680, 0, 3414, +3680, 0, 3414, +3680, 0, 3414, +3680, 0, 3413, +3680, 0, 3412, +3680, 0, 3411, +3680, 0, 3409, +3680, 0, 3407, +3680, 0, 3404, +3680, 0, 3399, +3680, 0, 3393, +3680, 0, 3385, +3680, 0, 3374, +3680, 0, 3359, +3680, 0, 3337, +3680, 0, 3307, +3680, 0, 3264, +3680, 0, 3198, +3680, 0, 3092, +3680, 0, 2895, +3680, 0, 2310, +3680, 0, 0, +3680, 0, 0, +3680, 3011, 0, +3812, 3530, 0, +3944, 3824, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3546, +3812, 0, 3546, +3812, 0, 3546, +3812, 0, 3545, +3812, 0, 3545, +3812, 0, 3545, +3812, 0, 3545, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3543, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3537, +3812, 0, 3534, +3812, 0, 3530, +3812, 0, 3523, +3812, 0, 3515, +3812, 0, 3504, +3812, 0, 3489, +3812, 0, 3468, +3812, 0, 3437, +3812, 0, 3394, +3812, 0, 3328, +3812, 0, 3221, +3812, 0, 3023, +3812, 0, 2422, +3812, 0, 0, +3812, 0, 0, +3812, 3141, 0, +3944, 3661, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3677, +3944, 0, 3677, +3944, 0, 3677, +3944, 0, 3677, +3944, 0, 3677, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3671, +3944, 0, 3668, +3944, 0, 3665, +3944, 0, 3661, +3944, 0, 3654, +3944, 0, 3646, +3944, 0, 3635, +3944, 0, 3620, +3944, 0, 3598, +3944, 0, 3568, +3944, 0, 3524, +3944, 0, 3458, +3944, 0, 3351, +3944, 0, 3151, +3944, 0, 2539, +3944, 0, 0, +3944, 0, 0, +3944, 3272, 0, +4076, 3793, 0, +4095, 4088, 0, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3803, +4076, 0, 3802, +4076, 0, 3799, +4076, 0, 3796, +4076, 0, 3791, +4076, 0, 3785, +4076, 0, 3777, +4076, 0, 3766, +4076, 0, 3751, +4076, 0, 3729, +4076, 0, 3699, +4076, 0, 3655, +4076, 0, 3588, +4076, 0, 3480, +4076, 0, 3279, +4076, 0, 2659, +4076, 0, 0, +4076, 0, 0, +4076, 3403, 0, +4095, 3925, 0, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3935, +4095, 0, 3933, +4095, 0, 3931, +4095, 0, 3927, +4095, 0, 3923, +4095, 0, 3917, +4095, 0, 3909, +4095, 0, 3898, +4095, 0, 3882, +4095, 0, 3861, +4095, 0, 3830, +4095, 0, 3786, +4095, 0, 3720, +4095, 0, 3612, +4095, 0, 3410, +4095, 0, 2785, +4095, 0, 0, +4095, 0, 0, +4095, 3535, 0, +0, 1174, 1429, +0, 1192, 1429, +0, 1215, 1429, +0, 1244, 1429, +0, 1280, 1429, +0, 1323, 1429, +0, 1376, 1429, +0, 1429, 1419, +0, 1429, 1330, +0, 1429, 1174, +0, 1429, 816, +0, 1563, 0, +0, 1696, 0, +650, 1828, 0, +1220, 1961, 0, +1524, 2094, 0, +1753, 2226, 0, +1946, 2358, 0, +2119, 2491, 0, +2278, 2623, 0, +2431, 2755, 0, +2577, 2887, 0, +2720, 3019, 0, +2860, 3152, 0, +2997, 3284, 0, +3134, 3416, 0, +3269, 3548, 0, +3403, 3680, 0, +3537, 3812, 0, +3670, 3944, 0, +3803, 4076, 0, +3937, 4095, 0, +0, 1156, 1429, +0, 1178, 1427, +0, 1201, 1427, +0, 1231, 1427, +0, 1267, 1427, +0, 1313, 1427, +0, 1366, 1427, +0, 1427, 1424, +0, 1427, 1336, +0, 1427, 1182, +0, 1427, 833, +0, 1561, 0, +0, 1695, 0, +713, 1828, 0, +1238, 1961, 0, +1534, 2093, 0, +1759, 2226, 0, +1950, 2358, 0, +2121, 2491, 0, +2281, 2623, 0, +2432, 2755, 0, +2578, 2887, 0, +2720, 3019, 0, +2860, 3152, 0, +2998, 3283, 0, +3134, 3416, 0, +3269, 3548, 0, +3403, 3680, 0, +3537, 3812, 0, +3671, 3944, 0, +3803, 4076, 0, +3937, 4095, 0, +0, 1130, 1429, +0, 1153, 1427, +0, 1182, 1424, +0, 1213, 1424, +0, 1251, 1424, +0, 1298, 1424, +0, 1353, 1424, +0, 1418, 1424, +0, 1424, 1343, +0, 1424, 1193, +0, 1424, 856, +0, 1559, 0, +0, 1693, 0, +786, 1827, 0, +1263, 1960, 0, +1547, 2093, 0, +1767, 2225, 0, +1955, 2358, 0, +2125, 2490, 0, +2283, 2623, 0, +2434, 2755, 0, +2580, 2887, 0, +2721, 3019, 0, +2861, 3152, 0, +2998, 3283, 0, +3134, 3416, 0, +3269, 3548, 0, +3404, 3680, 0, +3537, 3812, 0, +3671, 3944, 0, +3803, 4076, 0, +3937, 4095, 0, +0, 1092, 1429, +0, 1118, 1427, +0, 1149, 1424, +0, 1188, 1421, +0, 1228, 1421, +0, 1277, 1421, +0, 1335, 1421, +0, 1403, 1421, +0, 1421, 1353, +0, 1421, 1207, +0, 1421, 885, +0, 1557, 0, +0, 1691, 0, +869, 1825, 0, +1294, 1959, 0, +1564, 2092, 0, +1777, 2225, 0, +1962, 2357, 0, +2129, 2490, 0, +2287, 2622, 0, +2436, 2755, 0, +2581, 2887, 0, +2723, 3019, 0, +2862, 3151, 0, +2999, 3283, 0, +3135, 3416, 0, +3270, 3548, 0, +3404, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 1037, 1429, +0, 1065, 1427, +0, 1101, 1424, +0, 1144, 1421, +0, 1196, 1416, +0, 1248, 1416, +0, 1310, 1416, +0, 1381, 1416, +0, 1416, 1367, +0, 1416, 1225, +0, 1416, 920, +0, 1553, 0, +0, 1689, 0, +960, 1823, 0, +1332, 1958, 0, +1585, 2091, 0, +1790, 2224, 0, +1970, 2357, 0, +2136, 2489, 0, +2291, 2622, 0, +2440, 2755, 0, +2584, 2887, 0, +2724, 3019, 0, +2863, 3151, 0, +3000, 3283, 0, +3135, 3416, 0, +3270, 3548, 0, +3404, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 951, 1429, +0, 985, 1427, +0, 1027, 1424, +0, 1077, 1421, +0, 1137, 1416, +0, 1206, 1410, +0, 1273, 1410, +0, 1350, 1410, +0, 1410, 1383, +0, 1410, 1248, +0, 1410, 964, +0, 1549, 0, +406, 1685, 0, +1059, 1821, 0, +1378, 1956, 0, +1612, 2089, 0, +1808, 2223, 0, +1982, 2356, 0, +2144, 2489, 0, +2297, 2621, 0, +2444, 2754, 0, +2587, 2887, 0, +2727, 3019, 0, +2865, 3151, 0, +3001, 3283, 0, +3136, 3416, 0, +3271, 3548, 0, +3405, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 803, 1429, +0, 849, 1427, +0, 904, 1424, +0, 969, 1421, +0, 1043, 1416, +0, 1127, 1410, +344, 1219, 1402, +344, 1304, 1402, +344, 1398, 1402, +344, 1402, 1277, +344, 1402, 1017, +0, 1543, 172, +742, 1681, 0, +1164, 1817, 0, +1433, 1953, 0, +1646, 2087, 0, +1830, 2221, 0, +1998, 2355, 0, +2155, 2488, 0, +2304, 2621, 0, +2450, 2754, 0, +2591, 2886, 0, +2730, 3018, 0, +2867, 3151, 0, +3003, 3283, 0, +3138, 3415, 0, +3272, 3548, 0, +3406, 3680, 0, +3539, 3812, 0, +3672, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 471, 1429, +0, 562, 1427, +0, 662, 1424, +0, 767, 1421, +0, 878, 1416, +0, 994, 1410, +344, 1114, 1402, +695, 1236, 1390, +695, 1343, 1390, +695, 1390, 1313, +695, 1390, 1078, +479, 1534, 476, +983, 1674, 0, +1275, 1813, 0, +1498, 1950, 0, +1687, 2085, 0, +1858, 2220, 0, +2017, 2353, 0, +2169, 2487, 0, +2314, 2620, 0, +2457, 2753, 0, +2596, 2886, 0, +2734, 3018, 0, +2870, 3151, 0, +3005, 3283, 0, +3139, 3415, 0, +3273, 3548, 0, +3406, 3680, 0, +3540, 3812, 0, +3672, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 0, 1429, +0, 0, 1427, +0, 0, 1424, +0, 141, 1421, +0, 478, 1416, +0, 719, 1410, +344, 919, 1402, +695, 1095, 1390, +940, 1258, 1374, +940, 1374, 1357, +940, 1374, 1150, +926, 1523, 826, +1183, 1666, 608, +1391, 1807, 0, +1572, 1945, 0, +1738, 2082, 0, +1894, 2217, 0, +2042, 2352, 0, +2187, 2486, 0, +2328, 2619, 0, +2467, 2752, 0, +2603, 2885, 0, +2739, 3018, 0, +2874, 3151, 0, +3008, 3283, 0, +3141, 3415, 0, +3275, 3548, 0, +3408, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 0, 1429, +0, 0, 1427, +0, 0, 1424, +0, 0, 1421, +0, 0, 1416, +47, 0, 1410, +344, 345, 1402, +695, 793, 1390, +940, 1069, 1374, +1142, 1286, 1352, +1142, 1352, 1231, +1202, 1507, 1073, +1360, 1654, 959, +1510, 1798, 740, +1655, 1939, 0, +1797, 2077, 0, +1936, 2214, 0, +2074, 2349, 0, +2210, 2484, 0, +2345, 2618, 0, +2479, 2751, 0, +2613, 2885, 0, +2746, 3017, 0, +2879, 3150, 0, +3012, 3282, 0, +3144, 3415, 0, +3277, 3547, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +816, 0, 1429, +833, 0, 1427, +856, 0, 1424, +885, 0, 1421, +920, 0, 1416, +964, 0, 1410, +1017, 344, 1402, +1078, 695, 1390, +1150, 940, 1374, +1231, 1142, 1352, +1320, 1320, 1320, +1418, 1484, 1274, +1522, 1638, 1205, +1633, 1787, 1090, +1748, 1930, 872, +1866, 2071, 79, +1988, 2209, 0, +2113, 2346, 0, +2239, 2481, 0, +2367, 2616, 0, +2495, 2750, 0, +2625, 2883, 0, +2755, 3016, 0, +2886, 3150, 0, +3017, 3282, 0, +3148, 3414, 0, +3280, 3547, 0, +3411, 3679, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1301, 0, 1563, +1307, 0, 1561, +1315, 0, 1559, +1326, 0, 1557, +1340, 0, 1553, +1358, 0, 1549, +1381, 0, 1543, +1409, 476, 1534, +1445, 826, 1523, +1489, 1073, 1507, +1484, 1274, 1418, +1484, 1363, 1274, +1638, 1621, 1205, +1740, 1787, 1090, +1833, 1930, 872, +1934, 2071, 79, +2041, 2209, 0, +2153, 2346, 0, +2270, 2481, 0, +2390, 2616, 0, +2514, 2750, 0, +2639, 2883, 0, +2765, 3016, 0, +2894, 3150, 0, +3023, 3282, 0, +3152, 3414, 0, +3283, 3547, 0, +3414, 3679, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1587, 0, 1696, +1590, 0, 1695, +1594, 0, 1693, +1600, 0, 1691, +1608, 0, 1689, +1618, 0, 1685, +1631, 0, 1681, +1648, 0, 1674, +1666, 608, 1663, +1654, 959, 1608, +1638, 1205, 1522, +1638, 1205, 1333, +1638, 1414, 1205, +1787, 1709, 1090, +1927, 1930, 872, +2010, 2071, 79, +2102, 2209, 0, +2202, 2346, 0, +2308, 2481, 0, +2420, 2616, 0, +2536, 2750, 0, +2656, 2883, 0, +2778, 3016, 0, +2904, 3150, 0, +3030, 3282, 0, +3158, 3414, 0, +3287, 3547, 0, +3417, 3679, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1807, 0, 1828, +1810, 0, 1828, +1812, 0, 1827, +1816, 0, 1825, +1821, 0, 1823, +1821, 0, 1815, +1817, 0, 1799, +1813, 0, 1777, +1807, 0, 1746, +1798, 740, 1701, +1787, 1090, 1633, +1787, 1090, 1491, +1787, 1090, 1189, +1787, 1475, 1090, +1930, 1805, 872, +2071, 2044, 79, +2174, 2209, 0, +2260, 2346, 0, +2355, 2481, 0, +2456, 2616, 0, +2565, 2750, 0, +2678, 2883, 0, +2796, 3016, 0, +2917, 3150, 0, +3040, 3282, 0, +3165, 3414, 0, +3293, 3547, 0, +3421, 3679, 0, +3551, 3812, 0, +3680, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1961, 0, 1923, +1961, 0, 1920, +1960, 0, 1917, +1959, 0, 1911, +1958, 0, 1905, +1956, 0, 1895, +1953, 0, 1882, +1950, 0, 1864, +1945, 0, 1838, +1939, 0, 1801, +1930, 872, 1748, +1930, 872, 1642, +1930, 872, 1447, +1930, 872, 873, +1930, 1545, 872, +2071, 1908, 79, +2209, 2159, 0, +2328, 2346, 0, +2410, 2481, 0, +2501, 2616, 0, +2601, 2750, 0, +2706, 2883, 0, +2817, 3016, 0, +2933, 3150, 0, +3053, 3282, 0, +3175, 3414, 0, +3300, 3547, 0, +3427, 3679, 0, +3555, 3812, 0, +3684, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +2094, 0, 2007, +2093, 0, 2005, +2093, 0, 2002, +2092, 0, 1997, +2091, 0, 1992, +2089, 0, 1984, +2087, 0, 1973, +2085, 0, 1958, +2082, 0, 1938, +2077, 0, 1908, +2071, 79, 1866, +2071, 79, 1787, +2071, 79, 1655, +2071, 79, 1379, +2071, 706, 79, +2071, 1625, 79, +2209, 2018, 0, +2346, 2278, 0, +2475, 2481, 0, +2555, 2616, 0, +2645, 2750, 0, +2741, 2883, 0, +2845, 3016, 0, +2955, 3150, 0, +3070, 3282, 0, +3188, 3414, 0, +3310, 3547, 0, +3434, 3679, 0, +3561, 3812, 0, +3688, 3944, 0, +3816, 4076, 0, +3946, 4095, 0, +2226, 0, 2100, +2226, 0, 2098, +2225, 0, 2095, +2225, 0, 2092, +2224, 0, 2087, +2223, 0, 2081, +2221, 0, 2072, +2220, 0, 2060, +2217, 0, 2044, +2214, 0, 2021, +2209, 0, 1988, +2209, 0, 1929, +2209, 0, 1836, +2209, 0, 1671, +2209, 0, 1270, +2209, 303, 0, +2209, 1713, 0, +2346, 2132, 0, +2481, 2401, 0, +2616, 2613, 0, +2697, 2750, 0, +2784, 2883, 0, +2880, 3016, 0, +2982, 3150, 0, +3091, 3282, 0, +3205, 3414, 0, +3323, 3547, 0, +3444, 3679, 0, +3568, 3812, 0, +3694, 3944, 0, +3821, 4076, 0, +3950, 4095, 0, +2358, 0, 2200, +2358, 0, 2199, +2358, 0, 2196, +2357, 0, 2193, +2357, 0, 2190, +2356, 0, 2185, +2355, 0, 2178, +2353, 0, 2168, +2352, 0, 2155, +2349, 0, 2138, +2346, 0, 2113, +2346, 0, 2069, +2346, 0, 2002, +2346, 0, 1894, +2346, 0, 1692, +2346, 0, 1064, +2346, 0, 0, +2346, 1809, 0, +2481, 2251, 0, +2616, 2525, 0, +2750, 2741, 0, +2836, 2883, 0, +2922, 3016, 0, +3017, 3150, 0, +3118, 3282, 0, +3226, 3414, 0, +3339, 3547, 0, +3457, 3679, 0, +3577, 3812, 0, +3701, 3944, 0, +3826, 4076, 0, +3954, 4095, 0, +2491, 0, 2306, +2491, 0, 2305, +2490, 0, 2304, +2490, 0, 2302, +2489, 0, 2298, +2489, 0, 2294, +2488, 0, 2289, +2487, 0, 2282, +2486, 0, 2272, +2484, 0, 2258, +2481, 0, 2239, +2481, 0, 2206, +2481, 0, 2158, +2481, 0, 2084, +2481, 0, 1961, +2481, 0, 1719, +2481, 0, 415, +2481, 0, 0, +2481, 1913, 0, +2616, 2372, 0, +2750, 2651, 0, +2883, 2869, 0, +2974, 3016, 0, +3059, 3150, 0, +3152, 3282, 0, +3253, 3414, 0, +3361, 3547, 0, +3473, 3679, 0, +3590, 3812, 0, +3711, 3944, 0, +3834, 4076, 0, +3959, 4095, 0, +2623, 0, 2419, +2623, 0, 2417, +2623, 0, 2416, +2622, 0, 2414, +2622, 0, 2412, +2621, 0, 2409, +2621, 0, 2405, +2620, 0, 2399, +2619, 0, 2392, +2618, 0, 2381, +2616, 0, 2367, +2616, 0, 2342, +2616, 0, 2306, +2616, 0, 2255, +2616, 0, 2174, +2616, 0, 2038, +2616, 0, 1752, +2616, 0, 0, +2616, 0, 0, +2616, 2022, 0, +2750, 2496, 0, +2883, 2779, 0, +3016, 2998, 0, +3110, 3150, 0, +3194, 3282, 0, +3287, 3414, 0, +3387, 3547, 0, +3494, 3679, 0, +3606, 3812, 0, +3723, 3944, 0, +3843, 4076, 0, +3967, 4095, 0, +2755, 0, 2535, +2755, 0, 2535, +2755, 0, 2533, +2755, 0, 2532, +2755, 0, 2530, +2754, 0, 2528, +2754, 0, 2525, +2753, 0, 2521, +2752, 0, 2514, +2751, 0, 2506, +2750, 0, 2495, +2750, 0, 2477, +2750, 0, 2451, +2750, 0, 2414, +2750, 0, 2359, +2750, 0, 2273, +2750, 0, 2124, +2750, 0, 1794, +2750, 0, 0, +2750, 0, 0, +2750, 2137, 0, +2883, 2621, 0, +3016, 2907, 0, +3150, 3128, 0, +3244, 3282, 0, +3329, 3414, 0, +3421, 3547, 0, +3521, 3679, 0, +3628, 3812, 0, +3740, 3944, 0, +3856, 4076, 0, +3976, 4095, 0, +2887, 0, 2655, +2887, 0, 2655, +2887, 0, 2654, +2887, 0, 2653, +2887, 0, 2651, +2887, 0, 2650, +2886, 0, 2647, +2886, 0, 2644, +2885, 0, 2639, +2885, 0, 2633, +2883, 0, 2625, +2883, 0, 2611, +2883, 0, 2592, +2883, 0, 2565, +2883, 0, 2526, +2883, 0, 2469, +2883, 0, 2378, +2883, 0, 2218, +2883, 0, 1843, +2883, 0, 0, +2883, 0, 0, +2883, 2255, 0, +3016, 2749, 0, +3150, 3038, 0, +3282, 3259, 0, +3379, 3414, 0, +3462, 3547, 0, +3554, 3679, 0, +3654, 3812, 0, +3761, 3944, 0, +3872, 4076, 0, +3989, 4095, 0, +3019, 0, 2778, +3019, 0, 2777, +3019, 0, 2777, +3019, 0, 2776, +3019, 0, 2775, +3019, 0, 2774, +3018, 0, 2772, +3018, 0, 2769, +3018, 0, 2766, +3017, 0, 2761, +3016, 0, 2755, +3016, 0, 2745, +3016, 0, 2731, +3016, 0, 2711, +3016, 0, 2683, +3016, 0, 2643, +3016, 0, 2583, +3016, 0, 2488, +3016, 0, 2319, +3016, 0, 1900, +3016, 0, 0, +3016, 0, 0, +3016, 2377, 0, +3150, 2878, 0, +3282, 3168, 0, +3414, 3390, 0, +3512, 3547, 0, +3596, 3679, 0, +3688, 3812, 0, +3787, 3944, 0, +3893, 4076, 0, +4005, 4095, 0, +3152, 0, 2903, +3152, 0, 2903, +3152, 0, 2903, +3151, 0, 2902, +3151, 0, 2901, +3151, 0, 2900, +3151, 0, 2898, +3151, 0, 2896, +3151, 0, 2894, +3150, 0, 2891, +3150, 0, 2886, +3150, 0, 2878, +3150, 0, 2868, +3150, 0, 2853, +3150, 0, 2833, +3150, 0, 2804, +3150, 0, 2763, +3150, 0, 2702, +3150, 0, 2604, +3150, 0, 2427, +3150, 0, 1969, +3150, 0, 0, +3150, 0, 0, +3150, 2501, 0, +3282, 3006, 0, +3414, 3298, 0, +3547, 3521, 0, +3646, 3679, 0, +3729, 3812, 0, +3820, 3944, 0, +3920, 4076, 0, +4026, 4095, 0, +3284, 0, 3030, +3283, 0, 3029, +3283, 0, 3029, +3283, 0, 3029, +3283, 0, 3028, +3283, 0, 3027, +3283, 0, 3026, +3283, 0, 3025, +3283, 0, 3023, +3282, 0, 3020, +3282, 0, 3017, +3282, 0, 3011, +3282, 0, 3003, +3282, 0, 2992, +3282, 0, 2977, +3282, 0, 2957, +3282, 0, 2928, +3282, 0, 2886, +3282, 0, 2823, +3282, 0, 2723, +3282, 0, 2539, +3282, 0, 2045, +3282, 0, 0, +3282, 0, 0, +3282, 2627, 0, +3414, 3137, 0, +3547, 3429, 0, +3679, 3653, 0, +3778, 3812, 0, +3862, 3944, 0, +3953, 4076, 0, +4053, 4095, 0, +3416, 0, 3158, +3416, 0, 3158, +3416, 0, 3157, +3416, 0, 3157, +3416, 0, 3157, +3416, 0, 3156, +3415, 0, 3155, +3415, 0, 3154, +3415, 0, 3153, +3415, 0, 3151, +3414, 0, 3148, +3414, 0, 3144, +3414, 0, 3138, +3414, 0, 3130, +3414, 0, 3119, +3414, 0, 3104, +3414, 0, 3083, +3414, 0, 3054, +3414, 0, 3011, +3414, 0, 2947, +3414, 0, 2845, +3414, 0, 2657, +3414, 0, 2135, +3414, 0, 0, +3414, 0, 0, +3414, 2754, 0, +3547, 3268, 0, +3679, 3561, 0, +3812, 3784, 0, +3911, 3944, 0, +3994, 4076, 0, +4086, 4095, 0, +3548, 0, 3287, +3548, 0, 3287, +3548, 0, 3287, +3548, 0, 3286, +3548, 0, 3286, +3548, 0, 3286, +3548, 0, 3285, +3548, 0, 3284, +3548, 0, 3283, +3547, 0, 3282, +3547, 0, 3280, +3547, 0, 3277, +3547, 0, 3272, +3547, 0, 3266, +3547, 0, 3258, +3547, 0, 3247, +3547, 0, 3232, +3547, 0, 3211, +3547, 0, 3181, +3547, 0, 3138, +3547, 0, 3074, +3547, 0, 2970, +3547, 0, 2778, +3547, 0, 2228, +3547, 0, 0, +3547, 0, 0, +3547, 2883, 0, +3679, 3399, 0, +3812, 3692, 0, +3944, 3916, 0, +4044, 4076, 0, +4095, 4095, 0, +3680, 0, 3417, +3680, 0, 3417, +3680, 0, 3417, +3680, 0, 3416, +3680, 0, 3416, +3680, 0, 3416, +3680, 0, 3415, +3680, 0, 3415, +3680, 0, 3414, +3680, 0, 3413, +3679, 0, 3411, +3679, 0, 3409, +3679, 0, 3406, +3679, 0, 3401, +3679, 0, 3395, +3679, 0, 3387, +3679, 0, 3376, +3679, 0, 3361, +3679, 0, 3340, +3679, 0, 3310, +3679, 0, 3267, +3679, 0, 3201, +3679, 0, 3096, +3679, 0, 2901, +3679, 0, 2333, +3679, 0, 0, +3679, 0, 0, +3679, 3013, 0, +3812, 3530, 0, +3944, 3824, 0, +4076, 4048, 0, +4095, 4095, 0, +3812, 0, 3547, +3812, 0, 3547, +3812, 0, 3547, +3812, 0, 3547, +3812, 0, 3547, +3812, 0, 3547, +3812, 0, 3546, +3812, 0, 3546, +3812, 0, 3545, +3812, 0, 3544, +3812, 0, 3543, +3812, 0, 3541, +3812, 0, 3539, +3812, 0, 3536, +3812, 0, 3531, +3812, 0, 3525, +3812, 0, 3517, +3812, 0, 3506, +3812, 0, 3491, +3812, 0, 3469, +3812, 0, 3439, +3812, 0, 3396, +3812, 0, 3330, +3812, 0, 3224, +3812, 0, 3027, +3812, 0, 2441, +3812, 0, 0, +3812, 0, 0, +3812, 3143, 0, +3944, 3661, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3678, +3944, 0, 3678, +3944, 0, 3678, +3944, 0, 3678, +3944, 0, 3678, +3944, 0, 3677, +3944, 0, 3677, +3944, 0, 3677, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3672, +3944, 0, 3669, +3944, 0, 3666, +3944, 0, 3662, +3944, 0, 3656, +3944, 0, 3648, +3944, 0, 3636, +3944, 0, 3621, +3944, 0, 3600, +3944, 0, 3569, +3944, 0, 3526, +3944, 0, 3459, +3944, 0, 3353, +3944, 0, 3154, +3944, 0, 2553, +3944, 0, 0, +3944, 0, 0, +3944, 3273, 0, +4076, 3793, 0, +4095, 4088, 0, +4076, 0, 3809, +4076, 0, 3809, +4076, 0, 3809, +4076, 0, 3809, +4076, 0, 3809, +4076, 0, 3809, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3800, +4076, 0, 3797, +4076, 0, 3793, +4076, 0, 3787, +4076, 0, 3778, +4076, 0, 3767, +4076, 0, 3752, +4076, 0, 3730, +4076, 0, 3700, +4076, 0, 3656, +4076, 0, 3590, +4076, 0, 3482, +4076, 0, 3282, +4076, 0, 2670, +4076, 0, 0, +4076, 0, 0, +4076, 3404, 0, +4095, 3925, 0, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3934, +4095, 0, 3932, +4095, 0, 3928, +4095, 0, 3924, +4095, 0, 3918, +4095, 0, 3910, +4095, 0, 3898, +4095, 0, 3883, +4095, 0, 3862, +4095, 0, 3831, +4095, 0, 3787, +4095, 0, 3721, +4095, 0, 3613, +4095, 0, 3412, +4095, 0, 2793, +4095, 0, 0, +4095, 0, 0, +4095, 3536, 0, +0, 1304, 1563, +0, 1318, 1563, +0, 1335, 1563, +0, 1357, 1563, +0, 1385, 1563, +0, 1421, 1563, +0, 1463, 1563, +0, 1515, 1563, +0, 1563, 1548, +0, 1563, 1458, +0, 1563, 1301, +0, 1563, 934, +0, 1696, 0, +0, 1828, 0, +726, 1961, 0, +1336, 2094, 0, +1648, 2226, 0, +1880, 2358, 0, +2075, 2491, 0, +2248, 2623, 0, +2409, 2755, 0, +2562, 2887, 0, +2708, 3019, 0, +2851, 3152, 0, +2991, 3284, 0, +3129, 3416, 0, +3266, 3548, 0, +3401, 3680, 0, +3535, 3812, 0, +3669, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 1290, 1563, +0, 1307, 1561, +0, 1325, 1561, +0, 1347, 1561, +0, 1376, 1561, +0, 1412, 1561, +0, 1456, 1561, +0, 1508, 1561, +0, 1561, 1552, +0, 1561, 1463, +0, 1561, 1307, +0, 1561, 948, +0, 1695, 0, +0, 1828, 0, +780, 1961, 0, +1351, 2093, 0, +1656, 2226, 0, +1885, 2358, 0, +2078, 2491, 0, +2250, 2623, 0, +2411, 2755, 0, +2563, 2887, 0, +2709, 3019, 0, +2852, 3152, 0, +2992, 3283, 0, +3129, 3416, 0, +3266, 3548, 0, +3401, 3680, 0, +3536, 3812, 0, +3669, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 1271, 1563, +0, 1288, 1561, +0, 1310, 1559, +0, 1333, 1559, +0, 1363, 1559, +0, 1400, 1559, +0, 1445, 1559, +0, 1499, 1559, +0, 1559, 1556, +0, 1559, 1468, +0, 1559, 1315, +0, 1559, 966, +0, 1693, 0, +0, 1827, 0, +844, 1960, 0, +1370, 2093, 0, +1666, 2225, 0, +1891, 2358, 0, +2082, 2490, 0, +2253, 2623, 0, +2413, 2755, 0, +2564, 2887, 0, +2710, 3019, 0, +2853, 3152, 0, +2992, 3283, 0, +3130, 3416, 0, +3266, 3548, 0, +3401, 3680, 0, +3536, 3812, 0, +3669, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 1244, 1563, +0, 1262, 1561, +0, 1285, 1559, +0, 1315, 1557, +0, 1345, 1557, +0, 1384, 1557, +0, 1430, 1557, +0, 1486, 1557, +0, 1551, 1557, +0, 1557, 1476, +0, 1557, 1326, +0, 1557, 988, +0, 1691, 0, +0, 1825, 0, +917, 1959, 0, +1394, 2092, 0, +1679, 2225, 0, +1899, 2357, 0, +2087, 2490, 0, +2256, 2622, 0, +2415, 2755, 0, +2566, 2887, 0, +2712, 3019, 0, +2854, 3151, 0, +2993, 3283, 0, +3130, 3416, 0, +3267, 3548, 0, +3401, 3680, 0, +3536, 3812, 0, +3669, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 1205, 1563, +0, 1225, 1561, +0, 1250, 1559, +0, 1281, 1557, +0, 1320, 1553, +0, 1360, 1553, +0, 1409, 1553, +0, 1467, 1553, +0, 1535, 1553, +0, 1553, 1486, +0, 1553, 1340, +0, 1553, 1017, +0, 1689, 0, +0, 1823, 0, +1000, 1958, 0, +1425, 2091, 0, +1695, 2224, 0, +1909, 2357, 0, +2094, 2489, 0, +2261, 2622, 0, +2419, 2755, 0, +2569, 2887, 0, +2713, 3019, 0, +2855, 3151, 0, +2994, 3283, 0, +3131, 3416, 0, +3267, 3548, 0, +3402, 3680, 0, +3536, 3812, 0, +3670, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 1148, 1563, +0, 1170, 1561, +0, 1198, 1559, +0, 1233, 1557, +0, 1276, 1553, +0, 1328, 1549, +0, 1380, 1549, +0, 1442, 1549, +0, 1513, 1549, +0, 1549, 1499, +0, 1549, 1358, +0, 1549, 1053, +0, 1685, 0, +0, 1821, 0, +1091, 1956, 0, +1463, 2089, 0, +1717, 2223, 0, +1922, 2356, 0, +2103, 2489, 0, +2268, 2621, 0, +2423, 2754, 0, +2572, 2887, 0, +2716, 3019, 0, +2857, 3151, 0, +2995, 3283, 0, +3132, 3416, 0, +3268, 3548, 0, +3402, 3680, 0, +3537, 3812, 0, +3670, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 1057, 1563, +0, 1084, 1561, +0, 1118, 1559, +0, 1159, 1557, +0, 1209, 1553, +0, 1269, 1549, +0, 1338, 1543, +0, 1405, 1543, +0, 1482, 1543, +0, 1543, 1516, +0, 1543, 1381, +0, 1543, 1096, +0, 1681, 0, +536, 1817, 0, +1190, 1953, 0, +1509, 2087, 0, +1744, 2221, 0, +1940, 2355, 0, +2115, 2488, 0, +2276, 2621, 0, +2429, 2754, 0, +2576, 2886, 0, +2719, 3018, 0, +2859, 3151, 0, +2997, 3283, 0, +3133, 3415, 0, +3269, 3548, 0, +3403, 3680, 0, +3537, 3812, 0, +3670, 3944, 0, +3803, 4076, 0, +3937, 4095, 0, +0, 897, 1563, +0, 935, 1561, +0, 981, 1559, +0, 1037, 1557, +0, 1102, 1553, +0, 1176, 1549, +0, 1259, 1543, +476, 1351, 1534, +476, 1437, 1534, +476, 1531, 1534, +476, 1534, 1409, +476, 1534, 1149, +0, 1674, 313, +874, 1813, 0, +1295, 1950, 0, +1565, 2085, 0, +1778, 2220, 0, +1962, 2353, 0, +2130, 2487, 0, +2287, 2620, 0, +2437, 2753, 0, +2581, 2886, 0, +2723, 3018, 0, +2862, 3151, 0, +2999, 3283, 0, +3135, 3415, 0, +3270, 3548, 0, +3404, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 523, 1563, +0, 605, 1561, +0, 696, 1559, +0, 794, 1557, +0, 900, 1553, +0, 1011, 1549, +0, 1127, 1543, +476, 1246, 1534, +826, 1368, 1523, +826, 1476, 1523, +826, 1523, 1445, +826, 1523, 1211, +608, 1666, 609, +1115, 1807, 0, +1407, 1945, 0, +1630, 2082, 0, +1819, 2217, 0, +1990, 2352, 0, +2149, 2486, 0, +2301, 2619, 0, +2447, 2752, 0, +2589, 2885, 0, +2728, 3018, 0, +2866, 3151, 0, +3002, 3283, 0, +3137, 3415, 0, +3271, 3548, 0, +3405, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 0, 1563, +0, 0, 1561, +0, 0, 1559, +0, 0, 1557, +0, 275, 1553, +0, 611, 1549, +0, 852, 1543, +476, 1051, 1534, +826, 1228, 1523, +1073, 1390, 1507, +1073, 1507, 1489, +1073, 1507, 1282, +1056, 1654, 959, +1315, 1798, 740, +1523, 1939, 0, +1704, 2077, 0, +1870, 2214, 0, +2025, 2349, 0, +2174, 2484, 0, +2319, 2618, 0, +2460, 2751, 0, +2599, 2885, 0, +2735, 3017, 0, +2871, 3150, 0, +3006, 3282, 0, +3140, 3415, 0, +3274, 3547, 0, +3407, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 0, 1563, +0, 0, 1561, +0, 0, 1559, +0, 0, 1557, +0, 0, 1553, +0, 0, 1549, +172, 0, 1543, +476, 479, 1534, +826, 926, 1523, +1073, 1202, 1507, +1274, 1418, 1484, +1274, 1484, 1363, +1333, 1638, 1205, +1491, 1787, 1090, +1642, 1930, 872, +1787, 2071, 79, +1929, 2209, 0, +2069, 2346, 0, +2206, 2481, 0, +2342, 2616, 0, +2477, 2750, 0, +2611, 2883, 0, +2745, 3016, 0, +2878, 3150, 0, +3011, 3282, 0, +3144, 3414, 0, +3277, 3547, 0, +3409, 3679, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +934, 0, 1563, +948, 0, 1561, +966, 0, 1559, +988, 0, 1557, +1017, 0, 1553, +1053, 0, 1549, +1096, 0, 1543, +1149, 476, 1534, +1211, 826, 1523, +1282, 1073, 1507, +1363, 1274, 1484, +1453, 1453, 1453, +1550, 1616, 1407, +1654, 1771, 1337, +1765, 1919, 1223, +1880, 2062, 1005, +1998, 2203, 217, +2120, 2341, 0, +2245, 2478, 0, +2371, 2613, 0, +2499, 2748, 0, +2628, 2882, 0, +2757, 3015, 0, +2887, 3149, 0, +3018, 3281, 0, +3149, 3414, 0, +3280, 3547, 0, +3412, 3679, 0, +3544, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1427, 0, 1696, +1432, 0, 1695, +1439, 0, 1693, +1447, 0, 1691, +1457, 0, 1689, +1471, 0, 1685, +1489, 0, 1681, +1512, 0, 1674, +1541, 608, 1666, +1577, 959, 1654, +1621, 1205, 1638, +1616, 1407, 1550, +1616, 1495, 1407, +1771, 1754, 1337, +1872, 1919, 1223, +1965, 2062, 1005, +2066, 2203, 217, +2173, 2341, 0, +2285, 2478, 0, +2402, 2613, 0, +2522, 2748, 0, +2645, 2882, 0, +2770, 3015, 0, +2898, 3149, 0, +3025, 3281, 0, +3155, 3414, 0, +3285, 3547, 0, +3415, 3679, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1716, 0, 1828, +1719, 0, 1828, +1722, 0, 1827, +1727, 0, 1825, +1732, 0, 1823, +1740, 0, 1821, +1750, 0, 1817, +1763, 0, 1813, +1780, 0, 1807, +1798, 740, 1795, +1787, 1090, 1740, +1771, 1337, 1654, +1771, 1337, 1466, +1771, 1546, 1337, +1919, 1841, 1223, +2059, 2062, 1005, +2142, 2203, 217, +2234, 2341, 0, +2334, 2478, 0, +2440, 2613, 0, +2552, 2748, 0, +2668, 2882, 0, +2788, 3015, 0, +2911, 3149, 0, +3035, 3281, 0, +3162, 3414, 0, +3290, 3547, 0, +3419, 3679, 0, +3549, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1938, 0, 1961, +1940, 0, 1961, +1941, 0, 1960, +1944, 0, 1959, +1948, 0, 1958, +1953, 0, 1956, +1953, 0, 1947, +1950, 0, 1931, +1945, 0, 1909, +1939, 0, 1878, +1930, 872, 1833, +1919, 1223, 1765, +1919, 1223, 1624, +1919, 1223, 1321, +1919, 1607, 1223, +2062, 1937, 1005, +2203, 2176, 217, +2305, 2341, 0, +2392, 2478, 0, +2487, 2613, 0, +2589, 2748, 0, +2697, 2882, 0, +2810, 3015, 0, +2928, 3149, 0, +3049, 3281, 0, +3172, 3414, 0, +3298, 3547, 0, +3425, 3679, 0, +3553, 3812, 0, +3683, 3944, 0, +3812, 4076, 0, +3943, 4095, 0, +2094, 0, 2058, +2093, 0, 2056, +2093, 0, 2053, +2092, 0, 2049, +2091, 0, 2044, +2089, 0, 2037, +2087, 0, 2027, +2085, 0, 2014, +2082, 0, 1996, +2077, 0, 1970, +2071, 79, 1934, +2062, 1005, 1880, +2062, 1005, 1774, +2062, 1005, 1579, +2062, 1005, 1006, +2062, 1677, 1005, +2203, 2041, 217, +2341, 2291, 0, +2460, 2478, 0, +2542, 2613, 0, +2634, 2748, 0, +2733, 2882, 0, +2838, 3015, 0, +2950, 3149, 0, +3065, 3281, 0, +3185, 3414, 0, +3307, 3547, 0, +3432, 3679, 0, +3559, 3812, 0, +3687, 3944, 0, +3816, 4076, 0, +3946, 4095, 0, +2226, 0, 2141, +2226, 0, 2140, +2225, 0, 2137, +2225, 0, 2134, +2224, 0, 2130, +2223, 0, 2124, +2221, 0, 2116, +2220, 0, 2105, +2217, 0, 2090, +2214, 0, 2070, +2209, 0, 2041, +2203, 217, 1998, +2203, 217, 1920, +2203, 217, 1787, +2203, 217, 1512, +2203, 838, 217, +2203, 1757, 217, +2341, 2150, 0, +2478, 2411, 0, +2607, 2613, 0, +2687, 2748, 0, +2777, 2882, 0, +2873, 3015, 0, +2977, 3149, 0, +3087, 3281, 0, +3202, 3414, 0, +3320, 3547, 0, +3442, 3679, 0, +3566, 3812, 0, +3692, 3944, 0, +3820, 4076, 0, +3949, 4095, 0, +2358, 0, 2233, +2358, 0, 2232, +2358, 0, 2230, +2357, 0, 2228, +2357, 0, 2224, +2356, 0, 2219, +2355, 0, 2213, +2353, 0, 2204, +2352, 0, 2192, +2349, 0, 2176, +2346, 0, 2153, +2341, 0, 2120, +2341, 0, 2061, +2341, 0, 1968, +2341, 0, 1803, +2341, 0, 1403, +2341, 437, 0, +2341, 1845, 0, +2478, 2264, 0, +2613, 2533, 0, +2748, 2745, 0, +2829, 2882, 0, +2916, 3015, 0, +3012, 3149, 0, +3114, 3281, 0, +3223, 3414, 0, +3337, 3547, 0, +3455, 3679, 0, +3576, 3812, 0, +3700, 3944, 0, +3826, 4076, 0, +3953, 4095, 0, +2491, 0, 2333, +2491, 0, 2332, +2490, 0, 2331, +2490, 0, 2329, +2489, 0, 2326, +2489, 0, 2322, +2488, 0, 2317, +2487, 0, 2310, +2486, 0, 2301, +2484, 0, 2288, +2481, 0, 2270, +2478, 0, 2245, +2478, 0, 2201, +2478, 0, 2134, +2478, 0, 2026, +2478, 0, 1824, +2478, 0, 1199, +2478, 0, 0, +2478, 1941, 0, +2613, 2382, 0, +2748, 2657, 0, +2882, 2873, 0, +2968, 3015, 0, +3055, 3149, 0, +3149, 3281, 0, +3250, 3414, 0, +3358, 3547, 0, +3472, 3679, 0, +3589, 3812, 0, +3710, 3944, 0, +3833, 4076, 0, +3959, 4095, 0, +2623, 0, 2440, +2623, 0, 2439, +2623, 0, 2437, +2622, 0, 2436, +2622, 0, 2434, +2621, 0, 2431, +2621, 0, 2427, +2620, 0, 2421, +2619, 0, 2414, +2618, 0, 2404, +2616, 0, 2390, +2613, 0, 2371, +2613, 0, 2338, +2613, 0, 2290, +2613, 0, 2216, +2613, 0, 2093, +2613, 0, 1851, +2613, 0, 547, +2613, 0, 0, +2613, 2045, 0, +2748, 2504, 0, +2882, 2784, 0, +3015, 3001, 0, +3106, 3149, 0, +3191, 3281, 0, +3284, 3414, 0, +3385, 3547, 0, +3493, 3679, 0, +3605, 3812, 0, +3722, 3944, 0, +3843, 4076, 0, +3966, 4095, 0, +2755, 0, 2552, +2755, 0, 2551, +2755, 0, 2550, +2755, 0, 2549, +2755, 0, 2547, +2754, 0, 2545, +2754, 0, 2541, +2753, 0, 2537, +2752, 0, 2532, +2751, 0, 2524, +2750, 0, 2514, +2748, 0, 2499, +2748, 0, 2474, +2748, 0, 2439, +2748, 0, 2387, +2748, 0, 2306, +2748, 0, 2170, +2748, 0, 1885, +2748, 0, 0, +2748, 0, 0, +2748, 2155, 0, +2882, 2628, 0, +3015, 2911, 0, +3149, 3131, 0, +3242, 3281, 0, +3326, 3414, 0, +3419, 3547, 0, +3520, 3679, 0, +3626, 3812, 0, +3739, 3944, 0, +3855, 4076, 0, +3976, 4095, 0, +2887, 0, 2668, +2887, 0, 2667, +2887, 0, 2667, +2887, 0, 2666, +2887, 0, 2664, +2887, 0, 2662, +2886, 0, 2660, +2886, 0, 2657, +2885, 0, 2652, +2885, 0, 2647, +2883, 0, 2639, +2882, 0, 2628, +2882, 0, 2609, +2882, 0, 2583, +2882, 0, 2546, +2882, 0, 2491, +2882, 0, 2405, +2882, 0, 2256, +2882, 0, 1925, +2882, 0, 0, +2882, 0, 0, +2882, 2269, 0, +3015, 2753, 0, +3149, 3040, 0, +3281, 3260, 0, +3376, 3414, 0, +3461, 3547, 0, +3553, 3679, 0, +3653, 3812, 0, +3760, 3944, 0, +3872, 4076, 0, +3988, 4095, 0, +3019, 0, 2788, +3019, 0, 2787, +3019, 0, 2787, +3019, 0, 2786, +3019, 0, 2785, +3019, 0, 2784, +3018, 0, 2782, +3018, 0, 2779, +3018, 0, 2776, +3017, 0, 2771, +3016, 0, 2765, +3015, 0, 2757, +3015, 0, 2743, +3015, 0, 2724, +3015, 0, 2697, +3015, 0, 2658, +3015, 0, 2600, +3015, 0, 2510, +3015, 0, 2350, +3015, 0, 1974, +3015, 0, 0, +3015, 0, 0, +3015, 2387, 0, +3149, 2881, 0, +3281, 3169, 0, +3414, 3391, 0, +3511, 3547, 0, +3595, 3679, 0, +3687, 3812, 0, +3786, 3944, 0, +3892, 4076, 0, +4005, 4095, 0, +3152, 0, 2911, +3152, 0, 2910, +3152, 0, 2910, +3151, 0, 2909, +3151, 0, 2908, +3151, 0, 2907, +3151, 0, 2906, +3151, 0, 2904, +3151, 0, 2902, +3150, 0, 2898, +3150, 0, 2894, +3149, 0, 2887, +3149, 0, 2877, +3149, 0, 2863, +3149, 0, 2843, +3149, 0, 2815, +3149, 0, 2775, +3149, 0, 2715, +3149, 0, 2620, +3149, 0, 2452, +3149, 0, 2033, +3149, 0, 0, +3149, 0, 0, +3149, 2509, 0, +3281, 3009, 0, +3414, 3299, 0, +3547, 3522, 0, +3644, 3679, 0, +3728, 3812, 0, +3820, 3944, 0, +3919, 4076, 0, +4026, 4095, 0, +3284, 0, 3035, +3283, 0, 3035, +3283, 0, 3035, +3283, 0, 3034, +3283, 0, 3034, +3283, 0, 3033, +3283, 0, 3032, +3283, 0, 3031, +3283, 0, 3029, +3282, 0, 3026, +3282, 0, 3023, +3281, 0, 3018, +3281, 0, 3010, +3281, 0, 2999, +3281, 0, 2985, +3281, 0, 2965, +3281, 0, 2936, +3281, 0, 2895, +3281, 0, 2833, +3281, 0, 2735, +3281, 0, 2558, +3281, 0, 2100, +3281, 0, 0, +3281, 0, 0, +3281, 2633, 0, +3414, 3139, 0, +3547, 3430, 0, +3679, 3653, 0, +3777, 3812, 0, +3861, 3944, 0, +3953, 4076, 0, +4052, 4095, 0, +3416, 0, 3162, +3416, 0, 3162, +3416, 0, 3162, +3416, 0, 3161, +3416, 0, 3161, +3416, 0, 3160, +3415, 0, 3160, +3415, 0, 3158, +3415, 0, 3157, +3415, 0, 3155, +3414, 0, 3152, +3414, 0, 3149, +3414, 0, 3143, +3414, 0, 3135, +3414, 0, 3125, +3414, 0, 3110, +3414, 0, 3089, +3414, 0, 3060, +3414, 0, 3018, +3414, 0, 2956, +3414, 0, 2855, +3414, 0, 2672, +3414, 0, 2180, +3414, 0, 0, +3414, 0, 0, +3414, 2759, 0, +3547, 3269, 0, +3679, 3562, 0, +3812, 3785, 0, +3910, 3944, 0, +3994, 4076, 0, +4085, 4095, 0, +3548, 0, 3290, +3548, 0, 3290, +3548, 0, 3290, +3548, 0, 3290, +3548, 0, 3289, +3548, 0, 3289, +3548, 0, 3288, +3548, 0, 3287, +3548, 0, 3286, +3547, 0, 3285, +3547, 0, 3283, +3547, 0, 3280, +3547, 0, 3276, +3547, 0, 3270, +3547, 0, 3262, +3547, 0, 3251, +3547, 0, 3236, +3547, 0, 3216, +3547, 0, 3186, +3547, 0, 3144, +3547, 0, 3080, +3547, 0, 2977, +3547, 0, 2790, +3547, 0, 2265, +3547, 0, 0, +3547, 0, 0, +3547, 2886, 0, +3679, 3400, 0, +3812, 3693, 0, +3944, 3916, 0, +4043, 4076, 0, +4095, 4095, 0, +3680, 0, 3419, +3680, 0, 3419, +3680, 0, 3419, +3680, 0, 3419, +3680, 0, 3419, +3680, 0, 3418, +3680, 0, 3418, +3680, 0, 3417, +3680, 0, 3416, +3680, 0, 3415, +3679, 0, 3414, +3679, 0, 3412, +3679, 0, 3409, +3679, 0, 3404, +3679, 0, 3398, +3679, 0, 3390, +3679, 0, 3379, +3679, 0, 3364, +3679, 0, 3343, +3679, 0, 3314, +3679, 0, 3271, +3679, 0, 3206, +3679, 0, 3102, +3679, 0, 2910, +3679, 0, 2363, +3679, 0, 0, +3679, 0, 0, +3679, 3015, 0, +3812, 3531, 0, +3944, 3824, 0, +4076, 4048, 0, +4095, 4095, 0, +3812, 0, 3549, +3812, 0, 3549, +3812, 0, 3549, +3812, 0, 3549, +3812, 0, 3549, +3812, 0, 3548, +3812, 0, 3548, +3812, 0, 3548, +3812, 0, 3547, +3812, 0, 3546, +3812, 0, 3545, +3812, 0, 3544, +3812, 0, 3541, +3812, 0, 3538, +3812, 0, 3533, +3812, 0, 3528, +3812, 0, 3520, +3812, 0, 3508, +3812, 0, 3493, +3812, 0, 3472, +3812, 0, 3442, +3812, 0, 3399, +3812, 0, 3333, +3812, 0, 3228, +3812, 0, 3034, +3812, 0, 2465, +3812, 0, 0, +3812, 0, 0, +3812, 3145, 0, +3944, 3662, 0, +4076, 3956, 0, +4095, 4095, 0, +3944, 0, 3679, +3944, 0, 3679, +3944, 0, 3679, +3944, 0, 3679, +3944, 0, 3679, +3944, 0, 3679, +3944, 0, 3679, +3944, 0, 3678, +3944, 0, 3678, +3944, 0, 3677, +3944, 0, 3676, +3944, 0, 3675, +3944, 0, 3673, +3944, 0, 3671, +3944, 0, 3668, +3944, 0, 3663, +3944, 0, 3657, +3944, 0, 3649, +3944, 0, 3638, +3944, 0, 3623, +3944, 0, 3602, +3944, 0, 3571, +3944, 0, 3528, +3944, 0, 3462, +3944, 0, 3356, +3944, 0, 3159, +3944, 0, 2572, +3944, 0, 0, +3944, 0, 0, +3944, 3275, 0, +4076, 3793, 0, +4095, 4088, 0, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3809, +4076, 0, 3809, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3807, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3801, +4076, 0, 3798, +4076, 0, 3794, +4076, 0, 3787, +4076, 0, 3780, +4076, 0, 3768, +4076, 0, 3753, +4076, 0, 3732, +4076, 0, 3701, +4076, 0, 3658, +4076, 0, 3592, +4076, 0, 3485, +4076, 0, 3286, +4076, 0, 2684, +4076, 0, 0, +4076, 0, 0, +4076, 3405, 0, +4095, 3926, 0, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3935, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3925, +4095, 0, 3919, +4095, 0, 3910, +4095, 0, 3899, +4095, 0, 3884, +4095, 0, 3863, +4095, 0, 3832, +4095, 0, 3788, +4095, 0, 3722, +4095, 0, 3615, +4095, 0, 3415, +4095, 0, 2804, +4095, 0, 0, +4095, 0, 0, +4095, 3537, 0, +0, 1434, 1696, +0, 1444, 1696, +0, 1457, 1696, +0, 1475, 1696, +0, 1496, 1696, +0, 1524, 1696, +0, 1559, 1696, +0, 1601, 1696, +0, 1653, 1696, +0, 1696, 1677, +0, 1696, 1587, +0, 1696, 1427, +0, 1696, 1056, +0, 1828, 0, +0, 1961, 0, +814, 2094, 0, +1457, 2226, 0, +1775, 2358, 0, +2009, 2491, 0, +2205, 2623, 0, +2379, 2755, 0, +2541, 2887, 0, +2693, 3019, 0, +2840, 3152, 0, +2983, 3284, 0, +3123, 3416, 0, +3261, 3548, 0, +3398, 3680, 0, +3533, 3812, 0, +3667, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 1424, 1696, +0, 1436, 1695, +0, 1450, 1695, +0, 1467, 1695, +0, 1489, 1695, +0, 1517, 1695, +0, 1552, 1695, +0, 1596, 1695, +0, 1647, 1695, +0, 1695, 1680, +0, 1695, 1590, +0, 1695, 1432, +0, 1695, 1066, +0, 1828, 0, +0, 1961, 0, +859, 2093, 0, +1469, 2226, 0, +1781, 2358, 0, +2013, 2491, 0, +2207, 2623, 0, +2381, 2755, 0, +2542, 2887, 0, +2694, 3019, 0, +2841, 3152, 0, +2983, 3283, 0, +3123, 3416, 0, +3261, 3548, 0, +3398, 3680, 0, +3533, 3812, 0, +3667, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 1410, 1696, +0, 1422, 1695, +0, 1439, 1693, +0, 1456, 1693, +0, 1479, 1693, +0, 1508, 1693, +0, 1544, 1693, +0, 1588, 1693, +0, 1640, 1693, +0, 1693, 1683, +0, 1693, 1594, +0, 1693, 1439, +0, 1693, 1080, +0, 1827, 0, +0, 1960, 0, +913, 2093, 0, +1484, 2225, 0, +1788, 2358, 0, +2017, 2490, 0, +2210, 2623, 0, +2383, 2755, 0, +2543, 2887, 0, +2695, 3019, 0, +2842, 3152, 0, +2984, 3283, 0, +3124, 3416, 0, +3261, 3548, 0, +3398, 3680, 0, +3533, 3812, 0, +3668, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 1390, 1696, +0, 1403, 1695, +0, 1420, 1693, +0, 1442, 1691, +0, 1465, 1691, +0, 1495, 1691, +0, 1532, 1691, +0, 1577, 1691, +0, 1631, 1691, +0, 1691, 1688, +0, 1691, 1600, +0, 1691, 1447, +0, 1691, 1098, +0, 1825, 0, +0, 1959, 0, +977, 2092, 0, +1503, 2225, 0, +1798, 2357, 0, +2023, 2490, 0, +2214, 2622, 0, +2386, 2755, 0, +2545, 2887, 0, +2696, 3019, 0, +2842, 3151, 0, +2985, 3283, 0, +3124, 3416, 0, +3262, 3548, 0, +3398, 3680, 0, +3533, 3812, 0, +3668, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 1362, 1696, +0, 1376, 1695, +0, 1394, 1693, +0, 1417, 1691, +0, 1446, 1689, +0, 1477, 1689, +0, 1515, 1689, +0, 1562, 1689, +0, 1617, 1689, +0, 1683, 1689, +0, 1689, 1608, +0, 1689, 1457, +0, 1689, 1120, +0, 1823, 0, +0, 1958, 0, +1050, 2091, 0, +1527, 2224, 0, +1811, 2357, 0, +2031, 2489, 0, +2219, 2622, 0, +2389, 2755, 0, +2548, 2887, 0, +2698, 3019, 0, +2844, 3151, 0, +2986, 3283, 0, +3125, 3416, 0, +3262, 3548, 0, +3399, 3680, 0, +3534, 3812, 0, +3668, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 1322, 1696, +0, 1337, 1695, +0, 1357, 1693, +0, 1382, 1691, +0, 1413, 1689, +0, 1452, 1685, +0, 1492, 1685, +0, 1541, 1685, +0, 1599, 1685, +0, 1667, 1685, +0, 1685, 1618, +0, 1685, 1471, +0, 1685, 1149, +0, 1821, 0, +0, 1956, 0, +1133, 2089, 0, +1557, 2223, 0, +1828, 2356, 0, +2041, 2489, 0, +2226, 2621, 0, +2394, 2754, 0, +2551, 2887, 0, +2701, 3019, 0, +2845, 3151, 0, +2987, 3283, 0, +3126, 3416, 0, +3263, 3548, 0, +3399, 3680, 0, +3534, 3812, 0, +3668, 3944, 0, +3802, 4076, 0, +3935, 4095, 0, +0, 1262, 1696, +0, 1279, 1695, +0, 1302, 1693, +0, 1330, 1691, +0, 1365, 1689, +0, 1408, 1685, +0, 1460, 1681, +0, 1512, 1681, +0, 1574, 1681, +0, 1645, 1681, +0, 1681, 1631, +0, 1681, 1489, +0, 1681, 1184, +0, 1817, 0, +0, 1953, 0, +1224, 2087, 0, +1596, 2221, 0, +1849, 2355, 0, +2055, 2488, 0, +2235, 2621, 0, +2400, 2754, 0, +2555, 2886, 0, +2703, 3018, 0, +2848, 3151, 0, +2988, 3283, 0, +3127, 3415, 0, +3264, 3548, 0, +3400, 3680, 0, +3534, 3812, 0, +3668, 3944, 0, +3802, 4076, 0, +3935, 4095, 0, +0, 1167, 1696, +0, 1188, 1695, +0, 1216, 1693, +0, 1249, 1691, +0, 1291, 1689, +0, 1341, 1685, +0, 1401, 1681, +0, 1470, 1674, +0, 1537, 1674, +0, 1614, 1674, +0, 1674, 1648, +0, 1674, 1512, +0, 1674, 1228, +0, 1813, 0, +670, 1950, 0, +1322, 2085, 0, +1642, 2220, 0, +1876, 2353, 0, +2072, 2487, 0, +2247, 2620, 0, +2408, 2753, 0, +2561, 2886, 0, +2708, 3018, 0, +2851, 3151, 0, +2991, 3283, 0, +3129, 3415, 0, +3265, 3548, 0, +3401, 3680, 0, +3535, 3812, 0, +3669, 3944, 0, +3802, 4076, 0, +3936, 4095, 0, +0, 998, 1696, +0, 1029, 1695, +0, 1067, 1693, +0, 1113, 1691, +0, 1169, 1689, +0, 1233, 1685, +0, 1308, 1681, +0, 1391, 1674, +608, 1483, 1666, +608, 1569, 1666, +608, 1663, 1666, +608, 1666, 1541, +608, 1666, 1281, +0, 1807, 438, +1007, 1945, 0, +1428, 2082, 0, +1697, 2217, 0, +1910, 2352, 0, +2094, 2486, 0, +2262, 2619, 0, +2419, 2752, 0, +2569, 2885, 0, +2714, 3018, 0, +2855, 3151, 0, +2994, 3283, 0, +3131, 3415, 0, +3267, 3548, 0, +3402, 3680, 0, +3536, 3812, 0, +3670, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 580, 1696, +0, 653, 1695, +0, 736, 1693, +0, 827, 1691, +0, 926, 1689, +0, 1031, 1685, +0, 1142, 1681, +0, 1258, 1674, +608, 1378, 1666, +959, 1500, 1654, +959, 1608, 1654, +959, 1654, 1577, +959, 1654, 1343, +742, 1798, 740, +1248, 1939, 0, +1539, 2077, 0, +1762, 2214, 0, +1951, 2349, 0, +2122, 2484, 0, +2281, 2618, 0, +2433, 2751, 0, +2579, 2885, 0, +2721, 3017, 0, +2860, 3150, 0, +2998, 3282, 0, +3134, 3415, 0, +3269, 3547, 0, +3404, 3680, 0, +3537, 3812, 0, +3671, 3944, 0, +3803, 4076, 0, +3937, 4095, 0, +0, 0, 1696, +0, 0, 1695, +0, 0, 1693, +0, 0, 1691, +0, 0, 1689, +0, 406, 1685, +0, 742, 1681, +0, 983, 1674, +608, 1183, 1666, +959, 1360, 1654, +1205, 1522, 1638, +1205, 1638, 1621, +1205, 1638, 1414, +1189, 1787, 1090, +1447, 1930, 872, +1655, 2071, 79, +1836, 2209, 0, +2002, 2346, 0, +2158, 2481, 0, +2306, 2616, 0, +2451, 2750, 0, +2592, 2883, 0, +2731, 3016, 0, +2868, 3150, 0, +3003, 3282, 0, +3138, 3414, 0, +3272, 3547, 0, +3406, 3679, 0, +3539, 3812, 0, +3672, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 0, 1696, +0, 0, 1695, +0, 0, 1693, +0, 0, 1691, +0, 0, 1689, +0, 0, 1685, +0, 0, 1681, +313, 0, 1674, +609, 608, 1666, +959, 1056, 1654, +1205, 1333, 1638, +1407, 1550, 1616, +1407, 1616, 1495, +1466, 1771, 1337, +1624, 1919, 1223, +1774, 2062, 1005, +1920, 2203, 217, +2061, 2341, 0, +2201, 2478, 0, +2338, 2613, 0, +2474, 2748, 0, +2609, 2882, 0, +2743, 3015, 0, +2877, 3149, 0, +3010, 3281, 0, +3143, 3414, 0, +3276, 3547, 0, +3409, 3679, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +1056, 0, 1696, +1066, 0, 1695, +1080, 0, 1693, +1098, 0, 1691, +1120, 0, 1689, +1149, 0, 1685, +1184, 0, 1681, +1228, 0, 1674, +1281, 608, 1666, +1343, 959, 1654, +1414, 1205, 1638, +1495, 1407, 1616, +1585, 1585, 1585, +1682, 1748, 1539, +1787, 1903, 1469, +1897, 2051, 1355, +2012, 2194, 1136, +2131, 2335, 345, +2253, 2473, 0, +2377, 2610, 0, +2503, 2746, 0, +2631, 2880, 0, +2759, 3014, 0, +2889, 3148, 0, +3019, 3280, 0, +3150, 3414, 0, +3281, 3546, 0, +3413, 3679, 0, +3544, 3811, 0, +3676, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1557, 0, 1828, +1560, 0, 1828, +1565, 0, 1827, +1571, 0, 1825, +1579, 0, 1823, +1590, 0, 1821, +1604, 0, 1817, +1622, 0, 1813, +1644, 0, 1807, +1673, 740, 1798, +1709, 1090, 1787, +1754, 1337, 1771, +1748, 1539, 1682, +1748, 1627, 1539, +1903, 1885, 1469, +2004, 2051, 1355, +2097, 2194, 1136, +2198, 2335, 345, +2305, 2473, 0, +2417, 2610, 0, +2534, 2746, 0, +2654, 2880, 0, +2777, 3014, 0, +2903, 3148, 0, +3029, 3280, 0, +3158, 3414, 0, +3287, 3546, 0, +3417, 3679, 0, +3547, 3811, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1847, 0, 1961, +1849, 0, 1961, +1851, 0, 1960, +1854, 0, 1959, +1859, 0, 1958, +1865, 0, 1956, +1872, 0, 1953, +1882, 0, 1950, +1895, 0, 1945, +1912, 0, 1939, +1930, 872, 1927, +1919, 1223, 1872, +1903, 1469, 1787, +1903, 1469, 1598, +1903, 1678, 1469, +2051, 1973, 1355, +2191, 2194, 1136, +2274, 2335, 345, +2366, 2473, 0, +2466, 2610, 0, +2572, 2746, 0, +2684, 2880, 0, +2800, 3014, 0, +2920, 3148, 0, +3043, 3280, 0, +3168, 3414, 0, +3294, 3546, 0, +3422, 3679, 0, +3552, 3811, 0, +3681, 3944, 0, +3812, 4076, 0, +3942, 4095, 0, +2069, 0, 2094, +2070, 0, 2093, +2071, 0, 2093, +2073, 0, 2092, +2076, 0, 2091, +2080, 0, 2089, +2085, 0, 2087, +2085, 0, 2079, +2082, 0, 2063, +2077, 0, 2041, +2071, 79, 2010, +2062, 1005, 1965, +2051, 1355, 1897, +2051, 1355, 1756, +2051, 1355, 1453, +2051, 1739, 1355, +2194, 2069, 1136, +2335, 2308, 345, +2438, 2473, 0, +2524, 2610, 0, +2619, 2746, 0, +2721, 2880, 0, +2829, 3014, 0, +2942, 3148, 0, +3060, 3280, 0, +3181, 3414, 0, +3304, 3546, 0, +3430, 3679, 0, +3557, 3811, 0, +3685, 3944, 0, +3814, 4076, 0, +3945, 4095, 0, +2226, 0, 2191, +2226, 0, 2190, +2225, 0, 2188, +2225, 0, 2185, +2224, 0, 2181, +2223, 0, 2176, +2221, 0, 2169, +2220, 0, 2159, +2217, 0, 2146, +2214, 0, 2128, +2209, 0, 2102, +2203, 217, 2066, +2194, 1136, 2012, +2194, 1136, 1906, +2194, 1136, 1711, +2194, 1136, 1137, +2194, 1809, 1136, +2335, 2173, 345, +2473, 2423, 0, +2592, 2610, 0, +2674, 2746, 0, +2766, 2880, 0, +2865, 3014, 0, +2970, 3148, 0, +3082, 3280, 0, +3198, 3414, 0, +3317, 3546, 0, +3440, 3679, 0, +3564, 3811, 0, +3691, 3944, 0, +3819, 4076, 0, +3948, 4095, 0, +2358, 0, 2275, +2358, 0, 2273, +2358, 0, 2271, +2357, 0, 2269, +2357, 0, 2266, +2356, 0, 2262, +2355, 0, 2256, +2353, 0, 2248, +2352, 0, 2237, +2349, 0, 2223, +2346, 0, 2202, +2341, 0, 2173, +2335, 345, 2131, +2335, 345, 2052, +2335, 345, 1919, +2335, 345, 1644, +2335, 970, 345, +2335, 1889, 345, +2473, 2282, 0, +2610, 2543, 0, +2740, 2746, 0, +2820, 2880, 0, +2908, 3014, 0, +3005, 3148, 0, +3109, 3280, 0, +3219, 3414, 0, +3334, 3546, 0, +3453, 3679, 0, +3574, 3811, 0, +3699, 3944, 0, +3824, 4076, 0, +3952, 4095, 0, +2491, 0, 2367, +2491, 0, 2366, +2490, 0, 2364, +2490, 0, 2362, +2489, 0, 2360, +2489, 0, 2356, +2488, 0, 2352, +2487, 0, 2345, +2486, 0, 2336, +2484, 0, 2325, +2481, 0, 2308, +2478, 0, 2285, +2473, 0, 2253, +2473, 0, 2194, +2473, 0, 2100, +2473, 0, 1935, +2473, 0, 1535, +2473, 557, 0, +2473, 1977, 0, +2610, 2396, 0, +2746, 2665, 0, +2880, 2877, 0, +2961, 3014, 0, +3049, 3148, 0, +3144, 3280, 0, +3247, 3414, 0, +3355, 3546, 0, +3469, 3679, 0, +3587, 3811, 0, +3708, 3944, 0, +3832, 4076, 0, +3958, 4095, 0, +2623, 0, 2466, +2623, 0, 2465, +2623, 0, 2464, +2622, 0, 2463, +2622, 0, 2460, +2621, 0, 2458, +2621, 0, 2454, +2620, 0, 2449, +2619, 0, 2442, +2618, 0, 2432, +2616, 0, 2420, +2613, 0, 2402, +2610, 0, 2377, +2610, 0, 2333, +2610, 0, 2266, +2610, 0, 2158, +2610, 0, 1956, +2610, 0, 1330, +2610, 0, 0, +2610, 2073, 0, +2746, 2515, 0, +2880, 2789, 0, +3014, 3004, 0, +3100, 3148, 0, +3186, 3280, 0, +3281, 3414, 0, +3382, 3546, 0, +3490, 3679, 0, +3604, 3811, 0, +3721, 3944, 0, +3841, 4076, 0, +3965, 4095, 0, +2755, 0, 2573, +2755, 0, 2572, +2755, 0, 2571, +2755, 0, 2570, +2755, 0, 2568, +2754, 0, 2566, +2754, 0, 2563, +2753, 0, 2559, +2752, 0, 2553, +2751, 0, 2546, +2750, 0, 2536, +2748, 0, 2522, +2746, 0, 2503, +2746, 0, 2470, +2746, 0, 2422, +2746, 0, 2348, +2746, 0, 2226, +2746, 0, 1983, +2746, 0, 678, +2746, 0, 0, +2746, 2177, 0, +2880, 2636, 0, +3014, 2915, 0, +3148, 3133, 0, +3238, 3280, 0, +3323, 3414, 0, +3416, 3546, 0, +3517, 3679, 0, +3625, 3811, 0, +3737, 3944, 0, +3854, 4076, 0, +3975, 4095, 0, +2887, 0, 2684, +2887, 0, 2684, +2887, 0, 2683, +2887, 0, 2682, +2887, 0, 2681, +2887, 0, 2679, +2886, 0, 2677, +2886, 0, 2673, +2885, 0, 2669, +2885, 0, 2664, +2883, 0, 2656, +2882, 0, 2645, +2880, 0, 2631, +2880, 0, 2606, +2880, 0, 2571, +2880, 0, 2519, +2880, 0, 2439, +2880, 0, 2302, +2880, 0, 2016, +2880, 0, 0, +2880, 0, 0, +2880, 2287, 0, +3014, 2759, 0, +3148, 3043, 0, +3280, 3262, 0, +3374, 3414, 0, +3458, 3546, 0, +3551, 3679, 0, +3652, 3811, 0, +3758, 3944, 0, +3871, 4076, 0, +3988, 4095, 0, +3019, 0, 2800, +3019, 0, 2800, +3019, 0, 2799, +3019, 0, 2798, +3019, 0, 2797, +3019, 0, 2796, +3018, 0, 2794, +3018, 0, 2792, +3018, 0, 2789, +3017, 0, 2784, +3016, 0, 2778, +3015, 0, 2770, +3014, 0, 2759, +3014, 0, 2741, +3014, 0, 2715, +3014, 0, 2678, +3014, 0, 2623, +3014, 0, 2536, +3014, 0, 2388, +3014, 0, 2056, +3014, 0, 0, +3014, 0, 0, +3014, 2401, 0, +3148, 2886, 0, +3280, 3172, 0, +3414, 3393, 0, +3509, 3546, 0, +3593, 3679, 0, +3685, 3811, 0, +3785, 3944, 0, +3891, 4076, 0, +4004, 4095, 0, +3152, 0, 2920, +3152, 0, 2920, +3152, 0, 2919, +3151, 0, 2919, +3151, 0, 2918, +3151, 0, 2917, +3151, 0, 2916, +3151, 0, 2914, +3151, 0, 2911, +3150, 0, 2908, +3150, 0, 2904, +3149, 0, 2898, +3148, 0, 2889, +3148, 0, 2875, +3148, 0, 2856, +3148, 0, 2829, +3148, 0, 2790, +3148, 0, 2733, +3148, 0, 2642, +3148, 0, 2482, +3148, 0, 2106, +3148, 0, 0, +3148, 0, 0, +3148, 2520, 0, +3280, 3013, 0, +3414, 3301, 0, +3546, 3523, 0, +3643, 3679, 0, +3727, 3811, 0, +3819, 3944, 0, +3918, 4076, 0, +4025, 4095, 0, +3284, 0, 3043, +3283, 0, 3042, +3283, 0, 3042, +3283, 0, 3042, +3283, 0, 3041, +3283, 0, 3040, +3283, 0, 3039, +3283, 0, 3038, +3283, 0, 3036, +3282, 0, 3033, +3282, 0, 3030, +3281, 0, 3025, +3280, 0, 3019, +3280, 0, 3009, +3280, 0, 2995, +3280, 0, 2975, +3280, 0, 2947, +3280, 0, 2907, +3280, 0, 2847, +3280, 0, 2752, +3280, 0, 2583, +3280, 0, 2164, +3280, 0, 0, +3280, 0, 0, +3280, 2641, 0, +3414, 3142, 0, +3546, 3432, 0, +3679, 3654, 0, +3777, 3811, 0, +3860, 3944, 0, +3952, 4076, 0, +4051, 4095, 0, +3416, 0, 3168, +3416, 0, 3168, +3416, 0, 3167, +3416, 0, 3167, +3416, 0, 3166, +3416, 0, 3166, +3415, 0, 3165, +3415, 0, 3164, +3415, 0, 3163, +3415, 0, 3161, +3414, 0, 3158, +3414, 0, 3155, +3414, 0, 3150, +3414, 0, 3142, +3414, 0, 3132, +3414, 0, 3117, +3414, 0, 3097, +3414, 0, 3069, +3414, 0, 3027, +3414, 0, 2966, +3414, 0, 2867, +3414, 0, 2691, +3414, 0, 2234, +3414, 0, 0, +3414, 0, 0, +3414, 2765, 0, +3546, 3271, 0, +3679, 3563, 0, +3811, 3785, 0, +3910, 3944, 0, +3993, 4076, 0, +4085, 4095, 0, +3548, 0, 3294, +3548, 0, 3294, +3548, 0, 3294, +3548, 0, 3294, +3548, 0, 3293, +3548, 0, 3293, +3548, 0, 3292, +3548, 0, 3292, +3548, 0, 3291, +3547, 0, 3289, +3547, 0, 3287, +3547, 0, 3285, +3546, 0, 3281, +3546, 0, 3275, +3546, 0, 3268, +3546, 0, 3257, +3546, 0, 3242, +3546, 0, 3221, +3546, 0, 3192, +3546, 0, 3151, +3546, 0, 3087, +3546, 0, 2987, +3546, 0, 2804, +3546, 0, 2311, +3546, 0, 0, +3546, 0, 0, +3546, 2891, 0, +3679, 3401, 0, +3811, 3694, 0, +3944, 3917, 0, +4043, 4076, 0, +4095, 4095, 0, +3680, 0, 3422, +3680, 0, 3422, +3680, 0, 3422, +3680, 0, 3422, +3680, 0, 3422, +3680, 0, 3421, +3680, 0, 3421, +3680, 0, 3420, +3680, 0, 3420, +3680, 0, 3418, +3679, 0, 3417, +3679, 0, 3415, +3679, 0, 3413, +3679, 0, 3408, +3679, 0, 3402, +3679, 0, 3394, +3679, 0, 3384, +3679, 0, 3368, +3679, 0, 3348, +3679, 0, 3318, +3679, 0, 3276, +3679, 0, 3212, +3679, 0, 3110, +3679, 0, 2922, +3679, 0, 2400, +3679, 0, 0, +3679, 0, 0, +3679, 3018, 0, +3811, 3532, 0, +3944, 3825, 0, +4076, 4048, 0, +4095, 4095, 0, +3812, 0, 3552, +3812, 0, 3551, +3812, 0, 3551, +3812, 0, 3551, +3812, 0, 3551, +3812, 0, 3551, +3812, 0, 3550, +3812, 0, 3550, +3812, 0, 3549, +3812, 0, 3548, +3812, 0, 3547, +3812, 0, 3546, +3811, 0, 3544, +3811, 0, 3541, +3811, 0, 3536, +3811, 0, 3530, +3811, 0, 3522, +3811, 0, 3511, +3811, 0, 3496, +3811, 0, 3475, +3811, 0, 3446, +3811, 0, 3403, +3811, 0, 3338, +3811, 0, 3234, +3811, 0, 3043, +3811, 0, 2494, +3811, 0, 0, +3811, 0, 0, +3811, 3147, 0, +3944, 3663, 0, +4076, 3956, 0, +4095, 4095, 0, +3944, 0, 3681, +3944, 0, 3681, +3944, 0, 3681, +3944, 0, 3681, +3944, 0, 3681, +3944, 0, 3681, +3944, 0, 3680, +3944, 0, 3680, +3944, 0, 3680, +3944, 0, 3679, +3944, 0, 3678, +3944, 0, 3677, +3944, 0, 3676, +3944, 0, 3673, +3944, 0, 3670, +3944, 0, 3666, +3944, 0, 3659, +3944, 0, 3651, +3944, 0, 3640, +3944, 0, 3625, +3944, 0, 3604, +3944, 0, 3574, +3944, 0, 3531, +3944, 0, 3466, +3944, 0, 3361, +3944, 0, 3166, +3944, 0, 2596, +3944, 0, 0, +3944, 0, 0, +3944, 3277, 0, +4076, 3794, 0, +4095, 4088, 0, +4076, 0, 3812, +4076, 0, 3811, +4076, 0, 3811, +4076, 0, 3811, +4076, 0, 3811, +4076, 0, 3811, +4076, 0, 3811, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3809, +4076, 0, 3808, +4076, 0, 3807, +4076, 0, 3805, +4076, 0, 3803, +4076, 0, 3800, +4076, 0, 3795, +4076, 0, 3789, +4076, 0, 3781, +4076, 0, 3770, +4076, 0, 3755, +4076, 0, 3734, +4076, 0, 3703, +4076, 0, 3660, +4076, 0, 3594, +4076, 0, 3488, +4076, 0, 3291, +4076, 0, 2703, +4076, 0, 0, +4076, 0, 0, +4076, 3407, 0, +4095, 3926, 0, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3940, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3936, +4095, 0, 3934, +4095, 0, 3930, +4095, 0, 3926, +4095, 0, 3920, +4095, 0, 3912, +4095, 0, 3901, +4095, 0, 3885, +4095, 0, 3864, +4095, 0, 3834, +4095, 0, 3790, +4095, 0, 3724, +4095, 0, 3617, +4095, 0, 3419, +4095, 0, 2818, +4095, 0, 0, +4095, 0, 0, +4095, 3538, 0, +0, 1565, 1828, +0, 1572, 1828, +0, 1582, 1828, +0, 1596, 1828, +0, 1612, 1828, +0, 1634, 1828, +0, 1661, 1828, +0, 1696, 1828, +0, 1738, 1828, +0, 1789, 1828, +0, 1828, 1807, +0, 1828, 1716, +0, 1828, 1557, +0, 1828, 1180, +0, 1961, 0, +0, 2094, 0, +907, 2226, 0, +1580, 2358, 0, +1903, 2491, 0, +2138, 2623, 0, +2335, 2755, 0, +2510, 2887, 0, +2672, 3019, 0, +2825, 3152, 0, +2972, 3284, 0, +3115, 3416, 0, +3255, 3548, 0, +3393, 3680, 0, +3530, 3812, 0, +3665, 3944, 0, +3799, 4076, 0, +3933, 4095, 0, +0, 1557, 1828, +0, 1566, 1828, +0, 1576, 1828, +0, 1590, 1828, +0, 1607, 1828, +0, 1629, 1828, +0, 1656, 1828, +0, 1691, 1828, +0, 1733, 1828, +0, 1785, 1828, +0, 1828, 1810, +0, 1828, 1719, +0, 1828, 1560, +0, 1828, 1188, +0, 1961, 0, +0, 2093, 0, +944, 2226, 0, +1589, 2358, 0, +1907, 2491, 0, +2141, 2623, 0, +2337, 2755, 0, +2511, 2887, 0, +2672, 3019, 0, +2825, 3152, 0, +2972, 3283, 0, +3115, 3416, 0, +3255, 3548, 0, +3393, 3680, 0, +3530, 3812, 0, +3665, 3944, 0, +3799, 4076, 0, +3933, 4095, 0, +0, 1547, 1828, +0, 1556, 1828, +0, 1568, 1827, +0, 1582, 1827, +0, 1599, 1827, +0, 1621, 1827, +0, 1650, 1827, +0, 1684, 1827, +0, 1727, 1827, +0, 1779, 1827, +0, 1827, 1812, +0, 1827, 1722, +0, 1827, 1565, +0, 1827, 1198, +0, 1960, 0, +0, 2093, 0, +990, 2225, 0, +1600, 2358, 0, +1913, 2490, 0, +2144, 2623, 0, +2339, 2755, 0, +2513, 2887, 0, +2673, 3019, 0, +2826, 3152, 0, +2973, 3283, 0, +3115, 3416, 0, +3256, 3548, 0, +3393, 3680, 0, +3530, 3812, 0, +3665, 3944, 0, +3799, 4076, 0, +3933, 4095, 0, +0, 1532, 1828, +0, 1542, 1828, +0, 1554, 1827, +0, 1571, 1825, +0, 1588, 1825, +0, 1611, 1825, +0, 1640, 1825, +0, 1676, 1825, +0, 1720, 1825, +0, 1772, 1825, +0, 1825, 1816, +0, 1825, 1727, +0, 1825, 1571, +0, 1825, 1212, +0, 1959, 0, +0, 2092, 0, +1044, 2225, 0, +1615, 2357, 0, +1920, 2490, 0, +2149, 2622, 0, +2342, 2755, 0, +2515, 2887, 0, +2675, 3019, 0, +2827, 3151, 0, +2973, 3283, 0, +3116, 3416, 0, +3256, 3548, 0, +3394, 3680, 0, +3530, 3812, 0, +3665, 3944, 0, +3799, 4076, 0, +3933, 4095, 0, +0, 1512, 1828, +0, 1522, 1828, +0, 1535, 1827, +0, 1552, 1825, +0, 1574, 1823, +0, 1598, 1823, +0, 1627, 1823, +0, 1664, 1823, +0, 1709, 1823, +0, 1763, 1823, +0, 1823, 1821, +0, 1823, 1732, +0, 1823, 1579, +0, 1823, 1230, +0, 1958, 0, +0, 2091, 0, +1108, 2224, 0, +1634, 2357, 0, +1930, 2489, 0, +2155, 2622, 0, +2346, 2755, 0, +2517, 2887, 0, +2677, 3019, 0, +2829, 3151, 0, +2974, 3283, 0, +3117, 3416, 0, +3256, 3548, 0, +3394, 3680, 0, +3530, 3812, 0, +3665, 3944, 0, +3800, 4076, 0, +3934, 4095, 0, +0, 1484, 1828, +0, 1494, 1828, +0, 1508, 1827, +0, 1526, 1825, +0, 1549, 1823, +0, 1579, 1821, +0, 1609, 1821, +0, 1648, 1821, +0, 1694, 1821, +0, 1750, 1821, +0, 1815, 1821, +0, 1821, 1740, +0, 1821, 1590, +0, 1821, 1253, +0, 1956, 0, +0, 2089, 0, +1181, 2223, 0, +1659, 2356, 0, +1943, 2489, 0, +2163, 2621, 0, +2351, 2754, 0, +2521, 2887, 0, +2679, 3019, 0, +2830, 3151, 0, +2976, 3283, 0, +3118, 3416, 0, +3257, 3548, 0, +3395, 3680, 0, +3531, 3812, 0, +3666, 3944, 0, +3800, 4076, 0, +3934, 4095, 0, +0, 1442, 1828, +0, 1454, 1828, +0, 1469, 1827, +0, 1489, 1825, +0, 1514, 1823, +0, 1545, 1821, +0, 1585, 1817, +0, 1625, 1817, +0, 1673, 1817, +0, 1732, 1817, +0, 1799, 1817, +0, 1817, 1750, +0, 1817, 1604, +0, 1817, 1281, +0, 1953, 0, +0, 2087, 0, +1264, 2221, 0, +1689, 2355, 0, +1960, 2488, 0, +2173, 2621, 0, +2358, 2754, 0, +2526, 2886, 0, +2683, 3018, 0, +2833, 3151, 0, +2977, 3283, 0, +3119, 3415, 0, +3258, 3548, 0, +3395, 3680, 0, +3531, 3812, 0, +3666, 3944, 0, +3800, 4076, 0, +3934, 4095, 0, +0, 1381, 1828, +0, 1394, 1828, +0, 1412, 1827, +0, 1434, 1825, +0, 1462, 1823, +0, 1497, 1821, +0, 1540, 1817, +0, 1592, 1813, +0, 1644, 1813, +0, 1706, 1813, +0, 1777, 1813, +0, 1813, 1763, +0, 1813, 1622, +0, 1813, 1317, +0, 1950, 0, +10, 2085, 0, +1355, 2220, 0, +1727, 2353, 0, +1981, 2487, 0, +2187, 2620, 0, +2367, 2753, 0, +2532, 2886, 0, +2687, 3018, 0, +2836, 3151, 0, +2980, 3283, 0, +3121, 3415, 0, +3259, 3548, 0, +3396, 3680, 0, +3532, 3812, 0, +3666, 3944, 0, +3801, 4076, 0, +3934, 4095, 0, +0, 1283, 1828, +0, 1300, 1828, +0, 1321, 1827, +0, 1348, 1825, +0, 1382, 1823, +0, 1423, 1821, +0, 1474, 1817, +0, 1533, 1813, +0, 1602, 1807, +0, 1669, 1807, +0, 1746, 1807, +0, 1807, 1780, +0, 1807, 1644, +0, 1807, 1360, +0, 1945, 37, +800, 2082, 0, +1454, 2217, 0, +1773, 2352, 0, +2008, 2486, 0, +2204, 2619, 0, +2379, 2752, 0, +2540, 2885, 0, +2693, 3018, 0, +2840, 3151, 0, +2983, 3283, 0, +3123, 3415, 0, +3261, 3548, 0, +3397, 3680, 0, +3533, 3812, 0, +3667, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 1106, 1828, +0, 1131, 1828, +0, 1161, 1827, +0, 1199, 1825, +0, 1245, 1823, +0, 1301, 1821, +0, 1366, 1817, +0, 1440, 1813, +0, 1523, 1807, +740, 1615, 1798, +740, 1701, 1798, +740, 1795, 1798, +740, 1798, 1673, +740, 1798, 1413, +0, 1939, 573, +1138, 2077, 0, +1560, 2214, 0, +1829, 2349, 0, +2042, 2484, 0, +2226, 2618, 0, +2394, 2751, 0, +2551, 2885, 0, +2701, 3017, 0, +2846, 3150, 0, +2987, 3282, 0, +3126, 3415, 0, +3263, 3547, 0, +3399, 3680, 0, +3534, 3812, 0, +3668, 3944, 0, +3802, 4076, 0, +3935, 4095, 0, +0, 650, 1828, +0, 713, 1828, +0, 786, 1827, +0, 869, 1825, +0, 960, 1823, +0, 1059, 1821, +0, 1164, 1817, +0, 1275, 1813, +0, 1391, 1807, +740, 1510, 1798, +1090, 1633, 1787, +1090, 1740, 1787, +1090, 1787, 1709, +1090, 1787, 1475, +873, 1930, 872, +1379, 2071, 79, +1671, 2209, 0, +1894, 2346, 0, +2084, 2481, 0, +2255, 2616, 0, +2414, 2750, 0, +2565, 2883, 0, +2711, 3016, 0, +2853, 3150, 0, +2992, 3282, 0, +3130, 3414, 0, +3266, 3547, 0, +3401, 3679, 0, +3536, 3812, 0, +3669, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 0, 1828, +0, 0, 1828, +0, 0, 1827, +0, 0, 1825, +0, 0, 1823, +0, 0, 1821, +0, 536, 1817, +0, 874, 1813, +0, 1115, 1807, +740, 1315, 1798, +1090, 1491, 1787, +1337, 1654, 1771, +1337, 1771, 1754, +1337, 1771, 1546, +1321, 1919, 1223, +1579, 2062, 1005, +1787, 2203, 217, +1968, 2341, 0, +2134, 2478, 0, +2290, 2613, 0, +2439, 2748, 0, +2583, 2882, 0, +2724, 3015, 0, +2863, 3149, 0, +2999, 3281, 0, +3135, 3414, 0, +3270, 3547, 0, +3404, 3679, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 0, 1828, +0, 0, 1828, +0, 0, 1827, +0, 0, 1825, +0, 0, 1823, +0, 0, 1821, +0, 0, 1817, +0, 0, 1813, +438, 0, 1807, +740, 742, 1798, +1090, 1189, 1787, +1337, 1466, 1771, +1539, 1682, 1748, +1539, 1748, 1627, +1598, 1903, 1469, +1756, 2051, 1355, +1906, 2194, 1136, +2052, 2335, 345, +2194, 2473, 0, +2333, 2610, 0, +2470, 2746, 0, +2606, 2880, 0, +2741, 3014, 0, +2875, 3148, 0, +3009, 3280, 0, +3142, 3414, 0, +3275, 3546, 0, +3408, 3679, 0, +3541, 3811, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +1180, 0, 1828, +1188, 0, 1828, +1198, 0, 1827, +1212, 0, 1825, +1230, 0, 1823, +1253, 0, 1821, +1281, 0, 1817, +1317, 0, 1813, +1360, 0, 1807, +1413, 740, 1798, +1475, 1090, 1787, +1546, 1337, 1771, +1627, 1539, 1748, +1717, 1717, 1717, +1814, 1880, 1671, +1919, 2035, 1601, +2029, 2183, 1487, +2144, 2326, 1269, +2263, 2467, 477, +2385, 2605, 0, +2509, 2742, 0, +2636, 2878, 0, +2763, 3012, 0, +2892, 3146, 0, +3021, 3280, 0, +3151, 3413, 0, +3282, 3546, 0, +3413, 3678, 0, +3545, 3811, 0, +3676, 3943, 0, +3808, 4076, 0, +3940, 4095, 0, +1686, 0, 1961, +1689, 0, 1961, +1692, 0, 1960, +1697, 0, 1959, +1703, 0, 1958, +1711, 0, 1956, +1722, 0, 1953, +1736, 0, 1950, +1754, 0, 1945, +1776, 0, 1939, +1805, 872, 1930, +1841, 1223, 1919, +1885, 1469, 1903, +1880, 1671, 1814, +1880, 1759, 1671, +2035, 2017, 1601, +2136, 2183, 1487, +2229, 2326, 1269, +2330, 2467, 477, +2437, 2605, 0, +2550, 2742, 0, +2666, 2878, 0, +2786, 3012, 0, +2910, 3146, 0, +3034, 3280, 0, +3162, 3413, 0, +3290, 3546, 0, +3419, 3678, 0, +3549, 3811, 0, +3679, 3943, 0, +3810, 4076, 0, +3941, 4095, 0, +1977, 0, 2094, +1979, 0, 2093, +1981, 0, 2093, +1983, 0, 2092, +1986, 0, 2091, +1991, 0, 2089, +1996, 0, 2087, +2004, 0, 2085, +2014, 0, 2082, +2027, 0, 2077, +2044, 79, 2071, +2062, 1005, 2059, +2051, 1355, 2004, +2035, 1601, 1919, +2035, 1601, 1730, +2035, 1811, 1601, +2183, 2105, 1487, +2323, 2326, 1269, +2407, 2467, 477, +2498, 2605, 0, +2598, 2742, 0, +2704, 2878, 0, +2816, 3012, 0, +2932, 3146, 0, +3052, 3280, 0, +3175, 3413, 0, +3300, 3546, 0, +3426, 3678, 0, +3554, 3811, 0, +3683, 3943, 0, +3813, 4076, 0, +3944, 4095, 0, +2200, 0, 2226, +2201, 0, 2226, +2202, 0, 2225, +2203, 0, 2225, +2206, 0, 2224, +2208, 0, 2223, +2212, 0, 2221, +2217, 0, 2220, +2217, 0, 2211, +2214, 0, 2195, +2209, 0, 2174, +2203, 217, 2142, +2194, 1136, 2097, +2183, 1487, 2029, +2183, 1487, 1888, +2183, 1487, 1585, +2183, 1871, 1487, +2326, 2202, 1269, +2467, 2440, 477, +2570, 2605, 0, +2656, 2742, 0, +2751, 2878, 0, +2853, 3012, 0, +2961, 3146, 0, +3074, 3280, 0, +3192, 3413, 0, +3313, 3546, 0, +3436, 3678, 0, +3562, 3811, 0, +3689, 3943, 0, +3817, 4076, 0, +3947, 4095, 0, +2358, 0, 2325, +2358, 0, 2324, +2358, 0, 2322, +2357, 0, 2320, +2357, 0, 2317, +2356, 0, 2313, +2355, 0, 2308, +2353, 0, 2301, +2352, 0, 2291, +2349, 0, 2278, +2346, 0, 2260, +2341, 0, 2234, +2335, 345, 2198, +2326, 1269, 2144, +2326, 1269, 2038, +2326, 1269, 1843, +2326, 1269, 1270, +2326, 1941, 1269, +2467, 2305, 477, +2605, 2556, 0, +2724, 2742, 0, +2807, 2878, 0, +2898, 3012, 0, +2997, 3146, 0, +3102, 3280, 0, +3214, 3413, 0, +3330, 3546, 0, +3449, 3678, 0, +3572, 3811, 0, +3697, 3943, 0, +3823, 4076, 0, +3951, 4095, 0, +2491, 0, 2408, +2491, 0, 2407, +2490, 0, 2406, +2490, 0, 2404, +2489, 0, 2401, +2489, 0, 2398, +2488, 0, 2394, +2487, 0, 2388, +2486, 0, 2380, +2484, 0, 2369, +2481, 0, 2355, +2478, 0, 2334, +2473, 0, 2305, +2467, 477, 2263, +2467, 477, 2184, +2467, 477, 2051, +2467, 477, 1776, +2467, 1099, 477, +2467, 2021, 477, +2605, 2414, 0, +2742, 2675, 0, +2872, 2878, 0, +2952, 3012, 0, +3041, 3146, 0, +3138, 3280, 0, +3242, 3413, 0, +3351, 3546, 0, +3466, 3678, 0, +3585, 3811, 0, +3706, 3943, 0, +3830, 4076, 0, +3957, 4095, 0, +2623, 0, 2500, +2623, 0, 2499, +2623, 0, 2498, +2622, 0, 2496, +2622, 0, 2494, +2621, 0, 2492, +2621, 0, 2488, +2620, 0, 2483, +2619, 0, 2477, +2618, 0, 2469, +2616, 0, 2456, +2613, 0, 2440, +2610, 0, 2417, +2605, 0, 2385, +2605, 0, 2326, +2605, 0, 2233, +2605, 0, 2067, +2605, 0, 1667, +2605, 705, 0, +2605, 2109, 0, +2742, 2529, 0, +2878, 2797, 0, +3012, 3009, 0, +3093, 3146, 0, +3180, 3280, 0, +3276, 3413, 0, +3379, 3546, 0, +3488, 3678, 0, +3601, 3811, 0, +3719, 3943, 0, +3840, 4076, 0, +3964, 4095, 0, +2755, 0, 2599, +2755, 0, 2598, +2755, 0, 2598, +2755, 0, 2596, +2755, 0, 2595, +2754, 0, 2593, +2754, 0, 2590, +2753, 0, 2586, +2752, 0, 2581, +2751, 0, 2574, +2750, 0, 2565, +2748, 0, 2552, +2746, 0, 2534, +2742, 0, 2509, +2742, 0, 2465, +2742, 0, 2398, +2742, 0, 2291, +2742, 0, 2089, +2742, 0, 1463, +2742, 0, 0, +2742, 2206, 0, +2878, 2647, 0, +3012, 2921, 0, +3146, 3137, 0, +3233, 3280, 0, +3319, 3413, 0, +3413, 3546, 0, +3515, 3678, 0, +3622, 3811, 0, +3736, 3943, 0, +3853, 4076, 0, +3974, 4095, 0, +2887, 0, 2705, +2887, 0, 2705, +2887, 0, 2704, +2887, 0, 2703, +2887, 0, 2702, +2887, 0, 2700, +2886, 0, 2698, +2886, 0, 2695, +2885, 0, 2691, +2885, 0, 2685, +2883, 0, 2678, +2882, 0, 2668, +2880, 0, 2654, +2878, 0, 2636, +2878, 0, 2602, +2878, 0, 2554, +2878, 0, 2480, +2878, 0, 2358, +2878, 0, 2115, +2878, 0, 817, +2878, 0, 0, +2878, 2309, 0, +3012, 2767, 0, +3146, 3047, 0, +3280, 3265, 0, +3370, 3413, 0, +3455, 3546, 0, +3548, 3678, 0, +3650, 3811, 0, +3757, 3943, 0, +3869, 4076, 0, +3986, 4095, 0, +3019, 0, 2816, +3019, 0, 2816, +3019, 0, 2816, +3019, 0, 2815, +3019, 0, 2814, +3019, 0, 2813, +3018, 0, 2811, +3018, 0, 2808, +3018, 0, 2805, +3017, 0, 2801, +3016, 0, 2796, +3015, 0, 2788, +3014, 0, 2777, +3012, 0, 2763, +3012, 0, 2738, +3012, 0, 2703, +3012, 0, 2651, +3012, 0, 2570, +3012, 0, 2434, +3012, 0, 2148, +3012, 0, 0, +3012, 0, 0, +3012, 2419, 0, +3146, 2892, 0, +3280, 3175, 0, +3413, 3395, 0, +3506, 3546, 0, +3590, 3678, 0, +3683, 3811, 0, +3784, 3943, 0, +3890, 4076, 0, +4003, 4095, 0, +3152, 0, 2933, +3152, 0, 2932, +3152, 0, 2932, +3151, 0, 2932, +3151, 0, 2931, +3151, 0, 2930, +3151, 0, 2928, +3151, 0, 2927, +3151, 0, 2924, +3150, 0, 2921, +3150, 0, 2917, +3149, 0, 2911, +3148, 0, 2903, +3146, 0, 2892, +3146, 0, 2873, +3146, 0, 2847, +3146, 0, 2810, +3146, 0, 2755, +3146, 0, 2669, +3146, 0, 2521, +3146, 0, 2189, +3146, 0, 0, +3146, 0, 0, +3146, 2533, 0, +3280, 3017, 0, +3413, 3304, 0, +3546, 3525, 0, +3641, 3678, 0, +3725, 3811, 0, +3817, 3943, 0, +3917, 4076, 0, +4024, 4095, 0, +3284, 0, 3052, +3283, 0, 3052, +3283, 0, 3052, +3283, 0, 3051, +3283, 0, 3051, +3283, 0, 3050, +3283, 0, 3049, +3283, 0, 3047, +3283, 0, 3046, +3282, 0, 3043, +3282, 0, 3040, +3281, 0, 3035, +3280, 0, 3029, +3280, 0, 3021, +3280, 0, 3007, +3280, 0, 2988, +3280, 0, 2961, +3280, 0, 2922, +3280, 0, 2865, +3280, 0, 2773, +3280, 0, 2613, +3280, 0, 2237, +3280, 0, 0, +3280, 0, 0, +3280, 2651, 0, +3413, 3145, 0, +3546, 3434, 0, +3678, 3655, 0, +3775, 3811, 0, +3859, 3943, 0, +3950, 4076, 0, +4051, 4095, 0, +3416, 0, 3175, +3416, 0, 3175, +3416, 0, 3175, +3416, 0, 3174, +3416, 0, 3174, +3416, 0, 3173, +3415, 0, 3173, +3415, 0, 3171, +3415, 0, 3170, +3415, 0, 3168, +3414, 0, 3165, +3414, 0, 3162, +3414, 0, 3158, +3413, 0, 3151, +3413, 0, 3141, +3413, 0, 3127, +3413, 0, 3107, +3413, 0, 3079, +3413, 0, 3039, +3413, 0, 2979, +3413, 0, 2884, +3413, 0, 2715, +3413, 0, 2298, +3413, 0, 0, +3413, 0, 0, +3413, 2773, 0, +3546, 3274, 0, +3678, 3564, 0, +3811, 3786, 0, +3909, 3943, 0, +3992, 4076, 0, +4084, 4095, 0, +3548, 0, 3300, +3548, 0, 3300, +3548, 0, 3300, +3548, 0, 3299, +3548, 0, 3299, +3548, 0, 3299, +3548, 0, 3298, +3548, 0, 3297, +3548, 0, 3296, +3547, 0, 3295, +3547, 0, 3293, +3547, 0, 3290, +3546, 0, 3287, +3546, 0, 3282, +3546, 0, 3275, +3546, 0, 3264, +3546, 0, 3249, +3546, 0, 3229, +3546, 0, 3201, +3546, 0, 3160, +3546, 0, 3098, +3546, 0, 3000, +3546, 0, 2824, +3546, 0, 2365, +3546, 0, 0, +3546, 0, 0, +3546, 2897, 0, +3678, 3403, 0, +3811, 3695, 0, +3943, 3917, 0, +4042, 4076, 0, +4095, 4095, 0, +3680, 0, 3427, +3680, 0, 3426, +3680, 0, 3426, +3680, 0, 3426, +3680, 0, 3426, +3680, 0, 3426, +3680, 0, 3425, +3680, 0, 3425, +3680, 0, 3424, +3680, 0, 3423, +3679, 0, 3421, +3679, 0, 3419, +3679, 0, 3417, +3678, 0, 3413, +3678, 0, 3407, +3678, 0, 3400, +3678, 0, 3389, +3678, 0, 3374, +3678, 0, 3354, +3678, 0, 3325, +3678, 0, 3282, +3678, 0, 3220, +3678, 0, 3119, +3678, 0, 2936, +3678, 0, 2445, +3678, 0, 0, +3678, 0, 0, +3678, 3023, 0, +3811, 3534, 0, +3943, 3826, 0, +4076, 4049, 0, +4095, 4095, 0, +3812, 0, 3554, +3812, 0, 3554, +3812, 0, 3554, +3812, 0, 3554, +3812, 0, 3554, +3812, 0, 3554, +3812, 0, 3553, +3812, 0, 3553, +3812, 0, 3552, +3812, 0, 3552, +3812, 0, 3551, +3812, 0, 3549, +3811, 0, 3547, +3811, 0, 3545, +3811, 0, 3540, +3811, 0, 3534, +3811, 0, 3526, +3811, 0, 3516, +3811, 0, 3501, +3811, 0, 3480, +3811, 0, 3450, +3811, 0, 3408, +3811, 0, 3344, +3811, 0, 3241, +3811, 0, 3054, +3811, 0, 2531, +3811, 0, 0, +3811, 0, 0, +3811, 3151, 0, +3943, 3664, 0, +4076, 3957, 0, +4095, 4095, 0, +3944, 0, 3683, +3944, 0, 3683, +3944, 0, 3683, +3944, 0, 3683, +3944, 0, 3683, +3944, 0, 3683, +3944, 0, 3683, +3944, 0, 3682, +3944, 0, 3682, +3944, 0, 3681, +3944, 0, 3680, +3944, 0, 3679, +3944, 0, 3678, +3943, 0, 3676, +3943, 0, 3673, +3943, 0, 3668, +3943, 0, 3662, +3943, 0, 3655, +3943, 0, 3644, +3943, 0, 3628, +3943, 0, 3607, +3943, 0, 3578, +3943, 0, 3535, +3943, 0, 3470, +3943, 0, 3366, +3943, 0, 3175, +3943, 0, 2625, +3943, 0, 0, +3943, 0, 0, +3943, 3279, 0, +4076, 3795, 0, +4095, 4089, 0, +4076, 0, 3813, +4076, 0, 3813, +4076, 0, 3813, +4076, 0, 3813, +4076, 0, 3813, +4076, 0, 3813, +4076, 0, 3812, +4076, 0, 3812, +4076, 0, 3812, +4076, 0, 3812, +4076, 0, 3811, +4076, 0, 3810, +4076, 0, 3809, +4076, 0, 3808, +4076, 0, 3805, +4076, 0, 3802, +4076, 0, 3798, +4076, 0, 3792, +4076, 0, 3784, +4076, 0, 3773, +4076, 0, 3757, +4076, 0, 3736, +4076, 0, 3706, +4076, 0, 3663, +4076, 0, 3597, +4076, 0, 3492, +4076, 0, 3297, +4076, 0, 2726, +4076, 0, 0, +4076, 0, 0, +4076, 3409, 0, +4095, 3927, 0, +4095, 0, 3944, +4095, 0, 3944, +4095, 0, 3944, +4095, 0, 3944, +4095, 0, 3944, +4095, 0, 3944, +4095, 0, 3943, +4095, 0, 3943, +4095, 0, 3943, +4095, 0, 3943, +4095, 0, 3942, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3940, +4095, 0, 3938, +4095, 0, 3935, +4095, 0, 3932, +4095, 0, 3927, +4095, 0, 3922, +4095, 0, 3913, +4095, 0, 3903, +4095, 0, 3887, +4095, 0, 3866, +4095, 0, 3836, +4095, 0, 3792, +4095, 0, 3727, +4095, 0, 3621, +4095, 0, 3424, +4095, 0, 2837, +4095, 0, 0, +4095, 0, 0, +4095, 3539, 0, +0, 1696, 1961, +0, 1702, 1961, +0, 1709, 1961, +0, 1719, 1961, +0, 1732, 1961, +0, 1749, 1961, +0, 1770, 1961, +0, 1797, 1961, +0, 1831, 1961, +0, 1873, 1961, +0, 1923, 1961, +0, 1961, 1938, +0, 1961, 1847, +0, 1961, 1686, +0, 1961, 1306, +0, 2094, 0, +0, 2226, 0, +1009, 2358, 0, +1706, 2491, 0, +2032, 2623, 0, +2269, 2755, 0, +2466, 2887, 0, +2641, 3019, 0, +2803, 3152, 0, +2956, 3284, 0, +3104, 3416, 0, +3247, 3548, 0, +3387, 3680, 0, +3525, 3812, 0, +3661, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1690, 1961, +0, 1697, 1961, +0, 1705, 1961, +0, 1715, 1961, +0, 1728, 1961, +0, 1745, 1961, +0, 1766, 1961, +0, 1793, 1961, +0, 1828, 1961, +0, 1870, 1961, +0, 1920, 1961, +0, 1961, 1940, +0, 1961, 1849, +0, 1961, 1689, +0, 1961, 1312, +0, 2093, 0, +0, 2226, 0, +1039, 2358, 0, +1713, 2491, 0, +2035, 2623, 0, +2271, 2755, 0, +2467, 2887, 0, +2642, 3019, 0, +2804, 3152, 0, +2957, 3283, 0, +3104, 3416, 0, +3247, 3548, 0, +3387, 3680, 0, +3525, 3812, 0, +3662, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1682, 1961, +0, 1689, 1961, +0, 1699, 1960, +0, 1708, 1960, +0, 1722, 1960, +0, 1739, 1960, +0, 1761, 1960, +0, 1789, 1960, +0, 1823, 1960, +0, 1865, 1960, +0, 1917, 1960, +0, 1960, 1941, +0, 1960, 1851, +0, 1960, 1692, +0, 1960, 1320, +0, 2093, 0, +0, 2225, 0, +1076, 2358, 0, +1722, 2490, 0, +2039, 2623, 0, +2274, 2755, 0, +2469, 2887, 0, +2643, 3019, 0, +2805, 3152, 0, +2957, 3283, 0, +3104, 3416, 0, +3247, 3548, 0, +3387, 3680, 0, +3525, 3812, 0, +3662, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1672, 1961, +0, 1679, 1961, +0, 1688, 1960, +0, 1700, 1959, +0, 1714, 1959, +0, 1731, 1959, +0, 1754, 1959, +0, 1781, 1959, +0, 1817, 1959, +0, 1860, 1959, +0, 1911, 1959, +0, 1959, 1944, +0, 1959, 1854, +0, 1959, 1697, +0, 1959, 1331, +0, 2092, 0, +0, 2225, 0, +1122, 2357, 0, +1733, 2490, 0, +2045, 2622, 0, +2277, 2755, 0, +2471, 2887, 0, +2645, 3019, 0, +2806, 3151, 0, +2958, 3283, 0, +3105, 3416, 0, +3248, 3548, 0, +3388, 3680, 0, +3526, 3812, 0, +3662, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1657, 1961, +0, 1664, 1961, +0, 1674, 1960, +0, 1686, 1959, +0, 1703, 1958, +0, 1721, 1958, +0, 1743, 1958, +0, 1772, 1958, +0, 1808, 1958, +0, 1852, 1958, +0, 1905, 1958, +0, 1958, 1948, +0, 1958, 1859, +0, 1958, 1703, +0, 1958, 1344, +0, 2091, 0, +0, 2224, 0, +1176, 2357, 0, +1748, 2489, 0, +2052, 2622, 0, +2281, 2755, 0, +2474, 2887, 0, +2647, 3019, 0, +2807, 3151, 0, +2959, 3283, 0, +3106, 3416, 0, +3248, 3548, 0, +3388, 3680, 0, +3526, 3812, 0, +3662, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1636, 1961, +0, 1644, 1961, +0, 1654, 1960, +0, 1667, 1959, +0, 1684, 1958, +0, 1706, 1956, +0, 1730, 1956, +0, 1759, 1956, +0, 1796, 1956, +0, 1841, 1956, +0, 1895, 1956, +0, 1956, 1953, +0, 1956, 1865, +0, 1956, 1711, +0, 1956, 1362, +0, 2089, 0, +0, 2223, 0, +1240, 2356, 0, +1767, 2489, 0, +2062, 2621, 0, +2287, 2754, 0, +2478, 2887, 0, +2649, 3019, 0, +2809, 3151, 0, +2960, 3283, 0, +3106, 3416, 0, +3249, 3548, 0, +3388, 3680, 0, +3526, 3812, 0, +3662, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1607, 1961, +0, 1615, 1961, +0, 1626, 1960, +0, 1640, 1959, +0, 1658, 1958, +0, 1681, 1956, +0, 1711, 1953, +0, 1742, 1953, +0, 1779, 1953, +0, 1826, 1953, +0, 1882, 1953, +0, 1947, 1953, +0, 1953, 1872, +0, 1953, 1722, +0, 1953, 1385, +0, 2087, 0, +0, 2221, 0, +1313, 2355, 0, +1791, 2488, 0, +2075, 2621, 0, +2295, 2754, 0, +2483, 2886, 0, +2653, 3018, 0, +2812, 3151, 0, +2962, 3283, 0, +3108, 3415, 0, +3250, 3548, 0, +3389, 3680, 0, +3527, 3812, 0, +3663, 3944, 0, +3798, 4076, 0, +3932, 4095, 0, +0, 1565, 1961, +0, 1574, 1961, +0, 1586, 1960, +0, 1601, 1959, +0, 1621, 1958, +0, 1646, 1956, +0, 1678, 1953, +0, 1716, 1950, +0, 1757, 1950, +0, 1806, 1950, +0, 1864, 1950, +0, 1931, 1950, +0, 1950, 1882, +0, 1950, 1736, +0, 1950, 1413, +0, 2085, 0, +0, 2220, 0, +1396, 2353, 0, +1822, 2487, 0, +2092, 2620, 0, +2305, 2753, 0, +2490, 2886, 0, +2658, 3018, 0, +2815, 3151, 0, +2965, 3283, 0, +3110, 3415, 0, +3251, 3548, 0, +3390, 3680, 0, +3528, 3812, 0, +3663, 3944, 0, +3798, 4076, 0, +3932, 4095, 0, +0, 1503, 1961, +0, 1513, 1961, +0, 1526, 1960, +0, 1544, 1959, +0, 1566, 1958, +0, 1594, 1956, +0, 1629, 1953, +0, 1672, 1950, +0, 1724, 1945, +0, 1776, 1945, +0, 1838, 1945, +0, 1909, 1945, +0, 1945, 1895, +0, 1945, 1754, +0, 1945, 1449, +0, 2082, 0, +140, 2217, 0, +1487, 2352, 0, +1859, 2486, 0, +2113, 2619, 0, +2319, 2752, 0, +2499, 2885, 0, +2664, 3018, 0, +2819, 3151, 0, +2968, 3283, 0, +3112, 3415, 0, +3253, 3548, 0, +3392, 3680, 0, +3528, 3812, 0, +3664, 3944, 0, +3798, 4076, 0, +3933, 4095, 0, +0, 1402, 1961, +0, 1415, 1961, +0, 1431, 1960, +0, 1453, 1959, +0, 1480, 1958, +0, 1514, 1956, +0, 1555, 1953, +0, 1606, 1950, +0, 1665, 1945, +0, 1734, 1939, +0, 1801, 1939, +0, 1878, 1939, +0, 1939, 1912, +0, 1939, 1776, +0, 1939, 1492, +0, 2077, 173, +932, 2214, 0, +1586, 2349, 0, +1906, 2484, 0, +2140, 2618, 0, +2336, 2751, 0, +2511, 2885, 0, +2672, 3017, 0, +2825, 3150, 0, +2972, 3282, 0, +3115, 3415, 0, +3255, 3547, 0, +3393, 3680, 0, +3530, 3812, 0, +3665, 3944, 0, +3799, 4076, 0, +3933, 4095, 0, +0, 1220, 1961, +0, 1238, 1961, +0, 1263, 1960, +0, 1294, 1959, +0, 1332, 1958, +0, 1378, 1956, +0, 1433, 1953, +0, 1498, 1950, +0, 1572, 1945, +0, 1655, 1939, +872, 1748, 1930, +872, 1833, 1930, +872, 1927, 1930, +872, 1930, 1805, +872, 1930, 1545, +79, 2071, 706, +1270, 2209, 0, +1692, 2346, 0, +1961, 2481, 0, +2174, 2616, 0, +2359, 2750, 0, +2526, 2883, 0, +2683, 3016, 0, +2833, 3150, 0, +2977, 3282, 0, +3119, 3414, 0, +3258, 3547, 0, +3395, 3679, 0, +3531, 3812, 0, +3666, 3944, 0, +3800, 4076, 0, +3934, 4095, 0, +0, 726, 1961, +0, 780, 1961, +0, 844, 1960, +0, 917, 1959, +0, 1000, 1958, +0, 1091, 1956, +0, 1190, 1953, +0, 1295, 1950, +0, 1407, 1945, +0, 1523, 1939, +872, 1642, 1930, +1223, 1765, 1919, +1223, 1872, 1919, +1223, 1919, 1841, +1223, 1919, 1607, +1006, 2062, 1005, +1512, 2203, 217, +1803, 2341, 0, +2026, 2478, 0, +2216, 2613, 0, +2387, 2748, 0, +2546, 2882, 0, +2697, 3015, 0, +2843, 3149, 0, +2985, 3281, 0, +3125, 3414, 0, +3262, 3547, 0, +3398, 3679, 0, +3533, 3812, 0, +3668, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 0, 1961, +0, 0, 1961, +0, 0, 1960, +0, 0, 1959, +0, 0, 1958, +0, 0, 1956, +0, 0, 1953, +0, 670, 1950, +0, 1007, 1945, +0, 1248, 1939, +872, 1447, 1930, +1223, 1624, 1919, +1469, 1787, 1903, +1469, 1903, 1885, +1469, 1903, 1678, +1453, 2051, 1355, +1711, 2194, 1136, +1919, 2335, 345, +2100, 2473, 0, +2266, 2610, 0, +2422, 2746, 0, +2571, 2880, 0, +2715, 3014, 0, +2856, 3148, 0, +2995, 3280, 0, +3132, 3414, 0, +3268, 3546, 0, +3402, 3679, 0, +3536, 3811, 0, +3670, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 0, 1961, +0, 0, 1961, +0, 0, 1960, +0, 0, 1959, +0, 0, 1958, +0, 0, 1956, +0, 0, 1953, +0, 0, 1950, +37, 0, 1945, +573, 0, 1939, +872, 873, 1930, +1223, 1321, 1919, +1469, 1598, 1903, +1671, 1814, 1880, +1671, 1880, 1759, +1730, 2035, 1601, +1888, 2183, 1487, +2038, 2326, 1269, +2184, 2467, 477, +2326, 2605, 0, +2465, 2742, 0, +2602, 2878, 0, +2738, 3012, 0, +2873, 3146, 0, +3007, 3280, 0, +3141, 3413, 0, +3275, 3546, 0, +3407, 3678, 0, +3540, 3811, 0, +3673, 3943, 0, +3805, 4076, 0, +3938, 4095, 0, +1306, 0, 1961, +1312, 0, 1961, +1320, 0, 1960, +1331, 0, 1959, +1344, 0, 1958, +1362, 0, 1956, +1385, 0, 1953, +1413, 0, 1950, +1449, 0, 1945, +1492, 0, 1939, +1545, 872, 1930, +1607, 1223, 1919, +1678, 1469, 1903, +1759, 1671, 1880, +1849, 1849, 1849, +1946, 2013, 1803, +2051, 2167, 1733, +2161, 2315, 1619, +2276, 2459, 1401, +2395, 2599, 611, +2517, 2738, 0, +2641, 2874, 0, +2767, 3010, 0, +2895, 3144, 0, +3024, 3278, 0, +3154, 3412, 0, +3284, 3545, 0, +3414, 3678, 0, +3545, 3810, 0, +3677, 3943, 0, +3808, 4075, 0, +3940, 4095, 0, +1816, 0, 2094, +1818, 0, 2093, +1821, 0, 2093, +1824, 0, 2092, +1829, 0, 2091, +1835, 0, 2089, +1843, 0, 2087, +1854, 0, 2085, +1868, 0, 2082, +1886, 0, 2077, +1908, 79, 2071, +1937, 1005, 2062, +1973, 1355, 2051, +2017, 1601, 2035, +2013, 1803, 1946, +2013, 1891, 1803, +2167, 2149, 1733, +2268, 2315, 1619, +2362, 2459, 1401, +2462, 2599, 611, +2569, 2738, 0, +2681, 2874, 0, +2798, 3010, 0, +2919, 3144, 0, +3041, 3278, 0, +3167, 3412, 0, +3294, 3545, 0, +3422, 3678, 0, +3551, 3810, 0, +3681, 3943, 0, +3811, 4075, 0, +3942, 4095, 0, +2108, 0, 2226, +2109, 0, 2226, +2111, 0, 2225, +2112, 0, 2225, +2115, 0, 2224, +2118, 0, 2223, +2123, 0, 2221, +2128, 0, 2220, +2136, 0, 2217, +2146, 0, 2214, +2159, 0, 2209, +2176, 217, 2203, +2194, 1136, 2191, +2183, 1487, 2136, +2167, 1733, 2051, +2167, 1733, 1862, +2167, 1943, 1733, +2315, 2237, 1619, +2455, 2459, 1401, +2538, 2599, 611, +2631, 2738, 0, +2730, 2874, 0, +2836, 3010, 0, +2948, 3144, 0, +3064, 3278, 0, +3184, 3412, 0, +3307, 3545, 0, +3432, 3678, 0, +3559, 3810, 0, +3687, 3943, 0, +3816, 4075, 0, +3945, 4095, 0, +2332, 0, 2358, +2332, 0, 2358, +2333, 0, 2358, +2334, 0, 2357, +2335, 0, 2357, +2338, 0, 2356, +2340, 0, 2355, +2344, 0, 2353, +2349, 0, 2352, +2349, 0, 2343, +2346, 0, 2328, +2341, 0, 2305, +2335, 345, 2274, +2326, 1269, 2229, +2315, 1619, 2161, +2315, 1619, 2020, +2315, 1619, 1718, +2315, 2003, 1619, +2459, 2334, 1401, +2599, 2572, 611, +2702, 2738, 0, +2788, 2874, 0, +2883, 3010, 0, +2985, 3144, 0, +3093, 3278, 0, +3206, 3412, 0, +3324, 3545, 0, +3445, 3678, 0, +3569, 3810, 0, +3694, 3943, 0, +3821, 4075, 0, +3950, 4095, 0, +2491, 0, 2458, +2491, 0, 2457, +2490, 0, 2456, +2490, 0, 2454, +2489, 0, 2452, +2489, 0, 2449, +2488, 0, 2445, +2487, 0, 2440, +2486, 0, 2433, +2484, 0, 2423, +2481, 0, 2410, +2478, 0, 2392, +2473, 0, 2366, +2467, 477, 2330, +2459, 1401, 2276, +2459, 1401, 2171, +2459, 1401, 1976, +2459, 1401, 1403, +2459, 2073, 1401, +2599, 2437, 611, +2738, 2688, 0, +2856, 2874, 0, +2939, 3010, 0, +3030, 3144, 0, +3129, 3278, 0, +3234, 3412, 0, +3346, 3545, 0, +3462, 3678, 0, +3582, 3810, 0, +3704, 3943, 0, +3829, 4075, 0, +3955, 4095, 0, +2623, 0, 2541, +2623, 0, 2540, +2623, 0, 2539, +2622, 0, 2538, +2622, 0, 2536, +2621, 0, 2533, +2621, 0, 2530, +2620, 0, 2526, +2619, 0, 2520, +2618, 0, 2512, +2616, 0, 2501, +2613, 0, 2487, +2610, 0, 2466, +2605, 0, 2437, +2599, 611, 2395, +2599, 611, 2316, +2599, 611, 2183, +2599, 611, 1908, +2599, 1236, 611, +2599, 2153, 611, +2738, 2547, 0, +2874, 2807, 0, +3004, 3010, 0, +3084, 3144, 0, +3173, 3278, 0, +3270, 3412, 0, +3374, 3545, 0, +3483, 3678, 0, +3598, 3810, 0, +3717, 3943, 0, +3838, 4075, 0, +3963, 4095, 0, +2755, 0, 2632, +2755, 0, 2632, +2755, 0, 2631, +2755, 0, 2630, +2755, 0, 2628, +2754, 0, 2627, +2754, 0, 2624, +2753, 0, 2620, +2752, 0, 2616, +2751, 0, 2609, +2750, 0, 2601, +2748, 0, 2589, +2746, 0, 2572, +2742, 0, 2550, +2738, 0, 2517, +2738, 0, 2458, +2738, 0, 2365, +2738, 0, 2200, +2738, 0, 1799, +2738, 817, 0, +2738, 2241, 0, +2874, 2661, 0, +3010, 2928, 0, +3144, 3141, 0, +3225, 3278, 0, +3313, 3412, 0, +3408, 3545, 0, +3511, 3678, 0, +3620, 3810, 0, +3733, 3943, 0, +3851, 4075, 0, +3972, 4095, 0, +2887, 0, 2732, +2887, 0, 2731, +2887, 0, 2731, +2887, 0, 2730, +2887, 0, 2728, +2887, 0, 2727, +2886, 0, 2725, +2886, 0, 2722, +2885, 0, 2718, +2885, 0, 2713, +2883, 0, 2706, +2882, 0, 2697, +2880, 0, 2684, +2878, 0, 2666, +2874, 0, 2641, +2874, 0, 2597, +2874, 0, 2530, +2874, 0, 2423, +2874, 0, 2220, +2874, 0, 1596, +2874, 0, 0, +2874, 2338, 0, +3010, 2778, 0, +3144, 3053, 0, +3278, 3269, 0, +3365, 3412, 0, +3451, 3545, 0, +3545, 3678, 0, +3647, 3810, 0, +3755, 3943, 0, +3868, 4075, 0, +3985, 4095, 0, +3019, 0, 2837, +3019, 0, 2837, +3019, 0, 2836, +3019, 0, 2836, +3019, 0, 2835, +3019, 0, 2834, +3018, 0, 2832, +3018, 0, 2830, +3018, 0, 2827, +3017, 0, 2823, +3016, 0, 2817, +3015, 0, 2810, +3014, 0, 2800, +3012, 0, 2786, +3010, 0, 2767, +3010, 0, 2734, +3010, 0, 2686, +3010, 0, 2612, +3010, 0, 2489, +3010, 0, 2247, +3010, 0, 922, +3010, 0, 0, +3010, 2441, 0, +3144, 2901, 0, +3278, 3180, 0, +3412, 3397, 0, +3502, 3545, 0, +3587, 3678, 0, +3680, 3810, 0, +3781, 3943, 0, +3889, 4075, 0, +4002, 4095, 0, +3152, 0, 2949, +3152, 0, 2949, +3152, 0, 2948, +3151, 0, 2948, +3151, 0, 2947, +3151, 0, 2946, +3151, 0, 2945, +3151, 0, 2943, +3151, 0, 2941, +3150, 0, 2938, +3150, 0, 2933, +3149, 0, 2928, +3148, 0, 2920, +3146, 0, 2910, +3144, 0, 2895, +3144, 0, 2870, +3144, 0, 2835, +3144, 0, 2783, +3144, 0, 2703, +3144, 0, 2566, +3144, 0, 2280, +3144, 0, 0, +3144, 0, 0, +3144, 2551, 0, +3278, 3023, 0, +3412, 3307, 0, +3545, 3526, 0, +3638, 3678, 0, +3722, 3810, 0, +3815, 3943, 0, +3916, 4075, 0, +4023, 4095, 0, +3284, 0, 3065, +3283, 0, 3065, +3283, 0, 3064, +3283, 0, 3064, +3283, 0, 3063, +3283, 0, 3062, +3283, 0, 3062, +3283, 0, 3060, +3283, 0, 3059, +3282, 0, 3056, +3282, 0, 3053, +3281, 0, 3049, +3280, 0, 3043, +3280, 0, 3034, +3278, 0, 3024, +3278, 0, 3005, +3278, 0, 2979, +3278, 0, 2942, +3278, 0, 2886, +3278, 0, 2800, +3278, 0, 2651, +3278, 0, 2320, +3278, 0, 0, +3278, 0, 0, +3278, 2665, 0, +3412, 3150, 0, +3545, 3436, 0, +3678, 3657, 0, +3773, 3810, 0, +3857, 3943, 0, +3949, 4075, 0, +4049, 4095, 0, +3416, 0, 3184, +3416, 0, 3184, +3416, 0, 3184, +3416, 0, 3184, +3416, 0, 3184, +3416, 0, 3183, +3415, 0, 3182, +3415, 0, 3181, +3415, 0, 3180, +3415, 0, 3178, +3414, 0, 3175, +3414, 0, 3172, +3414, 0, 3168, +3413, 0, 3162, +3412, 0, 3154, +3412, 0, 3140, +3412, 0, 3120, +3412, 0, 3093, +3412, 0, 3055, +3412, 0, 2997, +3412, 0, 2906, +3412, 0, 2746, +3412, 0, 2371, +3412, 0, 0, +3412, 0, 0, +3412, 2784, 0, +3545, 3278, 0, +3678, 3566, 0, +3810, 3787, 0, +3907, 3943, 0, +3991, 4075, 0, +4083, 4095, 0, +3548, 0, 3307, +3548, 0, 3307, +3548, 0, 3307, +3548, 0, 3307, +3548, 0, 3307, +3548, 0, 3306, +3548, 0, 3305, +3548, 0, 3305, +3548, 0, 3303, +3547, 0, 3302, +3547, 0, 3300, +3547, 0, 3298, +3546, 0, 3294, +3546, 0, 3290, +3545, 0, 3284, +3545, 0, 3273, +3545, 0, 3259, +3545, 0, 3239, +3545, 0, 3211, +3545, 0, 3171, +3545, 0, 3111, +3545, 0, 3016, +3545, 0, 2848, +3545, 0, 2429, +3545, 0, 0, +3545, 0, 0, +3545, 2905, 0, +3678, 3406, 0, +3810, 3696, 0, +3943, 3918, 0, +4041, 4075, 0, +4095, 4095, 0, +3680, 0, 3432, +3680, 0, 3432, +3680, 0, 3432, +3680, 0, 3432, +3680, 0, 3431, +3680, 0, 3431, +3680, 0, 3431, +3680, 0, 3430, +3680, 0, 3429, +3680, 0, 3428, +3679, 0, 3427, +3679, 0, 3425, +3679, 0, 3422, +3678, 0, 3419, +3678, 0, 3414, +3678, 0, 3407, +3678, 0, 3396, +3678, 0, 3381, +3678, 0, 3361, +3678, 0, 3333, +3678, 0, 3291, +3678, 0, 3230, +3678, 0, 3132, +3678, 0, 2955, +3678, 0, 2499, +3678, 0, 0, +3678, 0, 0, +3678, 3029, 0, +3810, 3536, 0, +3943, 3827, 0, +4075, 4049, 0, +4095, 4095, 0, +3812, 0, 3559, +3812, 0, 3559, +3812, 0, 3559, +3812, 0, 3558, +3812, 0, 3558, +3812, 0, 3558, +3812, 0, 3558, +3812, 0, 3557, +3812, 0, 3557, +3812, 0, 3556, +3812, 0, 3555, +3812, 0, 3553, +3811, 0, 3552, +3811, 0, 3549, +3810, 0, 3545, +3810, 0, 3540, +3810, 0, 3532, +3810, 0, 3521, +3810, 0, 3506, +3810, 0, 3486, +3810, 0, 3457, +3810, 0, 3415, +3810, 0, 3352, +3810, 0, 3251, +3810, 0, 3069, +3810, 0, 2576, +3810, 0, 0, +3810, 0, 0, +3810, 3155, 0, +3943, 3665, 0, +4075, 3958, 0, +4095, 4095, 0, +3944, 0, 3687, +3944, 0, 3687, +3944, 0, 3687, +3944, 0, 3686, +3944, 0, 3686, +3944, 0, 3686, +3944, 0, 3686, +3944, 0, 3686, +3944, 0, 3685, +3944, 0, 3685, +3944, 0, 3684, +3944, 0, 3683, +3944, 0, 3681, +3943, 0, 3679, +3943, 0, 3677, +3943, 0, 3672, +3943, 0, 3666, +3943, 0, 3659, +3943, 0, 3648, +3943, 0, 3632, +3943, 0, 3612, +3943, 0, 3583, +3943, 0, 3540, +3943, 0, 3476, +3943, 0, 3374, +3943, 0, 3186, +3943, 0, 2662, +3943, 0, 0, +3943, 0, 0, +3943, 3283, 0, +4075, 3796, 0, +4095, 4089, 0, +4076, 0, 3816, +4076, 0, 3816, +4076, 0, 3816, +4076, 0, 3815, +4076, 0, 3815, +4076, 0, 3815, +4076, 0, 3815, +4076, 0, 3815, +4076, 0, 3814, +4076, 0, 3814, +4076, 0, 3813, +4076, 0, 3812, +4076, 0, 3812, +4076, 0, 3810, +4075, 0, 3808, +4075, 0, 3805, +4075, 0, 3801, +4075, 0, 3795, +4075, 0, 3787, +4075, 0, 3776, +4075, 0, 3760, +4075, 0, 3739, +4075, 0, 3710, +4075, 0, 3667, +4075, 0, 3602, +4075, 0, 3498, +4075, 0, 3306, +4075, 0, 2756, +4075, 0, 0, +4075, 0, 0, +4075, 3411, 0, +4095, 3927, 0, +4095, 0, 3946, +4095, 0, 3946, +4095, 0, 3945, +4095, 0, 3945, +4095, 0, 3945, +4095, 0, 3945, +4095, 0, 3945, +4095, 0, 3945, +4095, 0, 3945, +4095, 0, 3944, +4095, 0, 3944, +4095, 0, 3943, +4095, 0, 3942, +4095, 0, 3941, +4095, 0, 3940, +4095, 0, 3937, +4095, 0, 3934, +4095, 0, 3930, +4095, 0, 3924, +4095, 0, 3916, +4095, 0, 3905, +4095, 0, 3889, +4095, 0, 3868, +4095, 0, 3838, +4095, 0, 3795, +4095, 0, 3730, +4095, 0, 3625, +4095, 0, 3430, +4095, 0, 2861, +4095, 0, 0, +4095, 0, 0, +4095, 3541, 0, +0, 1827, 2094, +0, 1831, 2094, +0, 1837, 2094, +0, 1845, 2094, +0, 1855, 2094, +0, 1867, 2094, +0, 1884, 2094, +0, 1905, 2094, +0, 1932, 2094, +0, 1966, 2094, +0, 2007, 2094, +0, 2058, 2094, +0, 2094, 2069, +0, 2094, 1977, +0, 2094, 1816, +0, 2094, 1433, +0, 2226, 0, +0, 2358, 0, +1120, 2491, 0, +1833, 2623, 0, +2162, 2755, 0, +2400, 2887, 0, +2597, 3019, 0, +2773, 3152, 0, +2935, 3284, 0, +3088, 3416, 0, +3236, 3548, 0, +3379, 3680, 0, +3519, 3812, 0, +3657, 3944, 0, +3793, 4076, 0, +3929, 4095, 0, +0, 1823, 2094, +0, 1828, 2093, +0, 1834, 2093, +0, 1841, 2093, +0, 1851, 2093, +0, 1864, 2093, +0, 1881, 2093, +0, 1902, 2093, +0, 1929, 2093, +0, 1963, 2093, +0, 2005, 2093, +0, 2056, 2093, +0, 2093, 2070, +0, 2093, 1979, +0, 2093, 1818, +0, 2093, 1438, +0, 2226, 0, +0, 2358, 0, +1143, 2491, 0, +1838, 2623, 0, +2164, 2755, 0, +2401, 2887, 0, +2598, 3019, 0, +2773, 3152, 0, +2935, 3283, 0, +3088, 3416, 0, +3236, 3548, 0, +3379, 3680, 0, +3519, 3812, 0, +3657, 3944, 0, +3793, 4076, 0, +3929, 4095, 0, +0, 1817, 2094, +0, 1822, 2093, +0, 1829, 2093, +0, 1837, 2093, +0, 1847, 2093, +0, 1860, 2093, +0, 1877, 2093, +0, 1898, 2093, +0, 1926, 2093, +0, 1960, 2093, +0, 2002, 2093, +0, 2053, 2093, +0, 2093, 2071, +0, 2093, 1981, +0, 2093, 1821, +0, 2093, 1444, +0, 2225, 0, +0, 2358, 0, +1173, 2490, 0, +1845, 2623, 0, +2167, 2755, 0, +2403, 2887, 0, +2599, 3019, 0, +2774, 3152, 0, +2936, 3283, 0, +3089, 3416, 0, +3236, 3548, 0, +3379, 3680, 0, +3519, 3812, 0, +3657, 3944, 0, +3793, 4076, 0, +3929, 4095, 0, +0, 1809, 2094, +0, 1814, 2093, +0, 1821, 2093, +0, 1830, 2092, +0, 1841, 2092, +0, 1854, 2092, +0, 1871, 2092, +0, 1893, 2092, +0, 1920, 2092, +0, 1955, 2092, +0, 1997, 2092, +0, 2049, 2092, +0, 2092, 2073, +0, 2092, 1983, +0, 2092, 1824, +0, 2092, 1452, +0, 2225, 0, +0, 2357, 0, +1210, 2490, 0, +1853, 2622, 0, +2172, 2755, 0, +2406, 2887, 0, +2601, 3019, 0, +2775, 3151, 0, +2936, 3283, 0, +3089, 3416, 0, +3237, 3548, 0, +3379, 3680, 0, +3520, 3812, 0, +3657, 3944, 0, +3794, 4076, 0, +3929, 4095, 0, +0, 1798, 2094, +0, 1804, 2093, +0, 1811, 2093, +0, 1820, 2092, +0, 1832, 2091, +0, 1846, 2091, +0, 1863, 2091, +0, 1885, 2091, +0, 1913, 2091, +0, 1949, 2091, +0, 1992, 2091, +0, 2044, 2091, +0, 2091, 2076, +0, 2091, 1986, +0, 2091, 1829, +0, 2091, 1463, +0, 2224, 0, +0, 2357, 0, +1255, 2489, 0, +1865, 2622, 0, +2177, 2755, 0, +2409, 2887, 0, +2603, 3019, 0, +2777, 3151, 0, +2938, 3283, 0, +3090, 3416, 0, +3237, 3548, 0, +3380, 3680, 0, +3520, 3812, 0, +3658, 3944, 0, +3794, 4076, 0, +3929, 4095, 0, +0, 1783, 2094, +0, 1789, 2093, +0, 1796, 2093, +0, 1806, 2092, +0, 1819, 2091, +0, 1835, 2089, +0, 1853, 2089, +0, 1875, 2089, +0, 1904, 2089, +0, 1940, 2089, +0, 1984, 2089, +0, 2037, 2089, +0, 2089, 2080, +0, 2089, 1991, +0, 2089, 1835, +0, 2089, 1476, +0, 2223, 0, +0, 2356, 0, +1310, 2489, 0, +1880, 2621, 0, +2185, 2754, 0, +2413, 2887, 0, +2606, 3019, 0, +2779, 3151, 0, +2939, 3283, 0, +3091, 3416, 0, +3238, 3548, 0, +3380, 3680, 0, +3520, 3812, 0, +3658, 3944, 0, +3794, 4076, 0, +3929, 4095, 0, +0, 1763, 2094, +0, 1768, 2093, +0, 1776, 2093, +0, 1786, 2092, +0, 1799, 2091, +0, 1816, 2089, +0, 1838, 2087, +0, 1862, 2087, +0, 1891, 2087, +0, 1928, 2087, +0, 1973, 2087, +0, 2027, 2087, +0, 2087, 2085, +0, 2087, 1996, +0, 2087, 1843, +0, 2087, 1494, +0, 2221, 0, +0, 2355, 0, +1373, 2488, 0, +1899, 2621, 0, +2195, 2754, 0, +2419, 2886, 0, +2610, 3018, 0, +2782, 3151, 0, +2941, 3283, 0, +3093, 3415, 0, +3239, 3548, 0, +3381, 3680, 0, +3521, 3812, 0, +3658, 3944, 0, +3794, 4076, 0, +3930, 4095, 0, +0, 1733, 2094, +0, 1739, 2093, +0, 1748, 2093, +0, 1758, 2092, +0, 1772, 2091, +0, 1790, 2089, +0, 1813, 2087, +0, 1843, 2085, +0, 1873, 2085, +0, 1912, 2085, +0, 1958, 2085, +0, 2014, 2085, +0, 2079, 2085, +0, 2085, 2004, +0, 2085, 1854, +0, 2085, 1517, +0, 2220, 0, +0, 2353, 0, +1446, 2487, 0, +1923, 2620, 0, +2208, 2753, 0, +2427, 2886, 0, +2615, 3018, 0, +2785, 3151, 0, +2943, 3283, 0, +3094, 3415, 0, +3240, 3548, 0, +3382, 3680, 0, +3521, 3812, 0, +3659, 3944, 0, +3795, 4076, 0, +3930, 4095, 0, +0, 1691, 2094, +0, 1698, 2093, +0, 1706, 2093, +0, 1718, 2092, +0, 1733, 2091, +0, 1753, 2089, +0, 1778, 2087, +0, 1810, 2085, +0, 1849, 2082, +0, 1889, 2082, +0, 1938, 2082, +0, 1996, 2082, +0, 2063, 2082, +0, 2082, 2014, +0, 2082, 1868, +0, 2082, 1545, +0, 2217, 0, +0, 2352, 0, +1529, 2486, 0, +1954, 2619, 0, +2224, 2752, 0, +2438, 2885, 0, +2622, 3018, 0, +2790, 3151, 0, +2947, 3283, 0, +3097, 3415, 0, +3242, 3548, 0, +3383, 3680, 0, +3522, 3812, 0, +3659, 3944, 0, +3795, 4076, 0, +3930, 4095, 0, +0, 1626, 2094, +0, 1635, 2093, +0, 1645, 2093, +0, 1658, 2092, +0, 1676, 2091, +0, 1698, 2089, +0, 1726, 2087, +0, 1761, 2085, +0, 1804, 2082, +0, 1856, 2077, +0, 1908, 2077, +0, 1970, 2077, +0, 2041, 2077, +0, 2077, 2027, +0, 2077, 1886, +0, 2077, 1581, +0, 2214, 0, +275, 2349, 0, +1620, 2484, 0, +1991, 2618, 0, +2245, 2751, 0, +2451, 2885, 0, +2631, 3017, 0, +2796, 3150, 0, +2951, 3282, 0, +3100, 3415, 0, +3244, 3547, 0, +3385, 3680, 0, +3523, 3812, 0, +3661, 3944, 0, +3796, 4076, 0, +3931, 4095, 0, +0, 1524, 2094, +0, 1534, 2093, +0, 1547, 2093, +0, 1564, 2092, +0, 1585, 2091, +0, 1612, 2089, +0, 1646, 2087, +0, 1687, 2085, +0, 1738, 2082, +0, 1797, 2077, +79, 1866, 2071, +79, 1934, 2071, +79, 2010, 2071, +79, 2071, 2044, +79, 2071, 1908, +79, 2071, 1625, +0, 2209, 303, +1064, 2346, 0, +1719, 2481, 0, +2038, 2616, 0, +2273, 2750, 0, +2469, 2883, 0, +2643, 3016, 0, +2804, 3150, 0, +2957, 3282, 0, +3104, 3414, 0, +3247, 3547, 0, +3387, 3679, 0, +3525, 3812, 0, +3662, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1336, 2094, +0, 1351, 2093, +0, 1370, 2093, +0, 1394, 2092, +0, 1425, 2091, +0, 1463, 2089, +0, 1509, 2087, +0, 1565, 2085, +0, 1630, 2082, +0, 1704, 2077, +79, 1787, 2071, +1005, 1880, 2062, +1005, 1965, 2062, +1005, 2059, 2062, +1005, 2062, 1937, +1005, 2062, 1677, +217, 2203, 838, +1403, 2341, 0, +1824, 2478, 0, +2093, 2613, 0, +2306, 2748, 0, +2491, 2882, 0, +2658, 3015, 0, +2815, 3149, 0, +2965, 3281, 0, +3110, 3414, 0, +3251, 3547, 0, +3390, 3679, 0, +3528, 3812, 0, +3663, 3944, 0, +3798, 4076, 0, +3932, 4095, 0, +0, 814, 2094, +0, 859, 2093, +0, 913, 2093, +0, 977, 2092, +0, 1050, 2091, +0, 1133, 2089, +0, 1224, 2087, +0, 1322, 2085, +0, 1428, 2082, +0, 1539, 2077, +79, 1655, 2071, +1005, 1774, 2062, +1355, 1897, 2051, +1355, 2004, 2051, +1355, 2051, 1973, +1355, 2051, 1739, +1137, 2194, 1136, +1644, 2335, 345, +1935, 2473, 0, +2158, 2610, 0, +2348, 2746, 0, +2519, 2880, 0, +2678, 3014, 0, +2829, 3148, 0, +2975, 3280, 0, +3117, 3414, 0, +3257, 3546, 0, +3394, 3679, 0, +3530, 3811, 0, +3666, 3944, 0, +3800, 4076, 0, +3934, 4095, 0, +0, 0, 2094, +0, 0, 2093, +0, 0, 2093, +0, 0, 2092, +0, 0, 2091, +0, 0, 2089, +0, 0, 2087, +0, 10, 2085, +0, 800, 2082, +0, 1138, 2077, +79, 1379, 2071, +1005, 1579, 2062, +1355, 1756, 2051, +1601, 1919, 2035, +1601, 2035, 2017, +1601, 2035, 1811, +1585, 2183, 1487, +1843, 2326, 1269, +2051, 2467, 477, +2233, 2605, 0, +2398, 2742, 0, +2554, 2878, 0, +2703, 3012, 0, +2847, 3146, 0, +2988, 3280, 0, +3127, 3413, 0, +3264, 3546, 0, +3400, 3678, 0, +3534, 3811, 0, +3668, 3943, 0, +3802, 4076, 0, +3935, 4095, 0, +0, 0, 2094, +0, 0, 2093, +0, 0, 2093, +0, 0, 2092, +0, 0, 2091, +0, 0, 2089, +0, 0, 2087, +0, 0, 2085, +0, 0, 2082, +173, 0, 2077, +706, 79, 2071, +1005, 1006, 2062, +1355, 1453, 2051, +1601, 1730, 2035, +1803, 1946, 2013, +1803, 2013, 1891, +1862, 2167, 1733, +2020, 2315, 1619, +2171, 2459, 1401, +2316, 2599, 611, +2458, 2738, 0, +2597, 2874, 0, +2734, 3010, 0, +2870, 3144, 0, +3005, 3278, 0, +3140, 3412, 0, +3273, 3545, 0, +3407, 3678, 0, +3540, 3810, 0, +3672, 3943, 0, +3805, 4075, 0, +3937, 4095, 0, +1433, 0, 2094, +1438, 0, 2093, +1444, 0, 2093, +1452, 0, 2092, +1463, 0, 2091, +1476, 0, 2089, +1494, 0, 2087, +1517, 0, 2085, +1545, 0, 2082, +1581, 0, 2077, +1625, 79, 2071, +1677, 1005, 2062, +1739, 1355, 2051, +1811, 1601, 2035, +1891, 1803, 2013, +1981, 1981, 1981, +2078, 2145, 1935, +2183, 2299, 1865, +2293, 2447, 1751, +2408, 2591, 1533, +2527, 2731, 738, +2649, 2870, 0, +2773, 3006, 0, +2900, 3142, 0, +3027, 3276, 0, +3156, 3410, 0, +3285, 3544, 0, +3416, 3677, 0, +3547, 3810, 0, +3677, 3943, 0, +3809, 4075, 0, +3940, 4095, 0, +1946, 0, 2226, +1948, 0, 2226, +1950, 0, 2225, +1953, 0, 2225, +1956, 0, 2224, +1961, 0, 2223, +1967, 0, 2221, +1975, 0, 2220, +1986, 0, 2217, +2000, 0, 2214, +2018, 0, 2209, +2041, 217, 2203, +2069, 1136, 2194, +2105, 1487, 2183, +2149, 1733, 2167, +2145, 1935, 2078, +2145, 2023, 1935, +2299, 2281, 1865, +2401, 2447, 1751, +2493, 2591, 1533, +2594, 2731, 738, +2701, 2870, 0, +2813, 3006, 0, +2931, 3142, 0, +3050, 3276, 0, +3174, 3410, 0, +3299, 3544, 0, +3426, 3677, 0, +3554, 3810, 0, +3683, 3943, 0, +3813, 4075, 0, +3944, 4095, 0, +2239, 0, 2358, +2240, 0, 2358, +2241, 0, 2358, +2243, 0, 2357, +2245, 0, 2357, +2247, 0, 2356, +2251, 0, 2355, +2255, 0, 2353, +2261, 0, 2352, +2268, 0, 2349, +2278, 0, 2346, +2291, 0, 2341, +2308, 345, 2335, +2326, 1269, 2323, +2315, 1619, 2268, +2299, 1865, 2183, +2299, 1865, 1994, +2299, 2075, 1865, +2447, 2370, 1751, +2587, 2591, 1533, +2671, 2731, 738, +2763, 2870, 0, +2862, 3006, 0, +2969, 3142, 0, +3080, 3276, 0, +3196, 3410, 0, +3316, 3544, 0, +3439, 3677, 0, +3564, 3810, 0, +3691, 3943, 0, +3818, 4075, 0, +3948, 4095, 0, +2463, 0, 2491, +2464, 0, 2491, +2464, 0, 2490, +2465, 0, 2490, +2466, 0, 2489, +2468, 0, 2489, +2470, 0, 2488, +2473, 0, 2487, +2476, 0, 2486, +2481, 0, 2484, +2481, 0, 2475, +2478, 0, 2460, +2473, 0, 2438, +2467, 477, 2407, +2459, 1401, 2362, +2447, 1751, 2293, +2447, 1751, 2152, +2447, 1751, 1850, +2447, 2135, 1751, +2591, 2466, 1533, +2731, 2705, 738, +2834, 2870, 0, +2920, 3006, 0, +3015, 3142, 0, +3117, 3276, 0, +3225, 3410, 0, +3339, 3544, 0, +3456, 3677, 0, +3577, 3810, 0, +3701, 3943, 0, +3826, 4075, 0, +3953, 4095, 0, +2623, 0, 2590, +2623, 0, 2590, +2623, 0, 2589, +2622, 0, 2588, +2622, 0, 2586, +2621, 0, 2584, +2621, 0, 2581, +2620, 0, 2577, +2619, 0, 2572, +2618, 0, 2565, +2616, 0, 2555, +2613, 0, 2542, +2610, 0, 2524, +2605, 0, 2498, +2599, 611, 2462, +2591, 1533, 2408, +2591, 1533, 2303, +2591, 1533, 2108, +2591, 1533, 1533, +2591, 2206, 1533, +2731, 2570, 738, +2870, 2820, 0, +2988, 3006, 0, +3071, 3142, 0, +3162, 3276, 0, +3261, 3410, 0, +3367, 3544, 0, +3478, 3677, 0, +3594, 3810, 0, +3713, 3943, 0, +3836, 4075, 0, +3961, 4095, 0, +2755, 0, 2673, +2755, 0, 2673, +2755, 0, 2672, +2755, 0, 2671, +2755, 0, 2670, +2754, 0, 2668, +2754, 0, 2666, +2753, 0, 2662, +2752, 0, 2658, +2751, 0, 2652, +2750, 0, 2645, +2748, 0, 2634, +2746, 0, 2619, +2742, 0, 2598, +2738, 0, 2569, +2731, 738, 2527, +2731, 738, 2448, +2731, 738, 2315, +2731, 738, 2040, +2731, 1362, 738, +2731, 2285, 738, +2870, 2678, 0, +3006, 2939, 0, +3136, 3142, 0, +3216, 3276, 0, +3305, 3410, 0, +3402, 3544, 0, +3506, 3677, 0, +3616, 3810, 0, +3730, 3943, 0, +3849, 4075, 0, +3971, 4095, 0, +2887, 0, 2765, +2887, 0, 2764, +2887, 0, 2764, +2887, 0, 2763, +2887, 0, 2762, +2887, 0, 2761, +2886, 0, 2759, +2886, 0, 2756, +2885, 0, 2752, +2885, 0, 2748, +2883, 0, 2741, +2882, 0, 2733, +2880, 0, 2721, +2878, 0, 2704, +2874, 0, 2681, +2870, 0, 2649, +2870, 0, 2590, +2870, 0, 2497, +2870, 0, 2332, +2870, 0, 1932, +2870, 963, 0, +2870, 2374, 0, +3006, 2792, 0, +3142, 3061, 0, +3276, 3273, 0, +3358, 3410, 0, +3445, 3544, 0, +3540, 3677, 0, +3643, 3810, 0, +3752, 3943, 0, +3865, 4075, 0, +3983, 4095, 0, +3019, 0, 2864, +3019, 0, 2863, +3019, 0, 2863, +3019, 0, 2863, +3019, 0, 2862, +3019, 0, 2860, +3018, 0, 2859, +3018, 0, 2857, +3018, 0, 2854, +3017, 0, 2850, +3016, 0, 2845, +3015, 0, 2838, +3014, 0, 2829, +3012, 0, 2816, +3010, 0, 2798, +3006, 0, 2773, +3006, 0, 2729, +3006, 0, 2662, +3006, 0, 2554, +3006, 0, 2352, +3006, 0, 1723, +3006, 0, 0, +3006, 2470, 0, +3142, 2911, 0, +3276, 3185, 0, +3410, 3401, 0, +3497, 3544, 0, +3583, 3677, 0, +3677, 3810, 0, +3779, 3943, 0, +3887, 4075, 0, +4000, 4095, 0, +3152, 0, 2970, +3152, 0, 2970, +3152, 0, 2969, +3151, 0, 2969, +3151, 0, 2968, +3151, 0, 2967, +3151, 0, 2966, +3151, 0, 2964, +3151, 0, 2962, +3150, 0, 2959, +3150, 0, 2955, +3149, 0, 2950, +3148, 0, 2942, +3146, 0, 2932, +3144, 0, 2919, +3142, 0, 2900, +3142, 0, 2867, +3142, 0, 2818, +3142, 0, 2744, +3142, 0, 2622, +3142, 0, 2379, +3142, 0, 1068, +3142, 0, 0, +3142, 2573, 0, +3276, 3032, 0, +3410, 3311, 0, +3544, 3529, 0, +3634, 3677, 0, +3719, 3810, 0, +3813, 3943, 0, +3913, 4075, 0, +4021, 4095, 0, +3284, 0, 3081, +3283, 0, 3081, +3283, 0, 3081, +3283, 0, 3080, +3283, 0, 3080, +3283, 0, 3079, +3283, 0, 3078, +3283, 0, 3077, +3283, 0, 3075, +3282, 0, 3073, +3282, 0, 3070, +3281, 0, 3065, +3280, 0, 3060, +3280, 0, 3052, +3278, 0, 3041, +3276, 0, 3027, +3276, 0, 3002, +3276, 0, 2967, +3276, 0, 2915, +3276, 0, 2834, +3276, 0, 2698, +3276, 0, 2411, +3276, 0, 0, +3276, 0, 0, +3276, 2683, 0, +3410, 3156, 0, +3544, 3440, 0, +3677, 3659, 0, +3770, 3810, 0, +3854, 3943, 0, +3947, 4075, 0, +4048, 4095, 0, +3416, 0, 3197, +3416, 0, 3197, +3416, 0, 3197, +3416, 0, 3196, +3416, 0, 3196, +3416, 0, 3196, +3415, 0, 3195, +3415, 0, 3194, +3415, 0, 3192, +3415, 0, 3191, +3414, 0, 3188, +3414, 0, 3185, +3414, 0, 3181, +3413, 0, 3175, +3412, 0, 3167, +3410, 0, 3156, +3410, 0, 3137, +3410, 0, 3111, +3410, 0, 3074, +3410, 0, 3019, +3410, 0, 2933, +3410, 0, 2784, +3410, 0, 2453, +3410, 0, 0, +3410, 0, 0, +3410, 2797, 0, +3544, 3282, 0, +3677, 3568, 0, +3810, 3789, 0, +3905, 3943, 0, +3989, 4075, 0, +4082, 4095, 0, +3548, 0, 3317, +3548, 0, 3317, +3548, 0, 3317, +3548, 0, 3316, +3548, 0, 3316, +3548, 0, 3316, +3548, 0, 3315, +3548, 0, 3314, +3548, 0, 3313, +3547, 0, 3312, +3547, 0, 3310, +3547, 0, 3307, +3546, 0, 3304, +3546, 0, 3300, +3545, 0, 3294, +3544, 0, 3285, +3544, 0, 3272, +3544, 0, 3253, +3544, 0, 3225, +3544, 0, 3186, +3544, 0, 3129, +3544, 0, 3038, +3544, 0, 2879, +3544, 0, 2502, +3544, 0, 0, +3544, 0, 0, +3544, 2916, 0, +3677, 3410, 0, +3810, 3698, 0, +3943, 3920, 0, +4039, 4075, 0, +4095, 4095, 0, +3680, 0, 3440, +3680, 0, 3439, +3680, 0, 3439, +3680, 0, 3439, +3680, 0, 3439, +3680, 0, 3438, +3680, 0, 3438, +3680, 0, 3437, +3680, 0, 3437, +3680, 0, 3436, +3679, 0, 3434, +3679, 0, 3432, +3679, 0, 3430, +3678, 0, 3426, +3678, 0, 3422, +3677, 0, 3416, +3677, 0, 3405, +3677, 0, 3391, +3677, 0, 3371, +3677, 0, 3344, +3677, 0, 3303, +3677, 0, 3243, +3677, 0, 3149, +3677, 0, 2980, +3677, 0, 2562, +3677, 0, 0, +3677, 0, 0, +3677, 3037, 0, +3810, 3538, 0, +3943, 3828, 0, +4075, 4050, 0, +4095, 4095, 0, +3812, 0, 3564, +3812, 0, 3564, +3812, 0, 3564, +3812, 0, 3564, +3812, 0, 3564, +3812, 0, 3564, +3812, 0, 3563, +3812, 0, 3563, +3812, 0, 3562, +3812, 0, 3562, +3812, 0, 3561, +3812, 0, 3559, +3811, 0, 3557, +3811, 0, 3554, +3810, 0, 3551, +3810, 0, 3547, +3810, 0, 3539, +3810, 0, 3528, +3810, 0, 3514, +3810, 0, 3493, +3810, 0, 3465, +3810, 0, 3424, +3810, 0, 3362, +3810, 0, 3264, +3810, 0, 3088, +3810, 0, 2631, +3810, 0, 0, +3810, 0, 0, +3810, 3161, 0, +3943, 3667, 0, +4075, 3959, 0, +4095, 4095, 0, +3944, 0, 3691, +3944, 0, 3691, +3944, 0, 3691, +3944, 0, 3691, +3944, 0, 3691, +3944, 0, 3690, +3944, 0, 3690, +3944, 0, 3690, +3944, 0, 3689, +3944, 0, 3689, +3944, 0, 3688, +3944, 0, 3687, +3944, 0, 3685, +3943, 0, 3683, +3943, 0, 3681, +3943, 0, 3677, +3943, 0, 3672, +3943, 0, 3664, +3943, 0, 3653, +3943, 0, 3638, +3943, 0, 3618, +3943, 0, 3589, +3943, 0, 3547, +3943, 0, 3484, +3943, 0, 3384, +3943, 0, 3201, +3943, 0, 2708, +3943, 0, 0, +3943, 0, 0, +3943, 3287, 0, +4075, 3797, 0, +4095, 4090, 0, +4076, 0, 3819, +4076, 0, 3819, +4076, 0, 3819, +4076, 0, 3818, +4076, 0, 3818, +4076, 0, 3818, +4076, 0, 3818, +4076, 0, 3818, +4076, 0, 3818, +4076, 0, 3817, +4076, 0, 3816, +4076, 0, 3816, +4076, 0, 3814, +4076, 0, 3813, +4075, 0, 3811, +4075, 0, 3809, +4075, 0, 3804, +4075, 0, 3798, +4075, 0, 3790, +4075, 0, 3780, +4075, 0, 3765, +4075, 0, 3744, +4075, 0, 3714, +4075, 0, 3672, +4075, 0, 3608, +4075, 0, 3505, +4075, 0, 3318, +4075, 0, 2793, +4075, 0, 0, +4075, 0, 0, +4075, 3415, 0, +4095, 3929, 0, +4095, 0, 3948, +4095, 0, 3948, +4095, 0, 3948, +4095, 0, 3948, +4095, 0, 3948, +4095, 0, 3948, +4095, 0, 3947, +4095, 0, 3947, +4095, 0, 3947, +4095, 0, 3947, +4095, 0, 3946, +4095, 0, 3946, +4095, 0, 3945, +4095, 0, 3944, +4095, 0, 3942, +4095, 0, 3940, +4095, 0, 3937, +4095, 0, 3933, +4095, 0, 3927, +4095, 0, 3919, +4095, 0, 3908, +4095, 0, 3893, +4095, 0, 3872, +4095, 0, 3842, +4095, 0, 3799, +4095, 0, 3735, +4095, 0, 3630, +4095, 0, 3439, +4095, 0, 2890, +4095, 0, 0, +4095, 0, 0, +4095, 3544, 0, +0, 1959, 2226, +0, 1962, 2226, +0, 1966, 2226, +0, 1972, 2226, +0, 1979, 2226, +0, 1989, 2226, +0, 2002, 2226, +0, 2018, 2226, +0, 2039, 2226, +0, 2066, 2226, +0, 2100, 2226, +0, 2141, 2226, +0, 2191, 2226, +0, 2226, 2200, +0, 2226, 2108, +0, 2226, 1946, +0, 2226, 1562, +0, 2358, 0, +0, 2491, 0, +1232, 2623, 0, +1962, 2755, 0, +2292, 2887, 0, +2530, 3019, 0, +2729, 3152, 0, +2904, 3284, 0, +3067, 3416, 0, +3220, 3548, 0, +3367, 3680, 0, +3511, 3812, 0, +3651, 3944, 0, +3789, 4076, 0, +3926, 4095, 0, +0, 1956, 2226, +0, 1959, 2226, +0, 1963, 2226, +0, 1969, 2226, +0, 1977, 2226, +0, 1987, 2226, +0, 1999, 2226, +0, 2016, 2226, +0, 2037, 2226, +0, 2064, 2226, +0, 2098, 2226, +0, 2140, 2226, +0, 2190, 2226, +0, 2226, 2201, +0, 2226, 2109, +0, 2226, 1948, +0, 2226, 1565, +0, 2358, 0, +0, 2491, 0, +1251, 2623, 0, +1966, 2755, 0, +2294, 2887, 0, +2531, 3019, 0, +2729, 3152, 0, +2905, 3283, 0, +3067, 3416, 0, +3220, 3548, 0, +3368, 3680, 0, +3511, 3812, 0, +3651, 3944, 0, +3789, 4076, 0, +3926, 4095, 0, +0, 1951, 2226, +0, 1955, 2226, +0, 1960, 2225, +0, 1966, 2225, +0, 1973, 2225, +0, 1983, 2225, +0, 1996, 2225, +0, 2013, 2225, +0, 2034, 2225, +0, 2061, 2225, +0, 2095, 2225, +0, 2137, 2225, +0, 2188, 2225, +0, 2225, 2202, +0, 2225, 2111, +0, 2225, 1950, +0, 2225, 1570, +0, 2358, 0, +0, 2490, 0, +1275, 2623, 0, +1971, 2755, 0, +2296, 2887, 0, +2533, 3019, 0, +2730, 3152, 0, +2905, 3283, 0, +3067, 3416, 0, +3221, 3548, 0, +3368, 3680, 0, +3511, 3812, 0, +3651, 3944, 0, +3789, 4076, 0, +3926, 4095, 0, +0, 1945, 2226, +0, 1949, 2226, +0, 1954, 2225, +0, 1961, 2225, +0, 1969, 2225, +0, 1979, 2225, +0, 1992, 2225, +0, 2009, 2225, +0, 2030, 2225, +0, 2058, 2225, +0, 2092, 2225, +0, 2134, 2225, +0, 2185, 2225, +0, 2225, 2203, +0, 2225, 2112, +0, 2225, 1953, +0, 2225, 1576, +0, 2357, 0, +0, 2490, 0, +1304, 2622, 0, +1977, 2755, 0, +2299, 2887, 0, +2535, 3019, 0, +2732, 3151, 0, +2906, 3283, 0, +3068, 3416, 0, +3221, 3548, 0, +3368, 3680, 0, +3511, 3812, 0, +3651, 3944, 0, +3789, 4076, 0, +3926, 4095, 0, +0, 1937, 2226, +0, 1941, 2226, +0, 1946, 2225, +0, 1953, 2225, +0, 1963, 2224, +0, 1973, 2224, +0, 1986, 2224, +0, 2003, 2224, +0, 2025, 2224, +0, 2053, 2224, +0, 2087, 2224, +0, 2130, 2224, +0, 2181, 2224, +0, 2224, 2206, +0, 2224, 2115, +0, 2224, 1956, +0, 2224, 1584, +0, 2357, 0, +0, 2489, 0, +1342, 2622, 0, +1986, 2755, 0, +2304, 2887, 0, +2537, 3019, 0, +2733, 3151, 0, +2907, 3283, 0, +3069, 3416, 0, +3222, 3548, 0, +3369, 3680, 0, +3511, 3812, 0, +3652, 3944, 0, +3790, 4076, 0, +3926, 4095, 0, +0, 1926, 2226, +0, 1930, 2226, +0, 1936, 2225, +0, 1943, 2225, +0, 1952, 2224, +0, 1965, 2223, +0, 1978, 2223, +0, 1995, 2223, +0, 2018, 2223, +0, 2046, 2223, +0, 2081, 2223, +0, 2124, 2223, +0, 2176, 2223, +0, 2223, 2208, +0, 2223, 2118, +0, 2223, 1961, +0, 2223, 1595, +0, 2356, 0, +0, 2489, 0, +1387, 2621, 0, +1997, 2754, 0, +2310, 2887, 0, +2541, 3019, 0, +2735, 3151, 0, +2909, 3283, 0, +3070, 3416, 0, +3222, 3548, 0, +3369, 3680, 0, +3512, 3812, 0, +3652, 3944, 0, +3790, 4076, 0, +3926, 4095, 0, +0, 1911, 2226, +0, 1915, 2226, +0, 1921, 2225, +0, 1928, 2225, +0, 1938, 2224, +0, 1951, 2223, +0, 1967, 2221, +0, 1985, 2221, +0, 2008, 2221, +0, 2036, 2221, +0, 2072, 2221, +0, 2116, 2221, +0, 2169, 2221, +0, 2221, 2212, +0, 2221, 2123, +0, 2221, 1967, +0, 2221, 1608, +0, 2355, 0, +0, 2488, 0, +1441, 2621, 0, +2012, 2754, 0, +2317, 2886, 0, +2545, 3018, 0, +2738, 3151, 0, +2911, 3283, 0, +3071, 3415, 0, +3223, 3548, 0, +3370, 3680, 0, +3513, 3812, 0, +3652, 3944, 0, +3790, 4076, 0, +3927, 4095, 0, +0, 1890, 2226, +0, 1894, 2226, +0, 1900, 2225, +0, 1908, 2225, +0, 1918, 2224, +0, 1931, 2223, +0, 1948, 2221, +0, 1970, 2220, +0, 1994, 2220, +0, 2023, 2220, +0, 2060, 2220, +0, 2105, 2220, +0, 2159, 2220, +0, 2220, 2217, +0, 2220, 2128, +0, 2220, 1975, +0, 2220, 1626, +0, 2353, 0, +0, 2487, 0, +1505, 2620, 0, +2031, 2753, 0, +2327, 2886, 0, +2551, 3018, 0, +2742, 3151, 0, +2914, 3283, 0, +3073, 3415, 0, +3225, 3548, 0, +3371, 3680, 0, +3513, 3812, 0, +3653, 3944, 0, +3790, 4076, 0, +3927, 4095, 0, +0, 1860, 2226, +0, 1865, 2226, +0, 1871, 2225, +0, 1880, 2225, +0, 1891, 2224, +0, 1904, 2223, +0, 1922, 2221, +0, 1946, 2220, +0, 1975, 2217, +0, 2006, 2217, +0, 2044, 2217, +0, 2090, 2217, +0, 2146, 2217, +0, 2211, 2217, +0, 2217, 2136, +0, 2217, 1986, +0, 2217, 1649, +0, 2352, 0, +0, 2486, 0, +1578, 2619, 0, +2056, 2752, 0, +2340, 2885, 0, +2559, 3018, 0, +2747, 3151, 0, +2917, 3283, 0, +3076, 3415, 0, +3226, 3548, 0, +3372, 3680, 0, +3514, 3812, 0, +3653, 3944, 0, +3791, 4076, 0, +3927, 4095, 0, +0, 1817, 2226, +0, 1823, 2226, +0, 1829, 2225, +0, 1839, 2225, +0, 1850, 2224, +0, 1865, 2223, +0, 1885, 2221, +0, 1910, 2220, +0, 1942, 2217, +0, 1981, 2214, +0, 2021, 2214, +0, 2070, 2214, +0, 2128, 2214, +0, 2195, 2214, +0, 2214, 2146, +0, 2214, 2000, +0, 2214, 1677, +0, 2349, 0, +0, 2484, 0, +1661, 2618, 0, +2086, 2751, 0, +2356, 2885, 0, +2570, 3017, 0, +2754, 3150, 0, +2922, 3282, 0, +3079, 3415, 0, +3229, 3547, 0, +3374, 3680, 0, +3515, 3812, 0, +3654, 3944, 0, +3791, 4076, 0, +3927, 4095, 0, +0, 1753, 2226, +0, 1759, 2226, +0, 1767, 2225, +0, 1777, 2225, +0, 1790, 2224, +0, 1808, 2223, +0, 1830, 2221, +0, 1858, 2220, +0, 1894, 2217, +0, 1936, 2214, +0, 1988, 2209, +0, 2041, 2209, +0, 2102, 2209, +0, 2174, 2209, +0, 2209, 2159, +0, 2209, 2018, +0, 2209, 1713, +0, 2346, 0, +415, 2481, 0, +1752, 2616, 0, +2124, 2750, 0, +2378, 2883, 0, +2583, 3016, 0, +2763, 3150, 0, +2928, 3282, 0, +3083, 3414, 0, +3232, 3547, 0, +3376, 3679, 0, +3517, 3812, 0, +3656, 3944, 0, +3793, 4076, 0, +3928, 4095, 0, +0, 1648, 2226, +0, 1656, 2226, +0, 1666, 2225, +0, 1679, 2225, +0, 1695, 2224, +0, 1717, 2223, +0, 1744, 2221, +0, 1778, 2220, +0, 1819, 2217, +0, 1870, 2214, +0, 1929, 2209, +217, 1998, 2203, +217, 2066, 2203, +217, 2142, 2203, +217, 2203, 2176, +217, 2203, 2041, +217, 2203, 1757, +0, 2341, 437, +1199, 2478, 0, +1851, 2613, 0, +2170, 2748, 0, +2405, 2882, 0, +2600, 3015, 0, +2775, 3149, 0, +2936, 3281, 0, +3089, 3414, 0, +3236, 3547, 0, +3379, 3679, 0, +3520, 3812, 0, +3657, 3944, 0, +3794, 4076, 0, +3929, 4095, 0, +0, 1457, 2226, +0, 1469, 2226, +0, 1484, 2225, +0, 1503, 2225, +0, 1527, 2224, +0, 1557, 2223, +0, 1596, 2221, +0, 1642, 2220, +0, 1697, 2217, +0, 1762, 2214, +0, 1836, 2209, +217, 1920, 2203, +1136, 2012, 2194, +1136, 2097, 2194, +1136, 2191, 2194, +1136, 2194, 2069, +1136, 2194, 1809, +345, 2335, 970, +1535, 2473, 0, +1956, 2610, 0, +2226, 2746, 0, +2439, 2880, 0, +2623, 3014, 0, +2790, 3148, 0, +2947, 3280, 0, +3097, 3414, 0, +3242, 3546, 0, +3384, 3679, 0, +3522, 3811, 0, +3659, 3944, 0, +3795, 4076, 0, +3930, 4095, 0, +0, 907, 2226, +0, 944, 2226, +0, 990, 2225, +0, 1044, 2225, +0, 1108, 2224, +0, 1181, 2223, +0, 1264, 2221, +0, 1355, 2220, +0, 1454, 2217, +0, 1560, 2214, +0, 1671, 2209, +217, 1787, 2203, +1136, 1906, 2194, +1487, 2029, 2183, +1487, 2136, 2183, +1487, 2183, 2105, +1487, 2183, 1871, +1270, 2326, 1269, +1776, 2467, 477, +2067, 2605, 0, +2291, 2742, 0, +2480, 2878, 0, +2651, 3012, 0, +2810, 3146, 0, +2961, 3280, 0, +3107, 3413, 0, +3249, 3546, 0, +3389, 3678, 0, +3526, 3811, 0, +3662, 3943, 0, +3798, 4076, 0, +3932, 4095, 0, +0, 0, 2226, +0, 0, 2226, +0, 0, 2225, +0, 0, 2225, +0, 0, 2224, +0, 0, 2223, +0, 0, 2221, +0, 0, 2220, +0, 140, 2217, +0, 932, 2214, +0, 1270, 2209, +217, 1512, 2203, +1136, 1711, 2194, +1487, 1888, 2183, +1733, 2051, 2167, +1733, 2167, 2149, +1733, 2167, 1943, +1718, 2315, 1619, +1976, 2459, 1401, +2183, 2599, 611, +2365, 2738, 0, +2530, 2874, 0, +2686, 3010, 0, +2835, 3144, 0, +2979, 3278, 0, +3120, 3412, 0, +3259, 3545, 0, +3396, 3678, 0, +3532, 3810, 0, +3666, 3943, 0, +3801, 4075, 0, +3934, 4095, 0, +0, 0, 2226, +0, 0, 2226, +0, 0, 2225, +0, 0, 2225, +0, 0, 2224, +0, 0, 2223, +0, 0, 2221, +0, 0, 2220, +0, 0, 2217, +0, 0, 2214, +303, 0, 2209, +838, 217, 2203, +1136, 1137, 2194, +1487, 1585, 2183, +1733, 1862, 2167, +1935, 2078, 2145, +1935, 2145, 2023, +1994, 2299, 1865, +2152, 2447, 1751, +2303, 2591, 1533, +2448, 2731, 738, +2590, 2870, 0, +2729, 3006, 0, +2867, 3142, 0, +3002, 3276, 0, +3137, 3410, 0, +3272, 3544, 0, +3405, 3677, 0, +3539, 3810, 0, +3672, 3943, 0, +3804, 4075, 0, +3937, 4095, 0, +1562, 0, 2226, +1565, 0, 2226, +1570, 0, 2225, +1576, 0, 2225, +1584, 0, 2224, +1595, 0, 2223, +1608, 0, 2221, +1626, 0, 2220, +1649, 0, 2217, +1677, 0, 2214, +1713, 0, 2209, +1757, 217, 2203, +1809, 1136, 2194, +1871, 1487, 2183, +1943, 1733, 2167, +2023, 1935, 2145, +2113, 2113, 2113, +2210, 2277, 2067, +2315, 2431, 1997, +2425, 2579, 1883, +2540, 2723, 1664, +2659, 2863, 870, +2781, 3002, 0, +2906, 3138, 0, +3031, 3274, 0, +3159, 3408, 0, +3288, 3543, 0, +3418, 3676, 0, +3548, 3809, 0, +3679, 3942, 0, +3810, 4075, 0, +3941, 4095, 0, +2078, 0, 2358, +2079, 0, 2358, +2080, 0, 2358, +2082, 0, 2357, +2085, 0, 2357, +2088, 0, 2356, +2093, 0, 2355, +2099, 0, 2353, +2107, 0, 2352, +2118, 0, 2349, +2132, 0, 2346, +2150, 0, 2341, +2173, 345, 2335, +2202, 1269, 2326, +2237, 1619, 2315, +2281, 1865, 2299, +2277, 2067, 2210, +2277, 2155, 2067, +2431, 2414, 1997, +2533, 2579, 1883, +2626, 2723, 1664, +2726, 2863, 870, +2833, 3002, 0, +2946, 3138, 0, +3062, 3274, 0, +3183, 3408, 0, +3306, 3543, 0, +3431, 3676, 0, +3558, 3809, 0, +3686, 3942, 0, +3815, 4075, 0, +3945, 4095, 0, +2371, 0, 2491, +2372, 0, 2491, +2373, 0, 2490, +2374, 0, 2490, +2375, 0, 2489, +2377, 0, 2489, +2379, 0, 2488, +2383, 0, 2487, +2387, 0, 2486, +2393, 0, 2484, +2401, 0, 2481, +2411, 0, 2478, +2423, 0, 2473, +2440, 477, 2467, +2459, 1401, 2455, +2447, 1751, 2401, +2431, 1997, 2315, +2431, 1997, 2126, +2431, 2207, 1997, +2579, 2502, 1883, +2719, 2723, 1664, +2803, 2863, 870, +2895, 3002, 0, +2995, 3138, 0, +3100, 3274, 0, +3212, 3408, 0, +3329, 3543, 0, +3448, 3676, 0, +3571, 3809, 0, +3696, 3942, 0, +3823, 4075, 0, +3951, 4095, 0, +2595, 0, 2623, +2595, 0, 2623, +2596, 0, 2623, +2596, 0, 2622, +2597, 0, 2622, +2598, 0, 2621, +2600, 0, 2621, +2602, 0, 2620, +2604, 0, 2619, +2608, 0, 2618, +2613, 0, 2616, +2613, 0, 2607, +2610, 0, 2592, +2605, 0, 2570, +2599, 611, 2538, +2591, 1533, 2493, +2579, 1883, 2425, +2579, 1883, 2284, +2579, 1883, 1981, +2579, 2267, 1883, +2723, 2598, 1664, +2863, 2837, 870, +2966, 3002, 0, +3053, 3138, 0, +3147, 3274, 0, +3249, 3408, 0, +3357, 3543, 0, +3471, 3676, 0, +3588, 3809, 0, +3709, 3942, 0, +3833, 4075, 0, +3959, 4095, 0, +2755, 0, 2723, +2755, 0, 2723, +2755, 0, 2722, +2755, 0, 2721, +2755, 0, 2720, +2754, 0, 2718, +2754, 0, 2716, +2753, 0, 2713, +2752, 0, 2710, +2751, 0, 2704, +2750, 0, 2697, +2748, 0, 2687, +2746, 0, 2674, +2742, 0, 2656, +2738, 0, 2631, +2731, 738, 2594, +2723, 1664, 2540, +2723, 1664, 2435, +2723, 1664, 2240, +2723, 1664, 1667, +2723, 2338, 1664, +2863, 2701, 870, +3002, 2952, 0, +3120, 3138, 0, +3203, 3274, 0, +3294, 3408, 0, +3393, 3543, 0, +3499, 3676, 0, +3610, 3809, 0, +3726, 3942, 0, +3846, 4075, 0, +3968, 4095, 0, +2887, 0, 2806, +2887, 0, 2805, +2887, 0, 2805, +2887, 0, 2804, +2887, 0, 2803, +2887, 0, 2802, +2886, 0, 2800, +2886, 0, 2798, +2885, 0, 2795, +2885, 0, 2790, +2883, 0, 2784, +2882, 0, 2777, +2880, 0, 2766, +2878, 0, 2751, +2874, 0, 2730, +2870, 0, 2701, +2863, 870, 2659, +2863, 870, 2580, +2863, 870, 2447, +2863, 870, 2173, +2863, 1498, 870, +2863, 2417, 870, +3002, 2810, 0, +3138, 3071, 0, +3268, 3274, 0, +3348, 3408, 0, +3437, 3543, 0, +3534, 3676, 0, +3638, 3809, 0, +3748, 3942, 0, +3862, 4075, 0, +3981, 4095, 0, +3019, 0, 2897, +3019, 0, 2897, +3019, 0, 2896, +3019, 0, 2896, +3019, 0, 2895, +3019, 0, 2894, +3018, 0, 2892, +3018, 0, 2890, +3018, 0, 2888, +3017, 0, 2885, +3016, 0, 2880, +3015, 0, 2873, +3014, 0, 2865, +3012, 0, 2853, +3010, 0, 2836, +3006, 0, 2813, +3002, 0, 2781, +3002, 0, 2722, +3002, 0, 2628, +3002, 0, 2463, +3002, 0, 2062, +3002, 1109, 0, +3002, 2505, 0, +3138, 2925, 0, +3274, 3193, 0, +3408, 3406, 0, +3490, 3543, 0, +3577, 3676, 0, +3672, 3809, 0, +3775, 3942, 0, +3884, 4075, 0, +3998, 4095, 0, +3152, 0, 2996, +3152, 0, 2996, +3152, 0, 2996, +3151, 0, 2995, +3151, 0, 2995, +3151, 0, 2994, +3151, 0, 2993, +3151, 0, 2991, +3151, 0, 2989, +3150, 0, 2986, +3150, 0, 2982, +3149, 0, 2977, +3148, 0, 2970, +3146, 0, 2961, +3144, 0, 2948, +3142, 0, 2931, +3138, 0, 2906, +3138, 0, 2861, +3138, 0, 2795, +3138, 0, 2687, +3138, 0, 2484, +3138, 0, 1857, +3138, 0, 0, +3138, 2602, 0, +3274, 3042, 0, +3408, 3317, 0, +3543, 3533, 0, +3629, 3676, 0, +3715, 3809, 0, +3809, 3942, 0, +3911, 4075, 0, +4019, 4095, 0, +3284, 0, 3102, +3283, 0, 3102, +3283, 0, 3101, +3283, 0, 3101, +3283, 0, 3101, +3283, 0, 3100, +3283, 0, 3099, +3283, 0, 3098, +3283, 0, 3096, +3282, 0, 3094, +3282, 0, 3091, +3281, 0, 3087, +3280, 0, 3082, +3280, 0, 3074, +3278, 0, 3064, +3276, 0, 3050, +3274, 0, 3031, +3274, 0, 2998, +3274, 0, 2950, +3274, 0, 2876, +3274, 0, 2753, +3274, 0, 2510, +3274, 0, 1202, +3274, 0, 0, +3274, 2706, 0, +3408, 3164, 0, +3543, 3444, 0, +3676, 3662, 0, +3766, 3809, 0, +3851, 3942, 0, +3945, 4075, 0, +4046, 4095, 0, +3416, 0, 3213, +3416, 0, 3213, +3416, 0, 3213, +3416, 0, 3213, +3416, 0, 3212, +3416, 0, 3212, +3415, 0, 3211, +3415, 0, 3210, +3415, 0, 3209, +3415, 0, 3207, +3414, 0, 3205, +3414, 0, 3202, +3414, 0, 3198, +3413, 0, 3192, +3412, 0, 3184, +3410, 0, 3174, +3408, 0, 3159, +3408, 0, 3134, +3408, 0, 3099, +3408, 0, 3047, +3408, 0, 2966, +3408, 0, 2830, +3408, 0, 2545, +3408, 0, 0, +3408, 0, 0, +3408, 2815, 0, +3543, 3288, 0, +3676, 3572, 0, +3809, 3791, 0, +3902, 3942, 0, +3986, 4075, 0, +4080, 4095, 0, +3548, 0, 3329, +3548, 0, 3329, +3548, 0, 3329, +3548, 0, 3329, +3548, 0, 3329, +3548, 0, 3328, +3548, 0, 3328, +3548, 0, 3327, +3548, 0, 3326, +3547, 0, 3325, +3547, 0, 3323, +3547, 0, 3320, +3546, 0, 3317, +3546, 0, 3313, +3545, 0, 3307, +3544, 0, 3299, +3543, 0, 3288, +3543, 0, 3270, +3543, 0, 3243, +3543, 0, 3206, +3543, 0, 3151, +3543, 0, 3065, +3543, 0, 2917, +3543, 0, 2585, +3543, 0, 0, +3543, 0, 0, +3543, 2929, 0, +3676, 3414, 0, +3809, 3700, 0, +3942, 3921, 0, +4037, 4075, 0, +4095, 4095, 0, +3680, 0, 3449, +3680, 0, 3449, +3680, 0, 3449, +3680, 0, 3449, +3680, 0, 3448, +3680, 0, 3448, +3680, 0, 3448, +3680, 0, 3447, +3680, 0, 3446, +3680, 0, 3445, +3679, 0, 3444, +3679, 0, 3442, +3679, 0, 3440, +3678, 0, 3436, +3678, 0, 3432, +3677, 0, 3426, +3676, 0, 3418, +3676, 0, 3404, +3676, 0, 3385, +3676, 0, 3358, +3676, 0, 3319, +3676, 0, 3261, +3676, 0, 3170, +3676, 0, 3010, +3676, 0, 2636, +3676, 0, 0, +3676, 0, 0, +3676, 3048, 0, +3809, 3542, 0, +3942, 3830, 0, +4075, 4051, 0, +4095, 4095, 0, +3812, 0, 3572, +3812, 0, 3572, +3812, 0, 3572, +3812, 0, 3571, +3812, 0, 3571, +3812, 0, 3571, +3812, 0, 3571, +3812, 0, 3570, +3812, 0, 3570, +3812, 0, 3569, +3812, 0, 3568, +3812, 0, 3566, +3811, 0, 3564, +3811, 0, 3562, +3810, 0, 3559, +3810, 0, 3554, +3809, 0, 3548, +3809, 0, 3537, +3809, 0, 3523, +3809, 0, 3503, +3809, 0, 3475, +3809, 0, 3435, +3809, 0, 3376, +3809, 0, 3281, +3809, 0, 3112, +3809, 0, 2694, +3809, 0, 0, +3809, 0, 0, +3809, 3169, 0, +3942, 3670, 0, +4075, 3960, 0, +4095, 4095, 0, +3944, 0, 3696, +3944, 0, 3696, +3944, 0, 3696, +3944, 0, 3696, +3944, 0, 3696, +3944, 0, 3696, +3944, 0, 3696, +3944, 0, 3695, +3944, 0, 3695, +3944, 0, 3694, +3944, 0, 3694, +3944, 0, 3692, +3944, 0, 3691, +3943, 0, 3689, +3943, 0, 3687, +3943, 0, 3683, +3942, 0, 3679, +3942, 0, 3671, +3942, 0, 3660, +3942, 0, 3646, +3942, 0, 3626, +3942, 0, 3597, +3942, 0, 3556, +3942, 0, 3494, +3942, 0, 3396, +3942, 0, 3220, +3942, 0, 2762, +3942, 0, 0, +3942, 0, 0, +3942, 3293, 0, +4075, 3799, 0, +4095, 4091, 0, +4076, 0, 3823, +4076, 0, 3823, +4076, 0, 3823, +4076, 0, 3823, +4076, 0, 3823, +4076, 0, 3822, +4076, 0, 3822, +4076, 0, 3822, +4076, 0, 3822, +4076, 0, 3821, +4076, 0, 3821, +4076, 0, 3820, +4076, 0, 3819, +4076, 0, 3817, +4075, 0, 3816, +4075, 0, 3813, +4075, 0, 3810, +4075, 0, 3803, +4075, 0, 3796, +4075, 0, 3785, +4075, 0, 3770, +4075, 0, 3750, +4075, 0, 3721, +4075, 0, 3679, +4075, 0, 3616, +4075, 0, 3515, +4075, 0, 3333, +4075, 0, 2839, +4075, 0, 0, +4075, 0, 0, +4075, 3419, 0, +4095, 3930, 0, +4095, 0, 3951, +4095, 0, 3951, +4095, 0, 3951, +4095, 0, 3951, +4095, 0, 3951, +4095, 0, 3951, +4095, 0, 3951, +4095, 0, 3950, +4095, 0, 3950, +4095, 0, 3950, +4095, 0, 3950, +4095, 0, 3949, +4095, 0, 3948, +4095, 0, 3947, +4095, 0, 3945, +4095, 0, 3944, +4095, 0, 3941, +4095, 0, 3937, +4095, 0, 3931, +4095, 0, 3923, +4095, 0, 3912, +4095, 0, 3897, +4095, 0, 3876, +4095, 0, 3847, +4095, 0, 3804, +4095, 0, 3741, +4095, 0, 3638, +4095, 0, 3450, +4095, 0, 2927, +4095, 0, 0, +4095, 0, 0, +4095, 3547, 0, +0, 2090, 2358, +0, 2093, 2358, +0, 2096, 2358, +0, 2100, 2358, +0, 2106, 2358, +0, 2113, 2358, +0, 2123, 2358, +0, 2136, 2358, +0, 2152, 2358, +0, 2173, 2358, +0, 2200, 2358, +0, 2233, 2358, +0, 2275, 2358, +0, 2325, 2358, +0, 2358, 2332, +0, 2358, 2239, +0, 2358, 2078, +0, 2358, 1692, +0, 2491, 0, +0, 2623, 0, +1353, 2755, 0, +2091, 2887, 0, +2422, 3019, 0, +2662, 3152, 0, +2860, 3284, 0, +3036, 3416, 0, +3198, 3548, 0, +3352, 3680, 0, +3499, 3812, 0, +3643, 3944, 0, +3783, 4076, 0, +3921, 4095, 0, +0, 2088, 2358, +0, 2091, 2358, +0, 2094, 2358, +0, 2098, 2358, +0, 2104, 2358, +0, 2111, 2358, +0, 2121, 2358, +0, 2134, 2358, +0, 2150, 2358, +0, 2171, 2358, +0, 2199, 2358, +0, 2232, 2358, +0, 2273, 2358, +0, 2324, 2358, +0, 2358, 2332, +0, 2358, 2240, +0, 2358, 2079, +0, 2358, 1694, +0, 2491, 0, +0, 2623, 0, +1367, 2755, 0, +2094, 2887, 0, +2424, 3019, 0, +2663, 3152, 0, +2860, 3283, 0, +3036, 3416, 0, +3199, 3548, 0, +3352, 3680, 0, +3499, 3812, 0, +3643, 3944, 0, +3783, 4076, 0, +3921, 4095, 0, +0, 2085, 2358, +0, 2087, 2358, +0, 2091, 2358, +0, 2096, 2358, +0, 2101, 2358, +0, 2109, 2358, +0, 2119, 2358, +0, 2132, 2358, +0, 2148, 2358, +0, 2169, 2358, +0, 2196, 2358, +0, 2230, 2358, +0, 2271, 2358, +0, 2322, 2358, +0, 2358, 2333, +0, 2358, 2241, +0, 2358, 2080, +0, 2358, 1698, +0, 2490, 0, +0, 2623, 0, +1386, 2755, 0, +2098, 2887, 0, +2426, 3019, 0, +2664, 3152, 0, +2861, 3283, 0, +3037, 3416, 0, +3199, 3548, 0, +3353, 3680, 0, +3500, 3812, 0, +3643, 3944, 0, +3783, 4076, 0, +3921, 4095, 0, +0, 2080, 2358, +0, 2083, 2358, +0, 2087, 2358, +0, 2092, 2357, +0, 2098, 2357, +0, 2105, 2357, +0, 2115, 2357, +0, 2128, 2357, +0, 2145, 2357, +0, 2166, 2357, +0, 2193, 2357, +0, 2228, 2357, +0, 2269, 2357, +0, 2320, 2357, +0, 2357, 2334, +0, 2357, 2243, +0, 2357, 2082, +0, 2357, 1702, +0, 2490, 0, +0, 2622, 0, +1409, 2755, 0, +2103, 2887, 0, +2428, 3019, 0, +2665, 3151, 0, +2862, 3283, 0, +3038, 3416, 0, +3200, 3548, 0, +3353, 3680, 0, +3500, 3812, 0, +3643, 3944, 0, +3783, 4076, 0, +3921, 4095, 0, +0, 2074, 2358, +0, 2077, 2358, +0, 2081, 2358, +0, 2086, 2357, +0, 2093, 2357, +0, 2101, 2357, +0, 2111, 2357, +0, 2124, 2357, +0, 2141, 2357, +0, 2162, 2357, +0, 2190, 2357, +0, 2224, 2357, +0, 2266, 2357, +0, 2317, 2357, +0, 2357, 2335, +0, 2357, 2245, +0, 2357, 2085, +0, 2357, 1708, +0, 2489, 0, +0, 2622, 0, +1439, 2755, 0, +2110, 2887, 0, +2431, 3019, 0, +2667, 3151, 0, +2863, 3283, 0, +3038, 3416, 0, +3200, 3548, 0, +3353, 3680, 0, +3500, 3812, 0, +3643, 3944, 0, +3783, 4076, 0, +3921, 4095, 0, +0, 2066, 2358, +0, 2069, 2358, +0, 2073, 2358, +0, 2078, 2357, +0, 2086, 2357, +0, 2095, 2356, +0, 2105, 2356, +0, 2118, 2356, +0, 2135, 2356, +0, 2157, 2356, +0, 2185, 2356, +0, 2219, 2356, +0, 2262, 2356, +0, 2313, 2356, +0, 2356, 2338, +0, 2356, 2247, +0, 2356, 2088, +0, 2356, 1716, +0, 2489, 0, +0, 2621, 0, +1476, 2754, 0, +2118, 2887, 0, +2435, 3019, 0, +2670, 3151, 0, +2865, 3283, 0, +3039, 3416, 0, +3201, 3548, 0, +3354, 3680, 0, +3501, 3812, 0, +3644, 3944, 0, +3784, 4076, 0, +3922, 4095, 0, +0, 2055, 2358, +0, 2058, 2358, +0, 2062, 2358, +0, 2068, 2357, +0, 2075, 2357, +0, 2084, 2356, +0, 2096, 2355, +0, 2110, 2355, +0, 2127, 2355, +0, 2150, 2355, +0, 2178, 2355, +0, 2213, 2355, +0, 2256, 2355, +0, 2308, 2355, +0, 2355, 2340, +0, 2355, 2251, +0, 2355, 2093, +0, 2355, 1727, +0, 2488, 0, +0, 2621, 0, +1521, 2754, 0, +2129, 2886, 0, +2441, 3018, 0, +2673, 3151, 0, +2867, 3283, 0, +3041, 3415, 0, +3202, 3548, 0, +3354, 3680, 0, +3501, 3812, 0, +3644, 3944, 0, +3784, 4076, 0, +3922, 4095, 0, +0, 2040, 2358, +0, 2043, 2358, +0, 2047, 2358, +0, 2053, 2357, +0, 2060, 2357, +0, 2070, 2356, +0, 2083, 2355, +0, 2099, 2353, +0, 2117, 2353, +0, 2140, 2353, +0, 2168, 2353, +0, 2204, 2353, +0, 2248, 2353, +0, 2301, 2353, +0, 2353, 2344, +0, 2353, 2255, +0, 2353, 2099, +0, 2353, 1740, +0, 2487, 0, +0, 2620, 0, +1575, 2753, 0, +2144, 2886, 0, +2449, 3018, 0, +2678, 3151, 0, +2870, 3283, 0, +3043, 3415, 0, +3203, 3548, 0, +3356, 3680, 0, +3502, 3812, 0, +3645, 3944, 0, +3784, 4076, 0, +3922, 4095, 0, +0, 2019, 2358, +0, 2022, 2358, +0, 2027, 2358, +0, 2032, 2357, +0, 2040, 2357, +0, 2050, 2356, +0, 2063, 2355, +0, 2081, 2353, +0, 2102, 2352, +0, 2126, 2352, +0, 2155, 2352, +0, 2192, 2352, +0, 2237, 2352, +0, 2291, 2352, +0, 2352, 2349, +0, 2352, 2261, +0, 2352, 2107, +0, 2352, 1758, +0, 2486, 0, +0, 2619, 0, +1638, 2752, 0, +2163, 2885, 0, +2459, 3018, 0, +2684, 3151, 0, +2874, 3283, 0, +3046, 3415, 0, +3205, 3548, 0, +3357, 3680, 0, +3503, 3812, 0, +3645, 3944, 0, +3785, 4076, 0, +3923, 4095, 0, +0, 1989, 2358, +0, 1993, 2358, +0, 1997, 2358, +0, 2004, 2357, +0, 2012, 2357, +0, 2022, 2356, +0, 2037, 2355, +0, 2054, 2353, +0, 2078, 2352, +0, 2107, 2349, +0, 2138, 2349, +0, 2176, 2349, +0, 2223, 2349, +0, 2278, 2349, +0, 2343, 2349, +0, 2349, 2268, +0, 2349, 2118, +0, 2349, 1781, +0, 2484, 0, +0, 2618, 0, +1711, 2751, 0, +2188, 2885, 0, +2471, 3017, 0, +2691, 3150, 0, +2879, 3282, 0, +3049, 3415, 0, +3208, 3547, 0, +3359, 3680, 0, +3504, 3812, 0, +3646, 3944, 0, +3785, 4076, 0, +3923, 4095, 0, +0, 1946, 2358, +0, 1950, 2358, +0, 1955, 2358, +0, 1962, 2357, +0, 1970, 2357, +0, 1982, 2356, +0, 1998, 2355, +0, 2017, 2353, +0, 2042, 2352, +0, 2074, 2349, +0, 2113, 2346, +0, 2153, 2346, +0, 2202, 2346, +0, 2260, 2346, +0, 2328, 2346, +0, 2346, 2278, +0, 2346, 2132, +0, 2346, 1809, +0, 2481, 0, +0, 2616, 0, +1794, 2750, 0, +2218, 2883, 0, +2488, 3016, 0, +2702, 3150, 0, +2886, 3282, 0, +3054, 3414, 0, +3211, 3547, 0, +3361, 3679, 0, +3506, 3812, 0, +3648, 3944, 0, +3787, 4076, 0, +3924, 4095, 0, +0, 1880, 2358, +0, 1885, 2358, +0, 1891, 2358, +0, 1899, 2357, +0, 1909, 2357, +0, 1922, 2356, +0, 1940, 2355, +0, 1962, 2353, +0, 1990, 2352, +0, 2025, 2349, +0, 2069, 2346, +0, 2120, 2341, +0, 2173, 2341, +0, 2234, 2341, +0, 2305, 2341, +0, 2341, 2291, +0, 2341, 2150, +0, 2341, 1845, +0, 2478, 0, +547, 2613, 0, +1885, 2748, 0, +2256, 2882, 0, +2510, 3015, 0, +2715, 3149, 0, +2895, 3281, 0, +3060, 3414, 0, +3216, 3547, 0, +3364, 3679, 0, +3508, 3812, 0, +3649, 3944, 0, +3787, 4076, 0, +3925, 4095, 0, +0, 1775, 2358, +0, 1781, 2358, +0, 1788, 2358, +0, 1798, 2357, +0, 1811, 2357, +0, 1828, 2356, +0, 1849, 2355, +0, 1876, 2353, +0, 1910, 2352, +0, 1951, 2349, +0, 2002, 2346, +0, 2061, 2341, +345, 2131, 2335, +345, 2198, 2335, +345, 2274, 2335, +345, 2335, 2308, +345, 2335, 2173, +345, 2335, 1889, +0, 2473, 557, +1330, 2610, 0, +1983, 2746, 0, +2302, 2880, 0, +2536, 3014, 0, +2733, 3148, 0, +2907, 3280, 0, +3069, 3414, 0, +3221, 3546, 0, +3368, 3679, 0, +3511, 3811, 0, +3651, 3944, 0, +3789, 4076, 0, +3926, 4095, 0, +0, 1580, 2358, +0, 1589, 2358, +0, 1600, 2358, +0, 1615, 2357, +0, 1634, 2357, +0, 1659, 2356, +0, 1689, 2355, +0, 1727, 2353, +0, 1773, 2352, +0, 1829, 2349, +0, 1894, 2346, +0, 1968, 2341, +345, 2052, 2335, +1269, 2144, 2326, +1269, 2229, 2326, +1269, 2323, 2326, +1269, 2326, 2202, +1269, 2326, 1941, +477, 2467, 1099, +1667, 2605, 0, +2089, 2742, 0, +2358, 2878, 0, +2570, 3012, 0, +2755, 3146, 0, +2922, 3280, 0, +3079, 3413, 0, +3229, 3546, 0, +3374, 3678, 0, +3516, 3811, 0, +3655, 3943, 0, +3792, 4076, 0, +3927, 4095, 0, +0, 1009, 2358, +0, 1039, 2358, +0, 1076, 2358, +0, 1122, 2357, +0, 1176, 2357, +0, 1240, 2356, +0, 1313, 2355, +0, 1396, 2353, +0, 1487, 2352, +0, 1586, 2349, +0, 1692, 2346, +0, 1803, 2341, +345, 1919, 2335, +1269, 2038, 2326, +1619, 2161, 2315, +1619, 2268, 2315, +1619, 2315, 2237, +1619, 2315, 2003, +1403, 2459, 1401, +1908, 2599, 611, +2200, 2738, 0, +2423, 2874, 0, +2612, 3010, 0, +2783, 3144, 0, +2942, 3278, 0, +3093, 3412, 0, +3239, 3545, 0, +3381, 3678, 0, +3521, 3810, 0, +3659, 3943, 0, +3795, 4075, 0, +3930, 4095, 0, +0, 0, 2358, +0, 0, 2358, +0, 0, 2358, +0, 0, 2357, +0, 0, 2357, +0, 0, 2356, +0, 0, 2355, +0, 0, 2353, +0, 0, 2352, +0, 275, 2349, +0, 1064, 2346, +0, 1403, 2341, +345, 1644, 2335, +1269, 1843, 2326, +1619, 2020, 2315, +1865, 2183, 2299, +1865, 2299, 2281, +1865, 2299, 2075, +1850, 2447, 1751, +2108, 2591, 1533, +2315, 2731, 738, +2497, 2870, 0, +2662, 3006, 0, +2818, 3142, 0, +2967, 3276, 0, +3111, 3410, 0, +3253, 3544, 0, +3391, 3677, 0, +3528, 3810, 0, +3664, 3943, 0, +3798, 4075, 0, +3933, 4095, 0, +0, 0, 2358, +0, 0, 2358, +0, 0, 2358, +0, 0, 2357, +0, 0, 2357, +0, 0, 2356, +0, 0, 2355, +0, 0, 2353, +0, 0, 2352, +0, 0, 2349, +0, 0, 2346, +437, 0, 2341, +970, 345, 2335, +1269, 1270, 2326, +1619, 1718, 2315, +1865, 1994, 2299, +2067, 2210, 2277, +2067, 2277, 2155, +2126, 2431, 1997, +2284, 2579, 1883, +2435, 2723, 1664, +2580, 2863, 870, +2722, 3002, 0, +2861, 3138, 0, +2998, 3274, 0, +3134, 3408, 0, +3270, 3543, 0, +3404, 3676, 0, +3537, 3809, 0, +3671, 3942, 0, +3803, 4075, 0, +3937, 4095, 0, +1692, 0, 2358, +1694, 0, 2358, +1698, 0, 2358, +1702, 0, 2357, +1708, 0, 2357, +1716, 0, 2356, +1727, 0, 2355, +1740, 0, 2353, +1758, 0, 2352, +1781, 0, 2349, +1809, 0, 2346, +1845, 0, 2341, +1889, 345, 2335, +1941, 1269, 2326, +2003, 1619, 2315, +2075, 1865, 2299, +2155, 2067, 2277, +2245, 2245, 2245, +2343, 2409, 2199, +2447, 2563, 2129, +2557, 2711, 2015, +2672, 2855, 1796, +2791, 2995, 1006, +2913, 3134, 0, +3037, 3270, 0, +3164, 3406, 0, +3291, 3541, 0, +3420, 3675, 0, +3550, 3808, 0, +3680, 3941, 0, +3810, 4074, 0, +3942, 4095, 0, +2209, 0, 2491, +2210, 0, 2491, +2211, 0, 2490, +2213, 0, 2490, +2215, 0, 2489, +2218, 0, 2489, +2221, 0, 2488, +2226, 0, 2487, +2232, 0, 2486, +2240, 0, 2484, +2251, 0, 2481, +2264, 0, 2478, +2282, 0, 2473, +2305, 477, 2467, +2334, 1401, 2459, +2370, 1751, 2447, +2414, 1997, 2431, +2409, 2199, 2343, +2409, 2288, 2199, +2563, 2545, 2129, +2665, 2711, 2015, +2758, 2855, 1796, +2858, 2995, 1006, +2965, 3134, 0, +3078, 3270, 0, +3194, 3406, 0, +3315, 3541, 0, +3438, 3675, 0, +3563, 3808, 0, +3690, 3941, 0, +3818, 4074, 0, +3947, 4095, 0, +2503, 0, 2623, +2503, 0, 2623, +2504, 0, 2623, +2505, 0, 2622, +2506, 0, 2622, +2507, 0, 2621, +2509, 0, 2621, +2511, 0, 2620, +2515, 0, 2619, +2519, 0, 2618, +2525, 0, 2616, +2533, 0, 2613, +2543, 0, 2610, +2556, 0, 2605, +2572, 611, 2599, +2591, 1533, 2587, +2579, 1883, 2533, +2563, 2129, 2447, +2563, 2129, 2258, +2563, 2339, 2129, +2711, 2634, 2015, +2852, 2855, 1796, +2935, 2995, 1006, +3027, 3134, 0, +3126, 3270, 0, +3233, 3406, 0, +3344, 3541, 0, +3461, 3675, 0, +3581, 3808, 0, +3703, 3941, 0, +3828, 4074, 0, +3955, 4095, 0, +2727, 0, 2755, +2727, 0, 2755, +2728, 0, 2755, +2728, 0, 2755, +2729, 0, 2755, +2730, 0, 2754, +2731, 0, 2754, +2732, 0, 2753, +2734, 0, 2752, +2737, 0, 2751, +2741, 0, 2750, +2745, 0, 2748, +2746, 0, 2740, +2742, 0, 2724, +2738, 0, 2702, +2731, 738, 2671, +2723, 1664, 2626, +2711, 2015, 2557, +2711, 2015, 2416, +2711, 2015, 2114, +2711, 2400, 2015, +2855, 2730, 1796, +2995, 2968, 1006, +3098, 3134, 0, +3184, 3270, 0, +3279, 3406, 0, +3381, 3541, 0, +3490, 3675, 0, +3603, 3808, 0, +3720, 3941, 0, +3841, 4074, 0, +3965, 4095, 0, +2887, 0, 2856, +2887, 0, 2855, +2887, 0, 2855, +2887, 0, 2854, +2887, 0, 2853, +2887, 0, 2852, +2886, 0, 2850, +2886, 0, 2848, +2885, 0, 2845, +2885, 0, 2842, +2883, 0, 2836, +2882, 0, 2829, +2880, 0, 2820, +2878, 0, 2807, +2874, 0, 2788, +2870, 0, 2763, +2863, 870, 2726, +2855, 1796, 2672, +2855, 1796, 2567, +2855, 1796, 2372, +2855, 1796, 1797, +2855, 2470, 1796, +2995, 2833, 1006, +3134, 3084, 0, +3252, 3270, 0, +3335, 3406, 0, +3426, 3541, 0, +3525, 3675, 0, +3631, 3808, 0, +3742, 3941, 0, +3858, 4074, 0, +3978, 4095, 0, +3019, 0, 2938, +3019, 0, 2938, +3019, 0, 2938, +3019, 0, 2937, +3019, 0, 2936, +3019, 0, 2935, +3018, 0, 2934, +3018, 0, 2932, +3018, 0, 2930, +3017, 0, 2927, +3016, 0, 2922, +3015, 0, 2916, +3014, 0, 2908, +3012, 0, 2898, +3010, 0, 2883, +3006, 0, 2862, +3002, 0, 2833, +2995, 1006, 2791, +2995, 1006, 2712, +2995, 1006, 2579, +2995, 1006, 2303, +2995, 1635, 1006, +2995, 2549, 1006, +3134, 2943, 0, +3270, 3203, 0, +3400, 3406, 0, +3480, 3541, 0, +3569, 3675, 0, +3666, 3808, 0, +3770, 3941, 0, +3880, 4074, 0, +3994, 4095, 0, +3152, 0, 3030, +3152, 0, 3029, +3152, 0, 3029, +3151, 0, 3029, +3151, 0, 3028, +3151, 0, 3027, +3151, 0, 3026, +3151, 0, 3025, +3151, 0, 3023, +3150, 0, 3020, +3150, 0, 3017, +3149, 0, 3012, +3148, 0, 3005, +3146, 0, 2997, +3144, 0, 2985, +3142, 0, 2969, +3138, 0, 2946, +3134, 0, 2913, +3134, 0, 2854, +3134, 0, 2761, +3134, 0, 2596, +3134, 0, 2195, +3134, 1211, 0, +3134, 2638, 0, +3270, 3056, 0, +3406, 3325, 0, +3541, 3538, 0, +3622, 3675, 0, +3709, 3808, 0, +3805, 3941, 0, +3907, 4074, 0, +4016, 4095, 0, +3284, 0, 3128, +3283, 0, 3128, +3283, 0, 3128, +3283, 0, 3128, +3283, 0, 3127, +3283, 0, 3127, +3283, 0, 3126, +3283, 0, 3125, +3283, 0, 3123, +3282, 0, 3121, +3282, 0, 3118, +3281, 0, 3114, +3280, 0, 3109, +3280, 0, 3102, +3278, 0, 3093, +3276, 0, 3080, +3274, 0, 3062, +3270, 0, 3037, +3270, 0, 2993, +3270, 0, 2926, +3270, 0, 2818, +3270, 0, 2616, +3270, 0, 1990, +3270, 0, 0, +3270, 2734, 0, +3406, 3175, 0, +3541, 3450, 0, +3675, 3665, 0, +3761, 3808, 0, +3847, 3941, 0, +3941, 4074, 0, +4043, 4095, 0, +3416, 0, 3234, +3416, 0, 3234, +3416, 0, 3234, +3416, 0, 3234, +3416, 0, 3233, +3416, 0, 3233, +3415, 0, 3232, +3415, 0, 3231, +3415, 0, 3230, +3415, 0, 3228, +3414, 0, 3226, +3414, 0, 3223, +3414, 0, 3219, +3413, 0, 3214, +3412, 0, 3206, +3410, 0, 3196, +3408, 0, 3183, +3406, 0, 3164, +3406, 0, 3131, +3406, 0, 3082, +3406, 0, 3008, +3406, 0, 2886, +3406, 0, 2643, +3406, 0, 1325, +3406, 0, 0, +3406, 2838, 0, +3541, 3296, 0, +3675, 3576, 0, +3808, 3794, 0, +3898, 3941, 0, +3983, 4074, 0, +4077, 4095, 0, +3548, 0, 3346, +3548, 0, 3346, +3548, 0, 3346, +3548, 0, 3345, +3548, 0, 3345, +3548, 0, 3344, +3548, 0, 3344, +3548, 0, 3343, +3548, 0, 3342, +3547, 0, 3341, +3547, 0, 3339, +3547, 0, 3337, +3546, 0, 3334, +3546, 0, 3330, +3545, 0, 3324, +3544, 0, 3316, +3543, 0, 3306, +3541, 0, 3291, +3541, 0, 3267, +3541, 0, 3231, +3541, 0, 3179, +3541, 0, 3099, +3541, 0, 2963, +3541, 0, 2676, +3541, 0, 0, +3541, 0, 0, +3541, 2947, 0, +3675, 3420, 0, +3808, 3704, 0, +3941, 3923, 0, +4034, 4074, 0, +4095, 4095, 0, +3680, 0, 3462, +3680, 0, 3462, +3680, 0, 3462, +3680, 0, 3461, +3680, 0, 3461, +3680, 0, 3461, +3680, 0, 3460, +3680, 0, 3460, +3680, 0, 3459, +3680, 0, 3458, +3679, 0, 3457, +3679, 0, 3455, +3679, 0, 3453, +3678, 0, 3449, +3678, 0, 3445, +3677, 0, 3439, +3676, 0, 3431, +3675, 0, 3420, +3675, 0, 3402, +3675, 0, 3376, +3675, 0, 3338, +3675, 0, 3283, +3675, 0, 3197, +3675, 0, 3048, +3675, 0, 2718, +3675, 0, 0, +3675, 0, 0, +3675, 3061, 0, +3808, 3546, 0, +3941, 3832, 0, +4074, 4053, 0, +4095, 4095, 0, +3812, 0, 3581, +3812, 0, 3581, +3812, 0, 3581, +3812, 0, 3581, +3812, 0, 3581, +3812, 0, 3581, +3812, 0, 3580, +3812, 0, 3580, +3812, 0, 3579, +3812, 0, 3579, +3812, 0, 3577, +3812, 0, 3576, +3811, 0, 3574, +3811, 0, 3572, +3810, 0, 3569, +3810, 0, 3564, +3809, 0, 3558, +3808, 0, 3550, +3808, 0, 3536, +3808, 0, 3517, +3808, 0, 3490, +3808, 0, 3451, +3808, 0, 3393, +3808, 0, 3302, +3808, 0, 3143, +3808, 0, 2767, +3808, 0, 0, +3808, 0, 0, +3808, 3180, 0, +3941, 3674, 0, +4074, 3962, 0, +4095, 4095, 0, +3944, 0, 3704, +3944, 0, 3704, +3944, 0, 3704, +3944, 0, 3703, +3944, 0, 3703, +3944, 0, 3703, +3944, 0, 3703, +3944, 0, 3703, +3944, 0, 3702, +3944, 0, 3702, +3944, 0, 3701, +3944, 0, 3700, +3944, 0, 3699, +3943, 0, 3697, +3943, 0, 3694, +3943, 0, 3691, +3942, 0, 3686, +3941, 0, 3680, +3941, 0, 3669, +3941, 0, 3655, +3941, 0, 3635, +3941, 0, 3608, +3941, 0, 3568, +3941, 0, 3507, +3941, 0, 3413, +3941, 0, 3244, +3941, 0, 2826, +3941, 0, 0, +3941, 0, 0, +3941, 3302, 0, +4074, 3802, 0, +4095, 4092, 0, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3827, +4076, 0, 3827, +4076, 0, 3826, +4076, 0, 3826, +4076, 0, 3824, +4076, 0, 3823, +4075, 0, 3821, +4075, 0, 3818, +4075, 0, 3815, +4074, 0, 3810, +4074, 0, 3803, +4074, 0, 3792, +4074, 0, 3777, +4074, 0, 3757, +4074, 0, 3729, +4074, 0, 3688, +4074, 0, 3626, +4074, 0, 3528, +4074, 0, 3351, +4074, 0, 2893, +4074, 0, 0, +4074, 0, 0, +4074, 3426, 0, +4095, 3932, 0, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3954, +4095, 0, 3954, +4095, 0, 3954, +4095, 0, 3953, +4095, 0, 3952, +4095, 0, 3951, +4095, 0, 3950, +4095, 0, 3948, +4095, 0, 3945, +4095, 0, 3942, +4095, 0, 3936, +4095, 0, 3928, +4095, 0, 3917, +4095, 0, 3903, +4095, 0, 3882, +4095, 0, 3853, +4095, 0, 3811, +4095, 0, 3748, +4095, 0, 3648, +4095, 0, 3465, +4095, 0, 2973, +4095, 0, 0, +4095, 0, 0, +4095, 3552, 0, +0, 2222, 2491, +0, 2224, 2491, +0, 2226, 2491, +0, 2230, 2491, +0, 2234, 2491, +0, 2239, 2491, +0, 2247, 2491, +0, 2256, 2491, +0, 2269, 2491, +0, 2285, 2491, +0, 2306, 2491, +0, 2333, 2491, +0, 2367, 2491, +0, 2408, 2491, +0, 2458, 2491, +0, 2491, 2463, +0, 2491, 2371, +0, 2491, 2209, +0, 2491, 1822, +0, 2623, 0, +0, 2755, 0, +1472, 2887, 0, +2220, 3019, 0, +2554, 3152, 0, +2793, 3284, 0, +2992, 3416, 0, +3168, 3548, 0, +3330, 3680, 0, +3484, 3812, 0, +3631, 3944, 0, +3774, 4076, 0, +3915, 4095, 0, +0, 2220, 2491, +0, 2223, 2491, +0, 2225, 2491, +0, 2228, 2491, +0, 2233, 2491, +0, 2238, 2491, +0, 2245, 2491, +0, 2255, 2491, +0, 2268, 2491, +0, 2284, 2491, +0, 2305, 2491, +0, 2332, 2491, +0, 2366, 2491, +0, 2407, 2491, +0, 2457, 2491, +0, 2491, 2464, +0, 2491, 2372, +0, 2491, 2210, +0, 2491, 1824, +0, 2623, 0, +0, 2755, 0, +1483, 2887, 0, +2222, 3019, 0, +2555, 3152, 0, +2793, 3283, 0, +2992, 3416, 0, +3168, 3548, 0, +3331, 3680, 0, +3484, 3812, 0, +3632, 3944, 0, +3775, 4076, 0, +3915, 4095, 0, +0, 2218, 2491, +0, 2220, 2491, +0, 2223, 2490, +0, 2226, 2490, +0, 2230, 2490, +0, 2236, 2490, +0, 2243, 2490, +0, 2253, 2490, +0, 2266, 2490, +0, 2283, 2490, +0, 2304, 2490, +0, 2331, 2490, +0, 2364, 2490, +0, 2406, 2490, +0, 2456, 2490, +0, 2490, 2464, +0, 2490, 2373, +0, 2490, 2211, +0, 2490, 1826, +0, 2623, 0, +0, 2755, 0, +1497, 2887, 0, +2225, 3019, 0, +2556, 3152, 0, +2794, 3283, 0, +2992, 3416, 0, +3168, 3548, 0, +3331, 3680, 0, +3484, 3812, 0, +3632, 3944, 0, +3775, 4076, 0, +3915, 4095, 0, +0, 2215, 2491, +0, 2217, 2491, +0, 2220, 2490, +0, 2223, 2490, +0, 2228, 2490, +0, 2234, 2490, +0, 2241, 2490, +0, 2251, 2490, +0, 2264, 2490, +0, 2280, 2490, +0, 2302, 2490, +0, 2329, 2490, +0, 2362, 2490, +0, 2404, 2490, +0, 2454, 2490, +0, 2490, 2465, +0, 2490, 2374, +0, 2490, 2213, +0, 2490, 1830, +0, 2622, 0, +0, 2755, 0, +1516, 2887, 0, +2229, 3019, 0, +2558, 3151, 0, +2795, 3283, 0, +2993, 3416, 0, +3169, 3548, 0, +3331, 3680, 0, +3485, 3812, 0, +3632, 3944, 0, +3775, 4076, 0, +3915, 4095, 0, +0, 2210, 2491, +0, 2212, 2491, +0, 2215, 2490, +0, 2219, 2490, +0, 2224, 2489, +0, 2230, 2489, +0, 2238, 2489, +0, 2247, 2489, +0, 2260, 2489, +0, 2277, 2489, +0, 2298, 2489, +0, 2326, 2489, +0, 2360, 2489, +0, 2401, 2489, +0, 2452, 2489, +0, 2489, 2466, +0, 2489, 2375, +0, 2489, 2215, +0, 2489, 1834, +0, 2622, 0, +0, 2755, 0, +1540, 2887, 0, +2234, 3019, 0, +2560, 3151, 0, +2797, 3283, 0, +2994, 3416, 0, +3170, 3548, 0, +3332, 3680, 0, +3485, 3812, 0, +3632, 3944, 0, +3775, 4076, 0, +3915, 4095, 0, +0, 2204, 2491, +0, 2206, 2491, +0, 2209, 2490, +0, 2213, 2490, +0, 2219, 2489, +0, 2226, 2489, +0, 2233, 2489, +0, 2243, 2489, +0, 2256, 2489, +0, 2273, 2489, +0, 2294, 2489, +0, 2322, 2489, +0, 2356, 2489, +0, 2398, 2489, +0, 2449, 2489, +0, 2489, 2468, +0, 2489, 2377, +0, 2489, 2218, +0, 2489, 1840, +0, 2621, 0, +0, 2754, 0, +1569, 2887, 0, +2241, 3019, 0, +2564, 3151, 0, +2799, 3283, 0, +2996, 3416, 0, +3171, 3548, 0, +3332, 3680, 0, +3485, 3812, 0, +3632, 3944, 0, +3775, 4076, 0, +3916, 4095, 0, +0, 2196, 2491, +0, 2199, 2491, +0, 2202, 2490, +0, 2206, 2490, +0, 2211, 2489, +0, 2218, 2489, +0, 2227, 2488, +0, 2237, 2488, +0, 2250, 2488, +0, 2267, 2488, +0, 2289, 2488, +0, 2317, 2488, +0, 2352, 2488, +0, 2394, 2488, +0, 2445, 2488, +0, 2488, 2470, +0, 2488, 2379, +0, 2488, 2221, +0, 2488, 1848, +0, 2621, 0, +0, 2754, 0, +1606, 2886, 0, +2249, 3018, 0, +2568, 3151, 0, +2801, 3283, 0, +2997, 3415, 0, +3172, 3548, 0, +3333, 3680, 0, +3486, 3812, 0, +3633, 3944, 0, +3776, 4076, 0, +3916, 4095, 0, +0, 2185, 2491, +0, 2187, 2491, +0, 2190, 2490, +0, 2195, 2490, +0, 2200, 2489, +0, 2207, 2489, +0, 2217, 2488, +0, 2229, 2487, +0, 2242, 2487, +0, 2260, 2487, +0, 2282, 2487, +0, 2310, 2487, +0, 2345, 2487, +0, 2388, 2487, +0, 2440, 2487, +0, 2487, 2473, +0, 2487, 2383, +0, 2487, 2226, +0, 2487, 1859, +0, 2620, 0, +0, 2753, 0, +1651, 2886, 0, +2261, 3018, 0, +2573, 3151, 0, +2805, 3283, 0, +2999, 3415, 0, +3173, 3548, 0, +3334, 3680, 0, +3487, 3812, 0, +3633, 3944, 0, +3776, 4076, 0, +3916, 4095, 0, +0, 2170, 2491, +0, 2172, 2491, +0, 2175, 2490, +0, 2180, 2490, +0, 2185, 2489, +0, 2193, 2489, +0, 2202, 2488, +0, 2215, 2487, +0, 2231, 2486, +0, 2249, 2486, +0, 2272, 2486, +0, 2301, 2486, +0, 2336, 2486, +0, 2380, 2486, +0, 2433, 2486, +0, 2486, 2476, +0, 2486, 2387, +0, 2486, 2232, +0, 2486, 1873, +0, 2619, 0, +0, 2752, 0, +1706, 2885, 0, +2276, 3018, 0, +2581, 3151, 0, +2809, 3283, 0, +3002, 3415, 0, +3175, 3548, 0, +3336, 3680, 0, +3488, 3812, 0, +3634, 3944, 0, +3777, 4076, 0, +3917, 4095, 0, +0, 2149, 2491, +0, 2151, 2491, +0, 2154, 2490, +0, 2159, 2490, +0, 2165, 2489, +0, 2172, 2489, +0, 2183, 2488, +0, 2196, 2487, +0, 2213, 2486, +0, 2235, 2484, +0, 2258, 2484, +0, 2288, 2484, +0, 2325, 2484, +0, 2369, 2484, +0, 2423, 2484, +0, 2484, 2481, +0, 2484, 2393, +0, 2484, 2240, +0, 2484, 1891, +0, 2618, 0, +0, 2751, 0, +1769, 2885, 0, +2294, 3017, 0, +2591, 3150, 0, +2815, 3282, 0, +3006, 3415, 0, +3178, 3547, 0, +3337, 3680, 0, +3489, 3812, 0, +3635, 3944, 0, +3777, 4076, 0, +3917, 4095, 0, +0, 2119, 2491, +0, 2121, 2491, +0, 2125, 2490, +0, 2129, 2490, +0, 2136, 2489, +0, 2144, 2489, +0, 2155, 2488, +0, 2169, 2487, +0, 2187, 2486, +0, 2210, 2484, +0, 2239, 2481, +0, 2270, 2481, +0, 2308, 2481, +0, 2355, 2481, +0, 2410, 2481, +0, 2475, 2481, +0, 2481, 2401, +0, 2481, 2251, +0, 2481, 1913, +0, 2616, 0, +0, 2750, 0, +1843, 2883, 0, +2319, 3016, 0, +2604, 3150, 0, +2823, 3282, 0, +3011, 3414, 0, +3182, 3547, 0, +3340, 3679, 0, +3491, 3812, 0, +3636, 3944, 0, +3778, 4076, 0, +3918, 4095, 0, +0, 2075, 2491, +0, 2078, 2491, +0, 2082, 2490, +0, 2087, 2490, +0, 2094, 2489, +0, 2103, 2489, +0, 2115, 2488, +0, 2130, 2487, +0, 2149, 2486, +0, 2174, 2484, +0, 2206, 2481, +0, 2245, 2478, +0, 2285, 2478, +0, 2334, 2478, +0, 2392, 2478, +0, 2460, 2478, +0, 2478, 2411, +0, 2478, 2264, +0, 2478, 1941, +0, 2613, 0, +0, 2748, 0, +1925, 2882, 0, +2350, 3015, 0, +2620, 3149, 0, +2833, 3281, 0, +3018, 3414, 0, +3186, 3547, 0, +3343, 3679, 0, +3493, 3812, 0, +3638, 3944, 0, +3780, 4076, 0, +3919, 4095, 0, +0, 2009, 2491, +0, 2013, 2491, +0, 2017, 2490, +0, 2023, 2490, +0, 2031, 2489, +0, 2041, 2489, +0, 2055, 2488, +0, 2072, 2487, +0, 2094, 2486, +0, 2122, 2484, +0, 2158, 2481, +0, 2201, 2478, +0, 2253, 2473, +0, 2305, 2473, +0, 2366, 2473, +0, 2438, 2473, +0, 2473, 2423, +0, 2473, 2282, +0, 2473, 1977, +0, 2610, 0, +678, 2746, 0, +2016, 2880, 0, +2388, 3014, 0, +2642, 3148, 0, +2847, 3280, 0, +3027, 3414, 0, +3192, 3546, 0, +3348, 3679, 0, +3496, 3811, 0, +3640, 3944, 0, +3781, 4076, 0, +3920, 4095, 0, +0, 1903, 2491, +0, 1907, 2491, +0, 1913, 2490, +0, 1920, 2490, +0, 1930, 2489, +0, 1943, 2489, +0, 1960, 2488, +0, 1981, 2487, +0, 2008, 2486, +0, 2042, 2484, +0, 2084, 2481, +0, 2134, 2478, +0, 2194, 2473, +477, 2263, 2467, +477, 2330, 2467, +477, 2407, 2467, +477, 2467, 2440, +477, 2467, 2305, +477, 2467, 2021, +0, 2605, 705, +1463, 2742, 0, +2115, 2878, 0, +2434, 3012, 0, +2669, 3146, 0, +2865, 3280, 0, +3039, 3413, 0, +3201, 3546, 0, +3354, 3678, 0, +3501, 3811, 0, +3644, 3943, 0, +3784, 4076, 0, +3922, 4095, 0, +0, 1706, 2491, +0, 1713, 2491, +0, 1722, 2490, +0, 1733, 2490, +0, 1748, 2489, +0, 1767, 2489, +0, 1791, 2488, +0, 1822, 2487, +0, 1859, 2486, +0, 1906, 2484, +0, 1961, 2481, +0, 2026, 2478, +0, 2100, 2473, +477, 2184, 2467, +1401, 2276, 2459, +1401, 2362, 2459, +1401, 2455, 2459, +1401, 2459, 2334, +1401, 2459, 2073, +611, 2599, 1236, +1799, 2738, 0, +2220, 2874, 0, +2489, 3010, 0, +2703, 3144, 0, +2886, 3278, 0, +3055, 3412, 0, +3211, 3545, 0, +3361, 3678, 0, +3506, 3810, 0, +3648, 3943, 0, +3787, 4075, 0, +3924, 4095, 0, +0, 1120, 2491, +0, 1143, 2491, +0, 1173, 2490, +0, 1210, 2490, +0, 1255, 2489, +0, 1310, 2489, +0, 1373, 2488, +0, 1446, 2487, +0, 1529, 2486, +0, 1620, 2484, +0, 1719, 2481, +0, 1824, 2478, +0, 1935, 2473, +477, 2051, 2467, +1401, 2171, 2459, +1751, 2293, 2447, +1751, 2401, 2447, +1751, 2447, 2370, +1751, 2447, 2135, +1533, 2591, 1533, +2040, 2731, 738, +2332, 2870, 0, +2554, 3006, 0, +2744, 3142, 0, +2915, 3276, 0, +3074, 3410, 0, +3225, 3544, 0, +3371, 3677, 0, +3514, 3810, 0, +3653, 3943, 0, +3790, 4075, 0, +3927, 4095, 0, +0, 0, 2491, +0, 0, 2491, +0, 0, 2490, +0, 0, 2490, +0, 0, 2489, +0, 0, 2489, +0, 0, 2488, +0, 0, 2487, +0, 0, 2486, +0, 0, 2484, +0, 415, 2481, +0, 1199, 2478, +0, 1535, 2473, +477, 1776, 2467, +1401, 1976, 2459, +1751, 2152, 2447, +1997, 2315, 2431, +1997, 2431, 2414, +1997, 2431, 2207, +1981, 2579, 1883, +2240, 2723, 1664, +2447, 2863, 870, +2628, 3002, 0, +2795, 3138, 0, +2950, 3274, 0, +3099, 3408, 0, +3243, 3543, 0, +3385, 3676, 0, +3523, 3809, 0, +3660, 3942, 0, +3796, 4075, 0, +3931, 4095, 0, +0, 0, 2491, +0, 0, 2491, +0, 0, 2490, +0, 0, 2490, +0, 0, 2489, +0, 0, 2489, +0, 0, 2488, +0, 0, 2487, +0, 0, 2486, +0, 0, 2484, +0, 0, 2481, +0, 0, 2478, +557, 0, 2473, +1099, 477, 2467, +1401, 1403, 2459, +1751, 1850, 2447, +1997, 2126, 2431, +2199, 2343, 2409, +2199, 2409, 2288, +2258, 2563, 2129, +2416, 2711, 2015, +2567, 2855, 1796, +2712, 2995, 1006, +2854, 3134, 0, +2993, 3270, 0, +3131, 3406, 0, +3267, 3541, 0, +3402, 3675, 0, +3536, 3808, 0, +3669, 3941, 0, +3803, 4074, 0, +3936, 4095, 0, +1822, 0, 2491, +1824, 0, 2491, +1826, 0, 2490, +1830, 0, 2490, +1834, 0, 2489, +1840, 0, 2489, +1848, 0, 2488, +1859, 0, 2487, +1873, 0, 2486, +1891, 0, 2484, +1913, 0, 2481, +1941, 0, 2478, +1977, 0, 2473, +2021, 477, 2467, +2073, 1401, 2459, +2135, 1751, 2447, +2207, 1997, 2431, +2288, 2199, 2409, +2377, 2377, 2377, +2475, 2541, 2331, +2579, 2696, 2261, +2689, 2843, 2147, +2804, 2987, 1930, +2923, 3128, 1137, +3045, 3266, 0, +3170, 3402, 0, +3296, 3538, 0, +3423, 3673, 0, +3552, 3807, 0, +3682, 3940, 0, +3812, 4073, 0, +3943, 4095, 0, +2340, 0, 2623, +2341, 0, 2623, +2342, 0, 2623, +2343, 0, 2622, +2344, 0, 2622, +2346, 0, 2621, +2349, 0, 2621, +2352, 0, 2620, +2357, 0, 2619, +2363, 0, 2618, +2372, 0, 2616, +2382, 0, 2613, +2396, 0, 2610, +2414, 0, 2605, +2437, 611, 2599, +2466, 1533, 2591, +2502, 1883, 2579, +2545, 2129, 2563, +2541, 2331, 2475, +2541, 2420, 2331, +2696, 2678, 2261, +2797, 2843, 2147, +2890, 2987, 1930, +2991, 3128, 1137, +3097, 3266, 0, +3210, 3402, 0, +3326, 3538, 0, +3447, 3673, 0, +3570, 3807, 0, +3695, 3940, 0, +3822, 4073, 0, +3950, 4095, 0, +2635, 0, 2755, +2635, 0, 2755, +2636, 0, 2755, +2636, 0, 2755, +2637, 0, 2755, +2638, 0, 2754, +2640, 0, 2754, +2641, 0, 2753, +2644, 0, 2752, +2647, 0, 2751, +2651, 0, 2750, +2657, 0, 2748, +2665, 0, 2746, +2675, 0, 2742, +2688, 0, 2738, +2705, 738, 2731, +2723, 1664, 2719, +2711, 2015, 2665, +2696, 2261, 2579, +2696, 2261, 2391, +2696, 2471, 2261, +2843, 2766, 2147, +2984, 2987, 1930, +3067, 3128, 1137, +3159, 3266, 0, +3259, 3402, 0, +3365, 3538, 0, +3477, 3673, 0, +3593, 3807, 0, +3713, 3940, 0, +3835, 4073, 0, +3961, 4095, 0, +2859, 0, 2887, +2859, 0, 2887, +2859, 0, 2887, +2860, 0, 2887, +2860, 0, 2887, +2861, 0, 2887, +2862, 0, 2886, +2863, 0, 2886, +2864, 0, 2885, +2866, 0, 2885, +2869, 0, 2883, +2873, 0, 2882, +2877, 0, 2880, +2878, 0, 2872, +2874, 0, 2856, +2870, 0, 2834, +2863, 870, 2803, +2855, 1796, 2758, +2843, 2147, 2689, +2843, 2147, 2549, +2843, 2147, 2246, +2843, 2532, 2147, +2987, 2862, 1930, +3128, 3101, 1137, +3230, 3266, 0, +3317, 3402, 0, +3411, 3538, 0, +3513, 3673, 0, +3622, 3807, 0, +3735, 3940, 0, +3852, 4073, 0, +3974, 4095, 0, +3019, 0, 2988, +3019, 0, 2987, +3019, 0, 2987, +3019, 0, 2987, +3019, 0, 2986, +3019, 0, 2985, +3018, 0, 2984, +3018, 0, 2982, +3018, 0, 2980, +3017, 0, 2977, +3016, 0, 2974, +3015, 0, 2968, +3014, 0, 2961, +3012, 0, 2952, +3010, 0, 2939, +3006, 0, 2920, +3002, 0, 2895, +2995, 1006, 2858, +2987, 1930, 2804, +2987, 1930, 2699, +2987, 1930, 2503, +2987, 1930, 1930, +2987, 2602, 1930, +3128, 2965, 1137, +3266, 3216, 0, +3384, 3402, 0, +3467, 3538, 0, +3558, 3673, 0, +3657, 3807, 0, +3763, 3940, 0, +3874, 4073, 0, +3990, 4095, 0, +3152, 0, 3071, +3152, 0, 3070, +3152, 0, 3070, +3151, 0, 3070, +3151, 0, 3069, +3151, 0, 3068, +3151, 0, 3067, +3151, 0, 3066, +3151, 0, 3064, +3150, 0, 3062, +3150, 0, 3059, +3149, 0, 3055, +3148, 0, 3049, +3146, 0, 3041, +3144, 0, 3030, +3142, 0, 3015, +3138, 0, 2995, +3134, 0, 2965, +3128, 1137, 2923, +3128, 1137, 2845, +3128, 1137, 2712, +3128, 1137, 2436, +3128, 1758, 1137, +3128, 2681, 1137, +3266, 3074, 0, +3402, 3335, 0, +3532, 3538, 0, +3612, 3673, 0, +3701, 3807, 0, +3798, 3940, 0, +3902, 4073, 0, +4012, 4095, 0, +3284, 0, 3162, +3283, 0, 3162, +3283, 0, 3161, +3283, 0, 3161, +3283, 0, 3160, +3283, 0, 3160, +3283, 0, 3159, +3283, 0, 3158, +3283, 0, 3157, +3282, 0, 3155, +3282, 0, 3152, +3281, 0, 3149, +3280, 0, 3144, +3280, 0, 3138, +3278, 0, 3129, +3276, 0, 3117, +3274, 0, 3100, +3270, 0, 3078, +3266, 0, 3045, +3266, 0, 2986, +3266, 0, 2893, +3266, 0, 2727, +3266, 0, 2327, +3266, 1375, 0, +3266, 2770, 0, +3402, 3189, 0, +3538, 3457, 0, +3673, 3670, 0, +3754, 3807, 0, +3841, 3940, 0, +3937, 4073, 0, +4039, 4095, 0, +3416, 0, 3261, +3416, 0, 3261, +3416, 0, 3260, +3416, 0, 3260, +3416, 0, 3260, +3416, 0, 3259, +3415, 0, 3259, +3415, 0, 3258, +3415, 0, 3257, +3415, 0, 3255, +3414, 0, 3253, +3414, 0, 3250, +3414, 0, 3247, +3413, 0, 3242, +3412, 0, 3234, +3410, 0, 3225, +3408, 0, 3212, +3406, 0, 3194, +3402, 0, 3170, +3402, 0, 3125, +3402, 0, 3059, +3402, 0, 2951, +3402, 0, 2749, +3402, 0, 2121, +3402, 0, 0, +3402, 2866, 0, +3538, 3307, 0, +3673, 3582, 0, +3807, 3797, 0, +3893, 3940, 0, +3979, 4073, 0, +4073, 4095, 0, +3548, 0, 3367, +3548, 0, 3367, +3548, 0, 3366, +3548, 0, 3366, +3548, 0, 3366, +3548, 0, 3365, +3548, 0, 3365, +3548, 0, 3364, +3548, 0, 3363, +3547, 0, 3362, +3547, 0, 3361, +3547, 0, 3358, +3546, 0, 3355, +3546, 0, 3351, +3545, 0, 3346, +3544, 0, 3339, +3543, 0, 3329, +3541, 0, 3315, +3538, 0, 3296, +3538, 0, 3263, +3538, 0, 3214, +3538, 0, 3140, +3538, 0, 3018, +3538, 0, 2775, +3538, 0, 1477, +3538, 0, 0, +3538, 2970, 0, +3673, 3429, 0, +3807, 3708, 0, +3940, 3926, 0, +4030, 4073, 0, +4095, 4095, 0, +3680, 0, 3478, +3680, 0, 3478, +3680, 0, 3478, +3680, 0, 3478, +3680, 0, 3478, +3680, 0, 3477, +3680, 0, 3477, +3680, 0, 3476, +3680, 0, 3475, +3680, 0, 3475, +3679, 0, 3473, +3679, 0, 3472, +3679, 0, 3469, +3678, 0, 3466, +3678, 0, 3462, +3677, 0, 3456, +3676, 0, 3448, +3675, 0, 3438, +3673, 0, 3423, +3673, 0, 3399, +3673, 0, 3363, +3673, 0, 3311, +3673, 0, 3231, +3673, 0, 3095, +3673, 0, 2809, +3673, 0, 0, +3673, 0, 0, +3673, 3079, 0, +3807, 3552, 0, +3940, 3836, 0, +4073, 4055, 0, +4095, 4095, 0, +3812, 0, 3594, +3812, 0, 3594, +3812, 0, 3594, +3812, 0, 3594, +3812, 0, 3594, +3812, 0, 3593, +3812, 0, 3593, +3812, 0, 3593, +3812, 0, 3592, +3812, 0, 3591, +3812, 0, 3590, +3812, 0, 3589, +3811, 0, 3587, +3811, 0, 3585, +3810, 0, 3582, +3810, 0, 3577, +3809, 0, 3571, +3808, 0, 3563, +3807, 0, 3552, +3807, 0, 3534, +3807, 0, 3508, +3807, 0, 3470, +3807, 0, 3415, +3807, 0, 3329, +3807, 0, 3181, +3807, 0, 2850, +3807, 0, 0, +3807, 0, 0, +3807, 3194, 0, +3940, 3678, 0, +4073, 3964, 0, +4095, 4095, 0, +3944, 0, 3713, +3944, 0, 3713, +3944, 0, 3713, +3944, 0, 3713, +3944, 0, 3713, +3944, 0, 3713, +3944, 0, 3713, +3944, 0, 3712, +3944, 0, 3712, +3944, 0, 3711, +3944, 0, 3711, +3944, 0, 3710, +3944, 0, 3708, +3943, 0, 3706, +3943, 0, 3704, +3943, 0, 3701, +3942, 0, 3696, +3941, 0, 3690, +3940, 0, 3682, +3940, 0, 3668, +3940, 0, 3649, +3940, 0, 3622, +3940, 0, 3583, +3940, 0, 3525, +3940, 0, 3434, +3940, 0, 3275, +3940, 0, 2899, +3940, 0, 0, +3940, 0, 0, +3940, 3312, 0, +4073, 3805, 0, +4095, 4094, 0, +4076, 0, 3836, +4076, 0, 3836, +4076, 0, 3836, +4076, 0, 3836, +4076, 0, 3836, +4076, 0, 3835, +4076, 0, 3835, +4076, 0, 3835, +4076, 0, 3835, +4076, 0, 3834, +4076, 0, 3834, +4076, 0, 3833, +4076, 0, 3832, +4076, 0, 3830, +4075, 0, 3829, +4075, 0, 3826, +4075, 0, 3823, +4074, 0, 3818, +4073, 0, 3812, +4073, 0, 3801, +4073, 0, 3787, +4073, 0, 3768, +4073, 0, 3740, +4073, 0, 3700, +4073, 0, 3640, +4073, 0, 3545, +4073, 0, 3376, +4073, 0, 2957, +4073, 0, 0, +4073, 0, 0, +4073, 3434, 0, +4095, 3935, 0, +4095, 0, 3961, +4095, 0, 3961, +4095, 0, 3961, +4095, 0, 3961, +4095, 0, 3961, +4095, 0, 3961, +4095, 0, 3961, +4095, 0, 3960, +4095, 0, 3960, +4095, 0, 3960, +4095, 0, 3959, +4095, 0, 3959, +4095, 0, 3958, +4095, 0, 3957, +4095, 0, 3955, +4095, 0, 3953, +4095, 0, 3951, +4095, 0, 3947, +4095, 0, 3943, +4095, 0, 3935, +4095, 0, 3924, +4095, 0, 3910, +4095, 0, 3890, +4095, 0, 3861, +4095, 0, 3820, +4095, 0, 3759, +4095, 0, 3661, +4095, 0, 3484, +4095, 0, 3027, +4095, 0, 0, +4095, 0, 0, +4095, 3558, 0, +0, 2354, 2623, +0, 2355, 2623, +0, 2357, 2623, +0, 2359, 2623, +0, 2363, 2623, +0, 2367, 2623, +0, 2372, 2623, +0, 2380, 2623, +0, 2390, 2623, +0, 2402, 2623, +0, 2419, 2623, +0, 2440, 2623, +0, 2466, 2623, +0, 2500, 2623, +0, 2541, 2623, +0, 2590, 2623, +0, 2623, 2595, +0, 2623, 2503, +0, 2623, 2340, +0, 2623, 1952, +0, 2755, 0, +0, 2887, 0, +1594, 3019, 0, +2352, 3152, 0, +2684, 3284, 0, +2925, 3416, 0, +3124, 3548, 0, +3300, 3680, 0, +3462, 3812, 0, +3616, 3944, 0, +3763, 4076, 0, +3907, 4095, 0, +0, 2352, 2623, +0, 2354, 2623, +0, 2356, 2623, +0, 2358, 2623, +0, 2362, 2623, +0, 2366, 2623, +0, 2372, 2623, +0, 2379, 2623, +0, 2388, 2623, +0, 2401, 2623, +0, 2417, 2623, +0, 2439, 2623, +0, 2465, 2623, +0, 2499, 2623, +0, 2540, 2623, +0, 2590, 2623, +0, 2623, 2595, +0, 2623, 2503, +0, 2623, 2341, +0, 2623, 1954, +0, 2755, 0, +0, 2887, 0, +1602, 3019, 0, +2353, 3152, 0, +2685, 3283, 0, +2925, 3416, 0, +3124, 3548, 0, +3300, 3680, 0, +3462, 3812, 0, +3616, 3944, 0, +3763, 4076, 0, +3907, 4095, 0, +0, 2351, 2623, +0, 2352, 2623, +0, 2355, 2623, +0, 2357, 2623, +0, 2360, 2623, +0, 2364, 2623, +0, 2370, 2623, +0, 2378, 2623, +0, 2387, 2623, +0, 2400, 2623, +0, 2416, 2623, +0, 2437, 2623, +0, 2464, 2623, +0, 2498, 2623, +0, 2539, 2623, +0, 2589, 2623, +0, 2623, 2596, +0, 2623, 2504, +0, 2623, 2342, +0, 2623, 1956, +0, 2755, 0, +0, 2887, 0, +1613, 3019, 0, +2355, 3152, 0, +2686, 3283, 0, +2926, 3416, 0, +3124, 3548, 0, +3300, 3680, 0, +3463, 3812, 0, +3616, 3944, 0, +3763, 4076, 0, +3907, 4095, 0, +0, 2348, 2623, +0, 2350, 2623, +0, 2352, 2623, +0, 2355, 2622, +0, 2358, 2622, +0, 2362, 2622, +0, 2368, 2622, +0, 2375, 2622, +0, 2385, 2622, +0, 2398, 2622, +0, 2414, 2622, +0, 2436, 2622, +0, 2463, 2622, +0, 2496, 2622, +0, 2538, 2622, +0, 2588, 2622, +0, 2622, 2596, +0, 2622, 2505, +0, 2622, 2343, +0, 2622, 1958, +0, 2755, 0, +0, 2887, 0, +1628, 3019, 0, +2358, 3151, 0, +2688, 3283, 0, +2927, 3416, 0, +3125, 3548, 0, +3301, 3680, 0, +3463, 3812, 0, +3616, 3944, 0, +3764, 4076, 0, +3907, 4095, 0, +0, 2345, 2623, +0, 2347, 2623, +0, 2349, 2623, +0, 2352, 2622, +0, 2356, 2622, +0, 2360, 2622, +0, 2366, 2622, +0, 2373, 2622, +0, 2383, 2622, +0, 2396, 2622, +0, 2412, 2622, +0, 2434, 2622, +0, 2460, 2622, +0, 2494, 2622, +0, 2536, 2622, +0, 2586, 2622, +0, 2622, 2597, +0, 2622, 2506, +0, 2622, 2344, +0, 2622, 1962, +0, 2755, 0, +0, 2887, 0, +1646, 3019, 0, +2362, 3151, 0, +2690, 3283, 0, +2928, 3416, 0, +3125, 3548, 0, +3301, 3680, 0, +3463, 3812, 0, +3617, 3944, 0, +3764, 4076, 0, +3907, 4095, 0, +0, 2341, 2623, +0, 2342, 2623, +0, 2345, 2623, +0, 2347, 2622, +0, 2351, 2622, +0, 2356, 2621, +0, 2362, 2621, +0, 2370, 2621, +0, 2380, 2621, +0, 2393, 2621, +0, 2409, 2621, +0, 2431, 2621, +0, 2458, 2621, +0, 2492, 2621, +0, 2533, 2621, +0, 2584, 2621, +0, 2621, 2598, +0, 2621, 2507, +0, 2621, 2346, +0, 2621, 1966, +0, 2754, 0, +0, 2887, 0, +1670, 3019, 0, +2367, 3151, 0, +2692, 3283, 0, +2929, 3416, 0, +3126, 3548, 0, +3302, 3680, 0, +3464, 3812, 0, +3617, 3944, 0, +3764, 4076, 0, +3908, 4095, 0, +0, 2335, 2623, +0, 2336, 2623, +0, 2338, 2623, +0, 2341, 2622, +0, 2346, 2622, +0, 2351, 2621, +0, 2357, 2621, +0, 2365, 2621, +0, 2375, 2621, +0, 2388, 2621, +0, 2405, 2621, +0, 2427, 2621, +0, 2454, 2621, +0, 2488, 2621, +0, 2530, 2621, +0, 2581, 2621, +0, 2621, 2600, +0, 2621, 2509, +0, 2621, 2349, +0, 2621, 1972, +0, 2754, 0, +0, 2886, 0, +1700, 3018, 0, +2373, 3151, 0, +2695, 3283, 0, +2931, 3415, 0, +3128, 3548, 0, +3303, 3680, 0, +3464, 3812, 0, +3617, 3944, 0, +3764, 4076, 0, +3908, 4095, 0, +0, 2327, 2623, +0, 2328, 2623, +0, 2331, 2623, +0, 2334, 2622, +0, 2337, 2622, +0, 2343, 2621, +0, 2350, 2621, +0, 2359, 2620, +0, 2369, 2620, +0, 2382, 2620, +0, 2399, 2620, +0, 2421, 2620, +0, 2449, 2620, +0, 2483, 2620, +0, 2526, 2620, +0, 2577, 2620, +0, 2620, 2602, +0, 2620, 2511, +0, 2620, 2352, +0, 2620, 1981, +0, 2753, 0, +0, 2886, 0, +1737, 3018, 0, +2382, 3151, 0, +2700, 3283, 0, +2934, 3415, 0, +3129, 3548, 0, +3304, 3680, 0, +3465, 3812, 0, +3618, 3944, 0, +3765, 4076, 0, +3908, 4095, 0, +0, 2315, 2623, +0, 2317, 2623, +0, 2320, 2623, +0, 2323, 2622, +0, 2327, 2622, +0, 2332, 2621, +0, 2339, 2621, +0, 2348, 2620, +0, 2361, 2619, +0, 2374, 2619, +0, 2392, 2619, +0, 2414, 2619, +0, 2442, 2619, +0, 2477, 2619, +0, 2520, 2619, +0, 2572, 2619, +0, 2619, 2604, +0, 2619, 2515, +0, 2619, 2357, +0, 2619, 1991, +0, 2752, 0, +0, 2885, 0, +1782, 3018, 0, +2394, 3151, 0, +2705, 3283, 0, +2937, 3415, 0, +3132, 3548, 0, +3305, 3680, 0, +3466, 3812, 0, +3619, 3944, 0, +3765, 4076, 0, +3908, 4095, 0, +0, 2300, 2623, +0, 2302, 2623, +0, 2304, 2623, +0, 2308, 2622, +0, 2312, 2622, +0, 2317, 2621, +0, 2325, 2621, +0, 2334, 2620, +0, 2347, 2619, +0, 2363, 2618, +0, 2381, 2618, +0, 2404, 2618, +0, 2432, 2618, +0, 2469, 2618, +0, 2512, 2618, +0, 2565, 2618, +0, 2618, 2608, +0, 2618, 2519, +0, 2618, 2363, +0, 2618, 2005, +0, 2751, 0, +0, 2885, 0, +1837, 3017, 0, +2408, 3150, 0, +2713, 3282, 0, +2942, 3415, 0, +3135, 3547, 0, +3307, 3680, 0, +3468, 3812, 0, +3620, 3944, 0, +3766, 4076, 0, +3909, 4095, 0, +0, 2278, 2623, +0, 2281, 2623, +0, 2283, 2623, +0, 2287, 2622, +0, 2291, 2622, +0, 2297, 2621, +0, 2304, 2621, +0, 2314, 2620, +0, 2328, 2619, +0, 2345, 2618, +0, 2367, 2616, +0, 2390, 2616, +0, 2420, 2616, +0, 2456, 2616, +0, 2501, 2616, +0, 2555, 2616, +0, 2616, 2613, +0, 2616, 2525, +0, 2616, 2372, +0, 2616, 2022, +0, 2750, 0, +0, 2883, 0, +1900, 3016, 0, +2427, 3150, 0, +2723, 3282, 0, +2947, 3414, 0, +3138, 3547, 0, +3310, 3679, 0, +3469, 3812, 0, +3621, 3944, 0, +3767, 4076, 0, +3910, 4095, 0, +0, 2248, 2623, +0, 2250, 2623, +0, 2253, 2623, +0, 2256, 2622, +0, 2261, 2622, +0, 2268, 2621, +0, 2276, 2621, +0, 2287, 2620, +0, 2301, 2619, +0, 2319, 2618, +0, 2342, 2616, +0, 2371, 2613, +0, 2402, 2613, +0, 2440, 2613, +0, 2487, 2613, +0, 2542, 2613, +0, 2607, 2613, +0, 2613, 2533, +0, 2613, 2382, +0, 2613, 2045, +0, 2748, 0, +0, 2882, 0, +1974, 3015, 0, +2452, 3149, 0, +2735, 3281, 0, +2956, 3414, 0, +3144, 3547, 0, +3314, 3679, 0, +3472, 3812, 0, +3623, 3944, 0, +3768, 4076, 0, +3910, 4095, 0, +0, 2205, 2623, +0, 2207, 2623, +0, 2210, 2623, +0, 2214, 2622, +0, 2219, 2622, +0, 2226, 2621, +0, 2235, 2621, +0, 2247, 2620, +0, 2262, 2619, +0, 2281, 2618, +0, 2306, 2616, +0, 2338, 2613, +0, 2377, 2610, +0, 2417, 2610, +0, 2466, 2610, +0, 2524, 2610, +0, 2592, 2610, +0, 2610, 2543, +0, 2610, 2396, +0, 2610, 2073, +0, 2746, 0, +0, 2880, 0, +2056, 3014, 0, +2482, 3148, 0, +2752, 3280, 0, +2966, 3414, 0, +3151, 3546, 0, +3318, 3679, 0, +3475, 3811, 0, +3625, 3944, 0, +3770, 4076, 0, +3912, 4095, 0, +0, 2138, 2623, +0, 2141, 2623, +0, 2144, 2623, +0, 2149, 2622, +0, 2155, 2622, +0, 2163, 2621, +0, 2173, 2621, +0, 2187, 2620, +0, 2204, 2619, +0, 2226, 2618, +0, 2255, 2616, +0, 2290, 2613, +0, 2333, 2610, +0, 2385, 2605, +0, 2437, 2605, +0, 2498, 2605, +0, 2570, 2605, +0, 2605, 2556, +0, 2605, 2414, +0, 2605, 2109, +0, 2742, 0, +817, 2878, 0, +2148, 3012, 0, +2521, 3146, 0, +2773, 3280, 0, +2979, 3413, 0, +3160, 3546, 0, +3325, 3678, 0, +3480, 3811, 0, +3628, 3943, 0, +3773, 4076, 0, +3913, 4095, 0, +0, 2032, 2623, +0, 2035, 2623, +0, 2039, 2623, +0, 2045, 2622, +0, 2052, 2622, +0, 2062, 2621, +0, 2075, 2621, +0, 2092, 2620, +0, 2113, 2619, +0, 2140, 2618, +0, 2174, 2616, +0, 2216, 2613, +0, 2266, 2610, +0, 2326, 2605, +611, 2395, 2599, +611, 2462, 2599, +611, 2538, 2599, +611, 2599, 2572, +611, 2599, 2437, +611, 2599, 2153, +0, 2738, 817, +1596, 2874, 0, +2247, 3010, 0, +2566, 3144, 0, +2800, 3278, 0, +2997, 3412, 0, +3171, 3545, 0, +3333, 3678, 0, +3486, 3810, 0, +3632, 3943, 0, +3776, 4075, 0, +3916, 4095, 0, +0, 1833, 2623, +0, 1838, 2623, +0, 1845, 2623, +0, 1853, 2622, +0, 1865, 2622, +0, 1880, 2621, +0, 1899, 2621, +0, 1923, 2620, +0, 1954, 2619, +0, 1991, 2618, +0, 2038, 2616, +0, 2093, 2613, +0, 2158, 2610, +0, 2233, 2605, +611, 2316, 2599, +1533, 2408, 2591, +1533, 2493, 2591, +1533, 2587, 2591, +1533, 2591, 2466, +1533, 2591, 2206, +738, 2731, 1362, +1932, 2870, 0, +2352, 3006, 0, +2622, 3142, 0, +2834, 3276, 0, +3019, 3410, 0, +3186, 3544, 0, +3344, 3677, 0, +3493, 3810, 0, +3638, 3943, 0, +3780, 4075, 0, +3919, 4095, 0, +0, 1232, 2623, +0, 1251, 2623, +0, 1275, 2623, +0, 1304, 2622, +0, 1342, 2622, +0, 1387, 2621, +0, 1441, 2621, +0, 1505, 2620, +0, 1578, 2619, +0, 1661, 2618, +0, 1752, 2616, +0, 1851, 2613, +0, 1956, 2610, +0, 2067, 2605, +611, 2183, 2599, +1533, 2303, 2591, +1883, 2425, 2579, +1883, 2533, 2579, +1883, 2579, 2502, +1883, 2579, 2267, +1667, 2723, 1664, +2173, 2863, 870, +2463, 3002, 0, +2687, 3138, 0, +2876, 3274, 0, +3047, 3408, 0, +3206, 3543, 0, +3358, 3676, 0, +3503, 3809, 0, +3646, 3942, 0, +3785, 4075, 0, +3923, 4095, 0, +0, 0, 2623, +0, 0, 2623, +0, 0, 2623, +0, 0, 2622, +0, 0, 2622, +0, 0, 2621, +0, 0, 2621, +0, 0, 2620, +0, 0, 2619, +0, 0, 2618, +0, 0, 2616, +0, 547, 2613, +0, 1330, 2610, +0, 1667, 2605, +611, 1908, 2599, +1533, 2108, 2591, +1883, 2284, 2579, +2129, 2447, 2563, +2129, 2563, 2545, +2129, 2563, 2339, +2114, 2711, 2015, +2372, 2855, 1796, +2579, 2995, 1006, +2761, 3134, 0, +2926, 3270, 0, +3082, 3406, 0, +3231, 3541, 0, +3376, 3675, 0, +3517, 3808, 0, +3655, 3941, 0, +3792, 4074, 0, +3928, 4095, 0, +0, 0, 2623, +0, 0, 2623, +0, 0, 2623, +0, 0, 2622, +0, 0, 2622, +0, 0, 2621, +0, 0, 2621, +0, 0, 2620, +0, 0, 2619, +0, 0, 2618, +0, 0, 2616, +0, 0, 2613, +0, 0, 2610, +705, 0, 2605, +1236, 611, 2599, +1533, 1533, 2591, +1883, 1981, 2579, +2129, 2258, 2563, +2331, 2475, 2541, +2331, 2541, 2420, +2391, 2696, 2261, +2549, 2843, 2147, +2699, 2987, 1930, +2845, 3128, 1137, +2986, 3266, 0, +3125, 3402, 0, +3263, 3538, 0, +3399, 3673, 0, +3534, 3807, 0, +3668, 3940, 0, +3801, 4073, 0, +3935, 4095, 0, +1952, 0, 2623, +1954, 0, 2623, +1956, 0, 2623, +1958, 0, 2622, +1962, 0, 2622, +1966, 0, 2621, +1972, 0, 2621, +1981, 0, 2620, +1991, 0, 2619, +2005, 0, 2618, +2022, 0, 2616, +2045, 0, 2613, +2073, 0, 2610, +2109, 0, 2605, +2153, 611, 2599, +2206, 1533, 2591, +2267, 1883, 2579, +2339, 2129, 2563, +2420, 2331, 2541, +2509, 2509, 2509, +2607, 2673, 2463, +2711, 2828, 2393, +2821, 2975, 2280, +2936, 3119, 2061, +3055, 3259, 1272, +3177, 3398, 0, +3302, 3535, 0, +3428, 3670, 0, +3556, 3805, 0, +3684, 3939, 0, +3814, 4072, 0, +3944, 4095, 0, +2473, 0, 2755, +2473, 0, 2755, +2474, 0, 2755, +2475, 0, 2755, +2476, 0, 2755, +2477, 0, 2754, +2479, 0, 2754, +2482, 0, 2753, +2485, 0, 2752, +2490, 0, 2751, +2496, 0, 2750, +2504, 0, 2748, +2515, 0, 2746, +2529, 0, 2742, +2547, 0, 2738, +2570, 738, 2731, +2598, 1664, 2723, +2634, 2015, 2711, +2678, 2261, 2696, +2673, 2463, 2607, +2673, 2552, 2463, +2828, 2810, 2393, +2929, 2975, 2280, +3022, 3119, 2061, +3122, 3259, 1272, +3230, 3398, 0, +3342, 3535, 0, +3459, 3670, 0, +3579, 3805, 0, +3702, 3939, 0, +3827, 4072, 0, +3954, 4095, 0, +2767, 0, 2887, +2767, 0, 2887, +2767, 0, 2887, +2768, 0, 2887, +2768, 0, 2887, +2769, 0, 2887, +2770, 0, 2886, +2772, 0, 2886, +2773, 0, 2885, +2776, 0, 2885, +2779, 0, 2883, +2784, 0, 2882, +2789, 0, 2880, +2797, 0, 2878, +2807, 0, 2874, +2820, 0, 2870, +2837, 870, 2863, +2855, 1796, 2852, +2843, 2147, 2797, +2828, 2393, 2711, +2828, 2393, 2522, +2828, 2603, 2393, +2975, 2898, 2280, +3116, 3119, 2061, +3199, 3259, 1272, +3291, 3398, 0, +3391, 3535, 0, +3497, 3670, 0, +3609, 3805, 0, +3725, 3939, 0, +3845, 4072, 0, +3968, 4095, 0, +2991, 0, 3019, +2991, 0, 3019, +2991, 0, 3019, +2991, 0, 3019, +2992, 0, 3019, +2992, 0, 3019, +2992, 0, 3018, +2993, 0, 3018, +2995, 0, 3018, +2996, 0, 3017, +2998, 0, 3016, +3001, 0, 3015, +3004, 0, 3014, +3009, 0, 3012, +3010, 0, 3004, +3006, 0, 2988, +3002, 0, 2966, +2995, 1006, 2935, +2987, 1930, 2890, +2975, 2280, 2821, +2975, 2280, 2680, +2975, 2280, 2377, +2975, 2664, 2280, +3119, 2995, 2061, +3259, 3233, 1272, +3362, 3398, 0, +3449, 3535, 0, +3543, 3670, 0, +3646, 3805, 0, +3754, 3939, 0, +3867, 4072, 0, +3984, 4095, 0, +3152, 0, 3120, +3152, 0, 3120, +3152, 0, 3120, +3151, 0, 3119, +3151, 0, 3119, +3151, 0, 3118, +3151, 0, 3117, +3151, 0, 3116, +3151, 0, 3115, +3150, 0, 3112, +3150, 0, 3110, +3149, 0, 3106, +3148, 0, 3100, +3146, 0, 3093, +3144, 0, 3084, +3142, 0, 3071, +3138, 0, 3053, +3134, 0, 3027, +3128, 1137, 2991, +3119, 2061, 2936, +3119, 2061, 2831, +3119, 2061, 2636, +3119, 2061, 2064, +3119, 2734, 2061, +3259, 3097, 1272, +3398, 3348, 0, +3516, 3535, 0, +3599, 3670, 0, +3690, 3805, 0, +3790, 3939, 0, +3895, 4072, 0, +4006, 4095, 0, +3284, 0, 3203, +3283, 0, 3203, +3283, 0, 3202, +3283, 0, 3202, +3283, 0, 3201, +3283, 0, 3201, +3283, 0, 3200, +3283, 0, 3199, +3283, 0, 3198, +3282, 0, 3196, +3282, 0, 3194, +3281, 0, 3191, +3280, 0, 3186, +3280, 0, 3180, +3278, 0, 3173, +3276, 0, 3162, +3274, 0, 3147, +3270, 0, 3126, +3266, 0, 3097, +3259, 1272, 3055, +3259, 1272, 2976, +3259, 1272, 2843, +3259, 1272, 2569, +3259, 1899, 1272, +3259, 2813, 1272, +3398, 3206, 0, +3535, 3467, 0, +3664, 3670, 0, +3744, 3805, 0, +3833, 3939, 0, +3930, 4072, 0, +4034, 4095, 0, +3416, 0, 3294, +3416, 0, 3294, +3416, 0, 3294, +3416, 0, 3293, +3416, 0, 3293, +3416, 0, 3293, +3415, 0, 3292, +3415, 0, 3291, +3415, 0, 3290, +3415, 0, 3289, +3414, 0, 3287, +3414, 0, 3284, +3414, 0, 3281, +3413, 0, 3276, +3412, 0, 3270, +3410, 0, 3261, +3408, 0, 3249, +3406, 0, 3233, +3402, 0, 3210, +3398, 0, 3177, +3398, 0, 3118, +3398, 0, 3025, +3398, 0, 2860, +3398, 0, 2458, +3398, 1484, 0, +3398, 2902, 0, +3535, 3321, 0, +3670, 3589, 0, +3805, 3802, 0, +3886, 3939, 0, +3973, 4072, 0, +4069, 4095, 0, +3548, 0, 3393, +3548, 0, 3393, +3548, 0, 3393, +3548, 0, 3393, +3548, 0, 3392, +3548, 0, 3392, +3548, 0, 3392, +3548, 0, 3391, +3548, 0, 3390, +3547, 0, 3389, +3547, 0, 3387, +3547, 0, 3385, +3546, 0, 3382, +3546, 0, 3379, +3545, 0, 3374, +3544, 0, 3367, +3543, 0, 3357, +3541, 0, 3344, +3538, 0, 3326, +3535, 0, 3302, +3535, 0, 3257, +3535, 0, 3190, +3535, 0, 3083, +3535, 0, 2881, +3535, 0, 2256, +3535, 0, 0, +3535, 2998, 0, +3670, 3439, 0, +3805, 3714, 0, +3939, 3929, 0, +4025, 4072, 0, +4095, 4095, 0, +3680, 0, 3499, +3680, 0, 3499, +3680, 0, 3499, +3680, 0, 3499, +3680, 0, 3498, +3680, 0, 3498, +3680, 0, 3497, +3680, 0, 3497, +3680, 0, 3496, +3680, 0, 3495, +3679, 0, 3494, +3679, 0, 3493, +3679, 0, 3490, +3678, 0, 3488, +3678, 0, 3483, +3677, 0, 3478, +3676, 0, 3471, +3675, 0, 3461, +3673, 0, 3447, +3670, 0, 3428, +3670, 0, 3395, +3670, 0, 3346, +3670, 0, 3273, +3670, 0, 3150, +3670, 0, 2908, +3670, 0, 1603, +3670, 0, 0, +3670, 3102, 0, +3805, 3561, 0, +3939, 3840, 0, +4072, 4058, 0, +4095, 4095, 0, +3812, 0, 3610, +3812, 0, 3610, +3812, 0, 3610, +3812, 0, 3610, +3812, 0, 3610, +3812, 0, 3609, +3812, 0, 3609, +3812, 0, 3609, +3812, 0, 3608, +3812, 0, 3607, +3812, 0, 3606, +3812, 0, 3605, +3811, 0, 3604, +3811, 0, 3601, +3810, 0, 3598, +3810, 0, 3594, +3809, 0, 3588, +3808, 0, 3581, +3807, 0, 3570, +3805, 0, 3556, +3805, 0, 3531, +3805, 0, 3495, +3805, 0, 3443, +3805, 0, 3363, +3805, 0, 3227, +3805, 0, 2941, +3805, 0, 0, +3805, 0, 0, +3805, 3211, 0, +3939, 3685, 0, +4072, 3968, 0, +4095, 4095, 0, +3944, 0, 3726, +3944, 0, 3726, +3944, 0, 3726, +3944, 0, 3726, +3944, 0, 3726, +3944, 0, 3725, +3944, 0, 3725, +3944, 0, 3725, +3944, 0, 3725, +3944, 0, 3724, +3944, 0, 3723, +3944, 0, 3722, +3944, 0, 3721, +3943, 0, 3719, +3943, 0, 3717, +3943, 0, 3713, +3942, 0, 3709, +3941, 0, 3703, +3940, 0, 3695, +3939, 0, 3684, +3939, 0, 3666, +3939, 0, 3640, +3939, 0, 3603, +3939, 0, 3547, +3939, 0, 3461, +3939, 0, 3313, +3939, 0, 2982, +3939, 0, 0, +3939, 0, 0, +3939, 3326, 0, +4072, 3810, 0, +4095, 4095, 0, +4076, 0, 3846, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3844, +4076, 0, 3843, +4076, 0, 3843, +4076, 0, 3841, +4076, 0, 3840, +4075, 0, 3838, +4075, 0, 3836, +4075, 0, 3833, +4074, 0, 3828, +4073, 0, 3822, +4072, 0, 3814, +4072, 0, 3800, +4072, 0, 3781, +4072, 0, 3754, +4072, 0, 3715, +4072, 0, 3657, +4072, 0, 3566, +4072, 0, 3407, +4072, 0, 3031, +4072, 0, 0, +4072, 0, 0, +4072, 3444, 0, +4095, 3938, 0, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3967, +4095, 0, 3967, +4095, 0, 3967, +4095, 0, 3966, +4095, 0, 3965, +4095, 0, 3964, +4095, 0, 3963, +4095, 0, 3961, +4095, 0, 3959, +4095, 0, 3955, +4095, 0, 3950, +4095, 0, 3944, +4095, 0, 3934, +4095, 0, 3920, +4095, 0, 3900, +4095, 0, 3872, +4095, 0, 3832, +4095, 0, 3772, +4095, 0, 3677, +4095, 0, 3509, +4095, 0, 3090, +4095, 0, 0, +4095, 0, 0, +4095, 3566, 0, +0, 2486, 2755, +0, 2487, 2755, +0, 2488, 2755, +0, 2490, 2755, +0, 2493, 2755, +0, 2496, 2755, +0, 2500, 2755, +0, 2505, 2755, +0, 2513, 2755, +0, 2523, 2755, +0, 2535, 2755, +0, 2552, 2755, +0, 2573, 2755, +0, 2599, 2755, +0, 2632, 2755, +0, 2673, 2755, +0, 2723, 2755, +0, 2755, 2727, +0, 2755, 2635, +0, 2755, 2473, +0, 2755, 2083, +0, 2887, 0, +0, 3019, 0, +1720, 3152, 0, +2481, 3284, 0, +2816, 3416, 0, +3056, 3548, 0, +3255, 3680, 0, +3432, 3812, 0, +3594, 3944, 0, +3748, 4076, 0, +3896, 4095, 0, +0, 2485, 2755, +0, 2486, 2755, +0, 2488, 2755, +0, 2489, 2755, +0, 2492, 2755, +0, 2495, 2755, +0, 2499, 2755, +0, 2505, 2755, +0, 2512, 2755, +0, 2522, 2755, +0, 2535, 2755, +0, 2551, 2755, +0, 2572, 2755, +0, 2598, 2755, +0, 2632, 2755, +0, 2673, 2755, +0, 2723, 2755, +0, 2755, 2727, +0, 2755, 2635, +0, 2755, 2473, +0, 2755, 2084, +0, 2887, 0, +0, 3019, 0, +1726, 3152, 0, +2482, 3283, 0, +2817, 3416, 0, +3057, 3548, 0, +3256, 3680, 0, +3432, 3812, 0, +3595, 3944, 0, +3748, 4076, 0, +3896, 4095, 0, +0, 2484, 2755, +0, 2485, 2755, +0, 2486, 2755, +0, 2488, 2755, +0, 2491, 2755, +0, 2494, 2755, +0, 2498, 2755, +0, 2504, 2755, +0, 2511, 2755, +0, 2521, 2755, +0, 2533, 2755, +0, 2550, 2755, +0, 2571, 2755, +0, 2598, 2755, +0, 2631, 2755, +0, 2672, 2755, +0, 2722, 2755, +0, 2755, 2728, +0, 2755, 2636, +0, 2755, 2474, +0, 2755, 2086, +0, 2887, 0, +0, 3019, 0, +1735, 3152, 0, +2484, 3283, 0, +2817, 3416, 0, +3057, 3548, 0, +3256, 3680, 0, +3432, 3812, 0, +3595, 3944, 0, +3748, 4076, 0, +3896, 4095, 0, +0, 2482, 2755, +0, 2483, 2755, +0, 2485, 2755, +0, 2487, 2755, +0, 2489, 2755, +0, 2492, 2755, +0, 2497, 2755, +0, 2502, 2755, +0, 2510, 2755, +0, 2520, 2755, +0, 2532, 2755, +0, 2549, 2755, +0, 2570, 2755, +0, 2596, 2755, +0, 2630, 2755, +0, 2671, 2755, +0, 2721, 2755, +0, 2755, 2728, +0, 2755, 2636, +0, 2755, 2475, +0, 2755, 2088, +0, 2887, 0, +0, 3019, 0, +1746, 3151, 0, +2486, 3283, 0, +2818, 3416, 0, +3058, 3548, 0, +3256, 3680, 0, +3432, 3812, 0, +3595, 3944, 0, +3748, 4076, 0, +3896, 4095, 0, +0, 2479, 2755, +0, 2481, 2755, +0, 2482, 2755, +0, 2484, 2755, +0, 2487, 2755, +0, 2490, 2755, +0, 2495, 2755, +0, 2501, 2755, +0, 2508, 2755, +0, 2517, 2755, +0, 2530, 2755, +0, 2547, 2755, +0, 2568, 2755, +0, 2595, 2755, +0, 2628, 2755, +0, 2670, 2755, +0, 2720, 2755, +0, 2755, 2729, +0, 2755, 2637, +0, 2755, 2476, +0, 2755, 2091, +0, 2887, 0, +0, 3019, 0, +1760, 3151, 0, +2489, 3283, 0, +2820, 3416, 0, +3059, 3548, 0, +3257, 3680, 0, +3433, 3812, 0, +3595, 3944, 0, +3748, 4076, 0, +3896, 4095, 0, +0, 2476, 2755, +0, 2477, 2755, +0, 2479, 2755, +0, 2481, 2755, +0, 2484, 2755, +0, 2488, 2754, +0, 2492, 2754, +0, 2498, 2754, +0, 2505, 2754, +0, 2515, 2754, +0, 2528, 2754, +0, 2545, 2754, +0, 2566, 2754, +0, 2593, 2754, +0, 2627, 2754, +0, 2668, 2754, +0, 2718, 2754, +0, 2754, 2730, +0, 2754, 2638, +0, 2754, 2477, +0, 2754, 2094, +0, 2887, 0, +0, 3019, 0, +1779, 3151, 0, +2493, 3283, 0, +2822, 3416, 0, +3060, 3548, 0, +3258, 3680, 0, +3433, 3812, 0, +3595, 3944, 0, +3749, 4076, 0, +3896, 4095, 0, +0, 2472, 2755, +0, 2473, 2755, +0, 2475, 2755, +0, 2477, 2755, +0, 2480, 2755, +0, 2484, 2754, +0, 2489, 2754, +0, 2494, 2754, +0, 2502, 2754, +0, 2512, 2754, +0, 2525, 2754, +0, 2541, 2754, +0, 2563, 2754, +0, 2590, 2754, +0, 2624, 2754, +0, 2666, 2754, +0, 2716, 2754, +0, 2754, 2731, +0, 2754, 2640, +0, 2754, 2479, +0, 2754, 2099, +0, 2886, 0, +0, 3018, 0, +1802, 3151, 0, +2498, 3283, 0, +2824, 3415, 0, +3061, 3548, 0, +3258, 3680, 0, +3434, 3812, 0, +3596, 3944, 0, +3749, 4076, 0, +3896, 4095, 0, +0, 2466, 2755, +0, 2467, 2755, +0, 2469, 2755, +0, 2471, 2755, +0, 2474, 2755, +0, 2478, 2754, +0, 2483, 2754, +0, 2490, 2753, +0, 2497, 2753, +0, 2507, 2753, +0, 2521, 2753, +0, 2537, 2753, +0, 2559, 2753, +0, 2586, 2753, +0, 2620, 2753, +0, 2662, 2753, +0, 2713, 2753, +0, 2753, 2732, +0, 2753, 2641, +0, 2753, 2482, +0, 2753, 2105, +0, 2886, 0, +0, 3018, 0, +1832, 3151, 0, +2504, 3283, 0, +2827, 3415, 0, +3063, 3548, 0, +3260, 3680, 0, +3435, 3812, 0, +3596, 3944, 0, +3749, 4076, 0, +3897, 4095, 0, +0, 2457, 2755, +0, 2459, 2755, +0, 2460, 2755, +0, 2463, 2755, +0, 2466, 2755, +0, 2470, 2754, +0, 2475, 2754, +0, 2482, 2753, +0, 2491, 2752, +0, 2501, 2752, +0, 2514, 2752, +0, 2532, 2752, +0, 2553, 2752, +0, 2581, 2752, +0, 2616, 2752, +0, 2658, 2752, +0, 2710, 2752, +0, 2752, 2734, +0, 2752, 2644, +0, 2752, 2485, +0, 2752, 2113, +0, 2885, 0, +0, 3018, 0, +1869, 3151, 0, +2513, 3283, 0, +2832, 3415, 0, +3066, 3548, 0, +3261, 3680, 0, +3436, 3812, 0, +3597, 3944, 0, +3750, 4076, 0, +3897, 4095, 0, +0, 2446, 2755, +0, 2448, 2755, +0, 2449, 2755, +0, 2452, 2755, +0, 2455, 2755, +0, 2459, 2754, +0, 2464, 2754, +0, 2471, 2753, +0, 2481, 2752, +0, 2493, 2751, +0, 2506, 2751, +0, 2524, 2751, +0, 2546, 2751, +0, 2574, 2751, +0, 2609, 2751, +0, 2652, 2751, +0, 2704, 2751, +0, 2751, 2737, +0, 2751, 2647, +0, 2751, 2490, +0, 2751, 2123, +0, 2885, 0, +0, 3017, 0, +1915, 3150, 0, +2524, 3282, 0, +2837, 3415, 0, +3069, 3547, 0, +3264, 3680, 0, +3437, 3812, 0, +3598, 3944, 0, +3751, 4076, 0, +3898, 4095, 0, +0, 2431, 2755, +0, 2432, 2755, +0, 2434, 2755, +0, 2436, 2755, +0, 2440, 2755, +0, 2444, 2754, +0, 2450, 2754, +0, 2457, 2753, +0, 2467, 2752, +0, 2479, 2751, +0, 2495, 2750, +0, 2514, 2750, +0, 2536, 2750, +0, 2565, 2750, +0, 2601, 2750, +0, 2645, 2750, +0, 2697, 2750, +0, 2750, 2741, +0, 2750, 2651, +0, 2750, 2496, +0, 2750, 2137, +0, 2883, 0, +0, 3016, 0, +1969, 3150, 0, +2539, 3282, 0, +2845, 3414, 0, +3074, 3547, 0, +3267, 3679, 0, +3439, 3812, 0, +3600, 3944, 0, +3752, 4076, 0, +3898, 4095, 0, +0, 2409, 2755, +0, 2411, 2755, +0, 2413, 2755, +0, 2415, 2755, +0, 2419, 2755, +0, 2423, 2754, +0, 2429, 2754, +0, 2437, 2753, +0, 2447, 2752, +0, 2460, 2751, +0, 2477, 2750, +0, 2499, 2748, +0, 2522, 2748, +0, 2552, 2748, +0, 2589, 2748, +0, 2634, 2748, +0, 2687, 2748, +0, 2748, 2745, +0, 2748, 2657, +0, 2748, 2504, +0, 2748, 2155, +0, 2882, 0, +0, 3015, 0, +2033, 3149, 0, +2558, 3281, 0, +2855, 3414, 0, +3080, 3547, 0, +3271, 3679, 0, +3442, 3812, 0, +3602, 3944, 0, +3753, 4076, 0, +3899, 4095, 0, +0, 2379, 2755, +0, 2381, 2755, +0, 2383, 2755, +0, 2386, 2755, +0, 2389, 2755, +0, 2394, 2754, +0, 2400, 2754, +0, 2408, 2753, +0, 2419, 2752, +0, 2433, 2751, +0, 2451, 2750, +0, 2474, 2748, +0, 2503, 2746, +0, 2534, 2746, +0, 2572, 2746, +0, 2619, 2746, +0, 2674, 2746, +0, 2740, 2746, +0, 2746, 2665, +0, 2746, 2515, +0, 2746, 2177, +0, 2880, 0, +0, 3014, 0, +2106, 3148, 0, +2583, 3280, 0, +2867, 3414, 0, +3087, 3546, 0, +3276, 3679, 0, +3446, 3811, 0, +3604, 3944, 0, +3755, 4076, 0, +3901, 4095, 0, +0, 2335, 2755, +0, 2337, 2755, +0, 2339, 2755, +0, 2342, 2755, +0, 2346, 2755, +0, 2351, 2754, +0, 2358, 2754, +0, 2367, 2753, +0, 2379, 2752, +0, 2394, 2751, +0, 2414, 2750, +0, 2439, 2748, +0, 2470, 2746, +0, 2509, 2742, +0, 2550, 2742, +0, 2598, 2742, +0, 2656, 2742, +0, 2724, 2742, +0, 2742, 2675, +0, 2742, 2529, +0, 2742, 2206, +0, 2878, 0, +0, 3012, 0, +2189, 3146, 0, +2613, 3280, 0, +2884, 3413, 0, +3098, 3546, 0, +3282, 3678, 0, +3450, 3811, 0, +3607, 3943, 0, +3757, 4076, 0, +3903, 4095, 0, +0, 2269, 2755, +0, 2271, 2755, +0, 2274, 2755, +0, 2277, 2755, +0, 2281, 2755, +0, 2287, 2754, +0, 2295, 2754, +0, 2305, 2753, +0, 2319, 2752, +0, 2336, 2751, +0, 2359, 2750, +0, 2387, 2748, +0, 2422, 2746, +0, 2465, 2742, +0, 2517, 2738, +0, 2569, 2738, +0, 2631, 2738, +0, 2702, 2738, +0, 2738, 2688, +0, 2738, 2547, +0, 2738, 2241, +0, 2874, 0, +922, 3010, 0, +2280, 3144, 0, +2651, 3278, 0, +2906, 3412, 0, +3111, 3545, 0, +3291, 3678, 0, +3457, 3810, 0, +3612, 3943, 0, +3760, 4075, 0, +3905, 4095, 0, +0, 2162, 2755, +0, 2164, 2755, +0, 2167, 2755, +0, 2172, 2755, +0, 2177, 2755, +0, 2185, 2754, +0, 2195, 2754, +0, 2208, 2753, +0, 2224, 2752, +0, 2245, 2751, +0, 2273, 2750, +0, 2306, 2748, +0, 2348, 2746, +0, 2398, 2742, +0, 2458, 2738, +738, 2527, 2731, +738, 2594, 2731, +738, 2671, 2731, +738, 2731, 2705, +738, 2731, 2570, +738, 2731, 2285, +0, 2870, 963, +1723, 3006, 0, +2379, 3142, 0, +2698, 3276, 0, +2933, 3410, 0, +3129, 3544, 0, +3303, 3677, 0, +3465, 3810, 0, +3618, 3943, 0, +3765, 4075, 0, +3908, 4095, 0, +0, 1962, 2755, +0, 1966, 2755, +0, 1971, 2755, +0, 1977, 2755, +0, 1986, 2755, +0, 1997, 2754, +0, 2012, 2754, +0, 2031, 2753, +0, 2056, 2752, +0, 2086, 2751, +0, 2124, 2750, +0, 2170, 2748, +0, 2226, 2746, +0, 2291, 2742, +0, 2365, 2738, +738, 2448, 2731, +1664, 2540, 2723, +1664, 2626, 2723, +1664, 2719, 2723, +1664, 2723, 2598, +1664, 2723, 2338, +870, 2863, 1498, +2062, 3002, 0, +2484, 3138, 0, +2753, 3274, 0, +2966, 3408, 0, +3151, 3543, 0, +3319, 3676, 0, +3475, 3809, 0, +3626, 3942, 0, +3770, 4075, 0, +3912, 4095, 0, +0, 1353, 2755, +0, 1367, 2755, +0, 1386, 2755, +0, 1409, 2755, +0, 1439, 2755, +0, 1476, 2754, +0, 1521, 2754, +0, 1575, 2753, +0, 1638, 2752, +0, 1711, 2751, +0, 1794, 2750, +0, 1885, 2748, +0, 1983, 2746, +0, 2089, 2742, +0, 2200, 2738, +738, 2315, 2731, +1664, 2435, 2723, +2015, 2557, 2711, +2015, 2665, 2711, +2015, 2711, 2634, +2015, 2711, 2400, +1797, 2855, 1796, +2303, 2995, 1006, +2596, 3134, 0, +2818, 3270, 0, +3008, 3406, 0, +3179, 3541, 0, +3338, 3675, 0, +3490, 3808, 0, +3635, 3941, 0, +3777, 4074, 0, +3917, 4095, 0, +0, 0, 2755, +0, 0, 2755, +0, 0, 2755, +0, 0, 2755, +0, 0, 2755, +0, 0, 2754, +0, 0, 2754, +0, 0, 2753, +0, 0, 2752, +0, 0, 2751, +0, 0, 2750, +0, 0, 2748, +0, 678, 2746, +0, 1463, 2742, +0, 1799, 2738, +738, 2040, 2731, +1664, 2240, 2723, +2015, 2416, 2711, +2261, 2579, 2696, +2261, 2696, 2678, +2261, 2696, 2471, +2246, 2843, 2147, +2503, 2987, 1930, +2712, 3128, 1137, +2893, 3266, 0, +3059, 3402, 0, +3214, 3538, 0, +3363, 3673, 0, +3508, 3807, 0, +3649, 3940, 0, +3787, 4073, 0, +3924, 4095, 0, +0, 0, 2755, +0, 0, 2755, +0, 0, 2755, +0, 0, 2755, +0, 0, 2755, +0, 0, 2754, +0, 0, 2754, +0, 0, 2753, +0, 0, 2752, +0, 0, 2751, +0, 0, 2750, +0, 0, 2748, +0, 0, 2746, +0, 0, 2742, +817, 0, 2738, +1362, 738, 2731, +1664, 1667, 2723, +2015, 2114, 2711, +2261, 2391, 2696, +2463, 2607, 2673, +2463, 2673, 2552, +2522, 2828, 2393, +2680, 2975, 2280, +2831, 3119, 2061, +2976, 3259, 1272, +3118, 3398, 0, +3257, 3535, 0, +3395, 3670, 0, +3531, 3805, 0, +3666, 3939, 0, +3800, 4072, 0, +3934, 4095, 0, +2083, 0, 2755, +2084, 0, 2755, +2086, 0, 2755, +2088, 0, 2755, +2091, 0, 2755, +2094, 0, 2754, +2099, 0, 2754, +2105, 0, 2753, +2113, 0, 2752, +2123, 0, 2751, +2137, 0, 2750, +2155, 0, 2748, +2177, 0, 2746, +2206, 0, 2742, +2241, 0, 2738, +2285, 738, 2731, +2338, 1664, 2723, +2400, 2015, 2711, +2471, 2261, 2696, +2552, 2463, 2673, +2642, 2642, 2642, +2739, 2805, 2596, +2843, 2959, 2526, +2954, 3108, 2412, +3069, 3251, 2194, +3187, 3392, 1406, +3309, 3530, 0, +3434, 3667, 0, +3560, 3802, 0, +3688, 3937, 0, +3816, 4071, 0, +3946, 4095, 0, +2604, 0, 2887, +2604, 0, 2887, +2605, 0, 2887, +2605, 0, 2887, +2606, 0, 2887, +2607, 0, 2887, +2609, 0, 2886, +2611, 0, 2886, +2613, 0, 2885, +2617, 0, 2885, +2621, 0, 2883, +2628, 0, 2882, +2636, 0, 2880, +2647, 0, 2878, +2661, 0, 2874, +2678, 0, 2870, +2701, 870, 2863, +2730, 1796, 2855, +2766, 2147, 2843, +2810, 2393, 2828, +2805, 2596, 2739, +2805, 2684, 2596, +2959, 2942, 2526, +3061, 3108, 2412, +3154, 3251, 2194, +3255, 3392, 1406, +3362, 3530, 0, +3474, 3667, 0, +3591, 3802, 0, +3711, 3937, 0, +3834, 4071, 0, +3960, 4095, 0, +2898, 0, 3019, +2898, 0, 3019, +2898, 0, 3019, +2899, 0, 3019, +2899, 0, 3019, +2900, 0, 3019, +2901, 0, 3018, +2902, 0, 3018, +2903, 0, 3018, +2905, 0, 3017, +2907, 0, 3016, +2911, 0, 3015, +2915, 0, 3014, +2921, 0, 3012, +2928, 0, 3010, +2939, 0, 3006, +2952, 0, 3002, +2968, 1006, 2995, +2987, 1930, 2984, +2975, 2280, 2929, +2959, 2526, 2843, +2959, 2526, 2654, +2959, 2735, 2526, +3108, 3031, 2412, +3248, 3251, 2194, +3331, 3392, 1406, +3423, 3530, 0, +3523, 3667, 0, +3629, 3802, 0, +3741, 3937, 0, +3857, 4071, 0, +3977, 4095, 0, +3123, 0, 3152, +3123, 0, 3152, +3123, 0, 3152, +3123, 0, 3151, +3123, 0, 3151, +3124, 0, 3151, +3124, 0, 3151, +3125, 0, 3151, +3126, 0, 3151, +3127, 0, 3150, +3128, 0, 3150, +3131, 0, 3149, +3133, 0, 3148, +3137, 0, 3146, +3141, 0, 3144, +3142, 0, 3136, +3138, 0, 3120, +3134, 0, 3098, +3128, 1137, 3067, +3119, 2061, 3022, +3108, 2412, 2954, +3108, 2412, 2813, +3108, 2412, 2511, +3108, 2796, 2412, +3251, 3126, 2194, +3392, 3365, 1406, +3495, 3530, 0, +3581, 3667, 0, +3676, 3802, 0, +3777, 3937, 0, +3886, 4071, 0, +3999, 4095, 0, +3284, 0, 3252, +3283, 0, 3252, +3283, 0, 3252, +3283, 0, 3252, +3283, 0, 3251, +3283, 0, 3251, +3283, 0, 3250, +3283, 0, 3249, +3283, 0, 3248, +3282, 0, 3247, +3282, 0, 3244, +3281, 0, 3242, +3280, 0, 3238, +3280, 0, 3233, +3278, 0, 3225, +3276, 0, 3216, +3274, 0, 3203, +3270, 0, 3184, +3266, 0, 3159, +3259, 1272, 3122, +3251, 2194, 3069, +3251, 2194, 2963, +3251, 2194, 2768, +3251, 2195, 2194, +3251, 2866, 2194, +3392, 3230, 1406, +3530, 3480, 0, +3648, 3667, 0, +3731, 3802, 0, +3822, 3937, 0, +3921, 4071, 0, +4027, 4095, 0, +3416, 0, 3335, +3416, 0, 3335, +3416, 0, 3335, +3416, 0, 3335, +3416, 0, 3334, +3416, 0, 3334, +3415, 0, 3333, +3415, 0, 3333, +3415, 0, 3331, +3415, 0, 3330, +3414, 0, 3329, +3414, 0, 3326, +3414, 0, 3323, +3413, 0, 3319, +3412, 0, 3313, +3410, 0, 3305, +3408, 0, 3294, +3406, 0, 3279, +3402, 0, 3259, +3398, 0, 3230, +3392, 1406, 3187, +3392, 1406, 3108, +3392, 1406, 2976, +3392, 1406, 2701, +3392, 2025, 1406, +3392, 2945, 1406, +3530, 3339, 0, +3667, 3599, 0, +3796, 3802, 0, +3876, 3937, 0, +3965, 4071, 0, +4062, 4095, 0, +3548, 0, 3426, +3548, 0, 3426, +3548, 0, 3426, +3548, 0, 3426, +3548, 0, 3426, +3548, 0, 3425, +3548, 0, 3425, +3548, 0, 3424, +3548, 0, 3423, +3547, 0, 3422, +3547, 0, 3421, +3547, 0, 3419, +3546, 0, 3416, +3546, 0, 3413, +3545, 0, 3408, +3544, 0, 3402, +3543, 0, 3393, +3541, 0, 3381, +3538, 0, 3365, +3535, 0, 3342, +3530, 0, 3309, +3530, 0, 3250, +3530, 0, 3157, +3530, 0, 2992, +3530, 0, 2593, +3530, 1621, 0, +3530, 3034, 0, +3667, 3453, 0, +3802, 3721, 0, +3937, 3934, 0, +4018, 4071, 0, +4095, 4095, 0, +3680, 0, 3525, +3680, 0, 3525, +3680, 0, 3525, +3680, 0, 3525, +3680, 0, 3525, +3680, 0, 3525, +3680, 0, 3524, +3680, 0, 3524, +3680, 0, 3523, +3680, 0, 3522, +3679, 0, 3521, +3679, 0, 3520, +3679, 0, 3517, +3678, 0, 3515, +3678, 0, 3511, +3677, 0, 3506, +3676, 0, 3499, +3675, 0, 3490, +3673, 0, 3477, +3670, 0, 3459, +3667, 0, 3434, +3667, 0, 3389, +3667, 0, 3323, +3667, 0, 3215, +3667, 0, 3014, +3667, 0, 2388, +3667, 0, 0, +3667, 3131, 0, +3802, 3571, 0, +3937, 3846, 0, +4071, 4061, 0, +4095, 4095, 0, +3812, 0, 3631, +3812, 0, 3631, +3812, 0, 3631, +3812, 0, 3631, +3812, 0, 3631, +3812, 0, 3630, +3812, 0, 3630, +3812, 0, 3630, +3812, 0, 3629, +3812, 0, 3629, +3812, 0, 3628, +3812, 0, 3626, +3811, 0, 3625, +3811, 0, 3622, +3810, 0, 3620, +3810, 0, 3616, +3809, 0, 3610, +3808, 0, 3603, +3807, 0, 3593, +3805, 0, 3579, +3802, 0, 3560, +3802, 0, 3527, +3802, 0, 3479, +3802, 0, 3405, +3802, 0, 3282, +3802, 0, 3040, +3802, 0, 1737, +3802, 0, 0, +3802, 3234, 0, +3937, 3692, 0, +4071, 3972, 0, +4095, 4095, 0, +3944, 0, 3742, +3944, 0, 3742, +3944, 0, 3742, +3944, 0, 3742, +3944, 0, 3742, +3944, 0, 3742, +3944, 0, 3741, +3944, 0, 3741, +3944, 0, 3741, +3944, 0, 3740, +3944, 0, 3740, +3944, 0, 3739, +3944, 0, 3737, +3943, 0, 3736, +3943, 0, 3733, +3943, 0, 3730, +3942, 0, 3726, +3941, 0, 3720, +3940, 0, 3713, +3939, 0, 3702, +3937, 0, 3688, +3937, 0, 3663, +3937, 0, 3628, +3937, 0, 3575, +3937, 0, 3495, +3937, 0, 3359, +3937, 0, 3073, +3937, 0, 0, +3937, 0, 0, +3937, 3344, 0, +4071, 3816, 0, +4095, 4095, 0, +4076, 0, 3858, +4076, 0, 3858, +4076, 0, 3858, +4076, 0, 3858, +4076, 0, 3858, +4076, 0, 3858, +4076, 0, 3858, +4076, 0, 3857, +4076, 0, 3857, +4076, 0, 3856, +4076, 0, 3856, +4076, 0, 3855, +4076, 0, 3854, +4076, 0, 3853, +4075, 0, 3851, +4075, 0, 3849, +4075, 0, 3846, +4074, 0, 3841, +4073, 0, 3835, +4072, 0, 3827, +4071, 0, 3816, +4071, 0, 3798, +4071, 0, 3772, +4071, 0, 3735, +4071, 0, 3679, +4071, 0, 3593, +4071, 0, 3445, +4071, 0, 3113, +4071, 0, 0, +4071, 0, 0, +4071, 3458, 0, +4095, 3943, 0, +4095, 0, 3978, +4095, 0, 3978, +4095, 0, 3978, +4095, 0, 3978, +4095, 0, 3977, +4095, 0, 3977, +4095, 0, 3977, +4095, 0, 3977, +4095, 0, 3977, +4095, 0, 3977, +4095, 0, 3976, +4095, 0, 3976, +4095, 0, 3975, +4095, 0, 3974, +4095, 0, 3972, +4095, 0, 3971, +4095, 0, 3968, +4095, 0, 3965, +4095, 0, 3961, +4095, 0, 3954, +4095, 0, 3946, +4095, 0, 3932, +4095, 0, 3913, +4095, 0, 3886, +4095, 0, 3847, +4095, 0, 3790, +4095, 0, 3699, +4095, 0, 3539, +4095, 0, 3164, +4095, 0, 0, +4095, 0, 0, +4095, 3576, 0, +0, 2618, 2887, +0, 2619, 2887, +0, 2620, 2887, +0, 2621, 2887, +0, 2623, 2887, +0, 2625, 2887, +0, 2628, 2887, +0, 2633, 2887, +0, 2638, 2887, +0, 2646, 2887, +0, 2655, 2887, +0, 2668, 2887, +0, 2684, 2887, +0, 2705, 2887, +0, 2732, 2887, +0, 2765, 2887, +0, 2806, 2887, +0, 2856, 2887, +0, 2887, 2859, +0, 2887, 2767, +0, 2887, 2604, +0, 2887, 2215, +0, 3019, 0, +0, 3152, 0, +1844, 3284, 0, +2613, 3416, 0, +2948, 3548, 0, +3188, 3680, 0, +3387, 3812, 0, +3564, 3944, 0, +3726, 4076, 0, +3880, 4095, 0, +0, 2617, 2887, +0, 2618, 2887, +0, 2619, 2887, +0, 2620, 2887, +0, 2622, 2887, +0, 2625, 2887, +0, 2628, 2887, +0, 2632, 2887, +0, 2638, 2887, +0, 2645, 2887, +0, 2655, 2887, +0, 2667, 2887, +0, 2684, 2887, +0, 2705, 2887, +0, 2731, 2887, +0, 2764, 2887, +0, 2805, 2887, +0, 2855, 2887, +0, 2887, 2859, +0, 2887, 2767, +0, 2887, 2604, +0, 2887, 2215, +0, 3019, 0, +0, 3152, 0, +1849, 3283, 0, +2614, 3416, 0, +2948, 3548, 0, +3188, 3680, 0, +3388, 3812, 0, +3564, 3944, 0, +3726, 4076, 0, +3880, 4095, 0, +0, 2616, 2887, +0, 2617, 2887, +0, 2618, 2887, +0, 2620, 2887, +0, 2621, 2887, +0, 2624, 2887, +0, 2627, 2887, +0, 2631, 2887, +0, 2637, 2887, +0, 2644, 2887, +0, 2654, 2887, +0, 2667, 2887, +0, 2683, 2887, +0, 2704, 2887, +0, 2731, 2887, +0, 2764, 2887, +0, 2805, 2887, +0, 2855, 2887, +0, 2887, 2859, +0, 2887, 2767, +0, 2887, 2605, +0, 2887, 2217, +0, 3019, 0, +0, 3152, 0, +1856, 3283, 0, +2615, 3416, 0, +2949, 3548, 0, +3189, 3680, 0, +3388, 3812, 0, +3564, 3944, 0, +3726, 4076, 0, +3880, 4095, 0, +0, 2615, 2887, +0, 2616, 2887, +0, 2617, 2887, +0, 2619, 2887, +0, 2620, 2887, +0, 2623, 2887, +0, 2626, 2887, +0, 2630, 2887, +0, 2636, 2887, +0, 2643, 2887, +0, 2653, 2887, +0, 2666, 2887, +0, 2682, 2887, +0, 2703, 2887, +0, 2730, 2887, +0, 2763, 2887, +0, 2804, 2887, +0, 2854, 2887, +0, 2887, 2860, +0, 2887, 2768, +0, 2887, 2605, +0, 2887, 2218, +0, 3019, 0, +0, 3151, 0, +1864, 3283, 0, +2617, 3416, 0, +2950, 3548, 0, +3189, 3680, 0, +3388, 3812, 0, +3564, 3944, 0, +3727, 4076, 0, +3880, 4095, 0, +0, 2613, 2887, +0, 2614, 2887, +0, 2615, 2887, +0, 2617, 2887, +0, 2619, 2887, +0, 2621, 2887, +0, 2625, 2887, +0, 2629, 2887, +0, 2635, 2887, +0, 2642, 2887, +0, 2651, 2887, +0, 2664, 2887, +0, 2681, 2887, +0, 2702, 2887, +0, 2728, 2887, +0, 2762, 2887, +0, 2803, 2887, +0, 2853, 2887, +0, 2887, 2860, +0, 2887, 2768, +0, 2887, 2606, +0, 2887, 2220, +0, 3019, 0, +0, 3151, 0, +1875, 3283, 0, +2619, 3416, 0, +2951, 3548, 0, +3190, 3680, 0, +3388, 3812, 0, +3564, 3944, 0, +3727, 4076, 0, +3880, 4095, 0, +0, 2611, 2887, +0, 2612, 2887, +0, 2613, 2887, +0, 2614, 2887, +0, 2617, 2887, +0, 2619, 2887, +0, 2623, 2887, +0, 2627, 2887, +0, 2632, 2887, +0, 2640, 2887, +0, 2650, 2887, +0, 2662, 2887, +0, 2679, 2887, +0, 2700, 2887, +0, 2727, 2887, +0, 2761, 2887, +0, 2802, 2887, +0, 2852, 2887, +0, 2887, 2861, +0, 2887, 2769, +0, 2887, 2607, +0, 2887, 2223, +0, 3019, 0, +0, 3151, 0, +1890, 3283, 0, +2621, 3416, 0, +2952, 3548, 0, +3191, 3680, 0, +3389, 3812, 0, +3565, 3944, 0, +3727, 4076, 0, +3881, 4095, 0, +0, 2607, 2887, +0, 2608, 2887, +0, 2609, 2887, +0, 2611, 2887, +0, 2613, 2887, +0, 2616, 2887, +0, 2620, 2886, +0, 2624, 2886, +0, 2630, 2886, +0, 2637, 2886, +0, 2647, 2886, +0, 2660, 2886, +0, 2677, 2886, +0, 2698, 2886, +0, 2725, 2886, +0, 2759, 2886, +0, 2800, 2886, +0, 2850, 2886, +0, 2886, 2862, +0, 2886, 2770, +0, 2886, 2609, +0, 2886, 2226, +0, 3018, 0, +0, 3151, 0, +1908, 3283, 0, +2625, 3415, 0, +2954, 3548, 0, +3192, 3680, 0, +3390, 3812, 0, +3565, 3944, 0, +3727, 4076, 0, +3881, 4095, 0, +0, 2603, 2887, +0, 2604, 2887, +0, 2605, 2887, +0, 2607, 2887, +0, 2609, 2887, +0, 2612, 2887, +0, 2616, 2886, +0, 2621, 2886, +0, 2626, 2886, +0, 2634, 2886, +0, 2644, 2886, +0, 2657, 2886, +0, 2673, 2886, +0, 2695, 2886, +0, 2722, 2886, +0, 2756, 2886, +0, 2798, 2886, +0, 2848, 2886, +0, 2886, 2863, +0, 2886, 2772, +0, 2886, 2611, +0, 2886, 2231, +0, 3018, 0, +0, 3151, 0, +1932, 3283, 0, +2630, 3415, 0, +2956, 3548, 0, +3193, 3680, 0, +3391, 3812, 0, +3566, 3944, 0, +3728, 4076, 0, +3881, 4095, 0, +0, 2597, 2887, +0, 2598, 2887, +0, 2599, 2887, +0, 2601, 2887, +0, 2603, 2887, +0, 2606, 2887, +0, 2610, 2886, +0, 2615, 2886, +0, 2622, 2885, +0, 2629, 2885, +0, 2639, 2885, +0, 2652, 2885, +0, 2669, 2885, +0, 2691, 2885, +0, 2718, 2885, +0, 2752, 2885, +0, 2795, 2885, +0, 2845, 2885, +0, 2885, 2864, +0, 2885, 2773, +0, 2885, 2613, +0, 2885, 2237, +0, 3018, 0, +0, 3151, 0, +1962, 3283, 0, +2637, 3415, 0, +2960, 3548, 0, +3195, 3680, 0, +3392, 3812, 0, +3567, 3944, 0, +3728, 4076, 0, +3881, 4095, 0, +0, 2589, 2887, +0, 2589, 2887, +0, 2591, 2887, +0, 2592, 2887, +0, 2595, 2887, +0, 2598, 2887, +0, 2602, 2886, +0, 2607, 2886, +0, 2614, 2885, +0, 2623, 2885, +0, 2633, 2885, +0, 2647, 2885, +0, 2664, 2885, +0, 2685, 2885, +0, 2713, 2885, +0, 2748, 2885, +0, 2790, 2885, +0, 2842, 2885, +0, 2885, 2866, +0, 2885, 2776, +0, 2885, 2617, +0, 2885, 2245, +0, 3017, 0, +0, 3150, 0, +1999, 3282, 0, +2646, 3415, 0, +2964, 3547, 0, +3198, 3680, 0, +3394, 3812, 0, +3568, 3944, 0, +3729, 4076, 0, +3882, 4095, 0, +0, 2577, 2887, +0, 2578, 2887, +0, 2580, 2887, +0, 2581, 2887, +0, 2584, 2887, +0, 2587, 2887, +0, 2591, 2886, +0, 2596, 2886, +0, 2603, 2885, +0, 2613, 2885, +0, 2625, 2883, +0, 2639, 2883, +0, 2656, 2883, +0, 2678, 2883, +0, 2706, 2883, +0, 2741, 2883, +0, 2784, 2883, +0, 2836, 2883, +0, 2883, 2869, +0, 2883, 2779, +0, 2883, 2621, +0, 2883, 2255, +0, 3016, 0, +0, 3150, 0, +2045, 3282, 0, +2657, 3414, 0, +2970, 3547, 0, +3201, 3679, 0, +3396, 3812, 0, +3569, 3944, 0, +3730, 4076, 0, +3883, 4095, 0, +0, 2562, 2887, +0, 2563, 2887, +0, 2564, 2887, +0, 2566, 2887, +0, 2569, 2887, +0, 2572, 2887, +0, 2576, 2886, +0, 2581, 2886, +0, 2589, 2885, +0, 2599, 2885, +0, 2611, 2883, +0, 2628, 2882, +0, 2645, 2882, +0, 2668, 2882, +0, 2697, 2882, +0, 2733, 2882, +0, 2777, 2882, +0, 2829, 2882, +0, 2882, 2873, +0, 2882, 2784, +0, 2882, 2628, +0, 2882, 2269, +0, 3015, 0, +0, 3149, 0, +2100, 3281, 0, +2672, 3414, 0, +2977, 3547, 0, +3206, 3679, 0, +3399, 3812, 0, +3571, 3944, 0, +3732, 4076, 0, +3884, 4095, 0, +0, 2541, 2887, +0, 2542, 2887, +0, 2543, 2887, +0, 2545, 2887, +0, 2548, 2887, +0, 2551, 2887, +0, 2555, 2886, +0, 2561, 2886, +0, 2569, 2885, +0, 2579, 2885, +0, 2592, 2883, +0, 2609, 2882, +0, 2631, 2880, +0, 2654, 2880, +0, 2684, 2880, +0, 2721, 2880, +0, 2766, 2880, +0, 2820, 2880, +0, 2880, 2877, +0, 2880, 2789, +0, 2880, 2636, +0, 2880, 2287, +0, 3014, 0, +0, 3148, 0, +2164, 3280, 0, +2691, 3414, 0, +2987, 3546, 0, +3212, 3679, 0, +3403, 3811, 0, +3574, 3944, 0, +3734, 4076, 0, +3885, 4095, 0, +0, 2510, 2887, +0, 2511, 2887, +0, 2513, 2887, +0, 2515, 2887, +0, 2517, 2887, +0, 2521, 2887, +0, 2526, 2886, +0, 2532, 2886, +0, 2540, 2885, +0, 2551, 2885, +0, 2565, 2883, +0, 2583, 2882, +0, 2606, 2880, +0, 2636, 2878, +0, 2666, 2878, +0, 2704, 2878, +0, 2751, 2878, +0, 2807, 2878, +0, 2872, 2878, +0, 2878, 2797, +0, 2878, 2647, +0, 2878, 2309, +0, 3012, 0, +0, 3146, 0, +2237, 3280, 0, +2715, 3413, 0, +3000, 3546, 0, +3220, 3678, 0, +3408, 3811, 0, +3578, 3943, 0, +3736, 4076, 0, +3887, 4095, 0, +0, 2466, 2887, +0, 2467, 2887, +0, 2469, 2887, +0, 2471, 2887, +0, 2474, 2887, +0, 2478, 2887, +0, 2483, 2886, +0, 2490, 2886, +0, 2499, 2885, +0, 2511, 2885, +0, 2526, 2883, +0, 2546, 2882, +0, 2571, 2880, +0, 2602, 2878, +0, 2641, 2874, +0, 2681, 2874, +0, 2730, 2874, +0, 2788, 2874, +0, 2856, 2874, +0, 2874, 2807, +0, 2874, 2661, +0, 2874, 2338, +0, 3010, 0, +0, 3144, 0, +2320, 3278, 0, +2746, 3412, 0, +3016, 3545, 0, +3230, 3678, 0, +3415, 3810, 0, +3583, 3943, 0, +3739, 4075, 0, +3889, 4095, 0, +0, 2400, 2887, +0, 2401, 2887, +0, 2403, 2887, +0, 2406, 2887, +0, 2409, 2887, +0, 2413, 2887, +0, 2419, 2886, +0, 2427, 2886, +0, 2438, 2885, +0, 2451, 2885, +0, 2469, 2883, +0, 2491, 2882, +0, 2519, 2880, +0, 2554, 2878, +0, 2597, 2874, +0, 2649, 2870, +0, 2701, 2870, +0, 2763, 2870, +0, 2834, 2870, +0, 2870, 2820, +0, 2870, 2678, +0, 2870, 2374, +0, 3006, 0, +1068, 3142, 0, +2411, 3276, 0, +2784, 3410, 0, +3038, 3544, 0, +3243, 3677, 0, +3424, 3810, 0, +3589, 3943, 0, +3744, 4075, 0, +3893, 4095, 0, +0, 2292, 2887, +0, 2294, 2887, +0, 2296, 2887, +0, 2299, 2887, +0, 2304, 2887, +0, 2310, 2887, +0, 2317, 2886, +0, 2327, 2886, +0, 2340, 2885, +0, 2356, 2885, +0, 2378, 2883, +0, 2405, 2882, +0, 2439, 2880, +0, 2480, 2878, +0, 2530, 2874, +0, 2590, 2870, +870, 2659, 2863, +870, 2726, 2863, +870, 2803, 2863, +870, 2863, 2837, +870, 2863, 2701, +870, 2863, 2417, +0, 3002, 1109, +1857, 3138, 0, +2510, 3274, 0, +2830, 3408, 0, +3065, 3543, 0, +3261, 3676, 0, +3435, 3809, 0, +3597, 3942, 0, +3750, 4075, 0, +3897, 4095, 0, +0, 2091, 2887, +0, 2094, 2887, +0, 2098, 2887, +0, 2103, 2887, +0, 2110, 2887, +0, 2118, 2887, +0, 2129, 2886, +0, 2144, 2886, +0, 2163, 2885, +0, 2188, 2885, +0, 2218, 2883, +0, 2256, 2882, +0, 2302, 2880, +0, 2358, 2878, +0, 2423, 2874, +0, 2497, 2870, +870, 2580, 2863, +1796, 2672, 2855, +1796, 2758, 2855, +1796, 2852, 2855, +1796, 2855, 2730, +1796, 2855, 2470, +1006, 2995, 1635, +2195, 3134, 0, +2616, 3270, 0, +2886, 3406, 0, +3099, 3541, 0, +3283, 3675, 0, +3451, 3808, 0, +3608, 3941, 0, +3757, 4074, 0, +3903, 4095, 0, +0, 1472, 2887, +0, 1483, 2887, +0, 1497, 2887, +0, 1516, 2887, +0, 1540, 2887, +0, 1569, 2887, +0, 1606, 2886, +0, 1651, 2886, +0, 1706, 2885, +0, 1769, 2885, +0, 1843, 2883, +0, 1925, 2882, +0, 2016, 2880, +0, 2115, 2878, +0, 2220, 2874, +0, 2332, 2870, +870, 2447, 2863, +1796, 2567, 2855, +2147, 2689, 2843, +2147, 2797, 2843, +2147, 2843, 2766, +2147, 2843, 2532, +1930, 2987, 1930, +2436, 3128, 1137, +2727, 3266, 0, +2951, 3402, 0, +3140, 3538, 0, +3311, 3673, 0, +3470, 3807, 0, +3622, 3940, 0, +3768, 4073, 0, +3910, 4095, 0, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2886, +0, 0, 2886, +0, 0, 2885, +0, 0, 2885, +0, 0, 2883, +0, 0, 2882, +0, 0, 2880, +0, 817, 2878, +0, 1596, 2874, +0, 1932, 2870, +870, 2173, 2863, +1796, 2372, 2855, +2147, 2549, 2843, +2393, 2711, 2828, +2393, 2828, 2810, +2393, 2828, 2603, +2377, 2975, 2280, +2636, 3119, 2061, +2843, 3259, 1272, +3025, 3398, 0, +3190, 3535, 0, +3346, 3670, 0, +3495, 3805, 0, +3640, 3939, 0, +3781, 4072, 0, +3920, 4095, 0, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2886, +0, 0, 2886, +0, 0, 2885, +0, 0, 2885, +0, 0, 2883, +0, 0, 2882, +0, 0, 2880, +0, 0, 2878, +0, 0, 2874, +963, 0, 2870, +1498, 870, 2863, +1796, 1797, 2855, +2147, 2246, 2843, +2393, 2522, 2828, +2596, 2739, 2805, +2596, 2805, 2684, +2654, 2959, 2526, +2813, 3108, 2412, +2963, 3251, 2194, +3108, 3392, 1406, +3250, 3530, 0, +3389, 3667, 0, +3527, 3802, 0, +3663, 3937, 0, +3798, 4071, 0, +3932, 4095, 0, +2215, 0, 2887, +2215, 0, 2887, +2217, 0, 2887, +2218, 0, 2887, +2220, 0, 2887, +2223, 0, 2887, +2226, 0, 2886, +2231, 0, 2886, +2237, 0, 2885, +2245, 0, 2885, +2255, 0, 2883, +2269, 0, 2882, +2287, 0, 2880, +2309, 0, 2878, +2338, 0, 2874, +2374, 0, 2870, +2417, 870, 2863, +2470, 1796, 2855, +2532, 2147, 2843, +2603, 2393, 2828, +2684, 2596, 2805, +2774, 2774, 2774, +2871, 2937, 2728, +2976, 3092, 2658, +3085, 3239, 2544, +3201, 3383, 2326, +3320, 3524, 1536, +3441, 3662, 0, +3566, 3799, 0, +3692, 3934, 0, +3820, 4069, 0, +3949, 4095, 0, +2735, 0, 3019, +2735, 0, 3019, +2736, 0, 3019, +2736, 0, 3019, +2737, 0, 3019, +2738, 0, 3019, +2739, 0, 3018, +2740, 0, 3018, +2742, 0, 3018, +2745, 0, 3017, +2749, 0, 3016, +2753, 0, 3015, +2759, 0, 3014, +2767, 0, 3012, +2778, 0, 3010, +2792, 0, 3006, +2810, 0, 3002, +2833, 1006, 2995, +2862, 1930, 2987, +2898, 2280, 2975, +2942, 2526, 2959, +2937, 2728, 2871, +2937, 2816, 2728, +3092, 3074, 2658, +3193, 3239, 2544, +3286, 3383, 2326, +3387, 3524, 1536, +3494, 3662, 0, +3606, 3799, 0, +3723, 3934, 0, +3843, 4069, 0, +3966, 4095, 0, +3031, 0, 3152, +3031, 0, 3152, +3031, 0, 3152, +3031, 0, 3151, +3031, 0, 3151, +3032, 0, 3151, +3032, 0, 3151, +3033, 0, 3151, +3034, 0, 3151, +3036, 0, 3150, +3038, 0, 3150, +3040, 0, 3149, +3043, 0, 3148, +3047, 0, 3146, +3053, 0, 3144, +3061, 0, 3142, +3071, 0, 3138, +3084, 0, 3134, +3101, 1137, 3128, +3119, 2061, 3116, +3108, 2412, 3061, +3092, 2658, 2976, +3092, 2658, 2787, +3092, 2867, 2658, +3239, 3162, 2544, +3380, 3383, 2326, +3463, 3524, 1536, +3555, 3662, 0, +3655, 3799, 0, +3761, 3934, 0, +3873, 4069, 0, +3989, 4095, 0, +3254, 0, 3284, +3254, 0, 3283, +3255, 0, 3283, +3255, 0, 3283, +3255, 0, 3283, +3255, 0, 3283, +3256, 0, 3283, +3256, 0, 3283, +3257, 0, 3283, +3257, 0, 3282, +3259, 0, 3282, +3260, 0, 3281, +3262, 0, 3280, +3265, 0, 3280, +3269, 0, 3278, +3273, 0, 3276, +3274, 0, 3268, +3270, 0, 3252, +3266, 0, 3230, +3259, 1272, 3199, +3251, 2194, 3154, +3239, 2544, 3085, +3239, 2544, 2945, +3239, 2544, 2642, +3239, 2928, 2544, +3383, 3258, 2326, +3524, 3497, 1536, +3626, 3662, 0, +3713, 3799, 0, +3808, 3934, 0, +3910, 4069, 0, +4018, 4095, 0, +3416, 0, 3385, +3416, 0, 3385, +3416, 0, 3384, +3416, 0, 3384, +3416, 0, 3384, +3416, 0, 3384, +3415, 0, 3383, +3415, 0, 3382, +3415, 0, 3381, +3415, 0, 3380, +3414, 0, 3379, +3414, 0, 3376, +3414, 0, 3374, +3413, 0, 3370, +3412, 0, 3365, +3410, 0, 3358, +3408, 0, 3348, +3406, 0, 3335, +3402, 0, 3317, +3398, 0, 3291, +3392, 1406, 3255, +3383, 2326, 3201, +3383, 2326, 3095, +3383, 2326, 2900, +3383, 2326, 2328, +3383, 2998, 2326, +3524, 3362, 1536, +3662, 3612, 0, +3781, 3799, 0, +3863, 3934, 0, +3954, 4069, 0, +4054, 4095, 0, +3548, 0, 3467, +3548, 0, 3467, +3548, 0, 3467, +3548, 0, 3467, +3548, 0, 3467, +3548, 0, 3466, +3548, 0, 3466, +3548, 0, 3466, +3548, 0, 3465, +3547, 0, 3464, +3547, 0, 3462, +3547, 0, 3461, +3546, 0, 3458, +3546, 0, 3455, +3545, 0, 3451, +3544, 0, 3445, +3543, 0, 3437, +3541, 0, 3426, +3538, 0, 3411, +3535, 0, 3391, +3530, 0, 3362, +3524, 1536, 3320, +3524, 1536, 3241, +3524, 1536, 3108, +3524, 1536, 2833, +3524, 2158, 1536, +3524, 3078, 1536, +3662, 3471, 0, +3799, 3731, 0, +3928, 3934, 0, +4008, 4069, 0, +4095, 4095, 0, +3680, 0, 3558, +3680, 0, 3558, +3680, 0, 3558, +3680, 0, 3558, +3680, 0, 3558, +3680, 0, 3558, +3680, 0, 3557, +3680, 0, 3557, +3680, 0, 3556, +3680, 0, 3556, +3679, 0, 3554, +3679, 0, 3553, +3679, 0, 3551, +3678, 0, 3548, +3678, 0, 3545, +3677, 0, 3540, +3676, 0, 3534, +3675, 0, 3525, +3673, 0, 3513, +3670, 0, 3497, +3667, 0, 3474, +3662, 0, 3441, +3662, 0, 3382, +3662, 0, 3289, +3662, 0, 3125, +3662, 0, 2724, +3662, 1753, 0, +3662, 3166, 0, +3799, 3585, 0, +3934, 3853, 0, +4069, 4066, 0, +4095, 4095, 0, +3812, 0, 3657, +3812, 0, 3657, +3812, 0, 3657, +3812, 0, 3657, +3812, 0, 3657, +3812, 0, 3657, +3812, 0, 3657, +3812, 0, 3656, +3812, 0, 3656, +3812, 0, 3655, +3812, 0, 3654, +3812, 0, 3653, +3811, 0, 3652, +3811, 0, 3650, +3810, 0, 3647, +3810, 0, 3643, +3809, 0, 3638, +3808, 0, 3631, +3807, 0, 3622, +3805, 0, 3609, +3802, 0, 3591, +3799, 0, 3566, +3799, 0, 3522, +3799, 0, 3455, +3799, 0, 3347, +3799, 0, 3145, +3799, 0, 2519, +3799, 0, 0, +3799, 3262, 0, +3934, 3703, 0, +4069, 3978, 0, +4095, 4095, 0, +3944, 0, 3763, +3944, 0, 3763, +3944, 0, 3763, +3944, 0, 3763, +3944, 0, 3763, +3944, 0, 3763, +3944, 0, 3762, +3944, 0, 3762, +3944, 0, 3762, +3944, 0, 3761, +3944, 0, 3761, +3944, 0, 3760, +3944, 0, 3758, +3943, 0, 3757, +3943, 0, 3755, +3943, 0, 3752, +3942, 0, 3748, +3941, 0, 3742, +3940, 0, 3735, +3939, 0, 3725, +3937, 0, 3711, +3934, 0, 3692, +3934, 0, 3659, +3934, 0, 3611, +3934, 0, 3537, +3934, 0, 3414, +3934, 0, 3172, +3934, 0, 1863, +3934, 0, 0, +3934, 3366, 0, +4069, 3824, 0, +4095, 4095, 0, +4076, 0, 3874, +4076, 0, 3874, +4076, 0, 3874, +4076, 0, 3874, +4076, 0, 3874, +4076, 0, 3874, +4076, 0, 3874, +4076, 0, 3873, +4076, 0, 3873, +4076, 0, 3873, +4076, 0, 3872, +4076, 0, 3872, +4076, 0, 3871, +4076, 0, 3869, +4075, 0, 3868, +4075, 0, 3865, +4075, 0, 3862, +4074, 0, 3858, +4073, 0, 3852, +4072, 0, 3845, +4071, 0, 3834, +4069, 0, 3820, +4069, 0, 3795, +4069, 0, 3760, +4069, 0, 3708, +4069, 0, 3627, +4069, 0, 3491, +4069, 0, 3205, +4069, 0, 0, +4069, 0, 0, +4069, 3475, 0, +4095, 3949, 0, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3989, +4095, 0, 3989, +4095, 0, 3989, +4095, 0, 3988, +4095, 0, 3988, +4095, 0, 3986, +4095, 0, 3985, +4095, 0, 3983, +4095, 0, 3981, +4095, 0, 3978, +4095, 0, 3974, +4095, 0, 3968, +4095, 0, 3960, +4095, 0, 3949, +4095, 0, 3930, +4095, 0, 3904, +4095, 0, 3867, +4095, 0, 3812, +4095, 0, 3726, +4095, 0, 3577, +4095, 0, 3246, +4095, 0, 0, +4095, 0, 0, +4095, 3590, 0, +0, 2750, 3019, +0, 2750, 3019, +0, 2751, 3019, +0, 2752, 3019, +0, 2754, 3019, +0, 2755, 3019, +0, 2758, 3019, +0, 2761, 3019, +0, 2765, 3019, +0, 2771, 3019, +0, 2778, 3019, +0, 2788, 3019, +0, 2800, 3019, +0, 2816, 3019, +0, 2837, 3019, +0, 2864, 3019, +0, 2897, 3019, +0, 2938, 3019, +0, 2988, 3019, +0, 3019, 2991, +0, 3019, 2898, +0, 3019, 2735, +0, 3019, 2346, +0, 3152, 0, +0, 3284, 0, +1977, 3416, 0, +2745, 3548, 0, +3080, 3680, 0, +3320, 3812, 0, +3520, 3944, 0, +3696, 4076, 0, +3859, 4095, 0, +0, 2749, 3019, +0, 2750, 3019, +0, 2751, 3019, +0, 2752, 3019, +0, 2753, 3019, +0, 2755, 3019, +0, 2757, 3019, +0, 2760, 3019, +0, 2765, 3019, +0, 2770, 3019, +0, 2777, 3019, +0, 2787, 3019, +0, 2800, 3019, +0, 2816, 3019, +0, 2837, 3019, +0, 2863, 3019, +0, 2897, 3019, +0, 2938, 3019, +0, 2987, 3019, +0, 3019, 2991, +0, 3019, 2898, +0, 3019, 2735, +0, 3019, 2346, +0, 3152, 0, +0, 3283, 0, +1981, 3416, 0, +2745, 3548, 0, +3080, 3680, 0, +3321, 3812, 0, +3520, 3944, 0, +3696, 4076, 0, +3859, 4095, 0, +0, 2748, 3019, +0, 2749, 3019, +0, 2750, 3019, +0, 2751, 3019, +0, 2752, 3019, +0, 2754, 3019, +0, 2757, 3019, +0, 2760, 3019, +0, 2764, 3019, +0, 2770, 3019, +0, 2777, 3019, +0, 2787, 3019, +0, 2799, 3019, +0, 2816, 3019, +0, 2836, 3019, +0, 2863, 3019, +0, 2896, 3019, +0, 2938, 3019, +0, 2987, 3019, +0, 3019, 2991, +0, 3019, 2898, +0, 3019, 2736, +0, 3019, 2347, +0, 3152, 0, +0, 3283, 0, +1986, 3416, 0, +2746, 3548, 0, +3081, 3680, 0, +3321, 3812, 0, +3520, 3944, 0, +3696, 4076, 0, +3859, 4095, 0, +0, 2747, 3019, +0, 2748, 3019, +0, 2749, 3019, +0, 2750, 3019, +0, 2751, 3019, +0, 2753, 3019, +0, 2756, 3019, +0, 2759, 3019, +0, 2763, 3019, +0, 2769, 3019, +0, 2776, 3019, +0, 2786, 3019, +0, 2798, 3019, +0, 2815, 3019, +0, 2836, 3019, +0, 2863, 3019, +0, 2896, 3019, +0, 2937, 3019, +0, 2987, 3019, +0, 3019, 2991, +0, 3019, 2899, +0, 3019, 2736, +0, 3019, 2348, +0, 3151, 0, +0, 3283, 0, +1992, 3416, 0, +2747, 3548, 0, +3081, 3680, 0, +3321, 3812, 0, +3520, 3944, 0, +3696, 4076, 0, +3859, 4095, 0, +0, 2746, 3019, +0, 2747, 3019, +0, 2747, 3019, +0, 2749, 3019, +0, 2750, 3019, +0, 2752, 3019, +0, 2755, 3019, +0, 2758, 3019, +0, 2762, 3019, +0, 2768, 3019, +0, 2775, 3019, +0, 2785, 3019, +0, 2797, 3019, +0, 2814, 3019, +0, 2835, 3019, +0, 2862, 3019, +0, 2895, 3019, +0, 2936, 3019, +0, 2986, 3019, +0, 3019, 2992, +0, 3019, 2899, +0, 3019, 2737, +0, 3019, 2350, +0, 3151, 0, +0, 3283, 0, +2000, 3416, 0, +2749, 3548, 0, +3082, 3680, 0, +3322, 3812, 0, +3520, 3944, 0, +3696, 4076, 0, +3859, 4095, 0, +0, 2744, 3019, +0, 2745, 3019, +0, 2746, 3019, +0, 2747, 3019, +0, 2749, 3019, +0, 2751, 3019, +0, 2753, 3019, +0, 2756, 3019, +0, 2761, 3019, +0, 2766, 3019, +0, 2774, 3019, +0, 2784, 3019, +0, 2796, 3019, +0, 2813, 3019, +0, 2834, 3019, +0, 2860, 3019, +0, 2894, 3019, +0, 2935, 3019, +0, 2985, 3019, +0, 3019, 2992, +0, 3019, 2900, +0, 3019, 2738, +0, 3019, 2352, +0, 3151, 0, +0, 3283, 0, +2011, 3416, 0, +2751, 3548, 0, +3083, 3680, 0, +3322, 3812, 0, +3521, 3944, 0, +3696, 4076, 0, +3859, 4095, 0, +0, 2742, 3019, +0, 2742, 3019, +0, 2743, 3019, +0, 2745, 3019, +0, 2746, 3019, +0, 2748, 3019, +0, 2751, 3018, +0, 2754, 3018, +0, 2759, 3018, +0, 2764, 3018, +0, 2772, 3018, +0, 2782, 3018, +0, 2794, 3018, +0, 2811, 3018, +0, 2832, 3018, +0, 2859, 3018, +0, 2892, 3018, +0, 2934, 3018, +0, 2984, 3018, +0, 3018, 2992, +0, 3018, 2901, +0, 3018, 2739, +0, 3018, 2354, +0, 3151, 0, +0, 3283, 0, +2026, 3415, 0, +2754, 3548, 0, +3084, 3680, 0, +3323, 3812, 0, +3521, 3944, 0, +3697, 4076, 0, +3859, 4095, 0, +0, 2738, 3019, +0, 2739, 3019, +0, 2740, 3019, +0, 2741, 3019, +0, 2743, 3019, +0, 2745, 3019, +0, 2748, 3018, +0, 2752, 3018, +0, 2756, 3018, +0, 2762, 3018, +0, 2769, 3018, +0, 2779, 3018, +0, 2792, 3018, +0, 2808, 3018, +0, 2830, 3018, +0, 2857, 3018, +0, 2890, 3018, +0, 2932, 3018, +0, 2982, 3018, +0, 3018, 2993, +0, 3018, 2902, +0, 3018, 2740, +0, 3018, 2358, +0, 3151, 0, +0, 3283, 0, +2044, 3415, 0, +2758, 3548, 0, +3086, 3680, 0, +3324, 3812, 0, +3522, 3944, 0, +3697, 4076, 0, +3860, 4095, 0, +0, 2734, 3019, +0, 2735, 3019, +0, 2735, 3019, +0, 2737, 3019, +0, 2738, 3019, +0, 2741, 3019, +0, 2744, 3018, +0, 2747, 3018, +0, 2752, 3018, +0, 2758, 3018, +0, 2766, 3018, +0, 2776, 3018, +0, 2789, 3018, +0, 2805, 3018, +0, 2827, 3018, +0, 2854, 3018, +0, 2888, 3018, +0, 2930, 3018, +0, 2980, 3018, +0, 3018, 2995, +0, 3018, 2903, +0, 3018, 2742, +0, 3018, 2362, +0, 3151, 0, +0, 3283, 0, +2068, 3415, 0, +2763, 3548, 0, +3089, 3680, 0, +3326, 3812, 0, +3523, 3944, 0, +3698, 4076, 0, +3860, 4095, 0, +0, 2728, 3019, +0, 2729, 3019, +0, 2729, 3019, +0, 2731, 3019, +0, 2732, 3019, +0, 2735, 3019, +0, 2738, 3018, +0, 2742, 3018, +0, 2747, 3018, +0, 2754, 3017, +0, 2761, 3017, +0, 2771, 3017, +0, 2784, 3017, +0, 2801, 3017, +0, 2823, 3017, +0, 2850, 3017, +0, 2885, 3017, +0, 2927, 3017, +0, 2977, 3017, +0, 3017, 2996, +0, 3017, 2905, +0, 3017, 2745, +0, 3017, 2369, +0, 3150, 0, +0, 3282, 0, +2098, 3415, 0, +2770, 3547, 0, +3092, 3680, 0, +3328, 3812, 0, +3524, 3944, 0, +3699, 4076, 0, +3861, 4095, 0, +0, 2720, 3019, +0, 2720, 3019, +0, 2721, 3019, +0, 2723, 3019, +0, 2724, 3019, +0, 2727, 3019, +0, 2730, 3018, +0, 2734, 3018, +0, 2739, 3018, +0, 2746, 3017, +0, 2755, 3016, +0, 2765, 3016, +0, 2778, 3016, +0, 2796, 3016, +0, 2817, 3016, +0, 2845, 3016, +0, 2880, 3016, +0, 2922, 3016, +0, 2974, 3016, +0, 3016, 2998, +0, 3016, 2907, +0, 3016, 2749, +0, 3016, 2377, +0, 3150, 0, +0, 3282, 0, +2135, 3414, 0, +2778, 3547, 0, +3096, 3679, 0, +3330, 3812, 0, +3526, 3944, 0, +3700, 4076, 0, +3862, 4095, 0, +0, 2708, 3019, +0, 2709, 3019, +0, 2710, 3019, +0, 2712, 3019, +0, 2713, 3019, +0, 2716, 3019, +0, 2719, 3018, +0, 2723, 3018, +0, 2728, 3018, +0, 2735, 3017, +0, 2745, 3016, +0, 2757, 3015, +0, 2770, 3015, +0, 2788, 3015, +0, 2810, 3015, +0, 2838, 3015, +0, 2873, 3015, +0, 2916, 3015, +0, 2968, 3015, +0, 3015, 3001, +0, 3015, 2911, +0, 3015, 2753, +0, 3015, 2387, +0, 3149, 0, +0, 3281, 0, +2180, 3414, 0, +2790, 3547, 0, +3102, 3679, 0, +3333, 3812, 0, +3528, 3944, 0, +3701, 4076, 0, +3863, 4095, 0, +0, 2693, 3019, +0, 2694, 3019, +0, 2695, 3019, +0, 2696, 3019, +0, 2698, 3019, +0, 2701, 3019, +0, 2703, 3018, +0, 2708, 3018, +0, 2714, 3018, +0, 2721, 3017, +0, 2731, 3016, +0, 2743, 3015, +0, 2759, 3014, +0, 2777, 3014, +0, 2800, 3014, +0, 2829, 3014, +0, 2865, 3014, +0, 2908, 3014, +0, 2961, 3014, +0, 3014, 3004, +0, 3014, 2915, +0, 3014, 2759, +0, 3014, 2401, +0, 3148, 0, +0, 3280, 0, +2234, 3414, 0, +2804, 3546, 0, +3110, 3679, 0, +3338, 3811, 0, +3531, 3944, 0, +3703, 4076, 0, +3864, 4095, 0, +0, 2672, 3019, +0, 2672, 3019, +0, 2673, 3019, +0, 2675, 3019, +0, 2677, 3019, +0, 2679, 3019, +0, 2683, 3018, +0, 2687, 3018, +0, 2693, 3018, +0, 2701, 3017, +0, 2711, 3016, +0, 2724, 3015, +0, 2741, 3014, +0, 2763, 3012, +0, 2786, 3012, +0, 2816, 3012, +0, 2853, 3012, +0, 2898, 3012, +0, 2952, 3012, +0, 3012, 3009, +0, 3012, 2921, +0, 3012, 2767, +0, 3012, 2419, +0, 3146, 0, +0, 3280, 0, +2298, 3413, 0, +2824, 3546, 0, +3119, 3678, 0, +3344, 3811, 0, +3535, 3943, 0, +3706, 4076, 0, +3866, 4095, 0, +0, 2641, 3019, +0, 2642, 3019, +0, 2643, 3019, +0, 2645, 3019, +0, 2647, 3019, +0, 2649, 3019, +0, 2653, 3018, +0, 2658, 3018, +0, 2664, 3018, +0, 2672, 3017, +0, 2683, 3016, +0, 2697, 3015, +0, 2715, 3014, +0, 2738, 3012, +0, 2767, 3010, +0, 2798, 3010, +0, 2836, 3010, +0, 2883, 3010, +0, 2939, 3010, +0, 3004, 3010, +0, 3010, 2928, +0, 3010, 2778, +0, 3010, 2441, +0, 3144, 0, +0, 3278, 0, +2371, 3412, 0, +2848, 3545, 0, +3132, 3678, 0, +3352, 3810, 0, +3540, 3943, 0, +3710, 4075, 0, +3868, 4095, 0, +0, 2597, 3019, +0, 2598, 3019, +0, 2599, 3019, +0, 2601, 3019, +0, 2603, 3019, +0, 2606, 3019, +0, 2610, 3018, +0, 2615, 3018, +0, 2622, 3018, +0, 2631, 3017, +0, 2643, 3016, +0, 2658, 3015, +0, 2678, 3014, +0, 2703, 3012, +0, 2734, 3010, +0, 2773, 3006, +0, 2813, 3006, +0, 2862, 3006, +0, 2920, 3006, +0, 2988, 3006, +0, 3006, 2939, +0, 3006, 2792, +0, 3006, 2470, +0, 3142, 0, +0, 3276, 0, +2453, 3410, 0, +2879, 3544, 0, +3149, 3677, 0, +3362, 3810, 0, +3547, 3943, 0, +3714, 4075, 0, +3872, 4095, 0, +0, 2530, 3019, +0, 2531, 3019, +0, 2533, 3019, +0, 2535, 3019, +0, 2537, 3019, +0, 2541, 3019, +0, 2545, 3018, +0, 2551, 3018, +0, 2559, 3018, +0, 2570, 3017, +0, 2583, 3016, +0, 2600, 3015, +0, 2623, 3014, +0, 2651, 3012, +0, 2686, 3010, +0, 2729, 3006, +0, 2781, 3002, +0, 2833, 3002, +0, 2895, 3002, +0, 2966, 3002, +0, 3002, 2952, +0, 3002, 2810, +0, 3002, 2505, +0, 3138, 0, +1202, 3274, 0, +2545, 3408, 0, +2917, 3543, 0, +3170, 3676, 0, +3376, 3809, 0, +3556, 3942, 0, +3721, 4075, 0, +3876, 4095, 0, +0, 2422, 3019, +0, 2424, 3019, +0, 2426, 3019, +0, 2428, 3019, +0, 2431, 3019, +0, 2435, 3019, +0, 2441, 3018, +0, 2449, 3018, +0, 2459, 3018, +0, 2471, 3017, +0, 2488, 3016, +0, 2510, 3015, +0, 2536, 3014, +0, 2570, 3012, +0, 2612, 3010, +0, 2662, 3006, +0, 2722, 3002, +1006, 2791, 2995, +1006, 2858, 2995, +1006, 2935, 2995, +1006, 2995, 2968, +1006, 2995, 2833, +1006, 2995, 2549, +0, 3134, 1211, +1990, 3270, 0, +2643, 3406, 0, +2963, 3541, 0, +3197, 3675, 0, +3393, 3808, 0, +3568, 3941, 0, +3729, 4074, 0, +3882, 4095, 0, +0, 2220, 3019, +0, 2222, 3019, +0, 2225, 3019, +0, 2229, 3019, +0, 2234, 3019, +0, 2241, 3019, +0, 2249, 3018, +0, 2261, 3018, +0, 2276, 3018, +0, 2294, 3017, +0, 2319, 3016, +0, 2350, 3015, +0, 2388, 3014, +0, 2434, 3012, +0, 2489, 3010, +0, 2554, 3006, +0, 2628, 3002, +1006, 2712, 2995, +1930, 2804, 2987, +1930, 2890, 2987, +1930, 2984, 2987, +1930, 2987, 2862, +1930, 2987, 2602, +1137, 3128, 1758, +2327, 3266, 0, +2749, 3402, 0, +3018, 3538, 0, +3231, 3673, 0, +3415, 3807, 0, +3583, 3940, 0, +3740, 4073, 0, +3890, 4095, 0, +0, 1594, 3019, +0, 1602, 3019, +0, 1613, 3019, +0, 1628, 3019, +0, 1646, 3019, +0, 1670, 3019, +0, 1700, 3018, +0, 1737, 3018, +0, 1782, 3018, +0, 1837, 3017, +0, 1900, 3016, +0, 1974, 3015, +0, 2056, 3014, +0, 2148, 3012, +0, 2247, 3010, +0, 2352, 3006, +0, 2463, 3002, +1006, 2579, 2995, +1930, 2699, 2987, +2280, 2821, 2975, +2280, 2929, 2975, +2280, 2975, 2898, +2280, 2975, 2664, +2064, 3119, 2061, +2569, 3259, 1272, +2860, 3398, 0, +3083, 3535, 0, +3273, 3670, 0, +3443, 3805, 0, +3603, 3939, 0, +3754, 4072, 0, +3900, 4095, 0, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3018, +0, 0, 3018, +0, 0, 3018, +0, 0, 3017, +0, 0, 3016, +0, 0, 3015, +0, 0, 3014, +0, 0, 3012, +0, 922, 3010, +0, 1723, 3006, +0, 2062, 3002, +1006, 2303, 2995, +1930, 2503, 2987, +2280, 2680, 2975, +2526, 2843, 2959, +2526, 2959, 2942, +2526, 2959, 2735, +2511, 3108, 2412, +2768, 3251, 2194, +2976, 3392, 1406, +3157, 3530, 0, +3323, 3667, 0, +3479, 3802, 0, +3628, 3937, 0, +3772, 4071, 0, +3913, 4095, 0, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3018, +0, 0, 3018, +0, 0, 3018, +0, 0, 3017, +0, 0, 3016, +0, 0, 3015, +0, 0, 3014, +0, 0, 3012, +0, 0, 3010, +0, 0, 3006, +1109, 0, 3002, +1635, 1006, 2995, +1930, 1930, 2987, +2280, 2377, 2975, +2526, 2654, 2959, +2728, 2871, 2937, +2728, 2937, 2816, +2787, 3092, 2658, +2945, 3239, 2544, +3095, 3383, 2326, +3241, 3524, 1536, +3382, 3662, 0, +3522, 3799, 0, +3659, 3934, 0, +3795, 4069, 0, +3930, 4095, 0, +2346, 0, 3019, +2346, 0, 3019, +2347, 0, 3019, +2348, 0, 3019, +2350, 0, 3019, +2352, 0, 3019, +2354, 0, 3018, +2358, 0, 3018, +2362, 0, 3018, +2369, 0, 3017, +2377, 0, 3016, +2387, 0, 3015, +2401, 0, 3014, +2419, 0, 3012, +2441, 0, 3010, +2470, 0, 3006, +2505, 0, 3002, +2549, 1006, 2995, +2602, 1930, 2987, +2664, 2280, 2975, +2735, 2526, 2959, +2816, 2728, 2937, +2906, 2906, 2906, +3003, 3069, 2860, +3107, 3223, 2790, +3218, 3372, 2676, +3333, 3515, 2457, +3452, 3656, 1663, +3574, 3794, 0, +3698, 3931, 0, +3824, 4066, 0, +3952, 4095, 0, +2868, 0, 3152, +2868, 0, 3152, +2869, 0, 3152, +2869, 0, 3151, +2869, 0, 3151, +2870, 0, 3151, +2871, 0, 3151, +2872, 0, 3151, +2873, 0, 3151, +2875, 0, 3150, +2878, 0, 3150, +2881, 0, 3149, +2886, 0, 3148, +2892, 0, 3146, +2901, 0, 3144, +2911, 0, 3142, +2925, 0, 3138, +2943, 0, 3134, +2965, 1137, 3128, +2995, 2061, 3119, +3031, 2412, 3108, +3074, 2658, 3092, +3069, 2860, 3003, +3069, 2948, 2860, +3223, 3206, 2790, +3325, 3372, 2676, +3418, 3515, 2457, +3519, 3656, 1663, +3626, 3794, 0, +3738, 3931, 0, +3855, 4066, 0, +3976, 4095, 0, +3162, 0, 3284, +3162, 0, 3283, +3163, 0, 3283, +3163, 0, 3283, +3163, 0, 3283, +3163, 0, 3283, +3164, 0, 3283, +3164, 0, 3283, +3165, 0, 3283, +3166, 0, 3282, +3168, 0, 3282, +3169, 0, 3281, +3172, 0, 3280, +3175, 0, 3280, +3180, 0, 3278, +3185, 0, 3276, +3193, 0, 3274, +3203, 0, 3270, +3216, 0, 3266, +3233, 1272, 3259, +3251, 2194, 3248, +3239, 2544, 3193, +3223, 2790, 3107, +3223, 2790, 2918, +3223, 2999, 2790, +3372, 3294, 2676, +3512, 3515, 2457, +3595, 3656, 1663, +3687, 3794, 0, +3787, 3931, 0, +3893, 4066, 0, +4005, 4095, 0, +3387, 0, 3416, +3387, 0, 3416, +3387, 0, 3416, +3387, 0, 3416, +3387, 0, 3416, +3387, 0, 3416, +3387, 0, 3415, +3388, 0, 3415, +3388, 0, 3415, +3389, 0, 3415, +3390, 0, 3414, +3391, 0, 3414, +3393, 0, 3414, +3395, 0, 3413, +3397, 0, 3412, +3401, 0, 3410, +3406, 0, 3408, +3406, 0, 3400, +3402, 0, 3384, +3398, 0, 3362, +3392, 1406, 3331, +3383, 2326, 3286, +3372, 2676, 3218, +3372, 2676, 3077, +3372, 2676, 2774, +3372, 3060, 2676, +3515, 3391, 2457, +3656, 3629, 1663, +3759, 3794, 0, +3845, 3931, 0, +3940, 4066, 0, +4042, 4095, 0, +3548, 0, 3516, +3548, 0, 3516, +3548, 0, 3516, +3548, 0, 3516, +3548, 0, 3516, +3548, 0, 3516, +3548, 0, 3515, +3548, 0, 3515, +3548, 0, 3514, +3547, 0, 3513, +3547, 0, 3512, +3547, 0, 3511, +3546, 0, 3509, +3546, 0, 3506, +3545, 0, 3502, +3544, 0, 3497, +3543, 0, 3490, +3541, 0, 3480, +3538, 0, 3467, +3535, 0, 3449, +3530, 0, 3423, +3524, 1536, 3387, +3515, 2457, 3333, +3515, 2457, 3227, +3515, 2457, 3032, +3515, 2457, 2459, +3515, 3130, 2457, +3656, 3494, 1663, +3794, 3745, 0, +3913, 3931, 0, +3995, 4066, 0, +4087, 4095, 0, +3680, 0, 3599, +3680, 0, 3599, +3680, 0, 3599, +3680, 0, 3599, +3680, 0, 3599, +3680, 0, 3599, +3680, 0, 3598, +3680, 0, 3598, +3680, 0, 3597, +3680, 0, 3597, +3679, 0, 3596, +3679, 0, 3595, +3679, 0, 3593, +3678, 0, 3590, +3678, 0, 3587, +3677, 0, 3583, +3676, 0, 3577, +3675, 0, 3569, +3673, 0, 3558, +3670, 0, 3543, +3667, 0, 3523, +3662, 0, 3494, +3656, 1663, 3452, +3656, 1663, 3373, +3656, 1663, 3240, +3656, 1663, 2965, +3656, 2289, 1663, +3656, 3210, 1663, +3794, 3603, 0, +3931, 3863, 0, +4060, 4066, 0, +4095, 4095, 0, +3812, 0, 3691, +3812, 0, 3691, +3812, 0, 3690, +3812, 0, 3690, +3812, 0, 3690, +3812, 0, 3690, +3812, 0, 3690, +3812, 0, 3690, +3812, 0, 3689, +3812, 0, 3689, +3812, 0, 3688, +3812, 0, 3687, +3811, 0, 3685, +3811, 0, 3683, +3810, 0, 3680, +3810, 0, 3677, +3809, 0, 3672, +3808, 0, 3666, +3807, 0, 3657, +3805, 0, 3646, +3802, 0, 3629, +3799, 0, 3606, +3794, 0, 3574, +3794, 0, 3515, +3794, 0, 3421, +3794, 0, 3256, +3794, 0, 2856, +3794, 1884, 0, +3794, 3298, 0, +3931, 3717, 0, +4066, 3985, 0, +4095, 4095, 0, +3944, 0, 3790, +3944, 0, 3790, +3944, 0, 3790, +3944, 0, 3790, +3944, 0, 3789, +3944, 0, 3789, +3944, 0, 3789, +3944, 0, 3789, +3944, 0, 3788, +3944, 0, 3788, +3944, 0, 3787, +3944, 0, 3786, +3944, 0, 3785, +3943, 0, 3784, +3943, 0, 3781, +3943, 0, 3779, +3942, 0, 3775, +3941, 0, 3770, +3940, 0, 3763, +3939, 0, 3754, +3937, 0, 3741, +3934, 0, 3723, +3931, 0, 3698, +3931, 0, 3654, +3931, 0, 3587, +3931, 0, 3479, +3931, 0, 3277, +3931, 0, 2650, +3931, 0, 0, +3931, 3395, 0, +4066, 3835, 0, +4095, 4095, 0, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3894, +4076, 0, 3894, +4076, 0, 3893, +4076, 0, 3892, +4076, 0, 3891, +4076, 0, 3890, +4075, 0, 3889, +4075, 0, 3887, +4075, 0, 3884, +4074, 0, 3880, +4073, 0, 3874, +4072, 0, 3867, +4071, 0, 3857, +4069, 0, 3843, +4066, 0, 3824, +4066, 0, 3791, +4066, 0, 3743, +4066, 0, 3669, +4066, 0, 3546, +4066, 0, 3303, +4066, 0, 1985, +4066, 0, 0, +4066, 3498, 0, +4095, 3957, 0, +4095, 0, 4007, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4005, +4095, 0, 4005, +4095, 0, 4005, +4095, 0, 4004, +4095, 0, 4003, +4095, 0, 4002, +4095, 0, 4000, +4095, 0, 3998, +4095, 0, 3994, +4095, 0, 3990, +4095, 0, 3984, +4095, 0, 3977, +4095, 0, 3966, +4095, 0, 3952, +4095, 0, 3927, +4095, 0, 3892, +4095, 0, 3840, +4095, 0, 3759, +4095, 0, 3623, +4095, 0, 3337, +4095, 0, 0, +4095, 0, 0, +4095, 3608, 0, +0, 2882, 3152, +0, 2883, 3152, +0, 2883, 3152, +0, 2884, 3152, +0, 2885, 3152, +0, 2886, 3152, +0, 2888, 3152, +0, 2890, 3152, +0, 2893, 3152, +0, 2898, 3152, +0, 2903, 3152, +0, 2911, 3152, +0, 2920, 3152, +0, 2933, 3152, +0, 2949, 3152, +0, 2970, 3152, +0, 2996, 3152, +0, 3030, 3152, +0, 3071, 3152, +0, 3120, 3152, +0, 3152, 3123, +0, 3152, 3031, +0, 3152, 2868, +0, 3152, 2478, +0, 3284, 0, +0, 3416, 0, +2104, 3548, 0, +2876, 3680, 0, +3211, 3812, 0, +3452, 3944, 0, +3651, 4076, 0, +3828, 4095, 0, +0, 2881, 3152, +0, 2882, 3152, +0, 2883, 3152, +0, 2883, 3152, +0, 2885, 3152, +0, 2886, 3152, +0, 2888, 3152, +0, 2890, 3152, +0, 2893, 3152, +0, 2897, 3152, +0, 2903, 3152, +0, 2910, 3152, +0, 2920, 3152, +0, 2932, 3152, +0, 2949, 3152, +0, 2970, 3152, +0, 2996, 3152, +0, 3029, 3152, +0, 3070, 3152, +0, 3120, 3152, +0, 3152, 3123, +0, 3152, 3031, +0, 3152, 2868, +0, 3152, 2478, +0, 3283, 0, +0, 3416, 0, +2107, 3548, 0, +2877, 3680, 0, +3212, 3812, 0, +3452, 3944, 0, +3651, 4076, 0, +3828, 4095, 0, +0, 2881, 3152, +0, 2881, 3152, +0, 2882, 3152, +0, 2883, 3152, +0, 2884, 3152, +0, 2885, 3152, +0, 2887, 3152, +0, 2890, 3152, +0, 2893, 3152, +0, 2897, 3152, +0, 2903, 3152, +0, 2910, 3152, +0, 2919, 3152, +0, 2932, 3152, +0, 2948, 3152, +0, 2969, 3152, +0, 2996, 3152, +0, 3029, 3152, +0, 3070, 3152, +0, 3120, 3152, +0, 3152, 3123, +0, 3152, 3031, +0, 3152, 2869, +0, 3152, 2479, +0, 3283, 0, +0, 3416, 0, +2111, 3548, 0, +2877, 3680, 0, +3212, 3812, 0, +3453, 3944, 0, +3651, 4076, 0, +3828, 4095, 0, +0, 2880, 3152, +0, 2881, 3152, +0, 2881, 3152, +0, 2882, 3151, +0, 2883, 3151, +0, 2885, 3151, +0, 2886, 3151, +0, 2889, 3151, +0, 2892, 3151, +0, 2896, 3151, +0, 2902, 3151, +0, 2909, 3151, +0, 2919, 3151, +0, 2932, 3151, +0, 2948, 3151, +0, 2969, 3151, +0, 2995, 3151, +0, 3029, 3151, +0, 3070, 3151, +0, 3119, 3151, +0, 3151, 3123, +0, 3151, 3031, +0, 3151, 2869, +0, 3151, 2480, +0, 3283, 0, +0, 3416, 0, +2115, 3548, 0, +2878, 3680, 0, +3213, 3812, 0, +3453, 3944, 0, +3652, 4076, 0, +3828, 4095, 0, +0, 2879, 3152, +0, 2880, 3152, +0, 2880, 3152, +0, 2881, 3151, +0, 2883, 3151, +0, 2884, 3151, +0, 2886, 3151, +0, 2888, 3151, +0, 2891, 3151, +0, 2895, 3151, +0, 2901, 3151, +0, 2908, 3151, +0, 2918, 3151, +0, 2931, 3151, +0, 2947, 3151, +0, 2968, 3151, +0, 2995, 3151, +0, 3028, 3151, +0, 3069, 3151, +0, 3119, 3151, +0, 3151, 3123, +0, 3151, 3031, +0, 3151, 2869, +0, 3151, 2481, +0, 3283, 0, +0, 3416, 0, +2122, 3548, 0, +2879, 3680, 0, +3213, 3812, 0, +3453, 3944, 0, +3652, 4076, 0, +3828, 4095, 0, +0, 2878, 3152, +0, 2878, 3152, +0, 2879, 3152, +0, 2880, 3151, +0, 2881, 3151, +0, 2883, 3151, +0, 2885, 3151, +0, 2887, 3151, +0, 2890, 3151, +0, 2895, 3151, +0, 2900, 3151, +0, 2907, 3151, +0, 2917, 3151, +0, 2930, 3151, +0, 2946, 3151, +0, 2967, 3151, +0, 2994, 3151, +0, 3027, 3151, +0, 3068, 3151, +0, 3118, 3151, +0, 3151, 3124, +0, 3151, 3032, +0, 3151, 2870, +0, 3151, 2482, +0, 3283, 0, +0, 3416, 0, +2130, 3548, 0, +2881, 3680, 0, +3214, 3812, 0, +3454, 3944, 0, +3652, 4076, 0, +3829, 4095, 0, +0, 2876, 3152, +0, 2877, 3152, +0, 2877, 3152, +0, 2878, 3151, +0, 2879, 3151, +0, 2881, 3151, +0, 2883, 3151, +0, 2885, 3151, +0, 2889, 3151, +0, 2893, 3151, +0, 2898, 3151, +0, 2906, 3151, +0, 2916, 3151, +0, 2928, 3151, +0, 2945, 3151, +0, 2966, 3151, +0, 2993, 3151, +0, 3026, 3151, +0, 3067, 3151, +0, 3117, 3151, +0, 3151, 3124, +0, 3151, 3032, +0, 3151, 2871, +0, 3151, 2484, +0, 3283, 0, +0, 3415, 0, +2141, 3548, 0, +2883, 3680, 0, +3215, 3812, 0, +3454, 3944, 0, +3653, 4076, 0, +3829, 4095, 0, +0, 2873, 3152, +0, 2874, 3152, +0, 2875, 3152, +0, 2876, 3151, +0, 2877, 3151, +0, 2879, 3151, +0, 2881, 3151, +0, 2883, 3151, +0, 2887, 3151, +0, 2891, 3151, +0, 2896, 3151, +0, 2904, 3151, +0, 2914, 3151, +0, 2927, 3151, +0, 2943, 3151, +0, 2964, 3151, +0, 2991, 3151, +0, 3025, 3151, +0, 3066, 3151, +0, 3116, 3151, +0, 3151, 3125, +0, 3151, 3033, +0, 3151, 2872, +0, 3151, 2487, +0, 3283, 0, +0, 3415, 0, +2156, 3548, 0, +2886, 3680, 0, +3216, 3812, 0, +3455, 3944, 0, +3653, 4076, 0, +3829, 4095, 0, +0, 2870, 3152, +0, 2871, 3152, +0, 2871, 3152, +0, 2872, 3151, +0, 2873, 3151, +0, 2875, 3151, +0, 2877, 3151, +0, 2880, 3151, +0, 2884, 3151, +0, 2888, 3151, +0, 2894, 3151, +0, 2902, 3151, +0, 2911, 3151, +0, 2924, 3151, +0, 2941, 3151, +0, 2962, 3151, +0, 2989, 3151, +0, 3023, 3151, +0, 3064, 3151, +0, 3115, 3151, +0, 3151, 3126, +0, 3151, 3034, +0, 3151, 2873, +0, 3151, 2490, +0, 3283, 0, +0, 3415, 0, +2174, 3548, 0, +2890, 3680, 0, +3218, 3812, 0, +3456, 3944, 0, +3654, 4076, 0, +3830, 4095, 0, +0, 2866, 3152, +0, 2866, 3152, +0, 2867, 3152, +0, 2868, 3151, +0, 2869, 3151, +0, 2871, 3151, +0, 2873, 3151, +0, 2876, 3151, +0, 2880, 3151, +0, 2885, 3150, +0, 2891, 3150, +0, 2898, 3150, +0, 2908, 3150, +0, 2921, 3150, +0, 2938, 3150, +0, 2959, 3150, +0, 2986, 3150, +0, 3020, 3150, +0, 3062, 3150, +0, 3112, 3150, +0, 3150, 3127, +0, 3150, 3036, +0, 3150, 2875, +0, 3150, 2495, +0, 3282, 0, +0, 3415, 0, +2198, 3547, 0, +2895, 3680, 0, +3221, 3812, 0, +3458, 3944, 0, +3655, 4076, 0, +3830, 4095, 0, +0, 2860, 3152, +0, 2860, 3152, +0, 2861, 3152, +0, 2862, 3151, +0, 2863, 3151, +0, 2865, 3151, +0, 2867, 3151, +0, 2870, 3151, +0, 2874, 3151, +0, 2879, 3150, +0, 2886, 3150, +0, 2894, 3150, +0, 2904, 3150, +0, 2917, 3150, +0, 2933, 3150, +0, 2955, 3150, +0, 2982, 3150, +0, 3017, 3150, +0, 3059, 3150, +0, 3110, 3150, +0, 3150, 3128, +0, 3150, 3038, +0, 3150, 2878, +0, 3150, 2501, +0, 3282, 0, +0, 3414, 0, +2228, 3547, 0, +2901, 3679, 0, +3224, 3812, 0, +3459, 3944, 0, +3656, 4076, 0, +3831, 4095, 0, +0, 2851, 3152, +0, 2852, 3152, +0, 2853, 3152, +0, 2854, 3151, +0, 2855, 3151, +0, 2857, 3151, +0, 2859, 3151, +0, 2862, 3151, +0, 2866, 3151, +0, 2871, 3150, +0, 2878, 3150, +0, 2887, 3149, +0, 2898, 3149, +0, 2911, 3149, +0, 2928, 3149, +0, 2950, 3149, +0, 2977, 3149, +0, 3012, 3149, +0, 3055, 3149, +0, 3106, 3149, +0, 3149, 3131, +0, 3149, 3040, +0, 3149, 2881, +0, 3149, 2509, +0, 3281, 0, +0, 3414, 0, +2265, 3547, 0, +2910, 3679, 0, +3228, 3812, 0, +3462, 3944, 0, +3658, 4076, 0, +3832, 4095, 0, +0, 2840, 3152, +0, 2841, 3152, +0, 2842, 3152, +0, 2842, 3151, +0, 2844, 3151, +0, 2845, 3151, +0, 2848, 3151, +0, 2851, 3151, +0, 2855, 3151, +0, 2860, 3150, +0, 2868, 3150, +0, 2877, 3149, +0, 2889, 3148, +0, 2903, 3148, +0, 2920, 3148, +0, 2942, 3148, +0, 2970, 3148, +0, 3005, 3148, +0, 3049, 3148, +0, 3100, 3148, +0, 3148, 3133, +0, 3148, 3043, +0, 3148, 2886, +0, 3148, 2520, +0, 3280, 0, +0, 3414, 0, +2311, 3546, 0, +2922, 3679, 0, +3234, 3811, 0, +3466, 3944, 0, +3660, 4076, 0, +3834, 4095, 0, +0, 2825, 3152, +0, 2825, 3152, +0, 2826, 3152, +0, 2827, 3151, +0, 2829, 3151, +0, 2830, 3151, +0, 2833, 3151, +0, 2836, 3151, +0, 2840, 3151, +0, 2846, 3150, +0, 2853, 3150, +0, 2863, 3149, +0, 2875, 3148, +0, 2892, 3146, +0, 2910, 3146, +0, 2932, 3146, +0, 2961, 3146, +0, 2997, 3146, +0, 3041, 3146, +0, 3093, 3146, +0, 3146, 3137, +0, 3146, 3047, +0, 3146, 2892, +0, 3146, 2533, +0, 3280, 0, +0, 3413, 0, +2365, 3546, 0, +2936, 3678, 0, +3241, 3811, 0, +3470, 3943, 0, +3663, 4076, 0, +3836, 4095, 0, +0, 2803, 3152, +0, 2804, 3152, +0, 2805, 3152, +0, 2806, 3151, +0, 2807, 3151, +0, 2809, 3151, +0, 2812, 3151, +0, 2815, 3151, +0, 2819, 3151, +0, 2825, 3150, +0, 2833, 3150, +0, 2843, 3149, +0, 2856, 3148, +0, 2873, 3146, +0, 2895, 3144, +0, 2919, 3144, +0, 2948, 3144, +0, 2985, 3144, +0, 3030, 3144, +0, 3084, 3144, +0, 3144, 3141, +0, 3144, 3053, +0, 3144, 2901, +0, 3144, 2551, +0, 3278, 0, +0, 3412, 0, +2429, 3545, 0, +2955, 3678, 0, +3251, 3810, 0, +3476, 3943, 0, +3667, 4075, 0, +3838, 4095, 0, +0, 2773, 3152, +0, 2773, 3152, +0, 2774, 3152, +0, 2775, 3151, +0, 2777, 3151, +0, 2779, 3151, +0, 2782, 3151, +0, 2785, 3151, +0, 2790, 3151, +0, 2796, 3150, +0, 2804, 3150, +0, 2815, 3149, +0, 2829, 3148, +0, 2847, 3146, +0, 2870, 3144, +0, 2900, 3142, +0, 2931, 3142, +0, 2969, 3142, +0, 3015, 3142, +0, 3071, 3142, +0, 3136, 3142, +0, 3142, 3061, +0, 3142, 2911, +0, 3142, 2573, +0, 3276, 0, +0, 3410, 0, +2502, 3544, 0, +2980, 3677, 0, +3264, 3810, 0, +3484, 3943, 0, +3672, 4075, 0, +3842, 4095, 0, +0, 2729, 3152, +0, 2729, 3152, +0, 2730, 3152, +0, 2732, 3151, +0, 2733, 3151, +0, 2735, 3151, +0, 2738, 3151, +0, 2742, 3151, +0, 2747, 3151, +0, 2754, 3150, +0, 2763, 3150, +0, 2775, 3149, +0, 2790, 3148, +0, 2810, 3146, +0, 2835, 3144, +0, 2867, 3142, +0, 2906, 3138, +0, 2946, 3138, +0, 2995, 3138, +0, 3053, 3138, +0, 3120, 3138, +0, 3138, 3071, +0, 3138, 2925, +0, 3138, 2602, +0, 3274, 0, +0, 3408, 0, +2585, 3543, 0, +3010, 3676, 0, +3281, 3809, 0, +3494, 3942, 0, +3679, 4075, 0, +3847, 4095, 0, +0, 2662, 3152, +0, 2663, 3152, +0, 2664, 3152, +0, 2665, 3151, +0, 2667, 3151, +0, 2670, 3151, +0, 2673, 3151, +0, 2678, 3151, +0, 2684, 3151, +0, 2691, 3150, +0, 2702, 3150, +0, 2715, 3149, +0, 2733, 3148, +0, 2755, 3146, +0, 2783, 3144, +0, 2818, 3142, +0, 2861, 3138, +0, 2913, 3134, +0, 2965, 3134, +0, 3027, 3134, +0, 3098, 3134, +0, 3134, 3084, +0, 3134, 2943, +0, 3134, 2638, +0, 3270, 0, +1325, 3406, 0, +2676, 3541, 0, +3048, 3675, 0, +3302, 3808, 0, +3507, 3941, 0, +3688, 4074, 0, +3853, 4095, 0, +0, 2554, 3152, +0, 2555, 3152, +0, 2556, 3152, +0, 2558, 3151, +0, 2560, 3151, +0, 2564, 3151, +0, 2568, 3151, +0, 2573, 3151, +0, 2581, 3151, +0, 2591, 3150, +0, 2604, 3150, +0, 2620, 3149, +0, 2642, 3148, +0, 2669, 3146, +0, 2703, 3144, +0, 2744, 3142, +0, 2795, 3138, +0, 2854, 3134, +1137, 2923, 3128, +1137, 2991, 3128, +1137, 3067, 3128, +1137, 3128, 3101, +1137, 3128, 2965, +1137, 3128, 2681, +0, 3266, 1375, +2121, 3402, 0, +2775, 3538, 0, +3095, 3673, 0, +3329, 3807, 0, +3525, 3940, 0, +3700, 4073, 0, +3861, 4095, 0, +0, 2352, 3152, +0, 2353, 3152, +0, 2355, 3152, +0, 2358, 3151, +0, 2362, 3151, +0, 2367, 3151, +0, 2373, 3151, +0, 2382, 3151, +0, 2394, 3151, +0, 2408, 3150, +0, 2427, 3150, +0, 2452, 3149, +0, 2482, 3148, +0, 2521, 3146, +0, 2566, 3144, +0, 2622, 3142, +0, 2687, 3138, +0, 2761, 3134, +1137, 2845, 3128, +2061, 2936, 3119, +2061, 3022, 3119, +2061, 3116, 3119, +2061, 3119, 2995, +2061, 3119, 2734, +1272, 3259, 1899, +2458, 3398, 0, +2881, 3535, 0, +3150, 3670, 0, +3363, 3805, 0, +3547, 3939, 0, +3715, 4072, 0, +3872, 4095, 0, +0, 1720, 3152, +0, 1726, 3152, +0, 1735, 3152, +0, 1746, 3151, +0, 1760, 3151, +0, 1779, 3151, +0, 1802, 3151, +0, 1832, 3151, +0, 1869, 3151, +0, 1915, 3150, +0, 1969, 3150, +0, 2033, 3149, +0, 2106, 3148, +0, 2189, 3146, +0, 2280, 3144, +0, 2379, 3142, +0, 2484, 3138, +0, 2596, 3134, +1137, 2712, 3128, +2061, 2831, 3119, +2412, 2954, 3108, +2412, 3061, 3108, +2412, 3108, 3031, +2412, 3108, 2796, +2194, 3251, 2195, +2701, 3392, 1406, +2992, 3530, 0, +3215, 3667, 0, +3405, 3802, 0, +3575, 3937, 0, +3735, 4071, 0, +3886, 4095, 0, +0, 0, 3152, +0, 0, 3152, +0, 0, 3152, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3150, +0, 0, 3150, +0, 0, 3149, +0, 0, 3148, +0, 0, 3146, +0, 0, 3144, +0, 1068, 3142, +0, 1857, 3138, +0, 2195, 3134, +1137, 2436, 3128, +2061, 2636, 3119, +2412, 2813, 3108, +2658, 2976, 3092, +2658, 3092, 3074, +2658, 3092, 2867, +2642, 3239, 2544, +2900, 3383, 2326, +3108, 3524, 1536, +3289, 3662, 0, +3455, 3799, 0, +3611, 3934, 0, +3760, 4069, 0, +3904, 4095, 0, +0, 0, 3152, +0, 0, 3152, +0, 0, 3152, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3150, +0, 0, 3150, +0, 0, 3149, +0, 0, 3148, +0, 0, 3146, +0, 0, 3144, +0, 0, 3142, +0, 0, 3138, +1211, 0, 3134, +1758, 1137, 3128, +2061, 2064, 3119, +2412, 2511, 3108, +2658, 2787, 3092, +2860, 3003, 3069, +2860, 3069, 2948, +2918, 3223, 2790, +3077, 3372, 2676, +3227, 3515, 2457, +3373, 3656, 1663, +3515, 3794, 0, +3654, 3931, 0, +3791, 4066, 0, +3927, 4095, 0, +2478, 0, 3152, +2478, 0, 3152, +2479, 0, 3152, +2480, 0, 3151, +2481, 0, 3151, +2482, 0, 3151, +2484, 0, 3151, +2487, 0, 3151, +2490, 0, 3151, +2495, 0, 3150, +2501, 0, 3150, +2509, 0, 3149, +2520, 0, 3148, +2533, 0, 3146, +2551, 0, 3144, +2573, 0, 3142, +2602, 0, 3138, +2638, 0, 3134, +2681, 1137, 3128, +2734, 2061, 3119, +2796, 2412, 3108, +2867, 2658, 3092, +2948, 2860, 3069, +3038, 3038, 3038, +3135, 3201, 2992, +3239, 3356, 2922, +3350, 3504, 2808, +3465, 3648, 2590, +3584, 3788, 1799, +3706, 3926, 0, +3830, 4063, 0, +3956, 4095, 0, +2999, 0, 3284, +2999, 0, 3283, +2999, 0, 3283, +2999, 0, 3283, +3000, 0, 3283, +3000, 0, 3283, +3001, 0, 3283, +3002, 0, 3283, +3003, 0, 3283, +3005, 0, 3282, +3006, 0, 3282, +3009, 0, 3281, +3013, 0, 3280, +3017, 0, 3280, +3023, 0, 3278, +3032, 0, 3276, +3042, 0, 3274, +3056, 0, 3270, +3074, 0, 3266, +3097, 1272, 3259, +3126, 2194, 3251, +3162, 2544, 3239, +3206, 2790, 3223, +3201, 2992, 3135, +3201, 3080, 2992, +3356, 3338, 2922, +3457, 3504, 2808, +3550, 3648, 2590, +3651, 3788, 1799, +3758, 3926, 0, +3870, 4063, 0, +3987, 4095, 0, +3294, 0, 3416, +3294, 0, 3416, +3294, 0, 3416, +3294, 0, 3416, +3295, 0, 3416, +3295, 0, 3416, +3295, 0, 3415, +3296, 0, 3415, +3296, 0, 3415, +3297, 0, 3415, +3298, 0, 3414, +3299, 0, 3414, +3301, 0, 3414, +3304, 0, 3413, +3307, 0, 3412, +3311, 0, 3410, +3317, 0, 3408, +3325, 0, 3406, +3335, 0, 3402, +3348, 0, 3398, +3365, 1406, 3392, +3383, 2326, 3380, +3372, 2676, 3325, +3356, 2922, 3239, +3356, 2922, 3051, +3356, 3132, 2922, +3504, 3426, 2808, +3644, 3648, 2590, +3728, 3788, 1799, +3820, 3926, 0, +3919, 4063, 0, +4025, 4095, 0, +3519, 0, 3548, +3519, 0, 3548, +3519, 0, 3548, +3519, 0, 3548, +3519, 0, 3548, +3519, 0, 3548, +3519, 0, 3548, +3520, 0, 3548, +3520, 0, 3548, +3520, 0, 3547, +3521, 0, 3547, +3522, 0, 3547, +3523, 0, 3546, +3525, 0, 3546, +3526, 0, 3545, +3529, 0, 3544, +3533, 0, 3543, +3538, 0, 3541, +3538, 0, 3532, +3535, 0, 3516, +3530, 0, 3495, +3524, 1536, 3463, +3515, 2457, 3418, +3504, 2808, 3350, +3504, 2808, 3209, +3504, 2808, 2907, +3504, 3192, 2808, +3648, 3523, 2590, +3788, 3761, 1799, +3891, 3926, 0, +3977, 4063, 0, +4072, 4095, 0, +3680, 0, 3649, +3680, 0, 3649, +3680, 0, 3649, +3680, 0, 3649, +3680, 0, 3648, +3680, 0, 3648, +3680, 0, 3648, +3680, 0, 3648, +3680, 0, 3647, +3680, 0, 3646, +3679, 0, 3646, +3679, 0, 3644, +3679, 0, 3643, +3678, 0, 3641, +3678, 0, 3638, +3677, 0, 3634, +3676, 0, 3629, +3675, 0, 3622, +3673, 0, 3612, +3670, 0, 3599, +3667, 0, 3581, +3662, 0, 3555, +3656, 1663, 3519, +3648, 2590, 3465, +3648, 2590, 3360, +3648, 2590, 3165, +3648, 2590, 2592, +3648, 3262, 2590, +3788, 3626, 1799, +3926, 3877, 0, +4045, 4063, 0, +4095, 4095, 0, +3812, 0, 3732, +3812, 0, 3731, +3812, 0, 3731, +3812, 0, 3731, +3812, 0, 3731, +3812, 0, 3731, +3812, 0, 3731, +3812, 0, 3730, +3812, 0, 3730, +3812, 0, 3729, +3812, 0, 3729, +3812, 0, 3728, +3811, 0, 3727, +3811, 0, 3725, +3810, 0, 3722, +3810, 0, 3719, +3809, 0, 3715, +3808, 0, 3709, +3807, 0, 3701, +3805, 0, 3690, +3802, 0, 3676, +3799, 0, 3655, +3794, 0, 3626, +3788, 1799, 3584, +3788, 1799, 3505, +3788, 1799, 3372, +3788, 1799, 3097, +3788, 2422, 1799, +3788, 3342, 1799, +3926, 3735, 0, +4063, 3995, 0, +4095, 4095, 0, +3944, 0, 3823, +3944, 0, 3823, +3944, 0, 3823, +3944, 0, 3822, +3944, 0, 3822, +3944, 0, 3822, +3944, 0, 3822, +3944, 0, 3822, +3944, 0, 3822, +3944, 0, 3821, +3944, 0, 3820, +3944, 0, 3820, +3944, 0, 3819, +3943, 0, 3817, +3943, 0, 3815, +3943, 0, 3813, +3942, 0, 3809, +3941, 0, 3805, +3940, 0, 3798, +3939, 0, 3790, +3937, 0, 3777, +3934, 0, 3761, +3931, 0, 3738, +3926, 0, 3706, +3926, 0, 3647, +3926, 0, 3553, +3926, 0, 3388, +3926, 0, 2988, +3926, 2023, 0, +3926, 3430, 0, +4063, 3849, 0, +4095, 4095, 0, +4076, 0, 3922, +4076, 0, 3922, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3920, +4076, 0, 3919, +4076, 0, 3918, +4076, 0, 3917, +4075, 0, 3916, +4075, 0, 3913, +4075, 0, 3911, +4074, 0, 3907, +4073, 0, 3902, +4072, 0, 3895, +4071, 0, 3886, +4069, 0, 3873, +4066, 0, 3855, +4063, 0, 3830, +4063, 0, 3786, +4063, 0, 3719, +4063, 0, 3611, +4063, 0, 3409, +4063, 0, 2781, +4063, 0, 0, +4063, 3527, 0, +4095, 3968, 0, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4026, +4095, 0, 4026, +4095, 0, 4026, +4095, 0, 4025, +4095, 0, 4024, +4095, 0, 4023, +4095, 0, 4021, +4095, 0, 4019, +4095, 0, 4016, +4095, 0, 4012, +4095, 0, 4006, +4095, 0, 3999, +4095, 0, 3989, +4095, 0, 3976, +4095, 0, 3956, +4095, 0, 3923, +4095, 0, 3875, +4095, 0, 3801, +4095, 0, 3679, +4095, 0, 3436, +4095, 0, 2137, +4095, 0, 0, +4095, 3630, 0, +0, 3014, 3284, +0, 3014, 3284, +0, 3014, 3284, +0, 3015, 3284, +0, 3016, 3284, +0, 3017, 3284, +0, 3018, 3284, +0, 3020, 3284, +0, 3022, 3284, +0, 3025, 3284, +0, 3030, 3284, +0, 3035, 3284, +0, 3043, 3284, +0, 3052, 3284, +0, 3065, 3284, +0, 3081, 3284, +0, 3102, 3284, +0, 3128, 3284, +0, 3162, 3284, +0, 3203, 3284, +0, 3252, 3284, +0, 3284, 3254, +0, 3284, 3162, +0, 3284, 2999, +0, 3284, 2609, +0, 3416, 0, +0, 3548, 0, +2237, 3680, 0, +3008, 3812, 0, +3344, 3944, 0, +3584, 4076, 0, +3784, 4095, 0, +0, 3014, 3284, +0, 3014, 3283, +0, 3014, 3283, +0, 3015, 3283, +0, 3016, 3283, +0, 3017, 3283, +0, 3018, 3283, +0, 3020, 3283, +0, 3022, 3283, +0, 3025, 3283, +0, 3029, 3283, +0, 3035, 3283, +0, 3042, 3283, +0, 3052, 3283, +0, 3065, 3283, +0, 3081, 3283, +0, 3102, 3283, +0, 3128, 3283, +0, 3162, 3283, +0, 3203, 3283, +0, 3252, 3283, +0, 3283, 3254, +0, 3283, 3162, +0, 3283, 2999, +0, 3283, 2609, +0, 3416, 0, +0, 3548, 0, +2239, 3680, 0, +3009, 3812, 0, +3344, 3944, 0, +3584, 4076, 0, +3784, 4095, 0, +0, 3013, 3284, +0, 3014, 3283, +0, 3014, 3283, +0, 3014, 3283, +0, 3015, 3283, +0, 3016, 3283, +0, 3018, 3283, +0, 3019, 3283, +0, 3022, 3283, +0, 3025, 3283, +0, 3029, 3283, +0, 3035, 3283, +0, 3042, 3283, +0, 3052, 3283, +0, 3064, 3283, +0, 3081, 3283, +0, 3101, 3283, +0, 3128, 3283, +0, 3161, 3283, +0, 3202, 3283, +0, 3252, 3283, +0, 3283, 3255, +0, 3283, 3163, +0, 3283, 2999, +0, 3283, 2610, +0, 3416, 0, +0, 3548, 0, +2242, 3680, 0, +3009, 3812, 0, +3344, 3944, 0, +3585, 4076, 0, +3784, 4095, 0, +0, 3012, 3284, +0, 3013, 3283, +0, 3013, 3283, +0, 3014, 3283, +0, 3015, 3283, +0, 3016, 3283, +0, 3017, 3283, +0, 3019, 3283, +0, 3021, 3283, +0, 3025, 3283, +0, 3029, 3283, +0, 3034, 3283, +0, 3042, 3283, +0, 3051, 3283, +0, 3064, 3283, +0, 3080, 3283, +0, 3101, 3283, +0, 3128, 3283, +0, 3161, 3283, +0, 3202, 3283, +0, 3252, 3283, +0, 3283, 3255, +0, 3283, 3163, +0, 3283, 2999, +0, 3283, 2611, +0, 3416, 0, +0, 3548, 0, +2246, 3680, 0, +3010, 3812, 0, +3344, 3944, 0, +3585, 4076, 0, +3784, 4095, 0, +0, 3012, 3284, +0, 3012, 3283, +0, 3013, 3283, +0, 3013, 3283, +0, 3014, 3283, +0, 3015, 3283, +0, 3016, 3283, +0, 3018, 3283, +0, 3021, 3283, +0, 3024, 3283, +0, 3028, 3283, +0, 3034, 3283, +0, 3041, 3283, +0, 3051, 3283, +0, 3063, 3283, +0, 3080, 3283, +0, 3101, 3283, +0, 3127, 3283, +0, 3160, 3283, +0, 3201, 3283, +0, 3251, 3283, +0, 3283, 3255, +0, 3283, 3163, +0, 3283, 3000, +0, 3283, 2612, +0, 3416, 0, +0, 3548, 0, +2251, 3680, 0, +3011, 3812, 0, +3345, 3944, 0, +3585, 4076, 0, +3784, 4095, 0, +0, 3011, 3284, +0, 3011, 3283, +0, 3011, 3283, +0, 3012, 3283, +0, 3013, 3283, +0, 3014, 3283, +0, 3016, 3283, +0, 3018, 3283, +0, 3020, 3283, +0, 3023, 3283, +0, 3027, 3283, +0, 3033, 3283, +0, 3040, 3283, +0, 3050, 3283, +0, 3062, 3283, +0, 3079, 3283, +0, 3100, 3283, +0, 3127, 3283, +0, 3160, 3283, +0, 3201, 3283, +0, 3251, 3283, +0, 3283, 3255, +0, 3283, 3163, +0, 3283, 3000, +0, 3283, 2613, +0, 3416, 0, +0, 3548, 0, +2257, 3680, 0, +3012, 3812, 0, +3346, 3944, 0, +3585, 4076, 0, +3784, 4095, 0, +0, 3009, 3284, +0, 3010, 3283, +0, 3010, 3283, +0, 3011, 3283, +0, 3012, 3283, +0, 3013, 3283, +0, 3015, 3283, +0, 3016, 3283, +0, 3019, 3283, +0, 3022, 3283, +0, 3026, 3283, +0, 3032, 3283, +0, 3039, 3283, +0, 3049, 3283, +0, 3062, 3283, +0, 3078, 3283, +0, 3099, 3283, +0, 3126, 3283, +0, 3159, 3283, +0, 3200, 3283, +0, 3250, 3283, +0, 3283, 3256, +0, 3283, 3164, +0, 3283, 3001, +0, 3283, 2614, +0, 3415, 0, +0, 3548, 0, +2266, 3680, 0, +3014, 3812, 0, +3346, 3944, 0, +3586, 4076, 0, +3784, 4095, 0, +0, 3008, 3284, +0, 3008, 3283, +0, 3008, 3283, +0, 3009, 3283, +0, 3010, 3283, +0, 3011, 3283, +0, 3013, 3283, +0, 3015, 3283, +0, 3017, 3283, +0, 3021, 3283, +0, 3025, 3283, +0, 3031, 3283, +0, 3038, 3283, +0, 3047, 3283, +0, 3060, 3283, +0, 3077, 3283, +0, 3098, 3283, +0, 3125, 3283, +0, 3158, 3283, +0, 3199, 3283, +0, 3249, 3283, +0, 3283, 3256, +0, 3283, 3164, +0, 3283, 3002, +0, 3283, 2616, +0, 3415, 0, +0, 3548, 0, +2277, 3680, 0, +3016, 3812, 0, +3347, 3944, 0, +3586, 4076, 0, +3785, 4095, 0, +0, 3005, 3284, +0, 3005, 3283, +0, 3006, 3283, +0, 3007, 3283, +0, 3008, 3283, +0, 3009, 3283, +0, 3010, 3283, +0, 3013, 3283, +0, 3015, 3283, +0, 3018, 3283, +0, 3023, 3283, +0, 3029, 3283, +0, 3036, 3283, +0, 3046, 3283, +0, 3059, 3283, +0, 3075, 3283, +0, 3096, 3283, +0, 3123, 3283, +0, 3157, 3283, +0, 3198, 3283, +0, 3248, 3283, +0, 3283, 3257, +0, 3283, 3165, +0, 3283, 3003, +0, 3283, 2619, +0, 3415, 0, +0, 3548, 0, +2291, 3680, 0, +3019, 3812, 0, +3349, 3944, 0, +3587, 4076, 0, +3786, 4095, 0, +0, 3002, 3284, +0, 3002, 3283, +0, 3002, 3283, +0, 3003, 3283, +0, 3004, 3283, +0, 3005, 3283, +0, 3007, 3283, +0, 3009, 3283, +0, 3012, 3283, +0, 3016, 3282, +0, 3020, 3282, +0, 3026, 3282, +0, 3033, 3282, +0, 3043, 3282, +0, 3056, 3282, +0, 3073, 3282, +0, 3094, 3282, +0, 3121, 3282, +0, 3155, 3282, +0, 3196, 3282, +0, 3247, 3282, +0, 3282, 3257, +0, 3282, 3166, +0, 3282, 3005, +0, 3282, 2622, +0, 3415, 0, +0, 3547, 0, +2310, 3680, 0, +3023, 3812, 0, +3351, 3944, 0, +3588, 4076, 0, +3786, 4095, 0, +0, 2997, 3284, +0, 2998, 3283, +0, 2998, 3283, +0, 2999, 3283, +0, 3000, 3283, +0, 3001, 3283, +0, 3003, 3283, +0, 3005, 3283, +0, 3008, 3283, +0, 3012, 3282, +0, 3017, 3282, +0, 3023, 3282, +0, 3030, 3282, +0, 3040, 3282, +0, 3053, 3282, +0, 3070, 3282, +0, 3091, 3282, +0, 3118, 3282, +0, 3152, 3282, +0, 3194, 3282, +0, 3244, 3282, +0, 3282, 3259, +0, 3282, 3168, +0, 3282, 3006, +0, 3282, 2627, +0, 3414, 0, +0, 3547, 0, +2333, 3679, 0, +3027, 3812, 0, +3353, 3944, 0, +3590, 4076, 0, +3787, 4095, 0, +0, 2991, 3284, +0, 2992, 3283, +0, 2992, 3283, +0, 2993, 3283, +0, 2994, 3283, +0, 2995, 3283, +0, 2997, 3283, +0, 2999, 3283, +0, 3002, 3283, +0, 3006, 3282, +0, 3011, 3282, +0, 3018, 3281, +0, 3025, 3281, +0, 3035, 3281, +0, 3049, 3281, +0, 3065, 3281, +0, 3087, 3281, +0, 3114, 3281, +0, 3149, 3281, +0, 3191, 3281, +0, 3242, 3281, +0, 3281, 3260, +0, 3281, 3169, +0, 3281, 3009, +0, 3281, 2633, +0, 3414, 0, +0, 3547, 0, +2363, 3679, 0, +3034, 3812, 0, +3356, 3944, 0, +3592, 4076, 0, +3788, 4095, 0, +0, 2983, 3284, +0, 2983, 3283, +0, 2984, 3283, +0, 2985, 3283, +0, 2986, 3283, +0, 2987, 3283, +0, 2988, 3283, +0, 2991, 3283, +0, 2994, 3283, +0, 2998, 3282, +0, 3003, 3282, +0, 3010, 3281, +0, 3019, 3280, +0, 3029, 3280, +0, 3043, 3280, +0, 3060, 3280, +0, 3082, 3280, +0, 3109, 3280, +0, 3144, 3280, +0, 3186, 3280, +0, 3238, 3280, +0, 3280, 3262, +0, 3280, 3172, +0, 3280, 3013, +0, 3280, 2641, +0, 3414, 0, +0, 3546, 0, +2400, 3679, 0, +3043, 3811, 0, +3361, 3944, 0, +3594, 4076, 0, +3790, 4095, 0, +0, 2972, 3284, +0, 2972, 3283, +0, 2973, 3283, +0, 2973, 3283, +0, 2974, 3283, +0, 2976, 3283, +0, 2977, 3283, +0, 2980, 3283, +0, 2983, 3283, +0, 2987, 3282, +0, 2992, 3282, +0, 2999, 3281, +0, 3009, 3280, +0, 3021, 3280, +0, 3034, 3280, +0, 3052, 3280, +0, 3074, 3280, +0, 3102, 3280, +0, 3138, 3280, +0, 3180, 3280, +0, 3233, 3280, +0, 3280, 3265, +0, 3280, 3175, +0, 3280, 3017, +0, 3280, 2651, +0, 3413, 0, +0, 3546, 0, +2445, 3678, 0, +3054, 3811, 0, +3366, 3943, 0, +3597, 4076, 0, +3792, 4095, 0, +0, 2956, 3284, +0, 2957, 3283, +0, 2957, 3283, +0, 2958, 3283, +0, 2959, 3283, +0, 2960, 3283, +0, 2962, 3283, +0, 2965, 3283, +0, 2968, 3283, +0, 2972, 3282, +0, 2977, 3282, +0, 2985, 3281, +0, 2995, 3280, +0, 3007, 3280, +0, 3024, 3278, +0, 3041, 3278, +0, 3064, 3278, +0, 3093, 3278, +0, 3129, 3278, +0, 3173, 3278, +0, 3225, 3278, +0, 3278, 3269, +0, 3278, 3180, +0, 3278, 3023, +0, 3278, 2665, +0, 3412, 0, +0, 3545, 0, +2499, 3678, 0, +3069, 3810, 0, +3374, 3943, 0, +3602, 4075, 0, +3795, 4095, 0, +0, 2935, 3284, +0, 2935, 3283, +0, 2936, 3283, +0, 2936, 3283, +0, 2938, 3283, +0, 2939, 3283, +0, 2941, 3283, +0, 2943, 3283, +0, 2947, 3283, +0, 2951, 3282, +0, 2957, 3282, +0, 2965, 3281, +0, 2975, 3280, +0, 2988, 3280, +0, 3005, 3278, +0, 3027, 3276, +0, 3050, 3276, +0, 3080, 3276, +0, 3117, 3276, +0, 3162, 3276, +0, 3216, 3276, +0, 3276, 3273, +0, 3276, 3185, +0, 3276, 3032, +0, 3276, 2683, +0, 3410, 0, +0, 3544, 0, +2562, 3677, 0, +3088, 3810, 0, +3384, 3943, 0, +3608, 4075, 0, +3799, 4095, 0, +0, 2904, 3284, +0, 2905, 3283, +0, 2905, 3283, +0, 2906, 3283, +0, 2907, 3283, +0, 2909, 3283, +0, 2911, 3283, +0, 2914, 3283, +0, 2917, 3283, +0, 2922, 3282, +0, 2928, 3282, +0, 2936, 3281, +0, 2947, 3280, +0, 2961, 3280, +0, 2979, 3278, +0, 3002, 3276, +0, 3031, 3274, +0, 3062, 3274, +0, 3100, 3274, +0, 3147, 3274, +0, 3203, 3274, +0, 3268, 3274, +0, 3274, 3193, +0, 3274, 3042, +0, 3274, 2706, +0, 3408, 0, +0, 3543, 0, +2636, 3676, 0, +3112, 3809, 0, +3396, 3942, 0, +3616, 4075, 0, +3804, 4095, 0, +0, 2860, 3284, +0, 2860, 3283, +0, 2861, 3283, +0, 2862, 3283, +0, 2863, 3283, +0, 2865, 3283, +0, 2867, 3283, +0, 2870, 3283, +0, 2874, 3283, +0, 2879, 3282, +0, 2886, 3282, +0, 2895, 3281, +0, 2907, 3280, +0, 2922, 3280, +0, 2942, 3278, +0, 2967, 3276, +0, 2998, 3274, +0, 3037, 3270, +0, 3078, 3270, +0, 3126, 3270, +0, 3184, 3270, +0, 3252, 3270, +0, 3270, 3203, +0, 3270, 3056, +0, 3270, 2734, +0, 3406, 0, +0, 3541, 0, +2718, 3675, 0, +3143, 3808, 0, +3413, 3941, 0, +3626, 4074, 0, +3811, 4095, 0, +0, 2793, 3284, +0, 2793, 3283, +0, 2794, 3283, +0, 2795, 3283, +0, 2797, 3283, +0, 2799, 3283, +0, 2801, 3283, +0, 2805, 3283, +0, 2809, 3283, +0, 2815, 3282, +0, 2823, 3282, +0, 2833, 3281, +0, 2847, 3280, +0, 2865, 3280, +0, 2886, 3278, +0, 2915, 3276, +0, 2950, 3274, +0, 2993, 3270, +0, 3045, 3266, +0, 3097, 3266, +0, 3159, 3266, +0, 3230, 3266, +0, 3266, 3216, +0, 3266, 3074, +0, 3266, 2770, +0, 3402, 0, +1477, 3538, 0, +2809, 3673, 0, +3181, 3807, 0, +3434, 3940, 0, +3640, 4073, 0, +3820, 4095, 0, +0, 2684, 3284, +0, 2685, 3283, +0, 2686, 3283, +0, 2688, 3283, +0, 2690, 3283, +0, 2692, 3283, +0, 2695, 3283, +0, 2700, 3283, +0, 2705, 3283, +0, 2713, 3282, +0, 2723, 3282, +0, 2735, 3281, +0, 2752, 3280, +0, 2773, 3280, +0, 2800, 3278, +0, 2834, 3276, +0, 2876, 3274, +0, 2926, 3270, +0, 2986, 3266, +1272, 3055, 3259, +1272, 3122, 3259, +1272, 3199, 3259, +1272, 3259, 3233, +1272, 3259, 3097, +1272, 3259, 2813, +0, 3398, 1484, +2256, 3535, 0, +2908, 3670, 0, +3227, 3805, 0, +3461, 3939, 0, +3657, 4072, 0, +3832, 4095, 0, +0, 2481, 3284, +0, 2482, 3283, +0, 2484, 3283, +0, 2486, 3283, +0, 2489, 3283, +0, 2493, 3283, +0, 2498, 3283, +0, 2504, 3283, +0, 2513, 3283, +0, 2524, 3282, +0, 2539, 3282, +0, 2558, 3281, +0, 2583, 3280, +0, 2613, 3280, +0, 2651, 3278, +0, 2698, 3276, +0, 2753, 3274, +0, 2818, 3270, +0, 2893, 3266, +1272, 2976, 3259, +2194, 3069, 3251, +2194, 3154, 3251, +2194, 3248, 3251, +2194, 3251, 3126, +2194, 3251, 2866, +1406, 3392, 2025, +2593, 3530, 0, +3014, 3667, 0, +3282, 3802, 0, +3495, 3937, 0, +3679, 4071, 0, +3847, 4095, 0, +0, 1844, 3284, +0, 1849, 3283, +0, 1856, 3283, +0, 1864, 3283, +0, 1875, 3283, +0, 1890, 3283, +0, 1908, 3283, +0, 1932, 3283, +0, 1962, 3283, +0, 1999, 3282, +0, 2045, 3282, +0, 2100, 3281, +0, 2164, 3280, +0, 2237, 3280, +0, 2320, 3278, +0, 2411, 3276, +0, 2510, 3274, +0, 2616, 3270, +0, 2727, 3266, +1272, 2843, 3259, +2194, 2963, 3251, +2544, 3085, 3239, +2544, 3193, 3239, +2544, 3239, 3162, +2544, 3239, 2928, +2328, 3383, 2326, +2833, 3524, 1536, +3125, 3662, 0, +3347, 3799, 0, +3537, 3934, 0, +3708, 4069, 0, +3867, 4095, 0, +0, 0, 3284, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3282, +0, 0, 3282, +0, 0, 3281, +0, 0, 3280, +0, 0, 3280, +0, 0, 3278, +0, 0, 3276, +0, 1202, 3274, +0, 1990, 3270, +0, 2327, 3266, +1272, 2569, 3259, +2194, 2768, 3251, +2544, 2945, 3239, +2790, 3107, 3223, +2790, 3223, 3206, +2790, 3223, 2999, +2774, 3372, 2676, +3032, 3515, 2457, +3240, 3656, 1663, +3421, 3794, 0, +3587, 3931, 0, +3743, 4066, 0, +3892, 4095, 0, +0, 0, 3284, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3282, +0, 0, 3282, +0, 0, 3281, +0, 0, 3280, +0, 0, 3280, +0, 0, 3278, +0, 0, 3276, +0, 0, 3274, +0, 0, 3270, +1375, 0, 3266, +1899, 1272, 3259, +2195, 2194, 3251, +2544, 2642, 3239, +2790, 2918, 3223, +2992, 3135, 3201, +2992, 3201, 3080, +3051, 3356, 2922, +3209, 3504, 2808, +3360, 3648, 2590, +3505, 3788, 1799, +3647, 3926, 0, +3786, 4063, 0, +3923, 4095, 0, +2609, 0, 3284, +2609, 0, 3283, +2610, 0, 3283, +2611, 0, 3283, +2612, 0, 3283, +2613, 0, 3283, +2614, 0, 3283, +2616, 0, 3283, +2619, 0, 3283, +2622, 0, 3282, +2627, 0, 3282, +2633, 0, 3281, +2641, 0, 3280, +2651, 0, 3280, +2665, 0, 3278, +2683, 0, 3276, +2706, 0, 3274, +2734, 0, 3270, +2770, 0, 3266, +2813, 1272, 3259, +2866, 2194, 3251, +2928, 2544, 3239, +2999, 2790, 3223, +3080, 2992, 3201, +3170, 3170, 3170, +3267, 3333, 3124, +3372, 3488, 3054, +3482, 3636, 2940, +3597, 3780, 2721, +3716, 3920, 1928, +3838, 4058, 0, +3962, 4095, 0, +3132, 0, 3416, +3132, 0, 3416, +3132, 0, 3416, +3132, 0, 3416, +3132, 0, 3416, +3133, 0, 3416, +3133, 0, 3415, +3134, 0, 3415, +3135, 0, 3415, +3136, 0, 3415, +3137, 0, 3414, +3139, 0, 3414, +3142, 0, 3414, +3145, 0, 3413, +3150, 0, 3412, +3156, 0, 3410, +3164, 0, 3408, +3175, 0, 3406, +3189, 0, 3402, +3206, 0, 3398, +3230, 1406, 3392, +3258, 2326, 3383, +3294, 2676, 3372, +3338, 2922, 3356, +3333, 3124, 3267, +3333, 3212, 3124, +3488, 3470, 3054, +3589, 3636, 2940, +3682, 3780, 2721, +3783, 3920, 1928, +3890, 4058, 0, +4002, 4095, 0, +3426, 0, 3548, +3426, 0, 3548, +3427, 0, 3548, +3427, 0, 3548, +3427, 0, 3548, +3427, 0, 3548, +3427, 0, 3548, +3428, 0, 3548, +3428, 0, 3548, +3429, 0, 3547, +3429, 0, 3547, +3430, 0, 3547, +3432, 0, 3546, +3434, 0, 3546, +3436, 0, 3545, +3440, 0, 3544, +3444, 0, 3543, +3450, 0, 3541, +3457, 0, 3538, +3467, 0, 3535, +3480, 0, 3530, +3497, 1536, 3524, +3515, 2457, 3512, +3504, 2808, 3457, +3488, 3054, 3372, +3488, 3054, 3183, +3488, 3264, 3054, +3636, 3558, 2940, +3776, 3780, 2721, +3860, 3920, 1928, +3952, 4058, 0, +4051, 4095, 0, +3651, 0, 3680, +3651, 0, 3680, +3651, 0, 3680, +3651, 0, 3680, +3651, 0, 3680, +3651, 0, 3680, +3651, 0, 3680, +3652, 0, 3680, +3652, 0, 3680, +3652, 0, 3680, +3653, 0, 3679, +3653, 0, 3679, +3654, 0, 3679, +3655, 0, 3678, +3657, 0, 3678, +3659, 0, 3677, +3662, 0, 3676, +3665, 0, 3675, +3670, 0, 3673, +3670, 0, 3664, +3667, 0, 3648, +3662, 0, 3626, +3656, 1663, 3595, +3648, 2590, 3550, +3636, 2940, 3482, +3636, 2940, 3341, +3636, 2940, 3038, +3636, 3324, 2940, +3780, 3655, 2721, +3920, 3893, 1928, +4023, 4058, 0, +4095, 4095, 0, +3812, 0, 3781, +3812, 0, 3781, +3812, 0, 3781, +3812, 0, 3781, +3812, 0, 3781, +3812, 0, 3781, +3812, 0, 3781, +3812, 0, 3780, +3812, 0, 3780, +3812, 0, 3779, +3812, 0, 3778, +3812, 0, 3777, +3811, 0, 3777, +3811, 0, 3775, +3810, 0, 3773, +3810, 0, 3770, +3809, 0, 3766, +3808, 0, 3761, +3807, 0, 3754, +3805, 0, 3744, +3802, 0, 3731, +3799, 0, 3713, +3794, 0, 3687, +3788, 1799, 3651, +3780, 2721, 3597, +3780, 2721, 3492, +3780, 2721, 3296, +3780, 2721, 2722, +3780, 3394, 2721, +3920, 3758, 1928, +4058, 4008, 0, +4095, 4095, 0, +3944, 0, 3864, +3944, 0, 3864, +3944, 0, 3863, +3944, 0, 3863, +3944, 0, 3863, +3944, 0, 3863, +3944, 0, 3863, +3944, 0, 3863, +3944, 0, 3863, +3944, 0, 3862, +3944, 0, 3862, +3944, 0, 3861, +3944, 0, 3860, +3943, 0, 3859, +3943, 0, 3857, +3943, 0, 3854, +3942, 0, 3851, +3941, 0, 3847, +3940, 0, 3841, +3939, 0, 3833, +3937, 0, 3822, +3934, 0, 3808, +3931, 0, 3787, +3926, 0, 3758, +3920, 1928, 3716, +3920, 1928, 3637, +3920, 1928, 3504, +3920, 1928, 3229, +3920, 2556, 1928, +3920, 3474, 1928, +4058, 3867, 0, +4095, 4095, 0, +4076, 0, 3955, +4076, 0, 3955, +4076, 0, 3955, +4076, 0, 3955, +4076, 0, 3955, +4076, 0, 3954, +4076, 0, 3954, +4076, 0, 3954, +4076, 0, 3954, +4076, 0, 3953, +4076, 0, 3953, +4076, 0, 3953, +4076, 0, 3952, +4076, 0, 3950, +4075, 0, 3949, +4075, 0, 3947, +4075, 0, 3945, +4074, 0, 3941, +4073, 0, 3937, +4072, 0, 3930, +4071, 0, 3921, +4069, 0, 3910, +4066, 0, 3893, +4063, 0, 3870, +4058, 0, 3838, +4058, 0, 3779, +4058, 0, 3685, +4058, 0, 3520, +4058, 0, 3119, +4058, 2157, 0, +4058, 3562, 0, +4095, 3982, 0, +4095, 0, 4054, +4095, 0, 4054, +4095, 0, 4054, +4095, 0, 4054, +4095, 0, 4054, +4095, 0, 4054, +4095, 0, 4054, +4095, 0, 4053, +4095, 0, 4053, +4095, 0, 4053, +4095, 0, 4053, +4095, 0, 4052, +4095, 0, 4051, +4095, 0, 4051, +4095, 0, 4049, +4095, 0, 4048, +4095, 0, 4046, +4095, 0, 4043, +4095, 0, 4039, +4095, 0, 4034, +4095, 0, 4027, +4095, 0, 4018, +4095, 0, 4005, +4095, 0, 3987, +4095, 0, 3962, +4095, 0, 3918, +4095, 0, 3851, +4095, 0, 3743, +4095, 0, 3541, +4095, 0, 2915, +4095, 0, 0, +4095, 3659, 0, +0, 3146, 3416, +0, 3146, 3416, +0, 3147, 3416, +0, 3147, 3416, +0, 3147, 3416, +0, 3148, 3416, +0, 3149, 3416, +0, 3151, 3416, +0, 3152, 3416, +0, 3155, 3416, +0, 3158, 3416, +0, 3162, 3416, +0, 3168, 3416, +0, 3175, 3416, +0, 3184, 3416, +0, 3197, 3416, +0, 3213, 3416, +0, 3234, 3416, +0, 3261, 3416, +0, 3294, 3416, +0, 3335, 3416, +0, 3385, 3416, +0, 3416, 3387, +0, 3416, 3294, +0, 3416, 3132, +0, 3416, 2741, +0, 3548, 0, +0, 3680, 0, +2367, 3812, 0, +3140, 3944, 0, +3475, 4076, 0, +3716, 4095, 0, +0, 3146, 3416, +0, 3146, 3416, +0, 3146, 3416, +0, 3147, 3416, +0, 3147, 3416, +0, 3148, 3416, +0, 3149, 3416, +0, 3151, 3416, +0, 3152, 3416, +0, 3154, 3416, +0, 3158, 3416, +0, 3162, 3416, +0, 3168, 3416, +0, 3175, 3416, +0, 3184, 3416, +0, 3197, 3416, +0, 3213, 3416, +0, 3234, 3416, +0, 3261, 3416, +0, 3294, 3416, +0, 3335, 3416, +0, 3385, 3416, +0, 3416, 3387, +0, 3416, 3294, +0, 3416, 3132, +0, 3416, 2741, +0, 3548, 0, +0, 3680, 0, +2369, 3812, 0, +3140, 3944, 0, +3475, 4076, 0, +3717, 4095, 0, +0, 3145, 3416, +0, 3146, 3416, +0, 3146, 3416, +0, 3147, 3416, +0, 3147, 3416, +0, 3148, 3416, +0, 3149, 3416, +0, 3150, 3416, +0, 3152, 3416, +0, 3154, 3416, +0, 3157, 3416, +0, 3162, 3416, +0, 3167, 3416, +0, 3175, 3416, +0, 3184, 3416, +0, 3197, 3416, +0, 3213, 3416, +0, 3234, 3416, +0, 3260, 3416, +0, 3294, 3416, +0, 3335, 3416, +0, 3384, 3416, +0, 3416, 3387, +0, 3416, 3294, +0, 3416, 3132, +0, 3416, 2742, +0, 3548, 0, +0, 3680, 0, +2371, 3812, 0, +3140, 3944, 0, +3476, 4076, 0, +3717, 4095, 0, +0, 3145, 3416, +0, 3145, 3416, +0, 3146, 3416, +0, 3146, 3416, +0, 3147, 3416, +0, 3147, 3416, +0, 3148, 3416, +0, 3150, 3416, +0, 3151, 3416, +0, 3154, 3416, +0, 3157, 3416, +0, 3161, 3416, +0, 3167, 3416, +0, 3174, 3416, +0, 3184, 3416, +0, 3196, 3416, +0, 3213, 3416, +0, 3234, 3416, +0, 3260, 3416, +0, 3293, 3416, +0, 3335, 3416, +0, 3384, 3416, +0, 3416, 3387, +0, 3416, 3294, +0, 3416, 3132, +0, 3416, 2742, +0, 3548, 0, +0, 3680, 0, +2374, 3812, 0, +3141, 3944, 0, +3476, 4076, 0, +3717, 4095, 0, +0, 3144, 3416, +0, 3145, 3416, +0, 3145, 3416, +0, 3146, 3416, +0, 3146, 3416, +0, 3147, 3416, +0, 3148, 3416, +0, 3149, 3416, +0, 3151, 3416, +0, 3154, 3416, +0, 3157, 3416, +0, 3161, 3416, +0, 3166, 3416, +0, 3174, 3416, +0, 3184, 3416, +0, 3196, 3416, +0, 3212, 3416, +0, 3233, 3416, +0, 3260, 3416, +0, 3293, 3416, +0, 3334, 3416, +0, 3384, 3416, +0, 3416, 3387, +0, 3416, 3295, +0, 3416, 3132, +0, 3416, 2743, +0, 3548, 0, +0, 3680, 0, +2377, 3812, 0, +3142, 3944, 0, +3476, 4076, 0, +3717, 4095, 0, +0, 3144, 3416, +0, 3144, 3416, +0, 3144, 3416, +0, 3145, 3416, +0, 3145, 3416, +0, 3146, 3416, +0, 3147, 3416, +0, 3149, 3416, +0, 3151, 3416, +0, 3153, 3416, +0, 3156, 3416, +0, 3160, 3416, +0, 3166, 3416, +0, 3173, 3416, +0, 3183, 3416, +0, 3196, 3416, +0, 3212, 3416, +0, 3233, 3416, +0, 3259, 3416, +0, 3293, 3416, +0, 3334, 3416, +0, 3384, 3416, +0, 3416, 3387, +0, 3416, 3295, +0, 3416, 3133, +0, 3416, 2744, +0, 3548, 0, +0, 3680, 0, +2382, 3812, 0, +3143, 3944, 0, +3477, 4076, 0, +3717, 4095, 0, +0, 3143, 3416, +0, 3143, 3416, +0, 3143, 3416, +0, 3144, 3416, +0, 3144, 3416, +0, 3145, 3416, +0, 3147, 3415, +0, 3148, 3415, +0, 3150, 3415, +0, 3152, 3415, +0, 3155, 3415, +0, 3160, 3415, +0, 3165, 3415, +0, 3173, 3415, +0, 3182, 3415, +0, 3195, 3415, +0, 3211, 3415, +0, 3232, 3415, +0, 3259, 3415, +0, 3292, 3415, +0, 3333, 3415, +0, 3383, 3415, +0, 3415, 3387, +0, 3415, 3295, +0, 3415, 3133, +0, 3415, 2745, +0, 3548, 0, +0, 3680, 0, +2389, 3812, 0, +3144, 3944, 0, +3477, 4076, 0, +3718, 4095, 0, +0, 3141, 3416, +0, 3141, 3416, +0, 3142, 3416, +0, 3142, 3416, +0, 3143, 3416, +0, 3144, 3416, +0, 3145, 3415, +0, 3147, 3415, +0, 3149, 3415, +0, 3151, 3415, +0, 3154, 3415, +0, 3158, 3415, +0, 3164, 3415, +0, 3171, 3415, +0, 3181, 3415, +0, 3194, 3415, +0, 3210, 3415, +0, 3231, 3415, +0, 3258, 3415, +0, 3291, 3415, +0, 3333, 3415, +0, 3382, 3415, +0, 3415, 3388, +0, 3415, 3296, +0, 3415, 3134, +0, 3415, 2746, +0, 3548, 0, +0, 3680, 0, +2397, 3812, 0, +3145, 3944, 0, +3478, 4076, 0, +3718, 4095, 0, +0, 3139, 3416, +0, 3140, 3416, +0, 3140, 3416, +0, 3141, 3416, +0, 3141, 3416, +0, 3142, 3416, +0, 3144, 3415, +0, 3145, 3415, +0, 3147, 3415, +0, 3150, 3415, +0, 3153, 3415, +0, 3157, 3415, +0, 3163, 3415, +0, 3170, 3415, +0, 3180, 3415, +0, 3192, 3415, +0, 3209, 3415, +0, 3230, 3415, +0, 3257, 3415, +0, 3290, 3415, +0, 3331, 3415, +0, 3381, 3415, +0, 3415, 3388, +0, 3415, 3296, +0, 3415, 3135, +0, 3415, 2748, +0, 3548, 0, +0, 3680, 0, +2408, 3812, 0, +3147, 3944, 0, +3479, 4076, 0, +3719, 4095, 0, +0, 3137, 3416, +0, 3137, 3416, +0, 3138, 3416, +0, 3138, 3416, +0, 3139, 3416, +0, 3140, 3416, +0, 3141, 3415, +0, 3143, 3415, +0, 3145, 3415, +0, 3147, 3415, +0, 3151, 3415, +0, 3155, 3415, +0, 3161, 3415, +0, 3168, 3415, +0, 3178, 3415, +0, 3191, 3415, +0, 3207, 3415, +0, 3228, 3415, +0, 3255, 3415, +0, 3289, 3415, +0, 3330, 3415, +0, 3380, 3415, +0, 3415, 3389, +0, 3415, 3297, +0, 3415, 3136, +0, 3415, 2751, +0, 3547, 0, +0, 3680, 0, +2422, 3812, 0, +3151, 3944, 0, +3480, 4076, 0, +3720, 4095, 0, +0, 3134, 3416, +0, 3134, 3416, +0, 3134, 3416, +0, 3135, 3416, +0, 3135, 3416, +0, 3136, 3416, +0, 3138, 3415, +0, 3139, 3415, +0, 3141, 3415, +0, 3144, 3415, +0, 3148, 3414, +0, 3152, 3414, +0, 3158, 3414, +0, 3165, 3414, +0, 3175, 3414, +0, 3188, 3414, +0, 3205, 3414, +0, 3226, 3414, +0, 3253, 3414, +0, 3287, 3414, +0, 3329, 3414, +0, 3379, 3414, +0, 3414, 3390, +0, 3414, 3298, +0, 3414, 3137, +0, 3414, 2754, +0, 3547, 0, +0, 3679, 0, +2441, 3812, 0, +3154, 3944, 0, +3482, 4076, 0, +3721, 4095, 0, +0, 3129, 3416, +0, 3129, 3416, +0, 3130, 3416, +0, 3130, 3416, +0, 3131, 3416, +0, 3132, 3416, +0, 3133, 3415, +0, 3135, 3415, +0, 3137, 3415, +0, 3140, 3415, +0, 3144, 3414, +0, 3149, 3414, +0, 3155, 3414, +0, 3162, 3414, +0, 3172, 3414, +0, 3185, 3414, +0, 3202, 3414, +0, 3223, 3414, +0, 3250, 3414, +0, 3284, 3414, +0, 3326, 3414, +0, 3376, 3414, +0, 3414, 3391, +0, 3414, 3299, +0, 3414, 3139, +0, 3414, 2759, +0, 3547, 0, +0, 3679, 0, +2465, 3812, 0, +3159, 3944, 0, +3485, 4076, 0, +3722, 4095, 0, +0, 3123, 3416, +0, 3123, 3416, +0, 3124, 3416, +0, 3124, 3416, +0, 3125, 3416, +0, 3126, 3416, +0, 3127, 3415, +0, 3129, 3415, +0, 3131, 3415, +0, 3134, 3415, +0, 3138, 3414, +0, 3143, 3414, +0, 3150, 3414, +0, 3158, 3414, +0, 3168, 3414, +0, 3181, 3414, +0, 3198, 3414, +0, 3219, 3414, +0, 3247, 3414, +0, 3281, 3414, +0, 3323, 3414, +0, 3374, 3414, +0, 3414, 3393, +0, 3414, 3301, +0, 3414, 3142, +0, 3414, 2765, +0, 3546, 0, +0, 3679, 0, +2494, 3811, 0, +3166, 3944, 0, +3488, 4076, 0, +3724, 4095, 0, +0, 3115, 3416, +0, 3115, 3416, +0, 3115, 3416, +0, 3116, 3416, +0, 3117, 3416, +0, 3118, 3416, +0, 3119, 3415, +0, 3121, 3415, +0, 3123, 3415, +0, 3126, 3415, +0, 3130, 3414, +0, 3135, 3414, +0, 3142, 3414, +0, 3151, 3413, +0, 3162, 3413, +0, 3175, 3413, +0, 3192, 3413, +0, 3214, 3413, +0, 3242, 3413, +0, 3276, 3413, +0, 3319, 3413, +0, 3370, 3413, +0, 3413, 3395, +0, 3413, 3304, +0, 3413, 3145, +0, 3413, 2773, +0, 3546, 0, +0, 3678, 0, +2531, 3811, 0, +3175, 3943, 0, +3492, 4076, 0, +3727, 4095, 0, +0, 3104, 3416, +0, 3104, 3416, +0, 3104, 3416, +0, 3105, 3416, +0, 3106, 3416, +0, 3106, 3416, +0, 3108, 3415, +0, 3110, 3415, +0, 3112, 3415, +0, 3115, 3415, +0, 3119, 3414, +0, 3125, 3414, +0, 3132, 3414, +0, 3141, 3413, +0, 3154, 3412, +0, 3167, 3412, +0, 3184, 3412, +0, 3206, 3412, +0, 3234, 3412, +0, 3270, 3412, +0, 3313, 3412, +0, 3365, 3412, +0, 3412, 3397, +0, 3412, 3307, +0, 3412, 3150, +0, 3412, 2784, +0, 3545, 0, +0, 3678, 0, +2576, 3810, 0, +3186, 3943, 0, +3498, 4075, 0, +3730, 4095, 0, +0, 3088, 3416, +0, 3088, 3416, +0, 3089, 3416, +0, 3089, 3416, +0, 3090, 3416, +0, 3091, 3416, +0, 3093, 3415, +0, 3094, 3415, +0, 3097, 3415, +0, 3100, 3415, +0, 3104, 3414, +0, 3110, 3414, +0, 3117, 3414, +0, 3127, 3413, +0, 3140, 3412, +0, 3156, 3410, +0, 3174, 3410, +0, 3196, 3410, +0, 3225, 3410, +0, 3261, 3410, +0, 3305, 3410, +0, 3358, 3410, +0, 3410, 3401, +0, 3410, 3311, +0, 3410, 3156, +0, 3410, 2797, +0, 3544, 0, +0, 3677, 0, +2631, 3810, 0, +3201, 3943, 0, +3505, 4075, 0, +3735, 4095, 0, +0, 3067, 3416, +0, 3067, 3416, +0, 3067, 3416, +0, 3068, 3416, +0, 3069, 3416, +0, 3070, 3416, +0, 3071, 3415, +0, 3073, 3415, +0, 3076, 3415, +0, 3079, 3415, +0, 3083, 3414, +0, 3089, 3414, +0, 3097, 3414, +0, 3107, 3413, +0, 3120, 3412, +0, 3137, 3410, +0, 3159, 3408, +0, 3183, 3408, +0, 3212, 3408, +0, 3249, 3408, +0, 3294, 3408, +0, 3348, 3408, +0, 3408, 3406, +0, 3408, 3317, +0, 3408, 3164, +0, 3408, 2815, +0, 3543, 0, +0, 3676, 0, +2694, 3809, 0, +3220, 3942, 0, +3515, 4075, 0, +3741, 4095, 0, +0, 3036, 3416, +0, 3036, 3416, +0, 3037, 3416, +0, 3038, 3416, +0, 3038, 3416, +0, 3039, 3416, +0, 3041, 3415, +0, 3043, 3415, +0, 3046, 3415, +0, 3049, 3415, +0, 3054, 3414, +0, 3060, 3414, +0, 3069, 3414, +0, 3079, 3413, +0, 3093, 3412, +0, 3111, 3410, +0, 3134, 3408, +0, 3164, 3406, +0, 3194, 3406, +0, 3233, 3406, +0, 3279, 3406, +0, 3335, 3406, +0, 3400, 3406, +0, 3406, 3325, +0, 3406, 3175, +0, 3406, 2838, +0, 3541, 0, +0, 3675, 0, +2767, 3808, 0, +3244, 3941, 0, +3528, 4074, 0, +3748, 4095, 0, +0, 2992, 3416, +0, 2992, 3416, +0, 2992, 3416, +0, 2993, 3416, +0, 2994, 3416, +0, 2996, 3416, +0, 2997, 3415, +0, 2999, 3415, +0, 3002, 3415, +0, 3006, 3415, +0, 3011, 3414, +0, 3018, 3414, +0, 3027, 3414, +0, 3039, 3413, +0, 3055, 3412, +0, 3074, 3410, +0, 3099, 3408, +0, 3131, 3406, +0, 3170, 3402, +0, 3210, 3402, +0, 3259, 3402, +0, 3317, 3402, +0, 3384, 3402, +0, 3402, 3335, +0, 3402, 3189, +0, 3402, 2866, +0, 3538, 0, +0, 3673, 0, +2850, 3807, 0, +3275, 3940, 0, +3545, 4073, 0, +3759, 4095, 0, +0, 2925, 3416, +0, 2925, 3416, +0, 2926, 3416, +0, 2927, 3416, +0, 2928, 3416, +0, 2929, 3416, +0, 2931, 3415, +0, 2934, 3415, +0, 2937, 3415, +0, 2942, 3415, +0, 2947, 3414, +0, 2956, 3414, +0, 2966, 3414, +0, 2979, 3413, +0, 2997, 3412, +0, 3019, 3410, +0, 3047, 3408, +0, 3082, 3406, +0, 3125, 3402, +0, 3177, 3398, +0, 3230, 3398, +0, 3291, 3398, +0, 3362, 3398, +0, 3398, 3348, +0, 3398, 3206, +0, 3398, 2902, +0, 3535, 0, +1603, 3670, 0, +2941, 3805, 0, +3313, 3939, 0, +3566, 4072, 0, +3772, 4095, 0, +0, 2816, 3416, +0, 2817, 3416, +0, 2817, 3416, +0, 2818, 3416, +0, 2820, 3416, +0, 2822, 3416, +0, 2824, 3415, +0, 2827, 3415, +0, 2832, 3415, +0, 2837, 3415, +0, 2845, 3414, +0, 2855, 3414, +0, 2867, 3414, +0, 2884, 3413, +0, 2906, 3412, +0, 2933, 3410, +0, 2966, 3408, +0, 3008, 3406, +0, 3059, 3402, +0, 3118, 3398, +1406, 3187, 3392, +1406, 3255, 3392, +1406, 3331, 3392, +1406, 3392, 3365, +1406, 3392, 3230, +1406, 3392, 2945, +0, 3530, 1621, +2388, 3667, 0, +3040, 3802, 0, +3359, 3937, 0, +3593, 4071, 0, +3790, 4095, 0, +0, 2613, 3416, +0, 2614, 3416, +0, 2615, 3416, +0, 2617, 3416, +0, 2619, 3416, +0, 2621, 3416, +0, 2625, 3415, +0, 2630, 3415, +0, 2637, 3415, +0, 2646, 3415, +0, 2657, 3414, +0, 2672, 3414, +0, 2691, 3414, +0, 2715, 3413, +0, 2746, 3412, +0, 2784, 3410, +0, 2830, 3408, +0, 2886, 3406, +0, 2951, 3402, +0, 3025, 3398, +1406, 3108, 3392, +2326, 3201, 3383, +2326, 3286, 3383, +2326, 3380, 3383, +2326, 3383, 3258, +2326, 3383, 2998, +1536, 3524, 2158, +2724, 3662, 0, +3145, 3799, 0, +3414, 3934, 0, +3627, 4069, 0, +3812, 4095, 0, +0, 1977, 3416, +0, 1981, 3416, +0, 1986, 3416, +0, 1992, 3416, +0, 2000, 3416, +0, 2011, 3416, +0, 2026, 3415, +0, 2044, 3415, +0, 2068, 3415, +0, 2098, 3415, +0, 2135, 3414, +0, 2180, 3414, +0, 2234, 3414, +0, 2298, 3413, +0, 2371, 3412, +0, 2453, 3410, +0, 2545, 3408, +0, 2643, 3406, +0, 2749, 3402, +0, 2860, 3398, +1406, 2976, 3392, +2326, 3095, 3383, +2676, 3218, 3372, +2676, 3325, 3372, +2676, 3372, 3294, +2676, 3372, 3060, +2459, 3515, 2457, +2965, 3656, 1663, +3256, 3794, 0, +3479, 3931, 0, +3669, 4066, 0, +3840, 4095, 0, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3415, +0, 0, 3415, +0, 0, 3415, +0, 0, 3415, +0, 0, 3414, +0, 0, 3414, +0, 0, 3414, +0, 0, 3413, +0, 0, 3412, +0, 0, 3410, +0, 0, 3408, +0, 1325, 3406, +0, 2121, 3402, +0, 2458, 3398, +1406, 2701, 3392, +2326, 2900, 3383, +2676, 3077, 3372, +2922, 3239, 3356, +2922, 3356, 3338, +2922, 3356, 3132, +2907, 3504, 2808, +3165, 3648, 2590, +3372, 3788, 1799, +3553, 3926, 0, +3719, 4063, 0, +3875, 4095, 0, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3415, +0, 0, 3415, +0, 0, 3415, +0, 0, 3415, +0, 0, 3414, +0, 0, 3414, +0, 0, 3414, +0, 0, 3413, +0, 0, 3412, +0, 0, 3410, +0, 0, 3408, +0, 0, 3406, +0, 0, 3402, +1484, 0, 3398, +2025, 1406, 3392, +2326, 2328, 3383, +2676, 2774, 3372, +2922, 3051, 3356, +3124, 3267, 3333, +3124, 3333, 3212, +3183, 3488, 3054, +3341, 3636, 2940, +3492, 3780, 2721, +3637, 3920, 1928, +3779, 4058, 0, +3918, 4095, 0, +2741, 0, 3416, +2741, 0, 3416, +2742, 0, 3416, +2742, 0, 3416, +2743, 0, 3416, +2744, 0, 3416, +2745, 0, 3415, +2746, 0, 3415, +2748, 0, 3415, +2751, 0, 3415, +2754, 0, 3414, +2759, 0, 3414, +2765, 0, 3414, +2773, 0, 3413, +2784, 0, 3412, +2797, 0, 3410, +2815, 0, 3408, +2838, 0, 3406, +2866, 0, 3402, +2902, 0, 3398, +2945, 1406, 3392, +2998, 2326, 3383, +3060, 2676, 3372, +3132, 2922, 3356, +3212, 3124, 3333, +3302, 3302, 3302, +3399, 3466, 3256, +3504, 3620, 3186, +3614, 3768, 3072, +3729, 3912, 2854, +3848, 4052, 2063, +3970, 4095, 0, +3264, 0, 3548, +3264, 0, 3548, +3264, 0, 3548, +3264, 0, 3548, +3264, 0, 3548, +3265, 0, 3548, +3265, 0, 3548, +3265, 0, 3548, +3266, 0, 3548, +3267, 0, 3547, +3268, 0, 3547, +3269, 0, 3547, +3271, 0, 3546, +3274, 0, 3546, +3278, 0, 3545, +3282, 0, 3544, +3288, 0, 3543, +3296, 0, 3541, +3307, 0, 3538, +3321, 0, 3535, +3339, 0, 3530, +3362, 1536, 3524, +3391, 2457, 3515, +3426, 2808, 3504, +3470, 3054, 3488, +3466, 3256, 3399, +3466, 3344, 3256, +3620, 3603, 3186, +3721, 3768, 3072, +3814, 3912, 2854, +3915, 4052, 2063, +4022, 4095, 0, +3558, 0, 3680, +3558, 0, 3680, +3559, 0, 3680, +3559, 0, 3680, +3559, 0, 3680, +3559, 0, 3680, +3559, 0, 3680, +3559, 0, 3680, +3560, 0, 3680, +3560, 0, 3680, +3561, 0, 3679, +3562, 0, 3679, +3563, 0, 3679, +3564, 0, 3678, +3566, 0, 3678, +3568, 0, 3677, +3572, 0, 3676, +3576, 0, 3675, +3582, 0, 3673, +3589, 0, 3670, +3599, 0, 3667, +3612, 0, 3662, +3629, 1663, 3656, +3648, 2590, 3644, +3636, 2940, 3589, +3620, 3186, 3504, +3620, 3186, 3315, +3620, 3396, 3186, +3768, 3691, 3072, +3908, 3912, 2854, +3992, 4052, 2063, +4084, 4095, 0, +3783, 0, 3812, +3783, 0, 3812, +3783, 0, 3812, +3783, 0, 3812, +3783, 0, 3812, +3783, 0, 3812, +3783, 0, 3812, +3784, 0, 3812, +3784, 0, 3812, +3784, 0, 3812, +3784, 0, 3812, +3785, 0, 3812, +3785, 0, 3811, +3786, 0, 3811, +3787, 0, 3810, +3789, 0, 3810, +3791, 0, 3809, +3794, 0, 3808, +3797, 0, 3807, +3802, 0, 3805, +3802, 0, 3796, +3799, 0, 3781, +3794, 0, 3759, +3788, 1799, 3728, +3780, 2721, 3682, +3768, 3072, 3614, +3768, 3072, 3473, +3768, 3072, 3171, +3768, 3456, 3072, +3912, 3787, 2854, +4052, 4025, 2063, +4095, 4095, 0, +3944, 0, 3913, +3944, 0, 3913, +3944, 0, 3913, +3944, 0, 3913, +3944, 0, 3913, +3944, 0, 3913, +3944, 0, 3913, +3944, 0, 3912, +3944, 0, 3912, +3944, 0, 3912, +3944, 0, 3911, +3944, 0, 3910, +3944, 0, 3910, +3943, 0, 3909, +3943, 0, 3907, +3943, 0, 3905, +3942, 0, 3902, +3941, 0, 3898, +3940, 0, 3893, +3939, 0, 3886, +3937, 0, 3876, +3934, 0, 3863, +3931, 0, 3845, +3926, 0, 3820, +3920, 1928, 3783, +3912, 2854, 3729, +3912, 2854, 3624, +3912, 2854, 3428, +3912, 2854, 2854, +3912, 3526, 2854, +4052, 3890, 2063, +4095, 4095, 0, +4076, 0, 3996, +4076, 0, 3996, +4076, 0, 3996, +4076, 0, 3995, +4076, 0, 3995, +4076, 0, 3995, +4076, 0, 3995, +4076, 0, 3995, +4076, 0, 3995, +4076, 0, 3995, +4076, 0, 3994, +4076, 0, 3994, +4076, 0, 3993, +4076, 0, 3992, +4075, 0, 3991, +4075, 0, 3989, +4075, 0, 3986, +4074, 0, 3983, +4073, 0, 3979, +4072, 0, 3973, +4071, 0, 3965, +4069, 0, 3954, +4066, 0, 3940, +4063, 0, 3919, +4058, 0, 3890, +4052, 2063, 3848, +4052, 2063, 3769, +4052, 2063, 3636, +4052, 2063, 3361, +4052, 2689, 2063, +4052, 3606, 2063, +4095, 4000, 0, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4086, +4095, 0, 4086, +4095, 0, 4086, +4095, 0, 4085, +4095, 0, 4085, +4095, 0, 4084, +4095, 0, 4083, +4095, 0, 4082, +4095, 0, 4080, +4095, 0, 4077, +4095, 0, 4073, +4095, 0, 4069, +4095, 0, 4062, +4095, 0, 4054, +4095, 0, 4042, +4095, 0, 4025, +4095, 0, 4002, +4095, 0, 3970, +4095, 0, 3911, +4095, 0, 3818, +4095, 0, 3653, +4095, 0, 3253, +4095, 2266, 0, +4095, 3695, 0, +0, 3278, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3279, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3280, 3548, +0, 3281, 3548, +0, 3283, 3548, +0, 3285, 3548, +0, 3287, 3548, +0, 3290, 3548, +0, 3294, 3548, +0, 3300, 3548, +0, 3307, 3548, +0, 3317, 3548, +0, 3329, 3548, +0, 3346, 3548, +0, 3367, 3548, +0, 3393, 3548, +0, 3426, 3548, +0, 3467, 3548, +0, 3516, 3548, +0, 3548, 3519, +0, 3548, 3426, +0, 3548, 3264, +0, 3548, 2873, +0, 3680, 0, +0, 3812, 0, +2497, 3944, 0, +3271, 4076, 0, +3608, 4095, 0, +0, 3278, 3548, +0, 3278, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3280, 3548, +0, 3281, 3548, +0, 3283, 3548, +0, 3284, 3548, +0, 3287, 3548, +0, 3290, 3548, +0, 3294, 3548, +0, 3300, 3548, +0, 3307, 3548, +0, 3317, 3548, +0, 3329, 3548, +0, 3346, 3548, +0, 3367, 3548, +0, 3393, 3548, +0, 3426, 3548, +0, 3467, 3548, +0, 3516, 3548, +0, 3548, 3519, +0, 3548, 3426, +0, 3548, 3264, +0, 3548, 2873, +0, 3680, 0, +0, 3812, 0, +2498, 3944, 0, +3272, 4076, 0, +3608, 4095, 0, +0, 3278, 3548, +0, 3278, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3280, 3548, +0, 3281, 3548, +0, 3282, 3548, +0, 3284, 3548, +0, 3287, 3548, +0, 3290, 3548, +0, 3294, 3548, +0, 3300, 3548, +0, 3307, 3548, +0, 3317, 3548, +0, 3329, 3548, +0, 3346, 3548, +0, 3366, 3548, +0, 3393, 3548, +0, 3426, 3548, +0, 3467, 3548, +0, 3516, 3548, +0, 3548, 3519, +0, 3548, 3427, +0, 3548, 3264, +0, 3548, 2873, +0, 3680, 0, +0, 3812, 0, +2500, 3944, 0, +3272, 4076, 0, +3608, 4095, 0, +0, 3277, 3548, +0, 3278, 3548, +0, 3278, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3281, 3548, +0, 3282, 3548, +0, 3284, 3548, +0, 3286, 3548, +0, 3290, 3548, +0, 3294, 3548, +0, 3299, 3548, +0, 3307, 3548, +0, 3316, 3548, +0, 3329, 3548, +0, 3345, 3548, +0, 3366, 3548, +0, 3393, 3548, +0, 3426, 3548, +0, 3467, 3548, +0, 3516, 3548, +0, 3548, 3519, +0, 3548, 3427, +0, 3548, 3264, +0, 3548, 2874, +0, 3680, 0, +0, 3812, 0, +2502, 3944, 0, +3272, 4076, 0, +3608, 4095, 0, +0, 3277, 3548, +0, 3277, 3548, +0, 3277, 3548, +0, 3278, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3280, 3548, +0, 3282, 3548, +0, 3284, 3548, +0, 3286, 3548, +0, 3289, 3548, +0, 3293, 3548, +0, 3299, 3548, +0, 3307, 3548, +0, 3316, 3548, +0, 3329, 3548, +0, 3345, 3548, +0, 3366, 3548, +0, 3392, 3548, +0, 3426, 3548, +0, 3467, 3548, +0, 3516, 3548, +0, 3548, 3519, +0, 3548, 3427, +0, 3548, 3264, +0, 3548, 2874, +0, 3680, 0, +0, 3812, 0, +2505, 3944, 0, +3273, 4076, 0, +3608, 4095, 0, +0, 3276, 3548, +0, 3277, 3548, +0, 3277, 3548, +0, 3277, 3548, +0, 3278, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3281, 3548, +0, 3283, 3548, +0, 3286, 3548, +0, 3289, 3548, +0, 3293, 3548, +0, 3299, 3548, +0, 3306, 3548, +0, 3316, 3548, +0, 3328, 3548, +0, 3344, 3548, +0, 3365, 3548, +0, 3392, 3548, +0, 3425, 3548, +0, 3466, 3548, +0, 3516, 3548, +0, 3548, 3519, +0, 3548, 3427, +0, 3548, 3265, +0, 3548, 2875, +0, 3680, 0, +0, 3812, 0, +2508, 3944, 0, +3273, 4076, 0, +3609, 4095, 0, +0, 3276, 3548, +0, 3276, 3548, +0, 3276, 3548, +0, 3277, 3548, +0, 3277, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3281, 3548, +0, 3283, 3548, +0, 3285, 3548, +0, 3288, 3548, +0, 3292, 3548, +0, 3298, 3548, +0, 3305, 3548, +0, 3315, 3548, +0, 3328, 3548, +0, 3344, 3548, +0, 3365, 3548, +0, 3392, 3548, +0, 3425, 3548, +0, 3466, 3548, +0, 3515, 3548, +0, 3548, 3519, +0, 3548, 3427, +0, 3548, 3265, +0, 3548, 2876, +0, 3680, 0, +0, 3812, 0, +2513, 3944, 0, +3274, 4076, 0, +3609, 4095, 0, +0, 3275, 3548, +0, 3275, 3548, +0, 3275, 3548, +0, 3275, 3548, +0, 3276, 3548, +0, 3277, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3282, 3548, +0, 3284, 3548, +0, 3287, 3548, +0, 3292, 3548, +0, 3297, 3548, +0, 3305, 3548, +0, 3314, 3548, +0, 3327, 3548, +0, 3343, 3548, +0, 3364, 3548, +0, 3391, 3548, +0, 3424, 3548, +0, 3466, 3548, +0, 3515, 3548, +0, 3548, 3520, +0, 3548, 3428, +0, 3548, 3265, +0, 3548, 2877, +0, 3680, 0, +0, 3812, 0, +2520, 3944, 0, +3276, 4076, 0, +3610, 4095, 0, +0, 3273, 3548, +0, 3273, 3548, +0, 3274, 3548, +0, 3274, 3548, +0, 3275, 3548, +0, 3275, 3548, +0, 3276, 3548, +0, 3277, 3548, +0, 3279, 3548, +0, 3281, 3548, +0, 3283, 3548, +0, 3286, 3548, +0, 3291, 3548, +0, 3296, 3548, +0, 3303, 3548, +0, 3313, 3548, +0, 3326, 3548, +0, 3342, 3548, +0, 3363, 3548, +0, 3390, 3548, +0, 3423, 3548, +0, 3465, 3548, +0, 3514, 3548, +0, 3548, 3520, +0, 3548, 3428, +0, 3548, 3266, +0, 3548, 2878, +0, 3680, 0, +0, 3812, 0, +2528, 3944, 0, +3277, 4076, 0, +3611, 4095, 0, +0, 3271, 3548, +0, 3272, 3548, +0, 3272, 3548, +0, 3272, 3548, +0, 3273, 3548, +0, 3273, 3548, +0, 3274, 3548, +0, 3276, 3548, +0, 3277, 3548, +0, 3279, 3547, +0, 3282, 3547, +0, 3285, 3547, +0, 3289, 3547, +0, 3295, 3547, +0, 3302, 3547, +0, 3312, 3547, +0, 3325, 3547, +0, 3341, 3547, +0, 3362, 3547, +0, 3389, 3547, +0, 3422, 3547, +0, 3464, 3547, +0, 3513, 3547, +0, 3547, 3520, +0, 3547, 3429, +0, 3547, 3267, +0, 3547, 2880, +0, 3680, 0, +0, 3812, 0, +2539, 3944, 0, +3279, 4076, 0, +3612, 4095, 0, +0, 3269, 3548, +0, 3269, 3548, +0, 3269, 3548, +0, 3270, 3548, +0, 3270, 3548, +0, 3271, 3548, +0, 3272, 3548, +0, 3273, 3548, +0, 3275, 3548, +0, 3277, 3547, +0, 3280, 3547, +0, 3283, 3547, +0, 3287, 3547, +0, 3293, 3547, +0, 3300, 3547, +0, 3310, 3547, +0, 3323, 3547, +0, 3339, 3547, +0, 3361, 3547, +0, 3387, 3547, +0, 3421, 3547, +0, 3462, 3547, +0, 3512, 3547, +0, 3547, 3521, +0, 3547, 3429, +0, 3547, 3268, +0, 3547, 2883, +0, 3679, 0, +0, 3812, 0, +2553, 3944, 0, +3282, 4076, 0, +3613, 4095, 0, +0, 3266, 3548, +0, 3266, 3548, +0, 3266, 3548, +0, 3267, 3548, +0, 3267, 3548, +0, 3268, 3548, +0, 3269, 3548, +0, 3270, 3548, +0, 3271, 3548, +0, 3274, 3547, +0, 3277, 3547, +0, 3280, 3547, +0, 3285, 3547, +0, 3290, 3547, +0, 3298, 3547, +0, 3307, 3547, +0, 3320, 3547, +0, 3337, 3547, +0, 3358, 3547, +0, 3385, 3547, +0, 3419, 3547, +0, 3461, 3547, +0, 3511, 3547, +0, 3547, 3522, +0, 3547, 3430, +0, 3547, 3269, +0, 3547, 2886, +0, 3679, 0, +0, 3812, 0, +2572, 3944, 0, +3286, 4076, 0, +3615, 4095, 0, +0, 3261, 3548, +0, 3261, 3548, +0, 3261, 3548, +0, 3262, 3548, +0, 3262, 3548, +0, 3263, 3548, +0, 3264, 3548, +0, 3265, 3548, +0, 3267, 3548, +0, 3269, 3547, +0, 3272, 3547, +0, 3276, 3547, +0, 3281, 3546, +0, 3287, 3546, +0, 3294, 3546, +0, 3304, 3546, +0, 3317, 3546, +0, 3334, 3546, +0, 3355, 3546, +0, 3382, 3546, +0, 3416, 3546, +0, 3458, 3546, +0, 3509, 3546, +0, 3546, 3523, +0, 3546, 3432, +0, 3546, 3271, +0, 3546, 2891, +0, 3679, 0, +0, 3811, 0, +2596, 3944, 0, +3291, 4076, 0, +3617, 4095, 0, +0, 3255, 3548, +0, 3255, 3548, +0, 3256, 3548, +0, 3256, 3548, +0, 3256, 3548, +0, 3257, 3548, +0, 3258, 3548, +0, 3259, 3548, +0, 3261, 3548, +0, 3263, 3547, +0, 3266, 3547, +0, 3270, 3547, +0, 3275, 3546, +0, 3282, 3546, +0, 3290, 3546, +0, 3300, 3546, +0, 3313, 3546, +0, 3330, 3546, +0, 3351, 3546, +0, 3379, 3546, +0, 3413, 3546, +0, 3455, 3546, +0, 3506, 3546, +0, 3546, 3525, +0, 3546, 3434, +0, 3546, 3274, +0, 3546, 2897, +0, 3678, 0, +0, 3811, 0, +2625, 3943, 0, +3297, 4076, 0, +3621, 4095, 0, +0, 3247, 3548, +0, 3247, 3548, +0, 3247, 3548, +0, 3248, 3548, +0, 3248, 3548, +0, 3249, 3548, +0, 3250, 3548, +0, 3251, 3548, +0, 3253, 3548, +0, 3255, 3547, +0, 3258, 3547, +0, 3262, 3547, +0, 3268, 3546, +0, 3275, 3546, +0, 3284, 3545, +0, 3294, 3545, +0, 3307, 3545, +0, 3324, 3545, +0, 3346, 3545, +0, 3374, 3545, +0, 3408, 3545, +0, 3451, 3545, +0, 3502, 3545, +0, 3545, 3526, +0, 3545, 3436, +0, 3545, 3278, +0, 3545, 2905, +0, 3678, 0, +0, 3810, 0, +2662, 3943, 0, +3306, 4075, 0, +3625, 4095, 0, +0, 3236, 3548, +0, 3236, 3548, +0, 3236, 3548, +0, 3237, 3548, +0, 3237, 3548, +0, 3238, 3548, +0, 3239, 3548, +0, 3240, 3548, +0, 3242, 3548, +0, 3244, 3547, +0, 3247, 3547, +0, 3251, 3547, +0, 3257, 3546, +0, 3264, 3546, +0, 3273, 3545, +0, 3285, 3544, +0, 3299, 3544, +0, 3316, 3544, +0, 3339, 3544, +0, 3367, 3544, +0, 3402, 3544, +0, 3445, 3544, +0, 3497, 3544, +0, 3544, 3529, +0, 3544, 3440, +0, 3544, 3282, +0, 3544, 2916, +0, 3677, 0, +0, 3810, 0, +2708, 3943, 0, +3318, 4075, 0, +3630, 4095, 0, +0, 3220, 3548, +0, 3220, 3548, +0, 3221, 3548, +0, 3221, 3548, +0, 3222, 3548, +0, 3222, 3548, +0, 3223, 3548, +0, 3225, 3548, +0, 3226, 3548, +0, 3229, 3547, +0, 3232, 3547, +0, 3236, 3547, +0, 3242, 3546, +0, 3249, 3546, +0, 3259, 3545, +0, 3272, 3544, +0, 3288, 3543, +0, 3306, 3543, +0, 3329, 3543, +0, 3357, 3543, +0, 3393, 3543, +0, 3437, 3543, +0, 3490, 3543, +0, 3543, 3533, +0, 3543, 3444, +0, 3543, 3288, +0, 3543, 2929, +0, 3676, 0, +0, 3809, 0, +2762, 3942, 0, +3333, 4075, 0, +3638, 4095, 0, +0, 3198, 3548, +0, 3199, 3548, +0, 3199, 3548, +0, 3200, 3548, +0, 3200, 3548, +0, 3201, 3548, +0, 3202, 3548, +0, 3203, 3548, +0, 3205, 3548, +0, 3208, 3547, +0, 3211, 3547, +0, 3216, 3547, +0, 3221, 3546, +0, 3229, 3546, +0, 3239, 3545, +0, 3253, 3544, +0, 3270, 3543, +0, 3291, 3541, +0, 3315, 3541, +0, 3344, 3541, +0, 3381, 3541, +0, 3426, 3541, +0, 3480, 3541, +0, 3541, 3538, +0, 3541, 3450, +0, 3541, 3296, +0, 3541, 2947, +0, 3675, 0, +0, 3808, 0, +2826, 3941, 0, +3351, 4074, 0, +3648, 4095, 0, +0, 3168, 3548, +0, 3168, 3548, +0, 3168, 3548, +0, 3169, 3548, +0, 3170, 3548, +0, 3171, 3548, +0, 3172, 3548, +0, 3173, 3548, +0, 3175, 3548, +0, 3178, 3547, +0, 3182, 3547, +0, 3186, 3547, +0, 3192, 3546, +0, 3201, 3546, +0, 3211, 3545, +0, 3225, 3544, +0, 3243, 3543, +0, 3267, 3541, +0, 3296, 3538, +0, 3326, 3538, +0, 3365, 3538, +0, 3411, 3538, +0, 3467, 3538, +0, 3532, 3538, +0, 3538, 3457, +0, 3538, 3307, +0, 3538, 2970, +0, 3673, 0, +0, 3807, 0, +2899, 3940, 0, +3376, 4073, 0, +3661, 4095, 0, +0, 3124, 3548, +0, 3124, 3548, +0, 3124, 3548, +0, 3125, 3548, +0, 3125, 3548, +0, 3126, 3548, +0, 3128, 3548, +0, 3129, 3548, +0, 3132, 3548, +0, 3135, 3547, +0, 3138, 3547, +0, 3144, 3547, +0, 3151, 3546, +0, 3160, 3546, +0, 3171, 3545, +0, 3186, 3544, +0, 3206, 3543, +0, 3231, 3541, +0, 3263, 3538, +0, 3302, 3535, +0, 3342, 3535, +0, 3391, 3535, +0, 3449, 3535, +0, 3516, 3535, +0, 3535, 3467, +0, 3535, 3321, +0, 3535, 2998, +0, 3670, 0, +0, 3805, 0, +2982, 3939, 0, +3407, 4072, 0, +3677, 4095, 0, +0, 3056, 3548, +0, 3057, 3548, +0, 3057, 3548, +0, 3058, 3548, +0, 3059, 3548, +0, 3060, 3548, +0, 3061, 3548, +0, 3063, 3548, +0, 3066, 3548, +0, 3069, 3547, +0, 3074, 3547, +0, 3080, 3547, +0, 3087, 3546, +0, 3098, 3546, +0, 3111, 3545, +0, 3129, 3544, +0, 3151, 3543, +0, 3179, 3541, +0, 3214, 3538, +0, 3257, 3535, +0, 3309, 3530, +0, 3362, 3530, +0, 3423, 3530, +0, 3495, 3530, +0, 3530, 3480, +0, 3530, 3339, +0, 3530, 3034, +0, 3667, 0, +1737, 3802, 0, +3073, 3937, 0, +3445, 4071, 0, +3699, 4095, 0, +0, 2948, 3548, +0, 2948, 3548, +0, 2949, 3548, +0, 2950, 3548, +0, 2951, 3548, +0, 2952, 3548, +0, 2954, 3548, +0, 2956, 3548, +0, 2960, 3548, +0, 2964, 3547, +0, 2970, 3547, +0, 2977, 3547, +0, 2987, 3546, +0, 3000, 3546, +0, 3016, 3545, +0, 3038, 3544, +0, 3065, 3543, +0, 3099, 3541, +0, 3140, 3538, +0, 3190, 3535, +0, 3250, 3530, +1536, 3320, 3524, +1536, 3387, 3524, +1536, 3463, 3524, +1536, 3524, 3497, +1536, 3524, 3362, +1536, 3524, 3078, +0, 3662, 1753, +2519, 3799, 0, +3172, 3934, 0, +3491, 4069, 0, +3726, 4095, 0, +0, 2745, 3548, +0, 2745, 3548, +0, 2746, 3548, +0, 2747, 3548, +0, 2749, 3548, +0, 2751, 3548, +0, 2754, 3548, +0, 2758, 3548, +0, 2763, 3548, +0, 2770, 3547, +0, 2778, 3547, +0, 2790, 3547, +0, 2804, 3546, +0, 2824, 3546, +0, 2848, 3545, +0, 2879, 3544, +0, 2917, 3543, +0, 2963, 3541, +0, 3018, 3538, +0, 3083, 3535, +0, 3157, 3530, +1536, 3241, 3524, +2457, 3333, 3515, +2457, 3418, 3515, +2457, 3512, 3515, +2457, 3515, 3391, +2457, 3515, 3130, +1663, 3656, 2289, +2856, 3794, 0, +3277, 3931, 0, +3546, 4066, 0, +3759, 4095, 0, +0, 2104, 3548, +0, 2107, 3548, +0, 2111, 3548, +0, 2115, 3548, +0, 2122, 3548, +0, 2130, 3548, +0, 2141, 3548, +0, 2156, 3548, +0, 2174, 3548, +0, 2198, 3547, +0, 2228, 3547, +0, 2265, 3547, +0, 2311, 3546, +0, 2365, 3546, +0, 2429, 3545, +0, 2502, 3544, +0, 2585, 3543, +0, 2676, 3541, +0, 2775, 3538, +0, 2881, 3535, +0, 2992, 3530, +1536, 3108, 3524, +2457, 3227, 3515, +2808, 3350, 3504, +2808, 3457, 3504, +2808, 3504, 3426, +2808, 3504, 3192, +2592, 3648, 2590, +3097, 3788, 1799, +3388, 3926, 0, +3611, 4063, 0, +3801, 4095, 0, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3547, +0, 0, 3547, +0, 0, 3547, +0, 0, 3546, +0, 0, 3546, +0, 0, 3545, +0, 0, 3544, +0, 0, 3543, +0, 0, 3541, +0, 1477, 3538, +0, 2256, 3535, +0, 2593, 3530, +1536, 2833, 3524, +2457, 3032, 3515, +2808, 3209, 3504, +3054, 3372, 3488, +3054, 3488, 3470, +3054, 3488, 3264, +3038, 3636, 2940, +3296, 3780, 2721, +3504, 3920, 1928, +3685, 4058, 0, +3851, 4095, 0, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3547, +0, 0, 3547, +0, 0, 3547, +0, 0, 3546, +0, 0, 3546, +0, 0, 3545, +0, 0, 3544, +0, 0, 3543, +0, 0, 3541, +0, 0, 3538, +0, 0, 3535, +1621, 0, 3530, +2158, 1536, 3524, +2457, 2459, 3515, +2808, 2907, 3504, +3054, 3183, 3488, +3256, 3399, 3466, +3256, 3466, 3344, +3315, 3620, 3186, +3473, 3768, 3072, +3624, 3912, 2854, +3769, 4052, 2063, +3911, 4095, 0, +2873, 0, 3548, +2873, 0, 3548, +2873, 0, 3548, +2874, 0, 3548, +2874, 0, 3548, +2875, 0, 3548, +2876, 0, 3548, +2877, 0, 3548, +2878, 0, 3548, +2880, 0, 3547, +2883, 0, 3547, +2886, 0, 3547, +2891, 0, 3546, +2897, 0, 3546, +2905, 0, 3545, +2916, 0, 3544, +2929, 0, 3543, +2947, 0, 3541, +2970, 0, 3538, +2998, 0, 3535, +3034, 0, 3530, +3078, 1536, 3524, +3130, 2457, 3515, +3192, 2808, 3504, +3264, 3054, 3488, +3344, 3256, 3466, +3434, 3434, 3434, +3531, 3598, 3388, +3636, 3752, 3318, +3746, 3900, 3204, +3861, 4044, 2986, +3980, 4095, 2192, +3396, 0, 3680, +3396, 0, 3680, +3396, 0, 3680, +3396, 0, 3680, +3396, 0, 3680, +3396, 0, 3680, +3396, 0, 3680, +3397, 0, 3680, +3397, 0, 3680, +3398, 0, 3680, +3399, 0, 3679, +3400, 0, 3679, +3401, 0, 3679, +3403, 0, 3678, +3406, 0, 3678, +3410, 0, 3677, +3414, 0, 3676, +3420, 0, 3675, +3429, 0, 3673, +3439, 0, 3670, +3453, 0, 3667, +3471, 0, 3662, +3494, 1663, 3656, +3523, 2590, 3648, +3558, 2940, 3636, +3603, 3186, 3620, +3598, 3388, 3531, +3598, 3477, 3388, +3752, 3735, 3318, +3853, 3900, 3204, +3947, 4044, 2986, +4047, 4095, 2192, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3692, 0, 3812, +3692, 0, 3812, +3693, 0, 3812, +3694, 0, 3811, +3695, 0, 3811, +3696, 0, 3810, +3698, 0, 3810, +3700, 0, 3809, +3704, 0, 3808, +3708, 0, 3807, +3714, 0, 3805, +3721, 0, 3802, +3731, 0, 3799, +3745, 0, 3794, +3761, 1799, 3788, +3780, 2721, 3776, +3768, 3072, 3721, +3752, 3318, 3636, +3752, 3318, 3447, +3752, 3528, 3318, +3900, 3822, 3204, +4040, 4044, 2986, +4095, 4095, 2192, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3916, 0, 3944, +3916, 0, 3944, +3916, 0, 3944, +3917, 0, 3944, +3917, 0, 3943, +3918, 0, 3943, +3920, 0, 3943, +3921, 0, 3942, +3923, 0, 3941, +3926, 0, 3940, +3929, 0, 3939, +3934, 0, 3937, +3934, 0, 3928, +3931, 0, 3913, +3926, 0, 3891, +3920, 1928, 3860, +3912, 2854, 3814, +3900, 3204, 3746, +3900, 3204, 3605, +3900, 3204, 3302, +3900, 3588, 3204, +4044, 3919, 2986, +4095, 4095, 2192, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4044, +4076, 0, 4044, +4076, 0, 4044, +4076, 0, 4043, +4076, 0, 4043, +4076, 0, 4042, +4075, 0, 4041, +4075, 0, 4039, +4075, 0, 4037, +4074, 0, 4034, +4073, 0, 4030, +4072, 0, 4025, +4071, 0, 4018, +4069, 0, 4008, +4066, 0, 3995, +4063, 0, 3977, +4058, 0, 3952, +4052, 2063, 3915, +4044, 2986, 3861, +4044, 2986, 3755, +4044, 2986, 3561, +4044, 2986, 2987, +4044, 3659, 2986, +4095, 4023, 2192, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4087, +4095, 0, 4072, +4095, 0, 4051, +4095, 0, 4022, +4095, 2192, 3980, +4095, 2192, 3901, +4095, 2192, 3768, +4095, 2192, 3494, +4095, 2814, 2192, +4095, 3738, 2192, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3414, 3680, +0, 3415, 3680, +0, 3417, 3680, +0, 3419, 3680, +0, 3422, 3680, +0, 3427, 3680, +0, 3432, 3680, +0, 3440, 3680, +0, 3449, 3680, +0, 3462, 3680, +0, 3478, 3680, +0, 3499, 3680, +0, 3525, 3680, +0, 3558, 3680, +0, 3599, 3680, +0, 3649, 3680, +0, 3680, 3651, +0, 3680, 3558, +0, 3680, 3396, +0, 3680, 3005, +0, 3812, 0, +0, 3944, 0, +2626, 4076, 0, +3404, 4095, 0, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3414, 3680, +0, 3415, 3680, +0, 3417, 3680, +0, 3419, 3680, +0, 3422, 3680, +0, 3426, 3680, +0, 3432, 3680, +0, 3439, 3680, +0, 3449, 3680, +0, 3462, 3680, +0, 3478, 3680, +0, 3499, 3680, +0, 3525, 3680, +0, 3558, 3680, +0, 3599, 3680, +0, 3649, 3680, +0, 3680, 3651, +0, 3680, 3558, +0, 3680, 3396, +0, 3680, 3005, +0, 3812, 0, +0, 3944, 0, +2627, 4076, 0, +3404, 4095, 0, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3414, 3680, +0, 3415, 3680, +0, 3417, 3680, +0, 3419, 3680, +0, 3422, 3680, +0, 3426, 3680, +0, 3432, 3680, +0, 3439, 3680, +0, 3449, 3680, +0, 3462, 3680, +0, 3478, 3680, +0, 3499, 3680, +0, 3525, 3680, +0, 3558, 3680, +0, 3599, 3680, +0, 3649, 3680, +0, 3680, 3651, +0, 3680, 3559, +0, 3680, 3396, +0, 3680, 3005, +0, 3812, 0, +0, 3944, 0, +2628, 4076, 0, +3404, 4095, 0, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3415, 3680, +0, 3416, 3680, +0, 3419, 3680, +0, 3422, 3680, +0, 3426, 3680, +0, 3432, 3680, +0, 3439, 3680, +0, 3449, 3680, +0, 3461, 3680, +0, 3478, 3680, +0, 3499, 3680, +0, 3525, 3680, +0, 3558, 3680, +0, 3599, 3680, +0, 3649, 3680, +0, 3680, 3651, +0, 3680, 3559, +0, 3680, 3396, +0, 3680, 3006, +0, 3812, 0, +0, 3944, 0, +2630, 4076, 0, +3405, 4095, 0, +0, 3409, 3680, +0, 3409, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3414, 3680, +0, 3416, 3680, +0, 3419, 3680, +0, 3422, 3680, +0, 3426, 3680, +0, 3431, 3680, +0, 3439, 3680, +0, 3448, 3680, +0, 3461, 3680, +0, 3478, 3680, +0, 3498, 3680, +0, 3525, 3680, +0, 3558, 3680, +0, 3599, 3680, +0, 3648, 3680, +0, 3680, 3651, +0, 3680, 3559, +0, 3680, 3396, +0, 3680, 3006, +0, 3812, 0, +0, 3944, 0, +2632, 4076, 0, +3405, 4095, 0, +0, 3409, 3680, +0, 3409, 3680, +0, 3409, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3414, 3680, +0, 3416, 3680, +0, 3418, 3680, +0, 3421, 3680, +0, 3426, 3680, +0, 3431, 3680, +0, 3438, 3680, +0, 3448, 3680, +0, 3461, 3680, +0, 3477, 3680, +0, 3498, 3680, +0, 3525, 3680, +0, 3558, 3680, +0, 3599, 3680, +0, 3648, 3680, +0, 3680, 3651, +0, 3680, 3559, +0, 3680, 3396, +0, 3680, 3006, +0, 3812, 0, +0, 3944, 0, +2635, 4076, 0, +3405, 4095, 0, +0, 3408, 3680, +0, 3408, 3680, +0, 3409, 3680, +0, 3409, 3680, +0, 3409, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3414, 3680, +0, 3415, 3680, +0, 3418, 3680, +0, 3421, 3680, +0, 3425, 3680, +0, 3431, 3680, +0, 3438, 3680, +0, 3448, 3680, +0, 3460, 3680, +0, 3477, 3680, +0, 3497, 3680, +0, 3524, 3680, +0, 3557, 3680, +0, 3598, 3680, +0, 3648, 3680, +0, 3680, 3651, +0, 3680, 3559, +0, 3680, 3396, +0, 3680, 3007, +0, 3812, 0, +0, 3944, 0, +2639, 4076, 0, +3406, 4095, 0, +0, 3408, 3680, +0, 3408, 3680, +0, 3408, 3680, +0, 3408, 3680, +0, 3409, 3680, +0, 3409, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3415, 3680, +0, 3417, 3680, +0, 3420, 3680, +0, 3425, 3680, +0, 3430, 3680, +0, 3437, 3680, +0, 3447, 3680, +0, 3460, 3680, +0, 3476, 3680, +0, 3497, 3680, +0, 3524, 3680, +0, 3557, 3680, +0, 3598, 3680, +0, 3648, 3680, +0, 3680, 3652, +0, 3680, 3559, +0, 3680, 3397, +0, 3680, 3008, +0, 3812, 0, +0, 3944, 0, +2644, 4076, 0, +3407, 4095, 0, +0, 3406, 3680, +0, 3407, 3680, +0, 3407, 3680, +0, 3407, 3680, +0, 3408, 3680, +0, 3408, 3680, +0, 3409, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3414, 3680, +0, 3416, 3680, +0, 3420, 3680, +0, 3424, 3680, +0, 3429, 3680, +0, 3437, 3680, +0, 3446, 3680, +0, 3459, 3680, +0, 3475, 3680, +0, 3496, 3680, +0, 3523, 3680, +0, 3556, 3680, +0, 3597, 3680, +0, 3647, 3680, +0, 3680, 3652, +0, 3680, 3560, +0, 3680, 3397, +0, 3680, 3009, +0, 3812, 0, +0, 3944, 0, +2650, 4076, 0, +3408, 4095, 0, +0, 3405, 3680, +0, 3405, 3680, +0, 3405, 3680, +0, 3406, 3680, +0, 3406, 3680, +0, 3407, 3680, +0, 3407, 3680, +0, 3408, 3680, +0, 3409, 3680, +0, 3411, 3680, +0, 3413, 3680, +0, 3415, 3680, +0, 3418, 3680, +0, 3423, 3680, +0, 3428, 3680, +0, 3436, 3680, +0, 3445, 3680, +0, 3458, 3680, +0, 3475, 3680, +0, 3495, 3680, +0, 3522, 3680, +0, 3556, 3680, +0, 3597, 3680, +0, 3646, 3680, +0, 3680, 3652, +0, 3680, 3560, +0, 3680, 3398, +0, 3680, 3011, +0, 3812, 0, +0, 3944, 0, +2659, 4076, 0, +3410, 4095, 0, +0, 3403, 3680, +0, 3403, 3680, +0, 3404, 3680, +0, 3404, 3680, +0, 3404, 3680, +0, 3405, 3680, +0, 3406, 3680, +0, 3406, 3680, +0, 3408, 3680, +0, 3409, 3680, +0, 3411, 3679, +0, 3414, 3679, +0, 3417, 3679, +0, 3421, 3679, +0, 3427, 3679, +0, 3434, 3679, +0, 3444, 3679, +0, 3457, 3679, +0, 3473, 3679, +0, 3494, 3679, +0, 3521, 3679, +0, 3554, 3679, +0, 3596, 3679, +0, 3646, 3679, +0, 3679, 3653, +0, 3679, 3561, +0, 3679, 3399, +0, 3679, 3013, +0, 3812, 0, +0, 3944, 0, +2670, 4076, 0, +3412, 4095, 0, +0, 3401, 3680, +0, 3401, 3680, +0, 3401, 3680, +0, 3401, 3680, +0, 3402, 3680, +0, 3402, 3680, +0, 3403, 3680, +0, 3404, 3680, +0, 3405, 3680, +0, 3407, 3680, +0, 3409, 3679, +0, 3412, 3679, +0, 3415, 3679, +0, 3419, 3679, +0, 3425, 3679, +0, 3432, 3679, +0, 3442, 3679, +0, 3455, 3679, +0, 3472, 3679, +0, 3493, 3679, +0, 3520, 3679, +0, 3553, 3679, +0, 3595, 3679, +0, 3644, 3679, +0, 3679, 3653, +0, 3679, 3562, +0, 3679, 3400, +0, 3679, 3015, +0, 3812, 0, +0, 3944, 0, +2684, 4076, 0, +3415, 4095, 0, +0, 3398, 3680, +0, 3398, 3680, +0, 3398, 3680, +0, 3398, 3680, +0, 3399, 3680, +0, 3399, 3680, +0, 3400, 3680, +0, 3401, 3680, +0, 3402, 3680, +0, 3404, 3680, +0, 3406, 3679, +0, 3409, 3679, +0, 3413, 3679, +0, 3417, 3679, +0, 3422, 3679, +0, 3430, 3679, +0, 3440, 3679, +0, 3453, 3679, +0, 3469, 3679, +0, 3490, 3679, +0, 3517, 3679, +0, 3551, 3679, +0, 3593, 3679, +0, 3643, 3679, +0, 3679, 3654, +0, 3679, 3563, +0, 3679, 3401, +0, 3679, 3018, +0, 3811, 0, +0, 3944, 0, +2703, 4076, 0, +3419, 4095, 0, +0, 3393, 3680, +0, 3393, 3680, +0, 3393, 3680, +0, 3394, 3680, +0, 3394, 3680, +0, 3395, 3680, +0, 3395, 3680, +0, 3396, 3680, +0, 3397, 3680, +0, 3399, 3680, +0, 3401, 3679, +0, 3404, 3679, +0, 3408, 3679, +0, 3413, 3678, +0, 3419, 3678, +0, 3426, 3678, +0, 3436, 3678, +0, 3449, 3678, +0, 3466, 3678, +0, 3488, 3678, +0, 3515, 3678, +0, 3548, 3678, +0, 3590, 3678, +0, 3641, 3678, +0, 3678, 3655, +0, 3678, 3564, +0, 3678, 3403, +0, 3678, 3023, +0, 3811, 0, +0, 3943, 0, +2726, 4076, 0, +3424, 4095, 0, +0, 3387, 3680, +0, 3387, 3680, +0, 3387, 3680, +0, 3388, 3680, +0, 3388, 3680, +0, 3388, 3680, +0, 3389, 3680, +0, 3390, 3680, +0, 3392, 3680, +0, 3393, 3680, +0, 3395, 3679, +0, 3398, 3679, +0, 3402, 3679, +0, 3407, 3678, +0, 3414, 3678, +0, 3422, 3678, +0, 3432, 3678, +0, 3445, 3678, +0, 3462, 3678, +0, 3483, 3678, +0, 3511, 3678, +0, 3545, 3678, +0, 3587, 3678, +0, 3638, 3678, +0, 3678, 3657, +0, 3678, 3566, +0, 3678, 3406, +0, 3678, 3029, +0, 3810, 0, +0, 3943, 0, +2756, 4075, 0, +3430, 4095, 0, +0, 3379, 3680, +0, 3379, 3680, +0, 3379, 3680, +0, 3379, 3680, +0, 3380, 3680, +0, 3380, 3680, +0, 3381, 3680, +0, 3382, 3680, +0, 3383, 3680, +0, 3385, 3680, +0, 3387, 3679, +0, 3390, 3679, +0, 3394, 3679, +0, 3400, 3678, +0, 3407, 3678, +0, 3416, 3677, +0, 3426, 3677, +0, 3439, 3677, +0, 3456, 3677, +0, 3478, 3677, +0, 3506, 3677, +0, 3540, 3677, +0, 3583, 3677, +0, 3634, 3677, +0, 3677, 3659, +0, 3677, 3568, +0, 3677, 3410, +0, 3677, 3037, +0, 3810, 0, +0, 3943, 0, +2793, 4075, 0, +3439, 4095, 0, +0, 3367, 3680, +0, 3368, 3680, +0, 3368, 3680, +0, 3368, 3680, +0, 3369, 3680, +0, 3369, 3680, +0, 3370, 3680, +0, 3371, 3680, +0, 3372, 3680, +0, 3374, 3680, +0, 3376, 3679, +0, 3379, 3679, +0, 3384, 3679, +0, 3389, 3678, +0, 3396, 3678, +0, 3405, 3677, +0, 3418, 3676, +0, 3431, 3676, +0, 3448, 3676, +0, 3471, 3676, +0, 3499, 3676, +0, 3534, 3676, +0, 3577, 3676, +0, 3629, 3676, +0, 3676, 3662, +0, 3676, 3572, +0, 3676, 3414, +0, 3676, 3048, +0, 3809, 0, +0, 3942, 0, +2839, 4075, 0, +3450, 4095, 0, +0, 3352, 3680, +0, 3352, 3680, +0, 3353, 3680, +0, 3353, 3680, +0, 3353, 3680, +0, 3354, 3680, +0, 3354, 3680, +0, 3356, 3680, +0, 3357, 3680, +0, 3359, 3680, +0, 3361, 3679, +0, 3364, 3679, +0, 3368, 3679, +0, 3374, 3678, +0, 3381, 3678, +0, 3391, 3677, +0, 3404, 3676, +0, 3420, 3675, +0, 3438, 3675, +0, 3461, 3675, +0, 3490, 3675, +0, 3525, 3675, +0, 3569, 3675, +0, 3622, 3675, +0, 3675, 3665, +0, 3675, 3576, +0, 3675, 3420, +0, 3675, 3061, +0, 3808, 0, +0, 3941, 0, +2893, 4074, 0, +3465, 4095, 0, +0, 3330, 3680, +0, 3331, 3680, +0, 3331, 3680, +0, 3331, 3680, +0, 3332, 3680, +0, 3332, 3680, +0, 3333, 3680, +0, 3334, 3680, +0, 3336, 3680, +0, 3337, 3680, +0, 3340, 3679, +0, 3343, 3679, +0, 3348, 3679, +0, 3354, 3678, +0, 3361, 3678, +0, 3371, 3677, +0, 3385, 3676, +0, 3402, 3675, +0, 3423, 3673, +0, 3447, 3673, +0, 3477, 3673, +0, 3513, 3673, +0, 3558, 3673, +0, 3612, 3673, +0, 3673, 3670, +0, 3673, 3582, +0, 3673, 3429, +0, 3673, 3079, +0, 3807, 0, +0, 3940, 0, +2957, 4073, 0, +3484, 4095, 0, +0, 3300, 3680, +0, 3300, 3680, +0, 3300, 3680, +0, 3301, 3680, +0, 3301, 3680, +0, 3302, 3680, +0, 3303, 3680, +0, 3304, 3680, +0, 3305, 3680, +0, 3307, 3680, +0, 3310, 3679, +0, 3314, 3679, +0, 3318, 3679, +0, 3325, 3678, +0, 3333, 3678, +0, 3344, 3677, +0, 3358, 3676, +0, 3376, 3675, +0, 3399, 3673, +0, 3428, 3670, +0, 3459, 3670, +0, 3497, 3670, +0, 3543, 3670, +0, 3599, 3670, +0, 3664, 3670, +0, 3670, 3589, +0, 3670, 3439, +0, 3670, 3102, +0, 3805, 0, +0, 3939, 0, +3031, 4072, 0, +3509, 4095, 0, +0, 3255, 3680, +0, 3256, 3680, +0, 3256, 3680, +0, 3256, 3680, +0, 3257, 3680, +0, 3258, 3680, +0, 3258, 3680, +0, 3260, 3680, +0, 3261, 3680, +0, 3264, 3680, +0, 3267, 3679, +0, 3271, 3679, +0, 3276, 3679, +0, 3282, 3678, +0, 3291, 3678, +0, 3303, 3677, +0, 3319, 3676, +0, 3338, 3675, +0, 3363, 3673, +0, 3395, 3670, +0, 3434, 3667, +0, 3474, 3667, +0, 3523, 3667, +0, 3581, 3667, +0, 3648, 3667, +0, 3667, 3599, +0, 3667, 3453, +0, 3667, 3131, +0, 3802, 0, +0, 3937, 0, +3113, 4071, 0, +3539, 4095, 0, +0, 3188, 3680, +0, 3188, 3680, +0, 3189, 3680, +0, 3189, 3680, +0, 3190, 3680, +0, 3191, 3680, +0, 3192, 3680, +0, 3193, 3680, +0, 3195, 3680, +0, 3198, 3680, +0, 3201, 3679, +0, 3206, 3679, +0, 3212, 3679, +0, 3220, 3678, +0, 3230, 3678, +0, 3243, 3677, +0, 3261, 3676, +0, 3283, 3675, +0, 3311, 3673, +0, 3346, 3670, +0, 3389, 3667, +0, 3441, 3662, +0, 3494, 3662, +0, 3555, 3662, +0, 3626, 3662, +0, 3662, 3612, +0, 3662, 3471, +0, 3662, 3166, +0, 3799, 0, +1863, 3934, 0, +3205, 4069, 0, +3577, 4095, 0, +0, 3080, 3680, +0, 3080, 3680, +0, 3081, 3680, +0, 3081, 3680, +0, 3082, 3680, +0, 3083, 3680, +0, 3084, 3680, +0, 3086, 3680, +0, 3089, 3680, +0, 3092, 3680, +0, 3096, 3679, +0, 3102, 3679, +0, 3110, 3679, +0, 3119, 3678, +0, 3132, 3678, +0, 3149, 3677, +0, 3170, 3676, +0, 3197, 3675, +0, 3231, 3673, +0, 3273, 3670, +0, 3323, 3667, +0, 3382, 3662, +1663, 3452, 3656, +1663, 3519, 3656, +1663, 3595, 3656, +1663, 3656, 3629, +1663, 3656, 3494, +1663, 3656, 3210, +0, 3794, 1884, +2650, 3931, 0, +3303, 4066, 0, +3623, 4095, 0, +0, 2876, 3680, +0, 2877, 3680, +0, 2877, 3680, +0, 2878, 3680, +0, 2879, 3680, +0, 2881, 3680, +0, 2883, 3680, +0, 2886, 3680, +0, 2890, 3680, +0, 2895, 3680, +0, 2901, 3679, +0, 2910, 3679, +0, 2922, 3679, +0, 2936, 3678, +0, 2955, 3678, +0, 2980, 3677, +0, 3010, 3676, +0, 3048, 3675, +0, 3095, 3673, +0, 3150, 3670, +0, 3215, 3667, +0, 3289, 3662, +1663, 3373, 3656, +2590, 3465, 3648, +2590, 3550, 3648, +2590, 3644, 3648, +2590, 3648, 3523, +2590, 3648, 3262, +1799, 3788, 2422, +2988, 3926, 0, +3409, 4063, 0, +3679, 4095, 0, +0, 2237, 3680, +0, 2239, 3680, +0, 2242, 3680, +0, 2246, 3680, +0, 2251, 3680, +0, 2257, 3680, +0, 2266, 3680, +0, 2277, 3680, +0, 2291, 3680, +0, 2310, 3680, +0, 2333, 3679, +0, 2363, 3679, +0, 2400, 3679, +0, 2445, 3678, +0, 2499, 3678, +0, 2562, 3677, +0, 2636, 3676, +0, 2718, 3675, +0, 2809, 3673, +0, 2908, 3670, +0, 3014, 3667, +0, 3125, 3662, +1663, 3240, 3656, +2590, 3360, 3648, +2940, 3482, 3636, +2940, 3589, 3636, +2940, 3636, 3558, +2940, 3636, 3324, +2722, 3780, 2721, +3229, 3920, 1928, +3520, 4058, 0, +3743, 4095, 0, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3679, +0, 0, 3679, +0, 0, 3679, +0, 0, 3678, +0, 0, 3678, +0, 0, 3677, +0, 0, 3676, +0, 0, 3675, +0, 0, 3673, +0, 1603, 3670, +0, 2388, 3667, +0, 2724, 3662, +1663, 2965, 3656, +2590, 3165, 3648, +2940, 3341, 3636, +3186, 3504, 3620, +3186, 3620, 3603, +3186, 3620, 3396, +3171, 3768, 3072, +3428, 3912, 2854, +3636, 4052, 2063, +3818, 4095, 0, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3679, +0, 0, 3679, +0, 0, 3679, +0, 0, 3678, +0, 0, 3678, +0, 0, 3677, +0, 0, 3676, +0, 0, 3675, +0, 0, 3673, +0, 0, 3670, +0, 0, 3667, +1753, 0, 3662, +2289, 1663, 3656, +2590, 2592, 3648, +2940, 3038, 3636, +3186, 3315, 3620, +3388, 3531, 3598, +3388, 3598, 3477, +3447, 3752, 3318, +3605, 3900, 3204, +3755, 4044, 2986, +3901, 4095, 2192, +3005, 0, 3680, +3005, 0, 3680, +3005, 0, 3680, +3006, 0, 3680, +3006, 0, 3680, +3006, 0, 3680, +3007, 0, 3680, +3008, 0, 3680, +3009, 0, 3680, +3011, 0, 3680, +3013, 0, 3679, +3015, 0, 3679, +3018, 0, 3679, +3023, 0, 3678, +3029, 0, 3678, +3037, 0, 3677, +3048, 0, 3676, +3061, 0, 3675, +3079, 0, 3673, +3102, 0, 3670, +3131, 0, 3667, +3166, 0, 3662, +3210, 1663, 3656, +3262, 2590, 3648, +3324, 2940, 3636, +3396, 3186, 3620, +3477, 3388, 3598, +3566, 3566, 3566, +3664, 3730, 3520, +3768, 3884, 3450, +3878, 4032, 3336, +3993, 4095, 3118, +3528, 0, 3812, +3528, 0, 3812, +3528, 0, 3812, +3528, 0, 3812, +3528, 0, 3812, +3528, 0, 3812, +3528, 0, 3812, +3529, 0, 3812, +3529, 0, 3812, +3530, 0, 3812, +3530, 0, 3812, +3531, 0, 3812, +3532, 0, 3811, +3534, 0, 3811, +3536, 0, 3810, +3538, 0, 3810, +3542, 0, 3809, +3546, 0, 3808, +3552, 0, 3807, +3561, 0, 3805, +3571, 0, 3802, +3585, 0, 3799, +3603, 0, 3794, +3626, 1799, 3788, +3655, 2721, 3780, +3691, 3072, 3768, +3735, 3318, 3752, +3730, 3520, 3664, +3730, 3609, 3520, +3884, 3867, 3450, +3986, 4032, 3336, +4079, 4095, 3118, +3822, 0, 3944, +3822, 0, 3944, +3822, 0, 3944, +3823, 0, 3944, +3823, 0, 3944, +3823, 0, 3944, +3823, 0, 3944, +3823, 0, 3944, +3823, 0, 3944, +3824, 0, 3944, +3824, 0, 3944, +3824, 0, 3944, +3825, 0, 3944, +3826, 0, 3943, +3827, 0, 3943, +3828, 0, 3943, +3830, 0, 3942, +3832, 0, 3941, +3836, 0, 3940, +3840, 0, 3939, +3846, 0, 3937, +3853, 0, 3934, +3863, 0, 3931, +3877, 0, 3926, +3893, 1928, 3920, +3912, 2854, 3908, +3900, 3204, 3853, +3884, 3450, 3768, +3884, 3450, 3579, +3884, 3660, 3450, +4032, 3955, 3336, +4095, 4095, 3118, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4048, 0, 4076, +4048, 0, 4076, +4048, 0, 4076, +4049, 0, 4076, +4049, 0, 4075, +4050, 0, 4075, +4051, 0, 4075, +4053, 0, 4074, +4055, 0, 4073, +4058, 0, 4072, +4061, 0, 4071, +4066, 0, 4069, +4066, 0, 4060, +4063, 0, 4045, +4058, 0, 4023, +4052, 2063, 3992, +4044, 2986, 3947, +4032, 3336, 3878, +4032, 3336, 3737, +4032, 3336, 3435, +4032, 3720, 3336, +4095, 4051, 3118, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4084, +4095, 2192, 4047, +4095, 3118, 3993, +4095, 3118, 3888, +4095, 3118, 3693, +4095, 3118, 3121, +4095, 3791, 3118, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3546, 3812, +0, 3547, 3812, +0, 3549, 3812, +0, 3552, 3812, +0, 3554, 3812, +0, 3559, 3812, +0, 3564, 3812, +0, 3572, 3812, +0, 3581, 3812, +0, 3594, 3812, +0, 3610, 3812, +0, 3631, 3812, +0, 3657, 3812, +0, 3691, 3812, +0, 3732, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3137, +0, 3944, 0, +0, 4076, 0, +2761, 4095, 0, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3546, 3812, +0, 3547, 3812, +0, 3549, 3812, +0, 3551, 3812, +0, 3554, 3812, +0, 3559, 3812, +0, 3564, 3812, +0, 3572, 3812, +0, 3581, 3812, +0, 3594, 3812, +0, 3610, 3812, +0, 3631, 3812, +0, 3657, 3812, +0, 3691, 3812, +0, 3731, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3137, +0, 3944, 0, +0, 4076, 0, +2762, 4095, 0, +0, 3542, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3546, 3812, +0, 3547, 3812, +0, 3549, 3812, +0, 3551, 3812, +0, 3554, 3812, +0, 3559, 3812, +0, 3564, 3812, +0, 3572, 3812, +0, 3581, 3812, +0, 3594, 3812, +0, 3610, 3812, +0, 3631, 3812, +0, 3657, 3812, +0, 3690, 3812, +0, 3731, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3137, +0, 3944, 0, +0, 4076, 0, +2762, 4095, 0, +0, 3542, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3545, 3812, +0, 3547, 3812, +0, 3549, 3812, +0, 3551, 3812, +0, 3554, 3812, +0, 3558, 3812, +0, 3564, 3812, +0, 3571, 3812, +0, 3581, 3812, +0, 3594, 3812, +0, 3610, 3812, +0, 3631, 3812, +0, 3657, 3812, +0, 3690, 3812, +0, 3731, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3138, +0, 3944, 0, +0, 4076, 0, +2764, 4095, 0, +0, 3541, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3547, 3812, +0, 3549, 3812, +0, 3551, 3812, +0, 3554, 3812, +0, 3558, 3812, +0, 3564, 3812, +0, 3571, 3812, +0, 3581, 3812, +0, 3594, 3812, +0, 3610, 3812, +0, 3631, 3812, +0, 3657, 3812, +0, 3690, 3812, +0, 3731, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3138, +0, 3944, 0, +0, 4076, 0, +2765, 4095, 0, +0, 3541, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3547, 3812, +0, 3548, 3812, +0, 3551, 3812, +0, 3554, 3812, +0, 3558, 3812, +0, 3564, 3812, +0, 3571, 3812, +0, 3581, 3812, +0, 3593, 3812, +0, 3609, 3812, +0, 3630, 3812, +0, 3657, 3812, +0, 3690, 3812, +0, 3731, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3138, +0, 3944, 0, +0, 4076, 0, +2767, 4095, 0, +0, 3541, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3546, 3812, +0, 3548, 3812, +0, 3550, 3812, +0, 3553, 3812, +0, 3558, 3812, +0, 3563, 3812, +0, 3571, 3812, +0, 3580, 3812, +0, 3593, 3812, +0, 3609, 3812, +0, 3630, 3812, +0, 3657, 3812, +0, 3690, 3812, +0, 3731, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3139, +0, 3944, 0, +0, 4076, 0, +2770, 4095, 0, +0, 3540, 3812, +0, 3540, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3546, 3812, +0, 3548, 3812, +0, 3550, 3812, +0, 3553, 3812, +0, 3557, 3812, +0, 3563, 3812, +0, 3570, 3812, +0, 3580, 3812, +0, 3593, 3812, +0, 3609, 3812, +0, 3630, 3812, +0, 3656, 3812, +0, 3690, 3812, +0, 3730, 3812, +0, 3780, 3812, +0, 3812, 3784, +0, 3812, 3691, +0, 3812, 3529, +0, 3812, 3139, +0, 3944, 0, +0, 4076, 0, +2773, 4095, 0, +0, 3540, 3812, +0, 3540, 3812, +0, 3540, 3812, +0, 3540, 3812, +0, 3540, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3547, 3812, +0, 3549, 3812, +0, 3552, 3812, +0, 3557, 3812, +0, 3562, 3812, +0, 3570, 3812, +0, 3579, 3812, +0, 3592, 3812, +0, 3608, 3812, +0, 3629, 3812, +0, 3656, 3812, +0, 3689, 3812, +0, 3730, 3812, +0, 3780, 3812, +0, 3812, 3784, +0, 3812, 3691, +0, 3812, 3529, +0, 3812, 3140, +0, 3944, 0, +0, 4076, 0, +2778, 4095, 0, +0, 3538, 3812, +0, 3538, 3812, +0, 3539, 3812, +0, 3539, 3812, +0, 3539, 3812, +0, 3540, 3812, +0, 3540, 3812, +0, 3541, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3546, 3812, +0, 3548, 3812, +0, 3552, 3812, +0, 3556, 3812, +0, 3562, 3812, +0, 3569, 3812, +0, 3579, 3812, +0, 3591, 3812, +0, 3607, 3812, +0, 3629, 3812, +0, 3655, 3812, +0, 3689, 3812, +0, 3729, 3812, +0, 3779, 3812, +0, 3812, 3784, +0, 3812, 3692, +0, 3812, 3530, +0, 3812, 3141, +0, 3944, 0, +0, 4076, 0, +2785, 4095, 0, +0, 3537, 3812, +0, 3537, 3812, +0, 3537, 3812, +0, 3538, 3812, +0, 3538, 3812, +0, 3538, 3812, +0, 3539, 3812, +0, 3540, 3812, +0, 3540, 3812, +0, 3541, 3812, +0, 3543, 3812, +0, 3545, 3812, +0, 3547, 3812, +0, 3551, 3812, +0, 3555, 3812, +0, 3561, 3812, +0, 3568, 3812, +0, 3577, 3812, +0, 3590, 3812, +0, 3606, 3812, +0, 3628, 3812, +0, 3654, 3812, +0, 3688, 3812, +0, 3729, 3812, +0, 3778, 3812, +0, 3812, 3784, +0, 3812, 3692, +0, 3812, 3530, +0, 3812, 3143, +0, 3944, 0, +0, 4076, 0, +2793, 4095, 0, +0, 3535, 3812, +0, 3536, 3812, +0, 3536, 3812, +0, 3536, 3812, +0, 3536, 3812, +0, 3537, 3812, +0, 3537, 3812, +0, 3538, 3812, +0, 3538, 3812, +0, 3540, 3812, +0, 3541, 3812, +0, 3544, 3812, +0, 3546, 3812, +0, 3549, 3812, +0, 3553, 3812, +0, 3559, 3812, +0, 3566, 3812, +0, 3576, 3812, +0, 3589, 3812, +0, 3605, 3812, +0, 3626, 3812, +0, 3653, 3812, +0, 3687, 3812, +0, 3728, 3812, +0, 3777, 3812, +0, 3812, 3785, +0, 3812, 3693, +0, 3812, 3531, +0, 3812, 3145, +0, 3944, 0, +0, 4076, 0, +2804, 4095, 0, +0, 3533, 3812, +0, 3533, 3812, +0, 3533, 3812, +0, 3533, 3812, +0, 3534, 3812, +0, 3534, 3812, +0, 3534, 3812, +0, 3535, 3812, +0, 3536, 3812, +0, 3537, 3812, +0, 3539, 3812, +0, 3541, 3812, +0, 3544, 3811, +0, 3547, 3811, +0, 3552, 3811, +0, 3557, 3811, +0, 3564, 3811, +0, 3574, 3811, +0, 3587, 3811, +0, 3604, 3811, +0, 3625, 3811, +0, 3652, 3811, +0, 3685, 3811, +0, 3727, 3811, +0, 3777, 3811, +0, 3811, 3785, +0, 3811, 3694, +0, 3811, 3532, +0, 3811, 3147, +0, 3944, 0, +0, 4076, 0, +2818, 4095, 0, +0, 3530, 3812, +0, 3530, 3812, +0, 3530, 3812, +0, 3530, 3812, +0, 3530, 3812, +0, 3531, 3812, +0, 3531, 3812, +0, 3532, 3812, +0, 3533, 3812, +0, 3534, 3812, +0, 3536, 3812, +0, 3538, 3812, +0, 3541, 3811, +0, 3545, 3811, +0, 3549, 3811, +0, 3554, 3811, +0, 3562, 3811, +0, 3572, 3811, +0, 3585, 3811, +0, 3601, 3811, +0, 3622, 3811, +0, 3650, 3811, +0, 3683, 3811, +0, 3725, 3811, +0, 3775, 3811, +0, 3811, 3786, +0, 3811, 3695, +0, 3811, 3534, +0, 3811, 3151, +0, 3943, 0, +0, 4076, 0, +2837, 4095, 0, +0, 3525, 3812, +0, 3525, 3812, +0, 3525, 3812, +0, 3526, 3812, +0, 3526, 3812, +0, 3526, 3812, +0, 3527, 3812, +0, 3528, 3812, +0, 3528, 3812, +0, 3530, 3812, +0, 3531, 3812, +0, 3533, 3812, +0, 3536, 3811, +0, 3540, 3811, +0, 3545, 3810, +0, 3551, 3810, +0, 3559, 3810, +0, 3569, 3810, +0, 3582, 3810, +0, 3598, 3810, +0, 3620, 3810, +0, 3647, 3810, +0, 3680, 3810, +0, 3722, 3810, +0, 3773, 3810, +0, 3810, 3787, +0, 3810, 3696, +0, 3810, 3536, +0, 3810, 3155, +0, 3943, 0, +0, 4075, 0, +2861, 4095, 0, +0, 3519, 3812, +0, 3519, 3812, +0, 3519, 3812, +0, 3520, 3812, +0, 3520, 3812, +0, 3520, 3812, +0, 3521, 3812, +0, 3521, 3812, +0, 3522, 3812, +0, 3523, 3812, +0, 3525, 3812, +0, 3528, 3812, +0, 3530, 3811, +0, 3534, 3811, +0, 3540, 3810, +0, 3547, 3810, +0, 3554, 3810, +0, 3564, 3810, +0, 3577, 3810, +0, 3594, 3810, +0, 3616, 3810, +0, 3643, 3810, +0, 3677, 3810, +0, 3719, 3810, +0, 3770, 3810, +0, 3810, 3789, +0, 3810, 3698, +0, 3810, 3538, +0, 3810, 3161, +0, 3943, 0, +0, 4075, 0, +2890, 4095, 0, +0, 3511, 3812, +0, 3511, 3812, +0, 3511, 3812, +0, 3511, 3812, +0, 3511, 3812, +0, 3512, 3812, +0, 3513, 3812, +0, 3513, 3812, +0, 3514, 3812, +0, 3515, 3812, +0, 3517, 3812, +0, 3520, 3812, +0, 3522, 3811, +0, 3526, 3811, +0, 3532, 3810, +0, 3539, 3810, +0, 3548, 3809, +0, 3558, 3809, +0, 3571, 3809, +0, 3588, 3809, +0, 3610, 3809, +0, 3638, 3809, +0, 3672, 3809, +0, 3715, 3809, +0, 3766, 3809, +0, 3809, 3791, +0, 3809, 3700, +0, 3809, 3542, +0, 3809, 3169, +0, 3942, 0, +0, 4075, 0, +2927, 4095, 0, +0, 3499, 3812, +0, 3499, 3812, +0, 3500, 3812, +0, 3500, 3812, +0, 3500, 3812, +0, 3501, 3812, +0, 3501, 3812, +0, 3502, 3812, +0, 3503, 3812, +0, 3504, 3812, +0, 3506, 3812, +0, 3508, 3812, +0, 3511, 3811, +0, 3516, 3811, +0, 3521, 3810, +0, 3528, 3810, +0, 3537, 3809, +0, 3550, 3808, +0, 3563, 3808, +0, 3581, 3808, +0, 3603, 3808, +0, 3631, 3808, +0, 3666, 3808, +0, 3709, 3808, +0, 3761, 3808, +0, 3808, 3794, +0, 3808, 3704, +0, 3808, 3546, +0, 3808, 3180, +0, 3941, 0, +0, 4074, 0, +2973, 4095, 0, +0, 3484, 3812, +0, 3484, 3812, +0, 3484, 3812, +0, 3485, 3812, +0, 3485, 3812, +0, 3485, 3812, +0, 3486, 3812, +0, 3487, 3812, +0, 3488, 3812, +0, 3489, 3812, +0, 3491, 3812, +0, 3493, 3812, +0, 3496, 3811, +0, 3501, 3811, +0, 3506, 3810, +0, 3514, 3810, +0, 3523, 3809, +0, 3536, 3808, +0, 3552, 3807, +0, 3570, 3807, +0, 3593, 3807, +0, 3622, 3807, +0, 3657, 3807, +0, 3701, 3807, +0, 3754, 3807, +0, 3807, 3797, +0, 3807, 3708, +0, 3807, 3552, +0, 3807, 3194, +0, 3940, 0, +0, 4073, 0, +3027, 4095, 0, +0, 3462, 3812, +0, 3462, 3812, +0, 3463, 3812, +0, 3463, 3812, +0, 3463, 3812, +0, 3464, 3812, +0, 3464, 3812, +0, 3465, 3812, +0, 3466, 3812, +0, 3468, 3812, +0, 3469, 3812, +0, 3472, 3812, +0, 3475, 3811, +0, 3480, 3811, +0, 3486, 3810, +0, 3493, 3810, +0, 3503, 3809, +0, 3517, 3808, +0, 3534, 3807, +0, 3556, 3805, +0, 3579, 3805, +0, 3609, 3805, +0, 3646, 3805, +0, 3690, 3805, +0, 3744, 3805, +0, 3805, 3802, +0, 3805, 3714, +0, 3805, 3561, +0, 3805, 3211, +0, 3939, 0, +0, 4072, 0, +3090, 4095, 0, +0, 3432, 3812, +0, 3432, 3812, +0, 3432, 3812, +0, 3432, 3812, +0, 3433, 3812, +0, 3433, 3812, +0, 3434, 3812, +0, 3435, 3812, +0, 3436, 3812, +0, 3437, 3812, +0, 3439, 3812, +0, 3442, 3812, +0, 3446, 3811, +0, 3450, 3811, +0, 3457, 3810, +0, 3465, 3810, +0, 3475, 3809, +0, 3490, 3808, +0, 3508, 3807, +0, 3531, 3805, +0, 3560, 3802, +0, 3591, 3802, +0, 3629, 3802, +0, 3676, 3802, +0, 3731, 3802, +0, 3796, 3802, +0, 3802, 3721, +0, 3802, 3571, +0, 3802, 3234, +0, 3937, 0, +0, 4071, 0, +3164, 4095, 0, +0, 3387, 3812, +0, 3388, 3812, +0, 3388, 3812, +0, 3388, 3812, +0, 3388, 3812, +0, 3389, 3812, +0, 3390, 3812, +0, 3391, 3812, +0, 3392, 3812, +0, 3394, 3812, +0, 3396, 3812, +0, 3399, 3812, +0, 3403, 3811, +0, 3408, 3811, +0, 3415, 3810, +0, 3424, 3810, +0, 3435, 3809, +0, 3451, 3808, +0, 3470, 3807, +0, 3495, 3805, +0, 3527, 3802, +0, 3566, 3799, +0, 3606, 3799, +0, 3655, 3799, +0, 3713, 3799, +0, 3781, 3799, +0, 3799, 3731, +0, 3799, 3585, +0, 3799, 3262, +0, 3934, 0, +0, 4069, 0, +3246, 4095, 0, +0, 3320, 3812, +0, 3321, 3812, +0, 3321, 3812, +0, 3321, 3812, +0, 3322, 3812, +0, 3322, 3812, +0, 3323, 3812, +0, 3324, 3812, +0, 3326, 3812, +0, 3328, 3812, +0, 3330, 3812, +0, 3333, 3812, +0, 3338, 3811, +0, 3344, 3811, +0, 3352, 3810, +0, 3362, 3810, +0, 3376, 3809, +0, 3393, 3808, +0, 3415, 3807, +0, 3443, 3805, +0, 3479, 3802, +0, 3522, 3799, +0, 3574, 3794, +0, 3626, 3794, +0, 3687, 3794, +0, 3759, 3794, +0, 3794, 3745, +0, 3794, 3603, +0, 3794, 3298, +0, 3931, 0, +1985, 4066, 0, +3337, 4095, 0, +0, 3211, 3812, +0, 3212, 3812, +0, 3212, 3812, +0, 3213, 3812, +0, 3213, 3812, +0, 3214, 3812, +0, 3215, 3812, +0, 3216, 3812, +0, 3218, 3812, +0, 3221, 3812, +0, 3224, 3812, +0, 3228, 3812, +0, 3234, 3811, +0, 3241, 3811, +0, 3251, 3810, +0, 3264, 3810, +0, 3281, 3809, +0, 3302, 3808, +0, 3329, 3807, +0, 3363, 3805, +0, 3405, 3802, +0, 3455, 3799, +0, 3515, 3794, +1799, 3584, 3788, +1799, 3651, 3788, +1799, 3728, 3788, +1799, 3788, 3761, +1799, 3788, 3626, +1799, 3788, 3342, +0, 3926, 2023, +2781, 4063, 0, +3436, 4095, 0, +0, 3008, 3812, +0, 3009, 3812, +0, 3009, 3812, +0, 3010, 3812, +0, 3011, 3812, +0, 3012, 3812, +0, 3014, 3812, +0, 3016, 3812, +0, 3019, 3812, +0, 3023, 3812, +0, 3027, 3812, +0, 3034, 3812, +0, 3043, 3811, +0, 3054, 3811, +0, 3069, 3810, +0, 3088, 3810, +0, 3112, 3809, +0, 3143, 3808, +0, 3181, 3807, +0, 3227, 3805, +0, 3282, 3802, +0, 3347, 3799, +0, 3421, 3794, +1799, 3505, 3788, +2721, 3597, 3780, +2721, 3682, 3780, +2721, 3776, 3780, +2721, 3780, 3655, +2721, 3780, 3394, +1928, 3920, 2556, +3119, 4058, 0, +3541, 4095, 0, +0, 2367, 3812, +0, 2369, 3812, +0, 2371, 3812, +0, 2374, 3812, +0, 2377, 3812, +0, 2382, 3812, +0, 2389, 3812, +0, 2397, 3812, +0, 2408, 3812, +0, 2422, 3812, +0, 2441, 3812, +0, 2465, 3812, +0, 2494, 3811, +0, 2531, 3811, +0, 2576, 3810, +0, 2631, 3810, +0, 2694, 3809, +0, 2767, 3808, +0, 2850, 3807, +0, 2941, 3805, +0, 3040, 3802, +0, 3145, 3799, +0, 3256, 3794, +1799, 3372, 3788, +2721, 3492, 3780, +3072, 3614, 3768, +3072, 3721, 3768, +3072, 3768, 3691, +3072, 3768, 3456, +2854, 3912, 2854, +3361, 4052, 2063, +3653, 4095, 0, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3811, +0, 0, 3811, +0, 0, 3810, +0, 0, 3810, +0, 0, 3809, +0, 0, 3808, +0, 0, 3807, +0, 0, 3805, +0, 1737, 3802, +0, 2519, 3799, +0, 2856, 3794, +1799, 3097, 3788, +2721, 3296, 3780, +3072, 3473, 3768, +3318, 3636, 3752, +3318, 3752, 3735, +3318, 3752, 3528, +3302, 3900, 3204, +3561, 4044, 2986, +3768, 4095, 2192, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3811, +0, 0, 3811, +0, 0, 3810, +0, 0, 3810, +0, 0, 3809, +0, 0, 3808, +0, 0, 3807, +0, 0, 3805, +0, 0, 3802, +0, 0, 3799, +1884, 0, 3794, +2422, 1799, 3788, +2721, 2722, 3780, +3072, 3171, 3768, +3318, 3447, 3752, +3520, 3664, 3730, +3520, 3730, 3609, +3579, 3884, 3450, +3737, 4032, 3336, +3888, 4095, 3118, +3137, 0, 3812, +3137, 0, 3812, +3137, 0, 3812, +3138, 0, 3812, +3138, 0, 3812, +3138, 0, 3812, +3139, 0, 3812, +3139, 0, 3812, +3140, 0, 3812, +3141, 0, 3812, +3143, 0, 3812, +3145, 0, 3812, +3147, 0, 3811, +3151, 0, 3811, +3155, 0, 3810, +3161, 0, 3810, +3169, 0, 3809, +3180, 0, 3808, +3194, 0, 3807, +3211, 0, 3805, +3234, 0, 3802, +3262, 0, 3799, +3298, 0, 3794, +3342, 1799, 3788, +3394, 2721, 3780, +3456, 3072, 3768, +3528, 3318, 3752, +3609, 3520, 3730, +3698, 3698, 3698, +3796, 3862, 3652, +3900, 4016, 3583, +4010, 4095, 3469, +3660, 0, 3944, +3660, 0, 3944, +3660, 0, 3944, +3660, 0, 3944, +3660, 0, 3944, +3660, 0, 3944, +3660, 0, 3944, +3660, 0, 3944, +3661, 0, 3944, +3661, 0, 3944, +3661, 0, 3944, +3662, 0, 3944, +3663, 0, 3944, +3664, 0, 3943, +3665, 0, 3943, +3667, 0, 3943, +3670, 0, 3942, +3674, 0, 3941, +3678, 0, 3940, +3685, 0, 3939, +3692, 0, 3937, +3703, 0, 3934, +3717, 0, 3931, +3735, 0, 3926, +3758, 1928, 3920, +3787, 2854, 3912, +3822, 3204, 3900, +3867, 3450, 3884, +3862, 3652, 3796, +3862, 3741, 3652, +4016, 3999, 3583, +4095, 4095, 3469, +3954, 0, 4076, +3954, 0, 4076, +3954, 0, 4076, +3954, 0, 4076, +3955, 0, 4076, +3955, 0, 4076, +3955, 0, 4076, +3955, 0, 4076, +3955, 0, 4076, +3955, 0, 4076, +3955, 0, 4076, +3956, 0, 4076, +3956, 0, 4076, +3957, 0, 4076, +3958, 0, 4075, +3959, 0, 4075, +3960, 0, 4075, +3962, 0, 4074, +3964, 0, 4073, +3968, 0, 4072, +3972, 0, 4071, +3978, 0, 4069, +3985, 0, 4066, +3995, 0, 4063, +4008, 0, 4058, +4025, 2063, 4052, +4044, 2986, 4040, +4032, 3336, 3986, +4016, 3583, 3900, +4016, 3583, 3711, +4016, 3792, 3583, +4095, 4087, 3469, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 2192, 4095, +4095, 3118, 4079, +4095, 3469, 4010, +4095, 3469, 3869, +4095, 3469, 3568, +4095, 3853, 3469, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3678, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3683, 3944, +0, 3687, 3944, +0, 3691, 3944, +0, 3696, 3944, +0, 3704, 3944, +0, 3713, 3944, +0, 3726, 3944, +0, 3742, 3944, +0, 3763, 3944, +0, 3790, 3944, +0, 3823, 3944, +0, 3864, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3822, +0, 3944, 3660, +0, 3944, 3269, +0, 4076, 0, +0, 4095, 0, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3678, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3683, 3944, +0, 3687, 3944, +0, 3691, 3944, +0, 3696, 3944, +0, 3704, 3944, +0, 3713, 3944, +0, 3726, 3944, +0, 3742, 3944, +0, 3763, 3944, +0, 3790, 3944, +0, 3823, 3944, +0, 3864, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3822, +0, 3944, 3660, +0, 3944, 3269, +0, 4076, 0, +0, 4095, 0, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3678, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3683, 3944, +0, 3687, 3944, +0, 3691, 3944, +0, 3696, 3944, +0, 3704, 3944, +0, 3713, 3944, +0, 3726, 3944, +0, 3742, 3944, +0, 3763, 3944, +0, 3790, 3944, +0, 3823, 3944, +0, 3863, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3822, +0, 3944, 3660, +0, 3944, 3269, +0, 4076, 0, +0, 4095, 0, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3678, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3683, 3944, +0, 3686, 3944, +0, 3691, 3944, +0, 3696, 3944, +0, 3703, 3944, +0, 3713, 3944, +0, 3726, 3944, +0, 3742, 3944, +0, 3763, 3944, +0, 3790, 3944, +0, 3822, 3944, +0, 3863, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3823, +0, 3944, 3660, +0, 3944, 3269, +0, 4076, 0, +0, 4095, 0, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3678, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3683, 3944, +0, 3686, 3944, +0, 3691, 3944, +0, 3696, 3944, +0, 3703, 3944, +0, 3713, 3944, +0, 3726, 3944, +0, 3742, 3944, +0, 3763, 3944, +0, 3789, 3944, +0, 3822, 3944, +0, 3863, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3823, +0, 3944, 3660, +0, 3944, 3270, +0, 4076, 0, +0, 4095, 0, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3683, 3944, +0, 3686, 3944, +0, 3690, 3944, +0, 3696, 3944, +0, 3703, 3944, +0, 3713, 3944, +0, 3725, 3944, +0, 3742, 3944, +0, 3763, 3944, +0, 3789, 3944, +0, 3822, 3944, +0, 3863, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3823, +0, 3944, 3660, +0, 3944, 3270, +0, 4076, 0, +0, 4095, 0, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3679, 3944, +0, 3680, 3944, +0, 3683, 3944, +0, 3686, 3944, +0, 3690, 3944, +0, 3696, 3944, +0, 3703, 3944, +0, 3713, 3944, +0, 3725, 3944, +0, 3741, 3944, +0, 3762, 3944, +0, 3789, 3944, +0, 3822, 3944, +0, 3863, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3823, +0, 3944, 3660, +0, 3944, 3270, +0, 4076, 0, +0, 4095, 0, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3678, 3944, +0, 3680, 3944, +0, 3682, 3944, +0, 3686, 3944, +0, 3690, 3944, +0, 3695, 3944, +0, 3703, 3944, +0, 3712, 3944, +0, 3725, 3944, +0, 3741, 3944, +0, 3762, 3944, +0, 3789, 3944, +0, 3822, 3944, +0, 3863, 3944, +0, 3912, 3944, +0, 3944, 3915, +0, 3944, 3823, +0, 3944, 3660, +0, 3944, 3271, +0, 4076, 0, +0, 4095, 0, +0, 3672, 3944, +0, 3672, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3678, 3944, +0, 3680, 3944, +0, 3682, 3944, +0, 3685, 3944, +0, 3689, 3944, +0, 3695, 3944, +0, 3702, 3944, +0, 3712, 3944, +0, 3725, 3944, +0, 3741, 3944, +0, 3762, 3944, +0, 3788, 3944, +0, 3822, 3944, +0, 3863, 3944, +0, 3912, 3944, +0, 3944, 3915, +0, 3944, 3823, +0, 3944, 3661, +0, 3944, 3271, +0, 4076, 0, +0, 4095, 0, +0, 3671, 3944, +0, 3671, 3944, +0, 3672, 3944, +0, 3672, 3944, +0, 3672, 3944, +0, 3672, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3685, 3944, +0, 3689, 3944, +0, 3694, 3944, +0, 3702, 3944, +0, 3711, 3944, +0, 3724, 3944, +0, 3740, 3944, +0, 3761, 3944, +0, 3788, 3944, +0, 3821, 3944, +0, 3862, 3944, +0, 3912, 3944, +0, 3944, 3916, +0, 3944, 3824, +0, 3944, 3661, +0, 3944, 3272, +0, 4076, 0, +0, 4095, 0, +0, 3670, 3944, +0, 3671, 3944, +0, 3671, 3944, +0, 3671, 3944, +0, 3671, 3944, +0, 3671, 3944, +0, 3672, 3944, +0, 3672, 3944, +0, 3673, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3678, 3944, +0, 3680, 3944, +0, 3684, 3944, +0, 3688, 3944, +0, 3694, 3944, +0, 3701, 3944, +0, 3711, 3944, +0, 3723, 3944, +0, 3740, 3944, +0, 3761, 3944, +0, 3787, 3944, +0, 3820, 3944, +0, 3862, 3944, +0, 3911, 3944, +0, 3944, 3916, +0, 3944, 3824, +0, 3944, 3661, +0, 3944, 3273, +0, 4076, 0, +0, 4095, 0, +0, 3669, 3944, +0, 3669, 3944, +0, 3669, 3944, +0, 3669, 3944, +0, 3670, 3944, +0, 3670, 3944, +0, 3670, 3944, +0, 3671, 3944, +0, 3671, 3944, +0, 3673, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3677, 3944, +0, 3679, 3944, +0, 3683, 3944, +0, 3687, 3944, +0, 3692, 3944, +0, 3700, 3944, +0, 3710, 3944, +0, 3722, 3944, +0, 3739, 3944, +0, 3760, 3944, +0, 3786, 3944, +0, 3820, 3944, +0, 3861, 3944, +0, 3910, 3944, +0, 3944, 3916, +0, 3944, 3824, +0, 3944, 3662, +0, 3944, 3275, +0, 4076, 0, +0, 4095, 0, +0, 3667, 3944, +0, 3667, 3944, +0, 3668, 3944, +0, 3668, 3944, +0, 3668, 3944, +0, 3668, 3944, +0, 3668, 3944, +0, 3669, 3944, +0, 3670, 3944, +0, 3671, 3944, +0, 3672, 3944, +0, 3673, 3944, +0, 3676, 3944, +0, 3678, 3944, +0, 3681, 3944, +0, 3685, 3944, +0, 3691, 3944, +0, 3699, 3944, +0, 3708, 3944, +0, 3721, 3944, +0, 3737, 3944, +0, 3758, 3944, +0, 3785, 3944, +0, 3819, 3944, +0, 3860, 3944, +0, 3910, 3944, +0, 3944, 3917, +0, 3944, 3825, +0, 3944, 3663, +0, 3944, 3277, +0, 4076, 0, +0, 4095, 0, +0, 3665, 3944, +0, 3665, 3944, +0, 3665, 3944, +0, 3665, 3944, +0, 3665, 3944, +0, 3666, 3944, +0, 3666, 3944, +0, 3666, 3944, +0, 3667, 3944, +0, 3668, 3944, +0, 3669, 3944, +0, 3671, 3944, +0, 3673, 3944, +0, 3676, 3943, +0, 3679, 3943, +0, 3683, 3943, +0, 3689, 3943, +0, 3697, 3943, +0, 3706, 3943, +0, 3719, 3943, +0, 3736, 3943, +0, 3757, 3943, +0, 3784, 3943, +0, 3817, 3943, +0, 3859, 3943, +0, 3909, 3943, +0, 3943, 3917, +0, 3943, 3826, +0, 3943, 3664, +0, 3943, 3279, +0, 4076, 0, +0, 4095, 0, +0, 3661, 3944, +0, 3662, 3944, +0, 3662, 3944, +0, 3662, 3944, +0, 3662, 3944, +0, 3662, 3944, +0, 3663, 3944, +0, 3663, 3944, +0, 3664, 3944, +0, 3665, 3944, +0, 3666, 3944, +0, 3668, 3944, +0, 3670, 3944, +0, 3673, 3943, +0, 3677, 3943, +0, 3681, 3943, +0, 3687, 3943, +0, 3694, 3943, +0, 3704, 3943, +0, 3717, 3943, +0, 3733, 3943, +0, 3755, 3943, +0, 3781, 3943, +0, 3815, 3943, +0, 3857, 3943, +0, 3907, 3943, +0, 3943, 3918, +0, 3943, 3827, +0, 3943, 3665, +0, 3943, 3283, +0, 4075, 0, +0, 4095, 0, +0, 3657, 3944, +0, 3657, 3944, +0, 3657, 3944, +0, 3657, 3944, +0, 3658, 3944, +0, 3658, 3944, +0, 3658, 3944, +0, 3659, 3944, +0, 3659, 3944, +0, 3661, 3944, +0, 3662, 3944, +0, 3663, 3944, +0, 3666, 3944, +0, 3668, 3943, +0, 3672, 3943, +0, 3677, 3943, +0, 3683, 3943, +0, 3691, 3943, +0, 3701, 3943, +0, 3713, 3943, +0, 3730, 3943, +0, 3752, 3943, +0, 3779, 3943, +0, 3813, 3943, +0, 3854, 3943, +0, 3905, 3943, +0, 3943, 3920, +0, 3943, 3828, +0, 3943, 3667, +0, 3943, 3287, +0, 4075, 0, +0, 4095, 0, +0, 3651, 3944, +0, 3651, 3944, +0, 3651, 3944, +0, 3651, 3944, +0, 3652, 3944, +0, 3652, 3944, +0, 3652, 3944, +0, 3653, 3944, +0, 3653, 3944, +0, 3654, 3944, +0, 3656, 3944, +0, 3657, 3944, +0, 3659, 3944, +0, 3662, 3943, +0, 3666, 3943, +0, 3672, 3943, +0, 3679, 3942, +0, 3686, 3942, +0, 3696, 3942, +0, 3709, 3942, +0, 3726, 3942, +0, 3748, 3942, +0, 3775, 3942, +0, 3809, 3942, +0, 3851, 3942, +0, 3902, 3942, +0, 3942, 3921, +0, 3942, 3830, +0, 3942, 3670, +0, 3942, 3293, +0, 4075, 0, +0, 4095, 0, +0, 3643, 3944, +0, 3643, 3944, +0, 3643, 3944, +0, 3643, 3944, +0, 3643, 3944, +0, 3644, 3944, +0, 3644, 3944, +0, 3645, 3944, +0, 3645, 3944, +0, 3646, 3944, +0, 3648, 3944, +0, 3649, 3944, +0, 3651, 3944, +0, 3655, 3943, +0, 3659, 3943, +0, 3664, 3943, +0, 3671, 3942, +0, 3680, 3941, +0, 3690, 3941, +0, 3703, 3941, +0, 3720, 3941, +0, 3742, 3941, +0, 3770, 3941, +0, 3805, 3941, +0, 3847, 3941, +0, 3898, 3941, +0, 3941, 3923, +0, 3941, 3832, +0, 3941, 3674, +0, 3941, 3302, +0, 4074, 0, +0, 4095, 0, +0, 3631, 3944, +0, 3632, 3944, +0, 3632, 3944, +0, 3632, 3944, +0, 3632, 3944, +0, 3632, 3944, +0, 3633, 3944, +0, 3633, 3944, +0, 3634, 3944, +0, 3635, 3944, +0, 3636, 3944, +0, 3638, 3944, +0, 3640, 3944, +0, 3644, 3943, +0, 3648, 3943, +0, 3653, 3943, +0, 3660, 3942, +0, 3669, 3941, +0, 3682, 3940, +0, 3695, 3940, +0, 3713, 3940, +0, 3735, 3940, +0, 3763, 3940, +0, 3798, 3940, +0, 3841, 3940, +0, 3893, 3940, +0, 3940, 3926, +0, 3940, 3836, +0, 3940, 3678, +0, 3940, 3312, +0, 4073, 0, +0, 4095, 0, +0, 3616, 3944, +0, 3616, 3944, +0, 3616, 3944, +0, 3616, 3944, +0, 3617, 3944, +0, 3617, 3944, +0, 3617, 3944, +0, 3618, 3944, +0, 3619, 3944, +0, 3620, 3944, +0, 3621, 3944, +0, 3623, 3944, +0, 3625, 3944, +0, 3628, 3943, +0, 3632, 3943, +0, 3638, 3943, +0, 3646, 3942, +0, 3655, 3941, +0, 3668, 3940, +0, 3684, 3939, +0, 3702, 3939, +0, 3725, 3939, +0, 3754, 3939, +0, 3790, 3939, +0, 3833, 3939, +0, 3886, 3939, +0, 3939, 3929, +0, 3939, 3840, +0, 3939, 3685, +0, 3939, 3326, +0, 4072, 0, +0, 4095, 0, +0, 3594, 3944, +0, 3595, 3944, +0, 3595, 3944, +0, 3595, 3944, +0, 3595, 3944, +0, 3595, 3944, +0, 3596, 3944, +0, 3596, 3944, +0, 3597, 3944, +0, 3598, 3944, +0, 3600, 3944, +0, 3602, 3944, +0, 3604, 3944, +0, 3607, 3943, +0, 3612, 3943, +0, 3618, 3943, +0, 3626, 3942, +0, 3635, 3941, +0, 3649, 3940, +0, 3666, 3939, +0, 3688, 3937, +0, 3711, 3937, +0, 3741, 3937, +0, 3777, 3937, +0, 3822, 3937, +0, 3876, 3937, +0, 3937, 3934, +0, 3937, 3846, +0, 3937, 3692, +0, 3937, 3344, +0, 4071, 0, +0, 4095, 0, +0, 3564, 3944, +0, 3564, 3944, +0, 3564, 3944, +0, 3564, 3944, +0, 3564, 3944, +0, 3565, 3944, +0, 3565, 3944, +0, 3566, 3944, +0, 3567, 3944, +0, 3568, 3944, +0, 3569, 3944, +0, 3571, 3944, +0, 3574, 3944, +0, 3578, 3943, +0, 3583, 3943, +0, 3589, 3943, +0, 3597, 3942, +0, 3608, 3941, +0, 3622, 3940, +0, 3640, 3939, +0, 3663, 3937, +0, 3692, 3934, +0, 3723, 3934, +0, 3761, 3934, +0, 3808, 3934, +0, 3863, 3934, +0, 3928, 3934, +0, 3934, 3853, +0, 3934, 3703, +0, 3934, 3366, +0, 4069, 0, +0, 4095, 0, +0, 3520, 3944, +0, 3520, 3944, +0, 3520, 3944, +0, 3520, 3944, +0, 3520, 3944, +0, 3521, 3944, +0, 3521, 3944, +0, 3522, 3944, +0, 3523, 3944, +0, 3524, 3944, +0, 3526, 3944, +0, 3528, 3944, +0, 3531, 3944, +0, 3535, 3943, +0, 3540, 3943, +0, 3547, 3943, +0, 3556, 3942, +0, 3568, 3941, +0, 3583, 3940, +0, 3603, 3939, +0, 3628, 3937, +0, 3659, 3934, +0, 3698, 3931, +0, 3738, 3931, +0, 3787, 3931, +0, 3845, 3931, +0, 3913, 3931, +0, 3931, 3863, +0, 3931, 3717, +0, 3931, 3395, +0, 4066, 0, +0, 4095, 0, +0, 3452, 3944, +0, 3452, 3944, +0, 3453, 3944, +0, 3453, 3944, +0, 3453, 3944, +0, 3454, 3944, +0, 3454, 3944, +0, 3455, 3944, +0, 3456, 3944, +0, 3458, 3944, +0, 3459, 3944, +0, 3462, 3944, +0, 3466, 3944, +0, 3470, 3943, +0, 3476, 3943, +0, 3484, 3943, +0, 3494, 3942, +0, 3507, 3941, +0, 3525, 3940, +0, 3547, 3939, +0, 3575, 3937, +0, 3611, 3934, +0, 3654, 3931, +0, 3706, 3926, +0, 3758, 3926, +0, 3820, 3926, +0, 3891, 3926, +0, 3926, 3877, +0, 3926, 3735, +0, 3926, 3430, +0, 4063, 0, +2137, 4095, 0, +0, 3344, 3944, +0, 3344, 3944, +0, 3344, 3944, +0, 3344, 3944, +0, 3345, 3944, +0, 3346, 3944, +0, 3346, 3944, +0, 3347, 3944, +0, 3349, 3944, +0, 3351, 3944, +0, 3353, 3944, +0, 3356, 3944, +0, 3361, 3944, +0, 3366, 3943, +0, 3374, 3943, +0, 3384, 3943, +0, 3396, 3942, +0, 3413, 3941, +0, 3434, 3940, +0, 3461, 3939, +0, 3495, 3937, +0, 3537, 3934, +0, 3587, 3931, +0, 3647, 3926, +1928, 3716, 3920, +1928, 3783, 3920, +1928, 3860, 3920, +1928, 3920, 3893, +1928, 3920, 3758, +1928, 3920, 3474, +0, 4058, 2157, +2915, 4095, 0, +0, 3140, 3944, +0, 3140, 3944, +0, 3140, 3944, +0, 3141, 3944, +0, 3142, 3944, +0, 3143, 3944, +0, 3144, 3944, +0, 3145, 3944, +0, 3147, 3944, +0, 3151, 3944, +0, 3154, 3944, +0, 3159, 3944, +0, 3166, 3944, +0, 3175, 3943, +0, 3186, 3943, +0, 3201, 3943, +0, 3220, 3942, +0, 3244, 3941, +0, 3275, 3940, +0, 3313, 3939, +0, 3359, 3937, +0, 3414, 3934, +0, 3479, 3931, +0, 3553, 3926, +1928, 3637, 3920, +2854, 3729, 3912, +2854, 3814, 3912, +2854, 3908, 3912, +2854, 3912, 3787, +2854, 3912, 3526, +2063, 4052, 2689, +3253, 4095, 0, +0, 2497, 3944, +0, 2498, 3944, +0, 2500, 3944, +0, 2502, 3944, +0, 2505, 3944, +0, 2508, 3944, +0, 2513, 3944, +0, 2520, 3944, +0, 2528, 3944, +0, 2539, 3944, +0, 2553, 3944, +0, 2572, 3944, +0, 2596, 3944, +0, 2625, 3943, +0, 2662, 3943, +0, 2708, 3943, +0, 2762, 3942, +0, 2826, 3941, +0, 2899, 3940, +0, 2982, 3939, +0, 3073, 3937, +0, 3172, 3934, +0, 3277, 3931, +0, 3388, 3926, +1928, 3504, 3920, +2854, 3624, 3912, +3204, 3746, 3900, +3204, 3853, 3900, +3204, 3900, 3822, +3204, 3900, 3588, +2987, 4044, 2986, +3494, 4095, 2192, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3943, +0, 0, 3943, +0, 0, 3943, +0, 0, 3942, +0, 0, 3941, +0, 0, 3940, +0, 0, 3939, +0, 0, 3937, +0, 1863, 3934, +0, 2650, 3931, +0, 2988, 3926, +1928, 3229, 3920, +2854, 3428, 3912, +3204, 3605, 3900, +3450, 3768, 3884, +3450, 3884, 3867, +3450, 3884, 3660, +3435, 4032, 3336, +3693, 4095, 3118, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3943, +0, 0, 3943, +0, 0, 3943, +0, 0, 3942, +0, 0, 3941, +0, 0, 3940, +0, 0, 3939, +0, 0, 3937, +0, 0, 3934, +0, 0, 3931, +2023, 0, 3926, +2556, 1928, 3920, +2854, 2854, 3912, +3204, 3302, 3900, +3450, 3579, 3884, +3652, 3796, 3862, +3652, 3862, 3741, +3711, 4016, 3583, +3869, 4095, 3469, +3269, 0, 3944, +3269, 0, 3944, +3269, 0, 3944, +3269, 0, 3944, +3270, 0, 3944, +3270, 0, 3944, +3270, 0, 3944, +3271, 0, 3944, +3271, 0, 3944, +3272, 0, 3944, +3273, 0, 3944, +3275, 0, 3944, +3277, 0, 3944, +3279, 0, 3943, +3283, 0, 3943, +3287, 0, 3943, +3293, 0, 3942, +3302, 0, 3941, +3312, 0, 3940, +3326, 0, 3939, +3344, 0, 3937, +3366, 0, 3934, +3395, 0, 3931, +3430, 0, 3926, +3474, 1928, 3920, +3526, 2854, 3912, +3588, 3204, 3900, +3660, 3450, 3884, +3741, 3652, 3862, +3830, 3830, 3830, +3928, 3994, 3784, +4032, 4095, 3714, +3791, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3793, 0, 4076, +3793, 0, 4076, +3793, 0, 4076, +3794, 0, 4076, +3795, 0, 4076, +3796, 0, 4075, +3797, 0, 4075, +3799, 0, 4075, +3802, 0, 4074, +3805, 0, 4073, +3810, 0, 4072, +3816, 0, 4071, +3824, 0, 4069, +3835, 0, 4066, +3849, 0, 4063, +3867, 0, 4058, +3890, 2063, 4052, +3919, 2986, 4044, +3955, 3336, 4032, +3999, 3583, 4016, +3994, 3784, 3928, +3994, 3873, 3784, +4095, 4095, 3714, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4088, 0, 4095, +4088, 0, 4095, +4088, 0, 4095, +4088, 0, 4095, +4089, 0, 4095, +4089, 0, 4095, +4090, 0, 4095, +4091, 0, 4095, +4092, 0, 4095, +4094, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 2192, 4095, +4095, 3118, 4095, +4095, 3469, 4095, +4095, 3714, 4032, +4095, 3714, 3844, +4095, 3924, 3714, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3812, 4076, +0, 3813, 4076, +0, 3816, 4076, +0, 3819, 4076, +0, 3823, 4076, +0, 3828, 4076, +0, 3836, 4076, +0, 3846, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3922, 4076, +0, 3955, 4076, +0, 3996, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3954, +0, 4076, 3791, +0, 4076, 3401, +0, 4095, 0, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3811, 4076, +0, 3813, 4076, +0, 3816, 4076, +0, 3819, 4076, +0, 3823, 4076, +0, 3828, 4076, +0, 3836, 4076, +0, 3845, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3922, 4076, +0, 3955, 4076, +0, 3996, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3954, +0, 4076, 3792, +0, 4076, 3401, +0, 4095, 0, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3811, 4076, +0, 3813, 4076, +0, 3816, 4076, +0, 3819, 4076, +0, 3823, 4076, +0, 3828, 4076, +0, 3836, 4076, +0, 3845, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3921, 4076, +0, 3955, 4076, +0, 3996, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3954, +0, 4076, 3792, +0, 4076, 3401, +0, 4095, 0, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3811, 4076, +0, 3813, 4076, +0, 3815, 4076, +0, 3818, 4076, +0, 3823, 4076, +0, 3828, 4076, +0, 3836, 4076, +0, 3845, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3921, 4076, +0, 3955, 4076, +0, 3995, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3954, +0, 4076, 3792, +0, 4076, 3401, +0, 4095, 0, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3811, 4076, +0, 3813, 4076, +0, 3815, 4076, +0, 3818, 4076, +0, 3823, 4076, +0, 3828, 4076, +0, 3836, 4076, +0, 3845, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3921, 4076, +0, 3955, 4076, +0, 3995, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3955, +0, 4076, 3792, +0, 4076, 3401, +0, 4095, 0, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3811, 4076, +0, 3813, 4076, +0, 3815, 4076, +0, 3818, 4076, +0, 3822, 4076, +0, 3828, 4076, +0, 3835, 4076, +0, 3845, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3921, 4076, +0, 3954, 4076, +0, 3995, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3955, +0, 4076, 3792, +0, 4076, 3402, +0, 4095, 0, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3810, 4076, +0, 3811, 4076, +0, 3812, 4076, +0, 3815, 4076, +0, 3818, 4076, +0, 3822, 4076, +0, 3828, 4076, +0, 3835, 4076, +0, 3845, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3921, 4076, +0, 3954, 4076, +0, 3995, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3955, +0, 4076, 3792, +0, 4076, 3402, +0, 4095, 0, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3812, 4076, +0, 3815, 4076, +0, 3818, 4076, +0, 3822, 4076, +0, 3828, 4076, +0, 3835, 4076, +0, 3845, 4076, +0, 3857, 4076, +0, 3873, 4076, +0, 3895, 4076, +0, 3921, 4076, +0, 3954, 4076, +0, 3995, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3955, +0, 4076, 3792, +0, 4076, 3402, +0, 4095, 0, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3812, 4076, +0, 3814, 4076, +0, 3818, 4076, +0, 3822, 4076, +0, 3827, 4076, +0, 3835, 4076, +0, 3845, 4076, +0, 3857, 4076, +0, 3873, 4076, +0, 3894, 4076, +0, 3921, 4076, +0, 3954, 4076, +0, 3995, 4076, +0, 4044, 4076, +0, 4076, 4047, +0, 4076, 3955, +0, 4076, 3792, +0, 4076, 3403, +0, 4095, 0, +0, 3804, 4076, +0, 3804, 4076, +0, 3804, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3810, 4076, +0, 3812, 4076, +0, 3814, 4076, +0, 3817, 4076, +0, 3821, 4076, +0, 3827, 4076, +0, 3834, 4076, +0, 3844, 4076, +0, 3856, 4076, +0, 3873, 4076, +0, 3894, 4076, +0, 3921, 4076, +0, 3953, 4076, +0, 3995, 4076, +0, 4044, 4076, +0, 4076, 4047, +0, 4076, 3955, +0, 4076, 3793, +0, 4076, 3403, +0, 4095, 0, +0, 3803, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3804, 4076, +0, 3804, 4076, +0, 3804, 4076, +0, 3804, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3811, 4076, +0, 3813, 4076, +0, 3816, 4076, +0, 3821, 4076, +0, 3826, 4076, +0, 3834, 4076, +0, 3843, 4076, +0, 3856, 4076, +0, 3872, 4076, +0, 3893, 4076, +0, 3920, 4076, +0, 3953, 4076, +0, 3994, 4076, +0, 4044, 4076, +0, 4076, 4048, +0, 4076, 3955, +0, 4076, 3793, +0, 4076, 3404, +0, 4095, 0, +0, 3803, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3804, 4076, +0, 3804, 4076, +0, 3805, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3810, 4076, +0, 3812, 4076, +0, 3816, 4076, +0, 3820, 4076, +0, 3826, 4076, +0, 3833, 4076, +0, 3843, 4076, +0, 3855, 4076, +0, 3872, 4076, +0, 3892, 4076, +0, 3919, 4076, +0, 3953, 4076, +0, 3994, 4076, +0, 4043, 4076, +0, 4076, 4048, +0, 4076, 3956, +0, 4076, 3793, +0, 4076, 3405, +0, 4095, 0, +0, 3801, 4076, +0, 3801, 4076, +0, 3801, 4076, +0, 3801, 4076, +0, 3801, 4076, +0, 3802, 4076, +0, 3802, 4076, +0, 3802, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3804, 4076, +0, 3805, 4076, +0, 3807, 4076, +0, 3809, 4076, +0, 3812, 4076, +0, 3814, 4076, +0, 3819, 4076, +0, 3824, 4076, +0, 3832, 4076, +0, 3841, 4076, +0, 3854, 4076, +0, 3871, 4076, +0, 3891, 4076, +0, 3918, 4076, +0, 3952, 4076, +0, 3993, 4076, +0, 4043, 4076, +0, 4076, 4048, +0, 4076, 3956, +0, 4076, 3794, +0, 4076, 3407, +0, 4095, 0, +0, 3799, 4076, +0, 3799, 4076, +0, 3799, 4076, +0, 3799, 4076, +0, 3800, 4076, +0, 3800, 4076, +0, 3800, 4076, +0, 3801, 4076, +0, 3801, 4076, +0, 3802, 4076, +0, 3803, 4076, +0, 3804, 4076, +0, 3805, 4076, +0, 3808, 4076, +0, 3810, 4076, +0, 3813, 4076, +0, 3817, 4076, +0, 3823, 4076, +0, 3830, 4076, +0, 3840, 4076, +0, 3853, 4076, +0, 3869, 4076, +0, 3890, 4076, +0, 3917, 4076, +0, 3950, 4076, +0, 3992, 4076, +0, 4042, 4076, +0, 4076, 4049, +0, 4076, 3957, +0, 4076, 3795, +0, 4076, 3409, +0, 4095, 0, +0, 3797, 4076, +0, 3797, 4076, +0, 3797, 4076, +0, 3797, 4076, +0, 3797, 4076, +0, 3797, 4076, +0, 3798, 4076, +0, 3798, 4076, +0, 3798, 4076, +0, 3799, 4076, +0, 3800, 4076, +0, 3801, 4076, +0, 3803, 4076, +0, 3805, 4076, +0, 3808, 4075, +0, 3811, 4075, +0, 3816, 4075, +0, 3821, 4075, +0, 3829, 4075, +0, 3838, 4075, +0, 3851, 4075, +0, 3868, 4075, +0, 3889, 4075, +0, 3916, 4075, +0, 3949, 4075, +0, 3991, 4075, +0, 4041, 4075, +0, 4075, 4049, +0, 4075, 3958, +0, 4075, 3796, +0, 4075, 3411, +0, 4095, 0, +0, 3793, 4076, +0, 3793, 4076, +0, 3793, 4076, +0, 3794, 4076, +0, 3794, 4076, +0, 3794, 4076, +0, 3794, 4076, +0, 3795, 4076, +0, 3795, 4076, +0, 3796, 4076, +0, 3797, 4076, +0, 3798, 4076, +0, 3800, 4076, +0, 3802, 4076, +0, 3805, 4075, +0, 3809, 4075, +0, 3813, 4075, +0, 3818, 4075, +0, 3826, 4075, +0, 3836, 4075, +0, 3849, 4075, +0, 3865, 4075, +0, 3887, 4075, +0, 3913, 4075, +0, 3947, 4075, +0, 3989, 4075, +0, 4039, 4075, +0, 4075, 4050, +0, 4075, 3959, +0, 4075, 3797, +0, 4075, 3415, +0, 4095, 0, +0, 3789, 4076, +0, 3789, 4076, +0, 3789, 4076, +0, 3789, 4076, +0, 3790, 4076, +0, 3790, 4076, +0, 3790, 4076, +0, 3790, 4076, +0, 3791, 4076, +0, 3791, 4076, +0, 3793, 4076, +0, 3794, 4076, +0, 3795, 4076, +0, 3798, 4076, +0, 3801, 4075, +0, 3804, 4075, +0, 3810, 4075, +0, 3815, 4075, +0, 3823, 4075, +0, 3833, 4075, +0, 3846, 4075, +0, 3862, 4075, +0, 3884, 4075, +0, 3911, 4075, +0, 3945, 4075, +0, 3986, 4075, +0, 4037, 4075, +0, 4075, 4051, +0, 4075, 3960, +0, 4075, 3799, +0, 4075, 3419, +0, 4095, 0, +0, 3783, 4076, +0, 3783, 4076, +0, 3783, 4076, +0, 3783, 4076, +0, 3783, 4076, +0, 3784, 4076, +0, 3784, 4076, +0, 3784, 4076, +0, 3785, 4076, +0, 3785, 4076, +0, 3787, 4076, +0, 3787, 4076, +0, 3789, 4076, +0, 3792, 4076, +0, 3795, 4075, +0, 3798, 4075, +0, 3803, 4075, +0, 3810, 4074, +0, 3818, 4074, +0, 3828, 4074, +0, 3841, 4074, +0, 3858, 4074, +0, 3880, 4074, +0, 3907, 4074, +0, 3941, 4074, +0, 3983, 4074, +0, 4034, 4074, +0, 4074, 4053, +0, 4074, 3962, +0, 4074, 3802, +0, 4074, 3426, +0, 4095, 0, +0, 3774, 4076, +0, 3775, 4076, +0, 3775, 4076, +0, 3775, 4076, +0, 3775, 4076, +0, 3775, 4076, +0, 3776, 4076, +0, 3776, 4076, +0, 3777, 4076, +0, 3777, 4076, +0, 3778, 4076, +0, 3780, 4076, +0, 3781, 4076, +0, 3784, 4076, +0, 3787, 4075, +0, 3790, 4075, +0, 3796, 4075, +0, 3803, 4074, +0, 3812, 4073, +0, 3822, 4073, +0, 3835, 4073, +0, 3852, 4073, +0, 3874, 4073, +0, 3902, 4073, +0, 3937, 4073, +0, 3979, 4073, +0, 4030, 4073, +0, 4073, 4055, +0, 4073, 3964, +0, 4073, 3805, +0, 4073, 3434, +0, 4095, 0, +0, 3763, 4076, +0, 3763, 4076, +0, 3763, 4076, +0, 3764, 4076, +0, 3764, 4076, +0, 3764, 4076, +0, 3764, 4076, +0, 3765, 4076, +0, 3765, 4076, +0, 3766, 4076, +0, 3767, 4076, +0, 3768, 4076, +0, 3770, 4076, +0, 3773, 4076, +0, 3776, 4075, +0, 3780, 4075, +0, 3785, 4075, +0, 3792, 4074, +0, 3801, 4073, +0, 3814, 4072, +0, 3827, 4072, +0, 3845, 4072, +0, 3867, 4072, +0, 3895, 4072, +0, 3930, 4072, +0, 3973, 4072, +0, 4025, 4072, +0, 4072, 4058, +0, 4072, 3968, +0, 4072, 3810, +0, 4072, 3444, +0, 4095, 0, +0, 3748, 4076, +0, 3748, 4076, +0, 3748, 4076, +0, 3748, 4076, +0, 3748, 4076, +0, 3749, 4076, +0, 3749, 4076, +0, 3749, 4076, +0, 3750, 4076, +0, 3751, 4076, +0, 3752, 4076, +0, 3753, 4076, +0, 3755, 4076, +0, 3757, 4076, +0, 3760, 4075, +0, 3765, 4075, +0, 3770, 4075, +0, 3777, 4074, +0, 3787, 4073, +0, 3800, 4072, +0, 3816, 4071, +0, 3834, 4071, +0, 3857, 4071, +0, 3886, 4071, +0, 3921, 4071, +0, 3965, 4071, +0, 4018, 4071, +0, 4071, 4061, +0, 4071, 3972, +0, 4071, 3816, +0, 4071, 3458, +0, 4095, 0, +0, 3726, 4076, +0, 3726, 4076, +0, 3726, 4076, +0, 3727, 4076, +0, 3727, 4076, +0, 3727, 4076, +0, 3727, 4076, +0, 3728, 4076, +0, 3728, 4076, +0, 3729, 4076, +0, 3730, 4076, +0, 3732, 4076, +0, 3734, 4076, +0, 3736, 4076, +0, 3739, 4075, +0, 3744, 4075, +0, 3750, 4075, +0, 3757, 4074, +0, 3768, 4073, +0, 3781, 4072, +0, 3798, 4071, +0, 3820, 4069, +0, 3843, 4069, +0, 3873, 4069, +0, 3910, 4069, +0, 3954, 4069, +0, 4008, 4069, +0, 4069, 4066, +0, 4069, 3978, +0, 4069, 3824, +0, 4069, 3475, +0, 4095, 0, +0, 3696, 4076, +0, 3696, 4076, +0, 3696, 4076, +0, 3696, 4076, +0, 3696, 4076, +0, 3696, 4076, +0, 3697, 4076, +0, 3697, 4076, +0, 3698, 4076, +0, 3699, 4076, +0, 3700, 4076, +0, 3701, 4076, +0, 3703, 4076, +0, 3706, 4076, +0, 3710, 4075, +0, 3714, 4075, +0, 3721, 4075, +0, 3729, 4074, +0, 3740, 4073, +0, 3754, 4072, +0, 3772, 4071, +0, 3795, 4069, +0, 3824, 4066, +0, 3855, 4066, +0, 3893, 4066, +0, 3940, 4066, +0, 3995, 4066, +0, 4060, 4066, +0, 4066, 3985, +0, 4066, 3835, +0, 4066, 3498, +0, 4095, 0, +0, 3651, 4076, +0, 3651, 4076, +0, 3651, 4076, +0, 3652, 4076, +0, 3652, 4076, +0, 3652, 4076, +0, 3653, 4076, +0, 3653, 4076, +0, 3654, 4076, +0, 3655, 4076, +0, 3656, 4076, +0, 3658, 4076, +0, 3660, 4076, +0, 3663, 4076, +0, 3667, 4075, +0, 3672, 4075, +0, 3679, 4075, +0, 3688, 4074, +0, 3700, 4073, +0, 3715, 4072, +0, 3735, 4071, +0, 3760, 4069, +0, 3791, 4066, +0, 3830, 4063, +0, 3870, 4063, +0, 3919, 4063, +0, 3977, 4063, +0, 4045, 4063, +0, 4063, 3995, +0, 4063, 3849, +0, 4063, 3527, +0, 4095, 0, +0, 3584, 4076, +0, 3584, 4076, +0, 3585, 4076, +0, 3585, 4076, +0, 3585, 4076, +0, 3585, 4076, +0, 3586, 4076, +0, 3586, 4076, +0, 3587, 4076, +0, 3588, 4076, +0, 3590, 4076, +0, 3592, 4076, +0, 3594, 4076, +0, 3597, 4076, +0, 3602, 4075, +0, 3608, 4075, +0, 3616, 4075, +0, 3626, 4074, +0, 3640, 4073, +0, 3657, 4072, +0, 3679, 4071, +0, 3708, 4069, +0, 3743, 4066, +0, 3786, 4063, +0, 3838, 4058, +0, 3890, 4058, +0, 3952, 4058, +0, 4023, 4058, +0, 4058, 4008, +0, 4058, 3867, +0, 4058, 3562, +0, 4095, 0, +0, 3475, 4076, +0, 3475, 4076, +0, 3476, 4076, +0, 3476, 4076, +0, 3476, 4076, +0, 3477, 4076, +0, 3477, 4076, +0, 3478, 4076, +0, 3479, 4076, +0, 3480, 4076, +0, 3482, 4076, +0, 3485, 4076, +0, 3488, 4076, +0, 3492, 4076, +0, 3498, 4075, +0, 3505, 4075, +0, 3515, 4075, +0, 3528, 4074, +0, 3545, 4073, +0, 3566, 4072, +0, 3593, 4071, +0, 3627, 4069, +0, 3669, 4066, +0, 3719, 4063, +0, 3779, 4058, +2063, 3848, 4052, +2063, 3915, 4052, +2063, 3992, 4052, +2063, 4052, 4025, +2063, 4052, 3890, +2063, 4052, 3606, +0, 4095, 2266, +0, 3271, 4076, +0, 3272, 4076, +0, 3272, 4076, +0, 3272, 4076, +0, 3273, 4076, +0, 3273, 4076, +0, 3274, 4076, +0, 3276, 4076, +0, 3277, 4076, +0, 3279, 4076, +0, 3282, 4076, +0, 3286, 4076, +0, 3291, 4076, +0, 3297, 4076, +0, 3306, 4075, +0, 3318, 4075, +0, 3333, 4075, +0, 3351, 4074, +0, 3376, 4073, +0, 3407, 4072, +0, 3445, 4071, +0, 3491, 4069, +0, 3546, 4066, +0, 3611, 4063, +0, 3685, 4058, +2063, 3769, 4052, +2986, 3861, 4044, +2986, 3947, 4044, +2986, 4040, 4044, +2986, 4044, 3919, +2986, 4044, 3659, +2192, 4095, 2814, +0, 2626, 4076, +0, 2627, 4076, +0, 2628, 4076, +0, 2630, 4076, +0, 2632, 4076, +0, 2635, 4076, +0, 2639, 4076, +0, 2644, 4076, +0, 2650, 4076, +0, 2659, 4076, +0, 2670, 4076, +0, 2684, 4076, +0, 2703, 4076, +0, 2726, 4076, +0, 2756, 4075, +0, 2793, 4075, +0, 2839, 4075, +0, 2893, 4074, +0, 2957, 4073, +0, 3031, 4072, +0, 3113, 4071, +0, 3205, 4069, +0, 3303, 4066, +0, 3409, 4063, +0, 3520, 4058, +2063, 3636, 4052, +2986, 3755, 4044, +3336, 3878, 4032, +3336, 3986, 4032, +3336, 4032, 3955, +3336, 4032, 3720, +3121, 4095, 3118, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4075, +0, 0, 4075, +0, 0, 4075, +0, 0, 4074, +0, 0, 4073, +0, 0, 4072, +0, 0, 4071, +0, 0, 4069, +0, 1985, 4066, +0, 2781, 4063, +0, 3119, 4058, +2063, 3361, 4052, +2986, 3561, 4044, +3336, 3737, 4032, +3583, 3900, 4016, +3583, 4016, 3999, +3583, 4016, 3792, +3568, 4095, 3469, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4075, +0, 0, 4075, +0, 0, 4075, +0, 0, 4074, +0, 0, 4073, +0, 0, 4072, +0, 0, 4071, +0, 0, 4069, +0, 0, 4066, +0, 0, 4063, +2157, 0, 4058, +2689, 2063, 4052, +2986, 2987, 4044, +3336, 3435, 4032, +3583, 3711, 4016, +3784, 3928, 3994, +3784, 3994, 3873, +3844, 4095, 3714, +3401, 0, 4076, +3401, 0, 4076, +3401, 0, 4076, +3401, 0, 4076, +3401, 0, 4076, +3402, 0, 4076, +3402, 0, 4076, +3402, 0, 4076, +3403, 0, 4076, +3403, 0, 4076, +3404, 0, 4076, +3405, 0, 4076, +3407, 0, 4076, +3409, 0, 4076, +3411, 0, 4075, +3415, 0, 4075, +3419, 0, 4075, +3426, 0, 4074, +3434, 0, 4073, +3444, 0, 4072, +3458, 0, 4071, +3475, 0, 4069, +3498, 0, 4066, +3527, 0, 4063, +3562, 0, 4058, +3606, 2063, 4052, +3659, 2986, 4044, +3720, 3336, 4032, +3792, 3583, 4016, +3873, 3784, 3994, +3962, 3962, 3962, +4060, 4095, 3916, +3924, 0, 4095, +3924, 0, 4095, +3924, 0, 4095, +3924, 0, 4095, +3924, 0, 4095, +3925, 0, 4095, +3925, 0, 4095, +3925, 0, 4095, +3925, 0, 4095, +3925, 0, 4095, +3925, 0, 4095, +3926, 0, 4095, +3926, 0, 4095, +3927, 0, 4095, +3927, 0, 4095, +3929, 0, 4095, +3930, 0, 4095, +3932, 0, 4095, +3935, 0, 4095, +3938, 0, 4095, +3943, 0, 4095, +3949, 0, 4095, +3957, 0, 4095, +3968, 0, 4095, +3982, 0, 4095, +4000, 0, 4095, +4023, 2192, 4095, +4051, 3118, 4095, +4087, 3469, 4095, +4095, 3714, 4095, +4095, 3916, 4060, +4095, 4005, 3916, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3946, 4095, +0, 3948, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3978, 4095, +0, 3990, 4095, +0, 4007, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3924, +0, 4095, 3533, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3946, 4095, +0, 3948, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3978, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3924, +0, 4095, 3533, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3945, 4095, +0, 3948, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3978, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3924, +0, 4095, 3533, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3945, 4095, +0, 3948, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3978, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3924, +0, 4095, 3534, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3945, 4095, +0, 3948, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3977, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3924, +0, 4095, 3534, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3945, 4095, +0, 3948, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3977, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3925, +0, 4095, 3534, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3943, 4095, +0, 3945, 4095, +0, 3947, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3977, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3925, +0, 4095, 3534, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3943, 4095, +0, 3945, 4095, +0, 3947, 4095, +0, 3950, 4095, +0, 3955, 4095, +0, 3960, 4095, +0, 3968, 4095, +0, 3977, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4053, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3925, +0, 4095, 3534, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3943, 4095, +0, 3945, 4095, +0, 3947, 4095, +0, 3950, 4095, +0, 3954, 4095, +0, 3960, 4095, +0, 3967, 4095, +0, 3977, 4095, +0, 3989, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4053, 4095, +0, 4086, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3925, +0, 4095, 3534, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3943, 4095, +0, 3944, 4095, +0, 3947, 4095, +0, 3950, 4095, +0, 3954, 4095, +0, 3960, 4095, +0, 3967, 4095, +0, 3977, 4095, +0, 3989, 4095, +0, 4005, 4095, +0, 4026, 4095, +0, 4053, 4095, +0, 4086, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4088, +0, 4095, 3925, +0, 4095, 3535, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3946, 4095, +0, 3950, 4095, +0, 3954, 4095, +0, 3959, 4095, +0, 3967, 4095, +0, 3976, 4095, +0, 3989, 4095, +0, 4005, 4095, +0, 4026, 4095, +0, 4053, 4095, +0, 4086, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4088, +0, 4095, 3925, +0, 4095, 3536, +0, 3936, 4095, +0, 3936, 4095, +0, 3936, 4095, +0, 3936, 4095, +0, 3936, 4095, +0, 3936, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3943, 4095, +0, 3946, 4095, +0, 3949, 4095, +0, 3953, 4095, +0, 3959, 4095, +0, 3966, 4095, +0, 3976, 4095, +0, 3988, 4095, +0, 4005, 4095, +0, 4026, 4095, +0, 4052, 4095, +0, 4085, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4088, +0, 4095, 3926, +0, 4095, 3537, +0, 3935, 4095, +0, 3935, 4095, +0, 3935, 4095, +0, 3935, 4095, +0, 3935, 4095, +0, 3935, 4095, +0, 3935, 4095, +0, 3936, 4095, +0, 3936, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3945, 4095, +0, 3948, 4095, +0, 3952, 4095, +0, 3958, 4095, +0, 3965, 4095, +0, 3975, 4095, +0, 3988, 4095, +0, 4004, 4095, +0, 4025, 4095, +0, 4051, 4095, +0, 4085, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4088, +0, 4095, 3926, +0, 4095, 3538, +0, 3933, 4095, +0, 3933, 4095, +0, 3933, 4095, +0, 3933, 4095, +0, 3934, 4095, +0, 3934, 4095, +0, 3934, 4095, +0, 3934, 4095, +0, 3935, 4095, +0, 3935, 4095, +0, 3936, 4095, +0, 3937, 4095, +0, 3938, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3944, 4095, +0, 3947, 4095, +0, 3951, 4095, +0, 3957, 4095, +0, 3964, 4095, +0, 3974, 4095, +0, 3986, 4095, +0, 4003, 4095, +0, 4024, 4095, +0, 4051, 4095, +0, 4084, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4089, +0, 4095, 3927, +0, 4095, 3539, +0, 3932, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3933, 4095, +0, 3933, 4095, +0, 3934, 4095, +0, 3935, 4095, +0, 3936, 4095, +0, 3938, 4095, +0, 3940, 4095, +0, 3942, 4095, +0, 3945, 4095, +0, 3950, 4095, +0, 3955, 4095, +0, 3963, 4095, +0, 3972, 4095, +0, 3985, 4095, +0, 4002, 4095, +0, 4023, 4095, +0, 4049, 4095, +0, 4083, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4089, +0, 4095, 3927, +0, 4095, 3541, +0, 3929, 4095, +0, 3929, 4095, +0, 3929, 4095, +0, 3929, 4095, +0, 3929, 4095, +0, 3929, 4095, +0, 3930, 4095, +0, 3930, 4095, +0, 3930, 4095, +0, 3931, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3934, 4095, +0, 3935, 4095, +0, 3937, 4095, +0, 3940, 4095, +0, 3944, 4095, +0, 3948, 4095, +0, 3953, 4095, +0, 3961, 4095, +0, 3971, 4095, +0, 3983, 4095, +0, 4000, 4095, +0, 4021, 4095, +0, 4048, 4095, +0, 4082, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4090, +0, 4095, 3929, +0, 4095, 3544, +0, 3926, 4095, +0, 3926, 4095, +0, 3926, 4095, +0, 3926, 4095, +0, 3926, 4095, +0, 3926, 4095, +0, 3927, 4095, +0, 3927, 4095, +0, 3927, 4095, +0, 3927, 4095, +0, 3928, 4095, +0, 3929, 4095, +0, 3930, 4095, +0, 3932, 4095, +0, 3934, 4095, +0, 3937, 4095, +0, 3941, 4095, +0, 3945, 4095, +0, 3951, 4095, +0, 3959, 4095, +0, 3968, 4095, +0, 3981, 4095, +0, 3998, 4095, +0, 4019, 4095, +0, 4046, 4095, +0, 4080, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4091, +0, 4095, 3930, +0, 4095, 3547, +0, 3921, 4095, +0, 3921, 4095, +0, 3921, 4095, +0, 3921, 4095, +0, 3921, 4095, +0, 3922, 4095, +0, 3922, 4095, +0, 3922, 4095, +0, 3923, 4095, +0, 3923, 4095, +0, 3924, 4095, +0, 3925, 4095, +0, 3926, 4095, +0, 3927, 4095, +0, 3930, 4095, +0, 3933, 4095, +0, 3937, 4095, +0, 3942, 4095, +0, 3947, 4095, +0, 3955, 4095, +0, 3965, 4095, +0, 3978, 4095, +0, 3994, 4095, +0, 4016, 4095, +0, 4043, 4095, +0, 4077, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4092, +0, 4095, 3932, +0, 4095, 3552, +0, 3915, 4095, +0, 3915, 4095, +0, 3915, 4095, +0, 3915, 4095, +0, 3915, 4095, +0, 3916, 4095, +0, 3916, 4095, +0, 3916, 4095, +0, 3917, 4095, +0, 3917, 4095, +0, 3918, 4095, +0, 3919, 4095, +0, 3920, 4095, +0, 3922, 4095, +0, 3924, 4095, +0, 3927, 4095, +0, 3931, 4095, +0, 3936, 4095, +0, 3943, 4095, +0, 3950, 4095, +0, 3961, 4095, +0, 3974, 4095, +0, 3990, 4095, +0, 4012, 4095, +0, 4039, 4095, +0, 4073, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4094, +0, 4095, 3935, +0, 4095, 3558, +0, 3907, 4095, +0, 3907, 4095, +0, 3907, 4095, +0, 3907, 4095, +0, 3907, 4095, +0, 3908, 4095, +0, 3908, 4095, +0, 3908, 4095, +0, 3908, 4095, +0, 3909, 4095, +0, 3910, 4095, +0, 3910, 4095, +0, 3912, 4095, +0, 3913, 4095, +0, 3916, 4095, +0, 3919, 4095, +0, 3923, 4095, +0, 3928, 4095, +0, 3935, 4095, +0, 3944, 4095, +0, 3954, 4095, +0, 3968, 4095, +0, 3984, 4095, +0, 4006, 4095, +0, 4034, 4095, +0, 4069, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 3938, +0, 4095, 3566, +0, 3896, 4095, +0, 3896, 4095, +0, 3896, 4095, +0, 3896, 4095, +0, 3896, 4095, +0, 3896, 4095, +0, 3896, 4095, +0, 3897, 4095, +0, 3897, 4095, +0, 3898, 4095, +0, 3898, 4095, +0, 3899, 4095, +0, 3901, 4095, +0, 3903, 4095, +0, 3905, 4095, +0, 3908, 4095, +0, 3912, 4095, +0, 3917, 4095, +0, 3924, 4095, +0, 3934, 4095, +0, 3946, 4095, +0, 3960, 4095, +0, 3977, 4095, +0, 3999, 4095, +0, 4027, 4095, +0, 4062, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 3943, +0, 4095, 3576, +0, 3880, 4095, +0, 3880, 4095, +0, 3880, 4095, +0, 3880, 4095, +0, 3880, 4095, +0, 3881, 4095, +0, 3881, 4095, +0, 3881, 4095, +0, 3881, 4095, +0, 3882, 4095, +0, 3883, 4095, +0, 3884, 4095, +0, 3885, 4095, +0, 3887, 4095, +0, 3889, 4095, +0, 3893, 4095, +0, 3897, 4095, +0, 3903, 4095, +0, 3910, 4095, +0, 3920, 4095, +0, 3932, 4095, +0, 3949, 4095, +0, 3966, 4095, +0, 3989, 4095, +0, 4018, 4095, +0, 4054, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 3949, +0, 4095, 3590, +0, 3859, 4095, +0, 3859, 4095, +0, 3859, 4095, +0, 3859, 4095, +0, 3859, 4095, +0, 3859, 4095, +0, 3859, 4095, +0, 3860, 4095, +0, 3860, 4095, +0, 3861, 4095, +0, 3862, 4095, +0, 3863, 4095, +0, 3864, 4095, +0, 3866, 4095, +0, 3868, 4095, +0, 3872, 4095, +0, 3876, 4095, +0, 3882, 4095, +0, 3890, 4095, +0, 3900, 4095, +0, 3913, 4095, +0, 3930, 4095, +0, 3952, 4095, +0, 3976, 4095, +0, 4005, 4095, +0, 4042, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 3957, +0, 4095, 3608, +0, 3828, 4095, +0, 3828, 4095, +0, 3828, 4095, +0, 3828, 4095, +0, 3828, 4095, +0, 3829, 4095, +0, 3829, 4095, +0, 3829, 4095, +0, 3830, 4095, +0, 3830, 4095, +0, 3831, 4095, +0, 3832, 4095, +0, 3834, 4095, +0, 3836, 4095, +0, 3838, 4095, +0, 3842, 4095, +0, 3847, 4095, +0, 3853, 4095, +0, 3861, 4095, +0, 3872, 4095, +0, 3886, 4095, +0, 3904, 4095, +0, 3927, 4095, +0, 3956, 4095, +0, 3987, 4095, +0, 4025, 4095, +0, 4072, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 3968, +0, 4095, 3630, +0, 3784, 4095, +0, 3784, 4095, +0, 3784, 4095, +0, 3784, 4095, +0, 3784, 4095, +0, 3784, 4095, +0, 3784, 4095, +0, 3785, 4095, +0, 3786, 4095, +0, 3786, 4095, +0, 3787, 4095, +0, 3788, 4095, +0, 3790, 4095, +0, 3792, 4095, +0, 3795, 4095, +0, 3799, 4095, +0, 3804, 4095, +0, 3811, 4095, +0, 3820, 4095, +0, 3832, 4095, +0, 3847, 4095, +0, 3867, 4095, +0, 3892, 4095, +0, 3923, 4095, +0, 3962, 4095, +0, 4002, 4095, +0, 4051, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 3982, +0, 4095, 3659, +0, 3716, 4095, +0, 3717, 4095, +0, 3717, 4095, +0, 3717, 4095, +0, 3717, 4095, +0, 3717, 4095, +0, 3718, 4095, +0, 3718, 4095, +0, 3719, 4095, +0, 3720, 4095, +0, 3721, 4095, +0, 3722, 4095, +0, 3724, 4095, +0, 3727, 4095, +0, 3730, 4095, +0, 3735, 4095, +0, 3741, 4095, +0, 3748, 4095, +0, 3759, 4095, +0, 3772, 4095, +0, 3790, 4095, +0, 3812, 4095, +0, 3840, 4095, +0, 3875, 4095, +0, 3918, 4095, +0, 3970, 4095, +0, 4022, 4095, +0, 4084, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4000, +0, 4095, 3695, +0, 3608, 4095, +0, 3608, 4095, +0, 3608, 4095, +0, 3608, 4095, +0, 3608, 4095, +0, 3609, 4095, +0, 3609, 4095, +0, 3610, 4095, +0, 3611, 4095, +0, 3612, 4095, +0, 3613, 4095, +0, 3615, 4095, +0, 3617, 4095, +0, 3621, 4095, +0, 3625, 4095, +0, 3630, 4095, +0, 3638, 4095, +0, 3648, 4095, +0, 3661, 4095, +0, 3677, 4095, +0, 3699, 4095, +0, 3726, 4095, +0, 3759, 4095, +0, 3801, 4095, +0, 3851, 4095, +0, 3911, 4095, +2192, 3980, 4095, +2192, 4047, 4095, +2192, 4095, 4095, +2192, 4095, 4095, +2192, 4095, 4023, +2192, 4095, 3738, +0, 3404, 4095, +0, 3404, 4095, +0, 3404, 4095, +0, 3405, 4095, +0, 3405, 4095, +0, 3405, 4095, +0, 3406, 4095, +0, 3407, 4095, +0, 3408, 4095, +0, 3410, 4095, +0, 3412, 4095, +0, 3415, 4095, +0, 3419, 4095, +0, 3424, 4095, +0, 3430, 4095, +0, 3439, 4095, +0, 3450, 4095, +0, 3465, 4095, +0, 3484, 4095, +0, 3509, 4095, +0, 3539, 4095, +0, 3577, 4095, +0, 3623, 4095, +0, 3679, 4095, +0, 3743, 4095, +0, 3818, 4095, +2192, 3901, 4095, +3118, 3993, 4095, +3118, 4079, 4095, +3118, 4095, 4095, +3118, 4095, 4051, +3118, 4095, 3791, +0, 2761, 4095, +0, 2762, 4095, +0, 2762, 4095, +0, 2764, 4095, +0, 2765, 4095, +0, 2767, 4095, +0, 2770, 4095, +0, 2773, 4095, +0, 2778, 4095, +0, 2785, 4095, +0, 2793, 4095, +0, 2804, 4095, +0, 2818, 4095, +0, 2837, 4095, +0, 2861, 4095, +0, 2890, 4095, +0, 2927, 4095, +0, 2973, 4095, +0, 3027, 4095, +0, 3090, 4095, +0, 3164, 4095, +0, 3246, 4095, +0, 3337, 4095, +0, 3436, 4095, +0, 3541, 4095, +0, 3653, 4095, +2192, 3768, 4095, +3118, 3888, 4095, +3469, 4010, 4095, +3469, 4095, 4095, +3469, 4095, 4087, +3469, 4095, 3853, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 2137, 4095, +0, 2915, 4095, +0, 3253, 4095, +2192, 3494, 4095, +3118, 3693, 4095, +3469, 3869, 4095, +3714, 4032, 4095, +3714, 4095, 4095, +3714, 4095, 3924, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +2266, 0, 4095, +2814, 2192, 4095, +3118, 3121, 4095, +3469, 3568, 4095, +3714, 3844, 4095, +3916, 4060, 4095, +3916, 4095, 4005, +3533, 0, 4095, +3533, 0, 4095, +3533, 0, 4095, +3534, 0, 4095, +3534, 0, 4095, +3534, 0, 4095, +3534, 0, 4095, +3534, 0, 4095, +3534, 0, 4095, +3535, 0, 4095, +3536, 0, 4095, +3537, 0, 4095, +3538, 0, 4095, +3539, 0, 4095, +3541, 0, 4095, +3544, 0, 4095, +3547, 0, 4095, +3552, 0, 4095, +3558, 0, 4095, +3566, 0, 4095, +3576, 0, 4095, +3590, 0, 4095, +3608, 0, 4095, +3630, 0, 4095, +3659, 0, 4095, +3695, 0, 4095, +3738, 2192, 4095, +3791, 3118, 4095, +3853, 3469, 4095, +3924, 3714, 4095, +4005, 3916, 4095, +4095, 4095, 4095] + } +} \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/BicubicPcfFilters.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/BicubicPcfFilters.azsli index 37e8634543..65cbeb5874 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/BicubicPcfFilters.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/BicubicPcfFilters.azsli @@ -8,6 +8,8 @@ #pragma once +#include "ReceiverPlaneDepthBias.azsli" + // Pcf filtering taken from legacy Cry/Lumberyard ShadowCommon.cfi. // // Approximate an expensive but smooth bicubic filter by taking multiple bilinear samples and then weighting the samples appropriately. @@ -28,8 +30,12 @@ struct SampleShadowMapBicubicParameters float invShadowMapSize; SamplerComparisonState samplerState; float comparisonValue; + + // Optionally pass in a non-zero value into the receiverPlaneDepthBias to reduce shadow acne with large Pcf kernels + float2 receiverPlaneDepthBias; }; + float SampleShadowMapBicubic_4Tap(SampleShadowMapBicubicParameters param) { // Compute the shadow map UV and fractionals. @@ -47,13 +53,19 @@ float SampleShadowMapBicubic_4Tap(SampleShadowMapBicubicParameters param) float2 uv1 = (fractionalUV / weights1) + 1.0; // Accumulate the shadow results and return the resolve value. - float shadow; + float shadow = 0; + + const float2 uvOffsets[4] = {float2(uv0.x, uv0.y), float2(uv1.x, uv0.y), float2(uv0.x, uv1.y), float2(uv1.x, uv1.y)}; + const float weights[4] = {weights0.x * weights0.y, weights1.x * weights0.y, weights0.x * weights1.y, weights1.x * weights1.y}; + + [unroll] + for(int i = 0 ; i < 4; ++i) + { + const float2 texCoordOffset = uvOffsets[i] * param.invShadowMapSize; + const float fragmentDistance = param.comparisonValue + ApplyReceiverPlaneDepthBias(param.receiverPlaneDepthBias, texCoordOffset); + shadow += weights[i] * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + texCoordOffset, param.shadowPos.z), fragmentDistance); + } - shadow = weights0.x * weights0.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv0.x, uv0.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights1.x * weights0.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv1.x, uv0.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights0.x * weights1.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv0.x, uv1.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights1.x * weights1.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv1.x, uv1.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow /= 16.0; return shadow * shadow; } @@ -80,20 +92,26 @@ float SampleShadowMapBicubic_9Tap(SampleShadowMapBicubicParameters param) float2 uv1 = (3.0 + fractionalUV) / weights1; float2 uv2 = (fractionalUV / weights2) + 2.0; + + const float2 uvOffsets[9] = {float2(uv0.x, uv0.y), float2(uv1.x, uv0.y), float2(uv2.x, uv0.y), + float2(uv0.x, uv1.y), float2(uv1.x, uv1.y), float2(uv2.x, uv1.y), + float2(uv0.x, uv2.y), float2(uv1.x, uv2.y), float2(uv2.x, uv2.y) }; + + const float weights[9] = {weights0.x * weights0.y, weights1.x * weights0.y, weights2.x * weights0.y, + weights0.x * weights1.y, weights1.x * weights1.y, weights2.x * weights1.y, + weights0.x * weights2.y, weights1.x * weights2.y, weights2.x * weights2.y}; + // Accumulate the shadow results and return the resolve value. - float shadowResult; - - shadowResult = weights0.x * weights0.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv0.x, uv0.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadowResult += weights1.x * weights0.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv1.x, uv0.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadowResult += weights2.x * weights0.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv2.x, uv0.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); + float shadowResult = 0; - shadowResult += weights0.x * weights1.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv0.x, uv1.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadowResult += weights1.x * weights1.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv1.x, uv1.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadowResult += weights2.x * weights1.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv2.x, uv1.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - - shadowResult += weights0.x * weights2.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv0.x, uv2.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadowResult += weights1.x * weights2.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv1.x, uv2.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadowResult += weights2.x * weights2.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv2.x, uv2.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); + [unroll] + for(int i = 0 ; i < 9 ; ++i) + { + const float2 texCoordOffset = uvOffsets[i] * param.invShadowMapSize; + const float fragmentDistance = param.comparisonValue + ApplyReceiverPlaneDepthBias(param.receiverPlaneDepthBias, texCoordOffset); + + shadowResult += weights[i] * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + texCoordOffset, param.shadowPos.z), fragmentDistance); + } shadowResult /= 144.0; return shadowResult * shadowResult; @@ -123,28 +141,27 @@ float SampleShadowMapBicubic_16Tap(SampleShadowMapBicubicParameters param) float2 uv2 = -((7.0 * fractionalUV + 5.0) / weights2) + 1.0; float2 uv3 = -(fractionalUV / weights3) + 3.0; - // Accumulate the shadow results and return the resolve value. - float shadow; + const float2 uvOffsets[16] = {float2(uv0.x, uv0.y), float2(uv1.x, uv0.y), float2(uv2.x, uv0.y), float2(uv3.x, uv0.y), + float2(uv0.x, uv1.y), float2(uv1.x, uv1.y), float2(uv2.x, uv1.y), float2(uv3.x, uv1.y), + float2(uv0.x, uv2.y), float2(uv1.x, uv2.y), float2(uv2.x, uv2.y), float2(uv3.x, uv2.y), + float2(uv0.x, uv3.y), float2(uv1.x, uv3.y), float2(uv2.x, uv3.y), float2(uv3.x, uv3.y)}; - shadow = weights0.x * weights0.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv0.x, uv0.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights1.x * weights0.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv1.x, uv0.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights2.x * weights0.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv2.x, uv0.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights3.x * weights0.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv3.x, uv0.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); + const float weights[16] = {weights0.x * weights0.y, weights1.x * weights0.y, weights2.x * weights0.y, weights3.x * weights0.y, + weights0.x * weights1.y, weights1.x * weights1.y, weights2.x * weights1.y, weights3.x * weights1.y, + weights0.x * weights2.y, weights1.x * weights2.y, weights2.x * weights2.y, weights3.x * weights2.y, + weights0.x * weights3.y, weights1.x * weights3.y, weights2.x * weights3.y, weights3.x * weights3.y}; - shadow += weights0.x * weights1.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv0.x, uv1.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights1.x * weights1.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv1.x, uv1.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights2.x * weights1.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv2.x, uv1.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights3.x * weights1.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv3.x, uv1.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); + // Accumulate the shadow results and return the resolve value. + float shadow = 0; - shadow += weights0.x * weights2.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv0.x, uv2.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights1.x * weights2.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv1.x, uv2.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights2.x * weights2.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv2.x, uv2.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights3.x * weights2.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv3.x, uv2.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); + [unroll] + for(int i = 0 ; i < 16 ; ++i) + { + const float2 texCoordOffset = uvOffsets[i] * param.invShadowMapSize; + const float fragmentDistance = param.comparisonValue + ApplyReceiverPlaneDepthBias(param.receiverPlaneDepthBias, texCoordOffset); - shadow += weights0.x * weights3.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv0.x, uv3.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights1.x * weights3.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv1.x, uv3.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights2.x * weights3.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv2.x, uv3.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); - shadow += weights3.x * weights3.y * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + float2(uv3.x, uv3.y) * param.invShadowMapSize, param.shadowPos.z), param.comparisonValue); + shadow += weights[i] * param.shadowMap.SampleCmpLevelZero(param.samplerState, float3(texelCenter + texCoordOffset, param.shadowPos.z), fragmentDistance); + } shadow /= 2704; return shadow * shadow; diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/DirectionalLightShadow.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/DirectionalLightShadow.azsli index 8b3eedf2aa..8df13bd19a 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/DirectionalLightShadow.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/DirectionalLightShadow.azsli @@ -14,6 +14,7 @@ #include "Shadow.azsli" #include "ShadowmapAtlasLib.azsli" #include "BicubicPcfFilters.azsli" +#include "ReceiverPlaneDepthBias.azsli" // Before including this azsli file, a PassSrg must be defined with the following members: // Texture2DArray m_directionalLightShadowmap; @@ -23,6 +24,7 @@ // This matchs ShadowFilterMethod in ShadowConstants.h enum class ShadowFilterMethod {None, Pcf, Esm, EsmPcf}; option ShadowFilterMethod o_directional_shadow_filtering_method = ShadowFilterMethod::None; +option bool o_directional_shadow_receiver_plane_bias_enable = true; // DirectionalLightShadow calculates lit ratio for a directional light. class DirectionalLightShadow @@ -107,6 +109,8 @@ class DirectionalLightShadow float m_slopeBias[ViewSrg::MaxCascadeCount]; float3 m_normalVector; DebugInfo m_debugInfo; + float3 m_shadowPosDX[ViewSrg::MaxCascadeCount]; + float3 m_shadowPosDY[ViewSrg::MaxCascadeCount]; }; // This outputs the coordinate in shadowmap Texture space of the given point. @@ -438,6 +442,7 @@ float DirectionalLightShadow::SamplePcfBicubic(float3 shadowCoord, uint indexOfC { const uint filteringSampleCount = ViewSrg::m_directionalLightShadows[m_lightIndex].m_filteringSampleCount; const uint size = ViewSrg::m_directionalLightShadows[m_lightIndex].m_shadowmapSize; + const uint cascadeCount = ViewSrg::m_directionalLightShadows[m_lightIndex].m_cascadeCount; Texture2DArray shadowmap = PassSrg::m_directionalLightShadowmap; @@ -448,7 +453,8 @@ float DirectionalLightShadow::SamplePcfBicubic(float3 shadowCoord, uint indexOfC param.invShadowMapSize = rcp(size); param.comparisonValue = shadowCoord.z; param.samplerState = SceneSrg::m_hwPcfSampler; - + param.receiverPlaneDepthBias = o_directional_shadow_receiver_plane_bias_enable ? ComputeReceiverPlaneDepthBias(m_shadowPosDX[indexOfCascade], m_shadowPosDY[indexOfCascade]) : 0; + if (filteringSampleCount <= 4) { return SampleShadowMapBicubic_4Tap(param); @@ -476,6 +482,16 @@ float DirectionalLightShadow::GetVisibility( shadow.m_debugInfo.m_cascadeIndex = 0; shadow.m_debugInfo.m_usePcfFallback = false; + if (o_directional_shadow_receiver_plane_bias_enable) + { + [unroll] + for(int i = 0 ; i < ViewSrg::MaxCascadeCount ; ++i) + { + shadow.m_shadowPosDX[i] = ddx_fine(shadowCoords[i]); + shadow.m_shadowPosDY[i] = ddy_fine(shadowCoords[i]); + } + } + // Calculate slope bias const float3 lightDirection = normalize(SceneSrg::m_directionalLights[lightIndex].m_direction); diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/ReceiverPlaneDepthBias.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/ReceiverPlaneDepthBias.azsli new file mode 100644 index 0000000000..6225bb3434 --- /dev/null +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/ReceiverPlaneDepthBias.azsli @@ -0,0 +1,38 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +// Use ddx/ddy to attempt to predict the slope of the receiver plane (the triangle we are shading) and adjust the pcf comparision depth accordingly +// See Section 20.5 Large Pcf Kernels in "Introduction to 3D Game Programming with DirectX 12" for a good explanation and diagrams of the problem +// Solution from: +// https://web.archive.org/web/20120220010450/http://developer.amd.com/media/gpu_assets/Isidoro-ShadowMapping.pdf +// Another implementation example: https://github.com/TheRealMJP/Shadows +float2 ComputeReceiverPlaneDepthBias(float3 projCoordsDDX, float3 projCoordsDDY) +{ + const float invDet = 1.0f / ((projCoordsDDX.x * projCoordsDDY.y) - (projCoordsDDX.y * projCoordsDDY.x)); + + float2 receiverPlaneDepthBias; + + receiverPlaneDepthBias.x = projCoordsDDY.y * projCoordsDDX.z - projCoordsDDX.y * projCoordsDDY.z; + receiverPlaneDepthBias.y = projCoordsDDX.x * projCoordsDDY.z - projCoordsDDY.x * projCoordsDDX.z; + receiverPlaneDepthBias *= invDet; + + return receiverPlaneDepthBias; +} + +// For each sample in the Pcf kernel, offset the z comparison depth value by the amount returned by this function. +// receiverPlaneDepthBias should be the input from ComputeReceiverPlaneDepthBias() +float ApplyReceiverPlaneDepthBias(const float2 receiverPlaneDepthBias, const float2 texCoordOffset) +{ + float fragmentDepthBias = dot(receiverPlaneDepthBias, texCoordOffset); + // Because ddx/ddy can only give us a very rough approximation of the underlying surface, we might introduce acne by biasing away from the camera. + // Clamping this will remove this effect + fragmentDepthBias = min(fragmentDepthBias, 0.0); + return fragmentDepthBias; +} \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBlendDistance.precompiledshader b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBlendDistance.precompiledshader index 0322f750a4..be1d87ff3e 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBlendDistance.precompiledshader +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBlendDistance.precompiledshader @@ -7,7 +7,7 @@ "ShaderAssetFileName": "diffuseprobegridblenddistance.azshader", "PlatformIdentifiers": [ - "pc" + "pc", "linux" ], "RootShaderVariantAssets": [ diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBlendIrradiance.precompiledshader b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBlendIrradiance.precompiledshader index f6b19e6f5b..92fb12d5cc 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBlendIrradiance.precompiledshader +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBlendIrradiance.precompiledshader @@ -7,7 +7,7 @@ "ShaderAssetFileName": "diffuseprobegridblendirradiance.azshader", "PlatformIdentifiers": [ - "pc" + "pc", "linux" ], "RootShaderVariantAssets": [ diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdateColumn.precompiledshader b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdateColumn.precompiledshader index e9ab96b088..8de77320f0 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdateColumn.precompiledshader +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdateColumn.precompiledshader @@ -7,7 +7,7 @@ "ShaderAssetFileName": "diffuseprobegridborderupdatecolumn.azshader", "PlatformIdentifiers": [ - "pc" + "pc", "linux" ], "RootShaderVariantAssets": [ diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdateRow.precompiledshader b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdateRow.precompiledshader index bbfd19ce48..274dae91af 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdateRow.precompiledshader +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdateRow.precompiledshader @@ -7,7 +7,7 @@ "ShaderAssetFileName": "diffuseprobegridborderupdaterow.azshader", "PlatformIdentifiers": [ - "pc" + "pc", "linux" ], "RootShaderVariantAssets": [ diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridClassification.precompiledshader b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridClassification.precompiledshader index 75fbd1d7a3..85f75e6364 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridClassification.precompiledshader +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridClassification.precompiledshader @@ -7,7 +7,7 @@ "ShaderAssetFileName": "diffuseprobegridclassification.azshader", "PlatformIdentifiers": [ - "pc" + "pc", "linux" ], "RootShaderVariantAssets": [ diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRayTracing.precompiledshader b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRayTracing.precompiledshader index a9f75bff7d..88aa115b63 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRayTracing.precompiledshader +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRayTracing.precompiledshader @@ -7,7 +7,7 @@ "ShaderAssetFileName": "diffuseprobegridraytracing.azshader", "PlatformIdentifiers": [ - "pc" + "pc", "linux" ], "RootShaderVariantAssets": [ diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingClosestHit.precompiledshader b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingClosestHit.precompiledshader index 15fb9ecf52..948fc793ab 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingClosestHit.precompiledshader +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingClosestHit.precompiledshader @@ -7,7 +7,7 @@ "ShaderAssetFileName": "diffuseprobegridraytracingclosesthit.azshader", "PlatformIdentifiers": [ - "pc" + "pc", "linux" ], "RootShaderVariantAssets": [ diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingMiss.precompiledshader b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingMiss.precompiledshader index 38bb7e3de0..dec0e244b1 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingMiss.precompiledshader +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingMiss.precompiledshader @@ -7,7 +7,7 @@ "ShaderAssetFileName": "diffuseprobegridraytracingmiss.azshader", "PlatformIdentifiers": [ - "pc" + "pc", "linux" ], "RootShaderVariantAssets": [ diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRelocation.precompiledshader b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRelocation.precompiledshader index 3517cd7955..e09a29a7e8 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRelocation.precompiledshader +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRelocation.precompiledshader @@ -7,7 +7,7 @@ "ShaderAssetFileName": "diffuseprobegridrelocation.azshader", "PlatformIdentifiers": [ - "pc" + "pc", "linux" ], "RootShaderVariantAssets": [ diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRender.precompiledshader b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRender.precompiledshader index 29f9476ceb..279deaaa29 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRender.precompiledshader +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridRender.precompiledshader @@ -7,7 +7,7 @@ "ShaderAssetFileName": "diffuseprobegridrender.azshader", "PlatformIdentifiers": [ - "pc" + "pc", "linux" ], "RootShaderVariantAssets": [ diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/Taa.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/Taa.azsl index 2fb0b622ed..43c59cd62d 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/Taa.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/Taa.azsl @@ -99,11 +99,23 @@ float3 YCoCgToRgb(float3 yCoCg) // This function samples a 4x4 neighborhood around the uv. By taking advantage of bilinear filtering this can be // done with only 9 taps on the edges between pixels. The cost is further reduced by dropping the 4 diagonal // samples as their influence is negligible. -float4 SampleCatmullRom5Tap(Texture2D texture, SamplerState linearSampler, float2 uv, float2 textureSize, float2 rcpTextureSize, float sharpness) +float3 SampleCatmullRom5Tap(Texture2D texture, SamplerState linearSampler, float2 uv, float2 textureSize, float2 rcpTextureSize, float sharpness) { // Think of sample locations in the 4x4 neighborhood as having a top left coordinate of 0,0 and // a bottom right coordinate of 3,3. + // Due to Catmull-Rom's use of negative weights, it's possible to have a very high value + // neighbor sample that turns into a large negative value when multiplied by its weight. + // This can completely overwhelm the final result leading to negative output. To fix this, + // use the local area green value as a measurement of luminance, and tweak the sharpness + // based on the difference between the max and min values. This will reduce the contribution + // of negative weights in high contrast areas and help prevent ringing artifacts. + float4 gatheredGreen = texture.GatherGreen(linearSampler, uv, int2(0, 0)); + float minGreen = min(gatheredGreen.x, min(gatheredGreen.y, min(gatheredGreen.z, gatheredGreen.w))); + float maxGreen = max(gatheredGreen.x, max(gatheredGreen.y, max(gatheredGreen.z, gatheredGreen.w))); + float diff = maxGreen - minGreen; + sharpness = sharpness / (diff + 1.0); + // Find the position in texture space then round it to get the center of the 1,1 pixel (tc1) float2 texelPos = uv * textureSize; float2 tc1= floor(texelPos - 0.5) + 0.5; @@ -117,7 +129,6 @@ float4 SampleCatmullRom5Tap(Texture2D texture, SamplerState linearSample float2 w1 = 1.0 + f * f * (c -3.0 + (2.0 - c) * f); float2 w2 = f * (c + f * ((3.0 - 2.0 * c) - (2.0 - c) * f)); float2 w3 = f * f * (c * f - c); - float2 w12 = w1 + w2; // Compute uv coordinates for sampling the texture @@ -135,12 +146,12 @@ float4 SampleCatmullRom5Tap(Texture2D texture, SamplerState linearSample // total weight of samples to normalize result. float totalWeight = sw0 + sw1 + sw2 + sw3 + sw4; - float4 result = 0.0f; - result += texture.SampleLevel(linearSampler, float2(tc12.x, tc0.y), 0.0) * sw0; - result += texture.SampleLevel(linearSampler, float2( tc0.x, tc12.y), 0.0) * sw1; - result += texture.SampleLevel(linearSampler, float2(tc12.x, tc12.y), 0.0) * sw2; - result += texture.SampleLevel(linearSampler, float2( tc3.x, tc12.y), 0.0) * sw3; - result += texture.SampleLevel(linearSampler, float2(tc12.x, tc3.y), 0.0) * sw4; + float3 result = 0.0; + result += texture.SampleLevel(linearSampler, float2(tc12.x, tc0.y), 0.0).rgb * sw0; + result += texture.SampleLevel(linearSampler, float2( tc0.x, tc12.y), 0.0).rgb * sw1; + result += texture.SampleLevel(linearSampler, float2(tc12.x, tc12.y), 0.0).rgb * sw2; + result += texture.SampleLevel(linearSampler, float2( tc3.x, tc12.y), 0.0).rgb * sw3; + result += texture.SampleLevel(linearSampler, float2(tc12.x, tc3.y), 0.0).rgb * sw4; return result / totalWeight; } @@ -217,7 +228,7 @@ void MainCS( float2 previousPositionOffsetInPixels = float2(PassSrg::m_constantData.m_inputColorSize) * previousPositionOffset; // Sample the last frame using a 5-tap Catmull-Rom - float3 lastFrameColor = SampleCatmullRom5Tap(PassSrg::m_lastFrameAccumulation, PassSrg::LinearSampler, uvOld, PassSrg::m_constantData.m_inputColorSize, PassSrg::m_constantData.m_inputColorRcpSize, 0.5).rgb; + float3 lastFrameColor = SampleCatmullRom5Tap(PassSrg::m_lastFrameAccumulation, PassSrg::LinearSampler, uvOld, PassSrg::m_constantData.m_inputColorSize, PassSrg::m_constantData.m_inputColorRcpSize, 0.5); lastFrameColor = RgbToYCoCg(lastFrameColor); // Last frame color relative to mean @@ -250,8 +261,8 @@ void MainCS( // Blend should be in perceptual space, so tonemap first float luminance = GetLuminance(thisFrameColor); - thisFrameColor = thisFrameColor / (1 + luminance); - lastFrameClampedColor = lastFrameClampedColor / (1 + luminance); + thisFrameColor = thisFrameColor / (1.0 + luminance); + lastFrameClampedColor = lastFrameClampedColor / (1.0 + luminance); // Blend color with history float3 color = lerp(lastFrameClampedColor, thisFrameColor, currentFrameWeight); diff --git a/Gems/Atom/Feature/Common/Assets/Textures/PostProcessing/AreaTex.dds.assetinfo b/Gems/Atom/Feature/Common/Assets/Textures/PostProcessing/AreaTex.dds.assetinfo index 72a7948174..4462730464 100644 --- a/Gems/Atom/Feature/Common/Assets/Textures/PostProcessing/AreaTex.dds.assetinfo +++ b/Gems/Atom/Feature/Common/Assets/Textures/PostProcessing/AreaTex.dds.assetinfo @@ -62,6 +62,14 @@ + + + + + + + + diff --git a/Gems/Atom/Feature/Common/Assets/Textures/PostProcessing/SearchTex.dds.assetinfo b/Gems/Atom/Feature/Common/Assets/Textures/PostProcessing/SearchTex.dds.assetinfo index 86d698d24e..0f6348f410 100644 --- a/Gems/Atom/Feature/Common/Assets/Textures/PostProcessing/SearchTex.dds.assetinfo +++ b/Gems/Atom/Feature/Common/Assets/Textures/PostProcessing/SearchTex.dds.assetinfo @@ -62,6 +62,14 @@ + + + + + + + + diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/DirectionalLightFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/DirectionalLightFeatureProcessorInterface.h index 8dc8f1bade..3244c8249e 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/DirectionalLightFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/DirectionalLightFeatureProcessorInterface.h @@ -168,6 +168,10 @@ namespace AZ //! Sets the shadowmap Pcf method. virtual void SetPcfMethod(LightHandle handle, PcfMethod method) = 0; + + //! Sets whether the directional shadowmap should use receiver plane bias. + //! This attempts to reduce shadow acne when using large pcf filters. + virtual void SetShadowReceiverPlaneBiasEnabled(LightHandle handle, bool enable) = 0; }; } // namespace Render } // namespace AZ diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessor.h index a2d9517ec4..389c5902f9 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessor.h @@ -62,9 +62,9 @@ namespace AZ void BuildDrawPacketList(size_t modelLodIndex); void SetRayTracingData(); void SetSortKey(RHI::DrawItemSortKey sortKey); - RHI::DrawItemSortKey GetSortKey(); - void SetLodOverride(RPI::Cullable::LodOverride lodOverride); - RPI::Cullable::LodOverride GetLodOverride(); + RHI::DrawItemSortKey GetSortKey() const; + void SetMeshLodConfiguration(RPI::Cullable::LodConfiguration meshLodConfig); + RPI::Cullable::LodConfiguration GetMeshLodConfiguration() const; void UpdateDrawPackets(bool forceUpdate = false); void BuildCullable(); void UpdateCullBounds(const TransformServiceFeatureProcessor* transformService); @@ -153,10 +153,10 @@ namespace AZ AZ::Aabb GetLocalAabb(const MeshHandle& meshHandle) const override; void SetSortKey(const MeshHandle& meshHandle, RHI::DrawItemSortKey sortKey) override; - RHI::DrawItemSortKey GetSortKey(const MeshHandle& meshHandle) override; + RHI::DrawItemSortKey GetSortKey(const MeshHandle& meshHandle) const override; - void SetLodOverride(const MeshHandle& meshHandle, RPI::Cullable::LodOverride lodOverride) override; - RPI::Cullable::LodOverride GetLodOverride(const MeshHandle& meshHandle) override; + void SetMeshLodConfiguration(const MeshHandle& meshHandle, const RPI::Cullable::LodConfiguration& meshLodConfig) override; + RPI::Cullable::LodConfiguration GetMeshLodConfiguration(const MeshHandle& meshHandle) const override; void SetExcludeFromReflectionCubeMaps(const MeshHandle& meshHandle, bool excludeFromReflectionCubeMaps) override; void SetRayTracingEnabled(const MeshHandle& meshHandle, bool rayTracingEnabled) override; diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessorInterface.h index 4e74302276..cffbe5c3c5 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessorInterface.h @@ -93,11 +93,11 @@ namespace AZ //! Sets the sort key for a given mesh handle. virtual void SetSortKey(const MeshHandle& meshHandle, RHI::DrawItemSortKey sortKey) = 0; //! Gets the sort key for a given mesh handle. - virtual RHI::DrawItemSortKey GetSortKey(const MeshHandle& meshHandle) = 0; - //! Sets an LOD override for a given mesh handle. This LOD will always be rendered instead being automatically determined. - virtual void SetLodOverride(const MeshHandle& meshHandle, RPI::Cullable::LodOverride lodOverride) = 0; - //! Gets the LOD override for a given mesh handle. - virtual RPI::Cullable::LodOverride GetLodOverride(const MeshHandle& meshHandle) = 0; + virtual RHI::DrawItemSortKey GetSortKey(const MeshHandle& meshHandle) const = 0; + //! Sets LOD mesh configurations to be used in the Mesh Feature Processor + virtual void SetMeshLodConfiguration(const MeshHandle& meshHandle, const RPI::Cullable::LodConfiguration& meshLodConfig) = 0; + //! Gets the LOD mesh configurations being used in the Mesh Feature Processor + virtual RPI::Cullable::LodConfiguration GetMeshLodConfiguration(const MeshHandle& meshHandle) const = 0; //! Sets the option to exclude this mesh from baked reflection probe cubemaps virtual void SetExcludeFromReflectionCubeMaps(const MeshHandle& meshHandle, bool excludeFromReflectionCubeMaps) = 0; //! Sets the option to exclude this mesh from raytracing diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SphericalHarmonics/SphericalHarmonicsUtility.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SphericalHarmonics/SphericalHarmonicsUtility.inl index fb1e70b2a0..7446d2fa8f 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SphericalHarmonics/SphericalHarmonicsUtility.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SphericalHarmonics/SphericalHarmonicsUtility.inl @@ -499,7 +499,7 @@ namespace AZ // outSH -> output SH coefficient array void EvalSHRotationFast(const float R[9], const uint32_t maxBand, const float* inSH, float* outSH) { - if (maxBand >= 0 && maxBand <= 2) + if (maxBand <= 2) { ZHF3(R, maxBand, inSH, outSH); } @@ -514,10 +514,7 @@ namespace AZ // outSH -> output SH coefficient array void EvalSHRotation(const float R[9], const uint32_t maxBand, const double* inSH, double* outSH) { - if (maxBand >= 0) - { - WignerD(R, maxBand, inSH, outSH); - } + WignerD(R, maxBand, inSH, outSH); } // Fast evaluation for first 3 bands diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/FrameCaptureBus.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/FrameCaptureBus.h index 919d1b7468..93600ec08f 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/FrameCaptureBus.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/FrameCaptureBus.h @@ -31,6 +31,11 @@ namespace AZ { public: virtual ~FrameCaptureRequests() = default; + + //! Return true if frame capture is available. + //! It may return false if null renderer is used. + //! If the frame capture is not available, all capture functions in this interface would return false + virtual bool CanCapture() const = 0; //! Capture final screen output for the specified window and save it to given file path. //! The image format is determinate by file extension diff --git a/Gems/Atom/Feature/Common/Code/Mocks/MockMeshFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Mocks/MockMeshFeatureProcessor.h index 72e547fc1b..35e399997f 100644 --- a/Gems/Atom/Feature/Common/Code/Mocks/MockMeshFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Mocks/MockMeshFeatureProcessor.h @@ -32,9 +32,9 @@ namespace UnitTest MOCK_METHOD2(SetLocalAabb, void(const MeshHandle&, const AZ::Aabb&)); MOCK_CONST_METHOD1(GetLocalAabb, AZ::Aabb(const MeshHandle&)); MOCK_METHOD2(SetSortKey, void (const MeshHandle&, AZ::RHI::DrawItemSortKey)); - MOCK_METHOD1(GetSortKey, AZ::RHI::DrawItemSortKey(const MeshHandle&)); - MOCK_METHOD2(SetLodOverride, void(const MeshHandle&, AZ::RPI::Cullable::LodOverride)); - MOCK_METHOD1(GetLodOverride, AZ::RPI::Cullable::LodOverride(const MeshHandle&)); + MOCK_CONST_METHOD1(GetSortKey, AZ::RHI::DrawItemSortKey(const MeshHandle&)); + MOCK_METHOD2(SetMeshLodConfiguration, void(const MeshHandle&, const AZ::RPI::Cullable::LodConfiguration&)); + MOCK_CONST_METHOD1(GetMeshLodConfiguration, AZ::RPI::Cullable::LodConfiguration(const MeshHandle&)); MOCK_METHOD2(AcquireMesh, MeshHandle (const AZ::Render::MeshHandleDescriptor&, const AZ::Render::MaterialAssignmentMap&)); MOCK_METHOD2(AcquireMesh, MeshHandle (const AZ::Render::MeshHandleDescriptor&, const AZ::Data::Instance&)); MOCK_METHOD2(SetRayTracingEnabled, void (const MeshHandle&, bool)); diff --git a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/DynamicPrimitiveProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/DynamicPrimitiveProcessor.cpp index 10d1bdc2c6..f35809f148 100644 --- a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/DynamicPrimitiveProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/DynamicPrimitiveProcessor.cpp @@ -27,9 +27,6 @@ namespace AZ { namespace { - // the max size of a vertex buffer - static const size_t MaxUploadBufferSize = MaxDynamicVertexCount * sizeof(AuxGeomDynamicVertex); - static const RHI::PrimitiveTopology PrimitiveTypeToTopology[PrimitiveType_Count] = { RHI::PrimitiveTopology::PointList, diff --git a/Gems/Atom/Feature/Common/Code/Source/CommonSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/CommonSystemComponent.cpp index 1500079b00..de03c08c6f 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CommonSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CommonSystemComponent.cpp @@ -294,6 +294,7 @@ namespace AZ void CommonSystemComponent::Deactivate() { + m_loadTemplatesHandler.Disconnect(); AZ::RPI::FeatureProcessorFactory::Get()->UnregisterFeatureProcessor(); AZ::RPI::FeatureProcessorFactory::Get()->UnregisterFeatureProcessor(); AZ::RPI::FeatureProcessorFactory::Get()->UnregisterFeatureProcessor(); diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CapsuleLightFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CapsuleLightFeatureProcessor.cpp index b75f0481ec..683295cf5b 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CapsuleLightFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CapsuleLightFeatureProcessor.cpp @@ -107,8 +107,7 @@ namespace AZ if (m_deviceBufferNeedsUpdate) { - [[maybe_unused]] bool success = m_lightBufferHandler.UpdateBuffer(m_capsuleLightData.GetDataVector()); - AZ_Error(FeatureProcessorName, success, "Unable to update buffer during Simulate()."); + m_lightBufferHandler.UpdateBuffer(m_capsuleLightData.GetDataVector()); m_deviceBufferNeedsUpdate = false; } } diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.cpp index 6a418117fc..44f95a8b85 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.cpp @@ -202,6 +202,7 @@ namespace AZ { uint32_t shadowFilterMethod = m_shadowData.at(nullptr).GetData(m_shadowingLightHandle.GetIndex()).m_shadowFilterMethod; RPI::ShaderSystemInterface::Get()->SetGlobalShaderOption(m_directionalShadowFilteringMethodName, AZ::RPI::ShaderOptionValue{shadowFilterMethod}); + RPI::ShaderSystemInterface::Get()->SetGlobalShaderOption(m_directionalShadowReceiverPlaneBiasEnableName, AZ::RPI::ShaderOptionValue{ m_shadowProperties.GetData(m_shadowingLightHandle.GetIndex()).m_isReceiverPlaneBiasEnabled }); const uint32_t cascadeCount = m_shadowData.at(nullptr).GetData(m_shadowingLightHandle.GetIndex()).m_cascadeCount; ShadowProperty& property = m_shadowProperties.GetData(m_shadowingLightHandle.GetIndex()); @@ -325,11 +326,11 @@ namespace AZ DirectionalLightFeatureProcessorInterface::LightHandle DirectionalLightFeatureProcessor::AcquireLight() { const uint16_t index = m_lightData.GetFreeSlotIndex(); - const uint16_t shadowPropIndex = m_shadowProperties.GetFreeSlotIndex(); + [[maybe_unused]] const uint16_t shadowPropIndex = m_shadowProperties.GetFreeSlotIndex(); AZ_Assert(index == shadowPropIndex, "light index is illegal."); for (const auto& viewIt : m_cameraViewNames) { - const uint16_t shadowIndex = m_shadowData.at(viewIt.first).GetFreeSlotIndex(); + [[maybe_unused]] const uint16_t shadowIndex = m_shadowData.at(viewIt.first).GetFreeSlotIndex(); AZ_Assert(index == shadowIndex, "light index is illegal."); } @@ -471,7 +472,7 @@ namespace AZ const RPI::RenderPipelineId& renderPipelineId) { ShadowProperty& property = m_shadowProperties.GetData(handle.GetIndex()); - auto update = [this, handle, &property, &baseCameraConfiguration](const RPI::View* view) + auto update = [&property, &baseCameraConfiguration](const RPI::View* view) { CascadeShadowCameraConfiguration& cameraConfig = property.m_cameraConfigurations[view]; if (!cameraConfig.HasSameConfiguration(baseCameraConfiguration)) @@ -616,6 +617,10 @@ namespace AZ m_shadowBufferNeedsUpdate = true; } + void DirectionalLightFeatureProcessor::SetShadowReceiverPlaneBiasEnabled(LightHandle handle, bool enable) + { + m_shadowProperties.GetData(handle.GetIndex()).m_isReceiverPlaneBiasEnabled = enable; + } void DirectionalLightFeatureProcessor::OnRenderPipelineAdded(RPI::RenderPipelinePtr pipeline) { diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.h index 4c486c4540..d57b3aaf2b 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.h @@ -177,6 +177,10 @@ namespace AZ // Shadow filter method of the light ShadowFilterMethod m_shadowFilterMethod = ShadowFilterMethod::None; + + // If true, this will reduce the shadow acne introduced by large pcf kernels by estimating the angle of the triangle being shaded + // with the ddx/ddy functions. + bool m_isReceiverPlaneBiasEnabled = true; }; static void Reflect(ReflectContext* context); @@ -218,6 +222,7 @@ namespace AZ void SetFilteringSampleCount(LightHandle handle, uint16_t count) override; void SetShadowBoundaryWidth(LightHandle handle, float boundaryWidth) override; void SetPcfMethod(LightHandle handle, PcfMethod method) override; + void SetShadowReceiverPlaneBiasEnabled(LightHandle handle, bool enable) override; const Data::Instance GetLightBuffer() const; uint32_t GetLightCount() const; @@ -371,6 +376,7 @@ namespace AZ Name m_lightTypeName = Name("directional"); Name m_directionalShadowFilteringMethodName = Name("o_directional_shadow_filtering_method"); + Name m_directionalShadowReceiverPlaneBiasEnableName = Name("o_directional_shadow_receiver_plane_bias_enable"); static constexpr const char* FeatureProcessorName = "DirectionalLightFeatureProcessor"; }; } // namespace Render diff --git a/Gems/Atom/Feature/Common/Code/Source/Decals/AsyncLoadTracker.h b/Gems/Atom/Feature/Common/Code/Source/Decals/AsyncLoadTracker.h index dd035afec6..8e03cc51fe 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Decals/AsyncLoadTracker.h +++ b/Gems/Atom/Feature/Common/Code/Source/Decals/AsyncLoadTracker.h @@ -97,7 +97,6 @@ namespace AZ { const auto iter = AZStd::find(vec.begin(), vec.end(), elementToErase); AZ_Assert(iter != vec.end(), "EraseFromVector failed to find the given object"); - const auto indexToRemove = AZStd::distance(vec.begin(), iter); AZStd::swap(*iter, vec.back()); vec.pop_back(); } diff --git a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalFeatureProcessor.cpp index b03d456505..4954ffc01c 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalFeatureProcessor.cpp @@ -112,8 +112,7 @@ namespace AZ if (m_deviceBufferNeedsUpdate) { - [[maybe_unused]] bool success = m_decalBufferHandler.UpdateBuffer(m_decalData.GetDataVector<0>()); - AZ_Error(FeatureProcessorName, success, "Unable to update buffer during Simulate()."); + m_decalBufferHandler.UpdateBuffer(m_decalData.GetDataVector<0>()); m_deviceBufferNeedsUpdate = false; } } diff --git a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArrayFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArrayFeatureProcessor.cpp index 10dab85dcb..4ecfd7fc09 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArrayFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArrayFeatureProcessor.cpp @@ -150,8 +150,7 @@ namespace AZ if (m_deviceBufferNeedsUpdate) { - [[maybe_unused]] bool success = m_decalBufferHandler.UpdateBuffer(m_decalData.GetDataVector()); - AZ_Error(FeatureProcessorName, success, "Unable to update buffer during Simulate()."); + m_decalBufferHandler.UpdateBuffer(m_decalData.GetDataVector()); m_deviceBufferNeedsUpdate = false; } } diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGrid.cpp b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGrid.cpp index a4d24b7cb1..4d58948b98 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGrid.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGrid.cpp @@ -731,7 +731,6 @@ namespace AZ } const RHI::ShaderResourceGroupLayout* srgLayout = m_classificationSrg->GetLayout(); - RHI::ShaderInputConstantIndex constantIndex; RHI::ShaderInputImageIndex imageIndex; imageIndex = srgLayout->FindShaderInputImageIndex(AZ::Name("m_probeRayTrace")); diff --git a/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.cpp index 4b1a6ec7f6..9f6d2a343d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.cpp @@ -8,6 +8,8 @@ #include "FrameCaptureSystemComponent.h" +#include + #include #include #include @@ -17,7 +19,7 @@ #include #include -#include +#include #include #include @@ -33,7 +35,11 @@ #include #if defined(OPEN_IMAGE_IO_ENABLED) +// OpenImageIO/fmath.h(2271,5): error C4777: 'fprintf' : format string '%zd' requires an argument of type 'unsigned __int64', but variadic +// argument 5 has type 'OpenImageIO_v2_1::span_strided::index_type' +AZ_PUSH_DISABLE_WARNING(4777, "-Wunknown-warning-option") #include +AZ_POP_DISABLE_WARNING #endif namespace AZ @@ -250,8 +256,18 @@ namespace AZ return AZStd::string(resolvedPath); } + bool FrameCaptureSystemComponent::CanCapture() const + { + return !AZ::RHI::IsNullRenderer(); + } + bool FrameCaptureSystemComponent::CaptureScreenshotForWindow(const AZStd::string& filePath, AzFramework::NativeWindowHandle windowHandle) { + if (!CanCapture()) + { + return false; + } + InitReadback(); if (m_state != State::Idle) @@ -297,6 +313,11 @@ namespace AZ bool FrameCaptureSystemComponent::CaptureScreenshotWithPreview(const AZStd::string& outputFilePath) { + if (!CanCapture()) + { + return false; + } + InitReadback(); if (m_state != State::Idle) @@ -346,6 +367,11 @@ namespace AZ bool FrameCaptureSystemComponent::CapturePassAttachment(const AZStd::vector& passHierarchy, const AZStd::string& slot, const AZStd::string& outputFilePath, RPI::PassAttachmentReadbackOption option) { + if (!CanCapture()) + { + return false; + } + InitReadback(); if (m_state != State::Idle) @@ -392,6 +418,11 @@ namespace AZ bool FrameCaptureSystemComponent::CapturePassAttachmentWithCallback(const AZStd::vector& passHierarchy, const AZStd::string& slotName , RPI::AttachmentReadback::CallbackFunction callback, RPI::PassAttachmentReadbackOption option) { + if (!CanCapture()) + { + return false; + } + bool result = CapturePassAttachment(passHierarchy, slotName, "", option); // Append state change to user provided call back diff --git a/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.h b/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.h index 5dbaa5dee6..20e233ce62 100644 --- a/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.h +++ b/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.h @@ -34,6 +34,7 @@ namespace AZ void Deactivate() override; // FrameCaptureRequestBus overrides ... + bool CanCapture() const override; bool CaptureScreenshot(const AZStd::string& filePath) override; bool CaptureScreenshotForWindow(const AZStd::string& filePath, AzFramework::NativeWindowHandle windowHandle) override; bool CaptureScreenshotWithPreview(const AZStd::string& outputFilePath) override; diff --git a/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.cpp b/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.cpp index f73b0d71eb..b6ca1191dd 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.cpp @@ -38,7 +38,7 @@ namespace AZ { namespace { - static const char* PassName = "ImGuiPass"; + [[maybe_unused]] static const char* PassName = "ImGuiPass"; static const char* ImguiShaderFilePath = "Shaders/imgui/imgui.azshader"; } @@ -67,8 +67,8 @@ namespace AZ ImGuiPass::ImGuiPass(const RPI::PassDescriptor& descriptor) : Base(descriptor) - , AzFramework::InputChannelEventListener(AzFramework::InputChannelEventListener::GetPriorityUI()) - , AzFramework::InputTextEventListener(AzFramework::InputTextEventListener::GetPriorityUI()) + , AzFramework::InputChannelEventListener(AzFramework::InputChannelEventListener::GetPriorityDebugUI() - 1) // Give ImGui manager priority over the pass + , AzFramework::InputTextEventListener(AzFramework::InputTextEventListener::GetPriorityDebugUI() - 1) // Give ImGui manager priority over the pass { const ImGuiPassData* imguiPassData = RPI::PassUtils::GetPassData(descriptor); @@ -157,11 +157,6 @@ namespace AZ return io.WantTextInput; } - AZ::s32 ImGuiPass::GetPriority() const - { - return AzFramework::InputChannelEventListener::GetPriorityUI(); - } - bool ImGuiPass::OnInputChannelEventFiltered(const AzFramework::InputChannel& inputChannel) { if (!IsEnabled() || GetRenderPipeline()->GetScene() == nullptr) diff --git a/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.h b/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.h index 76cf29a573..0bde3edb4f 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.h @@ -84,7 +84,6 @@ namespace AZ // AzFramework::InputChannelEventListener overrides... bool OnInputChannelEventFiltered(const AzFramework::InputChannel& inputChannel) override; - AZ::s32 GetPriority() const override; protected: explicit ImGuiPass(const RPI::PassDescriptor& descriptor); diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.cpp index d173018ef7..fd1c836b96 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.cpp @@ -12,12 +12,27 @@ #include #include #include +#include #include +#include + namespace AZ { namespace Render { + void MaterialConverterSettings::Reflect(AZ::ReflectContext* context) + { + if (auto serializeContext = azrtti_cast(context)) + { + serializeContext->Class() + ->Version(2) + ->Field("Enable", &MaterialConverterSettings::m_enable) + ->Field("DefaultMaterial", &MaterialConverterSettings::m_defaultMaterial) + ->Field("IncludeMaterialPropertyNames", &MaterialConverterSettings::m_includeMaterialPropertyNames); + } + } + void MaterialConverterSystemComponent::Reflect(AZ::ReflectContext* context) { if (auto* serialize = azrtti_cast(context)) @@ -26,10 +41,22 @@ namespace AZ ->Version(3) ->Attribute(Edit::Attributes::SystemComponentTags, AZStd::vector({ AssetBuilderSDK::ComponentTags::AssetBuilder })); } + + MaterialConverterSettings::Reflect(context); + } + + void MaterialConverterSystemComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.emplace_back(AZ_CRC_CE("FingerprintModification")); } void MaterialConverterSystemComponent::Activate() { + if (auto* settingsRegistry = AZ::SettingsRegistry::Get()) + { + settingsRegistry->GetObject(m_settings, "/O3DE/SceneAPI/MaterialConverter"); + } + RPI::MaterialConverterBus::Handler::BusConnect(); } @@ -37,11 +64,26 @@ namespace AZ { RPI::MaterialConverterBus::Handler::BusDisconnect(); } + + bool MaterialConverterSystemComponent::IsEnabled() const + { + return m_settings.m_enable; + } + + bool MaterialConverterSystemComponent::ShouldIncludeMaterialPropertyNames() const + { + return m_settings.m_includeMaterialPropertyNames; + } bool MaterialConverterSystemComponent::ConvertMaterial( const AZ::SceneAPI::DataTypes::IMaterialData& materialData, RPI::MaterialSourceData& sourceData) { using namespace AZ::RPI; + + if (!m_settings.m_enable) + { + return false; + } // The source data for generating material asset sourceData.m_materialType = GetMaterialTypePath(); @@ -140,9 +182,20 @@ namespace AZ return true; } - const char* MaterialConverterSystemComponent::GetMaterialTypePath() const + AZStd::string MaterialConverterSystemComponent::GetMaterialTypePath() const { return "Materials/Types/StandardPBR.materialtype"; } + + AZStd::string MaterialConverterSystemComponent::GetDefaultMaterialPath() const + { + if (m_settings.m_defaultMaterial.empty()) + { + AZ_Error("MaterialConverterSystemComponent", m_settings.m_enable, + "Material conversion is disabled but a default material not specified in registry /O3DE/SceneAPI/MaterialConverter/DefaultMaterial"); + } + + return m_settings.m_defaultMaterial; + } } } diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.h b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.h index 38d4faedc8..150529b474 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.h @@ -18,6 +18,21 @@ namespace AZ { namespace Render { + struct MaterialConverterSettings + { + AZ_TYPE_INFO(MaterialConverterSettings, "{8D91601D-570A-4557-99C8-631DB4928040}"); + + static void Reflect(AZ::ReflectContext* context); + + bool m_enable = true; + AZStd::string m_defaultMaterial; + //! Sets whether to include material property names when generating material assets. If this + //! setting is true, material property name resolution and validation is deferred into load + //! time rather than at build time, allowing to break some dependencies (e.g. fbx files will no + //! longer need to be dependent on materialtype files). + bool m_includeMaterialPropertyNames = true; + }; + //! Atom's implementation of converting SceneAPI data into Atom's default material: StandardPBR class MaterialConverterSystemComponent final : public AZ::Component @@ -27,13 +42,21 @@ namespace AZ AZ_COMPONENT(MaterialConverterSystemComponent, "{C2338D45-6456-4521-B469-B000A13F2493}"); static void Reflect(AZ::ReflectContext* context); + + static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services); void Activate() override; void Deactivate() override; // MaterialConverterBus overrides ... + bool IsEnabled() const override; + bool ShouldIncludeMaterialPropertyNames() const override; bool ConvertMaterial(const AZ::SceneAPI::DataTypes::IMaterialData& materialData, RPI::MaterialSourceData& out) override; - const char* GetMaterialTypePath() const override; + AZStd::string GetMaterialTypePath() const override; + AZStd::string GetDefaultMaterialPath() const override; + + private: + MaterialConverterSettings m_settings; }; } } diff --git a/Gems/Atom/Feature/Common/Code/Source/Mesh/MeshFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/Mesh/MeshFeatureProcessor.cpp index 6ed37ce972..f52d9fe37c 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Mesh/MeshFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Mesh/MeshFeatureProcessor.cpp @@ -346,7 +346,7 @@ namespace AZ } } - RHI::DrawItemSortKey MeshFeatureProcessor::GetSortKey(const MeshHandle& meshHandle) + RHI::DrawItemSortKey MeshFeatureProcessor::GetSortKey(const MeshHandle& meshHandle) const { if (meshHandle.IsValid()) { @@ -359,24 +359,24 @@ namespace AZ } } - void MeshFeatureProcessor::SetLodOverride(const MeshHandle& meshHandle, RPI::Cullable::LodOverride lodOverride) + void MeshFeatureProcessor::SetMeshLodConfiguration(const MeshHandle& meshHandle, const RPI::Cullable::LodConfiguration& meshLodConfig) { if (meshHandle.IsValid()) { - meshHandle->SetLodOverride(lodOverride); + meshHandle->SetMeshLodConfiguration(meshLodConfig); } } - RPI::Cullable::LodOverride MeshFeatureProcessor::GetLodOverride(const MeshHandle& meshHandle) + RPI::Cullable::LodConfiguration MeshFeatureProcessor::GetMeshLodConfiguration(const MeshHandle& meshHandle) const { if (meshHandle.IsValid()) { - return meshHandle->GetLodOverride(); + return meshHandle->GetMeshLodConfiguration(); } else { AZ_Assert(false, "Invalid mesh handle"); - return 0; + return {RPI::Cullable::LodType::Default, 0, 0.0f, 0.0f }; } } @@ -968,19 +968,19 @@ namespace AZ } } - RHI::DrawItemSortKey MeshDataInstance::GetSortKey() + RHI::DrawItemSortKey MeshDataInstance::GetSortKey() const { return m_sortKey; } - void MeshDataInstance::SetLodOverride(RPI::Cullable::LodOverride lodOverride) + void MeshDataInstance::SetMeshLodConfiguration(RPI::Cullable::LodConfiguration meshLodConfig) { - m_cullable.m_lodData.m_lodOverride = lodOverride; + m_cullable.m_lodData.m_lodConfiguration = meshLodConfig; } - RPI::Cullable::LodOverride MeshDataInstance::GetLodOverride() + RPI::Cullable::LodConfiguration MeshDataInstance::GetMeshLodConfiguration() const { - return m_cullable.m_lodData.m_lodOverride; + return m_cullable.m_lodData.m_lodConfiguration; } void MeshDataInstance::UpdateDrawPackets(bool forceUpdate /*= false*/) @@ -1022,9 +1022,6 @@ namespace AZ { //initialize the lod RPI::Cullable::LodData::Lod& lod = lodData.m_lods[lodIndex]; - //[GFX TODO][ATOM-5562] - Level of detail: override lod distances and add global lod multiplier(s) - static const float MinimumScreenCoverage = 1.0f/1080.0f; //mesh should cover at least a screen pixel at 1080p to be drawn - static const float ReductionFactor = 0.5f; if (lodIndex == 0) { //first lod @@ -1033,17 +1030,18 @@ namespace AZ else { //every other lod: use the previous lod's min - lod.m_screenCoverageMax = AZStd::GetMax(lodData.m_lods[lodIndex-1].m_screenCoverageMin, MinimumScreenCoverage); + lod.m_screenCoverageMax = AZStd::GetMax(lodData.m_lods[lodIndex - 1].m_screenCoverageMin, lodData.m_lodConfiguration.m_minimumScreenCoverage); } + if (lodIndex < lodAssets.size() - 1) { //first and middle lods: compute a stepdown value for the min - lod.m_screenCoverageMin = AZStd::GetMax(ReductionFactor * lod.m_screenCoverageMax, MinimumScreenCoverage); + lod.m_screenCoverageMin = AZStd::GetMax(lodData.m_lodConfiguration.m_qualityDecayRate * lod.m_screenCoverageMax, lodData.m_lodConfiguration.m_minimumScreenCoverage); } else { //last lod: use MinimumScreenCoverage for the min - lod.m_screenCoverageMin = MinimumScreenCoverage; + lod.m_screenCoverageMin = lodData.m_lodConfiguration.m_minimumScreenCoverage; } lod.m_drawPackets.clear(); diff --git a/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlane.cpp b/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlane.cpp index 5ea5a496d6..0e644b9555 100644 --- a/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlane.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlane.cpp @@ -16,8 +16,6 @@ namespace AZ { namespace Render { - static const char* OcclusionCullingPlaneDrawListTag("occlusioncullingplanevisualization"); - OcclusionCullingPlane::~OcclusionCullingPlane() { Data::AssetBus::MultiHandler::BusDisconnect(); diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomBlurPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomBlurPass.cpp index 3fcff54eaa..b91990f6c9 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomBlurPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomBlurPass.cpp @@ -271,8 +271,6 @@ namespace AZ void BloomBlurPass::BuildKernelData() { - RHI::Size sourceImageSize; - m_weightData.clear(); m_offsetData.clear(); m_kernelRadiusData.clear(); diff --git a/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.cpp index 7c6dfcf744..920326e081 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.cpp @@ -20,7 +20,7 @@ #include #include -#include +#include #include #include @@ -453,7 +453,7 @@ namespace AZ RHI::CpuProfiler::Get()->SetProfilerEnabled(true); } - const bool captureStarted = m_cpuFrameTimeStatisticsCapture.StartCapture([this, outputFilePath, wasEnabled]() + const bool captureStarted = m_cpuFrameTimeStatisticsCapture.StartCapture([outputFilePath, wasEnabled]() { JsonSerializerSettings serializationSettings; serializationSettings.m_keepDefaults = true; @@ -603,7 +603,7 @@ namespace AZ RHI::CpuProfiler::Get()->SetProfilerEnabled(true); } - const bool captureStarted = m_cpuProfilingStatisticsCapture.StartCapture([this, outputFilePath, wasEnabled]() + const bool captureStarted = m_cpuProfilingStatisticsCapture.StartCapture([outputFilePath, wasEnabled]() { // Blocking call for a single frame of data, avoid thread overhead AZStd::ring_buffer singleFrameData(1); @@ -669,7 +669,7 @@ namespace AZ bool ProfilingCaptureSystemComponent::CaptureBenchmarkMetadata(const AZStd::string& benchmarkName, const AZStd::string& outputFilePath) { - const bool captureStarted = m_benchmarkMetadataCapture.StartCapture([this, benchmarkName, outputFilePath]() + const bool captureStarted = m_benchmarkMetadataCapture.StartCapture([benchmarkName, outputFilePath]() { JsonSerializerSettings serializationSettings; serializationSettings.m_keepDefaults = true; diff --git a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingFeatureProcessor.cpp index 31899b9bb6..ea89f64b73 100644 --- a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingFeatureProcessor.cpp @@ -458,9 +458,7 @@ namespace AZ void RayTracingFeatureProcessor::UpdateRayTracingMaterialSrg() { const RHI::ShaderResourceGroupLayout* srgLayout = m_rayTracingMaterialSrg->GetLayout(); - RHI::ShaderInputImageIndex imageIndex; RHI::ShaderInputBufferIndex bufferIndex; - RHI::ShaderInputConstantIndex constantIndex; bufferIndex = srgLayout->FindShaderInputBufferIndex(AZ::Name("m_materialInfo")); m_rayTracingMaterialSrg->SetBufferView(bufferIndex, m_materialInfoBuffer->GetBufferView()); diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.cpp b/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.cpp index 276ea7683f..66c326e6e7 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.cpp @@ -22,8 +22,6 @@ namespace AZ { namespace Render { - static const char* ReflectionProbeDrawListTag("reflectionprobevisualization"); - ReflectionProbe::~ReflectionProbe() { Data::AssetBus::MultiHandler::BusDisconnect(); diff --git a/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp index 0e42c5520e..68dac8f773 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp @@ -418,7 +418,6 @@ namespace AZ::Render } const FilterParameter& filter = m_shadowData.GetElement(shadowProperty.m_shadowId.GetIndex()); const float boundaryWidthAngle = shadow.m_boundaryScale * 2.0f; - constexpr float SmallAngle = 0.01f; const float fieldOfView = GetMax(shadowProperty.m_desc.m_fieldOfViewYRadians, MinimumFieldOfView); const float ratioToEntireWidth = boundaryWidthAngle / fieldOfView; const float widthInPixels = ratioToEntireWidth * filter.m_shadowmapSize; diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshInputBuffers.cpp b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshInputBuffers.cpp index 4229416066..b84d4347a7 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshInputBuffers.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshInputBuffers.cpp @@ -23,6 +23,8 @@ #include #include +AZ_DECLARE_BUDGET(AzRender); + namespace AZ { namespace Render diff --git a/Gems/Atom/Feature/Common/Code/Source/Utils/GpuBufferHandler.cpp b/Gems/Atom/Feature/Common/Code/Source/Utils/GpuBufferHandler.cpp index 3115c5410b..7a2827bebe 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Utils/GpuBufferHandler.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Utils/GpuBufferHandler.cpp @@ -17,7 +17,7 @@ namespace AZ { namespace Render { - static const char* ClassName = "GpuBufferHandler"; + [[maybe_unused]] static const char* ClassName = "GpuBufferHandler"; static const uint32_t BufferMinSize = 1 << 16; // Min 64Kb. GpuBufferHandler::GpuBufferHandler(const Descriptor& descriptor) diff --git a/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/.gitignore b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/.gitignore new file mode 100644 index 0000000000..268cdab0c7 --- /dev/null +++ b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/.gitignore @@ -0,0 +1 @@ +.tmp \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/__init__.py b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/__init__.py new file mode 100644 index 0000000000..d500d6e09c --- /dev/null +++ b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/__init__.py @@ -0,0 +1,278 @@ +# coding:utf-8 +#!/usr/bin/python +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# +"""O3DE/Atom Color Grading Python Package""" +# ------------------------------------------------------------------------- +import sys +import os +import site +import inspect +import logging as _logging +import pathlib +from pathlib import Path +import math + +# ------------------------------------------------------------------------- +__copyright__ = "Copyright 2021, Amazon" +__credits__ = ["Jonny Galloway", "Ben Black"] +__license__ = "EULA" +__version__ = "0.0.1" +__status__ = "Prototype" + +__all__ = ['from_3dl_to_azasset', + 'capture_displaymapperpassthrough', + 'exr_to_3dl_azasset', + 'initialize', + 'lut_compositor', + 'lut_helper', + 'env_bool', + 'makedirs', + 'initialize_logger' + 'inv_shaper_transform', + 'shaper_transform', + 'get_uv_coord', + 'clamp', + 'log2', + 'is_power_of_two'] +# ------------------------------------------------------------------------- + + +# ------------------------------------------------------------------------- +_MODULE_PATH = Path(os.path.abspath(__file__)) +site.addsitedir(_MODULE_PATH.parent.absolute()) + +_PACKAGENAME = 'ColorGrading' +_MODULEENAME = 'ColorGrading.init' + +# project cache log dir path +DCCSI_LOG_PATH = Path(_MODULE_PATH.parent.absolute(), '.tmp', 'logs') +# ------------------------------------------------------------------------- + + +# -- envar util ---------------------------------------------------------- +def env_bool(envar, default=False): + """cast a env bool to a python bool""" + envar_test = os.getenv(envar, default) + # check 'False', 'false', and '0' since all are non-empty + # env comes back as string and normally coerced to True. + if envar_test in ('True', 'true', '1'): + return True + elif envar_test in ('False', 'false', '0'): + return False + else: + return envar_test +# ------------------------------------------------------------------------- + + +# ------------------------------------------------------------------------- +# set these true if you want them set globally for debugging +DCCSI_GDEBUG = env_bool('DCCSI_GDEBUG', False) +DCCSI_DEV_MODE = env_bool('DCCSI_DEV_MODE', False) +DCCSI_GDEBUGGER = env_bool('DCCSI_GDEBUGGER', False) +DCCSI_LOGLEVEL = env_bool('DCCSI_LOGLEVEL', int(20)) +DCCSI_WING_VERSION_MAJOR = env_bool('DCCSI_WING_VERSION_MAJOR', '7') +# ------------------------------------------------------------------------- + + +# ------------------------------------------------------------------------- +FRMT_LOG_LONG = "[%(name)s][%(levelname)s] >> %(message)s (%(asctime)s; %(filename)s:%(lineno)d)" + +def initialize_logger(name, + log_to_file=False, + default_log_level=_logging.NOTSET): + """Start a azpy logger""" + _logger = _logging.getLogger(name) + _logger.propagate = False + if not _logger.handlers: + + # default log level + _log_level = int(os.getenv('DCCSI_LOGLEVEL', default_log_level)) + + if DCCSI_GDEBUG: + _log_level = int(10) # force when debugging + + if _log_level: + ch = _logging.StreamHandler(sys.stdout) + ch.setLevel(_log_level) + formatter = _logging.Formatter(FRMT_LOG_LONG) + ch.setFormatter(formatter) + _logger.addHandler(ch) + _logger.setLevel(_log_level) + else: + _logger.addHandler(_logging.NullHandler()) + + _logger.debug('_log_level: {}'.format(_log_level)) + + # optionally add the log file handler (off by default) + if log_to_file: + _logger.info('DCCSI_LOG_PATH: {}'.format(DCCSI_LOG_PATH)) + try: + # exist_ok, isn't available in py2.7 pathlib + # because it doesn't exist for os.makedirs + # pathlib2 backport used instead (see above) + if sys.version_info.major >= 3: + DCCSI_LOG_PATH.mkdir(parents=True, exist_ok=True) + else: + makedirs(str(DCCSI_LOG_PATH.resolve())) # py2.7 + except FileExistsError: + # except FileExistsError: doesn't exist in py2.7 + _logger.debug("Folder is already there") + else: + _logger.debug("Folder was created") + + _log_filepath = Path(DCCSI_LOG_PATH, '{}.log'.format(name)) + try: + _log_filepath.touch(mode=0o666, exist_ok=True) + except FileExistsError: + _logger.debug("Log file is already there: {}".format(_log_filepath)) + else: + _logger.debug("Log file was created: {}".format(_log_filepath)) + + if _log_filepath.exists(): + file_formatter = _logging.Formatter(FRMT_LOG_LONG) + file_handler = _logging.FileHandler(str(_log_filepath)) + file_handler.setLevel(_logging.DEBUG) + file_handler.setFormatter(file_formatter) + _logger.addHandler(file_handler) + + return _logger +# ------------------------------------------------------------------------- + + +# ------------------------------------------------------------------------- +# _ROOT_LOGGER = _logging.getLogger() # only use this if debugging +# https://stackoverflow.com/questions/56733085/how-to-know-the-current-file-path-after-being-frozen-into-an-executable-using-cx/56748839 +#os.chdir(os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))) +# ------------------------------------------------------------------------- +if DCCSI_GDEBUG: + DCCSI_LOGLEVEL = int(10) + +# set up logger with both console and file _logging +if DCCSI_GDEBUG: + _LOGGER = initialize_logger(_MODULEENAME, log_to_file=True) +else: + _LOGGER = initialize_logger(_MODULEENAME, log_to_file=False) + +_LOGGER.debug('Invoking __init__.py for {0}.'.format({_PACKAGENAME})) +# ------------------------------------------------------------------------- + + +def get_datadir() -> pathlib.Path: + """ + persistent application data. + # linux: ~/.local/share + # macOS: ~/Library/Application Support + # windows: C:/Users//AppData/Roaming + """ + + home = pathlib.Path.home() + + if sys.platform == "win32": + return home / "AppData/Roaming" + elif sys.platform == "linux": + return home / ".local/share" + elif sys.platform == "darwin": + return home / "Library/Application Support" +# ------------------------------------------------------------------------- + + +# ------------------------------------------------------------------------- +def makedirs(folder, *args, **kwargs): + """a makedirs for py2.7 support""" + try: + return os.makedirs(folder, exist_ok=True, *args, **kwargs) + except TypeError: + # Unexpected arguments encountered + pass + try: + # Should work is TypeError was caused by exist_ok, eg., Py2 + return os.makedirs(folder, *args, **kwargs) + except OSError as e: + if e.errno != errno.EEXIST: + raise + + if os.path.isfile(folder): + # folder is a file, raise OSError just like os.makedirs() in Py3 + raise +# ------------------------------------------------------------------------- + + +# ------------------------------------------------------------------------- +class FileExistsError(Exception): + """Implements a stand-in Exception for py2.7""" + def __init__(self, message, errors): + + # Call the base class constructor with the parameters it needs + super(FileExistsError, self).__init__(message) + + # Now for your custom code... + self.errors = errors + +if sys.version_info.major < 3: + FileExistsError = FileExistsError +# ------------------------------------------------------------------------- + + +# ------------------------------------------------------------------------ +# commonly reused utilities +AZASSET_LUT = """\ +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "LookupTableAsset", + "ClassData": { + "Name": "LookupTable", + "Intervals": [%s], + "Values": [%s] + } +}""" + +FLOAT_EPSILON = sys.float_info.epsilon + +# pow(f, e) won't work if f is negative, or may cause inf / NAN. +def no_nan_pow(base, power): + return pow(max(abs(base), (FLOAT_EPSILON, FLOAT_EPSILON, FLOAT_EPSILON)), power) + +# Transform from high dynamic range to normalized +def inv_shaper_transform(bias, scale, v): + return pow(2.0, (v - bias) / scale) + +# Transform from normalized range to high dynamic range +def shaper_transform(bias, scale, v, clip_threshold=FLOAT_EPSILON): + if v > 0.0: + return math.log(v, 2.0) * scale + bias + + # this is probably not correct, clamps, avoids a math domain error + elif v <= 0.0: + _LOGGER.debug(f'Clipping a value: bias={bias}, scale={scale}, v={v}') + return math.log(clip_threshold, 2.0) * scale + bias + +def get_uv_coord(size, r, g, b): + u = g * size + r + v = b + return (u, v) + +def clamp(v): + return max(0.0, min(1.0, v)) + +def log2(x): + return (math.log10(x) / + math.log10(2)) + +def is_power_of_two(n): + return (math.ceil(log2(n)) == math.floor(log2(n))) +# ------------------------------------------------------------------------ + + +########################################################################### +# Main Code Block, runs this script as main (testing) +# ------------------------------------------------------------------------- +if __name__ == '__main__': + + del _LOGGER \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/capture_displaymapperpassthrough.py b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/capture_displaymapperpassthrough.py new file mode 100644 index 0000000000..76cdd8450a --- /dev/null +++ b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/capture_displaymapperpassthrough.py @@ -0,0 +1,61 @@ +# coding:utf-8 +#!/usr/bin/python +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# +"""Frame capture of the Displaymapper Passthrough (outputs .dds image)""" +# ------------------------------------------------------------------------ +import logging as _logging +from env_bool import env_bool + +# ------------------------------------------------------------------------ +_MODULENAME = 'ColorGrading.capture_displaymapperpassthrough' + +import ColorGrading.initialize +ColorGrading.initialize.start() + +_LOGGER = _logging.getLogger(_MODULENAME) +_LOGGER.debug('Initializing: {0}.'.format({_MODULENAME})) +# ------------------------------------------------------------------------ + + +# ------------------------------------------------------------------------ +import azlmbr.bus +import azlmbr.atom + +default_passtree = ["Root", + "MainPipeline_0", + "MainPipeline", + "PostProcessPass", + "LightAdaptation", + "DisplayMapperPass", + "DisplayMapperPassthrough"] + +default_path = "FrameCapture\DisplayMapperPassthrough.dds" + +# To Do: we should try to set display mapper to passthrough, +# then back after capture? + +# To Do: we can wrap this, to call from a PySide2 GUI + +def capture(command="CapturePassAttachment", + passtree=default_passtree, + pass_type="Output", + output_path=default_path): + azlmbr.atom.FrameCaptureRequestBus(azlmbr.bus.Broadcast, + command, + passtree, + pass_type, + output_path, 1) +# ------------------------------------------------------------------------ + + +########################################################################### +# Main Code Block, runs this script as main +# ------------------------------------------------------------------------- +if __name__ == '__main__': + capture() diff --git a/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/exr_to_3dl_azasset.py b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/exr_to_3dl_azasset.py new file mode 100644 index 0000000000..6c2aa1d5bb --- /dev/null +++ b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/exr_to_3dl_azasset.py @@ -0,0 +1,119 @@ +# coding:utf-8 +#!/usr/bin/python +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# +""" + input: a shaped .exr representing a LUT (for instance coming out of photoshop) + output: a inverse shaped LUT as .exr + ^ as a .3DL (normalized lut file type) + ^ as a .azasset (for o3de engine) +""" + +import sys +import os +import argparse +import math +import site +import pathlib +from pathlib import Path +import logging as _logging +import numpy as np + +# ------------------------------------------------------------------------ +_MODULENAME = 'ColorGrading.exr_to_3dl_azasset' + +_LOGGER = _logging.getLogger(_MODULENAME) +_LOGGER.debug('Initializing: {0}.'.format({_MODULENAME})) + +import ColorGrading.initialize +if ColorGrading.initialize.start(): + try: + import OpenImageIO as oiio + pass + except ImportError as e: + _LOGGER.error(f"invalid import: {e}") + sys.exit(1) +# ------------------------------------------------------------------------ + + +# ------------------------------------------------------------------------ +from ColorGrading.from_3dl_to_azasset import write_azasset + +from ColorGrading import get_uv_coord + +def generate_lut_values(image_spec, image_buffer): + lut_size = image_spec.height + + lut_intervals = [] + lut_values = [] + + # First line contains the vertex intervals + dv = 1023.0 / float(lut_size-1) + for i in range(lut_size): + lut_intervals.append(np.uint16(dv * i)) + # Texels are in R G B per line with indices increasing first with blue, then green, and then red. + for r in range(lut_size): + for g in range(lut_size): + for b in range(lut_size): + uv = get_uv_coord(lut_size, r, g, b) + px = np.array(image_buffer.getpixel(uv[0], uv[1]), dtype='f') + px = np.clip(px, 0.0, 1.0) + px = np.uint16(px * 4095) + lut_values.append(px) + + return lut_intervals, lut_values + +# To Do: add some input file validation +# If the input file doesn't exist, you'll get a LUT with res of 0 x 0 and result in a math error +#Resolution is 0 x 0 +#writing C:\Depot\o3de-engine\Gems\AtomLyIntegration\CommonFeatures\Tools\ColorGrading\TestData\Nuke\HDR\Nuke_Post_grade_LUT.3dl... +#Traceback (most recent call last): + #File "..\..\Editor\Scripts\ColorGrading\exr_to_3dl_azasset.py", line 103, in + #dv = 1023.0 / float(lutSize) +# ZeroDivisionError: float division by zero + +def write_3DL(file_path, lut_size, lut_intervals, lut_values): + lut_file_path = f'{file_path}.3dl' + _LOGGER.info(f"Writing {lut_file_path}...") + lut_file = open(lut_file_path, 'w') + for i in range(lut_size): + lut_file.write(f"{lut_intervals[i]} ") + lut_file.write("\n") + for px in lut_values: + lut_file.write(f"{px[0]} {px[1]} {px[2]}\n") + lut_file.close() + + +########################################################################### +# Main Code Block, runs this script as main (testing) +# ------------------------------------------------------------------------- +if __name__ == '__main__': + """Run this file as main""" + + parser=argparse.ArgumentParser() + parser.add_argument('--i', type=str, required=True, help='input file') + parser.add_argument('--o', type=str, required=True, help='output file') + args=parser.parse_args() + + # Read input image + # image_buffer = oiio.ImageBuf("linear_lut.exr") + image_buffer=oiio.ImageBuf(args.i) + image_spec=image_buffer.spec() + _LOGGER.info(f"Resolution is, x: {image_buffer.spec().width} and y: {image_buffer.spec().height}") + + if image_spec.width != image_spec.height * image_spec.height: + _LOGGER.info(f"invalid input file dimensions. Expect lengthwise LUT with dimension W: s*s X H: s, where s is the size of the LUT") + sys.exit(1) + + lut_intervals, lut_values = generate_lut_values(image_spec, image_buffer) + + write_3DL(args.o, image_spec.height, lut_intervals, lut_values) + write_azasset(args.o, image_spec.height, lut_intervals, lut_values) + + # example from command line + # python % DCCSI_COLORGRADING_SCRIPTS %\lut_helper.py - -i C: \Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_32_LUT.exr - -op pre - grading - -shaper Log2 - 48nits - -o C: \Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-48nits_32_LUT.exr diff --git a/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/from_3dl_to_azasset.py b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/from_3dl_to_azasset.py new file mode 100644 index 0000000000..ba37994e63 --- /dev/null +++ b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/from_3dl_to_azasset.py @@ -0,0 +1,113 @@ +# coding:utf-8 +#!/usr/bin/python +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# +"""Takes a 3dl file and encodes it into a .azasset file that can be read by the AssetProcessor""" +# ------------------------------------------------------------------------ +import json +import sys, getopt +import logging as _logging +# ------------------------------------------------------------------------ + + +# ------------------------------------------------------------------------ +_MODULENAME = 'ColorGrading.from_3dl_to_azasset' + +_LOGGER = _logging.getLogger(_MODULENAME) +_LOGGER.debug('Initializing: {0}.'.format({_MODULENAME})) + +import ColorGrading.initialize +if ColorGrading.initialize.start(): + try: + import OpenImageIO as oiio + pass + except ImportError as e: + _LOGGER.error(f"invalid import: {e}") + sys.exit(1) +# ------------------------------------------------------------------------ + + +# ------------------------------------------------------------------------ +from ColorGrading import AZASSET_LUT + + +# ------------------------------------------------------------------------ +def find_first_line(alist): + for lno, line in enumerate(alist): + if line[0].isdigit(): # skip non-number metadata + return lno +# ------------------------------------------------------------------------ + + +# ------------------------------------------------------------------------ +def write_azasset(file_path, lut_intervals, lut_values, azasset_json=AZASSET_LUT): + values_str = '' + for idx, px in enumerate(lut_values): + values_str += f"{px[0]}, {px[1]}, {px[2]}" + if idx < (len(lut_values) - 1): + values_str += ",\n" + + intervals_str = ', '.join(map(str, lut_intervals)) + + azasset_json = azasset_json % (intervals_str, values_str) + + asset_file_path = f"{file_path}.azasset" + _LOGGER.info(f"Writting {asset_file_path}...") + asset_file = open(asset_file_path, 'w') + asset_file.write(azasset_json) +# ------------------------------------------------------------------------ + + +# ------------------------------------------------------------------------ +def convert_3dl_to_azasset(input_file, output_file): + lut_intervals = [] + lut_values = [] + with open(input_file) as lut_file: + alist = [line.rstrip().lstrip() for line in lut_file] + intervals_idx = find_first_line(alist) + + lut_intervals = alist[intervals_idx].split(" ") + + lut_values_range = range(intervals_idx + 1, len(alist)) + for ln in lut_values_range: + values = alist[ln].split(" ") + if values is None or len(values) < 3: + continue + lut_values.append(values) + + write_azasset(output_file, lut_intervals, lut_values) +# ------------------------------------------------------------------------ + + +########################################################################### +# Main Code Block, runs this script as main (testing) +# ------------------------------------------------------------------------- +if __name__ == '__main__': + """Run this file as main""" + input_file = '' + output_file = '' + try: + opts, args = getopt.getopt(sys.argv[1:],"hi:o:",["ifile=","ofile="]) + except getopt.GetoptError: + _LOGGER.info('test.py -i -o ') + sys.exit(2) + for opt, arg in opts: + _LOGGER.info(f"opt {opt} arg {arg}") + if opt == '-h': + _LOGGER.info('test.py -i -o ') + sys.exit() + elif opt in ("-i", "--ifile"): + input_file = arg + elif opt in ("-o", "--ofile"): + output_file = arg + _LOGGER.info(f'Input file is "{input_file}"') + _LOGGER.info(f'Output file is "{output_file}"') + if input_file == '' or output_file == '': + _LOGGER.info('test.py -i -o ') + else: + convert_3dl_to_azasset(input_file, output_file) diff --git a/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/initialize.py b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/initialize.py new file mode 100644 index 0000000000..ac64ade322 --- /dev/null +++ b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/initialize.py @@ -0,0 +1,132 @@ +# coding:utf-8 +#!/usr/bin/python +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +# standard imports +import sys +import os +import pathlib +import site +from pathlib import Path +import logging as _logging + +# local imports +from ColorGrading import initialize_logger +from ColorGrading import DCCSI_GDEBUG +from ColorGrading import DCCSI_DEV_MODE +from ColorGrading import DCCSI_LOGLEVEL + +__all__ = ['start'] + +# ------------------------------------------------------------------------ +_PACKAGENAME = 'ColorGrading' +_MODULENAME = 'ColorGrading.initialize' + +if DCCSI_GDEBUG: + DCCSI_LOGLEVEL = int(10) + +# set up logger with both console and file _logging +if DCCSI_GDEBUG: + _LOGGER = initialize_logger(_PACKAGENAME, log_to_file=True, default_log_level=DCCSI_LOGLEVEL) +else: + _LOGGER = initialize_logger(_PACKAGENAME, log_to_file=False, default_log_level=DCCSI_LOGLEVEL) + +_LOGGER.debug('Initializing: {0}.'.format({_MODULENAME})) + +# connect to the debugger +if DCCSI_DEV_MODE: + from ColorGrading import DCCSI_WING_VERSION_MAJOR + from ColorGrading import get_datadir + APPDATA = get_datadir() # os APPDATA + APPDATA_WING = Path(APPDATA, f"Wing Pro {DCCSI_WING_VERSION_MAJOR}").resolve() + if APPDATA_WING.exists(): + site.addsitedir(pathlib.PureWindowsPath(APPDATA_WING).as_posix()) + import wingdbstub as debugger + try: + debugger.Ensure() + _LOGGER.info("Wing debugger attached") + except Exception as e: + _LOGGER.debug('Can not attach Wing debugger (running in IDE already?)') + else: + _LOGGER.warning("Path envar doesn't exist: APPDATA_WING") + _LOGGER.info(f"Pattern: {APPDATA_WING}") +# ------------------------------------------------------------------------ + + +# ------------------------------------------------------------------------ +def start(): + """set up access to OpenImageIO, within o3de or without""" + # ------------------------------------------------------------------------ + running_editor = None + try: + # running in o3de + import azlmbr + running_editor = True + + except Exception as e: + # running external, start this module from: + # "C:\Depot\o3de-engine\Gems\Atom\Feature\Common\Tools\ColorGrading\cmdline\CMD_ColorGradingTools.bat" + + try: + _O3DE_DEV = Path(os.getenv('O3DE_DEV')) + _O3DE_DEV = _O3DE_DEV.resolve() + os.environ['O3DE_DEV'] = pathlib.PureWindowsPath(_O3DE_DEV).as_posix() + _LOGGER.debug(f'O3DE_DEV is: {_O3DE_DEV}') + except EnvironmentError as e: + _LOGGER.error('O3DE engineroot not set or found') + raise e + + try: + _TAG_LY_BUILD_PATH = os.getenv('TAG_LY_BUILD_PATH', 'build') + _DEFAULT_BIN_PATH = Path(str(_O3DE_DEV), _TAG_LY_BUILD_PATH, 'bin', 'profile') + _O3DE_BIN_PATH = Path(os.getenv('O3DE_BIN_PATH', _DEFAULT_BIN_PATH)) + _O3DE_BIN_PATH = _O3DE_BIN_PATH.resolve() + os.environ['O3DE_BIN_PATH'] = pathlib.PureWindowsPath(_O3DE_BIN_PATH).as_posix() + _LOGGER.debug(f'O3DE_BIN_PATH is: {_O3DE_BIN_PATH}') + site.addsitedir(pathlib.PureWindowsPath(_O3DE_BIN_PATH).as_posix()) + except EnvironmentError as e: + _LOGGER.error('O3DE bin folder not set or found') + raise e + + if running_editor: + _O3DE_DEV = Path(os.getenv('O3DE_DEV', Path(azlmbr.paths.engroot))) + os.environ['O3DE_DEV'] = pathlib.PureWindowsPath(_O3DE_DEV).as_posix() + _LOGGER.debug(_O3DE_DEV) + + _O3DE_BIN_PATH = Path(str(_O3DE_DEV),Path(azlmbr.paths.executableFolder)) + + _O3DE_BIN = Path(os.getenv('O3DE_BIN', _O3DE_BIN_PATH.resolve())) + os.environ['O3DE_BIN'] = pathlib.PureWindowsPath(_O3DE_BIN).as_posix() + + _LOGGER.debug(_O3DE_BIN) + + site.addsitedir(_O3DE_BIN) + + # test access to oiio + if os.name == 'nt': + try: + import OpenImageIO as oiio + return True + except ImportError as e: + _LOGGER.error(f"invalid import: {e}") + pass + else: + _LOGGER.info("Non-Windows platforms not yet supported...") + return False +# ------------------------------------------------------------------------ + + +########################################################################### +# Main Code Block, runs this script as main (testing) +# ------------------------------------------------------------------------- +if __name__ == '__main__': + """Run this file as main""" + + oiio_exists = start() + _LOGGER.debug(f"Import OpenImageIO performed: {oiio_exists}") \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/lut_compositor.py b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/lut_compositor.py new file mode 100644 index 0000000000..75c21a31c4 --- /dev/null +++ b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/lut_compositor.py @@ -0,0 +1,91 @@ +# coding:utf-8 +#!/usr/bin/python +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# +# lut_compositor.py + +import sys +import os +import argparse +import logging as _logging + +# ------------------------------------------------------------------------ +_MODULENAME = 'ColorGrading.lut_compositor' + +_LOGGER = _logging.getLogger(_MODULENAME) +_LOGGER.debug('Initializing: {0}.'.format({_MODULENAME})) + +import ColorGrading.initialize +if ColorGrading.initialize.start(): + try: + import OpenImageIO as oiio + pass + except ImportError as e: + _LOGGER.error(f"invalid import: {e}") + sys.exit(1) +# ------------------------------------------------------------------------ + +operations = {"composite": 0, "extract": 1} +invalidOp = -1 + +parser = argparse.ArgumentParser() +parser.add_argument('--i', type=str, required=True, help='input file') +parser.add_argument('--l', type=str, required=False, help='LUT to composite with screenshot in \'composite\' mode') +parser.add_argument('--op', type=str, required=True, help='operation. Should be \'composite\' or \'extract\'') +parser.add_argument('--s', type=int, required=True, help='size of the LUT (i.e. 16)') +parser.add_argument('--o', type=str, required=True, help='output file') +args = parser.parse_args() + +op = operations.get(args.op, invalidOp) +if op == invalidOp: + _LOGGER.warning("invalid operation") + sys.exit(1) +elif op == 0: + if args.l is None: + _LOGGER.warning("no LUT file specified") + sys.exit() + +# read in the input image +image_buffer = oiio.ImageBuf(args.i) +image_spec = image_buffer.spec() +_LOGGER.info("Input resolution is ", image_buffer.spec().width, " x ", image_buffer.spec().height) + +if op == 0: + out_file_name = args.o + _LOGGER.info("writing %s..." % (out_file_name)) + lut_buffer = oiio.ImageBuf(args.l) + lut_spec = lut_buffer.spec() + _LOGGER.info("Resolution is ", lut_buffer.spec().width, " x ", lut_buffer.spec().height) + if lut_spec.width != lut_spec.height*lut_spec.height: + _LOGGER.warning("invalid input file dimensions. Expect lengthwise LUT with dimension W: s*s X H: s, where s is the size of the LUT") + sys.exit(1) + lut_size = lut_spec.height + out_image_spec = oiio.ImageSpec(image_spec.width, image_spec.height, 3, oiio.TypeFloat) + out_image_buffer = oiio.ImageBuf(out_image_spec) + out_image_buffer.write(out_file_name) + for y in range(out_image_buffer.ybegin, out_image_buffer.yend): + for x in range(out_image_buffer.xbegin, out_image_buffer.xend): + src_pixel = image_buffer.getpixel(x, y) + dst_pixel = (src_pixel[0], src_pixel[1], src_pixel[2]) + if y < lut_spec.height and x < lut_spec.width: + lut_pixel = lut_buffer.getpixel(x, y) + dst_pixel = (lut_pixel[0], lut_pixel[1], lut_pixel[2]) + out_image_buffer.setpixel(x, y, dst_pixel) + out_image_buffer.write(out_file_name) +elif op == 1: + out_file_name = args.o + _LOGGER.info("writing %s..." % (out_file_name)) + lut_size = args.s + lut_spec = oiio.ImageSpec(lut_size*lut_size, lut_size, 3, oiio.TypeFloat) + lut_buffer = oiio.ImageBuf(lut_spec) + for y in range(lut_buffer.ybegin, lut_buffer.yend): + for x in range(lut_buffer.xbegin, lut_buffer.xend): + src_pixel = image_buffer.getpixel(x, y) + dst_pixel = (src_pixel[0], src_pixel[1], src_pixel[2]) + lut_buffer.setpixel(x, y, dst_pixel) + lut_buffer.write(out_file_name) \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/lut_helper.py b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/lut_helper.py new file mode 100644 index 0000000000..da774ffd1a --- /dev/null +++ b/Gems/Atom/Feature/Common/Editor/Scripts/ColorGrading/lut_helper.py @@ -0,0 +1,185 @@ +# coding:utf-8 +#!/usr/bin/python +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# +# lut_helper.py + +import sys +import os +import argparse +import math +import site +import pathlib +from pathlib import Path +import logging as _logging +import numpy as np +from pathlib import Path + +# ------------------------------------------------------------------------ +_MODULENAME = 'ColorGrading.lut_helper' + +_LOGGER = _logging.getLogger(_MODULENAME) +_LOGGER.debug('Initializing: {0}.'.format({_MODULENAME})) + +import ColorGrading.initialize +if ColorGrading.initialize.start(): + try: + import OpenImageIO as oiio + pass + except ImportError as e: + _LOGGER.error(f"invalid import: {e}") + sys.exit(1) +# ------------------------------------------------------------------------ + + +# ------------------------------------------------------------------------ +# Transform from high dynamic range to normalized +from ColorGrading import inv_shaper_transform + +# Transform from normalized range to high dynamic range +from ColorGrading import shaper_transform + +# utils +from ColorGrading import get_uv_coord +from ColorGrading import log2 +from ColorGrading import is_power_of_two + +shaper_presets = {"Log2-48nits": (-6.5, 6.5), + "Log2-1000nits": (-12.0, 10.0), + "Log2-2000nits": (-12.0, 11.0), + "Log2-4000nits": (-12.0, 12.0)} + +def transform_exr(image_buffer, out_image_buffer, op, out_path, write_exr): + # Set the destination image pixels by applying the shaperfunction + for y in range(out_image_buffer.ybegin, out_image_buffer.yend): + for x in range(out_image_buffer.xbegin, out_image_buffer.xend): + src_pixel = image_buffer.getpixel(x, y) + # _LOGGER.debug(f'src_pixel is: {src_pixel}') + if op == 0: + dst_pixel = (inv_shaper_transform(bias, scale, src_pixel[0]), + inv_shaper_transform(bias, scale, src_pixel[1]), + inv_shaper_transform(bias, scale, src_pixel[2])) + out_image_buffer.setpixel(x, y, dst_pixel) + elif op == 1: + dst_pixel = (shaper_transform(bias, scale, src_pixel[0]), + shaper_transform(bias, scale, src_pixel[1]), + shaper_transform(bias, scale, src_pixel[2])) + out_image_buffer.setpixel(x, y, dst_pixel) + else: + # Unspecified operation. Just write zeroes + out_image_buffer.setpixel(x, y, 0.0, 0.0, 0.0) + + if write_exr: + _LOGGER.info(f"writing {out_path}.exr ...") + out_image_buffer.write(out_path + '.exr', "float") + + return out_image_buffer + + +########################################################################### +# Main Code Block, runs this script as main (testing) +# ------------------------------------------------------------------------- +if __name__ == '__main__': + """Run this file as main""" + + operations = {"pre-grading": 0, "post-grading": 1} + + parser = argparse.ArgumentParser() + parser.add_argument('--i', type=str, required=True, help='input file') + parser.add_argument('--shaper', type=str, required=True, + help='shaper preset. Should be one of \'Log2-48nits\', \'Log2-1000nits\', \'Log2-2000nits\', \'Log2-4000nits\'') + parser.add_argument('--op', type=str, required=True, help='operation. Should be \'pre-grading\' or \'post-grading\'') + parser.add_argument('--o', type=str, required=True, help='output file') + parser.add_argument('-e', dest='writeExr', action='store_true', help='output lut as exr file (float)') + parser.add_argument('-l', dest='write3dl', action='store_true', help='output lut as .3dl file') + parser.add_argument('-a', dest='writeAsset', action='store_true', help='write out lut as O3dE .azasset file') + args = parser.parse_args() + + # Check for valid shaper type + invalid_shaper = (0, 0) + invalid_op = -1 + + shaper_limits = shaper_presets.get(args.shaper, invalid_shaper) + if shaper_limits == invalid_shaper: + _LOGGER.error("invalid shaper") + sys.exit(1) + op = operations.get(args.op, invalid_op) + if op == invalid_op: + _LOGGER.error("invalid operation") + sys.exit(1) + + # input validation + input_file = Path(args.i) + if input_file.is_file(): + # file exists + pass + else: + FILE_ERROR_MSG = f'File does not exist: {input_file}' + _LOGGER.error(FILE_ERROR_MSG) + #raise FileNotFoundError(FILE_ERROR_MSG) + sys.exit(1) + + # Read input image + #buf = oiio.ImageBuf("linear_lut.exr") + image_buffer = oiio.ImageBuf(args.i) + image_spec = image_buffer.spec() + + _LOGGER.info(f"Resolution is x:{image_spec.height}, y:{image_spec.width}") + + if image_spec.height < 16: + _LOGGER.info(f"invalid input file dimensions: x is {image_spec.height}. Expected LUT with height dimension >= 16 pixels") + sys.exit(1) + + if not is_power_of_two(image_buffer.spec().height): + _LOGGER.info(f"invalid input file dimensions: {buf.spec().height}. Expected LUT dimensions power of 2: 16, 32, or 64 height") + sys.exit(1) + + elif image_spec.width != image_spec.height * image_spec.height: + _LOGGER.info("invalid input file dimensions. Expect lengthwise LUT with dimension W: s*s X H: s, where s is the size of the LUT") + sys.exit(1) + + lut_size = image_spec.height + + middle_grey = 0.18 + lower_stops = shaper_limits[0] + upper_stops = shaper_limits[1] + + middle_grey = math.log(middle_grey, 2.0) + log_min = middle_grey + lower_stops + log_max = middle_grey + upper_stops + + scale = 1.0 / (log_max - log_min) + bias = -scale * log_min + + _LOGGER.info("Shaper: range in stops %.1f -> %.1f (linear: %.3f -> %.3f) logMin %.3f logMax %.3f scale %.3f bias %.3f\n" % + (lower_stops, upper_stops, middle_grey * math.pow(2.0, lower_stops), middle_grey * math.pow(2.0, upper_stops), + log_min, log_max, scale, bias)) + + buffer_name = Path(args.o).name + + # Create a writing image + out_image_spec = oiio.ImageSpec(image_buffer.spec().width, image_buffer.spec().height, 3, "float") + out_image_buffer = oiio.ImageBuf(out_image_spec) + + # write out the modified exr file + write_exr = False + if args.writeExr: + write_exr = True + out_image_buffer = transform_exr(image_buffer, out_image_buffer, op, args.o, write_exr) + + from ColorGrading.exr_to_3dl_azasset import generate_lut_values + lut_intervals, lut_values = generate_lut_values(image_spec, out_image_buffer) + + if args.write3dl: + from ColorGrading.exr_to_3dl_azasset import write_3DL + write_3DL(args.o, lut_size, lut_intervals, lut_values) + + if args.writeAsset: + from ColorGrading import AZASSET_LUT + from ColorGrading.from_3dl_to_azasset import write_azasset + write_azasset(args.o, lut_intervals, lut_values, AZASSET_LUT) diff --git a/Gems/Atom/Feature/Common/Editor/Scripts/bootstrap.py b/Gems/Atom/Feature/Common/Editor/Scripts/bootstrap.py new file mode 100644 index 0000000000..90dfe6de8f --- /dev/null +++ b/Gems/Atom/Feature/Common/Editor/Scripts/bootstrap.py @@ -0,0 +1,31 @@ +# coding:utf-8 +#!/usr/bin/python +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# +""" +Boostraps O3DE editor access to the python scripts within Atom.Feature.Commmon +Example: color grading related scripts +""" +# ------------------------------------------------------------------------ +# standard imports +import os +import inspect +import site +from pathlib import Path +# ------------------------------------------------------------------------ +_MODULENAME = 'Gems.Atom.Feature.Common.bootstrap' + +# script directory +_MODULE_PATH = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))) +_MODULE_PATH = Path(_MODULE_PATH) +site.addsitedir(_MODULE_PATH.resolve()) + +from ColorGrading import initialize_logger +_LOGGER = initialize_logger(_MODULENAME, log_to_file=False) +_LOGGER.info(f'site.addsitedir({_MODULE_PATH.resolve()})') +# ------------------------------------------------------------------------ \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/.gitignore b/Gems/Atom/Feature/Common/Tools/ColorGrading/.gitignore new file mode 100644 index 0000000000..60fead7091 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/.gitignore @@ -0,0 +1 @@ +.solutions \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-1000nits_16_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-1000nits_16_LUT.exr new file mode 100644 index 0000000000..744d53464e --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-1000nits_16_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9f3506348d675c15d65e6f4a5cf1b773144cf5c8a2227c1f985806e6afe4b1 +size 1042 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-1000nits_32_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-1000nits_32_LUT.exr new file mode 100644 index 0000000000..588c73a0cd --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-1000nits_32_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a269460a16993fce1d1973bccf53bc7f88a66ba1bad7b444b258bcd7b26527f8 +size 3326 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-1000nits_64_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-1000nits_64_LUT.exr new file mode 100644 index 0000000000..4a75163a96 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-1000nits_64_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:767ebd1863954ac04c16a68ec90c31c1ed15dfda26239dd0f0159fa279100661 +size 18642 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-2000nits_16_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-2000nits_16_LUT.exr new file mode 100644 index 0000000000..64be39f369 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-2000nits_16_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05e1fb5ea519499012cfe11b4fa245396e6ae49e476fe7a5951b20bf28a367b1 +size 1063 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-2000nits_32_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-2000nits_32_LUT.exr new file mode 100644 index 0000000000..9e87af6e5e --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-2000nits_32_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52386c8753b282e5ff428819e79a5ad1675ad86cdf75c8402ea1ab41e630ac98 +size 3328 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-2000nits_64_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-2000nits_64_LUT.exr new file mode 100644 index 0000000000..00ad138501 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-2000nits_64_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d7bc8a85561d37aaf3f5ed6547ce939759cd00db96874bc9e6107c3ee12e23 +size 18421 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-4000nits_16_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-4000nits_16_LUT.exr new file mode 100644 index 0000000000..4e024dad46 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-4000nits_16_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937b4d3388f27947886f49cd935663142806bce38768b83c89b8765c03bbd67b +size 1047 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-4000nits_32_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-4000nits_32_LUT.exr new file mode 100644 index 0000000000..39ab05ffcb --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-4000nits_32_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce932c419c11ed2366cd94e27547f65d11abcd604e5262583a36e661d4ad41b +size 3329 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-4000nits_64_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-4000nits_64_LUT.exr new file mode 100644 index 0000000000..6c876fd065 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-4000nits_64_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8786dc9bcf1afe914fafaac63659e3d0fcdefa453c5bee153fa915094c0df132 +size 18604 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-48nits_16_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-48nits_16_LUT.exr new file mode 100644 index 0000000000..4ae30ddf60 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-48nits_16_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:155b3ba516d77fcfc9a77a7e96acbf450759d87ee7f042730d1d75b0f2628902 +size 1038 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-48nits_32_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-48nits_32_LUT.exr new file mode 100644 index 0000000000..44355677e5 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-48nits_32_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea718b119139cc8a55b944555ab0b0ad9d012a676c5e4c63bd338f26e8290a01 +size 3309 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-48nits_64_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-48nits_64_LUT.exr new file mode 100644 index 0000000000..32a6600e64 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/base_Log2-48nits_64_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75340a9238177b5bd3b8f8a3d4864fc75a613ec29222ecf7c90bc5e3b4bc8416 +size 18349 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/from_ACEScg_to_sRGB.icc b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/from_ACEScg_to_sRGB.icc new file mode 100644 index 0000000000..ea10bec0b5 Binary files /dev/null and b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/from_ACEScg_to_sRGB.icc differ diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/linear_16_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/linear_16_LUT.exr new file mode 100644 index 0000000000..24011a3d32 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/linear_16_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6305b5c0cedc945824906aa207bb8f182c811aee12a2f8ffd2ed870b2a60aa7b +size 2758 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/linear_32_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/linear_32_LUT.exr new file mode 100644 index 0000000000..f824da7cb6 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/linear_32_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c037b1b8118c85ecf288c6ecd2e870b5c1595c486029cc9e7c3348fcd777d1 +size 3228 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/linear_64_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/linear_64_LUT.exr new file mode 100644 index 0000000000..c71f0d8baf --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/linear_64_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0612c6a43bec9d310da1dbfcba55f8e254e02af9fafca9201573e54dd24fa7f +size 18289 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/Nuke_Test_Extreme_Grade.nk b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/Nuke_Test_Extreme_Grade.nk new file mode 100644 index 0000000000..7d2330973f --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/Nuke_Test_Extreme_Grade.nk @@ -0,0 +1,230 @@ +#! C:/Program Files/Nuke13.0v3/nuke-13.0.3.dll -nx +version 13.0 v3 +define_window_layout_xml { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +} +Root { + inputs 0 + name C:/Depot/o3de/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/Nuke_Test_Extreme_Grade.nk + project_directory "\"C:/Depot/o3de-engine/Gems/AtomLyIntegration/CommonFeatures/Tools/ColorGrading/TestData/Nuke/" + format "2048 1556 0 0 2048 1556 1 2K_Super_35(full-ap)" + proxy_type scale + proxy_format "1024 778 0 0 1024 778 1 1K_Super_35(full-ap)" + colorManagement OCIO + OCIO_config aces_1.0.3 + defaultViewerLUT "OCIO LUTs" + workingSpaceLUT scene_linear + monitorLut ACES/Rec.709 + monitorOutLUT "sRGB (ACES)" + int8Lut matte_paint + int16Lut texture_paint + logLut compositing_log + floatLut scene_linear +} +Read { + inputs 0 + file_type exr + file C:/Depot/o3de/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/linear_32_LUT.exr + format "1024 32 0 0 1024 32 1 " + origset true + colorspace data + name Read_Linear_LUT_32 + xpos -846 + ypos 10 +} +set Nb1e9800 [stack 0] +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer1 + xpos -847 + ypos 135 +} +push $Nb1e9800 +OCIOFileTransform { + file C:/Depot/o3de-engine/Tools/ColorGrading/OpenColorIO-Configs/aces_1.0.3/luts/Log2_48_nits_Shaper_to_linear.spi1d + working_space scene_linear + name Log2_48_nits_Shaper_to_linear + xpos -710 + ypos 46 +} +set Nb1e9000 [stack 0] +Transform { + center {1024 778} + name Transform_Position_LUT + xpos -579 + ypos 3 +} +set Nb1e8c00 [stack 0] +Read { + inputs 0 + file_type exr + file C:/Depot/o3de/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/displaymapperpassthrough.exr + format "2802 1854 0 0 2802 1854 1 " + origset true + name Read_DisplayMapperPassthrough + xpos -577 + ypos -119 +} +ZMerge { + inputs 2 + name ZMerge_Combine + xpos -413 + ypos -83 +} +set Nb18fc00 [stack 0] +HueShift { + ingray 0.136 + outgray 0.31 + saturation 2 + color_saturation 0.3 + hue_rotation -150 + brightness 0.81 + name HueShift1 + xpos -256 + ypos -83 +} +set Nb18f800 [stack 0] +OCIOCDLTransform { + saturation 1.23 + working_space scene_linear + name INV_Log2_48_nits_Shaper_to_linear + xpos -86 + ypos -83 +} +set Nb18f400 [stack 0] +Crop { + box {0 0 1024 32} + reformat true + crop false + name Crop1 + xpos -86 + ypos 32 +} +set Nb18f000 [stack 0] +OCIOFileTransform { + file C:/Depot/o3de-engine/Tools/ColorGrading/OpenColorIO-Configs/aces_1.0.3/luts/Log2_48_nits_Shaper_to_linear.spi1d + direction inverse + working_space reference + name OCIOFileTransform2 + xpos 84 + ypos 32 +} +Write { + file C:/Depot/o3de/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/test-extreme-grade_inv-Log2-48nits_32_LUT.exr + colorspace data + raw true + file_type exr + write_ACES_compliant_EXR true + datatype "32 bit float" + first_part rgba + version 8 + in_colorspace scene_linear + out_colorspace scene_linear + name Write_RAW_LUT + xpos 242 + ypos 20 +} +Viewer { + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer7 + xpos 242 + ypos 135 +} +push $Nb18f400 +Write { + file C:/Depot/o3de/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/Shot_post_test-extreme-grade.exr + colorspace compositing_linear + file_type exr + write_ACES_compliant_EXR true + datatype "32 bit float" + first_part rgba + version 9 + name Write_Shot_Grade_Comp + selected true + xpos 353 + ypos -95 +} +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer8 + xpos 357 + ypos 135 +} +push $Nb1e9000 +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer2 + xpos -710 + ypos 137 +} +push $Nb1e8c00 +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer3 + xpos -579 + ypos 135 +} +push $Nb18fc00 +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer4 + xpos -413 + ypos 133 +} +push $Nb18f800 +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer5 + xpos -254 + ypos 133 +} +push $Nb18f000 +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer6 + xpos -86 + ypos 134 +} diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/test-extreme-grade_inv-Log2-48nits_32_LUT.3dl b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/test-extreme-grade_inv-Log2-48nits_32_LUT.3dl new file mode 100644 index 0000000000..00a68043ad --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/test-extreme-grade_inv-Log2-48nits_32_LUT.3dl @@ -0,0 +1,32769 @@ +0 33 66 99 132 165 198 231 264 297 330 363 396 429 462 495 528 561 594 627 660 693 726 759 792 825 858 891 924 957 990 1023 +0 0 0 +0 40 0 +0 176 0 +0 310 0 +0 444 0 +0 578 0 +0 711 0 +0 844 0 +0 976 0 +0 1109 0 +0 1241 0 +0 1374 0 +0 1506 0 +0 1638 0 +0 1770 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +235 0 150 +0 22 0 +0 162 0 +0 300 0 +0 437 0 +0 572 0 +0 707 0 +0 841 0 +0 974 0 +0 1107 0 +0 1240 0 +0 1373 0 +0 1505 0 +0 1638 0 +0 1770 0 +0 1902 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +474 0 352 +349 0 225 +98 143 0 +0 286 0 +0 427 0 +0 565 0 +0 701 0 +0 836 0 +0 971 0 +0 1105 0 +0 1238 0 +0 1371 0 +0 1504 0 +0 1637 0 +0 1769 0 +0 1902 0 +0 2034 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +672 0 529 +595 0 448 +467 117 309 +205 267 14 +0 412 0 +0 554 0 +0 693 0 +0 831 0 +0 967 0 +0 1102 0 +0 1236 0 +0 1370 0 +0 1503 0 +0 1636 0 +0 1769 0 +0 1901 0 +0 2034 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +848 0 693 +797 0 638 +719 78 551 +588 240 402 +318 393 67 +0 540 0 +0 683 0 +0 823 0 +0 961 0 +0 1097 0 +0 1233 0 +0 1367 0 +0 1501 0 +0 1635 0 +0 1768 0 +0 1901 0 +0 2033 0 +0 2165 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1010 0 848 +975 0 809 +924 22 751 +845 201 661 +712 365 502 +435 520 130 +0 669 0 +0 813 0 +0 953 0 +0 1092 0 +0 1228 0 +0 1364 0 +0 1499 0 +0 1633 0 +0 1766 0 +0 1900 0 +0 2033 0 +0 2165 0 +0 2297 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1163 0 996 +1139 0 968 +1104 0 928 +1052 143 869 +972 326 775 +837 493 609 +555 649 202 +0 798 0 +0 943 0 +0 1084 0 +0 1223 0 +0 1360 0 +0 1496 0 +0 1631 0 +0 1765 0 +0 1898 0 +0 2032 0 +0 2165 0 +0 2297 0 +0 2429 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1311 0 1139 +1293 0 1119 +1269 0 1091 +1233 52 1050 +1181 267 990 +1101 452 893 +965 621 721 +678 778 283 +0 928 0 +0 1073 0 +0 1215 0 +0 1354 0 +0 1491 0 +0 1627 0 +0 1762 0 +0 1897 0 +0 2030 0 +0 2163 0 +0 2297 0 +0 2429 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1454 0 1280 +1441 0 1265 +1424 0 1245 +1399 0 1216 +1363 174 1175 +1311 393 1113 +1230 580 1015 +1093 750 837 +804 908 374 +0 1059 0 +0 1204 0 +0 1346 0 +0 1486 0 +0 1623 0 +0 1759 0 +0 1894 0 +0 2029 0 +0 2163 0 +0 2295 0 +0 2429 0 +0 2561 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1595 0 1418 +1585 0 1407 +1572 0 1393 +1554 0 1372 +1530 9 1343 +1494 298 1301 +1441 520 1239 +1360 709 1139 +1222 880 957 +931 1039 472 +0 1190 0 +0 1336 0 +0 1478 0 +0 1617 0 +0 1755 0 +0 1891 0 +0 2026 0 +0 2161 0 +0 2295 0 +0 2427 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1733 0 1555 +1726 0 1547 +1716 0 1536 +1703 0 1521 +1686 0 1501 +1661 130 1471 +1625 424 1429 +1572 649 1366 +1491 839 1265 +1352 1011 1080 +1059 1170 577 +0 1321 0 +0 1467 0 +0 1610 0 +0 1749 0 +0 1887 0 +0 2023 0 +0 2159 0 +0 2293 0 +0 2427 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1869 0 1690 +1864 0 1684 +1857 0 1676 +1848 0 1666 +1835 0 1651 +1817 0 1630 +1792 254 1601 +1756 552 1558 +1704 778 1494 +1622 970 1392 +1483 1141 1205 +1188 1301 687 +0 1453 0 +0 1599 0 +0 1741 0 +0 1881 0 +0 2019 0 +0 2155 0 +0 2291 0 +0 2425 0 +0 2559 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2005 0 1825 +2001 0 1821 +1996 0 1815 +1989 0 1807 +1979 0 1796 +1966 0 1781 +1949 0 1760 +1924 379 1731 +1888 681 1688 +1835 908 1624 +1753 1100 1521 +1614 1272 1332 +1318 1432 803 +0 1584 0 +0 1731 0 +0 1873 0 +0 2013 0 +0 2151 0 +0 2287 0 +0 2423 0 +0 2557 0 +0 2691 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2139 0 1959 +2137 0 1956 +2133 0 1951 +2127 0 1945 +2121 0 1937 +2111 0 1927 +2099 0 1912 +2081 0 1891 +2055 506 1861 +2019 810 1818 +1967 1038 1754 +1885 1231 1650 +1745 1404 1460 +1448 1564 922 +0 1716 0 +0 1863 0 +0 2005 0 +0 2145 0 +0 2283 0 +0 2419 0 +0 2555 0 +0 2689 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2273 0 2093 +2271 0 2091 +2269 0 2087 +2265 0 2083 +2259 0 2077 +2253 0 2069 +2243 0 2057 +2231 0 2043 +2213 60 2022 +2187 635 1992 +2151 941 1949 +2099 1169 1884 +2016 1363 1781 +1877 1536 1589 +1579 1696 1044 +0 1848 0 +0 1995 0 +0 2137 0 +0 2277 0 +0 2415 0 +0 2551 0 +0 2687 0 +0 2821 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2407 0 2225 +2405 0 2223 +2403 0 2221 +2401 0 2219 +2397 0 2213 +2391 0 2207 +2385 0 2199 +2375 0 2189 +2361 0 2173 +2345 182 2153 +2319 764 2123 +2283 1071 2081 +2231 1301 2015 +2149 1494 1911 +2008 1667 1719 +1710 1828 1168 +0 1980 0 +0 2127 0 +0 2269 0 +0 2409 0 +0 2547 0 +0 2683 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2539 0 2359 +2539 0 2357 +2537 0 2355 +2535 0 2353 +2533 0 2349 +2529 0 2345 +2523 0 2339 +2517 0 2331 +2507 0 2321 +2493 0 2305 +2475 306 2285 +2451 894 2255 +2415 1202 2211 +2363 1432 2147 +2279 1626 2042 +2141 1799 1850 +1842 1960 1295 +0 2113 0 +0 2259 0 +0 2401 0 +0 2541 0 +0 2679 0 +0 2815 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4015 0 +2673 0 2491 +2671 0 2491 +2671 0 2489 +2669 0 2487 +2667 0 2485 +2665 0 2481 +2661 0 2477 +2655 0 2471 +2649 0 2463 +2639 0 2453 +2625 0 2437 +2607 433 2415 +2583 1025 2387 +2547 1334 2343 +2493 1564 2279 +2411 1758 2173 +2273 1931 1981 +1973 2091 1423 +0 2245 0 +0 2391 0 +0 2533 0 +0 2673 0 +0 2811 0 +0 2947 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2805 0 2623 +2805 0 2623 +2803 0 2623 +2803 0 2621 +2801 0 2619 +2799 0 2617 +2797 0 2613 +2793 0 2609 +2787 0 2603 +2781 0 2595 +2771 0 2583 +2757 0 2569 +2741 560 2547 +2715 1155 2517 +2679 1465 2475 +2625 1696 2409 +2543 1890 2305 +2403 2063 2111 +2105 2223 1552 +0 2377 0 +0 2523 0 +0 2665 0 +0 2805 0 +0 2943 0 +0 3079 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +2937 0 2757 +2937 0 2755 +2937 0 2755 +2935 0 2755 +2935 0 2753 +2933 0 2751 +2931 0 2749 +2929 0 2745 +2925 0 2741 +2919 0 2735 +2913 0 2727 +2903 0 2715 +2891 0 2701 +2873 689 2679 +2847 1287 2649 +2811 1597 2607 +2759 1828 2541 +2675 2022 2437 +2535 2195 2243 +2237 2355 1681 +0 2509 0 +0 2655 0 +0 2797 0 +0 2937 0 +0 3075 0 +0 3211 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3071 0 2889 +3069 0 2889 +3069 0 2887 +3069 0 2887 +3067 0 2885 +3067 0 2885 +3065 0 2883 +3063 0 2881 +3061 0 2877 +3057 0 2873 +3051 0 2867 +3045 0 2859 +3035 0 2847 +3023 0 2833 +3005 819 2811 +2979 1418 2781 +2943 1729 2739 +2891 1959 2673 +2807 2153 2569 +2667 2327 2375 +2369 2487 1811 +0 2641 0 +0 2787 0 +0 2929 0 +0 3069 0 +0 3207 0 +0 3343 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4015 0 +3203 0 3021 +3203 0 3021 +3203 0 3021 +3201 0 3019 +3201 0 3019 +3201 0 3017 +3199 0 3017 +3197 0 3015 +3195 0 3013 +3193 0 3009 +3189 0 3005 +3183 0 2999 +3177 0 2991 +3167 0 2979 +3155 0 2965 +3137 949 2943 +3111 1550 2913 +3075 1860 2871 +3023 2091 2805 +2939 2285 2701 +2801 2459 2507 +2501 2619 1942 +0 2773 0 +0 2919 0 +0 3061 0 +0 3201 0 +0 3339 0 +0 3475 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3335 0 3153 +3335 0 3153 +3335 0 3153 +3335 0 3153 +3333 0 3151 +3333 0 3151 +3333 0 3151 +3331 0 3149 +3329 0 3147 +3327 0 3145 +3325 0 3141 +3321 0 3137 +3315 0 3131 +3309 0 3123 +3299 0 3111 +3287 0 3097 +3269 1080 3075 +3243 1682 3045 +3207 1992 3003 +3155 2223 2937 +3073 2417 2833 +2933 2591 2639 +2633 2751 2073 +0 2905 0 +0 3051 0 +0 3193 0 +0 3333 0 +0 3471 0 +0 3609 0 +0 3743 0 +0 3877 0 +0 4011 0 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3465 0 3283 +3465 0 3283 +3465 0 3283 +3463 0 3281 +3461 0 3279 +3459 0 3277 +3457 0 3273 +3453 0 3269 +3447 0 3263 +3441 0 3255 +3431 0 3243 +3419 0 3229 +3401 1211 3207 +3375 1813 3177 +3339 2125 3135 +3287 2355 3069 +3205 2549 2965 +3065 2723 2771 +2765 2885 2205 +0 3037 0 +0 3183 0 +0 3327 0 +0 3465 0 +0 3603 0 +0 3741 0 +0 3875 0 +0 4009 0 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3597 0 3415 +3597 0 3415 +3597 0 3415 +3595 0 3413 +3593 0 3411 +3591 0 3409 +3589 0 3405 +3585 0 3401 +3579 0 3395 +3573 0 3387 +3563 0 3375 +3551 0 3361 +3533 1342 3339 +3507 1945 3309 +3471 2257 3267 +3419 2487 3201 +3337 2681 3097 +3197 2855 2903 +2897 3017 2337 +0 3169 0 +0 3315 0 +0 3459 0 +0 3599 0 +0 3735 0 +0 3873 0 +0 4007 0 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3547 +3729 0 3547 +3729 0 3547 +3727 0 3545 +3725 0 3543 +3723 0 3541 +3721 0 3537 +3717 0 3533 +3711 0 3527 +3705 0 3519 +3695 0 3507 +3683 0 3493 +3665 1474 3471 +3639 2077 3441 +3603 2389 3399 +3551 2619 3333 +3469 2813 3229 +3329 2987 3035 +3029 3149 2467 +0 3301 0 +0 3447 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3863 0 3683 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3861 0 3679 +3861 0 3679 +3859 0 3677 +3857 0 3675 +3855 0 3673 +3853 0 3669 +3849 0 3665 +3845 0 3659 +3837 0 3651 +3827 0 3641 +3815 0 3625 +3797 1605 3603 +3771 2209 3573 +3735 2521 3531 +3683 2751 3465 +3601 2947 3361 +3461 3119 3167 +3161 3281 2599 +0 3433 0 +0 3579 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3993 0 3811 +3993 0 3811 +3991 0 3809 +3991 0 3807 +3987 0 3805 +3985 0 3801 +3981 0 3797 +3977 0 3791 +3969 0 3783 +3959 0 3773 +3947 0 3757 +3929 1737 3735 +3903 2341 3705 +3867 2653 3663 +3815 2883 3597 +3733 3079 3493 +3593 3251 3299 +3293 3413 2731 +0 3565 0 +0 3711 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3943 +4095 0 3941 +4095 0 3939 +4095 0 3937 +4095 0 3933 +4095 0 3929 +4095 0 3923 +4095 0 3915 +4091 0 3905 +4079 0 3889 +4061 1869 3867 +4035 2473 3839 +3999 2785 3795 +3947 3015 3729 +3865 3211 3625 +3725 3383 3431 +3425 3545 2863 +0 3697 0 +0 3843 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4069 +4095 0 4065 +4095 0 4061 +4095 0 4055 +4095 0 4047 +4095 0 4037 +4095 0 4021 +4095 2001 4001 +4095 2605 3971 +4095 2917 3927 +4079 3149 3861 +3997 3343 3757 +3857 3515 3563 +3557 3677 2995 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2133 4095 +4095 2737 4095 +4095 3049 4059 +4095 3281 3993 +4095 3475 3889 +3989 3649 3695 +3689 3809 3127 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2265 4095 +4095 2869 4095 +4095 3181 4095 +4095 3413 4095 +4095 3607 4021 +4095 3781 3827 +3821 3941 3259 +0 0 13 +0 54 0 +0 186 0 +0 318 0 +0 450 0 +0 582 0 +0 714 0 +0 846 0 +0 978 0 +0 1110 0 +0 1242 0 +0 1374 0 +0 1506 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +258 0 216 +36 36 36 +0 172 0 +0 308 0 +0 442 0 +0 576 0 +0 710 0 +0 843 0 +0 976 0 +0 1108 0 +0 1241 0 +0 1373 0 +0 1506 0 +0 1638 0 +0 1770 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +488 0 395 +367 11 282 +129 154 65 +0 294 0 +0 432 0 +0 569 0 +0 704 0 +0 839 0 +0 973 0 +0 1106 0 +0 1239 0 +0 1372 0 +0 1505 0 +0 1637 0 +0 1770 0 +0 1902 0 +0 2034 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +681 0 560 +606 0 484 +481 128 357 +230 275 101 +0 418 0 +0 559 0 +0 697 0 +0 833 0 +0 969 0 +0 1103 0 +0 1237 0 +0 1370 0 +0 1503 0 +0 1636 0 +0 1769 0 +0 1902 0 +0 2034 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +854 0 714 +804 0 662 +727 91 580 +599 249 441 +337 399 146 +0 544 0 +0 686 0 +0 826 0 +0 963 0 +0 1099 0 +0 1234 0 +0 1368 0 +0 1502 0 +0 1635 0 +0 1768 0 +0 1901 0 +0 2033 0 +0 2165 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1015 0 863 +980 0 825 +929 36 770 +851 210 683 +720 372 534 +450 525 199 +0 672 0 +0 815 0 +0 955 0 +0 1093 0 +0 1229 0 +0 1365 0 +0 1499 0 +0 1633 0 +0 1767 0 +0 1900 0 +0 2033 0 +0 2165 0 +0 2297 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1167 0 1007 +1142 0 980 +1107 0 941 +1056 154 883 +977 333 793 +844 498 634 +567 652 262 +0 801 0 +0 945 0 +0 1085 0 +0 1224 0 +0 1361 0 +0 1496 0 +0 1631 0 +0 1765 0 +0 1899 0 +0 2032 0 +0 2165 0 +0 2297 0 +0 2429 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1313 0 1147 +1296 0 1128 +1271 0 1100 +1236 65 1060 +1184 275 1001 +1104 458 907 +969 625 741 +687 781 334 +0 930 0 +0 1075 0 +0 1216 0 +0 1355 0 +0 1492 0 +0 1628 0 +0 1763 0 +0 1897 0 +0 2030 0 +0 2163 0 +0 2297 0 +0 2429 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1456 0 1286 +1443 0 1271 +1425 0 1251 +1401 0 1223 +1365 184 1182 +1313 399 1122 +1233 584 1025 +1097 753 853 +810 910 416 +0 1060 0 +0 1206 0 +0 1347 0 +0 1486 0 +0 1624 0 +0 1760 0 +0 1894 0 +0 2029 0 +0 2163 0 +0 2295 0 +0 2429 0 +0 2561 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1596 0 1422 +1586 0 1412 +1574 0 1397 +1556 0 1377 +1531 23 1348 +1495 306 1307 +1443 525 1245 +1362 712 1147 +1225 882 969 +936 1040 506 +0 1191 0 +0 1337 0 +0 1479 0 +0 1618 0 +0 1755 0 +0 1891 0 +0 2026 0 +0 2161 0 +0 2295 0 +0 2427 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1734 0 1558 +1727 0 1550 +1717 0 1539 +1704 0 1525 +1687 0 1504 +1662 141 1475 +1626 430 1434 +1574 652 1371 +1492 841 1271 +1354 1012 1089 +1063 1171 604 +0 1322 0 +0 1468 0 +0 1610 0 +0 1750 0 +0 1887 0 +0 2023 0 +0 2159 0 +0 2293 0 +0 2427 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1870 0 1693 +1865 0 1687 +1858 0 1679 +1848 0 1668 +1836 0 1653 +1818 0 1633 +1793 262 1604 +1757 556 1561 +1704 781 1498 +1623 971 1397 +1485 1142 1212 +1191 1302 709 +0 1453 0 +0 1599 0 +0 1742 0 +0 1881 0 +0 2019 0 +0 2155 0 +0 2291 0 +0 2425 0 +0 2559 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2005 0 1827 +2001 0 1822 +1996 0 1817 +1989 0 1809 +1980 0 1798 +1967 0 1783 +1949 0 1762 +1924 386 1733 +1888 684 1690 +1836 910 1627 +1754 1101 1524 +1615 1273 1337 +1320 1433 819 +0 1585 0 +0 1731 0 +0 1874 0 +0 2013 0 +0 2151 0 +0 2287 0 +0 2423 0 +0 2557 0 +0 2691 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2139 0 1960 +2137 0 1957 +2133 0 1953 +2127 0 1947 +2121 0 1939 +2111 0 1928 +2099 0 1913 +2081 0 1892 +2055 511 1863 +2020 813 1820 +1967 1040 1756 +1885 1232 1653 +1746 1405 1464 +1450 1565 935 +0 1717 0 +0 1863 0 +0 2005 0 +0 2145 0 +0 2283 0 +0 2419 0 +0 2555 0 +0 2689 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2273 0 2093 +2271 0 2091 +2269 0 2087 +2265 0 2083 +2259 0 2077 +2253 0 2069 +2243 0 2059 +2231 0 2044 +2213 72 2023 +2187 638 1993 +2151 943 1950 +2099 1171 1886 +2017 1363 1783 +1877 1536 1592 +1580 1696 1054 +0 1848 0 +0 1995 0 +0 2137 0 +0 2277 0 +0 2415 0 +0 2551 0 +0 2687 0 +0 2821 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2407 0 2227 +2405 0 2225 +2403 0 2223 +2401 0 2219 +2397 0 2215 +2391 0 2209 +2385 0 2201 +2375 0 2189 +2363 0 2175 +2345 192 2153 +2319 767 2125 +2283 1073 2081 +2231 1302 2017 +2149 1495 1913 +2009 1668 1722 +1711 1828 1176 +0 1980 0 +0 2127 0 +0 2269 0 +0 2409 0 +0 2547 0 +0 2683 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2539 0 2359 +2539 0 2357 +2537 0 2357 +2535 0 2353 +2533 0 2351 +2529 0 2345 +2523 0 2341 +2517 0 2333 +2507 0 2321 +2495 0 2305 +2477 314 2285 +2451 896 2255 +2415 1203 2213 +2363 1433 2147 +2281 1626 2043 +2141 1799 1851 +1842 1960 1301 +0 2113 0 +0 2259 0 +0 2401 0 +0 2541 0 +0 2679 0 +0 2815 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4015 0 +2673 0 2491 +2671 0 2491 +2671 0 2489 +2669 0 2487 +2667 0 2485 +2665 0 2481 +2661 0 2477 +2655 0 2471 +2649 0 2463 +2639 0 2453 +2627 0 2437 +2609 438 2417 +2583 1026 2387 +2547 1334 2343 +2495 1564 2279 +2413 1758 2175 +2273 1931 1982 +1974 2091 1427 +0 2245 0 +0 2391 0 +0 2533 0 +0 2673 0 +0 2811 0 +0 2947 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2805 0 2625 +2805 0 2623 +2803 0 2623 +2803 0 2621 +2801 0 2619 +2799 0 2617 +2797 0 2613 +2793 0 2609 +2787 0 2603 +2781 0 2595 +2771 0 2585 +2759 0 2569 +2741 565 2549 +2715 1157 2519 +2679 1466 2475 +2627 1696 2411 +2543 1890 2305 +2405 2063 2113 +2105 2223 1555 +0 2377 0 +0 2523 0 +0 2665 0 +0 2805 0 +0 2943 0 +0 3079 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +2937 0 2757 +2937 0 2755 +2937 0 2755 +2935 0 2755 +2935 0 2753 +2933 0 2751 +2931 0 2749 +2929 0 2745 +2925 0 2741 +2919 0 2735 +2913 0 2727 +2903 0 2717 +2891 0 2701 +2873 693 2679 +2847 1288 2651 +2811 1597 2607 +2759 1828 2541 +2675 2022 2437 +2537 2195 2243 +2237 2355 1684 +0 2509 0 +0 2655 0 +0 2797 0 +0 2937 0 +0 3075 0 +0 3211 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3071 0 2889 +3071 0 2889 +3069 0 2887 +3069 0 2887 +3069 0 2887 +3067 0 2885 +3065 0 2883 +3063 0 2881 +3061 0 2877 +3057 0 2873 +3051 0 2867 +3045 0 2859 +3035 0 2847 +3023 0 2833 +3005 821 2811 +2979 1419 2781 +2943 1729 2739 +2891 1960 2673 +2807 2153 2569 +2669 2327 2375 +2369 2487 1813 +0 2641 0 +0 2787 0 +0 2929 0 +0 3069 0 +0 3207 0 +0 3343 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4015 0 +3203 0 3021 +3203 0 3021 +3203 0 3021 +3201 0 3019 +3201 0 3019 +3201 0 3019 +3199 0 3017 +3197 0 3015 +3195 0 3013 +3193 0 3009 +3189 0 3005 +3183 0 2999 +3177 0 2991 +3167 0 2979 +3155 0 2965 +3137 951 2943 +3111 1550 2913 +3075 1861 2871 +3023 2091 2805 +2941 2285 2701 +2801 2459 2507 +2501 2619 1944 +0 2773 0 +0 2919 0 +0 3061 0 +0 3201 0 +0 3339 0 +0 3477 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3335 0 3153 +3335 0 3153 +3335 0 3153 +3335 0 3153 +3333 0 3151 +3333 0 3151 +3333 0 3151 +3331 0 3149 +3329 0 3147 +3327 0 3145 +3325 0 3141 +3321 0 3137 +3315 0 3131 +3309 0 3123 +3299 0 3111 +3287 0 3097 +3269 1081 3075 +3243 1682 3045 +3207 1993 3003 +3155 2223 2937 +3073 2417 2833 +2933 2591 2639 +2633 2753 2075 +0 2905 0 +0 3051 0 +0 3193 0 +0 3333 0 +0 3471 0 +0 3609 0 +0 3743 0 +0 3877 0 +0 4011 0 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3465 0 3283 +3465 0 3283 +3465 0 3283 +3463 0 3281 +3461 0 3279 +3459 0 3277 +3457 0 3273 +3453 0 3269 +3447 0 3263 +3441 0 3255 +3431 0 3243 +3419 0 3229 +3401 1212 3207 +3375 1814 3177 +3339 2125 3135 +3287 2355 3069 +3205 2549 2965 +3065 2723 2771 +2765 2885 2205 +0 3037 0 +0 3183 0 +0 3327 0 +0 3467 0 +0 3603 0 +0 3741 0 +0 3875 0 +0 4009 0 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3597 0 3415 +3597 0 3415 +3597 0 3415 +3595 0 3413 +3593 0 3411 +3591 0 3409 +3589 0 3405 +3585 0 3401 +3579 0 3395 +3573 0 3387 +3563 0 3375 +3551 0 3361 +3533 1343 3339 +3507 1946 3309 +3471 2257 3267 +3419 2487 3201 +3337 2681 3097 +3197 2855 2903 +2897 3017 2337 +0 3169 0 +0 3315 0 +0 3459 0 +0 3599 0 +0 3735 0 +0 3873 0 +0 4007 0 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3729 0 3547 +3729 0 3547 +3727 0 3545 +3725 0 3543 +3723 0 3541 +3721 0 3537 +3717 0 3533 +3711 0 3527 +3705 0 3519 +3695 0 3507 +3683 0 3493 +3665 1474 3471 +3639 2077 3441 +3603 2389 3399 +3551 2619 3333 +3469 2813 3229 +3329 2987 3035 +3029 3149 2469 +0 3301 0 +0 3447 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3863 0 3683 +3863 0 3683 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3861 0 3679 +3861 0 3679 +3859 0 3677 +3857 0 3675 +3855 0 3673 +3853 0 3669 +3849 0 3665 +3845 0 3659 +3837 0 3651 +3827 0 3641 +3815 0 3625 +3797 1606 3603 +3771 2209 3573 +3735 2521 3531 +3683 2751 3465 +3601 2947 3361 +3461 3119 3167 +3161 3281 2601 +0 3433 0 +0 3579 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3993 0 3811 +3993 0 3811 +3991 0 3809 +3991 0 3807 +3987 0 3805 +3985 0 3801 +3981 0 3797 +3977 0 3791 +3969 0 3783 +3959 0 3773 +3947 0 3757 +3929 1738 3735 +3903 2341 3707 +3867 2653 3663 +3815 2883 3597 +3733 3079 3493 +3593 3251 3299 +3293 3413 2731 +0 3565 0 +0 3711 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3943 +4095 0 3941 +4095 0 3939 +4095 0 3937 +4095 0 3933 +4095 0 3929 +4095 0 3923 +4095 0 3915 +4091 0 3905 +4079 0 3889 +4061 1869 3867 +4035 2473 3839 +3999 2785 3795 +3947 3015 3729 +3865 3211 3625 +3725 3383 3431 +3425 3545 2863 +0 3697 0 +0 3843 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4069 +4095 0 4065 +4095 0 4061 +4095 0 4055 +4095 0 4047 +4095 0 4037 +4095 0 4021 +4095 2001 4001 +4095 2605 3971 +4095 2917 3927 +4079 3149 3861 +3997 3343 3757 +3857 3515 3563 +3557 3677 2995 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2133 4095 +4095 2737 4095 +4095 3049 4059 +4095 3281 3993 +4095 3475 3889 +3989 3649 3695 +3689 3809 3127 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2265 4095 +4095 2869 4095 +4095 3181 4095 +4095 3413 4095 +4095 3607 4021 +4095 3781 3827 +3821 3941 3259 +7 0 127 +0 71 0 +0 199 0 +0 328 0 +0 457 0 +0 587 0 +0 718 0 +0 849 0 +0 980 0 +0 1112 0 +0 1243 0 +0 1375 0 +0 1507 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +287 0 292 +83 54 145 +0 186 0 +0 318 0 +0 450 0 +0 582 0 +0 714 0 +0 846 0 +0 978 0 +0 1110 0 +0 1242 0 +0 1374 0 +0 1506 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +506 0 448 +390 30 348 +168 168 168 +0 304 0 +0 440 0 +0 574 0 +0 708 0 +0 842 0 +0 975 0 +0 1108 0 +0 1240 0 +0 1373 0 +0 1505 0 +0 1638 0 +0 1770 0 +0 1902 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +693 0 597 +620 0 527 +499 143 414 +261 286 197 +0 426 0 +0 564 0 +0 701 0 +0 836 0 +0 971 0 +0 1105 0 +0 1238 0 +0 1371 0 +0 1504 0 +0 1637 0 +0 1769 0 +0 1902 0 +0 2034 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +862 0 741 +813 0 692 +738 107 616 +613 260 489 +362 407 233 +0 550 0 +0 691 0 +0 829 0 +0 965 0 +0 1100 0 +0 1235 0 +0 1369 0 +0 1502 0 +0 1636 0 +0 1768 0 +0 1901 0 +0 2034 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1020 0 882 +986 0 846 +936 54 794 +859 223 712 +731 381 573 +469 531 278 +0 677 0 +0 818 0 +0 958 0 +0 1095 0 +0 1231 0 +0 1366 0 +0 1500 0 +0 1634 0 +0 1767 0 +0 1900 0 +0 2033 0 +0 2165 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1171 0 1021 +1146 0 995 +1112 0 957 +1061 168 902 +983 343 815 +852 504 666 +582 657 331 +0 804 0 +0 947 0 +0 1087 0 +0 1225 0 +0 1362 0 +0 1497 0 +0 1632 0 +0 1765 0 +0 1899 0 +0 2032 0 +0 2165 0 +0 2297 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1316 0 1158 +1299 0 1139 +1274 0 1112 +1239 82 1073 +1188 286 1015 +1109 465 925 +976 630 766 +699 784 394 +0 933 0 +0 1077 0 +0 1217 0 +0 1356 0 +0 1493 0 +0 1628 0 +0 1763 0 +0 1897 0 +0 2031 0 +0 2163 0 +0 2297 0 +0 2429 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1458 0 1293 +1445 0 1279 +1428 0 1260 +1403 0 1232 +1368 197 1192 +1316 407 1133 +1236 590 1039 +1101 757 873 +819 913 466 +0 1062 0 +0 1207 0 +0 1348 0 +0 1487 0 +0 1624 0 +0 1760 0 +0 1895 0 +0 2029 0 +0 2163 0 +0 2295 0 +0 2429 0 +0 2561 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1597 0 1428 +1588 0 1418 +1575 0 1403 +1558 0 1383 +1533 42 1355 +1497 316 1315 +1445 531 1254 +1365 717 1157 +1229 885 985 +943 1042 548 +0 1192 0 +0 1338 0 +0 1479 0 +0 1618 0 +0 1756 0 +0 1892 0 +0 2027 0 +0 2161 0 +0 2295 0 +0 2427 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1735 0 1562 +1728 0 1555 +1718 0 1544 +1706 0 1529 +1688 0 1509 +1663 155 1480 +1628 438 1439 +1575 657 1377 +1494 845 1279 +1357 1014 1101 +1068 1172 638 +0 1323 0 +0 1469 0 +0 1611 0 +0 1750 0 +0 1887 0 +0 2023 0 +0 2159 0 +0 2293 0 +0 2427 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1871 0 1696 +1866 0 1690 +1859 0 1682 +1849 0 1672 +1837 0 1657 +1819 0 1636 +1794 273 1607 +1758 562 1566 +1706 784 1503 +1624 974 1403 +1487 1144 1221 +1195 1303 736 +0 1454 0 +0 1600 0 +0 1742 0 +0 1882 0 +0 2019 0 +0 2155 0 +0 2291 0 +0 2425 0 +0 2559 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2006 0 1829 +2002 0 1825 +1997 0 1819 +1990 0 1811 +1981 0 1800 +1968 0 1785 +1950 0 1765 +1925 394 1736 +1889 689 1694 +1837 913 1630 +1755 1103 1529 +1617 1275 1344 +1323 1434 841 +0 1585 0 +0 1732 0 +0 1874 0 +0 2013 0 +0 2151 0 +0 2287 0 +0 2423 0 +0 2557 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2141 0 1962 +2137 0 1959 +2133 0 1955 +2129 0 1949 +2121 0 1941 +2113 0 1930 +2099 0 1915 +2081 0 1894 +2057 518 1865 +2020 816 1822 +1968 1042 1759 +1886 1234 1657 +1747 1405 1470 +1452 1565 952 +0 1717 0 +0 1863 0 +0 2006 0 +0 2145 0 +0 2283 0 +0 2419 0 +0 2555 0 +0 2689 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2273 0 2095 +2271 0 2093 +2269 0 2089 +2265 0 2085 +2259 0 2079 +2253 0 2071 +2243 0 2061 +2231 0 2045 +2213 89 2024 +2187 643 1995 +2151 945 1952 +2099 1172 1888 +2017 1364 1785 +1878 1537 1596 +1582 1697 1067 +0 1849 0 +0 1995 0 +0 2137 0 +0 2277 0 +0 2415 0 +0 2551 0 +0 2687 0 +0 2821 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2407 0 2227 +2405 0 2225 +2403 0 2223 +2401 0 2219 +2397 0 2215 +2391 0 2209 +2385 0 2201 +2375 0 2191 +2363 0 2175 +2345 205 2155 +2319 771 2125 +2283 1074 2083 +2231 1303 2018 +2149 1495 1915 +2010 1668 1725 +1713 1828 1186 +0 1980 0 +0 2127 0 +0 2269 0 +0 2409 0 +0 2547 0 +0 2683 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2541 0 2359 +2539 0 2359 +2537 0 2357 +2535 0 2355 +2533 0 2351 +2529 0 2347 +2523 0 2341 +2517 0 2333 +2507 0 2321 +2495 0 2307 +2477 324 2285 +2451 899 2257 +2415 1205 2213 +2363 1434 2149 +2281 1627 2045 +2141 1800 1854 +1843 1960 1308 +0 2113 0 +0 2259 0 +0 2401 0 +0 2541 0 +0 2679 0 +0 2815 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4015 0 +2673 0 2493 +2673 0 2491 +2671 0 2489 +2669 0 2489 +2667 0 2485 +2665 0 2483 +2661 0 2479 +2655 0 2473 +2649 0 2465 +2639 0 2453 +2627 0 2439 +2609 446 2417 +2583 1028 2387 +2547 1335 2345 +2495 1565 2279 +2413 1758 2175 +2273 1932 1984 +1975 2093 1433 +0 2245 0 +0 2391 0 +0 2533 0 +0 2673 0 +0 2811 0 +0 2947 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2805 0 2625 +2805 0 2623 +2805 0 2623 +2803 0 2621 +2801 0 2619 +2799 0 2617 +2797 0 2615 +2793 0 2609 +2787 0 2603 +2781 0 2595 +2771 0 2585 +2759 0 2569 +2741 570 2549 +2715 1158 2519 +2679 1467 2475 +2627 1697 2411 +2545 1890 2307 +2405 2063 2113 +2107 2223 1559 +0 2377 0 +0 2523 0 +0 2665 0 +0 2805 0 +0 2943 0 +0 3079 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +2939 0 2757 +2937 0 2757 +2937 0 2755 +2937 0 2755 +2935 0 2753 +2933 0 2751 +2931 0 2749 +2929 0 2745 +2925 0 2741 +2919 0 2735 +2913 0 2727 +2903 0 2717 +2891 0 2701 +2873 697 2681 +2847 1289 2651 +2811 1598 2607 +2759 1828 2543 +2677 2022 2437 +2537 2195 2245 +2237 2355 1687 +0 2509 0 +0 2655 0 +0 2797 0 +0 2937 0 +0 3075 0 +0 3211 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3071 0 2889 +3071 0 2889 +3069 0 2889 +3069 0 2887 +3069 0 2887 +3067 0 2885 +3065 0 2883 +3063 0 2881 +3061 0 2877 +3057 0 2873 +3051 0 2867 +3045 0 2859 +3035 0 2849 +3023 0 2833 +3005 825 2811 +2979 1420 2783 +2943 1729 2739 +2891 1960 2673 +2809 2153 2569 +2669 2327 2377 +2369 2487 1816 +0 2641 0 +0 2787 0 +0 2929 0 +0 3069 0 +0 3207 0 +0 3343 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4015 0 +3203 0 3021 +3203 0 3021 +3203 0 3021 +3201 0 3021 +3201 0 3019 +3201 0 3019 +3199 0 3017 +3197 0 3015 +3195 0 3013 +3193 0 3009 +3189 0 3005 +3183 0 2999 +3177 0 2991 +3167 0 2981 +3155 0 2965 +3137 954 2943 +3111 1551 2913 +3075 1861 2871 +3023 2091 2805 +2941 2285 2701 +2801 2459 2507 +2501 2621 1945 +0 2773 0 +0 2919 0 +0 3061 0 +0 3201 0 +0 3339 0 +0 3477 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3335 0 3153 +3335 0 3153 +3335 0 3153 +3335 0 3153 +3333 0 3151 +3333 0 3151 +3333 0 3151 +3331 0 3149 +3329 0 3147 +3327 0 3145 +3325 0 3141 +3321 0 3137 +3315 0 3131 +3309 0 3123 +3299 0 3111 +3287 0 3097 +3269 1083 3075 +3243 1682 3045 +3207 1993 3003 +3155 2223 2937 +3073 2417 2833 +2933 2591 2639 +2633 2753 2075 +0 2905 0 +0 3051 0 +0 3193 0 +0 3333 0 +0 3471 0 +0 3609 0 +0 3743 0 +0 3877 0 +0 4011 0 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3465 0 3283 +3465 0 3283 +3465 0 3283 +3463 0 3281 +3461 0 3279 +3459 0 3277 +3457 0 3273 +3453 0 3269 +3447 0 3263 +3441 0 3255 +3431 0 3243 +3419 0 3229 +3401 1213 3207 +3375 1814 3177 +3339 2125 3135 +3287 2355 3069 +3205 2549 2965 +3065 2723 2771 +2765 2885 2207 +0 3037 0 +0 3183 0 +0 3327 0 +0 3467 0 +0 3603 0 +0 3741 0 +0 3875 0 +0 4009 0 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3597 0 3417 +3597 0 3415 +3597 0 3415 +3595 0 3413 +3593 0 3411 +3591 0 3409 +3589 0 3405 +3585 0 3401 +3579 0 3395 +3573 0 3387 +3563 0 3377 +3551 0 3361 +3533 1344 3339 +3507 1946 3309 +3471 2257 3267 +3419 2487 3201 +3337 2681 3097 +3197 2855 2903 +2897 3017 2337 +0 3169 0 +0 3315 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4007 0 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3729 0 3547 +3729 0 3547 +3727 0 3545 +3725 0 3543 +3723 0 3541 +3721 0 3537 +3717 0 3533 +3711 0 3527 +3705 0 3519 +3695 0 3509 +3683 0 3493 +3665 1475 3471 +3639 2077 3441 +3603 2389 3399 +3551 2619 3333 +3469 2813 3229 +3329 2987 3035 +3029 3149 2469 +0 3301 0 +0 3447 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3863 0 3683 +3863 0 3683 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3861 0 3679 +3861 0 3679 +3859 0 3677 +3857 0 3675 +3855 0 3673 +3853 0 3669 +3849 0 3665 +3845 0 3659 +3837 0 3651 +3827 0 3641 +3815 0 3625 +3797 1606 3603 +3771 2209 3573 +3735 2521 3531 +3683 2751 3465 +3601 2947 3361 +3461 3119 3167 +3161 3281 2601 +0 3433 0 +0 3579 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3993 0 3811 +3993 0 3811 +3991 0 3809 +3991 0 3807 +3987 0 3805 +3985 0 3801 +3981 0 3797 +3977 0 3791 +3969 0 3783 +3959 0 3773 +3947 0 3757 +3929 1738 3735 +3903 2341 3707 +3867 2653 3663 +3815 2883 3597 +3733 3079 3493 +3593 3251 3299 +3293 3413 2733 +0 3565 0 +0 3711 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3943 +4095 0 3941 +4095 0 3939 +4095 0 3937 +4095 0 3933 +4095 0 3929 +4095 0 3923 +4095 0 3915 +4091 0 3905 +4079 0 3889 +4061 1870 3869 +4035 2473 3839 +3999 2785 3795 +3947 3017 3729 +3865 3211 3625 +3725 3383 3431 +3425 3545 2863 +0 3697 0 +0 3843 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4069 +4095 0 4065 +4095 0 4061 +4095 0 4055 +4095 0 4047 +4095 0 4037 +4095 0 4021 +4095 2002 4001 +4095 2605 3971 +4095 2917 3927 +4079 3149 3861 +3997 3343 3757 +3857 3515 3563 +3557 3677 2995 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2133 4095 +4095 2737 4095 +4095 3049 4059 +4095 3281 3993 +4095 3475 3889 +3989 3649 3695 +3689 3809 3127 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2265 4095 +4095 2869 4095 +4095 3181 4095 +4095 3413 4095 +4095 3607 4021 +4095 3781 3827 +3821 3941 3259 +73 0 245 +0 93 78 +0 216 0 +0 340 0 +0 467 0 +0 595 0 +0 724 0 +0 853 0 +0 984 0 +0 1114 0 +0 1245 0 +0 1377 0 +0 1508 0 +0 1640 0 +0 1772 0 +0 1904 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +324 0 378 +139 77 259 +0 203 27 +0 331 0 +0 460 0 +0 589 0 +0 719 0 +0 850 0 +0 981 0 +0 1112 0 +0 1244 0 +0 1376 0 +0 1507 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +528 0 510 +420 54 424 +215 186 277 +0 318 0 +0 450 0 +0 582 0 +0 714 0 +0 846 0 +0 978 0 +0 1110 0 +0 1242 0 +0 1374 0 +0 1506 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +708 0 642 +638 21 580 +522 162 481 +300 300 300 +0 437 0 +0 572 0 +0 707 0 +0 841 0 +0 974 0 +0 1107 0 +0 1240 0 +0 1373 0 +0 1505 0 +0 1638 0 +0 1770 0 +0 1902 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +873 0 775 +825 0 729 +752 127 659 +631 275 546 +393 418 329 +0 558 0 +0 696 0 +0 833 0 +0 968 0 +0 1103 0 +0 1237 0 +0 1370 0 +0 1503 0 +0 1636 0 +0 1769 0 +0 1902 0 +0 2034 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1028 0 907 +994 0 873 +945 77 824 +870 239 748 +745 392 621 +494 539 365 +0 683 0 +0 823 0 +0 961 0 +0 1097 0 +0 1233 0 +0 1367 0 +0 1501 0 +0 1635 0 +0 1768 0 +0 1901 0 +0 2033 0 +0 2165 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1176 0 1039 +1152 0 1014 +1118 0 979 +1068 186 926 +991 355 844 +863 513 705 +601 663 410 +0 809 0 +0 951 0 +0 1090 0 +0 1227 0 +0 1363 0 +0 1498 0 +0 1632 0 +0 1766 0 +0 1899 0 +0 2032 0 +0 2165 0 +0 2297 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1320 0 1171 +1303 0 1153 +1279 0 1127 +1244 103 1089 +1193 300 1034 +1115 475 948 +984 636 798 +714 789 463 +0 936 0 +0 1079 0 +0 1219 0 +0 1357 0 +0 1494 0 +0 1629 0 +0 1764 0 +0 1898 0 +0 2031 0 +0 2165 0 +0 2297 0 +0 2429 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1461 0 1304 +1448 0 1290 +1431 0 1271 +1406 0 1244 +1371 214 1205 +1320 418 1147 +1241 597 1057 +1108 762 898 +831 917 526 +0 1065 0 +0 1209 0 +0 1350 0 +0 1488 0 +0 1625 0 +0 1760 0 +0 1895 0 +0 2029 0 +0 2163 0 +0 2297 0 +0 2429 0 +0 2561 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1599 0 1436 +1590 0 1426 +1577 0 1411 +1560 0 1392 +1535 65 1364 +1500 329 1324 +1448 539 1265 +1368 722 1171 +1233 889 1005 +952 1045 598 +0 1194 0 +0 1339 0 +0 1480 0 +0 1619 0 +0 1756 0 +0 1892 0 +0 2027 0 +0 2161 0 +0 2295 0 +0 2427 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1736 0 1568 +1729 0 1560 +1720 0 1550 +1707 0 1535 +1690 0 1515 +1665 174 1487 +1630 448 1447 +1578 663 1386 +1497 849 1289 +1361 1017 1117 +1074 1174 680 +0 1325 0 +0 1470 0 +0 1611 0 +0 1751 0 +0 1888 0 +0 2024 0 +0 2159 0 +0 2293 0 +0 2427 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1872 0 1700 +1867 0 1694 +1860 0 1687 +1851 0 1676 +1838 0 1661 +1820 0 1641 +1795 287 1613 +1760 570 1571 +1707 789 1510 +1627 977 1411 +1489 1146 1233 +1200 1304 770 +0 1455 0 +0 1601 0 +0 1743 0 +0 1882 0 +0 2020 0 +0 2155 0 +0 2291 0 +0 2425 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2007 0 1832 +2003 0 1828 +1998 0 1822 +1991 0 1814 +1982 0 1804 +1969 0 1789 +1951 0 1768 +1926 405 1740 +1890 694 1698 +1838 916 1635 +1757 1105 1535 +1619 1276 1354 +1327 1435 868 +0 1586 0 +0 1732 0 +0 1874 0 +0 2014 0 +0 2151 0 +0 2287 0 +0 2423 0 +0 2557 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2141 0 1964 +2137 0 1961 +2135 0 1957 +2129 0 1951 +2123 0 1943 +2113 0 1932 +2099 0 1918 +2083 6 1897 +2057 526 1868 +2021 821 1826 +1969 1045 1762 +1887 1235 1661 +1749 1407 1477 +1455 1566 973 +0 1718 0 +0 1864 0 +0 2006 0 +0 2145 0 +0 2283 0 +0 2419 0 +0 2555 0 +0 2689 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2275 0 2097 +2273 0 2095 +2269 0 2091 +2265 0 2087 +2261 0 2081 +2253 0 2073 +2245 0 2063 +2231 0 2047 +2213 111 2026 +2189 650 1997 +2153 948 1955 +2099 1174 1891 +2018 1366 1789 +1879 1538 1602 +1584 1697 1083 +0 1849 0 +0 1995 0 +0 2137 0 +0 2277 0 +0 2415 0 +0 2551 0 +0 2687 0 +0 2821 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2407 0 2229 +2405 0 2227 +2403 0 2225 +2401 0 2221 +2397 0 2217 +2393 0 2211 +2385 0 2203 +2375 0 2193 +2363 0 2177 +2345 221 2157 +2319 775 2127 +2285 1077 2085 +2231 1304 2020 +2149 1496 1917 +2010 1669 1729 +1714 1829 1199 +0 1981 0 +0 2127 0 +0 2269 0 +0 2409 0 +0 2547 0 +0 2683 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2541 0 2361 +2539 0 2359 +2537 0 2357 +2535 0 2355 +2533 0 2353 +2529 0 2347 +2523 0 2341 +2517 0 2333 +2507 0 2323 +2495 0 2307 +2477 337 2287 +2451 903 2257 +2415 1207 2215 +2363 1435 2151 +2281 1628 2047 +2141 1800 1857 +1845 1961 1318 +0 2113 0 +0 2259 0 +0 2401 0 +0 2541 0 +0 2679 0 +0 2815 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4015 0 +2673 0 2493 +2673 0 2493 +2671 0 2491 +2669 0 2489 +2667 0 2487 +2665 0 2483 +2661 0 2479 +2655 0 2473 +2649 0 2465 +2639 0 2453 +2627 0 2439 +2609 456 2417 +2583 1031 2389 +2547 1337 2345 +2495 1566 2281 +2413 1759 2177 +2273 1932 1986 +1976 2093 1440 +0 2245 0 +0 2391 0 +0 2533 0 +0 2673 0 +0 2811 0 +0 2947 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2805 0 2625 +2805 0 2625 +2805 0 2623 +2803 0 2623 +2801 0 2621 +2799 0 2617 +2797 0 2615 +2793 0 2611 +2787 0 2605 +2781 0 2597 +2771 0 2585 +2759 0 2571 +2741 578 2549 +2715 1160 2519 +2679 1468 2477 +2627 1697 2411 +2545 1891 2307 +2405 2063 2115 +2107 2225 1565 +0 2377 0 +0 2523 0 +0 2665 0 +0 2805 0 +0 2943 0 +0 3079 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +2939 0 2757 +2937 0 2757 +2937 0 2755 +2937 0 2755 +2935 0 2753 +2933 0 2751 +2931 0 2749 +2929 0 2747 +2925 0 2741 +2919 0 2735 +2913 0 2727 +2903 0 2717 +2891 0 2701 +2873 703 2681 +2847 1290 2651 +2811 1599 2607 +2759 1829 2543 +2677 2022 2439 +2537 2195 2247 +2239 2357 1691 +0 2509 0 +0 2655 0 +0 2797 0 +0 2937 0 +0 3075 0 +0 3211 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3071 0 2889 +3071 0 2889 +3069 0 2889 +3069 0 2887 +3069 0 2887 +3067 0 2885 +3065 0 2883 +3063 0 2881 +3061 0 2877 +3057 0 2873 +3051 0 2867 +3045 0 2859 +3035 0 2849 +3023 0 2833 +3005 829 2813 +2979 1421 2783 +2943 1730 2739 +2891 1960 2675 +2809 2155 2569 +2669 2327 2377 +2369 2489 1819 +0 2641 0 +0 2787 0 +0 2929 0 +0 3069 0 +0 3207 0 +0 3343 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4015 0 +3203 0 3021 +3203 0 3021 +3203 0 3021 +3201 0 3021 +3201 0 3019 +3201 0 3019 +3199 0 3017 +3197 0 3015 +3195 0 3013 +3193 0 3009 +3189 0 3005 +3183 0 2999 +3177 0 2991 +3167 0 2981 +3155 0 2965 +3137 957 2945 +3111 1552 2915 +3075 1862 2871 +3023 2093 2807 +2941 2285 2701 +2801 2459 2509 +2501 2621 1948 +0 2773 0 +0 2919 0 +0 3061 0 +0 3201 0 +0 3339 0 +0 3477 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3335 0 3153 +3335 0 3153 +3335 0 3153 +3335 0 3153 +3333 0 3153 +3333 0 3151 +3333 0 3151 +3331 0 3149 +3329 0 3147 +3327 0 3145 +3325 0 3141 +3321 0 3137 +3315 0 3131 +3309 0 3123 +3299 0 3113 +3287 0 3097 +3269 1085 3075 +3243 1683 3047 +3207 1993 3003 +3155 2223 2937 +3073 2417 2833 +2933 2591 2639 +2633 2753 2077 +0 2905 0 +0 3051 0 +0 3195 0 +0 3333 0 +0 3471 0 +0 3609 0 +0 3743 0 +0 3877 0 +0 4011 0 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3465 0 3285 +3465 0 3283 +3465 0 3283 +3463 0 3281 +3461 0 3279 +3459 0 3277 +3457 0 3273 +3453 0 3269 +3447 0 3263 +3441 0 3255 +3431 0 3245 +3419 0 3229 +3401 1215 3207 +3375 1815 3179 +3339 2125 3135 +3287 2355 3069 +3205 2549 2965 +3065 2723 2771 +2765 2885 2207 +0 3037 0 +0 3183 0 +0 3327 0 +0 3467 0 +0 3603 0 +0 3741 0 +0 3875 0 +0 4011 0 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3597 0 3417 +3597 0 3415 +3597 0 3415 +3595 0 3413 +3593 0 3411 +3591 0 3409 +3589 0 3405 +3585 0 3401 +3579 0 3395 +3573 0 3387 +3563 0 3377 +3551 0 3361 +3533 1345 3339 +3507 1946 3309 +3471 2257 3267 +3419 2487 3201 +3337 2681 3097 +3197 2855 2903 +2897 3017 2339 +0 3169 0 +0 3315 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4007 0 +3731 0 3551 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3729 0 3547 +3729 0 3547 +3727 0 3545 +3725 0 3543 +3723 0 3541 +3721 0 3537 +3717 0 3533 +3713 0 3527 +3705 0 3519 +3695 0 3509 +3683 0 3493 +3665 1476 3471 +3639 2077 3441 +3603 2389 3399 +3551 2619 3333 +3469 2815 3229 +3329 2987 3035 +3029 3149 2469 +0 3301 0 +0 3447 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3861 0 3679 +3861 0 3679 +3859 0 3677 +3857 0 3675 +3855 0 3673 +3853 0 3669 +3849 0 3665 +3845 0 3659 +3837 0 3651 +3827 0 3641 +3815 0 3625 +3797 1607 3603 +3771 2209 3575 +3735 2521 3531 +3683 2751 3465 +3601 2947 3361 +3461 3119 3167 +3161 3281 2601 +0 3433 0 +0 3579 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3993 0 3811 +3993 0 3811 +3991 0 3809 +3991 0 3807 +3987 0 3805 +3985 0 3801 +3981 0 3797 +3977 0 3791 +3969 0 3783 +3959 0 3773 +3947 0 3757 +3929 1739 3735 +3903 2341 3707 +3867 2653 3663 +3815 2883 3597 +3733 3079 3493 +3593 3251 3299 +3293 3413 2733 +0 3565 0 +0 3711 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3943 +4095 0 3941 +4095 0 3939 +4095 0 3937 +4095 0 3933 +4095 0 3929 +4095 0 3923 +4095 0 3915 +4091 0 3905 +4079 0 3889 +4061 1870 3869 +4035 2473 3839 +3999 2785 3795 +3947 3017 3729 +3865 3211 3625 +3725 3383 3431 +3425 3545 2865 +0 3697 0 +0 3843 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4069 +4095 0 4065 +4095 0 4061 +4095 0 4055 +4095 0 4047 +4095 0 4037 +4095 0 4021 +4095 2002 4001 +4095 2605 3971 +4095 2917 3927 +4079 3149 3861 +3997 3343 3757 +3857 3515 3563 +3557 3677 2997 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2133 4095 +4095 2737 4095 +4095 3049 4059 +4095 3281 3993 +4095 3475 3889 +3989 3649 3695 +3689 3809 3127 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2265 4095 +4095 2869 4095 +4095 3181 4095 +4095 3413 4095 +4095 3607 4021 +4095 3781 3827 +3821 3941 3259 +148 10 366 +0 122 244 +0 237 2 +0 357 0 +0 479 0 +0 604 0 +0 731 0 +0 859 0 +0 988 0 +0 1117 0 +0 1247 0 +0 1378 0 +0 1509 0 +0 1641 0 +0 1772 0 +0 1904 0 +0 2036 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +369 0 471 +205 106 377 +0 225 210 +0 348 0 +0 473 0 +0 599 0 +0 727 0 +0 856 0 +0 985 0 +0 1115 0 +0 1246 0 +0 1377 0 +0 1509 0 +0 1640 0 +0 1772 0 +0 1904 0 +0 2036 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +558 0 582 +456 85 510 +271 209 391 +0 335 159 +0 463 0 +0 592 0 +0 721 0 +0 852 0 +0 982 0 +0 1113 0 +0 1245 0 +0 1376 0 +0 1508 0 +0 1640 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +728 0 697 +661 54 642 +552 186 556 +347 318 409 +0 450 82 +0 582 0 +0 714 0 +0 846 0 +0 978 0 +0 1110 0 +0 1242 0 +0 1374 0 +0 1506 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +887 0 816 +840 10 775 +770 153 712 +654 294 613 +432 432 432 +0 569 0 +0 704 0 +0 839 0 +0 973 0 +0 1106 0 +0 1239 0 +0 1372 0 +0 1505 0 +0 1637 0 +0 1770 0 +0 1902 0 +0 2034 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1037 0 938 +1005 0 907 +957 106 861 +884 259 792 +763 407 678 +525 550 461 +0 690 0 +0 829 0 +0 965 0 +0 1100 0 +0 1235 0 +0 1369 0 +0 1502 0 +0 1636 0 +0 1768 0 +0 1901 0 +0 2034 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1183 0 1063 +1160 0 1039 +1126 33 1005 +1077 209 956 +1002 371 880 +877 524 753 +626 672 498 +0 815 0 +0 955 0 +0 1093 0 +0 1229 0 +0 1365 0 +0 1499 0 +0 1633 0 +0 1767 0 +0 1900 0 +0 2033 0 +0 2165 0 +0 2297 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1325 0 1189 +1308 0 1171 +1284 0 1146 +1250 131 1110 +1200 318 1058 +1123 487 976 +995 645 837 +734 795 542 +0 941 0 +0 1082 0 +0 1222 0 +0 1359 0 +0 1495 0 +0 1630 0 +0 1764 0 +0 1898 0 +0 2031 0 +0 2165 0 +0 2297 0 +0 2429 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1465 0 1317 +1452 0 1304 +1435 0 1285 +1411 0 1259 +1376 236 1221 +1325 432 1166 +1247 607 1079 +1116 768 930 +846 921 595 +0 1068 0 +0 1211 0 +0 1351 0 +0 1489 0 +0 1626 0 +0 1761 0 +0 1896 0 +0 2030 0 +0 2163 0 +0 2297 0 +0 2429 0 +0 2561 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1602 0 1446 +1593 0 1436 +1580 0 1422 +1563 0 1403 +1538 95 1376 +1504 346 1337 +1452 550 1279 +1373 729 1189 +1240 894 1030 +963 1048 658 +0 1197 0 +0 1341 0 +0 1482 0 +0 1620 0 +0 1757 0 +0 1893 0 +0 2027 0 +0 2161 0 +0 2295 0 +0 2429 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1738 0 1575 +1732 0 1568 +1722 0 1558 +1710 0 1544 +1692 0 1524 +1667 198 1496 +1632 461 1456 +1580 671 1397 +1501 854 1303 +1366 1021 1137 +1083 1177 730 +0 1327 0 +0 1471 0 +0 1612 0 +0 1751 0 +0 1888 0 +0 2024 0 +0 2159 0 +0 2293 0 +0 2427 0 +0 2561 0 +0 2693 0 +0 2825 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1873 0 1706 +1868 0 1700 +1862 0 1692 +1852 0 1682 +1839 0 1668 +1822 0 1648 +1797 306 1619 +1762 580 1579 +1710 795 1518 +1629 981 1422 +1493 1149 1249 +1207 1307 812 +0 1457 0 +0 1602 0 +0 1744 0 +0 1883 0 +0 2020 0 +0 2155 0 +0 2291 0 +0 2425 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2008 0 1837 +2004 0 1832 +1999 0 1827 +1992 0 1819 +1983 0 1808 +1970 0 1794 +1952 0 1773 +1927 419 1745 +1892 702 1703 +1840 921 1642 +1759 1109 1543 +1621 1278 1366 +1332 1437 902 +0 1587 0 +0 1733 0 +0 1875 0 +0 2014 0 +0 2151 0 +0 2287 0 +0 2423 0 +0 2557 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2141 0 1968 +2139 0 1964 +2135 0 1960 +2129 0 1954 +2123 0 1947 +2113 0 1936 +2101 0 1921 +2083 39 1901 +2059 537 1872 +2022 826 1830 +1970 1048 1767 +1889 1238 1667 +1751 1408 1486 +1459 1567 1000 +0 1718 0 +0 1864 0 +0 2006 0 +0 2145 0 +0 2283 0 +0 2419 0 +0 2555 0 +0 2689 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2275 0 2099 +2273 0 2097 +2271 0 2093 +2267 0 2089 +2261 0 2083 +2255 0 2075 +2245 0 2065 +2231 0 2049 +2215 138 2029 +2189 658 2000 +2153 953 1958 +2101 1177 1895 +2019 1367 1793 +1881 1539 1609 +1587 1698 1105 +0 1850 0 +0 1996 0 +0 2139 0 +0 2277 0 +0 2415 0 +0 2551 0 +0 2687 0 +0 2821 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2407 0 2231 +2407 0 2229 +2405 0 2227 +2401 0 2223 +2397 0 2219 +2393 0 2213 +2385 0 2205 +2377 0 2195 +2363 0 2179 +2345 243 2159 +2321 782 2129 +2285 1080 2087 +2233 1306 2023 +2151 1498 1921 +2012 1670 1734 +1716 1830 1216 +0 1981 0 +0 2127 0 +0 2269 0 +0 2409 0 +0 2547 0 +0 2683 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2541 0 2363 +2539 0 2361 +2539 0 2359 +2535 0 2357 +2533 0 2353 +2529 0 2349 +2525 0 2343 +2517 0 2335 +2507 0 2325 +2495 0 2309 +2477 353 2289 +2453 908 2259 +2417 1209 2217 +2363 1436 2153 +2281 1629 2049 +2143 1801 1861 +1846 1961 1331 +0 2113 0 +0 2259 0 +0 2401 0 +0 2541 0 +0 2679 0 +0 2815 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4015 0 +2673 0 2493 +2673 0 2493 +2671 0 2491 +2669 0 2489 +2667 0 2487 +2665 0 2485 +2661 0 2479 +2657 0 2475 +2649 0 2465 +2639 0 2455 +2627 0 2441 +2609 469 2419 +2583 1035 2389 +2547 1339 2347 +2495 1567 2283 +2413 1760 2179 +2273 1932 1989 +1977 2093 1450 +0 2245 0 +0 2391 0 +0 2533 0 +0 2673 0 +0 2811 0 +0 2947 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2805 0 2625 +2805 0 2625 +2805 0 2625 +2803 0 2623 +2801 0 2621 +2799 0 2619 +2797 0 2615 +2793 0 2611 +2787 0 2605 +2781 0 2597 +2771 0 2587 +2759 0 2571 +2741 588 2551 +2715 1163 2521 +2679 1469 2477 +2627 1698 2413 +2545 1891 2309 +2405 2065 2117 +2107 2225 1572 +0 2377 0 +0 2523 0 +0 2665 0 +0 2805 0 +0 2943 0 +0 3079 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +2939 0 2757 +2937 0 2757 +2937 0 2757 +2937 0 2755 +2935 0 2755 +2933 0 2753 +2931 0 2749 +2929 0 2747 +2925 0 2743 +2919 0 2737 +2913 0 2729 +2903 0 2717 +2891 0 2703 +2873 710 2681 +2847 1292 2651 +2811 1600 2609 +2759 1829 2543 +2677 2023 2439 +2537 2195 2247 +2239 2357 1697 +0 2509 0 +0 2655 0 +0 2797 0 +0 2937 0 +0 3075 0 +0 3211 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3071 0 2889 +3071 0 2889 +3069 0 2889 +3069 0 2889 +3069 0 2887 +3067 0 2885 +3065 0 2883 +3063 0 2881 +3061 0 2879 +3057 0 2873 +3051 0 2869 +3045 0 2859 +3035 0 2849 +3023 0 2833 +3005 835 2813 +2979 1422 2783 +2943 1731 2739 +2891 1961 2675 +2809 2155 2571 +2669 2327 2379 +2371 2489 1823 +0 2641 0 +0 2787 0 +0 2929 0 +0 3069 0 +0 3207 0 +0 3343 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4015 0 +3203 0 3021 +3203 0 3021 +3203 0 3021 +3201 0 3021 +3201 0 3019 +3201 0 3019 +3199 0 3017 +3197 0 3015 +3195 0 3013 +3193 0 3011 +3189 0 3005 +3183 0 2999 +3177 0 2991 +3167 0 2981 +3155 0 2965 +3137 961 2945 +3111 1553 2915 +3075 1862 2871 +3023 2093 2807 +2941 2287 2703 +2801 2459 2509 +2501 2621 1951 +0 2773 0 +0 2919 0 +0 3061 0 +0 3201 0 +0 3339 0 +0 3477 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3335 0 3153 +3335 0 3153 +3335 0 3153 +3335 0 3153 +3333 0 3153 +3333 0 3151 +3333 0 3151 +3331 0 3149 +3329 0 3147 +3327 0 3145 +3325 0 3141 +3321 0 3137 +3315 0 3131 +3309 0 3123 +3299 0 3113 +3287 0 3097 +3269 1089 3077 +3243 1684 3047 +3207 1994 3003 +3155 2225 2939 +3073 2419 2833 +2933 2591 2641 +2633 2753 2081 +0 2905 0 +0 3051 0 +0 3195 0 +0 3333 0 +0 3471 0 +0 3609 0 +0 3743 0 +0 3877 0 +0 4011 0 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3465 0 3285 +3465 0 3283 +3465 0 3283 +3463 0 3281 +3461 0 3279 +3459 0 3277 +3457 0 3273 +3453 0 3269 +3447 0 3263 +3441 0 3255 +3431 0 3245 +3419 0 3229 +3401 1218 3209 +3375 1815 3179 +3339 2125 3135 +3287 2357 3069 +3205 2551 2965 +3065 2723 2771 +2765 2885 2209 +0 3037 0 +0 3183 0 +0 3327 0 +0 3467 0 +0 3603 0 +0 3741 0 +0 3875 0 +0 4011 0 +3599 0 3419 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3597 0 3415 +3597 0 3415 +3595 0 3413 +3593 0 3411 +3591 0 3409 +3589 0 3405 +3585 0 3401 +3579 0 3395 +3573 0 3387 +3563 0 3377 +3551 0 3361 +3533 1347 3339 +3507 1947 3311 +3471 2257 3267 +3419 2487 3201 +3337 2683 3097 +3197 2855 2903 +2897 3017 2339 +0 3169 0 +0 3315 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4007 0 +3731 0 3551 +3731 0 3551 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3729 0 3547 +3729 0 3547 +3727 0 3545 +3725 0 3543 +3723 0 3541 +3721 0 3537 +3717 0 3533 +3713 0 3527 +3705 0 3519 +3695 0 3509 +3683 0 3493 +3665 1478 3471 +3639 2079 3443 +3603 2389 3399 +3551 2619 3333 +3469 2815 3229 +3329 2987 3035 +3029 3149 2471 +0 3301 0 +0 3447 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3861 0 3679 +3861 0 3679 +3859 0 3677 +3857 0 3675 +3855 0 3673 +3853 0 3669 +3849 0 3665 +3845 0 3659 +3837 0 3651 +3827 0 3641 +3815 0 3625 +3797 1608 3603 +3771 2211 3575 +3735 2521 3531 +3683 2751 3465 +3601 2947 3361 +3461 3119 3167 +3161 3281 2601 +0 3433 0 +0 3579 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3993 0 3811 +3993 0 3811 +3991 0 3809 +3991 0 3807 +3987 0 3805 +3985 0 3801 +3981 0 3797 +3977 0 3791 +3969 0 3783 +3959 0 3773 +3947 0 3757 +3929 1739 3737 +3903 2341 3707 +3867 2653 3663 +3815 2885 3597 +3733 3079 3493 +3593 3251 3299 +3293 3413 2733 +0 3565 0 +0 3711 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3943 +4095 0 3941 +4095 0 3939 +4095 0 3937 +4095 0 3933 +4095 0 3929 +4095 0 3923 +4095 0 3915 +4091 0 3905 +4079 0 3889 +4061 1871 3869 +4035 2473 3839 +3999 2785 3795 +3947 3017 3729 +3865 3211 3625 +3725 3383 3431 +3425 3545 2865 +0 3697 0 +0 3843 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4069 +4095 0 4065 +4095 0 4061 +4095 0 4055 +4095 0 4047 +4095 0 4037 +4095 0 4021 +4095 2002 4001 +4095 2605 3971 +4095 2917 3927 +4079 3149 3861 +3997 3343 3757 +3857 3515 3563 +3557 3677 2997 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2133 4095 +4095 2737 4095 +4095 3049 4059 +4095 3281 3993 +4095 3475 3889 +3989 3649 3695 +3689 3809 3129 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2265 4095 +4095 2869 4095 +4095 3181 4095 +4095 3413 4095 +4095 3607 4021 +4095 3781 3827 +3821 3941 3261 +232 55 490 +0 157 400 +0 265 243 +0 378 0 +0 496 0 +0 617 0 +0 740 0 +0 866 0 +0 993 0 +0 1121 0 +0 1251 0 +0 1381 0 +0 1511 0 +0 1642 0 +0 1773 0 +0 1905 0 +0 2036 0 +0 2169 0 +0 2301 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +422 37 572 +280 142 498 +0 254 376 +0 369 134 +0 489 0 +0 611 0 +0 736 0 +0 863 0 +0 991 0 +0 1120 0 +0 1249 0 +0 1380 0 +0 1510 0 +0 1642 0 +0 1773 0 +0 1904 0 +0 2036 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +594 12 663 +501 123 603 +337 238 509 +0 358 342 +0 480 0 +0 605 0 +0 731 0 +0 859 0 +0 988 0 +0 1117 0 +0 1248 0 +0 1378 0 +0 1509 0 +0 1641 0 +0 1772 0 +0 1904 0 +0 2036 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +753 0 761 +690 95 714 +588 217 642 +403 341 523 +0 467 291 +0 595 0 +0 724 0 +0 853 0 +0 984 0 +0 1114 0 +0 1245 0 +0 1377 0 +0 1508 0 +0 1640 0 +0 1772 0 +0 1904 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +905 0 866 +860 54 829 +793 186 774 +684 318 689 +479 450 541 +0 582 214 +0 714 0 +0 846 0 +0 978 0 +0 1110 0 +0 1242 0 +0 1374 0 +0 1506 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1050 0 977 +1019 0 948 +972 142 907 +902 286 844 +786 426 745 +564 564 564 +0 701 84 +0 836 0 +0 971 0 +0 1105 0 +0 1238 0 +0 1371 0 +0 1504 0 +0 1637 0 +0 1769 0 +0 1902 0 +0 2034 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1193 0 1093 +1170 0 1070 +1137 76 1039 +1089 238 993 +1016 392 924 +895 539 810 +658 682 593 +0 823 0 +0 961 0 +0 1097 0 +0 1232 0 +0 1367 0 +0 1501 0 +0 1635 0 +0 1768 0 +0 1901 0 +0 2033 0 +0 2165 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1332 0 1212 +1315 0 1195 +1292 0 1171 +1258 165 1137 +1209 341 1088 +1134 503 1012 +1009 656 885 +758 804 630 +0 947 0 +0 1087 0 +0 1225 0 +0 1361 0 +0 1497 0 +0 1631 0 +0 1765 0 +0 1899 0 +0 2032 0 +0 2165 0 +0 2297 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1470 0 1334 +1457 0 1321 +1440 0 1303 +1416 46 1278 +1382 263 1243 +1332 450 1190 +1255 619 1108 +1127 777 970 +866 928 674 +0 1073 0 +0 1215 0 +0 1354 0 +0 1491 0 +0 1627 0 +0 1762 0 +0 1896 0 +0 2030 0 +0 2163 0 +0 2297 0 +0 2429 0 +0 2561 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1606 0 1459 +1597 0 1449 +1584 0 1436 +1567 0 1417 +1543 132 1391 +1508 368 1354 +1458 564 1298 +1379 739 1212 +1248 900 1062 +978 1053 727 +0 1200 0 +0 1343 0 +0 1484 0 +0 1622 0 +0 1758 0 +0 1893 0 +0 2028 0 +0 2161 0 +0 2295 0 +0 2429 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1741 0 1585 +1734 0 1578 +1725 0 1568 +1713 0 1554 +1695 0 1535 +1671 227 1508 +1636 478 1469 +1584 682 1412 +1505 861 1321 +1372 1026 1162 +1095 1181 790 +0 1329 0 +0 1473 0 +0 1614 0 +0 1752 0 +0 1889 0 +0 2025 0 +0 2159 0 +0 2293 0 +0 2427 0 +0 2561 0 +0 2693 0 +0 2825 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1876 0 1713 +1871 0 1708 +1864 0 1700 +1854 0 1690 +1842 0 1676 +1824 0 1656 +1799 330 1628 +1764 593 1589 +1713 803 1529 +1633 986 1435 +1498 1153 1269 +1216 1309 862 +0 1459 0 +0 1603 0 +0 1745 0 +0 1883 0 +0 2021 0 +0 2157 0 +0 2291 0 +0 2425 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2009 0 1842 +2006 0 1838 +2001 0 1832 +1994 0 1825 +1984 0 1814 +1972 0 1800 +1954 0 1780 +1929 438 1752 +1894 712 1711 +1842 927 1650 +1761 1113 1554 +1625 1281 1381 +1339 1439 944 +0 1589 0 +0 1734 0 +0 1876 0 +0 2015 0 +0 2153 0 +0 2289 0 +0 2423 0 +0 2557 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2143 0 1972 +2139 0 1969 +2137 0 1964 +2131 0 1959 +2125 0 1951 +2115 0 1940 +2103 0 1926 +2085 81 1905 +2059 551 1877 +2024 834 1836 +1972 1053 1774 +1891 1241 1675 +1754 1410 1498 +1464 1569 1034 +0 1720 0 +0 1865 0 +0 2007 0 +0 2147 0 +0 2283 0 +0 2419 0 +0 2555 0 +0 2689 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2275 0 2103 +2273 0 2099 +2271 0 2097 +2267 0 2093 +2263 0 2087 +2255 0 2079 +2245 0 2067 +2233 0 2053 +2215 172 2033 +2191 669 2004 +2155 959 1962 +2103 1180 1899 +2021 1370 1799 +1883 1540 1618 +1591 1699 1132 +0 1851 0 +0 1996 0 +0 2139 0 +0 2279 0 +0 2415 0 +0 2551 0 +0 2687 0 +0 2821 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2409 0 2233 +2407 0 2231 +2405 0 2229 +2403 0 2225 +2399 0 2221 +2393 0 2215 +2387 0 2207 +2377 0 2197 +2365 0 2181 +2347 270 2161 +2321 790 2133 +2285 1085 2089 +2233 1309 2027 +2151 1500 1925 +2013 1671 1741 +1719 1830 1237 +0 1982 0 +0 2127 0 +0 2271 0 +0 2409 0 +0 2547 0 +0 2683 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2541 0 2363 +2541 0 2363 +2539 0 2361 +2537 0 2359 +2533 0 2355 +2529 0 2351 +2525 0 2345 +2517 0 2337 +2509 0 2327 +2495 0 2311 +2477 375 2291 +2453 914 2261 +2417 1212 2219 +2365 1438 2155 +2283 1630 2053 +2143 1802 1866 +1849 1962 1348 +0 2113 0 +0 2259 0 +0 2403 0 +0 2541 0 +0 2679 0 +0 2815 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4015 0 +2673 0 2495 +2673 0 2495 +2671 0 2493 +2671 0 2491 +2669 0 2489 +2665 0 2485 +2661 0 2481 +2657 0 2475 +2649 0 2467 +2641 0 2457 +2627 0 2441 +2609 485 2421 +2585 1039 2391 +2549 1341 2349 +2495 1569 2285 +2413 1761 2181 +2275 1933 1993 +1978 2093 1463 +0 2245 0 +0 2391 0 +0 2533 0 +0 2673 0 +0 2811 0 +0 2947 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2807 0 2627 +2805 0 2627 +2805 0 2625 +2803 0 2623 +2801 0 2623 +2799 0 2619 +2797 0 2617 +2793 0 2613 +2789 0 2607 +2781 0 2599 +2771 0 2587 +2759 0 2573 +2741 601 2551 +2715 1167 2521 +2681 1471 2479 +2627 1699 2415 +2545 1892 2311 +2405 2065 2121 +2109 2225 1582 +0 2377 0 +0 2523 0 +0 2665 0 +0 2805 0 +0 2943 0 +0 3079 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +2939 0 2759 +2939 0 2759 +2937 0 2757 +2937 0 2757 +2935 0 2755 +2933 0 2753 +2931 0 2751 +2929 0 2747 +2925 0 2743 +2919 0 2737 +2913 0 2729 +2903 0 2719 +2891 0 2703 +2873 720 2683 +2847 1295 2653 +2811 1601 2609 +2759 1830 2545 +2677 2023 2441 +2537 2197 2251 +2239 2357 1705 +0 2509 0 +0 2655 0 +0 2797 0 +0 2937 0 +0 3075 0 +0 3211 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3071 0 2891 +3071 0 2889 +3069 0 2889 +3069 0 2889 +3069 0 2887 +3067 0 2887 +3065 0 2885 +3063 0 2883 +3061 0 2879 +3057 0 2875 +3051 0 2869 +3045 0 2861 +3035 0 2849 +3023 0 2835 +3005 842 2813 +2979 1425 2783 +2943 1732 2741 +2891 1961 2675 +2809 2155 2571 +2669 2327 2379 +2371 2489 1829 +0 2641 0 +0 2787 0 +0 2929 0 +0 3069 0 +0 3207 0 +0 3343 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4015 0 +3203 0 3023 +3203 0 3021 +3203 0 3021 +3201 0 3021 +3201 0 3021 +3201 0 3019 +3199 0 3017 +3197 0 3017 +3195 0 3013 +3193 0 3011 +3189 0 3007 +3183 0 3001 +3177 0 2993 +3167 0 2981 +3155 0 2965 +3137 967 2945 +3111 1555 2915 +3075 1863 2873 +3023 2093 2807 +2941 2287 2703 +2801 2459 2511 +2503 2621 1956 +0 2773 0 +0 2919 0 +0 3063 0 +0 3201 0 +0 3339 0 +0 3477 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3335 0 3155 +3335 0 3153 +3335 0 3153 +3335 0 3153 +3333 0 3153 +3333 0 3151 +3333 0 3151 +3331 0 3149 +3329 0 3147 +3327 0 3145 +3325 0 3143 +3321 0 3137 +3315 0 3131 +3309 0 3123 +3299 0 3113 +3287 0 3097 +3269 1093 3077 +3243 1685 3047 +3207 1994 3003 +3155 2225 2939 +3073 2419 2835 +2933 2591 2641 +2635 2753 2083 +0 2905 0 +0 3051 0 +0 3195 0 +0 3333 0 +0 3471 0 +0 3609 0 +0 3743 0 +0 3877 0 +0 4011 0 +3467 0 3287 +3467 0 3287 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3465 0 3285 +3465 0 3283 +3465 0 3283 +3463 0 3281 +3461 0 3279 +3459 0 3277 +3457 0 3273 +3453 0 3269 +3447 0 3263 +3441 0 3255 +3431 0 3245 +3419 0 3229 +3401 1221 3209 +3375 1816 3179 +3339 2125 3135 +3287 2357 3071 +3205 2551 2965 +3065 2723 2773 +2765 2885 2213 +0 3037 0 +0 3183 0 +0 3327 0 +0 3467 0 +0 3603 0 +0 3741 0 +0 3875 0 +0 4011 0 +3599 0 3419 +3599 0 3419 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3597 0 3415 +3597 0 3415 +3595 0 3413 +3593 0 3411 +3591 0 3409 +3589 0 3405 +3585 0 3401 +3581 0 3395 +3573 0 3387 +3563 0 3377 +3551 0 3361 +3533 1350 3341 +3507 1947 3311 +3471 2257 3267 +3419 2489 3203 +3337 2683 3097 +3197 2855 2903 +2897 3017 2341 +0 3169 0 +0 3315 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4007 0 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3729 0 3547 +3729 0 3547 +3727 0 3545 +3725 0 3543 +3723 0 3541 +3721 0 3537 +3717 0 3533 +3713 0 3527 +3705 0 3519 +3695 0 3509 +3683 0 3493 +3665 1479 3473 +3639 2079 3443 +3603 2389 3399 +3551 2621 3333 +3469 2815 3229 +3329 2987 3035 +3029 3149 2473 +0 3301 0 +0 3447 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3861 0 3679 +3861 0 3679 +3859 0 3677 +3859 0 3675 +3855 0 3673 +3853 0 3669 +3849 0 3665 +3845 0 3659 +3837 0 3651 +3827 0 3641 +3815 0 3625 +3797 1610 3605 +3771 2211 3575 +3735 2521 3531 +3683 2753 3465 +3601 2947 3361 +3461 3119 3167 +3161 3281 2603 +0 3433 0 +0 3579 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3993 0 3811 +3993 0 3811 +3991 0 3809 +3991 0 3807 +3989 0 3805 +3985 0 3801 +3981 0 3797 +3977 0 3791 +3969 0 3783 +3959 0 3773 +3947 0 3757 +3929 1740 3737 +3903 2343 3707 +3867 2653 3663 +3815 2885 3597 +3733 3079 3493 +3593 3251 3299 +3293 3413 2733 +0 3565 0 +0 3711 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3943 +4095 0 3941 +4095 0 3939 +4095 0 3937 +4095 0 3933 +4095 0 3929 +4095 0 3923 +4095 0 3915 +4091 0 3905 +4079 0 3889 +4061 1872 3869 +4035 2475 3839 +3999 2785 3795 +3947 3017 3729 +3865 3211 3625 +3725 3383 3431 +3425 3545 2865 +0 3697 0 +0 3843 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4069 +4095 0 4065 +4095 0 4061 +4095 0 4055 +4095 0 4047 +4095 0 4037 +4095 0 4021 +4095 2003 4001 +4095 2607 3971 +4095 2917 3927 +4079 3149 3861 +3997 3343 3757 +3857 3517 3563 +3557 3677 2997 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2135 4095 +4095 2737 4095 +4095 3049 4059 +4095 3281 3993 +4095 3475 3889 +3989 3649 3695 +3689 3809 3129 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2267 4095 +4095 2869 4095 +4095 3181 4095 +4095 3413 4095 +4095 3607 4021 +4095 3781 3827 +3821 3941 3261 +325 108 616 +140 200 549 +0 299 442 +0 405 242 +0 517 0 +0 633 0 +0 753 0 +0 875 0 +0 1000 0 +0 1127 0 +0 1255 0 +0 1384 0 +0 1513 0 +0 1644 0 +0 1775 0 +0 1906 0 +0 2037 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +486 92 679 +364 187 622 +125 289 532 +0 397 375 +0 510 9 +0 628 0 +0 749 0 +0 872 0 +0 998 0 +0 1125 0 +0 1253 0 +0 1383 0 +0 1513 0 +0 1643 0 +0 1774 0 +0 1905 0 +0 2037 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +638 70 752 +554 169 704 +412 274 630 +103 386 508 +0 502 267 +0 621 0 +0 744 0 +0 868 0 +0 995 0 +0 1123 0 +0 1252 0 +0 1381 0 +0 1512 0 +0 1643 0 +0 1774 0 +0 1905 0 +0 2037 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +785 38 835 +726 144 795 +633 255 735 +469 370 641 +73 490 474 +0 612 63 +0 737 0 +0 863 0 +0 991 0 +0 1120 0 +0 1249 0 +0 1380 0 +0 1510 0 +0 1642 0 +0 1773 0 +0 1905 0 +0 2036 0 +0 2169 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +927 0 926 +885 108 893 +822 227 846 +720 349 774 +535 473 655 +29 599 424 +0 727 0 +0 856 0 +0 986 0 +0 1116 0 +0 1246 0 +0 1377 0 +0 1509 0 +0 1640 0 +0 1772 0 +0 1904 0 +0 2036 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1067 0 1024 +1036 55 998 +992 187 961 +925 318 906 +816 450 821 +611 582 673 +0 714 346 +0 846 0 +0 978 0 +0 1110 0 +0 1242 0 +0 1374 0 +0 1506 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1205 0 1129 +1182 0 1109 +1151 127 1080 +1104 274 1039 +1034 418 976 +919 558 877 +696 696 696 +0 833 216 +0 968 0 +0 1103 0 +0 1237 0 +0 1370 0 +0 1503 0 +0 1636 0 +0 1769 0 +0 1902 0 +0 2034 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1341 0 1241 +1325 0 1225 +1302 31 1202 +1269 208 1171 +1221 370 1125 +1148 524 1056 +1027 671 942 +790 814 725 +0 955 0 +0 1093 0 +0 1229 0 +0 1365 0 +0 1499 0 +0 1633 0 +0 1767 0 +0 1900 0 +0 2033 0 +0 2165 0 +0 2297 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1477 0 1356 +1464 0 1344 +1447 0 1327 +1424 100 1303 +1390 297 1269 +1341 473 1220 +1266 635 1144 +1141 788 1017 +891 936 762 +0 1079 0 +0 1219 0 +0 1357 0 +0 1494 0 +0 1629 0 +0 1764 0 +0 1897 0 +0 2031 0 +0 2165 0 +0 2297 0 +0 2429 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1611 0 1476 +1602 0 1466 +1590 0 1453 +1572 0 1436 +1549 178 1411 +1514 395 1375 +1464 582 1322 +1388 751 1240 +1259 909 1101 +998 1059 806 +0 1205 0 +0 1347 0 +0 1486 0 +0 1623 0 +0 1759 0 +0 1894 0 +0 2029 0 +0 2163 0 +0 2295 0 +0 2429 0 +0 2561 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1745 0 1598 +1738 0 1591 +1729 0 1581 +1716 0 1568 +1699 0 1549 +1675 264 1523 +1640 500 1486 +1590 696 1430 +1511 871 1344 +1380 1032 1194 +1110 1185 859 +0 1332 0 +0 1476 0 +0 1616 0 +0 1754 0 +0 1890 0 +0 2025 0 +0 2161 0 +0 2293 0 +0 2427 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1878 0 1723 +1873 0 1717 +1867 0 1710 +1857 0 1700 +1845 0 1686 +1827 0 1667 +1803 359 1640 +1768 610 1601 +1717 814 1544 +1637 994 1453 +1504 1158 1294 +1227 1313 922 +0 1461 0 +0 1605 0 +0 1746 0 +0 1884 0 +0 2021 0 +0 2157 0 +0 2291 0 +0 2425 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2011 0 1849 +2008 0 1845 +2003 0 1840 +1996 0 1832 +1987 0 1822 +1974 0 1808 +1956 59 1788 +1932 462 1761 +1896 725 1721 +1845 936 1661 +1765 1118 1568 +1630 1285 1401 +1348 1441 994 +0 1591 0 +0 1735 0 +0 1877 0 +0 2016 0 +0 2153 0 +0 2289 0 +0 2423 0 +0 2557 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2145 0 1977 +2141 0 1974 +2137 0 1970 +2133 0 1964 +2125 0 1957 +2117 0 1946 +2103 0 1932 +2087 132 1912 +2061 570 1884 +2026 844 1843 +1974 1059 1782 +1893 1245 1686 +1757 1413 1513 +1471 1571 1076 +0 1721 0 +0 1866 0 +0 2008 0 +0 2147 0 +0 2285 0 +0 2421 0 +0 2555 0 +0 2689 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2277 0 2107 +2275 0 2103 +2273 0 2101 +2269 0 2097 +2263 0 2091 +2257 0 2083 +2247 0 2073 +2235 0 2057 +2217 213 2038 +2191 684 2009 +2157 966 1968 +2103 1185 1906 +2023 1373 1807 +1886 1543 1630 +1596 1701 1166 +0 1852 0 +0 1997 0 +0 2139 0 +0 2279 0 +0 2415 0 +0 2551 0 +0 2687 0 +0 2821 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2409 0 2235 +2407 0 2235 +2405 0 2231 +2403 0 2229 +2399 0 2225 +2395 0 2219 +2387 0 2211 +2377 0 2201 +2365 0 2185 +2347 304 2165 +2323 801 2135 +2287 1090 2095 +2235 1313 2032 +2153 1502 1932 +2015 1673 1750 +1723 1831 1264 +0 1983 0 +0 2129 0 +0 2271 0 +0 2411 0 +0 2547 0 +0 2683 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2541 0 2367 +2541 0 2365 +2539 0 2363 +2537 0 2361 +2535 0 2357 +2531 0 2353 +2525 0 2347 +2519 0 2339 +2509 0 2329 +2497 0 2313 +2479 402 2293 +2453 922 2265 +2417 1217 2223 +2365 1441 2159 +2283 1632 2057 +2145 1803 1873 +1851 1962 1369 +0 2115 0 +0 2261 0 +0 2403 0 +0 2543 0 +0 2679 0 +0 2815 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2675 0 2497 +2673 0 2497 +2673 0 2495 +2671 0 2493 +2669 0 2491 +2665 0 2487 +2661 0 2483 +2657 0 2477 +2649 0 2469 +2641 0 2459 +2627 0 2443 +2609 507 2423 +2585 1046 2393 +2549 1345 2351 +2497 1571 2287 +2415 1762 2185 +2275 1934 1998 +1981 2093 1480 +0 2245 0 +0 2391 0 +0 2535 0 +0 2673 0 +0 2811 0 +0 2947 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2807 0 2629 +2805 0 2627 +2805 0 2627 +2803 0 2625 +2803 0 2623 +2801 0 2621 +2797 0 2617 +2793 0 2613 +2789 0 2607 +2781 0 2599 +2773 0 2589 +2759 0 2573 +2741 617 2553 +2717 1172 2523 +2681 1473 2481 +2627 1701 2417 +2545 1893 2313 +2407 2065 2125 +2111 2225 1595 +0 2377 0 +0 2523 0 +0 2667 0 +0 2805 0 +0 2943 0 +0 3079 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +2939 0 2759 +2939 0 2759 +2937 0 2759 +2937 0 2757 +2935 0 2755 +2935 0 2755 +2931 0 2751 +2929 0 2749 +2925 0 2745 +2921 0 2739 +2913 0 2731 +2903 0 2719 +2891 0 2705 +2873 733 2683 +2849 1299 2653 +2813 1603 2611 +2759 1831 2547 +2677 2024 2443 +2539 2197 2253 +2241 2357 1714 +0 2509 0 +0 2655 0 +0 2799 0 +0 2937 0 +0 3075 0 +0 3211 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3071 0 2891 +3071 0 2891 +3071 0 2891 +3069 0 2889 +3069 0 2889 +3067 0 2887 +3065 0 2885 +3063 0 2883 +3061 0 2879 +3057 0 2875 +3053 0 2869 +3045 0 2861 +3035 0 2851 +3023 0 2835 +3005 852 2815 +2979 1427 2785 +2943 1733 2741 +2891 1962 2677 +2809 2155 2573 +2669 2329 2383 +2371 2489 1837 +0 2641 0 +0 2787 0 +0 2931 0 +0 3069 0 +0 3207 0 +0 3345 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4015 0 +3203 0 3023 +3203 0 3023 +3203 0 3023 +3203 0 3021 +3201 0 3021 +3201 0 3019 +3199 0 3019 +3197 0 3017 +3195 0 3015 +3193 0 3011 +3189 0 3007 +3185 0 3001 +3177 0 2993 +3167 0 2981 +3155 0 2967 +3137 974 2945 +3111 1557 2915 +3075 1864 2873 +3023 2093 2809 +2941 2287 2703 +2801 2461 2513 +2503 2621 1961 +0 2773 0 +0 2919 0 +0 3063 0 +0 3201 0 +0 3339 0 +0 3477 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3335 0 3155 +3335 0 3155 +3335 0 3155 +3335 0 3153 +3335 0 3153 +3333 0 3153 +3333 0 3151 +3331 0 3151 +3329 0 3149 +3327 0 3145 +3325 0 3143 +3321 0 3139 +3317 0 3133 +3309 0 3125 +3299 0 3113 +3287 0 3099 +3269 1099 3077 +3243 1687 3047 +3207 1995 3005 +3155 2225 2939 +3073 2419 2835 +2933 2591 2643 +2635 2753 2087 +0 2905 0 +0 3051 0 +0 3195 0 +0 3335 0 +0 3471 0 +0 3609 0 +0 3743 0 +0 3877 0 +0 4011 0 +3467 0 3287 +3467 0 3287 +3467 0 3287 +3467 0 3285 +3467 0 3285 +3467 0 3285 +3465 0 3285 +3465 0 3283 +3463 0 3281 +3461 0 3279 +3459 0 3277 +3457 0 3275 +3453 0 3269 +3449 0 3263 +3441 0 3255 +3431 0 3245 +3419 0 3229 +3401 1225 3209 +3375 1817 3179 +3339 2127 3135 +3287 2357 3071 +3205 2551 2967 +3065 2723 2773 +2767 2885 2215 +0 3037 0 +0 3183 0 +0 3327 0 +0 3467 0 +0 3603 0 +0 3741 0 +0 3875 0 +0 4011 0 +3599 0 3419 +3599 0 3419 +3599 0 3419 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3597 0 3415 +3597 0 3415 +3595 0 3413 +3593 0 3411 +3591 0 3409 +3589 0 3407 +3585 0 3401 +3581 0 3395 +3573 0 3387 +3563 0 3377 +3551 0 3361 +3533 1353 3341 +3507 1948 3311 +3471 2257 3267 +3419 2489 3203 +3337 2683 3097 +3197 2855 2905 +2897 3017 2345 +0 3169 0 +0 3315 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4007 0 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3729 0 3547 +3729 0 3547 +3727 0 3545 +3725 0 3543 +3723 0 3541 +3721 0 3537 +3717 0 3533 +3713 0 3527 +3705 0 3519 +3695 0 3509 +3683 0 3493 +3665 1482 3473 +3639 2079 3443 +3603 2389 3399 +3551 2621 3335 +3469 2815 3229 +3329 2987 3035 +3029 3149 2473 +0 3301 0 +0 3447 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3865 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3861 0 3679 +3861 0 3679 +3859 0 3677 +3859 0 3675 +3855 0 3673 +3853 0 3669 +3849 0 3665 +3845 0 3659 +3837 0 3651 +3827 0 3641 +3815 0 3625 +3797 1612 3605 +3771 2211 3575 +3735 2521 3531 +3683 2753 3467 +3601 2947 3361 +3461 3119 3167 +3161 3281 2605 +0 3433 0 +0 3579 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3993 0 3811 +3993 0 3811 +3991 0 3809 +3991 0 3807 +3989 0 3805 +3985 0 3801 +3981 0 3797 +3977 0 3791 +3969 0 3783 +3959 0 3773 +3947 0 3757 +3929 1742 3737 +3903 2343 3707 +3867 2653 3663 +3815 2885 3597 +3733 3079 3493 +3593 3251 3299 +3293 3413 2735 +0 3565 0 +0 3711 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3943 +4095 0 3941 +4095 0 3939 +4095 0 3937 +4095 0 3933 +4095 0 3929 +4095 0 3923 +4095 0 3915 +4093 0 3905 +4079 0 3889 +4061 1873 3869 +4035 2475 3839 +4001 2785 3795 +3947 3017 3729 +3865 3211 3625 +3725 3383 3431 +3425 3545 2867 +0 3697 0 +0 3843 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4069 +4095 0 4067 +4095 0 4061 +4095 0 4055 +4095 0 4047 +4095 0 4037 +4095 0 4021 +4095 2004 4001 +4095 2607 3971 +4095 2917 3927 +4079 3149 3861 +3997 3343 3757 +3857 3517 3563 +3557 3677 2997 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2135 4095 +4095 2739 4095 +4095 3049 4059 +4095 3281 3993 +4095 3475 3889 +3989 3649 3695 +3689 3809 3129 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2267 4095 +4095 2871 4095 +4095 3181 4095 +4095 3413 4095 +4095 3607 4021 +4095 3781 3827 +3821 3941 3261 +425 171 743 +284 251 694 +0 341 618 +0 439 493 +0 543 240 +0 653 0 +0 769 0 +0 887 0 +0 1009 0 +0 1134 0 +0 1260 0 +0 1388 0 +0 1516 0 +0 1646 0 +0 1776 0 +0 1907 0 +0 2038 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +558 157 792 +457 240 748 +272 332 682 +0 431 574 +0 537 374 +0 649 0 +0 765 0 +0 885 0 +0 1007 0 +0 1132 0 +0 1259 0 +0 1387 0 +0 1516 0 +0 1646 0 +0 1776 0 +0 1907 0 +0 2038 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +691 138 850 +618 224 811 +496 319 754 +257 421 664 +0 529 507 +0 642 141 +0 760 0 +0 881 0 +0 1004 0 +0 1130 0 +0 1257 0 +0 1385 0 +0 1515 0 +0 1645 0 +0 1775 0 +0 1906 0 +0 2038 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +824 111 918 +770 202 885 +687 301 836 +544 407 762 +235 518 640 +0 634 399 +0 753 0 +0 876 0 +0 1001 0 +0 1127 0 +0 1255 0 +0 1384 0 +0 1514 0 +0 1644 0 +0 1775 0 +0 1906 0 +0 2037 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +956 72 995 +917 170 967 +858 276 927 +765 387 867 +601 502 773 +205 622 606 +0 744 196 +0 869 0 +0 995 0 +0 1123 0 +0 1252 0 +0 1382 0 +0 1512 0 +0 1643 0 +0 1774 0 +0 1905 0 +0 2037 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1088 14 1080 +1059 125 1058 +1017 240 1025 +954 359 978 +852 481 906 +667 605 787 +161 732 556 +0 859 0 +0 988 0 +0 1117 0 +0 1248 0 +0 1378 0 +0 1510 0 +0 1641 0 +0 1772 0 +0 1904 0 +0 2036 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1221 0 1175 +1199 55 1156 +1169 187 1130 +1124 319 1093 +1057 450 1038 +948 582 953 +743 714 805 +94 846 478 +0 978 0 +0 1110 0 +0 1242 0 +0 1374 0 +0 1506 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1353 0 1276 +1337 0 1262 +1315 105 1241 +1283 259 1212 +1236 406 1171 +1166 550 1108 +1050 690 1009 +828 828 828 +0 965 349 +0 1100 0 +0 1235 0 +0 1369 0 +0 1502 0 +0 1636 0 +0 1768 0 +0 1901 0 +0 2034 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1485 0 1384 +1473 0 1373 +1457 0 1357 +1434 164 1335 +1401 340 1303 +1353 502 1257 +1280 656 1188 +1159 803 1074 +922 947 858 +0 1087 83 +0 1225 0 +0 1361 0 +0 1497 0 +0 1631 0 +0 1765 0 +0 1899 0 +0 2032 0 +0 2165 0 +0 2297 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1618 0 1497 +1609 0 1488 +1596 0 1476 +1580 0 1459 +1556 232 1435 +1523 430 1402 +1473 605 1352 +1398 767 1276 +1273 921 1149 +1023 1068 894 +0 1211 0 +0 1351 0 +0 1489 0 +0 1626 0 +0 1761 0 +0 1896 0 +0 2030 0 +0 2163 0 +0 2297 0 +0 2429 0 +0 2561 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1750 0 1615 +1743 0 1608 +1734 0 1598 +1722 0 1586 +1705 31 1568 +1681 310 1543 +1647 527 1507 +1597 714 1454 +1520 883 1372 +1391 1041 1234 +1130 1192 938 +0 1337 0 +0 1479 0 +0 1618 0 +0 1755 0 +0 1891 0 +0 2026 0 +0 2161 0 +0 2295 0 +0 2427 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1882 0 1736 +1877 0 1730 +1870 0 1723 +1861 0 1713 +1849 0 1700 +1831 75 1681 +1807 397 1655 +1773 632 1618 +1722 828 1562 +1644 1003 1476 +1512 1164 1326 +1242 1317 992 +0 1465 0 +0 1608 0 +0 1748 0 +0 1886 0 +0 2022 0 +0 2157 0 +0 2293 0 +0 2427 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2014 0 1859 +2010 0 1855 +2005 0 1850 +1999 0 1842 +1989 0 1832 +1977 0 1818 +1959 128 1799 +1935 492 1772 +1900 742 1733 +1849 946 1676 +1770 1125 1585 +1636 1290 1426 +1359 1445 1054 +0 1593 0 +0 1737 0 +0 1878 0 +0 2017 0 +0 2153 0 +0 2289 0 +0 2423 0 +0 2557 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2147 0 1985 +2143 0 1982 +2139 0 1977 +2135 0 1972 +2127 0 1964 +2119 0 1954 +2105 0 1940 +2089 191 1920 +2063 594 1893 +2029 857 1853 +1977 1067 1793 +1897 1250 1700 +1762 1417 1533 +1480 1573 1126 +0 1723 0 +0 1868 0 +0 2009 0 +0 2147 0 +0 2285 0 +0 2421 0 +0 2555 0 +0 2689 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2279 0 2111 +2277 0 2109 +2273 0 2107 +2269 0 2103 +2265 0 2097 +2257 0 2089 +2249 0 2079 +2235 0 2063 +2219 264 2044 +2193 702 2016 +2159 976 1975 +2107 1191 1914 +2026 1377 1818 +1889 1545 1645 +1603 1703 1208 +0 1853 0 +0 1998 0 +0 2139 0 +0 2279 0 +0 2417 0 +0 2553 0 +0 2687 0 +0 2821 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2411 0 2241 +2409 0 2239 +2407 0 2237 +2405 0 2233 +2401 0 2229 +2395 0 2223 +2389 0 2215 +2379 0 2205 +2367 0 2189 +2349 345 2169 +2323 816 2141 +2289 1098 2099 +2235 1317 2038 +2155 1505 1940 +2018 1675 1762 +1728 1833 1298 +0 1984 0 +0 2129 0 +0 2271 0 +0 2411 0 +0 2549 0 +0 2685 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2543 0 2369 +2541 0 2369 +2541 0 2367 +2537 0 2363 +2535 0 2361 +2531 0 2357 +2527 0 2351 +2519 0 2343 +2511 0 2333 +2497 0 2317 +2479 436 2297 +2455 933 2269 +2419 1223 2227 +2367 1445 2163 +2285 1634 2063 +2147 1805 1882 +1855 1964 1396 +0 2115 0 +0 2261 0 +0 2403 0 +0 2543 0 +0 2679 0 +0 2817 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2675 0 2499 +2675 0 2499 +2673 0 2497 +2671 0 2495 +2669 0 2493 +2667 0 2489 +2663 0 2485 +2657 0 2479 +2651 0 2471 +2641 0 2461 +2629 0 2447 +2611 534 2425 +2585 1054 2397 +2549 1349 2355 +2497 1573 2291 +2415 1764 2189 +2277 1935 2005 +1984 2095 1501 +0 2247 0 +0 2393 0 +0 2535 0 +0 2675 0 +0 2811 0 +0 2947 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2807 0 2629 +2807 0 2629 +2805 0 2629 +2805 0 2627 +2803 0 2625 +2801 0 2623 +2797 0 2619 +2795 0 2615 +2789 0 2609 +2783 0 2601 +2773 0 2591 +2759 0 2575 +2741 639 2555 +2717 1178 2525 +2681 1477 2483 +2629 1703 2419 +2547 1894 2317 +2407 2067 2131 +2113 2225 1612 +0 2377 0 +0 2523 0 +0 2667 0 +0 2807 0 +0 2943 0 +0 3079 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +2939 0 2761 +2939 0 2761 +2939 0 2759 +2937 0 2759 +2935 0 2757 +2935 0 2755 +2933 0 2753 +2929 0 2749 +2925 0 2745 +2921 0 2739 +2913 0 2731 +2905 0 2721 +2891 0 2705 +2873 750 2685 +2849 1304 2655 +2813 1605 2613 +2759 1833 2549 +2679 2025 2445 +2539 2197 2257 +2243 2357 1727 +0 2509 0 +0 2655 0 +0 2799 0 +0 2937 0 +0 3075 0 +0 3213 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3071 0 2893 +3071 0 2891 +3071 0 2891 +3069 0 2891 +3069 0 2889 +3067 0 2889 +3067 0 2887 +3065 0 2883 +3061 0 2881 +3057 0 2877 +3053 0 2871 +3045 0 2863 +3037 0 2851 +3023 0 2837 +3005 865 2815 +2981 1431 2785 +2945 1735 2743 +2891 1963 2679 +2809 2157 2575 +2671 2329 2385 +2373 2489 1847 +0 2641 0 +0 2787 0 +0 2931 0 +0 3069 0 +0 3207 0 +0 3345 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4015 0 +3203 0 3023 +3203 0 3023 +3203 0 3023 +3203 0 3023 +3201 0 3021 +3201 0 3021 +3199 0 3019 +3199 0 3017 +3195 0 3015 +3193 0 3011 +3189 0 3007 +3185 0 3001 +3177 0 2993 +3167 0 2983 +3155 0 2967 +3137 984 2947 +3111 1559 2917 +3077 1865 2873 +3023 2095 2809 +2941 2287 2705 +2801 2461 2515 +2505 2621 1969 +0 2773 0 +0 2919 0 +0 3063 0 +0 3203 0 +0 3339 0 +0 3477 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3335 0 3155 +3335 0 3155 +3335 0 3155 +3335 0 3155 +3335 0 3153 +3333 0 3153 +3333 0 3151 +3331 0 3151 +3329 0 3149 +3327 0 3147 +3325 0 3143 +3321 0 3139 +3317 0 3133 +3309 0 3125 +3299 0 3113 +3287 0 3099 +3269 1106 3077 +3243 1689 3049 +3207 1996 3005 +3155 2225 2941 +3073 2419 2837 +2933 2593 2645 +2635 2753 2093 +0 2905 0 +0 3051 0 +0 3195 0 +0 3335 0 +0 3471 0 +0 3609 0 +0 3743 0 +0 3877 0 +0 4011 0 +3467 0 3287 +3467 0 3287 +3467 0 3287 +3467 0 3287 +3467 0 3285 +3467 0 3285 +3465 0 3285 +3465 0 3283 +3463 0 3283 +3461 0 3281 +3459 0 3277 +3457 0 3275 +3453 0 3271 +3449 0 3265 +3441 0 3257 +3431 0 3245 +3419 0 3231 +3401 1231 3209 +3375 1819 3179 +3339 2127 3137 +3287 2357 3071 +3205 2551 2967 +3065 2725 2775 +2767 2885 2219 +0 3037 0 +0 3183 0 +0 3327 0 +0 3467 0 +0 3603 0 +0 3741 0 +0 3875 0 +0 4011 0 +3599 0 3419 +3599 0 3419 +3599 0 3419 +3599 0 3419 +3599 0 3417 +3599 0 3417 +3599 0 3417 +3597 0 3417 +3597 0 3415 +3595 0 3413 +3593 0 3413 +3591 0 3409 +3589 0 3407 +3585 0 3403 +3581 0 3397 +3573 0 3389 +3563 0 3377 +3551 0 3361 +3533 1357 3341 +3507 1949 3311 +3471 2259 3267 +3419 2489 3203 +3337 2683 3099 +3197 2855 2905 +2899 3017 2347 +0 3169 0 +0 3315 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4007 0 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3549 +3731 0 3549 +3731 0 3549 +3729 0 3549 +3729 0 3547 +3727 0 3545 +3727 0 3543 +3723 0 3541 +3721 0 3539 +3717 0 3533 +3713 0 3527 +3705 0 3519 +3695 0 3509 +3683 0 3493 +3665 1485 3473 +3639 2081 3443 +3603 2391 3399 +3551 2621 3335 +3469 2815 3229 +3329 2987 3037 +3031 3149 2477 +0 3301 0 +0 3447 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3865 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3861 0 3679 +3861 0 3679 +3859 0 3677 +3859 0 3675 +3855 0 3673 +3853 0 3671 +3849 0 3665 +3845 0 3659 +3837 0 3651 +3827 0 3641 +3815 0 3625 +3797 1614 3605 +3771 2211 3575 +3735 2521 3531 +3683 2753 3467 +3601 2947 3361 +3461 3119 3169 +3161 3281 2607 +0 3433 0 +0 3579 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3993 0 3811 +3993 0 3811 +3991 0 3809 +3991 0 3807 +3989 0 3805 +3985 0 3803 +3981 0 3797 +3977 0 3791 +3969 0 3783 +3959 0 3773 +3947 0 3757 +3929 1744 3737 +3903 2343 3707 +3867 2653 3663 +3815 2885 3599 +3733 3079 3493 +3593 3251 3299 +3293 3413 2737 +0 3565 0 +0 3711 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3943 +4095 0 3941 +4095 0 3939 +4095 0 3937 +4095 0 3935 +4095 0 3929 +4095 0 3923 +4095 0 3915 +4093 0 3905 +4079 0 3889 +4061 1874 3869 +4037 2475 3839 +4001 2785 3795 +3947 3017 3731 +3865 3211 3625 +3725 3385 3431 +3425 3545 2867 +0 3697 0 +0 3843 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4069 +4095 0 4067 +4095 0 4061 +4095 0 4055 +4095 0 4047 +4095 0 4037 +4095 0 4021 +4095 2005 4001 +4095 2607 3971 +4095 2917 3927 +4079 3149 3863 +3997 3343 3757 +3857 3517 3563 +3557 3677 2999 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2135 4095 +4095 2739 4095 +4095 3049 4059 +4095 3281 3995 +4095 3475 3889 +3989 3649 3695 +3689 3809 3129 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2267 4095 +4095 2871 4095 +4095 3181 4095 +4095 3413 4095 +4095 3607 4021 +4095 3781 3827 +3821 3941 3261 +532 243 872 +424 313 835 +222 392 781 +0 480 697 +0 576 552 +0 680 237 +0 789 0 +0 903 0 +0 1022 0 +0 1143 0 +0 1267 0 +0 1393 0 +0 1520 0 +0 1649 0 +0 1779 0 +0 1909 0 +0 2039 0 +0 2171 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +640 231 909 +557 303 875 +416 384 826 +111 473 750 +0 571 625 +0 675 372 +0 786 0 +0 901 0 +0 1020 0 +0 1141 0 +0 1266 0 +0 1392 0 +0 1520 0 +0 1649 0 +0 1778 0 +0 1908 0 +0 2039 0 +0 2171 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +754 215 955 +690 289 924 +589 372 880 +404 464 814 +0 563 706 +0 669 506 +0 781 0 +0 897 0 +0 1017 0 +0 1139 0 +0 1264 0 +0 1391 0 +0 1519 0 +0 1648 0 +0 1778 0 +0 1908 0 +0 2039 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +871 192 1009 +823 270 982 +750 356 944 +628 451 886 +389 553 796 +0 661 639 +0 774 273 +0 892 0 +0 1013 0 +0 1136 0 +0 1262 0 +0 1389 0 +0 1518 0 +0 1647 0 +0 1777 0 +0 1908 0 +0 2038 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +992 160 1073 +956 243 1049 +902 334 1017 +819 433 968 +676 539 895 +367 650 772 +0 766 531 +0 885 0 +0 1008 0 +0 1132 0 +0 1259 0 +0 1387 0 +0 1516 0 +0 1646 0 +0 1776 0 +0 1907 0 +0 2038 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1116 113 1146 +1088 204 1126 +1049 302 1099 +990 408 1059 +897 519 1000 +733 634 905 +337 754 738 +0 876 328 +0 1001 0 +0 1127 0 +0 1255 0 +0 1384 0 +0 1514 0 +0 1644 0 +0 1775 0 +0 1906 0 +0 2037 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1241 42 1229 +1221 146 1212 +1191 257 1190 +1149 372 1157 +1086 491 1110 +985 613 1038 +799 737 919 +293 864 688 +0 991 0 +0 1120 0 +0 1250 0 +0 1380 0 +0 1511 0 +0 1642 0 +0 1773 0 +0 1905 0 +0 2036 0 +0 2169 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1368 0 1320 +1353 56 1307 +1331 187 1288 +1301 319 1262 +1256 451 1225 +1189 582 1170 +1080 714 1085 +875 846 937 +226 978 610 +0 1110 0 +0 1242 0 +0 1374 0 +0 1507 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1497 0 1419 +1485 0 1408 +1469 74 1394 +1447 237 1373 +1415 391 1345 +1369 538 1303 +1298 682 1240 +1183 822 1141 +960 960 960 +118 1097 481 +0 1232 0 +0 1367 0 +0 1501 0 +0 1634 0 +0 1768 0 +0 1901 0 +0 2033 0 +0 2165 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1626 0 1525 +1617 0 1516 +1606 0 1505 +1589 97 1489 +1566 296 1467 +1533 472 1435 +1485 634 1389 +1412 788 1320 +1291 935 1206 +1054 1078 990 +0 1219 216 +0 1357 0 +0 1493 0 +0 1629 0 +0 1763 0 +0 1897 0 +0 2031 0 +0 2165 0 +0 2297 0 +0 2429 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1756 0 1636 +1750 0 1630 +1741 0 1621 +1729 0 1608 +1712 126 1591 +1688 364 1568 +1655 562 1534 +1606 737 1484 +1530 899 1408 +1405 1052 1281 +1155 1200 1026 +0 1343 0 +0 1483 0 +0 1621 0 +0 1758 0 +0 1893 0 +0 2028 0 +0 2161 0 +0 2295 0 +0 2429 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1887 0 1752 +1882 0 1747 +1875 0 1740 +1866 0 1731 +1854 0 1718 +1837 163 1700 +1813 442 1675 +1779 659 1639 +1729 846 1586 +1652 1015 1505 +1523 1173 1366 +1262 1324 1070 +0 1469 0 +0 1611 0 +0 1750 0 +0 1888 0 +0 2024 0 +0 2159 0 +0 2293 0 +0 2427 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2018 0 1872 +2014 0 1868 +2009 0 1862 +2002 0 1855 +1993 0 1845 +1981 0 1832 +1963 207 1813 +1939 529 1787 +1905 764 1750 +1854 960 1695 +1776 1135 1608 +1644 1297 1458 +1374 1450 1123 +0 1597 0 +0 1740 0 +0 1880 0 +0 2018 0 +0 2155 0 +0 2289 0 +0 2425 0 +0 2559 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2149 0 1994 +2147 0 1991 +2143 0 1987 +2137 0 1982 +2131 0 1974 +2121 0 1964 +2109 0 1950 +2091 260 1931 +2067 624 1904 +2032 874 1866 +1981 1078 1808 +1902 1258 1717 +1768 1422 1559 +1491 1577 1186 +0 1725 0 +0 1869 0 +0 2010 0 +0 2149 0 +0 2285 0 +0 2421 0 +0 2555 0 +0 2689 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2281 0 2119 +2279 0 2117 +2275 0 2113 +2271 0 2109 +2267 0 2105 +2261 0 2097 +2251 0 2087 +2239 0 2073 +2221 323 2053 +2195 726 2025 +2161 989 1985 +2109 1200 1926 +2029 1382 1832 +1894 1549 1665 +1612 1706 1258 +0 1855 0 +0 2000 0 +0 2141 0 +0 2279 0 +0 2417 0 +0 2553 0 +0 2687 0 +0 2821 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2413 0 2245 +2411 0 2243 +2409 0 2241 +2405 0 2239 +2401 0 2235 +2397 0 2229 +2391 0 2221 +2381 0 2211 +2367 0 2197 +2351 396 2177 +2325 834 2147 +2291 1108 2107 +2239 1323 2047 +2157 1509 1950 +2021 1678 1777 +1735 1835 1340 +0 1985 0 +0 2131 0 +0 2273 0 +0 2411 0 +0 2549 0 +0 2685 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2543 0 2373 +2543 0 2373 +2541 0 2371 +2539 0 2369 +2537 0 2365 +2533 0 2361 +2527 0 2355 +2521 0 2347 +2511 0 2337 +2499 0 2323 +2481 477 2301 +2455 948 2273 +2421 1230 2231 +2369 1449 2171 +2287 1637 2071 +2149 1807 1894 +1860 1965 1430 +0 2115 0 +0 2261 0 +0 2403 0 +0 2543 0 +0 2681 0 +0 2817 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2675 0 2503 +2675 0 2501 +2673 0 2501 +2673 0 2499 +2671 0 2497 +2667 0 2493 +2663 0 2489 +2659 0 2483 +2651 0 2475 +2643 0 2465 +2629 0 2449 +2611 568 2429 +2587 1065 2401 +2551 1355 2359 +2499 1577 2295 +2417 1766 2195 +2279 1937 2014 +1987 2095 1528 +0 2247 0 +0 2393 0 +0 2535 0 +0 2675 0 +0 2813 0 +0 2949 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2807 0 2633 +2807 0 2631 +2807 0 2631 +2805 0 2629 +2803 0 2627 +2801 0 2625 +2799 0 2621 +2795 0 2617 +2789 0 2611 +2783 0 2603 +2773 0 2593 +2761 0 2579 +2743 666 2557 +2717 1186 2529 +2681 1481 2487 +2629 1705 2423 +2547 1896 2321 +2409 2067 2137 +2115 2227 1633 +0 2379 0 +0 2525 0 +0 2667 0 +0 2807 0 +0 2943 0 +0 3081 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +2939 0 2763 +2939 0 2763 +2939 0 2761 +2937 0 2761 +2937 0 2759 +2935 0 2757 +2933 0 2755 +2931 0 2751 +2927 0 2747 +2921 0 2741 +2915 0 2733 +2905 0 2723 +2891 0 2707 +2875 771 2687 +2849 1310 2657 +2813 1609 2615 +2761 1835 2551 +2679 2026 2449 +2541 2199 2263 +2245 2359 1744 +0 2509 0 +0 2657 0 +0 2799 0 +0 2939 0 +0 3075 0 +0 3213 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3071 0 2893 +3071 0 2893 +3071 0 2893 +3071 0 2891 +3069 0 2891 +3069 0 2889 +3067 0 2887 +3065 0 2885 +3061 0 2881 +3057 0 2877 +3053 0 2871 +3045 0 2863 +3037 0 2853 +3023 0 2837 +3005 882 2817 +2981 1436 2787 +2945 1738 2745 +2891 1965 2681 +2811 2157 2577 +2671 2329 2389 +2375 2489 1860 +0 2641 0 +0 2787 0 +0 2931 0 +0 3071 0 +0 3207 0 +0 3345 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4015 0 +3203 0 3025 +3203 0 3025 +3203 0 3023 +3203 0 3023 +3201 0 3023 +3201 0 3021 +3199 0 3021 +3199 0 3019 +3197 0 3015 +3193 0 3013 +3189 0 3009 +3185 0 3003 +3177 0 2995 +3169 0 2983 +3155 0 2969 +3137 997 2947 +3113 1563 2919 +3077 1867 2875 +3023 2095 2811 +2941 2289 2707 +2803 2461 2517 +2505 2621 1979 +0 2773 0 +0 2919 0 +0 3063 0 +0 3203 0 +0 3339 0 +0 3477 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3335 0 3155 +3335 0 3155 +3335 0 3155 +3335 0 3155 +3335 0 3155 +3333 0 3153 +3333 0 3153 +3331 0 3151 +3331 0 3149 +3329 0 3147 +3325 0 3143 +3321 0 3139 +3317 0 3133 +3309 0 3125 +3301 0 3115 +3287 0 3099 +3269 1116 3079 +3245 1692 3049 +3209 1997 3007 +3155 2227 2941 +3073 2419 2837 +2933 2593 2647 +2637 2753 2101 +0 2905 0 +0 3051 0 +0 3195 0 +0 3335 0 +0 3471 0 +0 3609 0 +0 3743 0 +0 3877 0 +0 4011 0 +3467 0 3287 +3467 0 3287 +3467 0 3287 +3467 0 3287 +3467 0 3287 +3467 0 3285 +3465 0 3285 +3465 0 3285 +3463 0 3283 +3463 0 3281 +3461 0 3279 +3457 0 3275 +3453 0 3271 +3449 0 3265 +3441 0 3257 +3431 0 3245 +3419 0 3231 +3401 1238 3209 +3375 1821 3181 +3341 2129 3137 +3287 2357 3073 +3205 2551 2969 +3065 2725 2777 +2767 2885 2225 +0 3037 0 +0 3183 0 +0 3327 0 +0 3467 0 +0 3605 0 +0 3741 0 +0 3875 0 +0 4011 0 +3599 0 3419 +3599 0 3419 +3599 0 3419 +3599 0 3419 +3599 0 3419 +3599 0 3417 +3599 0 3417 +3597 0 3417 +3597 0 3415 +3595 0 3415 +3595 0 3413 +3591 0 3411 +3589 0 3407 +3585 0 3403 +3581 0 3397 +3573 0 3389 +3563 0 3377 +3551 0 3363 +3533 1363 3341 +3507 1951 3311 +3471 2259 3269 +3419 2489 3203 +3337 2683 3099 +3197 2857 2907 +2899 3017 2351 +0 3169 0 +0 3315 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4007 0 +3733 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3549 +3731 0 3549 +3729 0 3549 +3729 0 3547 +3727 0 3545 +3727 0 3545 +3725 0 3541 +3721 0 3539 +3717 0 3535 +3713 0 3529 +3705 0 3521 +3695 0 3509 +3683 0 3495 +3665 1489 3473 +3639 2081 3443 +3603 2391 3401 +3551 2621 3335 +3469 2815 3231 +3329 2989 3037 +3031 3149 2479 +0 3301 0 +0 3447 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3865 0 3683 +3865 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3681 +3863 0 3681 +3863 0 3681 +3861 0 3681 +3861 0 3679 +3859 0 3677 +3859 0 3677 +3857 0 3673 +3853 0 3671 +3849 0 3665 +3845 0 3661 +3837 0 3651 +3827 0 3641 +3815 0 3625 +3797 1617 3605 +3771 2213 3575 +3735 2523 3531 +3683 2753 3467 +3601 2947 3363 +3461 3121 3169 +3163 3281 2609 +0 3433 0 +0 3579 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3813 +3995 0 3813 +3995 0 3813 +3993 0 3813 +3993 0 3811 +3991 0 3809 +3991 0 3807 +3989 0 3805 +3985 0 3803 +3981 0 3797 +3977 0 3791 +3969 0 3783 +3959 0 3773 +3947 0 3757 +3929 1746 3737 +3903 2343 3707 +3869 2653 3663 +3815 2885 3599 +3733 3079 3493 +3593 3253 3301 +3295 3413 2739 +0 3565 0 +0 3711 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3941 +4095 0 3939 +4095 0 3937 +4095 0 3935 +4095 0 3929 +4095 0 3923 +4095 0 3915 +4093 0 3905 +4079 0 3889 +4061 1876 3869 +4037 2475 3839 +4001 2785 3795 +3947 3017 3731 +3865 3211 3625 +3725 3385 3431 +3425 3545 2869 +0 3697 0 +0 3845 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4069 +4095 0 4067 +4095 0 4061 +4095 0 4055 +4095 0 4047 +4095 0 4037 +4095 0 4021 +4095 2006 4001 +4095 2607 3971 +4095 2917 3927 +4079 3149 3863 +3997 3343 3757 +3857 3517 3563 +3557 3677 2999 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2137 4095 +4095 2739 4095 +4095 3049 4059 +4095 3281 3995 +4095 3475 3889 +3989 3649 3695 +3689 3809 3131 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2267 4095 +4095 2871 4095 +4095 3181 4095 +4095 3413 4095 +4095 3607 4021 +4095 3781 3827 +3821 3941 3261 +644 324 1001 +562 383 974 +422 452 935 +123 530 876 +0 617 784 +0 713 622 +0 815 233 +0 924 0 +0 1037 0 +0 1155 0 +0 1276 0 +0 1400 0 +0 1526 0 +0 1653 0 +0 1782 0 +0 1911 0 +0 2041 0 +0 2171 0 +0 2303 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +731 315 1029 +664 375 1004 +556 445 967 +354 524 913 +0 612 829 +0 708 684 +0 812 369 +0 921 0 +0 1035 0 +0 1154 0 +0 1275 0 +0 1399 0 +0 1525 0 +0 1653 0 +0 1781 0 +0 1911 0 +0 2041 0 +0 2171 0 +0 2303 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +826 301 1065 +772 363 1041 +689 435 1008 +548 516 958 +243 605 883 +0 703 757 +0 807 504 +0 918 0 +0 1033 0 +0 1151 0 +0 1273 0 +0 1398 0 +0 1524 0 +0 1652 0 +0 1781 0 +0 1910 0 +0 2041 0 +0 2171 0 +0 2303 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +928 282 1108 +886 347 1086 +822 421 1056 +721 504 1012 +536 596 946 +32 695 838 +0 801 638 +0 913 23 +0 1029 0 +0 1149 0 +0 1271 0 +0 1396 0 +0 1523 0 +0 1651 0 +0 1780 0 +0 1910 0 +0 2040 0 +0 2171 0 +0 2303 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1036 256 1160 +1003 324 1141 +955 402 1114 +882 488 1075 +760 583 1018 +521 685 929 +0 793 771 +0 907 406 +0 1024 0 +0 1145 0 +0 1268 0 +0 1394 0 +0 1521 0 +0 1650 0 +0 1779 0 +0 1909 0 +0 2040 0 +0 2171 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1150 219 1221 +1124 292 1205 +1088 375 1182 +1034 466 1149 +951 565 1100 +808 671 1026 +500 782 905 +0 898 663 +0 1017 0 +0 1140 0 +0 1265 0 +0 1391 0 +0 1519 0 +0 1648 0 +0 1778 0 +0 1908 0 +0 2039 0 +0 2171 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1267 163 1292 +1248 245 1278 +1220 336 1259 +1181 435 1231 +1122 540 1191 +1029 651 1131 +865 767 1037 +469 886 870 +0 1008 460 +0 1133 0 +0 1259 0 +0 1387 0 +0 1516 0 +0 1646 0 +0 1776 0 +0 1907 0 +0 2038 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1388 76 1373 +1373 174 1361 +1353 278 1345 +1324 389 1322 +1281 504 1289 +1218 623 1242 +1116 745 1170 +932 870 1051 +425 996 820 +0 1123 0 +0 1252 0 +0 1382 0 +0 1512 0 +0 1643 0 +0 1774 0 +0 1905 0 +0 2037 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2563 0 +0 2695 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1512 0 1462 +1501 57 1452 +1485 188 1439 +1463 319 1420 +1433 451 1395 +1388 583 1357 +1321 715 1303 +1212 847 1217 +1008 979 1069 +358 1110 742 +0 1242 0 +0 1374 0 +0 1507 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1638 0 1559 +1629 0 1551 +1617 29 1541 +1601 206 1526 +1579 369 1505 +1547 523 1477 +1501 670 1435 +1430 814 1373 +1315 954 1273 +1092 1092 1092 +250 1229 613 +0 1364 0 +0 1499 0 +0 1633 0 +0 1767 0 +0 1900 0 +0 2033 0 +0 2165 0 +0 2297 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1765 0 1663 +1758 0 1657 +1750 0 1649 +1738 0 1637 +1721 229 1621 +1698 428 1599 +1665 604 1567 +1617 766 1522 +1544 920 1452 +1423 1067 1338 +1186 1211 1122 +47 1351 348 +0 1489 0 +0 1626 0 +0 1761 0 +0 1896 0 +0 2030 0 +0 2163 0 +0 2297 0 +0 2429 0 +0 2561 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1893 0 1773 +1888 0 1768 +1882 0 1762 +1873 0 1753 +1861 0 1740 +1844 258 1723 +1820 496 1700 +1787 694 1666 +1738 869 1616 +1662 1031 1540 +1537 1185 1414 +1287 1332 1158 +0 1475 0 +0 1615 0 +0 1753 0 +0 1890 0 +0 2025 0 +0 2159 0 +0 2293 0 +0 2427 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2023 0 1888 +2019 0 1884 +2014 0 1879 +2007 0 1872 +1998 0 1863 +1986 0 1850 +1969 295 1832 +1945 574 1807 +1911 791 1771 +1861 978 1718 +1784 1147 1637 +1655 1305 1498 +1394 1456 1202 +0 1601 0 +0 1743 0 +0 1882 0 +0 2020 0 +0 2155 0 +0 2291 0 +0 2425 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2153 0 2007 +2149 0 2004 +2147 0 2000 +2141 0 1995 +2135 0 1987 +2125 0 1978 +2113 0 1964 +2095 339 1946 +2071 661 1920 +2037 896 1882 +1986 1092 1827 +1908 1267 1740 +1777 1429 1590 +1507 1582 1256 +0 1729 0 +0 1872 0 +0 2012 0 +0 2151 0 +0 2287 0 +0 2421 0 +0 2557 0 +0 2691 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2283 0 2129 +2281 0 2127 +2279 0 2123 +2275 0 2119 +2269 0 2113 +2263 0 2107 +2253 0 2097 +2241 0 2083 +2223 393 2063 +2199 756 2036 +2165 1006 1998 +2113 1210 1940 +2034 1390 1850 +1900 1554 1691 +1624 1709 1318 +0 1858 0 +0 2002 0 +0 2143 0 +0 2281 0 +0 2417 0 +0 2553 0 +0 2687 0 +0 2823 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2415 0 2253 +2413 0 2251 +2411 0 2249 +2407 0 2245 +2405 0 2241 +2399 0 2237 +2393 0 2229 +2383 0 2219 +2371 0 2205 +2353 455 2185 +2329 858 2157 +2293 1121 2117 +2241 1332 2057 +2161 1515 1964 +2026 1681 1797 +1744 1838 1391 +0 1987 0 +0 2131 0 +0 2273 0 +0 2411 0 +0 2549 0 +0 2685 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2545 0 2379 +2545 0 2377 +2543 0 2377 +2541 0 2373 +2537 0 2371 +2535 0 2367 +2529 0 2361 +2523 0 2353 +2513 0 2343 +2501 0 2329 +2483 528 2309 +2457 966 2281 +2423 1240 2239 +2371 1456 2179 +2289 1641 2083 +2153 1810 1910 +1867 1967 1472 +0 2117 0 +0 2263 0 +0 2405 0 +0 2543 0 +0 2681 0 +0 2817 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2677 0 2507 +2675 0 2505 +2675 0 2505 +2673 0 2503 +2671 0 2501 +2669 0 2497 +2665 0 2493 +2659 0 2487 +2653 0 2479 +2643 0 2469 +2631 0 2455 +2613 609 2433 +2587 1080 2405 +2553 1362 2365 +2501 1582 2303 +2419 1769 2203 +2283 1939 2026 +1993 2097 1562 +0 2249 0 +0 2393 0 +0 2535 0 +0 2675 0 +0 2813 0 +0 2949 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2809 0 2635 +2807 0 2635 +2807 0 2633 +2805 0 2633 +2805 0 2631 +2803 0 2629 +2799 0 2625 +2795 0 2621 +2791 0 2615 +2783 0 2607 +2775 0 2597 +2761 0 2581 +2743 700 2561 +2719 1198 2533 +2683 1487 2491 +2631 1709 2427 +2549 1898 2327 +2411 2069 2147 +2119 2227 1661 +0 2379 0 +0 2525 0 +0 2667 0 +0 2807 0 +0 2945 0 +0 3081 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +2941 0 2765 +2939 0 2765 +2939 0 2763 +2939 0 2763 +2937 0 2761 +2935 0 2759 +2933 0 2757 +2931 0 2755 +2927 0 2749 +2921 0 2743 +2915 0 2737 +2905 0 2725 +2893 0 2711 +2875 798 2689 +2849 1319 2661 +2815 1613 2619 +2761 1837 2555 +2681 2028 2453 +2541 2199 2269 +2247 2359 1766 +0 2511 0 +0 2657 0 +0 2799 0 +0 2939 0 +0 3077 0 +0 3213 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3073 0 2895 +3071 0 2895 +3071 0 2895 +3071 0 2893 +3069 0 2893 +3069 0 2891 +3067 0 2889 +3065 0 2887 +3063 0 2883 +3059 0 2879 +3053 0 2873 +3047 0 2865 +3037 0 2855 +3025 0 2839 +3007 903 2819 +2981 1442 2789 +2945 1741 2747 +2893 1967 2683 +2811 2159 2581 +2673 2331 2395 +2377 2491 1876 +0 2641 0 +0 2789 0 +0 2931 0 +0 3071 0 +0 3207 0 +0 3345 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4015 0 +3205 0 3025 +3203 0 3025 +3203 0 3025 +3203 0 3025 +3203 0 3023 +3201 0 3023 +3201 0 3021 +3199 0 3019 +3197 0 3017 +3193 0 3015 +3191 0 3009 +3185 0 3003 +3177 0 2995 +3169 0 2985 +3155 0 2971 +3137 1014 2949 +3113 1568 2919 +3077 1870 2877 +3025 2097 2813 +2943 2289 2711 +2803 2461 2521 +2507 2621 1992 +0 2773 0 +0 2919 0 +0 3063 0 +0 3203 0 +0 3339 0 +0 3477 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3335 0 3157 +3335 0 3157 +3335 0 3157 +3335 0 3155 +3335 0 3155 +3335 0 3155 +3333 0 3153 +3333 0 3153 +3331 0 3151 +3329 0 3149 +3325 0 3145 +3321 0 3141 +3317 0 3135 +3309 0 3127 +3301 0 3115 +3287 0 3101 +3269 1129 3079 +3245 1695 3051 +3209 1999 3007 +3155 2227 2943 +3073 2421 2839 +2935 2593 2649 +2637 2753 2111 +0 2905 0 +0 3051 0 +0 3195 0 +0 3335 0 +0 3473 0 +0 3609 0 +0 3743 0 +0 3877 0 +0 4011 0 +3469 0 3289 +3467 0 3289 +3467 0 3287 +3467 0 3287 +3467 0 3287 +3467 0 3287 +3465 0 3285 +3465 0 3285 +3463 0 3283 +3463 0 3281 +3461 0 3279 +3457 0 3277 +3453 0 3271 +3449 0 3265 +3441 0 3257 +3433 0 3247 +3419 0 3231 +3401 1248 3211 +3377 1824 3181 +3341 2129 3139 +3287 2359 3073 +3205 2551 2969 +3065 2725 2779 +2769 2885 2233 +0 3037 0 +0 3183 0 +0 3327 0 +0 3467 0 +0 3605 0 +0 3741 0 +0 3875 0 +0 4011 0 +3601 0 3419 +3599 0 3419 +3599 0 3419 +3599 0 3419 +3599 0 3419 +3599 0 3419 +3599 0 3417 +3597 0 3417 +3597 0 3417 +3595 0 3415 +3595 0 3413 +3593 0 3411 +3589 0 3407 +3585 0 3403 +3581 0 3397 +3573 0 3389 +3565 0 3379 +3551 0 3363 +3533 1371 3341 +3509 1953 3313 +3473 2261 3269 +3419 2489 3205 +3337 2683 3101 +3197 2857 2909 +2899 3017 2357 +0 3169 0 +0 3315 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4007 0 +3733 0 3551 +3733 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3549 +3729 0 3549 +3729 0 3547 +3727 0 3547 +3727 0 3545 +3725 0 3543 +3721 0 3539 +3717 0 3535 +3713 0 3529 +3705 0 3521 +3697 0 3509 +3683 0 3495 +3665 1495 3473 +3641 2083 3443 +3605 2391 3401 +3551 2621 3335 +3469 2815 3231 +3329 2989 3039 +3031 3149 2485 +0 3301 0 +0 3447 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3865 0 3683 +3865 0 3683 +3865 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3681 +3863 0 3681 +3861 0 3681 +3861 0 3679 +3859 0 3679 +3859 0 3677 +3857 0 3673 +3853 0 3671 +3849 0 3667 +3845 0 3661 +3837 0 3653 +3829 0 3641 +3815 0 3627 +3797 1622 3605 +3773 2213 3575 +3737 2523 3533 +3683 2753 3467 +3601 2947 3363 +3461 3121 3169 +3163 3281 2611 +0 3433 0 +0 3579 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3813 +3995 0 3813 +3993 0 3813 +3993 0 3811 +3991 0 3809 +3991 0 3809 +3989 0 3805 +3985 0 3803 +3981 0 3799 +3977 0 3793 +3969 0 3785 +3961 0 3773 +3947 0 3757 +3929 1749 3737 +3905 2345 3707 +3869 2655 3663 +3815 2885 3599 +3733 3079 3495 +3593 3253 3301 +3295 3413 2741 +0 3565 0 +0 3711 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3941 +4095 0 3941 +4095 0 3937 +4095 0 3935 +4095 0 3929 +4095 0 3925 +4095 0 3915 +4093 0 3905 +4079 0 3889 +4061 1878 3869 +4037 2475 3839 +4001 2785 3795 +3947 3017 3731 +3865 3211 3625 +3725 3385 3433 +3427 3545 2871 +0 3697 0 +0 3845 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4069 +4095 0 4067 +4095 0 4061 +4095 0 4055 +4095 0 4047 +4095 0 4037 +4095 0 4021 +4095 2008 4001 +4095 2607 3971 +4095 2917 3927 +4079 3149 3863 +3997 3343 3757 +3857 3517 3563 +3559 3677 3001 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2139 4095 +4095 2739 4095 +4095 3049 4059 +4095 3281 3995 +4095 3475 3889 +3989 3649 3695 +3691 3809 3131 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2269 4095 +4095 2871 4095 +4095 3181 4095 +4095 3413 4095 +4095 3607 4021 +4095 3781 3827 +3823 3941 3263 +761 415 1131 +699 464 1111 +599 522 1082 +420 590 1041 +0 667 979 +0 753 880 +0 848 701 +0 950 229 +0 1058 0 +0 1171 0 +0 1288 0 +0 1409 0 +0 1533 0 +0 1658 0 +0 1786 0 +0 1914 0 +0 2043 0 +0 2173 0 +0 2303 0 +0 2435 0 +0 2567 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +829 407 1153 +776 456 1133 +694 515 1106 +554 584 1067 +255 662 1008 +0 749 916 +0 845 754 +0 947 365 +0 1056 0 +0 1169 0 +0 1287 0 +0 1408 0 +0 1532 0 +0 1658 0 +0 1785 0 +0 1914 0 +0 2043 0 +0 2173 0 +0 2303 0 +0 2435 0 +0 2567 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +907 396 1180 +863 447 1161 +796 507 1136 +688 577 1099 +486 656 1045 +0 744 961 +0 841 817 +0 944 501 +0 1053 0 +0 1167 0 +0 1286 0 +0 1407 0 +0 1531 0 +0 1657 0 +0 1785 0 +0 1913 0 +0 2043 0 +0 2173 0 +0 2303 0 +0 2435 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +994 381 1214 +958 433 1197 +904 495 1173 +821 567 1139 +680 648 1090 +375 737 1015 +0 835 889 +0 939 636 +0 1050 0 +0 1165 0 +0 1284 0 +0 1406 0 +0 1530 0 +0 1656 0 +0 1784 0 +0 1913 0 +0 2042 0 +0 2173 0 +0 2303 0 +0 2435 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1089 360 1255 +1060 415 1240 +1018 479 1219 +955 553 1188 +853 636 1144 +669 728 1078 +164 827 970 +0 933 770 +0 1045 155 +0 1161 0 +0 1281 0 +0 1403 0 +0 1528 0 +0 1655 0 +0 1783 0 +0 1912 0 +0 2042 0 +0 2173 0 +0 2303 0 +0 2435 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1191 330 1306 +1168 388 1292 +1135 456 1273 +1087 534 1246 +1014 620 1208 +893 715 1150 +653 817 1060 +0 925 903 +0 1038 538 +0 1156 0 +0 1277 0 +0 1401 0 +0 1526 0 +0 1653 0 +0 1782 0 +0 1911 0 +0 2041 0 +0 2171 0 +0 2303 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1300 287 1366 +1282 351 1353 +1256 424 1337 +1220 507 1314 +1166 598 1281 +1083 697 1232 +940 803 1159 +632 914 1036 +0 1030 795 +0 1149 0 +0 1272 0 +0 1397 0 +0 1523 0 +0 1651 0 +0 1780 0 +0 1910 0 +0 2040 0 +0 2171 0 +0 2303 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1413 222 1435 +1399 295 1425 +1380 377 1410 +1352 468 1391 +1313 567 1363 +1254 672 1323 +1161 783 1264 +997 899 1169 +601 1018 1002 +0 1140 592 +0 1265 0 +0 1391 0 +0 1519 0 +0 1648 0 +0 1778 0 +0 1908 0 +0 2039 0 +0 2171 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1531 118 1514 +1520 208 1505 +1505 306 1493 +1485 411 1477 +1456 521 1454 +1413 636 1421 +1350 755 1374 +1249 877 1302 +1063 1002 1183 +557 1128 952 +0 1255 0 +0 1384 0 +0 1514 0 +0 1644 0 +0 1775 0 +0 1906 0 +0 2037 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1652 0 1601 +1644 58 1594 +1633 189 1584 +1617 320 1571 +1596 451 1553 +1565 583 1527 +1520 715 1490 +1453 847 1435 +1344 979 1349 +1139 1110 1201 +490 1242 875 +0 1375 0 +0 1507 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1776 0 1697 +1770 0 1691 +1761 0 1683 +1749 161 1673 +1733 338 1658 +1711 501 1638 +1679 655 1609 +1633 803 1567 +1562 946 1505 +1447 1086 1405 +1225 1225 1225 +382 1361 745 +0 1497 0 +0 1631 0 +0 1765 0 +0 1899 0 +0 2032 0 +0 2165 0 +0 2297 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1902 0 1800 +1897 0 1795 +1890 0 1789 +1882 0 1781 +1870 122 1769 +1853 361 1753 +1830 560 1731 +1797 736 1700 +1750 898 1654 +1676 1052 1584 +1556 1199 1471 +1318 1343 1254 +179 1483 480 +0 1621 0 +0 1758 0 +0 1893 0 +0 2028 0 +0 2161 0 +0 2295 0 +0 2429 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2029 0 1909 +2025 0 1905 +2021 0 1900 +2014 0 1894 +2005 0 1885 +1993 63 1873 +1976 390 1856 +1952 628 1832 +1919 826 1798 +1870 1001 1748 +1795 1163 1672 +1669 1317 1546 +1419 1464 1290 +0 1607 0 +0 1747 0 +0 1886 0 +0 2022 0 +0 2157 0 +0 2293 0 +0 2425 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2157 0 2023 +2155 0 2020 +2151 0 2016 +2147 0 2011 +2139 0 2004 +2131 0 1995 +2119 0 1982 +2101 427 1964 +2077 706 1939 +2043 924 1903 +1993 1110 1851 +1916 1279 1769 +1787 1437 1630 +1526 1588 1334 +0 1733 0 +0 1875 0 +0 2014 0 +0 2151 0 +0 2287 0 +0 2423 0 +0 2557 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2287 0 2141 +2285 0 2139 +2283 0 2135 +2279 0 2131 +2273 0 2127 +2267 0 2119 +2257 0 2109 +2245 0 2097 +2227 471 2077 +2203 793 2051 +2169 1028 2014 +2119 1224 1959 +2040 1399 1872 +1909 1561 1723 +1639 1714 1388 +0 1861 0 +0 2004 0 +0 2145 0 +0 2283 0 +0 2419 0 +0 2555 0 +0 2689 0 +0 2823 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2417 0 2263 +2415 0 2261 +2413 0 2259 +2411 0 2255 +2407 0 2251 +2401 0 2245 +2395 0 2239 +2385 0 2229 +2373 0 2215 +2355 525 2195 +2331 888 2169 +2297 1138 2129 +2245 1342 2073 +2165 1522 1982 +2033 1686 1823 +1756 1841 1450 +0 1990 0 +0 2133 0 +0 2275 0 +0 2413 0 +0 2549 0 +0 2685 0 +0 2821 0 +0 2955 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2547 0 2387 +2547 0 2385 +2545 0 2383 +2543 0 2381 +2539 0 2377 +2537 0 2373 +2531 0 2369 +2525 0 2361 +2515 0 2351 +2503 0 2337 +2485 587 2317 +2461 990 2289 +2425 1253 2249 +2373 1464 2189 +2293 1647 2097 +2159 1813 1930 +1876 1970 1523 +0 2119 0 +0 2263 0 +0 2405 0 +0 2545 0 +0 2681 0 +0 2817 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2679 0 2513 +2677 0 2511 +2677 0 2509 +2675 0 2509 +2673 0 2505 +2669 0 2503 +2667 0 2499 +2661 0 2493 +2655 0 2485 +2645 0 2475 +2633 0 2461 +2615 660 2441 +2589 1098 2413 +2555 1372 2371 +2503 1588 2311 +2421 1773 2215 +2285 1942 2042 +1999 2099 1604 +0 2249 0 +0 2395 0 +0 2537 0 +0 2675 0 +0 2813 0 +0 2949 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2809 0 2639 +2809 0 2639 +2809 0 2637 +2807 0 2637 +2805 0 2635 +2803 0 2633 +2801 0 2629 +2797 0 2625 +2791 0 2619 +2785 0 2611 +2775 0 2601 +2763 0 2587 +2745 742 2567 +2721 1212 2537 +2685 1495 2497 +2633 1714 2435 +2551 1901 2335 +2415 2071 2159 +2125 2229 1695 +0 2381 0 +0 2525 0 +0 2667 0 +0 2807 0 +0 2945 0 +0 3081 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +2941 0 2769 +2941 0 2767 +2939 0 2767 +2939 0 2765 +2937 0 2765 +2937 0 2763 +2935 0 2761 +2931 0 2757 +2927 0 2753 +2923 0 2747 +2915 0 2739 +2907 0 2729 +2893 0 2713 +2875 832 2693 +2851 1330 2665 +2815 1619 2623 +2763 1841 2561 +2681 2030 2461 +2543 2201 2279 +2251 2361 1793 +0 2511 0 +0 2657 0 +0 2799 0 +0 2939 0 +0 3077 0 +0 3213 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3883 0 +0 4015 0 +3073 0 2897 +3073 0 2897 +3071 0 2897 +3071 0 2895 +3071 0 2895 +3069 0 2893 +3067 0 2891 +3065 0 2889 +3063 0 2887 +3059 0 2881 +3053 0 2877 +3047 0 2869 +3037 0 2857 +3025 0 2843 +3007 930 2821 +2981 1451 2793 +2947 1745 2751 +2893 1970 2687 +2813 2161 2587 +2673 2331 2401 +2379 2491 1898 +0 2643 0 +0 2789 0 +0 2931 0 +0 3071 0 +0 3209 0 +0 3345 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4015 0 +3205 0 3027 +3205 0 3027 +3203 0 3027 +3203 0 3027 +3203 0 3025 +3201 0 3025 +3201 0 3023 +3199 0 3021 +3197 0 3019 +3195 0 3015 +3191 0 3011 +3185 0 3005 +3179 0 2997 +3169 0 2987 +3157 0 2973 +3139 1035 2951 +3113 1574 2921 +3077 1873 2879 +3025 2099 2815 +2943 2291 2713 +2805 2463 2527 +2509 2623 2008 +0 2775 0 +0 2921 0 +0 3063 0 +0 3203 0 +0 3341 0 +0 3477 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3337 0 3159 +3337 0 3157 +3335 0 3157 +3335 0 3157 +3335 0 3157 +3335 0 3155 +3333 0 3155 +3333 0 3153 +3331 0 3151 +3329 0 3149 +3325 0 3147 +3323 0 3141 +3317 0 3137 +3311 0 3129 +3301 0 3117 +3287 0 3103 +3269 1146 3081 +3245 1700 3051 +3209 2002 3009 +3157 2229 2945 +3075 2421 2843 +2935 2593 2653 +2639 2753 2123 +0 2905 0 +0 3053 0 +0 3195 0 +0 3335 0 +0 3473 0 +0 3609 0 +0 3743 0 +0 3879 0 +0 4011 0 +3469 0 3289 +3469 0 3289 +3467 0 3289 +3467 0 3289 +3467 0 3289 +3467 0 3287 +3467 0 3287 +3465 0 3285 +3465 0 3285 +3463 0 3283 +3461 0 3281 +3457 0 3277 +3453 0 3273 +3449 0 3267 +3441 0 3259 +3433 0 3247 +3419 0 3233 +3401 1261 3211 +3377 1827 3183 +3341 2131 3139 +3287 2359 3075 +3205 2553 2971 +3067 2725 2781 +2769 2885 2243 +0 3037 0 +0 3183 0 +0 3327 0 +0 3467 0 +0 3605 0 +0 3741 0 +0 3875 0 +0 4011 0 +3601 0 3421 +3601 0 3421 +3599 0 3421 +3599 0 3419 +3599 0 3419 +3599 0 3419 +3599 0 3419 +3599 0 3417 +3597 0 3417 +3595 0 3415 +3595 0 3413 +3593 0 3411 +3589 0 3409 +3585 0 3403 +3581 0 3397 +3573 0 3389 +3565 0 3379 +3551 0 3363 +3533 1380 3343 +3509 1956 3313 +3473 2261 3271 +3419 2491 3205 +3337 2683 3101 +3199 2857 2911 +2901 3017 2365 +0 3169 0 +0 3315 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4007 0 +3733 0 3551 +3733 0 3551 +3733 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3729 0 3549 +3729 0 3549 +3727 0 3547 +3727 0 3545 +3725 0 3543 +3721 0 3539 +3717 0 3535 +3713 0 3529 +3705 0 3521 +3697 0 3511 +3683 0 3495 +3665 1503 3475 +3641 2085 3445 +3605 2393 3401 +3551 2623 3337 +3469 2815 3233 +3329 2989 3041 +3031 3149 2489 +0 3301 0 +0 3447 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3865 0 3683 +3865 0 3683 +3865 0 3683 +3865 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3681 +3861 0 3681 +3861 0 3679 +3859 0 3679 +3859 0 3677 +3857 0 3675 +3853 0 3671 +3849 0 3667 +3845 0 3661 +3837 0 3653 +3829 0 3641 +3815 0 3627 +3797 1627 3605 +3773 2215 3575 +3737 2523 3533 +3683 2753 3467 +3601 2947 3363 +3461 3121 3171 +3163 3281 2617 +0 3433 0 +0 3579 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3813 +3995 0 3813 +3993 0 3813 +3993 0 3811 +3991 0 3811 +3991 0 3809 +3989 0 3807 +3985 0 3803 +3981 0 3799 +3977 0 3793 +3969 0 3785 +3961 0 3773 +3947 0 3759 +3929 1754 3737 +3905 2345 3707 +3869 2655 3665 +3815 2885 3599 +3733 3079 3495 +3593 3253 3301 +3295 3413 2743 +0 3565 0 +0 3713 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3943 +4095 0 3941 +4095 0 3937 +4095 0 3935 +4095 0 3931 +4095 0 3925 +4095 0 3917 +4093 0 3905 +4079 0 3891 +4061 1881 3869 +4037 2477 3839 +4001 2787 3795 +3947 3017 3731 +3865 3211 3627 +3725 3385 3433 +3427 3545 2873 +0 3697 0 +0 3845 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4073 +4095 0 4073 +4095 0 4069 +4095 0 4067 +4095 0 4063 +4095 0 4057 +4095 0 4049 +4095 0 4037 +4095 0 4021 +4095 2010 4001 +4095 2609 3971 +4095 2919 3927 +4079 3149 3863 +3997 3343 3757 +3857 3517 3565 +3559 3677 3003 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2141 4095 +4095 2739 4095 +4095 3049 4059 +4095 3281 3995 +4095 3475 3889 +3989 3649 3697 +3691 3809 3133 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2271 4095 +4095 2871 4095 +4095 3181 4095 +4095 3413 4095 +4095 3607 4021 +4095 3781 3827 +3823 3941 3263 +881 513 1262 +834 553 1247 +762 601 1225 +645 659 1196 +417 726 1152 +0 802 1087 +0 888 982 +0 982 788 +0 1083 222 +0 1191 0 +0 1304 0 +0 1421 0 +0 1542 0 +0 1665 0 +0 1791 0 +0 1918 0 +0 2046 0 +0 2175 0 +0 2305 0 +0 2437 0 +0 2567 0 +0 2699 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +934 506 1278 +893 547 1263 +831 596 1243 +731 654 1214 +552 722 1173 +77 799 1111 +0 885 1012 +0 980 833 +0 1082 361 +0 1190 0 +0 1303 0 +0 1421 0 +0 1541 0 +0 1665 0 +0 1791 0 +0 1918 0 +0 2046 0 +0 2175 0 +0 2305 0 +0 2437 0 +0 2567 0 +0 2699 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +997 497 1299 +961 539 1285 +908 588 1265 +826 648 1238 +686 716 1199 +387 794 1140 +0 882 1048 +0 977 886 +0 1079 498 +0 1188 0 +0 1302 0 +0 1419 0 +0 1541 0 +0 1664 0 +0 1790 0 +0 1917 0 +0 2046 0 +0 2175 0 +0 2305 0 +0 2435 0 +0 2567 0 +0 2699 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1070 485 1325 +1039 528 1312 +995 579 1294 +928 639 1268 +820 709 1231 +618 788 1177 +0 876 1093 +0 973 949 +0 1076 633 +0 1185 0 +0 1299 0 +0 1418 0 +0 1539 0 +0 1663 0 +0 1789 0 +0 1917 0 +0 2045 0 +0 2175 0 +0 2305 0 +0 2435 0 +0 2567 0 +0 2699 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1151 469 1358 +1126 513 1346 +1090 565 1329 +1036 627 1305 +954 699 1272 +812 780 1222 +507 870 1147 +0 967 1021 +0 1071 768 +0 1182 0 +0 1297 0 +0 1416 0 +0 1538 0 +0 1662 0 +0 1788 0 +0 1916 0 +0 2045 0 +0 2175 0 +0 2305 0 +0 2435 0 +0 2567 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1242 446 1399 +1221 492 1387 +1192 547 1372 +1150 611 1351 +1086 685 1320 +985 768 1276 +801 860 1210 +296 960 1102 +0 1065 902 +0 1177 287 +0 1293 0 +0 1413 0 +0 1536 0 +0 1661 0 +0 1787 0 +0 1915 0 +0 2044 0 +0 2175 0 +0 2305 0 +0 2435 0 +0 2567 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1340 413 1448 +1323 462 1438 +1300 520 1424 +1267 588 1405 +1219 666 1378 +1146 752 1340 +1024 847 1283 +785 949 1193 +0 1057 1035 +0 1171 670 +0 1288 0 +0 1409 0 +0 1533 0 +0 1658 0 +0 1786 0 +0 1914 0 +0 2043 0 +0 2173 0 +0 2303 0 +0 2435 0 +0 2567 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1445 365 1506 +1432 419 1498 +1414 483 1486 +1388 556 1469 +1352 639 1446 +1298 730 1413 +1215 829 1365 +1072 935 1291 +764 1046 1169 +0 1162 927 +0 1281 0 +0 1404 0 +0 1529 0 +0 1655 0 +0 1783 0 +0 1912 0 +0 2042 0 +0 2173 0 +0 2303 0 +0 2435 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1556 291 1575 +1546 354 1567 +1531 427 1557 +1512 509 1542 +1485 600 1523 +1445 699 1495 +1386 804 1455 +1293 915 1396 +1129 1031 1301 +733 1150 1134 +0 1272 724 +0 1397 0 +0 1524 0 +0 1651 0 +0 1780 0 +0 1910 0 +0 2040 0 +0 2171 0 +0 2303 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1671 169 1652 +1663 250 1646 +1652 340 1637 +1638 438 1625 +1617 543 1609 +1588 653 1586 +1546 768 1554 +1482 887 1506 +1381 1009 1434 +1196 1134 1315 +689 1260 1084 +0 1388 87 +0 1516 0 +0 1646 0 +0 1776 0 +0 1907 0 +0 2038 0 +0 2169 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1790 0 1739 +1784 59 1733 +1776 190 1726 +1765 321 1716 +1749 452 1703 +1728 583 1685 +1697 715 1659 +1653 847 1622 +1585 979 1567 +1476 1111 1481 +1272 1243 1334 +622 1375 1007 +0 1507 0 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1913 0 1833 +1908 0 1829 +1902 0 1823 +1893 93 1816 +1882 293 1805 +1866 470 1790 +1843 633 1770 +1811 787 1741 +1765 935 1699 +1694 1078 1637 +1579 1218 1537 +1357 1357 1357 +514 1493 877 +0 1629 0 +0 1763 0 +0 1897 0 +0 2031 0 +0 2165 0 +0 2297 0 +0 2429 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2037 0 1935 +2034 0 1932 +2029 0 1927 +2023 0 1921 +2014 0 1913 +2002 254 1901 +1985 493 1885 +1962 692 1863 +1930 868 1832 +1882 1030 1786 +1809 1184 1716 +1688 1331 1603 +1450 1475 1386 +311 1615 612 +0 1753 0 +0 1890 0 +0 2025 0 +0 2159 0 +0 2293 0 +0 2427 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2163 0 2044 +2161 0 2041 +2157 0 2037 +2153 0 2033 +2147 0 2026 +2137 0 2017 +2125 195 2005 +2109 522 1988 +2085 760 1964 +2051 958 1930 +2002 1133 1881 +1927 1295 1805 +1802 1449 1678 +1551 1596 1422 +0 1739 0 +0 1880 0 +0 2018 0 +0 2155 0 +0 2289 0 +0 2425 0 +0 2559 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2291 0 2157 +2289 0 2155 +2287 0 2153 +2283 0 2149 +2279 0 2143 +2271 0 2137 +2263 0 2127 +2251 102 2115 +2233 559 2097 +2209 838 2071 +2175 1055 2035 +2125 1242 1983 +2049 1412 1901 +1920 1570 1762 +1658 1720 1466 +0 1866 0 +0 2007 0 +0 2147 0 +0 2283 0 +0 2419 0 +0 2555 0 +0 2689 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2421 0 2275 +2419 0 2273 +2417 0 2271 +2415 0 2269 +2411 0 2265 +2405 0 2259 +2399 0 2251 +2389 0 2241 +2377 0 2229 +2359 603 2209 +2335 925 2183 +2301 1160 2147 +2251 1356 2091 +2173 1531 2004 +2041 1693 1855 +1771 1846 1520 +0 1993 0 +0 2137 0 +0 2277 0 +0 2415 0 +0 2551 0 +0 2687 0 +0 2821 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2551 0 2395 +2549 0 2395 +2547 0 2393 +2545 0 2391 +2543 0 2387 +2539 0 2383 +2533 0 2379 +2527 0 2371 +2517 0 2361 +2505 0 2347 +2487 657 2327 +2463 1020 2301 +2429 1270 2261 +2377 1475 2205 +2299 1654 2113 +2165 1818 1955 +1888 1973 1583 +0 2121 0 +0 2265 0 +0 2407 0 +0 2545 0 +0 2681 0 +0 2817 0 +0 2953 0 +0 3087 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2681 0 2519 +2679 0 2519 +2679 0 2517 +2677 0 2515 +2675 0 2513 +2673 0 2511 +2669 0 2505 +2663 0 2501 +2657 0 2493 +2647 0 2483 +2635 0 2469 +2617 720 2449 +2593 1122 2421 +2557 1386 2381 +2505 1596 2321 +2425 1779 2229 +2291 1946 2061 +2008 2101 1655 +0 2251 0 +0 2397 0 +0 2537 0 +0 2677 0 +0 2813 0 +0 2949 0 +0 3083 0 +0 3219 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2811 0 2645 +2811 0 2645 +2809 0 2643 +2809 0 2641 +2807 0 2641 +2805 0 2637 +2803 0 2635 +2799 0 2631 +2793 0 2625 +2787 0 2617 +2777 0 2607 +2765 0 2593 +2747 792 2573 +2721 1230 2545 +2687 1505 2503 +2635 1720 2443 +2555 1906 2347 +2417 2073 2173 +2131 2231 1736 +0 2381 0 +0 2527 0 +0 2669 0 +0 2807 0 +0 2945 0 +0 3081 0 +0 3215 0 +0 3351 0 +0 3483 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2943 0 2773 +2941 0 2771 +2941 0 2771 +2941 0 2769 +2939 0 2769 +2937 0 2767 +2935 0 2765 +2933 0 2761 +2929 0 2757 +2923 0 2751 +2917 0 2743 +2907 0 2733 +2895 0 2719 +2877 874 2699 +2853 1344 2669 +2817 1627 2629 +2765 1846 2567 +2683 2034 2469 +2547 2203 2291 +2257 2361 1827 +0 2513 0 +0 2657 0 +0 2799 0 +0 2939 0 +0 3077 0 +0 3213 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3883 0 +0 4015 0 +3073 0 2901 +3073 0 2901 +3073 0 2899 +3073 0 2899 +3071 0 2897 +3071 0 2897 +3069 0 2895 +3067 0 2893 +3063 0 2889 +3059 0 2885 +3055 0 2879 +3047 0 2871 +3039 0 2861 +3025 0 2847 +3007 964 2825 +2983 1462 2797 +2947 1751 2755 +2895 1973 2693 +2813 2163 2593 +2675 2333 2411 +2383 2493 1925 +0 2643 0 +0 2789 0 +0 2931 0 +0 3071 0 +0 3209 0 +0 3345 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4015 0 +3205 0 3029 +3205 0 3029 +3205 0 3029 +3205 0 3029 +3203 0 3027 +3203 0 3027 +3201 0 3025 +3199 0 3023 +3197 0 3021 +3195 0 3019 +3191 0 3013 +3187 0 3009 +3179 0 3001 +3169 0 2989 +3157 0 2975 +3139 1062 2955 +3115 1583 2925 +3079 1877 2883 +3025 2101 2819 +2945 2293 2719 +2805 2463 2533 +2513 2623 2030 +0 2775 0 +0 2921 0 +0 3063 0 +0 3203 0 +0 3341 0 +0 3477 0 +0 3611 0 +0 3747 0 +0 3879 0 +0 4013 0 +3337 0 3159 +3337 0 3159 +3337 0 3159 +3335 0 3159 +3335 0 3159 +3335 0 3157 +3335 0 3157 +3333 0 3155 +3331 0 3153 +3329 0 3151 +3327 0 3149 +3323 0 3143 +3317 0 3137 +3311 0 3129 +3301 0 3119 +3289 0 3105 +3271 1167 3083 +3245 1707 3055 +3209 2005 3011 +3157 2231 2947 +3075 2423 2845 +2937 2595 2659 +2641 2755 2141 +0 2907 0 +0 3053 0 +0 3195 0 +0 3335 0 +0 3473 0 +0 3609 0 +0 3743 0 +0 3879 0 +0 4011 0 +3469 0 3291 +3469 0 3291 +3469 0 3291 +3469 0 3289 +3467 0 3289 +3467 0 3289 +3467 0 3289 +3465 0 3287 +3465 0 3285 +3463 0 3283 +3461 0 3281 +3459 0 3279 +3455 0 3275 +3449 0 3269 +3443 0 3261 +3433 0 3249 +3419 0 3235 +3403 1278 3213 +3377 1832 3183 +3341 2133 3141 +3289 2361 3077 +3207 2553 2975 +3067 2725 2785 +2771 2885 2255 +0 3037 0 +0 3185 0 +0 3327 0 +0 3467 0 +0 3605 0 +0 3741 0 +0 3875 0 +0 4011 0 +3601 0 3421 +3601 0 3421 +3601 0 3421 +3601 0 3421 +3599 0 3421 +3599 0 3421 +3599 0 3419 +3599 0 3419 +3597 0 3417 +3597 0 3417 +3595 0 3415 +3593 0 3413 +3589 0 3409 +3587 0 3405 +3581 0 3399 +3573 0 3391 +3565 0 3379 +3551 0 3365 +3533 1393 3345 +3509 1959 3315 +3473 2263 3271 +3419 2491 3207 +3339 2685 3103 +3199 2857 2913 +2901 3017 2375 +0 3169 0 +0 3317 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4007 0 +3733 0 3553 +3733 0 3553 +3733 0 3553 +3733 0 3553 +3731 0 3553 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3731 0 3551 +3729 0 3549 +3729 0 3547 +3727 0 3545 +3725 0 3543 +3721 0 3541 +3717 0 3535 +3713 0 3531 +3705 0 3521 +3697 0 3511 +3683 0 3495 +3665 1513 3475 +3641 2087 3445 +3605 2393 3403 +3551 2623 3337 +3469 2817 3233 +3331 2989 3043 +3033 3149 2497 +0 3301 0 +0 3449 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3865 0 3685 +3865 0 3685 +3865 0 3683 +3865 0 3683 +3865 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3681 +3861 0 3681 +3861 0 3679 +3859 0 3677 +3857 0 3675 +3853 0 3671 +3849 0 3667 +3845 0 3661 +3837 0 3653 +3829 0 3643 +3815 0 3627 +3797 1635 3607 +3773 2217 3577 +3737 2525 3533 +3683 2755 3469 +3601 2947 3365 +3461 3121 3173 +3163 3281 2621 +0 3433 0 +0 3581 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3813 +3995 0 3813 +3993 0 3813 +3993 0 3811 +3991 0 3809 +3989 0 3807 +3985 0 3803 +3981 0 3799 +3977 0 3793 +3969 0 3785 +3961 0 3773 +3947 0 3759 +3929 1759 3737 +3905 2347 3707 +3869 2655 3665 +3815 2885 3599 +3733 3079 3495 +3593 3253 3303 +3295 3413 2749 +0 3565 0 +0 3713 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3943 +4095 0 3941 +4095 0 3939 +4095 0 3935 +4095 0 3931 +4095 0 3925 +4095 0 3917 +4093 0 3905 +4079 0 3891 +4061 1886 3869 +4037 2477 3839 +4001 2787 3797 +3947 3017 3731 +3865 3211 3627 +3725 3385 3435 +3427 3545 2877 +0 3697 0 +0 3845 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4075 +4095 0 4073 +4095 0 4069 +4095 0 4067 +4095 0 4063 +4095 0 4057 +4095 0 4049 +4095 0 4037 +4095 0 4023 +4095 2014 4001 +4095 2609 3971 +4095 2919 3929 +4079 3149 3863 +3997 3343 3759 +3857 3517 3565 +3559 3677 3005 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2143 4095 +4095 2741 4095 +4095 3051 4059 +4095 3281 3995 +4095 3475 3891 +3989 3649 3697 +3691 3809 3135 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2273 4095 +4095 2871 4095 +4095 3183 4095 +4095 3413 4095 +4095 3607 4021 +4095 3781 3829 +3823 3941 3265 +1004 617 1393 +969 649 1381 +916 689 1366 +836 737 1344 +699 794 1313 +412 861 1269 +0 937 1201 +0 1022 1091 +0 1116 884 +0 1217 213 +0 1324 0 +0 1437 0 +0 1554 0 +0 1675 0 +0 1798 0 +0 1923 0 +0 2051 0 +0 2179 0 +0 2307 0 +0 2437 0 +0 2569 0 +0 2699 0 +0 2831 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1045 612 1405 +1013 645 1394 +966 685 1379 +895 733 1358 +777 791 1328 +549 858 1284 +0 935 1219 +0 1020 1114 +0 1114 920 +0 1216 354 +0 1323 0 +0 1436 0 +0 1554 0 +0 1674 0 +0 1798 0 +0 1923 0 +0 2051 0 +0 2179 0 +0 2307 0 +0 2437 0 +0 2569 0 +0 2699 0 +0 2831 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1095 605 1421 +1066 638 1410 +1025 679 1395 +963 728 1375 +864 786 1346 +684 854 1305 +209 931 1243 +0 1018 1144 +0 1112 965 +0 1214 493 +0 1322 0 +0 1435 0 +0 1553 0 +0 1674 0 +0 1797 0 +0 1923 0 +0 2049 0 +0 2179 0 +0 2307 0 +0 2437 0 +0 2569 0 +0 2699 0 +0 2831 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1154 596 1441 +1129 629 1431 +1093 671 1417 +1040 721 1397 +958 780 1370 +818 848 1331 +519 927 1272 +0 1014 1180 +0 1109 1018 +0 1211 630 +0 1320 0 +0 1434 0 +0 1552 0 +0 1673 0 +0 1796 0 +0 1922 0 +0 2049 0 +0 2179 0 +0 2307 0 +0 2437 0 +0 2569 0 +0 2699 0 +0 2831 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1223 583 1467 +1202 617 1457 +1171 660 1444 +1127 711 1426 +1060 771 1400 +952 841 1363 +750 920 1309 +121 1009 1225 +0 1105 1081 +0 1208 765 +0 1317 0 +0 1432 0 +0 1550 0 +0 1671 0 +0 1796 0 +0 1922 0 +0 2049 0 +0 2177 0 +0 2307 0 +0 2437 0 +0 2567 0 +0 2699 0 +0 2831 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1301 565 1499 +1283 601 1490 +1258 645 1478 +1222 697 1461 +1168 759 1437 +1085 831 1404 +944 912 1354 +639 1002 1279 +0 1099 1153 +0 1204 900 +0 1314 0 +0 1429 0 +0 1548 0 +0 1670 0 +0 1794 0 +0 1921 0 +0 2049 0 +0 2177 0 +0 2307 0 +0 2437 0 +0 2567 0 +0 2699 0 +0 2831 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1389 540 1539 +1374 578 1531 +1353 624 1520 +1324 679 1504 +1282 743 1483 +1219 817 1452 +1117 900 1408 +933 992 1342 +429 1091 1234 +0 1197 1034 +0 1309 419 +0 1425 0 +0 1545 0 +0 1668 0 +0 1793 0 +0 1919 0 +0 2047 0 +0 2177 0 +0 2307 0 +0 2437 0 +0 2567 0 +0 2699 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1484 504 1587 +1472 545 1580 +1456 594 1570 +1432 652 1556 +1400 721 1537 +1351 798 1510 +1278 885 1472 +1157 979 1415 +917 1081 1325 +0 1189 1167 +0 1303 802 +0 1420 0 +0 1541 0 +0 1665 0 +0 1790 0 +0 1918 0 +0 2046 0 +0 2175 0 +0 2305 0 +0 2437 0 +0 2567 0 +0 2699 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1587 451 1645 +1577 497 1639 +1564 551 1630 +1546 615 1618 +1520 688 1601 +1484 771 1578 +1430 862 1545 +1347 961 1497 +1204 1067 1423 +896 1178 1301 +0 1294 1059 +0 1414 0 +0 1536 0 +0 1661 0 +0 1788 0 +0 1915 0 +0 2044 0 +0 2175 0 +0 2305 0 +0 2435 0 +0 2567 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1695 369 1712 +1688 423 1707 +1678 486 1699 +1664 559 1689 +1644 641 1675 +1617 732 1655 +1577 831 1627 +1518 936 1587 +1425 1047 1528 +1261 1163 1434 +865 1282 1266 +0 1404 856 +0 1529 0 +0 1656 0 +0 1784 0 +0 1912 0 +0 2042 0 +0 2173 0 +0 2303 0 +0 2435 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1809 230 1789 +1803 301 1784 +1795 382 1778 +1785 472 1769 +1770 570 1757 +1749 675 1741 +1720 785 1718 +1678 900 1686 +1614 1019 1638 +1513 1141 1566 +1328 1266 1448 +821 1392 1216 +0 1520 219 +0 1649 0 +0 1778 0 +0 1908 0 +0 2039 0 +0 2171 0 +0 2301 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1927 0 1875 +1923 61 1871 +1917 191 1865 +1908 322 1858 +1897 453 1849 +1881 584 1835 +1860 716 1817 +1829 847 1791 +1785 979 1754 +1717 1111 1699 +1608 1243 1613 +1404 1375 1466 +754 1507 1139 +0 1639 0 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2049 0 1969 +2045 0 1966 +2040 0 1961 +2034 0 1955 +2025 225 1948 +2014 425 1937 +1998 602 1922 +1975 765 1902 +1943 919 1873 +1897 1067 1831 +1827 1210 1769 +1711 1351 1669 +1489 1489 1489 +646 1625 1009 +0 1761 0 +0 1896 0 +0 2029 0 +0 2163 0 +0 2297 0 +0 2429 0 +0 2561 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2173 0 2071 +2169 0 2067 +2165 0 2065 +2161 0 2059 +2155 0 2053 +2145 53 2045 +2135 386 2033 +2117 625 2017 +2095 824 1995 +2061 1000 1964 +2014 1162 1918 +1941 1316 1848 +1820 1464 1735 +1582 1607 1518 +443 1747 744 +0 1885 0 +0 2022 0 +0 2157 0 +0 2291 0 +0 2425 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2297 0 2177 +2295 0 2175 +2293 0 2173 +2289 0 2169 +2285 0 2165 +2279 0 2159 +2269 0 2149 +2257 327 2137 +2241 655 2119 +2217 892 2097 +2183 1090 2063 +2135 1265 2013 +2059 1428 1937 +1934 1581 1810 +1683 1728 1554 +0 1871 0 +0 2012 0 +0 2149 0 +0 2287 0 +0 2421 0 +0 2557 0 +0 2691 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2425 0 2291 +2423 0 2289 +2421 0 2287 +2419 0 2285 +2415 0 2281 +2411 0 2275 +2403 0 2269 +2395 0 2259 +2383 234 2247 +2365 691 2229 +2341 970 2203 +2307 1188 2167 +2257 1374 2115 +2181 1544 2033 +2051 1702 1894 +1790 1852 1599 +0 1998 0 +0 2139 0 +0 2279 0 +0 2417 0 +0 2553 0 +0 2687 0 +0 2821 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2553 0 2409 +2553 0 2407 +2551 0 2405 +2549 0 2403 +2547 0 2401 +2543 0 2397 +2537 0 2391 +2531 0 2383 +2521 0 2375 +2509 69 2361 +2491 735 2343 +2467 1057 2315 +2433 1292 2279 +2383 1489 2223 +2305 1663 2137 +2173 1825 1987 +1903 1978 1652 +0 2125 0 +0 2269 0 +0 2409 0 +0 2547 0 +0 2683 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2683 0 2529 +2683 0 2527 +2681 0 2527 +2679 0 2525 +2677 0 2523 +2675 0 2519 +2671 0 2515 +2667 0 2511 +2659 0 2503 +2651 0 2493 +2637 0 2479 +2619 789 2459 +2595 1152 2433 +2561 1403 2395 +2509 1607 2337 +2431 1786 2245 +2297 1951 2087 +2020 2105 1715 +0 2253 0 +0 2397 0 +0 2539 0 +0 2677 0 +0 2815 0 +0 2949 0 +0 3085 0 +0 3219 0 +0 3351 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4015 0 +2813 0 2653 +2813 0 2651 +2811 0 2651 +2811 0 2649 +2809 0 2647 +2807 0 2645 +2805 0 2643 +2801 0 2639 +2795 0 2633 +2789 0 2625 +2779 0 2615 +2767 0 2601 +2749 852 2581 +2725 1254 2553 +2689 1518 2513 +2637 1728 2455 +2557 1911 2361 +2423 2077 2193 +2141 2235 1787 +0 2383 0 +0 2529 0 +0 2669 0 +0 2809 0 +0 2945 0 +0 3081 0 +0 3217 0 +0 3351 0 +0 3483 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2943 0 2777 +2943 0 2777 +2943 0 2777 +2941 0 2775 +2941 0 2775 +2939 0 2773 +2937 0 2771 +2935 0 2767 +2931 0 2763 +2925 0 2757 +2919 0 2749 +2909 0 2739 +2897 0 2725 +2879 924 2705 +2855 1363 2677 +2819 1637 2635 +2767 1852 2575 +2687 2038 2479 +2549 2207 2305 +2263 2363 1869 +0 2513 0 +0 2659 0 +0 2801 0 +0 2939 0 +0 3077 0 +0 3213 0 +0 3347 0 +0 3483 0 +0 3615 0 +0 3749 0 +0 3883 0 +0 4015 0 +3075 0 2905 +3075 0 2905 +3073 0 2903 +3073 0 2903 +3073 0 2903 +3071 0 2901 +3069 0 2899 +3067 0 2897 +3065 0 2893 +3061 0 2889 +3055 0 2883 +3049 0 2875 +3039 0 2865 +3027 0 2851 +3009 1006 2831 +2985 1476 2801 +2949 1759 2761 +2897 1978 2699 +2815 2165 2601 +2679 2335 2423 +2389 2493 1959 +0 2645 0 +0 2791 0 +0 2931 0 +0 3071 0 +0 3209 0 +0 3345 0 +0 3479 0 +0 3615 0 +0 3747 0 +0 3881 0 +0 4015 0 +3205 0 3033 +3205 0 3033 +3205 0 3033 +3205 0 3031 +3205 0 3031 +3203 0 3031 +3203 0 3029 +3201 0 3027 +3199 0 3025 +3195 0 3021 +3193 0 3017 +3187 0 3011 +3181 0 3003 +3171 0 2993 +3157 0 2979 +3141 1096 2957 +3115 1594 2929 +3079 1883 2887 +3027 2105 2825 +2945 2295 2725 +2807 2465 2543 +2515 2625 2057 +0 2775 0 +0 2921 0 +0 3063 0 +0 3203 0 +0 3341 0 +0 3477 0 +0 3611 0 +0 3747 0 +0 3879 0 +0 4013 0 +3337 0 3163 +3337 0 3163 +3337 0 3161 +3337 0 3161 +3337 0 3161 +3335 0 3161 +3335 0 3159 +3333 0 3157 +3331 0 3155 +3329 0 3153 +3327 0 3151 +3323 0 3147 +3319 0 3141 +3311 0 3133 +3301 0 3121 +3289 0 3107 +3271 1194 3087 +3247 1715 3057 +3211 2010 3015 +3157 2233 2951 +3077 2425 2851 +2937 2595 2665 +2645 2755 2161 +0 2907 0 +0 3053 0 +0 3195 0 +0 3335 0 +0 3473 0 +0 3609 0 +0 3743 0 +0 3879 0 +0 4011 0 +3469 0 3293 +3469 0 3293 +3469 0 3291 +3469 0 3291 +3469 0 3291 +3467 0 3291 +3467 0 3289 +3467 0 3289 +3465 0 3287 +3463 0 3285 +3461 0 3283 +3459 0 3281 +3455 0 3275 +3449 0 3269 +3443 0 3263 +3433 0 3251 +3421 0 3237 +3403 1299 3215 +3377 1839 3187 +3341 2137 3143 +3289 2363 3079 +3207 2555 2977 +3069 2727 2791 +2773 2887 2273 +0 3039 0 +0 3185 0 +0 3327 0 +0 3467 0 +0 3605 0 +0 3741 0 +0 3875 0 +0 4011 0 +3601 0 3423 +3601 0 3423 +3601 0 3423 +3601 0 3423 +3601 0 3421 +3599 0 3421 +3599 0 3421 +3599 0 3421 +3597 0 3419 +3597 0 3417 +3595 0 3417 +3593 0 3413 +3591 0 3411 +3587 0 3407 +3581 0 3401 +3575 0 3393 +3565 0 3381 +3553 0 3367 +3535 1410 3345 +3509 1964 3317 +3473 2267 3273 +3421 2493 3209 +3339 2685 3107 +3199 2857 2917 +2903 3019 2389 +0 3169 0 +0 3317 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4007 0 +3733 0 3553 +3733 0 3553 +3733 0 3553 +3733 0 3553 +3733 0 3553 +3731 0 3553 +3731 0 3553 +3731 0 3551 +3731 0 3551 +3729 0 3551 +3729 0 3549 +3727 0 3547 +3725 0 3545 +3721 0 3541 +3719 0 3537 +3713 0 3531 +3707 0 3523 +3697 0 3513 +3683 0 3497 +3665 1525 3477 +3641 2091 3447 +3605 2395 3403 +3553 2625 3339 +3471 2817 3235 +3331 2989 3045 +3033 3149 2507 +0 3301 0 +0 3449 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3865 0 3685 +3865 0 3685 +3865 0 3685 +3865 0 3685 +3865 0 3685 +3865 0 3685 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3863 0 3683 +3861 0 3681 +3861 0 3679 +3859 0 3679 +3857 0 3675 +3853 0 3673 +3851 0 3669 +3845 0 3663 +3837 0 3655 +3829 0 3643 +3815 0 3629 +3797 1645 3607 +3773 2221 3577 +3737 2527 3535 +3683 2755 3469 +3601 2949 3367 +3463 3121 3175 +3165 3281 2629 +0 3433 0 +0 3581 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3817 +3997 0 3817 +3997 0 3817 +3997 0 3817 +3997 0 3815 +3997 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3815 +3995 0 3813 +3993 0 3813 +3993 0 3811 +3991 0 3809 +3989 0 3807 +3985 0 3803 +3981 0 3799 +3977 0 3793 +3969 0 3785 +3961 0 3775 +3947 0 3759 +3929 1767 3739 +3905 2349 3709 +3869 2657 3665 +3815 2887 3601 +3733 3079 3497 +3593 3253 3305 +3295 3413 2755 +0 3565 0 +0 3713 0 +0 3855 0 +0 3995 0 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3941 +4095 0 3939 +4095 0 3935 +4095 0 3931 +4095 0 3925 +4095 0 3917 +4093 0 3907 +4079 0 3891 +4061 1892 3869 +4037 2479 3841 +4001 2787 3797 +3947 3017 3733 +3865 3211 3627 +3725 3385 3435 +3427 3545 2881 +0 3697 0 +0 3845 0 +0 3987 0 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4067 +4095 0 4063 +4095 0 4057 +4095 0 4049 +4095 0 4037 +4095 0 4023 +4095 2018 4001 +4095 2611 3971 +4095 2919 3929 +4079 3149 3863 +3997 3343 3759 +3857 3517 3567 +3559 3677 3009 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2145 4095 +4095 2741 4095 +4095 3051 4061 +4095 3281 3995 +4095 3475 3891 +3989 3649 3697 +3691 3809 3137 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2275 4095 +4095 2873 4095 +4095 3183 4095 +4095 3413 4095 +4095 3607 4023 +4095 3781 3829 +3823 3941 3267 +1129 728 1524 +1102 753 1516 +1064 785 1504 +1008 824 1488 +919 872 1466 +763 929 1434 +407 995 1388 +0 1071 1319 +0 1156 1205 +0 1249 987 +0 1350 201 +0 1457 0 +0 1570 0 +0 1687 0 +0 1807 0 +0 1930 0 +0 2055 0 +0 2183 0 +0 2311 0 +0 2441 0 +0 2571 0 +0 2701 0 +0 2831 0 +0 2963 0 +0 3095 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1161 724 1533 +1136 750 1525 +1100 782 1514 +1048 821 1498 +968 869 1476 +832 926 1445 +544 993 1401 +0 1069 1333 +0 1154 1223 +0 1248 1016 +0 1349 345 +0 1456 0 +0 1569 0 +0 1686 0 +0 1807 0 +0 1930 0 +0 2055 0 +0 2183 0 +0 2311 0 +0 2441 0 +0 2569 0 +0 2701 0 +0 2831 0 +0 2963 0 +0 3095 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1200 719 1545 +1177 745 1537 +1145 777 1526 +1098 817 1511 +1026 865 1490 +909 923 1460 +681 990 1417 +0 1066 1351 +0 1152 1246 +0 1246 1052 +0 1348 486 +0 1455 0 +0 1568 0 +0 1686 0 +0 1806 0 +0 1930 0 +0 2055 0 +0 2183 0 +0 2311 0 +0 2439 0 +0 2569 0 +0 2701 0 +0 2831 0 +0 2963 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1248 711 1561 +1227 738 1553 +1198 770 1542 +1157 811 1528 +1095 860 1507 +996 918 1478 +816 986 1437 +341 1063 1375 +0 1149 1276 +0 1244 1097 +0 1346 625 +0 1454 0 +0 1567 0 +0 1685 0 +0 1806 0 +0 1929 0 +0 2055 0 +0 2183 0 +0 2311 0 +0 2439 0 +0 2569 0 +0 2701 0 +0 2831 0 +0 2963 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1304 701 1581 +1286 728 1573 +1261 762 1563 +1225 803 1549 +1172 853 1530 +1090 912 1502 +951 981 1463 +651 1058 1405 +0 1146 1312 +0 1241 1150 +0 1343 762 +0 1452 0 +0 1566 0 +0 1684 0 +0 1805 0 +0 1929 0 +0 2055 0 +0 2181 0 +0 2311 0 +0 2439 0 +0 2569 0 +0 2701 0 +0 2831 0 +0 2963 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1371 688 1606 +1355 715 1599 +1334 750 1589 +1303 792 1576 +1259 843 1558 +1192 903 1532 +1084 973 1496 +882 1052 1441 +253 1140 1357 +0 1237 1213 +0 1340 897 +0 1449 0 +0 1564 0 +0 1682 0 +0 1804 0 +0 1928 0 +0 2053 0 +0 2181 0 +0 2309 0 +0 2439 0 +0 2569 0 +0 2701 0 +0 2831 0 +0 2963 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1447 669 1638 +1434 697 1631 +1416 733 1622 +1390 777 1610 +1354 829 1593 +1301 891 1569 +1218 963 1536 +1076 1044 1486 +771 1134 1411 +0 1231 1285 +0 1336 1032 +0 1446 0 +0 1561 0 +0 1680 0 +0 1802 0 +0 1926 0 +0 2053 0 +0 2181 0 +0 2309 0 +0 2439 0 +0 2569 0 +0 2699 0 +0 2831 0 +0 2963 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1532 642 1677 +1521 672 1671 +1506 710 1663 +1485 756 1652 +1456 811 1636 +1414 875 1615 +1351 949 1585 +1249 1032 1541 +1065 1124 1474 +561 1224 1367 +0 1330 1166 +0 1441 551 +0 1557 0 +0 1677 0 +0 1800 0 +0 1925 0 +0 2051 0 +0 2179 0 +0 2309 0 +0 2439 0 +0 2569 0 +0 2699 0 +0 2831 0 +0 2963 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1625 603 1725 +1616 636 1720 +1604 677 1712 +1588 726 1702 +1565 785 1688 +1532 853 1669 +1484 930 1643 +1410 1017 1604 +1289 1111 1547 +1049 1213 1457 +0 1321 1300 +0 1435 934 +0 1552 0 +0 1673 0 +0 1797 0 +0 1923 0 +0 2049 0 +0 2179 0 +0 2307 0 +0 2437 0 +0 2569 0 +0 2699 0 +0 2831 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1726 546 1782 +1719 583 1777 +1709 629 1771 +1696 683 1762 +1678 747 1750 +1653 820 1733 +1616 903 1710 +1563 994 1677 +1479 1093 1629 +1336 1199 1555 +1028 1310 1433 +0 1426 1191 +0 1546 0 +0 1668 0 +0 1793 0 +0 1920 0 +0 2047 0 +0 2177 0 +0 2307 0 +0 2437 0 +0 2567 0 +0 2699 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1833 456 1848 +1827 501 1844 +1820 555 1839 +1810 618 1831 +1796 691 1821 +1776 774 1807 +1749 864 1787 +1709 963 1759 +1650 1068 1719 +1558 1179 1660 +1393 1295 1566 +997 1414 1398 +0 1537 988 +0 1661 0 +0 1788 0 +0 1916 0 +0 2045 0 +0 2175 0 +0 2305 0 +0 2435 0 +0 2567 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1946 299 1925 +1941 362 1921 +1935 433 1916 +1928 514 1910 +1917 604 1901 +1902 702 1889 +1881 807 1873 +1852 917 1850 +1810 1032 1818 +1746 1151 1771 +1645 1273 1698 +1460 1398 1580 +953 1524 1348 +0 1652 351 +0 1781 0 +0 1910 0 +0 2041 0 +0 2171 0 +0 2303 0 +0 2433 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2063 0 2010 +2059 63 2007 +2055 193 2003 +2049 323 1998 +2040 454 1990 +2029 585 1981 +2014 716 1967 +1992 848 1949 +1961 979 1923 +1917 1111 1886 +1850 1243 1831 +1740 1375 1745 +1536 1507 1598 +886 1639 1271 +0 1771 0 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2183 0 2103 +2181 0 2101 +2177 0 2097 +2173 0 2093 +2167 115 2087 +2157 358 2079 +2145 557 2069 +2129 734 2055 +2107 897 2034 +2075 1051 2005 +2029 1199 1964 +1959 1342 1901 +1843 1483 1801 +1621 1621 1621 +778 1758 1141 +0 1893 0 +0 2028 0 +0 2161 0 +0 2295 0 +0 2429 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2307 0 2205 +2305 0 2203 +2301 0 2199 +2299 0 2197 +2293 0 2191 +2287 0 2185 +2279 185 2177 +2267 518 2165 +2249 757 2149 +2227 956 2127 +2193 1132 2095 +2145 1295 2051 +2073 1448 1981 +1952 1596 1867 +1714 1739 1650 +575 1879 876 +0 2018 0 +0 2155 0 +0 2289 0 +0 2425 0 +0 2559 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2431 0 2311 +2429 0 2309 +2427 0 2307 +2425 0 2305 +2421 0 2301 +2417 0 2297 +2411 0 2291 +2401 0 2281 +2389 459 2269 +2373 787 2251 +2349 1024 2229 +2315 1222 2195 +2267 1398 2145 +2191 1560 2069 +2065 1713 1942 +1815 1860 1686 +0 2004 0 +0 2143 0 +0 2281 0 +0 2419 0 +0 2553 0 +0 2689 0 +0 2823 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2559 0 2425 +2557 0 2423 +2555 0 2421 +2553 0 2419 +2551 0 2417 +2547 0 2413 +2543 0 2407 +2535 0 2401 +2527 0 2391 +2515 366 2379 +2497 823 2361 +2473 1102 2335 +2439 1320 2299 +2389 1507 2247 +2313 1676 2165 +2183 1834 2026 +1923 1984 1731 +0 2129 0 +0 2271 0 +0 2411 0 +0 2549 0 +0 2685 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2687 0 2541 +2685 0 2541 +2685 0 2539 +2683 0 2537 +2681 0 2535 +2679 0 2533 +2675 0 2529 +2669 0 2523 +2663 0 2515 +2653 0 2507 +2641 201 2493 +2625 868 2475 +2599 1189 2449 +2565 1424 2411 +2515 1621 2355 +2437 1796 2269 +2305 1957 2119 +2035 2111 1784 +0 2257 0 +0 2401 0 +0 2541 0 +0 2679 0 +0 2815 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4015 0 +2815 0 2661 +2815 0 2661 +2815 0 2659 +2813 0 2659 +2811 0 2657 +2809 0 2655 +2807 0 2651 +2803 0 2647 +2799 0 2643 +2791 0 2635 +2783 0 2625 +2769 0 2611 +2753 921 2591 +2727 1284 2565 +2693 1535 2527 +2641 1739 2469 +2563 1918 2379 +2429 2083 2219 +2153 2237 1847 +0 2387 0 +0 2531 0 +0 2671 0 +0 2809 0 +0 2947 0 +0 3081 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2945 0 2785 +2945 0 2785 +2945 0 2783 +2943 0 2783 +2943 0 2781 +2941 0 2779 +2939 0 2777 +2937 0 2775 +2933 0 2771 +2927 0 2765 +2921 0 2757 +2911 0 2747 +2899 0 2733 +2881 984 2713 +2857 1386 2685 +2821 1650 2645 +2769 1860 2587 +2689 2043 2493 +2555 2209 2325 +2273 2367 1919 +0 2515 0 +0 2661 0 +0 2801 0 +0 2941 0 +0 3077 0 +0 3213 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +3077 0 2911 +3075 0 2909 +3075 0 2909 +3075 0 2909 +3073 0 2907 +3073 0 2907 +3071 0 2905 +3069 0 2903 +3067 0 2899 +3063 0 2895 +3057 0 2889 +3051 0 2881 +3041 0 2871 +3029 0 2857 +3011 1056 2837 +2987 1495 2809 +2951 1769 2767 +2899 1984 2707 +2819 2169 2611 +2683 2339 2439 +2395 2495 2001 +0 2645 0 +0 2791 0 +0 2933 0 +0 3071 0 +0 3209 0 +0 3345 0 +0 3481 0 +0 3615 0 +0 3747 0 +0 3881 0 +0 4015 0 +3207 0 3037 +3207 0 3037 +3207 0 3037 +3207 0 3035 +3205 0 3035 +3205 0 3035 +3203 0 3033 +3201 0 3031 +3199 0 3029 +3197 0 3025 +3193 0 3021 +3189 0 3015 +3181 0 3007 +3171 0 2997 +3159 0 2983 +3141 1138 2963 +3117 1608 2933 +3081 1891 2893 +3029 2111 2831 +2947 2297 2733 +2811 2467 2555 +2521 2625 2091 +0 2777 0 +0 2923 0 +0 3065 0 +0 3203 0 +0 3341 0 +0 3477 0 +0 3611 0 +0 3747 0 +0 3879 0 +0 4013 0 +3339 0 3165 +3339 0 3165 +3337 0 3165 +3337 0 3165 +3337 0 3163 +3337 0 3163 +3335 0 3163 +3335 0 3161 +3333 0 3159 +3331 0 3157 +3327 0 3153 +3325 0 3149 +3319 0 3143 +3313 0 3135 +3303 0 3125 +3289 0 3111 +3273 1228 3089 +3247 1726 3061 +3211 2015 3019 +3159 2237 2957 +3077 2427 2857 +2941 2597 2675 +2649 2757 2189 +0 2907 0 +0 3053 0 +0 3195 0 +0 3335 0 +0 3473 0 +0 3609 0 +0 3743 0 +0 3879 0 +0 4013 0 +3469 0 3295 +3469 0 3295 +3469 0 3295 +3469 0 3293 +3469 0 3293 +3469 0 3293 +3467 0 3293 +3467 0 3291 +3465 0 3289 +3465 0 3289 +3461 0 3285 +3459 0 3283 +3455 0 3279 +3451 0 3273 +3443 0 3265 +3435 0 3253 +3421 0 3239 +3403 1326 3219 +3379 1847 3189 +3343 2141 3147 +3291 2365 3083 +3209 2557 2983 +3071 2727 2797 +2777 2887 2295 +0 3039 0 +0 3185 0 +0 3327 0 +0 3467 0 +0 3605 0 +0 3741 0 +0 3875 0 +0 4011 0 +3601 0 3425 +3601 0 3425 +3601 0 3425 +3601 0 3423 +3601 0 3423 +3601 0 3423 +3599 0 3423 +3599 0 3421 +3599 0 3421 +3597 0 3419 +3595 0 3417 +3593 0 3415 +3591 0 3413 +3587 0 3407 +3581 0 3403 +3575 0 3395 +3565 0 3383 +3553 0 3369 +3535 1431 3347 +3509 1971 3319 +3473 2269 3275 +3421 2495 3213 +3339 2687 3109 +3201 2859 2923 +2905 3019 2405 +0 3171 0 +0 3317 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4007 0 +3733 0 3555 +3733 0 3555 +3733 0 3555 +3733 0 3555 +3733 0 3555 +3733 0 3555 +3731 0 3553 +3731 0 3553 +3731 0 3553 +3729 0 3551 +3729 0 3551 +3727 0 3549 +3725 0 3545 +3723 0 3543 +3719 0 3539 +3713 0 3533 +3707 0 3525 +3697 0 3513 +3685 0 3499 +3667 1542 3477 +3641 2097 3449 +3605 2399 3405 +3553 2625 3341 +3471 2817 3239 +3331 2991 3049 +3035 3151 2521 +0 3303 0 +0 3449 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3865 0 3685 +3865 0 3685 +3865 0 3685 +3865 0 3685 +3865 0 3685 +3865 0 3685 +3865 0 3685 +3863 0 3685 +3863 0 3683 +3863 0 3683 +3861 0 3683 +3861 0 3681 +3859 0 3679 +3857 0 3677 +3855 0 3673 +3851 0 3669 +3845 0 3663 +3839 0 3655 +3829 0 3645 +3815 0 3629 +3797 1658 3609 +3773 2223 3579 +3737 2527 3535 +3685 2757 3471 +3603 2949 3369 +3463 3121 3177 +3165 3281 2639 +0 3433 0 +0 3581 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3817 +3997 0 3817 +3997 0 3817 +3997 0 3817 +3997 0 3817 +3997 0 3817 +3997 0 3817 +3995 0 3817 +3995 0 3815 +3995 0 3815 +3995 0 3815 +3993 0 3813 +3993 0 3811 +3991 0 3811 +3989 0 3807 +3985 0 3805 +3983 0 3801 +3977 0 3795 +3971 0 3787 +3961 0 3775 +3947 0 3761 +3929 1777 3739 +3905 2353 3709 +3869 2659 3667 +3815 2887 3603 +3733 3081 3499 +3595 3253 3307 +3297 3413 2761 +0 3565 0 +0 3713 0 +0 3855 0 +0 3995 0 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3941 +4095 0 3939 +4095 0 3935 +4095 0 3931 +4095 0 3925 +4095 0 3917 +4093 0 3907 +4079 0 3891 +4061 1899 3871 +4037 2481 3841 +4001 2789 3797 +3947 3019 3733 +3865 3211 3629 +3727 3385 3437 +3429 3545 2887 +0 3697 0 +0 3845 0 +0 3987 0 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4067 +4095 0 4063 +4095 0 4057 +4095 0 4049 +4095 0 4039 +4095 0 4023 +4095 2024 4001 +4095 2611 3973 +4095 2919 3929 +4079 3149 3865 +3997 3343 3759 +3857 3517 3567 +3559 3677 3013 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2151 4095 +4095 2743 4095 +4095 3051 4061 +4095 3281 3995 +4095 3475 3891 +3989 3649 3699 +3691 3809 3141 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2277 4095 +4095 2873 4095 +4095 3183 4095 +4095 3413 4095 +4095 3607 4023 +4095 3781 3829 +3823 3941 3269 +1256 844 1656 +1236 863 1649 +1208 888 1641 +1167 920 1629 +1106 959 1613 +1010 1006 1590 +837 1063 1558 +399 1129 1511 +0 1204 1440 +0 1289 1323 +0 1382 1096 +0 1483 185 +0 1590 0 +0 1702 0 +0 1819 0 +0 1940 0 +0 2063 0 +0 2189 0 +0 2315 0 +0 2443 0 +0 2573 0 +0 2703 0 +0 2833 0 +0 2963 0 +0 3095 0 +0 3227 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1280 840 1662 +1261 860 1656 +1234 886 1648 +1196 917 1636 +1139 957 1620 +1050 1004 1598 +896 1061 1566 +539 1127 1520 +0 1203 1451 +0 1288 1337 +0 1381 1119 +0 1482 333 +0 1589 0 +0 1702 0 +0 1819 0 +0 1939 0 +0 2063 0 +0 2187 0 +0 2315 0 +0 2443 0 +0 2573 0 +0 2703 0 +0 2833 0 +0 2963 0 +0 3095 0 +0 3227 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1310 836 1671 +1293 856 1665 +1268 882 1657 +1233 914 1646 +1180 953 1630 +1100 1001 1608 +964 1058 1578 +676 1125 1533 +0 1201 1465 +0 1286 1355 +0 1380 1148 +0 1481 478 +0 1589 0 +0 1701 0 +0 1818 0 +0 1939 0 +0 2063 0 +0 2187 0 +0 2315 0 +0 2443 0 +0 2573 0 +0 2703 0 +0 2833 0 +0 2963 0 +0 3095 0 +0 3227 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1348 831 1683 +1332 851 1677 +1309 877 1669 +1277 909 1658 +1230 949 1643 +1159 997 1622 +1041 1055 1592 +813 1122 1549 +0 1199 1483 +0 1284 1378 +0 1378 1184 +0 1480 618 +0 1588 0 +0 1701 0 +0 1818 0 +0 1938 0 +0 2061 0 +0 2187 0 +0 2315 0 +0 2443 0 +0 2573 0 +0 2703 0 +0 2833 0 +0 2963 0 +0 3095 0 +0 3227 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1394 823 1698 +1380 844 1693 +1359 870 1685 +1331 903 1674 +1289 943 1660 +1227 992 1639 +1128 1050 1611 +948 1118 1569 +474 1195 1507 +0 1282 1408 +0 1376 1229 +0 1478 757 +0 1586 0 +0 1699 0 +0 1817 0 +0 1938 0 +0 2061 0 +0 2187 0 +0 2315 0 +0 2443 0 +0 2571 0 +0 2701 0 +0 2833 0 +0 2963 0 +0 3095 0 +0 3227 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1449 812 1718 +1437 834 1713 +1419 860 1705 +1393 894 1695 +1358 935 1681 +1305 985 1662 +1222 1044 1634 +1082 1112 1595 +784 1191 1537 +0 1278 1445 +0 1373 1282 +0 1476 894 +0 1584 0 +0 1698 0 +0 1816 0 +0 1937 0 +0 2061 0 +0 2187 0 +0 2313 0 +0 2443 0 +0 2571 0 +0 2701 0 +0 2833 0 +0 2963 0 +0 3095 0 +0 3227 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1514 798 1743 +1503 820 1738 +1487 847 1731 +1466 882 1721 +1435 924 1708 +1391 975 1690 +1324 1035 1664 +1216 1105 1628 +1014 1184 1574 +385 1273 1489 +0 1369 1345 +0 1472 1029 +0 1582 0 +0 1696 0 +0 1814 0 +0 1936 0 +0 2059 0 +0 2185 0 +0 2313 0 +0 2441 0 +0 2571 0 +0 2701 0 +0 2833 0 +0 2963 0 +0 3095 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1588 778 1775 +1579 801 1770 +1566 829 1763 +1548 865 1754 +1522 909 1742 +1486 962 1725 +1433 1023 1702 +1350 1095 1668 +1208 1176 1619 +903 1266 1543 +0 1363 1417 +0 1468 1164 +0 1578 0 +0 1693 0 +0 1812 0 +0 1934 0 +0 2059 0 +0 2185 0 +0 2313 0 +0 2441 0 +0 2571 0 +0 2701 0 +0 2831 0 +0 2963 0 +0 3095 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1672 750 1814 +1664 774 1809 +1653 804 1803 +1638 842 1795 +1617 888 1784 +1588 943 1768 +1546 1007 1747 +1483 1081 1717 +1382 1164 1673 +1197 1256 1606 +693 1356 1499 +0 1462 1298 +0 1573 683 +0 1689 0 +0 1809 0 +0 1932 0 +0 2057 0 +0 2183 0 +0 2311 0 +0 2441 0 +0 2571 0 +0 2701 0 +0 2831 0 +0 2963 0 +0 3095 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1764 709 1861 +1757 735 1857 +1748 768 1852 +1736 809 1844 +1720 858 1834 +1697 917 1821 +1664 985 1801 +1616 1062 1775 +1542 1149 1736 +1421 1243 1679 +1181 1345 1589 +0 1454 1432 +0 1567 1066 +0 1685 0 +0 1805 0 +0 1929 0 +0 2055 0 +0 2181 0 +0 2311 0 +0 2439 0 +0 2569 0 +0 2701 0 +0 2831 0 +0 2963 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1863 648 1918 +1858 678 1914 +1851 715 1909 +1841 761 1903 +1828 815 1894 +1810 879 1882 +1785 953 1865 +1748 1035 1842 +1695 1126 1809 +1611 1225 1761 +1469 1331 1687 +1160 1442 1565 +0 1558 1323 +0 1678 55 +0 1800 0 +0 1925 0 +0 2051 0 +0 2179 0 +0 2309 0 +0 2439 0 +0 2569 0 +0 2699 0 +0 2831 0 +0 2963 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1969 552 1984 +1965 588 1981 +1960 633 1976 +1952 687 1971 +1942 751 1963 +1928 824 1953 +1908 906 1939 +1881 997 1919 +1841 1095 1891 +1783 1200 1852 +1690 1311 1792 +1526 1427 1698 +1129 1546 1531 +0 1669 1120 +0 1793 0 +0 1920 0 +0 2047 0 +0 2177 0 +0 2307 0 +0 2437 0 +0 2567 0 +0 2699 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2081 379 2059 +2077 431 2057 +2073 494 2053 +2067 565 2049 +2059 647 2042 +2049 737 2033 +2034 834 2022 +2013 939 2005 +1984 1049 1982 +1942 1164 1950 +1879 1283 1903 +1777 1405 1831 +1592 1530 1712 +1085 1656 1480 +0 1784 483 +0 1913 0 +0 2042 0 +0 2173 0 +0 2303 0 +0 2435 0 +0 2565 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2197 0 2143 +2195 67 2141 +2191 195 2139 +2187 325 2135 +2181 455 2129 +2173 586 2123 +2161 717 2113 +2145 848 2099 +2125 980 2081 +2093 1111 2055 +2049 1243 2018 +1982 1375 1963 +1873 1507 1878 +1668 1639 1730 +1018 1771 1403 +0 1903 0 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2317 0 2237 +2315 0 2235 +2313 0 2233 +2309 0 2229 +2305 0 2225 +2299 247 2219 +2289 490 2211 +2279 689 2201 +2261 866 2187 +2239 1029 2167 +2207 1183 2137 +2161 1331 2095 +2091 1474 2033 +1975 1615 1934 +1753 1753 1753 +910 1890 1273 +0 2025 0 +0 2159 0 +0 2293 0 +0 2427 0 +0 2561 0 +0 2693 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2439 0 2337 +2439 0 2337 +2437 0 2335 +2433 0 2331 +2431 0 2329 +2425 0 2323 +2419 0 2317 +2411 317 2309 +2399 650 2297 +2381 890 2281 +2359 1088 2259 +2325 1264 2229 +2279 1427 2183 +2205 1580 2113 +2085 1728 1999 +1846 1871 1782 +707 2011 1008 +0 2149 0 +0 2287 0 +0 2421 0 +0 2557 0 +0 2691 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2565 0 2445 +2563 0 2443 +2563 0 2443 +2561 0 2441 +2557 0 2437 +2553 0 2433 +2549 0 2429 +2543 0 2423 +2533 0 2413 +2521 591 2401 +2505 919 2385 +2481 1156 2361 +2447 1354 2327 +2399 1530 2277 +2323 1692 2201 +2199 1845 2075 +1947 1993 1818 +74 2135 0 +0 2275 0 +0 2415 0 +0 2551 0 +0 2687 0 +0 2821 0 +0 2955 0 +0 3087 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2691 0 2557 +2691 0 2557 +2689 0 2555 +2687 0 2553 +2685 0 2551 +2683 0 2549 +2679 0 2545 +2675 0 2539 +2669 0 2533 +2659 0 2523 +2647 498 2511 +2629 955 2493 +2605 1234 2467 +2571 1452 2431 +2521 1639 2379 +2445 1808 2297 +2315 1966 2159 +2055 2117 1863 +0 2261 0 +0 2403 0 +0 2543 0 +0 2681 0 +0 2817 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2819 0 2673 +2819 0 2673 +2817 0 2673 +2817 0 2671 +2815 0 2669 +2813 0 2667 +2811 0 2665 +2807 0 2661 +2801 0 2655 +2795 0 2649 +2787 0 2639 +2773 333 2625 +2757 1000 2607 +2731 1321 2581 +2697 1556 2543 +2647 1753 2487 +2569 1928 2401 +2437 2089 2251 +2167 2243 1916 +0 2389 0 +0 2533 0 +0 2673 0 +0 2811 0 +0 2947 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2949 0 2795 +2947 0 2793 +2947 0 2793 +2947 0 2793 +2945 0 2791 +2943 0 2789 +2941 0 2787 +2939 0 2783 +2935 0 2779 +2931 0 2775 +2923 0 2767 +2915 0 2757 +2901 0 2743 +2885 1053 2725 +2859 1416 2697 +2825 1667 2659 +2773 1871 2601 +2695 2051 2511 +2561 2215 2351 +2285 2369 1979 +0 2519 0 +0 2663 0 +0 2803 0 +0 2941 0 +0 3079 0 +0 3213 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +3079 0 2917 +3077 0 2917 +3077 0 2917 +3077 0 2915 +3075 0 2915 +3075 0 2913 +3073 0 2911 +3071 0 2909 +3069 0 2907 +3065 0 2903 +3059 0 2897 +3053 0 2889 +3043 0 2879 +3031 0 2865 +3013 1116 2845 +2989 1518 2817 +2953 1782 2777 +2901 1992 2719 +2821 2175 2625 +2687 2341 2459 +2405 2499 2051 +0 2647 0 +0 2793 0 +0 2933 0 +0 3073 0 +0 3209 0 +0 3345 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3209 0 3043 +3209 0 3043 +3209 0 3041 +3207 0 3041 +3207 0 3041 +3207 0 3039 +3205 0 3039 +3203 0 3037 +3201 0 3035 +3199 0 3031 +3195 0 3027 +3189 0 3021 +3183 0 3013 +3173 0 3003 +3161 0 2989 +3143 1188 2969 +3119 1627 2941 +3083 1901 2901 +3031 2117 2839 +2951 2301 2743 +2815 2471 2571 +2527 2627 2133 +0 2777 0 +0 2923 0 +0 3065 0 +0 3203 0 +0 3341 0 +0 3477 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4013 0 +3339 0 3169 +3339 0 3169 +3339 0 3169 +3339 0 3169 +3339 0 3169 +3337 0 3167 +3337 0 3167 +3335 0 3165 +3333 0 3163 +3331 0 3161 +3329 0 3157 +3325 0 3153 +3321 0 3147 +3313 0 3141 +3305 0 3129 +3291 0 3115 +3273 1270 3095 +3249 1740 3067 +3213 2023 3025 +3161 2243 2963 +3079 2429 2865 +2943 2599 2687 +2653 2757 2223 +0 2909 0 +0 3055 0 +0 3197 0 +0 3335 0 +0 3473 0 +0 3609 0 +0 3745 0 +0 3879 0 +0 4013 0 +3471 0 3297 +3471 0 3297 +3471 0 3297 +3469 0 3297 +3469 0 3297 +3469 0 3297 +3469 0 3295 +3467 0 3295 +3467 0 3293 +3465 0 3291 +3463 0 3289 +3461 0 3285 +3457 0 3281 +3451 0 3275 +3445 0 3267 +3435 0 3257 +3423 0 3243 +3405 1360 3221 +3379 1858 3193 +3343 2147 3151 +3291 2369 3089 +3211 2559 2989 +3073 2729 2807 +2781 2889 2321 +0 3039 0 +0 3185 0 +0 3327 0 +0 3467 0 +0 3605 0 +0 3741 0 +0 3877 0 +0 4011 0 +3601 0 3427 +3601 0 3427 +3601 0 3427 +3601 0 3427 +3601 0 3427 +3601 0 3425 +3601 0 3425 +3599 0 3425 +3599 0 3423 +3597 0 3423 +3597 0 3421 +3595 0 3417 +3591 0 3415 +3587 0 3411 +3583 0 3405 +3575 0 3397 +3567 0 3385 +3553 0 3371 +3535 1458 3351 +3511 1979 3321 +3475 2273 3279 +3423 2499 3215 +3341 2689 3115 +3203 2861 2929 +2909 3019 2427 +0 3171 0 +0 3317 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4009 0 +3733 0 3557 +3733 0 3557 +3733 0 3557 +3733 0 3557 +3733 0 3557 +3733 0 3555 +3733 0 3555 +3731 0 3555 +3731 0 3555 +3731 0 3553 +3729 0 3551 +3727 0 3551 +3725 0 3547 +3723 0 3545 +3719 0 3541 +3713 0 3535 +3707 0 3527 +3697 0 3515 +3685 0 3501 +3667 1564 3479 +3641 2103 3451 +3607 2401 3409 +3553 2627 3345 +3471 2819 3243 +3333 2991 3055 +3037 3151 2537 +0 3303 0 +0 3449 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3865 0 3687 +3865 0 3687 +3865 0 3687 +3865 0 3687 +3865 0 3687 +3865 0 3687 +3865 0 3687 +3865 0 3685 +3863 0 3685 +3863 0 3685 +3863 0 3683 +3861 0 3683 +3859 0 3681 +3857 0 3677 +3855 0 3675 +3851 0 3671 +3845 0 3665 +3839 0 3657 +3829 0 3645 +3817 0 3631 +3799 1674 3609 +3773 2229 3581 +3737 2531 3537 +3685 2757 3473 +3603 2949 3371 +3463 3123 3181 +3167 3283 2653 +0 3435 0 +0 3581 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3819 +3997 0 3819 +3997 0 3817 +3997 0 3817 +3997 0 3817 +3997 0 3817 +3997 0 3817 +3997 0 3817 +3995 0 3817 +3995 0 3817 +3995 0 3815 +3993 0 3815 +3993 0 3813 +3991 0 3811 +3989 0 3809 +3987 0 3805 +3983 0 3801 +3977 0 3795 +3971 0 3787 +3961 0 3777 +3949 0 3761 +3931 1790 3741 +3905 2355 3711 +3869 2661 3669 +3817 2889 3603 +3735 3081 3501 +3595 3253 3311 +3299 3413 2771 +0 3567 0 +0 3713 0 +0 3855 0 +0 3995 0 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3945 +4095 0 3943 +4095 0 3939 +4095 0 3937 +4095 0 3933 +4095 0 3927 +4095 0 3919 +4093 0 3907 +4079 0 3893 +4061 1909 3871 +4037 2485 3841 +4001 2791 3799 +3949 3019 3735 +3867 3213 3631 +3727 3385 3439 +3429 3545 2893 +0 3697 0 +0 3845 0 +0 3987 0 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4073 +4095 0 4071 +4095 0 4069 +4095 0 4063 +4095 0 4057 +4095 0 4049 +4095 0 4039 +4095 0 4023 +4095 2031 4003 +4095 2613 3973 +4095 2921 3929 +4079 3151 3865 +3997 3343 3761 +3859 3517 3569 +3561 3677 3019 +0 3829 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2155 4095 +4095 2743 4095 +4095 3053 4061 +4095 3283 3997 +4095 3475 3893 +3989 3649 3699 +3691 3809 3145 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2283 4095 +4095 2875 4095 +4095 3183 4095 +4095 3413 4095 +4095 3607 4023 +4095 3781 3831 +3823 3941 3273 +1384 963 1787 +1369 978 1782 +1348 998 1776 +1319 1023 1767 +1276 1054 1755 +1212 1093 1739 +1109 1140 1716 +920 1196 1684 +388 1262 1636 +0 1338 1564 +0 1422 1444 +0 1515 1210 +0 1616 161 +0 1723 0 +0 1835 0 +0 1952 0 +0 2071 0 +0 2195 0 +0 2321 0 +0 2447 0 +0 2575 0 +0 2705 0 +0 2835 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3359 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1402 960 1792 +1388 976 1788 +1368 995 1781 +1340 1020 1773 +1299 1052 1761 +1238 1091 1745 +1142 1138 1722 +969 1195 1690 +531 1261 1643 +0 1337 1572 +0 1421 1455 +0 1514 1228 +0 1615 317 +0 1722 0 +0 1835 0 +0 1951 0 +0 2071 0 +0 2195 0 +0 2321 0 +0 2447 0 +0 2575 0 +0 2705 0 +0 2835 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3359 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1426 957 1799 +1412 973 1795 +1393 992 1788 +1367 1018 1780 +1328 1049 1768 +1272 1088 1752 +1183 1136 1730 +1027 1193 1699 +671 1259 1653 +0 1335 1583 +0 1420 1469 +0 1513 1251 +0 1614 465 +0 1722 0 +0 1834 0 +0 1951 0 +0 2071 0 +0 2195 0 +0 2319 0 +0 2447 0 +0 2575 0 +0 2705 0 +0 2835 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3359 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1455 953 1808 +1443 968 1804 +1425 988 1797 +1400 1014 1789 +1365 1046 1778 +1313 1085 1762 +1232 1133 1740 +1096 1190 1710 +809 1257 1665 +0 1333 1597 +0 1419 1487 +0 1512 1280 +0 1613 610 +0 1721 0 +0 1834 0 +0 1951 0 +0 2071 0 +0 2195 0 +0 2319 0 +0 2447 0 +0 2575 0 +0 2705 0 +0 2835 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3359 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1492 947 1820 +1480 963 1815 +1464 983 1809 +1441 1009 1801 +1409 1041 1790 +1362 1081 1775 +1291 1129 1754 +1173 1187 1724 +945 1254 1681 +8 1331 1616 +0 1416 1511 +0 1511 1317 +0 1612 750 +0 1720 0 +0 1833 0 +0 1950 0 +0 2071 0 +0 2195 0 +0 2319 0 +0 2447 0 +0 2575 0 +0 2705 0 +0 2835 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3359 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1537 939 1835 +1526 955 1831 +1512 976 1825 +1491 1002 1817 +1463 1034 1806 +1421 1075 1792 +1359 1124 1771 +1260 1182 1743 +1080 1250 1701 +606 1327 1639 +0 1414 1540 +0 1508 1361 +0 1610 889 +0 1718 0 +0 1832 0 +0 1949 0 +0 2069 0 +0 2193 0 +0 2319 0 +0 2447 0 +0 2575 0 +0 2705 0 +0 2835 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3359 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1591 928 1854 +1582 945 1850 +1569 966 1845 +1551 992 1837 +1526 1026 1827 +1490 1067 1813 +1437 1117 1794 +1354 1176 1767 +1215 1245 1727 +916 1323 1669 +0 1410 1577 +0 1505 1414 +0 1608 1026 +0 1716 0 +0 1830 0 +0 1948 0 +0 2069 0 +0 2193 0 +0 2319 0 +0 2445 0 +0 2575 0 +0 2703 0 +0 2833 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3359 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1654 913 1879 +1646 930 1875 +1635 952 1870 +1620 979 1863 +1598 1014 1854 +1568 1056 1840 +1523 1107 1822 +1457 1167 1796 +1348 1237 1760 +1146 1317 1706 +517 1405 1621 +0 1501 1477 +0 1604 1161 +0 1714 0 +0 1828 0 +0 1946 0 +0 2067 0 +0 2191 0 +0 2317 0 +0 2445 0 +0 2575 0 +0 2703 0 +0 2833 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3359 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1727 892 1910 +1720 910 1907 +1711 933 1902 +1698 962 1895 +1680 997 1886 +1654 1041 1874 +1618 1093 1857 +1565 1156 1834 +1482 1227 1800 +1340 1308 1751 +1035 1398 1675 +0 1495 1549 +0 1600 1296 +0 1710 0 +0 1825 0 +0 1944 0 +0 2067 0 +0 2191 0 +0 2317 0 +0 2445 0 +0 2573 0 +0 2703 0 +0 2833 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1810 863 1949 +1804 882 1946 +1796 906 1941 +1785 936 1935 +1770 974 1927 +1750 1020 1916 +1720 1075 1901 +1678 1139 1879 +1615 1213 1849 +1514 1297 1805 +1329 1388 1738 +825 1488 1631 +0 1594 1430 +0 1705 815 +0 1822 0 +0 1941 0 +0 2065 0 +0 2189 0 +0 2315 0 +0 2443 0 +0 2573 0 +0 2703 0 +0 2833 0 +0 2963 0 +0 3095 0 +0 3227 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1900 820 1996 +1896 841 1993 +1889 868 1989 +1880 900 1984 +1868 941 1976 +1852 990 1966 +1829 1049 1953 +1796 1117 1934 +1748 1194 1907 +1674 1281 1868 +1553 1375 1811 +1314 1477 1721 +121 1586 1564 +0 1699 1198 +0 1817 0 +0 1938 0 +0 2061 0 +0 2187 0 +0 2315 0 +0 2443 0 +0 2571 0 +0 2701 0 +0 2833 0 +0 2963 0 +0 3095 0 +0 3227 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1999 757 2053 +1995 780 2049 +1990 810 2046 +1983 848 2041 +1973 893 2035 +1960 947 2026 +1942 1011 2014 +1917 1084 1998 +1881 1167 1974 +1827 1258 1941 +1743 1357 1893 +1601 1463 1819 +1292 1574 1697 +0 1690 1455 +0 1810 187 +0 1932 0 +0 2057 0 +0 2183 0 +0 2311 0 +0 2441 0 +0 2571 0 +0 2701 0 +0 2831 0 +0 2963 0 +0 3095 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2105 654 2119 +2101 684 2115 +2097 721 2113 +2091 765 2109 +2085 819 2103 +2075 883 2095 +2059 956 2085 +2040 1038 2071 +2013 1128 2051 +1974 1227 2024 +1915 1332 1984 +1822 1443 1924 +1658 1559 1830 +1261 1678 1663 +0 1801 1252 +0 1926 0 +0 2053 0 +0 2179 0 +0 2309 0 +0 2439 0 +0 2569 0 +0 2699 0 +0 2831 0 +0 2963 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2215 467 2193 +2213 511 2191 +2209 563 2189 +2205 626 2185 +2199 698 2181 +2191 779 2175 +2181 869 2165 +2167 966 2153 +2145 1071 2137 +2117 1181 2115 +2075 1296 2083 +2011 1415 2035 +1909 1538 1963 +1724 1662 1844 +1217 1788 1612 +0 1916 615 +0 2045 0 +0 2175 0 +0 2305 0 +0 2435 0 +0 2567 0 +0 2697 0 +0 2829 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2331 0 2277 +2329 71 2277 +2327 199 2273 +2323 327 2271 +2319 457 2267 +2313 587 2261 +2305 718 2255 +2293 849 2245 +2277 980 2231 +2257 1112 2213 +2225 1243 2187 +2181 1375 2151 +2113 1507 2095 +2005 1639 2010 +1800 1771 1862 +1150 1903 1535 +0 2035 0 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2451 0 2371 +2449 0 2369 +2447 0 2367 +2445 0 2365 +2441 0 2361 +2437 40 2357 +2431 379 2351 +2421 622 2345 +2411 822 2333 +2395 999 2319 +2371 1161 2299 +2339 1315 2269 +2293 1463 2227 +2223 1606 2165 +2107 1747 2065 +1885 1885 1885 +1042 2022 1405 +0 2157 0 +0 2291 0 +0 2425 0 +0 2559 0 +0 2693 0 +0 2825 0 +0 2959 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2573 0 2471 +2571 0 2469 +2571 0 2469 +2569 0 2467 +2565 0 2463 +2563 0 2461 +2557 0 2455 +2551 0 2449 +2543 449 2441 +2531 782 2429 +2513 1022 2413 +2491 1220 2391 +2459 1396 2361 +2411 1559 2315 +2337 1712 2245 +2217 1860 2131 +1979 2003 1914 +839 2143 1140 +0 2281 0 +0 2419 0 +0 2553 0 +0 2689 0 +0 2823 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2697 0 2577 +2697 0 2577 +2695 0 2575 +2695 0 2575 +2693 0 2573 +2689 0 2569 +2687 0 2565 +2681 0 2561 +2675 0 2555 +2665 12 2545 +2653 723 2533 +2637 1051 2517 +2613 1289 2493 +2579 1486 2459 +2531 1662 2409 +2455 1824 2333 +2331 1977 2207 +2079 2125 1951 +206 2267 0 +0 2409 0 +0 2547 0 +0 2683 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2825 0 2689 +2823 0 2689 +2823 0 2689 +2821 0 2687 +2821 0 2685 +2819 0 2683 +2815 0 2681 +2811 0 2677 +2807 0 2671 +2801 0 2665 +2791 0 2655 +2779 630 2643 +2761 1087 2625 +2737 1366 2599 +2703 1584 2563 +2653 1771 2511 +2577 1940 2429 +2449 2099 2291 +2187 2249 1995 +0 2395 0 +0 2535 0 +0 2675 0 +0 2813 0 +0 2949 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +2953 0 2807 +2951 0 2807 +2951 0 2805 +2951 0 2805 +2949 0 2803 +2947 0 2801 +2945 0 2799 +2943 0 2797 +2939 0 2793 +2935 0 2787 +2927 0 2781 +2919 0 2771 +2905 465 2757 +2889 1132 2739 +2865 1453 2713 +2829 1689 2675 +2779 1885 2619 +2701 2059 2533 +2569 2221 2383 +2299 2375 2049 +0 2521 0 +0 2665 0 +0 2805 0 +0 2943 0 +0 3079 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +3081 0 2927 +3081 0 2927 +3081 0 2925 +3079 0 2925 +3079 0 2925 +3077 0 2923 +3075 0 2921 +3073 0 2919 +3071 0 2917 +3067 0 2913 +3063 0 2907 +3055 0 2899 +3047 0 2889 +3033 66 2875 +3017 1185 2857 +2991 1548 2829 +2957 1799 2791 +2905 2003 2733 +2827 2183 2643 +2693 2347 2483 +2417 2501 2111 +0 2651 0 +0 2795 0 +0 2935 0 +0 3073 0 +0 3211 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3211 0 3049 +3211 0 3049 +3211 0 3049 +3209 0 3049 +3209 0 3047 +3209 0 3047 +3207 0 3045 +3205 0 3043 +3203 0 3041 +3201 0 3039 +3197 0 3035 +3191 0 3029 +3185 0 3021 +3175 0 3011 +3163 0 2997 +3145 1248 2977 +3121 1651 2949 +3085 1914 2909 +3033 2125 2851 +2955 2307 2757 +2819 2475 2591 +2537 2631 2183 +0 2779 0 +0 2925 0 +0 3065 0 +0 3205 0 +0 3341 0 +0 3477 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4013 0 +3341 0 3175 +3341 0 3175 +3341 0 3175 +3341 0 3173 +3339 0 3173 +3339 0 3173 +3339 0 3171 +3337 0 3171 +3335 0 3169 +3333 0 3167 +3331 0 3163 +3327 0 3159 +3321 0 3153 +3315 0 3145 +3305 0 3135 +3293 0 3121 +3275 1320 3101 +3251 1759 3073 +3215 2033 3033 +3163 2249 2971 +3083 2435 2875 +2947 2603 2703 +2661 2759 2265 +0 2911 0 +0 3055 0 +0 3197 0 +0 3337 0 +0 3473 0 +0 3609 0 +0 3745 0 +0 3879 0 +0 4013 0 +3471 0 3301 +3471 0 3301 +3471 0 3301 +3471 0 3301 +3471 0 3301 +3471 0 3301 +3469 0 3299 +3469 0 3299 +3467 0 3297 +3467 0 3295 +3463 0 3293 +3461 0 3289 +3457 0 3285 +3453 0 3279 +3445 0 3273 +3437 0 3261 +3423 0 3247 +3405 1402 3227 +3381 1873 3199 +3345 2155 3157 +3293 2375 3095 +3213 2563 2997 +3075 2731 2819 +2785 2891 2355 +0 3041 0 +0 3187 0 +0 3329 0 +0 3467 0 +0 3605 0 +0 3741 0 +0 3877 0 +0 4011 0 +3603 0 3429 +3603 0 3429 +3603 0 3429 +3603 0 3429 +3603 0 3429 +3601 0 3429 +3601 0 3429 +3601 0 3427 +3599 0 3427 +3599 0 3425 +3597 0 3423 +3595 0 3421 +3593 0 3417 +3589 0 3413 +3583 0 3407 +3577 0 3399 +3567 0 3389 +3555 0 3375 +3537 1492 3355 +3511 1990 3325 +3475 2279 3283 +3423 2501 3221 +3343 2691 3121 +3205 2861 2939 +2913 3021 2453 +0 3171 0 +0 3317 0 +0 3459 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4009 0 +3735 0 3559 +3735 0 3559 +3735 0 3559 +3733 0 3559 +3733 0 3559 +3733 0 3559 +3733 0 3557 +3733 0 3557 +3731 0 3557 +3731 0 3555 +3729 0 3555 +3729 0 3553 +3727 0 3551 +3723 0 3547 +3719 0 3543 +3715 0 3537 +3707 0 3529 +3699 0 3517 +3685 0 3503 +3667 1591 3483 +3643 2111 3453 +3607 2405 3411 +3555 2631 3347 +3473 2821 3247 +3335 2993 3063 +3041 3151 2559 +0 3303 0 +0 3449 0 +0 3591 0 +0 3731 0 +0 3869 0 +0 4005 0 +3865 0 3689 +3865 0 3689 +3865 0 3689 +3865 0 3689 +3865 0 3689 +3865 0 3689 +3865 0 3687 +3865 0 3687 +3865 0 3687 +3863 0 3687 +3863 0 3685 +3861 0 3683 +3859 0 3683 +3857 0 3679 +3855 0 3677 +3851 0 3673 +3847 0 3667 +3839 0 3659 +3829 0 3647 +3817 0 3633 +3799 1696 3611 +3773 2235 3583 +3739 2533 3541 +3685 2759 3477 +3603 2951 3375 +3465 3123 3187 +3169 3283 2669 +0 3435 0 +0 3581 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3819 +3997 0 3819 +3997 0 3819 +3997 0 3819 +3997 0 3819 +3997 0 3819 +3997 0 3819 +3997 0 3819 +3997 0 3817 +3995 0 3817 +3995 0 3817 +3995 0 3815 +3993 0 3815 +3991 0 3813 +3989 0 3811 +3987 0 3807 +3983 0 3803 +3977 0 3797 +3971 0 3789 +3961 0 3777 +3949 0 3763 +3931 1806 3741 +3905 2361 3713 +3869 2663 3669 +3817 2889 3605 +3735 3083 3503 +3595 3255 3315 +3299 3415 2785 +0 3567 0 +0 3713 0 +0 3855 0 +0 3995 0 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3949 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3943 +4095 0 3941 +4095 0 3937 +4095 0 3933 +4095 0 3927 +4095 0 3919 +4093 0 3909 +4081 0 3893 +4063 1922 3873 +4037 2487 3843 +4001 2793 3801 +3949 3021 3735 +3867 3213 3633 +3727 3385 3443 +3431 3547 2903 +0 3699 0 +0 3845 0 +0 3987 0 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4079 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4077 +4095 0 4075 +4095 0 4073 +4095 0 4069 +4095 0 4065 +4095 0 4059 +4095 0 4051 +4095 0 4039 +4095 0 4025 +4095 2041 4003 +4095 2617 3973 +4095 2923 3931 +4081 3151 3867 +3999 3345 3763 +3859 3517 3571 +3561 3677 3025 +0 3831 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2163 4095 +4095 2745 4095 +4095 3053 4063 +4095 3283 3997 +4095 3477 3893 +3991 3649 3701 +3693 3809 3151 +0 3961 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2287 4095 +4095 2875 4095 +4095 3185 4095 +4095 3415 4095 +4095 3607 4025 +4095 3781 3831 +3823 3941 3277 +1513 1085 1919 +1502 1096 1915 +1486 1112 1911 +1465 1131 1904 +1434 1156 1895 +1390 1187 1883 +1323 1226 1867 +1214 1273 1844 +1011 1329 1811 +373 1395 1763 +0 1470 1689 +0 1555 1568 +0 1648 1328 +0 1748 128 +0 1855 0 +0 1967 0 +0 2085 0 +0 2205 0 +0 2327 0 +0 2453 0 +0 2579 0 +0 2707 0 +0 2837 0 +0 2967 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3753 0 +0 3885 0 +0 4017 0 +1527 1083 1923 +1516 1095 1919 +1501 1110 1915 +1480 1129 1908 +1451 1154 1899 +1408 1186 1888 +1344 1225 1871 +1241 1272 1848 +1052 1328 1816 +520 1394 1768 +0 1470 1696 +0 1554 1576 +0 1647 1342 +0 1748 294 +0 1855 0 +0 1967 0 +0 2083 0 +0 2205 0 +0 2327 0 +0 2453 0 +0 2579 0 +0 2707 0 +0 2837 0 +0 2967 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3753 0 +0 3885 0 +0 4017 0 +1545 1080 1928 +1534 1092 1924 +1520 1108 1920 +1500 1127 1913 +1472 1152 1905 +1431 1184 1893 +1370 1223 1877 +1274 1270 1854 +1101 1327 1822 +663 1393 1775 +0 1469 1704 +0 1553 1587 +0 1647 1360 +0 1747 449 +0 1854 0 +0 1967 0 +0 2083 0 +0 2203 0 +0 2327 0 +0 2453 0 +0 2579 0 +0 2707 0 +0 2837 0 +0 2967 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3753 0 +0 3885 0 +0 4017 0 +1568 1077 1935 +1558 1089 1931 +1544 1104 1927 +1525 1124 1920 +1499 1150 1912 +1460 1181 1900 +1404 1221 1884 +1315 1268 1862 +1160 1325 1831 +803 1391 1785 +0 1467 1715 +0 1552 1601 +0 1646 1383 +0 1746 597 +0 1854 0 +0 1966 0 +0 2083 0 +0 2203 0 +0 2327 0 +0 2453 0 +0 2579 0 +0 2707 0 +0 2837 0 +0 2967 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3753 0 +0 3885 0 +0 4017 0 +1597 1073 1944 +1588 1085 1940 +1575 1100 1936 +1557 1120 1930 +1532 1146 1921 +1497 1178 1910 +1445 1217 1894 +1364 1265 1873 +1228 1322 1842 +941 1389 1797 +0 1465 1729 +0 1551 1619 +0 1644 1412 +0 1745 742 +0 1853 0 +0 1966 0 +0 2083 0 +0 2203 0 +0 2327 0 +0 2451 0 +0 2579 0 +0 2707 0 +0 2837 0 +0 2967 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3753 0 +0 3885 0 +0 4017 0 +1633 1067 1955 +1624 1079 1952 +1613 1095 1947 +1596 1115 1942 +1574 1141 1933 +1541 1173 1922 +1494 1213 1907 +1423 1261 1886 +1305 1319 1856 +1077 1386 1813 +140 1463 1748 +0 1549 1643 +0 1643 1449 +0 1744 883 +0 1852 0 +0 1965 0 +0 2083 0 +0 2203 0 +0 2327 0 +0 2451 0 +0 2579 0 +0 2707 0 +0 2837 0 +0 2967 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1677 1058 1970 +1669 1071 1967 +1659 1087 1963 +1644 1108 1957 +1624 1134 1949 +1595 1167 1939 +1553 1207 1924 +1491 1256 1904 +1392 1314 1875 +1212 1382 1833 +738 1459 1771 +0 1546 1672 +0 1640 1493 +0 1742 1021 +0 1850 0 +0 1964 0 +0 2081 0 +0 2203 0 +0 2325 0 +0 2451 0 +0 2579 0 +0 2707 0 +0 2837 0 +0 2967 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1730 1047 1990 +1723 1060 1987 +1714 1076 1982 +1701 1098 1977 +1683 1124 1969 +1658 1158 1959 +1622 1199 1945 +1569 1249 1926 +1487 1308 1899 +1347 1377 1859 +1048 1455 1801 +0 1542 1709 +0 1637 1546 +0 1740 1158 +0 1848 0 +0 1962 0 +0 2081 0 +0 2201 0 +0 2325 0 +0 2451 0 +0 2579 0 +0 2707 0 +0 2835 0 +0 2965 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1793 1032 2014 +1787 1045 2011 +1778 1062 2008 +1767 1084 2002 +1752 1111 1995 +1730 1146 1986 +1700 1188 1972 +1655 1239 1954 +1589 1299 1929 +1481 1369 1892 +1278 1449 1838 +650 1537 1754 +0 1633 1609 +0 1736 1294 +0 1846 0 +0 1960 0 +0 2079 0 +0 2201 0 +0 2325 0 +0 2451 0 +0 2577 0 +0 2707 0 +0 2835 0 +0 2965 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1865 1011 2045 +1860 1024 2043 +1853 1042 2039 +1843 1065 2034 +1830 1093 2028 +1812 1129 2019 +1787 1173 2006 +1750 1226 1989 +1697 1288 1966 +1614 1359 1932 +1472 1440 1883 +1167 1530 1807 +0 1628 1681 +0 1732 1428 +0 1842 0 +0 1957 0 +0 2077 0 +0 2199 0 +0 2323 0 +0 2449 0 +0 2577 0 +0 2705 0 +0 2835 0 +0 2965 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +1946 980 2083 +1942 995 2081 +1936 1014 2077 +1928 1038 2073 +1917 1068 2067 +1902 1106 2059 +1882 1152 2049 +1853 1207 2033 +1810 1271 2011 +1747 1345 1981 +1646 1429 1937 +1461 1520 1870 +957 1620 1763 +0 1726 1562 +0 1838 947 +0 1954 0 +0 2073 0 +0 2197 0 +0 2321 0 +0 2447 0 +0 2575 0 +0 2705 0 +0 2835 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3359 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2036 936 2131 +2033 953 2129 +2028 973 2125 +2021 1000 2121 +2013 1032 2115 +2001 1073 2109 +1984 1122 2099 +1961 1181 2085 +1928 1249 2065 +1880 1326 2039 +1807 1413 2000 +1685 1508 1943 +1446 1610 1853 +253 1718 1696 +0 1831 1330 +0 1949 0 +0 2069 0 +0 2193 0 +0 2319 0 +0 2447 0 +0 2575 0 +0 2703 0 +0 2833 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3359 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2135 870 2187 +2131 889 2185 +2127 913 2181 +2123 942 2179 +2115 980 2173 +2105 1025 2167 +2093 1079 2159 +2075 1143 2147 +2049 1217 2129 +2013 1299 2107 +1959 1391 2073 +1876 1490 2025 +1733 1595 1951 +1424 1707 1829 +0 1822 1587 +0 1942 319 +0 2065 0 +0 2189 0 +0 2317 0 +0 2443 0 +0 2573 0 +0 2703 0 +0 2833 0 +0 2963 0 +0 3095 0 +0 3227 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2239 763 2251 +2237 786 2251 +2233 816 2247 +2229 853 2245 +2223 898 2241 +2217 952 2235 +2207 1015 2227 +2193 1088 2217 +2173 1170 2203 +2145 1261 2183 +2105 1359 2155 +2047 1464 2115 +1954 1575 2057 +1790 1691 1962 +1394 1811 1795 +0 1933 1384 +0 2057 0 +0 2185 0 +0 2313 0 +0 2441 0 +0 2571 0 +0 2701 0 +0 2831 0 +0 2963 0 +0 3095 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2349 563 2327 +2347 599 2325 +2345 643 2323 +2341 696 2321 +2337 758 2317 +2331 830 2313 +2323 911 2307 +2313 1001 2297 +2299 1098 2285 +2277 1203 2269 +2249 1313 2247 +2207 1429 2215 +2143 1548 2167 +2041 1670 2095 +1856 1794 1976 +1349 1920 1745 +0 2049 747 +0 2177 0 +0 2307 0 +0 2437 0 +0 2567 0 +0 2699 0 +0 2831 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2465 0 2411 +2463 77 2409 +2461 203 2409 +2459 331 2407 +2455 460 2403 +2451 589 2399 +2445 719 2393 +2437 850 2387 +2425 981 2377 +2409 1112 2363 +2389 1244 2345 +2357 1376 2319 +2313 1507 2283 +2245 1639 2227 +2137 1771 2141 +1932 1903 1994 +1282 2035 1667 +0 2167 0 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2583 0 2503 +2583 0 2503 +2581 0 2501 +2579 0 2499 +2577 0 2497 +2573 0 2495 +2569 172 2489 +2563 511 2483 +2553 754 2477 +2543 954 2465 +2527 1130 2451 +2503 1293 2431 +2471 1447 2401 +2425 1595 2359 +2355 1739 2297 +2239 1879 2197 +2017 2017 2017 +1174 2153 1537 +0 2289 0 +0 2425 0 +0 2557 0 +0 2691 0 +0 2825 0 +0 2957 0 +0 3091 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2705 0 2603 +2705 0 2603 +2703 0 2601 +2703 0 2601 +2701 0 2599 +2697 0 2597 +2695 0 2593 +2689 0 2589 +2683 0 2581 +2675 581 2573 +2663 914 2561 +2647 1154 2545 +2623 1352 2523 +2591 1528 2493 +2543 1691 2447 +2469 1845 2377 +2349 1992 2263 +2111 2135 2046 +972 2275 1272 +0 2413 0 +0 2551 0 +0 2685 0 +0 2821 0 +0 2955 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2831 0 2711 +2829 0 2709 +2829 0 2709 +2827 0 2707 +2827 0 2707 +2825 0 2705 +2821 0 2701 +2819 0 2699 +2813 0 2693 +2807 0 2687 +2797 144 2677 +2785 855 2665 +2769 1183 2649 +2745 1421 2625 +2711 1618 2591 +2663 1794 2541 +2587 1956 2465 +2463 2109 2339 +2211 2257 2083 +338 2401 0 +0 2541 0 +0 2679 0 +0 2815 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4015 0 +2957 0 2823 +2957 0 2821 +2955 0 2821 +2955 0 2821 +2953 0 2819 +2953 0 2817 +2951 0 2815 +2947 0 2813 +2943 0 2809 +2939 0 2803 +2933 0 2797 +2923 0 2787 +2911 762 2775 +2893 1219 2757 +2869 1499 2731 +2835 1716 2697 +2785 1903 2643 +2709 2073 2561 +2581 2231 2423 +2319 2381 2127 +0 2527 0 +0 2667 0 +0 2807 0 +0 2945 0 +0 3081 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +3085 0 2939 +3085 0 2939 +3083 0 2939 +3083 0 2937 +3083 0 2937 +3081 0 2935 +3079 0 2933 +3077 0 2931 +3075 0 2929 +3071 0 2925 +3067 0 2919 +3059 0 2913 +3051 0 2903 +3037 597 2889 +3021 1264 2871 +2997 1585 2845 +2961 1821 2807 +2911 2017 2751 +2833 2191 2665 +2701 2353 2515 +2431 2507 2181 +0 2653 0 +0 2797 0 +0 2937 0 +0 3075 0 +0 3211 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3213 0 3059 +3213 0 3059 +3213 0 3059 +3213 0 3057 +3211 0 3057 +3211 0 3057 +3209 0 3055 +3209 0 3053 +3207 0 3051 +3203 0 3049 +3199 0 3045 +3195 0 3039 +3187 0 3031 +3179 0 3021 +3165 198 3007 +3149 1317 2989 +3125 1680 2961 +3089 1931 2923 +3037 2135 2865 +2959 2315 2775 +2825 2479 2615 +2549 2635 2243 +0 2783 0 +0 2927 0 +0 3067 0 +0 3205 0 +0 3343 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4013 0 +3343 0 3183 +3343 0 3181 +3343 0 3181 +3343 0 3181 +3341 0 3181 +3341 0 3179 +3341 0 3179 +3339 0 3177 +3337 0 3177 +3335 0 3173 +3333 0 3171 +3329 0 3167 +3323 0 3161 +3317 0 3153 +3307 0 3143 +3295 0 3129 +3277 1380 3109 +3253 1783 3081 +3217 2046 3041 +3167 2257 2983 +3087 2439 2889 +2951 2607 2723 +2669 2763 2315 +0 2913 0 +0 3057 0 +0 3197 0 +0 3337 0 +0 3473 0 +0 3609 0 +0 3745 0 +0 3879 0 +0 4013 0 +3473 0 3307 +3473 0 3307 +3473 0 3307 +3473 0 3307 +3473 0 3307 +3471 0 3305 +3471 0 3305 +3471 0 3303 +3469 0 3303 +3467 0 3301 +3465 0 3299 +3463 0 3295 +3459 0 3291 +3453 0 3285 +3447 0 3277 +3437 0 3267 +3425 0 3253 +3407 1452 3233 +3383 1891 3205 +3347 2165 3165 +3295 2381 3103 +3215 2567 3007 +3079 2735 2835 +2793 2893 2397 +0 3043 0 +0 3187 0 +0 3329 0 +0 3469 0 +0 3605 0 +0 3741 0 +0 3877 0 +0 4011 0 +3603 0 3435 +3603 0 3433 +3603 0 3433 +3603 0 3433 +3603 0 3433 +3603 0 3433 +3603 0 3433 +3601 0 3431 +3601 0 3431 +3599 0 3429 +3599 0 3427 +3597 0 3425 +3593 0 3423 +3589 0 3417 +3585 0 3413 +3577 0 3405 +3569 0 3393 +3555 0 3379 +3537 1534 3359 +3513 2005 3331 +3477 2287 3289 +3425 2507 3227 +3345 2695 3129 +3207 2863 2951 +2917 3023 2487 +0 3173 0 +0 3319 0 +0 3461 0 +0 3599 0 +0 3737 0 +0 3873 0 +0 4009 0 +3735 0 3563 +3735 0 3563 +3735 0 3561 +3735 0 3561 +3735 0 3561 +3735 0 3561 +3733 0 3561 +3733 0 3561 +3733 0 3559 +3731 0 3559 +3731 0 3557 +3729 0 3555 +3727 0 3553 +3725 0 3549 +3721 0 3545 +3715 0 3539 +3709 0 3533 +3699 0 3521 +3687 0 3507 +3669 1625 3487 +3643 2123 3457 +3607 2411 3415 +3555 2633 3353 +3475 2823 3253 +3337 2993 3071 +3045 3153 2585 +0 3303 0 +0 3449 0 +0 3593 0 +0 3731 0 +0 3869 0 +0 4005 0 +3867 0 3691 +3867 0 3691 +3867 0 3691 +3867 0 3691 +3865 0 3691 +3865 0 3691 +3865 0 3691 +3865 0 3689 +3865 0 3689 +3865 0 3689 +3863 0 3687 +3863 0 3687 +3861 0 3685 +3859 0 3683 +3855 0 3679 +3851 0 3675 +3847 0 3669 +3839 0 3661 +3831 0 3651 +3817 0 3635 +3799 1723 3615 +3775 2243 3585 +3739 2539 3543 +3687 2763 3481 +3605 2953 3379 +3467 3125 3195 +3173 3283 2691 +0 3435 0 +0 3581 0 +0 3723 0 +0 3863 0 +0 4001 0 +3997 0 3821 +3997 0 3821 +3997 0 3821 +3997 0 3821 +3997 0 3821 +3997 0 3821 +3997 0 3821 +3997 0 3821 +3997 0 3819 +3997 0 3819 +3995 0 3819 +3995 0 3817 +3993 0 3817 +3991 0 3815 +3989 0 3811 +3987 0 3809 +3983 0 3805 +3979 0 3799 +3971 0 3791 +3961 0 3779 +3949 0 3765 +3931 1828 3745 +3907 2367 3715 +3871 2665 3673 +3817 2891 3609 +3735 3083 3507 +3597 3255 3319 +3301 3415 2801 +0 3567 0 +0 3713 0 +0 3855 0 +0 3995 0 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3949 +4095 0 3949 +4095 0 3947 +4095 0 3947 +4095 0 3945 +4095 0 3943 +4095 0 3939 +4095 0 3935 +4095 0 3929 +4095 0 3921 +4093 0 3909 +4081 0 3895 +4063 1938 3875 +4037 2493 3845 +4001 2795 3801 +3949 3021 3737 +3867 3215 3635 +3729 3387 3447 +3431 3547 2917 +0 3699 0 +0 3845 0 +0 3987 0 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4081 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4075 +4095 0 4073 +4095 0 4069 +4095 0 4065 +4095 0 4059 +4095 0 4051 +4095 0 4041 +4095 0 4025 +4095 2053 4005 +4095 2621 3975 +4095 2925 3933 +4081 3153 3867 +3999 3345 3765 +3859 3517 3575 +3563 3679 3035 +0 3831 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2173 4095 +4095 2749 4095 +4095 3055 4063 +4095 3283 3999 +4095 3477 3895 +3991 3649 3703 +3693 3809 3157 +0 3963 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2295 4095 +4095 2877 4095 +4095 3185 4095 +4095 3415 4095 +4095 3609 4025 +4095 3781 3833 +3825 3941 3283 +1643 1209 2051 +1635 1218 2049 +1623 1230 2045 +1607 1245 2040 +1585 1264 2033 +1554 1289 2025 +1508 1321 2012 +1439 1359 1996 +1326 1406 1972 +1110 1462 1939 +353 1528 1891 +0 1603 1817 +0 1688 1694 +0 1780 1449 +0 1881 80 +0 1987 0 +0 2099 0 +0 2217 0 +0 2337 0 +0 2459 0 +0 2585 0 +0 2711 0 +0 2839 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3361 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3885 0 +0 4017 0 +1653 1208 2053 +1645 1217 2051 +1634 1229 2047 +1618 1244 2043 +1597 1263 2036 +1566 1288 2028 +1522 1319 2016 +1455 1358 1999 +1346 1405 1976 +1143 1462 1943 +505 1527 1895 +0 1603 1821 +0 1687 1700 +0 1780 1460 +0 1880 260 +0 1987 0 +0 2099 0 +0 2217 0 +0 2337 0 +0 2459 0 +0 2585 0 +0 2711 0 +0 2839 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3885 0 +0 4017 0 +1667 1206 2057 +1659 1215 2055 +1648 1227 2051 +1633 1242 2047 +1612 1262 2040 +1583 1287 2032 +1540 1318 2020 +1476 1357 2003 +1373 1404 1980 +1184 1461 1948 +652 1526 1900 +0 1602 1828 +0 1686 1708 +0 1779 1474 +0 1880 426 +0 1987 0 +0 2099 0 +0 2215 0 +0 2337 0 +0 2459 0 +0 2585 0 +0 2711 0 +0 2839 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3885 0 +0 4017 0 +1685 1204 2063 +1677 1213 2061 +1667 1224 2057 +1652 1240 2051 +1632 1259 2046 +1604 1284 2037 +1563 1316 2025 +1503 1355 2009 +1406 1403 1986 +1233 1459 1954 +795 1525 1907 +0 1601 1836 +0 1686 1719 +0 1779 1492 +0 1879 581 +0 1986 0 +0 2099 0 +0 2215 0 +0 2337 0 +0 2459 0 +0 2585 0 +0 2711 0 +0 2839 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3885 0 +0 4017 0 +1707 1200 2069 +1700 1209 2067 +1690 1221 2063 +1676 1237 2059 +1657 1256 2053 +1631 1282 2044 +1593 1313 2033 +1536 1353 2017 +1447 1400 1994 +1292 1457 1963 +935 1524 1917 +0 1599 1847 +0 1684 1733 +0 1778 1515 +0 1879 730 +0 1986 0 +0 2099 0 +0 2215 0 +0 2335 0 +0 2459 0 +0 2585 0 +0 2711 0 +0 2839 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3885 0 +0 4017 0 +1736 1196 2079 +1729 1205 2075 +1720 1217 2073 +1707 1232 2067 +1689 1252 2061 +1664 1278 2053 +1629 1310 2042 +1577 1349 2026 +1496 1397 2005 +1360 1455 1974 +1073 1521 1929 +0 1598 1861 +0 1683 1752 +0 1776 1545 +0 1878 874 +0 1985 0 +0 2097 0 +0 2215 0 +0 2335 0 +0 2459 0 +0 2585 0 +0 2711 0 +0 2839 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3885 0 +0 4017 0 +1771 1189 2089 +1765 1199 2087 +1756 1211 2083 +1745 1227 2079 +1728 1247 2073 +1706 1273 2065 +1674 1305 2055 +1627 1345 2039 +1555 1393 2018 +1437 1451 1988 +1209 1518 1945 +272 1595 1880 +0 1681 1775 +0 1775 1581 +0 1876 1015 +0 1984 0 +0 2097 0 +0 2215 0 +0 2335 0 +0 2459 0 +0 2583 0 +0 2711 0 +0 2839 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3885 0 +0 4017 0 +1815 1181 2105 +1809 1191 2103 +1801 1203 2099 +1791 1219 2095 +1776 1240 2089 +1756 1266 2081 +1727 1299 2071 +1685 1339 2057 +1623 1388 2036 +1524 1446 2007 +1344 1514 1966 +870 1592 1903 +0 1678 1804 +0 1772 1625 +0 1874 1153 +0 1982 0 +0 2095 0 +0 2213 0 +0 2335 0 +0 2457 0 +0 2583 0 +0 2711 0 +0 2839 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3885 0 +0 4017 0 +1867 1170 2123 +1862 1179 2121 +1855 1192 2119 +1846 1209 2115 +1833 1230 2109 +1815 1256 2101 +1790 1290 2091 +1754 1331 2077 +1701 1381 2059 +1619 1440 2031 +1479 1509 1992 +1180 1587 1933 +0 1674 1841 +0 1769 1678 +0 1872 1290 +0 1981 0 +0 2095 0 +0 2213 0 +0 2333 0 +0 2457 0 +0 2583 0 +0 2711 0 +0 2839 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3885 0 +0 4017 0 +1929 1154 2149 +1925 1164 2147 +1919 1177 2143 +1910 1194 2139 +1899 1216 2135 +1884 1243 2127 +1862 1278 2117 +1832 1320 2105 +1788 1371 2087 +1721 1432 2061 +1613 1501 2024 +1410 1581 1970 +782 1669 1886 +0 1765 1741 +0 1869 1426 +0 1978 0 +0 2093 0 +0 2211 0 +0 2333 0 +0 2457 0 +0 2583 0 +0 2709 0 +0 2839 0 +0 2967 0 +0 3097 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3753 0 +0 3885 0 +0 4017 0 +2001 1132 2179 +1997 1143 2177 +1992 1156 2175 +1985 1174 2171 +1975 1197 2167 +1962 1226 2159 +1944 1261 2151 +1919 1305 2139 +1883 1358 2121 +1829 1420 2097 +1746 1491 2065 +1604 1572 2015 +1299 1662 1939 +0 1760 1813 +0 1864 1560 +0 1974 0 +0 2089 0 +0 2209 0 +0 2331 0 +0 2455 0 +0 2581 0 +0 2709 0 +0 2837 0 +0 2967 0 +0 3097 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3753 0 +0 3885 0 +0 4017 0 +2081 1101 2217 +2079 1112 2215 +2073 1127 2213 +2069 1146 2211 +2061 1170 2205 +2049 1200 2199 +2034 1238 2191 +2014 1284 2181 +1985 1339 2165 +1943 1404 2143 +1879 1478 2113 +1778 1561 2069 +1593 1653 2003 +1089 1752 1895 +0 1858 1695 +0 1970 1079 +0 2085 0 +0 2205 0 +0 2329 0 +0 2453 0 +0 2579 0 +0 2709 0 +0 2837 0 +0 2967 0 +0 3097 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3753 0 +0 3885 0 +0 4017 0 +2171 1056 2265 +2169 1068 2263 +2165 1084 2261 +2159 1105 2257 +2153 1132 2253 +2145 1164 2249 +2133 1205 2241 +2117 1254 2231 +2093 1313 2217 +2061 1381 2197 +2012 1458 2171 +1939 1545 2133 +1817 1640 2075 +1578 1742 1985 +385 1850 1828 +0 1963 1462 +0 2081 0 +0 2201 0 +0 2325 0 +0 2451 0 +0 2579 0 +0 2707 0 +0 2837 0 +0 2967 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2269 988 2321 +2267 1002 2319 +2263 1021 2317 +2259 1044 2315 +2255 1074 2311 +2247 1112 2305 +2237 1157 2299 +2225 1211 2291 +2207 1275 2279 +2181 1349 2261 +2145 1431 2239 +2091 1523 2205 +2008 1622 2157 +1865 1727 2083 +1556 1839 1961 +0 1955 1720 +0 2075 451 +0 2197 0 +0 2321 0 +0 2449 0 +0 2577 0 +0 2705 0 +0 2835 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2373 877 2385 +2371 895 2385 +2369 918 2383 +2365 948 2381 +2361 985 2377 +2357 1029 2373 +2349 1083 2367 +2339 1147 2359 +2325 1220 2349 +2305 1302 2335 +2277 1393 2315 +2237 1491 2287 +2179 1597 2247 +2087 1708 2189 +1922 1823 2095 +1526 1943 1927 +0 2065 1516 +0 2189 0 +0 2317 0 +0 2445 0 +0 2573 0 +0 2703 0 +0 2833 0 +0 2963 0 +0 3095 0 +0 3227 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2483 666 2461 +2481 695 2459 +2479 731 2457 +2477 775 2455 +2475 828 2453 +2469 890 2449 +2463 962 2445 +2457 1043 2439 +2445 1133 2429 +2431 1230 2417 +2409 1335 2401 +2381 1445 2379 +2339 1561 2347 +2275 1680 2299 +2173 1802 2227 +1988 1926 2109 +1481 2053 1877 +0 2181 879 +0 2309 0 +0 2439 0 +0 2569 0 +0 2699 0 +0 2831 0 +0 2963 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2597 0 2543 +2597 84 2543 +2595 209 2541 +2593 335 2541 +2591 463 2539 +2587 592 2535 +2583 721 2531 +2577 852 2527 +2569 982 2519 +2557 1113 2509 +2543 1244 2495 +2521 1376 2477 +2489 1508 2451 +2445 1640 2415 +2379 1771 2359 +2269 1903 2273 +2065 2035 2127 +1415 2167 1799 +0 2299 0 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3091 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2717 0 2637 +2715 0 2635 +2715 0 2635 +2713 0 2633 +2711 0 2631 +2709 0 2629 +2705 0 2627 +2701 304 2621 +2695 644 2617 +2687 886 2609 +2675 1086 2597 +2659 1263 2583 +2635 1426 2563 +2605 1580 2533 +2557 1727 2493 +2487 1871 2429 +2371 2011 2329 +2149 2149 2149 +1306 2287 1669 +0 2421 0 +0 2557 0 +0 2691 0 +0 2823 0 +0 2957 0 +0 3089 0 +0 3223 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3753 0 +0 3885 0 +0 4017 0 +2839 0 2737 +2837 0 2735 +2837 0 2735 +2837 0 2735 +2835 0 2733 +2833 0 2731 +2831 0 2729 +2827 0 2725 +2821 0 2721 +2815 0 2713 +2807 713 2705 +2795 1046 2693 +2779 1286 2679 +2755 1484 2655 +2723 1661 2625 +2675 1823 2579 +2601 1977 2509 +2481 2125 2395 +2243 2267 2179 +1103 2407 1404 +0 2547 0 +0 2683 0 +0 2819 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +2963 0 2843 +2963 0 2843 +2961 0 2841 +2961 0 2841 +2959 0 2839 +2959 0 2839 +2957 0 2837 +2953 0 2833 +2951 0 2831 +2945 0 2825 +2939 0 2819 +2929 276 2809 +2917 987 2797 +2901 1315 2781 +2877 1553 2757 +2843 1750 2723 +2795 1926 2673 +2719 2089 2597 +2595 2241 2471 +2343 2389 2215 +471 2533 0 +0 2673 0 +0 2811 0 +0 2947 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +3089 0 2955 +3089 0 2955 +3089 0 2955 +3087 0 2953 +3087 0 2953 +3085 0 2951 +3085 0 2949 +3083 0 2947 +3079 0 2945 +3075 0 2941 +3071 0 2937 +3065 0 2929 +3055 0 2919 +3043 894 2907 +3025 1351 2889 +3001 1631 2863 +2967 1848 2829 +2917 2035 2775 +2841 2205 2693 +2713 2363 2555 +2451 2513 2259 +0 2659 0 +0 2801 0 +0 2939 0 +0 3077 0 +0 3213 0 +0 3347 0 +0 3483 0 +0 3615 0 +0 3749 0 +0 3883 0 +0 4015 0 +3217 0 3071 +3217 0 3071 +3217 0 3071 +3215 0 3071 +3215 0 3069 +3215 0 3069 +3213 0 3067 +3211 0 3065 +3209 0 3063 +3207 0 3061 +3203 0 3057 +3199 0 3051 +3191 0 3045 +3183 0 3035 +3169 729 3021 +3153 1396 3003 +3129 1717 2977 +3093 1953 2939 +3043 2149 2883 +2965 2325 2797 +2833 2485 2647 +2563 2639 2313 +0 2785 0 +0 2929 0 +0 3069 0 +0 3207 0 +0 3343 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4013 0 +3345 0 3191 +3345 0 3191 +3345 0 3191 +3345 0 3191 +3345 0 3191 +3343 0 3189 +3343 0 3189 +3341 0 3187 +3341 0 3185 +3339 0 3183 +3335 0 3181 +3331 0 3177 +3327 0 3171 +3319 0 3163 +3311 0 3153 +3299 330 3139 +3281 1449 3121 +3257 1813 3093 +3221 2063 3055 +3169 2267 2997 +3091 2447 2907 +2957 2611 2747 +2681 2767 2375 +0 2915 0 +0 3059 0 +0 3199 0 +0 3337 0 +0 3475 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3475 0 3315 +3475 0 3315 +3475 0 3313 +3475 0 3313 +3475 0 3313 +3473 0 3313 +3473 0 3313 +3473 0 3311 +3471 0 3309 +3469 0 3309 +3467 0 3305 +3465 0 3303 +3461 0 3299 +3457 0 3293 +3449 0 3285 +3439 0 3275 +3427 0 3261 +3409 1512 3241 +3385 1915 3213 +3349 2179 3175 +3299 2389 3115 +3219 2571 3021 +3083 2739 2855 +2801 2895 2447 +0 3045 0 +0 3189 0 +0 3331 0 +0 3469 0 +0 3607 0 +0 3741 0 +0 3877 0 +0 4011 0 +3605 0 3439 +3605 0 3439 +3605 0 3439 +3605 0 3439 +3605 0 3439 +3605 0 3439 +3603 0 3437 +3603 0 3437 +3603 0 3437 +3601 0 3435 +3599 0 3433 +3597 0 3431 +3595 0 3427 +3591 0 3423 +3587 0 3417 +3579 0 3411 +3569 0 3399 +3557 0 3385 +3539 1585 3365 +3515 2023 3337 +3479 2297 3297 +3427 2513 3235 +3347 2699 3139 +3211 2867 2967 +2925 3025 2529 +0 3175 0 +0 3319 0 +0 3461 0 +0 3601 0 +0 3737 0 +0 3873 0 +0 4009 0 +3737 0 3567 +3737 0 3567 +3735 0 3567 +3735 0 3565 +3735 0 3565 +3735 0 3565 +3735 0 3565 +3735 0 3565 +3733 0 3563 +3733 0 3563 +3731 0 3561 +3731 0 3559 +3729 0 3557 +3725 0 3555 +3721 0 3549 +3717 0 3545 +3709 0 3537 +3701 0 3525 +3687 0 3511 +3669 1666 3491 +3645 2137 3463 +3609 2419 3421 +3557 2639 3359 +3477 2827 3261 +3339 2995 3083 +3049 3155 2619 +0 3305 0 +0 3451 0 +0 3593 0 +0 3731 0 +0 3869 0 +0 4005 0 +3867 0 3695 +3867 0 3695 +3867 0 3695 +3867 0 3695 +3867 0 3693 +3867 0 3693 +3867 0 3693 +3867 0 3693 +3865 0 3693 +3865 0 3691 +3865 0 3691 +3863 0 3689 +3861 0 3687 +3859 0 3685 +3857 0 3683 +3853 0 3677 +3847 0 3673 +3841 0 3665 +3831 0 3653 +3819 0 3639 +3801 1757 3619 +3775 2255 3589 +3741 2543 3547 +3687 2765 3485 +3607 2955 3385 +3469 3125 3203 +3177 3285 2717 +0 3437 0 +0 3581 0 +0 3725 0 +0 3863 0 +0 4001 0 +3999 0 3823 +3999 0 3823 +3999 0 3823 +3999 0 3823 +3999 0 3823 +3999 0 3823 +3997 0 3823 +3997 0 3823 +3997 0 3821 +3997 0 3821 +3997 0 3821 +3995 0 3819 +3995 0 3819 +3993 0 3817 +3991 0 3815 +3987 0 3811 +3983 0 3807 +3979 0 3801 +3971 0 3793 +3963 0 3783 +3949 0 3767 +3931 1855 3747 +3907 2375 3717 +3871 2671 3675 +3819 2895 3613 +3737 3085 3511 +3599 3257 3327 +3305 3415 2823 +0 3567 0 +0 3713 0 +0 3855 0 +0 3995 0 +4095 0 3953 +4095 0 3953 +4095 0 3953 +4095 0 3953 +4095 0 3953 +4095 0 3953 +4095 0 3953 +4095 0 3953 +4095 0 3953 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3949 +4095 0 3949 +4095 0 3947 +4095 0 3945 +4095 0 3941 +4095 0 3937 +4095 0 3931 +4095 0 3923 +4093 0 3911 +4081 0 3897 +4063 1960 3877 +4039 2499 3847 +4003 2797 3805 +3949 3023 3741 +3869 3215 3639 +3729 3387 3451 +3435 3547 2933 +0 3699 0 +0 3845 0 +0 3987 0 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4081 +4095 0 4081 +4095 0 4079 +4095 0 4079 +4095 0 4077 +4095 0 4075 +4095 0 4071 +4095 0 4067 +4095 0 4061 +4095 0 4053 +4095 0 4043 +4095 0 4027 +4095 2071 4007 +4095 2625 3977 +4095 2927 3935 +4081 3155 3869 +3999 3347 3767 +3861 3519 3579 +3563 3679 3049 +0 3831 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2187 4095 +4095 2753 4095 +4095 3057 4065 +4095 3285 4001 +4095 3477 3897 +3991 3651 3707 +3695 3811 3167 +0 3963 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2305 4095 +4095 2881 4095 +4095 3187 4095 +4095 3415 4095 +4095 3609 4027 +4095 3781 3835 +3825 3943 3291 +1773 1336 2183 +1767 1342 2181 +1759 1351 2179 +1747 1363 2175 +1731 1378 2169 +1708 1398 2163 +1676 1422 2155 +1629 1453 2143 +1558 1492 2125 +1442 1539 2101 +1216 1595 2069 +324 1661 2020 +0 1736 1945 +0 1820 1821 +0 1913 1573 +0 2013 6 +0 2119 0 +0 2231 0 +0 2349 0 +0 2469 0 +0 2591 0 +0 2717 0 +0 2843 0 +0 2971 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +1781 1335 2185 +1775 1341 2183 +1767 1350 2181 +1755 1362 2177 +1739 1377 2171 +1717 1397 2165 +1686 1421 2157 +1640 1453 2145 +1571 1491 2127 +1458 1538 2105 +1242 1594 2071 +485 1660 2023 +0 1735 1949 +0 1820 1826 +0 1912 1582 +0 2013 212 +0 2119 0 +0 2231 0 +0 2349 0 +0 2469 0 +0 2591 0 +0 2717 0 +0 2843 0 +0 2971 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +1792 1333 2187 +1786 1340 2185 +1777 1349 2183 +1766 1361 2179 +1751 1376 2175 +1729 1395 2169 +1699 1420 2159 +1654 1452 2147 +1587 1490 2131 +1479 1537 2107 +1275 1594 2075 +637 1659 2027 +0 1735 1954 +0 1819 1832 +0 1912 1592 +0 2012 393 +0 2119 0 +0 2231 0 +0 2349 0 +0 2469 0 +0 2591 0 +0 2717 0 +0 2843 0 +0 2971 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +1805 1331 2191 +1799 1338 2189 +1791 1347 2187 +1780 1359 2183 +1765 1374 2179 +1744 1394 2173 +1715 1419 2163 +1672 1450 2151 +1608 1489 2135 +1505 1536 2113 +1316 1593 2079 +784 1659 2032 +0 1734 1960 +0 1819 1840 +0 1912 1606 +0 2012 558 +0 2119 0 +0 2231 0 +0 2349 0 +0 2469 0 +0 2591 0 +0 2717 0 +0 2843 0 +0 2971 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +1823 1329 2197 +1817 1336 2195 +1809 1345 2193 +1799 1356 2189 +1784 1372 2185 +1764 1392 2177 +1736 1417 2169 +1695 1448 2157 +1635 1487 2141 +1538 1535 2119 +1365 1591 2087 +927 1657 2040 +0 1733 1968 +0 1818 1851 +0 1911 1624 +0 2011 713 +0 2119 0 +0 2231 0 +0 2347 0 +0 2469 0 +0 2591 0 +0 2717 0 +0 2843 0 +0 2971 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +1845 1325 2203 +1839 1332 2201 +1832 1341 2199 +1822 1353 2195 +1809 1369 2191 +1790 1389 2185 +1763 1414 2177 +1725 1446 2165 +1668 1485 2149 +1579 1532 2127 +1424 1589 2095 +1067 1656 2049 +0 1732 1979 +0 1817 1865 +0 1910 1647 +0 2011 862 +0 2117 0 +0 2231 0 +0 2347 0 +0 2467 0 +0 2591 0 +0 2717 0 +0 2843 0 +0 2971 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +1873 1321 2213 +1868 1328 2211 +1861 1337 2207 +1852 1349 2205 +1839 1365 2199 +1821 1385 2193 +1797 1410 2185 +1761 1442 2175 +1709 1482 2159 +1628 1530 2137 +1492 1587 2107 +1205 1653 2061 +0 1730 1994 +0 1815 1884 +0 1909 1677 +0 2010 1006 +0 2117 0 +0 2229 0 +0 2347 0 +0 2467 0 +0 2591 0 +0 2717 0 +0 2843 0 +0 2971 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +1908 1315 2223 +1904 1322 2221 +1897 1331 2219 +1889 1343 2217 +1877 1359 2211 +1861 1379 2205 +1838 1405 2197 +1806 1437 2187 +1759 1477 2171 +1687 1526 2151 +1570 1583 2121 +1341 1650 2077 +404 1727 2012 +0 1813 1907 +0 1907 1713 +0 2008 1147 +0 2117 0 +0 2229 0 +0 2347 0 +0 2467 0 +0 2591 0 +0 2715 0 +0 2843 0 +0 2971 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4017 0 +1951 1306 2239 +1947 1313 2237 +1941 1323 2235 +1934 1335 2231 +1923 1351 2227 +1908 1372 2221 +1888 1398 2213 +1859 1431 2203 +1818 1471 2189 +1755 1520 2167 +1656 1579 2139 +1476 1646 2097 +1002 1724 2036 +0 1810 1936 +0 1905 1757 +0 2007 1285 +0 2115 0 +0 2227 0 +0 2345 0 +0 2467 0 +0 2589 0 +0 2715 0 +0 2843 0 +0 2971 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4017 0 +2003 1294 2257 +2000 1302 2257 +1994 1312 2253 +1987 1324 2251 +1978 1341 2247 +1965 1362 2241 +1947 1389 2233 +1922 1422 2223 +1886 1463 2209 +1833 1513 2191 +1751 1572 2163 +1611 1641 2123 +1312 1719 2065 +0 1806 1973 +0 1902 1811 +0 2004 1422 +0 2113 0 +0 2227 0 +0 2345 0 +0 2465 0 +0 2589 0 +0 2715 0 +0 2843 0 +0 2971 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4017 0 +2065 1278 2283 +2061 1286 2281 +2057 1296 2279 +2051 1309 2275 +2043 1326 2271 +2031 1348 2267 +2016 1376 2259 +1994 1410 2249 +1964 1452 2237 +1920 1503 2219 +1853 1564 2193 +1745 1634 2157 +1543 1713 2103 +914 1801 2018 +0 1897 1873 +0 2001 1558 +0 2111 0 +0 2225 0 +0 2343 0 +0 2465 0 +0 2589 0 +0 2715 0 +0 2841 0 +0 2971 0 +0 3099 0 +0 3231 0 +0 3361 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4017 0 +2135 1256 2313 +2133 1264 2311 +2129 1275 2309 +2123 1289 2307 +2117 1306 2303 +2107 1329 2299 +2095 1358 2291 +2077 1393 2283 +2051 1437 2271 +2015 1490 2253 +1961 1552 2231 +1878 1624 2197 +1737 1704 2147 +1431 1794 2071 +0 1892 1946 +0 1996 1693 +0 2107 0 +0 2221 0 +0 2341 0 +0 2463 0 +0 2587 0 +0 2713 0 +0 2841 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3361 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4017 0 +2215 1225 2351 +2213 1233 2349 +2211 1244 2347 +2205 1259 2345 +2201 1278 2343 +2193 1302 2337 +2181 1333 2331 +2167 1370 2323 +2145 1416 2313 +2117 1471 2297 +2075 1536 2275 +2011 1610 2245 +1910 1693 2201 +1725 1785 2135 +1221 1884 2027 +0 1990 1827 +0 2101 1211 +0 2219 0 +0 2337 0 +0 2461 0 +0 2585 0 +0 2713 0 +0 2841 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3361 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3885 0 +0 4017 0 +2305 1179 2397 +2303 1188 2397 +2301 1200 2395 +2297 1217 2393 +2293 1237 2389 +2285 1264 2385 +2277 1297 2381 +2265 1337 2373 +2249 1387 2363 +2225 1445 2349 +2193 1513 2329 +2145 1591 2303 +2071 1677 2265 +1949 1772 2207 +1710 1874 2117 +517 1982 1960 +0 2095 1594 +0 2213 0 +0 2335 0 +0 2457 0 +0 2583 0 +0 2711 0 +0 2839 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3885 0 +0 4017 0 +2401 1109 2453 +2401 1120 2453 +2399 1134 2451 +2395 1153 2449 +2391 1177 2447 +2387 1206 2443 +2379 1244 2437 +2369 1289 2431 +2357 1344 2423 +2339 1407 2411 +2313 1481 2393 +2277 1564 2371 +2223 1655 2337 +2139 1754 2289 +1997 1860 2215 +1688 1971 2093 +0 2087 1852 +0 2207 583 +0 2329 0 +0 2453 0 +0 2581 0 +0 2709 0 +0 2837 0 +0 2967 0 +0 3097 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3753 0 +0 3885 0 +0 4017 0 +2505 995 2519 +2505 1009 2517 +2503 1027 2517 +2501 1050 2515 +2497 1080 2513 +2493 1117 2509 +2489 1162 2505 +2481 1216 2499 +2471 1279 2491 +2457 1352 2481 +2437 1434 2467 +2409 1525 2447 +2369 1623 2419 +2311 1729 2381 +2219 1840 2321 +2055 1955 2227 +1658 2075 2059 +0 2197 1649 +0 2321 0 +0 2449 0 +0 2577 0 +0 2705 0 +0 2835 0 +0 2965 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2615 775 2593 +2615 798 2593 +2613 827 2591 +2611 863 2589 +2609 907 2587 +2607 960 2585 +2601 1022 2581 +2597 1094 2577 +2589 1175 2571 +2577 1265 2561 +2563 1363 2551 +2541 1467 2533 +2513 1578 2511 +2471 1693 2479 +2407 1812 2431 +2305 1934 2359 +2121 2059 2241 +1614 2185 2009 +0 2313 1012 +0 2441 0 +0 2571 0 +0 2701 0 +0 2831 0 +0 2963 0 +0 3095 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2731 0 2677 +2729 94 2677 +2729 216 2675 +2727 341 2675 +2725 467 2673 +2723 595 2671 +2719 724 2667 +2715 853 2663 +2709 984 2659 +2701 1114 2651 +2689 1245 2641 +2675 1377 2629 +2653 1508 2609 +2621 1640 2583 +2577 1772 2547 +2511 1904 2491 +2401 2035 2407 +2197 2167 2259 +1547 2299 1931 +0 2431 0 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2849 0 2769 +2849 0 2769 +2847 0 2767 +2847 0 2767 +2845 0 2765 +2843 0 2763 +2841 0 2761 +2837 0 2759 +2833 436 2755 +2827 776 2749 +2819 1018 2741 +2807 1218 2729 +2791 1395 2715 +2769 1558 2695 +2737 1712 2665 +2689 1859 2625 +2619 2003 2561 +2503 2143 2463 +2281 2281 2281 +1438 2419 1802 +0 2553 0 +0 2689 0 +0 2823 0 +0 2955 0 +0 3089 0 +0 3221 0 +0 3355 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +2971 0 2869 +2971 0 2869 +2971 0 2867 +2969 0 2867 +2969 0 2867 +2967 0 2865 +2965 0 2863 +2963 0 2861 +2959 0 2857 +2953 0 2853 +2947 96 2847 +2939 845 2837 +2927 1178 2827 +2911 1418 2811 +2887 1617 2789 +2855 1793 2757 +2807 1955 2711 +2733 2109 2641 +2613 2257 2527 +2375 2399 2311 +1236 2539 1536 +0 2679 0 +0 2815 0 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4015 0 +3095 0 2975 +3095 0 2975 +3095 0 2975 +3095 0 2973 +3093 0 2973 +3093 0 2973 +3091 0 2971 +3089 0 2969 +3085 0 2965 +3083 0 2963 +3077 0 2957 +3071 0 2951 +3063 409 2941 +3049 1119 2929 +3033 1447 2913 +3009 1685 2889 +2975 1883 2855 +2927 2059 2805 +2851 2221 2729 +2727 2373 2603 +2475 2521 2347 +602 2665 0 +0 2805 0 +0 2943 0 +0 3079 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +3221 0 3087 +3221 0 3087 +3221 0 3087 +3221 0 3087 +3219 0 3085 +3219 0 3085 +3217 0 3083 +3217 0 3083 +3215 0 3079 +3211 0 3077 +3209 0 3073 +3203 0 3069 +3197 0 3061 +3187 0 3051 +3175 1026 3039 +3159 1483 3021 +3135 1763 2997 +3099 1980 2961 +3049 2167 2907 +2973 2337 2825 +2845 2495 2687 +2583 2645 2391 +0 2791 0 +0 2933 0 +0 3071 0 +0 3209 0 +0 3345 0 +0 3479 0 +0 3615 0 +0 3747 0 +0 3881 0 +0 4015 0 +3349 0 3203 +3349 0 3203 +3349 0 3203 +3349 0 3203 +3347 0 3203 +3347 0 3201 +3347 0 3201 +3345 0 3199 +3343 0 3199 +3341 0 3195 +3339 0 3193 +3335 0 3189 +3331 0 3183 +3323 0 3177 +3315 0 3167 +3303 861 3153 +3285 1528 3135 +3261 1850 3109 +3225 2085 3071 +3175 2281 3015 +3097 2457 2929 +2965 2617 2779 +2695 2771 2445 +0 2919 0 +0 3061 0 +0 3201 0 +0 3339 0 +0 3475 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3477 0 3323 +3477 0 3323 +3477 0 3323 +3477 0 3323 +3477 0 3323 +3477 0 3323 +3475 0 3321 +3475 0 3321 +3473 0 3319 +3473 0 3317 +3471 0 3315 +3467 0 3313 +3463 0 3309 +3459 0 3303 +3453 0 3295 +3443 0 3285 +3431 462 3271 +3413 1581 3253 +3389 1945 3225 +3353 2195 3187 +3303 2399 3129 +3223 2579 3039 +3089 2743 2879 +2813 2899 2507 +0 3047 0 +0 3191 0 +0 3331 0 +0 3469 0 +0 3607 0 +0 3743 0 +0 3877 0 +0 4011 0 +3607 0 3447 +3607 0 3447 +3607 0 3447 +3607 0 3447 +3607 0 3445 +3607 0 3445 +3605 0 3445 +3605 0 3445 +3605 0 3443 +3603 0 3441 +3601 0 3441 +3599 0 3439 +3597 0 3435 +3593 0 3431 +3589 0 3425 +3581 0 3417 +3573 0 3407 +3559 0 3393 +3541 1644 3373 +3517 2047 3347 +3483 2311 3307 +3431 2521 3247 +3351 2703 3153 +3215 2871 2987 +2933 3027 2579 +0 3177 0 +0 3321 0 +0 3463 0 +0 3601 0 +0 3739 0 +0 3875 0 +0 4009 0 +3737 0 3571 +3737 0 3571 +3737 0 3571 +3737 0 3571 +3737 0 3571 +3737 0 3571 +3737 0 3571 +3737 0 3569 +3735 0 3569 +3735 0 3569 +3733 0 3567 +3731 0 3565 +3729 0 3563 +3727 0 3559 +3723 0 3555 +3719 0 3549 +3711 0 3543 +3703 0 3531 +3689 0 3517 +3671 1717 3497 +3647 2155 3469 +3611 2429 3429 +3559 2645 3367 +3479 2831 3271 +3343 2999 3099 +3057 3157 2661 +0 3307 0 +0 3451 0 +0 3593 0 +0 3733 0 +0 3869 0 +0 4005 0 +3869 0 3699 +3869 0 3699 +3869 0 3699 +3869 0 3699 +3867 0 3697 +3867 0 3697 +3867 0 3697 +3867 0 3697 +3867 0 3697 +3867 0 3695 +3865 0 3695 +3865 0 3693 +3863 0 3691 +3861 0 3689 +3857 0 3687 +3853 0 3683 +3849 0 3677 +3841 0 3669 +3833 0 3657 +3819 0 3643 +3801 1798 3623 +3777 2269 3595 +3741 2551 3553 +3689 2771 3491 +3609 2959 3393 +3471 3129 3215 +3181 3287 2751 +0 3437 0 +0 3583 0 +0 3725 0 +0 3865 0 +0 4001 0 +3999 0 3827 +3999 0 3827 +3999 0 3827 +3999 0 3827 +3999 0 3827 +3999 0 3827 +3999 0 3825 +3999 0 3825 +3999 0 3825 +3997 0 3825 +3997 0 3823 +3997 0 3823 +3995 0 3821 +3993 0 3819 +3991 0 3817 +3989 0 3815 +3985 0 3809 +3979 0 3805 +3973 0 3797 +3963 0 3785 +3951 0 3771 +3933 1889 3751 +3907 2387 3721 +3873 2677 3679 +3819 2899 3617 +3739 3087 3517 +3601 3259 3335 +3309 3417 2849 +0 3569 0 +0 3715 0 +0 3857 0 +0 3995 0 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3953 +4095 0 3953 +4095 0 3951 +4095 0 3951 +4095 0 3949 +4095 0 3947 +4095 0 3943 +4095 0 3939 +4095 0 3933 +4095 0 3925 +4095 0 3915 +4081 0 3899 +4063 1987 3879 +4039 2507 3849 +4003 2803 3807 +3951 3027 3745 +3869 3217 3643 +3731 3389 3459 +3437 3549 2955 +0 3699 0 +0 3845 0 +0 3987 0 +4095 0 4085 +4095 0 4085 +4095 0 4085 +4095 0 4085 +4095 0 4085 +4095 0 4085 +4095 0 4085 +4095 0 4085 +4095 0 4085 +4095 0 4085 +4095 0 4083 +4095 0 4083 +4095 0 4083 +4095 0 4081 +4095 0 4081 +4095 0 4079 +4095 0 4077 +4095 0 4073 +4095 0 4069 +4095 0 4063 +4095 0 4055 +4095 0 4043 +4095 0 4029 +4095 2093 4009 +4095 2631 3979 +4095 2931 3937 +4081 3157 3873 +4001 3347 3771 +3861 3519 3583 +3567 3679 3065 +0 3831 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2203 4095 +4095 2757 4095 +4095 3059 4067 +4095 3287 4003 +4095 3479 3899 +3993 3651 3711 +3697 3811 3181 +0 3963 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2319 4095 +4095 2885 4095 +4095 3189 4095 +4095 3417 4095 +4095 3609 4029 +4095 3783 3839 +3827 3943 3299 +1904 1463 2315 +1900 1469 2313 +1893 1475 2311 +1884 1484 2309 +1873 1496 2305 +1856 1511 2301 +1833 1530 2293 +1801 1555 2285 +1753 1586 2273 +1681 1625 2255 +1561 1672 2233 +1327 1728 2199 +282 1793 2149 +0 1868 2075 +0 1952 1949 +0 2045 1699 +0 2145 0 +0 2253 0 +0 2365 0 +0 2481 0 +0 2601 0 +0 2723 0 +0 2849 0 +0 2975 0 +0 3105 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +1910 1463 2317 +1906 1468 2315 +1899 1475 2313 +1891 1483 2311 +1879 1495 2307 +1863 1510 2301 +1840 1530 2295 +1808 1554 2287 +1761 1586 2275 +1690 1624 2257 +1574 1671 2235 +1348 1727 2201 +456 1793 2151 +0 1868 2077 +0 1952 1953 +0 2045 1706 +0 2145 138 +0 2251 0 +0 2365 0 +0 2481 0 +0 2601 0 +0 2723 0 +0 2849 0 +0 2975 0 +0 3103 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +1918 1462 2319 +1913 1467 2317 +1907 1474 2315 +1899 1482 2313 +1887 1494 2309 +1871 1509 2305 +1849 1529 2297 +1818 1554 2289 +1772 1585 2277 +1703 1623 2261 +1590 1670 2237 +1374 1727 2203 +617 1792 2155 +0 1867 2081 +0 1952 1958 +0 2045 1714 +0 2145 344 +0 2251 0 +0 2363 0 +0 2481 0 +0 2601 0 +0 2723 0 +0 2849 0 +0 2975 0 +0 3103 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +1928 1460 2321 +1924 1465 2319 +1918 1472 2317 +1909 1481 2315 +1898 1493 2311 +1883 1508 2307 +1861 1528 2301 +1831 1552 2291 +1786 1584 2279 +1719 1622 2263 +1611 1670 2241 +1407 1726 2207 +769 1792 2159 +0 1867 2085 +0 1951 1964 +0 2044 1724 +0 2145 525 +0 2251 0 +0 2363 0 +0 2481 0 +0 2601 0 +0 2723 0 +0 2849 0 +0 2975 0 +0 3103 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +1942 1458 2325 +1937 1463 2323 +1931 1470 2321 +1923 1479 2319 +1912 1491 2315 +1897 1506 2311 +1877 1526 2305 +1847 1551 2295 +1804 1582 2283 +1740 1621 2267 +1637 1668 2245 +1448 1725 2213 +916 1791 2165 +0 1866 2093 +0 1951 1972 +0 2044 1738 +0 2145 690 +0 2251 0 +0 2363 0 +0 2481 0 +0 2601 0 +0 2723 0 +0 2849 0 +0 2975 0 +0 3103 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +1959 1456 2331 +1955 1461 2329 +1949 1468 2327 +1941 1477 2325 +1931 1489 2321 +1916 1504 2317 +1896 1524 2309 +1868 1549 2301 +1828 1580 2289 +1767 1619 2273 +1670 1667 2251 +1497 1723 2219 +1059 1789 2171 +0 1865 2101 +0 1950 1983 +0 2043 1757 +0 2143 845 +0 2251 0 +0 2363 0 +0 2479 0 +0 2601 0 +0 2723 0 +0 2849 0 +0 2975 0 +0 3103 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +1981 1452 2337 +1977 1457 2335 +1972 1464 2333 +1964 1474 2331 +1954 1485 2327 +1941 1501 2323 +1922 1521 2317 +1895 1546 2309 +1857 1578 2297 +1800 1617 2281 +1711 1665 2259 +1556 1721 2227 +1199 1788 2181 +0 1864 2111 +0 1949 1998 +0 2042 1780 +0 2143 994 +0 2251 0 +0 2363 0 +0 2479 0 +0 2601 0 +0 2723 0 +0 2849 0 +0 2975 0 +0 3103 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +2009 1448 2345 +2005 1453 2345 +2000 1460 2343 +1993 1469 2339 +1984 1481 2337 +1971 1497 2333 +1953 1517 2325 +1929 1542 2317 +1893 1574 2307 +1841 1614 2291 +1761 1662 2269 +1624 1719 2239 +1337 1786 2193 +0 1862 2125 +0 1947 2016 +0 2041 1809 +0 2141 1138 +0 2249 0 +0 2363 0 +0 2479 0 +0 2599 0 +0 2723 0 +0 2849 0 +0 2975 0 +0 3103 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +2044 1441 2357 +2040 1447 2355 +2036 1454 2353 +2029 1463 2351 +2021 1475 2349 +2009 1491 2343 +1993 1511 2337 +1970 1537 2329 +1938 1569 2319 +1891 1609 2303 +1819 1658 2283 +1702 1715 2253 +1473 1783 2209 +536 1859 2145 +0 1945 2039 +0 2039 1845 +0 2141 1279 +0 2249 0 +0 2361 0 +0 2479 0 +0 2599 0 +0 2723 0 +0 2849 0 +0 2975 0 +0 3103 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +2087 1433 2371 +2083 1438 2371 +2079 1445 2369 +2073 1455 2367 +2065 1467 2363 +2055 1483 2359 +2040 1504 2353 +2020 1530 2345 +1991 1563 2335 +1950 1603 2321 +1887 1652 2299 +1788 1711 2271 +1609 1779 2229 +1134 1856 2167 +0 1942 2069 +0 2037 1889 +0 2139 1417 +0 2247 0 +0 2361 0 +0 2477 0 +0 2599 0 +0 2723 0 +0 2847 0 +0 2975 0 +0 3103 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +2139 1421 2391 +2135 1427 2389 +2131 1434 2389 +2127 1444 2385 +2119 1456 2383 +2111 1473 2379 +2097 1494 2373 +2079 1521 2365 +2055 1554 2355 +2018 1595 2341 +1965 1645 2323 +1883 1704 2295 +1743 1773 2255 +1444 1851 2197 +0 1938 2105 +0 2034 1943 +0 2137 1554 +0 2245 0 +0 2359 0 +0 2477 0 +0 2597 0 +0 2721 0 +0 2847 0 +0 2975 0 +0 3103 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +2199 1405 2415 +2197 1411 2415 +2193 1418 2413 +2189 1428 2411 +2183 1441 2407 +2175 1458 2403 +2163 1480 2399 +2149 1508 2391 +2127 1542 2383 +2097 1584 2369 +2051 1635 2351 +1985 1696 2325 +1877 1766 2289 +1675 1845 2235 +1046 1933 2149 +0 2030 2005 +0 2133 1690 +0 2243 0 +0 2357 0 +0 2475 0 +0 2597 0 +0 2721 0 +0 2847 0 +0 2973 0 +0 3103 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +2269 1382 2447 +2267 1388 2445 +2265 1396 2443 +2261 1407 2441 +2255 1421 2439 +2249 1438 2435 +2239 1461 2431 +2227 1490 2423 +2209 1526 2415 +2183 1569 2403 +2147 1622 2385 +2093 1684 2363 +2010 1756 2329 +1869 1837 2279 +1564 1926 2203 +0 2024 2077 +0 2129 1825 +0 2239 0 +0 2353 0 +0 2473 0 +0 2595 0 +0 2719 0 +0 2845 0 +0 2973 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +2349 1350 2485 +2347 1357 2483 +2345 1365 2481 +2343 1377 2481 +2339 1391 2477 +2333 1410 2475 +2325 1434 2469 +2313 1465 2463 +2299 1502 2455 +2279 1548 2445 +2249 1603 2429 +2207 1668 2407 +2143 1742 2377 +2042 1825 2333 +1857 1917 2267 +1353 2016 2159 +0 2123 1959 +0 2233 1343 +0 2351 0 +0 2469 0 +0 2593 0 +0 2717 0 +0 2845 0 +0 2973 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +2439 1303 2531 +2437 1311 2529 +2435 1320 2529 +2433 1333 2527 +2429 1349 2525 +2425 1369 2521 +2417 1396 2517 +2409 1429 2513 +2397 1469 2505 +2381 1519 2495 +2357 1577 2481 +2325 1645 2463 +2277 1723 2435 +2203 1809 2397 +2081 1904 2339 +1842 2006 2249 +650 2115 2093 +0 2227 1726 +0 2345 0 +0 2467 0 +0 2589 0 +0 2715 0 +0 2843 0 +0 2971 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4017 0 +2535 1232 2587 +2535 1241 2585 +2533 1252 2585 +2531 1266 2583 +2527 1285 2581 +2523 1309 2579 +2519 1339 2575 +2511 1376 2569 +2503 1421 2563 +2489 1476 2555 +2471 1540 2543 +2445 1613 2527 +2409 1696 2503 +2355 1787 2469 +2271 1886 2421 +2129 1992 2347 +1820 2103 2225 +0 2219 1984 +0 2339 715 +0 2461 0 +0 2585 0 +0 2713 0 +0 2841 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3361 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3885 0 +0 4017 0 +2639 1115 2651 +2639 1126 2651 +2637 1141 2649 +2635 1159 2649 +2633 1182 2647 +2629 1212 2645 +2625 1249 2641 +2621 1294 2637 +2613 1348 2631 +2603 1411 2623 +2589 1484 2613 +2569 1566 2599 +2541 1657 2579 +2503 1756 2553 +2443 1861 2513 +2351 1972 2453 +2187 2087 2359 +1790 2207 2191 +0 2329 1781 +0 2455 0 +0 2581 0 +0 2709 0 +0 2837 0 +0 2967 0 +0 3097 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3753 0 +0 3885 0 +0 4017 0 +2749 890 2725 +2749 908 2725 +2747 930 2725 +2745 959 2723 +2743 995 2721 +2741 1039 2719 +2739 1092 2717 +2735 1154 2713 +2729 1226 2709 +2721 1307 2703 +2709 1397 2695 +2695 1495 2683 +2673 1599 2665 +2645 1710 2643 +2603 1825 2611 +2539 1944 2563 +2437 2067 2491 +2253 2191 2373 +1746 2317 2141 +0 2445 1143 +0 2573 0 +0 2703 0 +0 2833 0 +0 2965 0 +0 3095 0 +0 3227 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2863 0 2809 +2863 107 2809 +2863 226 2809 +2861 348 2807 +2859 473 2807 +2857 599 2805 +2855 727 2803 +2851 856 2799 +2847 986 2795 +2841 1116 2791 +2833 1246 2783 +2821 1377 2773 +2807 1509 2761 +2785 1640 2741 +2755 1772 2715 +2709 1904 2679 +2643 2036 2623 +2533 2167 2539 +2329 2299 2391 +1679 2431 2063 +0 2563 0 +0 2695 0 +0 2827 0 +0 2959 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2981 0 2901 +2981 0 2901 +2981 0 2901 +2981 0 2899 +2979 0 2899 +2977 0 2897 +2975 0 2895 +2973 0 2893 +2969 0 2891 +2965 568 2887 +2959 908 2881 +2951 1150 2873 +2939 1350 2861 +2923 1527 2847 +2901 1690 2827 +2869 1844 2797 +2821 1992 2757 +2751 2135 2693 +2635 2275 2595 +2413 2413 2413 +1570 2551 1934 +0 2685 0 +0 2821 0 +0 2955 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3885 0 +0 4017 0 +3103 0 3001 +3103 0 3001 +3103 0 3001 +3103 0 3001 +3101 0 2999 +3101 0 2999 +3099 0 2997 +3097 0 2995 +3095 0 2993 +3091 0 2989 +3087 0 2985 +3079 228 2979 +3071 978 2969 +3059 1310 2959 +3043 1550 2943 +3019 1749 2921 +2987 1925 2889 +2939 2087 2843 +2865 2241 2773 +2745 2389 2659 +2507 2531 2443 +1368 2673 1669 +0 2811 0 +0 2947 0 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +3227 0 3107 +3227 0 3107 +3227 0 3107 +3227 0 3107 +3227 0 3107 +3225 0 3105 +3225 0 3105 +3223 0 3103 +3221 0 3101 +3219 0 3099 +3215 0 3095 +3209 0 3089 +3203 0 3083 +3195 541 3073 +3183 1251 3061 +3165 1579 3045 +3141 1817 3021 +3109 2015 2987 +3059 2191 2937 +2983 2353 2861 +2859 2505 2735 +2609 2653 2479 +735 2797 0 +0 2937 0 +0 3075 0 +0 3211 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3353 0 3219 +3353 0 3219 +3353 0 3219 +3353 0 3219 +3353 0 3219 +3353 0 3217 +3351 0 3217 +3351 0 3215 +3349 0 3215 +3347 0 3213 +3343 0 3209 +3341 0 3205 +3335 0 3201 +3329 0 3193 +3319 0 3185 +3307 1158 3171 +3291 1616 3153 +3267 1895 3129 +3233 2113 3093 +3183 2299 3039 +3105 2469 2957 +2977 2627 2819 +2715 2777 2523 +0 2923 0 +0 3065 0 +0 3203 0 +0 3341 0 +0 3477 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4013 0 +3481 0 3337 +3481 0 3335 +3481 0 3335 +3481 0 3335 +3481 0 3335 +3481 0 3335 +3479 0 3333 +3479 0 3333 +3477 0 3331 +3475 0 3331 +3473 0 3327 +3471 0 3325 +3467 0 3321 +3463 0 3315 +3455 0 3309 +3447 0 3299 +3435 994 3285 +3417 1660 3267 +3393 1982 3241 +3359 2217 3203 +3307 2413 3147 +3229 2589 3061 +3097 2749 2911 +2827 2903 2577 +0 3051 0 +0 3193 0 +0 3333 0 +0 3471 0 +0 3607 0 +0 3743 0 +0 3877 0 +0 4011 0 +3611 0 3457 +3611 0 3455 +3609 0 3455 +3609 0 3455 +3609 0 3455 +3609 0 3455 +3609 0 3455 +3607 0 3453 +3607 0 3453 +3605 0 3451 +3605 0 3449 +3603 0 3447 +3599 0 3445 +3595 0 3441 +3591 0 3435 +3585 0 3427 +3575 0 3417 +3563 594 3403 +3545 1714 3385 +3521 2077 3357 +3485 2327 3319 +3435 2531 3261 +3355 2711 3171 +3221 2875 3011 +2945 3031 2639 +0 3179 0 +0 3323 0 +0 3463 0 +0 3603 0 +0 3739 0 +0 3875 0 +0 4009 0 +3739 0 3579 +3739 0 3579 +3739 0 3579 +3739 0 3579 +3739 0 3579 +3739 0 3577 +3739 0 3577 +3739 0 3577 +3737 0 3577 +3737 0 3575 +3735 0 3575 +3733 0 3573 +3731 0 3571 +3729 0 3567 +3725 0 3563 +3721 0 3557 +3713 0 3549 +3705 0 3539 +3691 0 3525 +3673 1776 3505 +3649 2179 3479 +3615 2443 3439 +3563 2653 3379 +3483 2835 3285 +3347 3003 3119 +3065 3159 2711 +0 3309 0 +0 3453 0 +0 3595 0 +0 3733 0 +0 3871 0 +0 4007 0 +3869 0 3703 +3869 0 3703 +3869 0 3703 +3869 0 3703 +3869 0 3703 +3869 0 3703 +3869 0 3703 +3869 0 3703 +3869 0 3701 +3867 0 3701 +3867 0 3701 +3865 0 3699 +3863 0 3697 +3861 0 3695 +3859 0 3691 +3855 0 3687 +3851 0 3683 +3843 0 3675 +3835 0 3663 +3821 0 3649 +3803 1849 3629 +3779 2287 3601 +3743 2561 3561 +3691 2777 3499 +3611 2963 3403 +3475 3131 3231 +3189 3289 2793 +0 3439 0 +0 3583 0 +0 3725 0 +0 3865 0 +0 4001 0 +4001 0 3831 +4001 0 3831 +4001 0 3831 +4001 0 3831 +4001 0 3831 +4001 0 3831 +3999 0 3829 +3999 0 3829 +3999 0 3829 +3999 0 3829 +3999 0 3827 +3997 0 3827 +3997 0 3825 +3995 0 3823 +3993 0 3821 +3989 0 3819 +3985 0 3815 +3981 0 3809 +3975 0 3801 +3965 0 3791 +3951 0 3775 +3935 1931 3755 +3909 2401 3727 +3873 2683 3685 +3821 2903 3623 +3741 3091 3525 +3603 3261 3347 +3313 3419 2883 +0 3569 0 +0 3715 0 +0 3857 0 +0 3997 0 +4095 0 3959 +4095 0 3959 +4095 0 3959 +4095 0 3959 +4095 0 3959 +4095 0 3959 +4095 0 3959 +4095 0 3957 +4095 0 3957 +4095 0 3957 +4095 0 3957 +4095 0 3955 +4095 0 3955 +4095 0 3953 +4095 0 3951 +4095 0 3949 +4095 0 3947 +4095 0 3943 +4095 0 3937 +4095 0 3929 +4095 0 3917 +4083 0 3903 +4065 2021 3883 +4041 2519 3853 +4005 2809 3811 +3951 3031 3749 +3871 3219 3649 +3733 3391 3467 +3441 3549 2981 +0 3701 0 +0 3847 0 +0 3989 0 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4085 +4095 0 4085 +4095 0 4083 +4095 0 4083 +4095 0 4081 +4095 0 4079 +4095 0 4075 +4095 0 4071 +4095 0 4065 +4095 0 4057 +4095 0 4047 +4095 0 4031 +4095 2119 4011 +4095 2639 3981 +4095 2935 3939 +4083 3159 3877 +4001 3349 3775 +3863 3521 3591 +3569 3681 3087 +0 3831 0 +0 3977 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2225 4095 +4095 2763 4095 +4095 3063 4069 +4095 3289 4005 +4095 3479 3903 +3993 3651 3715 +3699 3811 3197 +0 3963 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2335 4095 +4095 2889 4095 +4095 3191 4095 +4095 3419 4095 +4095 3611 4031 +4095 3783 3843 +3829 3943 3313 +2035 1592 2447 +2032 1596 2445 +2027 1601 2445 +2021 1608 2443 +2012 1617 2439 +2000 1629 2435 +1983 1644 2431 +1960 1663 2425 +1927 1688 2415 +1879 1719 2403 +1805 1757 2387 +1684 1804 2363 +1443 1860 2329 +219 1926 2281 +0 2001 2205 +0 2085 2079 +0 2177 1827 +0 2277 0 +0 2385 0 +0 2497 0 +0 2613 0 +0 2733 0 +0 2857 0 +0 2981 0 +0 3109 0 +0 3237 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2040 1592 2447 +2036 1596 2447 +2032 1601 2445 +2025 1607 2443 +2017 1616 2441 +2005 1628 2437 +1988 1643 2433 +1965 1662 2425 +1933 1687 2417 +1885 1718 2405 +1813 1757 2387 +1693 1804 2365 +1459 1860 2331 +414 1925 2281 +0 2000 2207 +0 2085 2081 +0 2177 1831 +0 2277 16 +0 2385 0 +0 2497 0 +0 2613 0 +0 2733 0 +0 2857 0 +0 2981 0 +0 3109 0 +0 3237 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2046 1591 2449 +2042 1595 2449 +2038 1600 2447 +2031 1607 2445 +2023 1616 2443 +2011 1627 2439 +1995 1642 2433 +1972 1662 2427 +1940 1687 2419 +1894 1718 2407 +1822 1756 2389 +1706 1803 2367 +1480 1859 2333 +588 1925 2285 +0 2000 2209 +0 2085 2085 +0 2177 1838 +0 2277 270 +0 2385 0 +0 2497 0 +0 2613 0 +0 2733 0 +0 2855 0 +0 2981 0 +0 3107 0 +0 3237 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2053 1590 2451 +2051 1594 2451 +2046 1599 2449 +2039 1606 2447 +2031 1615 2445 +2019 1626 2441 +2004 1641 2437 +1981 1661 2429 +1950 1686 2421 +1904 1717 2409 +1835 1756 2393 +1722 1803 2369 +1507 1859 2335 +749 1924 2287 +0 2000 2213 +0 2083 2089 +0 2177 1846 +0 2277 476 +0 2383 0 +0 2497 0 +0 2613 0 +0 2733 0 +0 2855 0 +0 2981 0 +0 3107 0 +0 3237 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2063 1588 2455 +2061 1592 2453 +2055 1597 2453 +2049 1604 2451 +2042 1613 2447 +2030 1625 2443 +2015 1640 2439 +1993 1660 2433 +1963 1685 2423 +1918 1716 2411 +1851 1755 2395 +1743 1802 2373 +1540 1858 2339 +902 1924 2291 +0 1999 2217 +0 2083 2097 +0 2177 1857 +0 2277 657 +0 2383 0 +0 2495 0 +0 2613 0 +0 2733 0 +0 2855 0 +0 2981 0 +0 3107 0 +0 3237 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2077 1586 2459 +2073 1590 2457 +2069 1596 2455 +2063 1602 2453 +2055 1611 2451 +2045 1623 2447 +2030 1638 2443 +2009 1658 2437 +1979 1683 2429 +1937 1714 2417 +1872 1753 2399 +1769 1801 2377 +1580 1857 2345 +1048 1923 2297 +0 1998 2225 +0 2083 2105 +0 2175 1871 +0 2277 822 +0 2383 0 +0 2495 0 +0 2613 0 +0 2733 0 +0 2855 0 +0 2981 0 +0 3107 0 +0 3237 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2095 1584 2463 +2091 1588 2463 +2087 1593 2461 +2081 1600 2459 +2073 1609 2457 +2063 1621 2453 +2049 1636 2449 +2029 1656 2441 +2000 1681 2433 +1960 1712 2421 +1899 1751 2405 +1802 1799 2383 +1630 1855 2351 +1191 1922 2303 +0 1997 2233 +0 2081 2115 +0 2175 1889 +0 2275 977 +0 2383 0 +0 2495 0 +0 2613 0 +0 2733 0 +0 2855 0 +0 2981 0 +0 3107 0 +0 3235 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2117 1580 2471 +2113 1584 2469 +2109 1590 2467 +2103 1597 2465 +2097 1606 2463 +2087 1618 2459 +2073 1633 2455 +2053 1653 2449 +2027 1678 2441 +1989 1710 2429 +1932 1749 2413 +1843 1797 2391 +1688 1854 2359 +1331 1920 2313 +0 1996 2243 +0 2081 2129 +0 2175 1912 +0 2275 1126 +0 2383 0 +0 2495 0 +0 2611 0 +0 2733 0 +0 2855 0 +0 2981 0 +0 3107 0 +0 3235 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2143 1576 2479 +2141 1580 2477 +2137 1585 2477 +2133 1592 2475 +2125 1601 2473 +2117 1613 2469 +2103 1629 2465 +2085 1649 2459 +2061 1674 2449 +2025 1706 2439 +1973 1746 2423 +1893 1794 2401 +1756 1851 2371 +1469 1918 2325 +0 1994 2257 +0 2079 2147 +0 2173 1941 +0 2273 1270 +0 2381 0 +0 2495 0 +0 2611 0 +0 2731 0 +0 2855 0 +0 2981 0 +0 3107 0 +0 3235 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2179 1569 2491 +2175 1573 2489 +2173 1579 2487 +2167 1586 2487 +2161 1595 2483 +2153 1607 2481 +2141 1623 2475 +2125 1643 2471 +2103 1669 2461 +2069 1701 2451 +2023 1741 2435 +1951 1790 2415 +1834 1848 2385 +1605 1915 2341 +668 1991 2277 +0 2077 2171 +0 2171 1977 +0 2273 1411 +0 2381 0 +0 2493 0 +0 2611 0 +0 2731 0 +0 2855 0 +0 2981 0 +0 3107 0 +0 3235 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2221 1561 2505 +2219 1565 2505 +2215 1570 2503 +2211 1578 2501 +2205 1587 2499 +2197 1599 2495 +2187 1615 2491 +2173 1636 2485 +2153 1662 2477 +2123 1695 2467 +2081 1736 2453 +2020 1785 2433 +1920 1843 2403 +1741 1911 2361 +1266 1988 2299 +0 2075 2201 +0 2169 2022 +0 2271 1549 +0 2379 0 +0 2493 0 +0 2609 0 +0 2731 0 +0 2855 0 +0 2979 0 +0 3107 0 +0 3235 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2273 1549 2525 +2271 1553 2523 +2267 1559 2521 +2263 1566 2521 +2259 1576 2519 +2251 1589 2515 +2243 1605 2511 +2229 1626 2505 +2211 1653 2497 +2187 1686 2487 +2151 1727 2473 +2097 1777 2455 +2015 1837 2427 +1875 1905 2387 +1576 1983 2329 +0 2071 2237 +0 2165 2075 +0 2269 1686 +0 2377 0 +0 2491 0 +0 2609 0 +0 2729 0 +0 2853 0 +0 2979 0 +0 3107 0 +0 3235 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2333 1532 2549 +2331 1537 2547 +2329 1543 2547 +2325 1550 2545 +2321 1560 2543 +2315 1574 2539 +2307 1591 2537 +2295 1612 2531 +2281 1640 2523 +2259 1674 2515 +2229 1717 2501 +2183 1768 2483 +2117 1828 2457 +2009 1898 2421 +1807 1977 2367 +1178 2065 2283 +0 2161 2137 +0 2265 1822 +0 2375 0 +0 2489 0 +0 2607 0 +0 2729 0 +0 2853 0 +0 2979 0 +0 3107 0 +0 3235 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +2403 1510 2579 +2401 1514 2579 +2399 1520 2577 +2397 1528 2575 +2393 1539 2573 +2389 1553 2571 +2381 1571 2567 +2371 1593 2563 +2359 1622 2557 +2341 1658 2547 +2315 1701 2535 +2279 1754 2517 +2225 1816 2495 +2143 1888 2461 +2001 1969 2411 +1696 2059 2335 +0 2157 2209 +0 2261 1957 +0 2371 0 +0 2485 0 +0 2605 0 +0 2727 0 +0 2851 0 +0 2977 0 +0 3105 0 +0 3235 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +2483 1477 2617 +2481 1482 2617 +2481 1489 2615 +2477 1497 2615 +2475 1509 2613 +2471 1523 2609 +2465 1542 2607 +2457 1566 2603 +2445 1597 2597 +2431 1634 2587 +2411 1680 2577 +2381 1735 2561 +2339 1800 2539 +2275 1874 2509 +2175 1957 2465 +1990 2049 2399 +1485 2149 2291 +0 2255 2091 +0 2367 1476 +0 2483 0 +0 2603 0 +0 2725 0 +0 2849 0 +0 2977 0 +0 3105 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +2571 1430 2663 +2571 1435 2663 +2569 1443 2661 +2567 1452 2661 +2565 1465 2659 +2561 1481 2657 +2557 1502 2653 +2549 1528 2649 +2541 1561 2645 +2529 1602 2637 +2513 1651 2627 +2489 1709 2613 +2457 1777 2595 +2409 1855 2567 +2335 1941 2529 +2213 2036 2471 +1974 2139 2381 +782 2247 2225 +0 2359 1859 +0 2477 0 +0 2599 0 +0 2721 0 +0 2847 0 +0 2975 0 +0 3103 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +2669 1358 2719 +2667 1364 2719 +2667 1373 2717 +2665 1384 2717 +2663 1398 2715 +2659 1417 2713 +2655 1441 2711 +2651 1471 2707 +2643 1508 2703 +2635 1553 2695 +2621 1608 2687 +2603 1672 2675 +2577 1745 2659 +2541 1828 2635 +2487 1919 2601 +2405 2018 2553 +2261 2123 2479 +1953 2235 2357 +0 2351 2115 +0 2471 847 +0 2593 0 +0 2717 0 +0 2845 0 +0 2973 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +2771 1239 2783 +2771 1248 2783 +2771 1259 2783 +2769 1273 2781 +2767 1291 2781 +2765 1315 2779 +2763 1344 2777 +2757 1381 2773 +2753 1426 2769 +2745 1480 2763 +2735 1543 2757 +2721 1616 2745 +2701 1698 2731 +2673 1789 2711 +2635 1888 2685 +2575 1993 2645 +2483 2105 2585 +2319 2219 2491 +1922 2339 2323 +0 2461 1913 +0 2587 0 +0 2713 0 +0 2841 0 +0 2969 0 +0 3099 0 +0 3229 0 +0 3361 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4017 0 +2881 1008 2859 +2881 1022 2857 +2881 1039 2857 +2879 1062 2857 +2877 1091 2855 +2877 1127 2853 +2873 1171 2851 +2871 1224 2849 +2867 1286 2845 +2861 1358 2841 +2853 1439 2835 +2841 1529 2827 +2827 1627 2815 +2807 1731 2799 +2777 1842 2775 +2735 1957 2743 +2671 2077 2695 +2569 2199 2623 +2385 2323 2505 +1878 2449 2273 +0 2577 1276 +0 2705 0 +0 2835 0 +0 2965 0 +0 3097 0 +0 3227 0 +0 3359 0 +0 3491 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +2995 13 2941 +2995 124 2941 +2995 239 2941 +2995 358 2941 +2993 481 2939 +2991 605 2939 +2989 731 2937 +2987 859 2935 +2985 988 2931 +2979 1117 2927 +2973 1248 2923 +2965 1378 2915 +2955 1510 2905 +2939 1641 2893 +2917 1772 2873 +2887 1904 2847 +2841 2036 2811 +2775 2167 2755 +2665 2299 2671 +2461 2431 2523 +1811 2563 2195 +0 2695 0 +0 2827 0 +0 2959 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +3115 0 3035 +3115 0 3033 +3113 0 3033 +3113 0 3033 +3113 0 3033 +3111 0 3031 +3109 0 3029 +3107 0 3029 +3105 0 3025 +3101 0 3023 +3097 700 3019 +3091 1040 3013 +3083 1282 3005 +3071 1482 2993 +3055 1659 2979 +3033 1822 2959 +3001 1976 2931 +2955 2123 2889 +2883 2267 2825 +2769 2407 2727 +2545 2545 2545 +1703 2683 2065 +0 2817 0 +0 2953 0 +0 3087 0 +0 3221 0 +0 3353 0 +0 3487 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4017 0 +3237 0 3133 +3235 0 3133 +3235 0 3133 +3235 0 3133 +3235 0 3133 +3233 0 3131 +3233 0 3131 +3231 0 3129 +3229 0 3127 +3227 0 3125 +3223 0 3121 +3219 0 3117 +3211 360 3111 +3203 1109 3101 +3191 1442 3091 +3175 1682 3075 +3151 1881 3053 +3119 2057 3021 +3071 2219 2975 +2997 2373 2905 +2877 2521 2791 +2639 2663 2575 +1500 2805 1801 +0 2943 0 +0 3079 0 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +3361 0 3241 +3359 0 3239 +3359 0 3239 +3359 0 3239 +3359 0 3239 +3359 0 3239 +3357 0 3237 +3357 0 3237 +3355 0 3235 +3353 0 3233 +3351 0 3231 +3347 0 3227 +3341 0 3221 +3335 0 3215 +3327 673 3207 +3315 1383 3193 +3297 1711 3177 +3273 1949 3153 +3241 2147 3119 +3191 2323 3069 +3115 2485 2993 +2991 2637 2867 +2741 2785 2611 +867 2929 0 +0 3069 0 +0 3207 0 +0 3343 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4013 0 +3487 0 3351 +3487 0 3351 +3485 0 3351 +3485 0 3351 +3485 0 3351 +3485 0 3351 +3485 0 3349 +3483 0 3349 +3483 0 3347 +3481 0 3347 +3479 0 3345 +3475 0 3341 +3473 0 3337 +3467 0 3333 +3461 0 3325 +3451 0 3317 +3439 1290 3303 +3423 1748 3285 +3399 2027 3261 +3365 2245 3225 +3315 2431 3171 +3237 2601 3091 +3109 2759 2951 +2847 2909 2655 +0 3055 0 +0 3197 0 +0 3335 0 +0 3473 0 +0 3609 0 +0 3745 0 +0 3879 0 +0 4013 0 +3613 0 3469 +3613 0 3469 +3613 0 3469 +3613 0 3467 +3613 0 3467 +3613 0 3467 +3613 0 3467 +3611 0 3465 +3611 0 3465 +3609 0 3463 +3609 0 3463 +3607 0 3461 +3603 0 3457 +3599 0 3453 +3595 0 3447 +3587 0 3441 +3579 0 3431 +3567 1125 3417 +3549 1792 3399 +3525 2113 3373 +3491 2349 3335 +3439 2545 3281 +3361 2721 3193 +3231 2883 3043 +2961 3035 2709 +0 3183 0 +0 3325 0 +0 3465 0 +0 3603 0 +0 3739 0 +0 3875 0 +0 4009 0 +3743 0 3589 +3743 0 3589 +3743 0 3589 +3743 0 3587 +3741 0 3587 +3741 0 3587 +3741 0 3587 +3741 0 3587 +3741 0 3585 +3739 0 3585 +3739 0 3583 +3737 0 3581 +3735 0 3579 +3731 0 3577 +3729 0 3573 +3723 0 3567 +3717 0 3559 +3707 0 3549 +3695 726 3537 +3677 1846 3517 +3653 2209 3489 +3617 2459 3451 +3567 2663 3393 +3487 2843 3303 +3353 3007 3145 +3077 3163 2771 +0 3311 0 +0 3455 0 +0 3595 0 +0 3735 0 +0 3871 0 +0 4007 0 +3871 0 3711 +3871 0 3711 +3871 0 3711 +3871 0 3711 +3871 0 3711 +3871 0 3711 +3871 0 3711 +3871 0 3709 +3871 0 3709 +3869 0 3709 +3869 0 3707 +3867 0 3707 +3867 0 3705 +3863 0 3703 +3861 0 3699 +3857 0 3695 +3853 0 3689 +3845 0 3683 +3837 0 3671 +3823 0 3657 +3807 1909 3637 +3781 2311 3611 +3747 2575 3571 +3695 2785 3511 +3615 2969 3417 +3479 3135 3251 +3197 3291 2843 +0 3441 0 +0 3585 0 +0 3727 0 +0 3865 0 +0 4003 0 +4003 0 3837 +4003 0 3835 +4001 0 3835 +4001 0 3835 +4001 0 3835 +4001 0 3835 +4001 0 3835 +4001 0 3835 +4001 0 3835 +4001 0 3835 +3999 0 3833 +3999 0 3833 +3997 0 3831 +3997 0 3829 +3995 0 3827 +3991 0 3825 +3987 0 3819 +3983 0 3815 +3975 0 3807 +3967 0 3797 +3953 0 3781 +3935 1981 3761 +3911 2419 3733 +3875 2693 3693 +3823 2909 3633 +3743 3095 3535 +3607 3263 3363 +3321 3421 2925 +0 3571 0 +0 3715 0 +0 3857 0 +0 3997 0 +4095 0 3963 +4095 0 3963 +4095 0 3963 +4095 0 3963 +4095 0 3963 +4095 0 3963 +4095 0 3963 +4095 0 3963 +4095 0 3961 +4095 0 3961 +4095 0 3961 +4095 0 3961 +4095 0 3959 +4095 0 3957 +4095 0 3957 +4095 0 3953 +4095 0 3951 +4095 0 3947 +4095 0 3941 +4095 0 3933 +4095 0 3923 +4083 0 3907 +4067 2063 3887 +4041 2533 3859 +4005 2815 3817 +3953 3035 3755 +3873 3223 3657 +3735 3393 3479 +3447 3551 3015 +0 3701 0 +0 3847 0 +0 3989 0 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4089 +4095 0 4089 +4095 0 4089 +4095 0 4089 +4095 0 4087 +4095 0 4085 +4095 0 4085 +4095 0 4081 +4095 0 4079 +4095 0 4075 +4095 0 4069 +4095 0 4061 +4095 0 4049 +4095 0 4035 +4095 2153 4015 +4095 2651 3985 +4095 2941 3945 +4085 3163 3881 +4003 3351 3781 +3865 3523 3599 +3573 3681 3115 +0 3833 0 +0 3979 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2251 4095 +4095 2771 4095 +4095 3067 4071 +4095 3291 4009 +4095 3481 3907 +3995 3653 3723 +3701 3813 3219 +0 3963 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2357 4095 +4095 2895 4095 +4095 3195 4095 +4095 3421 4095 +4095 3611 4035 +4095 3783 3847 +3831 3943 3329 +2167 1722 2579 +2165 1725 2577 +2161 1729 2577 +2155 1734 2575 +2149 1741 2573 +2141 1749 2571 +2129 1761 2567 +2111 1776 2563 +2089 1795 2555 +2055 1820 2547 +2006 1851 2535 +1932 1890 2517 +1809 1937 2493 +1563 1992 2461 +119 2057 2411 +0 2133 2335 +0 2217 2209 +0 2309 1955 +0 2409 0 +0 2517 0 +0 2629 0 +0 2745 0 +0 2865 0 +0 2989 0 +0 3113 0 +0 3241 0 +0 3369 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2171 1722 2579 +2167 1724 2579 +2165 1728 2577 +2159 1733 2577 +2153 1740 2575 +2145 1749 2571 +2133 1761 2569 +2115 1776 2563 +2093 1795 2557 +2059 1820 2547 +2011 1851 2535 +1938 1889 2519 +1816 1936 2495 +1575 1992 2461 +351 2057 2413 +0 2133 2337 +0 2217 2211 +0 2309 1959 +0 2409 0 +0 2517 0 +0 2629 0 +0 2745 0 +0 2865 0 +0 2989 0 +0 3113 0 +0 3241 0 +0 3369 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2175 1721 2581 +2173 1724 2581 +2169 1728 2579 +2163 1733 2577 +2157 1740 2575 +2149 1748 2573 +2137 1760 2569 +2121 1775 2565 +2097 1795 2557 +2065 1819 2549 +2017 1850 2537 +1945 1889 2519 +1825 1936 2497 +1592 1992 2463 +546 2057 2413 +0 2133 2339 +0 2217 2213 +0 2309 1964 +0 2409 148 +0 2517 0 +0 2629 0 +0 2745 0 +0 2865 0 +0 2989 0 +0 3113 0 +0 3241 0 +0 3369 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2181 1720 2583 +2177 1723 2581 +2175 1727 2581 +2169 1732 2579 +2163 1739 2577 +2155 1748 2575 +2143 1759 2571 +2127 1774 2567 +2105 1794 2559 +2073 1819 2551 +2026 1850 2539 +1955 1888 2521 +1838 1935 2499 +1612 1991 2465 +720 2057 2417 +0 2133 2341 +0 2217 2217 +0 2309 1970 +0 2409 403 +0 2517 0 +0 2629 0 +0 2745 0 +0 2865 0 +0 2989 0 +0 3113 0 +0 3241 0 +0 3369 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2189 1719 2585 +2185 1722 2583 +2183 1726 2583 +2177 1731 2581 +2171 1738 2579 +2163 1747 2577 +2151 1758 2573 +2135 1774 2569 +2113 1793 2561 +2083 1818 2553 +2036 1849 2541 +1967 1888 2525 +1854 1935 2501 +1639 1991 2467 +881 2057 2419 +0 2131 2345 +0 2217 2223 +0 2309 1978 +0 2409 608 +0 2515 0 +0 2629 0 +0 2745 0 +0 2865 0 +0 2989 0 +0 3113 0 +0 3241 0 +0 3369 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2199 1718 2587 +2195 1721 2587 +2193 1724 2585 +2189 1730 2585 +2181 1736 2583 +2173 1745 2579 +2163 1757 2577 +2147 1772 2571 +2125 1792 2565 +2095 1817 2557 +2051 1848 2545 +1984 1887 2527 +1875 1934 2505 +1672 1990 2471 +1033 2055 2423 +0 2131 2349 +0 2215 2229 +0 2309 1989 +0 2409 789 +0 2515 0 +0 2627 0 +0 2745 0 +0 2865 0 +0 2987 0 +0 3113 0 +0 3241 0 +0 3369 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2211 1716 2591 +2209 1719 2591 +2205 1723 2589 +2201 1728 2587 +2195 1735 2587 +2187 1744 2583 +2177 1755 2579 +2161 1771 2575 +2141 1790 2569 +2111 1815 2561 +2069 1847 2549 +2004 1885 2531 +1901 1933 2509 +1712 1989 2477 +1180 2055 2429 +0 2131 2357 +0 2215 2237 +0 2307 2003 +0 2409 954 +0 2515 0 +0 2627 0 +0 2745 0 +0 2865 0 +0 2987 0 +0 3113 0 +0 3239 0 +0 3369 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2229 1713 2597 +2227 1716 2595 +2223 1720 2595 +2219 1725 2593 +2213 1732 2591 +2205 1741 2589 +2195 1753 2585 +2181 1768 2581 +2161 1788 2575 +2133 1813 2565 +2091 1845 2553 +2031 1884 2537 +1935 1931 2515 +1762 1988 2483 +1323 2053 2435 +0 2129 2365 +0 2215 2247 +0 2307 2021 +0 2407 1109 +0 2515 0 +0 2627 0 +0 2745 0 +0 2865 0 +0 2987 0 +0 3113 0 +0 3239 0 +0 3369 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2251 1710 2603 +2249 1713 2603 +2245 1716 2601 +2241 1722 2599 +2235 1729 2597 +2229 1738 2595 +2219 1750 2591 +2205 1765 2587 +2185 1785 2581 +2159 1810 2573 +2121 1842 2561 +2065 1881 2545 +1975 1929 2523 +1820 1986 2491 +1463 2053 2445 +0 2127 2375 +0 2213 2261 +0 2307 2044 +0 2407 1258 +0 2515 0 +0 2627 0 +0 2743 0 +0 2865 0 +0 2987 0 +0 3113 0 +0 3239 0 +0 3367 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2279 1705 2611 +2275 1708 2611 +2273 1712 2609 +2269 1717 2609 +2265 1724 2607 +2257 1733 2605 +2249 1745 2601 +2235 1761 2597 +2217 1781 2591 +2193 1806 2581 +2157 1838 2571 +2105 1878 2555 +2025 1926 2533 +1888 1983 2503 +1601 2049 2457 +0 2127 2389 +0 2211 2281 +0 2305 2073 +0 2407 1402 +0 2513 0 +0 2627 0 +0 2743 0 +0 2863 0 +0 2987 0 +0 3113 0 +0 3239 0 +0 3367 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2313 1698 2623 +2311 1701 2623 +2309 1706 2621 +2305 1711 2619 +2299 1718 2619 +2293 1727 2615 +2285 1739 2613 +2273 1755 2609 +2257 1776 2603 +2235 1801 2595 +2203 1834 2583 +2155 1874 2567 +2083 1922 2547 +1966 1980 2517 +1738 2047 2473 +801 2123 2409 +0 2209 2303 +0 2303 2109 +0 2405 1543 +0 2513 0 +0 2625 0 +0 2743 0 +0 2863 0 +0 2987 0 +0 3113 0 +0 3239 0 +0 3367 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2355 1690 2637 +2353 1693 2637 +2351 1697 2637 +2347 1702 2635 +2343 1710 2633 +2337 1719 2631 +2329 1732 2627 +2319 1748 2623 +2305 1768 2617 +2285 1794 2609 +2255 1827 2599 +2213 1868 2585 +2151 1917 2565 +2053 1975 2535 +1873 2043 2495 +1398 2121 2431 +0 2207 2333 +0 2301 2153 +0 2403 1682 +0 2511 0 +0 2625 0 +0 2741 0 +0 2863 0 +0 2987 0 +0 3111 0 +0 3239 0 +0 3367 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2407 1678 2657 +2405 1681 2657 +2403 1685 2655 +2399 1691 2655 +2395 1698 2653 +2391 1708 2651 +2383 1721 2647 +2375 1737 2643 +2361 1758 2637 +2343 1785 2631 +2319 1818 2619 +2283 1860 2605 +2229 1909 2587 +2147 1969 2559 +2007 2037 2521 +1708 2115 2461 +0 2203 2369 +0 2297 2207 +0 2401 1818 +0 2509 0 +0 2623 0 +0 2741 0 +0 2861 0 +0 2985 0 +0 3111 0 +0 3239 0 +0 3367 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2467 1661 2681 +2465 1665 2681 +2463 1669 2679 +2461 1675 2679 +2457 1683 2677 +2453 1693 2675 +2447 1706 2673 +2439 1723 2669 +2427 1744 2663 +2413 1772 2655 +2391 1806 2647 +2361 1849 2633 +2317 1900 2615 +2249 1960 2589 +2141 2030 2553 +1939 2109 2499 +1310 2197 2415 +0 2293 2269 +0 2397 1954 +0 2507 0 +0 2621 0 +0 2739 0 +0 2861 0 +0 2985 0 +0 3111 0 +0 3239 0 +0 3367 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2537 1638 2711 +2535 1642 2711 +2535 1646 2711 +2531 1653 2709 +2529 1661 2707 +2525 1671 2705 +2521 1685 2703 +2513 1703 2699 +2503 1725 2695 +2491 1754 2689 +2473 1790 2679 +2447 1834 2667 +2411 1886 2651 +2357 1948 2627 +2275 2020 2593 +2133 2101 2543 +1828 2191 2467 +0 2289 2341 +0 2393 2089 +0 2503 0 +0 2619 0 +0 2737 0 +0 2859 0 +0 2983 0 +0 3109 0 +0 3237 0 +0 3367 0 +0 3495 0 +0 3627 0 +0 3757 0 +0 3887 0 +0 4019 0 +2617 1606 2749 +2615 1609 2749 +2613 1614 2749 +2613 1621 2747 +2609 1630 2747 +2607 1641 2745 +2603 1656 2741 +2597 1674 2739 +2589 1699 2735 +2577 1729 2729 +2563 1767 2719 +2543 1813 2709 +2513 1868 2693 +2471 1932 2671 +2407 2006 2641 +2307 2089 2597 +2121 2181 2531 +1617 2281 2423 +0 2387 2223 +0 2499 1608 +0 2615 0 +0 2735 0 +0 2857 0 +0 2981 0 +0 3109 0 +0 3237 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2705 1558 2797 +2703 1562 2795 +2703 1568 2795 +2701 1575 2795 +2699 1584 2793 +2697 1597 2791 +2693 1613 2789 +2689 1634 2787 +2683 1660 2781 +2673 1693 2777 +2661 1734 2769 +2645 1783 2759 +2621 1841 2745 +2589 1909 2727 +2541 1987 2699 +2467 2073 2661 +2345 2169 2603 +2107 2271 2513 +914 2379 2357 +0 2491 1991 +0 2609 0 +0 2731 0 +0 2853 0 +0 2979 0 +0 3107 0 +0 3235 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +2801 1485 2851 +2801 1490 2851 +2799 1496 2851 +2799 1505 2849 +2797 1516 2849 +2795 1531 2847 +2791 1549 2845 +2787 1573 2843 +2783 1603 2839 +2775 1640 2835 +2767 1686 2827 +2753 1740 2819 +2735 1804 2807 +2709 1877 2791 +2673 1960 2767 +2619 2051 2735 +2537 2151 2685 +2393 2255 2613 +2085 2367 2489 +0 2483 2249 +0 2603 980 +0 2725 0 +0 2851 0 +0 2977 0 +0 3105 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +2905 1365 2917 +2903 1371 2915 +2903 1380 2915 +2903 1391 2915 +2901 1405 2913 +2899 1423 2913 +2897 1447 2911 +2895 1476 2909 +2891 1513 2905 +2885 1558 2901 +2877 1612 2895 +2867 1675 2889 +2853 1748 2877 +2833 1830 2863 +2805 1921 2845 +2767 2020 2817 +2707 2125 2777 +2615 2237 2717 +2451 2351 2623 +2055 2471 2455 +0 2593 2045 +0 2719 0 +0 2845 0 +0 2973 0 +0 3101 0 +0 3231 0 +0 3361 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +3013 1129 2991 +3013 1140 2991 +3013 1154 2989 +3013 1172 2989 +3011 1194 2989 +3009 1223 2987 +3009 1259 2987 +3005 1303 2985 +3003 1356 2981 +2999 1418 2979 +2993 1490 2973 +2985 1571 2967 +2973 1661 2959 +2959 1759 2947 +2939 1864 2931 +2909 1974 2907 +2867 2089 2875 +2803 2209 2827 +2701 2331 2755 +2517 2455 2637 +2010 2581 2405 +0 2709 1408 +0 2837 0 +0 2967 0 +0 3097 0 +0 3229 0 +0 3359 0 +0 3491 0 +0 3623 0 +0 3753 0 +0 3885 0 +0 4017 0 +3129 41 3075 +3129 145 3075 +3127 256 3073 +3127 371 3073 +3127 491 3073 +3125 613 3071 +3123 737 3071 +3123 864 3069 +3119 991 3067 +3117 1120 3063 +3111 1250 3059 +3105 1380 3055 +3097 1511 3047 +3087 1642 3037 +3071 1773 3025 +3049 1905 3007 +3019 2036 2981 +2973 2169 2943 +2907 2299 2889 +2797 2431 2803 +2593 2563 2655 +1943 2695 2327 +0 2827 0 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +3247 0 3167 +3247 0 3167 +3247 0 3165 +3245 0 3165 +3245 0 3165 +3245 0 3165 +3243 0 3163 +3241 0 3161 +3239 0 3161 +3237 0 3157 +3233 22 3155 +3229 832 3151 +3223 1172 3145 +3215 1414 3137 +3203 1614 3127 +3187 1791 3111 +3165 1954 3091 +3133 2109 3063 +3087 2255 3021 +3015 2399 2959 +2901 2539 2859 +2677 2677 2677 +1835 2815 2197 +0 2951 0 +0 3085 0 +0 3219 0 +0 3353 0 +0 3485 0 +0 3619 0 +0 3751 0 +0 3883 0 +0 4015 0 +3369 0 3267 +3369 0 3265 +3367 0 3265 +3367 0 3265 +3367 0 3265 +3367 0 3265 +3365 0 3263 +3365 0 3263 +3363 0 3261 +3361 0 3259 +3359 0 3257 +3355 0 3253 +3351 0 3249 +3343 492 3243 +3335 1242 3235 +3323 1575 3223 +3307 1814 3207 +3283 2013 3185 +3251 2189 3153 +3203 2351 3107 +3129 2505 3037 +3009 2653 2925 +2771 2797 2707 +1632 2937 1933 +0 3075 0 +0 3211 0 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3493 0 3373 +3493 0 3373 +3493 0 3373 +3491 0 3371 +3491 0 3371 +3491 0 3371 +3491 0 3371 +3489 0 3369 +3489 0 3369 +3487 0 3367 +3485 0 3365 +3483 0 3363 +3479 0 3359 +3473 0 3353 +3467 0 3347 +3459 805 3339 +3447 1516 3325 +3429 1844 3309 +3405 2081 3285 +3373 2279 3251 +3323 2455 3201 +3249 2617 3125 +3123 2771 2999 +2873 2917 2743 +999 3061 0 +0 3201 0 +0 3339 0 +0 3475 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3619 0 3485 +3619 0 3485 +3619 0 3483 +3617 0 3483 +3617 0 3483 +3617 0 3483 +3617 0 3483 +3617 0 3481 +3615 0 3481 +3615 0 3479 +3613 0 3479 +3611 0 3477 +3609 0 3473 +3605 0 3469 +3599 0 3465 +3593 0 3457 +3583 0 3449 +3571 1422 3435 +3555 1880 3417 +3531 2159 3393 +3497 2377 3357 +3447 2563 3303 +3369 2733 3223 +3241 2891 3083 +2979 3041 2787 +0 3187 0 +0 3329 0 +0 3467 0 +0 3605 0 +0 3741 0 +0 3877 0 +0 4011 0 +3745 0 3601 +3745 0 3601 +3745 0 3601 +3745 0 3601 +3745 0 3599 +3745 0 3599 +3745 0 3599 +3745 0 3599 +3743 0 3599 +3743 0 3597 +3741 0 3597 +3741 0 3595 +3739 0 3593 +3735 0 3589 +3731 0 3585 +3727 0 3581 +3721 0 3573 +3711 0 3563 +3699 1258 3549 +3681 1924 3531 +3657 2245 3505 +3623 2481 3467 +3571 2677 3413 +3493 2853 3325 +3363 3015 3177 +3093 3167 2841 +0 3315 0 +0 3457 0 +0 3597 0 +0 3735 0 +0 3873 0 +0 4007 0 +3875 0 3721 +3875 0 3721 +3875 0 3721 +3875 0 3721 +3875 0 3719 +3873 0 3719 +3873 0 3719 +3873 0 3719 +3873 0 3719 +3873 0 3717 +3871 0 3717 +3871 0 3715 +3869 0 3715 +3867 0 3711 +3863 0 3709 +3861 0 3705 +3855 0 3699 +3849 0 3693 +3839 0 3681 +3827 858 3669 +3809 1978 3649 +3785 2341 3623 +3749 2591 3583 +3699 2795 3525 +3619 2975 3435 +3485 3139 3277 +3209 3295 2903 +0 3443 0 +0 3587 0 +0 3727 0 +0 3867 0 +0 4003 0 +4005 0 3843 +4005 0 3843 +4003 0 3843 +4003 0 3843 +4003 0 3843 +4003 0 3843 +4003 0 3843 +4003 0 3843 +4003 0 3841 +4003 0 3841 +4001 0 3841 +4001 0 3839 +3999 0 3839 +3999 0 3837 +3997 0 3835 +3993 0 3831 +3989 0 3827 +3985 0 3821 +3977 0 3815 +3969 0 3803 +3955 0 3789 +3939 2041 3771 +3913 2443 3743 +3879 2707 3703 +3827 2917 3643 +3747 3101 3549 +3611 3267 3383 +3329 3423 2977 +0 3573 0 +0 3717 0 +0 3859 0 +0 3997 0 +4095 0 3969 +4095 0 3969 +4095 0 3969 +4095 0 3969 +4095 0 3967 +4095 0 3967 +4095 0 3967 +4095 0 3967 +4095 0 3967 +4095 0 3967 +4095 0 3967 +4095 0 3965 +4095 0 3965 +4095 0 3963 +4095 0 3961 +4095 0 3959 +4095 0 3957 +4095 0 3951 +4095 0 3947 +4095 0 3939 +4095 0 3929 +4085 0 3913 +4067 2113 3893 +4043 2551 3865 +4007 2825 3825 +3955 3041 3765 +3875 3227 3667 +3739 3395 3495 +3453 3553 3057 +0 3703 0 +0 3849 0 +0 3989 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4093 +4095 0 4093 +4095 0 4093 +4095 0 4093 +4095 0 4091 +4095 0 4089 +4095 0 4089 +4095 0 4085 +4095 0 4083 +4095 0 4079 +4095 0 4073 +4095 0 4065 +4095 0 4055 +4095 0 4039 +4095 2195 4019 +4095 2665 3991 +4095 2947 3949 +4085 3167 3887 +4005 3355 3789 +3867 3525 3611 +3579 3683 3149 +0 3833 0 +0 3979 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2285 4095 +4095 2783 4095 +4095 3073 4077 +4095 3295 4013 +4095 3483 3913 +3997 3655 3731 +3705 3813 3247 +0 3965 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2383 4095 +4095 2905 4095 +4095 3199 4095 +4095 3423 4095 +4095 3613 4039 +4095 3785 3855 +3833 3945 3351 +2299 1852 2711 +2297 1854 2711 +2293 1857 2709 +2291 1861 2709 +2285 1866 2707 +2279 1873 2705 +2269 1882 2703 +2257 1893 2699 +2241 1909 2693 +2217 1928 2687 +2183 1953 2679 +2135 1984 2665 +2059 2022 2649 +1935 2069 2625 +1685 2125 2591 +0 2191 2541 +0 2265 2467 +0 2349 2339 +0 2441 2085 +0 2543 0 +0 2649 0 +0 2761 0 +0 2877 0 +0 2997 0 +0 3121 0 +0 3245 0 +0 3373 0 +0 3501 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2301 1852 2711 +2299 1854 2711 +2297 1857 2711 +2293 1861 2709 +2287 1866 2707 +2281 1873 2705 +2273 1882 2703 +2261 1893 2699 +2243 1908 2695 +2221 1928 2687 +2187 1952 2679 +2139 1983 2667 +2065 2022 2649 +1941 2069 2627 +1695 2125 2593 +251 2191 2543 +0 2265 2467 +0 2349 2341 +0 2441 2087 +0 2541 0 +0 2649 0 +0 2761 0 +0 2877 0 +0 2997 0 +0 3121 0 +0 3245 0 +0 3373 0 +0 3501 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2305 1851 2713 +2303 1854 2711 +2299 1857 2711 +2297 1860 2709 +2291 1866 2709 +2285 1872 2707 +2277 1881 2703 +2265 1893 2701 +2247 1908 2695 +2225 1927 2689 +2191 1952 2679 +2143 1983 2667 +2069 2022 2651 +1948 2069 2627 +1708 2125 2593 +483 2189 2545 +0 2265 2469 +0 2349 2343 +0 2441 2091 +0 2541 0 +0 2649 0 +0 2761 0 +0 2877 0 +0 2997 0 +0 3121 0 +0 3245 0 +0 3373 0 +0 3501 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2309 1851 2713 +2307 1853 2713 +2305 1856 2713 +2301 1860 2711 +2295 1865 2709 +2289 1872 2707 +2281 1881 2705 +2269 1892 2701 +2253 1907 2697 +2229 1927 2691 +2197 1951 2681 +2149 1983 2669 +2077 2021 2653 +1958 2069 2629 +1724 2125 2595 +678 2189 2547 +0 2265 2471 +0 2349 2345 +0 2441 2095 +0 2541 280 +0 2649 0 +0 2761 0 +0 2877 0 +0 2997 0 +0 3121 0 +0 3245 0 +0 3373 0 +0 3501 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2315 1850 2715 +2313 1852 2715 +2311 1855 2713 +2307 1859 2713 +2301 1864 2711 +2295 1871 2709 +2287 1880 2707 +2275 1891 2703 +2259 1907 2699 +2237 1926 2691 +2205 1951 2683 +2157 1982 2671 +2087 2021 2653 +1970 2067 2631 +1744 2123 2597 +852 2189 2549 +0 2265 2473 +0 2349 2349 +0 2441 2101 +0 2541 535 +0 2649 0 +0 2761 0 +0 2877 0 +0 2997 0 +0 3121 0 +0 3245 0 +0 3373 0 +0 3501 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2323 1849 2717 +2321 1851 2717 +2317 1854 2715 +2315 1858 2715 +2309 1863 2713 +2303 1870 2711 +2295 1879 2709 +2283 1890 2705 +2267 1906 2701 +2245 1925 2693 +2215 1950 2685 +2169 1981 2673 +2099 2020 2657 +1986 2067 2633 +1771 2123 2599 +1013 2189 2551 +0 2263 2477 +0 2349 2355 +0 2441 2111 +0 2541 741 +0 2649 0 +0 2761 0 +0 2877 0 +0 2997 0 +0 3121 0 +0 3245 0 +0 3373 0 +0 3501 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2333 1848 2721 +2331 1850 2719 +2327 1853 2719 +2325 1857 2717 +2321 1862 2717 +2315 1869 2715 +2305 1877 2711 +2295 1889 2709 +2279 1904 2703 +2257 1924 2697 +2227 1949 2689 +2183 1980 2677 +2115 2019 2659 +2007 2065 2637 +1804 2123 2603 +1166 2187 2555 +0 2263 2483 +0 2347 2361 +0 2441 2121 +0 2541 921 +0 2647 0 +0 2761 0 +0 2877 0 +0 2997 0 +0 3121 0 +0 3245 0 +0 3373 0 +0 3501 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2345 1846 2725 +2343 1848 2723 +2341 1851 2723 +2337 1855 2721 +2333 1860 2721 +2327 1867 2719 +2319 1876 2715 +2309 1887 2713 +2293 1903 2707 +2273 1922 2701 +2243 1947 2693 +2201 1979 2681 +2137 2017 2663 +2034 2065 2641 +1845 2121 2609 +1312 2187 2561 +0 2263 2489 +0 2347 2369 +0 2441 2135 +0 2541 1086 +0 2647 0 +0 2759 0 +0 2877 0 +0 2997 0 +0 3119 0 +0 3245 0 +0 3373 0 +0 3501 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2363 1843 2729 +2361 1845 2729 +2359 1848 2727 +2355 1852 2727 +2351 1857 2725 +2345 1864 2723 +2337 1873 2721 +2327 1885 2717 +2313 1900 2713 +2293 1920 2707 +2265 1945 2697 +2223 1977 2685 +2163 2016 2669 +2067 2063 2647 +1894 2119 2615 +1455 2185 2569 +0 2261 2497 +0 2347 2379 +0 2439 2153 +0 2539 1241 +0 2647 0 +0 2759 0 +0 2877 0 +0 2997 0 +0 3119 0 +0 3245 0 +0 3371 0 +0 3501 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2385 1839 2735 +2383 1842 2735 +2381 1845 2735 +2377 1849 2733 +2373 1854 2731 +2367 1861 2729 +2361 1870 2727 +2351 1882 2725 +2337 1897 2719 +2319 1917 2713 +2291 1942 2705 +2253 1974 2693 +2197 2013 2677 +2107 2061 2655 +1952 2117 2623 +1595 2185 2577 +0 2261 2507 +0 2345 2393 +0 2439 2175 +0 2539 1390 +0 2647 0 +0 2759 0 +0 2875 0 +0 2997 0 +0 3119 0 +0 3245 0 +0 3371 0 +0 3501 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2411 1835 2745 +2411 1837 2743 +2409 1840 2743 +2405 1844 2743 +2401 1849 2741 +2397 1856 2739 +2389 1865 2737 +2381 1877 2733 +2367 1893 2729 +2349 1913 2723 +2325 1939 2715 +2289 1971 2703 +2237 2010 2687 +2157 2059 2665 +2020 2115 2635 +1733 2181 2589 +0 2259 2523 +0 2343 2413 +0 2437 2205 +0 2539 1534 +0 2645 0 +0 2759 0 +0 2875 0 +0 2997 0 +0 3119 0 +0 3245 0 +0 3371 0 +0 3499 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2447 1828 2755 +2445 1831 2755 +2443 1834 2755 +2441 1838 2753 +2437 1843 2753 +2433 1850 2751 +2425 1859 2747 +2417 1872 2745 +2405 1887 2741 +2389 1908 2735 +2367 1933 2727 +2335 1966 2715 +2287 2006 2701 +2215 2055 2679 +2099 2111 2649 +1870 2179 2605 +933 2255 2541 +0 2341 2435 +0 2435 2241 +0 2537 1675 +0 2645 0 +0 2757 0 +0 2875 0 +0 2995 0 +0 3119 0 +0 3245 0 +0 3371 0 +0 3499 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2489 1819 2771 +2487 1822 2771 +2485 1825 2769 +2483 1829 2769 +2479 1835 2767 +2475 1842 2765 +2469 1851 2763 +2463 1864 2759 +2451 1880 2755 +2437 1900 2749 +2417 1926 2741 +2387 1959 2731 +2347 2000 2717 +2283 2049 2697 +2185 2107 2667 +2005 2175 2627 +1530 2253 2565 +0 2339 2465 +0 2433 2285 +0 2535 1814 +0 2643 0 +0 2757 0 +0 2873 0 +0 2995 0 +0 3119 0 +0 3245 0 +0 3371 0 +0 3499 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2539 1807 2789 +2539 1810 2789 +2537 1813 2789 +2535 1817 2787 +2531 1823 2787 +2529 1830 2785 +2523 1840 2783 +2515 1853 2779 +2507 1869 2775 +2493 1890 2769 +2475 1917 2763 +2451 1951 2753 +2415 1992 2739 +2361 2042 2719 +2279 2101 2691 +2139 2169 2653 +1840 2247 2593 +0 2335 2501 +0 2431 2339 +0 2533 1951 +0 2641 0 +0 2755 0 +0 2873 0 +0 2993 0 +0 3117 0 +0 3243 0 +0 3371 0 +0 3499 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2599 1791 2813 +2599 1793 2813 +2597 1797 2813 +2595 1801 2811 +2593 1807 2811 +2589 1815 2809 +2585 1825 2807 +2579 1838 2805 +2571 1855 2801 +2559 1877 2795 +2545 1904 2789 +2523 1938 2779 +2493 1981 2765 +2449 2032 2747 +2381 2093 2721 +2273 2163 2685 +2071 2241 2631 +1442 2329 2547 +0 2425 2401 +0 2529 2087 +0 2639 0 +0 2753 0 +0 2871 0 +0 2993 0 +0 3117 0 +0 3243 0 +0 3371 0 +0 3499 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2669 1768 2845 +2669 1770 2845 +2667 1774 2843 +2667 1779 2843 +2665 1785 2841 +2661 1793 2841 +2657 1803 2839 +2653 1817 2835 +2645 1835 2831 +2635 1857 2827 +2623 1886 2821 +2605 1922 2811 +2579 1966 2799 +2543 2018 2783 +2489 2081 2759 +2407 2153 2725 +2265 2233 2675 +1960 2323 2601 +0 2421 2475 +0 2525 2221 +0 2635 0 +0 2751 0 +0 2869 0 +0 2991 0 +0 3115 0 +0 3241 0 +0 3369 0 +0 3499 0 +0 3627 0 +0 3759 0 +0 3889 0 +0 4021 0 +2749 1735 2883 +2749 1738 2883 +2747 1742 2881 +2747 1747 2881 +2745 1753 2879 +2741 1762 2879 +2739 1773 2877 +2735 1788 2875 +2729 1807 2871 +2721 1831 2867 +2709 1861 2861 +2695 1899 2853 +2675 1945 2841 +2645 2000 2825 +2603 2065 2805 +2539 2139 2773 +2439 2221 2729 +2253 2313 2663 +1749 2413 2555 +0 2519 2355 +0 2631 1740 +0 2747 0 +0 2867 0 +0 2989 0 +0 3113 0 +0 3241 0 +0 3369 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2837 1687 2929 +2837 1690 2929 +2835 1694 2927 +2835 1700 2927 +2833 1707 2927 +2831 1717 2925 +2829 1729 2923 +2825 1745 2921 +2821 1766 2919 +2815 1792 2915 +2805 1825 2909 +2793 1866 2901 +2777 1915 2891 +2753 1974 2877 +2721 2042 2859 +2673 2119 2831 +2599 2205 2793 +2477 2301 2735 +2239 2403 2647 +1046 2511 2489 +0 2623 2123 +0 2741 0 +0 2863 0 +0 2987 0 +0 3111 0 +0 3239 0 +0 3367 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +2933 1614 2983 +2933 1617 2983 +2933 1622 2983 +2931 1629 2983 +2931 1637 2981 +2929 1648 2981 +2927 1663 2979 +2923 1681 2977 +2921 1705 2975 +2915 1735 2971 +2907 1772 2967 +2899 1818 2959 +2885 1872 2951 +2867 1936 2939 +2841 2009 2923 +2805 2093 2899 +2751 2183 2867 +2669 2283 2817 +2525 2389 2745 +2217 2499 2621 +0 2615 2381 +0 2735 1111 +0 2857 0 +0 2983 0 +0 3109 0 +0 3237 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +3037 1492 3049 +3037 1497 3049 +3037 1503 3049 +3035 1512 3047 +3035 1523 3047 +3033 1537 3045 +3031 1555 3045 +3029 1579 3043 +3027 1608 3041 +3023 1645 3037 +3017 1690 3033 +3009 1744 3027 +2999 1807 3021 +2985 1880 3011 +2965 1962 2995 +2937 2053 2977 +2899 2151 2949 +2839 2257 2909 +2747 2369 2849 +2583 2483 2755 +2187 2603 2587 +0 2725 2177 +0 2851 0 +0 2977 0 +0 3105 0 +0 3233 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +3147 1253 3123 +3147 1261 3123 +3145 1272 3123 +3145 1286 3123 +3145 1304 3121 +3143 1327 3121 +3143 1355 3119 +3141 1391 3119 +3137 1435 3117 +3135 1488 3113 +3131 1550 3111 +3125 1622 3105 +3117 1703 3099 +3105 1793 3091 +3091 1891 3079 +3071 1996 3063 +3041 2107 3039 +2999 2221 3007 +2935 2341 2959 +2835 2463 2887 +2649 2587 2769 +2143 2713 2537 +0 2841 1540 +0 2969 0 +0 3099 0 +0 3229 0 +0 3361 0 +0 3491 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4017 0 +3261 75 3207 +3261 173 3207 +3261 278 3207 +3259 388 3205 +3259 504 3205 +3259 623 3205 +3257 745 3203 +3255 869 3203 +3255 996 3201 +3251 1123 3199 +3249 1252 3195 +3243 1382 3193 +3237 1512 3187 +3229 1643 3179 +3219 1774 3169 +3203 1905 3157 +3181 2037 3139 +3151 2169 3113 +3105 2301 3075 +3039 2433 3021 +2929 2563 2935 +2725 2695 2787 +2075 2829 2459 +0 2961 0 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +3379 0 3299 +3379 0 3299 +3379 0 3299 +3379 0 3299 +3377 0 3297 +3377 0 3297 +3377 0 3297 +3375 0 3295 +3375 0 3295 +3373 0 3293 +3369 0 3289 +3367 154 3287 +3361 964 3283 +3355 1304 3277 +3347 1546 3269 +3335 1746 3259 +3319 1923 3243 +3297 2087 3223 +3265 2241 3195 +3219 2387 3153 +3147 2531 3091 +3033 2671 2991 +2811 2811 2811 +1967 2947 2331 +0 3083 0 +0 3217 0 +0 3351 0 +0 3485 0 +0 3617 0 +0 3751 0 +0 3883 0 +0 4015 0 +3501 0 3399 +3501 0 3399 +3501 0 3399 +3501 0 3397 +3499 0 3397 +3499 0 3397 +3499 0 3397 +3497 0 3395 +3497 0 3395 +3495 0 3393 +3493 0 3391 +3491 0 3389 +3487 0 3385 +3483 0 3381 +3477 624 3375 +3467 1374 3367 +3455 1707 3355 +3439 1946 3339 +3415 2145 3317 +3383 2321 3285 +3335 2483 3239 +3261 2637 3169 +3141 2785 3057 +2903 2929 2839 +1764 3069 2065 +0 3207 0 +0 3343 0 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4013 0 +3625 0 3505 +3625 0 3505 +3625 0 3505 +3625 0 3505 +3623 0 3503 +3623 0 3503 +3623 0 3503 +3623 0 3503 +3621 0 3501 +3621 0 3501 +3619 0 3499 +3617 0 3497 +3615 0 3495 +3611 0 3491 +3607 0 3485 +3599 0 3479 +3591 937 3471 +3579 1648 3459 +3561 1976 3441 +3539 2213 3417 +3505 2411 3383 +3455 2587 3335 +3381 2749 3259 +3255 2903 3131 +3005 3049 2875 +1131 3193 0 +0 3333 0 +0 3471 0 +0 3607 0 +0 3743 0 +0 3877 0 +0 4011 0 +3751 0 3617 +3751 0 3617 +3751 0 3617 +3751 0 3617 +3751 0 3615 +3749 0 3615 +3749 0 3615 +3749 0 3615 +3749 0 3615 +3747 0 3613 +3747 0 3613 +3745 0 3611 +3743 0 3609 +3741 0 3605 +3737 0 3601 +3731 0 3597 +3725 0 3589 +3717 0 3581 +3703 1555 3567 +3687 2012 3549 +3663 2291 3525 +3629 2509 3489 +3579 2695 3437 +3501 2865 3355 +3373 3023 3215 +3111 3173 2919 +0 3319 0 +0 3461 0 +0 3601 0 +0 3737 0 +0 3873 0 +0 4009 0 +3879 0 3733 +3879 0 3733 +3877 0 3733 +3877 0 3733 +3877 0 3733 +3877 0 3733 +3877 0 3731 +3877 0 3731 +3877 0 3731 +3875 0 3731 +3875 0 3729 +3873 0 3729 +3873 0 3727 +3871 0 3725 +3867 0 3721 +3863 0 3717 +3859 0 3713 +3853 0 3705 +3843 0 3695 +3831 1390 3681 +3813 2057 3663 +3789 2379 3637 +3755 2613 3599 +3703 2809 3545 +3625 2985 3457 +3495 3147 3309 +3225 3299 2973 +0 3447 0 +0 3589 0 +0 3729 0 +0 3867 0 +0 4005 0 +4007 0 3853 +4007 0 3853 +4007 0 3853 +4007 0 3853 +4007 0 3853 +4007 0 3853 +4007 0 3851 +4005 0 3851 +4005 0 3851 +4005 0 3851 +4005 0 3851 +4003 0 3849 +4003 0 3847 +4001 0 3847 +3999 0 3843 +3997 0 3841 +3993 0 3837 +3987 0 3831 +3981 0 3825 +3971 0 3815 +3959 990 3801 +3941 2109 3781 +3917 2473 3755 +3881 2723 3715 +3831 2927 3657 +3751 3107 3567 +3619 3271 3409 +3341 3427 3035 +0 3575 0 +0 3719 0 +0 3861 0 +0 3999 0 +4095 0 3975 +4095 0 3975 +4095 0 3975 +4095 0 3975 +4095 0 3975 +4095 0 3975 +4095 0 3975 +4095 0 3975 +4095 0 3975 +4095 0 3973 +4095 0 3973 +4095 0 3973 +4095 0 3971 +4095 0 3971 +4095 0 3969 +4095 0 3967 +4095 0 3963 +4095 0 3959 +4095 0 3953 +4095 0 3947 +4095 0 3935 +4087 0 3921 +4071 2173 3903 +4045 2575 3875 +4011 2839 3835 +3959 3049 3775 +3879 3233 3681 +3743 3399 3515 +3461 3555 3109 +0 3705 0 +0 3849 0 +0 3991 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4093 +4095 0 4091 +4095 0 4089 +4095 0 4085 +4095 0 4079 +4095 0 4071 +4095 0 4061 +4095 0 4045 +4095 2245 4025 +4095 2683 3997 +4095 2959 3957 +4087 3173 3897 +4007 3359 3799 +3871 3527 3627 +3585 3685 3189 +0 3835 0 +0 3981 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2327 4095 +4095 2797 4095 +4095 3081 4081 +4095 3299 4019 +4095 3487 3921 +3999 3657 3743 +3711 3815 3281 +0 3965 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2417 4095 +4095 2915 4095 +4095 3205 4095 +4095 3427 4095 +4095 3615 4045 +4095 3787 3865 +3837 3945 3379 +2431 1983 2843 +2429 1985 2843 +2427 1987 2841 +2425 1990 2841 +2421 1994 2839 +2415 1999 2839 +2409 2005 2837 +2401 2014 2833 +2387 2026 2831 +2371 2041 2825 +2347 2061 2819 +2313 2085 2809 +2265 2115 2797 +2189 2155 2781 +2063 2201 2757 +1810 2257 2723 +0 2323 2673 +0 2397 2597 +0 2481 2471 +0 2575 2215 +0 2675 0 +0 2781 0 +0 2893 0 +0 3009 0 +0 3129 0 +0 3253 0 +0 3377 0 +0 3505 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4021 0 +2433 1983 2843 +2431 1984 2843 +2429 1987 2843 +2425 1989 2841 +2423 1993 2841 +2417 1998 2839 +2411 2005 2837 +2403 2014 2835 +2389 2026 2831 +2373 2041 2825 +2349 2061 2819 +2317 2085 2811 +2267 2115 2797 +2193 2155 2781 +2067 2201 2757 +1818 2257 2723 +69 2323 2675 +0 2397 2599 +0 2481 2471 +0 2575 2217 +0 2675 0 +0 2781 0 +0 2893 0 +0 3009 0 +0 3129 0 +0 3253 0 +0 3377 0 +0 3505 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4021 0 +2435 1982 2845 +2433 1984 2843 +2431 1986 2843 +2429 1989 2843 +2425 1993 2841 +2421 1998 2839 +2413 2005 2837 +2405 2014 2835 +2393 2025 2831 +2375 2040 2827 +2353 2059 2819 +2319 2085 2811 +2271 2115 2799 +2197 2153 2781 +2073 2201 2759 +1827 2257 2725 +383 2323 2675 +0 2397 2599 +0 2481 2473 +0 2573 2219 +0 2675 0 +0 2781 0 +0 2893 0 +0 3009 0 +0 3129 0 +0 3253 0 +0 3377 0 +0 3505 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4021 0 +2437 1982 2845 +2437 1984 2845 +2435 1986 2843 +2431 1989 2843 +2429 1993 2843 +2423 1998 2841 +2417 2004 2839 +2409 2013 2835 +2397 2025 2833 +2379 2040 2827 +2357 2059 2821 +2323 2085 2811 +2275 2115 2799 +2201 2153 2783 +2081 2201 2759 +1840 2257 2725 +615 2321 2677 +0 2397 2601 +0 2481 2475 +0 2573 2223 +0 2673 39 +0 2781 0 +0 2893 0 +0 3009 0 +0 3129 0 +0 3253 0 +0 3377 0 +0 3505 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4021 0 +2443 1981 2847 +2441 1983 2845 +2439 1985 2845 +2437 1988 2845 +2433 1992 2843 +2429 1997 2841 +2421 2004 2839 +2413 2013 2837 +2401 2024 2833 +2385 2039 2829 +2361 2059 2823 +2329 2083 2813 +2281 2115 2801 +2209 2153 2785 +2089 2201 2761 +1856 2257 2727 +810 2321 2679 +0 2397 2603 +0 2481 2477 +0 2573 2227 +0 2673 413 +0 2781 0 +0 2893 0 +0 3009 0 +0 3129 0 +0 3253 0 +0 3377 0 +0 3505 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4021 0 +2449 1981 2847 +2447 1982 2847 +2445 1984 2847 +2443 1987 2845 +2439 1991 2845 +2435 1996 2843 +2427 2003 2841 +2419 2012 2839 +2407 2024 2835 +2391 2039 2831 +2369 2059 2823 +2337 2083 2815 +2289 2115 2803 +2219 2153 2787 +2103 2199 2763 +1877 2255 2729 +984 2321 2681 +0 2397 2605 +0 2481 2481 +0 2573 2235 +0 2673 667 +0 2781 0 +0 2893 0 +0 3009 0 +0 3129 0 +0 3253 0 +0 3377 0 +0 3505 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4021 0 +2455 1979 2849 +2455 1981 2849 +2453 1983 2849 +2449 1986 2849 +2447 1990 2847 +2441 1995 2845 +2435 2002 2843 +2427 2011 2841 +2415 2023 2837 +2399 2038 2833 +2377 2057 2827 +2347 2083 2817 +2301 2113 2805 +2231 2151 2789 +2119 2199 2765 +1903 2255 2733 +1145 2321 2683 +0 2395 2609 +0 2481 2487 +0 2573 2243 +0 2673 873 +0 2781 0 +0 2893 0 +0 3009 0 +0 3129 0 +0 3253 0 +0 3377 0 +0 3505 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4021 0 +2465 1978 2853 +2465 1980 2853 +2463 1982 2851 +2461 1985 2851 +2457 1989 2849 +2453 1994 2849 +2447 2001 2847 +2437 2010 2843 +2427 2021 2841 +2411 2036 2835 +2389 2057 2829 +2359 2081 2821 +2315 2113 2809 +2247 2151 2791 +2139 2199 2769 +1936 2255 2735 +1298 2321 2687 +0 2395 2615 +0 2479 2493 +0 2573 2253 +0 2673 1053 +0 2779 0 +0 2893 0 +0 3009 0 +0 3129 0 +0 3253 0 +0 3377 0 +0 3505 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4021 0 +2479 1976 2857 +2477 1978 2857 +2475 1980 2855 +2473 1983 2855 +2471 1987 2853 +2465 1992 2853 +2459 1999 2851 +2451 2008 2847 +2441 2020 2845 +2425 2035 2839 +2405 2055 2833 +2375 2079 2825 +2333 2111 2813 +2269 2149 2797 +2165 2197 2773 +1977 2253 2741 +1445 2319 2693 +0 2395 2621 +0 2479 2501 +0 2573 2267 +0 2673 1218 +0 2779 0 +0 2891 0 +0 3009 0 +0 3129 0 +0 3253 0 +0 3377 0 +0 3505 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4021 0 +2495 1973 2861 +2495 1975 2861 +2493 1977 2861 +2491 1980 2859 +2487 1984 2859 +2483 1989 2857 +2477 1996 2855 +2469 2005 2853 +2459 2017 2849 +2445 2032 2845 +2425 2053 2839 +2397 2077 2829 +2357 2109 2819 +2295 2147 2801 +2199 2195 2779 +2026 2251 2747 +1587 2317 2701 +0 2393 2629 +0 2479 2511 +0 2571 2285 +0 2673 1373 +0 2779 0 +0 2891 0 +0 3009 0 +0 3129 0 +0 3251 0 +0 3377 0 +0 3505 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4021 0 +2517 1970 2869 +2517 1972 2867 +2515 1974 2867 +2513 1977 2867 +2509 1981 2865 +2505 1986 2863 +2501 1993 2863 +2493 2002 2859 +2483 2014 2857 +2469 2029 2851 +2451 2049 2845 +2423 2075 2837 +2385 2107 2825 +2329 2145 2809 +2239 2193 2787 +2085 2249 2755 +1727 2317 2709 +0 2393 2639 +0 2477 2527 +0 2571 2309 +0 2671 1522 +0 2779 0 +0 2891 0 +0 3009 0 +0 3129 0 +0 3251 0 +0 3377 0 +0 3503 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4021 0 +2545 1965 2877 +2543 1967 2877 +2543 1969 2875 +2541 1972 2875 +2537 1976 2875 +2533 1981 2873 +2529 1988 2871 +2521 1998 2869 +2513 2010 2865 +2499 2025 2861 +2481 2045 2855 +2457 2071 2847 +2421 2103 2835 +2369 2143 2819 +2289 2191 2797 +2153 2247 2767 +1865 2315 2721 +0 2391 2655 +0 2475 2545 +0 2569 2337 +0 2671 1666 +0 2777 0 +0 2891 0 +0 3007 0 +0 3129 0 +0 3251 0 +0 3377 0 +0 3503 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4021 0 +2579 1959 2889 +2579 1960 2887 +2577 1963 2887 +2575 1966 2887 +2573 1970 2885 +2569 1975 2885 +2565 1982 2883 +2557 1992 2881 +2549 2004 2877 +2537 2019 2873 +2521 2040 2867 +2499 2065 2859 +2467 2097 2847 +2419 2137 2833 +2347 2187 2811 +2231 2243 2781 +2002 2311 2737 +1065 2387 2673 +0 2473 2567 +0 2567 2373 +0 2669 1807 +0 2777 0 +0 2889 0 +0 3007 0 +0 3127 0 +0 3251 0 +0 3377 0 +0 3503 0 +0 3631 0 +0 3761 0 +0 3891 0 +0 4021 0 +2621 1950 2903 +2621 1952 2903 +2619 1954 2903 +2617 1957 2901 +2615 1961 2901 +2611 1967 2899 +2607 1974 2897 +2601 1983 2895 +2595 1996 2891 +2583 2012 2887 +2569 2032 2881 +2549 2059 2875 +2519 2091 2863 +2479 2131 2849 +2415 2181 2829 +2317 2239 2799 +2137 2307 2759 +1662 2385 2697 +0 2471 2597 +0 2565 2417 +0 2667 1946 +0 2775 0 +0 2889 0 +0 3007 0 +0 3127 0 +0 3251 0 +0 3377 0 +0 3503 0 +0 3631 0 +0 3761 0 +0 3891 0 +0 4021 0 +2673 1938 2923 +2671 1940 2921 +2671 1942 2921 +2669 1945 2921 +2667 1949 2919 +2663 1955 2919 +2661 1962 2917 +2655 1972 2915 +2649 1985 2911 +2639 2001 2907 +2625 2022 2901 +2607 2049 2895 +2583 2083 2885 +2547 2123 2871 +2493 2173 2851 +2411 2233 2823 +2271 2301 2785 +1972 2379 2725 +0 2467 2633 +0 2563 2471 +0 2665 2083 +0 2773 0 +0 2887 0 +0 3005 0 +0 3127 0 +0 3249 0 +0 3375 0 +0 3503 0 +0 3631 0 +0 3761 0 +0 3891 0 +0 4021 0 +2733 1921 2947 +2731 1923 2947 +2731 1926 2945 +2729 1929 2945 +2727 1933 2945 +2725 1939 2943 +2721 1947 2941 +2717 1957 2939 +2711 1970 2937 +2703 1987 2933 +2693 2009 2927 +2677 2036 2921 +2655 2071 2911 +2625 2113 2897 +2581 2163 2879 +2513 2225 2853 +2405 2295 2817 +2203 2373 2763 +1574 2461 2679 +0 2559 2533 +0 2661 2219 +0 2771 0 +0 2885 0 +0 3003 0 +0 3125 0 +0 3249 0 +0 3375 0 +0 3503 0 +0 3631 0 +0 3761 0 +0 3891 0 +0 4021 0 +2803 1898 2977 +2801 1900 2977 +2801 1903 2977 +2799 1906 2975 +2799 1911 2975 +2797 1917 2973 +2793 1925 2973 +2789 1935 2971 +2785 1949 2967 +2777 1967 2963 +2767 1990 2959 +2755 2018 2953 +2737 2055 2943 +2711 2097 2931 +2675 2151 2915 +2621 2213 2891 +2539 2285 2857 +2397 2365 2807 +2093 2455 2733 +0 2553 2607 +0 2657 2353 +0 2767 0 +0 2883 0 +0 3001 0 +0 3123 0 +0 3247 0 +0 3375 0 +0 3501 0 +0 3631 0 +0 3761 0 +0 3891 0 +0 4021 0 +2881 1865 3015 +2881 1867 3015 +2881 1870 3015 +2879 1874 3013 +2879 1879 3013 +2877 1885 3011 +2875 1894 3011 +2871 1905 3009 +2867 1920 3007 +2861 1939 3003 +2853 1963 2999 +2843 1993 2993 +2827 2031 2985 +2807 2077 2973 +2777 2131 2957 +2735 2197 2937 +2673 2271 2905 +2571 2353 2861 +2387 2445 2795 +1882 2545 2687 +0 2651 2487 +0 2763 1872 +0 2879 0 +0 2999 0 +0 3121 0 +0 3247 0 +0 3373 0 +0 3501 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +2969 1817 3061 +2969 1819 3061 +2969 1822 3061 +2969 1826 3059 +2967 1832 3059 +2965 1839 3059 +2963 1849 3057 +2961 1861 3055 +2957 1877 3053 +2953 1898 3051 +2947 1924 3047 +2937 1957 3041 +2925 1998 3033 +2909 2047 3023 +2885 2105 3009 +2853 2173 2991 +2805 2251 2963 +2731 2337 2925 +2611 2433 2869 +2371 2535 2779 +1178 2643 2621 +0 2757 2255 +0 2873 0 +0 2995 0 +0 3119 0 +0 3243 0 +0 3371 0 +0 3499 0 +0 3629 0 +0 3759 0 +0 3889 0 +0 4021 0 +3067 1743 3117 +3065 1746 3117 +3065 1749 3115 +3065 1754 3115 +3063 1761 3115 +3063 1769 3113 +3061 1780 3113 +3059 1795 3111 +3057 1813 3109 +3053 1837 3107 +3047 1867 3103 +3041 1904 3099 +3031 1950 3093 +3017 2004 3083 +2999 2069 3071 +2973 2141 3055 +2937 2225 3031 +2883 2315 2999 +2801 2415 2951 +2657 2521 2877 +2349 2631 2755 +0 2747 2513 +0 2867 1244 +0 2989 0 +0 3115 0 +0 3241 0 +0 3369 0 +0 3497 0 +0 3627 0 +0 3757 0 +0 3889 0 +0 4019 0 +3169 1621 3181 +3169 1624 3181 +3169 1629 3181 +3169 1636 3181 +3167 1644 3179 +3167 1655 3179 +3165 1669 3179 +3163 1687 3177 +3161 1711 3175 +3159 1741 3173 +3155 1777 3169 +3149 1822 3165 +3141 1876 3161 +3131 1940 3153 +3117 2012 3143 +3097 2095 3129 +3071 2185 3109 +3031 2285 3081 +2971 2389 3041 +2879 2501 2981 +2715 2617 2887 +2319 2735 2719 +0 2857 2309 +0 2983 0 +0 3109 0 +0 3237 0 +0 3365 0 +0 3495 0 +0 3625 0 +0 3757 0 +0 3887 0 +0 4019 0 +3279 1379 3255 +3279 1385 3255 +3279 1394 3255 +3277 1404 3255 +3277 1418 3255 +3277 1436 3253 +3275 1459 3253 +3275 1487 3251 +3273 1523 3251 +3271 1567 3249 +3267 1620 3245 +3263 1683 3243 +3257 1754 3237 +3249 1836 3231 +3239 1925 3223 +3223 2023 3211 +3203 2127 3195 +3173 2239 3171 +3131 2353 3139 +3067 2473 3091 +2967 2595 3019 +2781 2719 2901 +2275 2845 2669 +0 2973 1672 +0 3101 0 +0 3231 0 +0 3361 0 +0 3493 0 +0 3623 0 +0 3755 0 +0 3887 0 +0 4019 0 +3393 117 3339 +3393 207 3339 +3393 305 3339 +3393 410 3339 +3391 520 3337 +3391 636 3337 +3391 755 3337 +3389 877 3335 +3389 1001 3335 +3387 1128 3333 +3383 1255 3331 +3381 1384 3329 +3375 1514 3325 +3369 1644 3319 +3361 1775 3311 +3351 1906 3303 +3335 2037 3289 +3313 2169 3271 +3283 2301 3245 +3239 2433 3207 +3171 2565 3153 +3061 2697 3067 +2857 2829 2919 +2207 2961 2591 +0 3093 0 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +3511 0 3431 +3511 0 3431 +3511 0 3431 +3511 0 3431 +3511 0 3431 +3509 0 3429 +3509 0 3429 +3509 0 3429 +3507 0 3427 +3507 0 3427 +3505 0 3425 +3501 0 3423 +3499 286 3419 +3493 1096 3415 +3487 1436 3409 +3479 1678 3401 +3467 1878 3391 +3451 2055 3375 +3429 2219 3355 +3397 2373 3327 +3351 2521 3285 +3279 2663 3223 +3165 2803 3123 +2943 2943 2943 +2099 3079 2463 +0 3215 0 +0 3349 0 +0 3483 0 +0 3617 0 +0 3749 0 +0 3883 0 +0 4015 0 +3633 0 3531 +3633 0 3531 +3633 0 3531 +3633 0 3531 +3633 0 3529 +3631 0 3529 +3631 0 3529 +3631 0 3529 +3629 0 3527 +3629 0 3527 +3627 0 3525 +3625 0 3523 +3623 0 3521 +3619 0 3517 +3615 0 3513 +3609 756 3507 +3599 1506 3499 +3587 1839 3487 +3571 2079 3471 +3547 2277 3449 +3515 2453 3417 +3467 2615 3371 +3395 2769 3301 +3273 2917 3189 +3035 3061 2971 +1896 3201 2197 +0 3339 0 +0 3475 0 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +3757 0 3637 +3757 0 3637 +3757 0 3637 +3757 0 3637 +3757 0 3637 +3757 0 3637 +3755 0 3635 +3755 0 3635 +3755 0 3635 +3753 0 3633 +3753 0 3633 +3751 0 3631 +3749 0 3629 +3747 0 3627 +3743 0 3623 +3739 0 3619 +3731 0 3611 +3723 1069 3603 +3711 1780 3591 +3693 2107 3573 +3671 2345 3549 +3637 2543 3515 +3587 2719 3467 +3513 2881 3391 +3387 3035 3263 +3137 3181 3007 +1263 3325 0 +0 3465 0 +0 3603 0 +0 3739 0 +0 3875 0 +0 4009 0 +3883 0 3749 +3883 0 3749 +3883 0 3749 +3883 0 3749 +3883 0 3749 +3883 0 3747 +3881 0 3747 +3881 0 3747 +3881 0 3747 +3881 0 3747 +3879 0 3745 +3879 0 3745 +3877 0 3743 +3875 0 3741 +3873 0 3737 +3869 0 3733 +3863 0 3729 +3857 0 3721 +3849 0 3713 +3835 1687 3699 +3819 2145 3681 +3795 2423 3657 +3761 2641 3621 +3711 2827 3569 +3633 2997 3487 +3505 3155 3347 +3243 3305 3053 +0 3451 0 +0 3593 0 +0 3733 0 +0 3869 0 +0 4005 0 +4011 0 3865 +4011 0 3865 +4011 0 3865 +4011 0 3865 +4009 0 3865 +4009 0 3865 +4009 0 3865 +4009 0 3863 +4009 0 3863 +4009 0 3863 +4007 0 3863 +4007 0 3861 +4005 0 3861 +4005 0 3859 +4003 0 3857 +3999 0 3853 +3997 0 3849 +3991 0 3845 +3985 0 3837 +3975 0 3827 +3963 1522 3815 +3945 2189 3795 +3921 2511 3769 +3887 2745 3731 +3835 2941 3677 +3757 3117 3589 +3627 3279 3441 +3357 3431 3105 +0 3579 0 +0 3721 0 +0 3861 0 +0 3999 0 +4095 0 3985 +4095 0 3985 +4095 0 3985 +4095 0 3985 +4095 0 3985 +4095 0 3985 +4095 0 3985 +4095 0 3985 +4095 0 3983 +4095 0 3983 +4095 0 3983 +4095 0 3983 +4095 0 3981 +4095 0 3981 +4095 0 3979 +4095 0 3977 +4095 0 3973 +4095 0 3969 +4095 0 3963 +4095 0 3957 +4095 0 3947 +4091 1122 3933 +4073 2243 3913 +4049 2605 3887 +4015 2855 3847 +3963 3061 3789 +3883 3239 3699 +3751 3405 3541 +3473 3559 3169 +0 3707 0 +0 3851 0 +0 3993 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4091 +4095 0 4085 +4095 0 4079 +4095 0 4069 +4095 0 4053 +4095 2305 4035 +4095 2707 4007 +4095 2971 3967 +4091 3181 3907 +4011 3365 3813 +3877 3531 3647 +3593 3687 3241 +0 3837 0 +0 3981 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2377 4095 +4095 2815 4095 +4095 3091 4089 +4095 3305 4029 +4095 3491 3933 +4003 3659 3759 +3717 3817 3321 +0 3967 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2459 4095 +4095 2929 4095 +4095 3213 4095 +4095 3431 4095 +4095 3619 4053 +4095 3789 3877 +3843 3947 3413 +2563 2115 2975 +2561 2115 2975 +2559 2117 2975 +2557 2119 2973 +2555 2123 2973 +2551 2125 2971 +2547 2131 2971 +2539 2137 2969 +2531 2147 2965 +2519 2159 2961 +2501 2173 2957 +2477 2193 2951 +2445 2217 2941 +2395 2249 2929 +2319 2287 2913 +2193 2333 2889 +1937 2389 2855 +0 2455 2805 +0 2529 2729 +0 2613 2601 +0 2707 2345 +0 2807 0 +0 2913 0 +0 3025 0 +0 3141 0 +0 3261 0 +0 3385 0 +0 3509 0 +0 3637 0 +0 3765 0 +0 3893 0 +0 4023 0 +2563 2113 2975 +2563 2115 2975 +2561 2117 2975 +2559 2119 2973 +2557 2121 2973 +2553 2125 2973 +2547 2131 2971 +2541 2137 2969 +2533 2147 2965 +2519 2157 2963 +2503 2173 2957 +2479 2193 2951 +2445 2217 2941 +2397 2249 2929 +2321 2287 2913 +2195 2333 2889 +1942 2389 2855 +0 2455 2805 +0 2529 2729 +0 2613 2603 +0 2707 2347 +0 2807 0 +0 2913 0 +0 3025 0 +0 3141 0 +0 3261 0 +0 3385 0 +0 3509 0 +0 3637 0 +0 3765 0 +0 3893 0 +0 4023 0 +2565 2113 2975 +2565 2115 2975 +2563 2117 2975 +2561 2119 2975 +2559 2121 2973 +2555 2125 2973 +2549 2131 2971 +2543 2137 2969 +2535 2147 2967 +2523 2157 2963 +2505 2173 2957 +2481 2193 2951 +2449 2217 2943 +2399 2247 2931 +2325 2287 2913 +2199 2333 2889 +1950 2389 2855 +201 2455 2807 +0 2529 2731 +0 2613 2603 +0 2707 2349 +0 2807 0 +0 2913 0 +0 3025 0 +0 3141 0 +0 3261 0 +0 3385 0 +0 3509 0 +0 3637 0 +0 3765 0 +0 3893 0 +0 4023 0 +2567 2113 2977 +2567 2115 2977 +2565 2117 2975 +2563 2119 2975 +2561 2121 2975 +2557 2125 2973 +2553 2131 2971 +2545 2137 2969 +2537 2145 2967 +2525 2157 2963 +2509 2173 2959 +2485 2191 2953 +2451 2217 2943 +2403 2247 2931 +2329 2287 2913 +2205 2333 2891 +1959 2389 2857 +515 2455 2807 +0 2529 2731 +0 2613 2605 +0 2707 2351 +0 2807 0 +0 2913 0 +0 3025 0 +0 3141 0 +0 3261 0 +0 3385 0 +0 3509 0 +0 3637 0 +0 3765 0 +0 3893 0 +0 4023 0 +2571 2113 2977 +2569 2115 2977 +2569 2115 2977 +2567 2117 2977 +2563 2121 2975 +2561 2125 2975 +2555 2129 2973 +2549 2137 2971 +2541 2145 2969 +2529 2157 2965 +2511 2173 2959 +2489 2191 2953 +2455 2217 2945 +2407 2247 2931 +2333 2285 2915 +2213 2333 2891 +1972 2389 2857 +748 2455 2809 +0 2529 2733 +0 2613 2607 +0 2705 2355 +0 2807 171 +0 2913 0 +0 3025 0 +0 3141 0 +0 3261 0 +0 3385 0 +0 3509 0 +0 3637 0 +0 3765 0 +0 3893 0 +0 4023 0 +2575 2113 2979 +2575 2113 2979 +2573 2115 2977 +2571 2117 2977 +2569 2121 2977 +2565 2125 2975 +2561 2129 2973 +2553 2135 2971 +2545 2145 2969 +2533 2157 2965 +2517 2171 2961 +2493 2191 2955 +2461 2215 2945 +2413 2247 2933 +2341 2285 2917 +2221 2333 2893 +1988 2389 2859 +942 2453 2811 +0 2529 2735 +0 2613 2611 +0 2705 2359 +0 2805 544 +0 2913 0 +0 3025 0 +0 3141 0 +0 3261 0 +0 3385 0 +0 3509 0 +0 3637 0 +0 3765 0 +0 3893 0 +0 4023 0 +2581 2111 2981 +2581 2113 2979 +2579 2115 2979 +2577 2117 2979 +2575 2119 2979 +2571 2123 2977 +2567 2129 2975 +2559 2135 2973 +2551 2145 2971 +2539 2155 2967 +2523 2171 2963 +2501 2191 2955 +2469 2215 2947 +2423 2247 2935 +2351 2285 2919 +2235 2331 2895 +2009 2387 2861 +1116 2453 2813 +0 2529 2737 +0 2613 2613 +0 2705 2367 +0 2805 799 +0 2913 0 +0 3025 0 +0 3141 0 +0 3261 0 +0 3385 0 +0 3509 0 +0 3637 0 +0 3765 0 +0 3893 0 +0 4023 0 +2589 2111 2983 +2587 2111 2983 +2587 2113 2981 +2585 2115 2981 +2583 2119 2981 +2579 2123 2979 +2575 2127 2977 +2567 2135 2975 +2559 2143 2973 +2547 2155 2969 +2533 2169 2965 +2509 2189 2959 +2479 2215 2949 +2433 2245 2937 +2363 2285 2921 +2251 2331 2897 +2035 2387 2865 +1277 2453 2815 +0 2529 2741 +0 2613 2619 +0 2705 2375 +0 2805 1005 +0 2913 0 +0 3025 0 +0 3141 0 +0 3261 0 +0 3385 0 +0 3509 0 +0 3637 0 +0 3765 0 +0 3893 0 +0 4023 0 +2599 2109 2985 +2597 2111 2985 +2597 2111 2985 +2595 2113 2983 +2593 2117 2983 +2589 2121 2983 +2585 2125 2981 +2579 2133 2979 +2571 2141 2975 +2559 2153 2973 +2543 2169 2967 +2521 2189 2961 +2491 2213 2953 +2447 2245 2941 +2379 2283 2923 +2271 2331 2901 +2069 2387 2867 +1430 2453 2819 +0 2527 2747 +0 2611 2625 +0 2705 2385 +0 2805 1185 +0 2913 0 +0 3025 0 +0 3141 0 +0 3261 0 +0 3385 0 +0 3509 0 +0 3637 0 +0 3765 0 +0 3893 0 +0 4023 0 +2611 2107 2989 +2611 2109 2989 +2609 2109 2989 +2607 2113 2987 +2605 2115 2987 +2603 2119 2985 +2597 2125 2985 +2593 2131 2983 +2585 2139 2979 +2573 2151 2977 +2559 2167 2971 +2537 2187 2965 +2507 2211 2957 +2465 2243 2945 +2401 2281 2929 +2297 2329 2905 +2109 2385 2873 +1577 2451 2825 +0 2527 2753 +0 2611 2633 +0 2705 2399 +0 2805 1350 +0 2911 0 +0 3025 0 +0 3141 0 +0 3261 0 +0 3385 0 +0 3509 0 +0 3637 0 +0 3765 0 +0 3893 0 +0 4023 0 +2629 2105 2995 +2627 2105 2993 +2627 2107 2993 +2625 2109 2993 +2623 2113 2991 +2619 2117 2991 +2615 2121 2989 +2609 2129 2987 +2601 2137 2985 +2591 2149 2981 +2577 2165 2977 +2557 2185 2971 +2529 2209 2961 +2489 2241 2951 +2427 2279 2933 +2331 2327 2911 +2159 2383 2879 +1720 2451 2833 +0 2525 2761 +0 2611 2645 +0 2703 2417 +0 2805 1506 +0 2911 0 +0 3023 0 +0 3141 0 +0 3261 0 +0 3385 0 +0 3509 0 +0 3637 0 +0 3765 0 +0 3893 0 +0 4023 0 +2651 2101 3001 +2649 2101 3001 +2649 2103 2999 +2647 2105 2999 +2645 2109 2999 +2641 2113 2997 +2637 2119 2997 +2633 2125 2995 +2625 2135 2991 +2615 2147 2989 +2601 2161 2983 +2583 2181 2977 +2555 2207 2969 +2517 2239 2957 +2461 2277 2941 +2371 2325 2919 +2217 2383 2887 +1860 2449 2841 +0 2525 2773 +0 2609 2659 +0 2703 2441 +0 2803 1654 +0 2911 0 +0 3023 0 +0 3141 0 +0 3261 0 +0 3383 0 +0 3509 0 +0 3637 0 +0 3765 0 +0 3893 0 +0 4023 0 +2677 2095 3009 +2677 2097 3009 +2675 2099 3009 +2675 2101 3009 +2673 2105 3007 +2669 2109 3007 +2665 2113 3005 +2661 2121 3003 +2653 2129 3001 +2645 2141 2997 +2631 2157 2993 +2615 2177 2987 +2589 2203 2979 +2553 2235 2967 +2501 2275 2951 +2421 2323 2929 +2285 2379 2899 +1998 2447 2855 +0 2523 2787 +0 2607 2677 +0 2701 2469 +0 2803 1798 +0 2909 0 +0 3023 0 +0 3139 0 +0 3261 0 +0 3383 0 +0 3509 0 +0 3635 0 +0 3765 0 +0 3893 0 +0 4023 0 +2713 2089 3021 +2711 2091 3021 +2711 2093 3021 +2709 2095 3019 +2707 2097 3019 +2705 2101 3017 +2701 2107 3017 +2697 2115 3015 +2689 2123 3013 +2681 2135 3009 +2669 2151 3005 +2653 2171 2999 +2631 2197 2991 +2599 2231 2979 +2551 2269 2965 +2479 2319 2943 +2363 2377 2913 +2133 2443 2869 +1197 2519 2805 +0 2605 2699 +0 2699 2505 +0 2801 1939 +0 2909 0 +0 3021 0 +0 3139 0 +0 3259 0 +0 3383 0 +0 3509 0 +0 3635 0 +0 3765 0 +0 3893 0 +0 4023 0 +2755 2081 3035 +2753 2081 3035 +2753 2083 3035 +2751 2087 3035 +2749 2089 3033 +2747 2093 3033 +2745 2099 3031 +2739 2107 3029 +2735 2115 3027 +2727 2127 3025 +2715 2143 3019 +2701 2165 3015 +2681 2191 3007 +2651 2223 2995 +2611 2265 2981 +2549 2313 2961 +2449 2371 2931 +2269 2439 2891 +1794 2517 2829 +0 2603 2729 +0 2697 2551 +0 2799 2077 +0 2907 0 +0 3021 0 +0 3139 0 +0 3259 0 +0 3383 0 +0 3509 0 +0 3635 0 +0 3763 0 +0 3893 0 +0 4023 0 +2805 2069 3055 +2805 2069 3055 +2803 2071 3053 +2803 2075 3053 +2801 2077 3053 +2799 2081 3051 +2797 2087 3051 +2793 2095 3049 +2787 2105 3047 +2781 2117 3043 +2771 2133 3039 +2757 2155 3033 +2739 2181 3027 +2715 2215 3017 +2679 2257 3003 +2625 2305 2983 +2543 2365 2955 +2403 2433 2917 +2105 2511 2857 +0 2599 2765 +0 2695 2603 +0 2797 2215 +0 2905 0 +0 3019 0 +0 3137 0 +0 3259 0 +0 3381 0 +0 3507 0 +0 3635 0 +0 3763 0 +0 3893 0 +0 4023 0 +2865 2051 3079 +2865 2053 3079 +2865 2055 3079 +2863 2057 3077 +2861 2061 3077 +2859 2065 3077 +2857 2071 3075 +2855 2079 3073 +2849 2089 3071 +2843 2103 3069 +2835 2119 3065 +2825 2141 3059 +2809 2169 3053 +2787 2203 3043 +2757 2245 3029 +2713 2297 3011 +2645 2357 2985 +2537 2427 2949 +2335 2505 2895 +1706 2593 2811 +0 2691 2667 +0 2793 2351 +0 2903 0 +0 3017 0 +0 3135 0 +0 3257 0 +0 3381 0 +0 3507 0 +0 3635 0 +0 3763 0 +0 3893 0 +0 4023 0 +2935 2029 3109 +2935 2030 3109 +2935 2032 3109 +2933 2035 3109 +2933 2038 3107 +2931 2043 3107 +2929 2049 3105 +2925 2057 3105 +2921 2067 3103 +2917 2081 3099 +2909 2099 3097 +2901 2121 3091 +2887 2151 3085 +2869 2187 3075 +2843 2229 3063 +2807 2283 3047 +2753 2345 3023 +2671 2417 2989 +2529 2497 2939 +2225 2587 2865 +0 2685 2739 +0 2789 2485 +0 2899 0 +0 3015 0 +0 3133 0 +0 3255 0 +0 3379 0 +0 3507 0 +0 3633 0 +0 3763 0 +0 3893 0 +0 4023 0 +3015 1995 3147 +3013 1997 3147 +3013 1999 3147 +3013 2002 3147 +3011 2006 3145 +3011 2011 3145 +3009 2017 3143 +3007 2026 3143 +3003 2037 3141 +2999 2051 3139 +2993 2071 3135 +2985 2095 3131 +2975 2125 3125 +2959 2163 3117 +2939 2209 3105 +2909 2263 3089 +2867 2329 3069 +2805 2403 3037 +2703 2485 2993 +2519 2577 2927 +2014 2677 2819 +0 2783 2619 +0 2895 2004 +0 3011 0 +0 3131 0 +0 3253 0 +0 3379 0 +0 3505 0 +0 3633 0 +0 3761 0 +0 3891 0 +0 4023 0 +3103 1947 3193 +3103 1949 3193 +3101 1951 3193 +3101 1954 3193 +3101 1958 3193 +3099 1964 3191 +3097 1971 3191 +3095 1981 3189 +3093 1993 3187 +3089 2009 3185 +3085 2030 3183 +3079 2057 3179 +3069 2089 3173 +3057 2131 3165 +3041 2179 3155 +3017 2237 3141 +2985 2305 3123 +2937 2383 3095 +2863 2469 3057 +2743 2565 3001 +2503 2667 2911 +1310 2775 2753 +0 2889 2387 +0 3005 0 +0 3127 0 +0 3251 0 +0 3377 0 +0 3503 0 +0 3631 0 +0 3761 0 +0 3891 0 +0 4021 0 +3199 1873 3249 +3199 1875 3249 +3197 1878 3249 +3197 1882 3247 +3197 1886 3247 +3195 1893 3247 +3195 1901 3247 +3193 1912 3245 +3191 1927 3243 +3189 1946 3241 +3185 1969 3239 +3179 1999 3235 +3173 2036 3231 +3163 2081 3225 +3149 2137 3215 +3131 2201 3203 +3107 2273 3187 +3069 2357 3163 +3015 2447 3131 +2933 2547 3083 +2789 2653 3009 +2481 2763 2887 +0 2879 2645 +0 2999 1376 +0 3121 0 +0 3247 0 +0 3373 0 +0 3501 0 +0 3629 0 +0 3759 0 +0 3891 0 +0 4021 0 +3301 1750 3313 +3301 1753 3313 +3301 1757 3313 +3301 1761 3313 +3301 1768 3313 +3299 1776 3311 +3299 1787 3311 +3297 1801 3311 +3295 1820 3309 +3293 1843 3307 +3291 1873 3305 +3287 1909 3301 +3281 1954 3297 +3273 2008 3293 +3263 2071 3285 +3249 2145 3275 +3229 2227 3261 +3203 2317 3241 +3163 2417 3213 +3103 2521 3173 +3011 2633 3113 +2847 2749 3019 +2451 2867 2851 +0 2991 2441 +0 3115 0 +0 3241 0 +0 3369 0 +0 3497 0 +0 3627 0 +0 3759 0 +0 3889 0 +0 4019 0 +3411 1507 3387 +3411 1511 3387 +3411 1518 3387 +3411 1526 3387 +3409 1536 3387 +3409 1550 3387 +3409 1568 3385 +3407 1591 3385 +3407 1620 3383 +3405 1656 3383 +3403 1700 3381 +3399 1752 3377 +3395 1815 3375 +3389 1886 3369 +3381 1968 3363 +3371 2057 3355 +3355 2155 3343 +3335 2259 3327 +3305 2371 3303 +3263 2485 3271 +3199 2605 3223 +3099 2727 3151 +2913 2851 3033 +2407 2977 2801 +0 3105 1804 +0 3235 0 +0 3363 0 +0 3493 0 +0 3625 0 +0 3755 0 +0 3887 0 +0 4019 0 +3525 167 3471 +3525 249 3471 +3525 339 3471 +3525 437 3471 +3525 542 3471 +3523 652 3471 +3523 768 3469 +3523 887 3469 +3521 1009 3467 +3521 1133 3467 +3519 1260 3465 +3515 1387 3463 +3513 1516 3461 +3509 1646 3457 +3503 1776 3451 +3493 1907 3443 +3483 2038 3435 +3467 2169 3421 +3445 2301 3403 +3415 2433 3377 +3371 2565 3339 +3303 2697 3285 +3193 2829 3199 +2989 2961 3051 +2339 3093 2725 +0 3225 0 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +3643 0 3563 +3643 0 3563 +3643 0 3563 +3643 0 3563 +3643 0 3563 +3643 0 3563 +3643 0 3561 +3641 0 3561 +3641 0 3561 +3639 0 3559 +3639 0 3559 +3637 0 3557 +3633 0 3555 +3631 418 3551 +3625 1228 3547 +3619 1568 3541 +3611 1811 3533 +3599 2011 3523 +3583 2187 3507 +3561 2351 3487 +3529 2505 3459 +3483 2653 3417 +3413 2795 3355 +3297 2937 3255 +3075 3075 3075 +2231 3211 2595 +0 3347 0 +0 3481 0 +0 3615 0 +0 3749 0 +0 3881 0 +0 4015 0 +3765 0 3663 +3765 0 3663 +3765 0 3663 +3765 0 3663 +3765 0 3663 +3765 0 3663 +3763 0 3661 +3763 0 3661 +3763 0 3661 +3763 0 3659 +3761 0 3659 +3759 0 3657 +3757 0 3655 +3755 0 3653 +3751 0 3649 +3747 0 3645 +3741 888 3639 +3731 1638 3631 +3719 1971 3619 +3703 2211 3603 +3681 2409 3581 +3647 2585 3549 +3599 2749 3503 +3527 2901 3433 +3405 3049 3321 +3167 3193 3103 +2028 3333 2329 +0 3471 0 +0 3607 0 +0 3743 0 +0 3877 0 +0 4011 0 +3889 0 3769 +3889 0 3769 +3889 0 3769 +3889 0 3769 +3889 0 3769 +3889 0 3769 +3889 0 3769 +3887 0 3767 +3887 0 3767 +3887 0 3767 +3885 0 3765 +3885 0 3765 +3883 0 3763 +3881 0 3761 +3879 0 3759 +3875 0 3755 +3871 0 3751 +3863 0 3743 +3855 1201 3735 +3843 1912 3723 +3825 2239 3705 +3803 2477 3681 +3769 2675 3647 +3719 2851 3599 +3645 3013 3523 +3519 3167 3395 +3269 3313 3139 +1395 3457 0 +0 3597 0 +0 3735 0 +0 3871 0 +0 4007 0 +4015 0 3881 +4015 0 3881 +4015 0 3881 +4015 0 3881 +4015 0 3881 +4015 0 3881 +4015 0 3881 +4015 0 3879 +4013 0 3879 +4013 0 3879 +4013 0 3879 +4011 0 3877 +4011 0 3877 +4009 0 3875 +4007 0 3873 +4005 0 3869 +4001 0 3867 +3995 0 3861 +3989 0 3855 +3981 0 3845 +3967 1819 3831 +3951 2277 3813 +3927 2555 3789 +3893 2773 3753 +3843 2961 3701 +3765 3129 3619 +3637 3287 3479 +3375 3437 3185 +0 3583 0 +0 3725 0 +0 3865 0 +0 4001 0 +4095 0 3997 +4095 0 3997 +4095 0 3997 +4095 0 3997 +4095 0 3997 +4095 0 3997 +4095 0 3997 +4095 0 3997 +4095 0 3997 +4095 0 3995 +4095 0 3995 +4095 0 3995 +4095 0 3993 +4095 0 3993 +4095 0 3991 +4095 0 3989 +4095 0 3985 +4095 0 3981 +4095 0 3977 +4095 0 3969 +4095 0 3959 +4095 1654 3947 +4077 2321 3927 +4053 2643 3901 +4019 2877 3865 +3967 3075 3809 +3889 3249 3723 +3759 3411 3573 +3489 3563 3237 +0 3711 0 +0 3853 0 +0 3993 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4089 +4095 0 4079 +4095 1254 4065 +4095 2375 4045 +4095 2737 4019 +4095 2989 3979 +4095 3193 3923 +4015 3371 3831 +3883 3537 3673 +3605 3691 3301 +0 3839 0 +0 3983 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2437 4095 +4095 2839 4095 +4095 3103 4095 +4095 3313 4039 +4095 3497 3945 +4009 3663 3779 +3725 3819 3373 +0 3969 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2509 4095 +4095 2949 4095 +4095 3223 4095 +4095 3437 4095 +4095 3623 4065 +4095 3791 3891 +3849 3949 3455 +2693 2245 3107 +2693 2247 3107 +2691 2247 3107 +2691 2249 3107 +2689 2251 3105 +2685 2255 3105 +2683 2259 3103 +2677 2263 3103 +2671 2269 3101 +2661 2279 3097 +2649 2291 3093 +2633 2305 3089 +2609 2325 3083 +2575 2349 3073 +2525 2381 3061 +2449 2419 3043 +2321 2465 3021 +2065 2521 2987 +0 2587 2937 +0 2661 2861 +0 2745 2733 +0 2839 2477 +0 2939 0 +0 3045 0 +0 3157 0 +0 3273 0 +0 3393 0 +0 3517 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2695 2245 3107 +2695 2247 3107 +2693 2247 3107 +2691 2249 3107 +2689 2251 3105 +2687 2255 3105 +2683 2259 3103 +2679 2263 3103 +2671 2269 3101 +2663 2279 3097 +2651 2291 3095 +2633 2305 3089 +2609 2325 3083 +2577 2349 3073 +2527 2381 3061 +2451 2419 3045 +2325 2465 3021 +2069 2521 2987 +0 2587 2937 +0 2661 2861 +0 2745 2733 +0 2839 2477 +0 2939 0 +0 3045 0 +0 3157 0 +0 3273 0 +0 3393 0 +0 3517 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2697 2245 3107 +2695 2247 3107 +2695 2247 3107 +2693 2249 3107 +2691 2251 3107 +2689 2253 3105 +2685 2257 3105 +2679 2263 3103 +2673 2269 3101 +2665 2279 3099 +2653 2291 3095 +2635 2305 3089 +2611 2325 3083 +2577 2349 3073 +2529 2381 3061 +2453 2419 3045 +2327 2465 3021 +2075 2521 2987 +0 2587 2937 +0 2661 2861 +0 2745 2735 +0 2839 2479 +0 2939 0 +0 3045 0 +0 3157 0 +0 3273 0 +0 3393 0 +0 3517 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2699 2245 3109 +2697 2245 3109 +2697 2247 3107 +2695 2249 3107 +2693 2251 3107 +2691 2253 3105 +2687 2257 3105 +2681 2263 3103 +2675 2269 3101 +2667 2279 3099 +2655 2289 3095 +2637 2305 3091 +2613 2325 3083 +2581 2349 3075 +2531 2381 3063 +2457 2419 3045 +2331 2465 3021 +2081 2521 2987 +333 2587 2939 +0 2661 2863 +0 2745 2735 +0 2839 2481 +0 2939 0 +0 3045 0 +0 3157 0 +0 3273 0 +0 3393 0 +0 3517 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2701 2245 3109 +2699 2245 3109 +2699 2247 3109 +2697 2249 3107 +2695 2251 3107 +2693 2253 3107 +2689 2257 3105 +2685 2263 3103 +2677 2269 3101 +2669 2277 3099 +2657 2289 3095 +2641 2305 3091 +2617 2325 3085 +2583 2349 3075 +2535 2379 3063 +2461 2419 3047 +2337 2465 3023 +2091 2521 2989 +647 2587 2939 +0 2661 2863 +0 2745 2737 +0 2839 2483 +0 2939 0 +0 3045 0 +0 3157 0 +0 3273 0 +0 3393 0 +0 3517 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2705 2245 3109 +2703 2245 3109 +2703 2247 3109 +2701 2247 3109 +2699 2251 3109 +2697 2253 3107 +2693 2257 3107 +2687 2261 3105 +2681 2269 3103 +2673 2277 3101 +2661 2289 3097 +2643 2305 3091 +2621 2323 3085 +2587 2349 3077 +2539 2379 3063 +2467 2417 3047 +2345 2465 3023 +2103 2521 2989 +880 2587 2941 +0 2661 2865 +0 2745 2739 +0 2839 2487 +0 2939 303 +0 3045 0 +0 3157 0 +0 3273 0 +0 3393 0 +0 3517 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2709 2243 3111 +2707 2245 3111 +2707 2245 3111 +2705 2247 3111 +2703 2249 3109 +2701 2253 3109 +2697 2257 3107 +2693 2261 3107 +2685 2269 3105 +2677 2277 3101 +2665 2289 3097 +2649 2303 3093 +2627 2323 3087 +2593 2347 3077 +2545 2379 3065 +2473 2417 3049 +2353 2465 3025 +2121 2521 2991 +1074 2585 2943 +0 2661 2867 +0 2745 2743 +0 2837 2493 +0 2939 677 +0 3045 0 +0 3157 0 +0 3273 0 +0 3393 0 +0 3517 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2715 2243 3113 +2713 2243 3113 +2713 2245 3113 +2711 2247 3111 +2709 2249 3111 +2707 2251 3111 +2703 2255 3109 +2699 2261 3107 +2693 2267 3105 +2683 2277 3103 +2671 2287 3099 +2655 2303 3095 +2633 2323 3089 +2601 2347 3079 +2555 2379 3067 +2483 2417 3051 +2367 2463 3027 +2141 2519 2993 +1248 2585 2945 +0 2661 2869 +0 2745 2745 +0 2837 2499 +0 2937 931 +0 3045 0 +0 3157 0 +0 3273 0 +0 3393 0 +0 3517 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2721 2241 3115 +2721 2243 3115 +2719 2243 3115 +2719 2245 3113 +2717 2247 3113 +2715 2251 3113 +2711 2255 3111 +2707 2259 3109 +2701 2267 3107 +2691 2275 3105 +2681 2287 3101 +2665 2303 3097 +2643 2321 3091 +2611 2347 3081 +2565 2377 3069 +2495 2417 3053 +2383 2463 3029 +2167 2519 2997 +1409 2585 2947 +0 2661 2873 +0 2745 2751 +0 2837 2507 +0 2937 1137 +0 3045 0 +0 3157 0 +0 3273 0 +0 3393 0 +0 3517 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2731 2241 3117 +2731 2241 3117 +2731 2243 3117 +2729 2243 3117 +2727 2247 3117 +2725 2249 3115 +2721 2253 3115 +2717 2259 3113 +2711 2265 3111 +2703 2273 3109 +2691 2285 3105 +2675 2301 3099 +2653 2321 3093 +2623 2345 3085 +2579 2377 3073 +2513 2415 3057 +2403 2463 3033 +2201 2519 3001 +1562 2585 2951 +0 2659 2879 +0 2745 2757 +0 2837 2517 +0 2937 1317 +0 3045 0 +0 3157 0 +0 3273 0 +0 3393 0 +0 3517 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2745 2239 3121 +2745 2239 3121 +2743 2241 3121 +2741 2241 3121 +2739 2245 3119 +2737 2247 3119 +2735 2251 3117 +2731 2257 3117 +2725 2263 3115 +2717 2273 3111 +2705 2283 3109 +2691 2299 3103 +2669 2319 3097 +2639 2343 3089 +2597 2375 3077 +2533 2413 3061 +2429 2461 3037 +2241 2517 3005 +1709 2583 2957 +0 2659 2885 +0 2743 2765 +0 2837 2531 +0 2937 1482 +0 3043 0 +0 3157 0 +0 3273 0 +0 3393 0 +0 3517 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2761 2235 3127 +2761 2237 3127 +2761 2237 3125 +2759 2239 3125 +2757 2241 3125 +2755 2245 3125 +2751 2249 3123 +2747 2253 3121 +2741 2261 3119 +2735 2269 3117 +2723 2281 3113 +2709 2297 3109 +2689 2317 3103 +2661 2341 3095 +2621 2373 3083 +2559 2413 3067 +2463 2459 3043 +2291 2517 3011 +1852 2583 2965 +0 2657 2893 +0 2743 2777 +0 2835 2549 +0 2937 1638 +0 3043 0 +0 3155 0 +0 3273 0 +0 3393 0 +0 3517 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2783 2231 3133 +2783 2233 3133 +2781 2235 3133 +2781 2235 3133 +2779 2239 3131 +2777 2241 3131 +2773 2245 3129 +2769 2251 3129 +2765 2257 3127 +2757 2267 3123 +2747 2279 3121 +2733 2293 3115 +2715 2313 3109 +2687 2339 3101 +2649 2371 3089 +2593 2409 3073 +2503 2457 3051 +2349 2515 3019 +1992 2581 2973 +0 2657 2905 +0 2741 2791 +0 2835 2573 +0 2935 1786 +0 3043 0 +0 3155 0 +0 3273 0 +0 3393 0 +0 3515 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2811 2227 3141 +2811 2229 3141 +2809 2229 3141 +2809 2231 3141 +2807 2233 3141 +2805 2237 3139 +2801 2241 3139 +2797 2245 3137 +2793 2253 3135 +2787 2261 3133 +2777 2273 3129 +2763 2289 3125 +2747 2309 3119 +2721 2335 3111 +2687 2367 3099 +2633 2407 3083 +2553 2455 3061 +2417 2511 3031 +2129 2579 2987 +0 2655 2919 +0 2739 2809 +0 2833 2601 +0 2935 1931 +0 3043 0 +0 3155 0 +0 3271 0 +0 3393 0 +0 3515 0 +0 3641 0 +0 3769 0 +0 3897 0 +0 4025 0 +2845 2221 3153 +2845 2221 3153 +2843 2223 3153 +2843 2225 3153 +2841 2227 3151 +2839 2229 3151 +2837 2235 3149 +2833 2239 3149 +2829 2247 3147 +2823 2255 3145 +2813 2267 3141 +2801 2283 3137 +2785 2305 3131 +2763 2329 3123 +2731 2363 3111 +2683 2403 3097 +2613 2451 3075 +2495 2509 3045 +2267 2575 3003 +1329 2653 2937 +0 2737 2831 +0 2831 2637 +0 2933 2071 +0 3041 0 +0 3153 0 +0 3271 0 +0 3391 0 +0 3515 0 +0 3641 0 +0 3767 0 +0 3897 0 +0 4025 0 +2887 2211 3167 +2887 2213 3167 +2885 2215 3167 +2885 2215 3167 +2883 2219 3167 +2881 2221 3165 +2879 2225 3165 +2877 2231 3163 +2873 2239 3161 +2867 2247 3159 +2859 2261 3157 +2847 2277 3151 +2833 2297 3147 +2813 2323 3139 +2785 2355 3127 +2743 2397 3113 +2681 2445 3093 +2581 2503 3065 +2401 2571 3023 +1927 2649 2961 +0 2735 2861 +0 2829 2683 +0 2931 2211 +0 3039 0 +0 3153 0 +0 3271 0 +0 3391 0 +0 3515 0 +0 3641 0 +0 3767 0 +0 3895 0 +0 4025 0 +2937 2199 3187 +2937 2201 3187 +2937 2203 3187 +2935 2203 3185 +2935 2207 3185 +2933 2209 3185 +2931 2213 3183 +2929 2219 3183 +2925 2227 3181 +2919 2237 3179 +2913 2249 3175 +2903 2265 3171 +2889 2287 3167 +2873 2313 3159 +2847 2347 3149 +2811 2389 3135 +2757 2439 3115 +2675 2497 3087 +2535 2565 3049 +2237 2645 2991 +0 2731 2897 +0 2827 2735 +0 2929 2347 +0 3037 0 +0 3151 0 +0 3269 0 +0 3391 0 +0 3515 0 +0 3639 0 +0 3767 0 +0 3895 0 +0 4025 0 +2997 2183 3211 +2997 2185 3211 +2997 2185 3211 +2997 2187 3211 +2995 2189 3209 +2993 2193 3209 +2993 2197 3209 +2989 2203 3207 +2987 2211 3205 +2981 2221 3203 +2975 2235 3201 +2967 2251 3197 +2957 2273 3191 +2941 2301 3185 +2919 2335 3175 +2889 2377 3161 +2845 2429 3143 +2777 2489 3117 +2669 2559 3081 +2467 2637 3027 +1839 2727 2943 +0 2823 2799 +0 2925 2483 +0 3035 0 +0 3149 0 +0 3267 0 +0 3389 0 +0 3513 0 +0 3639 0 +0 3767 0 +0 3895 0 +0 4025 0 +3067 2159 3241 +3067 2161 3241 +3067 2163 3241 +3067 2165 3241 +3065 2167 3241 +3065 2171 3239 +3063 2175 3239 +3061 2181 3237 +3057 2189 3237 +3053 2199 3235 +3049 2213 3231 +3041 2231 3229 +3033 2253 3223 +3019 2283 3217 +3001 2319 3207 +2975 2363 3195 +2939 2415 3179 +2887 2477 3155 +2803 2549 3121 +2661 2629 3073 +2357 2719 2997 +0 2817 2871 +0 2921 2617 +0 3031 83 +0 3147 0 +0 3265 0 +0 3387 0 +0 3511 0 +0 3639 0 +0 3765 0 +0 3895 0 +0 4025 0 +3147 2127 3279 +3147 2127 3279 +3147 2129 3279 +3145 2131 3279 +3145 2135 3279 +3143 2137 3277 +3143 2143 3277 +3141 2149 3277 +3139 2159 3275 +3135 2169 3273 +3131 2185 3271 +3125 2203 3267 +3117 2227 3263 +3107 2257 3257 +3091 2295 3249 +3071 2341 3237 +3041 2397 3221 +2999 2461 3201 +2937 2535 3171 +2835 2617 3127 +2651 2709 3059 +2145 2809 2953 +0 2915 2751 +0 3027 2137 +0 3143 0 +0 3263 0 +0 3385 0 +0 3511 0 +0 3637 0 +0 3765 0 +0 3895 0 +0 4023 0 +3235 2077 3325 +3235 2079 3325 +3235 2081 3325 +3233 2083 3325 +3233 2087 3325 +3233 2091 3325 +3231 2097 3323 +3229 2103 3323 +3227 2113 3321 +3225 2125 3319 +3221 2141 3317 +3217 2163 3315 +3211 2189 3311 +3201 2221 3305 +3189 2263 3297 +3173 2311 3287 +3151 2369 3273 +3117 2437 3255 +3069 2515 3229 +2995 2601 3189 +2875 2697 3133 +2635 2799 3043 +1442 2907 2885 +0 3021 2519 +0 3137 0 +0 3259 0 +0 3383 0 +0 3509 0 +0 3635 0 +0 3763 0 +0 3893 0 +0 4023 0 +3331 2004 3381 +3331 2005 3381 +3331 2007 3381 +3331 2010 3381 +3329 2014 3381 +3329 2019 3379 +3329 2025 3379 +3327 2033 3379 +3325 2045 3377 +3323 2059 3375 +3321 2077 3373 +3317 2101 3371 +3311 2131 3367 +3305 2169 3363 +3295 2215 3357 +3281 2269 3347 +3263 2333 3335 +3239 2405 3319 +3201 2489 3295 +3149 2579 3263 +3065 2679 3215 +2923 2785 3141 +2613 2895 3019 +0 3011 2777 +0 3131 1508 +0 3253 0 +0 3379 0 +0 3505 0 +0 3633 0 +0 3763 0 +0 3891 0 +0 4023 0 +3435 1880 3445 +3433 1882 3445 +3433 1885 3445 +3433 1889 3445 +3433 1894 3445 +3433 1900 3445 +3431 1908 3443 +3431 1919 3443 +3429 1933 3443 +3427 1952 3441 +3425 1975 3439 +3423 2005 3437 +3419 2042 3435 +3413 2087 3429 +3405 2141 3425 +3395 2203 3417 +3381 2277 3407 +3361 2359 3393 +3335 2449 3373 +3295 2549 3345 +3237 2653 3305 +3143 2765 3245 +2979 2881 3151 +2583 2999 2985 +0 3123 2573 +0 3247 0 +0 3373 0 +0 3501 0 +0 3631 0 +0 3759 0 +0 3891 0 +0 4021 0 +3543 1635 3519 +3543 1639 3519 +3543 1644 3519 +3543 1650 3519 +3543 1658 3519 +3543 1668 3519 +3541 1682 3519 +3541 1700 3517 +3539 1723 3517 +3539 1752 3517 +3537 1788 3515 +3535 1832 3513 +3531 1885 3511 +3527 1947 3507 +3521 2019 3501 +3513 2099 3495 +3503 2189 3487 +3487 2287 3475 +3467 2393 3459 +3437 2503 3435 +3395 2617 3403 +3331 2737 3357 +3231 2859 3285 +3045 2983 3165 +2539 3109 2933 +0 3237 1936 +0 3367 0 +0 3495 0 +0 3627 0 +0 3757 0 +0 3887 0 +0 4019 0 +3657 227 3603 +3657 299 3603 +3657 381 3603 +3657 471 3603 +3657 569 3603 +3657 674 3603 +3657 784 3603 +3655 900 3601 +3655 1019 3601 +3653 1141 3601 +3653 1265 3599 +3651 1392 3597 +3649 1520 3595 +3645 1648 3593 +3641 1778 3589 +3635 1908 3583 +3625 2039 3577 +3615 2171 3567 +3599 2301 3553 +3577 2433 3535 +3547 2565 3509 +3503 2697 3471 +3435 2829 3417 +3327 2961 3331 +3121 3093 3183 +2471 3225 2857 +0 3357 0 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +3775 0 3695 +3775 0 3695 +3775 0 3695 +3775 0 3695 +3775 0 3695 +3775 0 3695 +3775 0 3695 +3775 0 3693 +3773 0 3693 +3773 0 3693 +3771 0 3691 +3771 0 3691 +3769 0 3689 +3765 0 3687 +3763 550 3683 +3757 1360 3679 +3751 1700 3673 +3743 1943 3665 +3731 2143 3655 +3715 2319 3639 +3693 2483 3619 +3661 2637 3591 +3615 2785 3549 +3545 2927 3487 +3429 3069 3387 +3207 3207 3207 +2363 3343 2727 +0 3479 0 +0 3613 0 +0 3747 0 +0 3881 0 +0 4013 0 +3897 0 3795 +3897 0 3795 +3897 0 3795 +3897 0 3795 +3897 0 3795 +3897 0 3795 +3897 0 3795 +3897 0 3793 +3895 0 3793 +3895 0 3793 +3895 0 3793 +3893 0 3791 +3891 0 3789 +3889 0 3787 +3887 0 3785 +3883 0 3781 +3879 0 3777 +3873 1021 3771 +3863 1770 3763 +3851 2103 3751 +3835 2343 3735 +3813 2541 3713 +3779 2717 3681 +3731 2881 3635 +3659 3033 3567 +3537 3181 3453 +3299 3325 3235 +2161 3465 2461 +0 3603 0 +0 3739 0 +0 3875 0 +0 4009 0 +4021 0 3901 +4021 0 3901 +4021 0 3901 +4021 0 3901 +4021 0 3901 +4021 0 3901 +4021 0 3901 +4021 0 3901 +4019 0 3899 +4019 0 3899 +4019 0 3899 +4019 0 3899 +4017 0 3897 +4015 0 3895 +4013 0 3893 +4011 0 3891 +4007 0 3887 +4003 0 3883 +3995 0 3875 +3987 1333 3867 +3975 2044 3855 +3957 2373 3837 +3935 2609 3813 +3901 2807 3779 +3851 2983 3731 +3777 3145 3655 +3651 3299 3527 +3401 3445 3271 +1527 3589 0 +0 3729 0 +0 3867 0 +0 4005 0 +4095 0 4013 +4095 0 4013 +4095 0 4013 +4095 0 4013 +4095 0 4013 +4095 0 4013 +4095 0 4013 +4095 0 4013 +4095 0 4011 +4095 0 4011 +4095 0 4011 +4095 0 4011 +4095 0 4009 +4095 0 4009 +4095 0 4007 +4095 0 4005 +4095 0 4003 +4095 0 3999 +4095 0 3993 +4095 0 3987 +4095 0 3977 +4095 1951 3963 +4083 2409 3947 +4059 2687 3921 +4025 2905 3885 +3975 3093 3833 +3897 3261 3751 +3769 3419 3611 +3509 3569 3317 +0 3715 0 +0 3857 0 +0 3997 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4091 +4095 1786 4079 +4095 2453 4059 +4095 2775 4033 +4095 3009 3997 +4095 3207 3941 +4021 3381 3855 +3891 3543 3705 +3621 3695 3369 +0 3843 0 +0 3985 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 1387 4095 +4095 2507 4095 +4095 2869 4095 +4095 3121 4095 +4095 3325 4055 +4095 3503 3963 +4015 3669 3805 +3737 3823 3433 +0 3971 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2569 4095 +4095 2971 4095 +4095 3235 4095 +4095 3445 4095 +4095 3629 4077 +4095 3795 3911 +3859 3951 3505 +2825 2377 3239 +2825 2377 3239 +2825 2379 3239 +2823 2379 3239 +2821 2381 3237 +2819 2383 3237 +2817 2387 3237 +2813 2391 3235 +2809 2395 3233 +2803 2403 3231 +2793 2411 3229 +2781 2423 3225 +2763 2437 3221 +2739 2457 3215 +2705 2481 3205 +2657 2513 3193 +2579 2551 3175 +2453 2597 3153 +2193 2653 3119 +0 2719 3069 +0 2793 2993 +0 2879 2865 +0 2971 2607 +0 3071 0 +0 3177 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3775 0 +0 3901 0 +0 4029 0 +2827 2377 3239 +2827 2377 3239 +2825 2379 3239 +2825 2379 3239 +2823 2381 3239 +2821 2383 3237 +2817 2387 3237 +2815 2391 3235 +2809 2395 3235 +2803 2403 3233 +2793 2411 3229 +2781 2423 3225 +2765 2437 3221 +2741 2457 3215 +2707 2481 3205 +2657 2513 3193 +2581 2551 3177 +2453 2597 3153 +2197 2653 3119 +0 2719 3069 +0 2793 2993 +0 2877 2865 +0 2971 2609 +0 3071 0 +0 3177 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3775 0 +0 3901 0 +0 4029 0 +2827 2377 3239 +2827 2377 3239 +2827 2379 3239 +2825 2379 3239 +2823 2381 3239 +2821 2383 3237 +2819 2387 3237 +2815 2391 3235 +2811 2395 3235 +2803 2401 3233 +2795 2411 3229 +2783 2423 3227 +2765 2437 3221 +2743 2457 3215 +2709 2481 3205 +2659 2513 3193 +2583 2551 3177 +2457 2597 3153 +2201 2653 3119 +0 2719 3069 +0 2793 2993 +0 2877 2867 +0 2971 2609 +0 3071 0 +0 3177 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3775 0 +0 3901 0 +0 4029 0 +2829 2377 3241 +2829 2377 3239 +2827 2379 3239 +2827 2379 3239 +2825 2381 3239 +2823 2383 3239 +2821 2387 3237 +2817 2389 3237 +2811 2395 3235 +2805 2401 3233 +2797 2411 3231 +2785 2423 3227 +2767 2437 3221 +2743 2457 3215 +2711 2481 3207 +2661 2513 3193 +2585 2551 3177 +2459 2597 3153 +2207 2653 3119 +0 2719 3069 +0 2793 2993 +0 2877 2867 +0 2971 2611 +0 3071 0 +0 3177 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3775 0 +0 3901 0 +0 4029 0 +2831 2377 3241 +2831 2377 3241 +2829 2377 3241 +2829 2379 3239 +2827 2381 3239 +2825 2383 3239 +2823 2385 3237 +2819 2389 3237 +2813 2395 3235 +2807 2401 3233 +2799 2411 3231 +2787 2421 3227 +2769 2437 3223 +2745 2457 3215 +2713 2481 3207 +2663 2513 3195 +2589 2551 3177 +2463 2597 3153 +2213 2653 3119 +465 2719 3071 +0 2793 2995 +0 2877 2869 +0 2971 2613 +0 3071 0 +0 3177 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3775 0 +0 3901 0 +0 4029 0 +2833 2375 3241 +2833 2377 3241 +2833 2377 3241 +2831 2379 3241 +2829 2381 3241 +2827 2383 3239 +2825 2385 3239 +2821 2389 3237 +2817 2395 3237 +2809 2401 3235 +2801 2411 3231 +2789 2421 3227 +2773 2437 3223 +2749 2457 3217 +2715 2481 3207 +2667 2511 3195 +2593 2551 3179 +2469 2597 3155 +2223 2653 3121 +779 2719 3071 +0 2793 2995 +0 2877 2869 +0 2971 2615 +0 3071 0 +0 3177 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3773 0 +0 3901 0 +0 4029 0 +2837 2375 3243 +2837 2377 3243 +2835 2377 3241 +2835 2379 3241 +2833 2379 3241 +2831 2383 3241 +2829 2385 3239 +2825 2389 3239 +2819 2395 3237 +2813 2401 3235 +2805 2409 3233 +2793 2421 3229 +2777 2437 3223 +2753 2455 3217 +2719 2481 3209 +2671 2511 3197 +2599 2551 3179 +2477 2597 3155 +2237 2653 3123 +1012 2719 3073 +0 2793 2997 +0 2877 2871 +0 2971 2619 +0 3071 435 +0 3177 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3773 0 +0 3901 0 +0 4029 0 +2841 2375 3243 +2841 2375 3243 +2839 2377 3243 +2839 2377 3243 +2837 2379 3243 +2835 2381 3241 +2833 2385 3241 +2829 2389 3239 +2825 2393 3239 +2819 2401 3237 +2809 2409 3233 +2797 2421 3229 +2781 2435 3225 +2759 2455 3219 +2725 2479 3209 +2679 2511 3197 +2605 2549 3181 +2487 2597 3157 +2253 2653 3123 +1206 2719 3075 +0 2793 2999 +0 2877 2875 +0 2971 2625 +0 3071 809 +0 3177 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3773 0 +0 3901 0 +0 4029 0 +2847 2375 3245 +2847 2375 3245 +2845 2375 3245 +2845 2377 3245 +2843 2379 3243 +2841 2381 3243 +2839 2383 3243 +2835 2387 3241 +2831 2393 3239 +2825 2399 3237 +2815 2409 3235 +2803 2419 3231 +2787 2435 3227 +2765 2455 3221 +2733 2479 3211 +2687 2511 3199 +2615 2549 3183 +2499 2597 3159 +2273 2653 3125 +1380 2717 3077 +0 2793 3003 +0 2877 2877 +0 2969 2631 +0 3071 1063 +0 3177 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3773 0 +0 3901 0 +0 4029 0 +2855 2373 3247 +2853 2373 3247 +2853 2375 3247 +2853 2375 3247 +2851 2377 3245 +2849 2379 3245 +2847 2383 3245 +2843 2387 3243 +2839 2391 3241 +2833 2399 3239 +2823 2407 3237 +2813 2419 3233 +2797 2435 3229 +2775 2453 3223 +2743 2479 3213 +2697 2509 3201 +2627 2549 3185 +2515 2595 3161 +2299 2651 3129 +1541 2717 3079 +0 2793 3005 +0 2877 2883 +0 2969 2639 +0 3069 1269 +0 3177 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3773 0 +0 3901 0 +0 4029 0 +2865 2371 3249 +2863 2373 3249 +2863 2373 3249 +2863 2375 3249 +2861 2377 3249 +2859 2379 3249 +2857 2381 3247 +2853 2385 3247 +2849 2391 3245 +2843 2397 3243 +2835 2405 3241 +2823 2417 3237 +2807 2433 3231 +2787 2453 3225 +2755 2477 3217 +2711 2509 3205 +2645 2547 3189 +2535 2595 3165 +2333 2651 3133 +1694 2717 3085 +0 2791 3011 +0 2877 2889 +0 2969 2649 +0 3069 1449 +0 3177 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3773 0 +0 3901 0 +0 4029 0 +2877 2369 3253 +2877 2371 3253 +2877 2371 3253 +2875 2373 3253 +2873 2375 3253 +2873 2377 3251 +2869 2379 3251 +2867 2383 3251 +2863 2389 3249 +2857 2395 3247 +2849 2405 3245 +2837 2415 3241 +2823 2431 3235 +2801 2451 3229 +2773 2475 3221 +2729 2507 3209 +2665 2547 3193 +2563 2593 3169 +2373 2649 3137 +1841 2715 3089 +0 2791 3017 +0 2875 2897 +0 2969 2663 +0 3069 1614 +0 3177 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3773 0 +0 3901 0 +0 4029 0 +2895 2367 3259 +2893 2367 3259 +2893 2369 3259 +2893 2369 3259 +2891 2371 3257 +2889 2373 3257 +2887 2377 3257 +2883 2381 3255 +2879 2385 3253 +2873 2393 3251 +2867 2401 3249 +2855 2413 3245 +2841 2429 3241 +2821 2449 3235 +2793 2473 3227 +2753 2505 3215 +2691 2545 3199 +2595 2591 3175 +2423 2649 3143 +1984 2715 3097 +0 2789 3025 +0 2875 2909 +0 2967 2681 +0 3069 1770 +0 3175 0 +0 3289 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3773 0 +0 3901 0 +0 4029 0 +2915 2363 3265 +2915 2365 3265 +2915 2365 3265 +2913 2367 3265 +2913 2367 3265 +2911 2371 3263 +2909 2373 3263 +2905 2377 3261 +2901 2383 3261 +2897 2389 3259 +2889 2399 3255 +2879 2411 3253 +2865 2425 3247 +2847 2445 3241 +2819 2471 3233 +2781 2503 3221 +2725 2541 3205 +2637 2589 3183 +2481 2647 3151 +2123 2713 3107 +0 2789 3037 +0 2873 2923 +0 2967 2705 +0 3067 1919 +0 3175 0 +0 3287 0 +0 3405 0 +0 3525 0 +0 3649 0 +0 3773 0 +0 3901 0 +0 4029 0 +2943 2359 3275 +2943 2359 3273 +2943 2361 3273 +2941 2361 3273 +2941 2363 3273 +2939 2365 3273 +2937 2369 3271 +2933 2373 3271 +2931 2377 3269 +2925 2385 3267 +2919 2393 3265 +2909 2405 3261 +2897 2421 3257 +2879 2441 3251 +2853 2467 3243 +2819 2499 3231 +2767 2539 3215 +2685 2587 3193 +2549 2643 3163 +2261 2711 3119 +0 2787 3051 +0 2871 2941 +0 2965 2733 +0 3067 2063 +0 3175 0 +0 3287 0 +0 3405 0 +0 3525 0 +0 3647 0 +0 3773 0 +0 3901 0 +0 4029 0 +2977 2353 3285 +2977 2353 3285 +2977 2353 3285 +2975 2355 3285 +2975 2357 3285 +2973 2359 3283 +2971 2363 3283 +2969 2367 3281 +2965 2371 3281 +2961 2379 3279 +2955 2387 3277 +2945 2401 3273 +2933 2415 3269 +2917 2437 3263 +2895 2461 3255 +2863 2495 3243 +2815 2535 3229 +2745 2583 3207 +2627 2641 3177 +2399 2707 3135 +1461 2785 3069 +0 2869 2965 +0 2963 2769 +0 3065 2203 +0 3173 0 +0 3287 0 +0 3403 0 +0 3525 0 +0 3647 0 +0 3773 0 +0 3901 0 +0 4029 0 +3019 2343 3301 +3019 2343 3299 +3019 2345 3299 +3017 2347 3299 +3017 2347 3299 +3015 2351 3299 +3013 2353 3297 +3011 2357 3297 +3009 2363 3295 +3005 2371 3293 +2999 2379 3291 +2991 2393 3289 +2979 2409 3285 +2965 2429 3279 +2945 2455 3271 +2917 2487 3259 +2875 2529 3245 +2813 2577 3225 +2713 2635 3197 +2533 2703 3155 +2059 2781 3093 +0 2867 2993 +0 2961 2815 +0 3063 2343 +0 3171 0 +0 3285 0 +0 3403 0 +0 3523 0 +0 3647 0 +0 3773 0 +0 3899 0 +0 4029 0 +3071 2331 3319 +3069 2331 3319 +3069 2333 3319 +3069 2335 3319 +3067 2335 3319 +3067 2339 3317 +3065 2341 3317 +3063 2345 3315 +3061 2351 3315 +3057 2359 3313 +3051 2369 3311 +3045 2381 3307 +3035 2397 3303 +3023 2419 3299 +3005 2445 3291 +2979 2479 3281 +2943 2521 3267 +2891 2571 3247 +2807 2629 3219 +2667 2699 3181 +2369 2777 3123 +0 2863 3031 +0 2959 2867 +0 3061 2479 +0 3169 0 +0 3283 0 +0 3401 0 +0 3523 0 +0 3647 0 +0 3773 0 +0 3899 0 +0 4027 0 +3131 2315 3343 +3131 2315 3343 +3129 2317 3343 +3129 2317 3343 +3129 2319 3343 +3127 2321 3341 +3125 2325 3341 +3125 2329 3341 +3121 2335 3339 +3119 2343 3337 +3113 2353 3335 +3107 2367 3333 +3099 2383 3329 +3089 2405 3323 +3073 2433 3317 +3051 2467 3307 +3021 2509 3293 +2977 2561 3275 +2909 2621 3249 +2801 2691 3213 +2599 2769 3159 +1971 2859 3075 +0 2955 2931 +0 3057 2615 +0 3167 0 +0 3281 0 +0 3399 0 +0 3521 0 +0 3645 0 +0 3771 0 +0 3899 0 +0 4027 0 +3201 2291 3373 +3199 2291 3373 +3199 2293 3373 +3199 2295 3373 +3199 2297 3373 +3197 2299 3373 +3197 2303 3371 +3195 2307 3371 +3193 2313 3371 +3189 2321 3369 +3185 2331 3367 +3181 2345 3363 +3173 2363 3361 +3165 2387 3355 +3151 2415 3349 +3133 2451 3339 +3107 2495 3327 +3071 2547 3311 +3019 2609 3287 +2935 2681 3253 +2793 2761 3205 +2489 2851 3129 +0 2949 3003 +0 3053 2749 +0 3163 215 +0 3279 0 +0 3397 0 +0 3519 0 +0 3645 0 +0 3771 0 +0 3899 0 +0 4027 0 +3279 2257 3411 +3279 2259 3411 +3279 2259 3411 +3279 2261 3411 +3277 2263 3411 +3277 2267 3411 +3275 2271 3409 +3275 2275 3409 +3273 2281 3409 +3271 2291 3407 +3267 2301 3405 +3263 2317 3403 +3257 2335 3399 +3249 2359 3395 +3239 2389 3389 +3223 2427 3381 +3203 2473 3369 +3173 2529 3355 +3131 2593 3333 +3069 2667 3303 +2967 2749 3259 +2783 2841 3191 +2277 2941 3085 +0 3047 2883 +0 3159 2269 +0 3275 0 +0 3395 0 +0 3517 0 +0 3643 0 +0 3769 0 +0 3897 0 +0 4027 0 +3367 2209 3457 +3367 2209 3457 +3367 2211 3457 +3367 2213 3457 +3365 2215 3457 +3365 2219 3457 +3365 2223 3457 +3363 2229 3455 +3361 2235 3455 +3361 2245 3453 +3357 2257 3451 +3353 2273 3449 +3349 2295 3447 +3343 2321 3443 +3333 2353 3437 +3321 2395 3429 +3305 2443 3419 +3283 2503 3407 +3249 2571 3387 +3201 2647 3361 +3127 2735 3321 +3007 2829 3265 +2767 2931 3175 +1574 3039 3017 +0 3153 2651 +0 3271 0 +0 3391 0 +0 3515 0 +0 3641 0 +0 3767 0 +0 3895 0 +0 4025 0 +3463 2135 3513 +3463 2135 3513 +3463 2137 3513 +3463 2139 3513 +3463 2143 3513 +3461 2145 3513 +3461 2151 3511 +3461 2157 3511 +3459 2165 3511 +3457 2177 3509 +3455 2191 3507 +3453 2209 3505 +3449 2233 3503 +3443 2263 3499 +3437 2301 3495 +3427 2347 3489 +3413 2401 3479 +3395 2465 3467 +3371 2537 3451 +3333 2621 3427 +3281 2711 3395 +3197 2811 3347 +3055 2917 3273 +2745 3027 3151 +0 3143 2909 +0 3263 1640 +0 3385 0 +0 3511 0 +0 3637 0 +0 3765 0 +0 3895 0 +0 4023 0 +3567 2011 3577 +3567 2012 3577 +3567 2014 3577 +3565 2017 3577 +3565 2021 3577 +3565 2026 3577 +3565 2032 3577 +3563 2040 3577 +3563 2051 3575 +3561 2065 3575 +3561 2083 3573 +3557 2107 3571 +3555 2137 3569 +3551 2173 3567 +3545 2219 3563 +3537 2273 3557 +3527 2335 3549 +3513 2409 3539 +3493 2491 3525 +3467 2581 3505 +3427 2681 3477 +3369 2785 3437 +3275 2897 3377 +3111 3013 3283 +2715 3131 3117 +0 3255 2705 +0 3379 0 +0 3505 0 +0 3633 0 +0 3763 0 +0 3891 0 +0 4023 0 +3675 1765 3653 +3675 1767 3653 +3675 1771 3651 +3675 1776 3651 +3675 1782 3651 +3675 1790 3651 +3675 1801 3651 +3673 1814 3651 +3673 1832 3651 +3671 1855 3649 +3671 1884 3649 +3669 1920 3647 +3667 1964 3645 +3663 2017 3643 +3659 2079 3639 +3653 2151 3633 +3645 2231 3627 +3635 2321 3619 +3619 2419 3607 +3599 2525 3591 +3569 2635 3567 +3527 2749 3535 +3465 2869 3489 +3363 2991 3417 +3177 3115 3297 +2671 3241 3065 +0 3369 2069 +0 3499 0 +0 3627 0 +0 3759 0 +0 3889 0 +0 4021 0 +3789 297 3735 +3789 359 3735 +3789 432 3735 +3789 513 3735 +3789 603 3735 +3789 701 3735 +3789 806 3735 +3789 917 3735 +3787 1032 3733 +3787 1151 3733 +3785 1273 3733 +3785 1398 3731 +3783 1524 3729 +3781 1652 3727 +3777 1781 3725 +3773 1910 3721 +3767 2040 3715 +3759 2171 3709 +3747 2303 3699 +3731 2433 3685 +3709 2565 3667 +3679 2697 3641 +3635 2829 3603 +3567 2961 3549 +3459 3093 3463 +3253 3225 3315 +2603 3357 2989 +0 3489 0 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +3907 0 3827 +3907 0 3827 +3907 0 3827 +3907 0 3827 +3907 0 3827 +3907 0 3827 +3907 0 3827 +3907 0 3827 +3907 0 3827 +3905 0 3825 +3905 0 3825 +3903 0 3823 +3903 0 3823 +3901 0 3821 +3899 0 3819 +3895 682 3815 +3891 1493 3811 +3883 1832 3805 +3875 2075 3797 +3863 2275 3787 +3847 2451 3773 +3825 2615 3751 +3793 2769 3723 +3747 2917 3681 +3677 3059 3619 +3561 3201 3519 +3339 3339 3339 +2495 3475 2859 +0 3611 0 +0 3745 0 +0 3879 0 +0 4013 0 +4029 0 3927 +4029 0 3927 +4029 0 3927 +4029 0 3927 +4029 0 3927 +4029 0 3927 +4029 0 3927 +4029 0 3927 +4029 0 3927 +4027 0 3925 +4027 0 3925 +4027 0 3925 +4025 0 3923 +4023 0 3921 +4021 0 3919 +4019 0 3917 +4015 0 3913 +4011 0 3909 +4005 1152 3903 +3995 1902 3895 +3983 2235 3883 +3967 2475 3867 +3945 2673 3845 +3911 2849 3813 +3863 3013 3767 +3791 3165 3699 +3669 3313 3585 +3433 3457 3367 +2293 3597 2593 +0 3735 0 +0 3871 0 +0 4007 0 +4095 0 4033 +4095 0 4033 +4095 0 4033 +4095 0 4033 +4095 0 4033 +4095 0 4033 +4095 0 4033 +4095 0 4033 +4095 0 4033 +4095 0 4033 +4095 0 4031 +4095 0 4031 +4095 0 4031 +4095 0 4029 +4095 0 4027 +4095 0 4025 +4095 0 4023 +4095 0 4019 +4095 0 4015 +4095 0 4007 +4095 1465 3999 +4095 2177 3987 +4091 2505 3969 +4067 2741 3945 +4033 2939 3913 +3983 3115 3863 +3909 3277 3787 +3783 3431 3659 +3533 3579 3405 +1659 3721 0 +0 3861 0 +0 3999 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2083 4095 +4095 2541 4079 +4095 2819 4053 +4095 3037 4017 +4095 3225 3965 +4031 3393 3883 +3901 3551 3743 +3641 3703 3449 +0 3847 0 +0 3989 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 1918 4095 +4095 2585 4095 +4095 2907 4095 +4095 3141 4095 +4095 3339 4073 +4095 3513 3987 +4023 3675 3837 +3753 3827 3501 +0 3975 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 1519 4095 +4095 2639 4095 +4095 3001 4095 +4095 3253 4095 +4095 3457 4095 +4095 3635 4095 +4095 3801 3937 +3869 3955 3565 +2957 2509 3371 +2957 2509 3371 +2957 2509 3371 +2955 2511 3371 +2955 2513 3371 +2953 2513 3369 +2951 2515 3369 +2949 2519 3369 +2945 2523 3367 +2941 2527 3365 +2933 2535 3363 +2925 2543 3361 +2913 2555 3357 +2895 2569 3353 +2871 2589 3347 +2837 2613 3337 +2787 2645 3325 +2711 2683 3307 +2583 2731 3283 +2323 2785 3251 +0 2851 3201 +0 2927 3125 +0 3011 2997 +0 3103 2739 +0 3203 0 +0 3309 0 +0 3421 0 +0 3539 0 +0 3659 0 +0 3781 0 +0 3907 0 +0 4033 0 +2959 2509 3371 +2959 2509 3371 +2957 2509 3371 +2957 2511 3371 +2955 2511 3371 +2953 2513 3371 +2951 2515 3369 +2949 2519 3369 +2945 2523 3367 +2941 2527 3367 +2935 2535 3365 +2925 2543 3361 +2913 2555 3357 +2895 2569 3353 +2871 2589 3347 +2839 2613 3337 +2789 2645 3325 +2711 2683 3307 +2585 2729 3285 +2327 2785 3251 +0 2851 3201 +0 2927 3125 +0 3011 2997 +0 3103 2739 +0 3203 0 +0 3309 0 +0 3421 0 +0 3539 0 +0 3659 0 +0 3781 0 +0 3907 0 +0 4033 0 +2959 2509 3371 +2959 2509 3371 +2959 2509 3371 +2957 2511 3371 +2957 2511 3371 +2955 2513 3371 +2953 2515 3369 +2951 2519 3369 +2947 2523 3367 +2941 2527 3367 +2935 2535 3365 +2925 2543 3361 +2913 2555 3357 +2897 2569 3353 +2873 2589 3347 +2839 2613 3337 +2789 2645 3325 +2713 2683 3309 +2587 2729 3285 +2329 2785 3251 +0 2851 3201 +0 2927 3125 +0 3011 2997 +0 3103 2741 +0 3203 0 +0 3309 0 +0 3421 0 +0 3539 0 +0 3659 0 +0 3781 0 +0 3907 0 +0 4033 0 +2961 2509 3373 +2959 2509 3371 +2959 2509 3371 +2959 2511 3371 +2957 2511 3371 +2955 2513 3371 +2953 2515 3369 +2951 2519 3369 +2947 2523 3369 +2943 2527 3367 +2937 2535 3365 +2927 2543 3361 +2915 2555 3359 +2897 2569 3353 +2875 2589 3347 +2841 2613 3337 +2791 2645 3325 +2715 2683 3309 +2589 2729 3285 +2333 2785 3251 +0 2851 3201 +0 2925 3125 +0 3011 2999 +0 3103 2741 +0 3203 0 +0 3309 0 +0 3421 0 +0 3537 0 +0 3659 0 +0 3781 0 +0 3907 0 +0 4033 0 +2961 2509 3373 +2961 2509 3373 +2961 2509 3373 +2959 2511 3371 +2959 2511 3371 +2957 2513 3371 +2955 2515 3371 +2953 2519 3369 +2949 2523 3369 +2945 2527 3367 +2937 2533 3365 +2929 2543 3363 +2917 2555 3359 +2899 2569 3353 +2875 2589 3347 +2843 2613 3339 +2793 2645 3325 +2717 2683 3309 +2591 2729 3285 +2339 2785 3251 +0 2851 3201 +0 2925 3125 +0 3011 2999 +0 3103 2743 +0 3203 0 +0 3309 0 +0 3421 0 +0 3537 0 +0 3659 0 +0 3781 0 +0 3907 0 +0 4033 0 +2963 2507 3373 +2963 2509 3373 +2963 2509 3373 +2961 2511 3373 +2961 2511 3371 +2959 2513 3371 +2957 2515 3371 +2955 2517 3371 +2951 2521 3369 +2947 2527 3367 +2939 2533 3365 +2931 2543 3363 +2919 2555 3359 +2901 2569 3355 +2879 2589 3347 +2845 2613 3339 +2795 2645 3327 +2721 2683 3309 +2595 2729 3285 +2347 2785 3253 +597 2851 3203 +0 2925 3127 +0 3009 3001 +0 3103 2745 +0 3203 0 +0 3309 0 +0 3421 0 +0 3537 0 +0 3659 0 +0 3781 0 +0 3907 0 +0 4033 0 +2967 2507 3373 +2965 2509 3373 +2965 2509 3373 +2965 2509 3373 +2963 2511 3373 +2961 2513 3373 +2959 2515 3371 +2957 2517 3371 +2953 2521 3369 +2949 2527 3369 +2943 2533 3367 +2933 2543 3363 +2921 2553 3359 +2905 2569 3355 +2881 2589 3349 +2847 2613 3339 +2799 2645 3327 +2725 2683 3311 +2601 2729 3287 +2355 2785 3253 +912 2851 3203 +0 2925 3127 +0 3009 3001 +0 3103 2749 +0 3203 0 +0 3309 0 +0 3421 0 +0 3537 0 +0 3659 0 +0 3781 0 +0 3907 0 +0 4033 0 +2969 2507 3375 +2969 2507 3375 +2969 2509 3375 +2967 2509 3373 +2967 2511 3373 +2965 2513 3373 +2963 2515 3373 +2961 2517 3371 +2957 2521 3371 +2953 2527 3369 +2945 2533 3367 +2937 2541 3365 +2925 2553 3361 +2909 2569 3355 +2885 2587 3349 +2853 2613 3341 +2803 2643 3329 +2731 2683 3311 +2609 2729 3287 +2369 2785 3255 +1144 2851 3205 +0 2925 3129 +0 3009 3003 +0 3103 2751 +0 3203 567 +0 3309 0 +0 3421 0 +0 3537 0 +0 3659 0 +0 3781 0 +0 3907 0 +0 4033 0 +2973 2507 3375 +2973 2507 3375 +2973 2507 3375 +2971 2509 3375 +2971 2509 3375 +2969 2511 3375 +2967 2513 3373 +2965 2517 3373 +2961 2521 3371 +2957 2525 3371 +2951 2533 3369 +2941 2541 3365 +2929 2553 3363 +2913 2567 3357 +2891 2587 3351 +2857 2613 3341 +2811 2643 3329 +2737 2681 3313 +2619 2729 3289 +2385 2785 3255 +1339 2851 3207 +0 2925 3131 +0 3009 3007 +0 3103 2757 +0 3203 941 +0 3309 0 +0 3421 0 +0 3537 0 +0 3657 0 +0 3781 0 +0 3907 0 +0 4033 0 +2979 2505 3377 +2979 2507 3377 +2979 2507 3377 +2977 2507 3377 +2977 2509 3377 +2975 2511 3375 +2973 2513 3375 +2971 2515 3375 +2967 2519 3373 +2963 2525 3371 +2957 2531 3369 +2947 2541 3367 +2935 2553 3363 +2919 2567 3359 +2897 2587 3353 +2865 2611 3343 +2819 2643 3331 +2747 2681 3315 +2631 2729 3291 +2405 2785 3257 +1513 2849 3209 +0 2925 3135 +0 3009 3011 +0 3101 2763 +0 3203 1195 +0 3309 0 +0 3421 0 +0 3537 0 +0 3657 0 +0 3781 0 +0 3907 0 +0 4033 0 +2987 2505 3379 +2987 2505 3379 +2987 2505 3379 +2985 2507 3379 +2985 2507 3379 +2983 2509 3379 +2981 2511 3377 +2979 2515 3377 +2975 2519 3375 +2971 2523 3375 +2965 2531 3373 +2955 2539 3369 +2945 2551 3365 +2929 2567 3361 +2907 2585 3355 +2875 2611 3345 +2829 2641 3333 +2759 2681 3317 +2647 2727 3293 +2431 2783 3261 +1674 2849 3213 +0 2925 3137 +0 3009 3015 +0 3101 2771 +0 3201 1401 +0 3309 0 +0 3421 0 +0 3537 0 +0 3657 0 +0 3781 0 +0 3905 0 +0 4033 0 +2997 2503 3383 +2997 2503 3383 +2997 2505 3381 +2995 2505 3381 +2995 2507 3381 +2993 2509 3381 +2991 2511 3381 +2989 2513 3379 +2985 2517 3379 +2981 2523 3377 +2975 2529 3375 +2967 2539 3373 +2955 2549 3369 +2939 2565 3365 +2919 2585 3357 +2887 2609 3349 +2843 2641 3337 +2777 2679 3321 +2667 2727 3297 +2465 2783 3265 +1826 2849 3217 +0 2923 3143 +0 3009 3021 +0 3101 2781 +0 3201 1581 +0 3309 0 +0 3421 0 +0 3537 0 +0 3657 0 +0 3781 0 +0 3905 0 +0 4033 0 +3011 2501 3387 +3009 2501 3385 +3009 2503 3385 +3009 2503 3385 +3007 2505 3385 +3007 2507 3385 +3005 2509 3385 +3001 2511 3383 +2999 2515 3383 +2995 2521 3381 +2989 2527 3379 +2981 2537 3377 +2969 2549 3373 +2955 2563 3369 +2933 2583 3361 +2905 2607 3353 +2861 2639 3341 +2797 2679 3325 +2695 2725 3301 +2505 2781 3269 +1973 2847 3221 +0 2923 3149 +0 3007 3029 +0 3101 2795 +0 3201 1747 +0 3309 0 +0 3421 0 +0 3537 0 +0 3657 0 +0 3781 0 +0 3905 0 +0 4033 0 +3027 2499 3391 +3027 2499 3391 +3025 2499 3391 +3025 2501 3391 +3025 2501 3391 +3023 2503 3389 +3021 2505 3389 +3019 2509 3389 +3015 2513 3387 +3011 2517 3385 +3007 2525 3383 +2999 2533 3381 +2987 2545 3377 +2973 2561 3373 +2953 2581 3367 +2925 2605 3359 +2885 2637 3347 +2823 2677 3331 +2727 2723 3307 +2555 2781 3275 +2115 2847 3229 +0 2923 3157 +0 3007 3041 +0 3099 2813 +0 3201 1902 +0 3307 0 +0 3421 0 +0 3537 0 +0 3657 0 +0 3781 0 +0 3905 0 +0 4033 0 +3049 2495 3397 +3049 2495 3397 +3047 2497 3397 +3047 2497 3397 +3045 2499 3397 +3045 2501 3397 +3043 2503 3395 +3041 2505 3395 +3037 2509 3393 +3033 2515 3393 +3029 2521 3391 +3021 2531 3389 +3011 2543 3385 +2997 2557 3381 +2979 2577 3373 +2953 2603 3365 +2913 2635 3353 +2857 2673 3337 +2769 2721 3315 +2613 2779 3285 +2255 2845 3239 +0 2921 3169 +0 3005 3055 +0 3099 2837 +0 3199 2051 +0 3307 0 +0 3419 0 +0 3537 0 +0 3657 0 +0 3781 0 +0 3905 0 +0 4033 0 +3075 2491 3407 +3075 2491 3407 +3075 2491 3405 +3075 2493 3405 +3073 2493 3405 +3073 2495 3405 +3071 2497 3405 +3069 2501 3403 +3065 2505 3403 +3063 2509 3401 +3057 2517 3399 +3051 2527 3397 +3041 2539 3393 +3029 2553 3389 +3011 2573 3383 +2985 2599 3375 +2951 2631 3363 +2899 2671 3347 +2817 2719 3327 +2681 2775 3295 +2393 2843 3251 +0 2919 3183 +0 3005 3073 +0 3097 2865 +0 3199 2195 +0 3307 0 +0 3419 0 +0 3537 0 +0 3657 0 +0 3779 0 +0 3905 0 +0 4033 0 +3109 2483 3417 +3109 2485 3417 +3109 2485 3417 +3109 2485 3417 +3107 2487 3417 +3107 2489 3417 +3105 2491 3415 +3103 2495 3415 +3101 2499 3415 +3097 2503 3413 +3093 2511 3411 +3087 2521 3409 +3077 2533 3405 +3065 2549 3401 +3049 2569 3395 +3027 2595 3387 +2995 2627 3375 +2947 2667 3361 +2877 2715 3339 +2759 2773 3309 +2531 2839 3267 +1593 2917 3201 +0 3003 3097 +0 3097 2903 +0 3197 2335 +0 3305 0 +0 3419 0 +0 3535 0 +0 3657 0 +0 3779 0 +0 3905 0 +0 4033 0 +3153 2475 3433 +3151 2475 3433 +3151 2477 3433 +3151 2477 3431 +3151 2479 3431 +3149 2481 3431 +3147 2483 3431 +3147 2485 3429 +3143 2489 3429 +3141 2495 3427 +3137 2503 3425 +3131 2511 3423 +3123 2525 3421 +3113 2541 3417 +3097 2561 3411 +3077 2587 3403 +3049 2619 3391 +3007 2661 3377 +2945 2709 3357 +2845 2767 3329 +2665 2835 3287 +2191 2913 3225 +0 2999 3125 +0 3093 2947 +0 3195 2475 +0 3303 0 +0 3417 0 +0 3535 0 +0 3655 0 +0 3779 0 +0 3905 0 +0 4031 0 +3203 2463 3451 +3203 2463 3451 +3203 2463 3451 +3201 2465 3451 +3201 2467 3451 +3201 2469 3451 +3199 2471 3449 +3197 2473 3449 +3195 2477 3449 +3193 2483 3447 +3189 2491 3445 +3183 2501 3443 +3177 2513 3439 +3167 2529 3435 +3155 2551 3431 +3137 2577 3423 +3111 2611 3413 +3075 2653 3399 +3023 2703 3379 +2941 2761 3353 +2801 2831 3313 +2501 2909 3255 +0 2995 3163 +0 3091 2999 +0 3193 2611 +0 3301 0 +0 3415 0 +0 3533 0 +0 3655 0 +0 3779 0 +0 3905 0 +0 4031 0 +3263 2445 3475 +3263 2447 3475 +3263 2447 3475 +3261 2449 3475 +3261 2449 3475 +3261 2451 3475 +3259 2455 3475 +3259 2457 3473 +3257 2461 3473 +3253 2467 3471 +3251 2475 3469 +3247 2485 3467 +3239 2499 3465 +3231 2515 3461 +3221 2537 3455 +3205 2565 3449 +3183 2599 3439 +3153 2641 3425 +3109 2693 3407 +3043 2753 3383 +2933 2823 3345 +2731 2903 3291 +2103 2991 3207 +0 3087 3063 +0 3189 2747 +0 3299 0 +0 3413 0 +0 3531 0 +0 3653 0 +0 3777 0 +0 3903 0 +0 4031 0 +3333 2423 3507 +3333 2423 3507 +3331 2423 3505 +3331 2425 3505 +3331 2427 3505 +3331 2429 3505 +3329 2431 3505 +3329 2435 3505 +3327 2439 3503 +3325 2445 3503 +3321 2453 3501 +3319 2463 3499 +3313 2477 3497 +3305 2495 3493 +3297 2519 3487 +3283 2547 3481 +3265 2583 3473 +3241 2627 3459 +3203 2679 3443 +3151 2741 3419 +3067 2813 3385 +2925 2893 3337 +2621 2983 3261 +0 3081 3135 +0 3185 2881 +0 3295 347 +0 3411 0 +0 3529 0 +0 3651 0 +0 3777 0 +0 3903 0 +0 4031 0 +3411 2389 3545 +3411 2389 3543 +3411 2391 3543 +3411 2391 3543 +3411 2393 3543 +3409 2395 3543 +3409 2399 3543 +3409 2403 3543 +3407 2407 3541 +3405 2413 3541 +3403 2423 3539 +3399 2433 3537 +3395 2449 3535 +3389 2467 3531 +3381 2491 3527 +3371 2521 3521 +3355 2559 3513 +3335 2605 3501 +3305 2661 3487 +3263 2725 3465 +3201 2799 3435 +3099 2883 3391 +2915 2973 3323 +2411 3073 3217 +0 3179 3015 +0 3291 2401 +0 3407 0 +0 3527 0 +0 3649 0 +0 3775 0 +0 3901 0 +0 4029 0 +3499 2341 3591 +3499 2341 3591 +3499 2343 3589 +3499 2343 3589 +3499 2345 3589 +3499 2347 3589 +3497 2351 3589 +3497 2355 3589 +3495 2361 3587 +3495 2367 3587 +3493 2377 3585 +3489 2389 3583 +3485 2405 3581 +3481 2427 3579 +3475 2453 3575 +3467 2485 3569 +3455 2527 3563 +3437 2575 3551 +3415 2635 3539 +3381 2703 3519 +3333 2779 3493 +3259 2867 3453 +3139 2961 3397 +2899 3063 3307 +1706 3171 3149 +0 3285 2783 +0 3403 0 +0 3523 0 +0 3647 0 +0 3773 0 +0 3899 0 +0 4029 0 +3595 2265 3645 +3595 2267 3645 +3595 2267 3645 +3595 2269 3645 +3595 2271 3645 +3595 2275 3645 +3593 2277 3645 +3593 2283 3643 +3593 2289 3643 +3591 2297 3643 +3589 2309 3641 +3587 2323 3639 +3585 2341 3637 +3581 2365 3635 +3575 2395 3631 +3569 2433 3627 +3559 2479 3621 +3545 2533 3611 +3527 2597 3599 +3503 2671 3583 +3467 2753 3559 +3413 2845 3527 +3329 2943 3479 +3187 3049 3405 +2877 3161 3283 +0 3275 3041 +0 3395 1772 +0 3519 0 +0 3643 0 +0 3769 0 +0 3897 0 +0 4027 0 +3699 2141 3711 +3699 2143 3711 +3699 2145 3709 +3699 2147 3709 +3697 2149 3709 +3697 2153 3709 +3697 2157 3709 +3697 2165 3709 +3697 2173 3709 +3695 2183 3707 +3693 2197 3707 +3693 2217 3705 +3689 2239 3703 +3687 2269 3701 +3683 2305 3699 +3677 2351 3695 +3669 2405 3689 +3659 2469 3681 +3645 2541 3671 +3627 2623 3657 +3599 2713 3637 +3559 2813 3609 +3501 2917 3569 +3407 3029 3509 +3243 3145 3415 +2847 3263 3249 +0 3387 2837 +0 3511 0 +0 3637 0 +0 3765 0 +0 3895 0 +0 4025 0 +3807 1895 3785 +3807 1897 3785 +3807 1900 3785 +3807 1903 3785 +3807 1908 3783 +3807 1914 3783 +3807 1922 3783 +3807 1933 3783 +3805 1946 3783 +3805 1964 3783 +3805 1987 3781 +3803 2016 3781 +3801 2051 3779 +3799 2095 3777 +3795 2149 3775 +3791 2211 3771 +3785 2283 3767 +3777 2365 3759 +3767 2453 3751 +3751 2551 3739 +3731 2657 3723 +3701 2767 3701 +3659 2881 3667 +3597 3001 3621 +3495 3123 3549 +3309 3247 3429 +2803 3373 3197 +0 3501 2201 +0 3631 0 +0 3761 0 +0 3891 0 +0 4021 0 +3921 376 3867 +3921 429 3867 +3921 491 3867 +3921 564 3867 +3921 645 3867 +3921 735 3867 +3921 833 3867 +3921 938 3867 +3921 1048 3867 +3919 1164 3865 +3919 1283 3865 +3919 1405 3865 +3917 1530 3863 +3915 1656 3861 +3913 1784 3859 +3909 1913 3857 +3905 2042 3853 +3899 2173 3847 +3891 2303 3841 +3879 2435 3831 +3863 2565 3817 +3841 2697 3799 +3811 2829 3773 +3767 2961 3735 +3699 3093 3681 +3591 3225 3595 +3385 3357 3447 +2735 3489 3121 +0 3621 0 +0 3753 0 +0 3885 0 +0 4017 0 +4041 0 3959 +4041 0 3959 +4041 0 3959 +4039 0 3959 +4039 0 3959 +4039 0 3959 +4039 0 3959 +4039 0 3959 +4039 0 3959 +4039 0 3959 +4037 0 3957 +4037 0 3957 +4037 0 3957 +4035 0 3955 +4033 0 3953 +4031 0 3951 +4027 815 3947 +4023 1625 3943 +4015 1965 3937 +4007 2207 3929 +3995 2407 3919 +3979 2583 3905 +3957 2747 3883 +3925 2901 3855 +3879 3049 3813 +3809 3193 3751 +3693 3333 3651 +3471 3471 3471 +2627 3607 2991 +0 3743 0 +0 3877 0 +0 4011 0 +4095 0 4059 +4095 0 4059 +4095 0 4059 +4095 0 4059 +4095 0 4059 +4095 0 4059 +4095 0 4059 +4095 0 4059 +4095 0 4059 +4095 0 4059 +4095 0 4057 +4095 0 4057 +4095 0 4057 +4095 0 4055 +4095 0 4053 +4095 0 4053 +4095 0 4049 +4095 0 4047 +4095 0 4041 +4095 1285 4035 +4095 2034 4027 +4095 2367 4015 +4095 2607 3999 +4077 2805 3977 +4043 2981 3945 +3995 3145 3899 +3923 3297 3831 +3801 3445 3717 +3565 3589 3499 +2425 3729 2725 +0 3867 0 +0 4003 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 1597 4095 +4095 2309 4095 +4095 2637 4095 +4095 2875 4079 +4095 3071 4045 +4095 3247 3995 +4041 3409 3919 +3915 3563 3791 +3665 3711 3537 +1791 3853 0 +0 3993 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2215 4095 +4095 2673 4095 +4095 2951 4095 +4095 3169 4095 +4095 3357 4095 +4095 3525 4015 +4033 3683 3877 +3773 3835 3581 +0 3979 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2051 4095 +4095 2717 4095 +4095 3039 4095 +4095 3275 4095 +4095 3471 4095 +4095 3645 4095 +4095 3807 3969 +3885 3961 3633 +3089 2641 3503 +3089 2641 3503 +3089 2641 3503 +3089 2643 3503 +3087 2643 3503 +3087 2645 3503 +3085 2645 3501 +3083 2649 3501 +3081 2651 3501 +3077 2655 3499 +3071 2659 3497 +3065 2667 3495 +3057 2675 3493 +3043 2687 3489 +3027 2703 3485 +3003 2721 3479 +2969 2747 3469 +2919 2777 3457 +2843 2815 3439 +2715 2863 3415 +2453 2919 3383 +0 2983 3333 +0 3059 3257 +0 3143 3129 +0 3235 2871 +0 3335 0 +0 3441 0 +0 3553 0 +0 3671 0 +0 3791 0 +0 3913 0 +0 4039 0 +3091 2641 3503 +3091 2641 3503 +3089 2641 3503 +3089 2641 3503 +3089 2643 3503 +3087 2645 3503 +3085 2645 3503 +3083 2647 3501 +3081 2651 3501 +3077 2655 3499 +3073 2659 3499 +3065 2667 3497 +3057 2675 3493 +3045 2687 3489 +3027 2701 3485 +3003 2721 3479 +2969 2745 3469 +2919 2777 3457 +2843 2815 3439 +2715 2863 3417 +2455 2919 3383 +0 2983 3333 +0 3059 3257 +0 3143 3129 +0 3235 2871 +0 3335 0 +0 3441 0 +0 3553 0 +0 3671 0 +0 3791 0 +0 3913 0 +0 4039 0 +3091 2641 3503 +3091 2641 3503 +3091 2641 3503 +3089 2641 3503 +3089 2643 3503 +3087 2645 3503 +3087 2645 3503 +3085 2647 3501 +3081 2651 3501 +3077 2655 3499 +3073 2659 3499 +3067 2667 3497 +3057 2675 3493 +3045 2687 3489 +3027 2701 3485 +3005 2721 3479 +2971 2745 3469 +2921 2777 3457 +2843 2815 3441 +2717 2863 3417 +2459 2917 3383 +0 2983 3333 +0 3059 3257 +0 3143 3129 +0 3235 2871 +0 3335 0 +0 3441 0 +0 3553 0 +0 3671 0 +0 3791 0 +0 3913 0 +0 4039 0 +3091 2641 3503 +3091 2641 3503 +3091 2641 3503 +3091 2641 3503 +3089 2643 3503 +3089 2643 3503 +3087 2645 3503 +3085 2647 3501 +3083 2651 3501 +3079 2655 3499 +3073 2659 3499 +3067 2667 3497 +3059 2675 3493 +3045 2687 3491 +3029 2701 3485 +3005 2721 3479 +2971 2745 3469 +2921 2777 3457 +2845 2815 3441 +2719 2863 3417 +2461 2917 3383 +0 2983 3333 +0 3059 3257 +0 3143 3129 +0 3235 2873 +0 3335 0 +0 3441 0 +0 3553 0 +0 3671 0 +0 3791 0 +0 3913 0 +0 4039 0 +3093 2641 3505 +3093 2641 3505 +3091 2641 3503 +3091 2641 3503 +3091 2643 3503 +3089 2643 3503 +3087 2645 3503 +3085 2647 3503 +3083 2651 3501 +3079 2655 3501 +3075 2659 3499 +3069 2667 3497 +3059 2675 3495 +3047 2687 3491 +3031 2701 3485 +3007 2721 3479 +2973 2745 3469 +2923 2777 3457 +2847 2815 3441 +2721 2861 3417 +2465 2917 3383 +0 2983 3333 +0 3059 3257 +0 3143 3131 +0 3235 2873 +0 3335 0 +0 3441 0 +0 3553 0 +0 3671 0 +0 3791 0 +0 3913 0 +0 4039 0 +3095 2639 3505 +3093 2641 3505 +3093 2641 3505 +3093 2641 3505 +3091 2643 3503 +3091 2643 3503 +3089 2645 3503 +3087 2647 3503 +3085 2651 3501 +3081 2655 3501 +3077 2659 3499 +3069 2667 3497 +3061 2675 3495 +3049 2687 3491 +3031 2701 3485 +3007 2721 3479 +2975 2745 3471 +2925 2777 3459 +2849 2815 3441 +2723 2861 3417 +2471 2917 3383 +108 2983 3335 +0 3059 3257 +0 3143 3131 +0 3235 2875 +0 3335 0 +0 3441 0 +0 3553 0 +0 3671 0 +0 3791 0 +0 3913 0 +0 4039 0 +3097 2639 3505 +3095 2641 3505 +3095 2641 3505 +3095 2641 3505 +3093 2643 3505 +3093 2643 3505 +3091 2645 3503 +3089 2647 3503 +3087 2651 3503 +3083 2653 3501 +3079 2659 3499 +3071 2665 3497 +3063 2675 3495 +3051 2687 3491 +3033 2701 3487 +3011 2721 3479 +2977 2745 3471 +2927 2777 3459 +2853 2815 3441 +2727 2861 3417 +2479 2917 3385 +729 2983 3335 +0 3057 3259 +0 3143 3133 +0 3235 2877 +0 3335 0 +0 3441 0 +0 3553 0 +0 3671 0 +0 3791 0 +0 3913 0 +0 4039 0 +3099 2639 3505 +3099 2639 3505 +3097 2641 3505 +3097 2641 3505 +3097 2641 3505 +3095 2643 3505 +3093 2645 3505 +3091 2647 3503 +3089 2649 3503 +3085 2653 3501 +3081 2659 3501 +3075 2665 3499 +3065 2675 3495 +3053 2685 3493 +3037 2701 3487 +3013 2721 3481 +2979 2745 3471 +2931 2777 3459 +2857 2815 3443 +2733 2861 3419 +2487 2917 3385 +1043 2983 3335 +0 3057 3261 +0 3141 3133 +0 3235 2881 +0 3335 0 +0 3441 0 +0 3553 0 +0 3671 0 +0 3791 0 +0 3913 0 +0 4039 0 +3101 2639 3507 +3101 2639 3507 +3101 2639 3507 +3101 2641 3507 +3099 2641 3507 +3099 2643 3505 +3097 2645 3505 +3095 2647 3505 +3093 2649 3503 +3089 2653 3503 +3085 2659 3501 +3077 2665 3499 +3069 2673 3497 +3057 2685 3493 +3041 2701 3489 +3017 2721 3481 +2985 2745 3473 +2937 2775 3461 +2863 2815 3443 +2741 2861 3419 +2501 2917 3387 +1276 2983 3337 +0 3057 3261 +0 3141 3135 +0 3235 2883 +0 3335 699 +0 3441 0 +0 3553 0 +0 3669 0 +0 3791 0 +0 3913 0 +0 4039 0 +3107 2639 3507 +3105 2639 3507 +3105 2639 3507 +3105 2639 3507 +3103 2641 3507 +3103 2641 3507 +3101 2643 3507 +3099 2645 3505 +3097 2649 3505 +3093 2653 3503 +3089 2657 3503 +3083 2665 3501 +3073 2673 3497 +3061 2685 3495 +3045 2701 3489 +3023 2719 3483 +2989 2745 3473 +2943 2775 3461 +2869 2813 3445 +2751 2861 3421 +2517 2917 3387 +1471 2983 3339 +0 3057 3263 +0 3141 3139 +0 3235 2889 +0 3335 1073 +0 3441 0 +0 3553 0 +0 3669 0 +0 3791 0 +0 3913 0 +0 4039 0 +3111 2637 3509 +3111 2637 3509 +3111 2639 3509 +3111 2639 3509 +3109 2639 3509 +3109 2641 3509 +3107 2643 3509 +3105 2645 3507 +3103 2647 3507 +3099 2651 3505 +3095 2657 3505 +3089 2663 3503 +3079 2673 3499 +3069 2685 3495 +3051 2699 3491 +3029 2719 3485 +2997 2743 3475 +2951 2775 3463 +2879 2813 3447 +2763 2861 3423 +2537 2917 3389 +1645 2981 3341 +0 3057 3267 +0 3141 3143 +0 3235 2895 +0 3335 1327 +0 3441 0 +0 3553 0 +0 3669 0 +0 3791 0 +0 3913 0 +0 4039 0 +3119 2637 3511 +3119 2637 3511 +3119 2637 3511 +3119 2637 3511 +3117 2639 3511 +3117 2641 3511 +3115 2641 3511 +3113 2643 3509 +3111 2647 3509 +3107 2651 3507 +3103 2655 3507 +3097 2663 3505 +3087 2671 3501 +3077 2683 3499 +3061 2699 3493 +3039 2717 3487 +3007 2743 3477 +2961 2773 3465 +2893 2813 3449 +2779 2859 3425 +2563 2915 3393 +1806 2981 3345 +0 3057 3271 +0 3141 3147 +0 3233 2903 +0 3335 1533 +0 3441 0 +0 3553 0 +0 3669 0 +0 3789 0 +0 3913 0 +0 4039 0 +3129 2635 3515 +3129 2635 3515 +3129 2635 3515 +3129 2637 3515 +3127 2637 3513 +3127 2639 3513 +3125 2641 3513 +3123 2643 3513 +3121 2645 3511 +3117 2649 3511 +3113 2655 3509 +3107 2661 3507 +3099 2671 3505 +3087 2681 3501 +3071 2697 3497 +3051 2717 3489 +3019 2741 3481 +2975 2773 3469 +2909 2811 3453 +2799 2859 3429 +2597 2915 3397 +1958 2981 3349 +0 3057 3275 +0 3141 3153 +0 3233 2913 +0 3333 1714 +0 3441 0 +0 3553 0 +0 3669 0 +0 3789 0 +0 3913 0 +0 4039 0 +3143 2633 3519 +3143 2633 3519 +3141 2633 3519 +3141 2635 3517 +3141 2635 3517 +3139 2637 3517 +3139 2639 3517 +3137 2641 3517 +3133 2643 3515 +3131 2647 3515 +3127 2653 3513 +3121 2659 3511 +3113 2669 3509 +3101 2681 3505 +3087 2695 3501 +3065 2715 3493 +3037 2741 3485 +2993 2771 3473 +2929 2811 3457 +2827 2857 3433 +2637 2913 3401 +2105 2979 3353 +0 3055 3281 +0 3139 3161 +0 3233 2927 +0 3333 1879 +0 3441 0 +0 3553 0 +0 3669 0 +0 3789 0 +0 3913 0 +0 4037 0 +3159 2631 3523 +3159 2631 3523 +3159 2631 3523 +3159 2631 3523 +3157 2633 3523 +3157 2635 3523 +3155 2635 3521 +3153 2637 3521 +3151 2641 3521 +3149 2645 3519 +3143 2651 3517 +3139 2657 3517 +3131 2665 3513 +3121 2677 3511 +3105 2693 3505 +3085 2713 3499 +3057 2737 3491 +3017 2769 3479 +2955 2809 3463 +2859 2855 3439 +2687 2913 3407 +2249 2979 3361 +0 3055 3289 +0 3139 3173 +0 3233 2945 +0 3333 2034 +0 3439 0 +0 3553 0 +0 3669 0 +0 3789 0 +0 3913 0 +0 4037 0 +3181 2627 3529 +3181 2627 3529 +3181 2627 3529 +3179 2629 3529 +3179 2629 3529 +3179 2631 3529 +3177 2633 3529 +3175 2635 3527 +3173 2637 3527 +3171 2641 3527 +3167 2647 3525 +3161 2653 3523 +3153 2663 3521 +3143 2675 3517 +3129 2689 3513 +3111 2709 3505 +3085 2735 3497 +3047 2767 3485 +2989 2807 3469 +2901 2853 3447 +2745 2911 3417 +2389 2977 3371 +0 3053 3301 +0 3137 3187 +0 3231 2969 +0 3333 2183 +0 3439 0 +0 3551 0 +0 3669 0 +0 3789 0 +0 3913 0 +0 4037 0 +3209 2621 3539 +3207 2623 3539 +3207 2623 3539 +3207 2623 3539 +3207 2625 3537 +3205 2625 3537 +3205 2627 3537 +3203 2629 3537 +3201 2633 3535 +3199 2637 3535 +3195 2643 3533 +3189 2649 3531 +3183 2659 3529 +3173 2671 3525 +3161 2685 3521 +3143 2705 3515 +3117 2731 3507 +3083 2763 3495 +3031 2803 3479 +2949 2851 3459 +2813 2909 3427 +2527 2975 3383 +0 3051 3315 +0 3137 3205 +0 3229 2997 +0 3331 2327 +0 3439 0 +0 3551 0 +0 3669 0 +0 3789 0 +0 3913 0 +0 4037 0 +3243 2615 3549 +3243 2615 3549 +3241 2617 3549 +3241 2617 3549 +3241 2617 3549 +3239 2619 3549 +3239 2621 3549 +3237 2623 3547 +3235 2627 3547 +3233 2631 3547 +3229 2635 3545 +3225 2643 3543 +3219 2653 3541 +3209 2665 3537 +3199 2681 3533 +3181 2701 3527 +3159 2727 3519 +3127 2759 3507 +3079 2799 3493 +3009 2847 3471 +2891 2905 3441 +2663 2971 3399 +1725 3049 3333 +0 3135 3229 +0 3229 3035 +0 3329 2467 +0 3437 0 +0 3551 0 +0 3667 0 +0 3789 0 +0 3911 0 +0 4037 0 +3285 2607 3565 +3285 2607 3565 +3283 2607 3565 +3283 2609 3565 +3283 2609 3565 +3283 2611 3563 +3281 2613 3563 +3279 2615 3563 +3279 2617 3563 +3275 2621 3561 +3273 2627 3559 +3269 2635 3559 +3263 2645 3555 +3255 2657 3553 +3245 2673 3549 +3229 2693 3543 +3209 2719 3535 +3181 2753 3525 +3139 2793 3509 +3077 2841 3489 +2977 2899 3461 +2797 2967 3419 +2323 3045 3357 +0 3131 3257 +0 3225 3079 +0 3327 2607 +0 3435 0 +0 3549 0 +0 3667 0 +0 3787 0 +0 3911 0 +0 4037 0 +3335 2595 3583 +3335 2595 3583 +3335 2595 3583 +3335 2597 3583 +3333 2597 3583 +3333 2599 3583 +3333 2601 3583 +3331 2603 3581 +3329 2605 3581 +3327 2611 3581 +3325 2615 3579 +3321 2623 3577 +3315 2633 3575 +3309 2645 3573 +3299 2661 3567 +3287 2683 3563 +3269 2709 3555 +3243 2743 3545 +3207 2785 3531 +3155 2835 3511 +3073 2893 3485 +2933 2963 3445 +2633 3041 3387 +0 3127 3295 +0 3223 3131 +0 3325 2743 +0 3433 0 +0 3547 0 +0 3665 0 +0 3787 0 +0 3911 0 +0 4037 0 +3395 2577 3607 +3395 2577 3607 +3395 2579 3607 +3395 2579 3607 +3393 2581 3607 +3393 2581 3607 +3393 2583 3607 +3391 2587 3607 +3391 2589 3605 +3389 2593 3605 +3385 2599 3603 +3383 2607 3601 +3379 2617 3599 +3373 2631 3597 +3363 2647 3593 +3353 2669 3587 +3337 2697 3581 +3315 2731 3571 +3285 2773 3559 +3241 2825 3539 +3175 2885 3515 +3067 2955 3477 +2863 3035 3423 +2235 3123 3339 +0 3219 3195 +0 3323 2879 +0 3431 0 +0 3545 0 +0 3665 0 +0 3785 0 +0 3909 0 +0 4035 0 +3465 2555 3639 +3465 2555 3639 +3465 2555 3639 +3465 2557 3639 +3463 2557 3637 +3463 2559 3637 +3463 2561 3637 +3461 2563 3637 +3461 2567 3637 +3459 2571 3635 +3457 2577 3635 +3455 2585 3633 +3451 2597 3631 +3445 2609 3629 +3439 2627 3625 +3429 2651 3619 +3415 2679 3613 +3397 2715 3605 +3373 2759 3591 +3335 2811 3575 +3283 2873 3551 +3199 2945 3517 +3057 3025 3469 +2753 3115 3393 +0 3213 3267 +0 3317 3013 +0 3427 479 +0 3543 0 +0 3661 0 +0 3783 0 +0 3909 0 +0 4035 0 +3543 2521 3677 +3543 2521 3677 +3543 2521 3677 +3543 2523 3675 +3543 2525 3675 +3543 2525 3675 +3541 2527 3675 +3541 2531 3675 +3541 2535 3675 +3539 2539 3673 +3537 2545 3673 +3535 2555 3671 +3531 2565 3669 +3527 2581 3667 +3521 2599 3663 +3513 2623 3659 +3503 2653 3653 +3487 2691 3645 +3467 2737 3633 +3439 2793 3619 +3395 2857 3597 +3333 2931 3567 +3231 3015 3523 +3047 3107 3455 +2543 3205 3349 +0 3311 3147 +0 3423 2533 +0 3539 0 +0 3659 0 +0 3781 0 +0 3907 0 +0 4033 0 +3631 2471 3723 +3631 2473 3723 +3631 2473 3723 +3631 2475 3723 +3631 2475 3721 +3631 2477 3721 +3631 2479 3721 +3629 2483 3721 +3629 2487 3721 +3627 2493 3719 +3627 2499 3719 +3625 2509 3717 +3621 2521 3717 +3619 2537 3713 +3613 2559 3711 +3607 2585 3707 +3599 2617 3701 +3587 2659 3695 +3569 2707 3685 +3547 2767 3671 +3513 2835 3651 +3465 2911 3625 +3393 2999 3585 +3271 3093 3529 +3031 3195 3439 +1838 3303 3281 +0 3417 2915 +0 3535 0 +0 3655 0 +0 3779 0 +0 3905 0 +0 4031 0 +3727 2397 3777 +3727 2397 3777 +3727 2399 3777 +3727 2399 3777 +3727 2401 3777 +3727 2403 3777 +3727 2407 3777 +3725 2411 3777 +3725 2415 3775 +3725 2421 3775 +3723 2429 3775 +3721 2441 3773 +3719 2455 3773 +3717 2475 3771 +3713 2497 3767 +3707 2527 3763 +3701 2565 3759 +3691 2611 3753 +3679 2665 3743 +3659 2729 3731 +3635 2803 3715 +3599 2885 3691 +3545 2977 3659 +3461 3075 3611 +3319 3181 3537 +3009 3293 3415 +0 3409 3173 +0 3527 1904 +0 3651 0 +0 3775 0 +0 3901 0 +0 4029 0 +3831 2273 3843 +3831 2273 3843 +3831 2275 3843 +3831 2277 3843 +3831 2279 3841 +3831 2281 3841 +3829 2285 3841 +3829 2289 3841 +3829 2297 3841 +3829 2305 3841 +3827 2315 3839 +3827 2329 3839 +3825 2349 3837 +3823 2371 3835 +3819 2401 3833 +3815 2437 3831 +3809 2483 3827 +3801 2537 3821 +3791 2601 3813 +3777 2673 3803 +3759 2755 3789 +3731 2847 3769 +3691 2945 3741 +3633 3051 3701 +3539 3161 3641 +3375 3277 3547 +2979 3397 3381 +0 3519 2969 +0 3643 0 +0 3769 0 +0 3897 0 +0 4027 0 +3939 2026 3917 +3939 2027 3917 +3939 2029 3917 +3939 2032 3917 +3939 2035 3917 +3939 2040 3917 +3939 2046 3915 +3939 2055 3915 +3939 2065 3915 +3937 2079 3915 +3937 2097 3915 +3937 2119 3913 +3935 2149 3913 +3933 2185 3911 +3931 2229 3909 +3927 2281 3907 +3923 2343 3903 +3917 2415 3899 +3909 2497 3891 +3899 2587 3883 +3883 2683 3871 +3863 2789 3855 +3833 2899 3833 +3791 3015 3799 +3729 3133 3753 +3627 3255 3681 +3441 3379 3561 +2935 3507 3331 +0 3633 2333 +0 3763 0 +0 3893 0 +0 4023 0 +4055 463 3999 +4055 508 3999 +4053 561 3999 +4053 623 3999 +4053 696 3999 +4053 777 3999 +4053 867 3999 +4053 965 3999 +4053 1070 3999 +4053 1181 3999 +4051 1296 3999 +4051 1415 3997 +4051 1537 3997 +4049 1662 3995 +4047 1788 3993 +4045 1916 3991 +4041 2045 3989 +4037 2175 3985 +4031 2305 3979 +4023 2435 3973 +4011 2567 3963 +3995 2697 3949 +3973 2829 3931 +3943 2961 3905 +3899 3093 3867 +3831 3225 3813 +3723 3357 3727 +3517 3489 3579 +2867 3621 3253 +0 3753 0 +0 3885 0 +0 4017 0 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4091 +4095 0 4089 +4095 0 4089 +4095 0 4089 +4095 0 4087 +4095 0 4085 +4095 0 4083 +4095 947 4079 +4095 1757 4075 +4095 2097 4069 +4095 2339 4061 +4095 2539 4051 +4095 2717 4037 +4089 2879 4015 +4057 3033 3987 +4011 3181 3945 +3941 3325 3883 +3825 3465 3783 +3603 3603 3603 +2759 3739 3123 +0 3875 0 +0 4009 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 1417 4095 +4095 2167 4095 +4095 2499 4095 +4095 2739 4095 +4095 2937 4095 +4095 3115 4077 +4095 3277 4033 +4055 3431 3963 +3933 3577 3849 +3697 3721 3631 +2557 3861 2857 +0 3999 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 1729 4095 +4095 2441 4095 +4095 2769 4095 +4095 3007 4095 +4095 3203 4095 +4095 3379 4095 +4095 3541 4051 +4047 3695 3923 +3797 3843 3669 +1924 3985 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2347 4095 +4095 2805 4095 +4095 3085 4095 +4095 3301 4095 +4095 3489 4095 +4095 3657 4095 +4095 3815 4009 +3905 3967 3713 +3221 2773 3635 +3221 2773 3635 +3221 2773 3635 +3221 2773 3635 +3221 2775 3635 +3219 2775 3635 +3219 2777 3635 +3217 2779 3635 +3215 2781 3633 +3213 2783 3633 +3209 2787 3631 +3203 2793 3629 +3197 2799 3627 +3187 2807 3625 +3175 2819 3621 +3159 2835 3617 +3135 2853 3611 +3101 2879 3601 +3051 2909 3589 +2973 2947 3571 +2845 2995 3547 +2585 3051 3515 +0 3115 3465 +0 3191 3387 +0 3275 3261 +0 3367 3003 +0 3467 0 +0 3573 0 +0 3685 0 +0 3803 0 +0 3923 0 +0 4045 0 +3223 2773 3635 +3223 2773 3635 +3221 2773 3635 +3221 2773 3635 +3221 2775 3635 +3219 2775 3635 +3219 2777 3635 +3217 2777 3635 +3215 2781 3633 +3213 2783 3633 +3209 2787 3631 +3203 2791 3631 +3197 2799 3629 +3189 2807 3625 +3175 2819 3621 +3159 2835 3617 +3135 2853 3611 +3101 2879 3601 +3051 2909 3589 +2975 2947 3571 +2847 2995 3549 +2587 3051 3515 +0 3115 3465 +0 3191 3389 +0 3275 3261 +0 3367 3003 +0 3467 0 +0 3573 0 +0 3685 0 +0 3803 0 +0 3923 0 +0 4045 0 +3223 2773 3635 +3223 2773 3635 +3223 2773 3635 +3221 2773 3635 +3221 2775 3635 +3221 2775 3635 +3219 2777 3635 +3217 2777 3635 +3215 2781 3633 +3213 2783 3633 +3209 2787 3631 +3205 2791 3631 +3197 2799 3629 +3189 2807 3625 +3177 2819 3621 +3159 2835 3617 +3135 2853 3611 +3101 2879 3601 +3051 2909 3589 +2975 2947 3573 +2847 2995 3549 +2587 3051 3515 +0 3115 3465 +0 3191 3389 +0 3275 3261 +0 3367 3003 +0 3467 0 +0 3573 0 +0 3685 0 +0 3803 0 +0 3923 0 +0 4045 0 +3223 2773 3635 +3223 2773 3635 +3223 2773 3635 +3223 2773 3635 +3221 2775 3635 +3221 2775 3635 +3219 2777 3635 +3219 2777 3635 +3217 2781 3633 +3213 2783 3633 +3209 2787 3631 +3205 2791 3631 +3199 2799 3629 +3189 2807 3625 +3177 2819 3623 +3161 2835 3617 +3137 2853 3611 +3103 2879 3601 +3053 2909 3589 +2977 2947 3573 +2849 2995 3549 +2591 3051 3515 +0 3115 3465 +0 3191 3389 +0 3275 3261 +0 3367 3005 +0 3467 0 +0 3573 0 +0 3685 0 +0 3803 0 +0 3923 0 +0 4045 0 +3225 2773 3637 +3223 2773 3637 +3223 2773 3635 +3223 2773 3635 +3223 2773 3635 +3221 2775 3635 +3221 2777 3635 +3219 2777 3635 +3217 2779 3633 +3215 2783 3633 +3211 2787 3633 +3205 2791 3631 +3199 2799 3629 +3191 2807 3625 +3177 2819 3623 +3161 2833 3617 +3137 2853 3611 +3103 2877 3601 +3053 2909 3589 +2977 2947 3573 +2851 2995 3549 +2593 3051 3515 +0 3115 3465 +0 3191 3389 +0 3275 3261 +0 3367 3005 +0 3467 0 +0 3573 0 +0 3685 0 +0 3803 0 +0 3923 0 +0 4045 0 +3225 2771 3637 +3225 2773 3637 +3225 2773 3637 +3225 2773 3637 +3223 2773 3635 +3223 2775 3635 +3221 2775 3635 +3221 2777 3635 +3219 2779 3635 +3215 2783 3633 +3211 2787 3633 +3207 2791 3631 +3201 2799 3629 +3191 2807 3627 +3179 2819 3623 +3163 2833 3617 +3139 2853 3611 +3105 2877 3603 +3055 2909 3589 +2979 2947 3573 +2853 2995 3549 +2597 3049 3515 +0 3115 3465 +0 3191 3389 +0 3275 3263 +0 3367 3007 +0 3467 0 +0 3573 0 +0 3685 0 +0 3803 0 +0 3923 0 +0 4045 0 +3227 2771 3637 +3227 2773 3637 +3225 2773 3637 +3225 2773 3637 +3225 2773 3637 +3225 2775 3637 +3223 2775 3635 +3221 2777 3635 +3219 2779 3635 +3217 2783 3633 +3213 2787 3633 +3209 2791 3631 +3201 2799 3629 +3193 2807 3627 +3181 2819 3623 +3163 2833 3619 +3141 2853 3611 +3107 2877 3603 +3057 2909 3591 +2981 2947 3573 +2855 2993 3549 +2603 3049 3515 +240 3115 3467 +0 3191 3391 +0 3275 3263 +0 3367 3007 +0 3467 0 +0 3573 0 +0 3685 0 +0 3803 0 +0 3923 0 +0 4045 0 +3229 2771 3637 +3229 2771 3637 +3227 2773 3637 +3227 2773 3637 +3227 2773 3637 +3225 2775 3637 +3225 2775 3637 +3223 2777 3635 +3221 2779 3635 +3219 2783 3635 +3215 2787 3633 +3211 2791 3631 +3203 2797 3629 +3195 2807 3627 +3183 2819 3623 +3165 2833 3619 +3143 2853 3611 +3109 2877 3603 +3059 2909 3591 +2985 2947 3573 +2861 2993 3551 +2611 3049 3517 +861 3115 3467 +0 3191 3391 +0 3275 3265 +0 3367 3009 +0 3467 0 +0 3573 0 +0 3685 0 +0 3803 0 +0 3923 0 +0 4045 0 +3231 2771 3639 +3231 2771 3637 +3231 2771 3637 +3229 2773 3637 +3229 2773 3637 +3229 2773 3637 +3227 2775 3637 +3225 2777 3637 +3223 2779 3635 +3221 2781 3635 +3217 2785 3633 +3213 2791 3633 +3207 2797 3631 +3197 2807 3627 +3185 2819 3625 +3169 2833 3619 +3145 2853 3613 +3113 2877 3603 +3063 2909 3591 +2989 2947 3575 +2865 2993 3551 +2619 3049 3517 +1175 3115 3467 +0 3189 3393 +0 3275 3267 +0 3367 3013 +0 3467 0 +0 3573 0 +0 3685 0 +0 3803 0 +0 3923 0 +0 4045 0 +3235 2771 3639 +3233 2771 3639 +3233 2771 3639 +3233 2771 3639 +3233 2773 3639 +3231 2773 3639 +3231 2775 3637 +3229 2777 3637 +3227 2779 3637 +3225 2781 3635 +3221 2785 3635 +3217 2791 3633 +3209 2797 3631 +3201 2807 3629 +3189 2817 3625 +3173 2833 3621 +3149 2853 3613 +3117 2877 3605 +3069 2907 3593 +2995 2947 3575 +2873 2993 3553 +2633 3049 3519 +1408 3115 3469 +0 3189 3393 +0 3273 3269 +0 3367 3015 +0 3467 831 +0 3573 0 +0 3685 0 +0 3803 0 +0 3923 0 +0 4045 0 +3239 2771 3641 +3239 2771 3641 +3237 2771 3639 +3237 2771 3639 +3237 2771 3639 +3237 2773 3639 +3235 2775 3639 +3233 2775 3639 +3231 2777 3637 +3229 2781 3637 +3225 2785 3637 +3221 2789 3635 +3215 2797 3633 +3205 2805 3629 +3193 2817 3627 +3177 2833 3621 +3155 2851 3615 +3123 2877 3607 +3075 2907 3593 +3001 2947 3577 +2883 2993 3553 +2649 3049 3519 +1603 3115 3471 +0 3189 3395 +0 3273 3271 +0 3367 3021 +0 3467 1205 +0 3573 0 +0 3685 0 +0 3803 0 +0 3923 0 +0 4045 0 +3245 2769 3641 +3245 2769 3641 +3243 2769 3641 +3243 2771 3641 +3243 2771 3641 +3241 2773 3641 +3241 2773 3641 +3239 2775 3641 +3237 2777 3639 +3235 2781 3639 +3231 2783 3637 +3227 2789 3637 +3221 2795 3635 +3211 2805 3631 +3201 2817 3627 +3185 2831 3623 +3161 2851 3617 +3129 2875 3607 +3083 2907 3595 +3011 2945 3579 +2895 2993 3555 +2669 3049 3523 +1777 3115 3473 +0 3189 3399 +0 3273 3275 +0 3367 3027 +0 3467 1459 +0 3573 0 +0 3685 0 +0 3801 0 +0 3923 0 +0 4045 0 +3251 2769 3643 +3251 2769 3643 +3251 2769 3643 +3251 2769 3643 +3251 2771 3643 +3249 2771 3643 +3249 2773 3643 +3247 2773 3643 +3245 2777 3641 +3243 2779 3641 +3239 2783 3639 +3235 2789 3639 +3229 2795 3637 +3221 2803 3633 +3209 2815 3631 +3193 2831 3625 +3171 2851 3619 +3139 2875 3611 +3093 2907 3597 +3025 2945 3581 +2911 2991 3557 +2695 3047 3525 +1938 3113 3477 +0 3189 3403 +0 3273 3279 +0 3365 3035 +0 3467 1665 +0 3573 0 +0 3685 0 +0 3801 0 +0 3923 0 +0 4045 0 +3261 2767 3647 +3261 2767 3647 +3261 2767 3647 +3261 2767 3647 +3261 2769 3647 +3259 2769 3645 +3259 2771 3645 +3257 2773 3645 +3255 2775 3645 +3253 2777 3643 +3249 2781 3643 +3245 2787 3641 +3239 2793 3639 +3231 2803 3637 +3219 2815 3633 +3205 2829 3629 +3183 2849 3621 +3151 2873 3613 +3107 2905 3601 +3041 2943 3585 +2933 2991 3561 +2729 3047 3529 +2091 3113 3481 +0 3189 3407 +0 3273 3285 +0 3365 3045 +0 3465 1846 +0 3573 0 +0 3685 0 +0 3801 0 +0 3921 0 +0 4045 0 +3275 2765 3651 +3275 2765 3651 +3275 2765 3651 +3273 2765 3651 +3273 2767 3649 +3273 2767 3649 +3271 2769 3649 +3271 2771 3649 +3269 2773 3649 +3267 2775 3647 +3263 2779 3647 +3259 2785 3645 +3253 2791 3643 +3245 2801 3641 +3233 2813 3637 +3219 2827 3633 +3197 2847 3625 +3169 2873 3617 +3125 2903 3605 +3061 2943 3589 +2959 2989 3565 +2769 3047 3533 +2237 3111 3485 +0 3187 3413 +0 3271 3293 +0 3365 3059 +0 3465 2011 +0 3573 0 +0 3685 0 +0 3801 0 +0 3921 0 +0 4045 0 +3291 2763 3655 +3291 2763 3655 +3291 2763 3655 +3291 2763 3655 +3291 2763 3655 +3289 2765 3655 +3289 2767 3655 +3287 2767 3653 +3285 2771 3653 +3283 2773 3653 +3281 2777 3651 +3275 2783 3651 +3271 2789 3649 +3263 2799 3645 +3253 2809 3643 +3237 2825 3637 +3217 2845 3631 +3189 2871 3623 +3149 2901 3611 +3089 2941 3595 +2991 2989 3571 +2819 3045 3539 +2381 3111 3493 +0 3187 3421 +0 3271 3305 +0 3365 3077 +0 3465 2167 +0 3571 0 +0 3685 0 +0 3801 0 +0 3921 0 +0 4045 0 +3313 2759 3663 +3313 2759 3661 +3313 2759 3661 +3313 2759 3661 +3311 2761 3661 +3311 2761 3661 +3311 2763 3661 +3309 2765 3661 +3307 2767 3659 +3305 2769 3659 +3303 2773 3659 +3299 2779 3657 +3293 2785 3655 +3285 2795 3653 +3275 2807 3649 +3261 2823 3645 +3243 2841 3639 +3217 2867 3629 +3179 2899 3619 +3121 2939 3603 +3033 2985 3579 +2877 3043 3549 +2521 3109 3503 +0 3185 3433 +0 3269 3319 +0 3363 3101 +0 3465 2315 +0 3571 0 +0 3683 0 +0 3801 0 +0 3921 0 +0 4045 0 +3341 2753 3671 +3341 2753 3671 +3341 2755 3671 +3339 2755 3671 +3339 2755 3671 +3339 2757 3671 +3337 2757 3669 +3337 2759 3669 +3335 2761 3669 +3333 2765 3667 +3331 2769 3667 +3327 2775 3665 +3321 2781 3663 +3315 2791 3661 +3305 2803 3657 +3293 2817 3653 +3275 2837 3647 +3249 2863 3639 +3215 2895 3627 +3163 2935 3613 +3081 2983 3591 +2945 3041 3559 +2659 3107 3515 +0 3183 3447 +0 3269 3337 +0 3363 3131 +0 3463 2459 +0 3571 0 +0 3683 0 +0 3801 0 +0 3921 0 +0 4045 0 +3375 2747 3683 +3375 2747 3683 +3375 2747 3681 +3373 2749 3681 +3373 2749 3681 +3373 2751 3681 +3373 2751 3681 +3371 2753 3681 +3369 2755 3681 +3367 2759 3679 +3365 2763 3679 +3361 2767 3677 +3357 2775 3675 +3351 2785 3673 +3341 2797 3669 +3331 2813 3665 +3313 2833 3659 +3291 2859 3651 +3259 2891 3641 +3213 2931 3625 +3141 2979 3603 +3023 3037 3573 +2795 3103 3531 +1857 3181 3465 +0 3267 3361 +0 3361 3167 +0 3461 2601 +0 3569 0 +0 3683 0 +0 3799 0 +0 3921 0 +0 4043 0 +3417 2739 3697 +3417 2739 3697 +3417 2739 3697 +3415 2739 3697 +3415 2741 3697 +3415 2741 3697 +3415 2743 3695 +3413 2745 3695 +3413 2747 3695 +3411 2749 3695 +3407 2753 3693 +3405 2759 3691 +3401 2767 3691 +3395 2777 3687 +3387 2789 3685 +3377 2805 3681 +3361 2825 3675 +3341 2851 3667 +3313 2885 3657 +3271 2925 3641 +3209 2973 3621 +3109 3033 3593 +2929 3099 3551 +2455 3177 3489 +0 3263 3389 +0 3359 3211 +0 3459 2739 +0 3569 0 +0 3681 0 +0 3799 0 +0 3919 0 +0 4043 0 +3467 2727 3715 +3467 2727 3715 +3467 2727 3715 +3467 2727 3715 +3467 2729 3715 +3465 2729 3715 +3465 2731 3715 +3465 2733 3715 +3463 2735 3713 +3461 2737 3713 +3459 2743 3713 +3457 2747 3711 +3453 2755 3709 +3447 2765 3707 +3441 2777 3705 +3431 2795 3701 +3419 2815 3695 +3401 2841 3687 +3375 2875 3677 +3339 2917 3663 +3287 2967 3643 +3205 3025 3617 +3065 3095 3577 +2765 3173 3519 +0 3259 3427 +0 3355 3265 +0 3457 2875 +0 3567 0 +0 3679 0 +0 3797 0 +0 3919 0 +0 4043 0 +3527 2709 3741 +3527 2709 3741 +3527 2711 3739 +3527 2711 3739 +3527 2711 3739 +3527 2713 3739 +3525 2713 3739 +3525 2715 3739 +3523 2719 3739 +3523 2721 3737 +3521 2727 3737 +3519 2731 3735 +3515 2739 3735 +3511 2749 3731 +3505 2763 3729 +3497 2779 3725 +3485 2801 3719 +3469 2829 3713 +3447 2863 3703 +3417 2905 3691 +3373 2957 3671 +3307 3017 3647 +3199 3087 3609 +2997 3167 3555 +2367 3255 3471 +0 3351 3327 +0 3455 3011 +0 3563 0 +0 3677 0 +0 3797 0 +0 3917 0 +0 4041 0 +3597 2685 3771 +3597 2687 3771 +3597 2687 3771 +3597 2687 3771 +3597 2689 3771 +3595 2689 3771 +3595 2691 3769 +3595 2693 3769 +3593 2695 3769 +3593 2699 3769 +3591 2703 3767 +3589 2709 3767 +3587 2717 3765 +3583 2729 3763 +3577 2741 3761 +3571 2759 3757 +3561 2783 3751 +3547 2811 3745 +3529 2847 3737 +3505 2891 3725 +3469 2943 3707 +3415 3005 3683 +3331 3077 3649 +3191 3157 3601 +2885 3247 3525 +0 3345 3399 +0 3449 3145 +0 3559 611 +0 3675 0 +0 3795 0 +0 3917 0 +0 4041 0 +3675 2653 3809 +3675 2653 3809 +3675 2653 3809 +3675 2655 3809 +3675 2655 3809 +3675 2657 3807 +3675 2657 3807 +3675 2659 3807 +3673 2663 3807 +3673 2667 3807 +3671 2671 3805 +3669 2677 3805 +3667 2687 3803 +3663 2697 3801 +3659 2713 3799 +3653 2731 3795 +3645 2755 3791 +3635 2785 3785 +3621 2823 3777 +3599 2869 3765 +3571 2925 3751 +3529 2989 3729 +3465 3063 3699 +3363 3147 3655 +3179 3239 3589 +2675 3337 3481 +0 3443 3281 +0 3555 2665 +0 3671 0 +0 3791 0 +0 3913 0 +0 4039 0 +3763 2603 3855 +3763 2605 3855 +3763 2605 3855 +3763 2605 3855 +3763 2607 3855 +3763 2607 3855 +3763 2609 3853 +3763 2611 3853 +3761 2615 3853 +3761 2619 3853 +3759 2625 3853 +3759 2631 3851 +3757 2641 3849 +3753 2653 3849 +3751 2671 3847 +3745 2691 3843 +3739 2717 3839 +3731 2751 3833 +3719 2791 3827 +3701 2839 3817 +3679 2899 3803 +3645 2967 3783 +3597 3043 3757 +3525 3131 3719 +3403 3225 3661 +3163 3327 3571 +1971 3435 3413 +0 3549 3047 +0 3667 0 +0 3787 0 +0 3911 0 +0 4037 0 +3859 2529 3909 +3859 2529 3909 +3859 2531 3909 +3859 2531 3909 +3859 2533 3909 +3859 2533 3909 +3859 2535 3909 +3859 2539 3909 +3859 2543 3909 +3857 2547 3909 +3857 2553 3907 +3855 2561 3907 +3853 2573 3905 +3851 2587 3905 +3849 2607 3903 +3845 2629 3899 +3839 2659 3897 +3833 2697 3891 +3823 2743 3885 +3811 2797 3875 +3793 2861 3863 +3767 2935 3847 +3731 3017 3825 +3677 3109 3791 +3593 3207 3743 +3451 3313 3669 +3141 3425 3547 +0 3541 3305 +0 3659 2036 +0 3783 0 +0 3907 0 +0 4033 0 +3963 2405 3975 +3963 2405 3975 +3963 2407 3975 +3963 2407 3975 +3963 2409 3975 +3963 2411 3975 +3963 2413 3973 +3961 2417 3973 +3961 2423 3973 +3961 2429 3973 +3961 2437 3973 +3959 2447 3971 +3959 2461 3971 +3957 2481 3969 +3955 2503 3967 +3951 2533 3965 +3947 2571 3963 +3941 2615 3959 +3935 2669 3953 +3923 2733 3945 +3909 2805 3935 +3891 2887 3921 +3863 2979 3901 +3823 3077 3873 +3765 3183 3833 +3671 3293 3773 +3507 3409 3679 +3111 3529 3513 +0 3651 3101 +0 3775 0 +0 3901 0 +0 4029 0 +4073 2157 4049 +4073 2157 4049 +4071 2159 4049 +4071 2161 4049 +4071 2163 4049 +4071 2167 4049 +4071 2173 4049 +4071 2179 4049 +4071 2187 4047 +4071 2197 4047 +4071 2211 4047 +4069 2229 4047 +4069 2251 4045 +4067 2281 4045 +4065 2317 4043 +4063 2361 4041 +4059 2413 4039 +4055 2475 4035 +4049 2547 4031 +4041 2629 4025 +4031 2719 4015 +4015 2815 4003 +3995 2921 3987 +3967 3031 3965 +3923 3147 3931 +3861 3265 3885 +3759 3387 3813 +3573 3511 3693 +3067 3639 3463 +0 3765 2465 +0 3895 0 +0 4025 0 +4095 559 4095 +4095 596 4095 +4095 640 4095 +4095 693 4095 +4095 756 4095 +4095 828 4095 +4095 909 4095 +4095 999 4095 +4095 1097 4095 +4095 1202 4095 +4095 1313 4095 +4095 1428 4095 +4095 1547 4095 +4095 1669 4095 +4095 1794 4095 +4095 1920 4095 +4095 2049 4095 +4095 2177 4095 +4095 2307 4095 +4095 2437 4095 +4095 2567 4095 +4095 2699 4095 +4095 2831 4081 +4095 2961 4063 +4075 3093 4037 +4031 3225 4001 +3963 3357 3945 +3855 3489 3859 +3649 3621 3711 +3001 3753 3385 +0 3885 0 +0 4017 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 1079 4095 +4095 1889 4095 +4095 2229 4095 +4095 2471 4095 +4095 2671 4095 +4095 2849 4095 +4095 3011 4095 +4095 3165 4095 +4095 3313 4077 +4073 3457 4015 +3957 3597 3915 +3735 3735 3735 +2891 3871 3255 +0 4007 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 1549 4095 +4095 2299 4095 +4095 2631 4095 +4095 2871 4095 +4095 3069 4095 +4095 3247 4095 +4095 3409 4095 +4095 3563 4095 +4067 3709 3981 +3829 3853 3765 +2689 3993 2989 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 1862 4095 +4095 2573 4095 +4095 2901 4095 +4095 3139 4095 +4095 3337 4095 +4095 3511 4095 +4095 3673 4095 +4095 3827 4057 +3929 3975 3801 +3355 2905 3767 +3353 2905 3767 +3353 2905 3767 +3353 2905 3767 +3353 2905 3767 +3353 2907 3767 +3351 2907 3767 +3351 2909 3767 +3349 2911 3767 +3347 2913 3765 +3345 2915 3765 +3341 2919 3763 +3335 2925 3763 +3329 2931 3761 +3319 2939 3757 +3307 2951 3753 +3291 2967 3749 +3267 2985 3743 +3233 3011 3733 +3183 3041 3721 +3105 3079 3703 +2977 3127 3681 +2715 3183 3647 +0 3247 3597 +0 3323 3521 +0 3407 3393 +0 3499 3135 +0 3599 0 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3355 2905 3767 +3355 2905 3767 +3353 2905 3767 +3353 2905 3767 +3353 2905 3767 +3353 2907 3767 +3351 2907 3767 +3351 2909 3767 +3349 2911 3767 +3347 2913 3765 +3345 2915 3765 +3341 2919 3763 +3335 2925 3763 +3329 2931 3761 +3321 2939 3757 +3307 2951 3753 +3291 2967 3749 +3267 2985 3743 +3233 3011 3733 +3183 3041 3721 +3105 3079 3703 +2977 3127 3681 +2717 3183 3647 +0 3247 3597 +0 3323 3521 +0 3407 3393 +0 3499 3135 +0 3599 0 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3355 2905 3767 +3355 2905 3767 +3355 2905 3767 +3353 2905 3767 +3353 2905 3767 +3353 2907 3767 +3351 2907 3767 +3351 2909 3767 +3349 2911 3767 +3347 2913 3765 +3345 2915 3765 +3341 2919 3763 +3337 2925 3763 +3329 2931 3761 +3321 2939 3757 +3309 2951 3753 +3291 2967 3749 +3267 2985 3743 +3233 3011 3733 +3183 3041 3721 +3107 3079 3705 +2979 3127 3681 +2719 3183 3647 +0 3247 3597 +0 3323 3521 +0 3407 3393 +0 3499 3135 +0 3599 0 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3355 2905 3767 +3355 2905 3767 +3355 2905 3767 +3355 2905 3767 +3353 2905 3767 +3353 2907 3767 +3353 2907 3767 +3351 2909 3767 +3349 2911 3767 +3347 2913 3765 +3345 2915 3765 +3341 2919 3763 +3337 2925 3763 +3329 2931 3761 +3321 2939 3757 +3309 2951 3753 +3291 2967 3749 +3267 2985 3743 +3233 3011 3733 +3183 3041 3721 +3107 3079 3705 +2979 3127 3681 +2721 3183 3647 +0 3247 3597 +0 3323 3521 +0 3407 3393 +0 3499 3135 +0 3599 0 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3355 2905 3769 +3355 2905 3769 +3355 2905 3769 +3355 2905 3767 +3355 2905 3767 +3353 2907 3767 +3353 2907 3767 +3351 2909 3767 +3351 2909 3767 +3349 2913 3765 +3345 2915 3765 +3343 2919 3763 +3337 2923 3763 +3331 2931 3761 +3321 2939 3757 +3309 2951 3755 +3293 2967 3749 +3269 2985 3743 +3235 3011 3733 +3185 3041 3721 +3109 3079 3705 +2981 3127 3681 +2723 3183 3647 +0 3247 3597 +0 3323 3521 +0 3407 3393 +0 3499 3137 +0 3599 0 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3357 2903 3769 +3357 2905 3769 +3355 2905 3769 +3355 2905 3769 +3355 2905 3767 +3355 2907 3767 +3353 2907 3767 +3353 2909 3767 +3351 2909 3767 +3349 2913 3767 +3347 2915 3765 +3343 2919 3765 +3337 2923 3763 +3331 2931 3761 +3323 2939 3757 +3311 2951 3755 +3293 2967 3749 +3269 2985 3743 +3235 3011 3733 +3185 3041 3721 +3109 3079 3705 +2983 3127 3681 +2725 3183 3647 +0 3247 3597 +0 3323 3521 +0 3407 3393 +0 3499 3137 +0 3599 0 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3357 2903 3769 +3357 2905 3769 +3357 2905 3769 +3357 2905 3769 +3357 2905 3769 +3355 2905 3769 +3355 2907 3767 +3353 2909 3767 +3353 2909 3767 +3351 2911 3767 +3347 2915 3765 +3343 2919 3765 +3339 2923 3763 +3333 2931 3761 +3323 2939 3759 +3311 2951 3755 +3295 2965 3749 +3271 2985 3743 +3237 3009 3735 +3187 3041 3721 +3111 3079 3705 +2985 3127 3681 +2729 3183 3647 +0 3247 3597 +0 3323 3521 +0 3407 3395 +0 3499 3139 +0 3599 0 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3359 2903 3769 +3359 2903 3769 +3359 2905 3769 +3359 2905 3769 +3357 2905 3769 +3357 2905 3769 +3357 2907 3769 +3355 2907 3767 +3353 2909 3767 +3351 2911 3767 +3349 2915 3765 +3345 2919 3765 +3341 2923 3763 +3333 2931 3761 +3325 2939 3759 +3313 2951 3755 +3295 2965 3751 +3273 2985 3743 +3239 3009 3735 +3189 3041 3723 +3113 3079 3705 +2987 3127 3681 +2735 3181 3647 +372 3247 3599 +0 3323 3523 +0 3407 3395 +0 3499 3139 +0 3599 0 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3361 2903 3769 +3361 2903 3769 +3361 2903 3769 +3359 2905 3769 +3359 2905 3769 +3359 2905 3769 +3359 2907 3769 +3357 2907 3769 +3355 2909 3767 +3353 2911 3767 +3351 2915 3767 +3347 2919 3765 +3343 2923 3763 +3335 2931 3761 +3327 2939 3759 +3315 2951 3755 +3297 2965 3751 +3275 2985 3745 +3241 3009 3735 +3193 3041 3723 +3117 3079 3705 +2993 3125 3683 +2743 3181 3649 +994 3247 3599 +0 3323 3523 +0 3407 3397 +0 3499 3141 +0 3599 0 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3363 2903 3771 +3363 2903 3771 +3363 2903 3771 +3363 2903 3769 +3361 2905 3769 +3361 2905 3769 +3361 2907 3769 +3359 2907 3769 +3357 2909 3769 +3357 2911 3767 +3353 2915 3767 +3349 2917 3767 +3345 2923 3765 +3339 2929 3763 +3329 2939 3759 +3317 2951 3757 +3301 2965 3751 +3277 2985 3745 +3245 3009 3735 +3195 3041 3723 +3121 3079 3707 +2997 3125 3683 +2753 3181 3649 +1308 3247 3599 +0 3323 3525 +0 3407 3399 +0 3499 3145 +0 3599 0 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3367 2903 3771 +3367 2903 3771 +3367 2903 3771 +3365 2903 3771 +3365 2903 3771 +3365 2905 3771 +3363 2905 3771 +3363 2907 3769 +3361 2909 3769 +3359 2911 3769 +3357 2913 3769 +3353 2917 3767 +3349 2923 3765 +3341 2929 3763 +3333 2939 3761 +3321 2949 3757 +3305 2965 3753 +3281 2985 3745 +3249 3009 3737 +3201 3041 3725 +3127 3079 3707 +3005 3125 3685 +2765 3181 3651 +1540 3247 3601 +0 3321 3525 +0 3407 3401 +0 3499 3147 +0 3599 963 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3371 2901 3773 +3371 2903 3773 +3371 2903 3773 +3371 2903 3773 +3369 2903 3771 +3369 2905 3771 +3369 2905 3771 +3367 2907 3771 +3365 2907 3771 +3363 2911 3771 +3361 2913 3769 +3357 2917 3769 +3353 2921 3767 +3347 2929 3765 +3337 2937 3763 +3325 2949 3759 +3309 2965 3753 +3287 2983 3747 +3255 3009 3739 +3207 3039 3725 +3135 3079 3709 +3015 3125 3685 +2781 3181 3653 +1735 3247 3603 +0 3321 3527 +0 3405 3403 +0 3499 3153 +0 3599 1337 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3377 2901 3773 +3377 2901 3773 +3377 2901 3773 +3375 2903 3773 +3375 2903 3773 +3375 2903 3773 +3375 2905 3773 +3373 2905 3773 +3371 2907 3773 +3369 2909 3771 +3367 2913 3771 +3363 2917 3769 +3359 2921 3769 +3353 2927 3767 +3345 2937 3763 +3333 2949 3761 +3317 2963 3755 +3293 2983 3749 +3261 3007 3739 +3215 3039 3727 +3143 3077 3711 +3027 3125 3687 +2801 3181 3655 +1909 3247 3605 +0 3321 3531 +0 3405 3407 +0 3499 3159 +0 3599 1591 +0 3705 0 +0 3817 0 +0 3935 0 +0 4055 0 +3385 2901 3777 +3385 2901 3775 +3383 2901 3775 +3383 2901 3775 +3383 2901 3775 +3383 2903 3775 +3381 2903 3775 +3381 2905 3775 +3379 2905 3775 +3377 2909 3773 +3375 2911 3773 +3371 2915 3771 +3367 2921 3771 +3361 2927 3769 +3353 2935 3765 +3341 2947 3763 +3325 2963 3757 +3303 2983 3751 +3271 3007 3743 +3225 3039 3731 +3157 3077 3713 +3043 3123 3691 +2827 3181 3657 +2071 3245 3609 +0 3321 3535 +0 3405 3411 +0 3499 3167 +0 3599 1797 +0 3705 0 +0 3817 0 +0 3933 0 +0 4055 0 +3395 2899 3779 +3393 2899 3779 +3393 2899 3779 +3393 2899 3779 +3393 2901 3779 +3393 2901 3779 +3391 2901 3779 +3391 2903 3777 +3389 2905 3777 +3387 2907 3777 +3385 2909 3775 +3381 2913 3775 +3377 2919 3773 +3371 2925 3771 +3363 2935 3769 +3351 2947 3765 +3337 2961 3761 +3315 2981 3755 +3285 3005 3745 +3239 3037 3733 +3173 3075 3717 +3065 3123 3693 +2861 3179 3661 +2223 3245 3613 +0 3321 3539 +0 3405 3417 +0 3497 3177 +0 3599 1978 +0 3705 0 +0 3817 0 +0 3933 0 +0 4055 0 +3407 2897 3783 +3407 2897 3783 +3407 2897 3783 +3407 2897 3783 +3407 2899 3783 +3405 2899 3783 +3405 2899 3781 +3403 2901 3781 +3403 2903 3781 +3401 2905 3781 +3399 2907 3779 +3395 2911 3779 +3391 2917 3777 +3385 2923 3775 +3377 2933 3773 +3365 2945 3769 +3351 2959 3765 +3331 2979 3757 +3301 3005 3749 +3257 3035 3737 +3193 3075 3721 +3091 3121 3699 +2901 3179 3665 +2369 3245 3617 +0 3319 3545 +0 3405 3425 +0 3497 3191 +0 3597 2143 +0 3705 0 +0 3817 0 +0 3933 0 +0 4053 0 +3423 2893 3787 +3423 2895 3787 +3423 2895 3787 +3423 2895 3787 +3423 2895 3787 +3423 2897 3787 +3421 2897 3787 +3421 2899 3787 +3419 2899 3787 +3417 2903 3785 +3415 2905 3785 +3413 2909 3783 +3409 2915 3783 +3403 2921 3781 +3395 2931 3777 +3385 2943 3775 +3369 2957 3769 +3349 2977 3763 +3321 3003 3755 +3281 3033 3743 +3221 3073 3727 +3123 3121 3705 +2951 3177 3671 +2513 3243 3625 +0 3319 3553 +0 3403 3437 +0 3497 3209 +0 3597 2299 +0 3705 0 +0 3817 0 +0 3933 0 +0 4053 0 +3445 2891 3795 +3445 2891 3795 +3445 2891 3795 +3445 2891 3795 +3445 2891 3793 +3443 2893 3793 +3443 2893 3793 +3443 2895 3793 +3441 2897 3793 +3439 2899 3793 +3437 2901 3791 +3435 2905 3791 +3431 2911 3789 +3425 2917 3787 +3417 2927 3785 +3407 2939 3781 +3395 2955 3777 +3375 2975 3771 +3349 2999 3761 +3311 3031 3751 +3253 3071 3735 +3165 3119 3713 +3009 3175 3681 +2653 3241 3635 +0 3317 3565 +0 3403 3451 +0 3495 3233 +0 3597 2447 +0 3703 0 +0 3817 0 +0 3933 0 +0 4053 0 +3473 2885 3803 +3473 2885 3803 +3473 2887 3803 +3473 2887 3803 +3471 2887 3803 +3471 2887 3803 +3471 2889 3803 +3469 2889 3801 +3469 2891 3801 +3467 2893 3801 +3465 2897 3801 +3463 2901 3799 +3459 2907 3797 +3453 2913 3795 +3447 2923 3793 +3437 2935 3789 +3425 2951 3785 +3407 2971 3779 +3383 2995 3771 +3347 3027 3759 +3295 3067 3745 +3213 3115 3723 +3077 3173 3691 +2791 3239 3647 +0 3315 3579 +0 3401 3469 +0 3495 3263 +0 3595 2591 +0 3703 0 +0 3815 0 +0 3933 0 +0 4053 0 +3507 2879 3815 +3507 2879 3815 +3507 2879 3815 +3507 2879 3815 +3507 2881 3813 +3505 2881 3813 +3505 2883 3813 +3505 2883 3813 +3503 2885 3813 +3501 2887 3813 +3499 2891 3811 +3497 2895 3811 +3493 2901 3809 +3489 2907 3807 +3483 2917 3805 +3475 2929 3801 +3463 2945 3797 +3447 2965 3791 +3423 2991 3783 +3391 3023 3773 +3345 3063 3757 +3273 3111 3735 +3155 3169 3707 +2927 3235 3663 +1989 3313 3597 +0 3399 3493 +0 3493 3299 +0 3593 2733 +0 3701 0 +0 3815 0 +0 3931 0 +0 4053 0 +3549 2871 3829 +3549 2871 3829 +3549 2871 3829 +3549 2871 3829 +3549 2871 3829 +3547 2873 3829 +3547 2873 3829 +3547 2875 3827 +3545 2877 3827 +3545 2879 3827 +3543 2881 3827 +3541 2887 3825 +3537 2891 3825 +3533 2899 3823 +3527 2909 3819 +3519 2921 3817 +3509 2937 3813 +3493 2957 3807 +3473 2983 3799 +3445 3017 3789 +3403 3057 3773 +3341 3105 3753 +3241 3165 3725 +3061 3231 3683 +2587 3309 3621 +0 3395 3521 +0 3491 3343 +0 3593 2871 +0 3701 0 +0 3813 0 +0 3931 0 +0 4051 0 +3599 2857 3849 +3599 2859 3847 +3599 2859 3847 +3599 2859 3847 +3599 2859 3847 +3599 2861 3847 +3599 2861 3847 +3597 2863 3847 +3597 2865 3847 +3595 2867 3847 +3593 2871 3845 +3591 2875 3845 +3589 2879 3843 +3585 2887 3841 +3579 2897 3839 +3573 2909 3837 +3563 2927 3833 +3551 2947 3827 +3533 2975 3819 +3507 3007 3809 +3471 3049 3795 +3419 3099 3775 +3337 3157 3749 +3197 3227 3709 +2897 3305 3651 +0 3391 3559 +0 3487 3397 +0 3589 3007 +0 3699 0 +0 3811 0 +0 3929 0 +0 4051 0 +3659 2841 3873 +3659 2841 3873 +3659 2841 3873 +3659 2843 3873 +3659 2843 3871 +3659 2843 3871 +3659 2845 3871 +3657 2847 3871 +3657 2847 3871 +3655 2851 3871 +3655 2853 3869 +3653 2859 3869 +3651 2865 3867 +3647 2871 3867 +3643 2881 3865 +3637 2895 3861 +3629 2911 3857 +3617 2933 3853 +3601 2961 3845 +3579 2995 3835 +3549 3037 3823 +3505 3089 3805 +3439 3149 3779 +3331 3219 3741 +3129 3299 3687 +2499 3387 3603 +0 3483 3459 +0 3587 3143 +0 3695 0 +0 3809 0 +0 3929 0 +0 4049 0 +3729 2817 3903 +3729 2819 3903 +3729 2819 3903 +3729 2819 3903 +3729 2819 3903 +3729 2821 3903 +3727 2821 3903 +3727 2823 3901 +3727 2825 3901 +3725 2827 3901 +3725 2831 3901 +3723 2835 3899 +3721 2841 3899 +3719 2849 3897 +3715 2861 3895 +3709 2875 3893 +3703 2891 3889 +3693 2915 3883 +3679 2943 3877 +3661 2979 3869 +3637 3023 3857 +3601 3075 3839 +3547 3137 3815 +3463 3209 3781 +3323 3291 3733 +3017 3379 3657 +0 3477 3531 +0 3581 3279 +0 3693 744 +0 3807 0 +0 3927 0 +0 4049 0 +3809 2785 3941 +3809 2785 3941 +3807 2785 3941 +3807 2785 3941 +3807 2787 3941 +3807 2787 3941 +3807 2789 3941 +3807 2789 3939 +3807 2791 3939 +3805 2795 3939 +3805 2799 3939 +3803 2803 3937 +3801 2811 3937 +3799 2819 3935 +3795 2831 3933 +3791 2845 3931 +3785 2863 3927 +3777 2887 3923 +3767 2919 3917 +3753 2955 3909 +3731 3001 3897 +3703 3057 3883 +3661 3121 3861 +3597 3195 3831 +3495 3279 3787 +3311 3371 3721 +2807 3469 3613 +0 3575 3413 +0 3687 2797 +0 3803 0 +0 3923 0 +0 4047 0 +3897 2735 3987 +3895 2735 3987 +3895 2737 3987 +3895 2737 3987 +3895 2737 3987 +3895 2739 3987 +3895 2739 3987 +3895 2741 3987 +3895 2743 3985 +3893 2747 3985 +3893 2751 3985 +3891 2757 3985 +3891 2765 3983 +3889 2773 3983 +3885 2787 3981 +3883 2803 3979 +3877 2823 3975 +3871 2849 3971 +3863 2883 3965 +3851 2923 3959 +3833 2973 3949 +3811 3031 3935 +3777 3099 3915 +3729 3177 3889 +3657 3263 3851 +3535 3357 3793 +3295 3459 3703 +2103 3567 3545 +0 3681 3179 +0 3799 0 +0 3919 0 +0 4043 0 +3993 2661 4041 +3991 2661 4041 +3991 2661 4041 +3991 2663 4041 +3991 2663 4041 +3991 2665 4041 +3991 2665 4041 +3991 2667 4041 +3991 2671 4041 +3991 2675 4041 +3989 2679 4041 +3989 2685 4039 +3987 2695 4039 +3985 2705 4037 +3983 2719 4037 +3981 2739 4035 +3977 2763 4031 +3971 2793 4029 +3965 2829 4023 +3955 2875 4017 +3943 2929 4009 +3925 2993 3997 +3899 3067 3979 +3863 3149 3957 +3809 3241 3923 +3725 3339 3875 +3583 3445 3801 +3273 3557 3679 +0 3673 3437 +0 3791 2169 +0 3915 0 +0 4039 0 +4095 2537 4095 +4095 2537 4095 +4095 2537 4095 +4095 2539 4095 +4095 2539 4095 +4095 2541 4095 +4095 2543 4095 +4095 2545 4095 +4095 2549 4095 +4093 2555 4095 +4093 2561 4095 +4093 2569 4095 +4091 2579 4095 +4091 2595 4095 +4089 2613 4095 +4087 2635 4095 +4083 2665 4095 +4079 2703 4095 +4073 2747 4091 +4067 2801 4085 +4055 2865 4077 +4041 2937 4067 +4023 3019 4053 +3995 3111 4033 +3955 3209 4005 +3897 3315 3965 +3803 3425 3907 +3639 3541 3811 +3243 3661 3645 +0 3783 3235 +0 3907 0 +0 4033 0 +4095 2287 4095 +4095 2289 4095 +4095 2289 4095 +4095 2291 4095 +4095 2293 4095 +4095 2295 4095 +4095 2299 4095 +4095 2305 4095 +4095 2311 4095 +4095 2319 4095 +4095 2329 4095 +4095 2343 4095 +4095 2361 4095 +4095 2383 4095 +4095 2413 4095 +4095 2449 4095 +4095 2493 4095 +4095 2545 4095 +4095 2607 4095 +4095 2679 4095 +4095 2761 4095 +4095 2851 4095 +4095 2949 4095 +4095 3053 4095 +4095 3163 4095 +4057 3279 4065 +3993 3397 4017 +3891 3519 3945 +3707 3643 3825 +3199 3771 3595 +0 3899 2597 +0 4027 0 +4095 662 4095 +4095 691 4095 +4095 728 4095 +4095 772 4095 +4095 825 4095 +4095 888 4095 +4095 960 4095 +4095 1041 4095 +4095 1131 4095 +4095 1229 4095 +4095 1334 4095 +4095 1445 4095 +4095 1560 4095 +4095 1679 4095 +4095 1802 4095 +4095 1926 4095 +4095 2053 4095 +4095 2181 4095 +4095 2309 4095 +4095 2439 4095 +4095 2569 4095 +4095 2699 4095 +4095 2831 4095 +4095 2963 4095 +4095 3093 4095 +4095 3225 4095 +4095 3357 4095 +4095 3489 4077 +3987 3621 3991 +3783 3753 3843 +3133 3885 3517 +0 4017 0 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 1211 4095 +4095 2021 4095 +4095 2361 4095 +4095 2603 4095 +4095 2803 4095 +4095 2981 4095 +4095 3143 4095 +4095 3297 4095 +4095 3445 4095 +4095 3589 4095 +4089 3729 4047 +3867 3867 3867 +3023 4003 3387 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 1681 4095 +4095 2431 4095 +4095 2763 4095 +4095 3003 4095 +4095 3203 4095 +4095 3379 4095 +4095 3541 4095 +4095 3695 4095 +4095 3841 4095 +3961 3985 3897 +3487 3037 3899 +3487 3037 3899 +3485 3037 3899 +3485 3037 3899 +3485 3037 3899 +3485 3037 3899 +3485 3039 3899 +3483 3039 3899 +3483 3041 3899 +3481 3043 3899 +3479 3045 3897 +3475 3047 3897 +3473 3051 3895 +3467 3057 3895 +3461 3063 3893 +3451 3071 3889 +3439 3083 3885 +3423 3099 3881 +3399 3117 3875 +3365 3143 3865 +3315 3173 3853 +3237 3211 3835 +3109 3259 3813 +2847 3315 3779 +0 3379 3729 +0 3455 3653 +0 3539 3525 +0 3631 3267 +0 3731 0 +0 3837 0 +0 3951 0 +0 4067 0 +3487 3037 3899 +3487 3037 3899 +3485 3037 3899 +3485 3037 3899 +3485 3037 3899 +3485 3037 3899 +3485 3039 3899 +3483 3039 3899 +3483 3041 3899 +3481 3043 3899 +3479 3045 3897 +3477 3047 3897 +3473 3051 3895 +3467 3057 3895 +3461 3063 3893 +3451 3071 3889 +3439 3083 3885 +3423 3099 3881 +3399 3117 3875 +3365 3143 3865 +3315 3173 3853 +3237 3211 3835 +3109 3259 3813 +2849 3315 3779 +0 3379 3729 +0 3455 3653 +0 3539 3525 +0 3631 3267 +0 3731 0 +0 3837 0 +0 3951 0 +0 4067 0 +3487 3037 3899 +3487 3037 3899 +3487 3037 3899 +3485 3037 3899 +3485 3037 3899 +3485 3037 3899 +3485 3039 3899 +3483 3039 3899 +3483 3041 3899 +3481 3043 3899 +3479 3045 3897 +3477 3047 3897 +3473 3051 3895 +3467 3057 3895 +3461 3063 3893 +3453 3071 3889 +3439 3083 3885 +3423 3099 3881 +3399 3117 3875 +3365 3143 3865 +3315 3173 3853 +3239 3211 3837 +3109 3259 3813 +2849 3315 3779 +0 3379 3729 +0 3455 3653 +0 3539 3525 +0 3631 3267 +0 3731 0 +0 3837 0 +0 3951 0 +0 4067 0 +3487 3037 3901 +3487 3037 3899 +3487 3037 3899 +3487 3037 3899 +3485 3037 3899 +3485 3037 3899 +3485 3039 3899 +3485 3039 3899 +3483 3041 3899 +3481 3043 3899 +3479 3045 3897 +3477 3047 3897 +3473 3051 3895 +3469 3057 3895 +3461 3063 3893 +3453 3071 3889 +3441 3083 3885 +3423 3099 3881 +3399 3117 3875 +3365 3143 3865 +3315 3173 3853 +3239 3211 3837 +3111 3259 3813 +2851 3315 3779 +0 3379 3729 +0 3455 3653 +0 3539 3525 +0 3631 3267 +0 3731 0 +0 3837 0 +0 3951 0 +0 4067 0 +3487 3037 3901 +3487 3037 3901 +3487 3037 3901 +3487 3037 3899 +3487 3037 3899 +3485 3037 3899 +3485 3039 3899 +3485 3039 3899 +3483 3041 3899 +3481 3043 3899 +3479 3045 3897 +3477 3047 3897 +3473 3051 3895 +3469 3057 3895 +3463 3063 3893 +3453 3071 3889 +3441 3083 3887 +3423 3099 3881 +3399 3117 3875 +3365 3143 3865 +3315 3173 3853 +3239 3211 3837 +3111 3259 3813 +2853 3315 3779 +0 3379 3729 +0 3455 3653 +0 3539 3525 +0 3631 3267 +0 3731 0 +0 3837 0 +0 3951 0 +0 4067 0 +3487 3037 3901 +3487 3037 3901 +3487 3037 3901 +3487 3037 3901 +3487 3037 3901 +3487 3037 3899 +3485 3039 3899 +3485 3039 3899 +3483 3041 3899 +3483 3043 3899 +3481 3045 3899 +3477 3047 3897 +3475 3051 3897 +3469 3057 3895 +3463 3063 3893 +3453 3071 3889 +3441 3083 3887 +3425 3099 3881 +3401 3117 3875 +3367 3143 3865 +3317 3173 3853 +3241 3211 3837 +3113 3259 3813 +2855 3315 3779 +0 3379 3729 +0 3455 3653 +0 3539 3525 +0 3631 3269 +0 3731 0 +0 3837 0 +0 3951 0 +0 4067 0 +3489 3035 3901 +3489 3037 3901 +3489 3037 3901 +3489 3037 3901 +3487 3037 3901 +3487 3037 3901 +3487 3039 3899 +3485 3039 3899 +3485 3041 3899 +3483 3041 3899 +3481 3045 3899 +3479 3047 3897 +3475 3051 3897 +3471 3057 3895 +3463 3063 3893 +3455 3071 3891 +3443 3083 3887 +3425 3099 3881 +3401 3117 3875 +3367 3143 3867 +3317 3173 3853 +3241 3211 3837 +3115 3259 3813 +2857 3315 3779 +0 3379 3729 +0 3455 3653 +0 3539 3527 +0 3631 3269 +0 3731 0 +0 3837 0 +0 3949 0 +0 4067 0 +3489 3035 3901 +3489 3035 3901 +3489 3037 3901 +3489 3037 3901 +3489 3037 3901 +3489 3037 3901 +3487 3039 3901 +3487 3039 3899 +3485 3041 3899 +3485 3041 3899 +3483 3045 3899 +3479 3047 3897 +3477 3051 3897 +3471 3055 3895 +3465 3063 3893 +3455 3071 3891 +3443 3083 3887 +3427 3099 3881 +3403 3117 3875 +3369 3143 3867 +3319 3173 3855 +3243 3211 3837 +3117 3259 3813 +2861 3315 3779 +0 3379 3729 +0 3455 3653 +0 3539 3527 +0 3631 3271 +0 3731 0 +0 3837 0 +0 3949 0 +0 4067 0 +3491 3035 3901 +3491 3035 3901 +3491 3035 3901 +3491 3037 3901 +3491 3037 3901 +3489 3037 3901 +3489 3037 3901 +3489 3039 3901 +3487 3041 3899 +3485 3041 3899 +3483 3043 3899 +3481 3047 3899 +3477 3051 3897 +3473 3055 3895 +3467 3063 3893 +3457 3071 3891 +3445 3083 3887 +3427 3097 3883 +3405 3117 3875 +3371 3141 3867 +3321 3173 3855 +3245 3211 3837 +3121 3259 3813 +2867 3315 3779 +504 3379 3731 +0 3455 3655 +0 3539 3527 +0 3631 3271 +0 3731 0 +0 3837 0 +0 3949 0 +0 4067 0 +3493 3035 3901 +3493 3035 3901 +3493 3035 3901 +3493 3037 3901 +3493 3037 3901 +3491 3037 3901 +3491 3037 3901 +3491 3039 3901 +3489 3039 3901 +3487 3041 3901 +3485 3043 3899 +3483 3047 3899 +3479 3051 3897 +3475 3055 3895 +3469 3063 3893 +3459 3071 3891 +3447 3083 3887 +3431 3097 3883 +3407 3117 3877 +3373 3141 3867 +3325 3173 3855 +3249 3211 3839 +3125 3259 3815 +2875 3313 3781 +1125 3379 3731 +0 3455 3655 +0 3539 3529 +0 3631 3273 +0 3731 0 +0 3837 0 +0 3949 0 +0 4067 0 +3495 3035 3903 +3495 3035 3903 +3495 3035 3903 +3495 3035 3903 +3495 3037 3903 +3495 3037 3901 +3493 3037 3901 +3493 3039 3901 +3491 3039 3901 +3491 3041 3901 +3489 3043 3901 +3485 3047 3899 +3481 3051 3899 +3477 3055 3897 +3471 3061 3895 +3461 3071 3893 +3449 3083 3889 +3433 3097 3883 +3409 3117 3877 +3377 3141 3869 +3327 3173 3855 +3253 3211 3839 +3129 3257 3815 +2885 3313 3781 +1440 3379 3733 +0 3455 3657 +0 3539 3531 +0 3631 3277 +0 3731 0 +0 3837 0 +0 3949 0 +0 4067 0 +3499 3035 3903 +3499 3035 3903 +3499 3035 3903 +3499 3035 3903 +3497 3035 3903 +3497 3037 3903 +3497 3037 3903 +3495 3037 3903 +3495 3039 3903 +3493 3041 3901 +3491 3043 3901 +3489 3045 3901 +3485 3049 3899 +3481 3055 3897 +3475 3061 3895 +3465 3071 3893 +3453 3081 3889 +3437 3097 3885 +3413 3117 3877 +3381 3141 3869 +3333 3173 3857 +3259 3211 3839 +3137 3257 3817 +2897 3313 3783 +1672 3379 3733 +0 3455 3657 +0 3539 3533 +0 3631 3281 +0 3731 1095 +0 3837 0 +0 3949 0 +0 4067 0 +3503 3033 3905 +3503 3035 3905 +3503 3035 3905 +3503 3035 3905 +3503 3035 3905 +3501 3035 3905 +3501 3037 3903 +3501 3037 3903 +3499 3039 3903 +3497 3041 3903 +3495 3043 3903 +3493 3045 3901 +3489 3049 3901 +3485 3055 3899 +3479 3061 3897 +3471 3069 3895 +3459 3081 3891 +3441 3097 3885 +3419 3115 3879 +3387 3141 3871 +3339 3171 3859 +3267 3211 3841 +3147 3257 3817 +2913 3313 3785 +1867 3379 3735 +0 3453 3661 +0 3537 3535 +0 3631 3285 +0 3731 1469 +0 3837 0 +0 3949 0 +0 4067 0 +3509 3033 3907 +3509 3033 3907 +3509 3033 3905 +3509 3033 3905 +3507 3035 3905 +3507 3035 3905 +3507 3035 3905 +3507 3037 3905 +3505 3037 3905 +3503 3039 3905 +3501 3041 3903 +3499 3045 3903 +3495 3049 3901 +3491 3053 3901 +3485 3061 3899 +3477 3069 3895 +3465 3081 3893 +3449 3095 3887 +3425 3115 3881 +3393 3139 3873 +3347 3171 3859 +3275 3209 3843 +3159 3257 3819 +2933 3313 3787 +2041 3379 3737 +0 3453 3663 +0 3537 3539 +0 3631 3291 +0 3731 1724 +0 3837 0 +0 3949 0 +0 4067 0 +3517 3033 3909 +3517 3033 3909 +3517 3033 3909 +3515 3033 3909 +3515 3033 3907 +3515 3033 3907 +3515 3035 3907 +3513 3035 3907 +3513 3037 3907 +3511 3039 3907 +3509 3041 3905 +3507 3043 3905 +3503 3047 3905 +3499 3053 3903 +3493 3059 3901 +3485 3067 3897 +3473 3079 3895 +3457 3095 3889 +3435 3115 3883 +3403 3139 3875 +3357 3171 3863 +3289 3209 3845 +3175 3257 3823 +2959 3313 3789 +2203 3377 3741 +0 3453 3667 +0 3537 3543 +0 3631 3299 +0 3731 1929 +0 3837 0 +0 3949 0 +0 4067 0 +3527 3031 3911 +3527 3031 3911 +3527 3031 3911 +3525 3031 3911 +3525 3031 3911 +3525 3033 3911 +3525 3033 3911 +3523 3033 3911 +3523 3035 3909 +3521 3037 3909 +3519 3039 3909 +3517 3041 3907 +3513 3045 3907 +3509 3051 3905 +3503 3057 3903 +3495 3067 3901 +3483 3079 3897 +3469 3093 3893 +3447 3113 3887 +3417 3137 3877 +3371 3169 3865 +3305 3207 3849 +3197 3255 3825 +2993 3311 3793 +2355 3377 3745 +0 3453 3671 +0 3537 3549 +0 3629 3311 +0 3731 2109 +0 3837 0 +0 3949 0 +0 4065 0 +3539 3029 3915 +3539 3029 3915 +3539 3029 3915 +3539 3029 3915 +3539 3029 3915 +3539 3031 3915 +3537 3031 3915 +3537 3031 3913 +3535 3033 3913 +3535 3035 3913 +3533 3037 3913 +3531 3039 3911 +3527 3043 3911 +3523 3049 3909 +3517 3055 3907 +3509 3065 3905 +3499 3077 3901 +3483 3091 3897 +3463 3111 3891 +3433 3137 3881 +3389 3167 3869 +3325 3207 3853 +3223 3253 3831 +3033 3311 3797 +2501 3377 3751 +0 3451 3677 +0 3537 3559 +0 3629 3325 +0 3729 2275 +0 3837 0 +0 3949 0 +0 4065 0 +3557 3025 3919 +3557 3027 3919 +3555 3027 3919 +3555 3027 3919 +3555 3027 3919 +3555 3027 3919 +3555 3029 3919 +3553 3029 3919 +3553 3031 3919 +3551 3033 3919 +3549 3035 3917 +3547 3037 3917 +3545 3041 3915 +3541 3047 3915 +3535 3053 3913 +3527 3063 3909 +3517 3075 3907 +3501 3089 3901 +3483 3109 3895 +3453 3135 3887 +3413 3165 3875 +3353 3205 3859 +3255 3253 3837 +3083 3309 3805 +2645 3375 3757 +0 3451 3685 +0 3535 3569 +0 3629 3343 +0 3729 2431 +0 3837 0 +0 3949 0 +0 4065 0 +3577 3023 3927 +3577 3023 3927 +3577 3023 3927 +3577 3023 3927 +3577 3023 3927 +3577 3023 3927 +3577 3025 3925 +3575 3025 3925 +3575 3027 3925 +3573 3029 3925 +3571 3031 3925 +3569 3033 3923 +3567 3037 3923 +3563 3043 3921 +3557 3049 3919 +3549 3059 3917 +3539 3071 3913 +3527 3087 3909 +3507 3107 3903 +3481 3131 3893 +3443 3163 3883 +3385 3203 3867 +3297 3251 3845 +3141 3307 3813 +2785 3373 3767 +0 3449 3697 +0 3535 3583 +0 3627 3365 +0 3729 2579 +0 3835 0 +0 3949 0 +0 4065 0 +3605 3017 3935 +3605 3017 3935 +3605 3017 3935 +3605 3019 3935 +3605 3019 3935 +3603 3019 3935 +3603 3019 3935 +3603 3021 3935 +3601 3023 3933 +3601 3023 3933 +3599 3027 3933 +3597 3029 3933 +3595 3033 3931 +3591 3039 3929 +3585 3045 3927 +3579 3055 3925 +3569 3067 3923 +3557 3083 3917 +3539 3103 3911 +3515 3127 3903 +3479 3159 3891 +3427 3199 3877 +3347 3247 3855 +3209 3305 3823 +2923 3371 3779 +0 3447 3711 +0 3533 3601 +0 3627 3395 +0 3727 2723 +0 3835 0 +0 3947 0 +0 4065 0 +3639 3011 3947 +3639 3011 3947 +3639 3011 3947 +3639 3011 3947 +3639 3013 3947 +3639 3013 3947 +3637 3013 3945 +3637 3015 3945 +3637 3015 3945 +3635 3017 3945 +3633 3019 3945 +3631 3023 3943 +3629 3027 3943 +3625 3033 3941 +3621 3039 3939 +3615 3049 3937 +3607 3061 3933 +3595 3077 3929 +3579 3097 3923 +3555 3123 3915 +3523 3155 3905 +3477 3195 3889 +3405 3243 3869 +3287 3301 3839 +3059 3369 3795 +2121 3445 3729 +0 3531 3625 +0 3625 3431 +0 3727 2865 +0 3833 0 +0 3947 0 +0 4065 0 +3681 3003 3961 +3681 3003 3961 +3681 3003 3961 +3681 3003 3961 +3681 3003 3961 +3681 3003 3961 +3679 3005 3961 +3679 3005 3961 +3679 3007 3961 +3677 3009 3959 +3677 3011 3959 +3675 3015 3959 +3673 3019 3957 +3669 3023 3957 +3665 3031 3955 +3659 3041 3953 +3651 3053 3949 +3641 3069 3945 +3625 3089 3939 +3605 3115 3931 +3577 3149 3921 +3535 3189 3905 +3473 3237 3885 +3373 3297 3857 +3195 3365 3815 +2719 3441 3753 +0 3527 3655 +0 3623 3475 +0 3725 3003 +0 3833 0 +0 3945 0 +0 4063 0 +3731 2989 3981 +3731 2991 3981 +3731 2991 3981 +3731 2991 3981 +3731 2991 3979 +3731 2991 3979 +3731 2993 3979 +3731 2993 3979 +3729 2995 3979 +3729 2997 3979 +3727 2999 3979 +3725 3003 3977 +3723 3007 3977 +3721 3013 3975 +3717 3019 3973 +3713 3029 3971 +3705 3041 3969 +3695 3059 3965 +3683 3079 3959 +3665 3107 3951 +3639 3139 3941 +3603 3181 3927 +3551 3231 3907 +3469 3289 3881 +3329 3359 3841 +3029 3437 3783 +0 3523 3691 +0 3619 3529 +0 3721 3139 +0 3831 0 +0 3945 0 +0 4061 0 +3791 2973 4005 +3791 2973 4005 +3791 2973 4005 +3791 2973 4005 +3791 2975 4005 +3791 2975 4005 +3791 2975 4003 +3791 2977 4003 +3789 2979 4003 +3789 2981 4003 +3787 2983 4003 +3787 2985 4001 +3785 2991 4001 +3783 2997 3999 +3779 3003 3999 +3775 3013 3997 +3769 3027 3993 +3761 3043 3989 +3749 3065 3985 +3733 3093 3977 +3713 3127 3967 +3681 3169 3955 +3637 3221 3937 +3571 3281 3911 +3463 3351 3873 +3261 3431 3819 +2631 3519 3735 +0 3615 3591 +0 3719 3275 +0 3827 0 +0 3943 0 +0 4061 0 +3861 2949 4035 +3861 2949 4035 +3861 2951 4035 +3861 2951 4035 +3861 2951 4035 +3861 2951 4035 +3861 2953 4035 +3861 2953 4035 +3859 2955 4035 +3859 2957 4033 +3859 2959 4033 +3857 2963 4033 +3855 2967 4031 +3853 2973 4031 +3851 2981 4029 +3847 2993 4027 +3841 3007 4025 +3835 3023 4021 +3825 3047 4017 +3811 3075 4009 +3793 3111 4001 +3769 3155 3989 +3733 3207 3971 +3679 3269 3947 +3595 3341 3915 +3455 3423 3865 +3149 3511 3789 +0 3609 3663 +0 3713 3411 +0 3825 876 +0 3939 0 +0 4059 0 +3941 2917 4073 +3941 2917 4073 +3941 2917 4073 +3941 2917 4073 +3939 2917 4073 +3939 2919 4073 +3939 2919 4073 +3939 2921 4073 +3939 2921 4071 +3939 2925 4071 +3937 2927 4071 +3937 2931 4071 +3935 2935 4069 +3933 2943 4069 +3931 2951 4067 +3927 2963 4065 +3923 2977 4063 +3917 2995 4059 +3909 3019 4055 +3899 3051 4049 +3885 3087 4041 +3863 3133 4031 +3835 3189 4015 +3793 3253 3993 +3729 3327 3963 +3627 3411 3919 +3443 3503 3853 +2939 3601 3745 +0 3707 3545 +0 3819 2929 +0 3935 0 +0 4055 0 +4029 2867 4095 +4029 2867 4095 +4029 2867 4095 +4029 2869 4095 +4027 2869 4095 +4027 2869 4095 +4027 2871 4095 +4027 2871 4095 +4027 2873 4095 +4027 2877 4095 +4025 2879 4095 +4025 2883 4095 +4025 2889 4095 +4023 2897 4095 +4021 2905 4095 +4019 2919 4095 +4015 2935 4095 +4009 2955 4095 +4003 2981 4095 +3995 3015 4095 +3983 3055 4091 +3965 3105 4081 +3943 3163 4067 +3909 3231 4047 +3861 3309 4021 +3789 3395 3983 +3667 3489 3925 +3427 3591 3835 +2235 3699 3677 +0 3813 3313 +0 3931 0 +0 4051 0 +4095 2793 4095 +4095 2793 4095 +4095 2793 4095 +4095 2793 4095 +4095 2795 4095 +4095 2795 4095 +4095 2797 4095 +4095 2797 4095 +4095 2799 4095 +4095 2803 4095 +4095 2807 4095 +4095 2811 4095 +4095 2817 4095 +4095 2827 4095 +4095 2837 4095 +4095 2851 4095 +4095 2871 4095 +4095 2895 4095 +4095 2925 4095 +4095 2961 4095 +4087 3007 4095 +4075 3061 4095 +4057 3125 4095 +4031 3199 4095 +3995 3281 4089 +3941 3373 4055 +3857 3471 4007 +3715 3577 3933 +3407 3689 3811 +0 3805 3569 +0 3925 2301 +0 4047 0 +4095 2667 4095 +4095 2669 4095 +4095 2669 4095 +4095 2669 4095 +4095 2671 4095 +4095 2671 4095 +4095 2673 4095 +4095 2675 4095 +4095 2677 4095 +4095 2681 4095 +4095 2687 4095 +4095 2693 4095 +4095 2701 4095 +4095 2711 4095 +4095 2727 4095 +4095 2745 4095 +4095 2767 4095 +4095 2797 4095 +4095 2835 4095 +4095 2879 4095 +4095 2933 4095 +4095 2997 4095 +4095 3069 4095 +4095 3151 4095 +4095 3243 4095 +4087 3341 4095 +4029 3447 4095 +3935 3557 4039 +3771 3673 3945 +3375 3793 3777 +0 3915 3367 +0 4039 0 +4095 2419 4095 +4095 2421 4095 +4095 2421 4095 +4095 2421 4095 +4095 2423 4095 +4095 2425 4095 +4095 2429 4095 +4095 2431 4095 +4095 2437 4095 +4095 2443 4095 +4095 2451 4095 +4095 2461 4095 +4095 2475 4095 +4095 2493 4095 +4095 2515 4095 +4095 2545 4095 +4095 2581 4095 +4095 2625 4095 +4095 2677 4095 +4095 2739 4095 +4095 2811 4095 +4095 2893 4095 +4095 2983 4095 +4095 3081 4095 +4095 3185 4095 +4095 3295 4095 +4095 3411 4095 +4095 3529 4095 +4023 3651 4077 +3839 3777 3959 +3331 3903 3727 +0 4031 2729 +4095 771 4095 +4095 795 4095 +4095 824 4095 +4095 860 4095 +4095 904 4095 +4095 957 4095 +4095 1020 4095 +4095 1092 4095 +4095 1173 4095 +4095 1263 4095 +4095 1361 4095 +4095 1466 4095 +4095 1577 4095 +4095 1692 4095 +4095 1811 4095 +4095 1934 4095 +4095 2059 4095 +4095 2185 4095 +4095 2313 4095 +4095 2441 4095 +4095 2571 4095 +4095 2701 4095 +4095 2831 4095 +4095 2963 4095 +4095 3095 4095 +4095 3225 4095 +4095 3357 4095 +4095 3489 4095 +4095 3621 4095 +4095 3753 4095 +3915 3885 3977 +3265 4017 3649 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 1343 4095 +4095 2153 4095 +4095 2493 4095 +4095 2735 4095 +4095 2935 4095 +4095 3113 4095 +4095 3275 4095 +4095 3429 4095 +4095 3577 4095 +4095 3721 4095 +4095 3861 4095 +3999 3999 3999 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/test-extreme-grade_inv-Log2-48nits_32_LUT.azasset b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/test-extreme-grade_inv-Log2-48nits_32_LUT.azasset new file mode 100644 index 0000000000..66f3b57564 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/test-extreme-grade_inv-Log2-48nits_32_LUT.azasset @@ -0,0 +1,32780 @@ +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "LookupTableAsset", + "ClassData": { + "Name": "LookupTable", + "Intervals": [ + 0, 33, 66, 99, 132, 165, 198, 231, 264, 297, 330, 363, 396, 429, 462, 495, 528, 561, 594, 627, 660, 693, 726, 759, 792, 825, 858, 891, 924, 957, 990, 1023], + "Values": [ + 0, 0, 0, + 0, 40, 0, + 0, 176, 0, + 0, 310, 0, + 0, 444, 0, + 0, 578, 0, + 0, 711, 0, + 0, 844, 0, + 0, 976, 0, + 0, 1109, 0, + 0, 1241, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1638, 0, + 0, 1770, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 235, 0, 150, + 0, 22, 0, + 0, 162, 0, + 0, 300, 0, + 0, 437, 0, + 0, 572, 0, + 0, 707, 0, + 0, 841, 0, + 0, 974, 0, + 0, 1107, 0, + 0, 1240, 0, + 0, 1373, 0, + 0, 1505, 0, + 0, 1638, 0, + 0, 1770, 0, + 0, 1902, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 474, 0, 352, + 349, 0, 225, + 98, 143, 0, + 0, 286, 0, + 0, 427, 0, + 0, 565, 0, + 0, 701, 0, + 0, 836, 0, + 0, 971, 0, + 0, 1105, 0, + 0, 1238, 0, + 0, 1371, 0, + 0, 1504, 0, + 0, 1637, 0, + 0, 1769, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 672, 0, 529, + 595, 0, 448, + 467, 117, 309, + 205, 267, 14, + 0, 412, 0, + 0, 554, 0, + 0, 693, 0, + 0, 831, 0, + 0, 967, 0, + 0, 1102, 0, + 0, 1236, 0, + 0, 1370, 0, + 0, 1503, 0, + 0, 1636, 0, + 0, 1769, 0, + 0, 1901, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 848, 0, 693, + 797, 0, 638, + 719, 78, 551, + 588, 240, 402, + 318, 393, 67, + 0, 540, 0, + 0, 683, 0, + 0, 823, 0, + 0, 961, 0, + 0, 1097, 0, + 0, 1233, 0, + 0, 1367, 0, + 0, 1501, 0, + 0, 1635, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1010, 0, 848, + 975, 0, 809, + 924, 22, 751, + 845, 201, 661, + 712, 365, 502, + 435, 520, 130, + 0, 669, 0, + 0, 813, 0, + 0, 953, 0, + 0, 1092, 0, + 0, 1228, 0, + 0, 1364, 0, + 0, 1499, 0, + 0, 1633, 0, + 0, 1766, 0, + 0, 1900, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1163, 0, 996, + 1139, 0, 968, + 1104, 0, 928, + 1052, 143, 869, + 972, 326, 775, + 837, 493, 609, + 555, 649, 202, + 0, 798, 0, + 0, 943, 0, + 0, 1084, 0, + 0, 1223, 0, + 0, 1360, 0, + 0, 1496, 0, + 0, 1631, 0, + 0, 1765, 0, + 0, 1898, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1311, 0, 1139, + 1293, 0, 1119, + 1269, 0, 1091, + 1233, 52, 1050, + 1181, 267, 990, + 1101, 452, 893, + 965, 621, 721, + 678, 778, 283, + 0, 928, 0, + 0, 1073, 0, + 0, 1215, 0, + 0, 1354, 0, + 0, 1491, 0, + 0, 1627, 0, + 0, 1762, 0, + 0, 1897, 0, + 0, 2030, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1454, 0, 1280, + 1441, 0, 1265, + 1424, 0, 1245, + 1399, 0, 1216, + 1363, 174, 1175, + 1311, 393, 1113, + 1230, 580, 1015, + 1093, 750, 837, + 804, 908, 374, + 0, 1059, 0, + 0, 1204, 0, + 0, 1346, 0, + 0, 1486, 0, + 0, 1623, 0, + 0, 1759, 0, + 0, 1894, 0, + 0, 2029, 0, + 0, 2163, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1595, 0, 1418, + 1585, 0, 1407, + 1572, 0, 1393, + 1554, 0, 1372, + 1530, 9, 1343, + 1494, 298, 1301, + 1441, 520, 1239, + 1360, 709, 1139, + 1222, 880, 957, + 931, 1039, 472, + 0, 1190, 0, + 0, 1336, 0, + 0, 1478, 0, + 0, 1617, 0, + 0, 1755, 0, + 0, 1891, 0, + 0, 2026, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1733, 0, 1555, + 1726, 0, 1547, + 1716, 0, 1536, + 1703, 0, 1521, + 1686, 0, 1501, + 1661, 130, 1471, + 1625, 424, 1429, + 1572, 649, 1366, + 1491, 839, 1265, + 1352, 1011, 1080, + 1059, 1170, 577, + 0, 1321, 0, + 0, 1467, 0, + 0, 1610, 0, + 0, 1749, 0, + 0, 1887, 0, + 0, 2023, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1869, 0, 1690, + 1864, 0, 1684, + 1857, 0, 1676, + 1848, 0, 1666, + 1835, 0, 1651, + 1817, 0, 1630, + 1792, 254, 1601, + 1756, 552, 1558, + 1704, 778, 1494, + 1622, 970, 1392, + 1483, 1141, 1205, + 1188, 1301, 687, + 0, 1453, 0, + 0, 1599, 0, + 0, 1741, 0, + 0, 1881, 0, + 0, 2019, 0, + 0, 2155, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2005, 0, 1825, + 2001, 0, 1821, + 1996, 0, 1815, + 1989, 0, 1807, + 1979, 0, 1796, + 1966, 0, 1781, + 1949, 0, 1760, + 1924, 379, 1731, + 1888, 681, 1688, + 1835, 908, 1624, + 1753, 1100, 1521, + 1614, 1272, 1332, + 1318, 1432, 803, + 0, 1584, 0, + 0, 1731, 0, + 0, 1873, 0, + 0, 2013, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2139, 0, 1959, + 2137, 0, 1956, + 2133, 0, 1951, + 2127, 0, 1945, + 2121, 0, 1937, + 2111, 0, 1927, + 2099, 0, 1912, + 2081, 0, 1891, + 2055, 506, 1861, + 2019, 810, 1818, + 1967, 1038, 1754, + 1885, 1231, 1650, + 1745, 1404, 1460, + 1448, 1564, 922, + 0, 1716, 0, + 0, 1863, 0, + 0, 2005, 0, + 0, 2145, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2273, 0, 2093, + 2271, 0, 2091, + 2269, 0, 2087, + 2265, 0, 2083, + 2259, 0, 2077, + 2253, 0, 2069, + 2243, 0, 2057, + 2231, 0, 2043, + 2213, 60, 2022, + 2187, 635, 1992, + 2151, 941, 1949, + 2099, 1169, 1884, + 2016, 1363, 1781, + 1877, 1536, 1589, + 1579, 1696, 1044, + 0, 1848, 0, + 0, 1995, 0, + 0, 2137, 0, + 0, 2277, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2407, 0, 2225, + 2405, 0, 2223, + 2403, 0, 2221, + 2401, 0, 2219, + 2397, 0, 2213, + 2391, 0, 2207, + 2385, 0, 2199, + 2375, 0, 2189, + 2361, 0, 2173, + 2345, 182, 2153, + 2319, 764, 2123, + 2283, 1071, 2081, + 2231, 1301, 2015, + 2149, 1494, 1911, + 2008, 1667, 1719, + 1710, 1828, 1168, + 0, 1980, 0, + 0, 2127, 0, + 0, 2269, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2539, 0, 2359, + 2539, 0, 2357, + 2537, 0, 2355, + 2535, 0, 2353, + 2533, 0, 2349, + 2529, 0, 2345, + 2523, 0, 2339, + 2517, 0, 2331, + 2507, 0, 2321, + 2493, 0, 2305, + 2475, 306, 2285, + 2451, 894, 2255, + 2415, 1202, 2211, + 2363, 1432, 2147, + 2279, 1626, 2042, + 2141, 1799, 1850, + 1842, 1960, 1295, + 0, 2113, 0, + 0, 2259, 0, + 0, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2673, 0, 2491, + 2671, 0, 2491, + 2671, 0, 2489, + 2669, 0, 2487, + 2667, 0, 2485, + 2665, 0, 2481, + 2661, 0, 2477, + 2655, 0, 2471, + 2649, 0, 2463, + 2639, 0, 2453, + 2625, 0, 2437, + 2607, 433, 2415, + 2583, 1025, 2387, + 2547, 1334, 2343, + 2493, 1564, 2279, + 2411, 1758, 2173, + 2273, 1931, 1981, + 1973, 2091, 1423, + 0, 2245, 0, + 0, 2391, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2805, 0, 2623, + 2805, 0, 2623, + 2803, 0, 2623, + 2803, 0, 2621, + 2801, 0, 2619, + 2799, 0, 2617, + 2797, 0, 2613, + 2793, 0, 2609, + 2787, 0, 2603, + 2781, 0, 2595, + 2771, 0, 2583, + 2757, 0, 2569, + 2741, 560, 2547, + 2715, 1155, 2517, + 2679, 1465, 2475, + 2625, 1696, 2409, + 2543, 1890, 2305, + 2403, 2063, 2111, + 2105, 2223, 1552, + 0, 2377, 0, + 0, 2523, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2937, 0, 2757, + 2937, 0, 2755, + 2937, 0, 2755, + 2935, 0, 2755, + 2935, 0, 2753, + 2933, 0, 2751, + 2931, 0, 2749, + 2929, 0, 2745, + 2925, 0, 2741, + 2919, 0, 2735, + 2913, 0, 2727, + 2903, 0, 2715, + 2891, 0, 2701, + 2873, 689, 2679, + 2847, 1287, 2649, + 2811, 1597, 2607, + 2759, 1828, 2541, + 2675, 2022, 2437, + 2535, 2195, 2243, + 2237, 2355, 1681, + 0, 2509, 0, + 0, 2655, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2887, + 3069, 0, 2887, + 3067, 0, 2885, + 3067, 0, 2885, + 3065, 0, 2883, + 3063, 0, 2881, + 3061, 0, 2877, + 3057, 0, 2873, + 3051, 0, 2867, + 3045, 0, 2859, + 3035, 0, 2847, + 3023, 0, 2833, + 3005, 819, 2811, + 2979, 1418, 2781, + 2943, 1729, 2739, + 2891, 1959, 2673, + 2807, 2153, 2569, + 2667, 2327, 2375, + 2369, 2487, 1811, + 0, 2641, 0, + 0, 2787, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3021, + 3203, 0, 3021, + 3203, 0, 3021, + 3201, 0, 3019, + 3201, 0, 3019, + 3201, 0, 3017, + 3199, 0, 3017, + 3197, 0, 3015, + 3195, 0, 3013, + 3193, 0, 3009, + 3189, 0, 3005, + 3183, 0, 2999, + 3177, 0, 2991, + 3167, 0, 2979, + 3155, 0, 2965, + 3137, 949, 2943, + 3111, 1550, 2913, + 3075, 1860, 2871, + 3023, 2091, 2805, + 2939, 2285, 2701, + 2801, 2459, 2507, + 2501, 2619, 1942, + 0, 2773, 0, + 0, 2919, 0, + 0, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3475, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3151, + 3333, 0, 3151, + 3333, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3327, 0, 3145, + 3325, 0, 3141, + 3321, 0, 3137, + 3315, 0, 3131, + 3309, 0, 3123, + 3299, 0, 3111, + 3287, 0, 3097, + 3269, 1080, 3075, + 3243, 1682, 3045, + 3207, 1992, 3003, + 3155, 2223, 2937, + 3073, 2417, 2833, + 2933, 2591, 2639, + 2633, 2751, 2073, + 0, 2905, 0, + 0, 3051, 0, + 0, 3193, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3283, + 3465, 0, 3283, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3273, + 3453, 0, 3269, + 3447, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3243, + 3419, 0, 3229, + 3401, 1211, 3207, + 3375, 1813, 3177, + 3339, 2125, 3135, + 3287, 2355, 3069, + 3205, 2549, 2965, + 3065, 2723, 2771, + 2765, 2885, 2205, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3465, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4009, 0, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3405, + 3585, 0, 3401, + 3579, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3375, + 3551, 0, 3361, + 3533, 1342, 3339, + 3507, 1945, 3309, + 3471, 2257, 3267, + 3419, 2487, 3201, + 3337, 2681, 3097, + 3197, 2855, 2903, + 2897, 3017, 2337, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3735, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3547, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3711, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3507, + 3683, 0, 3493, + 3665, 1474, 3471, + 3639, 2077, 3441, + 3603, 2389, 3399, + 3551, 2619, 3333, + 3469, 2813, 3229, + 3329, 2987, 3035, + 3029, 3149, 2467, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1605, 3603, + 3771, 2209, 3573, + 3735, 2521, 3531, + 3683, 2751, 3465, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2599, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3987, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1737, 3735, + 3903, 2341, 3705, + 3867, 2653, 3663, + 3815, 2883, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2731, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4091, 0, 3905, + 4079, 0, 3889, + 4061, 1869, 3867, + 4035, 2473, 3839, + 3999, 2785, 3795, + 3947, 3015, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2863, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2001, 4001, + 4095, 2605, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3515, 3563, + 3557, 3677, 2995, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2133, 4095, + 4095, 2737, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3127, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2265, 4095, + 4095, 2869, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3259, + 0, 0, 13, + 0, 54, 0, + 0, 186, 0, + 0, 318, 0, + 0, 450, 0, + 0, 582, 0, + 0, 714, 0, + 0, 846, 0, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 258, 0, 216, + 36, 36, 36, + 0, 172, 0, + 0, 308, 0, + 0, 442, 0, + 0, 576, 0, + 0, 710, 0, + 0, 843, 0, + 0, 976, 0, + 0, 1108, 0, + 0, 1241, 0, + 0, 1373, 0, + 0, 1506, 0, + 0, 1638, 0, + 0, 1770, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 488, 0, 395, + 367, 11, 282, + 129, 154, 65, + 0, 294, 0, + 0, 432, 0, + 0, 569, 0, + 0, 704, 0, + 0, 839, 0, + 0, 973, 0, + 0, 1106, 0, + 0, 1239, 0, + 0, 1372, 0, + 0, 1505, 0, + 0, 1637, 0, + 0, 1770, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 681, 0, 560, + 606, 0, 484, + 481, 128, 357, + 230, 275, 101, + 0, 418, 0, + 0, 559, 0, + 0, 697, 0, + 0, 833, 0, + 0, 969, 0, + 0, 1103, 0, + 0, 1237, 0, + 0, 1370, 0, + 0, 1503, 0, + 0, 1636, 0, + 0, 1769, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 854, 0, 714, + 804, 0, 662, + 727, 91, 580, + 599, 249, 441, + 337, 399, 146, + 0, 544, 0, + 0, 686, 0, + 0, 826, 0, + 0, 963, 0, + 0, 1099, 0, + 0, 1234, 0, + 0, 1368, 0, + 0, 1502, 0, + 0, 1635, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1015, 0, 863, + 980, 0, 825, + 929, 36, 770, + 851, 210, 683, + 720, 372, 534, + 450, 525, 199, + 0, 672, 0, + 0, 815, 0, + 0, 955, 0, + 0, 1093, 0, + 0, 1229, 0, + 0, 1365, 0, + 0, 1499, 0, + 0, 1633, 0, + 0, 1767, 0, + 0, 1900, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1167, 0, 1007, + 1142, 0, 980, + 1107, 0, 941, + 1056, 154, 883, + 977, 333, 793, + 844, 498, 634, + 567, 652, 262, + 0, 801, 0, + 0, 945, 0, + 0, 1085, 0, + 0, 1224, 0, + 0, 1361, 0, + 0, 1496, 0, + 0, 1631, 0, + 0, 1765, 0, + 0, 1899, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1313, 0, 1147, + 1296, 0, 1128, + 1271, 0, 1100, + 1236, 65, 1060, + 1184, 275, 1001, + 1104, 458, 907, + 969, 625, 741, + 687, 781, 334, + 0, 930, 0, + 0, 1075, 0, + 0, 1216, 0, + 0, 1355, 0, + 0, 1492, 0, + 0, 1628, 0, + 0, 1763, 0, + 0, 1897, 0, + 0, 2030, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1456, 0, 1286, + 1443, 0, 1271, + 1425, 0, 1251, + 1401, 0, 1223, + 1365, 184, 1182, + 1313, 399, 1122, + 1233, 584, 1025, + 1097, 753, 853, + 810, 910, 416, + 0, 1060, 0, + 0, 1206, 0, + 0, 1347, 0, + 0, 1486, 0, + 0, 1624, 0, + 0, 1760, 0, + 0, 1894, 0, + 0, 2029, 0, + 0, 2163, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1596, 0, 1422, + 1586, 0, 1412, + 1574, 0, 1397, + 1556, 0, 1377, + 1531, 23, 1348, + 1495, 306, 1307, + 1443, 525, 1245, + 1362, 712, 1147, + 1225, 882, 969, + 936, 1040, 506, + 0, 1191, 0, + 0, 1337, 0, + 0, 1479, 0, + 0, 1618, 0, + 0, 1755, 0, + 0, 1891, 0, + 0, 2026, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1734, 0, 1558, + 1727, 0, 1550, + 1717, 0, 1539, + 1704, 0, 1525, + 1687, 0, 1504, + 1662, 141, 1475, + 1626, 430, 1434, + 1574, 652, 1371, + 1492, 841, 1271, + 1354, 1012, 1089, + 1063, 1171, 604, + 0, 1322, 0, + 0, 1468, 0, + 0, 1610, 0, + 0, 1750, 0, + 0, 1887, 0, + 0, 2023, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1870, 0, 1693, + 1865, 0, 1687, + 1858, 0, 1679, + 1848, 0, 1668, + 1836, 0, 1653, + 1818, 0, 1633, + 1793, 262, 1604, + 1757, 556, 1561, + 1704, 781, 1498, + 1623, 971, 1397, + 1485, 1142, 1212, + 1191, 1302, 709, + 0, 1453, 0, + 0, 1599, 0, + 0, 1742, 0, + 0, 1881, 0, + 0, 2019, 0, + 0, 2155, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2005, 0, 1827, + 2001, 0, 1822, + 1996, 0, 1817, + 1989, 0, 1809, + 1980, 0, 1798, + 1967, 0, 1783, + 1949, 0, 1762, + 1924, 386, 1733, + 1888, 684, 1690, + 1836, 910, 1627, + 1754, 1101, 1524, + 1615, 1273, 1337, + 1320, 1433, 819, + 0, 1585, 0, + 0, 1731, 0, + 0, 1874, 0, + 0, 2013, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2139, 0, 1960, + 2137, 0, 1957, + 2133, 0, 1953, + 2127, 0, 1947, + 2121, 0, 1939, + 2111, 0, 1928, + 2099, 0, 1913, + 2081, 0, 1892, + 2055, 511, 1863, + 2020, 813, 1820, + 1967, 1040, 1756, + 1885, 1232, 1653, + 1746, 1405, 1464, + 1450, 1565, 935, + 0, 1717, 0, + 0, 1863, 0, + 0, 2005, 0, + 0, 2145, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2273, 0, 2093, + 2271, 0, 2091, + 2269, 0, 2087, + 2265, 0, 2083, + 2259, 0, 2077, + 2253, 0, 2069, + 2243, 0, 2059, + 2231, 0, 2044, + 2213, 72, 2023, + 2187, 638, 1993, + 2151, 943, 1950, + 2099, 1171, 1886, + 2017, 1363, 1783, + 1877, 1536, 1592, + 1580, 1696, 1054, + 0, 1848, 0, + 0, 1995, 0, + 0, 2137, 0, + 0, 2277, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2407, 0, 2227, + 2405, 0, 2225, + 2403, 0, 2223, + 2401, 0, 2219, + 2397, 0, 2215, + 2391, 0, 2209, + 2385, 0, 2201, + 2375, 0, 2189, + 2363, 0, 2175, + 2345, 192, 2153, + 2319, 767, 2125, + 2283, 1073, 2081, + 2231, 1302, 2017, + 2149, 1495, 1913, + 2009, 1668, 1722, + 1711, 1828, 1176, + 0, 1980, 0, + 0, 2127, 0, + 0, 2269, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2539, 0, 2359, + 2539, 0, 2357, + 2537, 0, 2357, + 2535, 0, 2353, + 2533, 0, 2351, + 2529, 0, 2345, + 2523, 0, 2341, + 2517, 0, 2333, + 2507, 0, 2321, + 2495, 0, 2305, + 2477, 314, 2285, + 2451, 896, 2255, + 2415, 1203, 2213, + 2363, 1433, 2147, + 2281, 1626, 2043, + 2141, 1799, 1851, + 1842, 1960, 1301, + 0, 2113, 0, + 0, 2259, 0, + 0, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2673, 0, 2491, + 2671, 0, 2491, + 2671, 0, 2489, + 2669, 0, 2487, + 2667, 0, 2485, + 2665, 0, 2481, + 2661, 0, 2477, + 2655, 0, 2471, + 2649, 0, 2463, + 2639, 0, 2453, + 2627, 0, 2437, + 2609, 438, 2417, + 2583, 1026, 2387, + 2547, 1334, 2343, + 2495, 1564, 2279, + 2413, 1758, 2175, + 2273, 1931, 1982, + 1974, 2091, 1427, + 0, 2245, 0, + 0, 2391, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2805, 0, 2625, + 2805, 0, 2623, + 2803, 0, 2623, + 2803, 0, 2621, + 2801, 0, 2619, + 2799, 0, 2617, + 2797, 0, 2613, + 2793, 0, 2609, + 2787, 0, 2603, + 2781, 0, 2595, + 2771, 0, 2585, + 2759, 0, 2569, + 2741, 565, 2549, + 2715, 1157, 2519, + 2679, 1466, 2475, + 2627, 1696, 2411, + 2543, 1890, 2305, + 2405, 2063, 2113, + 2105, 2223, 1555, + 0, 2377, 0, + 0, 2523, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2937, 0, 2757, + 2937, 0, 2755, + 2937, 0, 2755, + 2935, 0, 2755, + 2935, 0, 2753, + 2933, 0, 2751, + 2931, 0, 2749, + 2929, 0, 2745, + 2925, 0, 2741, + 2919, 0, 2735, + 2913, 0, 2727, + 2903, 0, 2717, + 2891, 0, 2701, + 2873, 693, 2679, + 2847, 1288, 2651, + 2811, 1597, 2607, + 2759, 1828, 2541, + 2675, 2022, 2437, + 2537, 2195, 2243, + 2237, 2355, 1684, + 0, 2509, 0, + 0, 2655, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2889, + 3071, 0, 2889, + 3069, 0, 2887, + 3069, 0, 2887, + 3069, 0, 2887, + 3067, 0, 2885, + 3065, 0, 2883, + 3063, 0, 2881, + 3061, 0, 2877, + 3057, 0, 2873, + 3051, 0, 2867, + 3045, 0, 2859, + 3035, 0, 2847, + 3023, 0, 2833, + 3005, 821, 2811, + 2979, 1419, 2781, + 2943, 1729, 2739, + 2891, 1960, 2673, + 2807, 2153, 2569, + 2669, 2327, 2375, + 2369, 2487, 1813, + 0, 2641, 0, + 0, 2787, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3021, + 3203, 0, 3021, + 3203, 0, 3021, + 3201, 0, 3019, + 3201, 0, 3019, + 3201, 0, 3019, + 3199, 0, 3017, + 3197, 0, 3015, + 3195, 0, 3013, + 3193, 0, 3009, + 3189, 0, 3005, + 3183, 0, 2999, + 3177, 0, 2991, + 3167, 0, 2979, + 3155, 0, 2965, + 3137, 951, 2943, + 3111, 1550, 2913, + 3075, 1861, 2871, + 3023, 2091, 2805, + 2941, 2285, 2701, + 2801, 2459, 2507, + 2501, 2619, 1944, + 0, 2773, 0, + 0, 2919, 0, + 0, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3151, + 3333, 0, 3151, + 3333, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3327, 0, 3145, + 3325, 0, 3141, + 3321, 0, 3137, + 3315, 0, 3131, + 3309, 0, 3123, + 3299, 0, 3111, + 3287, 0, 3097, + 3269, 1081, 3075, + 3243, 1682, 3045, + 3207, 1993, 3003, + 3155, 2223, 2937, + 3073, 2417, 2833, + 2933, 2591, 2639, + 2633, 2753, 2075, + 0, 2905, 0, + 0, 3051, 0, + 0, 3193, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3283, + 3465, 0, 3283, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3273, + 3453, 0, 3269, + 3447, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3243, + 3419, 0, 3229, + 3401, 1212, 3207, + 3375, 1814, 3177, + 3339, 2125, 3135, + 3287, 2355, 3069, + 3205, 2549, 2965, + 3065, 2723, 2771, + 2765, 2885, 2205, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4009, 0, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3405, + 3585, 0, 3401, + 3579, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3375, + 3551, 0, 3361, + 3533, 1343, 3339, + 3507, 1946, 3309, + 3471, 2257, 3267, + 3419, 2487, 3201, + 3337, 2681, 3097, + 3197, 2855, 2903, + 2897, 3017, 2337, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3735, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3711, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3507, + 3683, 0, 3493, + 3665, 1474, 3471, + 3639, 2077, 3441, + 3603, 2389, 3399, + 3551, 2619, 3333, + 3469, 2813, 3229, + 3329, 2987, 3035, + 3029, 3149, 2469, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1606, 3603, + 3771, 2209, 3573, + 3735, 2521, 3531, + 3683, 2751, 3465, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2601, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3987, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1738, 3735, + 3903, 2341, 3707, + 3867, 2653, 3663, + 3815, 2883, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2731, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4091, 0, 3905, + 4079, 0, 3889, + 4061, 1869, 3867, + 4035, 2473, 3839, + 3999, 2785, 3795, + 3947, 3015, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2863, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2001, 4001, + 4095, 2605, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3515, 3563, + 3557, 3677, 2995, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2133, 4095, + 4095, 2737, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3127, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2265, 4095, + 4095, 2869, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3259, + 7, 0, 127, + 0, 71, 0, + 0, 199, 0, + 0, 328, 0, + 0, 457, 0, + 0, 587, 0, + 0, 718, 0, + 0, 849, 0, + 0, 980, 0, + 0, 1112, 0, + 0, 1243, 0, + 0, 1375, 0, + 0, 1507, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 287, 0, 292, + 83, 54, 145, + 0, 186, 0, + 0, 318, 0, + 0, 450, 0, + 0, 582, 0, + 0, 714, 0, + 0, 846, 0, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 506, 0, 448, + 390, 30, 348, + 168, 168, 168, + 0, 304, 0, + 0, 440, 0, + 0, 574, 0, + 0, 708, 0, + 0, 842, 0, + 0, 975, 0, + 0, 1108, 0, + 0, 1240, 0, + 0, 1373, 0, + 0, 1505, 0, + 0, 1638, 0, + 0, 1770, 0, + 0, 1902, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 693, 0, 597, + 620, 0, 527, + 499, 143, 414, + 261, 286, 197, + 0, 426, 0, + 0, 564, 0, + 0, 701, 0, + 0, 836, 0, + 0, 971, 0, + 0, 1105, 0, + 0, 1238, 0, + 0, 1371, 0, + 0, 1504, 0, + 0, 1637, 0, + 0, 1769, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 862, 0, 741, + 813, 0, 692, + 738, 107, 616, + 613, 260, 489, + 362, 407, 233, + 0, 550, 0, + 0, 691, 0, + 0, 829, 0, + 0, 965, 0, + 0, 1100, 0, + 0, 1235, 0, + 0, 1369, 0, + 0, 1502, 0, + 0, 1636, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1020, 0, 882, + 986, 0, 846, + 936, 54, 794, + 859, 223, 712, + 731, 381, 573, + 469, 531, 278, + 0, 677, 0, + 0, 818, 0, + 0, 958, 0, + 0, 1095, 0, + 0, 1231, 0, + 0, 1366, 0, + 0, 1500, 0, + 0, 1634, 0, + 0, 1767, 0, + 0, 1900, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1171, 0, 1021, + 1146, 0, 995, + 1112, 0, 957, + 1061, 168, 902, + 983, 343, 815, + 852, 504, 666, + 582, 657, 331, + 0, 804, 0, + 0, 947, 0, + 0, 1087, 0, + 0, 1225, 0, + 0, 1362, 0, + 0, 1497, 0, + 0, 1632, 0, + 0, 1765, 0, + 0, 1899, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1316, 0, 1158, + 1299, 0, 1139, + 1274, 0, 1112, + 1239, 82, 1073, + 1188, 286, 1015, + 1109, 465, 925, + 976, 630, 766, + 699, 784, 394, + 0, 933, 0, + 0, 1077, 0, + 0, 1217, 0, + 0, 1356, 0, + 0, 1493, 0, + 0, 1628, 0, + 0, 1763, 0, + 0, 1897, 0, + 0, 2031, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1458, 0, 1293, + 1445, 0, 1279, + 1428, 0, 1260, + 1403, 0, 1232, + 1368, 197, 1192, + 1316, 407, 1133, + 1236, 590, 1039, + 1101, 757, 873, + 819, 913, 466, + 0, 1062, 0, + 0, 1207, 0, + 0, 1348, 0, + 0, 1487, 0, + 0, 1624, 0, + 0, 1760, 0, + 0, 1895, 0, + 0, 2029, 0, + 0, 2163, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1597, 0, 1428, + 1588, 0, 1418, + 1575, 0, 1403, + 1558, 0, 1383, + 1533, 42, 1355, + 1497, 316, 1315, + 1445, 531, 1254, + 1365, 717, 1157, + 1229, 885, 985, + 943, 1042, 548, + 0, 1192, 0, + 0, 1338, 0, + 0, 1479, 0, + 0, 1618, 0, + 0, 1756, 0, + 0, 1892, 0, + 0, 2027, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1735, 0, 1562, + 1728, 0, 1555, + 1718, 0, 1544, + 1706, 0, 1529, + 1688, 0, 1509, + 1663, 155, 1480, + 1628, 438, 1439, + 1575, 657, 1377, + 1494, 845, 1279, + 1357, 1014, 1101, + 1068, 1172, 638, + 0, 1323, 0, + 0, 1469, 0, + 0, 1611, 0, + 0, 1750, 0, + 0, 1887, 0, + 0, 2023, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1871, 0, 1696, + 1866, 0, 1690, + 1859, 0, 1682, + 1849, 0, 1672, + 1837, 0, 1657, + 1819, 0, 1636, + 1794, 273, 1607, + 1758, 562, 1566, + 1706, 784, 1503, + 1624, 974, 1403, + 1487, 1144, 1221, + 1195, 1303, 736, + 0, 1454, 0, + 0, 1600, 0, + 0, 1742, 0, + 0, 1882, 0, + 0, 2019, 0, + 0, 2155, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2006, 0, 1829, + 2002, 0, 1825, + 1997, 0, 1819, + 1990, 0, 1811, + 1981, 0, 1800, + 1968, 0, 1785, + 1950, 0, 1765, + 1925, 394, 1736, + 1889, 689, 1694, + 1837, 913, 1630, + 1755, 1103, 1529, + 1617, 1275, 1344, + 1323, 1434, 841, + 0, 1585, 0, + 0, 1732, 0, + 0, 1874, 0, + 0, 2013, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2141, 0, 1962, + 2137, 0, 1959, + 2133, 0, 1955, + 2129, 0, 1949, + 2121, 0, 1941, + 2113, 0, 1930, + 2099, 0, 1915, + 2081, 0, 1894, + 2057, 518, 1865, + 2020, 816, 1822, + 1968, 1042, 1759, + 1886, 1234, 1657, + 1747, 1405, 1470, + 1452, 1565, 952, + 0, 1717, 0, + 0, 1863, 0, + 0, 2006, 0, + 0, 2145, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2273, 0, 2095, + 2271, 0, 2093, + 2269, 0, 2089, + 2265, 0, 2085, + 2259, 0, 2079, + 2253, 0, 2071, + 2243, 0, 2061, + 2231, 0, 2045, + 2213, 89, 2024, + 2187, 643, 1995, + 2151, 945, 1952, + 2099, 1172, 1888, + 2017, 1364, 1785, + 1878, 1537, 1596, + 1582, 1697, 1067, + 0, 1849, 0, + 0, 1995, 0, + 0, 2137, 0, + 0, 2277, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2407, 0, 2227, + 2405, 0, 2225, + 2403, 0, 2223, + 2401, 0, 2219, + 2397, 0, 2215, + 2391, 0, 2209, + 2385, 0, 2201, + 2375, 0, 2191, + 2363, 0, 2175, + 2345, 205, 2155, + 2319, 771, 2125, + 2283, 1074, 2083, + 2231, 1303, 2018, + 2149, 1495, 1915, + 2010, 1668, 1725, + 1713, 1828, 1186, + 0, 1980, 0, + 0, 2127, 0, + 0, 2269, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2541, 0, 2359, + 2539, 0, 2359, + 2537, 0, 2357, + 2535, 0, 2355, + 2533, 0, 2351, + 2529, 0, 2347, + 2523, 0, 2341, + 2517, 0, 2333, + 2507, 0, 2321, + 2495, 0, 2307, + 2477, 324, 2285, + 2451, 899, 2257, + 2415, 1205, 2213, + 2363, 1434, 2149, + 2281, 1627, 2045, + 2141, 1800, 1854, + 1843, 1960, 1308, + 0, 2113, 0, + 0, 2259, 0, + 0, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2673, 0, 2493, + 2673, 0, 2491, + 2671, 0, 2489, + 2669, 0, 2489, + 2667, 0, 2485, + 2665, 0, 2483, + 2661, 0, 2479, + 2655, 0, 2473, + 2649, 0, 2465, + 2639, 0, 2453, + 2627, 0, 2439, + 2609, 446, 2417, + 2583, 1028, 2387, + 2547, 1335, 2345, + 2495, 1565, 2279, + 2413, 1758, 2175, + 2273, 1932, 1984, + 1975, 2093, 1433, + 0, 2245, 0, + 0, 2391, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2805, 0, 2625, + 2805, 0, 2623, + 2805, 0, 2623, + 2803, 0, 2621, + 2801, 0, 2619, + 2799, 0, 2617, + 2797, 0, 2615, + 2793, 0, 2609, + 2787, 0, 2603, + 2781, 0, 2595, + 2771, 0, 2585, + 2759, 0, 2569, + 2741, 570, 2549, + 2715, 1158, 2519, + 2679, 1467, 2475, + 2627, 1697, 2411, + 2545, 1890, 2307, + 2405, 2063, 2113, + 2107, 2223, 1559, + 0, 2377, 0, + 0, 2523, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2757, + 2937, 0, 2757, + 2937, 0, 2755, + 2937, 0, 2755, + 2935, 0, 2753, + 2933, 0, 2751, + 2931, 0, 2749, + 2929, 0, 2745, + 2925, 0, 2741, + 2919, 0, 2735, + 2913, 0, 2727, + 2903, 0, 2717, + 2891, 0, 2701, + 2873, 697, 2681, + 2847, 1289, 2651, + 2811, 1598, 2607, + 2759, 1828, 2543, + 2677, 2022, 2437, + 2537, 2195, 2245, + 2237, 2355, 1687, + 0, 2509, 0, + 0, 2655, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2889, + 3071, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2887, + 3069, 0, 2887, + 3067, 0, 2885, + 3065, 0, 2883, + 3063, 0, 2881, + 3061, 0, 2877, + 3057, 0, 2873, + 3051, 0, 2867, + 3045, 0, 2859, + 3035, 0, 2849, + 3023, 0, 2833, + 3005, 825, 2811, + 2979, 1420, 2783, + 2943, 1729, 2739, + 2891, 1960, 2673, + 2809, 2153, 2569, + 2669, 2327, 2377, + 2369, 2487, 1816, + 0, 2641, 0, + 0, 2787, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3021, + 3203, 0, 3021, + 3203, 0, 3021, + 3201, 0, 3021, + 3201, 0, 3019, + 3201, 0, 3019, + 3199, 0, 3017, + 3197, 0, 3015, + 3195, 0, 3013, + 3193, 0, 3009, + 3189, 0, 3005, + 3183, 0, 2999, + 3177, 0, 2991, + 3167, 0, 2981, + 3155, 0, 2965, + 3137, 954, 2943, + 3111, 1551, 2913, + 3075, 1861, 2871, + 3023, 2091, 2805, + 2941, 2285, 2701, + 2801, 2459, 2507, + 2501, 2621, 1945, + 0, 2773, 0, + 0, 2919, 0, + 0, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3151, + 3333, 0, 3151, + 3333, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3327, 0, 3145, + 3325, 0, 3141, + 3321, 0, 3137, + 3315, 0, 3131, + 3309, 0, 3123, + 3299, 0, 3111, + 3287, 0, 3097, + 3269, 1083, 3075, + 3243, 1682, 3045, + 3207, 1993, 3003, + 3155, 2223, 2937, + 3073, 2417, 2833, + 2933, 2591, 2639, + 2633, 2753, 2075, + 0, 2905, 0, + 0, 3051, 0, + 0, 3193, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3283, + 3465, 0, 3283, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3273, + 3453, 0, 3269, + 3447, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3243, + 3419, 0, 3229, + 3401, 1213, 3207, + 3375, 1814, 3177, + 3339, 2125, 3135, + 3287, 2355, 3069, + 3205, 2549, 2965, + 3065, 2723, 2771, + 2765, 2885, 2207, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4009, 0, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3405, + 3585, 0, 3401, + 3579, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3377, + 3551, 0, 3361, + 3533, 1344, 3339, + 3507, 1946, 3309, + 3471, 2257, 3267, + 3419, 2487, 3201, + 3337, 2681, 3097, + 3197, 2855, 2903, + 2897, 3017, 2337, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3711, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3509, + 3683, 0, 3493, + 3665, 1475, 3471, + 3639, 2077, 3441, + 3603, 2389, 3399, + 3551, 2619, 3333, + 3469, 2813, 3229, + 3329, 2987, 3035, + 3029, 3149, 2469, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1606, 3603, + 3771, 2209, 3573, + 3735, 2521, 3531, + 3683, 2751, 3465, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2601, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3987, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1738, 3735, + 3903, 2341, 3707, + 3867, 2653, 3663, + 3815, 2883, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2733, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4091, 0, 3905, + 4079, 0, 3889, + 4061, 1870, 3869, + 4035, 2473, 3839, + 3999, 2785, 3795, + 3947, 3017, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2863, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2002, 4001, + 4095, 2605, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3515, 3563, + 3557, 3677, 2995, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2133, 4095, + 4095, 2737, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3127, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2265, 4095, + 4095, 2869, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3259, + 73, 0, 245, + 0, 93, 78, + 0, 216, 0, + 0, 340, 0, + 0, 467, 0, + 0, 595, 0, + 0, 724, 0, + 0, 853, 0, + 0, 984, 0, + 0, 1114, 0, + 0, 1245, 0, + 0, 1377, 0, + 0, 1508, 0, + 0, 1640, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 324, 0, 378, + 139, 77, 259, + 0, 203, 27, + 0, 331, 0, + 0, 460, 0, + 0, 589, 0, + 0, 719, 0, + 0, 850, 0, + 0, 981, 0, + 0, 1112, 0, + 0, 1244, 0, + 0, 1376, 0, + 0, 1507, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 528, 0, 510, + 420, 54, 424, + 215, 186, 277, + 0, 318, 0, + 0, 450, 0, + 0, 582, 0, + 0, 714, 0, + 0, 846, 0, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 708, 0, 642, + 638, 21, 580, + 522, 162, 481, + 300, 300, 300, + 0, 437, 0, + 0, 572, 0, + 0, 707, 0, + 0, 841, 0, + 0, 974, 0, + 0, 1107, 0, + 0, 1240, 0, + 0, 1373, 0, + 0, 1505, 0, + 0, 1638, 0, + 0, 1770, 0, + 0, 1902, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 873, 0, 775, + 825, 0, 729, + 752, 127, 659, + 631, 275, 546, + 393, 418, 329, + 0, 558, 0, + 0, 696, 0, + 0, 833, 0, + 0, 968, 0, + 0, 1103, 0, + 0, 1237, 0, + 0, 1370, 0, + 0, 1503, 0, + 0, 1636, 0, + 0, 1769, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1028, 0, 907, + 994, 0, 873, + 945, 77, 824, + 870, 239, 748, + 745, 392, 621, + 494, 539, 365, + 0, 683, 0, + 0, 823, 0, + 0, 961, 0, + 0, 1097, 0, + 0, 1233, 0, + 0, 1367, 0, + 0, 1501, 0, + 0, 1635, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1176, 0, 1039, + 1152, 0, 1014, + 1118, 0, 979, + 1068, 186, 926, + 991, 355, 844, + 863, 513, 705, + 601, 663, 410, + 0, 809, 0, + 0, 951, 0, + 0, 1090, 0, + 0, 1227, 0, + 0, 1363, 0, + 0, 1498, 0, + 0, 1632, 0, + 0, 1766, 0, + 0, 1899, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1320, 0, 1171, + 1303, 0, 1153, + 1279, 0, 1127, + 1244, 103, 1089, + 1193, 300, 1034, + 1115, 475, 948, + 984, 636, 798, + 714, 789, 463, + 0, 936, 0, + 0, 1079, 0, + 0, 1219, 0, + 0, 1357, 0, + 0, 1494, 0, + 0, 1629, 0, + 0, 1764, 0, + 0, 1898, 0, + 0, 2031, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1461, 0, 1304, + 1448, 0, 1290, + 1431, 0, 1271, + 1406, 0, 1244, + 1371, 214, 1205, + 1320, 418, 1147, + 1241, 597, 1057, + 1108, 762, 898, + 831, 917, 526, + 0, 1065, 0, + 0, 1209, 0, + 0, 1350, 0, + 0, 1488, 0, + 0, 1625, 0, + 0, 1760, 0, + 0, 1895, 0, + 0, 2029, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1599, 0, 1436, + 1590, 0, 1426, + 1577, 0, 1411, + 1560, 0, 1392, + 1535, 65, 1364, + 1500, 329, 1324, + 1448, 539, 1265, + 1368, 722, 1171, + 1233, 889, 1005, + 952, 1045, 598, + 0, 1194, 0, + 0, 1339, 0, + 0, 1480, 0, + 0, 1619, 0, + 0, 1756, 0, + 0, 1892, 0, + 0, 2027, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1736, 0, 1568, + 1729, 0, 1560, + 1720, 0, 1550, + 1707, 0, 1535, + 1690, 0, 1515, + 1665, 174, 1487, + 1630, 448, 1447, + 1578, 663, 1386, + 1497, 849, 1289, + 1361, 1017, 1117, + 1074, 1174, 680, + 0, 1325, 0, + 0, 1470, 0, + 0, 1611, 0, + 0, 1751, 0, + 0, 1888, 0, + 0, 2024, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1872, 0, 1700, + 1867, 0, 1694, + 1860, 0, 1687, + 1851, 0, 1676, + 1838, 0, 1661, + 1820, 0, 1641, + 1795, 287, 1613, + 1760, 570, 1571, + 1707, 789, 1510, + 1627, 977, 1411, + 1489, 1146, 1233, + 1200, 1304, 770, + 0, 1455, 0, + 0, 1601, 0, + 0, 1743, 0, + 0, 1882, 0, + 0, 2020, 0, + 0, 2155, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2007, 0, 1832, + 2003, 0, 1828, + 1998, 0, 1822, + 1991, 0, 1814, + 1982, 0, 1804, + 1969, 0, 1789, + 1951, 0, 1768, + 1926, 405, 1740, + 1890, 694, 1698, + 1838, 916, 1635, + 1757, 1105, 1535, + 1619, 1276, 1354, + 1327, 1435, 868, + 0, 1586, 0, + 0, 1732, 0, + 0, 1874, 0, + 0, 2014, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2141, 0, 1964, + 2137, 0, 1961, + 2135, 0, 1957, + 2129, 0, 1951, + 2123, 0, 1943, + 2113, 0, 1932, + 2099, 0, 1918, + 2083, 6, 1897, + 2057, 526, 1868, + 2021, 821, 1826, + 1969, 1045, 1762, + 1887, 1235, 1661, + 1749, 1407, 1477, + 1455, 1566, 973, + 0, 1718, 0, + 0, 1864, 0, + 0, 2006, 0, + 0, 2145, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2275, 0, 2097, + 2273, 0, 2095, + 2269, 0, 2091, + 2265, 0, 2087, + 2261, 0, 2081, + 2253, 0, 2073, + 2245, 0, 2063, + 2231, 0, 2047, + 2213, 111, 2026, + 2189, 650, 1997, + 2153, 948, 1955, + 2099, 1174, 1891, + 2018, 1366, 1789, + 1879, 1538, 1602, + 1584, 1697, 1083, + 0, 1849, 0, + 0, 1995, 0, + 0, 2137, 0, + 0, 2277, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2407, 0, 2229, + 2405, 0, 2227, + 2403, 0, 2225, + 2401, 0, 2221, + 2397, 0, 2217, + 2393, 0, 2211, + 2385, 0, 2203, + 2375, 0, 2193, + 2363, 0, 2177, + 2345, 221, 2157, + 2319, 775, 2127, + 2285, 1077, 2085, + 2231, 1304, 2020, + 2149, 1496, 1917, + 2010, 1669, 1729, + 1714, 1829, 1199, + 0, 1981, 0, + 0, 2127, 0, + 0, 2269, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2541, 0, 2361, + 2539, 0, 2359, + 2537, 0, 2357, + 2535, 0, 2355, + 2533, 0, 2353, + 2529, 0, 2347, + 2523, 0, 2341, + 2517, 0, 2333, + 2507, 0, 2323, + 2495, 0, 2307, + 2477, 337, 2287, + 2451, 903, 2257, + 2415, 1207, 2215, + 2363, 1435, 2151, + 2281, 1628, 2047, + 2141, 1800, 1857, + 1845, 1961, 1318, + 0, 2113, 0, + 0, 2259, 0, + 0, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2673, 0, 2493, + 2673, 0, 2493, + 2671, 0, 2491, + 2669, 0, 2489, + 2667, 0, 2487, + 2665, 0, 2483, + 2661, 0, 2479, + 2655, 0, 2473, + 2649, 0, 2465, + 2639, 0, 2453, + 2627, 0, 2439, + 2609, 456, 2417, + 2583, 1031, 2389, + 2547, 1337, 2345, + 2495, 1566, 2281, + 2413, 1759, 2177, + 2273, 1932, 1986, + 1976, 2093, 1440, + 0, 2245, 0, + 0, 2391, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2805, 0, 2625, + 2805, 0, 2625, + 2805, 0, 2623, + 2803, 0, 2623, + 2801, 0, 2621, + 2799, 0, 2617, + 2797, 0, 2615, + 2793, 0, 2611, + 2787, 0, 2605, + 2781, 0, 2597, + 2771, 0, 2585, + 2759, 0, 2571, + 2741, 578, 2549, + 2715, 1160, 2519, + 2679, 1468, 2477, + 2627, 1697, 2411, + 2545, 1891, 2307, + 2405, 2063, 2115, + 2107, 2225, 1565, + 0, 2377, 0, + 0, 2523, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2757, + 2937, 0, 2757, + 2937, 0, 2755, + 2937, 0, 2755, + 2935, 0, 2753, + 2933, 0, 2751, + 2931, 0, 2749, + 2929, 0, 2747, + 2925, 0, 2741, + 2919, 0, 2735, + 2913, 0, 2727, + 2903, 0, 2717, + 2891, 0, 2701, + 2873, 703, 2681, + 2847, 1290, 2651, + 2811, 1599, 2607, + 2759, 1829, 2543, + 2677, 2022, 2439, + 2537, 2195, 2247, + 2239, 2357, 1691, + 0, 2509, 0, + 0, 2655, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2889, + 3071, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2887, + 3069, 0, 2887, + 3067, 0, 2885, + 3065, 0, 2883, + 3063, 0, 2881, + 3061, 0, 2877, + 3057, 0, 2873, + 3051, 0, 2867, + 3045, 0, 2859, + 3035, 0, 2849, + 3023, 0, 2833, + 3005, 829, 2813, + 2979, 1421, 2783, + 2943, 1730, 2739, + 2891, 1960, 2675, + 2809, 2155, 2569, + 2669, 2327, 2377, + 2369, 2489, 1819, + 0, 2641, 0, + 0, 2787, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3021, + 3203, 0, 3021, + 3203, 0, 3021, + 3201, 0, 3021, + 3201, 0, 3019, + 3201, 0, 3019, + 3199, 0, 3017, + 3197, 0, 3015, + 3195, 0, 3013, + 3193, 0, 3009, + 3189, 0, 3005, + 3183, 0, 2999, + 3177, 0, 2991, + 3167, 0, 2981, + 3155, 0, 2965, + 3137, 957, 2945, + 3111, 1552, 2915, + 3075, 1862, 2871, + 3023, 2093, 2807, + 2941, 2285, 2701, + 2801, 2459, 2509, + 2501, 2621, 1948, + 0, 2773, 0, + 0, 2919, 0, + 0, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3153, + 3333, 0, 3151, + 3333, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3327, 0, 3145, + 3325, 0, 3141, + 3321, 0, 3137, + 3315, 0, 3131, + 3309, 0, 3123, + 3299, 0, 3113, + 3287, 0, 3097, + 3269, 1085, 3075, + 3243, 1683, 3047, + 3207, 1993, 3003, + 3155, 2223, 2937, + 3073, 2417, 2833, + 2933, 2591, 2639, + 2633, 2753, 2077, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3285, + 3465, 0, 3283, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3273, + 3453, 0, 3269, + 3447, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3245, + 3419, 0, 3229, + 3401, 1215, 3207, + 3375, 1815, 3179, + 3339, 2125, 3135, + 3287, 2355, 3069, + 3205, 2549, 2965, + 3065, 2723, 2771, + 2765, 2885, 2207, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3405, + 3585, 0, 3401, + 3579, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3377, + 3551, 0, 3361, + 3533, 1345, 3339, + 3507, 1946, 3309, + 3471, 2257, 3267, + 3419, 2487, 3201, + 3337, 2681, 3097, + 3197, 2855, 2903, + 2897, 3017, 2339, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3551, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3713, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3509, + 3683, 0, 3493, + 3665, 1476, 3471, + 3639, 2077, 3441, + 3603, 2389, 3399, + 3551, 2619, 3333, + 3469, 2815, 3229, + 3329, 2987, 3035, + 3029, 3149, 2469, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1607, 3603, + 3771, 2209, 3575, + 3735, 2521, 3531, + 3683, 2751, 3465, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2601, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3987, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1739, 3735, + 3903, 2341, 3707, + 3867, 2653, 3663, + 3815, 2883, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2733, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4091, 0, 3905, + 4079, 0, 3889, + 4061, 1870, 3869, + 4035, 2473, 3839, + 3999, 2785, 3795, + 3947, 3017, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2865, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2002, 4001, + 4095, 2605, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3515, 3563, + 3557, 3677, 2997, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2133, 4095, + 4095, 2737, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3127, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2265, 4095, + 4095, 2869, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3259, + 148, 10, 366, + 0, 122, 244, + 0, 237, 2, + 0, 357, 0, + 0, 479, 0, + 0, 604, 0, + 0, 731, 0, + 0, 859, 0, + 0, 988, 0, + 0, 1117, 0, + 0, 1247, 0, + 0, 1378, 0, + 0, 1509, 0, + 0, 1641, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2036, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 369, 0, 471, + 205, 106, 377, + 0, 225, 210, + 0, 348, 0, + 0, 473, 0, + 0, 599, 0, + 0, 727, 0, + 0, 856, 0, + 0, 985, 0, + 0, 1115, 0, + 0, 1246, 0, + 0, 1377, 0, + 0, 1509, 0, + 0, 1640, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2036, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 558, 0, 582, + 456, 85, 510, + 271, 209, 391, + 0, 335, 159, + 0, 463, 0, + 0, 592, 0, + 0, 721, 0, + 0, 852, 0, + 0, 982, 0, + 0, 1113, 0, + 0, 1245, 0, + 0, 1376, 0, + 0, 1508, 0, + 0, 1640, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 728, 0, 697, + 661, 54, 642, + 552, 186, 556, + 347, 318, 409, + 0, 450, 82, + 0, 582, 0, + 0, 714, 0, + 0, 846, 0, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 887, 0, 816, + 840, 10, 775, + 770, 153, 712, + 654, 294, 613, + 432, 432, 432, + 0, 569, 0, + 0, 704, 0, + 0, 839, 0, + 0, 973, 0, + 0, 1106, 0, + 0, 1239, 0, + 0, 1372, 0, + 0, 1505, 0, + 0, 1637, 0, + 0, 1770, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1037, 0, 938, + 1005, 0, 907, + 957, 106, 861, + 884, 259, 792, + 763, 407, 678, + 525, 550, 461, + 0, 690, 0, + 0, 829, 0, + 0, 965, 0, + 0, 1100, 0, + 0, 1235, 0, + 0, 1369, 0, + 0, 1502, 0, + 0, 1636, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1183, 0, 1063, + 1160, 0, 1039, + 1126, 33, 1005, + 1077, 209, 956, + 1002, 371, 880, + 877, 524, 753, + 626, 672, 498, + 0, 815, 0, + 0, 955, 0, + 0, 1093, 0, + 0, 1229, 0, + 0, 1365, 0, + 0, 1499, 0, + 0, 1633, 0, + 0, 1767, 0, + 0, 1900, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1325, 0, 1189, + 1308, 0, 1171, + 1284, 0, 1146, + 1250, 131, 1110, + 1200, 318, 1058, + 1123, 487, 976, + 995, 645, 837, + 734, 795, 542, + 0, 941, 0, + 0, 1082, 0, + 0, 1222, 0, + 0, 1359, 0, + 0, 1495, 0, + 0, 1630, 0, + 0, 1764, 0, + 0, 1898, 0, + 0, 2031, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1465, 0, 1317, + 1452, 0, 1304, + 1435, 0, 1285, + 1411, 0, 1259, + 1376, 236, 1221, + 1325, 432, 1166, + 1247, 607, 1079, + 1116, 768, 930, + 846, 921, 595, + 0, 1068, 0, + 0, 1211, 0, + 0, 1351, 0, + 0, 1489, 0, + 0, 1626, 0, + 0, 1761, 0, + 0, 1896, 0, + 0, 2030, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1602, 0, 1446, + 1593, 0, 1436, + 1580, 0, 1422, + 1563, 0, 1403, + 1538, 95, 1376, + 1504, 346, 1337, + 1452, 550, 1279, + 1373, 729, 1189, + 1240, 894, 1030, + 963, 1048, 658, + 0, 1197, 0, + 0, 1341, 0, + 0, 1482, 0, + 0, 1620, 0, + 0, 1757, 0, + 0, 1893, 0, + 0, 2027, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1738, 0, 1575, + 1732, 0, 1568, + 1722, 0, 1558, + 1710, 0, 1544, + 1692, 0, 1524, + 1667, 198, 1496, + 1632, 461, 1456, + 1580, 671, 1397, + 1501, 854, 1303, + 1366, 1021, 1137, + 1083, 1177, 730, + 0, 1327, 0, + 0, 1471, 0, + 0, 1612, 0, + 0, 1751, 0, + 0, 1888, 0, + 0, 2024, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1873, 0, 1706, + 1868, 0, 1700, + 1862, 0, 1692, + 1852, 0, 1682, + 1839, 0, 1668, + 1822, 0, 1648, + 1797, 306, 1619, + 1762, 580, 1579, + 1710, 795, 1518, + 1629, 981, 1422, + 1493, 1149, 1249, + 1207, 1307, 812, + 0, 1457, 0, + 0, 1602, 0, + 0, 1744, 0, + 0, 1883, 0, + 0, 2020, 0, + 0, 2155, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2008, 0, 1837, + 2004, 0, 1832, + 1999, 0, 1827, + 1992, 0, 1819, + 1983, 0, 1808, + 1970, 0, 1794, + 1952, 0, 1773, + 1927, 419, 1745, + 1892, 702, 1703, + 1840, 921, 1642, + 1759, 1109, 1543, + 1621, 1278, 1366, + 1332, 1437, 902, + 0, 1587, 0, + 0, 1733, 0, + 0, 1875, 0, + 0, 2014, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2141, 0, 1968, + 2139, 0, 1964, + 2135, 0, 1960, + 2129, 0, 1954, + 2123, 0, 1947, + 2113, 0, 1936, + 2101, 0, 1921, + 2083, 39, 1901, + 2059, 537, 1872, + 2022, 826, 1830, + 1970, 1048, 1767, + 1889, 1238, 1667, + 1751, 1408, 1486, + 1459, 1567, 1000, + 0, 1718, 0, + 0, 1864, 0, + 0, 2006, 0, + 0, 2145, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2275, 0, 2099, + 2273, 0, 2097, + 2271, 0, 2093, + 2267, 0, 2089, + 2261, 0, 2083, + 2255, 0, 2075, + 2245, 0, 2065, + 2231, 0, 2049, + 2215, 138, 2029, + 2189, 658, 2000, + 2153, 953, 1958, + 2101, 1177, 1895, + 2019, 1367, 1793, + 1881, 1539, 1609, + 1587, 1698, 1105, + 0, 1850, 0, + 0, 1996, 0, + 0, 2139, 0, + 0, 2277, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2407, 0, 2231, + 2407, 0, 2229, + 2405, 0, 2227, + 2401, 0, 2223, + 2397, 0, 2219, + 2393, 0, 2213, + 2385, 0, 2205, + 2377, 0, 2195, + 2363, 0, 2179, + 2345, 243, 2159, + 2321, 782, 2129, + 2285, 1080, 2087, + 2233, 1306, 2023, + 2151, 1498, 1921, + 2012, 1670, 1734, + 1716, 1830, 1216, + 0, 1981, 0, + 0, 2127, 0, + 0, 2269, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2541, 0, 2363, + 2539, 0, 2361, + 2539, 0, 2359, + 2535, 0, 2357, + 2533, 0, 2353, + 2529, 0, 2349, + 2525, 0, 2343, + 2517, 0, 2335, + 2507, 0, 2325, + 2495, 0, 2309, + 2477, 353, 2289, + 2453, 908, 2259, + 2417, 1209, 2217, + 2363, 1436, 2153, + 2281, 1629, 2049, + 2143, 1801, 1861, + 1846, 1961, 1331, + 0, 2113, 0, + 0, 2259, 0, + 0, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2673, 0, 2493, + 2673, 0, 2493, + 2671, 0, 2491, + 2669, 0, 2489, + 2667, 0, 2487, + 2665, 0, 2485, + 2661, 0, 2479, + 2657, 0, 2475, + 2649, 0, 2465, + 2639, 0, 2455, + 2627, 0, 2441, + 2609, 469, 2419, + 2583, 1035, 2389, + 2547, 1339, 2347, + 2495, 1567, 2283, + 2413, 1760, 2179, + 2273, 1932, 1989, + 1977, 2093, 1450, + 0, 2245, 0, + 0, 2391, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2805, 0, 2625, + 2805, 0, 2625, + 2805, 0, 2625, + 2803, 0, 2623, + 2801, 0, 2621, + 2799, 0, 2619, + 2797, 0, 2615, + 2793, 0, 2611, + 2787, 0, 2605, + 2781, 0, 2597, + 2771, 0, 2587, + 2759, 0, 2571, + 2741, 588, 2551, + 2715, 1163, 2521, + 2679, 1469, 2477, + 2627, 1698, 2413, + 2545, 1891, 2309, + 2405, 2065, 2117, + 2107, 2225, 1572, + 0, 2377, 0, + 0, 2523, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2757, + 2937, 0, 2757, + 2937, 0, 2757, + 2937, 0, 2755, + 2935, 0, 2755, + 2933, 0, 2753, + 2931, 0, 2749, + 2929, 0, 2747, + 2925, 0, 2743, + 2919, 0, 2737, + 2913, 0, 2729, + 2903, 0, 2717, + 2891, 0, 2703, + 2873, 710, 2681, + 2847, 1292, 2651, + 2811, 1600, 2609, + 2759, 1829, 2543, + 2677, 2023, 2439, + 2537, 2195, 2247, + 2239, 2357, 1697, + 0, 2509, 0, + 0, 2655, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2889, + 3071, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2887, + 3067, 0, 2885, + 3065, 0, 2883, + 3063, 0, 2881, + 3061, 0, 2879, + 3057, 0, 2873, + 3051, 0, 2869, + 3045, 0, 2859, + 3035, 0, 2849, + 3023, 0, 2833, + 3005, 835, 2813, + 2979, 1422, 2783, + 2943, 1731, 2739, + 2891, 1961, 2675, + 2809, 2155, 2571, + 2669, 2327, 2379, + 2371, 2489, 1823, + 0, 2641, 0, + 0, 2787, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3021, + 3203, 0, 3021, + 3203, 0, 3021, + 3201, 0, 3021, + 3201, 0, 3019, + 3201, 0, 3019, + 3199, 0, 3017, + 3197, 0, 3015, + 3195, 0, 3013, + 3193, 0, 3011, + 3189, 0, 3005, + 3183, 0, 2999, + 3177, 0, 2991, + 3167, 0, 2981, + 3155, 0, 2965, + 3137, 961, 2945, + 3111, 1553, 2915, + 3075, 1862, 2871, + 3023, 2093, 2807, + 2941, 2287, 2703, + 2801, 2459, 2509, + 2501, 2621, 1951, + 0, 2773, 0, + 0, 2919, 0, + 0, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3153, + 3333, 0, 3151, + 3333, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3327, 0, 3145, + 3325, 0, 3141, + 3321, 0, 3137, + 3315, 0, 3131, + 3309, 0, 3123, + 3299, 0, 3113, + 3287, 0, 3097, + 3269, 1089, 3077, + 3243, 1684, 3047, + 3207, 1994, 3003, + 3155, 2225, 2939, + 3073, 2419, 2833, + 2933, 2591, 2641, + 2633, 2753, 2081, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3285, + 3465, 0, 3283, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3273, + 3453, 0, 3269, + 3447, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3245, + 3419, 0, 3229, + 3401, 1218, 3209, + 3375, 1815, 3179, + 3339, 2125, 3135, + 3287, 2357, 3069, + 3205, 2551, 2965, + 3065, 2723, 2771, + 2765, 2885, 2209, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3599, 0, 3419, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3405, + 3585, 0, 3401, + 3579, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3377, + 3551, 0, 3361, + 3533, 1347, 3339, + 3507, 1947, 3311, + 3471, 2257, 3267, + 3419, 2487, 3201, + 3337, 2683, 3097, + 3197, 2855, 2903, + 2897, 3017, 2339, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3713, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3509, + 3683, 0, 3493, + 3665, 1478, 3471, + 3639, 2079, 3443, + 3603, 2389, 3399, + 3551, 2619, 3333, + 3469, 2815, 3229, + 3329, 2987, 3035, + 3029, 3149, 2471, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1608, 3603, + 3771, 2211, 3575, + 3735, 2521, 3531, + 3683, 2751, 3465, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2601, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3987, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1739, 3737, + 3903, 2341, 3707, + 3867, 2653, 3663, + 3815, 2885, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2733, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4091, 0, 3905, + 4079, 0, 3889, + 4061, 1871, 3869, + 4035, 2473, 3839, + 3999, 2785, 3795, + 3947, 3017, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2865, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2002, 4001, + 4095, 2605, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3515, 3563, + 3557, 3677, 2997, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2133, 4095, + 4095, 2737, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3129, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2265, 4095, + 4095, 2869, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3261, + 232, 55, 490, + 0, 157, 400, + 0, 265, 243, + 0, 378, 0, + 0, 496, 0, + 0, 617, 0, + 0, 740, 0, + 0, 866, 0, + 0, 993, 0, + 0, 1121, 0, + 0, 1251, 0, + 0, 1381, 0, + 0, 1511, 0, + 0, 1642, 0, + 0, 1773, 0, + 0, 1905, 0, + 0, 2036, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 422, 37, 572, + 280, 142, 498, + 0, 254, 376, + 0, 369, 134, + 0, 489, 0, + 0, 611, 0, + 0, 736, 0, + 0, 863, 0, + 0, 991, 0, + 0, 1120, 0, + 0, 1249, 0, + 0, 1380, 0, + 0, 1510, 0, + 0, 1642, 0, + 0, 1773, 0, + 0, 1904, 0, + 0, 2036, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 594, 12, 663, + 501, 123, 603, + 337, 238, 509, + 0, 358, 342, + 0, 480, 0, + 0, 605, 0, + 0, 731, 0, + 0, 859, 0, + 0, 988, 0, + 0, 1117, 0, + 0, 1248, 0, + 0, 1378, 0, + 0, 1509, 0, + 0, 1641, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2036, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 753, 0, 761, + 690, 95, 714, + 588, 217, 642, + 403, 341, 523, + 0, 467, 291, + 0, 595, 0, + 0, 724, 0, + 0, 853, 0, + 0, 984, 0, + 0, 1114, 0, + 0, 1245, 0, + 0, 1377, 0, + 0, 1508, 0, + 0, 1640, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 905, 0, 866, + 860, 54, 829, + 793, 186, 774, + 684, 318, 689, + 479, 450, 541, + 0, 582, 214, + 0, 714, 0, + 0, 846, 0, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1050, 0, 977, + 1019, 0, 948, + 972, 142, 907, + 902, 286, 844, + 786, 426, 745, + 564, 564, 564, + 0, 701, 84, + 0, 836, 0, + 0, 971, 0, + 0, 1105, 0, + 0, 1238, 0, + 0, 1371, 0, + 0, 1504, 0, + 0, 1637, 0, + 0, 1769, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1193, 0, 1093, + 1170, 0, 1070, + 1137, 76, 1039, + 1089, 238, 993, + 1016, 392, 924, + 895, 539, 810, + 658, 682, 593, + 0, 823, 0, + 0, 961, 0, + 0, 1097, 0, + 0, 1232, 0, + 0, 1367, 0, + 0, 1501, 0, + 0, 1635, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1332, 0, 1212, + 1315, 0, 1195, + 1292, 0, 1171, + 1258, 165, 1137, + 1209, 341, 1088, + 1134, 503, 1012, + 1009, 656, 885, + 758, 804, 630, + 0, 947, 0, + 0, 1087, 0, + 0, 1225, 0, + 0, 1361, 0, + 0, 1497, 0, + 0, 1631, 0, + 0, 1765, 0, + 0, 1899, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1470, 0, 1334, + 1457, 0, 1321, + 1440, 0, 1303, + 1416, 46, 1278, + 1382, 263, 1243, + 1332, 450, 1190, + 1255, 619, 1108, + 1127, 777, 970, + 866, 928, 674, + 0, 1073, 0, + 0, 1215, 0, + 0, 1354, 0, + 0, 1491, 0, + 0, 1627, 0, + 0, 1762, 0, + 0, 1896, 0, + 0, 2030, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1606, 0, 1459, + 1597, 0, 1449, + 1584, 0, 1436, + 1567, 0, 1417, + 1543, 132, 1391, + 1508, 368, 1354, + 1458, 564, 1298, + 1379, 739, 1212, + 1248, 900, 1062, + 978, 1053, 727, + 0, 1200, 0, + 0, 1343, 0, + 0, 1484, 0, + 0, 1622, 0, + 0, 1758, 0, + 0, 1893, 0, + 0, 2028, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1741, 0, 1585, + 1734, 0, 1578, + 1725, 0, 1568, + 1713, 0, 1554, + 1695, 0, 1535, + 1671, 227, 1508, + 1636, 478, 1469, + 1584, 682, 1412, + 1505, 861, 1321, + 1372, 1026, 1162, + 1095, 1181, 790, + 0, 1329, 0, + 0, 1473, 0, + 0, 1614, 0, + 0, 1752, 0, + 0, 1889, 0, + 0, 2025, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1876, 0, 1713, + 1871, 0, 1708, + 1864, 0, 1700, + 1854, 0, 1690, + 1842, 0, 1676, + 1824, 0, 1656, + 1799, 330, 1628, + 1764, 593, 1589, + 1713, 803, 1529, + 1633, 986, 1435, + 1498, 1153, 1269, + 1216, 1309, 862, + 0, 1459, 0, + 0, 1603, 0, + 0, 1745, 0, + 0, 1883, 0, + 0, 2021, 0, + 0, 2157, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2009, 0, 1842, + 2006, 0, 1838, + 2001, 0, 1832, + 1994, 0, 1825, + 1984, 0, 1814, + 1972, 0, 1800, + 1954, 0, 1780, + 1929, 438, 1752, + 1894, 712, 1711, + 1842, 927, 1650, + 1761, 1113, 1554, + 1625, 1281, 1381, + 1339, 1439, 944, + 0, 1589, 0, + 0, 1734, 0, + 0, 1876, 0, + 0, 2015, 0, + 0, 2153, 0, + 0, 2289, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2143, 0, 1972, + 2139, 0, 1969, + 2137, 0, 1964, + 2131, 0, 1959, + 2125, 0, 1951, + 2115, 0, 1940, + 2103, 0, 1926, + 2085, 81, 1905, + 2059, 551, 1877, + 2024, 834, 1836, + 1972, 1053, 1774, + 1891, 1241, 1675, + 1754, 1410, 1498, + 1464, 1569, 1034, + 0, 1720, 0, + 0, 1865, 0, + 0, 2007, 0, + 0, 2147, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2275, 0, 2103, + 2273, 0, 2099, + 2271, 0, 2097, + 2267, 0, 2093, + 2263, 0, 2087, + 2255, 0, 2079, + 2245, 0, 2067, + 2233, 0, 2053, + 2215, 172, 2033, + 2191, 669, 2004, + 2155, 959, 1962, + 2103, 1180, 1899, + 2021, 1370, 1799, + 1883, 1540, 1618, + 1591, 1699, 1132, + 0, 1851, 0, + 0, 1996, 0, + 0, 2139, 0, + 0, 2279, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2409, 0, 2233, + 2407, 0, 2231, + 2405, 0, 2229, + 2403, 0, 2225, + 2399, 0, 2221, + 2393, 0, 2215, + 2387, 0, 2207, + 2377, 0, 2197, + 2365, 0, 2181, + 2347, 270, 2161, + 2321, 790, 2133, + 2285, 1085, 2089, + 2233, 1309, 2027, + 2151, 1500, 1925, + 2013, 1671, 1741, + 1719, 1830, 1237, + 0, 1982, 0, + 0, 2127, 0, + 0, 2271, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2541, 0, 2363, + 2541, 0, 2363, + 2539, 0, 2361, + 2537, 0, 2359, + 2533, 0, 2355, + 2529, 0, 2351, + 2525, 0, 2345, + 2517, 0, 2337, + 2509, 0, 2327, + 2495, 0, 2311, + 2477, 375, 2291, + 2453, 914, 2261, + 2417, 1212, 2219, + 2365, 1438, 2155, + 2283, 1630, 2053, + 2143, 1802, 1866, + 1849, 1962, 1348, + 0, 2113, 0, + 0, 2259, 0, + 0, 2403, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2673, 0, 2495, + 2673, 0, 2495, + 2671, 0, 2493, + 2671, 0, 2491, + 2669, 0, 2489, + 2665, 0, 2485, + 2661, 0, 2481, + 2657, 0, 2475, + 2649, 0, 2467, + 2641, 0, 2457, + 2627, 0, 2441, + 2609, 485, 2421, + 2585, 1039, 2391, + 2549, 1341, 2349, + 2495, 1569, 2285, + 2413, 1761, 2181, + 2275, 1933, 1993, + 1978, 2093, 1463, + 0, 2245, 0, + 0, 2391, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2807, 0, 2627, + 2805, 0, 2627, + 2805, 0, 2625, + 2803, 0, 2623, + 2801, 0, 2623, + 2799, 0, 2619, + 2797, 0, 2617, + 2793, 0, 2613, + 2789, 0, 2607, + 2781, 0, 2599, + 2771, 0, 2587, + 2759, 0, 2573, + 2741, 601, 2551, + 2715, 1167, 2521, + 2681, 1471, 2479, + 2627, 1699, 2415, + 2545, 1892, 2311, + 2405, 2065, 2121, + 2109, 2225, 1582, + 0, 2377, 0, + 0, 2523, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2759, + 2939, 0, 2759, + 2937, 0, 2757, + 2937, 0, 2757, + 2935, 0, 2755, + 2933, 0, 2753, + 2931, 0, 2751, + 2929, 0, 2747, + 2925, 0, 2743, + 2919, 0, 2737, + 2913, 0, 2729, + 2903, 0, 2719, + 2891, 0, 2703, + 2873, 720, 2683, + 2847, 1295, 2653, + 2811, 1601, 2609, + 2759, 1830, 2545, + 2677, 2023, 2441, + 2537, 2197, 2251, + 2239, 2357, 1705, + 0, 2509, 0, + 0, 2655, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2891, + 3071, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2889, + 3069, 0, 2887, + 3067, 0, 2887, + 3065, 0, 2885, + 3063, 0, 2883, + 3061, 0, 2879, + 3057, 0, 2875, + 3051, 0, 2869, + 3045, 0, 2861, + 3035, 0, 2849, + 3023, 0, 2835, + 3005, 842, 2813, + 2979, 1425, 2783, + 2943, 1732, 2741, + 2891, 1961, 2675, + 2809, 2155, 2571, + 2669, 2327, 2379, + 2371, 2489, 1829, + 0, 2641, 0, + 0, 2787, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3023, + 3203, 0, 3021, + 3203, 0, 3021, + 3201, 0, 3021, + 3201, 0, 3021, + 3201, 0, 3019, + 3199, 0, 3017, + 3197, 0, 3017, + 3195, 0, 3013, + 3193, 0, 3011, + 3189, 0, 3007, + 3183, 0, 3001, + 3177, 0, 2993, + 3167, 0, 2981, + 3155, 0, 2965, + 3137, 967, 2945, + 3111, 1555, 2915, + 3075, 1863, 2873, + 3023, 2093, 2807, + 2941, 2287, 2703, + 2801, 2459, 2511, + 2503, 2621, 1956, + 0, 2773, 0, + 0, 2919, 0, + 0, 3063, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3155, + 3335, 0, 3153, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3153, + 3333, 0, 3151, + 3333, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3327, 0, 3145, + 3325, 0, 3143, + 3321, 0, 3137, + 3315, 0, 3131, + 3309, 0, 3123, + 3299, 0, 3113, + 3287, 0, 3097, + 3269, 1093, 3077, + 3243, 1685, 3047, + 3207, 1994, 3003, + 3155, 2225, 2939, + 3073, 2419, 2835, + 2933, 2591, 2641, + 2635, 2753, 2083, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3285, + 3465, 0, 3283, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3273, + 3453, 0, 3269, + 3447, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3245, + 3419, 0, 3229, + 3401, 1221, 3209, + 3375, 1816, 3179, + 3339, 2125, 3135, + 3287, 2357, 3071, + 3205, 2551, 2965, + 3065, 2723, 2773, + 2765, 2885, 2213, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3405, + 3585, 0, 3401, + 3581, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3377, + 3551, 0, 3361, + 3533, 1350, 3341, + 3507, 1947, 3311, + 3471, 2257, 3267, + 3419, 2489, 3203, + 3337, 2683, 3097, + 3197, 2855, 2903, + 2897, 3017, 2341, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3713, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3509, + 3683, 0, 3493, + 3665, 1479, 3473, + 3639, 2079, 3443, + 3603, 2389, 3399, + 3551, 2621, 3333, + 3469, 2815, 3229, + 3329, 2987, 3035, + 3029, 3149, 2473, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3859, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1610, 3605, + 3771, 2211, 3575, + 3735, 2521, 3531, + 3683, 2753, 3465, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2603, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3989, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1740, 3737, + 3903, 2343, 3707, + 3867, 2653, 3663, + 3815, 2885, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2733, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4091, 0, 3905, + 4079, 0, 3889, + 4061, 1872, 3869, + 4035, 2475, 3839, + 3999, 2785, 3795, + 3947, 3017, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2865, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2003, 4001, + 4095, 2607, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3517, 3563, + 3557, 3677, 2997, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2135, 4095, + 4095, 2737, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3129, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2267, 4095, + 4095, 2869, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3261, + 325, 108, 616, + 140, 200, 549, + 0, 299, 442, + 0, 405, 242, + 0, 517, 0, + 0, 633, 0, + 0, 753, 0, + 0, 875, 0, + 0, 1000, 0, + 0, 1127, 0, + 0, 1255, 0, + 0, 1384, 0, + 0, 1513, 0, + 0, 1644, 0, + 0, 1775, 0, + 0, 1906, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 486, 92, 679, + 364, 187, 622, + 125, 289, 532, + 0, 397, 375, + 0, 510, 9, + 0, 628, 0, + 0, 749, 0, + 0, 872, 0, + 0, 998, 0, + 0, 1125, 0, + 0, 1253, 0, + 0, 1383, 0, + 0, 1513, 0, + 0, 1643, 0, + 0, 1774, 0, + 0, 1905, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 638, 70, 752, + 554, 169, 704, + 412, 274, 630, + 103, 386, 508, + 0, 502, 267, + 0, 621, 0, + 0, 744, 0, + 0, 868, 0, + 0, 995, 0, + 0, 1123, 0, + 0, 1252, 0, + 0, 1381, 0, + 0, 1512, 0, + 0, 1643, 0, + 0, 1774, 0, + 0, 1905, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 785, 38, 835, + 726, 144, 795, + 633, 255, 735, + 469, 370, 641, + 73, 490, 474, + 0, 612, 63, + 0, 737, 0, + 0, 863, 0, + 0, 991, 0, + 0, 1120, 0, + 0, 1249, 0, + 0, 1380, 0, + 0, 1510, 0, + 0, 1642, 0, + 0, 1773, 0, + 0, 1905, 0, + 0, 2036, 0, + 0, 2169, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 927, 0, 926, + 885, 108, 893, + 822, 227, 846, + 720, 349, 774, + 535, 473, 655, + 29, 599, 424, + 0, 727, 0, + 0, 856, 0, + 0, 986, 0, + 0, 1116, 0, + 0, 1246, 0, + 0, 1377, 0, + 0, 1509, 0, + 0, 1640, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2036, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1067, 0, 1024, + 1036, 55, 998, + 992, 187, 961, + 925, 318, 906, + 816, 450, 821, + 611, 582, 673, + 0, 714, 346, + 0, 846, 0, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1205, 0, 1129, + 1182, 0, 1109, + 1151, 127, 1080, + 1104, 274, 1039, + 1034, 418, 976, + 919, 558, 877, + 696, 696, 696, + 0, 833, 216, + 0, 968, 0, + 0, 1103, 0, + 0, 1237, 0, + 0, 1370, 0, + 0, 1503, 0, + 0, 1636, 0, + 0, 1769, 0, + 0, 1902, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1341, 0, 1241, + 1325, 0, 1225, + 1302, 31, 1202, + 1269, 208, 1171, + 1221, 370, 1125, + 1148, 524, 1056, + 1027, 671, 942, + 790, 814, 725, + 0, 955, 0, + 0, 1093, 0, + 0, 1229, 0, + 0, 1365, 0, + 0, 1499, 0, + 0, 1633, 0, + 0, 1767, 0, + 0, 1900, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1477, 0, 1356, + 1464, 0, 1344, + 1447, 0, 1327, + 1424, 100, 1303, + 1390, 297, 1269, + 1341, 473, 1220, + 1266, 635, 1144, + 1141, 788, 1017, + 891, 936, 762, + 0, 1079, 0, + 0, 1219, 0, + 0, 1357, 0, + 0, 1494, 0, + 0, 1629, 0, + 0, 1764, 0, + 0, 1897, 0, + 0, 2031, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1611, 0, 1476, + 1602, 0, 1466, + 1590, 0, 1453, + 1572, 0, 1436, + 1549, 178, 1411, + 1514, 395, 1375, + 1464, 582, 1322, + 1388, 751, 1240, + 1259, 909, 1101, + 998, 1059, 806, + 0, 1205, 0, + 0, 1347, 0, + 0, 1486, 0, + 0, 1623, 0, + 0, 1759, 0, + 0, 1894, 0, + 0, 2029, 0, + 0, 2163, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1745, 0, 1598, + 1738, 0, 1591, + 1729, 0, 1581, + 1716, 0, 1568, + 1699, 0, 1549, + 1675, 264, 1523, + 1640, 500, 1486, + 1590, 696, 1430, + 1511, 871, 1344, + 1380, 1032, 1194, + 1110, 1185, 859, + 0, 1332, 0, + 0, 1476, 0, + 0, 1616, 0, + 0, 1754, 0, + 0, 1890, 0, + 0, 2025, 0, + 0, 2161, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1878, 0, 1723, + 1873, 0, 1717, + 1867, 0, 1710, + 1857, 0, 1700, + 1845, 0, 1686, + 1827, 0, 1667, + 1803, 359, 1640, + 1768, 610, 1601, + 1717, 814, 1544, + 1637, 994, 1453, + 1504, 1158, 1294, + 1227, 1313, 922, + 0, 1461, 0, + 0, 1605, 0, + 0, 1746, 0, + 0, 1884, 0, + 0, 2021, 0, + 0, 2157, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2011, 0, 1849, + 2008, 0, 1845, + 2003, 0, 1840, + 1996, 0, 1832, + 1987, 0, 1822, + 1974, 0, 1808, + 1956, 59, 1788, + 1932, 462, 1761, + 1896, 725, 1721, + 1845, 936, 1661, + 1765, 1118, 1568, + 1630, 1285, 1401, + 1348, 1441, 994, + 0, 1591, 0, + 0, 1735, 0, + 0, 1877, 0, + 0, 2016, 0, + 0, 2153, 0, + 0, 2289, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2145, 0, 1977, + 2141, 0, 1974, + 2137, 0, 1970, + 2133, 0, 1964, + 2125, 0, 1957, + 2117, 0, 1946, + 2103, 0, 1932, + 2087, 132, 1912, + 2061, 570, 1884, + 2026, 844, 1843, + 1974, 1059, 1782, + 1893, 1245, 1686, + 1757, 1413, 1513, + 1471, 1571, 1076, + 0, 1721, 0, + 0, 1866, 0, + 0, 2008, 0, + 0, 2147, 0, + 0, 2285, 0, + 0, 2421, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2277, 0, 2107, + 2275, 0, 2103, + 2273, 0, 2101, + 2269, 0, 2097, + 2263, 0, 2091, + 2257, 0, 2083, + 2247, 0, 2073, + 2235, 0, 2057, + 2217, 213, 2038, + 2191, 684, 2009, + 2157, 966, 1968, + 2103, 1185, 1906, + 2023, 1373, 1807, + 1886, 1543, 1630, + 1596, 1701, 1166, + 0, 1852, 0, + 0, 1997, 0, + 0, 2139, 0, + 0, 2279, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2409, 0, 2235, + 2407, 0, 2235, + 2405, 0, 2231, + 2403, 0, 2229, + 2399, 0, 2225, + 2395, 0, 2219, + 2387, 0, 2211, + 2377, 0, 2201, + 2365, 0, 2185, + 2347, 304, 2165, + 2323, 801, 2135, + 2287, 1090, 2095, + 2235, 1313, 2032, + 2153, 1502, 1932, + 2015, 1673, 1750, + 1723, 1831, 1264, + 0, 1983, 0, + 0, 2129, 0, + 0, 2271, 0, + 0, 2411, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2541, 0, 2367, + 2541, 0, 2365, + 2539, 0, 2363, + 2537, 0, 2361, + 2535, 0, 2357, + 2531, 0, 2353, + 2525, 0, 2347, + 2519, 0, 2339, + 2509, 0, 2329, + 2497, 0, 2313, + 2479, 402, 2293, + 2453, 922, 2265, + 2417, 1217, 2223, + 2365, 1441, 2159, + 2283, 1632, 2057, + 2145, 1803, 1873, + 1851, 1962, 1369, + 0, 2115, 0, + 0, 2261, 0, + 0, 2403, 0, + 0, 2543, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2675, 0, 2497, + 2673, 0, 2497, + 2673, 0, 2495, + 2671, 0, 2493, + 2669, 0, 2491, + 2665, 0, 2487, + 2661, 0, 2483, + 2657, 0, 2477, + 2649, 0, 2469, + 2641, 0, 2459, + 2627, 0, 2443, + 2609, 507, 2423, + 2585, 1046, 2393, + 2549, 1345, 2351, + 2497, 1571, 2287, + 2415, 1762, 2185, + 2275, 1934, 1998, + 1981, 2093, 1480, + 0, 2245, 0, + 0, 2391, 0, + 0, 2535, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2807, 0, 2629, + 2805, 0, 2627, + 2805, 0, 2627, + 2803, 0, 2625, + 2803, 0, 2623, + 2801, 0, 2621, + 2797, 0, 2617, + 2793, 0, 2613, + 2789, 0, 2607, + 2781, 0, 2599, + 2773, 0, 2589, + 2759, 0, 2573, + 2741, 617, 2553, + 2717, 1172, 2523, + 2681, 1473, 2481, + 2627, 1701, 2417, + 2545, 1893, 2313, + 2407, 2065, 2125, + 2111, 2225, 1595, + 0, 2377, 0, + 0, 2523, 0, + 0, 2667, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2759, + 2939, 0, 2759, + 2937, 0, 2759, + 2937, 0, 2757, + 2935, 0, 2755, + 2935, 0, 2755, + 2931, 0, 2751, + 2929, 0, 2749, + 2925, 0, 2745, + 2921, 0, 2739, + 2913, 0, 2731, + 2903, 0, 2719, + 2891, 0, 2705, + 2873, 733, 2683, + 2849, 1299, 2653, + 2813, 1603, 2611, + 2759, 1831, 2547, + 2677, 2024, 2443, + 2539, 2197, 2253, + 2241, 2357, 1714, + 0, 2509, 0, + 0, 2655, 0, + 0, 2799, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2891, + 3071, 0, 2891, + 3071, 0, 2891, + 3069, 0, 2889, + 3069, 0, 2889, + 3067, 0, 2887, + 3065, 0, 2885, + 3063, 0, 2883, + 3061, 0, 2879, + 3057, 0, 2875, + 3053, 0, 2869, + 3045, 0, 2861, + 3035, 0, 2851, + 3023, 0, 2835, + 3005, 852, 2815, + 2979, 1427, 2785, + 2943, 1733, 2741, + 2891, 1962, 2677, + 2809, 2155, 2573, + 2669, 2329, 2383, + 2371, 2489, 1837, + 0, 2641, 0, + 0, 2787, 0, + 0, 2931, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3023, + 3203, 0, 3023, + 3203, 0, 3023, + 3203, 0, 3021, + 3201, 0, 3021, + 3201, 0, 3019, + 3199, 0, 3019, + 3197, 0, 3017, + 3195, 0, 3015, + 3193, 0, 3011, + 3189, 0, 3007, + 3185, 0, 3001, + 3177, 0, 2993, + 3167, 0, 2981, + 3155, 0, 2967, + 3137, 974, 2945, + 3111, 1557, 2915, + 3075, 1864, 2873, + 3023, 2093, 2809, + 2941, 2287, 2703, + 2801, 2461, 2513, + 2503, 2621, 1961, + 0, 2773, 0, + 0, 2919, 0, + 0, 3063, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3153, + 3335, 0, 3153, + 3333, 0, 3153, + 3333, 0, 3151, + 3331, 0, 3151, + 3329, 0, 3149, + 3327, 0, 3145, + 3325, 0, 3143, + 3321, 0, 3139, + 3317, 0, 3133, + 3309, 0, 3125, + 3299, 0, 3113, + 3287, 0, 3099, + 3269, 1099, 3077, + 3243, 1687, 3047, + 3207, 1995, 3005, + 3155, 2225, 2939, + 3073, 2419, 2835, + 2933, 2591, 2643, + 2635, 2753, 2087, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3285, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3285, + 3465, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3459, 0, 3277, + 3457, 0, 3275, + 3453, 0, 3269, + 3449, 0, 3263, + 3441, 0, 3255, + 3431, 0, 3245, + 3419, 0, 3229, + 3401, 1225, 3209, + 3375, 1817, 3179, + 3339, 2127, 3135, + 3287, 2357, 3071, + 3205, 2551, 2967, + 3065, 2723, 2773, + 2767, 2885, 2215, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3415, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3591, 0, 3409, + 3589, 0, 3407, + 3585, 0, 3401, + 3581, 0, 3395, + 3573, 0, 3387, + 3563, 0, 3377, + 3551, 0, 3361, + 3533, 1353, 3341, + 3507, 1948, 3311, + 3471, 2257, 3267, + 3419, 2489, 3203, + 3337, 2683, 3097, + 3197, 2855, 2905, + 2897, 3017, 2345, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3547, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3537, + 3717, 0, 3533, + 3713, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3509, + 3683, 0, 3493, + 3665, 1482, 3473, + 3639, 2079, 3443, + 3603, 2389, 3399, + 3551, 2621, 3335, + 3469, 2815, 3229, + 3329, 2987, 3035, + 3029, 3149, 2473, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3859, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3669, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1612, 3605, + 3771, 2211, 3575, + 3735, 2521, 3531, + 3683, 2753, 3467, + 3601, 2947, 3361, + 3461, 3119, 3167, + 3161, 3281, 2605, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3989, 0, 3805, + 3985, 0, 3801, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1742, 3737, + 3903, 2343, 3707, + 3867, 2653, 3663, + 3815, 2885, 3597, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2735, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4093, 0, 3905, + 4079, 0, 3889, + 4061, 1873, 3869, + 4035, 2475, 3839, + 4001, 2785, 3795, + 3947, 3017, 3729, + 3865, 3211, 3625, + 3725, 3383, 3431, + 3425, 3545, 2867, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4067, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2004, 4001, + 4095, 2607, 3971, + 4095, 2917, 3927, + 4079, 3149, 3861, + 3997, 3343, 3757, + 3857, 3517, 3563, + 3557, 3677, 2997, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2135, 4095, + 4095, 2739, 4095, + 4095, 3049, 4059, + 4095, 3281, 3993, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3129, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2267, 4095, + 4095, 2871, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3261, + 425, 171, 743, + 284, 251, 694, + 0, 341, 618, + 0, 439, 493, + 0, 543, 240, + 0, 653, 0, + 0, 769, 0, + 0, 887, 0, + 0, 1009, 0, + 0, 1134, 0, + 0, 1260, 0, + 0, 1388, 0, + 0, 1516, 0, + 0, 1646, 0, + 0, 1776, 0, + 0, 1907, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 558, 157, 792, + 457, 240, 748, + 272, 332, 682, + 0, 431, 574, + 0, 537, 374, + 0, 649, 0, + 0, 765, 0, + 0, 885, 0, + 0, 1007, 0, + 0, 1132, 0, + 0, 1259, 0, + 0, 1387, 0, + 0, 1516, 0, + 0, 1646, 0, + 0, 1776, 0, + 0, 1907, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 691, 138, 850, + 618, 224, 811, + 496, 319, 754, + 257, 421, 664, + 0, 529, 507, + 0, 642, 141, + 0, 760, 0, + 0, 881, 0, + 0, 1004, 0, + 0, 1130, 0, + 0, 1257, 0, + 0, 1385, 0, + 0, 1515, 0, + 0, 1645, 0, + 0, 1775, 0, + 0, 1906, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 824, 111, 918, + 770, 202, 885, + 687, 301, 836, + 544, 407, 762, + 235, 518, 640, + 0, 634, 399, + 0, 753, 0, + 0, 876, 0, + 0, 1001, 0, + 0, 1127, 0, + 0, 1255, 0, + 0, 1384, 0, + 0, 1514, 0, + 0, 1644, 0, + 0, 1775, 0, + 0, 1906, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 956, 72, 995, + 917, 170, 967, + 858, 276, 927, + 765, 387, 867, + 601, 502, 773, + 205, 622, 606, + 0, 744, 196, + 0, 869, 0, + 0, 995, 0, + 0, 1123, 0, + 0, 1252, 0, + 0, 1382, 0, + 0, 1512, 0, + 0, 1643, 0, + 0, 1774, 0, + 0, 1905, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1088, 14, 1080, + 1059, 125, 1058, + 1017, 240, 1025, + 954, 359, 978, + 852, 481, 906, + 667, 605, 787, + 161, 732, 556, + 0, 859, 0, + 0, 988, 0, + 0, 1117, 0, + 0, 1248, 0, + 0, 1378, 0, + 0, 1510, 0, + 0, 1641, 0, + 0, 1772, 0, + 0, 1904, 0, + 0, 2036, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1221, 0, 1175, + 1199, 55, 1156, + 1169, 187, 1130, + 1124, 319, 1093, + 1057, 450, 1038, + 948, 582, 953, + 743, 714, 805, + 94, 846, 478, + 0, 978, 0, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1506, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1353, 0, 1276, + 1337, 0, 1262, + 1315, 105, 1241, + 1283, 259, 1212, + 1236, 406, 1171, + 1166, 550, 1108, + 1050, 690, 1009, + 828, 828, 828, + 0, 965, 349, + 0, 1100, 0, + 0, 1235, 0, + 0, 1369, 0, + 0, 1502, 0, + 0, 1636, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2034, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1485, 0, 1384, + 1473, 0, 1373, + 1457, 0, 1357, + 1434, 164, 1335, + 1401, 340, 1303, + 1353, 502, 1257, + 1280, 656, 1188, + 1159, 803, 1074, + 922, 947, 858, + 0, 1087, 83, + 0, 1225, 0, + 0, 1361, 0, + 0, 1497, 0, + 0, 1631, 0, + 0, 1765, 0, + 0, 1899, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1618, 0, 1497, + 1609, 0, 1488, + 1596, 0, 1476, + 1580, 0, 1459, + 1556, 232, 1435, + 1523, 430, 1402, + 1473, 605, 1352, + 1398, 767, 1276, + 1273, 921, 1149, + 1023, 1068, 894, + 0, 1211, 0, + 0, 1351, 0, + 0, 1489, 0, + 0, 1626, 0, + 0, 1761, 0, + 0, 1896, 0, + 0, 2030, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1750, 0, 1615, + 1743, 0, 1608, + 1734, 0, 1598, + 1722, 0, 1586, + 1705, 31, 1568, + 1681, 310, 1543, + 1647, 527, 1507, + 1597, 714, 1454, + 1520, 883, 1372, + 1391, 1041, 1234, + 1130, 1192, 938, + 0, 1337, 0, + 0, 1479, 0, + 0, 1618, 0, + 0, 1755, 0, + 0, 1891, 0, + 0, 2026, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1882, 0, 1736, + 1877, 0, 1730, + 1870, 0, 1723, + 1861, 0, 1713, + 1849, 0, 1700, + 1831, 75, 1681, + 1807, 397, 1655, + 1773, 632, 1618, + 1722, 828, 1562, + 1644, 1003, 1476, + 1512, 1164, 1326, + 1242, 1317, 992, + 0, 1465, 0, + 0, 1608, 0, + 0, 1748, 0, + 0, 1886, 0, + 0, 2022, 0, + 0, 2157, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2014, 0, 1859, + 2010, 0, 1855, + 2005, 0, 1850, + 1999, 0, 1842, + 1989, 0, 1832, + 1977, 0, 1818, + 1959, 128, 1799, + 1935, 492, 1772, + 1900, 742, 1733, + 1849, 946, 1676, + 1770, 1125, 1585, + 1636, 1290, 1426, + 1359, 1445, 1054, + 0, 1593, 0, + 0, 1737, 0, + 0, 1878, 0, + 0, 2017, 0, + 0, 2153, 0, + 0, 2289, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2147, 0, 1985, + 2143, 0, 1982, + 2139, 0, 1977, + 2135, 0, 1972, + 2127, 0, 1964, + 2119, 0, 1954, + 2105, 0, 1940, + 2089, 191, 1920, + 2063, 594, 1893, + 2029, 857, 1853, + 1977, 1067, 1793, + 1897, 1250, 1700, + 1762, 1417, 1533, + 1480, 1573, 1126, + 0, 1723, 0, + 0, 1868, 0, + 0, 2009, 0, + 0, 2147, 0, + 0, 2285, 0, + 0, 2421, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2279, 0, 2111, + 2277, 0, 2109, + 2273, 0, 2107, + 2269, 0, 2103, + 2265, 0, 2097, + 2257, 0, 2089, + 2249, 0, 2079, + 2235, 0, 2063, + 2219, 264, 2044, + 2193, 702, 2016, + 2159, 976, 1975, + 2107, 1191, 1914, + 2026, 1377, 1818, + 1889, 1545, 1645, + 1603, 1703, 1208, + 0, 1853, 0, + 0, 1998, 0, + 0, 2139, 0, + 0, 2279, 0, + 0, 2417, 0, + 0, 2553, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2411, 0, 2241, + 2409, 0, 2239, + 2407, 0, 2237, + 2405, 0, 2233, + 2401, 0, 2229, + 2395, 0, 2223, + 2389, 0, 2215, + 2379, 0, 2205, + 2367, 0, 2189, + 2349, 345, 2169, + 2323, 816, 2141, + 2289, 1098, 2099, + 2235, 1317, 2038, + 2155, 1505, 1940, + 2018, 1675, 1762, + 1728, 1833, 1298, + 0, 1984, 0, + 0, 2129, 0, + 0, 2271, 0, + 0, 2411, 0, + 0, 2549, 0, + 0, 2685, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2543, 0, 2369, + 2541, 0, 2369, + 2541, 0, 2367, + 2537, 0, 2363, + 2535, 0, 2361, + 2531, 0, 2357, + 2527, 0, 2351, + 2519, 0, 2343, + 2511, 0, 2333, + 2497, 0, 2317, + 2479, 436, 2297, + 2455, 933, 2269, + 2419, 1223, 2227, + 2367, 1445, 2163, + 2285, 1634, 2063, + 2147, 1805, 1882, + 1855, 1964, 1396, + 0, 2115, 0, + 0, 2261, 0, + 0, 2403, 0, + 0, 2543, 0, + 0, 2679, 0, + 0, 2817, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2675, 0, 2499, + 2675, 0, 2499, + 2673, 0, 2497, + 2671, 0, 2495, + 2669, 0, 2493, + 2667, 0, 2489, + 2663, 0, 2485, + 2657, 0, 2479, + 2651, 0, 2471, + 2641, 0, 2461, + 2629, 0, 2447, + 2611, 534, 2425, + 2585, 1054, 2397, + 2549, 1349, 2355, + 2497, 1573, 2291, + 2415, 1764, 2189, + 2277, 1935, 2005, + 1984, 2095, 1501, + 0, 2247, 0, + 0, 2393, 0, + 0, 2535, 0, + 0, 2675, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2807, 0, 2629, + 2807, 0, 2629, + 2805, 0, 2629, + 2805, 0, 2627, + 2803, 0, 2625, + 2801, 0, 2623, + 2797, 0, 2619, + 2795, 0, 2615, + 2789, 0, 2609, + 2783, 0, 2601, + 2773, 0, 2591, + 2759, 0, 2575, + 2741, 639, 2555, + 2717, 1178, 2525, + 2681, 1477, 2483, + 2629, 1703, 2419, + 2547, 1894, 2317, + 2407, 2067, 2131, + 2113, 2225, 1612, + 0, 2377, 0, + 0, 2523, 0, + 0, 2667, 0, + 0, 2807, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2761, + 2939, 0, 2761, + 2939, 0, 2759, + 2937, 0, 2759, + 2935, 0, 2757, + 2935, 0, 2755, + 2933, 0, 2753, + 2929, 0, 2749, + 2925, 0, 2745, + 2921, 0, 2739, + 2913, 0, 2731, + 2905, 0, 2721, + 2891, 0, 2705, + 2873, 750, 2685, + 2849, 1304, 2655, + 2813, 1605, 2613, + 2759, 1833, 2549, + 2679, 2025, 2445, + 2539, 2197, 2257, + 2243, 2357, 1727, + 0, 2509, 0, + 0, 2655, 0, + 0, 2799, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2893, + 3071, 0, 2891, + 3071, 0, 2891, + 3069, 0, 2891, + 3069, 0, 2889, + 3067, 0, 2889, + 3067, 0, 2887, + 3065, 0, 2883, + 3061, 0, 2881, + 3057, 0, 2877, + 3053, 0, 2871, + 3045, 0, 2863, + 3037, 0, 2851, + 3023, 0, 2837, + 3005, 865, 2815, + 2981, 1431, 2785, + 2945, 1735, 2743, + 2891, 1963, 2679, + 2809, 2157, 2575, + 2671, 2329, 2385, + 2373, 2489, 1847, + 0, 2641, 0, + 0, 2787, 0, + 0, 2931, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3023, + 3203, 0, 3023, + 3203, 0, 3023, + 3203, 0, 3023, + 3201, 0, 3021, + 3201, 0, 3021, + 3199, 0, 3019, + 3199, 0, 3017, + 3195, 0, 3015, + 3193, 0, 3011, + 3189, 0, 3007, + 3185, 0, 3001, + 3177, 0, 2993, + 3167, 0, 2983, + 3155, 0, 2967, + 3137, 984, 2947, + 3111, 1559, 2917, + 3077, 1865, 2873, + 3023, 2095, 2809, + 2941, 2287, 2705, + 2801, 2461, 2515, + 2505, 2621, 1969, + 0, 2773, 0, + 0, 2919, 0, + 0, 3063, 0, + 0, 3203, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3153, + 3333, 0, 3153, + 3333, 0, 3151, + 3331, 0, 3151, + 3329, 0, 3149, + 3327, 0, 3147, + 3325, 0, 3143, + 3321, 0, 3139, + 3317, 0, 3133, + 3309, 0, 3125, + 3299, 0, 3113, + 3287, 0, 3099, + 3269, 1106, 3077, + 3243, 1689, 3049, + 3207, 1996, 3005, + 3155, 2225, 2941, + 3073, 2419, 2837, + 2933, 2593, 2645, + 2635, 2753, 2093, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3285, + 3467, 0, 3285, + 3465, 0, 3285, + 3465, 0, 3283, + 3463, 0, 3283, + 3461, 0, 3281, + 3459, 0, 3277, + 3457, 0, 3275, + 3453, 0, 3271, + 3449, 0, 3265, + 3441, 0, 3257, + 3431, 0, 3245, + 3419, 0, 3231, + 3401, 1231, 3209, + 3375, 1819, 3179, + 3339, 2127, 3137, + 3287, 2357, 3071, + 3205, 2551, 2967, + 3065, 2725, 2775, + 2767, 2885, 2219, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3603, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3417, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3417, + 3597, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3413, + 3591, 0, 3409, + 3589, 0, 3407, + 3585, 0, 3403, + 3581, 0, 3397, + 3573, 0, 3389, + 3563, 0, 3377, + 3551, 0, 3361, + 3533, 1357, 3341, + 3507, 1949, 3311, + 3471, 2259, 3267, + 3419, 2489, 3203, + 3337, 2683, 3099, + 3197, 2855, 2905, + 2899, 3017, 2347, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3549, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3549, + 3729, 0, 3547, + 3727, 0, 3545, + 3727, 0, 3543, + 3723, 0, 3541, + 3721, 0, 3539, + 3717, 0, 3533, + 3713, 0, 3527, + 3705, 0, 3519, + 3695, 0, 3509, + 3683, 0, 3493, + 3665, 1485, 3473, + 3639, 2081, 3443, + 3603, 2391, 3399, + 3551, 2621, 3335, + 3469, 2815, 3229, + 3329, 2987, 3037, + 3031, 3149, 2477, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3679, + 3861, 0, 3679, + 3859, 0, 3677, + 3859, 0, 3675, + 3855, 0, 3673, + 3853, 0, 3671, + 3849, 0, 3665, + 3845, 0, 3659, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1614, 3605, + 3771, 2211, 3575, + 3735, 2521, 3531, + 3683, 2753, 3467, + 3601, 2947, 3361, + 3461, 3119, 3169, + 3161, 3281, 2607, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3811, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3989, 0, 3805, + 3985, 0, 3803, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1744, 3737, + 3903, 2343, 3707, + 3867, 2653, 3663, + 3815, 2885, 3599, + 3733, 3079, 3493, + 3593, 3251, 3299, + 3293, 3413, 2737, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3935, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4093, 0, 3905, + 4079, 0, 3889, + 4061, 1874, 3869, + 4037, 2475, 3839, + 4001, 2785, 3795, + 3947, 3017, 3731, + 3865, 3211, 3625, + 3725, 3385, 3431, + 3425, 3545, 2867, + 0, 3697, 0, + 0, 3843, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4067, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2005, 4001, + 4095, 2607, 3971, + 4095, 2917, 3927, + 4079, 3149, 3863, + 3997, 3343, 3757, + 3857, 3517, 3563, + 3557, 3677, 2999, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2135, 4095, + 4095, 2739, 4095, + 4095, 3049, 4059, + 4095, 3281, 3995, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3129, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2267, 4095, + 4095, 2871, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3261, + 532, 243, 872, + 424, 313, 835, + 222, 392, 781, + 0, 480, 697, + 0, 576, 552, + 0, 680, 237, + 0, 789, 0, + 0, 903, 0, + 0, 1022, 0, + 0, 1143, 0, + 0, 1267, 0, + 0, 1393, 0, + 0, 1520, 0, + 0, 1649, 0, + 0, 1779, 0, + 0, 1909, 0, + 0, 2039, 0, + 0, 2171, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 640, 231, 909, + 557, 303, 875, + 416, 384, 826, + 111, 473, 750, + 0, 571, 625, + 0, 675, 372, + 0, 786, 0, + 0, 901, 0, + 0, 1020, 0, + 0, 1141, 0, + 0, 1266, 0, + 0, 1392, 0, + 0, 1520, 0, + 0, 1649, 0, + 0, 1778, 0, + 0, 1908, 0, + 0, 2039, 0, + 0, 2171, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 754, 215, 955, + 690, 289, 924, + 589, 372, 880, + 404, 464, 814, + 0, 563, 706, + 0, 669, 506, + 0, 781, 0, + 0, 897, 0, + 0, 1017, 0, + 0, 1139, 0, + 0, 1264, 0, + 0, 1391, 0, + 0, 1519, 0, + 0, 1648, 0, + 0, 1778, 0, + 0, 1908, 0, + 0, 2039, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 871, 192, 1009, + 823, 270, 982, + 750, 356, 944, + 628, 451, 886, + 389, 553, 796, + 0, 661, 639, + 0, 774, 273, + 0, 892, 0, + 0, 1013, 0, + 0, 1136, 0, + 0, 1262, 0, + 0, 1389, 0, + 0, 1518, 0, + 0, 1647, 0, + 0, 1777, 0, + 0, 1908, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 992, 160, 1073, + 956, 243, 1049, + 902, 334, 1017, + 819, 433, 968, + 676, 539, 895, + 367, 650, 772, + 0, 766, 531, + 0, 885, 0, + 0, 1008, 0, + 0, 1132, 0, + 0, 1259, 0, + 0, 1387, 0, + 0, 1516, 0, + 0, 1646, 0, + 0, 1776, 0, + 0, 1907, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1116, 113, 1146, + 1088, 204, 1126, + 1049, 302, 1099, + 990, 408, 1059, + 897, 519, 1000, + 733, 634, 905, + 337, 754, 738, + 0, 876, 328, + 0, 1001, 0, + 0, 1127, 0, + 0, 1255, 0, + 0, 1384, 0, + 0, 1514, 0, + 0, 1644, 0, + 0, 1775, 0, + 0, 1906, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1241, 42, 1229, + 1221, 146, 1212, + 1191, 257, 1190, + 1149, 372, 1157, + 1086, 491, 1110, + 985, 613, 1038, + 799, 737, 919, + 293, 864, 688, + 0, 991, 0, + 0, 1120, 0, + 0, 1250, 0, + 0, 1380, 0, + 0, 1511, 0, + 0, 1642, 0, + 0, 1773, 0, + 0, 1905, 0, + 0, 2036, 0, + 0, 2169, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1368, 0, 1320, + 1353, 56, 1307, + 1331, 187, 1288, + 1301, 319, 1262, + 1256, 451, 1225, + 1189, 582, 1170, + 1080, 714, 1085, + 875, 846, 937, + 226, 978, 610, + 0, 1110, 0, + 0, 1242, 0, + 0, 1374, 0, + 0, 1507, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1497, 0, 1419, + 1485, 0, 1408, + 1469, 74, 1394, + 1447, 237, 1373, + 1415, 391, 1345, + 1369, 538, 1303, + 1298, 682, 1240, + 1183, 822, 1141, + 960, 960, 960, + 118, 1097, 481, + 0, 1232, 0, + 0, 1367, 0, + 0, 1501, 0, + 0, 1634, 0, + 0, 1768, 0, + 0, 1901, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1626, 0, 1525, + 1617, 0, 1516, + 1606, 0, 1505, + 1589, 97, 1489, + 1566, 296, 1467, + 1533, 472, 1435, + 1485, 634, 1389, + 1412, 788, 1320, + 1291, 935, 1206, + 1054, 1078, 990, + 0, 1219, 216, + 0, 1357, 0, + 0, 1493, 0, + 0, 1629, 0, + 0, 1763, 0, + 0, 1897, 0, + 0, 2031, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1756, 0, 1636, + 1750, 0, 1630, + 1741, 0, 1621, + 1729, 0, 1608, + 1712, 126, 1591, + 1688, 364, 1568, + 1655, 562, 1534, + 1606, 737, 1484, + 1530, 899, 1408, + 1405, 1052, 1281, + 1155, 1200, 1026, + 0, 1343, 0, + 0, 1483, 0, + 0, 1621, 0, + 0, 1758, 0, + 0, 1893, 0, + 0, 2028, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1887, 0, 1752, + 1882, 0, 1747, + 1875, 0, 1740, + 1866, 0, 1731, + 1854, 0, 1718, + 1837, 163, 1700, + 1813, 442, 1675, + 1779, 659, 1639, + 1729, 846, 1586, + 1652, 1015, 1505, + 1523, 1173, 1366, + 1262, 1324, 1070, + 0, 1469, 0, + 0, 1611, 0, + 0, 1750, 0, + 0, 1888, 0, + 0, 2024, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2018, 0, 1872, + 2014, 0, 1868, + 2009, 0, 1862, + 2002, 0, 1855, + 1993, 0, 1845, + 1981, 0, 1832, + 1963, 207, 1813, + 1939, 529, 1787, + 1905, 764, 1750, + 1854, 960, 1695, + 1776, 1135, 1608, + 1644, 1297, 1458, + 1374, 1450, 1123, + 0, 1597, 0, + 0, 1740, 0, + 0, 1880, 0, + 0, 2018, 0, + 0, 2155, 0, + 0, 2289, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2149, 0, 1994, + 2147, 0, 1991, + 2143, 0, 1987, + 2137, 0, 1982, + 2131, 0, 1974, + 2121, 0, 1964, + 2109, 0, 1950, + 2091, 260, 1931, + 2067, 624, 1904, + 2032, 874, 1866, + 1981, 1078, 1808, + 1902, 1258, 1717, + 1768, 1422, 1559, + 1491, 1577, 1186, + 0, 1725, 0, + 0, 1869, 0, + 0, 2010, 0, + 0, 2149, 0, + 0, 2285, 0, + 0, 2421, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2281, 0, 2119, + 2279, 0, 2117, + 2275, 0, 2113, + 2271, 0, 2109, + 2267, 0, 2105, + 2261, 0, 2097, + 2251, 0, 2087, + 2239, 0, 2073, + 2221, 323, 2053, + 2195, 726, 2025, + 2161, 989, 1985, + 2109, 1200, 1926, + 2029, 1382, 1832, + 1894, 1549, 1665, + 1612, 1706, 1258, + 0, 1855, 0, + 0, 2000, 0, + 0, 2141, 0, + 0, 2279, 0, + 0, 2417, 0, + 0, 2553, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2413, 0, 2245, + 2411, 0, 2243, + 2409, 0, 2241, + 2405, 0, 2239, + 2401, 0, 2235, + 2397, 0, 2229, + 2391, 0, 2221, + 2381, 0, 2211, + 2367, 0, 2197, + 2351, 396, 2177, + 2325, 834, 2147, + 2291, 1108, 2107, + 2239, 1323, 2047, + 2157, 1509, 1950, + 2021, 1678, 1777, + 1735, 1835, 1340, + 0, 1985, 0, + 0, 2131, 0, + 0, 2273, 0, + 0, 2411, 0, + 0, 2549, 0, + 0, 2685, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2543, 0, 2373, + 2543, 0, 2373, + 2541, 0, 2371, + 2539, 0, 2369, + 2537, 0, 2365, + 2533, 0, 2361, + 2527, 0, 2355, + 2521, 0, 2347, + 2511, 0, 2337, + 2499, 0, 2323, + 2481, 477, 2301, + 2455, 948, 2273, + 2421, 1230, 2231, + 2369, 1449, 2171, + 2287, 1637, 2071, + 2149, 1807, 1894, + 1860, 1965, 1430, + 0, 2115, 0, + 0, 2261, 0, + 0, 2403, 0, + 0, 2543, 0, + 0, 2681, 0, + 0, 2817, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2675, 0, 2503, + 2675, 0, 2501, + 2673, 0, 2501, + 2673, 0, 2499, + 2671, 0, 2497, + 2667, 0, 2493, + 2663, 0, 2489, + 2659, 0, 2483, + 2651, 0, 2475, + 2643, 0, 2465, + 2629, 0, 2449, + 2611, 568, 2429, + 2587, 1065, 2401, + 2551, 1355, 2359, + 2499, 1577, 2295, + 2417, 1766, 2195, + 2279, 1937, 2014, + 1987, 2095, 1528, + 0, 2247, 0, + 0, 2393, 0, + 0, 2535, 0, + 0, 2675, 0, + 0, 2813, 0, + 0, 2949, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2807, 0, 2633, + 2807, 0, 2631, + 2807, 0, 2631, + 2805, 0, 2629, + 2803, 0, 2627, + 2801, 0, 2625, + 2799, 0, 2621, + 2795, 0, 2617, + 2789, 0, 2611, + 2783, 0, 2603, + 2773, 0, 2593, + 2761, 0, 2579, + 2743, 666, 2557, + 2717, 1186, 2529, + 2681, 1481, 2487, + 2629, 1705, 2423, + 2547, 1896, 2321, + 2409, 2067, 2137, + 2115, 2227, 1633, + 0, 2379, 0, + 0, 2525, 0, + 0, 2667, 0, + 0, 2807, 0, + 0, 2943, 0, + 0, 3081, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2939, 0, 2763, + 2939, 0, 2763, + 2939, 0, 2761, + 2937, 0, 2761, + 2937, 0, 2759, + 2935, 0, 2757, + 2933, 0, 2755, + 2931, 0, 2751, + 2927, 0, 2747, + 2921, 0, 2741, + 2915, 0, 2733, + 2905, 0, 2723, + 2891, 0, 2707, + 2875, 771, 2687, + 2849, 1310, 2657, + 2813, 1609, 2615, + 2761, 1835, 2551, + 2679, 2026, 2449, + 2541, 2199, 2263, + 2245, 2359, 1744, + 0, 2509, 0, + 0, 2657, 0, + 0, 2799, 0, + 0, 2939, 0, + 0, 3075, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3071, 0, 2893, + 3071, 0, 2893, + 3071, 0, 2893, + 3071, 0, 2891, + 3069, 0, 2891, + 3069, 0, 2889, + 3067, 0, 2887, + 3065, 0, 2885, + 3061, 0, 2881, + 3057, 0, 2877, + 3053, 0, 2871, + 3045, 0, 2863, + 3037, 0, 2853, + 3023, 0, 2837, + 3005, 882, 2817, + 2981, 1436, 2787, + 2945, 1738, 2745, + 2891, 1965, 2681, + 2811, 2157, 2577, + 2671, 2329, 2389, + 2375, 2489, 1860, + 0, 2641, 0, + 0, 2787, 0, + 0, 2931, 0, + 0, 3071, 0, + 0, 3207, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3203, 0, 3025, + 3203, 0, 3025, + 3203, 0, 3023, + 3203, 0, 3023, + 3201, 0, 3023, + 3201, 0, 3021, + 3199, 0, 3021, + 3199, 0, 3019, + 3197, 0, 3015, + 3193, 0, 3013, + 3189, 0, 3009, + 3185, 0, 3003, + 3177, 0, 2995, + 3169, 0, 2983, + 3155, 0, 2969, + 3137, 997, 2947, + 3113, 1563, 2919, + 3077, 1867, 2875, + 3023, 2095, 2811, + 2941, 2289, 2707, + 2803, 2461, 2517, + 2505, 2621, 1979, + 0, 2773, 0, + 0, 2919, 0, + 0, 3063, 0, + 0, 3203, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3333, 0, 3153, + 3333, 0, 3153, + 3331, 0, 3151, + 3331, 0, 3149, + 3329, 0, 3147, + 3325, 0, 3143, + 3321, 0, 3139, + 3317, 0, 3133, + 3309, 0, 3125, + 3301, 0, 3115, + 3287, 0, 3099, + 3269, 1116, 3079, + 3245, 1692, 3049, + 3209, 1997, 3007, + 3155, 2227, 2941, + 3073, 2419, 2837, + 2933, 2593, 2647, + 2637, 2753, 2101, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3471, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3285, + 3465, 0, 3285, + 3465, 0, 3285, + 3463, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3457, 0, 3275, + 3453, 0, 3271, + 3449, 0, 3265, + 3441, 0, 3257, + 3431, 0, 3245, + 3419, 0, 3231, + 3401, 1238, 3209, + 3375, 1821, 3181, + 3341, 2129, 3137, + 3287, 2357, 3073, + 3205, 2551, 2969, + 3065, 2725, 2777, + 2767, 2885, 2225, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3417, + 3599, 0, 3417, + 3597, 0, 3417, + 3597, 0, 3415, + 3595, 0, 3415, + 3595, 0, 3413, + 3591, 0, 3411, + 3589, 0, 3407, + 3585, 0, 3403, + 3581, 0, 3397, + 3573, 0, 3389, + 3563, 0, 3377, + 3551, 0, 3363, + 3533, 1363, 3341, + 3507, 1951, 3311, + 3471, 2259, 3269, + 3419, 2489, 3203, + 3337, 2683, 3099, + 3197, 2857, 2907, + 2899, 3017, 2351, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3733, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3549, + 3731, 0, 3549, + 3729, 0, 3549, + 3729, 0, 3547, + 3727, 0, 3545, + 3727, 0, 3545, + 3725, 0, 3541, + 3721, 0, 3539, + 3717, 0, 3535, + 3713, 0, 3529, + 3705, 0, 3521, + 3695, 0, 3509, + 3683, 0, 3495, + 3665, 1489, 3473, + 3639, 2081, 3443, + 3603, 2391, 3401, + 3551, 2621, 3335, + 3469, 2815, 3231, + 3329, 2989, 3037, + 3031, 3149, 2479, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3683, + 3865, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3681, + 3861, 0, 3679, + 3859, 0, 3677, + 3859, 0, 3677, + 3857, 0, 3673, + 3853, 0, 3671, + 3849, 0, 3665, + 3845, 0, 3661, + 3837, 0, 3651, + 3827, 0, 3641, + 3815, 0, 3625, + 3797, 1617, 3605, + 3771, 2213, 3575, + 3735, 2523, 3531, + 3683, 2753, 3467, + 3601, 2947, 3363, + 3461, 3121, 3169, + 3163, 3281, 2609, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3813, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3807, + 3989, 0, 3805, + 3985, 0, 3803, + 3981, 0, 3797, + 3977, 0, 3791, + 3969, 0, 3783, + 3959, 0, 3773, + 3947, 0, 3757, + 3929, 1746, 3737, + 3903, 2343, 3707, + 3869, 2653, 3663, + 3815, 2885, 3599, + 3733, 3079, 3493, + 3593, 3253, 3301, + 3295, 3413, 2739, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3935, + 4095, 0, 3929, + 4095, 0, 3923, + 4095, 0, 3915, + 4093, 0, 3905, + 4079, 0, 3889, + 4061, 1876, 3869, + 4037, 2475, 3839, + 4001, 2785, 3795, + 3947, 3017, 3731, + 3865, 3211, 3625, + 3725, 3385, 3431, + 3425, 3545, 2869, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4067, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2006, 4001, + 4095, 2607, 3971, + 4095, 2917, 3927, + 4079, 3149, 3863, + 3997, 3343, 3757, + 3857, 3517, 3563, + 3557, 3677, 2999, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2137, 4095, + 4095, 2739, 4095, + 4095, 3049, 4059, + 4095, 3281, 3995, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3689, 3809, 3131, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2267, 4095, + 4095, 2871, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3821, 3941, 3261, + 644, 324, 1001, + 562, 383, 974, + 422, 452, 935, + 123, 530, 876, + 0, 617, 784, + 0, 713, 622, + 0, 815, 233, + 0, 924, 0, + 0, 1037, 0, + 0, 1155, 0, + 0, 1276, 0, + 0, 1400, 0, + 0, 1526, 0, + 0, 1653, 0, + 0, 1782, 0, + 0, 1911, 0, + 0, 2041, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 731, 315, 1029, + 664, 375, 1004, + 556, 445, 967, + 354, 524, 913, + 0, 612, 829, + 0, 708, 684, + 0, 812, 369, + 0, 921, 0, + 0, 1035, 0, + 0, 1154, 0, + 0, 1275, 0, + 0, 1399, 0, + 0, 1525, 0, + 0, 1653, 0, + 0, 1781, 0, + 0, 1911, 0, + 0, 2041, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 826, 301, 1065, + 772, 363, 1041, + 689, 435, 1008, + 548, 516, 958, + 243, 605, 883, + 0, 703, 757, + 0, 807, 504, + 0, 918, 0, + 0, 1033, 0, + 0, 1151, 0, + 0, 1273, 0, + 0, 1398, 0, + 0, 1524, 0, + 0, 1652, 0, + 0, 1781, 0, + 0, 1910, 0, + 0, 2041, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 928, 282, 1108, + 886, 347, 1086, + 822, 421, 1056, + 721, 504, 1012, + 536, 596, 946, + 32, 695, 838, + 0, 801, 638, + 0, 913, 23, + 0, 1029, 0, + 0, 1149, 0, + 0, 1271, 0, + 0, 1396, 0, + 0, 1523, 0, + 0, 1651, 0, + 0, 1780, 0, + 0, 1910, 0, + 0, 2040, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1036, 256, 1160, + 1003, 324, 1141, + 955, 402, 1114, + 882, 488, 1075, + 760, 583, 1018, + 521, 685, 929, + 0, 793, 771, + 0, 907, 406, + 0, 1024, 0, + 0, 1145, 0, + 0, 1268, 0, + 0, 1394, 0, + 0, 1521, 0, + 0, 1650, 0, + 0, 1779, 0, + 0, 1909, 0, + 0, 2040, 0, + 0, 2171, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1150, 219, 1221, + 1124, 292, 1205, + 1088, 375, 1182, + 1034, 466, 1149, + 951, 565, 1100, + 808, 671, 1026, + 500, 782, 905, + 0, 898, 663, + 0, 1017, 0, + 0, 1140, 0, + 0, 1265, 0, + 0, 1391, 0, + 0, 1519, 0, + 0, 1648, 0, + 0, 1778, 0, + 0, 1908, 0, + 0, 2039, 0, + 0, 2171, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1267, 163, 1292, + 1248, 245, 1278, + 1220, 336, 1259, + 1181, 435, 1231, + 1122, 540, 1191, + 1029, 651, 1131, + 865, 767, 1037, + 469, 886, 870, + 0, 1008, 460, + 0, 1133, 0, + 0, 1259, 0, + 0, 1387, 0, + 0, 1516, 0, + 0, 1646, 0, + 0, 1776, 0, + 0, 1907, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1388, 76, 1373, + 1373, 174, 1361, + 1353, 278, 1345, + 1324, 389, 1322, + 1281, 504, 1289, + 1218, 623, 1242, + 1116, 745, 1170, + 932, 870, 1051, + 425, 996, 820, + 0, 1123, 0, + 0, 1252, 0, + 0, 1382, 0, + 0, 1512, 0, + 0, 1643, 0, + 0, 1774, 0, + 0, 1905, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1512, 0, 1462, + 1501, 57, 1452, + 1485, 188, 1439, + 1463, 319, 1420, + 1433, 451, 1395, + 1388, 583, 1357, + 1321, 715, 1303, + 1212, 847, 1217, + 1008, 979, 1069, + 358, 1110, 742, + 0, 1242, 0, + 0, 1374, 0, + 0, 1507, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1638, 0, 1559, + 1629, 0, 1551, + 1617, 29, 1541, + 1601, 206, 1526, + 1579, 369, 1505, + 1547, 523, 1477, + 1501, 670, 1435, + 1430, 814, 1373, + 1315, 954, 1273, + 1092, 1092, 1092, + 250, 1229, 613, + 0, 1364, 0, + 0, 1499, 0, + 0, 1633, 0, + 0, 1767, 0, + 0, 1900, 0, + 0, 2033, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1765, 0, 1663, + 1758, 0, 1657, + 1750, 0, 1649, + 1738, 0, 1637, + 1721, 229, 1621, + 1698, 428, 1599, + 1665, 604, 1567, + 1617, 766, 1522, + 1544, 920, 1452, + 1423, 1067, 1338, + 1186, 1211, 1122, + 47, 1351, 348, + 0, 1489, 0, + 0, 1626, 0, + 0, 1761, 0, + 0, 1896, 0, + 0, 2030, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1893, 0, 1773, + 1888, 0, 1768, + 1882, 0, 1762, + 1873, 0, 1753, + 1861, 0, 1740, + 1844, 258, 1723, + 1820, 496, 1700, + 1787, 694, 1666, + 1738, 869, 1616, + 1662, 1031, 1540, + 1537, 1185, 1414, + 1287, 1332, 1158, + 0, 1475, 0, + 0, 1615, 0, + 0, 1753, 0, + 0, 1890, 0, + 0, 2025, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2023, 0, 1888, + 2019, 0, 1884, + 2014, 0, 1879, + 2007, 0, 1872, + 1998, 0, 1863, + 1986, 0, 1850, + 1969, 295, 1832, + 1945, 574, 1807, + 1911, 791, 1771, + 1861, 978, 1718, + 1784, 1147, 1637, + 1655, 1305, 1498, + 1394, 1456, 1202, + 0, 1601, 0, + 0, 1743, 0, + 0, 1882, 0, + 0, 2020, 0, + 0, 2155, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2153, 0, 2007, + 2149, 0, 2004, + 2147, 0, 2000, + 2141, 0, 1995, + 2135, 0, 1987, + 2125, 0, 1978, + 2113, 0, 1964, + 2095, 339, 1946, + 2071, 661, 1920, + 2037, 896, 1882, + 1986, 1092, 1827, + 1908, 1267, 1740, + 1777, 1429, 1590, + 1507, 1582, 1256, + 0, 1729, 0, + 0, 1872, 0, + 0, 2012, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2421, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2283, 0, 2129, + 2281, 0, 2127, + 2279, 0, 2123, + 2275, 0, 2119, + 2269, 0, 2113, + 2263, 0, 2107, + 2253, 0, 2097, + 2241, 0, 2083, + 2223, 393, 2063, + 2199, 756, 2036, + 2165, 1006, 1998, + 2113, 1210, 1940, + 2034, 1390, 1850, + 1900, 1554, 1691, + 1624, 1709, 1318, + 0, 1858, 0, + 0, 2002, 0, + 0, 2143, 0, + 0, 2281, 0, + 0, 2417, 0, + 0, 2553, 0, + 0, 2687, 0, + 0, 2823, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2415, 0, 2253, + 2413, 0, 2251, + 2411, 0, 2249, + 2407, 0, 2245, + 2405, 0, 2241, + 2399, 0, 2237, + 2393, 0, 2229, + 2383, 0, 2219, + 2371, 0, 2205, + 2353, 455, 2185, + 2329, 858, 2157, + 2293, 1121, 2117, + 2241, 1332, 2057, + 2161, 1515, 1964, + 2026, 1681, 1797, + 1744, 1838, 1391, + 0, 1987, 0, + 0, 2131, 0, + 0, 2273, 0, + 0, 2411, 0, + 0, 2549, 0, + 0, 2685, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2545, 0, 2379, + 2545, 0, 2377, + 2543, 0, 2377, + 2541, 0, 2373, + 2537, 0, 2371, + 2535, 0, 2367, + 2529, 0, 2361, + 2523, 0, 2353, + 2513, 0, 2343, + 2501, 0, 2329, + 2483, 528, 2309, + 2457, 966, 2281, + 2423, 1240, 2239, + 2371, 1456, 2179, + 2289, 1641, 2083, + 2153, 1810, 1910, + 1867, 1967, 1472, + 0, 2117, 0, + 0, 2263, 0, + 0, 2405, 0, + 0, 2543, 0, + 0, 2681, 0, + 0, 2817, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2677, 0, 2507, + 2675, 0, 2505, + 2675, 0, 2505, + 2673, 0, 2503, + 2671, 0, 2501, + 2669, 0, 2497, + 2665, 0, 2493, + 2659, 0, 2487, + 2653, 0, 2479, + 2643, 0, 2469, + 2631, 0, 2455, + 2613, 609, 2433, + 2587, 1080, 2405, + 2553, 1362, 2365, + 2501, 1582, 2303, + 2419, 1769, 2203, + 2283, 1939, 2026, + 1993, 2097, 1562, + 0, 2249, 0, + 0, 2393, 0, + 0, 2535, 0, + 0, 2675, 0, + 0, 2813, 0, + 0, 2949, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2809, 0, 2635, + 2807, 0, 2635, + 2807, 0, 2633, + 2805, 0, 2633, + 2805, 0, 2631, + 2803, 0, 2629, + 2799, 0, 2625, + 2795, 0, 2621, + 2791, 0, 2615, + 2783, 0, 2607, + 2775, 0, 2597, + 2761, 0, 2581, + 2743, 700, 2561, + 2719, 1198, 2533, + 2683, 1487, 2491, + 2631, 1709, 2427, + 2549, 1898, 2327, + 2411, 2069, 2147, + 2119, 2227, 1661, + 0, 2379, 0, + 0, 2525, 0, + 0, 2667, 0, + 0, 2807, 0, + 0, 2945, 0, + 0, 3081, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2941, 0, 2765, + 2939, 0, 2765, + 2939, 0, 2763, + 2939, 0, 2763, + 2937, 0, 2761, + 2935, 0, 2759, + 2933, 0, 2757, + 2931, 0, 2755, + 2927, 0, 2749, + 2921, 0, 2743, + 2915, 0, 2737, + 2905, 0, 2725, + 2893, 0, 2711, + 2875, 798, 2689, + 2849, 1319, 2661, + 2815, 1613, 2619, + 2761, 1837, 2555, + 2681, 2028, 2453, + 2541, 2199, 2269, + 2247, 2359, 1766, + 0, 2511, 0, + 0, 2657, 0, + 0, 2799, 0, + 0, 2939, 0, + 0, 3077, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3073, 0, 2895, + 3071, 0, 2895, + 3071, 0, 2895, + 3071, 0, 2893, + 3069, 0, 2893, + 3069, 0, 2891, + 3067, 0, 2889, + 3065, 0, 2887, + 3063, 0, 2883, + 3059, 0, 2879, + 3053, 0, 2873, + 3047, 0, 2865, + 3037, 0, 2855, + 3025, 0, 2839, + 3007, 903, 2819, + 2981, 1442, 2789, + 2945, 1741, 2747, + 2893, 1967, 2683, + 2811, 2159, 2581, + 2673, 2331, 2395, + 2377, 2491, 1876, + 0, 2641, 0, + 0, 2789, 0, + 0, 2931, 0, + 0, 3071, 0, + 0, 3207, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3205, 0, 3025, + 3203, 0, 3025, + 3203, 0, 3025, + 3203, 0, 3025, + 3203, 0, 3023, + 3201, 0, 3023, + 3201, 0, 3021, + 3199, 0, 3019, + 3197, 0, 3017, + 3193, 0, 3015, + 3191, 0, 3009, + 3185, 0, 3003, + 3177, 0, 2995, + 3169, 0, 2985, + 3155, 0, 2971, + 3137, 1014, 2949, + 3113, 1568, 2919, + 3077, 1870, 2877, + 3025, 2097, 2813, + 2943, 2289, 2711, + 2803, 2461, 2521, + 2507, 2621, 1992, + 0, 2773, 0, + 0, 2919, 0, + 0, 3063, 0, + 0, 3203, 0, + 0, 3339, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3335, 0, 3157, + 3335, 0, 3157, + 3335, 0, 3157, + 3335, 0, 3155, + 3335, 0, 3155, + 3335, 0, 3155, + 3333, 0, 3153, + 3333, 0, 3153, + 3331, 0, 3151, + 3329, 0, 3149, + 3325, 0, 3145, + 3321, 0, 3141, + 3317, 0, 3135, + 3309, 0, 3127, + 3301, 0, 3115, + 3287, 0, 3101, + 3269, 1129, 3079, + 3245, 1695, 3051, + 3209, 1999, 3007, + 3155, 2227, 2943, + 3073, 2421, 2839, + 2935, 2593, 2649, + 2637, 2753, 2111, + 0, 2905, 0, + 0, 3051, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3469, 0, 3289, + 3467, 0, 3289, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3467, 0, 3287, + 3465, 0, 3285, + 3465, 0, 3285, + 3463, 0, 3283, + 3463, 0, 3281, + 3461, 0, 3279, + 3457, 0, 3277, + 3453, 0, 3271, + 3449, 0, 3265, + 3441, 0, 3257, + 3433, 0, 3247, + 3419, 0, 3231, + 3401, 1248, 3211, + 3377, 1824, 3181, + 3341, 2129, 3139, + 3287, 2359, 3073, + 3205, 2551, 2969, + 3065, 2725, 2779, + 2769, 2885, 2233, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3601, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3417, + 3597, 0, 3417, + 3597, 0, 3417, + 3595, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3589, 0, 3407, + 3585, 0, 3403, + 3581, 0, 3397, + 3573, 0, 3389, + 3565, 0, 3379, + 3551, 0, 3363, + 3533, 1371, 3341, + 3509, 1953, 3313, + 3473, 2261, 3269, + 3419, 2489, 3205, + 3337, 2683, 3101, + 3197, 2857, 2909, + 2899, 3017, 2357, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3733, 0, 3551, + 3733, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3549, + 3729, 0, 3549, + 3729, 0, 3547, + 3727, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3721, 0, 3539, + 3717, 0, 3535, + 3713, 0, 3529, + 3705, 0, 3521, + 3697, 0, 3509, + 3683, 0, 3495, + 3665, 1495, 3473, + 3641, 2083, 3443, + 3605, 2391, 3401, + 3551, 2621, 3335, + 3469, 2815, 3231, + 3329, 2989, 3039, + 3031, 3149, 2485, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3683, + 3865, 0, 3683, + 3865, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3863, 0, 3681, + 3861, 0, 3681, + 3861, 0, 3679, + 3859, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3673, + 3853, 0, 3671, + 3849, 0, 3667, + 3845, 0, 3661, + 3837, 0, 3653, + 3829, 0, 3641, + 3815, 0, 3627, + 3797, 1622, 3605, + 3773, 2213, 3575, + 3737, 2523, 3533, + 3683, 2753, 3467, + 3601, 2947, 3363, + 3461, 3121, 3169, + 3163, 3281, 2611, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3813, + 3993, 0, 3811, + 3991, 0, 3809, + 3991, 0, 3809, + 3989, 0, 3805, + 3985, 0, 3803, + 3981, 0, 3799, + 3977, 0, 3793, + 3969, 0, 3785, + 3961, 0, 3773, + 3947, 0, 3757, + 3929, 1749, 3737, + 3905, 2345, 3707, + 3869, 2655, 3663, + 3815, 2885, 3599, + 3733, 3079, 3495, + 3593, 3253, 3301, + 3295, 3413, 2741, + 0, 3565, 0, + 0, 3711, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3941, + 4095, 0, 3937, + 4095, 0, 3935, + 4095, 0, 3929, + 4095, 0, 3925, + 4095, 0, 3915, + 4093, 0, 3905, + 4079, 0, 3889, + 4061, 1878, 3869, + 4037, 2475, 3839, + 4001, 2785, 3795, + 3947, 3017, 3731, + 3865, 3211, 3625, + 3725, 3385, 3433, + 3427, 3545, 2871, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4067, + 4095, 0, 4061, + 4095, 0, 4055, + 4095, 0, 4047, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2008, 4001, + 4095, 2607, 3971, + 4095, 2917, 3927, + 4079, 3149, 3863, + 3997, 3343, 3757, + 3857, 3517, 3563, + 3559, 3677, 3001, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2139, 4095, + 4095, 2739, 4095, + 4095, 3049, 4059, + 4095, 3281, 3995, + 4095, 3475, 3889, + 3989, 3649, 3695, + 3691, 3809, 3131, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2269, 4095, + 4095, 2871, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3823, 3941, 3263, + 761, 415, 1131, + 699, 464, 1111, + 599, 522, 1082, + 420, 590, 1041, + 0, 667, 979, + 0, 753, 880, + 0, 848, 701, + 0, 950, 229, + 0, 1058, 0, + 0, 1171, 0, + 0, 1288, 0, + 0, 1409, 0, + 0, 1533, 0, + 0, 1658, 0, + 0, 1786, 0, + 0, 1914, 0, + 0, 2043, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 829, 407, 1153, + 776, 456, 1133, + 694, 515, 1106, + 554, 584, 1067, + 255, 662, 1008, + 0, 749, 916, + 0, 845, 754, + 0, 947, 365, + 0, 1056, 0, + 0, 1169, 0, + 0, 1287, 0, + 0, 1408, 0, + 0, 1532, 0, + 0, 1658, 0, + 0, 1785, 0, + 0, 1914, 0, + 0, 2043, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 907, 396, 1180, + 863, 447, 1161, + 796, 507, 1136, + 688, 577, 1099, + 486, 656, 1045, + 0, 744, 961, + 0, 841, 817, + 0, 944, 501, + 0, 1053, 0, + 0, 1167, 0, + 0, 1286, 0, + 0, 1407, 0, + 0, 1531, 0, + 0, 1657, 0, + 0, 1785, 0, + 0, 1913, 0, + 0, 2043, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 994, 381, 1214, + 958, 433, 1197, + 904, 495, 1173, + 821, 567, 1139, + 680, 648, 1090, + 375, 737, 1015, + 0, 835, 889, + 0, 939, 636, + 0, 1050, 0, + 0, 1165, 0, + 0, 1284, 0, + 0, 1406, 0, + 0, 1530, 0, + 0, 1656, 0, + 0, 1784, 0, + 0, 1913, 0, + 0, 2042, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1089, 360, 1255, + 1060, 415, 1240, + 1018, 479, 1219, + 955, 553, 1188, + 853, 636, 1144, + 669, 728, 1078, + 164, 827, 970, + 0, 933, 770, + 0, 1045, 155, + 0, 1161, 0, + 0, 1281, 0, + 0, 1403, 0, + 0, 1528, 0, + 0, 1655, 0, + 0, 1783, 0, + 0, 1912, 0, + 0, 2042, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1191, 330, 1306, + 1168, 388, 1292, + 1135, 456, 1273, + 1087, 534, 1246, + 1014, 620, 1208, + 893, 715, 1150, + 653, 817, 1060, + 0, 925, 903, + 0, 1038, 538, + 0, 1156, 0, + 0, 1277, 0, + 0, 1401, 0, + 0, 1526, 0, + 0, 1653, 0, + 0, 1782, 0, + 0, 1911, 0, + 0, 2041, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1300, 287, 1366, + 1282, 351, 1353, + 1256, 424, 1337, + 1220, 507, 1314, + 1166, 598, 1281, + 1083, 697, 1232, + 940, 803, 1159, + 632, 914, 1036, + 0, 1030, 795, + 0, 1149, 0, + 0, 1272, 0, + 0, 1397, 0, + 0, 1523, 0, + 0, 1651, 0, + 0, 1780, 0, + 0, 1910, 0, + 0, 2040, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1413, 222, 1435, + 1399, 295, 1425, + 1380, 377, 1410, + 1352, 468, 1391, + 1313, 567, 1363, + 1254, 672, 1323, + 1161, 783, 1264, + 997, 899, 1169, + 601, 1018, 1002, + 0, 1140, 592, + 0, 1265, 0, + 0, 1391, 0, + 0, 1519, 0, + 0, 1648, 0, + 0, 1778, 0, + 0, 1908, 0, + 0, 2039, 0, + 0, 2171, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1531, 118, 1514, + 1520, 208, 1505, + 1505, 306, 1493, + 1485, 411, 1477, + 1456, 521, 1454, + 1413, 636, 1421, + 1350, 755, 1374, + 1249, 877, 1302, + 1063, 1002, 1183, + 557, 1128, 952, + 0, 1255, 0, + 0, 1384, 0, + 0, 1514, 0, + 0, 1644, 0, + 0, 1775, 0, + 0, 1906, 0, + 0, 2037, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1652, 0, 1601, + 1644, 58, 1594, + 1633, 189, 1584, + 1617, 320, 1571, + 1596, 451, 1553, + 1565, 583, 1527, + 1520, 715, 1490, + 1453, 847, 1435, + 1344, 979, 1349, + 1139, 1110, 1201, + 490, 1242, 875, + 0, 1375, 0, + 0, 1507, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1776, 0, 1697, + 1770, 0, 1691, + 1761, 0, 1683, + 1749, 161, 1673, + 1733, 338, 1658, + 1711, 501, 1638, + 1679, 655, 1609, + 1633, 803, 1567, + 1562, 946, 1505, + 1447, 1086, 1405, + 1225, 1225, 1225, + 382, 1361, 745, + 0, 1497, 0, + 0, 1631, 0, + 0, 1765, 0, + 0, 1899, 0, + 0, 2032, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1902, 0, 1800, + 1897, 0, 1795, + 1890, 0, 1789, + 1882, 0, 1781, + 1870, 122, 1769, + 1853, 361, 1753, + 1830, 560, 1731, + 1797, 736, 1700, + 1750, 898, 1654, + 1676, 1052, 1584, + 1556, 1199, 1471, + 1318, 1343, 1254, + 179, 1483, 480, + 0, 1621, 0, + 0, 1758, 0, + 0, 1893, 0, + 0, 2028, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2029, 0, 1909, + 2025, 0, 1905, + 2021, 0, 1900, + 2014, 0, 1894, + 2005, 0, 1885, + 1993, 63, 1873, + 1976, 390, 1856, + 1952, 628, 1832, + 1919, 826, 1798, + 1870, 1001, 1748, + 1795, 1163, 1672, + 1669, 1317, 1546, + 1419, 1464, 1290, + 0, 1607, 0, + 0, 1747, 0, + 0, 1886, 0, + 0, 2022, 0, + 0, 2157, 0, + 0, 2293, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2157, 0, 2023, + 2155, 0, 2020, + 2151, 0, 2016, + 2147, 0, 2011, + 2139, 0, 2004, + 2131, 0, 1995, + 2119, 0, 1982, + 2101, 427, 1964, + 2077, 706, 1939, + 2043, 924, 1903, + 1993, 1110, 1851, + 1916, 1279, 1769, + 1787, 1437, 1630, + 1526, 1588, 1334, + 0, 1733, 0, + 0, 1875, 0, + 0, 2014, 0, + 0, 2151, 0, + 0, 2287, 0, + 0, 2423, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2287, 0, 2141, + 2285, 0, 2139, + 2283, 0, 2135, + 2279, 0, 2131, + 2273, 0, 2127, + 2267, 0, 2119, + 2257, 0, 2109, + 2245, 0, 2097, + 2227, 471, 2077, + 2203, 793, 2051, + 2169, 1028, 2014, + 2119, 1224, 1959, + 2040, 1399, 1872, + 1909, 1561, 1723, + 1639, 1714, 1388, + 0, 1861, 0, + 0, 2004, 0, + 0, 2145, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2417, 0, 2263, + 2415, 0, 2261, + 2413, 0, 2259, + 2411, 0, 2255, + 2407, 0, 2251, + 2401, 0, 2245, + 2395, 0, 2239, + 2385, 0, 2229, + 2373, 0, 2215, + 2355, 525, 2195, + 2331, 888, 2169, + 2297, 1138, 2129, + 2245, 1342, 2073, + 2165, 1522, 1982, + 2033, 1686, 1823, + 1756, 1841, 1450, + 0, 1990, 0, + 0, 2133, 0, + 0, 2275, 0, + 0, 2413, 0, + 0, 2549, 0, + 0, 2685, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2547, 0, 2387, + 2547, 0, 2385, + 2545, 0, 2383, + 2543, 0, 2381, + 2539, 0, 2377, + 2537, 0, 2373, + 2531, 0, 2369, + 2525, 0, 2361, + 2515, 0, 2351, + 2503, 0, 2337, + 2485, 587, 2317, + 2461, 990, 2289, + 2425, 1253, 2249, + 2373, 1464, 2189, + 2293, 1647, 2097, + 2159, 1813, 1930, + 1876, 1970, 1523, + 0, 2119, 0, + 0, 2263, 0, + 0, 2405, 0, + 0, 2545, 0, + 0, 2681, 0, + 0, 2817, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2679, 0, 2513, + 2677, 0, 2511, + 2677, 0, 2509, + 2675, 0, 2509, + 2673, 0, 2505, + 2669, 0, 2503, + 2667, 0, 2499, + 2661, 0, 2493, + 2655, 0, 2485, + 2645, 0, 2475, + 2633, 0, 2461, + 2615, 660, 2441, + 2589, 1098, 2413, + 2555, 1372, 2371, + 2503, 1588, 2311, + 2421, 1773, 2215, + 2285, 1942, 2042, + 1999, 2099, 1604, + 0, 2249, 0, + 0, 2395, 0, + 0, 2537, 0, + 0, 2675, 0, + 0, 2813, 0, + 0, 2949, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2809, 0, 2639, + 2809, 0, 2639, + 2809, 0, 2637, + 2807, 0, 2637, + 2805, 0, 2635, + 2803, 0, 2633, + 2801, 0, 2629, + 2797, 0, 2625, + 2791, 0, 2619, + 2785, 0, 2611, + 2775, 0, 2601, + 2763, 0, 2587, + 2745, 742, 2567, + 2721, 1212, 2537, + 2685, 1495, 2497, + 2633, 1714, 2435, + 2551, 1901, 2335, + 2415, 2071, 2159, + 2125, 2229, 1695, + 0, 2381, 0, + 0, 2525, 0, + 0, 2667, 0, + 0, 2807, 0, + 0, 2945, 0, + 0, 3081, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 2941, 0, 2769, + 2941, 0, 2767, + 2939, 0, 2767, + 2939, 0, 2765, + 2937, 0, 2765, + 2937, 0, 2763, + 2935, 0, 2761, + 2931, 0, 2757, + 2927, 0, 2753, + 2923, 0, 2747, + 2915, 0, 2739, + 2907, 0, 2729, + 2893, 0, 2713, + 2875, 832, 2693, + 2851, 1330, 2665, + 2815, 1619, 2623, + 2763, 1841, 2561, + 2681, 2030, 2461, + 2543, 2201, 2279, + 2251, 2361, 1793, + 0, 2511, 0, + 0, 2657, 0, + 0, 2799, 0, + 0, 2939, 0, + 0, 3077, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3073, 0, 2897, + 3073, 0, 2897, + 3071, 0, 2897, + 3071, 0, 2895, + 3071, 0, 2895, + 3069, 0, 2893, + 3067, 0, 2891, + 3065, 0, 2889, + 3063, 0, 2887, + 3059, 0, 2881, + 3053, 0, 2877, + 3047, 0, 2869, + 3037, 0, 2857, + 3025, 0, 2843, + 3007, 930, 2821, + 2981, 1451, 2793, + 2947, 1745, 2751, + 2893, 1970, 2687, + 2813, 2161, 2587, + 2673, 2331, 2401, + 2379, 2491, 1898, + 0, 2643, 0, + 0, 2789, 0, + 0, 2931, 0, + 0, 3071, 0, + 0, 3209, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3205, 0, 3027, + 3205, 0, 3027, + 3203, 0, 3027, + 3203, 0, 3027, + 3203, 0, 3025, + 3201, 0, 3025, + 3201, 0, 3023, + 3199, 0, 3021, + 3197, 0, 3019, + 3195, 0, 3015, + 3191, 0, 3011, + 3185, 0, 3005, + 3179, 0, 2997, + 3169, 0, 2987, + 3157, 0, 2973, + 3139, 1035, 2951, + 3113, 1574, 2921, + 3077, 1873, 2879, + 3025, 2099, 2815, + 2943, 2291, 2713, + 2805, 2463, 2527, + 2509, 2623, 2008, + 0, 2775, 0, + 0, 2921, 0, + 0, 3063, 0, + 0, 3203, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3337, 0, 3159, + 3337, 0, 3157, + 3335, 0, 3157, + 3335, 0, 3157, + 3335, 0, 3157, + 3335, 0, 3155, + 3333, 0, 3155, + 3333, 0, 3153, + 3331, 0, 3151, + 3329, 0, 3149, + 3325, 0, 3147, + 3323, 0, 3141, + 3317, 0, 3137, + 3311, 0, 3129, + 3301, 0, 3117, + 3287, 0, 3103, + 3269, 1146, 3081, + 3245, 1700, 3051, + 3209, 2002, 3009, + 3157, 2229, 2945, + 3075, 2421, 2843, + 2935, 2593, 2653, + 2639, 2753, 2123, + 0, 2905, 0, + 0, 3053, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3879, 0, + 0, 4011, 0, + 3469, 0, 3289, + 3469, 0, 3289, + 3467, 0, 3289, + 3467, 0, 3289, + 3467, 0, 3289, + 3467, 0, 3287, + 3467, 0, 3287, + 3465, 0, 3285, + 3465, 0, 3285, + 3463, 0, 3283, + 3461, 0, 3281, + 3457, 0, 3277, + 3453, 0, 3273, + 3449, 0, 3267, + 3441, 0, 3259, + 3433, 0, 3247, + 3419, 0, 3233, + 3401, 1261, 3211, + 3377, 1827, 3183, + 3341, 2131, 3139, + 3287, 2359, 3075, + 3205, 2553, 2971, + 3067, 2725, 2781, + 2769, 2885, 2243, + 0, 3037, 0, + 0, 3183, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3601, 0, 3421, + 3601, 0, 3421, + 3599, 0, 3421, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3419, + 3599, 0, 3417, + 3597, 0, 3417, + 3595, 0, 3415, + 3595, 0, 3413, + 3593, 0, 3411, + 3589, 0, 3409, + 3585, 0, 3403, + 3581, 0, 3397, + 3573, 0, 3389, + 3565, 0, 3379, + 3551, 0, 3363, + 3533, 1380, 3343, + 3509, 1956, 3313, + 3473, 2261, 3271, + 3419, 2491, 3205, + 3337, 2683, 3101, + 3199, 2857, 2911, + 2901, 3017, 2365, + 0, 3169, 0, + 0, 3315, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3733, 0, 3551, + 3733, 0, 3551, + 3733, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3729, 0, 3549, + 3729, 0, 3549, + 3727, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3721, 0, 3539, + 3717, 0, 3535, + 3713, 0, 3529, + 3705, 0, 3521, + 3697, 0, 3511, + 3683, 0, 3495, + 3665, 1503, 3475, + 3641, 2085, 3445, + 3605, 2393, 3401, + 3551, 2623, 3337, + 3469, 2815, 3233, + 3329, 2989, 3041, + 3031, 3149, 2489, + 0, 3301, 0, + 0, 3447, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3683, + 3865, 0, 3683, + 3865, 0, 3683, + 3865, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3861, 0, 3681, + 3861, 0, 3679, + 3859, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3853, 0, 3671, + 3849, 0, 3667, + 3845, 0, 3661, + 3837, 0, 3653, + 3829, 0, 3641, + 3815, 0, 3627, + 3797, 1627, 3605, + 3773, 2215, 3575, + 3737, 2523, 3533, + 3683, 2753, 3467, + 3601, 2947, 3363, + 3461, 3121, 3171, + 3163, 3281, 2617, + 0, 3433, 0, + 0, 3579, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3813, + 3993, 0, 3811, + 3991, 0, 3811, + 3991, 0, 3809, + 3989, 0, 3807, + 3985, 0, 3803, + 3981, 0, 3799, + 3977, 0, 3793, + 3969, 0, 3785, + 3961, 0, 3773, + 3947, 0, 3759, + 3929, 1754, 3737, + 3905, 2345, 3707, + 3869, 2655, 3665, + 3815, 2885, 3599, + 3733, 3079, 3495, + 3593, 3253, 3301, + 3295, 3413, 2743, + 0, 3565, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3937, + 4095, 0, 3935, + 4095, 0, 3931, + 4095, 0, 3925, + 4095, 0, 3917, + 4093, 0, 3905, + 4079, 0, 3891, + 4061, 1881, 3869, + 4037, 2477, 3839, + 4001, 2787, 3795, + 3947, 3017, 3731, + 3865, 3211, 3627, + 3725, 3385, 3433, + 3427, 3545, 2873, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4073, + 4095, 0, 4069, + 4095, 0, 4067, + 4095, 0, 4063, + 4095, 0, 4057, + 4095, 0, 4049, + 4095, 0, 4037, + 4095, 0, 4021, + 4095, 2010, 4001, + 4095, 2609, 3971, + 4095, 2919, 3927, + 4079, 3149, 3863, + 3997, 3343, 3757, + 3857, 3517, 3565, + 3559, 3677, 3003, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2141, 4095, + 4095, 2739, 4095, + 4095, 3049, 4059, + 4095, 3281, 3995, + 4095, 3475, 3889, + 3989, 3649, 3697, + 3691, 3809, 3133, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2271, 4095, + 4095, 2871, 4095, + 4095, 3181, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3827, + 3823, 3941, 3263, + 881, 513, 1262, + 834, 553, 1247, + 762, 601, 1225, + 645, 659, 1196, + 417, 726, 1152, + 0, 802, 1087, + 0, 888, 982, + 0, 982, 788, + 0, 1083, 222, + 0, 1191, 0, + 0, 1304, 0, + 0, 1421, 0, + 0, 1542, 0, + 0, 1665, 0, + 0, 1791, 0, + 0, 1918, 0, + 0, 2046, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 934, 506, 1278, + 893, 547, 1263, + 831, 596, 1243, + 731, 654, 1214, + 552, 722, 1173, + 77, 799, 1111, + 0, 885, 1012, + 0, 980, 833, + 0, 1082, 361, + 0, 1190, 0, + 0, 1303, 0, + 0, 1421, 0, + 0, 1541, 0, + 0, 1665, 0, + 0, 1791, 0, + 0, 1918, 0, + 0, 2046, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 997, 497, 1299, + 961, 539, 1285, + 908, 588, 1265, + 826, 648, 1238, + 686, 716, 1199, + 387, 794, 1140, + 0, 882, 1048, + 0, 977, 886, + 0, 1079, 498, + 0, 1188, 0, + 0, 1302, 0, + 0, 1419, 0, + 0, 1541, 0, + 0, 1664, 0, + 0, 1790, 0, + 0, 1917, 0, + 0, 2046, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1070, 485, 1325, + 1039, 528, 1312, + 995, 579, 1294, + 928, 639, 1268, + 820, 709, 1231, + 618, 788, 1177, + 0, 876, 1093, + 0, 973, 949, + 0, 1076, 633, + 0, 1185, 0, + 0, 1299, 0, + 0, 1418, 0, + 0, 1539, 0, + 0, 1663, 0, + 0, 1789, 0, + 0, 1917, 0, + 0, 2045, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1151, 469, 1358, + 1126, 513, 1346, + 1090, 565, 1329, + 1036, 627, 1305, + 954, 699, 1272, + 812, 780, 1222, + 507, 870, 1147, + 0, 967, 1021, + 0, 1071, 768, + 0, 1182, 0, + 0, 1297, 0, + 0, 1416, 0, + 0, 1538, 0, + 0, 1662, 0, + 0, 1788, 0, + 0, 1916, 0, + 0, 2045, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1242, 446, 1399, + 1221, 492, 1387, + 1192, 547, 1372, + 1150, 611, 1351, + 1086, 685, 1320, + 985, 768, 1276, + 801, 860, 1210, + 296, 960, 1102, + 0, 1065, 902, + 0, 1177, 287, + 0, 1293, 0, + 0, 1413, 0, + 0, 1536, 0, + 0, 1661, 0, + 0, 1787, 0, + 0, 1915, 0, + 0, 2044, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1340, 413, 1448, + 1323, 462, 1438, + 1300, 520, 1424, + 1267, 588, 1405, + 1219, 666, 1378, + 1146, 752, 1340, + 1024, 847, 1283, + 785, 949, 1193, + 0, 1057, 1035, + 0, 1171, 670, + 0, 1288, 0, + 0, 1409, 0, + 0, 1533, 0, + 0, 1658, 0, + 0, 1786, 0, + 0, 1914, 0, + 0, 2043, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1445, 365, 1506, + 1432, 419, 1498, + 1414, 483, 1486, + 1388, 556, 1469, + 1352, 639, 1446, + 1298, 730, 1413, + 1215, 829, 1365, + 1072, 935, 1291, + 764, 1046, 1169, + 0, 1162, 927, + 0, 1281, 0, + 0, 1404, 0, + 0, 1529, 0, + 0, 1655, 0, + 0, 1783, 0, + 0, 1912, 0, + 0, 2042, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1556, 291, 1575, + 1546, 354, 1567, + 1531, 427, 1557, + 1512, 509, 1542, + 1485, 600, 1523, + 1445, 699, 1495, + 1386, 804, 1455, + 1293, 915, 1396, + 1129, 1031, 1301, + 733, 1150, 1134, + 0, 1272, 724, + 0, 1397, 0, + 0, 1524, 0, + 0, 1651, 0, + 0, 1780, 0, + 0, 1910, 0, + 0, 2040, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1671, 169, 1652, + 1663, 250, 1646, + 1652, 340, 1637, + 1638, 438, 1625, + 1617, 543, 1609, + 1588, 653, 1586, + 1546, 768, 1554, + 1482, 887, 1506, + 1381, 1009, 1434, + 1196, 1134, 1315, + 689, 1260, 1084, + 0, 1388, 87, + 0, 1516, 0, + 0, 1646, 0, + 0, 1776, 0, + 0, 1907, 0, + 0, 2038, 0, + 0, 2169, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1790, 0, 1739, + 1784, 59, 1733, + 1776, 190, 1726, + 1765, 321, 1716, + 1749, 452, 1703, + 1728, 583, 1685, + 1697, 715, 1659, + 1653, 847, 1622, + 1585, 979, 1567, + 1476, 1111, 1481, + 1272, 1243, 1334, + 622, 1375, 1007, + 0, 1507, 0, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1913, 0, 1833, + 1908, 0, 1829, + 1902, 0, 1823, + 1893, 93, 1816, + 1882, 293, 1805, + 1866, 470, 1790, + 1843, 633, 1770, + 1811, 787, 1741, + 1765, 935, 1699, + 1694, 1078, 1637, + 1579, 1218, 1537, + 1357, 1357, 1357, + 514, 1493, 877, + 0, 1629, 0, + 0, 1763, 0, + 0, 1897, 0, + 0, 2031, 0, + 0, 2165, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2037, 0, 1935, + 2034, 0, 1932, + 2029, 0, 1927, + 2023, 0, 1921, + 2014, 0, 1913, + 2002, 254, 1901, + 1985, 493, 1885, + 1962, 692, 1863, + 1930, 868, 1832, + 1882, 1030, 1786, + 1809, 1184, 1716, + 1688, 1331, 1603, + 1450, 1475, 1386, + 311, 1615, 612, + 0, 1753, 0, + 0, 1890, 0, + 0, 2025, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2163, 0, 2044, + 2161, 0, 2041, + 2157, 0, 2037, + 2153, 0, 2033, + 2147, 0, 2026, + 2137, 0, 2017, + 2125, 195, 2005, + 2109, 522, 1988, + 2085, 760, 1964, + 2051, 958, 1930, + 2002, 1133, 1881, + 1927, 1295, 1805, + 1802, 1449, 1678, + 1551, 1596, 1422, + 0, 1739, 0, + 0, 1880, 0, + 0, 2018, 0, + 0, 2155, 0, + 0, 2289, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2291, 0, 2157, + 2289, 0, 2155, + 2287, 0, 2153, + 2283, 0, 2149, + 2279, 0, 2143, + 2271, 0, 2137, + 2263, 0, 2127, + 2251, 102, 2115, + 2233, 559, 2097, + 2209, 838, 2071, + 2175, 1055, 2035, + 2125, 1242, 1983, + 2049, 1412, 1901, + 1920, 1570, 1762, + 1658, 1720, 1466, + 0, 1866, 0, + 0, 2007, 0, + 0, 2147, 0, + 0, 2283, 0, + 0, 2419, 0, + 0, 2555, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2421, 0, 2275, + 2419, 0, 2273, + 2417, 0, 2271, + 2415, 0, 2269, + 2411, 0, 2265, + 2405, 0, 2259, + 2399, 0, 2251, + 2389, 0, 2241, + 2377, 0, 2229, + 2359, 603, 2209, + 2335, 925, 2183, + 2301, 1160, 2147, + 2251, 1356, 2091, + 2173, 1531, 2004, + 2041, 1693, 1855, + 1771, 1846, 1520, + 0, 1993, 0, + 0, 2137, 0, + 0, 2277, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2551, 0, 2395, + 2549, 0, 2395, + 2547, 0, 2393, + 2545, 0, 2391, + 2543, 0, 2387, + 2539, 0, 2383, + 2533, 0, 2379, + 2527, 0, 2371, + 2517, 0, 2361, + 2505, 0, 2347, + 2487, 657, 2327, + 2463, 1020, 2301, + 2429, 1270, 2261, + 2377, 1475, 2205, + 2299, 1654, 2113, + 2165, 1818, 1955, + 1888, 1973, 1583, + 0, 2121, 0, + 0, 2265, 0, + 0, 2407, 0, + 0, 2545, 0, + 0, 2681, 0, + 0, 2817, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2681, 0, 2519, + 2679, 0, 2519, + 2679, 0, 2517, + 2677, 0, 2515, + 2675, 0, 2513, + 2673, 0, 2511, + 2669, 0, 2505, + 2663, 0, 2501, + 2657, 0, 2493, + 2647, 0, 2483, + 2635, 0, 2469, + 2617, 720, 2449, + 2593, 1122, 2421, + 2557, 1386, 2381, + 2505, 1596, 2321, + 2425, 1779, 2229, + 2291, 1946, 2061, + 2008, 2101, 1655, + 0, 2251, 0, + 0, 2397, 0, + 0, 2537, 0, + 0, 2677, 0, + 0, 2813, 0, + 0, 2949, 0, + 0, 3083, 0, + 0, 3219, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2811, 0, 2645, + 2811, 0, 2645, + 2809, 0, 2643, + 2809, 0, 2641, + 2807, 0, 2641, + 2805, 0, 2637, + 2803, 0, 2635, + 2799, 0, 2631, + 2793, 0, 2625, + 2787, 0, 2617, + 2777, 0, 2607, + 2765, 0, 2593, + 2747, 792, 2573, + 2721, 1230, 2545, + 2687, 1505, 2503, + 2635, 1720, 2443, + 2555, 1906, 2347, + 2417, 2073, 2173, + 2131, 2231, 1736, + 0, 2381, 0, + 0, 2527, 0, + 0, 2669, 0, + 0, 2807, 0, + 0, 2945, 0, + 0, 3081, 0, + 0, 3215, 0, + 0, 3351, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2943, 0, 2773, + 2941, 0, 2771, + 2941, 0, 2771, + 2941, 0, 2769, + 2939, 0, 2769, + 2937, 0, 2767, + 2935, 0, 2765, + 2933, 0, 2761, + 2929, 0, 2757, + 2923, 0, 2751, + 2917, 0, 2743, + 2907, 0, 2733, + 2895, 0, 2719, + 2877, 874, 2699, + 2853, 1344, 2669, + 2817, 1627, 2629, + 2765, 1846, 2567, + 2683, 2034, 2469, + 2547, 2203, 2291, + 2257, 2361, 1827, + 0, 2513, 0, + 0, 2657, 0, + 0, 2799, 0, + 0, 2939, 0, + 0, 3077, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3073, 0, 2901, + 3073, 0, 2901, + 3073, 0, 2899, + 3073, 0, 2899, + 3071, 0, 2897, + 3071, 0, 2897, + 3069, 0, 2895, + 3067, 0, 2893, + 3063, 0, 2889, + 3059, 0, 2885, + 3055, 0, 2879, + 3047, 0, 2871, + 3039, 0, 2861, + 3025, 0, 2847, + 3007, 964, 2825, + 2983, 1462, 2797, + 2947, 1751, 2755, + 2895, 1973, 2693, + 2813, 2163, 2593, + 2675, 2333, 2411, + 2383, 2493, 1925, + 0, 2643, 0, + 0, 2789, 0, + 0, 2931, 0, + 0, 3071, 0, + 0, 3209, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3205, 0, 3029, + 3205, 0, 3029, + 3205, 0, 3029, + 3205, 0, 3029, + 3203, 0, 3027, + 3203, 0, 3027, + 3201, 0, 3025, + 3199, 0, 3023, + 3197, 0, 3021, + 3195, 0, 3019, + 3191, 0, 3013, + 3187, 0, 3009, + 3179, 0, 3001, + 3169, 0, 2989, + 3157, 0, 2975, + 3139, 1062, 2955, + 3115, 1583, 2925, + 3079, 1877, 2883, + 3025, 2101, 2819, + 2945, 2293, 2719, + 2805, 2463, 2533, + 2513, 2623, 2030, + 0, 2775, 0, + 0, 2921, 0, + 0, 3063, 0, + 0, 3203, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3747, 0, + 0, 3879, 0, + 0, 4013, 0, + 3337, 0, 3159, + 3337, 0, 3159, + 3337, 0, 3159, + 3335, 0, 3159, + 3335, 0, 3159, + 3335, 0, 3157, + 3335, 0, 3157, + 3333, 0, 3155, + 3331, 0, 3153, + 3329, 0, 3151, + 3327, 0, 3149, + 3323, 0, 3143, + 3317, 0, 3137, + 3311, 0, 3129, + 3301, 0, 3119, + 3289, 0, 3105, + 3271, 1167, 3083, + 3245, 1707, 3055, + 3209, 2005, 3011, + 3157, 2231, 2947, + 3075, 2423, 2845, + 2937, 2595, 2659, + 2641, 2755, 2141, + 0, 2907, 0, + 0, 3053, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3879, 0, + 0, 4011, 0, + 3469, 0, 3291, + 3469, 0, 3291, + 3469, 0, 3291, + 3469, 0, 3289, + 3467, 0, 3289, + 3467, 0, 3289, + 3467, 0, 3289, + 3465, 0, 3287, + 3465, 0, 3285, + 3463, 0, 3283, + 3461, 0, 3281, + 3459, 0, 3279, + 3455, 0, 3275, + 3449, 0, 3269, + 3443, 0, 3261, + 3433, 0, 3249, + 3419, 0, 3235, + 3403, 1278, 3213, + 3377, 1832, 3183, + 3341, 2133, 3141, + 3289, 2361, 3077, + 3207, 2553, 2975, + 3067, 2725, 2785, + 2771, 2885, 2255, + 0, 3037, 0, + 0, 3185, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3601, 0, 3421, + 3601, 0, 3421, + 3601, 0, 3421, + 3601, 0, 3421, + 3599, 0, 3421, + 3599, 0, 3421, + 3599, 0, 3419, + 3599, 0, 3419, + 3597, 0, 3417, + 3597, 0, 3417, + 3595, 0, 3415, + 3593, 0, 3413, + 3589, 0, 3409, + 3587, 0, 3405, + 3581, 0, 3399, + 3573, 0, 3391, + 3565, 0, 3379, + 3551, 0, 3365, + 3533, 1393, 3345, + 3509, 1959, 3315, + 3473, 2263, 3271, + 3419, 2491, 3207, + 3339, 2685, 3103, + 3199, 2857, 2913, + 2901, 3017, 2375, + 0, 3169, 0, + 0, 3317, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3733, 0, 3553, + 3733, 0, 3553, + 3733, 0, 3553, + 3733, 0, 3553, + 3731, 0, 3553, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3731, 0, 3551, + 3729, 0, 3549, + 3729, 0, 3547, + 3727, 0, 3545, + 3725, 0, 3543, + 3721, 0, 3541, + 3717, 0, 3535, + 3713, 0, 3531, + 3705, 0, 3521, + 3697, 0, 3511, + 3683, 0, 3495, + 3665, 1513, 3475, + 3641, 2087, 3445, + 3605, 2393, 3403, + 3551, 2623, 3337, + 3469, 2817, 3233, + 3331, 2989, 3043, + 3033, 3149, 2497, + 0, 3301, 0, + 0, 3449, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3683, + 3865, 0, 3683, + 3865, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3681, + 3861, 0, 3681, + 3861, 0, 3679, + 3859, 0, 3677, + 3857, 0, 3675, + 3853, 0, 3671, + 3849, 0, 3667, + 3845, 0, 3661, + 3837, 0, 3653, + 3829, 0, 3643, + 3815, 0, 3627, + 3797, 1635, 3607, + 3773, 2217, 3577, + 3737, 2525, 3533, + 3683, 2755, 3469, + 3601, 2947, 3365, + 3461, 3121, 3173, + 3163, 3281, 2621, + 0, 3433, 0, + 0, 3581, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3995, 0, 3813, + 3993, 0, 3813, + 3993, 0, 3811, + 3991, 0, 3809, + 3989, 0, 3807, + 3985, 0, 3803, + 3981, 0, 3799, + 3977, 0, 3793, + 3969, 0, 3785, + 3961, 0, 3773, + 3947, 0, 3759, + 3929, 1759, 3737, + 3905, 2347, 3707, + 3869, 2655, 3665, + 3815, 2885, 3599, + 3733, 3079, 3495, + 3593, 3253, 3303, + 3295, 3413, 2749, + 0, 3565, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3935, + 4095, 0, 3931, + 4095, 0, 3925, + 4095, 0, 3917, + 4093, 0, 3905, + 4079, 0, 3891, + 4061, 1886, 3869, + 4037, 2477, 3839, + 4001, 2787, 3797, + 3947, 3017, 3731, + 3865, 3211, 3627, + 3725, 3385, 3435, + 3427, 3545, 2877, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4069, + 4095, 0, 4067, + 4095, 0, 4063, + 4095, 0, 4057, + 4095, 0, 4049, + 4095, 0, 4037, + 4095, 0, 4023, + 4095, 2014, 4001, + 4095, 2609, 3971, + 4095, 2919, 3929, + 4079, 3149, 3863, + 3997, 3343, 3759, + 3857, 3517, 3565, + 3559, 3677, 3005, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2143, 4095, + 4095, 2741, 4095, + 4095, 3051, 4059, + 4095, 3281, 3995, + 4095, 3475, 3891, + 3989, 3649, 3697, + 3691, 3809, 3135, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2273, 4095, + 4095, 2871, 4095, + 4095, 3183, 4095, + 4095, 3413, 4095, + 4095, 3607, 4021, + 4095, 3781, 3829, + 3823, 3941, 3265, + 1004, 617, 1393, + 969, 649, 1381, + 916, 689, 1366, + 836, 737, 1344, + 699, 794, 1313, + 412, 861, 1269, + 0, 937, 1201, + 0, 1022, 1091, + 0, 1116, 884, + 0, 1217, 213, + 0, 1324, 0, + 0, 1437, 0, + 0, 1554, 0, + 0, 1675, 0, + 0, 1798, 0, + 0, 1923, 0, + 0, 2051, 0, + 0, 2179, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1045, 612, 1405, + 1013, 645, 1394, + 966, 685, 1379, + 895, 733, 1358, + 777, 791, 1328, + 549, 858, 1284, + 0, 935, 1219, + 0, 1020, 1114, + 0, 1114, 920, + 0, 1216, 354, + 0, 1323, 0, + 0, 1436, 0, + 0, 1554, 0, + 0, 1674, 0, + 0, 1798, 0, + 0, 1923, 0, + 0, 2051, 0, + 0, 2179, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1095, 605, 1421, + 1066, 638, 1410, + 1025, 679, 1395, + 963, 728, 1375, + 864, 786, 1346, + 684, 854, 1305, + 209, 931, 1243, + 0, 1018, 1144, + 0, 1112, 965, + 0, 1214, 493, + 0, 1322, 0, + 0, 1435, 0, + 0, 1553, 0, + 0, 1674, 0, + 0, 1797, 0, + 0, 1923, 0, + 0, 2049, 0, + 0, 2179, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1154, 596, 1441, + 1129, 629, 1431, + 1093, 671, 1417, + 1040, 721, 1397, + 958, 780, 1370, + 818, 848, 1331, + 519, 927, 1272, + 0, 1014, 1180, + 0, 1109, 1018, + 0, 1211, 630, + 0, 1320, 0, + 0, 1434, 0, + 0, 1552, 0, + 0, 1673, 0, + 0, 1796, 0, + 0, 1922, 0, + 0, 2049, 0, + 0, 2179, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1223, 583, 1467, + 1202, 617, 1457, + 1171, 660, 1444, + 1127, 711, 1426, + 1060, 771, 1400, + 952, 841, 1363, + 750, 920, 1309, + 121, 1009, 1225, + 0, 1105, 1081, + 0, 1208, 765, + 0, 1317, 0, + 0, 1432, 0, + 0, 1550, 0, + 0, 1671, 0, + 0, 1796, 0, + 0, 1922, 0, + 0, 2049, 0, + 0, 2177, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1301, 565, 1499, + 1283, 601, 1490, + 1258, 645, 1478, + 1222, 697, 1461, + 1168, 759, 1437, + 1085, 831, 1404, + 944, 912, 1354, + 639, 1002, 1279, + 0, 1099, 1153, + 0, 1204, 900, + 0, 1314, 0, + 0, 1429, 0, + 0, 1548, 0, + 0, 1670, 0, + 0, 1794, 0, + 0, 1921, 0, + 0, 2049, 0, + 0, 2177, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1389, 540, 1539, + 1374, 578, 1531, + 1353, 624, 1520, + 1324, 679, 1504, + 1282, 743, 1483, + 1219, 817, 1452, + 1117, 900, 1408, + 933, 992, 1342, + 429, 1091, 1234, + 0, 1197, 1034, + 0, 1309, 419, + 0, 1425, 0, + 0, 1545, 0, + 0, 1668, 0, + 0, 1793, 0, + 0, 1919, 0, + 0, 2047, 0, + 0, 2177, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1484, 504, 1587, + 1472, 545, 1580, + 1456, 594, 1570, + 1432, 652, 1556, + 1400, 721, 1537, + 1351, 798, 1510, + 1278, 885, 1472, + 1157, 979, 1415, + 917, 1081, 1325, + 0, 1189, 1167, + 0, 1303, 802, + 0, 1420, 0, + 0, 1541, 0, + 0, 1665, 0, + 0, 1790, 0, + 0, 1918, 0, + 0, 2046, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1587, 451, 1645, + 1577, 497, 1639, + 1564, 551, 1630, + 1546, 615, 1618, + 1520, 688, 1601, + 1484, 771, 1578, + 1430, 862, 1545, + 1347, 961, 1497, + 1204, 1067, 1423, + 896, 1178, 1301, + 0, 1294, 1059, + 0, 1414, 0, + 0, 1536, 0, + 0, 1661, 0, + 0, 1788, 0, + 0, 1915, 0, + 0, 2044, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1695, 369, 1712, + 1688, 423, 1707, + 1678, 486, 1699, + 1664, 559, 1689, + 1644, 641, 1675, + 1617, 732, 1655, + 1577, 831, 1627, + 1518, 936, 1587, + 1425, 1047, 1528, + 1261, 1163, 1434, + 865, 1282, 1266, + 0, 1404, 856, + 0, 1529, 0, + 0, 1656, 0, + 0, 1784, 0, + 0, 1912, 0, + 0, 2042, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1809, 230, 1789, + 1803, 301, 1784, + 1795, 382, 1778, + 1785, 472, 1769, + 1770, 570, 1757, + 1749, 675, 1741, + 1720, 785, 1718, + 1678, 900, 1686, + 1614, 1019, 1638, + 1513, 1141, 1566, + 1328, 1266, 1448, + 821, 1392, 1216, + 0, 1520, 219, + 0, 1649, 0, + 0, 1778, 0, + 0, 1908, 0, + 0, 2039, 0, + 0, 2171, 0, + 0, 2301, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1927, 0, 1875, + 1923, 61, 1871, + 1917, 191, 1865, + 1908, 322, 1858, + 1897, 453, 1849, + 1881, 584, 1835, + 1860, 716, 1817, + 1829, 847, 1791, + 1785, 979, 1754, + 1717, 1111, 1699, + 1608, 1243, 1613, + 1404, 1375, 1466, + 754, 1507, 1139, + 0, 1639, 0, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2049, 0, 1969, + 2045, 0, 1966, + 2040, 0, 1961, + 2034, 0, 1955, + 2025, 225, 1948, + 2014, 425, 1937, + 1998, 602, 1922, + 1975, 765, 1902, + 1943, 919, 1873, + 1897, 1067, 1831, + 1827, 1210, 1769, + 1711, 1351, 1669, + 1489, 1489, 1489, + 646, 1625, 1009, + 0, 1761, 0, + 0, 1896, 0, + 0, 2029, 0, + 0, 2163, 0, + 0, 2297, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2173, 0, 2071, + 2169, 0, 2067, + 2165, 0, 2065, + 2161, 0, 2059, + 2155, 0, 2053, + 2145, 53, 2045, + 2135, 386, 2033, + 2117, 625, 2017, + 2095, 824, 1995, + 2061, 1000, 1964, + 2014, 1162, 1918, + 1941, 1316, 1848, + 1820, 1464, 1735, + 1582, 1607, 1518, + 443, 1747, 744, + 0, 1885, 0, + 0, 2022, 0, + 0, 2157, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2297, 0, 2177, + 2295, 0, 2175, + 2293, 0, 2173, + 2289, 0, 2169, + 2285, 0, 2165, + 2279, 0, 2159, + 2269, 0, 2149, + 2257, 327, 2137, + 2241, 655, 2119, + 2217, 892, 2097, + 2183, 1090, 2063, + 2135, 1265, 2013, + 2059, 1428, 1937, + 1934, 1581, 1810, + 1683, 1728, 1554, + 0, 1871, 0, + 0, 2012, 0, + 0, 2149, 0, + 0, 2287, 0, + 0, 2421, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2425, 0, 2291, + 2423, 0, 2289, + 2421, 0, 2287, + 2419, 0, 2285, + 2415, 0, 2281, + 2411, 0, 2275, + 2403, 0, 2269, + 2395, 0, 2259, + 2383, 234, 2247, + 2365, 691, 2229, + 2341, 970, 2203, + 2307, 1188, 2167, + 2257, 1374, 2115, + 2181, 1544, 2033, + 2051, 1702, 1894, + 1790, 1852, 1599, + 0, 1998, 0, + 0, 2139, 0, + 0, 2279, 0, + 0, 2417, 0, + 0, 2553, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2553, 0, 2409, + 2553, 0, 2407, + 2551, 0, 2405, + 2549, 0, 2403, + 2547, 0, 2401, + 2543, 0, 2397, + 2537, 0, 2391, + 2531, 0, 2383, + 2521, 0, 2375, + 2509, 69, 2361, + 2491, 735, 2343, + 2467, 1057, 2315, + 2433, 1292, 2279, + 2383, 1489, 2223, + 2305, 1663, 2137, + 2173, 1825, 1987, + 1903, 1978, 1652, + 0, 2125, 0, + 0, 2269, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2683, 0, 2529, + 2683, 0, 2527, + 2681, 0, 2527, + 2679, 0, 2525, + 2677, 0, 2523, + 2675, 0, 2519, + 2671, 0, 2515, + 2667, 0, 2511, + 2659, 0, 2503, + 2651, 0, 2493, + 2637, 0, 2479, + 2619, 789, 2459, + 2595, 1152, 2433, + 2561, 1403, 2395, + 2509, 1607, 2337, + 2431, 1786, 2245, + 2297, 1951, 2087, + 2020, 2105, 1715, + 0, 2253, 0, + 0, 2397, 0, + 0, 2539, 0, + 0, 2677, 0, + 0, 2815, 0, + 0, 2949, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2813, 0, 2653, + 2813, 0, 2651, + 2811, 0, 2651, + 2811, 0, 2649, + 2809, 0, 2647, + 2807, 0, 2645, + 2805, 0, 2643, + 2801, 0, 2639, + 2795, 0, 2633, + 2789, 0, 2625, + 2779, 0, 2615, + 2767, 0, 2601, + 2749, 852, 2581, + 2725, 1254, 2553, + 2689, 1518, 2513, + 2637, 1728, 2455, + 2557, 1911, 2361, + 2423, 2077, 2193, + 2141, 2235, 1787, + 0, 2383, 0, + 0, 2529, 0, + 0, 2669, 0, + 0, 2809, 0, + 0, 2945, 0, + 0, 3081, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2943, 0, 2777, + 2943, 0, 2777, + 2943, 0, 2777, + 2941, 0, 2775, + 2941, 0, 2775, + 2939, 0, 2773, + 2937, 0, 2771, + 2935, 0, 2767, + 2931, 0, 2763, + 2925, 0, 2757, + 2919, 0, 2749, + 2909, 0, 2739, + 2897, 0, 2725, + 2879, 924, 2705, + 2855, 1363, 2677, + 2819, 1637, 2635, + 2767, 1852, 2575, + 2687, 2038, 2479, + 2549, 2207, 2305, + 2263, 2363, 1869, + 0, 2513, 0, + 0, 2659, 0, + 0, 2801, 0, + 0, 2939, 0, + 0, 3077, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3483, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3075, 0, 2905, + 3075, 0, 2905, + 3073, 0, 2903, + 3073, 0, 2903, + 3073, 0, 2903, + 3071, 0, 2901, + 3069, 0, 2899, + 3067, 0, 2897, + 3065, 0, 2893, + 3061, 0, 2889, + 3055, 0, 2883, + 3049, 0, 2875, + 3039, 0, 2865, + 3027, 0, 2851, + 3009, 1006, 2831, + 2985, 1476, 2801, + 2949, 1759, 2761, + 2897, 1978, 2699, + 2815, 2165, 2601, + 2679, 2335, 2423, + 2389, 2493, 1959, + 0, 2645, 0, + 0, 2791, 0, + 0, 2931, 0, + 0, 3071, 0, + 0, 3209, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3615, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3205, 0, 3033, + 3205, 0, 3033, + 3205, 0, 3033, + 3205, 0, 3031, + 3205, 0, 3031, + 3203, 0, 3031, + 3203, 0, 3029, + 3201, 0, 3027, + 3199, 0, 3025, + 3195, 0, 3021, + 3193, 0, 3017, + 3187, 0, 3011, + 3181, 0, 3003, + 3171, 0, 2993, + 3157, 0, 2979, + 3141, 1096, 2957, + 3115, 1594, 2929, + 3079, 1883, 2887, + 3027, 2105, 2825, + 2945, 2295, 2725, + 2807, 2465, 2543, + 2515, 2625, 2057, + 0, 2775, 0, + 0, 2921, 0, + 0, 3063, 0, + 0, 3203, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3747, 0, + 0, 3879, 0, + 0, 4013, 0, + 3337, 0, 3163, + 3337, 0, 3163, + 3337, 0, 3161, + 3337, 0, 3161, + 3337, 0, 3161, + 3335, 0, 3161, + 3335, 0, 3159, + 3333, 0, 3157, + 3331, 0, 3155, + 3329, 0, 3153, + 3327, 0, 3151, + 3323, 0, 3147, + 3319, 0, 3141, + 3311, 0, 3133, + 3301, 0, 3121, + 3289, 0, 3107, + 3271, 1194, 3087, + 3247, 1715, 3057, + 3211, 2010, 3015, + 3157, 2233, 2951, + 3077, 2425, 2851, + 2937, 2595, 2665, + 2645, 2755, 2161, + 0, 2907, 0, + 0, 3053, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3879, 0, + 0, 4011, 0, + 3469, 0, 3293, + 3469, 0, 3293, + 3469, 0, 3291, + 3469, 0, 3291, + 3469, 0, 3291, + 3467, 0, 3291, + 3467, 0, 3289, + 3467, 0, 3289, + 3465, 0, 3287, + 3463, 0, 3285, + 3461, 0, 3283, + 3459, 0, 3281, + 3455, 0, 3275, + 3449, 0, 3269, + 3443, 0, 3263, + 3433, 0, 3251, + 3421, 0, 3237, + 3403, 1299, 3215, + 3377, 1839, 3187, + 3341, 2137, 3143, + 3289, 2363, 3079, + 3207, 2555, 2977, + 3069, 2727, 2791, + 2773, 2887, 2273, + 0, 3039, 0, + 0, 3185, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3601, 0, 3423, + 3601, 0, 3423, + 3601, 0, 3423, + 3601, 0, 3423, + 3601, 0, 3421, + 3599, 0, 3421, + 3599, 0, 3421, + 3599, 0, 3421, + 3597, 0, 3419, + 3597, 0, 3417, + 3595, 0, 3417, + 3593, 0, 3413, + 3591, 0, 3411, + 3587, 0, 3407, + 3581, 0, 3401, + 3575, 0, 3393, + 3565, 0, 3381, + 3553, 0, 3367, + 3535, 1410, 3345, + 3509, 1964, 3317, + 3473, 2267, 3273, + 3421, 2493, 3209, + 3339, 2685, 3107, + 3199, 2857, 2917, + 2903, 3019, 2389, + 0, 3169, 0, + 0, 3317, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3733, 0, 3553, + 3733, 0, 3553, + 3733, 0, 3553, + 3733, 0, 3553, + 3733, 0, 3553, + 3731, 0, 3553, + 3731, 0, 3553, + 3731, 0, 3551, + 3731, 0, 3551, + 3729, 0, 3551, + 3729, 0, 3549, + 3727, 0, 3547, + 3725, 0, 3545, + 3721, 0, 3541, + 3719, 0, 3537, + 3713, 0, 3531, + 3707, 0, 3523, + 3697, 0, 3513, + 3683, 0, 3497, + 3665, 1525, 3477, + 3641, 2091, 3447, + 3605, 2395, 3403, + 3553, 2625, 3339, + 3471, 2817, 3235, + 3331, 2989, 3045, + 3033, 3149, 2507, + 0, 3301, 0, + 0, 3449, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3863, 0, 3683, + 3861, 0, 3681, + 3861, 0, 3679, + 3859, 0, 3679, + 3857, 0, 3675, + 3853, 0, 3673, + 3851, 0, 3669, + 3845, 0, 3663, + 3837, 0, 3655, + 3829, 0, 3643, + 3815, 0, 3629, + 3797, 1645, 3607, + 3773, 2221, 3577, + 3737, 2527, 3535, + 3683, 2755, 3469, + 3601, 2949, 3367, + 3463, 3121, 3175, + 3165, 3281, 2629, + 0, 3433, 0, + 0, 3581, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3815, + 3997, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3813, + 3993, 0, 3813, + 3993, 0, 3811, + 3991, 0, 3809, + 3989, 0, 3807, + 3985, 0, 3803, + 3981, 0, 3799, + 3977, 0, 3793, + 3969, 0, 3785, + 3961, 0, 3775, + 3947, 0, 3759, + 3929, 1767, 3739, + 3905, 2349, 3709, + 3869, 2657, 3665, + 3815, 2887, 3601, + 3733, 3079, 3497, + 3593, 3253, 3305, + 3295, 3413, 2755, + 0, 3565, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3935, + 4095, 0, 3931, + 4095, 0, 3925, + 4095, 0, 3917, + 4093, 0, 3907, + 4079, 0, 3891, + 4061, 1892, 3869, + 4037, 2479, 3841, + 4001, 2787, 3797, + 3947, 3017, 3733, + 3865, 3211, 3627, + 3725, 3385, 3435, + 3427, 3545, 2881, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4067, + 4095, 0, 4063, + 4095, 0, 4057, + 4095, 0, 4049, + 4095, 0, 4037, + 4095, 0, 4023, + 4095, 2018, 4001, + 4095, 2611, 3971, + 4095, 2919, 3929, + 4079, 3149, 3863, + 3997, 3343, 3759, + 3857, 3517, 3567, + 3559, 3677, 3009, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2145, 4095, + 4095, 2741, 4095, + 4095, 3051, 4061, + 4095, 3281, 3995, + 4095, 3475, 3891, + 3989, 3649, 3697, + 3691, 3809, 3137, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2275, 4095, + 4095, 2873, 4095, + 4095, 3183, 4095, + 4095, 3413, 4095, + 4095, 3607, 4023, + 4095, 3781, 3829, + 3823, 3941, 3267, + 1129, 728, 1524, + 1102, 753, 1516, + 1064, 785, 1504, + 1008, 824, 1488, + 919, 872, 1466, + 763, 929, 1434, + 407, 995, 1388, + 0, 1071, 1319, + 0, 1156, 1205, + 0, 1249, 987, + 0, 1350, 201, + 0, 1457, 0, + 0, 1570, 0, + 0, 1687, 0, + 0, 1807, 0, + 0, 1930, 0, + 0, 2055, 0, + 0, 2183, 0, + 0, 2311, 0, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1161, 724, 1533, + 1136, 750, 1525, + 1100, 782, 1514, + 1048, 821, 1498, + 968, 869, 1476, + 832, 926, 1445, + 544, 993, 1401, + 0, 1069, 1333, + 0, 1154, 1223, + 0, 1248, 1016, + 0, 1349, 345, + 0, 1456, 0, + 0, 1569, 0, + 0, 1686, 0, + 0, 1807, 0, + 0, 1930, 0, + 0, 2055, 0, + 0, 2183, 0, + 0, 2311, 0, + 0, 2441, 0, + 0, 2569, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1200, 719, 1545, + 1177, 745, 1537, + 1145, 777, 1526, + 1098, 817, 1511, + 1026, 865, 1490, + 909, 923, 1460, + 681, 990, 1417, + 0, 1066, 1351, + 0, 1152, 1246, + 0, 1246, 1052, + 0, 1348, 486, + 0, 1455, 0, + 0, 1568, 0, + 0, 1686, 0, + 0, 1806, 0, + 0, 1930, 0, + 0, 2055, 0, + 0, 2183, 0, + 0, 2311, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1248, 711, 1561, + 1227, 738, 1553, + 1198, 770, 1542, + 1157, 811, 1528, + 1095, 860, 1507, + 996, 918, 1478, + 816, 986, 1437, + 341, 1063, 1375, + 0, 1149, 1276, + 0, 1244, 1097, + 0, 1346, 625, + 0, 1454, 0, + 0, 1567, 0, + 0, 1685, 0, + 0, 1806, 0, + 0, 1929, 0, + 0, 2055, 0, + 0, 2183, 0, + 0, 2311, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1304, 701, 1581, + 1286, 728, 1573, + 1261, 762, 1563, + 1225, 803, 1549, + 1172, 853, 1530, + 1090, 912, 1502, + 951, 981, 1463, + 651, 1058, 1405, + 0, 1146, 1312, + 0, 1241, 1150, + 0, 1343, 762, + 0, 1452, 0, + 0, 1566, 0, + 0, 1684, 0, + 0, 1805, 0, + 0, 1929, 0, + 0, 2055, 0, + 0, 2181, 0, + 0, 2311, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1371, 688, 1606, + 1355, 715, 1599, + 1334, 750, 1589, + 1303, 792, 1576, + 1259, 843, 1558, + 1192, 903, 1532, + 1084, 973, 1496, + 882, 1052, 1441, + 253, 1140, 1357, + 0, 1237, 1213, + 0, 1340, 897, + 0, 1449, 0, + 0, 1564, 0, + 0, 1682, 0, + 0, 1804, 0, + 0, 1928, 0, + 0, 2053, 0, + 0, 2181, 0, + 0, 2309, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1447, 669, 1638, + 1434, 697, 1631, + 1416, 733, 1622, + 1390, 777, 1610, + 1354, 829, 1593, + 1301, 891, 1569, + 1218, 963, 1536, + 1076, 1044, 1486, + 771, 1134, 1411, + 0, 1231, 1285, + 0, 1336, 1032, + 0, 1446, 0, + 0, 1561, 0, + 0, 1680, 0, + 0, 1802, 0, + 0, 1926, 0, + 0, 2053, 0, + 0, 2181, 0, + 0, 2309, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1532, 642, 1677, + 1521, 672, 1671, + 1506, 710, 1663, + 1485, 756, 1652, + 1456, 811, 1636, + 1414, 875, 1615, + 1351, 949, 1585, + 1249, 1032, 1541, + 1065, 1124, 1474, + 561, 1224, 1367, + 0, 1330, 1166, + 0, 1441, 551, + 0, 1557, 0, + 0, 1677, 0, + 0, 1800, 0, + 0, 1925, 0, + 0, 2051, 0, + 0, 2179, 0, + 0, 2309, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1625, 603, 1725, + 1616, 636, 1720, + 1604, 677, 1712, + 1588, 726, 1702, + 1565, 785, 1688, + 1532, 853, 1669, + 1484, 930, 1643, + 1410, 1017, 1604, + 1289, 1111, 1547, + 1049, 1213, 1457, + 0, 1321, 1300, + 0, 1435, 934, + 0, 1552, 0, + 0, 1673, 0, + 0, 1797, 0, + 0, 1923, 0, + 0, 2049, 0, + 0, 2179, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1726, 546, 1782, + 1719, 583, 1777, + 1709, 629, 1771, + 1696, 683, 1762, + 1678, 747, 1750, + 1653, 820, 1733, + 1616, 903, 1710, + 1563, 994, 1677, + 1479, 1093, 1629, + 1336, 1199, 1555, + 1028, 1310, 1433, + 0, 1426, 1191, + 0, 1546, 0, + 0, 1668, 0, + 0, 1793, 0, + 0, 1920, 0, + 0, 2047, 0, + 0, 2177, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1833, 456, 1848, + 1827, 501, 1844, + 1820, 555, 1839, + 1810, 618, 1831, + 1796, 691, 1821, + 1776, 774, 1807, + 1749, 864, 1787, + 1709, 963, 1759, + 1650, 1068, 1719, + 1558, 1179, 1660, + 1393, 1295, 1566, + 997, 1414, 1398, + 0, 1537, 988, + 0, 1661, 0, + 0, 1788, 0, + 0, 1916, 0, + 0, 2045, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1946, 299, 1925, + 1941, 362, 1921, + 1935, 433, 1916, + 1928, 514, 1910, + 1917, 604, 1901, + 1902, 702, 1889, + 1881, 807, 1873, + 1852, 917, 1850, + 1810, 1032, 1818, + 1746, 1151, 1771, + 1645, 1273, 1698, + 1460, 1398, 1580, + 953, 1524, 1348, + 0, 1652, 351, + 0, 1781, 0, + 0, 1910, 0, + 0, 2041, 0, + 0, 2171, 0, + 0, 2303, 0, + 0, 2433, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2063, 0, 2010, + 2059, 63, 2007, + 2055, 193, 2003, + 2049, 323, 1998, + 2040, 454, 1990, + 2029, 585, 1981, + 2014, 716, 1967, + 1992, 848, 1949, + 1961, 979, 1923, + 1917, 1111, 1886, + 1850, 1243, 1831, + 1740, 1375, 1745, + 1536, 1507, 1598, + 886, 1639, 1271, + 0, 1771, 0, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2183, 0, 2103, + 2181, 0, 2101, + 2177, 0, 2097, + 2173, 0, 2093, + 2167, 115, 2087, + 2157, 358, 2079, + 2145, 557, 2069, + 2129, 734, 2055, + 2107, 897, 2034, + 2075, 1051, 2005, + 2029, 1199, 1964, + 1959, 1342, 1901, + 1843, 1483, 1801, + 1621, 1621, 1621, + 778, 1758, 1141, + 0, 1893, 0, + 0, 2028, 0, + 0, 2161, 0, + 0, 2295, 0, + 0, 2429, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2307, 0, 2205, + 2305, 0, 2203, + 2301, 0, 2199, + 2299, 0, 2197, + 2293, 0, 2191, + 2287, 0, 2185, + 2279, 185, 2177, + 2267, 518, 2165, + 2249, 757, 2149, + 2227, 956, 2127, + 2193, 1132, 2095, + 2145, 1295, 2051, + 2073, 1448, 1981, + 1952, 1596, 1867, + 1714, 1739, 1650, + 575, 1879, 876, + 0, 2018, 0, + 0, 2155, 0, + 0, 2289, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2431, 0, 2311, + 2429, 0, 2309, + 2427, 0, 2307, + 2425, 0, 2305, + 2421, 0, 2301, + 2417, 0, 2297, + 2411, 0, 2291, + 2401, 0, 2281, + 2389, 459, 2269, + 2373, 787, 2251, + 2349, 1024, 2229, + 2315, 1222, 2195, + 2267, 1398, 2145, + 2191, 1560, 2069, + 2065, 1713, 1942, + 1815, 1860, 1686, + 0, 2004, 0, + 0, 2143, 0, + 0, 2281, 0, + 0, 2419, 0, + 0, 2553, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2559, 0, 2425, + 2557, 0, 2423, + 2555, 0, 2421, + 2553, 0, 2419, + 2551, 0, 2417, + 2547, 0, 2413, + 2543, 0, 2407, + 2535, 0, 2401, + 2527, 0, 2391, + 2515, 366, 2379, + 2497, 823, 2361, + 2473, 1102, 2335, + 2439, 1320, 2299, + 2389, 1507, 2247, + 2313, 1676, 2165, + 2183, 1834, 2026, + 1923, 1984, 1731, + 0, 2129, 0, + 0, 2271, 0, + 0, 2411, 0, + 0, 2549, 0, + 0, 2685, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2687, 0, 2541, + 2685, 0, 2541, + 2685, 0, 2539, + 2683, 0, 2537, + 2681, 0, 2535, + 2679, 0, 2533, + 2675, 0, 2529, + 2669, 0, 2523, + 2663, 0, 2515, + 2653, 0, 2507, + 2641, 201, 2493, + 2625, 868, 2475, + 2599, 1189, 2449, + 2565, 1424, 2411, + 2515, 1621, 2355, + 2437, 1796, 2269, + 2305, 1957, 2119, + 2035, 2111, 1784, + 0, 2257, 0, + 0, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2815, 0, 2661, + 2815, 0, 2661, + 2815, 0, 2659, + 2813, 0, 2659, + 2811, 0, 2657, + 2809, 0, 2655, + 2807, 0, 2651, + 2803, 0, 2647, + 2799, 0, 2643, + 2791, 0, 2635, + 2783, 0, 2625, + 2769, 0, 2611, + 2753, 921, 2591, + 2727, 1284, 2565, + 2693, 1535, 2527, + 2641, 1739, 2469, + 2563, 1918, 2379, + 2429, 2083, 2219, + 2153, 2237, 1847, + 0, 2387, 0, + 0, 2531, 0, + 0, 2671, 0, + 0, 2809, 0, + 0, 2947, 0, + 0, 3081, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2945, 0, 2785, + 2945, 0, 2785, + 2945, 0, 2783, + 2943, 0, 2783, + 2943, 0, 2781, + 2941, 0, 2779, + 2939, 0, 2777, + 2937, 0, 2775, + 2933, 0, 2771, + 2927, 0, 2765, + 2921, 0, 2757, + 2911, 0, 2747, + 2899, 0, 2733, + 2881, 984, 2713, + 2857, 1386, 2685, + 2821, 1650, 2645, + 2769, 1860, 2587, + 2689, 2043, 2493, + 2555, 2209, 2325, + 2273, 2367, 1919, + 0, 2515, 0, + 0, 2661, 0, + 0, 2801, 0, + 0, 2941, 0, + 0, 3077, 0, + 0, 3213, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3077, 0, 2911, + 3075, 0, 2909, + 3075, 0, 2909, + 3075, 0, 2909, + 3073, 0, 2907, + 3073, 0, 2907, + 3071, 0, 2905, + 3069, 0, 2903, + 3067, 0, 2899, + 3063, 0, 2895, + 3057, 0, 2889, + 3051, 0, 2881, + 3041, 0, 2871, + 3029, 0, 2857, + 3011, 1056, 2837, + 2987, 1495, 2809, + 2951, 1769, 2767, + 2899, 1984, 2707, + 2819, 2169, 2611, + 2683, 2339, 2439, + 2395, 2495, 2001, + 0, 2645, 0, + 0, 2791, 0, + 0, 2933, 0, + 0, 3071, 0, + 0, 3209, 0, + 0, 3345, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3207, 0, 3037, + 3207, 0, 3037, + 3207, 0, 3037, + 3207, 0, 3035, + 3205, 0, 3035, + 3205, 0, 3035, + 3203, 0, 3033, + 3201, 0, 3031, + 3199, 0, 3029, + 3197, 0, 3025, + 3193, 0, 3021, + 3189, 0, 3015, + 3181, 0, 3007, + 3171, 0, 2997, + 3159, 0, 2983, + 3141, 1138, 2963, + 3117, 1608, 2933, + 3081, 1891, 2893, + 3029, 2111, 2831, + 2947, 2297, 2733, + 2811, 2467, 2555, + 2521, 2625, 2091, + 0, 2777, 0, + 0, 2923, 0, + 0, 3065, 0, + 0, 3203, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3611, 0, + 0, 3747, 0, + 0, 3879, 0, + 0, 4013, 0, + 3339, 0, 3165, + 3339, 0, 3165, + 3337, 0, 3165, + 3337, 0, 3165, + 3337, 0, 3163, + 3337, 0, 3163, + 3335, 0, 3163, + 3335, 0, 3161, + 3333, 0, 3159, + 3331, 0, 3157, + 3327, 0, 3153, + 3325, 0, 3149, + 3319, 0, 3143, + 3313, 0, 3135, + 3303, 0, 3125, + 3289, 0, 3111, + 3273, 1228, 3089, + 3247, 1726, 3061, + 3211, 2015, 3019, + 3159, 2237, 2957, + 3077, 2427, 2857, + 2941, 2597, 2675, + 2649, 2757, 2189, + 0, 2907, 0, + 0, 3053, 0, + 0, 3195, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3743, 0, + 0, 3879, 0, + 0, 4013, 0, + 3469, 0, 3295, + 3469, 0, 3295, + 3469, 0, 3295, + 3469, 0, 3293, + 3469, 0, 3293, + 3469, 0, 3293, + 3467, 0, 3293, + 3467, 0, 3291, + 3465, 0, 3289, + 3465, 0, 3289, + 3461, 0, 3285, + 3459, 0, 3283, + 3455, 0, 3279, + 3451, 0, 3273, + 3443, 0, 3265, + 3435, 0, 3253, + 3421, 0, 3239, + 3403, 1326, 3219, + 3379, 1847, 3189, + 3343, 2141, 3147, + 3291, 2365, 3083, + 3209, 2557, 2983, + 3071, 2727, 2797, + 2777, 2887, 2295, + 0, 3039, 0, + 0, 3185, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3875, 0, + 0, 4011, 0, + 3601, 0, 3425, + 3601, 0, 3425, + 3601, 0, 3425, + 3601, 0, 3423, + 3601, 0, 3423, + 3601, 0, 3423, + 3599, 0, 3423, + 3599, 0, 3421, + 3599, 0, 3421, + 3597, 0, 3419, + 3595, 0, 3417, + 3593, 0, 3415, + 3591, 0, 3413, + 3587, 0, 3407, + 3581, 0, 3403, + 3575, 0, 3395, + 3565, 0, 3383, + 3553, 0, 3369, + 3535, 1431, 3347, + 3509, 1971, 3319, + 3473, 2269, 3275, + 3421, 2495, 3213, + 3339, 2687, 3109, + 3201, 2859, 2923, + 2905, 3019, 2405, + 0, 3171, 0, + 0, 3317, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4007, 0, + 3733, 0, 3555, + 3733, 0, 3555, + 3733, 0, 3555, + 3733, 0, 3555, + 3733, 0, 3555, + 3733, 0, 3555, + 3731, 0, 3553, + 3731, 0, 3553, + 3731, 0, 3553, + 3729, 0, 3551, + 3729, 0, 3551, + 3727, 0, 3549, + 3725, 0, 3545, + 3723, 0, 3543, + 3719, 0, 3539, + 3713, 0, 3533, + 3707, 0, 3525, + 3697, 0, 3513, + 3685, 0, 3499, + 3667, 1542, 3477, + 3641, 2097, 3449, + 3605, 2399, 3405, + 3553, 2625, 3341, + 3471, 2817, 3239, + 3331, 2991, 3049, + 3035, 3151, 2521, + 0, 3303, 0, + 0, 3449, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3865, 0, 3685, + 3863, 0, 3685, + 3863, 0, 3683, + 3863, 0, 3683, + 3861, 0, 3683, + 3861, 0, 3681, + 3859, 0, 3679, + 3857, 0, 3677, + 3855, 0, 3673, + 3851, 0, 3669, + 3845, 0, 3663, + 3839, 0, 3655, + 3829, 0, 3645, + 3815, 0, 3629, + 3797, 1658, 3609, + 3773, 2223, 3579, + 3737, 2527, 3535, + 3685, 2757, 3471, + 3603, 2949, 3369, + 3463, 3121, 3177, + 3165, 3281, 2639, + 0, 3433, 0, + 0, 3581, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3995, 0, 3817, + 3995, 0, 3815, + 3995, 0, 3815, + 3995, 0, 3815, + 3993, 0, 3813, + 3993, 0, 3811, + 3991, 0, 3811, + 3989, 0, 3807, + 3985, 0, 3805, + 3983, 0, 3801, + 3977, 0, 3795, + 3971, 0, 3787, + 3961, 0, 3775, + 3947, 0, 3761, + 3929, 1777, 3739, + 3905, 2353, 3709, + 3869, 2659, 3667, + 3815, 2887, 3603, + 3733, 3081, 3499, + 3595, 3253, 3307, + 3297, 3413, 2761, + 0, 3565, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3939, + 4095, 0, 3935, + 4095, 0, 3931, + 4095, 0, 3925, + 4095, 0, 3917, + 4093, 0, 3907, + 4079, 0, 3891, + 4061, 1899, 3871, + 4037, 2481, 3841, + 4001, 2789, 3797, + 3947, 3019, 3733, + 3865, 3211, 3629, + 3727, 3385, 3437, + 3429, 3545, 2887, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4067, + 4095, 0, 4063, + 4095, 0, 4057, + 4095, 0, 4049, + 4095, 0, 4039, + 4095, 0, 4023, + 4095, 2024, 4001, + 4095, 2611, 3973, + 4095, 2919, 3929, + 4079, 3149, 3865, + 3997, 3343, 3759, + 3857, 3517, 3567, + 3559, 3677, 3013, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2151, 4095, + 4095, 2743, 4095, + 4095, 3051, 4061, + 4095, 3281, 3995, + 4095, 3475, 3891, + 3989, 3649, 3699, + 3691, 3809, 3141, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2277, 4095, + 4095, 2873, 4095, + 4095, 3183, 4095, + 4095, 3413, 4095, + 4095, 3607, 4023, + 4095, 3781, 3829, + 3823, 3941, 3269, + 1256, 844, 1656, + 1236, 863, 1649, + 1208, 888, 1641, + 1167, 920, 1629, + 1106, 959, 1613, + 1010, 1006, 1590, + 837, 1063, 1558, + 399, 1129, 1511, + 0, 1204, 1440, + 0, 1289, 1323, + 0, 1382, 1096, + 0, 1483, 185, + 0, 1590, 0, + 0, 1702, 0, + 0, 1819, 0, + 0, 1940, 0, + 0, 2063, 0, + 0, 2189, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1280, 840, 1662, + 1261, 860, 1656, + 1234, 886, 1648, + 1196, 917, 1636, + 1139, 957, 1620, + 1050, 1004, 1598, + 896, 1061, 1566, + 539, 1127, 1520, + 0, 1203, 1451, + 0, 1288, 1337, + 0, 1381, 1119, + 0, 1482, 333, + 0, 1589, 0, + 0, 1702, 0, + 0, 1819, 0, + 0, 1939, 0, + 0, 2063, 0, + 0, 2187, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1310, 836, 1671, + 1293, 856, 1665, + 1268, 882, 1657, + 1233, 914, 1646, + 1180, 953, 1630, + 1100, 1001, 1608, + 964, 1058, 1578, + 676, 1125, 1533, + 0, 1201, 1465, + 0, 1286, 1355, + 0, 1380, 1148, + 0, 1481, 478, + 0, 1589, 0, + 0, 1701, 0, + 0, 1818, 0, + 0, 1939, 0, + 0, 2063, 0, + 0, 2187, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1348, 831, 1683, + 1332, 851, 1677, + 1309, 877, 1669, + 1277, 909, 1658, + 1230, 949, 1643, + 1159, 997, 1622, + 1041, 1055, 1592, + 813, 1122, 1549, + 0, 1199, 1483, + 0, 1284, 1378, + 0, 1378, 1184, + 0, 1480, 618, + 0, 1588, 0, + 0, 1701, 0, + 0, 1818, 0, + 0, 1938, 0, + 0, 2061, 0, + 0, 2187, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1394, 823, 1698, + 1380, 844, 1693, + 1359, 870, 1685, + 1331, 903, 1674, + 1289, 943, 1660, + 1227, 992, 1639, + 1128, 1050, 1611, + 948, 1118, 1569, + 474, 1195, 1507, + 0, 1282, 1408, + 0, 1376, 1229, + 0, 1478, 757, + 0, 1586, 0, + 0, 1699, 0, + 0, 1817, 0, + 0, 1938, 0, + 0, 2061, 0, + 0, 2187, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1449, 812, 1718, + 1437, 834, 1713, + 1419, 860, 1705, + 1393, 894, 1695, + 1358, 935, 1681, + 1305, 985, 1662, + 1222, 1044, 1634, + 1082, 1112, 1595, + 784, 1191, 1537, + 0, 1278, 1445, + 0, 1373, 1282, + 0, 1476, 894, + 0, 1584, 0, + 0, 1698, 0, + 0, 1816, 0, + 0, 1937, 0, + 0, 2061, 0, + 0, 2187, 0, + 0, 2313, 0, + 0, 2443, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1514, 798, 1743, + 1503, 820, 1738, + 1487, 847, 1731, + 1466, 882, 1721, + 1435, 924, 1708, + 1391, 975, 1690, + 1324, 1035, 1664, + 1216, 1105, 1628, + 1014, 1184, 1574, + 385, 1273, 1489, + 0, 1369, 1345, + 0, 1472, 1029, + 0, 1582, 0, + 0, 1696, 0, + 0, 1814, 0, + 0, 1936, 0, + 0, 2059, 0, + 0, 2185, 0, + 0, 2313, 0, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1588, 778, 1775, + 1579, 801, 1770, + 1566, 829, 1763, + 1548, 865, 1754, + 1522, 909, 1742, + 1486, 962, 1725, + 1433, 1023, 1702, + 1350, 1095, 1668, + 1208, 1176, 1619, + 903, 1266, 1543, + 0, 1363, 1417, + 0, 1468, 1164, + 0, 1578, 0, + 0, 1693, 0, + 0, 1812, 0, + 0, 1934, 0, + 0, 2059, 0, + 0, 2185, 0, + 0, 2313, 0, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1672, 750, 1814, + 1664, 774, 1809, + 1653, 804, 1803, + 1638, 842, 1795, + 1617, 888, 1784, + 1588, 943, 1768, + 1546, 1007, 1747, + 1483, 1081, 1717, + 1382, 1164, 1673, + 1197, 1256, 1606, + 693, 1356, 1499, + 0, 1462, 1298, + 0, 1573, 683, + 0, 1689, 0, + 0, 1809, 0, + 0, 1932, 0, + 0, 2057, 0, + 0, 2183, 0, + 0, 2311, 0, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1764, 709, 1861, + 1757, 735, 1857, + 1748, 768, 1852, + 1736, 809, 1844, + 1720, 858, 1834, + 1697, 917, 1821, + 1664, 985, 1801, + 1616, 1062, 1775, + 1542, 1149, 1736, + 1421, 1243, 1679, + 1181, 1345, 1589, + 0, 1454, 1432, + 0, 1567, 1066, + 0, 1685, 0, + 0, 1805, 0, + 0, 1929, 0, + 0, 2055, 0, + 0, 2181, 0, + 0, 2311, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1863, 648, 1918, + 1858, 678, 1914, + 1851, 715, 1909, + 1841, 761, 1903, + 1828, 815, 1894, + 1810, 879, 1882, + 1785, 953, 1865, + 1748, 1035, 1842, + 1695, 1126, 1809, + 1611, 1225, 1761, + 1469, 1331, 1687, + 1160, 1442, 1565, + 0, 1558, 1323, + 0, 1678, 55, + 0, 1800, 0, + 0, 1925, 0, + 0, 2051, 0, + 0, 2179, 0, + 0, 2309, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1969, 552, 1984, + 1965, 588, 1981, + 1960, 633, 1976, + 1952, 687, 1971, + 1942, 751, 1963, + 1928, 824, 1953, + 1908, 906, 1939, + 1881, 997, 1919, + 1841, 1095, 1891, + 1783, 1200, 1852, + 1690, 1311, 1792, + 1526, 1427, 1698, + 1129, 1546, 1531, + 0, 1669, 1120, + 0, 1793, 0, + 0, 1920, 0, + 0, 2047, 0, + 0, 2177, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2081, 379, 2059, + 2077, 431, 2057, + 2073, 494, 2053, + 2067, 565, 2049, + 2059, 647, 2042, + 2049, 737, 2033, + 2034, 834, 2022, + 2013, 939, 2005, + 1984, 1049, 1982, + 1942, 1164, 1950, + 1879, 1283, 1903, + 1777, 1405, 1831, + 1592, 1530, 1712, + 1085, 1656, 1480, + 0, 1784, 483, + 0, 1913, 0, + 0, 2042, 0, + 0, 2173, 0, + 0, 2303, 0, + 0, 2435, 0, + 0, 2565, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2197, 0, 2143, + 2195, 67, 2141, + 2191, 195, 2139, + 2187, 325, 2135, + 2181, 455, 2129, + 2173, 586, 2123, + 2161, 717, 2113, + 2145, 848, 2099, + 2125, 980, 2081, + 2093, 1111, 2055, + 2049, 1243, 2018, + 1982, 1375, 1963, + 1873, 1507, 1878, + 1668, 1639, 1730, + 1018, 1771, 1403, + 0, 1903, 0, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2317, 0, 2237, + 2315, 0, 2235, + 2313, 0, 2233, + 2309, 0, 2229, + 2305, 0, 2225, + 2299, 247, 2219, + 2289, 490, 2211, + 2279, 689, 2201, + 2261, 866, 2187, + 2239, 1029, 2167, + 2207, 1183, 2137, + 2161, 1331, 2095, + 2091, 1474, 2033, + 1975, 1615, 1934, + 1753, 1753, 1753, + 910, 1890, 1273, + 0, 2025, 0, + 0, 2159, 0, + 0, 2293, 0, + 0, 2427, 0, + 0, 2561, 0, + 0, 2693, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2439, 0, 2337, + 2439, 0, 2337, + 2437, 0, 2335, + 2433, 0, 2331, + 2431, 0, 2329, + 2425, 0, 2323, + 2419, 0, 2317, + 2411, 317, 2309, + 2399, 650, 2297, + 2381, 890, 2281, + 2359, 1088, 2259, + 2325, 1264, 2229, + 2279, 1427, 2183, + 2205, 1580, 2113, + 2085, 1728, 1999, + 1846, 1871, 1782, + 707, 2011, 1008, + 0, 2149, 0, + 0, 2287, 0, + 0, 2421, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2565, 0, 2445, + 2563, 0, 2443, + 2563, 0, 2443, + 2561, 0, 2441, + 2557, 0, 2437, + 2553, 0, 2433, + 2549, 0, 2429, + 2543, 0, 2423, + 2533, 0, 2413, + 2521, 591, 2401, + 2505, 919, 2385, + 2481, 1156, 2361, + 2447, 1354, 2327, + 2399, 1530, 2277, + 2323, 1692, 2201, + 2199, 1845, 2075, + 1947, 1993, 1818, + 74, 2135, 0, + 0, 2275, 0, + 0, 2415, 0, + 0, 2551, 0, + 0, 2687, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2691, 0, 2557, + 2691, 0, 2557, + 2689, 0, 2555, + 2687, 0, 2553, + 2685, 0, 2551, + 2683, 0, 2549, + 2679, 0, 2545, + 2675, 0, 2539, + 2669, 0, 2533, + 2659, 0, 2523, + 2647, 498, 2511, + 2629, 955, 2493, + 2605, 1234, 2467, + 2571, 1452, 2431, + 2521, 1639, 2379, + 2445, 1808, 2297, + 2315, 1966, 2159, + 2055, 2117, 1863, + 0, 2261, 0, + 0, 2403, 0, + 0, 2543, 0, + 0, 2681, 0, + 0, 2817, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2819, 0, 2673, + 2819, 0, 2673, + 2817, 0, 2673, + 2817, 0, 2671, + 2815, 0, 2669, + 2813, 0, 2667, + 2811, 0, 2665, + 2807, 0, 2661, + 2801, 0, 2655, + 2795, 0, 2649, + 2787, 0, 2639, + 2773, 333, 2625, + 2757, 1000, 2607, + 2731, 1321, 2581, + 2697, 1556, 2543, + 2647, 1753, 2487, + 2569, 1928, 2401, + 2437, 2089, 2251, + 2167, 2243, 1916, + 0, 2389, 0, + 0, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2949, 0, 2795, + 2947, 0, 2793, + 2947, 0, 2793, + 2947, 0, 2793, + 2945, 0, 2791, + 2943, 0, 2789, + 2941, 0, 2787, + 2939, 0, 2783, + 2935, 0, 2779, + 2931, 0, 2775, + 2923, 0, 2767, + 2915, 0, 2757, + 2901, 0, 2743, + 2885, 1053, 2725, + 2859, 1416, 2697, + 2825, 1667, 2659, + 2773, 1871, 2601, + 2695, 2051, 2511, + 2561, 2215, 2351, + 2285, 2369, 1979, + 0, 2519, 0, + 0, 2663, 0, + 0, 2803, 0, + 0, 2941, 0, + 0, 3079, 0, + 0, 3213, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3079, 0, 2917, + 3077, 0, 2917, + 3077, 0, 2917, + 3077, 0, 2915, + 3075, 0, 2915, + 3075, 0, 2913, + 3073, 0, 2911, + 3071, 0, 2909, + 3069, 0, 2907, + 3065, 0, 2903, + 3059, 0, 2897, + 3053, 0, 2889, + 3043, 0, 2879, + 3031, 0, 2865, + 3013, 1116, 2845, + 2989, 1518, 2817, + 2953, 1782, 2777, + 2901, 1992, 2719, + 2821, 2175, 2625, + 2687, 2341, 2459, + 2405, 2499, 2051, + 0, 2647, 0, + 0, 2793, 0, + 0, 2933, 0, + 0, 3073, 0, + 0, 3209, 0, + 0, 3345, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3209, 0, 3043, + 3209, 0, 3043, + 3209, 0, 3041, + 3207, 0, 3041, + 3207, 0, 3041, + 3207, 0, 3039, + 3205, 0, 3039, + 3203, 0, 3037, + 3201, 0, 3035, + 3199, 0, 3031, + 3195, 0, 3027, + 3189, 0, 3021, + 3183, 0, 3013, + 3173, 0, 3003, + 3161, 0, 2989, + 3143, 1188, 2969, + 3119, 1627, 2941, + 3083, 1901, 2901, + 3031, 2117, 2839, + 2951, 2301, 2743, + 2815, 2471, 2571, + 2527, 2627, 2133, + 0, 2777, 0, + 0, 2923, 0, + 0, 3065, 0, + 0, 3203, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3339, 0, 3169, + 3339, 0, 3169, + 3339, 0, 3169, + 3339, 0, 3169, + 3339, 0, 3169, + 3337, 0, 3167, + 3337, 0, 3167, + 3335, 0, 3165, + 3333, 0, 3163, + 3331, 0, 3161, + 3329, 0, 3157, + 3325, 0, 3153, + 3321, 0, 3147, + 3313, 0, 3141, + 3305, 0, 3129, + 3291, 0, 3115, + 3273, 1270, 3095, + 3249, 1740, 3067, + 3213, 2023, 3025, + 3161, 2243, 2963, + 3079, 2429, 2865, + 2943, 2599, 2687, + 2653, 2757, 2223, + 0, 2909, 0, + 0, 3055, 0, + 0, 3197, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3471, 0, 3297, + 3471, 0, 3297, + 3471, 0, 3297, + 3469, 0, 3297, + 3469, 0, 3297, + 3469, 0, 3297, + 3469, 0, 3295, + 3467, 0, 3295, + 3467, 0, 3293, + 3465, 0, 3291, + 3463, 0, 3289, + 3461, 0, 3285, + 3457, 0, 3281, + 3451, 0, 3275, + 3445, 0, 3267, + 3435, 0, 3257, + 3423, 0, 3243, + 3405, 1360, 3221, + 3379, 1858, 3193, + 3343, 2147, 3151, + 3291, 2369, 3089, + 3211, 2559, 2989, + 3073, 2729, 2807, + 2781, 2889, 2321, + 0, 3039, 0, + 0, 3185, 0, + 0, 3327, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3877, 0, + 0, 4011, 0, + 3601, 0, 3427, + 3601, 0, 3427, + 3601, 0, 3427, + 3601, 0, 3427, + 3601, 0, 3427, + 3601, 0, 3425, + 3601, 0, 3425, + 3599, 0, 3425, + 3599, 0, 3423, + 3597, 0, 3423, + 3597, 0, 3421, + 3595, 0, 3417, + 3591, 0, 3415, + 3587, 0, 3411, + 3583, 0, 3405, + 3575, 0, 3397, + 3567, 0, 3385, + 3553, 0, 3371, + 3535, 1458, 3351, + 3511, 1979, 3321, + 3475, 2273, 3279, + 3423, 2499, 3215, + 3341, 2689, 3115, + 3203, 2861, 2929, + 2909, 3019, 2427, + 0, 3171, 0, + 0, 3317, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4009, 0, + 3733, 0, 3557, + 3733, 0, 3557, + 3733, 0, 3557, + 3733, 0, 3557, + 3733, 0, 3557, + 3733, 0, 3555, + 3733, 0, 3555, + 3731, 0, 3555, + 3731, 0, 3555, + 3731, 0, 3553, + 3729, 0, 3551, + 3727, 0, 3551, + 3725, 0, 3547, + 3723, 0, 3545, + 3719, 0, 3541, + 3713, 0, 3535, + 3707, 0, 3527, + 3697, 0, 3515, + 3685, 0, 3501, + 3667, 1564, 3479, + 3641, 2103, 3451, + 3607, 2401, 3409, + 3553, 2627, 3345, + 3471, 2819, 3243, + 3333, 2991, 3055, + 3037, 3151, 2537, + 0, 3303, 0, + 0, 3449, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3685, + 3863, 0, 3685, + 3863, 0, 3685, + 3863, 0, 3683, + 3861, 0, 3683, + 3859, 0, 3681, + 3857, 0, 3677, + 3855, 0, 3675, + 3851, 0, 3671, + 3845, 0, 3665, + 3839, 0, 3657, + 3829, 0, 3645, + 3817, 0, 3631, + 3799, 1674, 3609, + 3773, 2229, 3581, + 3737, 2531, 3537, + 3685, 2757, 3473, + 3603, 2949, 3371, + 3463, 3123, 3181, + 3167, 3283, 2653, + 0, 3435, 0, + 0, 3581, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3997, 0, 3817, + 3995, 0, 3817, + 3995, 0, 3817, + 3995, 0, 3815, + 3993, 0, 3815, + 3993, 0, 3813, + 3991, 0, 3811, + 3989, 0, 3809, + 3987, 0, 3805, + 3983, 0, 3801, + 3977, 0, 3795, + 3971, 0, 3787, + 3961, 0, 3777, + 3949, 0, 3761, + 3931, 1790, 3741, + 3905, 2355, 3711, + 3869, 2661, 3669, + 3817, 2889, 3603, + 3735, 3081, 3501, + 3595, 3253, 3311, + 3299, 3413, 2771, + 0, 3567, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3939, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3927, + 4095, 0, 3919, + 4093, 0, 3907, + 4079, 0, 3893, + 4061, 1909, 3871, + 4037, 2485, 3841, + 4001, 2791, 3799, + 3949, 3019, 3735, + 3867, 3213, 3631, + 3727, 3385, 3439, + 3429, 3545, 2893, + 0, 3697, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4071, + 4095, 0, 4069, + 4095, 0, 4063, + 4095, 0, 4057, + 4095, 0, 4049, + 4095, 0, 4039, + 4095, 0, 4023, + 4095, 2031, 4003, + 4095, 2613, 3973, + 4095, 2921, 3929, + 4079, 3151, 3865, + 3997, 3343, 3761, + 3859, 3517, 3569, + 3561, 3677, 3019, + 0, 3829, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2155, 4095, + 4095, 2743, 4095, + 4095, 3053, 4061, + 4095, 3283, 3997, + 4095, 3475, 3893, + 3989, 3649, 3699, + 3691, 3809, 3145, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2283, 4095, + 4095, 2875, 4095, + 4095, 3183, 4095, + 4095, 3413, 4095, + 4095, 3607, 4023, + 4095, 3781, 3831, + 3823, 3941, 3273, + 1384, 963, 1787, + 1369, 978, 1782, + 1348, 998, 1776, + 1319, 1023, 1767, + 1276, 1054, 1755, + 1212, 1093, 1739, + 1109, 1140, 1716, + 920, 1196, 1684, + 388, 1262, 1636, + 0, 1338, 1564, + 0, 1422, 1444, + 0, 1515, 1210, + 0, 1616, 161, + 0, 1723, 0, + 0, 1835, 0, + 0, 1952, 0, + 0, 2071, 0, + 0, 2195, 0, + 0, 2321, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1402, 960, 1792, + 1388, 976, 1788, + 1368, 995, 1781, + 1340, 1020, 1773, + 1299, 1052, 1761, + 1238, 1091, 1745, + 1142, 1138, 1722, + 969, 1195, 1690, + 531, 1261, 1643, + 0, 1337, 1572, + 0, 1421, 1455, + 0, 1514, 1228, + 0, 1615, 317, + 0, 1722, 0, + 0, 1835, 0, + 0, 1951, 0, + 0, 2071, 0, + 0, 2195, 0, + 0, 2321, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1426, 957, 1799, + 1412, 973, 1795, + 1393, 992, 1788, + 1367, 1018, 1780, + 1328, 1049, 1768, + 1272, 1088, 1752, + 1183, 1136, 1730, + 1027, 1193, 1699, + 671, 1259, 1653, + 0, 1335, 1583, + 0, 1420, 1469, + 0, 1513, 1251, + 0, 1614, 465, + 0, 1722, 0, + 0, 1834, 0, + 0, 1951, 0, + 0, 2071, 0, + 0, 2195, 0, + 0, 2319, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1455, 953, 1808, + 1443, 968, 1804, + 1425, 988, 1797, + 1400, 1014, 1789, + 1365, 1046, 1778, + 1313, 1085, 1762, + 1232, 1133, 1740, + 1096, 1190, 1710, + 809, 1257, 1665, + 0, 1333, 1597, + 0, 1419, 1487, + 0, 1512, 1280, + 0, 1613, 610, + 0, 1721, 0, + 0, 1834, 0, + 0, 1951, 0, + 0, 2071, 0, + 0, 2195, 0, + 0, 2319, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1492, 947, 1820, + 1480, 963, 1815, + 1464, 983, 1809, + 1441, 1009, 1801, + 1409, 1041, 1790, + 1362, 1081, 1775, + 1291, 1129, 1754, + 1173, 1187, 1724, + 945, 1254, 1681, + 8, 1331, 1616, + 0, 1416, 1511, + 0, 1511, 1317, + 0, 1612, 750, + 0, 1720, 0, + 0, 1833, 0, + 0, 1950, 0, + 0, 2071, 0, + 0, 2195, 0, + 0, 2319, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1537, 939, 1835, + 1526, 955, 1831, + 1512, 976, 1825, + 1491, 1002, 1817, + 1463, 1034, 1806, + 1421, 1075, 1792, + 1359, 1124, 1771, + 1260, 1182, 1743, + 1080, 1250, 1701, + 606, 1327, 1639, + 0, 1414, 1540, + 0, 1508, 1361, + 0, 1610, 889, + 0, 1718, 0, + 0, 1832, 0, + 0, 1949, 0, + 0, 2069, 0, + 0, 2193, 0, + 0, 2319, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1591, 928, 1854, + 1582, 945, 1850, + 1569, 966, 1845, + 1551, 992, 1837, + 1526, 1026, 1827, + 1490, 1067, 1813, + 1437, 1117, 1794, + 1354, 1176, 1767, + 1215, 1245, 1727, + 916, 1323, 1669, + 0, 1410, 1577, + 0, 1505, 1414, + 0, 1608, 1026, + 0, 1716, 0, + 0, 1830, 0, + 0, 1948, 0, + 0, 2069, 0, + 0, 2193, 0, + 0, 2319, 0, + 0, 2445, 0, + 0, 2575, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1654, 913, 1879, + 1646, 930, 1875, + 1635, 952, 1870, + 1620, 979, 1863, + 1598, 1014, 1854, + 1568, 1056, 1840, + 1523, 1107, 1822, + 1457, 1167, 1796, + 1348, 1237, 1760, + 1146, 1317, 1706, + 517, 1405, 1621, + 0, 1501, 1477, + 0, 1604, 1161, + 0, 1714, 0, + 0, 1828, 0, + 0, 1946, 0, + 0, 2067, 0, + 0, 2191, 0, + 0, 2317, 0, + 0, 2445, 0, + 0, 2575, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1727, 892, 1910, + 1720, 910, 1907, + 1711, 933, 1902, + 1698, 962, 1895, + 1680, 997, 1886, + 1654, 1041, 1874, + 1618, 1093, 1857, + 1565, 1156, 1834, + 1482, 1227, 1800, + 1340, 1308, 1751, + 1035, 1398, 1675, + 0, 1495, 1549, + 0, 1600, 1296, + 0, 1710, 0, + 0, 1825, 0, + 0, 1944, 0, + 0, 2067, 0, + 0, 2191, 0, + 0, 2317, 0, + 0, 2445, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1810, 863, 1949, + 1804, 882, 1946, + 1796, 906, 1941, + 1785, 936, 1935, + 1770, 974, 1927, + 1750, 1020, 1916, + 1720, 1075, 1901, + 1678, 1139, 1879, + 1615, 1213, 1849, + 1514, 1297, 1805, + 1329, 1388, 1738, + 825, 1488, 1631, + 0, 1594, 1430, + 0, 1705, 815, + 0, 1822, 0, + 0, 1941, 0, + 0, 2065, 0, + 0, 2189, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1900, 820, 1996, + 1896, 841, 1993, + 1889, 868, 1989, + 1880, 900, 1984, + 1868, 941, 1976, + 1852, 990, 1966, + 1829, 1049, 1953, + 1796, 1117, 1934, + 1748, 1194, 1907, + 1674, 1281, 1868, + 1553, 1375, 1811, + 1314, 1477, 1721, + 121, 1586, 1564, + 0, 1699, 1198, + 0, 1817, 0, + 0, 1938, 0, + 0, 2061, 0, + 0, 2187, 0, + 0, 2315, 0, + 0, 2443, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1999, 757, 2053, + 1995, 780, 2049, + 1990, 810, 2046, + 1983, 848, 2041, + 1973, 893, 2035, + 1960, 947, 2026, + 1942, 1011, 2014, + 1917, 1084, 1998, + 1881, 1167, 1974, + 1827, 1258, 1941, + 1743, 1357, 1893, + 1601, 1463, 1819, + 1292, 1574, 1697, + 0, 1690, 1455, + 0, 1810, 187, + 0, 1932, 0, + 0, 2057, 0, + 0, 2183, 0, + 0, 2311, 0, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2105, 654, 2119, + 2101, 684, 2115, + 2097, 721, 2113, + 2091, 765, 2109, + 2085, 819, 2103, + 2075, 883, 2095, + 2059, 956, 2085, + 2040, 1038, 2071, + 2013, 1128, 2051, + 1974, 1227, 2024, + 1915, 1332, 1984, + 1822, 1443, 1924, + 1658, 1559, 1830, + 1261, 1678, 1663, + 0, 1801, 1252, + 0, 1926, 0, + 0, 2053, 0, + 0, 2179, 0, + 0, 2309, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2215, 467, 2193, + 2213, 511, 2191, + 2209, 563, 2189, + 2205, 626, 2185, + 2199, 698, 2181, + 2191, 779, 2175, + 2181, 869, 2165, + 2167, 966, 2153, + 2145, 1071, 2137, + 2117, 1181, 2115, + 2075, 1296, 2083, + 2011, 1415, 2035, + 1909, 1538, 1963, + 1724, 1662, 1844, + 1217, 1788, 1612, + 0, 1916, 615, + 0, 2045, 0, + 0, 2175, 0, + 0, 2305, 0, + 0, 2435, 0, + 0, 2567, 0, + 0, 2697, 0, + 0, 2829, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2331, 0, 2277, + 2329, 71, 2277, + 2327, 199, 2273, + 2323, 327, 2271, + 2319, 457, 2267, + 2313, 587, 2261, + 2305, 718, 2255, + 2293, 849, 2245, + 2277, 980, 2231, + 2257, 1112, 2213, + 2225, 1243, 2187, + 2181, 1375, 2151, + 2113, 1507, 2095, + 2005, 1639, 2010, + 1800, 1771, 1862, + 1150, 1903, 1535, + 0, 2035, 0, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2451, 0, 2371, + 2449, 0, 2369, + 2447, 0, 2367, + 2445, 0, 2365, + 2441, 0, 2361, + 2437, 40, 2357, + 2431, 379, 2351, + 2421, 622, 2345, + 2411, 822, 2333, + 2395, 999, 2319, + 2371, 1161, 2299, + 2339, 1315, 2269, + 2293, 1463, 2227, + 2223, 1606, 2165, + 2107, 1747, 2065, + 1885, 1885, 1885, + 1042, 2022, 1405, + 0, 2157, 0, + 0, 2291, 0, + 0, 2425, 0, + 0, 2559, 0, + 0, 2693, 0, + 0, 2825, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2573, 0, 2471, + 2571, 0, 2469, + 2571, 0, 2469, + 2569, 0, 2467, + 2565, 0, 2463, + 2563, 0, 2461, + 2557, 0, 2455, + 2551, 0, 2449, + 2543, 449, 2441, + 2531, 782, 2429, + 2513, 1022, 2413, + 2491, 1220, 2391, + 2459, 1396, 2361, + 2411, 1559, 2315, + 2337, 1712, 2245, + 2217, 1860, 2131, + 1979, 2003, 1914, + 839, 2143, 1140, + 0, 2281, 0, + 0, 2419, 0, + 0, 2553, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2697, 0, 2577, + 2697, 0, 2577, + 2695, 0, 2575, + 2695, 0, 2575, + 2693, 0, 2573, + 2689, 0, 2569, + 2687, 0, 2565, + 2681, 0, 2561, + 2675, 0, 2555, + 2665, 12, 2545, + 2653, 723, 2533, + 2637, 1051, 2517, + 2613, 1289, 2493, + 2579, 1486, 2459, + 2531, 1662, 2409, + 2455, 1824, 2333, + 2331, 1977, 2207, + 2079, 2125, 1951, + 206, 2267, 0, + 0, 2409, 0, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2825, 0, 2689, + 2823, 0, 2689, + 2823, 0, 2689, + 2821, 0, 2687, + 2821, 0, 2685, + 2819, 0, 2683, + 2815, 0, 2681, + 2811, 0, 2677, + 2807, 0, 2671, + 2801, 0, 2665, + 2791, 0, 2655, + 2779, 630, 2643, + 2761, 1087, 2625, + 2737, 1366, 2599, + 2703, 1584, 2563, + 2653, 1771, 2511, + 2577, 1940, 2429, + 2449, 2099, 2291, + 2187, 2249, 1995, + 0, 2395, 0, + 0, 2535, 0, + 0, 2675, 0, + 0, 2813, 0, + 0, 2949, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2953, 0, 2807, + 2951, 0, 2807, + 2951, 0, 2805, + 2951, 0, 2805, + 2949, 0, 2803, + 2947, 0, 2801, + 2945, 0, 2799, + 2943, 0, 2797, + 2939, 0, 2793, + 2935, 0, 2787, + 2927, 0, 2781, + 2919, 0, 2771, + 2905, 465, 2757, + 2889, 1132, 2739, + 2865, 1453, 2713, + 2829, 1689, 2675, + 2779, 1885, 2619, + 2701, 2059, 2533, + 2569, 2221, 2383, + 2299, 2375, 2049, + 0, 2521, 0, + 0, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3081, 0, 2927, + 3081, 0, 2927, + 3081, 0, 2925, + 3079, 0, 2925, + 3079, 0, 2925, + 3077, 0, 2923, + 3075, 0, 2921, + 3073, 0, 2919, + 3071, 0, 2917, + 3067, 0, 2913, + 3063, 0, 2907, + 3055, 0, 2899, + 3047, 0, 2889, + 3033, 66, 2875, + 3017, 1185, 2857, + 2991, 1548, 2829, + 2957, 1799, 2791, + 2905, 2003, 2733, + 2827, 2183, 2643, + 2693, 2347, 2483, + 2417, 2501, 2111, + 0, 2651, 0, + 0, 2795, 0, + 0, 2935, 0, + 0, 3073, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3211, 0, 3049, + 3211, 0, 3049, + 3211, 0, 3049, + 3209, 0, 3049, + 3209, 0, 3047, + 3209, 0, 3047, + 3207, 0, 3045, + 3205, 0, 3043, + 3203, 0, 3041, + 3201, 0, 3039, + 3197, 0, 3035, + 3191, 0, 3029, + 3185, 0, 3021, + 3175, 0, 3011, + 3163, 0, 2997, + 3145, 1248, 2977, + 3121, 1651, 2949, + 3085, 1914, 2909, + 3033, 2125, 2851, + 2955, 2307, 2757, + 2819, 2475, 2591, + 2537, 2631, 2183, + 0, 2779, 0, + 0, 2925, 0, + 0, 3065, 0, + 0, 3205, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3341, 0, 3175, + 3341, 0, 3175, + 3341, 0, 3175, + 3341, 0, 3173, + 3339, 0, 3173, + 3339, 0, 3173, + 3339, 0, 3171, + 3337, 0, 3171, + 3335, 0, 3169, + 3333, 0, 3167, + 3331, 0, 3163, + 3327, 0, 3159, + 3321, 0, 3153, + 3315, 0, 3145, + 3305, 0, 3135, + 3293, 0, 3121, + 3275, 1320, 3101, + 3251, 1759, 3073, + 3215, 2033, 3033, + 3163, 2249, 2971, + 3083, 2435, 2875, + 2947, 2603, 2703, + 2661, 2759, 2265, + 0, 2911, 0, + 0, 3055, 0, + 0, 3197, 0, + 0, 3337, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3471, 0, 3301, + 3471, 0, 3301, + 3471, 0, 3301, + 3471, 0, 3301, + 3471, 0, 3301, + 3471, 0, 3301, + 3469, 0, 3299, + 3469, 0, 3299, + 3467, 0, 3297, + 3467, 0, 3295, + 3463, 0, 3293, + 3461, 0, 3289, + 3457, 0, 3285, + 3453, 0, 3279, + 3445, 0, 3273, + 3437, 0, 3261, + 3423, 0, 3247, + 3405, 1402, 3227, + 3381, 1873, 3199, + 3345, 2155, 3157, + 3293, 2375, 3095, + 3213, 2563, 2997, + 3075, 2731, 2819, + 2785, 2891, 2355, + 0, 3041, 0, + 0, 3187, 0, + 0, 3329, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3877, 0, + 0, 4011, 0, + 3603, 0, 3429, + 3603, 0, 3429, + 3603, 0, 3429, + 3603, 0, 3429, + 3603, 0, 3429, + 3601, 0, 3429, + 3601, 0, 3429, + 3601, 0, 3427, + 3599, 0, 3427, + 3599, 0, 3425, + 3597, 0, 3423, + 3595, 0, 3421, + 3593, 0, 3417, + 3589, 0, 3413, + 3583, 0, 3407, + 3577, 0, 3399, + 3567, 0, 3389, + 3555, 0, 3375, + 3537, 1492, 3355, + 3511, 1990, 3325, + 3475, 2279, 3283, + 3423, 2501, 3221, + 3343, 2691, 3121, + 3205, 2861, 2939, + 2913, 3021, 2453, + 0, 3171, 0, + 0, 3317, 0, + 0, 3459, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4009, 0, + 3735, 0, 3559, + 3735, 0, 3559, + 3735, 0, 3559, + 3733, 0, 3559, + 3733, 0, 3559, + 3733, 0, 3559, + 3733, 0, 3557, + 3733, 0, 3557, + 3731, 0, 3557, + 3731, 0, 3555, + 3729, 0, 3555, + 3729, 0, 3553, + 3727, 0, 3551, + 3723, 0, 3547, + 3719, 0, 3543, + 3715, 0, 3537, + 3707, 0, 3529, + 3699, 0, 3517, + 3685, 0, 3503, + 3667, 1591, 3483, + 3643, 2111, 3453, + 3607, 2405, 3411, + 3555, 2631, 3347, + 3473, 2821, 3247, + 3335, 2993, 3063, + 3041, 3151, 2559, + 0, 3303, 0, + 0, 3449, 0, + 0, 3591, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3865, 0, 3689, + 3865, 0, 3689, + 3865, 0, 3689, + 3865, 0, 3689, + 3865, 0, 3689, + 3865, 0, 3689, + 3865, 0, 3687, + 3865, 0, 3687, + 3865, 0, 3687, + 3863, 0, 3687, + 3863, 0, 3685, + 3861, 0, 3683, + 3859, 0, 3683, + 3857, 0, 3679, + 3855, 0, 3677, + 3851, 0, 3673, + 3847, 0, 3667, + 3839, 0, 3659, + 3829, 0, 3647, + 3817, 0, 3633, + 3799, 1696, 3611, + 3773, 2235, 3583, + 3739, 2533, 3541, + 3685, 2759, 3477, + 3603, 2951, 3375, + 3465, 3123, 3187, + 3169, 3283, 2669, + 0, 3435, 0, + 0, 3581, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3819, + 3997, 0, 3817, + 3995, 0, 3817, + 3995, 0, 3817, + 3995, 0, 3815, + 3993, 0, 3815, + 3991, 0, 3813, + 3989, 0, 3811, + 3987, 0, 3807, + 3983, 0, 3803, + 3977, 0, 3797, + 3971, 0, 3789, + 3961, 0, 3777, + 3949, 0, 3763, + 3931, 1806, 3741, + 3905, 2361, 3713, + 3869, 2663, 3669, + 3817, 2889, 3605, + 3735, 3083, 3503, + 3595, 3255, 3315, + 3299, 3415, 2785, + 0, 3567, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3941, + 4095, 0, 3937, + 4095, 0, 3933, + 4095, 0, 3927, + 4095, 0, 3919, + 4093, 0, 3909, + 4081, 0, 3893, + 4063, 1922, 3873, + 4037, 2487, 3843, + 4001, 2793, 3801, + 3949, 3021, 3735, + 3867, 3213, 3633, + 3727, 3385, 3443, + 3431, 3547, 2903, + 0, 3699, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4059, + 4095, 0, 4051, + 4095, 0, 4039, + 4095, 0, 4025, + 4095, 2041, 4003, + 4095, 2617, 3973, + 4095, 2923, 3931, + 4081, 3151, 3867, + 3999, 3345, 3763, + 3859, 3517, 3571, + 3561, 3677, 3025, + 0, 3831, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2163, 4095, + 4095, 2745, 4095, + 4095, 3053, 4063, + 4095, 3283, 3997, + 4095, 3477, 3893, + 3991, 3649, 3701, + 3693, 3809, 3151, + 0, 3961, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2287, 4095, + 4095, 2875, 4095, + 4095, 3185, 4095, + 4095, 3415, 4095, + 4095, 3607, 4025, + 4095, 3781, 3831, + 3823, 3941, 3277, + 1513, 1085, 1919, + 1502, 1096, 1915, + 1486, 1112, 1911, + 1465, 1131, 1904, + 1434, 1156, 1895, + 1390, 1187, 1883, + 1323, 1226, 1867, + 1214, 1273, 1844, + 1011, 1329, 1811, + 373, 1395, 1763, + 0, 1470, 1689, + 0, 1555, 1568, + 0, 1648, 1328, + 0, 1748, 128, + 0, 1855, 0, + 0, 1967, 0, + 0, 2085, 0, + 0, 2205, 0, + 0, 2327, 0, + 0, 2453, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1527, 1083, 1923, + 1516, 1095, 1919, + 1501, 1110, 1915, + 1480, 1129, 1908, + 1451, 1154, 1899, + 1408, 1186, 1888, + 1344, 1225, 1871, + 1241, 1272, 1848, + 1052, 1328, 1816, + 520, 1394, 1768, + 0, 1470, 1696, + 0, 1554, 1576, + 0, 1647, 1342, + 0, 1748, 294, + 0, 1855, 0, + 0, 1967, 0, + 0, 2083, 0, + 0, 2205, 0, + 0, 2327, 0, + 0, 2453, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1545, 1080, 1928, + 1534, 1092, 1924, + 1520, 1108, 1920, + 1500, 1127, 1913, + 1472, 1152, 1905, + 1431, 1184, 1893, + 1370, 1223, 1877, + 1274, 1270, 1854, + 1101, 1327, 1822, + 663, 1393, 1775, + 0, 1469, 1704, + 0, 1553, 1587, + 0, 1647, 1360, + 0, 1747, 449, + 0, 1854, 0, + 0, 1967, 0, + 0, 2083, 0, + 0, 2203, 0, + 0, 2327, 0, + 0, 2453, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1568, 1077, 1935, + 1558, 1089, 1931, + 1544, 1104, 1927, + 1525, 1124, 1920, + 1499, 1150, 1912, + 1460, 1181, 1900, + 1404, 1221, 1884, + 1315, 1268, 1862, + 1160, 1325, 1831, + 803, 1391, 1785, + 0, 1467, 1715, + 0, 1552, 1601, + 0, 1646, 1383, + 0, 1746, 597, + 0, 1854, 0, + 0, 1966, 0, + 0, 2083, 0, + 0, 2203, 0, + 0, 2327, 0, + 0, 2453, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1597, 1073, 1944, + 1588, 1085, 1940, + 1575, 1100, 1936, + 1557, 1120, 1930, + 1532, 1146, 1921, + 1497, 1178, 1910, + 1445, 1217, 1894, + 1364, 1265, 1873, + 1228, 1322, 1842, + 941, 1389, 1797, + 0, 1465, 1729, + 0, 1551, 1619, + 0, 1644, 1412, + 0, 1745, 742, + 0, 1853, 0, + 0, 1966, 0, + 0, 2083, 0, + 0, 2203, 0, + 0, 2327, 0, + 0, 2451, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1633, 1067, 1955, + 1624, 1079, 1952, + 1613, 1095, 1947, + 1596, 1115, 1942, + 1574, 1141, 1933, + 1541, 1173, 1922, + 1494, 1213, 1907, + 1423, 1261, 1886, + 1305, 1319, 1856, + 1077, 1386, 1813, + 140, 1463, 1748, + 0, 1549, 1643, + 0, 1643, 1449, + 0, 1744, 883, + 0, 1852, 0, + 0, 1965, 0, + 0, 2083, 0, + 0, 2203, 0, + 0, 2327, 0, + 0, 2451, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1677, 1058, 1970, + 1669, 1071, 1967, + 1659, 1087, 1963, + 1644, 1108, 1957, + 1624, 1134, 1949, + 1595, 1167, 1939, + 1553, 1207, 1924, + 1491, 1256, 1904, + 1392, 1314, 1875, + 1212, 1382, 1833, + 738, 1459, 1771, + 0, 1546, 1672, + 0, 1640, 1493, + 0, 1742, 1021, + 0, 1850, 0, + 0, 1964, 0, + 0, 2081, 0, + 0, 2203, 0, + 0, 2325, 0, + 0, 2451, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1730, 1047, 1990, + 1723, 1060, 1987, + 1714, 1076, 1982, + 1701, 1098, 1977, + 1683, 1124, 1969, + 1658, 1158, 1959, + 1622, 1199, 1945, + 1569, 1249, 1926, + 1487, 1308, 1899, + 1347, 1377, 1859, + 1048, 1455, 1801, + 0, 1542, 1709, + 0, 1637, 1546, + 0, 1740, 1158, + 0, 1848, 0, + 0, 1962, 0, + 0, 2081, 0, + 0, 2201, 0, + 0, 2325, 0, + 0, 2451, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1793, 1032, 2014, + 1787, 1045, 2011, + 1778, 1062, 2008, + 1767, 1084, 2002, + 1752, 1111, 1995, + 1730, 1146, 1986, + 1700, 1188, 1972, + 1655, 1239, 1954, + 1589, 1299, 1929, + 1481, 1369, 1892, + 1278, 1449, 1838, + 650, 1537, 1754, + 0, 1633, 1609, + 0, 1736, 1294, + 0, 1846, 0, + 0, 1960, 0, + 0, 2079, 0, + 0, 2201, 0, + 0, 2325, 0, + 0, 2451, 0, + 0, 2577, 0, + 0, 2707, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1865, 1011, 2045, + 1860, 1024, 2043, + 1853, 1042, 2039, + 1843, 1065, 2034, + 1830, 1093, 2028, + 1812, 1129, 2019, + 1787, 1173, 2006, + 1750, 1226, 1989, + 1697, 1288, 1966, + 1614, 1359, 1932, + 1472, 1440, 1883, + 1167, 1530, 1807, + 0, 1628, 1681, + 0, 1732, 1428, + 0, 1842, 0, + 0, 1957, 0, + 0, 2077, 0, + 0, 2199, 0, + 0, 2323, 0, + 0, 2449, 0, + 0, 2577, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 1946, 980, 2083, + 1942, 995, 2081, + 1936, 1014, 2077, + 1928, 1038, 2073, + 1917, 1068, 2067, + 1902, 1106, 2059, + 1882, 1152, 2049, + 1853, 1207, 2033, + 1810, 1271, 2011, + 1747, 1345, 1981, + 1646, 1429, 1937, + 1461, 1520, 1870, + 957, 1620, 1763, + 0, 1726, 1562, + 0, 1838, 947, + 0, 1954, 0, + 0, 2073, 0, + 0, 2197, 0, + 0, 2321, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2036, 936, 2131, + 2033, 953, 2129, + 2028, 973, 2125, + 2021, 1000, 2121, + 2013, 1032, 2115, + 2001, 1073, 2109, + 1984, 1122, 2099, + 1961, 1181, 2085, + 1928, 1249, 2065, + 1880, 1326, 2039, + 1807, 1413, 2000, + 1685, 1508, 1943, + 1446, 1610, 1853, + 253, 1718, 1696, + 0, 1831, 1330, + 0, 1949, 0, + 0, 2069, 0, + 0, 2193, 0, + 0, 2319, 0, + 0, 2447, 0, + 0, 2575, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2135, 870, 2187, + 2131, 889, 2185, + 2127, 913, 2181, + 2123, 942, 2179, + 2115, 980, 2173, + 2105, 1025, 2167, + 2093, 1079, 2159, + 2075, 1143, 2147, + 2049, 1217, 2129, + 2013, 1299, 2107, + 1959, 1391, 2073, + 1876, 1490, 2025, + 1733, 1595, 1951, + 1424, 1707, 1829, + 0, 1822, 1587, + 0, 1942, 319, + 0, 2065, 0, + 0, 2189, 0, + 0, 2317, 0, + 0, 2443, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2239, 763, 2251, + 2237, 786, 2251, + 2233, 816, 2247, + 2229, 853, 2245, + 2223, 898, 2241, + 2217, 952, 2235, + 2207, 1015, 2227, + 2193, 1088, 2217, + 2173, 1170, 2203, + 2145, 1261, 2183, + 2105, 1359, 2155, + 2047, 1464, 2115, + 1954, 1575, 2057, + 1790, 1691, 1962, + 1394, 1811, 1795, + 0, 1933, 1384, + 0, 2057, 0, + 0, 2185, 0, + 0, 2313, 0, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2349, 563, 2327, + 2347, 599, 2325, + 2345, 643, 2323, + 2341, 696, 2321, + 2337, 758, 2317, + 2331, 830, 2313, + 2323, 911, 2307, + 2313, 1001, 2297, + 2299, 1098, 2285, + 2277, 1203, 2269, + 2249, 1313, 2247, + 2207, 1429, 2215, + 2143, 1548, 2167, + 2041, 1670, 2095, + 1856, 1794, 1976, + 1349, 1920, 1745, + 0, 2049, 747, + 0, 2177, 0, + 0, 2307, 0, + 0, 2437, 0, + 0, 2567, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2465, 0, 2411, + 2463, 77, 2409, + 2461, 203, 2409, + 2459, 331, 2407, + 2455, 460, 2403, + 2451, 589, 2399, + 2445, 719, 2393, + 2437, 850, 2387, + 2425, 981, 2377, + 2409, 1112, 2363, + 2389, 1244, 2345, + 2357, 1376, 2319, + 2313, 1507, 2283, + 2245, 1639, 2227, + 2137, 1771, 2141, + 1932, 1903, 1994, + 1282, 2035, 1667, + 0, 2167, 0, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2583, 0, 2503, + 2583, 0, 2503, + 2581, 0, 2501, + 2579, 0, 2499, + 2577, 0, 2497, + 2573, 0, 2495, + 2569, 172, 2489, + 2563, 511, 2483, + 2553, 754, 2477, + 2543, 954, 2465, + 2527, 1130, 2451, + 2503, 1293, 2431, + 2471, 1447, 2401, + 2425, 1595, 2359, + 2355, 1739, 2297, + 2239, 1879, 2197, + 2017, 2017, 2017, + 1174, 2153, 1537, + 0, 2289, 0, + 0, 2425, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2825, 0, + 0, 2957, 0, + 0, 3091, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2705, 0, 2603, + 2705, 0, 2603, + 2703, 0, 2601, + 2703, 0, 2601, + 2701, 0, 2599, + 2697, 0, 2597, + 2695, 0, 2593, + 2689, 0, 2589, + 2683, 0, 2581, + 2675, 581, 2573, + 2663, 914, 2561, + 2647, 1154, 2545, + 2623, 1352, 2523, + 2591, 1528, 2493, + 2543, 1691, 2447, + 2469, 1845, 2377, + 2349, 1992, 2263, + 2111, 2135, 2046, + 972, 2275, 1272, + 0, 2413, 0, + 0, 2551, 0, + 0, 2685, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2831, 0, 2711, + 2829, 0, 2709, + 2829, 0, 2709, + 2827, 0, 2707, + 2827, 0, 2707, + 2825, 0, 2705, + 2821, 0, 2701, + 2819, 0, 2699, + 2813, 0, 2693, + 2807, 0, 2687, + 2797, 144, 2677, + 2785, 855, 2665, + 2769, 1183, 2649, + 2745, 1421, 2625, + 2711, 1618, 2591, + 2663, 1794, 2541, + 2587, 1956, 2465, + 2463, 2109, 2339, + 2211, 2257, 2083, + 338, 2401, 0, + 0, 2541, 0, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 2957, 0, 2823, + 2957, 0, 2821, + 2955, 0, 2821, + 2955, 0, 2821, + 2953, 0, 2819, + 2953, 0, 2817, + 2951, 0, 2815, + 2947, 0, 2813, + 2943, 0, 2809, + 2939, 0, 2803, + 2933, 0, 2797, + 2923, 0, 2787, + 2911, 762, 2775, + 2893, 1219, 2757, + 2869, 1499, 2731, + 2835, 1716, 2697, + 2785, 1903, 2643, + 2709, 2073, 2561, + 2581, 2231, 2423, + 2319, 2381, 2127, + 0, 2527, 0, + 0, 2667, 0, + 0, 2807, 0, + 0, 2945, 0, + 0, 3081, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3085, 0, 2939, + 3085, 0, 2939, + 3083, 0, 2939, + 3083, 0, 2937, + 3083, 0, 2937, + 3081, 0, 2935, + 3079, 0, 2933, + 3077, 0, 2931, + 3075, 0, 2929, + 3071, 0, 2925, + 3067, 0, 2919, + 3059, 0, 2913, + 3051, 0, 2903, + 3037, 597, 2889, + 3021, 1264, 2871, + 2997, 1585, 2845, + 2961, 1821, 2807, + 2911, 2017, 2751, + 2833, 2191, 2665, + 2701, 2353, 2515, + 2431, 2507, 2181, + 0, 2653, 0, + 0, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3213, 0, 3059, + 3213, 0, 3059, + 3213, 0, 3059, + 3213, 0, 3057, + 3211, 0, 3057, + 3211, 0, 3057, + 3209, 0, 3055, + 3209, 0, 3053, + 3207, 0, 3051, + 3203, 0, 3049, + 3199, 0, 3045, + 3195, 0, 3039, + 3187, 0, 3031, + 3179, 0, 3021, + 3165, 198, 3007, + 3149, 1317, 2989, + 3125, 1680, 2961, + 3089, 1931, 2923, + 3037, 2135, 2865, + 2959, 2315, 2775, + 2825, 2479, 2615, + 2549, 2635, 2243, + 0, 2783, 0, + 0, 2927, 0, + 0, 3067, 0, + 0, 3205, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3343, 0, 3183, + 3343, 0, 3181, + 3343, 0, 3181, + 3343, 0, 3181, + 3341, 0, 3181, + 3341, 0, 3179, + 3341, 0, 3179, + 3339, 0, 3177, + 3337, 0, 3177, + 3335, 0, 3173, + 3333, 0, 3171, + 3329, 0, 3167, + 3323, 0, 3161, + 3317, 0, 3153, + 3307, 0, 3143, + 3295, 0, 3129, + 3277, 1380, 3109, + 3253, 1783, 3081, + 3217, 2046, 3041, + 3167, 2257, 2983, + 3087, 2439, 2889, + 2951, 2607, 2723, + 2669, 2763, 2315, + 0, 2913, 0, + 0, 3057, 0, + 0, 3197, 0, + 0, 3337, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3473, 0, 3307, + 3473, 0, 3307, + 3473, 0, 3307, + 3473, 0, 3307, + 3473, 0, 3307, + 3471, 0, 3305, + 3471, 0, 3305, + 3471, 0, 3303, + 3469, 0, 3303, + 3467, 0, 3301, + 3465, 0, 3299, + 3463, 0, 3295, + 3459, 0, 3291, + 3453, 0, 3285, + 3447, 0, 3277, + 3437, 0, 3267, + 3425, 0, 3253, + 3407, 1452, 3233, + 3383, 1891, 3205, + 3347, 2165, 3165, + 3295, 2381, 3103, + 3215, 2567, 3007, + 3079, 2735, 2835, + 2793, 2893, 2397, + 0, 3043, 0, + 0, 3187, 0, + 0, 3329, 0, + 0, 3469, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3877, 0, + 0, 4011, 0, + 3603, 0, 3435, + 3603, 0, 3433, + 3603, 0, 3433, + 3603, 0, 3433, + 3603, 0, 3433, + 3603, 0, 3433, + 3603, 0, 3433, + 3601, 0, 3431, + 3601, 0, 3431, + 3599, 0, 3429, + 3599, 0, 3427, + 3597, 0, 3425, + 3593, 0, 3423, + 3589, 0, 3417, + 3585, 0, 3413, + 3577, 0, 3405, + 3569, 0, 3393, + 3555, 0, 3379, + 3537, 1534, 3359, + 3513, 2005, 3331, + 3477, 2287, 3289, + 3425, 2507, 3227, + 3345, 2695, 3129, + 3207, 2863, 2951, + 2917, 3023, 2487, + 0, 3173, 0, + 0, 3319, 0, + 0, 3461, 0, + 0, 3599, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4009, 0, + 3735, 0, 3563, + 3735, 0, 3563, + 3735, 0, 3561, + 3735, 0, 3561, + 3735, 0, 3561, + 3735, 0, 3561, + 3733, 0, 3561, + 3733, 0, 3561, + 3733, 0, 3559, + 3731, 0, 3559, + 3731, 0, 3557, + 3729, 0, 3555, + 3727, 0, 3553, + 3725, 0, 3549, + 3721, 0, 3545, + 3715, 0, 3539, + 3709, 0, 3533, + 3699, 0, 3521, + 3687, 0, 3507, + 3669, 1625, 3487, + 3643, 2123, 3457, + 3607, 2411, 3415, + 3555, 2633, 3353, + 3475, 2823, 3253, + 3337, 2993, 3071, + 3045, 3153, 2585, + 0, 3303, 0, + 0, 3449, 0, + 0, 3593, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3867, 0, 3691, + 3867, 0, 3691, + 3867, 0, 3691, + 3867, 0, 3691, + 3865, 0, 3691, + 3865, 0, 3691, + 3865, 0, 3691, + 3865, 0, 3689, + 3865, 0, 3689, + 3865, 0, 3689, + 3863, 0, 3687, + 3863, 0, 3687, + 3861, 0, 3685, + 3859, 0, 3683, + 3855, 0, 3679, + 3851, 0, 3675, + 3847, 0, 3669, + 3839, 0, 3661, + 3831, 0, 3651, + 3817, 0, 3635, + 3799, 1723, 3615, + 3775, 2243, 3585, + 3739, 2539, 3543, + 3687, 2763, 3481, + 3605, 2953, 3379, + 3467, 3125, 3195, + 3173, 3283, 2691, + 0, 3435, 0, + 0, 3581, 0, + 0, 3723, 0, + 0, 3863, 0, + 0, 4001, 0, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3819, + 3997, 0, 3819, + 3995, 0, 3819, + 3995, 0, 3817, + 3993, 0, 3817, + 3991, 0, 3815, + 3989, 0, 3811, + 3987, 0, 3809, + 3983, 0, 3805, + 3979, 0, 3799, + 3971, 0, 3791, + 3961, 0, 3779, + 3949, 0, 3765, + 3931, 1828, 3745, + 3907, 2367, 3715, + 3871, 2665, 3673, + 3817, 2891, 3609, + 3735, 3083, 3507, + 3597, 3255, 3319, + 3301, 3415, 2801, + 0, 3567, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3943, + 4095, 0, 3939, + 4095, 0, 3935, + 4095, 0, 3929, + 4095, 0, 3921, + 4093, 0, 3909, + 4081, 0, 3895, + 4063, 1938, 3875, + 4037, 2493, 3845, + 4001, 2795, 3801, + 3949, 3021, 3737, + 3867, 3215, 3635, + 3729, 3387, 3447, + 3431, 3547, 2917, + 0, 3699, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4073, + 4095, 0, 4069, + 4095, 0, 4065, + 4095, 0, 4059, + 4095, 0, 4051, + 4095, 0, 4041, + 4095, 0, 4025, + 4095, 2053, 4005, + 4095, 2621, 3975, + 4095, 2925, 3933, + 4081, 3153, 3867, + 3999, 3345, 3765, + 3859, 3517, 3575, + 3563, 3679, 3035, + 0, 3831, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2173, 4095, + 4095, 2749, 4095, + 4095, 3055, 4063, + 4095, 3283, 3999, + 4095, 3477, 3895, + 3991, 3649, 3703, + 3693, 3809, 3157, + 0, 3963, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2295, 4095, + 4095, 2877, 4095, + 4095, 3185, 4095, + 4095, 3415, 4095, + 4095, 3609, 4025, + 4095, 3781, 3833, + 3825, 3941, 3283, + 1643, 1209, 2051, + 1635, 1218, 2049, + 1623, 1230, 2045, + 1607, 1245, 2040, + 1585, 1264, 2033, + 1554, 1289, 2025, + 1508, 1321, 2012, + 1439, 1359, 1996, + 1326, 1406, 1972, + 1110, 1462, 1939, + 353, 1528, 1891, + 0, 1603, 1817, + 0, 1688, 1694, + 0, 1780, 1449, + 0, 1881, 80, + 0, 1987, 0, + 0, 2099, 0, + 0, 2217, 0, + 0, 2337, 0, + 0, 2459, 0, + 0, 2585, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1653, 1208, 2053, + 1645, 1217, 2051, + 1634, 1229, 2047, + 1618, 1244, 2043, + 1597, 1263, 2036, + 1566, 1288, 2028, + 1522, 1319, 2016, + 1455, 1358, 1999, + 1346, 1405, 1976, + 1143, 1462, 1943, + 505, 1527, 1895, + 0, 1603, 1821, + 0, 1687, 1700, + 0, 1780, 1460, + 0, 1880, 260, + 0, 1987, 0, + 0, 2099, 0, + 0, 2217, 0, + 0, 2337, 0, + 0, 2459, 0, + 0, 2585, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1667, 1206, 2057, + 1659, 1215, 2055, + 1648, 1227, 2051, + 1633, 1242, 2047, + 1612, 1262, 2040, + 1583, 1287, 2032, + 1540, 1318, 2020, + 1476, 1357, 2003, + 1373, 1404, 1980, + 1184, 1461, 1948, + 652, 1526, 1900, + 0, 1602, 1828, + 0, 1686, 1708, + 0, 1779, 1474, + 0, 1880, 426, + 0, 1987, 0, + 0, 2099, 0, + 0, 2215, 0, + 0, 2337, 0, + 0, 2459, 0, + 0, 2585, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1685, 1204, 2063, + 1677, 1213, 2061, + 1667, 1224, 2057, + 1652, 1240, 2051, + 1632, 1259, 2046, + 1604, 1284, 2037, + 1563, 1316, 2025, + 1503, 1355, 2009, + 1406, 1403, 1986, + 1233, 1459, 1954, + 795, 1525, 1907, + 0, 1601, 1836, + 0, 1686, 1719, + 0, 1779, 1492, + 0, 1879, 581, + 0, 1986, 0, + 0, 2099, 0, + 0, 2215, 0, + 0, 2337, 0, + 0, 2459, 0, + 0, 2585, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1707, 1200, 2069, + 1700, 1209, 2067, + 1690, 1221, 2063, + 1676, 1237, 2059, + 1657, 1256, 2053, + 1631, 1282, 2044, + 1593, 1313, 2033, + 1536, 1353, 2017, + 1447, 1400, 1994, + 1292, 1457, 1963, + 935, 1524, 1917, + 0, 1599, 1847, + 0, 1684, 1733, + 0, 1778, 1515, + 0, 1879, 730, + 0, 1986, 0, + 0, 2099, 0, + 0, 2215, 0, + 0, 2335, 0, + 0, 2459, 0, + 0, 2585, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1736, 1196, 2079, + 1729, 1205, 2075, + 1720, 1217, 2073, + 1707, 1232, 2067, + 1689, 1252, 2061, + 1664, 1278, 2053, + 1629, 1310, 2042, + 1577, 1349, 2026, + 1496, 1397, 2005, + 1360, 1455, 1974, + 1073, 1521, 1929, + 0, 1598, 1861, + 0, 1683, 1752, + 0, 1776, 1545, + 0, 1878, 874, + 0, 1985, 0, + 0, 2097, 0, + 0, 2215, 0, + 0, 2335, 0, + 0, 2459, 0, + 0, 2585, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1771, 1189, 2089, + 1765, 1199, 2087, + 1756, 1211, 2083, + 1745, 1227, 2079, + 1728, 1247, 2073, + 1706, 1273, 2065, + 1674, 1305, 2055, + 1627, 1345, 2039, + 1555, 1393, 2018, + 1437, 1451, 1988, + 1209, 1518, 1945, + 272, 1595, 1880, + 0, 1681, 1775, + 0, 1775, 1581, + 0, 1876, 1015, + 0, 1984, 0, + 0, 2097, 0, + 0, 2215, 0, + 0, 2335, 0, + 0, 2459, 0, + 0, 2583, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1815, 1181, 2105, + 1809, 1191, 2103, + 1801, 1203, 2099, + 1791, 1219, 2095, + 1776, 1240, 2089, + 1756, 1266, 2081, + 1727, 1299, 2071, + 1685, 1339, 2057, + 1623, 1388, 2036, + 1524, 1446, 2007, + 1344, 1514, 1966, + 870, 1592, 1903, + 0, 1678, 1804, + 0, 1772, 1625, + 0, 1874, 1153, + 0, 1982, 0, + 0, 2095, 0, + 0, 2213, 0, + 0, 2335, 0, + 0, 2457, 0, + 0, 2583, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1867, 1170, 2123, + 1862, 1179, 2121, + 1855, 1192, 2119, + 1846, 1209, 2115, + 1833, 1230, 2109, + 1815, 1256, 2101, + 1790, 1290, 2091, + 1754, 1331, 2077, + 1701, 1381, 2059, + 1619, 1440, 2031, + 1479, 1509, 1992, + 1180, 1587, 1933, + 0, 1674, 1841, + 0, 1769, 1678, + 0, 1872, 1290, + 0, 1981, 0, + 0, 2095, 0, + 0, 2213, 0, + 0, 2333, 0, + 0, 2457, 0, + 0, 2583, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 1929, 1154, 2149, + 1925, 1164, 2147, + 1919, 1177, 2143, + 1910, 1194, 2139, + 1899, 1216, 2135, + 1884, 1243, 2127, + 1862, 1278, 2117, + 1832, 1320, 2105, + 1788, 1371, 2087, + 1721, 1432, 2061, + 1613, 1501, 2024, + 1410, 1581, 1970, + 782, 1669, 1886, + 0, 1765, 1741, + 0, 1869, 1426, + 0, 1978, 0, + 0, 2093, 0, + 0, 2211, 0, + 0, 2333, 0, + 0, 2457, 0, + 0, 2583, 0, + 0, 2709, 0, + 0, 2839, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2001, 1132, 2179, + 1997, 1143, 2177, + 1992, 1156, 2175, + 1985, 1174, 2171, + 1975, 1197, 2167, + 1962, 1226, 2159, + 1944, 1261, 2151, + 1919, 1305, 2139, + 1883, 1358, 2121, + 1829, 1420, 2097, + 1746, 1491, 2065, + 1604, 1572, 2015, + 1299, 1662, 1939, + 0, 1760, 1813, + 0, 1864, 1560, + 0, 1974, 0, + 0, 2089, 0, + 0, 2209, 0, + 0, 2331, 0, + 0, 2455, 0, + 0, 2581, 0, + 0, 2709, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2081, 1101, 2217, + 2079, 1112, 2215, + 2073, 1127, 2213, + 2069, 1146, 2211, + 2061, 1170, 2205, + 2049, 1200, 2199, + 2034, 1238, 2191, + 2014, 1284, 2181, + 1985, 1339, 2165, + 1943, 1404, 2143, + 1879, 1478, 2113, + 1778, 1561, 2069, + 1593, 1653, 2003, + 1089, 1752, 1895, + 0, 1858, 1695, + 0, 1970, 1079, + 0, 2085, 0, + 0, 2205, 0, + 0, 2329, 0, + 0, 2453, 0, + 0, 2579, 0, + 0, 2709, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2171, 1056, 2265, + 2169, 1068, 2263, + 2165, 1084, 2261, + 2159, 1105, 2257, + 2153, 1132, 2253, + 2145, 1164, 2249, + 2133, 1205, 2241, + 2117, 1254, 2231, + 2093, 1313, 2217, + 2061, 1381, 2197, + 2012, 1458, 2171, + 1939, 1545, 2133, + 1817, 1640, 2075, + 1578, 1742, 1985, + 385, 1850, 1828, + 0, 1963, 1462, + 0, 2081, 0, + 0, 2201, 0, + 0, 2325, 0, + 0, 2451, 0, + 0, 2579, 0, + 0, 2707, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2269, 988, 2321, + 2267, 1002, 2319, + 2263, 1021, 2317, + 2259, 1044, 2315, + 2255, 1074, 2311, + 2247, 1112, 2305, + 2237, 1157, 2299, + 2225, 1211, 2291, + 2207, 1275, 2279, + 2181, 1349, 2261, + 2145, 1431, 2239, + 2091, 1523, 2205, + 2008, 1622, 2157, + 1865, 1727, 2083, + 1556, 1839, 1961, + 0, 1955, 1720, + 0, 2075, 451, + 0, 2197, 0, + 0, 2321, 0, + 0, 2449, 0, + 0, 2577, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2373, 877, 2385, + 2371, 895, 2385, + 2369, 918, 2383, + 2365, 948, 2381, + 2361, 985, 2377, + 2357, 1029, 2373, + 2349, 1083, 2367, + 2339, 1147, 2359, + 2325, 1220, 2349, + 2305, 1302, 2335, + 2277, 1393, 2315, + 2237, 1491, 2287, + 2179, 1597, 2247, + 2087, 1708, 2189, + 1922, 1823, 2095, + 1526, 1943, 1927, + 0, 2065, 1516, + 0, 2189, 0, + 0, 2317, 0, + 0, 2445, 0, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2483, 666, 2461, + 2481, 695, 2459, + 2479, 731, 2457, + 2477, 775, 2455, + 2475, 828, 2453, + 2469, 890, 2449, + 2463, 962, 2445, + 2457, 1043, 2439, + 2445, 1133, 2429, + 2431, 1230, 2417, + 2409, 1335, 2401, + 2381, 1445, 2379, + 2339, 1561, 2347, + 2275, 1680, 2299, + 2173, 1802, 2227, + 1988, 1926, 2109, + 1481, 2053, 1877, + 0, 2181, 879, + 0, 2309, 0, + 0, 2439, 0, + 0, 2569, 0, + 0, 2699, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2597, 0, 2543, + 2597, 84, 2543, + 2595, 209, 2541, + 2593, 335, 2541, + 2591, 463, 2539, + 2587, 592, 2535, + 2583, 721, 2531, + 2577, 852, 2527, + 2569, 982, 2519, + 2557, 1113, 2509, + 2543, 1244, 2495, + 2521, 1376, 2477, + 2489, 1508, 2451, + 2445, 1640, 2415, + 2379, 1771, 2359, + 2269, 1903, 2273, + 2065, 2035, 2127, + 1415, 2167, 1799, + 0, 2299, 0, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3091, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2717, 0, 2637, + 2715, 0, 2635, + 2715, 0, 2635, + 2713, 0, 2633, + 2711, 0, 2631, + 2709, 0, 2629, + 2705, 0, 2627, + 2701, 304, 2621, + 2695, 644, 2617, + 2687, 886, 2609, + 2675, 1086, 2597, + 2659, 1263, 2583, + 2635, 1426, 2563, + 2605, 1580, 2533, + 2557, 1727, 2493, + 2487, 1871, 2429, + 2371, 2011, 2329, + 2149, 2149, 2149, + 1306, 2287, 1669, + 0, 2421, 0, + 0, 2557, 0, + 0, 2691, 0, + 0, 2823, 0, + 0, 2957, 0, + 0, 3089, 0, + 0, 3223, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2839, 0, 2737, + 2837, 0, 2735, + 2837, 0, 2735, + 2837, 0, 2735, + 2835, 0, 2733, + 2833, 0, 2731, + 2831, 0, 2729, + 2827, 0, 2725, + 2821, 0, 2721, + 2815, 0, 2713, + 2807, 713, 2705, + 2795, 1046, 2693, + 2779, 1286, 2679, + 2755, 1484, 2655, + 2723, 1661, 2625, + 2675, 1823, 2579, + 2601, 1977, 2509, + 2481, 2125, 2395, + 2243, 2267, 2179, + 1103, 2407, 1404, + 0, 2547, 0, + 0, 2683, 0, + 0, 2819, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 2963, 0, 2843, + 2963, 0, 2843, + 2961, 0, 2841, + 2961, 0, 2841, + 2959, 0, 2839, + 2959, 0, 2839, + 2957, 0, 2837, + 2953, 0, 2833, + 2951, 0, 2831, + 2945, 0, 2825, + 2939, 0, 2819, + 2929, 276, 2809, + 2917, 987, 2797, + 2901, 1315, 2781, + 2877, 1553, 2757, + 2843, 1750, 2723, + 2795, 1926, 2673, + 2719, 2089, 2597, + 2595, 2241, 2471, + 2343, 2389, 2215, + 471, 2533, 0, + 0, 2673, 0, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 3089, 0, 2955, + 3089, 0, 2955, + 3089, 0, 2955, + 3087, 0, 2953, + 3087, 0, 2953, + 3085, 0, 2951, + 3085, 0, 2949, + 3083, 0, 2947, + 3079, 0, 2945, + 3075, 0, 2941, + 3071, 0, 2937, + 3065, 0, 2929, + 3055, 0, 2919, + 3043, 894, 2907, + 3025, 1351, 2889, + 3001, 1631, 2863, + 2967, 1848, 2829, + 2917, 2035, 2775, + 2841, 2205, 2693, + 2713, 2363, 2555, + 2451, 2513, 2259, + 0, 2659, 0, + 0, 2801, 0, + 0, 2939, 0, + 0, 3077, 0, + 0, 3213, 0, + 0, 3347, 0, + 0, 3483, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3217, 0, 3071, + 3217, 0, 3071, + 3217, 0, 3071, + 3215, 0, 3071, + 3215, 0, 3069, + 3215, 0, 3069, + 3213, 0, 3067, + 3211, 0, 3065, + 3209, 0, 3063, + 3207, 0, 3061, + 3203, 0, 3057, + 3199, 0, 3051, + 3191, 0, 3045, + 3183, 0, 3035, + 3169, 729, 3021, + 3153, 1396, 3003, + 3129, 1717, 2977, + 3093, 1953, 2939, + 3043, 2149, 2883, + 2965, 2325, 2797, + 2833, 2485, 2647, + 2563, 2639, 2313, + 0, 2785, 0, + 0, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3345, 0, 3191, + 3345, 0, 3191, + 3345, 0, 3191, + 3345, 0, 3191, + 3345, 0, 3191, + 3343, 0, 3189, + 3343, 0, 3189, + 3341, 0, 3187, + 3341, 0, 3185, + 3339, 0, 3183, + 3335, 0, 3181, + 3331, 0, 3177, + 3327, 0, 3171, + 3319, 0, 3163, + 3311, 0, 3153, + 3299, 330, 3139, + 3281, 1449, 3121, + 3257, 1813, 3093, + 3221, 2063, 3055, + 3169, 2267, 2997, + 3091, 2447, 2907, + 2957, 2611, 2747, + 2681, 2767, 2375, + 0, 2915, 0, + 0, 3059, 0, + 0, 3199, 0, + 0, 3337, 0, + 0, 3475, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3475, 0, 3315, + 3475, 0, 3315, + 3475, 0, 3313, + 3475, 0, 3313, + 3475, 0, 3313, + 3473, 0, 3313, + 3473, 0, 3313, + 3473, 0, 3311, + 3471, 0, 3309, + 3469, 0, 3309, + 3467, 0, 3305, + 3465, 0, 3303, + 3461, 0, 3299, + 3457, 0, 3293, + 3449, 0, 3285, + 3439, 0, 3275, + 3427, 0, 3261, + 3409, 1512, 3241, + 3385, 1915, 3213, + 3349, 2179, 3175, + 3299, 2389, 3115, + 3219, 2571, 3021, + 3083, 2739, 2855, + 2801, 2895, 2447, + 0, 3045, 0, + 0, 3189, 0, + 0, 3331, 0, + 0, 3469, 0, + 0, 3607, 0, + 0, 3741, 0, + 0, 3877, 0, + 0, 4011, 0, + 3605, 0, 3439, + 3605, 0, 3439, + 3605, 0, 3439, + 3605, 0, 3439, + 3605, 0, 3439, + 3605, 0, 3439, + 3603, 0, 3437, + 3603, 0, 3437, + 3603, 0, 3437, + 3601, 0, 3435, + 3599, 0, 3433, + 3597, 0, 3431, + 3595, 0, 3427, + 3591, 0, 3423, + 3587, 0, 3417, + 3579, 0, 3411, + 3569, 0, 3399, + 3557, 0, 3385, + 3539, 1585, 3365, + 3515, 2023, 3337, + 3479, 2297, 3297, + 3427, 2513, 3235, + 3347, 2699, 3139, + 3211, 2867, 2967, + 2925, 3025, 2529, + 0, 3175, 0, + 0, 3319, 0, + 0, 3461, 0, + 0, 3601, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4009, 0, + 3737, 0, 3567, + 3737, 0, 3567, + 3735, 0, 3567, + 3735, 0, 3565, + 3735, 0, 3565, + 3735, 0, 3565, + 3735, 0, 3565, + 3735, 0, 3565, + 3733, 0, 3563, + 3733, 0, 3563, + 3731, 0, 3561, + 3731, 0, 3559, + 3729, 0, 3557, + 3725, 0, 3555, + 3721, 0, 3549, + 3717, 0, 3545, + 3709, 0, 3537, + 3701, 0, 3525, + 3687, 0, 3511, + 3669, 1666, 3491, + 3645, 2137, 3463, + 3609, 2419, 3421, + 3557, 2639, 3359, + 3477, 2827, 3261, + 3339, 2995, 3083, + 3049, 3155, 2619, + 0, 3305, 0, + 0, 3451, 0, + 0, 3593, 0, + 0, 3731, 0, + 0, 3869, 0, + 0, 4005, 0, + 3867, 0, 3695, + 3867, 0, 3695, + 3867, 0, 3695, + 3867, 0, 3695, + 3867, 0, 3693, + 3867, 0, 3693, + 3867, 0, 3693, + 3867, 0, 3693, + 3865, 0, 3693, + 3865, 0, 3691, + 3865, 0, 3691, + 3863, 0, 3689, + 3861, 0, 3687, + 3859, 0, 3685, + 3857, 0, 3683, + 3853, 0, 3677, + 3847, 0, 3673, + 3841, 0, 3665, + 3831, 0, 3653, + 3819, 0, 3639, + 3801, 1757, 3619, + 3775, 2255, 3589, + 3741, 2543, 3547, + 3687, 2765, 3485, + 3607, 2955, 3385, + 3469, 3125, 3203, + 3177, 3285, 2717, + 0, 3437, 0, + 0, 3581, 0, + 0, 3725, 0, + 0, 3863, 0, + 0, 4001, 0, + 3999, 0, 3823, + 3999, 0, 3823, + 3999, 0, 3823, + 3999, 0, 3823, + 3999, 0, 3823, + 3999, 0, 3823, + 3997, 0, 3823, + 3997, 0, 3823, + 3997, 0, 3821, + 3997, 0, 3821, + 3997, 0, 3821, + 3995, 0, 3819, + 3995, 0, 3819, + 3993, 0, 3817, + 3991, 0, 3815, + 3987, 0, 3811, + 3983, 0, 3807, + 3979, 0, 3801, + 3971, 0, 3793, + 3963, 0, 3783, + 3949, 0, 3767, + 3931, 1855, 3747, + 3907, 2375, 3717, + 3871, 2671, 3675, + 3819, 2895, 3613, + 3737, 3085, 3511, + 3599, 3257, 3327, + 3305, 3415, 2823, + 0, 3567, 0, + 0, 3713, 0, + 0, 3855, 0, + 0, 3995, 0, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3949, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3945, + 4095, 0, 3941, + 4095, 0, 3937, + 4095, 0, 3931, + 4095, 0, 3923, + 4093, 0, 3911, + 4081, 0, 3897, + 4063, 1960, 3877, + 4039, 2499, 3847, + 4003, 2797, 3805, + 3949, 3023, 3741, + 3869, 3215, 3639, + 3729, 3387, 3451, + 3435, 3547, 2933, + 0, 3699, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4075, + 4095, 0, 4071, + 4095, 0, 4067, + 4095, 0, 4061, + 4095, 0, 4053, + 4095, 0, 4043, + 4095, 0, 4027, + 4095, 2071, 4007, + 4095, 2625, 3977, + 4095, 2927, 3935, + 4081, 3155, 3869, + 3999, 3347, 3767, + 3861, 3519, 3579, + 3563, 3679, 3049, + 0, 3831, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2187, 4095, + 4095, 2753, 4095, + 4095, 3057, 4065, + 4095, 3285, 4001, + 4095, 3477, 3897, + 3991, 3651, 3707, + 3695, 3811, 3167, + 0, 3963, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2305, 4095, + 4095, 2881, 4095, + 4095, 3187, 4095, + 4095, 3415, 4095, + 4095, 3609, 4027, + 4095, 3781, 3835, + 3825, 3943, 3291, + 1773, 1336, 2183, + 1767, 1342, 2181, + 1759, 1351, 2179, + 1747, 1363, 2175, + 1731, 1378, 2169, + 1708, 1398, 2163, + 1676, 1422, 2155, + 1629, 1453, 2143, + 1558, 1492, 2125, + 1442, 1539, 2101, + 1216, 1595, 2069, + 324, 1661, 2020, + 0, 1736, 1945, + 0, 1820, 1821, + 0, 1913, 1573, + 0, 2013, 6, + 0, 2119, 0, + 0, 2231, 0, + 0, 2349, 0, + 0, 2469, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1781, 1335, 2185, + 1775, 1341, 2183, + 1767, 1350, 2181, + 1755, 1362, 2177, + 1739, 1377, 2171, + 1717, 1397, 2165, + 1686, 1421, 2157, + 1640, 1453, 2145, + 1571, 1491, 2127, + 1458, 1538, 2105, + 1242, 1594, 2071, + 485, 1660, 2023, + 0, 1735, 1949, + 0, 1820, 1826, + 0, 1912, 1582, + 0, 2013, 212, + 0, 2119, 0, + 0, 2231, 0, + 0, 2349, 0, + 0, 2469, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1792, 1333, 2187, + 1786, 1340, 2185, + 1777, 1349, 2183, + 1766, 1361, 2179, + 1751, 1376, 2175, + 1729, 1395, 2169, + 1699, 1420, 2159, + 1654, 1452, 2147, + 1587, 1490, 2131, + 1479, 1537, 2107, + 1275, 1594, 2075, + 637, 1659, 2027, + 0, 1735, 1954, + 0, 1819, 1832, + 0, 1912, 1592, + 0, 2012, 393, + 0, 2119, 0, + 0, 2231, 0, + 0, 2349, 0, + 0, 2469, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1805, 1331, 2191, + 1799, 1338, 2189, + 1791, 1347, 2187, + 1780, 1359, 2183, + 1765, 1374, 2179, + 1744, 1394, 2173, + 1715, 1419, 2163, + 1672, 1450, 2151, + 1608, 1489, 2135, + 1505, 1536, 2113, + 1316, 1593, 2079, + 784, 1659, 2032, + 0, 1734, 1960, + 0, 1819, 1840, + 0, 1912, 1606, + 0, 2012, 558, + 0, 2119, 0, + 0, 2231, 0, + 0, 2349, 0, + 0, 2469, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1823, 1329, 2197, + 1817, 1336, 2195, + 1809, 1345, 2193, + 1799, 1356, 2189, + 1784, 1372, 2185, + 1764, 1392, 2177, + 1736, 1417, 2169, + 1695, 1448, 2157, + 1635, 1487, 2141, + 1538, 1535, 2119, + 1365, 1591, 2087, + 927, 1657, 2040, + 0, 1733, 1968, + 0, 1818, 1851, + 0, 1911, 1624, + 0, 2011, 713, + 0, 2119, 0, + 0, 2231, 0, + 0, 2347, 0, + 0, 2469, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1845, 1325, 2203, + 1839, 1332, 2201, + 1832, 1341, 2199, + 1822, 1353, 2195, + 1809, 1369, 2191, + 1790, 1389, 2185, + 1763, 1414, 2177, + 1725, 1446, 2165, + 1668, 1485, 2149, + 1579, 1532, 2127, + 1424, 1589, 2095, + 1067, 1656, 2049, + 0, 1732, 1979, + 0, 1817, 1865, + 0, 1910, 1647, + 0, 2011, 862, + 0, 2117, 0, + 0, 2231, 0, + 0, 2347, 0, + 0, 2467, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1873, 1321, 2213, + 1868, 1328, 2211, + 1861, 1337, 2207, + 1852, 1349, 2205, + 1839, 1365, 2199, + 1821, 1385, 2193, + 1797, 1410, 2185, + 1761, 1442, 2175, + 1709, 1482, 2159, + 1628, 1530, 2137, + 1492, 1587, 2107, + 1205, 1653, 2061, + 0, 1730, 1994, + 0, 1815, 1884, + 0, 1909, 1677, + 0, 2010, 1006, + 0, 2117, 0, + 0, 2229, 0, + 0, 2347, 0, + 0, 2467, 0, + 0, 2591, 0, + 0, 2717, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1908, 1315, 2223, + 1904, 1322, 2221, + 1897, 1331, 2219, + 1889, 1343, 2217, + 1877, 1359, 2211, + 1861, 1379, 2205, + 1838, 1405, 2197, + 1806, 1437, 2187, + 1759, 1477, 2171, + 1687, 1526, 2151, + 1570, 1583, 2121, + 1341, 1650, 2077, + 404, 1727, 2012, + 0, 1813, 1907, + 0, 1907, 1713, + 0, 2008, 1147, + 0, 2117, 0, + 0, 2229, 0, + 0, 2347, 0, + 0, 2467, 0, + 0, 2591, 0, + 0, 2715, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 1951, 1306, 2239, + 1947, 1313, 2237, + 1941, 1323, 2235, + 1934, 1335, 2231, + 1923, 1351, 2227, + 1908, 1372, 2221, + 1888, 1398, 2213, + 1859, 1431, 2203, + 1818, 1471, 2189, + 1755, 1520, 2167, + 1656, 1579, 2139, + 1476, 1646, 2097, + 1002, 1724, 2036, + 0, 1810, 1936, + 0, 1905, 1757, + 0, 2007, 1285, + 0, 2115, 0, + 0, 2227, 0, + 0, 2345, 0, + 0, 2467, 0, + 0, 2589, 0, + 0, 2715, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 2003, 1294, 2257, + 2000, 1302, 2257, + 1994, 1312, 2253, + 1987, 1324, 2251, + 1978, 1341, 2247, + 1965, 1362, 2241, + 1947, 1389, 2233, + 1922, 1422, 2223, + 1886, 1463, 2209, + 1833, 1513, 2191, + 1751, 1572, 2163, + 1611, 1641, 2123, + 1312, 1719, 2065, + 0, 1806, 1973, + 0, 1902, 1811, + 0, 2004, 1422, + 0, 2113, 0, + 0, 2227, 0, + 0, 2345, 0, + 0, 2465, 0, + 0, 2589, 0, + 0, 2715, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 2065, 1278, 2283, + 2061, 1286, 2281, + 2057, 1296, 2279, + 2051, 1309, 2275, + 2043, 1326, 2271, + 2031, 1348, 2267, + 2016, 1376, 2259, + 1994, 1410, 2249, + 1964, 1452, 2237, + 1920, 1503, 2219, + 1853, 1564, 2193, + 1745, 1634, 2157, + 1543, 1713, 2103, + 914, 1801, 2018, + 0, 1897, 1873, + 0, 2001, 1558, + 0, 2111, 0, + 0, 2225, 0, + 0, 2343, 0, + 0, 2465, 0, + 0, 2589, 0, + 0, 2715, 0, + 0, 2841, 0, + 0, 2971, 0, + 0, 3099, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 2135, 1256, 2313, + 2133, 1264, 2311, + 2129, 1275, 2309, + 2123, 1289, 2307, + 2117, 1306, 2303, + 2107, 1329, 2299, + 2095, 1358, 2291, + 2077, 1393, 2283, + 2051, 1437, 2271, + 2015, 1490, 2253, + 1961, 1552, 2231, + 1878, 1624, 2197, + 1737, 1704, 2147, + 1431, 1794, 2071, + 0, 1892, 1946, + 0, 1996, 1693, + 0, 2107, 0, + 0, 2221, 0, + 0, 2341, 0, + 0, 2463, 0, + 0, 2587, 0, + 0, 2713, 0, + 0, 2841, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 2215, 1225, 2351, + 2213, 1233, 2349, + 2211, 1244, 2347, + 2205, 1259, 2345, + 2201, 1278, 2343, + 2193, 1302, 2337, + 2181, 1333, 2331, + 2167, 1370, 2323, + 2145, 1416, 2313, + 2117, 1471, 2297, + 2075, 1536, 2275, + 2011, 1610, 2245, + 1910, 1693, 2201, + 1725, 1785, 2135, + 1221, 1884, 2027, + 0, 1990, 1827, + 0, 2101, 1211, + 0, 2219, 0, + 0, 2337, 0, + 0, 2461, 0, + 0, 2585, 0, + 0, 2713, 0, + 0, 2841, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 2305, 1179, 2397, + 2303, 1188, 2397, + 2301, 1200, 2395, + 2297, 1217, 2393, + 2293, 1237, 2389, + 2285, 1264, 2385, + 2277, 1297, 2381, + 2265, 1337, 2373, + 2249, 1387, 2363, + 2225, 1445, 2349, + 2193, 1513, 2329, + 2145, 1591, 2303, + 2071, 1677, 2265, + 1949, 1772, 2207, + 1710, 1874, 2117, + 517, 1982, 1960, + 0, 2095, 1594, + 0, 2213, 0, + 0, 2335, 0, + 0, 2457, 0, + 0, 2583, 0, + 0, 2711, 0, + 0, 2839, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 2401, 1109, 2453, + 2401, 1120, 2453, + 2399, 1134, 2451, + 2395, 1153, 2449, + 2391, 1177, 2447, + 2387, 1206, 2443, + 2379, 1244, 2437, + 2369, 1289, 2431, + 2357, 1344, 2423, + 2339, 1407, 2411, + 2313, 1481, 2393, + 2277, 1564, 2371, + 2223, 1655, 2337, + 2139, 1754, 2289, + 1997, 1860, 2215, + 1688, 1971, 2093, + 0, 2087, 1852, + 0, 2207, 583, + 0, 2329, 0, + 0, 2453, 0, + 0, 2581, 0, + 0, 2709, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2505, 995, 2519, + 2505, 1009, 2517, + 2503, 1027, 2517, + 2501, 1050, 2515, + 2497, 1080, 2513, + 2493, 1117, 2509, + 2489, 1162, 2505, + 2481, 1216, 2499, + 2471, 1279, 2491, + 2457, 1352, 2481, + 2437, 1434, 2467, + 2409, 1525, 2447, + 2369, 1623, 2419, + 2311, 1729, 2381, + 2219, 1840, 2321, + 2055, 1955, 2227, + 1658, 2075, 2059, + 0, 2197, 1649, + 0, 2321, 0, + 0, 2449, 0, + 0, 2577, 0, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2615, 775, 2593, + 2615, 798, 2593, + 2613, 827, 2591, + 2611, 863, 2589, + 2609, 907, 2587, + 2607, 960, 2585, + 2601, 1022, 2581, + 2597, 1094, 2577, + 2589, 1175, 2571, + 2577, 1265, 2561, + 2563, 1363, 2551, + 2541, 1467, 2533, + 2513, 1578, 2511, + 2471, 1693, 2479, + 2407, 1812, 2431, + 2305, 1934, 2359, + 2121, 2059, 2241, + 1614, 2185, 2009, + 0, 2313, 1012, + 0, 2441, 0, + 0, 2571, 0, + 0, 2701, 0, + 0, 2831, 0, + 0, 2963, 0, + 0, 3095, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2731, 0, 2677, + 2729, 94, 2677, + 2729, 216, 2675, + 2727, 341, 2675, + 2725, 467, 2673, + 2723, 595, 2671, + 2719, 724, 2667, + 2715, 853, 2663, + 2709, 984, 2659, + 2701, 1114, 2651, + 2689, 1245, 2641, + 2675, 1377, 2629, + 2653, 1508, 2609, + 2621, 1640, 2583, + 2577, 1772, 2547, + 2511, 1904, 2491, + 2401, 2035, 2407, + 2197, 2167, 2259, + 1547, 2299, 1931, + 0, 2431, 0, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2849, 0, 2769, + 2849, 0, 2769, + 2847, 0, 2767, + 2847, 0, 2767, + 2845, 0, 2765, + 2843, 0, 2763, + 2841, 0, 2761, + 2837, 0, 2759, + 2833, 436, 2755, + 2827, 776, 2749, + 2819, 1018, 2741, + 2807, 1218, 2729, + 2791, 1395, 2715, + 2769, 1558, 2695, + 2737, 1712, 2665, + 2689, 1859, 2625, + 2619, 2003, 2561, + 2503, 2143, 2463, + 2281, 2281, 2281, + 1438, 2419, 1802, + 0, 2553, 0, + 0, 2689, 0, + 0, 2823, 0, + 0, 2955, 0, + 0, 3089, 0, + 0, 3221, 0, + 0, 3355, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 2971, 0, 2869, + 2971, 0, 2869, + 2971, 0, 2867, + 2969, 0, 2867, + 2969, 0, 2867, + 2967, 0, 2865, + 2965, 0, 2863, + 2963, 0, 2861, + 2959, 0, 2857, + 2953, 0, 2853, + 2947, 96, 2847, + 2939, 845, 2837, + 2927, 1178, 2827, + 2911, 1418, 2811, + 2887, 1617, 2789, + 2855, 1793, 2757, + 2807, 1955, 2711, + 2733, 2109, 2641, + 2613, 2257, 2527, + 2375, 2399, 2311, + 1236, 2539, 1536, + 0, 2679, 0, + 0, 2815, 0, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 3095, 0, 2975, + 3095, 0, 2975, + 3095, 0, 2975, + 3095, 0, 2973, + 3093, 0, 2973, + 3093, 0, 2973, + 3091, 0, 2971, + 3089, 0, 2969, + 3085, 0, 2965, + 3083, 0, 2963, + 3077, 0, 2957, + 3071, 0, 2951, + 3063, 409, 2941, + 3049, 1119, 2929, + 3033, 1447, 2913, + 3009, 1685, 2889, + 2975, 1883, 2855, + 2927, 2059, 2805, + 2851, 2221, 2729, + 2727, 2373, 2603, + 2475, 2521, 2347, + 602, 2665, 0, + 0, 2805, 0, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3221, 0, 3087, + 3221, 0, 3087, + 3221, 0, 3087, + 3221, 0, 3087, + 3219, 0, 3085, + 3219, 0, 3085, + 3217, 0, 3083, + 3217, 0, 3083, + 3215, 0, 3079, + 3211, 0, 3077, + 3209, 0, 3073, + 3203, 0, 3069, + 3197, 0, 3061, + 3187, 0, 3051, + 3175, 1026, 3039, + 3159, 1483, 3021, + 3135, 1763, 2997, + 3099, 1980, 2961, + 3049, 2167, 2907, + 2973, 2337, 2825, + 2845, 2495, 2687, + 2583, 2645, 2391, + 0, 2791, 0, + 0, 2933, 0, + 0, 3071, 0, + 0, 3209, 0, + 0, 3345, 0, + 0, 3479, 0, + 0, 3615, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4015, 0, + 3349, 0, 3203, + 3349, 0, 3203, + 3349, 0, 3203, + 3349, 0, 3203, + 3347, 0, 3203, + 3347, 0, 3201, + 3347, 0, 3201, + 3345, 0, 3199, + 3343, 0, 3199, + 3341, 0, 3195, + 3339, 0, 3193, + 3335, 0, 3189, + 3331, 0, 3183, + 3323, 0, 3177, + 3315, 0, 3167, + 3303, 861, 3153, + 3285, 1528, 3135, + 3261, 1850, 3109, + 3225, 2085, 3071, + 3175, 2281, 3015, + 3097, 2457, 2929, + 2965, 2617, 2779, + 2695, 2771, 2445, + 0, 2919, 0, + 0, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3475, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3477, 0, 3323, + 3477, 0, 3323, + 3477, 0, 3323, + 3477, 0, 3323, + 3477, 0, 3323, + 3477, 0, 3323, + 3475, 0, 3321, + 3475, 0, 3321, + 3473, 0, 3319, + 3473, 0, 3317, + 3471, 0, 3315, + 3467, 0, 3313, + 3463, 0, 3309, + 3459, 0, 3303, + 3453, 0, 3295, + 3443, 0, 3285, + 3431, 462, 3271, + 3413, 1581, 3253, + 3389, 1945, 3225, + 3353, 2195, 3187, + 3303, 2399, 3129, + 3223, 2579, 3039, + 3089, 2743, 2879, + 2813, 2899, 2507, + 0, 3047, 0, + 0, 3191, 0, + 0, 3331, 0, + 0, 3469, 0, + 0, 3607, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3607, 0, 3447, + 3607, 0, 3447, + 3607, 0, 3447, + 3607, 0, 3447, + 3607, 0, 3445, + 3607, 0, 3445, + 3605, 0, 3445, + 3605, 0, 3445, + 3605, 0, 3443, + 3603, 0, 3441, + 3601, 0, 3441, + 3599, 0, 3439, + 3597, 0, 3435, + 3593, 0, 3431, + 3589, 0, 3425, + 3581, 0, 3417, + 3573, 0, 3407, + 3559, 0, 3393, + 3541, 1644, 3373, + 3517, 2047, 3347, + 3483, 2311, 3307, + 3431, 2521, 3247, + 3351, 2703, 3153, + 3215, 2871, 2987, + 2933, 3027, 2579, + 0, 3177, 0, + 0, 3321, 0, + 0, 3463, 0, + 0, 3601, 0, + 0, 3739, 0, + 0, 3875, 0, + 0, 4009, 0, + 3737, 0, 3571, + 3737, 0, 3571, + 3737, 0, 3571, + 3737, 0, 3571, + 3737, 0, 3571, + 3737, 0, 3571, + 3737, 0, 3571, + 3737, 0, 3569, + 3735, 0, 3569, + 3735, 0, 3569, + 3733, 0, 3567, + 3731, 0, 3565, + 3729, 0, 3563, + 3727, 0, 3559, + 3723, 0, 3555, + 3719, 0, 3549, + 3711, 0, 3543, + 3703, 0, 3531, + 3689, 0, 3517, + 3671, 1717, 3497, + 3647, 2155, 3469, + 3611, 2429, 3429, + 3559, 2645, 3367, + 3479, 2831, 3271, + 3343, 2999, 3099, + 3057, 3157, 2661, + 0, 3307, 0, + 0, 3451, 0, + 0, 3593, 0, + 0, 3733, 0, + 0, 3869, 0, + 0, 4005, 0, + 3869, 0, 3699, + 3869, 0, 3699, + 3869, 0, 3699, + 3869, 0, 3699, + 3867, 0, 3697, + 3867, 0, 3697, + 3867, 0, 3697, + 3867, 0, 3697, + 3867, 0, 3697, + 3867, 0, 3695, + 3865, 0, 3695, + 3865, 0, 3693, + 3863, 0, 3691, + 3861, 0, 3689, + 3857, 0, 3687, + 3853, 0, 3683, + 3849, 0, 3677, + 3841, 0, 3669, + 3833, 0, 3657, + 3819, 0, 3643, + 3801, 1798, 3623, + 3777, 2269, 3595, + 3741, 2551, 3553, + 3689, 2771, 3491, + 3609, 2959, 3393, + 3471, 3129, 3215, + 3181, 3287, 2751, + 0, 3437, 0, + 0, 3583, 0, + 0, 3725, 0, + 0, 3865, 0, + 0, 4001, 0, + 3999, 0, 3827, + 3999, 0, 3827, + 3999, 0, 3827, + 3999, 0, 3827, + 3999, 0, 3827, + 3999, 0, 3827, + 3999, 0, 3825, + 3999, 0, 3825, + 3999, 0, 3825, + 3997, 0, 3825, + 3997, 0, 3823, + 3997, 0, 3823, + 3995, 0, 3821, + 3993, 0, 3819, + 3991, 0, 3817, + 3989, 0, 3815, + 3985, 0, 3809, + 3979, 0, 3805, + 3973, 0, 3797, + 3963, 0, 3785, + 3951, 0, 3771, + 3933, 1889, 3751, + 3907, 2387, 3721, + 3873, 2677, 3679, + 3819, 2899, 3617, + 3739, 3087, 3517, + 3601, 3259, 3335, + 3309, 3417, 2849, + 0, 3569, 0, + 0, 3715, 0, + 0, 3857, 0, + 0, 3995, 0, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3953, + 4095, 0, 3953, + 4095, 0, 3951, + 4095, 0, 3951, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3943, + 4095, 0, 3939, + 4095, 0, 3933, + 4095, 0, 3925, + 4095, 0, 3915, + 4081, 0, 3899, + 4063, 1987, 3879, + 4039, 2507, 3849, + 4003, 2803, 3807, + 3951, 3027, 3745, + 3869, 3217, 3643, + 3731, 3389, 3459, + 3437, 3549, 2955, + 0, 3699, 0, + 0, 3845, 0, + 0, 3987, 0, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4081, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4077, + 4095, 0, 4073, + 4095, 0, 4069, + 4095, 0, 4063, + 4095, 0, 4055, + 4095, 0, 4043, + 4095, 0, 4029, + 4095, 2093, 4009, + 4095, 2631, 3979, + 4095, 2931, 3937, + 4081, 3157, 3873, + 4001, 3347, 3771, + 3861, 3519, 3583, + 3567, 3679, 3065, + 0, 3831, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2203, 4095, + 4095, 2757, 4095, + 4095, 3059, 4067, + 4095, 3287, 4003, + 4095, 3479, 3899, + 3993, 3651, 3711, + 3697, 3811, 3181, + 0, 3963, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2319, 4095, + 4095, 2885, 4095, + 4095, 3189, 4095, + 4095, 3417, 4095, + 4095, 3609, 4029, + 4095, 3783, 3839, + 3827, 3943, 3299, + 1904, 1463, 2315, + 1900, 1469, 2313, + 1893, 1475, 2311, + 1884, 1484, 2309, + 1873, 1496, 2305, + 1856, 1511, 2301, + 1833, 1530, 2293, + 1801, 1555, 2285, + 1753, 1586, 2273, + 1681, 1625, 2255, + 1561, 1672, 2233, + 1327, 1728, 2199, + 282, 1793, 2149, + 0, 1868, 2075, + 0, 1952, 1949, + 0, 2045, 1699, + 0, 2145, 0, + 0, 2253, 0, + 0, 2365, 0, + 0, 2481, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3105, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1910, 1463, 2317, + 1906, 1468, 2315, + 1899, 1475, 2313, + 1891, 1483, 2311, + 1879, 1495, 2307, + 1863, 1510, 2301, + 1840, 1530, 2295, + 1808, 1554, 2287, + 1761, 1586, 2275, + 1690, 1624, 2257, + 1574, 1671, 2235, + 1348, 1727, 2201, + 456, 1793, 2151, + 0, 1868, 2077, + 0, 1952, 1953, + 0, 2045, 1706, + 0, 2145, 138, + 0, 2251, 0, + 0, 2365, 0, + 0, 2481, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1918, 1462, 2319, + 1913, 1467, 2317, + 1907, 1474, 2315, + 1899, 1482, 2313, + 1887, 1494, 2309, + 1871, 1509, 2305, + 1849, 1529, 2297, + 1818, 1554, 2289, + 1772, 1585, 2277, + 1703, 1623, 2261, + 1590, 1670, 2237, + 1374, 1727, 2203, + 617, 1792, 2155, + 0, 1867, 2081, + 0, 1952, 1958, + 0, 2045, 1714, + 0, 2145, 344, + 0, 2251, 0, + 0, 2363, 0, + 0, 2481, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1928, 1460, 2321, + 1924, 1465, 2319, + 1918, 1472, 2317, + 1909, 1481, 2315, + 1898, 1493, 2311, + 1883, 1508, 2307, + 1861, 1528, 2301, + 1831, 1552, 2291, + 1786, 1584, 2279, + 1719, 1622, 2263, + 1611, 1670, 2241, + 1407, 1726, 2207, + 769, 1792, 2159, + 0, 1867, 2085, + 0, 1951, 1964, + 0, 2044, 1724, + 0, 2145, 525, + 0, 2251, 0, + 0, 2363, 0, + 0, 2481, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1942, 1458, 2325, + 1937, 1463, 2323, + 1931, 1470, 2321, + 1923, 1479, 2319, + 1912, 1491, 2315, + 1897, 1506, 2311, + 1877, 1526, 2305, + 1847, 1551, 2295, + 1804, 1582, 2283, + 1740, 1621, 2267, + 1637, 1668, 2245, + 1448, 1725, 2213, + 916, 1791, 2165, + 0, 1866, 2093, + 0, 1951, 1972, + 0, 2044, 1738, + 0, 2145, 690, + 0, 2251, 0, + 0, 2363, 0, + 0, 2481, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1959, 1456, 2331, + 1955, 1461, 2329, + 1949, 1468, 2327, + 1941, 1477, 2325, + 1931, 1489, 2321, + 1916, 1504, 2317, + 1896, 1524, 2309, + 1868, 1549, 2301, + 1828, 1580, 2289, + 1767, 1619, 2273, + 1670, 1667, 2251, + 1497, 1723, 2219, + 1059, 1789, 2171, + 0, 1865, 2101, + 0, 1950, 1983, + 0, 2043, 1757, + 0, 2143, 845, + 0, 2251, 0, + 0, 2363, 0, + 0, 2479, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 1981, 1452, 2337, + 1977, 1457, 2335, + 1972, 1464, 2333, + 1964, 1474, 2331, + 1954, 1485, 2327, + 1941, 1501, 2323, + 1922, 1521, 2317, + 1895, 1546, 2309, + 1857, 1578, 2297, + 1800, 1617, 2281, + 1711, 1665, 2259, + 1556, 1721, 2227, + 1199, 1788, 2181, + 0, 1864, 2111, + 0, 1949, 1998, + 0, 2042, 1780, + 0, 2143, 994, + 0, 2251, 0, + 0, 2363, 0, + 0, 2479, 0, + 0, 2601, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2009, 1448, 2345, + 2005, 1453, 2345, + 2000, 1460, 2343, + 1993, 1469, 2339, + 1984, 1481, 2337, + 1971, 1497, 2333, + 1953, 1517, 2325, + 1929, 1542, 2317, + 1893, 1574, 2307, + 1841, 1614, 2291, + 1761, 1662, 2269, + 1624, 1719, 2239, + 1337, 1786, 2193, + 0, 1862, 2125, + 0, 1947, 2016, + 0, 2041, 1809, + 0, 2141, 1138, + 0, 2249, 0, + 0, 2363, 0, + 0, 2479, 0, + 0, 2599, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2044, 1441, 2357, + 2040, 1447, 2355, + 2036, 1454, 2353, + 2029, 1463, 2351, + 2021, 1475, 2349, + 2009, 1491, 2343, + 1993, 1511, 2337, + 1970, 1537, 2329, + 1938, 1569, 2319, + 1891, 1609, 2303, + 1819, 1658, 2283, + 1702, 1715, 2253, + 1473, 1783, 2209, + 536, 1859, 2145, + 0, 1945, 2039, + 0, 2039, 1845, + 0, 2141, 1279, + 0, 2249, 0, + 0, 2361, 0, + 0, 2479, 0, + 0, 2599, 0, + 0, 2723, 0, + 0, 2849, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2087, 1433, 2371, + 2083, 1438, 2371, + 2079, 1445, 2369, + 2073, 1455, 2367, + 2065, 1467, 2363, + 2055, 1483, 2359, + 2040, 1504, 2353, + 2020, 1530, 2345, + 1991, 1563, 2335, + 1950, 1603, 2321, + 1887, 1652, 2299, + 1788, 1711, 2271, + 1609, 1779, 2229, + 1134, 1856, 2167, + 0, 1942, 2069, + 0, 2037, 1889, + 0, 2139, 1417, + 0, 2247, 0, + 0, 2361, 0, + 0, 2477, 0, + 0, 2599, 0, + 0, 2723, 0, + 0, 2847, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2139, 1421, 2391, + 2135, 1427, 2389, + 2131, 1434, 2389, + 2127, 1444, 2385, + 2119, 1456, 2383, + 2111, 1473, 2379, + 2097, 1494, 2373, + 2079, 1521, 2365, + 2055, 1554, 2355, + 2018, 1595, 2341, + 1965, 1645, 2323, + 1883, 1704, 2295, + 1743, 1773, 2255, + 1444, 1851, 2197, + 0, 1938, 2105, + 0, 2034, 1943, + 0, 2137, 1554, + 0, 2245, 0, + 0, 2359, 0, + 0, 2477, 0, + 0, 2597, 0, + 0, 2721, 0, + 0, 2847, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2199, 1405, 2415, + 2197, 1411, 2415, + 2193, 1418, 2413, + 2189, 1428, 2411, + 2183, 1441, 2407, + 2175, 1458, 2403, + 2163, 1480, 2399, + 2149, 1508, 2391, + 2127, 1542, 2383, + 2097, 1584, 2369, + 2051, 1635, 2351, + 1985, 1696, 2325, + 1877, 1766, 2289, + 1675, 1845, 2235, + 1046, 1933, 2149, + 0, 2030, 2005, + 0, 2133, 1690, + 0, 2243, 0, + 0, 2357, 0, + 0, 2475, 0, + 0, 2597, 0, + 0, 2721, 0, + 0, 2847, 0, + 0, 2973, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2269, 1382, 2447, + 2267, 1388, 2445, + 2265, 1396, 2443, + 2261, 1407, 2441, + 2255, 1421, 2439, + 2249, 1438, 2435, + 2239, 1461, 2431, + 2227, 1490, 2423, + 2209, 1526, 2415, + 2183, 1569, 2403, + 2147, 1622, 2385, + 2093, 1684, 2363, + 2010, 1756, 2329, + 1869, 1837, 2279, + 1564, 1926, 2203, + 0, 2024, 2077, + 0, 2129, 1825, + 0, 2239, 0, + 0, 2353, 0, + 0, 2473, 0, + 0, 2595, 0, + 0, 2719, 0, + 0, 2845, 0, + 0, 2973, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2349, 1350, 2485, + 2347, 1357, 2483, + 2345, 1365, 2481, + 2343, 1377, 2481, + 2339, 1391, 2477, + 2333, 1410, 2475, + 2325, 1434, 2469, + 2313, 1465, 2463, + 2299, 1502, 2455, + 2279, 1548, 2445, + 2249, 1603, 2429, + 2207, 1668, 2407, + 2143, 1742, 2377, + 2042, 1825, 2333, + 1857, 1917, 2267, + 1353, 2016, 2159, + 0, 2123, 1959, + 0, 2233, 1343, + 0, 2351, 0, + 0, 2469, 0, + 0, 2593, 0, + 0, 2717, 0, + 0, 2845, 0, + 0, 2973, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2439, 1303, 2531, + 2437, 1311, 2529, + 2435, 1320, 2529, + 2433, 1333, 2527, + 2429, 1349, 2525, + 2425, 1369, 2521, + 2417, 1396, 2517, + 2409, 1429, 2513, + 2397, 1469, 2505, + 2381, 1519, 2495, + 2357, 1577, 2481, + 2325, 1645, 2463, + 2277, 1723, 2435, + 2203, 1809, 2397, + 2081, 1904, 2339, + 1842, 2006, 2249, + 650, 2115, 2093, + 0, 2227, 1726, + 0, 2345, 0, + 0, 2467, 0, + 0, 2589, 0, + 0, 2715, 0, + 0, 2843, 0, + 0, 2971, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 2535, 1232, 2587, + 2535, 1241, 2585, + 2533, 1252, 2585, + 2531, 1266, 2583, + 2527, 1285, 2581, + 2523, 1309, 2579, + 2519, 1339, 2575, + 2511, 1376, 2569, + 2503, 1421, 2563, + 2489, 1476, 2555, + 2471, 1540, 2543, + 2445, 1613, 2527, + 2409, 1696, 2503, + 2355, 1787, 2469, + 2271, 1886, 2421, + 2129, 1992, 2347, + 1820, 2103, 2225, + 0, 2219, 1984, + 0, 2339, 715, + 0, 2461, 0, + 0, 2585, 0, + 0, 2713, 0, + 0, 2841, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3885, 0, + 0, 4017, 0, + 2639, 1115, 2651, + 2639, 1126, 2651, + 2637, 1141, 2649, + 2635, 1159, 2649, + 2633, 1182, 2647, + 2629, 1212, 2645, + 2625, 1249, 2641, + 2621, 1294, 2637, + 2613, 1348, 2631, + 2603, 1411, 2623, + 2589, 1484, 2613, + 2569, 1566, 2599, + 2541, 1657, 2579, + 2503, 1756, 2553, + 2443, 1861, 2513, + 2351, 1972, 2453, + 2187, 2087, 2359, + 1790, 2207, 2191, + 0, 2329, 1781, + 0, 2455, 0, + 0, 2581, 0, + 0, 2709, 0, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2749, 890, 2725, + 2749, 908, 2725, + 2747, 930, 2725, + 2745, 959, 2723, + 2743, 995, 2721, + 2741, 1039, 2719, + 2739, 1092, 2717, + 2735, 1154, 2713, + 2729, 1226, 2709, + 2721, 1307, 2703, + 2709, 1397, 2695, + 2695, 1495, 2683, + 2673, 1599, 2665, + 2645, 1710, 2643, + 2603, 1825, 2611, + 2539, 1944, 2563, + 2437, 2067, 2491, + 2253, 2191, 2373, + 1746, 2317, 2141, + 0, 2445, 1143, + 0, 2573, 0, + 0, 2703, 0, + 0, 2833, 0, + 0, 2965, 0, + 0, 3095, 0, + 0, 3227, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2863, 0, 2809, + 2863, 107, 2809, + 2863, 226, 2809, + 2861, 348, 2807, + 2859, 473, 2807, + 2857, 599, 2805, + 2855, 727, 2803, + 2851, 856, 2799, + 2847, 986, 2795, + 2841, 1116, 2791, + 2833, 1246, 2783, + 2821, 1377, 2773, + 2807, 1509, 2761, + 2785, 1640, 2741, + 2755, 1772, 2715, + 2709, 1904, 2679, + 2643, 2036, 2623, + 2533, 2167, 2539, + 2329, 2299, 2391, + 1679, 2431, 2063, + 0, 2563, 0, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2981, 0, 2901, + 2981, 0, 2901, + 2981, 0, 2901, + 2981, 0, 2899, + 2979, 0, 2899, + 2977, 0, 2897, + 2975, 0, 2895, + 2973, 0, 2893, + 2969, 0, 2891, + 2965, 568, 2887, + 2959, 908, 2881, + 2951, 1150, 2873, + 2939, 1350, 2861, + 2923, 1527, 2847, + 2901, 1690, 2827, + 2869, 1844, 2797, + 2821, 1992, 2757, + 2751, 2135, 2693, + 2635, 2275, 2595, + 2413, 2413, 2413, + 1570, 2551, 1934, + 0, 2685, 0, + 0, 2821, 0, + 0, 2955, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3885, 0, + 0, 4017, 0, + 3103, 0, 3001, + 3103, 0, 3001, + 3103, 0, 3001, + 3103, 0, 3001, + 3101, 0, 2999, + 3101, 0, 2999, + 3099, 0, 2997, + 3097, 0, 2995, + 3095, 0, 2993, + 3091, 0, 2989, + 3087, 0, 2985, + 3079, 228, 2979, + 3071, 978, 2969, + 3059, 1310, 2959, + 3043, 1550, 2943, + 3019, 1749, 2921, + 2987, 1925, 2889, + 2939, 2087, 2843, + 2865, 2241, 2773, + 2745, 2389, 2659, + 2507, 2531, 2443, + 1368, 2673, 1669, + 0, 2811, 0, + 0, 2947, 0, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 3227, 0, 3107, + 3227, 0, 3107, + 3227, 0, 3107, + 3227, 0, 3107, + 3227, 0, 3107, + 3225, 0, 3105, + 3225, 0, 3105, + 3223, 0, 3103, + 3221, 0, 3101, + 3219, 0, 3099, + 3215, 0, 3095, + 3209, 0, 3089, + 3203, 0, 3083, + 3195, 541, 3073, + 3183, 1251, 3061, + 3165, 1579, 3045, + 3141, 1817, 3021, + 3109, 2015, 2987, + 3059, 2191, 2937, + 2983, 2353, 2861, + 2859, 2505, 2735, + 2609, 2653, 2479, + 735, 2797, 0, + 0, 2937, 0, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3353, 0, 3219, + 3353, 0, 3219, + 3353, 0, 3219, + 3353, 0, 3219, + 3353, 0, 3219, + 3353, 0, 3217, + 3351, 0, 3217, + 3351, 0, 3215, + 3349, 0, 3215, + 3347, 0, 3213, + 3343, 0, 3209, + 3341, 0, 3205, + 3335, 0, 3201, + 3329, 0, 3193, + 3319, 0, 3185, + 3307, 1158, 3171, + 3291, 1616, 3153, + 3267, 1895, 3129, + 3233, 2113, 3093, + 3183, 2299, 3039, + 3105, 2469, 2957, + 2977, 2627, 2819, + 2715, 2777, 2523, + 0, 2923, 0, + 0, 3065, 0, + 0, 3203, 0, + 0, 3341, 0, + 0, 3477, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3481, 0, 3337, + 3481, 0, 3335, + 3481, 0, 3335, + 3481, 0, 3335, + 3481, 0, 3335, + 3481, 0, 3335, + 3479, 0, 3333, + 3479, 0, 3333, + 3477, 0, 3331, + 3475, 0, 3331, + 3473, 0, 3327, + 3471, 0, 3325, + 3467, 0, 3321, + 3463, 0, 3315, + 3455, 0, 3309, + 3447, 0, 3299, + 3435, 994, 3285, + 3417, 1660, 3267, + 3393, 1982, 3241, + 3359, 2217, 3203, + 3307, 2413, 3147, + 3229, 2589, 3061, + 3097, 2749, 2911, + 2827, 2903, 2577, + 0, 3051, 0, + 0, 3193, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3607, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3611, 0, 3457, + 3611, 0, 3455, + 3609, 0, 3455, + 3609, 0, 3455, + 3609, 0, 3455, + 3609, 0, 3455, + 3609, 0, 3455, + 3607, 0, 3453, + 3607, 0, 3453, + 3605, 0, 3451, + 3605, 0, 3449, + 3603, 0, 3447, + 3599, 0, 3445, + 3595, 0, 3441, + 3591, 0, 3435, + 3585, 0, 3427, + 3575, 0, 3417, + 3563, 594, 3403, + 3545, 1714, 3385, + 3521, 2077, 3357, + 3485, 2327, 3319, + 3435, 2531, 3261, + 3355, 2711, 3171, + 3221, 2875, 3011, + 2945, 3031, 2639, + 0, 3179, 0, + 0, 3323, 0, + 0, 3463, 0, + 0, 3603, 0, + 0, 3739, 0, + 0, 3875, 0, + 0, 4009, 0, + 3739, 0, 3579, + 3739, 0, 3579, + 3739, 0, 3579, + 3739, 0, 3579, + 3739, 0, 3579, + 3739, 0, 3577, + 3739, 0, 3577, + 3739, 0, 3577, + 3737, 0, 3577, + 3737, 0, 3575, + 3735, 0, 3575, + 3733, 0, 3573, + 3731, 0, 3571, + 3729, 0, 3567, + 3725, 0, 3563, + 3721, 0, 3557, + 3713, 0, 3549, + 3705, 0, 3539, + 3691, 0, 3525, + 3673, 1776, 3505, + 3649, 2179, 3479, + 3615, 2443, 3439, + 3563, 2653, 3379, + 3483, 2835, 3285, + 3347, 3003, 3119, + 3065, 3159, 2711, + 0, 3309, 0, + 0, 3453, 0, + 0, 3595, 0, + 0, 3733, 0, + 0, 3871, 0, + 0, 4007, 0, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3703, + 3869, 0, 3701, + 3867, 0, 3701, + 3867, 0, 3701, + 3865, 0, 3699, + 3863, 0, 3697, + 3861, 0, 3695, + 3859, 0, 3691, + 3855, 0, 3687, + 3851, 0, 3683, + 3843, 0, 3675, + 3835, 0, 3663, + 3821, 0, 3649, + 3803, 1849, 3629, + 3779, 2287, 3601, + 3743, 2561, 3561, + 3691, 2777, 3499, + 3611, 2963, 3403, + 3475, 3131, 3231, + 3189, 3289, 2793, + 0, 3439, 0, + 0, 3583, 0, + 0, 3725, 0, + 0, 3865, 0, + 0, 4001, 0, + 4001, 0, 3831, + 4001, 0, 3831, + 4001, 0, 3831, + 4001, 0, 3831, + 4001, 0, 3831, + 4001, 0, 3831, + 3999, 0, 3829, + 3999, 0, 3829, + 3999, 0, 3829, + 3999, 0, 3829, + 3999, 0, 3827, + 3997, 0, 3827, + 3997, 0, 3825, + 3995, 0, 3823, + 3993, 0, 3821, + 3989, 0, 3819, + 3985, 0, 3815, + 3981, 0, 3809, + 3975, 0, 3801, + 3965, 0, 3791, + 3951, 0, 3775, + 3935, 1931, 3755, + 3909, 2401, 3727, + 3873, 2683, 3685, + 3821, 2903, 3623, + 3741, 3091, 3525, + 3603, 3261, 3347, + 3313, 3419, 2883, + 0, 3569, 0, + 0, 3715, 0, + 0, 3857, 0, + 0, 3997, 0, + 4095, 0, 3959, + 4095, 0, 3959, + 4095, 0, 3959, + 4095, 0, 3959, + 4095, 0, 3959, + 4095, 0, 3959, + 4095, 0, 3959, + 4095, 0, 3957, + 4095, 0, 3957, + 4095, 0, 3957, + 4095, 0, 3957, + 4095, 0, 3955, + 4095, 0, 3955, + 4095, 0, 3953, + 4095, 0, 3951, + 4095, 0, 3949, + 4095, 0, 3947, + 4095, 0, 3943, + 4095, 0, 3937, + 4095, 0, 3929, + 4095, 0, 3917, + 4083, 0, 3903, + 4065, 2021, 3883, + 4041, 2519, 3853, + 4005, 2809, 3811, + 3951, 3031, 3749, + 3871, 3219, 3649, + 3733, 3391, 3467, + 3441, 3549, 2981, + 0, 3701, 0, + 0, 3847, 0, + 0, 3989, 0, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4087, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4083, + 4095, 0, 4083, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4075, + 4095, 0, 4071, + 4095, 0, 4065, + 4095, 0, 4057, + 4095, 0, 4047, + 4095, 0, 4031, + 4095, 2119, 4011, + 4095, 2639, 3981, + 4095, 2935, 3939, + 4083, 3159, 3877, + 4001, 3349, 3775, + 3863, 3521, 3591, + 3569, 3681, 3087, + 0, 3831, 0, + 0, 3977, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2225, 4095, + 4095, 2763, 4095, + 4095, 3063, 4069, + 4095, 3289, 4005, + 4095, 3479, 3903, + 3993, 3651, 3715, + 3699, 3811, 3197, + 0, 3963, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2335, 4095, + 4095, 2889, 4095, + 4095, 3191, 4095, + 4095, 3419, 4095, + 4095, 3611, 4031, + 4095, 3783, 3843, + 3829, 3943, 3313, + 2035, 1592, 2447, + 2032, 1596, 2445, + 2027, 1601, 2445, + 2021, 1608, 2443, + 2012, 1617, 2439, + 2000, 1629, 2435, + 1983, 1644, 2431, + 1960, 1663, 2425, + 1927, 1688, 2415, + 1879, 1719, 2403, + 1805, 1757, 2387, + 1684, 1804, 2363, + 1443, 1860, 2329, + 219, 1926, 2281, + 0, 2001, 2205, + 0, 2085, 2079, + 0, 2177, 1827, + 0, 2277, 0, + 0, 2385, 0, + 0, 2497, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2857, 0, + 0, 2981, 0, + 0, 3109, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2040, 1592, 2447, + 2036, 1596, 2447, + 2032, 1601, 2445, + 2025, 1607, 2443, + 2017, 1616, 2441, + 2005, 1628, 2437, + 1988, 1643, 2433, + 1965, 1662, 2425, + 1933, 1687, 2417, + 1885, 1718, 2405, + 1813, 1757, 2387, + 1693, 1804, 2365, + 1459, 1860, 2331, + 414, 1925, 2281, + 0, 2000, 2207, + 0, 2085, 2081, + 0, 2177, 1831, + 0, 2277, 16, + 0, 2385, 0, + 0, 2497, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2857, 0, + 0, 2981, 0, + 0, 3109, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2046, 1591, 2449, + 2042, 1595, 2449, + 2038, 1600, 2447, + 2031, 1607, 2445, + 2023, 1616, 2443, + 2011, 1627, 2439, + 1995, 1642, 2433, + 1972, 1662, 2427, + 1940, 1687, 2419, + 1894, 1718, 2407, + 1822, 1756, 2389, + 1706, 1803, 2367, + 1480, 1859, 2333, + 588, 1925, 2285, + 0, 2000, 2209, + 0, 2085, 2085, + 0, 2177, 1838, + 0, 2277, 270, + 0, 2385, 0, + 0, 2497, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2053, 1590, 2451, + 2051, 1594, 2451, + 2046, 1599, 2449, + 2039, 1606, 2447, + 2031, 1615, 2445, + 2019, 1626, 2441, + 2004, 1641, 2437, + 1981, 1661, 2429, + 1950, 1686, 2421, + 1904, 1717, 2409, + 1835, 1756, 2393, + 1722, 1803, 2369, + 1507, 1859, 2335, + 749, 1924, 2287, + 0, 2000, 2213, + 0, 2083, 2089, + 0, 2177, 1846, + 0, 2277, 476, + 0, 2383, 0, + 0, 2497, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2063, 1588, 2455, + 2061, 1592, 2453, + 2055, 1597, 2453, + 2049, 1604, 2451, + 2042, 1613, 2447, + 2030, 1625, 2443, + 2015, 1640, 2439, + 1993, 1660, 2433, + 1963, 1685, 2423, + 1918, 1716, 2411, + 1851, 1755, 2395, + 1743, 1802, 2373, + 1540, 1858, 2339, + 902, 1924, 2291, + 0, 1999, 2217, + 0, 2083, 2097, + 0, 2177, 1857, + 0, 2277, 657, + 0, 2383, 0, + 0, 2495, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2077, 1586, 2459, + 2073, 1590, 2457, + 2069, 1596, 2455, + 2063, 1602, 2453, + 2055, 1611, 2451, + 2045, 1623, 2447, + 2030, 1638, 2443, + 2009, 1658, 2437, + 1979, 1683, 2429, + 1937, 1714, 2417, + 1872, 1753, 2399, + 1769, 1801, 2377, + 1580, 1857, 2345, + 1048, 1923, 2297, + 0, 1998, 2225, + 0, 2083, 2105, + 0, 2175, 1871, + 0, 2277, 822, + 0, 2383, 0, + 0, 2495, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2095, 1584, 2463, + 2091, 1588, 2463, + 2087, 1593, 2461, + 2081, 1600, 2459, + 2073, 1609, 2457, + 2063, 1621, 2453, + 2049, 1636, 2449, + 2029, 1656, 2441, + 2000, 1681, 2433, + 1960, 1712, 2421, + 1899, 1751, 2405, + 1802, 1799, 2383, + 1630, 1855, 2351, + 1191, 1922, 2303, + 0, 1997, 2233, + 0, 2081, 2115, + 0, 2175, 1889, + 0, 2275, 977, + 0, 2383, 0, + 0, 2495, 0, + 0, 2613, 0, + 0, 2733, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2117, 1580, 2471, + 2113, 1584, 2469, + 2109, 1590, 2467, + 2103, 1597, 2465, + 2097, 1606, 2463, + 2087, 1618, 2459, + 2073, 1633, 2455, + 2053, 1653, 2449, + 2027, 1678, 2441, + 1989, 1710, 2429, + 1932, 1749, 2413, + 1843, 1797, 2391, + 1688, 1854, 2359, + 1331, 1920, 2313, + 0, 1996, 2243, + 0, 2081, 2129, + 0, 2175, 1912, + 0, 2275, 1126, + 0, 2383, 0, + 0, 2495, 0, + 0, 2611, 0, + 0, 2733, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2143, 1576, 2479, + 2141, 1580, 2477, + 2137, 1585, 2477, + 2133, 1592, 2475, + 2125, 1601, 2473, + 2117, 1613, 2469, + 2103, 1629, 2465, + 2085, 1649, 2459, + 2061, 1674, 2449, + 2025, 1706, 2439, + 1973, 1746, 2423, + 1893, 1794, 2401, + 1756, 1851, 2371, + 1469, 1918, 2325, + 0, 1994, 2257, + 0, 2079, 2147, + 0, 2173, 1941, + 0, 2273, 1270, + 0, 2381, 0, + 0, 2495, 0, + 0, 2611, 0, + 0, 2731, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2179, 1569, 2491, + 2175, 1573, 2489, + 2173, 1579, 2487, + 2167, 1586, 2487, + 2161, 1595, 2483, + 2153, 1607, 2481, + 2141, 1623, 2475, + 2125, 1643, 2471, + 2103, 1669, 2461, + 2069, 1701, 2451, + 2023, 1741, 2435, + 1951, 1790, 2415, + 1834, 1848, 2385, + 1605, 1915, 2341, + 668, 1991, 2277, + 0, 2077, 2171, + 0, 2171, 1977, + 0, 2273, 1411, + 0, 2381, 0, + 0, 2493, 0, + 0, 2611, 0, + 0, 2731, 0, + 0, 2855, 0, + 0, 2981, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2221, 1561, 2505, + 2219, 1565, 2505, + 2215, 1570, 2503, + 2211, 1578, 2501, + 2205, 1587, 2499, + 2197, 1599, 2495, + 2187, 1615, 2491, + 2173, 1636, 2485, + 2153, 1662, 2477, + 2123, 1695, 2467, + 2081, 1736, 2453, + 2020, 1785, 2433, + 1920, 1843, 2403, + 1741, 1911, 2361, + 1266, 1988, 2299, + 0, 2075, 2201, + 0, 2169, 2022, + 0, 2271, 1549, + 0, 2379, 0, + 0, 2493, 0, + 0, 2609, 0, + 0, 2731, 0, + 0, 2855, 0, + 0, 2979, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2273, 1549, 2525, + 2271, 1553, 2523, + 2267, 1559, 2521, + 2263, 1566, 2521, + 2259, 1576, 2519, + 2251, 1589, 2515, + 2243, 1605, 2511, + 2229, 1626, 2505, + 2211, 1653, 2497, + 2187, 1686, 2487, + 2151, 1727, 2473, + 2097, 1777, 2455, + 2015, 1837, 2427, + 1875, 1905, 2387, + 1576, 1983, 2329, + 0, 2071, 2237, + 0, 2165, 2075, + 0, 2269, 1686, + 0, 2377, 0, + 0, 2491, 0, + 0, 2609, 0, + 0, 2729, 0, + 0, 2853, 0, + 0, 2979, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2333, 1532, 2549, + 2331, 1537, 2547, + 2329, 1543, 2547, + 2325, 1550, 2545, + 2321, 1560, 2543, + 2315, 1574, 2539, + 2307, 1591, 2537, + 2295, 1612, 2531, + 2281, 1640, 2523, + 2259, 1674, 2515, + 2229, 1717, 2501, + 2183, 1768, 2483, + 2117, 1828, 2457, + 2009, 1898, 2421, + 1807, 1977, 2367, + 1178, 2065, 2283, + 0, 2161, 2137, + 0, 2265, 1822, + 0, 2375, 0, + 0, 2489, 0, + 0, 2607, 0, + 0, 2729, 0, + 0, 2853, 0, + 0, 2979, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2403, 1510, 2579, + 2401, 1514, 2579, + 2399, 1520, 2577, + 2397, 1528, 2575, + 2393, 1539, 2573, + 2389, 1553, 2571, + 2381, 1571, 2567, + 2371, 1593, 2563, + 2359, 1622, 2557, + 2341, 1658, 2547, + 2315, 1701, 2535, + 2279, 1754, 2517, + 2225, 1816, 2495, + 2143, 1888, 2461, + 2001, 1969, 2411, + 1696, 2059, 2335, + 0, 2157, 2209, + 0, 2261, 1957, + 0, 2371, 0, + 0, 2485, 0, + 0, 2605, 0, + 0, 2727, 0, + 0, 2851, 0, + 0, 2977, 0, + 0, 3105, 0, + 0, 3235, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2483, 1477, 2617, + 2481, 1482, 2617, + 2481, 1489, 2615, + 2477, 1497, 2615, + 2475, 1509, 2613, + 2471, 1523, 2609, + 2465, 1542, 2607, + 2457, 1566, 2603, + 2445, 1597, 2597, + 2431, 1634, 2587, + 2411, 1680, 2577, + 2381, 1735, 2561, + 2339, 1800, 2539, + 2275, 1874, 2509, + 2175, 1957, 2465, + 1990, 2049, 2399, + 1485, 2149, 2291, + 0, 2255, 2091, + 0, 2367, 1476, + 0, 2483, 0, + 0, 2603, 0, + 0, 2725, 0, + 0, 2849, 0, + 0, 2977, 0, + 0, 3105, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2571, 1430, 2663, + 2571, 1435, 2663, + 2569, 1443, 2661, + 2567, 1452, 2661, + 2565, 1465, 2659, + 2561, 1481, 2657, + 2557, 1502, 2653, + 2549, 1528, 2649, + 2541, 1561, 2645, + 2529, 1602, 2637, + 2513, 1651, 2627, + 2489, 1709, 2613, + 2457, 1777, 2595, + 2409, 1855, 2567, + 2335, 1941, 2529, + 2213, 2036, 2471, + 1974, 2139, 2381, + 782, 2247, 2225, + 0, 2359, 1859, + 0, 2477, 0, + 0, 2599, 0, + 0, 2721, 0, + 0, 2847, 0, + 0, 2975, 0, + 0, 3103, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2669, 1358, 2719, + 2667, 1364, 2719, + 2667, 1373, 2717, + 2665, 1384, 2717, + 2663, 1398, 2715, + 2659, 1417, 2713, + 2655, 1441, 2711, + 2651, 1471, 2707, + 2643, 1508, 2703, + 2635, 1553, 2695, + 2621, 1608, 2687, + 2603, 1672, 2675, + 2577, 1745, 2659, + 2541, 1828, 2635, + 2487, 1919, 2601, + 2405, 2018, 2553, + 2261, 2123, 2479, + 1953, 2235, 2357, + 0, 2351, 2115, + 0, 2471, 847, + 0, 2593, 0, + 0, 2717, 0, + 0, 2845, 0, + 0, 2973, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2771, 1239, 2783, + 2771, 1248, 2783, + 2771, 1259, 2783, + 2769, 1273, 2781, + 2767, 1291, 2781, + 2765, 1315, 2779, + 2763, 1344, 2777, + 2757, 1381, 2773, + 2753, 1426, 2769, + 2745, 1480, 2763, + 2735, 1543, 2757, + 2721, 1616, 2745, + 2701, 1698, 2731, + 2673, 1789, 2711, + 2635, 1888, 2685, + 2575, 1993, 2645, + 2483, 2105, 2585, + 2319, 2219, 2491, + 1922, 2339, 2323, + 0, 2461, 1913, + 0, 2587, 0, + 0, 2713, 0, + 0, 2841, 0, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 2881, 1008, 2859, + 2881, 1022, 2857, + 2881, 1039, 2857, + 2879, 1062, 2857, + 2877, 1091, 2855, + 2877, 1127, 2853, + 2873, 1171, 2851, + 2871, 1224, 2849, + 2867, 1286, 2845, + 2861, 1358, 2841, + 2853, 1439, 2835, + 2841, 1529, 2827, + 2827, 1627, 2815, + 2807, 1731, 2799, + 2777, 1842, 2775, + 2735, 1957, 2743, + 2671, 2077, 2695, + 2569, 2199, 2623, + 2385, 2323, 2505, + 1878, 2449, 2273, + 0, 2577, 1276, + 0, 2705, 0, + 0, 2835, 0, + 0, 2965, 0, + 0, 3097, 0, + 0, 3227, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 2995, 13, 2941, + 2995, 124, 2941, + 2995, 239, 2941, + 2995, 358, 2941, + 2993, 481, 2939, + 2991, 605, 2939, + 2989, 731, 2937, + 2987, 859, 2935, + 2985, 988, 2931, + 2979, 1117, 2927, + 2973, 1248, 2923, + 2965, 1378, 2915, + 2955, 1510, 2905, + 2939, 1641, 2893, + 2917, 1772, 2873, + 2887, 1904, 2847, + 2841, 2036, 2811, + 2775, 2167, 2755, + 2665, 2299, 2671, + 2461, 2431, 2523, + 1811, 2563, 2195, + 0, 2695, 0, + 0, 2827, 0, + 0, 2959, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3115, 0, 3035, + 3115, 0, 3033, + 3113, 0, 3033, + 3113, 0, 3033, + 3113, 0, 3033, + 3111, 0, 3031, + 3109, 0, 3029, + 3107, 0, 3029, + 3105, 0, 3025, + 3101, 0, 3023, + 3097, 700, 3019, + 3091, 1040, 3013, + 3083, 1282, 3005, + 3071, 1482, 2993, + 3055, 1659, 2979, + 3033, 1822, 2959, + 3001, 1976, 2931, + 2955, 2123, 2889, + 2883, 2267, 2825, + 2769, 2407, 2727, + 2545, 2545, 2545, + 1703, 2683, 2065, + 0, 2817, 0, + 0, 2953, 0, + 0, 3087, 0, + 0, 3221, 0, + 0, 3353, 0, + 0, 3487, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4017, 0, + 3237, 0, 3133, + 3235, 0, 3133, + 3235, 0, 3133, + 3235, 0, 3133, + 3235, 0, 3133, + 3233, 0, 3131, + 3233, 0, 3131, + 3231, 0, 3129, + 3229, 0, 3127, + 3227, 0, 3125, + 3223, 0, 3121, + 3219, 0, 3117, + 3211, 360, 3111, + 3203, 1109, 3101, + 3191, 1442, 3091, + 3175, 1682, 3075, + 3151, 1881, 3053, + 3119, 2057, 3021, + 3071, 2219, 2975, + 2997, 2373, 2905, + 2877, 2521, 2791, + 2639, 2663, 2575, + 1500, 2805, 1801, + 0, 2943, 0, + 0, 3079, 0, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3361, 0, 3241, + 3359, 0, 3239, + 3359, 0, 3239, + 3359, 0, 3239, + 3359, 0, 3239, + 3359, 0, 3239, + 3357, 0, 3237, + 3357, 0, 3237, + 3355, 0, 3235, + 3353, 0, 3233, + 3351, 0, 3231, + 3347, 0, 3227, + 3341, 0, 3221, + 3335, 0, 3215, + 3327, 673, 3207, + 3315, 1383, 3193, + 3297, 1711, 3177, + 3273, 1949, 3153, + 3241, 2147, 3119, + 3191, 2323, 3069, + 3115, 2485, 2993, + 2991, 2637, 2867, + 2741, 2785, 2611, + 867, 2929, 0, + 0, 3069, 0, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3487, 0, 3351, + 3487, 0, 3351, + 3485, 0, 3351, + 3485, 0, 3351, + 3485, 0, 3351, + 3485, 0, 3351, + 3485, 0, 3349, + 3483, 0, 3349, + 3483, 0, 3347, + 3481, 0, 3347, + 3479, 0, 3345, + 3475, 0, 3341, + 3473, 0, 3337, + 3467, 0, 3333, + 3461, 0, 3325, + 3451, 0, 3317, + 3439, 1290, 3303, + 3423, 1748, 3285, + 3399, 2027, 3261, + 3365, 2245, 3225, + 3315, 2431, 3171, + 3237, 2601, 3091, + 3109, 2759, 2951, + 2847, 2909, 2655, + 0, 3055, 0, + 0, 3197, 0, + 0, 3335, 0, + 0, 3473, 0, + 0, 3609, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3613, 0, 3469, + 3613, 0, 3469, + 3613, 0, 3469, + 3613, 0, 3467, + 3613, 0, 3467, + 3613, 0, 3467, + 3613, 0, 3467, + 3611, 0, 3465, + 3611, 0, 3465, + 3609, 0, 3463, + 3609, 0, 3463, + 3607, 0, 3461, + 3603, 0, 3457, + 3599, 0, 3453, + 3595, 0, 3447, + 3587, 0, 3441, + 3579, 0, 3431, + 3567, 1125, 3417, + 3549, 1792, 3399, + 3525, 2113, 3373, + 3491, 2349, 3335, + 3439, 2545, 3281, + 3361, 2721, 3193, + 3231, 2883, 3043, + 2961, 3035, 2709, + 0, 3183, 0, + 0, 3325, 0, + 0, 3465, 0, + 0, 3603, 0, + 0, 3739, 0, + 0, 3875, 0, + 0, 4009, 0, + 3743, 0, 3589, + 3743, 0, 3589, + 3743, 0, 3589, + 3743, 0, 3587, + 3741, 0, 3587, + 3741, 0, 3587, + 3741, 0, 3587, + 3741, 0, 3587, + 3741, 0, 3585, + 3739, 0, 3585, + 3739, 0, 3583, + 3737, 0, 3581, + 3735, 0, 3579, + 3731, 0, 3577, + 3729, 0, 3573, + 3723, 0, 3567, + 3717, 0, 3559, + 3707, 0, 3549, + 3695, 726, 3537, + 3677, 1846, 3517, + 3653, 2209, 3489, + 3617, 2459, 3451, + 3567, 2663, 3393, + 3487, 2843, 3303, + 3353, 3007, 3145, + 3077, 3163, 2771, + 0, 3311, 0, + 0, 3455, 0, + 0, 3595, 0, + 0, 3735, 0, + 0, 3871, 0, + 0, 4007, 0, + 3871, 0, 3711, + 3871, 0, 3711, + 3871, 0, 3711, + 3871, 0, 3711, + 3871, 0, 3711, + 3871, 0, 3711, + 3871, 0, 3711, + 3871, 0, 3709, + 3871, 0, 3709, + 3869, 0, 3709, + 3869, 0, 3707, + 3867, 0, 3707, + 3867, 0, 3705, + 3863, 0, 3703, + 3861, 0, 3699, + 3857, 0, 3695, + 3853, 0, 3689, + 3845, 0, 3683, + 3837, 0, 3671, + 3823, 0, 3657, + 3807, 1909, 3637, + 3781, 2311, 3611, + 3747, 2575, 3571, + 3695, 2785, 3511, + 3615, 2969, 3417, + 3479, 3135, 3251, + 3197, 3291, 2843, + 0, 3441, 0, + 0, 3585, 0, + 0, 3727, 0, + 0, 3865, 0, + 0, 4003, 0, + 4003, 0, 3837, + 4003, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 4001, 0, 3835, + 3999, 0, 3833, + 3999, 0, 3833, + 3997, 0, 3831, + 3997, 0, 3829, + 3995, 0, 3827, + 3991, 0, 3825, + 3987, 0, 3819, + 3983, 0, 3815, + 3975, 0, 3807, + 3967, 0, 3797, + 3953, 0, 3781, + 3935, 1981, 3761, + 3911, 2419, 3733, + 3875, 2693, 3693, + 3823, 2909, 3633, + 3743, 3095, 3535, + 3607, 3263, 3363, + 3321, 3421, 2925, + 0, 3571, 0, + 0, 3715, 0, + 0, 3857, 0, + 0, 3997, 0, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3963, + 4095, 0, 3961, + 4095, 0, 3961, + 4095, 0, 3961, + 4095, 0, 3961, + 4095, 0, 3959, + 4095, 0, 3957, + 4095, 0, 3957, + 4095, 0, 3953, + 4095, 0, 3951, + 4095, 0, 3947, + 4095, 0, 3941, + 4095, 0, 3933, + 4095, 0, 3923, + 4083, 0, 3907, + 4067, 2063, 3887, + 4041, 2533, 3859, + 4005, 2815, 3817, + 3953, 3035, 3755, + 3873, 3223, 3657, + 3735, 3393, 3479, + 3447, 3551, 3015, + 0, 3701, 0, + 0, 3847, 0, + 0, 3989, 0, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4089, + 4095, 0, 4089, + 4095, 0, 4089, + 4095, 0, 4089, + 4095, 0, 4087, + 4095, 0, 4085, + 4095, 0, 4085, + 4095, 0, 4081, + 4095, 0, 4079, + 4095, 0, 4075, + 4095, 0, 4069, + 4095, 0, 4061, + 4095, 0, 4049, + 4095, 0, 4035, + 4095, 2153, 4015, + 4095, 2651, 3985, + 4095, 2941, 3945, + 4085, 3163, 3881, + 4003, 3351, 3781, + 3865, 3523, 3599, + 3573, 3681, 3115, + 0, 3833, 0, + 0, 3979, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2251, 4095, + 4095, 2771, 4095, + 4095, 3067, 4071, + 4095, 3291, 4009, + 4095, 3481, 3907, + 3995, 3653, 3723, + 3701, 3813, 3219, + 0, 3963, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2357, 4095, + 4095, 2895, 4095, + 4095, 3195, 4095, + 4095, 3421, 4095, + 4095, 3611, 4035, + 4095, 3783, 3847, + 3831, 3943, 3329, + 2167, 1722, 2579, + 2165, 1725, 2577, + 2161, 1729, 2577, + 2155, 1734, 2575, + 2149, 1741, 2573, + 2141, 1749, 2571, + 2129, 1761, 2567, + 2111, 1776, 2563, + 2089, 1795, 2555, + 2055, 1820, 2547, + 2006, 1851, 2535, + 1932, 1890, 2517, + 1809, 1937, 2493, + 1563, 1992, 2461, + 119, 2057, 2411, + 0, 2133, 2335, + 0, 2217, 2209, + 0, 2309, 1955, + 0, 2409, 0, + 0, 2517, 0, + 0, 2629, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2989, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2171, 1722, 2579, + 2167, 1724, 2579, + 2165, 1728, 2577, + 2159, 1733, 2577, + 2153, 1740, 2575, + 2145, 1749, 2571, + 2133, 1761, 2569, + 2115, 1776, 2563, + 2093, 1795, 2557, + 2059, 1820, 2547, + 2011, 1851, 2535, + 1938, 1889, 2519, + 1816, 1936, 2495, + 1575, 1992, 2461, + 351, 2057, 2413, + 0, 2133, 2337, + 0, 2217, 2211, + 0, 2309, 1959, + 0, 2409, 0, + 0, 2517, 0, + 0, 2629, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2989, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2175, 1721, 2581, + 2173, 1724, 2581, + 2169, 1728, 2579, + 2163, 1733, 2577, + 2157, 1740, 2575, + 2149, 1748, 2573, + 2137, 1760, 2569, + 2121, 1775, 2565, + 2097, 1795, 2557, + 2065, 1819, 2549, + 2017, 1850, 2537, + 1945, 1889, 2519, + 1825, 1936, 2497, + 1592, 1992, 2463, + 546, 2057, 2413, + 0, 2133, 2339, + 0, 2217, 2213, + 0, 2309, 1964, + 0, 2409, 148, + 0, 2517, 0, + 0, 2629, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2989, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2181, 1720, 2583, + 2177, 1723, 2581, + 2175, 1727, 2581, + 2169, 1732, 2579, + 2163, 1739, 2577, + 2155, 1748, 2575, + 2143, 1759, 2571, + 2127, 1774, 2567, + 2105, 1794, 2559, + 2073, 1819, 2551, + 2026, 1850, 2539, + 1955, 1888, 2521, + 1838, 1935, 2499, + 1612, 1991, 2465, + 720, 2057, 2417, + 0, 2133, 2341, + 0, 2217, 2217, + 0, 2309, 1970, + 0, 2409, 403, + 0, 2517, 0, + 0, 2629, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2989, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2189, 1719, 2585, + 2185, 1722, 2583, + 2183, 1726, 2583, + 2177, 1731, 2581, + 2171, 1738, 2579, + 2163, 1747, 2577, + 2151, 1758, 2573, + 2135, 1774, 2569, + 2113, 1793, 2561, + 2083, 1818, 2553, + 2036, 1849, 2541, + 1967, 1888, 2525, + 1854, 1935, 2501, + 1639, 1991, 2467, + 881, 2057, 2419, + 0, 2131, 2345, + 0, 2217, 2223, + 0, 2309, 1978, + 0, 2409, 608, + 0, 2515, 0, + 0, 2629, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2989, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2199, 1718, 2587, + 2195, 1721, 2587, + 2193, 1724, 2585, + 2189, 1730, 2585, + 2181, 1736, 2583, + 2173, 1745, 2579, + 2163, 1757, 2577, + 2147, 1772, 2571, + 2125, 1792, 2565, + 2095, 1817, 2557, + 2051, 1848, 2545, + 1984, 1887, 2527, + 1875, 1934, 2505, + 1672, 1990, 2471, + 1033, 2055, 2423, + 0, 2131, 2349, + 0, 2215, 2229, + 0, 2309, 1989, + 0, 2409, 789, + 0, 2515, 0, + 0, 2627, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2987, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2211, 1716, 2591, + 2209, 1719, 2591, + 2205, 1723, 2589, + 2201, 1728, 2587, + 2195, 1735, 2587, + 2187, 1744, 2583, + 2177, 1755, 2579, + 2161, 1771, 2575, + 2141, 1790, 2569, + 2111, 1815, 2561, + 2069, 1847, 2549, + 2004, 1885, 2531, + 1901, 1933, 2509, + 1712, 1989, 2477, + 1180, 2055, 2429, + 0, 2131, 2357, + 0, 2215, 2237, + 0, 2307, 2003, + 0, 2409, 954, + 0, 2515, 0, + 0, 2627, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2987, 0, + 0, 3113, 0, + 0, 3239, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2229, 1713, 2597, + 2227, 1716, 2595, + 2223, 1720, 2595, + 2219, 1725, 2593, + 2213, 1732, 2591, + 2205, 1741, 2589, + 2195, 1753, 2585, + 2181, 1768, 2581, + 2161, 1788, 2575, + 2133, 1813, 2565, + 2091, 1845, 2553, + 2031, 1884, 2537, + 1935, 1931, 2515, + 1762, 1988, 2483, + 1323, 2053, 2435, + 0, 2129, 2365, + 0, 2215, 2247, + 0, 2307, 2021, + 0, 2407, 1109, + 0, 2515, 0, + 0, 2627, 0, + 0, 2745, 0, + 0, 2865, 0, + 0, 2987, 0, + 0, 3113, 0, + 0, 3239, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2251, 1710, 2603, + 2249, 1713, 2603, + 2245, 1716, 2601, + 2241, 1722, 2599, + 2235, 1729, 2597, + 2229, 1738, 2595, + 2219, 1750, 2591, + 2205, 1765, 2587, + 2185, 1785, 2581, + 2159, 1810, 2573, + 2121, 1842, 2561, + 2065, 1881, 2545, + 1975, 1929, 2523, + 1820, 1986, 2491, + 1463, 2053, 2445, + 0, 2127, 2375, + 0, 2213, 2261, + 0, 2307, 2044, + 0, 2407, 1258, + 0, 2515, 0, + 0, 2627, 0, + 0, 2743, 0, + 0, 2865, 0, + 0, 2987, 0, + 0, 3113, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2279, 1705, 2611, + 2275, 1708, 2611, + 2273, 1712, 2609, + 2269, 1717, 2609, + 2265, 1724, 2607, + 2257, 1733, 2605, + 2249, 1745, 2601, + 2235, 1761, 2597, + 2217, 1781, 2591, + 2193, 1806, 2581, + 2157, 1838, 2571, + 2105, 1878, 2555, + 2025, 1926, 2533, + 1888, 1983, 2503, + 1601, 2049, 2457, + 0, 2127, 2389, + 0, 2211, 2281, + 0, 2305, 2073, + 0, 2407, 1402, + 0, 2513, 0, + 0, 2627, 0, + 0, 2743, 0, + 0, 2863, 0, + 0, 2987, 0, + 0, 3113, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2313, 1698, 2623, + 2311, 1701, 2623, + 2309, 1706, 2621, + 2305, 1711, 2619, + 2299, 1718, 2619, + 2293, 1727, 2615, + 2285, 1739, 2613, + 2273, 1755, 2609, + 2257, 1776, 2603, + 2235, 1801, 2595, + 2203, 1834, 2583, + 2155, 1874, 2567, + 2083, 1922, 2547, + 1966, 1980, 2517, + 1738, 2047, 2473, + 801, 2123, 2409, + 0, 2209, 2303, + 0, 2303, 2109, + 0, 2405, 1543, + 0, 2513, 0, + 0, 2625, 0, + 0, 2743, 0, + 0, 2863, 0, + 0, 2987, 0, + 0, 3113, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2355, 1690, 2637, + 2353, 1693, 2637, + 2351, 1697, 2637, + 2347, 1702, 2635, + 2343, 1710, 2633, + 2337, 1719, 2631, + 2329, 1732, 2627, + 2319, 1748, 2623, + 2305, 1768, 2617, + 2285, 1794, 2609, + 2255, 1827, 2599, + 2213, 1868, 2585, + 2151, 1917, 2565, + 2053, 1975, 2535, + 1873, 2043, 2495, + 1398, 2121, 2431, + 0, 2207, 2333, + 0, 2301, 2153, + 0, 2403, 1682, + 0, 2511, 0, + 0, 2625, 0, + 0, 2741, 0, + 0, 2863, 0, + 0, 2987, 0, + 0, 3111, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2407, 1678, 2657, + 2405, 1681, 2657, + 2403, 1685, 2655, + 2399, 1691, 2655, + 2395, 1698, 2653, + 2391, 1708, 2651, + 2383, 1721, 2647, + 2375, 1737, 2643, + 2361, 1758, 2637, + 2343, 1785, 2631, + 2319, 1818, 2619, + 2283, 1860, 2605, + 2229, 1909, 2587, + 2147, 1969, 2559, + 2007, 2037, 2521, + 1708, 2115, 2461, + 0, 2203, 2369, + 0, 2297, 2207, + 0, 2401, 1818, + 0, 2509, 0, + 0, 2623, 0, + 0, 2741, 0, + 0, 2861, 0, + 0, 2985, 0, + 0, 3111, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2467, 1661, 2681, + 2465, 1665, 2681, + 2463, 1669, 2679, + 2461, 1675, 2679, + 2457, 1683, 2677, + 2453, 1693, 2675, + 2447, 1706, 2673, + 2439, 1723, 2669, + 2427, 1744, 2663, + 2413, 1772, 2655, + 2391, 1806, 2647, + 2361, 1849, 2633, + 2317, 1900, 2615, + 2249, 1960, 2589, + 2141, 2030, 2553, + 1939, 2109, 2499, + 1310, 2197, 2415, + 0, 2293, 2269, + 0, 2397, 1954, + 0, 2507, 0, + 0, 2621, 0, + 0, 2739, 0, + 0, 2861, 0, + 0, 2985, 0, + 0, 3111, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2537, 1638, 2711, + 2535, 1642, 2711, + 2535, 1646, 2711, + 2531, 1653, 2709, + 2529, 1661, 2707, + 2525, 1671, 2705, + 2521, 1685, 2703, + 2513, 1703, 2699, + 2503, 1725, 2695, + 2491, 1754, 2689, + 2473, 1790, 2679, + 2447, 1834, 2667, + 2411, 1886, 2651, + 2357, 1948, 2627, + 2275, 2020, 2593, + 2133, 2101, 2543, + 1828, 2191, 2467, + 0, 2289, 2341, + 0, 2393, 2089, + 0, 2503, 0, + 0, 2619, 0, + 0, 2737, 0, + 0, 2859, 0, + 0, 2983, 0, + 0, 3109, 0, + 0, 3237, 0, + 0, 3367, 0, + 0, 3495, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2617, 1606, 2749, + 2615, 1609, 2749, + 2613, 1614, 2749, + 2613, 1621, 2747, + 2609, 1630, 2747, + 2607, 1641, 2745, + 2603, 1656, 2741, + 2597, 1674, 2739, + 2589, 1699, 2735, + 2577, 1729, 2729, + 2563, 1767, 2719, + 2543, 1813, 2709, + 2513, 1868, 2693, + 2471, 1932, 2671, + 2407, 2006, 2641, + 2307, 2089, 2597, + 2121, 2181, 2531, + 1617, 2281, 2423, + 0, 2387, 2223, + 0, 2499, 1608, + 0, 2615, 0, + 0, 2735, 0, + 0, 2857, 0, + 0, 2981, 0, + 0, 3109, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2705, 1558, 2797, + 2703, 1562, 2795, + 2703, 1568, 2795, + 2701, 1575, 2795, + 2699, 1584, 2793, + 2697, 1597, 2791, + 2693, 1613, 2789, + 2689, 1634, 2787, + 2683, 1660, 2781, + 2673, 1693, 2777, + 2661, 1734, 2769, + 2645, 1783, 2759, + 2621, 1841, 2745, + 2589, 1909, 2727, + 2541, 1987, 2699, + 2467, 2073, 2661, + 2345, 2169, 2603, + 2107, 2271, 2513, + 914, 2379, 2357, + 0, 2491, 1991, + 0, 2609, 0, + 0, 2731, 0, + 0, 2853, 0, + 0, 2979, 0, + 0, 3107, 0, + 0, 3235, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 2801, 1485, 2851, + 2801, 1490, 2851, + 2799, 1496, 2851, + 2799, 1505, 2849, + 2797, 1516, 2849, + 2795, 1531, 2847, + 2791, 1549, 2845, + 2787, 1573, 2843, + 2783, 1603, 2839, + 2775, 1640, 2835, + 2767, 1686, 2827, + 2753, 1740, 2819, + 2735, 1804, 2807, + 2709, 1877, 2791, + 2673, 1960, 2767, + 2619, 2051, 2735, + 2537, 2151, 2685, + 2393, 2255, 2613, + 2085, 2367, 2489, + 0, 2483, 2249, + 0, 2603, 980, + 0, 2725, 0, + 0, 2851, 0, + 0, 2977, 0, + 0, 3105, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 2905, 1365, 2917, + 2903, 1371, 2915, + 2903, 1380, 2915, + 2903, 1391, 2915, + 2901, 1405, 2913, + 2899, 1423, 2913, + 2897, 1447, 2911, + 2895, 1476, 2909, + 2891, 1513, 2905, + 2885, 1558, 2901, + 2877, 1612, 2895, + 2867, 1675, 2889, + 2853, 1748, 2877, + 2833, 1830, 2863, + 2805, 1921, 2845, + 2767, 2020, 2817, + 2707, 2125, 2777, + 2615, 2237, 2717, + 2451, 2351, 2623, + 2055, 2471, 2455, + 0, 2593, 2045, + 0, 2719, 0, + 0, 2845, 0, + 0, 2973, 0, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 3013, 1129, 2991, + 3013, 1140, 2991, + 3013, 1154, 2989, + 3013, 1172, 2989, + 3011, 1194, 2989, + 3009, 1223, 2987, + 3009, 1259, 2987, + 3005, 1303, 2985, + 3003, 1356, 2981, + 2999, 1418, 2979, + 2993, 1490, 2973, + 2985, 1571, 2967, + 2973, 1661, 2959, + 2959, 1759, 2947, + 2939, 1864, 2931, + 2909, 1974, 2907, + 2867, 2089, 2875, + 2803, 2209, 2827, + 2701, 2331, 2755, + 2517, 2455, 2637, + 2010, 2581, 2405, + 0, 2709, 1408, + 0, 2837, 0, + 0, 2967, 0, + 0, 3097, 0, + 0, 3229, 0, + 0, 3359, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3129, 41, 3075, + 3129, 145, 3075, + 3127, 256, 3073, + 3127, 371, 3073, + 3127, 491, 3073, + 3125, 613, 3071, + 3123, 737, 3071, + 3123, 864, 3069, + 3119, 991, 3067, + 3117, 1120, 3063, + 3111, 1250, 3059, + 3105, 1380, 3055, + 3097, 1511, 3047, + 3087, 1642, 3037, + 3071, 1773, 3025, + 3049, 1905, 3007, + 3019, 2036, 2981, + 2973, 2169, 2943, + 2907, 2299, 2889, + 2797, 2431, 2803, + 2593, 2563, 2655, + 1943, 2695, 2327, + 0, 2827, 0, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3247, 0, 3167, + 3247, 0, 3167, + 3247, 0, 3165, + 3245, 0, 3165, + 3245, 0, 3165, + 3245, 0, 3165, + 3243, 0, 3163, + 3241, 0, 3161, + 3239, 0, 3161, + 3237, 0, 3157, + 3233, 22, 3155, + 3229, 832, 3151, + 3223, 1172, 3145, + 3215, 1414, 3137, + 3203, 1614, 3127, + 3187, 1791, 3111, + 3165, 1954, 3091, + 3133, 2109, 3063, + 3087, 2255, 3021, + 3015, 2399, 2959, + 2901, 2539, 2859, + 2677, 2677, 2677, + 1835, 2815, 2197, + 0, 2951, 0, + 0, 3085, 0, + 0, 3219, 0, + 0, 3353, 0, + 0, 3485, 0, + 0, 3619, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 3369, 0, 3267, + 3369, 0, 3265, + 3367, 0, 3265, + 3367, 0, 3265, + 3367, 0, 3265, + 3367, 0, 3265, + 3365, 0, 3263, + 3365, 0, 3263, + 3363, 0, 3261, + 3361, 0, 3259, + 3359, 0, 3257, + 3355, 0, 3253, + 3351, 0, 3249, + 3343, 492, 3243, + 3335, 1242, 3235, + 3323, 1575, 3223, + 3307, 1814, 3207, + 3283, 2013, 3185, + 3251, 2189, 3153, + 3203, 2351, 3107, + 3129, 2505, 3037, + 3009, 2653, 2925, + 2771, 2797, 2707, + 1632, 2937, 1933, + 0, 3075, 0, + 0, 3211, 0, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3493, 0, 3373, + 3493, 0, 3373, + 3493, 0, 3373, + 3491, 0, 3371, + 3491, 0, 3371, + 3491, 0, 3371, + 3491, 0, 3371, + 3489, 0, 3369, + 3489, 0, 3369, + 3487, 0, 3367, + 3485, 0, 3365, + 3483, 0, 3363, + 3479, 0, 3359, + 3473, 0, 3353, + 3467, 0, 3347, + 3459, 805, 3339, + 3447, 1516, 3325, + 3429, 1844, 3309, + 3405, 2081, 3285, + 3373, 2279, 3251, + 3323, 2455, 3201, + 3249, 2617, 3125, + 3123, 2771, 2999, + 2873, 2917, 2743, + 999, 3061, 0, + 0, 3201, 0, + 0, 3339, 0, + 0, 3475, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3619, 0, 3485, + 3619, 0, 3485, + 3619, 0, 3483, + 3617, 0, 3483, + 3617, 0, 3483, + 3617, 0, 3483, + 3617, 0, 3483, + 3617, 0, 3481, + 3615, 0, 3481, + 3615, 0, 3479, + 3613, 0, 3479, + 3611, 0, 3477, + 3609, 0, 3473, + 3605, 0, 3469, + 3599, 0, 3465, + 3593, 0, 3457, + 3583, 0, 3449, + 3571, 1422, 3435, + 3555, 1880, 3417, + 3531, 2159, 3393, + 3497, 2377, 3357, + 3447, 2563, 3303, + 3369, 2733, 3223, + 3241, 2891, 3083, + 2979, 3041, 2787, + 0, 3187, 0, + 0, 3329, 0, + 0, 3467, 0, + 0, 3605, 0, + 0, 3741, 0, + 0, 3877, 0, + 0, 4011, 0, + 3745, 0, 3601, + 3745, 0, 3601, + 3745, 0, 3601, + 3745, 0, 3601, + 3745, 0, 3599, + 3745, 0, 3599, + 3745, 0, 3599, + 3745, 0, 3599, + 3743, 0, 3599, + 3743, 0, 3597, + 3741, 0, 3597, + 3741, 0, 3595, + 3739, 0, 3593, + 3735, 0, 3589, + 3731, 0, 3585, + 3727, 0, 3581, + 3721, 0, 3573, + 3711, 0, 3563, + 3699, 1258, 3549, + 3681, 1924, 3531, + 3657, 2245, 3505, + 3623, 2481, 3467, + 3571, 2677, 3413, + 3493, 2853, 3325, + 3363, 3015, 3177, + 3093, 3167, 2841, + 0, 3315, 0, + 0, 3457, 0, + 0, 3597, 0, + 0, 3735, 0, + 0, 3873, 0, + 0, 4007, 0, + 3875, 0, 3721, + 3875, 0, 3721, + 3875, 0, 3721, + 3875, 0, 3721, + 3875, 0, 3719, + 3873, 0, 3719, + 3873, 0, 3719, + 3873, 0, 3719, + 3873, 0, 3719, + 3873, 0, 3717, + 3871, 0, 3717, + 3871, 0, 3715, + 3869, 0, 3715, + 3867, 0, 3711, + 3863, 0, 3709, + 3861, 0, 3705, + 3855, 0, 3699, + 3849, 0, 3693, + 3839, 0, 3681, + 3827, 858, 3669, + 3809, 1978, 3649, + 3785, 2341, 3623, + 3749, 2591, 3583, + 3699, 2795, 3525, + 3619, 2975, 3435, + 3485, 3139, 3277, + 3209, 3295, 2903, + 0, 3443, 0, + 0, 3587, 0, + 0, 3727, 0, + 0, 3867, 0, + 0, 4003, 0, + 4005, 0, 3843, + 4005, 0, 3843, + 4003, 0, 3843, + 4003, 0, 3843, + 4003, 0, 3843, + 4003, 0, 3843, + 4003, 0, 3843, + 4003, 0, 3843, + 4003, 0, 3841, + 4003, 0, 3841, + 4001, 0, 3841, + 4001, 0, 3839, + 3999, 0, 3839, + 3999, 0, 3837, + 3997, 0, 3835, + 3993, 0, 3831, + 3989, 0, 3827, + 3985, 0, 3821, + 3977, 0, 3815, + 3969, 0, 3803, + 3955, 0, 3789, + 3939, 2041, 3771, + 3913, 2443, 3743, + 3879, 2707, 3703, + 3827, 2917, 3643, + 3747, 3101, 3549, + 3611, 3267, 3383, + 3329, 3423, 2977, + 0, 3573, 0, + 0, 3717, 0, + 0, 3859, 0, + 0, 3997, 0, + 4095, 0, 3969, + 4095, 0, 3969, + 4095, 0, 3969, + 4095, 0, 3969, + 4095, 0, 3967, + 4095, 0, 3967, + 4095, 0, 3967, + 4095, 0, 3967, + 4095, 0, 3967, + 4095, 0, 3967, + 4095, 0, 3967, + 4095, 0, 3965, + 4095, 0, 3965, + 4095, 0, 3963, + 4095, 0, 3961, + 4095, 0, 3959, + 4095, 0, 3957, + 4095, 0, 3951, + 4095, 0, 3947, + 4095, 0, 3939, + 4095, 0, 3929, + 4085, 0, 3913, + 4067, 2113, 3893, + 4043, 2551, 3865, + 4007, 2825, 3825, + 3955, 3041, 3765, + 3875, 3227, 3667, + 3739, 3395, 3495, + 3453, 3553, 3057, + 0, 3703, 0, + 0, 3849, 0, + 0, 3989, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4093, + 4095, 0, 4093, + 4095, 0, 4093, + 4095, 0, 4093, + 4095, 0, 4091, + 4095, 0, 4089, + 4095, 0, 4089, + 4095, 0, 4085, + 4095, 0, 4083, + 4095, 0, 4079, + 4095, 0, 4073, + 4095, 0, 4065, + 4095, 0, 4055, + 4095, 0, 4039, + 4095, 2195, 4019, + 4095, 2665, 3991, + 4095, 2947, 3949, + 4085, 3167, 3887, + 4005, 3355, 3789, + 3867, 3525, 3611, + 3579, 3683, 3149, + 0, 3833, 0, + 0, 3979, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2285, 4095, + 4095, 2783, 4095, + 4095, 3073, 4077, + 4095, 3295, 4013, + 4095, 3483, 3913, + 3997, 3655, 3731, + 3705, 3813, 3247, + 0, 3965, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2383, 4095, + 4095, 2905, 4095, + 4095, 3199, 4095, + 4095, 3423, 4095, + 4095, 3613, 4039, + 4095, 3785, 3855, + 3833, 3945, 3351, + 2299, 1852, 2711, + 2297, 1854, 2711, + 2293, 1857, 2709, + 2291, 1861, 2709, + 2285, 1866, 2707, + 2279, 1873, 2705, + 2269, 1882, 2703, + 2257, 1893, 2699, + 2241, 1909, 2693, + 2217, 1928, 2687, + 2183, 1953, 2679, + 2135, 1984, 2665, + 2059, 2022, 2649, + 1935, 2069, 2625, + 1685, 2125, 2591, + 0, 2191, 2541, + 0, 2265, 2467, + 0, 2349, 2339, + 0, 2441, 2085, + 0, 2543, 0, + 0, 2649, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2301, 1852, 2711, + 2299, 1854, 2711, + 2297, 1857, 2711, + 2293, 1861, 2709, + 2287, 1866, 2707, + 2281, 1873, 2705, + 2273, 1882, 2703, + 2261, 1893, 2699, + 2243, 1908, 2695, + 2221, 1928, 2687, + 2187, 1952, 2679, + 2139, 1983, 2667, + 2065, 2022, 2649, + 1941, 2069, 2627, + 1695, 2125, 2593, + 251, 2191, 2543, + 0, 2265, 2467, + 0, 2349, 2341, + 0, 2441, 2087, + 0, 2541, 0, + 0, 2649, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2305, 1851, 2713, + 2303, 1854, 2711, + 2299, 1857, 2711, + 2297, 1860, 2709, + 2291, 1866, 2709, + 2285, 1872, 2707, + 2277, 1881, 2703, + 2265, 1893, 2701, + 2247, 1908, 2695, + 2225, 1927, 2689, + 2191, 1952, 2679, + 2143, 1983, 2667, + 2069, 2022, 2651, + 1948, 2069, 2627, + 1708, 2125, 2593, + 483, 2189, 2545, + 0, 2265, 2469, + 0, 2349, 2343, + 0, 2441, 2091, + 0, 2541, 0, + 0, 2649, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2309, 1851, 2713, + 2307, 1853, 2713, + 2305, 1856, 2713, + 2301, 1860, 2711, + 2295, 1865, 2709, + 2289, 1872, 2707, + 2281, 1881, 2705, + 2269, 1892, 2701, + 2253, 1907, 2697, + 2229, 1927, 2691, + 2197, 1951, 2681, + 2149, 1983, 2669, + 2077, 2021, 2653, + 1958, 2069, 2629, + 1724, 2125, 2595, + 678, 2189, 2547, + 0, 2265, 2471, + 0, 2349, 2345, + 0, 2441, 2095, + 0, 2541, 280, + 0, 2649, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2315, 1850, 2715, + 2313, 1852, 2715, + 2311, 1855, 2713, + 2307, 1859, 2713, + 2301, 1864, 2711, + 2295, 1871, 2709, + 2287, 1880, 2707, + 2275, 1891, 2703, + 2259, 1907, 2699, + 2237, 1926, 2691, + 2205, 1951, 2683, + 2157, 1982, 2671, + 2087, 2021, 2653, + 1970, 2067, 2631, + 1744, 2123, 2597, + 852, 2189, 2549, + 0, 2265, 2473, + 0, 2349, 2349, + 0, 2441, 2101, + 0, 2541, 535, + 0, 2649, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2323, 1849, 2717, + 2321, 1851, 2717, + 2317, 1854, 2715, + 2315, 1858, 2715, + 2309, 1863, 2713, + 2303, 1870, 2711, + 2295, 1879, 2709, + 2283, 1890, 2705, + 2267, 1906, 2701, + 2245, 1925, 2693, + 2215, 1950, 2685, + 2169, 1981, 2673, + 2099, 2020, 2657, + 1986, 2067, 2633, + 1771, 2123, 2599, + 1013, 2189, 2551, + 0, 2263, 2477, + 0, 2349, 2355, + 0, 2441, 2111, + 0, 2541, 741, + 0, 2649, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2333, 1848, 2721, + 2331, 1850, 2719, + 2327, 1853, 2719, + 2325, 1857, 2717, + 2321, 1862, 2717, + 2315, 1869, 2715, + 2305, 1877, 2711, + 2295, 1889, 2709, + 2279, 1904, 2703, + 2257, 1924, 2697, + 2227, 1949, 2689, + 2183, 1980, 2677, + 2115, 2019, 2659, + 2007, 2065, 2637, + 1804, 2123, 2603, + 1166, 2187, 2555, + 0, 2263, 2483, + 0, 2347, 2361, + 0, 2441, 2121, + 0, 2541, 921, + 0, 2647, 0, + 0, 2761, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3121, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2345, 1846, 2725, + 2343, 1848, 2723, + 2341, 1851, 2723, + 2337, 1855, 2721, + 2333, 1860, 2721, + 2327, 1867, 2719, + 2319, 1876, 2715, + 2309, 1887, 2713, + 2293, 1903, 2707, + 2273, 1922, 2701, + 2243, 1947, 2693, + 2201, 1979, 2681, + 2137, 2017, 2663, + 2034, 2065, 2641, + 1845, 2121, 2609, + 1312, 2187, 2561, + 0, 2263, 2489, + 0, 2347, 2369, + 0, 2441, 2135, + 0, 2541, 1086, + 0, 2647, 0, + 0, 2759, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3119, 0, + 0, 3245, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2363, 1843, 2729, + 2361, 1845, 2729, + 2359, 1848, 2727, + 2355, 1852, 2727, + 2351, 1857, 2725, + 2345, 1864, 2723, + 2337, 1873, 2721, + 2327, 1885, 2717, + 2313, 1900, 2713, + 2293, 1920, 2707, + 2265, 1945, 2697, + 2223, 1977, 2685, + 2163, 2016, 2669, + 2067, 2063, 2647, + 1894, 2119, 2615, + 1455, 2185, 2569, + 0, 2261, 2497, + 0, 2347, 2379, + 0, 2439, 2153, + 0, 2539, 1241, + 0, 2647, 0, + 0, 2759, 0, + 0, 2877, 0, + 0, 2997, 0, + 0, 3119, 0, + 0, 3245, 0, + 0, 3371, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2385, 1839, 2735, + 2383, 1842, 2735, + 2381, 1845, 2735, + 2377, 1849, 2733, + 2373, 1854, 2731, + 2367, 1861, 2729, + 2361, 1870, 2727, + 2351, 1882, 2725, + 2337, 1897, 2719, + 2319, 1917, 2713, + 2291, 1942, 2705, + 2253, 1974, 2693, + 2197, 2013, 2677, + 2107, 2061, 2655, + 1952, 2117, 2623, + 1595, 2185, 2577, + 0, 2261, 2507, + 0, 2345, 2393, + 0, 2439, 2175, + 0, 2539, 1390, + 0, 2647, 0, + 0, 2759, 0, + 0, 2875, 0, + 0, 2997, 0, + 0, 3119, 0, + 0, 3245, 0, + 0, 3371, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2411, 1835, 2745, + 2411, 1837, 2743, + 2409, 1840, 2743, + 2405, 1844, 2743, + 2401, 1849, 2741, + 2397, 1856, 2739, + 2389, 1865, 2737, + 2381, 1877, 2733, + 2367, 1893, 2729, + 2349, 1913, 2723, + 2325, 1939, 2715, + 2289, 1971, 2703, + 2237, 2010, 2687, + 2157, 2059, 2665, + 2020, 2115, 2635, + 1733, 2181, 2589, + 0, 2259, 2523, + 0, 2343, 2413, + 0, 2437, 2205, + 0, 2539, 1534, + 0, 2645, 0, + 0, 2759, 0, + 0, 2875, 0, + 0, 2997, 0, + 0, 3119, 0, + 0, 3245, 0, + 0, 3371, 0, + 0, 3499, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2447, 1828, 2755, + 2445, 1831, 2755, + 2443, 1834, 2755, + 2441, 1838, 2753, + 2437, 1843, 2753, + 2433, 1850, 2751, + 2425, 1859, 2747, + 2417, 1872, 2745, + 2405, 1887, 2741, + 2389, 1908, 2735, + 2367, 1933, 2727, + 2335, 1966, 2715, + 2287, 2006, 2701, + 2215, 2055, 2679, + 2099, 2111, 2649, + 1870, 2179, 2605, + 933, 2255, 2541, + 0, 2341, 2435, + 0, 2435, 2241, + 0, 2537, 1675, + 0, 2645, 0, + 0, 2757, 0, + 0, 2875, 0, + 0, 2995, 0, + 0, 3119, 0, + 0, 3245, 0, + 0, 3371, 0, + 0, 3499, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2489, 1819, 2771, + 2487, 1822, 2771, + 2485, 1825, 2769, + 2483, 1829, 2769, + 2479, 1835, 2767, + 2475, 1842, 2765, + 2469, 1851, 2763, + 2463, 1864, 2759, + 2451, 1880, 2755, + 2437, 1900, 2749, + 2417, 1926, 2741, + 2387, 1959, 2731, + 2347, 2000, 2717, + 2283, 2049, 2697, + 2185, 2107, 2667, + 2005, 2175, 2627, + 1530, 2253, 2565, + 0, 2339, 2465, + 0, 2433, 2285, + 0, 2535, 1814, + 0, 2643, 0, + 0, 2757, 0, + 0, 2873, 0, + 0, 2995, 0, + 0, 3119, 0, + 0, 3245, 0, + 0, 3371, 0, + 0, 3499, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2539, 1807, 2789, + 2539, 1810, 2789, + 2537, 1813, 2789, + 2535, 1817, 2787, + 2531, 1823, 2787, + 2529, 1830, 2785, + 2523, 1840, 2783, + 2515, 1853, 2779, + 2507, 1869, 2775, + 2493, 1890, 2769, + 2475, 1917, 2763, + 2451, 1951, 2753, + 2415, 1992, 2739, + 2361, 2042, 2719, + 2279, 2101, 2691, + 2139, 2169, 2653, + 1840, 2247, 2593, + 0, 2335, 2501, + 0, 2431, 2339, + 0, 2533, 1951, + 0, 2641, 0, + 0, 2755, 0, + 0, 2873, 0, + 0, 2993, 0, + 0, 3117, 0, + 0, 3243, 0, + 0, 3371, 0, + 0, 3499, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2599, 1791, 2813, + 2599, 1793, 2813, + 2597, 1797, 2813, + 2595, 1801, 2811, + 2593, 1807, 2811, + 2589, 1815, 2809, + 2585, 1825, 2807, + 2579, 1838, 2805, + 2571, 1855, 2801, + 2559, 1877, 2795, + 2545, 1904, 2789, + 2523, 1938, 2779, + 2493, 1981, 2765, + 2449, 2032, 2747, + 2381, 2093, 2721, + 2273, 2163, 2685, + 2071, 2241, 2631, + 1442, 2329, 2547, + 0, 2425, 2401, + 0, 2529, 2087, + 0, 2639, 0, + 0, 2753, 0, + 0, 2871, 0, + 0, 2993, 0, + 0, 3117, 0, + 0, 3243, 0, + 0, 3371, 0, + 0, 3499, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2669, 1768, 2845, + 2669, 1770, 2845, + 2667, 1774, 2843, + 2667, 1779, 2843, + 2665, 1785, 2841, + 2661, 1793, 2841, + 2657, 1803, 2839, + 2653, 1817, 2835, + 2645, 1835, 2831, + 2635, 1857, 2827, + 2623, 1886, 2821, + 2605, 1922, 2811, + 2579, 1966, 2799, + 2543, 2018, 2783, + 2489, 2081, 2759, + 2407, 2153, 2725, + 2265, 2233, 2675, + 1960, 2323, 2601, + 0, 2421, 2475, + 0, 2525, 2221, + 0, 2635, 0, + 0, 2751, 0, + 0, 2869, 0, + 0, 2991, 0, + 0, 3115, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3499, 0, + 0, 3627, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2749, 1735, 2883, + 2749, 1738, 2883, + 2747, 1742, 2881, + 2747, 1747, 2881, + 2745, 1753, 2879, + 2741, 1762, 2879, + 2739, 1773, 2877, + 2735, 1788, 2875, + 2729, 1807, 2871, + 2721, 1831, 2867, + 2709, 1861, 2861, + 2695, 1899, 2853, + 2675, 1945, 2841, + 2645, 2000, 2825, + 2603, 2065, 2805, + 2539, 2139, 2773, + 2439, 2221, 2729, + 2253, 2313, 2663, + 1749, 2413, 2555, + 0, 2519, 2355, + 0, 2631, 1740, + 0, 2747, 0, + 0, 2867, 0, + 0, 2989, 0, + 0, 3113, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2837, 1687, 2929, + 2837, 1690, 2929, + 2835, 1694, 2927, + 2835, 1700, 2927, + 2833, 1707, 2927, + 2831, 1717, 2925, + 2829, 1729, 2923, + 2825, 1745, 2921, + 2821, 1766, 2919, + 2815, 1792, 2915, + 2805, 1825, 2909, + 2793, 1866, 2901, + 2777, 1915, 2891, + 2753, 1974, 2877, + 2721, 2042, 2859, + 2673, 2119, 2831, + 2599, 2205, 2793, + 2477, 2301, 2735, + 2239, 2403, 2647, + 1046, 2511, 2489, + 0, 2623, 2123, + 0, 2741, 0, + 0, 2863, 0, + 0, 2987, 0, + 0, 3111, 0, + 0, 3239, 0, + 0, 3367, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 2933, 1614, 2983, + 2933, 1617, 2983, + 2933, 1622, 2983, + 2931, 1629, 2983, + 2931, 1637, 2981, + 2929, 1648, 2981, + 2927, 1663, 2979, + 2923, 1681, 2977, + 2921, 1705, 2975, + 2915, 1735, 2971, + 2907, 1772, 2967, + 2899, 1818, 2959, + 2885, 1872, 2951, + 2867, 1936, 2939, + 2841, 2009, 2923, + 2805, 2093, 2899, + 2751, 2183, 2867, + 2669, 2283, 2817, + 2525, 2389, 2745, + 2217, 2499, 2621, + 0, 2615, 2381, + 0, 2735, 1111, + 0, 2857, 0, + 0, 2983, 0, + 0, 3109, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 3037, 1492, 3049, + 3037, 1497, 3049, + 3037, 1503, 3049, + 3035, 1512, 3047, + 3035, 1523, 3047, + 3033, 1537, 3045, + 3031, 1555, 3045, + 3029, 1579, 3043, + 3027, 1608, 3041, + 3023, 1645, 3037, + 3017, 1690, 3033, + 3009, 1744, 3027, + 2999, 1807, 3021, + 2985, 1880, 3011, + 2965, 1962, 2995, + 2937, 2053, 2977, + 2899, 2151, 2949, + 2839, 2257, 2909, + 2747, 2369, 2849, + 2583, 2483, 2755, + 2187, 2603, 2587, + 0, 2725, 2177, + 0, 2851, 0, + 0, 2977, 0, + 0, 3105, 0, + 0, 3233, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 3147, 1253, 3123, + 3147, 1261, 3123, + 3145, 1272, 3123, + 3145, 1286, 3123, + 3145, 1304, 3121, + 3143, 1327, 3121, + 3143, 1355, 3119, + 3141, 1391, 3119, + 3137, 1435, 3117, + 3135, 1488, 3113, + 3131, 1550, 3111, + 3125, 1622, 3105, + 3117, 1703, 3099, + 3105, 1793, 3091, + 3091, 1891, 3079, + 3071, 1996, 3063, + 3041, 2107, 3039, + 2999, 2221, 3007, + 2935, 2341, 2959, + 2835, 2463, 2887, + 2649, 2587, 2769, + 2143, 2713, 2537, + 0, 2841, 1540, + 0, 2969, 0, + 0, 3099, 0, + 0, 3229, 0, + 0, 3361, 0, + 0, 3491, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4017, 0, + 3261, 75, 3207, + 3261, 173, 3207, + 3261, 278, 3207, + 3259, 388, 3205, + 3259, 504, 3205, + 3259, 623, 3205, + 3257, 745, 3203, + 3255, 869, 3203, + 3255, 996, 3201, + 3251, 1123, 3199, + 3249, 1252, 3195, + 3243, 1382, 3193, + 3237, 1512, 3187, + 3229, 1643, 3179, + 3219, 1774, 3169, + 3203, 1905, 3157, + 3181, 2037, 3139, + 3151, 2169, 3113, + 3105, 2301, 3075, + 3039, 2433, 3021, + 2929, 2563, 2935, + 2725, 2695, 2787, + 2075, 2829, 2459, + 0, 2961, 0, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3379, 0, 3299, + 3379, 0, 3299, + 3379, 0, 3299, + 3379, 0, 3299, + 3377, 0, 3297, + 3377, 0, 3297, + 3377, 0, 3297, + 3375, 0, 3295, + 3375, 0, 3295, + 3373, 0, 3293, + 3369, 0, 3289, + 3367, 154, 3287, + 3361, 964, 3283, + 3355, 1304, 3277, + 3347, 1546, 3269, + 3335, 1746, 3259, + 3319, 1923, 3243, + 3297, 2087, 3223, + 3265, 2241, 3195, + 3219, 2387, 3153, + 3147, 2531, 3091, + 3033, 2671, 2991, + 2811, 2811, 2811, + 1967, 2947, 2331, + 0, 3083, 0, + 0, 3217, 0, + 0, 3351, 0, + 0, 3485, 0, + 0, 3617, 0, + 0, 3751, 0, + 0, 3883, 0, + 0, 4015, 0, + 3501, 0, 3399, + 3501, 0, 3399, + 3501, 0, 3399, + 3501, 0, 3397, + 3499, 0, 3397, + 3499, 0, 3397, + 3499, 0, 3397, + 3497, 0, 3395, + 3497, 0, 3395, + 3495, 0, 3393, + 3493, 0, 3391, + 3491, 0, 3389, + 3487, 0, 3385, + 3483, 0, 3381, + 3477, 624, 3375, + 3467, 1374, 3367, + 3455, 1707, 3355, + 3439, 1946, 3339, + 3415, 2145, 3317, + 3383, 2321, 3285, + 3335, 2483, 3239, + 3261, 2637, 3169, + 3141, 2785, 3057, + 2903, 2929, 2839, + 1764, 3069, 2065, + 0, 3207, 0, + 0, 3343, 0, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3625, 0, 3505, + 3625, 0, 3505, + 3625, 0, 3505, + 3625, 0, 3505, + 3623, 0, 3503, + 3623, 0, 3503, + 3623, 0, 3503, + 3623, 0, 3503, + 3621, 0, 3501, + 3621, 0, 3501, + 3619, 0, 3499, + 3617, 0, 3497, + 3615, 0, 3495, + 3611, 0, 3491, + 3607, 0, 3485, + 3599, 0, 3479, + 3591, 937, 3471, + 3579, 1648, 3459, + 3561, 1976, 3441, + 3539, 2213, 3417, + 3505, 2411, 3383, + 3455, 2587, 3335, + 3381, 2749, 3259, + 3255, 2903, 3131, + 3005, 3049, 2875, + 1131, 3193, 0, + 0, 3333, 0, + 0, 3471, 0, + 0, 3607, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3751, 0, 3617, + 3751, 0, 3617, + 3751, 0, 3617, + 3751, 0, 3617, + 3751, 0, 3615, + 3749, 0, 3615, + 3749, 0, 3615, + 3749, 0, 3615, + 3749, 0, 3615, + 3747, 0, 3613, + 3747, 0, 3613, + 3745, 0, 3611, + 3743, 0, 3609, + 3741, 0, 3605, + 3737, 0, 3601, + 3731, 0, 3597, + 3725, 0, 3589, + 3717, 0, 3581, + 3703, 1555, 3567, + 3687, 2012, 3549, + 3663, 2291, 3525, + 3629, 2509, 3489, + 3579, 2695, 3437, + 3501, 2865, 3355, + 3373, 3023, 3215, + 3111, 3173, 2919, + 0, 3319, 0, + 0, 3461, 0, + 0, 3601, 0, + 0, 3737, 0, + 0, 3873, 0, + 0, 4009, 0, + 3879, 0, 3733, + 3879, 0, 3733, + 3877, 0, 3733, + 3877, 0, 3733, + 3877, 0, 3733, + 3877, 0, 3733, + 3877, 0, 3731, + 3877, 0, 3731, + 3877, 0, 3731, + 3875, 0, 3731, + 3875, 0, 3729, + 3873, 0, 3729, + 3873, 0, 3727, + 3871, 0, 3725, + 3867, 0, 3721, + 3863, 0, 3717, + 3859, 0, 3713, + 3853, 0, 3705, + 3843, 0, 3695, + 3831, 1390, 3681, + 3813, 2057, 3663, + 3789, 2379, 3637, + 3755, 2613, 3599, + 3703, 2809, 3545, + 3625, 2985, 3457, + 3495, 3147, 3309, + 3225, 3299, 2973, + 0, 3447, 0, + 0, 3589, 0, + 0, 3729, 0, + 0, 3867, 0, + 0, 4005, 0, + 4007, 0, 3853, + 4007, 0, 3853, + 4007, 0, 3853, + 4007, 0, 3853, + 4007, 0, 3853, + 4007, 0, 3853, + 4007, 0, 3851, + 4005, 0, 3851, + 4005, 0, 3851, + 4005, 0, 3851, + 4005, 0, 3851, + 4003, 0, 3849, + 4003, 0, 3847, + 4001, 0, 3847, + 3999, 0, 3843, + 3997, 0, 3841, + 3993, 0, 3837, + 3987, 0, 3831, + 3981, 0, 3825, + 3971, 0, 3815, + 3959, 990, 3801, + 3941, 2109, 3781, + 3917, 2473, 3755, + 3881, 2723, 3715, + 3831, 2927, 3657, + 3751, 3107, 3567, + 3619, 3271, 3409, + 3341, 3427, 3035, + 0, 3575, 0, + 0, 3719, 0, + 0, 3861, 0, + 0, 3999, 0, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3975, + 4095, 0, 3973, + 4095, 0, 3973, + 4095, 0, 3973, + 4095, 0, 3971, + 4095, 0, 3971, + 4095, 0, 3969, + 4095, 0, 3967, + 4095, 0, 3963, + 4095, 0, 3959, + 4095, 0, 3953, + 4095, 0, 3947, + 4095, 0, 3935, + 4087, 0, 3921, + 4071, 2173, 3903, + 4045, 2575, 3875, + 4011, 2839, 3835, + 3959, 3049, 3775, + 3879, 3233, 3681, + 3743, 3399, 3515, + 3461, 3555, 3109, + 0, 3705, 0, + 0, 3849, 0, + 0, 3991, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4093, + 4095, 0, 4091, + 4095, 0, 4089, + 4095, 0, 4085, + 4095, 0, 4079, + 4095, 0, 4071, + 4095, 0, 4061, + 4095, 0, 4045, + 4095, 2245, 4025, + 4095, 2683, 3997, + 4095, 2959, 3957, + 4087, 3173, 3897, + 4007, 3359, 3799, + 3871, 3527, 3627, + 3585, 3685, 3189, + 0, 3835, 0, + 0, 3981, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2327, 4095, + 4095, 2797, 4095, + 4095, 3081, 4081, + 4095, 3299, 4019, + 4095, 3487, 3921, + 3999, 3657, 3743, + 3711, 3815, 3281, + 0, 3965, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2417, 4095, + 4095, 2915, 4095, + 4095, 3205, 4095, + 4095, 3427, 4095, + 4095, 3615, 4045, + 4095, 3787, 3865, + 3837, 3945, 3379, + 2431, 1983, 2843, + 2429, 1985, 2843, + 2427, 1987, 2841, + 2425, 1990, 2841, + 2421, 1994, 2839, + 2415, 1999, 2839, + 2409, 2005, 2837, + 2401, 2014, 2833, + 2387, 2026, 2831, + 2371, 2041, 2825, + 2347, 2061, 2819, + 2313, 2085, 2809, + 2265, 2115, 2797, + 2189, 2155, 2781, + 2063, 2201, 2757, + 1810, 2257, 2723, + 0, 2323, 2673, + 0, 2397, 2597, + 0, 2481, 2471, + 0, 2575, 2215, + 0, 2675, 0, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2433, 1983, 2843, + 2431, 1984, 2843, + 2429, 1987, 2843, + 2425, 1989, 2841, + 2423, 1993, 2841, + 2417, 1998, 2839, + 2411, 2005, 2837, + 2403, 2014, 2835, + 2389, 2026, 2831, + 2373, 2041, 2825, + 2349, 2061, 2819, + 2317, 2085, 2811, + 2267, 2115, 2797, + 2193, 2155, 2781, + 2067, 2201, 2757, + 1818, 2257, 2723, + 69, 2323, 2675, + 0, 2397, 2599, + 0, 2481, 2471, + 0, 2575, 2217, + 0, 2675, 0, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2435, 1982, 2845, + 2433, 1984, 2843, + 2431, 1986, 2843, + 2429, 1989, 2843, + 2425, 1993, 2841, + 2421, 1998, 2839, + 2413, 2005, 2837, + 2405, 2014, 2835, + 2393, 2025, 2831, + 2375, 2040, 2827, + 2353, 2059, 2819, + 2319, 2085, 2811, + 2271, 2115, 2799, + 2197, 2153, 2781, + 2073, 2201, 2759, + 1827, 2257, 2725, + 383, 2323, 2675, + 0, 2397, 2599, + 0, 2481, 2473, + 0, 2573, 2219, + 0, 2675, 0, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2437, 1982, 2845, + 2437, 1984, 2845, + 2435, 1986, 2843, + 2431, 1989, 2843, + 2429, 1993, 2843, + 2423, 1998, 2841, + 2417, 2004, 2839, + 2409, 2013, 2835, + 2397, 2025, 2833, + 2379, 2040, 2827, + 2357, 2059, 2821, + 2323, 2085, 2811, + 2275, 2115, 2799, + 2201, 2153, 2783, + 2081, 2201, 2759, + 1840, 2257, 2725, + 615, 2321, 2677, + 0, 2397, 2601, + 0, 2481, 2475, + 0, 2573, 2223, + 0, 2673, 39, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2443, 1981, 2847, + 2441, 1983, 2845, + 2439, 1985, 2845, + 2437, 1988, 2845, + 2433, 1992, 2843, + 2429, 1997, 2841, + 2421, 2004, 2839, + 2413, 2013, 2837, + 2401, 2024, 2833, + 2385, 2039, 2829, + 2361, 2059, 2823, + 2329, 2083, 2813, + 2281, 2115, 2801, + 2209, 2153, 2785, + 2089, 2201, 2761, + 1856, 2257, 2727, + 810, 2321, 2679, + 0, 2397, 2603, + 0, 2481, 2477, + 0, 2573, 2227, + 0, 2673, 413, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2449, 1981, 2847, + 2447, 1982, 2847, + 2445, 1984, 2847, + 2443, 1987, 2845, + 2439, 1991, 2845, + 2435, 1996, 2843, + 2427, 2003, 2841, + 2419, 2012, 2839, + 2407, 2024, 2835, + 2391, 2039, 2831, + 2369, 2059, 2823, + 2337, 2083, 2815, + 2289, 2115, 2803, + 2219, 2153, 2787, + 2103, 2199, 2763, + 1877, 2255, 2729, + 984, 2321, 2681, + 0, 2397, 2605, + 0, 2481, 2481, + 0, 2573, 2235, + 0, 2673, 667, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2455, 1979, 2849, + 2455, 1981, 2849, + 2453, 1983, 2849, + 2449, 1986, 2849, + 2447, 1990, 2847, + 2441, 1995, 2845, + 2435, 2002, 2843, + 2427, 2011, 2841, + 2415, 2023, 2837, + 2399, 2038, 2833, + 2377, 2057, 2827, + 2347, 2083, 2817, + 2301, 2113, 2805, + 2231, 2151, 2789, + 2119, 2199, 2765, + 1903, 2255, 2733, + 1145, 2321, 2683, + 0, 2395, 2609, + 0, 2481, 2487, + 0, 2573, 2243, + 0, 2673, 873, + 0, 2781, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2465, 1978, 2853, + 2465, 1980, 2853, + 2463, 1982, 2851, + 2461, 1985, 2851, + 2457, 1989, 2849, + 2453, 1994, 2849, + 2447, 2001, 2847, + 2437, 2010, 2843, + 2427, 2021, 2841, + 2411, 2036, 2835, + 2389, 2057, 2829, + 2359, 2081, 2821, + 2315, 2113, 2809, + 2247, 2151, 2791, + 2139, 2199, 2769, + 1936, 2255, 2735, + 1298, 2321, 2687, + 0, 2395, 2615, + 0, 2479, 2493, + 0, 2573, 2253, + 0, 2673, 1053, + 0, 2779, 0, + 0, 2893, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2479, 1976, 2857, + 2477, 1978, 2857, + 2475, 1980, 2855, + 2473, 1983, 2855, + 2471, 1987, 2853, + 2465, 1992, 2853, + 2459, 1999, 2851, + 2451, 2008, 2847, + 2441, 2020, 2845, + 2425, 2035, 2839, + 2405, 2055, 2833, + 2375, 2079, 2825, + 2333, 2111, 2813, + 2269, 2149, 2797, + 2165, 2197, 2773, + 1977, 2253, 2741, + 1445, 2319, 2693, + 0, 2395, 2621, + 0, 2479, 2501, + 0, 2573, 2267, + 0, 2673, 1218, + 0, 2779, 0, + 0, 2891, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3253, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2495, 1973, 2861, + 2495, 1975, 2861, + 2493, 1977, 2861, + 2491, 1980, 2859, + 2487, 1984, 2859, + 2483, 1989, 2857, + 2477, 1996, 2855, + 2469, 2005, 2853, + 2459, 2017, 2849, + 2445, 2032, 2845, + 2425, 2053, 2839, + 2397, 2077, 2829, + 2357, 2109, 2819, + 2295, 2147, 2801, + 2199, 2195, 2779, + 2026, 2251, 2747, + 1587, 2317, 2701, + 0, 2393, 2629, + 0, 2479, 2511, + 0, 2571, 2285, + 0, 2673, 1373, + 0, 2779, 0, + 0, 2891, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3251, 0, + 0, 3377, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2517, 1970, 2869, + 2517, 1972, 2867, + 2515, 1974, 2867, + 2513, 1977, 2867, + 2509, 1981, 2865, + 2505, 1986, 2863, + 2501, 1993, 2863, + 2493, 2002, 2859, + 2483, 2014, 2857, + 2469, 2029, 2851, + 2451, 2049, 2845, + 2423, 2075, 2837, + 2385, 2107, 2825, + 2329, 2145, 2809, + 2239, 2193, 2787, + 2085, 2249, 2755, + 1727, 2317, 2709, + 0, 2393, 2639, + 0, 2477, 2527, + 0, 2571, 2309, + 0, 2671, 1522, + 0, 2779, 0, + 0, 2891, 0, + 0, 3009, 0, + 0, 3129, 0, + 0, 3251, 0, + 0, 3377, 0, + 0, 3503, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2545, 1965, 2877, + 2543, 1967, 2877, + 2543, 1969, 2875, + 2541, 1972, 2875, + 2537, 1976, 2875, + 2533, 1981, 2873, + 2529, 1988, 2871, + 2521, 1998, 2869, + 2513, 2010, 2865, + 2499, 2025, 2861, + 2481, 2045, 2855, + 2457, 2071, 2847, + 2421, 2103, 2835, + 2369, 2143, 2819, + 2289, 2191, 2797, + 2153, 2247, 2767, + 1865, 2315, 2721, + 0, 2391, 2655, + 0, 2475, 2545, + 0, 2569, 2337, + 0, 2671, 1666, + 0, 2777, 0, + 0, 2891, 0, + 0, 3007, 0, + 0, 3129, 0, + 0, 3251, 0, + 0, 3377, 0, + 0, 3503, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2579, 1959, 2889, + 2579, 1960, 2887, + 2577, 1963, 2887, + 2575, 1966, 2887, + 2573, 1970, 2885, + 2569, 1975, 2885, + 2565, 1982, 2883, + 2557, 1992, 2881, + 2549, 2004, 2877, + 2537, 2019, 2873, + 2521, 2040, 2867, + 2499, 2065, 2859, + 2467, 2097, 2847, + 2419, 2137, 2833, + 2347, 2187, 2811, + 2231, 2243, 2781, + 2002, 2311, 2737, + 1065, 2387, 2673, + 0, 2473, 2567, + 0, 2567, 2373, + 0, 2669, 1807, + 0, 2777, 0, + 0, 2889, 0, + 0, 3007, 0, + 0, 3127, 0, + 0, 3251, 0, + 0, 3377, 0, + 0, 3503, 0, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2621, 1950, 2903, + 2621, 1952, 2903, + 2619, 1954, 2903, + 2617, 1957, 2901, + 2615, 1961, 2901, + 2611, 1967, 2899, + 2607, 1974, 2897, + 2601, 1983, 2895, + 2595, 1996, 2891, + 2583, 2012, 2887, + 2569, 2032, 2881, + 2549, 2059, 2875, + 2519, 2091, 2863, + 2479, 2131, 2849, + 2415, 2181, 2829, + 2317, 2239, 2799, + 2137, 2307, 2759, + 1662, 2385, 2697, + 0, 2471, 2597, + 0, 2565, 2417, + 0, 2667, 1946, + 0, 2775, 0, + 0, 2889, 0, + 0, 3007, 0, + 0, 3127, 0, + 0, 3251, 0, + 0, 3377, 0, + 0, 3503, 0, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2673, 1938, 2923, + 2671, 1940, 2921, + 2671, 1942, 2921, + 2669, 1945, 2921, + 2667, 1949, 2919, + 2663, 1955, 2919, + 2661, 1962, 2917, + 2655, 1972, 2915, + 2649, 1985, 2911, + 2639, 2001, 2907, + 2625, 2022, 2901, + 2607, 2049, 2895, + 2583, 2083, 2885, + 2547, 2123, 2871, + 2493, 2173, 2851, + 2411, 2233, 2823, + 2271, 2301, 2785, + 1972, 2379, 2725, + 0, 2467, 2633, + 0, 2563, 2471, + 0, 2665, 2083, + 0, 2773, 0, + 0, 2887, 0, + 0, 3005, 0, + 0, 3127, 0, + 0, 3249, 0, + 0, 3375, 0, + 0, 3503, 0, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2733, 1921, 2947, + 2731, 1923, 2947, + 2731, 1926, 2945, + 2729, 1929, 2945, + 2727, 1933, 2945, + 2725, 1939, 2943, + 2721, 1947, 2941, + 2717, 1957, 2939, + 2711, 1970, 2937, + 2703, 1987, 2933, + 2693, 2009, 2927, + 2677, 2036, 2921, + 2655, 2071, 2911, + 2625, 2113, 2897, + 2581, 2163, 2879, + 2513, 2225, 2853, + 2405, 2295, 2817, + 2203, 2373, 2763, + 1574, 2461, 2679, + 0, 2559, 2533, + 0, 2661, 2219, + 0, 2771, 0, + 0, 2885, 0, + 0, 3003, 0, + 0, 3125, 0, + 0, 3249, 0, + 0, 3375, 0, + 0, 3503, 0, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2803, 1898, 2977, + 2801, 1900, 2977, + 2801, 1903, 2977, + 2799, 1906, 2975, + 2799, 1911, 2975, + 2797, 1917, 2973, + 2793, 1925, 2973, + 2789, 1935, 2971, + 2785, 1949, 2967, + 2777, 1967, 2963, + 2767, 1990, 2959, + 2755, 2018, 2953, + 2737, 2055, 2943, + 2711, 2097, 2931, + 2675, 2151, 2915, + 2621, 2213, 2891, + 2539, 2285, 2857, + 2397, 2365, 2807, + 2093, 2455, 2733, + 0, 2553, 2607, + 0, 2657, 2353, + 0, 2767, 0, + 0, 2883, 0, + 0, 3001, 0, + 0, 3123, 0, + 0, 3247, 0, + 0, 3375, 0, + 0, 3501, 0, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 2881, 1865, 3015, + 2881, 1867, 3015, + 2881, 1870, 3015, + 2879, 1874, 3013, + 2879, 1879, 3013, + 2877, 1885, 3011, + 2875, 1894, 3011, + 2871, 1905, 3009, + 2867, 1920, 3007, + 2861, 1939, 3003, + 2853, 1963, 2999, + 2843, 1993, 2993, + 2827, 2031, 2985, + 2807, 2077, 2973, + 2777, 2131, 2957, + 2735, 2197, 2937, + 2673, 2271, 2905, + 2571, 2353, 2861, + 2387, 2445, 2795, + 1882, 2545, 2687, + 0, 2651, 2487, + 0, 2763, 1872, + 0, 2879, 0, + 0, 2999, 0, + 0, 3121, 0, + 0, 3247, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 2969, 1817, 3061, + 2969, 1819, 3061, + 2969, 1822, 3061, + 2969, 1826, 3059, + 2967, 1832, 3059, + 2965, 1839, 3059, + 2963, 1849, 3057, + 2961, 1861, 3055, + 2957, 1877, 3053, + 2953, 1898, 3051, + 2947, 1924, 3047, + 2937, 1957, 3041, + 2925, 1998, 3033, + 2909, 2047, 3023, + 2885, 2105, 3009, + 2853, 2173, 2991, + 2805, 2251, 2963, + 2731, 2337, 2925, + 2611, 2433, 2869, + 2371, 2535, 2779, + 1178, 2643, 2621, + 0, 2757, 2255, + 0, 2873, 0, + 0, 2995, 0, + 0, 3119, 0, + 0, 3243, 0, + 0, 3371, 0, + 0, 3499, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 3067, 1743, 3117, + 3065, 1746, 3117, + 3065, 1749, 3115, + 3065, 1754, 3115, + 3063, 1761, 3115, + 3063, 1769, 3113, + 3061, 1780, 3113, + 3059, 1795, 3111, + 3057, 1813, 3109, + 3053, 1837, 3107, + 3047, 1867, 3103, + 3041, 1904, 3099, + 3031, 1950, 3093, + 3017, 2004, 3083, + 2999, 2069, 3071, + 2973, 2141, 3055, + 2937, 2225, 3031, + 2883, 2315, 2999, + 2801, 2415, 2951, + 2657, 2521, 2877, + 2349, 2631, 2755, + 0, 2747, 2513, + 0, 2867, 1244, + 0, 2989, 0, + 0, 3115, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3889, 0, + 0, 4019, 0, + 3169, 1621, 3181, + 3169, 1624, 3181, + 3169, 1629, 3181, + 3169, 1636, 3181, + 3167, 1644, 3179, + 3167, 1655, 3179, + 3165, 1669, 3179, + 3163, 1687, 3177, + 3161, 1711, 3175, + 3159, 1741, 3173, + 3155, 1777, 3169, + 3149, 1822, 3165, + 3141, 1876, 3161, + 3131, 1940, 3153, + 3117, 2012, 3143, + 3097, 2095, 3129, + 3071, 2185, 3109, + 3031, 2285, 3081, + 2971, 2389, 3041, + 2879, 2501, 2981, + 2715, 2617, 2887, + 2319, 2735, 2719, + 0, 2857, 2309, + 0, 2983, 0, + 0, 3109, 0, + 0, 3237, 0, + 0, 3365, 0, + 0, 3495, 0, + 0, 3625, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 3279, 1379, 3255, + 3279, 1385, 3255, + 3279, 1394, 3255, + 3277, 1404, 3255, + 3277, 1418, 3255, + 3277, 1436, 3253, + 3275, 1459, 3253, + 3275, 1487, 3251, + 3273, 1523, 3251, + 3271, 1567, 3249, + 3267, 1620, 3245, + 3263, 1683, 3243, + 3257, 1754, 3237, + 3249, 1836, 3231, + 3239, 1925, 3223, + 3223, 2023, 3211, + 3203, 2127, 3195, + 3173, 2239, 3171, + 3131, 2353, 3139, + 3067, 2473, 3091, + 2967, 2595, 3019, + 2781, 2719, 2901, + 2275, 2845, 2669, + 0, 2973, 1672, + 0, 3101, 0, + 0, 3231, 0, + 0, 3361, 0, + 0, 3493, 0, + 0, 3623, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 3393, 117, 3339, + 3393, 207, 3339, + 3393, 305, 3339, + 3393, 410, 3339, + 3391, 520, 3337, + 3391, 636, 3337, + 3391, 755, 3337, + 3389, 877, 3335, + 3389, 1001, 3335, + 3387, 1128, 3333, + 3383, 1255, 3331, + 3381, 1384, 3329, + 3375, 1514, 3325, + 3369, 1644, 3319, + 3361, 1775, 3311, + 3351, 1906, 3303, + 3335, 2037, 3289, + 3313, 2169, 3271, + 3283, 2301, 3245, + 3239, 2433, 3207, + 3171, 2565, 3153, + 3061, 2697, 3067, + 2857, 2829, 2919, + 2207, 2961, 2591, + 0, 3093, 0, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3511, 0, 3431, + 3511, 0, 3431, + 3511, 0, 3431, + 3511, 0, 3431, + 3511, 0, 3431, + 3509, 0, 3429, + 3509, 0, 3429, + 3509, 0, 3429, + 3507, 0, 3427, + 3507, 0, 3427, + 3505, 0, 3425, + 3501, 0, 3423, + 3499, 286, 3419, + 3493, 1096, 3415, + 3487, 1436, 3409, + 3479, 1678, 3401, + 3467, 1878, 3391, + 3451, 2055, 3375, + 3429, 2219, 3355, + 3397, 2373, 3327, + 3351, 2521, 3285, + 3279, 2663, 3223, + 3165, 2803, 3123, + 2943, 2943, 2943, + 2099, 3079, 2463, + 0, 3215, 0, + 0, 3349, 0, + 0, 3483, 0, + 0, 3617, 0, + 0, 3749, 0, + 0, 3883, 0, + 0, 4015, 0, + 3633, 0, 3531, + 3633, 0, 3531, + 3633, 0, 3531, + 3633, 0, 3531, + 3633, 0, 3529, + 3631, 0, 3529, + 3631, 0, 3529, + 3631, 0, 3529, + 3629, 0, 3527, + 3629, 0, 3527, + 3627, 0, 3525, + 3625, 0, 3523, + 3623, 0, 3521, + 3619, 0, 3517, + 3615, 0, 3513, + 3609, 756, 3507, + 3599, 1506, 3499, + 3587, 1839, 3487, + 3571, 2079, 3471, + 3547, 2277, 3449, + 3515, 2453, 3417, + 3467, 2615, 3371, + 3395, 2769, 3301, + 3273, 2917, 3189, + 3035, 3061, 2971, + 1896, 3201, 2197, + 0, 3339, 0, + 0, 3475, 0, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 3757, 0, 3637, + 3757, 0, 3637, + 3757, 0, 3637, + 3757, 0, 3637, + 3757, 0, 3637, + 3757, 0, 3637, + 3755, 0, 3635, + 3755, 0, 3635, + 3755, 0, 3635, + 3753, 0, 3633, + 3753, 0, 3633, + 3751, 0, 3631, + 3749, 0, 3629, + 3747, 0, 3627, + 3743, 0, 3623, + 3739, 0, 3619, + 3731, 0, 3611, + 3723, 1069, 3603, + 3711, 1780, 3591, + 3693, 2107, 3573, + 3671, 2345, 3549, + 3637, 2543, 3515, + 3587, 2719, 3467, + 3513, 2881, 3391, + 3387, 3035, 3263, + 3137, 3181, 3007, + 1263, 3325, 0, + 0, 3465, 0, + 0, 3603, 0, + 0, 3739, 0, + 0, 3875, 0, + 0, 4009, 0, + 3883, 0, 3749, + 3883, 0, 3749, + 3883, 0, 3749, + 3883, 0, 3749, + 3883, 0, 3749, + 3883, 0, 3747, + 3881, 0, 3747, + 3881, 0, 3747, + 3881, 0, 3747, + 3881, 0, 3747, + 3879, 0, 3745, + 3879, 0, 3745, + 3877, 0, 3743, + 3875, 0, 3741, + 3873, 0, 3737, + 3869, 0, 3733, + 3863, 0, 3729, + 3857, 0, 3721, + 3849, 0, 3713, + 3835, 1687, 3699, + 3819, 2145, 3681, + 3795, 2423, 3657, + 3761, 2641, 3621, + 3711, 2827, 3569, + 3633, 2997, 3487, + 3505, 3155, 3347, + 3243, 3305, 3053, + 0, 3451, 0, + 0, 3593, 0, + 0, 3733, 0, + 0, 3869, 0, + 0, 4005, 0, + 4011, 0, 3865, + 4011, 0, 3865, + 4011, 0, 3865, + 4011, 0, 3865, + 4009, 0, 3865, + 4009, 0, 3865, + 4009, 0, 3865, + 4009, 0, 3863, + 4009, 0, 3863, + 4009, 0, 3863, + 4007, 0, 3863, + 4007, 0, 3861, + 4005, 0, 3861, + 4005, 0, 3859, + 4003, 0, 3857, + 3999, 0, 3853, + 3997, 0, 3849, + 3991, 0, 3845, + 3985, 0, 3837, + 3975, 0, 3827, + 3963, 1522, 3815, + 3945, 2189, 3795, + 3921, 2511, 3769, + 3887, 2745, 3731, + 3835, 2941, 3677, + 3757, 3117, 3589, + 3627, 3279, 3441, + 3357, 3431, 3105, + 0, 3579, 0, + 0, 3721, 0, + 0, 3861, 0, + 0, 3999, 0, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3985, + 4095, 0, 3983, + 4095, 0, 3983, + 4095, 0, 3983, + 4095, 0, 3983, + 4095, 0, 3981, + 4095, 0, 3981, + 4095, 0, 3979, + 4095, 0, 3977, + 4095, 0, 3973, + 4095, 0, 3969, + 4095, 0, 3963, + 4095, 0, 3957, + 4095, 0, 3947, + 4091, 1122, 3933, + 4073, 2243, 3913, + 4049, 2605, 3887, + 4015, 2855, 3847, + 3963, 3061, 3789, + 3883, 3239, 3699, + 3751, 3405, 3541, + 3473, 3559, 3169, + 0, 3707, 0, + 0, 3851, 0, + 0, 3993, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4091, + 4095, 0, 4085, + 4095, 0, 4079, + 4095, 0, 4069, + 4095, 0, 4053, + 4095, 2305, 4035, + 4095, 2707, 4007, + 4095, 2971, 3967, + 4091, 3181, 3907, + 4011, 3365, 3813, + 3877, 3531, 3647, + 3593, 3687, 3241, + 0, 3837, 0, + 0, 3981, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2377, 4095, + 4095, 2815, 4095, + 4095, 3091, 4089, + 4095, 3305, 4029, + 4095, 3491, 3933, + 4003, 3659, 3759, + 3717, 3817, 3321, + 0, 3967, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2459, 4095, + 4095, 2929, 4095, + 4095, 3213, 4095, + 4095, 3431, 4095, + 4095, 3619, 4053, + 4095, 3789, 3877, + 3843, 3947, 3413, + 2563, 2115, 2975, + 2561, 2115, 2975, + 2559, 2117, 2975, + 2557, 2119, 2973, + 2555, 2123, 2973, + 2551, 2125, 2971, + 2547, 2131, 2971, + 2539, 2137, 2969, + 2531, 2147, 2965, + 2519, 2159, 2961, + 2501, 2173, 2957, + 2477, 2193, 2951, + 2445, 2217, 2941, + 2395, 2249, 2929, + 2319, 2287, 2913, + 2193, 2333, 2889, + 1937, 2389, 2855, + 0, 2455, 2805, + 0, 2529, 2729, + 0, 2613, 2601, + 0, 2707, 2345, + 0, 2807, 0, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2563, 2113, 2975, + 2563, 2115, 2975, + 2561, 2117, 2975, + 2559, 2119, 2973, + 2557, 2121, 2973, + 2553, 2125, 2973, + 2547, 2131, 2971, + 2541, 2137, 2969, + 2533, 2147, 2965, + 2519, 2157, 2963, + 2503, 2173, 2957, + 2479, 2193, 2951, + 2445, 2217, 2941, + 2397, 2249, 2929, + 2321, 2287, 2913, + 2195, 2333, 2889, + 1942, 2389, 2855, + 0, 2455, 2805, + 0, 2529, 2729, + 0, 2613, 2603, + 0, 2707, 2347, + 0, 2807, 0, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2565, 2113, 2975, + 2565, 2115, 2975, + 2563, 2117, 2975, + 2561, 2119, 2975, + 2559, 2121, 2973, + 2555, 2125, 2973, + 2549, 2131, 2971, + 2543, 2137, 2969, + 2535, 2147, 2967, + 2523, 2157, 2963, + 2505, 2173, 2957, + 2481, 2193, 2951, + 2449, 2217, 2943, + 2399, 2247, 2931, + 2325, 2287, 2913, + 2199, 2333, 2889, + 1950, 2389, 2855, + 201, 2455, 2807, + 0, 2529, 2731, + 0, 2613, 2603, + 0, 2707, 2349, + 0, 2807, 0, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2567, 2113, 2977, + 2567, 2115, 2977, + 2565, 2117, 2975, + 2563, 2119, 2975, + 2561, 2121, 2975, + 2557, 2125, 2973, + 2553, 2131, 2971, + 2545, 2137, 2969, + 2537, 2145, 2967, + 2525, 2157, 2963, + 2509, 2173, 2959, + 2485, 2191, 2953, + 2451, 2217, 2943, + 2403, 2247, 2931, + 2329, 2287, 2913, + 2205, 2333, 2891, + 1959, 2389, 2857, + 515, 2455, 2807, + 0, 2529, 2731, + 0, 2613, 2605, + 0, 2707, 2351, + 0, 2807, 0, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2571, 2113, 2977, + 2569, 2115, 2977, + 2569, 2115, 2977, + 2567, 2117, 2977, + 2563, 2121, 2975, + 2561, 2125, 2975, + 2555, 2129, 2973, + 2549, 2137, 2971, + 2541, 2145, 2969, + 2529, 2157, 2965, + 2511, 2173, 2959, + 2489, 2191, 2953, + 2455, 2217, 2945, + 2407, 2247, 2931, + 2333, 2285, 2915, + 2213, 2333, 2891, + 1972, 2389, 2857, + 748, 2455, 2809, + 0, 2529, 2733, + 0, 2613, 2607, + 0, 2705, 2355, + 0, 2807, 171, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2575, 2113, 2979, + 2575, 2113, 2979, + 2573, 2115, 2977, + 2571, 2117, 2977, + 2569, 2121, 2977, + 2565, 2125, 2975, + 2561, 2129, 2973, + 2553, 2135, 2971, + 2545, 2145, 2969, + 2533, 2157, 2965, + 2517, 2171, 2961, + 2493, 2191, 2955, + 2461, 2215, 2945, + 2413, 2247, 2933, + 2341, 2285, 2917, + 2221, 2333, 2893, + 1988, 2389, 2859, + 942, 2453, 2811, + 0, 2529, 2735, + 0, 2613, 2611, + 0, 2705, 2359, + 0, 2805, 544, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2581, 2111, 2981, + 2581, 2113, 2979, + 2579, 2115, 2979, + 2577, 2117, 2979, + 2575, 2119, 2979, + 2571, 2123, 2977, + 2567, 2129, 2975, + 2559, 2135, 2973, + 2551, 2145, 2971, + 2539, 2155, 2967, + 2523, 2171, 2963, + 2501, 2191, 2955, + 2469, 2215, 2947, + 2423, 2247, 2935, + 2351, 2285, 2919, + 2235, 2331, 2895, + 2009, 2387, 2861, + 1116, 2453, 2813, + 0, 2529, 2737, + 0, 2613, 2613, + 0, 2705, 2367, + 0, 2805, 799, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2589, 2111, 2983, + 2587, 2111, 2983, + 2587, 2113, 2981, + 2585, 2115, 2981, + 2583, 2119, 2981, + 2579, 2123, 2979, + 2575, 2127, 2977, + 2567, 2135, 2975, + 2559, 2143, 2973, + 2547, 2155, 2969, + 2533, 2169, 2965, + 2509, 2189, 2959, + 2479, 2215, 2949, + 2433, 2245, 2937, + 2363, 2285, 2921, + 2251, 2331, 2897, + 2035, 2387, 2865, + 1277, 2453, 2815, + 0, 2529, 2741, + 0, 2613, 2619, + 0, 2705, 2375, + 0, 2805, 1005, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2599, 2109, 2985, + 2597, 2111, 2985, + 2597, 2111, 2985, + 2595, 2113, 2983, + 2593, 2117, 2983, + 2589, 2121, 2983, + 2585, 2125, 2981, + 2579, 2133, 2979, + 2571, 2141, 2975, + 2559, 2153, 2973, + 2543, 2169, 2967, + 2521, 2189, 2961, + 2491, 2213, 2953, + 2447, 2245, 2941, + 2379, 2283, 2923, + 2271, 2331, 2901, + 2069, 2387, 2867, + 1430, 2453, 2819, + 0, 2527, 2747, + 0, 2611, 2625, + 0, 2705, 2385, + 0, 2805, 1185, + 0, 2913, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2611, 2107, 2989, + 2611, 2109, 2989, + 2609, 2109, 2989, + 2607, 2113, 2987, + 2605, 2115, 2987, + 2603, 2119, 2985, + 2597, 2125, 2985, + 2593, 2131, 2983, + 2585, 2139, 2979, + 2573, 2151, 2977, + 2559, 2167, 2971, + 2537, 2187, 2965, + 2507, 2211, 2957, + 2465, 2243, 2945, + 2401, 2281, 2929, + 2297, 2329, 2905, + 2109, 2385, 2873, + 1577, 2451, 2825, + 0, 2527, 2753, + 0, 2611, 2633, + 0, 2705, 2399, + 0, 2805, 1350, + 0, 2911, 0, + 0, 3025, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2629, 2105, 2995, + 2627, 2105, 2993, + 2627, 2107, 2993, + 2625, 2109, 2993, + 2623, 2113, 2991, + 2619, 2117, 2991, + 2615, 2121, 2989, + 2609, 2129, 2987, + 2601, 2137, 2985, + 2591, 2149, 2981, + 2577, 2165, 2977, + 2557, 2185, 2971, + 2529, 2209, 2961, + 2489, 2241, 2951, + 2427, 2279, 2933, + 2331, 2327, 2911, + 2159, 2383, 2879, + 1720, 2451, 2833, + 0, 2525, 2761, + 0, 2611, 2645, + 0, 2703, 2417, + 0, 2805, 1506, + 0, 2911, 0, + 0, 3023, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3385, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2651, 2101, 3001, + 2649, 2101, 3001, + 2649, 2103, 2999, + 2647, 2105, 2999, + 2645, 2109, 2999, + 2641, 2113, 2997, + 2637, 2119, 2997, + 2633, 2125, 2995, + 2625, 2135, 2991, + 2615, 2147, 2989, + 2601, 2161, 2983, + 2583, 2181, 2977, + 2555, 2207, 2969, + 2517, 2239, 2957, + 2461, 2277, 2941, + 2371, 2325, 2919, + 2217, 2383, 2887, + 1860, 2449, 2841, + 0, 2525, 2773, + 0, 2609, 2659, + 0, 2703, 2441, + 0, 2803, 1654, + 0, 2911, 0, + 0, 3023, 0, + 0, 3141, 0, + 0, 3261, 0, + 0, 3383, 0, + 0, 3509, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2677, 2095, 3009, + 2677, 2097, 3009, + 2675, 2099, 3009, + 2675, 2101, 3009, + 2673, 2105, 3007, + 2669, 2109, 3007, + 2665, 2113, 3005, + 2661, 2121, 3003, + 2653, 2129, 3001, + 2645, 2141, 2997, + 2631, 2157, 2993, + 2615, 2177, 2987, + 2589, 2203, 2979, + 2553, 2235, 2967, + 2501, 2275, 2951, + 2421, 2323, 2929, + 2285, 2379, 2899, + 1998, 2447, 2855, + 0, 2523, 2787, + 0, 2607, 2677, + 0, 2701, 2469, + 0, 2803, 1798, + 0, 2909, 0, + 0, 3023, 0, + 0, 3139, 0, + 0, 3261, 0, + 0, 3383, 0, + 0, 3509, 0, + 0, 3635, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2713, 2089, 3021, + 2711, 2091, 3021, + 2711, 2093, 3021, + 2709, 2095, 3019, + 2707, 2097, 3019, + 2705, 2101, 3017, + 2701, 2107, 3017, + 2697, 2115, 3015, + 2689, 2123, 3013, + 2681, 2135, 3009, + 2669, 2151, 3005, + 2653, 2171, 2999, + 2631, 2197, 2991, + 2599, 2231, 2979, + 2551, 2269, 2965, + 2479, 2319, 2943, + 2363, 2377, 2913, + 2133, 2443, 2869, + 1197, 2519, 2805, + 0, 2605, 2699, + 0, 2699, 2505, + 0, 2801, 1939, + 0, 2909, 0, + 0, 3021, 0, + 0, 3139, 0, + 0, 3259, 0, + 0, 3383, 0, + 0, 3509, 0, + 0, 3635, 0, + 0, 3765, 0, + 0, 3893, 0, + 0, 4023, 0, + 2755, 2081, 3035, + 2753, 2081, 3035, + 2753, 2083, 3035, + 2751, 2087, 3035, + 2749, 2089, 3033, + 2747, 2093, 3033, + 2745, 2099, 3031, + 2739, 2107, 3029, + 2735, 2115, 3027, + 2727, 2127, 3025, + 2715, 2143, 3019, + 2701, 2165, 3015, + 2681, 2191, 3007, + 2651, 2223, 2995, + 2611, 2265, 2981, + 2549, 2313, 2961, + 2449, 2371, 2931, + 2269, 2439, 2891, + 1794, 2517, 2829, + 0, 2603, 2729, + 0, 2697, 2551, + 0, 2799, 2077, + 0, 2907, 0, + 0, 3021, 0, + 0, 3139, 0, + 0, 3259, 0, + 0, 3383, 0, + 0, 3509, 0, + 0, 3635, 0, + 0, 3763, 0, + 0, 3893, 0, + 0, 4023, 0, + 2805, 2069, 3055, + 2805, 2069, 3055, + 2803, 2071, 3053, + 2803, 2075, 3053, + 2801, 2077, 3053, + 2799, 2081, 3051, + 2797, 2087, 3051, + 2793, 2095, 3049, + 2787, 2105, 3047, + 2781, 2117, 3043, + 2771, 2133, 3039, + 2757, 2155, 3033, + 2739, 2181, 3027, + 2715, 2215, 3017, + 2679, 2257, 3003, + 2625, 2305, 2983, + 2543, 2365, 2955, + 2403, 2433, 2917, + 2105, 2511, 2857, + 0, 2599, 2765, + 0, 2695, 2603, + 0, 2797, 2215, + 0, 2905, 0, + 0, 3019, 0, + 0, 3137, 0, + 0, 3259, 0, + 0, 3381, 0, + 0, 3507, 0, + 0, 3635, 0, + 0, 3763, 0, + 0, 3893, 0, + 0, 4023, 0, + 2865, 2051, 3079, + 2865, 2053, 3079, + 2865, 2055, 3079, + 2863, 2057, 3077, + 2861, 2061, 3077, + 2859, 2065, 3077, + 2857, 2071, 3075, + 2855, 2079, 3073, + 2849, 2089, 3071, + 2843, 2103, 3069, + 2835, 2119, 3065, + 2825, 2141, 3059, + 2809, 2169, 3053, + 2787, 2203, 3043, + 2757, 2245, 3029, + 2713, 2297, 3011, + 2645, 2357, 2985, + 2537, 2427, 2949, + 2335, 2505, 2895, + 1706, 2593, 2811, + 0, 2691, 2667, + 0, 2793, 2351, + 0, 2903, 0, + 0, 3017, 0, + 0, 3135, 0, + 0, 3257, 0, + 0, 3381, 0, + 0, 3507, 0, + 0, 3635, 0, + 0, 3763, 0, + 0, 3893, 0, + 0, 4023, 0, + 2935, 2029, 3109, + 2935, 2030, 3109, + 2935, 2032, 3109, + 2933, 2035, 3109, + 2933, 2038, 3107, + 2931, 2043, 3107, + 2929, 2049, 3105, + 2925, 2057, 3105, + 2921, 2067, 3103, + 2917, 2081, 3099, + 2909, 2099, 3097, + 2901, 2121, 3091, + 2887, 2151, 3085, + 2869, 2187, 3075, + 2843, 2229, 3063, + 2807, 2283, 3047, + 2753, 2345, 3023, + 2671, 2417, 2989, + 2529, 2497, 2939, + 2225, 2587, 2865, + 0, 2685, 2739, + 0, 2789, 2485, + 0, 2899, 0, + 0, 3015, 0, + 0, 3133, 0, + 0, 3255, 0, + 0, 3379, 0, + 0, 3507, 0, + 0, 3633, 0, + 0, 3763, 0, + 0, 3893, 0, + 0, 4023, 0, + 3015, 1995, 3147, + 3013, 1997, 3147, + 3013, 1999, 3147, + 3013, 2002, 3147, + 3011, 2006, 3145, + 3011, 2011, 3145, + 3009, 2017, 3143, + 3007, 2026, 3143, + 3003, 2037, 3141, + 2999, 2051, 3139, + 2993, 2071, 3135, + 2985, 2095, 3131, + 2975, 2125, 3125, + 2959, 2163, 3117, + 2939, 2209, 3105, + 2909, 2263, 3089, + 2867, 2329, 3069, + 2805, 2403, 3037, + 2703, 2485, 2993, + 2519, 2577, 2927, + 2014, 2677, 2819, + 0, 2783, 2619, + 0, 2895, 2004, + 0, 3011, 0, + 0, 3131, 0, + 0, 3253, 0, + 0, 3379, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4023, 0, + 3103, 1947, 3193, + 3103, 1949, 3193, + 3101, 1951, 3193, + 3101, 1954, 3193, + 3101, 1958, 3193, + 3099, 1964, 3191, + 3097, 1971, 3191, + 3095, 1981, 3189, + 3093, 1993, 3187, + 3089, 2009, 3185, + 3085, 2030, 3183, + 3079, 2057, 3179, + 3069, 2089, 3173, + 3057, 2131, 3165, + 3041, 2179, 3155, + 3017, 2237, 3141, + 2985, 2305, 3123, + 2937, 2383, 3095, + 2863, 2469, 3057, + 2743, 2565, 3001, + 2503, 2667, 2911, + 1310, 2775, 2753, + 0, 2889, 2387, + 0, 3005, 0, + 0, 3127, 0, + 0, 3251, 0, + 0, 3377, 0, + 0, 3503, 0, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 3199, 1873, 3249, + 3199, 1875, 3249, + 3197, 1878, 3249, + 3197, 1882, 3247, + 3197, 1886, 3247, + 3195, 1893, 3247, + 3195, 1901, 3247, + 3193, 1912, 3245, + 3191, 1927, 3243, + 3189, 1946, 3241, + 3185, 1969, 3239, + 3179, 1999, 3235, + 3173, 2036, 3231, + 3163, 2081, 3225, + 3149, 2137, 3215, + 3131, 2201, 3203, + 3107, 2273, 3187, + 3069, 2357, 3163, + 3015, 2447, 3131, + 2933, 2547, 3083, + 2789, 2653, 3009, + 2481, 2763, 2887, + 0, 2879, 2645, + 0, 2999, 1376, + 0, 3121, 0, + 0, 3247, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3629, 0, + 0, 3759, 0, + 0, 3891, 0, + 0, 4021, 0, + 3301, 1750, 3313, + 3301, 1753, 3313, + 3301, 1757, 3313, + 3301, 1761, 3313, + 3301, 1768, 3313, + 3299, 1776, 3311, + 3299, 1787, 3311, + 3297, 1801, 3311, + 3295, 1820, 3309, + 3293, 1843, 3307, + 3291, 1873, 3305, + 3287, 1909, 3301, + 3281, 1954, 3297, + 3273, 2008, 3293, + 3263, 2071, 3285, + 3249, 2145, 3275, + 3229, 2227, 3261, + 3203, 2317, 3241, + 3163, 2417, 3213, + 3103, 2521, 3173, + 3011, 2633, 3113, + 2847, 2749, 3019, + 2451, 2867, 2851, + 0, 2991, 2441, + 0, 3115, 0, + 0, 3241, 0, + 0, 3369, 0, + 0, 3497, 0, + 0, 3627, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4019, 0, + 3411, 1507, 3387, + 3411, 1511, 3387, + 3411, 1518, 3387, + 3411, 1526, 3387, + 3409, 1536, 3387, + 3409, 1550, 3387, + 3409, 1568, 3385, + 3407, 1591, 3385, + 3407, 1620, 3383, + 3405, 1656, 3383, + 3403, 1700, 3381, + 3399, 1752, 3377, + 3395, 1815, 3375, + 3389, 1886, 3369, + 3381, 1968, 3363, + 3371, 2057, 3355, + 3355, 2155, 3343, + 3335, 2259, 3327, + 3305, 2371, 3303, + 3263, 2485, 3271, + 3199, 2605, 3223, + 3099, 2727, 3151, + 2913, 2851, 3033, + 2407, 2977, 2801, + 0, 3105, 1804, + 0, 3235, 0, + 0, 3363, 0, + 0, 3493, 0, + 0, 3625, 0, + 0, 3755, 0, + 0, 3887, 0, + 0, 4019, 0, + 3525, 167, 3471, + 3525, 249, 3471, + 3525, 339, 3471, + 3525, 437, 3471, + 3525, 542, 3471, + 3523, 652, 3471, + 3523, 768, 3469, + 3523, 887, 3469, + 3521, 1009, 3467, + 3521, 1133, 3467, + 3519, 1260, 3465, + 3515, 1387, 3463, + 3513, 1516, 3461, + 3509, 1646, 3457, + 3503, 1776, 3451, + 3493, 1907, 3443, + 3483, 2038, 3435, + 3467, 2169, 3421, + 3445, 2301, 3403, + 3415, 2433, 3377, + 3371, 2565, 3339, + 3303, 2697, 3285, + 3193, 2829, 3199, + 2989, 2961, 3051, + 2339, 3093, 2725, + 0, 3225, 0, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3643, 0, 3563, + 3643, 0, 3563, + 3643, 0, 3563, + 3643, 0, 3563, + 3643, 0, 3563, + 3643, 0, 3563, + 3643, 0, 3561, + 3641, 0, 3561, + 3641, 0, 3561, + 3639, 0, 3559, + 3639, 0, 3559, + 3637, 0, 3557, + 3633, 0, 3555, + 3631, 418, 3551, + 3625, 1228, 3547, + 3619, 1568, 3541, + 3611, 1811, 3533, + 3599, 2011, 3523, + 3583, 2187, 3507, + 3561, 2351, 3487, + 3529, 2505, 3459, + 3483, 2653, 3417, + 3413, 2795, 3355, + 3297, 2937, 3255, + 3075, 3075, 3075, + 2231, 3211, 2595, + 0, 3347, 0, + 0, 3481, 0, + 0, 3615, 0, + 0, 3749, 0, + 0, 3881, 0, + 0, 4015, 0, + 3765, 0, 3663, + 3765, 0, 3663, + 3765, 0, 3663, + 3765, 0, 3663, + 3765, 0, 3663, + 3765, 0, 3663, + 3763, 0, 3661, + 3763, 0, 3661, + 3763, 0, 3661, + 3763, 0, 3659, + 3761, 0, 3659, + 3759, 0, 3657, + 3757, 0, 3655, + 3755, 0, 3653, + 3751, 0, 3649, + 3747, 0, 3645, + 3741, 888, 3639, + 3731, 1638, 3631, + 3719, 1971, 3619, + 3703, 2211, 3603, + 3681, 2409, 3581, + 3647, 2585, 3549, + 3599, 2749, 3503, + 3527, 2901, 3433, + 3405, 3049, 3321, + 3167, 3193, 3103, + 2028, 3333, 2329, + 0, 3471, 0, + 0, 3607, 0, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 3889, 0, 3769, + 3889, 0, 3769, + 3889, 0, 3769, + 3889, 0, 3769, + 3889, 0, 3769, + 3889, 0, 3769, + 3889, 0, 3769, + 3887, 0, 3767, + 3887, 0, 3767, + 3887, 0, 3767, + 3885, 0, 3765, + 3885, 0, 3765, + 3883, 0, 3763, + 3881, 0, 3761, + 3879, 0, 3759, + 3875, 0, 3755, + 3871, 0, 3751, + 3863, 0, 3743, + 3855, 1201, 3735, + 3843, 1912, 3723, + 3825, 2239, 3705, + 3803, 2477, 3681, + 3769, 2675, 3647, + 3719, 2851, 3599, + 3645, 3013, 3523, + 3519, 3167, 3395, + 3269, 3313, 3139, + 1395, 3457, 0, + 0, 3597, 0, + 0, 3735, 0, + 0, 3871, 0, + 0, 4007, 0, + 4015, 0, 3881, + 4015, 0, 3881, + 4015, 0, 3881, + 4015, 0, 3881, + 4015, 0, 3881, + 4015, 0, 3881, + 4015, 0, 3881, + 4015, 0, 3879, + 4013, 0, 3879, + 4013, 0, 3879, + 4013, 0, 3879, + 4011, 0, 3877, + 4011, 0, 3877, + 4009, 0, 3875, + 4007, 0, 3873, + 4005, 0, 3869, + 4001, 0, 3867, + 3995, 0, 3861, + 3989, 0, 3855, + 3981, 0, 3845, + 3967, 1819, 3831, + 3951, 2277, 3813, + 3927, 2555, 3789, + 3893, 2773, 3753, + 3843, 2961, 3701, + 3765, 3129, 3619, + 3637, 3287, 3479, + 3375, 3437, 3185, + 0, 3583, 0, + 0, 3725, 0, + 0, 3865, 0, + 0, 4001, 0, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3997, + 4095, 0, 3995, + 4095, 0, 3995, + 4095, 0, 3995, + 4095, 0, 3993, + 4095, 0, 3993, + 4095, 0, 3991, + 4095, 0, 3989, + 4095, 0, 3985, + 4095, 0, 3981, + 4095, 0, 3977, + 4095, 0, 3969, + 4095, 0, 3959, + 4095, 1654, 3947, + 4077, 2321, 3927, + 4053, 2643, 3901, + 4019, 2877, 3865, + 3967, 3075, 3809, + 3889, 3249, 3723, + 3759, 3411, 3573, + 3489, 3563, 3237, + 0, 3711, 0, + 0, 3853, 0, + 0, 3993, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4089, + 4095, 0, 4079, + 4095, 1254, 4065, + 4095, 2375, 4045, + 4095, 2737, 4019, + 4095, 2989, 3979, + 4095, 3193, 3923, + 4015, 3371, 3831, + 3883, 3537, 3673, + 3605, 3691, 3301, + 0, 3839, 0, + 0, 3983, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2437, 4095, + 4095, 2839, 4095, + 4095, 3103, 4095, + 4095, 3313, 4039, + 4095, 3497, 3945, + 4009, 3663, 3779, + 3725, 3819, 3373, + 0, 3969, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2509, 4095, + 4095, 2949, 4095, + 4095, 3223, 4095, + 4095, 3437, 4095, + 4095, 3623, 4065, + 4095, 3791, 3891, + 3849, 3949, 3455, + 2693, 2245, 3107, + 2693, 2247, 3107, + 2691, 2247, 3107, + 2691, 2249, 3107, + 2689, 2251, 3105, + 2685, 2255, 3105, + 2683, 2259, 3103, + 2677, 2263, 3103, + 2671, 2269, 3101, + 2661, 2279, 3097, + 2649, 2291, 3093, + 2633, 2305, 3089, + 2609, 2325, 3083, + 2575, 2349, 3073, + 2525, 2381, 3061, + 2449, 2419, 3043, + 2321, 2465, 3021, + 2065, 2521, 2987, + 0, 2587, 2937, + 0, 2661, 2861, + 0, 2745, 2733, + 0, 2839, 2477, + 0, 2939, 0, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2695, 2245, 3107, + 2695, 2247, 3107, + 2693, 2247, 3107, + 2691, 2249, 3107, + 2689, 2251, 3105, + 2687, 2255, 3105, + 2683, 2259, 3103, + 2679, 2263, 3103, + 2671, 2269, 3101, + 2663, 2279, 3097, + 2651, 2291, 3095, + 2633, 2305, 3089, + 2609, 2325, 3083, + 2577, 2349, 3073, + 2527, 2381, 3061, + 2451, 2419, 3045, + 2325, 2465, 3021, + 2069, 2521, 2987, + 0, 2587, 2937, + 0, 2661, 2861, + 0, 2745, 2733, + 0, 2839, 2477, + 0, 2939, 0, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2697, 2245, 3107, + 2695, 2247, 3107, + 2695, 2247, 3107, + 2693, 2249, 3107, + 2691, 2251, 3107, + 2689, 2253, 3105, + 2685, 2257, 3105, + 2679, 2263, 3103, + 2673, 2269, 3101, + 2665, 2279, 3099, + 2653, 2291, 3095, + 2635, 2305, 3089, + 2611, 2325, 3083, + 2577, 2349, 3073, + 2529, 2381, 3061, + 2453, 2419, 3045, + 2327, 2465, 3021, + 2075, 2521, 2987, + 0, 2587, 2937, + 0, 2661, 2861, + 0, 2745, 2735, + 0, 2839, 2479, + 0, 2939, 0, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2699, 2245, 3109, + 2697, 2245, 3109, + 2697, 2247, 3107, + 2695, 2249, 3107, + 2693, 2251, 3107, + 2691, 2253, 3105, + 2687, 2257, 3105, + 2681, 2263, 3103, + 2675, 2269, 3101, + 2667, 2279, 3099, + 2655, 2289, 3095, + 2637, 2305, 3091, + 2613, 2325, 3083, + 2581, 2349, 3075, + 2531, 2381, 3063, + 2457, 2419, 3045, + 2331, 2465, 3021, + 2081, 2521, 2987, + 333, 2587, 2939, + 0, 2661, 2863, + 0, 2745, 2735, + 0, 2839, 2481, + 0, 2939, 0, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2701, 2245, 3109, + 2699, 2245, 3109, + 2699, 2247, 3109, + 2697, 2249, 3107, + 2695, 2251, 3107, + 2693, 2253, 3107, + 2689, 2257, 3105, + 2685, 2263, 3103, + 2677, 2269, 3101, + 2669, 2277, 3099, + 2657, 2289, 3095, + 2641, 2305, 3091, + 2617, 2325, 3085, + 2583, 2349, 3075, + 2535, 2379, 3063, + 2461, 2419, 3047, + 2337, 2465, 3023, + 2091, 2521, 2989, + 647, 2587, 2939, + 0, 2661, 2863, + 0, 2745, 2737, + 0, 2839, 2483, + 0, 2939, 0, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2705, 2245, 3109, + 2703, 2245, 3109, + 2703, 2247, 3109, + 2701, 2247, 3109, + 2699, 2251, 3109, + 2697, 2253, 3107, + 2693, 2257, 3107, + 2687, 2261, 3105, + 2681, 2269, 3103, + 2673, 2277, 3101, + 2661, 2289, 3097, + 2643, 2305, 3091, + 2621, 2323, 3085, + 2587, 2349, 3077, + 2539, 2379, 3063, + 2467, 2417, 3047, + 2345, 2465, 3023, + 2103, 2521, 2989, + 880, 2587, 2941, + 0, 2661, 2865, + 0, 2745, 2739, + 0, 2839, 2487, + 0, 2939, 303, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2709, 2243, 3111, + 2707, 2245, 3111, + 2707, 2245, 3111, + 2705, 2247, 3111, + 2703, 2249, 3109, + 2701, 2253, 3109, + 2697, 2257, 3107, + 2693, 2261, 3107, + 2685, 2269, 3105, + 2677, 2277, 3101, + 2665, 2289, 3097, + 2649, 2303, 3093, + 2627, 2323, 3087, + 2593, 2347, 3077, + 2545, 2379, 3065, + 2473, 2417, 3049, + 2353, 2465, 3025, + 2121, 2521, 2991, + 1074, 2585, 2943, + 0, 2661, 2867, + 0, 2745, 2743, + 0, 2837, 2493, + 0, 2939, 677, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2715, 2243, 3113, + 2713, 2243, 3113, + 2713, 2245, 3113, + 2711, 2247, 3111, + 2709, 2249, 3111, + 2707, 2251, 3111, + 2703, 2255, 3109, + 2699, 2261, 3107, + 2693, 2267, 3105, + 2683, 2277, 3103, + 2671, 2287, 3099, + 2655, 2303, 3095, + 2633, 2323, 3089, + 2601, 2347, 3079, + 2555, 2379, 3067, + 2483, 2417, 3051, + 2367, 2463, 3027, + 2141, 2519, 2993, + 1248, 2585, 2945, + 0, 2661, 2869, + 0, 2745, 2745, + 0, 2837, 2499, + 0, 2937, 931, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2721, 2241, 3115, + 2721, 2243, 3115, + 2719, 2243, 3115, + 2719, 2245, 3113, + 2717, 2247, 3113, + 2715, 2251, 3113, + 2711, 2255, 3111, + 2707, 2259, 3109, + 2701, 2267, 3107, + 2691, 2275, 3105, + 2681, 2287, 3101, + 2665, 2303, 3097, + 2643, 2321, 3091, + 2611, 2347, 3081, + 2565, 2377, 3069, + 2495, 2417, 3053, + 2383, 2463, 3029, + 2167, 2519, 2997, + 1409, 2585, 2947, + 0, 2661, 2873, + 0, 2745, 2751, + 0, 2837, 2507, + 0, 2937, 1137, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2731, 2241, 3117, + 2731, 2241, 3117, + 2731, 2243, 3117, + 2729, 2243, 3117, + 2727, 2247, 3117, + 2725, 2249, 3115, + 2721, 2253, 3115, + 2717, 2259, 3113, + 2711, 2265, 3111, + 2703, 2273, 3109, + 2691, 2285, 3105, + 2675, 2301, 3099, + 2653, 2321, 3093, + 2623, 2345, 3085, + 2579, 2377, 3073, + 2513, 2415, 3057, + 2403, 2463, 3033, + 2201, 2519, 3001, + 1562, 2585, 2951, + 0, 2659, 2879, + 0, 2745, 2757, + 0, 2837, 2517, + 0, 2937, 1317, + 0, 3045, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2745, 2239, 3121, + 2745, 2239, 3121, + 2743, 2241, 3121, + 2741, 2241, 3121, + 2739, 2245, 3119, + 2737, 2247, 3119, + 2735, 2251, 3117, + 2731, 2257, 3117, + 2725, 2263, 3115, + 2717, 2273, 3111, + 2705, 2283, 3109, + 2691, 2299, 3103, + 2669, 2319, 3097, + 2639, 2343, 3089, + 2597, 2375, 3077, + 2533, 2413, 3061, + 2429, 2461, 3037, + 2241, 2517, 3005, + 1709, 2583, 2957, + 0, 2659, 2885, + 0, 2743, 2765, + 0, 2837, 2531, + 0, 2937, 1482, + 0, 3043, 0, + 0, 3157, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2761, 2235, 3127, + 2761, 2237, 3127, + 2761, 2237, 3125, + 2759, 2239, 3125, + 2757, 2241, 3125, + 2755, 2245, 3125, + 2751, 2249, 3123, + 2747, 2253, 3121, + 2741, 2261, 3119, + 2735, 2269, 3117, + 2723, 2281, 3113, + 2709, 2297, 3109, + 2689, 2317, 3103, + 2661, 2341, 3095, + 2621, 2373, 3083, + 2559, 2413, 3067, + 2463, 2459, 3043, + 2291, 2517, 3011, + 1852, 2583, 2965, + 0, 2657, 2893, + 0, 2743, 2777, + 0, 2835, 2549, + 0, 2937, 1638, + 0, 3043, 0, + 0, 3155, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3517, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2783, 2231, 3133, + 2783, 2233, 3133, + 2781, 2235, 3133, + 2781, 2235, 3133, + 2779, 2239, 3131, + 2777, 2241, 3131, + 2773, 2245, 3129, + 2769, 2251, 3129, + 2765, 2257, 3127, + 2757, 2267, 3123, + 2747, 2279, 3121, + 2733, 2293, 3115, + 2715, 2313, 3109, + 2687, 2339, 3101, + 2649, 2371, 3089, + 2593, 2409, 3073, + 2503, 2457, 3051, + 2349, 2515, 3019, + 1992, 2581, 2973, + 0, 2657, 2905, + 0, 2741, 2791, + 0, 2835, 2573, + 0, 2935, 1786, + 0, 3043, 0, + 0, 3155, 0, + 0, 3273, 0, + 0, 3393, 0, + 0, 3515, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2811, 2227, 3141, + 2811, 2229, 3141, + 2809, 2229, 3141, + 2809, 2231, 3141, + 2807, 2233, 3141, + 2805, 2237, 3139, + 2801, 2241, 3139, + 2797, 2245, 3137, + 2793, 2253, 3135, + 2787, 2261, 3133, + 2777, 2273, 3129, + 2763, 2289, 3125, + 2747, 2309, 3119, + 2721, 2335, 3111, + 2687, 2367, 3099, + 2633, 2407, 3083, + 2553, 2455, 3061, + 2417, 2511, 3031, + 2129, 2579, 2987, + 0, 2655, 2919, + 0, 2739, 2809, + 0, 2833, 2601, + 0, 2935, 1931, + 0, 3043, 0, + 0, 3155, 0, + 0, 3271, 0, + 0, 3393, 0, + 0, 3515, 0, + 0, 3641, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4025, 0, + 2845, 2221, 3153, + 2845, 2221, 3153, + 2843, 2223, 3153, + 2843, 2225, 3153, + 2841, 2227, 3151, + 2839, 2229, 3151, + 2837, 2235, 3149, + 2833, 2239, 3149, + 2829, 2247, 3147, + 2823, 2255, 3145, + 2813, 2267, 3141, + 2801, 2283, 3137, + 2785, 2305, 3131, + 2763, 2329, 3123, + 2731, 2363, 3111, + 2683, 2403, 3097, + 2613, 2451, 3075, + 2495, 2509, 3045, + 2267, 2575, 3003, + 1329, 2653, 2937, + 0, 2737, 2831, + 0, 2831, 2637, + 0, 2933, 2071, + 0, 3041, 0, + 0, 3153, 0, + 0, 3271, 0, + 0, 3391, 0, + 0, 3515, 0, + 0, 3641, 0, + 0, 3767, 0, + 0, 3897, 0, + 0, 4025, 0, + 2887, 2211, 3167, + 2887, 2213, 3167, + 2885, 2215, 3167, + 2885, 2215, 3167, + 2883, 2219, 3167, + 2881, 2221, 3165, + 2879, 2225, 3165, + 2877, 2231, 3163, + 2873, 2239, 3161, + 2867, 2247, 3159, + 2859, 2261, 3157, + 2847, 2277, 3151, + 2833, 2297, 3147, + 2813, 2323, 3139, + 2785, 2355, 3127, + 2743, 2397, 3113, + 2681, 2445, 3093, + 2581, 2503, 3065, + 2401, 2571, 3023, + 1927, 2649, 2961, + 0, 2735, 2861, + 0, 2829, 2683, + 0, 2931, 2211, + 0, 3039, 0, + 0, 3153, 0, + 0, 3271, 0, + 0, 3391, 0, + 0, 3515, 0, + 0, 3641, 0, + 0, 3767, 0, + 0, 3895, 0, + 0, 4025, 0, + 2937, 2199, 3187, + 2937, 2201, 3187, + 2937, 2203, 3187, + 2935, 2203, 3185, + 2935, 2207, 3185, + 2933, 2209, 3185, + 2931, 2213, 3183, + 2929, 2219, 3183, + 2925, 2227, 3181, + 2919, 2237, 3179, + 2913, 2249, 3175, + 2903, 2265, 3171, + 2889, 2287, 3167, + 2873, 2313, 3159, + 2847, 2347, 3149, + 2811, 2389, 3135, + 2757, 2439, 3115, + 2675, 2497, 3087, + 2535, 2565, 3049, + 2237, 2645, 2991, + 0, 2731, 2897, + 0, 2827, 2735, + 0, 2929, 2347, + 0, 3037, 0, + 0, 3151, 0, + 0, 3269, 0, + 0, 3391, 0, + 0, 3515, 0, + 0, 3639, 0, + 0, 3767, 0, + 0, 3895, 0, + 0, 4025, 0, + 2997, 2183, 3211, + 2997, 2185, 3211, + 2997, 2185, 3211, + 2997, 2187, 3211, + 2995, 2189, 3209, + 2993, 2193, 3209, + 2993, 2197, 3209, + 2989, 2203, 3207, + 2987, 2211, 3205, + 2981, 2221, 3203, + 2975, 2235, 3201, + 2967, 2251, 3197, + 2957, 2273, 3191, + 2941, 2301, 3185, + 2919, 2335, 3175, + 2889, 2377, 3161, + 2845, 2429, 3143, + 2777, 2489, 3117, + 2669, 2559, 3081, + 2467, 2637, 3027, + 1839, 2727, 2943, + 0, 2823, 2799, + 0, 2925, 2483, + 0, 3035, 0, + 0, 3149, 0, + 0, 3267, 0, + 0, 3389, 0, + 0, 3513, 0, + 0, 3639, 0, + 0, 3767, 0, + 0, 3895, 0, + 0, 4025, 0, + 3067, 2159, 3241, + 3067, 2161, 3241, + 3067, 2163, 3241, + 3067, 2165, 3241, + 3065, 2167, 3241, + 3065, 2171, 3239, + 3063, 2175, 3239, + 3061, 2181, 3237, + 3057, 2189, 3237, + 3053, 2199, 3235, + 3049, 2213, 3231, + 3041, 2231, 3229, + 3033, 2253, 3223, + 3019, 2283, 3217, + 3001, 2319, 3207, + 2975, 2363, 3195, + 2939, 2415, 3179, + 2887, 2477, 3155, + 2803, 2549, 3121, + 2661, 2629, 3073, + 2357, 2719, 2997, + 0, 2817, 2871, + 0, 2921, 2617, + 0, 3031, 83, + 0, 3147, 0, + 0, 3265, 0, + 0, 3387, 0, + 0, 3511, 0, + 0, 3639, 0, + 0, 3765, 0, + 0, 3895, 0, + 0, 4025, 0, + 3147, 2127, 3279, + 3147, 2127, 3279, + 3147, 2129, 3279, + 3145, 2131, 3279, + 3145, 2135, 3279, + 3143, 2137, 3277, + 3143, 2143, 3277, + 3141, 2149, 3277, + 3139, 2159, 3275, + 3135, 2169, 3273, + 3131, 2185, 3271, + 3125, 2203, 3267, + 3117, 2227, 3263, + 3107, 2257, 3257, + 3091, 2295, 3249, + 3071, 2341, 3237, + 3041, 2397, 3221, + 2999, 2461, 3201, + 2937, 2535, 3171, + 2835, 2617, 3127, + 2651, 2709, 3059, + 2145, 2809, 2953, + 0, 2915, 2751, + 0, 3027, 2137, + 0, 3143, 0, + 0, 3263, 0, + 0, 3385, 0, + 0, 3511, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3895, 0, + 0, 4023, 0, + 3235, 2077, 3325, + 3235, 2079, 3325, + 3235, 2081, 3325, + 3233, 2083, 3325, + 3233, 2087, 3325, + 3233, 2091, 3325, + 3231, 2097, 3323, + 3229, 2103, 3323, + 3227, 2113, 3321, + 3225, 2125, 3319, + 3221, 2141, 3317, + 3217, 2163, 3315, + 3211, 2189, 3311, + 3201, 2221, 3305, + 3189, 2263, 3297, + 3173, 2311, 3287, + 3151, 2369, 3273, + 3117, 2437, 3255, + 3069, 2515, 3229, + 2995, 2601, 3189, + 2875, 2697, 3133, + 2635, 2799, 3043, + 1442, 2907, 2885, + 0, 3021, 2519, + 0, 3137, 0, + 0, 3259, 0, + 0, 3383, 0, + 0, 3509, 0, + 0, 3635, 0, + 0, 3763, 0, + 0, 3893, 0, + 0, 4023, 0, + 3331, 2004, 3381, + 3331, 2005, 3381, + 3331, 2007, 3381, + 3331, 2010, 3381, + 3329, 2014, 3381, + 3329, 2019, 3379, + 3329, 2025, 3379, + 3327, 2033, 3379, + 3325, 2045, 3377, + 3323, 2059, 3375, + 3321, 2077, 3373, + 3317, 2101, 3371, + 3311, 2131, 3367, + 3305, 2169, 3363, + 3295, 2215, 3357, + 3281, 2269, 3347, + 3263, 2333, 3335, + 3239, 2405, 3319, + 3201, 2489, 3295, + 3149, 2579, 3263, + 3065, 2679, 3215, + 2923, 2785, 3141, + 2613, 2895, 3019, + 0, 3011, 2777, + 0, 3131, 1508, + 0, 3253, 0, + 0, 3379, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3763, 0, + 0, 3891, 0, + 0, 4023, 0, + 3435, 1880, 3445, + 3433, 1882, 3445, + 3433, 1885, 3445, + 3433, 1889, 3445, + 3433, 1894, 3445, + 3433, 1900, 3445, + 3431, 1908, 3443, + 3431, 1919, 3443, + 3429, 1933, 3443, + 3427, 1952, 3441, + 3425, 1975, 3439, + 3423, 2005, 3437, + 3419, 2042, 3435, + 3413, 2087, 3429, + 3405, 2141, 3425, + 3395, 2203, 3417, + 3381, 2277, 3407, + 3361, 2359, 3393, + 3335, 2449, 3373, + 3295, 2549, 3345, + 3237, 2653, 3305, + 3143, 2765, 3245, + 2979, 2881, 3151, + 2583, 2999, 2985, + 0, 3123, 2573, + 0, 3247, 0, + 0, 3373, 0, + 0, 3501, 0, + 0, 3631, 0, + 0, 3759, 0, + 0, 3891, 0, + 0, 4021, 0, + 3543, 1635, 3519, + 3543, 1639, 3519, + 3543, 1644, 3519, + 3543, 1650, 3519, + 3543, 1658, 3519, + 3543, 1668, 3519, + 3541, 1682, 3519, + 3541, 1700, 3517, + 3539, 1723, 3517, + 3539, 1752, 3517, + 3537, 1788, 3515, + 3535, 1832, 3513, + 3531, 1885, 3511, + 3527, 1947, 3507, + 3521, 2019, 3501, + 3513, 2099, 3495, + 3503, 2189, 3487, + 3487, 2287, 3475, + 3467, 2393, 3459, + 3437, 2503, 3435, + 3395, 2617, 3403, + 3331, 2737, 3357, + 3231, 2859, 3285, + 3045, 2983, 3165, + 2539, 3109, 2933, + 0, 3237, 1936, + 0, 3367, 0, + 0, 3495, 0, + 0, 3627, 0, + 0, 3757, 0, + 0, 3887, 0, + 0, 4019, 0, + 3657, 227, 3603, + 3657, 299, 3603, + 3657, 381, 3603, + 3657, 471, 3603, + 3657, 569, 3603, + 3657, 674, 3603, + 3657, 784, 3603, + 3655, 900, 3601, + 3655, 1019, 3601, + 3653, 1141, 3601, + 3653, 1265, 3599, + 3651, 1392, 3597, + 3649, 1520, 3595, + 3645, 1648, 3593, + 3641, 1778, 3589, + 3635, 1908, 3583, + 3625, 2039, 3577, + 3615, 2171, 3567, + 3599, 2301, 3553, + 3577, 2433, 3535, + 3547, 2565, 3509, + 3503, 2697, 3471, + 3435, 2829, 3417, + 3327, 2961, 3331, + 3121, 3093, 3183, + 2471, 3225, 2857, + 0, 3357, 0, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3775, 0, 3695, + 3775, 0, 3695, + 3775, 0, 3695, + 3775, 0, 3695, + 3775, 0, 3695, + 3775, 0, 3695, + 3775, 0, 3695, + 3775, 0, 3693, + 3773, 0, 3693, + 3773, 0, 3693, + 3771, 0, 3691, + 3771, 0, 3691, + 3769, 0, 3689, + 3765, 0, 3687, + 3763, 550, 3683, + 3757, 1360, 3679, + 3751, 1700, 3673, + 3743, 1943, 3665, + 3731, 2143, 3655, + 3715, 2319, 3639, + 3693, 2483, 3619, + 3661, 2637, 3591, + 3615, 2785, 3549, + 3545, 2927, 3487, + 3429, 3069, 3387, + 3207, 3207, 3207, + 2363, 3343, 2727, + 0, 3479, 0, + 0, 3613, 0, + 0, 3747, 0, + 0, 3881, 0, + 0, 4013, 0, + 3897, 0, 3795, + 3897, 0, 3795, + 3897, 0, 3795, + 3897, 0, 3795, + 3897, 0, 3795, + 3897, 0, 3795, + 3897, 0, 3795, + 3897, 0, 3793, + 3895, 0, 3793, + 3895, 0, 3793, + 3895, 0, 3793, + 3893, 0, 3791, + 3891, 0, 3789, + 3889, 0, 3787, + 3887, 0, 3785, + 3883, 0, 3781, + 3879, 0, 3777, + 3873, 1021, 3771, + 3863, 1770, 3763, + 3851, 2103, 3751, + 3835, 2343, 3735, + 3813, 2541, 3713, + 3779, 2717, 3681, + 3731, 2881, 3635, + 3659, 3033, 3567, + 3537, 3181, 3453, + 3299, 3325, 3235, + 2161, 3465, 2461, + 0, 3603, 0, + 0, 3739, 0, + 0, 3875, 0, + 0, 4009, 0, + 4021, 0, 3901, + 4021, 0, 3901, + 4021, 0, 3901, + 4021, 0, 3901, + 4021, 0, 3901, + 4021, 0, 3901, + 4021, 0, 3901, + 4021, 0, 3901, + 4019, 0, 3899, + 4019, 0, 3899, + 4019, 0, 3899, + 4019, 0, 3899, + 4017, 0, 3897, + 4015, 0, 3895, + 4013, 0, 3893, + 4011, 0, 3891, + 4007, 0, 3887, + 4003, 0, 3883, + 3995, 0, 3875, + 3987, 1333, 3867, + 3975, 2044, 3855, + 3957, 2373, 3837, + 3935, 2609, 3813, + 3901, 2807, 3779, + 3851, 2983, 3731, + 3777, 3145, 3655, + 3651, 3299, 3527, + 3401, 3445, 3271, + 1527, 3589, 0, + 0, 3729, 0, + 0, 3867, 0, + 0, 4005, 0, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4013, + 4095, 0, 4011, + 4095, 0, 4011, + 4095, 0, 4011, + 4095, 0, 4011, + 4095, 0, 4009, + 4095, 0, 4009, + 4095, 0, 4007, + 4095, 0, 4005, + 4095, 0, 4003, + 4095, 0, 3999, + 4095, 0, 3993, + 4095, 0, 3987, + 4095, 0, 3977, + 4095, 1951, 3963, + 4083, 2409, 3947, + 4059, 2687, 3921, + 4025, 2905, 3885, + 3975, 3093, 3833, + 3897, 3261, 3751, + 3769, 3419, 3611, + 3509, 3569, 3317, + 0, 3715, 0, + 0, 3857, 0, + 0, 3997, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4091, + 4095, 1786, 4079, + 4095, 2453, 4059, + 4095, 2775, 4033, + 4095, 3009, 3997, + 4095, 3207, 3941, + 4021, 3381, 3855, + 3891, 3543, 3705, + 3621, 3695, 3369, + 0, 3843, 0, + 0, 3985, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1387, 4095, + 4095, 2507, 4095, + 4095, 2869, 4095, + 4095, 3121, 4095, + 4095, 3325, 4055, + 4095, 3503, 3963, + 4015, 3669, 3805, + 3737, 3823, 3433, + 0, 3971, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2569, 4095, + 4095, 2971, 4095, + 4095, 3235, 4095, + 4095, 3445, 4095, + 4095, 3629, 4077, + 4095, 3795, 3911, + 3859, 3951, 3505, + 2825, 2377, 3239, + 2825, 2377, 3239, + 2825, 2379, 3239, + 2823, 2379, 3239, + 2821, 2381, 3237, + 2819, 2383, 3237, + 2817, 2387, 3237, + 2813, 2391, 3235, + 2809, 2395, 3233, + 2803, 2403, 3231, + 2793, 2411, 3229, + 2781, 2423, 3225, + 2763, 2437, 3221, + 2739, 2457, 3215, + 2705, 2481, 3205, + 2657, 2513, 3193, + 2579, 2551, 3175, + 2453, 2597, 3153, + 2193, 2653, 3119, + 0, 2719, 3069, + 0, 2793, 2993, + 0, 2879, 2865, + 0, 2971, 2607, + 0, 3071, 0, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 2827, 2377, 3239, + 2827, 2377, 3239, + 2825, 2379, 3239, + 2825, 2379, 3239, + 2823, 2381, 3239, + 2821, 2383, 3237, + 2817, 2387, 3237, + 2815, 2391, 3235, + 2809, 2395, 3235, + 2803, 2403, 3233, + 2793, 2411, 3229, + 2781, 2423, 3225, + 2765, 2437, 3221, + 2741, 2457, 3215, + 2707, 2481, 3205, + 2657, 2513, 3193, + 2581, 2551, 3177, + 2453, 2597, 3153, + 2197, 2653, 3119, + 0, 2719, 3069, + 0, 2793, 2993, + 0, 2877, 2865, + 0, 2971, 2609, + 0, 3071, 0, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 2827, 2377, 3239, + 2827, 2377, 3239, + 2827, 2379, 3239, + 2825, 2379, 3239, + 2823, 2381, 3239, + 2821, 2383, 3237, + 2819, 2387, 3237, + 2815, 2391, 3235, + 2811, 2395, 3235, + 2803, 2401, 3233, + 2795, 2411, 3229, + 2783, 2423, 3227, + 2765, 2437, 3221, + 2743, 2457, 3215, + 2709, 2481, 3205, + 2659, 2513, 3193, + 2583, 2551, 3177, + 2457, 2597, 3153, + 2201, 2653, 3119, + 0, 2719, 3069, + 0, 2793, 2993, + 0, 2877, 2867, + 0, 2971, 2609, + 0, 3071, 0, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 2829, 2377, 3241, + 2829, 2377, 3239, + 2827, 2379, 3239, + 2827, 2379, 3239, + 2825, 2381, 3239, + 2823, 2383, 3239, + 2821, 2387, 3237, + 2817, 2389, 3237, + 2811, 2395, 3235, + 2805, 2401, 3233, + 2797, 2411, 3231, + 2785, 2423, 3227, + 2767, 2437, 3221, + 2743, 2457, 3215, + 2711, 2481, 3207, + 2661, 2513, 3193, + 2585, 2551, 3177, + 2459, 2597, 3153, + 2207, 2653, 3119, + 0, 2719, 3069, + 0, 2793, 2993, + 0, 2877, 2867, + 0, 2971, 2611, + 0, 3071, 0, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 2831, 2377, 3241, + 2831, 2377, 3241, + 2829, 2377, 3241, + 2829, 2379, 3239, + 2827, 2381, 3239, + 2825, 2383, 3239, + 2823, 2385, 3237, + 2819, 2389, 3237, + 2813, 2395, 3235, + 2807, 2401, 3233, + 2799, 2411, 3231, + 2787, 2421, 3227, + 2769, 2437, 3223, + 2745, 2457, 3215, + 2713, 2481, 3207, + 2663, 2513, 3195, + 2589, 2551, 3177, + 2463, 2597, 3153, + 2213, 2653, 3119, + 465, 2719, 3071, + 0, 2793, 2995, + 0, 2877, 2869, + 0, 2971, 2613, + 0, 3071, 0, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 2833, 2375, 3241, + 2833, 2377, 3241, + 2833, 2377, 3241, + 2831, 2379, 3241, + 2829, 2381, 3241, + 2827, 2383, 3239, + 2825, 2385, 3239, + 2821, 2389, 3237, + 2817, 2395, 3237, + 2809, 2401, 3235, + 2801, 2411, 3231, + 2789, 2421, 3227, + 2773, 2437, 3223, + 2749, 2457, 3217, + 2715, 2481, 3207, + 2667, 2511, 3195, + 2593, 2551, 3179, + 2469, 2597, 3155, + 2223, 2653, 3121, + 779, 2719, 3071, + 0, 2793, 2995, + 0, 2877, 2869, + 0, 2971, 2615, + 0, 3071, 0, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2837, 2375, 3243, + 2837, 2377, 3243, + 2835, 2377, 3241, + 2835, 2379, 3241, + 2833, 2379, 3241, + 2831, 2383, 3241, + 2829, 2385, 3239, + 2825, 2389, 3239, + 2819, 2395, 3237, + 2813, 2401, 3235, + 2805, 2409, 3233, + 2793, 2421, 3229, + 2777, 2437, 3223, + 2753, 2455, 3217, + 2719, 2481, 3209, + 2671, 2511, 3197, + 2599, 2551, 3179, + 2477, 2597, 3155, + 2237, 2653, 3123, + 1012, 2719, 3073, + 0, 2793, 2997, + 0, 2877, 2871, + 0, 2971, 2619, + 0, 3071, 435, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2841, 2375, 3243, + 2841, 2375, 3243, + 2839, 2377, 3243, + 2839, 2377, 3243, + 2837, 2379, 3243, + 2835, 2381, 3241, + 2833, 2385, 3241, + 2829, 2389, 3239, + 2825, 2393, 3239, + 2819, 2401, 3237, + 2809, 2409, 3233, + 2797, 2421, 3229, + 2781, 2435, 3225, + 2759, 2455, 3219, + 2725, 2479, 3209, + 2679, 2511, 3197, + 2605, 2549, 3181, + 2487, 2597, 3157, + 2253, 2653, 3123, + 1206, 2719, 3075, + 0, 2793, 2999, + 0, 2877, 2875, + 0, 2971, 2625, + 0, 3071, 809, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2847, 2375, 3245, + 2847, 2375, 3245, + 2845, 2375, 3245, + 2845, 2377, 3245, + 2843, 2379, 3243, + 2841, 2381, 3243, + 2839, 2383, 3243, + 2835, 2387, 3241, + 2831, 2393, 3239, + 2825, 2399, 3237, + 2815, 2409, 3235, + 2803, 2419, 3231, + 2787, 2435, 3227, + 2765, 2455, 3221, + 2733, 2479, 3211, + 2687, 2511, 3199, + 2615, 2549, 3183, + 2499, 2597, 3159, + 2273, 2653, 3125, + 1380, 2717, 3077, + 0, 2793, 3003, + 0, 2877, 2877, + 0, 2969, 2631, + 0, 3071, 1063, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2855, 2373, 3247, + 2853, 2373, 3247, + 2853, 2375, 3247, + 2853, 2375, 3247, + 2851, 2377, 3245, + 2849, 2379, 3245, + 2847, 2383, 3245, + 2843, 2387, 3243, + 2839, 2391, 3241, + 2833, 2399, 3239, + 2823, 2407, 3237, + 2813, 2419, 3233, + 2797, 2435, 3229, + 2775, 2453, 3223, + 2743, 2479, 3213, + 2697, 2509, 3201, + 2627, 2549, 3185, + 2515, 2595, 3161, + 2299, 2651, 3129, + 1541, 2717, 3079, + 0, 2793, 3005, + 0, 2877, 2883, + 0, 2969, 2639, + 0, 3069, 1269, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2865, 2371, 3249, + 2863, 2373, 3249, + 2863, 2373, 3249, + 2863, 2375, 3249, + 2861, 2377, 3249, + 2859, 2379, 3249, + 2857, 2381, 3247, + 2853, 2385, 3247, + 2849, 2391, 3245, + 2843, 2397, 3243, + 2835, 2405, 3241, + 2823, 2417, 3237, + 2807, 2433, 3231, + 2787, 2453, 3225, + 2755, 2477, 3217, + 2711, 2509, 3205, + 2645, 2547, 3189, + 2535, 2595, 3165, + 2333, 2651, 3133, + 1694, 2717, 3085, + 0, 2791, 3011, + 0, 2877, 2889, + 0, 2969, 2649, + 0, 3069, 1449, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2877, 2369, 3253, + 2877, 2371, 3253, + 2877, 2371, 3253, + 2875, 2373, 3253, + 2873, 2375, 3253, + 2873, 2377, 3251, + 2869, 2379, 3251, + 2867, 2383, 3251, + 2863, 2389, 3249, + 2857, 2395, 3247, + 2849, 2405, 3245, + 2837, 2415, 3241, + 2823, 2431, 3235, + 2801, 2451, 3229, + 2773, 2475, 3221, + 2729, 2507, 3209, + 2665, 2547, 3193, + 2563, 2593, 3169, + 2373, 2649, 3137, + 1841, 2715, 3089, + 0, 2791, 3017, + 0, 2875, 2897, + 0, 2969, 2663, + 0, 3069, 1614, + 0, 3177, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2895, 2367, 3259, + 2893, 2367, 3259, + 2893, 2369, 3259, + 2893, 2369, 3259, + 2891, 2371, 3257, + 2889, 2373, 3257, + 2887, 2377, 3257, + 2883, 2381, 3255, + 2879, 2385, 3253, + 2873, 2393, 3251, + 2867, 2401, 3249, + 2855, 2413, 3245, + 2841, 2429, 3241, + 2821, 2449, 3235, + 2793, 2473, 3227, + 2753, 2505, 3215, + 2691, 2545, 3199, + 2595, 2591, 3175, + 2423, 2649, 3143, + 1984, 2715, 3097, + 0, 2789, 3025, + 0, 2875, 2909, + 0, 2967, 2681, + 0, 3069, 1770, + 0, 3175, 0, + 0, 3289, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2915, 2363, 3265, + 2915, 2365, 3265, + 2915, 2365, 3265, + 2913, 2367, 3265, + 2913, 2367, 3265, + 2911, 2371, 3263, + 2909, 2373, 3263, + 2905, 2377, 3261, + 2901, 2383, 3261, + 2897, 2389, 3259, + 2889, 2399, 3255, + 2879, 2411, 3253, + 2865, 2425, 3247, + 2847, 2445, 3241, + 2819, 2471, 3233, + 2781, 2503, 3221, + 2725, 2541, 3205, + 2637, 2589, 3183, + 2481, 2647, 3151, + 2123, 2713, 3107, + 0, 2789, 3037, + 0, 2873, 2923, + 0, 2967, 2705, + 0, 3067, 1919, + 0, 3175, 0, + 0, 3287, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3649, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2943, 2359, 3275, + 2943, 2359, 3273, + 2943, 2361, 3273, + 2941, 2361, 3273, + 2941, 2363, 3273, + 2939, 2365, 3273, + 2937, 2369, 3271, + 2933, 2373, 3271, + 2931, 2377, 3269, + 2925, 2385, 3267, + 2919, 2393, 3265, + 2909, 2405, 3261, + 2897, 2421, 3257, + 2879, 2441, 3251, + 2853, 2467, 3243, + 2819, 2499, 3231, + 2767, 2539, 3215, + 2685, 2587, 3193, + 2549, 2643, 3163, + 2261, 2711, 3119, + 0, 2787, 3051, + 0, 2871, 2941, + 0, 2965, 2733, + 0, 3067, 2063, + 0, 3175, 0, + 0, 3287, 0, + 0, 3405, 0, + 0, 3525, 0, + 0, 3647, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 2977, 2353, 3285, + 2977, 2353, 3285, + 2977, 2353, 3285, + 2975, 2355, 3285, + 2975, 2357, 3285, + 2973, 2359, 3283, + 2971, 2363, 3283, + 2969, 2367, 3281, + 2965, 2371, 3281, + 2961, 2379, 3279, + 2955, 2387, 3277, + 2945, 2401, 3273, + 2933, 2415, 3269, + 2917, 2437, 3263, + 2895, 2461, 3255, + 2863, 2495, 3243, + 2815, 2535, 3229, + 2745, 2583, 3207, + 2627, 2641, 3177, + 2399, 2707, 3135, + 1461, 2785, 3069, + 0, 2869, 2965, + 0, 2963, 2769, + 0, 3065, 2203, + 0, 3173, 0, + 0, 3287, 0, + 0, 3403, 0, + 0, 3525, 0, + 0, 3647, 0, + 0, 3773, 0, + 0, 3901, 0, + 0, 4029, 0, + 3019, 2343, 3301, + 3019, 2343, 3299, + 3019, 2345, 3299, + 3017, 2347, 3299, + 3017, 2347, 3299, + 3015, 2351, 3299, + 3013, 2353, 3297, + 3011, 2357, 3297, + 3009, 2363, 3295, + 3005, 2371, 3293, + 2999, 2379, 3291, + 2991, 2393, 3289, + 2979, 2409, 3285, + 2965, 2429, 3279, + 2945, 2455, 3271, + 2917, 2487, 3259, + 2875, 2529, 3245, + 2813, 2577, 3225, + 2713, 2635, 3197, + 2533, 2703, 3155, + 2059, 2781, 3093, + 0, 2867, 2993, + 0, 2961, 2815, + 0, 3063, 2343, + 0, 3171, 0, + 0, 3285, 0, + 0, 3403, 0, + 0, 3523, 0, + 0, 3647, 0, + 0, 3773, 0, + 0, 3899, 0, + 0, 4029, 0, + 3071, 2331, 3319, + 3069, 2331, 3319, + 3069, 2333, 3319, + 3069, 2335, 3319, + 3067, 2335, 3319, + 3067, 2339, 3317, + 3065, 2341, 3317, + 3063, 2345, 3315, + 3061, 2351, 3315, + 3057, 2359, 3313, + 3051, 2369, 3311, + 3045, 2381, 3307, + 3035, 2397, 3303, + 3023, 2419, 3299, + 3005, 2445, 3291, + 2979, 2479, 3281, + 2943, 2521, 3267, + 2891, 2571, 3247, + 2807, 2629, 3219, + 2667, 2699, 3181, + 2369, 2777, 3123, + 0, 2863, 3031, + 0, 2959, 2867, + 0, 3061, 2479, + 0, 3169, 0, + 0, 3283, 0, + 0, 3401, 0, + 0, 3523, 0, + 0, 3647, 0, + 0, 3773, 0, + 0, 3899, 0, + 0, 4027, 0, + 3131, 2315, 3343, + 3131, 2315, 3343, + 3129, 2317, 3343, + 3129, 2317, 3343, + 3129, 2319, 3343, + 3127, 2321, 3341, + 3125, 2325, 3341, + 3125, 2329, 3341, + 3121, 2335, 3339, + 3119, 2343, 3337, + 3113, 2353, 3335, + 3107, 2367, 3333, + 3099, 2383, 3329, + 3089, 2405, 3323, + 3073, 2433, 3317, + 3051, 2467, 3307, + 3021, 2509, 3293, + 2977, 2561, 3275, + 2909, 2621, 3249, + 2801, 2691, 3213, + 2599, 2769, 3159, + 1971, 2859, 3075, + 0, 2955, 2931, + 0, 3057, 2615, + 0, 3167, 0, + 0, 3281, 0, + 0, 3399, 0, + 0, 3521, 0, + 0, 3645, 0, + 0, 3771, 0, + 0, 3899, 0, + 0, 4027, 0, + 3201, 2291, 3373, + 3199, 2291, 3373, + 3199, 2293, 3373, + 3199, 2295, 3373, + 3199, 2297, 3373, + 3197, 2299, 3373, + 3197, 2303, 3371, + 3195, 2307, 3371, + 3193, 2313, 3371, + 3189, 2321, 3369, + 3185, 2331, 3367, + 3181, 2345, 3363, + 3173, 2363, 3361, + 3165, 2387, 3355, + 3151, 2415, 3349, + 3133, 2451, 3339, + 3107, 2495, 3327, + 3071, 2547, 3311, + 3019, 2609, 3287, + 2935, 2681, 3253, + 2793, 2761, 3205, + 2489, 2851, 3129, + 0, 2949, 3003, + 0, 3053, 2749, + 0, 3163, 215, + 0, 3279, 0, + 0, 3397, 0, + 0, 3519, 0, + 0, 3645, 0, + 0, 3771, 0, + 0, 3899, 0, + 0, 4027, 0, + 3279, 2257, 3411, + 3279, 2259, 3411, + 3279, 2259, 3411, + 3279, 2261, 3411, + 3277, 2263, 3411, + 3277, 2267, 3411, + 3275, 2271, 3409, + 3275, 2275, 3409, + 3273, 2281, 3409, + 3271, 2291, 3407, + 3267, 2301, 3405, + 3263, 2317, 3403, + 3257, 2335, 3399, + 3249, 2359, 3395, + 3239, 2389, 3389, + 3223, 2427, 3381, + 3203, 2473, 3369, + 3173, 2529, 3355, + 3131, 2593, 3333, + 3069, 2667, 3303, + 2967, 2749, 3259, + 2783, 2841, 3191, + 2277, 2941, 3085, + 0, 3047, 2883, + 0, 3159, 2269, + 0, 3275, 0, + 0, 3395, 0, + 0, 3517, 0, + 0, 3643, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4027, 0, + 3367, 2209, 3457, + 3367, 2209, 3457, + 3367, 2211, 3457, + 3367, 2213, 3457, + 3365, 2215, 3457, + 3365, 2219, 3457, + 3365, 2223, 3457, + 3363, 2229, 3455, + 3361, 2235, 3455, + 3361, 2245, 3453, + 3357, 2257, 3451, + 3353, 2273, 3449, + 3349, 2295, 3447, + 3343, 2321, 3443, + 3333, 2353, 3437, + 3321, 2395, 3429, + 3305, 2443, 3419, + 3283, 2503, 3407, + 3249, 2571, 3387, + 3201, 2647, 3361, + 3127, 2735, 3321, + 3007, 2829, 3265, + 2767, 2931, 3175, + 1574, 3039, 3017, + 0, 3153, 2651, + 0, 3271, 0, + 0, 3391, 0, + 0, 3515, 0, + 0, 3641, 0, + 0, 3767, 0, + 0, 3895, 0, + 0, 4025, 0, + 3463, 2135, 3513, + 3463, 2135, 3513, + 3463, 2137, 3513, + 3463, 2139, 3513, + 3463, 2143, 3513, + 3461, 2145, 3513, + 3461, 2151, 3511, + 3461, 2157, 3511, + 3459, 2165, 3511, + 3457, 2177, 3509, + 3455, 2191, 3507, + 3453, 2209, 3505, + 3449, 2233, 3503, + 3443, 2263, 3499, + 3437, 2301, 3495, + 3427, 2347, 3489, + 3413, 2401, 3479, + 3395, 2465, 3467, + 3371, 2537, 3451, + 3333, 2621, 3427, + 3281, 2711, 3395, + 3197, 2811, 3347, + 3055, 2917, 3273, + 2745, 3027, 3151, + 0, 3143, 2909, + 0, 3263, 1640, + 0, 3385, 0, + 0, 3511, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3895, 0, + 0, 4023, 0, + 3567, 2011, 3577, + 3567, 2012, 3577, + 3567, 2014, 3577, + 3565, 2017, 3577, + 3565, 2021, 3577, + 3565, 2026, 3577, + 3565, 2032, 3577, + 3563, 2040, 3577, + 3563, 2051, 3575, + 3561, 2065, 3575, + 3561, 2083, 3573, + 3557, 2107, 3571, + 3555, 2137, 3569, + 3551, 2173, 3567, + 3545, 2219, 3563, + 3537, 2273, 3557, + 3527, 2335, 3549, + 3513, 2409, 3539, + 3493, 2491, 3525, + 3467, 2581, 3505, + 3427, 2681, 3477, + 3369, 2785, 3437, + 3275, 2897, 3377, + 3111, 3013, 3283, + 2715, 3131, 3117, + 0, 3255, 2705, + 0, 3379, 0, + 0, 3505, 0, + 0, 3633, 0, + 0, 3763, 0, + 0, 3891, 0, + 0, 4023, 0, + 3675, 1765, 3653, + 3675, 1767, 3653, + 3675, 1771, 3651, + 3675, 1776, 3651, + 3675, 1782, 3651, + 3675, 1790, 3651, + 3675, 1801, 3651, + 3673, 1814, 3651, + 3673, 1832, 3651, + 3671, 1855, 3649, + 3671, 1884, 3649, + 3669, 1920, 3647, + 3667, 1964, 3645, + 3663, 2017, 3643, + 3659, 2079, 3639, + 3653, 2151, 3633, + 3645, 2231, 3627, + 3635, 2321, 3619, + 3619, 2419, 3607, + 3599, 2525, 3591, + 3569, 2635, 3567, + 3527, 2749, 3535, + 3465, 2869, 3489, + 3363, 2991, 3417, + 3177, 3115, 3297, + 2671, 3241, 3065, + 0, 3369, 2069, + 0, 3499, 0, + 0, 3627, 0, + 0, 3759, 0, + 0, 3889, 0, + 0, 4021, 0, + 3789, 297, 3735, + 3789, 359, 3735, + 3789, 432, 3735, + 3789, 513, 3735, + 3789, 603, 3735, + 3789, 701, 3735, + 3789, 806, 3735, + 3789, 917, 3735, + 3787, 1032, 3733, + 3787, 1151, 3733, + 3785, 1273, 3733, + 3785, 1398, 3731, + 3783, 1524, 3729, + 3781, 1652, 3727, + 3777, 1781, 3725, + 3773, 1910, 3721, + 3767, 2040, 3715, + 3759, 2171, 3709, + 3747, 2303, 3699, + 3731, 2433, 3685, + 3709, 2565, 3667, + 3679, 2697, 3641, + 3635, 2829, 3603, + 3567, 2961, 3549, + 3459, 3093, 3463, + 3253, 3225, 3315, + 2603, 3357, 2989, + 0, 3489, 0, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3907, 0, 3827, + 3905, 0, 3825, + 3905, 0, 3825, + 3903, 0, 3823, + 3903, 0, 3823, + 3901, 0, 3821, + 3899, 0, 3819, + 3895, 682, 3815, + 3891, 1493, 3811, + 3883, 1832, 3805, + 3875, 2075, 3797, + 3863, 2275, 3787, + 3847, 2451, 3773, + 3825, 2615, 3751, + 3793, 2769, 3723, + 3747, 2917, 3681, + 3677, 3059, 3619, + 3561, 3201, 3519, + 3339, 3339, 3339, + 2495, 3475, 2859, + 0, 3611, 0, + 0, 3745, 0, + 0, 3879, 0, + 0, 4013, 0, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4029, 0, 3927, + 4027, 0, 3925, + 4027, 0, 3925, + 4027, 0, 3925, + 4025, 0, 3923, + 4023, 0, 3921, + 4021, 0, 3919, + 4019, 0, 3917, + 4015, 0, 3913, + 4011, 0, 3909, + 4005, 1152, 3903, + 3995, 1902, 3895, + 3983, 2235, 3883, + 3967, 2475, 3867, + 3945, 2673, 3845, + 3911, 2849, 3813, + 3863, 3013, 3767, + 3791, 3165, 3699, + 3669, 3313, 3585, + 3433, 3457, 3367, + 2293, 3597, 2593, + 0, 3735, 0, + 0, 3871, 0, + 0, 4007, 0, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4033, + 4095, 0, 4031, + 4095, 0, 4031, + 4095, 0, 4031, + 4095, 0, 4029, + 4095, 0, 4027, + 4095, 0, 4025, + 4095, 0, 4023, + 4095, 0, 4019, + 4095, 0, 4015, + 4095, 0, 4007, + 4095, 1465, 3999, + 4095, 2177, 3987, + 4091, 2505, 3969, + 4067, 2741, 3945, + 4033, 2939, 3913, + 3983, 3115, 3863, + 3909, 3277, 3787, + 3783, 3431, 3659, + 3533, 3579, 3405, + 1659, 3721, 0, + 0, 3861, 0, + 0, 3999, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2083, 4095, + 4095, 2541, 4079, + 4095, 2819, 4053, + 4095, 3037, 4017, + 4095, 3225, 3965, + 4031, 3393, 3883, + 3901, 3551, 3743, + 3641, 3703, 3449, + 0, 3847, 0, + 0, 3989, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1918, 4095, + 4095, 2585, 4095, + 4095, 2907, 4095, + 4095, 3141, 4095, + 4095, 3339, 4073, + 4095, 3513, 3987, + 4023, 3675, 3837, + 3753, 3827, 3501, + 0, 3975, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1519, 4095, + 4095, 2639, 4095, + 4095, 3001, 4095, + 4095, 3253, 4095, + 4095, 3457, 4095, + 4095, 3635, 4095, + 4095, 3801, 3937, + 3869, 3955, 3565, + 2957, 2509, 3371, + 2957, 2509, 3371, + 2957, 2509, 3371, + 2955, 2511, 3371, + 2955, 2513, 3371, + 2953, 2513, 3369, + 2951, 2515, 3369, + 2949, 2519, 3369, + 2945, 2523, 3367, + 2941, 2527, 3365, + 2933, 2535, 3363, + 2925, 2543, 3361, + 2913, 2555, 3357, + 2895, 2569, 3353, + 2871, 2589, 3347, + 2837, 2613, 3337, + 2787, 2645, 3325, + 2711, 2683, 3307, + 2583, 2731, 3283, + 2323, 2785, 3251, + 0, 2851, 3201, + 0, 2927, 3125, + 0, 3011, 2997, + 0, 3103, 2739, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3539, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2959, 2509, 3371, + 2959, 2509, 3371, + 2957, 2509, 3371, + 2957, 2511, 3371, + 2955, 2511, 3371, + 2953, 2513, 3371, + 2951, 2515, 3369, + 2949, 2519, 3369, + 2945, 2523, 3367, + 2941, 2527, 3367, + 2935, 2535, 3365, + 2925, 2543, 3361, + 2913, 2555, 3357, + 2895, 2569, 3353, + 2871, 2589, 3347, + 2839, 2613, 3337, + 2789, 2645, 3325, + 2711, 2683, 3307, + 2585, 2729, 3285, + 2327, 2785, 3251, + 0, 2851, 3201, + 0, 2927, 3125, + 0, 3011, 2997, + 0, 3103, 2739, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3539, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2959, 2509, 3371, + 2959, 2509, 3371, + 2959, 2509, 3371, + 2957, 2511, 3371, + 2957, 2511, 3371, + 2955, 2513, 3371, + 2953, 2515, 3369, + 2951, 2519, 3369, + 2947, 2523, 3367, + 2941, 2527, 3367, + 2935, 2535, 3365, + 2925, 2543, 3361, + 2913, 2555, 3357, + 2897, 2569, 3353, + 2873, 2589, 3347, + 2839, 2613, 3337, + 2789, 2645, 3325, + 2713, 2683, 3309, + 2587, 2729, 3285, + 2329, 2785, 3251, + 0, 2851, 3201, + 0, 2927, 3125, + 0, 3011, 2997, + 0, 3103, 2741, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3539, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2961, 2509, 3373, + 2959, 2509, 3371, + 2959, 2509, 3371, + 2959, 2511, 3371, + 2957, 2511, 3371, + 2955, 2513, 3371, + 2953, 2515, 3369, + 2951, 2519, 3369, + 2947, 2523, 3369, + 2943, 2527, 3367, + 2937, 2535, 3365, + 2927, 2543, 3361, + 2915, 2555, 3359, + 2897, 2569, 3353, + 2875, 2589, 3347, + 2841, 2613, 3337, + 2791, 2645, 3325, + 2715, 2683, 3309, + 2589, 2729, 3285, + 2333, 2785, 3251, + 0, 2851, 3201, + 0, 2925, 3125, + 0, 3011, 2999, + 0, 3103, 2741, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2961, 2509, 3373, + 2961, 2509, 3373, + 2961, 2509, 3373, + 2959, 2511, 3371, + 2959, 2511, 3371, + 2957, 2513, 3371, + 2955, 2515, 3371, + 2953, 2519, 3369, + 2949, 2523, 3369, + 2945, 2527, 3367, + 2937, 2533, 3365, + 2929, 2543, 3363, + 2917, 2555, 3359, + 2899, 2569, 3353, + 2875, 2589, 3347, + 2843, 2613, 3339, + 2793, 2645, 3325, + 2717, 2683, 3309, + 2591, 2729, 3285, + 2339, 2785, 3251, + 0, 2851, 3201, + 0, 2925, 3125, + 0, 3011, 2999, + 0, 3103, 2743, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2963, 2507, 3373, + 2963, 2509, 3373, + 2963, 2509, 3373, + 2961, 2511, 3373, + 2961, 2511, 3371, + 2959, 2513, 3371, + 2957, 2515, 3371, + 2955, 2517, 3371, + 2951, 2521, 3369, + 2947, 2527, 3367, + 2939, 2533, 3365, + 2931, 2543, 3363, + 2919, 2555, 3359, + 2901, 2569, 3355, + 2879, 2589, 3347, + 2845, 2613, 3339, + 2795, 2645, 3327, + 2721, 2683, 3309, + 2595, 2729, 3285, + 2347, 2785, 3253, + 597, 2851, 3203, + 0, 2925, 3127, + 0, 3009, 3001, + 0, 3103, 2745, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2967, 2507, 3373, + 2965, 2509, 3373, + 2965, 2509, 3373, + 2965, 2509, 3373, + 2963, 2511, 3373, + 2961, 2513, 3373, + 2959, 2515, 3371, + 2957, 2517, 3371, + 2953, 2521, 3369, + 2949, 2527, 3369, + 2943, 2533, 3367, + 2933, 2543, 3363, + 2921, 2553, 3359, + 2905, 2569, 3355, + 2881, 2589, 3349, + 2847, 2613, 3339, + 2799, 2645, 3327, + 2725, 2683, 3311, + 2601, 2729, 3287, + 2355, 2785, 3253, + 912, 2851, 3203, + 0, 2925, 3127, + 0, 3009, 3001, + 0, 3103, 2749, + 0, 3203, 0, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2969, 2507, 3375, + 2969, 2507, 3375, + 2969, 2509, 3375, + 2967, 2509, 3373, + 2967, 2511, 3373, + 2965, 2513, 3373, + 2963, 2515, 3373, + 2961, 2517, 3371, + 2957, 2521, 3371, + 2953, 2527, 3369, + 2945, 2533, 3367, + 2937, 2541, 3365, + 2925, 2553, 3361, + 2909, 2569, 3355, + 2885, 2587, 3349, + 2853, 2613, 3341, + 2803, 2643, 3329, + 2731, 2683, 3311, + 2609, 2729, 3287, + 2369, 2785, 3255, + 1144, 2851, 3205, + 0, 2925, 3129, + 0, 3009, 3003, + 0, 3103, 2751, + 0, 3203, 567, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2973, 2507, 3375, + 2973, 2507, 3375, + 2973, 2507, 3375, + 2971, 2509, 3375, + 2971, 2509, 3375, + 2969, 2511, 3375, + 2967, 2513, 3373, + 2965, 2517, 3373, + 2961, 2521, 3371, + 2957, 2525, 3371, + 2951, 2533, 3369, + 2941, 2541, 3365, + 2929, 2553, 3363, + 2913, 2567, 3357, + 2891, 2587, 3351, + 2857, 2613, 3341, + 2811, 2643, 3329, + 2737, 2681, 3313, + 2619, 2729, 3289, + 2385, 2785, 3255, + 1339, 2851, 3207, + 0, 2925, 3131, + 0, 3009, 3007, + 0, 3103, 2757, + 0, 3203, 941, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2979, 2505, 3377, + 2979, 2507, 3377, + 2979, 2507, 3377, + 2977, 2507, 3377, + 2977, 2509, 3377, + 2975, 2511, 3375, + 2973, 2513, 3375, + 2971, 2515, 3375, + 2967, 2519, 3373, + 2963, 2525, 3371, + 2957, 2531, 3369, + 2947, 2541, 3367, + 2935, 2553, 3363, + 2919, 2567, 3359, + 2897, 2587, 3353, + 2865, 2611, 3343, + 2819, 2643, 3331, + 2747, 2681, 3315, + 2631, 2729, 3291, + 2405, 2785, 3257, + 1513, 2849, 3209, + 0, 2925, 3135, + 0, 3009, 3011, + 0, 3101, 2763, + 0, 3203, 1195, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 2987, 2505, 3379, + 2987, 2505, 3379, + 2987, 2505, 3379, + 2985, 2507, 3379, + 2985, 2507, 3379, + 2983, 2509, 3379, + 2981, 2511, 3377, + 2979, 2515, 3377, + 2975, 2519, 3375, + 2971, 2523, 3375, + 2965, 2531, 3373, + 2955, 2539, 3369, + 2945, 2551, 3365, + 2929, 2567, 3361, + 2907, 2585, 3355, + 2875, 2611, 3345, + 2829, 2641, 3333, + 2759, 2681, 3317, + 2647, 2727, 3293, + 2431, 2783, 3261, + 1674, 2849, 3213, + 0, 2925, 3137, + 0, 3009, 3015, + 0, 3101, 2771, + 0, 3201, 1401, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3905, 0, + 0, 4033, 0, + 2997, 2503, 3383, + 2997, 2503, 3383, + 2997, 2505, 3381, + 2995, 2505, 3381, + 2995, 2507, 3381, + 2993, 2509, 3381, + 2991, 2511, 3381, + 2989, 2513, 3379, + 2985, 2517, 3379, + 2981, 2523, 3377, + 2975, 2529, 3375, + 2967, 2539, 3373, + 2955, 2549, 3369, + 2939, 2565, 3365, + 2919, 2585, 3357, + 2887, 2609, 3349, + 2843, 2641, 3337, + 2777, 2679, 3321, + 2667, 2727, 3297, + 2465, 2783, 3265, + 1826, 2849, 3217, + 0, 2923, 3143, + 0, 3009, 3021, + 0, 3101, 2781, + 0, 3201, 1581, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3905, 0, + 0, 4033, 0, + 3011, 2501, 3387, + 3009, 2501, 3385, + 3009, 2503, 3385, + 3009, 2503, 3385, + 3007, 2505, 3385, + 3007, 2507, 3385, + 3005, 2509, 3385, + 3001, 2511, 3383, + 2999, 2515, 3383, + 2995, 2521, 3381, + 2989, 2527, 3379, + 2981, 2537, 3377, + 2969, 2549, 3373, + 2955, 2563, 3369, + 2933, 2583, 3361, + 2905, 2607, 3353, + 2861, 2639, 3341, + 2797, 2679, 3325, + 2695, 2725, 3301, + 2505, 2781, 3269, + 1973, 2847, 3221, + 0, 2923, 3149, + 0, 3007, 3029, + 0, 3101, 2795, + 0, 3201, 1747, + 0, 3309, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3905, 0, + 0, 4033, 0, + 3027, 2499, 3391, + 3027, 2499, 3391, + 3025, 2499, 3391, + 3025, 2501, 3391, + 3025, 2501, 3391, + 3023, 2503, 3389, + 3021, 2505, 3389, + 3019, 2509, 3389, + 3015, 2513, 3387, + 3011, 2517, 3385, + 3007, 2525, 3383, + 2999, 2533, 3381, + 2987, 2545, 3377, + 2973, 2561, 3373, + 2953, 2581, 3367, + 2925, 2605, 3359, + 2885, 2637, 3347, + 2823, 2677, 3331, + 2727, 2723, 3307, + 2555, 2781, 3275, + 2115, 2847, 3229, + 0, 2923, 3157, + 0, 3007, 3041, + 0, 3099, 2813, + 0, 3201, 1902, + 0, 3307, 0, + 0, 3421, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3905, 0, + 0, 4033, 0, + 3049, 2495, 3397, + 3049, 2495, 3397, + 3047, 2497, 3397, + 3047, 2497, 3397, + 3045, 2499, 3397, + 3045, 2501, 3397, + 3043, 2503, 3395, + 3041, 2505, 3395, + 3037, 2509, 3393, + 3033, 2515, 3393, + 3029, 2521, 3391, + 3021, 2531, 3389, + 3011, 2543, 3385, + 2997, 2557, 3381, + 2979, 2577, 3373, + 2953, 2603, 3365, + 2913, 2635, 3353, + 2857, 2673, 3337, + 2769, 2721, 3315, + 2613, 2779, 3285, + 2255, 2845, 3239, + 0, 2921, 3169, + 0, 3005, 3055, + 0, 3099, 2837, + 0, 3199, 2051, + 0, 3307, 0, + 0, 3419, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3781, 0, + 0, 3905, 0, + 0, 4033, 0, + 3075, 2491, 3407, + 3075, 2491, 3407, + 3075, 2491, 3405, + 3075, 2493, 3405, + 3073, 2493, 3405, + 3073, 2495, 3405, + 3071, 2497, 3405, + 3069, 2501, 3403, + 3065, 2505, 3403, + 3063, 2509, 3401, + 3057, 2517, 3399, + 3051, 2527, 3397, + 3041, 2539, 3393, + 3029, 2553, 3389, + 3011, 2573, 3383, + 2985, 2599, 3375, + 2951, 2631, 3363, + 2899, 2671, 3347, + 2817, 2719, 3327, + 2681, 2775, 3295, + 2393, 2843, 3251, + 0, 2919, 3183, + 0, 3005, 3073, + 0, 3097, 2865, + 0, 3199, 2195, + 0, 3307, 0, + 0, 3419, 0, + 0, 3537, 0, + 0, 3657, 0, + 0, 3779, 0, + 0, 3905, 0, + 0, 4033, 0, + 3109, 2483, 3417, + 3109, 2485, 3417, + 3109, 2485, 3417, + 3109, 2485, 3417, + 3107, 2487, 3417, + 3107, 2489, 3417, + 3105, 2491, 3415, + 3103, 2495, 3415, + 3101, 2499, 3415, + 3097, 2503, 3413, + 3093, 2511, 3411, + 3087, 2521, 3409, + 3077, 2533, 3405, + 3065, 2549, 3401, + 3049, 2569, 3395, + 3027, 2595, 3387, + 2995, 2627, 3375, + 2947, 2667, 3361, + 2877, 2715, 3339, + 2759, 2773, 3309, + 2531, 2839, 3267, + 1593, 2917, 3201, + 0, 3003, 3097, + 0, 3097, 2903, + 0, 3197, 2335, + 0, 3305, 0, + 0, 3419, 0, + 0, 3535, 0, + 0, 3657, 0, + 0, 3779, 0, + 0, 3905, 0, + 0, 4033, 0, + 3153, 2475, 3433, + 3151, 2475, 3433, + 3151, 2477, 3433, + 3151, 2477, 3431, + 3151, 2479, 3431, + 3149, 2481, 3431, + 3147, 2483, 3431, + 3147, 2485, 3429, + 3143, 2489, 3429, + 3141, 2495, 3427, + 3137, 2503, 3425, + 3131, 2511, 3423, + 3123, 2525, 3421, + 3113, 2541, 3417, + 3097, 2561, 3411, + 3077, 2587, 3403, + 3049, 2619, 3391, + 3007, 2661, 3377, + 2945, 2709, 3357, + 2845, 2767, 3329, + 2665, 2835, 3287, + 2191, 2913, 3225, + 0, 2999, 3125, + 0, 3093, 2947, + 0, 3195, 2475, + 0, 3303, 0, + 0, 3417, 0, + 0, 3535, 0, + 0, 3655, 0, + 0, 3779, 0, + 0, 3905, 0, + 0, 4031, 0, + 3203, 2463, 3451, + 3203, 2463, 3451, + 3203, 2463, 3451, + 3201, 2465, 3451, + 3201, 2467, 3451, + 3201, 2469, 3451, + 3199, 2471, 3449, + 3197, 2473, 3449, + 3195, 2477, 3449, + 3193, 2483, 3447, + 3189, 2491, 3445, + 3183, 2501, 3443, + 3177, 2513, 3439, + 3167, 2529, 3435, + 3155, 2551, 3431, + 3137, 2577, 3423, + 3111, 2611, 3413, + 3075, 2653, 3399, + 3023, 2703, 3379, + 2941, 2761, 3353, + 2801, 2831, 3313, + 2501, 2909, 3255, + 0, 2995, 3163, + 0, 3091, 2999, + 0, 3193, 2611, + 0, 3301, 0, + 0, 3415, 0, + 0, 3533, 0, + 0, 3655, 0, + 0, 3779, 0, + 0, 3905, 0, + 0, 4031, 0, + 3263, 2445, 3475, + 3263, 2447, 3475, + 3263, 2447, 3475, + 3261, 2449, 3475, + 3261, 2449, 3475, + 3261, 2451, 3475, + 3259, 2455, 3475, + 3259, 2457, 3473, + 3257, 2461, 3473, + 3253, 2467, 3471, + 3251, 2475, 3469, + 3247, 2485, 3467, + 3239, 2499, 3465, + 3231, 2515, 3461, + 3221, 2537, 3455, + 3205, 2565, 3449, + 3183, 2599, 3439, + 3153, 2641, 3425, + 3109, 2693, 3407, + 3043, 2753, 3383, + 2933, 2823, 3345, + 2731, 2903, 3291, + 2103, 2991, 3207, + 0, 3087, 3063, + 0, 3189, 2747, + 0, 3299, 0, + 0, 3413, 0, + 0, 3531, 0, + 0, 3653, 0, + 0, 3777, 0, + 0, 3903, 0, + 0, 4031, 0, + 3333, 2423, 3507, + 3333, 2423, 3507, + 3331, 2423, 3505, + 3331, 2425, 3505, + 3331, 2427, 3505, + 3331, 2429, 3505, + 3329, 2431, 3505, + 3329, 2435, 3505, + 3327, 2439, 3503, + 3325, 2445, 3503, + 3321, 2453, 3501, + 3319, 2463, 3499, + 3313, 2477, 3497, + 3305, 2495, 3493, + 3297, 2519, 3487, + 3283, 2547, 3481, + 3265, 2583, 3473, + 3241, 2627, 3459, + 3203, 2679, 3443, + 3151, 2741, 3419, + 3067, 2813, 3385, + 2925, 2893, 3337, + 2621, 2983, 3261, + 0, 3081, 3135, + 0, 3185, 2881, + 0, 3295, 347, + 0, 3411, 0, + 0, 3529, 0, + 0, 3651, 0, + 0, 3777, 0, + 0, 3903, 0, + 0, 4031, 0, + 3411, 2389, 3545, + 3411, 2389, 3543, + 3411, 2391, 3543, + 3411, 2391, 3543, + 3411, 2393, 3543, + 3409, 2395, 3543, + 3409, 2399, 3543, + 3409, 2403, 3543, + 3407, 2407, 3541, + 3405, 2413, 3541, + 3403, 2423, 3539, + 3399, 2433, 3537, + 3395, 2449, 3535, + 3389, 2467, 3531, + 3381, 2491, 3527, + 3371, 2521, 3521, + 3355, 2559, 3513, + 3335, 2605, 3501, + 3305, 2661, 3487, + 3263, 2725, 3465, + 3201, 2799, 3435, + 3099, 2883, 3391, + 2915, 2973, 3323, + 2411, 3073, 3217, + 0, 3179, 3015, + 0, 3291, 2401, + 0, 3407, 0, + 0, 3527, 0, + 0, 3649, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 3499, 2341, 3591, + 3499, 2341, 3591, + 3499, 2343, 3589, + 3499, 2343, 3589, + 3499, 2345, 3589, + 3499, 2347, 3589, + 3497, 2351, 3589, + 3497, 2355, 3589, + 3495, 2361, 3587, + 3495, 2367, 3587, + 3493, 2377, 3585, + 3489, 2389, 3583, + 3485, 2405, 3581, + 3481, 2427, 3579, + 3475, 2453, 3575, + 3467, 2485, 3569, + 3455, 2527, 3563, + 3437, 2575, 3551, + 3415, 2635, 3539, + 3381, 2703, 3519, + 3333, 2779, 3493, + 3259, 2867, 3453, + 3139, 2961, 3397, + 2899, 3063, 3307, + 1706, 3171, 3149, + 0, 3285, 2783, + 0, 3403, 0, + 0, 3523, 0, + 0, 3647, 0, + 0, 3773, 0, + 0, 3899, 0, + 0, 4029, 0, + 3595, 2265, 3645, + 3595, 2267, 3645, + 3595, 2267, 3645, + 3595, 2269, 3645, + 3595, 2271, 3645, + 3595, 2275, 3645, + 3593, 2277, 3645, + 3593, 2283, 3643, + 3593, 2289, 3643, + 3591, 2297, 3643, + 3589, 2309, 3641, + 3587, 2323, 3639, + 3585, 2341, 3637, + 3581, 2365, 3635, + 3575, 2395, 3631, + 3569, 2433, 3627, + 3559, 2479, 3621, + 3545, 2533, 3611, + 3527, 2597, 3599, + 3503, 2671, 3583, + 3467, 2753, 3559, + 3413, 2845, 3527, + 3329, 2943, 3479, + 3187, 3049, 3405, + 2877, 3161, 3283, + 0, 3275, 3041, + 0, 3395, 1772, + 0, 3519, 0, + 0, 3643, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4027, 0, + 3699, 2141, 3711, + 3699, 2143, 3711, + 3699, 2145, 3709, + 3699, 2147, 3709, + 3697, 2149, 3709, + 3697, 2153, 3709, + 3697, 2157, 3709, + 3697, 2165, 3709, + 3697, 2173, 3709, + 3695, 2183, 3707, + 3693, 2197, 3707, + 3693, 2217, 3705, + 3689, 2239, 3703, + 3687, 2269, 3701, + 3683, 2305, 3699, + 3677, 2351, 3695, + 3669, 2405, 3689, + 3659, 2469, 3681, + 3645, 2541, 3671, + 3627, 2623, 3657, + 3599, 2713, 3637, + 3559, 2813, 3609, + 3501, 2917, 3569, + 3407, 3029, 3509, + 3243, 3145, 3415, + 2847, 3263, 3249, + 0, 3387, 2837, + 0, 3511, 0, + 0, 3637, 0, + 0, 3765, 0, + 0, 3895, 0, + 0, 4025, 0, + 3807, 1895, 3785, + 3807, 1897, 3785, + 3807, 1900, 3785, + 3807, 1903, 3785, + 3807, 1908, 3783, + 3807, 1914, 3783, + 3807, 1922, 3783, + 3807, 1933, 3783, + 3805, 1946, 3783, + 3805, 1964, 3783, + 3805, 1987, 3781, + 3803, 2016, 3781, + 3801, 2051, 3779, + 3799, 2095, 3777, + 3795, 2149, 3775, + 3791, 2211, 3771, + 3785, 2283, 3767, + 3777, 2365, 3759, + 3767, 2453, 3751, + 3751, 2551, 3739, + 3731, 2657, 3723, + 3701, 2767, 3701, + 3659, 2881, 3667, + 3597, 3001, 3621, + 3495, 3123, 3549, + 3309, 3247, 3429, + 2803, 3373, 3197, + 0, 3501, 2201, + 0, 3631, 0, + 0, 3761, 0, + 0, 3891, 0, + 0, 4021, 0, + 3921, 376, 3867, + 3921, 429, 3867, + 3921, 491, 3867, + 3921, 564, 3867, + 3921, 645, 3867, + 3921, 735, 3867, + 3921, 833, 3867, + 3921, 938, 3867, + 3921, 1048, 3867, + 3919, 1164, 3865, + 3919, 1283, 3865, + 3919, 1405, 3865, + 3917, 1530, 3863, + 3915, 1656, 3861, + 3913, 1784, 3859, + 3909, 1913, 3857, + 3905, 2042, 3853, + 3899, 2173, 3847, + 3891, 2303, 3841, + 3879, 2435, 3831, + 3863, 2565, 3817, + 3841, 2697, 3799, + 3811, 2829, 3773, + 3767, 2961, 3735, + 3699, 3093, 3681, + 3591, 3225, 3595, + 3385, 3357, 3447, + 2735, 3489, 3121, + 0, 3621, 0, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 4041, 0, 3959, + 4041, 0, 3959, + 4041, 0, 3959, + 4039, 0, 3959, + 4039, 0, 3959, + 4039, 0, 3959, + 4039, 0, 3959, + 4039, 0, 3959, + 4039, 0, 3959, + 4039, 0, 3959, + 4037, 0, 3957, + 4037, 0, 3957, + 4037, 0, 3957, + 4035, 0, 3955, + 4033, 0, 3953, + 4031, 0, 3951, + 4027, 815, 3947, + 4023, 1625, 3943, + 4015, 1965, 3937, + 4007, 2207, 3929, + 3995, 2407, 3919, + 3979, 2583, 3905, + 3957, 2747, 3883, + 3925, 2901, 3855, + 3879, 3049, 3813, + 3809, 3193, 3751, + 3693, 3333, 3651, + 3471, 3471, 3471, + 2627, 3607, 2991, + 0, 3743, 0, + 0, 3877, 0, + 0, 4011, 0, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4059, + 4095, 0, 4057, + 4095, 0, 4057, + 4095, 0, 4057, + 4095, 0, 4055, + 4095, 0, 4053, + 4095, 0, 4053, + 4095, 0, 4049, + 4095, 0, 4047, + 4095, 0, 4041, + 4095, 1285, 4035, + 4095, 2034, 4027, + 4095, 2367, 4015, + 4095, 2607, 3999, + 4077, 2805, 3977, + 4043, 2981, 3945, + 3995, 3145, 3899, + 3923, 3297, 3831, + 3801, 3445, 3717, + 3565, 3589, 3499, + 2425, 3729, 2725, + 0, 3867, 0, + 0, 4003, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1597, 4095, + 4095, 2309, 4095, + 4095, 2637, 4095, + 4095, 2875, 4079, + 4095, 3071, 4045, + 4095, 3247, 3995, + 4041, 3409, 3919, + 3915, 3563, 3791, + 3665, 3711, 3537, + 1791, 3853, 0, + 0, 3993, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2215, 4095, + 4095, 2673, 4095, + 4095, 2951, 4095, + 4095, 3169, 4095, + 4095, 3357, 4095, + 4095, 3525, 4015, + 4033, 3683, 3877, + 3773, 3835, 3581, + 0, 3979, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2051, 4095, + 4095, 2717, 4095, + 4095, 3039, 4095, + 4095, 3275, 4095, + 4095, 3471, 4095, + 4095, 3645, 4095, + 4095, 3807, 3969, + 3885, 3961, 3633, + 3089, 2641, 3503, + 3089, 2641, 3503, + 3089, 2641, 3503, + 3089, 2643, 3503, + 3087, 2643, 3503, + 3087, 2645, 3503, + 3085, 2645, 3501, + 3083, 2649, 3501, + 3081, 2651, 3501, + 3077, 2655, 3499, + 3071, 2659, 3497, + 3065, 2667, 3495, + 3057, 2675, 3493, + 3043, 2687, 3489, + 3027, 2703, 3485, + 3003, 2721, 3479, + 2969, 2747, 3469, + 2919, 2777, 3457, + 2843, 2815, 3439, + 2715, 2863, 3415, + 2453, 2919, 3383, + 0, 2983, 3333, + 0, 3059, 3257, + 0, 3143, 3129, + 0, 3235, 2871, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3089, 2641, 3503, + 3089, 2641, 3503, + 3089, 2643, 3503, + 3087, 2645, 3503, + 3085, 2645, 3503, + 3083, 2647, 3501, + 3081, 2651, 3501, + 3077, 2655, 3499, + 3073, 2659, 3499, + 3065, 2667, 3497, + 3057, 2675, 3493, + 3045, 2687, 3489, + 3027, 2701, 3485, + 3003, 2721, 3479, + 2969, 2745, 3469, + 2919, 2777, 3457, + 2843, 2815, 3439, + 2715, 2863, 3417, + 2455, 2919, 3383, + 0, 2983, 3333, + 0, 3059, 3257, + 0, 3143, 3129, + 0, 3235, 2871, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3089, 2641, 3503, + 3089, 2643, 3503, + 3087, 2645, 3503, + 3087, 2645, 3503, + 3085, 2647, 3501, + 3081, 2651, 3501, + 3077, 2655, 3499, + 3073, 2659, 3499, + 3067, 2667, 3497, + 3057, 2675, 3493, + 3045, 2687, 3489, + 3027, 2701, 3485, + 3005, 2721, 3479, + 2971, 2745, 3469, + 2921, 2777, 3457, + 2843, 2815, 3441, + 2717, 2863, 3417, + 2459, 2917, 3383, + 0, 2983, 3333, + 0, 3059, 3257, + 0, 3143, 3129, + 0, 3235, 2871, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3089, 2643, 3503, + 3089, 2643, 3503, + 3087, 2645, 3503, + 3085, 2647, 3501, + 3083, 2651, 3501, + 3079, 2655, 3499, + 3073, 2659, 3499, + 3067, 2667, 3497, + 3059, 2675, 3493, + 3045, 2687, 3491, + 3029, 2701, 3485, + 3005, 2721, 3479, + 2971, 2745, 3469, + 2921, 2777, 3457, + 2845, 2815, 3441, + 2719, 2863, 3417, + 2461, 2917, 3383, + 0, 2983, 3333, + 0, 3059, 3257, + 0, 3143, 3129, + 0, 3235, 2873, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3093, 2641, 3505, + 3093, 2641, 3505, + 3091, 2641, 3503, + 3091, 2641, 3503, + 3091, 2643, 3503, + 3089, 2643, 3503, + 3087, 2645, 3503, + 3085, 2647, 3503, + 3083, 2651, 3501, + 3079, 2655, 3501, + 3075, 2659, 3499, + 3069, 2667, 3497, + 3059, 2675, 3495, + 3047, 2687, 3491, + 3031, 2701, 3485, + 3007, 2721, 3479, + 2973, 2745, 3469, + 2923, 2777, 3457, + 2847, 2815, 3441, + 2721, 2861, 3417, + 2465, 2917, 3383, + 0, 2983, 3333, + 0, 3059, 3257, + 0, 3143, 3131, + 0, 3235, 2873, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3095, 2639, 3505, + 3093, 2641, 3505, + 3093, 2641, 3505, + 3093, 2641, 3505, + 3091, 2643, 3503, + 3091, 2643, 3503, + 3089, 2645, 3503, + 3087, 2647, 3503, + 3085, 2651, 3501, + 3081, 2655, 3501, + 3077, 2659, 3499, + 3069, 2667, 3497, + 3061, 2675, 3495, + 3049, 2687, 3491, + 3031, 2701, 3485, + 3007, 2721, 3479, + 2975, 2745, 3471, + 2925, 2777, 3459, + 2849, 2815, 3441, + 2723, 2861, 3417, + 2471, 2917, 3383, + 108, 2983, 3335, + 0, 3059, 3257, + 0, 3143, 3131, + 0, 3235, 2875, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3097, 2639, 3505, + 3095, 2641, 3505, + 3095, 2641, 3505, + 3095, 2641, 3505, + 3093, 2643, 3505, + 3093, 2643, 3505, + 3091, 2645, 3503, + 3089, 2647, 3503, + 3087, 2651, 3503, + 3083, 2653, 3501, + 3079, 2659, 3499, + 3071, 2665, 3497, + 3063, 2675, 3495, + 3051, 2687, 3491, + 3033, 2701, 3487, + 3011, 2721, 3479, + 2977, 2745, 3471, + 2927, 2777, 3459, + 2853, 2815, 3441, + 2727, 2861, 3417, + 2479, 2917, 3385, + 729, 2983, 3335, + 0, 3057, 3259, + 0, 3143, 3133, + 0, 3235, 2877, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3099, 2639, 3505, + 3099, 2639, 3505, + 3097, 2641, 3505, + 3097, 2641, 3505, + 3097, 2641, 3505, + 3095, 2643, 3505, + 3093, 2645, 3505, + 3091, 2647, 3503, + 3089, 2649, 3503, + 3085, 2653, 3501, + 3081, 2659, 3501, + 3075, 2665, 3499, + 3065, 2675, 3495, + 3053, 2685, 3493, + 3037, 2701, 3487, + 3013, 2721, 3481, + 2979, 2745, 3471, + 2931, 2777, 3459, + 2857, 2815, 3443, + 2733, 2861, 3419, + 2487, 2917, 3385, + 1043, 2983, 3335, + 0, 3057, 3261, + 0, 3141, 3133, + 0, 3235, 2881, + 0, 3335, 0, + 0, 3441, 0, + 0, 3553, 0, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3101, 2639, 3507, + 3101, 2639, 3507, + 3101, 2639, 3507, + 3101, 2641, 3507, + 3099, 2641, 3507, + 3099, 2643, 3505, + 3097, 2645, 3505, + 3095, 2647, 3505, + 3093, 2649, 3503, + 3089, 2653, 3503, + 3085, 2659, 3501, + 3077, 2665, 3499, + 3069, 2673, 3497, + 3057, 2685, 3493, + 3041, 2701, 3489, + 3017, 2721, 3481, + 2985, 2745, 3473, + 2937, 2775, 3461, + 2863, 2815, 3443, + 2741, 2861, 3419, + 2501, 2917, 3387, + 1276, 2983, 3337, + 0, 3057, 3261, + 0, 3141, 3135, + 0, 3235, 2883, + 0, 3335, 699, + 0, 3441, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3107, 2639, 3507, + 3105, 2639, 3507, + 3105, 2639, 3507, + 3105, 2639, 3507, + 3103, 2641, 3507, + 3103, 2641, 3507, + 3101, 2643, 3507, + 3099, 2645, 3505, + 3097, 2649, 3505, + 3093, 2653, 3503, + 3089, 2657, 3503, + 3083, 2665, 3501, + 3073, 2673, 3497, + 3061, 2685, 3495, + 3045, 2701, 3489, + 3023, 2719, 3483, + 2989, 2745, 3473, + 2943, 2775, 3461, + 2869, 2813, 3445, + 2751, 2861, 3421, + 2517, 2917, 3387, + 1471, 2983, 3339, + 0, 3057, 3263, + 0, 3141, 3139, + 0, 3235, 2889, + 0, 3335, 1073, + 0, 3441, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3111, 2637, 3509, + 3111, 2637, 3509, + 3111, 2639, 3509, + 3111, 2639, 3509, + 3109, 2639, 3509, + 3109, 2641, 3509, + 3107, 2643, 3509, + 3105, 2645, 3507, + 3103, 2647, 3507, + 3099, 2651, 3505, + 3095, 2657, 3505, + 3089, 2663, 3503, + 3079, 2673, 3499, + 3069, 2685, 3495, + 3051, 2699, 3491, + 3029, 2719, 3485, + 2997, 2743, 3475, + 2951, 2775, 3463, + 2879, 2813, 3447, + 2763, 2861, 3423, + 2537, 2917, 3389, + 1645, 2981, 3341, + 0, 3057, 3267, + 0, 3141, 3143, + 0, 3235, 2895, + 0, 3335, 1327, + 0, 3441, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3119, 2637, 3511, + 3119, 2637, 3511, + 3119, 2637, 3511, + 3119, 2637, 3511, + 3117, 2639, 3511, + 3117, 2641, 3511, + 3115, 2641, 3511, + 3113, 2643, 3509, + 3111, 2647, 3509, + 3107, 2651, 3507, + 3103, 2655, 3507, + 3097, 2663, 3505, + 3087, 2671, 3501, + 3077, 2683, 3499, + 3061, 2699, 3493, + 3039, 2717, 3487, + 3007, 2743, 3477, + 2961, 2773, 3465, + 2893, 2813, 3449, + 2779, 2859, 3425, + 2563, 2915, 3393, + 1806, 2981, 3345, + 0, 3057, 3271, + 0, 3141, 3147, + 0, 3233, 2903, + 0, 3335, 1533, + 0, 3441, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3789, 0, + 0, 3913, 0, + 0, 4039, 0, + 3129, 2635, 3515, + 3129, 2635, 3515, + 3129, 2635, 3515, + 3129, 2637, 3515, + 3127, 2637, 3513, + 3127, 2639, 3513, + 3125, 2641, 3513, + 3123, 2643, 3513, + 3121, 2645, 3511, + 3117, 2649, 3511, + 3113, 2655, 3509, + 3107, 2661, 3507, + 3099, 2671, 3505, + 3087, 2681, 3501, + 3071, 2697, 3497, + 3051, 2717, 3489, + 3019, 2741, 3481, + 2975, 2773, 3469, + 2909, 2811, 3453, + 2799, 2859, 3429, + 2597, 2915, 3397, + 1958, 2981, 3349, + 0, 3057, 3275, + 0, 3141, 3153, + 0, 3233, 2913, + 0, 3333, 1714, + 0, 3441, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3789, 0, + 0, 3913, 0, + 0, 4039, 0, + 3143, 2633, 3519, + 3143, 2633, 3519, + 3141, 2633, 3519, + 3141, 2635, 3517, + 3141, 2635, 3517, + 3139, 2637, 3517, + 3139, 2639, 3517, + 3137, 2641, 3517, + 3133, 2643, 3515, + 3131, 2647, 3515, + 3127, 2653, 3513, + 3121, 2659, 3511, + 3113, 2669, 3509, + 3101, 2681, 3505, + 3087, 2695, 3501, + 3065, 2715, 3493, + 3037, 2741, 3485, + 2993, 2771, 3473, + 2929, 2811, 3457, + 2827, 2857, 3433, + 2637, 2913, 3401, + 2105, 2979, 3353, + 0, 3055, 3281, + 0, 3139, 3161, + 0, 3233, 2927, + 0, 3333, 1879, + 0, 3441, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3789, 0, + 0, 3913, 0, + 0, 4037, 0, + 3159, 2631, 3523, + 3159, 2631, 3523, + 3159, 2631, 3523, + 3159, 2631, 3523, + 3157, 2633, 3523, + 3157, 2635, 3523, + 3155, 2635, 3521, + 3153, 2637, 3521, + 3151, 2641, 3521, + 3149, 2645, 3519, + 3143, 2651, 3517, + 3139, 2657, 3517, + 3131, 2665, 3513, + 3121, 2677, 3511, + 3105, 2693, 3505, + 3085, 2713, 3499, + 3057, 2737, 3491, + 3017, 2769, 3479, + 2955, 2809, 3463, + 2859, 2855, 3439, + 2687, 2913, 3407, + 2249, 2979, 3361, + 0, 3055, 3289, + 0, 3139, 3173, + 0, 3233, 2945, + 0, 3333, 2034, + 0, 3439, 0, + 0, 3553, 0, + 0, 3669, 0, + 0, 3789, 0, + 0, 3913, 0, + 0, 4037, 0, + 3181, 2627, 3529, + 3181, 2627, 3529, + 3181, 2627, 3529, + 3179, 2629, 3529, + 3179, 2629, 3529, + 3179, 2631, 3529, + 3177, 2633, 3529, + 3175, 2635, 3527, + 3173, 2637, 3527, + 3171, 2641, 3527, + 3167, 2647, 3525, + 3161, 2653, 3523, + 3153, 2663, 3521, + 3143, 2675, 3517, + 3129, 2689, 3513, + 3111, 2709, 3505, + 3085, 2735, 3497, + 3047, 2767, 3485, + 2989, 2807, 3469, + 2901, 2853, 3447, + 2745, 2911, 3417, + 2389, 2977, 3371, + 0, 3053, 3301, + 0, 3137, 3187, + 0, 3231, 2969, + 0, 3333, 2183, + 0, 3439, 0, + 0, 3551, 0, + 0, 3669, 0, + 0, 3789, 0, + 0, 3913, 0, + 0, 4037, 0, + 3209, 2621, 3539, + 3207, 2623, 3539, + 3207, 2623, 3539, + 3207, 2623, 3539, + 3207, 2625, 3537, + 3205, 2625, 3537, + 3205, 2627, 3537, + 3203, 2629, 3537, + 3201, 2633, 3535, + 3199, 2637, 3535, + 3195, 2643, 3533, + 3189, 2649, 3531, + 3183, 2659, 3529, + 3173, 2671, 3525, + 3161, 2685, 3521, + 3143, 2705, 3515, + 3117, 2731, 3507, + 3083, 2763, 3495, + 3031, 2803, 3479, + 2949, 2851, 3459, + 2813, 2909, 3427, + 2527, 2975, 3383, + 0, 3051, 3315, + 0, 3137, 3205, + 0, 3229, 2997, + 0, 3331, 2327, + 0, 3439, 0, + 0, 3551, 0, + 0, 3669, 0, + 0, 3789, 0, + 0, 3913, 0, + 0, 4037, 0, + 3243, 2615, 3549, + 3243, 2615, 3549, + 3241, 2617, 3549, + 3241, 2617, 3549, + 3241, 2617, 3549, + 3239, 2619, 3549, + 3239, 2621, 3549, + 3237, 2623, 3547, + 3235, 2627, 3547, + 3233, 2631, 3547, + 3229, 2635, 3545, + 3225, 2643, 3543, + 3219, 2653, 3541, + 3209, 2665, 3537, + 3199, 2681, 3533, + 3181, 2701, 3527, + 3159, 2727, 3519, + 3127, 2759, 3507, + 3079, 2799, 3493, + 3009, 2847, 3471, + 2891, 2905, 3441, + 2663, 2971, 3399, + 1725, 3049, 3333, + 0, 3135, 3229, + 0, 3229, 3035, + 0, 3329, 2467, + 0, 3437, 0, + 0, 3551, 0, + 0, 3667, 0, + 0, 3789, 0, + 0, 3911, 0, + 0, 4037, 0, + 3285, 2607, 3565, + 3285, 2607, 3565, + 3283, 2607, 3565, + 3283, 2609, 3565, + 3283, 2609, 3565, + 3283, 2611, 3563, + 3281, 2613, 3563, + 3279, 2615, 3563, + 3279, 2617, 3563, + 3275, 2621, 3561, + 3273, 2627, 3559, + 3269, 2635, 3559, + 3263, 2645, 3555, + 3255, 2657, 3553, + 3245, 2673, 3549, + 3229, 2693, 3543, + 3209, 2719, 3535, + 3181, 2753, 3525, + 3139, 2793, 3509, + 3077, 2841, 3489, + 2977, 2899, 3461, + 2797, 2967, 3419, + 2323, 3045, 3357, + 0, 3131, 3257, + 0, 3225, 3079, + 0, 3327, 2607, + 0, 3435, 0, + 0, 3549, 0, + 0, 3667, 0, + 0, 3787, 0, + 0, 3911, 0, + 0, 4037, 0, + 3335, 2595, 3583, + 3335, 2595, 3583, + 3335, 2595, 3583, + 3335, 2597, 3583, + 3333, 2597, 3583, + 3333, 2599, 3583, + 3333, 2601, 3583, + 3331, 2603, 3581, + 3329, 2605, 3581, + 3327, 2611, 3581, + 3325, 2615, 3579, + 3321, 2623, 3577, + 3315, 2633, 3575, + 3309, 2645, 3573, + 3299, 2661, 3567, + 3287, 2683, 3563, + 3269, 2709, 3555, + 3243, 2743, 3545, + 3207, 2785, 3531, + 3155, 2835, 3511, + 3073, 2893, 3485, + 2933, 2963, 3445, + 2633, 3041, 3387, + 0, 3127, 3295, + 0, 3223, 3131, + 0, 3325, 2743, + 0, 3433, 0, + 0, 3547, 0, + 0, 3665, 0, + 0, 3787, 0, + 0, 3911, 0, + 0, 4037, 0, + 3395, 2577, 3607, + 3395, 2577, 3607, + 3395, 2579, 3607, + 3395, 2579, 3607, + 3393, 2581, 3607, + 3393, 2581, 3607, + 3393, 2583, 3607, + 3391, 2587, 3607, + 3391, 2589, 3605, + 3389, 2593, 3605, + 3385, 2599, 3603, + 3383, 2607, 3601, + 3379, 2617, 3599, + 3373, 2631, 3597, + 3363, 2647, 3593, + 3353, 2669, 3587, + 3337, 2697, 3581, + 3315, 2731, 3571, + 3285, 2773, 3559, + 3241, 2825, 3539, + 3175, 2885, 3515, + 3067, 2955, 3477, + 2863, 3035, 3423, + 2235, 3123, 3339, + 0, 3219, 3195, + 0, 3323, 2879, + 0, 3431, 0, + 0, 3545, 0, + 0, 3665, 0, + 0, 3785, 0, + 0, 3909, 0, + 0, 4035, 0, + 3465, 2555, 3639, + 3465, 2555, 3639, + 3465, 2555, 3639, + 3465, 2557, 3639, + 3463, 2557, 3637, + 3463, 2559, 3637, + 3463, 2561, 3637, + 3461, 2563, 3637, + 3461, 2567, 3637, + 3459, 2571, 3635, + 3457, 2577, 3635, + 3455, 2585, 3633, + 3451, 2597, 3631, + 3445, 2609, 3629, + 3439, 2627, 3625, + 3429, 2651, 3619, + 3415, 2679, 3613, + 3397, 2715, 3605, + 3373, 2759, 3591, + 3335, 2811, 3575, + 3283, 2873, 3551, + 3199, 2945, 3517, + 3057, 3025, 3469, + 2753, 3115, 3393, + 0, 3213, 3267, + 0, 3317, 3013, + 0, 3427, 479, + 0, 3543, 0, + 0, 3661, 0, + 0, 3783, 0, + 0, 3909, 0, + 0, 4035, 0, + 3543, 2521, 3677, + 3543, 2521, 3677, + 3543, 2521, 3677, + 3543, 2523, 3675, + 3543, 2525, 3675, + 3543, 2525, 3675, + 3541, 2527, 3675, + 3541, 2531, 3675, + 3541, 2535, 3675, + 3539, 2539, 3673, + 3537, 2545, 3673, + 3535, 2555, 3671, + 3531, 2565, 3669, + 3527, 2581, 3667, + 3521, 2599, 3663, + 3513, 2623, 3659, + 3503, 2653, 3653, + 3487, 2691, 3645, + 3467, 2737, 3633, + 3439, 2793, 3619, + 3395, 2857, 3597, + 3333, 2931, 3567, + 3231, 3015, 3523, + 3047, 3107, 3455, + 2543, 3205, 3349, + 0, 3311, 3147, + 0, 3423, 2533, + 0, 3539, 0, + 0, 3659, 0, + 0, 3781, 0, + 0, 3907, 0, + 0, 4033, 0, + 3631, 2471, 3723, + 3631, 2473, 3723, + 3631, 2473, 3723, + 3631, 2475, 3723, + 3631, 2475, 3721, + 3631, 2477, 3721, + 3631, 2479, 3721, + 3629, 2483, 3721, + 3629, 2487, 3721, + 3627, 2493, 3719, + 3627, 2499, 3719, + 3625, 2509, 3717, + 3621, 2521, 3717, + 3619, 2537, 3713, + 3613, 2559, 3711, + 3607, 2585, 3707, + 3599, 2617, 3701, + 3587, 2659, 3695, + 3569, 2707, 3685, + 3547, 2767, 3671, + 3513, 2835, 3651, + 3465, 2911, 3625, + 3393, 2999, 3585, + 3271, 3093, 3529, + 3031, 3195, 3439, + 1838, 3303, 3281, + 0, 3417, 2915, + 0, 3535, 0, + 0, 3655, 0, + 0, 3779, 0, + 0, 3905, 0, + 0, 4031, 0, + 3727, 2397, 3777, + 3727, 2397, 3777, + 3727, 2399, 3777, + 3727, 2399, 3777, + 3727, 2401, 3777, + 3727, 2403, 3777, + 3727, 2407, 3777, + 3725, 2411, 3777, + 3725, 2415, 3775, + 3725, 2421, 3775, + 3723, 2429, 3775, + 3721, 2441, 3773, + 3719, 2455, 3773, + 3717, 2475, 3771, + 3713, 2497, 3767, + 3707, 2527, 3763, + 3701, 2565, 3759, + 3691, 2611, 3753, + 3679, 2665, 3743, + 3659, 2729, 3731, + 3635, 2803, 3715, + 3599, 2885, 3691, + 3545, 2977, 3659, + 3461, 3075, 3611, + 3319, 3181, 3537, + 3009, 3293, 3415, + 0, 3409, 3173, + 0, 3527, 1904, + 0, 3651, 0, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 3831, 2273, 3843, + 3831, 2273, 3843, + 3831, 2275, 3843, + 3831, 2277, 3843, + 3831, 2279, 3841, + 3831, 2281, 3841, + 3829, 2285, 3841, + 3829, 2289, 3841, + 3829, 2297, 3841, + 3829, 2305, 3841, + 3827, 2315, 3839, + 3827, 2329, 3839, + 3825, 2349, 3837, + 3823, 2371, 3835, + 3819, 2401, 3833, + 3815, 2437, 3831, + 3809, 2483, 3827, + 3801, 2537, 3821, + 3791, 2601, 3813, + 3777, 2673, 3803, + 3759, 2755, 3789, + 3731, 2847, 3769, + 3691, 2945, 3741, + 3633, 3051, 3701, + 3539, 3161, 3641, + 3375, 3277, 3547, + 2979, 3397, 3381, + 0, 3519, 2969, + 0, 3643, 0, + 0, 3769, 0, + 0, 3897, 0, + 0, 4027, 0, + 3939, 2026, 3917, + 3939, 2027, 3917, + 3939, 2029, 3917, + 3939, 2032, 3917, + 3939, 2035, 3917, + 3939, 2040, 3917, + 3939, 2046, 3915, + 3939, 2055, 3915, + 3939, 2065, 3915, + 3937, 2079, 3915, + 3937, 2097, 3915, + 3937, 2119, 3913, + 3935, 2149, 3913, + 3933, 2185, 3911, + 3931, 2229, 3909, + 3927, 2281, 3907, + 3923, 2343, 3903, + 3917, 2415, 3899, + 3909, 2497, 3891, + 3899, 2587, 3883, + 3883, 2683, 3871, + 3863, 2789, 3855, + 3833, 2899, 3833, + 3791, 3015, 3799, + 3729, 3133, 3753, + 3627, 3255, 3681, + 3441, 3379, 3561, + 2935, 3507, 3331, + 0, 3633, 2333, + 0, 3763, 0, + 0, 3893, 0, + 0, 4023, 0, + 4055, 463, 3999, + 4055, 508, 3999, + 4053, 561, 3999, + 4053, 623, 3999, + 4053, 696, 3999, + 4053, 777, 3999, + 4053, 867, 3999, + 4053, 965, 3999, + 4053, 1070, 3999, + 4053, 1181, 3999, + 4051, 1296, 3999, + 4051, 1415, 3997, + 4051, 1537, 3997, + 4049, 1662, 3995, + 4047, 1788, 3993, + 4045, 1916, 3991, + 4041, 2045, 3989, + 4037, 2175, 3985, + 4031, 2305, 3979, + 4023, 2435, 3973, + 4011, 2567, 3963, + 3995, 2697, 3949, + 3973, 2829, 3931, + 3943, 2961, 3905, + 3899, 3093, 3867, + 3831, 3225, 3813, + 3723, 3357, 3727, + 3517, 3489, 3579, + 2867, 3621, 3253, + 0, 3753, 0, + 0, 3885, 0, + 0, 4017, 0, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4091, + 4095, 0, 4089, + 4095, 0, 4089, + 4095, 0, 4089, + 4095, 0, 4087, + 4095, 0, 4085, + 4095, 0, 4083, + 4095, 947, 4079, + 4095, 1757, 4075, + 4095, 2097, 4069, + 4095, 2339, 4061, + 4095, 2539, 4051, + 4095, 2717, 4037, + 4089, 2879, 4015, + 4057, 3033, 3987, + 4011, 3181, 3945, + 3941, 3325, 3883, + 3825, 3465, 3783, + 3603, 3603, 3603, + 2759, 3739, 3123, + 0, 3875, 0, + 0, 4009, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1417, 4095, + 4095, 2167, 4095, + 4095, 2499, 4095, + 4095, 2739, 4095, + 4095, 2937, 4095, + 4095, 3115, 4077, + 4095, 3277, 4033, + 4055, 3431, 3963, + 3933, 3577, 3849, + 3697, 3721, 3631, + 2557, 3861, 2857, + 0, 3999, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1729, 4095, + 4095, 2441, 4095, + 4095, 2769, 4095, + 4095, 3007, 4095, + 4095, 3203, 4095, + 4095, 3379, 4095, + 4095, 3541, 4051, + 4047, 3695, 3923, + 3797, 3843, 3669, + 1924, 3985, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 2347, 4095, + 4095, 2805, 4095, + 4095, 3085, 4095, + 4095, 3301, 4095, + 4095, 3489, 4095, + 4095, 3657, 4095, + 4095, 3815, 4009, + 3905, 3967, 3713, + 3221, 2773, 3635, + 3221, 2773, 3635, + 3221, 2773, 3635, + 3221, 2773, 3635, + 3221, 2775, 3635, + 3219, 2775, 3635, + 3219, 2777, 3635, + 3217, 2779, 3635, + 3215, 2781, 3633, + 3213, 2783, 3633, + 3209, 2787, 3631, + 3203, 2793, 3629, + 3197, 2799, 3627, + 3187, 2807, 3625, + 3175, 2819, 3621, + 3159, 2835, 3617, + 3135, 2853, 3611, + 3101, 2879, 3601, + 3051, 2909, 3589, + 2973, 2947, 3571, + 2845, 2995, 3547, + 2585, 3051, 3515, + 0, 3115, 3465, + 0, 3191, 3387, + 0, 3275, 3261, + 0, 3367, 3003, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3221, 2773, 3635, + 3221, 2773, 3635, + 3221, 2775, 3635, + 3219, 2775, 3635, + 3219, 2777, 3635, + 3217, 2777, 3635, + 3215, 2781, 3633, + 3213, 2783, 3633, + 3209, 2787, 3631, + 3203, 2791, 3631, + 3197, 2799, 3629, + 3189, 2807, 3625, + 3175, 2819, 3621, + 3159, 2835, 3617, + 3135, 2853, 3611, + 3101, 2879, 3601, + 3051, 2909, 3589, + 2975, 2947, 3571, + 2847, 2995, 3549, + 2587, 3051, 3515, + 0, 3115, 3465, + 0, 3191, 3389, + 0, 3275, 3261, + 0, 3367, 3003, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3221, 2773, 3635, + 3221, 2775, 3635, + 3221, 2775, 3635, + 3219, 2777, 3635, + 3217, 2777, 3635, + 3215, 2781, 3633, + 3213, 2783, 3633, + 3209, 2787, 3631, + 3205, 2791, 3631, + 3197, 2799, 3629, + 3189, 2807, 3625, + 3177, 2819, 3621, + 3159, 2835, 3617, + 3135, 2853, 3611, + 3101, 2879, 3601, + 3051, 2909, 3589, + 2975, 2947, 3573, + 2847, 2995, 3549, + 2587, 3051, 3515, + 0, 3115, 3465, + 0, 3191, 3389, + 0, 3275, 3261, + 0, 3367, 3003, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3221, 2775, 3635, + 3221, 2775, 3635, + 3219, 2777, 3635, + 3219, 2777, 3635, + 3217, 2781, 3633, + 3213, 2783, 3633, + 3209, 2787, 3631, + 3205, 2791, 3631, + 3199, 2799, 3629, + 3189, 2807, 3625, + 3177, 2819, 3623, + 3161, 2835, 3617, + 3137, 2853, 3611, + 3103, 2879, 3601, + 3053, 2909, 3589, + 2977, 2947, 3573, + 2849, 2995, 3549, + 2591, 3051, 3515, + 0, 3115, 3465, + 0, 3191, 3389, + 0, 3275, 3261, + 0, 3367, 3005, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3225, 2773, 3637, + 3223, 2773, 3637, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3223, 2773, 3635, + 3221, 2775, 3635, + 3221, 2777, 3635, + 3219, 2777, 3635, + 3217, 2779, 3633, + 3215, 2783, 3633, + 3211, 2787, 3633, + 3205, 2791, 3631, + 3199, 2799, 3629, + 3191, 2807, 3625, + 3177, 2819, 3623, + 3161, 2833, 3617, + 3137, 2853, 3611, + 3103, 2877, 3601, + 3053, 2909, 3589, + 2977, 2947, 3573, + 2851, 2995, 3549, + 2593, 3051, 3515, + 0, 3115, 3465, + 0, 3191, 3389, + 0, 3275, 3261, + 0, 3367, 3005, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3225, 2771, 3637, + 3225, 2773, 3637, + 3225, 2773, 3637, + 3225, 2773, 3637, + 3223, 2773, 3635, + 3223, 2775, 3635, + 3221, 2775, 3635, + 3221, 2777, 3635, + 3219, 2779, 3635, + 3215, 2783, 3633, + 3211, 2787, 3633, + 3207, 2791, 3631, + 3201, 2799, 3629, + 3191, 2807, 3627, + 3179, 2819, 3623, + 3163, 2833, 3617, + 3139, 2853, 3611, + 3105, 2877, 3603, + 3055, 2909, 3589, + 2979, 2947, 3573, + 2853, 2995, 3549, + 2597, 3049, 3515, + 0, 3115, 3465, + 0, 3191, 3389, + 0, 3275, 3263, + 0, 3367, 3007, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3227, 2771, 3637, + 3227, 2773, 3637, + 3225, 2773, 3637, + 3225, 2773, 3637, + 3225, 2773, 3637, + 3225, 2775, 3637, + 3223, 2775, 3635, + 3221, 2777, 3635, + 3219, 2779, 3635, + 3217, 2783, 3633, + 3213, 2787, 3633, + 3209, 2791, 3631, + 3201, 2799, 3629, + 3193, 2807, 3627, + 3181, 2819, 3623, + 3163, 2833, 3619, + 3141, 2853, 3611, + 3107, 2877, 3603, + 3057, 2909, 3591, + 2981, 2947, 3573, + 2855, 2993, 3549, + 2603, 3049, 3515, + 240, 3115, 3467, + 0, 3191, 3391, + 0, 3275, 3263, + 0, 3367, 3007, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3229, 2771, 3637, + 3229, 2771, 3637, + 3227, 2773, 3637, + 3227, 2773, 3637, + 3227, 2773, 3637, + 3225, 2775, 3637, + 3225, 2775, 3637, + 3223, 2777, 3635, + 3221, 2779, 3635, + 3219, 2783, 3635, + 3215, 2787, 3633, + 3211, 2791, 3631, + 3203, 2797, 3629, + 3195, 2807, 3627, + 3183, 2819, 3623, + 3165, 2833, 3619, + 3143, 2853, 3611, + 3109, 2877, 3603, + 3059, 2909, 3591, + 2985, 2947, 3573, + 2861, 2993, 3551, + 2611, 3049, 3517, + 861, 3115, 3467, + 0, 3191, 3391, + 0, 3275, 3265, + 0, 3367, 3009, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3231, 2771, 3639, + 3231, 2771, 3637, + 3231, 2771, 3637, + 3229, 2773, 3637, + 3229, 2773, 3637, + 3229, 2773, 3637, + 3227, 2775, 3637, + 3225, 2777, 3637, + 3223, 2779, 3635, + 3221, 2781, 3635, + 3217, 2785, 3633, + 3213, 2791, 3633, + 3207, 2797, 3631, + 3197, 2807, 3627, + 3185, 2819, 3625, + 3169, 2833, 3619, + 3145, 2853, 3613, + 3113, 2877, 3603, + 3063, 2909, 3591, + 2989, 2947, 3575, + 2865, 2993, 3551, + 2619, 3049, 3517, + 1175, 3115, 3467, + 0, 3189, 3393, + 0, 3275, 3267, + 0, 3367, 3013, + 0, 3467, 0, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3235, 2771, 3639, + 3233, 2771, 3639, + 3233, 2771, 3639, + 3233, 2771, 3639, + 3233, 2773, 3639, + 3231, 2773, 3639, + 3231, 2775, 3637, + 3229, 2777, 3637, + 3227, 2779, 3637, + 3225, 2781, 3635, + 3221, 2785, 3635, + 3217, 2791, 3633, + 3209, 2797, 3631, + 3201, 2807, 3629, + 3189, 2817, 3625, + 3173, 2833, 3621, + 3149, 2853, 3613, + 3117, 2877, 3605, + 3069, 2907, 3593, + 2995, 2947, 3575, + 2873, 2993, 3553, + 2633, 3049, 3519, + 1408, 3115, 3469, + 0, 3189, 3393, + 0, 3273, 3269, + 0, 3367, 3015, + 0, 3467, 831, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3239, 2771, 3641, + 3239, 2771, 3641, + 3237, 2771, 3639, + 3237, 2771, 3639, + 3237, 2771, 3639, + 3237, 2773, 3639, + 3235, 2775, 3639, + 3233, 2775, 3639, + 3231, 2777, 3637, + 3229, 2781, 3637, + 3225, 2785, 3637, + 3221, 2789, 3635, + 3215, 2797, 3633, + 3205, 2805, 3629, + 3193, 2817, 3627, + 3177, 2833, 3621, + 3155, 2851, 3615, + 3123, 2877, 3607, + 3075, 2907, 3593, + 3001, 2947, 3577, + 2883, 2993, 3553, + 2649, 3049, 3519, + 1603, 3115, 3471, + 0, 3189, 3395, + 0, 3273, 3271, + 0, 3367, 3021, + 0, 3467, 1205, + 0, 3573, 0, + 0, 3685, 0, + 0, 3803, 0, + 0, 3923, 0, + 0, 4045, 0, + 3245, 2769, 3641, + 3245, 2769, 3641, + 3243, 2769, 3641, + 3243, 2771, 3641, + 3243, 2771, 3641, + 3241, 2773, 3641, + 3241, 2773, 3641, + 3239, 2775, 3641, + 3237, 2777, 3639, + 3235, 2781, 3639, + 3231, 2783, 3637, + 3227, 2789, 3637, + 3221, 2795, 3635, + 3211, 2805, 3631, + 3201, 2817, 3627, + 3185, 2831, 3623, + 3161, 2851, 3617, + 3129, 2875, 3607, + 3083, 2907, 3595, + 3011, 2945, 3579, + 2895, 2993, 3555, + 2669, 3049, 3523, + 1777, 3115, 3473, + 0, 3189, 3399, + 0, 3273, 3275, + 0, 3367, 3027, + 0, 3467, 1459, + 0, 3573, 0, + 0, 3685, 0, + 0, 3801, 0, + 0, 3923, 0, + 0, 4045, 0, + 3251, 2769, 3643, + 3251, 2769, 3643, + 3251, 2769, 3643, + 3251, 2769, 3643, + 3251, 2771, 3643, + 3249, 2771, 3643, + 3249, 2773, 3643, + 3247, 2773, 3643, + 3245, 2777, 3641, + 3243, 2779, 3641, + 3239, 2783, 3639, + 3235, 2789, 3639, + 3229, 2795, 3637, + 3221, 2803, 3633, + 3209, 2815, 3631, + 3193, 2831, 3625, + 3171, 2851, 3619, + 3139, 2875, 3611, + 3093, 2907, 3597, + 3025, 2945, 3581, + 2911, 2991, 3557, + 2695, 3047, 3525, + 1938, 3113, 3477, + 0, 3189, 3403, + 0, 3273, 3279, + 0, 3365, 3035, + 0, 3467, 1665, + 0, 3573, 0, + 0, 3685, 0, + 0, 3801, 0, + 0, 3923, 0, + 0, 4045, 0, + 3261, 2767, 3647, + 3261, 2767, 3647, + 3261, 2767, 3647, + 3261, 2767, 3647, + 3261, 2769, 3647, + 3259, 2769, 3645, + 3259, 2771, 3645, + 3257, 2773, 3645, + 3255, 2775, 3645, + 3253, 2777, 3643, + 3249, 2781, 3643, + 3245, 2787, 3641, + 3239, 2793, 3639, + 3231, 2803, 3637, + 3219, 2815, 3633, + 3205, 2829, 3629, + 3183, 2849, 3621, + 3151, 2873, 3613, + 3107, 2905, 3601, + 3041, 2943, 3585, + 2933, 2991, 3561, + 2729, 3047, 3529, + 2091, 3113, 3481, + 0, 3189, 3407, + 0, 3273, 3285, + 0, 3365, 3045, + 0, 3465, 1846, + 0, 3573, 0, + 0, 3685, 0, + 0, 3801, 0, + 0, 3921, 0, + 0, 4045, 0, + 3275, 2765, 3651, + 3275, 2765, 3651, + 3275, 2765, 3651, + 3273, 2765, 3651, + 3273, 2767, 3649, + 3273, 2767, 3649, + 3271, 2769, 3649, + 3271, 2771, 3649, + 3269, 2773, 3649, + 3267, 2775, 3647, + 3263, 2779, 3647, + 3259, 2785, 3645, + 3253, 2791, 3643, + 3245, 2801, 3641, + 3233, 2813, 3637, + 3219, 2827, 3633, + 3197, 2847, 3625, + 3169, 2873, 3617, + 3125, 2903, 3605, + 3061, 2943, 3589, + 2959, 2989, 3565, + 2769, 3047, 3533, + 2237, 3111, 3485, + 0, 3187, 3413, + 0, 3271, 3293, + 0, 3365, 3059, + 0, 3465, 2011, + 0, 3573, 0, + 0, 3685, 0, + 0, 3801, 0, + 0, 3921, 0, + 0, 4045, 0, + 3291, 2763, 3655, + 3291, 2763, 3655, + 3291, 2763, 3655, + 3291, 2763, 3655, + 3291, 2763, 3655, + 3289, 2765, 3655, + 3289, 2767, 3655, + 3287, 2767, 3653, + 3285, 2771, 3653, + 3283, 2773, 3653, + 3281, 2777, 3651, + 3275, 2783, 3651, + 3271, 2789, 3649, + 3263, 2799, 3645, + 3253, 2809, 3643, + 3237, 2825, 3637, + 3217, 2845, 3631, + 3189, 2871, 3623, + 3149, 2901, 3611, + 3089, 2941, 3595, + 2991, 2989, 3571, + 2819, 3045, 3539, + 2381, 3111, 3493, + 0, 3187, 3421, + 0, 3271, 3305, + 0, 3365, 3077, + 0, 3465, 2167, + 0, 3571, 0, + 0, 3685, 0, + 0, 3801, 0, + 0, 3921, 0, + 0, 4045, 0, + 3313, 2759, 3663, + 3313, 2759, 3661, + 3313, 2759, 3661, + 3313, 2759, 3661, + 3311, 2761, 3661, + 3311, 2761, 3661, + 3311, 2763, 3661, + 3309, 2765, 3661, + 3307, 2767, 3659, + 3305, 2769, 3659, + 3303, 2773, 3659, + 3299, 2779, 3657, + 3293, 2785, 3655, + 3285, 2795, 3653, + 3275, 2807, 3649, + 3261, 2823, 3645, + 3243, 2841, 3639, + 3217, 2867, 3629, + 3179, 2899, 3619, + 3121, 2939, 3603, + 3033, 2985, 3579, + 2877, 3043, 3549, + 2521, 3109, 3503, + 0, 3185, 3433, + 0, 3269, 3319, + 0, 3363, 3101, + 0, 3465, 2315, + 0, 3571, 0, + 0, 3683, 0, + 0, 3801, 0, + 0, 3921, 0, + 0, 4045, 0, + 3341, 2753, 3671, + 3341, 2753, 3671, + 3341, 2755, 3671, + 3339, 2755, 3671, + 3339, 2755, 3671, + 3339, 2757, 3671, + 3337, 2757, 3669, + 3337, 2759, 3669, + 3335, 2761, 3669, + 3333, 2765, 3667, + 3331, 2769, 3667, + 3327, 2775, 3665, + 3321, 2781, 3663, + 3315, 2791, 3661, + 3305, 2803, 3657, + 3293, 2817, 3653, + 3275, 2837, 3647, + 3249, 2863, 3639, + 3215, 2895, 3627, + 3163, 2935, 3613, + 3081, 2983, 3591, + 2945, 3041, 3559, + 2659, 3107, 3515, + 0, 3183, 3447, + 0, 3269, 3337, + 0, 3363, 3131, + 0, 3463, 2459, + 0, 3571, 0, + 0, 3683, 0, + 0, 3801, 0, + 0, 3921, 0, + 0, 4045, 0, + 3375, 2747, 3683, + 3375, 2747, 3683, + 3375, 2747, 3681, + 3373, 2749, 3681, + 3373, 2749, 3681, + 3373, 2751, 3681, + 3373, 2751, 3681, + 3371, 2753, 3681, + 3369, 2755, 3681, + 3367, 2759, 3679, + 3365, 2763, 3679, + 3361, 2767, 3677, + 3357, 2775, 3675, + 3351, 2785, 3673, + 3341, 2797, 3669, + 3331, 2813, 3665, + 3313, 2833, 3659, + 3291, 2859, 3651, + 3259, 2891, 3641, + 3213, 2931, 3625, + 3141, 2979, 3603, + 3023, 3037, 3573, + 2795, 3103, 3531, + 1857, 3181, 3465, + 0, 3267, 3361, + 0, 3361, 3167, + 0, 3461, 2601, + 0, 3569, 0, + 0, 3683, 0, + 0, 3799, 0, + 0, 3921, 0, + 0, 4043, 0, + 3417, 2739, 3697, + 3417, 2739, 3697, + 3417, 2739, 3697, + 3415, 2739, 3697, + 3415, 2741, 3697, + 3415, 2741, 3697, + 3415, 2743, 3695, + 3413, 2745, 3695, + 3413, 2747, 3695, + 3411, 2749, 3695, + 3407, 2753, 3693, + 3405, 2759, 3691, + 3401, 2767, 3691, + 3395, 2777, 3687, + 3387, 2789, 3685, + 3377, 2805, 3681, + 3361, 2825, 3675, + 3341, 2851, 3667, + 3313, 2885, 3657, + 3271, 2925, 3641, + 3209, 2973, 3621, + 3109, 3033, 3593, + 2929, 3099, 3551, + 2455, 3177, 3489, + 0, 3263, 3389, + 0, 3359, 3211, + 0, 3459, 2739, + 0, 3569, 0, + 0, 3681, 0, + 0, 3799, 0, + 0, 3919, 0, + 0, 4043, 0, + 3467, 2727, 3715, + 3467, 2727, 3715, + 3467, 2727, 3715, + 3467, 2727, 3715, + 3467, 2729, 3715, + 3465, 2729, 3715, + 3465, 2731, 3715, + 3465, 2733, 3715, + 3463, 2735, 3713, + 3461, 2737, 3713, + 3459, 2743, 3713, + 3457, 2747, 3711, + 3453, 2755, 3709, + 3447, 2765, 3707, + 3441, 2777, 3705, + 3431, 2795, 3701, + 3419, 2815, 3695, + 3401, 2841, 3687, + 3375, 2875, 3677, + 3339, 2917, 3663, + 3287, 2967, 3643, + 3205, 3025, 3617, + 3065, 3095, 3577, + 2765, 3173, 3519, + 0, 3259, 3427, + 0, 3355, 3265, + 0, 3457, 2875, + 0, 3567, 0, + 0, 3679, 0, + 0, 3797, 0, + 0, 3919, 0, + 0, 4043, 0, + 3527, 2709, 3741, + 3527, 2709, 3741, + 3527, 2711, 3739, + 3527, 2711, 3739, + 3527, 2711, 3739, + 3527, 2713, 3739, + 3525, 2713, 3739, + 3525, 2715, 3739, + 3523, 2719, 3739, + 3523, 2721, 3737, + 3521, 2727, 3737, + 3519, 2731, 3735, + 3515, 2739, 3735, + 3511, 2749, 3731, + 3505, 2763, 3729, + 3497, 2779, 3725, + 3485, 2801, 3719, + 3469, 2829, 3713, + 3447, 2863, 3703, + 3417, 2905, 3691, + 3373, 2957, 3671, + 3307, 3017, 3647, + 3199, 3087, 3609, + 2997, 3167, 3555, + 2367, 3255, 3471, + 0, 3351, 3327, + 0, 3455, 3011, + 0, 3563, 0, + 0, 3677, 0, + 0, 3797, 0, + 0, 3917, 0, + 0, 4041, 0, + 3597, 2685, 3771, + 3597, 2687, 3771, + 3597, 2687, 3771, + 3597, 2687, 3771, + 3597, 2689, 3771, + 3595, 2689, 3771, + 3595, 2691, 3769, + 3595, 2693, 3769, + 3593, 2695, 3769, + 3593, 2699, 3769, + 3591, 2703, 3767, + 3589, 2709, 3767, + 3587, 2717, 3765, + 3583, 2729, 3763, + 3577, 2741, 3761, + 3571, 2759, 3757, + 3561, 2783, 3751, + 3547, 2811, 3745, + 3529, 2847, 3737, + 3505, 2891, 3725, + 3469, 2943, 3707, + 3415, 3005, 3683, + 3331, 3077, 3649, + 3191, 3157, 3601, + 2885, 3247, 3525, + 0, 3345, 3399, + 0, 3449, 3145, + 0, 3559, 611, + 0, 3675, 0, + 0, 3795, 0, + 0, 3917, 0, + 0, 4041, 0, + 3675, 2653, 3809, + 3675, 2653, 3809, + 3675, 2653, 3809, + 3675, 2655, 3809, + 3675, 2655, 3809, + 3675, 2657, 3807, + 3675, 2657, 3807, + 3675, 2659, 3807, + 3673, 2663, 3807, + 3673, 2667, 3807, + 3671, 2671, 3805, + 3669, 2677, 3805, + 3667, 2687, 3803, + 3663, 2697, 3801, + 3659, 2713, 3799, + 3653, 2731, 3795, + 3645, 2755, 3791, + 3635, 2785, 3785, + 3621, 2823, 3777, + 3599, 2869, 3765, + 3571, 2925, 3751, + 3529, 2989, 3729, + 3465, 3063, 3699, + 3363, 3147, 3655, + 3179, 3239, 3589, + 2675, 3337, 3481, + 0, 3443, 3281, + 0, 3555, 2665, + 0, 3671, 0, + 0, 3791, 0, + 0, 3913, 0, + 0, 4039, 0, + 3763, 2603, 3855, + 3763, 2605, 3855, + 3763, 2605, 3855, + 3763, 2605, 3855, + 3763, 2607, 3855, + 3763, 2607, 3855, + 3763, 2609, 3853, + 3763, 2611, 3853, + 3761, 2615, 3853, + 3761, 2619, 3853, + 3759, 2625, 3853, + 3759, 2631, 3851, + 3757, 2641, 3849, + 3753, 2653, 3849, + 3751, 2671, 3847, + 3745, 2691, 3843, + 3739, 2717, 3839, + 3731, 2751, 3833, + 3719, 2791, 3827, + 3701, 2839, 3817, + 3679, 2899, 3803, + 3645, 2967, 3783, + 3597, 3043, 3757, + 3525, 3131, 3719, + 3403, 3225, 3661, + 3163, 3327, 3571, + 1971, 3435, 3413, + 0, 3549, 3047, + 0, 3667, 0, + 0, 3787, 0, + 0, 3911, 0, + 0, 4037, 0, + 3859, 2529, 3909, + 3859, 2529, 3909, + 3859, 2531, 3909, + 3859, 2531, 3909, + 3859, 2533, 3909, + 3859, 2533, 3909, + 3859, 2535, 3909, + 3859, 2539, 3909, + 3859, 2543, 3909, + 3857, 2547, 3909, + 3857, 2553, 3907, + 3855, 2561, 3907, + 3853, 2573, 3905, + 3851, 2587, 3905, + 3849, 2607, 3903, + 3845, 2629, 3899, + 3839, 2659, 3897, + 3833, 2697, 3891, + 3823, 2743, 3885, + 3811, 2797, 3875, + 3793, 2861, 3863, + 3767, 2935, 3847, + 3731, 3017, 3825, + 3677, 3109, 3791, + 3593, 3207, 3743, + 3451, 3313, 3669, + 3141, 3425, 3547, + 0, 3541, 3305, + 0, 3659, 2036, + 0, 3783, 0, + 0, 3907, 0, + 0, 4033, 0, + 3963, 2405, 3975, + 3963, 2405, 3975, + 3963, 2407, 3975, + 3963, 2407, 3975, + 3963, 2409, 3975, + 3963, 2411, 3975, + 3963, 2413, 3973, + 3961, 2417, 3973, + 3961, 2423, 3973, + 3961, 2429, 3973, + 3961, 2437, 3973, + 3959, 2447, 3971, + 3959, 2461, 3971, + 3957, 2481, 3969, + 3955, 2503, 3967, + 3951, 2533, 3965, + 3947, 2571, 3963, + 3941, 2615, 3959, + 3935, 2669, 3953, + 3923, 2733, 3945, + 3909, 2805, 3935, + 3891, 2887, 3921, + 3863, 2979, 3901, + 3823, 3077, 3873, + 3765, 3183, 3833, + 3671, 3293, 3773, + 3507, 3409, 3679, + 3111, 3529, 3513, + 0, 3651, 3101, + 0, 3775, 0, + 0, 3901, 0, + 0, 4029, 0, + 4073, 2157, 4049, + 4073, 2157, 4049, + 4071, 2159, 4049, + 4071, 2161, 4049, + 4071, 2163, 4049, + 4071, 2167, 4049, + 4071, 2173, 4049, + 4071, 2179, 4049, + 4071, 2187, 4047, + 4071, 2197, 4047, + 4071, 2211, 4047, + 4069, 2229, 4047, + 4069, 2251, 4045, + 4067, 2281, 4045, + 4065, 2317, 4043, + 4063, 2361, 4041, + 4059, 2413, 4039, + 4055, 2475, 4035, + 4049, 2547, 4031, + 4041, 2629, 4025, + 4031, 2719, 4015, + 4015, 2815, 4003, + 3995, 2921, 3987, + 3967, 3031, 3965, + 3923, 3147, 3931, + 3861, 3265, 3885, + 3759, 3387, 3813, + 3573, 3511, 3693, + 3067, 3639, 3463, + 0, 3765, 2465, + 0, 3895, 0, + 0, 4025, 0, + 4095, 559, 4095, + 4095, 596, 4095, + 4095, 640, 4095, + 4095, 693, 4095, + 4095, 756, 4095, + 4095, 828, 4095, + 4095, 909, 4095, + 4095, 999, 4095, + 4095, 1097, 4095, + 4095, 1202, 4095, + 4095, 1313, 4095, + 4095, 1428, 4095, + 4095, 1547, 4095, + 4095, 1669, 4095, + 4095, 1794, 4095, + 4095, 1920, 4095, + 4095, 2049, 4095, + 4095, 2177, 4095, + 4095, 2307, 4095, + 4095, 2437, 4095, + 4095, 2567, 4095, + 4095, 2699, 4095, + 4095, 2831, 4081, + 4095, 2961, 4063, + 4075, 3093, 4037, + 4031, 3225, 4001, + 3963, 3357, 3945, + 3855, 3489, 3859, + 3649, 3621, 3711, + 3001, 3753, 3385, + 0, 3885, 0, + 0, 4017, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1079, 4095, + 4095, 1889, 4095, + 4095, 2229, 4095, + 4095, 2471, 4095, + 4095, 2671, 4095, + 4095, 2849, 4095, + 4095, 3011, 4095, + 4095, 3165, 4095, + 4095, 3313, 4077, + 4073, 3457, 4015, + 3957, 3597, 3915, + 3735, 3735, 3735, + 2891, 3871, 3255, + 0, 4007, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1549, 4095, + 4095, 2299, 4095, + 4095, 2631, 4095, + 4095, 2871, 4095, + 4095, 3069, 4095, + 4095, 3247, 4095, + 4095, 3409, 4095, + 4095, 3563, 4095, + 4067, 3709, 3981, + 3829, 3853, 3765, + 2689, 3993, 2989, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1862, 4095, + 4095, 2573, 4095, + 4095, 2901, 4095, + 4095, 3139, 4095, + 4095, 3337, 4095, + 4095, 3511, 4095, + 4095, 3673, 4095, + 4095, 3827, 4057, + 3929, 3975, 3801, + 3355, 2905, 3767, + 3353, 2905, 3767, + 3353, 2905, 3767, + 3353, 2905, 3767, + 3353, 2905, 3767, + 3353, 2907, 3767, + 3351, 2907, 3767, + 3351, 2909, 3767, + 3349, 2911, 3767, + 3347, 2913, 3765, + 3345, 2915, 3765, + 3341, 2919, 3763, + 3335, 2925, 3763, + 3329, 2931, 3761, + 3319, 2939, 3757, + 3307, 2951, 3753, + 3291, 2967, 3749, + 3267, 2985, 3743, + 3233, 3011, 3733, + 3183, 3041, 3721, + 3105, 3079, 3703, + 2977, 3127, 3681, + 2715, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3393, + 0, 3499, 3135, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3353, 2905, 3767, + 3353, 2905, 3767, + 3353, 2905, 3767, + 3353, 2907, 3767, + 3351, 2907, 3767, + 3351, 2909, 3767, + 3349, 2911, 3767, + 3347, 2913, 3765, + 3345, 2915, 3765, + 3341, 2919, 3763, + 3335, 2925, 3763, + 3329, 2931, 3761, + 3321, 2939, 3757, + 3307, 2951, 3753, + 3291, 2967, 3749, + 3267, 2985, 3743, + 3233, 3011, 3733, + 3183, 3041, 3721, + 3105, 3079, 3703, + 2977, 3127, 3681, + 2717, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3393, + 0, 3499, 3135, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3353, 2905, 3767, + 3353, 2905, 3767, + 3353, 2907, 3767, + 3351, 2907, 3767, + 3351, 2909, 3767, + 3349, 2911, 3767, + 3347, 2913, 3765, + 3345, 2915, 3765, + 3341, 2919, 3763, + 3337, 2925, 3763, + 3329, 2931, 3761, + 3321, 2939, 3757, + 3309, 2951, 3753, + 3291, 2967, 3749, + 3267, 2985, 3743, + 3233, 3011, 3733, + 3183, 3041, 3721, + 3107, 3079, 3705, + 2979, 3127, 3681, + 2719, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3393, + 0, 3499, 3135, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3353, 2905, 3767, + 3353, 2907, 3767, + 3353, 2907, 3767, + 3351, 2909, 3767, + 3349, 2911, 3767, + 3347, 2913, 3765, + 3345, 2915, 3765, + 3341, 2919, 3763, + 3337, 2925, 3763, + 3329, 2931, 3761, + 3321, 2939, 3757, + 3309, 2951, 3753, + 3291, 2967, 3749, + 3267, 2985, 3743, + 3233, 3011, 3733, + 3183, 3041, 3721, + 3107, 3079, 3705, + 2979, 3127, 3681, + 2721, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3393, + 0, 3499, 3135, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3355, 2905, 3769, + 3355, 2905, 3769, + 3355, 2905, 3769, + 3355, 2905, 3767, + 3355, 2905, 3767, + 3353, 2907, 3767, + 3353, 2907, 3767, + 3351, 2909, 3767, + 3351, 2909, 3767, + 3349, 2913, 3765, + 3345, 2915, 3765, + 3343, 2919, 3763, + 3337, 2923, 3763, + 3331, 2931, 3761, + 3321, 2939, 3757, + 3309, 2951, 3755, + 3293, 2967, 3749, + 3269, 2985, 3743, + 3235, 3011, 3733, + 3185, 3041, 3721, + 3109, 3079, 3705, + 2981, 3127, 3681, + 2723, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3393, + 0, 3499, 3137, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3357, 2903, 3769, + 3357, 2905, 3769, + 3355, 2905, 3769, + 3355, 2905, 3769, + 3355, 2905, 3767, + 3355, 2907, 3767, + 3353, 2907, 3767, + 3353, 2909, 3767, + 3351, 2909, 3767, + 3349, 2913, 3767, + 3347, 2915, 3765, + 3343, 2919, 3765, + 3337, 2923, 3763, + 3331, 2931, 3761, + 3323, 2939, 3757, + 3311, 2951, 3755, + 3293, 2967, 3749, + 3269, 2985, 3743, + 3235, 3011, 3733, + 3185, 3041, 3721, + 3109, 3079, 3705, + 2983, 3127, 3681, + 2725, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3393, + 0, 3499, 3137, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3357, 2903, 3769, + 3357, 2905, 3769, + 3357, 2905, 3769, + 3357, 2905, 3769, + 3357, 2905, 3769, + 3355, 2905, 3769, + 3355, 2907, 3767, + 3353, 2909, 3767, + 3353, 2909, 3767, + 3351, 2911, 3767, + 3347, 2915, 3765, + 3343, 2919, 3765, + 3339, 2923, 3763, + 3333, 2931, 3761, + 3323, 2939, 3759, + 3311, 2951, 3755, + 3295, 2965, 3749, + 3271, 2985, 3743, + 3237, 3009, 3735, + 3187, 3041, 3721, + 3111, 3079, 3705, + 2985, 3127, 3681, + 2729, 3183, 3647, + 0, 3247, 3597, + 0, 3323, 3521, + 0, 3407, 3395, + 0, 3499, 3139, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3359, 2903, 3769, + 3359, 2903, 3769, + 3359, 2905, 3769, + 3359, 2905, 3769, + 3357, 2905, 3769, + 3357, 2905, 3769, + 3357, 2907, 3769, + 3355, 2907, 3767, + 3353, 2909, 3767, + 3351, 2911, 3767, + 3349, 2915, 3765, + 3345, 2919, 3765, + 3341, 2923, 3763, + 3333, 2931, 3761, + 3325, 2939, 3759, + 3313, 2951, 3755, + 3295, 2965, 3751, + 3273, 2985, 3743, + 3239, 3009, 3735, + 3189, 3041, 3723, + 3113, 3079, 3705, + 2987, 3127, 3681, + 2735, 3181, 3647, + 372, 3247, 3599, + 0, 3323, 3523, + 0, 3407, 3395, + 0, 3499, 3139, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3361, 2903, 3769, + 3361, 2903, 3769, + 3361, 2903, 3769, + 3359, 2905, 3769, + 3359, 2905, 3769, + 3359, 2905, 3769, + 3359, 2907, 3769, + 3357, 2907, 3769, + 3355, 2909, 3767, + 3353, 2911, 3767, + 3351, 2915, 3767, + 3347, 2919, 3765, + 3343, 2923, 3763, + 3335, 2931, 3761, + 3327, 2939, 3759, + 3315, 2951, 3755, + 3297, 2965, 3751, + 3275, 2985, 3745, + 3241, 3009, 3735, + 3193, 3041, 3723, + 3117, 3079, 3705, + 2993, 3125, 3683, + 2743, 3181, 3649, + 994, 3247, 3599, + 0, 3323, 3523, + 0, 3407, 3397, + 0, 3499, 3141, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3363, 2903, 3771, + 3363, 2903, 3771, + 3363, 2903, 3771, + 3363, 2903, 3769, + 3361, 2905, 3769, + 3361, 2905, 3769, + 3361, 2907, 3769, + 3359, 2907, 3769, + 3357, 2909, 3769, + 3357, 2911, 3767, + 3353, 2915, 3767, + 3349, 2917, 3767, + 3345, 2923, 3765, + 3339, 2929, 3763, + 3329, 2939, 3759, + 3317, 2951, 3757, + 3301, 2965, 3751, + 3277, 2985, 3745, + 3245, 3009, 3735, + 3195, 3041, 3723, + 3121, 3079, 3707, + 2997, 3125, 3683, + 2753, 3181, 3649, + 1308, 3247, 3599, + 0, 3323, 3525, + 0, 3407, 3399, + 0, 3499, 3145, + 0, 3599, 0, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3367, 2903, 3771, + 3367, 2903, 3771, + 3367, 2903, 3771, + 3365, 2903, 3771, + 3365, 2903, 3771, + 3365, 2905, 3771, + 3363, 2905, 3771, + 3363, 2907, 3769, + 3361, 2909, 3769, + 3359, 2911, 3769, + 3357, 2913, 3769, + 3353, 2917, 3767, + 3349, 2923, 3765, + 3341, 2929, 3763, + 3333, 2939, 3761, + 3321, 2949, 3757, + 3305, 2965, 3753, + 3281, 2985, 3745, + 3249, 3009, 3737, + 3201, 3041, 3725, + 3127, 3079, 3707, + 3005, 3125, 3685, + 2765, 3181, 3651, + 1540, 3247, 3601, + 0, 3321, 3525, + 0, 3407, 3401, + 0, 3499, 3147, + 0, 3599, 963, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3371, 2901, 3773, + 3371, 2903, 3773, + 3371, 2903, 3773, + 3371, 2903, 3773, + 3369, 2903, 3771, + 3369, 2905, 3771, + 3369, 2905, 3771, + 3367, 2907, 3771, + 3365, 2907, 3771, + 3363, 2911, 3771, + 3361, 2913, 3769, + 3357, 2917, 3769, + 3353, 2921, 3767, + 3347, 2929, 3765, + 3337, 2937, 3763, + 3325, 2949, 3759, + 3309, 2965, 3753, + 3287, 2983, 3747, + 3255, 3009, 3739, + 3207, 3039, 3725, + 3135, 3079, 3709, + 3015, 3125, 3685, + 2781, 3181, 3653, + 1735, 3247, 3603, + 0, 3321, 3527, + 0, 3405, 3403, + 0, 3499, 3153, + 0, 3599, 1337, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3377, 2901, 3773, + 3377, 2901, 3773, + 3377, 2901, 3773, + 3375, 2903, 3773, + 3375, 2903, 3773, + 3375, 2903, 3773, + 3375, 2905, 3773, + 3373, 2905, 3773, + 3371, 2907, 3773, + 3369, 2909, 3771, + 3367, 2913, 3771, + 3363, 2917, 3769, + 3359, 2921, 3769, + 3353, 2927, 3767, + 3345, 2937, 3763, + 3333, 2949, 3761, + 3317, 2963, 3755, + 3293, 2983, 3749, + 3261, 3007, 3739, + 3215, 3039, 3727, + 3143, 3077, 3711, + 3027, 3125, 3687, + 2801, 3181, 3655, + 1909, 3247, 3605, + 0, 3321, 3531, + 0, 3405, 3407, + 0, 3499, 3159, + 0, 3599, 1591, + 0, 3705, 0, + 0, 3817, 0, + 0, 3935, 0, + 0, 4055, 0, + 3385, 2901, 3777, + 3385, 2901, 3775, + 3383, 2901, 3775, + 3383, 2901, 3775, + 3383, 2901, 3775, + 3383, 2903, 3775, + 3381, 2903, 3775, + 3381, 2905, 3775, + 3379, 2905, 3775, + 3377, 2909, 3773, + 3375, 2911, 3773, + 3371, 2915, 3771, + 3367, 2921, 3771, + 3361, 2927, 3769, + 3353, 2935, 3765, + 3341, 2947, 3763, + 3325, 2963, 3757, + 3303, 2983, 3751, + 3271, 3007, 3743, + 3225, 3039, 3731, + 3157, 3077, 3713, + 3043, 3123, 3691, + 2827, 3181, 3657, + 2071, 3245, 3609, + 0, 3321, 3535, + 0, 3405, 3411, + 0, 3499, 3167, + 0, 3599, 1797, + 0, 3705, 0, + 0, 3817, 0, + 0, 3933, 0, + 0, 4055, 0, + 3395, 2899, 3779, + 3393, 2899, 3779, + 3393, 2899, 3779, + 3393, 2899, 3779, + 3393, 2901, 3779, + 3393, 2901, 3779, + 3391, 2901, 3779, + 3391, 2903, 3777, + 3389, 2905, 3777, + 3387, 2907, 3777, + 3385, 2909, 3775, + 3381, 2913, 3775, + 3377, 2919, 3773, + 3371, 2925, 3771, + 3363, 2935, 3769, + 3351, 2947, 3765, + 3337, 2961, 3761, + 3315, 2981, 3755, + 3285, 3005, 3745, + 3239, 3037, 3733, + 3173, 3075, 3717, + 3065, 3123, 3693, + 2861, 3179, 3661, + 2223, 3245, 3613, + 0, 3321, 3539, + 0, 3405, 3417, + 0, 3497, 3177, + 0, 3599, 1978, + 0, 3705, 0, + 0, 3817, 0, + 0, 3933, 0, + 0, 4055, 0, + 3407, 2897, 3783, + 3407, 2897, 3783, + 3407, 2897, 3783, + 3407, 2897, 3783, + 3407, 2899, 3783, + 3405, 2899, 3783, + 3405, 2899, 3781, + 3403, 2901, 3781, + 3403, 2903, 3781, + 3401, 2905, 3781, + 3399, 2907, 3779, + 3395, 2911, 3779, + 3391, 2917, 3777, + 3385, 2923, 3775, + 3377, 2933, 3773, + 3365, 2945, 3769, + 3351, 2959, 3765, + 3331, 2979, 3757, + 3301, 3005, 3749, + 3257, 3035, 3737, + 3193, 3075, 3721, + 3091, 3121, 3699, + 2901, 3179, 3665, + 2369, 3245, 3617, + 0, 3319, 3545, + 0, 3405, 3425, + 0, 3497, 3191, + 0, 3597, 2143, + 0, 3705, 0, + 0, 3817, 0, + 0, 3933, 0, + 0, 4053, 0, + 3423, 2893, 3787, + 3423, 2895, 3787, + 3423, 2895, 3787, + 3423, 2895, 3787, + 3423, 2895, 3787, + 3423, 2897, 3787, + 3421, 2897, 3787, + 3421, 2899, 3787, + 3419, 2899, 3787, + 3417, 2903, 3785, + 3415, 2905, 3785, + 3413, 2909, 3783, + 3409, 2915, 3783, + 3403, 2921, 3781, + 3395, 2931, 3777, + 3385, 2943, 3775, + 3369, 2957, 3769, + 3349, 2977, 3763, + 3321, 3003, 3755, + 3281, 3033, 3743, + 3221, 3073, 3727, + 3123, 3121, 3705, + 2951, 3177, 3671, + 2513, 3243, 3625, + 0, 3319, 3553, + 0, 3403, 3437, + 0, 3497, 3209, + 0, 3597, 2299, + 0, 3705, 0, + 0, 3817, 0, + 0, 3933, 0, + 0, 4053, 0, + 3445, 2891, 3795, + 3445, 2891, 3795, + 3445, 2891, 3795, + 3445, 2891, 3795, + 3445, 2891, 3793, + 3443, 2893, 3793, + 3443, 2893, 3793, + 3443, 2895, 3793, + 3441, 2897, 3793, + 3439, 2899, 3793, + 3437, 2901, 3791, + 3435, 2905, 3791, + 3431, 2911, 3789, + 3425, 2917, 3787, + 3417, 2927, 3785, + 3407, 2939, 3781, + 3395, 2955, 3777, + 3375, 2975, 3771, + 3349, 2999, 3761, + 3311, 3031, 3751, + 3253, 3071, 3735, + 3165, 3119, 3713, + 3009, 3175, 3681, + 2653, 3241, 3635, + 0, 3317, 3565, + 0, 3403, 3451, + 0, 3495, 3233, + 0, 3597, 2447, + 0, 3703, 0, + 0, 3817, 0, + 0, 3933, 0, + 0, 4053, 0, + 3473, 2885, 3803, + 3473, 2885, 3803, + 3473, 2887, 3803, + 3473, 2887, 3803, + 3471, 2887, 3803, + 3471, 2887, 3803, + 3471, 2889, 3803, + 3469, 2889, 3801, + 3469, 2891, 3801, + 3467, 2893, 3801, + 3465, 2897, 3801, + 3463, 2901, 3799, + 3459, 2907, 3797, + 3453, 2913, 3795, + 3447, 2923, 3793, + 3437, 2935, 3789, + 3425, 2951, 3785, + 3407, 2971, 3779, + 3383, 2995, 3771, + 3347, 3027, 3759, + 3295, 3067, 3745, + 3213, 3115, 3723, + 3077, 3173, 3691, + 2791, 3239, 3647, + 0, 3315, 3579, + 0, 3401, 3469, + 0, 3495, 3263, + 0, 3595, 2591, + 0, 3703, 0, + 0, 3815, 0, + 0, 3933, 0, + 0, 4053, 0, + 3507, 2879, 3815, + 3507, 2879, 3815, + 3507, 2879, 3815, + 3507, 2879, 3815, + 3507, 2881, 3813, + 3505, 2881, 3813, + 3505, 2883, 3813, + 3505, 2883, 3813, + 3503, 2885, 3813, + 3501, 2887, 3813, + 3499, 2891, 3811, + 3497, 2895, 3811, + 3493, 2901, 3809, + 3489, 2907, 3807, + 3483, 2917, 3805, + 3475, 2929, 3801, + 3463, 2945, 3797, + 3447, 2965, 3791, + 3423, 2991, 3783, + 3391, 3023, 3773, + 3345, 3063, 3757, + 3273, 3111, 3735, + 3155, 3169, 3707, + 2927, 3235, 3663, + 1989, 3313, 3597, + 0, 3399, 3493, + 0, 3493, 3299, + 0, 3593, 2733, + 0, 3701, 0, + 0, 3815, 0, + 0, 3931, 0, + 0, 4053, 0, + 3549, 2871, 3829, + 3549, 2871, 3829, + 3549, 2871, 3829, + 3549, 2871, 3829, + 3549, 2871, 3829, + 3547, 2873, 3829, + 3547, 2873, 3829, + 3547, 2875, 3827, + 3545, 2877, 3827, + 3545, 2879, 3827, + 3543, 2881, 3827, + 3541, 2887, 3825, + 3537, 2891, 3825, + 3533, 2899, 3823, + 3527, 2909, 3819, + 3519, 2921, 3817, + 3509, 2937, 3813, + 3493, 2957, 3807, + 3473, 2983, 3799, + 3445, 3017, 3789, + 3403, 3057, 3773, + 3341, 3105, 3753, + 3241, 3165, 3725, + 3061, 3231, 3683, + 2587, 3309, 3621, + 0, 3395, 3521, + 0, 3491, 3343, + 0, 3593, 2871, + 0, 3701, 0, + 0, 3813, 0, + 0, 3931, 0, + 0, 4051, 0, + 3599, 2857, 3849, + 3599, 2859, 3847, + 3599, 2859, 3847, + 3599, 2859, 3847, + 3599, 2859, 3847, + 3599, 2861, 3847, + 3599, 2861, 3847, + 3597, 2863, 3847, + 3597, 2865, 3847, + 3595, 2867, 3847, + 3593, 2871, 3845, + 3591, 2875, 3845, + 3589, 2879, 3843, + 3585, 2887, 3841, + 3579, 2897, 3839, + 3573, 2909, 3837, + 3563, 2927, 3833, + 3551, 2947, 3827, + 3533, 2975, 3819, + 3507, 3007, 3809, + 3471, 3049, 3795, + 3419, 3099, 3775, + 3337, 3157, 3749, + 3197, 3227, 3709, + 2897, 3305, 3651, + 0, 3391, 3559, + 0, 3487, 3397, + 0, 3589, 3007, + 0, 3699, 0, + 0, 3811, 0, + 0, 3929, 0, + 0, 4051, 0, + 3659, 2841, 3873, + 3659, 2841, 3873, + 3659, 2841, 3873, + 3659, 2843, 3873, + 3659, 2843, 3871, + 3659, 2843, 3871, + 3659, 2845, 3871, + 3657, 2847, 3871, + 3657, 2847, 3871, + 3655, 2851, 3871, + 3655, 2853, 3869, + 3653, 2859, 3869, + 3651, 2865, 3867, + 3647, 2871, 3867, + 3643, 2881, 3865, + 3637, 2895, 3861, + 3629, 2911, 3857, + 3617, 2933, 3853, + 3601, 2961, 3845, + 3579, 2995, 3835, + 3549, 3037, 3823, + 3505, 3089, 3805, + 3439, 3149, 3779, + 3331, 3219, 3741, + 3129, 3299, 3687, + 2499, 3387, 3603, + 0, 3483, 3459, + 0, 3587, 3143, + 0, 3695, 0, + 0, 3809, 0, + 0, 3929, 0, + 0, 4049, 0, + 3729, 2817, 3903, + 3729, 2819, 3903, + 3729, 2819, 3903, + 3729, 2819, 3903, + 3729, 2819, 3903, + 3729, 2821, 3903, + 3727, 2821, 3903, + 3727, 2823, 3901, + 3727, 2825, 3901, + 3725, 2827, 3901, + 3725, 2831, 3901, + 3723, 2835, 3899, + 3721, 2841, 3899, + 3719, 2849, 3897, + 3715, 2861, 3895, + 3709, 2875, 3893, + 3703, 2891, 3889, + 3693, 2915, 3883, + 3679, 2943, 3877, + 3661, 2979, 3869, + 3637, 3023, 3857, + 3601, 3075, 3839, + 3547, 3137, 3815, + 3463, 3209, 3781, + 3323, 3291, 3733, + 3017, 3379, 3657, + 0, 3477, 3531, + 0, 3581, 3279, + 0, 3693, 744, + 0, 3807, 0, + 0, 3927, 0, + 0, 4049, 0, + 3809, 2785, 3941, + 3809, 2785, 3941, + 3807, 2785, 3941, + 3807, 2785, 3941, + 3807, 2787, 3941, + 3807, 2787, 3941, + 3807, 2789, 3941, + 3807, 2789, 3939, + 3807, 2791, 3939, + 3805, 2795, 3939, + 3805, 2799, 3939, + 3803, 2803, 3937, + 3801, 2811, 3937, + 3799, 2819, 3935, + 3795, 2831, 3933, + 3791, 2845, 3931, + 3785, 2863, 3927, + 3777, 2887, 3923, + 3767, 2919, 3917, + 3753, 2955, 3909, + 3731, 3001, 3897, + 3703, 3057, 3883, + 3661, 3121, 3861, + 3597, 3195, 3831, + 3495, 3279, 3787, + 3311, 3371, 3721, + 2807, 3469, 3613, + 0, 3575, 3413, + 0, 3687, 2797, + 0, 3803, 0, + 0, 3923, 0, + 0, 4047, 0, + 3897, 2735, 3987, + 3895, 2735, 3987, + 3895, 2737, 3987, + 3895, 2737, 3987, + 3895, 2737, 3987, + 3895, 2739, 3987, + 3895, 2739, 3987, + 3895, 2741, 3987, + 3895, 2743, 3985, + 3893, 2747, 3985, + 3893, 2751, 3985, + 3891, 2757, 3985, + 3891, 2765, 3983, + 3889, 2773, 3983, + 3885, 2787, 3981, + 3883, 2803, 3979, + 3877, 2823, 3975, + 3871, 2849, 3971, + 3863, 2883, 3965, + 3851, 2923, 3959, + 3833, 2973, 3949, + 3811, 3031, 3935, + 3777, 3099, 3915, + 3729, 3177, 3889, + 3657, 3263, 3851, + 3535, 3357, 3793, + 3295, 3459, 3703, + 2103, 3567, 3545, + 0, 3681, 3179, + 0, 3799, 0, + 0, 3919, 0, + 0, 4043, 0, + 3993, 2661, 4041, + 3991, 2661, 4041, + 3991, 2661, 4041, + 3991, 2663, 4041, + 3991, 2663, 4041, + 3991, 2665, 4041, + 3991, 2665, 4041, + 3991, 2667, 4041, + 3991, 2671, 4041, + 3991, 2675, 4041, + 3989, 2679, 4041, + 3989, 2685, 4039, + 3987, 2695, 4039, + 3985, 2705, 4037, + 3983, 2719, 4037, + 3981, 2739, 4035, + 3977, 2763, 4031, + 3971, 2793, 4029, + 3965, 2829, 4023, + 3955, 2875, 4017, + 3943, 2929, 4009, + 3925, 2993, 3997, + 3899, 3067, 3979, + 3863, 3149, 3957, + 3809, 3241, 3923, + 3725, 3339, 3875, + 3583, 3445, 3801, + 3273, 3557, 3679, + 0, 3673, 3437, + 0, 3791, 2169, + 0, 3915, 0, + 0, 4039, 0, + 4095, 2537, 4095, + 4095, 2537, 4095, + 4095, 2537, 4095, + 4095, 2539, 4095, + 4095, 2539, 4095, + 4095, 2541, 4095, + 4095, 2543, 4095, + 4095, 2545, 4095, + 4095, 2549, 4095, + 4093, 2555, 4095, + 4093, 2561, 4095, + 4093, 2569, 4095, + 4091, 2579, 4095, + 4091, 2595, 4095, + 4089, 2613, 4095, + 4087, 2635, 4095, + 4083, 2665, 4095, + 4079, 2703, 4095, + 4073, 2747, 4091, + 4067, 2801, 4085, + 4055, 2865, 4077, + 4041, 2937, 4067, + 4023, 3019, 4053, + 3995, 3111, 4033, + 3955, 3209, 4005, + 3897, 3315, 3965, + 3803, 3425, 3907, + 3639, 3541, 3811, + 3243, 3661, 3645, + 0, 3783, 3235, + 0, 3907, 0, + 0, 4033, 0, + 4095, 2287, 4095, + 4095, 2289, 4095, + 4095, 2289, 4095, + 4095, 2291, 4095, + 4095, 2293, 4095, + 4095, 2295, 4095, + 4095, 2299, 4095, + 4095, 2305, 4095, + 4095, 2311, 4095, + 4095, 2319, 4095, + 4095, 2329, 4095, + 4095, 2343, 4095, + 4095, 2361, 4095, + 4095, 2383, 4095, + 4095, 2413, 4095, + 4095, 2449, 4095, + 4095, 2493, 4095, + 4095, 2545, 4095, + 4095, 2607, 4095, + 4095, 2679, 4095, + 4095, 2761, 4095, + 4095, 2851, 4095, + 4095, 2949, 4095, + 4095, 3053, 4095, + 4095, 3163, 4095, + 4057, 3279, 4065, + 3993, 3397, 4017, + 3891, 3519, 3945, + 3707, 3643, 3825, + 3199, 3771, 3595, + 0, 3899, 2597, + 0, 4027, 0, + 4095, 662, 4095, + 4095, 691, 4095, + 4095, 728, 4095, + 4095, 772, 4095, + 4095, 825, 4095, + 4095, 888, 4095, + 4095, 960, 4095, + 4095, 1041, 4095, + 4095, 1131, 4095, + 4095, 1229, 4095, + 4095, 1334, 4095, + 4095, 1445, 4095, + 4095, 1560, 4095, + 4095, 1679, 4095, + 4095, 1802, 4095, + 4095, 1926, 4095, + 4095, 2053, 4095, + 4095, 2181, 4095, + 4095, 2309, 4095, + 4095, 2439, 4095, + 4095, 2569, 4095, + 4095, 2699, 4095, + 4095, 2831, 4095, + 4095, 2963, 4095, + 4095, 3093, 4095, + 4095, 3225, 4095, + 4095, 3357, 4095, + 4095, 3489, 4077, + 3987, 3621, 3991, + 3783, 3753, 3843, + 3133, 3885, 3517, + 0, 4017, 0, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1211, 4095, + 4095, 2021, 4095, + 4095, 2361, 4095, + 4095, 2603, 4095, + 4095, 2803, 4095, + 4095, 2981, 4095, + 4095, 3143, 4095, + 4095, 3297, 4095, + 4095, 3445, 4095, + 4095, 3589, 4095, + 4089, 3729, 4047, + 3867, 3867, 3867, + 3023, 4003, 3387, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1681, 4095, + 4095, 2431, 4095, + 4095, 2763, 4095, + 4095, 3003, 4095, + 4095, 3203, 4095, + 4095, 3379, 4095, + 4095, 3541, 4095, + 4095, 3695, 4095, + 4095, 3841, 4095, + 3961, 3985, 3897, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3039, 3899, + 3483, 3039, 3899, + 3483, 3041, 3899, + 3481, 3043, 3899, + 3479, 3045, 3897, + 3475, 3047, 3897, + 3473, 3051, 3895, + 3467, 3057, 3895, + 3461, 3063, 3893, + 3451, 3071, 3889, + 3439, 3083, 3885, + 3423, 3099, 3881, + 3399, 3117, 3875, + 3365, 3143, 3865, + 3315, 3173, 3853, + 3237, 3211, 3835, + 3109, 3259, 3813, + 2847, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3525, + 0, 3631, 3267, + 0, 3731, 0, + 0, 3837, 0, + 0, 3951, 0, + 0, 4067, 0, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3039, 3899, + 3483, 3039, 3899, + 3483, 3041, 3899, + 3481, 3043, 3899, + 3479, 3045, 3897, + 3477, 3047, 3897, + 3473, 3051, 3895, + 3467, 3057, 3895, + 3461, 3063, 3893, + 3451, 3071, 3889, + 3439, 3083, 3885, + 3423, 3099, 3881, + 3399, 3117, 3875, + 3365, 3143, 3865, + 3315, 3173, 3853, + 3237, 3211, 3835, + 3109, 3259, 3813, + 2849, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3525, + 0, 3631, 3267, + 0, 3731, 0, + 0, 3837, 0, + 0, 3951, 0, + 0, 4067, 0, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3039, 3899, + 3483, 3039, 3899, + 3483, 3041, 3899, + 3481, 3043, 3899, + 3479, 3045, 3897, + 3477, 3047, 3897, + 3473, 3051, 3895, + 3467, 3057, 3895, + 3461, 3063, 3893, + 3453, 3071, 3889, + 3439, 3083, 3885, + 3423, 3099, 3881, + 3399, 3117, 3875, + 3365, 3143, 3865, + 3315, 3173, 3853, + 3239, 3211, 3837, + 3109, 3259, 3813, + 2849, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3525, + 0, 3631, 3267, + 0, 3731, 0, + 0, 3837, 0, + 0, 3951, 0, + 0, 4067, 0, + 3487, 3037, 3901, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3485, 3037, 3899, + 3485, 3037, 3899, + 3485, 3039, 3899, + 3485, 3039, 3899, + 3483, 3041, 3899, + 3481, 3043, 3899, + 3479, 3045, 3897, + 3477, 3047, 3897, + 3473, 3051, 3895, + 3469, 3057, 3895, + 3461, 3063, 3893, + 3453, 3071, 3889, + 3441, 3083, 3885, + 3423, 3099, 3881, + 3399, 3117, 3875, + 3365, 3143, 3865, + 3315, 3173, 3853, + 3239, 3211, 3837, + 3111, 3259, 3813, + 2851, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3525, + 0, 3631, 3267, + 0, 3731, 0, + 0, 3837, 0, + 0, 3951, 0, + 0, 4067, 0, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3899, + 3487, 3037, 3899, + 3485, 3037, 3899, + 3485, 3039, 3899, + 3485, 3039, 3899, + 3483, 3041, 3899, + 3481, 3043, 3899, + 3479, 3045, 3897, + 3477, 3047, 3897, + 3473, 3051, 3895, + 3469, 3057, 3895, + 3463, 3063, 3893, + 3453, 3071, 3889, + 3441, 3083, 3887, + 3423, 3099, 3881, + 3399, 3117, 3875, + 3365, 3143, 3865, + 3315, 3173, 3853, + 3239, 3211, 3837, + 3111, 3259, 3813, + 2853, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3525, + 0, 3631, 3267, + 0, 3731, 0, + 0, 3837, 0, + 0, 3951, 0, + 0, 4067, 0, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3899, + 3485, 3039, 3899, + 3485, 3039, 3899, + 3483, 3041, 3899, + 3483, 3043, 3899, + 3481, 3045, 3899, + 3477, 3047, 3897, + 3475, 3051, 3897, + 3469, 3057, 3895, + 3463, 3063, 3893, + 3453, 3071, 3889, + 3441, 3083, 3887, + 3425, 3099, 3881, + 3401, 3117, 3875, + 3367, 3143, 3865, + 3317, 3173, 3853, + 3241, 3211, 3837, + 3113, 3259, 3813, + 2855, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3525, + 0, 3631, 3269, + 0, 3731, 0, + 0, 3837, 0, + 0, 3951, 0, + 0, 4067, 0, + 3489, 3035, 3901, + 3489, 3037, 3901, + 3489, 3037, 3901, + 3489, 3037, 3901, + 3487, 3037, 3901, + 3487, 3037, 3901, + 3487, 3039, 3899, + 3485, 3039, 3899, + 3485, 3041, 3899, + 3483, 3041, 3899, + 3481, 3045, 3899, + 3479, 3047, 3897, + 3475, 3051, 3897, + 3471, 3057, 3895, + 3463, 3063, 3893, + 3455, 3071, 3891, + 3443, 3083, 3887, + 3425, 3099, 3881, + 3401, 3117, 3875, + 3367, 3143, 3867, + 3317, 3173, 3853, + 3241, 3211, 3837, + 3115, 3259, 3813, + 2857, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3527, + 0, 3631, 3269, + 0, 3731, 0, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3489, 3035, 3901, + 3489, 3035, 3901, + 3489, 3037, 3901, + 3489, 3037, 3901, + 3489, 3037, 3901, + 3489, 3037, 3901, + 3487, 3039, 3901, + 3487, 3039, 3899, + 3485, 3041, 3899, + 3485, 3041, 3899, + 3483, 3045, 3899, + 3479, 3047, 3897, + 3477, 3051, 3897, + 3471, 3055, 3895, + 3465, 3063, 3893, + 3455, 3071, 3891, + 3443, 3083, 3887, + 3427, 3099, 3881, + 3403, 3117, 3875, + 3369, 3143, 3867, + 3319, 3173, 3855, + 3243, 3211, 3837, + 3117, 3259, 3813, + 2861, 3315, 3779, + 0, 3379, 3729, + 0, 3455, 3653, + 0, 3539, 3527, + 0, 3631, 3271, + 0, 3731, 0, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3491, 3035, 3901, + 3491, 3035, 3901, + 3491, 3035, 3901, + 3491, 3037, 3901, + 3491, 3037, 3901, + 3489, 3037, 3901, + 3489, 3037, 3901, + 3489, 3039, 3901, + 3487, 3041, 3899, + 3485, 3041, 3899, + 3483, 3043, 3899, + 3481, 3047, 3899, + 3477, 3051, 3897, + 3473, 3055, 3895, + 3467, 3063, 3893, + 3457, 3071, 3891, + 3445, 3083, 3887, + 3427, 3097, 3883, + 3405, 3117, 3875, + 3371, 3141, 3867, + 3321, 3173, 3855, + 3245, 3211, 3837, + 3121, 3259, 3813, + 2867, 3315, 3779, + 504, 3379, 3731, + 0, 3455, 3655, + 0, 3539, 3527, + 0, 3631, 3271, + 0, 3731, 0, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3493, 3035, 3901, + 3493, 3035, 3901, + 3493, 3035, 3901, + 3493, 3037, 3901, + 3493, 3037, 3901, + 3491, 3037, 3901, + 3491, 3037, 3901, + 3491, 3039, 3901, + 3489, 3039, 3901, + 3487, 3041, 3901, + 3485, 3043, 3899, + 3483, 3047, 3899, + 3479, 3051, 3897, + 3475, 3055, 3895, + 3469, 3063, 3893, + 3459, 3071, 3891, + 3447, 3083, 3887, + 3431, 3097, 3883, + 3407, 3117, 3877, + 3373, 3141, 3867, + 3325, 3173, 3855, + 3249, 3211, 3839, + 3125, 3259, 3815, + 2875, 3313, 3781, + 1125, 3379, 3731, + 0, 3455, 3655, + 0, 3539, 3529, + 0, 3631, 3273, + 0, 3731, 0, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3495, 3035, 3903, + 3495, 3035, 3903, + 3495, 3035, 3903, + 3495, 3035, 3903, + 3495, 3037, 3903, + 3495, 3037, 3901, + 3493, 3037, 3901, + 3493, 3039, 3901, + 3491, 3039, 3901, + 3491, 3041, 3901, + 3489, 3043, 3901, + 3485, 3047, 3899, + 3481, 3051, 3899, + 3477, 3055, 3897, + 3471, 3061, 3895, + 3461, 3071, 3893, + 3449, 3083, 3889, + 3433, 3097, 3883, + 3409, 3117, 3877, + 3377, 3141, 3869, + 3327, 3173, 3855, + 3253, 3211, 3839, + 3129, 3257, 3815, + 2885, 3313, 3781, + 1440, 3379, 3733, + 0, 3455, 3657, + 0, 3539, 3531, + 0, 3631, 3277, + 0, 3731, 0, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3499, 3035, 3903, + 3499, 3035, 3903, + 3499, 3035, 3903, + 3499, 3035, 3903, + 3497, 3035, 3903, + 3497, 3037, 3903, + 3497, 3037, 3903, + 3495, 3037, 3903, + 3495, 3039, 3903, + 3493, 3041, 3901, + 3491, 3043, 3901, + 3489, 3045, 3901, + 3485, 3049, 3899, + 3481, 3055, 3897, + 3475, 3061, 3895, + 3465, 3071, 3893, + 3453, 3081, 3889, + 3437, 3097, 3885, + 3413, 3117, 3877, + 3381, 3141, 3869, + 3333, 3173, 3857, + 3259, 3211, 3839, + 3137, 3257, 3817, + 2897, 3313, 3783, + 1672, 3379, 3733, + 0, 3455, 3657, + 0, 3539, 3533, + 0, 3631, 3281, + 0, 3731, 1095, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3503, 3033, 3905, + 3503, 3035, 3905, + 3503, 3035, 3905, + 3503, 3035, 3905, + 3503, 3035, 3905, + 3501, 3035, 3905, + 3501, 3037, 3903, + 3501, 3037, 3903, + 3499, 3039, 3903, + 3497, 3041, 3903, + 3495, 3043, 3903, + 3493, 3045, 3901, + 3489, 3049, 3901, + 3485, 3055, 3899, + 3479, 3061, 3897, + 3471, 3069, 3895, + 3459, 3081, 3891, + 3441, 3097, 3885, + 3419, 3115, 3879, + 3387, 3141, 3871, + 3339, 3171, 3859, + 3267, 3211, 3841, + 3147, 3257, 3817, + 2913, 3313, 3785, + 1867, 3379, 3735, + 0, 3453, 3661, + 0, 3537, 3535, + 0, 3631, 3285, + 0, 3731, 1469, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3509, 3033, 3907, + 3509, 3033, 3907, + 3509, 3033, 3905, + 3509, 3033, 3905, + 3507, 3035, 3905, + 3507, 3035, 3905, + 3507, 3035, 3905, + 3507, 3037, 3905, + 3505, 3037, 3905, + 3503, 3039, 3905, + 3501, 3041, 3903, + 3499, 3045, 3903, + 3495, 3049, 3901, + 3491, 3053, 3901, + 3485, 3061, 3899, + 3477, 3069, 3895, + 3465, 3081, 3893, + 3449, 3095, 3887, + 3425, 3115, 3881, + 3393, 3139, 3873, + 3347, 3171, 3859, + 3275, 3209, 3843, + 3159, 3257, 3819, + 2933, 3313, 3787, + 2041, 3379, 3737, + 0, 3453, 3663, + 0, 3537, 3539, + 0, 3631, 3291, + 0, 3731, 1724, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3517, 3033, 3909, + 3517, 3033, 3909, + 3517, 3033, 3909, + 3515, 3033, 3909, + 3515, 3033, 3907, + 3515, 3033, 3907, + 3515, 3035, 3907, + 3513, 3035, 3907, + 3513, 3037, 3907, + 3511, 3039, 3907, + 3509, 3041, 3905, + 3507, 3043, 3905, + 3503, 3047, 3905, + 3499, 3053, 3903, + 3493, 3059, 3901, + 3485, 3067, 3897, + 3473, 3079, 3895, + 3457, 3095, 3889, + 3435, 3115, 3883, + 3403, 3139, 3875, + 3357, 3171, 3863, + 3289, 3209, 3845, + 3175, 3257, 3823, + 2959, 3313, 3789, + 2203, 3377, 3741, + 0, 3453, 3667, + 0, 3537, 3543, + 0, 3631, 3299, + 0, 3731, 1929, + 0, 3837, 0, + 0, 3949, 0, + 0, 4067, 0, + 3527, 3031, 3911, + 3527, 3031, 3911, + 3527, 3031, 3911, + 3525, 3031, 3911, + 3525, 3031, 3911, + 3525, 3033, 3911, + 3525, 3033, 3911, + 3523, 3033, 3911, + 3523, 3035, 3909, + 3521, 3037, 3909, + 3519, 3039, 3909, + 3517, 3041, 3907, + 3513, 3045, 3907, + 3509, 3051, 3905, + 3503, 3057, 3903, + 3495, 3067, 3901, + 3483, 3079, 3897, + 3469, 3093, 3893, + 3447, 3113, 3887, + 3417, 3137, 3877, + 3371, 3169, 3865, + 3305, 3207, 3849, + 3197, 3255, 3825, + 2993, 3311, 3793, + 2355, 3377, 3745, + 0, 3453, 3671, + 0, 3537, 3549, + 0, 3629, 3311, + 0, 3731, 2109, + 0, 3837, 0, + 0, 3949, 0, + 0, 4065, 0, + 3539, 3029, 3915, + 3539, 3029, 3915, + 3539, 3029, 3915, + 3539, 3029, 3915, + 3539, 3029, 3915, + 3539, 3031, 3915, + 3537, 3031, 3915, + 3537, 3031, 3913, + 3535, 3033, 3913, + 3535, 3035, 3913, + 3533, 3037, 3913, + 3531, 3039, 3911, + 3527, 3043, 3911, + 3523, 3049, 3909, + 3517, 3055, 3907, + 3509, 3065, 3905, + 3499, 3077, 3901, + 3483, 3091, 3897, + 3463, 3111, 3891, + 3433, 3137, 3881, + 3389, 3167, 3869, + 3325, 3207, 3853, + 3223, 3253, 3831, + 3033, 3311, 3797, + 2501, 3377, 3751, + 0, 3451, 3677, + 0, 3537, 3559, + 0, 3629, 3325, + 0, 3729, 2275, + 0, 3837, 0, + 0, 3949, 0, + 0, 4065, 0, + 3557, 3025, 3919, + 3557, 3027, 3919, + 3555, 3027, 3919, + 3555, 3027, 3919, + 3555, 3027, 3919, + 3555, 3027, 3919, + 3555, 3029, 3919, + 3553, 3029, 3919, + 3553, 3031, 3919, + 3551, 3033, 3919, + 3549, 3035, 3917, + 3547, 3037, 3917, + 3545, 3041, 3915, + 3541, 3047, 3915, + 3535, 3053, 3913, + 3527, 3063, 3909, + 3517, 3075, 3907, + 3501, 3089, 3901, + 3483, 3109, 3895, + 3453, 3135, 3887, + 3413, 3165, 3875, + 3353, 3205, 3859, + 3255, 3253, 3837, + 3083, 3309, 3805, + 2645, 3375, 3757, + 0, 3451, 3685, + 0, 3535, 3569, + 0, 3629, 3343, + 0, 3729, 2431, + 0, 3837, 0, + 0, 3949, 0, + 0, 4065, 0, + 3577, 3023, 3927, + 3577, 3023, 3927, + 3577, 3023, 3927, + 3577, 3023, 3927, + 3577, 3023, 3927, + 3577, 3023, 3927, + 3577, 3025, 3925, + 3575, 3025, 3925, + 3575, 3027, 3925, + 3573, 3029, 3925, + 3571, 3031, 3925, + 3569, 3033, 3923, + 3567, 3037, 3923, + 3563, 3043, 3921, + 3557, 3049, 3919, + 3549, 3059, 3917, + 3539, 3071, 3913, + 3527, 3087, 3909, + 3507, 3107, 3903, + 3481, 3131, 3893, + 3443, 3163, 3883, + 3385, 3203, 3867, + 3297, 3251, 3845, + 3141, 3307, 3813, + 2785, 3373, 3767, + 0, 3449, 3697, + 0, 3535, 3583, + 0, 3627, 3365, + 0, 3729, 2579, + 0, 3835, 0, + 0, 3949, 0, + 0, 4065, 0, + 3605, 3017, 3935, + 3605, 3017, 3935, + 3605, 3017, 3935, + 3605, 3019, 3935, + 3605, 3019, 3935, + 3603, 3019, 3935, + 3603, 3019, 3935, + 3603, 3021, 3935, + 3601, 3023, 3933, + 3601, 3023, 3933, + 3599, 3027, 3933, + 3597, 3029, 3933, + 3595, 3033, 3931, + 3591, 3039, 3929, + 3585, 3045, 3927, + 3579, 3055, 3925, + 3569, 3067, 3923, + 3557, 3083, 3917, + 3539, 3103, 3911, + 3515, 3127, 3903, + 3479, 3159, 3891, + 3427, 3199, 3877, + 3347, 3247, 3855, + 3209, 3305, 3823, + 2923, 3371, 3779, + 0, 3447, 3711, + 0, 3533, 3601, + 0, 3627, 3395, + 0, 3727, 2723, + 0, 3835, 0, + 0, 3947, 0, + 0, 4065, 0, + 3639, 3011, 3947, + 3639, 3011, 3947, + 3639, 3011, 3947, + 3639, 3011, 3947, + 3639, 3013, 3947, + 3639, 3013, 3947, + 3637, 3013, 3945, + 3637, 3015, 3945, + 3637, 3015, 3945, + 3635, 3017, 3945, + 3633, 3019, 3945, + 3631, 3023, 3943, + 3629, 3027, 3943, + 3625, 3033, 3941, + 3621, 3039, 3939, + 3615, 3049, 3937, + 3607, 3061, 3933, + 3595, 3077, 3929, + 3579, 3097, 3923, + 3555, 3123, 3915, + 3523, 3155, 3905, + 3477, 3195, 3889, + 3405, 3243, 3869, + 3287, 3301, 3839, + 3059, 3369, 3795, + 2121, 3445, 3729, + 0, 3531, 3625, + 0, 3625, 3431, + 0, 3727, 2865, + 0, 3833, 0, + 0, 3947, 0, + 0, 4065, 0, + 3681, 3003, 3961, + 3681, 3003, 3961, + 3681, 3003, 3961, + 3681, 3003, 3961, + 3681, 3003, 3961, + 3681, 3003, 3961, + 3679, 3005, 3961, + 3679, 3005, 3961, + 3679, 3007, 3961, + 3677, 3009, 3959, + 3677, 3011, 3959, + 3675, 3015, 3959, + 3673, 3019, 3957, + 3669, 3023, 3957, + 3665, 3031, 3955, + 3659, 3041, 3953, + 3651, 3053, 3949, + 3641, 3069, 3945, + 3625, 3089, 3939, + 3605, 3115, 3931, + 3577, 3149, 3921, + 3535, 3189, 3905, + 3473, 3237, 3885, + 3373, 3297, 3857, + 3195, 3365, 3815, + 2719, 3441, 3753, + 0, 3527, 3655, + 0, 3623, 3475, + 0, 3725, 3003, + 0, 3833, 0, + 0, 3945, 0, + 0, 4063, 0, + 3731, 2989, 3981, + 3731, 2991, 3981, + 3731, 2991, 3981, + 3731, 2991, 3981, + 3731, 2991, 3979, + 3731, 2991, 3979, + 3731, 2993, 3979, + 3731, 2993, 3979, + 3729, 2995, 3979, + 3729, 2997, 3979, + 3727, 2999, 3979, + 3725, 3003, 3977, + 3723, 3007, 3977, + 3721, 3013, 3975, + 3717, 3019, 3973, + 3713, 3029, 3971, + 3705, 3041, 3969, + 3695, 3059, 3965, + 3683, 3079, 3959, + 3665, 3107, 3951, + 3639, 3139, 3941, + 3603, 3181, 3927, + 3551, 3231, 3907, + 3469, 3289, 3881, + 3329, 3359, 3841, + 3029, 3437, 3783, + 0, 3523, 3691, + 0, 3619, 3529, + 0, 3721, 3139, + 0, 3831, 0, + 0, 3945, 0, + 0, 4061, 0, + 3791, 2973, 4005, + 3791, 2973, 4005, + 3791, 2973, 4005, + 3791, 2973, 4005, + 3791, 2975, 4005, + 3791, 2975, 4005, + 3791, 2975, 4003, + 3791, 2977, 4003, + 3789, 2979, 4003, + 3789, 2981, 4003, + 3787, 2983, 4003, + 3787, 2985, 4001, + 3785, 2991, 4001, + 3783, 2997, 3999, + 3779, 3003, 3999, + 3775, 3013, 3997, + 3769, 3027, 3993, + 3761, 3043, 3989, + 3749, 3065, 3985, + 3733, 3093, 3977, + 3713, 3127, 3967, + 3681, 3169, 3955, + 3637, 3221, 3937, + 3571, 3281, 3911, + 3463, 3351, 3873, + 3261, 3431, 3819, + 2631, 3519, 3735, + 0, 3615, 3591, + 0, 3719, 3275, + 0, 3827, 0, + 0, 3943, 0, + 0, 4061, 0, + 3861, 2949, 4035, + 3861, 2949, 4035, + 3861, 2951, 4035, + 3861, 2951, 4035, + 3861, 2951, 4035, + 3861, 2951, 4035, + 3861, 2953, 4035, + 3861, 2953, 4035, + 3859, 2955, 4035, + 3859, 2957, 4033, + 3859, 2959, 4033, + 3857, 2963, 4033, + 3855, 2967, 4031, + 3853, 2973, 4031, + 3851, 2981, 4029, + 3847, 2993, 4027, + 3841, 3007, 4025, + 3835, 3023, 4021, + 3825, 3047, 4017, + 3811, 3075, 4009, + 3793, 3111, 4001, + 3769, 3155, 3989, + 3733, 3207, 3971, + 3679, 3269, 3947, + 3595, 3341, 3915, + 3455, 3423, 3865, + 3149, 3511, 3789, + 0, 3609, 3663, + 0, 3713, 3411, + 0, 3825, 876, + 0, 3939, 0, + 0, 4059, 0, + 3941, 2917, 4073, + 3941, 2917, 4073, + 3941, 2917, 4073, + 3941, 2917, 4073, + 3939, 2917, 4073, + 3939, 2919, 4073, + 3939, 2919, 4073, + 3939, 2921, 4073, + 3939, 2921, 4071, + 3939, 2925, 4071, + 3937, 2927, 4071, + 3937, 2931, 4071, + 3935, 2935, 4069, + 3933, 2943, 4069, + 3931, 2951, 4067, + 3927, 2963, 4065, + 3923, 2977, 4063, + 3917, 2995, 4059, + 3909, 3019, 4055, + 3899, 3051, 4049, + 3885, 3087, 4041, + 3863, 3133, 4031, + 3835, 3189, 4015, + 3793, 3253, 3993, + 3729, 3327, 3963, + 3627, 3411, 3919, + 3443, 3503, 3853, + 2939, 3601, 3745, + 0, 3707, 3545, + 0, 3819, 2929, + 0, 3935, 0, + 0, 4055, 0, + 4029, 2867, 4095, + 4029, 2867, 4095, + 4029, 2867, 4095, + 4029, 2869, 4095, + 4027, 2869, 4095, + 4027, 2869, 4095, + 4027, 2871, 4095, + 4027, 2871, 4095, + 4027, 2873, 4095, + 4027, 2877, 4095, + 4025, 2879, 4095, + 4025, 2883, 4095, + 4025, 2889, 4095, + 4023, 2897, 4095, + 4021, 2905, 4095, + 4019, 2919, 4095, + 4015, 2935, 4095, + 4009, 2955, 4095, + 4003, 2981, 4095, + 3995, 3015, 4095, + 3983, 3055, 4091, + 3965, 3105, 4081, + 3943, 3163, 4067, + 3909, 3231, 4047, + 3861, 3309, 4021, + 3789, 3395, 3983, + 3667, 3489, 3925, + 3427, 3591, 3835, + 2235, 3699, 3677, + 0, 3813, 3313, + 0, 3931, 0, + 0, 4051, 0, + 4095, 2793, 4095, + 4095, 2793, 4095, + 4095, 2793, 4095, + 4095, 2793, 4095, + 4095, 2795, 4095, + 4095, 2795, 4095, + 4095, 2797, 4095, + 4095, 2797, 4095, + 4095, 2799, 4095, + 4095, 2803, 4095, + 4095, 2807, 4095, + 4095, 2811, 4095, + 4095, 2817, 4095, + 4095, 2827, 4095, + 4095, 2837, 4095, + 4095, 2851, 4095, + 4095, 2871, 4095, + 4095, 2895, 4095, + 4095, 2925, 4095, + 4095, 2961, 4095, + 4087, 3007, 4095, + 4075, 3061, 4095, + 4057, 3125, 4095, + 4031, 3199, 4095, + 3995, 3281, 4089, + 3941, 3373, 4055, + 3857, 3471, 4007, + 3715, 3577, 3933, + 3407, 3689, 3811, + 0, 3805, 3569, + 0, 3925, 2301, + 0, 4047, 0, + 4095, 2667, 4095, + 4095, 2669, 4095, + 4095, 2669, 4095, + 4095, 2669, 4095, + 4095, 2671, 4095, + 4095, 2671, 4095, + 4095, 2673, 4095, + 4095, 2675, 4095, + 4095, 2677, 4095, + 4095, 2681, 4095, + 4095, 2687, 4095, + 4095, 2693, 4095, + 4095, 2701, 4095, + 4095, 2711, 4095, + 4095, 2727, 4095, + 4095, 2745, 4095, + 4095, 2767, 4095, + 4095, 2797, 4095, + 4095, 2835, 4095, + 4095, 2879, 4095, + 4095, 2933, 4095, + 4095, 2997, 4095, + 4095, 3069, 4095, + 4095, 3151, 4095, + 4095, 3243, 4095, + 4087, 3341, 4095, + 4029, 3447, 4095, + 3935, 3557, 4039, + 3771, 3673, 3945, + 3375, 3793, 3777, + 0, 3915, 3367, + 0, 4039, 0, + 4095, 2419, 4095, + 4095, 2421, 4095, + 4095, 2421, 4095, + 4095, 2421, 4095, + 4095, 2423, 4095, + 4095, 2425, 4095, + 4095, 2429, 4095, + 4095, 2431, 4095, + 4095, 2437, 4095, + 4095, 2443, 4095, + 4095, 2451, 4095, + 4095, 2461, 4095, + 4095, 2475, 4095, + 4095, 2493, 4095, + 4095, 2515, 4095, + 4095, 2545, 4095, + 4095, 2581, 4095, + 4095, 2625, 4095, + 4095, 2677, 4095, + 4095, 2739, 4095, + 4095, 2811, 4095, + 4095, 2893, 4095, + 4095, 2983, 4095, + 4095, 3081, 4095, + 4095, 3185, 4095, + 4095, 3295, 4095, + 4095, 3411, 4095, + 4095, 3529, 4095, + 4023, 3651, 4077, + 3839, 3777, 3959, + 3331, 3903, 3727, + 0, 4031, 2729, + 4095, 771, 4095, + 4095, 795, 4095, + 4095, 824, 4095, + 4095, 860, 4095, + 4095, 904, 4095, + 4095, 957, 4095, + 4095, 1020, 4095, + 4095, 1092, 4095, + 4095, 1173, 4095, + 4095, 1263, 4095, + 4095, 1361, 4095, + 4095, 1466, 4095, + 4095, 1577, 4095, + 4095, 1692, 4095, + 4095, 1811, 4095, + 4095, 1934, 4095, + 4095, 2059, 4095, + 4095, 2185, 4095, + 4095, 2313, 4095, + 4095, 2441, 4095, + 4095, 2571, 4095, + 4095, 2701, 4095, + 4095, 2831, 4095, + 4095, 2963, 4095, + 4095, 3095, 4095, + 4095, 3225, 4095, + 4095, 3357, 4095, + 4095, 3489, 4095, + 4095, 3621, 4095, + 4095, 3753, 4095, + 3915, 3885, 3977, + 3265, 4017, 3649, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 0, 4095, + 4095, 1343, 4095, + 4095, 2153, 4095, + 4095, 2493, 4095, + 4095, 2735, 4095, + 4095, 2935, 4095, + 4095, 3113, 4095, + 4095, 3275, 4095, + 4095, 3429, 4095, + 4095, 3577, 4095, + 4095, 3721, 4095, + 4095, 3861, 4095, + 3999, 3999, 3999 +] + } +} diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/test-extreme-grade_inv-Log2-48nits_32_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/test-extreme-grade_inv-Log2-48nits_32_LUT.exr new file mode 100644 index 0000000000..bf06ce0bed --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Extreme_Grade/test-extreme-grade_inv-Log2-48nits_32_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad9a024034bfc356f7c6fd4c19d617a7321306c68b7f824fb44b73ad57613244 +size 197689 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/Test-Grade.nk b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/Test-Grade.nk new file mode 100644 index 0000000000..9643c9edbc --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/Test-Grade.nk @@ -0,0 +1,225 @@ +#! C:/Program Files/Nuke13.0v3/nuke-13.0.3.dll -nx +version 13.0 v3 +define_window_layout_xml { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +} +Root { + inputs 0 + name C:/Depot/o3de/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/Test-Grade.nk + project_directory "\"C:/Depot/o3de-engine/Gems/AtomLyIntegration/CommonFeatures/Tools/ColorGrading/TestData/Nuke/" + format "2048 1556 0 0 2048 1556 1 2K_Super_35(full-ap)" + proxy_type scale + proxy_format "1024 778 0 0 1024 778 1 1K_Super_35(full-ap)" + colorManagement OCIO + OCIO_config aces_1.0.3 + defaultViewerLUT "OCIO LUTs" + workingSpaceLUT scene_linear + monitorLut ACES/Rec.709 + monitorOutLUT "sRGB (ACES)" + int8Lut matte_paint + int16Lut texture_paint + logLut compositing_log + floatLut scene_linear +} +Read { + inputs 0 + file_type exr + file C:/Depot/o3de/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/LUTs/linear_32_LUT.exr + format "1024 32 0 0 1024 32 1 " + origset true + colorspace data + raw true + name Read_Linear_LUT_32 + xpos -846 + ypos 10 +} +set N16319800 [stack 0] +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer1 + xpos -846 + ypos 135 +} +push $N16319800 +OCIOFileTransform { + file C:/Depot/o3de-engine/Tools/ColorGrading/OpenColorIO-Configs/aces_1.0.3/luts/Log2_48_nits_Shaper_to_linear.spi1d + working_space rendering + name Log2_48_nits_Shaper_to_linear + xpos -710 + ypos 46 +} +set N16319000 [stack 0] +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer2 + xpos -710 + ypos 137 +} +push $N16319000 +Transform { + center {1024 778} + name Transform_Position_LUT + xpos -579 + ypos 3 +} +set N16318c00 [stack 0] +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer3 + xpos -579 + ypos 135 +} +push $N16318c00 +Read { + inputs 0 + file_type exr + file C:/Depot/o3de/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/displaymapperpassthrough.exr + format "2802 1854 0 0 2802 1854 1 " + origset true + name Read_DisplayMapperPassthrough + xpos -580 + ypos -146 +} +ZMerge { + inputs 2 + name ZMerge_Combine + xpos -413 + ypos -83 +} +set N16297c00 [stack 0] +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer4 + xpos -413 + ypos 128 +} +push $N16297c00 +HueShift { + ingray {0.18 0.18 0.18} + outgray {0.18 0.18 0.18} + saturation 1.26 + color {0.12 0.12 0.12} + color_saturation 0.78 + hue_rotation -150 + brightness 0.74 + name HueShift1 + xpos -256 + ypos -83 +} +set N16297800 [stack 0] +Crop { + box {0 0 1024 32} + reformat true + crop false + name Crop1 + xpos -86 + ypos 32 +} +set N16297400 [stack 0] +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer6 + xpos -86 + ypos 134 +} +push $N16297800 +Write { + file C:/Depot/o3de/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/Shot_post_test-grade.exr + colorspace compositing_linear + file_type exr + write_ACES_compliant_EXR true + datatype "32 bit float" + first_part rgba + version 11 + name Write_Shot_Grade_Comp + xpos 353 + ypos -95 +} +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer8 + xpos 353 + ypos 135 +} +push $N16297400 +OCIOFileTransform { + file C:/Depot/o3de-engine/Tools/ColorGrading/OpenColorIO-Configs/aces_1.0.3/luts/Log2_48_nits_Shaper_to_linear.spi1d + direction inverse + working_space data + name invLog2_48_nits_Shaper_to_linear + xpos 74 + ypos -14 +} +Write { + file C:/Depot/o3de/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/test-grade_inv-Log2-48nits_32_LUT.exr + colorspace data + file_type exr + datatype "32 bit float" + first_part rgba + version 11 + name Write_RAW_LUT + xpos 242 + ypos 20 +} +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer7 + xpos 242 + ypos 135 +} +push $N16297800 +Viewer { + frame 1 + frame_range 1-100 + viewerProcess "sRGB (ACES)" + name Viewer5 + xpos -256 + ypos 130 +} diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/test-grade_inv-Log2-48nits_32_LUT.3dl b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/test-grade_inv-Log2-48nits_32_LUT.3dl new file mode 100644 index 0000000000..674cf4d9ce --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/test-grade_inv-Log2-48nits_32_LUT.3dl @@ -0,0 +1,32769 @@ +0 33 66 99 132 165 198 231 264 297 330 363 396 429 462 495 528 561 594 627 660 693 726 759 792 825 858 891 924 957 990 1023 +0 0 0 +0 0 0 +0 15 0 +0 104 0 +0 201 0 +0 305 0 +0 415 0 +0 530 0 +0 649 0 +0 771 0 +0 895 0 +0 1022 0 +0 1149 0 +0 1278 0 +0 1408 0 +0 1538 0 +0 1668 0 +0 1799 0 +0 1931 0 +0 2062 0 +0 2194 0 +0 2326 0 +0 2457 0 +0 2589 0 +0 2721 0 +0 2853 0 +0 2985 0 +0 3117 0 +0 3249 0 +0 3381 0 +0 3514 0 +0 3646 0 +130 0 20 +28 0 0 +0 33 0 +0 119 0 +0 213 0 +0 315 0 +0 423 0 +0 536 0 +0 654 0 +0 775 0 +0 898 0 +0 1024 0 +0 1151 0 +0 1279 0 +0 1408 0 +0 1538 0 +0 1669 0 +0 1800 0 +0 1931 0 +0 2062 0 +0 2194 0 +0 2326 0 +0 2458 0 +0 2589 0 +0 2721 0 +0 2853 0 +0 2985 0 +0 3117 0 +0 3249 0 +0 3381 0 +0 3514 0 +0 3646 0 +342 0 170 +280 0 102 +183 56 0 +7 139 0 +0 229 0 +0 328 0 +0 433 0 +0 544 0 +0 660 0 +0 779 0 +0 902 0 +0 1026 0 +0 1153 0 +0 1281 0 +0 1410 0 +0 1539 0 +0 1670 0 +0 1800 0 +0 1931 0 +0 2063 0 +0 2194 0 +0 2326 0 +0 2458 0 +0 2589 0 +0 2721 0 +0 2853 0 +0 2985 0 +0 3117 0 +0 3249 0 +0 3381 0 +0 3514 0 +0 3646 0 +526 0 315 +486 18 266 +426 86 192 +331 163 68 +163 250 0 +0 344 0 +0 446 0 +0 555 0 +0 668 0 +0 785 0 +0 906 0 +0 1030 0 +0 1156 0 +0 1283 0 +0 1411 0 +0 1540 0 +0 1670 0 +0 1801 0 +0 1932 0 +0 2063 0 +0 2194 0 +0 2326 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2853 0 +0 2985 0 +0 3117 0 +0 3249 0 +0 3382 0 +0 3514 0 +0 3646 0 +693 8 457 +666 60 422 +626 123 370 +568 195 290 +475 276 155 +312 366 0 +0 463 0 +0 568 0 +0 678 0 +0 794 0 +0 913 0 +0 1035 0 +0 1159 0 +0 1285 0 +0 1413 0 +0 1542 0 +0 1672 0 +0 1802 0 +0 1932 0 +0 2064 0 +0 2195 0 +0 2326 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2985 0 +0 3117 0 +0 3249 0 +0 3382 0 +0 3514 0 +0 3646 0 +850 65 596 +831 112 570 +804 168 534 +765 233 479 +707 308 395 +616 393 250 +457 485 0 +82 585 0 +0 692 0 +0 804 0 +0 921 0 +0 1041 0 +0 1164 0 +0 1289 0 +0 1416 0 +0 1544 0 +0 1673 0 +0 1803 0 +0 1933 0 +0 2064 0 +0 2195 0 +0 2327 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +999 131 733 +986 172 714 +967 222 688 +940 280 650 +901 348 594 +844 426 505 +755 513 352 +598 608 3 +235 710 0 +0 818 0 +0 932 0 +0 1049 0 +0 1170 0 +0 1294 0 +0 1420 0 +0 1547 0 +0 1675 0 +0 1805 0 +0 1935 0 +0 2065 0 +0 2196 0 +0 2327 0 +0 2459 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1144 207 869 +1134 242 855 +1121 285 836 +1102 336 809 +1075 397 770 +1037 468 712 +980 547 621 +892 636 461 +737 732 82 +382 836 0 +0 946 0 +0 1060 0 +0 1179 0 +0 1300 0 +0 1424 0 +0 1550 0 +0 1678 0 +0 1807 0 +0 1936 0 +0 2066 0 +0 2197 0 +0 2328 0 +0 2459 0 +0 2591 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1286 293 1004 +1278 322 994 +1268 358 980 +1255 402 960 +1236 455 932 +1210 518 893 +1172 590 833 +1115 671 740 +1027 761 574 +874 859 170 +525 964 0 +0 1074 0 +0 1190 0 +0 1309 0 +0 1431 0 +0 1555 0 +0 1682 0 +0 1809 0 +0 1938 0 +0 2068 0 +0 2198 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1424 386 1138 +1419 410 1131 +1412 440 1120 +1402 477 1106 +1389 523 1086 +1370 577 1058 +1343 641 1018 +1306 714 958 +1250 797 862 +1162 888 692 +1010 987 267 +665 1093 0 +0 1204 0 +0 1320 0 +0 1439 0 +0 1562 0 +0 1687 0 +0 1813 0 +0 1941 0 +0 2070 0 +0 2200 0 +0 2330 0 +0 2461 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1562 487 1272 +1558 506 1266 +1552 531 1258 +1545 561 1248 +1535 599 1234 +1522 646 1213 +1503 701 1185 +1477 766 1144 +1439 840 1084 +1383 924 987 +1296 1016 813 +1145 1116 370 +802 1222 0 +0 1334 0 +0 1450 0 +0 1570 0 +0 1693 0 +0 1818 0 +0 1945 0 +0 2073 0 +0 2202 0 +0 2331 0 +0 2462 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1697 595 1405 +1695 610 1401 +1691 629 1395 +1685 654 1387 +1678 685 1377 +1668 724 1362 +1655 771 1342 +1636 827 1314 +1610 893 1273 +1572 968 1211 +1517 1053 1113 +1430 1145 937 +1279 1246 479 +939 1352 0 +0 1465 0 +0 1581 0 +0 1701 0 +0 1824 0 +0 1950 0 +0 2076 0 +0 2204 0 +0 2334 0 +0 2463 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1832 707 1538 +1830 719 1535 +1827 735 1531 +1823 755 1525 +1818 780 1517 +1811 811 1507 +1801 851 1492 +1788 898 1472 +1769 955 1443 +1743 1021 1402 +1705 1097 1340 +1650 1182 1241 +1563 1275 1062 +1412 1376 594 +1074 1483 0 +0 1596 0 +0 1712 0 +0 1833 0 +0 1956 0 +0 2081 0 +0 2208 0 +0 2336 0 +0 2466 0 +0 2595 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +1966 824 1671 +1965 834 1668 +1963 846 1665 +1960 861 1661 +1956 881 1655 +1951 907 1647 +1943 939 1637 +1934 978 1622 +1920 1026 1602 +1902 1084 1573 +1875 1150 1531 +1838 1227 1469 +1782 1312 1370 +1696 1406 1190 +1545 1507 712 +1209 1614 0 +0 1727 0 +0 1844 0 +0 1964 0 +0 2088 0 +0 2213 0 +0 2340 0 +0 2468 0 +0 2597 0 +0 2727 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +2100 945 1803 +2099 952 1802 +2097 961 1799 +2095 973 1796 +2092 989 1792 +2088 1009 1786 +2083 1035 1778 +2076 1067 1768 +2066 1107 1753 +2053 1156 1732 +2034 1213 1703 +2008 1280 1662 +1970 1357 1599 +1915 1442 1499 +1828 1536 1318 +1678 1638 834 +1342 1745 0 +0 1858 0 +0 1976 0 +0 2096 0 +0 2220 0 +0 2345 0 +0 2472 0 +0 2600 0 +0 2730 0 +0 2859 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +2233 1068 1936 +2232 1074 1935 +2231 1081 1933 +2230 1090 1930 +2227 1102 1927 +2225 1118 1923 +2221 1139 1917 +2215 1164 1909 +2208 1197 1899 +2198 1237 1884 +2185 1286 1863 +2166 1343 1834 +2140 1411 1793 +2103 1488 1730 +2047 1573 1629 +1961 1668 1447 +1811 1769 958 +1476 1877 0 +0 1990 0 +0 2107 0 +0 2228 0 +0 2351 0 +0 2477 0 +0 2604 0 +0 2732 0 +0 2862 0 +0 2991 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3515 0 +0 3647 0 +2366 1194 2068 +2366 1198 2067 +2365 1203 2066 +2364 1210 2064 +2362 1220 2062 +2360 1232 2059 +2357 1248 2054 +2353 1268 2049 +2348 1294 2041 +2340 1327 2030 +2331 1367 2015 +2317 1416 1995 +2299 1474 1966 +2273 1542 1924 +2235 1619 1861 +2180 1705 1760 +2093 1799 1577 +1944 1901 1084 +1609 2009 0 +0 2122 0 +0 2239 0 +0 2360 0 +0 2483 0 +0 2609 0 +0 2736 0 +0 2864 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +2499 1321 2200 +2499 1324 2200 +2498 1328 2199 +2497 1333 2197 +2496 1340 2196 +2494 1350 2193 +2492 1362 2190 +2489 1378 2186 +2485 1399 2180 +2480 1425 2172 +2473 1458 2161 +2463 1498 2147 +2450 1547 2126 +2431 1605 2097 +2405 1673 2055 +2367 1750 1992 +2312 1836 1891 +2226 1931 1708 +2076 2032 1211 +1742 2140 0 +0 2254 0 +0 2371 0 +0 2492 0 +0 2615 0 +0 2741 0 +0 2868 0 +0 2996 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +2632 1449 2333 +2631 1451 2332 +2631 1454 2331 +2630 1458 2330 +2629 1464 2329 +2628 1471 2327 +2626 1481 2325 +2624 1493 2322 +2621 1509 2318 +2617 1530 2312 +2612 1556 2304 +2605 1589 2293 +2595 1629 2278 +2582 1678 2258 +2563 1736 2229 +2537 1804 2187 +2500 1881 2123 +2444 1968 2023 +2358 2062 1839 +2208 2164 1340 +1874 2272 0 +0 2385 0 +0 2503 0 +0 2624 0 +0 2747 0 +0 2873 0 +0 3000 0 +0 3128 0 +0 3258 0 +0 3388 0 +0 3518 0 +0 3649 0 +2764 1578 2465 +2764 1580 2465 +2763 1582 2464 +2763 1585 2463 +2762 1589 2462 +2761 1595 2461 +2760 1602 2459 +2759 1612 2457 +2756 1624 2454 +2753 1640 2449 +2750 1661 2444 +2744 1687 2436 +2737 1720 2425 +2727 1760 2410 +2714 1809 2389 +2695 1868 2360 +2669 1936 2318 +2632 2013 2255 +2577 2099 2154 +2490 2194 1970 +2341 2296 1469 +2007 2404 0 +0 2517 0 +0 2635 0 +0 2756 0 +0 2879 0 +0 3005 0 +0 3132 0 +0 3260 0 +0 3390 0 +0 3520 0 +0 3650 0 +2896 1708 2597 +2896 1709 2597 +2896 1711 2596 +2896 1713 2596 +2895 1716 2595 +2894 1721 2594 +2893 1726 2593 +2892 1733 2591 +2891 1743 2589 +2889 1755 2586 +2886 1771 2581 +2882 1792 2575 +2876 1818 2568 +2869 1851 2557 +2859 1892 2542 +2846 1941 2521 +2828 1999 2492 +2801 2067 2450 +2764 2145 2387 +2709 2231 2286 +2622 2326 2101 +2473 2428 1599 +2139 2536 0 +0 2649 0 +0 2767 0 +0 2888 0 +0 3011 0 +0 3137 0 +0 3264 0 +0 3393 0 +0 3522 0 +0 3652 0 +3029 1838 2729 +3029 1839 2729 +3028 1841 2729 +3028 1842 2728 +3028 1845 2728 +3027 1848 2727 +3027 1852 2726 +3026 1858 2725 +3024 1865 2723 +3023 1874 2721 +3021 1887 2717 +3018 1903 2713 +3014 1924 2707 +3009 1950 2699 +3001 1983 2689 +2992 2024 2674 +2978 2073 2653 +2960 2131 2624 +2934 2199 2582 +2896 2277 2519 +2841 2363 2418 +2755 2458 2233 +2605 2560 1730 +2272 2668 0 +0 2781 0 +0 2899 0 +0 3020 0 +0 3143 0 +0 3269 0 +0 3396 0 +0 3525 0 +0 3654 0 +3161 1969 2861 +3161 1970 2861 +3161 1971 2861 +3160 1972 2861 +3160 1974 2860 +3160 1976 2860 +3159 1980 2859 +3159 1984 2858 +3158 1989 2857 +3157 1996 2855 +3155 2006 2853 +3153 2018 2849 +3150 2035 2845 +3146 2055 2839 +3141 2082 2831 +3134 2115 2821 +3124 2155 2806 +3110 2205 2785 +3092 2263 2756 +3066 2331 2714 +3028 2409 2651 +2973 2495 2549 +2887 2590 2365 +2737 2692 1861 +2404 2800 0 +0 2913 0 +0 3031 0 +0 3152 0 +0 3276 0 +0 3401 0 +0 3528 0 +0 3657 0 +3293 2100 2994 +3293 2101 2993 +3293 2102 2993 +3293 2103 2993 +3293 2104 2993 +3292 2106 2992 +3292 2108 2992 +3291 2111 2991 +3291 2115 2990 +3290 2121 2989 +3289 2128 2987 +3287 2138 2985 +3285 2150 2981 +3282 2166 2977 +3278 2187 2971 +3273 2213 2963 +3266 2246 2953 +3256 2287 2938 +3242 2336 2917 +3224 2395 2888 +3198 2463 2846 +3161 2541 2783 +3105 2627 2681 +3019 2722 2497 +2870 2824 1992 +2536 2932 0 +0 3046 0 +0 3163 0 +0 3284 0 +0 3408 0 +0 3533 0 +0 3660 0 +3425 2232 3126 +3425 2232 3126 +3425 2233 3125 +3425 2233 3125 +3425 2234 3125 +3425 2236 3125 +3424 2238 3124 +3424 2240 3124 +3424 2243 3123 +3423 2247 3122 +3422 2253 3121 +3421 2260 3119 +3419 2270 3117 +3417 2282 3113 +3414 2298 3109 +3410 2319 3103 +3405 2345 3095 +3398 2378 3085 +3388 2419 3070 +3375 2468 3049 +3356 2527 3020 +3330 2595 2978 +3293 2673 2915 +3237 2759 2813 +3151 2854 2629 +3002 2956 2124 +2668 3064 0 +0 3178 0 +0 3295 0 +0 3416 0 +0 3540 0 +0 3665 0 +3557 2363 3258 +3557 2364 3258 +3557 2364 3258 +3557 2365 3258 +3557 2365 3257 +3557 2366 3257 +3557 2368 3257 +3557 2370 3256 +3556 2372 3256 +3556 2375 3255 +3555 2379 3254 +3554 2385 3253 +3553 2392 3251 +3551 2402 3249 +3549 2414 3245 +3546 2430 3241 +3542 2451 3235 +3537 2477 3227 +3530 2510 3217 +3520 2551 3202 +3507 2600 3181 +3488 2659 3152 +3462 2727 3110 +3425 2805 3047 +3369 2891 2945 +3283 2986 2760 +3134 3088 2255 +2800 3196 0 +0 3310 0 +0 3427 0 +0 3548 0 +0 3672 0 +3690 2495 3390 +3690 2495 3390 +3690 2496 3390 +3689 2496 3390 +3689 2497 3390 +3689 2497 3389 +3689 2498 3389 +3689 2500 3389 +3689 2501 3388 +3688 2504 3388 +3688 2507 3387 +3687 2511 3386 +3686 2517 3385 +3685 2524 3383 +3683 2534 3381 +3681 2546 3378 +3678 2562 3373 +3674 2583 3367 +3669 2609 3360 +3662 2642 3349 +3652 2683 3334 +3639 2732 3313 +3620 2791 3284 +3594 2859 3242 +3557 2937 3179 +3502 3023 3077 +3415 3118 2892 +3266 3220 2387 +2933 3328 0 +0 3442 0 +0 3559 0 +0 3680 0 +3822 2627 3522 +3822 2627 3522 +3822 2627 3522 +3822 2628 3522 +3822 2628 3522 +3822 2629 3522 +3821 2629 3521 +3821 2630 3521 +3821 2632 3521 +3821 2633 3521 +3820 2636 3520 +3820 2639 3519 +3819 2643 3518 +3818 2649 3517 +3817 2656 3515 +3816 2666 3513 +3813 2678 3510 +3810 2694 3505 +3807 2715 3499 +3801 2741 3492 +3794 2774 3481 +3784 2815 3466 +3771 2864 3445 +3752 2923 3416 +3726 2991 3374 +3689 3069 3311 +3634 3155 3209 +3547 3250 3024 +3398 3352 2519 +3065 3460 0 +0 3574 0 +0 3691 0 +3954 2759 3654 +3954 2759 3654 +3954 2759 3654 +3954 2759 3654 +3954 2760 3654 +3954 2760 3654 +3954 2761 3654 +3953 2761 3654 +3953 2762 3653 +3953 2764 3653 +3953 2765 3653 +3952 2768 3652 +3952 2771 3651 +3951 2775 3650 +3950 2781 3649 +3949 2788 3647 +3948 2798 3645 +3945 2810 3642 +3943 2826 3637 +3939 2847 3632 +3933 2873 3624 +3926 2906 3613 +3916 2947 3598 +3903 2996 3577 +3884 3055 3548 +3858 3123 3506 +3821 3201 3443 +3766 3287 3341 +3679 3382 3156 +3530 3484 2651 +3197 3592 0 +0 3706 0 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2892 3786 +4086 2892 3786 +4086 2893 3786 +4086 2893 3786 +4085 2894 3785 +4085 2896 3785 +4085 2897 3785 +4085 2900 3784 +4084 2903 3783 +4083 2907 3782 +4083 2913 3781 +4081 2920 3779 +4080 2930 3777 +4078 2942 3774 +4075 2958 3769 +4071 2979 3764 +4065 3005 3756 +4058 3038 3745 +4049 3079 3730 +4035 3128 3709 +4017 3187 3680 +3991 3255 3638 +3953 3333 3575 +3898 3419 3473 +3812 3514 3289 +3662 3616 2783 +3329 3725 0 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3024 3918 +4095 3024 3918 +4095 3025 3918 +4095 3025 3918 +4095 3026 3917 +4095 3028 3917 +4095 3030 3917 +4095 3032 3916 +4095 3035 3915 +4095 3039 3915 +4095 3045 3913 +4095 3052 3911 +4095 3062 3909 +4095 3074 3906 +4095 3090 3902 +4095 3111 3896 +4095 3137 3888 +4095 3170 3877 +4095 3211 3862 +4095 3261 3842 +4095 3319 3812 +4095 3387 3770 +4085 3465 3707 +4030 3551 3605 +3944 3646 3421 +3794 3748 2915 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3156 4050 +4095 3156 4050 +4095 3157 4050 +4095 3157 4050 +4095 3158 4050 +4095 3160 4049 +4095 3162 4049 +4095 3164 4048 +4095 3167 4048 +4095 3171 4047 +4095 3177 4045 +4095 3184 4044 +4095 3194 4041 +4095 3206 4038 +4095 3222 4034 +4095 3243 4028 +4095 3270 4020 +4095 3303 4009 +4095 3343 3994 +4095 3393 3974 +4095 3451 3944 +4095 3519 3902 +4095 3597 3839 +4095 3684 3738 +4076 3778 3553 +0 0 0 +0 0 0 +0 49 0 +0 132 0 +0 224 0 +0 324 0 +0 430 0 +0 542 0 +0 658 0 +0 778 0 +0 901 0 +0 1025 0 +0 1152 0 +0 1280 0 +0 1409 0 +0 1539 0 +0 1669 0 +0 1800 0 +0 1931 0 +0 2063 0 +0 2194 0 +0 2326 0 +0 2458 0 +0 2589 0 +0 2721 0 +0 2853 0 +0 2985 0 +0 3117 0 +0 3249 0 +0 3381 0 +0 3514 0 +0 3646 0 +104 0 80 +0 0 0 +0 66 0 +0 147 0 +0 236 0 +0 333 0 +0 438 0 +0 548 0 +0 662 0 +0 781 0 +0 903 0 +0 1028 0 +0 1154 0 +0 1281 0 +0 1410 0 +0 1540 0 +0 1670 0 +0 1800 0 +0 1931 0 +0 2063 0 +0 2194 0 +0 2326 0 +0 2458 0 +0 2590 0 +0 2721 0 +0 2853 0 +0 2985 0 +0 3117 0 +0 3249 0 +0 3381 0 +0 3514 0 +0 3646 0 +326 0 214 +262 20 152 +160 88 54 +0 165 0 +0 251 0 +0 346 0 +0 447 0 +0 555 0 +0 668 0 +0 786 0 +0 907 0 +0 1030 0 +0 1156 0 +0 1283 0 +0 1411 0 +0 1540 0 +0 1670 0 +0 1801 0 +0 1932 0 +0 2063 0 +0 2194 0 +0 2326 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2853 0 +0 2985 0 +0 3117 0 +0 3249 0 +0 3382 0 +0 3514 0 +0 3646 0 +515 0 347 +474 52 302 +413 116 234 +315 188 122 +139 271 0 +0 361 0 +0 460 0 +0 565 0 +0 676 0 +0 792 0 +0 911 0 +0 1034 0 +0 1158 0 +0 1285 0 +0 1413 0 +0 1542 0 +0 1671 0 +0 1802 0 +0 1932 0 +0 2063 0 +0 2195 0 +0 2326 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2985 0 +0 3117 0 +0 3249 0 +0 3382 0 +0 3514 0 +0 3646 0 +686 42 481 +658 92 447 +618 150 399 +558 218 324 +463 295 200 +295 382 0 +0 477 0 +0 579 0 +0 687 0 +0 800 0 +0 918 0 +0 1039 0 +0 1162 0 +0 1288 0 +0 1415 0 +0 1543 0 +0 1673 0 +0 1802 0 +0 1933 0 +0 2064 0 +0 2195 0 +0 2327 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +844 96 614 +825 140 589 +798 192 554 +758 255 502 +700 327 422 +607 408 287 +444 498 4 +53 596 0 +0 700 0 +0 811 0 +0 926 0 +0 1045 0 +0 1167 0 +0 1291 0 +0 1418 0 +0 1545 0 +0 1674 0 +0 1804 0 +0 1934 0 +0 2065 0 +0 2196 0 +0 2327 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +996 158 746 +982 197 728 +963 244 702 +936 300 666 +897 365 611 +839 440 527 +748 525 382 +589 617 65 +214 718 0 +0 824 0 +0 936 0 +0 1053 0 +0 1173 0 +0 1296 0 +0 1421 0 +0 1548 0 +0 1676 0 +0 1805 0 +0 1935 0 +0 2065 0 +0 2196 0 +0 2327 0 +0 2459 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1141 230 879 +1131 263 865 +1118 304 846 +1099 354 820 +1072 412 782 +1034 481 726 +976 558 638 +887 645 484 +730 740 135 +367 842 0 +0 950 0 +0 1064 0 +0 1181 0 +0 1302 0 +0 1426 0 +0 1552 0 +0 1679 0 +0 1807 0 +0 1937 0 +0 2067 0 +0 2197 0 +0 2328 0 +0 2459 0 +0 2591 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1284 312 1011 +1276 340 1001 +1266 374 987 +1253 417 968 +1234 468 941 +1207 529 902 +1169 600 844 +1112 679 753 +1024 768 593 +869 865 214 +514 968 0 +0 1078 0 +0 1192 0 +0 1311 0 +0 1432 0 +0 1557 0 +0 1683 0 +0 1810 0 +0 1939 0 +0 2068 0 +0 2198 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1423 402 1144 +1418 425 1136 +1410 454 1126 +1401 490 1112 +1387 534 1092 +1368 587 1064 +1342 650 1025 +1304 722 966 +1247 803 872 +1159 893 706 +1006 991 302 +657 1096 0 +0 1206 0 +0 1322 0 +0 1441 0 +0 1563 0 +0 1687 0 +0 1814 0 +0 1941 0 +0 2070 0 +0 2200 0 +0 2330 0 +0 2461 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1561 500 1276 +1557 518 1270 +1551 542 1263 +1544 572 1252 +1534 609 1238 +1521 655 1218 +1502 709 1190 +1476 773 1150 +1438 846 1090 +1382 929 994 +1294 1020 824 +1142 1119 399 +797 1225 0 +0 1336 0 +0 1452 0 +0 1571 0 +0 1694 0 +0 1819 0 +0 1945 0 +0 2073 0 +0 2202 0 +0 2332 0 +0 2462 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1697 605 1408 +1694 619 1404 +1690 639 1398 +1684 663 1391 +1677 694 1380 +1667 732 1366 +1654 778 1346 +1635 833 1317 +1609 898 1277 +1571 973 1216 +1515 1056 1119 +1428 1148 945 +1277 1248 502 +935 1354 0 +0 1466 0 +0 1582 0 +0 1702 0 +0 1825 0 +0 1950 0 +0 2077 0 +0 2205 0 +0 2334 0 +0 2464 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1832 715 1540 +1830 727 1537 +1827 742 1533 +1823 761 1527 +1817 786 1519 +1810 818 1509 +1800 856 1494 +1787 903 1474 +1768 959 1446 +1742 1025 1405 +1704 1100 1343 +1649 1185 1245 +1562 1277 1069 +1411 1378 612 +1071 1484 0 +0 1597 0 +0 1713 0 +0 1833 0 +0 1956 0 +0 2082 0 +0 2208 0 +0 2337 0 +0 2466 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +1966 830 1672 +1964 840 1670 +1962 851 1667 +1959 867 1663 +1955 887 1657 +1950 912 1649 +1943 943 1639 +1933 983 1624 +1920 1030 1604 +1901 1087 1575 +1875 1153 1534 +1837 1229 1472 +1782 1314 1373 +1695 1407 1194 +1544 1508 726 +1206 1615 0 +0 1728 0 +0 1845 0 +0 1965 0 +0 2088 0 +0 2213 0 +0 2340 0 +0 2468 0 +0 2598 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +2100 950 1805 +2099 957 1803 +2097 966 1801 +2095 978 1797 +2092 993 1793 +2088 1013 1787 +2083 1039 1780 +2075 1071 1769 +2066 1110 1754 +2052 1159 1734 +2034 1216 1705 +2007 1282 1663 +1970 1359 1601 +1914 1444 1502 +1828 1538 1322 +1678 1639 844 +1341 1746 0 +0 1859 0 +0 1976 0 +0 2097 0 +0 2220 0 +0 2345 0 +0 2472 0 +0 2600 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +2233 1072 1937 +2232 1077 1935 +2231 1084 1934 +2229 1093 1931 +2227 1106 1928 +2224 1121 1924 +2220 1142 1918 +2215 1167 1910 +2208 1200 1900 +2198 1239 1885 +2185 1288 1864 +2166 1345 1836 +2140 1412 1794 +2103 1489 1731 +2047 1575 1631 +1960 1669 1450 +1810 1770 966 +1475 1878 0 +0 1990 0 +0 2108 0 +0 2228 0 +0 2352 0 +0 2477 0 +0 2604 0 +0 2732 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3515 0 +0 3647 0 +2366 1196 2069 +2365 1200 2068 +2365 1206 2067 +2363 1213 2065 +2362 1222 2063 +2360 1234 2059 +2357 1250 2055 +2353 1271 2049 +2347 1297 2041 +2340 1329 2031 +2330 1369 2016 +2317 1418 1995 +2298 1475 1966 +2272 1543 1925 +2235 1620 1862 +2180 1706 1762 +2093 1800 1579 +1943 1901 1090 +1608 2009 0 +0 2122 0 +0 2239 0 +0 2360 0 +0 2483 0 +0 2609 0 +0 2736 0 +0 2864 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +2499 1323 2201 +2498 1326 2200 +2498 1330 2199 +2497 1335 2198 +2496 1342 2196 +2494 1352 2194 +2492 1364 2191 +2489 1380 2186 +2485 1400 2181 +2480 1426 2173 +2473 1459 2162 +2463 1499 2147 +2449 1548 2127 +2431 1606 2098 +2405 1674 2056 +2367 1751 1993 +2312 1837 1892 +2225 1931 1709 +2076 2033 1216 +1741 2141 0 +0 2254 0 +0 2371 0 +0 2492 0 +0 2615 0 +0 2741 0 +0 2868 0 +0 2996 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +2631 1450 2333 +2631 1453 2333 +2631 1456 2332 +2630 1460 2331 +2629 1465 2330 +2628 1473 2328 +2626 1482 2325 +2624 1494 2322 +2621 1510 2318 +2617 1531 2312 +2612 1557 2304 +2605 1590 2294 +2595 1630 2279 +2582 1679 2258 +2563 1737 2229 +2537 1805 2187 +2500 1882 2124 +2444 1968 2023 +2358 2063 1840 +2208 2164 1343 +1874 2272 0 +0 2386 0 +0 2503 0 +0 2624 0 +0 2747 0 +0 2873 0 +0 3000 0 +0 3128 0 +0 3258 0 +0 3388 0 +0 3518 0 +0 3649 0 +2764 1579 2465 +2764 1581 2465 +2763 1583 2464 +2763 1586 2464 +2762 1590 2463 +2761 1596 2461 +2760 1603 2460 +2758 1613 2457 +2756 1625 2454 +2753 1641 2450 +2749 1662 2444 +2744 1688 2436 +2737 1721 2425 +2727 1761 2410 +2714 1810 2390 +2695 1868 2361 +2669 1936 2319 +2632 2013 2256 +2576 2100 2155 +2490 2194 1971 +2341 2296 1472 +2006 2404 0 +0 2518 0 +0 2635 0 +0 2756 0 +0 2879 0 +0 3005 0 +0 3132 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3650 0 +2896 1709 2597 +2896 1710 2597 +2896 1712 2597 +2895 1714 2596 +2895 1717 2595 +2894 1721 2594 +2893 1727 2593 +2892 1734 2591 +2891 1744 2589 +2888 1756 2586 +2886 1772 2581 +2882 1793 2576 +2876 1819 2568 +2869 1852 2557 +2859 1892 2542 +2846 1942 2522 +2827 2000 2492 +2801 2068 2450 +2764 2145 2387 +2709 2232 2286 +2622 2326 2102 +2473 2428 1601 +2139 2536 0 +0 2650 0 +0 2767 0 +0 2888 0 +0 3011 0 +0 3137 0 +0 3264 0 +0 3393 0 +0 3522 0 +0 3652 0 +3029 1839 2729 +3029 1840 2729 +3028 1841 2729 +3028 1843 2729 +3028 1845 2728 +3027 1849 2727 +3026 1853 2726 +3026 1858 2725 +3024 1865 2723 +3023 1875 2721 +3021 1887 2718 +3018 1904 2713 +3014 1924 2708 +3009 1950 2700 +3001 1983 2689 +2992 2024 2674 +2978 2073 2653 +2960 2132 2624 +2934 2199 2582 +2896 2277 2519 +2841 2363 2418 +2754 2458 2234 +2605 2560 1732 +2271 2668 0 +0 2781 0 +0 2899 0 +0 3020 0 +0 3144 0 +0 3269 0 +0 3396 0 +0 3525 0 +0 3654 0 +3161 1970 2862 +3161 1970 2861 +3161 1971 2861 +3160 1973 2861 +3160 1975 2860 +3160 1977 2860 +3159 1980 2859 +3159 1984 2858 +3158 1990 2857 +3157 1997 2855 +3155 2006 2853 +3153 2019 2850 +3150 2035 2845 +3146 2056 2839 +3141 2082 2832 +3133 2115 2821 +3124 2156 2806 +3110 2205 2785 +3092 2263 2756 +3066 2331 2714 +3028 2409 2651 +2973 2495 2550 +2887 2590 2365 +2737 2692 1862 +2404 2800 0 +0 2914 0 +0 3031 0 +0 3152 0 +0 3276 0 +0 3401 0 +0 3528 0 +0 3657 0 +3293 2101 2994 +3293 2101 2994 +3293 2102 2993 +3293 2103 2993 +3293 2104 2993 +3292 2106 2992 +3292 2109 2992 +3291 2112 2991 +3291 2116 2990 +3290 2121 2989 +3289 2129 2987 +3287 2138 2985 +3285 2151 2982 +3282 2167 2977 +3278 2187 2971 +3273 2214 2963 +3266 2247 2953 +3256 2287 2938 +3242 2337 2917 +3224 2395 2888 +3198 2463 2846 +3160 2541 2783 +3105 2627 2681 +3019 2722 2497 +2870 2824 1993 +2536 2932 0 +0 3046 0 +0 3163 0 +0 3284 0 +0 3408 0 +0 3533 0 +0 3660 0 +3425 2232 3126 +3425 2232 3126 +3425 2233 3126 +3425 2234 3125 +3425 2235 3125 +3425 2236 3125 +3424 2238 3124 +3424 2240 3124 +3424 2243 3123 +3423 2248 3122 +3422 2253 3121 +3421 2260 3119 +3419 2270 3117 +3417 2282 3114 +3414 2299 3109 +3410 2319 3103 +3405 2346 3095 +3398 2379 3085 +3388 2419 3070 +3375 2469 3049 +3356 2527 3020 +3330 2595 2978 +3293 2673 2915 +3237 2759 2813 +3151 2854 2629 +3002 2956 2124 +2668 3064 0 +0 3178 0 +0 3295 0 +0 3416 0 +0 3540 0 +0 3665 0 +3557 2364 3258 +3557 2364 3258 +3557 2364 3258 +3557 2365 3258 +3557 2366 3257 +3557 2367 3257 +3557 2368 3257 +3557 2370 3256 +3556 2372 3256 +3556 2375 3255 +3555 2379 3254 +3554 2385 3253 +3553 2392 3251 +3551 2402 3249 +3549 2414 3246 +3546 2430 3241 +3542 2451 3235 +3537 2477 3228 +3530 2510 3217 +3520 2551 3202 +3507 2600 3181 +3488 2659 3152 +3462 2727 3110 +3425 2805 3047 +3369 2891 2945 +3283 2986 2761 +3134 3088 2256 +2800 3196 0 +0 3310 0 +0 3427 0 +0 3548 0 +0 3672 0 +3690 2495 3390 +3690 2495 3390 +3690 2496 3390 +3689 2496 3390 +3689 2497 3390 +3689 2497 3389 +3689 2498 3389 +3689 2500 3389 +3689 2502 3389 +3688 2504 3388 +3688 2507 3387 +3687 2511 3386 +3686 2517 3385 +3685 2524 3383 +3683 2534 3381 +3681 2546 3378 +3678 2562 3373 +3674 2583 3367 +3669 2609 3360 +3662 2642 3349 +3652 2683 3334 +3639 2732 3313 +3620 2791 3284 +3594 2859 3242 +3557 2937 3179 +3502 3023 3077 +3415 3118 2893 +3266 3220 2387 +2933 3328 0 +0 3442 0 +0 3559 0 +0 3680 0 +3822 2627 3522 +3822 2627 3522 +3822 2627 3522 +3822 2628 3522 +3822 2628 3522 +3821 2629 3522 +3821 2629 3522 +3821 2630 3521 +3821 2632 3521 +3821 2634 3521 +3820 2636 3520 +3820 2639 3519 +3819 2643 3518 +3818 2649 3517 +3817 2656 3515 +3815 2666 3513 +3813 2678 3510 +3810 2694 3505 +3807 2715 3500 +3801 2741 3492 +3794 2774 3481 +3784 2815 3466 +3771 2864 3445 +3752 2923 3416 +3726 2991 3374 +3689 3069 3311 +3634 3155 3209 +3547 3250 3025 +3398 3352 2519 +3065 3460 0 +0 3574 0 +0 3691 0 +3954 2759 3654 +3954 2759 3654 +3954 2759 3654 +3954 2759 3654 +3954 2760 3654 +3954 2760 3654 +3954 2761 3654 +3953 2761 3654 +3953 2762 3653 +3953 2764 3653 +3953 2766 3653 +3952 2768 3652 +3952 2771 3651 +3951 2775 3650 +3950 2781 3649 +3949 2788 3647 +3948 2798 3645 +3945 2810 3642 +3943 2826 3637 +3939 2847 3632 +3933 2873 3624 +3926 2906 3613 +3916 2947 3598 +3903 2996 3577 +3884 3055 3548 +3858 3123 3506 +3821 3201 3443 +3766 3287 3341 +3679 3382 3157 +3530 3484 2651 +3197 3592 0 +0 3706 0 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2892 3786 +4086 2892 3786 +4086 2893 3786 +4086 2893 3786 +4085 2894 3785 +4085 2896 3785 +4085 2898 3785 +4085 2900 3784 +4084 2903 3783 +4083 2907 3782 +4083 2913 3781 +4081 2920 3779 +4080 2930 3777 +4078 2942 3774 +4075 2958 3769 +4071 2979 3764 +4065 3005 3756 +4058 3038 3745 +4049 3079 3730 +4035 3129 3709 +4017 3187 3680 +3991 3255 3638 +3953 3333 3575 +3898 3419 3473 +3811 3514 3289 +3662 3616 2783 +3329 3725 0 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3024 3918 +4095 3024 3918 +4095 3025 3918 +4095 3025 3918 +4095 3026 3918 +4095 3028 3917 +4095 3030 3917 +4095 3032 3916 +4095 3035 3916 +4095 3039 3915 +4095 3045 3913 +4095 3052 3911 +4095 3062 3909 +4095 3074 3906 +4095 3090 3902 +4095 3111 3896 +4095 3137 3888 +4095 3171 3877 +4095 3211 3862 +4095 3261 3842 +4095 3319 3812 +4095 3387 3770 +4085 3465 3707 +4030 3551 3605 +3944 3646 3421 +3794 3748 2915 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3156 4050 +4095 3156 4050 +4095 3157 4050 +4095 3158 4050 +4095 3159 4050 +4095 3160 4049 +4095 3162 4049 +4095 3164 4048 +4095 3167 4048 +4095 3171 4047 +4095 3177 4045 +4095 3184 4044 +4095 3194 4041 +4095 3206 4038 +4095 3222 4034 +4095 3243 4028 +4095 3270 4020 +4095 3303 4009 +4095 3343 3994 +4095 3393 3974 +4095 3451 3944 +4095 3519 3902 +4095 3597 3839 +4095 3684 3738 +4076 3778 3553 +0 0 36 +0 24 0 +0 91 0 +0 168 0 +0 254 0 +0 348 0 +0 449 0 +0 557 0 +0 669 0 +0 787 0 +0 907 0 +0 1031 0 +0 1156 0 +0 1283 0 +0 1411 0 +0 1541 0 +0 1671 0 +0 1801 0 +0 1932 0 +0 2063 0 +0 2195 0 +0 2326 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2853 0 +0 2985 0 +0 3117 0 +0 3249 0 +0 3382 0 +0 3514 0 +0 3646 0 +67 0 149 +0 42 77 +0 107 0 +0 181 0 +0 264 0 +0 356 0 +0 456 0 +0 562 0 +0 674 0 +0 790 0 +0 910 0 +0 1033 0 +0 1158 0 +0 1284 0 +0 1412 0 +0 1541 0 +0 1671 0 +0 1801 0 +0 1932 0 +0 2063 0 +0 2195 0 +0 2326 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2853 0 +0 2985 0 +0 3117 0 +0 3249 0 +0 3382 0 +0 3514 0 +0 3646 0 +303 13 267 +236 65 212 +127 127 127 +0 198 0 +0 279 0 +0 368 0 +0 465 0 +0 570 0 +0 680 0 +0 795 0 +0 913 0 +0 1035 0 +0 1160 0 +0 1286 0 +0 1413 0 +0 1542 0 +0 1672 0 +0 1802 0 +0 1933 0 +0 2064 0 +0 2195 0 +0 2326 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2985 0 +0 3117 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +500 45 387 +458 94 346 +394 152 284 +292 220 186 +105 297 8 +0 383 0 +0 478 0 +0 579 0 +0 687 0 +0 801 0 +0 918 0 +0 1039 0 +0 1162 0 +0 1288 0 +0 1415 0 +0 1543 0 +0 1673 0 +0 1803 0 +0 1933 0 +0 2064 0 +0 2195 0 +0 2327 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +676 85 511 +647 130 480 +606 184 434 +545 248 366 +447 321 254 +271 403 43 +0 494 0 +0 592 0 +0 697 0 +0 808 0 +0 924 0 +0 1044 0 +0 1166 0 +0 1291 0 +0 1417 0 +0 1545 0 +0 1674 0 +0 1803 0 +0 1934 0 +0 2064 0 +0 2196 0 +0 2327 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +837 134 636 +818 175 613 +790 224 579 +750 282 531 +690 350 456 +596 428 332 +427 514 85 +12 609 0 +0 711 0 +0 819 0 +0 932 0 +0 1050 0 +0 1171 0 +0 1294 0 +0 1420 0 +0 1547 0 +0 1675 0 +0 1805 0 +0 1935 0 +0 2065 0 +0 2196 0 +0 2327 0 +0 2459 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +991 192 763 +977 228 746 +957 272 721 +930 325 686 +891 387 634 +832 459 554 +740 540 419 +577 630 136 +186 728 0 +0 832 0 +0 943 0 +0 1058 0 +0 1177 0 +0 1299 0 +0 1423 0 +0 1550 0 +0 1677 0 +0 1806 0 +0 1936 0 +0 2066 0 +0 2197 0 +0 2328 0 +0 2459 0 +0 2591 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1138 259 892 +1128 290 878 +1114 329 860 +1095 376 834 +1068 432 798 +1029 497 743 +971 572 659 +880 657 514 +721 749 197 +347 850 0 +0 956 0 +0 1068 0 +0 1185 0 +0 1305 0 +0 1428 0 +0 1553 0 +0 1680 0 +0 1808 0 +0 1937 0 +0 2067 0 +0 2198 0 +0 2328 0 +0 2460 0 +0 2591 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1281 336 1021 +1274 362 1011 +1264 395 997 +1250 436 978 +1231 486 952 +1204 544 914 +1166 613 858 +1109 690 770 +1019 777 616 +862 872 267 +499 974 0 +0 1082 0 +0 1196 0 +0 1314 0 +0 1435 0 +0 1558 0 +0 1684 0 +0 1811 0 +0 1939 0 +0 2069 0 +0 2199 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1421 422 1151 +1416 444 1143 +1408 472 1133 +1398 506 1119 +1385 549 1100 +1366 601 1073 +1339 661 1034 +1301 732 976 +1245 811 885 +1156 900 725 +1001 997 346 +646 1100 0 +0 1210 0 +0 1324 0 +0 1443 0 +0 1565 0 +0 1689 0 +0 1815 0 +0 1942 0 +0 2071 0 +0 2200 0 +0 2330 0 +0 2461 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1559 516 1281 +1555 534 1276 +1550 557 1268 +1543 586 1258 +1533 622 1244 +1519 666 1224 +1500 719 1197 +1474 782 1157 +1436 854 1098 +1380 935 1004 +1291 1025 838 +1138 1123 434 +789 1228 0 +0 1339 0 +0 1454 0 +0 1573 0 +0 1695 0 +0 1820 0 +0 1946 0 +0 2074 0 +0 2202 0 +0 2332 0 +0 2462 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1696 617 1412 +1693 632 1408 +1689 651 1402 +1683 674 1395 +1676 704 1384 +1666 741 1370 +1653 787 1350 +1634 841 1322 +1608 905 1282 +1570 978 1222 +1514 1061 1126 +1426 1152 956 +1274 1251 531 +929 1357 0 +0 1468 0 +0 1584 0 +0 1703 0 +0 1826 0 +0 1951 0 +0 2077 0 +0 2205 0 +0 2334 0 +0 2464 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +1831 725 1543 +1829 737 1540 +1826 752 1536 +1822 771 1530 +1817 795 1523 +1809 826 1512 +1800 864 1498 +1786 910 1478 +1767 965 1449 +1741 1030 1409 +1703 1105 1348 +1648 1188 1251 +1560 1280 1077 +1409 1380 634 +1067 1486 0 +0 1598 0 +0 1714 0 +0 1834 0 +0 1957 0 +0 2082 0 +0 2209 0 +0 2337 0 +0 2466 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +1965 838 1675 +1964 847 1672 +1962 859 1669 +1959 874 1665 +1955 894 1659 +1949 918 1652 +1942 950 1641 +1932 988 1626 +1919 1035 1606 +1900 1092 1578 +1874 1157 1537 +1837 1232 1475 +1781 1317 1377 +1694 1409 1201 +1543 1510 744 +1203 1617 0 +0 1729 0 +0 1845 0 +0 1966 0 +0 2089 0 +0 2214 0 +0 2341 0 +0 2469 0 +0 2598 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +2099 956 1806 +2098 963 1805 +2097 972 1802 +2094 983 1799 +2091 999 1795 +2087 1019 1789 +2082 1044 1781 +2075 1076 1771 +2065 1115 1756 +2052 1162 1736 +2033 1219 1707 +2007 1285 1666 +1969 1361 1604 +1914 1446 1505 +1827 1539 1326 +1676 1640 858 +1338 1747 0 +0 1860 0 +0 1977 0 +0 2097 0 +0 2220 0 +0 2345 0 +0 2472 0 +0 2601 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +2233 1076 1938 +2232 1082 1937 +2231 1089 1935 +2229 1098 1933 +2227 1110 1929 +2224 1125 1925 +2220 1146 1919 +2215 1171 1912 +2208 1203 1901 +2198 1243 1886 +2184 1291 1866 +2166 1348 1837 +2140 1415 1796 +2102 1491 1733 +2047 1576 1634 +1960 1670 1454 +1810 1771 976 +1473 1878 0 +0 1991 0 +0 2108 0 +0 2229 0 +0 2352 0 +0 2477 0 +0 2604 0 +0 2732 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +2366 1200 2070 +2365 1204 2069 +2364 1209 2068 +2363 1216 2066 +2361 1226 2063 +2359 1238 2060 +2356 1253 2056 +2352 1274 2050 +2347 1299 2042 +2340 1332 2032 +2330 1371 2017 +2317 1420 1997 +2298 1477 1968 +2272 1544 1926 +2235 1621 1863 +2179 1707 1763 +2092 1801 1582 +1943 1902 1098 +1607 2010 0 +0 2123 0 +0 2240 0 +0 2360 0 +0 2484 0 +0 2609 0 +0 2736 0 +0 2864 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +2499 1325 2202 +2498 1328 2201 +2498 1332 2200 +2497 1338 2199 +2495 1345 2197 +2494 1354 2195 +2492 1367 2191 +2489 1382 2187 +2485 1403 2181 +2480 1429 2174 +2472 1461 2163 +2463 1501 2148 +2449 1550 2128 +2431 1608 2099 +2404 1675 2057 +2367 1752 1994 +2312 1838 1894 +2225 1932 1711 +2075 2033 1222 +1740 2141 0 +0 2254 0 +0 2371 0 +0 2492 0 +0 2616 0 +0 2741 0 +0 2868 0 +0 2996 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +2631 1452 2334 +2631 1455 2333 +2630 1458 2332 +2630 1462 2331 +2629 1467 2330 +2628 1474 2328 +2626 1484 2326 +2624 1496 2323 +2621 1512 2319 +2617 1533 2313 +2612 1559 2305 +2605 1591 2294 +2595 1631 2279 +2581 1680 2259 +2563 1738 2230 +2537 1806 2188 +2499 1883 2125 +2444 1969 2024 +2357 2063 1842 +2208 2165 1348 +1873 2273 0 +0 2386 0 +0 2503 0 +0 2624 0 +0 2748 0 +0 2873 0 +0 3000 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3518 0 +0 3649 0 +2764 1581 2466 +2764 1582 2465 +2763 1585 2465 +2763 1588 2464 +2762 1592 2463 +2761 1597 2462 +2760 1605 2460 +2758 1614 2458 +2756 1626 2454 +2753 1642 2450 +2749 1663 2444 +2744 1689 2436 +2737 1722 2426 +2727 1762 2411 +2714 1811 2390 +2695 1869 2361 +2669 1937 2319 +2632 2014 2256 +2576 2100 2155 +2490 2195 1972 +2340 2297 1475 +2006 2405 0 +0 2518 0 +0 2635 0 +0 2756 0 +0 2880 0 +0 3005 0 +0 3132 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3650 0 +2896 1710 2598 +2896 1711 2597 +2896 1713 2597 +2895 1715 2596 +2895 1718 2596 +2894 1723 2595 +2893 1728 2593 +2892 1735 2592 +2891 1745 2589 +2888 1757 2586 +2885 1773 2582 +2882 1794 2576 +2876 1820 2568 +2869 1853 2557 +2859 1893 2542 +2846 1942 2522 +2827 2001 2493 +2801 2068 2451 +2764 2146 2388 +2709 2232 2287 +2622 2326 2103 +2473 2428 1604 +2139 2536 0 +0 2650 0 +0 2767 0 +0 2888 0 +0 3012 0 +0 3137 0 +0 3264 0 +0 3393 0 +0 3522 0 +0 3652 0 +3029 1840 2730 +3028 1841 2729 +3028 1842 2729 +3028 1844 2729 +3028 1846 2728 +3027 1849 2727 +3026 1854 2726 +3026 1859 2725 +3024 1866 2723 +3023 1876 2721 +3021 1888 2718 +3018 1904 2714 +3014 1925 2708 +3008 1951 2700 +3001 1984 2689 +2992 2025 2674 +2978 2074 2654 +2960 2132 2625 +2933 2200 2582 +2896 2277 2519 +2841 2364 2418 +2754 2458 2234 +2605 2560 1733 +2271 2668 0 +0 2782 0 +0 2899 0 +0 3020 0 +0 3144 0 +0 3269 0 +0 3396 0 +0 3525 0 +0 3654 0 +3161 1970 2862 +3161 1971 2862 +3161 1972 2861 +3160 1973 2861 +3160 1975 2861 +3160 1978 2860 +3159 1981 2859 +3159 1985 2858 +3158 1990 2857 +3156 1998 2855 +3155 2007 2853 +3153 2020 2850 +3150 2036 2845 +3146 2056 2840 +3141 2083 2832 +3133 2115 2821 +3124 2156 2806 +3110 2205 2785 +3092 2264 2756 +3066 2332 2714 +3028 2409 2651 +2973 2495 2550 +2887 2590 2366 +2737 2692 1864 +2403 2800 0 +0 2914 0 +0 3031 0 +0 3152 0 +0 3276 0 +0 3401 0 +0 3528 0 +0 3657 0 +3293 2101 2994 +3293 2102 2994 +3293 2103 2993 +3293 2104 2993 +3293 2105 2993 +3292 2107 2993 +3292 2109 2992 +3291 2112 2991 +3291 2116 2990 +3290 2122 2989 +3289 2129 2987 +3287 2139 2985 +3285 2151 2982 +3282 2167 2977 +3278 2188 2972 +3273 2214 2964 +3266 2247 2953 +3256 2288 2938 +3242 2337 2917 +3224 2395 2888 +3198 2463 2846 +3160 2541 2783 +3105 2627 2682 +3019 2722 2497 +2869 2824 1994 +2536 2932 0 +0 3046 0 +0 3163 0 +0 3284 0 +0 3408 0 +0 3533 0 +0 3660 0 +3425 2232 3126 +3425 2233 3126 +3425 2233 3126 +3425 2234 3125 +3425 2235 3125 +3425 2236 3125 +3424 2238 3125 +3424 2241 3124 +3424 2244 3123 +3423 2248 3122 +3422 2253 3121 +3421 2261 3119 +3419 2270 3117 +3417 2283 3114 +3414 2299 3109 +3410 2320 3103 +3405 2346 3096 +3398 2379 3085 +3388 2420 3070 +3375 2469 3049 +3356 2527 3020 +3330 2595 2978 +3293 2673 2915 +3237 2759 2814 +3151 2854 2629 +3002 2956 2125 +2668 3064 0 +0 3178 0 +0 3295 0 +0 3416 0 +0 3540 0 +0 3665 0 +3557 2364 3258 +3557 2364 3258 +3557 2365 3258 +3557 2365 3258 +3557 2366 3257 +3557 2367 3257 +3557 2368 3257 +3557 2370 3257 +3556 2372 3256 +3556 2375 3255 +3555 2380 3254 +3554 2385 3253 +3553 2392 3251 +3551 2402 3249 +3549 2414 3246 +3546 2431 3241 +3542 2451 3235 +3537 2478 3228 +3530 2511 3217 +3520 2551 3202 +3507 2601 3181 +3488 2659 3152 +3462 2727 3110 +3425 2805 3047 +3369 2891 2945 +3283 2986 2761 +3134 3088 2256 +2800 3196 0 +0 3310 0 +0 3427 0 +0 3548 0 +0 3672 0 +3690 2495 3390 +3690 2496 3390 +3690 2496 3390 +3689 2496 3390 +3689 2497 3390 +3689 2498 3389 +3689 2499 3389 +3689 2500 3389 +3689 2502 3389 +3688 2504 3388 +3688 2507 3387 +3687 2511 3386 +3686 2517 3385 +3685 2524 3383 +3683 2534 3381 +3681 2546 3378 +3678 2562 3373 +3674 2583 3368 +3669 2610 3360 +3662 2643 3349 +3652 2683 3334 +3639 2733 3313 +3620 2791 3284 +3594 2859 3242 +3557 2937 3179 +3502 3023 3077 +3415 3118 2893 +3266 3220 2388 +2932 3328 0 +0 3442 0 +0 3559 0 +0 3680 0 +3822 2627 3522 +3822 2627 3522 +3822 2628 3522 +3822 2628 3522 +3822 2628 3522 +3821 2629 3522 +3821 2630 3522 +3821 2631 3521 +3821 2632 3521 +3821 2634 3521 +3820 2636 3520 +3820 2639 3519 +3819 2643 3518 +3818 2649 3517 +3817 2656 3515 +3815 2666 3513 +3813 2678 3510 +3810 2694 3505 +3807 2715 3500 +3801 2742 3492 +3794 2775 3481 +3784 2815 3466 +3771 2865 3445 +3752 2923 3416 +3726 2991 3374 +3689 3069 3311 +3634 3155 3209 +3547 3250 3025 +3398 3352 2520 +3065 3460 0 +0 3574 0 +0 3691 0 +3954 2759 3654 +3954 2759 3654 +3954 2759 3654 +3954 2759 3654 +3954 2760 3654 +3954 2760 3654 +3954 2761 3654 +3953 2762 3654 +3953 2763 3653 +3953 2764 3653 +3953 2766 3653 +3952 2768 3652 +3952 2771 3651 +3951 2775 3650 +3950 2781 3649 +3949 2788 3647 +3948 2798 3645 +3945 2810 3642 +3943 2826 3637 +3939 2847 3632 +3933 2873 3624 +3926 2907 3613 +3916 2947 3598 +3903 2997 3577 +3884 3055 3548 +3858 3123 3506 +3821 3201 3443 +3766 3287 3341 +3679 3382 3157 +3530 3484 2651 +3197 3592 0 +0 3706 0 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2892 3786 +4086 2892 3786 +4086 2893 3786 +4086 2894 3786 +4085 2895 3785 +4085 2896 3785 +4085 2898 3785 +4085 2900 3784 +4084 2903 3783 +4083 2907 3782 +4083 2913 3781 +4081 2920 3779 +4080 2930 3777 +4078 2942 3774 +4075 2958 3770 +4071 2979 3764 +4065 3005 3756 +4058 3039 3745 +4049 3079 3730 +4035 3129 3709 +4017 3187 3680 +3991 3255 3638 +3953 3333 3575 +3898 3419 3473 +3811 3514 3289 +3662 3616 2783 +3329 3725 0 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3024 3918 +4095 3024 3918 +4095 3025 3918 +4095 3026 3918 +4095 3027 3918 +4095 3028 3917 +4095 3030 3917 +4095 3032 3916 +4095 3035 3916 +4095 3039 3915 +4095 3045 3913 +4095 3052 3911 +4095 3062 3909 +4095 3074 3906 +4095 3090 3902 +4095 3111 3896 +4095 3138 3888 +4095 3171 3877 +4095 3211 3862 +4095 3261 3842 +4095 3319 3812 +4095 3387 3770 +4085 3465 3707 +4030 3551 3606 +3944 3646 3421 +3794 3748 2915 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3156 4050 +4095 3156 4050 +4095 3156 4050 +4095 3157 4050 +4095 3158 4050 +4095 3159 4050 +4095 3160 4049 +4095 3162 4049 +4095 3164 4048 +4095 3167 4048 +4095 3171 4047 +4095 3177 4045 +4095 3184 4044 +4095 3194 4041 +4095 3206 4038 +4095 3222 4034 +4095 3243 4028 +4095 3270 4020 +4095 3303 4009 +4095 3343 3994 +4095 3393 3974 +4095 3451 3944 +4095 3519 3902 +4095 3597 3839 +4095 3684 3738 +4076 3778 3553 +0 33 135 +0 83 61 +0 142 0 +0 211 0 +0 290 0 +0 377 0 +0 473 0 +0 576 0 +0 684 0 +0 798 0 +0 916 0 +0 1037 0 +0 1161 0 +0 1287 0 +0 1414 0 +0 1543 0 +0 1672 0 +0 1802 0 +0 1933 0 +0 2064 0 +0 2195 0 +0 2327 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +11 50 228 +0 99 168 +0 156 74 +0 223 0 +0 300 0 +0 386 0 +0 480 0 +0 581 0 +0 689 0 +0 802 0 +0 919 0 +0 1039 0 +0 1163 0 +0 1288 0 +0 1415 0 +0 1543 0 +0 1673 0 +0 1803 0 +0 1933 0 +0 2064 0 +0 2195 0 +0 2327 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +271 73 329 +199 119 281 +79 174 209 +0 239 91 +0 313 0 +0 397 0 +0 489 0 +0 588 0 +0 694 0 +0 806 0 +0 922 0 +0 1042 0 +0 1165 0 +0 1290 0 +0 1416 0 +0 1544 0 +0 1673 0 +0 1803 0 +0 1934 0 +0 2064 0 +0 2195 0 +0 2327 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +480 102 436 +435 145 399 +368 197 344 +259 259 259 +54 330 113 +0 411 0 +0 500 0 +0 597 0 +0 702 0 +0 812 0 +0 927 0 +0 1045 0 +0 1167 0 +0 1292 0 +0 1418 0 +0 1546 0 +0 1674 0 +0 1804 0 +0 1934 0 +0 2065 0 +0 2196 0 +0 2327 0 +0 2458 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +662 137 548 +632 177 519 +590 226 478 +526 284 416 +424 352 318 +237 429 140 +0 515 0 +0 610 0 +0 711 0 +0 819 0 +0 933 0 +0 1050 0 +0 1171 0 +0 1294 0 +0 1420 0 +0 1547 0 +0 1675 0 +0 1805 0 +0 1935 0 +0 2065 0 +0 2196 0 +0 2327 0 +0 2459 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +828 181 665 +808 217 643 +779 262 612 +738 316 566 +677 380 498 +579 453 386 +403 535 175 +0 626 0 +0 724 0 +0 830 0 +0 941 0 +0 1056 0 +0 1176 0 +0 1298 0 +0 1423 0 +0 1549 0 +0 1677 0 +0 1806 0 +0 1936 0 +0 2066 0 +0 2197 0 +0 2328 0 +0 2459 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +984 233 785 +970 266 768 +950 307 745 +922 356 712 +882 414 663 +822 482 588 +728 560 464 +559 646 217 +144 741 0 +0 843 0 +0 951 0 +0 1064 0 +0 1182 0 +0 1303 0 +0 1426 0 +0 1552 0 +0 1679 0 +0 1807 0 +0 1937 0 +0 2067 0 +0 2197 0 +0 2328 0 +0 2459 0 +0 2591 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1133 295 908 +1123 324 895 +1109 360 878 +1089 404 853 +1062 457 818 +1023 519 766 +964 591 686 +872 672 551 +709 762 268 +318 860 0 +0 964 0 +0 1075 0 +0 1190 0 +0 1309 0 +0 1431 0 +0 1555 0 +0 1682 0 +0 1809 0 +0 1938 0 +0 2068 0 +0 2198 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1277 366 1033 +1270 391 1024 +1260 422 1010 +1246 461 992 +1227 508 967 +1200 564 930 +1161 629 876 +1103 705 791 +1013 789 646 +853 882 329 +479 982 0 +0 1088 0 +0 1201 0 +0 1317 0 +0 1437 0 +0 1560 0 +0 1685 0 +0 1812 0 +0 1940 0 +0 2069 0 +0 2199 0 +0 2330 0 +0 2460 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1418 447 1160 +1413 468 1153 +1406 494 1143 +1396 528 1129 +1382 568 1111 +1363 618 1084 +1336 677 1046 +1298 745 990 +1241 822 902 +1151 909 748 +994 1004 399 +631 1106 0 +0 1214 0 +0 1328 0 +0 1446 0 +0 1567 0 +0 1690 0 +0 1816 0 +0 1943 0 +0 2072 0 +0 2201 0 +0 2331 0 +0 2461 0 +0 2592 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1557 537 1288 +1553 554 1283 +1548 576 1275 +1540 604 1265 +1531 639 1251 +1517 681 1232 +1498 733 1205 +1471 793 1166 +1433 864 1108 +1377 944 1017 +1288 1032 857 +1133 1129 478 +778 1232 0 +0 1342 0 +0 1456 0 +0 1575 0 +0 1697 0 +0 1821 0 +0 1947 0 +0 2074 0 +0 2203 0 +0 2332 0 +0 2463 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1694 634 1417 +1691 648 1413 +1687 666 1408 +1682 689 1400 +1675 718 1390 +1665 754 1376 +1651 798 1356 +1632 851 1329 +1606 914 1289 +1568 986 1230 +1512 1067 1136 +1424 1157 970 +1270 1255 567 +921 1360 0 +0 1471 0 +0 1586 0 +0 1705 0 +0 1827 0 +0 1952 0 +0 2078 0 +0 2206 0 +0 2334 0 +0 2464 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +1830 738 1547 +1828 750 1544 +1825 764 1540 +1821 783 1534 +1815 806 1527 +1808 836 1516 +1798 873 1502 +1785 919 1482 +1766 973 1454 +1740 1037 1414 +1702 1110 1354 +1646 1193 1258 +1558 1284 1088 +1406 1383 663 +1061 1489 0 +0 1600 0 +0 1716 0 +0 1836 0 +0 1958 0 +0 2083 0 +0 2209 0 +0 2337 0 +0 2466 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +1965 849 1678 +1963 857 1675 +1961 869 1672 +1958 884 1668 +1954 903 1662 +1949 927 1655 +1941 958 1644 +1932 996 1630 +1918 1042 1610 +1899 1097 1582 +1873 1162 1541 +1835 1237 1480 +1780 1320 1383 +1692 1412 1209 +1541 1512 766 +1199 1618 0 +0 1730 0 +0 1847 0 +0 1966 0 +0 2089 0 +0 2214 0 +0 2341 0 +0 2469 0 +0 2598 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +2099 964 1809 +2098 970 1807 +2096 979 1804 +2094 991 1801 +2091 1006 1797 +2087 1026 1791 +2082 1051 1784 +2074 1082 1773 +2065 1120 1759 +2051 1167 1738 +2032 1224 1710 +2006 1289 1669 +1969 1364 1607 +1913 1449 1509 +1826 1542 1333 +1675 1642 876 +1335 1749 0 +0 1861 0 +0 1978 0 +0 2098 0 +0 2221 0 +0 2346 0 +0 2473 0 +0 2601 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +2232 1083 1940 +2231 1088 1938 +2230 1095 1937 +2229 1104 1934 +2226 1116 1931 +2224 1131 1927 +2220 1151 1921 +2214 1176 1913 +2207 1208 1903 +2197 1247 1888 +2184 1294 1868 +2165 1351 1839 +2139 1417 1798 +2101 1493 1736 +2046 1578 1637 +1959 1671 1459 +1809 1772 990 +1470 1879 0 +0 1992 0 +0 2109 0 +0 2229 0 +0 2352 0 +0 2478 0 +0 2604 0 +0 2733 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +2366 1204 2071 +2365 1208 2070 +2364 1214 2069 +2363 1221 2067 +2361 1230 2065 +2359 1242 2062 +2356 1258 2057 +2352 1278 2052 +2347 1303 2044 +2340 1335 2033 +2330 1375 2018 +2316 1423 1998 +2298 1480 1969 +2272 1547 1928 +2234 1623 1865 +2179 1708 1766 +2092 1802 1586 +1942 1903 1108 +1605 2010 0 +0 2123 0 +0 2240 0 +0 2361 0 +0 2484 0 +0 2609 0 +0 2736 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +2498 1329 2203 +2498 1332 2202 +2497 1336 2201 +2496 1341 2200 +2495 1348 2198 +2494 1358 2196 +2491 1370 2192 +2488 1385 2188 +2485 1406 2182 +2479 1431 2175 +2472 1464 2164 +2462 1504 2149 +2449 1552 2129 +2430 1609 2100 +2404 1677 2058 +2367 1753 1995 +2311 1839 1896 +2225 1933 1714 +2075 2034 1230 +1739 2142 0 +0 2255 0 +0 2372 0 +0 2492 0 +0 2616 0 +0 2741 0 +0 2868 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +2631 1455 2334 +2631 1457 2334 +2630 1460 2333 +2630 1464 2332 +2629 1470 2331 +2628 1477 2329 +2626 1486 2327 +2624 1499 2324 +2621 1514 2319 +2617 1535 2313 +2612 1561 2306 +2604 1593 2295 +2595 1633 2280 +2581 1682 2260 +2563 1740 2231 +2537 1807 2189 +2499 1884 2126 +2444 1970 2026 +2357 2064 1844 +2207 2165 1354 +1872 2273 0 +0 2386 0 +0 2504 0 +0 2624 0 +0 2748 0 +0 2873 0 +0 3000 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3518 0 +0 3649 0 +2764 1583 2466 +2763 1584 2466 +2763 1587 2465 +2763 1590 2464 +2762 1594 2464 +2761 1599 2462 +2760 1607 2460 +2758 1616 2458 +2756 1628 2455 +2753 1644 2451 +2749 1665 2445 +2744 1691 2437 +2737 1723 2426 +2727 1764 2411 +2714 1812 2391 +2695 1870 2362 +2669 1938 2320 +2631 2015 2257 +2576 2101 2156 +2490 2195 1974 +2340 2297 1480 +2005 2405 0 +0 2518 0 +0 2635 0 +0 2756 0 +0 2880 0 +0 3005 0 +0 3132 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3650 0 +2896 1711 2598 +2896 1713 2598 +2896 1714 2597 +2895 1717 2597 +2895 1720 2596 +2894 1724 2595 +2893 1730 2594 +2892 1737 2592 +2890 1746 2590 +2888 1759 2586 +2885 1775 2582 +2881 1795 2576 +2876 1821 2568 +2869 1854 2558 +2859 1894 2543 +2846 1943 2522 +2827 2001 2493 +2801 2069 2451 +2764 2146 2388 +2708 2232 2288 +2622 2327 2104 +2472 2429 1608 +2138 2537 0 +0 2650 0 +0 2767 0 +0 2888 0 +0 3012 0 +0 3137 0 +0 3264 0 +0 3393 0 +0 3522 0 +0 3652 0 +3029 1841 2730 +3028 1842 2730 +3028 1843 2729 +3028 1845 2729 +3028 1847 2728 +3027 1851 2728 +3026 1855 2727 +3025 1860 2725 +3024 1867 2724 +3023 1877 2721 +3020 1889 2718 +3018 1905 2714 +3014 1926 2708 +3008 1952 2700 +3001 1985 2689 +2991 2025 2675 +2978 2074 2654 +2959 2133 2625 +2933 2200 2583 +2896 2278 2520 +2841 2364 2419 +2754 2459 2235 +2605 2560 1736 +2271 2668 0 +0 2782 0 +0 2899 0 +0 3020 0 +0 3144 0 +0 3269 0 +0 3396 0 +0 3525 0 +0 3654 0 +3161 1971 2862 +3161 1972 2862 +3161 1973 2862 +3160 1974 2861 +3160 1976 2861 +3160 1978 2860 +3159 1981 2860 +3159 1986 2859 +3158 1991 2857 +3156 1998 2856 +3155 2008 2853 +3153 2020 2850 +3150 2036 2846 +3146 2057 2840 +3141 2083 2832 +3133 2116 2821 +3124 2157 2806 +3110 2206 2786 +3092 2264 2757 +3066 2332 2715 +3028 2409 2651 +2973 2496 2550 +2886 2590 2366 +2737 2692 1866 +2403 2800 0 +0 2914 0 +0 3031 0 +0 3152 0 +0 3276 0 +0 3401 0 +0 3528 0 +0 3657 0 +3293 2102 2994 +3293 2102 2994 +3293 2103 2994 +3293 2104 2993 +3292 2105 2993 +3292 2107 2993 +3292 2110 2992 +3291 2113 2991 +3291 2117 2990 +3290 2122 2989 +3289 2130 2987 +3287 2139 2985 +3285 2152 2982 +3282 2168 2978 +3278 2188 2972 +3273 2215 2964 +3266 2248 2953 +3256 2288 2938 +3242 2337 2918 +3224 2396 2888 +3198 2464 2846 +3160 2541 2783 +3105 2628 2682 +3019 2722 2498 +2869 2824 1996 +2536 2932 0 +0 3046 0 +0 3163 0 +0 3284 0 +0 3408 0 +0 3533 0 +0 3660 0 +3425 2233 3126 +3425 2233 3126 +3425 2234 3126 +3425 2235 3126 +3425 2236 3125 +3425 2237 3125 +3424 2239 3125 +3424 2241 3124 +3423 2244 3123 +3423 2248 3122 +3422 2254 3121 +3421 2261 3119 +3419 2271 3117 +3417 2283 3114 +3414 2299 3109 +3410 2320 3104 +3405 2346 3096 +3398 2379 3085 +3388 2420 3070 +3375 2469 3049 +3356 2527 3020 +3330 2595 2978 +3293 2673 2915 +3237 2759 2814 +3151 2854 2629 +3002 2956 2126 +2668 3064 0 +0 3178 0 +0 3295 0 +0 3416 0 +0 3540 0 +0 3665 0 +3557 2364 3258 +3557 2365 3258 +3557 2365 3258 +3557 2365 3258 +3557 2366 3258 +3557 2367 3257 +3557 2369 3257 +3556 2370 3257 +3556 2373 3256 +3556 2376 3255 +3555 2380 3254 +3554 2386 3253 +3553 2393 3251 +3551 2402 3249 +3549 2415 3246 +3546 2431 3241 +3542 2452 3236 +3537 2478 3228 +3530 2511 3217 +3520 2552 3202 +3507 2601 3181 +3488 2659 3152 +3462 2727 3110 +3425 2805 3047 +3369 2891 2946 +3283 2986 2761 +3134 3088 2257 +2800 3196 0 +0 3310 0 +0 3427 0 +0 3548 0 +0 3672 0 +3690 2496 3390 +3690 2496 3390 +3690 2496 3390 +3689 2497 3390 +3689 2497 3390 +3689 2498 3390 +3689 2499 3389 +3689 2500 3389 +3689 2502 3389 +3688 2504 3388 +3688 2508 3387 +3687 2512 3386 +3686 2517 3385 +3685 2525 3383 +3683 2534 3381 +3681 2547 3378 +3678 2563 3373 +3674 2583 3368 +3669 2610 3360 +3662 2643 3349 +3652 2683 3334 +3639 2733 3313 +3620 2791 3284 +3594 2859 3242 +3557 2937 3179 +3501 3023 3078 +3415 3118 2893 +3266 3220 2389 +2932 3328 0 +0 3442 0 +0 3559 0 +0 3680 0 +3822 2627 3522 +3822 2628 3522 +3822 2628 3522 +3822 2628 3522 +3822 2628 3522 +3821 2629 3522 +3821 2630 3522 +3821 2631 3521 +3821 2632 3521 +3821 2634 3521 +3820 2636 3520 +3820 2639 3519 +3819 2644 3518 +3818 2649 3517 +3817 2656 3515 +3815 2666 3513 +3813 2678 3510 +3810 2695 3505 +3806 2715 3500 +3801 2742 3492 +3794 2775 3481 +3784 2815 3466 +3771 2865 3445 +3752 2923 3416 +3726 2991 3374 +3689 3069 3311 +3634 3155 3210 +3547 3250 3025 +3398 3352 2520 +3065 3460 0 +0 3574 0 +0 3691 0 +3954 2759 3654 +3954 2759 3654 +3954 2759 3654 +3954 2760 3654 +3954 2760 3654 +3954 2760 3654 +3954 2761 3654 +3953 2762 3654 +3953 2763 3653 +3953 2764 3653 +3953 2766 3653 +3952 2768 3652 +3952 2771 3651 +3951 2775 3650 +3950 2781 3649 +3949 2788 3647 +3948 2798 3645 +3945 2810 3642 +3943 2826 3637 +3939 2847 3632 +3933 2874 3624 +3926 2907 3613 +3916 2947 3598 +3903 2997 3577 +3884 3055 3548 +3858 3123 3506 +3821 3201 3443 +3766 3287 3342 +3679 3382 3157 +3530 3484 2652 +3197 3593 0 +0 3706 0 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2892 3786 +4086 2892 3786 +4086 2892 3786 +4086 2893 3786 +4086 2894 3786 +4085 2895 3785 +4085 2896 3785 +4085 2898 3785 +4085 2900 3784 +4084 2903 3783 +4083 2907 3782 +4082 2913 3781 +4081 2920 3779 +4080 2930 3777 +4078 2942 3774 +4075 2958 3770 +4071 2979 3764 +4065 3006 3756 +4058 3039 3745 +4048 3079 3730 +4035 3129 3710 +4017 3187 3680 +3990 3255 3638 +3953 3333 3575 +3898 3419 3474 +3811 3514 3289 +3662 3616 2783 +3329 3725 0 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3024 3918 +4095 3024 3918 +4095 3024 3918 +4095 3025 3918 +4095 3026 3918 +4095 3027 3918 +4095 3028 3917 +4095 3030 3917 +4095 3032 3916 +4095 3035 3916 +4095 3039 3915 +4095 3045 3913 +4095 3052 3911 +4095 3062 3909 +4095 3074 3906 +4095 3090 3902 +4095 3111 3896 +4095 3138 3888 +4095 3171 3877 +4095 3211 3862 +4095 3261 3842 +4095 3319 3812 +4095 3387 3770 +4085 3465 3707 +4030 3552 3606 +3944 3646 3421 +3794 3748 2915 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3156 4050 +4095 3156 4050 +4095 3156 4050 +4095 3157 4050 +4095 3158 4050 +4095 3159 4050 +4095 3160 4049 +4095 3162 4049 +4095 3164 4048 +4095 3167 4048 +4095 3171 4047 +4095 3177 4045 +4095 3184 4044 +4095 3194 4041 +4095 3206 4038 +4095 3222 4034 +4095 3243 4028 +4095 3270 4020 +4095 3303 4009 +4095 3343 3994 +4095 3393 3974 +4095 3451 3944 +4095 3519 3902 +4095 3597 3839 +4095 3684 3738 +4076 3778 3553 +0 108 241 +0 151 183 +0 203 91 +0 264 0 +0 334 0 +0 414 0 +0 503 0 +0 600 0 +0 704 0 +0 813 0 +0 928 0 +0 1046 0 +0 1168 0 +0 1292 0 +0 1418 0 +0 1546 0 +0 1674 0 +0 1804 0 +0 1934 0 +0 2065 0 +0 2196 0 +0 2327 0 +0 2459 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +0 123 316 +0 165 267 +0 215 193 +0 274 69 +0 343 0 +0 422 0 +0 509 0 +0 605 0 +0 708 0 +0 816 0 +0 930 0 +0 1048 0 +0 1170 0 +0 1293 0 +0 1419 0 +0 1546 0 +0 1675 0 +0 1804 0 +0 1934 0 +0 2065 0 +0 2196 0 +0 2327 0 +0 2459 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +225 143 400 +144 182 360 +6 231 300 +0 288 206 +0 355 37 +0 432 0 +0 518 0 +0 612 0 +0 713 0 +0 821 0 +0 934 0 +0 1051 0 +0 1171 0 +0 1295 0 +0 1420 0 +0 1547 0 +0 1676 0 +0 1805 0 +0 1935 0 +0 2065 0 +0 2196 0 +0 2327 0 +0 2459 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +451 167 493 +403 205 461 +331 251 413 +211 306 341 +0 371 223 +0 445 0 +0 529 0 +0 621 0 +0 720 0 +0 826 0 +0 938 0 +0 1054 0 +0 1174 0 +0 1297 0 +0 1422 0 +0 1548 0 +0 1676 0 +0 1805 0 +0 1935 0 +0 2066 0 +0 2196 0 +0 2328 0 +0 2459 0 +0 2590 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +643 198 593 +612 234 568 +567 277 531 +500 329 476 +391 391 391 +186 462 245 +0 543 0 +0 632 0 +0 730 0 +0 834 0 +0 944 0 +0 1059 0 +0 1178 0 +0 1299 0 +0 1424 0 +0 1550 0 +0 1678 0 +0 1806 0 +0 1936 0 +0 2066 0 +0 2197 0 +0 2328 0 +0 2459 0 +0 2591 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +815 237 700 +794 269 680 +765 310 651 +722 358 610 +658 417 548 +556 484 450 +369 561 272 +0 647 0 +0 742 0 +0 844 0 +0 952 0 +0 1065 0 +0 1182 0 +0 1303 0 +0 1426 0 +0 1552 0 +0 1679 0 +0 1808 0 +0 1937 0 +0 2067 0 +0 2197 0 +0 2328 0 +0 2459 0 +0 2591 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +974 283 813 +960 313 797 +940 350 775 +911 395 744 +870 448 699 +809 512 630 +711 585 518 +535 667 307 +81 758 0 +0 856 0 +0 962 0 +0 1073 0 +0 1188 0 +0 1308 0 +0 1430 0 +0 1555 0 +0 1681 0 +0 1809 0 +0 1938 0 +0 2068 0 +0 2198 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1126 339 929 +1116 365 917 +1102 398 900 +1082 439 877 +1054 488 844 +1014 546 795 +954 614 720 +860 692 596 +691 778 349 +276 873 0 +0 975 0 +0 1083 0 +0 1196 0 +0 1314 0 +0 1435 0 +0 1558 0 +0 1684 0 +0 1811 0 +0 1939 0 +0 2069 0 +0 2199 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1272 404 1049 +1265 427 1040 +1255 456 1027 +1241 492 1010 +1221 536 985 +1194 589 950 +1155 651 898 +1096 723 818 +1004 804 683 +841 894 400 +450 992 0 +0 1096 0 +0 1207 0 +0 1322 0 +0 1441 0 +0 1563 0 +0 1688 0 +0 1814 0 +0 1942 0 +0 2070 0 +0 2200 0 +0 2330 0 +0 2461 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1415 479 1172 +1409 499 1165 +1402 523 1156 +1392 554 1143 +1378 593 1124 +1359 640 1099 +1332 696 1062 +1293 762 1008 +1235 837 923 +1145 921 778 +985 1014 461 +611 1114 0 +0 1221 0 +0 1333 0 +0 1449 0 +0 1569 0 +0 1692 0 +0 1817 0 +0 1944 0 +0 2072 0 +0 2202 0 +0 2331 0 +0 2462 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1555 563 1298 +1551 579 1292 +1545 600 1285 +1538 627 1275 +1528 660 1262 +1514 701 1243 +1495 750 1216 +1468 809 1178 +1430 877 1122 +1373 955 1034 +1283 1041 880 +1127 1136 531 +763 1238 0 +0 1347 0 +0 1460 0 +0 1578 0 +0 1699 0 +0 1822 0 +0 1948 0 +0 2075 0 +0 2204 0 +0 2333 0 +0 2463 0 +0 2593 0 +0 2724 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1692 656 1424 +1689 669 1420 +1685 686 1415 +1680 708 1408 +1673 736 1397 +1663 771 1384 +1649 813 1364 +1630 865 1337 +1604 926 1298 +1565 996 1240 +1509 1076 1149 +1420 1164 989 +1265 1261 610 +910 1365 0 +0 1474 0 +0 1589 0 +0 1707 0 +0 1829 0 +0 1953 0 +0 2079 0 +0 2206 0 +0 2335 0 +0 2464 0 +0 2595 0 +0 2725 0 +0 2856 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +1828 756 1553 +1826 766 1550 +1823 780 1545 +1819 798 1540 +1814 821 1532 +1807 850 1522 +1797 886 1508 +1783 930 1488 +1764 983 1461 +1738 1046 1421 +1700 1118 1362 +1644 1199 1268 +1556 1289 1103 +1402 1387 699 +1053 1492 0 +0 1603 0 +0 1718 0 +0 1837 0 +0 1959 0 +0 2084 0 +0 2210 0 +0 2338 0 +0 2467 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +1964 862 1682 +1962 871 1679 +1960 882 1676 +1957 896 1672 +1953 915 1667 +1948 938 1659 +1940 968 1649 +1930 1006 1634 +1917 1051 1614 +1898 1105 1586 +1872 1169 1546 +1834 1243 1486 +1778 1325 1391 +1690 1416 1220 +1538 1515 795 +1193 1621 0 +0 1732 0 +0 1848 0 +0 1968 0 +0 2090 0 +0 2215 0 +0 2341 0 +0 2469 0 +0 2598 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3646 0 +2098 974 1812 +2097 981 1810 +2095 989 1808 +2093 1001 1804 +2090 1016 1800 +2086 1035 1795 +2081 1059 1787 +2074 1090 1776 +2064 1128 1762 +2050 1174 1742 +2032 1230 1714 +2005 1294 1673 +1968 1369 1612 +1912 1452 1515 +1824 1545 1341 +1673 1644 898 +1331 1751 0 +0 1862 0 +0 1979 0 +0 2099 0 +0 2221 0 +0 2346 0 +0 2473 0 +0 2601 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +2232 1091 1942 +2231 1096 1941 +2230 1103 1939 +2228 1111 1937 +2226 1123 1933 +2223 1138 1929 +2219 1158 1924 +2214 1183 1916 +2206 1214 1905 +2197 1253 1891 +2183 1300 1870 +2165 1356 1842 +2138 1421 1801 +2101 1497 1739 +2045 1581 1641 +1958 1674 1465 +1807 1774 1008 +1467 1881 0 +0 1993 0 +0 2110 0 +0 2230 0 +0 2353 0 +0 2478 0 +0 2605 0 +0 2733 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +2365 1211 2073 +2364 1215 2072 +2364 1220 2071 +2362 1227 2069 +2361 1236 2066 +2359 1248 2063 +2356 1263 2059 +2352 1283 2053 +2346 1308 2046 +2339 1340 2035 +2329 1379 2020 +2316 1427 2000 +2297 1483 1971 +2271 1550 1930 +2234 1625 1868 +2178 1710 1769 +2091 1804 1591 +1941 1904 1122 +1603 2011 0 +0 2124 0 +0 2241 0 +0 2361 0 +0 2484 0 +0 2610 0 +0 2737 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +2498 1334 2204 +2498 1337 2203 +2497 1341 2202 +2496 1346 2201 +2495 1353 2199 +2493 1362 2197 +2491 1374 2194 +2488 1390 2189 +2484 1410 2184 +2479 1435 2176 +2472 1467 2165 +2462 1507 2150 +2449 1555 2130 +2430 1612 2101 +2404 1679 2060 +2366 1755 1997 +2311 1840 1898 +2224 1934 1718 +2074 2035 1241 +1737 2142 0 +0 2255 0 +0 2372 0 +0 2493 0 +0 2616 0 +0 2741 0 +0 2868 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +2631 1459 2335 +2631 1461 2335 +2630 1464 2334 +2629 1468 2333 +2628 1473 2332 +2627 1480 2330 +2626 1490 2328 +2624 1502 2324 +2621 1518 2320 +2617 1538 2314 +2611 1564 2307 +2604 1596 2296 +2594 1636 2281 +2581 1684 2261 +2562 1742 2232 +2536 1809 2190 +2499 1885 2128 +2443 1971 2028 +2357 2065 1846 +2207 2166 1362 +1871 2274 0 +0 2387 0 +0 2504 0 +0 2625 0 +0 2748 0 +0 2873 0 +0 3000 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3518 0 +0 3649 0 +2764 1585 2467 +2763 1587 2466 +2763 1589 2466 +2762 1593 2465 +2762 1597 2464 +2761 1602 2463 +2760 1609 2461 +2758 1618 2459 +2756 1631 2456 +2753 1647 2451 +2749 1667 2446 +2744 1693 2438 +2737 1725 2427 +2727 1765 2412 +2713 1814 2392 +2695 1872 2363 +2669 1939 2321 +2631 2016 2258 +2576 2102 2158 +2489 2196 1976 +2340 2297 1486 +2004 2405 0 +0 2518 0 +0 2636 0 +0 2756 0 +0 2880 0 +0 3005 0 +0 3132 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3650 0 +2896 1713 2599 +2896 1715 2598 +2896 1717 2598 +2895 1719 2597 +2895 1722 2597 +2894 1726 2596 +2893 1731 2594 +2892 1739 2593 +2890 1748 2590 +2888 1760 2587 +2885 1776 2583 +2881 1797 2577 +2876 1823 2569 +2869 1855 2558 +2859 1896 2544 +2846 1944 2523 +2827 2002 2494 +2801 2070 2452 +2764 2147 2389 +2708 2233 2289 +2622 2327 2106 +2472 2429 1612 +2137 2537 0 +0 2650 0 +0 2767 0 +0 2888 0 +0 3012 0 +0 3137 0 +0 3264 0 +0 3393 0 +0 3522 0 +0 3652 0 +3028 1843 2730 +3028 1844 2730 +3028 1845 2730 +3028 1847 2729 +3027 1849 2729 +3027 1852 2728 +3026 1856 2727 +3025 1862 2726 +3024 1869 2724 +3023 1878 2722 +3020 1891 2719 +3017 1907 2714 +3014 1927 2708 +3008 1953 2701 +3001 1986 2690 +2991 2026 2675 +2978 2075 2654 +2959 2133 2625 +2933 2201 2583 +2896 2278 2520 +2840 2364 2420 +2754 2459 2236 +2605 2561 1740 +2270 2669 0 +0 2782 0 +0 2899 0 +0 3020 0 +0 3144 0 +0 3269 0 +0 3396 0 +0 3525 0 +0 3654 0 +3161 1972 2862 +3161 1973 2862 +3160 1974 2862 +3160 1975 2862 +3160 1977 2861 +3160 1980 2861 +3159 1983 2860 +3158 1987 2859 +3158 1992 2858 +3156 1999 2856 +3155 2009 2853 +3153 2021 2850 +3150 2037 2846 +3146 2058 2840 +3140 2084 2832 +3133 2117 2821 +3124 2157 2807 +3110 2206 2786 +3092 2265 2757 +3065 2333 2715 +3028 2410 2652 +2973 2496 2551 +2886 2591 2367 +2737 2692 1868 +2403 2801 0 +0 2914 0 +0 3031 0 +0 3152 0 +0 3276 0 +0 3401 0 +0 3528 0 +0 3657 0 +3293 2103 2994 +3293 2103 2994 +3293 2104 2994 +3293 2105 2994 +3292 2106 2993 +3292 2108 2993 +3292 2110 2992 +3291 2114 2992 +3291 2118 2991 +3290 2123 2989 +3289 2130 2988 +3287 2140 2985 +3285 2152 2982 +3282 2168 2978 +3278 2189 2972 +3273 2215 2964 +3265 2248 2953 +3256 2289 2938 +3242 2338 2918 +3224 2396 2889 +3198 2464 2847 +3160 2541 2784 +3105 2628 2682 +3019 2722 2498 +2869 2824 1998 +2535 2932 0 +0 3046 0 +0 3163 0 +0 3284 0 +0 3408 0 +0 3533 0 +0 3660 0 +3425 2234 3126 +3425 2234 3126 +3425 2235 3126 +3425 2235 3126 +3425 2236 3126 +3425 2238 3125 +3424 2239 3125 +3424 2242 3124 +3423 2245 3124 +3423 2249 3123 +3422 2255 3121 +3421 2262 3119 +3419 2271 3117 +3417 2284 3114 +3414 2300 3110 +3410 2320 3104 +3405 2347 3096 +3398 2380 3085 +3388 2420 3070 +3374 2469 3050 +3356 2528 3021 +3330 2596 2978 +3292 2673 2915 +3237 2760 2814 +3151 2854 2630 +3001 2956 2128 +2668 3064 0 +0 3178 0 +0 3295 0 +0 3416 0 +0 3540 0 +0 3665 0 +3557 2365 3258 +3557 2365 3258 +3557 2365 3258 +3557 2366 3258 +3557 2367 3258 +3557 2368 3257 +3557 2369 3257 +3556 2371 3257 +3556 2373 3256 +3556 2376 3255 +3555 2380 3254 +3554 2386 3253 +3553 2393 3251 +3551 2403 3249 +3549 2415 3246 +3546 2431 3242 +3542 2452 3236 +3537 2478 3228 +3530 2511 3217 +3520 2552 3202 +3507 2601 3182 +3488 2660 3152 +3462 2728 3110 +3425 2805 3047 +3369 2892 2946 +3283 2986 2761 +3134 3088 2258 +2800 3196 0 +0 3310 0 +0 3427 0 +0 3548 0 +0 3672 0 +3690 2496 3390 +3690 2496 3390 +3689 2497 3390 +3689 2497 3390 +3689 2498 3390 +3689 2498 3390 +3689 2499 3389 +3689 2501 3389 +3689 2502 3389 +3688 2505 3388 +3688 2508 3387 +3687 2512 3386 +3686 2518 3385 +3685 2525 3383 +3683 2534 3381 +3681 2547 3378 +3678 2563 3374 +3674 2584 3368 +3669 2610 3360 +3662 2643 3349 +3652 2684 3334 +3639 2733 3314 +3620 2791 3284 +3594 2859 3242 +3557 2937 3179 +3501 3023 3078 +3415 3118 2893 +3266 3220 2389 +2932 3328 0 +0 3442 0 +0 3559 0 +0 3680 0 +3822 2628 3522 +3822 2628 3522 +3822 2628 3522 +3822 2628 3522 +3822 2629 3522 +3821 2629 3522 +3821 2630 3522 +3821 2631 3521 +3821 2632 3521 +3821 2634 3521 +3820 2637 3520 +3820 2640 3519 +3819 2644 3518 +3818 2649 3517 +3817 2657 3515 +3815 2666 3513 +3813 2679 3510 +3810 2695 3506 +3806 2716 3500 +3801 2742 3492 +3794 2775 3481 +3784 2816 3466 +3771 2865 3446 +3752 2923 3416 +3726 2991 3374 +3689 3069 3311 +3634 3155 3210 +3547 3250 3025 +3398 3352 2521 +3064 3460 0 +0 3574 0 +0 3691 0 +3954 2759 3654 +3954 2759 3654 +3954 2760 3654 +3954 2760 3654 +3954 2760 3654 +3954 2761 3654 +3954 2761 3654 +3953 2762 3654 +3953 2763 3653 +3953 2764 3653 +3953 2766 3653 +3952 2768 3652 +3952 2772 3651 +3951 2776 3650 +3950 2781 3649 +3949 2788 3647 +3948 2798 3645 +3945 2811 3642 +3943 2827 3638 +3939 2847 3632 +3933 2874 3624 +3926 2907 3613 +3916 2947 3598 +3903 2997 3578 +3884 3055 3548 +3858 3123 3506 +3821 3201 3443 +3766 3287 3342 +3679 3382 3157 +3530 3484 2652 +3197 3593 0 +0 3706 0 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2891 3786 +4086 2892 3786 +4086 2892 3786 +4086 2892 3786 +4086 2893 3786 +4086 2894 3786 +4085 2895 3786 +4085 2896 3785 +4085 2898 3785 +4085 2900 3784 +4084 2903 3784 +4083 2908 3783 +4082 2913 3781 +4081 2920 3779 +4080 2930 3777 +4078 2942 3774 +4075 2959 3770 +4071 2979 3764 +4065 3006 3756 +4058 3039 3745 +4048 3079 3730 +4035 3129 3710 +4017 3187 3680 +3990 3255 3638 +3953 3333 3575 +3898 3420 3474 +3811 3514 3289 +3662 3616 2784 +3329 3725 0 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3024 3918 +4095 3024 3918 +4095 3024 3918 +4095 3025 3918 +4095 3026 3918 +4095 3027 3918 +4095 3028 3917 +4095 3030 3917 +4095 3032 3916 +4095 3035 3916 +4095 3040 3915 +4095 3045 3913 +4095 3052 3912 +4095 3062 3909 +4095 3074 3906 +4095 3091 3902 +4095 3111 3896 +4095 3138 3888 +4095 3171 3877 +4095 3211 3862 +4095 3261 3842 +4095 3319 3812 +4095 3387 3770 +4085 3465 3707 +4030 3552 3606 +3944 3646 3421 +3794 3748 2916 +4095 3155 4051 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3155 4050 +4095 3156 4050 +4095 3156 4050 +4095 3156 4050 +4095 3157 4050 +4095 3158 4050 +4095 3159 4050 +4095 3160 4049 +4095 3162 4049 +4095 3164 4048 +4095 3167 4048 +4095 3172 4047 +4095 3177 4045 +4095 3184 4044 +4095 3194 4041 +4095 3206 4038 +4095 3223 4034 +4095 3243 4028 +4095 3270 4020 +4095 3303 4009 +4095 3343 3994 +4095 3393 3974 +4095 3451 3945 +4095 3519 3902 +4095 3597 3839 +4095 3684 3738 +4076 3778 3553 +0 193 352 +0 229 307 +0 273 239 +0 326 129 +0 388 0 +0 459 0 +0 540 0 +0 630 0 +0 728 0 +0 833 0 +0 943 0 +0 1058 0 +0 1177 0 +0 1299 0 +0 1423 0 +0 1550 0 +0 1677 0 +0 1806 0 +0 1936 0 +0 2066 0 +0 2197 0 +0 2328 0 +0 2459 0 +0 2591 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +0 205 412 +0 240 373 +0 283 315 +0 335 223 +0 396 62 +0 466 0 +0 546 0 +0 635 0 +0 732 0 +0 836 0 +0 945 0 +0 1060 0 +0 1178 0 +0 1300 0 +0 1424 0 +0 1550 0 +0 1678 0 +0 1807 0 +0 1936 0 +0 2066 0 +0 2197 0 +0 2328 0 +0 2459 0 +0 2591 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +154 222 481 +58 255 448 +0 297 399 +0 347 325 +0 407 201 +0 476 0 +0 554 0 +0 641 0 +0 737 0 +0 840 0 +0 949 0 +0 1062 0 +0 1180 0 +0 1302 0 +0 1425 0 +0 1551 0 +0 1679 0 +0 1807 0 +0 1936 0 +0 2066 0 +0 2197 0 +0 2328 0 +0 2459 0 +0 2591 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +409 242 560 +357 275 532 +276 315 492 +138 363 433 +0 420 338 +0 488 170 +0 564 0 +0 650 0 +0 744 0 +0 845 0 +0 953 0 +0 1066 0 +0 1183 0 +0 1304 0 +0 1427 0 +0 1552 0 +0 1679 0 +0 1808 0 +0 1937 0 +0 2067 0 +0 2197 0 +0 2328 0 +0 2459 0 +0 2591 0 +0 2722 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +616 269 648 +583 299 625 +535 337 593 +463 383 546 +343 438 474 +109 503 355 +0 577 124 +0 661 0 +0 753 0 +0 852 0 +0 958 0 +0 1070 0 +0 1186 0 +0 1306 0 +0 1429 0 +0 1554 0 +0 1681 0 +0 1809 0 +0 1938 0 +0 2067 0 +0 2198 0 +0 2328 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +796 302 744 +775 330 726 +744 366 700 +700 409 663 +632 461 608 +523 523 523 +318 594 377 +0 675 54 +0 764 0 +0 862 0 +0 966 0 +0 1076 0 +0 1191 0 +0 1310 0 +0 1432 0 +0 1556 0 +0 1682 0 +0 1810 0 +0 1938 0 +0 2068 0 +0 2198 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +962 343 847 +947 369 832 +926 401 812 +897 442 784 +854 490 742 +790 549 680 +688 616 582 +501 693 404 +0 780 0 +0 874 0 +0 976 0 +0 1084 0 +0 1197 0 +0 1314 0 +0 1435 0 +0 1559 0 +0 1684 0 +0 1811 0 +0 1940 0 +0 2069 0 +0 2199 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1117 392 956 +1107 415 945 +1092 445 929 +1072 482 907 +1043 527 876 +1002 581 831 +941 644 762 +843 717 650 +667 799 439 +213 890 0 +0 988 0 +0 1094 0 +0 1205 0 +0 1320 0 +0 1440 0 +0 1562 0 +0 1687 0 +0 1813 0 +0 1941 0 +0 2070 0 +0 2200 0 +0 2330 0 +0 2461 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1266 450 1070 +1258 471 1061 +1248 497 1049 +1234 530 1032 +1214 571 1009 +1186 620 976 +1146 678 927 +1086 746 852 +992 824 728 +824 910 481 +408 1005 0 +0 1107 0 +0 1215 0 +0 1328 0 +0 1446 0 +0 1567 0 +0 1690 0 +0 1816 0 +0 1943 0 +0 2072 0 +0 2201 0 +0 2331 0 +0 2461 0 +0 2592 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1410 519 1188 +1405 536 1182 +1397 559 1172 +1387 588 1160 +1373 624 1142 +1353 668 1117 +1326 721 1082 +1287 783 1030 +1228 855 950 +1136 936 815 +973 1026 532 +582 1124 0 +0 1229 0 +0 1339 0 +0 1454 0 +0 1573 0 +0 1695 0 +0 1820 0 +0 1946 0 +0 2074 0 +0 2202 0 +0 2332 0 +0 2462 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1551 596 1310 +1547 611 1305 +1542 631 1297 +1534 655 1288 +1524 687 1275 +1510 725 1256 +1491 772 1231 +1464 828 1194 +1425 894 1140 +1367 969 1055 +1277 1053 910 +1117 1146 593 +743 1246 0 +0 1353 0 +0 1465 0 +0 1581 0 +0 1702 0 +0 1824 0 +0 1950 0 +0 2076 0 +0 2205 0 +0 2334 0 +0 2463 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1690 683 1434 +1687 695 1430 +1683 711 1424 +1677 732 1417 +1670 759 1407 +1660 792 1394 +1646 833 1375 +1627 882 1348 +1600 941 1310 +1562 1009 1254 +1505 1087 1166 +1415 1173 1013 +1259 1268 663 +895 1370 0 +0 1479 0 +0 1592 0 +0 1710 0 +0 1831 0 +0 1954 0 +0 2080 0 +0 2207 0 +0 2336 0 +0 2465 0 +0 2595 0 +0 2726 0 +0 2856 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +1826 777 1560 +1824 788 1557 +1821 801 1552 +1817 818 1547 +1812 840 1540 +1805 868 1530 +1795 903 1516 +1781 945 1496 +1762 997 1469 +1736 1058 1430 +1697 1128 1372 +1641 1208 1281 +1552 1296 1121 +1397 1393 742 +1042 1497 0 +0 1606 0 +0 1721 0 +0 1839 0 +0 1961 0 +0 2085 0 +0 2211 0 +0 2338 0 +0 2467 0 +0 2597 0 +0 2727 0 +0 2857 0 +0 2988 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +1962 880 1687 +1961 888 1685 +1958 898 1682 +1955 912 1678 +1951 930 1672 +1946 953 1664 +1939 982 1654 +1929 1018 1640 +1915 1062 1620 +1897 1116 1593 +1870 1178 1553 +1832 1250 1494 +1776 1331 1400 +1688 1422 1235 +1534 1520 831 +1185 1624 0 +0 1735 0 +0 1850 0 +0 1969 0 +0 2091 0 +0 2216 0 +0 2342 0 +0 2470 0 +0 2599 0 +0 2728 0 +0 2859 0 +0 2989 0 +0 3120 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +2097 988 1815 +2096 994 1814 +2094 1003 1811 +2092 1014 1808 +2089 1028 1804 +2085 1047 1799 +2080 1071 1791 +2072 1100 1781 +2063 1138 1766 +2049 1183 1746 +2030 1237 1719 +2004 1301 1678 +1966 1375 1618 +1910 1457 1523 +1822 1548 1352 +1670 1647 927 +1325 1753 0 +0 1864 0 +0 1980 0 +0 2100 0 +0 2222 0 +0 2347 0 +0 2474 0 +0 2601 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +2231 1101 1945 +2230 1106 1944 +2229 1113 1942 +2227 1122 1940 +2225 1133 1936 +2222 1148 1932 +2218 1167 1927 +2213 1191 1919 +2206 1222 1908 +2196 1260 1894 +2182 1306 1874 +2164 1362 1846 +2137 1427 1805 +2100 1501 1744 +2044 1585 1647 +1956 1677 1473 +1805 1776 1031 +1463 1883 0 +0 1994 0 +0 2111 0 +0 2231 0 +0 2353 0 +0 2478 0 +0 2605 0 +0 2733 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +2364 1219 2075 +2364 1223 2074 +2363 1228 2073 +2362 1235 2071 +2360 1244 2069 +2358 1255 2066 +2355 1270 2061 +2351 1290 2056 +2346 1315 2048 +2339 1346 2037 +2329 1385 2023 +2315 1432 2003 +2297 1488 1974 +2270 1553 1933 +2233 1629 1871 +2177 1713 1773 +2090 1806 1597 +1939 1906 1140 +1599 2013 0 +0 2125 0 +0 2242 0 +0 2362 0 +0 2485 0 +0 2610 0 +0 2737 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +2498 1340 2206 +2497 1343 2205 +2497 1347 2204 +2496 1352 2203 +2494 1359 2201 +2493 1368 2199 +2491 1380 2195 +2488 1395 2191 +2484 1415 2185 +2478 1440 2178 +2471 1472 2167 +2461 1511 2152 +2448 1559 2132 +2429 1615 2103 +2403 1682 2062 +2366 1757 2000 +2310 1842 1901 +2223 1936 1723 +2073 2036 1254 +1735 2144 0 +0 2256 0 +0 2373 0 +0 2493 0 +0 2616 0 +0 2742 0 +0 2869 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +2631 1463 2337 +2630 1466 2336 +2630 1469 2335 +2629 1473 2334 +2628 1478 2333 +2627 1485 2331 +2625 1494 2329 +2623 1506 2326 +2620 1522 2322 +2616 1542 2316 +2611 1567 2308 +2604 1599 2297 +2594 1639 2283 +2581 1687 2262 +2562 1744 2233 +2536 1811 2192 +2498 1887 2130 +2443 1972 2030 +2356 2066 1850 +2206 2167 1373 +1869 2275 0 +0 2387 0 +0 2504 0 +0 2625 0 +0 2748 0 +0 2874 0 +0 3001 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3518 0 +0 3649 0 +2763 1589 2468 +2763 1591 2467 +2763 1593 2467 +2762 1596 2466 +2761 1600 2465 +2761 1605 2464 +2759 1613 2462 +2758 1622 2460 +2756 1634 2457 +2753 1650 2452 +2749 1670 2447 +2743 1696 2439 +2736 1728 2428 +2727 1768 2413 +2713 1816 2393 +2694 1874 2364 +2668 1941 2322 +2631 2017 2260 +2575 2103 2160 +2489 2197 1978 +2339 2298 1494 +2003 2406 0 +0 2519 0 +0 2636 0 +0 2757 0 +0 2880 0 +0 3005 0 +0 3132 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3650 0 +2896 1716 2599 +2896 1717 2599 +2895 1719 2599 +2895 1722 2598 +2894 1725 2597 +2894 1729 2596 +2893 1734 2595 +2892 1741 2593 +2890 1751 2591 +2888 1763 2588 +2885 1779 2583 +2881 1799 2578 +2876 1825 2570 +2869 1857 2559 +2859 1897 2544 +2845 1946 2524 +2827 2004 2495 +2801 2071 2453 +2763 2148 2390 +2708 2234 2290 +2621 2328 2108 +2472 2430 1618 +2136 2537 0 +0 2650 0 +0 2768 0 +0 2888 0 +0 3012 0 +0 3137 0 +0 3264 0 +0 3393 0 +0 3522 0 +0 3652 0 +3028 1845 2731 +3028 1846 2731 +3028 1847 2730 +3028 1849 2730 +3027 1851 2729 +3027 1854 2729 +3026 1858 2728 +3025 1864 2726 +3024 1871 2725 +3022 1880 2722 +3020 1892 2719 +3017 1908 2715 +3013 1929 2709 +3008 1955 2701 +3001 1987 2690 +2991 2028 2676 +2978 2076 2655 +2959 2134 2626 +2933 2202 2584 +2896 2279 2521 +2840 2365 2421 +2754 2459 2238 +2604 2561 1744 +2269 2669 0 +0 2782 0 +0 2900 0 +0 3020 0 +0 3144 0 +0 3269 0 +0 3396 0 +0 3525 0 +0 3654 0 +3161 1974 2863 +3161 1975 2862 +3160 1976 2862 +3160 1977 2862 +3160 1979 2862 +3160 1981 2861 +3159 1984 2860 +3158 1988 2859 +3157 1994 2858 +3156 2001 2856 +3155 2010 2854 +3152 2023 2851 +3150 2039 2846 +3146 2059 2841 +3140 2085 2833 +3133 2118 2822 +3123 2158 2807 +3110 2207 2787 +3091 2266 2758 +3065 2333 2716 +3028 2410 2653 +2973 2497 2552 +2886 2591 2368 +2737 2693 1872 +2402 2801 0 +0 2914 0 +0 3031 0 +0 3152 0 +0 3276 0 +0 3401 0 +0 3528 0 +0 3657 0 +3293 2104 2994 +3293 2104 2994 +3293 2105 2994 +3293 2106 2994 +3292 2107 2994 +3292 2109 2993 +3292 2112 2993 +3291 2115 2992 +3291 2119 2991 +3290 2124 2990 +3288 2132 2988 +3287 2141 2986 +3285 2153 2982 +3282 2169 2978 +3278 2190 2972 +3273 2216 2964 +3265 2249 2954 +3256 2290 2939 +3242 2339 2918 +3224 2397 2889 +3198 2465 2847 +3160 2542 2784 +3105 2628 2683 +3018 2723 2499 +2869 2825 2000 +2535 2933 0 +0 3046 0 +0 3163 0 +0 3284 0 +0 3408 0 +0 3533 0 +0 3661 0 +3425 2234 3126 +3425 2235 3126 +3425 2235 3126 +3425 2236 3126 +3425 2237 3126 +3425 2238 3125 +3424 2240 3125 +3424 2243 3124 +3423 2246 3124 +3423 2250 3123 +3422 2255 3121 +3421 2263 3120 +3419 2272 3117 +3417 2284 3114 +3414 2301 3110 +3410 2321 3104 +3405 2347 3096 +3398 2380 3085 +3388 2421 3071 +3374 2470 3050 +3356 2528 3021 +3330 2596 2979 +3292 2674 2916 +3237 2760 2815 +3151 2855 2631 +3001 2956 2130 +2667 3065 0 +0 3178 0 +0 3295 0 +0 3416 0 +0 3540 0 +0 3665 0 +3557 2365 3258 +3557 2366 3258 +3557 2366 3258 +3557 2367 3258 +3557 2367 3258 +3557 2368 3258 +3557 2370 3257 +3556 2371 3257 +3556 2374 3256 +3556 2377 3256 +3555 2381 3255 +3554 2387 3253 +3553 2394 3252 +3551 2403 3249 +3549 2416 3246 +3546 2432 3242 +3542 2453 3236 +3537 2479 3228 +3530 2512 3217 +3520 2552 3202 +3507 2602 3182 +3488 2660 3153 +3462 2728 3111 +3425 2805 3047 +3369 2892 2946 +3283 2986 2762 +3134 3088 2260 +2800 3197 0 +0 3310 0 +0 3427 0 +0 3548 0 +0 3672 0 +3690 2497 3390 +3690 2497 3390 +3689 2497 3390 +3689 2498 3390 +3689 2498 3390 +3689 2499 3390 +3689 2500 3390 +3689 2501 3389 +3689 2503 3389 +3688 2505 3388 +3688 2508 3388 +3687 2513 3387 +3686 2518 3385 +3685 2525 3384 +3683 2535 3381 +3681 2547 3378 +3678 2563 3374 +3674 2584 3368 +3669 2610 3360 +3662 2643 3349 +3652 2684 3334 +3639 2733 3314 +3620 2792 3285 +3594 2860 3242 +3557 2937 3179 +3501 3024 3078 +3415 3118 2894 +3266 3220 2391 +2932 3329 0 +0 3442 0 +0 3559 0 +0 3680 0 +3822 2628 3522 +3822 2628 3522 +3822 2628 3522 +3822 2629 3522 +3822 2629 3522 +3821 2630 3522 +3821 2630 3522 +3821 2631 3522 +3821 2633 3521 +3821 2635 3521 +3820 2637 3520 +3820 2640 3520 +3819 2644 3519 +3818 2650 3517 +3817 2657 3515 +3815 2667 3513 +3813 2679 3510 +3810 2695 3506 +3806 2716 3500 +3801 2742 3492 +3794 2775 3481 +3784 2816 3466 +3771 2865 3446 +3752 2924 3416 +3726 2992 3374 +3689 3069 3311 +3634 3156 3210 +3547 3250 3025 +3398 3352 2521 +3064 3461 0 +0 3574 0 +0 3692 0 +3954 2760 3654 +3954 2760 3654 +3954 2760 3654 +3954 2760 3654 +3954 2760 3654 +3954 2761 3654 +3954 2761 3654 +3953 2762 3654 +3953 2763 3654 +3953 2764 3653 +3953 2766 3653 +3952 2769 3652 +3952 2772 3652 +3951 2776 3651 +3950 2781 3649 +3949 2789 3647 +3948 2798 3645 +3945 2811 3642 +3942 2827 3638 +3939 2848 3632 +3933 2874 3624 +3926 2907 3613 +3916 2948 3598 +3903 2997 3578 +3884 3055 3548 +3858 3123 3506 +3821 3201 3443 +3766 3288 3342 +3679 3382 3157 +3530 3484 2653 +3197 3593 0 +0 3706 0 +4086 2891 3786 +4086 2891 3786 +4086 2892 3786 +4086 2892 3786 +4086 2892 3786 +4086 2892 3786 +4086 2893 3786 +4086 2893 3786 +4086 2894 3786 +4085 2895 3786 +4085 2896 3785 +4085 2898 3785 +4085 2900 3784 +4084 2904 3784 +4083 2908 3783 +4082 2913 3781 +4081 2921 3780 +4080 2930 3777 +4078 2943 3774 +4075 2959 3770 +4071 2980 3764 +4065 3006 3756 +4058 3039 3745 +4048 3080 3730 +4035 3129 3710 +4017 3187 3680 +3990 3255 3638 +3953 3333 3575 +3898 3420 3474 +3811 3514 3289 +3662 3616 2784 +3329 3725 0 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3023 3918 +4095 3024 3918 +4095 3024 3918 +4095 3024 3918 +4095 3025 3918 +4095 3025 3918 +4095 3026 3918 +4095 3027 3918 +4095 3028 3917 +4095 3030 3917 +4095 3032 3916 +4095 3036 3916 +4095 3040 3915 +4095 3045 3913 +4095 3052 3912 +4095 3062 3909 +4095 3075 3906 +4095 3091 3902 +4095 3111 3896 +4095 3138 3888 +4095 3171 3877 +4095 3212 3862 +4095 3261 3842 +4095 3319 3813 +4095 3387 3770 +4085 3465 3707 +4030 3552 3606 +3944 3646 3421 +3794 3748 2916 +4095 3155 4051 +4095 3155 4051 +4095 3155 4051 +4095 3155 4050 +4095 3155 4050 +4095 3156 4050 +4095 3156 4050 +4095 3156 4050 +4095 3157 4050 +4095 3157 4050 +4095 3158 4050 +4095 3159 4050 +4095 3160 4049 +4095 3162 4049 +4095 3164 4048 +4095 3167 4048 +4095 3172 4047 +4095 3177 4045 +4095 3184 4044 +4095 3194 4041 +4095 3206 4038 +4095 3223 4034 +4095 3243 4028 +4095 3270 4020 +4095 3303 4009 +4095 3344 3994 +4095 3393 3974 +4095 3451 3945 +4095 3520 3902 +4095 3597 3839 +4095 3684 3738 +4076 3778 3553 +0 286 468 +0 316 433 +0 352 383 +0 397 305 +0 450 175 +0 514 0 +0 586 0 +0 668 0 +0 759 0 +0 857 0 +0 962 0 +0 1073 0 +0 1189 0 +0 1308 0 +0 1430 0 +0 1555 0 +0 1681 0 +0 1809 0 +0 1938 0 +0 2068 0 +0 2198 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +0 296 515 +0 325 484 +0 361 439 +0 405 371 +0 458 261 +0 520 54 +0 592 0 +0 673 0 +0 762 0 +0 860 0 +0 965 0 +0 1075 0 +0 1190 0 +0 1309 0 +0 1431 0 +0 1556 0 +0 1682 0 +0 1810 0 +0 1938 0 +0 2068 0 +0 2198 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +38 310 571 +0 338 544 +0 372 505 +0 415 447 +0 467 355 +0 528 195 +0 599 0 +0 678 0 +0 767 0 +0 864 0 +0 968 0 +0 1077 0 +0 1192 0 +0 1311 0 +0 1432 0 +0 1556 0 +0 1682 0 +0 1810 0 +0 1939 0 +0 2068 0 +0 2198 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +347 327 637 +286 354 613 +190 387 580 +17 429 531 +0 479 457 +0 539 333 +0 608 87 +0 686 0 +0 774 0 +0 869 0 +0 972 0 +0 1081 0 +0 1194 0 +0 1312 0 +0 1434 0 +0 1558 0 +0 1683 0 +0 1811 0 +0 1939 0 +0 2069 0 +0 2199 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +577 349 712 +541 375 692 +489 407 664 +408 447 624 +270 495 565 +0 553 470 +0 620 302 +0 696 0 +0 782 0 +0 876 0 +0 977 0 +0 1085 0 +0 1198 0 +0 1315 0 +0 1436 0 +0 1559 0 +0 1684 0 +0 1812 0 +0 1940 0 +0 2069 0 +0 2199 0 +0 2329 0 +0 2460 0 +0 2591 0 +0 2723 0 +0 2854 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +771 377 796 +748 401 780 +715 431 757 +668 469 725 +595 515 678 +475 571 606 +241 635 487 +0 709 256 +0 793 0 +0 885 0 +0 984 0 +0 1091 0 +0 1202 0 +0 1318 0 +0 1438 0 +0 1561 0 +0 1686 0 +0 1813 0 +0 1941 0 +0 2070 0 +0 2199 0 +0 2330 0 +0 2461 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +944 411 889 +928 434 876 +907 462 858 +876 498 832 +832 541 795 +764 594 740 +655 655 655 +450 726 509 +0 807 186 +0 896 0 +0 994 0 +0 1098 0 +0 1208 0 +0 1323 0 +0 1442 0 +0 1564 0 +0 1688 0 +0 1814 0 +0 1942 0 +0 2071 0 +0 2200 0 +0 2330 0 +0 2461 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1105 454 990 +1094 475 979 +1079 501 965 +1058 533 944 +1029 574 916 +986 623 874 +922 681 813 +820 748 714 +633 825 536 +113 912 73 +0 1006 0 +0 1108 0 +0 1216 0 +0 1329 0 +0 1446 0 +0 1567 0 +0 1691 0 +0 1816 0 +0 1943 0 +0 2072 0 +0 2201 0 +0 2331 0 +0 2461 0 +0 2592 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1257 506 1097 +1249 524 1088 +1239 547 1077 +1224 577 1061 +1204 614 1039 +1175 659 1008 +1134 713 963 +1073 776 894 +975 849 783 +799 931 571 +345 1022 0 +0 1121 0 +0 1226 0 +0 1337 0 +0 1452 0 +0 1572 0 +0 1694 0 +0 1819 0 +0 1945 0 +0 2073 0 +0 2202 0 +0 2332 0 +0 2462 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1404 566 1209 +1398 582 1202 +1390 603 1193 +1380 629 1181 +1366 662 1165 +1346 703 1141 +1318 752 1108 +1278 811 1059 +1218 878 984 +1124 956 860 +956 1042 613 +540 1137 0 +0 1239 0 +0 1347 0 +0 1461 0 +0 1578 0 +0 1699 0 +0 1823 0 +0 1948 0 +0 2075 0 +0 2204 0 +0 2333 0 +0 2463 0 +0 2593 0 +0 2724 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1546 637 1325 +1542 651 1320 +1537 668 1314 +1529 691 1304 +1519 720 1292 +1505 756 1274 +1486 800 1249 +1458 853 1214 +1419 915 1162 +1360 987 1082 +1268 1068 947 +1105 1158 665 +714 1256 0 +0 1361 0 +0 1471 0 +0 1586 0 +0 1705 0 +0 1827 0 +0 1952 0 +0 2078 0 +0 2206 0 +0 2335 0 +0 2464 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +1686 717 1446 +1683 728 1442 +1679 743 1437 +1674 763 1430 +1666 787 1420 +1656 819 1407 +1642 857 1388 +1623 904 1363 +1596 960 1326 +1557 1026 1272 +1500 1101 1187 +1409 1185 1042 +1250 1278 725 +875 1378 0 +0 1485 0 +0 1597 0 +0 1713 0 +0 1834 0 +0 1957 0 +0 2082 0 +0 2209 0 +0 2337 0 +0 2466 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +1824 805 1569 +1822 815 1566 +1819 827 1562 +1815 843 1556 +1809 864 1549 +1802 891 1539 +1792 924 1526 +1778 965 1507 +1759 1014 1480 +1732 1073 1442 +1694 1141 1386 +1637 1219 1298 +1547 1305 1145 +1391 1400 795 +1028 1502 0 +0 1611 0 +0 1724 0 +0 1842 0 +0 1963 0 +0 2087 0 +0 2212 0 +0 2339 0 +0 2468 0 +0 2597 0 +0 2727 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +1960 902 1694 +1959 910 1692 +1956 920 1689 +1953 933 1685 +1949 950 1679 +1944 972 1672 +1937 1000 1662 +1927 1035 1648 +1913 1077 1628 +1894 1129 1601 +1868 1190 1562 +1830 1260 1505 +1773 1340 1413 +1684 1428 1253 +1530 1525 875 +1174 1629 0 +0 1738 0 +0 1853 0 +0 1971 0 +0 2093 0 +0 2217 0 +0 2343 0 +0 2471 0 +0 2599 0 +0 2729 0 +0 2859 0 +0 2989 0 +0 3120 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +2095 1005 1821 +2094 1012 1819 +2093 1020 1817 +2090 1030 1814 +2087 1044 1810 +2084 1062 1804 +2078 1085 1797 +2071 1114 1786 +2061 1150 1772 +2047 1195 1753 +2029 1248 1725 +2002 1310 1685 +1964 1382 1626 +1908 1464 1533 +1820 1554 1367 +1667 1652 963 +1317 1756 0 +0 1867 0 +0 1982 0 +0 2101 0 +0 2223 0 +0 2348 0 +0 2474 0 +0 2602 0 +0 2731 0 +0 2860 0 +0 2991 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +2230 1115 1949 +2229 1120 1948 +2228 1126 1946 +2226 1135 1944 +2224 1146 1941 +2221 1160 1936 +2217 1179 1931 +2212 1203 1923 +2205 1233 1913 +2195 1270 1898 +2181 1315 1879 +2162 1369 1851 +2136 1433 1810 +2098 1507 1750 +2042 1589 1655 +1955 1681 1484 +1802 1780 1059 +1457 1885 0 +0 1996 0 +0 2112 0 +0 2232 0 +0 2354 0 +0 2479 0 +0 2606 0 +0 2734 0 +0 2862 0 +0 2992 0 +0 3123 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +2364 1229 2078 +2363 1233 2077 +2362 1238 2076 +2361 1245 2074 +2359 1254 2072 +2357 1265 2069 +2354 1280 2064 +2350 1299 2059 +2345 1323 2051 +2338 1354 2041 +2328 1392 2026 +2314 1438 2006 +2296 1494 1978 +2269 1559 1937 +2232 1633 1876 +2176 1717 1779 +2089 1809 1606 +1937 1908 1163 +1595 2015 0 +0 2127 0 +0 2243 0 +0 2363 0 +0 2486 0 +0 2611 0 +0 2737 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +2497 1348 2208 +2497 1351 2207 +2496 1355 2206 +2495 1360 2205 +2494 1367 2203 +2492 1376 2201 +2490 1387 2198 +2487 1402 2193 +2483 1422 2188 +2478 1447 2180 +2471 1478 2169 +2461 1517 2155 +2447 1564 2135 +2429 1620 2106 +2402 1686 2065 +2365 1761 2004 +2309 1845 1906 +2222 1938 1729 +2071 2038 1272 +1731 2145 0 +0 2257 0 +0 2374 0 +0 2494 0 +0 2617 0 +0 2742 0 +0 2869 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +2630 1470 2338 +2630 1472 2338 +2629 1475 2337 +2629 1479 2336 +2628 1484 2335 +2627 1491 2333 +2625 1500 2331 +2623 1512 2327 +2620 1527 2323 +2616 1547 2317 +2611 1572 2310 +2603 1604 2299 +2594 1643 2284 +2580 1691 2264 +2561 1748 2236 +2535 1814 2194 +2498 1890 2132 +2442 1974 2033 +2355 2068 1855 +2205 2168 1386 +1867 2276 0 +0 2388 0 +0 2505 0 +0 2625 0 +0 2749 0 +0 2874 0 +0 3001 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3518 0 +0 3649 0 +2763 1594 2469 +2763 1595 2469 +2762 1598 2468 +2762 1601 2467 +2761 1605 2466 +2760 1610 2465 +2759 1617 2463 +2757 1626 2461 +2755 1638 2458 +2752 1654 2454 +2748 1674 2448 +2743 1699 2440 +2736 1731 2429 +2726 1771 2415 +2713 1819 2394 +2694 1876 2366 +2668 1943 2324 +2630 2019 2262 +2575 2104 2162 +2488 2198 1982 +2338 2299 1505 +2001 2407 0 +0 2519 0 +0 2637 0 +0 2757 0 +0 2880 0 +0 3006 0 +0 3133 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3650 0 +2896 1720 2600 +2895 1721 2600 +2895 1723 2600 +2895 1725 2599 +2894 1728 2598 +2894 1732 2597 +2893 1738 2596 +2891 1745 2594 +2890 1754 2592 +2888 1766 2589 +2885 1782 2584 +2881 1802 2579 +2876 1828 2571 +2868 1860 2560 +2859 1900 2545 +2845 1948 2525 +2827 2006 2496 +2800 2073 2454 +2763 2149 2392 +2708 2235 2292 +2621 2329 2111 +2471 2430 1626 +2135 2538 0 +0 2651 0 +0 2768 0 +0 2889 0 +0 3012 0 +0 3138 0 +0 3265 0 +0 3393 0 +0 3522 0 +0 3652 0 +3028 1847 2732 +3028 1848 2731 +3028 1850 2731 +3027 1851 2731 +3027 1854 2730 +3027 1857 2729 +3026 1861 2728 +3025 1866 2727 +3024 1873 2725 +3022 1883 2723 +3020 1895 2720 +3017 1911 2716 +3013 1931 2710 +3008 1957 2702 +3001 1989 2691 +2991 2030 2676 +2978 2078 2656 +2959 2136 2627 +2933 2203 2585 +2895 2280 2522 +2840 2366 2422 +2753 2460 2240 +2604 2562 1750 +2268 2670 0 +0 2783 0 +0 2900 0 +0 3021 0 +0 3144 0 +0 3269 0 +0 3397 0 +0 3525 0 +0 3654 0 +3160 1976 2863 +3160 1977 2863 +3160 1978 2863 +3160 1979 2862 +3160 1981 2862 +3159 1983 2862 +3159 1986 2861 +3158 1990 2860 +3157 1996 2858 +3156 2003 2857 +3154 2012 2854 +3152 2025 2851 +3149 2040 2847 +3146 2061 2841 +3140 2087 2833 +3133 2120 2822 +3123 2160 2808 +3110 2209 2787 +3091 2267 2758 +3065 2334 2716 +3028 2411 2653 +2972 2497 2553 +2886 2592 2370 +2736 2693 1876 +2401 2801 0 +0 2914 0 +0 3032 0 +0 3152 0 +0 3276 0 +0 3401 0 +0 3529 0 +0 3657 0 +3293 2105 2995 +3293 2106 2995 +3293 2107 2995 +3292 2108 2994 +3292 2109 2994 +3292 2111 2994 +3292 2113 2993 +3291 2116 2992 +3290 2120 2991 +3290 2126 2990 +3288 2133 2988 +3287 2142 2986 +3285 2155 2983 +3282 2171 2978 +3278 2191 2973 +3272 2217 2965 +3265 2250 2954 +3256 2291 2939 +3242 2339 2919 +3224 2398 2890 +3197 2465 2848 +3160 2542 2785 +3105 2629 2684 +3018 2723 2500 +2869 2825 2004 +2534 2933 0 +0 3046 0 +0 3164 0 +0 3284 0 +0 3408 0 +0 3533 0 +0 3661 0 +3425 2236 3127 +3425 2236 3127 +3425 2237 3126 +3425 2237 3126 +3425 2238 3126 +3424 2240 3126 +3424 2241 3125 +3424 2244 3125 +3423 2247 3124 +3423 2251 3123 +3422 2256 3122 +3421 2264 3120 +3419 2273 3118 +3417 2286 3114 +3414 2302 3110 +3410 2322 3104 +3405 2348 3096 +3397 2381 3086 +3388 2422 3071 +3374 2471 3050 +3356 2529 3021 +3330 2597 2979 +3292 2674 2916 +3237 2760 2815 +3150 2855 2631 +3001 2957 2132 +2667 3065 0 +0 3178 0 +0 3296 0 +0 3416 0 +0 3540 0 +0 3665 0 +3557 2366 3259 +3557 2367 3258 +3557 2367 3258 +3557 2367 3258 +3557 2368 3258 +3557 2369 3258 +3557 2371 3258 +3556 2372 3257 +3556 2375 3257 +3555 2378 3256 +3555 2382 3255 +3554 2387 3254 +3553 2395 3252 +3551 2404 3249 +3549 2417 3246 +3546 2433 3242 +3542 2453 3236 +3537 2480 3228 +3530 2512 3217 +3520 2553 3203 +3506 2602 3182 +3488 2660 3153 +3462 2728 3111 +3424 2806 3048 +3369 2892 2947 +3283 2987 2763 +3133 3089 2262 +2799 3197 0 +0 3310 0 +0 3428 0 +0 3548 0 +0 3672 0 +3689 2497 3390 +3689 2497 3390 +3689 2498 3390 +3689 2498 3390 +3689 2499 3390 +3689 2499 3390 +3689 2500 3390 +3689 2502 3389 +3688 2504 3389 +3688 2506 3388 +3688 2509 3388 +3687 2513 3387 +3686 2519 3385 +3685 2526 3384 +3683 2535 3381 +3681 2548 3378 +3678 2564 3374 +3674 2585 3368 +3669 2611 3360 +3662 2644 3349 +3652 2684 3334 +3639 2734 3314 +3620 2792 3285 +3594 2860 3243 +3557 2937 3179 +3501 3024 3078 +3415 3119 2894 +3266 3220 2392 +2932 3329 0 +0 3442 0 +0 3560 0 +0 3680 0 +3822 2628 3522 +3822 2629 3522 +3822 2629 3522 +3822 2629 3522 +3821 2630 3522 +3821 2630 3522 +3821 2631 3522 +3821 2632 3522 +3821 2633 3521 +3821 2635 3521 +3820 2637 3520 +3820 2641 3520 +3819 2645 3519 +3818 2650 3517 +3817 2657 3516 +3815 2667 3513 +3813 2679 3510 +3810 2696 3506 +3806 2716 3500 +3801 2743 3492 +3794 2775 3481 +3784 2816 3466 +3771 2865 3446 +3752 2924 3417 +3726 2992 3375 +3689 3069 3311 +3633 3156 3210 +3547 3250 3026 +3398 3352 2523 +3064 3461 0 +0 3574 0 +0 3692 0 +3954 2760 3654 +3954 2760 3654 +3954 2760 3654 +3954 2760 3654 +3954 2761 3654 +3954 2761 3654 +3954 2762 3654 +3953 2763 3654 +3953 2764 3654 +3953 2765 3653 +3953 2767 3653 +3952 2769 3652 +3952 2772 3652 +3951 2776 3651 +3950 2782 3649 +3949 2789 3648 +3948 2799 3645 +3945 2811 3642 +3942 2827 3638 +3939 2848 3632 +3933 2874 3624 +3926 2907 3613 +3916 2948 3598 +3903 2997 3578 +3884 3056 3549 +3858 3124 3506 +3821 3201 3443 +3766 3288 3342 +3679 3382 3157 +3530 3484 2654 +3196 3593 0 +0 3706 0 +4086 2892 3786 +4086 2892 3786 +4086 2892 3786 +4086 2892 3786 +4086 2892 3786 +4086 2893 3786 +4086 2893 3786 +4086 2894 3786 +4086 2894 3786 +4085 2895 3786 +4085 2897 3785 +4085 2898 3785 +4085 2901 3784 +4084 2904 3784 +4083 2908 3783 +4082 2914 3781 +4081 2921 3780 +4080 2930 3777 +4077 2943 3774 +4075 2959 3770 +4071 2980 3764 +4065 3006 3756 +4058 3039 3745 +4048 3080 3730 +4035 3129 3710 +4017 3188 3681 +3990 3256 3638 +3953 3333 3575 +3898 3420 3474 +3811 3514 3289 +3662 3616 2785 +3329 3725 0 +4095 3023 3919 +4095 3023 3918 +4095 3023 3918 +4095 3024 3918 +4095 3024 3918 +4095 3024 3918 +4095 3024 3918 +4095 3025 3918 +4095 3025 3918 +4095 3026 3918 +4095 3027 3918 +4095 3028 3917 +4095 3030 3917 +4095 3033 3916 +4095 3036 3916 +4095 3040 3915 +4095 3045 3913 +4095 3053 3912 +4095 3062 3909 +4095 3075 3906 +4095 3091 3902 +4095 3112 3896 +4095 3138 3888 +4095 3171 3877 +4095 3212 3862 +4095 3261 3842 +4095 3319 3813 +4095 3388 3770 +4085 3465 3707 +4030 3552 3606 +3944 3646 3421 +3794 3748 2916 +4095 3155 4051 +4095 3155 4051 +4095 3155 4051 +4095 3155 4051 +4095 3156 4050 +4095 3156 4050 +4095 3156 4050 +4095 3156 4050 +4095 3157 4050 +4095 3157 4050 +4095 3158 4050 +4095 3159 4050 +4095 3160 4049 +4095 3162 4049 +4095 3164 4048 +4095 3168 4048 +4095 3172 4047 +4095 3177 4045 +4095 3185 4044 +4095 3194 4041 +4095 3207 4038 +4095 3223 4034 +4095 3244 4028 +4095 3270 4020 +4095 3303 4009 +4095 3344 3994 +4095 3393 3974 +4095 3451 3945 +4095 3520 3902 +4095 3597 3839 +4095 3684 3738 +4076 3778 3553 +0 387 587 +0 410 561 +0 440 523 +0 477 468 +0 523 381 +0 577 231 +0 641 0 +0 714 0 +0 797 0 +0 888 0 +0 987 0 +0 1093 0 +0 1204 0 +0 1320 0 +0 1439 0 +0 1562 0 +0 1687 0 +0 1813 0 +0 1941 0 +0 2070 0 +0 2200 0 +0 2330 0 +0 2461 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +0 395 624 +0 418 600 +0 448 565 +0 484 515 +0 529 437 +0 583 307 +0 646 42 +0 718 0 +0 800 0 +0 891 0 +0 989 0 +0 1094 0 +0 1205 0 +0 1321 0 +0 1440 0 +0 1562 0 +0 1687 0 +0 1813 0 +0 1941 0 +0 2070 0 +0 2200 0 +0 2330 0 +0 2461 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +0 406 669 +0 428 647 +0 457 616 +0 493 571 +0 537 503 +0 590 393 +0 652 186 +0 724 0 +0 805 0 +0 894 0 +0 992 0 +0 1097 0 +0 1207 0 +0 1322 0 +0 1441 0 +0 1563 0 +0 1688 0 +0 1814 0 +0 1942 0 +0 2070 0 +0 2200 0 +0 2330 0 +0 2461 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +247 420 722 +170 442 703 +41 470 676 +0 505 637 +0 547 579 +0 599 487 +0 660 327 +0 731 0 +0 811 0 +0 899 0 +0 996 0 +0 1100 0 +0 1210 0 +0 1324 0 +0 1443 0 +0 1564 0 +0 1688 0 +0 1815 0 +0 1942 0 +0 2071 0 +0 2200 0 +0 2330 0 +0 2461 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2986 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +519 438 786 +479 459 769 +418 486 745 +322 520 712 +149 561 663 +0 611 589 +0 671 465 +0 740 219 +0 818 0 +0 906 0 +0 1001 0 +0 1104 0 +0 1213 0 +0 1327 0 +0 1445 0 +0 1566 0 +0 1690 0 +0 1815 0 +0 1943 0 +0 2071 0 +0 2201 0 +0 2331 0 +0 2461 0 +0 2592 0 +0 2723 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +734 461 858 +709 481 844 +673 507 824 +621 539 797 +540 579 756 +402 627 697 +110 685 602 +0 752 434 +0 828 18 +0 914 0 +0 1008 0 +0 1109 0 +0 1217 0 +0 1330 0 +0 1447 0 +0 1568 0 +0 1691 0 +0 1817 0 +0 1944 0 +0 2072 0 +0 2201 0 +0 2331 0 +0 2462 0 +0 2592 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +919 490 940 +903 509 929 +880 533 912 +847 563 889 +800 601 857 +727 647 810 +607 703 738 +373 767 619 +0 842 388 +0 925 0 +0 1017 0 +0 1116 0 +0 1223 0 +0 1334 0 +0 1451 0 +0 1570 0 +0 1693 0 +0 1818 0 +0 1945 0 +0 2073 0 +0 2202 0 +0 2332 0 +0 2462 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1087 526 1031 +1076 544 1021 +1061 566 1008 +1039 594 990 +1008 630 964 +964 673 927 +896 726 872 +787 787 787 +582 859 641 +0 939 318 +0 1029 0 +0 1126 0 +0 1230 0 +0 1340 0 +0 1455 0 +0 1574 0 +0 1696 0 +0 1820 0 +0 1946 0 +0 2074 0 +0 2203 0 +0 2332 0 +0 2462 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1245 570 1130 +1237 586 1122 +1226 607 1111 +1211 633 1097 +1190 665 1076 +1161 706 1048 +1118 755 1006 +1055 813 945 +952 880 846 +765 958 669 +245 1044 205 +0 1138 0 +0 1240 0 +0 1348 0 +0 1461 0 +0 1578 0 +0 1699 0 +0 1823 0 +0 1948 0 +0 2075 0 +0 2204 0 +0 2333 0 +0 2463 0 +0 2594 0 +0 2724 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1395 623 1235 +1389 638 1229 +1381 656 1220 +1371 679 1209 +1356 709 1193 +1336 746 1171 +1308 791 1140 +1267 845 1095 +1205 908 1026 +1107 981 915 +932 1063 703 +477 1154 0 +0 1253 0 +0 1358 0 +0 1469 0 +0 1585 0 +0 1704 0 +0 1826 0 +0 1951 0 +0 2077 0 +0 2205 0 +0 2334 0 +0 2464 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +1540 686 1346 +1536 698 1341 +1530 715 1334 +1522 735 1326 +1512 762 1313 +1498 794 1297 +1478 835 1273 +1450 884 1240 +1410 943 1191 +1351 1011 1116 +1256 1088 993 +1088 1174 745 +672 1269 0 +0 1371 0 +0 1479 0 +0 1593 0 +0 1710 0 +0 1831 0 +0 1955 0 +0 2080 0 +0 2207 0 +0 2336 0 +0 2465 0 +0 2595 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +1681 758 1461 +1678 769 1458 +1674 783 1453 +1669 801 1446 +1661 823 1436 +1651 852 1424 +1637 888 1406 +1618 932 1381 +1590 985 1346 +1551 1047 1295 +1492 1119 1215 +1400 1200 1079 +1237 1290 797 +846 1388 0 +0 1493 0 +0 1603 0 +0 1718 0 +0 1837 0 +0 1959 0 +0 2084 0 +0 2210 0 +0 2338 0 +0 2467 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +1820 840 1581 +1818 849 1578 +1815 860 1574 +1811 875 1569 +1806 895 1562 +1798 920 1552 +1788 951 1539 +1774 989 1521 +1755 1036 1495 +1728 1092 1458 +1689 1158 1404 +1632 1233 1319 +1541 1317 1174 +1382 1410 857 +1007 1510 0 +0 1617 0 +0 1729 0 +0 1846 0 +0 1966 0 +0 2089 0 +0 2214 0 +0 2341 0 +0 2469 0 +0 2598 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +1958 930 1703 +1956 937 1701 +1954 947 1698 +1951 959 1694 +1947 976 1689 +1941 996 1681 +1934 1023 1671 +1924 1056 1658 +1910 1097 1639 +1891 1146 1613 +1865 1205 1575 +1826 1273 1518 +1769 1351 1430 +1679 1437 1277 +1523 1532 927 +1160 1635 0 +0 1743 0 +0 1856 0 +0 1974 0 +0 2095 0 +0 2219 0 +0 2344 0 +0 2471 0 +0 2600 0 +0 2729 0 +0 2859 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +2094 1028 1828 +2092 1034 1826 +2091 1042 1824 +2088 1052 1821 +2086 1065 1817 +2082 1082 1811 +2076 1104 1804 +2069 1132 1794 +2059 1167 1780 +2045 1210 1761 +2026 1261 1733 +2000 1322 1695 +1962 1392 1637 +1905 1472 1545 +1816 1561 1385 +1662 1657 1007 +1307 1761 0 +0 1870 0 +0 1985 0 +0 2103 0 +0 2225 0 +0 2349 0 +0 2475 0 +0 2603 0 +0 2731 0 +0 2861 0 +0 2991 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3515 0 +0 3647 0 +2228 1133 1954 +2228 1138 1953 +2226 1144 1951 +2225 1152 1949 +2223 1163 1946 +2220 1176 1942 +2216 1194 1936 +2210 1217 1929 +2203 1246 1918 +2193 1282 1904 +2180 1327 1885 +2161 1380 1857 +2134 1442 1817 +2096 1514 1758 +2040 1596 1665 +1952 1686 1499 +1799 1784 1095 +1449 1888 0 +0 1999 0 +0 2114 0 +0 2233 0 +0 2356 0 +0 2480 0 +0 2606 0 +0 2734 0 +0 2863 0 +0 2992 0 +0 3123 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +2363 1243 2082 +2362 1247 2081 +2361 1252 2080 +2360 1258 2078 +2358 1267 2076 +2356 1278 2073 +2353 1292 2068 +2349 1311 2063 +2344 1335 2055 +2337 1365 2045 +2327 1402 2031 +2313 1447 2011 +2294 1502 1983 +2268 1565 1942 +2230 1639 1882 +2174 1721 1787 +2087 1813 1617 +1934 1912 1191 +1589 2017 0 +0 2129 0 +0 2244 0 +0 2364 0 +0 2486 0 +0 2611 0 +0 2738 0 +0 2866 0 +0 2995 0 +0 3124 0 +0 3255 0 +0 3385 0 +0 3516 0 +0 3648 0 +2496 1359 2211 +2496 1362 2210 +2495 1365 2209 +2494 1370 2208 +2493 1377 2206 +2491 1386 2204 +2489 1397 2201 +2486 1412 2196 +2482 1431 2191 +2477 1455 2183 +2470 1486 2173 +2460 1524 2158 +2446 1570 2138 +2428 1626 2110 +2402 1691 2069 +2364 1765 2008 +2308 1849 1911 +2221 1941 1738 +2069 2041 1295 +1727 2147 0 +0 2259 0 +0 2375 0 +0 2495 0 +0 2618 0 +0 2743 0 +0 2869 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3387 0 +0 3517 0 +0 3648 0 +2630 1478 2340 +2629 1480 2340 +2629 1483 2339 +2628 1487 2338 +2627 1492 2337 +2626 1499 2335 +2624 1508 2333 +2622 1519 2330 +2619 1535 2326 +2615 1554 2320 +2610 1579 2312 +2603 1610 2302 +2593 1649 2287 +2579 1696 2267 +2561 1752 2238 +2535 1818 2197 +2497 1893 2136 +2441 1977 2038 +2354 2070 1861 +2203 2170 1404 +1864 2277 0 +0 2389 0 +0 2506 0 +0 2626 0 +0 2749 0 +0 2874 0 +0 3001 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3519 0 +0 3649 0 +2763 1600 2471 +2762 1602 2470 +2762 1604 2470 +2761 1607 2469 +2761 1611 2468 +2760 1616 2467 +2759 1623 2465 +2757 1632 2463 +2755 1644 2460 +2752 1659 2455 +2748 1679 2450 +2743 1704 2442 +2735 1736 2431 +2726 1775 2417 +2712 1823 2396 +2694 1880 2368 +2667 1946 2326 +2630 2022 2264 +2574 2107 2165 +2487 2200 1987 +2337 2301 1518 +1999 2408 0 +0 2520 0 +0 2637 0 +0 2758 0 +0 2881 0 +0 3006 0 +0 3133 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3651 0 +2895 1725 2601 +2895 1726 2601 +2895 1728 2601 +2894 1730 2600 +2894 1733 2599 +2893 1737 2599 +2892 1742 2597 +2891 1749 2595 +2890 1758 2593 +2887 1770 2590 +2884 1786 2586 +2881 1806 2580 +2875 1832 2572 +2868 1864 2561 +2858 1903 2547 +2845 1951 2526 +2826 2008 2498 +2800 2075 2456 +2763 2151 2394 +2707 2237 2294 +2620 2330 2114 +2470 2431 1637 +2133 2539 0 +0 2652 0 +0 2769 0 +0 2889 0 +0 3012 0 +0 3138 0 +0 3265 0 +0 3393 0 +0 3522 0 +0 3652 0 +3028 1851 2733 +3028 1852 2732 +3027 1853 2732 +3027 1855 2732 +3027 1857 2731 +3026 1860 2730 +3026 1864 2729 +3025 1870 2728 +3024 1877 2726 +3022 1886 2724 +3020 1898 2721 +3017 1914 2717 +3013 1934 2711 +3008 1960 2703 +3000 1992 2692 +2991 2032 2677 +2977 2080 2657 +2959 2138 2628 +2933 2205 2586 +2895 2282 2524 +2840 2367 2424 +2753 2461 2243 +2603 2562 1758 +2267 2670 0 +0 2783 0 +0 2900 0 +0 3021 0 +0 3144 0 +0 3270 0 +0 3397 0 +0 3525 0 +0 3654 0 +3160 1979 2864 +3160 1979 2864 +3160 1980 2863 +3160 1982 2863 +3160 1983 2863 +3159 1986 2862 +3159 1989 2861 +3158 1993 2861 +3157 1998 2859 +3156 2005 2857 +3154 2015 2855 +3152 2027 2852 +3149 2043 2848 +3145 2063 2842 +3140 2089 2834 +3133 2122 2823 +3123 2162 2809 +3110 2210 2788 +3091 2268 2759 +3065 2335 2717 +3028 2412 2654 +2972 2498 2554 +2886 2592 2372 +2736 2694 1882 +2401 2802 0 +0 2915 0 +0 3032 0 +0 3153 0 +0 3276 0 +0 3402 0 +0 3529 0 +0 3657 0 +3293 2107 2995 +3293 2108 2995 +3292 2109 2995 +3292 2110 2995 +3292 2111 2995 +3292 2113 2994 +3291 2115 2994 +3291 2118 2993 +3290 2122 2992 +3289 2128 2991 +3288 2135 2989 +3287 2144 2986 +3284 2157 2983 +3282 2173 2979 +3278 2193 2973 +3272 2219 2965 +3265 2252 2955 +3255 2292 2940 +3242 2341 2919 +3223 2399 2890 +3197 2466 2848 +3160 2543 2785 +3104 2629 2685 +3018 2724 2502 +2868 2825 2008 +2534 2933 0 +0 3046 0 +0 3164 0 +0 3285 0 +0 3408 0 +0 3534 0 +0 3661 0 +3425 2237 3127 +3425 2238 3127 +3425 2238 3127 +3425 2239 3127 +3425 2240 3126 +3424 2241 3126 +3424 2243 3126 +3424 2245 3125 +3423 2248 3124 +3423 2252 3123 +3422 2258 3122 +3420 2265 3120 +3419 2275 3118 +3417 2287 3115 +3414 2303 3111 +3410 2323 3105 +3405 2350 3097 +3397 2382 3086 +3388 2423 3071 +3374 2472 3051 +3356 2530 3022 +3330 2597 2980 +3292 2675 2917 +3237 2761 2816 +3150 2855 2633 +3001 2957 2136 +2666 3065 0 +0 3178 0 +0 3296 0 +0 3417 0 +0 3540 0 +0 3666 0 +3557 2367 3259 +3557 2368 3259 +3557 2368 3259 +3557 2369 3259 +3557 2369 3258 +3557 2370 3258 +3557 2372 3258 +3556 2373 3257 +3556 2376 3257 +3555 2379 3256 +3555 2383 3255 +3554 2389 3254 +3553 2396 3252 +3551 2405 3250 +3549 2418 3247 +3546 2434 3242 +3542 2454 3236 +3537 2480 3229 +3530 2513 3218 +3520 2554 3203 +3506 2603 3182 +3488 2661 3153 +3462 2729 3111 +3424 2806 3048 +3369 2892 2947 +3283 2987 2763 +3133 3089 2264 +2799 3197 0 +0 3310 0 +0 3428 0 +0 3548 0 +0 3672 0 +3689 2498 3391 +3689 2498 3391 +3689 2499 3391 +3689 2499 3390 +3689 2500 3390 +3689 2500 3390 +3689 2501 3390 +3689 2503 3390 +3688 2504 3389 +3688 2507 3389 +3688 2510 3388 +3687 2514 3387 +3686 2520 3386 +3685 2527 3384 +3683 2536 3382 +3681 2549 3378 +3678 2565 3374 +3674 2585 3368 +3669 2612 3360 +3662 2644 3350 +3652 2685 3335 +3639 2734 3314 +3620 2792 3285 +3594 2860 3243 +3557 2938 3180 +3501 3024 3079 +3415 3119 2895 +3265 3221 2394 +2932 3329 0 +0 3442 0 +0 3560 0 +0 3681 0 +3822 2629 3523 +3822 2629 3523 +3822 2630 3523 +3822 2630 3522 +3821 2630 3522 +3821 2631 3522 +3821 2632 3522 +3821 2633 3522 +3821 2634 3522 +3821 2636 3521 +3820 2638 3521 +3820 2641 3520 +3819 2645 3519 +3818 2651 3518 +3817 2658 3516 +3815 2668 3513 +3813 2680 3510 +3810 2696 3506 +3806 2717 3500 +3801 2743 3492 +3794 2776 3481 +3784 2817 3467 +3771 2866 3446 +3752 2924 3417 +3726 2992 3375 +3689 3069 3312 +3633 3156 3210 +3547 3251 3026 +3398 3353 2524 +3064 3461 0 +0 3574 0 +0 3692 0 +3954 2760 3655 +3954 2761 3655 +3954 2761 3654 +3954 2761 3654 +3954 2761 3654 +3954 2762 3654 +3953 2762 3654 +3953 2763 3654 +3953 2764 3654 +3953 2765 3653 +3953 2767 3653 +3952 2769 3652 +3952 2773 3652 +3951 2777 3651 +3950 2782 3649 +3949 2790 3648 +3947 2799 3645 +3945 2812 3642 +3942 2828 3638 +3939 2848 3632 +3933 2875 3624 +3926 2908 3613 +3916 2948 3598 +3903 2997 3578 +3884 3056 3549 +3858 3124 3507 +3821 3201 3443 +3766 3288 3342 +3679 3383 3158 +3530 3485 2655 +3196 3593 0 +0 3706 0 +4086 2892 3787 +4086 2892 3787 +4086 2892 3787 +4086 2892 3786 +4086 2893 3786 +4086 2893 3786 +4086 2893 3786 +4086 2894 3786 +4086 2895 3786 +4085 2896 3786 +4085 2897 3785 +4085 2899 3785 +4084 2901 3784 +4084 2904 3784 +4083 2908 3783 +4082 2914 3781 +4081 2921 3780 +4080 2931 3777 +4077 2943 3774 +4075 2959 3770 +4071 2980 3764 +4065 3006 3756 +4058 3039 3745 +4048 3080 3730 +4035 3129 3710 +4016 3188 3681 +3990 3256 3639 +3953 3333 3575 +3898 3420 3474 +3811 3515 3289 +3662 3617 2786 +3329 3725 0 +4095 3024 3919 +4095 3024 3919 +4095 3024 3919 +4095 3024 3919 +4095 3024 3918 +4095 3024 3918 +4095 3025 3918 +4095 3025 3918 +4095 3026 3918 +4095 3026 3918 +4095 3027 3918 +4095 3029 3917 +4095 3030 3917 +4095 3033 3916 +4095 3036 3916 +4095 3040 3915 +4095 3046 3913 +4095 3053 3912 +4095 3062 3909 +4095 3075 3906 +4095 3091 3902 +4095 3112 3896 +4095 3138 3888 +4095 3171 3877 +4095 3212 3862 +4095 3261 3842 +4095 3320 3813 +4095 3388 3771 +4085 3465 3707 +4030 3552 3606 +3943 3647 3421 +3794 3749 2917 +4095 3155 4051 +4095 3155 4051 +4095 3155 4051 +4095 3156 4051 +4095 3156 4051 +4095 3156 4051 +4095 3156 4050 +4095 3156 4050 +4095 3157 4050 +4095 3157 4050 +4095 3158 4050 +4095 3159 4050 +4095 3161 4049 +4095 3162 4049 +4095 3165 4048 +4095 3168 4048 +4095 3172 4047 +4095 3177 4045 +4095 3185 4044 +4095 3194 4041 +4095 3207 4038 +4095 3223 4034 +4095 3244 4028 +4095 3270 4020 +4095 3303 4009 +4095 3344 3994 +4095 3393 3974 +4095 3452 3945 +4095 3520 3903 +4095 3597 3839 +4095 3684 3738 +4076 3779 3553 +0 494 709 +0 513 690 +0 537 662 +0 567 621 +0 604 561 +0 650 466 +0 705 295 +0 770 0 +0 843 0 +0 927 0 +0 1018 0 +0 1118 0 +0 1223 0 +0 1335 0 +0 1451 0 +0 1571 0 +0 1693 0 +0 1818 0 +0 1945 0 +0 2073 0 +0 2202 0 +0 2332 0 +0 2462 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +0 500 738 +0 519 719 +0 543 693 +0 572 655 +0 610 600 +0 655 513 +0 709 363 +0 773 25 +0 846 0 +0 929 0 +0 1020 0 +0 1119 0 +0 1225 0 +0 1336 0 +0 1452 0 +0 1571 0 +0 1694 0 +0 1819 0 +0 1945 0 +0 2073 0 +0 2202 0 +0 2332 0 +0 2462 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +0 509 773 +0 527 756 +0 550 732 +0 580 697 +0 616 647 +0 661 569 +0 715 440 +0 778 174 +0 850 0 +0 932 0 +0 1023 0 +0 1121 0 +0 1227 0 +0 1337 0 +0 1453 0 +0 1572 0 +0 1694 0 +0 1819 0 +0 1946 0 +0 2073 0 +0 2202 0 +0 2332 0 +0 2462 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +66 520 816 +0 538 801 +0 561 779 +0 589 748 +0 625 703 +0 669 635 +0 722 525 +0 784 318 +0 856 0 +0 937 0 +0 1027 0 +0 1124 0 +0 1229 0 +0 1339 0 +0 1454 0 +0 1573 0 +0 1695 0 +0 1820 0 +0 1946 0 +0 2074 0 +0 2202 0 +0 2332 0 +0 2462 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3118 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +429 534 868 +379 552 854 +302 574 835 +173 602 808 +0 637 769 +0 680 711 +0 731 620 +0 792 459 +0 863 78 +0 943 0 +0 1031 0 +0 1128 0 +0 1232 0 +0 1342 0 +0 1456 0 +0 1575 0 +0 1696 0 +0 1821 0 +0 1947 0 +0 2074 0 +0 2203 0 +0 2332 0 +0 2463 0 +0 2593 0 +0 2724 0 +0 2855 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +680 553 930 +652 570 918 +611 591 901 +550 618 878 +454 652 844 +281 693 796 +0 743 721 +0 803 597 +0 872 351 +0 950 0 +0 1038 0 +0 1133 0 +0 1236 0 +0 1345 0 +0 1459 0 +0 1577 0 +0 1698 0 +0 1822 0 +0 1948 0 +0 2075 0 +0 2203 0 +0 2333 0 +0 2463 0 +0 2593 0 +0 2724 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +884 577 1001 +866 593 990 +841 613 976 +806 639 956 +753 671 929 +672 711 889 +534 759 829 +243 817 734 +0 884 566 +0 960 150 +0 1046 0 +0 1140 0 +0 1241 0 +0 1349 0 +0 1462 0 +0 1579 0 +0 1700 0 +0 1823 0 +0 1949 0 +0 2076 0 +0 2204 0 +0 2333 0 +0 2463 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1063 607 1081 +1051 622 1072 +1035 641 1061 +1012 665 1044 +979 696 1022 +932 733 989 +859 780 942 +739 835 870 +505 899 751 +0 974 520 +0 1057 0 +0 1149 0 +0 1249 0 +0 1355 0 +0 1466 0 +0 1583 0 +0 1702 0 +0 1825 0 +0 1950 0 +0 2077 0 +0 2205 0 +0 2334 0 +0 2464 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +1228 644 1170 +1219 658 1163 +1208 676 1153 +1193 698 1140 +1171 727 1122 +1140 762 1096 +1096 805 1059 +1029 858 1005 +919 919 919 +715 991 773 +63 1071 450 +0 1161 0 +0 1258 0 +0 1362 0 +0 1472 0 +0 1587 0 +0 1706 0 +0 1828 0 +0 1952 0 +0 2078 0 +0 2206 0 +0 2335 0 +0 2464 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +1383 690 1267 +1377 702 1262 +1369 718 1254 +1358 739 1243 +1343 765 1229 +1322 798 1208 +1293 838 1180 +1250 887 1139 +1187 945 1077 +1084 1013 978 +897 1090 801 +377 1176 337 +0 1270 0 +0 1372 0 +0 1480 0 +0 1593 0 +0 1711 0 +0 1831 0 +0 1955 0 +0 2080 0 +0 2208 0 +0 2336 0 +0 2465 0 +0 2595 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +1531 745 1371 +1527 756 1367 +1521 770 1361 +1513 788 1352 +1503 812 1341 +1488 841 1325 +1468 878 1303 +1440 923 1272 +1399 977 1227 +1337 1040 1158 +1239 1113 1047 +1064 1195 835 +609 1286 120 +0 1385 0 +0 1490 0 +0 1601 0 +0 1717 0 +0 1836 0 +0 1958 0 +0 2083 0 +0 2210 0 +0 2337 0 +0 2466 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +1675 809 1481 +1672 818 1478 +1668 831 1473 +1662 847 1466 +1655 867 1458 +1644 894 1445 +1630 927 1429 +1610 967 1405 +1582 1016 1372 +1542 1075 1323 +1483 1143 1249 +1388 1220 1125 +1220 1307 878 +804 1401 0 +0 1503 0 +0 1611 0 +0 1725 0 +0 1842 0 +0 1963 0 +0 2087 0 +0 2212 0 +0 2340 0 +0 2468 0 +0 2597 0 +0 2727 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +1816 882 1596 +1813 890 1593 +1810 901 1590 +1806 915 1585 +1801 933 1578 +1793 955 1569 +1783 984 1556 +1769 1020 1538 +1750 1064 1514 +1722 1117 1478 +1683 1179 1427 +1625 1251 1347 +1532 1333 1212 +1369 1422 929 +978 1520 0 +0 1625 0 +0 1735 0 +0 1850 0 +0 1969 0 +0 2092 0 +0 2216 0 +0 2342 0 +0 2470 0 +0 2599 0 +0 2728 0 +0 2859 0 +0 2989 0 +0 3120 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +1954 965 1715 +1952 972 1713 +1950 981 1710 +1947 992 1706 +1943 1007 1701 +1938 1027 1694 +1930 1052 1684 +1920 1083 1671 +1906 1121 1653 +1887 1168 1627 +1860 1224 1590 +1821 1290 1536 +1764 1365 1452 +1673 1449 1307 +1514 1542 989 +1139 1642 0 +0 1749 0 +0 1861 0 +0 1978 0 +0 2098 0 +0 2221 0 +0 2346 0 +0 2473 0 +0 2601 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +2091 1056 1837 +2090 1062 1835 +2088 1069 1833 +2086 1079 1830 +2083 1091 1826 +2079 1108 1821 +2073 1129 1813 +2066 1155 1803 +2056 1188 1790 +2042 1229 1771 +2023 1278 1745 +1997 1337 1707 +1958 1405 1650 +1901 1483 1562 +1812 1570 1409 +1655 1664 1059 +1292 1767 0 +0 1875 0 +0 1988 0 +0 2106 0 +0 2227 0 +0 2351 0 +0 2476 0 +0 2604 0 +0 2732 0 +0 2861 0 +0 2991 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3515 0 +0 3647 0 +2227 1156 1961 +2226 1160 1960 +2224 1166 1958 +2223 1174 1956 +2221 1184 1953 +2218 1197 1949 +2214 1214 1943 +2208 1236 1936 +2201 1264 1926 +2191 1299 1912 +2177 1342 1893 +2158 1393 1866 +2132 1454 1827 +2094 1524 1769 +2037 1604 1678 +1948 1693 1517 +1794 1789 1139 +1439 1893 0 +0 2002 0 +0 2117 0 +0 2235 0 +0 2357 0 +0 2481 0 +0 2607 0 +0 2735 0 +0 2863 0 +0 2993 0 +0 3123 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3647 0 +2361 1261 2087 +2361 1265 2086 +2360 1270 2085 +2358 1276 2083 +2357 1284 2081 +2355 1295 2078 +2352 1309 2074 +2348 1327 2068 +2342 1349 2061 +2335 1378 2050 +2325 1415 2036 +2312 1459 2017 +2293 1512 1989 +2266 1574 1949 +2228 1646 1890 +2172 1728 1797 +2084 1818 1631 +1931 1916 1227 +1581 2021 0 +0 2131 0 +0 2246 0 +0 2365 0 +0 2488 0 +0 2612 0 +0 2738 0 +0 2866 0 +0 2995 0 +0 3125 0 +0 3255 0 +0 3386 0 +0 3517 0 +0 3648 0 +2495 1373 2215 +2495 1376 2214 +2494 1379 2213 +2493 1384 2212 +2492 1391 2210 +2490 1399 2208 +2488 1410 2205 +2485 1424 2201 +2481 1443 2195 +2476 1467 2187 +2469 1497 2177 +2459 1534 2163 +2445 1579 2143 +2427 1634 2115 +2400 1698 2074 +2362 1771 2014 +2306 1854 1919 +2219 1945 1749 +2066 2044 1323 +1721 2149 0 +0 2261 0 +0 2376 0 +0 2496 0 +0 2619 0 +0 2743 0 +0 2870 0 +0 2998 0 +0 3127 0 +0 3256 0 +0 3387 0 +0 3517 0 +0 3649 0 +2629 1489 2343 +2628 1491 2343 +2628 1494 2342 +2627 1497 2341 +2626 1503 2340 +2625 1509 2338 +2623 1518 2336 +2621 1529 2333 +2618 1544 2329 +2614 1563 2323 +2609 1588 2315 +2602 1618 2305 +2592 1656 2290 +2579 1703 2270 +2560 1758 2242 +2534 1823 2201 +2496 1897 2140 +2440 1981 2043 +2353 2073 1870 +2201 2173 1427 +1859 2279 0 +0 2391 0 +0 2507 0 +0 2627 0 +0 2750 0 +0 2875 0 +0 3001 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3519 0 +0 3649 0 +2762 1608 2473 +2762 1610 2473 +2761 1612 2472 +2761 1615 2471 +2760 1619 2470 +2759 1624 2469 +2758 1631 2467 +2756 1640 2465 +2754 1652 2462 +2751 1667 2458 +2747 1686 2452 +2742 1711 2444 +2735 1742 2434 +2725 1781 2419 +2712 1828 2399 +2693 1884 2370 +2667 1950 2329 +2629 2025 2268 +2573 2109 2170 +2486 2202 1993 +2335 2302 1536 +1996 2409 0 +0 2521 0 +0 2638 0 +0 2758 0 +0 2881 0 +0 3006 0 +0 3133 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3651 0 +2895 1731 2603 +2895 1732 2603 +2894 1734 2602 +2894 1736 2602 +2893 1739 2601 +2893 1743 2600 +2892 1748 2599 +2891 1755 2597 +2889 1764 2595 +2887 1776 2592 +2884 1791 2587 +2880 1811 2582 +2875 1836 2574 +2868 1868 2563 +2858 1907 2549 +2844 1955 2528 +2826 2012 2500 +2800 2078 2458 +2762 2154 2396 +2706 2239 2298 +2619 2332 2119 +2469 2433 1651 +2131 2540 0 +0 2652 0 +0 2769 0 +0 2890 0 +0 3013 0 +0 3138 0 +0 3265 0 +0 3393 0 +0 3522 0 +0 3652 0 +3028 1856 2734 +3027 1857 2734 +3027 1858 2733 +3027 1860 2733 +3027 1862 2732 +3026 1865 2732 +3025 1869 2731 +3024 1874 2729 +3023 1881 2728 +3022 1890 2725 +3019 1902 2722 +3017 1918 2718 +3013 1938 2712 +3007 1964 2704 +3000 1996 2694 +2990 2035 2679 +2977 2083 2658 +2958 2140 2630 +2932 2207 2588 +2895 2283 2526 +2839 2369 2426 +2752 2462 2246 +2602 2563 1769 +2265 2671 0 +0 2784 0 +0 2901 0 +0 3021 0 +0 3144 0 +0 3270 0 +0 3397 0 +0 3525 0 +0 3654 0 +3160 1982 2865 +3160 1983 2865 +3160 1984 2864 +3160 1985 2864 +3159 1987 2864 +3159 1989 2863 +3158 1992 2862 +3158 1996 2861 +3157 2002 2860 +3156 2009 2858 +3154 2018 2856 +3152 2030 2853 +3149 2046 2849 +3145 2066 2843 +3140 2092 2835 +3133 2124 2824 +3123 2164 2810 +3109 2212 2789 +3091 2270 2760 +3065 2337 2719 +3027 2414 2656 +2972 2499 2556 +2885 2593 2375 +2735 2695 1890 +2399 2802 0 +0 2915 0 +0 3032 0 +0 3153 0 +0 3276 0 +0 3402 0 +0 3529 0 +0 3657 0 +3292 2110 2996 +3292 2111 2996 +3292 2111 2996 +3292 2112 2996 +3292 2114 2995 +3292 2116 2995 +3291 2118 2994 +3291 2121 2994 +3290 2125 2993 +3289 2130 2991 +3288 2138 2990 +3286 2147 2987 +3284 2159 2984 +3281 2175 2980 +3277 2195 2974 +3272 2221 2966 +3265 2254 2955 +3255 2294 2941 +3242 2342 2920 +3223 2400 2891 +3197 2467 2849 +3160 2544 2787 +3104 2630 2686 +3018 2724 2504 +2868 2826 2015 +2533 2934 0 +0 3047 0 +0 3164 0 +0 3285 0 +0 3408 0 +0 3534 0 +0 3661 0 +3425 2239 3128 +3425 2240 3127 +3425 2240 3127 +3425 2241 3127 +3424 2242 3127 +3424 2243 3127 +3424 2245 3126 +3424 2247 3126 +3423 2250 3125 +3422 2254 3124 +3421 2260 3123 +3420 2267 3121 +3419 2276 3119 +3417 2289 3115 +3414 2305 3111 +3410 2325 3105 +3404 2351 3097 +3397 2384 3087 +3387 2424 3072 +3374 2473 3051 +3355 2531 3022 +3329 2598 2980 +3292 2675 2918 +3237 2761 2817 +3150 2856 2634 +3000 2957 2141 +2666 3065 0 +0 3178 0 +0 3296 0 +0 3417 0 +0 3540 0 +0 3666 0 +3557 2369 3259 +3557 2369 3259 +3557 2370 3259 +3557 2370 3259 +3557 2371 3259 +3557 2372 3259 +3556 2373 3258 +3556 2375 3258 +3556 2377 3257 +3555 2380 3257 +3555 2385 3256 +3554 2390 3254 +3553 2397 3252 +3551 2407 3250 +3549 2419 3247 +3546 2435 3243 +3542 2456 3237 +3537 2482 3229 +3529 2514 3218 +3520 2555 3203 +3506 2604 3183 +3488 2662 3154 +3462 2729 3112 +3424 2807 3049 +3369 2893 2948 +3282 2987 2765 +3133 3089 2268 +2799 3197 0 +0 3310 0 +0 3428 0 +0 3549 0 +0 3672 0 +3689 2499 3391 +3689 2499 3391 +3689 2500 3391 +3689 2500 3391 +3689 2501 3391 +3689 2501 3390 +3689 2502 3390 +3689 2504 3390 +3688 2506 3390 +3688 2508 3389 +3687 2511 3388 +3687 2515 3387 +3686 2521 3386 +3685 2528 3384 +3683 2537 3382 +3681 2550 3379 +3678 2566 3374 +3674 2586 3369 +3669 2613 3361 +3662 2645 3350 +3652 2686 3335 +3639 2735 3314 +3620 2793 3285 +3594 2861 3243 +3556 2938 3180 +3501 3024 3079 +3415 3119 2896 +3265 3221 2397 +2931 3329 0 +0 3442 0 +0 3560 0 +0 3681 0 +3822 2630 3523 +3822 2630 3523 +3821 2630 3523 +3821 2631 3523 +3821 2631 3523 +3821 2632 3522 +3821 2632 3522 +3821 2633 3522 +3821 2635 3522 +3821 2637 3521 +3820 2639 3521 +3820 2642 3520 +3819 2646 3519 +3818 2652 3518 +3817 2659 3516 +3815 2668 3514 +3813 2681 3510 +3810 2697 3506 +3806 2717 3500 +3801 2744 3492 +3794 2777 3482 +3784 2817 3467 +3771 2866 3446 +3752 2925 3417 +3726 2992 3375 +3689 3070 3312 +3633 3156 3211 +3547 3251 3027 +3398 3353 2526 +3064 3461 0 +0 3574 0 +0 3692 0 +3954 2761 3655 +3954 2761 3655 +3954 2761 3655 +3954 2762 3655 +3954 2762 3655 +3954 2762 3654 +3953 2763 3654 +3953 2764 3654 +3953 2765 3654 +3953 2766 3654 +3953 2768 3653 +3952 2770 3653 +3952 2773 3652 +3951 2777 3651 +3950 2783 3650 +3949 2790 3648 +3947 2800 3645 +3945 2812 3642 +3942 2828 3638 +3938 2849 3632 +3933 2875 3624 +3926 2908 3614 +3916 2949 3599 +3903 2998 3578 +3884 3056 3549 +3858 3124 3507 +3821 3202 3444 +3766 3288 3343 +3679 3383 3158 +3530 3485 2656 +3196 3593 0 +0 3706 0 +4086 2892 3787 +4086 2893 3787 +4086 2893 3787 +4086 2893 3787 +4086 2893 3787 +4086 2893 3786 +4086 2894 3786 +4086 2894 3786 +4085 2895 3786 +4085 2896 3786 +4085 2897 3786 +4085 2899 3785 +4084 2902 3785 +4084 2905 3784 +4083 2909 3783 +4082 2914 3782 +4081 2922 3780 +4080 2931 3777 +4077 2944 3774 +4075 2960 3770 +4071 2980 3764 +4065 3007 3756 +4058 3040 3745 +4048 3080 3731 +4035 3130 3710 +4016 3188 3681 +3990 3256 3639 +3953 3333 3575 +3898 3420 3474 +3811 3515 3290 +3662 3617 2787 +3328 3725 0 +4095 3024 3919 +4095 3024 3919 +4095 3024 3919 +4095 3024 3919 +4095 3024 3919 +4095 3025 3919 +4095 3025 3918 +4095 3025 3918 +4095 3026 3918 +4095 3027 3918 +4095 3028 3918 +4095 3029 3918 +4095 3031 3917 +4095 3033 3917 +4095 3036 3916 +4095 3040 3915 +4095 3046 3914 +4095 3053 3912 +4095 3063 3909 +4095 3075 3906 +4095 3091 3902 +4095 3112 3896 +4095 3138 3888 +4095 3171 3877 +4095 3212 3863 +4095 3261 3842 +4095 3320 3813 +4095 3388 3771 +4085 3465 3707 +4030 3552 3606 +3943 3647 3422 +3794 3749 2918 +4095 3156 4051 +4095 3156 4051 +4095 3156 4051 +4095 3156 4051 +4095 3156 4051 +4095 3156 4051 +4095 3156 4051 +4095 3157 4050 +4095 3157 4050 +4095 3158 4050 +4095 3158 4050 +4095 3159 4050 +4095 3161 4050 +4095 3163 4049 +4095 3165 4049 +4095 3168 4048 +4095 3172 4047 +4095 3178 4046 +4095 3185 4044 +4095 3195 4041 +4095 3207 4038 +4095 3223 4034 +4095 3244 4028 +4095 3270 4020 +4095 3303 4009 +4095 3344 3995 +4095 3393 3974 +4095 3452 3945 +4095 3520 3903 +4095 3597 3839 +4095 3684 3738 +4076 3779 3553 +0 606 834 +0 621 819 +0 640 798 +0 664 769 +0 695 726 +0 733 662 +0 779 559 +0 834 370 +0 899 0 +0 973 0 +0 1057 0 +0 1149 0 +0 1248 0 +0 1355 0 +0 1466 0 +0 1583 0 +0 1702 0 +0 1825 0 +0 1950 0 +0 2077 0 +0 2205 0 +0 2334 0 +0 2464 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3250 0 +0 3382 0 +0 3514 0 +0 3646 0 +0 611 856 +0 626 842 +0 645 822 +0 669 794 +0 699 753 +0 737 693 +0 782 598 +0 837 427 +0 902 2 +0 976 0 +0 1059 0 +0 1150 0 +0 1250 0 +0 1356 0 +0 1467 0 +0 1583 0 +0 1703 0 +0 1825 0 +0 1950 0 +0 2077 0 +0 2205 0 +0 2334 0 +0 2464 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +0 618 883 +0 632 870 +0 651 851 +0 675 825 +0 705 788 +0 742 732 +0 787 645 +0 841 495 +0 905 157 +0 979 0 +0 1061 0 +0 1152 0 +0 1251 0 +0 1357 0 +0 1468 0 +0 1584 0 +0 1703 0 +0 1826 0 +0 1951 0 +0 2077 0 +0 2205 0 +0 2334 0 +0 2464 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +0 627 918 +0 641 905 +0 659 888 +0 682 864 +0 712 829 +0 748 779 +0 793 702 +0 847 572 +0 910 306 +0 983 0 +0 1064 0 +0 1155 0 +0 1253 0 +0 1359 0 +0 1469 0 +0 1585 0 +0 1704 0 +0 1827 0 +0 1951 0 +0 2078 0 +0 2205 0 +0 2334 0 +0 2464 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +271 638 960 +198 652 948 +78 670 933 +0 693 911 +0 721 880 +0 757 835 +0 801 768 +0 854 657 +0 916 450 +0 988 0 +0 1069 0 +0 1159 0 +0 1256 0 +0 1361 0 +0 1471 0 +0 1586 0 +0 1705 0 +0 1827 0 +0 1952 0 +0 2078 0 +0 2206 0 +0 2335 0 +0 2464 0 +0 2594 0 +0 2725 0 +0 2856 0 +0 2987 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +595 653 1011 +561 667 1000 +511 684 986 +434 706 967 +305 734 940 +43 769 901 +0 812 843 +0 863 752 +0 924 591 +0 995 210 +0 1075 0 +0 1164 0 +0 1260 0 +0 1364 0 +0 1474 0 +0 1588 0 +0 1707 0 +0 1829 0 +0 1953 0 +0 2079 0 +0 2206 0 +0 2335 0 +0 2464 0 +0 2595 0 +0 2725 0 +0 2856 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +832 672 1071 +812 685 1062 +784 702 1050 +743 723 1033 +682 750 1010 +586 784 976 +413 825 928 +0 875 853 +0 935 729 +0 1004 483 +0 1082 0 +0 1170 0 +0 1265 0 +0 1368 0 +0 1477 0 +0 1591 0 +0 1709 0 +0 1830 0 +0 1954 0 +0 2080 0 +0 2207 0 +0 2335 0 +0 2465 0 +0 2595 0 +0 2725 0 +0 2856 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3382 0 +0 3514 0 +0 3646 0 +1029 697 1140 +1016 709 1133 +998 725 1122 +973 745 1108 +938 771 1089 +885 803 1061 +804 843 1021 +666 891 961 +375 949 866 +0 1016 698 +0 1093 282 +0 1178 0 +0 1272 0 +0 1374 0 +0 1481 0 +0 1594 0 +0 1711 0 +0 1832 0 +0 1955 0 +0 2081 0 +0 2208 0 +0 2336 0 +0 2465 0 +0 2595 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +1204 728 1220 +1195 739 1213 +1183 754 1205 +1167 773 1193 +1144 797 1176 +1111 828 1154 +1064 866 1121 +991 912 1074 +872 967 1002 +637 1032 883 +0 1106 652 +0 1189 0 +0 1281 0 +0 1381 0 +0 1487 0 +0 1599 0 +0 1715 0 +0 1835 0 +0 1957 0 +0 2082 0 +0 2209 0 +0 2337 0 +0 2466 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +1366 766 1308 +1360 777 1302 +1352 790 1295 +1340 808 1286 +1325 830 1272 +1303 859 1254 +1272 894 1228 +1228 938 1191 +1161 990 1137 +1052 1052 1052 +847 1123 905 +195 1203 583 +0 1293 0 +0 1390 0 +0 1494 0 +0 1604 0 +0 1719 0 +0 1838 0 +0 1960 0 +0 2084 0 +0 2210 0 +0 2338 0 +0 2467 0 +0 2596 0 +0 2727 0 +0 2857 0 +0 2988 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +1519 813 1404 +1515 822 1399 +1509 834 1394 +1501 850 1386 +1490 871 1375 +1475 897 1361 +1454 930 1341 +1425 970 1312 +1383 1019 1271 +1319 1077 1209 +1216 1145 1110 +1029 1222 933 +509 1308 469 +0 1402 0 +0 1504 0 +0 1612 0 +0 1725 0 +0 1843 0 +0 1963 0 +0 2087 0 +0 2213 0 +0 2340 0 +0 2468 0 +0 2597 0 +0 2727 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +1666 868 1507 +1663 877 1504 +1659 888 1499 +1653 902 1493 +1645 920 1484 +1635 944 1473 +1620 973 1457 +1600 1010 1435 +1572 1055 1404 +1531 1109 1359 +1469 1172 1290 +1372 1245 1179 +1196 1327 967 +741 1418 252 +0 1517 0 +0 1622 0 +0 1733 0 +0 1849 0 +0 1968 0 +0 2091 0 +0 2215 0 +0 2342 0 +0 2470 0 +0 2598 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +1809 933 1616 +1807 941 1613 +1804 950 1610 +1800 963 1605 +1794 979 1599 +1787 999 1590 +1776 1026 1578 +1762 1059 1561 +1742 1099 1537 +1715 1148 1504 +1675 1207 1455 +1615 1275 1381 +1520 1352 1257 +1352 1439 1010 +936 1533 0 +0 1635 0 +0 1743 0 +0 1857 0 +0 1974 0 +0 2095 0 +0 2219 0 +0 2344 0 +0 2472 0 +0 2600 0 +0 2729 0 +0 2859 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +1949 1008 1730 +1948 1014 1728 +1946 1022 1725 +1943 1033 1722 +1938 1047 1717 +1933 1065 1710 +1925 1088 1701 +1915 1116 1688 +1901 1152 1670 +1882 1196 1646 +1855 1249 1610 +1815 1312 1559 +1757 1383 1479 +1664 1465 1344 +1501 1555 1061 +1110 1652 0 +0 1757 0 +0 1867 0 +0 1983 0 +0 2102 0 +0 2224 0 +0 2348 0 +0 2474 0 +0 2602 0 +0 2731 0 +0 2860 0 +0 2991 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +2087 1092 1849 +2086 1097 1847 +2085 1104 1845 +2082 1113 1842 +2079 1124 1838 +2075 1140 1833 +2070 1159 1826 +2062 1184 1816 +2052 1215 1803 +2039 1254 1785 +2019 1300 1759 +1992 1357 1722 +1954 1422 1668 +1896 1497 1584 +1805 1581 1439 +1646 1674 1121 +1271 1774 0 +0 1881 0 +0 1993 0 +0 2110 0 +0 2230 0 +0 2353 0 +0 2478 0 +0 2605 0 +0 2733 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +2224 1184 1970 +2223 1189 1969 +2222 1194 1967 +2220 1201 1965 +2218 1211 1962 +2215 1224 1958 +2211 1240 1953 +2206 1261 1945 +2198 1287 1936 +2188 1320 1922 +2175 1361 1903 +2156 1410 1877 +2129 1469 1839 +2090 1537 1782 +2033 1615 1694 +1944 1702 1541 +1787 1797 1191 +1424 1899 0 +0 2007 0 +0 2121 0 +0 2238 0 +0 2359 0 +0 2483 0 +0 2608 0 +0 2736 0 +0 2864 0 +0 2993 0 +0 3123 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +2359 1284 2094 +2359 1288 2093 +2358 1292 2092 +2357 1298 2090 +2355 1306 2088 +2353 1316 2085 +2350 1329 2081 +2346 1346 2075 +2340 1368 2068 +2333 1396 2058 +2323 1431 2044 +2309 1474 2025 +2291 1525 1998 +2264 1586 1959 +2226 1656 1901 +2169 1736 1810 +2080 1825 1649 +1926 1921 1271 +1571 2025 0 +0 2135 0 +0 2249 0 +0 2368 0 +0 2489 0 +0 2613 0 +0 2739 0 +0 2867 0 +0 2995 0 +0 3125 0 +0 3255 0 +0 3386 0 +0 3517 0 +0 3648 0 +2494 1391 2220 +2493 1393 2219 +2493 1397 2218 +2492 1402 2217 +2491 1408 2215 +2489 1416 2213 +2487 1427 2210 +2484 1441 2206 +2480 1459 2200 +2474 1482 2193 +2467 1511 2183 +2457 1547 2168 +2444 1591 2149 +2425 1644 2121 +2398 1706 2082 +2361 1779 2022 +2304 1860 1929 +2216 1950 1763 +2063 2048 1359 +1714 2153 0 +0 2263 0 +0 2378 0 +0 2498 0 +0 2620 0 +0 2744 0 +0 2871 0 +0 2998 0 +0 3127 0 +0 3257 0 +0 3387 0 +0 3518 0 +0 3649 0 +2628 1503 2347 +2627 1505 2347 +2627 1508 2346 +2626 1511 2345 +2625 1516 2344 +2624 1523 2342 +2622 1531 2340 +2620 1542 2337 +2617 1557 2333 +2613 1575 2327 +2608 1599 2319 +2601 1629 2309 +2591 1666 2295 +2577 1711 2275 +2559 1766 2247 +2532 1830 2207 +2495 1903 2146 +2438 1986 2051 +2351 2077 1881 +2199 2176 1456 +1853 2281 0 +0 2393 0 +0 2509 0 +0 2628 0 +0 2751 0 +0 2875 0 +0 3002 0 +0 3130 0 +0 3259 0 +0 3388 0 +0 3519 0 +0 3650 0 +2761 1619 2476 +2761 1621 2476 +2760 1623 2475 +2760 1626 2474 +2759 1630 2473 +2758 1635 2472 +2757 1641 2470 +2756 1650 2468 +2753 1661 2465 +2750 1676 2461 +2747 1695 2455 +2741 1720 2447 +2734 1750 2437 +2724 1788 2422 +2711 1835 2402 +2692 1890 2374 +2666 1955 2333 +2628 2029 2272 +2572 2113 2176 +2485 2205 2002 +2333 2305 1559 +1991 2411 0 +0 2523 0 +0 2639 0 +0 2759 0 +0 2882 0 +0 3007 0 +0 3134 0 +0 3262 0 +0 3391 0 +0 3520 0 +0 3651 0 +2894 1739 2605 +2894 1740 2605 +2894 1742 2605 +2893 1744 2604 +2893 1747 2603 +2892 1751 2602 +2891 1756 2601 +2890 1763 2599 +2888 1772 2597 +2886 1784 2594 +2883 1799 2590 +2879 1818 2584 +2874 1843 2576 +2867 1874 2566 +2857 1913 2551 +2844 1960 2531 +2825 2016 2502 +2799 2082 2461 +2761 2157 2400 +2705 2241 2302 +2618 2334 2125 +2468 2434 1668 +2128 2541 0 +0 2653 0 +0 2770 0 +0 2890 0 +0 3013 0 +0 3138 0 +0 3265 0 +0 3393 0 +0 3522 0 +0 3652 0 +3027 1862 2735 +3027 1863 2735 +3027 1864 2735 +3026 1866 2735 +3026 1868 2734 +3026 1871 2733 +3025 1875 2732 +3024 1880 2731 +3023 1887 2729 +3021 1896 2727 +3019 1908 2724 +3016 1924 2720 +3012 1943 2714 +3007 1969 2706 +3000 2000 2695 +2990 2039 2681 +2976 2087 2660 +2958 2144 2632 +2932 2210 2590 +2894 2286 2528 +2838 2371 2430 +2752 2464 2251 +2601 2565 1783 +2263 2672 0 +0 2784 0 +0 2901 0 +0 3022 0 +0 3145 0 +0 3270 0 +0 3397 0 +0 3525 0 +0 3654 0 +3160 1987 2866 +3160 1988 2866 +3159 1989 2866 +3159 1990 2865 +3159 1992 2865 +3159 1994 2864 +3158 1997 2864 +3157 2001 2863 +3157 2006 2861 +3155 2013 2860 +3154 2023 2857 +3152 2035 2854 +3149 2050 2850 +3145 2070 2844 +3139 2096 2836 +3132 2128 2826 +3122 2167 2811 +3109 2215 2791 +3090 2272 2762 +3064 2339 2720 +3027 2415 2658 +2971 2501 2558 +2884 2594 2378 +2734 2696 1901 +2397 2803 0 +0 2916 0 +0 3033 0 +0 3153 0 +0 3277 0 +0 3402 0 +0 3529 0 +0 3657 0 +3292 2114 2997 +3292 2114 2997 +3292 2115 2997 +3292 2116 2997 +3292 2117 2996 +3291 2119 2996 +3291 2121 2995 +3291 2124 2995 +3290 2128 2994 +3289 2134 2992 +3288 2141 2990 +3286 2150 2988 +3284 2162 2985 +3281 2178 2981 +3277 2198 2975 +3272 2224 2967 +3265 2256 2956 +3255 2296 2942 +3241 2344 2921 +3223 2402 2892 +3197 2469 2851 +3159 2546 2788 +3104 2631 2688 +3017 2725 2507 +2867 2827 2023 +2531 2934 0 +0 3047 0 +0 3164 0 +0 3285 0 +0 3408 0 +0 3534 0 +0 3661 0 +3425 2242 3128 +3425 2242 3128 +3425 2243 3128 +3424 2244 3128 +3424 2245 3128 +3424 2246 3127 +3424 2248 3127 +3423 2250 3126 +3423 2253 3126 +3422 2257 3125 +3421 2262 3123 +3420 2270 3122 +3418 2279 3119 +3416 2291 3116 +3413 2307 3112 +3410 2327 3106 +3404 2353 3098 +3397 2386 3087 +3387 2426 3073 +3374 2474 3052 +3355 2532 3023 +3329 2600 2981 +3292 2676 2919 +3236 2762 2818 +3150 2856 2636 +3000 2958 2147 +2665 3066 0 +0 3179 0 +0 3296 0 +0 3417 0 +0 3540 0 +0 3666 0 +3557 2371 3260 +3557 2371 3260 +3557 2372 3260 +3557 2372 3259 +3557 2373 3259 +3557 2374 3259 +3556 2375 3259 +3556 2377 3258 +3556 2379 3258 +3555 2382 3257 +3554 2387 3256 +3554 2392 3255 +3552 2399 3253 +3551 2409 3251 +3549 2421 3247 +3546 2437 3243 +3542 2457 3237 +3537 2483 3230 +3529 2516 3219 +3520 2556 3204 +3506 2605 3183 +3488 2663 3154 +3461 2730 3113 +3424 2807 3050 +3369 2894 2949 +3282 2988 2766 +3133 3090 2273 +2798 3197 0 +0 3311 0 +0 3428 0 +0 3549 0 +0 3672 0 +3689 2501 3391 +3689 2501 3391 +3689 2501 3391 +3689 2502 3391 +3689 2502 3391 +3689 2503 3391 +3689 2504 3391 +3689 2505 3390 +3688 2507 3390 +3688 2509 3389 +3687 2513 3389 +3687 2517 3388 +3686 2522 3386 +3685 2529 3385 +3683 2539 3382 +3681 2551 3379 +3678 2567 3375 +3674 2588 3369 +3669 2614 3361 +3662 2646 3350 +3652 2687 3336 +3638 2736 3315 +3620 2794 3286 +3594 2862 3244 +3556 2939 3181 +3501 3025 3080 +3414 3119 2897 +3265 3221 2400 +2931 3329 0 +0 3442 0 +0 3560 0 +0 3681 0 +3821 2631 3523 +3821 2631 3523 +3821 2632 3523 +3821 2632 3523 +3821 2632 3523 +3821 2633 3523 +3821 2634 3523 +3821 2635 3522 +3821 2636 3522 +3820 2638 3522 +3820 2640 3521 +3820 2643 3520 +3819 2647 3519 +3818 2653 3518 +3817 2660 3516 +3815 2669 3514 +3813 2682 3511 +3810 2698 3506 +3806 2718 3501 +3801 2745 3493 +3794 2777 3482 +3784 2818 3467 +3771 2867 3447 +3752 2925 3418 +3726 2993 3375 +3689 3070 3312 +3633 3157 3211 +3547 3251 3028 +3397 3353 2529 +3063 3461 0 +0 3574 0 +0 3692 0 +3954 2762 3655 +3954 2762 3655 +3954 2762 3655 +3954 2762 3655 +3954 2763 3655 +3953 2763 3655 +3953 2764 3655 +3953 2765 3654 +3953 2766 3654 +3953 2767 3654 +3953 2769 3653 +3952 2771 3653 +3952 2774 3652 +3951 2778 3651 +3950 2784 3650 +3949 2791 3648 +3947 2800 3646 +3945 2813 3643 +3942 2829 3638 +3938 2850 3632 +3933 2876 3625 +3926 2909 3614 +3916 2949 3599 +3903 2998 3578 +3884 3057 3549 +3858 3125 3507 +3821 3202 3444 +3765 3288 3343 +3679 3383 3159 +3530 3485 2658 +3196 3593 0 +0 3706 0 +4086 2893 3787 +4086 2893 3787 +4086 2893 3787 +4086 2893 3787 +4086 2894 3787 +4086 2894 3787 +4086 2894 3787 +4086 2895 3786 +4085 2896 3786 +4085 2897 3786 +4085 2898 3786 +4085 2900 3785 +4084 2902 3785 +4084 2905 3784 +4083 2909 3783 +4082 2915 3782 +4081 2922 3780 +4080 2932 3778 +4077 2944 3774 +4074 2960 3770 +4071 2981 3764 +4065 3007 3756 +4058 3040 3746 +4048 3081 3731 +4035 3130 3710 +4016 3188 3681 +3990 3256 3639 +3953 3334 3576 +3898 3420 3475 +3811 3515 3290 +3662 3617 2788 +3328 3725 0 +4095 3024 3919 +4095 3025 3919 +4095 3025 3919 +4095 3025 3919 +4095 3025 3919 +4095 3025 3919 +4095 3025 3919 +4095 3026 3918 +4095 3026 3918 +4095 3027 3918 +4095 3028 3918 +4095 3030 3918 +4095 3031 3917 +4095 3034 3917 +4095 3037 3916 +4095 3041 3915 +4095 3046 3914 +4095 3054 3912 +4095 3063 3910 +4095 3076 3906 +4095 3092 3902 +4095 3113 3896 +4095 3139 3888 +4095 3172 3878 +4095 3212 3863 +4095 3262 3842 +4095 3320 3813 +4095 3388 3771 +4085 3466 3708 +4030 3552 3606 +3943 3647 3422 +3794 3749 2919 +4095 3156 4051 +4095 3156 4051 +4095 3156 4051 +4095 3156 4051 +4095 3156 4051 +4095 3157 4051 +4095 3157 4051 +4095 3157 4051 +4095 3158 4050 +4095 3158 4050 +4095 3159 4050 +4095 3160 4050 +4095 3161 4050 +4095 3163 4049 +4095 3165 4049 +4095 3168 4048 +4095 3173 4047 +4095 3178 4046 +4095 3185 4044 +4095 3195 4041 +4095 3207 4038 +4095 3224 4034 +4095 3244 4028 +4095 3271 4020 +4095 3304 4009 +4095 3344 3995 +4095 3393 3974 +4095 3452 3945 +4095 3520 3903 +4095 3597 3839 +4095 3684 3738 +4076 3779 3554 +0 723 961 +0 734 949 +0 749 934 +0 769 912 +0 793 881 +0 824 837 +0 862 769 +0 908 660 +0 964 453 +0 1029 0 +0 1104 0 +0 1187 0 +0 1280 0 +0 1380 0 +0 1486 0 +0 1598 0 +0 1714 0 +0 1834 0 +0 1957 0 +0 2082 0 +0 2209 0 +0 2337 0 +0 2466 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +0 727 977 +0 738 966 +0 753 951 +0 772 930 +0 796 901 +0 827 858 +0 865 794 +0 911 691 +0 966 502 +0 1031 0 +0 1105 0 +0 1189 0 +0 1281 0 +0 1380 0 +0 1487 0 +0 1598 0 +0 1715 0 +0 1835 0 +0 1957 0 +0 2082 0 +0 2209 0 +0 2337 0 +0 2466 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +0 732 998 +0 743 988 +0 758 974 +0 777 954 +0 801 926 +0 831 886 +0 869 825 +0 915 730 +0 969 560 +0 1034 134 +0 1108 0 +0 1191 0 +0 1282 0 +0 1382 0 +0 1488 0 +0 1599 0 +0 1715 0 +0 1835 0 +0 1958 0 +0 2082 0 +0 2209 0 +0 2337 0 +0 2466 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +0 739 1025 +0 750 1015 +0 764 1002 +0 783 983 +0 807 957 +0 837 920 +0 874 864 +0 919 777 +0 973 627 +0 1037 289 +0 1111 0 +0 1193 0 +0 1284 0 +0 1383 0 +0 1489 0 +0 1600 0 +0 1716 0 +0 1836 0 +0 1958 0 +0 2083 0 +0 2209 0 +0 2337 0 +0 2466 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +0 748 1059 +0 759 1050 +0 773 1037 +0 791 1020 +0 815 996 +0 844 962 +0 880 911 +0 925 834 +0 979 704 +0 1042 438 +0 1115 0 +0 1197 0 +0 1287 0 +0 1386 0 +0 1491 0 +0 1602 0 +0 1717 0 +0 1836 0 +0 1959 0 +0 2083 0 +0 2210 0 +0 2338 0 +0 2466 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3119 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +450 760 1100 +403 770 1092 +330 784 1080 +210 802 1065 +0 825 1043 +0 853 1012 +0 889 967 +0 933 900 +0 986 790 +0 1048 582 +0 1120 0 +0 1201 0 +0 1291 0 +0 1388 0 +0 1493 0 +0 1603 0 +0 1718 0 +0 1837 0 +0 1960 0 +0 2084 0 +0 2210 0 +0 2338 0 +0 2467 0 +0 2596 0 +0 2726 0 +0 2857 0 +0 2988 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +751 775 1150 +727 785 1143 +693 799 1132 +643 816 1119 +566 838 1099 +437 866 1072 +175 901 1033 +0 944 975 +0 995 884 +0 1056 723 +0 1127 342 +0 1207 0 +0 1296 0 +0 1392 0 +0 1496 0 +0 1606 0 +0 1720 0 +0 1839 0 +0 1961 0 +0 2085 0 +0 2211 0 +0 2338 0 +0 2467 0 +0 2597 0 +0 2727 0 +0 2857 0 +0 2988 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3514 0 +0 3646 0 +978 795 1209 +964 805 1203 +944 817 1194 +916 834 1182 +875 855 1165 +814 882 1142 +718 916 1108 +545 957 1060 +108 1008 985 +0 1067 862 +0 1136 615 +0 1215 0 +0 1302 0 +0 1397 0 +0 1500 0 +0 1609 0 +0 1723 0 +0 1841 0 +0 1962 0 +0 2086 0 +0 2212 0 +0 2339 0 +0 2468 0 +0 2597 0 +0 2727 0 +0 2858 0 +0 2988 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +1170 820 1278 +1161 829 1273 +1148 841 1265 +1130 857 1255 +1105 877 1240 +1070 903 1221 +1017 935 1193 +936 975 1153 +798 1023 1093 +507 1081 998 +0 1148 830 +0 1225 414 +0 1310 0 +0 1404 0 +0 1506 0 +0 1613 0 +0 1726 0 +0 1843 0 +0 1964 0 +0 2087 0 +0 2213 0 +0 2340 0 +0 2468 0 +0 2597 0 +0 2727 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +1343 851 1356 +1336 860 1352 +1327 871 1345 +1316 886 1337 +1299 905 1325 +1276 929 1308 +1244 960 1286 +1196 998 1253 +1123 1044 1206 +1004 1099 1134 +769 1164 1015 +0 1238 784 +0 1321 0 +0 1413 0 +0 1513 0 +0 1619 0 +0 1731 0 +0 1847 0 +0 1967 0 +0 2089 0 +0 2214 0 +0 2341 0 +0 2469 0 +0 2598 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +1502 890 1444 +1498 898 1440 +1492 909 1434 +1484 922 1427 +1472 940 1418 +1457 962 1404 +1435 991 1386 +1405 1026 1360 +1360 1070 1323 +1293 1122 1269 +1184 1184 1184 +979 1255 1037 +327 1335 715 +0 1425 0 +0 1522 0 +0 1626 0 +0 1736 0 +0 1851 0 +0 1970 0 +0 2092 0 +0 2216 0 +0 2343 0 +0 2470 0 +0 2599 0 +0 2728 0 +0 2859 0 +0 2989 0 +0 3120 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +1654 938 1539 +1651 945 1536 +1647 954 1532 +1641 967 1526 +1633 982 1518 +1622 1003 1507 +1607 1029 1493 +1586 1062 1473 +1557 1102 1444 +1515 1151 1403 +1451 1209 1341 +1349 1277 1243 +1161 1354 1065 +641 1440 601 +0 1534 0 +0 1636 0 +0 1744 0 +0 1857 0 +0 1975 0 +0 2096 0 +0 2219 0 +0 2345 0 +0 2472 0 +0 2600 0 +0 2729 0 +0 2859 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +1801 994 1642 +1798 1000 1639 +1795 1009 1636 +1791 1020 1631 +1785 1034 1625 +1778 1052 1617 +1767 1076 1605 +1752 1105 1589 +1732 1142 1567 +1704 1187 1536 +1663 1241 1491 +1601 1304 1423 +1504 1377 1311 +1328 1459 1099 +874 1550 384 +0 1649 0 +0 1754 0 +0 1865 0 +0 1981 0 +0 2100 0 +0 2223 0 +0 2347 0 +0 2474 0 +0 2602 0 +0 2731 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +1943 1060 1750 +1941 1066 1748 +1939 1073 1746 +1936 1082 1742 +1932 1095 1737 +1926 1111 1731 +1919 1132 1722 +1908 1158 1710 +1894 1191 1693 +1874 1231 1670 +1847 1281 1636 +1807 1339 1587 +1747 1407 1513 +1652 1484 1389 +1484 1571 1142 +1068 1665 0 +0 1767 0 +0 1876 0 +0 1989 0 +0 2106 0 +0 2227 0 +0 2351 0 +0 2477 0 +0 2604 0 +0 2732 0 +0 2861 0 +0 2991 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3515 0 +0 3647 0 +2083 1136 1864 +2082 1140 1862 +2080 1146 1860 +2078 1155 1858 +2075 1165 1854 +2071 1179 1849 +2065 1197 1842 +2058 1220 1833 +2047 1249 1820 +2033 1284 1802 +2014 1328 1778 +1987 1381 1743 +1947 1444 1691 +1889 1516 1611 +1796 1597 1476 +1633 1687 1193 +1242 1784 0 +0 1889 0 +0 1999 0 +0 2115 0 +0 2234 0 +0 2356 0 +0 2480 0 +0 2606 0 +0 2734 0 +0 2863 0 +0 2993 0 +0 3123 0 +0 3253 0 +0 3385 0 +0 3516 0 +0 3647 0 +2221 1220 1982 +2220 1224 1981 +2218 1229 1979 +2217 1236 1977 +2214 1245 1974 +2211 1257 1970 +2207 1272 1965 +2202 1291 1958 +2195 1316 1948 +2185 1347 1935 +2171 1386 1917 +2151 1433 1891 +2124 1489 1854 +2086 1554 1800 +2028 1629 1716 +1937 1713 1571 +1778 1806 1253 +1403 1906 0 +0 2013 0 +0 2125 0 +0 2242 0 +0 2362 0 +0 2485 0 +0 2610 0 +0 2737 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +2357 1313 2103 +2356 1316 2102 +2355 1321 2101 +2354 1326 2099 +2352 1334 2097 +2350 1343 2094 +2347 1356 2090 +2343 1372 2085 +2338 1393 2078 +2330 1419 2068 +2320 1452 2054 +2307 1493 2035 +2288 1543 2009 +2261 1601 1971 +2222 1669 1915 +2165 1747 1826 +2076 1834 1673 +1919 1929 1323 +1556 2031 0 +0 2139 0 +0 2253 0 +0 2370 0 +0 2491 0 +0 2615 0 +0 2741 0 +0 2868 0 +0 2996 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +2492 1414 2227 +2491 1416 2226 +2491 1420 2225 +2490 1424 2224 +2489 1430 2222 +2487 1438 2220 +2485 1448 2217 +2482 1461 2213 +2478 1479 2208 +2472 1501 2200 +2465 1528 2190 +2455 1563 2176 +2442 1606 2157 +2423 1657 2130 +2396 1718 2091 +2358 1788 2033 +2301 1868 1942 +2213 1957 1782 +2058 2053 1403 +1703 2157 0 +0 2267 0 +0 2381 0 +0 2500 0 +0 2621 0 +0 2745 0 +0 2871 0 +0 2999 0 +0 3128 0 +0 3257 0 +0 3387 0 +0 3518 0 +0 3649 0 +2626 1521 2353 +2626 1523 2352 +2625 1526 2351 +2625 1529 2350 +2624 1534 2349 +2623 1540 2347 +2621 1548 2345 +2619 1559 2342 +2616 1573 2338 +2612 1591 2332 +2607 1614 2325 +2599 1643 2315 +2589 1679 2301 +2576 1723 2281 +2557 1776 2253 +2531 1839 2214 +2493 1911 2154 +2436 1992 2061 +2348 2082 1895 +2195 2180 1491 +1846 2285 0 +0 2395 0 +0 2511 0 +0 2630 0 +0 2752 0 +0 2876 0 +0 3003 0 +0 3130 0 +0 3259 0 +0 3389 0 +0 3519 0 +0 3650 0 +2760 1633 2480 +2760 1635 2479 +2759 1637 2479 +2759 1640 2478 +2758 1643 2477 +2757 1648 2476 +2756 1655 2474 +2755 1663 2472 +2752 1674 2469 +2749 1689 2465 +2745 1707 2459 +2740 1731 2451 +2733 1761 2441 +2723 1798 2427 +2710 1843 2407 +2691 1898 2379 +2664 1962 2339 +2627 2035 2278 +2571 2118 2183 +2483 2209 2013 +2331 2308 1588 +1986 2414 0 +0 2525 0 +0 2641 0 +0 2760 0 +0 2883 0 +0 3007 0 +0 3134 0 +0 3262 0 +0 3391 0 +0 3521 0 +0 3651 0 +2893 1750 2608 +2893 1751 2608 +2893 1753 2608 +2893 1755 2607 +2892 1758 2606 +2891 1762 2605 +2891 1767 2604 +2889 1773 2602 +2888 1782 2600 +2886 1793 2597 +2883 1808 2593 +2879 1827 2587 +2873 1852 2579 +2866 1882 2569 +2856 1920 2554 +2843 1967 2534 +2824 2022 2506 +2798 2087 2465 +2760 2161 2404 +2704 2245 2308 +2617 2337 2134 +2465 2437 1691 +2123 2543 0 +0 2655 0 +0 2771 0 +0 2891 0 +0 3014 0 +0 3139 0 +0 3266 0 +0 3394 0 +0 3523 0 +0 3652 0 +3026 1870 2738 +3026 1871 2737 +3026 1873 2737 +3026 1874 2737 +3025 1876 2736 +3025 1879 2735 +3024 1883 2735 +3023 1888 2733 +3022 1895 2732 +3021 1904 2729 +3018 1916 2726 +3015 1931 2722 +3012 1950 2716 +3006 1975 2708 +2999 2006 2698 +2989 2045 2683 +2976 2092 2663 +2957 2148 2635 +2931 2214 2593 +2893 2289 2532 +2838 2373 2434 +2750 2466 2258 +2600 2567 1800 +2260 2673 0 +0 2786 0 +0 2902 0 +0 3022 0 +0 3145 0 +0 3270 0 +0 3397 0 +0 3525 0 +0 3655 0 +3159 1993 2868 +3159 1994 2868 +3159 1995 2867 +3159 1996 2867 +3159 1998 2867 +3158 2000 2866 +3158 2003 2865 +3157 2007 2864 +3156 2012 2863 +3155 2019 2861 +3153 2028 2859 +3151 2040 2856 +3148 2056 2852 +3144 2075 2846 +3139 2101 2838 +3132 2132 2827 +3122 2172 2813 +3109 2219 2793 +3090 2276 2764 +3064 2342 2723 +3026 2418 2661 +2971 2503 2562 +2884 2596 2383 +2733 2697 1915 +2395 2804 0 +0 2917 0 +0 3033 0 +0 3154 0 +0 3277 0 +0 3402 0 +0 3529 0 +0 3657 0 +3292 2119 2998 +3292 2119 2998 +3292 2120 2998 +3292 2121 2998 +3291 2122 2997 +3291 2124 2997 +3291 2126 2997 +3290 2129 2996 +3290 2133 2995 +3289 2138 2994 +3287 2145 2992 +3286 2155 2989 +3284 2167 2986 +3281 2182 2982 +3277 2202 2976 +3272 2228 2968 +3264 2260 2958 +3255 2299 2943 +3241 2347 2923 +3222 2405 2894 +3196 2471 2852 +3159 2548 2790 +3103 2633 2691 +3017 2727 2510 +2866 2828 2033 +2530 2935 0 +0 3048 0 +0 3165 0 +0 3285 0 +0 3409 0 +0 3534 0 +0 3661 0 +3424 2246 3129 +3424 2246 3129 +3424 2246 3129 +3424 2247 3129 +3424 2248 3129 +3424 2249 3128 +3424 2251 3128 +3423 2253 3127 +3423 2257 3127 +3422 2261 3126 +3421 2266 3124 +3420 2273 3123 +3418 2282 3120 +3416 2294 3117 +3413 2310 3113 +3409 2330 3107 +3404 2356 3099 +3397 2388 3088 +3387 2428 3074 +3374 2477 3053 +3355 2534 3024 +3329 2601 2983 +3291 2678 2920 +3236 2763 2820 +3149 2857 2639 +2999 2959 2155 +2663 3066 0 +0 3179 0 +0 3297 0 +0 3417 0 +0 3540 0 +0 3666 0 +3557 2374 3260 +3557 2374 3260 +3557 2374 3260 +3557 2375 3260 +3556 2376 3260 +3556 2377 3260 +3556 2378 3259 +3556 2380 3259 +3555 2382 3259 +3555 2385 3258 +3554 2389 3257 +3553 2395 3255 +3552 2402 3254 +3551 2411 3251 +3548 2423 3248 +3546 2439 3244 +3542 2459 3238 +3536 2485 3230 +3529 2518 3220 +3519 2558 3205 +3506 2607 3184 +3487 2664 3155 +3461 2732 3114 +3424 2808 3051 +3368 2894 2950 +3282 2989 2768 +3132 3090 2279 +2797 3198 0 +0 3311 0 +0 3428 0 +0 3549 0 +0 3672 0 +3689 2503 3392 +3689 2503 3392 +3689 2503 3392 +3689 2504 3392 +3689 2504 3392 +3689 2505 3391 +3689 2506 3391 +3688 2507 3391 +3688 2509 3390 +3688 2511 3390 +3687 2515 3389 +3687 2519 3388 +3686 2524 3387 +3684 2531 3385 +3683 2541 3383 +3681 2553 3380 +3678 2569 3375 +3674 2589 3369 +3669 2615 3362 +3661 2648 3351 +3652 2688 3336 +3638 2737 3316 +3620 2795 3287 +3594 2863 3245 +3556 2940 3182 +3501 3026 3081 +3414 3120 2898 +3265 3222 2405 +2930 3330 0 +0 3443 0 +0 3560 0 +0 3681 0 +3821 2633 3524 +3821 2633 3523 +3821 2633 3523 +3821 2633 3523 +3821 2634 3523 +3821 2634 3523 +3821 2635 3523 +3821 2636 3523 +3821 2637 3522 +3820 2639 3522 +3820 2642 3521 +3819 2645 3521 +3819 2649 3520 +3818 2654 3518 +3817 2661 3517 +3815 2671 3514 +3813 2683 3511 +3810 2699 3507 +3806 2720 3501 +3801 2746 3493 +3794 2779 3482 +3784 2819 3468 +3770 2868 3447 +3752 2926 3418 +3726 2994 3376 +3688 3071 3313 +3633 3157 3212 +3547 3252 3029 +3397 3353 2532 +3063 3461 0 +0 3575 0 +0 3692 0 +3954 2763 3655 +3954 2763 3655 +3954 2763 3655 +3954 2764 3655 +3953 2764 3655 +3953 2764 3655 +3953 2765 3655 +3953 2766 3655 +3953 2767 3654 +3953 2768 3654 +3953 2770 3654 +3952 2772 3653 +3952 2775 3652 +3951 2779 3651 +3950 2785 3650 +3949 2792 3648 +3947 2802 3646 +3945 2814 3643 +3942 2830 3639 +3938 2851 3633 +3933 2877 3625 +3926 2910 3614 +3916 2950 3599 +3903 2999 3579 +3884 3057 3550 +3858 3125 3508 +3821 3202 3444 +3765 3289 3344 +3679 3383 3160 +3529 3485 2661 +3195 3593 0 +0 3706 0 +4086 2894 3787 +4086 2894 3787 +4086 2894 3787 +4086 2894 3787 +4086 2895 3787 +4086 2895 3787 +4086 2895 3787 +4085 2896 3787 +4085 2897 3786 +4085 2898 3786 +4085 2899 3786 +4085 2901 3786 +4084 2903 3785 +4084 2906 3784 +4083 2910 3783 +4082 2916 3782 +4081 2923 3780 +4079 2933 3778 +4077 2945 3775 +4074 2961 3770 +4071 2982 3765 +4065 3008 3757 +4058 3041 3746 +4048 3081 3731 +4035 3130 3710 +4016 3189 3681 +3990 3257 3639 +3953 3334 3576 +3898 3420 3475 +3811 3515 3291 +3662 3617 2790 +3328 3725 0 +4095 3025 3919 +4095 3025 3919 +4095 3025 3919 +4095 3025 3919 +4095 3026 3919 +4095 3026 3919 +4095 3026 3919 +4095 3027 3919 +4095 3027 3919 +4095 3028 3918 +4095 3029 3918 +4095 3030 3918 +4095 3032 3917 +4095 3034 3917 +4095 3037 3916 +4095 3042 3915 +4095 3047 3914 +4095 3054 3912 +4095 3064 3910 +4095 3076 3906 +4095 3092 3902 +4095 3113 3896 +4095 3139 3888 +4095 3172 3878 +4095 3213 3863 +4095 3262 3842 +4095 3320 3813 +4095 3388 3771 +4085 3466 3708 +4030 3552 3607 +3943 3647 3422 +3794 3749 2920 +4095 3156 4051 +4095 3157 4051 +4095 3157 4051 +4095 3157 4051 +4095 3157 4051 +4095 3157 4051 +4095 3157 4051 +4095 3158 4051 +4095 3158 4051 +4095 3159 4050 +4095 3159 4050 +4095 3160 4050 +4095 3162 4050 +4095 3163 4049 +4095 3166 4049 +4095 3169 4048 +4095 3173 4047 +4095 3179 4046 +4095 3186 4044 +4095 3195 4042 +4095 3208 4038 +4095 3224 4034 +4095 3245 4028 +4095 3271 4020 +4095 3304 4010 +4095 3345 3995 +4095 3394 3974 +4095 3452 3945 +4095 3520 3903 +4095 3598 3840 +4095 3684 3738 +4075 3779 3554 +0 843 1089 +0 852 1080 +0 864 1068 +0 879 1052 +0 898 1030 +0 923 998 +0 954 952 +0 992 882 +0 1039 767 +0 1094 545 +0 1160 0 +0 1234 0 +0 1318 0 +0 1411 0 +0 1511 0 +0 1617 0 +0 1729 0 +0 1846 0 +0 1966 0 +0 2089 0 +0 2214 0 +0 2341 0 +0 2469 0 +0 2598 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +0 846 1101 +0 855 1093 +0 867 1082 +0 881 1066 +0 901 1044 +0 925 1013 +0 956 969 +0 994 901 +0 1041 792 +0 1096 585 +0 1161 0 +0 1236 0 +0 1319 0 +0 1412 0 +0 1512 0 +0 1618 0 +0 1730 0 +0 1846 0 +0 1966 0 +0 2089 0 +0 2214 0 +0 2341 0 +0 2469 0 +0 2598 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +0 850 1117 +0 859 1109 +0 870 1098 +0 885 1083 +0 904 1063 +0 928 1033 +0 959 990 +0 997 926 +0 1043 823 +0 1098 634 +0 1163 101 +0 1237 0 +0 1321 0 +0 1413 0 +0 1513 0 +0 1619 0 +0 1730 0 +0 1847 0 +0 1967 0 +0 2089 0 +0 2214 0 +0 2341 0 +0 2469 0 +0 2598 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +0 856 1138 +0 864 1130 +0 875 1120 +0 890 1106 +0 909 1086 +0 933 1058 +0 963 1018 +0 1001 957 +0 1047 862 +0 1101 692 +0 1166 266 +0 1240 0 +0 1323 0 +0 1414 0 +0 1514 0 +0 1620 0 +0 1731 0 +0 1847 0 +0 1967 0 +0 2090 0 +0 2215 0 +0 2341 0 +0 2469 0 +0 2598 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3251 0 +0 3383 0 +0 3515 0 +0 3646 0 +0 863 1164 +0 871 1157 +0 882 1147 +0 897 1134 +0 915 1115 +0 939 1089 +0 969 1052 +0 1006 996 +0 1051 909 +0 1106 759 +0 1169 421 +0 1243 0 +0 1325 0 +0 1417 0 +0 1515 0 +0 1621 0 +0 1732 0 +0 1848 0 +0 1968 0 +0 2090 0 +0 2215 0 +0 2341 0 +0 2469 0 +0 2598 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3646 0 +133 872 1198 +32 880 1191 +0 891 1182 +0 905 1169 +0 923 1152 +0 947 1128 +0 976 1094 +0 1013 1043 +0 1057 966 +0 1111 836 +0 1174 570 +0 1247 0 +0 1329 0 +0 1419 0 +0 1518 0 +0 1623 0 +0 1734 0 +0 1849 0 +0 1968 0 +0 2091 0 +0 2215 0 +0 2342 0 +0 2470 0 +0 2599 0 +0 2728 0 +0 2858 0 +0 2989 0 +0 3120 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +615 884 1238 +582 892 1232 +535 902 1224 +462 916 1213 +342 934 1197 +107 957 1175 +0 986 1144 +0 1021 1100 +0 1065 1032 +0 1118 922 +0 1180 714 +0 1252 39 +0 1333 0 +0 1423 0 +0 1521 0 +0 1625 0 +0 1735 0 +0 1851 0 +0 1970 0 +0 2092 0 +0 2216 0 +0 2342 0 +0 2470 0 +0 2599 0 +0 2728 0 +0 2859 0 +0 2989 0 +0 3120 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +901 899 1288 +883 907 1282 +859 917 1275 +825 931 1265 +775 948 1251 +698 970 1231 +569 998 1204 +307 1033 1165 +0 1076 1107 +0 1127 1016 +0 1188 855 +0 1259 474 +0 1339 0 +0 1428 0 +0 1524 0 +0 1628 0 +0 1738 0 +0 1852 0 +0 1971 0 +0 2093 0 +0 2217 0 +0 2343 0 +0 2470 0 +0 2599 0 +0 2729 0 +0 2859 0 +0 2989 0 +0 3120 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +1121 919 1346 +1110 927 1341 +1096 937 1335 +1076 949 1326 +1048 966 1314 +1007 987 1297 +947 1014 1274 +850 1048 1241 +677 1089 1192 +240 1140 1117 +0 1199 994 +0 1268 747 +0 1347 0 +0 1434 0 +0 1530 0 +0 1632 0 +0 1741 0 +0 1855 0 +0 1973 0 +0 2094 0 +0 2218 0 +0 2344 0 +0 2471 0 +0 2600 0 +0 2729 0 +0 2859 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +1309 945 1414 +1302 952 1410 +1293 961 1405 +1280 973 1397 +1262 989 1387 +1237 1009 1372 +1202 1035 1353 +1149 1067 1325 +1068 1107 1285 +930 1156 1225 +639 1213 1130 +0 1280 962 +0 1357 546 +0 1442 0 +0 1536 0 +0 1638 0 +0 1745 0 +0 1858 0 +0 1976 0 +0 2096 0 +0 2220 0 +0 2345 0 +0 2472 0 +0 2600 0 +0 2729 0 +0 2859 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +1479 977 1492 +1475 983 1488 +1468 992 1484 +1460 1003 1477 +1448 1018 1469 +1431 1037 1457 +1408 1061 1441 +1376 1092 1418 +1328 1130 1385 +1255 1176 1338 +1136 1231 1266 +901 1296 1148 +0 1370 916 +0 1453 0 +0 1545 0 +0 1645 0 +0 1751 0 +0 1863 0 +0 1979 0 +0 2099 0 +0 2221 0 +0 2346 0 +0 2473 0 +0 2601 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +1638 1016 1579 +1635 1022 1576 +1630 1030 1572 +1624 1041 1567 +1616 1054 1559 +1604 1072 1550 +1589 1094 1537 +1567 1123 1518 +1537 1158 1492 +1492 1202 1455 +1425 1254 1401 +1316 1316 1316 +1111 1387 1169 +459 1468 847 +0 1557 0 +0 1654 0 +0 1758 0 +0 1869 0 +0 1983 0 +0 2102 0 +0 2224 0 +0 2348 0 +0 2475 0 +0 2602 0 +0 2731 0 +0 2861 0 +0 2991 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +1789 1064 1673 +1786 1070 1671 +1783 1077 1668 +1779 1086 1664 +1773 1099 1658 +1765 1115 1650 +1754 1135 1640 +1739 1161 1625 +1719 1194 1605 +1689 1234 1576 +1647 1283 1535 +1583 1341 1473 +1481 1409 1375 +1293 1486 1197 +773 1572 733 +0 1667 0 +0 1768 0 +0 1876 0 +0 1989 0 +0 2107 0 +0 2228 0 +0 2351 0 +0 2477 0 +0 2604 0 +0 2732 0 +0 2861 0 +0 2991 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3515 0 +0 3647 0 +1934 1121 1775 +1933 1126 1774 +1930 1133 1771 +1927 1141 1768 +1923 1152 1763 +1917 1166 1757 +1910 1184 1749 +1899 1208 1737 +1885 1237 1721 +1864 1274 1700 +1836 1319 1668 +1795 1373 1623 +1734 1436 1555 +1636 1509 1443 +1460 1592 1231 +1006 1682 516 +0 1781 0 +0 1886 0 +0 1997 0 +0 2113 0 +0 2232 0 +0 2355 0 +0 2479 0 +0 2606 0 +0 2734 0 +0 2863 0 +0 2992 0 +0 3123 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +2076 1188 1884 +2075 1192 1882 +2074 1198 1880 +2071 1205 1878 +2068 1214 1874 +2064 1227 1869 +2058 1243 1863 +2051 1264 1854 +2041 1290 1842 +2026 1323 1825 +2007 1363 1802 +1979 1413 1768 +1939 1471 1720 +1879 1539 1645 +1784 1616 1521 +1616 1703 1274 +1200 1798 0 +0 1899 0 +0 2008 0 +0 2121 0 +0 2239 0 +0 2359 0 +0 2483 0 +0 2609 0 +0 2736 0 +0 2864 0 +0 2993 0 +0 3123 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +2216 1264 1997 +2215 1268 1996 +2214 1272 1995 +2212 1279 1992 +2210 1287 1990 +2207 1297 1986 +2203 1311 1981 +2197 1329 1974 +2190 1352 1965 +2179 1381 1952 +2165 1417 1935 +2146 1461 1910 +2119 1513 1875 +2079 1576 1823 +2021 1648 1743 +1928 1729 1608 +1765 1819 1325 +1374 1916 0 +0 2021 0 +0 2132 0 +0 2247 0 +0 2366 0 +0 2488 0 +0 2612 0 +0 2739 0 +0 2866 0 +0 2995 0 +0 3125 0 +0 3255 0 +0 3386 0 +0 3517 0 +0 3648 0 +2353 1349 2115 +2353 1352 2114 +2352 1356 2113 +2350 1361 2111 +2349 1368 2109 +2347 1377 2106 +2344 1389 2102 +2340 1404 2097 +2334 1423 2090 +2327 1448 2080 +2317 1479 2067 +2303 1518 2049 +2284 1565 2023 +2257 1621 1987 +2218 1686 1932 +2160 1761 1848 +2069 1846 1703 +1910 1938 1386 +1535 2039 0 +0 2145 0 +0 2257 0 +0 2374 0 +0 2494 0 +0 2617 0 +0 2742 0 +0 2869 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +2489 1443 2236 +2489 1445 2235 +2488 1449 2234 +2487 1453 2233 +2486 1458 2231 +2484 1466 2229 +2482 1475 2226 +2479 1488 2222 +2475 1504 2217 +2470 1525 2210 +2462 1551 2200 +2452 1584 2186 +2439 1625 2167 +2420 1675 2141 +2393 1733 2103 +2355 1802 2047 +2297 1879 1958 +2208 1966 1805 +2051 2061 1456 +1688 2163 0 +0 2271 0 +0 2385 0 +0 2502 0 +0 2623 0 +0 2747 0 +0 2873 0 +0 3000 0 +0 3128 0 +0 3258 0 +0 3388 0 +0 3518 0 +0 3649 0 +2624 1544 2359 +2624 1546 2359 +2624 1549 2358 +2623 1552 2357 +2622 1556 2356 +2621 1562 2354 +2619 1570 2352 +2617 1580 2349 +2614 1593 2345 +2610 1611 2340 +2605 1633 2332 +2597 1661 2322 +2587 1695 2308 +2574 1738 2289 +2555 1789 2262 +2528 1850 2223 +2490 1921 2165 +2433 2000 2074 +2345 2089 1914 +2190 2186 1535 +1835 2289 0 +0 2399 0 +0 2513 0 +0 2632 0 +0 2753 0 +0 2877 0 +0 3004 0 +0 3131 0 +0 3260 0 +0 3389 0 +0 3519 0 +0 3650 0 +2759 1651 2485 +2758 1653 2485 +2758 1655 2484 +2758 1658 2483 +2757 1661 2482 +2756 1666 2481 +2755 1672 2480 +2753 1680 2477 +2751 1691 2474 +2748 1705 2470 +2744 1723 2465 +2739 1746 2457 +2731 1775 2447 +2721 1811 2433 +2708 1855 2413 +2689 1908 2385 +2663 1971 2346 +2625 2043 2287 +2568 2124 2193 +2480 2214 2027 +2327 2312 1623 +1978 2417 0 +0 2527 0 +0 2643 0 +0 2762 0 +0 2884 0 +0 3008 0 +0 3135 0 +0 3262 0 +0 3391 0 +0 3521 0 +0 3651 0 +2892 1764 2612 +2892 1765 2612 +2892 1767 2612 +2892 1769 2611 +2891 1772 2610 +2890 1775 2609 +2889 1780 2608 +2888 1787 2606 +2887 1795 2604 +2884 1806 2601 +2882 1821 2597 +2878 1839 2591 +2872 1863 2584 +2865 1893 2573 +2855 1930 2559 +2842 1976 2539 +2823 2030 2511 +2797 2094 2471 +2759 2167 2411 +2703 2250 2315 +2615 2341 2145 +2463 2440 1720 +2118 2546 0 +0 2657 0 +0 2773 0 +0 2892 0 +0 3015 0 +0 3140 0 +0 3266 0 +0 3394 0 +0 3523 0 +0 3653 0 +3026 1881 2741 +3026 1882 2740 +3025 1883 2740 +3025 1885 2740 +3025 1887 2739 +3024 1890 2738 +3024 1894 2737 +3023 1899 2736 +3021 1905 2734 +3020 1914 2732 +3018 1926 2729 +3015 1940 2725 +3011 1960 2719 +3005 1984 2712 +2998 2015 2701 +2988 2053 2687 +2975 2099 2667 +2956 2154 2638 +2930 2219 2598 +2892 2294 2537 +2836 2377 2440 +2749 2469 2266 +2598 2569 1823 +2256 2675 0 +0 2787 0 +0 2903 0 +0 3023 0 +0 3146 0 +0 3271 0 +0 3398 0 +0 3526 0 +0 3655 0 +3159 2002 2870 +3159 2002 2870 +3158 2003 2870 +3158 2005 2869 +3158 2006 2869 +3158 2008 2868 +3157 2011 2868 +3156 2015 2867 +3156 2020 2865 +3154 2027 2864 +3153 2036 2861 +3151 2048 2858 +3148 2063 2854 +3144 2082 2848 +3138 2107 2840 +3131 2139 2830 +3121 2177 2815 +3108 2224 2795 +3089 2280 2767 +3063 2346 2726 +3025 2421 2664 +2970 2506 2566 +2883 2598 2390 +2732 2699 1933 +2392 2805 0 +0 2918 0 +0 3034 0 +0 3154 0 +0 3277 0 +0 3403 0 +0 3529 0 +0 3658 0 +3291 2125 3000 +3291 2125 3000 +3291 2126 3000 +3291 2127 2999 +3291 2128 2999 +3291 2130 2999 +3290 2132 2998 +3290 2135 2997 +3289 2139 2996 +3288 2145 2995 +3287 2151 2993 +3285 2161 2991 +3283 2172 2988 +3280 2188 2984 +3276 2208 2978 +3271 2233 2970 +3264 2264 2960 +3254 2304 2945 +3241 2351 2925 +3222 2408 2896 +3196 2474 2855 +3158 2550 2793 +3103 2635 2694 +3016 2728 2515 +2865 2829 2047 +2527 2936 0 +0 3049 0 +0 3166 0 +0 3286 0 +0 3409 0 +0 3534 0 +0 3661 0 +3424 2250 3130 +3424 2251 3130 +3424 2251 3130 +3424 2252 3130 +3424 2253 3130 +3423 2254 3130 +3423 2256 3129 +3423 2258 3129 +3422 2261 3128 +3422 2265 3127 +3421 2271 3126 +3420 2278 3124 +3418 2287 3122 +3416 2299 3118 +3413 2314 3114 +3409 2334 3108 +3404 2360 3101 +3396 2392 3090 +3387 2431 3075 +3373 2479 3055 +3355 2537 3026 +3328 2603 2984 +3291 2680 2922 +3235 2765 2823 +3149 2859 2643 +2999 2960 2165 +2662 3067 0 +0 3180 0 +0 3297 0 +0 3418 0 +0 3541 0 +0 3666 0 +3557 2377 3261 +3557 2378 3261 +3556 2378 3261 +3556 2379 3261 +3556 2379 3261 +3556 2380 3261 +3556 2382 3260 +3556 2383 3260 +3555 2386 3259 +3555 2389 3259 +3554 2393 3258 +3553 2398 3256 +3552 2405 3255 +3550 2414 3252 +3548 2427 3249 +3545 2442 3245 +3541 2462 3239 +3536 2488 3231 +3529 2520 3221 +3519 2560 3206 +3506 2609 3185 +3487 2666 3157 +3461 2733 3115 +3423 2810 3052 +3368 2896 2952 +3281 2989 2771 +3131 3091 2287 +2795 3198 0 +0 3311 0 +0 3429 0 +0 3549 0 +0 3673 0 +3689 2506 3393 +3689 2506 3393 +3689 2506 3392 +3689 2506 3392 +3689 2507 3392 +3689 2508 3392 +3688 2509 3392 +3688 2510 3392 +3688 2512 3391 +3688 2514 3391 +3687 2517 3390 +3686 2521 3389 +3686 2527 3388 +3684 2534 3386 +3683 2543 3383 +3681 2555 3380 +3678 2571 3376 +3674 2592 3370 +3668 2617 3362 +3661 2650 3352 +3651 2690 3337 +3638 2739 3316 +3619 2796 3287 +3593 2864 3246 +3556 2941 3183 +3500 3026 3083 +3414 3121 2900 +3264 3222 2411 +2929 3330 0 +0 3443 0 +0 3560 0 +0 3681 0 +3821 2635 3524 +3821 2635 3524 +3821 2635 3524 +3821 2635 3524 +3821 2636 3524 +3821 2636 3524 +3821 2637 3523 +3821 2638 3523 +3821 2639 3523 +3820 2641 3523 +3820 2644 3522 +3819 2647 3521 +3819 2651 3520 +3818 2656 3519 +3817 2663 3517 +3815 2673 3515 +3813 2685 3512 +3810 2701 3507 +3806 2721 3502 +3801 2747 3494 +3794 2780 3483 +3784 2820 3468 +3770 2869 3448 +3752 2927 3419 +3726 2995 3377 +3688 3072 3314 +3633 3158 3213 +3546 3252 3030 +3397 3354 2537 +3062 3462 0 +0 3575 0 +0 3692 0 +3953 2765 3656 +3953 2765 3656 +3953 2765 3656 +3953 2765 3656 +3953 2765 3655 +3953 2766 3655 +3953 2766 3655 +3953 2767 3655 +3953 2768 3655 +3953 2770 3655 +3952 2771 3654 +3952 2774 3654 +3952 2777 3653 +3951 2781 3652 +3950 2786 3651 +3949 2793 3649 +3947 2803 3646 +3945 2815 3643 +3942 2831 3639 +3938 2852 3633 +3933 2878 3625 +3926 2911 3615 +3916 2951 3600 +3903 3000 3579 +3884 3058 3550 +3858 3126 3508 +3821 3203 3445 +3765 3289 3344 +3679 3384 3161 +3529 3485 2664 +3195 3593 0 +0 3707 0 +4086 2895 3787 +4086 2895 3787 +4086 2895 3787 +4086 2896 3787 +4086 2896 3787 +4086 2896 3787 +4086 2896 3787 +4085 2897 3787 +4085 2898 3787 +4085 2899 3787 +4085 2900 3786 +4085 2902 3786 +4084 2904 3785 +4084 2907 3785 +4083 2911 3784 +4082 2917 3782 +4081 2924 3780 +4079 2934 3778 +4077 2946 3775 +4074 2962 3771 +4070 2983 3765 +4065 3009 3757 +4058 3042 3746 +4048 3082 3731 +4035 3131 3711 +4016 3189 3682 +3990 3257 3640 +3953 3334 3577 +3897 3421 3476 +3811 3515 3292 +3662 3617 2793 +3327 3725 0 +4095 3026 3919 +4095 3026 3919 +4095 3026 3919 +4095 3026 3919 +4095 3026 3919 +4095 3027 3919 +4095 3027 3919 +4095 3027 3919 +4095 3028 3919 +4095 3029 3919 +4095 3030 3918 +4095 3031 3918 +4095 3033 3918 +4095 3035 3917 +4095 3038 3916 +4095 3042 3915 +4095 3048 3914 +4095 3055 3912 +4095 3065 3910 +4095 3077 3907 +4095 3093 3902 +4095 3114 3897 +4095 3140 3889 +4095 3173 3878 +4095 3213 3863 +4095 3263 3843 +4095 3321 3813 +4095 3389 3771 +4085 3466 3708 +4030 3552 3607 +3943 3647 3423 +3794 3749 2922 +4095 3157 4051 +4095 3157 4051 +4095 3157 4051 +4095 3157 4051 +4095 3157 4051 +4095 3158 4051 +4095 3158 4051 +4095 3158 4051 +4095 3159 4051 +4095 3159 4051 +4095 3160 4050 +4095 3161 4050 +4095 3162 4050 +4095 3164 4049 +4095 3166 4049 +4095 3170 4048 +4095 3174 4047 +4095 3179 4046 +4095 3186 4044 +4095 3196 4042 +4095 3208 4039 +4095 3224 4034 +4095 3245 4028 +4095 3271 4021 +4095 3304 4010 +4095 3345 3995 +4095 3394 3974 +4095 3453 3945 +4095 3520 3903 +4095 3598 3840 +4095 3684 3739 +4075 3779 3555 +0 966 1218 +0 973 1211 +0 982 1202 +0 994 1191 +0 1009 1174 +0 1028 1151 +0 1053 1119 +0 1084 1071 +0 1122 999 +0 1169 879 +0 1225 645 +0 1291 0 +0 1366 0 +0 1450 0 +0 1542 0 +0 1643 0 +0 1749 0 +0 1861 0 +0 1978 0 +0 2098 0 +0 2221 0 +0 2346 0 +0 2473 0 +0 2601 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3383 0 +0 3515 0 +0 3647 0 +0 969 1227 +0 975 1221 +0 984 1212 +0 996 1201 +0 1011 1185 +0 1030 1162 +0 1055 1130 +0 1086 1084 +0 1124 1014 +0 1171 899 +0 1226 677 +0 1292 0 +0 1367 0 +0 1451 0 +0 1543 0 +0 1643 0 +0 1750 0 +0 1862 0 +0 1978 0 +0 2098 0 +0 2221 0 +0 2346 0 +0 2473 0 +0 2601 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +0 972 1239 +0 978 1233 +0 987 1225 +0 999 1214 +0 1014 1198 +0 1033 1176 +0 1057 1146 +0 1088 1101 +0 1126 1033 +0 1173 924 +0 1228 717 +0 1293 53 +0 1368 0 +0 1452 0 +0 1544 0 +0 1644 0 +0 1750 0 +0 1862 0 +0 1978 0 +0 2098 0 +0 2221 0 +0 2346 0 +0 2473 0 +0 2601 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +0 976 1255 +0 982 1249 +0 991 1241 +0 1002 1230 +0 1017 1215 +0 1036 1195 +0 1061 1165 +0 1091 1122 +0 1129 1058 +0 1175 955 +0 1231 766 +0 1295 233 +0 1370 0 +0 1453 0 +0 1545 0 +0 1645 0 +0 1751 0 +0 1863 0 +0 1979 0 +0 2099 0 +0 2221 0 +0 2346 0 +0 2473 0 +0 2601 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +0 981 1276 +0 988 1270 +0 996 1263 +0 1008 1252 +0 1022 1238 +0 1041 1218 +0 1065 1190 +0 1095 1150 +0 1133 1090 +0 1179 994 +0 1234 824 +0 1298 398 +0 1372 0 +0 1455 0 +0 1547 0 +0 1646 0 +0 1752 0 +0 1863 0 +0 1979 0 +0 2099 0 +0 2222 0 +0 2347 0 +0 2473 0 +0 2601 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +0 988 1302 +0 995 1297 +0 1003 1289 +0 1014 1280 +0 1029 1266 +0 1047 1247 +0 1071 1221 +0 1101 1184 +0 1138 1128 +0 1183 1041 +0 1238 891 +0 1301 553 +0 1375 0 +0 1457 0 +0 1549 0 +0 1648 0 +0 1753 0 +0 1864 0 +0 1980 0 +0 2100 0 +0 2222 0 +0 2347 0 +0 2474 0 +0 2601 0 +0 2730 0 +0 2860 0 +0 2990 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +329 998 1335 +265 1004 1330 +164 1012 1323 +0 1023 1314 +0 1037 1301 +0 1055 1284 +0 1079 1260 +0 1108 1226 +0 1145 1175 +0 1189 1098 +0 1243 968 +0 1306 702 +0 1379 0 +0 1461 0 +0 1551 0 +0 1650 0 +0 1755 0 +0 1866 0 +0 1981 0 +0 2101 0 +0 2223 0 +0 2347 0 +0 2474 0 +0 2602 0 +0 2731 0 +0 2860 0 +0 2991 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +770 1010 1375 +747 1016 1370 +715 1024 1364 +667 1035 1356 +594 1048 1345 +474 1066 1329 +239 1089 1307 +0 1118 1276 +0 1154 1232 +0 1197 1164 +0 1250 1054 +0 1312 846 +0 1384 171 +0 1465 0 +0 1555 0 +0 1653 0 +0 1757 0 +0 1868 0 +0 1983 0 +0 2102 0 +0 2224 0 +0 2348 0 +0 2474 0 +0 2602 0 +0 2731 0 +0 2860 0 +0 2991 0 +0 3121 0 +0 3252 0 +0 3384 0 +0 3515 0 +0 3647 0 +1045 1025 1424 +1033 1031 1420 +1016 1039 1414 +992 1049 1407 +957 1063 1397 +907 1080 1383 +830 1102 1364 +702 1130 1336 +440 1165 1297 +0 1208 1239 +0 1260 1148 +0 1321 987 +0 1391 606 +0 1471 0 +0 1560 0 +0 1657 0 +0 1760 0 +0 1870 0 +0 1985 0 +0 2103 0 +0 2225 0 +0 2349 0 +0 2475 0 +0 2603 0 +0 2731 0 +0 2861 0 +0 2991 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3515 0 +0 3647 0 +1261 1046 1482 +1253 1051 1478 +1242 1059 1473 +1228 1069 1467 +1208 1082 1458 +1180 1098 1446 +1139 1119 1429 +1079 1146 1406 +982 1180 1373 +810 1222 1324 +372 1272 1249 +0 1331 1126 +0 1400 879 +0 1479 0 +0 1566 0 +0 1662 0 +0 1764 0 +0 1873 0 +0 1987 0 +0 2105 0 +0 2226 0 +0 2350 0 +0 2476 0 +0 2603 0 +0 2732 0 +0 2861 0 +0 2991 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3515 0 +0 3647 0 +1446 1072 1550 +1441 1077 1546 +1434 1084 1542 +1425 1093 1537 +1412 1105 1529 +1394 1121 1519 +1370 1141 1505 +1334 1167 1485 +1282 1199 1457 +1200 1239 1417 +1063 1288 1357 +771 1345 1263 +0 1412 1094 +0 1489 678 +0 1575 0 +0 1668 0 +0 1770 0 +0 1877 0 +0 1990 0 +0 2108 0 +0 2228 0 +0 2352 0 +0 2477 0 +0 2604 0 +0 2732 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3515 0 +0 3647 0 +1615 1104 1627 +1611 1109 1624 +1607 1115 1621 +1600 1124 1616 +1592 1135 1609 +1580 1150 1601 +1563 1169 1589 +1540 1193 1573 +1508 1224 1550 +1460 1262 1518 +1388 1308 1470 +1268 1363 1398 +1033 1428 1280 +0 1502 1048 +0 1585 57 +0 1677 0 +0 1777 0 +0 1883 0 +0 1995 0 +0 2111 0 +0 2231 0 +0 2354 0 +0 2479 0 +0 2605 0 +0 2733 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +1772 1144 1713 +1770 1148 1711 +1767 1154 1708 +1762 1162 1704 +1756 1173 1699 +1748 1186 1692 +1737 1204 1682 +1721 1226 1669 +1699 1255 1650 +1669 1290 1624 +1624 1334 1588 +1557 1386 1533 +1448 1448 1448 +1243 1519 1301 +591 1600 979 +0 1689 0 +0 1786 0 +0 1891 0 +0 2001 0 +0 2116 0 +0 2234 0 +0 2356 0 +0 2481 0 +0 2607 0 +0 2734 0 +0 2863 0 +0 2993 0 +0 3123 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3647 0 +1923 1192 1807 +1921 1196 1805 +1919 1202 1803 +1915 1209 1800 +1911 1218 1796 +1905 1231 1790 +1897 1247 1782 +1886 1267 1772 +1871 1293 1757 +1851 1326 1737 +1821 1366 1708 +1779 1415 1667 +1715 1473 1605 +1613 1541 1507 +1426 1618 1329 +905 1704 865 +0 1799 0 +0 1900 0 +0 2008 0 +0 2122 0 +0 2239 0 +0 2360 0 +0 2483 0 +0 2609 0 +0 2736 0 +0 2864 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +2068 1250 1909 +2067 1253 1908 +2065 1258 1906 +2063 1265 1903 +2059 1273 1900 +2055 1284 1895 +2049 1298 1889 +2042 1317 1881 +2031 1340 1869 +2017 1370 1854 +1997 1406 1832 +1968 1451 1801 +1927 1505 1755 +1866 1569 1687 +1768 1641 1575 +1592 1724 1364 +1138 1815 648 +0 1913 0 +0 2018 0 +0 2129 0 +0 2245 0 +0 2364 0 +0 2487 0 +0 2612 0 +0 2738 0 +0 2866 0 +0 2995 0 +0 3124 0 +0 3255 0 +0 3385 0 +0 3516 0 +0 3648 0 +2210 1317 2017 +2209 1320 2016 +2207 1324 2014 +2206 1330 2012 +2203 1337 2010 +2200 1347 2006 +2196 1359 2001 +2191 1375 1995 +2183 1396 1986 +2173 1422 1974 +2158 1455 1957 +2139 1496 1934 +2111 1545 1900 +2071 1603 1852 +2011 1671 1777 +1916 1749 1653 +1748 1835 1406 +1333 1930 0 +0 2032 0 +0 2140 0 +0 2253 0 +0 2371 0 +0 2492 0 +0 2615 0 +0 2741 0 +0 2868 0 +0 2996 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +2349 1394 2130 +2348 1396 2129 +2347 1400 2128 +2346 1404 2127 +2344 1411 2125 +2342 1419 2122 +2339 1429 2118 +2335 1443 2113 +2329 1461 2106 +2322 1484 2097 +2312 1513 2084 +2298 1549 2067 +2278 1593 2042 +2251 1646 2007 +2211 1708 1955 +2153 1780 1875 +2061 1861 1740 +1898 1951 1457 +1507 2049 0 +0 2153 0 +0 2264 0 +0 2379 0 +0 2498 0 +0 2620 0 +0 2744 0 +0 2871 0 +0 2998 0 +0 3127 0 +0 3257 0 +0 3387 0 +0 3518 0 +0 3649 0 +2486 1479 2248 +2485 1482 2247 +2485 1484 2246 +2484 1488 2245 +2483 1493 2243 +2481 1500 2241 +2479 1509 2238 +2476 1521 2234 +2472 1536 2229 +2466 1555 2222 +2459 1580 2213 +2449 1611 2199 +2435 1650 2181 +2416 1697 2155 +2389 1753 2119 +2350 1818 2064 +2292 1893 1980 +2201 1978 1835 +2042 2070 1518 +1668 2171 0 +0 2277 0 +0 2389 0 +0 2506 0 +0 2626 0 +0 2749 0 +0 2874 0 +0 3001 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3519 0 +0 3649 0 +2622 1573 2368 +2621 1575 2368 +2621 1578 2367 +2620 1581 2366 +2619 1585 2365 +2618 1590 2363 +2616 1598 2361 +2614 1607 2358 +2611 1620 2354 +2607 1636 2349 +2602 1657 2342 +2595 1683 2332 +2585 1716 2318 +2571 1757 2299 +2552 1807 2273 +2525 1865 2235 +2487 1934 2179 +2430 2011 2091 +2340 2098 1937 +2183 2193 1588 +1820 2295 0 +0 2403 0 +0 2517 0 +0 2634 0 +0 2755 0 +0 2879 0 +0 3005 0 +0 3132 0 +0 3260 0 +0 3390 0 +0 3520 0 +0 3650 0 +2757 1675 2492 +2756 1676 2491 +2756 1678 2491 +2756 1681 2490 +2755 1684 2489 +2754 1688 2488 +2753 1694 2486 +2751 1702 2484 +2749 1712 2481 +2746 1726 2477 +2742 1743 2472 +2737 1765 2464 +2729 1793 2454 +2719 1827 2440 +2706 1870 2421 +2687 1922 2394 +2660 1982 2355 +2622 2053 2297 +2566 2132 2206 +2477 2221 2046 +2322 2318 1667 +1967 2421 0 +0 2531 0 +0 2645 0 +0 2764 0 +0 2885 0 +0 3010 0 +0 3136 0 +0 3263 0 +0 3392 0 +0 3521 0 +0 3651 0 +2891 1782 2617 +2891 1784 2617 +2890 1785 2617 +2890 1787 2616 +2890 1790 2615 +2889 1793 2615 +2888 1798 2613 +2887 1804 2612 +2885 1812 2609 +2883 1823 2606 +2880 1837 2602 +2876 1855 2597 +2871 1878 2589 +2863 1907 2579 +2854 1943 2565 +2840 1987 2545 +2821 2040 2518 +2795 2103 2478 +2757 2175 2419 +2701 2256 2325 +2612 2346 2159 +2459 2444 1755 +2110 2549 0 +0 2659 0 +0 2775 0 +0 2894 0 +0 3016 0 +0 3140 0 +0 3267 0 +0 3395 0 +0 3523 0 +0 3653 0 +3025 1895 2745 +3024 1896 2744 +3024 1897 2744 +3024 1899 2744 +3024 1901 2743 +3023 1904 2742 +3022 1908 2741 +3022 1912 2740 +3020 1919 2738 +3019 1927 2736 +3017 1938 2733 +3014 1953 2729 +3010 1971 2723 +3004 1995 2716 +2997 2025 2705 +2987 2062 2691 +2974 2108 2671 +2955 2162 2643 +2929 2226 2603 +2891 2299 2543 +2835 2382 2447 +2747 2473 2277 +2595 2572 1852 +2250 2678 0 +0 2789 0 +0 2905 0 +0 3024 0 +0 3147 0 +0 3272 0 +0 3398 0 +0 3526 0 +0 3655 0 +3158 2013 2873 +3158 2013 2873 +3158 2014 2872 +3157 2015 2872 +3157 2017 2872 +3157 2019 2871 +3156 2022 2871 +3156 2026 2870 +3155 2031 2868 +3154 2038 2867 +3152 2046 2864 +3150 2058 2861 +3147 2073 2857 +3143 2092 2851 +3138 2116 2844 +3130 2147 2833 +3120 2185 2819 +3107 2231 2799 +3088 2286 2770 +3062 2351 2730 +3024 2426 2669 +2968 2509 2572 +2881 2601 2398 +2730 2701 1955 +2388 2807 0 +0 2919 0 +0 3035 0 +0 3155 0 +0 3278 0 +0 3403 0 +0 3530 0 +0 3658 0 +3291 2133 3002 +3291 2134 3002 +3291 2135 3002 +3291 2135 3002 +3290 2137 3001 +3290 2138 3001 +3290 2141 3000 +3289 2143 3000 +3288 2147 2999 +3288 2153 2997 +3286 2159 2996 +3285 2168 2993 +3283 2180 2990 +3280 2195 2986 +3276 2215 2980 +3270 2239 2973 +3263 2271 2962 +3253 2309 2947 +3240 2356 2927 +3221 2412 2899 +3195 2478 2858 +3157 2553 2796 +3102 2638 2698 +3015 2730 2522 +2864 2831 2065 +2524 2938 0 +0 3050 0 +0 3166 0 +0 3287 0 +0 3410 0 +0 3535 0 +0 3662 0 +3424 2257 3132 +3424 2257 3132 +3423 2258 3132 +3423 2258 3132 +3423 2259 3132 +3423 2261 3131 +3423 2262 3131 +3422 2264 3130 +3422 2267 3130 +3421 2271 3129 +3420 2277 3127 +3419 2284 3126 +3417 2293 3123 +3415 2304 3120 +3412 2320 3116 +3408 2340 3110 +3403 2365 3102 +3396 2397 3092 +3386 2436 3077 +3373 2483 3057 +3354 2540 3028 +3328 2606 2987 +3290 2682 2925 +3235 2767 2826 +3148 2860 2647 +2997 2961 2179 +2659 3068 0 +0 3181 0 +0 3298 0 +0 3418 0 +0 3541 0 +0 3666 0 +3556 2382 3263 +3556 2382 3263 +3556 2383 3262 +3556 2383 3262 +3556 2384 3262 +3556 2385 3262 +3556 2386 3262 +3555 2388 3261 +3555 2390 3261 +3554 2393 3260 +3554 2397 3259 +3553 2403 3258 +3552 2410 3256 +3550 2419 3254 +3548 2431 3250 +3545 2446 3246 +3541 2466 3240 +3536 2492 3233 +3529 2524 3222 +3519 2564 3207 +3505 2612 3187 +3487 2669 3158 +3461 2736 3117 +3423 2812 3054 +3368 2897 2955 +3281 2991 2775 +3131 3092 2297 +2794 3199 0 +0 3312 0 +0 3429 0 +0 3550 0 +0 3673 0 +3689 2509 3394 +3689 2509 3393 +3689 2510 3393 +3689 2510 3393 +3688 2511 3393 +3688 2511 3393 +3688 2512 3393 +3688 2514 3392 +3688 2515 3392 +3687 2518 3392 +3687 2521 3391 +3686 2525 3390 +3685 2530 3389 +3684 2537 3387 +3682 2546 3384 +3680 2559 3381 +3677 2574 3377 +3673 2595 3371 +3668 2620 3363 +3661 2653 3353 +3651 2692 3338 +3638 2741 3318 +3619 2798 3289 +3593 2865 3247 +3556 2942 3184 +3500 3028 3084 +3413 3122 2903 +3264 3223 2419 +2928 3331 0 +0 3443 0 +0 3561 0 +0 3681 0 +3821 2637 3525 +3821 2638 3525 +3821 2638 3525 +3821 2638 3525 +3821 2639 3524 +3821 2639 3524 +3821 2640 3524 +3821 2641 3524 +3820 2642 3524 +3820 2644 3523 +3820 2646 3523 +3819 2649 3522 +3818 2653 3521 +3818 2659 3520 +3816 2666 3518 +3815 2675 3516 +3813 2687 3512 +3810 2703 3508 +3806 2724 3502 +3801 2750 3494 +3793 2782 3484 +3784 2822 3469 +3770 2871 3448 +3752 2929 3420 +3725 2996 3378 +3688 3073 3315 +3633 3159 3215 +3546 3253 3032 +3396 3354 2543 +3061 3462 0 +0 3575 0 +0 3692 0 +3953 2767 3656 +3953 2767 3656 +3953 2767 3656 +3953 2767 3656 +3953 2768 3656 +3953 2768 3656 +3953 2769 3656 +3953 2769 3656 +3953 2770 3655 +3953 2772 3655 +3952 2773 3655 +3952 2776 3654 +3951 2779 3653 +3951 2783 3652 +3950 2788 3651 +3949 2795 3649 +3947 2805 3647 +3945 2817 3644 +3942 2833 3639 +3938 2854 3634 +3933 2880 3626 +3926 2912 3615 +3916 2952 3600 +3902 3001 3580 +3884 3059 3551 +3858 3127 3509 +3820 3204 3446 +3765 3290 3345 +3678 3384 3162 +3529 3486 2669 +3194 3594 0 +0 3707 0 +4086 2897 3788 +4086 2897 3788 +4086 2897 3788 +4086 2897 3788 +4086 2897 3788 +4085 2898 3788 +4085 2898 3787 +4085 2899 3787 +4085 2899 3787 +4085 2900 3787 +4085 2902 3787 +4085 2903 3786 +4084 2906 3786 +4084 2909 3785 +4083 2913 3784 +4082 2918 3783 +4081 2926 3781 +4079 2935 3779 +4077 2947 3775 +4074 2963 3771 +4070 2984 3765 +4065 3010 3757 +4058 3043 3747 +4048 3083 3732 +4035 3132 3711 +4016 3190 3682 +3990 3258 3640 +3953 3335 3577 +3897 3421 3476 +3811 3516 3293 +3661 3617 2796 +3327 3725 0 +4095 3027 3919 +4095 3027 3919 +4095 3027 3919 +4095 3027 3919 +4095 3028 3919 +4095 3028 3919 +4095 3028 3919 +4095 3029 3919 +4095 3029 3919 +4095 3030 3919 +4095 3031 3919 +4095 3032 3918 +4095 3034 3918 +4095 3036 3917 +4095 3039 3917 +4095 3044 3916 +4095 3049 3914 +4095 3056 3913 +4095 3066 3910 +4095 3078 3907 +4095 3094 3903 +4095 3115 3897 +4095 3141 3889 +4095 3174 3878 +4095 3214 3863 +4095 3263 3843 +4095 3321 3814 +4095 3389 3772 +4085 3467 3709 +4030 3553 3608 +3943 3647 3424 +3794 3749 2925 +4095 3158 4051 +4095 3158 4051 +4095 3158 4051 +4095 3158 4051 +4095 3158 4051 +4095 3159 4051 +4095 3159 4051 +4095 3159 4051 +4095 3160 4051 +4095 3160 4051 +4095 3161 4051 +4095 3162 4050 +4095 3163 4050 +4095 3165 4050 +4095 3167 4049 +4095 3170 4048 +4095 3175 4047 +4095 3180 4046 +4095 3187 4044 +4095 3197 4042 +4095 3209 4039 +4095 3225 4035 +4095 3246 4029 +4095 3272 4021 +4095 3305 4010 +4095 3346 3995 +4095 3395 3975 +4095 3453 3946 +4095 3521 3903 +4095 3598 3840 +4095 3685 3739 +4075 3779 3555 +0 1092 1347 +0 1097 1342 +0 1104 1336 +0 1112 1327 +0 1124 1315 +0 1139 1298 +0 1159 1275 +0 1183 1242 +0 1215 1193 +0 1253 1119 +0 1300 996 +0 1356 751 +0 1422 0 +0 1497 0 +0 1581 0 +0 1674 0 +0 1774 0 +0 1881 0 +0 1993 0 +0 2110 0 +0 2230 0 +0 2353 0 +0 2478 0 +0 2605 0 +0 2733 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +0 1093 1354 +0 1098 1350 +0 1105 1343 +0 1114 1335 +0 1126 1323 +0 1141 1306 +0 1160 1283 +0 1185 1251 +0 1216 1203 +0 1254 1131 +0 1301 1011 +0 1357 777 +0 1423 0 +0 1498 0 +0 1582 0 +0 1674 0 +0 1775 0 +0 1881 0 +0 1993 0 +0 2110 0 +0 2230 0 +0 2353 0 +0 2478 0 +0 2605 0 +0 2733 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +0 1096 1364 +0 1101 1359 +0 1107 1353 +0 1116 1344 +0 1128 1333 +0 1143 1317 +0 1162 1294 +0 1187 1262 +0 1218 1216 +0 1256 1146 +0 1303 1031 +0 1359 809 +0 1424 0 +0 1499 0 +0 1583 0 +0 1675 0 +0 1775 0 +0 1882 0 +0 1994 0 +0 2110 0 +0 2230 0 +0 2353 0 +0 2478 0 +0 2605 0 +0 2733 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +0 1099 1376 +0 1104 1371 +0 1110 1365 +0 1119 1357 +0 1131 1346 +0 1146 1330 +0 1165 1308 +0 1189 1278 +0 1220 1233 +0 1258 1165 +0 1305 1056 +0 1360 850 +0 1425 185 +0 1500 0 +0 1584 0 +0 1676 0 +0 1776 0 +0 1882 0 +0 1994 0 +0 2110 0 +0 2230 0 +0 2353 0 +0 2478 0 +0 2605 0 +0 2733 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +0 1103 1392 +0 1108 1387 +0 1114 1381 +0 1123 1373 +0 1135 1363 +0 1149 1348 +0 1168 1327 +0 1193 1297 +0 1223 1255 +0 1261 1190 +0 1307 1087 +0 1363 898 +0 1427 365 +0 1502 0 +0 1585 0 +0 1677 0 +0 1777 0 +0 1883 0 +0 1995 0 +0 2111 0 +0 2231 0 +0 2354 0 +0 2479 0 +0 2605 0 +0 2733 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +0 1108 1412 +0 1113 1408 +0 1120 1402 +0 1128 1395 +0 1140 1384 +0 1154 1370 +0 1173 1350 +0 1197 1322 +0 1227 1282 +0 1265 1222 +0 1311 1126 +0 1366 956 +0 1430 530 +0 1504 0 +0 1587 0 +0 1679 0 +0 1778 0 +0 1884 0 +0 1995 0 +0 2112 0 +0 2231 0 +0 2354 0 +0 2479 0 +0 2605 0 +0 2733 0 +0 2862 0 +0 2992 0 +0 3122 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +0 1115 1438 +0 1120 1434 +0 1127 1429 +0 1135 1421 +0 1146 1412 +0 1161 1398 +0 1179 1380 +0 1203 1353 +0 1233 1316 +0 1270 1260 +0 1315 1173 +0 1370 1023 +0 1434 686 +0 1507 0 +0 1590 0 +0 1681 0 +0 1780 0 +0 1885 0 +0 1996 0 +0 2112 0 +0 2232 0 +0 2354 0 +0 2479 0 +0 2606 0 +0 2734 0 +0 2862 0 +0 2992 0 +0 3123 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +503 1125 1470 +461 1130 1467 +397 1136 1462 +296 1144 1455 +111 1155 1446 +0 1169 1433 +0 1188 1416 +0 1211 1392 +0 1240 1358 +0 1277 1307 +0 1322 1230 +0 1375 1100 +0 1438 834 +0 1511 0 +0 1593 0 +0 1683 0 +0 1782 0 +0 1887 0 +0 1998 0 +0 2113 0 +0 2233 0 +0 2355 0 +0 2480 0 +0 2606 0 +0 2734 0 +0 2863 0 +0 2992 0 +0 3123 0 +0 3253 0 +0 3384 0 +0 3516 0 +0 3647 0 +919 1137 1510 +902 1142 1507 +879 1148 1502 +847 1156 1496 +799 1167 1488 +726 1180 1477 +606 1198 1461 +371 1221 1439 +0 1250 1409 +0 1286 1364 +0 1330 1296 +0 1382 1186 +0 1444 978 +0 1516 303 +0 1597 0 +0 1687 0 +0 1785 0 +0 1889 0 +0 2000 0 +0 2115 0 +0 2234 0 +0 2356 0 +0 2480 0 +0 2606 0 +0 2734 0 +0 2863 0 +0 2993 0 +0 3123 0 +0 3253 0 +0 3385 0 +0 3516 0 +0 3647 0 +1186 1153 1559 +1177 1158 1556 +1165 1164 1552 +1148 1171 1546 +1124 1182 1539 +1090 1195 1529 +1039 1212 1515 +962 1234 1496 +834 1262 1468 +572 1297 1429 +0 1340 1371 +0 1392 1280 +0 1453 1119 +0 1523 738 +0 1603 0 +0 1692 0 +0 1789 0 +0 1892 0 +0 2002 0 +0 2117 0 +0 2235 0 +0 2357 0 +0 2481 0 +0 2607 0 +0 2735 0 +0 2863 0 +0 2993 0 +0 3123 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3647 0 +1398 1174 1617 +1393 1178 1614 +1385 1184 1610 +1375 1191 1606 +1360 1201 1599 +1340 1214 1590 +1312 1230 1578 +1271 1251 1561 +1211 1278 1538 +1114 1312 1505 +942 1354 1456 +504 1404 1382 +0 1463 1258 +0 1532 1012 +0 1611 0 +0 1698 0 +0 1794 0 +0 1896 0 +0 2005 0 +0 2119 0 +0 2237 0 +0 2358 0 +0 2482 0 +0 2608 0 +0 2735 0 +0 2864 0 +0 2993 0 +0 3123 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3647 0 +1582 1200 1684 +1579 1204 1682 +1573 1209 1679 +1567 1216 1674 +1557 1225 1669 +1544 1237 1661 +1527 1253 1651 +1502 1273 1637 +1466 1299 1617 +1414 1331 1589 +1332 1371 1549 +1195 1420 1489 +903 1477 1395 +0 1544 1226 +0 1621 810 +0 1707 0 +0 1801 0 +0 1902 0 +0 2010 0 +0 2123 0 +0 2240 0 +0 2360 0 +0 2484 0 +0 2609 0 +0 2736 0 +0 2864 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +1750 1232 1761 +1747 1236 1759 +1744 1241 1756 +1739 1248 1753 +1732 1256 1748 +1724 1268 1742 +1712 1282 1733 +1695 1301 1721 +1672 1326 1705 +1640 1356 1682 +1592 1394 1650 +1520 1440 1602 +1400 1495 1530 +1165 1560 1412 +102 1634 1180 +0 1718 189 +0 1809 0 +0 1909 0 +0 2015 0 +0 2127 0 +0 2243 0 +0 2363 0 +0 2486 0 +0 2611 0 +0 2737 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +1906 1272 1846 +1905 1276 1845 +1902 1280 1843 +1899 1286 1840 +1894 1294 1836 +1888 1305 1831 +1880 1319 1824 +1869 1336 1814 +1853 1359 1801 +1831 1387 1782 +1801 1422 1757 +1756 1466 1720 +1689 1518 1665 +1580 1580 1580 +1375 1651 1434 +723 1732 1111 +0 1821 0 +0 1918 0 +0 2023 0 +0 2133 0 +0 2248 0 +0 2366 0 +0 2488 0 +0 2613 0 +0 2739 0 +0 2866 0 +0 2995 0 +0 3125 0 +0 3255 0 +0 3386 0 +0 3517 0 +0 3648 0 +2056 1321 1941 +2055 1324 1939 +2053 1328 1938 +2051 1334 1935 +2047 1341 1932 +2043 1350 1928 +2037 1363 1922 +2029 1379 1914 +2018 1399 1904 +2003 1425 1889 +1983 1458 1869 +1953 1498 1840 +1911 1547 1799 +1847 1605 1737 +1745 1673 1639 +1558 1750 1461 +1037 1836 997 +0 1931 0 +0 2032 0 +0 2140 0 +0 2254 0 +0 2371 0 +0 2492 0 +0 2615 0 +0 2741 0 +0 2868 0 +0 2996 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +2201 1379 2042 +2200 1382 2041 +2199 1386 2040 +2197 1390 2038 +2195 1397 2035 +2191 1405 2032 +2187 1416 2027 +2182 1430 2021 +2174 1449 2013 +2163 1472 2001 +2149 1502 1986 +2129 1538 1964 +2100 1583 1933 +2059 1637 1887 +1998 1701 1819 +1900 1774 1707 +1724 1856 1496 +1270 1947 780 +0 2045 0 +0 2151 0 +0 2262 0 +0 2377 0 +0 2497 0 +0 2619 0 +0 2744 0 +0 2870 0 +0 2998 0 +0 3127 0 +0 3256 0 +0 3387 0 +0 3518 0 +0 3649 0 +2342 1447 2150 +2342 1449 2149 +2341 1452 2148 +2339 1456 2146 +2338 1462 2145 +2335 1469 2142 +2332 1479 2138 +2328 1491 2133 +2323 1507 2127 +2315 1528 2118 +2305 1554 2106 +2290 1587 2089 +2271 1628 2066 +2243 1677 2032 +2203 1735 1984 +2143 1803 1909 +2049 1881 1785 +1880 1967 1538 +1465 2062 3 +0 2164 0 +0 2272 0 +0 2385 0 +0 2503 0 +0 2624 0 +0 2747 0 +0 2873 0 +0 3000 0 +0 3128 0 +0 3258 0 +0 3388 0 +0 3518 0 +0 3649 0 +2481 1524 2263 +2481 1526 2262 +2480 1528 2261 +2479 1532 2260 +2478 1537 2259 +2476 1543 2257 +2474 1551 2254 +2471 1561 2250 +2467 1575 2245 +2461 1593 2238 +2454 1616 2229 +2444 1645 2216 +2430 1681 2199 +2410 1725 2174 +2383 1778 2139 +2344 1840 2087 +2285 1912 2007 +2193 1993 1872 +2030 2083 1589 +1639 2181 0 +0 2285 0 +0 2396 0 +0 2511 0 +0 2630 0 +0 2752 0 +0 2876 0 +0 3003 0 +0 3130 0 +0 3259 0 +0 3389 0 +0 3519 0 +0 3650 0 +2618 1610 2380 +2618 1611 2380 +2617 1614 2379 +2617 1617 2378 +2616 1620 2377 +2615 1626 2375 +2613 1632 2373 +2611 1641 2370 +2608 1653 2367 +2604 1668 2361 +2598 1687 2354 +2591 1712 2345 +2581 1743 2331 +2567 1782 2313 +2548 1829 2287 +2521 1885 2251 +2482 1950 2197 +2424 2026 2112 +2333 2110 1967 +2174 2202 1650 +1800 2303 0 +0 2409 0 +0 2522 0 +0 2638 0 +0 2758 0 +0 2881 0 +0 3006 0 +0 3133 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3651 0 +2754 1704 2501 +2754 1705 2500 +2754 1707 2500 +2753 1710 2499 +2752 1713 2498 +2751 1717 2497 +2750 1723 2496 +2749 1730 2493 +2746 1739 2490 +2743 1752 2486 +2739 1768 2481 +2734 1789 2474 +2727 1815 2464 +2717 1849 2450 +2703 1889 2432 +2684 1939 2405 +2657 1997 2367 +2619 2066 2311 +2562 2143 2223 +2472 2230 2069 +2315 2325 1720 +1952 2427 0 +0 2535 0 +0 2649 0 +0 2767 0 +0 2888 0 +0 3011 0 +0 3137 0 +0 3264 0 +0 3392 0 +0 3522 0 +0 3652 0 +2889 1806 2624 +2889 1807 2624 +2889 1808 2624 +2888 1810 2623 +2888 1813 2622 +2887 1816 2621 +2886 1821 2620 +2885 1826 2619 +2883 1834 2616 +2881 1844 2613 +2878 1858 2609 +2874 1875 2604 +2869 1897 2596 +2861 1925 2586 +2852 1959 2572 +2838 2002 2553 +2819 2054 2526 +2792 2114 2487 +2754 2185 2429 +2698 2265 2338 +2609 2353 2178 +2454 2450 1799 +2099 2553 0 +0 2663 0 +0 2777 0 +0 2896 0 +0 3018 0 +0 3142 0 +0 3268 0 +0 3395 0 +0 3524 0 +0 3653 0 +3023 1914 2750 +3023 1915 2749 +3023 1916 2749 +3023 1917 2749 +3022 1919 2748 +3022 1922 2748 +3021 1925 2747 +3020 1930 2745 +3019 1936 2744 +3017 1944 2741 +3015 1955 2738 +3012 1969 2734 +3008 1987 2729 +3003 2010 2721 +2996 2039 2711 +2986 2075 2697 +2972 2119 2677 +2953 2172 2650 +2927 2235 2610 +2889 2307 2551 +2833 2388 2457 +2744 2478 2291 +2591 2576 1888 +2242 2681 0 +0 2792 0 +0 2907 0 +0 3026 0 +0 3148 0 +0 3273 0 +0 3399 0 +0 3527 0 +0 3655 0 +3157 2027 2877 +3157 2028 2877 +3157 2028 2876 +3156 2030 2876 +3156 2031 2876 +3156 2033 2875 +3155 2036 2874 +3155 2040 2874 +3154 2045 2872 +3152 2051 2871 +3151 2059 2868 +3149 2071 2865 +3146 2085 2861 +3142 2104 2855 +3136 2127 2848 +3129 2157 2837 +3119 2194 2823 +3106 2240 2803 +3087 2294 2775 +3061 2358 2735 +3023 2431 2675 +2967 2514 2579 +2879 2605 2409 +2727 2704 1984 +2382 2810 0 +0 2921 0 +0 3037 0 +0 3157 0 +0 3279 0 +0 3404 0 +0 3530 0 +0 3658 0 +3290 2144 3005 +3290 2145 3005 +3290 2145 3005 +3290 2146 3005 +3290 2148 3004 +3289 2149 3004 +3289 2151 3003 +3288 2154 3003 +3288 2158 3002 +3287 2163 3000 +3286 2170 2999 +3284 2178 2996 +3282 2190 2993 +3279 2205 2989 +3275 2224 2983 +3270 2248 2976 +3262 2279 2965 +3253 2317 2951 +3239 2363 2931 +3220 2418 2902 +3194 2483 2862 +3156 2558 2801 +3101 2641 2704 +3013 2733 2530 +2862 2833 2087 +2520 2939 0 +0 3051 0 +0 3168 0 +0 3287 0 +0 3410 0 +0 3535 0 +0 3662 0 +3423 2265 3134 +3423 2265 3134 +3423 2266 3134 +3423 2267 3134 +3423 2268 3134 +3422 2269 3133 +3422 2270 3133 +3422 2273 3132 +3421 2276 3132 +3421 2279 3131 +3420 2285 3130 +3418 2291 3128 +3417 2300 3125 +3415 2312 3122 +3412 2327 3118 +3408 2347 3112 +3403 2371 3105 +3395 2403 3094 +3386 2441 3080 +3372 2488 3059 +3353 2545 3031 +3327 2610 2990 +3290 2685 2928 +3234 2770 2830 +3147 2863 2654 +2996 2963 2197 +2656 3070 0 +0 3182 0 +0 3298 0 +0 3419 0 +0 3542 0 +0 3667 0 +3556 2388 3264 +3556 2389 3264 +3556 2389 3264 +3556 2390 3264 +3555 2390 3264 +3555 2391 3264 +3555 2393 3263 +3555 2394 3263 +3554 2397 3262 +3554 2400 3262 +3553 2403 3261 +3552 2409 3259 +3551 2416 3258 +3550 2425 3255 +3547 2437 3252 +3544 2452 3248 +3541 2472 3242 +3535 2497 3234 +3528 2529 3224 +3518 2568 3209 +3505 2615 3189 +3486 2672 3160 +3460 2738 3119 +3422 2814 3057 +3367 2899 2958 +3280 2992 2780 +3130 3093 2311 +2791 3200 0 +0 3313 0 +0 3430 0 +0 3550 0 +0 3673 0 +3688 2514 3395 +3688 2514 3395 +3688 2515 3395 +3688 2515 3395 +3688 2515 3394 +3688 2516 3394 +3688 2517 3394 +3688 2518 3394 +3687 2520 3393 +3687 2522 3393 +3686 2525 3392 +3686 2529 3391 +3685 2535 3390 +3684 2542 3388 +3682 2551 3386 +3680 2563 3383 +3677 2579 3378 +3673 2599 3373 +3668 2624 3365 +3661 2656 3354 +3651 2696 3339 +3637 2744 3319 +3619 2801 3290 +3593 2868 3249 +3555 2944 3186 +3500 3029 3087 +3413 3123 2907 +3263 3224 2429 +2926 3331 0 +0 3444 0 +0 3561 0 +0 3682 0 +3821 2641 3526 +3821 2641 3526 +3821 2641 3526 +3821 2642 3526 +3821 2642 3525 +3821 2643 3525 +3820 2643 3525 +3820 2644 3525 +3820 2646 3525 +3820 2647 3524 +3819 2650 3524 +3819 2653 3523 +3818 2657 3522 +3817 2662 3521 +3816 2669 3519 +3815 2679 3517 +3812 2691 3513 +3809 2706 3509 +3806 2727 3503 +3800 2752 3495 +3793 2785 3485 +3783 2825 3470 +3770 2873 3450 +3751 2930 3421 +3725 2998 3379 +3688 3074 3316 +3632 3160 3216 +3546 3254 3035 +3396 3355 2551 +3060 3463 0 +0 3576 0 +0 3693 0 +3953 2769 3657 +3953 2770 3657 +3953 2770 3657 +3953 2770 3657 +3953 2770 3657 +3953 2771 3657 +3953 2771 3656 +3953 2772 3656 +3953 2773 3656 +3952 2774 3656 +3952 2776 3655 +3952 2778 3655 +3951 2781 3654 +3951 2785 3653 +3950 2791 3652 +3948 2798 3650 +3947 2807 3648 +3945 2820 3644 +3942 2835 3640 +3938 2856 3634 +3933 2882 3627 +3925 2914 3616 +3916 2954 3601 +3902 3003 3581 +3884 3061 3552 +3858 3128 3510 +3820 3205 3447 +3765 3291 3347 +3678 3385 3165 +3528 3486 2675 +3193 3594 0 +0 3707 0 +4085 2899 3788 +4085 2899 3788 +4085 2899 3788 +4085 2899 3788 +4085 2899 3788 +4085 2900 3788 +4085 2900 3788 +4085 2901 3788 +4085 2901 3788 +4085 2902 3787 +4085 2904 3787 +4084 2905 3787 +4084 2908 3786 +4084 2911 3785 +4083 2915 3784 +4082 2920 3783 +4081 2928 3781 +4079 2937 3779 +4077 2949 3776 +4074 2965 3772 +4070 2986 3766 +4065 3012 3758 +4058 3044 3747 +4048 3084 3732 +4035 3133 3712 +4016 3191 3683 +3990 3259 3641 +3952 3336 3578 +3897 3422 3477 +3811 3516 3295 +3661 3618 2801 +3326 3726 0 +4095 3029 3920 +4095 3029 3920 +4095 3029 3920 +4095 3029 3920 +4095 3029 3920 +4095 3029 3920 +4095 3030 3920 +4095 3030 3920 +4095 3031 3919 +4095 3031 3919 +4095 3032 3919 +4095 3034 3919 +4095 3035 3918 +4095 3038 3918 +4095 3041 3917 +4095 3045 3916 +4095 3050 3915 +4095 3058 3913 +4095 3067 3911 +4095 3079 3907 +4095 3095 3903 +4095 3116 3897 +4095 3142 3889 +4095 3175 3879 +4095 3215 3864 +4095 3264 3843 +4095 3322 3814 +4095 3390 3772 +4085 3467 3709 +4029 3553 3609 +3943 3648 3425 +3793 3750 2928 +4095 3159 4052 +4095 3159 4052 +4095 3159 4052 +4095 3159 4052 +4095 3160 4052 +4095 3160 4051 +4095 3160 4051 +4095 3160 4051 +4095 3161 4051 +4095 3161 4051 +4095 3162 4051 +4095 3163 4051 +4095 3164 4050 +4095 3166 4050 +4095 3168 4049 +4095 3171 4049 +4095 3176 4048 +4095 3181 4046 +4095 3188 4045 +4095 3198 4042 +4095 3210 4039 +4095 3226 4035 +4095 3247 4029 +4095 3273 4021 +4095 3306 4010 +4095 3346 3996 +4095 3395 3975 +4095 3454 3946 +4095 3521 3904 +4095 3599 3841 +4095 3685 3740 +4075 3780 3556 +0 1218 1478 +0 1222 1474 +0 1228 1469 +0 1234 1463 +0 1243 1454 +0 1255 1441 +0 1270 1424 +0 1290 1401 +0 1314 1367 +0 1346 1318 +0 1384 1242 +0 1431 1116 +0 1488 863 +0 1553 0 +0 1629 0 +0 1713 0 +0 1806 0 +0 1906 0 +0 2013 0 +0 2125 0 +0 2242 0 +0 2362 0 +0 2485 0 +0 2610 0 +0 2737 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +0 1220 1483 +0 1224 1479 +0 1229 1475 +0 1236 1468 +0 1245 1459 +0 1256 1447 +0 1271 1430 +0 1291 1407 +0 1316 1374 +0 1347 1325 +0 1385 1251 +0 1432 1128 +0 1488 883 +0 1554 0 +0 1629 0 +0 1713 0 +0 1806 0 +0 1906 0 +0 2013 0 +0 2125 0 +0 2242 0 +0 2362 0 +0 2485 0 +0 2610 0 +0 2737 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +0 1222 1490 +0 1225 1486 +0 1231 1482 +0 1237 1475 +0 1246 1467 +0 1258 1455 +0 1273 1438 +0 1292 1415 +0 1317 1383 +0 1348 1335 +0 1387 1263 +0 1433 1143 +0 1489 909 +0 1555 0 +0 1630 0 +0 1714 0 +0 1807 0 +0 1907 0 +0 2013 0 +0 2125 0 +0 2242 0 +0 2362 0 +0 2485 0 +0 2610 0 +0 2737 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +0 1224 1499 +0 1228 1496 +0 1233 1491 +0 1240 1485 +0 1248 1476 +0 1260 1465 +0 1275 1449 +0 1294 1426 +0 1319 1395 +0 1350 1348 +0 1388 1278 +0 1435 1163 +0 1491 942 +0 1556 111 +0 1631 0 +0 1715 0 +0 1807 0 +0 1907 0 +0 2014 0 +0 2126 0 +0 2242 0 +0 2362 0 +0 2485 0 +0 2610 0 +0 2737 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +0 1227 1511 +0 1231 1508 +0 1236 1503 +0 1243 1497 +0 1251 1489 +0 1263 1478 +0 1278 1462 +0 1297 1441 +0 1321 1410 +0 1352 1365 +0 1390 1298 +0 1437 1188 +0 1492 982 +0 1557 317 +0 1632 0 +0 1716 0 +0 1808 0 +0 1908 0 +0 2014 0 +0 2126 0 +0 2243 0 +0 2363 0 +0 2485 0 +0 2610 0 +0 2737 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +0 1231 1527 +0 1235 1524 +0 1240 1519 +0 1247 1514 +0 1255 1506 +0 1267 1495 +0 1281 1480 +0 1300 1459 +0 1325 1429 +0 1355 1387 +0 1393 1322 +0 1439 1219 +0 1495 1030 +0 1559 497 +0 1634 0 +0 1717 0 +0 1809 0 +0 1909 0 +0 2015 0 +0 2127 0 +0 2243 0 +0 2363 0 +0 2486 0 +0 2611 0 +0 2737 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3254 0 +0 3385 0 +0 3516 0 +0 3648 0 +0 1237 1547 +0 1240 1544 +0 1245 1540 +0 1252 1534 +0 1260 1527 +0 1272 1516 +0 1286 1502 +0 1305 1482 +0 1329 1454 +0 1360 1414 +0 1397 1354 +0 1443 1258 +0 1498 1088 +0 1562 662 +0 1636 0 +0 1719 0 +0 1811 0 +0 1910 0 +0 2016 0 +0 2128 0 +0 2244 0 +0 2363 0 +0 2486 0 +0 2611 0 +0 2737 0 +0 2865 0 +0 2994 0 +0 3124 0 +0 3255 0 +0 3385 0 +0 3516 0 +0 3648 0 +0 1244 1573 +0 1248 1570 +0 1252 1566 +0 1259 1561 +0 1267 1554 +0 1278 1544 +0 1293 1530 +0 1311 1512 +0 1335 1486 +0 1365 1448 +0 1402 1392 +0 1448 1306 +0 1502 1155 +0 1566 818 +0 1639 0 +0 1722 0 +0 1813 0 +0 1912 0 +0 2017 0 +0 2129 0 +0 2244 0 +0 2364 0 +0 2486 0 +0 2611 0 +0 2738 0 +0 2866 0 +0 2995 0 +0 3124 0 +0 3255 0 +0 3385 0 +0 3516 0 +0 3648 0 +664 1253 1605 +635 1257 1602 +593 1262 1599 +530 1268 1594 +428 1276 1587 +243 1287 1578 +0 1301 1566 +0 1320 1548 +0 1343 1524 +0 1372 1490 +0 1409 1440 +0 1454 1362 +0 1507 1232 +0 1570 966 +0 1643 0 +0 1725 0 +0 1816 0 +0 1914 0 +0 2019 0 +0 2130 0 +0 2245 0 +0 2365 0 +0 2487 0 +0 2612 0 +0 2738 0 +0 2866 0 +0 2995 0 +0 3124 0 +0 3255 0 +0 3385 0 +0 3517 0 +0 3648 0 +1063 1266 1645 +1051 1269 1642 +1034 1274 1639 +1011 1280 1635 +979 1288 1628 +931 1299 1620 +858 1313 1609 +738 1330 1593 +503 1353 1571 +0 1382 1541 +0 1418 1496 +0 1462 1428 +0 1514 1318 +0 1577 1110 +0 1648 435 +0 1729 0 +0 1819 0 +0 1917 0 +0 2021 0 +0 2132 0 +0 2247 0 +0 2366 0 +0 2488 0 +0 2612 0 +0 2739 0 +0 2866 0 +0 2995 0 +0 3125 0 +0 3255 0 +0 3386 0 +0 3517 0 +0 3648 0 +1325 1282 1693 +1318 1285 1691 +1309 1290 1688 +1297 1296 1684 +1280 1303 1678 +1256 1314 1671 +1222 1327 1661 +1172 1344 1647 +1095 1366 1628 +966 1394 1601 +704 1429 1562 +0 1472 1503 +0 1524 1412 +0 1585 1251 +0 1655 870 +0 1735 0 +0 1824 0 +0 1921 0 +0 2024 0 +0 2134 0 +0 2249 0 +0 2367 0 +0 2489 0 +0 2613 0 +0 2739 0 +0 2867 0 +0 2995 0 +0 3125 0 +0 3255 0 +0 3386 0 +0 3517 0 +0 3648 0 +1535 1302 1751 +1530 1306 1749 +1525 1310 1746 +1517 1316 1742 +1507 1323 1738 +1492 1333 1731 +1472 1346 1722 +1444 1362 1710 +1404 1384 1693 +1343 1411 1670 +1246 1444 1637 +1074 1486 1588 +636 1536 1514 +0 1595 1390 +0 1664 1144 +0 1743 0 +0 1830 0 +0 1926 0 +0 2029 0 +0 2137 0 +0 2251 0 +0 2369 0 +0 2490 0 +0 2614 0 +0 2740 0 +0 2867 0 +0 2996 0 +0 3125 0 +0 3255 0 +0 3386 0 +0 3517 0 +0 3648 0 +1717 1329 1818 +1714 1332 1816 +1711 1336 1814 +1706 1341 1811 +1699 1348 1806 +1689 1357 1801 +1676 1370 1793 +1659 1385 1783 +1634 1406 1769 +1598 1431 1749 +1546 1464 1721 +1465 1503 1681 +1327 1552 1621 +1035 1609 1527 +0 1676 1358 +0 1753 942 +0 1839 0 +0 1933 0 +0 2034 0 +0 2142 0 +0 2255 0 +0 2372 0 +0 2492 0 +0 2616 0 +0 2741 0 +0 2868 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +1884 1361 1894 +1882 1364 1893 +1879 1368 1891 +1876 1373 1888 +1871 1380 1885 +1865 1388 1880 +1856 1400 1874 +1844 1414 1865 +1827 1433 1853 +1805 1458 1837 +1772 1488 1814 +1724 1526 1782 +1652 1572 1734 +1532 1627 1662 +1297 1692 1544 +234 1766 1313 +0 1850 322 +0 1942 0 +0 2041 0 +0 2147 0 +0 2259 0 +0 2375 0 +0 2495 0 +0 2618 0 +0 2743 0 +0 2869 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3387 0 +0 3517 0 +0 3648 0 +2040 1402 1980 +2038 1405 1979 +2037 1408 1977 +2034 1413 1975 +2031 1419 1972 +2026 1427 1968 +2020 1437 1963 +2012 1451 1956 +2001 1468 1946 +1985 1491 1933 +1964 1519 1914 +1933 1555 1889 +1888 1598 1852 +1821 1650 1797 +1712 1712 1712 +1507 1783 1566 +855 1864 1243 +0 1953 0 +0 2051 0 +0 2155 0 +0 2265 0 +0 2380 0 +0 2499 0 +0 2620 0 +0 2745 0 +0 2871 0 +0 2999 0 +0 3127 0 +0 3257 0 +0 3387 0 +0 3518 0 +0 3649 0 +2189 1451 2074 +2188 1453 2073 +2187 1456 2071 +2185 1461 2070 +2183 1466 2067 +2180 1473 2064 +2175 1483 2060 +2169 1495 2054 +2161 1511 2046 +2151 1531 2036 +2136 1557 2021 +2115 1590 2001 +2085 1630 1972 +2043 1679 1931 +1979 1737 1869 +1877 1805 1771 +1690 1882 1593 +1170 1968 1129 +0 2063 0 +0 2165 0 +0 2273 0 +0 2386 0 +0 2503 0 +0 2624 0 +0 2747 0 +0 2873 0 +0 3000 0 +0 3128 0 +0 3258 0 +0 3388 0 +0 3518 0 +0 3649 0 +2334 1509 2175 +2333 1511 2174 +2332 1514 2173 +2331 1518 2172 +2329 1522 2170 +2327 1529 2167 +2324 1537 2164 +2319 1548 2159 +2314 1562 2153 +2306 1581 2145 +2295 1604 2134 +2281 1634 2118 +2261 1671 2096 +2232 1716 2065 +2191 1769 2019 +2130 1833 1951 +2032 1906 1839 +1856 1988 1628 +1402 2079 912 +0 2177 0 +0 2283 0 +0 2394 0 +0 2509 0 +0 2629 0 +0 2751 0 +0 2876 0 +0 3002 0 +0 3130 0 +0 3259 0 +0 3389 0 +0 3519 0 +0 3650 0 +2475 1577 2283 +2474 1579 2282 +2474 1581 2281 +2473 1584 2280 +2472 1588 2279 +2470 1594 2277 +2468 1601 2274 +2464 1611 2270 +2460 1623 2266 +2455 1639 2259 +2447 1660 2250 +2437 1686 2238 +2423 1719 2221 +2403 1760 2198 +2375 1809 2165 +2335 1867 2116 +2275 1935 2041 +2181 2013 1917 +2012 2099 1670 +1597 2194 135 +0 2296 0 +0 2404 0 +0 2517 0 +0 2635 0 +0 2756 0 +0 2879 0 +0 3005 0 +0 3132 0 +0 3260 0 +0 3390 0 +0 3520 0 +0 3650 0 +2614 1654 2395 +2613 1656 2395 +2613 1658 2394 +2612 1660 2393 +2611 1664 2392 +2610 1669 2391 +2608 1675 2389 +2606 1683 2386 +2603 1694 2382 +2599 1707 2377 +2593 1725 2370 +2586 1748 2361 +2576 1777 2348 +2562 1813 2331 +2542 1857 2306 +2515 1910 2271 +2476 1972 2219 +2417 2044 2139 +2325 2125 2004 +2162 2215 1721 +1771 2313 0 +0 2417 0 +0 2528 0 +0 2643 0 +0 2762 0 +0 2884 0 +0 3009 0 +0 3135 0 +0 3263 0 +0 3391 0 +0 3521 0 +0 3651 0 +2751 1741 2513 +2750 1742 2512 +2750 1744 2512 +2750 1746 2511 +2749 1749 2510 +2748 1753 2509 +2747 1758 2507 +2745 1764 2505 +2743 1773 2502 +2740 1785 2499 +2736 1800 2493 +2730 1819 2486 +2723 1844 2477 +2713 1875 2464 +2699 1914 2445 +2680 1961 2420 +2653 2017 2383 +2614 2083 2329 +2556 2158 2244 +2466 2242 2099 +2306 2335 1782 +1932 2435 0 +0 2542 0 +0 2654 0 +0 2770 0 +0 2890 0 +0 3013 0 +0 3138 0 +0 3265 0 +0 3393 0 +0 3522 0 +0 3652 0 +2887 1835 2633 +2886 1836 2633 +2886 1838 2633 +2886 1839 2632 +2885 1842 2631 +2884 1845 2630 +2884 1849 2629 +2882 1855 2628 +2881 1862 2625 +2878 1872 2623 +2875 1884 2619 +2871 1900 2613 +2866 1921 2606 +2859 1948 2596 +2849 1981 2582 +2835 2021 2564 +2816 2071 2537 +2789 2130 2499 +2751 2198 2443 +2694 2275 2355 +2604 2362 2201 +2447 2457 1852 +2084 2559 0 +0 2668 0 +0 2781 0 +0 2899 0 +0 3020 0 +0 3143 0 +0 3269 0 +0 3396 0 +0 3525 0 +0 3654 0 +3021 1937 2757 +3021 1938 2756 +3021 1939 2756 +3021 1940 2756 +3020 1942 2755 +3020 1945 2754 +3019 1948 2754 +3018 1953 2752 +3017 1959 2751 +3015 1966 2748 +3013 1977 2745 +3010 1990 2741 +3006 2007 2736 +3001 2029 2728 +2994 2057 2718 +2984 2092 2705 +2970 2134 2685 +2951 2186 2658 +2924 2247 2619 +2886 2317 2561 +2830 2397 2470 +2741 2485 2310 +2586 2582 1931 +2231 2685 0 +0 2795 0 +0 2910 0 +0 3028 0 +0 3150 0 +0 3274 0 +0 3400 0 +0 3527 0 +0 3656 0 +3155 2045 2882 +3155 2046 2882 +3155 2047 2882 +3155 2048 2881 +3155 2049 2881 +3154 2051 2880 +3154 2054 2880 +3153 2057 2879 +3152 2062 2877 +3151 2068 2876 +3149 2077 2874 +3147 2087 2870 +3144 2101 2866 +3140 2119 2861 +3135 2142 2853 +3128 2171 2843 +3118 2207 2829 +3104 2251 2809 +3085 2304 2782 +3059 2367 2742 +3021 2439 2683 +2965 2520 2589 +2877 2610 2423 +2723 2708 2020 +2374 2813 0 +0 2924 0 +0 3039 0 +0 3158 0 +0 3280 0 +0 3405 0 +0 3531 0 +0 3659 0 +3289 2158 3009 +3289 2159 3009 +3289 2160 3009 +3289 2160 3009 +3288 2162 3008 +3288 2163 3008 +3288 2165 3007 +3287 2168 3007 +3287 2172 3006 +3286 2177 3004 +3285 2183 3003 +3283 2192 3000 +3281 2203 2997 +3278 2217 2993 +3274 2236 2988 +3269 2259 2980 +3261 2289 2969 +3251 2326 2955 +3238 2372 2935 +3219 2426 2907 +3193 2490 2867 +3155 2563 2807 +3099 2646 2711 +3011 2737 2541 +2859 2836 2116 +2514 2942 0 +0 3053 0 +0 3169 0 +0 3289 0 +0 3411 0 +0 3536 0 +0 3662 0 +3422 2276 3137 +3422 2276 3137 +3422 2277 3137 +3422 2278 3137 +3422 2278 3137 +3422 2280 3136 +3421 2281 3136 +3421 2283 3135 +3420 2286 3135 +3420 2290 3134 +3419 2295 3133 +3418 2302 3131 +3416 2310 3128 +3414 2322 3125 +3411 2337 3121 +3407 2356 3115 +3402 2380 3108 +3394 2411 3097 +3385 2449 3083 +3371 2495 3063 +3352 2551 3035 +3326 2615 2994 +3289 2690 2933 +3233 2773 2836 +3145 2866 2662 +2994 2965 2219 +2652 3072 0 +0 3183 0 +0 3300 0 +0 3420 0 +0 3542 0 +0 3667 0 +3555 2397 3267 +3555 2397 3266 +3555 2398 3266 +3555 2398 3266 +3555 2399 3266 +3555 2400 3266 +3555 2401 3266 +3554 2403 3265 +3554 2405 3265 +3553 2408 3264 +3553 2412 3263 +3552 2417 3262 +3551 2423 3260 +3549 2432 3258 +3547 2444 3254 +3544 2459 3250 +3540 2479 3245 +3535 2504 3237 +3527 2535 3226 +3518 2573 3212 +3504 2621 3191 +3485 2677 3163 +3459 2742 3122 +3422 2818 3060 +3366 2902 2962 +3279 2995 2786 +3128 3095 2329 +2788 3202 0 +0 3314 0 +0 3431 0 +0 3551 0 +0 3674 0 +3688 2520 3396 +3688 2521 3396 +3688 2521 3396 +3688 2521 3396 +3688 2522 3396 +3688 2522 3396 +3687 2523 3396 +3687 2525 3395 +3687 2526 3395 +3687 2529 3394 +3686 2532 3394 +3685 2536 3393 +3684 2541 3391 +3683 2548 3390 +3682 2557 3387 +3679 2569 3384 +3677 2584 3380 +3673 2604 3374 +3667 2629 3366 +3660 2661 3356 +3650 2700 3341 +3637 2748 3321 +3618 2804 3292 +3592 2871 3251 +3555 2946 3189 +3499 3031 3090 +3412 3125 2912 +3262 3225 2443 +2923 3332 0 +0 3445 0 +0 3562 0 +0 3682 0 +3820 2646 3527 +3820 2646 3527 +3820 2646 3527 +3820 2647 3527 +3820 2647 3527 +3820 2648 3527 +3820 2648 3526 +3820 2649 3526 +3820 2651 3526 +3819 2652 3525 +3819 2654 3525 +3819 2658 3524 +3818 2662 3523 +3817 2667 3522 +3816 2674 3520 +3814 2683 3518 +3812 2695 3515 +3809 2711 3510 +3805 2731 3505 +3800 2756 3497 +3793 2788 3486 +3783 2828 3471 +3769 2876 3451 +3751 2933 3422 +3725 3000 3381 +3687 3076 3318 +3632 3161 3219 +3545 3255 3039 +3395 3356 2562 +3058 3463 0 +0 3576 0 +0 3693 0 +3953 2773 3658 +3953 2773 3658 +3953 2773 3658 +3953 2774 3658 +3953 2774 3658 +3953 2774 3658 +3953 2775 3657 +3953 2776 3657 +3952 2777 3657 +3952 2778 3657 +3952 2780 3656 +3952 2782 3656 +3951 2785 3655 +3950 2789 3654 +3949 2794 3653 +3948 2801 3651 +3947 2811 3649 +3944 2823 3645 +3942 2839 3641 +3938 2859 3635 +3932 2885 3628 +3925 2917 3617 +3915 2957 3602 +3902 3005 3582 +3883 3063 3553 +3857 3130 3511 +3820 3206 3449 +3764 3292 3349 +3678 3386 3167 +3528 3487 2683 +3192 3595 0 +0 3708 0 +4085 2901 3789 +4085 2902 3789 +4085 2902 3789 +4085 2902 3789 +4085 2902 3789 +4085 2902 3789 +4085 2903 3789 +4085 2903 3789 +4085 2904 3788 +4085 2905 3788 +4085 2906 3788 +4084 2908 3787 +4084 2910 3787 +4083 2913 3786 +4083 2918 3785 +4082 2923 3784 +4081 2930 3782 +4079 2939 3780 +4077 2952 3777 +4074 2968 3772 +4070 2988 3767 +4065 3014 3759 +4058 3046 3748 +4048 3086 3733 +4034 3135 3713 +4016 3193 3684 +3990 3260 3642 +3952 3337 3579 +3897 3423 3479 +3810 3517 3297 +3660 3618 2807 +3325 3726 0 +4095 3031 3920 +4095 3031 3920 +4095 3031 3920 +4095 3031 3920 +4095 3031 3920 +4095 3031 3920 +4095 3032 3920 +4095 3032 3920 +4095 3033 3920 +4095 3033 3920 +4095 3034 3920 +4095 3036 3919 +4095 3037 3919 +4095 3040 3918 +4095 3043 3918 +4095 3047 3917 +4095 3052 3915 +4095 3060 3914 +4095 3069 3911 +4095 3081 3908 +4095 3097 3904 +4095 3118 3898 +4095 3144 3890 +4095 3176 3879 +4095 3217 3864 +4095 3265 3844 +4095 3323 3815 +4095 3391 3773 +4085 3468 3710 +4029 3554 3610 +3943 3648 3427 +3793 3750 2933 +4095 3161 4052 +4095 3161 4052 +4095 3161 4052 +4095 3161 4052 +4095 3161 4052 +4095 3161 4052 +4095 3161 4052 +4095 3162 4052 +4095 3162 4052 +4095 3163 4052 +4095 3163 4051 +4095 3164 4051 +4095 3166 4051 +4095 3168 4050 +4095 3170 4050 +4095 3173 4049 +4095 3177 4048 +4095 3183 4047 +4095 3190 4045 +4095 3199 4043 +4095 3212 4040 +4095 3228 4035 +4095 3248 4029 +4095 3274 4022 +4095 3307 4011 +4095 3347 3996 +4095 3396 3975 +4095 3454 3946 +4095 3522 3904 +4095 3599 3841 +4095 3685 3741 +4075 3780 3557 +0 1347 1608 +0 1350 1606 +0 1354 1602 +0 1359 1597 +0 1365 1590 +0 1374 1581 +0 1386 1569 +0 1401 1552 +0 1421 1528 +0 1446 1494 +0 1477 1444 +0 1516 1367 +0 1563 1239 +0 1619 979 +0 1685 0 +0 1760 0 +0 1845 0 +0 1938 0 +0 2038 0 +0 2145 0 +0 2257 0 +0 2374 0 +0 2494 0 +0 2617 0 +0 2742 0 +0 2869 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +0 1348 1612 +0 1351 1610 +0 1354 1606 +0 1360 1601 +0 1366 1595 +0 1375 1586 +0 1387 1573 +0 1402 1557 +0 1422 1533 +0 1447 1499 +0 1478 1450 +0 1516 1374 +0 1564 1248 +0 1620 995 +0 1685 0 +0 1761 0 +0 1845 0 +0 1938 0 +0 2038 0 +0 2145 0 +0 2257 0 +0 2374 0 +0 2494 0 +0 2617 0 +0 2742 0 +0 2869 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +0 1349 1618 +0 1352 1615 +0 1356 1611 +0 1361 1607 +0 1368 1600 +0 1377 1591 +0 1388 1579 +0 1403 1563 +0 1423 1539 +0 1448 1506 +0 1479 1457 +0 1517 1383 +0 1564 1260 +0 1620 1015 +0 1686 0 +0 1761 0 +0 1845 0 +0 1938 0 +0 2038 0 +0 2145 0 +0 2257 0 +0 2374 0 +0 2494 0 +0 2617 0 +0 2742 0 +0 2869 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +0 1351 1625 +0 1354 1622 +0 1358 1619 +0 1363 1614 +0 1369 1607 +0 1378 1599 +0 1390 1587 +0 1405 1570 +0 1424 1548 +0 1449 1515 +0 1480 1467 +0 1519 1395 +0 1565 1275 +0 1621 1041 +0 1687 0 +0 1762 0 +0 1846 0 +0 1939 0 +0 2039 0 +0 2145 0 +0 2258 0 +0 2374 0 +0 2494 0 +0 2617 0 +0 2742 0 +0 2869 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +0 1353 1634 +0 1356 1631 +0 1360 1628 +0 1365 1623 +0 1372 1617 +0 1381 1608 +0 1392 1597 +0 1407 1581 +0 1426 1558 +0 1451 1527 +0 1482 1480 +0 1520 1410 +0 1567 1295 +0 1623 1074 +0 1688 244 +0 1763 0 +0 1847 0 +0 1939 0 +0 2039 0 +0 2146 0 +0 2258 0 +0 2374 0 +0 2494 0 +0 2617 0 +0 2742 0 +0 2869 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3386 0 +0 3517 0 +0 3648 0 +0 1356 1646 +0 1359 1643 +0 1363 1640 +0 1368 1636 +0 1375 1629 +0 1383 1621 +0 1395 1610 +0 1410 1594 +0 1429 1573 +0 1453 1542 +0 1484 1497 +0 1522 1430 +0 1569 1320 +0 1624 1114 +0 1690 449 +0 1764 0 +0 1848 0 +0 1940 0 +0 2040 0 +0 2146 0 +0 2258 0 +0 2375 0 +0 2495 0 +0 2617 0 +0 2742 0 +0 2869 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3387 0 +0 3517 0 +0 3648 0 +0 1360 1662 +0 1363 1659 +0 1367 1656 +0 1372 1652 +0 1379 1646 +0 1387 1638 +0 1399 1627 +0 1414 1612 +0 1433 1591 +0 1457 1561 +0 1487 1519 +0 1525 1455 +0 1572 1351 +0 1627 1162 +0 1692 629 +0 1766 0 +0 1849 0 +0 1941 0 +0 2041 0 +0 2147 0 +0 2259 0 +0 2375 0 +0 2495 0 +0 2618 0 +0 2743 0 +0 2869 0 +0 2997 0 +0 3126 0 +0 3256 0 +0 3387 0 +0 3517 0 +0 3648 0 +0 1366 1682 +0 1369 1679 +0 1373 1676 +0 1377 1672 +0 1384 1666 +0 1393 1659 +0 1404 1648 +0 1418 1634 +0 1437 1614 +0 1461 1586 +0 1492 1546 +0 1529 1486 +0 1575 1390 +0 1630 1220 +0 1694 795 +0 1768 0 +0 1851 0 +0 1943 0 +0 2042 0 +0 2148 0 +0 2260 0 +0 2376 0 +0 2495 0 +0 2618 0 +0 2743 0 +0 2870 0 +0 2998 0 +0 3127 0 +0 3256 0 +0 3387 0 +0 3517 0 +0 3649 0 +0 1373 1707 +0 1376 1705 +0 1380 1702 +0 1385 1698 +0 1391 1693 +0 1399 1686 +0 1411 1676 +0 1425 1662 +0 1444 1644 +0 1467 1618 +0 1497 1580 +0 1534 1525 +0 1580 1438 +0 1634 1287 +0 1698 950 +0 1771 0 +0 1854 0 +0 1945 0 +0 2044 0 +0 2149 0 +0 2261 0 +0 2377 0 +0 2496 0 +0 2619 0 +0 2743 0 +0 2870 0 +0 2998 0 +0 3127 0 +0 3256 0 +0 3387 0 +0 3517 0 +0 3649 0 +817 1383 1739 +796 1385 1737 +767 1389 1734 +725 1394 1731 +662 1400 1726 +560 1408 1719 +375 1419 1710 +0 1433 1698 +0 1452 1680 +0 1475 1656 +0 1504 1622 +0 1541 1572 +0 1586 1494 +0 1639 1364 +0 1702 1098 +0 1775 0 +0 1857 0 +0 1948 0 +0 2046 0 +0 2151 0 +0 2262 0 +0 2378 0 +0 2497 0 +0 2619 0 +0 2744 0 +0 2870 0 +0 2998 0 +0 3127 0 +0 3257 0 +0 3387 0 +0 3518 0 +0 3649 0 +1204 1395 1779 +1195 1398 1777 +1183 1401 1775 +1166 1406 1771 +1143 1412 1767 +1111 1420 1761 +1063 1431 1752 +990 1445 1741 +870 1462 1725 +635 1485 1704 +0 1514 1673 +0 1550 1628 +0 1594 1560 +0 1646 1450 +0 1709 1243 +0 1780 567 +0 1861 0 +0 1951 0 +0 2049 0 +0 2154 0 +0 2264 0 +0 2379 0 +0 2498 0 +0 2620 0 +0 2744 0 +0 2871 0 +0 2998 0 +0 3127 0 +0 3257 0 +0 3387 0 +0 3518 0 +0 3649 0 +1462 1411 1827 +1457 1414 1825 +1450 1417 1823 +1441 1422 1820 +1429 1428 1816 +1412 1436 1811 +1388 1446 1803 +1354 1459 1793 +1304 1476 1779 +1227 1498 1760 +1098 1526 1733 +836 1561 1694 +0 1604 1636 +0 1656 1544 +0 1717 1383 +0 1787 1003 +0 1867 0 +0 1956 0 +0 2053 0 +0 2157 0 +0 2266 0 +0 2381 0 +0 2499 0 +0 2621 0 +0 2745 0 +0 2871 0 +0 2999 0 +0 3128 0 +0 3257 0 +0 3387 0 +0 3518 0 +0 3649 0 +1670 1432 1884 +1667 1435 1883 +1663 1438 1881 +1657 1442 1878 +1649 1448 1875 +1639 1455 1870 +1624 1465 1863 +1604 1478 1854 +1576 1494 1842 +1536 1516 1826 +1475 1543 1802 +1378 1576 1769 +1206 1618 1720 +769 1668 1646 +0 1728 1522 +0 1797 1276 +0 1875 0 +0 1962 0 +0 2058 0 +0 2161 0 +0 2270 0 +0 2383 0 +0 2501 0 +0 2623 0 +0 2746 0 +0 2872 0 +0 3000 0 +0 3128 0 +0 3257 0 +0 3387 0 +0 3518 0 +0 3649 0 +1851 1458 1951 +1849 1461 1950 +1847 1464 1948 +1843 1468 1946 +1838 1473 1943 +1831 1480 1939 +1821 1490 1933 +1809 1502 1925 +1791 1517 1915 +1766 1538 1901 +1730 1563 1881 +1678 1596 1853 +1597 1636 1813 +1459 1684 1753 +1167 1741 1659 +0 1809 1491 +0 1885 1074 +0 1971 0 +0 2065 0 +0 2166 0 +0 2274 0 +0 2387 0 +0 2504 0 +0 2625 0 +0 2748 0 +0 2873 0 +0 3000 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3518 0 +0 3649 0 +2017 1491 2027 +2016 1494 2026 +2014 1496 2025 +2011 1500 2023 +2008 1505 2020 +2003 1512 2017 +1997 1520 2012 +1988 1532 2006 +1976 1547 1997 +1960 1566 1985 +1937 1590 1969 +1904 1620 1946 +1856 1658 1914 +1784 1704 1867 +1664 1759 1794 +1430 1824 1676 +367 1898 1445 +0 1982 454 +0 2074 0 +0 2173 0 +0 2279 0 +0 2391 0 +0 2507 0 +0 2627 0 +0 2750 0 +0 2875 0 +0 3002 0 +0 3130 0 +0 3259 0 +0 3388 0 +0 3519 0 +0 3649 0 +2173 1532 2113 +2172 1534 2112 +2171 1537 2111 +2169 1540 2109 +2166 1545 2107 +2163 1551 2104 +2158 1559 2100 +2152 1569 2095 +2144 1583 2088 +2133 1600 2078 +2117 1623 2065 +2096 1651 2047 +2065 1687 2021 +2021 1730 1984 +1953 1782 1929 +1844 1844 1844 +1639 1915 1698 +988 1996 1375 +0 2085 0 +0 2183 0 +0 2287 0 +0 2397 0 +0 2512 0 +0 2631 0 +0 2753 0 +0 2877 0 +0 3003 0 +0 3131 0 +0 3259 0 +0 3389 0 +0 3519 0 +0 3650 0 +2322 1581 2206 +2321 1583 2206 +2320 1585 2205 +2319 1588 2204 +2317 1593 2202 +2315 1598 2199 +2312 1605 2196 +2307 1615 2192 +2301 1627 2186 +2293 1643 2179 +2283 1663 2168 +2268 1690 2153 +2247 1722 2133 +2218 1763 2105 +2175 1811 2063 +2111 1870 2001 +2009 1937 1903 +1822 2014 1725 +1302 2100 1261 +0 2195 0 +0 2297 0 +0 2405 0 +0 2518 0 +0 2635 0 +0 2756 0 +0 2880 0 +0 3005 0 +0 3132 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3650 0 +2466 1640 2308 +2466 1641 2307 +2465 1643 2306 +2464 1646 2305 +2463 1650 2304 +2461 1655 2302 +2459 1661 2299 +2456 1669 2296 +2451 1680 2292 +2446 1694 2285 +2438 1713 2277 +2427 1736 2266 +2413 1766 2250 +2393 1803 2228 +2364 1848 2197 +2323 1902 2152 +2262 1965 2083 +2164 2038 1971 +1988 2120 1760 +1534 2211 1044 +0 2309 0 +0 2415 0 +0 2526 0 +0 2641 0 +0 2761 0 +0 2883 0 +0 3008 0 +0 3134 0 +0 3262 0 +0 3391 0 +0 3521 0 +0 3651 0 +2607 1708 2415 +2607 1709 2415 +2607 1711 2414 +2606 1713 2413 +2605 1716 2412 +2604 1721 2411 +2602 1726 2409 +2600 1733 2406 +2597 1743 2402 +2592 1755 2398 +2587 1771 2391 +2579 1792 2382 +2569 1818 2370 +2555 1851 2353 +2535 1892 2330 +2507 1941 2297 +2467 1999 2248 +2407 2067 2173 +2313 2145 2049 +2144 2231 1802 +1729 2326 267 +0 2428 0 +0 2536 0 +0 2649 0 +0 2767 0 +0 2888 0 +0 3011 0 +0 3137 0 +0 3264 0 +0 3393 0 +0 3522 0 +0 3652 0 +2746 1785 2528 +2746 1786 2528 +2745 1788 2527 +2745 1790 2526 +2744 1793 2526 +2743 1796 2524 +2742 1801 2523 +2740 1807 2521 +2738 1815 2518 +2735 1826 2514 +2731 1839 2509 +2726 1857 2502 +2718 1880 2493 +2708 1909 2480 +2694 1945 2463 +2674 1989 2438 +2647 2042 2403 +2608 2104 2351 +2549 2176 2271 +2457 2257 2136 +2294 2347 1853 +1903 2445 0 +0 2549 0 +0 2660 0 +0 2775 0 +0 2894 0 +0 3016 0 +0 3141 0 +0 3267 0 +0 3395 0 +0 3523 0 +0 3653 0 +2883 1872 2645 +2883 1873 2645 +2883 1874 2644 +2882 1876 2644 +2882 1878 2643 +2881 1881 2642 +2880 1885 2641 +2879 1890 2640 +2877 1897 2637 +2875 1905 2635 +2872 1917 2631 +2868 1932 2625 +2862 1952 2618 +2855 1976 2609 +2845 2008 2596 +2831 2046 2577 +2812 2093 2552 +2785 2149 2515 +2746 2215 2461 +2688 2290 2376 +2598 2374 2231 +2438 2467 1914 +2064 2567 0 +0 2674 0 +0 2786 0 +0 2902 0 +0 3022 0 +0 3145 0 +0 3271 0 +0 3397 0 +0 3525 0 +0 3655 0 +3019 1967 2766 +3019 1967 2765 +3018 1968 2765 +3018 1970 2765 +3018 1971 2764 +3017 1974 2763 +3017 1977 2763 +3016 1981 2761 +3014 1987 2760 +3013 1994 2758 +3011 2004 2755 +3008 2016 2751 +3004 2032 2745 +2998 2053 2738 +2991 2080 2728 +2981 2113 2715 +2967 2154 2696 +2948 2203 2669 +2921 2262 2631 +2883 2330 2575 +2826 2408 2487 +2736 2494 2334 +2580 2589 1984 +2216 2691 0 +0 2800 0 +0 2913 0 +0 3031 0 +0 3152 0 +0 3275 0 +0 3401 0 +0 3528 0 +0 3657 0 +3154 2069 2889 +3153 2069 2889 +3153 2070 2888 +3153 2071 2888 +3153 2072 2888 +3152 2074 2887 +3152 2077 2887 +3151 2080 2886 +3150 2085 2884 +3149 2091 2883 +3147 2098 2881 +3145 2109 2878 +3142 2122 2873 +3138 2139 2868 +3133 2161 2861 +3126 2189 2850 +3116 2224 2837 +3102 2266 2817 +3083 2318 2790 +3057 2379 2751 +3018 2449 2693 +2962 2529 2602 +2873 2617 2442 +2718 2714 2063 +2363 2818 0 +0 2927 0 +0 3042 0 +0 3160 0 +0 3282 0 +0 3406 0 +0 3532 0 +0 3659 0 +3288 2177 3014 +3288 2177 3014 +3287 2178 3014 +3287 2179 3014 +3287 2180 3013 +3287 2181 3013 +3286 2183 3012 +3286 2186 3012 +3285 2190 3011 +3284 2194 3010 +3283 2200 3008 +3281 2209 3006 +3279 2219 3003 +3276 2233 2998 +3272 2251 2993 +3267 2274 2985 +3260 2303 2975 +3250 2339 2961 +3236 2383 2941 +3217 2437 2914 +3191 2499 2874 +3153 2571 2815 +3097 2652 2721 +3009 2743 2556 +2855 2840 2152 +2506 2945 0 +0 3056 0 +0 3171 0 +0 3290 0 +0 3412 0 +0 3537 0 +0 3663 0 +3421 2290 3141 +3421 2291 3141 +3421 2291 3141 +3421 2292 3141 +3421 2293 3141 +3421 2294 3140 +3420 2295 3140 +3420 2297 3139 +3419 2300 3139 +3419 2304 3138 +3418 2309 3136 +3417 2315 3135 +3415 2324 3132 +3413 2335 3129 +3410 2349 3125 +3406 2368 3120 +3401 2392 3112 +3393 2421 3102 +3384 2459 3087 +3370 2504 3067 +3351 2558 3039 +3325 2622 2999 +3287 2696 2939 +3231 2778 2844 +3143 2869 2673 +2991 2968 2248 +2646 3074 0 +0 3185 0 +0 3301 0 +0 3421 0 +0 3543 0 +0 3668 0 +3554 2408 3269 +3554 2408 3269 +3554 2408 3269 +3554 2409 3269 +3554 2410 3269 +3554 2411 3269 +3554 2412 3268 +3553 2413 3268 +3553 2416 3268 +3553 2418 3267 +3552 2422 3266 +3551 2427 3265 +3550 2434 3263 +3548 2443 3261 +3546 2454 3257 +3543 2469 3253 +3539 2488 3248 +3534 2512 3240 +3527 2543 3229 +3517 2581 3215 +3503 2627 3195 +3485 2683 3167 +3458 2747 3126 +3421 2822 3065 +3365 2905 2968 +3277 2998 2794 +3126 3097 2352 +2784 3204 0 +0 3315 0 +0 3432 0 +0 3552 0 +0 3674 0 +3687 2529 3399 +3687 2529 3399 +3687 2529 3399 +3687 2530 3398 +3687 2530 3398 +3687 2531 3398 +3687 2532 3398 +3687 2533 3398 +3686 2535 3397 +3686 2537 3397 +3685 2540 3396 +3685 2544 3395 +3684 2549 3394 +3683 2556 3392 +3681 2565 3390 +3679 2576 3387 +3676 2591 3382 +3672 2611 3377 +3667 2636 3369 +3660 2667 3358 +3650 2706 3344 +3636 2753 3324 +3618 2809 3295 +3591 2874 3254 +3554 2950 3192 +3498 3034 3094 +3411 3127 2918 +3260 3227 2461 +2920 3334 0 +0 3446 0 +0 3563 0 +0 3683 0 +3820 2652 3529 +3820 2652 3529 +3820 2653 3528 +3820 2653 3528 +3820 2653 3528 +3820 2654 3528 +3820 2655 3528 +3820 2656 3528 +3819 2657 3528 +3819 2658 3527 +3819 2661 3527 +3818 2664 3526 +3817 2668 3525 +3817 2673 3524 +3815 2680 3522 +3814 2689 3519 +3812 2701 3516 +3809 2716 3512 +3805 2736 3506 +3799 2761 3499 +3792 2793 3488 +3782 2832 3473 +3769 2880 3453 +3750 2936 3424 +3724 3003 3383 +3687 3078 3321 +3631 3163 3222 +3544 3257 3044 +3394 3357 2575 +3056 3465 0 +0 3577 0 +0 3694 0 +3953 2778 3659 +3953 2778 3659 +3953 2778 3659 +3953 2778 3659 +3952 2779 3659 +3952 2779 3659 +3952 2780 3659 +3952 2780 3658 +3952 2781 3658 +3952 2783 3658 +3952 2784 3658 +3951 2787 3657 +3951 2790 3656 +3950 2794 3655 +3949 2799 3654 +3948 2806 3652 +3946 2815 3650 +3944 2827 3647 +3941 2843 3642 +3937 2863 3637 +3932 2888 3629 +3925 2920 3618 +3915 2960 3604 +3902 3008 3583 +3883 3065 3554 +3857 3132 3513 +3819 3208 3450 +3764 3293 3351 +3677 3387 3171 +3527 3488 2694 +3190 3596 0 +0 3708 0 +4085 2905 3790 +4085 2905 3790 +4085 2905 3790 +4085 2905 3790 +4085 2906 3790 +4085 2906 3790 +4085 2906 3790 +4085 2907 3789 +4085 2908 3789 +4084 2909 3789 +4084 2910 3789 +4084 2912 3788 +4084 2914 3788 +4083 2917 3787 +4082 2921 3786 +4082 2926 3785 +4080 2933 3783 +4079 2943 3781 +4077 2955 3778 +4074 2971 3773 +4070 2991 3768 +4064 3017 3760 +4057 3049 3749 +4047 3089 3734 +4034 3137 3714 +4015 3195 3685 +3989 3262 3643 +3952 3338 3581 +3896 3424 3481 +3810 3518 3299 +3660 3619 2815 +3324 3727 0 +4095 3033 3921 +4095 3034 3921 +4095 3034 3921 +4095 3034 3921 +4095 3034 3921 +4095 3034 3921 +4095 3034 3921 +4095 3035 3921 +4095 3035 3921 +4095 3036 3920 +4095 3037 3920 +4095 3038 3920 +4095 3040 3920 +4095 3042 3919 +4095 3046 3918 +4095 3050 3917 +4095 3055 3916 +4095 3062 3914 +4095 3072 3912 +4095 3084 3909 +4095 3100 3904 +4095 3120 3899 +4095 3146 3891 +4095 3178 3880 +4095 3218 3865 +4095 3267 3845 +4095 3325 3816 +4095 3392 3774 +4084 3469 3711 +4029 3555 3611 +3942 3649 3429 +3793 3751 2939 +4095 3163 4053 +4095 3163 4052 +4095 3163 4052 +4095 3163 4052 +4095 3163 4052 +4095 3163 4052 +4095 3164 4052 +4095 3164 4052 +4095 3164 4052 +4095 3165 4052 +4095 3166 4052 +4095 3167 4052 +4095 3168 4051 +4095 3170 4051 +4095 3172 4050 +4095 3175 4050 +4095 3179 4049 +4095 3185 4047 +4095 3192 4046 +4095 3201 4043 +4095 3213 4040 +4095 3229 4036 +4095 3250 4030 +4095 3276 4022 +4095 3308 4011 +4095 3349 3997 +4095 3397 3976 +4095 3455 3947 +4095 3523 3905 +4095 3600 3842 +4095 3686 3742 +4075 3780 3559 +0 1476 1739 +0 1478 1737 +0 1481 1735 +0 1485 1731 +0 1490 1726 +0 1497 1719 +0 1506 1710 +0 1518 1698 +0 1533 1681 +0 1552 1657 +0 1577 1622 +0 1609 1572 +0 1647 1494 +0 1695 1365 +0 1751 1099 +0 1817 0 +0 1892 0 +0 1976 0 +0 2069 0 +0 2170 0 +0 2277 0 +0 2389 0 +0 2506 0 +0 2626 0 +0 2749 0 +0 2874 0 +0 3001 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3518 0 +0 3649 0 +0 1477 1742 +0 1479 1740 +0 1482 1738 +0 1486 1734 +0 1491 1729 +0 1498 1723 +0 1507 1713 +0 1518 1701 +0 1533 1684 +0 1553 1660 +0 1578 1626 +0 1609 1576 +0 1648 1500 +0 1695 1371 +0 1751 1111 +0 1817 0 +0 1892 0 +0 1977 0 +0 2070 0 +0 2170 0 +0 2277 0 +0 2389 0 +0 2506 0 +0 2626 0 +0 2749 0 +0 2874 0 +0 3001 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3519 0 +0 3649 0 +0 1478 1746 +0 1480 1744 +0 1483 1742 +0 1487 1738 +0 1492 1733 +0 1499 1727 +0 1507 1718 +0 1519 1706 +0 1534 1689 +0 1554 1665 +0 1579 1631 +0 1610 1582 +0 1649 1506 +0 1696 1380 +0 1752 1127 +0 1818 0 +0 1893 0 +0 1977 0 +0 2070 0 +0 2170 0 +0 2277 0 +0 2389 0 +0 2506 0 +0 2626 0 +0 2749 0 +0 2874 0 +0 3001 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3519 0 +0 3649 0 +0 1479 1752 +0 1481 1750 +0 1484 1747 +0 1488 1744 +0 1493 1739 +0 1500 1732 +0 1509 1723 +0 1520 1711 +0 1535 1695 +0 1555 1671 +0 1580 1638 +0 1611 1590 +0 1650 1515 +0 1696 1392 +0 1753 1147 +0 1818 0 +0 1893 0 +0 1978 0 +0 2070 0 +0 2171 0 +0 2277 0 +0 2389 0 +0 2506 0 +0 2626 0 +0 2749 0 +0 2874 0 +0 3001 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3519 0 +0 3649 0 +0 1481 1759 +0 1483 1757 +0 1486 1754 +0 1490 1751 +0 1495 1746 +0 1502 1740 +0 1510 1731 +0 1522 1719 +0 1537 1703 +0 1556 1680 +0 1581 1647 +0 1612 1600 +0 1651 1527 +0 1698 1407 +0 1754 1173 +0 1819 122 +0 1894 0 +0 1978 0 +0 2071 0 +0 2171 0 +0 2278 0 +0 2390 0 +0 2506 0 +0 2626 0 +0 2749 0 +0 2874 0 +0 3001 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3519 0 +0 3649 0 +0 1483 1768 +0 1485 1766 +0 1488 1763 +0 1492 1760 +0 1497 1755 +0 1504 1749 +0 1513 1741 +0 1524 1729 +0 1539 1713 +0 1558 1691 +0 1583 1659 +0 1614 1612 +0 1652 1542 +0 1699 1427 +0 1755 1206 +0 1820 376 +0 1895 0 +0 1979 0 +0 2071 0 +0 2171 0 +0 2278 0 +0 2390 0 +0 2506 0 +0 2626 0 +0 2749 0 +0 2874 0 +0 3001 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3519 0 +0 3649 0 +0 1486 1780 +0 1488 1778 +0 1491 1776 +0 1495 1772 +0 1500 1768 +0 1507 1762 +0 1516 1753 +0 1527 1742 +0 1542 1726 +0 1561 1705 +0 1586 1674 +0 1616 1629 +0 1655 1562 +0 1701 1452 +0 1757 1246 +0 1822 581 +0 1896 0 +0 1980 0 +0 2072 0 +0 2172 0 +0 2279 0 +0 2390 0 +0 2507 0 +0 2627 0 +0 2750 0 +0 2875 0 +0 3001 0 +0 3129 0 +0 3258 0 +0 3388 0 +0 3519 0 +0 3649 0 +0 1490 1795 +0 1493 1794 +0 1495 1791 +0 1499 1788 +0 1504 1784 +0 1511 1778 +0 1519 1770 +0 1531 1759 +0 1546 1744 +0 1565 1723 +0 1589 1694 +0 1620 1651 +0 1657 1587 +0 1704 1484 +0 1759 1294 +0 1824 762 +0 1898 0 +0 1981 0 +0 2073 0 +0 2173 0 +0 2279 0 +0 2391 0 +0 2507 0 +0 2627 0 +0 2750 0 +0 2875 0 +0 3001 0 +0 3129 0 +0 3259 0 +0 3388 0 +0 3519 0 +0 3649 0 +0 1496 1815 +0 1498 1814 +0 1501 1811 +0 1505 1808 +0 1510 1804 +0 1516 1799 +0 1525 1791 +0 1536 1781 +0 1551 1766 +0 1569 1746 +0 1593 1718 +0 1624 1678 +0 1661 1618 +0 1707 1522 +0 1762 1352 +0 1826 927 +0 1900 0 +0 1983 0 +0 2075 0 +0 2174 0 +0 2280 0 +0 2392 0 +0 2508 0 +0 2628 0 +0 2750 0 +0 2875 0 +0 3002 0 +0 3130 0 +0 3259 0 +0 3388 0 +0 3519 0 +0 3649 0 +0 1503 1841 +0 1505 1839 +0 1508 1837 +0 1512 1834 +0 1517 1830 +0 1523 1825 +0 1532 1818 +0 1543 1808 +0 1557 1795 +0 1576 1776 +0 1599 1750 +0 1629 1712 +0 1666 1657 +0 1712 1570 +0 1766 1419 +0 1830 1082 +0 1903 0 +0 1986 0 +0 2077 0 +0 2176 0 +0 2282 0 +0 2393 0 +0 2509 0 +0 2628 0 +0 2751 0 +0 2875 0 +0 3002 0 +0 3130 0 +0 3259 0 +0 3388 0 +0 3519 0 +0 3650 0 +964 1513 1873 +949 1515 1871 +928 1518 1869 +899 1521 1867 +857 1526 1863 +794 1532 1858 +692 1541 1851 +507 1551 1842 +0 1566 1830 +0 1584 1813 +0 1607 1788 +0 1637 1754 +0 1673 1704 +0 1718 1626 +0 1771 1496 +0 1835 1231 +0 1907 0 +0 1989 0 +0 2080 0 +0 2178 0 +0 2283 0 +0 2394 0 +0 2510 0 +0 2629 0 +0 2751 0 +0 2876 0 +0 3002 0 +0 3130 0 +0 3259 0 +0 3389 0 +0 3519 0 +0 3650 0 +1342 1525 1912 +1336 1527 1911 +1327 1530 1909 +1315 1533 1907 +1299 1538 1903 +1276 1544 1899 +1243 1552 1893 +1195 1563 1884 +1123 1577 1873 +1003 1595 1857 +767 1617 1836 +0 1646 1805 +0 1682 1760 +0 1726 1692 +0 1779 1582 +0 1841 1375 +0 1912 699 +0 1994 0 +0 2083 0 +0 2181 0 +0 2286 0 +0 2396 0 +0 2511 0 +0 2630 0 +0 2752 0 +0 2877 0 +0 3003 0 +0 3130 0 +0 3259 0 +0 3389 0 +0 3519 0 +0 3650 0 +1598 1542 1960 +1594 1543 1959 +1589 1546 1957 +1582 1549 1955 +1573 1554 1952 +1561 1560 1948 +1544 1568 1943 +1520 1578 1935 +1486 1591 1925 +1436 1608 1911 +1359 1631 1892 +1230 1659 1865 +968 1693 1826 +0 1736 1768 +0 1788 1676 +0 1849 1516 +0 1919 1135 +0 1999 0 +0 2088 0 +0 2185 0 +0 2289 0 +0 2398 0 +0 2513 0 +0 2632 0 +0 2753 0 +0 2877 0 +0 3003 0 +0 3131 0 +0 3260 0 +0 3389 0 +0 3519 0 +0 3650 0 +1804 1562 2017 +1802 1564 2016 +1799 1567 2015 +1795 1570 2013 +1789 1574 2010 +1781 1580 2007 +1771 1587 2002 +1756 1597 1995 +1737 1610 1987 +1708 1626 1974 +1668 1648 1958 +1607 1675 1934 +1511 1708 1901 +1338 1750 1852 +901 1800 1778 +0 1860 1654 +0 1929 1408 +0 2007 0 +0 2095 0 +0 2190 0 +0 2293 0 +0 2402 0 +0 2515 0 +0 2633 0 +0 2755 0 +0 2878 0 +0 3004 0 +0 3132 0 +0 3260 0 +0 3389 0 +0 3520 0 +0 3650 0 +1985 1589 2084 +1983 1591 2083 +1981 1593 2082 +1979 1596 2080 +1975 1600 2078 +1970 1605 2075 +1963 1612 2071 +1953 1622 2065 +1941 1634 2058 +1923 1650 2047 +1898 1670 2033 +1862 1695 2013 +1810 1728 1985 +1729 1768 1945 +1591 1816 1886 +1299 1874 1791 +0 1941 1623 +0 2017 1207 +0 2103 0 +0 2197 0 +0 2298 0 +0 2406 0 +0 2519 0 +0 2636 0 +0 2757 0 +0 2880 0 +0 3005 0 +0 3132 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3650 0 +2150 1622 2160 +2149 1623 2159 +2148 1626 2158 +2146 1628 2157 +2143 1632 2155 +2140 1637 2152 +2135 1644 2149 +2129 1653 2144 +2120 1664 2138 +2108 1679 2129 +2092 1698 2117 +2069 1722 2101 +2036 1752 2078 +1989 1790 2046 +1916 1836 1999 +1796 1892 1927 +1562 1956 1808 +499 2030 1577 +0 2114 586 +0 2206 0 +0 2305 0 +0 2412 0 +0 2523 0 +0 2639 0 +0 2759 0 +0 2882 0 +0 3007 0 +0 3134 0 +0 3262 0 +0 3391 0 +0 3520 0 +0 3651 0 +2306 1663 2246 +2305 1664 2245 +2304 1666 2244 +2303 1669 2243 +2301 1672 2241 +2298 1677 2239 +2295 1683 2236 +2291 1691 2232 +2284 1701 2227 +2276 1715 2220 +2265 1732 2210 +2249 1755 2197 +2228 1783 2179 +2197 1819 2153 +2153 1862 2116 +2085 1915 2061 +1976 1976 1976 +1771 2047 1830 +1120 2128 1507 +0 2217 0 +0 2315 0 +0 2419 0 +0 2529 0 +0 2644 0 +0 2763 0 +0 2885 0 +0 3009 0 +0 3135 0 +0 3263 0 +0 3392 0 +0 3521 0 +0 3651 0 +2455 1712 2339 +2454 1713 2339 +2453 1715 2338 +2452 1717 2337 +2451 1721 2336 +2449 1725 2334 +2447 1730 2332 +2444 1737 2328 +2439 1747 2324 +2434 1759 2318 +2426 1775 2311 +2415 1796 2300 +2400 1822 2285 +2379 1854 2265 +2350 1895 2237 +2307 1944 2195 +2243 2002 2134 +2141 2069 2035 +1954 2146 1857 +1434 2233 1394 +0 2327 0 +0 2429 0 +0 2537 0 +0 2650 0 +0 2767 0 +0 2888 0 +0 3012 0 +0 3137 0 +0 3264 0 +0 3393 0 +0 3522 0 +0 3652 0 +2599 1771 2440 +2598 1772 2440 +2598 1773 2439 +2597 1775 2438 +2596 1778 2437 +2595 1782 2436 +2593 1787 2434 +2591 1793 2432 +2588 1801 2428 +2584 1812 2424 +2578 1827 2418 +2570 1845 2409 +2560 1868 2398 +2545 1898 2382 +2525 1935 2360 +2496 1980 2329 +2455 2034 2284 +2394 2097 2215 +2296 2170 2104 +2120 2252 1892 +1666 2343 1176 +0 2441 0 +0 2547 0 +0 2658 0 +0 2773 0 +0 2893 0 +0 3015 0 +0 3140 0 +0 3266 0 +0 3394 0 +0 3523 0 +0 3653 0 +2740 1839 2548 +2740 1840 2547 +2739 1841 2547 +2739 1843 2546 +2738 1845 2545 +2737 1848 2544 +2736 1853 2543 +2734 1858 2541 +2732 1865 2538 +2729 1875 2535 +2725 1887 2530 +2719 1903 2523 +2711 1924 2514 +2701 1950 2502 +2687 1983 2486 +2667 2024 2462 +2639 2073 2429 +2599 2132 2380 +2539 2199 2305 +2445 2277 2181 +2277 2363 1934 +1861 2458 400 +0 2560 0 +0 2668 0 +0 2781 0 +0 2899 0 +0 3020 0 +0 3144 0 +0 3269 0 +0 3396 0 +0 3525 0 +0 3654 0 +2878 1917 2660 +2878 1917 2660 +2878 1919 2660 +2878 1920 2659 +2877 1922 2659 +2876 1925 2658 +2875 1928 2657 +2874 1933 2655 +2872 1939 2653 +2870 1947 2650 +2867 1958 2646 +2863 1972 2641 +2858 1989 2635 +2850 2012 2625 +2840 2041 2613 +2826 2077 2595 +2807 2121 2570 +2779 2174 2535 +2740 2236 2483 +2681 2308 2403 +2589 2389 2268 +2426 2479 1986 +2035 2577 0 +0 2682 0 +0 2792 0 +0 2907 0 +0 3026 0 +0 3148 0 +0 3273 0 +0 3399 0 +0 3527 0 +0 3656 0 +3015 2003 2777 +3015 2004 2777 +3015 2005 2777 +3015 2006 2776 +3014 2008 2776 +3014 2010 2775 +3013 2013 2774 +3012 2017 2773 +3011 2022 2772 +3009 2029 2770 +3007 2038 2767 +3004 2049 2763 +3000 2064 2758 +2995 2084 2751 +2987 2108 2741 +2977 2140 2728 +2963 2178 2709 +2944 2225 2684 +2917 2281 2647 +2878 2347 2593 +2821 2422 2508 +2730 2506 2363 +2570 2599 2046 +2196 2699 0 +0 2806 0 +0 2918 0 +0 3034 0 +0 3155 0 +0 3278 0 +0 3403 0 +0 3529 0 +0 3658 0 +3151 2098 2898 +3151 2099 2898 +3151 2099 2897 +3150 2100 2897 +3150 2102 2897 +3150 2104 2896 +3149 2106 2896 +3149 2109 2895 +3148 2113 2893 +3147 2119 2892 +3145 2126 2890 +3143 2136 2887 +3140 2148 2883 +3136 2164 2877 +3130 2185 2870 +3123 2212 2860 +3113 2245 2847 +3099 2286 2828 +3080 2335 2801 +3053 2394 2763 +3015 2462 2707 +2958 2540 2619 +2868 2626 2466 +2712 2721 2116 +2349 2823 0 +0 2932 0 +0 3045 0 +0 3163 0 +0 3284 0 +0 3407 0 +0 3533 0 +0 3660 0 +3286 2200 3021 +3286 2201 3021 +3286 2201 3021 +3285 2202 3021 +3285 2203 3020 +3285 2205 3020 +3284 2206 3019 +3284 2209 3019 +3283 2212 3018 +3282 2217 3016 +3281 2223 3015 +3280 2231 3013 +3277 2241 3010 +3274 2254 3006 +3270 2271 3000 +3265 2293 2993 +3258 2321 2983 +3248 2356 2969 +3234 2398 2949 +3215 2450 2922 +3189 2511 2883 +3151 2581 2825 +3094 2661 2734 +3005 2749 2574 +2850 2846 2196 +2495 2950 0 +0 3059 0 +0 3174 0 +0 3292 0 +0 3414 0 +0 3538 0 +0 3664 0 +3420 2309 3146 +3420 2309 3146 +3420 2309 3146 +3420 2310 3146 +3419 2311 3146 +3419 2312 3145 +3419 2313 3145 +3418 2315 3145 +3418 2318 3144 +3417 2322 3143 +3416 2326 3142 +3415 2333 3140 +3414 2341 3138 +3411 2351 3135 +3408 2365 3131 +3404 2383 3125 +3399 2406 3117 +3392 2435 3107 +3382 2471 3093 +3368 2516 3074 +3350 2569 3046 +3323 2631 3006 +3285 2703 2947 +3229 2785 2853 +3141 2875 2688 +2988 2973 2284 +2638 3077 0 +0 3188 0 +0 3303 0 +0 3422 0 +0 3544 0 +0 3669 0 +3553 2422 3273 +3553 2422 3273 +3553 2423 3273 +3553 2423 3273 +3553 2424 3273 +3553 2425 3273 +3553 2426 3272 +3552 2427 3272 +3552 2430 3271 +3552 2432 3271 +3551 2436 3270 +3550 2441 3269 +3549 2447 3267 +3547 2456 3265 +3545 2467 3261 +3542 2481 3257 +3538 2500 3252 +3533 2524 3244 +3525 2554 3234 +3516 2591 3219 +3502 2636 3200 +3483 2690 3172 +3457 2754 3131 +3419 2828 3071 +3363 2910 2976 +3275 3002 2805 +3123 3100 2380 +2778 3206 0 +0 3317 0 +0 3433 0 +0 3553 0 +0 3675 0 +3687 2540 3402 +3687 2540 3402 +3686 2540 3401 +3686 2541 3401 +3686 2541 3401 +3686 2542 3401 +3686 2543 3401 +3686 2544 3401 +3686 2545 3400 +3685 2548 3400 +3685 2550 3399 +3684 2554 3398 +3683 2559 3397 +3682 2566 3395 +3680 2575 3393 +3678 2586 3390 +3675 2601 3385 +3671 2620 3380 +3666 2644 3372 +3659 2675 3362 +3649 2713 3347 +3635 2759 3327 +3617 2815 3299 +3590 2880 3258 +3553 2954 3197 +3497 3038 3100 +3410 3130 2926 +3258 3229 2484 +2916 3336 0 +0 3448 0 +0 3564 0 +0 3684 0 +3819 2661 3531 +3819 2661 3531 +3819 2661 3531 +3819 2661 3531 +3819 2662 3531 +3819 2662 3530 +3819 2663 3530 +3819 2664 3530 +3819 2665 3530 +3818 2667 3529 +3818 2669 3529 +3818 2672 3528 +3817 2676 3527 +3816 2681 3526 +3815 2688 3524 +3813 2697 3522 +3811 2708 3519 +3808 2723 3514 +3804 2743 3509 +3799 2768 3501 +3792 2799 3490 +3782 2838 3476 +3768 2885 3456 +3750 2941 3427 +3723 3007 3386 +3686 3082 3325 +3630 3166 3227 +3543 3259 3050 +3392 3359 2593 +3052 3466 0 +0 3578 0 +0 3695 0 +3952 2784 3661 +3952 2784 3661 +3952 2785 3661 +3952 2785 3661 +3952 2785 3661 +3952 2785 3660 +3952 2786 3660 +3952 2787 3660 +3952 2788 3660 +3951 2789 3660 +3951 2791 3659 +3951 2793 3659 +3950 2796 3658 +3950 2800 3657 +3949 2805 3656 +3947 2812 3654 +3946 2821 3652 +3944 2833 3648 +3941 2848 3644 +3937 2868 3638 +3932 2893 3631 +3924 2925 3620 +3915 2964 3605 +3901 3012 3585 +3882 3068 3556 +3856 3135 3515 +3819 3211 3453 +3763 3295 3354 +3676 3389 3176 +3526 3489 2707 +3188 3597 0 +0 3709 0 +4085 2910 3791 +4085 2910 3791 +4085 2910 3791 +4085 2910 3791 +4085 2911 3791 +4085 2911 3791 +4085 2911 3791 +4084 2912 3791 +4084 2912 3791 +4084 2913 3790 +4084 2915 3790 +4084 2916 3790 +4083 2919 3789 +4083 2922 3788 +4082 2926 3787 +4081 2931 3786 +4080 2938 3784 +4078 2947 3782 +4076 2959 3779 +4073 2975 3775 +4069 2995 3769 +4064 3020 3761 +4057 3052 3750 +4047 3092 3736 +4034 3140 3715 +4015 3197 3686 +3989 3264 3645 +3951 3340 3583 +3896 3425 3483 +3809 3519 3303 +3659 3620 2826 +3322 3728 0 +4095 3037 3922 +4095 3037 3922 +4095 3037 3922 +4095 3037 3922 +4095 3038 3922 +4095 3038 3922 +4095 3038 3922 +4095 3039 3922 +4095 3039 3922 +4095 3040 3921 +4095 3041 3921 +4095 3042 3921 +4095 3044 3920 +4095 3046 3920 +4095 3049 3919 +4095 3053 3918 +4095 3059 3917 +4095 3066 3915 +4095 3075 3913 +4095 3087 3910 +4095 3103 3905 +4095 3123 3900 +4095 3149 3892 +4095 3181 3881 +4095 3221 3866 +4095 3269 3846 +4095 3327 3817 +4095 3394 3775 +4084 3470 3713 +4029 3556 3613 +3942 3650 3432 +3792 3751 2947 +4095 3166 4053 +4095 3166 4053 +4095 3166 4053 +4095 3166 4053 +4095 3166 4053 +4095 3166 4053 +4095 3166 4053 +4095 3167 4053 +4095 3167 4053 +4095 3168 4053 +4095 3168 4053 +4095 3169 4052 +4095 3171 4052 +4095 3172 4052 +4095 3175 4051 +4095 3178 4050 +4095 3182 4049 +4095 3187 4048 +4095 3194 4046 +4095 3204 4044 +4095 3216 4041 +4095 3232 4037 +4095 3252 4031 +4095 3278 4023 +4095 3310 4012 +4095 3350 3997 +4095 3399 3977 +4095 3457 3948 +4095 3524 3906 +4095 3601 3843 +4095 3687 3743 +4074 3781 3561 +0 1606 1871 +0 1607 1869 +0 1610 1867 +0 1612 1864 +0 1616 1861 +0 1622 1856 +0 1628 1849 +0 1637 1840 +0 1649 1827 +0 1664 1810 +0 1684 1786 +0 1709 1751 +0 1740 1701 +0 1779 1623 +0 1826 1491 +0 1883 1222 +0 1949 0 +0 2024 0 +0 2108 0 +0 2201 0 +0 2302 0 +0 2409 0 +0 2521 0 +0 2638 0 +0 2758 0 +0 2881 0 +0 3006 0 +0 3133 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3651 0 +0 1606 1873 +0 1608 1871 +0 1610 1869 +0 1613 1867 +0 1617 1863 +0 1622 1858 +0 1629 1851 +0 1638 1842 +0 1650 1830 +0 1665 1813 +0 1684 1789 +0 1709 1754 +0 1741 1704 +0 1779 1626 +0 1827 1497 +0 1883 1231 +0 1949 0 +0 2024 0 +0 2109 0 +0 2202 0 +0 2302 0 +0 2409 0 +0 2521 0 +0 2638 0 +0 2758 0 +0 2881 0 +0 3006 0 +0 3133 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3651 0 +0 1607 1876 +0 1609 1874 +0 1611 1872 +0 1614 1870 +0 1618 1866 +0 1623 1861 +0 1630 1855 +0 1639 1846 +0 1650 1833 +0 1666 1816 +0 1685 1792 +0 1710 1758 +0 1741 1708 +0 1780 1632 +0 1827 1503 +0 1883 1243 +0 1949 0 +0 2024 0 +0 2109 0 +0 2202 0 +0 2302 0 +0 2409 0 +0 2521 0 +0 2638 0 +0 2758 0 +0 2881 0 +0 3006 0 +0 3133 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3651 0 +0 1608 1880 +0 1610 1878 +0 1612 1876 +0 1615 1874 +0 1619 1870 +0 1624 1865 +0 1631 1859 +0 1640 1850 +0 1651 1838 +0 1666 1821 +0 1686 1797 +0 1711 1763 +0 1742 1714 +0 1781 1638 +0 1828 1512 +0 1884 1259 +0 1950 0 +0 2025 0 +0 2109 0 +0 2202 0 +0 2302 0 +0 2409 0 +0 2521 0 +0 2638 0 +0 2758 0 +0 2881 0 +0 3006 0 +0 3133 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3651 0 +0 1609 1885 +0 1611 1884 +0 1613 1882 +0 1616 1879 +0 1620 1876 +0 1625 1871 +0 1632 1864 +0 1641 1855 +0 1652 1843 +0 1668 1827 +0 1687 1803 +0 1712 1770 +0 1743 1722 +0 1782 1647 +0 1829 1524 +0 1885 1280 +0 1950 0 +0 2025 0 +0 2110 0 +0 2202 0 +0 2303 0 +0 2409 0 +0 2522 0 +0 2638 0 +0 2758 0 +0 2881 0 +0 3006 0 +0 3133 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3651 0 +0 1611 1892 +0 1613 1891 +0 1615 1889 +0 1618 1886 +0 1622 1883 +0 1627 1878 +0 1634 1872 +0 1642 1863 +0 1654 1851 +0 1669 1835 +0 1689 1812 +0 1713 1779 +0 1744 1732 +0 1783 1659 +0 1830 1540 +0 1886 1305 +0 1951 254 +0 2026 0 +0 2110 0 +0 2203 0 +0 2303 0 +0 2410 0 +0 2522 0 +0 2638 0 +0 2758 0 +0 2881 0 +0 3006 0 +0 3133 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3651 0 +0 1614 1901 +0 1615 1900 +0 1617 1898 +0 1620 1896 +0 1624 1892 +0 1629 1887 +0 1636 1881 +0 1645 1873 +0 1656 1861 +0 1671 1845 +0 1691 1823 +0 1715 1791 +0 1746 1745 +0 1784 1674 +0 1831 1559 +0 1887 1338 +0 1952 508 +0 2027 0 +0 2111 0 +0 2203 0 +0 2304 0 +0 2410 0 +0 2522 0 +0 2639 0 +0 2759 0 +0 2881 0 +0 3007 0 +0 3133 0 +0 3261 0 +0 3390 0 +0 3520 0 +0 3651 0 +0 1617 1913 +0 1618 1912 +0 1620 1910 +0 1623 1908 +0 1627 1904 +0 1632 1900 +0 1639 1894 +0 1648 1885 +0 1659 1874 +0 1674 1859 +0 1693 1837 +0 1718 1806 +0 1748 1761 +0 1787 1694 +0 1833 1584 +0 1889 1378 +0 1954 713 +0 2028 0 +0 2112 0 +0 2204 0 +0 2304 0 +0 2411 0 +0 2522 0 +0 2639 0 +0 2759 0 +0 2882 0 +0 3007 0 +0 3133 0 +0 3261 0 +0 3391 0 +0 3520 0 +0 3651 0 +0 1621 1929 +0 1622 1928 +0 1625 1926 +0 1627 1923 +0 1631 1920 +0 1636 1916 +0 1643 1910 +0 1652 1902 +0 1663 1891 +0 1678 1876 +0 1697 1855 +0 1721 1826 +0 1752 1783 +0 1790 1719 +0 1836 1616 +0 1891 1426 +0 1956 894 +0 2030 0 +0 2113 0 +0 2206 0 +0 2305 0 +0 2411 0 +0 2523 0 +0 2639 0 +0 2759 0 +0 2882 0 +0 3007 0 +0 3134 0 +0 3262 0 +0 3391 0 +0 3520 0 +0 3651 0 +0 1626 1949 +0 1628 1948 +0 1630 1946 +0 1633 1944 +0 1637 1940 +0 1642 1936 +0 1648 1931 +0 1657 1923 +0 1668 1913 +0 1683 1898 +0 1701 1878 +0 1726 1851 +0 1756 1810 +0 1793 1750 +0 1839 1655 +0 1894 1484 +0 1958 1059 +0 2032 0 +0 2115 0 +0 2207 0 +0 2306 0 +0 2412 0 +0 2524 0 +0 2640 0 +0 2760 0 +0 2882 0 +0 3007 0 +0 3134 0 +0 3262 0 +0 3391 0 +0 3520 0 +0 3651 0 +0 1634 1974 +0 1635 1973 +0 1637 1971 +0 1640 1969 +0 1644 1966 +0 1649 1962 +0 1655 1957 +0 1664 1950 +0 1675 1940 +0 1689 1927 +0 1708 1908 +0 1731 1882 +0 1761 1844 +0 1798 1789 +0 1844 1702 +0 1898 1552 +0 1962 1214 +0 2035 0 +0 2118 0 +0 2209 0 +0 2308 0 +0 2414 0 +0 2525 0 +0 2641 0 +0 2760 0 +0 2883 0 +0 3008 0 +0 3134 0 +0 3262 0 +0 3391 0 +0 3521 0 +0 3651 0 +1107 1643 2006 +1096 1645 2005 +1081 1647 2003 +1061 1650 2001 +1031 1653 1999 +989 1658 1995 +926 1664 1990 +824 1673 1983 +639 1684 1974 +132 1698 1962 +0 1716 1945 +0 1739 1921 +0 1769 1886 +0 1805 1836 +0 1850 1758 +0 1904 1628 +0 1967 1363 +0 2039 0 +0 2121 0 +0 2212 0 +0 2310 0 +0 2415 0 +0 2526 0 +0 2642 0 +0 2761 0 +0 2883 0 +0 3008 0 +0 3134 0 +0 3262 0 +0 3391 0 +0 3521 0 +0 3651 0 +1479 1656 2045 +1474 1657 2044 +1468 1659 2043 +1459 1662 2041 +1447 1666 2039 +1431 1670 2035 +1408 1676 2031 +1375 1684 2025 +1327 1695 2016 +1255 1709 2005 +1135 1727 1989 +899 1749 1968 +0 1778 1937 +0 1814 1892 +0 1858 1824 +0 1911 1714 +0 1973 1507 +0 2045 831 +0 2126 0 +0 2215 0 +0 2313 0 +0 2418 0 +0 2528 0 +0 2643 0 +0 2762 0 +0 2884 0 +0 3009 0 +0 3135 0 +0 3263 0 +0 3391 0 +0 3521 0 +0 3651 0 +1732 1672 2093 +1730 1674 2092 +1726 1676 2091 +1721 1678 2089 +1715 1681 2087 +1706 1686 2084 +1693 1692 2080 +1676 1700 2075 +1652 1710 2067 +1618 1723 2057 +1568 1741 2043 +1491 1763 2024 +1362 1791 1997 +1100 1826 1958 +0 1868 1900 +0 1920 1808 +0 1981 1648 +0 2052 1267 +0 2132 0 +0 2220 0 +0 2317 0 +0 2421 0 +0 2530 0 +0 2645 0 +0 2764 0 +0 2885 0 +0 3009 0 +0 3136 0 +0 3263 0 +0 3392 0 +0 3521 0 +0 3651 0 +1938 1693 2150 +1936 1694 2150 +1934 1696 2148 +1931 1699 2147 +1927 1702 2145 +1921 1706 2142 +1913 1712 2139 +1903 1719 2134 +1889 1729 2127 +1869 1742 2119 +1840 1759 2106 +1800 1780 2090 +1739 1807 2066 +1643 1841 2033 +1470 1882 1984 +1033 1932 1910 +0 1992 1786 +0 2061 1540 +0 2139 54 +0 2227 0 +0 2322 0 +0 2425 0 +0 2534 0 +0 2648 0 +0 2766 0 +0 2887 0 +0 3011 0 +0 3136 0 +0 3264 0 +0 3392 0 +0 3522 0 +0 3652 0 +2118 1720 2217 +2117 1721 2216 +2116 1723 2215 +2113 1725 2214 +2111 1728 2212 +2107 1732 2210 +2102 1737 2207 +2095 1744 2203 +2086 1754 2197 +2073 1766 2190 +2055 1782 2179 +2030 1802 2165 +1994 1828 2145 +1942 1860 2118 +1861 1900 2077 +1723 1948 2018 +1431 2006 1923 +0 2073 1755 +0 2149 1339 +0 2235 0 +0 2329 0 +0 2430 0 +0 2538 0 +0 2651 0 +0 2768 0 +0 2889 0 +0 3012 0 +0 3138 0 +0 3265 0 +0 3393 0 +0 3522 0 +0 3652 0 +2283 1753 2293 +2282 1754 2292 +2281 1756 2292 +2280 1758 2290 +2278 1761 2289 +2275 1764 2287 +2272 1769 2285 +2267 1776 2281 +2261 1785 2276 +2252 1796 2270 +2240 1811 2261 +2224 1830 2249 +2201 1854 2233 +2168 1884 2210 +2121 1922 2178 +2048 1968 2131 +1928 2024 2059 +1694 2088 1940 +631 2163 1709 +0 2246 718 +0 2338 0 +0 2437 0 +0 2544 0 +0 2655 0 +0 2772 0 +0 2891 0 +0 3014 0 +0 3139 0 +0 3266 0 +0 3394 0 +0 3523 0 +0 3653 0 +2439 1794 2378 +2438 1795 2378 +2437 1796 2377 +2436 1798 2376 +2435 1801 2375 +2433 1804 2373 +2430 1809 2371 +2427 1815 2368 +2423 1823 2364 +2417 1833 2359 +2408 1847 2352 +2397 1864 2342 +2382 1887 2329 +2360 1915 2311 +2329 1951 2285 +2285 1994 2248 +2217 2047 2193 +2108 2108 2108 +1903 2180 1962 +1252 2260 1639 +0 2350 0 +0 2447 0 +0 2551 0 +0 2661 0 +0 2776 0 +0 2895 0 +0 3017 0 +0 3141 0 +0 3267 0 +0 3395 0 +0 3524 0 +0 3653 0 +2587 1843 2472 +2587 1844 2471 +2586 1845 2471 +2585 1847 2470 +2584 1850 2469 +2583 1853 2468 +2581 1857 2466 +2579 1862 2464 +2576 1869 2460 +2571 1879 2456 +2566 1891 2451 +2558 1907 2443 +2547 1928 2432 +2532 1954 2418 +2511 1986 2397 +2482 2027 2369 +2439 2076 2327 +2375 2134 2266 +2273 2201 2167 +2086 2279 1990 +1566 2365 1526 +0 2459 0 +0 2561 0 +0 2669 0 +0 2782 0 +0 2899 0 +0 3020 0 +0 3144 0 +0 3269 0 +0 3396 0 +0 3525 0 +0 3654 0 +2731 1902 2573 +2731 1903 2572 +2731 1904 2572 +2730 1906 2571 +2729 1908 2570 +2728 1910 2569 +2727 1914 2568 +2725 1919 2566 +2723 1925 2564 +2720 1933 2560 +2716 1944 2556 +2710 1959 2550 +2702 1977 2541 +2692 2000 2530 +2677 2030 2514 +2657 2067 2492 +2629 2112 2461 +2588 2166 2416 +2526 2229 2347 +2428 2302 2236 +2252 2384 2024 +1798 2475 1309 +0 2574 0 +0 2679 0 +0 2790 0 +0 2906 0 +0 3025 0 +0 3147 0 +0 3272 0 +0 3398 0 +0 3526 0 +0 3655 0 +2872 1970 2680 +2872 1971 2680 +2872 1972 2679 +2871 1973 2679 +2871 1975 2678 +2870 1977 2677 +2869 1981 2676 +2868 1985 2675 +2866 1990 2673 +2864 1998 2670 +2861 2007 2667 +2857 2019 2662 +2851 2036 2655 +2843 2056 2646 +2833 2083 2634 +2819 2115 2618 +2799 2156 2594 +2771 2205 2561 +2731 2264 2512 +2672 2332 2437 +2577 2409 2314 +2409 2495 2066 +1993 2590 532 +0 2692 0 +0 2800 0 +0 2914 0 +0 3031 0 +0 3152 0 +0 3276 0 +0 3401 0 +0 3528 0 +0 3657 0 +3011 2048 2793 +3011 2049 2792 +3010 2050 2792 +3010 2051 2792 +3010 2052 2791 +3009 2054 2791 +3008 2057 2790 +3007 2060 2789 +3006 2065 2787 +3005 2071 2785 +3002 2079 2782 +2999 2090 2779 +2995 2104 2774 +2990 2122 2767 +2982 2144 2757 +2972 2173 2745 +2958 2209 2727 +2939 2253 2702 +2911 2306 2667 +2872 2368 2616 +2813 2440 2536 +2721 2521 2400 +2558 2611 2118 +2167 2709 0 +0 2814 0 +0 2924 0 +0 3039 0 +0 3158 0 +0 3280 0 +0 3405 0 +0 3531 0 +0 3659 0 +3148 2135 2910 +3147 2135 2909 +3147 2136 2909 +3147 2137 2909 +3147 2138 2909 +3146 2140 2908 +3146 2142 2907 +3145 2145 2907 +3144 2149 2905 +3143 2154 2904 +3141 2161 2902 +3139 2170 2899 +3136 2181 2895 +3132 2196 2890 +3127 2216 2883 +3119 2241 2873 +3109 2272 2860 +3095 2310 2842 +3076 2357 2816 +3049 2413 2779 +3010 2479 2725 +2953 2554 2640 +2862 2638 2495 +2703 2731 2178 +2328 2831 0 +0 2938 0 +0 3050 0 +0 3167 0 +0 3287 0 +0 3410 0 +0 3535 0 +0 3662 0 +3283 2230 3030 +3283 2230 3030 +3283 2231 3030 +3283 2232 3030 +3283 2233 3029 +3282 2234 3029 +3282 2236 3028 +3281 2238 3028 +3281 2241 3027 +3280 2245 3026 +3279 2251 3024 +3277 2258 3022 +3275 2268 3019 +3272 2280 3015 +3268 2297 3010 +3262 2317 3002 +3255 2344 2992 +3245 2377 2979 +3231 2418 2960 +3212 2467 2933 +3186 2526 2896 +3147 2594 2839 +3090 2672 2751 +3000 2758 2598 +2844 2853 2248 +2481 2955 0 +0 3064 0 +0 3177 0 +0 3295 0 +0 3416 0 +0 3540 0 +0 3665 0 +3418 2332 3153 +3418 2332 3153 +3418 2333 3153 +3418 2333 3153 +3417 2334 3153 +3417 2335 3152 +3417 2337 3152 +3417 2339 3151 +3416 2341 3151 +3415 2344 3150 +3414 2349 3149 +3413 2355 3147 +3412 2363 3145 +3409 2373 3142 +3406 2386 3138 +3403 2403 3132 +3397 2425 3125 +3390 2453 3115 +3380 2488 3101 +3366 2531 3082 +3347 2582 3054 +3321 2643 3016 +3283 2713 2958 +3226 2793 2866 +3137 2882 2706 +2983 2978 2328 +2627 3082 0 +0 3191 0 +0 3306 0 +0 3424 0 +0 3546 0 +0 3670 0 +3552 2440 3279 +3552 2441 3278 +3552 2441 3278 +3552 2441 3278 +3552 2442 3278 +3551 2443 3278 +3551 2444 3278 +3551 2446 3277 +3551 2448 3277 +3550 2450 3276 +3549 2454 3275 +3549 2458 3274 +3547 2465 3272 +3546 2473 3270 +3543 2484 3267 +3541 2497 3263 +3537 2515 3257 +3531 2538 3250 +3524 2567 3239 +3514 2603 3225 +3500 2648 3206 +3482 2701 3178 +3455 2763 3138 +3417 2835 3079 +3361 2917 2986 +3273 3007 2820 +3120 3105 2416 +2770 3209 0 +0 3320 0 +0 3435 0 +0 3554 0 +0 3676 0 +3685 2554 3406 +3685 2554 3405 +3685 2554 3405 +3685 2555 3405 +3685 2555 3405 +3685 2556 3405 +3685 2557 3405 +3685 2558 3405 +3684 2560 3404 +3684 2562 3404 +3684 2564 3403 +3683 2568 3402 +3682 2573 3401 +3681 2579 3399 +3679 2588 3397 +3677 2599 3394 +3674 2613 3389 +3670 2632 3384 +3665 2656 3376 +3658 2686 3366 +3648 2723 3351 +3634 2768 3332 +3615 2823 3304 +3589 2886 3263 +3551 2960 3203 +3495 3042 3108 +3408 3134 2938 +3255 3233 2512 +2910 3338 0 +0 3449 0 +0 3565 0 +0 3685 0 +3819 2672 3534 +3819 2672 3534 +3819 2672 3534 +3819 2672 3534 +3818 2673 3533 +3818 2673 3533 +3818 2674 3533 +3818 2675 3533 +3818 2676 3533 +3818 2678 3532 +3817 2680 3532 +3817 2683 3531 +3816 2686 3530 +3815 2691 3529 +3814 2698 3527 +3812 2707 3525 +3810 2718 3522 +3807 2733 3517 +3803 2752 3512 +3798 2776 3504 +3791 2807 3494 +3781 2845 3479 +3767 2891 3459 +3749 2947 3431 +3722 3012 3390 +3685 3086 3329 +3629 3170 3232 +3542 3262 3059 +3390 3362 2616 +3048 3468 0 +0 3580 0 +0 3696 0 +3952 2793 3663 +3952 2793 3663 +3952 2793 3663 +3951 2793 3663 +3951 2793 3663 +3951 2794 3663 +3951 2794 3663 +3951 2795 3662 +3951 2796 3662 +3951 2797 3662 +3951 2799 3661 +3950 2801 3661 +3950 2804 3660 +3949 2808 3659 +3948 2813 3658 +3947 2820 3656 +3945 2829 3654 +3943 2840 3651 +3940 2856 3646 +3936 2875 3641 +3931 2900 3633 +3924 2931 3622 +3914 2970 3608 +3900 3017 3588 +3882 3073 3559 +3856 3139 3518 +3818 3214 3457 +3762 3298 3359 +3675 3391 3182 +3524 3491 2725 +3184 3598 0 +0 3710 0 +4084 2916 3793 +4084 2916 3793 +4084 2916 3793 +4084 2917 3793 +4084 2917 3793 +4084 2917 3793 +4084 2918 3793 +4084 2918 3792 +4084 2919 3792 +4084 2920 3792 +4083 2921 3792 +4083 2923 3791 +4083 2925 3791 +4082 2928 3790 +4082 2932 3789 +4081 2937 3788 +4080 2944 3786 +4078 2953 3784 +4076 2965 3781 +4073 2980 3776 +4069 3000 3771 +4064 3025 3763 +4056 3057 3752 +4047 3096 3738 +4033 3144 3717 +4015 3201 3689 +3988 3267 3647 +3951 3343 3585 +3895 3428 3486 +3808 3521 3308 +3658 3622 2839 +3320 3729 0 +4095 3042 3923 +4095 3042 3923 +4095 3042 3923 +4095 3042 3923 +4095 3042 3923 +4095 3043 3923 +4095 3043 3923 +4095 3043 3923 +4095 3044 3923 +4095 3045 3923 +4095 3046 3922 +4095 3047 3922 +4095 3049 3922 +4095 3051 3921 +4095 3054 3920 +4095 3058 3919 +4095 3063 3918 +4095 3070 3916 +4095 3079 3914 +4095 3091 3911 +4095 3107 3907 +4095 3127 3901 +4095 3152 3893 +4095 3184 3882 +4095 3224 3868 +4095 3272 3847 +4095 3329 3819 +4095 3396 3777 +4084 3472 3715 +4028 3558 3615 +3941 3651 3435 +3791 3752 2958 +4095 3169 4054 +4095 3169 4054 +4095 3169 4054 +4095 3169 4054 +4095 3169 4054 +4095 3170 4054 +4095 3170 4054 +4095 3170 4054 +4095 3171 4054 +4095 3171 4054 +4095 3172 4054 +4095 3173 4053 +4095 3174 4053 +4095 3176 4053 +4095 3178 4052 +4095 3181 4051 +4095 3185 4050 +4095 3191 4049 +4095 3198 4047 +4095 3207 4045 +4095 3219 4042 +4095 3235 4037 +4095 3255 4032 +4095 3281 4024 +4095 3313 4013 +4095 3353 3998 +4095 3401 3978 +4095 3459 3949 +4095 3526 3907 +4095 3602 3845 +4095 3688 3745 +4074 3782 3564 +0 1736 2002 +0 1737 2001 +0 1739 2000 +0 1741 1998 +0 1744 1995 +0 1748 1991 +0 1753 1986 +0 1760 1979 +0 1769 1970 +0 1781 1958 +0 1796 1940 +0 1816 1916 +0 1841 1881 +0 1872 1830 +0 1911 1752 +0 1958 1620 +0 2015 1347 +0 2080 0 +0 2156 0 +0 2240 0 +0 2333 0 +0 2434 0 +0 2541 0 +0 2653 0 +0 2770 0 +0 2890 0 +0 3013 0 +0 3138 0 +0 3265 0 +0 3393 0 +0 3522 0 +0 3652 0 +0 1737 2004 +0 1738 2003 +0 1739 2001 +0 1742 1999 +0 1745 1997 +0 1749 1993 +0 1754 1988 +0 1761 1981 +0 1769 1972 +0 1781 1960 +0 1796 1942 +0 1816 1918 +0 1841 1883 +0 1872 1833 +0 1911 1755 +0 1958 1624 +0 2015 1354 +0 2081 0 +0 2156 0 +0 2241 0 +0 2333 0 +0 2434 0 +0 2541 0 +0 2653 0 +0 2770 0 +0 2890 0 +0 3013 0 +0 3138 0 +0 3265 0 +0 3393 0 +0 3522 0 +0 3652 0 +0 1737 2006 +0 1738 2005 +0 1740 2004 +0 1742 2002 +0 1745 1999 +0 1749 1995 +0 1754 1990 +0 1761 1984 +0 1770 1974 +0 1782 1962 +0 1797 1945 +0 1817 1921 +0 1841 1886 +0 1873 1836 +0 1912 1759 +0 1959 1629 +0 2015 1363 +0 2081 0 +0 2156 0 +0 2241 0 +0 2334 0 +0 2434 0 +0 2541 0 +0 2653 0 +0 2770 0 +0 2890 0 +0 3013 0 +0 3138 0 +0 3265 0 +0 3393 0 +0 3522 0 +0 3652 0 +0 1738 2009 +0 1739 2008 +0 1741 2007 +0 1743 2005 +0 1746 2002 +0 1750 1998 +0 1755 1993 +0 1762 1987 +0 1771 1978 +0 1782 1965 +0 1798 1948 +0 1817 1924 +0 1842 1890 +0 1873 1840 +0 1912 1764 +0 1959 1636 +0 2015 1375 +0 2081 0 +0 2157 0 +0 2241 0 +0 2334 0 +0 2434 0 +0 2541 0 +0 2653 0 +0 2770 0 +0 2890 0 +0 3013 0 +0 3138 0 +0 3265 0 +0 3393 0 +0 3522 0 +0 3652 0 +0 1739 2013 +0 1740 2012 +0 1742 2011 +0 1744 2009 +0 1747 2006 +0 1751 2002 +0 1756 1997 +0 1763 1991 +0 1772 1982 +0 1783 1970 +0 1798 1953 +0 1818 1929 +0 1843 1895 +0 1874 1846 +0 1913 1771 +0 1960 1645 +0 2016 1391 +0 2082 0 +0 2157 0 +0 2241 0 +0 2334 0 +0 2434 0 +0 2541 0 +0 2653 0 +0 2770 0 +0 2890 0 +0 3013 0 +0 3138 0 +0 3265 0 +0 3393 0 +0 3522 0 +0 3652 0 +0 1740 2018 +0 1741 2017 +0 1743 2016 +0 1745 2014 +0 1748 2011 +0 1752 2008 +0 1757 2003 +0 1764 1996 +0 1773 1988 +0 1785 1975 +0 1800 1959 +0 1819 1935 +0 1844 1902 +0 1875 1854 +0 1914 1779 +0 1961 1656 +0 2017 1412 +0 2082 13 +0 2157 0 +0 2242 0 +0 2334 0 +0 2435 0 +0 2541 0 +0 2654 0 +0 2770 0 +0 2890 0 +0 3013 0 +0 3138 0 +0 3265 0 +0 3393 0 +0 3522 0 +0 3652 0 +0 1742 2025 +0 1743 2024 +0 1745 2023 +0 1747 2021 +0 1750 2018 +0 1754 2015 +0 1759 2010 +0 1766 2004 +0 1775 1995 +0 1786 1983 +0 1801 1967 +0 1821 1944 +0 1845 1911 +0 1876 1864 +0 1915 1791 +0 1962 1672 +0 2018 1438 +0 2083 386 +0 2158 0 +0 2242 0 +0 2335 0 +0 2435 0 +0 2542 0 +0 2654 0 +0 2770 0 +0 2890 0 +0 3013 0 +0 3139 0 +0 3265 0 +0 3393 0 +0 3523 0 +0 3652 0 +0 1744 2035 +0 1746 2033 +0 1747 2032 +0 1749 2030 +0 1752 2028 +0 1756 2024 +0 1761 2020 +0 1768 2013 +0 1777 2005 +0 1788 1993 +0 1803 1977 +0 1823 1955 +0 1847 1923 +0 1878 1877 +0 1917 1806 +0 1963 1691 +0 2019 1470 +0 2084 640 +0 2159 0 +0 2243 0 +0 2336 0 +0 2436 0 +0 2542 0 +0 2654 0 +0 2771 0 +0 2891 0 +0 3014 0 +0 3139 0 +0 3265 0 +0 3393 0 +0 3523 0 +0 3652 0 +0 1748 2046 +0 1749 2045 +0 1750 2044 +0 1753 2042 +0 1755 2040 +0 1759 2036 +0 1764 2032 +0 1771 2026 +0 1780 2018 +0 1791 2006 +0 1806 1991 +0 1825 1969 +0 1850 1938 +0 1881 1893 +0 1919 1826 +0 1965 1716 +0 2021 1510 +0 2086 846 +0 2160 0 +0 2244 0 +0 2336 0 +0 2436 0 +0 2543 0 +0 2655 0 +0 2771 0 +0 2891 0 +0 3014 0 +0 3139 0 +0 3266 0 +0 3394 0 +0 3523 0 +0 3652 0 +0 1752 2062 +0 1753 2061 +0 1755 2060 +0 1757 2058 +0 1760 2055 +0 1763 2052 +0 1768 2048 +0 1775 2042 +0 1784 2034 +0 1795 2023 +0 1810 2008 +0 1829 1987 +0 1853 1958 +0 1884 1915 +0 1922 1851 +0 1968 1748 +0 2023 1559 +0 2088 1026 +0 2162 0 +0 2246 0 +0 2338 0 +0 2437 0 +0 2543 0 +0 2655 0 +0 2771 0 +0 2891 0 +0 3014 0 +0 3139 0 +0 3266 0 +0 3394 0 +0 3523 0 +0 3652 0 +0 1757 2082 +0 1759 2081 +0 1760 2080 +0 1762 2078 +0 1765 2076 +0 1769 2073 +0 1774 2068 +0 1780 2063 +0 1789 2055 +0 1800 2045 +0 1815 2030 +0 1834 2011 +0 1858 1983 +0 1888 1942 +0 1925 1882 +0 1971 1787 +0 2026 1616 +0 2090 1191 +0 2164 0 +0 2247 0 +0 2339 0 +0 2438 0 +0 2544 0 +0 2656 0 +0 2772 0 +0 2892 0 +0 3014 0 +0 3139 0 +0 3266 0 +0 3394 0 +0 3523 0 +0 3653 0 +30 1765 2107 +0 1766 2106 +0 1767 2105 +0 1770 2103 +0 1772 2101 +0 1776 2098 +0 1781 2094 +0 1787 2089 +0 1796 2082 +0 1807 2072 +0 1821 2059 +0 1840 2040 +0 1864 2014 +0 1893 1976 +0 1931 1921 +0 1976 1834 +0 2030 1684 +0 2094 1346 +0 2167 0 +0 2250 0 +0 2341 0 +0 2440 0 +0 2546 0 +0 2657 0 +0 2773 0 +0 2892 0 +0 3015 0 +0 3140 0 +0 3266 0 +0 3394 0 +0 3523 0 +0 3653 0 +1247 1774 2139 +1239 1775 2138 +1228 1777 2137 +1213 1779 2136 +1193 1782 2133 +1163 1785 2131 +1121 1790 2127 +1058 1796 2122 +956 1805 2116 +771 1816 2106 +265 1830 2094 +0 1848 2077 +0 1871 2053 +0 1901 2018 +0 1937 1968 +0 1982 1890 +0 2036 1760 +0 2099 1495 +0 2171 0 +0 2253 0 +0 2344 0 +0 2442 0 +0 2547 0 +0 2658 0 +0 2774 0 +0 2893 0 +0 3015 0 +0 3140 0 +0 3267 0 +0 3394 0 +0 3523 0 +0 3653 0 +1614 1787 2178 +1611 1788 2178 +1606 1790 2177 +1600 1792 2175 +1591 1794 2173 +1579 1798 2171 +1563 1802 2167 +1540 1808 2163 +1507 1817 2157 +1459 1827 2149 +1387 1841 2137 +1267 1859 2122 +1031 1881 2100 +0 1910 2069 +0 1946 2024 +0 1990 1956 +0 2043 1846 +0 2105 1639 +0 2177 963 +0 2258 0 +0 2348 0 +0 2445 0 +0 2550 0 +0 2660 0 +0 2775 0 +0 2894 0 +0 3016 0 +0 3141 0 +0 3267 0 +0 3395 0 +0 3523 0 +0 3653 0 +1867 1803 2226 +1865 1804 2225 +1862 1806 2224 +1858 1808 2223 +1853 1810 2222 +1847 1814 2219 +1838 1818 2216 +1825 1824 2212 +1808 1832 2207 +1784 1842 2199 +1750 1855 2189 +1700 1873 2175 +1623 1895 2156 +1494 1923 2129 +1232 1958 2090 +0 2000 2032 +0 2052 1940 +0 2113 1780 +0 2184 1399 +0 2264 0 +0 2352 0 +0 2449 0 +0 2553 0 +0 2663 0 +0 2777 0 +0 2896 0 +0 3017 0 +0 3142 0 +0 3268 0 +0 3395 0 +0 3524 0 +0 3653 0 +2071 1824 2283 +2070 1825 2282 +2068 1827 2282 +2066 1828 2281 +2063 1831 2279 +2059 1834 2277 +2053 1838 2274 +2046 1844 2271 +2035 1851 2266 +2021 1861 2260 +2001 1874 2251 +1973 1891 2239 +1932 1912 2222 +1871 1939 2198 +1775 1973 2165 +1602 2014 2117 +1165 2064 2042 +0 2124 1918 +0 2193 1672 +0 2271 186 +0 2359 0 +0 2454 0 +0 2557 0 +0 2666 0 +0 2780 0 +0 2898 0 +0 3019 0 +0 3143 0 +0 3268 0 +0 3396 0 +0 3524 0 +0 3654 0 +2251 1851 2350 +2250 1852 2349 +2249 1853 2348 +2248 1855 2347 +2246 1857 2346 +2243 1860 2344 +2239 1864 2342 +2234 1869 2339 +2227 1877 2335 +2218 1886 2329 +2205 1898 2322 +2187 1914 2311 +2162 1934 2297 +2127 1960 2277 +2074 1992 2250 +1993 2032 2210 +1855 2080 2150 +1563 2138 2055 +0 2205 1887 +0 2281 1471 +0 2367 0 +0 2461 0 +0 2562 0 +0 2670 0 +0 2783 0 +0 2900 0 +0 3021 0 +0 3144 0 +0 3270 0 +0 3397 0 +0 3525 0 +0 3654 0 +2416 1884 2425 +2415 1885 2425 +2415 1886 2424 +2413 1888 2424 +2412 1890 2423 +2410 1893 2421 +2408 1896 2419 +2404 1901 2417 +2399 1908 2413 +2393 1917 2408 +2384 1928 2402 +2372 1943 2393 +2356 1962 2382 +2333 1986 2365 +2300 2017 2342 +2253 2054 2310 +2180 2101 2263 +2060 2156 2191 +1826 2220 2072 +763 2295 1841 +0 2378 850 +0 2470 0 +0 2570 0 +0 2676 0 +0 2787 0 +0 2904 0 +0 3023 0 +0 3146 0 +0 3271 0 +0 3398 0 +0 3526 0 +0 3655 0 +2571 1925 2511 +2571 1926 2510 +2570 1927 2510 +2569 1928 2509 +2568 1930 2508 +2567 1933 2507 +2565 1936 2505 +2563 1941 2503 +2559 1947 2500 +2555 1955 2496 +2549 1965 2491 +2540 1979 2484 +2529 1997 2474 +2514 2019 2461 +2492 2048 2443 +2461 2083 2417 +2417 2126 2380 +2350 2179 2326 +2240 2240 2240 +2036 2312 2094 +1384 2392 1771 +0 2482 0 +0 2579 0 +0 2683 0 +0 2793 0 +0 2908 0 +0 3027 0 +0 3149 0 +0 3273 0 +0 3399 0 +0 3527 0 +0 3656 0 +2720 1975 2604 +2719 1975 2604 +2719 1976 2603 +2718 1978 2603 +2718 1979 2602 +2717 1982 2601 +2715 1985 2600 +2713 1989 2598 +2711 1994 2596 +2708 2002 2593 +2704 2011 2588 +2698 2023 2583 +2690 2039 2575 +2679 2060 2564 +2664 2086 2550 +2643 2119 2529 +2614 2159 2501 +2571 2208 2460 +2508 2266 2398 +2405 2333 2299 +2218 2411 2122 +1698 2497 1658 +0 2591 0 +0 2693 0 +0 2801 0 +0 2914 0 +0 3032 0 +0 3152 0 +0 3276 0 +0 3401 0 +0 3529 0 +0 3657 0 +2864 2033 2705 +2863 2034 2705 +2863 2035 2704 +2863 2036 2704 +2862 2038 2703 +2861 2040 2703 +2860 2042 2702 +2859 2046 2700 +2857 2051 2698 +2855 2057 2696 +2852 2066 2692 +2848 2076 2688 +2842 2091 2682 +2834 2109 2673 +2824 2133 2662 +2809 2162 2646 +2789 2199 2624 +2761 2244 2593 +2720 2298 2548 +2658 2361 2479 +2560 2434 2368 +2385 2516 2156 +1930 2607 1441 +0 2706 0 +0 2811 0 +0 2922 0 +0 3038 0 +0 3157 0 +0 3279 0 +0 3404 0 +0 3531 0 +0 3658 0 +3004 2102 2812 +3004 2102 2812 +3004 2103 2812 +3004 2104 2811 +3003 2105 2811 +3003 2107 2810 +3002 2110 2810 +3001 2113 2808 +3000 2117 2807 +2998 2122 2805 +2996 2130 2802 +2993 2139 2799 +2989 2152 2794 +2983 2168 2787 +2976 2188 2779 +2965 2215 2766 +2951 2248 2750 +2931 2288 2726 +2903 2337 2693 +2863 2396 2644 +2804 2464 2570 +2709 2541 2446 +2541 2628 2199 +2125 2722 664 +0 2824 0 +0 2932 0 +0 3046 0 +0 3163 0 +0 3284 0 +0 3408 0 +0 3533 0 +0 3660 0 +3143 2180 2925 +3143 2180 2925 +3143 2181 2924 +3142 2182 2924 +3142 2183 2924 +3142 2184 2923 +3141 2186 2923 +3141 2189 2922 +3140 2192 2921 +3138 2197 2919 +3137 2203 2917 +3134 2211 2914 +3131 2222 2911 +3127 2236 2906 +3122 2254 2899 +3114 2276 2890 +3104 2305 2877 +3090 2341 2859 +3071 2385 2835 +3043 2438 2799 +3004 2500 2748 +2945 2572 2668 +2853 2653 2532 +2690 2743 2250 +2299 2841 0 +0 2946 0 +0 3056 0 +0 3171 0 +0 3290 0 +0 3412 0 +0 3537 0 +0 3663 0 +3280 2267 3042 +3280 2267 3042 +3280 2267 3041 +3279 2268 3041 +3279 2269 3041 +3279 2270 3041 +3278 2272 3040 +3278 2274 3039 +3277 2277 3039 +3276 2281 3037 +3275 2286 3036 +3273 2293 3034 +3271 2302 3031 +3268 2313 3027 +3264 2328 3022 +3259 2348 3015 +3251 2373 3005 +3241 2404 2992 +3227 2442 2974 +3208 2489 2948 +3181 2545 2911 +3142 2611 2857 +3085 2686 2773 +2994 2770 2628 +2835 2863 2310 +2460 2963 0 +0 3070 0 +0 3182 0 +0 3299 0 +0 3419 0 +0 3542 0 +0 3667 0 +3415 2362 3162 +3415 2362 3162 +3415 2362 3162 +3415 2363 3162 +3415 2364 3162 +3415 2365 3161 +3414 2366 3161 +3414 2368 3160 +3414 2370 3160 +3413 2373 3159 +3412 2377 3158 +3411 2383 3156 +3409 2390 3154 +3407 2400 3151 +3404 2412 3147 +3400 2429 3142 +3394 2449 3134 +3387 2476 3124 +3377 2509 3111 +3363 2550 3092 +3344 2599 3066 +3318 2658 3028 +3279 2726 2971 +3222 2804 2883 +3132 2891 2730 +2976 2985 2380 +2613 3088 0 +0 3196 0 +0 3309 0 +0 3427 0 +0 3548 0 +0 3672 0 +3550 2464 3285 +3550 2464 3285 +3550 2464 3285 +3550 2465 3285 +3550 2465 3285 +3550 2466 3285 +3549 2467 3284 +3549 2469 3284 +3549 2471 3284 +3548 2473 3283 +3548 2477 3282 +3547 2481 3281 +3545 2487 3279 +3544 2495 3277 +3542 2505 3274 +3539 2518 3270 +3535 2535 3264 +3529 2557 3257 +3522 2585 3247 +3512 2620 3233 +3498 2663 3214 +3479 2714 3187 +3453 2775 3148 +3415 2845 3090 +3358 2925 2999 +3269 3014 2838 +3115 3110 2460 +2760 3214 0 +0 3323 0 +0 3438 0 +0 3556 0 +0 3678 0 +3684 2572 3411 +3684 2572 3411 +3684 2573 3411 +3684 2573 3410 +3684 2574 3410 +3684 2574 3410 +3684 2575 3410 +3683 2576 3410 +3683 2578 3409 +3683 2580 3409 +3682 2582 3408 +3682 2586 3407 +3681 2591 3406 +3679 2597 3404 +3678 2605 3402 +3676 2616 3399 +3673 2630 3395 +3669 2647 3389 +3663 2670 3382 +3656 2699 3371 +3646 2736 3357 +3633 2780 3338 +3614 2833 3310 +3587 2895 3270 +3549 2967 3211 +3493 3049 3118 +3405 3139 2952 +3252 3237 2548 +2902 3342 0 +0 3452 0 +0 3567 0 +0 3686 0 +3818 2686 3538 +3818 2686 3538 +3818 2686 3538 +3818 2686 3537 +3817 2687 3537 +3817 2687 3537 +3817 2688 3537 +3817 2689 3537 +3817 2690 3537 +3817 2692 3536 +3816 2694 3536 +3816 2696 3535 +3815 2700 3534 +3814 2705 3533 +3813 2711 3531 +3811 2720 3529 +3809 2731 3526 +3806 2745 3522 +3802 2764 3516 +3797 2788 3508 +3790 2818 3498 +3780 2855 3484 +3766 2900 3464 +3748 2955 3436 +3721 3018 3395 +3683 3092 3335 +3627 3174 3240 +3540 3266 3070 +3387 3365 2644 +3042 3470 0 +0 3582 0 +0 3697 0 +3951 2804 3666 +3951 2804 3666 +3951 2804 3666 +3951 2804 3666 +3951 2804 3666 +3951 2805 3666 +3951 2805 3665 +3950 2806 3665 +3950 2807 3665 +3950 2808 3665 +3950 2810 3664 +3949 2812 3664 +3949 2815 3663 +3948 2818 3662 +3947 2823 3661 +3946 2830 3659 +3944 2839 3657 +3942 2850 3654 +3939 2865 3650 +3935 2884 3644 +3930 2909 3636 +3923 2939 3626 +3913 2977 3611 +3900 3024 3591 +3881 3079 3563 +3855 3144 3522 +3817 3218 3461 +3761 3302 3364 +3674 3394 3191 +3522 3494 2748 +3180 3600 0 +0 3712 0 +4084 2925 3795 +4084 2925 3795 +4084 2925 3795 +4084 2925 3795 +4084 2925 3795 +4084 2926 3795 +4083 2926 3795 +4083 2926 3795 +4083 2927 3794 +4083 2928 3794 +4083 2929 3794 +4083 2931 3794 +4082 2933 3793 +4082 2936 3792 +4081 2940 3791 +4080 2945 3790 +4079 2952 3788 +4077 2961 3786 +4075 2972 3783 +4072 2988 3779 +4068 3007 3773 +4063 3032 3765 +4056 3063 3755 +4046 3102 3740 +4033 3149 3720 +4014 3205 3691 +3988 3271 3650 +3950 3346 3589 +3894 3430 3491 +3807 3523 3314 +3656 3623 2857 +3317 3730 0 +4095 3048 3925 +4095 3048 3925 +4095 3048 3925 +4095 3049 3925 +4095 3049 3925 +4095 3049 3925 +4095 3049 3925 +4095 3050 3925 +4095 3050 3924 +4095 3051 3924 +4095 3052 3924 +4095 3053 3924 +4095 3055 3923 +4095 3057 3923 +4095 3060 3922 +4095 3064 3921 +4095 3069 3920 +4095 3076 3918 +4095 3085 3916 +4095 3097 3913 +4095 3112 3908 +4095 3132 3903 +4095 3157 3895 +4095 3189 3884 +4095 3228 3870 +4095 3276 3849 +4095 3333 3821 +4095 3399 3779 +4083 3475 3717 +4027 3560 3619 +3940 3653 3440 +3790 3754 2972 +4095 3174 4055 +4095 3174 4055 +4095 3174 4055 +4095 3174 4055 +4095 3174 4055 +4095 3174 4055 +4095 3175 4055 +4095 3175 4055 +4095 3175 4055 +4095 3176 4055 +4095 3177 4055 +4095 3178 4055 +4095 3179 4054 +4095 3181 4054 +4095 3183 4053 +4095 3186 4053 +4095 3190 4052 +4095 3195 4050 +4095 3202 4049 +4095 3211 4046 +4095 3223 4043 +4095 3239 4039 +4095 3259 4033 +4095 3285 4025 +4095 3317 4015 +4095 3356 4000 +4095 3404 3979 +4095 3461 3951 +4095 3528 3909 +4095 3604 3847 +4095 3690 3747 +4073 3783 3567 +0 1867 2134 +0 1868 2133 +0 1869 2132 +0 1871 2130 +0 1873 2128 +0 1876 2126 +0 1880 2122 +0 1885 2117 +0 1892 2110 +0 1901 2101 +0 1913 2088 +0 1928 2071 +0 1948 2047 +0 1973 2012 +0 2004 1961 +0 2043 1882 +0 2090 1749 +0 2146 1473 +0 2212 0 +0 2288 0 +0 2372 0 +0 2465 0 +0 2566 0 +0 2673 0 +0 2785 0 +0 2902 0 +0 3022 0 +0 3145 0 +0 3270 0 +0 3397 0 +0 3525 0 +0 3654 0 +0 1867 2135 +0 1868 2134 +0 1869 2133 +0 1871 2132 +0 1873 2130 +0 1876 2127 +0 1880 2123 +0 1885 2118 +0 1892 2112 +0 1901 2102 +0 1913 2090 +0 1928 2072 +0 1948 2048 +0 1973 2013 +0 2004 1962 +0 2043 1884 +0 2090 1752 +0 2147 1479 +0 2213 0 +0 2288 0 +0 2372 0 +0 2465 0 +0 2566 0 +0 2673 0 +0 2785 0 +0 2902 0 +0 3022 0 +0 3145 0 +0 3270 0 +0 3397 0 +0 3525 0 +0 3654 0 +0 1868 2137 +0 1869 2136 +0 1870 2135 +0 1872 2133 +0 1874 2131 +0 1877 2129 +0 1881 2125 +0 1886 2120 +0 1893 2113 +0 1902 2104 +0 1913 2092 +0 1929 2074 +0 1948 2050 +0 1973 2016 +0 2004 1965 +0 2043 1887 +0 2091 1756 +0 2147 1486 +0 2213 0 +0 2288 0 +0 2373 0 +0 2466 0 +0 2566 0 +0 2673 0 +0 2785 0 +0 2902 0 +0 3022 0 +0 3145 0 +0 3270 0 +0 3397 0 +0 3525 0 +0 3655 0 +0 1868 2139 +0 1869 2138 +0 1870 2137 +0 1872 2136 +0 1874 2134 +0 1877 2131 +0 1881 2127 +0 1886 2122 +0 1893 2116 +0 1902 2107 +0 1914 2094 +0 1929 2077 +0 1949 2053 +0 1974 2019 +0 2005 1968 +0 2044 1891 +0 2091 1761 +0 2147 1495 +0 2213 0 +0 2288 0 +0 2373 0 +0 2466 0 +0 2566 0 +0 2673 0 +0 2785 0 +0 2902 0 +0 3022 0 +0 3145 0 +0 3270 0 +0 3397 0 +0 3525 0 +0 3655 0 +0 1869 2142 +0 1870 2141 +0 1871 2140 +0 1873 2139 +0 1875 2137 +0 1878 2134 +0 1882 2130 +0 1887 2125 +0 1894 2119 +0 1903 2110 +0 1915 2097 +0 1930 2080 +0 1949 2056 +0 1974 2022 +0 2005 1973 +0 2044 1896 +0 2091 1768 +0 2148 1508 +0 2213 0 +0 2289 0 +0 2373 0 +0 2466 0 +0 2566 0 +0 2673 0 +0 2785 0 +0 2902 0 +0 3022 0 +0 3145 0 +0 3270 0 +0 3397 0 +0 3525 0 +0 3655 0 +0 1870 2146 +0 1871 2145 +0 1872 2144 +0 1874 2143 +0 1876 2141 +0 1879 2138 +0 1883 2134 +0 1888 2130 +0 1895 2123 +0 1904 2114 +0 1915 2102 +0 1931 2085 +0 1950 2061 +0 1975 2028 +0 2006 1978 +0 2045 1903 +0 2092 1777 +0 2148 1523 +0 2214 0 +0 2289 0 +0 2373 0 +0 2466 0 +0 2567 0 +0 2673 0 +0 2786 0 +0 2902 0 +0 3022 0 +0 3145 0 +0 3270 0 +0 3397 0 +0 3525 0 +0 3655 0 +0 1871 2151 +0 1872 2151 +0 1874 2149 +0 1875 2148 +0 1877 2146 +0 1880 2143 +0 1884 2140 +0 1889 2135 +0 1896 2129 +0 1905 2120 +0 1917 2108 +0 1932 2091 +0 1951 2068 +0 1976 2034 +0 2007 1986 +0 2046 1912 +0 2093 1788 +0 2149 1544 +0 2214 145 +0 2290 0 +0 2374 0 +0 2467 0 +0 2567 0 +0 2674 0 +0 2786 0 +0 2902 0 +0 3022 0 +0 3145 0 +0 3271 0 +0 3397 0 +0 3525 0 +0 3655 0 +0 1873 2158 +0 1874 2157 +0 1875 2156 +0 1877 2155 +0 1879 2153 +0 1882 2150 +0 1886 2147 +0 1891 2142 +0 1898 2136 +0 1907 2127 +0 1918 2115 +0 1933 2099 +0 1953 2076 +0 1977 2043 +0 2009 1996 +0 2047 1923 +0 2094 1804 +0 2150 1570 +0 2215 518 +0 2290 0 +0 2374 0 +0 2467 0 +0 2567 0 +0 2674 0 +0 2786 0 +0 2902 0 +0 3023 0 +0 3146 0 +0 3271 0 +0 3397 0 +0 3526 0 +0 3655 0 +0 1876 2167 +0 1876 2167 +0 1878 2166 +0 1879 2164 +0 1882 2162 +0 1884 2160 +0 1888 2156 +0 1893 2152 +0 1900 2145 +0 1909 2137 +0 1920 2125 +0 1935 2109 +0 1955 2087 +0 1979 2055 +0 2010 2009 +0 2049 1938 +0 2095 1823 +0 2151 1602 +0 2216 772 +0 2291 0 +0 2375 0 +0 2468 0 +0 2568 0 +0 2674 0 +0 2786 0 +0 2903 0 +0 3023 0 +0 3146 0 +0 3271 0 +0 3398 0 +0 3526 0 +0 3655 0 +0 1879 2179 +0 1880 2179 +0 1881 2178 +0 1883 2176 +0 1885 2174 +0 1888 2172 +0 1891 2168 +0 1896 2164 +0 1903 2158 +0 1912 2150 +0 1923 2138 +0 1938 2123 +0 1957 2101 +0 1982 2070 +0 2013 2026 +0 2051 1958 +0 2097 1848 +0 2153 1642 +0 2218 978 +0 2293 0 +0 2376 0 +0 2469 0 +0 2568 0 +0 2675 0 +0 2787 0 +0 2903 0 +0 3023 0 +0 3146 0 +0 3271 0 +0 3398 0 +0 3526 0 +0 3655 0 +0 1883 2195 +0 1884 2194 +0 1885 2193 +0 1887 2192 +0 1889 2190 +0 1892 2188 +0 1895 2184 +0 1900 2180 +0 1907 2174 +0 1916 2166 +0 1927 2155 +0 1942 2140 +0 1961 2119 +0 1985 2090 +0 2016 2047 +0 2054 1983 +0 2100 1880 +0 2155 1691 +0 2220 1158 +0 2294 0 +0 2378 0 +0 2470 0 +0 2569 0 +0 2676 0 +0 2787 0 +0 2904 0 +0 3023 0 +0 3146 0 +0 3271 0 +0 3398 0 +0 3526 0 +0 3655 0 +0 1889 2215 +0 1889 2214 +0 1891 2213 +0 1892 2212 +0 1894 2210 +0 1897 2208 +0 1901 2205 +0 1906 2200 +0 1912 2195 +0 1921 2187 +0 1932 2177 +0 1947 2163 +0 1966 2143 +0 1990 2115 +0 2020 2074 +0 2058 2014 +0 2103 1919 +0 2158 1748 +0 2223 1323 +0 2296 0 +0 2380 0 +0 2471 0 +0 2571 0 +0 2677 0 +0 2788 0 +0 2904 0 +0 3024 0 +0 3146 0 +0 3271 0 +0 3398 0 +0 3526 0 +0 3655 0 +241 1896 2240 +162 1897 2239 +31 1898 2238 +0 1900 2237 +0 1902 2236 +0 1904 2233 +0 1908 2230 +0 1913 2227 +0 1919 2221 +0 1928 2214 +0 1939 2204 +0 1953 2191 +0 1972 2172 +0 1996 2146 +0 2026 2108 +0 2063 2053 +0 2108 1966 +0 2162 1816 +0 2226 1478 +0 2299 0 +0 2382 0 +0 2473 0 +0 2572 0 +0 2678 0 +0 2789 0 +0 2905 0 +0 3024 0 +0 3147 0 +0 3272 0 +0 3398 0 +0 3526 0 +0 3655 0 +1385 1906 2272 +1379 1906 2271 +1371 1908 2270 +1360 1909 2269 +1345 1911 2268 +1325 1914 2266 +1296 1917 2263 +1253 1922 2259 +1190 1929 2254 +1089 1937 2248 +903 1948 2239 +397 1962 2226 +0 1980 2209 +0 2003 2185 +0 2033 2150 +0 2069 2100 +0 2114 2023 +0 2168 1893 +0 2231 1627 +0 2303 0 +0 2385 0 +0 2476 0 +0 2574 0 +0 2680 0 +0 2790 0 +0 2906 0 +0 3025 0 +0 3148 0 +0 3272 0 +0 3399 0 +0 3526 0 +0 3655 0 +1749 1918 2311 +1747 1919 2310 +1743 1920 2310 +1738 1922 2309 +1732 1924 2307 +1723 1926 2305 +1711 1930 2303 +1695 1934 2300 +1672 1941 2295 +1639 1949 2289 +1592 1959 2281 +1519 1973 2269 +1399 1991 2254 +1164 2014 2232 +83 2042 2201 +0 2078 2156 +0 2122 2088 +0 2175 1978 +0 2237 1771 +0 2309 1096 +0 2390 0 +0 2480 0 +0 2577 0 +0 2682 0 +0 2792 0 +0 2907 0 +0 3026 0 +0 3148 0 +0 3273 0 +0 3399 0 +0 3527 0 +0 3656 0 +2000 1935 2359 +1999 1935 2358 +1997 1936 2358 +1994 1938 2357 +1990 1940 2355 +1985 1942 2354 +1979 1946 2351 +1970 1950 2348 +1957 1956 2344 +1940 1964 2339 +1916 1974 2331 +1882 1988 2321 +1832 2005 2307 +1755 2027 2288 +1626 2055 2261 +1364 2090 2222 +0 2133 2164 +0 2184 2073 +0 2245 1912 +0 2316 1531 +0 2396 0 +0 2484 0 +0 2581 0 +0 2685 0 +0 2795 0 +0 2909 0 +0 3028 0 +0 3149 0 +0 3274 0 +0 3400 0 +0 3527 0 +0 3656 0 +2205 1955 2416 +2204 1956 2415 +2202 1957 2415 +2201 1959 2414 +2198 1960 2413 +2195 1963 2411 +2191 1966 2409 +2185 1970 2407 +2178 1976 2403 +2167 1984 2398 +2153 1993 2392 +2133 2006 2383 +2105 2023 2371 +2064 2044 2354 +2003 2071 2331 +1907 2105 2297 +1734 2146 2249 +1297 2196 2174 +0 2256 2050 +0 2325 1804 +0 2403 318 +0 2491 0 +0 2586 0 +0 2689 0 +0 2798 0 +0 2912 0 +0 3030 0 +0 3151 0 +0 3275 0 +0 3401 0 +0 3528 0 +0 3656 0 +2384 1982 2482 +2383 1983 2482 +2382 1984 2481 +2381 1985 2480 +2380 1987 2479 +2378 1989 2478 +2375 1992 2476 +2371 1996 2474 +2366 2002 2471 +2359 2009 2467 +2350 2018 2461 +2337 2030 2454 +2319 2046 2443 +2294 2066 2429 +2259 2092 2410 +2206 2124 2382 +2125 2164 2342 +1987 2212 2282 +1696 2270 2187 +0 2337 2019 +0 2414 1603 +0 2499 0 +0 2593 0 +0 2694 0 +0 2802 0 +0 2915 0 +0 3032 0 +0 3153 0 +0 3276 0 +0 3402 0 +0 3529 0 +0 3657 0 +2549 2015 2558 +2548 2016 2558 +2547 2017 2557 +2547 2018 2557 +2546 2020 2556 +2544 2022 2555 +2542 2025 2553 +2540 2029 2551 +2536 2034 2549 +2531 2040 2545 +2525 2049 2541 +2516 2060 2534 +2504 2075 2526 +2488 2094 2514 +2465 2118 2497 +2432 2149 2475 +2385 2187 2442 +2312 2233 2395 +2192 2288 2323 +1958 2352 2204 +895 2427 1973 +0 2510 982 +0 2602 0 +0 2702 0 +0 2808 0 +0 2919 0 +0 3036 0 +0 3156 0 +0 3278 0 +0 3403 0 +0 3530 0 +0 3658 0 +2703 2056 2643 +2703 2057 2643 +2703 2058 2642 +2702 2059 2642 +2701 2060 2641 +2700 2062 2640 +2699 2065 2639 +2697 2068 2637 +2695 2073 2635 +2691 2079 2632 +2687 2087 2629 +2681 2097 2623 +2673 2111 2616 +2661 2129 2607 +2646 2151 2593 +2624 2180 2575 +2593 2215 2549 +2549 2259 2512 +2482 2311 2458 +2373 2373 2373 +2168 2444 2226 +1516 2524 1903 +0 2614 0 +0 2711 0 +0 2815 0 +0 2925 0 +0 3040 0 +0 3159 0 +0 3281 0 +0 3405 0 +0 3531 0 +0 3659 0 +2852 2106 2736 +2852 2107 2736 +2851 2107 2736 +2851 2108 2735 +2850 2110 2735 +2850 2111 2734 +2849 2114 2733 +2847 2117 2732 +2846 2121 2730 +2843 2126 2728 +2840 2134 2725 +2836 2143 2720 +2830 2155 2715 +2822 2171 2707 +2811 2192 2696 +2796 2218 2682 +2775 2251 2662 +2746 2291 2633 +2703 2340 2592 +2640 2398 2530 +2537 2466 2431 +2350 2543 2254 +1830 2629 1790 +0 2723 0 +0 2825 0 +0 2933 0 +0 3046 0 +0 3164 0 +0 3284 0 +0 3408 0 +0 3533 0 +0 3661 0 +2996 2165 2837 +2996 2165 2837 +2995 2166 2837 +2995 2167 2836 +2995 2168 2836 +2994 2170 2835 +2994 2172 2835 +2993 2174 2834 +2991 2178 2832 +2990 2183 2830 +2987 2189 2828 +2984 2198 2825 +2980 2209 2820 +2974 2223 2814 +2966 2241 2805 +2956 2265 2794 +2941 2294 2778 +2921 2331 2756 +2893 2376 2725 +2852 2430 2680 +2790 2493 2611 +2693 2566 2500 +2517 2648 2288 +2062 2739 1573 +0 2838 0 +0 2943 0 +0 3054 0 +0 3170 0 +0 3289 0 +0 3412 0 +0 3536 0 +0 3663 0 +3137 2233 2944 +3136 2234 2944 +3136 2234 2944 +3136 2235 2944 +3136 2236 2944 +3135 2238 2943 +3135 2239 2942 +3134 2242 2942 +3133 2245 2941 +3132 2249 2939 +3130 2254 2937 +3128 2262 2934 +3125 2271 2931 +3121 2284 2926 +3115 2300 2920 +3108 2320 2911 +3097 2347 2899 +3083 2380 2882 +3063 2420 2858 +3036 2469 2825 +2996 2528 2776 +2936 2596 2702 +2841 2673 2578 +2673 2760 2331 +2257 2854 796 +0 2956 0 +0 3064 0 +0 3178 0 +0 3295 0 +0 3416 0 +0 3540 0 +0 3665 0 +3275 2311 3057 +3275 2312 3057 +3275 2312 3057 +3275 2313 3057 +3275 2314 3056 +3274 2315 3056 +3274 2316 3055 +3273 2318 3055 +3273 2321 3054 +3272 2324 3053 +3270 2329 3051 +3269 2335 3049 +3267 2343 3046 +3263 2354 3043 +3259 2368 3038 +3254 2386 3031 +3246 2409 3022 +3236 2437 3009 +3222 2473 2991 +3203 2517 2967 +3175 2570 2931 +3136 2633 2880 +3078 2704 2800 +2985 2786 2665 +2822 2875 2382 +2431 2973 0 +0 3078 0 +0 3188 0 +0 3303 0 +0 3422 0 +0 3545 0 +0 3669 0 +3412 2398 3174 +3412 2399 3174 +3412 2399 3174 +3412 2400 3174 +3411 2400 3173 +3411 2401 3173 +3411 2402 3173 +3411 2404 3172 +3410 2406 3172 +3409 2409 3171 +3408 2413 3170 +3407 2418 3168 +3406 2425 3166 +3403 2434 3163 +3400 2445 3159 +3396 2461 3154 +3391 2480 3147 +3383 2505 3137 +3373 2536 3124 +3360 2574 3106 +3340 2621 3080 +3313 2677 3043 +3275 2743 2989 +3217 2818 2905 +3126 2902 2760 +2967 2995 2442 +2592 3095 0 +0 3202 0 +0 3314 0 +0 3431 0 +0 3551 0 +0 3674 0 +3547 2493 3294 +3547 2494 3294 +3547 2494 3294 +3547 2494 3294 +3547 2495 3294 +3547 2496 3294 +3547 2497 3293 +3547 2498 3293 +3546 2500 3293 +3546 2502 3292 +3545 2505 3291 +3544 2510 3290 +3543 2515 3288 +3541 2522 3286 +3539 2532 3283 +3536 2545 3279 +3532 2561 3274 +3527 2582 3266 +3519 2608 3257 +3509 2641 3243 +3496 2682 3224 +3476 2731 3198 +3450 2790 3160 +3411 2858 3103 +3354 2936 3015 +3265 3023 2862 +3108 3118 2512 +2745 3220 0 +0 3328 0 +0 3442 0 +0 3559 0 +0 3680 0 +3682 2596 3418 +3682 2596 3417 +3682 2596 3417 +3682 2597 3417 +3682 2597 3417 +3682 2598 3417 +3682 2598 3417 +3681 2599 3417 +3681 2601 3416 +3681 2603 3416 +3680 2605 3415 +3680 2609 3414 +3679 2613 3413 +3677 2619 3411 +3676 2627 3409 +3674 2637 3406 +3671 2650 3402 +3667 2667 3396 +3661 2689 3389 +3654 2717 3379 +3644 2752 3365 +3630 2795 3346 +3612 2846 3319 +3585 2907 3280 +3547 2977 3222 +3490 3057 3131 +3401 3146 2970 +3247 3242 2592 +2892 3346 0 +0 3456 0 +0 3570 0 +0 3689 0 +3816 2704 3543 +3816 2704 3543 +3816 2705 3543 +3816 2705 3543 +3816 2705 3543 +3816 2706 3542 +3816 2706 3542 +3816 2707 3542 +3815 2708 3542 +3815 2710 3541 +3815 2712 3541 +3814 2714 3540 +3814 2718 3539 +3813 2723 3538 +3811 2729 3536 +3810 2737 3534 +3808 2748 3531 +3805 2762 3527 +3801 2780 3521 +3795 2803 3514 +3788 2832 3504 +3778 2868 3489 +3765 2912 3470 +3746 2965 3442 +3719 3027 3403 +3681 3099 3343 +3625 3181 3250 +3537 3271 3084 +3384 3369 2680 +3034 3474 0 +0 3584 0 +0 3699 0 +3950 2818 3670 +3950 2818 3670 +3950 2818 3670 +3950 2818 3670 +3950 2819 3670 +3950 2819 3669 +3949 2819 3669 +3949 2820 3669 +3949 2821 3669 +3949 2822 3669 +3949 2824 3668 +3948 2826 3668 +3948 2829 3667 +3947 2832 3666 +3946 2837 3665 +3945 2844 3663 +3943 2852 3661 +3941 2863 3658 +3938 2878 3654 +3934 2896 3648 +3929 2920 3640 +3922 2950 3630 +3912 2987 3616 +3898 3032 3596 +3880 3087 3568 +3853 3151 3528 +3815 3224 3467 +3759 3307 3372 +3672 3398 3202 +3520 3497 2776 +3174 3602 0 +0 3714 0 +4083 2936 3798 +4083 2936 3798 +4083 2936 3798 +4083 2936 3798 +4083 2936 3798 +4083 2936 3798 +4083 2937 3798 +4083 2937 3798 +4082 2938 3797 +4082 2939 3797 +4082 2940 3797 +4082 2942 3796 +4081 2944 3796 +4081 2947 3795 +4080 2951 3794 +4079 2956 3793 +4078 2962 3791 +4077 2971 3789 +4074 2982 3786 +4071 2997 3782 +4068 3016 3776 +4062 3041 3768 +4055 3071 3758 +4045 3109 3743 +4032 3156 3723 +4013 3211 3695 +3987 3276 3654 +3949 3350 3593 +3893 3434 3496 +3806 3526 3323 +3654 3626 2880 +3312 3732 0 +4095 3057 3927 +4095 3057 3927 +4095 3057 3927 +4095 3057 3927 +4095 3057 3927 +4095 3057 3927 +4095 3058 3927 +4095 3058 3927 +4095 3059 3927 +4095 3059 3927 +4095 3060 3926 +4095 3061 3926 +4095 3063 3926 +4095 3065 3925 +4095 3068 3924 +4095 3072 3923 +4095 3077 3922 +4095 3084 3920 +4095 3093 3918 +4095 3105 3915 +4095 3120 3911 +4095 3139 3905 +4095 3164 3897 +4095 3195 3887 +4095 3234 3872 +4095 3281 3852 +4095 3337 3823 +4095 3403 3782 +4082 3478 3721 +4026 3562 3623 +3939 3655 3446 +3788 3755 2989 +4095 3180 4057 +4095 3180 4057 +4095 3180 4057 +4095 3181 4057 +4095 3181 4057 +4095 3181 4057 +4095 3181 4057 +4095 3181 4057 +4095 3182 4057 +4095 3182 4057 +4095 3183 4056 +4095 3184 4056 +4095 3185 4056 +4095 3187 4055 +4095 3189 4055 +4095 3192 4054 +4095 3196 4053 +4095 3201 4052 +4095 3208 4050 +4095 3217 4048 +4095 3229 4045 +4095 3245 4040 +4095 3264 4035 +4095 3290 4027 +4095 3321 4016 +4095 3360 4002 +4095 3408 3981 +4095 3465 3953 +4095 3531 3911 +4095 3607 3849 +4095 3692 3751 +4073 3785 3572 +0 1998 2266 +0 1999 2265 +0 2000 2264 +0 2001 2263 +0 2003 2262 +0 2005 2260 +0 2008 2257 +0 2012 2253 +0 2017 2248 +0 2024 2241 +0 2033 2232 +0 2045 2219 +0 2060 2202 +0 2079 2177 +0 2104 2143 +0 2136 2091 +0 2175 2012 +0 2222 1879 +0 2278 1601 +0 2344 0 +0 2420 0 +0 2504 0 +0 2597 0 +0 2698 0 +0 2805 0 +0 2917 0 +0 3034 0 +0 3154 0 +0 3277 0 +0 3402 0 +0 3529 0 +0 3657 0 +0 1998 2267 +0 1999 2266 +0 2000 2265 +0 2001 2264 +0 2003 2263 +0 2005 2260 +0 2008 2258 +0 2012 2254 +0 2017 2249 +0 2024 2242 +0 2033 2233 +0 2045 2220 +0 2060 2203 +0 2080 2179 +0 2105 2144 +0 2136 2093 +0 2175 2014 +0 2222 1881 +0 2279 1606 +0 2344 0 +0 2420 0 +0 2504 0 +0 2597 0 +0 2698 0 +0 2805 0 +0 2917 0 +0 3034 0 +0 3154 0 +0 3277 0 +0 3402 0 +0 3529 0 +0 3657 0 +0 1999 2268 +0 1999 2267 +0 2000 2266 +0 2002 2265 +0 2003 2264 +0 2005 2262 +0 2008 2259 +0 2012 2255 +0 2017 2250 +0 2024 2244 +0 2033 2234 +0 2045 2222 +0 2060 2204 +0 2080 2180 +0 2105 2145 +0 2136 2095 +0 2175 2016 +0 2222 1884 +0 2279 1611 +0 2345 0 +0 2420 0 +0 2505 0 +0 2598 0 +0 2698 0 +0 2805 0 +0 2917 0 +0 3034 0 +0 3154 0 +0 3277 0 +0 3402 0 +0 3529 0 +0 3657 0 +0 1999 2270 +0 2000 2269 +0 2001 2268 +0 2002 2267 +0 2004 2265 +0 2006 2263 +0 2009 2261 +0 2013 2257 +0 2018 2252 +0 2025 2245 +0 2034 2236 +0 2045 2224 +0 2061 2206 +0 2080 2182 +0 2105 2148 +0 2137 2097 +0 2175 2019 +0 2223 1888 +0 2279 1618 +0 2345 0 +0 2420 0 +0 2505 0 +0 2598 0 +0 2698 0 +0 2805 0 +0 2917 0 +0 3034 0 +0 3154 0 +0 3277 0 +0 3402 0 +0 3529 0 +0 3657 0 +0 2000 2272 +0 2000 2271 +0 2001 2270 +0 2003 2269 +0 2004 2268 +0 2006 2266 +0 2009 2263 +0 2013 2259 +0 2018 2254 +0 2025 2248 +0 2034 2239 +0 2046 2226 +0 2061 2209 +0 2081 2185 +0 2106 2151 +0 2137 2100 +0 2176 2023 +0 2223 1893 +0 2279 1627 +0 2345 0 +0 2420 0 +0 2505 0 +0 2598 0 +0 2698 0 +0 2805 0 +0 2917 0 +0 3034 0 +0 3154 0 +0 3277 0 +0 3402 0 +0 3529 0 +0 3657 0 +0 2000 2275 +0 2001 2274 +0 2002 2273 +0 2003 2272 +0 2005 2271 +0 2007 2269 +0 2010 2266 +0 2014 2262 +0 2019 2258 +0 2026 2251 +0 2035 2242 +0 2047 2230 +0 2062 2212 +0 2081 2189 +0 2106 2155 +0 2138 2105 +0 2176 2028 +0 2223 1900 +0 2280 1640 +0 2345 0 +0 2421 0 +0 2505 0 +0 2598 0 +0 2698 0 +0 2805 0 +0 2917 0 +0 3034 0 +0 3154 0 +0 3277 0 +0 3403 0 +0 3529 0 +0 3658 0 +0 2001 2279 +0 2002 2278 +0 2003 2277 +0 2004 2276 +0 2006 2275 +0 2008 2273 +0 2011 2270 +0 2015 2267 +0 2020 2262 +0 2027 2255 +0 2036 2246 +0 2048 2234 +0 2063 2217 +0 2082 2193 +0 2107 2160 +0 2138 2110 +0 2177 2035 +0 2224 1909 +0 2280 1655 +0 2346 0 +0 2421 0 +0 2505 0 +0 2598 0 +0 2699 0 +0 2805 0 +0 2918 0 +0 3034 0 +0 3154 0 +0 3277 0 +0 3403 0 +0 3529 0 +0 3658 0 +0 2003 2284 +0 2003 2283 +0 2004 2283 +0 2006 2282 +0 2007 2280 +0 2009 2278 +0 2012 2275 +0 2016 2272 +0 2021 2267 +0 2028 2261 +0 2037 2252 +0 2049 2240 +0 2064 2223 +0 2083 2200 +0 2108 2166 +0 2139 2118 +0 2178 2044 +0 2225 1921 +0 2281 1676 +0 2347 277 +0 2422 0 +0 2506 0 +0 2599 0 +0 2699 0 +0 2806 0 +0 2918 0 +0 3034 0 +0 3155 0 +0 3278 0 +0 3403 0 +0 3529 0 +0 3658 0 +0 2005 2291 +0 2005 2290 +0 2006 2290 +0 2007 2288 +0 2009 2287 +0 2011 2285 +0 2014 2283 +0 2018 2279 +0 2023 2274 +0 2030 2268 +0 2039 2259 +0 2050 2247 +0 2065 2231 +0 2085 2208 +0 2110 2175 +0 2141 2128 +0 2179 2055 +0 2226 1936 +0 2282 1702 +0 2347 650 +0 2422 0 +0 2507 0 +0 2599 0 +0 2699 0 +0 2806 0 +0 2918 0 +0 3035 0 +0 3155 0 +0 3278 0 +0 3403 0 +0 3530 0 +0 3658 0 +0 2007 2300 +0 2008 2299 +0 2009 2299 +0 2010 2298 +0 2011 2296 +0 2014 2294 +0 2017 2292 +0 2020 2288 +0 2025 2284 +0 2032 2277 +0 2041 2269 +0 2053 2257 +0 2068 2241 +0 2087 2219 +0 2111 2187 +0 2142 2141 +0 2181 2071 +0 2227 1955 +0 2283 1734 +0 2349 904 +0 2423 0 +0 2507 0 +0 2600 0 +0 2700 0 +0 2806 0 +0 2918 0 +0 3035 0 +0 3155 0 +0 3278 0 +0 3403 0 +0 3530 0 +0 3658 0 +0 2010 2312 +0 2011 2311 +0 2012 2311 +0 2013 2310 +0 2015 2308 +0 2017 2306 +0 2020 2304 +0 2023 2301 +0 2029 2296 +0 2035 2290 +0 2044 2282 +0 2055 2270 +0 2070 2255 +0 2090 2233 +0 2114 2202 +0 2145 2158 +0 2183 2090 +0 2229 1980 +0 2285 1774 +0 2350 1110 +0 2425 0 +0 2508 0 +0 2601 0 +0 2700 0 +0 2807 0 +0 2919 0 +0 3035 0 +0 3155 0 +0 3278 0 +0 3403 0 +0 3530 0 +0 3658 0 +0 2014 2327 +0 2015 2327 +0 2016 2326 +0 2017 2325 +0 2019 2324 +0 2021 2322 +0 2024 2320 +0 2028 2316 +0 2033 2312 +0 2039 2306 +0 2048 2298 +0 2059 2287 +0 2074 2272 +0 2093 2251 +0 2117 2222 +0 2148 2179 +0 2186 2115 +0 2232 2012 +0 2287 1823 +0 2352 1290 +0 2426 0 +0 2510 0 +0 2602 0 +0 2701 0 +0 2808 0 +0 2919 0 +0 3036 0 +0 3155 0 +0 3278 0 +0 3403 0 +0 3530 0 +0 3658 0 +0 2020 2347 +0 2021 2347 +0 2022 2346 +0 2023 2345 +0 2024 2344 +0 2026 2342 +0 2029 2340 +0 2033 2337 +0 2038 2333 +0 2044 2327 +0 2053 2319 +0 2064 2309 +0 2079 2295 +0 2098 2275 +0 2122 2247 +0 2152 2206 +0 2190 2146 +0 2235 2051 +0 2290 1881 +0 2355 1455 +0 2429 0 +0 2512 0 +0 2603 0 +0 2703 0 +0 2809 0 +0 2920 0 +0 3036 0 +0 3156 0 +0 3279 0 +0 3403 0 +0 3530 0 +0 3658 0 +423 2027 2373 +373 2028 2372 +295 2029 2371 +163 2030 2370 +0 2032 2369 +0 2034 2368 +0 2036 2365 +0 2040 2363 +0 2045 2359 +0 2051 2353 +0 2060 2346 +0 2071 2336 +0 2085 2323 +0 2104 2304 +0 2128 2278 +0 2158 2241 +0 2195 2185 +0 2240 2098 +0 2294 1948 +0 2358 1610 +0 2432 0 +0 2514 0 +0 2605 0 +0 2704 0 +0 2810 0 +0 2921 0 +0 3037 0 +0 3157 0 +0 3279 0 +0 3404 0 +0 3530 0 +0 3658 0 +1521 2037 2404 +1517 2038 2404 +1511 2039 2403 +1503 2040 2402 +1492 2041 2401 +1477 2043 2400 +1457 2046 2398 +1428 2050 2395 +1385 2054 2391 +1322 2061 2386 +1221 2069 2380 +1036 2080 2371 +529 2094 2358 +0 2112 2341 +0 2135 2317 +0 2165 2283 +0 2201 2232 +0 2246 2155 +0 2300 2025 +0 2363 1759 +0 2436 0 +0 2518 0 +0 2608 0 +0 2707 0 +0 2812 0 +0 2923 0 +0 3038 0 +0 3157 0 +0 3280 0 +0 3404 0 +0 3531 0 +0 3659 0 +1883 2050 2444 +1881 2050 2443 +1879 2051 2443 +1875 2052 2442 +1870 2054 2441 +1864 2056 2439 +1855 2058 2437 +1843 2062 2435 +1827 2066 2432 +1804 2073 2427 +1771 2081 2421 +1724 2091 2413 +1651 2105 2401 +1531 2123 2386 +1296 2146 2364 +216 2174 2333 +0 2210 2288 +0 2254 2221 +0 2307 2111 +0 2369 1903 +0 2441 1228 +0 2522 0 +0 2612 0 +0 2709 0 +0 2814 0 +0 2924 0 +0 3039 0 +0 3158 0 +0 3280 0 +0 3405 0 +0 3531 0 +0 3659 0 +2133 2066 2491 +2132 2067 2491 +2131 2067 2490 +2129 2068 2490 +2126 2070 2489 +2122 2072 2487 +2118 2074 2486 +2111 2078 2484 +2102 2082 2481 +2089 2088 2476 +2072 2096 2471 +2048 2106 2464 +2014 2120 2453 +1964 2137 2440 +1887 2159 2420 +1758 2187 2393 +1496 2222 2354 +0 2265 2296 +0 2316 2205 +0 2377 2044 +0 2448 1663 +0 2528 0 +0 2617 0 +0 2713 0 +0 2817 0 +0 2927 0 +0 3041 0 +0 3160 0 +0 3282 0 +0 3406 0 +0 3532 0 +0 3659 0 +2337 2087 2548 +2337 2088 2548 +2336 2088 2547 +2334 2089 2547 +2333 2091 2546 +2330 2093 2545 +2327 2095 2543 +2323 2098 2541 +2317 2103 2539 +2310 2108 2535 +2299 2116 2530 +2285 2126 2524 +2265 2138 2515 +2237 2155 2503 +2196 2176 2486 +2135 2203 2463 +2039 2237 2429 +1866 2278 2381 +1429 2329 2306 +0 2388 2182 +0 2457 1936 +0 2536 450 +0 2623 0 +0 2718 0 +0 2821 0 +0 2930 0 +0 3044 0 +0 3162 0 +0 3283 0 +0 3407 0 +0 3533 0 +0 3660 0 +2517 2114 2614 +2516 2114 2614 +2515 2115 2614 +2515 2116 2613 +2513 2117 2612 +2512 2119 2612 +2510 2121 2610 +2507 2124 2609 +2503 2128 2606 +2498 2134 2603 +2491 2141 2599 +2482 2150 2593 +2469 2162 2586 +2451 2178 2576 +2426 2198 2561 +2391 2224 2542 +2338 2256 2514 +2257 2296 2474 +2119 2344 2414 +1828 2402 2319 +0 2469 2151 +0 2546 1735 +0 2631 0 +0 2725 0 +0 2827 0 +0 2934 0 +0 3047 0 +0 3164 0 +0 3285 0 +0 3408 0 +0 3534 0 +0 3661 0 +2681 2147 2690 +2681 2147 2690 +2680 2148 2690 +2680 2149 2689 +2679 2150 2689 +2678 2152 2688 +2676 2154 2687 +2674 2157 2685 +2672 2161 2683 +2668 2166 2681 +2663 2172 2677 +2657 2181 2673 +2648 2192 2666 +2636 2207 2658 +2620 2226 2646 +2597 2250 2629 +2565 2281 2607 +2517 2319 2574 +2444 2365 2527 +2325 2420 2455 +2090 2485 2336 +1027 2559 2105 +0 2642 1114 +0 2734 0 +0 2834 0 +0 2940 0 +0 3052 0 +0 3168 0 +0 3288 0 +0 3410 0 +0 3535 0 +0 3662 0 +2836 2188 2775 +2836 2189 2775 +2835 2189 2775 +2835 2190 2774 +2834 2191 2774 +2833 2193 2773 +2832 2194 2772 +2831 2197 2771 +2829 2201 2770 +2827 2205 2767 +2823 2211 2765 +2819 2219 2761 +2813 2230 2755 +2805 2243 2748 +2793 2261 2739 +2778 2283 2725 +2756 2312 2707 +2726 2347 2681 +2681 2391 2644 +2614 2443 2590 +2505 2505 2505 +2300 2576 2358 +1648 2656 2036 +0 2746 0 +0 2843 0 +0 2947 0 +0 3057 0 +0 3172 0 +0 3291 0 +0 3413 0 +0 3537 0 +0 3664 0 +2984 2238 2869 +2984 2238 2868 +2984 2239 2868 +2983 2239 2868 +2983 2240 2868 +2983 2242 2867 +2982 2244 2866 +2981 2246 2865 +2979 2249 2864 +2978 2253 2862 +2975 2259 2860 +2972 2266 2857 +2968 2275 2853 +2962 2287 2847 +2954 2303 2839 +2943 2324 2828 +2928 2350 2814 +2907 2383 2794 +2878 2423 2765 +2836 2472 2724 +2772 2530 2662 +2669 2598 2563 +2482 2675 2386 +1962 2761 1922 +0 2855 0 +0 2957 0 +0 3065 0 +0 3178 0 +0 3296 0 +0 3417 0 +0 3540 0 +0 3666 0 +3128 2297 2969 +3128 2297 2969 +3128 2298 2969 +3128 2298 2969 +3127 2299 2969 +3127 2300 2968 +3126 2302 2968 +3126 2304 2967 +3125 2307 2966 +3123 2310 2964 +3122 2315 2962 +3119 2321 2960 +3116 2330 2957 +3112 2341 2952 +3106 2355 2946 +3099 2373 2938 +3088 2397 2926 +3073 2426 2910 +3053 2463 2888 +3025 2508 2857 +2984 2562 2812 +2922 2625 2744 +2825 2698 2632 +2649 2780 2420 +2195 2871 1705 +0 2970 0 +0 3075 0 +0 3186 0 +0 3302 0 +0 3421 0 +0 3544 0 +0 3668 0 +3269 2365 3077 +3269 2366 3077 +3269 2366 3076 +3268 2367 3076 +3268 2367 3076 +3268 2368 3076 +3268 2370 3075 +3267 2371 3075 +3266 2374 3074 +3265 2377 3073 +3264 2381 3071 +3262 2387 3069 +3260 2394 3067 +3257 2403 3063 +3253 2416 3058 +3247 2432 3052 +3240 2453 3043 +3229 2479 3031 +3215 2512 3014 +3195 2552 2990 +3168 2601 2957 +3128 2660 2908 +3068 2728 2834 +2973 2805 2710 +2805 2892 2463 +2389 2986 928 +0 3088 0 +0 3197 0 +0 3310 0 +0 3427 0 +0 3548 0 +0 3672 0 +3407 2443 3189 +3407 2444 3189 +3407 2444 3189 +3407 2444 3189 +3407 2445 3189 +3407 2446 3188 +3406 2447 3188 +3406 2448 3188 +3405 2450 3187 +3405 2453 3186 +3404 2457 3185 +3403 2461 3183 +3401 2467 3181 +3399 2475 3179 +3396 2486 3175 +3392 2500 3170 +3386 2518 3163 +3379 2541 3154 +3368 2570 3141 +3354 2605 3123 +3335 2649 3099 +3308 2702 3064 +3268 2765 3012 +3210 2836 2932 +3117 2918 2797 +2954 3008 2514 +2563 3105 0 +0 3210 0 +0 3320 0 +0 3436 0 +0 3555 0 +0 3677 0 +3544 2530 3306 +3544 2530 3306 +3544 2531 3306 +3544 2531 3306 +3544 2532 3306 +3544 2532 3305 +3543 2533 3305 +3543 2534 3305 +3543 2536 3304 +3542 2538 3304 +3541 2541 3303 +3541 2545 3302 +3539 2550 3300 +3538 2557 3298 +3535 2566 3295 +3532 2578 3291 +3528 2593 3286 +3523 2612 3279 +3516 2637 3269 +3505 2668 3256 +3492 2707 3238 +3472 2754 3212 +3445 2810 3175 +3407 2875 3121 +3349 2950 3037 +3258 3034 2892 +3099 3127 2574 +2724 3227 0 +0 3334 0 +0 3446 0 +0 3563 0 +0 3683 0 +3680 2625 3427 +3680 2626 3426 +3680 2626 3426 +3679 2626 3426 +3679 2626 3426 +3679 2627 3426 +3679 2628 3426 +3679 2629 3426 +3679 2630 3425 +3678 2632 3425 +3678 2634 3424 +3677 2637 3423 +3676 2642 3422 +3675 2647 3420 +3673 2655 3418 +3671 2664 3415 +3668 2677 3411 +3664 2693 3406 +3659 2714 3399 +3651 2740 3389 +3641 2773 3375 +3628 2814 3356 +3609 2863 3330 +3582 2922 3292 +3543 2990 3236 +3486 3068 3147 +3397 3155 2994 +3240 3250 2644 +2877 3352 0 +0 3460 0 +0 3574 0 +0 3691 0 +3814 2728 3550 +3814 2728 3550 +3814 2728 3550 +3814 2728 3550 +3814 2729 3549 +3814 2729 3549 +3814 2730 3549 +3814 2730 3549 +3814 2732 3549 +3813 2733 3548 +3813 2735 3548 +3812 2737 3547 +3812 2741 3546 +3811 2745 3545 +3810 2751 3543 +3808 2759 3541 +3806 2769 3538 +3803 2782 3534 +3799 2800 3528 +3793 2822 3521 +3786 2849 3511 +3776 2884 3497 +3763 2927 3478 +3744 2978 3451 +3717 3039 3412 +3679 3109 3354 +3622 3189 3263 +3534 3278 3102 +3379 3374 2724 +3024 3478 0 +0 3588 0 +0 3702 0 +3948 2836 3675 +3948 2836 3675 +3948 2836 3675 +3948 2837 3675 +3948 2837 3675 +3948 2837 3675 +3948 2838 3675 +3948 2838 3674 +3948 2839 3674 +3948 2840 3674 +3947 2842 3673 +3947 2844 3673 +3946 2847 3672 +3946 2850 3671 +3945 2855 3670 +3944 2861 3668 +3942 2869 3666 +3940 2880 3663 +3937 2894 3659 +3933 2912 3653 +3928 2935 3646 +3920 2964 3636 +3910 3000 3622 +3897 3044 3602 +3878 3097 3574 +3852 3160 3535 +3814 3232 3475 +3757 3313 3382 +3669 3403 3216 +3516 3501 2812 +3167 3606 0 +0 3716 0 +4082 2950 3802 +4082 2950 3802 +4082 2950 3802 +4082 2950 3802 +4082 2950 3802 +4082 2951 3802 +4082 2951 3802 +4082 2952 3801 +4081 2952 3801 +4081 2953 3801 +4081 2954 3801 +4081 2956 3800 +4080 2958 3800 +4080 2961 3799 +4079 2964 3798 +4078 2969 3797 +4077 2976 3795 +4075 2984 3793 +4073 2995 3790 +4070 3010 3786 +4066 3028 3780 +4061 3052 3772 +4054 3082 3762 +4044 3119 3748 +4030 3164 3728 +4012 3219 3700 +3985 3283 3660 +3948 3356 3599 +3892 3439 3504 +3804 3530 3334 +3652 3629 2909 +3307 3735 0 +4095 3068 3930 +4095 3068 3930 +4095 3068 3930 +4095 3068 3930 +4095 3068 3930 +4095 3068 3930 +4095 3069 3930 +4095 3069 3930 +4095 3069 3930 +4095 3070 3929 +4095 3071 3929 +4095 3072 3929 +4095 3074 3929 +4095 3076 3928 +4095 3079 3927 +4095 3083 3926 +4095 3088 3925 +4095 3094 3923 +4095 3103 3921 +4095 3114 3918 +4095 3129 3914 +4095 3148 3908 +4095 3173 3900 +4095 3203 3890 +4095 3241 3875 +4095 3288 3855 +4095 3343 3827 +4095 3408 3786 +4081 3482 3725 +4025 3566 3629 +3938 3658 3455 +3786 3758 3012 +4095 3189 4059 +4095 3189 4059 +4095 3189 4059 +4095 3189 4059 +4095 3189 4059 +4095 3189 4059 +4095 3189 4059 +4095 3190 4059 +4095 3190 4059 +4095 3191 4059 +4095 3191 4059 +4095 3192 4058 +4095 3193 4058 +4095 3195 4058 +4095 3197 4057 +4095 3200 4056 +4095 3204 4055 +4095 3209 4054 +4095 3216 4052 +4095 3225 4050 +4095 3237 4047 +4095 3252 4043 +4095 3271 4037 +4095 3296 4029 +4095 3327 4019 +4095 3366 4004 +4095 3413 3984 +4095 3469 3956 +4095 3535 3914 +4095 3610 3853 +4095 3694 3755 +4071 3787 3579 +0 2129 2398 +0 2130 2397 +0 2131 2396 +0 2132 2396 +0 2133 2394 +0 2135 2393 +0 2137 2391 +0 2140 2388 +0 2144 2384 +0 2149 2379 +0 2156 2373 +0 2165 2363 +0 2176 2351 +0 2192 2333 +0 2211 2309 +0 2236 2274 +0 2268 2222 +0 2307 2143 +0 2354 2009 +0 2410 1731 +0 2476 0 +0 2552 0 +0 2636 0 +0 2729 0 +0 2830 0 +0 2937 0 +0 3049 0 +0 3166 0 +0 3286 0 +0 3409 0 +0 3535 0 +0 3661 0 +0 2130 2398 +0 2130 2398 +0 2131 2397 +0 2132 2396 +0 2133 2395 +0 2135 2394 +0 2137 2392 +0 2140 2389 +0 2144 2385 +0 2149 2380 +0 2156 2373 +0 2165 2364 +0 2177 2352 +0 2192 2334 +0 2212 2310 +0 2237 2275 +0 2268 2223 +0 2307 2144 +0 2354 2011 +0 2411 1734 +0 2476 0 +0 2552 0 +0 2636 0 +0 2729 0 +0 2830 0 +0 2937 0 +0 3049 0 +0 3166 0 +0 3286 0 +0 3409 0 +0 3535 0 +0 3661 0 +0 2130 2399 +0 2130 2399 +0 2131 2398 +0 2132 2397 +0 2133 2396 +0 2135 2395 +0 2137 2393 +0 2140 2390 +0 2144 2386 +0 2149 2381 +0 2156 2374 +0 2165 2365 +0 2177 2353 +0 2192 2335 +0 2212 2311 +0 2237 2276 +0 2268 2225 +0 2307 2146 +0 2354 2013 +0 2411 1738 +0 2477 0 +0 2552 0 +0 2637 0 +0 2730 0 +0 2830 0 +0 2937 0 +0 3049 0 +0 3166 0 +0 3286 0 +0 3409 0 +0 3535 0 +0 3661 0 +0 2130 2400 +0 2131 2400 +0 2131 2399 +0 2132 2399 +0 2134 2397 +0 2135 2396 +0 2138 2394 +0 2140 2391 +0 2144 2387 +0 2150 2382 +0 2156 2376 +0 2165 2367 +0 2177 2354 +0 2192 2337 +0 2212 2312 +0 2237 2278 +0 2268 2227 +0 2307 2148 +0 2354 2016 +0 2411 1743 +0 2477 0 +0 2552 0 +0 2637 0 +0 2730 0 +0 2830 0 +0 2937 0 +0 3049 0 +0 3166 0 +0 3286 0 +0 3409 0 +0 3535 0 +0 3661 0 +0 2131 2402 +0 2131 2402 +0 2132 2401 +0 2133 2400 +0 2134 2399 +0 2136 2398 +0 2138 2396 +0 2141 2393 +0 2145 2389 +0 2150 2384 +0 2157 2377 +0 2166 2368 +0 2177 2356 +0 2193 2339 +0 2212 2314 +0 2237 2280 +0 2269 2229 +0 2307 2151 +0 2355 2020 +0 2411 1750 +0 2477 0 +0 2552 0 +0 2637 0 +0 2730 0 +0 2830 0 +0 2937 0 +0 3049 0 +0 3166 0 +0 3286 0 +0 3409 0 +0 3535 0 +0 3661 0 +0 2131 2404 +0 2132 2404 +0 2132 2403 +0 2133 2402 +0 2135 2401 +0 2136 2400 +0 2139 2398 +0 2141 2395 +0 2145 2391 +0 2151 2387 +0 2157 2380 +0 2166 2371 +0 2178 2358 +0 2193 2341 +0 2213 2317 +0 2238 2283 +0 2269 2232 +0 2308 2155 +0 2355 2025 +0 2411 1760 +0 2477 0 +0 2553 0 +0 2637 0 +0 2730 0 +0 2830 0 +0 2937 0 +0 3049 0 +0 3166 0 +0 3286 0 +0 3409 0 +0 3535 0 +0 3661 0 +0 2132 2407 +0 2133 2407 +0 2133 2406 +0 2134 2405 +0 2135 2404 +0 2137 2403 +0 2139 2401 +0 2142 2398 +0 2146 2395 +0 2151 2390 +0 2158 2383 +0 2167 2374 +0 2179 2362 +0 2194 2345 +0 2213 2321 +0 2238 2287 +0 2270 2237 +0 2308 2160 +0 2356 2032 +0 2412 1772 +0 2478 0 +0 2553 0 +0 2637 0 +0 2730 0 +0 2830 0 +0 2937 0 +0 3050 0 +0 3166 0 +0 3286 0 +0 3409 0 +0 3535 0 +0 3661 0 +0 2133 2411 +0 2134 2411 +0 2134 2410 +0 2135 2409 +0 2136 2408 +0 2138 2407 +0 2140 2405 +0 2143 2402 +0 2147 2399 +0 2152 2394 +0 2159 2387 +0 2168 2378 +0 2180 2366 +0 2195 2349 +0 2214 2325 +0 2239 2292 +0 2270 2242 +0 2309 2167 +0 2356 2041 +0 2412 1788 +0 2478 0 +0 2553 0 +0 2638 0 +0 2730 0 +0 2831 0 +0 2937 0 +0 3050 0 +0 3166 0 +0 3287 0 +0 3410 0 +0 3535 0 +0 3662 0 +0 2134 2417 +0 2135 2416 +0 2136 2416 +0 2136 2415 +0 2138 2414 +0 2139 2412 +0 2142 2410 +0 2144 2408 +0 2148 2404 +0 2154 2399 +0 2160 2393 +0 2169 2384 +0 2181 2372 +0 2196 2355 +0 2215 2332 +0 2240 2299 +0 2271 2250 +0 2310 2176 +0 2357 2053 +0 2413 1808 +0 2479 410 +0 2554 0 +0 2638 0 +0 2731 0 +0 2831 0 +0 2938 0 +0 3050 0 +0 3166 0 +0 3287 0 +0 3410 0 +0 3535 0 +0 3662 0 +0 2136 2424 +0 2137 2423 +0 2137 2422 +0 2138 2422 +0 2140 2421 +0 2141 2419 +0 2143 2417 +0 2146 2415 +0 2150 2411 +0 2155 2406 +0 2162 2400 +0 2171 2391 +0 2182 2379 +0 2198 2363 +0 2217 2340 +0 2242 2308 +0 2273 2260 +0 2311 2187 +0 2358 2068 +0 2414 1834 +0 2479 782 +0 2554 0 +0 2639 0 +0 2731 0 +0 2831 0 +0 2938 0 +0 3050 0 +0 3167 0 +0 3287 0 +0 3410 0 +0 3535 0 +0 3662 0 +0 2139 2433 +0 2139 2432 +0 2140 2432 +0 2141 2431 +0 2142 2430 +0 2144 2428 +0 2146 2426 +0 2149 2424 +0 2152 2420 +0 2158 2416 +0 2164 2410 +0 2173 2401 +0 2185 2389 +0 2200 2373 +0 2219 2351 +0 2244 2319 +0 2274 2273 +0 2313 2203 +0 2360 2088 +0 2415 1866 +0 2481 1036 +0 2555 0 +0 2639 0 +0 2732 0 +0 2832 0 +0 2938 0 +0 3050 0 +0 3167 0 +0 3287 0 +0 3410 0 +0 3535 0 +0 3662 0 +0 2142 2444 +0 2142 2444 +0 2143 2443 +0 2144 2443 +0 2145 2442 +0 2147 2440 +0 2149 2438 +0 2152 2436 +0 2156 2433 +0 2161 2428 +0 2167 2422 +0 2176 2414 +0 2188 2402 +0 2202 2387 +0 2222 2365 +0 2246 2334 +0 2277 2290 +0 2315 2222 +0 2362 2113 +0 2417 1906 +0 2482 1242 +0 2557 0 +0 2640 0 +0 2733 0 +0 2833 0 +0 2939 0 +0 3051 0 +0 3167 0 +0 3287 0 +0 3410 0 +0 3535 0 +0 3662 0 +0 2146 2460 +0 2146 2460 +0 2147 2459 +0 2148 2458 +0 2149 2457 +0 2151 2456 +0 2153 2454 +0 2156 2452 +0 2160 2448 +0 2165 2444 +0 2171 2438 +0 2180 2430 +0 2191 2419 +0 2206 2404 +0 2225 2383 +0 2249 2354 +0 2280 2311 +0 2318 2247 +0 2364 2144 +0 2419 1955 +0 2484 1422 +0 2558 0 +0 2642 0 +0 2734 0 +0 2834 0 +0 2940 0 +0 3051 0 +0 3168 0 +0 3288 0 +0 3410 0 +0 3535 0 +0 3662 0 +0 2152 2480 +0 2152 2479 +0 2153 2479 +0 2154 2478 +0 2155 2477 +0 2156 2476 +0 2159 2474 +0 2161 2472 +0 2165 2469 +0 2170 2465 +0 2177 2459 +0 2185 2451 +0 2196 2441 +0 2211 2427 +0 2230 2407 +0 2254 2379 +0 2284 2339 +0 2322 2278 +0 2368 2183 +0 2422 2013 +0 2487 1587 +0 2561 0 +0 2644 0 +0 2735 0 +0 2835 0 +0 2941 0 +0 3052 0 +0 3168 0 +0 3288 0 +0 3411 0 +0 3536 0 +0 3662 0 +590 2159 2505 +556 2159 2505 +505 2160 2504 +427 2161 2503 +295 2162 2503 +26 2164 2501 +0 2166 2500 +0 2169 2498 +0 2172 2495 +0 2177 2491 +0 2184 2485 +0 2192 2478 +0 2203 2468 +0 2218 2455 +0 2236 2436 +0 2260 2410 +0 2290 2373 +0 2327 2317 +0 2372 2230 +0 2427 2080 +0 2490 1742 +0 2564 0 +0 2646 0 +0 2737 0 +0 2836 0 +0 2942 0 +0 3053 0 +0 3169 0 +0 3289 0 +0 3411 0 +0 3536 0 +0 3662 0 +1656 2169 2537 +1653 2169 2536 +1649 2170 2536 +1643 2171 2535 +1635 2172 2534 +1624 2173 2533 +1610 2175 2532 +1589 2178 2530 +1560 2182 2527 +1518 2186 2523 +1454 2193 2518 +1353 2201 2512 +1168 2212 2503 +661 2226 2490 +0 2244 2473 +0 2268 2449 +0 2297 2415 +0 2334 2364 +0 2378 2287 +0 2432 2157 +0 2495 1891 +0 2568 0 +0 2650 0 +0 2740 0 +0 2839 0 +0 2944 0 +0 3055 0 +0 3170 0 +0 3289 0 +0 3412 0 +0 3536 0 +0 3663 0 +2017 2181 2576 +2015 2182 2576 +2013 2182 2575 +2011 2183 2575 +2007 2184 2574 +2002 2186 2573 +1996 2188 2571 +1987 2190 2570 +1975 2194 2567 +1959 2199 2564 +1936 2205 2559 +1903 2213 2553 +1856 2223 2545 +1783 2237 2533 +1663 2255 2518 +1428 2278 2496 +348 2307 2465 +0 2342 2420 +0 2386 2353 +0 2439 2243 +0 2501 2035 +0 2573 1360 +0 2654 0 +0 2744 0 +0 2842 0 +0 2946 0 +0 3056 0 +0 3172 0 +0 3291 0 +0 3413 0 +0 3537 0 +0 3663 0 +2266 2198 2624 +2266 2198 2623 +2264 2199 2623 +2263 2200 2622 +2261 2201 2622 +2258 2202 2621 +2255 2204 2620 +2250 2206 2618 +2243 2210 2616 +2234 2214 2613 +2222 2220 2609 +2204 2228 2603 +2180 2238 2596 +2146 2252 2586 +2096 2269 2572 +2019 2291 2552 +1890 2319 2525 +1628 2354 2486 +0 2397 2428 +0 2448 2337 +0 2509 2176 +0 2580 1795 +0 2660 0 +0 2749 0 +0 2845 0 +0 2949 0 +0 3059 0 +0 3173 0 +0 3292 0 +0 3414 0 +0 3538 0 +0 3664 0 +2470 2219 2680 +2469 2219 2680 +2469 2220 2680 +2468 2220 2679 +2466 2221 2679 +2465 2223 2678 +2462 2225 2677 +2459 2227 2675 +2455 2230 2673 +2450 2235 2671 +2442 2240 2667 +2431 2248 2662 +2417 2258 2656 +2397 2270 2647 +2369 2287 2635 +2328 2308 2618 +2267 2335 2595 +2171 2369 2561 +1998 2410 2513 +1561 2461 2438 +0 2520 2315 +0 2589 2068 +0 2668 582 +0 2755 0 +0 2851 0 +0 2953 0 +0 3062 0 +0 3176 0 +0 3294 0 +0 3415 0 +0 3539 0 +0 3665 0 +2649 2245 2747 +2649 2246 2746 +2648 2246 2746 +2648 2247 2746 +2647 2248 2745 +2646 2249 2745 +2644 2251 2744 +2642 2253 2742 +2639 2256 2741 +2635 2260 2738 +2630 2266 2735 +2623 2273 2731 +2614 2282 2726 +2601 2294 2718 +2583 2310 2708 +2558 2330 2693 +2523 2356 2674 +2470 2388 2646 +2389 2428 2606 +2251 2476 2546 +1960 2534 2451 +0 2601 2283 +0 2678 1867 +0 2763 0 +0 2857 0 +0 2959 0 +0 3066 0 +0 3179 0 +0 3296 0 +0 3417 0 +0 3540 0 +0 3666 0 +2813 2279 2823 +2813 2279 2822 +2813 2280 2822 +2812 2280 2822 +2812 2281 2821 +2811 2282 2821 +2810 2284 2820 +2808 2286 2819 +2806 2289 2817 +2804 2293 2816 +2800 2298 2813 +2796 2304 2809 +2789 2313 2805 +2780 2324 2798 +2769 2339 2790 +2752 2358 2778 +2729 2382 2762 +2697 2413 2739 +2649 2451 2706 +2576 2497 2659 +2457 2552 2587 +2222 2617 2468 +1159 2691 2237 +0 2774 1246 +0 2866 0 +0 2966 0 +0 3072 0 +0 3184 0 +0 3300 0 +0 3420 0 +0 3542 0 +0 3667 0 +2968 2320 2907 +2968 2320 2907 +2968 2321 2907 +2967 2321 2907 +2967 2322 2906 +2966 2323 2906 +2966 2325 2905 +2965 2327 2904 +2963 2329 2903 +2961 2333 2902 +2959 2337 2900 +2956 2343 2897 +2951 2351 2893 +2945 2362 2888 +2937 2375 2880 +2925 2393 2871 +2910 2415 2857 +2888 2444 2839 +2858 2479 2813 +2813 2523 2776 +2746 2575 2722 +2637 2637 2637 +2432 2708 2490 +1780 2789 2168 +0 2878 0 +0 2975 0 +0 3079 0 +0 3190 0 +0 3304 0 +0 3423 0 +0 3545 0 +0 3669 0 +3116 2370 3001 +3116 2370 3001 +3116 2370 3001 +3116 2371 3000 +3116 2372 3000 +3115 2373 3000 +3115 2374 2999 +3114 2376 2998 +3113 2378 2997 +3112 2381 2996 +3110 2385 2994 +3107 2391 2992 +3104 2398 2989 +3100 2407 2985 +3094 2420 2979 +3086 2436 2971 +3075 2456 2961 +3060 2482 2946 +3039 2515 2926 +3010 2555 2897 +2968 2604 2856 +2904 2662 2794 +2802 2730 2696 +2614 2807 2518 +2094 2893 2054 +0 2987 0 +0 3089 0 +0 3197 0 +0 3310 0 +0 3428 0 +0 3549 0 +0 3672 0 +3260 2429 3102 +3260 2429 3102 +3260 2429 3101 +3260 2430 3101 +3260 2430 3101 +3259 2431 3101 +3259 2432 3100 +3258 2434 3100 +3258 2436 3099 +3257 2439 3098 +3255 2442 3096 +3254 2447 3095 +3251 2453 3092 +3248 2462 3089 +3244 2473 3084 +3238 2487 3078 +3231 2505 3070 +3220 2529 3058 +3206 2558 3042 +3185 2595 3021 +3157 2640 2989 +3116 2694 2944 +3054 2757 2876 +2957 2830 2764 +2781 2913 2552 +2327 3003 1837 +0 3102 0 +0 3207 0 +0 3318 0 +0 3434 0 +0 3553 0 +0 3676 0 +3401 2497 3209 +3401 2497 3209 +3401 2498 3209 +3401 2498 3208 +3401 2499 3208 +3400 2499 3208 +3400 2500 3208 +3400 2502 3207 +3399 2503 3207 +3398 2506 3206 +3397 2509 3205 +3396 2513 3203 +3394 2519 3201 +3392 2526 3199 +3389 2535 3195 +3385 2548 3190 +3379 2564 3184 +3372 2585 3175 +3361 2611 3163 +3347 2644 3146 +3328 2684 3123 +3300 2734 3089 +3260 2792 3040 +3200 2860 2966 +3105 2937 2842 +2937 3024 2595 +2521 3118 1060 +0 3220 0 +0 3329 0 +0 3442 0 +0 3560 0 +0 3680 0 +3539 2575 3321 +3539 2575 3321 +3539 2576 3321 +3539 2576 3321 +3539 2576 3321 +3539 2577 3321 +3539 2578 3320 +3538 2579 3320 +3538 2581 3320 +3537 2582 3319 +3537 2585 3318 +3536 2589 3317 +3535 2593 3315 +3533 2599 3313 +3531 2608 3311 +3528 2618 3307 +3524 2632 3302 +3518 2650 3295 +3511 2673 3286 +3500 2702 3273 +3486 2738 3255 +3467 2782 3231 +3440 2834 3196 +3400 2897 3144 +3342 2969 3064 +3249 3050 2929 +3086 3140 2646 +2695 3237 0 +0 3342 0 +0 3452 0 +0 3568 0 +0 3687 0 +3676 2662 3438 +3676 2662 3438 +3676 2663 3438 +3676 2663 3438 +3676 2663 3438 +3676 2664 3438 +3676 2664 3438 +3675 2665 3437 +3675 2667 3437 +3675 2668 3436 +3674 2670 3436 +3674 2673 3435 +3673 2677 3434 +3671 2682 3432 +3670 2689 3430 +3668 2698 3427 +3665 2710 3423 +3661 2725 3418 +3655 2744 3411 +3648 2769 3401 +3638 2800 3388 +3624 2839 3370 +3605 2886 3344 +3578 2942 3308 +3539 3007 3253 +3481 3082 3169 +3390 3167 3024 +3231 3259 2706 +2856 3359 0 +0 3466 0 +0 3578 0 +0 3695 0 +3812 2757 3559 +3812 2757 3559 +3812 2758 3559 +3812 2758 3558 +3812 2758 3558 +3811 2759 3558 +3811 2759 3558 +3811 2760 3558 +3811 2761 3558 +3811 2762 3557 +3810 2764 3557 +3810 2766 3556 +3809 2770 3555 +3808 2774 3554 +3807 2779 3552 +3805 2787 3550 +3803 2796 3547 +3800 2809 3543 +3796 2825 3538 +3791 2846 3531 +3783 2872 3521 +3773 2905 3507 +3760 2946 3488 +3741 2996 3462 +3714 3054 3424 +3675 3122 3368 +3618 3200 3279 +3529 3287 3126 +3372 3382 2777 +3009 3484 0 +0 3592 0 +0 3706 0 +3946 2860 3682 +3946 2860 3682 +3946 2860 3682 +3946 2860 3682 +3946 2860 3682 +3946 2861 3682 +3946 2861 3681 +3946 2862 3681 +3946 2863 3681 +3946 2864 3681 +3945 2865 3680 +3945 2867 3680 +3944 2869 3679 +3944 2873 3678 +3943 2877 3677 +3942 2883 3675 +3940 2891 3673 +3938 2901 3670 +3935 2914 3666 +3931 2932 3661 +3926 2954 3653 +3918 2981 3643 +3908 3016 3629 +3895 3059 3610 +3876 3110 3583 +3849 3171 3544 +3811 3242 3486 +3754 3321 3395 +3666 3410 3235 +3511 3507 2856 +3156 3610 0 +0 3720 0 +4080 2968 3807 +4080 2968 3807 +4080 2968 3807 +4080 2969 3807 +4080 2969 3807 +4080 2969 3807 +4080 2969 3807 +4080 2970 3807 +4080 2970 3806 +4080 2971 3806 +4080 2972 3806 +4079 2974 3806 +4079 2976 3805 +4078 2979 3804 +4078 2982 3803 +4077 2987 3802 +4076 2993 3800 +4074 3001 3798 +4072 3012 3795 +4069 3026 3791 +4065 3044 3786 +4060 3067 3778 +4052 3096 3768 +4042 3132 3754 +4029 3176 3734 +4010 3229 3706 +3984 3292 3667 +3946 3364 3608 +3889 3445 3514 +3801 3535 3348 +3648 3633 2944 +3299 3738 0 +4095 3082 3934 +4095 3082 3934 +4095 3082 3934 +4095 3082 3934 +4095 3082 3934 +4095 3082 3934 +4095 3083 3934 +4095 3083 3934 +4095 3084 3934 +4095 3084 3933 +4095 3085 3933 +4095 3086 3933 +4095 3088 3932 +4095 3090 3932 +4095 3093 3931 +4095 3096 3930 +4095 3101 3929 +4095 3108 3927 +4095 3116 3925 +4095 3127 3922 +4095 3142 3918 +4095 3160 3912 +4095 3184 3905 +4095 3214 3894 +4095 3251 3880 +4095 3297 3860 +4095 3351 3832 +4095 3415 3792 +4080 3488 3732 +4024 3571 3636 +3936 3662 3466 +3784 3761 3041 +4095 3200 4062 +4095 3200 4062 +4095 3200 4062 +4095 3200 4062 +4095 3200 4062 +4095 3200 4062 +4095 3200 4062 +4095 3201 4062 +4095 3201 4062 +4095 3202 4062 +4095 3202 4062 +4095 3203 4061 +4095 3204 4061 +4095 3206 4061 +4095 3208 4060 +4095 3211 4059 +4095 3215 4058 +4095 3220 4057 +4095 3226 4055 +4095 3235 4053 +4095 3247 4050 +4095 3261 4046 +4095 3280 4040 +4095 3305 4032 +4095 3335 4022 +4095 3374 4008 +4095 3420 3988 +4095 3475 3959 +4095 3540 3918 +4095 3614 3858 +4095 3698 3761 +4070 3790 3587 +0 2261 2529 +0 2261 2529 +0 2262 2529 +0 2263 2528 +0 2264 2527 +0 2265 2526 +0 2267 2524 +0 2269 2522 +0 2272 2520 +0 2276 2516 +0 2281 2511 +0 2288 2504 +0 2297 2495 +0 2308 2482 +0 2324 2465 +0 2343 2440 +0 2368 2405 +0 2400 2354 +0 2439 2274 +0 2486 2140 +0 2542 1860 +0 2608 0 +0 2684 0 +0 2768 0 +0 2861 0 +0 2962 0 +0 3069 0 +0 3181 0 +0 3298 0 +0 3418 0 +0 3541 0 +0 3667 0 +0 2261 2530 +0 2262 2530 +0 2262 2529 +0 2263 2529 +0 2264 2528 +0 2265 2527 +0 2267 2525 +0 2269 2523 +0 2272 2520 +0 2276 2517 +0 2281 2512 +0 2288 2505 +0 2297 2495 +0 2309 2483 +0 2324 2465 +0 2343 2441 +0 2368 2406 +0 2400 2354 +0 2439 2275 +0 2486 2141 +0 2543 1863 +0 2608 0 +0 2684 0 +0 2769 0 +0 2862 0 +0 2962 0 +0 3069 0 +0 3181 0 +0 3298 0 +0 3418 0 +0 3541 0 +0 3667 0 +0 2261 2531 +0 2262 2530 +0 2262 2530 +0 2263 2529 +0 2264 2528 +0 2265 2527 +0 2267 2526 +0 2269 2524 +0 2272 2521 +0 2276 2517 +0 2281 2512 +0 2288 2505 +0 2297 2496 +0 2309 2484 +0 2324 2466 +0 2344 2442 +0 2369 2407 +0 2400 2355 +0 2439 2276 +0 2486 2143 +0 2543 1866 +0 2609 0 +0 2684 0 +0 2769 0 +0 2862 0 +0 2962 0 +0 3069 0 +0 3181 0 +0 3298 0 +0 3418 0 +0 3541 0 +0 3667 0 +0 2262 2532 +0 2262 2531 +0 2263 2531 +0 2263 2530 +0 2264 2529 +0 2265 2528 +0 2267 2527 +0 2269 2525 +0 2272 2522 +0 2276 2518 +0 2281 2513 +0 2288 2506 +0 2297 2497 +0 2309 2485 +0 2324 2467 +0 2344 2443 +0 2369 2408 +0 2400 2357 +0 2439 2278 +0 2486 2145 +0 2543 1870 +0 2609 0 +0 2684 0 +0 2769 0 +0 2862 0 +0 2962 0 +0 3069 0 +0 3181 0 +0 3298 0 +0 3418 0 +0 3541 0 +0 3667 0 +0 2262 2533 +0 2262 2533 +0 2263 2532 +0 2264 2531 +0 2264 2531 +0 2266 2529 +0 2267 2528 +0 2270 2526 +0 2273 2523 +0 2276 2520 +0 2282 2515 +0 2288 2508 +0 2297 2499 +0 2309 2486 +0 2324 2469 +0 2344 2444 +0 2369 2410 +0 2400 2359 +0 2439 2280 +0 2487 2148 +0 2543 1875 +0 2609 0 +0 2684 0 +0 2769 0 +0 2862 0 +0 2962 0 +0 3069 0 +0 3181 0 +0 3298 0 +0 3418 0 +0 3541 0 +0 3667 0 +0 2262 2535 +0 2263 2534 +0 2263 2534 +0 2264 2533 +0 2265 2532 +0 2266 2531 +0 2268 2530 +0 2270 2528 +0 2273 2525 +0 2277 2521 +0 2282 2516 +0 2289 2510 +0 2298 2500 +0 2310 2488 +0 2325 2471 +0 2344 2446 +0 2369 2412 +0 2401 2361 +0 2440 2283 +0 2487 2152 +0 2543 1882 +0 2609 0 +0 2684 0 +0 2769 0 +0 2862 0 +0 2962 0 +0 3069 0 +0 3181 0 +0 3298 0 +0 3418 0 +0 3541 0 +0 3667 0 +0 2263 2537 +0 2263 2537 +0 2264 2536 +0 2265 2535 +0 2265 2535 +0 2267 2533 +0 2268 2532 +0 2271 2530 +0 2274 2527 +0 2277 2524 +0 2283 2519 +0 2289 2512 +0 2298 2503 +0 2310 2490 +0 2325 2473 +0 2345 2449 +0 2370 2415 +0 2401 2364 +0 2440 2287 +0 2487 2157 +0 2543 1892 +0 2609 0 +0 2685 0 +0 2769 0 +0 2862 0 +0 2962 0 +0 3069 0 +0 3182 0 +0 3298 0 +0 3418 0 +0 3542 0 +0 3667 0 +0 2264 2540 +0 2264 2539 +0 2265 2539 +0 2265 2538 +0 2266 2538 +0 2267 2536 +0 2269 2535 +0 2271 2533 +0 2274 2530 +0 2278 2527 +0 2283 2522 +0 2290 2515 +0 2299 2506 +0 2311 2494 +0 2326 2477 +0 2346 2453 +0 2370 2419 +0 2402 2369 +0 2440 2292 +0 2488 2164 +0 2544 1904 +0 2610 0 +0 2685 0 +0 2769 0 +0 2862 0 +0 2963 0 +0 3069 0 +0 3182 0 +0 3298 0 +0 3419 0 +0 3542 0 +0 3667 0 +0 2265 2544 +0 2265 2543 +0 2266 2543 +0 2266 2542 +0 2267 2542 +0 2268 2540 +0 2270 2539 +0 2272 2537 +0 2275 2534 +0 2279 2531 +0 2284 2526 +0 2291 2519 +0 2300 2510 +0 2312 2498 +0 2327 2481 +0 2346 2458 +0 2371 2424 +0 2402 2375 +0 2441 2299 +0 2488 2173 +0 2544 1920 +0 2610 0 +0 2685 0 +0 2770 0 +0 2862 0 +0 2963 0 +0 3070 0 +0 3182 0 +0 3298 0 +0 3419 0 +0 3542 0 +0 3667 0 +0 2266 2549 +0 2266 2549 +0 2267 2548 +0 2268 2548 +0 2269 2547 +0 2270 2546 +0 2271 2544 +0 2274 2542 +0 2277 2540 +0 2280 2536 +0 2286 2531 +0 2292 2525 +0 2301 2516 +0 2313 2504 +0 2328 2487 +0 2348 2464 +0 2372 2431 +0 2403 2382 +0 2442 2308 +0 2489 2185 +0 2545 1940 +0 2611 542 +0 2686 0 +0 2770 0 +0 2863 0 +0 2963 0 +0 3070 0 +0 3182 0 +0 3299 0 +0 3419 0 +0 3542 0 +0 3667 0 +0 2268 2556 +0 2268 2556 +0 2269 2555 +0 2269 2555 +0 2270 2554 +0 2272 2553 +0 2273 2551 +0 2275 2549 +0 2278 2547 +0 2282 2543 +0 2287 2538 +0 2294 2532 +0 2303 2523 +0 2315 2512 +0 2330 2495 +0 2349 2472 +0 2374 2440 +0 2405 2392 +0 2443 2320 +0 2490 2200 +0 2546 1966 +0 2612 914 +0 2687 0 +0 2771 0 +0 2863 0 +0 2963 0 +0 3070 0 +0 3182 0 +0 3299 0 +0 3419 0 +0 3542 0 +0 3667 0 +0 2270 2565 +0 2271 2565 +0 2271 2564 +0 2272 2564 +0 2273 2563 +0 2274 2562 +0 2276 2560 +0 2278 2559 +0 2281 2556 +0 2285 2553 +0 2290 2548 +0 2296 2542 +0 2305 2533 +0 2317 2522 +0 2332 2505 +0 2351 2483 +0 2376 2451 +0 2407 2405 +0 2445 2335 +0 2492 2220 +0 2547 1998 +0 2613 1168 +0 2688 0 +0 2772 0 +0 2864 0 +0 2964 0 +0 3071 0 +0 3183 0 +0 3299 0 +0 3419 0 +0 3542 0 +0 3667 0 +0 2273 2577 +0 2274 2577 +0 2274 2576 +0 2275 2576 +0 2276 2575 +0 2277 2574 +0 2279 2572 +0 2281 2571 +0 2284 2568 +0 2288 2565 +0 2293 2560 +0 2299 2554 +0 2308 2546 +0 2320 2535 +0 2335 2519 +0 2354 2497 +0 2378 2467 +0 2409 2422 +0 2447 2354 +0 2494 2245 +0 2549 2038 +0 2614 1374 +0 2689 0 +0 2773 0 +0 2865 0 +0 2965 0 +0 3071 0 +0 3183 0 +0 3299 0 +0 3419 0 +0 3542 0 +0 3667 0 +0 2278 2592 +0 2278 2592 +0 2279 2592 +0 2279 2591 +0 2280 2590 +0 2281 2589 +0 2283 2588 +0 2285 2586 +0 2288 2584 +0 2292 2581 +0 2297 2576 +0 2303 2570 +0 2312 2562 +0 2323 2551 +0 2338 2536 +0 2357 2516 +0 2382 2486 +0 2412 2443 +0 2450 2379 +0 2496 2276 +0 2551 2087 +0 2616 1554 +0 2690 0 +0 2774 0 +0 2866 0 +0 2966 0 +0 3072 0 +0 3184 0 +0 3300 0 +0 3420 0 +0 3542 0 +0 3667 0 +0 2283 2612 +0 2284 2612 +0 2284 2611 +0 2285 2611 +0 2286 2610 +0 2287 2609 +0 2289 2608 +0 2291 2606 +0 2293 2604 +0 2297 2601 +0 2302 2597 +0 2309 2591 +0 2317 2584 +0 2329 2573 +0 2343 2559 +0 2362 2539 +0 2386 2511 +0 2416 2471 +0 2454 2410 +0 2500 2315 +0 2555 2145 +0 2619 1719 +0 2693 0 +0 2776 0 +0 2868 0 +0 2967 0 +0 3073 0 +0 3184 0 +0 3300 0 +0 3420 0 +0 3543 0 +0 3668 0 +746 2291 2637 +722 2291 2637 +688 2292 2637 +637 2292 2636 +559 2293 2636 +428 2294 2635 +158 2296 2633 +0 2298 2632 +0 2301 2630 +0 2304 2627 +0 2309 2623 +0 2316 2618 +0 2324 2610 +0 2335 2601 +0 2350 2587 +0 2368 2568 +0 2392 2542 +0 2422 2505 +0 2459 2449 +0 2504 2362 +0 2559 2212 +0 2622 1874 +0 2696 0 +0 2778 0 +0 2870 0 +0 2969 0 +0 3074 0 +0 3185 0 +0 3301 0 +0 3421 0 +0 3543 0 +0 3668 0 +1791 2300 2669 +1789 2301 2669 +1785 2301 2668 +1781 2302 2668 +1775 2303 2667 +1767 2304 2667 +1757 2305 2665 +1742 2307 2664 +1721 2310 2662 +1692 2314 2659 +1650 2319 2656 +1586 2325 2651 +1485 2333 2644 +1300 2344 2635 +793 2358 2622 +0 2376 2605 +0 2400 2581 +0 2429 2547 +0 2466 2496 +0 2510 2419 +0 2564 2289 +0 2627 2023 +0 2700 0 +0 2782 0 +0 2872 0 +0 2971 0 +0 3076 0 +0 3187 0 +0 3302 0 +0 3422 0 +0 3544 0 +0 3668 0 +2150 2313 2708 +2149 2313 2708 +2147 2314 2708 +2145 2314 2707 +2143 2315 2707 +2139 2316 2706 +2135 2318 2705 +2128 2320 2704 +2119 2323 2702 +2108 2326 2699 +2091 2331 2696 +2068 2337 2691 +2036 2345 2685 +1988 2356 2677 +1915 2369 2666 +1795 2387 2650 +1560 2410 2628 +480 2439 2597 +0 2474 2553 +0 2518 2485 +0 2571 2375 +0 2633 2167 +0 2705 1492 +0 2786 0 +0 2876 0 +0 2974 0 +0 3078 0 +0 3189 0 +0 3304 0 +0 3423 0 +0 3545 0 +0 3669 0 +2399 2329 2756 +2398 2330 2756 +2398 2330 2755 +2396 2331 2755 +2395 2332 2754 +2393 2333 2754 +2390 2334 2753 +2387 2336 2752 +2382 2339 2750 +2375 2342 2748 +2366 2346 2745 +2354 2352 2741 +2337 2360 2735 +2313 2370 2728 +2278 2384 2718 +2228 2401 2704 +2151 2423 2684 +2023 2451 2657 +1760 2486 2618 +0 2529 2560 +0 2581 2469 +0 2642 2308 +0 2712 1927 +0 2792 0 +0 2881 0 +0 2978 0 +0 3081 0 +0 3191 0 +0 3306 0 +0 3424 0 +0 3546 0 +0 3670 0 +2602 2350 2813 +2602 2351 2812 +2602 2351 2812 +2601 2352 2812 +2600 2353 2811 +2599 2354 2811 +2597 2355 2810 +2595 2357 2809 +2591 2359 2807 +2587 2362 2805 +2582 2367 2803 +2574 2372 2799 +2563 2380 2794 +2549 2390 2788 +2529 2402 2779 +2501 2419 2767 +2460 2440 2750 +2400 2467 2727 +2303 2501 2694 +2131 2543 2645 +1693 2593 2570 +0 2652 2447 +0 2721 2200 +0 2800 714 +0 2887 0 +0 2983 0 +0 3085 0 +0 3194 0 +0 3308 0 +0 3426 0 +0 3547 0 +0 3671 0 +2781 2377 2879 +2781 2377 2879 +2781 2378 2879 +2780 2378 2878 +2780 2379 2878 +2779 2380 2877 +2778 2381 2877 +2776 2383 2876 +2774 2385 2874 +2771 2388 2873 +2767 2392 2870 +2762 2398 2867 +2755 2405 2863 +2746 2414 2858 +2733 2426 2850 +2715 2442 2840 +2691 2462 2826 +2655 2488 2806 +2602 2520 2778 +2521 2560 2738 +2384 2609 2678 +2092 2666 2584 +0 2733 2415 +0 2810 1999 +0 2895 0 +0 2989 0 +0 3091 0 +0 3198 0 +0 3311 0 +0 3429 0 +0 3549 0 +0 3673 0 +2946 2411 2955 +2945 2411 2955 +2945 2411 2954 +2945 2412 2954 +2944 2412 2954 +2944 2413 2953 +2943 2414 2953 +2942 2416 2952 +2940 2418 2951 +2939 2421 2950 +2936 2425 2948 +2932 2430 2945 +2928 2436 2942 +2921 2445 2937 +2913 2456 2930 +2901 2471 2922 +2884 2490 2910 +2861 2514 2894 +2829 2545 2871 +2781 2583 2838 +2709 2629 2791 +2589 2684 2719 +2354 2749 2601 +1291 2823 2369 +0 2906 1378 +0 2998 0 +0 3098 0 +0 3204 0 +0 3316 0 +0 3432 0 +0 3552 0 +0 3675 0 +3100 2452 3040 +3100 2452 3040 +3100 2452 3039 +3100 2453 3039 +3099 2453 3039 +3099 2454 3039 +3098 2455 3038 +3098 2457 3037 +3097 2459 3037 +3095 2461 3035 +3093 2465 3034 +3091 2469 3032 +3088 2475 3029 +3083 2483 3025 +3077 2494 3020 +3069 2507 3013 +3058 2525 3003 +3042 2547 2990 +3020 2576 2971 +2990 2611 2945 +2945 2655 2909 +2878 2707 2854 +2769 2769 2769 +2564 2840 2622 +1912 2921 2300 +0 3010 0 +0 3107 0 +0 3212 0 +0 3322 0 +0 3437 0 +0 3555 0 +0 3677 0 +3249 2501 3133 +3248 2502 3133 +3248 2502 3133 +3248 2502 3133 +3248 2503 3132 +3248 2504 3132 +3247 2505 3132 +3247 2506 3131 +3246 2508 3130 +3245 2510 3129 +3244 2513 3128 +3242 2517 3126 +3239 2523 3124 +3236 2530 3121 +3232 2539 3117 +3226 2552 3111 +3218 2568 3103 +3207 2588 3093 +3192 2614 3078 +3172 2647 3058 +3142 2687 3029 +3100 2736 2988 +3036 2794 2926 +2934 2862 2828 +2746 2939 2650 +2226 3025 2186 +0 3120 0 +0 3221 0 +0 3329 0 +0 3443 0 +0 3560 0 +0 3681 0 +3392 2560 3234 +3392 2561 3234 +3392 2561 3234 +3392 2561 3233 +3392 2562 3233 +3392 2562 3233 +3391 2563 3233 +3391 2564 3232 +3391 2566 3232 +3390 2568 3231 +3389 2571 3230 +3388 2574 3229 +3386 2579 3227 +3383 2586 3224 +3380 2594 3221 +3376 2605 3216 +3370 2619 3210 +3363 2637 3202 +3352 2661 3190 +3338 2691 3175 +3317 2727 3153 +3289 2772 3121 +3248 2826 3076 +3187 2890 3008 +3089 2962 2896 +2913 3045 2685 +2459 3135 1969 +0 3234 0 +0 3339 0 +0 3450 0 +0 3566 0 +0 3685 0 +3533 2629 3341 +3533 2629 3341 +3533 2629 3341 +3533 2630 3341 +3533 2630 3341 +3533 2631 3340 +3532 2631 3340 +3532 2632 3340 +3532 2634 3339 +3531 2636 3339 +3530 2638 3338 +3530 2641 3337 +3528 2645 3335 +3527 2651 3333 +3524 2658 3331 +3521 2668 3327 +3517 2680 3322 +3512 2696 3316 +3504 2717 3307 +3494 2743 3295 +3479 2776 3278 +3460 2817 3255 +3432 2866 3221 +3392 2924 3173 +3332 2992 3098 +3237 3069 2974 +3069 3156 2727 +2654 3251 1192 +0 3353 0 +0 3461 0 +0 3574 0 +0 3692 0 +3672 2707 3453 +3672 2707 3453 +3671 2707 3453 +3671 2708 3453 +3671 2708 3453 +3671 2709 3453 +3671 2709 3453 +3671 2710 3453 +3671 2711 3452 +3670 2713 3452 +3670 2715 3451 +3669 2717 3450 +3668 2721 3449 +3667 2725 3448 +3665 2732 3446 +3663 2740 3443 +3660 2750 3439 +3656 2764 3434 +3650 2782 3427 +3643 2805 3418 +3633 2834 3405 +3619 2870 3388 +3599 2914 3363 +3572 2967 3328 +3532 3029 3276 +3474 3101 3196 +3382 3182 3061 +3218 3272 2778 +2827 3370 0 +0 3474 0 +0 3585 0 +0 3700 0 +3808 2794 3570 +3808 2794 3570 +3808 2794 3570 +3808 2795 3570 +3808 2795 3570 +3808 2795 3570 +3808 2796 3570 +3808 2796 3570 +3808 2797 3569 +3807 2799 3569 +3807 2800 3569 +3806 2803 3568 +3806 2805 3567 +3805 2809 3566 +3804 2814 3564 +3802 2821 3562 +3800 2830 3559 +3797 2842 3555 +3793 2857 3550 +3787 2876 3543 +3780 2901 3533 +3770 2932 3520 +3756 2971 3502 +3737 3018 3476 +3710 3074 3440 +3671 3139 3385 +3613 3214 3301 +3522 3299 3156 +3363 3391 2839 +2989 3492 0 +0 3598 0 +0 3710 0 +3944 2889 3691 +3944 2889 3691 +3944 2890 3691 +3944 2890 3691 +3944 2890 3691 +3944 2890 3691 +3944 2891 3690 +3943 2891 3690 +3943 2892 3690 +3943 2893 3690 +3943 2894 3689 +3942 2896 3689 +3942 2898 3688 +3941 2902 3687 +3940 2906 3686 +3939 2911 3684 +3937 2919 3682 +3935 2928 3679 +3932 2941 3675 +3928 2957 3670 +3923 2978 3663 +3916 3004 3653 +3906 3037 3639 +3892 3078 3620 +3873 3128 3594 +3846 3186 3556 +3808 3255 3500 +3750 3332 3412 +3661 3419 3258 +3504 3514 2909 +3141 3616 0 +0 3724 0 +4079 2992 3814 +4079 2992 3814 +4078 2992 3814 +4078 2992 3814 +4078 2992 3814 +4078 2992 3814 +4078 2993 3814 +4078 2993 3813 +4078 2994 3813 +4078 2995 3813 +4078 2996 3813 +4077 2997 3812 +4077 2999 3812 +4077 3002 3811 +4076 3005 3810 +4075 3009 3809 +4074 3015 3807 +4072 3023 3805 +4070 3033 3802 +4067 3047 3798 +4063 3064 3793 +4058 3086 3785 +4050 3114 3775 +4040 3148 3761 +4027 3191 3742 +4008 3242 3715 +3981 3303 3676 +3943 3374 3618 +3886 3453 3527 +3798 3542 3367 +3643 3639 2988 +3288 3742 0 +4095 3100 3939 +4095 3100 3939 +4095 3100 3939 +4095 3101 3939 +4095 3101 3939 +4095 3101 3939 +4095 3101 3939 +4095 3101 3939 +4095 3102 3939 +4095 3103 3939 +4095 3103 3938 +4095 3105 3938 +4095 3106 3938 +4095 3108 3937 +4095 3111 3936 +4095 3114 3936 +4095 3119 3934 +4095 3125 3933 +4095 3133 3930 +4095 3144 3927 +4095 3158 3923 +4095 3176 3918 +4095 3199 3910 +4095 3228 3900 +4095 3264 3886 +4095 3308 3866 +4095 3361 3839 +4095 3424 3799 +4078 3496 3740 +4021 3577 3646 +3933 3667 3480 +3780 3765 3076 +4095 3214 4066 +4095 3214 4066 +4095 3214 4066 +4095 3214 4066 +4095 3214 4066 +4095 3214 4066 +4095 3215 4066 +4095 3215 4066 +4095 3215 4066 +4095 3216 4066 +4095 3216 4066 +4095 3217 4065 +4095 3218 4065 +4095 3220 4065 +4095 3222 4064 +4095 3225 4063 +4095 3229 4062 +4095 3233 4061 +4095 3240 4059 +4095 3248 4057 +4095 3259 4054 +4095 3274 4050 +4095 3292 4044 +4095 3316 4037 +4095 3346 4026 +4095 3383 4012 +4095 3429 3992 +4095 3483 3964 +4095 3547 3924 +4095 3620 3864 +4095 3703 3768 +4068 3794 3598 +0 2393 2661 +0 2393 2661 +0 2393 2661 +0 2394 2660 +0 2395 2660 +0 2396 2659 +0 2397 2658 +0 2399 2656 +0 2401 2654 +0 2404 2651 +0 2408 2648 +0 2413 2643 +0 2420 2636 +0 2429 2627 +0 2440 2614 +0 2456 2596 +0 2475 2572 +0 2500 2537 +0 2532 2485 +0 2571 2406 +0 2618 2271 +0 2674 1991 +0 2740 0 +0 2816 0 +0 2901 0 +0 2994 0 +0 3094 0 +0 3201 0 +0 3313 0 +0 3430 0 +0 3550 0 +0 3673 0 +0 2393 2662 +0 2393 2662 +0 2394 2661 +0 2394 2661 +0 2395 2660 +0 2396 2659 +0 2397 2658 +0 2399 2657 +0 2401 2655 +0 2404 2652 +0 2408 2648 +0 2413 2643 +0 2420 2636 +0 2429 2627 +0 2441 2614 +0 2456 2597 +0 2475 2572 +0 2500 2537 +0 2532 2486 +0 2571 2406 +0 2618 2272 +0 2675 1992 +0 2740 0 +0 2816 0 +0 2901 0 +0 2994 0 +0 3094 0 +0 3201 0 +0 3313 0 +0 3430 0 +0 3550 0 +0 3673 0 +0 2393 2662 +0 2393 2662 +0 2394 2662 +0 2394 2661 +0 2395 2661 +0 2396 2660 +0 2397 2659 +0 2399 2657 +0 2401 2655 +0 2404 2652 +0 2408 2649 +0 2413 2644 +0 2420 2637 +0 2429 2628 +0 2441 2615 +0 2456 2597 +0 2476 2573 +0 2501 2538 +0 2532 2487 +0 2571 2407 +0 2618 2273 +0 2675 1995 +0 2741 0 +0 2816 0 +0 2901 0 +0 2994 0 +0 3094 0 +0 3201 0 +0 3313 0 +0 3430 0 +0 3550 0 +0 3673 0 +0 2393 2663 +0 2393 2663 +0 2394 2662 +0 2394 2662 +0 2395 2661 +0 2396 2661 +0 2397 2659 +0 2399 2658 +0 2401 2656 +0 2404 2653 +0 2408 2649 +0 2413 2644 +0 2420 2638 +0 2429 2628 +0 2441 2616 +0 2456 2598 +0 2476 2574 +0 2501 2539 +0 2532 2488 +0 2571 2408 +0 2618 2275 +0 2675 1998 +0 2741 0 +0 2816 0 +0 2901 0 +0 2994 0 +0 3094 0 +0 3201 0 +0 3313 0 +0 3430 0 +0 3550 0 +0 3674 0 +0 2393 2664 +0 2394 2664 +0 2394 2663 +0 2395 2663 +0 2395 2662 +0 2396 2661 +0 2398 2660 +0 2399 2659 +0 2401 2657 +0 2404 2654 +0 2408 2650 +0 2413 2645 +0 2420 2639 +0 2429 2629 +0 2441 2617 +0 2456 2599 +0 2476 2575 +0 2501 2540 +0 2532 2489 +0 2571 2410 +0 2618 2277 +0 2675 2002 +0 2741 0 +0 2816 0 +0 2901 0 +0 2994 0 +0 3094 0 +0 3201 0 +0 3313 0 +0 3430 0 +0 3550 0 +0 3674 0 +0 2394 2665 +0 2394 2665 +0 2394 2665 +0 2395 2664 +0 2396 2664 +0 2397 2663 +0 2398 2662 +0 2399 2660 +0 2402 2658 +0 2405 2655 +0 2409 2652 +0 2414 2647 +0 2421 2640 +0 2430 2631 +0 2441 2618 +0 2457 2601 +0 2476 2576 +0 2501 2542 +0 2533 2491 +0 2571 2412 +0 2619 2280 +0 2675 2007 +0 2741 0 +0 2816 0 +0 2901 0 +0 2994 0 +0 3094 0 +0 3201 0 +0 3314 0 +0 3430 0 +0 3551 0 +0 3674 0 +0 2394 2667 +0 2394 2667 +0 2395 2666 +0 2395 2666 +0 2396 2665 +0 2397 2664 +0 2398 2663 +0 2400 2662 +0 2402 2660 +0 2405 2657 +0 2409 2653 +0 2414 2648 +0 2421 2642 +0 2430 2633 +0 2442 2620 +0 2457 2603 +0 2477 2579 +0 2501 2544 +0 2533 2493 +0 2572 2415 +0 2619 2284 +0 2675 2014 +0 2741 0 +0 2816 0 +0 2901 0 +0 2994 0 +0 3094 0 +0 3201 0 +0 3314 0 +0 3430 0 +0 3551 0 +0 3674 0 +0 2395 2669 +0 2395 2669 +0 2395 2669 +0 2396 2668 +0 2397 2668 +0 2398 2667 +0 2399 2666 +0 2400 2664 +0 2403 2662 +0 2406 2659 +0 2410 2656 +0 2415 2651 +0 2422 2644 +0 2430 2635 +0 2442 2623 +0 2457 2605 +0 2477 2581 +0 2502 2547 +0 2533 2497 +0 2572 2419 +0 2619 2289 +0 2676 2024 +0 2741 0 +0 2817 0 +0 2901 0 +0 2994 0 +0 3095 0 +0 3201 0 +0 3314 0 +0 3430 0 +0 3551 0 +0 3674 0 +0 2395 2672 +0 2396 2672 +0 2396 2672 +0 2397 2671 +0 2397 2670 +0 2398 2670 +0 2400 2669 +0 2401 2667 +0 2403 2665 +0 2406 2662 +0 2410 2659 +0 2415 2654 +0 2422 2647 +0 2431 2638 +0 2443 2626 +0 2458 2609 +0 2478 2585 +0 2503 2551 +0 2534 2501 +0 2573 2424 +0 2620 2296 +0 2676 2036 +0 2742 0 +0 2817 0 +0 2901 0 +0 2994 0 +0 3095 0 +0 3202 0 +0 3314 0 +0 3430 0 +0 3551 0 +0 3674 0 +0 2397 2676 +0 2397 2676 +0 2397 2676 +0 2398 2675 +0 2398 2674 +0 2399 2674 +0 2401 2673 +0 2402 2671 +0 2404 2669 +0 2407 2666 +0 2411 2663 +0 2416 2658 +0 2423 2651 +0 2432 2642 +0 2444 2630 +0 2459 2613 +0 2478 2590 +0 2503 2556 +0 2535 2507 +0 2573 2431 +0 2620 2305 +0 2677 2052 +0 2742 0 +0 2817 0 +0 2902 0 +0 2995 0 +0 3095 0 +0 3202 0 +0 3314 0 +0 3431 0 +0 3551 0 +0 3674 0 +0 2398 2681 +0 2398 2681 +0 2399 2681 +0 2399 2680 +0 2400 2680 +0 2401 2679 +0 2402 2678 +0 2404 2676 +0 2406 2674 +0 2409 2672 +0 2413 2668 +0 2418 2663 +0 2424 2657 +0 2433 2648 +0 2445 2636 +0 2460 2619 +0 2480 2596 +0 2504 2563 +0 2536 2514 +0 2574 2440 +0 2621 2317 +0 2677 2072 +0 2743 674 +0 2818 0 +0 2902 0 +0 2995 0 +0 3095 0 +0 3202 0 +0 3314 0 +0 3431 0 +0 3551 0 +0 3674 0 +0 2400 2688 +0 2400 2688 +0 2400 2688 +0 2401 2687 +0 2402 2687 +0 2402 2686 +0 2404 2685 +0 2405 2683 +0 2408 2681 +0 2410 2679 +0 2414 2675 +0 2419 2671 +0 2426 2664 +0 2435 2656 +0 2447 2644 +0 2462 2627 +0 2481 2604 +0 2506 2572 +0 2537 2524 +0 2575 2452 +0 2622 2332 +0 2678 2098 +0 2744 1046 +0 2819 0 +0 2903 0 +0 2995 0 +0 3096 0 +0 3202 0 +0 3314 0 +0 3431 0 +0 3551 0 +0 3674 0 +0 2402 2697 +0 2402 2697 +0 2403 2697 +0 2403 2696 +0 2404 2696 +0 2405 2695 +0 2406 2694 +0 2408 2693 +0 2410 2691 +0 2413 2688 +0 2417 2685 +0 2422 2680 +0 2428 2674 +0 2437 2665 +0 2449 2654 +0 2464 2638 +0 2483 2615 +0 2508 2583 +0 2539 2537 +0 2577 2467 +0 2624 2352 +0 2680 2130 +0 2745 1300 +0 2820 0 +0 2904 0 +0 2996 0 +0 3096 0 +0 3203 0 +0 3315 0 +0 3431 0 +0 3551 0 +0 3674 0 +0 2405 2709 +0 2406 2709 +0 2406 2709 +0 2406 2708 +0 2407 2708 +0 2408 2707 +0 2409 2706 +0 2411 2705 +0 2413 2703 +0 2416 2700 +0 2420 2697 +0 2425 2692 +0 2431 2686 +0 2440 2678 +0 2452 2667 +0 2467 2651 +0 2486 2629 +0 2510 2599 +0 2541 2554 +0 2579 2486 +0 2626 2377 +0 2681 2170 +0 2746 1506 +0 2821 0 +0 2905 0 +0 2997 0 +0 3097 0 +0 3203 0 +0 3315 0 +0 3431 0 +0 3551 0 +0 3674 0 +0 2410 2725 +0 2410 2724 +0 2410 2724 +0 2411 2724 +0 2411 2723 +0 2412 2722 +0 2413 2721 +0 2415 2720 +0 2417 2718 +0 2420 2716 +0 2424 2713 +0 2429 2708 +0 2435 2702 +0 2444 2694 +0 2456 2684 +0 2470 2669 +0 2489 2648 +0 2514 2618 +0 2544 2575 +0 2582 2511 +0 2628 2408 +0 2684 2219 +0 2748 1686 +0 2823 0 +0 2906 0 +0 2998 0 +0 3098 0 +0 3204 0 +0 3316 0 +0 3432 0 +0 3552 0 +0 3675 0 +0 2415 2744 +0 2415 2744 +0 2416 2744 +0 2416 2744 +0 2417 2743 +0 2418 2742 +0 2419 2741 +0 2421 2740 +0 2423 2738 +0 2426 2736 +0 2429 2733 +0 2434 2729 +0 2441 2723 +0 2449 2716 +0 2461 2705 +0 2475 2691 +0 2494 2671 +0 2518 2643 +0 2548 2603 +0 2586 2543 +0 2632 2447 +0 2687 2277 +0 2751 1851 +0 2825 0 +0 2908 0 +0 3000 0 +0 3099 0 +0 3205 0 +0 3316 0 +0 3432 0 +0 3552 0 +0 3675 0 +896 2423 2770 +879 2423 2769 +854 2423 2769 +820 2424 2769 +769 2424 2768 +691 2425 2768 +560 2426 2767 +290 2428 2766 +0 2430 2764 +0 2433 2762 +0 2436 2759 +0 2441 2755 +0 2448 2750 +0 2456 2742 +0 2467 2733 +0 2482 2719 +0 2500 2701 +0 2524 2674 +0 2554 2637 +0 2591 2581 +0 2636 2494 +0 2691 2344 +0 2755 2007 +0 2828 0 +0 2910 0 +0 3002 0 +0 3101 0 +0 3206 0 +0 3317 0 +0 3433 0 +0 3553 0 +0 3675 0 +1925 2432 2801 +1923 2432 2801 +1921 2433 2801 +1917 2433 2801 +1913 2434 2800 +1907 2435 2799 +1899 2436 2799 +1889 2438 2798 +1874 2440 2796 +1853 2442 2794 +1824 2446 2791 +1782 2451 2788 +1718 2457 2783 +1617 2465 2776 +1432 2476 2767 +925 2490 2754 +0 2508 2737 +0 2532 2713 +0 2561 2679 +0 2598 2628 +0 2642 2551 +0 2696 2421 +0 2759 2155 +0 2832 0 +0 2914 0 +0 3004 0 +0 3103 0 +0 3208 0 +0 3319 0 +0 3434 0 +0 3554 0 +0 3676 0 +2283 2445 2841 +2282 2445 2840 +2281 2445 2840 +2279 2446 2840 +2278 2447 2839 +2275 2447 2839 +2271 2449 2838 +2267 2450 2837 +2260 2452 2836 +2252 2455 2834 +2240 2458 2831 +2223 2463 2828 +2200 2469 2823 +2168 2477 2817 +2120 2488 2809 +2047 2501 2798 +1927 2519 2782 +1692 2542 2760 +612 2571 2729 +0 2607 2685 +0 2650 2617 +0 2703 2507 +0 2765 2299 +0 2837 1624 +0 2918 0 +0 3008 0 +0 3106 0 +0 3210 0 +0 3321 0 +0 3436 0 +0 3555 0 +0 3677 0 +2532 2461 2888 +2531 2462 2888 +2531 2462 2888 +2530 2462 2887 +2529 2463 2887 +2527 2464 2887 +2525 2465 2886 +2522 2466 2885 +2519 2468 2884 +2514 2471 2882 +2507 2474 2880 +2498 2479 2877 +2486 2484 2873 +2469 2492 2867 +2445 2503 2860 +2411 2516 2850 +2360 2533 2836 +2283 2555 2817 +2155 2583 2789 +1893 2618 2750 +0 2661 2692 +0 2713 2601 +0 2774 2440 +0 2844 2059 +0 2924 0 +0 3013 0 +0 3110 0 +0 3213 0 +0 3323 0 +0 3438 0 +0 3556 0 +0 3678 0 +2735 2482 2945 +2735 2483 2945 +2734 2483 2945 +2734 2483 2944 +2733 2484 2944 +2732 2485 2944 +2731 2486 2943 +2729 2487 2942 +2727 2489 2941 +2724 2491 2940 +2719 2495 2938 +2714 2499 2935 +2706 2504 2931 +2696 2512 2927 +2681 2522 2920 +2661 2535 2911 +2633 2551 2899 +2592 2572 2882 +2532 2599 2859 +2435 2633 2826 +2263 2675 2777 +1825 2725 2702 +0 2784 2579 +0 2853 2332 +0 2932 847 +0 3019 0 +0 3115 0 +0 3217 0 +0 3326 0 +0 3440 0 +0 3558 0 +0 3679 0 +2914 2509 3011 +2913 2509 3011 +2913 2510 3011 +2913 2510 3011 +2912 2510 3010 +2912 2511 3010 +2911 2512 3009 +2910 2513 3009 +2908 2515 3008 +2906 2517 3007 +2903 2521 3005 +2900 2525 3003 +2894 2530 3000 +2888 2537 2995 +2878 2546 2990 +2865 2558 2982 +2848 2574 2972 +2823 2594 2958 +2787 2620 2938 +2735 2652 2910 +2653 2692 2870 +2516 2741 2810 +2224 2798 2716 +0 2865 2547 +0 2942 2131 +0 3028 0 +0 3122 0 +0 3223 0 +0 3331 0 +0 3443 0 +0 3561 0 +0 3681 0 +3078 2542 3087 +3078 2543 3087 +3077 2543 3087 +3077 2543 3087 +3077 2544 3086 +3076 2544 3086 +3076 2545 3086 +3075 2547 3085 +3074 2548 3084 +3073 2550 3083 +3071 2553 3082 +3068 2557 3080 +3064 2562 3077 +3060 2569 3074 +3053 2577 3069 +3045 2589 3063 +3033 2603 3054 +3016 2622 3042 +2993 2647 3026 +2961 2677 3003 +2913 2715 2971 +2841 2761 2923 +2721 2816 2851 +2486 2881 2733 +1423 2955 2501 +0 3039 1510 +0 3130 0 +0 3230 0 +0 3336 0 +0 3448 0 +0 3564 0 +0 3684 0 +3232 2584 3172 +3232 2584 3172 +3232 2584 3172 +3232 2584 3172 +3232 2585 3171 +3232 2585 3171 +3231 2586 3171 +3231 2587 3170 +3230 2589 3170 +3229 2591 3169 +3227 2593 3167 +3226 2597 3166 +3223 2601 3164 +3220 2607 3161 +3215 2615 3157 +3209 2626 3152 +3201 2639 3145 +3190 2657 3135 +3174 2680 3122 +3152 2708 3103 +3122 2743 3078 +3077 2787 3041 +3010 2839 2986 +2901 2901 2901 +2696 2972 2754 +2044 3053 2432 +0 3142 0 +0 3239 0 +0 3344 0 +0 3454 0 +0 3569 0 +0 3687 0 +3381 2633 3265 +3381 2634 3265 +3381 2634 3265 +3380 2634 3265 +3380 2634 3265 +3380 2635 3265 +3380 2636 3264 +3379 2637 3264 +3379 2638 3263 +3378 2640 3263 +3377 2642 3262 +3376 2645 3260 +3374 2649 3259 +3372 2655 3256 +3368 2662 3253 +3364 2671 3249 +3358 2684 3243 +3350 2700 3235 +3339 2720 3225 +3324 2746 3210 +3304 2779 3190 +3274 2819 3161 +3232 2868 3120 +3168 2926 3058 +3066 2994 2960 +2879 3071 2782 +2358 3157 2318 +0 3252 0 +0 3353 0 +0 3461 0 +0 3575 0 +0 3692 0 +3525 2692 3366 +3525 2693 3366 +3524 2693 3366 +3524 2693 3366 +3524 2693 3366 +3524 2694 3365 +3524 2695 3365 +3524 2695 3365 +3523 2697 3364 +3523 2698 3364 +3522 2700 3363 +3521 2703 3362 +3520 2707 3361 +3518 2711 3359 +3516 2718 3356 +3512 2726 3353 +3508 2737 3348 +3503 2751 3342 +3495 2770 3334 +3484 2793 3322 +3470 2823 3307 +3450 2859 3285 +3421 2904 3254 +3380 2958 3208 +3319 3022 3140 +3221 3095 3028 +3045 3177 2817 +2591 3268 2101 +0 3366 0 +0 3471 0 +0 3582 0 +0 3698 0 +3665 2761 3473 +3665 2761 3473 +3665 2761 3473 +3665 2762 3473 +3665 2762 3473 +3665 2762 3473 +3665 2763 3472 +3665 2764 3472 +3664 2765 3472 +3664 2766 3471 +3663 2768 3471 +3663 2770 3470 +3662 2773 3469 +3660 2777 3467 +3659 2783 3465 +3656 2790 3463 +3653 2800 3459 +3649 2812 3454 +3644 2828 3448 +3636 2849 3439 +3626 2875 3427 +3611 2908 3410 +3592 2949 3387 +3564 2998 3353 +3524 3056 3305 +3464 3124 3230 +3370 3202 3106 +3201 3288 2859 +2786 3383 1324 +0 3485 0 +0 3593 0 +0 3706 0 +3804 2839 3586 +3804 2839 3586 +3804 2839 3586 +3804 2840 3585 +3803 2840 3585 +3803 2840 3585 +3803 2841 3585 +3803 2841 3585 +3803 2842 3585 +3803 2843 3584 +3802 2845 3584 +3802 2847 3583 +3801 2849 3582 +3800 2853 3581 +3799 2858 3580 +3797 2864 3578 +3795 2872 3575 +3792 2882 3571 +3788 2896 3566 +3782 2914 3559 +3775 2937 3550 +3765 2966 3537 +3751 3002 3520 +3731 3046 3495 +3704 3099 3460 +3665 3161 3408 +3606 3233 3328 +3514 3314 3193 +3351 3404 2910 +2960 3502 0 +0 3606 0 +0 3717 0 +3940 2926 3703 +3940 2926 3702 +3940 2926 3702 +3940 2926 3702 +3940 2927 3702 +3940 2927 3702 +3940 2927 3702 +3940 2928 3702 +3940 2929 3702 +3940 2930 3702 +3939 2931 3701 +3939 2932 3701 +3938 2935 3700 +3938 2938 3699 +3937 2941 3698 +3936 2947 3696 +3934 2953 3694 +3932 2962 3691 +3929 2974 3687 +3925 2989 3682 +3919 3008 3675 +3912 3033 3666 +3902 3064 3652 +3888 3103 3634 +3869 3150 3608 +3842 3206 3572 +3803 3271 3517 +3745 3347 3433 +3654 3431 3288 +3495 3523 2971 +3121 3624 0 +0 3730 0 +4076 3021 3823 +4076 3021 3823 +4076 3021 3823 +4076 3022 3823 +4076 3022 3823 +4076 3022 3823 +4076 3022 3823 +4076 3023 3822 +4076 3023 3822 +4075 3024 3822 +4075 3025 3822 +4075 3026 3821 +4075 3028 3821 +4074 3031 3820 +4073 3034 3819 +4072 3038 3818 +4071 3043 3817 +4070 3051 3814 +4067 3060 3811 +4064 3073 3807 +4060 3089 3802 +4055 3110 3795 +4048 3136 3785 +4038 3170 3771 +4024 3210 3753 +4005 3260 3726 +3978 3318 3688 +3940 3387 3632 +3883 3464 3544 +3793 3551 3390 +3636 3646 3041 +3273 3748 0 +4095 3124 3946 +4095 3124 3946 +4095 3124 3946 +4095 3124 3946 +4095 3124 3946 +4095 3124 3946 +4095 3125 3946 +4095 3125 3946 +4095 3125 3946 +4095 3126 3945 +4095 3127 3945 +4095 3128 3945 +4095 3129 3945 +4095 3131 3944 +4095 3134 3943 +4095 3137 3942 +4095 3142 3941 +4095 3147 3940 +4095 3155 3937 +4095 3165 3934 +4095 3179 3930 +4095 3196 3925 +4095 3218 3917 +4095 3246 3907 +4095 3280 3893 +4095 3323 3874 +4095 3375 3847 +4095 3435 3808 +4075 3506 3750 +4019 3586 3659 +3930 3674 3499 +3775 3771 3120 +4095 3232 4071 +4095 3232 4071 +4095 3232 4071 +4095 3232 4071 +4095 3233 4071 +4095 3233 4071 +4095 3233 4071 +4095 3233 4071 +4095 3234 4071 +4095 3234 4071 +4095 3235 4071 +4095 3236 4070 +4095 3237 4070 +4095 3238 4070 +4095 3240 4069 +4095 3243 4069 +4095 3246 4068 +4095 3251 4066 +4095 3257 4065 +4095 3265 4062 +4095 3276 4059 +4095 3290 4055 +4095 3308 4050 +4095 3331 4042 +4095 3360 4032 +4095 3396 4018 +4095 3440 3998 +4095 3493 3971 +4095 3556 3931 +4095 3628 3872 +4095 3709 3778 +4065 3799 3612 +0 2525 2793 +0 2525 2793 +0 2525 2793 +0 2525 2793 +0 2526 2792 +0 2527 2792 +0 2528 2791 +0 2529 2790 +0 2531 2788 +0 2533 2786 +0 2536 2783 +0 2540 2779 +0 2545 2774 +0 2552 2768 +0 2561 2758 +0 2572 2746 +0 2588 2728 +0 2607 2704 +0 2632 2668 +0 2664 2617 +0 2703 2537 +0 2750 2402 +0 2807 2121 +0 2873 0 +0 2948 0 +0 3033 0 +0 3126 0 +0 3226 0 +0 3333 0 +0 3445 0 +0 3562 0 +0 3683 0 +0 2525 2794 +0 2525 2794 +0 2525 2793 +0 2526 2793 +0 2526 2792 +0 2527 2792 +0 2528 2791 +0 2529 2790 +0 2531 2788 +0 2533 2786 +0 2536 2783 +0 2540 2780 +0 2545 2775 +0 2552 2768 +0 2561 2759 +0 2573 2746 +0 2588 2728 +0 2607 2704 +0 2632 2669 +0 2664 2617 +0 2703 2538 +0 2750 2403 +0 2807 2123 +0 2873 0 +0 2948 0 +0 3033 0 +0 3126 0 +0 3226 0 +0 3333 0 +0 3446 0 +0 3562 0 +0 3683 0 +0 2525 2794 +0 2525 2794 +0 2525 2794 +0 2526 2793 +0 2526 2793 +0 2527 2792 +0 2528 2791 +0 2529 2790 +0 2531 2789 +0 2533 2787 +0 2536 2784 +0 2540 2780 +0 2545 2775 +0 2552 2768 +0 2561 2759 +0 2573 2746 +0 2588 2729 +0 2608 2704 +0 2633 2669 +0 2664 2618 +0 2703 2538 +0 2750 2404 +0 2807 2124 +0 2873 0 +0 2948 0 +0 3033 0 +0 3126 0 +0 3226 0 +0 3333 0 +0 3446 0 +0 3562 0 +0 3683 0 +0 2525 2795 +0 2525 2794 +0 2525 2794 +0 2526 2794 +0 2526 2793 +0 2527 2793 +0 2528 2792 +0 2529 2791 +0 2531 2789 +0 2533 2787 +0 2536 2784 +0 2540 2781 +0 2545 2776 +0 2552 2769 +0 2561 2760 +0 2573 2747 +0 2588 2730 +0 2608 2705 +0 2633 2670 +0 2664 2619 +0 2703 2539 +0 2750 2405 +0 2807 2127 +0 2873 0 +0 2948 0 +0 3033 0 +0 3126 0 +0 3226 0 +0 3333 0 +0 3446 0 +0 3562 0 +0 3683 0 +0 2525 2795 +0 2525 2795 +0 2526 2795 +0 2526 2795 +0 2526 2794 +0 2527 2793 +0 2528 2793 +0 2529 2791 +0 2531 2790 +0 2533 2788 +0 2536 2785 +0 2540 2781 +0 2545 2776 +0 2552 2770 +0 2561 2760 +0 2573 2748 +0 2588 2730 +0 2608 2706 +0 2633 2671 +0 2664 2620 +0 2703 2540 +0 2750 2407 +0 2807 2130 +0 2873 0 +0 2948 0 +0 3033 0 +0 3126 0 +0 3226 0 +0 3333 0 +0 3446 0 +0 3562 0 +0 3683 0 +0 2525 2796 +0 2526 2796 +0 2526 2796 +0 2526 2795 +0 2527 2795 +0 2527 2794 +0 2528 2794 +0 2530 2792 +0 2531 2791 +0 2533 2789 +0 2536 2786 +0 2540 2782 +0 2546 2777 +0 2552 2771 +0 2561 2761 +0 2573 2749 +0 2588 2731 +0 2608 2707 +0 2633 2672 +0 2664 2621 +0 2703 2542 +0 2751 2409 +0 2807 2134 +0 2873 0 +0 2948 0 +0 3033 0 +0 3126 0 +0 3226 0 +0 3333 0 +0 3446 0 +0 3562 0 +0 3683 0 +0 2526 2798 +0 2526 2797 +0 2526 2797 +0 2527 2797 +0 2527 2796 +0 2528 2796 +0 2529 2795 +0 2530 2794 +0 2532 2792 +0 2534 2790 +0 2537 2787 +0 2541 2784 +0 2546 2779 +0 2553 2772 +0 2562 2763 +0 2573 2750 +0 2589 2733 +0 2608 2709 +0 2633 2674 +0 2665 2623 +0 2703 2544 +0 2751 2412 +0 2807 2139 +0 2873 0 +0 2948 0 +0 3033 0 +0 3126 0 +0 3226 0 +0 3333 0 +0 3446 0 +0 3562 0 +0 3683 0 +0 2526 2799 +0 2526 2799 +0 2527 2799 +0 2527 2798 +0 2527 2798 +0 2528 2797 +0 2529 2797 +0 2530 2795 +0 2532 2794 +0 2534 2792 +0 2537 2789 +0 2541 2785 +0 2546 2780 +0 2553 2774 +0 2562 2765 +0 2574 2752 +0 2589 2735 +0 2609 2711 +0 2634 2676 +0 2665 2625 +0 2704 2547 +0 2751 2416 +0 2807 2146 +0 2873 0 +0 2949 0 +0 3033 0 +0 3126 0 +0 3226 0 +0 3333 0 +0 3446 0 +0 3562 0 +0 3683 0 +0 2527 2801 +0 2527 2801 +0 2527 2801 +0 2528 2801 +0 2528 2800 +0 2529 2800 +0 2530 2799 +0 2531 2798 +0 2533 2796 +0 2535 2794 +0 2538 2791 +0 2542 2788 +0 2547 2783 +0 2554 2776 +0 2563 2767 +0 2574 2755 +0 2590 2737 +0 2609 2713 +0 2634 2679 +0 2665 2629 +0 2704 2551 +0 2751 2421 +0 2808 2156 +0 2873 0 +0 2949 0 +0 3033 0 +0 3126 0 +0 3227 0 +0 3333 0 +0 3446 0 +0 3562 0 +0 3683 0 +0 2527 2804 +0 2528 2804 +0 2528 2804 +0 2528 2804 +0 2529 2803 +0 2529 2803 +0 2530 2802 +0 2532 2801 +0 2533 2799 +0 2536 2797 +0 2538 2794 +0 2542 2791 +0 2548 2786 +0 2554 2779 +0 2563 2770 +0 2575 2758 +0 2590 2741 +0 2610 2717 +0 2635 2683 +0 2666 2633 +0 2705 2556 +0 2752 2428 +0 2808 2168 +0 2874 0 +0 2949 0 +0 3034 0 +0 3126 0 +0 3227 0 +0 3334 0 +0 3446 0 +0 3563 0 +0 3683 0 +0 2528 2808 +0 2529 2808 +0 2529 2808 +0 2529 2808 +0 2530 2807 +0 2531 2807 +0 2531 2806 +0 2533 2805 +0 2534 2803 +0 2537 2801 +0 2539 2799 +0 2543 2795 +0 2549 2790 +0 2555 2783 +0 2564 2775 +0 2576 2762 +0 2591 2745 +0 2611 2722 +0 2635 2688 +0 2667 2639 +0 2705 2563 +0 2752 2437 +0 2809 2184 +0 2874 0 +0 2949 0 +0 3034 0 +0 3127 0 +0 3227 0 +0 3334 0 +0 3446 0 +0 3563 0 +0 3683 0 +0 2530 2814 +0 2530 2813 +0 2530 2813 +0 2531 2813 +0 2531 2812 +0 2532 2812 +0 2533 2811 +0 2534 2810 +0 2536 2808 +0 2538 2806 +0 2541 2804 +0 2545 2800 +0 2550 2795 +0 2557 2789 +0 2565 2780 +0 2577 2768 +0 2592 2751 +0 2612 2728 +0 2636 2695 +0 2668 2646 +0 2706 2572 +0 2753 2449 +0 2809 2204 +0 2875 806 +0 2950 0 +0 3034 0 +0 3127 0 +0 3227 0 +0 3334 0 +0 3446 0 +0 3563 0 +0 3683 0 +0 2532 2821 +0 2532 2820 +0 2532 2820 +0 2532 2820 +0 2533 2819 +0 2534 2819 +0 2535 2818 +0 2536 2817 +0 2537 2815 +0 2540 2814 +0 2543 2811 +0 2546 2807 +0 2552 2803 +0 2558 2796 +0 2567 2788 +0 2579 2776 +0 2594 2759 +0 2613 2736 +0 2638 2704 +0 2669 2656 +0 2708 2584 +0 2754 2464 +0 2810 2230 +0 2876 1179 +0 2951 0 +0 3035 0 +0 3128 0 +0 3228 0 +0 3334 0 +0 3446 0 +0 3563 0 +0 3683 0 +0 2534 2830 +0 2534 2829 +0 2534 2829 +0 2535 2829 +0 2535 2828 +0 2536 2828 +0 2537 2827 +0 2538 2826 +0 2540 2825 +0 2542 2823 +0 2545 2820 +0 2549 2817 +0 2554 2812 +0 2561 2806 +0 2569 2797 +0 2581 2786 +0 2596 2770 +0 2615 2747 +0 2640 2716 +0 2671 2669 +0 2709 2599 +0 2756 2484 +0 2812 2263 +0 2877 1432 +0 2952 0 +0 3036 0 +0 3128 0 +0 3228 0 +0 3335 0 +0 3447 0 +0 3563 0 +0 3683 0 +0 2537 2842 +0 2537 2841 +0 2538 2841 +0 2538 2841 +0 2539 2840 +0 2539 2840 +0 2540 2839 +0 2541 2838 +0 2543 2837 +0 2545 2835 +0 2548 2832 +0 2552 2829 +0 2557 2824 +0 2564 2818 +0 2572 2810 +0 2584 2799 +0 2599 2783 +0 2618 2761 +0 2642 2731 +0 2673 2686 +0 2711 2618 +0 2758 2509 +0 2813 2303 +0 2878 1638 +0 2953 0 +0 3037 0 +0 3129 0 +0 3229 0 +0 3335 0 +0 3447 0 +0 3564 0 +0 3684 0 +0 2541 2857 +0 2542 2857 +0 2542 2857 +0 2542 2856 +0 2543 2856 +0 2543 2855 +0 2544 2854 +0 2546 2854 +0 2547 2852 +0 2549 2850 +0 2552 2848 +0 2556 2845 +0 2561 2840 +0 2568 2835 +0 2576 2827 +0 2588 2816 +0 2602 2801 +0 2621 2780 +0 2646 2750 +0 2676 2708 +0 2714 2643 +0 2760 2540 +0 2816 2351 +0 2880 1818 +0 2955 0 +0 3038 0 +0 3130 0 +0 3230 0 +0 3336 0 +0 3448 0 +0 3564 0 +0 3684 0 +0 2547 2877 +0 2547 2877 +0 2547 2876 +0 2548 2876 +0 2548 2876 +0 2549 2875 +0 2550 2874 +0 2551 2873 +0 2553 2872 +0 2555 2870 +0 2558 2868 +0 2561 2865 +0 2566 2861 +0 2573 2855 +0 2581 2848 +0 2593 2837 +0 2607 2823 +0 2626 2803 +0 2650 2775 +0 2680 2735 +0 2718 2675 +0 2764 2579 +0 2819 2409 +0 2883 1983 +0 2957 0 +0 3040 0 +0 3132 0 +0 3231 0 +0 3337 0 +0 3449 0 +0 3565 0 +0 3684 0 +1040 2554 2902 +1028 2555 2902 +1011 2555 2902 +986 2555 2901 +952 2556 2901 +901 2556 2900 +823 2557 2900 +692 2558 2899 +422 2560 2898 +0 2562 2896 +0 2565 2894 +0 2569 2891 +0 2573 2887 +0 2580 2882 +0 2588 2875 +0 2599 2865 +0 2614 2851 +0 2632 2833 +0 2656 2806 +0 2686 2769 +0 2723 2713 +0 2768 2627 +0 2823 2476 +0 2887 2139 +0 2960 0 +0 3043 0 +0 3134 0 +0 3233 0 +0 3338 0 +0 3450 0 +0 3565 0 +0 3685 0 +2058 2564 2934 +2057 2564 2933 +2055 2565 2933 +2053 2565 2933 +2050 2565 2933 +2045 2566 2932 +2039 2567 2932 +2032 2568 2931 +2021 2570 2930 +2006 2572 2928 +1985 2574 2926 +1956 2578 2923 +1914 2583 2920 +1850 2589 2915 +1749 2597 2908 +1564 2608 2899 +1057 2622 2887 +0 2641 2869 +0 2664 2845 +0 2693 2811 +0 2730 2761 +0 2775 2683 +0 2828 2553 +0 2891 2287 +0 2964 0 +0 3046 0 +0 3137 0 +0 3235 0 +0 3340 0 +0 3451 0 +0 3566 0 +0 3686 0 +2415 2577 2973 +2415 2577 2973 +2414 2577 2972 +2413 2578 2972 +2412 2578 2972 +2410 2579 2971 +2407 2580 2971 +2404 2581 2970 +2399 2582 2969 +2392 2584 2968 +2384 2587 2966 +2372 2590 2963 +2355 2595 2960 +2332 2601 2956 +2300 2609 2949 +2252 2620 2941 +2179 2633 2930 +2059 2651 2914 +1824 2674 2892 +744 2703 2862 +0 2739 2817 +0 2783 2749 +0 2835 2639 +0 2898 2431 +0 2969 1756 +0 3050 0 +0 3140 0 +0 3238 0 +0 3342 0 +0 3453 0 +0 3568 0 +0 3687 0 +2664 2593 3020 +2664 2593 3020 +2663 2594 3020 +2663 2594 3020 +2662 2594 3020 +2661 2595 3019 +2659 2596 3019 +2657 2597 3018 +2654 2598 3017 +2651 2600 3016 +2646 2603 3014 +2639 2606 3012 +2630 2611 3009 +2618 2617 3005 +2601 2624 2999 +2577 2635 2992 +2543 2648 2982 +2493 2665 2968 +2416 2687 2949 +2287 2715 2922 +2025 2750 2883 +0 2793 2824 +0 2845 2733 +0 2906 2572 +0 2976 2191 +0 3056 0 +0 3145 0 +0 3242 0 +0 3345 0 +0 3455 0 +0 3570 0 +0 3688 0 +2867 2614 3077 +2867 2614 3077 +2867 2615 3077 +2866 2615 3077 +2866 2615 3076 +2865 2616 3076 +2864 2617 3076 +2863 2618 3075 +2861 2619 3074 +2859 2621 3073 +2856 2623 3072 +2851 2627 3070 +2846 2631 3067 +2838 2637 3063 +2828 2644 3059 +2813 2654 3052 +2793 2667 3043 +2765 2683 3031 +2724 2705 3014 +2664 2731 2991 +2567 2765 2958 +2395 2807 2909 +1957 2857 2835 +0 2916 2711 +0 2985 2465 +0 3064 979 +0 3151 0 +0 3247 0 +0 3350 0 +0 3458 0 +0 3572 0 +0 3690 0 +3046 2641 3143 +3046 2641 3143 +3046 2641 3143 +3045 2642 3143 +3045 2642 3143 +3044 2643 3142 +3044 2643 3142 +3043 2644 3142 +3042 2646 3141 +3040 2647 3140 +3038 2650 3139 +3035 2653 3137 +3032 2657 3135 +3027 2662 3132 +3020 2669 3127 +3010 2678 3122 +2997 2691 3114 +2980 2706 3104 +2955 2727 3090 +2919 2752 3070 +2867 2785 3042 +2786 2824 3002 +2648 2873 2942 +2356 2930 2848 +0 2997 2679 +0 3074 2263 +0 3160 0 +0 3254 0 +0 3355 0 +0 3463 0 +0 3576 0 +0 3693 0 +3210 2674 3219 +3210 2674 3219 +3210 2675 3219 +3210 2675 3219 +3209 2675 3219 +3209 2676 3218 +3209 2677 3218 +3208 2677 3218 +3207 2679 3217 +3206 2680 3216 +3205 2682 3215 +3203 2685 3214 +3200 2689 3212 +3197 2694 3209 +3192 2701 3206 +3185 2709 3201 +3177 2721 3195 +3165 2735 3186 +3148 2754 3174 +3126 2779 3158 +3093 2809 3135 +3045 2847 3103 +2973 2893 3055 +2853 2948 2983 +2618 3013 2865 +1555 3087 2634 +0 3171 1643 +0 3263 0 +0 3362 0 +0 3468 0 +0 3580 0 +0 3696 0 +3365 2716 3304 +3365 2716 3304 +3364 2716 3304 +3364 2716 3304 +3364 2716 3304 +3364 2717 3303 +3364 2718 3303 +3363 2718 3303 +3363 2719 3302 +3362 2721 3302 +3361 2723 3301 +3359 2725 3300 +3358 2729 3298 +3355 2734 3296 +3352 2740 3293 +3347 2748 3289 +3341 2758 3284 +3333 2772 3277 +3322 2789 3267 +3306 2812 3254 +3285 2840 3235 +3254 2876 3210 +3209 2919 3173 +3142 2971 3118 +3033 3033 3033 +2828 3104 2887 +2176 3185 2564 +0 3274 0 +0 3372 0 +0 3476 0 +0 3586 0 +0 3701 0 +3513 2765 3397 +3513 2765 3397 +3513 2766 3397 +3513 2766 3397 +3513 2766 3397 +3512 2767 3397 +3512 2767 3397 +3512 2768 3396 +3511 2769 3396 +3511 2770 3395 +3510 2772 3395 +3509 2774 3394 +3508 2777 3392 +3506 2781 3391 +3504 2787 3388 +3500 2794 3385 +3496 2804 3381 +3490 2816 3375 +3482 2832 3367 +3471 2852 3357 +3457 2878 3342 +3436 2911 3322 +3406 2951 3293 +3364 3000 3252 +3300 3058 3190 +3198 3126 3092 +3011 3203 2914 +2491 3289 2450 +0 3384 0 +0 3486 0 +0 3594 0 +0 3707 0 +3657 2824 3498 +3657 2824 3498 +3657 2825 3498 +3657 2825 3498 +3656 2825 3498 +3656 2825 3498 +3656 2826 3497 +3656 2827 3497 +3656 2827 3497 +3655 2829 3497 +3655 2830 3496 +3654 2832 3495 +3653 2835 3494 +3652 2839 3493 +3650 2843 3491 +3648 2850 3488 +3645 2858 3485 +3640 2869 3480 +3635 2883 3474 +3627 2902 3466 +3616 2925 3454 +3602 2955 3439 +3582 2992 3417 +3553 3036 3386 +3512 3090 3340 +3451 3154 3272 +3353 3227 3160 +3177 3309 2949 +2723 3400 2233 +0 3498 0 +0 3604 0 +0 3715 0 +3797 2893 3605 +3797 2893 3605 +3797 2893 3605 +3797 2893 3605 +3797 2894 3605 +3797 2894 3605 +3797 2894 3605 +3797 2895 3605 +3797 2896 3604 +3796 2897 3604 +3796 2898 3604 +3795 2900 3603 +3795 2902 3602 +3794 2905 3601 +3792 2909 3600 +3791 2915 3598 +3788 2922 3595 +3785 2932 3591 +3781 2944 3587 +3776 2960 3580 +3768 2981 3571 +3758 3007 3559 +3744 3040 3542 +3724 3081 3519 +3696 3130 3486 +3656 3188 3437 +3596 3256 3362 +3502 3334 3238 +3333 3420 2991 +2918 3515 1456 +0 3617 0 +0 3725 0 +3936 2971 3718 +3936 2971 3718 +3936 2971 3718 +3936 2971 3718 +3936 2972 3718 +3936 2972 3717 +3935 2972 3717 +3935 2973 3717 +3935 2973 3717 +3935 2974 3717 +3935 2975 3716 +3934 2977 3716 +3934 2979 3715 +3933 2981 3714 +3932 2985 3713 +3931 2990 3712 +3929 2996 3710 +3927 3004 3707 +3924 3015 3703 +3920 3028 3698 +3914 3046 3691 +3907 3069 3682 +3897 3098 3669 +3883 3134 3652 +3863 3178 3627 +3836 3231 3592 +3797 3293 3540 +3738 3365 3460 +3646 3446 3325 +3483 3536 3042 +3092 3634 0 +0 3738 0 +4073 3058 3835 +4073 3058 3835 +4072 3058 3835 +4072 3058 3835 +4072 3059 3834 +4072 3059 3834 +4072 3059 3834 +4072 3059 3834 +4072 3060 3834 +4072 3061 3834 +4072 3062 3834 +4071 3063 3833 +4071 3064 3833 +4071 3067 3832 +4070 3070 3831 +4069 3073 3830 +4068 3079 3828 +4066 3085 3826 +4064 3094 3823 +4061 3106 3820 +4057 3121 3814 +4051 3140 3807 +4044 3165 3798 +4034 3196 3784 +4020 3235 3766 +4001 3282 3741 +3974 3338 3704 +3935 3404 3650 +3877 3479 3565 +3787 3563 3420 +3627 3656 3103 +3253 3756 0 +4095 3153 3955 +4095 3153 3955 +4095 3153 3955 +4095 3154 3955 +4095 3154 3955 +4095 3154 3955 +4095 3154 3955 +4095 3154 3955 +4095 3155 3955 +4095 3155 3954 +4095 3156 3954 +4095 3157 3954 +4095 3159 3954 +4095 3160 3953 +4095 3163 3952 +4095 3166 3951 +4095 3170 3950 +4095 3176 3949 +4095 3183 3946 +4095 3192 3943 +4095 3205 3940 +4095 3221 3934 +4095 3242 3927 +4095 3269 3917 +4095 3302 3903 +4095 3342 3885 +4095 3392 3858 +4095 3451 3820 +4072 3519 3764 +4015 3596 3676 +3925 3683 3522 +3768 3778 3173 +4095 3256 4078 +4095 3256 4078 +4095 3256 4078 +4095 3256 4078 +4095 3256 4078 +4095 3256 4078 +4095 3256 4078 +4095 3257 4078 +4095 3257 4078 +4095 3257 4078 +4095 3258 4078 +4095 3259 4077 +4095 3260 4077 +4095 3261 4077 +4095 3263 4076 +4095 3266 4075 +4095 3269 4075 +4095 3274 4073 +4095 3280 4072 +4095 3287 4069 +4095 3297 4066 +4095 3311 4062 +4095 3328 4057 +4095 3350 4049 +4095 3378 4039 +4095 3413 4025 +4095 3455 4006 +4095 3507 3979 +4095 3567 3940 +4095 3638 3882 +4095 3718 3791 +4062 3806 3631 +0 2656 2925 +0 2657 2925 +0 2657 2925 +0 2657 2925 +0 2658 2924 +0 2658 2924 +0 2659 2923 +0 2660 2923 +0 2661 2921 +0 2663 2920 +0 2665 2918 +0 2668 2915 +0 2672 2911 +0 2677 2906 +0 2684 2899 +0 2693 2890 +0 2705 2878 +0 2720 2860 +0 2739 2835 +0 2764 2800 +0 2796 2749 +0 2835 2669 +0 2882 2534 +0 2939 2253 +0 3005 0 +0 3080 0 +0 3165 0 +0 3258 0 +0 3358 0 +0 3465 0 +0 3578 0 +0 3694 0 +0 2657 2926 +0 2657 2926 +0 2657 2925 +0 2657 2925 +0 2658 2925 +0 2658 2924 +0 2659 2924 +0 2660 2923 +0 2661 2922 +0 2663 2920 +0 2665 2918 +0 2668 2915 +0 2672 2912 +0 2677 2907 +0 2684 2900 +0 2693 2890 +0 2705 2878 +0 2720 2860 +0 2739 2836 +0 2765 2801 +0 2796 2749 +0 2835 2669 +0 2882 2535 +0 2939 2254 +0 3005 0 +0 3080 0 +0 3165 0 +0 3258 0 +0 3358 0 +0 3465 0 +0 3578 0 +0 3694 0 +0 2657 2926 +0 2657 2926 +0 2657 2926 +0 2657 2925 +0 2658 2925 +0 2658 2925 +0 2659 2924 +0 2660 2923 +0 2661 2922 +0 2663 2920 +0 2665 2918 +0 2668 2916 +0 2672 2912 +0 2677 2907 +0 2684 2900 +0 2693 2891 +0 2705 2878 +0 2720 2861 +0 2740 2836 +0 2765 2801 +0 2796 2749 +0 2835 2670 +0 2882 2535 +0 2939 2255 +0 3005 0 +0 3080 0 +0 3165 0 +0 3258 0 +0 3358 0 +0 3465 0 +0 3578 0 +0 3694 0 +0 2657 2926 +0 2657 2926 +0 2657 2926 +0 2657 2926 +0 2658 2925 +0 2658 2925 +0 2659 2924 +0 2660 2923 +0 2661 2922 +0 2663 2921 +0 2665 2919 +0 2668 2916 +0 2672 2912 +0 2677 2907 +0 2684 2900 +0 2693 2891 +0 2705 2879 +0 2720 2861 +0 2740 2836 +0 2765 2801 +0 2796 2750 +0 2835 2670 +0 2882 2536 +0 2939 2257 +0 3005 0 +0 3080 0 +0 3165 0 +0 3258 0 +0 3358 0 +0 3465 0 +0 3578 0 +0 3694 0 +0 2657 2927 +0 2657 2927 +0 2657 2927 +0 2657 2926 +0 2658 2926 +0 2658 2925 +0 2659 2925 +0 2660 2924 +0 2661 2923 +0 2663 2921 +0 2665 2919 +0 2668 2917 +0 2672 2913 +0 2677 2908 +0 2684 2901 +0 2693 2892 +0 2705 2879 +0 2720 2862 +0 2740 2837 +0 2765 2802 +0 2796 2751 +0 2835 2671 +0 2882 2537 +0 2939 2259 +0 3005 0 +0 3080 0 +0 3165 0 +0 3258 0 +0 3358 0 +0 3465 0 +0 3578 0 +0 3694 0 +0 2657 2928 +0 2657 2927 +0 2657 2927 +0 2658 2927 +0 2658 2927 +0 2659 2926 +0 2659 2926 +0 2660 2925 +0 2661 2924 +0 2663 2922 +0 2665 2920 +0 2668 2917 +0 2672 2914 +0 2677 2909 +0 2684 2902 +0 2693 2893 +0 2705 2880 +0 2720 2862 +0 2740 2838 +0 2765 2803 +0 2796 2752 +0 2835 2673 +0 2882 2539 +0 2939 2262 +0 3005 0 +0 3080 0 +0 3165 0 +0 3258 0 +0 3358 0 +0 3465 0 +0 3578 0 +0 3694 0 +0 2657 2929 +0 2657 2928 +0 2658 2928 +0 2658 2928 +0 2658 2928 +0 2659 2927 +0 2660 2926 +0 2660 2926 +0 2662 2925 +0 2663 2923 +0 2666 2921 +0 2669 2918 +0 2672 2915 +0 2678 2910 +0 2684 2903 +0 2693 2894 +0 2705 2881 +0 2720 2864 +0 2740 2839 +0 2765 2804 +0 2796 2753 +0 2835 2674 +0 2883 2541 +0 2939 2266 +0 3005 0 +0 3080 0 +0 3165 0 +0 3258 0 +0 3358 0 +0 3465 0 +0 3578 0 +0 3694 0 +0 2658 2930 +0 2658 2930 +0 2658 2929 +0 2658 2929 +0 2659 2929 +0 2659 2928 +0 2660 2928 +0 2661 2927 +0 2662 2926 +0 2664 2924 +0 2666 2922 +0 2669 2919 +0 2673 2916 +0 2678 2911 +0 2685 2904 +0 2694 2895 +0 2706 2882 +0 2721 2865 +0 2740 2841 +0 2765 2806 +0 2797 2755 +0 2836 2676 +0 2883 2544 +0 2939 2271 +0 3005 0 +0 3080 0 +0 3165 0 +0 3258 0 +0 3358 0 +0 3465 0 +0 3578 0 +0 3694 0 +0 2658 2931 +0 2658 2931 +0 2658 2931 +0 2659 2931 +0 2659 2931 +0 2660 2930 +0 2660 2929 +0 2661 2929 +0 2662 2927 +0 2664 2926 +0 2666 2924 +0 2669 2921 +0 2673 2918 +0 2678 2913 +0 2685 2906 +0 2694 2897 +0 2706 2884 +0 2721 2867 +0 2741 2843 +0 2766 2808 +0 2797 2757 +0 2836 2679 +0 2883 2548 +0 2939 2279 +0 3005 0 +0 3081 0 +0 3165 0 +0 3258 0 +0 3359 0 +0 3465 0 +0 3578 0 +0 3694 0 +0 2659 2934 +0 2659 2934 +0 2659 2933 +0 2659 2933 +0 2660 2933 +0 2660 2932 +0 2661 2932 +0 2662 2931 +0 2663 2930 +0 2665 2928 +0 2667 2926 +0 2670 2924 +0 2674 2920 +0 2679 2915 +0 2686 2908 +0 2695 2899 +0 2706 2887 +0 2722 2870 +0 2741 2845 +0 2766 2811 +0 2797 2761 +0 2836 2683 +0 2883 2553 +0 2940 2288 +0 3006 0 +0 3081 0 +0 3165 0 +0 3258 0 +0 3359 0 +0 3466 0 +0 3578 0 +0 3695 0 +0 2659 2937 +0 2659 2937 +0 2660 2936 +0 2660 2936 +0 2660 2936 +0 2661 2935 +0 2662 2935 +0 2663 2934 +0 2664 2933 +0 2665 2931 +0 2668 2929 +0 2671 2927 +0 2674 2923 +0 2680 2918 +0 2686 2911 +0 2695 2902 +0 2707 2890 +0 2722 2873 +0 2742 2849 +0 2767 2815 +0 2798 2765 +0 2837 2688 +0 2884 2560 +0 2940 2300 +0 3006 0 +0 3081 0 +0 3166 0 +0 3258 0 +0 3359 0 +0 3466 0 +0 3578 0 +0 3695 0 +0 2660 2941 +0 2660 2941 +0 2661 2940 +0 2661 2940 +0 2661 2940 +0 2662 2939 +0 2663 2939 +0 2664 2938 +0 2665 2937 +0 2666 2935 +0 2669 2933 +0 2672 2931 +0 2675 2927 +0 2681 2922 +0 2687 2916 +0 2696 2907 +0 2708 2894 +0 2723 2877 +0 2743 2854 +0 2768 2820 +0 2799 2771 +0 2837 2695 +0 2885 2569 +0 2941 2316 +0 3006 0 +0 3082 0 +0 3166 0 +0 3259 0 +0 3359 0 +0 3466 0 +0 3578 0 +0 3695 0 +0 2662 2946 +0 2662 2946 +0 2662 2946 +0 2662 2945 +0 2663 2945 +0 2663 2945 +0 2664 2944 +0 2665 2943 +0 2666 2942 +0 2668 2941 +0 2670 2939 +0 2673 2936 +0 2677 2932 +0 2682 2928 +0 2689 2921 +0 2698 2912 +0 2709 2900 +0 2724 2883 +0 2744 2860 +0 2769 2827 +0 2800 2778 +0 2838 2704 +0 2885 2581 +0 2941 2336 +0 3007 938 +0 3082 0 +0 3166 0 +0 3259 0 +0 3359 0 +0 3466 0 +0 3578 0 +0 3695 0 +0 2663 2953 +0 2664 2953 +0 2664 2952 +0 2664 2952 +0 2665 2952 +0 2665 2951 +0 2666 2951 +0 2667 2950 +0 2668 2949 +0 2670 2948 +0 2672 2946 +0 2675 2943 +0 2679 2940 +0 2684 2935 +0 2690 2928 +0 2699 2920 +0 2711 2908 +0 2726 2891 +0 2745 2868 +0 2770 2836 +0 2801 2788 +0 2840 2716 +0 2886 2596 +0 2942 2362 +0 3008 1311 +0 3083 0 +0 3167 0 +0 3260 0 +0 3360 0 +0 3466 0 +0 3579 0 +0 3695 0 +0 2666 2962 +0 2666 2962 +0 2666 2962 +0 2667 2961 +0 2667 2961 +0 2667 2961 +0 2668 2960 +0 2669 2959 +0 2670 2958 +0 2672 2957 +0 2674 2955 +0 2677 2952 +0 2681 2949 +0 2686 2944 +0 2693 2938 +0 2701 2929 +0 2713 2918 +0 2728 2902 +0 2747 2879 +0 2772 2848 +0 2803 2801 +0 2841 2731 +0 2888 2616 +0 2944 2395 +0 3009 1565 +0 3084 0 +0 3168 0 +0 3260 0 +0 3360 0 +0 3467 0 +0 3579 0 +0 3695 0 +0 2669 2974 +0 2669 2974 +0 2669 2973 +0 2670 2973 +0 2670 2973 +0 2671 2972 +0 2671 2972 +0 2672 2971 +0 2673 2970 +0 2675 2969 +0 2677 2967 +0 2680 2964 +0 2684 2961 +0 2689 2957 +0 2696 2950 +0 2704 2942 +0 2716 2931 +0 2731 2915 +0 2750 2894 +0 2774 2863 +0 2805 2818 +0 2843 2751 +0 2890 2641 +0 2945 2435 +0 3010 1770 +0 3085 0 +0 3169 0 +0 3261 0 +0 3361 0 +0 3467 0 +0 3579 0 +0 3696 0 +0 2673 2989 +0 2673 2989 +0 2674 2989 +0 2674 2989 +0 2674 2988 +0 2675 2988 +0 2676 2987 +0 2676 2987 +0 2678 2986 +0 2679 2984 +0 2681 2982 +0 2684 2980 +0 2688 2977 +0 2693 2973 +0 2700 2967 +0 2708 2959 +0 2720 2948 +0 2735 2933 +0 2754 2912 +0 2778 2882 +0 2808 2840 +0 2846 2775 +0 2893 2672 +0 2948 2483 +0 3013 1950 +0 3087 0 +0 3170 0 +0 3262 0 +0 3362 0 +0 3468 0 +0 3580 0 +0 3696 0 +0 2679 3009 +0 2679 3009 +0 2679 3009 +0 2680 3008 +0 2680 3008 +0 2680 3008 +0 2681 3007 +0 2682 3007 +0 2683 3006 +0 2685 3004 +0 2687 3003 +0 2690 3000 +0 2693 2997 +0 2698 2993 +0 2705 2987 +0 2714 2980 +0 2725 2969 +0 2739 2955 +0 2758 2935 +0 2782 2907 +0 2813 2867 +0 2850 2807 +0 2896 2711 +0 2951 2541 +0 3015 2115 +0 3089 0 +0 3172 0 +0 3264 0 +0 3363 0 +0 3469 0 +0 3581 0 +0 3697 0 +1182 2686 3034 +1173 2686 3034 +1160 2687 3034 +1143 2687 3034 +1119 2687 3033 +1084 2688 3033 +1033 2688 3033 +955 2689 3032 +824 2691 3031 +554 2692 3030 +0 2694 3028 +0 2697 3026 +0 2701 3023 +0 2706 3019 +0 2712 3014 +0 2720 3007 +0 2731 2997 +0 2746 2983 +0 2764 2965 +0 2788 2939 +0 2818 2901 +0 2855 2846 +0 2901 2759 +0 2955 2608 +0 3019 2271 +0 3092 0 +0 3175 0 +0 3266 0 +0 3365 0 +0 3470 0 +0 3582 0 +0 3697 0 +2191 2696 3066 +2190 2696 3066 +2189 2696 3066 +2187 2697 3065 +2185 2697 3065 +2182 2698 3065 +2177 2698 3064 +2172 2699 3064 +2164 2700 3063 +2153 2702 3062 +2138 2704 3060 +2117 2706 3058 +2088 2710 3055 +2046 2715 3052 +1983 2721 3047 +1881 2729 3040 +1696 2740 3031 +1189 2754 3019 +0 2773 3001 +0 2796 2977 +0 2825 2943 +0 2862 2893 +0 2907 2815 +0 2960 2685 +0 3023 2419 +0 3096 0 +0 3178 0 +0 3269 0 +0 3367 0 +0 3472 0 +0 3583 0 +0 3699 0 +2548 2709 3105 +2548 2709 3105 +2547 2709 3105 +2546 2709 3105 +2545 2710 3104 +2544 2710 3104 +2542 2711 3104 +2539 2712 3103 +2536 2713 3102 +2531 2714 3101 +2524 2716 3100 +2516 2719 3098 +2504 2722 3095 +2487 2727 3092 +2464 2733 3088 +2432 2741 3082 +2384 2752 3073 +2311 2766 3062 +2191 2783 3046 +1956 2806 3025 +876 2835 2994 +0 2871 2949 +0 2915 2881 +0 2967 2771 +0 3030 2564 +0 3101 1888 +0 3182 0 +0 3272 0 +0 3370 0 +0 3474 0 +0 3585 0 +0 3700 0 +2796 2725 3153 +2796 2725 3152 +2796 2725 3152 +2795 2726 3152 +2795 2726 3152 +2794 2726 3152 +2793 2727 3151 +2791 2728 3151 +2789 2729 3150 +2787 2730 3149 +2783 2732 3148 +2778 2735 3146 +2771 2738 3144 +2762 2743 3141 +2750 2749 3137 +2733 2756 3131 +2709 2767 3124 +2675 2780 3114 +2625 2797 3100 +2548 2819 3081 +2419 2847 3054 +2157 2882 3015 +0 2925 2957 +0 2977 2865 +0 3038 2704 +0 3108 2323 +0 3188 0 +0 3277 0 +0 3374 0 +0 3478 0 +0 3587 0 +0 3702 0 +2999 2746 3209 +2999 2746 3209 +2999 2746 3209 +2999 2747 3209 +2998 2747 3209 +2998 2747 3209 +2997 2748 3208 +2996 2749 3208 +2995 2750 3207 +2993 2751 3206 +2991 2753 3205 +2988 2755 3204 +2984 2759 3202 +2978 2763 3199 +2970 2769 3196 +2960 2776 3191 +2945 2786 3184 +2925 2799 3175 +2897 2815 3163 +2857 2837 3147 +2796 2864 3123 +2699 2897 3090 +2527 2939 3041 +2089 2989 2967 +0 3048 2843 +0 3118 2597 +0 3196 1111 +0 3283 0 +0 3379 0 +0 3482 0 +0 3590 0 +0 3704 0 +3178 2773 3276 +3178 2773 3275 +3178 2773 3275 +3178 2773 3275 +3177 2774 3275 +3177 2774 3275 +3177 2775 3275 +3176 2775 3274 +3175 2776 3274 +3174 2778 3273 +3172 2779 3272 +3170 2782 3271 +3167 2785 3269 +3164 2789 3267 +3159 2794 3264 +3152 2801 3260 +3142 2811 3254 +3130 2823 3246 +3112 2838 3236 +3087 2859 3222 +3051 2884 3202 +2999 2917 3174 +2918 2956 3134 +2780 3005 3074 +2488 3062 2980 +0 3130 2811 +0 3206 2395 +0 3292 0 +0 3386 0 +0 3487 0 +0 3595 0 +0 3708 0 +3342 2806 3351 +3342 2806 3351 +3342 2807 3351 +3342 2807 3351 +3342 2807 3351 +3341 2807 3351 +3341 2808 3350 +3341 2809 3350 +3340 2810 3350 +3339 2811 3349 +3338 2812 3348 +3337 2814 3347 +3335 2817 3346 +3332 2821 3344 +3329 2826 3341 +3324 2833 3338 +3318 2841 3333 +3309 2853 3327 +3297 2867 3318 +3281 2886 3306 +3258 2911 3290 +3225 2941 3267 +3177 2979 3235 +3105 3025 3187 +2985 3080 3115 +2750 3145 2997 +1687 3219 2766 +0 3303 1775 +0 3395 0 +0 3494 0 +0 3600 0 +0 3712 0 +3497 2847 3436 +3497 2848 3436 +3497 2848 3436 +3497 2848 3436 +3496 2848 3436 +3496 2849 3436 +3496 2849 3436 +3496 2850 3435 +3495 2850 3435 +3495 2852 3434 +3494 2853 3434 +3493 2855 3433 +3492 2858 3432 +3490 2861 3430 +3487 2866 3428 +3484 2872 3425 +3479 2880 3421 +3473 2890 3416 +3465 2904 3409 +3454 2921 3399 +3438 2944 3386 +3417 2972 3368 +3386 3008 3342 +3341 3051 3305 +3274 3103 3250 +3165 3165 3165 +2960 3236 3019 +2308 3317 2696 +0 3406 0 +0 3504 0 +0 3608 0 +0 3718 0 +3645 2897 3529 +3645 2897 3529 +3645 2898 3529 +3645 2898 3529 +3645 2898 3529 +3645 2898 3529 +3644 2899 3529 +3644 2899 3529 +3644 2900 3528 +3644 2901 3528 +3643 2902 3527 +3642 2904 3527 +3641 2906 3526 +3640 2909 3524 +3638 2914 3523 +3636 2919 3520 +3633 2926 3517 +3628 2936 3513 +3622 2948 3507 +3614 2964 3500 +3604 2984 3489 +3589 3011 3474 +3568 3043 3454 +3539 3084 3426 +3496 3132 3384 +3432 3191 3322 +3330 3258 3224 +3143 3335 3046 +2623 3421 2582 +0 3516 0 +0 3618 0 +0 3726 0 +3789 2956 3630 +3789 2956 3630 +3789 2957 3630 +3789 2957 3630 +3789 2957 3630 +3789 2957 3630 +3788 2958 3630 +3788 2958 3630 +3788 2959 3629 +3788 2960 3629 +3787 2961 3629 +3787 2962 3628 +3786 2964 3627 +3785 2967 3626 +3784 2971 3625 +3782 2976 3623 +3780 2982 3620 +3777 2990 3617 +3772 3001 3613 +3767 3015 3606 +3759 3034 3598 +3748 3057 3587 +3734 3087 3571 +3714 3124 3549 +3685 3169 3518 +3644 3222 3473 +3583 3286 3404 +3485 3359 3292 +3309 3441 3081 +2855 3532 2365 +0 3630 0 +0 3736 0 +3929 3025 3737 +3929 3025 3737 +3929 3025 3737 +3929 3025 3737 +3929 3026 3737 +3929 3026 3737 +3929 3026 3737 +3929 3026 3737 +3929 3027 3737 +3929 3028 3736 +3928 3029 3736 +3928 3030 3736 +3927 3032 3735 +3927 3034 3734 +3926 3037 3733 +3925 3042 3732 +3923 3047 3730 +3921 3054 3727 +3918 3064 3723 +3913 3076 3719 +3908 3092 3712 +3900 3113 3703 +3890 3139 3691 +3876 3172 3674 +3856 3213 3651 +3828 3262 3618 +3788 3320 3569 +3728 3388 3494 +3634 3466 3370 +3465 3552 3123 +3050 3647 1588 +0 3749 0 +4068 3103 3850 +4068 3103 3850 +4068 3103 3850 +4068 3103 3850 +4068 3104 3850 +4068 3104 3850 +4068 3104 3850 +4068 3104 3849 +4067 3105 3849 +4067 3105 3849 +4067 3106 3849 +4067 3107 3849 +4066 3109 3848 +4066 3111 3847 +4065 3114 3847 +4064 3117 3845 +4063 3122 3844 +4061 3128 3842 +4059 3136 3839 +4056 3147 3835 +4052 3160 3830 +4046 3178 3823 +4039 3201 3814 +4029 3230 3801 +4015 3266 3784 +3995 3310 3759 +3968 3363 3724 +3929 3425 3672 +3870 3497 3592 +3778 3578 3457 +3615 3668 3174 +3224 3766 0 +4095 3190 3967 +4095 3190 3967 +4095 3190 3967 +4095 3190 3967 +4095 3191 3967 +4095 3191 3967 +4095 3191 3967 +4095 3191 3966 +4095 3192 3966 +4095 3192 3966 +4095 3193 3966 +4095 3194 3966 +4095 3195 3965 +4095 3197 3965 +4095 3199 3964 +4095 3202 3963 +4095 3206 3962 +4095 3211 3961 +4095 3217 3958 +4095 3226 3956 +4095 3238 3952 +4095 3253 3946 +4095 3273 3939 +4095 3297 3930 +4095 3328 3917 +4095 3367 3898 +4095 3414 3873 +4095 3470 3836 +4067 3536 3782 +4009 3611 3697 +3919 3695 3552 +3759 3788 3235 +4095 3285 4087 +4095 3285 4087 +4095 3286 4087 +4095 3286 4087 +4095 3286 4087 +4095 3286 4087 +4095 3286 4087 +4095 3286 4087 +4095 3287 4087 +4095 3287 4087 +4095 3288 4087 +4095 3288 4086 +4095 3289 4086 +4095 3291 4086 +4095 3292 4085 +4095 3295 4084 +4095 3298 4084 +4095 3302 4082 +4095 3308 4081 +4095 3315 4079 +4095 3325 4076 +4095 3337 4072 +4095 3353 4066 +4095 3374 4059 +4095 3401 4049 +4095 3434 4036 +4095 3475 4017 +4095 3524 3990 +4095 3583 3952 +4095 3651 3896 +4095 3729 3808 +4057 3815 3655 +0 2788 3057 +0 2789 3057 +0 2789 3057 +0 2789 3057 +0 2789 3057 +0 2790 3056 +0 2790 3056 +0 2791 3055 +0 2792 3054 +0 2793 3053 +0 2795 3052 +0 2797 3050 +0 2800 3047 +0 2804 3043 +0 2809 3038 +0 2816 3031 +0 2825 3022 +0 2837 3009 +0 2852 2992 +0 2872 2967 +0 2897 2932 +0 2928 2880 +0 2967 2801 +0 3014 2666 +0 3071 2384 +0 3137 0 +0 3212 0 +0 3297 0 +0 3390 0 +0 3490 0 +0 3597 0 +0 3710 0 +0 2788 3058 +0 2789 3058 +0 2789 3057 +0 2789 3057 +0 2789 3057 +0 2790 3057 +0 2790 3056 +0 2791 3055 +0 2792 3055 +0 2793 3053 +0 2795 3052 +0 2797 3050 +0 2800 3047 +0 2804 3043 +0 2809 3038 +0 2816 3032 +0 2825 3022 +0 2837 3010 +0 2852 2992 +0 2872 2967 +0 2897 2932 +0 2928 2881 +0 2967 2801 +0 3014 2666 +0 3071 2385 +0 3137 0 +0 3212 0 +0 3297 0 +0 3390 0 +0 3490 0 +0 3597 0 +0 3710 0 +0 2788 3058 +0 2789 3058 +0 2789 3058 +0 2789 3057 +0 2789 3057 +0 2790 3057 +0 2790 3056 +0 2791 3056 +0 2792 3055 +0 2793 3054 +0 2795 3052 +0 2797 3050 +0 2800 3047 +0 2804 3044 +0 2809 3039 +0 2816 3032 +0 2825 3023 +0 2837 3010 +0 2852 2992 +0 2872 2968 +0 2897 2933 +0 2928 2881 +0 2967 2801 +0 3014 2667 +0 3071 2386 +0 3137 0 +0 3212 0 +0 3297 0 +0 3390 0 +0 3490 0 +0 3597 0 +0 3710 0 +0 2789 3058 +0 2789 3058 +0 2789 3058 +0 2789 3058 +0 2789 3057 +0 2790 3057 +0 2790 3057 +0 2791 3056 +0 2792 3055 +0 2793 3054 +0 2795 3052 +0 2797 3050 +0 2800 3048 +0 2804 3044 +0 2809 3039 +0 2816 3032 +0 2825 3023 +0 2837 3010 +0 2852 2993 +0 2872 2968 +0 2897 2933 +0 2928 2881 +0 2967 2802 +0 3014 2667 +0 3071 2387 +0 3137 0 +0 3212 0 +0 3297 0 +0 3390 0 +0 3490 0 +0 3597 0 +0 3710 0 +0 2789 3059 +0 2789 3058 +0 2789 3058 +0 2789 3058 +0 2789 3058 +0 2790 3058 +0 2790 3057 +0 2791 3056 +0 2792 3056 +0 2793 3054 +0 2795 3053 +0 2797 3051 +0 2800 3048 +0 2804 3044 +0 2809 3039 +0 2816 3033 +0 2825 3023 +0 2837 3011 +0 2852 2993 +0 2872 2969 +0 2897 2934 +0 2928 2882 +0 2967 2802 +0 3014 2668 +0 3071 2389 +0 3137 0 +0 3212 0 +0 3297 0 +0 3390 0 +0 3490 0 +0 3597 0 +0 3710 0 +0 2789 3059 +0 2789 3059 +0 2789 3059 +0 2789 3059 +0 2790 3058 +0 2790 3058 +0 2791 3058 +0 2791 3057 +0 2792 3056 +0 2793 3055 +0 2795 3053 +0 2797 3051 +0 2800 3049 +0 2804 3045 +0 2809 3040 +0 2816 3033 +0 2825 3024 +0 2837 3011 +0 2852 2994 +0 2872 2969 +0 2897 2934 +0 2928 2883 +0 2967 2803 +0 3014 2670 +0 3071 2391 +0 3137 0 +0 3212 0 +0 3297 0 +0 3390 0 +0 3490 0 +0 3597 0 +0 3710 0 +0 2789 3060 +0 2789 3060 +0 2789 3060 +0 2789 3059 +0 2790 3059 +0 2790 3059 +0 2791 3058 +0 2791 3058 +0 2792 3057 +0 2794 3056 +0 2795 3054 +0 2797 3052 +0 2800 3049 +0 2804 3046 +0 2810 3041 +0 2816 3034 +0 2825 3025 +0 2837 3012 +0 2852 2995 +0 2872 2970 +0 2897 2935 +0 2928 2884 +0 2967 2805 +0 3015 2671 +0 3071 2394 +0 3137 0 +0 3212 0 +0 3297 0 +0 3390 0 +0 3490 0 +0 3597 0 +0 3710 0 +0 2789 3061 +0 2789 3061 +0 2789 3061 +0 2790 3060 +0 2790 3060 +0 2790 3060 +0 2791 3059 +0 2792 3059 +0 2793 3058 +0 2794 3057 +0 2795 3055 +0 2798 3053 +0 2801 3050 +0 2805 3047 +0 2810 3042 +0 2817 3035 +0 2826 3026 +0 2837 3013 +0 2853 2996 +0 2872 2971 +0 2897 2936 +0 2929 2885 +0 2967 2806 +0 3015 2673 +0 3071 2398 +0 3137 0 +0 3212 0 +0 3297 0 +0 3390 0 +0 3491 0 +0 3597 0 +0 3710 0 +0 2790 3062 +0 2790 3062 +0 2790 3062 +0 2790 3062 +0 2790 3061 +0 2791 3061 +0 2791 3060 +0 2792 3060 +0 2793 3059 +0 2794 3058 +0 2796 3056 +0 2798 3054 +0 2801 3052 +0 2805 3048 +0 2810 3043 +0 2817 3036 +0 2826 3027 +0 2838 3014 +0 2853 2997 +0 2872 2973 +0 2897 2938 +0 2929 2887 +0 2968 2809 +0 3015 2676 +0 3071 2404 +0 3137 0 +0 3213 0 +0 3297 0 +0 3390 0 +0 3491 0 +0 3598 0 +0 3710 0 +0 2790 3064 +0 2790 3064 +0 2790 3063 +0 2790 3063 +0 2791 3063 +0 2791 3063 +0 2792 3062 +0 2792 3062 +0 2793 3061 +0 2795 3060 +0 2796 3058 +0 2798 3056 +0 2801 3053 +0 2805 3050 +0 2810 3045 +0 2817 3038 +0 2826 3029 +0 2838 3016 +0 2853 2999 +0 2873 2975 +0 2898 2940 +0 2929 2890 +0 2968 2811 +0 3015 2680 +0 3072 2411 +0 3137 0 +0 3213 0 +0 3297 0 +0 3390 0 +0 3491 0 +0 3598 0 +0 3710 0 +0 2791 3066 +0 2791 3066 +0 2791 3066 +0 2791 3065 +0 2791 3065 +0 2792 3065 +0 2792 3064 +0 2793 3064 +0 2794 3063 +0 2795 3062 +0 2797 3060 +0 2799 3058 +0 2802 3056 +0 2806 3052 +0 2811 3047 +0 2818 3040 +0 2827 3031 +0 2838 3019 +0 2854 3002 +0 2873 2978 +0 2898 2943 +0 2930 2893 +0 2968 2815 +0 3016 2685 +0 3072 2420 +0 3138 0 +0 3213 0 +0 3297 0 +0 3390 0 +0 3491 0 +0 3598 0 +0 3710 0 +0 2791 3069 +0 2791 3069 +0 2792 3069 +0 2792 3068 +0 2792 3068 +0 2792 3068 +0 2793 3067 +0 2794 3067 +0 2795 3066 +0 2796 3065 +0 2798 3063 +0 2800 3061 +0 2803 3059 +0 2807 3055 +0 2812 3050 +0 2819 3043 +0 2827 3034 +0 2839 3022 +0 2854 3005 +0 2874 2981 +0 2899 2947 +0 2930 2897 +0 2969 2821 +0 3016 2692 +0 3072 2432 +0 3138 0 +0 3213 0 +0 3298 0 +0 3391 0 +0 3491 0 +0 3598 0 +0 3710 0 +0 2792 3073 +0 2792 3073 +0 2793 3073 +0 2793 3072 +0 2793 3072 +0 2793 3072 +0 2794 3071 +0 2795 3071 +0 2796 3070 +0 2797 3069 +0 2799 3067 +0 2801 3065 +0 2804 3063 +0 2808 3059 +0 2813 3054 +0 2819 3048 +0 2828 3039 +0 2840 3026 +0 2855 3010 +0 2875 2986 +0 2900 2952 +0 2931 2903 +0 2970 2827 +0 3017 2701 +0 3073 2448 +0 3138 0 +0 3214 0 +0 3298 0 +0 3391 0 +0 3491 0 +0 3598 0 +0 3710 0 +0 2794 3078 +0 2794 3078 +0 2794 3078 +0 2794 3078 +0 2794 3077 +0 2795 3077 +0 2795 3077 +0 2796 3076 +0 2797 3075 +0 2798 3074 +0 2800 3073 +0 2802 3071 +0 2805 3068 +0 2809 3064 +0 2814 3060 +0 2821 3053 +0 2830 3044 +0 2841 3032 +0 2856 3016 +0 2876 2992 +0 2901 2959 +0 2932 2911 +0 2970 2836 +0 3017 2713 +0 3074 2468 +0 3139 1070 +0 3214 0 +0 3298 0 +0 3391 0 +0 3491 0 +0 3598 0 +0 3710 0 +0 2795 3085 +0 2796 3085 +0 2796 3085 +0 2796 3085 +0 2796 3084 +0 2797 3084 +0 2797 3084 +0 2798 3083 +0 2799 3082 +0 2800 3081 +0 2802 3080 +0 2804 3078 +0 2807 3075 +0 2811 3072 +0 2816 3067 +0 2822 3060 +0 2831 3052 +0 2843 3040 +0 2858 3023 +0 2877 3001 +0 2902 2968 +0 2933 2920 +0 2972 2848 +0 3019 2728 +0 3075 2494 +0 3140 1443 +0 3215 0 +0 3299 0 +0 3392 0 +0 3492 0 +0 3599 0 +0 3711 0 +0 2798 3094 +0 2798 3094 +0 2798 3094 +0 2798 3094 +0 2799 3093 +0 2799 3093 +0 2800 3093 +0 2800 3092 +0 2801 3091 +0 2802 3090 +0 2804 3089 +0 2806 3087 +0 2809 3084 +0 2813 3081 +0 2818 3076 +0 2825 3070 +0 2834 3062 +0 2845 3050 +0 2860 3034 +0 2879 3011 +0 2904 2980 +0 2935 2933 +0 2973 2863 +0 3020 2748 +0 3076 2527 +0 3141 1697 +0 3216 0 +0 3300 0 +0 3392 0 +0 3492 0 +0 3599 0 +0 3711 0 +0 2801 3106 +0 2801 3106 +0 2801 3106 +0 2802 3106 +0 2802 3105 +0 2802 3105 +0 2803 3105 +0 2803 3104 +0 2804 3103 +0 2806 3102 +0 2807 3101 +0 2809 3099 +0 2812 3096 +0 2816 3093 +0 2821 3089 +0 2828 3083 +0 2837 3074 +0 2848 3063 +0 2863 3047 +0 2882 3026 +0 2907 2995 +0 2937 2950 +0 2976 2883 +0 3022 2773 +0 3078 2567 +0 3143 1902 +0 3217 0 +0 3301 0 +0 3393 0 +0 3493 0 +0 3599 0 +0 3711 0 +0 2805 3121 +0 2805 3121 +0 2806 3121 +0 2806 3121 +0 2806 3121 +0 2806 3120 +0 2807 3120 +0 2808 3119 +0 2809 3119 +0 2810 3118 +0 2811 3116 +0 2814 3115 +0 2816 3112 +0 2820 3109 +0 2825 3105 +0 2832 3099 +0 2840 3091 +0 2852 3080 +0 2867 3065 +0 2886 3044 +0 2910 3014 +0 2940 2972 +0 2978 2908 +0 3025 2805 +0 3080 2615 +0 3145 2083 +0 3219 0 +0 3302 0 +0 3394 0 +0 3494 0 +0 3600 0 +0 3712 0 +0 2811 3141 +0 2811 3141 +0 2811 3141 +0 2811 3141 +0 2812 3141 +0 2812 3140 +0 2813 3140 +0 2813 3139 +0 2814 3139 +0 2815 3138 +0 2817 3136 +0 2819 3135 +0 2822 3132 +0 2826 3129 +0 2831 3125 +0 2837 3120 +0 2846 3112 +0 2857 3101 +0 2872 3087 +0 2890 3067 +0 2914 3039 +0 2945 2999 +0 2982 2939 +0 3028 2843 +0 3083 2673 +0 3147 2248 +0 3221 0 +0 3304 0 +0 3396 0 +0 3495 0 +0 3601 0 +0 3713 0 +1321 2818 3166 +1314 2818 3166 +1305 2819 3166 +1292 2819 3166 +1275 2819 3166 +1251 2819 3165 +1216 2820 3165 +1165 2821 3165 +1087 2821 3164 +956 2823 3163 +686 2824 3162 +0 2826 3160 +0 2829 3158 +0 2833 3155 +0 2838 3151 +0 2844 3146 +0 2853 3139 +0 2864 3129 +0 2878 3115 +0 2897 3097 +0 2920 3071 +0 2950 3033 +0 2987 2978 +0 3033 2891 +0 3087 2740 +0 3151 2403 +0 3224 0 +0 3307 0 +0 3398 0 +0 3497 0 +0 3603 0 +0 3714 0 +2324 2828 3198 +2323 2828 3198 +2322 2828 3198 +2321 2828 3198 +2319 2829 3197 +2317 2829 3197 +2314 2830 3197 +2309 2830 3196 +2304 2831 3196 +2296 2832 3195 +2285 2834 3194 +2270 2836 3192 +2249 2839 3190 +2220 2842 3188 +2178 2847 3184 +2115 2853 3179 +2013 2862 3172 +1828 2872 3163 +1321 2887 3151 +0 2905 3134 +0 2928 3109 +0 2957 3075 +0 2994 3025 +0 3039 2947 +0 3092 2817 +0 3156 2552 +0 3228 0 +0 3310 0 +0 3401 0 +0 3499 0 +0 3604 0 +0 3715 0 +2680 2841 3237 +2680 2841 3237 +2680 2841 3237 +2679 2841 3237 +2678 2841 3237 +2677 2842 3236 +2676 2842 3236 +2674 2843 3236 +2671 2844 3235 +2668 2845 3234 +2663 2846 3233 +2657 2848 3232 +2648 2851 3230 +2636 2854 3228 +2620 2859 3224 +2597 2865 3220 +2564 2873 3214 +2516 2884 3205 +2444 2898 3194 +2324 2915 3178 +2088 2938 3157 +1008 2967 3126 +0 3003 3081 +0 3047 3013 +0 3100 2903 +0 3162 2696 +0 3233 2020 +0 3315 0 +0 3404 0 +0 3502 0 +0 3607 0 +0 3717 0 +2929 2857 3285 +2929 2857 3285 +2928 2857 3285 +2928 2858 3284 +2927 2858 3284 +2927 2858 3284 +2926 2859 3284 +2925 2859 3283 +2923 2860 3283 +2921 2861 3282 +2919 2863 3281 +2915 2864 3280 +2910 2867 3278 +2903 2870 3276 +2894 2875 3273 +2882 2881 3269 +2865 2889 3264 +2841 2899 3256 +2807 2912 3246 +2757 2929 3232 +2680 2952 3213 +2551 2980 3186 +2289 3014 3147 +0 3057 3089 +0 3109 2997 +0 3170 2837 +0 3240 2456 +0 3320 0 +0 3409 0 +0 3506 0 +0 3610 0 +0 3719 0 +3132 2878 3341 +3132 2878 3341 +3131 2878 3341 +3131 2879 3341 +3131 2879 3341 +3130 2879 3341 +3130 2880 3341 +3129 2880 3340 +3128 2881 3340 +3127 2882 3339 +3125 2883 3338 +3123 2885 3337 +3120 2888 3336 +3116 2891 3334 +3110 2895 3331 +3102 2901 3328 +3092 2908 3323 +3077 2918 3316 +3057 2931 3307 +3029 2947 3295 +2989 2969 3279 +2928 2996 3255 +2832 3029 3222 +2659 3071 3173 +2222 3121 3099 +0 3181 2975 +0 3250 2729 +0 3328 1243 +0 3415 0 +0 3511 0 +0 3614 0 +0 3723 0 +3310 2905 3408 +3310 2905 3408 +3310 2905 3408 +3310 2905 3407 +3310 2906 3407 +3309 2906 3407 +3309 2906 3407 +3309 2907 3407 +3308 2907 3406 +3307 2908 3406 +3306 2910 3405 +3304 2911 3404 +3302 2914 3403 +3300 2917 3401 +3296 2921 3399 +3291 2926 3396 +3284 2933 3392 +3274 2943 3386 +3262 2955 3378 +3244 2970 3368 +3219 2991 3354 +3183 3016 3334 +3131 3049 3306 +3050 3089 3266 +2912 3137 3207 +2620 3195 3112 +0 3262 2944 +0 3338 2528 +0 3424 0 +0 3518 0 +0 3619 0 +0 3727 0 +3474 2938 3483 +3474 2938 3483 +3474 2939 3483 +3474 2939 3483 +3474 2939 3483 +3474 2939 3483 +3474 2940 3483 +3473 2940 3483 +3473 2941 3482 +3472 2942 3482 +3471 2943 3481 +3470 2944 3480 +3469 2947 3479 +3467 2949 3478 +3464 2953 3476 +3461 2958 3473 +3456 2965 3470 +3450 2973 3465 +3441 2985 3459 +3429 3000 3450 +3413 3019 3438 +3390 3043 3422 +3357 3073 3399 +3310 3111 3367 +3237 3157 3320 +3117 3213 3248 +2883 3277 3129 +1820 3351 2898 +0 3435 1907 +0 3527 0 +0 3626 0 +0 3732 0 +3629 2980 3568 +3629 2980 3568 +3629 2980 3568 +3629 2980 3568 +3629 2980 3568 +3629 2980 3568 +3628 2981 3568 +3628 2981 3568 +3628 2982 3567 +3627 2983 3567 +3627 2984 3566 +3626 2985 3566 +3625 2987 3565 +3624 2990 3564 +3622 2993 3562 +3619 2998 3560 +3616 3004 3557 +3612 3012 3553 +3605 3022 3548 +3597 3036 3541 +3586 3053 3531 +3570 3076 3518 +3549 3104 3500 +3518 3140 3474 +3474 3183 3437 +3406 3235 3382 +3297 3297 3297 +3092 3368 3151 +2441 3449 2828 +0 3538 0 +0 3636 0 +0 3740 0 +3777 3029 3662 +3777 3029 3662 +3777 3030 3662 +3777 3030 3661 +3777 3030 3661 +3777 3030 3661 +3777 3030 3661 +3777 3031 3661 +3776 3031 3661 +3776 3032 3660 +3776 3033 3660 +3775 3034 3660 +3774 3036 3659 +3773 3038 3658 +3772 3042 3657 +3770 3046 3655 +3768 3051 3652 +3765 3058 3649 +3760 3068 3645 +3754 3080 3639 +3747 3096 3632 +3736 3117 3621 +3721 3143 3606 +3700 3175 3586 +3671 3216 3558 +3628 3265 3516 +3564 3323 3455 +3462 3390 3356 +3275 3467 3178 +2755 3554 2715 +0 3648 0 +0 3750 0 +3921 3088 3762 +3921 3088 3762 +3921 3089 3762 +3921 3089 3762 +3921 3089 3762 +3921 3089 3762 +3921 3089 3762 +3921 3090 3762 +3920 3090 3762 +3920 3091 3761 +3920 3092 3761 +3919 3093 3761 +3919 3094 3760 +3918 3096 3759 +3917 3099 3758 +3916 3103 3757 +3914 3108 3755 +3912 3114 3753 +3909 3122 3749 +3905 3133 3745 +3899 3148 3738 +3891 3166 3730 +3881 3189 3719 +3866 3219 3703 +3846 3256 3681 +3817 3301 3650 +3776 3355 3605 +3715 3418 3536 +3617 3491 3424 +3441 3573 3213 +2987 3664 2497 +0 3762 0 +4062 3157 3869 +4062 3157 3869 +4062 3157 3869 +4062 3157 3869 +4062 3157 3869 +4061 3158 3869 +4061 3158 3869 +4061 3158 3869 +4061 3159 3869 +4061 3159 3869 +4061 3160 3869 +4060 3161 3868 +4060 3162 3868 +4060 3164 3867 +4059 3166 3866 +4058 3169 3865 +4057 3174 3864 +4055 3179 3862 +4053 3186 3859 +4050 3196 3856 +4045 3208 3851 +4040 3224 3844 +4032 3245 3835 +4022 3271 3823 +4008 3304 3806 +3988 3345 3783 +3960 3394 3750 +3920 3452 3701 +3860 3520 3626 +3766 3598 3502 +3598 3684 3255 +3182 3779 1720 +4095 3235 3982 +4095 3235 3982 +4095 3235 3982 +4095 3235 3982 +4095 3235 3982 +4095 3236 3982 +4095 3236 3982 +4095 3236 3982 +4095 3236 3982 +4095 3237 3981 +4095 3238 3981 +4095 3238 3981 +4095 3239 3981 +4095 3241 3980 +4095 3243 3979 +4095 3246 3979 +4095 3249 3978 +4095 3254 3976 +4095 3260 3974 +4095 3268 3971 +4095 3279 3967 +4095 3293 3962 +4095 3310 3956 +4095 3333 3946 +4095 3362 3934 +4095 3398 3916 +4095 3442 3891 +4095 3495 3856 +4061 3557 3804 +4002 3629 3724 +3910 3710 3589 +3747 3800 3306 +4095 3322 4095 +4095 3322 4095 +4095 3322 4095 +4095 3322 4095 +4095 3322 4095 +4095 3323 4095 +4095 3323 4095 +4095 3323 4095 +4095 3323 4095 +4095 3324 4095 +4095 3324 4095 +4095 3325 4095 +4095 3326 4095 +4095 3327 4095 +4095 3329 4095 +4095 3331 4095 +4095 3334 4095 +4095 3338 4094 +4095 3343 4093 +4095 3350 4090 +4095 3358 4088 +4095 3370 4084 +4095 3385 4079 +4095 3405 4071 +4095 3429 4062 +4095 3461 4049 +4095 3499 4030 +4095 3546 4005 +4095 3602 3968 +4095 3668 3914 +4095 3743 3829 +4051 3827 3684 +0 2920 3190 +0 2920 3189 +0 2921 3189 +0 2921 3189 +0 2921 3189 +0 2921 3189 +0 2922 3188 +0 2922 3188 +0 2923 3187 +0 2924 3186 +0 2925 3185 +0 2927 3184 +0 2929 3182 +0 2932 3179 +0 2936 3175 +0 2941 3170 +0 2948 3163 +0 2957 3154 +0 2969 3141 +0 2984 3124 +0 3004 3099 +0 3029 3064 +0 3060 3012 +0 3099 2932 +0 3146 2798 +0 3203 2515 +0 3269 0 +0 3344 0 +0 3429 0 +0 3522 0 +0 3622 0 +0 3729 0 +0 2920 3190 +0 2920 3190 +0 2921 3189 +0 2921 3189 +0 2921 3189 +0 2921 3189 +0 2922 3189 +0 2922 3188 +0 2923 3187 +0 2924 3187 +0 2925 3185 +0 2927 3184 +0 2929 3182 +0 2932 3179 +0 2936 3175 +0 2941 3170 +0 2948 3163 +0 2957 3154 +0 2969 3142 +0 2984 3124 +0 3004 3099 +0 3029 3064 +0 3060 3013 +0 3099 2933 +0 3146 2798 +0 3203 2516 +0 3269 0 +0 3344 0 +0 3429 0 +0 3522 0 +0 3622 0 +0 3729 0 +0 2920 3190 +0 2921 3190 +0 2921 3190 +0 2921 3189 +0 2921 3189 +0 2921 3189 +0 2922 3189 +0 2922 3188 +0 2923 3188 +0 2924 3187 +0 2925 3186 +0 2927 3184 +0 2929 3182 +0 2932 3179 +0 2936 3176 +0 2941 3170 +0 2948 3164 +0 2957 3154 +0 2969 3142 +0 2984 3124 +0 3004 3100 +0 3029 3064 +0 3060 3013 +0 3099 2933 +0 3146 2798 +0 3203 2517 +0 3269 0 +0 3344 0 +0 3429 0 +0 3522 0 +0 3622 0 +0 3729 0 +0 2920 3190 +0 2921 3190 +0 2921 3190 +0 2921 3190 +0 2921 3190 +0 2921 3189 +0 2922 3189 +0 2922 3188 +0 2923 3188 +0 2924 3187 +0 2925 3186 +0 2927 3184 +0 2929 3182 +0 2932 3179 +0 2936 3176 +0 2941 3171 +0 2948 3164 +0 2957 3155 +0 2969 3142 +0 2984 3124 +0 3004 3100 +0 3029 3065 +0 3060 3013 +0 3099 2933 +0 3146 2799 +0 3203 2518 +0 3269 0 +0 3344 0 +0 3429 0 +0 3522 0 +0 3622 0 +0 3729 0 +0 2921 3190 +0 2921 3190 +0 2921 3190 +0 2921 3190 +0 2921 3190 +0 2921 3190 +0 2922 3189 +0 2922 3189 +0 2923 3188 +0 2924 3187 +0 2925 3186 +0 2927 3185 +0 2929 3183 +0 2932 3180 +0 2936 3176 +0 2941 3171 +0 2948 3164 +0 2957 3155 +0 2969 3142 +0 2984 3125 +0 3004 3100 +0 3029 3065 +0 3060 3014 +0 3099 2934 +0 3146 2799 +0 3203 2519 +0 3269 0 +0 3344 0 +0 3429 0 +0 3522 0 +0 3622 0 +0 3729 0 +0 2921 3191 +0 2921 3191 +0 2921 3191 +0 2921 3190 +0 2921 3190 +0 2922 3190 +0 2922 3190 +0 2922 3189 +0 2923 3188 +0 2924 3188 +0 2925 3187 +0 2927 3185 +0 2929 3183 +0 2932 3180 +0 2936 3176 +0 2941 3171 +0 2948 3165 +0 2957 3155 +0 2969 3143 +0 2984 3125 +0 3004 3101 +0 3029 3066 +0 3060 3014 +0 3099 2935 +0 3146 2800 +0 3203 2521 +0 3269 0 +0 3344 0 +0 3429 0 +0 3522 0 +0 3622 0 +0 3729 0 +0 2921 3191 +0 2921 3191 +0 2921 3191 +0 2921 3191 +0 2921 3191 +0 2922 3190 +0 2922 3190 +0 2923 3190 +0 2923 3189 +0 2924 3188 +0 2925 3187 +0 2927 3186 +0 2929 3183 +0 2932 3181 +0 2936 3177 +0 2941 3172 +0 2948 3165 +0 2957 3156 +0 2969 3143 +0 2984 3126 +0 3004 3101 +0 3029 3066 +0 3060 3015 +0 3099 2936 +0 3147 2802 +0 3203 2523 +0 3269 0 +0 3344 0 +0 3429 0 +0 3522 0 +0 3623 0 +0 3729 0 +0 2921 3192 +0 2921 3192 +0 2921 3192 +0 2921 3192 +0 2922 3191 +0 2922 3191 +0 2922 3191 +0 2923 3190 +0 2923 3190 +0 2924 3189 +0 2926 3188 +0 2927 3186 +0 2930 3184 +0 2933 3181 +0 2936 3178 +0 2942 3173 +0 2948 3166 +0 2957 3157 +0 2969 3144 +0 2984 3127 +0 3004 3102 +0 3029 3067 +0 3061 3016 +0 3099 2937 +0 3147 2803 +0 3203 2526 +0 3269 0 +0 3344 0 +0 3429 0 +0 3522 0 +0 3623 0 +0 3730 0 +0 2921 3193 +0 2921 3193 +0 2921 3193 +0 2922 3193 +0 2922 3192 +0 2922 3192 +0 2922 3192 +0 2923 3191 +0 2924 3191 +0 2925 3190 +0 2926 3189 +0 2928 3187 +0 2930 3185 +0 2933 3182 +0 2937 3179 +0 2942 3174 +0 2949 3167 +0 2958 3158 +0 2969 3145 +0 2985 3128 +0 3004 3103 +0 3029 3069 +0 3061 3017 +0 3100 2938 +0 3147 2806 +0 3203 2530 +0 3269 0 +0 3345 0 +0 3429 0 +0 3522 0 +0 3623 0 +0 3730 0 +0 2922 3194 +0 2922 3194 +0 2922 3194 +0 2922 3194 +0 2922 3194 +0 2922 3193 +0 2923 3193 +0 2923 3193 +0 2924 3192 +0 2925 3191 +0 2926 3190 +0 2928 3188 +0 2930 3186 +0 2933 3184 +0 2937 3180 +0 2942 3175 +0 2949 3168 +0 2958 3159 +0 2970 3147 +0 2985 3129 +0 3005 3105 +0 3030 3070 +0 3061 3019 +0 3100 2941 +0 3147 2808 +0 3203 2536 +0 3269 0 +0 3345 0 +0 3429 0 +0 3522 0 +0 3623 0 +0 3730 0 +0 2922 3196 +0 2922 3196 +0 2922 3196 +0 2922 3196 +0 2923 3195 +0 2923 3195 +0 2923 3195 +0 2924 3194 +0 2924 3194 +0 2925 3193 +0 2927 3192 +0 2928 3190 +0 2931 3188 +0 2933 3185 +0 2937 3182 +0 2943 3177 +0 2949 3170 +0 2958 3161 +0 2970 3148 +0 2985 3131 +0 3005 3107 +0 3030 3072 +0 3061 3022 +0 3100 2944 +0 3147 2812 +0 3204 2543 +0 3269 0 +0 3345 0 +0 3429 0 +0 3522 0 +0 3623 0 +0 3730 0 +0 2923 3198 +0 2923 3198 +0 2923 3198 +0 2923 3198 +0 2923 3198 +0 2923 3197 +0 2924 3197 +0 2924 3197 +0 2925 3196 +0 2926 3195 +0 2927 3194 +0 2929 3192 +0 2931 3190 +0 2934 3188 +0 2938 3184 +0 2943 3179 +0 2950 3172 +0 2959 3163 +0 2971 3151 +0 2986 3134 +0 3005 3110 +0 3030 3075 +0 3062 3025 +0 3100 2947 +0 3148 2818 +0 3204 2552 +0 3270 0 +0 3345 0 +0 3430 0 +0 3522 0 +0 3623 0 +0 3730 0 +0 2923 3201 +0 2923 3201 +0 2924 3201 +0 2924 3201 +0 2924 3201 +0 2924 3200 +0 2925 3200 +0 2925 3200 +0 2926 3199 +0 2927 3198 +0 2928 3197 +0 2930 3195 +0 2932 3193 +0 2935 3191 +0 2939 3187 +0 2944 3182 +0 2951 3176 +0 2960 3167 +0 2971 3154 +0 2986 3137 +0 3006 3113 +0 3031 3079 +0 3062 3029 +0 3101 2953 +0 3148 2824 +0 3204 2564 +0 3270 0 +0 3345 0 +0 3430 0 +0 3523 0 +0 3623 0 +0 3730 0 +0 2924 3205 +0 2924 3205 +0 2925 3205 +0 2925 3205 +0 2925 3205 +0 2925 3204 +0 2926 3204 +0 2926 3203 +0 2927 3203 +0 2928 3202 +0 2929 3201 +0 2931 3199 +0 2933 3197 +0 2936 3195 +0 2940 3191 +0 2945 3186 +0 2952 3180 +0 2961 3171 +0 2972 3159 +0 2987 3142 +0 3007 3118 +0 3032 3084 +0 3063 3035 +0 3102 2959 +0 3149 2833 +0 3205 2580 +0 3271 0 +0 3346 0 +0 3430 0 +0 3523 0 +0 3623 0 +0 3730 0 +0 2926 3210 +0 2926 3210 +0 2926 3210 +0 2926 3210 +0 2926 3210 +0 2927 3210 +0 2927 3209 +0 2927 3209 +0 2928 3208 +0 2929 3207 +0 2930 3206 +0 2932 3205 +0 2934 3203 +0 2937 3200 +0 2941 3197 +0 2946 3192 +0 2953 3185 +0 2962 3176 +0 2973 3164 +0 2989 3148 +0 3008 3124 +0 3033 3091 +0 3064 3043 +0 3103 2968 +0 3150 2845 +0 3206 2601 +0 3271 1202 +0 3346 0 +0 3431 0 +0 3523 0 +0 3624 0 +0 3730 0 +0 2927 3217 +0 2928 3217 +0 2928 3217 +0 2928 3217 +0 2928 3217 +0 2928 3216 +0 2929 3216 +0 2929 3216 +0 2930 3215 +0 2931 3214 +0 2932 3213 +0 2934 3212 +0 2936 3210 +0 2939 3207 +0 2943 3204 +0 2948 3199 +0 2955 3193 +0 2963 3184 +0 2975 3172 +0 2990 3156 +0 3010 3133 +0 3034 3100 +0 3065 3053 +0 3104 2980 +0 3151 2860 +0 3207 2626 +0 3272 1575 +0 3347 0 +0 3431 0 +0 3524 0 +0 3624 0 +0 3731 0 +0 2930 3226 +0 2930 3226 +0 2930 3226 +0 2930 3226 +0 2930 3226 +0 2931 3226 +0 2931 3225 +0 2932 3225 +0 2932 3224 +0 2933 3223 +0 2934 3222 +0 2936 3221 +0 2938 3219 +0 2941 3216 +0 2945 3213 +0 2950 3208 +0 2957 3202 +0 2966 3194 +0 2977 3182 +0 2992 3166 +0 3012 3144 +0 3036 3112 +0 3067 3066 +0 3105 2995 +0 3152 2880 +0 3208 2659 +0 3273 1829 +0 3348 0 +0 3432 0 +0 3524 0 +0 3624 0 +0 3731 0 +0 2933 3238 +0 2933 3238 +0 2933 3238 +0 2933 3238 +0 2934 3238 +0 2934 3237 +0 2934 3237 +0 2935 3237 +0 2936 3236 +0 2936 3235 +0 2938 3234 +0 2939 3233 +0 2941 3231 +0 2944 3229 +0 2948 3225 +0 2953 3221 +0 2960 3215 +0 2969 3206 +0 2980 3195 +0 2995 3179 +0 3014 3158 +0 3039 3127 +0 3069 3082 +0 3108 3015 +0 3154 2905 +0 3210 2699 +0 3275 2034 +0 3349 0 +0 3433 0 +0 3525 0 +0 3625 0 +0 3732 0 +0 2937 3254 +0 2937 3253 +0 2938 3253 +0 2938 3253 +0 2938 3253 +0 2938 3253 +0 2939 3252 +0 2939 3252 +0 2940 3252 +0 2941 3251 +0 2942 3250 +0 2943 3248 +0 2946 3247 +0 2948 3244 +0 2952 3241 +0 2957 3237 +0 2964 3231 +0 2973 3223 +0 2984 3212 +0 2999 3197 +0 3018 3176 +0 3042 3147 +0 3073 3104 +0 3110 3040 +0 3157 2937 +0 3212 2747 +0 3277 2215 +0 3351 0 +0 3434 0 +0 3526 0 +0 3626 0 +0 3732 0 +0 2943 3273 +0 2943 3273 +0 2943 3273 +0 2943 3273 +0 2944 3273 +0 2944 3273 +0 2944 3272 +0 2945 3272 +0 2945 3271 +0 2946 3271 +0 2947 3270 +0 2949 3268 +0 2951 3267 +0 2954 3264 +0 2958 3261 +0 2963 3257 +0 2969 3252 +0 2978 3244 +0 2989 3234 +0 3004 3219 +0 3022 3199 +0 3046 3171 +0 3077 3131 +0 3114 3071 +0 3160 2976 +0 3215 2805 +0 3279 2380 +0 3353 0 +0 3436 0 +0 3528 0 +0 3627 0 +0 3733 0 +1458 2950 3298 +1453 2950 3298 +1446 2951 3298 +1437 2951 3298 +1424 2951 3298 +1407 2951 3298 +1383 2952 3298 +1348 2952 3297 +1297 2953 3297 +1219 2954 3296 +1088 2955 3295 +818 2956 3294 +0 2958 3292 +0 2961 3290 +0 2965 3287 +0 2970 3283 +0 2976 3278 +0 2985 3271 +0 2996 3261 +0 3010 3248 +0 3029 3229 +0 3052 3203 +0 3082 3165 +0 3119 3110 +0 3165 3023 +0 3219 2873 +0 3283 2535 +0 3356 0 +0 3439 0 +0 3530 0 +0 3629 0 +0 3735 0 +2457 2960 3330 +2456 2960 3330 +2456 2960 3330 +2455 2960 3330 +2453 2961 3330 +2451 2961 3330 +2449 2961 3329 +2446 2962 3329 +2442 2962 3328 +2436 2963 3328 +2428 2964 3327 +2417 2966 3326 +2402 2968 3324 +2382 2971 3322 +2352 2974 3320 +2310 2979 3316 +2247 2985 3311 +2145 2994 3304 +1960 3004 3295 +1453 3019 3283 +0 3037 3266 +0 3060 3242 +0 3090 3207 +0 3126 3157 +0 3171 3079 +0 3225 2949 +0 3288 2684 +0 3360 0 +0 3442 0 +0 3533 0 +0 3631 0 +0 3736 0 +2813 2973 3369 +2813 2973 3369 +2812 2973 3369 +2812 2973 3369 +2811 2973 3369 +2810 2974 3369 +2809 2974 3369 +2808 2974 3368 +2806 2975 3368 +2803 2976 3367 +2800 2977 3366 +2795 2978 3365 +2789 2980 3364 +2780 2983 3362 +2768 2987 3360 +2752 2991 3356 +2729 2997 3352 +2696 3005 3346 +2648 3016 3337 +2576 3030 3326 +2456 3048 3310 +2220 3070 3289 +1140 3099 3258 +0 3135 3213 +0 3179 3145 +0 3232 3035 +0 3294 2828 +0 3366 2152 +0 3447 0 +0 3536 0 +0 3634 0 +0 3739 0 +3061 2989 3417 +3061 2989 3417 +3061 2989 3417 +3060 2989 3417 +3060 2990 3417 +3060 2990 3416 +3059 2990 3416 +3058 2991 3416 +3057 2991 3415 +3055 2992 3415 +3053 2993 3414 +3051 2995 3413 +3047 2997 3412 +3042 2999 3410 +3036 3002 3408 +3027 3007 3405 +3014 3013 3401 +2997 3021 3396 +2973 3031 3388 +2939 3044 3378 +2889 3062 3364 +2812 3084 3345 +2683 3112 3318 +2421 3147 3279 +0 3189 3221 +0 3241 3129 +0 3302 2969 +0 3373 2588 +0 3452 0 +0 3541 0 +0 3638 0 +0 3742 0 +3264 3010 3474 +3264 3010 3474 +3264 3010 3473 +3263 3010 3473 +3263 3011 3473 +3263 3011 3473 +3263 3011 3473 +3262 3012 3473 +3261 3012 3472 +3260 3013 3472 +3259 3014 3471 +3257 3015 3470 +3255 3017 3469 +3252 3020 3468 +3248 3023 3466 +3242 3027 3463 +3234 3033 3460 +3224 3040 3455 +3210 3050 3448 +3190 3063 3440 +3161 3080 3427 +3121 3101 3411 +3060 3128 3387 +2964 3162 3354 +2791 3203 3305 +2354 3253 3231 +0 3313 3107 +0 3382 2861 +0 3460 1375 +0 3548 0 +0 3643 0 +0 3746 0 +3442 3037 3540 +3442 3037 3540 +3442 3037 3540 +3442 3037 3540 +3442 3037 3540 +3442 3038 3539 +3442 3038 3539 +3441 3038 3539 +3441 3039 3539 +3440 3040 3538 +3439 3041 3538 +3438 3042 3537 +3437 3044 3536 +3434 3046 3535 +3432 3049 3533 +3428 3053 3531 +3423 3058 3528 +3416 3065 3524 +3407 3075 3518 +3394 3087 3511 +3376 3103 3500 +3351 3123 3486 +3315 3149 3466 +3263 3181 3438 +3182 3221 3398 +3044 3269 3339 +2752 3327 3244 +0 3394 3076 +0 3470 2660 +0 3556 0 +0 3650 0 +0 3751 0 +3606 3070 3616 +3606 3070 3616 +3606 3071 3616 +3606 3071 3615 +3606 3071 3615 +3606 3071 3615 +3606 3071 3615 +3606 3072 3615 +3605 3072 3615 +3605 3073 3614 +3604 3074 3614 +3603 3075 3613 +3602 3077 3613 +3601 3079 3611 +3599 3082 3610 +3596 3085 3608 +3593 3090 3605 +3588 3097 3602 +3582 3106 3597 +3573 3117 3591 +3561 3132 3582 +3545 3151 3570 +3522 3175 3554 +3489 3205 3531 +3442 3243 3499 +3369 3289 3452 +3249 3345 3380 +3015 3409 3261 +1952 3483 3030 +0 3567 2039 +0 3659 0 +0 3758 0 +3761 3112 3700 +3761 3112 3700 +3761 3112 3700 +3761 3112 3700 +3761 3112 3700 +3761 3112 3700 +3761 3112 3700 +3760 3113 3700 +3760 3113 3700 +3760 3114 3699 +3759 3115 3699 +3759 3116 3699 +3758 3117 3698 +3757 3119 3697 +3756 3122 3696 +3754 3125 3694 +3751 3130 3692 +3748 3136 3689 +3744 3144 3685 +3738 3154 3680 +3729 3168 3673 +3718 3185 3663 +3702 3208 3650 +3681 3236 3632 +3650 3272 3606 +3606 3315 3569 +3538 3368 3514 +3429 3429 3429 +3224 3501 3283 +2573 3581 2960 +0 3671 0 +0 3768 0 +3909 3161 3794 +3909 3161 3794 +3909 3162 3794 +3909 3162 3794 +3909 3162 3794 +3909 3162 3794 +3909 3162 3793 +3909 3162 3793 +3909 3163 3793 +3908 3163 3793 +3908 3164 3793 +3908 3165 3792 +3907 3166 3792 +3906 3168 3791 +3905 3171 3790 +3904 3174 3789 +3902 3178 3787 +3900 3183 3785 +3897 3190 3781 +3892 3200 3777 +3887 3212 3771 +3879 3228 3764 +3868 3249 3753 +3853 3275 3739 +3832 3307 3718 +3803 3348 3690 +3760 3397 3648 +3696 3455 3587 +3594 3522 3488 +3407 3599 3311 +2887 3686 2847 +0 3780 0 +4053 3220 3894 +4053 3221 3894 +4053 3221 3894 +4053 3221 3894 +4053 3221 3894 +4053 3221 3894 +4053 3221 3894 +4053 3221 3894 +4053 3222 3894 +4052 3222 3894 +4052 3223 3894 +4052 3224 3893 +4052 3225 3893 +4051 3226 3892 +4050 3229 3891 +4049 3231 3890 +4048 3235 3889 +4046 3240 3887 +4044 3246 3885 +4041 3254 3881 +4037 3265 3877 +4031 3280 3871 +4023 3298 3862 +4013 3321 3851 +3998 3351 3835 +3978 3388 3813 +3950 3433 3782 +3908 3487 3737 +3847 3550 3668 +3749 3623 3557 +3573 3705 3345 +3119 3796 2630 +4095 3289 4002 +4095 3289 4002 +4095 3289 4002 +4095 3289 4002 +4095 3289 4001 +4095 3290 4001 +4095 3290 4001 +4095 3290 4001 +4095 3290 4001 +4095 3291 4001 +4095 3291 4001 +4095 3292 4001 +4095 3293 4000 +4095 3294 4000 +4095 3296 3999 +4095 3298 3998 +4095 3302 3997 +4095 3306 3996 +4095 3311 3994 +4095 3318 3991 +4095 3328 3988 +4095 3340 3983 +4095 3357 3976 +4095 3377 3967 +4095 3403 3955 +4095 3436 3939 +4095 3477 3915 +4092 3526 3882 +4052 3585 3833 +3993 3653 3758 +3898 3730 3634 +3730 3816 3387 +4095 3367 4095 +4095 3367 4095 +4095 3367 4095 +4095 3367 4095 +4095 3367 4095 +4095 3368 4095 +4095 3368 4095 +4095 3368 4095 +4095 3368 4095 +4095 3369 4095 +4095 3369 4095 +4095 3370 4095 +4095 3370 4095 +4095 3372 4095 +4095 3373 4095 +4095 3375 4095 +4095 3378 4095 +4095 3381 4095 +4095 3386 4095 +4095 3392 4095 +4095 3400 4095 +4095 3411 4095 +4095 3425 4094 +4095 3442 4088 +4095 3465 4078 +4095 3494 4066 +4095 3530 4048 +4095 3574 4023 +4095 3627 3988 +4095 3689 3936 +4095 3761 3857 +4042 3842 3721 +0 3052 3322 +0 3052 3322 +0 3053 3321 +0 3053 3321 +0 3053 3321 +0 3053 3321 +0 3053 3321 +0 3054 3320 +0 3054 3320 +0 3055 3319 +0 3056 3318 +0 3057 3317 +0 3059 3316 +0 3061 3314 +0 3064 3311 +0 3068 3307 +0 3073 3302 +0 3080 3295 +0 3089 3286 +0 3101 3273 +0 3116 3256 +0 3136 3231 +0 3161 3196 +0 3192 3144 +0 3231 3064 +0 3278 2929 +0 3335 2647 +0 3401 0 +0 3476 0 +0 3561 0 +0 3654 0 +0 3755 0 +0 3052 3322 +0 3052 3322 +0 3053 3322 +0 3053 3321 +0 3053 3321 +0 3053 3321 +0 3053 3321 +0 3054 3320 +0 3054 3320 +0 3055 3319 +0 3056 3319 +0 3057 3317 +0 3059 3316 +0 3061 3314 +0 3064 3311 +0 3068 3307 +0 3073 3302 +0 3080 3295 +0 3089 3286 +0 3101 3273 +0 3116 3256 +0 3136 3231 +0 3161 3196 +0 3192 3144 +0 3231 3065 +0 3278 2930 +0 3335 2648 +0 3401 0 +0 3476 0 +0 3561 0 +0 3654 0 +0 3755 0 +0 3052 3322 +0 3052 3322 +0 3053 3322 +0 3053 3322 +0 3053 3321 +0 3053 3321 +0 3053 3321 +0 3054 3321 +0 3054 3320 +0 3055 3319 +0 3056 3319 +0 3057 3318 +0 3059 3316 +0 3061 3314 +0 3064 3311 +0 3068 3307 +0 3073 3302 +0 3080 3296 +0 3089 3286 +0 3101 3274 +0 3116 3256 +0 3136 3231 +0 3161 3196 +0 3192 3145 +0 3231 3065 +0 3278 2930 +0 3335 2648 +0 3401 0 +0 3476 0 +0 3561 0 +0 3654 0 +0 3755 0 +0 3052 3322 +0 3053 3322 +0 3053 3322 +0 3053 3322 +0 3053 3322 +0 3053 3321 +0 3053 3321 +0 3054 3321 +0 3054 3320 +0 3055 3320 +0 3056 3319 +0 3057 3318 +0 3059 3316 +0 3061 3314 +0 3064 3311 +0 3068 3308 +0 3073 3303 +0 3080 3296 +0 3089 3286 +0 3101 3274 +0 3116 3256 +0 3136 3232 +0 3161 3197 +0 3192 3145 +0 3231 3065 +0 3278 2930 +0 3335 2649 +0 3401 0 +0 3476 0 +0 3561 0 +0 3654 0 +0 3755 0 +0 3053 3322 +0 3053 3322 +0 3053 3322 +0 3053 3322 +0 3053 3322 +0 3053 3322 +0 3053 3321 +0 3054 3321 +0 3054 3321 +0 3055 3320 +0 3056 3319 +0 3057 3318 +0 3059 3316 +0 3061 3314 +0 3064 3312 +0 3068 3308 +0 3073 3303 +0 3080 3296 +0 3089 3287 +0 3101 3274 +0 3116 3256 +0 3136 3232 +0 3161 3197 +0 3192 3145 +0 3231 3065 +0 3278 2931 +0 3335 2650 +0 3401 0 +0 3476 0 +0 3561 0 +0 3654 0 +0 3755 0 +0 3053 3323 +0 3053 3322 +0 3053 3322 +0 3053 3322 +0 3053 3322 +0 3053 3322 +0 3054 3322 +0 3054 3321 +0 3054 3321 +0 3055 3320 +0 3056 3319 +0 3057 3318 +0 3059 3317 +0 3061 3315 +0 3064 3312 +0 3068 3308 +0 3073 3303 +0 3080 3296 +0 3089 3287 +0 3101 3274 +0 3116 3257 +0 3136 3232 +0 3161 3197 +0 3192 3146 +0 3231 3066 +0 3279 2932 +0 3335 2651 +0 3401 0 +0 3476 0 +0 3561 0 +0 3654 0 +0 3755 0 +0 3053 3323 +0 3053 3323 +0 3053 3323 +0 3053 3323 +0 3053 3323 +0 3053 3322 +0 3054 3322 +0 3054 3322 +0 3055 3321 +0 3055 3321 +0 3056 3320 +0 3057 3319 +0 3059 3317 +0 3061 3315 +0 3064 3312 +0 3068 3309 +0 3073 3304 +0 3080 3297 +0 3089 3287 +0 3101 3275 +0 3116 3257 +0 3136 3233 +0 3161 3198 +0 3192 3146 +0 3231 3067 +0 3279 2932 +0 3335 2653 +0 3401 0 +0 3476 0 +0 3561 0 +0 3654 0 +0 3755 0 +0 3053 3323 +0 3053 3323 +0 3053 3323 +0 3053 3323 +0 3053 3323 +0 3053 3323 +0 3054 3323 +0 3054 3322 +0 3055 3322 +0 3055 3321 +0 3056 3320 +0 3058 3319 +0 3059 3318 +0 3061 3316 +0 3064 3313 +0 3068 3309 +0 3074 3304 +0 3080 3297 +0 3089 3288 +0 3101 3275 +0 3116 3258 +0 3136 3233 +0 3161 3198 +0 3192 3147 +0 3231 3068 +0 3279 2934 +0 3335 2655 +0 3401 0 +0 3476 0 +0 3561 0 +0 3654 0 +0 3755 0 +0 3053 3324 +0 3053 3324 +0 3053 3324 +0 3053 3324 +0 3053 3324 +0 3054 3324 +0 3054 3323 +0 3054 3323 +0 3055 3322 +0 3056 3322 +0 3057 3321 +0 3058 3320 +0 3059 3318 +0 3062 3316 +0 3065 3314 +0 3069 3310 +0 3074 3305 +0 3081 3298 +0 3090 3289 +0 3101 3276 +0 3117 3259 +0 3136 3234 +0 3161 3199 +0 3193 3148 +0 3231 3069 +0 3279 2935 +0 3335 2658 +0 3401 0 +0 3477 0 +0 3561 0 +0 3654 0 +0 3755 0 +0 3053 3325 +0 3053 3325 +0 3053 3325 +0 3054 3325 +0 3054 3325 +0 3054 3325 +0 3054 3324 +0 3055 3324 +0 3055 3323 +0 3056 3323 +0 3057 3322 +0 3058 3321 +0 3060 3319 +0 3062 3317 +0 3065 3314 +0 3069 3311 +0 3074 3306 +0 3081 3299 +0 3090 3290 +0 3102 3277 +0 3117 3260 +0 3136 3235 +0 3161 3201 +0 3193 3149 +0 3232 3071 +0 3279 2938 +0 3335 2662 +0 3401 0 +0 3477 0 +0 3561 0 +0 3654 0 +0 3755 0 +0 3054 3326 +0 3054 3326 +0 3054 3326 +0 3054 3326 +0 3054 3326 +0 3054 3326 +0 3055 3326 +0 3055 3325 +0 3055 3325 +0 3056 3324 +0 3057 3323 +0 3058 3322 +0 3060 3321 +0 3062 3319 +0 3065 3316 +0 3069 3312 +0 3074 3307 +0 3081 3300 +0 3090 3291 +0 3102 3279 +0 3117 3261 +0 3137 3237 +0 3162 3202 +0 3193 3151 +0 3232 3073 +0 3279 2941 +0 3335 2668 +0 3401 0 +0 3477 0 +0 3561 0 +0 3654 0 +0 3755 0 +0 3054 3328 +0 3054 3328 +0 3054 3328 +0 3054 3328 +0 3054 3328 +0 3055 3327 +0 3055 3327 +0 3055 3327 +0 3056 3326 +0 3057 3326 +0 3057 3325 +0 3059 3324 +0 3060 3322 +0 3063 3320 +0 3066 3318 +0 3069 3314 +0 3075 3309 +0 3081 3302 +0 3090 3293 +0 3102 3281 +0 3117 3263 +0 3137 3239 +0 3162 3204 +0 3193 3154 +0 3232 3076 +0 3279 2944 +0 3336 2675 +0 3402 0 +0 3477 0 +0 3561 0 +0 3654 0 +0 3755 0 +0 3055 3330 +0 3055 3330 +0 3055 3330 +0 3055 3330 +0 3055 3330 +0 3055 3330 +0 3056 3329 +0 3056 3329 +0 3056 3329 +0 3057 3328 +0 3058 3327 +0 3059 3326 +0 3061 3325 +0 3063 3323 +0 3066 3320 +0 3070 3316 +0 3075 3311 +0 3082 3305 +0 3091 3295 +0 3103 3283 +0 3118 3266 +0 3137 3242 +0 3162 3207 +0 3194 3157 +0 3233 3080 +0 3280 2950 +0 3336 2684 +0 3402 0 +0 3477 0 +0 3562 0 +0 3655 0 +0 3755 0 +0 3055 3333 +0 3055 3333 +0 3055 3333 +0 3056 3333 +0 3056 3333 +0 3056 3333 +0 3056 3332 +0 3057 3332 +0 3057 3332 +0 3058 3331 +0 3059 3330 +0 3060 3329 +0 3062 3328 +0 3064 3326 +0 3067 3323 +0 3071 3319 +0 3076 3314 +0 3083 3308 +0 3092 3299 +0 3103 3286 +0 3119 3269 +0 3138 3245 +0 3163 3211 +0 3194 3161 +0 3233 3085 +0 3280 2957 +0 3336 2696 +0 3402 0 +0 3477 0 +0 3562 0 +0 3655 0 +0 3755 0 +0 3056 3337 +0 3056 3337 +0 3056 3337 +0 3057 3337 +0 3057 3337 +0 3057 3337 +0 3057 3336 +0 3058 3336 +0 3058 3336 +0 3059 3335 +0 3060 3334 +0 3061 3333 +0 3063 3332 +0 3065 3330 +0 3068 3327 +0 3072 3323 +0 3077 3318 +0 3084 3312 +0 3093 3303 +0 3104 3291 +0 3119 3274 +0 3139 3250 +0 3164 3216 +0 3195 3167 +0 3234 3092 +0 3281 2966 +0 3337 2712 +0 3403 0 +0 3478 0 +0 3562 0 +0 3655 0 +0 3755 0 +0 3058 3342 +0 3058 3342 +0 3058 3342 +0 3058 3342 +0 3058 3342 +0 3058 3342 +0 3059 3342 +0 3059 3341 +0 3060 3341 +0 3060 3340 +0 3061 3339 +0 3062 3338 +0 3064 3337 +0 3066 3335 +0 3069 3332 +0 3073 3329 +0 3078 3324 +0 3085 3317 +0 3094 3309 +0 3106 3296 +0 3121 3280 +0 3140 3256 +0 3165 3223 +0 3196 3175 +0 3235 3100 +0 3282 2977 +0 3338 2733 +0 3403 1334 +0 3478 0 +0 3563 0 +0 3655 0 +0 3756 0 +0 3059 3349 +0 3060 3349 +0 3060 3349 +0 3060 3349 +0 3060 3349 +0 3060 3349 +0 3060 3349 +0 3061 3348 +0 3061 3348 +0 3062 3347 +0 3063 3346 +0 3064 3345 +0 3066 3344 +0 3068 3342 +0 3071 3339 +0 3075 3336 +0 3080 3331 +0 3087 3325 +0 3096 3316 +0 3107 3304 +0 3122 3288 +0 3142 3265 +0 3166 3232 +0 3197 3185 +0 3236 3112 +0 3283 2993 +0 3339 2758 +0 3404 1707 +0 3479 0 +0 3563 0 +0 3656 0 +0 3756 0 +0 3062 3358 +0 3062 3358 +0 3062 3358 +0 3062 3358 +0 3062 3358 +0 3063 3358 +0 3063 3358 +0 3063 3357 +0 3064 3357 +0 3064 3356 +0 3065 3355 +0 3067 3354 +0 3068 3353 +0 3070 3351 +0 3073 3349 +0 3077 3345 +0 3082 3341 +0 3089 3334 +0 3098 3326 +0 3109 3314 +0 3124 3298 +0 3144 3276 +0 3168 3244 +0 3199 3198 +0 3238 3127 +0 3284 3012 +0 3340 2791 +0 3405 1961 +0 3480 0 +0 3564 0 +0 3657 0 +0 3757 0 +0 3065 3370 +0 3065 3370 +0 3065 3370 +0 3065 3370 +0 3066 3370 +0 3066 3370 +0 3066 3369 +0 3066 3369 +0 3067 3369 +0 3068 3368 +0 3069 3367 +0 3070 3366 +0 3071 3365 +0 3074 3363 +0 3076 3361 +0 3080 3357 +0 3085 3353 +0 3092 3347 +0 3101 3338 +0 3112 3327 +0 3127 3312 +0 3146 3290 +0 3171 3259 +0 3202 3214 +0 3240 3147 +0 3286 3037 +0 3342 2831 +0 3407 2166 +0 3481 0 +0 3565 0 +0 3657 0 +0 3757 0 +0 3069 3386 +0 3069 3386 +0 3070 3386 +0 3070 3385 +0 3070 3385 +0 3070 3385 +0 3070 3385 +0 3071 3385 +0 3071 3384 +0 3072 3384 +0 3073 3383 +0 3074 3382 +0 3076 3381 +0 3078 3379 +0 3081 3376 +0 3084 3373 +0 3089 3369 +0 3096 3363 +0 3105 3355 +0 3116 3344 +0 3131 3329 +0 3150 3308 +0 3174 3279 +0 3205 3236 +0 3243 3172 +0 3289 3069 +0 3344 2880 +0 3409 2347 +0 3483 0 +0 3567 0 +0 3659 0 +0 3758 0 +0 3075 3405 +0 3075 3405 +0 3075 3405 +0 3075 3405 +0 3075 3405 +0 3076 3405 +0 3076 3405 +0 3076 3404 +0 3077 3404 +0 3077 3404 +0 3078 3403 +0 3080 3402 +0 3081 3401 +0 3083 3399 +0 3086 3397 +0 3090 3393 +0 3095 3389 +0 3101 3384 +0 3110 3376 +0 3121 3366 +0 3136 3351 +0 3155 3332 +0 3179 3304 +0 3209 3263 +0 3246 3203 +0 3292 3108 +0 3347 2937 +0 3411 2512 +0 3485 0 +0 3568 0 +0 3660 0 +0 3759 0 +1593 3082 3431 +1590 3082 3431 +1585 3083 3431 +1578 3083 3430 +1569 3083 3430 +1556 3083 3430 +1539 3083 3430 +1515 3084 3430 +1480 3084 3429 +1429 3085 3429 +1351 3086 3428 +1220 3087 3427 +950 3088 3426 +0 3090 3424 +0 3093 3422 +0 3097 3419 +0 3102 3415 +0 3108 3410 +0 3117 3403 +0 3128 3393 +0 3142 3380 +0 3161 3361 +0 3184 3335 +0 3214 3297 +0 3252 3242 +0 3297 3155 +0 3351 3005 +0 3415 2667 +0 3488 0 +0 3571 0 +0 3662 0 +0 3761 0 +2589 3092 3462 +2589 3092 3462 +2588 3092 3462 +2588 3092 3462 +2587 3092 3462 +2585 3093 3462 +2584 3093 3462 +2581 3093 3461 +2578 3094 3461 +2574 3094 3461 +2568 3095 3460 +2560 3096 3459 +2549 3098 3458 +2534 3100 3456 +2514 3103 3454 +2484 3106 3452 +2442 3111 3448 +2379 3117 3443 +2277 3126 3436 +2092 3137 3427 +1586 3151 3415 +0 3169 3398 +0 3192 3374 +0 3222 3339 +0 3258 3289 +0 3303 3211 +0 3357 3081 +0 3420 2816 +0 3492 0 +0 3574 0 +0 3665 0 +0 3763 0 +2945 3105 3501 +2945 3105 3501 +2945 3105 3501 +2944 3105 3501 +2944 3105 3501 +2943 3105 3501 +2942 3106 3501 +2941 3106 3501 +2940 3106 3500 +2938 3107 3500 +2935 3108 3499 +2932 3109 3499 +2927 3110 3497 +2921 3112 3496 +2912 3115 3494 +2900 3119 3492 +2884 3123 3488 +2861 3129 3484 +2828 3137 3478 +2780 3148 3470 +2708 3162 3458 +2588 3180 3443 +2352 3202 3421 +1272 3231 3390 +0 3267 3345 +0 3311 3277 +0 3364 3167 +0 3426 2960 +0 3498 2284 +0 3579 0 +0 3669 0 +0 3766 0 +3193 3121 3549 +3193 3121 3549 +3193 3121 3549 +3193 3121 3549 +3192 3122 3549 +3192 3122 3549 +3192 3122 3548 +3191 3122 3548 +3190 3123 3548 +3189 3123 3548 +3188 3124 3547 +3186 3125 3546 +3183 3127 3545 +3179 3129 3544 +3174 3131 3543 +3168 3135 3540 +3159 3139 3537 +3146 3145 3533 +3129 3153 3528 +3105 3163 3520 +3071 3176 3510 +3021 3194 3496 +2944 3216 3477 +2815 3244 3450 +2553 3279 3411 +0 3321 3353 +0 3373 3261 +0 3434 3101 +0 3505 2720 +0 3585 0 +0 3673 0 +0 3770 0 +3396 3142 3606 +3396 3142 3606 +3396 3142 3606 +3396 3142 3606 +3396 3143 3605 +3395 3143 3605 +3395 3143 3605 +3395 3143 3605 +3394 3144 3605 +3393 3144 3604 +3392 3145 3604 +3391 3146 3603 +3389 3148 3603 +3387 3149 3601 +3384 3152 3600 +3380 3155 3598 +3374 3159 3595 +3367 3165 3592 +3356 3172 3587 +3342 3182 3581 +3322 3195 3572 +3294 3212 3560 +3253 3233 3543 +3192 3260 3519 +3096 3294 3486 +2923 3335 3437 +2486 3385 3363 +0 3445 3239 +0 3514 2993 +0 3592 1507 +0 3680 0 +0 3775 0 +3575 3169 3672 +3575 3169 3672 +3574 3169 3672 +3574 3169 3672 +3574 3169 3672 +3574 3169 3672 +3574 3170 3672 +3574 3170 3671 +3573 3170 3671 +3573 3171 3671 +3572 3172 3670 +3571 3173 3670 +3570 3174 3669 +3569 3176 3668 +3567 3178 3667 +3564 3181 3665 +3560 3185 3663 +3555 3190 3660 +3548 3198 3656 +3539 3207 3650 +3526 3219 3643 +3508 3235 3632 +3483 3255 3618 +3448 3281 3598 +3395 3313 3571 +3314 3353 3531 +3176 3401 3471 +2884 3459 3376 +0 3526 3208 +0 3602 2792 +0 3688 0 +0 3782 0 +3739 3202 3748 +3739 3202 3748 +3739 3203 3748 +3738 3203 3748 +3738 3203 3748 +3738 3203 3747 +3738 3203 3747 +3738 3203 3747 +3738 3204 3747 +3737 3204 3747 +3737 3205 3746 +3736 3206 3746 +3736 3207 3745 +3734 3209 3745 +3733 3211 3744 +3731 3214 3742 +3728 3217 3740 +3725 3222 3738 +3720 3229 3734 +3714 3238 3729 +3705 3249 3723 +3693 3264 3714 +3677 3283 3703 +3654 3307 3686 +3621 3338 3663 +3574 3375 3631 +3501 3422 3584 +3381 3477 3512 +3147 3541 3393 +2084 3616 3162 +0 3699 2171 +0 3791 0 +3893 3244 3833 +3893 3244 3833 +3893 3244 3833 +3893 3244 3832 +3893 3244 3832 +3893 3244 3832 +3893 3244 3832 +3893 3244 3832 +3893 3245 3832 +3892 3245 3832 +3892 3246 3832 +3892 3247 3831 +3891 3248 3831 +3890 3249 3830 +3889 3251 3829 +3888 3254 3828 +3886 3257 3826 +3884 3262 3824 +3880 3268 3821 +3876 3276 3817 +3870 3286 3812 +3861 3300 3805 +3850 3318 3795 +3835 3340 3782 +3813 3368 3764 +3782 3404 3738 +3738 3447 3701 +3670 3500 3646 +3561 3561 3561 +3357 3633 3415 +2705 3713 3092 +0 3803 0 +4041 3293 3926 +4041 3293 3926 +4041 3294 3926 +4041 3294 3926 +4041 3294 3926 +4041 3294 3926 +4041 3294 3926 +4041 3294 3926 +4041 3295 3925 +4041 3295 3925 +4041 3296 3925 +4040 3296 3925 +4040 3297 3924 +4039 3299 3924 +4039 3300 3923 +4038 3303 3922 +4036 3306 3921 +4034 3310 3919 +4032 3315 3917 +4029 3322 3914 +4025 3332 3909 +4019 3344 3904 +4011 3360 3896 +4000 3381 3885 +3985 3407 3871 +3964 3440 3850 +3935 3480 3822 +3892 3529 3781 +3829 3587 3719 +3726 3654 3620 +3539 3732 3443 +3019 3818 2979 +4095 3353 4027 +4095 3353 4027 +4095 3353 4027 +4095 3353 4027 +4095 3353 4026 +4095 3353 4026 +4095 3353 4026 +4095 3353 4026 +4095 3354 4026 +4095 3354 4026 +4095 3354 4026 +4095 3355 4026 +4095 3356 4025 +4095 3357 4025 +4095 3359 4024 +4095 3361 4024 +4095 3363 4023 +4095 3367 4021 +4095 3372 4019 +4095 3378 4017 +4095 3387 4013 +4095 3397 4009 +4095 3412 4003 +4095 3430 3994 +4095 3454 3983 +4095 3483 3967 +4095 3520 3945 +4082 3565 3914 +4041 3619 3869 +3979 3682 3800 +3881 3755 3689 +3706 3837 3477 +4095 3421 4095 +4095 3421 4095 +4095 3421 4095 +4095 3421 4095 +4095 3421 4095 +4095 3421 4095 +4095 3422 4095 +4095 3422 4095 +4095 3422 4095 +4095 3422 4095 +4095 3423 4095 +4095 3423 4095 +4095 3424 4095 +4095 3425 4095 +4095 3426 4095 +4095 3428 4095 +4095 3431 4095 +4095 3434 4095 +4095 3438 4095 +4095 3443 4095 +4095 3451 4095 +4095 3460 4095 +4095 3473 4095 +4095 3489 4095 +4095 3509 4095 +4095 3536 4087 +4095 3568 4071 +4095 3609 4047 +4095 3658 4014 +4095 3717 3965 +4095 3785 3891 +4030 3862 3767 +0 3184 3454 +0 3184 3454 +0 3185 3454 +0 3185 3453 +0 3185 3453 +0 3185 3453 +0 3185 3453 +0 3185 3453 +0 3186 3452 +0 3186 3452 +0 3187 3451 +0 3188 3450 +0 3189 3449 +0 3191 3448 +0 3193 3446 +0 3196 3443 +0 3200 3439 +0 3205 3434 +0 3212 3427 +0 3221 3418 +0 3233 3405 +0 3248 3388 +0 3268 3363 +0 3293 3328 +0 3324 3276 +0 3363 3196 +0 3410 3061 +0 3467 2779 +0 3533 0 +0 3608 0 +0 3693 0 +0 3786 0 +0 3184 3454 +0 3184 3454 +0 3185 3454 +0 3185 3454 +0 3185 3453 +0 3185 3453 +0 3185 3453 +0 3185 3453 +0 3186 3452 +0 3186 3452 +0 3187 3451 +0 3188 3451 +0 3189 3449 +0 3191 3448 +0 3193 3446 +0 3196 3443 +0 3200 3439 +0 3205 3434 +0 3212 3427 +0 3221 3418 +0 3233 3405 +0 3248 3388 +0 3268 3363 +0 3293 3328 +0 3324 3276 +0 3363 3196 +0 3410 3061 +0 3467 2779 +0 3533 0 +0 3608 0 +0 3693 0 +0 3786 0 +0 3184 3454 +0 3184 3454 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3185 3453 +0 3185 3453 +0 3185 3453 +0 3186 3453 +0 3186 3452 +0 3187 3451 +0 3188 3451 +0 3189 3449 +0 3191 3448 +0 3193 3446 +0 3196 3443 +0 3200 3439 +0 3205 3434 +0 3212 3428 +0 3221 3418 +0 3233 3406 +0 3248 3388 +0 3268 3363 +0 3293 3328 +0 3324 3277 +0 3363 3197 +0 3411 3062 +0 3467 2780 +0 3533 0 +0 3608 0 +0 3693 0 +0 3786 0 +0 3184 3454 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3185 3453 +0 3185 3453 +0 3186 3453 +0 3186 3452 +0 3187 3452 +0 3188 3451 +0 3189 3450 +0 3191 3448 +0 3193 3446 +0 3196 3443 +0 3200 3440 +0 3205 3434 +0 3212 3428 +0 3221 3418 +0 3233 3406 +0 3248 3388 +0 3268 3364 +0 3293 3328 +0 3324 3277 +0 3363 3197 +0 3411 3062 +0 3467 2780 +0 3533 0 +0 3608 0 +0 3693 0 +0 3786 0 +0 3184 3454 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3185 3453 +0 3186 3453 +0 3186 3453 +0 3186 3452 +0 3187 3452 +0 3188 3451 +0 3189 3450 +0 3191 3448 +0 3193 3446 +0 3196 3443 +0 3200 3440 +0 3205 3435 +0 3212 3428 +0 3221 3419 +0 3233 3406 +0 3248 3388 +0 3268 3364 +0 3293 3329 +0 3324 3277 +0 3363 3197 +0 3411 3062 +0 3467 2781 +0 3533 0 +0 3608 0 +0 3693 0 +0 3786 0 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3186 3453 +0 3186 3453 +0 3186 3453 +0 3187 3452 +0 3188 3451 +0 3189 3450 +0 3191 3448 +0 3193 3446 +0 3196 3444 +0 3200 3440 +0 3205 3435 +0 3212 3428 +0 3221 3419 +0 3233 3406 +0 3248 3389 +0 3268 3364 +0 3293 3329 +0 3324 3277 +0 3363 3198 +0 3411 3063 +0 3467 2782 +0 3533 0 +0 3608 0 +0 3693 0 +0 3786 0 +0 3185 3455 +0 3185 3455 +0 3185 3455 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3185 3454 +0 3186 3454 +0 3186 3453 +0 3187 3453 +0 3187 3452 +0 3188 3451 +0 3189 3450 +0 3191 3449 +0 3193 3447 +0 3196 3444 +0 3200 3440 +0 3205 3435 +0 3212 3428 +0 3221 3419 +0 3233 3406 +0 3248 3389 +0 3268 3364 +0 3293 3329 +0 3324 3278 +0 3363 3198 +0 3411 3064 +0 3467 2783 +0 3533 0 +0 3609 0 +0 3693 0 +0 3786 0 +0 3185 3455 +0 3185 3455 +0 3185 3455 +0 3185 3455 +0 3185 3455 +0 3185 3455 +0 3185 3454 +0 3186 3454 +0 3186 3454 +0 3187 3453 +0 3187 3453 +0 3188 3452 +0 3190 3451 +0 3191 3449 +0 3193 3447 +0 3196 3444 +0 3200 3441 +0 3205 3436 +0 3212 3429 +0 3221 3420 +0 3233 3407 +0 3248 3389 +0 3268 3365 +0 3293 3330 +0 3324 3278 +0 3363 3199 +0 3411 3065 +0 3467 2785 +0 3533 0 +0 3609 0 +0 3693 0 +0 3786 0 +0 3185 3456 +0 3185 3456 +0 3185 3455 +0 3185 3455 +0 3185 3455 +0 3185 3455 +0 3186 3455 +0 3186 3455 +0 3186 3454 +0 3187 3454 +0 3187 3453 +0 3188 3452 +0 3190 3451 +0 3191 3450 +0 3194 3448 +0 3197 3445 +0 3200 3441 +0 3206 3436 +0 3212 3429 +0 3221 3420 +0 3233 3407 +0 3248 3390 +0 3268 3365 +0 3293 3331 +0 3325 3279 +0 3363 3200 +0 3411 3066 +0 3467 2787 +0 3533 0 +0 3609 0 +0 3693 0 +0 3786 0 +0 3185 3456 +0 3185 3456 +0 3185 3456 +0 3185 3456 +0 3185 3456 +0 3186 3456 +0 3186 3456 +0 3186 3455 +0 3186 3455 +0 3187 3455 +0 3188 3454 +0 3189 3453 +0 3190 3452 +0 3192 3450 +0 3194 3448 +0 3197 3446 +0 3201 3442 +0 3206 3437 +0 3213 3430 +0 3222 3421 +0 3233 3408 +0 3249 3391 +0 3268 3366 +0 3293 3331 +0 3325 3280 +0 3364 3201 +0 3411 3067 +0 3467 2790 +0 3533 0 +0 3609 0 +0 3693 0 +0 3786 0 +0 3185 3457 +0 3185 3457 +0 3185 3457 +0 3185 3457 +0 3186 3457 +0 3186 3457 +0 3186 3457 +0 3186 3456 +0 3187 3456 +0 3187 3456 +0 3188 3455 +0 3189 3454 +0 3190 3453 +0 3192 3451 +0 3194 3449 +0 3197 3447 +0 3201 3443 +0 3206 3438 +0 3213 3431 +0 3222 3422 +0 3234 3409 +0 3249 3392 +0 3268 3368 +0 3293 3333 +0 3325 3282 +0 3364 3203 +0 3411 3070 +0 3467 2794 +0 3533 0 +0 3609 0 +0 3693 0 +0 3786 0 +0 3186 3459 +0 3186 3458 +0 3186 3458 +0 3186 3458 +0 3186 3458 +0 3186 3458 +0 3186 3458 +0 3187 3458 +0 3187 3457 +0 3188 3457 +0 3188 3456 +0 3189 3455 +0 3190 3454 +0 3192 3453 +0 3194 3451 +0 3197 3448 +0 3201 3444 +0 3206 3439 +0 3213 3432 +0 3222 3423 +0 3234 3411 +0 3249 3393 +0 3269 3369 +0 3294 3334 +0 3325 3283 +0 3364 3205 +0 3411 3073 +0 3468 2800 +0 3533 0 +0 3609 0 +0 3693 0 +0 3786 0 +0 3186 3460 +0 3186 3460 +0 3186 3460 +0 3186 3460 +0 3186 3460 +0 3187 3460 +0 3187 3460 +0 3187 3459 +0 3187 3459 +0 3188 3458 +0 3189 3458 +0 3190 3457 +0 3191 3456 +0 3193 3454 +0 3195 3452 +0 3198 3450 +0 3202 3446 +0 3207 3441 +0 3214 3434 +0 3223 3425 +0 3234 3413 +0 3250 3395 +0 3269 3371 +0 3294 3337 +0 3325 3286 +0 3364 3208 +0 3411 3077 +0 3468 2807 +0 3534 0 +0 3609 0 +0 3694 0 +0 3787 0 +0 3187 3462 +0 3187 3462 +0 3187 3462 +0 3187 3462 +0 3187 3462 +0 3187 3462 +0 3187 3462 +0 3188 3462 +0 3188 3461 +0 3189 3461 +0 3189 3460 +0 3190 3459 +0 3191 3458 +0 3193 3457 +0 3195 3455 +0 3198 3452 +0 3202 3448 +0 3207 3443 +0 3214 3437 +0 3223 3428 +0 3235 3415 +0 3250 3398 +0 3270 3374 +0 3295 3339 +0 3326 3289 +0 3365 3212 +0 3412 3082 +0 3468 2816 +0 3534 0 +0 3609 0 +0 3694 0 +0 3787 0 +0 3187 3465 +0 3187 3465 +0 3187 3465 +0 3188 3465 +0 3188 3465 +0 3188 3465 +0 3188 3465 +0 3188 3465 +0 3189 3464 +0 3189 3464 +0 3190 3463 +0 3191 3462 +0 3192 3461 +0 3194 3460 +0 3196 3458 +0 3199 3455 +0 3203 3451 +0 3208 3446 +0 3215 3440 +0 3224 3431 +0 3235 3418 +0 3251 3401 +0 3270 3377 +0 3295 3343 +0 3326 3293 +0 3365 3217 +0 3412 3089 +0 3469 2829 +0 3534 0 +0 3610 0 +0 3694 0 +0 3787 0 +0 3188 3469 +0 3188 3469 +0 3188 3469 +0 3189 3469 +0 3189 3469 +0 3189 3469 +0 3189 3469 +0 3189 3468 +0 3190 3468 +0 3190 3468 +0 3191 3467 +0 3192 3466 +0 3193 3465 +0 3195 3464 +0 3197 3462 +0 3200 3459 +0 3204 3455 +0 3209 3451 +0 3216 3444 +0 3225 3435 +0 3236 3423 +0 3252 3406 +0 3271 3382 +0 3296 3349 +0 3327 3299 +0 3366 3224 +0 3413 3098 +0 3469 2844 +0 3535 106 +0 3610 0 +0 3694 0 +0 3787 0 +0 3190 3475 +0 3190 3475 +0 3190 3474 +0 3190 3474 +0 3190 3474 +0 3190 3474 +0 3190 3474 +0 3191 3474 +0 3191 3473 +0 3192 3473 +0 3192 3472 +0 3193 3471 +0 3195 3470 +0 3196 3469 +0 3198 3467 +0 3201 3464 +0 3205 3461 +0 3210 3456 +0 3217 3449 +0 3226 3441 +0 3238 3429 +0 3253 3412 +0 3272 3389 +0 3297 3355 +0 3328 3307 +0 3367 3233 +0 3414 3109 +0 3470 2865 +0 3535 1466 +0 3611 0 +0 3695 0 +0 3788 0 +0 3192 3481 +0 3192 3481 +0 3192 3481 +0 3192 3481 +0 3192 3481 +0 3192 3481 +0 3192 3481 +0 3193 3481 +0 3193 3480 +0 3193 3480 +0 3194 3479 +0 3195 3478 +0 3196 3477 +0 3198 3476 +0 3200 3474 +0 3203 3471 +0 3207 3468 +0 3212 3463 +0 3219 3457 +0 3228 3448 +0 3239 3436 +0 3254 3420 +0 3274 3397 +0 3298 3364 +0 3329 3317 +0 3368 3244 +0 3415 3125 +0 3471 2891 +0 3536 1839 +0 3611 0 +0 3695 0 +0 3788 0 +0 3194 3491 +0 3194 3491 +0 3194 3490 +0 3194 3490 +0 3194 3490 +0 3194 3490 +0 3195 3490 +0 3195 3490 +0 3195 3489 +0 3196 3489 +0 3197 3488 +0 3197 3488 +0 3199 3487 +0 3200 3485 +0 3202 3483 +0 3205 3481 +0 3209 3477 +0 3214 3473 +0 3221 3466 +0 3230 3458 +0 3241 3446 +0 3256 3430 +0 3276 3408 +0 3300 3376 +0 3331 3330 +0 3370 3259 +0 3416 3144 +0 3472 2923 +0 3537 2093 +0 3612 0 +0 3696 0 +0 3789 0 +0 3197 3502 +0 3197 3502 +0 3197 3502 +0 3197 3502 +0 3197 3502 +0 3198 3502 +0 3198 3502 +0 3198 3502 +0 3199 3501 +0 3199 3501 +0 3200 3500 +0 3201 3500 +0 3202 3498 +0 3203 3497 +0 3206 3495 +0 3209 3493 +0 3212 3489 +0 3217 3485 +0 3224 3479 +0 3233 3471 +0 3244 3459 +0 3259 3444 +0 3278 3422 +0 3303 3391 +0 3334 3347 +0 3372 3279 +0 3418 3169 +0 3474 2963 +0 3539 2299 +0 3613 0 +0 3697 0 +0 3790 0 +0 3201 3518 +0 3201 3518 +0 3202 3518 +0 3202 3518 +0 3202 3518 +0 3202 3517 +0 3202 3517 +0 3202 3517 +0 3203 3517 +0 3203 3516 +0 3204 3516 +0 3205 3515 +0 3206 3514 +0 3208 3513 +0 3210 3511 +0 3213 3508 +0 3216 3505 +0 3221 3501 +0 3228 3495 +0 3237 3487 +0 3248 3476 +0 3263 3461 +0 3282 3440 +0 3306 3411 +0 3337 3368 +0 3375 3304 +0 3421 3201 +0 3476 3012 +0 3541 2479 +0 3615 0 +0 3699 0 +0 3791 0 +0 3207 3538 +0 3207 3538 +0 3207 3537 +0 3207 3537 +0 3207 3537 +0 3207 3537 +0 3208 3537 +0 3208 3537 +0 3208 3537 +0 3209 3536 +0 3210 3536 +0 3210 3535 +0 3212 3534 +0 3213 3533 +0 3215 3531 +0 3218 3529 +0 3222 3526 +0 3227 3521 +0 3233 3516 +0 3242 3508 +0 3253 3498 +0 3268 3483 +0 3287 3464 +0 3311 3436 +0 3341 3395 +0 3379 3335 +0 3424 3240 +0 3479 3069 +0 3544 2644 +0 3617 0 +0 3701 0 +0 3792 0 +1728 3214 3563 +1725 3214 3563 +1722 3215 3563 +1717 3215 3563 +1710 3215 3563 +1701 3215 3562 +1688 3215 3562 +1671 3215 3562 +1647 3216 3562 +1612 3216 3561 +1562 3217 3561 +1483 3218 3560 +1352 3219 3559 +1082 3220 3558 +0 3223 3557 +0 3225 3554 +0 3229 3551 +0 3234 3548 +0 3240 3542 +0 3249 3535 +0 3260 3525 +0 3274 3512 +0 3293 3493 +0 3317 3467 +0 3346 3429 +0 3384 3374 +0 3429 3287 +0 3483 3137 +0 3547 2799 +0 3620 0 +0 3703 0 +0 3794 0 +2722 3224 3594 +2721 3224 3594 +2721 3224 3594 +2720 3224 3594 +2720 3224 3594 +2719 3225 3594 +2717 3225 3594 +2716 3225 3594 +2713 3225 3593 +2710 3226 3593 +2706 3227 3593 +2700 3227 3592 +2692 3229 3591 +2681 3230 3590 +2666 3232 3589 +2646 3235 3587 +2617 3238 3584 +2574 3243 3580 +2511 3250 3575 +2410 3258 3569 +2224 3269 3559 +1718 3283 3547 +0 3301 3530 +0 3324 3506 +0 3354 3471 +0 3390 3421 +0 3435 3343 +0 3489 3214 +0 3552 2948 +0 3624 0 +0 3706 0 +0 3797 0 +3077 3237 3634 +3077 3237 3634 +3077 3237 3633 +3077 3237 3633 +3076 3237 3633 +3076 3237 3633 +3075 3237 3633 +3075 3238 3633 +3073 3238 3633 +3072 3239 3632 +3070 3239 3632 +3068 3240 3631 +3064 3241 3631 +3059 3243 3630 +3053 3245 3628 +3044 3247 3626 +3032 3251 3624 +3016 3255 3621 +2993 3262 3616 +2960 3270 3610 +2913 3280 3602 +2840 3294 3590 +2720 3312 3575 +2485 3335 3553 +1404 3363 3522 +0 3399 3477 +0 3443 3409 +0 3496 3299 +0 3558 3092 +0 3630 2417 +0 3711 0 +0 3801 0 +3325 3253 3681 +3325 3253 3681 +3325 3253 3681 +3325 3253 3681 +3325 3254 3681 +3325 3254 3681 +3324 3254 3681 +3324 3254 3681 +3323 3254 3680 +3322 3255 3680 +3321 3255 3680 +3320 3256 3679 +3318 3257 3678 +3315 3259 3678 +3311 3261 3676 +3306 3263 3675 +3300 3267 3672 +3291 3271 3669 +3278 3277 3665 +3261 3285 3660 +3237 3295 3652 +3203 3308 3642 +3153 3326 3628 +3076 3348 3609 +2947 3376 3582 +2685 3411 3543 +0 3454 3485 +0 3505 3394 +0 3566 3233 +0 3637 2852 +0 3717 0 +0 3805 0 +3528 3274 3738 +3528 3274 3738 +3528 3274 3738 +3528 3274 3738 +3528 3275 3738 +3528 3275 3738 +3527 3275 3737 +3527 3275 3737 +3527 3275 3737 +3526 3276 3737 +3525 3276 3737 +3525 3277 3736 +3523 3278 3735 +3522 3280 3735 +3519 3281 3734 +3516 3284 3732 +3512 3287 3730 +3506 3291 3728 +3499 3297 3724 +3488 3305 3719 +3474 3314 3713 +3454 3327 3704 +3426 3344 3692 +3385 3365 3675 +3324 3392 3652 +3228 3426 3618 +3055 3467 3570 +2618 3517 3495 +0 3577 3371 +0 3646 3125 +0 3724 1639 +0 3812 0 +3707 3301 3804 +3707 3301 3804 +3707 3301 3804 +3707 3301 3804 +3707 3301 3804 +3706 3301 3804 +3706 3302 3804 +3706 3302 3804 +3706 3302 3803 +3705 3303 3803 +3705 3303 3803 +3704 3304 3803 +3703 3305 3802 +3702 3306 3801 +3701 3308 3800 +3699 3310 3799 +3696 3313 3797 +3692 3317 3795 +3687 3323 3792 +3680 3330 3788 +3671 3339 3782 +3658 3351 3775 +3640 3367 3764 +3615 3387 3750 +3580 3413 3730 +3527 3445 3703 +3446 3485 3663 +3308 3533 3603 +3017 3591 3508 +0 3658 3340 +0 3734 2924 +0 3820 0 +3871 3334 3880 +3871 3334 3880 +3871 3335 3880 +3871 3335 3880 +3871 3335 3880 +3871 3335 3880 +3870 3335 3880 +3870 3335 3879 +3870 3335 3879 +3870 3336 3879 +3869 3336 3879 +3869 3337 3879 +3868 3338 3878 +3868 3339 3878 +3867 3341 3877 +3865 3343 3876 +3863 3346 3874 +3861 3349 3872 +3857 3354 3870 +3852 3361 3866 +3846 3370 3862 +3837 3381 3855 +3825 3396 3846 +3809 3415 3835 +3786 3439 3818 +3753 3470 3796 +3706 3507 3763 +3633 3554 3716 +3513 3609 3644 +3279 3673 3525 +2216 3748 3294 +0 3831 2303 +4025 3376 3965 +4025 3376 3965 +4025 3376 3965 +4025 3376 3965 +4025 3376 3965 +4025 3376 3965 +4025 3376 3964 +4025 3376 3964 +4025 3377 3964 +4025 3377 3964 +4024 3377 3964 +4024 3378 3964 +4024 3379 3963 +4023 3380 3963 +4022 3381 3962 +4021 3383 3961 +4020 3386 3960 +4018 3389 3958 +4016 3394 3956 +4012 3400 3953 +4008 3408 3950 +4002 3418 3944 +3993 3432 3937 +3982 3450 3928 +3967 3472 3914 +3945 3501 3896 +3914 3536 3870 +3870 3579 3833 +3803 3632 3779 +3693 3693 3693 +3489 3765 3547 +2837 3845 3224 +4095 3425 4058 +4095 3426 4058 +4095 3426 4058 +4095 3426 4058 +4095 3426 4058 +4095 3426 4058 +4095 3426 4058 +4095 3426 4058 +4095 3426 4058 +4095 3427 4057 +4095 3427 4057 +4095 3428 4057 +4095 3428 4057 +4095 3429 4056 +4095 3431 4056 +4095 3432 4055 +4095 3435 4054 +4095 3438 4053 +4095 3442 4051 +4095 3447 4049 +4095 3455 4046 +4095 3464 4041 +4095 3476 4036 +4095 3492 4028 +4095 3513 4017 +4095 3539 4003 +4095 3572 3982 +4067 3612 3954 +4024 3661 3913 +3961 3719 3851 +3858 3787 3752 +3671 3864 3575 +4095 3485 4095 +4095 3485 4095 +4095 3485 4095 +4095 3485 4095 +4095 3485 4095 +4095 3485 4095 +4095 3485 4095 +4095 3485 4095 +4095 3485 4095 +4095 3486 4095 +4095 3486 4095 +4095 3486 4095 +4095 3487 4095 +4095 3488 4095 +4095 3489 4095 +4095 3491 4095 +4095 3493 4095 +4095 3495 4095 +4095 3499 4095 +4095 3504 4095 +4095 3510 4095 +4095 3519 4095 +4095 3530 4095 +4095 3544 4095 +4095 3562 4095 +4095 3586 4095 +4095 3615 4095 +4095 3652 4077 +4095 3697 4046 +4095 3751 4001 +4095 3814 3932 +4014 3887 3821 +0 3316 3586 +0 3316 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3585 +0 3317 3585 +0 3317 3585 +0 3317 3585 +0 3318 3584 +0 3318 3584 +0 3319 3583 +0 3320 3582 +0 3321 3581 +0 3323 3580 +0 3325 3578 +0 3328 3575 +0 3332 3571 +0 3337 3566 +0 3344 3559 +0 3353 3550 +0 3365 3537 +0 3380 3520 +0 3400 3495 +0 3425 3460 +0 3456 3408 +0 3495 3328 +0 3543 3193 +0 3599 2911 +0 3665 0 +0 3740 0 +0 3825 0 +0 3316 3586 +0 3316 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3585 +0 3317 3585 +0 3317 3585 +0 3317 3585 +0 3318 3585 +0 3318 3584 +0 3319 3583 +0 3320 3583 +0 3321 3581 +0 3323 3580 +0 3325 3578 +0 3328 3575 +0 3332 3571 +0 3337 3566 +0 3344 3559 +0 3353 3550 +0 3365 3537 +0 3380 3520 +0 3400 3495 +0 3425 3460 +0 3456 3408 +0 3495 3328 +0 3543 3193 +0 3599 2911 +0 3665 0 +0 3741 0 +0 3825 0 +0 3316 3586 +0 3316 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3585 +0 3317 3585 +0 3318 3585 +0 3318 3585 +0 3318 3584 +0 3319 3583 +0 3320 3583 +0 3321 3581 +0 3323 3580 +0 3325 3578 +0 3328 3575 +0 3332 3571 +0 3337 3566 +0 3344 3560 +0 3353 3550 +0 3365 3538 +0 3380 3520 +0 3400 3495 +0 3425 3460 +0 3456 3408 +0 3495 3329 +0 3543 3194 +0 3599 2911 +0 3665 0 +0 3741 0 +0 3825 0 +0 3316 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3585 +0 3317 3585 +0 3318 3585 +0 3318 3585 +0 3318 3584 +0 3319 3584 +0 3320 3583 +0 3321 3582 +0 3323 3580 +0 3325 3578 +0 3328 3575 +0 3332 3571 +0 3337 3566 +0 3344 3560 +0 3353 3550 +0 3365 3538 +0 3380 3520 +0 3400 3495 +0 3425 3460 +0 3456 3409 +0 3495 3329 +0 3543 3194 +0 3599 2912 +0 3665 0 +0 3741 0 +0 3825 0 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3585 +0 3318 3585 +0 3318 3585 +0 3318 3584 +0 3319 3584 +0 3320 3583 +0 3321 3582 +0 3323 3580 +0 3325 3578 +0 3328 3575 +0 3332 3572 +0 3337 3567 +0 3344 3560 +0 3353 3551 +0 3365 3538 +0 3380 3520 +0 3400 3496 +0 3425 3460 +0 3456 3409 +0 3495 3329 +0 3543 3194 +0 3599 2912 +0 3665 0 +0 3741 0 +0 3825 0 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3318 3585 +0 3318 3585 +0 3319 3584 +0 3319 3584 +0 3320 3583 +0 3321 3582 +0 3323 3580 +0 3325 3578 +0 3328 3576 +0 3332 3572 +0 3337 3567 +0 3344 3560 +0 3353 3551 +0 3365 3538 +0 3380 3520 +0 3400 3496 +0 3425 3461 +0 3456 3409 +0 3495 3329 +0 3543 3194 +0 3599 2913 +0 3665 0 +0 3741 0 +0 3825 0 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3318 3586 +0 3318 3585 +0 3319 3585 +0 3319 3584 +0 3320 3583 +0 3321 3582 +0 3323 3581 +0 3325 3579 +0 3328 3576 +0 3332 3572 +0 3337 3567 +0 3344 3560 +0 3353 3551 +0 3365 3538 +0 3380 3521 +0 3400 3496 +0 3425 3461 +0 3456 3409 +0 3495 3330 +0 3543 3195 +0 3599 2914 +0 3665 0 +0 3741 0 +0 3825 0 +0 3317 3587 +0 3317 3587 +0 3317 3587 +0 3317 3587 +0 3317 3587 +0 3317 3586 +0 3317 3586 +0 3317 3586 +0 3318 3586 +0 3318 3585 +0 3319 3585 +0 3319 3584 +0 3320 3584 +0 3322 3582 +0 3323 3581 +0 3325 3579 +0 3328 3576 +0 3332 3572 +0 3338 3567 +0 3344 3561 +0 3353 3551 +0 3365 3539 +0 3380 3521 +0 3400 3496 +0 3425 3461 +0 3456 3410 +0 3495 3330 +0 3543 3196 +0 3599 2915 +0 3665 0 +0 3741 0 +0 3825 0 +0 3317 3587 +0 3317 3587 +0 3317 3587 +0 3317 3587 +0 3317 3587 +0 3317 3587 +0 3317 3587 +0 3318 3587 +0 3318 3586 +0 3318 3586 +0 3319 3585 +0 3319 3585 +0 3320 3584 +0 3322 3583 +0 3323 3581 +0 3326 3579 +0 3328 3576 +0 3332 3573 +0 3338 3568 +0 3344 3561 +0 3353 3552 +0 3365 3539 +0 3380 3521 +0 3400 3497 +0 3425 3462 +0 3457 3410 +0 3495 3331 +0 3543 3197 +0 3599 2917 +0 3665 0 +0 3741 0 +0 3825 0 +0 3317 3588 +0 3317 3588 +0 3317 3588 +0 3317 3588 +0 3317 3587 +0 3317 3587 +0 3317 3587 +0 3318 3587 +0 3318 3587 +0 3318 3586 +0 3319 3586 +0 3320 3585 +0 3321 3584 +0 3322 3583 +0 3323 3582 +0 3326 3580 +0 3329 3577 +0 3333 3573 +0 3338 3568 +0 3345 3561 +0 3354 3552 +0 3365 3540 +0 3381 3522 +0 3400 3498 +0 3425 3463 +0 3457 3411 +0 3496 3332 +0 3543 3198 +0 3599 2919 +0 3665 0 +0 3741 0 +0 3825 0 +0 3317 3588 +0 3317 3588 +0 3317 3588 +0 3317 3588 +0 3317 3588 +0 3317 3588 +0 3318 3588 +0 3318 3588 +0 3318 3587 +0 3319 3587 +0 3319 3587 +0 3320 3586 +0 3321 3585 +0 3322 3584 +0 3324 3583 +0 3326 3580 +0 3329 3578 +0 3333 3574 +0 3338 3569 +0 3345 3562 +0 3354 3553 +0 3365 3540 +0 3381 3523 +0 3400 3498 +0 3425 3464 +0 3457 3412 +0 3496 3333 +0 3543 3200 +0 3599 2922 +0 3665 0 +0 3741 0 +0 3825 0 +0 3317 3589 +0 3317 3589 +0 3317 3589 +0 3317 3589 +0 3318 3589 +0 3318 3589 +0 3318 3589 +0 3318 3589 +0 3318 3588 +0 3319 3588 +0 3319 3588 +0 3320 3587 +0 3321 3586 +0 3322 3585 +0 3324 3583 +0 3326 3581 +0 3329 3579 +0 3333 3575 +0 3338 3570 +0 3345 3563 +0 3354 3554 +0 3366 3541 +0 3381 3524 +0 3401 3500 +0 3426 3465 +0 3457 3414 +0 3496 3335 +0 3543 3202 +0 3600 2927 +0 3665 0 +0 3741 0 +0 3825 0 +0 3318 3591 +0 3318 3591 +0 3318 3591 +0 3318 3590 +0 3318 3590 +0 3318 3590 +0 3318 3590 +0 3318 3590 +0 3319 3590 +0 3319 3589 +0 3320 3589 +0 3320 3588 +0 3321 3587 +0 3323 3586 +0 3324 3585 +0 3326 3583 +0 3329 3580 +0 3333 3576 +0 3338 3571 +0 3345 3565 +0 3354 3555 +0 3366 3543 +0 3381 3525 +0 3401 3501 +0 3426 3466 +0 3457 3415 +0 3496 3337 +0 3543 3205 +0 3600 2932 +0 3666 0 +0 3741 0 +0 3826 0 +0 3318 3592 +0 3318 3592 +0 3318 3592 +0 3318 3592 +0 3318 3592 +0 3318 3592 +0 3319 3592 +0 3319 3592 +0 3319 3591 +0 3320 3591 +0 3320 3591 +0 3321 3590 +0 3322 3589 +0 3323 3588 +0 3325 3586 +0 3327 3584 +0 3330 3582 +0 3334 3578 +0 3339 3573 +0 3346 3566 +0 3355 3557 +0 3366 3545 +0 3382 3527 +0 3401 3503 +0 3426 3469 +0 3458 3418 +0 3496 3340 +0 3544 3209 +0 3600 2939 +0 3666 0 +0 3741 0 +0 3826 0 +0 3319 3595 +0 3319 3595 +0 3319 3594 +0 3319 3594 +0 3319 3594 +0 3319 3594 +0 3319 3594 +0 3319 3594 +0 3320 3594 +0 3320 3593 +0 3321 3593 +0 3321 3592 +0 3322 3591 +0 3324 3590 +0 3325 3589 +0 3327 3587 +0 3330 3584 +0 3334 3580 +0 3339 3575 +0 3346 3569 +0 3355 3560 +0 3367 3547 +0 3382 3530 +0 3402 3506 +0 3427 3472 +0 3458 3421 +0 3497 3344 +0 3544 3214 +0 3600 2948 +0 3666 0 +0 3741 0 +0 3826 0 +0 3319 3598 +0 3319 3597 +0 3320 3597 +0 3320 3597 +0 3320 3597 +0 3320 3597 +0 3320 3597 +0 3320 3597 +0 3320 3597 +0 3321 3596 +0 3321 3596 +0 3322 3595 +0 3323 3594 +0 3324 3593 +0 3326 3592 +0 3328 3590 +0 3331 3587 +0 3335 3583 +0 3340 3579 +0 3347 3572 +0 3356 3563 +0 3368 3550 +0 3383 3533 +0 3402 3510 +0 3427 3475 +0 3459 3426 +0 3497 3349 +0 3544 3221 +0 3601 2961 +0 3666 0 +0 3742 0 +0 3826 0 +0 3320 3601 +0 3320 3601 +0 3321 3601 +0 3321 3601 +0 3321 3601 +0 3321 3601 +0 3321 3601 +0 3321 3601 +0 3321 3601 +0 3322 3600 +0 3322 3600 +0 3323 3599 +0 3324 3598 +0 3325 3597 +0 3327 3596 +0 3329 3594 +0 3332 3591 +0 3336 3587 +0 3341 3583 +0 3348 3576 +0 3357 3567 +0 3368 3555 +0 3384 3538 +0 3403 3514 +0 3428 3481 +0 3459 3431 +0 3498 3356 +0 3545 3230 +0 3601 2976 +0 3667 238 +0 3742 0 +0 3826 0 +0 3322 3607 +0 3322 3607 +0 3322 3607 +0 3322 3607 +0 3322 3606 +0 3322 3606 +0 3322 3606 +0 3323 3606 +0 3323 3606 +0 3323 3605 +0 3324 3605 +0 3324 3604 +0 3325 3604 +0 3327 3603 +0 3328 3601 +0 3330 3599 +0 3333 3596 +0 3337 3593 +0 3342 3588 +0 3349 3582 +0 3358 3573 +0 3370 3561 +0 3385 3544 +0 3404 3521 +0 3429 3487 +0 3460 3439 +0 3499 3365 +0 3546 3241 +0 3602 2997 +0 3668 1599 +0 3743 0 +0 3827 0 +0 3324 3614 +0 3324 3614 +0 3324 3614 +0 3324 3613 +0 3324 3613 +0 3324 3613 +0 3324 3613 +0 3324 3613 +0 3325 3613 +0 3325 3612 +0 3326 3612 +0 3326 3611 +0 3327 3611 +0 3328 3609 +0 3330 3608 +0 3332 3606 +0 3335 3603 +0 3339 3600 +0 3344 3595 +0 3351 3589 +0 3360 3580 +0 3371 3568 +0 3386 3552 +0 3406 3529 +0 3431 3496 +0 3462 3449 +0 3500 3376 +0 3547 3257 +0 3603 3023 +0 3668 1971 +0 3743 0 +0 3827 0 +0 3326 3623 +0 3326 3623 +0 3326 3623 +0 3326 3623 +0 3326 3622 +0 3326 3622 +0 3327 3622 +0 3327 3622 +0 3327 3622 +0 3327 3621 +0 3328 3621 +0 3329 3620 +0 3330 3620 +0 3331 3619 +0 3332 3617 +0 3335 3615 +0 3337 3613 +0 3341 3609 +0 3346 3605 +0 3353 3598 +0 3362 3590 +0 3374 3578 +0 3388 3562 +0 3408 3540 +0 3432 3508 +0 3463 3462 +0 3502 3392 +0 3548 3276 +0 3604 3055 +0 3669 2225 +0 3744 0 +0 3828 0 +0 3329 3635 +0 3329 3635 +0 3329 3634 +0 3329 3634 +0 3329 3634 +0 3330 3634 +0 3330 3634 +0 3330 3634 +0 3330 3634 +0 3331 3633 +0 3331 3633 +0 3332 3632 +0 3333 3632 +0 3334 3631 +0 3336 3629 +0 3338 3627 +0 3341 3625 +0 3344 3622 +0 3349 3617 +0 3356 3611 +0 3365 3603 +0 3376 3591 +0 3391 3576 +0 3410 3554 +0 3435 3523 +0 3466 3479 +0 3504 3411 +0 3550 3301 +0 3606 3095 +0 3671 2431 +0 3746 0 +0 3829 0 +0 3333 3650 +0 3333 3650 +0 3334 3650 +0 3334 3650 +0 3334 3650 +0 3334 3650 +0 3334 3649 +0 3334 3649 +0 3334 3649 +0 3335 3649 +0 3335 3648 +0 3336 3648 +0 3337 3647 +0 3338 3646 +0 3340 3645 +0 3342 3643 +0 3345 3641 +0 3349 3637 +0 3354 3633 +0 3360 3627 +0 3369 3619 +0 3380 3608 +0 3395 3593 +0 3414 3572 +0 3438 3543 +0 3469 3500 +0 3507 3436 +0 3553 3333 +0 3608 3144 +0 3673 2611 +0 3747 0 +0 3831 0 +0 3339 3670 +0 3339 3670 +0 3339 3670 +0 3339 3670 +0 3339 3670 +0 3339 3669 +0 3340 3669 +0 3340 3669 +0 3340 3669 +0 3340 3669 +0 3341 3668 +0 3342 3668 +0 3343 3667 +0 3344 3666 +0 3345 3665 +0 3347 3663 +0 3350 3661 +0 3354 3658 +0 3359 3654 +0 3365 3648 +0 3374 3640 +0 3385 3630 +0 3400 3616 +0 3419 3596 +0 3443 3568 +0 3473 3527 +0 3511 3467 +0 3556 3372 +0 3611 3202 +0 3676 2776 +0 3750 0 +0 3833 0 +1862 3346 3695 +1860 3347 3695 +1858 3347 3695 +1854 3347 3695 +1849 3347 3695 +1842 3347 3695 +1833 3347 3695 +1821 3347 3694 +1803 3347 3694 +1779 3348 3694 +1744 3348 3693 +1694 3349 3693 +1616 3350 3692 +1484 3351 3691 +1214 3353 3690 +0 3355 3689 +0 3357 3686 +0 3361 3684 +0 3366 3680 +0 3372 3674 +0 3381 3667 +0 3392 3657 +0 3406 3644 +0 3425 3625 +0 3449 3599 +0 3479 3562 +0 3516 3506 +0 3561 3419 +0 3615 3269 +0 3679 2931 +0 3753 0 +0 3835 0 +2854 3356 3727 +2854 3356 3727 +2853 3356 3726 +2853 3356 3726 +2853 3356 3726 +2852 3357 3726 +2851 3357 3726 +2849 3357 3726 +2848 3357 3726 +2845 3358 3726 +2842 3358 3725 +2838 3359 3725 +2832 3360 3724 +2824 3361 3723 +2813 3362 3722 +2798 3364 3721 +2778 3367 3719 +2749 3371 3716 +2706 3375 3712 +2643 3382 3707 +2542 3390 3701 +2357 3401 3692 +1850 3415 3679 +0 3433 3662 +0 3456 3638 +0 3486 3604 +0 3522 3553 +0 3567 3476 +0 3621 3346 +0 3684 3080 +0 3757 0 +0 3838 0 +3210 3369 3766 +3209 3369 3766 +3209 3369 3766 +3209 3369 3766 +3209 3369 3766 +3209 3369 3765 +3208 3369 3765 +3207 3370 3765 +3207 3370 3765 +3206 3370 3765 +3204 3371 3764 +3202 3371 3764 +3200 3372 3763 +3196 3373 3763 +3191 3375 3762 +3185 3377 3760 +3176 3379 3758 +3164 3383 3756 +3148 3387 3753 +3125 3394 3748 +3092 3402 3742 +3045 3412 3734 +2972 3426 3722 +2852 3444 3707 +2617 3467 3685 +1537 3495 3654 +0 3531 3609 +0 3575 3542 +0 3628 3431 +0 3690 3224 +0 3762 2549 +0 3843 0 +3457 3385 3813 +3457 3385 3813 +3457 3385 3813 +3457 3385 3813 +3457 3385 3813 +3457 3386 3813 +3457 3386 3813 +3456 3386 3813 +3456 3386 3813 +3455 3387 3812 +3454 3387 3812 +3453 3388 3812 +3452 3388 3811 +3450 3389 3811 +3447 3391 3810 +3443 3393 3808 +3439 3395 3807 +3432 3399 3805 +3423 3403 3802 +3410 3409 3797 +3393 3417 3792 +3369 3427 3785 +3335 3441 3774 +3285 3458 3761 +3208 3480 3741 +3079 3508 3714 +2817 3543 3675 +0 3586 3617 +0 3637 3526 +0 3698 3365 +0 3769 2984 +0 3849 0 +3660 3406 3870 +3660 3406 3870 +3660 3406 3870 +3660 3406 3870 +3660 3407 3870 +3660 3407 3870 +3660 3407 3870 +3660 3407 3870 +3659 3407 3869 +3659 3408 3869 +3658 3408 3869 +3658 3409 3869 +3657 3409 3868 +3655 3410 3868 +3654 3412 3867 +3651 3414 3866 +3648 3416 3864 +3644 3419 3862 +3638 3424 3860 +3631 3429 3856 +3620 3437 3851 +3606 3446 3845 +3586 3459 3836 +3558 3476 3824 +3517 3497 3807 +3456 3524 3784 +3360 3558 3750 +3187 3599 3702 +2750 3650 3627 +0 3709 3503 +0 3778 3257 +0 3856 1771 +3839 3433 3936 +3839 3433 3936 +3839 3433 3936 +3839 3433 3936 +3839 3433 3936 +3839 3433 3936 +3838 3433 3936 +3838 3434 3936 +3838 3434 3936 +3838 3434 3936 +3838 3435 3935 +3837 3435 3935 +3836 3436 3935 +3836 3437 3934 +3834 3438 3933 +3833 3440 3932 +3831 3442 3931 +3828 3445 3930 +3824 3449 3927 +3819 3455 3924 +3812 3462 3920 +3803 3471 3914 +3790 3483 3907 +3772 3499 3897 +3747 3519 3882 +3712 3545 3863 +3659 3577 3835 +3578 3617 3795 +3440 3665 3735 +3149 3723 3640 +0 3790 3472 +0 3867 3056 +4003 3467 4012 +4003 3467 4012 +4003 3467 4012 +4003 3467 4012 +4003 3467 4012 +4003 3467 4012 +4003 3467 4012 +4002 3467 4012 +4002 3467 4012 +4002 3468 4011 +4002 3468 4011 +4002 3468 4011 +4001 3469 4011 +4001 3470 4010 +4000 3471 4010 +3999 3473 4009 +3997 3475 4008 +3995 3478 4006 +3993 3482 4004 +3989 3487 4002 +3984 3493 3998 +3978 3502 3994 +3969 3513 3987 +3957 3528 3979 +3941 3547 3967 +3918 3571 3950 +3886 3602 3928 +3838 3640 3895 +3765 3686 3848 +3646 3741 3776 +3411 3806 3657 +2348 3880 3426 +4095 3508 4095 +4095 3508 4095 +4095 3508 4095 +4095 3508 4095 +4095 3508 4095 +4095 3508 4095 +4095 3508 4095 +4095 3508 4095 +4095 3508 4095 +4095 3509 4095 +4095 3509 4095 +4095 3509 4095 +4095 3510 4095 +4095 3511 4095 +4095 3512 4095 +4095 3513 4094 +4095 3515 4093 +4095 3518 4092 +4095 3522 4091 +4095 3526 4088 +4095 3532 4086 +4095 3540 4082 +4095 3551 4076 +4095 3564 4069 +4095 3582 4060 +4095 3604 4046 +4077 3633 4028 +4046 3668 4002 +4002 3712 3965 +3935 3764 3911 +3826 3826 3826 +3621 3897 3679 +4095 3558 4095 +4095 3558 4095 +4095 3558 4095 +4095 3558 4095 +4095 3558 4095 +4095 3558 4095 +4095 3558 4095 +4095 3558 4095 +4095 3558 4095 +4095 3558 4095 +4095 3559 4095 +4095 3559 4095 +4095 3560 4095 +4095 3560 4095 +4095 3561 4095 +4095 3563 4095 +4095 3564 4095 +4095 3567 4095 +4095 3570 4095 +4095 3574 4095 +4095 3580 4095 +4095 3587 4095 +4095 3596 4095 +4095 3608 4095 +4095 3624 4095 +4095 3645 4095 +4095 3671 4095 +4095 3704 4095 +4095 3744 4086 +4095 3793 4045 +4093 3851 3983 +3990 3919 3884 +0 3448 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3717 +0 3449 3717 +0 3449 3717 +0 3450 3717 +0 3450 3717 +0 3450 3716 +0 3451 3715 +0 3452 3715 +0 3453 3713 +0 3455 3712 +0 3457 3710 +0 3460 3707 +0 3464 3703 +0 3469 3698 +0 3476 3691 +0 3485 3682 +0 3497 3669 +0 3512 3652 +0 3532 3627 +0 3557 3592 +0 3588 3540 +0 3627 3460 +0 3675 3325 +0 3731 3043 +0 3797 0 +0 3873 0 +0 3448 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3717 +0 3449 3717 +0 3450 3717 +0 3450 3717 +0 3451 3716 +0 3451 3715 +0 3452 3715 +0 3453 3713 +0 3455 3712 +0 3457 3710 +0 3460 3707 +0 3464 3703 +0 3469 3698 +0 3476 3692 +0 3485 3682 +0 3497 3670 +0 3512 3652 +0 3532 3627 +0 3557 3592 +0 3588 3540 +0 3627 3460 +0 3675 3325 +0 3731 3043 +0 3797 0 +0 3873 0 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3717 +0 3449 3717 +0 3450 3717 +0 3450 3717 +0 3451 3716 +0 3451 3716 +0 3452 3715 +0 3453 3714 +0 3455 3712 +0 3457 3710 +0 3460 3707 +0 3464 3703 +0 3469 3698 +0 3476 3692 +0 3485 3682 +0 3497 3670 +0 3512 3652 +0 3532 3627 +0 3557 3592 +0 3588 3540 +0 3627 3461 +0 3675 3326 +0 3731 3043 +0 3797 0 +0 3873 0 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3717 +0 3450 3717 +0 3450 3717 +0 3451 3716 +0 3451 3716 +0 3452 3715 +0 3453 3714 +0 3455 3712 +0 3457 3710 +0 3460 3707 +0 3464 3703 +0 3469 3698 +0 3476 3692 +0 3485 3682 +0 3497 3670 +0 3512 3652 +0 3532 3627 +0 3557 3592 +0 3588 3541 +0 3627 3461 +0 3675 3326 +0 3731 3043 +0 3797 0 +0 3873 0 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3717 +0 3450 3717 +0 3450 3717 +0 3451 3716 +0 3451 3716 +0 3452 3715 +0 3453 3714 +0 3455 3712 +0 3457 3710 +0 3460 3707 +0 3464 3704 +0 3469 3699 +0 3476 3692 +0 3485 3682 +0 3497 3670 +0 3512 3652 +0 3532 3628 +0 3557 3592 +0 3588 3541 +0 3627 3461 +0 3675 3326 +0 3731 3044 +0 3797 0 +0 3873 0 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3450 3717 +0 3450 3717 +0 3451 3716 +0 3451 3716 +0 3452 3715 +0 3453 3714 +0 3455 3712 +0 3457 3710 +0 3460 3707 +0 3464 3704 +0 3469 3699 +0 3476 3692 +0 3485 3683 +0 3497 3670 +0 3512 3652 +0 3532 3628 +0 3557 3593 +0 3588 3541 +0 3627 3461 +0 3675 3326 +0 3731 3044 +0 3797 0 +0 3873 0 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3450 3717 +0 3450 3717 +0 3451 3717 +0 3451 3716 +0 3452 3715 +0 3454 3714 +0 3455 3712 +0 3457 3710 +0 3460 3708 +0 3464 3704 +0 3469 3699 +0 3476 3692 +0 3485 3683 +0 3497 3670 +0 3512 3653 +0 3532 3628 +0 3557 3593 +0 3588 3541 +0 3627 3461 +0 3675 3327 +0 3731 3045 +0 3797 0 +0 3873 0 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3449 3718 +0 3450 3718 +0 3450 3717 +0 3451 3717 +0 3451 3716 +0 3452 3715 +0 3454 3714 +0 3455 3713 +0 3457 3711 +0 3460 3708 +0 3464 3704 +0 3470 3699 +0 3476 3692 +0 3485 3683 +0 3497 3670 +0 3512 3653 +0 3532 3628 +0 3557 3593 +0 3589 3541 +0 3627 3462 +0 3675 3327 +0 3731 3046 +0 3797 0 +0 3873 0 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3449 3718 +0 3450 3718 +0 3450 3718 +0 3450 3718 +0 3451 3717 +0 3451 3716 +0 3452 3716 +0 3454 3714 +0 3455 3713 +0 3458 3711 +0 3460 3708 +0 3464 3704 +0 3470 3699 +0 3476 3693 +0 3485 3683 +0 3497 3671 +0 3512 3653 +0 3532 3629 +0 3557 3593 +0 3589 3542 +0 3627 3462 +0 3675 3328 +0 3731 3047 +0 3797 0 +0 3873 0 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3449 3719 +0 3450 3719 +0 3450 3718 +0 3450 3718 +0 3451 3718 +0 3452 3717 +0 3452 3716 +0 3454 3715 +0 3455 3713 +0 3458 3711 +0 3461 3709 +0 3465 3705 +0 3470 3700 +0 3477 3693 +0 3486 3684 +0 3497 3671 +0 3513 3654 +0 3532 3629 +0 3557 3594 +0 3589 3542 +0 3628 3463 +0 3675 3329 +0 3731 3049 +0 3797 0 +0 3873 0 +0 3449 3720 +0 3449 3720 +0 3449 3720 +0 3449 3720 +0 3449 3720 +0 3449 3720 +0 3449 3719 +0 3450 3719 +0 3450 3719 +0 3450 3719 +0 3450 3719 +0 3451 3718 +0 3452 3717 +0 3453 3717 +0 3454 3715 +0 3456 3714 +0 3458 3712 +0 3461 3709 +0 3465 3705 +0 3470 3700 +0 3477 3694 +0 3486 3684 +0 3497 3672 +0 3513 3654 +0 3532 3630 +0 3557 3595 +0 3589 3543 +0 3628 3464 +0 3675 3330 +0 3731 3051 +0 3797 0 +0 3873 0 +0 3449 3721 +0 3449 3721 +0 3449 3720 +0 3449 3720 +0 3449 3720 +0 3449 3720 +0 3450 3720 +0 3450 3720 +0 3450 3720 +0 3450 3720 +0 3451 3719 +0 3451 3719 +0 3452 3718 +0 3453 3717 +0 3454 3716 +0 3456 3715 +0 3458 3713 +0 3461 3710 +0 3465 3706 +0 3470 3701 +0 3477 3694 +0 3486 3685 +0 3498 3672 +0 3513 3655 +0 3532 3631 +0 3557 3596 +0 3589 3544 +0 3628 3465 +0 3675 3332 +0 3731 3055 +0 3797 0 +0 3873 0 +0 3449 3721 +0 3449 3721 +0 3449 3721 +0 3450 3721 +0 3450 3721 +0 3450 3721 +0 3450 3721 +0 3450 3721 +0 3450 3721 +0 3450 3721 +0 3451 3720 +0 3451 3720 +0 3452 3719 +0 3453 3718 +0 3454 3717 +0 3456 3716 +0 3458 3714 +0 3461 3711 +0 3465 3707 +0 3470 3702 +0 3477 3695 +0 3486 3686 +0 3498 3674 +0 3513 3656 +0 3533 3632 +0 3558 3597 +0 3589 3546 +0 3628 3467 +0 3675 3334 +0 3732 3059 +0 3798 0 +0 3873 0 +0 3450 3723 +0 3450 3723 +0 3450 3723 +0 3450 3723 +0 3450 3723 +0 3450 3723 +0 3450 3722 +0 3450 3722 +0 3451 3722 +0 3451 3722 +0 3451 3721 +0 3452 3721 +0 3452 3720 +0 3453 3719 +0 3455 3718 +0 3456 3717 +0 3458 3715 +0 3461 3712 +0 3465 3708 +0 3471 3703 +0 3477 3697 +0 3486 3687 +0 3498 3675 +0 3513 3658 +0 3533 3633 +0 3558 3599 +0 3589 3548 +0 3628 3469 +0 3675 3337 +0 3732 3064 +0 3798 0 +0 3873 0 +0 3450 3724 +0 3450 3724 +0 3450 3724 +0 3450 3724 +0 3450 3724 +0 3450 3724 +0 3451 3724 +0 3451 3724 +0 3451 3724 +0 3451 3723 +0 3452 3723 +0 3452 3723 +0 3453 3722 +0 3454 3721 +0 3455 3720 +0 3457 3719 +0 3459 3717 +0 3462 3714 +0 3466 3710 +0 3471 3705 +0 3478 3698 +0 3487 3689 +0 3498 3677 +0 3514 3659 +0 3533 3635 +0 3558 3601 +0 3590 3550 +0 3628 3472 +0 3676 3341 +0 3732 3071 +0 3798 0 +0 3873 0 +0 3451 3727 +0 3451 3727 +0 3451 3727 +0 3451 3727 +0 3451 3727 +0 3451 3726 +0 3451 3726 +0 3451 3726 +0 3452 3726 +0 3452 3726 +0 3452 3725 +0 3453 3725 +0 3453 3724 +0 3454 3723 +0 3456 3722 +0 3457 3721 +0 3459 3719 +0 3462 3716 +0 3466 3712 +0 3471 3708 +0 3478 3701 +0 3487 3692 +0 3499 3679 +0 3514 3662 +0 3534 3638 +0 3559 3604 +0 3590 3553 +0 3629 3476 +0 3676 3346 +0 3732 3081 +0 3798 0 +0 3873 0 +0 3451 3730 +0 3452 3730 +0 3452 3730 +0 3452 3730 +0 3452 3729 +0 3452 3729 +0 3452 3729 +0 3452 3729 +0 3452 3729 +0 3453 3729 +0 3453 3728 +0 3453 3728 +0 3454 3727 +0 3455 3726 +0 3456 3725 +0 3458 3724 +0 3460 3722 +0 3463 3719 +0 3467 3716 +0 3472 3711 +0 3479 3704 +0 3488 3695 +0 3500 3683 +0 3515 3666 +0 3534 3642 +0 3559 3608 +0 3591 3558 +0 3629 3481 +0 3676 3353 +0 3733 3093 +0 3798 0 +0 3874 0 +0 3453 3734 +0 3453 3734 +0 3453 3734 +0 3453 3734 +0 3453 3733 +0 3453 3733 +0 3453 3733 +0 3453 3733 +0 3453 3733 +0 3454 3733 +0 3454 3732 +0 3454 3732 +0 3455 3731 +0 3456 3730 +0 3457 3729 +0 3459 3728 +0 3461 3726 +0 3464 3723 +0 3468 3720 +0 3473 3715 +0 3480 3708 +0 3489 3699 +0 3501 3687 +0 3516 3670 +0 3535 3646 +0 3560 3613 +0 3591 3563 +0 3630 3488 +0 3677 3362 +0 3733 3109 +0 3799 370 +0 3874 0 +0 3454 3739 +0 3454 3739 +0 3454 3739 +0 3454 3739 +0 3454 3739 +0 3454 3739 +0 3454 3738 +0 3454 3738 +0 3455 3738 +0 3455 3738 +0 3455 3738 +0 3456 3737 +0 3457 3737 +0 3457 3736 +0 3459 3735 +0 3460 3733 +0 3463 3731 +0 3465 3729 +0 3469 3725 +0 3474 3720 +0 3481 3714 +0 3490 3705 +0 3502 3693 +0 3517 3676 +0 3536 3653 +0 3561 3620 +0 3592 3571 +0 3631 3497 +0 3678 3374 +0 3734 3129 +0 3800 1731 +0 3875 0 +0 3456 3746 +0 3456 3746 +0 3456 3746 +0 3456 3746 +0 3456 3746 +0 3456 3745 +0 3456 3745 +0 3456 3745 +0 3456 3745 +0 3457 3745 +0 3457 3744 +0 3458 3744 +0 3458 3743 +0 3459 3743 +0 3460 3742 +0 3462 3740 +0 3464 3738 +0 3467 3736 +0 3471 3732 +0 3476 3727 +0 3483 3721 +0 3492 3712 +0 3503 3700 +0 3518 3684 +0 3538 3661 +0 3563 3629 +0 3594 3581 +0 3632 3508 +0 3679 3389 +0 3735 3155 +0 3800 2103 +0 3875 0 +0 3458 3755 +0 3458 3755 +0 3458 3755 +0 3458 3755 +0 3458 3755 +0 3458 3755 +0 3458 3754 +0 3459 3754 +0 3459 3754 +0 3459 3754 +0 3460 3754 +0 3460 3753 +0 3461 3753 +0 3462 3752 +0 3463 3751 +0 3465 3749 +0 3467 3747 +0 3470 3745 +0 3473 3741 +0 3479 3737 +0 3485 3731 +0 3494 3722 +0 3506 3710 +0 3521 3694 +0 3540 3672 +0 3565 3640 +0 3595 3594 +0 3634 3524 +0 3681 3409 +0 3736 3187 +0 3802 2357 +0 3876 0 +0 3461 3767 +0 3461 3767 +0 3461 3767 +0 3461 3767 +0 3461 3767 +0 3462 3766 +0 3462 3766 +0 3462 3766 +0 3462 3766 +0 3462 3766 +0 3463 3765 +0 3463 3765 +0 3464 3764 +0 3465 3764 +0 3466 3763 +0 3468 3761 +0 3470 3759 +0 3473 3757 +0 3477 3754 +0 3482 3749 +0 3488 3743 +0 3497 3735 +0 3508 3723 +0 3523 3708 +0 3543 3686 +0 3567 3655 +0 3598 3611 +0 3636 3543 +0 3682 3434 +0 3738 3227 +0 3803 2563 +0 3878 0 +0 3466 3782 +0 3466 3782 +0 3466 3782 +0 3466 3782 +0 3466 3782 +0 3466 3782 +0 3466 3782 +0 3466 3782 +0 3466 3781 +0 3467 3781 +0 3467 3781 +0 3467 3780 +0 3468 3780 +0 3469 3779 +0 3470 3778 +0 3472 3777 +0 3474 3775 +0 3477 3773 +0 3481 3769 +0 3486 3765 +0 3492 3759 +0 3501 3751 +0 3512 3740 +0 3527 3725 +0 3546 3704 +0 3570 3675 +0 3601 3632 +0 3639 3568 +0 3685 3465 +0 3740 3276 +0 3805 2743 +0 3879 0 +0 3471 3802 +0 3471 3802 +0 3471 3802 +0 3471 3802 +0 3471 3802 +0 3471 3802 +0 3472 3802 +0 3472 3801 +0 3472 3801 +0 3472 3801 +0 3473 3801 +0 3473 3800 +0 3474 3800 +0 3475 3799 +0 3476 3798 +0 3477 3797 +0 3480 3795 +0 3482 3793 +0 3486 3790 +0 3491 3786 +0 3498 3780 +0 3506 3772 +0 3517 3762 +0 3532 3748 +0 3551 3728 +0 3575 3700 +0 3605 3660 +0 3643 3599 +0 3689 3504 +0 3743 3334 +0 3808 2908 +0 3882 0 +1996 3479 3827 +1994 3479 3827 +1992 3479 3827 +1990 3479 3827 +1986 3479 3827 +1981 3479 3827 +1974 3479 3827 +1965 3479 3827 +1953 3479 3826 +1935 3480 3826 +1911 3480 3826 +1877 3480 3826 +1826 3481 3825 +1748 3482 3824 +1616 3483 3824 +1346 3485 3822 +0 3487 3821 +0 3490 3819 +0 3493 3816 +0 3498 3812 +0 3505 3806 +0 3513 3799 +0 3524 3789 +0 3538 3776 +0 3557 3757 +0 3581 3731 +0 3611 3694 +0 3648 3638 +0 3693 3551 +0 3748 3401 +0 3811 3063 +0 3885 0 +2986 3488 3859 +2986 3488 3859 +2986 3488 3859 +2986 3488 3859 +2985 3488 3859 +2985 3489 3858 +2984 3489 3858 +2983 3489 3858 +2982 3489 3858 +2980 3489 3858 +2977 3490 3858 +2974 3490 3857 +2970 3491 3857 +2964 3492 3856 +2956 3493 3855 +2945 3494 3854 +2931 3496 3853 +2910 3499 3851 +2881 3503 3848 +2839 3507 3844 +2775 3514 3839 +2674 3522 3833 +2489 3533 3824 +1982 3547 3811 +0 3565 3794 +0 3589 3770 +0 3618 3736 +0 3655 3685 +0 3699 3608 +0 3753 3478 +0 3816 3212 +0 3889 0 +3342 3501 3898 +3342 3501 3898 +3342 3501 3898 +3341 3501 3898 +3341 3501 3898 +3341 3501 3898 +3341 3501 3898 +3340 3501 3897 +3340 3502 3897 +3339 3502 3897 +3338 3502 3897 +3336 3503 3897 +3334 3503 3896 +3332 3504 3896 +3328 3505 3895 +3323 3507 3894 +3317 3509 3892 +3308 3511 3891 +3296 3515 3888 +3280 3520 3885 +3257 3526 3880 +3224 3534 3874 +3177 3544 3866 +3104 3558 3854 +2984 3576 3839 +2749 3599 3817 +1669 3628 3786 +0 3663 3741 +0 3707 3674 +0 3760 3564 +0 3822 3356 +0 3894 2681 +3590 3517 3945 +3590 3517 3945 +3590 3517 3945 +3589 3517 3945 +3589 3518 3945 +3589 3518 3945 +3589 3518 3945 +3589 3518 3945 +3588 3518 3945 +3588 3518 3945 +3587 3519 3945 +3586 3519 3944 +3585 3520 3944 +3584 3520 3943 +3582 3522 3943 +3579 3523 3942 +3576 3525 3941 +3571 3527 3939 +3564 3531 3937 +3555 3535 3934 +3543 3541 3930 +3525 3549 3924 +3501 3559 3917 +3467 3573 3907 +3417 3590 3893 +3340 3612 3873 +3211 3640 3846 +2949 3675 3807 +0 3718 3749 +0 3769 3658 +0 3830 3497 +0 3901 3116 +3792 3538 4002 +3792 3538 4002 +3792 3538 4002 +3792 3539 4002 +3792 3539 4002 +3792 3539 4002 +3792 3539 4002 +3792 3539 4002 +3792 3539 4002 +3791 3539 4002 +3791 3540 4001 +3790 3540 4001 +3790 3541 4001 +3789 3541 4000 +3787 3542 4000 +3786 3544 3999 +3783 3546 3998 +3780 3548 3996 +3776 3551 3994 +3770 3556 3992 +3763 3561 3988 +3752 3569 3983 +3738 3579 3977 +3718 3591 3968 +3690 3608 3956 +3649 3629 3939 +3588 3656 3916 +3492 3690 3882 +3319 3731 3834 +2882 3782 3759 +0 3841 3636 +0 3910 3389 +3971 3565 4068 +3971 3565 4068 +3971 3565 4068 +3971 3565 4068 +3971 3565 4068 +3971 3565 4068 +3971 3565 4068 +3971 3566 4068 +3970 3566 4068 +3970 3566 4068 +3970 3566 4068 +3970 3567 4067 +3969 3567 4067 +3968 3568 4067 +3968 3569 4066 +3966 3570 4066 +3965 3572 4065 +3963 3574 4063 +3960 3577 4062 +3956 3581 4059 +3951 3587 4056 +3944 3594 4052 +3935 3603 4047 +3922 3615 4039 +3904 3631 4029 +3879 3651 4014 +3844 3677 3995 +3791 3709 3967 +3710 3749 3927 +3572 3797 3867 +3281 3855 3772 +0 3922 3604 +4095 3599 4095 +4095 3599 4095 +4095 3599 4095 +4095 3599 4095 +4095 3599 4095 +4095 3599 4095 +4095 3599 4095 +4095 3599 4095 +4095 3599 4095 +4095 3599 4095 +4095 3600 4095 +4095 3600 4095 +4095 3601 4095 +4095 3601 4095 +4095 3602 4095 +4095 3603 4095 +4095 3605 4095 +4095 3607 4095 +4095 3610 4095 +4095 3614 4095 +4095 3619 4095 +4095 3625 4095 +4095 3634 4095 +4095 3645 4095 +4090 3660 4095 +4073 3679 4095 +4050 3703 4083 +4018 3734 4060 +3970 3772 4027 +3897 3818 3980 +3778 3873 3908 +3543 3938 3789 +4095 3640 4095 +4095 3640 4095 +4095 3640 4095 +4095 3640 4095 +4095 3640 4095 +4095 3640 4095 +4095 3640 4095 +4095 3640 4095 +4095 3640 4095 +4095 3641 4095 +4095 3641 4095 +4095 3641 4095 +4095 3642 4095 +4095 3642 4095 +4095 3643 4095 +4095 3644 4095 +4095 3646 4095 +4095 3648 4095 +4095 3650 4095 +4095 3654 4095 +4095 3658 4095 +4095 3664 4095 +4095 3672 4095 +4095 3683 4095 +4095 3696 4095 +4095 3714 4095 +4095 3736 4095 +4095 3765 4095 +4095 3800 4095 +4095 3844 4095 +4067 3896 4043 +3958 3958 3958 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/test-grade_inv-Log2-48nits_32_LUT.azasset b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/test-grade_inv-Log2-48nits_32_LUT.azasset new file mode 100644 index 0000000000..a91e9d0c1a --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/test-grade_inv-Log2-48nits_32_LUT.azasset @@ -0,0 +1,32780 @@ +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "LookupTableAsset", + "ClassData": { + "Name": "LookupTable", + "Intervals": [ + 0, 33, 66, 99, 132, 165, 198, 231, 264, 297, 330, 363, 396, 429, 462, 495, 528, 561, 594, 627, 660, 693, 726, 759, 792, 825, 858, 891, 924, 957, 990, 1023], + "Values": [ + 0, 0, 0, + 0, 0, 0, + 0, 15, 0, + 0, 104, 0, + 0, 201, 0, + 0, 305, 0, + 0, 415, 0, + 0, 530, 0, + 0, 649, 0, + 0, 771, 0, + 0, 895, 0, + 0, 1022, 0, + 0, 1149, 0, + 0, 1278, 0, + 0, 1408, 0, + 0, 1538, 0, + 0, 1668, 0, + 0, 1799, 0, + 0, 1931, 0, + 0, 2062, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2457, 0, + 0, 2589, 0, + 0, 2721, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3381, 0, + 0, 3514, 0, + 0, 3646, 0, + 130, 0, 20, + 28, 0, 0, + 0, 33, 0, + 0, 119, 0, + 0, 213, 0, + 0, 315, 0, + 0, 423, 0, + 0, 536, 0, + 0, 654, 0, + 0, 775, 0, + 0, 898, 0, + 0, 1024, 0, + 0, 1151, 0, + 0, 1279, 0, + 0, 1408, 0, + 0, 1538, 0, + 0, 1669, 0, + 0, 1800, 0, + 0, 1931, 0, + 0, 2062, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2589, 0, + 0, 2721, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3381, 0, + 0, 3514, 0, + 0, 3646, 0, + 342, 0, 170, + 280, 0, 102, + 183, 56, 0, + 7, 139, 0, + 0, 229, 0, + 0, 328, 0, + 0, 433, 0, + 0, 544, 0, + 0, 660, 0, + 0, 779, 0, + 0, 902, 0, + 0, 1026, 0, + 0, 1153, 0, + 0, 1281, 0, + 0, 1410, 0, + 0, 1539, 0, + 0, 1670, 0, + 0, 1800, 0, + 0, 1931, 0, + 0, 2063, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2589, 0, + 0, 2721, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3381, 0, + 0, 3514, 0, + 0, 3646, 0, + 526, 0, 315, + 486, 18, 266, + 426, 86, 192, + 331, 163, 68, + 163, 250, 0, + 0, 344, 0, + 0, 446, 0, + 0, 555, 0, + 0, 668, 0, + 0, 785, 0, + 0, 906, 0, + 0, 1030, 0, + 0, 1156, 0, + 0, 1283, 0, + 0, 1411, 0, + 0, 1540, 0, + 0, 1670, 0, + 0, 1801, 0, + 0, 1932, 0, + 0, 2063, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 693, 8, 457, + 666, 60, 422, + 626, 123, 370, + 568, 195, 290, + 475, 276, 155, + 312, 366, 0, + 0, 463, 0, + 0, 568, 0, + 0, 678, 0, + 0, 794, 0, + 0, 913, 0, + 0, 1035, 0, + 0, 1159, 0, + 0, 1285, 0, + 0, 1413, 0, + 0, 1542, 0, + 0, 1672, 0, + 0, 1802, 0, + 0, 1932, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 850, 65, 596, + 831, 112, 570, + 804, 168, 534, + 765, 233, 479, + 707, 308, 395, + 616, 393, 250, + 457, 485, 0, + 82, 585, 0, + 0, 692, 0, + 0, 804, 0, + 0, 921, 0, + 0, 1041, 0, + 0, 1164, 0, + 0, 1289, 0, + 0, 1416, 0, + 0, 1544, 0, + 0, 1673, 0, + 0, 1803, 0, + 0, 1933, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 999, 131, 733, + 986, 172, 714, + 967, 222, 688, + 940, 280, 650, + 901, 348, 594, + 844, 426, 505, + 755, 513, 352, + 598, 608, 3, + 235, 710, 0, + 0, 818, 0, + 0, 932, 0, + 0, 1049, 0, + 0, 1170, 0, + 0, 1294, 0, + 0, 1420, 0, + 0, 1547, 0, + 0, 1675, 0, + 0, 1805, 0, + 0, 1935, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1144, 207, 869, + 1134, 242, 855, + 1121, 285, 836, + 1102, 336, 809, + 1075, 397, 770, + 1037, 468, 712, + 980, 547, 621, + 892, 636, 461, + 737, 732, 82, + 382, 836, 0, + 0, 946, 0, + 0, 1060, 0, + 0, 1179, 0, + 0, 1300, 0, + 0, 1424, 0, + 0, 1550, 0, + 0, 1678, 0, + 0, 1807, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1286, 293, 1004, + 1278, 322, 994, + 1268, 358, 980, + 1255, 402, 960, + 1236, 455, 932, + 1210, 518, 893, + 1172, 590, 833, + 1115, 671, 740, + 1027, 761, 574, + 874, 859, 170, + 525, 964, 0, + 0, 1074, 0, + 0, 1190, 0, + 0, 1309, 0, + 0, 1431, 0, + 0, 1555, 0, + 0, 1682, 0, + 0, 1809, 0, + 0, 1938, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1424, 386, 1138, + 1419, 410, 1131, + 1412, 440, 1120, + 1402, 477, 1106, + 1389, 523, 1086, + 1370, 577, 1058, + 1343, 641, 1018, + 1306, 714, 958, + 1250, 797, 862, + 1162, 888, 692, + 1010, 987, 267, + 665, 1093, 0, + 0, 1204, 0, + 0, 1320, 0, + 0, 1439, 0, + 0, 1562, 0, + 0, 1687, 0, + 0, 1813, 0, + 0, 1941, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1562, 487, 1272, + 1558, 506, 1266, + 1552, 531, 1258, + 1545, 561, 1248, + 1535, 599, 1234, + 1522, 646, 1213, + 1503, 701, 1185, + 1477, 766, 1144, + 1439, 840, 1084, + 1383, 924, 987, + 1296, 1016, 813, + 1145, 1116, 370, + 802, 1222, 0, + 0, 1334, 0, + 0, 1450, 0, + 0, 1570, 0, + 0, 1693, 0, + 0, 1818, 0, + 0, 1945, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2331, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1697, 595, 1405, + 1695, 610, 1401, + 1691, 629, 1395, + 1685, 654, 1387, + 1678, 685, 1377, + 1668, 724, 1362, + 1655, 771, 1342, + 1636, 827, 1314, + 1610, 893, 1273, + 1572, 968, 1211, + 1517, 1053, 1113, + 1430, 1145, 937, + 1279, 1246, 479, + 939, 1352, 0, + 0, 1465, 0, + 0, 1581, 0, + 0, 1701, 0, + 0, 1824, 0, + 0, 1950, 0, + 0, 2076, 0, + 0, 2204, 0, + 0, 2334, 0, + 0, 2463, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1832, 707, 1538, + 1830, 719, 1535, + 1827, 735, 1531, + 1823, 755, 1525, + 1818, 780, 1517, + 1811, 811, 1507, + 1801, 851, 1492, + 1788, 898, 1472, + 1769, 955, 1443, + 1743, 1021, 1402, + 1705, 1097, 1340, + 1650, 1182, 1241, + 1563, 1275, 1062, + 1412, 1376, 594, + 1074, 1483, 0, + 0, 1596, 0, + 0, 1712, 0, + 0, 1833, 0, + 0, 1956, 0, + 0, 2081, 0, + 0, 2208, 0, + 0, 2336, 0, + 0, 2466, 0, + 0, 2595, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1966, 824, 1671, + 1965, 834, 1668, + 1963, 846, 1665, + 1960, 861, 1661, + 1956, 881, 1655, + 1951, 907, 1647, + 1943, 939, 1637, + 1934, 978, 1622, + 1920, 1026, 1602, + 1902, 1084, 1573, + 1875, 1150, 1531, + 1838, 1227, 1469, + 1782, 1312, 1370, + 1696, 1406, 1190, + 1545, 1507, 712, + 1209, 1614, 0, + 0, 1727, 0, + 0, 1844, 0, + 0, 1964, 0, + 0, 2088, 0, + 0, 2213, 0, + 0, 2340, 0, + 0, 2468, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 2100, 945, 1803, + 2099, 952, 1802, + 2097, 961, 1799, + 2095, 973, 1796, + 2092, 989, 1792, + 2088, 1009, 1786, + 2083, 1035, 1778, + 2076, 1067, 1768, + 2066, 1107, 1753, + 2053, 1156, 1732, + 2034, 1213, 1703, + 2008, 1280, 1662, + 1970, 1357, 1599, + 1915, 1442, 1499, + 1828, 1536, 1318, + 1678, 1638, 834, + 1342, 1745, 0, + 0, 1858, 0, + 0, 1976, 0, + 0, 2096, 0, + 0, 2220, 0, + 0, 2345, 0, + 0, 2472, 0, + 0, 2600, 0, + 0, 2730, 0, + 0, 2859, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2233, 1068, 1936, + 2232, 1074, 1935, + 2231, 1081, 1933, + 2230, 1090, 1930, + 2227, 1102, 1927, + 2225, 1118, 1923, + 2221, 1139, 1917, + 2215, 1164, 1909, + 2208, 1197, 1899, + 2198, 1237, 1884, + 2185, 1286, 1863, + 2166, 1343, 1834, + 2140, 1411, 1793, + 2103, 1488, 1730, + 2047, 1573, 1629, + 1961, 1668, 1447, + 1811, 1769, 958, + 1476, 1877, 0, + 0, 1990, 0, + 0, 2107, 0, + 0, 2228, 0, + 0, 2351, 0, + 0, 2477, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2862, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2366, 1194, 2068, + 2366, 1198, 2067, + 2365, 1203, 2066, + 2364, 1210, 2064, + 2362, 1220, 2062, + 2360, 1232, 2059, + 2357, 1248, 2054, + 2353, 1268, 2049, + 2348, 1294, 2041, + 2340, 1327, 2030, + 2331, 1367, 2015, + 2317, 1416, 1995, + 2299, 1474, 1966, + 2273, 1542, 1924, + 2235, 1619, 1861, + 2180, 1705, 1760, + 2093, 1799, 1577, + 1944, 1901, 1084, + 1609, 2009, 0, + 0, 2122, 0, + 0, 2239, 0, + 0, 2360, 0, + 0, 2483, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2499, 1321, 2200, + 2499, 1324, 2200, + 2498, 1328, 2199, + 2497, 1333, 2197, + 2496, 1340, 2196, + 2494, 1350, 2193, + 2492, 1362, 2190, + 2489, 1378, 2186, + 2485, 1399, 2180, + 2480, 1425, 2172, + 2473, 1458, 2161, + 2463, 1498, 2147, + 2450, 1547, 2126, + 2431, 1605, 2097, + 2405, 1673, 2055, + 2367, 1750, 1992, + 2312, 1836, 1891, + 2226, 1931, 1708, + 2076, 2032, 1211, + 1742, 2140, 0, + 0, 2254, 0, + 0, 2371, 0, + 0, 2492, 0, + 0, 2615, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2996, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2632, 1449, 2333, + 2631, 1451, 2332, + 2631, 1454, 2331, + 2630, 1458, 2330, + 2629, 1464, 2329, + 2628, 1471, 2327, + 2626, 1481, 2325, + 2624, 1493, 2322, + 2621, 1509, 2318, + 2617, 1530, 2312, + 2612, 1556, 2304, + 2605, 1589, 2293, + 2595, 1629, 2278, + 2582, 1678, 2258, + 2563, 1736, 2229, + 2537, 1804, 2187, + 2500, 1881, 2123, + 2444, 1968, 2023, + 2358, 2062, 1839, + 2208, 2164, 1340, + 1874, 2272, 0, + 0, 2385, 0, + 0, 2503, 0, + 0, 2624, 0, + 0, 2747, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3128, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2764, 1578, 2465, + 2764, 1580, 2465, + 2763, 1582, 2464, + 2763, 1585, 2463, + 2762, 1589, 2462, + 2761, 1595, 2461, + 2760, 1602, 2459, + 2759, 1612, 2457, + 2756, 1624, 2454, + 2753, 1640, 2449, + 2750, 1661, 2444, + 2744, 1687, 2436, + 2737, 1720, 2425, + 2727, 1760, 2410, + 2714, 1809, 2389, + 2695, 1868, 2360, + 2669, 1936, 2318, + 2632, 2013, 2255, + 2577, 2099, 2154, + 2490, 2194, 1970, + 2341, 2296, 1469, + 2007, 2404, 0, + 0, 2517, 0, + 0, 2635, 0, + 0, 2756, 0, + 0, 2879, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3260, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1708, 2597, + 2896, 1709, 2597, + 2896, 1711, 2596, + 2896, 1713, 2596, + 2895, 1716, 2595, + 2894, 1721, 2594, + 2893, 1726, 2593, + 2892, 1733, 2591, + 2891, 1743, 2589, + 2889, 1755, 2586, + 2886, 1771, 2581, + 2882, 1792, 2575, + 2876, 1818, 2568, + 2869, 1851, 2557, + 2859, 1892, 2542, + 2846, 1941, 2521, + 2828, 1999, 2492, + 2801, 2067, 2450, + 2764, 2145, 2387, + 2709, 2231, 2286, + 2622, 2326, 2101, + 2473, 2428, 1599, + 2139, 2536, 0, + 0, 2649, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3011, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3029, 1838, 2729, + 3029, 1839, 2729, + 3028, 1841, 2729, + 3028, 1842, 2728, + 3028, 1845, 2728, + 3027, 1848, 2727, + 3027, 1852, 2726, + 3026, 1858, 2725, + 3024, 1865, 2723, + 3023, 1874, 2721, + 3021, 1887, 2717, + 3018, 1903, 2713, + 3014, 1924, 2707, + 3009, 1950, 2699, + 3001, 1983, 2689, + 2992, 2024, 2674, + 2978, 2073, 2653, + 2960, 2131, 2624, + 2934, 2199, 2582, + 2896, 2277, 2519, + 2841, 2363, 2418, + 2755, 2458, 2233, + 2605, 2560, 1730, + 2272, 2668, 0, + 0, 2781, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3143, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3161, 1969, 2861, + 3161, 1970, 2861, + 3161, 1971, 2861, + 3160, 1972, 2861, + 3160, 1974, 2860, + 3160, 1976, 2860, + 3159, 1980, 2859, + 3159, 1984, 2858, + 3158, 1989, 2857, + 3157, 1996, 2855, + 3155, 2006, 2853, + 3153, 2018, 2849, + 3150, 2035, 2845, + 3146, 2055, 2839, + 3141, 2082, 2831, + 3134, 2115, 2821, + 3124, 2155, 2806, + 3110, 2205, 2785, + 3092, 2263, 2756, + 3066, 2331, 2714, + 3028, 2409, 2651, + 2973, 2495, 2549, + 2887, 2590, 2365, + 2737, 2692, 1861, + 2404, 2800, 0, + 0, 2913, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3293, 2100, 2994, + 3293, 2101, 2993, + 3293, 2102, 2993, + 3293, 2103, 2993, + 3293, 2104, 2993, + 3292, 2106, 2992, + 3292, 2108, 2992, + 3291, 2111, 2991, + 3291, 2115, 2990, + 3290, 2121, 2989, + 3289, 2128, 2987, + 3287, 2138, 2985, + 3285, 2150, 2981, + 3282, 2166, 2977, + 3278, 2187, 2971, + 3273, 2213, 2963, + 3266, 2246, 2953, + 3256, 2287, 2938, + 3242, 2336, 2917, + 3224, 2395, 2888, + 3198, 2463, 2846, + 3161, 2541, 2783, + 3105, 2627, 2681, + 3019, 2722, 2497, + 2870, 2824, 1992, + 2536, 2932, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3660, 0, + 3425, 2232, 3126, + 3425, 2232, 3126, + 3425, 2233, 3125, + 3425, 2233, 3125, + 3425, 2234, 3125, + 3425, 2236, 3125, + 3424, 2238, 3124, + 3424, 2240, 3124, + 3424, 2243, 3123, + 3423, 2247, 3122, + 3422, 2253, 3121, + 3421, 2260, 3119, + 3419, 2270, 3117, + 3417, 2282, 3113, + 3414, 2298, 3109, + 3410, 2319, 3103, + 3405, 2345, 3095, + 3398, 2378, 3085, + 3388, 2419, 3070, + 3375, 2468, 3049, + 3356, 2527, 3020, + 3330, 2595, 2978, + 3293, 2673, 2915, + 3237, 2759, 2813, + 3151, 2854, 2629, + 3002, 2956, 2124, + 2668, 3064, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2363, 3258, + 3557, 2364, 3258, + 3557, 2364, 3258, + 3557, 2365, 3258, + 3557, 2365, 3257, + 3557, 2366, 3257, + 3557, 2368, 3257, + 3557, 2370, 3256, + 3556, 2372, 3256, + 3556, 2375, 3255, + 3555, 2379, 3254, + 3554, 2385, 3253, + 3553, 2392, 3251, + 3551, 2402, 3249, + 3549, 2414, 3245, + 3546, 2430, 3241, + 3542, 2451, 3235, + 3537, 2477, 3227, + 3530, 2510, 3217, + 3520, 2551, 3202, + 3507, 2600, 3181, + 3488, 2659, 3152, + 3462, 2727, 3110, + 3425, 2805, 3047, + 3369, 2891, 2945, + 3283, 2986, 2760, + 3134, 3088, 2255, + 2800, 3196, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3690, 2495, 3390, + 3690, 2495, 3390, + 3690, 2496, 3390, + 3689, 2496, 3390, + 3689, 2497, 3390, + 3689, 2497, 3389, + 3689, 2498, 3389, + 3689, 2500, 3389, + 3689, 2501, 3388, + 3688, 2504, 3388, + 3688, 2507, 3387, + 3687, 2511, 3386, + 3686, 2517, 3385, + 3685, 2524, 3383, + 3683, 2534, 3381, + 3681, 2546, 3378, + 3678, 2562, 3373, + 3674, 2583, 3367, + 3669, 2609, 3360, + 3662, 2642, 3349, + 3652, 2683, 3334, + 3639, 2732, 3313, + 3620, 2791, 3284, + 3594, 2859, 3242, + 3557, 2937, 3179, + 3502, 3023, 3077, + 3415, 3118, 2892, + 3266, 3220, 2387, + 2933, 3328, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3822, 2627, 3522, + 3822, 2627, 3522, + 3822, 2627, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2629, 3522, + 3821, 2629, 3521, + 3821, 2630, 3521, + 3821, 2632, 3521, + 3821, 2633, 3521, + 3820, 2636, 3520, + 3820, 2639, 3519, + 3819, 2643, 3518, + 3818, 2649, 3517, + 3817, 2656, 3515, + 3816, 2666, 3513, + 3813, 2678, 3510, + 3810, 2694, 3505, + 3807, 2715, 3499, + 3801, 2741, 3492, + 3794, 2774, 3481, + 3784, 2815, 3466, + 3771, 2864, 3445, + 3752, 2923, 3416, + 3726, 2991, 3374, + 3689, 3069, 3311, + 3634, 3155, 3209, + 3547, 3250, 3024, + 3398, 3352, 2519, + 3065, 3460, 0, + 0, 3574, 0, + 0, 3691, 0, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3953, 2761, 3654, + 3953, 2762, 3653, + 3953, 2764, 3653, + 3953, 2765, 3653, + 3952, 2768, 3652, + 3952, 2771, 3651, + 3951, 2775, 3650, + 3950, 2781, 3649, + 3949, 2788, 3647, + 3948, 2798, 3645, + 3945, 2810, 3642, + 3943, 2826, 3637, + 3939, 2847, 3632, + 3933, 2873, 3624, + 3926, 2906, 3613, + 3916, 2947, 3598, + 3903, 2996, 3577, + 3884, 3055, 3548, + 3858, 3123, 3506, + 3821, 3201, 3443, + 3766, 3287, 3341, + 3679, 3382, 3156, + 3530, 3484, 2651, + 3197, 3592, 0, + 0, 3706, 0, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2893, 3786, + 4085, 2894, 3785, + 4085, 2896, 3785, + 4085, 2897, 3785, + 4085, 2900, 3784, + 4084, 2903, 3783, + 4083, 2907, 3782, + 4083, 2913, 3781, + 4081, 2920, 3779, + 4080, 2930, 3777, + 4078, 2942, 3774, + 4075, 2958, 3769, + 4071, 2979, 3764, + 4065, 3005, 3756, + 4058, 3038, 3745, + 4049, 3079, 3730, + 4035, 3128, 3709, + 4017, 3187, 3680, + 3991, 3255, 3638, + 3953, 3333, 3575, + 3898, 3419, 3473, + 3812, 3514, 3289, + 3662, 3616, 2783, + 3329, 3725, 0, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3025, 3918, + 4095, 3026, 3917, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3032, 3916, + 4095, 3035, 3915, + 4095, 3039, 3915, + 4095, 3045, 3913, + 4095, 3052, 3911, + 4095, 3062, 3909, + 4095, 3074, 3906, + 4095, 3090, 3902, + 4095, 3111, 3896, + 4095, 3137, 3888, + 4095, 3170, 3877, + 4095, 3211, 3862, + 4095, 3261, 3842, + 4095, 3319, 3812, + 4095, 3387, 3770, + 4085, 3465, 3707, + 4030, 3551, 3605, + 3944, 3646, 3421, + 3794, 3748, 2915, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3167, 4048, + 4095, 3171, 4047, + 4095, 3177, 4045, + 4095, 3184, 4044, + 4095, 3194, 4041, + 4095, 3206, 4038, + 4095, 3222, 4034, + 4095, 3243, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3343, 3994, + 4095, 3393, 3974, + 4095, 3451, 3944, + 4095, 3519, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 0, 0, + 0, 0, 0, + 0, 49, 0, + 0, 132, 0, + 0, 224, 0, + 0, 324, 0, + 0, 430, 0, + 0, 542, 0, + 0, 658, 0, + 0, 778, 0, + 0, 901, 0, + 0, 1025, 0, + 0, 1152, 0, + 0, 1280, 0, + 0, 1409, 0, + 0, 1539, 0, + 0, 1669, 0, + 0, 1800, 0, + 0, 1931, 0, + 0, 2063, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2589, 0, + 0, 2721, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3381, 0, + 0, 3514, 0, + 0, 3646, 0, + 104, 0, 80, + 0, 0, 0, + 0, 66, 0, + 0, 147, 0, + 0, 236, 0, + 0, 333, 0, + 0, 438, 0, + 0, 548, 0, + 0, 662, 0, + 0, 781, 0, + 0, 903, 0, + 0, 1028, 0, + 0, 1154, 0, + 0, 1281, 0, + 0, 1410, 0, + 0, 1540, 0, + 0, 1670, 0, + 0, 1800, 0, + 0, 1931, 0, + 0, 2063, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2721, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3381, 0, + 0, 3514, 0, + 0, 3646, 0, + 326, 0, 214, + 262, 20, 152, + 160, 88, 54, + 0, 165, 0, + 0, 251, 0, + 0, 346, 0, + 0, 447, 0, + 0, 555, 0, + 0, 668, 0, + 0, 786, 0, + 0, 907, 0, + 0, 1030, 0, + 0, 1156, 0, + 0, 1283, 0, + 0, 1411, 0, + 0, 1540, 0, + 0, 1670, 0, + 0, 1801, 0, + 0, 1932, 0, + 0, 2063, 0, + 0, 2194, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 515, 0, 347, + 474, 52, 302, + 413, 116, 234, + 315, 188, 122, + 139, 271, 0, + 0, 361, 0, + 0, 460, 0, + 0, 565, 0, + 0, 676, 0, + 0, 792, 0, + 0, 911, 0, + 0, 1034, 0, + 0, 1158, 0, + 0, 1285, 0, + 0, 1413, 0, + 0, 1542, 0, + 0, 1671, 0, + 0, 1802, 0, + 0, 1932, 0, + 0, 2063, 0, + 0, 2195, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 686, 42, 481, + 658, 92, 447, + 618, 150, 399, + 558, 218, 324, + 463, 295, 200, + 295, 382, 0, + 0, 477, 0, + 0, 579, 0, + 0, 687, 0, + 0, 800, 0, + 0, 918, 0, + 0, 1039, 0, + 0, 1162, 0, + 0, 1288, 0, + 0, 1415, 0, + 0, 1543, 0, + 0, 1673, 0, + 0, 1802, 0, + 0, 1933, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 844, 96, 614, + 825, 140, 589, + 798, 192, 554, + 758, 255, 502, + 700, 327, 422, + 607, 408, 287, + 444, 498, 4, + 53, 596, 0, + 0, 700, 0, + 0, 811, 0, + 0, 926, 0, + 0, 1045, 0, + 0, 1167, 0, + 0, 1291, 0, + 0, 1418, 0, + 0, 1545, 0, + 0, 1674, 0, + 0, 1804, 0, + 0, 1934, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 996, 158, 746, + 982, 197, 728, + 963, 244, 702, + 936, 300, 666, + 897, 365, 611, + 839, 440, 527, + 748, 525, 382, + 589, 617, 65, + 214, 718, 0, + 0, 824, 0, + 0, 936, 0, + 0, 1053, 0, + 0, 1173, 0, + 0, 1296, 0, + 0, 1421, 0, + 0, 1548, 0, + 0, 1676, 0, + 0, 1805, 0, + 0, 1935, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1141, 230, 879, + 1131, 263, 865, + 1118, 304, 846, + 1099, 354, 820, + 1072, 412, 782, + 1034, 481, 726, + 976, 558, 638, + 887, 645, 484, + 730, 740, 135, + 367, 842, 0, + 0, 950, 0, + 0, 1064, 0, + 0, 1181, 0, + 0, 1302, 0, + 0, 1426, 0, + 0, 1552, 0, + 0, 1679, 0, + 0, 1807, 0, + 0, 1937, 0, + 0, 2067, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1284, 312, 1011, + 1276, 340, 1001, + 1266, 374, 987, + 1253, 417, 968, + 1234, 468, 941, + 1207, 529, 902, + 1169, 600, 844, + 1112, 679, 753, + 1024, 768, 593, + 869, 865, 214, + 514, 968, 0, + 0, 1078, 0, + 0, 1192, 0, + 0, 1311, 0, + 0, 1432, 0, + 0, 1557, 0, + 0, 1683, 0, + 0, 1810, 0, + 0, 1939, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1423, 402, 1144, + 1418, 425, 1136, + 1410, 454, 1126, + 1401, 490, 1112, + 1387, 534, 1092, + 1368, 587, 1064, + 1342, 650, 1025, + 1304, 722, 966, + 1247, 803, 872, + 1159, 893, 706, + 1006, 991, 302, + 657, 1096, 0, + 0, 1206, 0, + 0, 1322, 0, + 0, 1441, 0, + 0, 1563, 0, + 0, 1687, 0, + 0, 1814, 0, + 0, 1941, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1561, 500, 1276, + 1557, 518, 1270, + 1551, 542, 1263, + 1544, 572, 1252, + 1534, 609, 1238, + 1521, 655, 1218, + 1502, 709, 1190, + 1476, 773, 1150, + 1438, 846, 1090, + 1382, 929, 994, + 1294, 1020, 824, + 1142, 1119, 399, + 797, 1225, 0, + 0, 1336, 0, + 0, 1452, 0, + 0, 1571, 0, + 0, 1694, 0, + 0, 1819, 0, + 0, 1945, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1697, 605, 1408, + 1694, 619, 1404, + 1690, 639, 1398, + 1684, 663, 1391, + 1677, 694, 1380, + 1667, 732, 1366, + 1654, 778, 1346, + 1635, 833, 1317, + 1609, 898, 1277, + 1571, 973, 1216, + 1515, 1056, 1119, + 1428, 1148, 945, + 1277, 1248, 502, + 935, 1354, 0, + 0, 1466, 0, + 0, 1582, 0, + 0, 1702, 0, + 0, 1825, 0, + 0, 1950, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1832, 715, 1540, + 1830, 727, 1537, + 1827, 742, 1533, + 1823, 761, 1527, + 1817, 786, 1519, + 1810, 818, 1509, + 1800, 856, 1494, + 1787, 903, 1474, + 1768, 959, 1446, + 1742, 1025, 1405, + 1704, 1100, 1343, + 1649, 1185, 1245, + 1562, 1277, 1069, + 1411, 1378, 612, + 1071, 1484, 0, + 0, 1597, 0, + 0, 1713, 0, + 0, 1833, 0, + 0, 1956, 0, + 0, 2082, 0, + 0, 2208, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1966, 830, 1672, + 1964, 840, 1670, + 1962, 851, 1667, + 1959, 867, 1663, + 1955, 887, 1657, + 1950, 912, 1649, + 1943, 943, 1639, + 1933, 983, 1624, + 1920, 1030, 1604, + 1901, 1087, 1575, + 1875, 1153, 1534, + 1837, 1229, 1472, + 1782, 1314, 1373, + 1695, 1407, 1194, + 1544, 1508, 726, + 1206, 1615, 0, + 0, 1728, 0, + 0, 1845, 0, + 0, 1965, 0, + 0, 2088, 0, + 0, 2213, 0, + 0, 2340, 0, + 0, 2468, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 2100, 950, 1805, + 2099, 957, 1803, + 2097, 966, 1801, + 2095, 978, 1797, + 2092, 993, 1793, + 2088, 1013, 1787, + 2083, 1039, 1780, + 2075, 1071, 1769, + 2066, 1110, 1754, + 2052, 1159, 1734, + 2034, 1216, 1705, + 2007, 1282, 1663, + 1970, 1359, 1601, + 1914, 1444, 1502, + 1828, 1538, 1322, + 1678, 1639, 844, + 1341, 1746, 0, + 0, 1859, 0, + 0, 1976, 0, + 0, 2097, 0, + 0, 2220, 0, + 0, 2345, 0, + 0, 2472, 0, + 0, 2600, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2233, 1072, 1937, + 2232, 1077, 1935, + 2231, 1084, 1934, + 2229, 1093, 1931, + 2227, 1106, 1928, + 2224, 1121, 1924, + 2220, 1142, 1918, + 2215, 1167, 1910, + 2208, 1200, 1900, + 2198, 1239, 1885, + 2185, 1288, 1864, + 2166, 1345, 1836, + 2140, 1412, 1794, + 2103, 1489, 1731, + 2047, 1575, 1631, + 1960, 1669, 1450, + 1810, 1770, 966, + 1475, 1878, 0, + 0, 1990, 0, + 0, 2108, 0, + 0, 2228, 0, + 0, 2352, 0, + 0, 2477, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2366, 1196, 2069, + 2365, 1200, 2068, + 2365, 1206, 2067, + 2363, 1213, 2065, + 2362, 1222, 2063, + 2360, 1234, 2059, + 2357, 1250, 2055, + 2353, 1271, 2049, + 2347, 1297, 2041, + 2340, 1329, 2031, + 2330, 1369, 2016, + 2317, 1418, 1995, + 2298, 1475, 1966, + 2272, 1543, 1925, + 2235, 1620, 1862, + 2180, 1706, 1762, + 2093, 1800, 1579, + 1943, 1901, 1090, + 1608, 2009, 0, + 0, 2122, 0, + 0, 2239, 0, + 0, 2360, 0, + 0, 2483, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2499, 1323, 2201, + 2498, 1326, 2200, + 2498, 1330, 2199, + 2497, 1335, 2198, + 2496, 1342, 2196, + 2494, 1352, 2194, + 2492, 1364, 2191, + 2489, 1380, 2186, + 2485, 1400, 2181, + 2480, 1426, 2173, + 2473, 1459, 2162, + 2463, 1499, 2147, + 2449, 1548, 2127, + 2431, 1606, 2098, + 2405, 1674, 2056, + 2367, 1751, 1993, + 2312, 1837, 1892, + 2225, 1931, 1709, + 2076, 2033, 1216, + 1741, 2141, 0, + 0, 2254, 0, + 0, 2371, 0, + 0, 2492, 0, + 0, 2615, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2996, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2631, 1450, 2333, + 2631, 1453, 2333, + 2631, 1456, 2332, + 2630, 1460, 2331, + 2629, 1465, 2330, + 2628, 1473, 2328, + 2626, 1482, 2325, + 2624, 1494, 2322, + 2621, 1510, 2318, + 2617, 1531, 2312, + 2612, 1557, 2304, + 2605, 1590, 2294, + 2595, 1630, 2279, + 2582, 1679, 2258, + 2563, 1737, 2229, + 2537, 1805, 2187, + 2500, 1882, 2124, + 2444, 1968, 2023, + 2358, 2063, 1840, + 2208, 2164, 1343, + 1874, 2272, 0, + 0, 2386, 0, + 0, 2503, 0, + 0, 2624, 0, + 0, 2747, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3128, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2764, 1579, 2465, + 2764, 1581, 2465, + 2763, 1583, 2464, + 2763, 1586, 2464, + 2762, 1590, 2463, + 2761, 1596, 2461, + 2760, 1603, 2460, + 2758, 1613, 2457, + 2756, 1625, 2454, + 2753, 1641, 2450, + 2749, 1662, 2444, + 2744, 1688, 2436, + 2737, 1721, 2425, + 2727, 1761, 2410, + 2714, 1810, 2390, + 2695, 1868, 2361, + 2669, 1936, 2319, + 2632, 2013, 2256, + 2576, 2100, 2155, + 2490, 2194, 1971, + 2341, 2296, 1472, + 2006, 2404, 0, + 0, 2518, 0, + 0, 2635, 0, + 0, 2756, 0, + 0, 2879, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1709, 2597, + 2896, 1710, 2597, + 2896, 1712, 2597, + 2895, 1714, 2596, + 2895, 1717, 2595, + 2894, 1721, 2594, + 2893, 1727, 2593, + 2892, 1734, 2591, + 2891, 1744, 2589, + 2888, 1756, 2586, + 2886, 1772, 2581, + 2882, 1793, 2576, + 2876, 1819, 2568, + 2869, 1852, 2557, + 2859, 1892, 2542, + 2846, 1942, 2522, + 2827, 2000, 2492, + 2801, 2068, 2450, + 2764, 2145, 2387, + 2709, 2232, 2286, + 2622, 2326, 2102, + 2473, 2428, 1601, + 2139, 2536, 0, + 0, 2650, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3011, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3029, 1839, 2729, + 3029, 1840, 2729, + 3028, 1841, 2729, + 3028, 1843, 2729, + 3028, 1845, 2728, + 3027, 1849, 2727, + 3026, 1853, 2726, + 3026, 1858, 2725, + 3024, 1865, 2723, + 3023, 1875, 2721, + 3021, 1887, 2718, + 3018, 1904, 2713, + 3014, 1924, 2708, + 3009, 1950, 2700, + 3001, 1983, 2689, + 2992, 2024, 2674, + 2978, 2073, 2653, + 2960, 2132, 2624, + 2934, 2199, 2582, + 2896, 2277, 2519, + 2841, 2363, 2418, + 2754, 2458, 2234, + 2605, 2560, 1732, + 2271, 2668, 0, + 0, 2781, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3161, 1970, 2862, + 3161, 1970, 2861, + 3161, 1971, 2861, + 3160, 1973, 2861, + 3160, 1975, 2860, + 3160, 1977, 2860, + 3159, 1980, 2859, + 3159, 1984, 2858, + 3158, 1990, 2857, + 3157, 1997, 2855, + 3155, 2006, 2853, + 3153, 2019, 2850, + 3150, 2035, 2845, + 3146, 2056, 2839, + 3141, 2082, 2832, + 3133, 2115, 2821, + 3124, 2156, 2806, + 3110, 2205, 2785, + 3092, 2263, 2756, + 3066, 2331, 2714, + 3028, 2409, 2651, + 2973, 2495, 2550, + 2887, 2590, 2365, + 2737, 2692, 1862, + 2404, 2800, 0, + 0, 2914, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3293, 2101, 2994, + 3293, 2101, 2994, + 3293, 2102, 2993, + 3293, 2103, 2993, + 3293, 2104, 2993, + 3292, 2106, 2992, + 3292, 2109, 2992, + 3291, 2112, 2991, + 3291, 2116, 2990, + 3290, 2121, 2989, + 3289, 2129, 2987, + 3287, 2138, 2985, + 3285, 2151, 2982, + 3282, 2167, 2977, + 3278, 2187, 2971, + 3273, 2214, 2963, + 3266, 2247, 2953, + 3256, 2287, 2938, + 3242, 2337, 2917, + 3224, 2395, 2888, + 3198, 2463, 2846, + 3160, 2541, 2783, + 3105, 2627, 2681, + 3019, 2722, 2497, + 2870, 2824, 1993, + 2536, 2932, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3660, 0, + 3425, 2232, 3126, + 3425, 2232, 3126, + 3425, 2233, 3126, + 3425, 2234, 3125, + 3425, 2235, 3125, + 3425, 2236, 3125, + 3424, 2238, 3124, + 3424, 2240, 3124, + 3424, 2243, 3123, + 3423, 2248, 3122, + 3422, 2253, 3121, + 3421, 2260, 3119, + 3419, 2270, 3117, + 3417, 2282, 3114, + 3414, 2299, 3109, + 3410, 2319, 3103, + 3405, 2346, 3095, + 3398, 2379, 3085, + 3388, 2419, 3070, + 3375, 2469, 3049, + 3356, 2527, 3020, + 3330, 2595, 2978, + 3293, 2673, 2915, + 3237, 2759, 2813, + 3151, 2854, 2629, + 3002, 2956, 2124, + 2668, 3064, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2364, 3258, + 3557, 2364, 3258, + 3557, 2364, 3258, + 3557, 2365, 3258, + 3557, 2366, 3257, + 3557, 2367, 3257, + 3557, 2368, 3257, + 3557, 2370, 3256, + 3556, 2372, 3256, + 3556, 2375, 3255, + 3555, 2379, 3254, + 3554, 2385, 3253, + 3553, 2392, 3251, + 3551, 2402, 3249, + 3549, 2414, 3246, + 3546, 2430, 3241, + 3542, 2451, 3235, + 3537, 2477, 3228, + 3530, 2510, 3217, + 3520, 2551, 3202, + 3507, 2600, 3181, + 3488, 2659, 3152, + 3462, 2727, 3110, + 3425, 2805, 3047, + 3369, 2891, 2945, + 3283, 2986, 2761, + 3134, 3088, 2256, + 2800, 3196, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3690, 2495, 3390, + 3690, 2495, 3390, + 3690, 2496, 3390, + 3689, 2496, 3390, + 3689, 2497, 3390, + 3689, 2497, 3389, + 3689, 2498, 3389, + 3689, 2500, 3389, + 3689, 2502, 3389, + 3688, 2504, 3388, + 3688, 2507, 3387, + 3687, 2511, 3386, + 3686, 2517, 3385, + 3685, 2524, 3383, + 3683, 2534, 3381, + 3681, 2546, 3378, + 3678, 2562, 3373, + 3674, 2583, 3367, + 3669, 2609, 3360, + 3662, 2642, 3349, + 3652, 2683, 3334, + 3639, 2732, 3313, + 3620, 2791, 3284, + 3594, 2859, 3242, + 3557, 2937, 3179, + 3502, 3023, 3077, + 3415, 3118, 2893, + 3266, 3220, 2387, + 2933, 3328, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3822, 2627, 3522, + 3822, 2627, 3522, + 3822, 2627, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3821, 2629, 3522, + 3821, 2629, 3522, + 3821, 2630, 3521, + 3821, 2632, 3521, + 3821, 2634, 3521, + 3820, 2636, 3520, + 3820, 2639, 3519, + 3819, 2643, 3518, + 3818, 2649, 3517, + 3817, 2656, 3515, + 3815, 2666, 3513, + 3813, 2678, 3510, + 3810, 2694, 3505, + 3807, 2715, 3500, + 3801, 2741, 3492, + 3794, 2774, 3481, + 3784, 2815, 3466, + 3771, 2864, 3445, + 3752, 2923, 3416, + 3726, 2991, 3374, + 3689, 3069, 3311, + 3634, 3155, 3209, + 3547, 3250, 3025, + 3398, 3352, 2519, + 3065, 3460, 0, + 0, 3574, 0, + 0, 3691, 0, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3953, 2761, 3654, + 3953, 2762, 3653, + 3953, 2764, 3653, + 3953, 2766, 3653, + 3952, 2768, 3652, + 3952, 2771, 3651, + 3951, 2775, 3650, + 3950, 2781, 3649, + 3949, 2788, 3647, + 3948, 2798, 3645, + 3945, 2810, 3642, + 3943, 2826, 3637, + 3939, 2847, 3632, + 3933, 2873, 3624, + 3926, 2906, 3613, + 3916, 2947, 3598, + 3903, 2996, 3577, + 3884, 3055, 3548, + 3858, 3123, 3506, + 3821, 3201, 3443, + 3766, 3287, 3341, + 3679, 3382, 3157, + 3530, 3484, 2651, + 3197, 3592, 0, + 0, 3706, 0, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2893, 3786, + 4085, 2894, 3785, + 4085, 2896, 3785, + 4085, 2898, 3785, + 4085, 2900, 3784, + 4084, 2903, 3783, + 4083, 2907, 3782, + 4083, 2913, 3781, + 4081, 2920, 3779, + 4080, 2930, 3777, + 4078, 2942, 3774, + 4075, 2958, 3769, + 4071, 2979, 3764, + 4065, 3005, 3756, + 4058, 3038, 3745, + 4049, 3079, 3730, + 4035, 3129, 3709, + 4017, 3187, 3680, + 3991, 3255, 3638, + 3953, 3333, 3575, + 3898, 3419, 3473, + 3811, 3514, 3289, + 3662, 3616, 2783, + 3329, 3725, 0, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3032, 3916, + 4095, 3035, 3916, + 4095, 3039, 3915, + 4095, 3045, 3913, + 4095, 3052, 3911, + 4095, 3062, 3909, + 4095, 3074, 3906, + 4095, 3090, 3902, + 4095, 3111, 3896, + 4095, 3137, 3888, + 4095, 3171, 3877, + 4095, 3211, 3862, + 4095, 3261, 3842, + 4095, 3319, 3812, + 4095, 3387, 3770, + 4085, 3465, 3707, + 4030, 3551, 3605, + 3944, 3646, 3421, + 3794, 3748, 2915, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3167, 4048, + 4095, 3171, 4047, + 4095, 3177, 4045, + 4095, 3184, 4044, + 4095, 3194, 4041, + 4095, 3206, 4038, + 4095, 3222, 4034, + 4095, 3243, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3343, 3994, + 4095, 3393, 3974, + 4095, 3451, 3944, + 4095, 3519, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 0, 36, + 0, 24, 0, + 0, 91, 0, + 0, 168, 0, + 0, 254, 0, + 0, 348, 0, + 0, 449, 0, + 0, 557, 0, + 0, 669, 0, + 0, 787, 0, + 0, 907, 0, + 0, 1031, 0, + 0, 1156, 0, + 0, 1283, 0, + 0, 1411, 0, + 0, 1541, 0, + 0, 1671, 0, + 0, 1801, 0, + 0, 1932, 0, + 0, 2063, 0, + 0, 2195, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 67, 0, 149, + 0, 42, 77, + 0, 107, 0, + 0, 181, 0, + 0, 264, 0, + 0, 356, 0, + 0, 456, 0, + 0, 562, 0, + 0, 674, 0, + 0, 790, 0, + 0, 910, 0, + 0, 1033, 0, + 0, 1158, 0, + 0, 1284, 0, + 0, 1412, 0, + 0, 1541, 0, + 0, 1671, 0, + 0, 1801, 0, + 0, 1932, 0, + 0, 2063, 0, + 0, 2195, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2853, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3249, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 303, 13, 267, + 236, 65, 212, + 127, 127, 127, + 0, 198, 0, + 0, 279, 0, + 0, 368, 0, + 0, 465, 0, + 0, 570, 0, + 0, 680, 0, + 0, 795, 0, + 0, 913, 0, + 0, 1035, 0, + 0, 1160, 0, + 0, 1286, 0, + 0, 1413, 0, + 0, 1542, 0, + 0, 1672, 0, + 0, 1802, 0, + 0, 1933, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2326, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2985, 0, + 0, 3117, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 500, 45, 387, + 458, 94, 346, + 394, 152, 284, + 292, 220, 186, + 105, 297, 8, + 0, 383, 0, + 0, 478, 0, + 0, 579, 0, + 0, 687, 0, + 0, 801, 0, + 0, 918, 0, + 0, 1039, 0, + 0, 1162, 0, + 0, 1288, 0, + 0, 1415, 0, + 0, 1543, 0, + 0, 1673, 0, + 0, 1803, 0, + 0, 1933, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 676, 85, 511, + 647, 130, 480, + 606, 184, 434, + 545, 248, 366, + 447, 321, 254, + 271, 403, 43, + 0, 494, 0, + 0, 592, 0, + 0, 697, 0, + 0, 808, 0, + 0, 924, 0, + 0, 1044, 0, + 0, 1166, 0, + 0, 1291, 0, + 0, 1417, 0, + 0, 1545, 0, + 0, 1674, 0, + 0, 1803, 0, + 0, 1934, 0, + 0, 2064, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 837, 134, 636, + 818, 175, 613, + 790, 224, 579, + 750, 282, 531, + 690, 350, 456, + 596, 428, 332, + 427, 514, 85, + 12, 609, 0, + 0, 711, 0, + 0, 819, 0, + 0, 932, 0, + 0, 1050, 0, + 0, 1171, 0, + 0, 1294, 0, + 0, 1420, 0, + 0, 1547, 0, + 0, 1675, 0, + 0, 1805, 0, + 0, 1935, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 991, 192, 763, + 977, 228, 746, + 957, 272, 721, + 930, 325, 686, + 891, 387, 634, + 832, 459, 554, + 740, 540, 419, + 577, 630, 136, + 186, 728, 0, + 0, 832, 0, + 0, 943, 0, + 0, 1058, 0, + 0, 1177, 0, + 0, 1299, 0, + 0, 1423, 0, + 0, 1550, 0, + 0, 1677, 0, + 0, 1806, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1138, 259, 892, + 1128, 290, 878, + 1114, 329, 860, + 1095, 376, 834, + 1068, 432, 798, + 1029, 497, 743, + 971, 572, 659, + 880, 657, 514, + 721, 749, 197, + 347, 850, 0, + 0, 956, 0, + 0, 1068, 0, + 0, 1185, 0, + 0, 1305, 0, + 0, 1428, 0, + 0, 1553, 0, + 0, 1680, 0, + 0, 1808, 0, + 0, 1937, 0, + 0, 2067, 0, + 0, 2198, 0, + 0, 2328, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1281, 336, 1021, + 1274, 362, 1011, + 1264, 395, 997, + 1250, 436, 978, + 1231, 486, 952, + 1204, 544, 914, + 1166, 613, 858, + 1109, 690, 770, + 1019, 777, 616, + 862, 872, 267, + 499, 974, 0, + 0, 1082, 0, + 0, 1196, 0, + 0, 1314, 0, + 0, 1435, 0, + 0, 1558, 0, + 0, 1684, 0, + 0, 1811, 0, + 0, 1939, 0, + 0, 2069, 0, + 0, 2199, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1421, 422, 1151, + 1416, 444, 1143, + 1408, 472, 1133, + 1398, 506, 1119, + 1385, 549, 1100, + 1366, 601, 1073, + 1339, 661, 1034, + 1301, 732, 976, + 1245, 811, 885, + 1156, 900, 725, + 1001, 997, 346, + 646, 1100, 0, + 0, 1210, 0, + 0, 1324, 0, + 0, 1443, 0, + 0, 1565, 0, + 0, 1689, 0, + 0, 1815, 0, + 0, 1942, 0, + 0, 2071, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1559, 516, 1281, + 1555, 534, 1276, + 1550, 557, 1268, + 1543, 586, 1258, + 1533, 622, 1244, + 1519, 666, 1224, + 1500, 719, 1197, + 1474, 782, 1157, + 1436, 854, 1098, + 1380, 935, 1004, + 1291, 1025, 838, + 1138, 1123, 434, + 789, 1228, 0, + 0, 1339, 0, + 0, 1454, 0, + 0, 1573, 0, + 0, 1695, 0, + 0, 1820, 0, + 0, 1946, 0, + 0, 2074, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1696, 617, 1412, + 1693, 632, 1408, + 1689, 651, 1402, + 1683, 674, 1395, + 1676, 704, 1384, + 1666, 741, 1370, + 1653, 787, 1350, + 1634, 841, 1322, + 1608, 905, 1282, + 1570, 978, 1222, + 1514, 1061, 1126, + 1426, 1152, 956, + 1274, 1251, 531, + 929, 1357, 0, + 0, 1468, 0, + 0, 1584, 0, + 0, 1703, 0, + 0, 1826, 0, + 0, 1951, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1831, 725, 1543, + 1829, 737, 1540, + 1826, 752, 1536, + 1822, 771, 1530, + 1817, 795, 1523, + 1809, 826, 1512, + 1800, 864, 1498, + 1786, 910, 1478, + 1767, 965, 1449, + 1741, 1030, 1409, + 1703, 1105, 1348, + 1648, 1188, 1251, + 1560, 1280, 1077, + 1409, 1380, 634, + 1067, 1486, 0, + 0, 1598, 0, + 0, 1714, 0, + 0, 1834, 0, + 0, 1957, 0, + 0, 2082, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1965, 838, 1675, + 1964, 847, 1672, + 1962, 859, 1669, + 1959, 874, 1665, + 1955, 894, 1659, + 1949, 918, 1652, + 1942, 950, 1641, + 1932, 988, 1626, + 1919, 1035, 1606, + 1900, 1092, 1578, + 1874, 1157, 1537, + 1837, 1232, 1475, + 1781, 1317, 1377, + 1694, 1409, 1201, + 1543, 1510, 744, + 1203, 1617, 0, + 0, 1729, 0, + 0, 1845, 0, + 0, 1966, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 2099, 956, 1806, + 2098, 963, 1805, + 2097, 972, 1802, + 2094, 983, 1799, + 2091, 999, 1795, + 2087, 1019, 1789, + 2082, 1044, 1781, + 2075, 1076, 1771, + 2065, 1115, 1756, + 2052, 1162, 1736, + 2033, 1219, 1707, + 2007, 1285, 1666, + 1969, 1361, 1604, + 1914, 1446, 1505, + 1827, 1539, 1326, + 1676, 1640, 858, + 1338, 1747, 0, + 0, 1860, 0, + 0, 1977, 0, + 0, 2097, 0, + 0, 2220, 0, + 0, 2345, 0, + 0, 2472, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2233, 1076, 1938, + 2232, 1082, 1937, + 2231, 1089, 1935, + 2229, 1098, 1933, + 2227, 1110, 1929, + 2224, 1125, 1925, + 2220, 1146, 1919, + 2215, 1171, 1912, + 2208, 1203, 1901, + 2198, 1243, 1886, + 2184, 1291, 1866, + 2166, 1348, 1837, + 2140, 1415, 1796, + 2102, 1491, 1733, + 2047, 1576, 1634, + 1960, 1670, 1454, + 1810, 1771, 976, + 1473, 1878, 0, + 0, 1991, 0, + 0, 2108, 0, + 0, 2229, 0, + 0, 2352, 0, + 0, 2477, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2366, 1200, 2070, + 2365, 1204, 2069, + 2364, 1209, 2068, + 2363, 1216, 2066, + 2361, 1226, 2063, + 2359, 1238, 2060, + 2356, 1253, 2056, + 2352, 1274, 2050, + 2347, 1299, 2042, + 2340, 1332, 2032, + 2330, 1371, 2017, + 2317, 1420, 1997, + 2298, 1477, 1968, + 2272, 1544, 1926, + 2235, 1621, 1863, + 2179, 1707, 1763, + 2092, 1801, 1582, + 1943, 1902, 1098, + 1607, 2010, 0, + 0, 2123, 0, + 0, 2240, 0, + 0, 2360, 0, + 0, 2484, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2499, 1325, 2202, + 2498, 1328, 2201, + 2498, 1332, 2200, + 2497, 1338, 2199, + 2495, 1345, 2197, + 2494, 1354, 2195, + 2492, 1367, 2191, + 2489, 1382, 2187, + 2485, 1403, 2181, + 2480, 1429, 2174, + 2472, 1461, 2163, + 2463, 1501, 2148, + 2449, 1550, 2128, + 2431, 1608, 2099, + 2404, 1675, 2057, + 2367, 1752, 1994, + 2312, 1838, 1894, + 2225, 1932, 1711, + 2075, 2033, 1222, + 1740, 2141, 0, + 0, 2254, 0, + 0, 2371, 0, + 0, 2492, 0, + 0, 2616, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2996, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2631, 1452, 2334, + 2631, 1455, 2333, + 2630, 1458, 2332, + 2630, 1462, 2331, + 2629, 1467, 2330, + 2628, 1474, 2328, + 2626, 1484, 2326, + 2624, 1496, 2323, + 2621, 1512, 2319, + 2617, 1533, 2313, + 2612, 1559, 2305, + 2605, 1591, 2294, + 2595, 1631, 2279, + 2581, 1680, 2259, + 2563, 1738, 2230, + 2537, 1806, 2188, + 2499, 1883, 2125, + 2444, 1969, 2024, + 2357, 2063, 1842, + 2208, 2165, 1348, + 1873, 2273, 0, + 0, 2386, 0, + 0, 2503, 0, + 0, 2624, 0, + 0, 2748, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2764, 1581, 2466, + 2764, 1582, 2465, + 2763, 1585, 2465, + 2763, 1588, 2464, + 2762, 1592, 2463, + 2761, 1597, 2462, + 2760, 1605, 2460, + 2758, 1614, 2458, + 2756, 1626, 2454, + 2753, 1642, 2450, + 2749, 1663, 2444, + 2744, 1689, 2436, + 2737, 1722, 2426, + 2727, 1762, 2411, + 2714, 1811, 2390, + 2695, 1869, 2361, + 2669, 1937, 2319, + 2632, 2014, 2256, + 2576, 2100, 2155, + 2490, 2195, 1972, + 2340, 2297, 1475, + 2006, 2405, 0, + 0, 2518, 0, + 0, 2635, 0, + 0, 2756, 0, + 0, 2880, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1710, 2598, + 2896, 1711, 2597, + 2896, 1713, 2597, + 2895, 1715, 2596, + 2895, 1718, 2596, + 2894, 1723, 2595, + 2893, 1728, 2593, + 2892, 1735, 2592, + 2891, 1745, 2589, + 2888, 1757, 2586, + 2885, 1773, 2582, + 2882, 1794, 2576, + 2876, 1820, 2568, + 2869, 1853, 2557, + 2859, 1893, 2542, + 2846, 1942, 2522, + 2827, 2001, 2493, + 2801, 2068, 2451, + 2764, 2146, 2388, + 2709, 2232, 2287, + 2622, 2326, 2103, + 2473, 2428, 1604, + 2139, 2536, 0, + 0, 2650, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3012, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3029, 1840, 2730, + 3028, 1841, 2729, + 3028, 1842, 2729, + 3028, 1844, 2729, + 3028, 1846, 2728, + 3027, 1849, 2727, + 3026, 1854, 2726, + 3026, 1859, 2725, + 3024, 1866, 2723, + 3023, 1876, 2721, + 3021, 1888, 2718, + 3018, 1904, 2714, + 3014, 1925, 2708, + 3008, 1951, 2700, + 3001, 1984, 2689, + 2992, 2025, 2674, + 2978, 2074, 2654, + 2960, 2132, 2625, + 2933, 2200, 2582, + 2896, 2277, 2519, + 2841, 2364, 2418, + 2754, 2458, 2234, + 2605, 2560, 1733, + 2271, 2668, 0, + 0, 2782, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3161, 1970, 2862, + 3161, 1971, 2862, + 3161, 1972, 2861, + 3160, 1973, 2861, + 3160, 1975, 2861, + 3160, 1978, 2860, + 3159, 1981, 2859, + 3159, 1985, 2858, + 3158, 1990, 2857, + 3156, 1998, 2855, + 3155, 2007, 2853, + 3153, 2020, 2850, + 3150, 2036, 2845, + 3146, 2056, 2840, + 3141, 2083, 2832, + 3133, 2115, 2821, + 3124, 2156, 2806, + 3110, 2205, 2785, + 3092, 2264, 2756, + 3066, 2332, 2714, + 3028, 2409, 2651, + 2973, 2495, 2550, + 2887, 2590, 2366, + 2737, 2692, 1864, + 2403, 2800, 0, + 0, 2914, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3293, 2101, 2994, + 3293, 2102, 2994, + 3293, 2103, 2993, + 3293, 2104, 2993, + 3293, 2105, 2993, + 3292, 2107, 2993, + 3292, 2109, 2992, + 3291, 2112, 2991, + 3291, 2116, 2990, + 3290, 2122, 2989, + 3289, 2129, 2987, + 3287, 2139, 2985, + 3285, 2151, 2982, + 3282, 2167, 2977, + 3278, 2188, 2972, + 3273, 2214, 2964, + 3266, 2247, 2953, + 3256, 2288, 2938, + 3242, 2337, 2917, + 3224, 2395, 2888, + 3198, 2463, 2846, + 3160, 2541, 2783, + 3105, 2627, 2682, + 3019, 2722, 2497, + 2869, 2824, 1994, + 2536, 2932, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3660, 0, + 3425, 2232, 3126, + 3425, 2233, 3126, + 3425, 2233, 3126, + 3425, 2234, 3125, + 3425, 2235, 3125, + 3425, 2236, 3125, + 3424, 2238, 3125, + 3424, 2241, 3124, + 3424, 2244, 3123, + 3423, 2248, 3122, + 3422, 2253, 3121, + 3421, 2261, 3119, + 3419, 2270, 3117, + 3417, 2283, 3114, + 3414, 2299, 3109, + 3410, 2320, 3103, + 3405, 2346, 3096, + 3398, 2379, 3085, + 3388, 2420, 3070, + 3375, 2469, 3049, + 3356, 2527, 3020, + 3330, 2595, 2978, + 3293, 2673, 2915, + 3237, 2759, 2814, + 3151, 2854, 2629, + 3002, 2956, 2125, + 2668, 3064, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2364, 3258, + 3557, 2364, 3258, + 3557, 2365, 3258, + 3557, 2365, 3258, + 3557, 2366, 3257, + 3557, 2367, 3257, + 3557, 2368, 3257, + 3557, 2370, 3257, + 3556, 2372, 3256, + 3556, 2375, 3255, + 3555, 2380, 3254, + 3554, 2385, 3253, + 3553, 2392, 3251, + 3551, 2402, 3249, + 3549, 2414, 3246, + 3546, 2431, 3241, + 3542, 2451, 3235, + 3537, 2478, 3228, + 3530, 2511, 3217, + 3520, 2551, 3202, + 3507, 2601, 3181, + 3488, 2659, 3152, + 3462, 2727, 3110, + 3425, 2805, 3047, + 3369, 2891, 2945, + 3283, 2986, 2761, + 3134, 3088, 2256, + 2800, 3196, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3690, 2495, 3390, + 3690, 2496, 3390, + 3690, 2496, 3390, + 3689, 2496, 3390, + 3689, 2497, 3390, + 3689, 2498, 3389, + 3689, 2499, 3389, + 3689, 2500, 3389, + 3689, 2502, 3389, + 3688, 2504, 3388, + 3688, 2507, 3387, + 3687, 2511, 3386, + 3686, 2517, 3385, + 3685, 2524, 3383, + 3683, 2534, 3381, + 3681, 2546, 3378, + 3678, 2562, 3373, + 3674, 2583, 3368, + 3669, 2610, 3360, + 3662, 2643, 3349, + 3652, 2683, 3334, + 3639, 2733, 3313, + 3620, 2791, 3284, + 3594, 2859, 3242, + 3557, 2937, 3179, + 3502, 3023, 3077, + 3415, 3118, 2893, + 3266, 3220, 2388, + 2932, 3328, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3822, 2627, 3522, + 3822, 2627, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3821, 2629, 3522, + 3821, 2630, 3522, + 3821, 2631, 3521, + 3821, 2632, 3521, + 3821, 2634, 3521, + 3820, 2636, 3520, + 3820, 2639, 3519, + 3819, 2643, 3518, + 3818, 2649, 3517, + 3817, 2656, 3515, + 3815, 2666, 3513, + 3813, 2678, 3510, + 3810, 2694, 3505, + 3807, 2715, 3500, + 3801, 2742, 3492, + 3794, 2775, 3481, + 3784, 2815, 3466, + 3771, 2865, 3445, + 3752, 2923, 3416, + 3726, 2991, 3374, + 3689, 3069, 3311, + 3634, 3155, 3209, + 3547, 3250, 3025, + 3398, 3352, 2520, + 3065, 3460, 0, + 0, 3574, 0, + 0, 3691, 0, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3953, 2762, 3654, + 3953, 2763, 3653, + 3953, 2764, 3653, + 3953, 2766, 3653, + 3952, 2768, 3652, + 3952, 2771, 3651, + 3951, 2775, 3650, + 3950, 2781, 3649, + 3949, 2788, 3647, + 3948, 2798, 3645, + 3945, 2810, 3642, + 3943, 2826, 3637, + 3939, 2847, 3632, + 3933, 2873, 3624, + 3926, 2907, 3613, + 3916, 2947, 3598, + 3903, 2997, 3577, + 3884, 3055, 3548, + 3858, 3123, 3506, + 3821, 3201, 3443, + 3766, 3287, 3341, + 3679, 3382, 3157, + 3530, 3484, 2651, + 3197, 3592, 0, + 0, 3706, 0, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4085, 2895, 3785, + 4085, 2896, 3785, + 4085, 2898, 3785, + 4085, 2900, 3784, + 4084, 2903, 3783, + 4083, 2907, 3782, + 4083, 2913, 3781, + 4081, 2920, 3779, + 4080, 2930, 3777, + 4078, 2942, 3774, + 4075, 2958, 3770, + 4071, 2979, 3764, + 4065, 3005, 3756, + 4058, 3039, 3745, + 4049, 3079, 3730, + 4035, 3129, 3709, + 4017, 3187, 3680, + 3991, 3255, 3638, + 3953, 3333, 3575, + 3898, 3419, 3473, + 3811, 3514, 3289, + 3662, 3616, 2783, + 3329, 3725, 0, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3032, 3916, + 4095, 3035, 3916, + 4095, 3039, 3915, + 4095, 3045, 3913, + 4095, 3052, 3911, + 4095, 3062, 3909, + 4095, 3074, 3906, + 4095, 3090, 3902, + 4095, 3111, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3211, 3862, + 4095, 3261, 3842, + 4095, 3319, 3812, + 4095, 3387, 3770, + 4085, 3465, 3707, + 4030, 3551, 3606, + 3944, 3646, 3421, + 3794, 3748, 2915, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3167, 4048, + 4095, 3171, 4047, + 4095, 3177, 4045, + 4095, 3184, 4044, + 4095, 3194, 4041, + 4095, 3206, 4038, + 4095, 3222, 4034, + 4095, 3243, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3343, 3994, + 4095, 3393, 3974, + 4095, 3451, 3944, + 4095, 3519, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 33, 135, + 0, 83, 61, + 0, 142, 0, + 0, 211, 0, + 0, 290, 0, + 0, 377, 0, + 0, 473, 0, + 0, 576, 0, + 0, 684, 0, + 0, 798, 0, + 0, 916, 0, + 0, 1037, 0, + 0, 1161, 0, + 0, 1287, 0, + 0, 1414, 0, + 0, 1543, 0, + 0, 1672, 0, + 0, 1802, 0, + 0, 1933, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 11, 50, 228, + 0, 99, 168, + 0, 156, 74, + 0, 223, 0, + 0, 300, 0, + 0, 386, 0, + 0, 480, 0, + 0, 581, 0, + 0, 689, 0, + 0, 802, 0, + 0, 919, 0, + 0, 1039, 0, + 0, 1163, 0, + 0, 1288, 0, + 0, 1415, 0, + 0, 1543, 0, + 0, 1673, 0, + 0, 1803, 0, + 0, 1933, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 271, 73, 329, + 199, 119, 281, + 79, 174, 209, + 0, 239, 91, + 0, 313, 0, + 0, 397, 0, + 0, 489, 0, + 0, 588, 0, + 0, 694, 0, + 0, 806, 0, + 0, 922, 0, + 0, 1042, 0, + 0, 1165, 0, + 0, 1290, 0, + 0, 1416, 0, + 0, 1544, 0, + 0, 1673, 0, + 0, 1803, 0, + 0, 1934, 0, + 0, 2064, 0, + 0, 2195, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 480, 102, 436, + 435, 145, 399, + 368, 197, 344, + 259, 259, 259, + 54, 330, 113, + 0, 411, 0, + 0, 500, 0, + 0, 597, 0, + 0, 702, 0, + 0, 812, 0, + 0, 927, 0, + 0, 1045, 0, + 0, 1167, 0, + 0, 1292, 0, + 0, 1418, 0, + 0, 1546, 0, + 0, 1674, 0, + 0, 1804, 0, + 0, 1934, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2458, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 662, 137, 548, + 632, 177, 519, + 590, 226, 478, + 526, 284, 416, + 424, 352, 318, + 237, 429, 140, + 0, 515, 0, + 0, 610, 0, + 0, 711, 0, + 0, 819, 0, + 0, 933, 0, + 0, 1050, 0, + 0, 1171, 0, + 0, 1294, 0, + 0, 1420, 0, + 0, 1547, 0, + 0, 1675, 0, + 0, 1805, 0, + 0, 1935, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 828, 181, 665, + 808, 217, 643, + 779, 262, 612, + 738, 316, 566, + 677, 380, 498, + 579, 453, 386, + 403, 535, 175, + 0, 626, 0, + 0, 724, 0, + 0, 830, 0, + 0, 941, 0, + 0, 1056, 0, + 0, 1176, 0, + 0, 1298, 0, + 0, 1423, 0, + 0, 1549, 0, + 0, 1677, 0, + 0, 1806, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 984, 233, 785, + 970, 266, 768, + 950, 307, 745, + 922, 356, 712, + 882, 414, 663, + 822, 482, 588, + 728, 560, 464, + 559, 646, 217, + 144, 741, 0, + 0, 843, 0, + 0, 951, 0, + 0, 1064, 0, + 0, 1182, 0, + 0, 1303, 0, + 0, 1426, 0, + 0, 1552, 0, + 0, 1679, 0, + 0, 1807, 0, + 0, 1937, 0, + 0, 2067, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1133, 295, 908, + 1123, 324, 895, + 1109, 360, 878, + 1089, 404, 853, + 1062, 457, 818, + 1023, 519, 766, + 964, 591, 686, + 872, 672, 551, + 709, 762, 268, + 318, 860, 0, + 0, 964, 0, + 0, 1075, 0, + 0, 1190, 0, + 0, 1309, 0, + 0, 1431, 0, + 0, 1555, 0, + 0, 1682, 0, + 0, 1809, 0, + 0, 1938, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1277, 366, 1033, + 1270, 391, 1024, + 1260, 422, 1010, + 1246, 461, 992, + 1227, 508, 967, + 1200, 564, 930, + 1161, 629, 876, + 1103, 705, 791, + 1013, 789, 646, + 853, 882, 329, + 479, 982, 0, + 0, 1088, 0, + 0, 1201, 0, + 0, 1317, 0, + 0, 1437, 0, + 0, 1560, 0, + 0, 1685, 0, + 0, 1812, 0, + 0, 1940, 0, + 0, 2069, 0, + 0, 2199, 0, + 0, 2330, 0, + 0, 2460, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1418, 447, 1160, + 1413, 468, 1153, + 1406, 494, 1143, + 1396, 528, 1129, + 1382, 568, 1111, + 1363, 618, 1084, + 1336, 677, 1046, + 1298, 745, 990, + 1241, 822, 902, + 1151, 909, 748, + 994, 1004, 399, + 631, 1106, 0, + 0, 1214, 0, + 0, 1328, 0, + 0, 1446, 0, + 0, 1567, 0, + 0, 1690, 0, + 0, 1816, 0, + 0, 1943, 0, + 0, 2072, 0, + 0, 2201, 0, + 0, 2331, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1557, 537, 1288, + 1553, 554, 1283, + 1548, 576, 1275, + 1540, 604, 1265, + 1531, 639, 1251, + 1517, 681, 1232, + 1498, 733, 1205, + 1471, 793, 1166, + 1433, 864, 1108, + 1377, 944, 1017, + 1288, 1032, 857, + 1133, 1129, 478, + 778, 1232, 0, + 0, 1342, 0, + 0, 1456, 0, + 0, 1575, 0, + 0, 1697, 0, + 0, 1821, 0, + 0, 1947, 0, + 0, 2074, 0, + 0, 2203, 0, + 0, 2332, 0, + 0, 2463, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1694, 634, 1417, + 1691, 648, 1413, + 1687, 666, 1408, + 1682, 689, 1400, + 1675, 718, 1390, + 1665, 754, 1376, + 1651, 798, 1356, + 1632, 851, 1329, + 1606, 914, 1289, + 1568, 986, 1230, + 1512, 1067, 1136, + 1424, 1157, 970, + 1270, 1255, 567, + 921, 1360, 0, + 0, 1471, 0, + 0, 1586, 0, + 0, 1705, 0, + 0, 1827, 0, + 0, 1952, 0, + 0, 2078, 0, + 0, 2206, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1830, 738, 1547, + 1828, 750, 1544, + 1825, 764, 1540, + 1821, 783, 1534, + 1815, 806, 1527, + 1808, 836, 1516, + 1798, 873, 1502, + 1785, 919, 1482, + 1766, 973, 1454, + 1740, 1037, 1414, + 1702, 1110, 1354, + 1646, 1193, 1258, + 1558, 1284, 1088, + 1406, 1383, 663, + 1061, 1489, 0, + 0, 1600, 0, + 0, 1716, 0, + 0, 1836, 0, + 0, 1958, 0, + 0, 2083, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1965, 849, 1678, + 1963, 857, 1675, + 1961, 869, 1672, + 1958, 884, 1668, + 1954, 903, 1662, + 1949, 927, 1655, + 1941, 958, 1644, + 1932, 996, 1630, + 1918, 1042, 1610, + 1899, 1097, 1582, + 1873, 1162, 1541, + 1835, 1237, 1480, + 1780, 1320, 1383, + 1692, 1412, 1209, + 1541, 1512, 766, + 1199, 1618, 0, + 0, 1730, 0, + 0, 1847, 0, + 0, 1966, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 2099, 964, 1809, + 2098, 970, 1807, + 2096, 979, 1804, + 2094, 991, 1801, + 2091, 1006, 1797, + 2087, 1026, 1791, + 2082, 1051, 1784, + 2074, 1082, 1773, + 2065, 1120, 1759, + 2051, 1167, 1738, + 2032, 1224, 1710, + 2006, 1289, 1669, + 1969, 1364, 1607, + 1913, 1449, 1509, + 1826, 1542, 1333, + 1675, 1642, 876, + 1335, 1749, 0, + 0, 1861, 0, + 0, 1978, 0, + 0, 2098, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2232, 1083, 1940, + 2231, 1088, 1938, + 2230, 1095, 1937, + 2229, 1104, 1934, + 2226, 1116, 1931, + 2224, 1131, 1927, + 2220, 1151, 1921, + 2214, 1176, 1913, + 2207, 1208, 1903, + 2197, 1247, 1888, + 2184, 1294, 1868, + 2165, 1351, 1839, + 2139, 1417, 1798, + 2101, 1493, 1736, + 2046, 1578, 1637, + 1959, 1671, 1459, + 1809, 1772, 990, + 1470, 1879, 0, + 0, 1992, 0, + 0, 2109, 0, + 0, 2229, 0, + 0, 2352, 0, + 0, 2478, 0, + 0, 2604, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2366, 1204, 2071, + 2365, 1208, 2070, + 2364, 1214, 2069, + 2363, 1221, 2067, + 2361, 1230, 2065, + 2359, 1242, 2062, + 2356, 1258, 2057, + 2352, 1278, 2052, + 2347, 1303, 2044, + 2340, 1335, 2033, + 2330, 1375, 2018, + 2316, 1423, 1998, + 2298, 1480, 1969, + 2272, 1547, 1928, + 2234, 1623, 1865, + 2179, 1708, 1766, + 2092, 1802, 1586, + 1942, 1903, 1108, + 1605, 2010, 0, + 0, 2123, 0, + 0, 2240, 0, + 0, 2361, 0, + 0, 2484, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2498, 1329, 2203, + 2498, 1332, 2202, + 2497, 1336, 2201, + 2496, 1341, 2200, + 2495, 1348, 2198, + 2494, 1358, 2196, + 2491, 1370, 2192, + 2488, 1385, 2188, + 2485, 1406, 2182, + 2479, 1431, 2175, + 2472, 1464, 2164, + 2462, 1504, 2149, + 2449, 1552, 2129, + 2430, 1609, 2100, + 2404, 1677, 2058, + 2367, 1753, 1995, + 2311, 1839, 1896, + 2225, 1933, 1714, + 2075, 2034, 1230, + 1739, 2142, 0, + 0, 2255, 0, + 0, 2372, 0, + 0, 2492, 0, + 0, 2616, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2631, 1455, 2334, + 2631, 1457, 2334, + 2630, 1460, 2333, + 2630, 1464, 2332, + 2629, 1470, 2331, + 2628, 1477, 2329, + 2626, 1486, 2327, + 2624, 1499, 2324, + 2621, 1514, 2319, + 2617, 1535, 2313, + 2612, 1561, 2306, + 2604, 1593, 2295, + 2595, 1633, 2280, + 2581, 1682, 2260, + 2563, 1740, 2231, + 2537, 1807, 2189, + 2499, 1884, 2126, + 2444, 1970, 2026, + 2357, 2064, 1844, + 2207, 2165, 1354, + 1872, 2273, 0, + 0, 2386, 0, + 0, 2504, 0, + 0, 2624, 0, + 0, 2748, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2764, 1583, 2466, + 2763, 1584, 2466, + 2763, 1587, 2465, + 2763, 1590, 2464, + 2762, 1594, 2464, + 2761, 1599, 2462, + 2760, 1607, 2460, + 2758, 1616, 2458, + 2756, 1628, 2455, + 2753, 1644, 2451, + 2749, 1665, 2445, + 2744, 1691, 2437, + 2737, 1723, 2426, + 2727, 1764, 2411, + 2714, 1812, 2391, + 2695, 1870, 2362, + 2669, 1938, 2320, + 2631, 2015, 2257, + 2576, 2101, 2156, + 2490, 2195, 1974, + 2340, 2297, 1480, + 2005, 2405, 0, + 0, 2518, 0, + 0, 2635, 0, + 0, 2756, 0, + 0, 2880, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1711, 2598, + 2896, 1713, 2598, + 2896, 1714, 2597, + 2895, 1717, 2597, + 2895, 1720, 2596, + 2894, 1724, 2595, + 2893, 1730, 2594, + 2892, 1737, 2592, + 2890, 1746, 2590, + 2888, 1759, 2586, + 2885, 1775, 2582, + 2881, 1795, 2576, + 2876, 1821, 2568, + 2869, 1854, 2558, + 2859, 1894, 2543, + 2846, 1943, 2522, + 2827, 2001, 2493, + 2801, 2069, 2451, + 2764, 2146, 2388, + 2708, 2232, 2288, + 2622, 2327, 2104, + 2472, 2429, 1608, + 2138, 2537, 0, + 0, 2650, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3012, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3029, 1841, 2730, + 3028, 1842, 2730, + 3028, 1843, 2729, + 3028, 1845, 2729, + 3028, 1847, 2728, + 3027, 1851, 2728, + 3026, 1855, 2727, + 3025, 1860, 2725, + 3024, 1867, 2724, + 3023, 1877, 2721, + 3020, 1889, 2718, + 3018, 1905, 2714, + 3014, 1926, 2708, + 3008, 1952, 2700, + 3001, 1985, 2689, + 2991, 2025, 2675, + 2978, 2074, 2654, + 2959, 2133, 2625, + 2933, 2200, 2583, + 2896, 2278, 2520, + 2841, 2364, 2419, + 2754, 2459, 2235, + 2605, 2560, 1736, + 2271, 2668, 0, + 0, 2782, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3161, 1971, 2862, + 3161, 1972, 2862, + 3161, 1973, 2862, + 3160, 1974, 2861, + 3160, 1976, 2861, + 3160, 1978, 2860, + 3159, 1981, 2860, + 3159, 1986, 2859, + 3158, 1991, 2857, + 3156, 1998, 2856, + 3155, 2008, 2853, + 3153, 2020, 2850, + 3150, 2036, 2846, + 3146, 2057, 2840, + 3141, 2083, 2832, + 3133, 2116, 2821, + 3124, 2157, 2806, + 3110, 2206, 2786, + 3092, 2264, 2757, + 3066, 2332, 2715, + 3028, 2409, 2651, + 2973, 2496, 2550, + 2886, 2590, 2366, + 2737, 2692, 1866, + 2403, 2800, 0, + 0, 2914, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3293, 2102, 2994, + 3293, 2102, 2994, + 3293, 2103, 2994, + 3293, 2104, 2993, + 3292, 2105, 2993, + 3292, 2107, 2993, + 3292, 2110, 2992, + 3291, 2113, 2991, + 3291, 2117, 2990, + 3290, 2122, 2989, + 3289, 2130, 2987, + 3287, 2139, 2985, + 3285, 2152, 2982, + 3282, 2168, 2978, + 3278, 2188, 2972, + 3273, 2215, 2964, + 3266, 2248, 2953, + 3256, 2288, 2938, + 3242, 2337, 2918, + 3224, 2396, 2888, + 3198, 2464, 2846, + 3160, 2541, 2783, + 3105, 2628, 2682, + 3019, 2722, 2498, + 2869, 2824, 1996, + 2536, 2932, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3660, 0, + 3425, 2233, 3126, + 3425, 2233, 3126, + 3425, 2234, 3126, + 3425, 2235, 3126, + 3425, 2236, 3125, + 3425, 2237, 3125, + 3424, 2239, 3125, + 3424, 2241, 3124, + 3423, 2244, 3123, + 3423, 2248, 3122, + 3422, 2254, 3121, + 3421, 2261, 3119, + 3419, 2271, 3117, + 3417, 2283, 3114, + 3414, 2299, 3109, + 3410, 2320, 3104, + 3405, 2346, 3096, + 3398, 2379, 3085, + 3388, 2420, 3070, + 3375, 2469, 3049, + 3356, 2527, 3020, + 3330, 2595, 2978, + 3293, 2673, 2915, + 3237, 2759, 2814, + 3151, 2854, 2629, + 3002, 2956, 2126, + 2668, 3064, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2364, 3258, + 3557, 2365, 3258, + 3557, 2365, 3258, + 3557, 2365, 3258, + 3557, 2366, 3258, + 3557, 2367, 3257, + 3557, 2369, 3257, + 3556, 2370, 3257, + 3556, 2373, 3256, + 3556, 2376, 3255, + 3555, 2380, 3254, + 3554, 2386, 3253, + 3553, 2393, 3251, + 3551, 2402, 3249, + 3549, 2415, 3246, + 3546, 2431, 3241, + 3542, 2452, 3236, + 3537, 2478, 3228, + 3530, 2511, 3217, + 3520, 2552, 3202, + 3507, 2601, 3181, + 3488, 2659, 3152, + 3462, 2727, 3110, + 3425, 2805, 3047, + 3369, 2891, 2946, + 3283, 2986, 2761, + 3134, 3088, 2257, + 2800, 3196, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3690, 2496, 3390, + 3690, 2496, 3390, + 3690, 2496, 3390, + 3689, 2497, 3390, + 3689, 2497, 3390, + 3689, 2498, 3390, + 3689, 2499, 3389, + 3689, 2500, 3389, + 3689, 2502, 3389, + 3688, 2504, 3388, + 3688, 2508, 3387, + 3687, 2512, 3386, + 3686, 2517, 3385, + 3685, 2525, 3383, + 3683, 2534, 3381, + 3681, 2547, 3378, + 3678, 2563, 3373, + 3674, 2583, 3368, + 3669, 2610, 3360, + 3662, 2643, 3349, + 3652, 2683, 3334, + 3639, 2733, 3313, + 3620, 2791, 3284, + 3594, 2859, 3242, + 3557, 2937, 3179, + 3501, 3023, 3078, + 3415, 3118, 2893, + 3266, 3220, 2389, + 2932, 3328, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3822, 2627, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3821, 2629, 3522, + 3821, 2630, 3522, + 3821, 2631, 3521, + 3821, 2632, 3521, + 3821, 2634, 3521, + 3820, 2636, 3520, + 3820, 2639, 3519, + 3819, 2644, 3518, + 3818, 2649, 3517, + 3817, 2656, 3515, + 3815, 2666, 3513, + 3813, 2678, 3510, + 3810, 2695, 3505, + 3806, 2715, 3500, + 3801, 2742, 3492, + 3794, 2775, 3481, + 3784, 2815, 3466, + 3771, 2865, 3445, + 3752, 2923, 3416, + 3726, 2991, 3374, + 3689, 3069, 3311, + 3634, 3155, 3210, + 3547, 3250, 3025, + 3398, 3352, 2520, + 3065, 3460, 0, + 0, 3574, 0, + 0, 3691, 0, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3953, 2762, 3654, + 3953, 2763, 3653, + 3953, 2764, 3653, + 3953, 2766, 3653, + 3952, 2768, 3652, + 3952, 2771, 3651, + 3951, 2775, 3650, + 3950, 2781, 3649, + 3949, 2788, 3647, + 3948, 2798, 3645, + 3945, 2810, 3642, + 3943, 2826, 3637, + 3939, 2847, 3632, + 3933, 2874, 3624, + 3926, 2907, 3613, + 3916, 2947, 3598, + 3903, 2997, 3577, + 3884, 3055, 3548, + 3858, 3123, 3506, + 3821, 3201, 3443, + 3766, 3287, 3342, + 3679, 3382, 3157, + 3530, 3484, 2652, + 3197, 3593, 0, + 0, 3706, 0, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4085, 2895, 3785, + 4085, 2896, 3785, + 4085, 2898, 3785, + 4085, 2900, 3784, + 4084, 2903, 3783, + 4083, 2907, 3782, + 4082, 2913, 3781, + 4081, 2920, 3779, + 4080, 2930, 3777, + 4078, 2942, 3774, + 4075, 2958, 3770, + 4071, 2979, 3764, + 4065, 3006, 3756, + 4058, 3039, 3745, + 4048, 3079, 3730, + 4035, 3129, 3710, + 4017, 3187, 3680, + 3990, 3255, 3638, + 3953, 3333, 3575, + 3898, 3419, 3474, + 3811, 3514, 3289, + 3662, 3616, 2783, + 3329, 3725, 0, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3032, 3916, + 4095, 3035, 3916, + 4095, 3039, 3915, + 4095, 3045, 3913, + 4095, 3052, 3911, + 4095, 3062, 3909, + 4095, 3074, 3906, + 4095, 3090, 3902, + 4095, 3111, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3211, 3862, + 4095, 3261, 3842, + 4095, 3319, 3812, + 4095, 3387, 3770, + 4085, 3465, 3707, + 4030, 3552, 3606, + 3944, 3646, 3421, + 3794, 3748, 2915, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3167, 4048, + 4095, 3171, 4047, + 4095, 3177, 4045, + 4095, 3184, 4044, + 4095, 3194, 4041, + 4095, 3206, 4038, + 4095, 3222, 4034, + 4095, 3243, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3343, 3994, + 4095, 3393, 3974, + 4095, 3451, 3944, + 4095, 3519, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 108, 241, + 0, 151, 183, + 0, 203, 91, + 0, 264, 0, + 0, 334, 0, + 0, 414, 0, + 0, 503, 0, + 0, 600, 0, + 0, 704, 0, + 0, 813, 0, + 0, 928, 0, + 0, 1046, 0, + 0, 1168, 0, + 0, 1292, 0, + 0, 1418, 0, + 0, 1546, 0, + 0, 1674, 0, + 0, 1804, 0, + 0, 1934, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 123, 316, + 0, 165, 267, + 0, 215, 193, + 0, 274, 69, + 0, 343, 0, + 0, 422, 0, + 0, 509, 0, + 0, 605, 0, + 0, 708, 0, + 0, 816, 0, + 0, 930, 0, + 0, 1048, 0, + 0, 1170, 0, + 0, 1293, 0, + 0, 1419, 0, + 0, 1546, 0, + 0, 1675, 0, + 0, 1804, 0, + 0, 1934, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 225, 143, 400, + 144, 182, 360, + 6, 231, 300, + 0, 288, 206, + 0, 355, 37, + 0, 432, 0, + 0, 518, 0, + 0, 612, 0, + 0, 713, 0, + 0, 821, 0, + 0, 934, 0, + 0, 1051, 0, + 0, 1171, 0, + 0, 1295, 0, + 0, 1420, 0, + 0, 1547, 0, + 0, 1676, 0, + 0, 1805, 0, + 0, 1935, 0, + 0, 2065, 0, + 0, 2196, 0, + 0, 2327, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 451, 167, 493, + 403, 205, 461, + 331, 251, 413, + 211, 306, 341, + 0, 371, 223, + 0, 445, 0, + 0, 529, 0, + 0, 621, 0, + 0, 720, 0, + 0, 826, 0, + 0, 938, 0, + 0, 1054, 0, + 0, 1174, 0, + 0, 1297, 0, + 0, 1422, 0, + 0, 1548, 0, + 0, 1676, 0, + 0, 1805, 0, + 0, 1935, 0, + 0, 2066, 0, + 0, 2196, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2590, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 643, 198, 593, + 612, 234, 568, + 567, 277, 531, + 500, 329, 476, + 391, 391, 391, + 186, 462, 245, + 0, 543, 0, + 0, 632, 0, + 0, 730, 0, + 0, 834, 0, + 0, 944, 0, + 0, 1059, 0, + 0, 1178, 0, + 0, 1299, 0, + 0, 1424, 0, + 0, 1550, 0, + 0, 1678, 0, + 0, 1806, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 815, 237, 700, + 794, 269, 680, + 765, 310, 651, + 722, 358, 610, + 658, 417, 548, + 556, 484, 450, + 369, 561, 272, + 0, 647, 0, + 0, 742, 0, + 0, 844, 0, + 0, 952, 0, + 0, 1065, 0, + 0, 1182, 0, + 0, 1303, 0, + 0, 1426, 0, + 0, 1552, 0, + 0, 1679, 0, + 0, 1808, 0, + 0, 1937, 0, + 0, 2067, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 974, 283, 813, + 960, 313, 797, + 940, 350, 775, + 911, 395, 744, + 870, 448, 699, + 809, 512, 630, + 711, 585, 518, + 535, 667, 307, + 81, 758, 0, + 0, 856, 0, + 0, 962, 0, + 0, 1073, 0, + 0, 1188, 0, + 0, 1308, 0, + 0, 1430, 0, + 0, 1555, 0, + 0, 1681, 0, + 0, 1809, 0, + 0, 1938, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1126, 339, 929, + 1116, 365, 917, + 1102, 398, 900, + 1082, 439, 877, + 1054, 488, 844, + 1014, 546, 795, + 954, 614, 720, + 860, 692, 596, + 691, 778, 349, + 276, 873, 0, + 0, 975, 0, + 0, 1083, 0, + 0, 1196, 0, + 0, 1314, 0, + 0, 1435, 0, + 0, 1558, 0, + 0, 1684, 0, + 0, 1811, 0, + 0, 1939, 0, + 0, 2069, 0, + 0, 2199, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1272, 404, 1049, + 1265, 427, 1040, + 1255, 456, 1027, + 1241, 492, 1010, + 1221, 536, 985, + 1194, 589, 950, + 1155, 651, 898, + 1096, 723, 818, + 1004, 804, 683, + 841, 894, 400, + 450, 992, 0, + 0, 1096, 0, + 0, 1207, 0, + 0, 1322, 0, + 0, 1441, 0, + 0, 1563, 0, + 0, 1688, 0, + 0, 1814, 0, + 0, 1942, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1415, 479, 1172, + 1409, 499, 1165, + 1402, 523, 1156, + 1392, 554, 1143, + 1378, 593, 1124, + 1359, 640, 1099, + 1332, 696, 1062, + 1293, 762, 1008, + 1235, 837, 923, + 1145, 921, 778, + 985, 1014, 461, + 611, 1114, 0, + 0, 1221, 0, + 0, 1333, 0, + 0, 1449, 0, + 0, 1569, 0, + 0, 1692, 0, + 0, 1817, 0, + 0, 1944, 0, + 0, 2072, 0, + 0, 2202, 0, + 0, 2331, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1555, 563, 1298, + 1551, 579, 1292, + 1545, 600, 1285, + 1538, 627, 1275, + 1528, 660, 1262, + 1514, 701, 1243, + 1495, 750, 1216, + 1468, 809, 1178, + 1430, 877, 1122, + 1373, 955, 1034, + 1283, 1041, 880, + 1127, 1136, 531, + 763, 1238, 0, + 0, 1347, 0, + 0, 1460, 0, + 0, 1578, 0, + 0, 1699, 0, + 0, 1822, 0, + 0, 1948, 0, + 0, 2075, 0, + 0, 2204, 0, + 0, 2333, 0, + 0, 2463, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1692, 656, 1424, + 1689, 669, 1420, + 1685, 686, 1415, + 1680, 708, 1408, + 1673, 736, 1397, + 1663, 771, 1384, + 1649, 813, 1364, + 1630, 865, 1337, + 1604, 926, 1298, + 1565, 996, 1240, + 1509, 1076, 1149, + 1420, 1164, 989, + 1265, 1261, 610, + 910, 1365, 0, + 0, 1474, 0, + 0, 1589, 0, + 0, 1707, 0, + 0, 1829, 0, + 0, 1953, 0, + 0, 2079, 0, + 0, 2206, 0, + 0, 2335, 0, + 0, 2464, 0, + 0, 2595, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1828, 756, 1553, + 1826, 766, 1550, + 1823, 780, 1545, + 1819, 798, 1540, + 1814, 821, 1532, + 1807, 850, 1522, + 1797, 886, 1508, + 1783, 930, 1488, + 1764, 983, 1461, + 1738, 1046, 1421, + 1700, 1118, 1362, + 1644, 1199, 1268, + 1556, 1289, 1103, + 1402, 1387, 699, + 1053, 1492, 0, + 0, 1603, 0, + 0, 1718, 0, + 0, 1837, 0, + 0, 1959, 0, + 0, 2084, 0, + 0, 2210, 0, + 0, 2338, 0, + 0, 2467, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1964, 862, 1682, + 1962, 871, 1679, + 1960, 882, 1676, + 1957, 896, 1672, + 1953, 915, 1667, + 1948, 938, 1659, + 1940, 968, 1649, + 1930, 1006, 1634, + 1917, 1051, 1614, + 1898, 1105, 1586, + 1872, 1169, 1546, + 1834, 1243, 1486, + 1778, 1325, 1391, + 1690, 1416, 1220, + 1538, 1515, 795, + 1193, 1621, 0, + 0, 1732, 0, + 0, 1848, 0, + 0, 1968, 0, + 0, 2090, 0, + 0, 2215, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 2098, 974, 1812, + 2097, 981, 1810, + 2095, 989, 1808, + 2093, 1001, 1804, + 2090, 1016, 1800, + 2086, 1035, 1795, + 2081, 1059, 1787, + 2074, 1090, 1776, + 2064, 1128, 1762, + 2050, 1174, 1742, + 2032, 1230, 1714, + 2005, 1294, 1673, + 1968, 1369, 1612, + 1912, 1452, 1515, + 1824, 1545, 1341, + 1673, 1644, 898, + 1331, 1751, 0, + 0, 1862, 0, + 0, 1979, 0, + 0, 2099, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2232, 1091, 1942, + 2231, 1096, 1941, + 2230, 1103, 1939, + 2228, 1111, 1937, + 2226, 1123, 1933, + 2223, 1138, 1929, + 2219, 1158, 1924, + 2214, 1183, 1916, + 2206, 1214, 1905, + 2197, 1253, 1891, + 2183, 1300, 1870, + 2165, 1356, 1842, + 2138, 1421, 1801, + 2101, 1497, 1739, + 2045, 1581, 1641, + 1958, 1674, 1465, + 1807, 1774, 1008, + 1467, 1881, 0, + 0, 1993, 0, + 0, 2110, 0, + 0, 2230, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2365, 1211, 2073, + 2364, 1215, 2072, + 2364, 1220, 2071, + 2362, 1227, 2069, + 2361, 1236, 2066, + 2359, 1248, 2063, + 2356, 1263, 2059, + 2352, 1283, 2053, + 2346, 1308, 2046, + 2339, 1340, 2035, + 2329, 1379, 2020, + 2316, 1427, 2000, + 2297, 1483, 1971, + 2271, 1550, 1930, + 2234, 1625, 1868, + 2178, 1710, 1769, + 2091, 1804, 1591, + 1941, 1904, 1122, + 1603, 2011, 0, + 0, 2124, 0, + 0, 2241, 0, + 0, 2361, 0, + 0, 2484, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2498, 1334, 2204, + 2498, 1337, 2203, + 2497, 1341, 2202, + 2496, 1346, 2201, + 2495, 1353, 2199, + 2493, 1362, 2197, + 2491, 1374, 2194, + 2488, 1390, 2189, + 2484, 1410, 2184, + 2479, 1435, 2176, + 2472, 1467, 2165, + 2462, 1507, 2150, + 2449, 1555, 2130, + 2430, 1612, 2101, + 2404, 1679, 2060, + 2366, 1755, 1997, + 2311, 1840, 1898, + 2224, 1934, 1718, + 2074, 2035, 1241, + 1737, 2142, 0, + 0, 2255, 0, + 0, 2372, 0, + 0, 2493, 0, + 0, 2616, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2631, 1459, 2335, + 2631, 1461, 2335, + 2630, 1464, 2334, + 2629, 1468, 2333, + 2628, 1473, 2332, + 2627, 1480, 2330, + 2626, 1490, 2328, + 2624, 1502, 2324, + 2621, 1518, 2320, + 2617, 1538, 2314, + 2611, 1564, 2307, + 2604, 1596, 2296, + 2594, 1636, 2281, + 2581, 1684, 2261, + 2562, 1742, 2232, + 2536, 1809, 2190, + 2499, 1885, 2128, + 2443, 1971, 2028, + 2357, 2065, 1846, + 2207, 2166, 1362, + 1871, 2274, 0, + 0, 2387, 0, + 0, 2504, 0, + 0, 2625, 0, + 0, 2748, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2764, 1585, 2467, + 2763, 1587, 2466, + 2763, 1589, 2466, + 2762, 1593, 2465, + 2762, 1597, 2464, + 2761, 1602, 2463, + 2760, 1609, 2461, + 2758, 1618, 2459, + 2756, 1631, 2456, + 2753, 1647, 2451, + 2749, 1667, 2446, + 2744, 1693, 2438, + 2737, 1725, 2427, + 2727, 1765, 2412, + 2713, 1814, 2392, + 2695, 1872, 2363, + 2669, 1939, 2321, + 2631, 2016, 2258, + 2576, 2102, 2158, + 2489, 2196, 1976, + 2340, 2297, 1486, + 2004, 2405, 0, + 0, 2518, 0, + 0, 2636, 0, + 0, 2756, 0, + 0, 2880, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1713, 2599, + 2896, 1715, 2598, + 2896, 1717, 2598, + 2895, 1719, 2597, + 2895, 1722, 2597, + 2894, 1726, 2596, + 2893, 1731, 2594, + 2892, 1739, 2593, + 2890, 1748, 2590, + 2888, 1760, 2587, + 2885, 1776, 2583, + 2881, 1797, 2577, + 2876, 1823, 2569, + 2869, 1855, 2558, + 2859, 1896, 2544, + 2846, 1944, 2523, + 2827, 2002, 2494, + 2801, 2070, 2452, + 2764, 2147, 2389, + 2708, 2233, 2289, + 2622, 2327, 2106, + 2472, 2429, 1612, + 2137, 2537, 0, + 0, 2650, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3012, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3028, 1843, 2730, + 3028, 1844, 2730, + 3028, 1845, 2730, + 3028, 1847, 2729, + 3027, 1849, 2729, + 3027, 1852, 2728, + 3026, 1856, 2727, + 3025, 1862, 2726, + 3024, 1869, 2724, + 3023, 1878, 2722, + 3020, 1891, 2719, + 3017, 1907, 2714, + 3014, 1927, 2708, + 3008, 1953, 2701, + 3001, 1986, 2690, + 2991, 2026, 2675, + 2978, 2075, 2654, + 2959, 2133, 2625, + 2933, 2201, 2583, + 2896, 2278, 2520, + 2840, 2364, 2420, + 2754, 2459, 2236, + 2605, 2561, 1740, + 2270, 2669, 0, + 0, 2782, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3161, 1972, 2862, + 3161, 1973, 2862, + 3160, 1974, 2862, + 3160, 1975, 2862, + 3160, 1977, 2861, + 3160, 1980, 2861, + 3159, 1983, 2860, + 3158, 1987, 2859, + 3158, 1992, 2858, + 3156, 1999, 2856, + 3155, 2009, 2853, + 3153, 2021, 2850, + 3150, 2037, 2846, + 3146, 2058, 2840, + 3140, 2084, 2832, + 3133, 2117, 2821, + 3124, 2157, 2807, + 3110, 2206, 2786, + 3092, 2265, 2757, + 3065, 2333, 2715, + 3028, 2410, 2652, + 2973, 2496, 2551, + 2886, 2591, 2367, + 2737, 2692, 1868, + 2403, 2801, 0, + 0, 2914, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3293, 2103, 2994, + 3293, 2103, 2994, + 3293, 2104, 2994, + 3293, 2105, 2994, + 3292, 2106, 2993, + 3292, 2108, 2993, + 3292, 2110, 2992, + 3291, 2114, 2992, + 3291, 2118, 2991, + 3290, 2123, 2989, + 3289, 2130, 2988, + 3287, 2140, 2985, + 3285, 2152, 2982, + 3282, 2168, 2978, + 3278, 2189, 2972, + 3273, 2215, 2964, + 3265, 2248, 2953, + 3256, 2289, 2938, + 3242, 2338, 2918, + 3224, 2396, 2889, + 3198, 2464, 2847, + 3160, 2541, 2784, + 3105, 2628, 2682, + 3019, 2722, 2498, + 2869, 2824, 1998, + 2535, 2932, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3660, 0, + 3425, 2234, 3126, + 3425, 2234, 3126, + 3425, 2235, 3126, + 3425, 2235, 3126, + 3425, 2236, 3126, + 3425, 2238, 3125, + 3424, 2239, 3125, + 3424, 2242, 3124, + 3423, 2245, 3124, + 3423, 2249, 3123, + 3422, 2255, 3121, + 3421, 2262, 3119, + 3419, 2271, 3117, + 3417, 2284, 3114, + 3414, 2300, 3110, + 3410, 2320, 3104, + 3405, 2347, 3096, + 3398, 2380, 3085, + 3388, 2420, 3070, + 3374, 2469, 3050, + 3356, 2528, 3021, + 3330, 2596, 2978, + 3292, 2673, 2915, + 3237, 2760, 2814, + 3151, 2854, 2630, + 3001, 2956, 2128, + 2668, 3064, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2365, 3258, + 3557, 2365, 3258, + 3557, 2365, 3258, + 3557, 2366, 3258, + 3557, 2367, 3258, + 3557, 2368, 3257, + 3557, 2369, 3257, + 3556, 2371, 3257, + 3556, 2373, 3256, + 3556, 2376, 3255, + 3555, 2380, 3254, + 3554, 2386, 3253, + 3553, 2393, 3251, + 3551, 2403, 3249, + 3549, 2415, 3246, + 3546, 2431, 3242, + 3542, 2452, 3236, + 3537, 2478, 3228, + 3530, 2511, 3217, + 3520, 2552, 3202, + 3507, 2601, 3182, + 3488, 2660, 3152, + 3462, 2728, 3110, + 3425, 2805, 3047, + 3369, 2892, 2946, + 3283, 2986, 2761, + 3134, 3088, 2258, + 2800, 3196, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3690, 2496, 3390, + 3690, 2496, 3390, + 3689, 2497, 3390, + 3689, 2497, 3390, + 3689, 2498, 3390, + 3689, 2498, 3390, + 3689, 2499, 3389, + 3689, 2501, 3389, + 3689, 2502, 3389, + 3688, 2505, 3388, + 3688, 2508, 3387, + 3687, 2512, 3386, + 3686, 2518, 3385, + 3685, 2525, 3383, + 3683, 2534, 3381, + 3681, 2547, 3378, + 3678, 2563, 3374, + 3674, 2584, 3368, + 3669, 2610, 3360, + 3662, 2643, 3349, + 3652, 2684, 3334, + 3639, 2733, 3314, + 3620, 2791, 3284, + 3594, 2859, 3242, + 3557, 2937, 3179, + 3501, 3023, 3078, + 3415, 3118, 2893, + 3266, 3220, 2389, + 2932, 3328, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2629, 3522, + 3821, 2629, 3522, + 3821, 2630, 3522, + 3821, 2631, 3521, + 3821, 2632, 3521, + 3821, 2634, 3521, + 3820, 2637, 3520, + 3820, 2640, 3519, + 3819, 2644, 3518, + 3818, 2649, 3517, + 3817, 2657, 3515, + 3815, 2666, 3513, + 3813, 2679, 3510, + 3810, 2695, 3506, + 3806, 2716, 3500, + 3801, 2742, 3492, + 3794, 2775, 3481, + 3784, 2816, 3466, + 3771, 2865, 3446, + 3752, 2923, 3416, + 3726, 2991, 3374, + 3689, 3069, 3311, + 3634, 3155, 3210, + 3547, 3250, 3025, + 3398, 3352, 2521, + 3064, 3460, 0, + 0, 3574, 0, + 0, 3691, 0, + 3954, 2759, 3654, + 3954, 2759, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3954, 2761, 3654, + 3953, 2762, 3654, + 3953, 2763, 3653, + 3953, 2764, 3653, + 3953, 2766, 3653, + 3952, 2768, 3652, + 3952, 2772, 3651, + 3951, 2776, 3650, + 3950, 2781, 3649, + 3949, 2788, 3647, + 3948, 2798, 3645, + 3945, 2811, 3642, + 3943, 2827, 3638, + 3939, 2847, 3632, + 3933, 2874, 3624, + 3926, 2907, 3613, + 3916, 2947, 3598, + 3903, 2997, 3578, + 3884, 3055, 3548, + 3858, 3123, 3506, + 3821, 3201, 3443, + 3766, 3287, 3342, + 3679, 3382, 3157, + 3530, 3484, 2652, + 3197, 3593, 0, + 0, 3706, 0, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4085, 2895, 3786, + 4085, 2896, 3785, + 4085, 2898, 3785, + 4085, 2900, 3784, + 4084, 2903, 3784, + 4083, 2908, 3783, + 4082, 2913, 3781, + 4081, 2920, 3779, + 4080, 2930, 3777, + 4078, 2942, 3774, + 4075, 2959, 3770, + 4071, 2979, 3764, + 4065, 3006, 3756, + 4058, 3039, 3745, + 4048, 3079, 3730, + 4035, 3129, 3710, + 4017, 3187, 3680, + 3990, 3255, 3638, + 3953, 3333, 3575, + 3898, 3420, 3474, + 3811, 3514, 3289, + 3662, 3616, 2784, + 3329, 3725, 0, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3032, 3916, + 4095, 3035, 3916, + 4095, 3040, 3915, + 4095, 3045, 3913, + 4095, 3052, 3912, + 4095, 3062, 3909, + 4095, 3074, 3906, + 4095, 3091, 3902, + 4095, 3111, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3211, 3862, + 4095, 3261, 3842, + 4095, 3319, 3812, + 4095, 3387, 3770, + 4085, 3465, 3707, + 4030, 3552, 3606, + 3944, 3646, 3421, + 3794, 3748, 2916, + 4095, 3155, 4051, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3167, 4048, + 4095, 3172, 4047, + 4095, 3177, 4045, + 4095, 3184, 4044, + 4095, 3194, 4041, + 4095, 3206, 4038, + 4095, 3223, 4034, + 4095, 3243, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3343, 3994, + 4095, 3393, 3974, + 4095, 3451, 3945, + 4095, 3519, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 193, 352, + 0, 229, 307, + 0, 273, 239, + 0, 326, 129, + 0, 388, 0, + 0, 459, 0, + 0, 540, 0, + 0, 630, 0, + 0, 728, 0, + 0, 833, 0, + 0, 943, 0, + 0, 1058, 0, + 0, 1177, 0, + 0, 1299, 0, + 0, 1423, 0, + 0, 1550, 0, + 0, 1677, 0, + 0, 1806, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 205, 412, + 0, 240, 373, + 0, 283, 315, + 0, 335, 223, + 0, 396, 62, + 0, 466, 0, + 0, 546, 0, + 0, 635, 0, + 0, 732, 0, + 0, 836, 0, + 0, 945, 0, + 0, 1060, 0, + 0, 1178, 0, + 0, 1300, 0, + 0, 1424, 0, + 0, 1550, 0, + 0, 1678, 0, + 0, 1807, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 154, 222, 481, + 58, 255, 448, + 0, 297, 399, + 0, 347, 325, + 0, 407, 201, + 0, 476, 0, + 0, 554, 0, + 0, 641, 0, + 0, 737, 0, + 0, 840, 0, + 0, 949, 0, + 0, 1062, 0, + 0, 1180, 0, + 0, 1302, 0, + 0, 1425, 0, + 0, 1551, 0, + 0, 1679, 0, + 0, 1807, 0, + 0, 1936, 0, + 0, 2066, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 409, 242, 560, + 357, 275, 532, + 276, 315, 492, + 138, 363, 433, + 0, 420, 338, + 0, 488, 170, + 0, 564, 0, + 0, 650, 0, + 0, 744, 0, + 0, 845, 0, + 0, 953, 0, + 0, 1066, 0, + 0, 1183, 0, + 0, 1304, 0, + 0, 1427, 0, + 0, 1552, 0, + 0, 1679, 0, + 0, 1808, 0, + 0, 1937, 0, + 0, 2067, 0, + 0, 2197, 0, + 0, 2328, 0, + 0, 2459, 0, + 0, 2591, 0, + 0, 2722, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 616, 269, 648, + 583, 299, 625, + 535, 337, 593, + 463, 383, 546, + 343, 438, 474, + 109, 503, 355, + 0, 577, 124, + 0, 661, 0, + 0, 753, 0, + 0, 852, 0, + 0, 958, 0, + 0, 1070, 0, + 0, 1186, 0, + 0, 1306, 0, + 0, 1429, 0, + 0, 1554, 0, + 0, 1681, 0, + 0, 1809, 0, + 0, 1938, 0, + 0, 2067, 0, + 0, 2198, 0, + 0, 2328, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 796, 302, 744, + 775, 330, 726, + 744, 366, 700, + 700, 409, 663, + 632, 461, 608, + 523, 523, 523, + 318, 594, 377, + 0, 675, 54, + 0, 764, 0, + 0, 862, 0, + 0, 966, 0, + 0, 1076, 0, + 0, 1191, 0, + 0, 1310, 0, + 0, 1432, 0, + 0, 1556, 0, + 0, 1682, 0, + 0, 1810, 0, + 0, 1938, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 962, 343, 847, + 947, 369, 832, + 926, 401, 812, + 897, 442, 784, + 854, 490, 742, + 790, 549, 680, + 688, 616, 582, + 501, 693, 404, + 0, 780, 0, + 0, 874, 0, + 0, 976, 0, + 0, 1084, 0, + 0, 1197, 0, + 0, 1314, 0, + 0, 1435, 0, + 0, 1559, 0, + 0, 1684, 0, + 0, 1811, 0, + 0, 1940, 0, + 0, 2069, 0, + 0, 2199, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1117, 392, 956, + 1107, 415, 945, + 1092, 445, 929, + 1072, 482, 907, + 1043, 527, 876, + 1002, 581, 831, + 941, 644, 762, + 843, 717, 650, + 667, 799, 439, + 213, 890, 0, + 0, 988, 0, + 0, 1094, 0, + 0, 1205, 0, + 0, 1320, 0, + 0, 1440, 0, + 0, 1562, 0, + 0, 1687, 0, + 0, 1813, 0, + 0, 1941, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1266, 450, 1070, + 1258, 471, 1061, + 1248, 497, 1049, + 1234, 530, 1032, + 1214, 571, 1009, + 1186, 620, 976, + 1146, 678, 927, + 1086, 746, 852, + 992, 824, 728, + 824, 910, 481, + 408, 1005, 0, + 0, 1107, 0, + 0, 1215, 0, + 0, 1328, 0, + 0, 1446, 0, + 0, 1567, 0, + 0, 1690, 0, + 0, 1816, 0, + 0, 1943, 0, + 0, 2072, 0, + 0, 2201, 0, + 0, 2331, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1410, 519, 1188, + 1405, 536, 1182, + 1397, 559, 1172, + 1387, 588, 1160, + 1373, 624, 1142, + 1353, 668, 1117, + 1326, 721, 1082, + 1287, 783, 1030, + 1228, 855, 950, + 1136, 936, 815, + 973, 1026, 532, + 582, 1124, 0, + 0, 1229, 0, + 0, 1339, 0, + 0, 1454, 0, + 0, 1573, 0, + 0, 1695, 0, + 0, 1820, 0, + 0, 1946, 0, + 0, 2074, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1551, 596, 1310, + 1547, 611, 1305, + 1542, 631, 1297, + 1534, 655, 1288, + 1524, 687, 1275, + 1510, 725, 1256, + 1491, 772, 1231, + 1464, 828, 1194, + 1425, 894, 1140, + 1367, 969, 1055, + 1277, 1053, 910, + 1117, 1146, 593, + 743, 1246, 0, + 0, 1353, 0, + 0, 1465, 0, + 0, 1581, 0, + 0, 1702, 0, + 0, 1824, 0, + 0, 1950, 0, + 0, 2076, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2463, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1690, 683, 1434, + 1687, 695, 1430, + 1683, 711, 1424, + 1677, 732, 1417, + 1670, 759, 1407, + 1660, 792, 1394, + 1646, 833, 1375, + 1627, 882, 1348, + 1600, 941, 1310, + 1562, 1009, 1254, + 1505, 1087, 1166, + 1415, 1173, 1013, + 1259, 1268, 663, + 895, 1370, 0, + 0, 1479, 0, + 0, 1592, 0, + 0, 1710, 0, + 0, 1831, 0, + 0, 1954, 0, + 0, 2080, 0, + 0, 2207, 0, + 0, 2336, 0, + 0, 2465, 0, + 0, 2595, 0, + 0, 2726, 0, + 0, 2856, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1826, 777, 1560, + 1824, 788, 1557, + 1821, 801, 1552, + 1817, 818, 1547, + 1812, 840, 1540, + 1805, 868, 1530, + 1795, 903, 1516, + 1781, 945, 1496, + 1762, 997, 1469, + 1736, 1058, 1430, + 1697, 1128, 1372, + 1641, 1208, 1281, + 1552, 1296, 1121, + 1397, 1393, 742, + 1042, 1497, 0, + 0, 1606, 0, + 0, 1721, 0, + 0, 1839, 0, + 0, 1961, 0, + 0, 2085, 0, + 0, 2211, 0, + 0, 2338, 0, + 0, 2467, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1962, 880, 1687, + 1961, 888, 1685, + 1958, 898, 1682, + 1955, 912, 1678, + 1951, 930, 1672, + 1946, 953, 1664, + 1939, 982, 1654, + 1929, 1018, 1640, + 1915, 1062, 1620, + 1897, 1116, 1593, + 1870, 1178, 1553, + 1832, 1250, 1494, + 1776, 1331, 1400, + 1688, 1422, 1235, + 1534, 1520, 831, + 1185, 1624, 0, + 0, 1735, 0, + 0, 1850, 0, + 0, 1969, 0, + 0, 2091, 0, + 0, 2216, 0, + 0, 2342, 0, + 0, 2470, 0, + 0, 2599, 0, + 0, 2728, 0, + 0, 2859, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2097, 988, 1815, + 2096, 994, 1814, + 2094, 1003, 1811, + 2092, 1014, 1808, + 2089, 1028, 1804, + 2085, 1047, 1799, + 2080, 1071, 1791, + 2072, 1100, 1781, + 2063, 1138, 1766, + 2049, 1183, 1746, + 2030, 1237, 1719, + 2004, 1301, 1678, + 1966, 1375, 1618, + 1910, 1457, 1523, + 1822, 1548, 1352, + 1670, 1647, 927, + 1325, 1753, 0, + 0, 1864, 0, + 0, 1980, 0, + 0, 2100, 0, + 0, 2222, 0, + 0, 2347, 0, + 0, 2474, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2231, 1101, 1945, + 2230, 1106, 1944, + 2229, 1113, 1942, + 2227, 1122, 1940, + 2225, 1133, 1936, + 2222, 1148, 1932, + 2218, 1167, 1927, + 2213, 1191, 1919, + 2206, 1222, 1908, + 2196, 1260, 1894, + 2182, 1306, 1874, + 2164, 1362, 1846, + 2137, 1427, 1805, + 2100, 1501, 1744, + 2044, 1585, 1647, + 1956, 1677, 1473, + 1805, 1776, 1031, + 1463, 1883, 0, + 0, 1994, 0, + 0, 2111, 0, + 0, 2231, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2364, 1219, 2075, + 2364, 1223, 2074, + 2363, 1228, 2073, + 2362, 1235, 2071, + 2360, 1244, 2069, + 2358, 1255, 2066, + 2355, 1270, 2061, + 2351, 1290, 2056, + 2346, 1315, 2048, + 2339, 1346, 2037, + 2329, 1385, 2023, + 2315, 1432, 2003, + 2297, 1488, 1974, + 2270, 1553, 1933, + 2233, 1629, 1871, + 2177, 1713, 1773, + 2090, 1806, 1597, + 1939, 1906, 1140, + 1599, 2013, 0, + 0, 2125, 0, + 0, 2242, 0, + 0, 2362, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2498, 1340, 2206, + 2497, 1343, 2205, + 2497, 1347, 2204, + 2496, 1352, 2203, + 2494, 1359, 2201, + 2493, 1368, 2199, + 2491, 1380, 2195, + 2488, 1395, 2191, + 2484, 1415, 2185, + 2478, 1440, 2178, + 2471, 1472, 2167, + 2461, 1511, 2152, + 2448, 1559, 2132, + 2429, 1615, 2103, + 2403, 1682, 2062, + 2366, 1757, 2000, + 2310, 1842, 1901, + 2223, 1936, 1723, + 2073, 2036, 1254, + 1735, 2144, 0, + 0, 2256, 0, + 0, 2373, 0, + 0, 2493, 0, + 0, 2616, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2631, 1463, 2337, + 2630, 1466, 2336, + 2630, 1469, 2335, + 2629, 1473, 2334, + 2628, 1478, 2333, + 2627, 1485, 2331, + 2625, 1494, 2329, + 2623, 1506, 2326, + 2620, 1522, 2322, + 2616, 1542, 2316, + 2611, 1567, 2308, + 2604, 1599, 2297, + 2594, 1639, 2283, + 2581, 1687, 2262, + 2562, 1744, 2233, + 2536, 1811, 2192, + 2498, 1887, 2130, + 2443, 1972, 2030, + 2356, 2066, 1850, + 2206, 2167, 1373, + 1869, 2275, 0, + 0, 2387, 0, + 0, 2504, 0, + 0, 2625, 0, + 0, 2748, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2763, 1589, 2468, + 2763, 1591, 2467, + 2763, 1593, 2467, + 2762, 1596, 2466, + 2761, 1600, 2465, + 2761, 1605, 2464, + 2759, 1613, 2462, + 2758, 1622, 2460, + 2756, 1634, 2457, + 2753, 1650, 2452, + 2749, 1670, 2447, + 2743, 1696, 2439, + 2736, 1728, 2428, + 2727, 1768, 2413, + 2713, 1816, 2393, + 2694, 1874, 2364, + 2668, 1941, 2322, + 2631, 2017, 2260, + 2575, 2103, 2160, + 2489, 2197, 1978, + 2339, 2298, 1494, + 2003, 2406, 0, + 0, 2519, 0, + 0, 2636, 0, + 0, 2757, 0, + 0, 2880, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1716, 2599, + 2896, 1717, 2599, + 2895, 1719, 2599, + 2895, 1722, 2598, + 2894, 1725, 2597, + 2894, 1729, 2596, + 2893, 1734, 2595, + 2892, 1741, 2593, + 2890, 1751, 2591, + 2888, 1763, 2588, + 2885, 1779, 2583, + 2881, 1799, 2578, + 2876, 1825, 2570, + 2869, 1857, 2559, + 2859, 1897, 2544, + 2845, 1946, 2524, + 2827, 2004, 2495, + 2801, 2071, 2453, + 2763, 2148, 2390, + 2708, 2234, 2290, + 2621, 2328, 2108, + 2472, 2430, 1618, + 2136, 2537, 0, + 0, 2650, 0, + 0, 2768, 0, + 0, 2888, 0, + 0, 3012, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3028, 1845, 2731, + 3028, 1846, 2731, + 3028, 1847, 2730, + 3028, 1849, 2730, + 3027, 1851, 2729, + 3027, 1854, 2729, + 3026, 1858, 2728, + 3025, 1864, 2726, + 3024, 1871, 2725, + 3022, 1880, 2722, + 3020, 1892, 2719, + 3017, 1908, 2715, + 3013, 1929, 2709, + 3008, 1955, 2701, + 3001, 1987, 2690, + 2991, 2028, 2676, + 2978, 2076, 2655, + 2959, 2134, 2626, + 2933, 2202, 2584, + 2896, 2279, 2521, + 2840, 2365, 2421, + 2754, 2459, 2238, + 2604, 2561, 1744, + 2269, 2669, 0, + 0, 2782, 0, + 0, 2900, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3161, 1974, 2863, + 3161, 1975, 2862, + 3160, 1976, 2862, + 3160, 1977, 2862, + 3160, 1979, 2862, + 3160, 1981, 2861, + 3159, 1984, 2860, + 3158, 1988, 2859, + 3157, 1994, 2858, + 3156, 2001, 2856, + 3155, 2010, 2854, + 3152, 2023, 2851, + 3150, 2039, 2846, + 3146, 2059, 2841, + 3140, 2085, 2833, + 3133, 2118, 2822, + 3123, 2158, 2807, + 3110, 2207, 2787, + 3091, 2266, 2758, + 3065, 2333, 2716, + 3028, 2410, 2653, + 2973, 2497, 2552, + 2886, 2591, 2368, + 2737, 2693, 1872, + 2402, 2801, 0, + 0, 2914, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3293, 2104, 2994, + 3293, 2104, 2994, + 3293, 2105, 2994, + 3293, 2106, 2994, + 3292, 2107, 2994, + 3292, 2109, 2993, + 3292, 2112, 2993, + 3291, 2115, 2992, + 3291, 2119, 2991, + 3290, 2124, 2990, + 3288, 2132, 2988, + 3287, 2141, 2986, + 3285, 2153, 2982, + 3282, 2169, 2978, + 3278, 2190, 2972, + 3273, 2216, 2964, + 3265, 2249, 2954, + 3256, 2290, 2939, + 3242, 2339, 2918, + 3224, 2397, 2889, + 3198, 2465, 2847, + 3160, 2542, 2784, + 3105, 2628, 2683, + 3018, 2723, 2499, + 2869, 2825, 2000, + 2535, 2933, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3661, 0, + 3425, 2234, 3126, + 3425, 2235, 3126, + 3425, 2235, 3126, + 3425, 2236, 3126, + 3425, 2237, 3126, + 3425, 2238, 3125, + 3424, 2240, 3125, + 3424, 2243, 3124, + 3423, 2246, 3124, + 3423, 2250, 3123, + 3422, 2255, 3121, + 3421, 2263, 3120, + 3419, 2272, 3117, + 3417, 2284, 3114, + 3414, 2301, 3110, + 3410, 2321, 3104, + 3405, 2347, 3096, + 3398, 2380, 3085, + 3388, 2421, 3071, + 3374, 2470, 3050, + 3356, 2528, 3021, + 3330, 2596, 2979, + 3292, 2674, 2916, + 3237, 2760, 2815, + 3151, 2855, 2631, + 3001, 2956, 2130, + 2667, 3065, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2365, 3258, + 3557, 2366, 3258, + 3557, 2366, 3258, + 3557, 2367, 3258, + 3557, 2367, 3258, + 3557, 2368, 3258, + 3557, 2370, 3257, + 3556, 2371, 3257, + 3556, 2374, 3256, + 3556, 2377, 3256, + 3555, 2381, 3255, + 3554, 2387, 3253, + 3553, 2394, 3252, + 3551, 2403, 3249, + 3549, 2416, 3246, + 3546, 2432, 3242, + 3542, 2453, 3236, + 3537, 2479, 3228, + 3530, 2512, 3217, + 3520, 2552, 3202, + 3507, 2602, 3182, + 3488, 2660, 3153, + 3462, 2728, 3111, + 3425, 2805, 3047, + 3369, 2892, 2946, + 3283, 2986, 2762, + 3134, 3088, 2260, + 2800, 3197, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3690, 2497, 3390, + 3690, 2497, 3390, + 3689, 2497, 3390, + 3689, 2498, 3390, + 3689, 2498, 3390, + 3689, 2499, 3390, + 3689, 2500, 3390, + 3689, 2501, 3389, + 3689, 2503, 3389, + 3688, 2505, 3388, + 3688, 2508, 3388, + 3687, 2513, 3387, + 3686, 2518, 3385, + 3685, 2525, 3384, + 3683, 2535, 3381, + 3681, 2547, 3378, + 3678, 2563, 3374, + 3674, 2584, 3368, + 3669, 2610, 3360, + 3662, 2643, 3349, + 3652, 2684, 3334, + 3639, 2733, 3314, + 3620, 2792, 3285, + 3594, 2860, 3242, + 3557, 2937, 3179, + 3501, 3024, 3078, + 3415, 3118, 2894, + 3266, 3220, 2391, + 2932, 3329, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2628, 3522, + 3822, 2629, 3522, + 3822, 2629, 3522, + 3821, 2630, 3522, + 3821, 2630, 3522, + 3821, 2631, 3522, + 3821, 2633, 3521, + 3821, 2635, 3521, + 3820, 2637, 3520, + 3820, 2640, 3520, + 3819, 2644, 3519, + 3818, 2650, 3517, + 3817, 2657, 3515, + 3815, 2667, 3513, + 3813, 2679, 3510, + 3810, 2695, 3506, + 3806, 2716, 3500, + 3801, 2742, 3492, + 3794, 2775, 3481, + 3784, 2816, 3466, + 3771, 2865, 3446, + 3752, 2924, 3416, + 3726, 2992, 3374, + 3689, 3069, 3311, + 3634, 3156, 3210, + 3547, 3250, 3025, + 3398, 3352, 2521, + 3064, 3461, 0, + 0, 3574, 0, + 0, 3692, 0, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3954, 2761, 3654, + 3953, 2762, 3654, + 3953, 2763, 3654, + 3953, 2764, 3653, + 3953, 2766, 3653, + 3952, 2769, 3652, + 3952, 2772, 3652, + 3951, 2776, 3651, + 3950, 2781, 3649, + 3949, 2789, 3647, + 3948, 2798, 3645, + 3945, 2811, 3642, + 3942, 2827, 3638, + 3939, 2848, 3632, + 3933, 2874, 3624, + 3926, 2907, 3613, + 3916, 2948, 3598, + 3903, 2997, 3578, + 3884, 3055, 3548, + 3858, 3123, 3506, + 3821, 3201, 3443, + 3766, 3288, 3342, + 3679, 3382, 3157, + 3530, 3484, 2653, + 3197, 3593, 0, + 0, 3706, 0, + 4086, 2891, 3786, + 4086, 2891, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4085, 2895, 3786, + 4085, 2896, 3785, + 4085, 2898, 3785, + 4085, 2900, 3784, + 4084, 2904, 3784, + 4083, 2908, 3783, + 4082, 2913, 3781, + 4081, 2921, 3780, + 4080, 2930, 3777, + 4078, 2943, 3774, + 4075, 2959, 3770, + 4071, 2980, 3764, + 4065, 3006, 3756, + 4058, 3039, 3745, + 4048, 3080, 3730, + 4035, 3129, 3710, + 4017, 3187, 3680, + 3990, 3255, 3638, + 3953, 3333, 3575, + 3898, 3420, 3474, + 3811, 3514, 3289, + 3662, 3616, 2784, + 3329, 3725, 0, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3032, 3916, + 4095, 3036, 3916, + 4095, 3040, 3915, + 4095, 3045, 3913, + 4095, 3052, 3912, + 4095, 3062, 3909, + 4095, 3075, 3906, + 4095, 3091, 3902, + 4095, 3111, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3212, 3862, + 4095, 3261, 3842, + 4095, 3319, 3813, + 4095, 3387, 3770, + 4085, 3465, 3707, + 4030, 3552, 3606, + 3944, 3646, 3421, + 3794, 3748, 2916, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3155, 4050, + 4095, 3155, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3167, 4048, + 4095, 3172, 4047, + 4095, 3177, 4045, + 4095, 3184, 4044, + 4095, 3194, 4041, + 4095, 3206, 4038, + 4095, 3223, 4034, + 4095, 3243, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3344, 3994, + 4095, 3393, 3974, + 4095, 3451, 3945, + 4095, 3520, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 286, 468, + 0, 316, 433, + 0, 352, 383, + 0, 397, 305, + 0, 450, 175, + 0, 514, 0, + 0, 586, 0, + 0, 668, 0, + 0, 759, 0, + 0, 857, 0, + 0, 962, 0, + 0, 1073, 0, + 0, 1189, 0, + 0, 1308, 0, + 0, 1430, 0, + 0, 1555, 0, + 0, 1681, 0, + 0, 1809, 0, + 0, 1938, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 296, 515, + 0, 325, 484, + 0, 361, 439, + 0, 405, 371, + 0, 458, 261, + 0, 520, 54, + 0, 592, 0, + 0, 673, 0, + 0, 762, 0, + 0, 860, 0, + 0, 965, 0, + 0, 1075, 0, + 0, 1190, 0, + 0, 1309, 0, + 0, 1431, 0, + 0, 1556, 0, + 0, 1682, 0, + 0, 1810, 0, + 0, 1938, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 38, 310, 571, + 0, 338, 544, + 0, 372, 505, + 0, 415, 447, + 0, 467, 355, + 0, 528, 195, + 0, 599, 0, + 0, 678, 0, + 0, 767, 0, + 0, 864, 0, + 0, 968, 0, + 0, 1077, 0, + 0, 1192, 0, + 0, 1311, 0, + 0, 1432, 0, + 0, 1556, 0, + 0, 1682, 0, + 0, 1810, 0, + 0, 1939, 0, + 0, 2068, 0, + 0, 2198, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 347, 327, 637, + 286, 354, 613, + 190, 387, 580, + 17, 429, 531, + 0, 479, 457, + 0, 539, 333, + 0, 608, 87, + 0, 686, 0, + 0, 774, 0, + 0, 869, 0, + 0, 972, 0, + 0, 1081, 0, + 0, 1194, 0, + 0, 1312, 0, + 0, 1434, 0, + 0, 1558, 0, + 0, 1683, 0, + 0, 1811, 0, + 0, 1939, 0, + 0, 2069, 0, + 0, 2199, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 577, 349, 712, + 541, 375, 692, + 489, 407, 664, + 408, 447, 624, + 270, 495, 565, + 0, 553, 470, + 0, 620, 302, + 0, 696, 0, + 0, 782, 0, + 0, 876, 0, + 0, 977, 0, + 0, 1085, 0, + 0, 1198, 0, + 0, 1315, 0, + 0, 1436, 0, + 0, 1559, 0, + 0, 1684, 0, + 0, 1812, 0, + 0, 1940, 0, + 0, 2069, 0, + 0, 2199, 0, + 0, 2329, 0, + 0, 2460, 0, + 0, 2591, 0, + 0, 2723, 0, + 0, 2854, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 771, 377, 796, + 748, 401, 780, + 715, 431, 757, + 668, 469, 725, + 595, 515, 678, + 475, 571, 606, + 241, 635, 487, + 0, 709, 256, + 0, 793, 0, + 0, 885, 0, + 0, 984, 0, + 0, 1091, 0, + 0, 1202, 0, + 0, 1318, 0, + 0, 1438, 0, + 0, 1561, 0, + 0, 1686, 0, + 0, 1813, 0, + 0, 1941, 0, + 0, 2070, 0, + 0, 2199, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 944, 411, 889, + 928, 434, 876, + 907, 462, 858, + 876, 498, 832, + 832, 541, 795, + 764, 594, 740, + 655, 655, 655, + 450, 726, 509, + 0, 807, 186, + 0, 896, 0, + 0, 994, 0, + 0, 1098, 0, + 0, 1208, 0, + 0, 1323, 0, + 0, 1442, 0, + 0, 1564, 0, + 0, 1688, 0, + 0, 1814, 0, + 0, 1942, 0, + 0, 2071, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1105, 454, 990, + 1094, 475, 979, + 1079, 501, 965, + 1058, 533, 944, + 1029, 574, 916, + 986, 623, 874, + 922, 681, 813, + 820, 748, 714, + 633, 825, 536, + 113, 912, 73, + 0, 1006, 0, + 0, 1108, 0, + 0, 1216, 0, + 0, 1329, 0, + 0, 1446, 0, + 0, 1567, 0, + 0, 1691, 0, + 0, 1816, 0, + 0, 1943, 0, + 0, 2072, 0, + 0, 2201, 0, + 0, 2331, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1257, 506, 1097, + 1249, 524, 1088, + 1239, 547, 1077, + 1224, 577, 1061, + 1204, 614, 1039, + 1175, 659, 1008, + 1134, 713, 963, + 1073, 776, 894, + 975, 849, 783, + 799, 931, 571, + 345, 1022, 0, + 0, 1121, 0, + 0, 1226, 0, + 0, 1337, 0, + 0, 1452, 0, + 0, 1572, 0, + 0, 1694, 0, + 0, 1819, 0, + 0, 1945, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1404, 566, 1209, + 1398, 582, 1202, + 1390, 603, 1193, + 1380, 629, 1181, + 1366, 662, 1165, + 1346, 703, 1141, + 1318, 752, 1108, + 1278, 811, 1059, + 1218, 878, 984, + 1124, 956, 860, + 956, 1042, 613, + 540, 1137, 0, + 0, 1239, 0, + 0, 1347, 0, + 0, 1461, 0, + 0, 1578, 0, + 0, 1699, 0, + 0, 1823, 0, + 0, 1948, 0, + 0, 2075, 0, + 0, 2204, 0, + 0, 2333, 0, + 0, 2463, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1546, 637, 1325, + 1542, 651, 1320, + 1537, 668, 1314, + 1529, 691, 1304, + 1519, 720, 1292, + 1505, 756, 1274, + 1486, 800, 1249, + 1458, 853, 1214, + 1419, 915, 1162, + 1360, 987, 1082, + 1268, 1068, 947, + 1105, 1158, 665, + 714, 1256, 0, + 0, 1361, 0, + 0, 1471, 0, + 0, 1586, 0, + 0, 1705, 0, + 0, 1827, 0, + 0, 1952, 0, + 0, 2078, 0, + 0, 2206, 0, + 0, 2335, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1686, 717, 1446, + 1683, 728, 1442, + 1679, 743, 1437, + 1674, 763, 1430, + 1666, 787, 1420, + 1656, 819, 1407, + 1642, 857, 1388, + 1623, 904, 1363, + 1596, 960, 1326, + 1557, 1026, 1272, + 1500, 1101, 1187, + 1409, 1185, 1042, + 1250, 1278, 725, + 875, 1378, 0, + 0, 1485, 0, + 0, 1597, 0, + 0, 1713, 0, + 0, 1834, 0, + 0, 1957, 0, + 0, 2082, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1824, 805, 1569, + 1822, 815, 1566, + 1819, 827, 1562, + 1815, 843, 1556, + 1809, 864, 1549, + 1802, 891, 1539, + 1792, 924, 1526, + 1778, 965, 1507, + 1759, 1014, 1480, + 1732, 1073, 1442, + 1694, 1141, 1386, + 1637, 1219, 1298, + 1547, 1305, 1145, + 1391, 1400, 795, + 1028, 1502, 0, + 0, 1611, 0, + 0, 1724, 0, + 0, 1842, 0, + 0, 1963, 0, + 0, 2087, 0, + 0, 2212, 0, + 0, 2339, 0, + 0, 2468, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1960, 902, 1694, + 1959, 910, 1692, + 1956, 920, 1689, + 1953, 933, 1685, + 1949, 950, 1679, + 1944, 972, 1672, + 1937, 1000, 1662, + 1927, 1035, 1648, + 1913, 1077, 1628, + 1894, 1129, 1601, + 1868, 1190, 1562, + 1830, 1260, 1505, + 1773, 1340, 1413, + 1684, 1428, 1253, + 1530, 1525, 875, + 1174, 1629, 0, + 0, 1738, 0, + 0, 1853, 0, + 0, 1971, 0, + 0, 2093, 0, + 0, 2217, 0, + 0, 2343, 0, + 0, 2471, 0, + 0, 2599, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2095, 1005, 1821, + 2094, 1012, 1819, + 2093, 1020, 1817, + 2090, 1030, 1814, + 2087, 1044, 1810, + 2084, 1062, 1804, + 2078, 1085, 1797, + 2071, 1114, 1786, + 2061, 1150, 1772, + 2047, 1195, 1753, + 2029, 1248, 1725, + 2002, 1310, 1685, + 1964, 1382, 1626, + 1908, 1464, 1533, + 1820, 1554, 1367, + 1667, 1652, 963, + 1317, 1756, 0, + 0, 1867, 0, + 0, 1982, 0, + 0, 2101, 0, + 0, 2223, 0, + 0, 2348, 0, + 0, 2474, 0, + 0, 2602, 0, + 0, 2731, 0, + 0, 2860, 0, + 0, 2991, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2230, 1115, 1949, + 2229, 1120, 1948, + 2228, 1126, 1946, + 2226, 1135, 1944, + 2224, 1146, 1941, + 2221, 1160, 1936, + 2217, 1179, 1931, + 2212, 1203, 1923, + 2205, 1233, 1913, + 2195, 1270, 1898, + 2181, 1315, 1879, + 2162, 1369, 1851, + 2136, 1433, 1810, + 2098, 1507, 1750, + 2042, 1589, 1655, + 1955, 1681, 1484, + 1802, 1780, 1059, + 1457, 1885, 0, + 0, 1996, 0, + 0, 2112, 0, + 0, 2232, 0, + 0, 2354, 0, + 0, 2479, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2364, 1229, 2078, + 2363, 1233, 2077, + 2362, 1238, 2076, + 2361, 1245, 2074, + 2359, 1254, 2072, + 2357, 1265, 2069, + 2354, 1280, 2064, + 2350, 1299, 2059, + 2345, 1323, 2051, + 2338, 1354, 2041, + 2328, 1392, 2026, + 2314, 1438, 2006, + 2296, 1494, 1978, + 2269, 1559, 1937, + 2232, 1633, 1876, + 2176, 1717, 1779, + 2089, 1809, 1606, + 1937, 1908, 1163, + 1595, 2015, 0, + 0, 2127, 0, + 0, 2243, 0, + 0, 2363, 0, + 0, 2486, 0, + 0, 2611, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2497, 1348, 2208, + 2497, 1351, 2207, + 2496, 1355, 2206, + 2495, 1360, 2205, + 2494, 1367, 2203, + 2492, 1376, 2201, + 2490, 1387, 2198, + 2487, 1402, 2193, + 2483, 1422, 2188, + 2478, 1447, 2180, + 2471, 1478, 2169, + 2461, 1517, 2155, + 2447, 1564, 2135, + 2429, 1620, 2106, + 2402, 1686, 2065, + 2365, 1761, 2004, + 2309, 1845, 1906, + 2222, 1938, 1729, + 2071, 2038, 1272, + 1731, 2145, 0, + 0, 2257, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2630, 1470, 2338, + 2630, 1472, 2338, + 2629, 1475, 2337, + 2629, 1479, 2336, + 2628, 1484, 2335, + 2627, 1491, 2333, + 2625, 1500, 2331, + 2623, 1512, 2327, + 2620, 1527, 2323, + 2616, 1547, 2317, + 2611, 1572, 2310, + 2603, 1604, 2299, + 2594, 1643, 2284, + 2580, 1691, 2264, + 2561, 1748, 2236, + 2535, 1814, 2194, + 2498, 1890, 2132, + 2442, 1974, 2033, + 2355, 2068, 1855, + 2205, 2168, 1386, + 1867, 2276, 0, + 0, 2388, 0, + 0, 2505, 0, + 0, 2625, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2763, 1594, 2469, + 2763, 1595, 2469, + 2762, 1598, 2468, + 2762, 1601, 2467, + 2761, 1605, 2466, + 2760, 1610, 2465, + 2759, 1617, 2463, + 2757, 1626, 2461, + 2755, 1638, 2458, + 2752, 1654, 2454, + 2748, 1674, 2448, + 2743, 1699, 2440, + 2736, 1731, 2429, + 2726, 1771, 2415, + 2713, 1819, 2394, + 2694, 1876, 2366, + 2668, 1943, 2324, + 2630, 2019, 2262, + 2575, 2104, 2162, + 2488, 2198, 1982, + 2338, 2299, 1505, + 2001, 2407, 0, + 0, 2519, 0, + 0, 2637, 0, + 0, 2757, 0, + 0, 2880, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2896, 1720, 2600, + 2895, 1721, 2600, + 2895, 1723, 2600, + 2895, 1725, 2599, + 2894, 1728, 2598, + 2894, 1732, 2597, + 2893, 1738, 2596, + 2891, 1745, 2594, + 2890, 1754, 2592, + 2888, 1766, 2589, + 2885, 1782, 2584, + 2881, 1802, 2579, + 2876, 1828, 2571, + 2868, 1860, 2560, + 2859, 1900, 2545, + 2845, 1948, 2525, + 2827, 2006, 2496, + 2800, 2073, 2454, + 2763, 2149, 2392, + 2708, 2235, 2292, + 2621, 2329, 2111, + 2471, 2430, 1626, + 2135, 2538, 0, + 0, 2651, 0, + 0, 2768, 0, + 0, 2889, 0, + 0, 3012, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3028, 1847, 2732, + 3028, 1848, 2731, + 3028, 1850, 2731, + 3027, 1851, 2731, + 3027, 1854, 2730, + 3027, 1857, 2729, + 3026, 1861, 2728, + 3025, 1866, 2727, + 3024, 1873, 2725, + 3022, 1883, 2723, + 3020, 1895, 2720, + 3017, 1911, 2716, + 3013, 1931, 2710, + 3008, 1957, 2702, + 3001, 1989, 2691, + 2991, 2030, 2676, + 2978, 2078, 2656, + 2959, 2136, 2627, + 2933, 2203, 2585, + 2895, 2280, 2522, + 2840, 2366, 2422, + 2753, 2460, 2240, + 2604, 2562, 1750, + 2268, 2670, 0, + 0, 2783, 0, + 0, 2900, 0, + 0, 3021, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 3160, 1976, 2863, + 3160, 1977, 2863, + 3160, 1978, 2863, + 3160, 1979, 2862, + 3160, 1981, 2862, + 3159, 1983, 2862, + 3159, 1986, 2861, + 3158, 1990, 2860, + 3157, 1996, 2858, + 3156, 2003, 2857, + 3154, 2012, 2854, + 3152, 2025, 2851, + 3149, 2040, 2847, + 3146, 2061, 2841, + 3140, 2087, 2833, + 3133, 2120, 2822, + 3123, 2160, 2808, + 3110, 2209, 2787, + 3091, 2267, 2758, + 3065, 2334, 2716, + 3028, 2411, 2653, + 2972, 2497, 2553, + 2886, 2592, 2370, + 2736, 2693, 1876, + 2401, 2801, 0, + 0, 2914, 0, + 0, 3032, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3529, 0, + 0, 3657, 0, + 3293, 2105, 2995, + 3293, 2106, 2995, + 3293, 2107, 2995, + 3292, 2108, 2994, + 3292, 2109, 2994, + 3292, 2111, 2994, + 3292, 2113, 2993, + 3291, 2116, 2992, + 3290, 2120, 2991, + 3290, 2126, 2990, + 3288, 2133, 2988, + 3287, 2142, 2986, + 3285, 2155, 2983, + 3282, 2171, 2978, + 3278, 2191, 2973, + 3272, 2217, 2965, + 3265, 2250, 2954, + 3256, 2291, 2939, + 3242, 2339, 2919, + 3224, 2398, 2890, + 3197, 2465, 2848, + 3160, 2542, 2785, + 3105, 2629, 2684, + 3018, 2723, 2500, + 2869, 2825, 2004, + 2534, 2933, 0, + 0, 3046, 0, + 0, 3164, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3661, 0, + 3425, 2236, 3127, + 3425, 2236, 3127, + 3425, 2237, 3126, + 3425, 2237, 3126, + 3425, 2238, 3126, + 3424, 2240, 3126, + 3424, 2241, 3125, + 3424, 2244, 3125, + 3423, 2247, 3124, + 3423, 2251, 3123, + 3422, 2256, 3122, + 3421, 2264, 3120, + 3419, 2273, 3118, + 3417, 2286, 3114, + 3414, 2302, 3110, + 3410, 2322, 3104, + 3405, 2348, 3096, + 3397, 2381, 3086, + 3388, 2422, 3071, + 3374, 2471, 3050, + 3356, 2529, 3021, + 3330, 2597, 2979, + 3292, 2674, 2916, + 3237, 2760, 2815, + 3150, 2855, 2631, + 3001, 2957, 2132, + 2667, 3065, 0, + 0, 3178, 0, + 0, 3296, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3557, 2366, 3259, + 3557, 2367, 3258, + 3557, 2367, 3258, + 3557, 2367, 3258, + 3557, 2368, 3258, + 3557, 2369, 3258, + 3557, 2371, 3258, + 3556, 2372, 3257, + 3556, 2375, 3257, + 3555, 2378, 3256, + 3555, 2382, 3255, + 3554, 2387, 3254, + 3553, 2395, 3252, + 3551, 2404, 3249, + 3549, 2417, 3246, + 3546, 2433, 3242, + 3542, 2453, 3236, + 3537, 2480, 3228, + 3530, 2512, 3217, + 3520, 2553, 3203, + 3506, 2602, 3182, + 3488, 2660, 3153, + 3462, 2728, 3111, + 3424, 2806, 3048, + 3369, 2892, 2947, + 3283, 2987, 2763, + 3133, 3089, 2262, + 2799, 3197, 0, + 0, 3310, 0, + 0, 3428, 0, + 0, 3548, 0, + 0, 3672, 0, + 3689, 2497, 3390, + 3689, 2497, 3390, + 3689, 2498, 3390, + 3689, 2498, 3390, + 3689, 2499, 3390, + 3689, 2499, 3390, + 3689, 2500, 3390, + 3689, 2502, 3389, + 3688, 2504, 3389, + 3688, 2506, 3388, + 3688, 2509, 3388, + 3687, 2513, 3387, + 3686, 2519, 3385, + 3685, 2526, 3384, + 3683, 2535, 3381, + 3681, 2548, 3378, + 3678, 2564, 3374, + 3674, 2585, 3368, + 3669, 2611, 3360, + 3662, 2644, 3349, + 3652, 2684, 3334, + 3639, 2734, 3314, + 3620, 2792, 3285, + 3594, 2860, 3243, + 3557, 2937, 3179, + 3501, 3024, 3078, + 3415, 3119, 2894, + 3266, 3220, 2392, + 2932, 3329, 0, + 0, 3442, 0, + 0, 3560, 0, + 0, 3680, 0, + 3822, 2628, 3522, + 3822, 2629, 3522, + 3822, 2629, 3522, + 3822, 2629, 3522, + 3821, 2630, 3522, + 3821, 2630, 3522, + 3821, 2631, 3522, + 3821, 2632, 3522, + 3821, 2633, 3521, + 3821, 2635, 3521, + 3820, 2637, 3520, + 3820, 2641, 3520, + 3819, 2645, 3519, + 3818, 2650, 3517, + 3817, 2657, 3516, + 3815, 2667, 3513, + 3813, 2679, 3510, + 3810, 2696, 3506, + 3806, 2716, 3500, + 3801, 2743, 3492, + 3794, 2775, 3481, + 3784, 2816, 3466, + 3771, 2865, 3446, + 3752, 2924, 3417, + 3726, 2992, 3375, + 3689, 3069, 3311, + 3633, 3156, 3210, + 3547, 3250, 3026, + 3398, 3352, 2523, + 3064, 3461, 0, + 0, 3574, 0, + 0, 3692, 0, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2760, 3654, + 3954, 2761, 3654, + 3954, 2761, 3654, + 3954, 2762, 3654, + 3953, 2763, 3654, + 3953, 2764, 3654, + 3953, 2765, 3653, + 3953, 2767, 3653, + 3952, 2769, 3652, + 3952, 2772, 3652, + 3951, 2776, 3651, + 3950, 2782, 3649, + 3949, 2789, 3648, + 3948, 2799, 3645, + 3945, 2811, 3642, + 3942, 2827, 3638, + 3939, 2848, 3632, + 3933, 2874, 3624, + 3926, 2907, 3613, + 3916, 2948, 3598, + 3903, 2997, 3578, + 3884, 3056, 3549, + 3858, 3124, 3506, + 3821, 3201, 3443, + 3766, 3288, 3342, + 3679, 3382, 3157, + 3530, 3484, 2654, + 3196, 3593, 0, + 0, 3706, 0, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4086, 2894, 3786, + 4085, 2895, 3786, + 4085, 2897, 3785, + 4085, 2898, 3785, + 4085, 2901, 3784, + 4084, 2904, 3784, + 4083, 2908, 3783, + 4082, 2914, 3781, + 4081, 2921, 3780, + 4080, 2930, 3777, + 4077, 2943, 3774, + 4075, 2959, 3770, + 4071, 2980, 3764, + 4065, 3006, 3756, + 4058, 3039, 3745, + 4048, 3080, 3730, + 4035, 3129, 3710, + 4017, 3188, 3681, + 3990, 3256, 3638, + 3953, 3333, 3575, + 3898, 3420, 3474, + 3811, 3514, 3289, + 3662, 3616, 2785, + 3329, 3725, 0, + 4095, 3023, 3919, + 4095, 3023, 3918, + 4095, 3023, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3917, + 4095, 3030, 3917, + 4095, 3033, 3916, + 4095, 3036, 3916, + 4095, 3040, 3915, + 4095, 3045, 3913, + 4095, 3053, 3912, + 4095, 3062, 3909, + 4095, 3075, 3906, + 4095, 3091, 3902, + 4095, 3112, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3212, 3862, + 4095, 3261, 3842, + 4095, 3319, 3813, + 4095, 3388, 3770, + 4085, 3465, 3707, + 4030, 3552, 3606, + 3944, 3646, 3421, + 3794, 3748, 2916, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4049, + 4095, 3162, 4049, + 4095, 3164, 4048, + 4095, 3168, 4048, + 4095, 3172, 4047, + 4095, 3177, 4045, + 4095, 3185, 4044, + 4095, 3194, 4041, + 4095, 3207, 4038, + 4095, 3223, 4034, + 4095, 3244, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3344, 3994, + 4095, 3393, 3974, + 4095, 3451, 3945, + 4095, 3520, 3902, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3778, 3553, + 0, 387, 587, + 0, 410, 561, + 0, 440, 523, + 0, 477, 468, + 0, 523, 381, + 0, 577, 231, + 0, 641, 0, + 0, 714, 0, + 0, 797, 0, + 0, 888, 0, + 0, 987, 0, + 0, 1093, 0, + 0, 1204, 0, + 0, 1320, 0, + 0, 1439, 0, + 0, 1562, 0, + 0, 1687, 0, + 0, 1813, 0, + 0, 1941, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 395, 624, + 0, 418, 600, + 0, 448, 565, + 0, 484, 515, + 0, 529, 437, + 0, 583, 307, + 0, 646, 42, + 0, 718, 0, + 0, 800, 0, + 0, 891, 0, + 0, 989, 0, + 0, 1094, 0, + 0, 1205, 0, + 0, 1321, 0, + 0, 1440, 0, + 0, 1562, 0, + 0, 1687, 0, + 0, 1813, 0, + 0, 1941, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 406, 669, + 0, 428, 647, + 0, 457, 616, + 0, 493, 571, + 0, 537, 503, + 0, 590, 393, + 0, 652, 186, + 0, 724, 0, + 0, 805, 0, + 0, 894, 0, + 0, 992, 0, + 0, 1097, 0, + 0, 1207, 0, + 0, 1322, 0, + 0, 1441, 0, + 0, 1563, 0, + 0, 1688, 0, + 0, 1814, 0, + 0, 1942, 0, + 0, 2070, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 247, 420, 722, + 170, 442, 703, + 41, 470, 676, + 0, 505, 637, + 0, 547, 579, + 0, 599, 487, + 0, 660, 327, + 0, 731, 0, + 0, 811, 0, + 0, 899, 0, + 0, 996, 0, + 0, 1100, 0, + 0, 1210, 0, + 0, 1324, 0, + 0, 1443, 0, + 0, 1564, 0, + 0, 1688, 0, + 0, 1815, 0, + 0, 1942, 0, + 0, 2071, 0, + 0, 2200, 0, + 0, 2330, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2986, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 519, 438, 786, + 479, 459, 769, + 418, 486, 745, + 322, 520, 712, + 149, 561, 663, + 0, 611, 589, + 0, 671, 465, + 0, 740, 219, + 0, 818, 0, + 0, 906, 0, + 0, 1001, 0, + 0, 1104, 0, + 0, 1213, 0, + 0, 1327, 0, + 0, 1445, 0, + 0, 1566, 0, + 0, 1690, 0, + 0, 1815, 0, + 0, 1943, 0, + 0, 2071, 0, + 0, 2201, 0, + 0, 2331, 0, + 0, 2461, 0, + 0, 2592, 0, + 0, 2723, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 734, 461, 858, + 709, 481, 844, + 673, 507, 824, + 621, 539, 797, + 540, 579, 756, + 402, 627, 697, + 110, 685, 602, + 0, 752, 434, + 0, 828, 18, + 0, 914, 0, + 0, 1008, 0, + 0, 1109, 0, + 0, 1217, 0, + 0, 1330, 0, + 0, 1447, 0, + 0, 1568, 0, + 0, 1691, 0, + 0, 1817, 0, + 0, 1944, 0, + 0, 2072, 0, + 0, 2201, 0, + 0, 2331, 0, + 0, 2462, 0, + 0, 2592, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 919, 490, 940, + 903, 509, 929, + 880, 533, 912, + 847, 563, 889, + 800, 601, 857, + 727, 647, 810, + 607, 703, 738, + 373, 767, 619, + 0, 842, 388, + 0, 925, 0, + 0, 1017, 0, + 0, 1116, 0, + 0, 1223, 0, + 0, 1334, 0, + 0, 1451, 0, + 0, 1570, 0, + 0, 1693, 0, + 0, 1818, 0, + 0, 1945, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1087, 526, 1031, + 1076, 544, 1021, + 1061, 566, 1008, + 1039, 594, 990, + 1008, 630, 964, + 964, 673, 927, + 896, 726, 872, + 787, 787, 787, + 582, 859, 641, + 0, 939, 318, + 0, 1029, 0, + 0, 1126, 0, + 0, 1230, 0, + 0, 1340, 0, + 0, 1455, 0, + 0, 1574, 0, + 0, 1696, 0, + 0, 1820, 0, + 0, 1946, 0, + 0, 2074, 0, + 0, 2203, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1245, 570, 1130, + 1237, 586, 1122, + 1226, 607, 1111, + 1211, 633, 1097, + 1190, 665, 1076, + 1161, 706, 1048, + 1118, 755, 1006, + 1055, 813, 945, + 952, 880, 846, + 765, 958, 669, + 245, 1044, 205, + 0, 1138, 0, + 0, 1240, 0, + 0, 1348, 0, + 0, 1461, 0, + 0, 1578, 0, + 0, 1699, 0, + 0, 1823, 0, + 0, 1948, 0, + 0, 2075, 0, + 0, 2204, 0, + 0, 2333, 0, + 0, 2463, 0, + 0, 2594, 0, + 0, 2724, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1395, 623, 1235, + 1389, 638, 1229, + 1381, 656, 1220, + 1371, 679, 1209, + 1356, 709, 1193, + 1336, 746, 1171, + 1308, 791, 1140, + 1267, 845, 1095, + 1205, 908, 1026, + 1107, 981, 915, + 932, 1063, 703, + 477, 1154, 0, + 0, 1253, 0, + 0, 1358, 0, + 0, 1469, 0, + 0, 1585, 0, + 0, 1704, 0, + 0, 1826, 0, + 0, 1951, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1540, 686, 1346, + 1536, 698, 1341, + 1530, 715, 1334, + 1522, 735, 1326, + 1512, 762, 1313, + 1498, 794, 1297, + 1478, 835, 1273, + 1450, 884, 1240, + 1410, 943, 1191, + 1351, 1011, 1116, + 1256, 1088, 993, + 1088, 1174, 745, + 672, 1269, 0, + 0, 1371, 0, + 0, 1479, 0, + 0, 1593, 0, + 0, 1710, 0, + 0, 1831, 0, + 0, 1955, 0, + 0, 2080, 0, + 0, 2207, 0, + 0, 2336, 0, + 0, 2465, 0, + 0, 2595, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1681, 758, 1461, + 1678, 769, 1458, + 1674, 783, 1453, + 1669, 801, 1446, + 1661, 823, 1436, + 1651, 852, 1424, + 1637, 888, 1406, + 1618, 932, 1381, + 1590, 985, 1346, + 1551, 1047, 1295, + 1492, 1119, 1215, + 1400, 1200, 1079, + 1237, 1290, 797, + 846, 1388, 0, + 0, 1493, 0, + 0, 1603, 0, + 0, 1718, 0, + 0, 1837, 0, + 0, 1959, 0, + 0, 2084, 0, + 0, 2210, 0, + 0, 2338, 0, + 0, 2467, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1820, 840, 1581, + 1818, 849, 1578, + 1815, 860, 1574, + 1811, 875, 1569, + 1806, 895, 1562, + 1798, 920, 1552, + 1788, 951, 1539, + 1774, 989, 1521, + 1755, 1036, 1495, + 1728, 1092, 1458, + 1689, 1158, 1404, + 1632, 1233, 1319, + 1541, 1317, 1174, + 1382, 1410, 857, + 1007, 1510, 0, + 0, 1617, 0, + 0, 1729, 0, + 0, 1846, 0, + 0, 1966, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1958, 930, 1703, + 1956, 937, 1701, + 1954, 947, 1698, + 1951, 959, 1694, + 1947, 976, 1689, + 1941, 996, 1681, + 1934, 1023, 1671, + 1924, 1056, 1658, + 1910, 1097, 1639, + 1891, 1146, 1613, + 1865, 1205, 1575, + 1826, 1273, 1518, + 1769, 1351, 1430, + 1679, 1437, 1277, + 1523, 1532, 927, + 1160, 1635, 0, + 0, 1743, 0, + 0, 1856, 0, + 0, 1974, 0, + 0, 2095, 0, + 0, 2219, 0, + 0, 2344, 0, + 0, 2471, 0, + 0, 2600, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2094, 1028, 1828, + 2092, 1034, 1826, + 2091, 1042, 1824, + 2088, 1052, 1821, + 2086, 1065, 1817, + 2082, 1082, 1811, + 2076, 1104, 1804, + 2069, 1132, 1794, + 2059, 1167, 1780, + 2045, 1210, 1761, + 2026, 1261, 1733, + 2000, 1322, 1695, + 1962, 1392, 1637, + 1905, 1472, 1545, + 1816, 1561, 1385, + 1662, 1657, 1007, + 1307, 1761, 0, + 0, 1870, 0, + 0, 1985, 0, + 0, 2103, 0, + 0, 2225, 0, + 0, 2349, 0, + 0, 2475, 0, + 0, 2603, 0, + 0, 2731, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2228, 1133, 1954, + 2228, 1138, 1953, + 2226, 1144, 1951, + 2225, 1152, 1949, + 2223, 1163, 1946, + 2220, 1176, 1942, + 2216, 1194, 1936, + 2210, 1217, 1929, + 2203, 1246, 1918, + 2193, 1282, 1904, + 2180, 1327, 1885, + 2161, 1380, 1857, + 2134, 1442, 1817, + 2096, 1514, 1758, + 2040, 1596, 1665, + 1952, 1686, 1499, + 1799, 1784, 1095, + 1449, 1888, 0, + 0, 1999, 0, + 0, 2114, 0, + 0, 2233, 0, + 0, 2356, 0, + 0, 2480, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2863, 0, + 0, 2992, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2363, 1243, 2082, + 2362, 1247, 2081, + 2361, 1252, 2080, + 2360, 1258, 2078, + 2358, 1267, 2076, + 2356, 1278, 2073, + 2353, 1292, 2068, + 2349, 1311, 2063, + 2344, 1335, 2055, + 2337, 1365, 2045, + 2327, 1402, 2031, + 2313, 1447, 2011, + 2294, 1502, 1983, + 2268, 1565, 1942, + 2230, 1639, 1882, + 2174, 1721, 1787, + 2087, 1813, 1617, + 1934, 1912, 1191, + 1589, 2017, 0, + 0, 2129, 0, + 0, 2244, 0, + 0, 2364, 0, + 0, 2486, 0, + 0, 2611, 0, + 0, 2738, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3124, 0, + 0, 3255, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2496, 1359, 2211, + 2496, 1362, 2210, + 2495, 1365, 2209, + 2494, 1370, 2208, + 2493, 1377, 2206, + 2491, 1386, 2204, + 2489, 1397, 2201, + 2486, 1412, 2196, + 2482, 1431, 2191, + 2477, 1455, 2183, + 2470, 1486, 2173, + 2460, 1524, 2158, + 2446, 1570, 2138, + 2428, 1626, 2110, + 2402, 1691, 2069, + 2364, 1765, 2008, + 2308, 1849, 1911, + 2221, 1941, 1738, + 2069, 2041, 1295, + 1727, 2147, 0, + 0, 2259, 0, + 0, 2375, 0, + 0, 2495, 0, + 0, 2618, 0, + 0, 2743, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3648, 0, + 2630, 1478, 2340, + 2629, 1480, 2340, + 2629, 1483, 2339, + 2628, 1487, 2338, + 2627, 1492, 2337, + 2626, 1499, 2335, + 2624, 1508, 2333, + 2622, 1519, 2330, + 2619, 1535, 2326, + 2615, 1554, 2320, + 2610, 1579, 2312, + 2603, 1610, 2302, + 2593, 1649, 2287, + 2579, 1696, 2267, + 2561, 1752, 2238, + 2535, 1818, 2197, + 2497, 1893, 2136, + 2441, 1977, 2038, + 2354, 2070, 1861, + 2203, 2170, 1404, + 1864, 2277, 0, + 0, 2389, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 2763, 1600, 2471, + 2762, 1602, 2470, + 2762, 1604, 2470, + 2761, 1607, 2469, + 2761, 1611, 2468, + 2760, 1616, 2467, + 2759, 1623, 2465, + 2757, 1632, 2463, + 2755, 1644, 2460, + 2752, 1659, 2455, + 2748, 1679, 2450, + 2743, 1704, 2442, + 2735, 1736, 2431, + 2726, 1775, 2417, + 2712, 1823, 2396, + 2694, 1880, 2368, + 2667, 1946, 2326, + 2630, 2022, 2264, + 2574, 2107, 2165, + 2487, 2200, 1987, + 2337, 2301, 1518, + 1999, 2408, 0, + 0, 2520, 0, + 0, 2637, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 2895, 1725, 2601, + 2895, 1726, 2601, + 2895, 1728, 2601, + 2894, 1730, 2600, + 2894, 1733, 2599, + 2893, 1737, 2599, + 2892, 1742, 2597, + 2891, 1749, 2595, + 2890, 1758, 2593, + 2887, 1770, 2590, + 2884, 1786, 2586, + 2881, 1806, 2580, + 2875, 1832, 2572, + 2868, 1864, 2561, + 2858, 1903, 2547, + 2845, 1951, 2526, + 2826, 2008, 2498, + 2800, 2075, 2456, + 2763, 2151, 2394, + 2707, 2237, 2294, + 2620, 2330, 2114, + 2470, 2431, 1637, + 2133, 2539, 0, + 0, 2652, 0, + 0, 2769, 0, + 0, 2889, 0, + 0, 3012, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3028, 1851, 2733, + 3028, 1852, 2732, + 3027, 1853, 2732, + 3027, 1855, 2732, + 3027, 1857, 2731, + 3026, 1860, 2730, + 3026, 1864, 2729, + 3025, 1870, 2728, + 3024, 1877, 2726, + 3022, 1886, 2724, + 3020, 1898, 2721, + 3017, 1914, 2717, + 3013, 1934, 2711, + 3008, 1960, 2703, + 3000, 1992, 2692, + 2991, 2032, 2677, + 2977, 2080, 2657, + 2959, 2138, 2628, + 2933, 2205, 2586, + 2895, 2282, 2524, + 2840, 2367, 2424, + 2753, 2461, 2243, + 2603, 2562, 1758, + 2267, 2670, 0, + 0, 2783, 0, + 0, 2900, 0, + 0, 3021, 0, + 0, 3144, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 3160, 1979, 2864, + 3160, 1979, 2864, + 3160, 1980, 2863, + 3160, 1982, 2863, + 3160, 1983, 2863, + 3159, 1986, 2862, + 3159, 1989, 2861, + 3158, 1993, 2861, + 3157, 1998, 2859, + 3156, 2005, 2857, + 3154, 2015, 2855, + 3152, 2027, 2852, + 3149, 2043, 2848, + 3145, 2063, 2842, + 3140, 2089, 2834, + 3133, 2122, 2823, + 3123, 2162, 2809, + 3110, 2210, 2788, + 3091, 2268, 2759, + 3065, 2335, 2717, + 3028, 2412, 2654, + 2972, 2498, 2554, + 2886, 2592, 2372, + 2736, 2694, 1882, + 2401, 2802, 0, + 0, 2915, 0, + 0, 3032, 0, + 0, 3153, 0, + 0, 3276, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 3293, 2107, 2995, + 3293, 2108, 2995, + 3292, 2109, 2995, + 3292, 2110, 2995, + 3292, 2111, 2995, + 3292, 2113, 2994, + 3291, 2115, 2994, + 3291, 2118, 2993, + 3290, 2122, 2992, + 3289, 2128, 2991, + 3288, 2135, 2989, + 3287, 2144, 2986, + 3284, 2157, 2983, + 3282, 2173, 2979, + 3278, 2193, 2973, + 3272, 2219, 2965, + 3265, 2252, 2955, + 3255, 2292, 2940, + 3242, 2341, 2919, + 3223, 2399, 2890, + 3197, 2466, 2848, + 3160, 2543, 2785, + 3104, 2629, 2685, + 3018, 2724, 2502, + 2868, 2825, 2008, + 2534, 2933, 0, + 0, 3046, 0, + 0, 3164, 0, + 0, 3285, 0, + 0, 3408, 0, + 0, 3534, 0, + 0, 3661, 0, + 3425, 2237, 3127, + 3425, 2238, 3127, + 3425, 2238, 3127, + 3425, 2239, 3127, + 3425, 2240, 3126, + 3424, 2241, 3126, + 3424, 2243, 3126, + 3424, 2245, 3125, + 3423, 2248, 3124, + 3423, 2252, 3123, + 3422, 2258, 3122, + 3420, 2265, 3120, + 3419, 2275, 3118, + 3417, 2287, 3115, + 3414, 2303, 3111, + 3410, 2323, 3105, + 3405, 2350, 3097, + 3397, 2382, 3086, + 3388, 2423, 3071, + 3374, 2472, 3051, + 3356, 2530, 3022, + 3330, 2597, 2980, + 3292, 2675, 2917, + 3237, 2761, 2816, + 3150, 2855, 2633, + 3001, 2957, 2136, + 2666, 3065, 0, + 0, 3178, 0, + 0, 3296, 0, + 0, 3417, 0, + 0, 3540, 0, + 0, 3666, 0, + 3557, 2367, 3259, + 3557, 2368, 3259, + 3557, 2368, 3259, + 3557, 2369, 3259, + 3557, 2369, 3258, + 3557, 2370, 3258, + 3557, 2372, 3258, + 3556, 2373, 3257, + 3556, 2376, 3257, + 3555, 2379, 3256, + 3555, 2383, 3255, + 3554, 2389, 3254, + 3553, 2396, 3252, + 3551, 2405, 3250, + 3549, 2418, 3247, + 3546, 2434, 3242, + 3542, 2454, 3236, + 3537, 2480, 3229, + 3530, 2513, 3218, + 3520, 2554, 3203, + 3506, 2603, 3182, + 3488, 2661, 3153, + 3462, 2729, 3111, + 3424, 2806, 3048, + 3369, 2892, 2947, + 3283, 2987, 2763, + 3133, 3089, 2264, + 2799, 3197, 0, + 0, 3310, 0, + 0, 3428, 0, + 0, 3548, 0, + 0, 3672, 0, + 3689, 2498, 3391, + 3689, 2498, 3391, + 3689, 2499, 3391, + 3689, 2499, 3390, + 3689, 2500, 3390, + 3689, 2500, 3390, + 3689, 2501, 3390, + 3689, 2503, 3390, + 3688, 2504, 3389, + 3688, 2507, 3389, + 3688, 2510, 3388, + 3687, 2514, 3387, + 3686, 2520, 3386, + 3685, 2527, 3384, + 3683, 2536, 3382, + 3681, 2549, 3378, + 3678, 2565, 3374, + 3674, 2585, 3368, + 3669, 2612, 3360, + 3662, 2644, 3350, + 3652, 2685, 3335, + 3639, 2734, 3314, + 3620, 2792, 3285, + 3594, 2860, 3243, + 3557, 2938, 3180, + 3501, 3024, 3079, + 3415, 3119, 2895, + 3265, 3221, 2394, + 2932, 3329, 0, + 0, 3442, 0, + 0, 3560, 0, + 0, 3681, 0, + 3822, 2629, 3523, + 3822, 2629, 3523, + 3822, 2630, 3523, + 3822, 2630, 3522, + 3821, 2630, 3522, + 3821, 2631, 3522, + 3821, 2632, 3522, + 3821, 2633, 3522, + 3821, 2634, 3522, + 3821, 2636, 3521, + 3820, 2638, 3521, + 3820, 2641, 3520, + 3819, 2645, 3519, + 3818, 2651, 3518, + 3817, 2658, 3516, + 3815, 2668, 3513, + 3813, 2680, 3510, + 3810, 2696, 3506, + 3806, 2717, 3500, + 3801, 2743, 3492, + 3794, 2776, 3481, + 3784, 2817, 3467, + 3771, 2866, 3446, + 3752, 2924, 3417, + 3726, 2992, 3375, + 3689, 3069, 3312, + 3633, 3156, 3210, + 3547, 3251, 3026, + 3398, 3353, 2524, + 3064, 3461, 0, + 0, 3574, 0, + 0, 3692, 0, + 3954, 2760, 3655, + 3954, 2761, 3655, + 3954, 2761, 3654, + 3954, 2761, 3654, + 3954, 2761, 3654, + 3954, 2762, 3654, + 3953, 2762, 3654, + 3953, 2763, 3654, + 3953, 2764, 3654, + 3953, 2765, 3653, + 3953, 2767, 3653, + 3952, 2769, 3652, + 3952, 2773, 3652, + 3951, 2777, 3651, + 3950, 2782, 3649, + 3949, 2790, 3648, + 3947, 2799, 3645, + 3945, 2812, 3642, + 3942, 2828, 3638, + 3939, 2848, 3632, + 3933, 2875, 3624, + 3926, 2908, 3613, + 3916, 2948, 3598, + 3903, 2997, 3578, + 3884, 3056, 3549, + 3858, 3124, 3507, + 3821, 3201, 3443, + 3766, 3288, 3342, + 3679, 3383, 3158, + 3530, 3485, 2655, + 3196, 3593, 0, + 0, 3706, 0, + 4086, 2892, 3787, + 4086, 2892, 3787, + 4086, 2892, 3787, + 4086, 2892, 3786, + 4086, 2893, 3786, + 4086, 2893, 3786, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4086, 2895, 3786, + 4085, 2896, 3786, + 4085, 2897, 3785, + 4085, 2899, 3785, + 4084, 2901, 3784, + 4084, 2904, 3784, + 4083, 2908, 3783, + 4082, 2914, 3781, + 4081, 2921, 3780, + 4080, 2931, 3777, + 4077, 2943, 3774, + 4075, 2959, 3770, + 4071, 2980, 3764, + 4065, 3006, 3756, + 4058, 3039, 3745, + 4048, 3080, 3730, + 4035, 3129, 3710, + 4016, 3188, 3681, + 3990, 3256, 3639, + 3953, 3333, 3575, + 3898, 3420, 3474, + 3811, 3515, 3289, + 3662, 3617, 2786, + 3329, 3725, 0, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3024, 3918, + 4095, 3024, 3918, + 4095, 3025, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3029, 3917, + 4095, 3030, 3917, + 4095, 3033, 3916, + 4095, 3036, 3916, + 4095, 3040, 3915, + 4095, 3046, 3913, + 4095, 3053, 3912, + 4095, 3062, 3909, + 4095, 3075, 3906, + 4095, 3091, 3902, + 4095, 3112, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3212, 3862, + 4095, 3261, 3842, + 4095, 3320, 3813, + 4095, 3388, 3771, + 4085, 3465, 3707, + 4030, 3552, 3606, + 3943, 3647, 3421, + 3794, 3749, 2917, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3155, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4050, + 4095, 3156, 4050, + 4095, 3157, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3161, 4049, + 4095, 3162, 4049, + 4095, 3165, 4048, + 4095, 3168, 4048, + 4095, 3172, 4047, + 4095, 3177, 4045, + 4095, 3185, 4044, + 4095, 3194, 4041, + 4095, 3207, 4038, + 4095, 3223, 4034, + 4095, 3244, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3344, 3994, + 4095, 3393, 3974, + 4095, 3452, 3945, + 4095, 3520, 3903, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3779, 3553, + 0, 494, 709, + 0, 513, 690, + 0, 537, 662, + 0, 567, 621, + 0, 604, 561, + 0, 650, 466, + 0, 705, 295, + 0, 770, 0, + 0, 843, 0, + 0, 927, 0, + 0, 1018, 0, + 0, 1118, 0, + 0, 1223, 0, + 0, 1335, 0, + 0, 1451, 0, + 0, 1571, 0, + 0, 1693, 0, + 0, 1818, 0, + 0, 1945, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 500, 738, + 0, 519, 719, + 0, 543, 693, + 0, 572, 655, + 0, 610, 600, + 0, 655, 513, + 0, 709, 363, + 0, 773, 25, + 0, 846, 0, + 0, 929, 0, + 0, 1020, 0, + 0, 1119, 0, + 0, 1225, 0, + 0, 1336, 0, + 0, 1452, 0, + 0, 1571, 0, + 0, 1694, 0, + 0, 1819, 0, + 0, 1945, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 509, 773, + 0, 527, 756, + 0, 550, 732, + 0, 580, 697, + 0, 616, 647, + 0, 661, 569, + 0, 715, 440, + 0, 778, 174, + 0, 850, 0, + 0, 932, 0, + 0, 1023, 0, + 0, 1121, 0, + 0, 1227, 0, + 0, 1337, 0, + 0, 1453, 0, + 0, 1572, 0, + 0, 1694, 0, + 0, 1819, 0, + 0, 1946, 0, + 0, 2073, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 66, 520, 816, + 0, 538, 801, + 0, 561, 779, + 0, 589, 748, + 0, 625, 703, + 0, 669, 635, + 0, 722, 525, + 0, 784, 318, + 0, 856, 0, + 0, 937, 0, + 0, 1027, 0, + 0, 1124, 0, + 0, 1229, 0, + 0, 1339, 0, + 0, 1454, 0, + 0, 1573, 0, + 0, 1695, 0, + 0, 1820, 0, + 0, 1946, 0, + 0, 2074, 0, + 0, 2202, 0, + 0, 2332, 0, + 0, 2462, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3118, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 429, 534, 868, + 379, 552, 854, + 302, 574, 835, + 173, 602, 808, + 0, 637, 769, + 0, 680, 711, + 0, 731, 620, + 0, 792, 459, + 0, 863, 78, + 0, 943, 0, + 0, 1031, 0, + 0, 1128, 0, + 0, 1232, 0, + 0, 1342, 0, + 0, 1456, 0, + 0, 1575, 0, + 0, 1696, 0, + 0, 1821, 0, + 0, 1947, 0, + 0, 2074, 0, + 0, 2203, 0, + 0, 2332, 0, + 0, 2463, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2855, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 680, 553, 930, + 652, 570, 918, + 611, 591, 901, + 550, 618, 878, + 454, 652, 844, + 281, 693, 796, + 0, 743, 721, + 0, 803, 597, + 0, 872, 351, + 0, 950, 0, + 0, 1038, 0, + 0, 1133, 0, + 0, 1236, 0, + 0, 1345, 0, + 0, 1459, 0, + 0, 1577, 0, + 0, 1698, 0, + 0, 1822, 0, + 0, 1948, 0, + 0, 2075, 0, + 0, 2203, 0, + 0, 2333, 0, + 0, 2463, 0, + 0, 2593, 0, + 0, 2724, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 884, 577, 1001, + 866, 593, 990, + 841, 613, 976, + 806, 639, 956, + 753, 671, 929, + 672, 711, 889, + 534, 759, 829, + 243, 817, 734, + 0, 884, 566, + 0, 960, 150, + 0, 1046, 0, + 0, 1140, 0, + 0, 1241, 0, + 0, 1349, 0, + 0, 1462, 0, + 0, 1579, 0, + 0, 1700, 0, + 0, 1823, 0, + 0, 1949, 0, + 0, 2076, 0, + 0, 2204, 0, + 0, 2333, 0, + 0, 2463, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1063, 607, 1081, + 1051, 622, 1072, + 1035, 641, 1061, + 1012, 665, 1044, + 979, 696, 1022, + 932, 733, 989, + 859, 780, 942, + 739, 835, 870, + 505, 899, 751, + 0, 974, 520, + 0, 1057, 0, + 0, 1149, 0, + 0, 1249, 0, + 0, 1355, 0, + 0, 1466, 0, + 0, 1583, 0, + 0, 1702, 0, + 0, 1825, 0, + 0, 1950, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1228, 644, 1170, + 1219, 658, 1163, + 1208, 676, 1153, + 1193, 698, 1140, + 1171, 727, 1122, + 1140, 762, 1096, + 1096, 805, 1059, + 1029, 858, 1005, + 919, 919, 919, + 715, 991, 773, + 63, 1071, 450, + 0, 1161, 0, + 0, 1258, 0, + 0, 1362, 0, + 0, 1472, 0, + 0, 1587, 0, + 0, 1706, 0, + 0, 1828, 0, + 0, 1952, 0, + 0, 2078, 0, + 0, 2206, 0, + 0, 2335, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1383, 690, 1267, + 1377, 702, 1262, + 1369, 718, 1254, + 1358, 739, 1243, + 1343, 765, 1229, + 1322, 798, 1208, + 1293, 838, 1180, + 1250, 887, 1139, + 1187, 945, 1077, + 1084, 1013, 978, + 897, 1090, 801, + 377, 1176, 337, + 0, 1270, 0, + 0, 1372, 0, + 0, 1480, 0, + 0, 1593, 0, + 0, 1711, 0, + 0, 1831, 0, + 0, 1955, 0, + 0, 2080, 0, + 0, 2208, 0, + 0, 2336, 0, + 0, 2465, 0, + 0, 2595, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1531, 745, 1371, + 1527, 756, 1367, + 1521, 770, 1361, + 1513, 788, 1352, + 1503, 812, 1341, + 1488, 841, 1325, + 1468, 878, 1303, + 1440, 923, 1272, + 1399, 977, 1227, + 1337, 1040, 1158, + 1239, 1113, 1047, + 1064, 1195, 835, + 609, 1286, 120, + 0, 1385, 0, + 0, 1490, 0, + 0, 1601, 0, + 0, 1717, 0, + 0, 1836, 0, + 0, 1958, 0, + 0, 2083, 0, + 0, 2210, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1675, 809, 1481, + 1672, 818, 1478, + 1668, 831, 1473, + 1662, 847, 1466, + 1655, 867, 1458, + 1644, 894, 1445, + 1630, 927, 1429, + 1610, 967, 1405, + 1582, 1016, 1372, + 1542, 1075, 1323, + 1483, 1143, 1249, + 1388, 1220, 1125, + 1220, 1307, 878, + 804, 1401, 0, + 0, 1503, 0, + 0, 1611, 0, + 0, 1725, 0, + 0, 1842, 0, + 0, 1963, 0, + 0, 2087, 0, + 0, 2212, 0, + 0, 2340, 0, + 0, 2468, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1816, 882, 1596, + 1813, 890, 1593, + 1810, 901, 1590, + 1806, 915, 1585, + 1801, 933, 1578, + 1793, 955, 1569, + 1783, 984, 1556, + 1769, 1020, 1538, + 1750, 1064, 1514, + 1722, 1117, 1478, + 1683, 1179, 1427, + 1625, 1251, 1347, + 1532, 1333, 1212, + 1369, 1422, 929, + 978, 1520, 0, + 0, 1625, 0, + 0, 1735, 0, + 0, 1850, 0, + 0, 1969, 0, + 0, 2092, 0, + 0, 2216, 0, + 0, 2342, 0, + 0, 2470, 0, + 0, 2599, 0, + 0, 2728, 0, + 0, 2859, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1954, 965, 1715, + 1952, 972, 1713, + 1950, 981, 1710, + 1947, 992, 1706, + 1943, 1007, 1701, + 1938, 1027, 1694, + 1930, 1052, 1684, + 1920, 1083, 1671, + 1906, 1121, 1653, + 1887, 1168, 1627, + 1860, 1224, 1590, + 1821, 1290, 1536, + 1764, 1365, 1452, + 1673, 1449, 1307, + 1514, 1542, 989, + 1139, 1642, 0, + 0, 1749, 0, + 0, 1861, 0, + 0, 1978, 0, + 0, 2098, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 2091, 1056, 1837, + 2090, 1062, 1835, + 2088, 1069, 1833, + 2086, 1079, 1830, + 2083, 1091, 1826, + 2079, 1108, 1821, + 2073, 1129, 1813, + 2066, 1155, 1803, + 2056, 1188, 1790, + 2042, 1229, 1771, + 2023, 1278, 1745, + 1997, 1337, 1707, + 1958, 1405, 1650, + 1901, 1483, 1562, + 1812, 1570, 1409, + 1655, 1664, 1059, + 1292, 1767, 0, + 0, 1875, 0, + 0, 1988, 0, + 0, 2106, 0, + 0, 2227, 0, + 0, 2351, 0, + 0, 2476, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2227, 1156, 1961, + 2226, 1160, 1960, + 2224, 1166, 1958, + 2223, 1174, 1956, + 2221, 1184, 1953, + 2218, 1197, 1949, + 2214, 1214, 1943, + 2208, 1236, 1936, + 2201, 1264, 1926, + 2191, 1299, 1912, + 2177, 1342, 1893, + 2158, 1393, 1866, + 2132, 1454, 1827, + 2094, 1524, 1769, + 2037, 1604, 1678, + 1948, 1693, 1517, + 1794, 1789, 1139, + 1439, 1893, 0, + 0, 2002, 0, + 0, 2117, 0, + 0, 2235, 0, + 0, 2357, 0, + 0, 2481, 0, + 0, 2607, 0, + 0, 2735, 0, + 0, 2863, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3647, 0, + 2361, 1261, 2087, + 2361, 1265, 2086, + 2360, 1270, 2085, + 2358, 1276, 2083, + 2357, 1284, 2081, + 2355, 1295, 2078, + 2352, 1309, 2074, + 2348, 1327, 2068, + 2342, 1349, 2061, + 2335, 1378, 2050, + 2325, 1415, 2036, + 2312, 1459, 2017, + 2293, 1512, 1989, + 2266, 1574, 1949, + 2228, 1646, 1890, + 2172, 1728, 1797, + 2084, 1818, 1631, + 1931, 1916, 1227, + 1581, 2021, 0, + 0, 2131, 0, + 0, 2246, 0, + 0, 2365, 0, + 0, 2488, 0, + 0, 2612, 0, + 0, 2738, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2495, 1373, 2215, + 2495, 1376, 2214, + 2494, 1379, 2213, + 2493, 1384, 2212, + 2492, 1391, 2210, + 2490, 1399, 2208, + 2488, 1410, 2205, + 2485, 1424, 2201, + 2481, 1443, 2195, + 2476, 1467, 2187, + 2469, 1497, 2177, + 2459, 1534, 2163, + 2445, 1579, 2143, + 2427, 1634, 2115, + 2400, 1698, 2074, + 2362, 1771, 2014, + 2306, 1854, 1919, + 2219, 1945, 1749, + 2066, 2044, 1323, + 1721, 2149, 0, + 0, 2261, 0, + 0, 2376, 0, + 0, 2496, 0, + 0, 2619, 0, + 0, 2743, 0, + 0, 2870, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3649, 0, + 2629, 1489, 2343, + 2628, 1491, 2343, + 2628, 1494, 2342, + 2627, 1497, 2341, + 2626, 1503, 2340, + 2625, 1509, 2338, + 2623, 1518, 2336, + 2621, 1529, 2333, + 2618, 1544, 2329, + 2614, 1563, 2323, + 2609, 1588, 2315, + 2602, 1618, 2305, + 2592, 1656, 2290, + 2579, 1703, 2270, + 2560, 1758, 2242, + 2534, 1823, 2201, + 2496, 1897, 2140, + 2440, 1981, 2043, + 2353, 2073, 1870, + 2201, 2173, 1427, + 1859, 2279, 0, + 0, 2391, 0, + 0, 2507, 0, + 0, 2627, 0, + 0, 2750, 0, + 0, 2875, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 2762, 1608, 2473, + 2762, 1610, 2473, + 2761, 1612, 2472, + 2761, 1615, 2471, + 2760, 1619, 2470, + 2759, 1624, 2469, + 2758, 1631, 2467, + 2756, 1640, 2465, + 2754, 1652, 2462, + 2751, 1667, 2458, + 2747, 1686, 2452, + 2742, 1711, 2444, + 2735, 1742, 2434, + 2725, 1781, 2419, + 2712, 1828, 2399, + 2693, 1884, 2370, + 2667, 1950, 2329, + 2629, 2025, 2268, + 2573, 2109, 2170, + 2486, 2202, 1993, + 2335, 2302, 1536, + 1996, 2409, 0, + 0, 2521, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 2895, 1731, 2603, + 2895, 1732, 2603, + 2894, 1734, 2602, + 2894, 1736, 2602, + 2893, 1739, 2601, + 2893, 1743, 2600, + 2892, 1748, 2599, + 2891, 1755, 2597, + 2889, 1764, 2595, + 2887, 1776, 2592, + 2884, 1791, 2587, + 2880, 1811, 2582, + 2875, 1836, 2574, + 2868, 1868, 2563, + 2858, 1907, 2549, + 2844, 1955, 2528, + 2826, 2012, 2500, + 2800, 2078, 2458, + 2762, 2154, 2396, + 2706, 2239, 2298, + 2619, 2332, 2119, + 2469, 2433, 1651, + 2131, 2540, 0, + 0, 2652, 0, + 0, 2769, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3028, 1856, 2734, + 3027, 1857, 2734, + 3027, 1858, 2733, + 3027, 1860, 2733, + 3027, 1862, 2732, + 3026, 1865, 2732, + 3025, 1869, 2731, + 3024, 1874, 2729, + 3023, 1881, 2728, + 3022, 1890, 2725, + 3019, 1902, 2722, + 3017, 1918, 2718, + 3013, 1938, 2712, + 3007, 1964, 2704, + 3000, 1996, 2694, + 2990, 2035, 2679, + 2977, 2083, 2658, + 2958, 2140, 2630, + 2932, 2207, 2588, + 2895, 2283, 2526, + 2839, 2369, 2426, + 2752, 2462, 2246, + 2602, 2563, 1769, + 2265, 2671, 0, + 0, 2784, 0, + 0, 2901, 0, + 0, 3021, 0, + 0, 3144, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 3160, 1982, 2865, + 3160, 1983, 2865, + 3160, 1984, 2864, + 3160, 1985, 2864, + 3159, 1987, 2864, + 3159, 1989, 2863, + 3158, 1992, 2862, + 3158, 1996, 2861, + 3157, 2002, 2860, + 3156, 2009, 2858, + 3154, 2018, 2856, + 3152, 2030, 2853, + 3149, 2046, 2849, + 3145, 2066, 2843, + 3140, 2092, 2835, + 3133, 2124, 2824, + 3123, 2164, 2810, + 3109, 2212, 2789, + 3091, 2270, 2760, + 3065, 2337, 2719, + 3027, 2414, 2656, + 2972, 2499, 2556, + 2885, 2593, 2375, + 2735, 2695, 1890, + 2399, 2802, 0, + 0, 2915, 0, + 0, 3032, 0, + 0, 3153, 0, + 0, 3276, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 3292, 2110, 2996, + 3292, 2111, 2996, + 3292, 2111, 2996, + 3292, 2112, 2996, + 3292, 2114, 2995, + 3292, 2116, 2995, + 3291, 2118, 2994, + 3291, 2121, 2994, + 3290, 2125, 2993, + 3289, 2130, 2991, + 3288, 2138, 2990, + 3286, 2147, 2987, + 3284, 2159, 2984, + 3281, 2175, 2980, + 3277, 2195, 2974, + 3272, 2221, 2966, + 3265, 2254, 2955, + 3255, 2294, 2941, + 3242, 2342, 2920, + 3223, 2400, 2891, + 3197, 2467, 2849, + 3160, 2544, 2787, + 3104, 2630, 2686, + 3018, 2724, 2504, + 2868, 2826, 2015, + 2533, 2934, 0, + 0, 3047, 0, + 0, 3164, 0, + 0, 3285, 0, + 0, 3408, 0, + 0, 3534, 0, + 0, 3661, 0, + 3425, 2239, 3128, + 3425, 2240, 3127, + 3425, 2240, 3127, + 3425, 2241, 3127, + 3424, 2242, 3127, + 3424, 2243, 3127, + 3424, 2245, 3126, + 3424, 2247, 3126, + 3423, 2250, 3125, + 3422, 2254, 3124, + 3421, 2260, 3123, + 3420, 2267, 3121, + 3419, 2276, 3119, + 3417, 2289, 3115, + 3414, 2305, 3111, + 3410, 2325, 3105, + 3404, 2351, 3097, + 3397, 2384, 3087, + 3387, 2424, 3072, + 3374, 2473, 3051, + 3355, 2531, 3022, + 3329, 2598, 2980, + 3292, 2675, 2918, + 3237, 2761, 2817, + 3150, 2856, 2634, + 3000, 2957, 2141, + 2666, 3065, 0, + 0, 3178, 0, + 0, 3296, 0, + 0, 3417, 0, + 0, 3540, 0, + 0, 3666, 0, + 3557, 2369, 3259, + 3557, 2369, 3259, + 3557, 2370, 3259, + 3557, 2370, 3259, + 3557, 2371, 3259, + 3557, 2372, 3259, + 3556, 2373, 3258, + 3556, 2375, 3258, + 3556, 2377, 3257, + 3555, 2380, 3257, + 3555, 2385, 3256, + 3554, 2390, 3254, + 3553, 2397, 3252, + 3551, 2407, 3250, + 3549, 2419, 3247, + 3546, 2435, 3243, + 3542, 2456, 3237, + 3537, 2482, 3229, + 3529, 2514, 3218, + 3520, 2555, 3203, + 3506, 2604, 3183, + 3488, 2662, 3154, + 3462, 2729, 3112, + 3424, 2807, 3049, + 3369, 2893, 2948, + 3282, 2987, 2765, + 3133, 3089, 2268, + 2799, 3197, 0, + 0, 3310, 0, + 0, 3428, 0, + 0, 3549, 0, + 0, 3672, 0, + 3689, 2499, 3391, + 3689, 2499, 3391, + 3689, 2500, 3391, + 3689, 2500, 3391, + 3689, 2501, 3391, + 3689, 2501, 3390, + 3689, 2502, 3390, + 3689, 2504, 3390, + 3688, 2506, 3390, + 3688, 2508, 3389, + 3687, 2511, 3388, + 3687, 2515, 3387, + 3686, 2521, 3386, + 3685, 2528, 3384, + 3683, 2537, 3382, + 3681, 2550, 3379, + 3678, 2566, 3374, + 3674, 2586, 3369, + 3669, 2613, 3361, + 3662, 2645, 3350, + 3652, 2686, 3335, + 3639, 2735, 3314, + 3620, 2793, 3285, + 3594, 2861, 3243, + 3556, 2938, 3180, + 3501, 3024, 3079, + 3415, 3119, 2896, + 3265, 3221, 2397, + 2931, 3329, 0, + 0, 3442, 0, + 0, 3560, 0, + 0, 3681, 0, + 3822, 2630, 3523, + 3822, 2630, 3523, + 3821, 2630, 3523, + 3821, 2631, 3523, + 3821, 2631, 3523, + 3821, 2632, 3522, + 3821, 2632, 3522, + 3821, 2633, 3522, + 3821, 2635, 3522, + 3821, 2637, 3521, + 3820, 2639, 3521, + 3820, 2642, 3520, + 3819, 2646, 3519, + 3818, 2652, 3518, + 3817, 2659, 3516, + 3815, 2668, 3514, + 3813, 2681, 3510, + 3810, 2697, 3506, + 3806, 2717, 3500, + 3801, 2744, 3492, + 3794, 2777, 3482, + 3784, 2817, 3467, + 3771, 2866, 3446, + 3752, 2925, 3417, + 3726, 2992, 3375, + 3689, 3070, 3312, + 3633, 3156, 3211, + 3547, 3251, 3027, + 3398, 3353, 2526, + 3064, 3461, 0, + 0, 3574, 0, + 0, 3692, 0, + 3954, 2761, 3655, + 3954, 2761, 3655, + 3954, 2761, 3655, + 3954, 2762, 3655, + 3954, 2762, 3655, + 3954, 2762, 3654, + 3953, 2763, 3654, + 3953, 2764, 3654, + 3953, 2765, 3654, + 3953, 2766, 3654, + 3953, 2768, 3653, + 3952, 2770, 3653, + 3952, 2773, 3652, + 3951, 2777, 3651, + 3950, 2783, 3650, + 3949, 2790, 3648, + 3947, 2800, 3645, + 3945, 2812, 3642, + 3942, 2828, 3638, + 3938, 2849, 3632, + 3933, 2875, 3624, + 3926, 2908, 3614, + 3916, 2949, 3599, + 3903, 2998, 3578, + 3884, 3056, 3549, + 3858, 3124, 3507, + 3821, 3202, 3444, + 3766, 3288, 3343, + 3679, 3383, 3158, + 3530, 3485, 2656, + 3196, 3593, 0, + 0, 3706, 0, + 4086, 2892, 3787, + 4086, 2893, 3787, + 4086, 2893, 3787, + 4086, 2893, 3787, + 4086, 2893, 3787, + 4086, 2893, 3786, + 4086, 2894, 3786, + 4086, 2894, 3786, + 4085, 2895, 3786, + 4085, 2896, 3786, + 4085, 2897, 3786, + 4085, 2899, 3785, + 4084, 2902, 3785, + 4084, 2905, 3784, + 4083, 2909, 3783, + 4082, 2914, 3782, + 4081, 2922, 3780, + 4080, 2931, 3777, + 4077, 2944, 3774, + 4075, 2960, 3770, + 4071, 2980, 3764, + 4065, 3007, 3756, + 4058, 3040, 3745, + 4048, 3080, 3731, + 4035, 3130, 3710, + 4016, 3188, 3681, + 3990, 3256, 3639, + 3953, 3333, 3575, + 3898, 3420, 3474, + 3811, 3515, 3290, + 3662, 3617, 2787, + 3328, 3725, 0, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3024, 3919, + 4095, 3025, 3919, + 4095, 3025, 3918, + 4095, 3025, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3918, + 4095, 3029, 3918, + 4095, 3031, 3917, + 4095, 3033, 3917, + 4095, 3036, 3916, + 4095, 3040, 3915, + 4095, 3046, 3914, + 4095, 3053, 3912, + 4095, 3063, 3909, + 4095, 3075, 3906, + 4095, 3091, 3902, + 4095, 3112, 3896, + 4095, 3138, 3888, + 4095, 3171, 3877, + 4095, 3212, 3863, + 4095, 3261, 3842, + 4095, 3320, 3813, + 4095, 3388, 3771, + 4085, 3465, 3707, + 4030, 3552, 3606, + 3943, 3647, 3422, + 3794, 3749, 2918, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3157, 4050, + 4095, 3157, 4050, + 4095, 3158, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3161, 4050, + 4095, 3163, 4049, + 4095, 3165, 4049, + 4095, 3168, 4048, + 4095, 3172, 4047, + 4095, 3178, 4046, + 4095, 3185, 4044, + 4095, 3195, 4041, + 4095, 3207, 4038, + 4095, 3223, 4034, + 4095, 3244, 4028, + 4095, 3270, 4020, + 4095, 3303, 4009, + 4095, 3344, 3995, + 4095, 3393, 3974, + 4095, 3452, 3945, + 4095, 3520, 3903, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3779, 3553, + 0, 606, 834, + 0, 621, 819, + 0, 640, 798, + 0, 664, 769, + 0, 695, 726, + 0, 733, 662, + 0, 779, 559, + 0, 834, 370, + 0, 899, 0, + 0, 973, 0, + 0, 1057, 0, + 0, 1149, 0, + 0, 1248, 0, + 0, 1355, 0, + 0, 1466, 0, + 0, 1583, 0, + 0, 1702, 0, + 0, 1825, 0, + 0, 1950, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3250, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 611, 856, + 0, 626, 842, + 0, 645, 822, + 0, 669, 794, + 0, 699, 753, + 0, 737, 693, + 0, 782, 598, + 0, 837, 427, + 0, 902, 2, + 0, 976, 0, + 0, 1059, 0, + 0, 1150, 0, + 0, 1250, 0, + 0, 1356, 0, + 0, 1467, 0, + 0, 1583, 0, + 0, 1703, 0, + 0, 1825, 0, + 0, 1950, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 618, 883, + 0, 632, 870, + 0, 651, 851, + 0, 675, 825, + 0, 705, 788, + 0, 742, 732, + 0, 787, 645, + 0, 841, 495, + 0, 905, 157, + 0, 979, 0, + 0, 1061, 0, + 0, 1152, 0, + 0, 1251, 0, + 0, 1357, 0, + 0, 1468, 0, + 0, 1584, 0, + 0, 1703, 0, + 0, 1826, 0, + 0, 1951, 0, + 0, 2077, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 627, 918, + 0, 641, 905, + 0, 659, 888, + 0, 682, 864, + 0, 712, 829, + 0, 748, 779, + 0, 793, 702, + 0, 847, 572, + 0, 910, 306, + 0, 983, 0, + 0, 1064, 0, + 0, 1155, 0, + 0, 1253, 0, + 0, 1359, 0, + 0, 1469, 0, + 0, 1585, 0, + 0, 1704, 0, + 0, 1827, 0, + 0, 1951, 0, + 0, 2078, 0, + 0, 2205, 0, + 0, 2334, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 271, 638, 960, + 198, 652, 948, + 78, 670, 933, + 0, 693, 911, + 0, 721, 880, + 0, 757, 835, + 0, 801, 768, + 0, 854, 657, + 0, 916, 450, + 0, 988, 0, + 0, 1069, 0, + 0, 1159, 0, + 0, 1256, 0, + 0, 1361, 0, + 0, 1471, 0, + 0, 1586, 0, + 0, 1705, 0, + 0, 1827, 0, + 0, 1952, 0, + 0, 2078, 0, + 0, 2206, 0, + 0, 2335, 0, + 0, 2464, 0, + 0, 2594, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2987, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 595, 653, 1011, + 561, 667, 1000, + 511, 684, 986, + 434, 706, 967, + 305, 734, 940, + 43, 769, 901, + 0, 812, 843, + 0, 863, 752, + 0, 924, 591, + 0, 995, 210, + 0, 1075, 0, + 0, 1164, 0, + 0, 1260, 0, + 0, 1364, 0, + 0, 1474, 0, + 0, 1588, 0, + 0, 1707, 0, + 0, 1829, 0, + 0, 1953, 0, + 0, 2079, 0, + 0, 2206, 0, + 0, 2335, 0, + 0, 2464, 0, + 0, 2595, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 832, 672, 1071, + 812, 685, 1062, + 784, 702, 1050, + 743, 723, 1033, + 682, 750, 1010, + 586, 784, 976, + 413, 825, 928, + 0, 875, 853, + 0, 935, 729, + 0, 1004, 483, + 0, 1082, 0, + 0, 1170, 0, + 0, 1265, 0, + 0, 1368, 0, + 0, 1477, 0, + 0, 1591, 0, + 0, 1709, 0, + 0, 1830, 0, + 0, 1954, 0, + 0, 2080, 0, + 0, 2207, 0, + 0, 2335, 0, + 0, 2465, 0, + 0, 2595, 0, + 0, 2725, 0, + 0, 2856, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3382, 0, + 0, 3514, 0, + 0, 3646, 0, + 1029, 697, 1140, + 1016, 709, 1133, + 998, 725, 1122, + 973, 745, 1108, + 938, 771, 1089, + 885, 803, 1061, + 804, 843, 1021, + 666, 891, 961, + 375, 949, 866, + 0, 1016, 698, + 0, 1093, 282, + 0, 1178, 0, + 0, 1272, 0, + 0, 1374, 0, + 0, 1481, 0, + 0, 1594, 0, + 0, 1711, 0, + 0, 1832, 0, + 0, 1955, 0, + 0, 2081, 0, + 0, 2208, 0, + 0, 2336, 0, + 0, 2465, 0, + 0, 2595, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1204, 728, 1220, + 1195, 739, 1213, + 1183, 754, 1205, + 1167, 773, 1193, + 1144, 797, 1176, + 1111, 828, 1154, + 1064, 866, 1121, + 991, 912, 1074, + 872, 967, 1002, + 637, 1032, 883, + 0, 1106, 652, + 0, 1189, 0, + 0, 1281, 0, + 0, 1381, 0, + 0, 1487, 0, + 0, 1599, 0, + 0, 1715, 0, + 0, 1835, 0, + 0, 1957, 0, + 0, 2082, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1366, 766, 1308, + 1360, 777, 1302, + 1352, 790, 1295, + 1340, 808, 1286, + 1325, 830, 1272, + 1303, 859, 1254, + 1272, 894, 1228, + 1228, 938, 1191, + 1161, 990, 1137, + 1052, 1052, 1052, + 847, 1123, 905, + 195, 1203, 583, + 0, 1293, 0, + 0, 1390, 0, + 0, 1494, 0, + 0, 1604, 0, + 0, 1719, 0, + 0, 1838, 0, + 0, 1960, 0, + 0, 2084, 0, + 0, 2210, 0, + 0, 2338, 0, + 0, 2467, 0, + 0, 2596, 0, + 0, 2727, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 1519, 813, 1404, + 1515, 822, 1399, + 1509, 834, 1394, + 1501, 850, 1386, + 1490, 871, 1375, + 1475, 897, 1361, + 1454, 930, 1341, + 1425, 970, 1312, + 1383, 1019, 1271, + 1319, 1077, 1209, + 1216, 1145, 1110, + 1029, 1222, 933, + 509, 1308, 469, + 0, 1402, 0, + 0, 1504, 0, + 0, 1612, 0, + 0, 1725, 0, + 0, 1843, 0, + 0, 1963, 0, + 0, 2087, 0, + 0, 2213, 0, + 0, 2340, 0, + 0, 2468, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1666, 868, 1507, + 1663, 877, 1504, + 1659, 888, 1499, + 1653, 902, 1493, + 1645, 920, 1484, + 1635, 944, 1473, + 1620, 973, 1457, + 1600, 1010, 1435, + 1572, 1055, 1404, + 1531, 1109, 1359, + 1469, 1172, 1290, + 1372, 1245, 1179, + 1196, 1327, 967, + 741, 1418, 252, + 0, 1517, 0, + 0, 1622, 0, + 0, 1733, 0, + 0, 1849, 0, + 0, 1968, 0, + 0, 2091, 0, + 0, 2215, 0, + 0, 2342, 0, + 0, 2470, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1809, 933, 1616, + 1807, 941, 1613, + 1804, 950, 1610, + 1800, 963, 1605, + 1794, 979, 1599, + 1787, 999, 1590, + 1776, 1026, 1578, + 1762, 1059, 1561, + 1742, 1099, 1537, + 1715, 1148, 1504, + 1675, 1207, 1455, + 1615, 1275, 1381, + 1520, 1352, 1257, + 1352, 1439, 1010, + 936, 1533, 0, + 0, 1635, 0, + 0, 1743, 0, + 0, 1857, 0, + 0, 1974, 0, + 0, 2095, 0, + 0, 2219, 0, + 0, 2344, 0, + 0, 2472, 0, + 0, 2600, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1949, 1008, 1730, + 1948, 1014, 1728, + 1946, 1022, 1725, + 1943, 1033, 1722, + 1938, 1047, 1717, + 1933, 1065, 1710, + 1925, 1088, 1701, + 1915, 1116, 1688, + 1901, 1152, 1670, + 1882, 1196, 1646, + 1855, 1249, 1610, + 1815, 1312, 1559, + 1757, 1383, 1479, + 1664, 1465, 1344, + 1501, 1555, 1061, + 1110, 1652, 0, + 0, 1757, 0, + 0, 1867, 0, + 0, 1983, 0, + 0, 2102, 0, + 0, 2224, 0, + 0, 2348, 0, + 0, 2474, 0, + 0, 2602, 0, + 0, 2731, 0, + 0, 2860, 0, + 0, 2991, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2087, 1092, 1849, + 2086, 1097, 1847, + 2085, 1104, 1845, + 2082, 1113, 1842, + 2079, 1124, 1838, + 2075, 1140, 1833, + 2070, 1159, 1826, + 2062, 1184, 1816, + 2052, 1215, 1803, + 2039, 1254, 1785, + 2019, 1300, 1759, + 1992, 1357, 1722, + 1954, 1422, 1668, + 1896, 1497, 1584, + 1805, 1581, 1439, + 1646, 1674, 1121, + 1271, 1774, 0, + 0, 1881, 0, + 0, 1993, 0, + 0, 2110, 0, + 0, 2230, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2224, 1184, 1970, + 2223, 1189, 1969, + 2222, 1194, 1967, + 2220, 1201, 1965, + 2218, 1211, 1962, + 2215, 1224, 1958, + 2211, 1240, 1953, + 2206, 1261, 1945, + 2198, 1287, 1936, + 2188, 1320, 1922, + 2175, 1361, 1903, + 2156, 1410, 1877, + 2129, 1469, 1839, + 2090, 1537, 1782, + 2033, 1615, 1694, + 1944, 1702, 1541, + 1787, 1797, 1191, + 1424, 1899, 0, + 0, 2007, 0, + 0, 2121, 0, + 0, 2238, 0, + 0, 2359, 0, + 0, 2483, 0, + 0, 2608, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2359, 1284, 2094, + 2359, 1288, 2093, + 2358, 1292, 2092, + 2357, 1298, 2090, + 2355, 1306, 2088, + 2353, 1316, 2085, + 2350, 1329, 2081, + 2346, 1346, 2075, + 2340, 1368, 2068, + 2333, 1396, 2058, + 2323, 1431, 2044, + 2309, 1474, 2025, + 2291, 1525, 1998, + 2264, 1586, 1959, + 2226, 1656, 1901, + 2169, 1736, 1810, + 2080, 1825, 1649, + 1926, 1921, 1271, + 1571, 2025, 0, + 0, 2135, 0, + 0, 2249, 0, + 0, 2368, 0, + 0, 2489, 0, + 0, 2613, 0, + 0, 2739, 0, + 0, 2867, 0, + 0, 2995, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2494, 1391, 2220, + 2493, 1393, 2219, + 2493, 1397, 2218, + 2492, 1402, 2217, + 2491, 1408, 2215, + 2489, 1416, 2213, + 2487, 1427, 2210, + 2484, 1441, 2206, + 2480, 1459, 2200, + 2474, 1482, 2193, + 2467, 1511, 2183, + 2457, 1547, 2168, + 2444, 1591, 2149, + 2425, 1644, 2121, + 2398, 1706, 2082, + 2361, 1779, 2022, + 2304, 1860, 1929, + 2216, 1950, 1763, + 2063, 2048, 1359, + 1714, 2153, 0, + 0, 2263, 0, + 0, 2378, 0, + 0, 2498, 0, + 0, 2620, 0, + 0, 2744, 0, + 0, 2871, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 2628, 1503, 2347, + 2627, 1505, 2347, + 2627, 1508, 2346, + 2626, 1511, 2345, + 2625, 1516, 2344, + 2624, 1523, 2342, + 2622, 1531, 2340, + 2620, 1542, 2337, + 2617, 1557, 2333, + 2613, 1575, 2327, + 2608, 1599, 2319, + 2601, 1629, 2309, + 2591, 1666, 2295, + 2577, 1711, 2275, + 2559, 1766, 2247, + 2532, 1830, 2207, + 2495, 1903, 2146, + 2438, 1986, 2051, + 2351, 2077, 1881, + 2199, 2176, 1456, + 1853, 2281, 0, + 0, 2393, 0, + 0, 2509, 0, + 0, 2628, 0, + 0, 2751, 0, + 0, 2875, 0, + 0, 3002, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3650, 0, + 2761, 1619, 2476, + 2761, 1621, 2476, + 2760, 1623, 2475, + 2760, 1626, 2474, + 2759, 1630, 2473, + 2758, 1635, 2472, + 2757, 1641, 2470, + 2756, 1650, 2468, + 2753, 1661, 2465, + 2750, 1676, 2461, + 2747, 1695, 2455, + 2741, 1720, 2447, + 2734, 1750, 2437, + 2724, 1788, 2422, + 2711, 1835, 2402, + 2692, 1890, 2374, + 2666, 1955, 2333, + 2628, 2029, 2272, + 2572, 2113, 2176, + 2485, 2205, 2002, + 2333, 2305, 1559, + 1991, 2411, 0, + 0, 2523, 0, + 0, 2639, 0, + 0, 2759, 0, + 0, 2882, 0, + 0, 3007, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3520, 0, + 0, 3651, 0, + 2894, 1739, 2605, + 2894, 1740, 2605, + 2894, 1742, 2605, + 2893, 1744, 2604, + 2893, 1747, 2603, + 2892, 1751, 2602, + 2891, 1756, 2601, + 2890, 1763, 2599, + 2888, 1772, 2597, + 2886, 1784, 2594, + 2883, 1799, 2590, + 2879, 1818, 2584, + 2874, 1843, 2576, + 2867, 1874, 2566, + 2857, 1913, 2551, + 2844, 1960, 2531, + 2825, 2016, 2502, + 2799, 2082, 2461, + 2761, 2157, 2400, + 2705, 2241, 2302, + 2618, 2334, 2125, + 2468, 2434, 1668, + 2128, 2541, 0, + 0, 2653, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 3027, 1862, 2735, + 3027, 1863, 2735, + 3027, 1864, 2735, + 3026, 1866, 2735, + 3026, 1868, 2734, + 3026, 1871, 2733, + 3025, 1875, 2732, + 3024, 1880, 2731, + 3023, 1887, 2729, + 3021, 1896, 2727, + 3019, 1908, 2724, + 3016, 1924, 2720, + 3012, 1943, 2714, + 3007, 1969, 2706, + 3000, 2000, 2695, + 2990, 2039, 2681, + 2976, 2087, 2660, + 2958, 2144, 2632, + 2932, 2210, 2590, + 2894, 2286, 2528, + 2838, 2371, 2430, + 2752, 2464, 2251, + 2601, 2565, 1783, + 2263, 2672, 0, + 0, 2784, 0, + 0, 2901, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 3160, 1987, 2866, + 3160, 1988, 2866, + 3159, 1989, 2866, + 3159, 1990, 2865, + 3159, 1992, 2865, + 3159, 1994, 2864, + 3158, 1997, 2864, + 3157, 2001, 2863, + 3157, 2006, 2861, + 3155, 2013, 2860, + 3154, 2023, 2857, + 3152, 2035, 2854, + 3149, 2050, 2850, + 3145, 2070, 2844, + 3139, 2096, 2836, + 3132, 2128, 2826, + 3122, 2167, 2811, + 3109, 2215, 2791, + 3090, 2272, 2762, + 3064, 2339, 2720, + 3027, 2415, 2658, + 2971, 2501, 2558, + 2884, 2594, 2378, + 2734, 2696, 1901, + 2397, 2803, 0, + 0, 2916, 0, + 0, 3033, 0, + 0, 3153, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 3292, 2114, 2997, + 3292, 2114, 2997, + 3292, 2115, 2997, + 3292, 2116, 2997, + 3292, 2117, 2996, + 3291, 2119, 2996, + 3291, 2121, 2995, + 3291, 2124, 2995, + 3290, 2128, 2994, + 3289, 2134, 2992, + 3288, 2141, 2990, + 3286, 2150, 2988, + 3284, 2162, 2985, + 3281, 2178, 2981, + 3277, 2198, 2975, + 3272, 2224, 2967, + 3265, 2256, 2956, + 3255, 2296, 2942, + 3241, 2344, 2921, + 3223, 2402, 2892, + 3197, 2469, 2851, + 3159, 2546, 2788, + 3104, 2631, 2688, + 3017, 2725, 2507, + 2867, 2827, 2023, + 2531, 2934, 0, + 0, 3047, 0, + 0, 3164, 0, + 0, 3285, 0, + 0, 3408, 0, + 0, 3534, 0, + 0, 3661, 0, + 3425, 2242, 3128, + 3425, 2242, 3128, + 3425, 2243, 3128, + 3424, 2244, 3128, + 3424, 2245, 3128, + 3424, 2246, 3127, + 3424, 2248, 3127, + 3423, 2250, 3126, + 3423, 2253, 3126, + 3422, 2257, 3125, + 3421, 2262, 3123, + 3420, 2270, 3122, + 3418, 2279, 3119, + 3416, 2291, 3116, + 3413, 2307, 3112, + 3410, 2327, 3106, + 3404, 2353, 3098, + 3397, 2386, 3087, + 3387, 2426, 3073, + 3374, 2474, 3052, + 3355, 2532, 3023, + 3329, 2600, 2981, + 3292, 2676, 2919, + 3236, 2762, 2818, + 3150, 2856, 2636, + 3000, 2958, 2147, + 2665, 3066, 0, + 0, 3179, 0, + 0, 3296, 0, + 0, 3417, 0, + 0, 3540, 0, + 0, 3666, 0, + 3557, 2371, 3260, + 3557, 2371, 3260, + 3557, 2372, 3260, + 3557, 2372, 3259, + 3557, 2373, 3259, + 3557, 2374, 3259, + 3556, 2375, 3259, + 3556, 2377, 3258, + 3556, 2379, 3258, + 3555, 2382, 3257, + 3554, 2387, 3256, + 3554, 2392, 3255, + 3552, 2399, 3253, + 3551, 2409, 3251, + 3549, 2421, 3247, + 3546, 2437, 3243, + 3542, 2457, 3237, + 3537, 2483, 3230, + 3529, 2516, 3219, + 3520, 2556, 3204, + 3506, 2605, 3183, + 3488, 2663, 3154, + 3461, 2730, 3113, + 3424, 2807, 3050, + 3369, 2894, 2949, + 3282, 2988, 2766, + 3133, 3090, 2273, + 2798, 3197, 0, + 0, 3311, 0, + 0, 3428, 0, + 0, 3549, 0, + 0, 3672, 0, + 3689, 2501, 3391, + 3689, 2501, 3391, + 3689, 2501, 3391, + 3689, 2502, 3391, + 3689, 2502, 3391, + 3689, 2503, 3391, + 3689, 2504, 3391, + 3689, 2505, 3390, + 3688, 2507, 3390, + 3688, 2509, 3389, + 3687, 2513, 3389, + 3687, 2517, 3388, + 3686, 2522, 3386, + 3685, 2529, 3385, + 3683, 2539, 3382, + 3681, 2551, 3379, + 3678, 2567, 3375, + 3674, 2588, 3369, + 3669, 2614, 3361, + 3662, 2646, 3350, + 3652, 2687, 3336, + 3638, 2736, 3315, + 3620, 2794, 3286, + 3594, 2862, 3244, + 3556, 2939, 3181, + 3501, 3025, 3080, + 3414, 3119, 2897, + 3265, 3221, 2400, + 2931, 3329, 0, + 0, 3442, 0, + 0, 3560, 0, + 0, 3681, 0, + 3821, 2631, 3523, + 3821, 2631, 3523, + 3821, 2632, 3523, + 3821, 2632, 3523, + 3821, 2632, 3523, + 3821, 2633, 3523, + 3821, 2634, 3523, + 3821, 2635, 3522, + 3821, 2636, 3522, + 3820, 2638, 3522, + 3820, 2640, 3521, + 3820, 2643, 3520, + 3819, 2647, 3519, + 3818, 2653, 3518, + 3817, 2660, 3516, + 3815, 2669, 3514, + 3813, 2682, 3511, + 3810, 2698, 3506, + 3806, 2718, 3501, + 3801, 2745, 3493, + 3794, 2777, 3482, + 3784, 2818, 3467, + 3771, 2867, 3447, + 3752, 2925, 3418, + 3726, 2993, 3375, + 3689, 3070, 3312, + 3633, 3157, 3211, + 3547, 3251, 3028, + 3397, 3353, 2529, + 3063, 3461, 0, + 0, 3574, 0, + 0, 3692, 0, + 3954, 2762, 3655, + 3954, 2762, 3655, + 3954, 2762, 3655, + 3954, 2762, 3655, + 3954, 2763, 3655, + 3953, 2763, 3655, + 3953, 2764, 3655, + 3953, 2765, 3654, + 3953, 2766, 3654, + 3953, 2767, 3654, + 3953, 2769, 3653, + 3952, 2771, 3653, + 3952, 2774, 3652, + 3951, 2778, 3651, + 3950, 2784, 3650, + 3949, 2791, 3648, + 3947, 2800, 3646, + 3945, 2813, 3643, + 3942, 2829, 3638, + 3938, 2850, 3632, + 3933, 2876, 3625, + 3926, 2909, 3614, + 3916, 2949, 3599, + 3903, 2998, 3578, + 3884, 3057, 3549, + 3858, 3125, 3507, + 3821, 3202, 3444, + 3765, 3288, 3343, + 3679, 3383, 3159, + 3530, 3485, 2658, + 3196, 3593, 0, + 0, 3706, 0, + 4086, 2893, 3787, + 4086, 2893, 3787, + 4086, 2893, 3787, + 4086, 2893, 3787, + 4086, 2894, 3787, + 4086, 2894, 3787, + 4086, 2894, 3787, + 4086, 2895, 3786, + 4085, 2896, 3786, + 4085, 2897, 3786, + 4085, 2898, 3786, + 4085, 2900, 3785, + 4084, 2902, 3785, + 4084, 2905, 3784, + 4083, 2909, 3783, + 4082, 2915, 3782, + 4081, 2922, 3780, + 4080, 2932, 3778, + 4077, 2944, 3774, + 4074, 2960, 3770, + 4071, 2981, 3764, + 4065, 3007, 3756, + 4058, 3040, 3746, + 4048, 3081, 3731, + 4035, 3130, 3710, + 4016, 3188, 3681, + 3990, 3256, 3639, + 3953, 3334, 3576, + 3898, 3420, 3475, + 3811, 3515, 3290, + 3662, 3617, 2788, + 3328, 3725, 0, + 4095, 3024, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3026, 3918, + 4095, 3026, 3918, + 4095, 3027, 3918, + 4095, 3028, 3918, + 4095, 3030, 3918, + 4095, 3031, 3917, + 4095, 3034, 3917, + 4095, 3037, 3916, + 4095, 3041, 3915, + 4095, 3046, 3914, + 4095, 3054, 3912, + 4095, 3063, 3910, + 4095, 3076, 3906, + 4095, 3092, 3902, + 4095, 3113, 3896, + 4095, 3139, 3888, + 4095, 3172, 3878, + 4095, 3212, 3863, + 4095, 3262, 3842, + 4095, 3320, 3813, + 4095, 3388, 3771, + 4085, 3466, 3708, + 4030, 3552, 3606, + 3943, 3647, 3422, + 3794, 3749, 2919, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3156, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3158, 4050, + 4095, 3158, 4050, + 4095, 3159, 4050, + 4095, 3160, 4050, + 4095, 3161, 4050, + 4095, 3163, 4049, + 4095, 3165, 4049, + 4095, 3168, 4048, + 4095, 3173, 4047, + 4095, 3178, 4046, + 4095, 3185, 4044, + 4095, 3195, 4041, + 4095, 3207, 4038, + 4095, 3224, 4034, + 4095, 3244, 4028, + 4095, 3271, 4020, + 4095, 3304, 4009, + 4095, 3344, 3995, + 4095, 3393, 3974, + 4095, 3452, 3945, + 4095, 3520, 3903, + 4095, 3597, 3839, + 4095, 3684, 3738, + 4076, 3779, 3554, + 0, 723, 961, + 0, 734, 949, + 0, 749, 934, + 0, 769, 912, + 0, 793, 881, + 0, 824, 837, + 0, 862, 769, + 0, 908, 660, + 0, 964, 453, + 0, 1029, 0, + 0, 1104, 0, + 0, 1187, 0, + 0, 1280, 0, + 0, 1380, 0, + 0, 1486, 0, + 0, 1598, 0, + 0, 1714, 0, + 0, 1834, 0, + 0, 1957, 0, + 0, 2082, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 727, 977, + 0, 738, 966, + 0, 753, 951, + 0, 772, 930, + 0, 796, 901, + 0, 827, 858, + 0, 865, 794, + 0, 911, 691, + 0, 966, 502, + 0, 1031, 0, + 0, 1105, 0, + 0, 1189, 0, + 0, 1281, 0, + 0, 1380, 0, + 0, 1487, 0, + 0, 1598, 0, + 0, 1715, 0, + 0, 1835, 0, + 0, 1957, 0, + 0, 2082, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 732, 998, + 0, 743, 988, + 0, 758, 974, + 0, 777, 954, + 0, 801, 926, + 0, 831, 886, + 0, 869, 825, + 0, 915, 730, + 0, 969, 560, + 0, 1034, 134, + 0, 1108, 0, + 0, 1191, 0, + 0, 1282, 0, + 0, 1382, 0, + 0, 1488, 0, + 0, 1599, 0, + 0, 1715, 0, + 0, 1835, 0, + 0, 1958, 0, + 0, 2082, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 739, 1025, + 0, 750, 1015, + 0, 764, 1002, + 0, 783, 983, + 0, 807, 957, + 0, 837, 920, + 0, 874, 864, + 0, 919, 777, + 0, 973, 627, + 0, 1037, 289, + 0, 1111, 0, + 0, 1193, 0, + 0, 1284, 0, + 0, 1383, 0, + 0, 1489, 0, + 0, 1600, 0, + 0, 1716, 0, + 0, 1836, 0, + 0, 1958, 0, + 0, 2083, 0, + 0, 2209, 0, + 0, 2337, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 0, 748, 1059, + 0, 759, 1050, + 0, 773, 1037, + 0, 791, 1020, + 0, 815, 996, + 0, 844, 962, + 0, 880, 911, + 0, 925, 834, + 0, 979, 704, + 0, 1042, 438, + 0, 1115, 0, + 0, 1197, 0, + 0, 1287, 0, + 0, 1386, 0, + 0, 1491, 0, + 0, 1602, 0, + 0, 1717, 0, + 0, 1836, 0, + 0, 1959, 0, + 0, 2083, 0, + 0, 2210, 0, + 0, 2338, 0, + 0, 2466, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3119, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 450, 760, 1100, + 403, 770, 1092, + 330, 784, 1080, + 210, 802, 1065, + 0, 825, 1043, + 0, 853, 1012, + 0, 889, 967, + 0, 933, 900, + 0, 986, 790, + 0, 1048, 582, + 0, 1120, 0, + 0, 1201, 0, + 0, 1291, 0, + 0, 1388, 0, + 0, 1493, 0, + 0, 1603, 0, + 0, 1718, 0, + 0, 1837, 0, + 0, 1960, 0, + 0, 2084, 0, + 0, 2210, 0, + 0, 2338, 0, + 0, 2467, 0, + 0, 2596, 0, + 0, 2726, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 751, 775, 1150, + 727, 785, 1143, + 693, 799, 1132, + 643, 816, 1119, + 566, 838, 1099, + 437, 866, 1072, + 175, 901, 1033, + 0, 944, 975, + 0, 995, 884, + 0, 1056, 723, + 0, 1127, 342, + 0, 1207, 0, + 0, 1296, 0, + 0, 1392, 0, + 0, 1496, 0, + 0, 1606, 0, + 0, 1720, 0, + 0, 1839, 0, + 0, 1961, 0, + 0, 2085, 0, + 0, 2211, 0, + 0, 2338, 0, + 0, 2467, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2857, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3514, 0, + 0, 3646, 0, + 978, 795, 1209, + 964, 805, 1203, + 944, 817, 1194, + 916, 834, 1182, + 875, 855, 1165, + 814, 882, 1142, + 718, 916, 1108, + 545, 957, 1060, + 108, 1008, 985, + 0, 1067, 862, + 0, 1136, 615, + 0, 1215, 0, + 0, 1302, 0, + 0, 1397, 0, + 0, 1500, 0, + 0, 1609, 0, + 0, 1723, 0, + 0, 1841, 0, + 0, 1962, 0, + 0, 2086, 0, + 0, 2212, 0, + 0, 2339, 0, + 0, 2468, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2858, 0, + 0, 2988, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1170, 820, 1278, + 1161, 829, 1273, + 1148, 841, 1265, + 1130, 857, 1255, + 1105, 877, 1240, + 1070, 903, 1221, + 1017, 935, 1193, + 936, 975, 1153, + 798, 1023, 1093, + 507, 1081, 998, + 0, 1148, 830, + 0, 1225, 414, + 0, 1310, 0, + 0, 1404, 0, + 0, 1506, 0, + 0, 1613, 0, + 0, 1726, 0, + 0, 1843, 0, + 0, 1964, 0, + 0, 2087, 0, + 0, 2213, 0, + 0, 2340, 0, + 0, 2468, 0, + 0, 2597, 0, + 0, 2727, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1343, 851, 1356, + 1336, 860, 1352, + 1327, 871, 1345, + 1316, 886, 1337, + 1299, 905, 1325, + 1276, 929, 1308, + 1244, 960, 1286, + 1196, 998, 1253, + 1123, 1044, 1206, + 1004, 1099, 1134, + 769, 1164, 1015, + 0, 1238, 784, + 0, 1321, 0, + 0, 1413, 0, + 0, 1513, 0, + 0, 1619, 0, + 0, 1731, 0, + 0, 1847, 0, + 0, 1967, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 1502, 890, 1444, + 1498, 898, 1440, + 1492, 909, 1434, + 1484, 922, 1427, + 1472, 940, 1418, + 1457, 962, 1404, + 1435, 991, 1386, + 1405, 1026, 1360, + 1360, 1070, 1323, + 1293, 1122, 1269, + 1184, 1184, 1184, + 979, 1255, 1037, + 327, 1335, 715, + 0, 1425, 0, + 0, 1522, 0, + 0, 1626, 0, + 0, 1736, 0, + 0, 1851, 0, + 0, 1970, 0, + 0, 2092, 0, + 0, 2216, 0, + 0, 2343, 0, + 0, 2470, 0, + 0, 2599, 0, + 0, 2728, 0, + 0, 2859, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1654, 938, 1539, + 1651, 945, 1536, + 1647, 954, 1532, + 1641, 967, 1526, + 1633, 982, 1518, + 1622, 1003, 1507, + 1607, 1029, 1493, + 1586, 1062, 1473, + 1557, 1102, 1444, + 1515, 1151, 1403, + 1451, 1209, 1341, + 1349, 1277, 1243, + 1161, 1354, 1065, + 641, 1440, 601, + 0, 1534, 0, + 0, 1636, 0, + 0, 1744, 0, + 0, 1857, 0, + 0, 1975, 0, + 0, 2096, 0, + 0, 2219, 0, + 0, 2345, 0, + 0, 2472, 0, + 0, 2600, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1801, 994, 1642, + 1798, 1000, 1639, + 1795, 1009, 1636, + 1791, 1020, 1631, + 1785, 1034, 1625, + 1778, 1052, 1617, + 1767, 1076, 1605, + 1752, 1105, 1589, + 1732, 1142, 1567, + 1704, 1187, 1536, + 1663, 1241, 1491, + 1601, 1304, 1423, + 1504, 1377, 1311, + 1328, 1459, 1099, + 874, 1550, 384, + 0, 1649, 0, + 0, 1754, 0, + 0, 1865, 0, + 0, 1981, 0, + 0, 2100, 0, + 0, 2223, 0, + 0, 2347, 0, + 0, 2474, 0, + 0, 2602, 0, + 0, 2731, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1943, 1060, 1750, + 1941, 1066, 1748, + 1939, 1073, 1746, + 1936, 1082, 1742, + 1932, 1095, 1737, + 1926, 1111, 1731, + 1919, 1132, 1722, + 1908, 1158, 1710, + 1894, 1191, 1693, + 1874, 1231, 1670, + 1847, 1281, 1636, + 1807, 1339, 1587, + 1747, 1407, 1513, + 1652, 1484, 1389, + 1484, 1571, 1142, + 1068, 1665, 0, + 0, 1767, 0, + 0, 1876, 0, + 0, 1989, 0, + 0, 2106, 0, + 0, 2227, 0, + 0, 2351, 0, + 0, 2477, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 2083, 1136, 1864, + 2082, 1140, 1862, + 2080, 1146, 1860, + 2078, 1155, 1858, + 2075, 1165, 1854, + 2071, 1179, 1849, + 2065, 1197, 1842, + 2058, 1220, 1833, + 2047, 1249, 1820, + 2033, 1284, 1802, + 2014, 1328, 1778, + 1987, 1381, 1743, + 1947, 1444, 1691, + 1889, 1516, 1611, + 1796, 1597, 1476, + 1633, 1687, 1193, + 1242, 1784, 0, + 0, 1889, 0, + 0, 1999, 0, + 0, 2115, 0, + 0, 2234, 0, + 0, 2356, 0, + 0, 2480, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2863, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3647, 0, + 2221, 1220, 1982, + 2220, 1224, 1981, + 2218, 1229, 1979, + 2217, 1236, 1977, + 2214, 1245, 1974, + 2211, 1257, 1970, + 2207, 1272, 1965, + 2202, 1291, 1958, + 2195, 1316, 1948, + 2185, 1347, 1935, + 2171, 1386, 1917, + 2151, 1433, 1891, + 2124, 1489, 1854, + 2086, 1554, 1800, + 2028, 1629, 1716, + 1937, 1713, 1571, + 1778, 1806, 1253, + 1403, 1906, 0, + 0, 2013, 0, + 0, 2125, 0, + 0, 2242, 0, + 0, 2362, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2357, 1313, 2103, + 2356, 1316, 2102, + 2355, 1321, 2101, + 2354, 1326, 2099, + 2352, 1334, 2097, + 2350, 1343, 2094, + 2347, 1356, 2090, + 2343, 1372, 2085, + 2338, 1393, 2078, + 2330, 1419, 2068, + 2320, 1452, 2054, + 2307, 1493, 2035, + 2288, 1543, 2009, + 2261, 1601, 1971, + 2222, 1669, 1915, + 2165, 1747, 1826, + 2076, 1834, 1673, + 1919, 1929, 1323, + 1556, 2031, 0, + 0, 2139, 0, + 0, 2253, 0, + 0, 2370, 0, + 0, 2491, 0, + 0, 2615, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2996, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2492, 1414, 2227, + 2491, 1416, 2226, + 2491, 1420, 2225, + 2490, 1424, 2224, + 2489, 1430, 2222, + 2487, 1438, 2220, + 2485, 1448, 2217, + 2482, 1461, 2213, + 2478, 1479, 2208, + 2472, 1501, 2200, + 2465, 1528, 2190, + 2455, 1563, 2176, + 2442, 1606, 2157, + 2423, 1657, 2130, + 2396, 1718, 2091, + 2358, 1788, 2033, + 2301, 1868, 1942, + 2213, 1957, 1782, + 2058, 2053, 1403, + 1703, 2157, 0, + 0, 2267, 0, + 0, 2381, 0, + 0, 2500, 0, + 0, 2621, 0, + 0, 2745, 0, + 0, 2871, 0, + 0, 2999, 0, + 0, 3128, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 2626, 1521, 2353, + 2626, 1523, 2352, + 2625, 1526, 2351, + 2625, 1529, 2350, + 2624, 1534, 2349, + 2623, 1540, 2347, + 2621, 1548, 2345, + 2619, 1559, 2342, + 2616, 1573, 2338, + 2612, 1591, 2332, + 2607, 1614, 2325, + 2599, 1643, 2315, + 2589, 1679, 2301, + 2576, 1723, 2281, + 2557, 1776, 2253, + 2531, 1839, 2214, + 2493, 1911, 2154, + 2436, 1992, 2061, + 2348, 2082, 1895, + 2195, 2180, 1491, + 1846, 2285, 0, + 0, 2395, 0, + 0, 2511, 0, + 0, 2630, 0, + 0, 2752, 0, + 0, 2876, 0, + 0, 3003, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 2760, 1633, 2480, + 2760, 1635, 2479, + 2759, 1637, 2479, + 2759, 1640, 2478, + 2758, 1643, 2477, + 2757, 1648, 2476, + 2756, 1655, 2474, + 2755, 1663, 2472, + 2752, 1674, 2469, + 2749, 1689, 2465, + 2745, 1707, 2459, + 2740, 1731, 2451, + 2733, 1761, 2441, + 2723, 1798, 2427, + 2710, 1843, 2407, + 2691, 1898, 2379, + 2664, 1962, 2339, + 2627, 2035, 2278, + 2571, 2118, 2183, + 2483, 2209, 2013, + 2331, 2308, 1588, + 1986, 2414, 0, + 0, 2525, 0, + 0, 2641, 0, + 0, 2760, 0, + 0, 2883, 0, + 0, 3007, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 2893, 1750, 2608, + 2893, 1751, 2608, + 2893, 1753, 2608, + 2893, 1755, 2607, + 2892, 1758, 2606, + 2891, 1762, 2605, + 2891, 1767, 2604, + 2889, 1773, 2602, + 2888, 1782, 2600, + 2886, 1793, 2597, + 2883, 1808, 2593, + 2879, 1827, 2587, + 2873, 1852, 2579, + 2866, 1882, 2569, + 2856, 1920, 2554, + 2843, 1967, 2534, + 2824, 2022, 2506, + 2798, 2087, 2465, + 2760, 2161, 2404, + 2704, 2245, 2308, + 2617, 2337, 2134, + 2465, 2437, 1691, + 2123, 2543, 0, + 0, 2655, 0, + 0, 2771, 0, + 0, 2891, 0, + 0, 3014, 0, + 0, 3139, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3652, 0, + 3026, 1870, 2738, + 3026, 1871, 2737, + 3026, 1873, 2737, + 3026, 1874, 2737, + 3025, 1876, 2736, + 3025, 1879, 2735, + 3024, 1883, 2735, + 3023, 1888, 2733, + 3022, 1895, 2732, + 3021, 1904, 2729, + 3018, 1916, 2726, + 3015, 1931, 2722, + 3012, 1950, 2716, + 3006, 1975, 2708, + 2999, 2006, 2698, + 2989, 2045, 2683, + 2976, 2092, 2663, + 2957, 2148, 2635, + 2931, 2214, 2593, + 2893, 2289, 2532, + 2838, 2373, 2434, + 2750, 2466, 2258, + 2600, 2567, 1800, + 2260, 2673, 0, + 0, 2786, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 3159, 1993, 2868, + 3159, 1994, 2868, + 3159, 1995, 2867, + 3159, 1996, 2867, + 3159, 1998, 2867, + 3158, 2000, 2866, + 3158, 2003, 2865, + 3157, 2007, 2864, + 3156, 2012, 2863, + 3155, 2019, 2861, + 3153, 2028, 2859, + 3151, 2040, 2856, + 3148, 2056, 2852, + 3144, 2075, 2846, + 3139, 2101, 2838, + 3132, 2132, 2827, + 3122, 2172, 2813, + 3109, 2219, 2793, + 3090, 2276, 2764, + 3064, 2342, 2723, + 3026, 2418, 2661, + 2971, 2503, 2562, + 2884, 2596, 2383, + 2733, 2697, 1915, + 2395, 2804, 0, + 0, 2917, 0, + 0, 3033, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 3292, 2119, 2998, + 3292, 2119, 2998, + 3292, 2120, 2998, + 3292, 2121, 2998, + 3291, 2122, 2997, + 3291, 2124, 2997, + 3291, 2126, 2997, + 3290, 2129, 2996, + 3290, 2133, 2995, + 3289, 2138, 2994, + 3287, 2145, 2992, + 3286, 2155, 2989, + 3284, 2167, 2986, + 3281, 2182, 2982, + 3277, 2202, 2976, + 3272, 2228, 2968, + 3264, 2260, 2958, + 3255, 2299, 2943, + 3241, 2347, 2923, + 3222, 2405, 2894, + 3196, 2471, 2852, + 3159, 2548, 2790, + 3103, 2633, 2691, + 3017, 2727, 2510, + 2866, 2828, 2033, + 2530, 2935, 0, + 0, 3048, 0, + 0, 3165, 0, + 0, 3285, 0, + 0, 3409, 0, + 0, 3534, 0, + 0, 3661, 0, + 3424, 2246, 3129, + 3424, 2246, 3129, + 3424, 2246, 3129, + 3424, 2247, 3129, + 3424, 2248, 3129, + 3424, 2249, 3128, + 3424, 2251, 3128, + 3423, 2253, 3127, + 3423, 2257, 3127, + 3422, 2261, 3126, + 3421, 2266, 3124, + 3420, 2273, 3123, + 3418, 2282, 3120, + 3416, 2294, 3117, + 3413, 2310, 3113, + 3409, 2330, 3107, + 3404, 2356, 3099, + 3397, 2388, 3088, + 3387, 2428, 3074, + 3374, 2477, 3053, + 3355, 2534, 3024, + 3329, 2601, 2983, + 3291, 2678, 2920, + 3236, 2763, 2820, + 3149, 2857, 2639, + 2999, 2959, 2155, + 2663, 3066, 0, + 0, 3179, 0, + 0, 3297, 0, + 0, 3417, 0, + 0, 3540, 0, + 0, 3666, 0, + 3557, 2374, 3260, + 3557, 2374, 3260, + 3557, 2374, 3260, + 3557, 2375, 3260, + 3556, 2376, 3260, + 3556, 2377, 3260, + 3556, 2378, 3259, + 3556, 2380, 3259, + 3555, 2382, 3259, + 3555, 2385, 3258, + 3554, 2389, 3257, + 3553, 2395, 3255, + 3552, 2402, 3254, + 3551, 2411, 3251, + 3548, 2423, 3248, + 3546, 2439, 3244, + 3542, 2459, 3238, + 3536, 2485, 3230, + 3529, 2518, 3220, + 3519, 2558, 3205, + 3506, 2607, 3184, + 3487, 2664, 3155, + 3461, 2732, 3114, + 3424, 2808, 3051, + 3368, 2894, 2950, + 3282, 2989, 2768, + 3132, 3090, 2279, + 2797, 3198, 0, + 0, 3311, 0, + 0, 3428, 0, + 0, 3549, 0, + 0, 3672, 0, + 3689, 2503, 3392, + 3689, 2503, 3392, + 3689, 2503, 3392, + 3689, 2504, 3392, + 3689, 2504, 3392, + 3689, 2505, 3391, + 3689, 2506, 3391, + 3688, 2507, 3391, + 3688, 2509, 3390, + 3688, 2511, 3390, + 3687, 2515, 3389, + 3687, 2519, 3388, + 3686, 2524, 3387, + 3684, 2531, 3385, + 3683, 2541, 3383, + 3681, 2553, 3380, + 3678, 2569, 3375, + 3674, 2589, 3369, + 3669, 2615, 3362, + 3661, 2648, 3351, + 3652, 2688, 3336, + 3638, 2737, 3316, + 3620, 2795, 3287, + 3594, 2863, 3245, + 3556, 2940, 3182, + 3501, 3026, 3081, + 3414, 3120, 2898, + 3265, 3222, 2405, + 2930, 3330, 0, + 0, 3443, 0, + 0, 3560, 0, + 0, 3681, 0, + 3821, 2633, 3524, + 3821, 2633, 3523, + 3821, 2633, 3523, + 3821, 2633, 3523, + 3821, 2634, 3523, + 3821, 2634, 3523, + 3821, 2635, 3523, + 3821, 2636, 3523, + 3821, 2637, 3522, + 3820, 2639, 3522, + 3820, 2642, 3521, + 3819, 2645, 3521, + 3819, 2649, 3520, + 3818, 2654, 3518, + 3817, 2661, 3517, + 3815, 2671, 3514, + 3813, 2683, 3511, + 3810, 2699, 3507, + 3806, 2720, 3501, + 3801, 2746, 3493, + 3794, 2779, 3482, + 3784, 2819, 3468, + 3770, 2868, 3447, + 3752, 2926, 3418, + 3726, 2994, 3376, + 3688, 3071, 3313, + 3633, 3157, 3212, + 3547, 3252, 3029, + 3397, 3353, 2532, + 3063, 3461, 0, + 0, 3575, 0, + 0, 3692, 0, + 3954, 2763, 3655, + 3954, 2763, 3655, + 3954, 2763, 3655, + 3954, 2764, 3655, + 3953, 2764, 3655, + 3953, 2764, 3655, + 3953, 2765, 3655, + 3953, 2766, 3655, + 3953, 2767, 3654, + 3953, 2768, 3654, + 3953, 2770, 3654, + 3952, 2772, 3653, + 3952, 2775, 3652, + 3951, 2779, 3651, + 3950, 2785, 3650, + 3949, 2792, 3648, + 3947, 2802, 3646, + 3945, 2814, 3643, + 3942, 2830, 3639, + 3938, 2851, 3633, + 3933, 2877, 3625, + 3926, 2910, 3614, + 3916, 2950, 3599, + 3903, 2999, 3579, + 3884, 3057, 3550, + 3858, 3125, 3508, + 3821, 3202, 3444, + 3765, 3289, 3344, + 3679, 3383, 3160, + 3529, 3485, 2661, + 3195, 3593, 0, + 0, 3706, 0, + 4086, 2894, 3787, + 4086, 2894, 3787, + 4086, 2894, 3787, + 4086, 2894, 3787, + 4086, 2895, 3787, + 4086, 2895, 3787, + 4086, 2895, 3787, + 4085, 2896, 3787, + 4085, 2897, 3786, + 4085, 2898, 3786, + 4085, 2899, 3786, + 4085, 2901, 3786, + 4084, 2903, 3785, + 4084, 2906, 3784, + 4083, 2910, 3783, + 4082, 2916, 3782, + 4081, 2923, 3780, + 4079, 2933, 3778, + 4077, 2945, 3775, + 4074, 2961, 3770, + 4071, 2982, 3765, + 4065, 3008, 3757, + 4058, 3041, 3746, + 4048, 3081, 3731, + 4035, 3130, 3710, + 4016, 3189, 3681, + 3990, 3257, 3639, + 3953, 3334, 3576, + 3898, 3420, 3475, + 3811, 3515, 3291, + 3662, 3617, 2790, + 3328, 3725, 0, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3025, 3919, + 4095, 3026, 3919, + 4095, 3026, 3919, + 4095, 3026, 3919, + 4095, 3027, 3919, + 4095, 3027, 3919, + 4095, 3028, 3918, + 4095, 3029, 3918, + 4095, 3030, 3918, + 4095, 3032, 3917, + 4095, 3034, 3917, + 4095, 3037, 3916, + 4095, 3042, 3915, + 4095, 3047, 3914, + 4095, 3054, 3912, + 4095, 3064, 3910, + 4095, 3076, 3906, + 4095, 3092, 3902, + 4095, 3113, 3896, + 4095, 3139, 3888, + 4095, 3172, 3878, + 4095, 3213, 3863, + 4095, 3262, 3842, + 4095, 3320, 3813, + 4095, 3388, 3771, + 4085, 3466, 3708, + 4030, 3552, 3607, + 3943, 3647, 3422, + 3794, 3749, 2920, + 4095, 3156, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3159, 4050, + 4095, 3159, 4050, + 4095, 3160, 4050, + 4095, 3162, 4050, + 4095, 3163, 4049, + 4095, 3166, 4049, + 4095, 3169, 4048, + 4095, 3173, 4047, + 4095, 3179, 4046, + 4095, 3186, 4044, + 4095, 3195, 4042, + 4095, 3208, 4038, + 4095, 3224, 4034, + 4095, 3245, 4028, + 4095, 3271, 4020, + 4095, 3304, 4010, + 4095, 3345, 3995, + 4095, 3394, 3974, + 4095, 3452, 3945, + 4095, 3520, 3903, + 4095, 3598, 3840, + 4095, 3684, 3738, + 4075, 3779, 3554, + 0, 843, 1089, + 0, 852, 1080, + 0, 864, 1068, + 0, 879, 1052, + 0, 898, 1030, + 0, 923, 998, + 0, 954, 952, + 0, 992, 882, + 0, 1039, 767, + 0, 1094, 545, + 0, 1160, 0, + 0, 1234, 0, + 0, 1318, 0, + 0, 1411, 0, + 0, 1511, 0, + 0, 1617, 0, + 0, 1729, 0, + 0, 1846, 0, + 0, 1966, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 0, 846, 1101, + 0, 855, 1093, + 0, 867, 1082, + 0, 881, 1066, + 0, 901, 1044, + 0, 925, 1013, + 0, 956, 969, + 0, 994, 901, + 0, 1041, 792, + 0, 1096, 585, + 0, 1161, 0, + 0, 1236, 0, + 0, 1319, 0, + 0, 1412, 0, + 0, 1512, 0, + 0, 1618, 0, + 0, 1730, 0, + 0, 1846, 0, + 0, 1966, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 0, 850, 1117, + 0, 859, 1109, + 0, 870, 1098, + 0, 885, 1083, + 0, 904, 1063, + 0, 928, 1033, + 0, 959, 990, + 0, 997, 926, + 0, 1043, 823, + 0, 1098, 634, + 0, 1163, 101, + 0, 1237, 0, + 0, 1321, 0, + 0, 1413, 0, + 0, 1513, 0, + 0, 1619, 0, + 0, 1730, 0, + 0, 1847, 0, + 0, 1967, 0, + 0, 2089, 0, + 0, 2214, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 0, 856, 1138, + 0, 864, 1130, + 0, 875, 1120, + 0, 890, 1106, + 0, 909, 1086, + 0, 933, 1058, + 0, 963, 1018, + 0, 1001, 957, + 0, 1047, 862, + 0, 1101, 692, + 0, 1166, 266, + 0, 1240, 0, + 0, 1323, 0, + 0, 1414, 0, + 0, 1514, 0, + 0, 1620, 0, + 0, 1731, 0, + 0, 1847, 0, + 0, 1967, 0, + 0, 2090, 0, + 0, 2215, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3251, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 0, 863, 1164, + 0, 871, 1157, + 0, 882, 1147, + 0, 897, 1134, + 0, 915, 1115, + 0, 939, 1089, + 0, 969, 1052, + 0, 1006, 996, + 0, 1051, 909, + 0, 1106, 759, + 0, 1169, 421, + 0, 1243, 0, + 0, 1325, 0, + 0, 1417, 0, + 0, 1515, 0, + 0, 1621, 0, + 0, 1732, 0, + 0, 1848, 0, + 0, 1968, 0, + 0, 2090, 0, + 0, 2215, 0, + 0, 2341, 0, + 0, 2469, 0, + 0, 2598, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3646, 0, + 133, 872, 1198, + 32, 880, 1191, + 0, 891, 1182, + 0, 905, 1169, + 0, 923, 1152, + 0, 947, 1128, + 0, 976, 1094, + 0, 1013, 1043, + 0, 1057, 966, + 0, 1111, 836, + 0, 1174, 570, + 0, 1247, 0, + 0, 1329, 0, + 0, 1419, 0, + 0, 1518, 0, + 0, 1623, 0, + 0, 1734, 0, + 0, 1849, 0, + 0, 1968, 0, + 0, 2091, 0, + 0, 2215, 0, + 0, 2342, 0, + 0, 2470, 0, + 0, 2599, 0, + 0, 2728, 0, + 0, 2858, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 615, 884, 1238, + 582, 892, 1232, + 535, 902, 1224, + 462, 916, 1213, + 342, 934, 1197, + 107, 957, 1175, + 0, 986, 1144, + 0, 1021, 1100, + 0, 1065, 1032, + 0, 1118, 922, + 0, 1180, 714, + 0, 1252, 39, + 0, 1333, 0, + 0, 1423, 0, + 0, 1521, 0, + 0, 1625, 0, + 0, 1735, 0, + 0, 1851, 0, + 0, 1970, 0, + 0, 2092, 0, + 0, 2216, 0, + 0, 2342, 0, + 0, 2470, 0, + 0, 2599, 0, + 0, 2728, 0, + 0, 2859, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 901, 899, 1288, + 883, 907, 1282, + 859, 917, 1275, + 825, 931, 1265, + 775, 948, 1251, + 698, 970, 1231, + 569, 998, 1204, + 307, 1033, 1165, + 0, 1076, 1107, + 0, 1127, 1016, + 0, 1188, 855, + 0, 1259, 474, + 0, 1339, 0, + 0, 1428, 0, + 0, 1524, 0, + 0, 1628, 0, + 0, 1738, 0, + 0, 1852, 0, + 0, 1971, 0, + 0, 2093, 0, + 0, 2217, 0, + 0, 2343, 0, + 0, 2470, 0, + 0, 2599, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2989, 0, + 0, 3120, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1121, 919, 1346, + 1110, 927, 1341, + 1096, 937, 1335, + 1076, 949, 1326, + 1048, 966, 1314, + 1007, 987, 1297, + 947, 1014, 1274, + 850, 1048, 1241, + 677, 1089, 1192, + 240, 1140, 1117, + 0, 1199, 994, + 0, 1268, 747, + 0, 1347, 0, + 0, 1434, 0, + 0, 1530, 0, + 0, 1632, 0, + 0, 1741, 0, + 0, 1855, 0, + 0, 1973, 0, + 0, 2094, 0, + 0, 2218, 0, + 0, 2344, 0, + 0, 2471, 0, + 0, 2600, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1309, 945, 1414, + 1302, 952, 1410, + 1293, 961, 1405, + 1280, 973, 1397, + 1262, 989, 1387, + 1237, 1009, 1372, + 1202, 1035, 1353, + 1149, 1067, 1325, + 1068, 1107, 1285, + 930, 1156, 1225, + 639, 1213, 1130, + 0, 1280, 962, + 0, 1357, 546, + 0, 1442, 0, + 0, 1536, 0, + 0, 1638, 0, + 0, 1745, 0, + 0, 1858, 0, + 0, 1976, 0, + 0, 2096, 0, + 0, 2220, 0, + 0, 2345, 0, + 0, 2472, 0, + 0, 2600, 0, + 0, 2729, 0, + 0, 2859, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 1479, 977, 1492, + 1475, 983, 1488, + 1468, 992, 1484, + 1460, 1003, 1477, + 1448, 1018, 1469, + 1431, 1037, 1457, + 1408, 1061, 1441, + 1376, 1092, 1418, + 1328, 1130, 1385, + 1255, 1176, 1338, + 1136, 1231, 1266, + 901, 1296, 1148, + 0, 1370, 916, + 0, 1453, 0, + 0, 1545, 0, + 0, 1645, 0, + 0, 1751, 0, + 0, 1863, 0, + 0, 1979, 0, + 0, 2099, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1638, 1016, 1579, + 1635, 1022, 1576, + 1630, 1030, 1572, + 1624, 1041, 1567, + 1616, 1054, 1559, + 1604, 1072, 1550, + 1589, 1094, 1537, + 1567, 1123, 1518, + 1537, 1158, 1492, + 1492, 1202, 1455, + 1425, 1254, 1401, + 1316, 1316, 1316, + 1111, 1387, 1169, + 459, 1468, 847, + 0, 1557, 0, + 0, 1654, 0, + 0, 1758, 0, + 0, 1869, 0, + 0, 1983, 0, + 0, 2102, 0, + 0, 2224, 0, + 0, 2348, 0, + 0, 2475, 0, + 0, 2602, 0, + 0, 2731, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1789, 1064, 1673, + 1786, 1070, 1671, + 1783, 1077, 1668, + 1779, 1086, 1664, + 1773, 1099, 1658, + 1765, 1115, 1650, + 1754, 1135, 1640, + 1739, 1161, 1625, + 1719, 1194, 1605, + 1689, 1234, 1576, + 1647, 1283, 1535, + 1583, 1341, 1473, + 1481, 1409, 1375, + 1293, 1486, 1197, + 773, 1572, 733, + 0, 1667, 0, + 0, 1768, 0, + 0, 1876, 0, + 0, 1989, 0, + 0, 2107, 0, + 0, 2228, 0, + 0, 2351, 0, + 0, 2477, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1934, 1121, 1775, + 1933, 1126, 1774, + 1930, 1133, 1771, + 1927, 1141, 1768, + 1923, 1152, 1763, + 1917, 1166, 1757, + 1910, 1184, 1749, + 1899, 1208, 1737, + 1885, 1237, 1721, + 1864, 1274, 1700, + 1836, 1319, 1668, + 1795, 1373, 1623, + 1734, 1436, 1555, + 1636, 1509, 1443, + 1460, 1592, 1231, + 1006, 1682, 516, + 0, 1781, 0, + 0, 1886, 0, + 0, 1997, 0, + 0, 2113, 0, + 0, 2232, 0, + 0, 2355, 0, + 0, 2479, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2863, 0, + 0, 2992, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 2076, 1188, 1884, + 2075, 1192, 1882, + 2074, 1198, 1880, + 2071, 1205, 1878, + 2068, 1214, 1874, + 2064, 1227, 1869, + 2058, 1243, 1863, + 2051, 1264, 1854, + 2041, 1290, 1842, + 2026, 1323, 1825, + 2007, 1363, 1802, + 1979, 1413, 1768, + 1939, 1471, 1720, + 1879, 1539, 1645, + 1784, 1616, 1521, + 1616, 1703, 1274, + 1200, 1798, 0, + 0, 1899, 0, + 0, 2008, 0, + 0, 2121, 0, + 0, 2239, 0, + 0, 2359, 0, + 0, 2483, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2216, 1264, 1997, + 2215, 1268, 1996, + 2214, 1272, 1995, + 2212, 1279, 1992, + 2210, 1287, 1990, + 2207, 1297, 1986, + 2203, 1311, 1981, + 2197, 1329, 1974, + 2190, 1352, 1965, + 2179, 1381, 1952, + 2165, 1417, 1935, + 2146, 1461, 1910, + 2119, 1513, 1875, + 2079, 1576, 1823, + 2021, 1648, 1743, + 1928, 1729, 1608, + 1765, 1819, 1325, + 1374, 1916, 0, + 0, 2021, 0, + 0, 2132, 0, + 0, 2247, 0, + 0, 2366, 0, + 0, 2488, 0, + 0, 2612, 0, + 0, 2739, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2353, 1349, 2115, + 2353, 1352, 2114, + 2352, 1356, 2113, + 2350, 1361, 2111, + 2349, 1368, 2109, + 2347, 1377, 2106, + 2344, 1389, 2102, + 2340, 1404, 2097, + 2334, 1423, 2090, + 2327, 1448, 2080, + 2317, 1479, 2067, + 2303, 1518, 2049, + 2284, 1565, 2023, + 2257, 1621, 1987, + 2218, 1686, 1932, + 2160, 1761, 1848, + 2069, 1846, 1703, + 1910, 1938, 1386, + 1535, 2039, 0, + 0, 2145, 0, + 0, 2257, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2489, 1443, 2236, + 2489, 1445, 2235, + 2488, 1449, 2234, + 2487, 1453, 2233, + 2486, 1458, 2231, + 2484, 1466, 2229, + 2482, 1475, 2226, + 2479, 1488, 2222, + 2475, 1504, 2217, + 2470, 1525, 2210, + 2462, 1551, 2200, + 2452, 1584, 2186, + 2439, 1625, 2167, + 2420, 1675, 2141, + 2393, 1733, 2103, + 2355, 1802, 2047, + 2297, 1879, 1958, + 2208, 1966, 1805, + 2051, 2061, 1456, + 1688, 2163, 0, + 0, 2271, 0, + 0, 2385, 0, + 0, 2502, 0, + 0, 2623, 0, + 0, 2747, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3128, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2624, 1544, 2359, + 2624, 1546, 2359, + 2624, 1549, 2358, + 2623, 1552, 2357, + 2622, 1556, 2356, + 2621, 1562, 2354, + 2619, 1570, 2352, + 2617, 1580, 2349, + 2614, 1593, 2345, + 2610, 1611, 2340, + 2605, 1633, 2332, + 2597, 1661, 2322, + 2587, 1695, 2308, + 2574, 1738, 2289, + 2555, 1789, 2262, + 2528, 1850, 2223, + 2490, 1921, 2165, + 2433, 2000, 2074, + 2345, 2089, 1914, + 2190, 2186, 1535, + 1835, 2289, 0, + 0, 2399, 0, + 0, 2513, 0, + 0, 2632, 0, + 0, 2753, 0, + 0, 2877, 0, + 0, 3004, 0, + 0, 3131, 0, + 0, 3260, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 2759, 1651, 2485, + 2758, 1653, 2485, + 2758, 1655, 2484, + 2758, 1658, 2483, + 2757, 1661, 2482, + 2756, 1666, 2481, + 2755, 1672, 2480, + 2753, 1680, 2477, + 2751, 1691, 2474, + 2748, 1705, 2470, + 2744, 1723, 2465, + 2739, 1746, 2457, + 2731, 1775, 2447, + 2721, 1811, 2433, + 2708, 1855, 2413, + 2689, 1908, 2385, + 2663, 1971, 2346, + 2625, 2043, 2287, + 2568, 2124, 2193, + 2480, 2214, 2027, + 2327, 2312, 1623, + 1978, 2417, 0, + 0, 2527, 0, + 0, 2643, 0, + 0, 2762, 0, + 0, 2884, 0, + 0, 3008, 0, + 0, 3135, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 2892, 1764, 2612, + 2892, 1765, 2612, + 2892, 1767, 2612, + 2892, 1769, 2611, + 2891, 1772, 2610, + 2890, 1775, 2609, + 2889, 1780, 2608, + 2888, 1787, 2606, + 2887, 1795, 2604, + 2884, 1806, 2601, + 2882, 1821, 2597, + 2878, 1839, 2591, + 2872, 1863, 2584, + 2865, 1893, 2573, + 2855, 1930, 2559, + 2842, 1976, 2539, + 2823, 2030, 2511, + 2797, 2094, 2471, + 2759, 2167, 2411, + 2703, 2250, 2315, + 2615, 2341, 2145, + 2463, 2440, 1720, + 2118, 2546, 0, + 0, 2657, 0, + 0, 2773, 0, + 0, 2892, 0, + 0, 3015, 0, + 0, 3140, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3653, 0, + 3026, 1881, 2741, + 3026, 1882, 2740, + 3025, 1883, 2740, + 3025, 1885, 2740, + 3025, 1887, 2739, + 3024, 1890, 2738, + 3024, 1894, 2737, + 3023, 1899, 2736, + 3021, 1905, 2734, + 3020, 1914, 2732, + 3018, 1926, 2729, + 3015, 1940, 2725, + 3011, 1960, 2719, + 3005, 1984, 2712, + 2998, 2015, 2701, + 2988, 2053, 2687, + 2975, 2099, 2667, + 2956, 2154, 2638, + 2930, 2219, 2598, + 2892, 2294, 2537, + 2836, 2377, 2440, + 2749, 2469, 2266, + 2598, 2569, 1823, + 2256, 2675, 0, + 0, 2787, 0, + 0, 2903, 0, + 0, 3023, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 3159, 2002, 2870, + 3159, 2002, 2870, + 3158, 2003, 2870, + 3158, 2005, 2869, + 3158, 2006, 2869, + 3158, 2008, 2868, + 3157, 2011, 2868, + 3156, 2015, 2867, + 3156, 2020, 2865, + 3154, 2027, 2864, + 3153, 2036, 2861, + 3151, 2048, 2858, + 3148, 2063, 2854, + 3144, 2082, 2848, + 3138, 2107, 2840, + 3131, 2139, 2830, + 3121, 2177, 2815, + 3108, 2224, 2795, + 3089, 2280, 2767, + 3063, 2346, 2726, + 3025, 2421, 2664, + 2970, 2506, 2566, + 2883, 2598, 2390, + 2732, 2699, 1933, + 2392, 2805, 0, + 0, 2918, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3403, 0, + 0, 3529, 0, + 0, 3658, 0, + 3291, 2125, 3000, + 3291, 2125, 3000, + 3291, 2126, 3000, + 3291, 2127, 2999, + 3291, 2128, 2999, + 3291, 2130, 2999, + 3290, 2132, 2998, + 3290, 2135, 2997, + 3289, 2139, 2996, + 3288, 2145, 2995, + 3287, 2151, 2993, + 3285, 2161, 2991, + 3283, 2172, 2988, + 3280, 2188, 2984, + 3276, 2208, 2978, + 3271, 2233, 2970, + 3264, 2264, 2960, + 3254, 2304, 2945, + 3241, 2351, 2925, + 3222, 2408, 2896, + 3196, 2474, 2855, + 3158, 2550, 2793, + 3103, 2635, 2694, + 3016, 2728, 2515, + 2865, 2829, 2047, + 2527, 2936, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3534, 0, + 0, 3661, 0, + 3424, 2250, 3130, + 3424, 2251, 3130, + 3424, 2251, 3130, + 3424, 2252, 3130, + 3424, 2253, 3130, + 3423, 2254, 3130, + 3423, 2256, 3129, + 3423, 2258, 3129, + 3422, 2261, 3128, + 3422, 2265, 3127, + 3421, 2271, 3126, + 3420, 2278, 3124, + 3418, 2287, 3122, + 3416, 2299, 3118, + 3413, 2314, 3114, + 3409, 2334, 3108, + 3404, 2360, 3101, + 3396, 2392, 3090, + 3387, 2431, 3075, + 3373, 2479, 3055, + 3355, 2537, 3026, + 3328, 2603, 2984, + 3291, 2680, 2922, + 3235, 2765, 2823, + 3149, 2859, 2643, + 2999, 2960, 2165, + 2662, 3067, 0, + 0, 3180, 0, + 0, 3297, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3666, 0, + 3557, 2377, 3261, + 3557, 2378, 3261, + 3556, 2378, 3261, + 3556, 2379, 3261, + 3556, 2379, 3261, + 3556, 2380, 3261, + 3556, 2382, 3260, + 3556, 2383, 3260, + 3555, 2386, 3259, + 3555, 2389, 3259, + 3554, 2393, 3258, + 3553, 2398, 3256, + 3552, 2405, 3255, + 3550, 2414, 3252, + 3548, 2427, 3249, + 3545, 2442, 3245, + 3541, 2462, 3239, + 3536, 2488, 3231, + 3529, 2520, 3221, + 3519, 2560, 3206, + 3506, 2609, 3185, + 3487, 2666, 3157, + 3461, 2733, 3115, + 3423, 2810, 3052, + 3368, 2896, 2952, + 3281, 2989, 2771, + 3131, 3091, 2287, + 2795, 3198, 0, + 0, 3311, 0, + 0, 3429, 0, + 0, 3549, 0, + 0, 3673, 0, + 3689, 2506, 3393, + 3689, 2506, 3393, + 3689, 2506, 3392, + 3689, 2506, 3392, + 3689, 2507, 3392, + 3689, 2508, 3392, + 3688, 2509, 3392, + 3688, 2510, 3392, + 3688, 2512, 3391, + 3688, 2514, 3391, + 3687, 2517, 3390, + 3686, 2521, 3389, + 3686, 2527, 3388, + 3684, 2534, 3386, + 3683, 2543, 3383, + 3681, 2555, 3380, + 3678, 2571, 3376, + 3674, 2592, 3370, + 3668, 2617, 3362, + 3661, 2650, 3352, + 3651, 2690, 3337, + 3638, 2739, 3316, + 3619, 2796, 3287, + 3593, 2864, 3246, + 3556, 2941, 3183, + 3500, 3026, 3083, + 3414, 3121, 2900, + 3264, 3222, 2411, + 2929, 3330, 0, + 0, 3443, 0, + 0, 3560, 0, + 0, 3681, 0, + 3821, 2635, 3524, + 3821, 2635, 3524, + 3821, 2635, 3524, + 3821, 2635, 3524, + 3821, 2636, 3524, + 3821, 2636, 3524, + 3821, 2637, 3523, + 3821, 2638, 3523, + 3821, 2639, 3523, + 3820, 2641, 3523, + 3820, 2644, 3522, + 3819, 2647, 3521, + 3819, 2651, 3520, + 3818, 2656, 3519, + 3817, 2663, 3517, + 3815, 2673, 3515, + 3813, 2685, 3512, + 3810, 2701, 3507, + 3806, 2721, 3502, + 3801, 2747, 3494, + 3794, 2780, 3483, + 3784, 2820, 3468, + 3770, 2869, 3448, + 3752, 2927, 3419, + 3726, 2995, 3377, + 3688, 3072, 3314, + 3633, 3158, 3213, + 3546, 3252, 3030, + 3397, 3354, 2537, + 3062, 3462, 0, + 0, 3575, 0, + 0, 3692, 0, + 3953, 2765, 3656, + 3953, 2765, 3656, + 3953, 2765, 3656, + 3953, 2765, 3656, + 3953, 2765, 3655, + 3953, 2766, 3655, + 3953, 2766, 3655, + 3953, 2767, 3655, + 3953, 2768, 3655, + 3953, 2770, 3655, + 3952, 2771, 3654, + 3952, 2774, 3654, + 3952, 2777, 3653, + 3951, 2781, 3652, + 3950, 2786, 3651, + 3949, 2793, 3649, + 3947, 2803, 3646, + 3945, 2815, 3643, + 3942, 2831, 3639, + 3938, 2852, 3633, + 3933, 2878, 3625, + 3926, 2911, 3615, + 3916, 2951, 3600, + 3903, 3000, 3579, + 3884, 3058, 3550, + 3858, 3126, 3508, + 3821, 3203, 3445, + 3765, 3289, 3344, + 3679, 3384, 3161, + 3529, 3485, 2664, + 3195, 3593, 0, + 0, 3707, 0, + 4086, 2895, 3787, + 4086, 2895, 3787, + 4086, 2895, 3787, + 4086, 2896, 3787, + 4086, 2896, 3787, + 4086, 2896, 3787, + 4086, 2896, 3787, + 4085, 2897, 3787, + 4085, 2898, 3787, + 4085, 2899, 3787, + 4085, 2900, 3786, + 4085, 2902, 3786, + 4084, 2904, 3785, + 4084, 2907, 3785, + 4083, 2911, 3784, + 4082, 2917, 3782, + 4081, 2924, 3780, + 4079, 2934, 3778, + 4077, 2946, 3775, + 4074, 2962, 3771, + 4070, 2983, 3765, + 4065, 3009, 3757, + 4058, 3042, 3746, + 4048, 3082, 3731, + 4035, 3131, 3711, + 4016, 3189, 3682, + 3990, 3257, 3640, + 3953, 3334, 3577, + 3897, 3421, 3476, + 3811, 3515, 3292, + 3662, 3617, 2793, + 3327, 3725, 0, + 4095, 3026, 3919, + 4095, 3026, 3919, + 4095, 3026, 3919, + 4095, 3026, 3919, + 4095, 3026, 3919, + 4095, 3027, 3919, + 4095, 3027, 3919, + 4095, 3027, 3919, + 4095, 3028, 3919, + 4095, 3029, 3919, + 4095, 3030, 3918, + 4095, 3031, 3918, + 4095, 3033, 3918, + 4095, 3035, 3917, + 4095, 3038, 3916, + 4095, 3042, 3915, + 4095, 3048, 3914, + 4095, 3055, 3912, + 4095, 3065, 3910, + 4095, 3077, 3907, + 4095, 3093, 3902, + 4095, 3114, 3897, + 4095, 3140, 3889, + 4095, 3173, 3878, + 4095, 3213, 3863, + 4095, 3263, 3843, + 4095, 3321, 3813, + 4095, 3389, 3771, + 4085, 3466, 3708, + 4030, 3552, 3607, + 3943, 3647, 3423, + 3794, 3749, 2922, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3157, 4051, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3159, 4051, + 4095, 3159, 4051, + 4095, 3160, 4050, + 4095, 3161, 4050, + 4095, 3162, 4050, + 4095, 3164, 4049, + 4095, 3166, 4049, + 4095, 3170, 4048, + 4095, 3174, 4047, + 4095, 3179, 4046, + 4095, 3186, 4044, + 4095, 3196, 4042, + 4095, 3208, 4039, + 4095, 3224, 4034, + 4095, 3245, 4028, + 4095, 3271, 4021, + 4095, 3304, 4010, + 4095, 3345, 3995, + 4095, 3394, 3974, + 4095, 3453, 3945, + 4095, 3520, 3903, + 4095, 3598, 3840, + 4095, 3684, 3739, + 4075, 3779, 3555, + 0, 966, 1218, + 0, 973, 1211, + 0, 982, 1202, + 0, 994, 1191, + 0, 1009, 1174, + 0, 1028, 1151, + 0, 1053, 1119, + 0, 1084, 1071, + 0, 1122, 999, + 0, 1169, 879, + 0, 1225, 645, + 0, 1291, 0, + 0, 1366, 0, + 0, 1450, 0, + 0, 1542, 0, + 0, 1643, 0, + 0, 1749, 0, + 0, 1861, 0, + 0, 1978, 0, + 0, 2098, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3383, 0, + 0, 3515, 0, + 0, 3647, 0, + 0, 969, 1227, + 0, 975, 1221, + 0, 984, 1212, + 0, 996, 1201, + 0, 1011, 1185, + 0, 1030, 1162, + 0, 1055, 1130, + 0, 1086, 1084, + 0, 1124, 1014, + 0, 1171, 899, + 0, 1226, 677, + 0, 1292, 0, + 0, 1367, 0, + 0, 1451, 0, + 0, 1543, 0, + 0, 1643, 0, + 0, 1750, 0, + 0, 1862, 0, + 0, 1978, 0, + 0, 2098, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 0, 972, 1239, + 0, 978, 1233, + 0, 987, 1225, + 0, 999, 1214, + 0, 1014, 1198, + 0, 1033, 1176, + 0, 1057, 1146, + 0, 1088, 1101, + 0, 1126, 1033, + 0, 1173, 924, + 0, 1228, 717, + 0, 1293, 53, + 0, 1368, 0, + 0, 1452, 0, + 0, 1544, 0, + 0, 1644, 0, + 0, 1750, 0, + 0, 1862, 0, + 0, 1978, 0, + 0, 2098, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 0, 976, 1255, + 0, 982, 1249, + 0, 991, 1241, + 0, 1002, 1230, + 0, 1017, 1215, + 0, 1036, 1195, + 0, 1061, 1165, + 0, 1091, 1122, + 0, 1129, 1058, + 0, 1175, 955, + 0, 1231, 766, + 0, 1295, 233, + 0, 1370, 0, + 0, 1453, 0, + 0, 1545, 0, + 0, 1645, 0, + 0, 1751, 0, + 0, 1863, 0, + 0, 1979, 0, + 0, 2099, 0, + 0, 2221, 0, + 0, 2346, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 0, 981, 1276, + 0, 988, 1270, + 0, 996, 1263, + 0, 1008, 1252, + 0, 1022, 1238, + 0, 1041, 1218, + 0, 1065, 1190, + 0, 1095, 1150, + 0, 1133, 1090, + 0, 1179, 994, + 0, 1234, 824, + 0, 1298, 398, + 0, 1372, 0, + 0, 1455, 0, + 0, 1547, 0, + 0, 1646, 0, + 0, 1752, 0, + 0, 1863, 0, + 0, 1979, 0, + 0, 2099, 0, + 0, 2222, 0, + 0, 2347, 0, + 0, 2473, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 0, 988, 1302, + 0, 995, 1297, + 0, 1003, 1289, + 0, 1014, 1280, + 0, 1029, 1266, + 0, 1047, 1247, + 0, 1071, 1221, + 0, 1101, 1184, + 0, 1138, 1128, + 0, 1183, 1041, + 0, 1238, 891, + 0, 1301, 553, + 0, 1375, 0, + 0, 1457, 0, + 0, 1549, 0, + 0, 1648, 0, + 0, 1753, 0, + 0, 1864, 0, + 0, 1980, 0, + 0, 2100, 0, + 0, 2222, 0, + 0, 2347, 0, + 0, 2474, 0, + 0, 2601, 0, + 0, 2730, 0, + 0, 2860, 0, + 0, 2990, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 329, 998, 1335, + 265, 1004, 1330, + 164, 1012, 1323, + 0, 1023, 1314, + 0, 1037, 1301, + 0, 1055, 1284, + 0, 1079, 1260, + 0, 1108, 1226, + 0, 1145, 1175, + 0, 1189, 1098, + 0, 1243, 968, + 0, 1306, 702, + 0, 1379, 0, + 0, 1461, 0, + 0, 1551, 0, + 0, 1650, 0, + 0, 1755, 0, + 0, 1866, 0, + 0, 1981, 0, + 0, 2101, 0, + 0, 2223, 0, + 0, 2347, 0, + 0, 2474, 0, + 0, 2602, 0, + 0, 2731, 0, + 0, 2860, 0, + 0, 2991, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 770, 1010, 1375, + 747, 1016, 1370, + 715, 1024, 1364, + 667, 1035, 1356, + 594, 1048, 1345, + 474, 1066, 1329, + 239, 1089, 1307, + 0, 1118, 1276, + 0, 1154, 1232, + 0, 1197, 1164, + 0, 1250, 1054, + 0, 1312, 846, + 0, 1384, 171, + 0, 1465, 0, + 0, 1555, 0, + 0, 1653, 0, + 0, 1757, 0, + 0, 1868, 0, + 0, 1983, 0, + 0, 2102, 0, + 0, 2224, 0, + 0, 2348, 0, + 0, 2474, 0, + 0, 2602, 0, + 0, 2731, 0, + 0, 2860, 0, + 0, 2991, 0, + 0, 3121, 0, + 0, 3252, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1045, 1025, 1424, + 1033, 1031, 1420, + 1016, 1039, 1414, + 992, 1049, 1407, + 957, 1063, 1397, + 907, 1080, 1383, + 830, 1102, 1364, + 702, 1130, 1336, + 440, 1165, 1297, + 0, 1208, 1239, + 0, 1260, 1148, + 0, 1321, 987, + 0, 1391, 606, + 0, 1471, 0, + 0, 1560, 0, + 0, 1657, 0, + 0, 1760, 0, + 0, 1870, 0, + 0, 1985, 0, + 0, 2103, 0, + 0, 2225, 0, + 0, 2349, 0, + 0, 2475, 0, + 0, 2603, 0, + 0, 2731, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1261, 1046, 1482, + 1253, 1051, 1478, + 1242, 1059, 1473, + 1228, 1069, 1467, + 1208, 1082, 1458, + 1180, 1098, 1446, + 1139, 1119, 1429, + 1079, 1146, 1406, + 982, 1180, 1373, + 810, 1222, 1324, + 372, 1272, 1249, + 0, 1331, 1126, + 0, 1400, 879, + 0, 1479, 0, + 0, 1566, 0, + 0, 1662, 0, + 0, 1764, 0, + 0, 1873, 0, + 0, 1987, 0, + 0, 2105, 0, + 0, 2226, 0, + 0, 2350, 0, + 0, 2476, 0, + 0, 2603, 0, + 0, 2732, 0, + 0, 2861, 0, + 0, 2991, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1446, 1072, 1550, + 1441, 1077, 1546, + 1434, 1084, 1542, + 1425, 1093, 1537, + 1412, 1105, 1529, + 1394, 1121, 1519, + 1370, 1141, 1505, + 1334, 1167, 1485, + 1282, 1199, 1457, + 1200, 1239, 1417, + 1063, 1288, 1357, + 771, 1345, 1263, + 0, 1412, 1094, + 0, 1489, 678, + 0, 1575, 0, + 0, 1668, 0, + 0, 1770, 0, + 0, 1877, 0, + 0, 1990, 0, + 0, 2108, 0, + 0, 2228, 0, + 0, 2352, 0, + 0, 2477, 0, + 0, 2604, 0, + 0, 2732, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3515, 0, + 0, 3647, 0, + 1615, 1104, 1627, + 1611, 1109, 1624, + 1607, 1115, 1621, + 1600, 1124, 1616, + 1592, 1135, 1609, + 1580, 1150, 1601, + 1563, 1169, 1589, + 1540, 1193, 1573, + 1508, 1224, 1550, + 1460, 1262, 1518, + 1388, 1308, 1470, + 1268, 1363, 1398, + 1033, 1428, 1280, + 0, 1502, 1048, + 0, 1585, 57, + 0, 1677, 0, + 0, 1777, 0, + 0, 1883, 0, + 0, 1995, 0, + 0, 2111, 0, + 0, 2231, 0, + 0, 2354, 0, + 0, 2479, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 1772, 1144, 1713, + 1770, 1148, 1711, + 1767, 1154, 1708, + 1762, 1162, 1704, + 1756, 1173, 1699, + 1748, 1186, 1692, + 1737, 1204, 1682, + 1721, 1226, 1669, + 1699, 1255, 1650, + 1669, 1290, 1624, + 1624, 1334, 1588, + 1557, 1386, 1533, + 1448, 1448, 1448, + 1243, 1519, 1301, + 591, 1600, 979, + 0, 1689, 0, + 0, 1786, 0, + 0, 1891, 0, + 0, 2001, 0, + 0, 2116, 0, + 0, 2234, 0, + 0, 2356, 0, + 0, 2481, 0, + 0, 2607, 0, + 0, 2734, 0, + 0, 2863, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3647, 0, + 1923, 1192, 1807, + 1921, 1196, 1805, + 1919, 1202, 1803, + 1915, 1209, 1800, + 1911, 1218, 1796, + 1905, 1231, 1790, + 1897, 1247, 1782, + 1886, 1267, 1772, + 1871, 1293, 1757, + 1851, 1326, 1737, + 1821, 1366, 1708, + 1779, 1415, 1667, + 1715, 1473, 1605, + 1613, 1541, 1507, + 1426, 1618, 1329, + 905, 1704, 865, + 0, 1799, 0, + 0, 1900, 0, + 0, 2008, 0, + 0, 2122, 0, + 0, 2239, 0, + 0, 2360, 0, + 0, 2483, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2068, 1250, 1909, + 2067, 1253, 1908, + 2065, 1258, 1906, + 2063, 1265, 1903, + 2059, 1273, 1900, + 2055, 1284, 1895, + 2049, 1298, 1889, + 2042, 1317, 1881, + 2031, 1340, 1869, + 2017, 1370, 1854, + 1997, 1406, 1832, + 1968, 1451, 1801, + 1927, 1505, 1755, + 1866, 1569, 1687, + 1768, 1641, 1575, + 1592, 1724, 1364, + 1138, 1815, 648, + 0, 1913, 0, + 0, 2018, 0, + 0, 2129, 0, + 0, 2245, 0, + 0, 2364, 0, + 0, 2487, 0, + 0, 2612, 0, + 0, 2738, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3124, 0, + 0, 3255, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 2210, 1317, 2017, + 2209, 1320, 2016, + 2207, 1324, 2014, + 2206, 1330, 2012, + 2203, 1337, 2010, + 2200, 1347, 2006, + 2196, 1359, 2001, + 2191, 1375, 1995, + 2183, 1396, 1986, + 2173, 1422, 1974, + 2158, 1455, 1957, + 2139, 1496, 1934, + 2111, 1545, 1900, + 2071, 1603, 1852, + 2011, 1671, 1777, + 1916, 1749, 1653, + 1748, 1835, 1406, + 1333, 1930, 0, + 0, 2032, 0, + 0, 2140, 0, + 0, 2253, 0, + 0, 2371, 0, + 0, 2492, 0, + 0, 2615, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2996, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2349, 1394, 2130, + 2348, 1396, 2129, + 2347, 1400, 2128, + 2346, 1404, 2127, + 2344, 1411, 2125, + 2342, 1419, 2122, + 2339, 1429, 2118, + 2335, 1443, 2113, + 2329, 1461, 2106, + 2322, 1484, 2097, + 2312, 1513, 2084, + 2298, 1549, 2067, + 2278, 1593, 2042, + 2251, 1646, 2007, + 2211, 1708, 1955, + 2153, 1780, 1875, + 2061, 1861, 1740, + 1898, 1951, 1457, + 1507, 2049, 0, + 0, 2153, 0, + 0, 2264, 0, + 0, 2379, 0, + 0, 2498, 0, + 0, 2620, 0, + 0, 2744, 0, + 0, 2871, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 2486, 1479, 2248, + 2485, 1482, 2247, + 2485, 1484, 2246, + 2484, 1488, 2245, + 2483, 1493, 2243, + 2481, 1500, 2241, + 2479, 1509, 2238, + 2476, 1521, 2234, + 2472, 1536, 2229, + 2466, 1555, 2222, + 2459, 1580, 2213, + 2449, 1611, 2199, + 2435, 1650, 2181, + 2416, 1697, 2155, + 2389, 1753, 2119, + 2350, 1818, 2064, + 2292, 1893, 1980, + 2201, 1978, 1835, + 2042, 2070, 1518, + 1668, 2171, 0, + 0, 2277, 0, + 0, 2389, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 2622, 1573, 2368, + 2621, 1575, 2368, + 2621, 1578, 2367, + 2620, 1581, 2366, + 2619, 1585, 2365, + 2618, 1590, 2363, + 2616, 1598, 2361, + 2614, 1607, 2358, + 2611, 1620, 2354, + 2607, 1636, 2349, + 2602, 1657, 2342, + 2595, 1683, 2332, + 2585, 1716, 2318, + 2571, 1757, 2299, + 2552, 1807, 2273, + 2525, 1865, 2235, + 2487, 1934, 2179, + 2430, 2011, 2091, + 2340, 2098, 1937, + 2183, 2193, 1588, + 1820, 2295, 0, + 0, 2403, 0, + 0, 2517, 0, + 0, 2634, 0, + 0, 2755, 0, + 0, 2879, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3260, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2757, 1675, 2492, + 2756, 1676, 2491, + 2756, 1678, 2491, + 2756, 1681, 2490, + 2755, 1684, 2489, + 2754, 1688, 2488, + 2753, 1694, 2486, + 2751, 1702, 2484, + 2749, 1712, 2481, + 2746, 1726, 2477, + 2742, 1743, 2472, + 2737, 1765, 2464, + 2729, 1793, 2454, + 2719, 1827, 2440, + 2706, 1870, 2421, + 2687, 1922, 2394, + 2660, 1982, 2355, + 2622, 2053, 2297, + 2566, 2132, 2206, + 2477, 2221, 2046, + 2322, 2318, 1667, + 1967, 2421, 0, + 0, 2531, 0, + 0, 2645, 0, + 0, 2764, 0, + 0, 2885, 0, + 0, 3010, 0, + 0, 3136, 0, + 0, 3263, 0, + 0, 3392, 0, + 0, 3521, 0, + 0, 3651, 0, + 2891, 1782, 2617, + 2891, 1784, 2617, + 2890, 1785, 2617, + 2890, 1787, 2616, + 2890, 1790, 2615, + 2889, 1793, 2615, + 2888, 1798, 2613, + 2887, 1804, 2612, + 2885, 1812, 2609, + 2883, 1823, 2606, + 2880, 1837, 2602, + 2876, 1855, 2597, + 2871, 1878, 2589, + 2863, 1907, 2579, + 2854, 1943, 2565, + 2840, 1987, 2545, + 2821, 2040, 2518, + 2795, 2103, 2478, + 2757, 2175, 2419, + 2701, 2256, 2325, + 2612, 2346, 2159, + 2459, 2444, 1755, + 2110, 2549, 0, + 0, 2659, 0, + 0, 2775, 0, + 0, 2894, 0, + 0, 3016, 0, + 0, 3140, 0, + 0, 3267, 0, + 0, 3395, 0, + 0, 3523, 0, + 0, 3653, 0, + 3025, 1895, 2745, + 3024, 1896, 2744, + 3024, 1897, 2744, + 3024, 1899, 2744, + 3024, 1901, 2743, + 3023, 1904, 2742, + 3022, 1908, 2741, + 3022, 1912, 2740, + 3020, 1919, 2738, + 3019, 1927, 2736, + 3017, 1938, 2733, + 3014, 1953, 2729, + 3010, 1971, 2723, + 3004, 1995, 2716, + 2997, 2025, 2705, + 2987, 2062, 2691, + 2974, 2108, 2671, + 2955, 2162, 2643, + 2929, 2226, 2603, + 2891, 2299, 2543, + 2835, 2382, 2447, + 2747, 2473, 2277, + 2595, 2572, 1852, + 2250, 2678, 0, + 0, 2789, 0, + 0, 2905, 0, + 0, 3024, 0, + 0, 3147, 0, + 0, 3272, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 3158, 2013, 2873, + 3158, 2013, 2873, + 3158, 2014, 2872, + 3157, 2015, 2872, + 3157, 2017, 2872, + 3157, 2019, 2871, + 3156, 2022, 2871, + 3156, 2026, 2870, + 3155, 2031, 2868, + 3154, 2038, 2867, + 3152, 2046, 2864, + 3150, 2058, 2861, + 3147, 2073, 2857, + 3143, 2092, 2851, + 3138, 2116, 2844, + 3130, 2147, 2833, + 3120, 2185, 2819, + 3107, 2231, 2799, + 3088, 2286, 2770, + 3062, 2351, 2730, + 3024, 2426, 2669, + 2968, 2509, 2572, + 2881, 2601, 2398, + 2730, 2701, 1955, + 2388, 2807, 0, + 0, 2919, 0, + 0, 3035, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 3291, 2133, 3002, + 3291, 2134, 3002, + 3291, 2135, 3002, + 3291, 2135, 3002, + 3290, 2137, 3001, + 3290, 2138, 3001, + 3290, 2141, 3000, + 3289, 2143, 3000, + 3288, 2147, 2999, + 3288, 2153, 2997, + 3286, 2159, 2996, + 3285, 2168, 2993, + 3283, 2180, 2990, + 3280, 2195, 2986, + 3276, 2215, 2980, + 3270, 2239, 2973, + 3263, 2271, 2962, + 3253, 2309, 2947, + 3240, 2356, 2927, + 3221, 2412, 2899, + 3195, 2478, 2858, + 3157, 2553, 2796, + 3102, 2638, 2698, + 3015, 2730, 2522, + 2864, 2831, 2065, + 2524, 2938, 0, + 0, 3050, 0, + 0, 3166, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 3424, 2257, 3132, + 3424, 2257, 3132, + 3423, 2258, 3132, + 3423, 2258, 3132, + 3423, 2259, 3132, + 3423, 2261, 3131, + 3423, 2262, 3131, + 3422, 2264, 3130, + 3422, 2267, 3130, + 3421, 2271, 3129, + 3420, 2277, 3127, + 3419, 2284, 3126, + 3417, 2293, 3123, + 3415, 2304, 3120, + 3412, 2320, 3116, + 3408, 2340, 3110, + 3403, 2365, 3102, + 3396, 2397, 3092, + 3386, 2436, 3077, + 3373, 2483, 3057, + 3354, 2540, 3028, + 3328, 2606, 2987, + 3290, 2682, 2925, + 3235, 2767, 2826, + 3148, 2860, 2647, + 2997, 2961, 2179, + 2659, 3068, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3666, 0, + 3556, 2382, 3263, + 3556, 2382, 3263, + 3556, 2383, 3262, + 3556, 2383, 3262, + 3556, 2384, 3262, + 3556, 2385, 3262, + 3556, 2386, 3262, + 3555, 2388, 3261, + 3555, 2390, 3261, + 3554, 2393, 3260, + 3554, 2397, 3259, + 3553, 2403, 3258, + 3552, 2410, 3256, + 3550, 2419, 3254, + 3548, 2431, 3250, + 3545, 2446, 3246, + 3541, 2466, 3240, + 3536, 2492, 3233, + 3529, 2524, 3222, + 3519, 2564, 3207, + 3505, 2612, 3187, + 3487, 2669, 3158, + 3461, 2736, 3117, + 3423, 2812, 3054, + 3368, 2897, 2955, + 3281, 2991, 2775, + 3131, 3092, 2297, + 2794, 3199, 0, + 0, 3312, 0, + 0, 3429, 0, + 0, 3550, 0, + 0, 3673, 0, + 3689, 2509, 3394, + 3689, 2509, 3393, + 3689, 2510, 3393, + 3689, 2510, 3393, + 3688, 2511, 3393, + 3688, 2511, 3393, + 3688, 2512, 3393, + 3688, 2514, 3392, + 3688, 2515, 3392, + 3687, 2518, 3392, + 3687, 2521, 3391, + 3686, 2525, 3390, + 3685, 2530, 3389, + 3684, 2537, 3387, + 3682, 2546, 3384, + 3680, 2559, 3381, + 3677, 2574, 3377, + 3673, 2595, 3371, + 3668, 2620, 3363, + 3661, 2653, 3353, + 3651, 2692, 3338, + 3638, 2741, 3318, + 3619, 2798, 3289, + 3593, 2865, 3247, + 3556, 2942, 3184, + 3500, 3028, 3084, + 3413, 3122, 2903, + 3264, 3223, 2419, + 2928, 3331, 0, + 0, 3443, 0, + 0, 3561, 0, + 0, 3681, 0, + 3821, 2637, 3525, + 3821, 2638, 3525, + 3821, 2638, 3525, + 3821, 2638, 3525, + 3821, 2639, 3524, + 3821, 2639, 3524, + 3821, 2640, 3524, + 3821, 2641, 3524, + 3820, 2642, 3524, + 3820, 2644, 3523, + 3820, 2646, 3523, + 3819, 2649, 3522, + 3818, 2653, 3521, + 3818, 2659, 3520, + 3816, 2666, 3518, + 3815, 2675, 3516, + 3813, 2687, 3512, + 3810, 2703, 3508, + 3806, 2724, 3502, + 3801, 2750, 3494, + 3793, 2782, 3484, + 3784, 2822, 3469, + 3770, 2871, 3448, + 3752, 2929, 3420, + 3725, 2996, 3378, + 3688, 3073, 3315, + 3633, 3159, 3215, + 3546, 3253, 3032, + 3396, 3354, 2543, + 3061, 3462, 0, + 0, 3575, 0, + 0, 3692, 0, + 3953, 2767, 3656, + 3953, 2767, 3656, + 3953, 2767, 3656, + 3953, 2767, 3656, + 3953, 2768, 3656, + 3953, 2768, 3656, + 3953, 2769, 3656, + 3953, 2769, 3656, + 3953, 2770, 3655, + 3953, 2772, 3655, + 3952, 2773, 3655, + 3952, 2776, 3654, + 3951, 2779, 3653, + 3951, 2783, 3652, + 3950, 2788, 3651, + 3949, 2795, 3649, + 3947, 2805, 3647, + 3945, 2817, 3644, + 3942, 2833, 3639, + 3938, 2854, 3634, + 3933, 2880, 3626, + 3926, 2912, 3615, + 3916, 2952, 3600, + 3902, 3001, 3580, + 3884, 3059, 3551, + 3858, 3127, 3509, + 3820, 3204, 3446, + 3765, 3290, 3345, + 3678, 3384, 3162, + 3529, 3486, 2669, + 3194, 3594, 0, + 0, 3707, 0, + 4086, 2897, 3788, + 4086, 2897, 3788, + 4086, 2897, 3788, + 4086, 2897, 3788, + 4086, 2897, 3788, + 4085, 2898, 3788, + 4085, 2898, 3787, + 4085, 2899, 3787, + 4085, 2899, 3787, + 4085, 2900, 3787, + 4085, 2902, 3787, + 4085, 2903, 3786, + 4084, 2906, 3786, + 4084, 2909, 3785, + 4083, 2913, 3784, + 4082, 2918, 3783, + 4081, 2926, 3781, + 4079, 2935, 3779, + 4077, 2947, 3775, + 4074, 2963, 3771, + 4070, 2984, 3765, + 4065, 3010, 3757, + 4058, 3043, 3747, + 4048, 3083, 3732, + 4035, 3132, 3711, + 4016, 3190, 3682, + 3990, 3258, 3640, + 3953, 3335, 3577, + 3897, 3421, 3476, + 3811, 3516, 3293, + 3661, 3617, 2796, + 3327, 3725, 0, + 4095, 3027, 3919, + 4095, 3027, 3919, + 4095, 3027, 3919, + 4095, 3027, 3919, + 4095, 3028, 3919, + 4095, 3028, 3919, + 4095, 3028, 3919, + 4095, 3029, 3919, + 4095, 3029, 3919, + 4095, 3030, 3919, + 4095, 3031, 3919, + 4095, 3032, 3918, + 4095, 3034, 3918, + 4095, 3036, 3917, + 4095, 3039, 3917, + 4095, 3044, 3916, + 4095, 3049, 3914, + 4095, 3056, 3913, + 4095, 3066, 3910, + 4095, 3078, 3907, + 4095, 3094, 3903, + 4095, 3115, 3897, + 4095, 3141, 3889, + 4095, 3174, 3878, + 4095, 3214, 3863, + 4095, 3263, 3843, + 4095, 3321, 3814, + 4095, 3389, 3772, + 4085, 3467, 3709, + 4030, 3553, 3608, + 3943, 3647, 3424, + 3794, 3749, 2925, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3158, 4051, + 4095, 3159, 4051, + 4095, 3159, 4051, + 4095, 3159, 4051, + 4095, 3160, 4051, + 4095, 3160, 4051, + 4095, 3161, 4051, + 4095, 3162, 4050, + 4095, 3163, 4050, + 4095, 3165, 4050, + 4095, 3167, 4049, + 4095, 3170, 4048, + 4095, 3175, 4047, + 4095, 3180, 4046, + 4095, 3187, 4044, + 4095, 3197, 4042, + 4095, 3209, 4039, + 4095, 3225, 4035, + 4095, 3246, 4029, + 4095, 3272, 4021, + 4095, 3305, 4010, + 4095, 3346, 3995, + 4095, 3395, 3975, + 4095, 3453, 3946, + 4095, 3521, 3903, + 4095, 3598, 3840, + 4095, 3685, 3739, + 4075, 3779, 3555, + 0, 1092, 1347, + 0, 1097, 1342, + 0, 1104, 1336, + 0, 1112, 1327, + 0, 1124, 1315, + 0, 1139, 1298, + 0, 1159, 1275, + 0, 1183, 1242, + 0, 1215, 1193, + 0, 1253, 1119, + 0, 1300, 996, + 0, 1356, 751, + 0, 1422, 0, + 0, 1497, 0, + 0, 1581, 0, + 0, 1674, 0, + 0, 1774, 0, + 0, 1881, 0, + 0, 1993, 0, + 0, 2110, 0, + 0, 2230, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 0, 1093, 1354, + 0, 1098, 1350, + 0, 1105, 1343, + 0, 1114, 1335, + 0, 1126, 1323, + 0, 1141, 1306, + 0, 1160, 1283, + 0, 1185, 1251, + 0, 1216, 1203, + 0, 1254, 1131, + 0, 1301, 1011, + 0, 1357, 777, + 0, 1423, 0, + 0, 1498, 0, + 0, 1582, 0, + 0, 1674, 0, + 0, 1775, 0, + 0, 1881, 0, + 0, 1993, 0, + 0, 2110, 0, + 0, 2230, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 0, 1096, 1364, + 0, 1101, 1359, + 0, 1107, 1353, + 0, 1116, 1344, + 0, 1128, 1333, + 0, 1143, 1317, + 0, 1162, 1294, + 0, 1187, 1262, + 0, 1218, 1216, + 0, 1256, 1146, + 0, 1303, 1031, + 0, 1359, 809, + 0, 1424, 0, + 0, 1499, 0, + 0, 1583, 0, + 0, 1675, 0, + 0, 1775, 0, + 0, 1882, 0, + 0, 1994, 0, + 0, 2110, 0, + 0, 2230, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 0, 1099, 1376, + 0, 1104, 1371, + 0, 1110, 1365, + 0, 1119, 1357, + 0, 1131, 1346, + 0, 1146, 1330, + 0, 1165, 1308, + 0, 1189, 1278, + 0, 1220, 1233, + 0, 1258, 1165, + 0, 1305, 1056, + 0, 1360, 850, + 0, 1425, 185, + 0, 1500, 0, + 0, 1584, 0, + 0, 1676, 0, + 0, 1776, 0, + 0, 1882, 0, + 0, 1994, 0, + 0, 2110, 0, + 0, 2230, 0, + 0, 2353, 0, + 0, 2478, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 0, 1103, 1392, + 0, 1108, 1387, + 0, 1114, 1381, + 0, 1123, 1373, + 0, 1135, 1363, + 0, 1149, 1348, + 0, 1168, 1327, + 0, 1193, 1297, + 0, 1223, 1255, + 0, 1261, 1190, + 0, 1307, 1087, + 0, 1363, 898, + 0, 1427, 365, + 0, 1502, 0, + 0, 1585, 0, + 0, 1677, 0, + 0, 1777, 0, + 0, 1883, 0, + 0, 1995, 0, + 0, 2111, 0, + 0, 2231, 0, + 0, 2354, 0, + 0, 2479, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 0, 1108, 1412, + 0, 1113, 1408, + 0, 1120, 1402, + 0, 1128, 1395, + 0, 1140, 1384, + 0, 1154, 1370, + 0, 1173, 1350, + 0, 1197, 1322, + 0, 1227, 1282, + 0, 1265, 1222, + 0, 1311, 1126, + 0, 1366, 956, + 0, 1430, 530, + 0, 1504, 0, + 0, 1587, 0, + 0, 1679, 0, + 0, 1778, 0, + 0, 1884, 0, + 0, 1995, 0, + 0, 2112, 0, + 0, 2231, 0, + 0, 2354, 0, + 0, 2479, 0, + 0, 2605, 0, + 0, 2733, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3122, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 0, 1115, 1438, + 0, 1120, 1434, + 0, 1127, 1429, + 0, 1135, 1421, + 0, 1146, 1412, + 0, 1161, 1398, + 0, 1179, 1380, + 0, 1203, 1353, + 0, 1233, 1316, + 0, 1270, 1260, + 0, 1315, 1173, + 0, 1370, 1023, + 0, 1434, 686, + 0, 1507, 0, + 0, 1590, 0, + 0, 1681, 0, + 0, 1780, 0, + 0, 1885, 0, + 0, 1996, 0, + 0, 2112, 0, + 0, 2232, 0, + 0, 2354, 0, + 0, 2479, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2862, 0, + 0, 2992, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 503, 1125, 1470, + 461, 1130, 1467, + 397, 1136, 1462, + 296, 1144, 1455, + 111, 1155, 1446, + 0, 1169, 1433, + 0, 1188, 1416, + 0, 1211, 1392, + 0, 1240, 1358, + 0, 1277, 1307, + 0, 1322, 1230, + 0, 1375, 1100, + 0, 1438, 834, + 0, 1511, 0, + 0, 1593, 0, + 0, 1683, 0, + 0, 1782, 0, + 0, 1887, 0, + 0, 1998, 0, + 0, 2113, 0, + 0, 2233, 0, + 0, 2355, 0, + 0, 2480, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2863, 0, + 0, 2992, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3384, 0, + 0, 3516, 0, + 0, 3647, 0, + 919, 1137, 1510, + 902, 1142, 1507, + 879, 1148, 1502, + 847, 1156, 1496, + 799, 1167, 1488, + 726, 1180, 1477, + 606, 1198, 1461, + 371, 1221, 1439, + 0, 1250, 1409, + 0, 1286, 1364, + 0, 1330, 1296, + 0, 1382, 1186, + 0, 1444, 978, + 0, 1516, 303, + 0, 1597, 0, + 0, 1687, 0, + 0, 1785, 0, + 0, 1889, 0, + 0, 2000, 0, + 0, 2115, 0, + 0, 2234, 0, + 0, 2356, 0, + 0, 2480, 0, + 0, 2606, 0, + 0, 2734, 0, + 0, 2863, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3253, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3647, 0, + 1186, 1153, 1559, + 1177, 1158, 1556, + 1165, 1164, 1552, + 1148, 1171, 1546, + 1124, 1182, 1539, + 1090, 1195, 1529, + 1039, 1212, 1515, + 962, 1234, 1496, + 834, 1262, 1468, + 572, 1297, 1429, + 0, 1340, 1371, + 0, 1392, 1280, + 0, 1453, 1119, + 0, 1523, 738, + 0, 1603, 0, + 0, 1692, 0, + 0, 1789, 0, + 0, 1892, 0, + 0, 2002, 0, + 0, 2117, 0, + 0, 2235, 0, + 0, 2357, 0, + 0, 2481, 0, + 0, 2607, 0, + 0, 2735, 0, + 0, 2863, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3647, 0, + 1398, 1174, 1617, + 1393, 1178, 1614, + 1385, 1184, 1610, + 1375, 1191, 1606, + 1360, 1201, 1599, + 1340, 1214, 1590, + 1312, 1230, 1578, + 1271, 1251, 1561, + 1211, 1278, 1538, + 1114, 1312, 1505, + 942, 1354, 1456, + 504, 1404, 1382, + 0, 1463, 1258, + 0, 1532, 1012, + 0, 1611, 0, + 0, 1698, 0, + 0, 1794, 0, + 0, 1896, 0, + 0, 2005, 0, + 0, 2119, 0, + 0, 2237, 0, + 0, 2358, 0, + 0, 2482, 0, + 0, 2608, 0, + 0, 2735, 0, + 0, 2864, 0, + 0, 2993, 0, + 0, 3123, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3647, 0, + 1582, 1200, 1684, + 1579, 1204, 1682, + 1573, 1209, 1679, + 1567, 1216, 1674, + 1557, 1225, 1669, + 1544, 1237, 1661, + 1527, 1253, 1651, + 1502, 1273, 1637, + 1466, 1299, 1617, + 1414, 1331, 1589, + 1332, 1371, 1549, + 1195, 1420, 1489, + 903, 1477, 1395, + 0, 1544, 1226, + 0, 1621, 810, + 0, 1707, 0, + 0, 1801, 0, + 0, 1902, 0, + 0, 2010, 0, + 0, 2123, 0, + 0, 2240, 0, + 0, 2360, 0, + 0, 2484, 0, + 0, 2609, 0, + 0, 2736, 0, + 0, 2864, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 1750, 1232, 1761, + 1747, 1236, 1759, + 1744, 1241, 1756, + 1739, 1248, 1753, + 1732, 1256, 1748, + 1724, 1268, 1742, + 1712, 1282, 1733, + 1695, 1301, 1721, + 1672, 1326, 1705, + 1640, 1356, 1682, + 1592, 1394, 1650, + 1520, 1440, 1602, + 1400, 1495, 1530, + 1165, 1560, 1412, + 102, 1634, 1180, + 0, 1718, 189, + 0, 1809, 0, + 0, 1909, 0, + 0, 2015, 0, + 0, 2127, 0, + 0, 2243, 0, + 0, 2363, 0, + 0, 2486, 0, + 0, 2611, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 1906, 1272, 1846, + 1905, 1276, 1845, + 1902, 1280, 1843, + 1899, 1286, 1840, + 1894, 1294, 1836, + 1888, 1305, 1831, + 1880, 1319, 1824, + 1869, 1336, 1814, + 1853, 1359, 1801, + 1831, 1387, 1782, + 1801, 1422, 1757, + 1756, 1466, 1720, + 1689, 1518, 1665, + 1580, 1580, 1580, + 1375, 1651, 1434, + 723, 1732, 1111, + 0, 1821, 0, + 0, 1918, 0, + 0, 2023, 0, + 0, 2133, 0, + 0, 2248, 0, + 0, 2366, 0, + 0, 2488, 0, + 0, 2613, 0, + 0, 2739, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2056, 1321, 1941, + 2055, 1324, 1939, + 2053, 1328, 1938, + 2051, 1334, 1935, + 2047, 1341, 1932, + 2043, 1350, 1928, + 2037, 1363, 1922, + 2029, 1379, 1914, + 2018, 1399, 1904, + 2003, 1425, 1889, + 1983, 1458, 1869, + 1953, 1498, 1840, + 1911, 1547, 1799, + 1847, 1605, 1737, + 1745, 1673, 1639, + 1558, 1750, 1461, + 1037, 1836, 997, + 0, 1931, 0, + 0, 2032, 0, + 0, 2140, 0, + 0, 2254, 0, + 0, 2371, 0, + 0, 2492, 0, + 0, 2615, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2996, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 2201, 1379, 2042, + 2200, 1382, 2041, + 2199, 1386, 2040, + 2197, 1390, 2038, + 2195, 1397, 2035, + 2191, 1405, 2032, + 2187, 1416, 2027, + 2182, 1430, 2021, + 2174, 1449, 2013, + 2163, 1472, 2001, + 2149, 1502, 1986, + 2129, 1538, 1964, + 2100, 1583, 1933, + 2059, 1637, 1887, + 1998, 1701, 1819, + 1900, 1774, 1707, + 1724, 1856, 1496, + 1270, 1947, 780, + 0, 2045, 0, + 0, 2151, 0, + 0, 2262, 0, + 0, 2377, 0, + 0, 2497, 0, + 0, 2619, 0, + 0, 2744, 0, + 0, 2870, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 2342, 1447, 2150, + 2342, 1449, 2149, + 2341, 1452, 2148, + 2339, 1456, 2146, + 2338, 1462, 2145, + 2335, 1469, 2142, + 2332, 1479, 2138, + 2328, 1491, 2133, + 2323, 1507, 2127, + 2315, 1528, 2118, + 2305, 1554, 2106, + 2290, 1587, 2089, + 2271, 1628, 2066, + 2243, 1677, 2032, + 2203, 1735, 1984, + 2143, 1803, 1909, + 2049, 1881, 1785, + 1880, 1967, 1538, + 1465, 2062, 3, + 0, 2164, 0, + 0, 2272, 0, + 0, 2385, 0, + 0, 2503, 0, + 0, 2624, 0, + 0, 2747, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3128, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2481, 1524, 2263, + 2481, 1526, 2262, + 2480, 1528, 2261, + 2479, 1532, 2260, + 2478, 1537, 2259, + 2476, 1543, 2257, + 2474, 1551, 2254, + 2471, 1561, 2250, + 2467, 1575, 2245, + 2461, 1593, 2238, + 2454, 1616, 2229, + 2444, 1645, 2216, + 2430, 1681, 2199, + 2410, 1725, 2174, + 2383, 1778, 2139, + 2344, 1840, 2087, + 2285, 1912, 2007, + 2193, 1993, 1872, + 2030, 2083, 1589, + 1639, 2181, 0, + 0, 2285, 0, + 0, 2396, 0, + 0, 2511, 0, + 0, 2630, 0, + 0, 2752, 0, + 0, 2876, 0, + 0, 3003, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 2618, 1610, 2380, + 2618, 1611, 2380, + 2617, 1614, 2379, + 2617, 1617, 2378, + 2616, 1620, 2377, + 2615, 1626, 2375, + 2613, 1632, 2373, + 2611, 1641, 2370, + 2608, 1653, 2367, + 2604, 1668, 2361, + 2598, 1687, 2354, + 2591, 1712, 2345, + 2581, 1743, 2331, + 2567, 1782, 2313, + 2548, 1829, 2287, + 2521, 1885, 2251, + 2482, 1950, 2197, + 2424, 2026, 2112, + 2333, 2110, 1967, + 2174, 2202, 1650, + 1800, 2303, 0, + 0, 2409, 0, + 0, 2522, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 2754, 1704, 2501, + 2754, 1705, 2500, + 2754, 1707, 2500, + 2753, 1710, 2499, + 2752, 1713, 2498, + 2751, 1717, 2497, + 2750, 1723, 2496, + 2749, 1730, 2493, + 2746, 1739, 2490, + 2743, 1752, 2486, + 2739, 1768, 2481, + 2734, 1789, 2474, + 2727, 1815, 2464, + 2717, 1849, 2450, + 2703, 1889, 2432, + 2684, 1939, 2405, + 2657, 1997, 2367, + 2619, 2066, 2311, + 2562, 2143, 2223, + 2472, 2230, 2069, + 2315, 2325, 1720, + 1952, 2427, 0, + 0, 2535, 0, + 0, 2649, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3011, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3392, 0, + 0, 3522, 0, + 0, 3652, 0, + 2889, 1806, 2624, + 2889, 1807, 2624, + 2889, 1808, 2624, + 2888, 1810, 2623, + 2888, 1813, 2622, + 2887, 1816, 2621, + 2886, 1821, 2620, + 2885, 1826, 2619, + 2883, 1834, 2616, + 2881, 1844, 2613, + 2878, 1858, 2609, + 2874, 1875, 2604, + 2869, 1897, 2596, + 2861, 1925, 2586, + 2852, 1959, 2572, + 2838, 2002, 2553, + 2819, 2054, 2526, + 2792, 2114, 2487, + 2754, 2185, 2429, + 2698, 2265, 2338, + 2609, 2353, 2178, + 2454, 2450, 1799, + 2099, 2553, 0, + 0, 2663, 0, + 0, 2777, 0, + 0, 2896, 0, + 0, 3018, 0, + 0, 3142, 0, + 0, 3268, 0, + 0, 3395, 0, + 0, 3524, 0, + 0, 3653, 0, + 3023, 1914, 2750, + 3023, 1915, 2749, + 3023, 1916, 2749, + 3023, 1917, 2749, + 3022, 1919, 2748, + 3022, 1922, 2748, + 3021, 1925, 2747, + 3020, 1930, 2745, + 3019, 1936, 2744, + 3017, 1944, 2741, + 3015, 1955, 2738, + 3012, 1969, 2734, + 3008, 1987, 2729, + 3003, 2010, 2721, + 2996, 2039, 2711, + 2986, 2075, 2697, + 2972, 2119, 2677, + 2953, 2172, 2650, + 2927, 2235, 2610, + 2889, 2307, 2551, + 2833, 2388, 2457, + 2744, 2478, 2291, + 2591, 2576, 1888, + 2242, 2681, 0, + 0, 2792, 0, + 0, 2907, 0, + 0, 3026, 0, + 0, 3148, 0, + 0, 3273, 0, + 0, 3399, 0, + 0, 3527, 0, + 0, 3655, 0, + 3157, 2027, 2877, + 3157, 2028, 2877, + 3157, 2028, 2876, + 3156, 2030, 2876, + 3156, 2031, 2876, + 3156, 2033, 2875, + 3155, 2036, 2874, + 3155, 2040, 2874, + 3154, 2045, 2872, + 3152, 2051, 2871, + 3151, 2059, 2868, + 3149, 2071, 2865, + 3146, 2085, 2861, + 3142, 2104, 2855, + 3136, 2127, 2848, + 3129, 2157, 2837, + 3119, 2194, 2823, + 3106, 2240, 2803, + 3087, 2294, 2775, + 3061, 2358, 2735, + 3023, 2431, 2675, + 2967, 2514, 2579, + 2879, 2605, 2409, + 2727, 2704, 1984, + 2382, 2810, 0, + 0, 2921, 0, + 0, 3037, 0, + 0, 3157, 0, + 0, 3279, 0, + 0, 3404, 0, + 0, 3530, 0, + 0, 3658, 0, + 3290, 2144, 3005, + 3290, 2145, 3005, + 3290, 2145, 3005, + 3290, 2146, 3005, + 3290, 2148, 3004, + 3289, 2149, 3004, + 3289, 2151, 3003, + 3288, 2154, 3003, + 3288, 2158, 3002, + 3287, 2163, 3000, + 3286, 2170, 2999, + 3284, 2178, 2996, + 3282, 2190, 2993, + 3279, 2205, 2989, + 3275, 2224, 2983, + 3270, 2248, 2976, + 3262, 2279, 2965, + 3253, 2317, 2951, + 3239, 2363, 2931, + 3220, 2418, 2902, + 3194, 2483, 2862, + 3156, 2558, 2801, + 3101, 2641, 2704, + 3013, 2733, 2530, + 2862, 2833, 2087, + 2520, 2939, 0, + 0, 3051, 0, + 0, 3168, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 3423, 2265, 3134, + 3423, 2265, 3134, + 3423, 2266, 3134, + 3423, 2267, 3134, + 3423, 2268, 3134, + 3422, 2269, 3133, + 3422, 2270, 3133, + 3422, 2273, 3132, + 3421, 2276, 3132, + 3421, 2279, 3131, + 3420, 2285, 3130, + 3418, 2291, 3128, + 3417, 2300, 3125, + 3415, 2312, 3122, + 3412, 2327, 3118, + 3408, 2347, 3112, + 3403, 2371, 3105, + 3395, 2403, 3094, + 3386, 2441, 3080, + 3372, 2488, 3059, + 3353, 2545, 3031, + 3327, 2610, 2990, + 3290, 2685, 2928, + 3234, 2770, 2830, + 3147, 2863, 2654, + 2996, 2963, 2197, + 2656, 3070, 0, + 0, 3182, 0, + 0, 3298, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 3556, 2388, 3264, + 3556, 2389, 3264, + 3556, 2389, 3264, + 3556, 2390, 3264, + 3555, 2390, 3264, + 3555, 2391, 3264, + 3555, 2393, 3263, + 3555, 2394, 3263, + 3554, 2397, 3262, + 3554, 2400, 3262, + 3553, 2403, 3261, + 3552, 2409, 3259, + 3551, 2416, 3258, + 3550, 2425, 3255, + 3547, 2437, 3252, + 3544, 2452, 3248, + 3541, 2472, 3242, + 3535, 2497, 3234, + 3528, 2529, 3224, + 3518, 2568, 3209, + 3505, 2615, 3189, + 3486, 2672, 3160, + 3460, 2738, 3119, + 3422, 2814, 3057, + 3367, 2899, 2958, + 3280, 2992, 2780, + 3130, 3093, 2311, + 2791, 3200, 0, + 0, 3313, 0, + 0, 3430, 0, + 0, 3550, 0, + 0, 3673, 0, + 3688, 2514, 3395, + 3688, 2514, 3395, + 3688, 2515, 3395, + 3688, 2515, 3395, + 3688, 2515, 3394, + 3688, 2516, 3394, + 3688, 2517, 3394, + 3688, 2518, 3394, + 3687, 2520, 3393, + 3687, 2522, 3393, + 3686, 2525, 3392, + 3686, 2529, 3391, + 3685, 2535, 3390, + 3684, 2542, 3388, + 3682, 2551, 3386, + 3680, 2563, 3383, + 3677, 2579, 3378, + 3673, 2599, 3373, + 3668, 2624, 3365, + 3661, 2656, 3354, + 3651, 2696, 3339, + 3637, 2744, 3319, + 3619, 2801, 3290, + 3593, 2868, 3249, + 3555, 2944, 3186, + 3500, 3029, 3087, + 3413, 3123, 2907, + 3263, 3224, 2429, + 2926, 3331, 0, + 0, 3444, 0, + 0, 3561, 0, + 0, 3682, 0, + 3821, 2641, 3526, + 3821, 2641, 3526, + 3821, 2641, 3526, + 3821, 2642, 3526, + 3821, 2642, 3525, + 3821, 2643, 3525, + 3820, 2643, 3525, + 3820, 2644, 3525, + 3820, 2646, 3525, + 3820, 2647, 3524, + 3819, 2650, 3524, + 3819, 2653, 3523, + 3818, 2657, 3522, + 3817, 2662, 3521, + 3816, 2669, 3519, + 3815, 2679, 3517, + 3812, 2691, 3513, + 3809, 2706, 3509, + 3806, 2727, 3503, + 3800, 2752, 3495, + 3793, 2785, 3485, + 3783, 2825, 3470, + 3770, 2873, 3450, + 3751, 2930, 3421, + 3725, 2998, 3379, + 3688, 3074, 3316, + 3632, 3160, 3216, + 3546, 3254, 3035, + 3396, 3355, 2551, + 3060, 3463, 0, + 0, 3576, 0, + 0, 3693, 0, + 3953, 2769, 3657, + 3953, 2770, 3657, + 3953, 2770, 3657, + 3953, 2770, 3657, + 3953, 2770, 3657, + 3953, 2771, 3657, + 3953, 2771, 3656, + 3953, 2772, 3656, + 3953, 2773, 3656, + 3952, 2774, 3656, + 3952, 2776, 3655, + 3952, 2778, 3655, + 3951, 2781, 3654, + 3951, 2785, 3653, + 3950, 2791, 3652, + 3948, 2798, 3650, + 3947, 2807, 3648, + 3945, 2820, 3644, + 3942, 2835, 3640, + 3938, 2856, 3634, + 3933, 2882, 3627, + 3925, 2914, 3616, + 3916, 2954, 3601, + 3902, 3003, 3581, + 3884, 3061, 3552, + 3858, 3128, 3510, + 3820, 3205, 3447, + 3765, 3291, 3347, + 3678, 3385, 3165, + 3528, 3486, 2675, + 3193, 3594, 0, + 0, 3707, 0, + 4085, 2899, 3788, + 4085, 2899, 3788, + 4085, 2899, 3788, + 4085, 2899, 3788, + 4085, 2899, 3788, + 4085, 2900, 3788, + 4085, 2900, 3788, + 4085, 2901, 3788, + 4085, 2901, 3788, + 4085, 2902, 3787, + 4085, 2904, 3787, + 4084, 2905, 3787, + 4084, 2908, 3786, + 4084, 2911, 3785, + 4083, 2915, 3784, + 4082, 2920, 3783, + 4081, 2928, 3781, + 4079, 2937, 3779, + 4077, 2949, 3776, + 4074, 2965, 3772, + 4070, 2986, 3766, + 4065, 3012, 3758, + 4058, 3044, 3747, + 4048, 3084, 3732, + 4035, 3133, 3712, + 4016, 3191, 3683, + 3990, 3259, 3641, + 3952, 3336, 3578, + 3897, 3422, 3477, + 3811, 3516, 3295, + 3661, 3618, 2801, + 3326, 3726, 0, + 4095, 3029, 3920, + 4095, 3029, 3920, + 4095, 3029, 3920, + 4095, 3029, 3920, + 4095, 3029, 3920, + 4095, 3029, 3920, + 4095, 3030, 3920, + 4095, 3030, 3920, + 4095, 3031, 3919, + 4095, 3031, 3919, + 4095, 3032, 3919, + 4095, 3034, 3919, + 4095, 3035, 3918, + 4095, 3038, 3918, + 4095, 3041, 3917, + 4095, 3045, 3916, + 4095, 3050, 3915, + 4095, 3058, 3913, + 4095, 3067, 3911, + 4095, 3079, 3907, + 4095, 3095, 3903, + 4095, 3116, 3897, + 4095, 3142, 3889, + 4095, 3175, 3879, + 4095, 3215, 3864, + 4095, 3264, 3843, + 4095, 3322, 3814, + 4095, 3390, 3772, + 4085, 3467, 3709, + 4029, 3553, 3609, + 3943, 3648, 3425, + 3793, 3750, 2928, + 4095, 3159, 4052, + 4095, 3159, 4052, + 4095, 3159, 4052, + 4095, 3159, 4052, + 4095, 3160, 4052, + 4095, 3160, 4051, + 4095, 3160, 4051, + 4095, 3160, 4051, + 4095, 3161, 4051, + 4095, 3161, 4051, + 4095, 3162, 4051, + 4095, 3163, 4051, + 4095, 3164, 4050, + 4095, 3166, 4050, + 4095, 3168, 4049, + 4095, 3171, 4049, + 4095, 3176, 4048, + 4095, 3181, 4046, + 4095, 3188, 4045, + 4095, 3198, 4042, + 4095, 3210, 4039, + 4095, 3226, 4035, + 4095, 3247, 4029, + 4095, 3273, 4021, + 4095, 3306, 4010, + 4095, 3346, 3996, + 4095, 3395, 3975, + 4095, 3454, 3946, + 4095, 3521, 3904, + 4095, 3599, 3841, + 4095, 3685, 3740, + 4075, 3780, 3556, + 0, 1218, 1478, + 0, 1222, 1474, + 0, 1228, 1469, + 0, 1234, 1463, + 0, 1243, 1454, + 0, 1255, 1441, + 0, 1270, 1424, + 0, 1290, 1401, + 0, 1314, 1367, + 0, 1346, 1318, + 0, 1384, 1242, + 0, 1431, 1116, + 0, 1488, 863, + 0, 1553, 0, + 0, 1629, 0, + 0, 1713, 0, + 0, 1806, 0, + 0, 1906, 0, + 0, 2013, 0, + 0, 2125, 0, + 0, 2242, 0, + 0, 2362, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1220, 1483, + 0, 1224, 1479, + 0, 1229, 1475, + 0, 1236, 1468, + 0, 1245, 1459, + 0, 1256, 1447, + 0, 1271, 1430, + 0, 1291, 1407, + 0, 1316, 1374, + 0, 1347, 1325, + 0, 1385, 1251, + 0, 1432, 1128, + 0, 1488, 883, + 0, 1554, 0, + 0, 1629, 0, + 0, 1713, 0, + 0, 1806, 0, + 0, 1906, 0, + 0, 2013, 0, + 0, 2125, 0, + 0, 2242, 0, + 0, 2362, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1222, 1490, + 0, 1225, 1486, + 0, 1231, 1482, + 0, 1237, 1475, + 0, 1246, 1467, + 0, 1258, 1455, + 0, 1273, 1438, + 0, 1292, 1415, + 0, 1317, 1383, + 0, 1348, 1335, + 0, 1387, 1263, + 0, 1433, 1143, + 0, 1489, 909, + 0, 1555, 0, + 0, 1630, 0, + 0, 1714, 0, + 0, 1807, 0, + 0, 1907, 0, + 0, 2013, 0, + 0, 2125, 0, + 0, 2242, 0, + 0, 2362, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1224, 1499, + 0, 1228, 1496, + 0, 1233, 1491, + 0, 1240, 1485, + 0, 1248, 1476, + 0, 1260, 1465, + 0, 1275, 1449, + 0, 1294, 1426, + 0, 1319, 1395, + 0, 1350, 1348, + 0, 1388, 1278, + 0, 1435, 1163, + 0, 1491, 942, + 0, 1556, 111, + 0, 1631, 0, + 0, 1715, 0, + 0, 1807, 0, + 0, 1907, 0, + 0, 2014, 0, + 0, 2126, 0, + 0, 2242, 0, + 0, 2362, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1227, 1511, + 0, 1231, 1508, + 0, 1236, 1503, + 0, 1243, 1497, + 0, 1251, 1489, + 0, 1263, 1478, + 0, 1278, 1462, + 0, 1297, 1441, + 0, 1321, 1410, + 0, 1352, 1365, + 0, 1390, 1298, + 0, 1437, 1188, + 0, 1492, 982, + 0, 1557, 317, + 0, 1632, 0, + 0, 1716, 0, + 0, 1808, 0, + 0, 1908, 0, + 0, 2014, 0, + 0, 2126, 0, + 0, 2243, 0, + 0, 2363, 0, + 0, 2485, 0, + 0, 2610, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1231, 1527, + 0, 1235, 1524, + 0, 1240, 1519, + 0, 1247, 1514, + 0, 1255, 1506, + 0, 1267, 1495, + 0, 1281, 1480, + 0, 1300, 1459, + 0, 1325, 1429, + 0, 1355, 1387, + 0, 1393, 1322, + 0, 1439, 1219, + 0, 1495, 1030, + 0, 1559, 497, + 0, 1634, 0, + 0, 1717, 0, + 0, 1809, 0, + 0, 1909, 0, + 0, 2015, 0, + 0, 2127, 0, + 0, 2243, 0, + 0, 2363, 0, + 0, 2486, 0, + 0, 2611, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3254, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1237, 1547, + 0, 1240, 1544, + 0, 1245, 1540, + 0, 1252, 1534, + 0, 1260, 1527, + 0, 1272, 1516, + 0, 1286, 1502, + 0, 1305, 1482, + 0, 1329, 1454, + 0, 1360, 1414, + 0, 1397, 1354, + 0, 1443, 1258, + 0, 1498, 1088, + 0, 1562, 662, + 0, 1636, 0, + 0, 1719, 0, + 0, 1811, 0, + 0, 1910, 0, + 0, 2016, 0, + 0, 2128, 0, + 0, 2244, 0, + 0, 2363, 0, + 0, 2486, 0, + 0, 2611, 0, + 0, 2737, 0, + 0, 2865, 0, + 0, 2994, 0, + 0, 3124, 0, + 0, 3255, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 0, 1244, 1573, + 0, 1248, 1570, + 0, 1252, 1566, + 0, 1259, 1561, + 0, 1267, 1554, + 0, 1278, 1544, + 0, 1293, 1530, + 0, 1311, 1512, + 0, 1335, 1486, + 0, 1365, 1448, + 0, 1402, 1392, + 0, 1448, 1306, + 0, 1502, 1155, + 0, 1566, 818, + 0, 1639, 0, + 0, 1722, 0, + 0, 1813, 0, + 0, 1912, 0, + 0, 2017, 0, + 0, 2129, 0, + 0, 2244, 0, + 0, 2364, 0, + 0, 2486, 0, + 0, 2611, 0, + 0, 2738, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3124, 0, + 0, 3255, 0, + 0, 3385, 0, + 0, 3516, 0, + 0, 3648, 0, + 664, 1253, 1605, + 635, 1257, 1602, + 593, 1262, 1599, + 530, 1268, 1594, + 428, 1276, 1587, + 243, 1287, 1578, + 0, 1301, 1566, + 0, 1320, 1548, + 0, 1343, 1524, + 0, 1372, 1490, + 0, 1409, 1440, + 0, 1454, 1362, + 0, 1507, 1232, + 0, 1570, 966, + 0, 1643, 0, + 0, 1725, 0, + 0, 1816, 0, + 0, 1914, 0, + 0, 2019, 0, + 0, 2130, 0, + 0, 2245, 0, + 0, 2365, 0, + 0, 2487, 0, + 0, 2612, 0, + 0, 2738, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3124, 0, + 0, 3255, 0, + 0, 3385, 0, + 0, 3517, 0, + 0, 3648, 0, + 1063, 1266, 1645, + 1051, 1269, 1642, + 1034, 1274, 1639, + 1011, 1280, 1635, + 979, 1288, 1628, + 931, 1299, 1620, + 858, 1313, 1609, + 738, 1330, 1593, + 503, 1353, 1571, + 0, 1382, 1541, + 0, 1418, 1496, + 0, 1462, 1428, + 0, 1514, 1318, + 0, 1577, 1110, + 0, 1648, 435, + 0, 1729, 0, + 0, 1819, 0, + 0, 1917, 0, + 0, 2021, 0, + 0, 2132, 0, + 0, 2247, 0, + 0, 2366, 0, + 0, 2488, 0, + 0, 2612, 0, + 0, 2739, 0, + 0, 2866, 0, + 0, 2995, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 1325, 1282, 1693, + 1318, 1285, 1691, + 1309, 1290, 1688, + 1297, 1296, 1684, + 1280, 1303, 1678, + 1256, 1314, 1671, + 1222, 1327, 1661, + 1172, 1344, 1647, + 1095, 1366, 1628, + 966, 1394, 1601, + 704, 1429, 1562, + 0, 1472, 1503, + 0, 1524, 1412, + 0, 1585, 1251, + 0, 1655, 870, + 0, 1735, 0, + 0, 1824, 0, + 0, 1921, 0, + 0, 2024, 0, + 0, 2134, 0, + 0, 2249, 0, + 0, 2367, 0, + 0, 2489, 0, + 0, 2613, 0, + 0, 2739, 0, + 0, 2867, 0, + 0, 2995, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 1535, 1302, 1751, + 1530, 1306, 1749, + 1525, 1310, 1746, + 1517, 1316, 1742, + 1507, 1323, 1738, + 1492, 1333, 1731, + 1472, 1346, 1722, + 1444, 1362, 1710, + 1404, 1384, 1693, + 1343, 1411, 1670, + 1246, 1444, 1637, + 1074, 1486, 1588, + 636, 1536, 1514, + 0, 1595, 1390, + 0, 1664, 1144, + 0, 1743, 0, + 0, 1830, 0, + 0, 1926, 0, + 0, 2029, 0, + 0, 2137, 0, + 0, 2251, 0, + 0, 2369, 0, + 0, 2490, 0, + 0, 2614, 0, + 0, 2740, 0, + 0, 2867, 0, + 0, 2996, 0, + 0, 3125, 0, + 0, 3255, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 1717, 1329, 1818, + 1714, 1332, 1816, + 1711, 1336, 1814, + 1706, 1341, 1811, + 1699, 1348, 1806, + 1689, 1357, 1801, + 1676, 1370, 1793, + 1659, 1385, 1783, + 1634, 1406, 1769, + 1598, 1431, 1749, + 1546, 1464, 1721, + 1465, 1503, 1681, + 1327, 1552, 1621, + 1035, 1609, 1527, + 0, 1676, 1358, + 0, 1753, 942, + 0, 1839, 0, + 0, 1933, 0, + 0, 2034, 0, + 0, 2142, 0, + 0, 2255, 0, + 0, 2372, 0, + 0, 2492, 0, + 0, 2616, 0, + 0, 2741, 0, + 0, 2868, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 1884, 1361, 1894, + 1882, 1364, 1893, + 1879, 1368, 1891, + 1876, 1373, 1888, + 1871, 1380, 1885, + 1865, 1388, 1880, + 1856, 1400, 1874, + 1844, 1414, 1865, + 1827, 1433, 1853, + 1805, 1458, 1837, + 1772, 1488, 1814, + 1724, 1526, 1782, + 1652, 1572, 1734, + 1532, 1627, 1662, + 1297, 1692, 1544, + 234, 1766, 1313, + 0, 1850, 322, + 0, 1942, 0, + 0, 2041, 0, + 0, 2147, 0, + 0, 2259, 0, + 0, 2375, 0, + 0, 2495, 0, + 0, 2618, 0, + 0, 2743, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3648, 0, + 2040, 1402, 1980, + 2038, 1405, 1979, + 2037, 1408, 1977, + 2034, 1413, 1975, + 2031, 1419, 1972, + 2026, 1427, 1968, + 2020, 1437, 1963, + 2012, 1451, 1956, + 2001, 1468, 1946, + 1985, 1491, 1933, + 1964, 1519, 1914, + 1933, 1555, 1889, + 1888, 1598, 1852, + 1821, 1650, 1797, + 1712, 1712, 1712, + 1507, 1783, 1566, + 855, 1864, 1243, + 0, 1953, 0, + 0, 2051, 0, + 0, 2155, 0, + 0, 2265, 0, + 0, 2380, 0, + 0, 2499, 0, + 0, 2620, 0, + 0, 2745, 0, + 0, 2871, 0, + 0, 2999, 0, + 0, 3127, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 2189, 1451, 2074, + 2188, 1453, 2073, + 2187, 1456, 2071, + 2185, 1461, 2070, + 2183, 1466, 2067, + 2180, 1473, 2064, + 2175, 1483, 2060, + 2169, 1495, 2054, + 2161, 1511, 2046, + 2151, 1531, 2036, + 2136, 1557, 2021, + 2115, 1590, 2001, + 2085, 1630, 1972, + 2043, 1679, 1931, + 1979, 1737, 1869, + 1877, 1805, 1771, + 1690, 1882, 1593, + 1170, 1968, 1129, + 0, 2063, 0, + 0, 2165, 0, + 0, 2273, 0, + 0, 2386, 0, + 0, 2503, 0, + 0, 2624, 0, + 0, 2747, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3128, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2334, 1509, 2175, + 2333, 1511, 2174, + 2332, 1514, 2173, + 2331, 1518, 2172, + 2329, 1522, 2170, + 2327, 1529, 2167, + 2324, 1537, 2164, + 2319, 1548, 2159, + 2314, 1562, 2153, + 2306, 1581, 2145, + 2295, 1604, 2134, + 2281, 1634, 2118, + 2261, 1671, 2096, + 2232, 1716, 2065, + 2191, 1769, 2019, + 2130, 1833, 1951, + 2032, 1906, 1839, + 1856, 1988, 1628, + 1402, 2079, 912, + 0, 2177, 0, + 0, 2283, 0, + 0, 2394, 0, + 0, 2509, 0, + 0, 2629, 0, + 0, 2751, 0, + 0, 2876, 0, + 0, 3002, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 2475, 1577, 2283, + 2474, 1579, 2282, + 2474, 1581, 2281, + 2473, 1584, 2280, + 2472, 1588, 2279, + 2470, 1594, 2277, + 2468, 1601, 2274, + 2464, 1611, 2270, + 2460, 1623, 2266, + 2455, 1639, 2259, + 2447, 1660, 2250, + 2437, 1686, 2238, + 2423, 1719, 2221, + 2403, 1760, 2198, + 2375, 1809, 2165, + 2335, 1867, 2116, + 2275, 1935, 2041, + 2181, 2013, 1917, + 2012, 2099, 1670, + 1597, 2194, 135, + 0, 2296, 0, + 0, 2404, 0, + 0, 2517, 0, + 0, 2635, 0, + 0, 2756, 0, + 0, 2879, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3260, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2614, 1654, 2395, + 2613, 1656, 2395, + 2613, 1658, 2394, + 2612, 1660, 2393, + 2611, 1664, 2392, + 2610, 1669, 2391, + 2608, 1675, 2389, + 2606, 1683, 2386, + 2603, 1694, 2382, + 2599, 1707, 2377, + 2593, 1725, 2370, + 2586, 1748, 2361, + 2576, 1777, 2348, + 2562, 1813, 2331, + 2542, 1857, 2306, + 2515, 1910, 2271, + 2476, 1972, 2219, + 2417, 2044, 2139, + 2325, 2125, 2004, + 2162, 2215, 1721, + 1771, 2313, 0, + 0, 2417, 0, + 0, 2528, 0, + 0, 2643, 0, + 0, 2762, 0, + 0, 2884, 0, + 0, 3009, 0, + 0, 3135, 0, + 0, 3263, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 2751, 1741, 2513, + 2750, 1742, 2512, + 2750, 1744, 2512, + 2750, 1746, 2511, + 2749, 1749, 2510, + 2748, 1753, 2509, + 2747, 1758, 2507, + 2745, 1764, 2505, + 2743, 1773, 2502, + 2740, 1785, 2499, + 2736, 1800, 2493, + 2730, 1819, 2486, + 2723, 1844, 2477, + 2713, 1875, 2464, + 2699, 1914, 2445, + 2680, 1961, 2420, + 2653, 2017, 2383, + 2614, 2083, 2329, + 2556, 2158, 2244, + 2466, 2242, 2099, + 2306, 2335, 1782, + 1932, 2435, 0, + 0, 2542, 0, + 0, 2654, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 2887, 1835, 2633, + 2886, 1836, 2633, + 2886, 1838, 2633, + 2886, 1839, 2632, + 2885, 1842, 2631, + 2884, 1845, 2630, + 2884, 1849, 2629, + 2882, 1855, 2628, + 2881, 1862, 2625, + 2878, 1872, 2623, + 2875, 1884, 2619, + 2871, 1900, 2613, + 2866, 1921, 2606, + 2859, 1948, 2596, + 2849, 1981, 2582, + 2835, 2021, 2564, + 2816, 2071, 2537, + 2789, 2130, 2499, + 2751, 2198, 2443, + 2694, 2275, 2355, + 2604, 2362, 2201, + 2447, 2457, 1852, + 2084, 2559, 0, + 0, 2668, 0, + 0, 2781, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3143, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 3021, 1937, 2757, + 3021, 1938, 2756, + 3021, 1939, 2756, + 3021, 1940, 2756, + 3020, 1942, 2755, + 3020, 1945, 2754, + 3019, 1948, 2754, + 3018, 1953, 2752, + 3017, 1959, 2751, + 3015, 1966, 2748, + 3013, 1977, 2745, + 3010, 1990, 2741, + 3006, 2007, 2736, + 3001, 2029, 2728, + 2994, 2057, 2718, + 2984, 2092, 2705, + 2970, 2134, 2685, + 2951, 2186, 2658, + 2924, 2247, 2619, + 2886, 2317, 2561, + 2830, 2397, 2470, + 2741, 2485, 2310, + 2586, 2582, 1931, + 2231, 2685, 0, + 0, 2795, 0, + 0, 2910, 0, + 0, 3028, 0, + 0, 3150, 0, + 0, 3274, 0, + 0, 3400, 0, + 0, 3527, 0, + 0, 3656, 0, + 3155, 2045, 2882, + 3155, 2046, 2882, + 3155, 2047, 2882, + 3155, 2048, 2881, + 3155, 2049, 2881, + 3154, 2051, 2880, + 3154, 2054, 2880, + 3153, 2057, 2879, + 3152, 2062, 2877, + 3151, 2068, 2876, + 3149, 2077, 2874, + 3147, 2087, 2870, + 3144, 2101, 2866, + 3140, 2119, 2861, + 3135, 2142, 2853, + 3128, 2171, 2843, + 3118, 2207, 2829, + 3104, 2251, 2809, + 3085, 2304, 2782, + 3059, 2367, 2742, + 3021, 2439, 2683, + 2965, 2520, 2589, + 2877, 2610, 2423, + 2723, 2708, 2020, + 2374, 2813, 0, + 0, 2924, 0, + 0, 3039, 0, + 0, 3158, 0, + 0, 3280, 0, + 0, 3405, 0, + 0, 3531, 0, + 0, 3659, 0, + 3289, 2158, 3009, + 3289, 2159, 3009, + 3289, 2160, 3009, + 3289, 2160, 3009, + 3288, 2162, 3008, + 3288, 2163, 3008, + 3288, 2165, 3007, + 3287, 2168, 3007, + 3287, 2172, 3006, + 3286, 2177, 3004, + 3285, 2183, 3003, + 3283, 2192, 3000, + 3281, 2203, 2997, + 3278, 2217, 2993, + 3274, 2236, 2988, + 3269, 2259, 2980, + 3261, 2289, 2969, + 3251, 2326, 2955, + 3238, 2372, 2935, + 3219, 2426, 2907, + 3193, 2490, 2867, + 3155, 2563, 2807, + 3099, 2646, 2711, + 3011, 2737, 2541, + 2859, 2836, 2116, + 2514, 2942, 0, + 0, 3053, 0, + 0, 3169, 0, + 0, 3289, 0, + 0, 3411, 0, + 0, 3536, 0, + 0, 3662, 0, + 3422, 2276, 3137, + 3422, 2276, 3137, + 3422, 2277, 3137, + 3422, 2278, 3137, + 3422, 2278, 3137, + 3422, 2280, 3136, + 3421, 2281, 3136, + 3421, 2283, 3135, + 3420, 2286, 3135, + 3420, 2290, 3134, + 3419, 2295, 3133, + 3418, 2302, 3131, + 3416, 2310, 3128, + 3414, 2322, 3125, + 3411, 2337, 3121, + 3407, 2356, 3115, + 3402, 2380, 3108, + 3394, 2411, 3097, + 3385, 2449, 3083, + 3371, 2495, 3063, + 3352, 2551, 3035, + 3326, 2615, 2994, + 3289, 2690, 2933, + 3233, 2773, 2836, + 3145, 2866, 2662, + 2994, 2965, 2219, + 2652, 3072, 0, + 0, 3183, 0, + 0, 3300, 0, + 0, 3420, 0, + 0, 3542, 0, + 0, 3667, 0, + 3555, 2397, 3267, + 3555, 2397, 3266, + 3555, 2398, 3266, + 3555, 2398, 3266, + 3555, 2399, 3266, + 3555, 2400, 3266, + 3555, 2401, 3266, + 3554, 2403, 3265, + 3554, 2405, 3265, + 3553, 2408, 3264, + 3553, 2412, 3263, + 3552, 2417, 3262, + 3551, 2423, 3260, + 3549, 2432, 3258, + 3547, 2444, 3254, + 3544, 2459, 3250, + 3540, 2479, 3245, + 3535, 2504, 3237, + 3527, 2535, 3226, + 3518, 2573, 3212, + 3504, 2621, 3191, + 3485, 2677, 3163, + 3459, 2742, 3122, + 3422, 2818, 3060, + 3366, 2902, 2962, + 3279, 2995, 2786, + 3128, 3095, 2329, + 2788, 3202, 0, + 0, 3314, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 3688, 2520, 3396, + 3688, 2521, 3396, + 3688, 2521, 3396, + 3688, 2521, 3396, + 3688, 2522, 3396, + 3688, 2522, 3396, + 3687, 2523, 3396, + 3687, 2525, 3395, + 3687, 2526, 3395, + 3687, 2529, 3394, + 3686, 2532, 3394, + 3685, 2536, 3393, + 3684, 2541, 3391, + 3683, 2548, 3390, + 3682, 2557, 3387, + 3679, 2569, 3384, + 3677, 2584, 3380, + 3673, 2604, 3374, + 3667, 2629, 3366, + 3660, 2661, 3356, + 3650, 2700, 3341, + 3637, 2748, 3321, + 3618, 2804, 3292, + 3592, 2871, 3251, + 3555, 2946, 3189, + 3499, 3031, 3090, + 3412, 3125, 2912, + 3262, 3225, 2443, + 2923, 3332, 0, + 0, 3445, 0, + 0, 3562, 0, + 0, 3682, 0, + 3820, 2646, 3527, + 3820, 2646, 3527, + 3820, 2646, 3527, + 3820, 2647, 3527, + 3820, 2647, 3527, + 3820, 2648, 3527, + 3820, 2648, 3526, + 3820, 2649, 3526, + 3820, 2651, 3526, + 3819, 2652, 3525, + 3819, 2654, 3525, + 3819, 2658, 3524, + 3818, 2662, 3523, + 3817, 2667, 3522, + 3816, 2674, 3520, + 3814, 2683, 3518, + 3812, 2695, 3515, + 3809, 2711, 3510, + 3805, 2731, 3505, + 3800, 2756, 3497, + 3793, 2788, 3486, + 3783, 2828, 3471, + 3769, 2876, 3451, + 3751, 2933, 3422, + 3725, 3000, 3381, + 3687, 3076, 3318, + 3632, 3161, 3219, + 3545, 3255, 3039, + 3395, 3356, 2562, + 3058, 3463, 0, + 0, 3576, 0, + 0, 3693, 0, + 3953, 2773, 3658, + 3953, 2773, 3658, + 3953, 2773, 3658, + 3953, 2774, 3658, + 3953, 2774, 3658, + 3953, 2774, 3658, + 3953, 2775, 3657, + 3953, 2776, 3657, + 3952, 2777, 3657, + 3952, 2778, 3657, + 3952, 2780, 3656, + 3952, 2782, 3656, + 3951, 2785, 3655, + 3950, 2789, 3654, + 3949, 2794, 3653, + 3948, 2801, 3651, + 3947, 2811, 3649, + 3944, 2823, 3645, + 3942, 2839, 3641, + 3938, 2859, 3635, + 3932, 2885, 3628, + 3925, 2917, 3617, + 3915, 2957, 3602, + 3902, 3005, 3582, + 3883, 3063, 3553, + 3857, 3130, 3511, + 3820, 3206, 3449, + 3764, 3292, 3349, + 3678, 3386, 3167, + 3528, 3487, 2683, + 3192, 3595, 0, + 0, 3708, 0, + 4085, 2901, 3789, + 4085, 2902, 3789, + 4085, 2902, 3789, + 4085, 2902, 3789, + 4085, 2902, 3789, + 4085, 2902, 3789, + 4085, 2903, 3789, + 4085, 2903, 3789, + 4085, 2904, 3788, + 4085, 2905, 3788, + 4085, 2906, 3788, + 4084, 2908, 3787, + 4084, 2910, 3787, + 4083, 2913, 3786, + 4083, 2918, 3785, + 4082, 2923, 3784, + 4081, 2930, 3782, + 4079, 2939, 3780, + 4077, 2952, 3777, + 4074, 2968, 3772, + 4070, 2988, 3767, + 4065, 3014, 3759, + 4058, 3046, 3748, + 4048, 3086, 3733, + 4034, 3135, 3713, + 4016, 3193, 3684, + 3990, 3260, 3642, + 3952, 3337, 3579, + 3897, 3423, 3479, + 3810, 3517, 3297, + 3660, 3618, 2807, + 3325, 3726, 0, + 4095, 3031, 3920, + 4095, 3031, 3920, + 4095, 3031, 3920, + 4095, 3031, 3920, + 4095, 3031, 3920, + 4095, 3031, 3920, + 4095, 3032, 3920, + 4095, 3032, 3920, + 4095, 3033, 3920, + 4095, 3033, 3920, + 4095, 3034, 3920, + 4095, 3036, 3919, + 4095, 3037, 3919, + 4095, 3040, 3918, + 4095, 3043, 3918, + 4095, 3047, 3917, + 4095, 3052, 3915, + 4095, 3060, 3914, + 4095, 3069, 3911, + 4095, 3081, 3908, + 4095, 3097, 3904, + 4095, 3118, 3898, + 4095, 3144, 3890, + 4095, 3176, 3879, + 4095, 3217, 3864, + 4095, 3265, 3844, + 4095, 3323, 3815, + 4095, 3391, 3773, + 4085, 3468, 3710, + 4029, 3554, 3610, + 3943, 3648, 3427, + 3793, 3750, 2933, + 4095, 3161, 4052, + 4095, 3161, 4052, + 4095, 3161, 4052, + 4095, 3161, 4052, + 4095, 3161, 4052, + 4095, 3161, 4052, + 4095, 3161, 4052, + 4095, 3162, 4052, + 4095, 3162, 4052, + 4095, 3163, 4052, + 4095, 3163, 4051, + 4095, 3164, 4051, + 4095, 3166, 4051, + 4095, 3168, 4050, + 4095, 3170, 4050, + 4095, 3173, 4049, + 4095, 3177, 4048, + 4095, 3183, 4047, + 4095, 3190, 4045, + 4095, 3199, 4043, + 4095, 3212, 4040, + 4095, 3228, 4035, + 4095, 3248, 4029, + 4095, 3274, 4022, + 4095, 3307, 4011, + 4095, 3347, 3996, + 4095, 3396, 3975, + 4095, 3454, 3946, + 4095, 3522, 3904, + 4095, 3599, 3841, + 4095, 3685, 3741, + 4075, 3780, 3557, + 0, 1347, 1608, + 0, 1350, 1606, + 0, 1354, 1602, + 0, 1359, 1597, + 0, 1365, 1590, + 0, 1374, 1581, + 0, 1386, 1569, + 0, 1401, 1552, + 0, 1421, 1528, + 0, 1446, 1494, + 0, 1477, 1444, + 0, 1516, 1367, + 0, 1563, 1239, + 0, 1619, 979, + 0, 1685, 0, + 0, 1760, 0, + 0, 1845, 0, + 0, 1938, 0, + 0, 2038, 0, + 0, 2145, 0, + 0, 2257, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1348, 1612, + 0, 1351, 1610, + 0, 1354, 1606, + 0, 1360, 1601, + 0, 1366, 1595, + 0, 1375, 1586, + 0, 1387, 1573, + 0, 1402, 1557, + 0, 1422, 1533, + 0, 1447, 1499, + 0, 1478, 1450, + 0, 1516, 1374, + 0, 1564, 1248, + 0, 1620, 995, + 0, 1685, 0, + 0, 1761, 0, + 0, 1845, 0, + 0, 1938, 0, + 0, 2038, 0, + 0, 2145, 0, + 0, 2257, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1349, 1618, + 0, 1352, 1615, + 0, 1356, 1611, + 0, 1361, 1607, + 0, 1368, 1600, + 0, 1377, 1591, + 0, 1388, 1579, + 0, 1403, 1563, + 0, 1423, 1539, + 0, 1448, 1506, + 0, 1479, 1457, + 0, 1517, 1383, + 0, 1564, 1260, + 0, 1620, 1015, + 0, 1686, 0, + 0, 1761, 0, + 0, 1845, 0, + 0, 1938, 0, + 0, 2038, 0, + 0, 2145, 0, + 0, 2257, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1351, 1625, + 0, 1354, 1622, + 0, 1358, 1619, + 0, 1363, 1614, + 0, 1369, 1607, + 0, 1378, 1599, + 0, 1390, 1587, + 0, 1405, 1570, + 0, 1424, 1548, + 0, 1449, 1515, + 0, 1480, 1467, + 0, 1519, 1395, + 0, 1565, 1275, + 0, 1621, 1041, + 0, 1687, 0, + 0, 1762, 0, + 0, 1846, 0, + 0, 1939, 0, + 0, 2039, 0, + 0, 2145, 0, + 0, 2258, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1353, 1634, + 0, 1356, 1631, + 0, 1360, 1628, + 0, 1365, 1623, + 0, 1372, 1617, + 0, 1381, 1608, + 0, 1392, 1597, + 0, 1407, 1581, + 0, 1426, 1558, + 0, 1451, 1527, + 0, 1482, 1480, + 0, 1520, 1410, + 0, 1567, 1295, + 0, 1623, 1074, + 0, 1688, 244, + 0, 1763, 0, + 0, 1847, 0, + 0, 1939, 0, + 0, 2039, 0, + 0, 2146, 0, + 0, 2258, 0, + 0, 2374, 0, + 0, 2494, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3386, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1356, 1646, + 0, 1359, 1643, + 0, 1363, 1640, + 0, 1368, 1636, + 0, 1375, 1629, + 0, 1383, 1621, + 0, 1395, 1610, + 0, 1410, 1594, + 0, 1429, 1573, + 0, 1453, 1542, + 0, 1484, 1497, + 0, 1522, 1430, + 0, 1569, 1320, + 0, 1624, 1114, + 0, 1690, 449, + 0, 1764, 0, + 0, 1848, 0, + 0, 1940, 0, + 0, 2040, 0, + 0, 2146, 0, + 0, 2258, 0, + 0, 2375, 0, + 0, 2495, 0, + 0, 2617, 0, + 0, 2742, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1360, 1662, + 0, 1363, 1659, + 0, 1367, 1656, + 0, 1372, 1652, + 0, 1379, 1646, + 0, 1387, 1638, + 0, 1399, 1627, + 0, 1414, 1612, + 0, 1433, 1591, + 0, 1457, 1561, + 0, 1487, 1519, + 0, 1525, 1455, + 0, 1572, 1351, + 0, 1627, 1162, + 0, 1692, 629, + 0, 1766, 0, + 0, 1849, 0, + 0, 1941, 0, + 0, 2041, 0, + 0, 2147, 0, + 0, 2259, 0, + 0, 2375, 0, + 0, 2495, 0, + 0, 2618, 0, + 0, 2743, 0, + 0, 2869, 0, + 0, 2997, 0, + 0, 3126, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3648, 0, + 0, 1366, 1682, + 0, 1369, 1679, + 0, 1373, 1676, + 0, 1377, 1672, + 0, 1384, 1666, + 0, 1393, 1659, + 0, 1404, 1648, + 0, 1418, 1634, + 0, 1437, 1614, + 0, 1461, 1586, + 0, 1492, 1546, + 0, 1529, 1486, + 0, 1575, 1390, + 0, 1630, 1220, + 0, 1694, 795, + 0, 1768, 0, + 0, 1851, 0, + 0, 1943, 0, + 0, 2042, 0, + 0, 2148, 0, + 0, 2260, 0, + 0, 2376, 0, + 0, 2495, 0, + 0, 2618, 0, + 0, 2743, 0, + 0, 2870, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3649, 0, + 0, 1373, 1707, + 0, 1376, 1705, + 0, 1380, 1702, + 0, 1385, 1698, + 0, 1391, 1693, + 0, 1399, 1686, + 0, 1411, 1676, + 0, 1425, 1662, + 0, 1444, 1644, + 0, 1467, 1618, + 0, 1497, 1580, + 0, 1534, 1525, + 0, 1580, 1438, + 0, 1634, 1287, + 0, 1698, 950, + 0, 1771, 0, + 0, 1854, 0, + 0, 1945, 0, + 0, 2044, 0, + 0, 2149, 0, + 0, 2261, 0, + 0, 2377, 0, + 0, 2496, 0, + 0, 2619, 0, + 0, 2743, 0, + 0, 2870, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3256, 0, + 0, 3387, 0, + 0, 3517, 0, + 0, 3649, 0, + 817, 1383, 1739, + 796, 1385, 1737, + 767, 1389, 1734, + 725, 1394, 1731, + 662, 1400, 1726, + 560, 1408, 1719, + 375, 1419, 1710, + 0, 1433, 1698, + 0, 1452, 1680, + 0, 1475, 1656, + 0, 1504, 1622, + 0, 1541, 1572, + 0, 1586, 1494, + 0, 1639, 1364, + 0, 1702, 1098, + 0, 1775, 0, + 0, 1857, 0, + 0, 1948, 0, + 0, 2046, 0, + 0, 2151, 0, + 0, 2262, 0, + 0, 2378, 0, + 0, 2497, 0, + 0, 2619, 0, + 0, 2744, 0, + 0, 2870, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 1204, 1395, 1779, + 1195, 1398, 1777, + 1183, 1401, 1775, + 1166, 1406, 1771, + 1143, 1412, 1767, + 1111, 1420, 1761, + 1063, 1431, 1752, + 990, 1445, 1741, + 870, 1462, 1725, + 635, 1485, 1704, + 0, 1514, 1673, + 0, 1550, 1628, + 0, 1594, 1560, + 0, 1646, 1450, + 0, 1709, 1243, + 0, 1780, 567, + 0, 1861, 0, + 0, 1951, 0, + 0, 2049, 0, + 0, 2154, 0, + 0, 2264, 0, + 0, 2379, 0, + 0, 2498, 0, + 0, 2620, 0, + 0, 2744, 0, + 0, 2871, 0, + 0, 2998, 0, + 0, 3127, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 1462, 1411, 1827, + 1457, 1414, 1825, + 1450, 1417, 1823, + 1441, 1422, 1820, + 1429, 1428, 1816, + 1412, 1436, 1811, + 1388, 1446, 1803, + 1354, 1459, 1793, + 1304, 1476, 1779, + 1227, 1498, 1760, + 1098, 1526, 1733, + 836, 1561, 1694, + 0, 1604, 1636, + 0, 1656, 1544, + 0, 1717, 1383, + 0, 1787, 1003, + 0, 1867, 0, + 0, 1956, 0, + 0, 2053, 0, + 0, 2157, 0, + 0, 2266, 0, + 0, 2381, 0, + 0, 2499, 0, + 0, 2621, 0, + 0, 2745, 0, + 0, 2871, 0, + 0, 2999, 0, + 0, 3128, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 1670, 1432, 1884, + 1667, 1435, 1883, + 1663, 1438, 1881, + 1657, 1442, 1878, + 1649, 1448, 1875, + 1639, 1455, 1870, + 1624, 1465, 1863, + 1604, 1478, 1854, + 1576, 1494, 1842, + 1536, 1516, 1826, + 1475, 1543, 1802, + 1378, 1576, 1769, + 1206, 1618, 1720, + 769, 1668, 1646, + 0, 1728, 1522, + 0, 1797, 1276, + 0, 1875, 0, + 0, 1962, 0, + 0, 2058, 0, + 0, 2161, 0, + 0, 2270, 0, + 0, 2383, 0, + 0, 2501, 0, + 0, 2623, 0, + 0, 2746, 0, + 0, 2872, 0, + 0, 3000, 0, + 0, 3128, 0, + 0, 3257, 0, + 0, 3387, 0, + 0, 3518, 0, + 0, 3649, 0, + 1851, 1458, 1951, + 1849, 1461, 1950, + 1847, 1464, 1948, + 1843, 1468, 1946, + 1838, 1473, 1943, + 1831, 1480, 1939, + 1821, 1490, 1933, + 1809, 1502, 1925, + 1791, 1517, 1915, + 1766, 1538, 1901, + 1730, 1563, 1881, + 1678, 1596, 1853, + 1597, 1636, 1813, + 1459, 1684, 1753, + 1167, 1741, 1659, + 0, 1809, 1491, + 0, 1885, 1074, + 0, 1971, 0, + 0, 2065, 0, + 0, 2166, 0, + 0, 2274, 0, + 0, 2387, 0, + 0, 2504, 0, + 0, 2625, 0, + 0, 2748, 0, + 0, 2873, 0, + 0, 3000, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 2017, 1491, 2027, + 2016, 1494, 2026, + 2014, 1496, 2025, + 2011, 1500, 2023, + 2008, 1505, 2020, + 2003, 1512, 2017, + 1997, 1520, 2012, + 1988, 1532, 2006, + 1976, 1547, 1997, + 1960, 1566, 1985, + 1937, 1590, 1969, + 1904, 1620, 1946, + 1856, 1658, 1914, + 1784, 1704, 1867, + 1664, 1759, 1794, + 1430, 1824, 1676, + 367, 1898, 1445, + 0, 1982, 454, + 0, 2074, 0, + 0, 2173, 0, + 0, 2279, 0, + 0, 2391, 0, + 0, 2507, 0, + 0, 2627, 0, + 0, 2750, 0, + 0, 2875, 0, + 0, 3002, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 2173, 1532, 2113, + 2172, 1534, 2112, + 2171, 1537, 2111, + 2169, 1540, 2109, + 2166, 1545, 2107, + 2163, 1551, 2104, + 2158, 1559, 2100, + 2152, 1569, 2095, + 2144, 1583, 2088, + 2133, 1600, 2078, + 2117, 1623, 2065, + 2096, 1651, 2047, + 2065, 1687, 2021, + 2021, 1730, 1984, + 1953, 1782, 1929, + 1844, 1844, 1844, + 1639, 1915, 1698, + 988, 1996, 1375, + 0, 2085, 0, + 0, 2183, 0, + 0, 2287, 0, + 0, 2397, 0, + 0, 2512, 0, + 0, 2631, 0, + 0, 2753, 0, + 0, 2877, 0, + 0, 3003, 0, + 0, 3131, 0, + 0, 3259, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 2322, 1581, 2206, + 2321, 1583, 2206, + 2320, 1585, 2205, + 2319, 1588, 2204, + 2317, 1593, 2202, + 2315, 1598, 2199, + 2312, 1605, 2196, + 2307, 1615, 2192, + 2301, 1627, 2186, + 2293, 1643, 2179, + 2283, 1663, 2168, + 2268, 1690, 2153, + 2247, 1722, 2133, + 2218, 1763, 2105, + 2175, 1811, 2063, + 2111, 1870, 2001, + 2009, 1937, 1903, + 1822, 2014, 1725, + 1302, 2100, 1261, + 0, 2195, 0, + 0, 2297, 0, + 0, 2405, 0, + 0, 2518, 0, + 0, 2635, 0, + 0, 2756, 0, + 0, 2880, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2466, 1640, 2308, + 2466, 1641, 2307, + 2465, 1643, 2306, + 2464, 1646, 2305, + 2463, 1650, 2304, + 2461, 1655, 2302, + 2459, 1661, 2299, + 2456, 1669, 2296, + 2451, 1680, 2292, + 2446, 1694, 2285, + 2438, 1713, 2277, + 2427, 1736, 2266, + 2413, 1766, 2250, + 2393, 1803, 2228, + 2364, 1848, 2197, + 2323, 1902, 2152, + 2262, 1965, 2083, + 2164, 2038, 1971, + 1988, 2120, 1760, + 1534, 2211, 1044, + 0, 2309, 0, + 0, 2415, 0, + 0, 2526, 0, + 0, 2641, 0, + 0, 2761, 0, + 0, 2883, 0, + 0, 3008, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 2607, 1708, 2415, + 2607, 1709, 2415, + 2607, 1711, 2414, + 2606, 1713, 2413, + 2605, 1716, 2412, + 2604, 1721, 2411, + 2602, 1726, 2409, + 2600, 1733, 2406, + 2597, 1743, 2402, + 2592, 1755, 2398, + 2587, 1771, 2391, + 2579, 1792, 2382, + 2569, 1818, 2370, + 2555, 1851, 2353, + 2535, 1892, 2330, + 2507, 1941, 2297, + 2467, 1999, 2248, + 2407, 2067, 2173, + 2313, 2145, 2049, + 2144, 2231, 1802, + 1729, 2326, 267, + 0, 2428, 0, + 0, 2536, 0, + 0, 2649, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3011, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 2746, 1785, 2528, + 2746, 1786, 2528, + 2745, 1788, 2527, + 2745, 1790, 2526, + 2744, 1793, 2526, + 2743, 1796, 2524, + 2742, 1801, 2523, + 2740, 1807, 2521, + 2738, 1815, 2518, + 2735, 1826, 2514, + 2731, 1839, 2509, + 2726, 1857, 2502, + 2718, 1880, 2493, + 2708, 1909, 2480, + 2694, 1945, 2463, + 2674, 1989, 2438, + 2647, 2042, 2403, + 2608, 2104, 2351, + 2549, 2176, 2271, + 2457, 2257, 2136, + 2294, 2347, 1853, + 1903, 2445, 0, + 0, 2549, 0, + 0, 2660, 0, + 0, 2775, 0, + 0, 2894, 0, + 0, 3016, 0, + 0, 3141, 0, + 0, 3267, 0, + 0, 3395, 0, + 0, 3523, 0, + 0, 3653, 0, + 2883, 1872, 2645, + 2883, 1873, 2645, + 2883, 1874, 2644, + 2882, 1876, 2644, + 2882, 1878, 2643, + 2881, 1881, 2642, + 2880, 1885, 2641, + 2879, 1890, 2640, + 2877, 1897, 2637, + 2875, 1905, 2635, + 2872, 1917, 2631, + 2868, 1932, 2625, + 2862, 1952, 2618, + 2855, 1976, 2609, + 2845, 2008, 2596, + 2831, 2046, 2577, + 2812, 2093, 2552, + 2785, 2149, 2515, + 2746, 2215, 2461, + 2688, 2290, 2376, + 2598, 2374, 2231, + 2438, 2467, 1914, + 2064, 2567, 0, + 0, 2674, 0, + 0, 2786, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3271, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 3019, 1967, 2766, + 3019, 1967, 2765, + 3018, 1968, 2765, + 3018, 1970, 2765, + 3018, 1971, 2764, + 3017, 1974, 2763, + 3017, 1977, 2763, + 3016, 1981, 2761, + 3014, 1987, 2760, + 3013, 1994, 2758, + 3011, 2004, 2755, + 3008, 2016, 2751, + 3004, 2032, 2745, + 2998, 2053, 2738, + 2991, 2080, 2728, + 2981, 2113, 2715, + 2967, 2154, 2696, + 2948, 2203, 2669, + 2921, 2262, 2631, + 2883, 2330, 2575, + 2826, 2408, 2487, + 2736, 2494, 2334, + 2580, 2589, 1984, + 2216, 2691, 0, + 0, 2800, 0, + 0, 2913, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3275, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3154, 2069, 2889, + 3153, 2069, 2889, + 3153, 2070, 2888, + 3153, 2071, 2888, + 3153, 2072, 2888, + 3152, 2074, 2887, + 3152, 2077, 2887, + 3151, 2080, 2886, + 3150, 2085, 2884, + 3149, 2091, 2883, + 3147, 2098, 2881, + 3145, 2109, 2878, + 3142, 2122, 2873, + 3138, 2139, 2868, + 3133, 2161, 2861, + 3126, 2189, 2850, + 3116, 2224, 2837, + 3102, 2266, 2817, + 3083, 2318, 2790, + 3057, 2379, 2751, + 3018, 2449, 2693, + 2962, 2529, 2602, + 2873, 2617, 2442, + 2718, 2714, 2063, + 2363, 2818, 0, + 0, 2927, 0, + 0, 3042, 0, + 0, 3160, 0, + 0, 3282, 0, + 0, 3406, 0, + 0, 3532, 0, + 0, 3659, 0, + 3288, 2177, 3014, + 3288, 2177, 3014, + 3287, 2178, 3014, + 3287, 2179, 3014, + 3287, 2180, 3013, + 3287, 2181, 3013, + 3286, 2183, 3012, + 3286, 2186, 3012, + 3285, 2190, 3011, + 3284, 2194, 3010, + 3283, 2200, 3008, + 3281, 2209, 3006, + 3279, 2219, 3003, + 3276, 2233, 2998, + 3272, 2251, 2993, + 3267, 2274, 2985, + 3260, 2303, 2975, + 3250, 2339, 2961, + 3236, 2383, 2941, + 3217, 2437, 2914, + 3191, 2499, 2874, + 3153, 2571, 2815, + 3097, 2652, 2721, + 3009, 2743, 2556, + 2855, 2840, 2152, + 2506, 2945, 0, + 0, 3056, 0, + 0, 3171, 0, + 0, 3290, 0, + 0, 3412, 0, + 0, 3537, 0, + 0, 3663, 0, + 3421, 2290, 3141, + 3421, 2291, 3141, + 3421, 2291, 3141, + 3421, 2292, 3141, + 3421, 2293, 3141, + 3421, 2294, 3140, + 3420, 2295, 3140, + 3420, 2297, 3139, + 3419, 2300, 3139, + 3419, 2304, 3138, + 3418, 2309, 3136, + 3417, 2315, 3135, + 3415, 2324, 3132, + 3413, 2335, 3129, + 3410, 2349, 3125, + 3406, 2368, 3120, + 3401, 2392, 3112, + 3393, 2421, 3102, + 3384, 2459, 3087, + 3370, 2504, 3067, + 3351, 2558, 3039, + 3325, 2622, 2999, + 3287, 2696, 2939, + 3231, 2778, 2844, + 3143, 2869, 2673, + 2991, 2968, 2248, + 2646, 3074, 0, + 0, 3185, 0, + 0, 3301, 0, + 0, 3421, 0, + 0, 3543, 0, + 0, 3668, 0, + 3554, 2408, 3269, + 3554, 2408, 3269, + 3554, 2408, 3269, + 3554, 2409, 3269, + 3554, 2410, 3269, + 3554, 2411, 3269, + 3554, 2412, 3268, + 3553, 2413, 3268, + 3553, 2416, 3268, + 3553, 2418, 3267, + 3552, 2422, 3266, + 3551, 2427, 3265, + 3550, 2434, 3263, + 3548, 2443, 3261, + 3546, 2454, 3257, + 3543, 2469, 3253, + 3539, 2488, 3248, + 3534, 2512, 3240, + 3527, 2543, 3229, + 3517, 2581, 3215, + 3503, 2627, 3195, + 3485, 2683, 3167, + 3458, 2747, 3126, + 3421, 2822, 3065, + 3365, 2905, 2968, + 3277, 2998, 2794, + 3126, 3097, 2352, + 2784, 3204, 0, + 0, 3315, 0, + 0, 3432, 0, + 0, 3552, 0, + 0, 3674, 0, + 3687, 2529, 3399, + 3687, 2529, 3399, + 3687, 2529, 3399, + 3687, 2530, 3398, + 3687, 2530, 3398, + 3687, 2531, 3398, + 3687, 2532, 3398, + 3687, 2533, 3398, + 3686, 2535, 3397, + 3686, 2537, 3397, + 3685, 2540, 3396, + 3685, 2544, 3395, + 3684, 2549, 3394, + 3683, 2556, 3392, + 3681, 2565, 3390, + 3679, 2576, 3387, + 3676, 2591, 3382, + 3672, 2611, 3377, + 3667, 2636, 3369, + 3660, 2667, 3358, + 3650, 2706, 3344, + 3636, 2753, 3324, + 3618, 2809, 3295, + 3591, 2874, 3254, + 3554, 2950, 3192, + 3498, 3034, 3094, + 3411, 3127, 2918, + 3260, 3227, 2461, + 2920, 3334, 0, + 0, 3446, 0, + 0, 3563, 0, + 0, 3683, 0, + 3820, 2652, 3529, + 3820, 2652, 3529, + 3820, 2653, 3528, + 3820, 2653, 3528, + 3820, 2653, 3528, + 3820, 2654, 3528, + 3820, 2655, 3528, + 3820, 2656, 3528, + 3819, 2657, 3528, + 3819, 2658, 3527, + 3819, 2661, 3527, + 3818, 2664, 3526, + 3817, 2668, 3525, + 3817, 2673, 3524, + 3815, 2680, 3522, + 3814, 2689, 3519, + 3812, 2701, 3516, + 3809, 2716, 3512, + 3805, 2736, 3506, + 3799, 2761, 3499, + 3792, 2793, 3488, + 3782, 2832, 3473, + 3769, 2880, 3453, + 3750, 2936, 3424, + 3724, 3003, 3383, + 3687, 3078, 3321, + 3631, 3163, 3222, + 3544, 3257, 3044, + 3394, 3357, 2575, + 3056, 3465, 0, + 0, 3577, 0, + 0, 3694, 0, + 3953, 2778, 3659, + 3953, 2778, 3659, + 3953, 2778, 3659, + 3953, 2778, 3659, + 3952, 2779, 3659, + 3952, 2779, 3659, + 3952, 2780, 3659, + 3952, 2780, 3658, + 3952, 2781, 3658, + 3952, 2783, 3658, + 3952, 2784, 3658, + 3951, 2787, 3657, + 3951, 2790, 3656, + 3950, 2794, 3655, + 3949, 2799, 3654, + 3948, 2806, 3652, + 3946, 2815, 3650, + 3944, 2827, 3647, + 3941, 2843, 3642, + 3937, 2863, 3637, + 3932, 2888, 3629, + 3925, 2920, 3618, + 3915, 2960, 3604, + 3902, 3008, 3583, + 3883, 3065, 3554, + 3857, 3132, 3513, + 3819, 3208, 3450, + 3764, 3293, 3351, + 3677, 3387, 3171, + 3527, 3488, 2694, + 3190, 3596, 0, + 0, 3708, 0, + 4085, 2905, 3790, + 4085, 2905, 3790, + 4085, 2905, 3790, + 4085, 2905, 3790, + 4085, 2906, 3790, + 4085, 2906, 3790, + 4085, 2906, 3790, + 4085, 2907, 3789, + 4085, 2908, 3789, + 4084, 2909, 3789, + 4084, 2910, 3789, + 4084, 2912, 3788, + 4084, 2914, 3788, + 4083, 2917, 3787, + 4082, 2921, 3786, + 4082, 2926, 3785, + 4080, 2933, 3783, + 4079, 2943, 3781, + 4077, 2955, 3778, + 4074, 2971, 3773, + 4070, 2991, 3768, + 4064, 3017, 3760, + 4057, 3049, 3749, + 4047, 3089, 3734, + 4034, 3137, 3714, + 4015, 3195, 3685, + 3989, 3262, 3643, + 3952, 3338, 3581, + 3896, 3424, 3481, + 3810, 3518, 3299, + 3660, 3619, 2815, + 3324, 3727, 0, + 4095, 3033, 3921, + 4095, 3034, 3921, + 4095, 3034, 3921, + 4095, 3034, 3921, + 4095, 3034, 3921, + 4095, 3034, 3921, + 4095, 3034, 3921, + 4095, 3035, 3921, + 4095, 3035, 3921, + 4095, 3036, 3920, + 4095, 3037, 3920, + 4095, 3038, 3920, + 4095, 3040, 3920, + 4095, 3042, 3919, + 4095, 3046, 3918, + 4095, 3050, 3917, + 4095, 3055, 3916, + 4095, 3062, 3914, + 4095, 3072, 3912, + 4095, 3084, 3909, + 4095, 3100, 3904, + 4095, 3120, 3899, + 4095, 3146, 3891, + 4095, 3178, 3880, + 4095, 3218, 3865, + 4095, 3267, 3845, + 4095, 3325, 3816, + 4095, 3392, 3774, + 4084, 3469, 3711, + 4029, 3555, 3611, + 3942, 3649, 3429, + 3793, 3751, 2939, + 4095, 3163, 4053, + 4095, 3163, 4052, + 4095, 3163, 4052, + 4095, 3163, 4052, + 4095, 3163, 4052, + 4095, 3163, 4052, + 4095, 3164, 4052, + 4095, 3164, 4052, + 4095, 3164, 4052, + 4095, 3165, 4052, + 4095, 3166, 4052, + 4095, 3167, 4052, + 4095, 3168, 4051, + 4095, 3170, 4051, + 4095, 3172, 4050, + 4095, 3175, 4050, + 4095, 3179, 4049, + 4095, 3185, 4047, + 4095, 3192, 4046, + 4095, 3201, 4043, + 4095, 3213, 4040, + 4095, 3229, 4036, + 4095, 3250, 4030, + 4095, 3276, 4022, + 4095, 3308, 4011, + 4095, 3349, 3997, + 4095, 3397, 3976, + 4095, 3455, 3947, + 4095, 3523, 3905, + 4095, 3600, 3842, + 4095, 3686, 3742, + 4075, 3780, 3559, + 0, 1476, 1739, + 0, 1478, 1737, + 0, 1481, 1735, + 0, 1485, 1731, + 0, 1490, 1726, + 0, 1497, 1719, + 0, 1506, 1710, + 0, 1518, 1698, + 0, 1533, 1681, + 0, 1552, 1657, + 0, 1577, 1622, + 0, 1609, 1572, + 0, 1647, 1494, + 0, 1695, 1365, + 0, 1751, 1099, + 0, 1817, 0, + 0, 1892, 0, + 0, 1976, 0, + 0, 2069, 0, + 0, 2170, 0, + 0, 2277, 0, + 0, 2389, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3518, 0, + 0, 3649, 0, + 0, 1477, 1742, + 0, 1479, 1740, + 0, 1482, 1738, + 0, 1486, 1734, + 0, 1491, 1729, + 0, 1498, 1723, + 0, 1507, 1713, + 0, 1518, 1701, + 0, 1533, 1684, + 0, 1553, 1660, + 0, 1578, 1626, + 0, 1609, 1576, + 0, 1648, 1500, + 0, 1695, 1371, + 0, 1751, 1111, + 0, 1817, 0, + 0, 1892, 0, + 0, 1977, 0, + 0, 2070, 0, + 0, 2170, 0, + 0, 2277, 0, + 0, 2389, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1478, 1746, + 0, 1480, 1744, + 0, 1483, 1742, + 0, 1487, 1738, + 0, 1492, 1733, + 0, 1499, 1727, + 0, 1507, 1718, + 0, 1519, 1706, + 0, 1534, 1689, + 0, 1554, 1665, + 0, 1579, 1631, + 0, 1610, 1582, + 0, 1649, 1506, + 0, 1696, 1380, + 0, 1752, 1127, + 0, 1818, 0, + 0, 1893, 0, + 0, 1977, 0, + 0, 2070, 0, + 0, 2170, 0, + 0, 2277, 0, + 0, 2389, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1479, 1752, + 0, 1481, 1750, + 0, 1484, 1747, + 0, 1488, 1744, + 0, 1493, 1739, + 0, 1500, 1732, + 0, 1509, 1723, + 0, 1520, 1711, + 0, 1535, 1695, + 0, 1555, 1671, + 0, 1580, 1638, + 0, 1611, 1590, + 0, 1650, 1515, + 0, 1696, 1392, + 0, 1753, 1147, + 0, 1818, 0, + 0, 1893, 0, + 0, 1978, 0, + 0, 2070, 0, + 0, 2171, 0, + 0, 2277, 0, + 0, 2389, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1481, 1759, + 0, 1483, 1757, + 0, 1486, 1754, + 0, 1490, 1751, + 0, 1495, 1746, + 0, 1502, 1740, + 0, 1510, 1731, + 0, 1522, 1719, + 0, 1537, 1703, + 0, 1556, 1680, + 0, 1581, 1647, + 0, 1612, 1600, + 0, 1651, 1527, + 0, 1698, 1407, + 0, 1754, 1173, + 0, 1819, 122, + 0, 1894, 0, + 0, 1978, 0, + 0, 2071, 0, + 0, 2171, 0, + 0, 2278, 0, + 0, 2390, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1483, 1768, + 0, 1485, 1766, + 0, 1488, 1763, + 0, 1492, 1760, + 0, 1497, 1755, + 0, 1504, 1749, + 0, 1513, 1741, + 0, 1524, 1729, + 0, 1539, 1713, + 0, 1558, 1691, + 0, 1583, 1659, + 0, 1614, 1612, + 0, 1652, 1542, + 0, 1699, 1427, + 0, 1755, 1206, + 0, 1820, 376, + 0, 1895, 0, + 0, 1979, 0, + 0, 2071, 0, + 0, 2171, 0, + 0, 2278, 0, + 0, 2390, 0, + 0, 2506, 0, + 0, 2626, 0, + 0, 2749, 0, + 0, 2874, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1486, 1780, + 0, 1488, 1778, + 0, 1491, 1776, + 0, 1495, 1772, + 0, 1500, 1768, + 0, 1507, 1762, + 0, 1516, 1753, + 0, 1527, 1742, + 0, 1542, 1726, + 0, 1561, 1705, + 0, 1586, 1674, + 0, 1616, 1629, + 0, 1655, 1562, + 0, 1701, 1452, + 0, 1757, 1246, + 0, 1822, 581, + 0, 1896, 0, + 0, 1980, 0, + 0, 2072, 0, + 0, 2172, 0, + 0, 2279, 0, + 0, 2390, 0, + 0, 2507, 0, + 0, 2627, 0, + 0, 2750, 0, + 0, 2875, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3258, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1490, 1795, + 0, 1493, 1794, + 0, 1495, 1791, + 0, 1499, 1788, + 0, 1504, 1784, + 0, 1511, 1778, + 0, 1519, 1770, + 0, 1531, 1759, + 0, 1546, 1744, + 0, 1565, 1723, + 0, 1589, 1694, + 0, 1620, 1651, + 0, 1657, 1587, + 0, 1704, 1484, + 0, 1759, 1294, + 0, 1824, 762, + 0, 1898, 0, + 0, 1981, 0, + 0, 2073, 0, + 0, 2173, 0, + 0, 2279, 0, + 0, 2391, 0, + 0, 2507, 0, + 0, 2627, 0, + 0, 2750, 0, + 0, 2875, 0, + 0, 3001, 0, + 0, 3129, 0, + 0, 3259, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1496, 1815, + 0, 1498, 1814, + 0, 1501, 1811, + 0, 1505, 1808, + 0, 1510, 1804, + 0, 1516, 1799, + 0, 1525, 1791, + 0, 1536, 1781, + 0, 1551, 1766, + 0, 1569, 1746, + 0, 1593, 1718, + 0, 1624, 1678, + 0, 1661, 1618, + 0, 1707, 1522, + 0, 1762, 1352, + 0, 1826, 927, + 0, 1900, 0, + 0, 1983, 0, + 0, 2075, 0, + 0, 2174, 0, + 0, 2280, 0, + 0, 2392, 0, + 0, 2508, 0, + 0, 2628, 0, + 0, 2750, 0, + 0, 2875, 0, + 0, 3002, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3649, 0, + 0, 1503, 1841, + 0, 1505, 1839, + 0, 1508, 1837, + 0, 1512, 1834, + 0, 1517, 1830, + 0, 1523, 1825, + 0, 1532, 1818, + 0, 1543, 1808, + 0, 1557, 1795, + 0, 1576, 1776, + 0, 1599, 1750, + 0, 1629, 1712, + 0, 1666, 1657, + 0, 1712, 1570, + 0, 1766, 1419, + 0, 1830, 1082, + 0, 1903, 0, + 0, 1986, 0, + 0, 2077, 0, + 0, 2176, 0, + 0, 2282, 0, + 0, 2393, 0, + 0, 2509, 0, + 0, 2628, 0, + 0, 2751, 0, + 0, 2875, 0, + 0, 3002, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3388, 0, + 0, 3519, 0, + 0, 3650, 0, + 964, 1513, 1873, + 949, 1515, 1871, + 928, 1518, 1869, + 899, 1521, 1867, + 857, 1526, 1863, + 794, 1532, 1858, + 692, 1541, 1851, + 507, 1551, 1842, + 0, 1566, 1830, + 0, 1584, 1813, + 0, 1607, 1788, + 0, 1637, 1754, + 0, 1673, 1704, + 0, 1718, 1626, + 0, 1771, 1496, + 0, 1835, 1231, + 0, 1907, 0, + 0, 1989, 0, + 0, 2080, 0, + 0, 2178, 0, + 0, 2283, 0, + 0, 2394, 0, + 0, 2510, 0, + 0, 2629, 0, + 0, 2751, 0, + 0, 2876, 0, + 0, 3002, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 1342, 1525, 1912, + 1336, 1527, 1911, + 1327, 1530, 1909, + 1315, 1533, 1907, + 1299, 1538, 1903, + 1276, 1544, 1899, + 1243, 1552, 1893, + 1195, 1563, 1884, + 1123, 1577, 1873, + 1003, 1595, 1857, + 767, 1617, 1836, + 0, 1646, 1805, + 0, 1682, 1760, + 0, 1726, 1692, + 0, 1779, 1582, + 0, 1841, 1375, + 0, 1912, 699, + 0, 1994, 0, + 0, 2083, 0, + 0, 2181, 0, + 0, 2286, 0, + 0, 2396, 0, + 0, 2511, 0, + 0, 2630, 0, + 0, 2752, 0, + 0, 2877, 0, + 0, 3003, 0, + 0, 3130, 0, + 0, 3259, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 1598, 1542, 1960, + 1594, 1543, 1959, + 1589, 1546, 1957, + 1582, 1549, 1955, + 1573, 1554, 1952, + 1561, 1560, 1948, + 1544, 1568, 1943, + 1520, 1578, 1935, + 1486, 1591, 1925, + 1436, 1608, 1911, + 1359, 1631, 1892, + 1230, 1659, 1865, + 968, 1693, 1826, + 0, 1736, 1768, + 0, 1788, 1676, + 0, 1849, 1516, + 0, 1919, 1135, + 0, 1999, 0, + 0, 2088, 0, + 0, 2185, 0, + 0, 2289, 0, + 0, 2398, 0, + 0, 2513, 0, + 0, 2632, 0, + 0, 2753, 0, + 0, 2877, 0, + 0, 3003, 0, + 0, 3131, 0, + 0, 3260, 0, + 0, 3389, 0, + 0, 3519, 0, + 0, 3650, 0, + 1804, 1562, 2017, + 1802, 1564, 2016, + 1799, 1567, 2015, + 1795, 1570, 2013, + 1789, 1574, 2010, + 1781, 1580, 2007, + 1771, 1587, 2002, + 1756, 1597, 1995, + 1737, 1610, 1987, + 1708, 1626, 1974, + 1668, 1648, 1958, + 1607, 1675, 1934, + 1511, 1708, 1901, + 1338, 1750, 1852, + 901, 1800, 1778, + 0, 1860, 1654, + 0, 1929, 1408, + 0, 2007, 0, + 0, 2095, 0, + 0, 2190, 0, + 0, 2293, 0, + 0, 2402, 0, + 0, 2515, 0, + 0, 2633, 0, + 0, 2755, 0, + 0, 2878, 0, + 0, 3004, 0, + 0, 3132, 0, + 0, 3260, 0, + 0, 3389, 0, + 0, 3520, 0, + 0, 3650, 0, + 1985, 1589, 2084, + 1983, 1591, 2083, + 1981, 1593, 2082, + 1979, 1596, 2080, + 1975, 1600, 2078, + 1970, 1605, 2075, + 1963, 1612, 2071, + 1953, 1622, 2065, + 1941, 1634, 2058, + 1923, 1650, 2047, + 1898, 1670, 2033, + 1862, 1695, 2013, + 1810, 1728, 1985, + 1729, 1768, 1945, + 1591, 1816, 1886, + 1299, 1874, 1791, + 0, 1941, 1623, + 0, 2017, 1207, + 0, 2103, 0, + 0, 2197, 0, + 0, 2298, 0, + 0, 2406, 0, + 0, 2519, 0, + 0, 2636, 0, + 0, 2757, 0, + 0, 2880, 0, + 0, 3005, 0, + 0, 3132, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3650, 0, + 2150, 1622, 2160, + 2149, 1623, 2159, + 2148, 1626, 2158, + 2146, 1628, 2157, + 2143, 1632, 2155, + 2140, 1637, 2152, + 2135, 1644, 2149, + 2129, 1653, 2144, + 2120, 1664, 2138, + 2108, 1679, 2129, + 2092, 1698, 2117, + 2069, 1722, 2101, + 2036, 1752, 2078, + 1989, 1790, 2046, + 1916, 1836, 1999, + 1796, 1892, 1927, + 1562, 1956, 1808, + 499, 2030, 1577, + 0, 2114, 586, + 0, 2206, 0, + 0, 2305, 0, + 0, 2412, 0, + 0, 2523, 0, + 0, 2639, 0, + 0, 2759, 0, + 0, 2882, 0, + 0, 3007, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3520, 0, + 0, 3651, 0, + 2306, 1663, 2246, + 2305, 1664, 2245, + 2304, 1666, 2244, + 2303, 1669, 2243, + 2301, 1672, 2241, + 2298, 1677, 2239, + 2295, 1683, 2236, + 2291, 1691, 2232, + 2284, 1701, 2227, + 2276, 1715, 2220, + 2265, 1732, 2210, + 2249, 1755, 2197, + 2228, 1783, 2179, + 2197, 1819, 2153, + 2153, 1862, 2116, + 2085, 1915, 2061, + 1976, 1976, 1976, + 1771, 2047, 1830, + 1120, 2128, 1507, + 0, 2217, 0, + 0, 2315, 0, + 0, 2419, 0, + 0, 2529, 0, + 0, 2644, 0, + 0, 2763, 0, + 0, 2885, 0, + 0, 3009, 0, + 0, 3135, 0, + 0, 3263, 0, + 0, 3392, 0, + 0, 3521, 0, + 0, 3651, 0, + 2455, 1712, 2339, + 2454, 1713, 2339, + 2453, 1715, 2338, + 2452, 1717, 2337, + 2451, 1721, 2336, + 2449, 1725, 2334, + 2447, 1730, 2332, + 2444, 1737, 2328, + 2439, 1747, 2324, + 2434, 1759, 2318, + 2426, 1775, 2311, + 2415, 1796, 2300, + 2400, 1822, 2285, + 2379, 1854, 2265, + 2350, 1895, 2237, + 2307, 1944, 2195, + 2243, 2002, 2134, + 2141, 2069, 2035, + 1954, 2146, 1857, + 1434, 2233, 1394, + 0, 2327, 0, + 0, 2429, 0, + 0, 2537, 0, + 0, 2650, 0, + 0, 2767, 0, + 0, 2888, 0, + 0, 3012, 0, + 0, 3137, 0, + 0, 3264, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 2599, 1771, 2440, + 2598, 1772, 2440, + 2598, 1773, 2439, + 2597, 1775, 2438, + 2596, 1778, 2437, + 2595, 1782, 2436, + 2593, 1787, 2434, + 2591, 1793, 2432, + 2588, 1801, 2428, + 2584, 1812, 2424, + 2578, 1827, 2418, + 2570, 1845, 2409, + 2560, 1868, 2398, + 2545, 1898, 2382, + 2525, 1935, 2360, + 2496, 1980, 2329, + 2455, 2034, 2284, + 2394, 2097, 2215, + 2296, 2170, 2104, + 2120, 2252, 1892, + 1666, 2343, 1176, + 0, 2441, 0, + 0, 2547, 0, + 0, 2658, 0, + 0, 2773, 0, + 0, 2893, 0, + 0, 3015, 0, + 0, 3140, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3653, 0, + 2740, 1839, 2548, + 2740, 1840, 2547, + 2739, 1841, 2547, + 2739, 1843, 2546, + 2738, 1845, 2545, + 2737, 1848, 2544, + 2736, 1853, 2543, + 2734, 1858, 2541, + 2732, 1865, 2538, + 2729, 1875, 2535, + 2725, 1887, 2530, + 2719, 1903, 2523, + 2711, 1924, 2514, + 2701, 1950, 2502, + 2687, 1983, 2486, + 2667, 2024, 2462, + 2639, 2073, 2429, + 2599, 2132, 2380, + 2539, 2199, 2305, + 2445, 2277, 2181, + 2277, 2363, 1934, + 1861, 2458, 400, + 0, 2560, 0, + 0, 2668, 0, + 0, 2781, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 2878, 1917, 2660, + 2878, 1917, 2660, + 2878, 1919, 2660, + 2878, 1920, 2659, + 2877, 1922, 2659, + 2876, 1925, 2658, + 2875, 1928, 2657, + 2874, 1933, 2655, + 2872, 1939, 2653, + 2870, 1947, 2650, + 2867, 1958, 2646, + 2863, 1972, 2641, + 2858, 1989, 2635, + 2850, 2012, 2625, + 2840, 2041, 2613, + 2826, 2077, 2595, + 2807, 2121, 2570, + 2779, 2174, 2535, + 2740, 2236, 2483, + 2681, 2308, 2403, + 2589, 2389, 2268, + 2426, 2479, 1986, + 2035, 2577, 0, + 0, 2682, 0, + 0, 2792, 0, + 0, 2907, 0, + 0, 3026, 0, + 0, 3148, 0, + 0, 3273, 0, + 0, 3399, 0, + 0, 3527, 0, + 0, 3656, 0, + 3015, 2003, 2777, + 3015, 2004, 2777, + 3015, 2005, 2777, + 3015, 2006, 2776, + 3014, 2008, 2776, + 3014, 2010, 2775, + 3013, 2013, 2774, + 3012, 2017, 2773, + 3011, 2022, 2772, + 3009, 2029, 2770, + 3007, 2038, 2767, + 3004, 2049, 2763, + 3000, 2064, 2758, + 2995, 2084, 2751, + 2987, 2108, 2741, + 2977, 2140, 2728, + 2963, 2178, 2709, + 2944, 2225, 2684, + 2917, 2281, 2647, + 2878, 2347, 2593, + 2821, 2422, 2508, + 2730, 2506, 2363, + 2570, 2599, 2046, + 2196, 2699, 0, + 0, 2806, 0, + 0, 2918, 0, + 0, 3034, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3529, 0, + 0, 3658, 0, + 3151, 2098, 2898, + 3151, 2099, 2898, + 3151, 2099, 2897, + 3150, 2100, 2897, + 3150, 2102, 2897, + 3150, 2104, 2896, + 3149, 2106, 2896, + 3149, 2109, 2895, + 3148, 2113, 2893, + 3147, 2119, 2892, + 3145, 2126, 2890, + 3143, 2136, 2887, + 3140, 2148, 2883, + 3136, 2164, 2877, + 3130, 2185, 2870, + 3123, 2212, 2860, + 3113, 2245, 2847, + 3099, 2286, 2828, + 3080, 2335, 2801, + 3053, 2394, 2763, + 3015, 2462, 2707, + 2958, 2540, 2619, + 2868, 2626, 2466, + 2712, 2721, 2116, + 2349, 2823, 0, + 0, 2932, 0, + 0, 3045, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3407, 0, + 0, 3533, 0, + 0, 3660, 0, + 3286, 2200, 3021, + 3286, 2201, 3021, + 3286, 2201, 3021, + 3285, 2202, 3021, + 3285, 2203, 3020, + 3285, 2205, 3020, + 3284, 2206, 3019, + 3284, 2209, 3019, + 3283, 2212, 3018, + 3282, 2217, 3016, + 3281, 2223, 3015, + 3280, 2231, 3013, + 3277, 2241, 3010, + 3274, 2254, 3006, + 3270, 2271, 3000, + 3265, 2293, 2993, + 3258, 2321, 2983, + 3248, 2356, 2969, + 3234, 2398, 2949, + 3215, 2450, 2922, + 3189, 2511, 2883, + 3151, 2581, 2825, + 3094, 2661, 2734, + 3005, 2749, 2574, + 2850, 2846, 2196, + 2495, 2950, 0, + 0, 3059, 0, + 0, 3174, 0, + 0, 3292, 0, + 0, 3414, 0, + 0, 3538, 0, + 0, 3664, 0, + 3420, 2309, 3146, + 3420, 2309, 3146, + 3420, 2309, 3146, + 3420, 2310, 3146, + 3419, 2311, 3146, + 3419, 2312, 3145, + 3419, 2313, 3145, + 3418, 2315, 3145, + 3418, 2318, 3144, + 3417, 2322, 3143, + 3416, 2326, 3142, + 3415, 2333, 3140, + 3414, 2341, 3138, + 3411, 2351, 3135, + 3408, 2365, 3131, + 3404, 2383, 3125, + 3399, 2406, 3117, + 3392, 2435, 3107, + 3382, 2471, 3093, + 3368, 2516, 3074, + 3350, 2569, 3046, + 3323, 2631, 3006, + 3285, 2703, 2947, + 3229, 2785, 2853, + 3141, 2875, 2688, + 2988, 2973, 2284, + 2638, 3077, 0, + 0, 3188, 0, + 0, 3303, 0, + 0, 3422, 0, + 0, 3544, 0, + 0, 3669, 0, + 3553, 2422, 3273, + 3553, 2422, 3273, + 3553, 2423, 3273, + 3553, 2423, 3273, + 3553, 2424, 3273, + 3553, 2425, 3273, + 3553, 2426, 3272, + 3552, 2427, 3272, + 3552, 2430, 3271, + 3552, 2432, 3271, + 3551, 2436, 3270, + 3550, 2441, 3269, + 3549, 2447, 3267, + 3547, 2456, 3265, + 3545, 2467, 3261, + 3542, 2481, 3257, + 3538, 2500, 3252, + 3533, 2524, 3244, + 3525, 2554, 3234, + 3516, 2591, 3219, + 3502, 2636, 3200, + 3483, 2690, 3172, + 3457, 2754, 3131, + 3419, 2828, 3071, + 3363, 2910, 2976, + 3275, 3002, 2805, + 3123, 3100, 2380, + 2778, 3206, 0, + 0, 3317, 0, + 0, 3433, 0, + 0, 3553, 0, + 0, 3675, 0, + 3687, 2540, 3402, + 3687, 2540, 3402, + 3686, 2540, 3401, + 3686, 2541, 3401, + 3686, 2541, 3401, + 3686, 2542, 3401, + 3686, 2543, 3401, + 3686, 2544, 3401, + 3686, 2545, 3400, + 3685, 2548, 3400, + 3685, 2550, 3399, + 3684, 2554, 3398, + 3683, 2559, 3397, + 3682, 2566, 3395, + 3680, 2575, 3393, + 3678, 2586, 3390, + 3675, 2601, 3385, + 3671, 2620, 3380, + 3666, 2644, 3372, + 3659, 2675, 3362, + 3649, 2713, 3347, + 3635, 2759, 3327, + 3617, 2815, 3299, + 3590, 2880, 3258, + 3553, 2954, 3197, + 3497, 3038, 3100, + 3410, 3130, 2926, + 3258, 3229, 2484, + 2916, 3336, 0, + 0, 3448, 0, + 0, 3564, 0, + 0, 3684, 0, + 3819, 2661, 3531, + 3819, 2661, 3531, + 3819, 2661, 3531, + 3819, 2661, 3531, + 3819, 2662, 3531, + 3819, 2662, 3530, + 3819, 2663, 3530, + 3819, 2664, 3530, + 3819, 2665, 3530, + 3818, 2667, 3529, + 3818, 2669, 3529, + 3818, 2672, 3528, + 3817, 2676, 3527, + 3816, 2681, 3526, + 3815, 2688, 3524, + 3813, 2697, 3522, + 3811, 2708, 3519, + 3808, 2723, 3514, + 3804, 2743, 3509, + 3799, 2768, 3501, + 3792, 2799, 3490, + 3782, 2838, 3476, + 3768, 2885, 3456, + 3750, 2941, 3427, + 3723, 3007, 3386, + 3686, 3082, 3325, + 3630, 3166, 3227, + 3543, 3259, 3050, + 3392, 3359, 2593, + 3052, 3466, 0, + 0, 3578, 0, + 0, 3695, 0, + 3952, 2784, 3661, + 3952, 2784, 3661, + 3952, 2785, 3661, + 3952, 2785, 3661, + 3952, 2785, 3661, + 3952, 2785, 3660, + 3952, 2786, 3660, + 3952, 2787, 3660, + 3952, 2788, 3660, + 3951, 2789, 3660, + 3951, 2791, 3659, + 3951, 2793, 3659, + 3950, 2796, 3658, + 3950, 2800, 3657, + 3949, 2805, 3656, + 3947, 2812, 3654, + 3946, 2821, 3652, + 3944, 2833, 3648, + 3941, 2848, 3644, + 3937, 2868, 3638, + 3932, 2893, 3631, + 3924, 2925, 3620, + 3915, 2964, 3605, + 3901, 3012, 3585, + 3882, 3068, 3556, + 3856, 3135, 3515, + 3819, 3211, 3453, + 3763, 3295, 3354, + 3676, 3389, 3176, + 3526, 3489, 2707, + 3188, 3597, 0, + 0, 3709, 0, + 4085, 2910, 3791, + 4085, 2910, 3791, + 4085, 2910, 3791, + 4085, 2910, 3791, + 4085, 2911, 3791, + 4085, 2911, 3791, + 4085, 2911, 3791, + 4084, 2912, 3791, + 4084, 2912, 3791, + 4084, 2913, 3790, + 4084, 2915, 3790, + 4084, 2916, 3790, + 4083, 2919, 3789, + 4083, 2922, 3788, + 4082, 2926, 3787, + 4081, 2931, 3786, + 4080, 2938, 3784, + 4078, 2947, 3782, + 4076, 2959, 3779, + 4073, 2975, 3775, + 4069, 2995, 3769, + 4064, 3020, 3761, + 4057, 3052, 3750, + 4047, 3092, 3736, + 4034, 3140, 3715, + 4015, 3197, 3686, + 3989, 3264, 3645, + 3951, 3340, 3583, + 3896, 3425, 3483, + 3809, 3519, 3303, + 3659, 3620, 2826, + 3322, 3728, 0, + 4095, 3037, 3922, + 4095, 3037, 3922, + 4095, 3037, 3922, + 4095, 3037, 3922, + 4095, 3038, 3922, + 4095, 3038, 3922, + 4095, 3038, 3922, + 4095, 3039, 3922, + 4095, 3039, 3922, + 4095, 3040, 3921, + 4095, 3041, 3921, + 4095, 3042, 3921, + 4095, 3044, 3920, + 4095, 3046, 3920, + 4095, 3049, 3919, + 4095, 3053, 3918, + 4095, 3059, 3917, + 4095, 3066, 3915, + 4095, 3075, 3913, + 4095, 3087, 3910, + 4095, 3103, 3905, + 4095, 3123, 3900, + 4095, 3149, 3892, + 4095, 3181, 3881, + 4095, 3221, 3866, + 4095, 3269, 3846, + 4095, 3327, 3817, + 4095, 3394, 3775, + 4084, 3470, 3713, + 4029, 3556, 3613, + 3942, 3650, 3432, + 3792, 3751, 2947, + 4095, 3166, 4053, + 4095, 3166, 4053, + 4095, 3166, 4053, + 4095, 3166, 4053, + 4095, 3166, 4053, + 4095, 3166, 4053, + 4095, 3166, 4053, + 4095, 3167, 4053, + 4095, 3167, 4053, + 4095, 3168, 4053, + 4095, 3168, 4053, + 4095, 3169, 4052, + 4095, 3171, 4052, + 4095, 3172, 4052, + 4095, 3175, 4051, + 4095, 3178, 4050, + 4095, 3182, 4049, + 4095, 3187, 4048, + 4095, 3194, 4046, + 4095, 3204, 4044, + 4095, 3216, 4041, + 4095, 3232, 4037, + 4095, 3252, 4031, + 4095, 3278, 4023, + 4095, 3310, 4012, + 4095, 3350, 3997, + 4095, 3399, 3977, + 4095, 3457, 3948, + 4095, 3524, 3906, + 4095, 3601, 3843, + 4095, 3687, 3743, + 4074, 3781, 3561, + 0, 1606, 1871, + 0, 1607, 1869, + 0, 1610, 1867, + 0, 1612, 1864, + 0, 1616, 1861, + 0, 1622, 1856, + 0, 1628, 1849, + 0, 1637, 1840, + 0, 1649, 1827, + 0, 1664, 1810, + 0, 1684, 1786, + 0, 1709, 1751, + 0, 1740, 1701, + 0, 1779, 1623, + 0, 1826, 1491, + 0, 1883, 1222, + 0, 1949, 0, + 0, 2024, 0, + 0, 2108, 0, + 0, 2201, 0, + 0, 2302, 0, + 0, 2409, 0, + 0, 2521, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1606, 1873, + 0, 1608, 1871, + 0, 1610, 1869, + 0, 1613, 1867, + 0, 1617, 1863, + 0, 1622, 1858, + 0, 1629, 1851, + 0, 1638, 1842, + 0, 1650, 1830, + 0, 1665, 1813, + 0, 1684, 1789, + 0, 1709, 1754, + 0, 1741, 1704, + 0, 1779, 1626, + 0, 1827, 1497, + 0, 1883, 1231, + 0, 1949, 0, + 0, 2024, 0, + 0, 2109, 0, + 0, 2202, 0, + 0, 2302, 0, + 0, 2409, 0, + 0, 2521, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1607, 1876, + 0, 1609, 1874, + 0, 1611, 1872, + 0, 1614, 1870, + 0, 1618, 1866, + 0, 1623, 1861, + 0, 1630, 1855, + 0, 1639, 1846, + 0, 1650, 1833, + 0, 1666, 1816, + 0, 1685, 1792, + 0, 1710, 1758, + 0, 1741, 1708, + 0, 1780, 1632, + 0, 1827, 1503, + 0, 1883, 1243, + 0, 1949, 0, + 0, 2024, 0, + 0, 2109, 0, + 0, 2202, 0, + 0, 2302, 0, + 0, 2409, 0, + 0, 2521, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1608, 1880, + 0, 1610, 1878, + 0, 1612, 1876, + 0, 1615, 1874, + 0, 1619, 1870, + 0, 1624, 1865, + 0, 1631, 1859, + 0, 1640, 1850, + 0, 1651, 1838, + 0, 1666, 1821, + 0, 1686, 1797, + 0, 1711, 1763, + 0, 1742, 1714, + 0, 1781, 1638, + 0, 1828, 1512, + 0, 1884, 1259, + 0, 1950, 0, + 0, 2025, 0, + 0, 2109, 0, + 0, 2202, 0, + 0, 2302, 0, + 0, 2409, 0, + 0, 2521, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1609, 1885, + 0, 1611, 1884, + 0, 1613, 1882, + 0, 1616, 1879, + 0, 1620, 1876, + 0, 1625, 1871, + 0, 1632, 1864, + 0, 1641, 1855, + 0, 1652, 1843, + 0, 1668, 1827, + 0, 1687, 1803, + 0, 1712, 1770, + 0, 1743, 1722, + 0, 1782, 1647, + 0, 1829, 1524, + 0, 1885, 1280, + 0, 1950, 0, + 0, 2025, 0, + 0, 2110, 0, + 0, 2202, 0, + 0, 2303, 0, + 0, 2409, 0, + 0, 2522, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1611, 1892, + 0, 1613, 1891, + 0, 1615, 1889, + 0, 1618, 1886, + 0, 1622, 1883, + 0, 1627, 1878, + 0, 1634, 1872, + 0, 1642, 1863, + 0, 1654, 1851, + 0, 1669, 1835, + 0, 1689, 1812, + 0, 1713, 1779, + 0, 1744, 1732, + 0, 1783, 1659, + 0, 1830, 1540, + 0, 1886, 1305, + 0, 1951, 254, + 0, 2026, 0, + 0, 2110, 0, + 0, 2203, 0, + 0, 2303, 0, + 0, 2410, 0, + 0, 2522, 0, + 0, 2638, 0, + 0, 2758, 0, + 0, 2881, 0, + 0, 3006, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1614, 1901, + 0, 1615, 1900, + 0, 1617, 1898, + 0, 1620, 1896, + 0, 1624, 1892, + 0, 1629, 1887, + 0, 1636, 1881, + 0, 1645, 1873, + 0, 1656, 1861, + 0, 1671, 1845, + 0, 1691, 1823, + 0, 1715, 1791, + 0, 1746, 1745, + 0, 1784, 1674, + 0, 1831, 1559, + 0, 1887, 1338, + 0, 1952, 508, + 0, 2027, 0, + 0, 2111, 0, + 0, 2203, 0, + 0, 2304, 0, + 0, 2410, 0, + 0, 2522, 0, + 0, 2639, 0, + 0, 2759, 0, + 0, 2881, 0, + 0, 3007, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3390, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1617, 1913, + 0, 1618, 1912, + 0, 1620, 1910, + 0, 1623, 1908, + 0, 1627, 1904, + 0, 1632, 1900, + 0, 1639, 1894, + 0, 1648, 1885, + 0, 1659, 1874, + 0, 1674, 1859, + 0, 1693, 1837, + 0, 1718, 1806, + 0, 1748, 1761, + 0, 1787, 1694, + 0, 1833, 1584, + 0, 1889, 1378, + 0, 1954, 713, + 0, 2028, 0, + 0, 2112, 0, + 0, 2204, 0, + 0, 2304, 0, + 0, 2411, 0, + 0, 2522, 0, + 0, 2639, 0, + 0, 2759, 0, + 0, 2882, 0, + 0, 3007, 0, + 0, 3133, 0, + 0, 3261, 0, + 0, 3391, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1621, 1929, + 0, 1622, 1928, + 0, 1625, 1926, + 0, 1627, 1923, + 0, 1631, 1920, + 0, 1636, 1916, + 0, 1643, 1910, + 0, 1652, 1902, + 0, 1663, 1891, + 0, 1678, 1876, + 0, 1697, 1855, + 0, 1721, 1826, + 0, 1752, 1783, + 0, 1790, 1719, + 0, 1836, 1616, + 0, 1891, 1426, + 0, 1956, 894, + 0, 2030, 0, + 0, 2113, 0, + 0, 2206, 0, + 0, 2305, 0, + 0, 2411, 0, + 0, 2523, 0, + 0, 2639, 0, + 0, 2759, 0, + 0, 2882, 0, + 0, 3007, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1626, 1949, + 0, 1628, 1948, + 0, 1630, 1946, + 0, 1633, 1944, + 0, 1637, 1940, + 0, 1642, 1936, + 0, 1648, 1931, + 0, 1657, 1923, + 0, 1668, 1913, + 0, 1683, 1898, + 0, 1701, 1878, + 0, 1726, 1851, + 0, 1756, 1810, + 0, 1793, 1750, + 0, 1839, 1655, + 0, 1894, 1484, + 0, 1958, 1059, + 0, 2032, 0, + 0, 2115, 0, + 0, 2207, 0, + 0, 2306, 0, + 0, 2412, 0, + 0, 2524, 0, + 0, 2640, 0, + 0, 2760, 0, + 0, 2882, 0, + 0, 3007, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3520, 0, + 0, 3651, 0, + 0, 1634, 1974, + 0, 1635, 1973, + 0, 1637, 1971, + 0, 1640, 1969, + 0, 1644, 1966, + 0, 1649, 1962, + 0, 1655, 1957, + 0, 1664, 1950, + 0, 1675, 1940, + 0, 1689, 1927, + 0, 1708, 1908, + 0, 1731, 1882, + 0, 1761, 1844, + 0, 1798, 1789, + 0, 1844, 1702, + 0, 1898, 1552, + 0, 1962, 1214, + 0, 2035, 0, + 0, 2118, 0, + 0, 2209, 0, + 0, 2308, 0, + 0, 2414, 0, + 0, 2525, 0, + 0, 2641, 0, + 0, 2760, 0, + 0, 2883, 0, + 0, 3008, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 1107, 1643, 2006, + 1096, 1645, 2005, + 1081, 1647, 2003, + 1061, 1650, 2001, + 1031, 1653, 1999, + 989, 1658, 1995, + 926, 1664, 1990, + 824, 1673, 1983, + 639, 1684, 1974, + 132, 1698, 1962, + 0, 1716, 1945, + 0, 1739, 1921, + 0, 1769, 1886, + 0, 1805, 1836, + 0, 1850, 1758, + 0, 1904, 1628, + 0, 1967, 1363, + 0, 2039, 0, + 0, 2121, 0, + 0, 2212, 0, + 0, 2310, 0, + 0, 2415, 0, + 0, 2526, 0, + 0, 2642, 0, + 0, 2761, 0, + 0, 2883, 0, + 0, 3008, 0, + 0, 3134, 0, + 0, 3262, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 1479, 1656, 2045, + 1474, 1657, 2044, + 1468, 1659, 2043, + 1459, 1662, 2041, + 1447, 1666, 2039, + 1431, 1670, 2035, + 1408, 1676, 2031, + 1375, 1684, 2025, + 1327, 1695, 2016, + 1255, 1709, 2005, + 1135, 1727, 1989, + 899, 1749, 1968, + 0, 1778, 1937, + 0, 1814, 1892, + 0, 1858, 1824, + 0, 1911, 1714, + 0, 1973, 1507, + 0, 2045, 831, + 0, 2126, 0, + 0, 2215, 0, + 0, 2313, 0, + 0, 2418, 0, + 0, 2528, 0, + 0, 2643, 0, + 0, 2762, 0, + 0, 2884, 0, + 0, 3009, 0, + 0, 3135, 0, + 0, 3263, 0, + 0, 3391, 0, + 0, 3521, 0, + 0, 3651, 0, + 1732, 1672, 2093, + 1730, 1674, 2092, + 1726, 1676, 2091, + 1721, 1678, 2089, + 1715, 1681, 2087, + 1706, 1686, 2084, + 1693, 1692, 2080, + 1676, 1700, 2075, + 1652, 1710, 2067, + 1618, 1723, 2057, + 1568, 1741, 2043, + 1491, 1763, 2024, + 1362, 1791, 1997, + 1100, 1826, 1958, + 0, 1868, 1900, + 0, 1920, 1808, + 0, 1981, 1648, + 0, 2052, 1267, + 0, 2132, 0, + 0, 2220, 0, + 0, 2317, 0, + 0, 2421, 0, + 0, 2530, 0, + 0, 2645, 0, + 0, 2764, 0, + 0, 2885, 0, + 0, 3009, 0, + 0, 3136, 0, + 0, 3263, 0, + 0, 3392, 0, + 0, 3521, 0, + 0, 3651, 0, + 1938, 1693, 2150, + 1936, 1694, 2150, + 1934, 1696, 2148, + 1931, 1699, 2147, + 1927, 1702, 2145, + 1921, 1706, 2142, + 1913, 1712, 2139, + 1903, 1719, 2134, + 1889, 1729, 2127, + 1869, 1742, 2119, + 1840, 1759, 2106, + 1800, 1780, 2090, + 1739, 1807, 2066, + 1643, 1841, 2033, + 1470, 1882, 1984, + 1033, 1932, 1910, + 0, 1992, 1786, + 0, 2061, 1540, + 0, 2139, 54, + 0, 2227, 0, + 0, 2322, 0, + 0, 2425, 0, + 0, 2534, 0, + 0, 2648, 0, + 0, 2766, 0, + 0, 2887, 0, + 0, 3011, 0, + 0, 3136, 0, + 0, 3264, 0, + 0, 3392, 0, + 0, 3522, 0, + 0, 3652, 0, + 2118, 1720, 2217, + 2117, 1721, 2216, + 2116, 1723, 2215, + 2113, 1725, 2214, + 2111, 1728, 2212, + 2107, 1732, 2210, + 2102, 1737, 2207, + 2095, 1744, 2203, + 2086, 1754, 2197, + 2073, 1766, 2190, + 2055, 1782, 2179, + 2030, 1802, 2165, + 1994, 1828, 2145, + 1942, 1860, 2118, + 1861, 1900, 2077, + 1723, 1948, 2018, + 1431, 2006, 1923, + 0, 2073, 1755, + 0, 2149, 1339, + 0, 2235, 0, + 0, 2329, 0, + 0, 2430, 0, + 0, 2538, 0, + 0, 2651, 0, + 0, 2768, 0, + 0, 2889, 0, + 0, 3012, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 2283, 1753, 2293, + 2282, 1754, 2292, + 2281, 1756, 2292, + 2280, 1758, 2290, + 2278, 1761, 2289, + 2275, 1764, 2287, + 2272, 1769, 2285, + 2267, 1776, 2281, + 2261, 1785, 2276, + 2252, 1796, 2270, + 2240, 1811, 2261, + 2224, 1830, 2249, + 2201, 1854, 2233, + 2168, 1884, 2210, + 2121, 1922, 2178, + 2048, 1968, 2131, + 1928, 2024, 2059, + 1694, 2088, 1940, + 631, 2163, 1709, + 0, 2246, 718, + 0, 2338, 0, + 0, 2437, 0, + 0, 2544, 0, + 0, 2655, 0, + 0, 2772, 0, + 0, 2891, 0, + 0, 3014, 0, + 0, 3139, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3653, 0, + 2439, 1794, 2378, + 2438, 1795, 2378, + 2437, 1796, 2377, + 2436, 1798, 2376, + 2435, 1801, 2375, + 2433, 1804, 2373, + 2430, 1809, 2371, + 2427, 1815, 2368, + 2423, 1823, 2364, + 2417, 1833, 2359, + 2408, 1847, 2352, + 2397, 1864, 2342, + 2382, 1887, 2329, + 2360, 1915, 2311, + 2329, 1951, 2285, + 2285, 1994, 2248, + 2217, 2047, 2193, + 2108, 2108, 2108, + 1903, 2180, 1962, + 1252, 2260, 1639, + 0, 2350, 0, + 0, 2447, 0, + 0, 2551, 0, + 0, 2661, 0, + 0, 2776, 0, + 0, 2895, 0, + 0, 3017, 0, + 0, 3141, 0, + 0, 3267, 0, + 0, 3395, 0, + 0, 3524, 0, + 0, 3653, 0, + 2587, 1843, 2472, + 2587, 1844, 2471, + 2586, 1845, 2471, + 2585, 1847, 2470, + 2584, 1850, 2469, + 2583, 1853, 2468, + 2581, 1857, 2466, + 2579, 1862, 2464, + 2576, 1869, 2460, + 2571, 1879, 2456, + 2566, 1891, 2451, + 2558, 1907, 2443, + 2547, 1928, 2432, + 2532, 1954, 2418, + 2511, 1986, 2397, + 2482, 2027, 2369, + 2439, 2076, 2327, + 2375, 2134, 2266, + 2273, 2201, 2167, + 2086, 2279, 1990, + 1566, 2365, 1526, + 0, 2459, 0, + 0, 2561, 0, + 0, 2669, 0, + 0, 2782, 0, + 0, 2899, 0, + 0, 3020, 0, + 0, 3144, 0, + 0, 3269, 0, + 0, 3396, 0, + 0, 3525, 0, + 0, 3654, 0, + 2731, 1902, 2573, + 2731, 1903, 2572, + 2731, 1904, 2572, + 2730, 1906, 2571, + 2729, 1908, 2570, + 2728, 1910, 2569, + 2727, 1914, 2568, + 2725, 1919, 2566, + 2723, 1925, 2564, + 2720, 1933, 2560, + 2716, 1944, 2556, + 2710, 1959, 2550, + 2702, 1977, 2541, + 2692, 2000, 2530, + 2677, 2030, 2514, + 2657, 2067, 2492, + 2629, 2112, 2461, + 2588, 2166, 2416, + 2526, 2229, 2347, + 2428, 2302, 2236, + 2252, 2384, 2024, + 1798, 2475, 1309, + 0, 2574, 0, + 0, 2679, 0, + 0, 2790, 0, + 0, 2906, 0, + 0, 3025, 0, + 0, 3147, 0, + 0, 3272, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 2872, 1970, 2680, + 2872, 1971, 2680, + 2872, 1972, 2679, + 2871, 1973, 2679, + 2871, 1975, 2678, + 2870, 1977, 2677, + 2869, 1981, 2676, + 2868, 1985, 2675, + 2866, 1990, 2673, + 2864, 1998, 2670, + 2861, 2007, 2667, + 2857, 2019, 2662, + 2851, 2036, 2655, + 2843, 2056, 2646, + 2833, 2083, 2634, + 2819, 2115, 2618, + 2799, 2156, 2594, + 2771, 2205, 2561, + 2731, 2264, 2512, + 2672, 2332, 2437, + 2577, 2409, 2314, + 2409, 2495, 2066, + 1993, 2590, 532, + 0, 2692, 0, + 0, 2800, 0, + 0, 2914, 0, + 0, 3031, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3657, 0, + 3011, 2048, 2793, + 3011, 2049, 2792, + 3010, 2050, 2792, + 3010, 2051, 2792, + 3010, 2052, 2791, + 3009, 2054, 2791, + 3008, 2057, 2790, + 3007, 2060, 2789, + 3006, 2065, 2787, + 3005, 2071, 2785, + 3002, 2079, 2782, + 2999, 2090, 2779, + 2995, 2104, 2774, + 2990, 2122, 2767, + 2982, 2144, 2757, + 2972, 2173, 2745, + 2958, 2209, 2727, + 2939, 2253, 2702, + 2911, 2306, 2667, + 2872, 2368, 2616, + 2813, 2440, 2536, + 2721, 2521, 2400, + 2558, 2611, 2118, + 2167, 2709, 0, + 0, 2814, 0, + 0, 2924, 0, + 0, 3039, 0, + 0, 3158, 0, + 0, 3280, 0, + 0, 3405, 0, + 0, 3531, 0, + 0, 3659, 0, + 3148, 2135, 2910, + 3147, 2135, 2909, + 3147, 2136, 2909, + 3147, 2137, 2909, + 3147, 2138, 2909, + 3146, 2140, 2908, + 3146, 2142, 2907, + 3145, 2145, 2907, + 3144, 2149, 2905, + 3143, 2154, 2904, + 3141, 2161, 2902, + 3139, 2170, 2899, + 3136, 2181, 2895, + 3132, 2196, 2890, + 3127, 2216, 2883, + 3119, 2241, 2873, + 3109, 2272, 2860, + 3095, 2310, 2842, + 3076, 2357, 2816, + 3049, 2413, 2779, + 3010, 2479, 2725, + 2953, 2554, 2640, + 2862, 2638, 2495, + 2703, 2731, 2178, + 2328, 2831, 0, + 0, 2938, 0, + 0, 3050, 0, + 0, 3167, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 3283, 2230, 3030, + 3283, 2230, 3030, + 3283, 2231, 3030, + 3283, 2232, 3030, + 3283, 2233, 3029, + 3282, 2234, 3029, + 3282, 2236, 3028, + 3281, 2238, 3028, + 3281, 2241, 3027, + 3280, 2245, 3026, + 3279, 2251, 3024, + 3277, 2258, 3022, + 3275, 2268, 3019, + 3272, 2280, 3015, + 3268, 2297, 3010, + 3262, 2317, 3002, + 3255, 2344, 2992, + 3245, 2377, 2979, + 3231, 2418, 2960, + 3212, 2467, 2933, + 3186, 2526, 2896, + 3147, 2594, 2839, + 3090, 2672, 2751, + 3000, 2758, 2598, + 2844, 2853, 2248, + 2481, 2955, 0, + 0, 3064, 0, + 0, 3177, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3418, 2332, 3153, + 3418, 2332, 3153, + 3418, 2333, 3153, + 3418, 2333, 3153, + 3417, 2334, 3153, + 3417, 2335, 3152, + 3417, 2337, 3152, + 3417, 2339, 3151, + 3416, 2341, 3151, + 3415, 2344, 3150, + 3414, 2349, 3149, + 3413, 2355, 3147, + 3412, 2363, 3145, + 3409, 2373, 3142, + 3406, 2386, 3138, + 3403, 2403, 3132, + 3397, 2425, 3125, + 3390, 2453, 3115, + 3380, 2488, 3101, + 3366, 2531, 3082, + 3347, 2582, 3054, + 3321, 2643, 3016, + 3283, 2713, 2958, + 3226, 2793, 2866, + 3137, 2882, 2706, + 2983, 2978, 2328, + 2627, 3082, 0, + 0, 3191, 0, + 0, 3306, 0, + 0, 3424, 0, + 0, 3546, 0, + 0, 3670, 0, + 3552, 2440, 3279, + 3552, 2441, 3278, + 3552, 2441, 3278, + 3552, 2441, 3278, + 3552, 2442, 3278, + 3551, 2443, 3278, + 3551, 2444, 3278, + 3551, 2446, 3277, + 3551, 2448, 3277, + 3550, 2450, 3276, + 3549, 2454, 3275, + 3549, 2458, 3274, + 3547, 2465, 3272, + 3546, 2473, 3270, + 3543, 2484, 3267, + 3541, 2497, 3263, + 3537, 2515, 3257, + 3531, 2538, 3250, + 3524, 2567, 3239, + 3514, 2603, 3225, + 3500, 2648, 3206, + 3482, 2701, 3178, + 3455, 2763, 3138, + 3417, 2835, 3079, + 3361, 2917, 2986, + 3273, 3007, 2820, + 3120, 3105, 2416, + 2770, 3209, 0, + 0, 3320, 0, + 0, 3435, 0, + 0, 3554, 0, + 0, 3676, 0, + 3685, 2554, 3406, + 3685, 2554, 3405, + 3685, 2554, 3405, + 3685, 2555, 3405, + 3685, 2555, 3405, + 3685, 2556, 3405, + 3685, 2557, 3405, + 3685, 2558, 3405, + 3684, 2560, 3404, + 3684, 2562, 3404, + 3684, 2564, 3403, + 3683, 2568, 3402, + 3682, 2573, 3401, + 3681, 2579, 3399, + 3679, 2588, 3397, + 3677, 2599, 3394, + 3674, 2613, 3389, + 3670, 2632, 3384, + 3665, 2656, 3376, + 3658, 2686, 3366, + 3648, 2723, 3351, + 3634, 2768, 3332, + 3615, 2823, 3304, + 3589, 2886, 3263, + 3551, 2960, 3203, + 3495, 3042, 3108, + 3408, 3134, 2938, + 3255, 3233, 2512, + 2910, 3338, 0, + 0, 3449, 0, + 0, 3565, 0, + 0, 3685, 0, + 3819, 2672, 3534, + 3819, 2672, 3534, + 3819, 2672, 3534, + 3819, 2672, 3534, + 3818, 2673, 3533, + 3818, 2673, 3533, + 3818, 2674, 3533, + 3818, 2675, 3533, + 3818, 2676, 3533, + 3818, 2678, 3532, + 3817, 2680, 3532, + 3817, 2683, 3531, + 3816, 2686, 3530, + 3815, 2691, 3529, + 3814, 2698, 3527, + 3812, 2707, 3525, + 3810, 2718, 3522, + 3807, 2733, 3517, + 3803, 2752, 3512, + 3798, 2776, 3504, + 3791, 2807, 3494, + 3781, 2845, 3479, + 3767, 2891, 3459, + 3749, 2947, 3431, + 3722, 3012, 3390, + 3685, 3086, 3329, + 3629, 3170, 3232, + 3542, 3262, 3059, + 3390, 3362, 2616, + 3048, 3468, 0, + 0, 3580, 0, + 0, 3696, 0, + 3952, 2793, 3663, + 3952, 2793, 3663, + 3952, 2793, 3663, + 3951, 2793, 3663, + 3951, 2793, 3663, + 3951, 2794, 3663, + 3951, 2794, 3663, + 3951, 2795, 3662, + 3951, 2796, 3662, + 3951, 2797, 3662, + 3951, 2799, 3661, + 3950, 2801, 3661, + 3950, 2804, 3660, + 3949, 2808, 3659, + 3948, 2813, 3658, + 3947, 2820, 3656, + 3945, 2829, 3654, + 3943, 2840, 3651, + 3940, 2856, 3646, + 3936, 2875, 3641, + 3931, 2900, 3633, + 3924, 2931, 3622, + 3914, 2970, 3608, + 3900, 3017, 3588, + 3882, 3073, 3559, + 3856, 3139, 3518, + 3818, 3214, 3457, + 3762, 3298, 3359, + 3675, 3391, 3182, + 3524, 3491, 2725, + 3184, 3598, 0, + 0, 3710, 0, + 4084, 2916, 3793, + 4084, 2916, 3793, + 4084, 2916, 3793, + 4084, 2917, 3793, + 4084, 2917, 3793, + 4084, 2917, 3793, + 4084, 2918, 3793, + 4084, 2918, 3792, + 4084, 2919, 3792, + 4084, 2920, 3792, + 4083, 2921, 3792, + 4083, 2923, 3791, + 4083, 2925, 3791, + 4082, 2928, 3790, + 4082, 2932, 3789, + 4081, 2937, 3788, + 4080, 2944, 3786, + 4078, 2953, 3784, + 4076, 2965, 3781, + 4073, 2980, 3776, + 4069, 3000, 3771, + 4064, 3025, 3763, + 4056, 3057, 3752, + 4047, 3096, 3738, + 4033, 3144, 3717, + 4015, 3201, 3689, + 3988, 3267, 3647, + 3951, 3343, 3585, + 3895, 3428, 3486, + 3808, 3521, 3308, + 3658, 3622, 2839, + 3320, 3729, 0, + 4095, 3042, 3923, + 4095, 3042, 3923, + 4095, 3042, 3923, + 4095, 3042, 3923, + 4095, 3042, 3923, + 4095, 3043, 3923, + 4095, 3043, 3923, + 4095, 3043, 3923, + 4095, 3044, 3923, + 4095, 3045, 3923, + 4095, 3046, 3922, + 4095, 3047, 3922, + 4095, 3049, 3922, + 4095, 3051, 3921, + 4095, 3054, 3920, + 4095, 3058, 3919, + 4095, 3063, 3918, + 4095, 3070, 3916, + 4095, 3079, 3914, + 4095, 3091, 3911, + 4095, 3107, 3907, + 4095, 3127, 3901, + 4095, 3152, 3893, + 4095, 3184, 3882, + 4095, 3224, 3868, + 4095, 3272, 3847, + 4095, 3329, 3819, + 4095, 3396, 3777, + 4084, 3472, 3715, + 4028, 3558, 3615, + 3941, 3651, 3435, + 3791, 3752, 2958, + 4095, 3169, 4054, + 4095, 3169, 4054, + 4095, 3169, 4054, + 4095, 3169, 4054, + 4095, 3169, 4054, + 4095, 3170, 4054, + 4095, 3170, 4054, + 4095, 3170, 4054, + 4095, 3171, 4054, + 4095, 3171, 4054, + 4095, 3172, 4054, + 4095, 3173, 4053, + 4095, 3174, 4053, + 4095, 3176, 4053, + 4095, 3178, 4052, + 4095, 3181, 4051, + 4095, 3185, 4050, + 4095, 3191, 4049, + 4095, 3198, 4047, + 4095, 3207, 4045, + 4095, 3219, 4042, + 4095, 3235, 4037, + 4095, 3255, 4032, + 4095, 3281, 4024, + 4095, 3313, 4013, + 4095, 3353, 3998, + 4095, 3401, 3978, + 4095, 3459, 3949, + 4095, 3526, 3907, + 4095, 3602, 3845, + 4095, 3688, 3745, + 4074, 3782, 3564, + 0, 1736, 2002, + 0, 1737, 2001, + 0, 1739, 2000, + 0, 1741, 1998, + 0, 1744, 1995, + 0, 1748, 1991, + 0, 1753, 1986, + 0, 1760, 1979, + 0, 1769, 1970, + 0, 1781, 1958, + 0, 1796, 1940, + 0, 1816, 1916, + 0, 1841, 1881, + 0, 1872, 1830, + 0, 1911, 1752, + 0, 1958, 1620, + 0, 2015, 1347, + 0, 2080, 0, + 0, 2156, 0, + 0, 2240, 0, + 0, 2333, 0, + 0, 2434, 0, + 0, 2541, 0, + 0, 2653, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 0, 1737, 2004, + 0, 1738, 2003, + 0, 1739, 2001, + 0, 1742, 1999, + 0, 1745, 1997, + 0, 1749, 1993, + 0, 1754, 1988, + 0, 1761, 1981, + 0, 1769, 1972, + 0, 1781, 1960, + 0, 1796, 1942, + 0, 1816, 1918, + 0, 1841, 1883, + 0, 1872, 1833, + 0, 1911, 1755, + 0, 1958, 1624, + 0, 2015, 1354, + 0, 2081, 0, + 0, 2156, 0, + 0, 2241, 0, + 0, 2333, 0, + 0, 2434, 0, + 0, 2541, 0, + 0, 2653, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 0, 1737, 2006, + 0, 1738, 2005, + 0, 1740, 2004, + 0, 1742, 2002, + 0, 1745, 1999, + 0, 1749, 1995, + 0, 1754, 1990, + 0, 1761, 1984, + 0, 1770, 1974, + 0, 1782, 1962, + 0, 1797, 1945, + 0, 1817, 1921, + 0, 1841, 1886, + 0, 1873, 1836, + 0, 1912, 1759, + 0, 1959, 1629, + 0, 2015, 1363, + 0, 2081, 0, + 0, 2156, 0, + 0, 2241, 0, + 0, 2334, 0, + 0, 2434, 0, + 0, 2541, 0, + 0, 2653, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 0, 1738, 2009, + 0, 1739, 2008, + 0, 1741, 2007, + 0, 1743, 2005, + 0, 1746, 2002, + 0, 1750, 1998, + 0, 1755, 1993, + 0, 1762, 1987, + 0, 1771, 1978, + 0, 1782, 1965, + 0, 1798, 1948, + 0, 1817, 1924, + 0, 1842, 1890, + 0, 1873, 1840, + 0, 1912, 1764, + 0, 1959, 1636, + 0, 2015, 1375, + 0, 2081, 0, + 0, 2157, 0, + 0, 2241, 0, + 0, 2334, 0, + 0, 2434, 0, + 0, 2541, 0, + 0, 2653, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 0, 1739, 2013, + 0, 1740, 2012, + 0, 1742, 2011, + 0, 1744, 2009, + 0, 1747, 2006, + 0, 1751, 2002, + 0, 1756, 1997, + 0, 1763, 1991, + 0, 1772, 1982, + 0, 1783, 1970, + 0, 1798, 1953, + 0, 1818, 1929, + 0, 1843, 1895, + 0, 1874, 1846, + 0, 1913, 1771, + 0, 1960, 1645, + 0, 2016, 1391, + 0, 2082, 0, + 0, 2157, 0, + 0, 2241, 0, + 0, 2334, 0, + 0, 2434, 0, + 0, 2541, 0, + 0, 2653, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 0, 1740, 2018, + 0, 1741, 2017, + 0, 1743, 2016, + 0, 1745, 2014, + 0, 1748, 2011, + 0, 1752, 2008, + 0, 1757, 2003, + 0, 1764, 1996, + 0, 1773, 1988, + 0, 1785, 1975, + 0, 1800, 1959, + 0, 1819, 1935, + 0, 1844, 1902, + 0, 1875, 1854, + 0, 1914, 1779, + 0, 1961, 1656, + 0, 2017, 1412, + 0, 2082, 13, + 0, 2157, 0, + 0, 2242, 0, + 0, 2334, 0, + 0, 2435, 0, + 0, 2541, 0, + 0, 2654, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3138, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3522, 0, + 0, 3652, 0, + 0, 1742, 2025, + 0, 1743, 2024, + 0, 1745, 2023, + 0, 1747, 2021, + 0, 1750, 2018, + 0, 1754, 2015, + 0, 1759, 2010, + 0, 1766, 2004, + 0, 1775, 1995, + 0, 1786, 1983, + 0, 1801, 1967, + 0, 1821, 1944, + 0, 1845, 1911, + 0, 1876, 1864, + 0, 1915, 1791, + 0, 1962, 1672, + 0, 2018, 1438, + 0, 2083, 386, + 0, 2158, 0, + 0, 2242, 0, + 0, 2335, 0, + 0, 2435, 0, + 0, 2542, 0, + 0, 2654, 0, + 0, 2770, 0, + 0, 2890, 0, + 0, 3013, 0, + 0, 3139, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3523, 0, + 0, 3652, 0, + 0, 1744, 2035, + 0, 1746, 2033, + 0, 1747, 2032, + 0, 1749, 2030, + 0, 1752, 2028, + 0, 1756, 2024, + 0, 1761, 2020, + 0, 1768, 2013, + 0, 1777, 2005, + 0, 1788, 1993, + 0, 1803, 1977, + 0, 1823, 1955, + 0, 1847, 1923, + 0, 1878, 1877, + 0, 1917, 1806, + 0, 1963, 1691, + 0, 2019, 1470, + 0, 2084, 640, + 0, 2159, 0, + 0, 2243, 0, + 0, 2336, 0, + 0, 2436, 0, + 0, 2542, 0, + 0, 2654, 0, + 0, 2771, 0, + 0, 2891, 0, + 0, 3014, 0, + 0, 3139, 0, + 0, 3265, 0, + 0, 3393, 0, + 0, 3523, 0, + 0, 3652, 0, + 0, 1748, 2046, + 0, 1749, 2045, + 0, 1750, 2044, + 0, 1753, 2042, + 0, 1755, 2040, + 0, 1759, 2036, + 0, 1764, 2032, + 0, 1771, 2026, + 0, 1780, 2018, + 0, 1791, 2006, + 0, 1806, 1991, + 0, 1825, 1969, + 0, 1850, 1938, + 0, 1881, 1893, + 0, 1919, 1826, + 0, 1965, 1716, + 0, 2021, 1510, + 0, 2086, 846, + 0, 2160, 0, + 0, 2244, 0, + 0, 2336, 0, + 0, 2436, 0, + 0, 2543, 0, + 0, 2655, 0, + 0, 2771, 0, + 0, 2891, 0, + 0, 3014, 0, + 0, 3139, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3652, 0, + 0, 1752, 2062, + 0, 1753, 2061, + 0, 1755, 2060, + 0, 1757, 2058, + 0, 1760, 2055, + 0, 1763, 2052, + 0, 1768, 2048, + 0, 1775, 2042, + 0, 1784, 2034, + 0, 1795, 2023, + 0, 1810, 2008, + 0, 1829, 1987, + 0, 1853, 1958, + 0, 1884, 1915, + 0, 1922, 1851, + 0, 1968, 1748, + 0, 2023, 1559, + 0, 2088, 1026, + 0, 2162, 0, + 0, 2246, 0, + 0, 2338, 0, + 0, 2437, 0, + 0, 2543, 0, + 0, 2655, 0, + 0, 2771, 0, + 0, 2891, 0, + 0, 3014, 0, + 0, 3139, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3652, 0, + 0, 1757, 2082, + 0, 1759, 2081, + 0, 1760, 2080, + 0, 1762, 2078, + 0, 1765, 2076, + 0, 1769, 2073, + 0, 1774, 2068, + 0, 1780, 2063, + 0, 1789, 2055, + 0, 1800, 2045, + 0, 1815, 2030, + 0, 1834, 2011, + 0, 1858, 1983, + 0, 1888, 1942, + 0, 1925, 1882, + 0, 1971, 1787, + 0, 2026, 1616, + 0, 2090, 1191, + 0, 2164, 0, + 0, 2247, 0, + 0, 2339, 0, + 0, 2438, 0, + 0, 2544, 0, + 0, 2656, 0, + 0, 2772, 0, + 0, 2892, 0, + 0, 3014, 0, + 0, 3139, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3653, 0, + 30, 1765, 2107, + 0, 1766, 2106, + 0, 1767, 2105, + 0, 1770, 2103, + 0, 1772, 2101, + 0, 1776, 2098, + 0, 1781, 2094, + 0, 1787, 2089, + 0, 1796, 2082, + 0, 1807, 2072, + 0, 1821, 2059, + 0, 1840, 2040, + 0, 1864, 2014, + 0, 1893, 1976, + 0, 1931, 1921, + 0, 1976, 1834, + 0, 2030, 1684, + 0, 2094, 1346, + 0, 2167, 0, + 0, 2250, 0, + 0, 2341, 0, + 0, 2440, 0, + 0, 2546, 0, + 0, 2657, 0, + 0, 2773, 0, + 0, 2892, 0, + 0, 3015, 0, + 0, 3140, 0, + 0, 3266, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3653, 0, + 1247, 1774, 2139, + 1239, 1775, 2138, + 1228, 1777, 2137, + 1213, 1779, 2136, + 1193, 1782, 2133, + 1163, 1785, 2131, + 1121, 1790, 2127, + 1058, 1796, 2122, + 956, 1805, 2116, + 771, 1816, 2106, + 265, 1830, 2094, + 0, 1848, 2077, + 0, 1871, 2053, + 0, 1901, 2018, + 0, 1937, 1968, + 0, 1982, 1890, + 0, 2036, 1760, + 0, 2099, 1495, + 0, 2171, 0, + 0, 2253, 0, + 0, 2344, 0, + 0, 2442, 0, + 0, 2547, 0, + 0, 2658, 0, + 0, 2774, 0, + 0, 2893, 0, + 0, 3015, 0, + 0, 3140, 0, + 0, 3267, 0, + 0, 3394, 0, + 0, 3523, 0, + 0, 3653, 0, + 1614, 1787, 2178, + 1611, 1788, 2178, + 1606, 1790, 2177, + 1600, 1792, 2175, + 1591, 1794, 2173, + 1579, 1798, 2171, + 1563, 1802, 2167, + 1540, 1808, 2163, + 1507, 1817, 2157, + 1459, 1827, 2149, + 1387, 1841, 2137, + 1267, 1859, 2122, + 1031, 1881, 2100, + 0, 1910, 2069, + 0, 1946, 2024, + 0, 1990, 1956, + 0, 2043, 1846, + 0, 2105, 1639, + 0, 2177, 963, + 0, 2258, 0, + 0, 2348, 0, + 0, 2445, 0, + 0, 2550, 0, + 0, 2660, 0, + 0, 2775, 0, + 0, 2894, 0, + 0, 3016, 0, + 0, 3141, 0, + 0, 3267, 0, + 0, 3395, 0, + 0, 3523, 0, + 0, 3653, 0, + 1867, 1803, 2226, + 1865, 1804, 2225, + 1862, 1806, 2224, + 1858, 1808, 2223, + 1853, 1810, 2222, + 1847, 1814, 2219, + 1838, 1818, 2216, + 1825, 1824, 2212, + 1808, 1832, 2207, + 1784, 1842, 2199, + 1750, 1855, 2189, + 1700, 1873, 2175, + 1623, 1895, 2156, + 1494, 1923, 2129, + 1232, 1958, 2090, + 0, 2000, 2032, + 0, 2052, 1940, + 0, 2113, 1780, + 0, 2184, 1399, + 0, 2264, 0, + 0, 2352, 0, + 0, 2449, 0, + 0, 2553, 0, + 0, 2663, 0, + 0, 2777, 0, + 0, 2896, 0, + 0, 3017, 0, + 0, 3142, 0, + 0, 3268, 0, + 0, 3395, 0, + 0, 3524, 0, + 0, 3653, 0, + 2071, 1824, 2283, + 2070, 1825, 2282, + 2068, 1827, 2282, + 2066, 1828, 2281, + 2063, 1831, 2279, + 2059, 1834, 2277, + 2053, 1838, 2274, + 2046, 1844, 2271, + 2035, 1851, 2266, + 2021, 1861, 2260, + 2001, 1874, 2251, + 1973, 1891, 2239, + 1932, 1912, 2222, + 1871, 1939, 2198, + 1775, 1973, 2165, + 1602, 2014, 2117, + 1165, 2064, 2042, + 0, 2124, 1918, + 0, 2193, 1672, + 0, 2271, 186, + 0, 2359, 0, + 0, 2454, 0, + 0, 2557, 0, + 0, 2666, 0, + 0, 2780, 0, + 0, 2898, 0, + 0, 3019, 0, + 0, 3143, 0, + 0, 3268, 0, + 0, 3396, 0, + 0, 3524, 0, + 0, 3654, 0, + 2251, 1851, 2350, + 2250, 1852, 2349, + 2249, 1853, 2348, + 2248, 1855, 2347, + 2246, 1857, 2346, + 2243, 1860, 2344, + 2239, 1864, 2342, + 2234, 1869, 2339, + 2227, 1877, 2335, + 2218, 1886, 2329, + 2205, 1898, 2322, + 2187, 1914, 2311, + 2162, 1934, 2297, + 2127, 1960, 2277, + 2074, 1992, 2250, + 1993, 2032, 2210, + 1855, 2080, 2150, + 1563, 2138, 2055, + 0, 2205, 1887, + 0, 2281, 1471, + 0, 2367, 0, + 0, 2461, 0, + 0, 2562, 0, + 0, 2670, 0, + 0, 2783, 0, + 0, 2900, 0, + 0, 3021, 0, + 0, 3144, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 2416, 1884, 2425, + 2415, 1885, 2425, + 2415, 1886, 2424, + 2413, 1888, 2424, + 2412, 1890, 2423, + 2410, 1893, 2421, + 2408, 1896, 2419, + 2404, 1901, 2417, + 2399, 1908, 2413, + 2393, 1917, 2408, + 2384, 1928, 2402, + 2372, 1943, 2393, + 2356, 1962, 2382, + 2333, 1986, 2365, + 2300, 2017, 2342, + 2253, 2054, 2310, + 2180, 2101, 2263, + 2060, 2156, 2191, + 1826, 2220, 2072, + 763, 2295, 1841, + 0, 2378, 850, + 0, 2470, 0, + 0, 2570, 0, + 0, 2676, 0, + 0, 2787, 0, + 0, 2904, 0, + 0, 3023, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 2571, 1925, 2511, + 2571, 1926, 2510, + 2570, 1927, 2510, + 2569, 1928, 2509, + 2568, 1930, 2508, + 2567, 1933, 2507, + 2565, 1936, 2505, + 2563, 1941, 2503, + 2559, 1947, 2500, + 2555, 1955, 2496, + 2549, 1965, 2491, + 2540, 1979, 2484, + 2529, 1997, 2474, + 2514, 2019, 2461, + 2492, 2048, 2443, + 2461, 2083, 2417, + 2417, 2126, 2380, + 2350, 2179, 2326, + 2240, 2240, 2240, + 2036, 2312, 2094, + 1384, 2392, 1771, + 0, 2482, 0, + 0, 2579, 0, + 0, 2683, 0, + 0, 2793, 0, + 0, 2908, 0, + 0, 3027, 0, + 0, 3149, 0, + 0, 3273, 0, + 0, 3399, 0, + 0, 3527, 0, + 0, 3656, 0, + 2720, 1975, 2604, + 2719, 1975, 2604, + 2719, 1976, 2603, + 2718, 1978, 2603, + 2718, 1979, 2602, + 2717, 1982, 2601, + 2715, 1985, 2600, + 2713, 1989, 2598, + 2711, 1994, 2596, + 2708, 2002, 2593, + 2704, 2011, 2588, + 2698, 2023, 2583, + 2690, 2039, 2575, + 2679, 2060, 2564, + 2664, 2086, 2550, + 2643, 2119, 2529, + 2614, 2159, 2501, + 2571, 2208, 2460, + 2508, 2266, 2398, + 2405, 2333, 2299, + 2218, 2411, 2122, + 1698, 2497, 1658, + 0, 2591, 0, + 0, 2693, 0, + 0, 2801, 0, + 0, 2914, 0, + 0, 3032, 0, + 0, 3152, 0, + 0, 3276, 0, + 0, 3401, 0, + 0, 3529, 0, + 0, 3657, 0, + 2864, 2033, 2705, + 2863, 2034, 2705, + 2863, 2035, 2704, + 2863, 2036, 2704, + 2862, 2038, 2703, + 2861, 2040, 2703, + 2860, 2042, 2702, + 2859, 2046, 2700, + 2857, 2051, 2698, + 2855, 2057, 2696, + 2852, 2066, 2692, + 2848, 2076, 2688, + 2842, 2091, 2682, + 2834, 2109, 2673, + 2824, 2133, 2662, + 2809, 2162, 2646, + 2789, 2199, 2624, + 2761, 2244, 2593, + 2720, 2298, 2548, + 2658, 2361, 2479, + 2560, 2434, 2368, + 2385, 2516, 2156, + 1930, 2607, 1441, + 0, 2706, 0, + 0, 2811, 0, + 0, 2922, 0, + 0, 3038, 0, + 0, 3157, 0, + 0, 3279, 0, + 0, 3404, 0, + 0, 3531, 0, + 0, 3658, 0, + 3004, 2102, 2812, + 3004, 2102, 2812, + 3004, 2103, 2812, + 3004, 2104, 2811, + 3003, 2105, 2811, + 3003, 2107, 2810, + 3002, 2110, 2810, + 3001, 2113, 2808, + 3000, 2117, 2807, + 2998, 2122, 2805, + 2996, 2130, 2802, + 2993, 2139, 2799, + 2989, 2152, 2794, + 2983, 2168, 2787, + 2976, 2188, 2779, + 2965, 2215, 2766, + 2951, 2248, 2750, + 2931, 2288, 2726, + 2903, 2337, 2693, + 2863, 2396, 2644, + 2804, 2464, 2570, + 2709, 2541, 2446, + 2541, 2628, 2199, + 2125, 2722, 664, + 0, 2824, 0, + 0, 2932, 0, + 0, 3046, 0, + 0, 3163, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3660, 0, + 3143, 2180, 2925, + 3143, 2180, 2925, + 3143, 2181, 2924, + 3142, 2182, 2924, + 3142, 2183, 2924, + 3142, 2184, 2923, + 3141, 2186, 2923, + 3141, 2189, 2922, + 3140, 2192, 2921, + 3138, 2197, 2919, + 3137, 2203, 2917, + 3134, 2211, 2914, + 3131, 2222, 2911, + 3127, 2236, 2906, + 3122, 2254, 2899, + 3114, 2276, 2890, + 3104, 2305, 2877, + 3090, 2341, 2859, + 3071, 2385, 2835, + 3043, 2438, 2799, + 3004, 2500, 2748, + 2945, 2572, 2668, + 2853, 2653, 2532, + 2690, 2743, 2250, + 2299, 2841, 0, + 0, 2946, 0, + 0, 3056, 0, + 0, 3171, 0, + 0, 3290, 0, + 0, 3412, 0, + 0, 3537, 0, + 0, 3663, 0, + 3280, 2267, 3042, + 3280, 2267, 3042, + 3280, 2267, 3041, + 3279, 2268, 3041, + 3279, 2269, 3041, + 3279, 2270, 3041, + 3278, 2272, 3040, + 3278, 2274, 3039, + 3277, 2277, 3039, + 3276, 2281, 3037, + 3275, 2286, 3036, + 3273, 2293, 3034, + 3271, 2302, 3031, + 3268, 2313, 3027, + 3264, 2328, 3022, + 3259, 2348, 3015, + 3251, 2373, 3005, + 3241, 2404, 2992, + 3227, 2442, 2974, + 3208, 2489, 2948, + 3181, 2545, 2911, + 3142, 2611, 2857, + 3085, 2686, 2773, + 2994, 2770, 2628, + 2835, 2863, 2310, + 2460, 2963, 0, + 0, 3070, 0, + 0, 3182, 0, + 0, 3299, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 3415, 2362, 3162, + 3415, 2362, 3162, + 3415, 2362, 3162, + 3415, 2363, 3162, + 3415, 2364, 3162, + 3415, 2365, 3161, + 3414, 2366, 3161, + 3414, 2368, 3160, + 3414, 2370, 3160, + 3413, 2373, 3159, + 3412, 2377, 3158, + 3411, 2383, 3156, + 3409, 2390, 3154, + 3407, 2400, 3151, + 3404, 2412, 3147, + 3400, 2429, 3142, + 3394, 2449, 3134, + 3387, 2476, 3124, + 3377, 2509, 3111, + 3363, 2550, 3092, + 3344, 2599, 3066, + 3318, 2658, 3028, + 3279, 2726, 2971, + 3222, 2804, 2883, + 3132, 2891, 2730, + 2976, 2985, 2380, + 2613, 3088, 0, + 0, 3196, 0, + 0, 3309, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3550, 2464, 3285, + 3550, 2464, 3285, + 3550, 2464, 3285, + 3550, 2465, 3285, + 3550, 2465, 3285, + 3550, 2466, 3285, + 3549, 2467, 3284, + 3549, 2469, 3284, + 3549, 2471, 3284, + 3548, 2473, 3283, + 3548, 2477, 3282, + 3547, 2481, 3281, + 3545, 2487, 3279, + 3544, 2495, 3277, + 3542, 2505, 3274, + 3539, 2518, 3270, + 3535, 2535, 3264, + 3529, 2557, 3257, + 3522, 2585, 3247, + 3512, 2620, 3233, + 3498, 2663, 3214, + 3479, 2714, 3187, + 3453, 2775, 3148, + 3415, 2845, 3090, + 3358, 2925, 2999, + 3269, 3014, 2838, + 3115, 3110, 2460, + 2760, 3214, 0, + 0, 3323, 0, + 0, 3438, 0, + 0, 3556, 0, + 0, 3678, 0, + 3684, 2572, 3411, + 3684, 2572, 3411, + 3684, 2573, 3411, + 3684, 2573, 3410, + 3684, 2574, 3410, + 3684, 2574, 3410, + 3684, 2575, 3410, + 3683, 2576, 3410, + 3683, 2578, 3409, + 3683, 2580, 3409, + 3682, 2582, 3408, + 3682, 2586, 3407, + 3681, 2591, 3406, + 3679, 2597, 3404, + 3678, 2605, 3402, + 3676, 2616, 3399, + 3673, 2630, 3395, + 3669, 2647, 3389, + 3663, 2670, 3382, + 3656, 2699, 3371, + 3646, 2736, 3357, + 3633, 2780, 3338, + 3614, 2833, 3310, + 3587, 2895, 3270, + 3549, 2967, 3211, + 3493, 3049, 3118, + 3405, 3139, 2952, + 3252, 3237, 2548, + 2902, 3342, 0, + 0, 3452, 0, + 0, 3567, 0, + 0, 3686, 0, + 3818, 2686, 3538, + 3818, 2686, 3538, + 3818, 2686, 3538, + 3818, 2686, 3537, + 3817, 2687, 3537, + 3817, 2687, 3537, + 3817, 2688, 3537, + 3817, 2689, 3537, + 3817, 2690, 3537, + 3817, 2692, 3536, + 3816, 2694, 3536, + 3816, 2696, 3535, + 3815, 2700, 3534, + 3814, 2705, 3533, + 3813, 2711, 3531, + 3811, 2720, 3529, + 3809, 2731, 3526, + 3806, 2745, 3522, + 3802, 2764, 3516, + 3797, 2788, 3508, + 3790, 2818, 3498, + 3780, 2855, 3484, + 3766, 2900, 3464, + 3748, 2955, 3436, + 3721, 3018, 3395, + 3683, 3092, 3335, + 3627, 3174, 3240, + 3540, 3266, 3070, + 3387, 3365, 2644, + 3042, 3470, 0, + 0, 3582, 0, + 0, 3697, 0, + 3951, 2804, 3666, + 3951, 2804, 3666, + 3951, 2804, 3666, + 3951, 2804, 3666, + 3951, 2804, 3666, + 3951, 2805, 3666, + 3951, 2805, 3665, + 3950, 2806, 3665, + 3950, 2807, 3665, + 3950, 2808, 3665, + 3950, 2810, 3664, + 3949, 2812, 3664, + 3949, 2815, 3663, + 3948, 2818, 3662, + 3947, 2823, 3661, + 3946, 2830, 3659, + 3944, 2839, 3657, + 3942, 2850, 3654, + 3939, 2865, 3650, + 3935, 2884, 3644, + 3930, 2909, 3636, + 3923, 2939, 3626, + 3913, 2977, 3611, + 3900, 3024, 3591, + 3881, 3079, 3563, + 3855, 3144, 3522, + 3817, 3218, 3461, + 3761, 3302, 3364, + 3674, 3394, 3191, + 3522, 3494, 2748, + 3180, 3600, 0, + 0, 3712, 0, + 4084, 2925, 3795, + 4084, 2925, 3795, + 4084, 2925, 3795, + 4084, 2925, 3795, + 4084, 2925, 3795, + 4084, 2926, 3795, + 4083, 2926, 3795, + 4083, 2926, 3795, + 4083, 2927, 3794, + 4083, 2928, 3794, + 4083, 2929, 3794, + 4083, 2931, 3794, + 4082, 2933, 3793, + 4082, 2936, 3792, + 4081, 2940, 3791, + 4080, 2945, 3790, + 4079, 2952, 3788, + 4077, 2961, 3786, + 4075, 2972, 3783, + 4072, 2988, 3779, + 4068, 3007, 3773, + 4063, 3032, 3765, + 4056, 3063, 3755, + 4046, 3102, 3740, + 4033, 3149, 3720, + 4014, 3205, 3691, + 3988, 3271, 3650, + 3950, 3346, 3589, + 3894, 3430, 3491, + 3807, 3523, 3314, + 3656, 3623, 2857, + 3317, 3730, 0, + 4095, 3048, 3925, + 4095, 3048, 3925, + 4095, 3048, 3925, + 4095, 3049, 3925, + 4095, 3049, 3925, + 4095, 3049, 3925, + 4095, 3049, 3925, + 4095, 3050, 3925, + 4095, 3050, 3924, + 4095, 3051, 3924, + 4095, 3052, 3924, + 4095, 3053, 3924, + 4095, 3055, 3923, + 4095, 3057, 3923, + 4095, 3060, 3922, + 4095, 3064, 3921, + 4095, 3069, 3920, + 4095, 3076, 3918, + 4095, 3085, 3916, + 4095, 3097, 3913, + 4095, 3112, 3908, + 4095, 3132, 3903, + 4095, 3157, 3895, + 4095, 3189, 3884, + 4095, 3228, 3870, + 4095, 3276, 3849, + 4095, 3333, 3821, + 4095, 3399, 3779, + 4083, 3475, 3717, + 4027, 3560, 3619, + 3940, 3653, 3440, + 3790, 3754, 2972, + 4095, 3174, 4055, + 4095, 3174, 4055, + 4095, 3174, 4055, + 4095, 3174, 4055, + 4095, 3174, 4055, + 4095, 3174, 4055, + 4095, 3175, 4055, + 4095, 3175, 4055, + 4095, 3175, 4055, + 4095, 3176, 4055, + 4095, 3177, 4055, + 4095, 3178, 4055, + 4095, 3179, 4054, + 4095, 3181, 4054, + 4095, 3183, 4053, + 4095, 3186, 4053, + 4095, 3190, 4052, + 4095, 3195, 4050, + 4095, 3202, 4049, + 4095, 3211, 4046, + 4095, 3223, 4043, + 4095, 3239, 4039, + 4095, 3259, 4033, + 4095, 3285, 4025, + 4095, 3317, 4015, + 4095, 3356, 4000, + 4095, 3404, 3979, + 4095, 3461, 3951, + 4095, 3528, 3909, + 4095, 3604, 3847, + 4095, 3690, 3747, + 4073, 3783, 3567, + 0, 1867, 2134, + 0, 1868, 2133, + 0, 1869, 2132, + 0, 1871, 2130, + 0, 1873, 2128, + 0, 1876, 2126, + 0, 1880, 2122, + 0, 1885, 2117, + 0, 1892, 2110, + 0, 1901, 2101, + 0, 1913, 2088, + 0, 1928, 2071, + 0, 1948, 2047, + 0, 1973, 2012, + 0, 2004, 1961, + 0, 2043, 1882, + 0, 2090, 1749, + 0, 2146, 1473, + 0, 2212, 0, + 0, 2288, 0, + 0, 2372, 0, + 0, 2465, 0, + 0, 2566, 0, + 0, 2673, 0, + 0, 2785, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 0, 1867, 2135, + 0, 1868, 2134, + 0, 1869, 2133, + 0, 1871, 2132, + 0, 1873, 2130, + 0, 1876, 2127, + 0, 1880, 2123, + 0, 1885, 2118, + 0, 1892, 2112, + 0, 1901, 2102, + 0, 1913, 2090, + 0, 1928, 2072, + 0, 1948, 2048, + 0, 1973, 2013, + 0, 2004, 1962, + 0, 2043, 1884, + 0, 2090, 1752, + 0, 2147, 1479, + 0, 2213, 0, + 0, 2288, 0, + 0, 2372, 0, + 0, 2465, 0, + 0, 2566, 0, + 0, 2673, 0, + 0, 2785, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3654, 0, + 0, 1868, 2137, + 0, 1869, 2136, + 0, 1870, 2135, + 0, 1872, 2133, + 0, 1874, 2131, + 0, 1877, 2129, + 0, 1881, 2125, + 0, 1886, 2120, + 0, 1893, 2113, + 0, 1902, 2104, + 0, 1913, 2092, + 0, 1929, 2074, + 0, 1948, 2050, + 0, 1973, 2016, + 0, 2004, 1965, + 0, 2043, 1887, + 0, 2091, 1756, + 0, 2147, 1486, + 0, 2213, 0, + 0, 2288, 0, + 0, 2373, 0, + 0, 2466, 0, + 0, 2566, 0, + 0, 2673, 0, + 0, 2785, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 0, 1868, 2139, + 0, 1869, 2138, + 0, 1870, 2137, + 0, 1872, 2136, + 0, 1874, 2134, + 0, 1877, 2131, + 0, 1881, 2127, + 0, 1886, 2122, + 0, 1893, 2116, + 0, 1902, 2107, + 0, 1914, 2094, + 0, 1929, 2077, + 0, 1949, 2053, + 0, 1974, 2019, + 0, 2005, 1968, + 0, 2044, 1891, + 0, 2091, 1761, + 0, 2147, 1495, + 0, 2213, 0, + 0, 2288, 0, + 0, 2373, 0, + 0, 2466, 0, + 0, 2566, 0, + 0, 2673, 0, + 0, 2785, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 0, 1869, 2142, + 0, 1870, 2141, + 0, 1871, 2140, + 0, 1873, 2139, + 0, 1875, 2137, + 0, 1878, 2134, + 0, 1882, 2130, + 0, 1887, 2125, + 0, 1894, 2119, + 0, 1903, 2110, + 0, 1915, 2097, + 0, 1930, 2080, + 0, 1949, 2056, + 0, 1974, 2022, + 0, 2005, 1973, + 0, 2044, 1896, + 0, 2091, 1768, + 0, 2148, 1508, + 0, 2213, 0, + 0, 2289, 0, + 0, 2373, 0, + 0, 2466, 0, + 0, 2566, 0, + 0, 2673, 0, + 0, 2785, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 0, 1870, 2146, + 0, 1871, 2145, + 0, 1872, 2144, + 0, 1874, 2143, + 0, 1876, 2141, + 0, 1879, 2138, + 0, 1883, 2134, + 0, 1888, 2130, + 0, 1895, 2123, + 0, 1904, 2114, + 0, 1915, 2102, + 0, 1931, 2085, + 0, 1950, 2061, + 0, 1975, 2028, + 0, 2006, 1978, + 0, 2045, 1903, + 0, 2092, 1777, + 0, 2148, 1523, + 0, 2214, 0, + 0, 2289, 0, + 0, 2373, 0, + 0, 2466, 0, + 0, 2567, 0, + 0, 2673, 0, + 0, 2786, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3270, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 0, 1871, 2151, + 0, 1872, 2151, + 0, 1874, 2149, + 0, 1875, 2148, + 0, 1877, 2146, + 0, 1880, 2143, + 0, 1884, 2140, + 0, 1889, 2135, + 0, 1896, 2129, + 0, 1905, 2120, + 0, 1917, 2108, + 0, 1932, 2091, + 0, 1951, 2068, + 0, 1976, 2034, + 0, 2007, 1986, + 0, 2046, 1912, + 0, 2093, 1788, + 0, 2149, 1544, + 0, 2214, 145, + 0, 2290, 0, + 0, 2374, 0, + 0, 2467, 0, + 0, 2567, 0, + 0, 2674, 0, + 0, 2786, 0, + 0, 2902, 0, + 0, 3022, 0, + 0, 3145, 0, + 0, 3271, 0, + 0, 3397, 0, + 0, 3525, 0, + 0, 3655, 0, + 0, 1873, 2158, + 0, 1874, 2157, + 0, 1875, 2156, + 0, 1877, 2155, + 0, 1879, 2153, + 0, 1882, 2150, + 0, 1886, 2147, + 0, 1891, 2142, + 0, 1898, 2136, + 0, 1907, 2127, + 0, 1918, 2115, + 0, 1933, 2099, + 0, 1953, 2076, + 0, 1977, 2043, + 0, 2009, 1996, + 0, 2047, 1923, + 0, 2094, 1804, + 0, 2150, 1570, + 0, 2215, 518, + 0, 2290, 0, + 0, 2374, 0, + 0, 2467, 0, + 0, 2567, 0, + 0, 2674, 0, + 0, 2786, 0, + 0, 2902, 0, + 0, 3023, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3397, 0, + 0, 3526, 0, + 0, 3655, 0, + 0, 1876, 2167, + 0, 1876, 2167, + 0, 1878, 2166, + 0, 1879, 2164, + 0, 1882, 2162, + 0, 1884, 2160, + 0, 1888, 2156, + 0, 1893, 2152, + 0, 1900, 2145, + 0, 1909, 2137, + 0, 1920, 2125, + 0, 1935, 2109, + 0, 1955, 2087, + 0, 1979, 2055, + 0, 2010, 2009, + 0, 2049, 1938, + 0, 2095, 1823, + 0, 2151, 1602, + 0, 2216, 772, + 0, 2291, 0, + 0, 2375, 0, + 0, 2468, 0, + 0, 2568, 0, + 0, 2674, 0, + 0, 2786, 0, + 0, 2903, 0, + 0, 3023, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 0, 1879, 2179, + 0, 1880, 2179, + 0, 1881, 2178, + 0, 1883, 2176, + 0, 1885, 2174, + 0, 1888, 2172, + 0, 1891, 2168, + 0, 1896, 2164, + 0, 1903, 2158, + 0, 1912, 2150, + 0, 1923, 2138, + 0, 1938, 2123, + 0, 1957, 2101, + 0, 1982, 2070, + 0, 2013, 2026, + 0, 2051, 1958, + 0, 2097, 1848, + 0, 2153, 1642, + 0, 2218, 978, + 0, 2293, 0, + 0, 2376, 0, + 0, 2469, 0, + 0, 2568, 0, + 0, 2675, 0, + 0, 2787, 0, + 0, 2903, 0, + 0, 3023, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 0, 1883, 2195, + 0, 1884, 2194, + 0, 1885, 2193, + 0, 1887, 2192, + 0, 1889, 2190, + 0, 1892, 2188, + 0, 1895, 2184, + 0, 1900, 2180, + 0, 1907, 2174, + 0, 1916, 2166, + 0, 1927, 2155, + 0, 1942, 2140, + 0, 1961, 2119, + 0, 1985, 2090, + 0, 2016, 2047, + 0, 2054, 1983, + 0, 2100, 1880, + 0, 2155, 1691, + 0, 2220, 1158, + 0, 2294, 0, + 0, 2378, 0, + 0, 2470, 0, + 0, 2569, 0, + 0, 2676, 0, + 0, 2787, 0, + 0, 2904, 0, + 0, 3023, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 0, 1889, 2215, + 0, 1889, 2214, + 0, 1891, 2213, + 0, 1892, 2212, + 0, 1894, 2210, + 0, 1897, 2208, + 0, 1901, 2205, + 0, 1906, 2200, + 0, 1912, 2195, + 0, 1921, 2187, + 0, 1932, 2177, + 0, 1947, 2163, + 0, 1966, 2143, + 0, 1990, 2115, + 0, 2020, 2074, + 0, 2058, 2014, + 0, 2103, 1919, + 0, 2158, 1748, + 0, 2223, 1323, + 0, 2296, 0, + 0, 2380, 0, + 0, 2471, 0, + 0, 2571, 0, + 0, 2677, 0, + 0, 2788, 0, + 0, 2904, 0, + 0, 3024, 0, + 0, 3146, 0, + 0, 3271, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 241, 1896, 2240, + 162, 1897, 2239, + 31, 1898, 2238, + 0, 1900, 2237, + 0, 1902, 2236, + 0, 1904, 2233, + 0, 1908, 2230, + 0, 1913, 2227, + 0, 1919, 2221, + 0, 1928, 2214, + 0, 1939, 2204, + 0, 1953, 2191, + 0, 1972, 2172, + 0, 1996, 2146, + 0, 2026, 2108, + 0, 2063, 2053, + 0, 2108, 1966, + 0, 2162, 1816, + 0, 2226, 1478, + 0, 2299, 0, + 0, 2382, 0, + 0, 2473, 0, + 0, 2572, 0, + 0, 2678, 0, + 0, 2789, 0, + 0, 2905, 0, + 0, 3024, 0, + 0, 3147, 0, + 0, 3272, 0, + 0, 3398, 0, + 0, 3526, 0, + 0, 3655, 0, + 1385, 1906, 2272, + 1379, 1906, 2271, + 1371, 1908, 2270, + 1360, 1909, 2269, + 1345, 1911, 2268, + 1325, 1914, 2266, + 1296, 1917, 2263, + 1253, 1922, 2259, + 1190, 1929, 2254, + 1089, 1937, 2248, + 903, 1948, 2239, + 397, 1962, 2226, + 0, 1980, 2209, + 0, 2003, 2185, + 0, 2033, 2150, + 0, 2069, 2100, + 0, 2114, 2023, + 0, 2168, 1893, + 0, 2231, 1627, + 0, 2303, 0, + 0, 2385, 0, + 0, 2476, 0, + 0, 2574, 0, + 0, 2680, 0, + 0, 2790, 0, + 0, 2906, 0, + 0, 3025, 0, + 0, 3148, 0, + 0, 3272, 0, + 0, 3399, 0, + 0, 3526, 0, + 0, 3655, 0, + 1749, 1918, 2311, + 1747, 1919, 2310, + 1743, 1920, 2310, + 1738, 1922, 2309, + 1732, 1924, 2307, + 1723, 1926, 2305, + 1711, 1930, 2303, + 1695, 1934, 2300, + 1672, 1941, 2295, + 1639, 1949, 2289, + 1592, 1959, 2281, + 1519, 1973, 2269, + 1399, 1991, 2254, + 1164, 2014, 2232, + 83, 2042, 2201, + 0, 2078, 2156, + 0, 2122, 2088, + 0, 2175, 1978, + 0, 2237, 1771, + 0, 2309, 1096, + 0, 2390, 0, + 0, 2480, 0, + 0, 2577, 0, + 0, 2682, 0, + 0, 2792, 0, + 0, 2907, 0, + 0, 3026, 0, + 0, 3148, 0, + 0, 3273, 0, + 0, 3399, 0, + 0, 3527, 0, + 0, 3656, 0, + 2000, 1935, 2359, + 1999, 1935, 2358, + 1997, 1936, 2358, + 1994, 1938, 2357, + 1990, 1940, 2355, + 1985, 1942, 2354, + 1979, 1946, 2351, + 1970, 1950, 2348, + 1957, 1956, 2344, + 1940, 1964, 2339, + 1916, 1974, 2331, + 1882, 1988, 2321, + 1832, 2005, 2307, + 1755, 2027, 2288, + 1626, 2055, 2261, + 1364, 2090, 2222, + 0, 2133, 2164, + 0, 2184, 2073, + 0, 2245, 1912, + 0, 2316, 1531, + 0, 2396, 0, + 0, 2484, 0, + 0, 2581, 0, + 0, 2685, 0, + 0, 2795, 0, + 0, 2909, 0, + 0, 3028, 0, + 0, 3149, 0, + 0, 3274, 0, + 0, 3400, 0, + 0, 3527, 0, + 0, 3656, 0, + 2205, 1955, 2416, + 2204, 1956, 2415, + 2202, 1957, 2415, + 2201, 1959, 2414, + 2198, 1960, 2413, + 2195, 1963, 2411, + 2191, 1966, 2409, + 2185, 1970, 2407, + 2178, 1976, 2403, + 2167, 1984, 2398, + 2153, 1993, 2392, + 2133, 2006, 2383, + 2105, 2023, 2371, + 2064, 2044, 2354, + 2003, 2071, 2331, + 1907, 2105, 2297, + 1734, 2146, 2249, + 1297, 2196, 2174, + 0, 2256, 2050, + 0, 2325, 1804, + 0, 2403, 318, + 0, 2491, 0, + 0, 2586, 0, + 0, 2689, 0, + 0, 2798, 0, + 0, 2912, 0, + 0, 3030, 0, + 0, 3151, 0, + 0, 3275, 0, + 0, 3401, 0, + 0, 3528, 0, + 0, 3656, 0, + 2384, 1982, 2482, + 2383, 1983, 2482, + 2382, 1984, 2481, + 2381, 1985, 2480, + 2380, 1987, 2479, + 2378, 1989, 2478, + 2375, 1992, 2476, + 2371, 1996, 2474, + 2366, 2002, 2471, + 2359, 2009, 2467, + 2350, 2018, 2461, + 2337, 2030, 2454, + 2319, 2046, 2443, + 2294, 2066, 2429, + 2259, 2092, 2410, + 2206, 2124, 2382, + 2125, 2164, 2342, + 1987, 2212, 2282, + 1696, 2270, 2187, + 0, 2337, 2019, + 0, 2414, 1603, + 0, 2499, 0, + 0, 2593, 0, + 0, 2694, 0, + 0, 2802, 0, + 0, 2915, 0, + 0, 3032, 0, + 0, 3153, 0, + 0, 3276, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 2549, 2015, 2558, + 2548, 2016, 2558, + 2547, 2017, 2557, + 2547, 2018, 2557, + 2546, 2020, 2556, + 2544, 2022, 2555, + 2542, 2025, 2553, + 2540, 2029, 2551, + 2536, 2034, 2549, + 2531, 2040, 2545, + 2525, 2049, 2541, + 2516, 2060, 2534, + 2504, 2075, 2526, + 2488, 2094, 2514, + 2465, 2118, 2497, + 2432, 2149, 2475, + 2385, 2187, 2442, + 2312, 2233, 2395, + 2192, 2288, 2323, + 1958, 2352, 2204, + 895, 2427, 1973, + 0, 2510, 982, + 0, 2602, 0, + 0, 2702, 0, + 0, 2808, 0, + 0, 2919, 0, + 0, 3036, 0, + 0, 3156, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 2703, 2056, 2643, + 2703, 2057, 2643, + 2703, 2058, 2642, + 2702, 2059, 2642, + 2701, 2060, 2641, + 2700, 2062, 2640, + 2699, 2065, 2639, + 2697, 2068, 2637, + 2695, 2073, 2635, + 2691, 2079, 2632, + 2687, 2087, 2629, + 2681, 2097, 2623, + 2673, 2111, 2616, + 2661, 2129, 2607, + 2646, 2151, 2593, + 2624, 2180, 2575, + 2593, 2215, 2549, + 2549, 2259, 2512, + 2482, 2311, 2458, + 2373, 2373, 2373, + 2168, 2444, 2226, + 1516, 2524, 1903, + 0, 2614, 0, + 0, 2711, 0, + 0, 2815, 0, + 0, 2925, 0, + 0, 3040, 0, + 0, 3159, 0, + 0, 3281, 0, + 0, 3405, 0, + 0, 3531, 0, + 0, 3659, 0, + 2852, 2106, 2736, + 2852, 2107, 2736, + 2851, 2107, 2736, + 2851, 2108, 2735, + 2850, 2110, 2735, + 2850, 2111, 2734, + 2849, 2114, 2733, + 2847, 2117, 2732, + 2846, 2121, 2730, + 2843, 2126, 2728, + 2840, 2134, 2725, + 2836, 2143, 2720, + 2830, 2155, 2715, + 2822, 2171, 2707, + 2811, 2192, 2696, + 2796, 2218, 2682, + 2775, 2251, 2662, + 2746, 2291, 2633, + 2703, 2340, 2592, + 2640, 2398, 2530, + 2537, 2466, 2431, + 2350, 2543, 2254, + 1830, 2629, 1790, + 0, 2723, 0, + 0, 2825, 0, + 0, 2933, 0, + 0, 3046, 0, + 0, 3164, 0, + 0, 3284, 0, + 0, 3408, 0, + 0, 3533, 0, + 0, 3661, 0, + 2996, 2165, 2837, + 2996, 2165, 2837, + 2995, 2166, 2837, + 2995, 2167, 2836, + 2995, 2168, 2836, + 2994, 2170, 2835, + 2994, 2172, 2835, + 2993, 2174, 2834, + 2991, 2178, 2832, + 2990, 2183, 2830, + 2987, 2189, 2828, + 2984, 2198, 2825, + 2980, 2209, 2820, + 2974, 2223, 2814, + 2966, 2241, 2805, + 2956, 2265, 2794, + 2941, 2294, 2778, + 2921, 2331, 2756, + 2893, 2376, 2725, + 2852, 2430, 2680, + 2790, 2493, 2611, + 2693, 2566, 2500, + 2517, 2648, 2288, + 2062, 2739, 1573, + 0, 2838, 0, + 0, 2943, 0, + 0, 3054, 0, + 0, 3170, 0, + 0, 3289, 0, + 0, 3412, 0, + 0, 3536, 0, + 0, 3663, 0, + 3137, 2233, 2944, + 3136, 2234, 2944, + 3136, 2234, 2944, + 3136, 2235, 2944, + 3136, 2236, 2944, + 3135, 2238, 2943, + 3135, 2239, 2942, + 3134, 2242, 2942, + 3133, 2245, 2941, + 3132, 2249, 2939, + 3130, 2254, 2937, + 3128, 2262, 2934, + 3125, 2271, 2931, + 3121, 2284, 2926, + 3115, 2300, 2920, + 3108, 2320, 2911, + 3097, 2347, 2899, + 3083, 2380, 2882, + 3063, 2420, 2858, + 3036, 2469, 2825, + 2996, 2528, 2776, + 2936, 2596, 2702, + 2841, 2673, 2578, + 2673, 2760, 2331, + 2257, 2854, 796, + 0, 2956, 0, + 0, 3064, 0, + 0, 3178, 0, + 0, 3295, 0, + 0, 3416, 0, + 0, 3540, 0, + 0, 3665, 0, + 3275, 2311, 3057, + 3275, 2312, 3057, + 3275, 2312, 3057, + 3275, 2313, 3057, + 3275, 2314, 3056, + 3274, 2315, 3056, + 3274, 2316, 3055, + 3273, 2318, 3055, + 3273, 2321, 3054, + 3272, 2324, 3053, + 3270, 2329, 3051, + 3269, 2335, 3049, + 3267, 2343, 3046, + 3263, 2354, 3043, + 3259, 2368, 3038, + 3254, 2386, 3031, + 3246, 2409, 3022, + 3236, 2437, 3009, + 3222, 2473, 2991, + 3203, 2517, 2967, + 3175, 2570, 2931, + 3136, 2633, 2880, + 3078, 2704, 2800, + 2985, 2786, 2665, + 2822, 2875, 2382, + 2431, 2973, 0, + 0, 3078, 0, + 0, 3188, 0, + 0, 3303, 0, + 0, 3422, 0, + 0, 3545, 0, + 0, 3669, 0, + 3412, 2398, 3174, + 3412, 2399, 3174, + 3412, 2399, 3174, + 3412, 2400, 3174, + 3411, 2400, 3173, + 3411, 2401, 3173, + 3411, 2402, 3173, + 3411, 2404, 3172, + 3410, 2406, 3172, + 3409, 2409, 3171, + 3408, 2413, 3170, + 3407, 2418, 3168, + 3406, 2425, 3166, + 3403, 2434, 3163, + 3400, 2445, 3159, + 3396, 2461, 3154, + 3391, 2480, 3147, + 3383, 2505, 3137, + 3373, 2536, 3124, + 3360, 2574, 3106, + 3340, 2621, 3080, + 3313, 2677, 3043, + 3275, 2743, 2989, + 3217, 2818, 2905, + 3126, 2902, 2760, + 2967, 2995, 2442, + 2592, 3095, 0, + 0, 3202, 0, + 0, 3314, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 3547, 2493, 3294, + 3547, 2494, 3294, + 3547, 2494, 3294, + 3547, 2494, 3294, + 3547, 2495, 3294, + 3547, 2496, 3294, + 3547, 2497, 3293, + 3547, 2498, 3293, + 3546, 2500, 3293, + 3546, 2502, 3292, + 3545, 2505, 3291, + 3544, 2510, 3290, + 3543, 2515, 3288, + 3541, 2522, 3286, + 3539, 2532, 3283, + 3536, 2545, 3279, + 3532, 2561, 3274, + 3527, 2582, 3266, + 3519, 2608, 3257, + 3509, 2641, 3243, + 3496, 2682, 3224, + 3476, 2731, 3198, + 3450, 2790, 3160, + 3411, 2858, 3103, + 3354, 2936, 3015, + 3265, 3023, 2862, + 3108, 3118, 2512, + 2745, 3220, 0, + 0, 3328, 0, + 0, 3442, 0, + 0, 3559, 0, + 0, 3680, 0, + 3682, 2596, 3418, + 3682, 2596, 3417, + 3682, 2596, 3417, + 3682, 2597, 3417, + 3682, 2597, 3417, + 3682, 2598, 3417, + 3682, 2598, 3417, + 3681, 2599, 3417, + 3681, 2601, 3416, + 3681, 2603, 3416, + 3680, 2605, 3415, + 3680, 2609, 3414, + 3679, 2613, 3413, + 3677, 2619, 3411, + 3676, 2627, 3409, + 3674, 2637, 3406, + 3671, 2650, 3402, + 3667, 2667, 3396, + 3661, 2689, 3389, + 3654, 2717, 3379, + 3644, 2752, 3365, + 3630, 2795, 3346, + 3612, 2846, 3319, + 3585, 2907, 3280, + 3547, 2977, 3222, + 3490, 3057, 3131, + 3401, 3146, 2970, + 3247, 3242, 2592, + 2892, 3346, 0, + 0, 3456, 0, + 0, 3570, 0, + 0, 3689, 0, + 3816, 2704, 3543, + 3816, 2704, 3543, + 3816, 2705, 3543, + 3816, 2705, 3543, + 3816, 2705, 3543, + 3816, 2706, 3542, + 3816, 2706, 3542, + 3816, 2707, 3542, + 3815, 2708, 3542, + 3815, 2710, 3541, + 3815, 2712, 3541, + 3814, 2714, 3540, + 3814, 2718, 3539, + 3813, 2723, 3538, + 3811, 2729, 3536, + 3810, 2737, 3534, + 3808, 2748, 3531, + 3805, 2762, 3527, + 3801, 2780, 3521, + 3795, 2803, 3514, + 3788, 2832, 3504, + 3778, 2868, 3489, + 3765, 2912, 3470, + 3746, 2965, 3442, + 3719, 3027, 3403, + 3681, 3099, 3343, + 3625, 3181, 3250, + 3537, 3271, 3084, + 3384, 3369, 2680, + 3034, 3474, 0, + 0, 3584, 0, + 0, 3699, 0, + 3950, 2818, 3670, + 3950, 2818, 3670, + 3950, 2818, 3670, + 3950, 2818, 3670, + 3950, 2819, 3670, + 3950, 2819, 3669, + 3949, 2819, 3669, + 3949, 2820, 3669, + 3949, 2821, 3669, + 3949, 2822, 3669, + 3949, 2824, 3668, + 3948, 2826, 3668, + 3948, 2829, 3667, + 3947, 2832, 3666, + 3946, 2837, 3665, + 3945, 2844, 3663, + 3943, 2852, 3661, + 3941, 2863, 3658, + 3938, 2878, 3654, + 3934, 2896, 3648, + 3929, 2920, 3640, + 3922, 2950, 3630, + 3912, 2987, 3616, + 3898, 3032, 3596, + 3880, 3087, 3568, + 3853, 3151, 3528, + 3815, 3224, 3467, + 3759, 3307, 3372, + 3672, 3398, 3202, + 3520, 3497, 2776, + 3174, 3602, 0, + 0, 3714, 0, + 4083, 2936, 3798, + 4083, 2936, 3798, + 4083, 2936, 3798, + 4083, 2936, 3798, + 4083, 2936, 3798, + 4083, 2936, 3798, + 4083, 2937, 3798, + 4083, 2937, 3798, + 4082, 2938, 3797, + 4082, 2939, 3797, + 4082, 2940, 3797, + 4082, 2942, 3796, + 4081, 2944, 3796, + 4081, 2947, 3795, + 4080, 2951, 3794, + 4079, 2956, 3793, + 4078, 2962, 3791, + 4077, 2971, 3789, + 4074, 2982, 3786, + 4071, 2997, 3782, + 4068, 3016, 3776, + 4062, 3041, 3768, + 4055, 3071, 3758, + 4045, 3109, 3743, + 4032, 3156, 3723, + 4013, 3211, 3695, + 3987, 3276, 3654, + 3949, 3350, 3593, + 3893, 3434, 3496, + 3806, 3526, 3323, + 3654, 3626, 2880, + 3312, 3732, 0, + 4095, 3057, 3927, + 4095, 3057, 3927, + 4095, 3057, 3927, + 4095, 3057, 3927, + 4095, 3057, 3927, + 4095, 3057, 3927, + 4095, 3058, 3927, + 4095, 3058, 3927, + 4095, 3059, 3927, + 4095, 3059, 3927, + 4095, 3060, 3926, + 4095, 3061, 3926, + 4095, 3063, 3926, + 4095, 3065, 3925, + 4095, 3068, 3924, + 4095, 3072, 3923, + 4095, 3077, 3922, + 4095, 3084, 3920, + 4095, 3093, 3918, + 4095, 3105, 3915, + 4095, 3120, 3911, + 4095, 3139, 3905, + 4095, 3164, 3897, + 4095, 3195, 3887, + 4095, 3234, 3872, + 4095, 3281, 3852, + 4095, 3337, 3823, + 4095, 3403, 3782, + 4082, 3478, 3721, + 4026, 3562, 3623, + 3939, 3655, 3446, + 3788, 3755, 2989, + 4095, 3180, 4057, + 4095, 3180, 4057, + 4095, 3180, 4057, + 4095, 3181, 4057, + 4095, 3181, 4057, + 4095, 3181, 4057, + 4095, 3181, 4057, + 4095, 3181, 4057, + 4095, 3182, 4057, + 4095, 3182, 4057, + 4095, 3183, 4056, + 4095, 3184, 4056, + 4095, 3185, 4056, + 4095, 3187, 4055, + 4095, 3189, 4055, + 4095, 3192, 4054, + 4095, 3196, 4053, + 4095, 3201, 4052, + 4095, 3208, 4050, + 4095, 3217, 4048, + 4095, 3229, 4045, + 4095, 3245, 4040, + 4095, 3264, 4035, + 4095, 3290, 4027, + 4095, 3321, 4016, + 4095, 3360, 4002, + 4095, 3408, 3981, + 4095, 3465, 3953, + 4095, 3531, 3911, + 4095, 3607, 3849, + 4095, 3692, 3751, + 4073, 3785, 3572, + 0, 1998, 2266, + 0, 1999, 2265, + 0, 2000, 2264, + 0, 2001, 2263, + 0, 2003, 2262, + 0, 2005, 2260, + 0, 2008, 2257, + 0, 2012, 2253, + 0, 2017, 2248, + 0, 2024, 2241, + 0, 2033, 2232, + 0, 2045, 2219, + 0, 2060, 2202, + 0, 2079, 2177, + 0, 2104, 2143, + 0, 2136, 2091, + 0, 2175, 2012, + 0, 2222, 1879, + 0, 2278, 1601, + 0, 2344, 0, + 0, 2420, 0, + 0, 2504, 0, + 0, 2597, 0, + 0, 2698, 0, + 0, 2805, 0, + 0, 2917, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 0, 1998, 2267, + 0, 1999, 2266, + 0, 2000, 2265, + 0, 2001, 2264, + 0, 2003, 2263, + 0, 2005, 2260, + 0, 2008, 2258, + 0, 2012, 2254, + 0, 2017, 2249, + 0, 2024, 2242, + 0, 2033, 2233, + 0, 2045, 2220, + 0, 2060, 2203, + 0, 2080, 2179, + 0, 2105, 2144, + 0, 2136, 2093, + 0, 2175, 2014, + 0, 2222, 1881, + 0, 2279, 1606, + 0, 2344, 0, + 0, 2420, 0, + 0, 2504, 0, + 0, 2597, 0, + 0, 2698, 0, + 0, 2805, 0, + 0, 2917, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 0, 1999, 2268, + 0, 1999, 2267, + 0, 2000, 2266, + 0, 2002, 2265, + 0, 2003, 2264, + 0, 2005, 2262, + 0, 2008, 2259, + 0, 2012, 2255, + 0, 2017, 2250, + 0, 2024, 2244, + 0, 2033, 2234, + 0, 2045, 2222, + 0, 2060, 2204, + 0, 2080, 2180, + 0, 2105, 2145, + 0, 2136, 2095, + 0, 2175, 2016, + 0, 2222, 1884, + 0, 2279, 1611, + 0, 2345, 0, + 0, 2420, 0, + 0, 2505, 0, + 0, 2598, 0, + 0, 2698, 0, + 0, 2805, 0, + 0, 2917, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 0, 1999, 2270, + 0, 2000, 2269, + 0, 2001, 2268, + 0, 2002, 2267, + 0, 2004, 2265, + 0, 2006, 2263, + 0, 2009, 2261, + 0, 2013, 2257, + 0, 2018, 2252, + 0, 2025, 2245, + 0, 2034, 2236, + 0, 2045, 2224, + 0, 2061, 2206, + 0, 2080, 2182, + 0, 2105, 2148, + 0, 2137, 2097, + 0, 2175, 2019, + 0, 2223, 1888, + 0, 2279, 1618, + 0, 2345, 0, + 0, 2420, 0, + 0, 2505, 0, + 0, 2598, 0, + 0, 2698, 0, + 0, 2805, 0, + 0, 2917, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 0, 2000, 2272, + 0, 2000, 2271, + 0, 2001, 2270, + 0, 2003, 2269, + 0, 2004, 2268, + 0, 2006, 2266, + 0, 2009, 2263, + 0, 2013, 2259, + 0, 2018, 2254, + 0, 2025, 2248, + 0, 2034, 2239, + 0, 2046, 2226, + 0, 2061, 2209, + 0, 2081, 2185, + 0, 2106, 2151, + 0, 2137, 2100, + 0, 2176, 2023, + 0, 2223, 1893, + 0, 2279, 1627, + 0, 2345, 0, + 0, 2420, 0, + 0, 2505, 0, + 0, 2598, 0, + 0, 2698, 0, + 0, 2805, 0, + 0, 2917, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3402, 0, + 0, 3529, 0, + 0, 3657, 0, + 0, 2000, 2275, + 0, 2001, 2274, + 0, 2002, 2273, + 0, 2003, 2272, + 0, 2005, 2271, + 0, 2007, 2269, + 0, 2010, 2266, + 0, 2014, 2262, + 0, 2019, 2258, + 0, 2026, 2251, + 0, 2035, 2242, + 0, 2047, 2230, + 0, 2062, 2212, + 0, 2081, 2189, + 0, 2106, 2155, + 0, 2138, 2105, + 0, 2176, 2028, + 0, 2223, 1900, + 0, 2280, 1640, + 0, 2345, 0, + 0, 2421, 0, + 0, 2505, 0, + 0, 2598, 0, + 0, 2698, 0, + 0, 2805, 0, + 0, 2917, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3403, 0, + 0, 3529, 0, + 0, 3658, 0, + 0, 2001, 2279, + 0, 2002, 2278, + 0, 2003, 2277, + 0, 2004, 2276, + 0, 2006, 2275, + 0, 2008, 2273, + 0, 2011, 2270, + 0, 2015, 2267, + 0, 2020, 2262, + 0, 2027, 2255, + 0, 2036, 2246, + 0, 2048, 2234, + 0, 2063, 2217, + 0, 2082, 2193, + 0, 2107, 2160, + 0, 2138, 2110, + 0, 2177, 2035, + 0, 2224, 1909, + 0, 2280, 1655, + 0, 2346, 0, + 0, 2421, 0, + 0, 2505, 0, + 0, 2598, 0, + 0, 2699, 0, + 0, 2805, 0, + 0, 2918, 0, + 0, 3034, 0, + 0, 3154, 0, + 0, 3277, 0, + 0, 3403, 0, + 0, 3529, 0, + 0, 3658, 0, + 0, 2003, 2284, + 0, 2003, 2283, + 0, 2004, 2283, + 0, 2006, 2282, + 0, 2007, 2280, + 0, 2009, 2278, + 0, 2012, 2275, + 0, 2016, 2272, + 0, 2021, 2267, + 0, 2028, 2261, + 0, 2037, 2252, + 0, 2049, 2240, + 0, 2064, 2223, + 0, 2083, 2200, + 0, 2108, 2166, + 0, 2139, 2118, + 0, 2178, 2044, + 0, 2225, 1921, + 0, 2281, 1676, + 0, 2347, 277, + 0, 2422, 0, + 0, 2506, 0, + 0, 2599, 0, + 0, 2699, 0, + 0, 2806, 0, + 0, 2918, 0, + 0, 3034, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3529, 0, + 0, 3658, 0, + 0, 2005, 2291, + 0, 2005, 2290, + 0, 2006, 2290, + 0, 2007, 2288, + 0, 2009, 2287, + 0, 2011, 2285, + 0, 2014, 2283, + 0, 2018, 2279, + 0, 2023, 2274, + 0, 2030, 2268, + 0, 2039, 2259, + 0, 2050, 2247, + 0, 2065, 2231, + 0, 2085, 2208, + 0, 2110, 2175, + 0, 2141, 2128, + 0, 2179, 2055, + 0, 2226, 1936, + 0, 2282, 1702, + 0, 2347, 650, + 0, 2422, 0, + 0, 2507, 0, + 0, 2599, 0, + 0, 2699, 0, + 0, 2806, 0, + 0, 2918, 0, + 0, 3035, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 0, 2007, 2300, + 0, 2008, 2299, + 0, 2009, 2299, + 0, 2010, 2298, + 0, 2011, 2296, + 0, 2014, 2294, + 0, 2017, 2292, + 0, 2020, 2288, + 0, 2025, 2284, + 0, 2032, 2277, + 0, 2041, 2269, + 0, 2053, 2257, + 0, 2068, 2241, + 0, 2087, 2219, + 0, 2111, 2187, + 0, 2142, 2141, + 0, 2181, 2071, + 0, 2227, 1955, + 0, 2283, 1734, + 0, 2349, 904, + 0, 2423, 0, + 0, 2507, 0, + 0, 2600, 0, + 0, 2700, 0, + 0, 2806, 0, + 0, 2918, 0, + 0, 3035, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 0, 2010, 2312, + 0, 2011, 2311, + 0, 2012, 2311, + 0, 2013, 2310, + 0, 2015, 2308, + 0, 2017, 2306, + 0, 2020, 2304, + 0, 2023, 2301, + 0, 2029, 2296, + 0, 2035, 2290, + 0, 2044, 2282, + 0, 2055, 2270, + 0, 2070, 2255, + 0, 2090, 2233, + 0, 2114, 2202, + 0, 2145, 2158, + 0, 2183, 2090, + 0, 2229, 1980, + 0, 2285, 1774, + 0, 2350, 1110, + 0, 2425, 0, + 0, 2508, 0, + 0, 2601, 0, + 0, 2700, 0, + 0, 2807, 0, + 0, 2919, 0, + 0, 3035, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 0, 2014, 2327, + 0, 2015, 2327, + 0, 2016, 2326, + 0, 2017, 2325, + 0, 2019, 2324, + 0, 2021, 2322, + 0, 2024, 2320, + 0, 2028, 2316, + 0, 2033, 2312, + 0, 2039, 2306, + 0, 2048, 2298, + 0, 2059, 2287, + 0, 2074, 2272, + 0, 2093, 2251, + 0, 2117, 2222, + 0, 2148, 2179, + 0, 2186, 2115, + 0, 2232, 2012, + 0, 2287, 1823, + 0, 2352, 1290, + 0, 2426, 0, + 0, 2510, 0, + 0, 2602, 0, + 0, 2701, 0, + 0, 2808, 0, + 0, 2919, 0, + 0, 3036, 0, + 0, 3155, 0, + 0, 3278, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 0, 2020, 2347, + 0, 2021, 2347, + 0, 2022, 2346, + 0, 2023, 2345, + 0, 2024, 2344, + 0, 2026, 2342, + 0, 2029, 2340, + 0, 2033, 2337, + 0, 2038, 2333, + 0, 2044, 2327, + 0, 2053, 2319, + 0, 2064, 2309, + 0, 2079, 2295, + 0, 2098, 2275, + 0, 2122, 2247, + 0, 2152, 2206, + 0, 2190, 2146, + 0, 2235, 2051, + 0, 2290, 1881, + 0, 2355, 1455, + 0, 2429, 0, + 0, 2512, 0, + 0, 2603, 0, + 0, 2703, 0, + 0, 2809, 0, + 0, 2920, 0, + 0, 3036, 0, + 0, 3156, 0, + 0, 3279, 0, + 0, 3403, 0, + 0, 3530, 0, + 0, 3658, 0, + 423, 2027, 2373, + 373, 2028, 2372, + 295, 2029, 2371, + 163, 2030, 2370, + 0, 2032, 2369, + 0, 2034, 2368, + 0, 2036, 2365, + 0, 2040, 2363, + 0, 2045, 2359, + 0, 2051, 2353, + 0, 2060, 2346, + 0, 2071, 2336, + 0, 2085, 2323, + 0, 2104, 2304, + 0, 2128, 2278, + 0, 2158, 2241, + 0, 2195, 2185, + 0, 2240, 2098, + 0, 2294, 1948, + 0, 2358, 1610, + 0, 2432, 0, + 0, 2514, 0, + 0, 2605, 0, + 0, 2704, 0, + 0, 2810, 0, + 0, 2921, 0, + 0, 3037, 0, + 0, 3157, 0, + 0, 3279, 0, + 0, 3404, 0, + 0, 3530, 0, + 0, 3658, 0, + 1521, 2037, 2404, + 1517, 2038, 2404, + 1511, 2039, 2403, + 1503, 2040, 2402, + 1492, 2041, 2401, + 1477, 2043, 2400, + 1457, 2046, 2398, + 1428, 2050, 2395, + 1385, 2054, 2391, + 1322, 2061, 2386, + 1221, 2069, 2380, + 1036, 2080, 2371, + 529, 2094, 2358, + 0, 2112, 2341, + 0, 2135, 2317, + 0, 2165, 2283, + 0, 2201, 2232, + 0, 2246, 2155, + 0, 2300, 2025, + 0, 2363, 1759, + 0, 2436, 0, + 0, 2518, 0, + 0, 2608, 0, + 0, 2707, 0, + 0, 2812, 0, + 0, 2923, 0, + 0, 3038, 0, + 0, 3157, 0, + 0, 3280, 0, + 0, 3404, 0, + 0, 3531, 0, + 0, 3659, 0, + 1883, 2050, 2444, + 1881, 2050, 2443, + 1879, 2051, 2443, + 1875, 2052, 2442, + 1870, 2054, 2441, + 1864, 2056, 2439, + 1855, 2058, 2437, + 1843, 2062, 2435, + 1827, 2066, 2432, + 1804, 2073, 2427, + 1771, 2081, 2421, + 1724, 2091, 2413, + 1651, 2105, 2401, + 1531, 2123, 2386, + 1296, 2146, 2364, + 216, 2174, 2333, + 0, 2210, 2288, + 0, 2254, 2221, + 0, 2307, 2111, + 0, 2369, 1903, + 0, 2441, 1228, + 0, 2522, 0, + 0, 2612, 0, + 0, 2709, 0, + 0, 2814, 0, + 0, 2924, 0, + 0, 3039, 0, + 0, 3158, 0, + 0, 3280, 0, + 0, 3405, 0, + 0, 3531, 0, + 0, 3659, 0, + 2133, 2066, 2491, + 2132, 2067, 2491, + 2131, 2067, 2490, + 2129, 2068, 2490, + 2126, 2070, 2489, + 2122, 2072, 2487, + 2118, 2074, 2486, + 2111, 2078, 2484, + 2102, 2082, 2481, + 2089, 2088, 2476, + 2072, 2096, 2471, + 2048, 2106, 2464, + 2014, 2120, 2453, + 1964, 2137, 2440, + 1887, 2159, 2420, + 1758, 2187, 2393, + 1496, 2222, 2354, + 0, 2265, 2296, + 0, 2316, 2205, + 0, 2377, 2044, + 0, 2448, 1663, + 0, 2528, 0, + 0, 2617, 0, + 0, 2713, 0, + 0, 2817, 0, + 0, 2927, 0, + 0, 3041, 0, + 0, 3160, 0, + 0, 3282, 0, + 0, 3406, 0, + 0, 3532, 0, + 0, 3659, 0, + 2337, 2087, 2548, + 2337, 2088, 2548, + 2336, 2088, 2547, + 2334, 2089, 2547, + 2333, 2091, 2546, + 2330, 2093, 2545, + 2327, 2095, 2543, + 2323, 2098, 2541, + 2317, 2103, 2539, + 2310, 2108, 2535, + 2299, 2116, 2530, + 2285, 2126, 2524, + 2265, 2138, 2515, + 2237, 2155, 2503, + 2196, 2176, 2486, + 2135, 2203, 2463, + 2039, 2237, 2429, + 1866, 2278, 2381, + 1429, 2329, 2306, + 0, 2388, 2182, + 0, 2457, 1936, + 0, 2536, 450, + 0, 2623, 0, + 0, 2718, 0, + 0, 2821, 0, + 0, 2930, 0, + 0, 3044, 0, + 0, 3162, 0, + 0, 3283, 0, + 0, 3407, 0, + 0, 3533, 0, + 0, 3660, 0, + 2517, 2114, 2614, + 2516, 2114, 2614, + 2515, 2115, 2614, + 2515, 2116, 2613, + 2513, 2117, 2612, + 2512, 2119, 2612, + 2510, 2121, 2610, + 2507, 2124, 2609, + 2503, 2128, 2606, + 2498, 2134, 2603, + 2491, 2141, 2599, + 2482, 2150, 2593, + 2469, 2162, 2586, + 2451, 2178, 2576, + 2426, 2198, 2561, + 2391, 2224, 2542, + 2338, 2256, 2514, + 2257, 2296, 2474, + 2119, 2344, 2414, + 1828, 2402, 2319, + 0, 2469, 2151, + 0, 2546, 1735, + 0, 2631, 0, + 0, 2725, 0, + 0, 2827, 0, + 0, 2934, 0, + 0, 3047, 0, + 0, 3164, 0, + 0, 3285, 0, + 0, 3408, 0, + 0, 3534, 0, + 0, 3661, 0, + 2681, 2147, 2690, + 2681, 2147, 2690, + 2680, 2148, 2690, + 2680, 2149, 2689, + 2679, 2150, 2689, + 2678, 2152, 2688, + 2676, 2154, 2687, + 2674, 2157, 2685, + 2672, 2161, 2683, + 2668, 2166, 2681, + 2663, 2172, 2677, + 2657, 2181, 2673, + 2648, 2192, 2666, + 2636, 2207, 2658, + 2620, 2226, 2646, + 2597, 2250, 2629, + 2565, 2281, 2607, + 2517, 2319, 2574, + 2444, 2365, 2527, + 2325, 2420, 2455, + 2090, 2485, 2336, + 1027, 2559, 2105, + 0, 2642, 1114, + 0, 2734, 0, + 0, 2834, 0, + 0, 2940, 0, + 0, 3052, 0, + 0, 3168, 0, + 0, 3288, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 2836, 2188, 2775, + 2836, 2189, 2775, + 2835, 2189, 2775, + 2835, 2190, 2774, + 2834, 2191, 2774, + 2833, 2193, 2773, + 2832, 2194, 2772, + 2831, 2197, 2771, + 2829, 2201, 2770, + 2827, 2205, 2767, + 2823, 2211, 2765, + 2819, 2219, 2761, + 2813, 2230, 2755, + 2805, 2243, 2748, + 2793, 2261, 2739, + 2778, 2283, 2725, + 2756, 2312, 2707, + 2726, 2347, 2681, + 2681, 2391, 2644, + 2614, 2443, 2590, + 2505, 2505, 2505, + 2300, 2576, 2358, + 1648, 2656, 2036, + 0, 2746, 0, + 0, 2843, 0, + 0, 2947, 0, + 0, 3057, 0, + 0, 3172, 0, + 0, 3291, 0, + 0, 3413, 0, + 0, 3537, 0, + 0, 3664, 0, + 2984, 2238, 2869, + 2984, 2238, 2868, + 2984, 2239, 2868, + 2983, 2239, 2868, + 2983, 2240, 2868, + 2983, 2242, 2867, + 2982, 2244, 2866, + 2981, 2246, 2865, + 2979, 2249, 2864, + 2978, 2253, 2862, + 2975, 2259, 2860, + 2972, 2266, 2857, + 2968, 2275, 2853, + 2962, 2287, 2847, + 2954, 2303, 2839, + 2943, 2324, 2828, + 2928, 2350, 2814, + 2907, 2383, 2794, + 2878, 2423, 2765, + 2836, 2472, 2724, + 2772, 2530, 2662, + 2669, 2598, 2563, + 2482, 2675, 2386, + 1962, 2761, 1922, + 0, 2855, 0, + 0, 2957, 0, + 0, 3065, 0, + 0, 3178, 0, + 0, 3296, 0, + 0, 3417, 0, + 0, 3540, 0, + 0, 3666, 0, + 3128, 2297, 2969, + 3128, 2297, 2969, + 3128, 2298, 2969, + 3128, 2298, 2969, + 3127, 2299, 2969, + 3127, 2300, 2968, + 3126, 2302, 2968, + 3126, 2304, 2967, + 3125, 2307, 2966, + 3123, 2310, 2964, + 3122, 2315, 2962, + 3119, 2321, 2960, + 3116, 2330, 2957, + 3112, 2341, 2952, + 3106, 2355, 2946, + 3099, 2373, 2938, + 3088, 2397, 2926, + 3073, 2426, 2910, + 3053, 2463, 2888, + 3025, 2508, 2857, + 2984, 2562, 2812, + 2922, 2625, 2744, + 2825, 2698, 2632, + 2649, 2780, 2420, + 2195, 2871, 1705, + 0, 2970, 0, + 0, 3075, 0, + 0, 3186, 0, + 0, 3302, 0, + 0, 3421, 0, + 0, 3544, 0, + 0, 3668, 0, + 3269, 2365, 3077, + 3269, 2366, 3077, + 3269, 2366, 3076, + 3268, 2367, 3076, + 3268, 2367, 3076, + 3268, 2368, 3076, + 3268, 2370, 3075, + 3267, 2371, 3075, + 3266, 2374, 3074, + 3265, 2377, 3073, + 3264, 2381, 3071, + 3262, 2387, 3069, + 3260, 2394, 3067, + 3257, 2403, 3063, + 3253, 2416, 3058, + 3247, 2432, 3052, + 3240, 2453, 3043, + 3229, 2479, 3031, + 3215, 2512, 3014, + 3195, 2552, 2990, + 3168, 2601, 2957, + 3128, 2660, 2908, + 3068, 2728, 2834, + 2973, 2805, 2710, + 2805, 2892, 2463, + 2389, 2986, 928, + 0, 3088, 0, + 0, 3197, 0, + 0, 3310, 0, + 0, 3427, 0, + 0, 3548, 0, + 0, 3672, 0, + 3407, 2443, 3189, + 3407, 2444, 3189, + 3407, 2444, 3189, + 3407, 2444, 3189, + 3407, 2445, 3189, + 3407, 2446, 3188, + 3406, 2447, 3188, + 3406, 2448, 3188, + 3405, 2450, 3187, + 3405, 2453, 3186, + 3404, 2457, 3185, + 3403, 2461, 3183, + 3401, 2467, 3181, + 3399, 2475, 3179, + 3396, 2486, 3175, + 3392, 2500, 3170, + 3386, 2518, 3163, + 3379, 2541, 3154, + 3368, 2570, 3141, + 3354, 2605, 3123, + 3335, 2649, 3099, + 3308, 2702, 3064, + 3268, 2765, 3012, + 3210, 2836, 2932, + 3117, 2918, 2797, + 2954, 3008, 2514, + 2563, 3105, 0, + 0, 3210, 0, + 0, 3320, 0, + 0, 3436, 0, + 0, 3555, 0, + 0, 3677, 0, + 3544, 2530, 3306, + 3544, 2530, 3306, + 3544, 2531, 3306, + 3544, 2531, 3306, + 3544, 2532, 3306, + 3544, 2532, 3305, + 3543, 2533, 3305, + 3543, 2534, 3305, + 3543, 2536, 3304, + 3542, 2538, 3304, + 3541, 2541, 3303, + 3541, 2545, 3302, + 3539, 2550, 3300, + 3538, 2557, 3298, + 3535, 2566, 3295, + 3532, 2578, 3291, + 3528, 2593, 3286, + 3523, 2612, 3279, + 3516, 2637, 3269, + 3505, 2668, 3256, + 3492, 2707, 3238, + 3472, 2754, 3212, + 3445, 2810, 3175, + 3407, 2875, 3121, + 3349, 2950, 3037, + 3258, 3034, 2892, + 3099, 3127, 2574, + 2724, 3227, 0, + 0, 3334, 0, + 0, 3446, 0, + 0, 3563, 0, + 0, 3683, 0, + 3680, 2625, 3427, + 3680, 2626, 3426, + 3680, 2626, 3426, + 3679, 2626, 3426, + 3679, 2626, 3426, + 3679, 2627, 3426, + 3679, 2628, 3426, + 3679, 2629, 3426, + 3679, 2630, 3425, + 3678, 2632, 3425, + 3678, 2634, 3424, + 3677, 2637, 3423, + 3676, 2642, 3422, + 3675, 2647, 3420, + 3673, 2655, 3418, + 3671, 2664, 3415, + 3668, 2677, 3411, + 3664, 2693, 3406, + 3659, 2714, 3399, + 3651, 2740, 3389, + 3641, 2773, 3375, + 3628, 2814, 3356, + 3609, 2863, 3330, + 3582, 2922, 3292, + 3543, 2990, 3236, + 3486, 3068, 3147, + 3397, 3155, 2994, + 3240, 3250, 2644, + 2877, 3352, 0, + 0, 3460, 0, + 0, 3574, 0, + 0, 3691, 0, + 3814, 2728, 3550, + 3814, 2728, 3550, + 3814, 2728, 3550, + 3814, 2728, 3550, + 3814, 2729, 3549, + 3814, 2729, 3549, + 3814, 2730, 3549, + 3814, 2730, 3549, + 3814, 2732, 3549, + 3813, 2733, 3548, + 3813, 2735, 3548, + 3812, 2737, 3547, + 3812, 2741, 3546, + 3811, 2745, 3545, + 3810, 2751, 3543, + 3808, 2759, 3541, + 3806, 2769, 3538, + 3803, 2782, 3534, + 3799, 2800, 3528, + 3793, 2822, 3521, + 3786, 2849, 3511, + 3776, 2884, 3497, + 3763, 2927, 3478, + 3744, 2978, 3451, + 3717, 3039, 3412, + 3679, 3109, 3354, + 3622, 3189, 3263, + 3534, 3278, 3102, + 3379, 3374, 2724, + 3024, 3478, 0, + 0, 3588, 0, + 0, 3702, 0, + 3948, 2836, 3675, + 3948, 2836, 3675, + 3948, 2836, 3675, + 3948, 2837, 3675, + 3948, 2837, 3675, + 3948, 2837, 3675, + 3948, 2838, 3675, + 3948, 2838, 3674, + 3948, 2839, 3674, + 3948, 2840, 3674, + 3947, 2842, 3673, + 3947, 2844, 3673, + 3946, 2847, 3672, + 3946, 2850, 3671, + 3945, 2855, 3670, + 3944, 2861, 3668, + 3942, 2869, 3666, + 3940, 2880, 3663, + 3937, 2894, 3659, + 3933, 2912, 3653, + 3928, 2935, 3646, + 3920, 2964, 3636, + 3910, 3000, 3622, + 3897, 3044, 3602, + 3878, 3097, 3574, + 3852, 3160, 3535, + 3814, 3232, 3475, + 3757, 3313, 3382, + 3669, 3403, 3216, + 3516, 3501, 2812, + 3167, 3606, 0, + 0, 3716, 0, + 4082, 2950, 3802, + 4082, 2950, 3802, + 4082, 2950, 3802, + 4082, 2950, 3802, + 4082, 2950, 3802, + 4082, 2951, 3802, + 4082, 2951, 3802, + 4082, 2952, 3801, + 4081, 2952, 3801, + 4081, 2953, 3801, + 4081, 2954, 3801, + 4081, 2956, 3800, + 4080, 2958, 3800, + 4080, 2961, 3799, + 4079, 2964, 3798, + 4078, 2969, 3797, + 4077, 2976, 3795, + 4075, 2984, 3793, + 4073, 2995, 3790, + 4070, 3010, 3786, + 4066, 3028, 3780, + 4061, 3052, 3772, + 4054, 3082, 3762, + 4044, 3119, 3748, + 4030, 3164, 3728, + 4012, 3219, 3700, + 3985, 3283, 3660, + 3948, 3356, 3599, + 3892, 3439, 3504, + 3804, 3530, 3334, + 3652, 3629, 2909, + 3307, 3735, 0, + 4095, 3068, 3930, + 4095, 3068, 3930, + 4095, 3068, 3930, + 4095, 3068, 3930, + 4095, 3068, 3930, + 4095, 3068, 3930, + 4095, 3069, 3930, + 4095, 3069, 3930, + 4095, 3069, 3930, + 4095, 3070, 3929, + 4095, 3071, 3929, + 4095, 3072, 3929, + 4095, 3074, 3929, + 4095, 3076, 3928, + 4095, 3079, 3927, + 4095, 3083, 3926, + 4095, 3088, 3925, + 4095, 3094, 3923, + 4095, 3103, 3921, + 4095, 3114, 3918, + 4095, 3129, 3914, + 4095, 3148, 3908, + 4095, 3173, 3900, + 4095, 3203, 3890, + 4095, 3241, 3875, + 4095, 3288, 3855, + 4095, 3343, 3827, + 4095, 3408, 3786, + 4081, 3482, 3725, + 4025, 3566, 3629, + 3938, 3658, 3455, + 3786, 3758, 3012, + 4095, 3189, 4059, + 4095, 3189, 4059, + 4095, 3189, 4059, + 4095, 3189, 4059, + 4095, 3189, 4059, + 4095, 3189, 4059, + 4095, 3189, 4059, + 4095, 3190, 4059, + 4095, 3190, 4059, + 4095, 3191, 4059, + 4095, 3191, 4059, + 4095, 3192, 4058, + 4095, 3193, 4058, + 4095, 3195, 4058, + 4095, 3197, 4057, + 4095, 3200, 4056, + 4095, 3204, 4055, + 4095, 3209, 4054, + 4095, 3216, 4052, + 4095, 3225, 4050, + 4095, 3237, 4047, + 4095, 3252, 4043, + 4095, 3271, 4037, + 4095, 3296, 4029, + 4095, 3327, 4019, + 4095, 3366, 4004, + 4095, 3413, 3984, + 4095, 3469, 3956, + 4095, 3535, 3914, + 4095, 3610, 3853, + 4095, 3694, 3755, + 4071, 3787, 3579, + 0, 2129, 2398, + 0, 2130, 2397, + 0, 2131, 2396, + 0, 2132, 2396, + 0, 2133, 2394, + 0, 2135, 2393, + 0, 2137, 2391, + 0, 2140, 2388, + 0, 2144, 2384, + 0, 2149, 2379, + 0, 2156, 2373, + 0, 2165, 2363, + 0, 2176, 2351, + 0, 2192, 2333, + 0, 2211, 2309, + 0, 2236, 2274, + 0, 2268, 2222, + 0, 2307, 2143, + 0, 2354, 2009, + 0, 2410, 1731, + 0, 2476, 0, + 0, 2552, 0, + 0, 2636, 0, + 0, 2729, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2130, 2398, + 0, 2130, 2398, + 0, 2131, 2397, + 0, 2132, 2396, + 0, 2133, 2395, + 0, 2135, 2394, + 0, 2137, 2392, + 0, 2140, 2389, + 0, 2144, 2385, + 0, 2149, 2380, + 0, 2156, 2373, + 0, 2165, 2364, + 0, 2177, 2352, + 0, 2192, 2334, + 0, 2212, 2310, + 0, 2237, 2275, + 0, 2268, 2223, + 0, 2307, 2144, + 0, 2354, 2011, + 0, 2411, 1734, + 0, 2476, 0, + 0, 2552, 0, + 0, 2636, 0, + 0, 2729, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2130, 2399, + 0, 2130, 2399, + 0, 2131, 2398, + 0, 2132, 2397, + 0, 2133, 2396, + 0, 2135, 2395, + 0, 2137, 2393, + 0, 2140, 2390, + 0, 2144, 2386, + 0, 2149, 2381, + 0, 2156, 2374, + 0, 2165, 2365, + 0, 2177, 2353, + 0, 2192, 2335, + 0, 2212, 2311, + 0, 2237, 2276, + 0, 2268, 2225, + 0, 2307, 2146, + 0, 2354, 2013, + 0, 2411, 1738, + 0, 2477, 0, + 0, 2552, 0, + 0, 2637, 0, + 0, 2730, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2130, 2400, + 0, 2131, 2400, + 0, 2131, 2399, + 0, 2132, 2399, + 0, 2134, 2397, + 0, 2135, 2396, + 0, 2138, 2394, + 0, 2140, 2391, + 0, 2144, 2387, + 0, 2150, 2382, + 0, 2156, 2376, + 0, 2165, 2367, + 0, 2177, 2354, + 0, 2192, 2337, + 0, 2212, 2312, + 0, 2237, 2278, + 0, 2268, 2227, + 0, 2307, 2148, + 0, 2354, 2016, + 0, 2411, 1743, + 0, 2477, 0, + 0, 2552, 0, + 0, 2637, 0, + 0, 2730, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2131, 2402, + 0, 2131, 2402, + 0, 2132, 2401, + 0, 2133, 2400, + 0, 2134, 2399, + 0, 2136, 2398, + 0, 2138, 2396, + 0, 2141, 2393, + 0, 2145, 2389, + 0, 2150, 2384, + 0, 2157, 2377, + 0, 2166, 2368, + 0, 2177, 2356, + 0, 2193, 2339, + 0, 2212, 2314, + 0, 2237, 2280, + 0, 2269, 2229, + 0, 2307, 2151, + 0, 2355, 2020, + 0, 2411, 1750, + 0, 2477, 0, + 0, 2552, 0, + 0, 2637, 0, + 0, 2730, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2131, 2404, + 0, 2132, 2404, + 0, 2132, 2403, + 0, 2133, 2402, + 0, 2135, 2401, + 0, 2136, 2400, + 0, 2139, 2398, + 0, 2141, 2395, + 0, 2145, 2391, + 0, 2151, 2387, + 0, 2157, 2380, + 0, 2166, 2371, + 0, 2178, 2358, + 0, 2193, 2341, + 0, 2213, 2317, + 0, 2238, 2283, + 0, 2269, 2232, + 0, 2308, 2155, + 0, 2355, 2025, + 0, 2411, 1760, + 0, 2477, 0, + 0, 2553, 0, + 0, 2637, 0, + 0, 2730, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3049, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2132, 2407, + 0, 2133, 2407, + 0, 2133, 2406, + 0, 2134, 2405, + 0, 2135, 2404, + 0, 2137, 2403, + 0, 2139, 2401, + 0, 2142, 2398, + 0, 2146, 2395, + 0, 2151, 2390, + 0, 2158, 2383, + 0, 2167, 2374, + 0, 2179, 2362, + 0, 2194, 2345, + 0, 2213, 2321, + 0, 2238, 2287, + 0, 2270, 2237, + 0, 2308, 2160, + 0, 2356, 2032, + 0, 2412, 1772, + 0, 2478, 0, + 0, 2553, 0, + 0, 2637, 0, + 0, 2730, 0, + 0, 2830, 0, + 0, 2937, 0, + 0, 3050, 0, + 0, 3166, 0, + 0, 3286, 0, + 0, 3409, 0, + 0, 3535, 0, + 0, 3661, 0, + 0, 2133, 2411, + 0, 2134, 2411, + 0, 2134, 2410, + 0, 2135, 2409, + 0, 2136, 2408, + 0, 2138, 2407, + 0, 2140, 2405, + 0, 2143, 2402, + 0, 2147, 2399, + 0, 2152, 2394, + 0, 2159, 2387, + 0, 2168, 2378, + 0, 2180, 2366, + 0, 2195, 2349, + 0, 2214, 2325, + 0, 2239, 2292, + 0, 2270, 2242, + 0, 2309, 2167, + 0, 2356, 2041, + 0, 2412, 1788, + 0, 2478, 0, + 0, 2553, 0, + 0, 2638, 0, + 0, 2730, 0, + 0, 2831, 0, + 0, 2937, 0, + 0, 3050, 0, + 0, 3166, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 0, 2134, 2417, + 0, 2135, 2416, + 0, 2136, 2416, + 0, 2136, 2415, + 0, 2138, 2414, + 0, 2139, 2412, + 0, 2142, 2410, + 0, 2144, 2408, + 0, 2148, 2404, + 0, 2154, 2399, + 0, 2160, 2393, + 0, 2169, 2384, + 0, 2181, 2372, + 0, 2196, 2355, + 0, 2215, 2332, + 0, 2240, 2299, + 0, 2271, 2250, + 0, 2310, 2176, + 0, 2357, 2053, + 0, 2413, 1808, + 0, 2479, 410, + 0, 2554, 0, + 0, 2638, 0, + 0, 2731, 0, + 0, 2831, 0, + 0, 2938, 0, + 0, 3050, 0, + 0, 3166, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 0, 2136, 2424, + 0, 2137, 2423, + 0, 2137, 2422, + 0, 2138, 2422, + 0, 2140, 2421, + 0, 2141, 2419, + 0, 2143, 2417, + 0, 2146, 2415, + 0, 2150, 2411, + 0, 2155, 2406, + 0, 2162, 2400, + 0, 2171, 2391, + 0, 2182, 2379, + 0, 2198, 2363, + 0, 2217, 2340, + 0, 2242, 2308, + 0, 2273, 2260, + 0, 2311, 2187, + 0, 2358, 2068, + 0, 2414, 1834, + 0, 2479, 782, + 0, 2554, 0, + 0, 2639, 0, + 0, 2731, 0, + 0, 2831, 0, + 0, 2938, 0, + 0, 3050, 0, + 0, 3167, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 0, 2139, 2433, + 0, 2139, 2432, + 0, 2140, 2432, + 0, 2141, 2431, + 0, 2142, 2430, + 0, 2144, 2428, + 0, 2146, 2426, + 0, 2149, 2424, + 0, 2152, 2420, + 0, 2158, 2416, + 0, 2164, 2410, + 0, 2173, 2401, + 0, 2185, 2389, + 0, 2200, 2373, + 0, 2219, 2351, + 0, 2244, 2319, + 0, 2274, 2273, + 0, 2313, 2203, + 0, 2360, 2088, + 0, 2415, 1866, + 0, 2481, 1036, + 0, 2555, 0, + 0, 2639, 0, + 0, 2732, 0, + 0, 2832, 0, + 0, 2938, 0, + 0, 3050, 0, + 0, 3167, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 0, 2142, 2444, + 0, 2142, 2444, + 0, 2143, 2443, + 0, 2144, 2443, + 0, 2145, 2442, + 0, 2147, 2440, + 0, 2149, 2438, + 0, 2152, 2436, + 0, 2156, 2433, + 0, 2161, 2428, + 0, 2167, 2422, + 0, 2176, 2414, + 0, 2188, 2402, + 0, 2202, 2387, + 0, 2222, 2365, + 0, 2246, 2334, + 0, 2277, 2290, + 0, 2315, 2222, + 0, 2362, 2113, + 0, 2417, 1906, + 0, 2482, 1242, + 0, 2557, 0, + 0, 2640, 0, + 0, 2733, 0, + 0, 2833, 0, + 0, 2939, 0, + 0, 3051, 0, + 0, 3167, 0, + 0, 3287, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 0, 2146, 2460, + 0, 2146, 2460, + 0, 2147, 2459, + 0, 2148, 2458, + 0, 2149, 2457, + 0, 2151, 2456, + 0, 2153, 2454, + 0, 2156, 2452, + 0, 2160, 2448, + 0, 2165, 2444, + 0, 2171, 2438, + 0, 2180, 2430, + 0, 2191, 2419, + 0, 2206, 2404, + 0, 2225, 2383, + 0, 2249, 2354, + 0, 2280, 2311, + 0, 2318, 2247, + 0, 2364, 2144, + 0, 2419, 1955, + 0, 2484, 1422, + 0, 2558, 0, + 0, 2642, 0, + 0, 2734, 0, + 0, 2834, 0, + 0, 2940, 0, + 0, 3051, 0, + 0, 3168, 0, + 0, 3288, 0, + 0, 3410, 0, + 0, 3535, 0, + 0, 3662, 0, + 0, 2152, 2480, + 0, 2152, 2479, + 0, 2153, 2479, + 0, 2154, 2478, + 0, 2155, 2477, + 0, 2156, 2476, + 0, 2159, 2474, + 0, 2161, 2472, + 0, 2165, 2469, + 0, 2170, 2465, + 0, 2177, 2459, + 0, 2185, 2451, + 0, 2196, 2441, + 0, 2211, 2427, + 0, 2230, 2407, + 0, 2254, 2379, + 0, 2284, 2339, + 0, 2322, 2278, + 0, 2368, 2183, + 0, 2422, 2013, + 0, 2487, 1587, + 0, 2561, 0, + 0, 2644, 0, + 0, 2735, 0, + 0, 2835, 0, + 0, 2941, 0, + 0, 3052, 0, + 0, 3168, 0, + 0, 3288, 0, + 0, 3411, 0, + 0, 3536, 0, + 0, 3662, 0, + 590, 2159, 2505, + 556, 2159, 2505, + 505, 2160, 2504, + 427, 2161, 2503, + 295, 2162, 2503, + 26, 2164, 2501, + 0, 2166, 2500, + 0, 2169, 2498, + 0, 2172, 2495, + 0, 2177, 2491, + 0, 2184, 2485, + 0, 2192, 2478, + 0, 2203, 2468, + 0, 2218, 2455, + 0, 2236, 2436, + 0, 2260, 2410, + 0, 2290, 2373, + 0, 2327, 2317, + 0, 2372, 2230, + 0, 2427, 2080, + 0, 2490, 1742, + 0, 2564, 0, + 0, 2646, 0, + 0, 2737, 0, + 0, 2836, 0, + 0, 2942, 0, + 0, 3053, 0, + 0, 3169, 0, + 0, 3289, 0, + 0, 3411, 0, + 0, 3536, 0, + 0, 3662, 0, + 1656, 2169, 2537, + 1653, 2169, 2536, + 1649, 2170, 2536, + 1643, 2171, 2535, + 1635, 2172, 2534, + 1624, 2173, 2533, + 1610, 2175, 2532, + 1589, 2178, 2530, + 1560, 2182, 2527, + 1518, 2186, 2523, + 1454, 2193, 2518, + 1353, 2201, 2512, + 1168, 2212, 2503, + 661, 2226, 2490, + 0, 2244, 2473, + 0, 2268, 2449, + 0, 2297, 2415, + 0, 2334, 2364, + 0, 2378, 2287, + 0, 2432, 2157, + 0, 2495, 1891, + 0, 2568, 0, + 0, 2650, 0, + 0, 2740, 0, + 0, 2839, 0, + 0, 2944, 0, + 0, 3055, 0, + 0, 3170, 0, + 0, 3289, 0, + 0, 3412, 0, + 0, 3536, 0, + 0, 3663, 0, + 2017, 2181, 2576, + 2015, 2182, 2576, + 2013, 2182, 2575, + 2011, 2183, 2575, + 2007, 2184, 2574, + 2002, 2186, 2573, + 1996, 2188, 2571, + 1987, 2190, 2570, + 1975, 2194, 2567, + 1959, 2199, 2564, + 1936, 2205, 2559, + 1903, 2213, 2553, + 1856, 2223, 2545, + 1783, 2237, 2533, + 1663, 2255, 2518, + 1428, 2278, 2496, + 348, 2307, 2465, + 0, 2342, 2420, + 0, 2386, 2353, + 0, 2439, 2243, + 0, 2501, 2035, + 0, 2573, 1360, + 0, 2654, 0, + 0, 2744, 0, + 0, 2842, 0, + 0, 2946, 0, + 0, 3056, 0, + 0, 3172, 0, + 0, 3291, 0, + 0, 3413, 0, + 0, 3537, 0, + 0, 3663, 0, + 2266, 2198, 2624, + 2266, 2198, 2623, + 2264, 2199, 2623, + 2263, 2200, 2622, + 2261, 2201, 2622, + 2258, 2202, 2621, + 2255, 2204, 2620, + 2250, 2206, 2618, + 2243, 2210, 2616, + 2234, 2214, 2613, + 2222, 2220, 2609, + 2204, 2228, 2603, + 2180, 2238, 2596, + 2146, 2252, 2586, + 2096, 2269, 2572, + 2019, 2291, 2552, + 1890, 2319, 2525, + 1628, 2354, 2486, + 0, 2397, 2428, + 0, 2448, 2337, + 0, 2509, 2176, + 0, 2580, 1795, + 0, 2660, 0, + 0, 2749, 0, + 0, 2845, 0, + 0, 2949, 0, + 0, 3059, 0, + 0, 3173, 0, + 0, 3292, 0, + 0, 3414, 0, + 0, 3538, 0, + 0, 3664, 0, + 2470, 2219, 2680, + 2469, 2219, 2680, + 2469, 2220, 2680, + 2468, 2220, 2679, + 2466, 2221, 2679, + 2465, 2223, 2678, + 2462, 2225, 2677, + 2459, 2227, 2675, + 2455, 2230, 2673, + 2450, 2235, 2671, + 2442, 2240, 2667, + 2431, 2248, 2662, + 2417, 2258, 2656, + 2397, 2270, 2647, + 2369, 2287, 2635, + 2328, 2308, 2618, + 2267, 2335, 2595, + 2171, 2369, 2561, + 1998, 2410, 2513, + 1561, 2461, 2438, + 0, 2520, 2315, + 0, 2589, 2068, + 0, 2668, 582, + 0, 2755, 0, + 0, 2851, 0, + 0, 2953, 0, + 0, 3062, 0, + 0, 3176, 0, + 0, 3294, 0, + 0, 3415, 0, + 0, 3539, 0, + 0, 3665, 0, + 2649, 2245, 2747, + 2649, 2246, 2746, + 2648, 2246, 2746, + 2648, 2247, 2746, + 2647, 2248, 2745, + 2646, 2249, 2745, + 2644, 2251, 2744, + 2642, 2253, 2742, + 2639, 2256, 2741, + 2635, 2260, 2738, + 2630, 2266, 2735, + 2623, 2273, 2731, + 2614, 2282, 2726, + 2601, 2294, 2718, + 2583, 2310, 2708, + 2558, 2330, 2693, + 2523, 2356, 2674, + 2470, 2388, 2646, + 2389, 2428, 2606, + 2251, 2476, 2546, + 1960, 2534, 2451, + 0, 2601, 2283, + 0, 2678, 1867, + 0, 2763, 0, + 0, 2857, 0, + 0, 2959, 0, + 0, 3066, 0, + 0, 3179, 0, + 0, 3296, 0, + 0, 3417, 0, + 0, 3540, 0, + 0, 3666, 0, + 2813, 2279, 2823, + 2813, 2279, 2822, + 2813, 2280, 2822, + 2812, 2280, 2822, + 2812, 2281, 2821, + 2811, 2282, 2821, + 2810, 2284, 2820, + 2808, 2286, 2819, + 2806, 2289, 2817, + 2804, 2293, 2816, + 2800, 2298, 2813, + 2796, 2304, 2809, + 2789, 2313, 2805, + 2780, 2324, 2798, + 2769, 2339, 2790, + 2752, 2358, 2778, + 2729, 2382, 2762, + 2697, 2413, 2739, + 2649, 2451, 2706, + 2576, 2497, 2659, + 2457, 2552, 2587, + 2222, 2617, 2468, + 1159, 2691, 2237, + 0, 2774, 1246, + 0, 2866, 0, + 0, 2966, 0, + 0, 3072, 0, + 0, 3184, 0, + 0, 3300, 0, + 0, 3420, 0, + 0, 3542, 0, + 0, 3667, 0, + 2968, 2320, 2907, + 2968, 2320, 2907, + 2968, 2321, 2907, + 2967, 2321, 2907, + 2967, 2322, 2906, + 2966, 2323, 2906, + 2966, 2325, 2905, + 2965, 2327, 2904, + 2963, 2329, 2903, + 2961, 2333, 2902, + 2959, 2337, 2900, + 2956, 2343, 2897, + 2951, 2351, 2893, + 2945, 2362, 2888, + 2937, 2375, 2880, + 2925, 2393, 2871, + 2910, 2415, 2857, + 2888, 2444, 2839, + 2858, 2479, 2813, + 2813, 2523, 2776, + 2746, 2575, 2722, + 2637, 2637, 2637, + 2432, 2708, 2490, + 1780, 2789, 2168, + 0, 2878, 0, + 0, 2975, 0, + 0, 3079, 0, + 0, 3190, 0, + 0, 3304, 0, + 0, 3423, 0, + 0, 3545, 0, + 0, 3669, 0, + 3116, 2370, 3001, + 3116, 2370, 3001, + 3116, 2370, 3001, + 3116, 2371, 3000, + 3116, 2372, 3000, + 3115, 2373, 3000, + 3115, 2374, 2999, + 3114, 2376, 2998, + 3113, 2378, 2997, + 3112, 2381, 2996, + 3110, 2385, 2994, + 3107, 2391, 2992, + 3104, 2398, 2989, + 3100, 2407, 2985, + 3094, 2420, 2979, + 3086, 2436, 2971, + 3075, 2456, 2961, + 3060, 2482, 2946, + 3039, 2515, 2926, + 3010, 2555, 2897, + 2968, 2604, 2856, + 2904, 2662, 2794, + 2802, 2730, 2696, + 2614, 2807, 2518, + 2094, 2893, 2054, + 0, 2987, 0, + 0, 3089, 0, + 0, 3197, 0, + 0, 3310, 0, + 0, 3428, 0, + 0, 3549, 0, + 0, 3672, 0, + 3260, 2429, 3102, + 3260, 2429, 3102, + 3260, 2429, 3101, + 3260, 2430, 3101, + 3260, 2430, 3101, + 3259, 2431, 3101, + 3259, 2432, 3100, + 3258, 2434, 3100, + 3258, 2436, 3099, + 3257, 2439, 3098, + 3255, 2442, 3096, + 3254, 2447, 3095, + 3251, 2453, 3092, + 3248, 2462, 3089, + 3244, 2473, 3084, + 3238, 2487, 3078, + 3231, 2505, 3070, + 3220, 2529, 3058, + 3206, 2558, 3042, + 3185, 2595, 3021, + 3157, 2640, 2989, + 3116, 2694, 2944, + 3054, 2757, 2876, + 2957, 2830, 2764, + 2781, 2913, 2552, + 2327, 3003, 1837, + 0, 3102, 0, + 0, 3207, 0, + 0, 3318, 0, + 0, 3434, 0, + 0, 3553, 0, + 0, 3676, 0, + 3401, 2497, 3209, + 3401, 2497, 3209, + 3401, 2498, 3209, + 3401, 2498, 3208, + 3401, 2499, 3208, + 3400, 2499, 3208, + 3400, 2500, 3208, + 3400, 2502, 3207, + 3399, 2503, 3207, + 3398, 2506, 3206, + 3397, 2509, 3205, + 3396, 2513, 3203, + 3394, 2519, 3201, + 3392, 2526, 3199, + 3389, 2535, 3195, + 3385, 2548, 3190, + 3379, 2564, 3184, + 3372, 2585, 3175, + 3361, 2611, 3163, + 3347, 2644, 3146, + 3328, 2684, 3123, + 3300, 2734, 3089, + 3260, 2792, 3040, + 3200, 2860, 2966, + 3105, 2937, 2842, + 2937, 3024, 2595, + 2521, 3118, 1060, + 0, 3220, 0, + 0, 3329, 0, + 0, 3442, 0, + 0, 3560, 0, + 0, 3680, 0, + 3539, 2575, 3321, + 3539, 2575, 3321, + 3539, 2576, 3321, + 3539, 2576, 3321, + 3539, 2576, 3321, + 3539, 2577, 3321, + 3539, 2578, 3320, + 3538, 2579, 3320, + 3538, 2581, 3320, + 3537, 2582, 3319, + 3537, 2585, 3318, + 3536, 2589, 3317, + 3535, 2593, 3315, + 3533, 2599, 3313, + 3531, 2608, 3311, + 3528, 2618, 3307, + 3524, 2632, 3302, + 3518, 2650, 3295, + 3511, 2673, 3286, + 3500, 2702, 3273, + 3486, 2738, 3255, + 3467, 2782, 3231, + 3440, 2834, 3196, + 3400, 2897, 3144, + 3342, 2969, 3064, + 3249, 3050, 2929, + 3086, 3140, 2646, + 2695, 3237, 0, + 0, 3342, 0, + 0, 3452, 0, + 0, 3568, 0, + 0, 3687, 0, + 3676, 2662, 3438, + 3676, 2662, 3438, + 3676, 2663, 3438, + 3676, 2663, 3438, + 3676, 2663, 3438, + 3676, 2664, 3438, + 3676, 2664, 3438, + 3675, 2665, 3437, + 3675, 2667, 3437, + 3675, 2668, 3436, + 3674, 2670, 3436, + 3674, 2673, 3435, + 3673, 2677, 3434, + 3671, 2682, 3432, + 3670, 2689, 3430, + 3668, 2698, 3427, + 3665, 2710, 3423, + 3661, 2725, 3418, + 3655, 2744, 3411, + 3648, 2769, 3401, + 3638, 2800, 3388, + 3624, 2839, 3370, + 3605, 2886, 3344, + 3578, 2942, 3308, + 3539, 3007, 3253, + 3481, 3082, 3169, + 3390, 3167, 3024, + 3231, 3259, 2706, + 2856, 3359, 0, + 0, 3466, 0, + 0, 3578, 0, + 0, 3695, 0, + 3812, 2757, 3559, + 3812, 2757, 3559, + 3812, 2758, 3559, + 3812, 2758, 3558, + 3812, 2758, 3558, + 3811, 2759, 3558, + 3811, 2759, 3558, + 3811, 2760, 3558, + 3811, 2761, 3558, + 3811, 2762, 3557, + 3810, 2764, 3557, + 3810, 2766, 3556, + 3809, 2770, 3555, + 3808, 2774, 3554, + 3807, 2779, 3552, + 3805, 2787, 3550, + 3803, 2796, 3547, + 3800, 2809, 3543, + 3796, 2825, 3538, + 3791, 2846, 3531, + 3783, 2872, 3521, + 3773, 2905, 3507, + 3760, 2946, 3488, + 3741, 2996, 3462, + 3714, 3054, 3424, + 3675, 3122, 3368, + 3618, 3200, 3279, + 3529, 3287, 3126, + 3372, 3382, 2777, + 3009, 3484, 0, + 0, 3592, 0, + 0, 3706, 0, + 3946, 2860, 3682, + 3946, 2860, 3682, + 3946, 2860, 3682, + 3946, 2860, 3682, + 3946, 2860, 3682, + 3946, 2861, 3682, + 3946, 2861, 3681, + 3946, 2862, 3681, + 3946, 2863, 3681, + 3946, 2864, 3681, + 3945, 2865, 3680, + 3945, 2867, 3680, + 3944, 2869, 3679, + 3944, 2873, 3678, + 3943, 2877, 3677, + 3942, 2883, 3675, + 3940, 2891, 3673, + 3938, 2901, 3670, + 3935, 2914, 3666, + 3931, 2932, 3661, + 3926, 2954, 3653, + 3918, 2981, 3643, + 3908, 3016, 3629, + 3895, 3059, 3610, + 3876, 3110, 3583, + 3849, 3171, 3544, + 3811, 3242, 3486, + 3754, 3321, 3395, + 3666, 3410, 3235, + 3511, 3507, 2856, + 3156, 3610, 0, + 0, 3720, 0, + 4080, 2968, 3807, + 4080, 2968, 3807, + 4080, 2968, 3807, + 4080, 2969, 3807, + 4080, 2969, 3807, + 4080, 2969, 3807, + 4080, 2969, 3807, + 4080, 2970, 3807, + 4080, 2970, 3806, + 4080, 2971, 3806, + 4080, 2972, 3806, + 4079, 2974, 3806, + 4079, 2976, 3805, + 4078, 2979, 3804, + 4078, 2982, 3803, + 4077, 2987, 3802, + 4076, 2993, 3800, + 4074, 3001, 3798, + 4072, 3012, 3795, + 4069, 3026, 3791, + 4065, 3044, 3786, + 4060, 3067, 3778, + 4052, 3096, 3768, + 4042, 3132, 3754, + 4029, 3176, 3734, + 4010, 3229, 3706, + 3984, 3292, 3667, + 3946, 3364, 3608, + 3889, 3445, 3514, + 3801, 3535, 3348, + 3648, 3633, 2944, + 3299, 3738, 0, + 4095, 3082, 3934, + 4095, 3082, 3934, + 4095, 3082, 3934, + 4095, 3082, 3934, + 4095, 3082, 3934, + 4095, 3082, 3934, + 4095, 3083, 3934, + 4095, 3083, 3934, + 4095, 3084, 3934, + 4095, 3084, 3933, + 4095, 3085, 3933, + 4095, 3086, 3933, + 4095, 3088, 3932, + 4095, 3090, 3932, + 4095, 3093, 3931, + 4095, 3096, 3930, + 4095, 3101, 3929, + 4095, 3108, 3927, + 4095, 3116, 3925, + 4095, 3127, 3922, + 4095, 3142, 3918, + 4095, 3160, 3912, + 4095, 3184, 3905, + 4095, 3214, 3894, + 4095, 3251, 3880, + 4095, 3297, 3860, + 4095, 3351, 3832, + 4095, 3415, 3792, + 4080, 3488, 3732, + 4024, 3571, 3636, + 3936, 3662, 3466, + 3784, 3761, 3041, + 4095, 3200, 4062, + 4095, 3200, 4062, + 4095, 3200, 4062, + 4095, 3200, 4062, + 4095, 3200, 4062, + 4095, 3200, 4062, + 4095, 3200, 4062, + 4095, 3201, 4062, + 4095, 3201, 4062, + 4095, 3202, 4062, + 4095, 3202, 4062, + 4095, 3203, 4061, + 4095, 3204, 4061, + 4095, 3206, 4061, + 4095, 3208, 4060, + 4095, 3211, 4059, + 4095, 3215, 4058, + 4095, 3220, 4057, + 4095, 3226, 4055, + 4095, 3235, 4053, + 4095, 3247, 4050, + 4095, 3261, 4046, + 4095, 3280, 4040, + 4095, 3305, 4032, + 4095, 3335, 4022, + 4095, 3374, 4008, + 4095, 3420, 3988, + 4095, 3475, 3959, + 4095, 3540, 3918, + 4095, 3614, 3858, + 4095, 3698, 3761, + 4070, 3790, 3587, + 0, 2261, 2529, + 0, 2261, 2529, + 0, 2262, 2529, + 0, 2263, 2528, + 0, 2264, 2527, + 0, 2265, 2526, + 0, 2267, 2524, + 0, 2269, 2522, + 0, 2272, 2520, + 0, 2276, 2516, + 0, 2281, 2511, + 0, 2288, 2504, + 0, 2297, 2495, + 0, 2308, 2482, + 0, 2324, 2465, + 0, 2343, 2440, + 0, 2368, 2405, + 0, 2400, 2354, + 0, 2439, 2274, + 0, 2486, 2140, + 0, 2542, 1860, + 0, 2608, 0, + 0, 2684, 0, + 0, 2768, 0, + 0, 2861, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3667, 0, + 0, 2261, 2530, + 0, 2262, 2530, + 0, 2262, 2529, + 0, 2263, 2529, + 0, 2264, 2528, + 0, 2265, 2527, + 0, 2267, 2525, + 0, 2269, 2523, + 0, 2272, 2520, + 0, 2276, 2517, + 0, 2281, 2512, + 0, 2288, 2505, + 0, 2297, 2495, + 0, 2309, 2483, + 0, 2324, 2465, + 0, 2343, 2441, + 0, 2368, 2406, + 0, 2400, 2354, + 0, 2439, 2275, + 0, 2486, 2141, + 0, 2543, 1863, + 0, 2608, 0, + 0, 2684, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3667, 0, + 0, 2261, 2531, + 0, 2262, 2530, + 0, 2262, 2530, + 0, 2263, 2529, + 0, 2264, 2528, + 0, 2265, 2527, + 0, 2267, 2526, + 0, 2269, 2524, + 0, 2272, 2521, + 0, 2276, 2517, + 0, 2281, 2512, + 0, 2288, 2505, + 0, 2297, 2496, + 0, 2309, 2484, + 0, 2324, 2466, + 0, 2344, 2442, + 0, 2369, 2407, + 0, 2400, 2355, + 0, 2439, 2276, + 0, 2486, 2143, + 0, 2543, 1866, + 0, 2609, 0, + 0, 2684, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3667, 0, + 0, 2262, 2532, + 0, 2262, 2531, + 0, 2263, 2531, + 0, 2263, 2530, + 0, 2264, 2529, + 0, 2265, 2528, + 0, 2267, 2527, + 0, 2269, 2525, + 0, 2272, 2522, + 0, 2276, 2518, + 0, 2281, 2513, + 0, 2288, 2506, + 0, 2297, 2497, + 0, 2309, 2485, + 0, 2324, 2467, + 0, 2344, 2443, + 0, 2369, 2408, + 0, 2400, 2357, + 0, 2439, 2278, + 0, 2486, 2145, + 0, 2543, 1870, + 0, 2609, 0, + 0, 2684, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3667, 0, + 0, 2262, 2533, + 0, 2262, 2533, + 0, 2263, 2532, + 0, 2264, 2531, + 0, 2264, 2531, + 0, 2266, 2529, + 0, 2267, 2528, + 0, 2270, 2526, + 0, 2273, 2523, + 0, 2276, 2520, + 0, 2282, 2515, + 0, 2288, 2508, + 0, 2297, 2499, + 0, 2309, 2486, + 0, 2324, 2469, + 0, 2344, 2444, + 0, 2369, 2410, + 0, 2400, 2359, + 0, 2439, 2280, + 0, 2487, 2148, + 0, 2543, 1875, + 0, 2609, 0, + 0, 2684, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3667, 0, + 0, 2262, 2535, + 0, 2263, 2534, + 0, 2263, 2534, + 0, 2264, 2533, + 0, 2265, 2532, + 0, 2266, 2531, + 0, 2268, 2530, + 0, 2270, 2528, + 0, 2273, 2525, + 0, 2277, 2521, + 0, 2282, 2516, + 0, 2289, 2510, + 0, 2298, 2500, + 0, 2310, 2488, + 0, 2325, 2471, + 0, 2344, 2446, + 0, 2369, 2412, + 0, 2401, 2361, + 0, 2440, 2283, + 0, 2487, 2152, + 0, 2543, 1882, + 0, 2609, 0, + 0, 2684, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3181, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3541, 0, + 0, 3667, 0, + 0, 2263, 2537, + 0, 2263, 2537, + 0, 2264, 2536, + 0, 2265, 2535, + 0, 2265, 2535, + 0, 2267, 2533, + 0, 2268, 2532, + 0, 2271, 2530, + 0, 2274, 2527, + 0, 2277, 2524, + 0, 2283, 2519, + 0, 2289, 2512, + 0, 2298, 2503, + 0, 2310, 2490, + 0, 2325, 2473, + 0, 2345, 2449, + 0, 2370, 2415, + 0, 2401, 2364, + 0, 2440, 2287, + 0, 2487, 2157, + 0, 2543, 1892, + 0, 2609, 0, + 0, 2685, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2962, 0, + 0, 3069, 0, + 0, 3182, 0, + 0, 3298, 0, + 0, 3418, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2264, 2540, + 0, 2264, 2539, + 0, 2265, 2539, + 0, 2265, 2538, + 0, 2266, 2538, + 0, 2267, 2536, + 0, 2269, 2535, + 0, 2271, 2533, + 0, 2274, 2530, + 0, 2278, 2527, + 0, 2283, 2522, + 0, 2290, 2515, + 0, 2299, 2506, + 0, 2311, 2494, + 0, 2326, 2477, + 0, 2346, 2453, + 0, 2370, 2419, + 0, 2402, 2369, + 0, 2440, 2292, + 0, 2488, 2164, + 0, 2544, 1904, + 0, 2610, 0, + 0, 2685, 0, + 0, 2769, 0, + 0, 2862, 0, + 0, 2963, 0, + 0, 3069, 0, + 0, 3182, 0, + 0, 3298, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2265, 2544, + 0, 2265, 2543, + 0, 2266, 2543, + 0, 2266, 2542, + 0, 2267, 2542, + 0, 2268, 2540, + 0, 2270, 2539, + 0, 2272, 2537, + 0, 2275, 2534, + 0, 2279, 2531, + 0, 2284, 2526, + 0, 2291, 2519, + 0, 2300, 2510, + 0, 2312, 2498, + 0, 2327, 2481, + 0, 2346, 2458, + 0, 2371, 2424, + 0, 2402, 2375, + 0, 2441, 2299, + 0, 2488, 2173, + 0, 2544, 1920, + 0, 2610, 0, + 0, 2685, 0, + 0, 2770, 0, + 0, 2862, 0, + 0, 2963, 0, + 0, 3070, 0, + 0, 3182, 0, + 0, 3298, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2266, 2549, + 0, 2266, 2549, + 0, 2267, 2548, + 0, 2268, 2548, + 0, 2269, 2547, + 0, 2270, 2546, + 0, 2271, 2544, + 0, 2274, 2542, + 0, 2277, 2540, + 0, 2280, 2536, + 0, 2286, 2531, + 0, 2292, 2525, + 0, 2301, 2516, + 0, 2313, 2504, + 0, 2328, 2487, + 0, 2348, 2464, + 0, 2372, 2431, + 0, 2403, 2382, + 0, 2442, 2308, + 0, 2489, 2185, + 0, 2545, 1940, + 0, 2611, 542, + 0, 2686, 0, + 0, 2770, 0, + 0, 2863, 0, + 0, 2963, 0, + 0, 3070, 0, + 0, 3182, 0, + 0, 3299, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2268, 2556, + 0, 2268, 2556, + 0, 2269, 2555, + 0, 2269, 2555, + 0, 2270, 2554, + 0, 2272, 2553, + 0, 2273, 2551, + 0, 2275, 2549, + 0, 2278, 2547, + 0, 2282, 2543, + 0, 2287, 2538, + 0, 2294, 2532, + 0, 2303, 2523, + 0, 2315, 2512, + 0, 2330, 2495, + 0, 2349, 2472, + 0, 2374, 2440, + 0, 2405, 2392, + 0, 2443, 2320, + 0, 2490, 2200, + 0, 2546, 1966, + 0, 2612, 914, + 0, 2687, 0, + 0, 2771, 0, + 0, 2863, 0, + 0, 2963, 0, + 0, 3070, 0, + 0, 3182, 0, + 0, 3299, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2270, 2565, + 0, 2271, 2565, + 0, 2271, 2564, + 0, 2272, 2564, + 0, 2273, 2563, + 0, 2274, 2562, + 0, 2276, 2560, + 0, 2278, 2559, + 0, 2281, 2556, + 0, 2285, 2553, + 0, 2290, 2548, + 0, 2296, 2542, + 0, 2305, 2533, + 0, 2317, 2522, + 0, 2332, 2505, + 0, 2351, 2483, + 0, 2376, 2451, + 0, 2407, 2405, + 0, 2445, 2335, + 0, 2492, 2220, + 0, 2547, 1998, + 0, 2613, 1168, + 0, 2688, 0, + 0, 2772, 0, + 0, 2864, 0, + 0, 2964, 0, + 0, 3071, 0, + 0, 3183, 0, + 0, 3299, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2273, 2577, + 0, 2274, 2577, + 0, 2274, 2576, + 0, 2275, 2576, + 0, 2276, 2575, + 0, 2277, 2574, + 0, 2279, 2572, + 0, 2281, 2571, + 0, 2284, 2568, + 0, 2288, 2565, + 0, 2293, 2560, + 0, 2299, 2554, + 0, 2308, 2546, + 0, 2320, 2535, + 0, 2335, 2519, + 0, 2354, 2497, + 0, 2378, 2467, + 0, 2409, 2422, + 0, 2447, 2354, + 0, 2494, 2245, + 0, 2549, 2038, + 0, 2614, 1374, + 0, 2689, 0, + 0, 2773, 0, + 0, 2865, 0, + 0, 2965, 0, + 0, 3071, 0, + 0, 3183, 0, + 0, 3299, 0, + 0, 3419, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2278, 2592, + 0, 2278, 2592, + 0, 2279, 2592, + 0, 2279, 2591, + 0, 2280, 2590, + 0, 2281, 2589, + 0, 2283, 2588, + 0, 2285, 2586, + 0, 2288, 2584, + 0, 2292, 2581, + 0, 2297, 2576, + 0, 2303, 2570, + 0, 2312, 2562, + 0, 2323, 2551, + 0, 2338, 2536, + 0, 2357, 2516, + 0, 2382, 2486, + 0, 2412, 2443, + 0, 2450, 2379, + 0, 2496, 2276, + 0, 2551, 2087, + 0, 2616, 1554, + 0, 2690, 0, + 0, 2774, 0, + 0, 2866, 0, + 0, 2966, 0, + 0, 3072, 0, + 0, 3184, 0, + 0, 3300, 0, + 0, 3420, 0, + 0, 3542, 0, + 0, 3667, 0, + 0, 2283, 2612, + 0, 2284, 2612, + 0, 2284, 2611, + 0, 2285, 2611, + 0, 2286, 2610, + 0, 2287, 2609, + 0, 2289, 2608, + 0, 2291, 2606, + 0, 2293, 2604, + 0, 2297, 2601, + 0, 2302, 2597, + 0, 2309, 2591, + 0, 2317, 2584, + 0, 2329, 2573, + 0, 2343, 2559, + 0, 2362, 2539, + 0, 2386, 2511, + 0, 2416, 2471, + 0, 2454, 2410, + 0, 2500, 2315, + 0, 2555, 2145, + 0, 2619, 1719, + 0, 2693, 0, + 0, 2776, 0, + 0, 2868, 0, + 0, 2967, 0, + 0, 3073, 0, + 0, 3184, 0, + 0, 3300, 0, + 0, 3420, 0, + 0, 3543, 0, + 0, 3668, 0, + 746, 2291, 2637, + 722, 2291, 2637, + 688, 2292, 2637, + 637, 2292, 2636, + 559, 2293, 2636, + 428, 2294, 2635, + 158, 2296, 2633, + 0, 2298, 2632, + 0, 2301, 2630, + 0, 2304, 2627, + 0, 2309, 2623, + 0, 2316, 2618, + 0, 2324, 2610, + 0, 2335, 2601, + 0, 2350, 2587, + 0, 2368, 2568, + 0, 2392, 2542, + 0, 2422, 2505, + 0, 2459, 2449, + 0, 2504, 2362, + 0, 2559, 2212, + 0, 2622, 1874, + 0, 2696, 0, + 0, 2778, 0, + 0, 2870, 0, + 0, 2969, 0, + 0, 3074, 0, + 0, 3185, 0, + 0, 3301, 0, + 0, 3421, 0, + 0, 3543, 0, + 0, 3668, 0, + 1791, 2300, 2669, + 1789, 2301, 2669, + 1785, 2301, 2668, + 1781, 2302, 2668, + 1775, 2303, 2667, + 1767, 2304, 2667, + 1757, 2305, 2665, + 1742, 2307, 2664, + 1721, 2310, 2662, + 1692, 2314, 2659, + 1650, 2319, 2656, + 1586, 2325, 2651, + 1485, 2333, 2644, + 1300, 2344, 2635, + 793, 2358, 2622, + 0, 2376, 2605, + 0, 2400, 2581, + 0, 2429, 2547, + 0, 2466, 2496, + 0, 2510, 2419, + 0, 2564, 2289, + 0, 2627, 2023, + 0, 2700, 0, + 0, 2782, 0, + 0, 2872, 0, + 0, 2971, 0, + 0, 3076, 0, + 0, 3187, 0, + 0, 3302, 0, + 0, 3422, 0, + 0, 3544, 0, + 0, 3668, 0, + 2150, 2313, 2708, + 2149, 2313, 2708, + 2147, 2314, 2708, + 2145, 2314, 2707, + 2143, 2315, 2707, + 2139, 2316, 2706, + 2135, 2318, 2705, + 2128, 2320, 2704, + 2119, 2323, 2702, + 2108, 2326, 2699, + 2091, 2331, 2696, + 2068, 2337, 2691, + 2036, 2345, 2685, + 1988, 2356, 2677, + 1915, 2369, 2666, + 1795, 2387, 2650, + 1560, 2410, 2628, + 480, 2439, 2597, + 0, 2474, 2553, + 0, 2518, 2485, + 0, 2571, 2375, + 0, 2633, 2167, + 0, 2705, 1492, + 0, 2786, 0, + 0, 2876, 0, + 0, 2974, 0, + 0, 3078, 0, + 0, 3189, 0, + 0, 3304, 0, + 0, 3423, 0, + 0, 3545, 0, + 0, 3669, 0, + 2399, 2329, 2756, + 2398, 2330, 2756, + 2398, 2330, 2755, + 2396, 2331, 2755, + 2395, 2332, 2754, + 2393, 2333, 2754, + 2390, 2334, 2753, + 2387, 2336, 2752, + 2382, 2339, 2750, + 2375, 2342, 2748, + 2366, 2346, 2745, + 2354, 2352, 2741, + 2337, 2360, 2735, + 2313, 2370, 2728, + 2278, 2384, 2718, + 2228, 2401, 2704, + 2151, 2423, 2684, + 2023, 2451, 2657, + 1760, 2486, 2618, + 0, 2529, 2560, + 0, 2581, 2469, + 0, 2642, 2308, + 0, 2712, 1927, + 0, 2792, 0, + 0, 2881, 0, + 0, 2978, 0, + 0, 3081, 0, + 0, 3191, 0, + 0, 3306, 0, + 0, 3424, 0, + 0, 3546, 0, + 0, 3670, 0, + 2602, 2350, 2813, + 2602, 2351, 2812, + 2602, 2351, 2812, + 2601, 2352, 2812, + 2600, 2353, 2811, + 2599, 2354, 2811, + 2597, 2355, 2810, + 2595, 2357, 2809, + 2591, 2359, 2807, + 2587, 2362, 2805, + 2582, 2367, 2803, + 2574, 2372, 2799, + 2563, 2380, 2794, + 2549, 2390, 2788, + 2529, 2402, 2779, + 2501, 2419, 2767, + 2460, 2440, 2750, + 2400, 2467, 2727, + 2303, 2501, 2694, + 2131, 2543, 2645, + 1693, 2593, 2570, + 0, 2652, 2447, + 0, 2721, 2200, + 0, 2800, 714, + 0, 2887, 0, + 0, 2983, 0, + 0, 3085, 0, + 0, 3194, 0, + 0, 3308, 0, + 0, 3426, 0, + 0, 3547, 0, + 0, 3671, 0, + 2781, 2377, 2879, + 2781, 2377, 2879, + 2781, 2378, 2879, + 2780, 2378, 2878, + 2780, 2379, 2878, + 2779, 2380, 2877, + 2778, 2381, 2877, + 2776, 2383, 2876, + 2774, 2385, 2874, + 2771, 2388, 2873, + 2767, 2392, 2870, + 2762, 2398, 2867, + 2755, 2405, 2863, + 2746, 2414, 2858, + 2733, 2426, 2850, + 2715, 2442, 2840, + 2691, 2462, 2826, + 2655, 2488, 2806, + 2602, 2520, 2778, + 2521, 2560, 2738, + 2384, 2609, 2678, + 2092, 2666, 2584, + 0, 2733, 2415, + 0, 2810, 1999, + 0, 2895, 0, + 0, 2989, 0, + 0, 3091, 0, + 0, 3198, 0, + 0, 3311, 0, + 0, 3429, 0, + 0, 3549, 0, + 0, 3673, 0, + 2946, 2411, 2955, + 2945, 2411, 2955, + 2945, 2411, 2954, + 2945, 2412, 2954, + 2944, 2412, 2954, + 2944, 2413, 2953, + 2943, 2414, 2953, + 2942, 2416, 2952, + 2940, 2418, 2951, + 2939, 2421, 2950, + 2936, 2425, 2948, + 2932, 2430, 2945, + 2928, 2436, 2942, + 2921, 2445, 2937, + 2913, 2456, 2930, + 2901, 2471, 2922, + 2884, 2490, 2910, + 2861, 2514, 2894, + 2829, 2545, 2871, + 2781, 2583, 2838, + 2709, 2629, 2791, + 2589, 2684, 2719, + 2354, 2749, 2601, + 1291, 2823, 2369, + 0, 2906, 1378, + 0, 2998, 0, + 0, 3098, 0, + 0, 3204, 0, + 0, 3316, 0, + 0, 3432, 0, + 0, 3552, 0, + 0, 3675, 0, + 3100, 2452, 3040, + 3100, 2452, 3040, + 3100, 2452, 3039, + 3100, 2453, 3039, + 3099, 2453, 3039, + 3099, 2454, 3039, + 3098, 2455, 3038, + 3098, 2457, 3037, + 3097, 2459, 3037, + 3095, 2461, 3035, + 3093, 2465, 3034, + 3091, 2469, 3032, + 3088, 2475, 3029, + 3083, 2483, 3025, + 3077, 2494, 3020, + 3069, 2507, 3013, + 3058, 2525, 3003, + 3042, 2547, 2990, + 3020, 2576, 2971, + 2990, 2611, 2945, + 2945, 2655, 2909, + 2878, 2707, 2854, + 2769, 2769, 2769, + 2564, 2840, 2622, + 1912, 2921, 2300, + 0, 3010, 0, + 0, 3107, 0, + 0, 3212, 0, + 0, 3322, 0, + 0, 3437, 0, + 0, 3555, 0, + 0, 3677, 0, + 3249, 2501, 3133, + 3248, 2502, 3133, + 3248, 2502, 3133, + 3248, 2502, 3133, + 3248, 2503, 3132, + 3248, 2504, 3132, + 3247, 2505, 3132, + 3247, 2506, 3131, + 3246, 2508, 3130, + 3245, 2510, 3129, + 3244, 2513, 3128, + 3242, 2517, 3126, + 3239, 2523, 3124, + 3236, 2530, 3121, + 3232, 2539, 3117, + 3226, 2552, 3111, + 3218, 2568, 3103, + 3207, 2588, 3093, + 3192, 2614, 3078, + 3172, 2647, 3058, + 3142, 2687, 3029, + 3100, 2736, 2988, + 3036, 2794, 2926, + 2934, 2862, 2828, + 2746, 2939, 2650, + 2226, 3025, 2186, + 0, 3120, 0, + 0, 3221, 0, + 0, 3329, 0, + 0, 3443, 0, + 0, 3560, 0, + 0, 3681, 0, + 3392, 2560, 3234, + 3392, 2561, 3234, + 3392, 2561, 3234, + 3392, 2561, 3233, + 3392, 2562, 3233, + 3392, 2562, 3233, + 3391, 2563, 3233, + 3391, 2564, 3232, + 3391, 2566, 3232, + 3390, 2568, 3231, + 3389, 2571, 3230, + 3388, 2574, 3229, + 3386, 2579, 3227, + 3383, 2586, 3224, + 3380, 2594, 3221, + 3376, 2605, 3216, + 3370, 2619, 3210, + 3363, 2637, 3202, + 3352, 2661, 3190, + 3338, 2691, 3175, + 3317, 2727, 3153, + 3289, 2772, 3121, + 3248, 2826, 3076, + 3187, 2890, 3008, + 3089, 2962, 2896, + 2913, 3045, 2685, + 2459, 3135, 1969, + 0, 3234, 0, + 0, 3339, 0, + 0, 3450, 0, + 0, 3566, 0, + 0, 3685, 0, + 3533, 2629, 3341, + 3533, 2629, 3341, + 3533, 2629, 3341, + 3533, 2630, 3341, + 3533, 2630, 3341, + 3533, 2631, 3340, + 3532, 2631, 3340, + 3532, 2632, 3340, + 3532, 2634, 3339, + 3531, 2636, 3339, + 3530, 2638, 3338, + 3530, 2641, 3337, + 3528, 2645, 3335, + 3527, 2651, 3333, + 3524, 2658, 3331, + 3521, 2668, 3327, + 3517, 2680, 3322, + 3512, 2696, 3316, + 3504, 2717, 3307, + 3494, 2743, 3295, + 3479, 2776, 3278, + 3460, 2817, 3255, + 3432, 2866, 3221, + 3392, 2924, 3173, + 3332, 2992, 3098, + 3237, 3069, 2974, + 3069, 3156, 2727, + 2654, 3251, 1192, + 0, 3353, 0, + 0, 3461, 0, + 0, 3574, 0, + 0, 3692, 0, + 3672, 2707, 3453, + 3672, 2707, 3453, + 3671, 2707, 3453, + 3671, 2708, 3453, + 3671, 2708, 3453, + 3671, 2709, 3453, + 3671, 2709, 3453, + 3671, 2710, 3453, + 3671, 2711, 3452, + 3670, 2713, 3452, + 3670, 2715, 3451, + 3669, 2717, 3450, + 3668, 2721, 3449, + 3667, 2725, 3448, + 3665, 2732, 3446, + 3663, 2740, 3443, + 3660, 2750, 3439, + 3656, 2764, 3434, + 3650, 2782, 3427, + 3643, 2805, 3418, + 3633, 2834, 3405, + 3619, 2870, 3388, + 3599, 2914, 3363, + 3572, 2967, 3328, + 3532, 3029, 3276, + 3474, 3101, 3196, + 3382, 3182, 3061, + 3218, 3272, 2778, + 2827, 3370, 0, + 0, 3474, 0, + 0, 3585, 0, + 0, 3700, 0, + 3808, 2794, 3570, + 3808, 2794, 3570, + 3808, 2794, 3570, + 3808, 2795, 3570, + 3808, 2795, 3570, + 3808, 2795, 3570, + 3808, 2796, 3570, + 3808, 2796, 3570, + 3808, 2797, 3569, + 3807, 2799, 3569, + 3807, 2800, 3569, + 3806, 2803, 3568, + 3806, 2805, 3567, + 3805, 2809, 3566, + 3804, 2814, 3564, + 3802, 2821, 3562, + 3800, 2830, 3559, + 3797, 2842, 3555, + 3793, 2857, 3550, + 3787, 2876, 3543, + 3780, 2901, 3533, + 3770, 2932, 3520, + 3756, 2971, 3502, + 3737, 3018, 3476, + 3710, 3074, 3440, + 3671, 3139, 3385, + 3613, 3214, 3301, + 3522, 3299, 3156, + 3363, 3391, 2839, + 2989, 3492, 0, + 0, 3598, 0, + 0, 3710, 0, + 3944, 2889, 3691, + 3944, 2889, 3691, + 3944, 2890, 3691, + 3944, 2890, 3691, + 3944, 2890, 3691, + 3944, 2890, 3691, + 3944, 2891, 3690, + 3943, 2891, 3690, + 3943, 2892, 3690, + 3943, 2893, 3690, + 3943, 2894, 3689, + 3942, 2896, 3689, + 3942, 2898, 3688, + 3941, 2902, 3687, + 3940, 2906, 3686, + 3939, 2911, 3684, + 3937, 2919, 3682, + 3935, 2928, 3679, + 3932, 2941, 3675, + 3928, 2957, 3670, + 3923, 2978, 3663, + 3916, 3004, 3653, + 3906, 3037, 3639, + 3892, 3078, 3620, + 3873, 3128, 3594, + 3846, 3186, 3556, + 3808, 3255, 3500, + 3750, 3332, 3412, + 3661, 3419, 3258, + 3504, 3514, 2909, + 3141, 3616, 0, + 0, 3724, 0, + 4079, 2992, 3814, + 4079, 2992, 3814, + 4078, 2992, 3814, + 4078, 2992, 3814, + 4078, 2992, 3814, + 4078, 2992, 3814, + 4078, 2993, 3814, + 4078, 2993, 3813, + 4078, 2994, 3813, + 4078, 2995, 3813, + 4078, 2996, 3813, + 4077, 2997, 3812, + 4077, 2999, 3812, + 4077, 3002, 3811, + 4076, 3005, 3810, + 4075, 3009, 3809, + 4074, 3015, 3807, + 4072, 3023, 3805, + 4070, 3033, 3802, + 4067, 3047, 3798, + 4063, 3064, 3793, + 4058, 3086, 3785, + 4050, 3114, 3775, + 4040, 3148, 3761, + 4027, 3191, 3742, + 4008, 3242, 3715, + 3981, 3303, 3676, + 3943, 3374, 3618, + 3886, 3453, 3527, + 3798, 3542, 3367, + 3643, 3639, 2988, + 3288, 3742, 0, + 4095, 3100, 3939, + 4095, 3100, 3939, + 4095, 3100, 3939, + 4095, 3101, 3939, + 4095, 3101, 3939, + 4095, 3101, 3939, + 4095, 3101, 3939, + 4095, 3101, 3939, + 4095, 3102, 3939, + 4095, 3103, 3939, + 4095, 3103, 3938, + 4095, 3105, 3938, + 4095, 3106, 3938, + 4095, 3108, 3937, + 4095, 3111, 3936, + 4095, 3114, 3936, + 4095, 3119, 3934, + 4095, 3125, 3933, + 4095, 3133, 3930, + 4095, 3144, 3927, + 4095, 3158, 3923, + 4095, 3176, 3918, + 4095, 3199, 3910, + 4095, 3228, 3900, + 4095, 3264, 3886, + 4095, 3308, 3866, + 4095, 3361, 3839, + 4095, 3424, 3799, + 4078, 3496, 3740, + 4021, 3577, 3646, + 3933, 3667, 3480, + 3780, 3765, 3076, + 4095, 3214, 4066, + 4095, 3214, 4066, + 4095, 3214, 4066, + 4095, 3214, 4066, + 4095, 3214, 4066, + 4095, 3214, 4066, + 4095, 3215, 4066, + 4095, 3215, 4066, + 4095, 3215, 4066, + 4095, 3216, 4066, + 4095, 3216, 4066, + 4095, 3217, 4065, + 4095, 3218, 4065, + 4095, 3220, 4065, + 4095, 3222, 4064, + 4095, 3225, 4063, + 4095, 3229, 4062, + 4095, 3233, 4061, + 4095, 3240, 4059, + 4095, 3248, 4057, + 4095, 3259, 4054, + 4095, 3274, 4050, + 4095, 3292, 4044, + 4095, 3316, 4037, + 4095, 3346, 4026, + 4095, 3383, 4012, + 4095, 3429, 3992, + 4095, 3483, 3964, + 4095, 3547, 3924, + 4095, 3620, 3864, + 4095, 3703, 3768, + 4068, 3794, 3598, + 0, 2393, 2661, + 0, 2393, 2661, + 0, 2393, 2661, + 0, 2394, 2660, + 0, 2395, 2660, + 0, 2396, 2659, + 0, 2397, 2658, + 0, 2399, 2656, + 0, 2401, 2654, + 0, 2404, 2651, + 0, 2408, 2648, + 0, 2413, 2643, + 0, 2420, 2636, + 0, 2429, 2627, + 0, 2440, 2614, + 0, 2456, 2596, + 0, 2475, 2572, + 0, 2500, 2537, + 0, 2532, 2485, + 0, 2571, 2406, + 0, 2618, 2271, + 0, 2674, 1991, + 0, 2740, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3313, 0, + 0, 3430, 0, + 0, 3550, 0, + 0, 3673, 0, + 0, 2393, 2662, + 0, 2393, 2662, + 0, 2394, 2661, + 0, 2394, 2661, + 0, 2395, 2660, + 0, 2396, 2659, + 0, 2397, 2658, + 0, 2399, 2657, + 0, 2401, 2655, + 0, 2404, 2652, + 0, 2408, 2648, + 0, 2413, 2643, + 0, 2420, 2636, + 0, 2429, 2627, + 0, 2441, 2614, + 0, 2456, 2597, + 0, 2475, 2572, + 0, 2500, 2537, + 0, 2532, 2486, + 0, 2571, 2406, + 0, 2618, 2272, + 0, 2675, 1992, + 0, 2740, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3313, 0, + 0, 3430, 0, + 0, 3550, 0, + 0, 3673, 0, + 0, 2393, 2662, + 0, 2393, 2662, + 0, 2394, 2662, + 0, 2394, 2661, + 0, 2395, 2661, + 0, 2396, 2660, + 0, 2397, 2659, + 0, 2399, 2657, + 0, 2401, 2655, + 0, 2404, 2652, + 0, 2408, 2649, + 0, 2413, 2644, + 0, 2420, 2637, + 0, 2429, 2628, + 0, 2441, 2615, + 0, 2456, 2597, + 0, 2476, 2573, + 0, 2501, 2538, + 0, 2532, 2487, + 0, 2571, 2407, + 0, 2618, 2273, + 0, 2675, 1995, + 0, 2741, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3313, 0, + 0, 3430, 0, + 0, 3550, 0, + 0, 3673, 0, + 0, 2393, 2663, + 0, 2393, 2663, + 0, 2394, 2662, + 0, 2394, 2662, + 0, 2395, 2661, + 0, 2396, 2661, + 0, 2397, 2659, + 0, 2399, 2658, + 0, 2401, 2656, + 0, 2404, 2653, + 0, 2408, 2649, + 0, 2413, 2644, + 0, 2420, 2638, + 0, 2429, 2628, + 0, 2441, 2616, + 0, 2456, 2598, + 0, 2476, 2574, + 0, 2501, 2539, + 0, 2532, 2488, + 0, 2571, 2408, + 0, 2618, 2275, + 0, 2675, 1998, + 0, 2741, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3313, 0, + 0, 3430, 0, + 0, 3550, 0, + 0, 3674, 0, + 0, 2393, 2664, + 0, 2394, 2664, + 0, 2394, 2663, + 0, 2395, 2663, + 0, 2395, 2662, + 0, 2396, 2661, + 0, 2398, 2660, + 0, 2399, 2659, + 0, 2401, 2657, + 0, 2404, 2654, + 0, 2408, 2650, + 0, 2413, 2645, + 0, 2420, 2639, + 0, 2429, 2629, + 0, 2441, 2617, + 0, 2456, 2599, + 0, 2476, 2575, + 0, 2501, 2540, + 0, 2532, 2489, + 0, 2571, 2410, + 0, 2618, 2277, + 0, 2675, 2002, + 0, 2741, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3313, 0, + 0, 3430, 0, + 0, 3550, 0, + 0, 3674, 0, + 0, 2394, 2665, + 0, 2394, 2665, + 0, 2394, 2665, + 0, 2395, 2664, + 0, 2396, 2664, + 0, 2397, 2663, + 0, 2398, 2662, + 0, 2399, 2660, + 0, 2402, 2658, + 0, 2405, 2655, + 0, 2409, 2652, + 0, 2414, 2647, + 0, 2421, 2640, + 0, 2430, 2631, + 0, 2441, 2618, + 0, 2457, 2601, + 0, 2476, 2576, + 0, 2501, 2542, + 0, 2533, 2491, + 0, 2571, 2412, + 0, 2619, 2280, + 0, 2675, 2007, + 0, 2741, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3314, 0, + 0, 3430, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2394, 2667, + 0, 2394, 2667, + 0, 2395, 2666, + 0, 2395, 2666, + 0, 2396, 2665, + 0, 2397, 2664, + 0, 2398, 2663, + 0, 2400, 2662, + 0, 2402, 2660, + 0, 2405, 2657, + 0, 2409, 2653, + 0, 2414, 2648, + 0, 2421, 2642, + 0, 2430, 2633, + 0, 2442, 2620, + 0, 2457, 2603, + 0, 2477, 2579, + 0, 2501, 2544, + 0, 2533, 2493, + 0, 2572, 2415, + 0, 2619, 2284, + 0, 2675, 2014, + 0, 2741, 0, + 0, 2816, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3094, 0, + 0, 3201, 0, + 0, 3314, 0, + 0, 3430, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2395, 2669, + 0, 2395, 2669, + 0, 2395, 2669, + 0, 2396, 2668, + 0, 2397, 2668, + 0, 2398, 2667, + 0, 2399, 2666, + 0, 2400, 2664, + 0, 2403, 2662, + 0, 2406, 2659, + 0, 2410, 2656, + 0, 2415, 2651, + 0, 2422, 2644, + 0, 2430, 2635, + 0, 2442, 2623, + 0, 2457, 2605, + 0, 2477, 2581, + 0, 2502, 2547, + 0, 2533, 2497, + 0, 2572, 2419, + 0, 2619, 2289, + 0, 2676, 2024, + 0, 2741, 0, + 0, 2817, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3095, 0, + 0, 3201, 0, + 0, 3314, 0, + 0, 3430, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2395, 2672, + 0, 2396, 2672, + 0, 2396, 2672, + 0, 2397, 2671, + 0, 2397, 2670, + 0, 2398, 2670, + 0, 2400, 2669, + 0, 2401, 2667, + 0, 2403, 2665, + 0, 2406, 2662, + 0, 2410, 2659, + 0, 2415, 2654, + 0, 2422, 2647, + 0, 2431, 2638, + 0, 2443, 2626, + 0, 2458, 2609, + 0, 2478, 2585, + 0, 2503, 2551, + 0, 2534, 2501, + 0, 2573, 2424, + 0, 2620, 2296, + 0, 2676, 2036, + 0, 2742, 0, + 0, 2817, 0, + 0, 2901, 0, + 0, 2994, 0, + 0, 3095, 0, + 0, 3202, 0, + 0, 3314, 0, + 0, 3430, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2397, 2676, + 0, 2397, 2676, + 0, 2397, 2676, + 0, 2398, 2675, + 0, 2398, 2674, + 0, 2399, 2674, + 0, 2401, 2673, + 0, 2402, 2671, + 0, 2404, 2669, + 0, 2407, 2666, + 0, 2411, 2663, + 0, 2416, 2658, + 0, 2423, 2651, + 0, 2432, 2642, + 0, 2444, 2630, + 0, 2459, 2613, + 0, 2478, 2590, + 0, 2503, 2556, + 0, 2535, 2507, + 0, 2573, 2431, + 0, 2620, 2305, + 0, 2677, 2052, + 0, 2742, 0, + 0, 2817, 0, + 0, 2902, 0, + 0, 2995, 0, + 0, 3095, 0, + 0, 3202, 0, + 0, 3314, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2398, 2681, + 0, 2398, 2681, + 0, 2399, 2681, + 0, 2399, 2680, + 0, 2400, 2680, + 0, 2401, 2679, + 0, 2402, 2678, + 0, 2404, 2676, + 0, 2406, 2674, + 0, 2409, 2672, + 0, 2413, 2668, + 0, 2418, 2663, + 0, 2424, 2657, + 0, 2433, 2648, + 0, 2445, 2636, + 0, 2460, 2619, + 0, 2480, 2596, + 0, 2504, 2563, + 0, 2536, 2514, + 0, 2574, 2440, + 0, 2621, 2317, + 0, 2677, 2072, + 0, 2743, 674, + 0, 2818, 0, + 0, 2902, 0, + 0, 2995, 0, + 0, 3095, 0, + 0, 3202, 0, + 0, 3314, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2400, 2688, + 0, 2400, 2688, + 0, 2400, 2688, + 0, 2401, 2687, + 0, 2402, 2687, + 0, 2402, 2686, + 0, 2404, 2685, + 0, 2405, 2683, + 0, 2408, 2681, + 0, 2410, 2679, + 0, 2414, 2675, + 0, 2419, 2671, + 0, 2426, 2664, + 0, 2435, 2656, + 0, 2447, 2644, + 0, 2462, 2627, + 0, 2481, 2604, + 0, 2506, 2572, + 0, 2537, 2524, + 0, 2575, 2452, + 0, 2622, 2332, + 0, 2678, 2098, + 0, 2744, 1046, + 0, 2819, 0, + 0, 2903, 0, + 0, 2995, 0, + 0, 3096, 0, + 0, 3202, 0, + 0, 3314, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2402, 2697, + 0, 2402, 2697, + 0, 2403, 2697, + 0, 2403, 2696, + 0, 2404, 2696, + 0, 2405, 2695, + 0, 2406, 2694, + 0, 2408, 2693, + 0, 2410, 2691, + 0, 2413, 2688, + 0, 2417, 2685, + 0, 2422, 2680, + 0, 2428, 2674, + 0, 2437, 2665, + 0, 2449, 2654, + 0, 2464, 2638, + 0, 2483, 2615, + 0, 2508, 2583, + 0, 2539, 2537, + 0, 2577, 2467, + 0, 2624, 2352, + 0, 2680, 2130, + 0, 2745, 1300, + 0, 2820, 0, + 0, 2904, 0, + 0, 2996, 0, + 0, 3096, 0, + 0, 3203, 0, + 0, 3315, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2405, 2709, + 0, 2406, 2709, + 0, 2406, 2709, + 0, 2406, 2708, + 0, 2407, 2708, + 0, 2408, 2707, + 0, 2409, 2706, + 0, 2411, 2705, + 0, 2413, 2703, + 0, 2416, 2700, + 0, 2420, 2697, + 0, 2425, 2692, + 0, 2431, 2686, + 0, 2440, 2678, + 0, 2452, 2667, + 0, 2467, 2651, + 0, 2486, 2629, + 0, 2510, 2599, + 0, 2541, 2554, + 0, 2579, 2486, + 0, 2626, 2377, + 0, 2681, 2170, + 0, 2746, 1506, + 0, 2821, 0, + 0, 2905, 0, + 0, 2997, 0, + 0, 3097, 0, + 0, 3203, 0, + 0, 3315, 0, + 0, 3431, 0, + 0, 3551, 0, + 0, 3674, 0, + 0, 2410, 2725, + 0, 2410, 2724, + 0, 2410, 2724, + 0, 2411, 2724, + 0, 2411, 2723, + 0, 2412, 2722, + 0, 2413, 2721, + 0, 2415, 2720, + 0, 2417, 2718, + 0, 2420, 2716, + 0, 2424, 2713, + 0, 2429, 2708, + 0, 2435, 2702, + 0, 2444, 2694, + 0, 2456, 2684, + 0, 2470, 2669, + 0, 2489, 2648, + 0, 2514, 2618, + 0, 2544, 2575, + 0, 2582, 2511, + 0, 2628, 2408, + 0, 2684, 2219, + 0, 2748, 1686, + 0, 2823, 0, + 0, 2906, 0, + 0, 2998, 0, + 0, 3098, 0, + 0, 3204, 0, + 0, 3316, 0, + 0, 3432, 0, + 0, 3552, 0, + 0, 3675, 0, + 0, 2415, 2744, + 0, 2415, 2744, + 0, 2416, 2744, + 0, 2416, 2744, + 0, 2417, 2743, + 0, 2418, 2742, + 0, 2419, 2741, + 0, 2421, 2740, + 0, 2423, 2738, + 0, 2426, 2736, + 0, 2429, 2733, + 0, 2434, 2729, + 0, 2441, 2723, + 0, 2449, 2716, + 0, 2461, 2705, + 0, 2475, 2691, + 0, 2494, 2671, + 0, 2518, 2643, + 0, 2548, 2603, + 0, 2586, 2543, + 0, 2632, 2447, + 0, 2687, 2277, + 0, 2751, 1851, + 0, 2825, 0, + 0, 2908, 0, + 0, 3000, 0, + 0, 3099, 0, + 0, 3205, 0, + 0, 3316, 0, + 0, 3432, 0, + 0, 3552, 0, + 0, 3675, 0, + 896, 2423, 2770, + 879, 2423, 2769, + 854, 2423, 2769, + 820, 2424, 2769, + 769, 2424, 2768, + 691, 2425, 2768, + 560, 2426, 2767, + 290, 2428, 2766, + 0, 2430, 2764, + 0, 2433, 2762, + 0, 2436, 2759, + 0, 2441, 2755, + 0, 2448, 2750, + 0, 2456, 2742, + 0, 2467, 2733, + 0, 2482, 2719, + 0, 2500, 2701, + 0, 2524, 2674, + 0, 2554, 2637, + 0, 2591, 2581, + 0, 2636, 2494, + 0, 2691, 2344, + 0, 2755, 2007, + 0, 2828, 0, + 0, 2910, 0, + 0, 3002, 0, + 0, 3101, 0, + 0, 3206, 0, + 0, 3317, 0, + 0, 3433, 0, + 0, 3553, 0, + 0, 3675, 0, + 1925, 2432, 2801, + 1923, 2432, 2801, + 1921, 2433, 2801, + 1917, 2433, 2801, + 1913, 2434, 2800, + 1907, 2435, 2799, + 1899, 2436, 2799, + 1889, 2438, 2798, + 1874, 2440, 2796, + 1853, 2442, 2794, + 1824, 2446, 2791, + 1782, 2451, 2788, + 1718, 2457, 2783, + 1617, 2465, 2776, + 1432, 2476, 2767, + 925, 2490, 2754, + 0, 2508, 2737, + 0, 2532, 2713, + 0, 2561, 2679, + 0, 2598, 2628, + 0, 2642, 2551, + 0, 2696, 2421, + 0, 2759, 2155, + 0, 2832, 0, + 0, 2914, 0, + 0, 3004, 0, + 0, 3103, 0, + 0, 3208, 0, + 0, 3319, 0, + 0, 3434, 0, + 0, 3554, 0, + 0, 3676, 0, + 2283, 2445, 2841, + 2282, 2445, 2840, + 2281, 2445, 2840, + 2279, 2446, 2840, + 2278, 2447, 2839, + 2275, 2447, 2839, + 2271, 2449, 2838, + 2267, 2450, 2837, + 2260, 2452, 2836, + 2252, 2455, 2834, + 2240, 2458, 2831, + 2223, 2463, 2828, + 2200, 2469, 2823, + 2168, 2477, 2817, + 2120, 2488, 2809, + 2047, 2501, 2798, + 1927, 2519, 2782, + 1692, 2542, 2760, + 612, 2571, 2729, + 0, 2607, 2685, + 0, 2650, 2617, + 0, 2703, 2507, + 0, 2765, 2299, + 0, 2837, 1624, + 0, 2918, 0, + 0, 3008, 0, + 0, 3106, 0, + 0, 3210, 0, + 0, 3321, 0, + 0, 3436, 0, + 0, 3555, 0, + 0, 3677, 0, + 2532, 2461, 2888, + 2531, 2462, 2888, + 2531, 2462, 2888, + 2530, 2462, 2887, + 2529, 2463, 2887, + 2527, 2464, 2887, + 2525, 2465, 2886, + 2522, 2466, 2885, + 2519, 2468, 2884, + 2514, 2471, 2882, + 2507, 2474, 2880, + 2498, 2479, 2877, + 2486, 2484, 2873, + 2469, 2492, 2867, + 2445, 2503, 2860, + 2411, 2516, 2850, + 2360, 2533, 2836, + 2283, 2555, 2817, + 2155, 2583, 2789, + 1893, 2618, 2750, + 0, 2661, 2692, + 0, 2713, 2601, + 0, 2774, 2440, + 0, 2844, 2059, + 0, 2924, 0, + 0, 3013, 0, + 0, 3110, 0, + 0, 3213, 0, + 0, 3323, 0, + 0, 3438, 0, + 0, 3556, 0, + 0, 3678, 0, + 2735, 2482, 2945, + 2735, 2483, 2945, + 2734, 2483, 2945, + 2734, 2483, 2944, + 2733, 2484, 2944, + 2732, 2485, 2944, + 2731, 2486, 2943, + 2729, 2487, 2942, + 2727, 2489, 2941, + 2724, 2491, 2940, + 2719, 2495, 2938, + 2714, 2499, 2935, + 2706, 2504, 2931, + 2696, 2512, 2927, + 2681, 2522, 2920, + 2661, 2535, 2911, + 2633, 2551, 2899, + 2592, 2572, 2882, + 2532, 2599, 2859, + 2435, 2633, 2826, + 2263, 2675, 2777, + 1825, 2725, 2702, + 0, 2784, 2579, + 0, 2853, 2332, + 0, 2932, 847, + 0, 3019, 0, + 0, 3115, 0, + 0, 3217, 0, + 0, 3326, 0, + 0, 3440, 0, + 0, 3558, 0, + 0, 3679, 0, + 2914, 2509, 3011, + 2913, 2509, 3011, + 2913, 2510, 3011, + 2913, 2510, 3011, + 2912, 2510, 3010, + 2912, 2511, 3010, + 2911, 2512, 3009, + 2910, 2513, 3009, + 2908, 2515, 3008, + 2906, 2517, 3007, + 2903, 2521, 3005, + 2900, 2525, 3003, + 2894, 2530, 3000, + 2888, 2537, 2995, + 2878, 2546, 2990, + 2865, 2558, 2982, + 2848, 2574, 2972, + 2823, 2594, 2958, + 2787, 2620, 2938, + 2735, 2652, 2910, + 2653, 2692, 2870, + 2516, 2741, 2810, + 2224, 2798, 2716, + 0, 2865, 2547, + 0, 2942, 2131, + 0, 3028, 0, + 0, 3122, 0, + 0, 3223, 0, + 0, 3331, 0, + 0, 3443, 0, + 0, 3561, 0, + 0, 3681, 0, + 3078, 2542, 3087, + 3078, 2543, 3087, + 3077, 2543, 3087, + 3077, 2543, 3087, + 3077, 2544, 3086, + 3076, 2544, 3086, + 3076, 2545, 3086, + 3075, 2547, 3085, + 3074, 2548, 3084, + 3073, 2550, 3083, + 3071, 2553, 3082, + 3068, 2557, 3080, + 3064, 2562, 3077, + 3060, 2569, 3074, + 3053, 2577, 3069, + 3045, 2589, 3063, + 3033, 2603, 3054, + 3016, 2622, 3042, + 2993, 2647, 3026, + 2961, 2677, 3003, + 2913, 2715, 2971, + 2841, 2761, 2923, + 2721, 2816, 2851, + 2486, 2881, 2733, + 1423, 2955, 2501, + 0, 3039, 1510, + 0, 3130, 0, + 0, 3230, 0, + 0, 3336, 0, + 0, 3448, 0, + 0, 3564, 0, + 0, 3684, 0, + 3232, 2584, 3172, + 3232, 2584, 3172, + 3232, 2584, 3172, + 3232, 2584, 3172, + 3232, 2585, 3171, + 3232, 2585, 3171, + 3231, 2586, 3171, + 3231, 2587, 3170, + 3230, 2589, 3170, + 3229, 2591, 3169, + 3227, 2593, 3167, + 3226, 2597, 3166, + 3223, 2601, 3164, + 3220, 2607, 3161, + 3215, 2615, 3157, + 3209, 2626, 3152, + 3201, 2639, 3145, + 3190, 2657, 3135, + 3174, 2680, 3122, + 3152, 2708, 3103, + 3122, 2743, 3078, + 3077, 2787, 3041, + 3010, 2839, 2986, + 2901, 2901, 2901, + 2696, 2972, 2754, + 2044, 3053, 2432, + 0, 3142, 0, + 0, 3239, 0, + 0, 3344, 0, + 0, 3454, 0, + 0, 3569, 0, + 0, 3687, 0, + 3381, 2633, 3265, + 3381, 2634, 3265, + 3381, 2634, 3265, + 3380, 2634, 3265, + 3380, 2634, 3265, + 3380, 2635, 3265, + 3380, 2636, 3264, + 3379, 2637, 3264, + 3379, 2638, 3263, + 3378, 2640, 3263, + 3377, 2642, 3262, + 3376, 2645, 3260, + 3374, 2649, 3259, + 3372, 2655, 3256, + 3368, 2662, 3253, + 3364, 2671, 3249, + 3358, 2684, 3243, + 3350, 2700, 3235, + 3339, 2720, 3225, + 3324, 2746, 3210, + 3304, 2779, 3190, + 3274, 2819, 3161, + 3232, 2868, 3120, + 3168, 2926, 3058, + 3066, 2994, 2960, + 2879, 3071, 2782, + 2358, 3157, 2318, + 0, 3252, 0, + 0, 3353, 0, + 0, 3461, 0, + 0, 3575, 0, + 0, 3692, 0, + 3525, 2692, 3366, + 3525, 2693, 3366, + 3524, 2693, 3366, + 3524, 2693, 3366, + 3524, 2693, 3366, + 3524, 2694, 3365, + 3524, 2695, 3365, + 3524, 2695, 3365, + 3523, 2697, 3364, + 3523, 2698, 3364, + 3522, 2700, 3363, + 3521, 2703, 3362, + 3520, 2707, 3361, + 3518, 2711, 3359, + 3516, 2718, 3356, + 3512, 2726, 3353, + 3508, 2737, 3348, + 3503, 2751, 3342, + 3495, 2770, 3334, + 3484, 2793, 3322, + 3470, 2823, 3307, + 3450, 2859, 3285, + 3421, 2904, 3254, + 3380, 2958, 3208, + 3319, 3022, 3140, + 3221, 3095, 3028, + 3045, 3177, 2817, + 2591, 3268, 2101, + 0, 3366, 0, + 0, 3471, 0, + 0, 3582, 0, + 0, 3698, 0, + 3665, 2761, 3473, + 3665, 2761, 3473, + 3665, 2761, 3473, + 3665, 2762, 3473, + 3665, 2762, 3473, + 3665, 2762, 3473, + 3665, 2763, 3472, + 3665, 2764, 3472, + 3664, 2765, 3472, + 3664, 2766, 3471, + 3663, 2768, 3471, + 3663, 2770, 3470, + 3662, 2773, 3469, + 3660, 2777, 3467, + 3659, 2783, 3465, + 3656, 2790, 3463, + 3653, 2800, 3459, + 3649, 2812, 3454, + 3644, 2828, 3448, + 3636, 2849, 3439, + 3626, 2875, 3427, + 3611, 2908, 3410, + 3592, 2949, 3387, + 3564, 2998, 3353, + 3524, 3056, 3305, + 3464, 3124, 3230, + 3370, 3202, 3106, + 3201, 3288, 2859, + 2786, 3383, 1324, + 0, 3485, 0, + 0, 3593, 0, + 0, 3706, 0, + 3804, 2839, 3586, + 3804, 2839, 3586, + 3804, 2839, 3586, + 3804, 2840, 3585, + 3803, 2840, 3585, + 3803, 2840, 3585, + 3803, 2841, 3585, + 3803, 2841, 3585, + 3803, 2842, 3585, + 3803, 2843, 3584, + 3802, 2845, 3584, + 3802, 2847, 3583, + 3801, 2849, 3582, + 3800, 2853, 3581, + 3799, 2858, 3580, + 3797, 2864, 3578, + 3795, 2872, 3575, + 3792, 2882, 3571, + 3788, 2896, 3566, + 3782, 2914, 3559, + 3775, 2937, 3550, + 3765, 2966, 3537, + 3751, 3002, 3520, + 3731, 3046, 3495, + 3704, 3099, 3460, + 3665, 3161, 3408, + 3606, 3233, 3328, + 3514, 3314, 3193, + 3351, 3404, 2910, + 2960, 3502, 0, + 0, 3606, 0, + 0, 3717, 0, + 3940, 2926, 3703, + 3940, 2926, 3702, + 3940, 2926, 3702, + 3940, 2926, 3702, + 3940, 2927, 3702, + 3940, 2927, 3702, + 3940, 2927, 3702, + 3940, 2928, 3702, + 3940, 2929, 3702, + 3940, 2930, 3702, + 3939, 2931, 3701, + 3939, 2932, 3701, + 3938, 2935, 3700, + 3938, 2938, 3699, + 3937, 2941, 3698, + 3936, 2947, 3696, + 3934, 2953, 3694, + 3932, 2962, 3691, + 3929, 2974, 3687, + 3925, 2989, 3682, + 3919, 3008, 3675, + 3912, 3033, 3666, + 3902, 3064, 3652, + 3888, 3103, 3634, + 3869, 3150, 3608, + 3842, 3206, 3572, + 3803, 3271, 3517, + 3745, 3347, 3433, + 3654, 3431, 3288, + 3495, 3523, 2971, + 3121, 3624, 0, + 0, 3730, 0, + 4076, 3021, 3823, + 4076, 3021, 3823, + 4076, 3021, 3823, + 4076, 3022, 3823, + 4076, 3022, 3823, + 4076, 3022, 3823, + 4076, 3022, 3823, + 4076, 3023, 3822, + 4076, 3023, 3822, + 4075, 3024, 3822, + 4075, 3025, 3822, + 4075, 3026, 3821, + 4075, 3028, 3821, + 4074, 3031, 3820, + 4073, 3034, 3819, + 4072, 3038, 3818, + 4071, 3043, 3817, + 4070, 3051, 3814, + 4067, 3060, 3811, + 4064, 3073, 3807, + 4060, 3089, 3802, + 4055, 3110, 3795, + 4048, 3136, 3785, + 4038, 3170, 3771, + 4024, 3210, 3753, + 4005, 3260, 3726, + 3978, 3318, 3688, + 3940, 3387, 3632, + 3883, 3464, 3544, + 3793, 3551, 3390, + 3636, 3646, 3041, + 3273, 3748, 0, + 4095, 3124, 3946, + 4095, 3124, 3946, + 4095, 3124, 3946, + 4095, 3124, 3946, + 4095, 3124, 3946, + 4095, 3124, 3946, + 4095, 3125, 3946, + 4095, 3125, 3946, + 4095, 3125, 3946, + 4095, 3126, 3945, + 4095, 3127, 3945, + 4095, 3128, 3945, + 4095, 3129, 3945, + 4095, 3131, 3944, + 4095, 3134, 3943, + 4095, 3137, 3942, + 4095, 3142, 3941, + 4095, 3147, 3940, + 4095, 3155, 3937, + 4095, 3165, 3934, + 4095, 3179, 3930, + 4095, 3196, 3925, + 4095, 3218, 3917, + 4095, 3246, 3907, + 4095, 3280, 3893, + 4095, 3323, 3874, + 4095, 3375, 3847, + 4095, 3435, 3808, + 4075, 3506, 3750, + 4019, 3586, 3659, + 3930, 3674, 3499, + 3775, 3771, 3120, + 4095, 3232, 4071, + 4095, 3232, 4071, + 4095, 3232, 4071, + 4095, 3232, 4071, + 4095, 3233, 4071, + 4095, 3233, 4071, + 4095, 3233, 4071, + 4095, 3233, 4071, + 4095, 3234, 4071, + 4095, 3234, 4071, + 4095, 3235, 4071, + 4095, 3236, 4070, + 4095, 3237, 4070, + 4095, 3238, 4070, + 4095, 3240, 4069, + 4095, 3243, 4069, + 4095, 3246, 4068, + 4095, 3251, 4066, + 4095, 3257, 4065, + 4095, 3265, 4062, + 4095, 3276, 4059, + 4095, 3290, 4055, + 4095, 3308, 4050, + 4095, 3331, 4042, + 4095, 3360, 4032, + 4095, 3396, 4018, + 4095, 3440, 3998, + 4095, 3493, 3971, + 4095, 3556, 3931, + 4095, 3628, 3872, + 4095, 3709, 3778, + 4065, 3799, 3612, + 0, 2525, 2793, + 0, 2525, 2793, + 0, 2525, 2793, + 0, 2525, 2793, + 0, 2526, 2792, + 0, 2527, 2792, + 0, 2528, 2791, + 0, 2529, 2790, + 0, 2531, 2788, + 0, 2533, 2786, + 0, 2536, 2783, + 0, 2540, 2779, + 0, 2545, 2774, + 0, 2552, 2768, + 0, 2561, 2758, + 0, 2572, 2746, + 0, 2588, 2728, + 0, 2607, 2704, + 0, 2632, 2668, + 0, 2664, 2617, + 0, 2703, 2537, + 0, 2750, 2402, + 0, 2807, 2121, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3445, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2525, 2794, + 0, 2525, 2794, + 0, 2525, 2793, + 0, 2526, 2793, + 0, 2526, 2792, + 0, 2527, 2792, + 0, 2528, 2791, + 0, 2529, 2790, + 0, 2531, 2788, + 0, 2533, 2786, + 0, 2536, 2783, + 0, 2540, 2780, + 0, 2545, 2775, + 0, 2552, 2768, + 0, 2561, 2759, + 0, 2573, 2746, + 0, 2588, 2728, + 0, 2607, 2704, + 0, 2632, 2669, + 0, 2664, 2617, + 0, 2703, 2538, + 0, 2750, 2403, + 0, 2807, 2123, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2525, 2794, + 0, 2525, 2794, + 0, 2525, 2794, + 0, 2526, 2793, + 0, 2526, 2793, + 0, 2527, 2792, + 0, 2528, 2791, + 0, 2529, 2790, + 0, 2531, 2789, + 0, 2533, 2787, + 0, 2536, 2784, + 0, 2540, 2780, + 0, 2545, 2775, + 0, 2552, 2768, + 0, 2561, 2759, + 0, 2573, 2746, + 0, 2588, 2729, + 0, 2608, 2704, + 0, 2633, 2669, + 0, 2664, 2618, + 0, 2703, 2538, + 0, 2750, 2404, + 0, 2807, 2124, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2525, 2795, + 0, 2525, 2794, + 0, 2525, 2794, + 0, 2526, 2794, + 0, 2526, 2793, + 0, 2527, 2793, + 0, 2528, 2792, + 0, 2529, 2791, + 0, 2531, 2789, + 0, 2533, 2787, + 0, 2536, 2784, + 0, 2540, 2781, + 0, 2545, 2776, + 0, 2552, 2769, + 0, 2561, 2760, + 0, 2573, 2747, + 0, 2588, 2730, + 0, 2608, 2705, + 0, 2633, 2670, + 0, 2664, 2619, + 0, 2703, 2539, + 0, 2750, 2405, + 0, 2807, 2127, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2525, 2795, + 0, 2525, 2795, + 0, 2526, 2795, + 0, 2526, 2795, + 0, 2526, 2794, + 0, 2527, 2793, + 0, 2528, 2793, + 0, 2529, 2791, + 0, 2531, 2790, + 0, 2533, 2788, + 0, 2536, 2785, + 0, 2540, 2781, + 0, 2545, 2776, + 0, 2552, 2770, + 0, 2561, 2760, + 0, 2573, 2748, + 0, 2588, 2730, + 0, 2608, 2706, + 0, 2633, 2671, + 0, 2664, 2620, + 0, 2703, 2540, + 0, 2750, 2407, + 0, 2807, 2130, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2525, 2796, + 0, 2526, 2796, + 0, 2526, 2796, + 0, 2526, 2795, + 0, 2527, 2795, + 0, 2527, 2794, + 0, 2528, 2794, + 0, 2530, 2792, + 0, 2531, 2791, + 0, 2533, 2789, + 0, 2536, 2786, + 0, 2540, 2782, + 0, 2546, 2777, + 0, 2552, 2771, + 0, 2561, 2761, + 0, 2573, 2749, + 0, 2588, 2731, + 0, 2608, 2707, + 0, 2633, 2672, + 0, 2664, 2621, + 0, 2703, 2542, + 0, 2751, 2409, + 0, 2807, 2134, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2526, 2798, + 0, 2526, 2797, + 0, 2526, 2797, + 0, 2527, 2797, + 0, 2527, 2796, + 0, 2528, 2796, + 0, 2529, 2795, + 0, 2530, 2794, + 0, 2532, 2792, + 0, 2534, 2790, + 0, 2537, 2787, + 0, 2541, 2784, + 0, 2546, 2779, + 0, 2553, 2772, + 0, 2562, 2763, + 0, 2573, 2750, + 0, 2589, 2733, + 0, 2608, 2709, + 0, 2633, 2674, + 0, 2665, 2623, + 0, 2703, 2544, + 0, 2751, 2412, + 0, 2807, 2139, + 0, 2873, 0, + 0, 2948, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2526, 2799, + 0, 2526, 2799, + 0, 2527, 2799, + 0, 2527, 2798, + 0, 2527, 2798, + 0, 2528, 2797, + 0, 2529, 2797, + 0, 2530, 2795, + 0, 2532, 2794, + 0, 2534, 2792, + 0, 2537, 2789, + 0, 2541, 2785, + 0, 2546, 2780, + 0, 2553, 2774, + 0, 2562, 2765, + 0, 2574, 2752, + 0, 2589, 2735, + 0, 2609, 2711, + 0, 2634, 2676, + 0, 2665, 2625, + 0, 2704, 2547, + 0, 2751, 2416, + 0, 2807, 2146, + 0, 2873, 0, + 0, 2949, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3226, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2527, 2801, + 0, 2527, 2801, + 0, 2527, 2801, + 0, 2528, 2801, + 0, 2528, 2800, + 0, 2529, 2800, + 0, 2530, 2799, + 0, 2531, 2798, + 0, 2533, 2796, + 0, 2535, 2794, + 0, 2538, 2791, + 0, 2542, 2788, + 0, 2547, 2783, + 0, 2554, 2776, + 0, 2563, 2767, + 0, 2574, 2755, + 0, 2590, 2737, + 0, 2609, 2713, + 0, 2634, 2679, + 0, 2665, 2629, + 0, 2704, 2551, + 0, 2751, 2421, + 0, 2808, 2156, + 0, 2873, 0, + 0, 2949, 0, + 0, 3033, 0, + 0, 3126, 0, + 0, 3227, 0, + 0, 3333, 0, + 0, 3446, 0, + 0, 3562, 0, + 0, 3683, 0, + 0, 2527, 2804, + 0, 2528, 2804, + 0, 2528, 2804, + 0, 2528, 2804, + 0, 2529, 2803, + 0, 2529, 2803, + 0, 2530, 2802, + 0, 2532, 2801, + 0, 2533, 2799, + 0, 2536, 2797, + 0, 2538, 2794, + 0, 2542, 2791, + 0, 2548, 2786, + 0, 2554, 2779, + 0, 2563, 2770, + 0, 2575, 2758, + 0, 2590, 2741, + 0, 2610, 2717, + 0, 2635, 2683, + 0, 2666, 2633, + 0, 2705, 2556, + 0, 2752, 2428, + 0, 2808, 2168, + 0, 2874, 0, + 0, 2949, 0, + 0, 3034, 0, + 0, 3126, 0, + 0, 3227, 0, + 0, 3334, 0, + 0, 3446, 0, + 0, 3563, 0, + 0, 3683, 0, + 0, 2528, 2808, + 0, 2529, 2808, + 0, 2529, 2808, + 0, 2529, 2808, + 0, 2530, 2807, + 0, 2531, 2807, + 0, 2531, 2806, + 0, 2533, 2805, + 0, 2534, 2803, + 0, 2537, 2801, + 0, 2539, 2799, + 0, 2543, 2795, + 0, 2549, 2790, + 0, 2555, 2783, + 0, 2564, 2775, + 0, 2576, 2762, + 0, 2591, 2745, + 0, 2611, 2722, + 0, 2635, 2688, + 0, 2667, 2639, + 0, 2705, 2563, + 0, 2752, 2437, + 0, 2809, 2184, + 0, 2874, 0, + 0, 2949, 0, + 0, 3034, 0, + 0, 3127, 0, + 0, 3227, 0, + 0, 3334, 0, + 0, 3446, 0, + 0, 3563, 0, + 0, 3683, 0, + 0, 2530, 2814, + 0, 2530, 2813, + 0, 2530, 2813, + 0, 2531, 2813, + 0, 2531, 2812, + 0, 2532, 2812, + 0, 2533, 2811, + 0, 2534, 2810, + 0, 2536, 2808, + 0, 2538, 2806, + 0, 2541, 2804, + 0, 2545, 2800, + 0, 2550, 2795, + 0, 2557, 2789, + 0, 2565, 2780, + 0, 2577, 2768, + 0, 2592, 2751, + 0, 2612, 2728, + 0, 2636, 2695, + 0, 2668, 2646, + 0, 2706, 2572, + 0, 2753, 2449, + 0, 2809, 2204, + 0, 2875, 806, + 0, 2950, 0, + 0, 3034, 0, + 0, 3127, 0, + 0, 3227, 0, + 0, 3334, 0, + 0, 3446, 0, + 0, 3563, 0, + 0, 3683, 0, + 0, 2532, 2821, + 0, 2532, 2820, + 0, 2532, 2820, + 0, 2532, 2820, + 0, 2533, 2819, + 0, 2534, 2819, + 0, 2535, 2818, + 0, 2536, 2817, + 0, 2537, 2815, + 0, 2540, 2814, + 0, 2543, 2811, + 0, 2546, 2807, + 0, 2552, 2803, + 0, 2558, 2796, + 0, 2567, 2788, + 0, 2579, 2776, + 0, 2594, 2759, + 0, 2613, 2736, + 0, 2638, 2704, + 0, 2669, 2656, + 0, 2708, 2584, + 0, 2754, 2464, + 0, 2810, 2230, + 0, 2876, 1179, + 0, 2951, 0, + 0, 3035, 0, + 0, 3128, 0, + 0, 3228, 0, + 0, 3334, 0, + 0, 3446, 0, + 0, 3563, 0, + 0, 3683, 0, + 0, 2534, 2830, + 0, 2534, 2829, + 0, 2534, 2829, + 0, 2535, 2829, + 0, 2535, 2828, + 0, 2536, 2828, + 0, 2537, 2827, + 0, 2538, 2826, + 0, 2540, 2825, + 0, 2542, 2823, + 0, 2545, 2820, + 0, 2549, 2817, + 0, 2554, 2812, + 0, 2561, 2806, + 0, 2569, 2797, + 0, 2581, 2786, + 0, 2596, 2770, + 0, 2615, 2747, + 0, 2640, 2716, + 0, 2671, 2669, + 0, 2709, 2599, + 0, 2756, 2484, + 0, 2812, 2263, + 0, 2877, 1432, + 0, 2952, 0, + 0, 3036, 0, + 0, 3128, 0, + 0, 3228, 0, + 0, 3335, 0, + 0, 3447, 0, + 0, 3563, 0, + 0, 3683, 0, + 0, 2537, 2842, + 0, 2537, 2841, + 0, 2538, 2841, + 0, 2538, 2841, + 0, 2539, 2840, + 0, 2539, 2840, + 0, 2540, 2839, + 0, 2541, 2838, + 0, 2543, 2837, + 0, 2545, 2835, + 0, 2548, 2832, + 0, 2552, 2829, + 0, 2557, 2824, + 0, 2564, 2818, + 0, 2572, 2810, + 0, 2584, 2799, + 0, 2599, 2783, + 0, 2618, 2761, + 0, 2642, 2731, + 0, 2673, 2686, + 0, 2711, 2618, + 0, 2758, 2509, + 0, 2813, 2303, + 0, 2878, 1638, + 0, 2953, 0, + 0, 3037, 0, + 0, 3129, 0, + 0, 3229, 0, + 0, 3335, 0, + 0, 3447, 0, + 0, 3564, 0, + 0, 3684, 0, + 0, 2541, 2857, + 0, 2542, 2857, + 0, 2542, 2857, + 0, 2542, 2856, + 0, 2543, 2856, + 0, 2543, 2855, + 0, 2544, 2854, + 0, 2546, 2854, + 0, 2547, 2852, + 0, 2549, 2850, + 0, 2552, 2848, + 0, 2556, 2845, + 0, 2561, 2840, + 0, 2568, 2835, + 0, 2576, 2827, + 0, 2588, 2816, + 0, 2602, 2801, + 0, 2621, 2780, + 0, 2646, 2750, + 0, 2676, 2708, + 0, 2714, 2643, + 0, 2760, 2540, + 0, 2816, 2351, + 0, 2880, 1818, + 0, 2955, 0, + 0, 3038, 0, + 0, 3130, 0, + 0, 3230, 0, + 0, 3336, 0, + 0, 3448, 0, + 0, 3564, 0, + 0, 3684, 0, + 0, 2547, 2877, + 0, 2547, 2877, + 0, 2547, 2876, + 0, 2548, 2876, + 0, 2548, 2876, + 0, 2549, 2875, + 0, 2550, 2874, + 0, 2551, 2873, + 0, 2553, 2872, + 0, 2555, 2870, + 0, 2558, 2868, + 0, 2561, 2865, + 0, 2566, 2861, + 0, 2573, 2855, + 0, 2581, 2848, + 0, 2593, 2837, + 0, 2607, 2823, + 0, 2626, 2803, + 0, 2650, 2775, + 0, 2680, 2735, + 0, 2718, 2675, + 0, 2764, 2579, + 0, 2819, 2409, + 0, 2883, 1983, + 0, 2957, 0, + 0, 3040, 0, + 0, 3132, 0, + 0, 3231, 0, + 0, 3337, 0, + 0, 3449, 0, + 0, 3565, 0, + 0, 3684, 0, + 1040, 2554, 2902, + 1028, 2555, 2902, + 1011, 2555, 2902, + 986, 2555, 2901, + 952, 2556, 2901, + 901, 2556, 2900, + 823, 2557, 2900, + 692, 2558, 2899, + 422, 2560, 2898, + 0, 2562, 2896, + 0, 2565, 2894, + 0, 2569, 2891, + 0, 2573, 2887, + 0, 2580, 2882, + 0, 2588, 2875, + 0, 2599, 2865, + 0, 2614, 2851, + 0, 2632, 2833, + 0, 2656, 2806, + 0, 2686, 2769, + 0, 2723, 2713, + 0, 2768, 2627, + 0, 2823, 2476, + 0, 2887, 2139, + 0, 2960, 0, + 0, 3043, 0, + 0, 3134, 0, + 0, 3233, 0, + 0, 3338, 0, + 0, 3450, 0, + 0, 3565, 0, + 0, 3685, 0, + 2058, 2564, 2934, + 2057, 2564, 2933, + 2055, 2565, 2933, + 2053, 2565, 2933, + 2050, 2565, 2933, + 2045, 2566, 2932, + 2039, 2567, 2932, + 2032, 2568, 2931, + 2021, 2570, 2930, + 2006, 2572, 2928, + 1985, 2574, 2926, + 1956, 2578, 2923, + 1914, 2583, 2920, + 1850, 2589, 2915, + 1749, 2597, 2908, + 1564, 2608, 2899, + 1057, 2622, 2887, + 0, 2641, 2869, + 0, 2664, 2845, + 0, 2693, 2811, + 0, 2730, 2761, + 0, 2775, 2683, + 0, 2828, 2553, + 0, 2891, 2287, + 0, 2964, 0, + 0, 3046, 0, + 0, 3137, 0, + 0, 3235, 0, + 0, 3340, 0, + 0, 3451, 0, + 0, 3566, 0, + 0, 3686, 0, + 2415, 2577, 2973, + 2415, 2577, 2973, + 2414, 2577, 2972, + 2413, 2578, 2972, + 2412, 2578, 2972, + 2410, 2579, 2971, + 2407, 2580, 2971, + 2404, 2581, 2970, + 2399, 2582, 2969, + 2392, 2584, 2968, + 2384, 2587, 2966, + 2372, 2590, 2963, + 2355, 2595, 2960, + 2332, 2601, 2956, + 2300, 2609, 2949, + 2252, 2620, 2941, + 2179, 2633, 2930, + 2059, 2651, 2914, + 1824, 2674, 2892, + 744, 2703, 2862, + 0, 2739, 2817, + 0, 2783, 2749, + 0, 2835, 2639, + 0, 2898, 2431, + 0, 2969, 1756, + 0, 3050, 0, + 0, 3140, 0, + 0, 3238, 0, + 0, 3342, 0, + 0, 3453, 0, + 0, 3568, 0, + 0, 3687, 0, + 2664, 2593, 3020, + 2664, 2593, 3020, + 2663, 2594, 3020, + 2663, 2594, 3020, + 2662, 2594, 3020, + 2661, 2595, 3019, + 2659, 2596, 3019, + 2657, 2597, 3018, + 2654, 2598, 3017, + 2651, 2600, 3016, + 2646, 2603, 3014, + 2639, 2606, 3012, + 2630, 2611, 3009, + 2618, 2617, 3005, + 2601, 2624, 2999, + 2577, 2635, 2992, + 2543, 2648, 2982, + 2493, 2665, 2968, + 2416, 2687, 2949, + 2287, 2715, 2922, + 2025, 2750, 2883, + 0, 2793, 2824, + 0, 2845, 2733, + 0, 2906, 2572, + 0, 2976, 2191, + 0, 3056, 0, + 0, 3145, 0, + 0, 3242, 0, + 0, 3345, 0, + 0, 3455, 0, + 0, 3570, 0, + 0, 3688, 0, + 2867, 2614, 3077, + 2867, 2614, 3077, + 2867, 2615, 3077, + 2866, 2615, 3077, + 2866, 2615, 3076, + 2865, 2616, 3076, + 2864, 2617, 3076, + 2863, 2618, 3075, + 2861, 2619, 3074, + 2859, 2621, 3073, + 2856, 2623, 3072, + 2851, 2627, 3070, + 2846, 2631, 3067, + 2838, 2637, 3063, + 2828, 2644, 3059, + 2813, 2654, 3052, + 2793, 2667, 3043, + 2765, 2683, 3031, + 2724, 2705, 3014, + 2664, 2731, 2991, + 2567, 2765, 2958, + 2395, 2807, 2909, + 1957, 2857, 2835, + 0, 2916, 2711, + 0, 2985, 2465, + 0, 3064, 979, + 0, 3151, 0, + 0, 3247, 0, + 0, 3350, 0, + 0, 3458, 0, + 0, 3572, 0, + 0, 3690, 0, + 3046, 2641, 3143, + 3046, 2641, 3143, + 3046, 2641, 3143, + 3045, 2642, 3143, + 3045, 2642, 3143, + 3044, 2643, 3142, + 3044, 2643, 3142, + 3043, 2644, 3142, + 3042, 2646, 3141, + 3040, 2647, 3140, + 3038, 2650, 3139, + 3035, 2653, 3137, + 3032, 2657, 3135, + 3027, 2662, 3132, + 3020, 2669, 3127, + 3010, 2678, 3122, + 2997, 2691, 3114, + 2980, 2706, 3104, + 2955, 2727, 3090, + 2919, 2752, 3070, + 2867, 2785, 3042, + 2786, 2824, 3002, + 2648, 2873, 2942, + 2356, 2930, 2848, + 0, 2997, 2679, + 0, 3074, 2263, + 0, 3160, 0, + 0, 3254, 0, + 0, 3355, 0, + 0, 3463, 0, + 0, 3576, 0, + 0, 3693, 0, + 3210, 2674, 3219, + 3210, 2674, 3219, + 3210, 2675, 3219, + 3210, 2675, 3219, + 3209, 2675, 3219, + 3209, 2676, 3218, + 3209, 2677, 3218, + 3208, 2677, 3218, + 3207, 2679, 3217, + 3206, 2680, 3216, + 3205, 2682, 3215, + 3203, 2685, 3214, + 3200, 2689, 3212, + 3197, 2694, 3209, + 3192, 2701, 3206, + 3185, 2709, 3201, + 3177, 2721, 3195, + 3165, 2735, 3186, + 3148, 2754, 3174, + 3126, 2779, 3158, + 3093, 2809, 3135, + 3045, 2847, 3103, + 2973, 2893, 3055, + 2853, 2948, 2983, + 2618, 3013, 2865, + 1555, 3087, 2634, + 0, 3171, 1643, + 0, 3263, 0, + 0, 3362, 0, + 0, 3468, 0, + 0, 3580, 0, + 0, 3696, 0, + 3365, 2716, 3304, + 3365, 2716, 3304, + 3364, 2716, 3304, + 3364, 2716, 3304, + 3364, 2716, 3304, + 3364, 2717, 3303, + 3364, 2718, 3303, + 3363, 2718, 3303, + 3363, 2719, 3302, + 3362, 2721, 3302, + 3361, 2723, 3301, + 3359, 2725, 3300, + 3358, 2729, 3298, + 3355, 2734, 3296, + 3352, 2740, 3293, + 3347, 2748, 3289, + 3341, 2758, 3284, + 3333, 2772, 3277, + 3322, 2789, 3267, + 3306, 2812, 3254, + 3285, 2840, 3235, + 3254, 2876, 3210, + 3209, 2919, 3173, + 3142, 2971, 3118, + 3033, 3033, 3033, + 2828, 3104, 2887, + 2176, 3185, 2564, + 0, 3274, 0, + 0, 3372, 0, + 0, 3476, 0, + 0, 3586, 0, + 0, 3701, 0, + 3513, 2765, 3397, + 3513, 2765, 3397, + 3513, 2766, 3397, + 3513, 2766, 3397, + 3513, 2766, 3397, + 3512, 2767, 3397, + 3512, 2767, 3397, + 3512, 2768, 3396, + 3511, 2769, 3396, + 3511, 2770, 3395, + 3510, 2772, 3395, + 3509, 2774, 3394, + 3508, 2777, 3392, + 3506, 2781, 3391, + 3504, 2787, 3388, + 3500, 2794, 3385, + 3496, 2804, 3381, + 3490, 2816, 3375, + 3482, 2832, 3367, + 3471, 2852, 3357, + 3457, 2878, 3342, + 3436, 2911, 3322, + 3406, 2951, 3293, + 3364, 3000, 3252, + 3300, 3058, 3190, + 3198, 3126, 3092, + 3011, 3203, 2914, + 2491, 3289, 2450, + 0, 3384, 0, + 0, 3486, 0, + 0, 3594, 0, + 0, 3707, 0, + 3657, 2824, 3498, + 3657, 2824, 3498, + 3657, 2825, 3498, + 3657, 2825, 3498, + 3656, 2825, 3498, + 3656, 2825, 3498, + 3656, 2826, 3497, + 3656, 2827, 3497, + 3656, 2827, 3497, + 3655, 2829, 3497, + 3655, 2830, 3496, + 3654, 2832, 3495, + 3653, 2835, 3494, + 3652, 2839, 3493, + 3650, 2843, 3491, + 3648, 2850, 3488, + 3645, 2858, 3485, + 3640, 2869, 3480, + 3635, 2883, 3474, + 3627, 2902, 3466, + 3616, 2925, 3454, + 3602, 2955, 3439, + 3582, 2992, 3417, + 3553, 3036, 3386, + 3512, 3090, 3340, + 3451, 3154, 3272, + 3353, 3227, 3160, + 3177, 3309, 2949, + 2723, 3400, 2233, + 0, 3498, 0, + 0, 3604, 0, + 0, 3715, 0, + 3797, 2893, 3605, + 3797, 2893, 3605, + 3797, 2893, 3605, + 3797, 2893, 3605, + 3797, 2894, 3605, + 3797, 2894, 3605, + 3797, 2894, 3605, + 3797, 2895, 3605, + 3797, 2896, 3604, + 3796, 2897, 3604, + 3796, 2898, 3604, + 3795, 2900, 3603, + 3795, 2902, 3602, + 3794, 2905, 3601, + 3792, 2909, 3600, + 3791, 2915, 3598, + 3788, 2922, 3595, + 3785, 2932, 3591, + 3781, 2944, 3587, + 3776, 2960, 3580, + 3768, 2981, 3571, + 3758, 3007, 3559, + 3744, 3040, 3542, + 3724, 3081, 3519, + 3696, 3130, 3486, + 3656, 3188, 3437, + 3596, 3256, 3362, + 3502, 3334, 3238, + 3333, 3420, 2991, + 2918, 3515, 1456, + 0, 3617, 0, + 0, 3725, 0, + 3936, 2971, 3718, + 3936, 2971, 3718, + 3936, 2971, 3718, + 3936, 2971, 3718, + 3936, 2972, 3718, + 3936, 2972, 3717, + 3935, 2972, 3717, + 3935, 2973, 3717, + 3935, 2973, 3717, + 3935, 2974, 3717, + 3935, 2975, 3716, + 3934, 2977, 3716, + 3934, 2979, 3715, + 3933, 2981, 3714, + 3932, 2985, 3713, + 3931, 2990, 3712, + 3929, 2996, 3710, + 3927, 3004, 3707, + 3924, 3015, 3703, + 3920, 3028, 3698, + 3914, 3046, 3691, + 3907, 3069, 3682, + 3897, 3098, 3669, + 3883, 3134, 3652, + 3863, 3178, 3627, + 3836, 3231, 3592, + 3797, 3293, 3540, + 3738, 3365, 3460, + 3646, 3446, 3325, + 3483, 3536, 3042, + 3092, 3634, 0, + 0, 3738, 0, + 4073, 3058, 3835, + 4073, 3058, 3835, + 4072, 3058, 3835, + 4072, 3058, 3835, + 4072, 3059, 3834, + 4072, 3059, 3834, + 4072, 3059, 3834, + 4072, 3059, 3834, + 4072, 3060, 3834, + 4072, 3061, 3834, + 4072, 3062, 3834, + 4071, 3063, 3833, + 4071, 3064, 3833, + 4071, 3067, 3832, + 4070, 3070, 3831, + 4069, 3073, 3830, + 4068, 3079, 3828, + 4066, 3085, 3826, + 4064, 3094, 3823, + 4061, 3106, 3820, + 4057, 3121, 3814, + 4051, 3140, 3807, + 4044, 3165, 3798, + 4034, 3196, 3784, + 4020, 3235, 3766, + 4001, 3282, 3741, + 3974, 3338, 3704, + 3935, 3404, 3650, + 3877, 3479, 3565, + 3787, 3563, 3420, + 3627, 3656, 3103, + 3253, 3756, 0, + 4095, 3153, 3955, + 4095, 3153, 3955, + 4095, 3153, 3955, + 4095, 3154, 3955, + 4095, 3154, 3955, + 4095, 3154, 3955, + 4095, 3154, 3955, + 4095, 3154, 3955, + 4095, 3155, 3955, + 4095, 3155, 3954, + 4095, 3156, 3954, + 4095, 3157, 3954, + 4095, 3159, 3954, + 4095, 3160, 3953, + 4095, 3163, 3952, + 4095, 3166, 3951, + 4095, 3170, 3950, + 4095, 3176, 3949, + 4095, 3183, 3946, + 4095, 3192, 3943, + 4095, 3205, 3940, + 4095, 3221, 3934, + 4095, 3242, 3927, + 4095, 3269, 3917, + 4095, 3302, 3903, + 4095, 3342, 3885, + 4095, 3392, 3858, + 4095, 3451, 3820, + 4072, 3519, 3764, + 4015, 3596, 3676, + 3925, 3683, 3522, + 3768, 3778, 3173, + 4095, 3256, 4078, + 4095, 3256, 4078, + 4095, 3256, 4078, + 4095, 3256, 4078, + 4095, 3256, 4078, + 4095, 3256, 4078, + 4095, 3256, 4078, + 4095, 3257, 4078, + 4095, 3257, 4078, + 4095, 3257, 4078, + 4095, 3258, 4078, + 4095, 3259, 4077, + 4095, 3260, 4077, + 4095, 3261, 4077, + 4095, 3263, 4076, + 4095, 3266, 4075, + 4095, 3269, 4075, + 4095, 3274, 4073, + 4095, 3280, 4072, + 4095, 3287, 4069, + 4095, 3297, 4066, + 4095, 3311, 4062, + 4095, 3328, 4057, + 4095, 3350, 4049, + 4095, 3378, 4039, + 4095, 3413, 4025, + 4095, 3455, 4006, + 4095, 3507, 3979, + 4095, 3567, 3940, + 4095, 3638, 3882, + 4095, 3718, 3791, + 4062, 3806, 3631, + 0, 2656, 2925, + 0, 2657, 2925, + 0, 2657, 2925, + 0, 2657, 2925, + 0, 2658, 2924, + 0, 2658, 2924, + 0, 2659, 2923, + 0, 2660, 2923, + 0, 2661, 2921, + 0, 2663, 2920, + 0, 2665, 2918, + 0, 2668, 2915, + 0, 2672, 2911, + 0, 2677, 2906, + 0, 2684, 2899, + 0, 2693, 2890, + 0, 2705, 2878, + 0, 2720, 2860, + 0, 2739, 2835, + 0, 2764, 2800, + 0, 2796, 2749, + 0, 2835, 2669, + 0, 2882, 2534, + 0, 2939, 2253, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2657, 2926, + 0, 2657, 2926, + 0, 2657, 2925, + 0, 2657, 2925, + 0, 2658, 2925, + 0, 2658, 2924, + 0, 2659, 2924, + 0, 2660, 2923, + 0, 2661, 2922, + 0, 2663, 2920, + 0, 2665, 2918, + 0, 2668, 2915, + 0, 2672, 2912, + 0, 2677, 2907, + 0, 2684, 2900, + 0, 2693, 2890, + 0, 2705, 2878, + 0, 2720, 2860, + 0, 2739, 2836, + 0, 2765, 2801, + 0, 2796, 2749, + 0, 2835, 2669, + 0, 2882, 2535, + 0, 2939, 2254, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2657, 2926, + 0, 2657, 2926, + 0, 2657, 2926, + 0, 2657, 2925, + 0, 2658, 2925, + 0, 2658, 2925, + 0, 2659, 2924, + 0, 2660, 2923, + 0, 2661, 2922, + 0, 2663, 2920, + 0, 2665, 2918, + 0, 2668, 2916, + 0, 2672, 2912, + 0, 2677, 2907, + 0, 2684, 2900, + 0, 2693, 2891, + 0, 2705, 2878, + 0, 2720, 2861, + 0, 2740, 2836, + 0, 2765, 2801, + 0, 2796, 2749, + 0, 2835, 2670, + 0, 2882, 2535, + 0, 2939, 2255, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2657, 2926, + 0, 2657, 2926, + 0, 2657, 2926, + 0, 2657, 2926, + 0, 2658, 2925, + 0, 2658, 2925, + 0, 2659, 2924, + 0, 2660, 2923, + 0, 2661, 2922, + 0, 2663, 2921, + 0, 2665, 2919, + 0, 2668, 2916, + 0, 2672, 2912, + 0, 2677, 2907, + 0, 2684, 2900, + 0, 2693, 2891, + 0, 2705, 2879, + 0, 2720, 2861, + 0, 2740, 2836, + 0, 2765, 2801, + 0, 2796, 2750, + 0, 2835, 2670, + 0, 2882, 2536, + 0, 2939, 2257, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2657, 2927, + 0, 2657, 2927, + 0, 2657, 2927, + 0, 2657, 2926, + 0, 2658, 2926, + 0, 2658, 2925, + 0, 2659, 2925, + 0, 2660, 2924, + 0, 2661, 2923, + 0, 2663, 2921, + 0, 2665, 2919, + 0, 2668, 2917, + 0, 2672, 2913, + 0, 2677, 2908, + 0, 2684, 2901, + 0, 2693, 2892, + 0, 2705, 2879, + 0, 2720, 2862, + 0, 2740, 2837, + 0, 2765, 2802, + 0, 2796, 2751, + 0, 2835, 2671, + 0, 2882, 2537, + 0, 2939, 2259, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2657, 2928, + 0, 2657, 2927, + 0, 2657, 2927, + 0, 2658, 2927, + 0, 2658, 2927, + 0, 2659, 2926, + 0, 2659, 2926, + 0, 2660, 2925, + 0, 2661, 2924, + 0, 2663, 2922, + 0, 2665, 2920, + 0, 2668, 2917, + 0, 2672, 2914, + 0, 2677, 2909, + 0, 2684, 2902, + 0, 2693, 2893, + 0, 2705, 2880, + 0, 2720, 2862, + 0, 2740, 2838, + 0, 2765, 2803, + 0, 2796, 2752, + 0, 2835, 2673, + 0, 2882, 2539, + 0, 2939, 2262, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2657, 2929, + 0, 2657, 2928, + 0, 2658, 2928, + 0, 2658, 2928, + 0, 2658, 2928, + 0, 2659, 2927, + 0, 2660, 2926, + 0, 2660, 2926, + 0, 2662, 2925, + 0, 2663, 2923, + 0, 2666, 2921, + 0, 2669, 2918, + 0, 2672, 2915, + 0, 2678, 2910, + 0, 2684, 2903, + 0, 2693, 2894, + 0, 2705, 2881, + 0, 2720, 2864, + 0, 2740, 2839, + 0, 2765, 2804, + 0, 2796, 2753, + 0, 2835, 2674, + 0, 2883, 2541, + 0, 2939, 2266, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2658, 2930, + 0, 2658, 2930, + 0, 2658, 2929, + 0, 2658, 2929, + 0, 2659, 2929, + 0, 2659, 2928, + 0, 2660, 2928, + 0, 2661, 2927, + 0, 2662, 2926, + 0, 2664, 2924, + 0, 2666, 2922, + 0, 2669, 2919, + 0, 2673, 2916, + 0, 2678, 2911, + 0, 2685, 2904, + 0, 2694, 2895, + 0, 2706, 2882, + 0, 2721, 2865, + 0, 2740, 2841, + 0, 2765, 2806, + 0, 2797, 2755, + 0, 2836, 2676, + 0, 2883, 2544, + 0, 2939, 2271, + 0, 3005, 0, + 0, 3080, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3358, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2658, 2931, + 0, 2658, 2931, + 0, 2658, 2931, + 0, 2659, 2931, + 0, 2659, 2931, + 0, 2660, 2930, + 0, 2660, 2929, + 0, 2661, 2929, + 0, 2662, 2927, + 0, 2664, 2926, + 0, 2666, 2924, + 0, 2669, 2921, + 0, 2673, 2918, + 0, 2678, 2913, + 0, 2685, 2906, + 0, 2694, 2897, + 0, 2706, 2884, + 0, 2721, 2867, + 0, 2741, 2843, + 0, 2766, 2808, + 0, 2797, 2757, + 0, 2836, 2679, + 0, 2883, 2548, + 0, 2939, 2279, + 0, 3005, 0, + 0, 3081, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3359, 0, + 0, 3465, 0, + 0, 3578, 0, + 0, 3694, 0, + 0, 2659, 2934, + 0, 2659, 2934, + 0, 2659, 2933, + 0, 2659, 2933, + 0, 2660, 2933, + 0, 2660, 2932, + 0, 2661, 2932, + 0, 2662, 2931, + 0, 2663, 2930, + 0, 2665, 2928, + 0, 2667, 2926, + 0, 2670, 2924, + 0, 2674, 2920, + 0, 2679, 2915, + 0, 2686, 2908, + 0, 2695, 2899, + 0, 2706, 2887, + 0, 2722, 2870, + 0, 2741, 2845, + 0, 2766, 2811, + 0, 2797, 2761, + 0, 2836, 2683, + 0, 2883, 2553, + 0, 2940, 2288, + 0, 3006, 0, + 0, 3081, 0, + 0, 3165, 0, + 0, 3258, 0, + 0, 3359, 0, + 0, 3466, 0, + 0, 3578, 0, + 0, 3695, 0, + 0, 2659, 2937, + 0, 2659, 2937, + 0, 2660, 2936, + 0, 2660, 2936, + 0, 2660, 2936, + 0, 2661, 2935, + 0, 2662, 2935, + 0, 2663, 2934, + 0, 2664, 2933, + 0, 2665, 2931, + 0, 2668, 2929, + 0, 2671, 2927, + 0, 2674, 2923, + 0, 2680, 2918, + 0, 2686, 2911, + 0, 2695, 2902, + 0, 2707, 2890, + 0, 2722, 2873, + 0, 2742, 2849, + 0, 2767, 2815, + 0, 2798, 2765, + 0, 2837, 2688, + 0, 2884, 2560, + 0, 2940, 2300, + 0, 3006, 0, + 0, 3081, 0, + 0, 3166, 0, + 0, 3258, 0, + 0, 3359, 0, + 0, 3466, 0, + 0, 3578, 0, + 0, 3695, 0, + 0, 2660, 2941, + 0, 2660, 2941, + 0, 2661, 2940, + 0, 2661, 2940, + 0, 2661, 2940, + 0, 2662, 2939, + 0, 2663, 2939, + 0, 2664, 2938, + 0, 2665, 2937, + 0, 2666, 2935, + 0, 2669, 2933, + 0, 2672, 2931, + 0, 2675, 2927, + 0, 2681, 2922, + 0, 2687, 2916, + 0, 2696, 2907, + 0, 2708, 2894, + 0, 2723, 2877, + 0, 2743, 2854, + 0, 2768, 2820, + 0, 2799, 2771, + 0, 2837, 2695, + 0, 2885, 2569, + 0, 2941, 2316, + 0, 3006, 0, + 0, 3082, 0, + 0, 3166, 0, + 0, 3259, 0, + 0, 3359, 0, + 0, 3466, 0, + 0, 3578, 0, + 0, 3695, 0, + 0, 2662, 2946, + 0, 2662, 2946, + 0, 2662, 2946, + 0, 2662, 2945, + 0, 2663, 2945, + 0, 2663, 2945, + 0, 2664, 2944, + 0, 2665, 2943, + 0, 2666, 2942, + 0, 2668, 2941, + 0, 2670, 2939, + 0, 2673, 2936, + 0, 2677, 2932, + 0, 2682, 2928, + 0, 2689, 2921, + 0, 2698, 2912, + 0, 2709, 2900, + 0, 2724, 2883, + 0, 2744, 2860, + 0, 2769, 2827, + 0, 2800, 2778, + 0, 2838, 2704, + 0, 2885, 2581, + 0, 2941, 2336, + 0, 3007, 938, + 0, 3082, 0, + 0, 3166, 0, + 0, 3259, 0, + 0, 3359, 0, + 0, 3466, 0, + 0, 3578, 0, + 0, 3695, 0, + 0, 2663, 2953, + 0, 2664, 2953, + 0, 2664, 2952, + 0, 2664, 2952, + 0, 2665, 2952, + 0, 2665, 2951, + 0, 2666, 2951, + 0, 2667, 2950, + 0, 2668, 2949, + 0, 2670, 2948, + 0, 2672, 2946, + 0, 2675, 2943, + 0, 2679, 2940, + 0, 2684, 2935, + 0, 2690, 2928, + 0, 2699, 2920, + 0, 2711, 2908, + 0, 2726, 2891, + 0, 2745, 2868, + 0, 2770, 2836, + 0, 2801, 2788, + 0, 2840, 2716, + 0, 2886, 2596, + 0, 2942, 2362, + 0, 3008, 1311, + 0, 3083, 0, + 0, 3167, 0, + 0, 3260, 0, + 0, 3360, 0, + 0, 3466, 0, + 0, 3579, 0, + 0, 3695, 0, + 0, 2666, 2962, + 0, 2666, 2962, + 0, 2666, 2962, + 0, 2667, 2961, + 0, 2667, 2961, + 0, 2667, 2961, + 0, 2668, 2960, + 0, 2669, 2959, + 0, 2670, 2958, + 0, 2672, 2957, + 0, 2674, 2955, + 0, 2677, 2952, + 0, 2681, 2949, + 0, 2686, 2944, + 0, 2693, 2938, + 0, 2701, 2929, + 0, 2713, 2918, + 0, 2728, 2902, + 0, 2747, 2879, + 0, 2772, 2848, + 0, 2803, 2801, + 0, 2841, 2731, + 0, 2888, 2616, + 0, 2944, 2395, + 0, 3009, 1565, + 0, 3084, 0, + 0, 3168, 0, + 0, 3260, 0, + 0, 3360, 0, + 0, 3467, 0, + 0, 3579, 0, + 0, 3695, 0, + 0, 2669, 2974, + 0, 2669, 2974, + 0, 2669, 2973, + 0, 2670, 2973, + 0, 2670, 2973, + 0, 2671, 2972, + 0, 2671, 2972, + 0, 2672, 2971, + 0, 2673, 2970, + 0, 2675, 2969, + 0, 2677, 2967, + 0, 2680, 2964, + 0, 2684, 2961, + 0, 2689, 2957, + 0, 2696, 2950, + 0, 2704, 2942, + 0, 2716, 2931, + 0, 2731, 2915, + 0, 2750, 2894, + 0, 2774, 2863, + 0, 2805, 2818, + 0, 2843, 2751, + 0, 2890, 2641, + 0, 2945, 2435, + 0, 3010, 1770, + 0, 3085, 0, + 0, 3169, 0, + 0, 3261, 0, + 0, 3361, 0, + 0, 3467, 0, + 0, 3579, 0, + 0, 3696, 0, + 0, 2673, 2989, + 0, 2673, 2989, + 0, 2674, 2989, + 0, 2674, 2989, + 0, 2674, 2988, + 0, 2675, 2988, + 0, 2676, 2987, + 0, 2676, 2987, + 0, 2678, 2986, + 0, 2679, 2984, + 0, 2681, 2982, + 0, 2684, 2980, + 0, 2688, 2977, + 0, 2693, 2973, + 0, 2700, 2967, + 0, 2708, 2959, + 0, 2720, 2948, + 0, 2735, 2933, + 0, 2754, 2912, + 0, 2778, 2882, + 0, 2808, 2840, + 0, 2846, 2775, + 0, 2893, 2672, + 0, 2948, 2483, + 0, 3013, 1950, + 0, 3087, 0, + 0, 3170, 0, + 0, 3262, 0, + 0, 3362, 0, + 0, 3468, 0, + 0, 3580, 0, + 0, 3696, 0, + 0, 2679, 3009, + 0, 2679, 3009, + 0, 2679, 3009, + 0, 2680, 3008, + 0, 2680, 3008, + 0, 2680, 3008, + 0, 2681, 3007, + 0, 2682, 3007, + 0, 2683, 3006, + 0, 2685, 3004, + 0, 2687, 3003, + 0, 2690, 3000, + 0, 2693, 2997, + 0, 2698, 2993, + 0, 2705, 2987, + 0, 2714, 2980, + 0, 2725, 2969, + 0, 2739, 2955, + 0, 2758, 2935, + 0, 2782, 2907, + 0, 2813, 2867, + 0, 2850, 2807, + 0, 2896, 2711, + 0, 2951, 2541, + 0, 3015, 2115, + 0, 3089, 0, + 0, 3172, 0, + 0, 3264, 0, + 0, 3363, 0, + 0, 3469, 0, + 0, 3581, 0, + 0, 3697, 0, + 1182, 2686, 3034, + 1173, 2686, 3034, + 1160, 2687, 3034, + 1143, 2687, 3034, + 1119, 2687, 3033, + 1084, 2688, 3033, + 1033, 2688, 3033, + 955, 2689, 3032, + 824, 2691, 3031, + 554, 2692, 3030, + 0, 2694, 3028, + 0, 2697, 3026, + 0, 2701, 3023, + 0, 2706, 3019, + 0, 2712, 3014, + 0, 2720, 3007, + 0, 2731, 2997, + 0, 2746, 2983, + 0, 2764, 2965, + 0, 2788, 2939, + 0, 2818, 2901, + 0, 2855, 2846, + 0, 2901, 2759, + 0, 2955, 2608, + 0, 3019, 2271, + 0, 3092, 0, + 0, 3175, 0, + 0, 3266, 0, + 0, 3365, 0, + 0, 3470, 0, + 0, 3582, 0, + 0, 3697, 0, + 2191, 2696, 3066, + 2190, 2696, 3066, + 2189, 2696, 3066, + 2187, 2697, 3065, + 2185, 2697, 3065, + 2182, 2698, 3065, + 2177, 2698, 3064, + 2172, 2699, 3064, + 2164, 2700, 3063, + 2153, 2702, 3062, + 2138, 2704, 3060, + 2117, 2706, 3058, + 2088, 2710, 3055, + 2046, 2715, 3052, + 1983, 2721, 3047, + 1881, 2729, 3040, + 1696, 2740, 3031, + 1189, 2754, 3019, + 0, 2773, 3001, + 0, 2796, 2977, + 0, 2825, 2943, + 0, 2862, 2893, + 0, 2907, 2815, + 0, 2960, 2685, + 0, 3023, 2419, + 0, 3096, 0, + 0, 3178, 0, + 0, 3269, 0, + 0, 3367, 0, + 0, 3472, 0, + 0, 3583, 0, + 0, 3699, 0, + 2548, 2709, 3105, + 2548, 2709, 3105, + 2547, 2709, 3105, + 2546, 2709, 3105, + 2545, 2710, 3104, + 2544, 2710, 3104, + 2542, 2711, 3104, + 2539, 2712, 3103, + 2536, 2713, 3102, + 2531, 2714, 3101, + 2524, 2716, 3100, + 2516, 2719, 3098, + 2504, 2722, 3095, + 2487, 2727, 3092, + 2464, 2733, 3088, + 2432, 2741, 3082, + 2384, 2752, 3073, + 2311, 2766, 3062, + 2191, 2783, 3046, + 1956, 2806, 3025, + 876, 2835, 2994, + 0, 2871, 2949, + 0, 2915, 2881, + 0, 2967, 2771, + 0, 3030, 2564, + 0, 3101, 1888, + 0, 3182, 0, + 0, 3272, 0, + 0, 3370, 0, + 0, 3474, 0, + 0, 3585, 0, + 0, 3700, 0, + 2796, 2725, 3153, + 2796, 2725, 3152, + 2796, 2725, 3152, + 2795, 2726, 3152, + 2795, 2726, 3152, + 2794, 2726, 3152, + 2793, 2727, 3151, + 2791, 2728, 3151, + 2789, 2729, 3150, + 2787, 2730, 3149, + 2783, 2732, 3148, + 2778, 2735, 3146, + 2771, 2738, 3144, + 2762, 2743, 3141, + 2750, 2749, 3137, + 2733, 2756, 3131, + 2709, 2767, 3124, + 2675, 2780, 3114, + 2625, 2797, 3100, + 2548, 2819, 3081, + 2419, 2847, 3054, + 2157, 2882, 3015, + 0, 2925, 2957, + 0, 2977, 2865, + 0, 3038, 2704, + 0, 3108, 2323, + 0, 3188, 0, + 0, 3277, 0, + 0, 3374, 0, + 0, 3478, 0, + 0, 3587, 0, + 0, 3702, 0, + 2999, 2746, 3209, + 2999, 2746, 3209, + 2999, 2746, 3209, + 2999, 2747, 3209, + 2998, 2747, 3209, + 2998, 2747, 3209, + 2997, 2748, 3208, + 2996, 2749, 3208, + 2995, 2750, 3207, + 2993, 2751, 3206, + 2991, 2753, 3205, + 2988, 2755, 3204, + 2984, 2759, 3202, + 2978, 2763, 3199, + 2970, 2769, 3196, + 2960, 2776, 3191, + 2945, 2786, 3184, + 2925, 2799, 3175, + 2897, 2815, 3163, + 2857, 2837, 3147, + 2796, 2864, 3123, + 2699, 2897, 3090, + 2527, 2939, 3041, + 2089, 2989, 2967, + 0, 3048, 2843, + 0, 3118, 2597, + 0, 3196, 1111, + 0, 3283, 0, + 0, 3379, 0, + 0, 3482, 0, + 0, 3590, 0, + 0, 3704, 0, + 3178, 2773, 3276, + 3178, 2773, 3275, + 3178, 2773, 3275, + 3178, 2773, 3275, + 3177, 2774, 3275, + 3177, 2774, 3275, + 3177, 2775, 3275, + 3176, 2775, 3274, + 3175, 2776, 3274, + 3174, 2778, 3273, + 3172, 2779, 3272, + 3170, 2782, 3271, + 3167, 2785, 3269, + 3164, 2789, 3267, + 3159, 2794, 3264, + 3152, 2801, 3260, + 3142, 2811, 3254, + 3130, 2823, 3246, + 3112, 2838, 3236, + 3087, 2859, 3222, + 3051, 2884, 3202, + 2999, 2917, 3174, + 2918, 2956, 3134, + 2780, 3005, 3074, + 2488, 3062, 2980, + 0, 3130, 2811, + 0, 3206, 2395, + 0, 3292, 0, + 0, 3386, 0, + 0, 3487, 0, + 0, 3595, 0, + 0, 3708, 0, + 3342, 2806, 3351, + 3342, 2806, 3351, + 3342, 2807, 3351, + 3342, 2807, 3351, + 3342, 2807, 3351, + 3341, 2807, 3351, + 3341, 2808, 3350, + 3341, 2809, 3350, + 3340, 2810, 3350, + 3339, 2811, 3349, + 3338, 2812, 3348, + 3337, 2814, 3347, + 3335, 2817, 3346, + 3332, 2821, 3344, + 3329, 2826, 3341, + 3324, 2833, 3338, + 3318, 2841, 3333, + 3309, 2853, 3327, + 3297, 2867, 3318, + 3281, 2886, 3306, + 3258, 2911, 3290, + 3225, 2941, 3267, + 3177, 2979, 3235, + 3105, 3025, 3187, + 2985, 3080, 3115, + 2750, 3145, 2997, + 1687, 3219, 2766, + 0, 3303, 1775, + 0, 3395, 0, + 0, 3494, 0, + 0, 3600, 0, + 0, 3712, 0, + 3497, 2847, 3436, + 3497, 2848, 3436, + 3497, 2848, 3436, + 3497, 2848, 3436, + 3496, 2848, 3436, + 3496, 2849, 3436, + 3496, 2849, 3436, + 3496, 2850, 3435, + 3495, 2850, 3435, + 3495, 2852, 3434, + 3494, 2853, 3434, + 3493, 2855, 3433, + 3492, 2858, 3432, + 3490, 2861, 3430, + 3487, 2866, 3428, + 3484, 2872, 3425, + 3479, 2880, 3421, + 3473, 2890, 3416, + 3465, 2904, 3409, + 3454, 2921, 3399, + 3438, 2944, 3386, + 3417, 2972, 3368, + 3386, 3008, 3342, + 3341, 3051, 3305, + 3274, 3103, 3250, + 3165, 3165, 3165, + 2960, 3236, 3019, + 2308, 3317, 2696, + 0, 3406, 0, + 0, 3504, 0, + 0, 3608, 0, + 0, 3718, 0, + 3645, 2897, 3529, + 3645, 2897, 3529, + 3645, 2898, 3529, + 3645, 2898, 3529, + 3645, 2898, 3529, + 3645, 2898, 3529, + 3644, 2899, 3529, + 3644, 2899, 3529, + 3644, 2900, 3528, + 3644, 2901, 3528, + 3643, 2902, 3527, + 3642, 2904, 3527, + 3641, 2906, 3526, + 3640, 2909, 3524, + 3638, 2914, 3523, + 3636, 2919, 3520, + 3633, 2926, 3517, + 3628, 2936, 3513, + 3622, 2948, 3507, + 3614, 2964, 3500, + 3604, 2984, 3489, + 3589, 3011, 3474, + 3568, 3043, 3454, + 3539, 3084, 3426, + 3496, 3132, 3384, + 3432, 3191, 3322, + 3330, 3258, 3224, + 3143, 3335, 3046, + 2623, 3421, 2582, + 0, 3516, 0, + 0, 3618, 0, + 0, 3726, 0, + 3789, 2956, 3630, + 3789, 2956, 3630, + 3789, 2957, 3630, + 3789, 2957, 3630, + 3789, 2957, 3630, + 3789, 2957, 3630, + 3788, 2958, 3630, + 3788, 2958, 3630, + 3788, 2959, 3629, + 3788, 2960, 3629, + 3787, 2961, 3629, + 3787, 2962, 3628, + 3786, 2964, 3627, + 3785, 2967, 3626, + 3784, 2971, 3625, + 3782, 2976, 3623, + 3780, 2982, 3620, + 3777, 2990, 3617, + 3772, 3001, 3613, + 3767, 3015, 3606, + 3759, 3034, 3598, + 3748, 3057, 3587, + 3734, 3087, 3571, + 3714, 3124, 3549, + 3685, 3169, 3518, + 3644, 3222, 3473, + 3583, 3286, 3404, + 3485, 3359, 3292, + 3309, 3441, 3081, + 2855, 3532, 2365, + 0, 3630, 0, + 0, 3736, 0, + 3929, 3025, 3737, + 3929, 3025, 3737, + 3929, 3025, 3737, + 3929, 3025, 3737, + 3929, 3026, 3737, + 3929, 3026, 3737, + 3929, 3026, 3737, + 3929, 3026, 3737, + 3929, 3027, 3737, + 3929, 3028, 3736, + 3928, 3029, 3736, + 3928, 3030, 3736, + 3927, 3032, 3735, + 3927, 3034, 3734, + 3926, 3037, 3733, + 3925, 3042, 3732, + 3923, 3047, 3730, + 3921, 3054, 3727, + 3918, 3064, 3723, + 3913, 3076, 3719, + 3908, 3092, 3712, + 3900, 3113, 3703, + 3890, 3139, 3691, + 3876, 3172, 3674, + 3856, 3213, 3651, + 3828, 3262, 3618, + 3788, 3320, 3569, + 3728, 3388, 3494, + 3634, 3466, 3370, + 3465, 3552, 3123, + 3050, 3647, 1588, + 0, 3749, 0, + 4068, 3103, 3850, + 4068, 3103, 3850, + 4068, 3103, 3850, + 4068, 3103, 3850, + 4068, 3104, 3850, + 4068, 3104, 3850, + 4068, 3104, 3850, + 4068, 3104, 3849, + 4067, 3105, 3849, + 4067, 3105, 3849, + 4067, 3106, 3849, + 4067, 3107, 3849, + 4066, 3109, 3848, + 4066, 3111, 3847, + 4065, 3114, 3847, + 4064, 3117, 3845, + 4063, 3122, 3844, + 4061, 3128, 3842, + 4059, 3136, 3839, + 4056, 3147, 3835, + 4052, 3160, 3830, + 4046, 3178, 3823, + 4039, 3201, 3814, + 4029, 3230, 3801, + 4015, 3266, 3784, + 3995, 3310, 3759, + 3968, 3363, 3724, + 3929, 3425, 3672, + 3870, 3497, 3592, + 3778, 3578, 3457, + 3615, 3668, 3174, + 3224, 3766, 0, + 4095, 3190, 3967, + 4095, 3190, 3967, + 4095, 3190, 3967, + 4095, 3190, 3967, + 4095, 3191, 3967, + 4095, 3191, 3967, + 4095, 3191, 3967, + 4095, 3191, 3966, + 4095, 3192, 3966, + 4095, 3192, 3966, + 4095, 3193, 3966, + 4095, 3194, 3966, + 4095, 3195, 3965, + 4095, 3197, 3965, + 4095, 3199, 3964, + 4095, 3202, 3963, + 4095, 3206, 3962, + 4095, 3211, 3961, + 4095, 3217, 3958, + 4095, 3226, 3956, + 4095, 3238, 3952, + 4095, 3253, 3946, + 4095, 3273, 3939, + 4095, 3297, 3930, + 4095, 3328, 3917, + 4095, 3367, 3898, + 4095, 3414, 3873, + 4095, 3470, 3836, + 4067, 3536, 3782, + 4009, 3611, 3697, + 3919, 3695, 3552, + 3759, 3788, 3235, + 4095, 3285, 4087, + 4095, 3285, 4087, + 4095, 3286, 4087, + 4095, 3286, 4087, + 4095, 3286, 4087, + 4095, 3286, 4087, + 4095, 3286, 4087, + 4095, 3286, 4087, + 4095, 3287, 4087, + 4095, 3287, 4087, + 4095, 3288, 4087, + 4095, 3288, 4086, + 4095, 3289, 4086, + 4095, 3291, 4086, + 4095, 3292, 4085, + 4095, 3295, 4084, + 4095, 3298, 4084, + 4095, 3302, 4082, + 4095, 3308, 4081, + 4095, 3315, 4079, + 4095, 3325, 4076, + 4095, 3337, 4072, + 4095, 3353, 4066, + 4095, 3374, 4059, + 4095, 3401, 4049, + 4095, 3434, 4036, + 4095, 3475, 4017, + 4095, 3524, 3990, + 4095, 3583, 3952, + 4095, 3651, 3896, + 4095, 3729, 3808, + 4057, 3815, 3655, + 0, 2788, 3057, + 0, 2789, 3057, + 0, 2789, 3057, + 0, 2789, 3057, + 0, 2789, 3057, + 0, 2790, 3056, + 0, 2790, 3056, + 0, 2791, 3055, + 0, 2792, 3054, + 0, 2793, 3053, + 0, 2795, 3052, + 0, 2797, 3050, + 0, 2800, 3047, + 0, 2804, 3043, + 0, 2809, 3038, + 0, 2816, 3031, + 0, 2825, 3022, + 0, 2837, 3009, + 0, 2852, 2992, + 0, 2872, 2967, + 0, 2897, 2932, + 0, 2928, 2880, + 0, 2967, 2801, + 0, 3014, 2666, + 0, 3071, 2384, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2788, 3058, + 0, 2789, 3058, + 0, 2789, 3057, + 0, 2789, 3057, + 0, 2789, 3057, + 0, 2790, 3057, + 0, 2790, 3056, + 0, 2791, 3055, + 0, 2792, 3055, + 0, 2793, 3053, + 0, 2795, 3052, + 0, 2797, 3050, + 0, 2800, 3047, + 0, 2804, 3043, + 0, 2809, 3038, + 0, 2816, 3032, + 0, 2825, 3022, + 0, 2837, 3010, + 0, 2852, 2992, + 0, 2872, 2967, + 0, 2897, 2932, + 0, 2928, 2881, + 0, 2967, 2801, + 0, 3014, 2666, + 0, 3071, 2385, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2788, 3058, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2789, 3057, + 0, 2789, 3057, + 0, 2790, 3057, + 0, 2790, 3056, + 0, 2791, 3056, + 0, 2792, 3055, + 0, 2793, 3054, + 0, 2795, 3052, + 0, 2797, 3050, + 0, 2800, 3047, + 0, 2804, 3044, + 0, 2809, 3039, + 0, 2816, 3032, + 0, 2825, 3023, + 0, 2837, 3010, + 0, 2852, 2992, + 0, 2872, 2968, + 0, 2897, 2933, + 0, 2928, 2881, + 0, 2967, 2801, + 0, 3014, 2667, + 0, 3071, 2386, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2789, 3057, + 0, 2790, 3057, + 0, 2790, 3057, + 0, 2791, 3056, + 0, 2792, 3055, + 0, 2793, 3054, + 0, 2795, 3052, + 0, 2797, 3050, + 0, 2800, 3048, + 0, 2804, 3044, + 0, 2809, 3039, + 0, 2816, 3032, + 0, 2825, 3023, + 0, 2837, 3010, + 0, 2852, 2993, + 0, 2872, 2968, + 0, 2897, 2933, + 0, 2928, 2881, + 0, 2967, 2802, + 0, 3014, 2667, + 0, 3071, 2387, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2789, 3059, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2789, 3058, + 0, 2790, 3058, + 0, 2790, 3057, + 0, 2791, 3056, + 0, 2792, 3056, + 0, 2793, 3054, + 0, 2795, 3053, + 0, 2797, 3051, + 0, 2800, 3048, + 0, 2804, 3044, + 0, 2809, 3039, + 0, 2816, 3033, + 0, 2825, 3023, + 0, 2837, 3011, + 0, 2852, 2993, + 0, 2872, 2969, + 0, 2897, 2934, + 0, 2928, 2882, + 0, 2967, 2802, + 0, 3014, 2668, + 0, 3071, 2389, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2789, 3059, + 0, 2789, 3059, + 0, 2789, 3059, + 0, 2789, 3059, + 0, 2790, 3058, + 0, 2790, 3058, + 0, 2791, 3058, + 0, 2791, 3057, + 0, 2792, 3056, + 0, 2793, 3055, + 0, 2795, 3053, + 0, 2797, 3051, + 0, 2800, 3049, + 0, 2804, 3045, + 0, 2809, 3040, + 0, 2816, 3033, + 0, 2825, 3024, + 0, 2837, 3011, + 0, 2852, 2994, + 0, 2872, 2969, + 0, 2897, 2934, + 0, 2928, 2883, + 0, 2967, 2803, + 0, 3014, 2670, + 0, 3071, 2391, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2789, 3060, + 0, 2789, 3060, + 0, 2789, 3060, + 0, 2789, 3059, + 0, 2790, 3059, + 0, 2790, 3059, + 0, 2791, 3058, + 0, 2791, 3058, + 0, 2792, 3057, + 0, 2794, 3056, + 0, 2795, 3054, + 0, 2797, 3052, + 0, 2800, 3049, + 0, 2804, 3046, + 0, 2810, 3041, + 0, 2816, 3034, + 0, 2825, 3025, + 0, 2837, 3012, + 0, 2852, 2995, + 0, 2872, 2970, + 0, 2897, 2935, + 0, 2928, 2884, + 0, 2967, 2805, + 0, 3015, 2671, + 0, 3071, 2394, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3490, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2789, 3061, + 0, 2789, 3061, + 0, 2789, 3061, + 0, 2790, 3060, + 0, 2790, 3060, + 0, 2790, 3060, + 0, 2791, 3059, + 0, 2792, 3059, + 0, 2793, 3058, + 0, 2794, 3057, + 0, 2795, 3055, + 0, 2798, 3053, + 0, 2801, 3050, + 0, 2805, 3047, + 0, 2810, 3042, + 0, 2817, 3035, + 0, 2826, 3026, + 0, 2837, 3013, + 0, 2853, 2996, + 0, 2872, 2971, + 0, 2897, 2936, + 0, 2929, 2885, + 0, 2967, 2806, + 0, 3015, 2673, + 0, 3071, 2398, + 0, 3137, 0, + 0, 3212, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3491, 0, + 0, 3597, 0, + 0, 3710, 0, + 0, 2790, 3062, + 0, 2790, 3062, + 0, 2790, 3062, + 0, 2790, 3062, + 0, 2790, 3061, + 0, 2791, 3061, + 0, 2791, 3060, + 0, 2792, 3060, + 0, 2793, 3059, + 0, 2794, 3058, + 0, 2796, 3056, + 0, 2798, 3054, + 0, 2801, 3052, + 0, 2805, 3048, + 0, 2810, 3043, + 0, 2817, 3036, + 0, 2826, 3027, + 0, 2838, 3014, + 0, 2853, 2997, + 0, 2872, 2973, + 0, 2897, 2938, + 0, 2929, 2887, + 0, 2968, 2809, + 0, 3015, 2676, + 0, 3071, 2404, + 0, 3137, 0, + 0, 3213, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3491, 0, + 0, 3598, 0, + 0, 3710, 0, + 0, 2790, 3064, + 0, 2790, 3064, + 0, 2790, 3063, + 0, 2790, 3063, + 0, 2791, 3063, + 0, 2791, 3063, + 0, 2792, 3062, + 0, 2792, 3062, + 0, 2793, 3061, + 0, 2795, 3060, + 0, 2796, 3058, + 0, 2798, 3056, + 0, 2801, 3053, + 0, 2805, 3050, + 0, 2810, 3045, + 0, 2817, 3038, + 0, 2826, 3029, + 0, 2838, 3016, + 0, 2853, 2999, + 0, 2873, 2975, + 0, 2898, 2940, + 0, 2929, 2890, + 0, 2968, 2811, + 0, 3015, 2680, + 0, 3072, 2411, + 0, 3137, 0, + 0, 3213, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3491, 0, + 0, 3598, 0, + 0, 3710, 0, + 0, 2791, 3066, + 0, 2791, 3066, + 0, 2791, 3066, + 0, 2791, 3065, + 0, 2791, 3065, + 0, 2792, 3065, + 0, 2792, 3064, + 0, 2793, 3064, + 0, 2794, 3063, + 0, 2795, 3062, + 0, 2797, 3060, + 0, 2799, 3058, + 0, 2802, 3056, + 0, 2806, 3052, + 0, 2811, 3047, + 0, 2818, 3040, + 0, 2827, 3031, + 0, 2838, 3019, + 0, 2854, 3002, + 0, 2873, 2978, + 0, 2898, 2943, + 0, 2930, 2893, + 0, 2968, 2815, + 0, 3016, 2685, + 0, 3072, 2420, + 0, 3138, 0, + 0, 3213, 0, + 0, 3297, 0, + 0, 3390, 0, + 0, 3491, 0, + 0, 3598, 0, + 0, 3710, 0, + 0, 2791, 3069, + 0, 2791, 3069, + 0, 2792, 3069, + 0, 2792, 3068, + 0, 2792, 3068, + 0, 2792, 3068, + 0, 2793, 3067, + 0, 2794, 3067, + 0, 2795, 3066, + 0, 2796, 3065, + 0, 2798, 3063, + 0, 2800, 3061, + 0, 2803, 3059, + 0, 2807, 3055, + 0, 2812, 3050, + 0, 2819, 3043, + 0, 2827, 3034, + 0, 2839, 3022, + 0, 2854, 3005, + 0, 2874, 2981, + 0, 2899, 2947, + 0, 2930, 2897, + 0, 2969, 2821, + 0, 3016, 2692, + 0, 3072, 2432, + 0, 3138, 0, + 0, 3213, 0, + 0, 3298, 0, + 0, 3391, 0, + 0, 3491, 0, + 0, 3598, 0, + 0, 3710, 0, + 0, 2792, 3073, + 0, 2792, 3073, + 0, 2793, 3073, + 0, 2793, 3072, + 0, 2793, 3072, + 0, 2793, 3072, + 0, 2794, 3071, + 0, 2795, 3071, + 0, 2796, 3070, + 0, 2797, 3069, + 0, 2799, 3067, + 0, 2801, 3065, + 0, 2804, 3063, + 0, 2808, 3059, + 0, 2813, 3054, + 0, 2819, 3048, + 0, 2828, 3039, + 0, 2840, 3026, + 0, 2855, 3010, + 0, 2875, 2986, + 0, 2900, 2952, + 0, 2931, 2903, + 0, 2970, 2827, + 0, 3017, 2701, + 0, 3073, 2448, + 0, 3138, 0, + 0, 3214, 0, + 0, 3298, 0, + 0, 3391, 0, + 0, 3491, 0, + 0, 3598, 0, + 0, 3710, 0, + 0, 2794, 3078, + 0, 2794, 3078, + 0, 2794, 3078, + 0, 2794, 3078, + 0, 2794, 3077, + 0, 2795, 3077, + 0, 2795, 3077, + 0, 2796, 3076, + 0, 2797, 3075, + 0, 2798, 3074, + 0, 2800, 3073, + 0, 2802, 3071, + 0, 2805, 3068, + 0, 2809, 3064, + 0, 2814, 3060, + 0, 2821, 3053, + 0, 2830, 3044, + 0, 2841, 3032, + 0, 2856, 3016, + 0, 2876, 2992, + 0, 2901, 2959, + 0, 2932, 2911, + 0, 2970, 2836, + 0, 3017, 2713, + 0, 3074, 2468, + 0, 3139, 1070, + 0, 3214, 0, + 0, 3298, 0, + 0, 3391, 0, + 0, 3491, 0, + 0, 3598, 0, + 0, 3710, 0, + 0, 2795, 3085, + 0, 2796, 3085, + 0, 2796, 3085, + 0, 2796, 3085, + 0, 2796, 3084, + 0, 2797, 3084, + 0, 2797, 3084, + 0, 2798, 3083, + 0, 2799, 3082, + 0, 2800, 3081, + 0, 2802, 3080, + 0, 2804, 3078, + 0, 2807, 3075, + 0, 2811, 3072, + 0, 2816, 3067, + 0, 2822, 3060, + 0, 2831, 3052, + 0, 2843, 3040, + 0, 2858, 3023, + 0, 2877, 3001, + 0, 2902, 2968, + 0, 2933, 2920, + 0, 2972, 2848, + 0, 3019, 2728, + 0, 3075, 2494, + 0, 3140, 1443, + 0, 3215, 0, + 0, 3299, 0, + 0, 3392, 0, + 0, 3492, 0, + 0, 3599, 0, + 0, 3711, 0, + 0, 2798, 3094, + 0, 2798, 3094, + 0, 2798, 3094, + 0, 2798, 3094, + 0, 2799, 3093, + 0, 2799, 3093, + 0, 2800, 3093, + 0, 2800, 3092, + 0, 2801, 3091, + 0, 2802, 3090, + 0, 2804, 3089, + 0, 2806, 3087, + 0, 2809, 3084, + 0, 2813, 3081, + 0, 2818, 3076, + 0, 2825, 3070, + 0, 2834, 3062, + 0, 2845, 3050, + 0, 2860, 3034, + 0, 2879, 3011, + 0, 2904, 2980, + 0, 2935, 2933, + 0, 2973, 2863, + 0, 3020, 2748, + 0, 3076, 2527, + 0, 3141, 1697, + 0, 3216, 0, + 0, 3300, 0, + 0, 3392, 0, + 0, 3492, 0, + 0, 3599, 0, + 0, 3711, 0, + 0, 2801, 3106, + 0, 2801, 3106, + 0, 2801, 3106, + 0, 2802, 3106, + 0, 2802, 3105, + 0, 2802, 3105, + 0, 2803, 3105, + 0, 2803, 3104, + 0, 2804, 3103, + 0, 2806, 3102, + 0, 2807, 3101, + 0, 2809, 3099, + 0, 2812, 3096, + 0, 2816, 3093, + 0, 2821, 3089, + 0, 2828, 3083, + 0, 2837, 3074, + 0, 2848, 3063, + 0, 2863, 3047, + 0, 2882, 3026, + 0, 2907, 2995, + 0, 2937, 2950, + 0, 2976, 2883, + 0, 3022, 2773, + 0, 3078, 2567, + 0, 3143, 1902, + 0, 3217, 0, + 0, 3301, 0, + 0, 3393, 0, + 0, 3493, 0, + 0, 3599, 0, + 0, 3711, 0, + 0, 2805, 3121, + 0, 2805, 3121, + 0, 2806, 3121, + 0, 2806, 3121, + 0, 2806, 3121, + 0, 2806, 3120, + 0, 2807, 3120, + 0, 2808, 3119, + 0, 2809, 3119, + 0, 2810, 3118, + 0, 2811, 3116, + 0, 2814, 3115, + 0, 2816, 3112, + 0, 2820, 3109, + 0, 2825, 3105, + 0, 2832, 3099, + 0, 2840, 3091, + 0, 2852, 3080, + 0, 2867, 3065, + 0, 2886, 3044, + 0, 2910, 3014, + 0, 2940, 2972, + 0, 2978, 2908, + 0, 3025, 2805, + 0, 3080, 2615, + 0, 3145, 2083, + 0, 3219, 0, + 0, 3302, 0, + 0, 3394, 0, + 0, 3494, 0, + 0, 3600, 0, + 0, 3712, 0, + 0, 2811, 3141, + 0, 2811, 3141, + 0, 2811, 3141, + 0, 2811, 3141, + 0, 2812, 3141, + 0, 2812, 3140, + 0, 2813, 3140, + 0, 2813, 3139, + 0, 2814, 3139, + 0, 2815, 3138, + 0, 2817, 3136, + 0, 2819, 3135, + 0, 2822, 3132, + 0, 2826, 3129, + 0, 2831, 3125, + 0, 2837, 3120, + 0, 2846, 3112, + 0, 2857, 3101, + 0, 2872, 3087, + 0, 2890, 3067, + 0, 2914, 3039, + 0, 2945, 2999, + 0, 2982, 2939, + 0, 3028, 2843, + 0, 3083, 2673, + 0, 3147, 2248, + 0, 3221, 0, + 0, 3304, 0, + 0, 3396, 0, + 0, 3495, 0, + 0, 3601, 0, + 0, 3713, 0, + 1321, 2818, 3166, + 1314, 2818, 3166, + 1305, 2819, 3166, + 1292, 2819, 3166, + 1275, 2819, 3166, + 1251, 2819, 3165, + 1216, 2820, 3165, + 1165, 2821, 3165, + 1087, 2821, 3164, + 956, 2823, 3163, + 686, 2824, 3162, + 0, 2826, 3160, + 0, 2829, 3158, + 0, 2833, 3155, + 0, 2838, 3151, + 0, 2844, 3146, + 0, 2853, 3139, + 0, 2864, 3129, + 0, 2878, 3115, + 0, 2897, 3097, + 0, 2920, 3071, + 0, 2950, 3033, + 0, 2987, 2978, + 0, 3033, 2891, + 0, 3087, 2740, + 0, 3151, 2403, + 0, 3224, 0, + 0, 3307, 0, + 0, 3398, 0, + 0, 3497, 0, + 0, 3603, 0, + 0, 3714, 0, + 2324, 2828, 3198, + 2323, 2828, 3198, + 2322, 2828, 3198, + 2321, 2828, 3198, + 2319, 2829, 3197, + 2317, 2829, 3197, + 2314, 2830, 3197, + 2309, 2830, 3196, + 2304, 2831, 3196, + 2296, 2832, 3195, + 2285, 2834, 3194, + 2270, 2836, 3192, + 2249, 2839, 3190, + 2220, 2842, 3188, + 2178, 2847, 3184, + 2115, 2853, 3179, + 2013, 2862, 3172, + 1828, 2872, 3163, + 1321, 2887, 3151, + 0, 2905, 3134, + 0, 2928, 3109, + 0, 2957, 3075, + 0, 2994, 3025, + 0, 3039, 2947, + 0, 3092, 2817, + 0, 3156, 2552, + 0, 3228, 0, + 0, 3310, 0, + 0, 3401, 0, + 0, 3499, 0, + 0, 3604, 0, + 0, 3715, 0, + 2680, 2841, 3237, + 2680, 2841, 3237, + 2680, 2841, 3237, + 2679, 2841, 3237, + 2678, 2841, 3237, + 2677, 2842, 3236, + 2676, 2842, 3236, + 2674, 2843, 3236, + 2671, 2844, 3235, + 2668, 2845, 3234, + 2663, 2846, 3233, + 2657, 2848, 3232, + 2648, 2851, 3230, + 2636, 2854, 3228, + 2620, 2859, 3224, + 2597, 2865, 3220, + 2564, 2873, 3214, + 2516, 2884, 3205, + 2444, 2898, 3194, + 2324, 2915, 3178, + 2088, 2938, 3157, + 1008, 2967, 3126, + 0, 3003, 3081, + 0, 3047, 3013, + 0, 3100, 2903, + 0, 3162, 2696, + 0, 3233, 2020, + 0, 3315, 0, + 0, 3404, 0, + 0, 3502, 0, + 0, 3607, 0, + 0, 3717, 0, + 2929, 2857, 3285, + 2929, 2857, 3285, + 2928, 2857, 3285, + 2928, 2858, 3284, + 2927, 2858, 3284, + 2927, 2858, 3284, + 2926, 2859, 3284, + 2925, 2859, 3283, + 2923, 2860, 3283, + 2921, 2861, 3282, + 2919, 2863, 3281, + 2915, 2864, 3280, + 2910, 2867, 3278, + 2903, 2870, 3276, + 2894, 2875, 3273, + 2882, 2881, 3269, + 2865, 2889, 3264, + 2841, 2899, 3256, + 2807, 2912, 3246, + 2757, 2929, 3232, + 2680, 2952, 3213, + 2551, 2980, 3186, + 2289, 3014, 3147, + 0, 3057, 3089, + 0, 3109, 2997, + 0, 3170, 2837, + 0, 3240, 2456, + 0, 3320, 0, + 0, 3409, 0, + 0, 3506, 0, + 0, 3610, 0, + 0, 3719, 0, + 3132, 2878, 3341, + 3132, 2878, 3341, + 3131, 2878, 3341, + 3131, 2879, 3341, + 3131, 2879, 3341, + 3130, 2879, 3341, + 3130, 2880, 3341, + 3129, 2880, 3340, + 3128, 2881, 3340, + 3127, 2882, 3339, + 3125, 2883, 3338, + 3123, 2885, 3337, + 3120, 2888, 3336, + 3116, 2891, 3334, + 3110, 2895, 3331, + 3102, 2901, 3328, + 3092, 2908, 3323, + 3077, 2918, 3316, + 3057, 2931, 3307, + 3029, 2947, 3295, + 2989, 2969, 3279, + 2928, 2996, 3255, + 2832, 3029, 3222, + 2659, 3071, 3173, + 2222, 3121, 3099, + 0, 3181, 2975, + 0, 3250, 2729, + 0, 3328, 1243, + 0, 3415, 0, + 0, 3511, 0, + 0, 3614, 0, + 0, 3723, 0, + 3310, 2905, 3408, + 3310, 2905, 3408, + 3310, 2905, 3408, + 3310, 2905, 3407, + 3310, 2906, 3407, + 3309, 2906, 3407, + 3309, 2906, 3407, + 3309, 2907, 3407, + 3308, 2907, 3406, + 3307, 2908, 3406, + 3306, 2910, 3405, + 3304, 2911, 3404, + 3302, 2914, 3403, + 3300, 2917, 3401, + 3296, 2921, 3399, + 3291, 2926, 3396, + 3284, 2933, 3392, + 3274, 2943, 3386, + 3262, 2955, 3378, + 3244, 2970, 3368, + 3219, 2991, 3354, + 3183, 3016, 3334, + 3131, 3049, 3306, + 3050, 3089, 3266, + 2912, 3137, 3207, + 2620, 3195, 3112, + 0, 3262, 2944, + 0, 3338, 2528, + 0, 3424, 0, + 0, 3518, 0, + 0, 3619, 0, + 0, 3727, 0, + 3474, 2938, 3483, + 3474, 2938, 3483, + 3474, 2939, 3483, + 3474, 2939, 3483, + 3474, 2939, 3483, + 3474, 2939, 3483, + 3474, 2940, 3483, + 3473, 2940, 3483, + 3473, 2941, 3482, + 3472, 2942, 3482, + 3471, 2943, 3481, + 3470, 2944, 3480, + 3469, 2947, 3479, + 3467, 2949, 3478, + 3464, 2953, 3476, + 3461, 2958, 3473, + 3456, 2965, 3470, + 3450, 2973, 3465, + 3441, 2985, 3459, + 3429, 3000, 3450, + 3413, 3019, 3438, + 3390, 3043, 3422, + 3357, 3073, 3399, + 3310, 3111, 3367, + 3237, 3157, 3320, + 3117, 3213, 3248, + 2883, 3277, 3129, + 1820, 3351, 2898, + 0, 3435, 1907, + 0, 3527, 0, + 0, 3626, 0, + 0, 3732, 0, + 3629, 2980, 3568, + 3629, 2980, 3568, + 3629, 2980, 3568, + 3629, 2980, 3568, + 3629, 2980, 3568, + 3629, 2980, 3568, + 3628, 2981, 3568, + 3628, 2981, 3568, + 3628, 2982, 3567, + 3627, 2983, 3567, + 3627, 2984, 3566, + 3626, 2985, 3566, + 3625, 2987, 3565, + 3624, 2990, 3564, + 3622, 2993, 3562, + 3619, 2998, 3560, + 3616, 3004, 3557, + 3612, 3012, 3553, + 3605, 3022, 3548, + 3597, 3036, 3541, + 3586, 3053, 3531, + 3570, 3076, 3518, + 3549, 3104, 3500, + 3518, 3140, 3474, + 3474, 3183, 3437, + 3406, 3235, 3382, + 3297, 3297, 3297, + 3092, 3368, 3151, + 2441, 3449, 2828, + 0, 3538, 0, + 0, 3636, 0, + 0, 3740, 0, + 3777, 3029, 3662, + 3777, 3029, 3662, + 3777, 3030, 3662, + 3777, 3030, 3661, + 3777, 3030, 3661, + 3777, 3030, 3661, + 3777, 3030, 3661, + 3777, 3031, 3661, + 3776, 3031, 3661, + 3776, 3032, 3660, + 3776, 3033, 3660, + 3775, 3034, 3660, + 3774, 3036, 3659, + 3773, 3038, 3658, + 3772, 3042, 3657, + 3770, 3046, 3655, + 3768, 3051, 3652, + 3765, 3058, 3649, + 3760, 3068, 3645, + 3754, 3080, 3639, + 3747, 3096, 3632, + 3736, 3117, 3621, + 3721, 3143, 3606, + 3700, 3175, 3586, + 3671, 3216, 3558, + 3628, 3265, 3516, + 3564, 3323, 3455, + 3462, 3390, 3356, + 3275, 3467, 3178, + 2755, 3554, 2715, + 0, 3648, 0, + 0, 3750, 0, + 3921, 3088, 3762, + 3921, 3088, 3762, + 3921, 3089, 3762, + 3921, 3089, 3762, + 3921, 3089, 3762, + 3921, 3089, 3762, + 3921, 3089, 3762, + 3921, 3090, 3762, + 3920, 3090, 3762, + 3920, 3091, 3761, + 3920, 3092, 3761, + 3919, 3093, 3761, + 3919, 3094, 3760, + 3918, 3096, 3759, + 3917, 3099, 3758, + 3916, 3103, 3757, + 3914, 3108, 3755, + 3912, 3114, 3753, + 3909, 3122, 3749, + 3905, 3133, 3745, + 3899, 3148, 3738, + 3891, 3166, 3730, + 3881, 3189, 3719, + 3866, 3219, 3703, + 3846, 3256, 3681, + 3817, 3301, 3650, + 3776, 3355, 3605, + 3715, 3418, 3536, + 3617, 3491, 3424, + 3441, 3573, 3213, + 2987, 3664, 2497, + 0, 3762, 0, + 4062, 3157, 3869, + 4062, 3157, 3869, + 4062, 3157, 3869, + 4062, 3157, 3869, + 4062, 3157, 3869, + 4061, 3158, 3869, + 4061, 3158, 3869, + 4061, 3158, 3869, + 4061, 3159, 3869, + 4061, 3159, 3869, + 4061, 3160, 3869, + 4060, 3161, 3868, + 4060, 3162, 3868, + 4060, 3164, 3867, + 4059, 3166, 3866, + 4058, 3169, 3865, + 4057, 3174, 3864, + 4055, 3179, 3862, + 4053, 3186, 3859, + 4050, 3196, 3856, + 4045, 3208, 3851, + 4040, 3224, 3844, + 4032, 3245, 3835, + 4022, 3271, 3823, + 4008, 3304, 3806, + 3988, 3345, 3783, + 3960, 3394, 3750, + 3920, 3452, 3701, + 3860, 3520, 3626, + 3766, 3598, 3502, + 3598, 3684, 3255, + 3182, 3779, 1720, + 4095, 3235, 3982, + 4095, 3235, 3982, + 4095, 3235, 3982, + 4095, 3235, 3982, + 4095, 3235, 3982, + 4095, 3236, 3982, + 4095, 3236, 3982, + 4095, 3236, 3982, + 4095, 3236, 3982, + 4095, 3237, 3981, + 4095, 3238, 3981, + 4095, 3238, 3981, + 4095, 3239, 3981, + 4095, 3241, 3980, + 4095, 3243, 3979, + 4095, 3246, 3979, + 4095, 3249, 3978, + 4095, 3254, 3976, + 4095, 3260, 3974, + 4095, 3268, 3971, + 4095, 3279, 3967, + 4095, 3293, 3962, + 4095, 3310, 3956, + 4095, 3333, 3946, + 4095, 3362, 3934, + 4095, 3398, 3916, + 4095, 3442, 3891, + 4095, 3495, 3856, + 4061, 3557, 3804, + 4002, 3629, 3724, + 3910, 3710, 3589, + 3747, 3800, 3306, + 4095, 3322, 4095, + 4095, 3322, 4095, + 4095, 3322, 4095, + 4095, 3322, 4095, + 4095, 3322, 4095, + 4095, 3323, 4095, + 4095, 3323, 4095, + 4095, 3323, 4095, + 4095, 3323, 4095, + 4095, 3324, 4095, + 4095, 3324, 4095, + 4095, 3325, 4095, + 4095, 3326, 4095, + 4095, 3327, 4095, + 4095, 3329, 4095, + 4095, 3331, 4095, + 4095, 3334, 4095, + 4095, 3338, 4094, + 4095, 3343, 4093, + 4095, 3350, 4090, + 4095, 3358, 4088, + 4095, 3370, 4084, + 4095, 3385, 4079, + 4095, 3405, 4071, + 4095, 3429, 4062, + 4095, 3461, 4049, + 4095, 3499, 4030, + 4095, 3546, 4005, + 4095, 3602, 3968, + 4095, 3668, 3914, + 4095, 3743, 3829, + 4051, 3827, 3684, + 0, 2920, 3190, + 0, 2920, 3189, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2922, 3188, + 0, 2922, 3188, + 0, 2923, 3187, + 0, 2924, 3186, + 0, 2925, 3185, + 0, 2927, 3184, + 0, 2929, 3182, + 0, 2932, 3179, + 0, 2936, 3175, + 0, 2941, 3170, + 0, 2948, 3163, + 0, 2957, 3154, + 0, 2969, 3141, + 0, 2984, 3124, + 0, 3004, 3099, + 0, 3029, 3064, + 0, 3060, 3012, + 0, 3099, 2932, + 0, 3146, 2798, + 0, 3203, 2515, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3622, 0, + 0, 3729, 0, + 0, 2920, 3190, + 0, 2920, 3190, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2922, 3189, + 0, 2922, 3188, + 0, 2923, 3187, + 0, 2924, 3187, + 0, 2925, 3185, + 0, 2927, 3184, + 0, 2929, 3182, + 0, 2932, 3179, + 0, 2936, 3175, + 0, 2941, 3170, + 0, 2948, 3163, + 0, 2957, 3154, + 0, 2969, 3142, + 0, 2984, 3124, + 0, 3004, 3099, + 0, 3029, 3064, + 0, 3060, 3013, + 0, 3099, 2933, + 0, 3146, 2798, + 0, 3203, 2516, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3622, 0, + 0, 3729, 0, + 0, 2920, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2921, 3189, + 0, 2922, 3189, + 0, 2922, 3188, + 0, 2923, 3188, + 0, 2924, 3187, + 0, 2925, 3186, + 0, 2927, 3184, + 0, 2929, 3182, + 0, 2932, 3179, + 0, 2936, 3176, + 0, 2941, 3170, + 0, 2948, 3164, + 0, 2957, 3154, + 0, 2969, 3142, + 0, 2984, 3124, + 0, 3004, 3100, + 0, 3029, 3064, + 0, 3060, 3013, + 0, 3099, 2933, + 0, 3146, 2798, + 0, 3203, 2517, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3622, 0, + 0, 3729, 0, + 0, 2920, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3189, + 0, 2922, 3189, + 0, 2922, 3188, + 0, 2923, 3188, + 0, 2924, 3187, + 0, 2925, 3186, + 0, 2927, 3184, + 0, 2929, 3182, + 0, 2932, 3179, + 0, 2936, 3176, + 0, 2941, 3171, + 0, 2948, 3164, + 0, 2957, 3155, + 0, 2969, 3142, + 0, 2984, 3124, + 0, 3004, 3100, + 0, 3029, 3065, + 0, 3060, 3013, + 0, 3099, 2933, + 0, 3146, 2799, + 0, 3203, 2518, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3622, 0, + 0, 3729, 0, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2922, 3189, + 0, 2922, 3189, + 0, 2923, 3188, + 0, 2924, 3187, + 0, 2925, 3186, + 0, 2927, 3185, + 0, 2929, 3183, + 0, 2932, 3180, + 0, 2936, 3176, + 0, 2941, 3171, + 0, 2948, 3164, + 0, 2957, 3155, + 0, 2969, 3142, + 0, 2984, 3125, + 0, 3004, 3100, + 0, 3029, 3065, + 0, 3060, 3014, + 0, 3099, 2934, + 0, 3146, 2799, + 0, 3203, 2519, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3622, 0, + 0, 3729, 0, + 0, 2921, 3191, + 0, 2921, 3191, + 0, 2921, 3191, + 0, 2921, 3190, + 0, 2921, 3190, + 0, 2922, 3190, + 0, 2922, 3190, + 0, 2922, 3189, + 0, 2923, 3188, + 0, 2924, 3188, + 0, 2925, 3187, + 0, 2927, 3185, + 0, 2929, 3183, + 0, 2932, 3180, + 0, 2936, 3176, + 0, 2941, 3171, + 0, 2948, 3165, + 0, 2957, 3155, + 0, 2969, 3143, + 0, 2984, 3125, + 0, 3004, 3101, + 0, 3029, 3066, + 0, 3060, 3014, + 0, 3099, 2935, + 0, 3146, 2800, + 0, 3203, 2521, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3622, 0, + 0, 3729, 0, + 0, 2921, 3191, + 0, 2921, 3191, + 0, 2921, 3191, + 0, 2921, 3191, + 0, 2921, 3191, + 0, 2922, 3190, + 0, 2922, 3190, + 0, 2923, 3190, + 0, 2923, 3189, + 0, 2924, 3188, + 0, 2925, 3187, + 0, 2927, 3186, + 0, 2929, 3183, + 0, 2932, 3181, + 0, 2936, 3177, + 0, 2941, 3172, + 0, 2948, 3165, + 0, 2957, 3156, + 0, 2969, 3143, + 0, 2984, 3126, + 0, 3004, 3101, + 0, 3029, 3066, + 0, 3060, 3015, + 0, 3099, 2936, + 0, 3147, 2802, + 0, 3203, 2523, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3623, 0, + 0, 3729, 0, + 0, 2921, 3192, + 0, 2921, 3192, + 0, 2921, 3192, + 0, 2921, 3192, + 0, 2922, 3191, + 0, 2922, 3191, + 0, 2922, 3191, + 0, 2923, 3190, + 0, 2923, 3190, + 0, 2924, 3189, + 0, 2926, 3188, + 0, 2927, 3186, + 0, 2930, 3184, + 0, 2933, 3181, + 0, 2936, 3178, + 0, 2942, 3173, + 0, 2948, 3166, + 0, 2957, 3157, + 0, 2969, 3144, + 0, 2984, 3127, + 0, 3004, 3102, + 0, 3029, 3067, + 0, 3061, 3016, + 0, 3099, 2937, + 0, 3147, 2803, + 0, 3203, 2526, + 0, 3269, 0, + 0, 3344, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2921, 3193, + 0, 2921, 3193, + 0, 2921, 3193, + 0, 2922, 3193, + 0, 2922, 3192, + 0, 2922, 3192, + 0, 2922, 3192, + 0, 2923, 3191, + 0, 2924, 3191, + 0, 2925, 3190, + 0, 2926, 3189, + 0, 2928, 3187, + 0, 2930, 3185, + 0, 2933, 3182, + 0, 2937, 3179, + 0, 2942, 3174, + 0, 2949, 3167, + 0, 2958, 3158, + 0, 2969, 3145, + 0, 2985, 3128, + 0, 3004, 3103, + 0, 3029, 3069, + 0, 3061, 3017, + 0, 3100, 2938, + 0, 3147, 2806, + 0, 3203, 2530, + 0, 3269, 0, + 0, 3345, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2922, 3194, + 0, 2922, 3194, + 0, 2922, 3194, + 0, 2922, 3194, + 0, 2922, 3194, + 0, 2922, 3193, + 0, 2923, 3193, + 0, 2923, 3193, + 0, 2924, 3192, + 0, 2925, 3191, + 0, 2926, 3190, + 0, 2928, 3188, + 0, 2930, 3186, + 0, 2933, 3184, + 0, 2937, 3180, + 0, 2942, 3175, + 0, 2949, 3168, + 0, 2958, 3159, + 0, 2970, 3147, + 0, 2985, 3129, + 0, 3005, 3105, + 0, 3030, 3070, + 0, 3061, 3019, + 0, 3100, 2941, + 0, 3147, 2808, + 0, 3203, 2536, + 0, 3269, 0, + 0, 3345, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2922, 3196, + 0, 2922, 3196, + 0, 2922, 3196, + 0, 2922, 3196, + 0, 2923, 3195, + 0, 2923, 3195, + 0, 2923, 3195, + 0, 2924, 3194, + 0, 2924, 3194, + 0, 2925, 3193, + 0, 2927, 3192, + 0, 2928, 3190, + 0, 2931, 3188, + 0, 2933, 3185, + 0, 2937, 3182, + 0, 2943, 3177, + 0, 2949, 3170, + 0, 2958, 3161, + 0, 2970, 3148, + 0, 2985, 3131, + 0, 3005, 3107, + 0, 3030, 3072, + 0, 3061, 3022, + 0, 3100, 2944, + 0, 3147, 2812, + 0, 3204, 2543, + 0, 3269, 0, + 0, 3345, 0, + 0, 3429, 0, + 0, 3522, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2923, 3198, + 0, 2923, 3198, + 0, 2923, 3198, + 0, 2923, 3198, + 0, 2923, 3198, + 0, 2923, 3197, + 0, 2924, 3197, + 0, 2924, 3197, + 0, 2925, 3196, + 0, 2926, 3195, + 0, 2927, 3194, + 0, 2929, 3192, + 0, 2931, 3190, + 0, 2934, 3188, + 0, 2938, 3184, + 0, 2943, 3179, + 0, 2950, 3172, + 0, 2959, 3163, + 0, 2971, 3151, + 0, 2986, 3134, + 0, 3005, 3110, + 0, 3030, 3075, + 0, 3062, 3025, + 0, 3100, 2947, + 0, 3148, 2818, + 0, 3204, 2552, + 0, 3270, 0, + 0, 3345, 0, + 0, 3430, 0, + 0, 3522, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2923, 3201, + 0, 2923, 3201, + 0, 2924, 3201, + 0, 2924, 3201, + 0, 2924, 3201, + 0, 2924, 3200, + 0, 2925, 3200, + 0, 2925, 3200, + 0, 2926, 3199, + 0, 2927, 3198, + 0, 2928, 3197, + 0, 2930, 3195, + 0, 2932, 3193, + 0, 2935, 3191, + 0, 2939, 3187, + 0, 2944, 3182, + 0, 2951, 3176, + 0, 2960, 3167, + 0, 2971, 3154, + 0, 2986, 3137, + 0, 3006, 3113, + 0, 3031, 3079, + 0, 3062, 3029, + 0, 3101, 2953, + 0, 3148, 2824, + 0, 3204, 2564, + 0, 3270, 0, + 0, 3345, 0, + 0, 3430, 0, + 0, 3523, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2924, 3205, + 0, 2924, 3205, + 0, 2925, 3205, + 0, 2925, 3205, + 0, 2925, 3205, + 0, 2925, 3204, + 0, 2926, 3204, + 0, 2926, 3203, + 0, 2927, 3203, + 0, 2928, 3202, + 0, 2929, 3201, + 0, 2931, 3199, + 0, 2933, 3197, + 0, 2936, 3195, + 0, 2940, 3191, + 0, 2945, 3186, + 0, 2952, 3180, + 0, 2961, 3171, + 0, 2972, 3159, + 0, 2987, 3142, + 0, 3007, 3118, + 0, 3032, 3084, + 0, 3063, 3035, + 0, 3102, 2959, + 0, 3149, 2833, + 0, 3205, 2580, + 0, 3271, 0, + 0, 3346, 0, + 0, 3430, 0, + 0, 3523, 0, + 0, 3623, 0, + 0, 3730, 0, + 0, 2926, 3210, + 0, 2926, 3210, + 0, 2926, 3210, + 0, 2926, 3210, + 0, 2926, 3210, + 0, 2927, 3210, + 0, 2927, 3209, + 0, 2927, 3209, + 0, 2928, 3208, + 0, 2929, 3207, + 0, 2930, 3206, + 0, 2932, 3205, + 0, 2934, 3203, + 0, 2937, 3200, + 0, 2941, 3197, + 0, 2946, 3192, + 0, 2953, 3185, + 0, 2962, 3176, + 0, 2973, 3164, + 0, 2989, 3148, + 0, 3008, 3124, + 0, 3033, 3091, + 0, 3064, 3043, + 0, 3103, 2968, + 0, 3150, 2845, + 0, 3206, 2601, + 0, 3271, 1202, + 0, 3346, 0, + 0, 3431, 0, + 0, 3523, 0, + 0, 3624, 0, + 0, 3730, 0, + 0, 2927, 3217, + 0, 2928, 3217, + 0, 2928, 3217, + 0, 2928, 3217, + 0, 2928, 3217, + 0, 2928, 3216, + 0, 2929, 3216, + 0, 2929, 3216, + 0, 2930, 3215, + 0, 2931, 3214, + 0, 2932, 3213, + 0, 2934, 3212, + 0, 2936, 3210, + 0, 2939, 3207, + 0, 2943, 3204, + 0, 2948, 3199, + 0, 2955, 3193, + 0, 2963, 3184, + 0, 2975, 3172, + 0, 2990, 3156, + 0, 3010, 3133, + 0, 3034, 3100, + 0, 3065, 3053, + 0, 3104, 2980, + 0, 3151, 2860, + 0, 3207, 2626, + 0, 3272, 1575, + 0, 3347, 0, + 0, 3431, 0, + 0, 3524, 0, + 0, 3624, 0, + 0, 3731, 0, + 0, 2930, 3226, + 0, 2930, 3226, + 0, 2930, 3226, + 0, 2930, 3226, + 0, 2930, 3226, + 0, 2931, 3226, + 0, 2931, 3225, + 0, 2932, 3225, + 0, 2932, 3224, + 0, 2933, 3223, + 0, 2934, 3222, + 0, 2936, 3221, + 0, 2938, 3219, + 0, 2941, 3216, + 0, 2945, 3213, + 0, 2950, 3208, + 0, 2957, 3202, + 0, 2966, 3194, + 0, 2977, 3182, + 0, 2992, 3166, + 0, 3012, 3144, + 0, 3036, 3112, + 0, 3067, 3066, + 0, 3105, 2995, + 0, 3152, 2880, + 0, 3208, 2659, + 0, 3273, 1829, + 0, 3348, 0, + 0, 3432, 0, + 0, 3524, 0, + 0, 3624, 0, + 0, 3731, 0, + 0, 2933, 3238, + 0, 2933, 3238, + 0, 2933, 3238, + 0, 2933, 3238, + 0, 2934, 3238, + 0, 2934, 3237, + 0, 2934, 3237, + 0, 2935, 3237, + 0, 2936, 3236, + 0, 2936, 3235, + 0, 2938, 3234, + 0, 2939, 3233, + 0, 2941, 3231, + 0, 2944, 3229, + 0, 2948, 3225, + 0, 2953, 3221, + 0, 2960, 3215, + 0, 2969, 3206, + 0, 2980, 3195, + 0, 2995, 3179, + 0, 3014, 3158, + 0, 3039, 3127, + 0, 3069, 3082, + 0, 3108, 3015, + 0, 3154, 2905, + 0, 3210, 2699, + 0, 3275, 2034, + 0, 3349, 0, + 0, 3433, 0, + 0, 3525, 0, + 0, 3625, 0, + 0, 3732, 0, + 0, 2937, 3254, + 0, 2937, 3253, + 0, 2938, 3253, + 0, 2938, 3253, + 0, 2938, 3253, + 0, 2938, 3253, + 0, 2939, 3252, + 0, 2939, 3252, + 0, 2940, 3252, + 0, 2941, 3251, + 0, 2942, 3250, + 0, 2943, 3248, + 0, 2946, 3247, + 0, 2948, 3244, + 0, 2952, 3241, + 0, 2957, 3237, + 0, 2964, 3231, + 0, 2973, 3223, + 0, 2984, 3212, + 0, 2999, 3197, + 0, 3018, 3176, + 0, 3042, 3147, + 0, 3073, 3104, + 0, 3110, 3040, + 0, 3157, 2937, + 0, 3212, 2747, + 0, 3277, 2215, + 0, 3351, 0, + 0, 3434, 0, + 0, 3526, 0, + 0, 3626, 0, + 0, 3732, 0, + 0, 2943, 3273, + 0, 2943, 3273, + 0, 2943, 3273, + 0, 2943, 3273, + 0, 2944, 3273, + 0, 2944, 3273, + 0, 2944, 3272, + 0, 2945, 3272, + 0, 2945, 3271, + 0, 2946, 3271, + 0, 2947, 3270, + 0, 2949, 3268, + 0, 2951, 3267, + 0, 2954, 3264, + 0, 2958, 3261, + 0, 2963, 3257, + 0, 2969, 3252, + 0, 2978, 3244, + 0, 2989, 3234, + 0, 3004, 3219, + 0, 3022, 3199, + 0, 3046, 3171, + 0, 3077, 3131, + 0, 3114, 3071, + 0, 3160, 2976, + 0, 3215, 2805, + 0, 3279, 2380, + 0, 3353, 0, + 0, 3436, 0, + 0, 3528, 0, + 0, 3627, 0, + 0, 3733, 0, + 1458, 2950, 3298, + 1453, 2950, 3298, + 1446, 2951, 3298, + 1437, 2951, 3298, + 1424, 2951, 3298, + 1407, 2951, 3298, + 1383, 2952, 3298, + 1348, 2952, 3297, + 1297, 2953, 3297, + 1219, 2954, 3296, + 1088, 2955, 3295, + 818, 2956, 3294, + 0, 2958, 3292, + 0, 2961, 3290, + 0, 2965, 3287, + 0, 2970, 3283, + 0, 2976, 3278, + 0, 2985, 3271, + 0, 2996, 3261, + 0, 3010, 3248, + 0, 3029, 3229, + 0, 3052, 3203, + 0, 3082, 3165, + 0, 3119, 3110, + 0, 3165, 3023, + 0, 3219, 2873, + 0, 3283, 2535, + 0, 3356, 0, + 0, 3439, 0, + 0, 3530, 0, + 0, 3629, 0, + 0, 3735, 0, + 2457, 2960, 3330, + 2456, 2960, 3330, + 2456, 2960, 3330, + 2455, 2960, 3330, + 2453, 2961, 3330, + 2451, 2961, 3330, + 2449, 2961, 3329, + 2446, 2962, 3329, + 2442, 2962, 3328, + 2436, 2963, 3328, + 2428, 2964, 3327, + 2417, 2966, 3326, + 2402, 2968, 3324, + 2382, 2971, 3322, + 2352, 2974, 3320, + 2310, 2979, 3316, + 2247, 2985, 3311, + 2145, 2994, 3304, + 1960, 3004, 3295, + 1453, 3019, 3283, + 0, 3037, 3266, + 0, 3060, 3242, + 0, 3090, 3207, + 0, 3126, 3157, + 0, 3171, 3079, + 0, 3225, 2949, + 0, 3288, 2684, + 0, 3360, 0, + 0, 3442, 0, + 0, 3533, 0, + 0, 3631, 0, + 0, 3736, 0, + 2813, 2973, 3369, + 2813, 2973, 3369, + 2812, 2973, 3369, + 2812, 2973, 3369, + 2811, 2973, 3369, + 2810, 2974, 3369, + 2809, 2974, 3369, + 2808, 2974, 3368, + 2806, 2975, 3368, + 2803, 2976, 3367, + 2800, 2977, 3366, + 2795, 2978, 3365, + 2789, 2980, 3364, + 2780, 2983, 3362, + 2768, 2987, 3360, + 2752, 2991, 3356, + 2729, 2997, 3352, + 2696, 3005, 3346, + 2648, 3016, 3337, + 2576, 3030, 3326, + 2456, 3048, 3310, + 2220, 3070, 3289, + 1140, 3099, 3258, + 0, 3135, 3213, + 0, 3179, 3145, + 0, 3232, 3035, + 0, 3294, 2828, + 0, 3366, 2152, + 0, 3447, 0, + 0, 3536, 0, + 0, 3634, 0, + 0, 3739, 0, + 3061, 2989, 3417, + 3061, 2989, 3417, + 3061, 2989, 3417, + 3060, 2989, 3417, + 3060, 2990, 3417, + 3060, 2990, 3416, + 3059, 2990, 3416, + 3058, 2991, 3416, + 3057, 2991, 3415, + 3055, 2992, 3415, + 3053, 2993, 3414, + 3051, 2995, 3413, + 3047, 2997, 3412, + 3042, 2999, 3410, + 3036, 3002, 3408, + 3027, 3007, 3405, + 3014, 3013, 3401, + 2997, 3021, 3396, + 2973, 3031, 3388, + 2939, 3044, 3378, + 2889, 3062, 3364, + 2812, 3084, 3345, + 2683, 3112, 3318, + 2421, 3147, 3279, + 0, 3189, 3221, + 0, 3241, 3129, + 0, 3302, 2969, + 0, 3373, 2588, + 0, 3452, 0, + 0, 3541, 0, + 0, 3638, 0, + 0, 3742, 0, + 3264, 3010, 3474, + 3264, 3010, 3474, + 3264, 3010, 3473, + 3263, 3010, 3473, + 3263, 3011, 3473, + 3263, 3011, 3473, + 3263, 3011, 3473, + 3262, 3012, 3473, + 3261, 3012, 3472, + 3260, 3013, 3472, + 3259, 3014, 3471, + 3257, 3015, 3470, + 3255, 3017, 3469, + 3252, 3020, 3468, + 3248, 3023, 3466, + 3242, 3027, 3463, + 3234, 3033, 3460, + 3224, 3040, 3455, + 3210, 3050, 3448, + 3190, 3063, 3440, + 3161, 3080, 3427, + 3121, 3101, 3411, + 3060, 3128, 3387, + 2964, 3162, 3354, + 2791, 3203, 3305, + 2354, 3253, 3231, + 0, 3313, 3107, + 0, 3382, 2861, + 0, 3460, 1375, + 0, 3548, 0, + 0, 3643, 0, + 0, 3746, 0, + 3442, 3037, 3540, + 3442, 3037, 3540, + 3442, 3037, 3540, + 3442, 3037, 3540, + 3442, 3037, 3540, + 3442, 3038, 3539, + 3442, 3038, 3539, + 3441, 3038, 3539, + 3441, 3039, 3539, + 3440, 3040, 3538, + 3439, 3041, 3538, + 3438, 3042, 3537, + 3437, 3044, 3536, + 3434, 3046, 3535, + 3432, 3049, 3533, + 3428, 3053, 3531, + 3423, 3058, 3528, + 3416, 3065, 3524, + 3407, 3075, 3518, + 3394, 3087, 3511, + 3376, 3103, 3500, + 3351, 3123, 3486, + 3315, 3149, 3466, + 3263, 3181, 3438, + 3182, 3221, 3398, + 3044, 3269, 3339, + 2752, 3327, 3244, + 0, 3394, 3076, + 0, 3470, 2660, + 0, 3556, 0, + 0, 3650, 0, + 0, 3751, 0, + 3606, 3070, 3616, + 3606, 3070, 3616, + 3606, 3071, 3616, + 3606, 3071, 3615, + 3606, 3071, 3615, + 3606, 3071, 3615, + 3606, 3071, 3615, + 3606, 3072, 3615, + 3605, 3072, 3615, + 3605, 3073, 3614, + 3604, 3074, 3614, + 3603, 3075, 3613, + 3602, 3077, 3613, + 3601, 3079, 3611, + 3599, 3082, 3610, + 3596, 3085, 3608, + 3593, 3090, 3605, + 3588, 3097, 3602, + 3582, 3106, 3597, + 3573, 3117, 3591, + 3561, 3132, 3582, + 3545, 3151, 3570, + 3522, 3175, 3554, + 3489, 3205, 3531, + 3442, 3243, 3499, + 3369, 3289, 3452, + 3249, 3345, 3380, + 3015, 3409, 3261, + 1952, 3483, 3030, + 0, 3567, 2039, + 0, 3659, 0, + 0, 3758, 0, + 3761, 3112, 3700, + 3761, 3112, 3700, + 3761, 3112, 3700, + 3761, 3112, 3700, + 3761, 3112, 3700, + 3761, 3112, 3700, + 3761, 3112, 3700, + 3760, 3113, 3700, + 3760, 3113, 3700, + 3760, 3114, 3699, + 3759, 3115, 3699, + 3759, 3116, 3699, + 3758, 3117, 3698, + 3757, 3119, 3697, + 3756, 3122, 3696, + 3754, 3125, 3694, + 3751, 3130, 3692, + 3748, 3136, 3689, + 3744, 3144, 3685, + 3738, 3154, 3680, + 3729, 3168, 3673, + 3718, 3185, 3663, + 3702, 3208, 3650, + 3681, 3236, 3632, + 3650, 3272, 3606, + 3606, 3315, 3569, + 3538, 3368, 3514, + 3429, 3429, 3429, + 3224, 3501, 3283, + 2573, 3581, 2960, + 0, 3671, 0, + 0, 3768, 0, + 3909, 3161, 3794, + 3909, 3161, 3794, + 3909, 3162, 3794, + 3909, 3162, 3794, + 3909, 3162, 3794, + 3909, 3162, 3794, + 3909, 3162, 3793, + 3909, 3162, 3793, + 3909, 3163, 3793, + 3908, 3163, 3793, + 3908, 3164, 3793, + 3908, 3165, 3792, + 3907, 3166, 3792, + 3906, 3168, 3791, + 3905, 3171, 3790, + 3904, 3174, 3789, + 3902, 3178, 3787, + 3900, 3183, 3785, + 3897, 3190, 3781, + 3892, 3200, 3777, + 3887, 3212, 3771, + 3879, 3228, 3764, + 3868, 3249, 3753, + 3853, 3275, 3739, + 3832, 3307, 3718, + 3803, 3348, 3690, + 3760, 3397, 3648, + 3696, 3455, 3587, + 3594, 3522, 3488, + 3407, 3599, 3311, + 2887, 3686, 2847, + 0, 3780, 0, + 4053, 3220, 3894, + 4053, 3221, 3894, + 4053, 3221, 3894, + 4053, 3221, 3894, + 4053, 3221, 3894, + 4053, 3221, 3894, + 4053, 3221, 3894, + 4053, 3221, 3894, + 4053, 3222, 3894, + 4052, 3222, 3894, + 4052, 3223, 3894, + 4052, 3224, 3893, + 4052, 3225, 3893, + 4051, 3226, 3892, + 4050, 3229, 3891, + 4049, 3231, 3890, + 4048, 3235, 3889, + 4046, 3240, 3887, + 4044, 3246, 3885, + 4041, 3254, 3881, + 4037, 3265, 3877, + 4031, 3280, 3871, + 4023, 3298, 3862, + 4013, 3321, 3851, + 3998, 3351, 3835, + 3978, 3388, 3813, + 3950, 3433, 3782, + 3908, 3487, 3737, + 3847, 3550, 3668, + 3749, 3623, 3557, + 3573, 3705, 3345, + 3119, 3796, 2630, + 4095, 3289, 4002, + 4095, 3289, 4002, + 4095, 3289, 4002, + 4095, 3289, 4002, + 4095, 3289, 4001, + 4095, 3290, 4001, + 4095, 3290, 4001, + 4095, 3290, 4001, + 4095, 3290, 4001, + 4095, 3291, 4001, + 4095, 3291, 4001, + 4095, 3292, 4001, + 4095, 3293, 4000, + 4095, 3294, 4000, + 4095, 3296, 3999, + 4095, 3298, 3998, + 4095, 3302, 3997, + 4095, 3306, 3996, + 4095, 3311, 3994, + 4095, 3318, 3991, + 4095, 3328, 3988, + 4095, 3340, 3983, + 4095, 3357, 3976, + 4095, 3377, 3967, + 4095, 3403, 3955, + 4095, 3436, 3939, + 4095, 3477, 3915, + 4092, 3526, 3882, + 4052, 3585, 3833, + 3993, 3653, 3758, + 3898, 3730, 3634, + 3730, 3816, 3387, + 4095, 3367, 4095, + 4095, 3367, 4095, + 4095, 3367, 4095, + 4095, 3367, 4095, + 4095, 3367, 4095, + 4095, 3368, 4095, + 4095, 3368, 4095, + 4095, 3368, 4095, + 4095, 3368, 4095, + 4095, 3369, 4095, + 4095, 3369, 4095, + 4095, 3370, 4095, + 4095, 3370, 4095, + 4095, 3372, 4095, + 4095, 3373, 4095, + 4095, 3375, 4095, + 4095, 3378, 4095, + 4095, 3381, 4095, + 4095, 3386, 4095, + 4095, 3392, 4095, + 4095, 3400, 4095, + 4095, 3411, 4095, + 4095, 3425, 4094, + 4095, 3442, 4088, + 4095, 3465, 4078, + 4095, 3494, 4066, + 4095, 3530, 4048, + 4095, 3574, 4023, + 4095, 3627, 3988, + 4095, 3689, 3936, + 4095, 3761, 3857, + 4042, 3842, 3721, + 0, 3052, 3322, + 0, 3052, 3322, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3054, 3320, + 0, 3054, 3320, + 0, 3055, 3319, + 0, 3056, 3318, + 0, 3057, 3317, + 0, 3059, 3316, + 0, 3061, 3314, + 0, 3064, 3311, + 0, 3068, 3307, + 0, 3073, 3302, + 0, 3080, 3295, + 0, 3089, 3286, + 0, 3101, 3273, + 0, 3116, 3256, + 0, 3136, 3231, + 0, 3161, 3196, + 0, 3192, 3144, + 0, 3231, 3064, + 0, 3278, 2929, + 0, 3335, 2647, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3052, 3322, + 0, 3052, 3322, + 0, 3053, 3322, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3054, 3320, + 0, 3054, 3320, + 0, 3055, 3319, + 0, 3056, 3319, + 0, 3057, 3317, + 0, 3059, 3316, + 0, 3061, 3314, + 0, 3064, 3311, + 0, 3068, 3307, + 0, 3073, 3302, + 0, 3080, 3295, + 0, 3089, 3286, + 0, 3101, 3273, + 0, 3116, 3256, + 0, 3136, 3231, + 0, 3161, 3196, + 0, 3192, 3144, + 0, 3231, 3065, + 0, 3278, 2930, + 0, 3335, 2648, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3052, 3322, + 0, 3052, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3054, 3321, + 0, 3054, 3320, + 0, 3055, 3319, + 0, 3056, 3319, + 0, 3057, 3318, + 0, 3059, 3316, + 0, 3061, 3314, + 0, 3064, 3311, + 0, 3068, 3307, + 0, 3073, 3302, + 0, 3080, 3296, + 0, 3089, 3286, + 0, 3101, 3274, + 0, 3116, 3256, + 0, 3136, 3231, + 0, 3161, 3196, + 0, 3192, 3145, + 0, 3231, 3065, + 0, 3278, 2930, + 0, 3335, 2648, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3052, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3321, + 0, 3053, 3321, + 0, 3054, 3321, + 0, 3054, 3320, + 0, 3055, 3320, + 0, 3056, 3319, + 0, 3057, 3318, + 0, 3059, 3316, + 0, 3061, 3314, + 0, 3064, 3311, + 0, 3068, 3308, + 0, 3073, 3303, + 0, 3080, 3296, + 0, 3089, 3286, + 0, 3101, 3274, + 0, 3116, 3256, + 0, 3136, 3232, + 0, 3161, 3197, + 0, 3192, 3145, + 0, 3231, 3065, + 0, 3278, 2930, + 0, 3335, 2649, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3321, + 0, 3054, 3321, + 0, 3054, 3321, + 0, 3055, 3320, + 0, 3056, 3319, + 0, 3057, 3318, + 0, 3059, 3316, + 0, 3061, 3314, + 0, 3064, 3312, + 0, 3068, 3308, + 0, 3073, 3303, + 0, 3080, 3296, + 0, 3089, 3287, + 0, 3101, 3274, + 0, 3116, 3256, + 0, 3136, 3232, + 0, 3161, 3197, + 0, 3192, 3145, + 0, 3231, 3065, + 0, 3278, 2931, + 0, 3335, 2650, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3053, 3323, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3053, 3322, + 0, 3054, 3322, + 0, 3054, 3321, + 0, 3054, 3321, + 0, 3055, 3320, + 0, 3056, 3319, + 0, 3057, 3318, + 0, 3059, 3317, + 0, 3061, 3315, + 0, 3064, 3312, + 0, 3068, 3308, + 0, 3073, 3303, + 0, 3080, 3296, + 0, 3089, 3287, + 0, 3101, 3274, + 0, 3116, 3257, + 0, 3136, 3232, + 0, 3161, 3197, + 0, 3192, 3146, + 0, 3231, 3066, + 0, 3279, 2932, + 0, 3335, 2651, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3322, + 0, 3054, 3322, + 0, 3054, 3322, + 0, 3055, 3321, + 0, 3055, 3321, + 0, 3056, 3320, + 0, 3057, 3319, + 0, 3059, 3317, + 0, 3061, 3315, + 0, 3064, 3312, + 0, 3068, 3309, + 0, 3073, 3304, + 0, 3080, 3297, + 0, 3089, 3287, + 0, 3101, 3275, + 0, 3116, 3257, + 0, 3136, 3233, + 0, 3161, 3198, + 0, 3192, 3146, + 0, 3231, 3067, + 0, 3279, 2932, + 0, 3335, 2653, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3053, 3323, + 0, 3054, 3323, + 0, 3054, 3322, + 0, 3055, 3322, + 0, 3055, 3321, + 0, 3056, 3320, + 0, 3058, 3319, + 0, 3059, 3318, + 0, 3061, 3316, + 0, 3064, 3313, + 0, 3068, 3309, + 0, 3074, 3304, + 0, 3080, 3297, + 0, 3089, 3288, + 0, 3101, 3275, + 0, 3116, 3258, + 0, 3136, 3233, + 0, 3161, 3198, + 0, 3192, 3147, + 0, 3231, 3068, + 0, 3279, 2934, + 0, 3335, 2655, + 0, 3401, 0, + 0, 3476, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3053, 3324, + 0, 3053, 3324, + 0, 3053, 3324, + 0, 3053, 3324, + 0, 3053, 3324, + 0, 3054, 3324, + 0, 3054, 3323, + 0, 3054, 3323, + 0, 3055, 3322, + 0, 3056, 3322, + 0, 3057, 3321, + 0, 3058, 3320, + 0, 3059, 3318, + 0, 3062, 3316, + 0, 3065, 3314, + 0, 3069, 3310, + 0, 3074, 3305, + 0, 3081, 3298, + 0, 3090, 3289, + 0, 3101, 3276, + 0, 3117, 3259, + 0, 3136, 3234, + 0, 3161, 3199, + 0, 3193, 3148, + 0, 3231, 3069, + 0, 3279, 2935, + 0, 3335, 2658, + 0, 3401, 0, + 0, 3477, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3053, 3325, + 0, 3053, 3325, + 0, 3053, 3325, + 0, 3054, 3325, + 0, 3054, 3325, + 0, 3054, 3325, + 0, 3054, 3324, + 0, 3055, 3324, + 0, 3055, 3323, + 0, 3056, 3323, + 0, 3057, 3322, + 0, 3058, 3321, + 0, 3060, 3319, + 0, 3062, 3317, + 0, 3065, 3314, + 0, 3069, 3311, + 0, 3074, 3306, + 0, 3081, 3299, + 0, 3090, 3290, + 0, 3102, 3277, + 0, 3117, 3260, + 0, 3136, 3235, + 0, 3161, 3201, + 0, 3193, 3149, + 0, 3232, 3071, + 0, 3279, 2938, + 0, 3335, 2662, + 0, 3401, 0, + 0, 3477, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3054, 3326, + 0, 3054, 3326, + 0, 3054, 3326, + 0, 3054, 3326, + 0, 3054, 3326, + 0, 3054, 3326, + 0, 3055, 3326, + 0, 3055, 3325, + 0, 3055, 3325, + 0, 3056, 3324, + 0, 3057, 3323, + 0, 3058, 3322, + 0, 3060, 3321, + 0, 3062, 3319, + 0, 3065, 3316, + 0, 3069, 3312, + 0, 3074, 3307, + 0, 3081, 3300, + 0, 3090, 3291, + 0, 3102, 3279, + 0, 3117, 3261, + 0, 3137, 3237, + 0, 3162, 3202, + 0, 3193, 3151, + 0, 3232, 3073, + 0, 3279, 2941, + 0, 3335, 2668, + 0, 3401, 0, + 0, 3477, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3054, 3328, + 0, 3054, 3328, + 0, 3054, 3328, + 0, 3054, 3328, + 0, 3054, 3328, + 0, 3055, 3327, + 0, 3055, 3327, + 0, 3055, 3327, + 0, 3056, 3326, + 0, 3057, 3326, + 0, 3057, 3325, + 0, 3059, 3324, + 0, 3060, 3322, + 0, 3063, 3320, + 0, 3066, 3318, + 0, 3069, 3314, + 0, 3075, 3309, + 0, 3081, 3302, + 0, 3090, 3293, + 0, 3102, 3281, + 0, 3117, 3263, + 0, 3137, 3239, + 0, 3162, 3204, + 0, 3193, 3154, + 0, 3232, 3076, + 0, 3279, 2944, + 0, 3336, 2675, + 0, 3402, 0, + 0, 3477, 0, + 0, 3561, 0, + 0, 3654, 0, + 0, 3755, 0, + 0, 3055, 3330, + 0, 3055, 3330, + 0, 3055, 3330, + 0, 3055, 3330, + 0, 3055, 3330, + 0, 3055, 3330, + 0, 3056, 3329, + 0, 3056, 3329, + 0, 3056, 3329, + 0, 3057, 3328, + 0, 3058, 3327, + 0, 3059, 3326, + 0, 3061, 3325, + 0, 3063, 3323, + 0, 3066, 3320, + 0, 3070, 3316, + 0, 3075, 3311, + 0, 3082, 3305, + 0, 3091, 3295, + 0, 3103, 3283, + 0, 3118, 3266, + 0, 3137, 3242, + 0, 3162, 3207, + 0, 3194, 3157, + 0, 3233, 3080, + 0, 3280, 2950, + 0, 3336, 2684, + 0, 3402, 0, + 0, 3477, 0, + 0, 3562, 0, + 0, 3655, 0, + 0, 3755, 0, + 0, 3055, 3333, + 0, 3055, 3333, + 0, 3055, 3333, + 0, 3056, 3333, + 0, 3056, 3333, + 0, 3056, 3333, + 0, 3056, 3332, + 0, 3057, 3332, + 0, 3057, 3332, + 0, 3058, 3331, + 0, 3059, 3330, + 0, 3060, 3329, + 0, 3062, 3328, + 0, 3064, 3326, + 0, 3067, 3323, + 0, 3071, 3319, + 0, 3076, 3314, + 0, 3083, 3308, + 0, 3092, 3299, + 0, 3103, 3286, + 0, 3119, 3269, + 0, 3138, 3245, + 0, 3163, 3211, + 0, 3194, 3161, + 0, 3233, 3085, + 0, 3280, 2957, + 0, 3336, 2696, + 0, 3402, 0, + 0, 3477, 0, + 0, 3562, 0, + 0, 3655, 0, + 0, 3755, 0, + 0, 3056, 3337, + 0, 3056, 3337, + 0, 3056, 3337, + 0, 3057, 3337, + 0, 3057, 3337, + 0, 3057, 3337, + 0, 3057, 3336, + 0, 3058, 3336, + 0, 3058, 3336, + 0, 3059, 3335, + 0, 3060, 3334, + 0, 3061, 3333, + 0, 3063, 3332, + 0, 3065, 3330, + 0, 3068, 3327, + 0, 3072, 3323, + 0, 3077, 3318, + 0, 3084, 3312, + 0, 3093, 3303, + 0, 3104, 3291, + 0, 3119, 3274, + 0, 3139, 3250, + 0, 3164, 3216, + 0, 3195, 3167, + 0, 3234, 3092, + 0, 3281, 2966, + 0, 3337, 2712, + 0, 3403, 0, + 0, 3478, 0, + 0, 3562, 0, + 0, 3655, 0, + 0, 3755, 0, + 0, 3058, 3342, + 0, 3058, 3342, + 0, 3058, 3342, + 0, 3058, 3342, + 0, 3058, 3342, + 0, 3058, 3342, + 0, 3059, 3342, + 0, 3059, 3341, + 0, 3060, 3341, + 0, 3060, 3340, + 0, 3061, 3339, + 0, 3062, 3338, + 0, 3064, 3337, + 0, 3066, 3335, + 0, 3069, 3332, + 0, 3073, 3329, + 0, 3078, 3324, + 0, 3085, 3317, + 0, 3094, 3309, + 0, 3106, 3296, + 0, 3121, 3280, + 0, 3140, 3256, + 0, 3165, 3223, + 0, 3196, 3175, + 0, 3235, 3100, + 0, 3282, 2977, + 0, 3338, 2733, + 0, 3403, 1334, + 0, 3478, 0, + 0, 3563, 0, + 0, 3655, 0, + 0, 3756, 0, + 0, 3059, 3349, + 0, 3060, 3349, + 0, 3060, 3349, + 0, 3060, 3349, + 0, 3060, 3349, + 0, 3060, 3349, + 0, 3060, 3349, + 0, 3061, 3348, + 0, 3061, 3348, + 0, 3062, 3347, + 0, 3063, 3346, + 0, 3064, 3345, + 0, 3066, 3344, + 0, 3068, 3342, + 0, 3071, 3339, + 0, 3075, 3336, + 0, 3080, 3331, + 0, 3087, 3325, + 0, 3096, 3316, + 0, 3107, 3304, + 0, 3122, 3288, + 0, 3142, 3265, + 0, 3166, 3232, + 0, 3197, 3185, + 0, 3236, 3112, + 0, 3283, 2993, + 0, 3339, 2758, + 0, 3404, 1707, + 0, 3479, 0, + 0, 3563, 0, + 0, 3656, 0, + 0, 3756, 0, + 0, 3062, 3358, + 0, 3062, 3358, + 0, 3062, 3358, + 0, 3062, 3358, + 0, 3062, 3358, + 0, 3063, 3358, + 0, 3063, 3358, + 0, 3063, 3357, + 0, 3064, 3357, + 0, 3064, 3356, + 0, 3065, 3355, + 0, 3067, 3354, + 0, 3068, 3353, + 0, 3070, 3351, + 0, 3073, 3349, + 0, 3077, 3345, + 0, 3082, 3341, + 0, 3089, 3334, + 0, 3098, 3326, + 0, 3109, 3314, + 0, 3124, 3298, + 0, 3144, 3276, + 0, 3168, 3244, + 0, 3199, 3198, + 0, 3238, 3127, + 0, 3284, 3012, + 0, 3340, 2791, + 0, 3405, 1961, + 0, 3480, 0, + 0, 3564, 0, + 0, 3657, 0, + 0, 3757, 0, + 0, 3065, 3370, + 0, 3065, 3370, + 0, 3065, 3370, + 0, 3065, 3370, + 0, 3066, 3370, + 0, 3066, 3370, + 0, 3066, 3369, + 0, 3066, 3369, + 0, 3067, 3369, + 0, 3068, 3368, + 0, 3069, 3367, + 0, 3070, 3366, + 0, 3071, 3365, + 0, 3074, 3363, + 0, 3076, 3361, + 0, 3080, 3357, + 0, 3085, 3353, + 0, 3092, 3347, + 0, 3101, 3338, + 0, 3112, 3327, + 0, 3127, 3312, + 0, 3146, 3290, + 0, 3171, 3259, + 0, 3202, 3214, + 0, 3240, 3147, + 0, 3286, 3037, + 0, 3342, 2831, + 0, 3407, 2166, + 0, 3481, 0, + 0, 3565, 0, + 0, 3657, 0, + 0, 3757, 0, + 0, 3069, 3386, + 0, 3069, 3386, + 0, 3070, 3386, + 0, 3070, 3385, + 0, 3070, 3385, + 0, 3070, 3385, + 0, 3070, 3385, + 0, 3071, 3385, + 0, 3071, 3384, + 0, 3072, 3384, + 0, 3073, 3383, + 0, 3074, 3382, + 0, 3076, 3381, + 0, 3078, 3379, + 0, 3081, 3376, + 0, 3084, 3373, + 0, 3089, 3369, + 0, 3096, 3363, + 0, 3105, 3355, + 0, 3116, 3344, + 0, 3131, 3329, + 0, 3150, 3308, + 0, 3174, 3279, + 0, 3205, 3236, + 0, 3243, 3172, + 0, 3289, 3069, + 0, 3344, 2880, + 0, 3409, 2347, + 0, 3483, 0, + 0, 3567, 0, + 0, 3659, 0, + 0, 3758, 0, + 0, 3075, 3405, + 0, 3075, 3405, + 0, 3075, 3405, + 0, 3075, 3405, + 0, 3075, 3405, + 0, 3076, 3405, + 0, 3076, 3405, + 0, 3076, 3404, + 0, 3077, 3404, + 0, 3077, 3404, + 0, 3078, 3403, + 0, 3080, 3402, + 0, 3081, 3401, + 0, 3083, 3399, + 0, 3086, 3397, + 0, 3090, 3393, + 0, 3095, 3389, + 0, 3101, 3384, + 0, 3110, 3376, + 0, 3121, 3366, + 0, 3136, 3351, + 0, 3155, 3332, + 0, 3179, 3304, + 0, 3209, 3263, + 0, 3246, 3203, + 0, 3292, 3108, + 0, 3347, 2937, + 0, 3411, 2512, + 0, 3485, 0, + 0, 3568, 0, + 0, 3660, 0, + 0, 3759, 0, + 1593, 3082, 3431, + 1590, 3082, 3431, + 1585, 3083, 3431, + 1578, 3083, 3430, + 1569, 3083, 3430, + 1556, 3083, 3430, + 1539, 3083, 3430, + 1515, 3084, 3430, + 1480, 3084, 3429, + 1429, 3085, 3429, + 1351, 3086, 3428, + 1220, 3087, 3427, + 950, 3088, 3426, + 0, 3090, 3424, + 0, 3093, 3422, + 0, 3097, 3419, + 0, 3102, 3415, + 0, 3108, 3410, + 0, 3117, 3403, + 0, 3128, 3393, + 0, 3142, 3380, + 0, 3161, 3361, + 0, 3184, 3335, + 0, 3214, 3297, + 0, 3252, 3242, + 0, 3297, 3155, + 0, 3351, 3005, + 0, 3415, 2667, + 0, 3488, 0, + 0, 3571, 0, + 0, 3662, 0, + 0, 3761, 0, + 2589, 3092, 3462, + 2589, 3092, 3462, + 2588, 3092, 3462, + 2588, 3092, 3462, + 2587, 3092, 3462, + 2585, 3093, 3462, + 2584, 3093, 3462, + 2581, 3093, 3461, + 2578, 3094, 3461, + 2574, 3094, 3461, + 2568, 3095, 3460, + 2560, 3096, 3459, + 2549, 3098, 3458, + 2534, 3100, 3456, + 2514, 3103, 3454, + 2484, 3106, 3452, + 2442, 3111, 3448, + 2379, 3117, 3443, + 2277, 3126, 3436, + 2092, 3137, 3427, + 1586, 3151, 3415, + 0, 3169, 3398, + 0, 3192, 3374, + 0, 3222, 3339, + 0, 3258, 3289, + 0, 3303, 3211, + 0, 3357, 3081, + 0, 3420, 2816, + 0, 3492, 0, + 0, 3574, 0, + 0, 3665, 0, + 0, 3763, 0, + 2945, 3105, 3501, + 2945, 3105, 3501, + 2945, 3105, 3501, + 2944, 3105, 3501, + 2944, 3105, 3501, + 2943, 3105, 3501, + 2942, 3106, 3501, + 2941, 3106, 3501, + 2940, 3106, 3500, + 2938, 3107, 3500, + 2935, 3108, 3499, + 2932, 3109, 3499, + 2927, 3110, 3497, + 2921, 3112, 3496, + 2912, 3115, 3494, + 2900, 3119, 3492, + 2884, 3123, 3488, + 2861, 3129, 3484, + 2828, 3137, 3478, + 2780, 3148, 3470, + 2708, 3162, 3458, + 2588, 3180, 3443, + 2352, 3202, 3421, + 1272, 3231, 3390, + 0, 3267, 3345, + 0, 3311, 3277, + 0, 3364, 3167, + 0, 3426, 2960, + 0, 3498, 2284, + 0, 3579, 0, + 0, 3669, 0, + 0, 3766, 0, + 3193, 3121, 3549, + 3193, 3121, 3549, + 3193, 3121, 3549, + 3193, 3121, 3549, + 3192, 3122, 3549, + 3192, 3122, 3549, + 3192, 3122, 3548, + 3191, 3122, 3548, + 3190, 3123, 3548, + 3189, 3123, 3548, + 3188, 3124, 3547, + 3186, 3125, 3546, + 3183, 3127, 3545, + 3179, 3129, 3544, + 3174, 3131, 3543, + 3168, 3135, 3540, + 3159, 3139, 3537, + 3146, 3145, 3533, + 3129, 3153, 3528, + 3105, 3163, 3520, + 3071, 3176, 3510, + 3021, 3194, 3496, + 2944, 3216, 3477, + 2815, 3244, 3450, + 2553, 3279, 3411, + 0, 3321, 3353, + 0, 3373, 3261, + 0, 3434, 3101, + 0, 3505, 2720, + 0, 3585, 0, + 0, 3673, 0, + 0, 3770, 0, + 3396, 3142, 3606, + 3396, 3142, 3606, + 3396, 3142, 3606, + 3396, 3142, 3606, + 3396, 3143, 3605, + 3395, 3143, 3605, + 3395, 3143, 3605, + 3395, 3143, 3605, + 3394, 3144, 3605, + 3393, 3144, 3604, + 3392, 3145, 3604, + 3391, 3146, 3603, + 3389, 3148, 3603, + 3387, 3149, 3601, + 3384, 3152, 3600, + 3380, 3155, 3598, + 3374, 3159, 3595, + 3367, 3165, 3592, + 3356, 3172, 3587, + 3342, 3182, 3581, + 3322, 3195, 3572, + 3294, 3212, 3560, + 3253, 3233, 3543, + 3192, 3260, 3519, + 3096, 3294, 3486, + 2923, 3335, 3437, + 2486, 3385, 3363, + 0, 3445, 3239, + 0, 3514, 2993, + 0, 3592, 1507, + 0, 3680, 0, + 0, 3775, 0, + 3575, 3169, 3672, + 3575, 3169, 3672, + 3574, 3169, 3672, + 3574, 3169, 3672, + 3574, 3169, 3672, + 3574, 3169, 3672, + 3574, 3170, 3672, + 3574, 3170, 3671, + 3573, 3170, 3671, + 3573, 3171, 3671, + 3572, 3172, 3670, + 3571, 3173, 3670, + 3570, 3174, 3669, + 3569, 3176, 3668, + 3567, 3178, 3667, + 3564, 3181, 3665, + 3560, 3185, 3663, + 3555, 3190, 3660, + 3548, 3198, 3656, + 3539, 3207, 3650, + 3526, 3219, 3643, + 3508, 3235, 3632, + 3483, 3255, 3618, + 3448, 3281, 3598, + 3395, 3313, 3571, + 3314, 3353, 3531, + 3176, 3401, 3471, + 2884, 3459, 3376, + 0, 3526, 3208, + 0, 3602, 2792, + 0, 3688, 0, + 0, 3782, 0, + 3739, 3202, 3748, + 3739, 3202, 3748, + 3739, 3203, 3748, + 3738, 3203, 3748, + 3738, 3203, 3748, + 3738, 3203, 3747, + 3738, 3203, 3747, + 3738, 3203, 3747, + 3738, 3204, 3747, + 3737, 3204, 3747, + 3737, 3205, 3746, + 3736, 3206, 3746, + 3736, 3207, 3745, + 3734, 3209, 3745, + 3733, 3211, 3744, + 3731, 3214, 3742, + 3728, 3217, 3740, + 3725, 3222, 3738, + 3720, 3229, 3734, + 3714, 3238, 3729, + 3705, 3249, 3723, + 3693, 3264, 3714, + 3677, 3283, 3703, + 3654, 3307, 3686, + 3621, 3338, 3663, + 3574, 3375, 3631, + 3501, 3422, 3584, + 3381, 3477, 3512, + 3147, 3541, 3393, + 2084, 3616, 3162, + 0, 3699, 2171, + 0, 3791, 0, + 3893, 3244, 3833, + 3893, 3244, 3833, + 3893, 3244, 3833, + 3893, 3244, 3832, + 3893, 3244, 3832, + 3893, 3244, 3832, + 3893, 3244, 3832, + 3893, 3244, 3832, + 3893, 3245, 3832, + 3892, 3245, 3832, + 3892, 3246, 3832, + 3892, 3247, 3831, + 3891, 3248, 3831, + 3890, 3249, 3830, + 3889, 3251, 3829, + 3888, 3254, 3828, + 3886, 3257, 3826, + 3884, 3262, 3824, + 3880, 3268, 3821, + 3876, 3276, 3817, + 3870, 3286, 3812, + 3861, 3300, 3805, + 3850, 3318, 3795, + 3835, 3340, 3782, + 3813, 3368, 3764, + 3782, 3404, 3738, + 3738, 3447, 3701, + 3670, 3500, 3646, + 3561, 3561, 3561, + 3357, 3633, 3415, + 2705, 3713, 3092, + 0, 3803, 0, + 4041, 3293, 3926, + 4041, 3293, 3926, + 4041, 3294, 3926, + 4041, 3294, 3926, + 4041, 3294, 3926, + 4041, 3294, 3926, + 4041, 3294, 3926, + 4041, 3294, 3926, + 4041, 3295, 3925, + 4041, 3295, 3925, + 4041, 3296, 3925, + 4040, 3296, 3925, + 4040, 3297, 3924, + 4039, 3299, 3924, + 4039, 3300, 3923, + 4038, 3303, 3922, + 4036, 3306, 3921, + 4034, 3310, 3919, + 4032, 3315, 3917, + 4029, 3322, 3914, + 4025, 3332, 3909, + 4019, 3344, 3904, + 4011, 3360, 3896, + 4000, 3381, 3885, + 3985, 3407, 3871, + 3964, 3440, 3850, + 3935, 3480, 3822, + 3892, 3529, 3781, + 3829, 3587, 3719, + 3726, 3654, 3620, + 3539, 3732, 3443, + 3019, 3818, 2979, + 4095, 3353, 4027, + 4095, 3353, 4027, + 4095, 3353, 4027, + 4095, 3353, 4027, + 4095, 3353, 4026, + 4095, 3353, 4026, + 4095, 3353, 4026, + 4095, 3353, 4026, + 4095, 3354, 4026, + 4095, 3354, 4026, + 4095, 3354, 4026, + 4095, 3355, 4026, + 4095, 3356, 4025, + 4095, 3357, 4025, + 4095, 3359, 4024, + 4095, 3361, 4024, + 4095, 3363, 4023, + 4095, 3367, 4021, + 4095, 3372, 4019, + 4095, 3378, 4017, + 4095, 3387, 4013, + 4095, 3397, 4009, + 4095, 3412, 4003, + 4095, 3430, 3994, + 4095, 3454, 3983, + 4095, 3483, 3967, + 4095, 3520, 3945, + 4082, 3565, 3914, + 4041, 3619, 3869, + 3979, 3682, 3800, + 3881, 3755, 3689, + 3706, 3837, 3477, + 4095, 3421, 4095, + 4095, 3421, 4095, + 4095, 3421, 4095, + 4095, 3421, 4095, + 4095, 3421, 4095, + 4095, 3421, 4095, + 4095, 3422, 4095, + 4095, 3422, 4095, + 4095, 3422, 4095, + 4095, 3422, 4095, + 4095, 3423, 4095, + 4095, 3423, 4095, + 4095, 3424, 4095, + 4095, 3425, 4095, + 4095, 3426, 4095, + 4095, 3428, 4095, + 4095, 3431, 4095, + 4095, 3434, 4095, + 4095, 3438, 4095, + 4095, 3443, 4095, + 4095, 3451, 4095, + 4095, 3460, 4095, + 4095, 3473, 4095, + 4095, 3489, 4095, + 4095, 3509, 4095, + 4095, 3536, 4087, + 4095, 3568, 4071, + 4095, 3609, 4047, + 4095, 3658, 4014, + 4095, 3717, 3965, + 4095, 3785, 3891, + 4030, 3862, 3767, + 0, 3184, 3454, + 0, 3184, 3454, + 0, 3185, 3454, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3186, 3452, + 0, 3186, 3452, + 0, 3187, 3451, + 0, 3188, 3450, + 0, 3189, 3449, + 0, 3191, 3448, + 0, 3193, 3446, + 0, 3196, 3443, + 0, 3200, 3439, + 0, 3205, 3434, + 0, 3212, 3427, + 0, 3221, 3418, + 0, 3233, 3405, + 0, 3248, 3388, + 0, 3268, 3363, + 0, 3293, 3328, + 0, 3324, 3276, + 0, 3363, 3196, + 0, 3410, 3061, + 0, 3467, 2779, + 0, 3533, 0, + 0, 3608, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3184, 3454, + 0, 3184, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3186, 3452, + 0, 3186, 3452, + 0, 3187, 3451, + 0, 3188, 3451, + 0, 3189, 3449, + 0, 3191, 3448, + 0, 3193, 3446, + 0, 3196, 3443, + 0, 3200, 3439, + 0, 3205, 3434, + 0, 3212, 3427, + 0, 3221, 3418, + 0, 3233, 3405, + 0, 3248, 3388, + 0, 3268, 3363, + 0, 3293, 3328, + 0, 3324, 3276, + 0, 3363, 3196, + 0, 3410, 3061, + 0, 3467, 2779, + 0, 3533, 0, + 0, 3608, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3184, 3454, + 0, 3184, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3186, 3453, + 0, 3186, 3452, + 0, 3187, 3451, + 0, 3188, 3451, + 0, 3189, 3449, + 0, 3191, 3448, + 0, 3193, 3446, + 0, 3196, 3443, + 0, 3200, 3439, + 0, 3205, 3434, + 0, 3212, 3428, + 0, 3221, 3418, + 0, 3233, 3406, + 0, 3248, 3388, + 0, 3268, 3363, + 0, 3293, 3328, + 0, 3324, 3277, + 0, 3363, 3197, + 0, 3411, 3062, + 0, 3467, 2780, + 0, 3533, 0, + 0, 3608, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3184, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3453, + 0, 3185, 3453, + 0, 3186, 3453, + 0, 3186, 3452, + 0, 3187, 3452, + 0, 3188, 3451, + 0, 3189, 3450, + 0, 3191, 3448, + 0, 3193, 3446, + 0, 3196, 3443, + 0, 3200, 3440, + 0, 3205, 3434, + 0, 3212, 3428, + 0, 3221, 3418, + 0, 3233, 3406, + 0, 3248, 3388, + 0, 3268, 3364, + 0, 3293, 3328, + 0, 3324, 3277, + 0, 3363, 3197, + 0, 3411, 3062, + 0, 3467, 2780, + 0, 3533, 0, + 0, 3608, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3184, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3453, + 0, 3186, 3453, + 0, 3186, 3453, + 0, 3186, 3452, + 0, 3187, 3452, + 0, 3188, 3451, + 0, 3189, 3450, + 0, 3191, 3448, + 0, 3193, 3446, + 0, 3196, 3443, + 0, 3200, 3440, + 0, 3205, 3435, + 0, 3212, 3428, + 0, 3221, 3419, + 0, 3233, 3406, + 0, 3248, 3388, + 0, 3268, 3364, + 0, 3293, 3329, + 0, 3324, 3277, + 0, 3363, 3197, + 0, 3411, 3062, + 0, 3467, 2781, + 0, 3533, 0, + 0, 3608, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3186, 3453, + 0, 3186, 3453, + 0, 3186, 3453, + 0, 3187, 3452, + 0, 3188, 3451, + 0, 3189, 3450, + 0, 3191, 3448, + 0, 3193, 3446, + 0, 3196, 3444, + 0, 3200, 3440, + 0, 3205, 3435, + 0, 3212, 3428, + 0, 3221, 3419, + 0, 3233, 3406, + 0, 3248, 3389, + 0, 3268, 3364, + 0, 3293, 3329, + 0, 3324, 3277, + 0, 3363, 3198, + 0, 3411, 3063, + 0, 3467, 2782, + 0, 3533, 0, + 0, 3608, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3185, 3454, + 0, 3186, 3454, + 0, 3186, 3453, + 0, 3187, 3453, + 0, 3187, 3452, + 0, 3188, 3451, + 0, 3189, 3450, + 0, 3191, 3449, + 0, 3193, 3447, + 0, 3196, 3444, + 0, 3200, 3440, + 0, 3205, 3435, + 0, 3212, 3428, + 0, 3221, 3419, + 0, 3233, 3406, + 0, 3248, 3389, + 0, 3268, 3364, + 0, 3293, 3329, + 0, 3324, 3278, + 0, 3363, 3198, + 0, 3411, 3064, + 0, 3467, 2783, + 0, 3533, 0, + 0, 3609, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3454, + 0, 3186, 3454, + 0, 3186, 3454, + 0, 3187, 3453, + 0, 3187, 3453, + 0, 3188, 3452, + 0, 3190, 3451, + 0, 3191, 3449, + 0, 3193, 3447, + 0, 3196, 3444, + 0, 3200, 3441, + 0, 3205, 3436, + 0, 3212, 3429, + 0, 3221, 3420, + 0, 3233, 3407, + 0, 3248, 3389, + 0, 3268, 3365, + 0, 3293, 3330, + 0, 3324, 3278, + 0, 3363, 3199, + 0, 3411, 3065, + 0, 3467, 2785, + 0, 3533, 0, + 0, 3609, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3185, 3456, + 0, 3185, 3456, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3185, 3455, + 0, 3186, 3455, + 0, 3186, 3455, + 0, 3186, 3454, + 0, 3187, 3454, + 0, 3187, 3453, + 0, 3188, 3452, + 0, 3190, 3451, + 0, 3191, 3450, + 0, 3194, 3448, + 0, 3197, 3445, + 0, 3200, 3441, + 0, 3206, 3436, + 0, 3212, 3429, + 0, 3221, 3420, + 0, 3233, 3407, + 0, 3248, 3390, + 0, 3268, 3365, + 0, 3293, 3331, + 0, 3325, 3279, + 0, 3363, 3200, + 0, 3411, 3066, + 0, 3467, 2787, + 0, 3533, 0, + 0, 3609, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3185, 3456, + 0, 3185, 3456, + 0, 3185, 3456, + 0, 3185, 3456, + 0, 3185, 3456, + 0, 3186, 3456, + 0, 3186, 3456, + 0, 3186, 3455, + 0, 3186, 3455, + 0, 3187, 3455, + 0, 3188, 3454, + 0, 3189, 3453, + 0, 3190, 3452, + 0, 3192, 3450, + 0, 3194, 3448, + 0, 3197, 3446, + 0, 3201, 3442, + 0, 3206, 3437, + 0, 3213, 3430, + 0, 3222, 3421, + 0, 3233, 3408, + 0, 3249, 3391, + 0, 3268, 3366, + 0, 3293, 3331, + 0, 3325, 3280, + 0, 3364, 3201, + 0, 3411, 3067, + 0, 3467, 2790, + 0, 3533, 0, + 0, 3609, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3185, 3457, + 0, 3185, 3457, + 0, 3185, 3457, + 0, 3185, 3457, + 0, 3186, 3457, + 0, 3186, 3457, + 0, 3186, 3457, + 0, 3186, 3456, + 0, 3187, 3456, + 0, 3187, 3456, + 0, 3188, 3455, + 0, 3189, 3454, + 0, 3190, 3453, + 0, 3192, 3451, + 0, 3194, 3449, + 0, 3197, 3447, + 0, 3201, 3443, + 0, 3206, 3438, + 0, 3213, 3431, + 0, 3222, 3422, + 0, 3234, 3409, + 0, 3249, 3392, + 0, 3268, 3368, + 0, 3293, 3333, + 0, 3325, 3282, + 0, 3364, 3203, + 0, 3411, 3070, + 0, 3467, 2794, + 0, 3533, 0, + 0, 3609, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3186, 3459, + 0, 3186, 3458, + 0, 3186, 3458, + 0, 3186, 3458, + 0, 3186, 3458, + 0, 3186, 3458, + 0, 3186, 3458, + 0, 3187, 3458, + 0, 3187, 3457, + 0, 3188, 3457, + 0, 3188, 3456, + 0, 3189, 3455, + 0, 3190, 3454, + 0, 3192, 3453, + 0, 3194, 3451, + 0, 3197, 3448, + 0, 3201, 3444, + 0, 3206, 3439, + 0, 3213, 3432, + 0, 3222, 3423, + 0, 3234, 3411, + 0, 3249, 3393, + 0, 3269, 3369, + 0, 3294, 3334, + 0, 3325, 3283, + 0, 3364, 3205, + 0, 3411, 3073, + 0, 3468, 2800, + 0, 3533, 0, + 0, 3609, 0, + 0, 3693, 0, + 0, 3786, 0, + 0, 3186, 3460, + 0, 3186, 3460, + 0, 3186, 3460, + 0, 3186, 3460, + 0, 3186, 3460, + 0, 3187, 3460, + 0, 3187, 3460, + 0, 3187, 3459, + 0, 3187, 3459, + 0, 3188, 3458, + 0, 3189, 3458, + 0, 3190, 3457, + 0, 3191, 3456, + 0, 3193, 3454, + 0, 3195, 3452, + 0, 3198, 3450, + 0, 3202, 3446, + 0, 3207, 3441, + 0, 3214, 3434, + 0, 3223, 3425, + 0, 3234, 3413, + 0, 3250, 3395, + 0, 3269, 3371, + 0, 3294, 3337, + 0, 3325, 3286, + 0, 3364, 3208, + 0, 3411, 3077, + 0, 3468, 2807, + 0, 3534, 0, + 0, 3609, 0, + 0, 3694, 0, + 0, 3787, 0, + 0, 3187, 3462, + 0, 3187, 3462, + 0, 3187, 3462, + 0, 3187, 3462, + 0, 3187, 3462, + 0, 3187, 3462, + 0, 3187, 3462, + 0, 3188, 3462, + 0, 3188, 3461, + 0, 3189, 3461, + 0, 3189, 3460, + 0, 3190, 3459, + 0, 3191, 3458, + 0, 3193, 3457, + 0, 3195, 3455, + 0, 3198, 3452, + 0, 3202, 3448, + 0, 3207, 3443, + 0, 3214, 3437, + 0, 3223, 3428, + 0, 3235, 3415, + 0, 3250, 3398, + 0, 3270, 3374, + 0, 3295, 3339, + 0, 3326, 3289, + 0, 3365, 3212, + 0, 3412, 3082, + 0, 3468, 2816, + 0, 3534, 0, + 0, 3609, 0, + 0, 3694, 0, + 0, 3787, 0, + 0, 3187, 3465, + 0, 3187, 3465, + 0, 3187, 3465, + 0, 3188, 3465, + 0, 3188, 3465, + 0, 3188, 3465, + 0, 3188, 3465, + 0, 3188, 3465, + 0, 3189, 3464, + 0, 3189, 3464, + 0, 3190, 3463, + 0, 3191, 3462, + 0, 3192, 3461, + 0, 3194, 3460, + 0, 3196, 3458, + 0, 3199, 3455, + 0, 3203, 3451, + 0, 3208, 3446, + 0, 3215, 3440, + 0, 3224, 3431, + 0, 3235, 3418, + 0, 3251, 3401, + 0, 3270, 3377, + 0, 3295, 3343, + 0, 3326, 3293, + 0, 3365, 3217, + 0, 3412, 3089, + 0, 3469, 2829, + 0, 3534, 0, + 0, 3610, 0, + 0, 3694, 0, + 0, 3787, 0, + 0, 3188, 3469, + 0, 3188, 3469, + 0, 3188, 3469, + 0, 3189, 3469, + 0, 3189, 3469, + 0, 3189, 3469, + 0, 3189, 3469, + 0, 3189, 3468, + 0, 3190, 3468, + 0, 3190, 3468, + 0, 3191, 3467, + 0, 3192, 3466, + 0, 3193, 3465, + 0, 3195, 3464, + 0, 3197, 3462, + 0, 3200, 3459, + 0, 3204, 3455, + 0, 3209, 3451, + 0, 3216, 3444, + 0, 3225, 3435, + 0, 3236, 3423, + 0, 3252, 3406, + 0, 3271, 3382, + 0, 3296, 3349, + 0, 3327, 3299, + 0, 3366, 3224, + 0, 3413, 3098, + 0, 3469, 2844, + 0, 3535, 106, + 0, 3610, 0, + 0, 3694, 0, + 0, 3787, 0, + 0, 3190, 3475, + 0, 3190, 3475, + 0, 3190, 3474, + 0, 3190, 3474, + 0, 3190, 3474, + 0, 3190, 3474, + 0, 3190, 3474, + 0, 3191, 3474, + 0, 3191, 3473, + 0, 3192, 3473, + 0, 3192, 3472, + 0, 3193, 3471, + 0, 3195, 3470, + 0, 3196, 3469, + 0, 3198, 3467, + 0, 3201, 3464, + 0, 3205, 3461, + 0, 3210, 3456, + 0, 3217, 3449, + 0, 3226, 3441, + 0, 3238, 3429, + 0, 3253, 3412, + 0, 3272, 3389, + 0, 3297, 3355, + 0, 3328, 3307, + 0, 3367, 3233, + 0, 3414, 3109, + 0, 3470, 2865, + 0, 3535, 1466, + 0, 3611, 0, + 0, 3695, 0, + 0, 3788, 0, + 0, 3192, 3481, + 0, 3192, 3481, + 0, 3192, 3481, + 0, 3192, 3481, + 0, 3192, 3481, + 0, 3192, 3481, + 0, 3192, 3481, + 0, 3193, 3481, + 0, 3193, 3480, + 0, 3193, 3480, + 0, 3194, 3479, + 0, 3195, 3478, + 0, 3196, 3477, + 0, 3198, 3476, + 0, 3200, 3474, + 0, 3203, 3471, + 0, 3207, 3468, + 0, 3212, 3463, + 0, 3219, 3457, + 0, 3228, 3448, + 0, 3239, 3436, + 0, 3254, 3420, + 0, 3274, 3397, + 0, 3298, 3364, + 0, 3329, 3317, + 0, 3368, 3244, + 0, 3415, 3125, + 0, 3471, 2891, + 0, 3536, 1839, + 0, 3611, 0, + 0, 3695, 0, + 0, 3788, 0, + 0, 3194, 3491, + 0, 3194, 3491, + 0, 3194, 3490, + 0, 3194, 3490, + 0, 3194, 3490, + 0, 3194, 3490, + 0, 3195, 3490, + 0, 3195, 3490, + 0, 3195, 3489, + 0, 3196, 3489, + 0, 3197, 3488, + 0, 3197, 3488, + 0, 3199, 3487, + 0, 3200, 3485, + 0, 3202, 3483, + 0, 3205, 3481, + 0, 3209, 3477, + 0, 3214, 3473, + 0, 3221, 3466, + 0, 3230, 3458, + 0, 3241, 3446, + 0, 3256, 3430, + 0, 3276, 3408, + 0, 3300, 3376, + 0, 3331, 3330, + 0, 3370, 3259, + 0, 3416, 3144, + 0, 3472, 2923, + 0, 3537, 2093, + 0, 3612, 0, + 0, 3696, 0, + 0, 3789, 0, + 0, 3197, 3502, + 0, 3197, 3502, + 0, 3197, 3502, + 0, 3197, 3502, + 0, 3197, 3502, + 0, 3198, 3502, + 0, 3198, 3502, + 0, 3198, 3502, + 0, 3199, 3501, + 0, 3199, 3501, + 0, 3200, 3500, + 0, 3201, 3500, + 0, 3202, 3498, + 0, 3203, 3497, + 0, 3206, 3495, + 0, 3209, 3493, + 0, 3212, 3489, + 0, 3217, 3485, + 0, 3224, 3479, + 0, 3233, 3471, + 0, 3244, 3459, + 0, 3259, 3444, + 0, 3278, 3422, + 0, 3303, 3391, + 0, 3334, 3347, + 0, 3372, 3279, + 0, 3418, 3169, + 0, 3474, 2963, + 0, 3539, 2299, + 0, 3613, 0, + 0, 3697, 0, + 0, 3790, 0, + 0, 3201, 3518, + 0, 3201, 3518, + 0, 3202, 3518, + 0, 3202, 3518, + 0, 3202, 3518, + 0, 3202, 3517, + 0, 3202, 3517, + 0, 3202, 3517, + 0, 3203, 3517, + 0, 3203, 3516, + 0, 3204, 3516, + 0, 3205, 3515, + 0, 3206, 3514, + 0, 3208, 3513, + 0, 3210, 3511, + 0, 3213, 3508, + 0, 3216, 3505, + 0, 3221, 3501, + 0, 3228, 3495, + 0, 3237, 3487, + 0, 3248, 3476, + 0, 3263, 3461, + 0, 3282, 3440, + 0, 3306, 3411, + 0, 3337, 3368, + 0, 3375, 3304, + 0, 3421, 3201, + 0, 3476, 3012, + 0, 3541, 2479, + 0, 3615, 0, + 0, 3699, 0, + 0, 3791, 0, + 0, 3207, 3538, + 0, 3207, 3538, + 0, 3207, 3537, + 0, 3207, 3537, + 0, 3207, 3537, + 0, 3207, 3537, + 0, 3208, 3537, + 0, 3208, 3537, + 0, 3208, 3537, + 0, 3209, 3536, + 0, 3210, 3536, + 0, 3210, 3535, + 0, 3212, 3534, + 0, 3213, 3533, + 0, 3215, 3531, + 0, 3218, 3529, + 0, 3222, 3526, + 0, 3227, 3521, + 0, 3233, 3516, + 0, 3242, 3508, + 0, 3253, 3498, + 0, 3268, 3483, + 0, 3287, 3464, + 0, 3311, 3436, + 0, 3341, 3395, + 0, 3379, 3335, + 0, 3424, 3240, + 0, 3479, 3069, + 0, 3544, 2644, + 0, 3617, 0, + 0, 3701, 0, + 0, 3792, 0, + 1728, 3214, 3563, + 1725, 3214, 3563, + 1722, 3215, 3563, + 1717, 3215, 3563, + 1710, 3215, 3563, + 1701, 3215, 3562, + 1688, 3215, 3562, + 1671, 3215, 3562, + 1647, 3216, 3562, + 1612, 3216, 3561, + 1562, 3217, 3561, + 1483, 3218, 3560, + 1352, 3219, 3559, + 1082, 3220, 3558, + 0, 3223, 3557, + 0, 3225, 3554, + 0, 3229, 3551, + 0, 3234, 3548, + 0, 3240, 3542, + 0, 3249, 3535, + 0, 3260, 3525, + 0, 3274, 3512, + 0, 3293, 3493, + 0, 3317, 3467, + 0, 3346, 3429, + 0, 3384, 3374, + 0, 3429, 3287, + 0, 3483, 3137, + 0, 3547, 2799, + 0, 3620, 0, + 0, 3703, 0, + 0, 3794, 0, + 2722, 3224, 3594, + 2721, 3224, 3594, + 2721, 3224, 3594, + 2720, 3224, 3594, + 2720, 3224, 3594, + 2719, 3225, 3594, + 2717, 3225, 3594, + 2716, 3225, 3594, + 2713, 3225, 3593, + 2710, 3226, 3593, + 2706, 3227, 3593, + 2700, 3227, 3592, + 2692, 3229, 3591, + 2681, 3230, 3590, + 2666, 3232, 3589, + 2646, 3235, 3587, + 2617, 3238, 3584, + 2574, 3243, 3580, + 2511, 3250, 3575, + 2410, 3258, 3569, + 2224, 3269, 3559, + 1718, 3283, 3547, + 0, 3301, 3530, + 0, 3324, 3506, + 0, 3354, 3471, + 0, 3390, 3421, + 0, 3435, 3343, + 0, 3489, 3214, + 0, 3552, 2948, + 0, 3624, 0, + 0, 3706, 0, + 0, 3797, 0, + 3077, 3237, 3634, + 3077, 3237, 3634, + 3077, 3237, 3633, + 3077, 3237, 3633, + 3076, 3237, 3633, + 3076, 3237, 3633, + 3075, 3237, 3633, + 3075, 3238, 3633, + 3073, 3238, 3633, + 3072, 3239, 3632, + 3070, 3239, 3632, + 3068, 3240, 3631, + 3064, 3241, 3631, + 3059, 3243, 3630, + 3053, 3245, 3628, + 3044, 3247, 3626, + 3032, 3251, 3624, + 3016, 3255, 3621, + 2993, 3262, 3616, + 2960, 3270, 3610, + 2913, 3280, 3602, + 2840, 3294, 3590, + 2720, 3312, 3575, + 2485, 3335, 3553, + 1404, 3363, 3522, + 0, 3399, 3477, + 0, 3443, 3409, + 0, 3496, 3299, + 0, 3558, 3092, + 0, 3630, 2417, + 0, 3711, 0, + 0, 3801, 0, + 3325, 3253, 3681, + 3325, 3253, 3681, + 3325, 3253, 3681, + 3325, 3253, 3681, + 3325, 3254, 3681, + 3325, 3254, 3681, + 3324, 3254, 3681, + 3324, 3254, 3681, + 3323, 3254, 3680, + 3322, 3255, 3680, + 3321, 3255, 3680, + 3320, 3256, 3679, + 3318, 3257, 3678, + 3315, 3259, 3678, + 3311, 3261, 3676, + 3306, 3263, 3675, + 3300, 3267, 3672, + 3291, 3271, 3669, + 3278, 3277, 3665, + 3261, 3285, 3660, + 3237, 3295, 3652, + 3203, 3308, 3642, + 3153, 3326, 3628, + 3076, 3348, 3609, + 2947, 3376, 3582, + 2685, 3411, 3543, + 0, 3454, 3485, + 0, 3505, 3394, + 0, 3566, 3233, + 0, 3637, 2852, + 0, 3717, 0, + 0, 3805, 0, + 3528, 3274, 3738, + 3528, 3274, 3738, + 3528, 3274, 3738, + 3528, 3274, 3738, + 3528, 3275, 3738, + 3528, 3275, 3738, + 3527, 3275, 3737, + 3527, 3275, 3737, + 3527, 3275, 3737, + 3526, 3276, 3737, + 3525, 3276, 3737, + 3525, 3277, 3736, + 3523, 3278, 3735, + 3522, 3280, 3735, + 3519, 3281, 3734, + 3516, 3284, 3732, + 3512, 3287, 3730, + 3506, 3291, 3728, + 3499, 3297, 3724, + 3488, 3305, 3719, + 3474, 3314, 3713, + 3454, 3327, 3704, + 3426, 3344, 3692, + 3385, 3365, 3675, + 3324, 3392, 3652, + 3228, 3426, 3618, + 3055, 3467, 3570, + 2618, 3517, 3495, + 0, 3577, 3371, + 0, 3646, 3125, + 0, 3724, 1639, + 0, 3812, 0, + 3707, 3301, 3804, + 3707, 3301, 3804, + 3707, 3301, 3804, + 3707, 3301, 3804, + 3707, 3301, 3804, + 3706, 3301, 3804, + 3706, 3302, 3804, + 3706, 3302, 3804, + 3706, 3302, 3803, + 3705, 3303, 3803, + 3705, 3303, 3803, + 3704, 3304, 3803, + 3703, 3305, 3802, + 3702, 3306, 3801, + 3701, 3308, 3800, + 3699, 3310, 3799, + 3696, 3313, 3797, + 3692, 3317, 3795, + 3687, 3323, 3792, + 3680, 3330, 3788, + 3671, 3339, 3782, + 3658, 3351, 3775, + 3640, 3367, 3764, + 3615, 3387, 3750, + 3580, 3413, 3730, + 3527, 3445, 3703, + 3446, 3485, 3663, + 3308, 3533, 3603, + 3017, 3591, 3508, + 0, 3658, 3340, + 0, 3734, 2924, + 0, 3820, 0, + 3871, 3334, 3880, + 3871, 3334, 3880, + 3871, 3335, 3880, + 3871, 3335, 3880, + 3871, 3335, 3880, + 3871, 3335, 3880, + 3870, 3335, 3880, + 3870, 3335, 3879, + 3870, 3335, 3879, + 3870, 3336, 3879, + 3869, 3336, 3879, + 3869, 3337, 3879, + 3868, 3338, 3878, + 3868, 3339, 3878, + 3867, 3341, 3877, + 3865, 3343, 3876, + 3863, 3346, 3874, + 3861, 3349, 3872, + 3857, 3354, 3870, + 3852, 3361, 3866, + 3846, 3370, 3862, + 3837, 3381, 3855, + 3825, 3396, 3846, + 3809, 3415, 3835, + 3786, 3439, 3818, + 3753, 3470, 3796, + 3706, 3507, 3763, + 3633, 3554, 3716, + 3513, 3609, 3644, + 3279, 3673, 3525, + 2216, 3748, 3294, + 0, 3831, 2303, + 4025, 3376, 3965, + 4025, 3376, 3965, + 4025, 3376, 3965, + 4025, 3376, 3965, + 4025, 3376, 3965, + 4025, 3376, 3965, + 4025, 3376, 3964, + 4025, 3376, 3964, + 4025, 3377, 3964, + 4025, 3377, 3964, + 4024, 3377, 3964, + 4024, 3378, 3964, + 4024, 3379, 3963, + 4023, 3380, 3963, + 4022, 3381, 3962, + 4021, 3383, 3961, + 4020, 3386, 3960, + 4018, 3389, 3958, + 4016, 3394, 3956, + 4012, 3400, 3953, + 4008, 3408, 3950, + 4002, 3418, 3944, + 3993, 3432, 3937, + 3982, 3450, 3928, + 3967, 3472, 3914, + 3945, 3501, 3896, + 3914, 3536, 3870, + 3870, 3579, 3833, + 3803, 3632, 3779, + 3693, 3693, 3693, + 3489, 3765, 3547, + 2837, 3845, 3224, + 4095, 3425, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3426, 4058, + 4095, 3427, 4057, + 4095, 3427, 4057, + 4095, 3428, 4057, + 4095, 3428, 4057, + 4095, 3429, 4056, + 4095, 3431, 4056, + 4095, 3432, 4055, + 4095, 3435, 4054, + 4095, 3438, 4053, + 4095, 3442, 4051, + 4095, 3447, 4049, + 4095, 3455, 4046, + 4095, 3464, 4041, + 4095, 3476, 4036, + 4095, 3492, 4028, + 4095, 3513, 4017, + 4095, 3539, 4003, + 4095, 3572, 3982, + 4067, 3612, 3954, + 4024, 3661, 3913, + 3961, 3719, 3851, + 3858, 3787, 3752, + 3671, 3864, 3575, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3485, 4095, + 4095, 3486, 4095, + 4095, 3486, 4095, + 4095, 3486, 4095, + 4095, 3487, 4095, + 4095, 3488, 4095, + 4095, 3489, 4095, + 4095, 3491, 4095, + 4095, 3493, 4095, + 4095, 3495, 4095, + 4095, 3499, 4095, + 4095, 3504, 4095, + 4095, 3510, 4095, + 4095, 3519, 4095, + 4095, 3530, 4095, + 4095, 3544, 4095, + 4095, 3562, 4095, + 4095, 3586, 4095, + 4095, 3615, 4095, + 4095, 3652, 4077, + 4095, 3697, 4046, + 4095, 3751, 4001, + 4095, 3814, 3932, + 4014, 3887, 3821, + 0, 3316, 3586, + 0, 3316, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3318, 3584, + 0, 3318, 3584, + 0, 3319, 3583, + 0, 3320, 3582, + 0, 3321, 3581, + 0, 3323, 3580, + 0, 3325, 3578, + 0, 3328, 3575, + 0, 3332, 3571, + 0, 3337, 3566, + 0, 3344, 3559, + 0, 3353, 3550, + 0, 3365, 3537, + 0, 3380, 3520, + 0, 3400, 3495, + 0, 3425, 3460, + 0, 3456, 3408, + 0, 3495, 3328, + 0, 3543, 3193, + 0, 3599, 2911, + 0, 3665, 0, + 0, 3740, 0, + 0, 3825, 0, + 0, 3316, 3586, + 0, 3316, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3318, 3585, + 0, 3318, 3584, + 0, 3319, 3583, + 0, 3320, 3583, + 0, 3321, 3581, + 0, 3323, 3580, + 0, 3325, 3578, + 0, 3328, 3575, + 0, 3332, 3571, + 0, 3337, 3566, + 0, 3344, 3559, + 0, 3353, 3550, + 0, 3365, 3537, + 0, 3380, 3520, + 0, 3400, 3495, + 0, 3425, 3460, + 0, 3456, 3408, + 0, 3495, 3328, + 0, 3543, 3193, + 0, 3599, 2911, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3316, 3586, + 0, 3316, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3318, 3585, + 0, 3318, 3585, + 0, 3318, 3584, + 0, 3319, 3583, + 0, 3320, 3583, + 0, 3321, 3581, + 0, 3323, 3580, + 0, 3325, 3578, + 0, 3328, 3575, + 0, 3332, 3571, + 0, 3337, 3566, + 0, 3344, 3560, + 0, 3353, 3550, + 0, 3365, 3538, + 0, 3380, 3520, + 0, 3400, 3495, + 0, 3425, 3460, + 0, 3456, 3408, + 0, 3495, 3329, + 0, 3543, 3194, + 0, 3599, 2911, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3316, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3585, + 0, 3317, 3585, + 0, 3318, 3585, + 0, 3318, 3585, + 0, 3318, 3584, + 0, 3319, 3584, + 0, 3320, 3583, + 0, 3321, 3582, + 0, 3323, 3580, + 0, 3325, 3578, + 0, 3328, 3575, + 0, 3332, 3571, + 0, 3337, 3566, + 0, 3344, 3560, + 0, 3353, 3550, + 0, 3365, 3538, + 0, 3380, 3520, + 0, 3400, 3495, + 0, 3425, 3460, + 0, 3456, 3409, + 0, 3495, 3329, + 0, 3543, 3194, + 0, 3599, 2912, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3585, + 0, 3318, 3585, + 0, 3318, 3585, + 0, 3318, 3584, + 0, 3319, 3584, + 0, 3320, 3583, + 0, 3321, 3582, + 0, 3323, 3580, + 0, 3325, 3578, + 0, 3328, 3575, + 0, 3332, 3572, + 0, 3337, 3567, + 0, 3344, 3560, + 0, 3353, 3551, + 0, 3365, 3538, + 0, 3380, 3520, + 0, 3400, 3496, + 0, 3425, 3460, + 0, 3456, 3409, + 0, 3495, 3329, + 0, 3543, 3194, + 0, 3599, 2912, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3318, 3585, + 0, 3318, 3585, + 0, 3319, 3584, + 0, 3319, 3584, + 0, 3320, 3583, + 0, 3321, 3582, + 0, 3323, 3580, + 0, 3325, 3578, + 0, 3328, 3576, + 0, 3332, 3572, + 0, 3337, 3567, + 0, 3344, 3560, + 0, 3353, 3551, + 0, 3365, 3538, + 0, 3380, 3520, + 0, 3400, 3496, + 0, 3425, 3461, + 0, 3456, 3409, + 0, 3495, 3329, + 0, 3543, 3194, + 0, 3599, 2913, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3318, 3586, + 0, 3318, 3585, + 0, 3319, 3585, + 0, 3319, 3584, + 0, 3320, 3583, + 0, 3321, 3582, + 0, 3323, 3581, + 0, 3325, 3579, + 0, 3328, 3576, + 0, 3332, 3572, + 0, 3337, 3567, + 0, 3344, 3560, + 0, 3353, 3551, + 0, 3365, 3538, + 0, 3380, 3521, + 0, 3400, 3496, + 0, 3425, 3461, + 0, 3456, 3409, + 0, 3495, 3330, + 0, 3543, 3195, + 0, 3599, 2914, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3317, 3586, + 0, 3318, 3586, + 0, 3318, 3585, + 0, 3319, 3585, + 0, 3319, 3584, + 0, 3320, 3584, + 0, 3322, 3582, + 0, 3323, 3581, + 0, 3325, 3579, + 0, 3328, 3576, + 0, 3332, 3572, + 0, 3338, 3567, + 0, 3344, 3561, + 0, 3353, 3551, + 0, 3365, 3539, + 0, 3380, 3521, + 0, 3400, 3496, + 0, 3425, 3461, + 0, 3456, 3410, + 0, 3495, 3330, + 0, 3543, 3196, + 0, 3599, 2915, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3318, 3587, + 0, 3318, 3586, + 0, 3318, 3586, + 0, 3319, 3585, + 0, 3319, 3585, + 0, 3320, 3584, + 0, 3322, 3583, + 0, 3323, 3581, + 0, 3326, 3579, + 0, 3328, 3576, + 0, 3332, 3573, + 0, 3338, 3568, + 0, 3344, 3561, + 0, 3353, 3552, + 0, 3365, 3539, + 0, 3380, 3521, + 0, 3400, 3497, + 0, 3425, 3462, + 0, 3457, 3410, + 0, 3495, 3331, + 0, 3543, 3197, + 0, 3599, 2917, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3317, 3587, + 0, 3318, 3587, + 0, 3318, 3587, + 0, 3318, 3586, + 0, 3319, 3586, + 0, 3320, 3585, + 0, 3321, 3584, + 0, 3322, 3583, + 0, 3323, 3582, + 0, 3326, 3580, + 0, 3329, 3577, + 0, 3333, 3573, + 0, 3338, 3568, + 0, 3345, 3561, + 0, 3354, 3552, + 0, 3365, 3540, + 0, 3381, 3522, + 0, 3400, 3498, + 0, 3425, 3463, + 0, 3457, 3411, + 0, 3496, 3332, + 0, 3543, 3198, + 0, 3599, 2919, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3317, 3588, + 0, 3318, 3588, + 0, 3318, 3588, + 0, 3318, 3587, + 0, 3319, 3587, + 0, 3319, 3587, + 0, 3320, 3586, + 0, 3321, 3585, + 0, 3322, 3584, + 0, 3324, 3583, + 0, 3326, 3580, + 0, 3329, 3578, + 0, 3333, 3574, + 0, 3338, 3569, + 0, 3345, 3562, + 0, 3354, 3553, + 0, 3365, 3540, + 0, 3381, 3523, + 0, 3400, 3498, + 0, 3425, 3464, + 0, 3457, 3412, + 0, 3496, 3333, + 0, 3543, 3200, + 0, 3599, 2922, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3317, 3589, + 0, 3317, 3589, + 0, 3317, 3589, + 0, 3317, 3589, + 0, 3318, 3589, + 0, 3318, 3589, + 0, 3318, 3589, + 0, 3318, 3589, + 0, 3318, 3588, + 0, 3319, 3588, + 0, 3319, 3588, + 0, 3320, 3587, + 0, 3321, 3586, + 0, 3322, 3585, + 0, 3324, 3583, + 0, 3326, 3581, + 0, 3329, 3579, + 0, 3333, 3575, + 0, 3338, 3570, + 0, 3345, 3563, + 0, 3354, 3554, + 0, 3366, 3541, + 0, 3381, 3524, + 0, 3401, 3500, + 0, 3426, 3465, + 0, 3457, 3414, + 0, 3496, 3335, + 0, 3543, 3202, + 0, 3600, 2927, + 0, 3665, 0, + 0, 3741, 0, + 0, 3825, 0, + 0, 3318, 3591, + 0, 3318, 3591, + 0, 3318, 3591, + 0, 3318, 3590, + 0, 3318, 3590, + 0, 3318, 3590, + 0, 3318, 3590, + 0, 3318, 3590, + 0, 3319, 3590, + 0, 3319, 3589, + 0, 3320, 3589, + 0, 3320, 3588, + 0, 3321, 3587, + 0, 3323, 3586, + 0, 3324, 3585, + 0, 3326, 3583, + 0, 3329, 3580, + 0, 3333, 3576, + 0, 3338, 3571, + 0, 3345, 3565, + 0, 3354, 3555, + 0, 3366, 3543, + 0, 3381, 3525, + 0, 3401, 3501, + 0, 3426, 3466, + 0, 3457, 3415, + 0, 3496, 3337, + 0, 3543, 3205, + 0, 3600, 2932, + 0, 3666, 0, + 0, 3741, 0, + 0, 3826, 0, + 0, 3318, 3592, + 0, 3318, 3592, + 0, 3318, 3592, + 0, 3318, 3592, + 0, 3318, 3592, + 0, 3318, 3592, + 0, 3319, 3592, + 0, 3319, 3592, + 0, 3319, 3591, + 0, 3320, 3591, + 0, 3320, 3591, + 0, 3321, 3590, + 0, 3322, 3589, + 0, 3323, 3588, + 0, 3325, 3586, + 0, 3327, 3584, + 0, 3330, 3582, + 0, 3334, 3578, + 0, 3339, 3573, + 0, 3346, 3566, + 0, 3355, 3557, + 0, 3366, 3545, + 0, 3382, 3527, + 0, 3401, 3503, + 0, 3426, 3469, + 0, 3458, 3418, + 0, 3496, 3340, + 0, 3544, 3209, + 0, 3600, 2939, + 0, 3666, 0, + 0, 3741, 0, + 0, 3826, 0, + 0, 3319, 3595, + 0, 3319, 3595, + 0, 3319, 3594, + 0, 3319, 3594, + 0, 3319, 3594, + 0, 3319, 3594, + 0, 3319, 3594, + 0, 3319, 3594, + 0, 3320, 3594, + 0, 3320, 3593, + 0, 3321, 3593, + 0, 3321, 3592, + 0, 3322, 3591, + 0, 3324, 3590, + 0, 3325, 3589, + 0, 3327, 3587, + 0, 3330, 3584, + 0, 3334, 3580, + 0, 3339, 3575, + 0, 3346, 3569, + 0, 3355, 3560, + 0, 3367, 3547, + 0, 3382, 3530, + 0, 3402, 3506, + 0, 3427, 3472, + 0, 3458, 3421, + 0, 3497, 3344, + 0, 3544, 3214, + 0, 3600, 2948, + 0, 3666, 0, + 0, 3741, 0, + 0, 3826, 0, + 0, 3319, 3598, + 0, 3319, 3597, + 0, 3320, 3597, + 0, 3320, 3597, + 0, 3320, 3597, + 0, 3320, 3597, + 0, 3320, 3597, + 0, 3320, 3597, + 0, 3320, 3597, + 0, 3321, 3596, + 0, 3321, 3596, + 0, 3322, 3595, + 0, 3323, 3594, + 0, 3324, 3593, + 0, 3326, 3592, + 0, 3328, 3590, + 0, 3331, 3587, + 0, 3335, 3583, + 0, 3340, 3579, + 0, 3347, 3572, + 0, 3356, 3563, + 0, 3368, 3550, + 0, 3383, 3533, + 0, 3402, 3510, + 0, 3427, 3475, + 0, 3459, 3426, + 0, 3497, 3349, + 0, 3544, 3221, + 0, 3601, 2961, + 0, 3666, 0, + 0, 3742, 0, + 0, 3826, 0, + 0, 3320, 3601, + 0, 3320, 3601, + 0, 3321, 3601, + 0, 3321, 3601, + 0, 3321, 3601, + 0, 3321, 3601, + 0, 3321, 3601, + 0, 3321, 3601, + 0, 3321, 3601, + 0, 3322, 3600, + 0, 3322, 3600, + 0, 3323, 3599, + 0, 3324, 3598, + 0, 3325, 3597, + 0, 3327, 3596, + 0, 3329, 3594, + 0, 3332, 3591, + 0, 3336, 3587, + 0, 3341, 3583, + 0, 3348, 3576, + 0, 3357, 3567, + 0, 3368, 3555, + 0, 3384, 3538, + 0, 3403, 3514, + 0, 3428, 3481, + 0, 3459, 3431, + 0, 3498, 3356, + 0, 3545, 3230, + 0, 3601, 2976, + 0, 3667, 238, + 0, 3742, 0, + 0, 3826, 0, + 0, 3322, 3607, + 0, 3322, 3607, + 0, 3322, 3607, + 0, 3322, 3607, + 0, 3322, 3606, + 0, 3322, 3606, + 0, 3322, 3606, + 0, 3323, 3606, + 0, 3323, 3606, + 0, 3323, 3605, + 0, 3324, 3605, + 0, 3324, 3604, + 0, 3325, 3604, + 0, 3327, 3603, + 0, 3328, 3601, + 0, 3330, 3599, + 0, 3333, 3596, + 0, 3337, 3593, + 0, 3342, 3588, + 0, 3349, 3582, + 0, 3358, 3573, + 0, 3370, 3561, + 0, 3385, 3544, + 0, 3404, 3521, + 0, 3429, 3487, + 0, 3460, 3439, + 0, 3499, 3365, + 0, 3546, 3241, + 0, 3602, 2997, + 0, 3668, 1599, + 0, 3743, 0, + 0, 3827, 0, + 0, 3324, 3614, + 0, 3324, 3614, + 0, 3324, 3614, + 0, 3324, 3613, + 0, 3324, 3613, + 0, 3324, 3613, + 0, 3324, 3613, + 0, 3324, 3613, + 0, 3325, 3613, + 0, 3325, 3612, + 0, 3326, 3612, + 0, 3326, 3611, + 0, 3327, 3611, + 0, 3328, 3609, + 0, 3330, 3608, + 0, 3332, 3606, + 0, 3335, 3603, + 0, 3339, 3600, + 0, 3344, 3595, + 0, 3351, 3589, + 0, 3360, 3580, + 0, 3371, 3568, + 0, 3386, 3552, + 0, 3406, 3529, + 0, 3431, 3496, + 0, 3462, 3449, + 0, 3500, 3376, + 0, 3547, 3257, + 0, 3603, 3023, + 0, 3668, 1971, + 0, 3743, 0, + 0, 3827, 0, + 0, 3326, 3623, + 0, 3326, 3623, + 0, 3326, 3623, + 0, 3326, 3623, + 0, 3326, 3622, + 0, 3326, 3622, + 0, 3327, 3622, + 0, 3327, 3622, + 0, 3327, 3622, + 0, 3327, 3621, + 0, 3328, 3621, + 0, 3329, 3620, + 0, 3330, 3620, + 0, 3331, 3619, + 0, 3332, 3617, + 0, 3335, 3615, + 0, 3337, 3613, + 0, 3341, 3609, + 0, 3346, 3605, + 0, 3353, 3598, + 0, 3362, 3590, + 0, 3374, 3578, + 0, 3388, 3562, + 0, 3408, 3540, + 0, 3432, 3508, + 0, 3463, 3462, + 0, 3502, 3392, + 0, 3548, 3276, + 0, 3604, 3055, + 0, 3669, 2225, + 0, 3744, 0, + 0, 3828, 0, + 0, 3329, 3635, + 0, 3329, 3635, + 0, 3329, 3634, + 0, 3329, 3634, + 0, 3329, 3634, + 0, 3330, 3634, + 0, 3330, 3634, + 0, 3330, 3634, + 0, 3330, 3634, + 0, 3331, 3633, + 0, 3331, 3633, + 0, 3332, 3632, + 0, 3333, 3632, + 0, 3334, 3631, + 0, 3336, 3629, + 0, 3338, 3627, + 0, 3341, 3625, + 0, 3344, 3622, + 0, 3349, 3617, + 0, 3356, 3611, + 0, 3365, 3603, + 0, 3376, 3591, + 0, 3391, 3576, + 0, 3410, 3554, + 0, 3435, 3523, + 0, 3466, 3479, + 0, 3504, 3411, + 0, 3550, 3301, + 0, 3606, 3095, + 0, 3671, 2431, + 0, 3746, 0, + 0, 3829, 0, + 0, 3333, 3650, + 0, 3333, 3650, + 0, 3334, 3650, + 0, 3334, 3650, + 0, 3334, 3650, + 0, 3334, 3650, + 0, 3334, 3649, + 0, 3334, 3649, + 0, 3334, 3649, + 0, 3335, 3649, + 0, 3335, 3648, + 0, 3336, 3648, + 0, 3337, 3647, + 0, 3338, 3646, + 0, 3340, 3645, + 0, 3342, 3643, + 0, 3345, 3641, + 0, 3349, 3637, + 0, 3354, 3633, + 0, 3360, 3627, + 0, 3369, 3619, + 0, 3380, 3608, + 0, 3395, 3593, + 0, 3414, 3572, + 0, 3438, 3543, + 0, 3469, 3500, + 0, 3507, 3436, + 0, 3553, 3333, + 0, 3608, 3144, + 0, 3673, 2611, + 0, 3747, 0, + 0, 3831, 0, + 0, 3339, 3670, + 0, 3339, 3670, + 0, 3339, 3670, + 0, 3339, 3670, + 0, 3339, 3670, + 0, 3339, 3669, + 0, 3340, 3669, + 0, 3340, 3669, + 0, 3340, 3669, + 0, 3340, 3669, + 0, 3341, 3668, + 0, 3342, 3668, + 0, 3343, 3667, + 0, 3344, 3666, + 0, 3345, 3665, + 0, 3347, 3663, + 0, 3350, 3661, + 0, 3354, 3658, + 0, 3359, 3654, + 0, 3365, 3648, + 0, 3374, 3640, + 0, 3385, 3630, + 0, 3400, 3616, + 0, 3419, 3596, + 0, 3443, 3568, + 0, 3473, 3527, + 0, 3511, 3467, + 0, 3556, 3372, + 0, 3611, 3202, + 0, 3676, 2776, + 0, 3750, 0, + 0, 3833, 0, + 1862, 3346, 3695, + 1860, 3347, 3695, + 1858, 3347, 3695, + 1854, 3347, 3695, + 1849, 3347, 3695, + 1842, 3347, 3695, + 1833, 3347, 3695, + 1821, 3347, 3694, + 1803, 3347, 3694, + 1779, 3348, 3694, + 1744, 3348, 3693, + 1694, 3349, 3693, + 1616, 3350, 3692, + 1484, 3351, 3691, + 1214, 3353, 3690, + 0, 3355, 3689, + 0, 3357, 3686, + 0, 3361, 3684, + 0, 3366, 3680, + 0, 3372, 3674, + 0, 3381, 3667, + 0, 3392, 3657, + 0, 3406, 3644, + 0, 3425, 3625, + 0, 3449, 3599, + 0, 3479, 3562, + 0, 3516, 3506, + 0, 3561, 3419, + 0, 3615, 3269, + 0, 3679, 2931, + 0, 3753, 0, + 0, 3835, 0, + 2854, 3356, 3727, + 2854, 3356, 3727, + 2853, 3356, 3726, + 2853, 3356, 3726, + 2853, 3356, 3726, + 2852, 3357, 3726, + 2851, 3357, 3726, + 2849, 3357, 3726, + 2848, 3357, 3726, + 2845, 3358, 3726, + 2842, 3358, 3725, + 2838, 3359, 3725, + 2832, 3360, 3724, + 2824, 3361, 3723, + 2813, 3362, 3722, + 2798, 3364, 3721, + 2778, 3367, 3719, + 2749, 3371, 3716, + 2706, 3375, 3712, + 2643, 3382, 3707, + 2542, 3390, 3701, + 2357, 3401, 3692, + 1850, 3415, 3679, + 0, 3433, 3662, + 0, 3456, 3638, + 0, 3486, 3604, + 0, 3522, 3553, + 0, 3567, 3476, + 0, 3621, 3346, + 0, 3684, 3080, + 0, 3757, 0, + 0, 3838, 0, + 3210, 3369, 3766, + 3209, 3369, 3766, + 3209, 3369, 3766, + 3209, 3369, 3766, + 3209, 3369, 3766, + 3209, 3369, 3765, + 3208, 3369, 3765, + 3207, 3370, 3765, + 3207, 3370, 3765, + 3206, 3370, 3765, + 3204, 3371, 3764, + 3202, 3371, 3764, + 3200, 3372, 3763, + 3196, 3373, 3763, + 3191, 3375, 3762, + 3185, 3377, 3760, + 3176, 3379, 3758, + 3164, 3383, 3756, + 3148, 3387, 3753, + 3125, 3394, 3748, + 3092, 3402, 3742, + 3045, 3412, 3734, + 2972, 3426, 3722, + 2852, 3444, 3707, + 2617, 3467, 3685, + 1537, 3495, 3654, + 0, 3531, 3609, + 0, 3575, 3542, + 0, 3628, 3431, + 0, 3690, 3224, + 0, 3762, 2549, + 0, 3843, 0, + 3457, 3385, 3813, + 3457, 3385, 3813, + 3457, 3385, 3813, + 3457, 3385, 3813, + 3457, 3385, 3813, + 3457, 3386, 3813, + 3457, 3386, 3813, + 3456, 3386, 3813, + 3456, 3386, 3813, + 3455, 3387, 3812, + 3454, 3387, 3812, + 3453, 3388, 3812, + 3452, 3388, 3811, + 3450, 3389, 3811, + 3447, 3391, 3810, + 3443, 3393, 3808, + 3439, 3395, 3807, + 3432, 3399, 3805, + 3423, 3403, 3802, + 3410, 3409, 3797, + 3393, 3417, 3792, + 3369, 3427, 3785, + 3335, 3441, 3774, + 3285, 3458, 3761, + 3208, 3480, 3741, + 3079, 3508, 3714, + 2817, 3543, 3675, + 0, 3586, 3617, + 0, 3637, 3526, + 0, 3698, 3365, + 0, 3769, 2984, + 0, 3849, 0, + 3660, 3406, 3870, + 3660, 3406, 3870, + 3660, 3406, 3870, + 3660, 3406, 3870, + 3660, 3407, 3870, + 3660, 3407, 3870, + 3660, 3407, 3870, + 3660, 3407, 3870, + 3659, 3407, 3869, + 3659, 3408, 3869, + 3658, 3408, 3869, + 3658, 3409, 3869, + 3657, 3409, 3868, + 3655, 3410, 3868, + 3654, 3412, 3867, + 3651, 3414, 3866, + 3648, 3416, 3864, + 3644, 3419, 3862, + 3638, 3424, 3860, + 3631, 3429, 3856, + 3620, 3437, 3851, + 3606, 3446, 3845, + 3586, 3459, 3836, + 3558, 3476, 3824, + 3517, 3497, 3807, + 3456, 3524, 3784, + 3360, 3558, 3750, + 3187, 3599, 3702, + 2750, 3650, 3627, + 0, 3709, 3503, + 0, 3778, 3257, + 0, 3856, 1771, + 3839, 3433, 3936, + 3839, 3433, 3936, + 3839, 3433, 3936, + 3839, 3433, 3936, + 3839, 3433, 3936, + 3839, 3433, 3936, + 3838, 3433, 3936, + 3838, 3434, 3936, + 3838, 3434, 3936, + 3838, 3434, 3936, + 3838, 3435, 3935, + 3837, 3435, 3935, + 3836, 3436, 3935, + 3836, 3437, 3934, + 3834, 3438, 3933, + 3833, 3440, 3932, + 3831, 3442, 3931, + 3828, 3445, 3930, + 3824, 3449, 3927, + 3819, 3455, 3924, + 3812, 3462, 3920, + 3803, 3471, 3914, + 3790, 3483, 3907, + 3772, 3499, 3897, + 3747, 3519, 3882, + 3712, 3545, 3863, + 3659, 3577, 3835, + 3578, 3617, 3795, + 3440, 3665, 3735, + 3149, 3723, 3640, + 0, 3790, 3472, + 0, 3867, 3056, + 4003, 3467, 4012, + 4003, 3467, 4012, + 4003, 3467, 4012, + 4003, 3467, 4012, + 4003, 3467, 4012, + 4003, 3467, 4012, + 4003, 3467, 4012, + 4002, 3467, 4012, + 4002, 3467, 4012, + 4002, 3468, 4011, + 4002, 3468, 4011, + 4002, 3468, 4011, + 4001, 3469, 4011, + 4001, 3470, 4010, + 4000, 3471, 4010, + 3999, 3473, 4009, + 3997, 3475, 4008, + 3995, 3478, 4006, + 3993, 3482, 4004, + 3989, 3487, 4002, + 3984, 3493, 3998, + 3978, 3502, 3994, + 3969, 3513, 3987, + 3957, 3528, 3979, + 3941, 3547, 3967, + 3918, 3571, 3950, + 3886, 3602, 3928, + 3838, 3640, 3895, + 3765, 3686, 3848, + 3646, 3741, 3776, + 3411, 3806, 3657, + 2348, 3880, 3426, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3508, 4095, + 4095, 3509, 4095, + 4095, 3509, 4095, + 4095, 3509, 4095, + 4095, 3510, 4095, + 4095, 3511, 4095, + 4095, 3512, 4095, + 4095, 3513, 4094, + 4095, 3515, 4093, + 4095, 3518, 4092, + 4095, 3522, 4091, + 4095, 3526, 4088, + 4095, 3532, 4086, + 4095, 3540, 4082, + 4095, 3551, 4076, + 4095, 3564, 4069, + 4095, 3582, 4060, + 4095, 3604, 4046, + 4077, 3633, 4028, + 4046, 3668, 4002, + 4002, 3712, 3965, + 3935, 3764, 3911, + 3826, 3826, 3826, + 3621, 3897, 3679, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3558, 4095, + 4095, 3559, 4095, + 4095, 3559, 4095, + 4095, 3560, 4095, + 4095, 3560, 4095, + 4095, 3561, 4095, + 4095, 3563, 4095, + 4095, 3564, 4095, + 4095, 3567, 4095, + 4095, 3570, 4095, + 4095, 3574, 4095, + 4095, 3580, 4095, + 4095, 3587, 4095, + 4095, 3596, 4095, + 4095, 3608, 4095, + 4095, 3624, 4095, + 4095, 3645, 4095, + 4095, 3671, 4095, + 4095, 3704, 4095, + 4095, 3744, 4086, + 4095, 3793, 4045, + 4093, 3851, 3983, + 3990, 3919, 3884, + 0, 3448, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3717, + 0, 3449, 3717, + 0, 3449, 3717, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3450, 3716, + 0, 3451, 3715, + 0, 3452, 3715, + 0, 3453, 3713, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3707, + 0, 3464, 3703, + 0, 3469, 3698, + 0, 3476, 3691, + 0, 3485, 3682, + 0, 3497, 3669, + 0, 3512, 3652, + 0, 3532, 3627, + 0, 3557, 3592, + 0, 3588, 3540, + 0, 3627, 3460, + 0, 3675, 3325, + 0, 3731, 3043, + 0, 3797, 0, + 0, 3873, 0, + 0, 3448, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3717, + 0, 3449, 3717, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3451, 3716, + 0, 3451, 3715, + 0, 3452, 3715, + 0, 3453, 3713, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3707, + 0, 3464, 3703, + 0, 3469, 3698, + 0, 3476, 3692, + 0, 3485, 3682, + 0, 3497, 3670, + 0, 3512, 3652, + 0, 3532, 3627, + 0, 3557, 3592, + 0, 3588, 3540, + 0, 3627, 3460, + 0, 3675, 3325, + 0, 3731, 3043, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3717, + 0, 3449, 3717, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3451, 3716, + 0, 3451, 3716, + 0, 3452, 3715, + 0, 3453, 3714, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3707, + 0, 3464, 3703, + 0, 3469, 3698, + 0, 3476, 3692, + 0, 3485, 3682, + 0, 3497, 3670, + 0, 3512, 3652, + 0, 3532, 3627, + 0, 3557, 3592, + 0, 3588, 3540, + 0, 3627, 3461, + 0, 3675, 3326, + 0, 3731, 3043, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3717, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3451, 3716, + 0, 3451, 3716, + 0, 3452, 3715, + 0, 3453, 3714, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3707, + 0, 3464, 3703, + 0, 3469, 3698, + 0, 3476, 3692, + 0, 3485, 3682, + 0, 3497, 3670, + 0, 3512, 3652, + 0, 3532, 3627, + 0, 3557, 3592, + 0, 3588, 3541, + 0, 3627, 3461, + 0, 3675, 3326, + 0, 3731, 3043, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3717, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3451, 3716, + 0, 3451, 3716, + 0, 3452, 3715, + 0, 3453, 3714, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3707, + 0, 3464, 3704, + 0, 3469, 3699, + 0, 3476, 3692, + 0, 3485, 3682, + 0, 3497, 3670, + 0, 3512, 3652, + 0, 3532, 3628, + 0, 3557, 3592, + 0, 3588, 3541, + 0, 3627, 3461, + 0, 3675, 3326, + 0, 3731, 3044, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3451, 3716, + 0, 3451, 3716, + 0, 3452, 3715, + 0, 3453, 3714, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3707, + 0, 3464, 3704, + 0, 3469, 3699, + 0, 3476, 3692, + 0, 3485, 3683, + 0, 3497, 3670, + 0, 3512, 3652, + 0, 3532, 3628, + 0, 3557, 3593, + 0, 3588, 3541, + 0, 3627, 3461, + 0, 3675, 3326, + 0, 3731, 3044, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3450, 3717, + 0, 3450, 3717, + 0, 3451, 3717, + 0, 3451, 3716, + 0, 3452, 3715, + 0, 3454, 3714, + 0, 3455, 3712, + 0, 3457, 3710, + 0, 3460, 3708, + 0, 3464, 3704, + 0, 3469, 3699, + 0, 3476, 3692, + 0, 3485, 3683, + 0, 3497, 3670, + 0, 3512, 3653, + 0, 3532, 3628, + 0, 3557, 3593, + 0, 3588, 3541, + 0, 3627, 3461, + 0, 3675, 3327, + 0, 3731, 3045, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3449, 3718, + 0, 3450, 3718, + 0, 3450, 3717, + 0, 3451, 3717, + 0, 3451, 3716, + 0, 3452, 3715, + 0, 3454, 3714, + 0, 3455, 3713, + 0, 3457, 3711, + 0, 3460, 3708, + 0, 3464, 3704, + 0, 3470, 3699, + 0, 3476, 3692, + 0, 3485, 3683, + 0, 3497, 3670, + 0, 3512, 3653, + 0, 3532, 3628, + 0, 3557, 3593, + 0, 3589, 3541, + 0, 3627, 3462, + 0, 3675, 3327, + 0, 3731, 3046, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3718, + 0, 3450, 3718, + 0, 3450, 3718, + 0, 3450, 3718, + 0, 3451, 3717, + 0, 3451, 3716, + 0, 3452, 3716, + 0, 3454, 3714, + 0, 3455, 3713, + 0, 3458, 3711, + 0, 3460, 3708, + 0, 3464, 3704, + 0, 3470, 3699, + 0, 3476, 3693, + 0, 3485, 3683, + 0, 3497, 3671, + 0, 3512, 3653, + 0, 3532, 3629, + 0, 3557, 3593, + 0, 3589, 3542, + 0, 3627, 3462, + 0, 3675, 3328, + 0, 3731, 3047, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3449, 3719, + 0, 3450, 3719, + 0, 3450, 3718, + 0, 3450, 3718, + 0, 3451, 3718, + 0, 3452, 3717, + 0, 3452, 3716, + 0, 3454, 3715, + 0, 3455, 3713, + 0, 3458, 3711, + 0, 3461, 3709, + 0, 3465, 3705, + 0, 3470, 3700, + 0, 3477, 3693, + 0, 3486, 3684, + 0, 3497, 3671, + 0, 3513, 3654, + 0, 3532, 3629, + 0, 3557, 3594, + 0, 3589, 3542, + 0, 3628, 3463, + 0, 3675, 3329, + 0, 3731, 3049, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3719, + 0, 3450, 3719, + 0, 3450, 3719, + 0, 3450, 3719, + 0, 3450, 3719, + 0, 3451, 3718, + 0, 3452, 3717, + 0, 3453, 3717, + 0, 3454, 3715, + 0, 3456, 3714, + 0, 3458, 3712, + 0, 3461, 3709, + 0, 3465, 3705, + 0, 3470, 3700, + 0, 3477, 3694, + 0, 3486, 3684, + 0, 3497, 3672, + 0, 3513, 3654, + 0, 3532, 3630, + 0, 3557, 3595, + 0, 3589, 3543, + 0, 3628, 3464, + 0, 3675, 3330, + 0, 3731, 3051, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3721, + 0, 3449, 3721, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3449, 3720, + 0, 3450, 3720, + 0, 3450, 3720, + 0, 3450, 3720, + 0, 3450, 3720, + 0, 3451, 3719, + 0, 3451, 3719, + 0, 3452, 3718, + 0, 3453, 3717, + 0, 3454, 3716, + 0, 3456, 3715, + 0, 3458, 3713, + 0, 3461, 3710, + 0, 3465, 3706, + 0, 3470, 3701, + 0, 3477, 3694, + 0, 3486, 3685, + 0, 3498, 3672, + 0, 3513, 3655, + 0, 3532, 3631, + 0, 3557, 3596, + 0, 3589, 3544, + 0, 3628, 3465, + 0, 3675, 3332, + 0, 3731, 3055, + 0, 3797, 0, + 0, 3873, 0, + 0, 3449, 3721, + 0, 3449, 3721, + 0, 3449, 3721, + 0, 3450, 3721, + 0, 3450, 3721, + 0, 3450, 3721, + 0, 3450, 3721, + 0, 3450, 3721, + 0, 3450, 3721, + 0, 3450, 3721, + 0, 3451, 3720, + 0, 3451, 3720, + 0, 3452, 3719, + 0, 3453, 3718, + 0, 3454, 3717, + 0, 3456, 3716, + 0, 3458, 3714, + 0, 3461, 3711, + 0, 3465, 3707, + 0, 3470, 3702, + 0, 3477, 3695, + 0, 3486, 3686, + 0, 3498, 3674, + 0, 3513, 3656, + 0, 3533, 3632, + 0, 3558, 3597, + 0, 3589, 3546, + 0, 3628, 3467, + 0, 3675, 3334, + 0, 3732, 3059, + 0, 3798, 0, + 0, 3873, 0, + 0, 3450, 3723, + 0, 3450, 3723, + 0, 3450, 3723, + 0, 3450, 3723, + 0, 3450, 3723, + 0, 3450, 3723, + 0, 3450, 3722, + 0, 3450, 3722, + 0, 3451, 3722, + 0, 3451, 3722, + 0, 3451, 3721, + 0, 3452, 3721, + 0, 3452, 3720, + 0, 3453, 3719, + 0, 3455, 3718, + 0, 3456, 3717, + 0, 3458, 3715, + 0, 3461, 3712, + 0, 3465, 3708, + 0, 3471, 3703, + 0, 3477, 3697, + 0, 3486, 3687, + 0, 3498, 3675, + 0, 3513, 3658, + 0, 3533, 3633, + 0, 3558, 3599, + 0, 3589, 3548, + 0, 3628, 3469, + 0, 3675, 3337, + 0, 3732, 3064, + 0, 3798, 0, + 0, 3873, 0, + 0, 3450, 3724, + 0, 3450, 3724, + 0, 3450, 3724, + 0, 3450, 3724, + 0, 3450, 3724, + 0, 3450, 3724, + 0, 3451, 3724, + 0, 3451, 3724, + 0, 3451, 3724, + 0, 3451, 3723, + 0, 3452, 3723, + 0, 3452, 3723, + 0, 3453, 3722, + 0, 3454, 3721, + 0, 3455, 3720, + 0, 3457, 3719, + 0, 3459, 3717, + 0, 3462, 3714, + 0, 3466, 3710, + 0, 3471, 3705, + 0, 3478, 3698, + 0, 3487, 3689, + 0, 3498, 3677, + 0, 3514, 3659, + 0, 3533, 3635, + 0, 3558, 3601, + 0, 3590, 3550, + 0, 3628, 3472, + 0, 3676, 3341, + 0, 3732, 3071, + 0, 3798, 0, + 0, 3873, 0, + 0, 3451, 3727, + 0, 3451, 3727, + 0, 3451, 3727, + 0, 3451, 3727, + 0, 3451, 3727, + 0, 3451, 3726, + 0, 3451, 3726, + 0, 3451, 3726, + 0, 3452, 3726, + 0, 3452, 3726, + 0, 3452, 3725, + 0, 3453, 3725, + 0, 3453, 3724, + 0, 3454, 3723, + 0, 3456, 3722, + 0, 3457, 3721, + 0, 3459, 3719, + 0, 3462, 3716, + 0, 3466, 3712, + 0, 3471, 3708, + 0, 3478, 3701, + 0, 3487, 3692, + 0, 3499, 3679, + 0, 3514, 3662, + 0, 3534, 3638, + 0, 3559, 3604, + 0, 3590, 3553, + 0, 3629, 3476, + 0, 3676, 3346, + 0, 3732, 3081, + 0, 3798, 0, + 0, 3873, 0, + 0, 3451, 3730, + 0, 3452, 3730, + 0, 3452, 3730, + 0, 3452, 3730, + 0, 3452, 3729, + 0, 3452, 3729, + 0, 3452, 3729, + 0, 3452, 3729, + 0, 3452, 3729, + 0, 3453, 3729, + 0, 3453, 3728, + 0, 3453, 3728, + 0, 3454, 3727, + 0, 3455, 3726, + 0, 3456, 3725, + 0, 3458, 3724, + 0, 3460, 3722, + 0, 3463, 3719, + 0, 3467, 3716, + 0, 3472, 3711, + 0, 3479, 3704, + 0, 3488, 3695, + 0, 3500, 3683, + 0, 3515, 3666, + 0, 3534, 3642, + 0, 3559, 3608, + 0, 3591, 3558, + 0, 3629, 3481, + 0, 3676, 3353, + 0, 3733, 3093, + 0, 3798, 0, + 0, 3874, 0, + 0, 3453, 3734, + 0, 3453, 3734, + 0, 3453, 3734, + 0, 3453, 3734, + 0, 3453, 3733, + 0, 3453, 3733, + 0, 3453, 3733, + 0, 3453, 3733, + 0, 3453, 3733, + 0, 3454, 3733, + 0, 3454, 3732, + 0, 3454, 3732, + 0, 3455, 3731, + 0, 3456, 3730, + 0, 3457, 3729, + 0, 3459, 3728, + 0, 3461, 3726, + 0, 3464, 3723, + 0, 3468, 3720, + 0, 3473, 3715, + 0, 3480, 3708, + 0, 3489, 3699, + 0, 3501, 3687, + 0, 3516, 3670, + 0, 3535, 3646, + 0, 3560, 3613, + 0, 3591, 3563, + 0, 3630, 3488, + 0, 3677, 3362, + 0, 3733, 3109, + 0, 3799, 370, + 0, 3874, 0, + 0, 3454, 3739, + 0, 3454, 3739, + 0, 3454, 3739, + 0, 3454, 3739, + 0, 3454, 3739, + 0, 3454, 3739, + 0, 3454, 3738, + 0, 3454, 3738, + 0, 3455, 3738, + 0, 3455, 3738, + 0, 3455, 3738, + 0, 3456, 3737, + 0, 3457, 3737, + 0, 3457, 3736, + 0, 3459, 3735, + 0, 3460, 3733, + 0, 3463, 3731, + 0, 3465, 3729, + 0, 3469, 3725, + 0, 3474, 3720, + 0, 3481, 3714, + 0, 3490, 3705, + 0, 3502, 3693, + 0, 3517, 3676, + 0, 3536, 3653, + 0, 3561, 3620, + 0, 3592, 3571, + 0, 3631, 3497, + 0, 3678, 3374, + 0, 3734, 3129, + 0, 3800, 1731, + 0, 3875, 0, + 0, 3456, 3746, + 0, 3456, 3746, + 0, 3456, 3746, + 0, 3456, 3746, + 0, 3456, 3746, + 0, 3456, 3745, + 0, 3456, 3745, + 0, 3456, 3745, + 0, 3456, 3745, + 0, 3457, 3745, + 0, 3457, 3744, + 0, 3458, 3744, + 0, 3458, 3743, + 0, 3459, 3743, + 0, 3460, 3742, + 0, 3462, 3740, + 0, 3464, 3738, + 0, 3467, 3736, + 0, 3471, 3732, + 0, 3476, 3727, + 0, 3483, 3721, + 0, 3492, 3712, + 0, 3503, 3700, + 0, 3518, 3684, + 0, 3538, 3661, + 0, 3563, 3629, + 0, 3594, 3581, + 0, 3632, 3508, + 0, 3679, 3389, + 0, 3735, 3155, + 0, 3800, 2103, + 0, 3875, 0, + 0, 3458, 3755, + 0, 3458, 3755, + 0, 3458, 3755, + 0, 3458, 3755, + 0, 3458, 3755, + 0, 3458, 3755, + 0, 3458, 3754, + 0, 3459, 3754, + 0, 3459, 3754, + 0, 3459, 3754, + 0, 3460, 3754, + 0, 3460, 3753, + 0, 3461, 3753, + 0, 3462, 3752, + 0, 3463, 3751, + 0, 3465, 3749, + 0, 3467, 3747, + 0, 3470, 3745, + 0, 3473, 3741, + 0, 3479, 3737, + 0, 3485, 3731, + 0, 3494, 3722, + 0, 3506, 3710, + 0, 3521, 3694, + 0, 3540, 3672, + 0, 3565, 3640, + 0, 3595, 3594, + 0, 3634, 3524, + 0, 3681, 3409, + 0, 3736, 3187, + 0, 3802, 2357, + 0, 3876, 0, + 0, 3461, 3767, + 0, 3461, 3767, + 0, 3461, 3767, + 0, 3461, 3767, + 0, 3461, 3767, + 0, 3462, 3766, + 0, 3462, 3766, + 0, 3462, 3766, + 0, 3462, 3766, + 0, 3462, 3766, + 0, 3463, 3765, + 0, 3463, 3765, + 0, 3464, 3764, + 0, 3465, 3764, + 0, 3466, 3763, + 0, 3468, 3761, + 0, 3470, 3759, + 0, 3473, 3757, + 0, 3477, 3754, + 0, 3482, 3749, + 0, 3488, 3743, + 0, 3497, 3735, + 0, 3508, 3723, + 0, 3523, 3708, + 0, 3543, 3686, + 0, 3567, 3655, + 0, 3598, 3611, + 0, 3636, 3543, + 0, 3682, 3434, + 0, 3738, 3227, + 0, 3803, 2563, + 0, 3878, 0, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3782, + 0, 3466, 3781, + 0, 3467, 3781, + 0, 3467, 3781, + 0, 3467, 3780, + 0, 3468, 3780, + 0, 3469, 3779, + 0, 3470, 3778, + 0, 3472, 3777, + 0, 3474, 3775, + 0, 3477, 3773, + 0, 3481, 3769, + 0, 3486, 3765, + 0, 3492, 3759, + 0, 3501, 3751, + 0, 3512, 3740, + 0, 3527, 3725, + 0, 3546, 3704, + 0, 3570, 3675, + 0, 3601, 3632, + 0, 3639, 3568, + 0, 3685, 3465, + 0, 3740, 3276, + 0, 3805, 2743, + 0, 3879, 0, + 0, 3471, 3802, + 0, 3471, 3802, + 0, 3471, 3802, + 0, 3471, 3802, + 0, 3471, 3802, + 0, 3471, 3802, + 0, 3472, 3802, + 0, 3472, 3801, + 0, 3472, 3801, + 0, 3472, 3801, + 0, 3473, 3801, + 0, 3473, 3800, + 0, 3474, 3800, + 0, 3475, 3799, + 0, 3476, 3798, + 0, 3477, 3797, + 0, 3480, 3795, + 0, 3482, 3793, + 0, 3486, 3790, + 0, 3491, 3786, + 0, 3498, 3780, + 0, 3506, 3772, + 0, 3517, 3762, + 0, 3532, 3748, + 0, 3551, 3728, + 0, 3575, 3700, + 0, 3605, 3660, + 0, 3643, 3599, + 0, 3689, 3504, + 0, 3743, 3334, + 0, 3808, 2908, + 0, 3882, 0, + 1996, 3479, 3827, + 1994, 3479, 3827, + 1992, 3479, 3827, + 1990, 3479, 3827, + 1986, 3479, 3827, + 1981, 3479, 3827, + 1974, 3479, 3827, + 1965, 3479, 3827, + 1953, 3479, 3826, + 1935, 3480, 3826, + 1911, 3480, 3826, + 1877, 3480, 3826, + 1826, 3481, 3825, + 1748, 3482, 3824, + 1616, 3483, 3824, + 1346, 3485, 3822, + 0, 3487, 3821, + 0, 3490, 3819, + 0, 3493, 3816, + 0, 3498, 3812, + 0, 3505, 3806, + 0, 3513, 3799, + 0, 3524, 3789, + 0, 3538, 3776, + 0, 3557, 3757, + 0, 3581, 3731, + 0, 3611, 3694, + 0, 3648, 3638, + 0, 3693, 3551, + 0, 3748, 3401, + 0, 3811, 3063, + 0, 3885, 0, + 2986, 3488, 3859, + 2986, 3488, 3859, + 2986, 3488, 3859, + 2986, 3488, 3859, + 2985, 3488, 3859, + 2985, 3489, 3858, + 2984, 3489, 3858, + 2983, 3489, 3858, + 2982, 3489, 3858, + 2980, 3489, 3858, + 2977, 3490, 3858, + 2974, 3490, 3857, + 2970, 3491, 3857, + 2964, 3492, 3856, + 2956, 3493, 3855, + 2945, 3494, 3854, + 2931, 3496, 3853, + 2910, 3499, 3851, + 2881, 3503, 3848, + 2839, 3507, 3844, + 2775, 3514, 3839, + 2674, 3522, 3833, + 2489, 3533, 3824, + 1982, 3547, 3811, + 0, 3565, 3794, + 0, 3589, 3770, + 0, 3618, 3736, + 0, 3655, 3685, + 0, 3699, 3608, + 0, 3753, 3478, + 0, 3816, 3212, + 0, 3889, 0, + 3342, 3501, 3898, + 3342, 3501, 3898, + 3342, 3501, 3898, + 3341, 3501, 3898, + 3341, 3501, 3898, + 3341, 3501, 3898, + 3341, 3501, 3898, + 3340, 3501, 3897, + 3340, 3502, 3897, + 3339, 3502, 3897, + 3338, 3502, 3897, + 3336, 3503, 3897, + 3334, 3503, 3896, + 3332, 3504, 3896, + 3328, 3505, 3895, + 3323, 3507, 3894, + 3317, 3509, 3892, + 3308, 3511, 3891, + 3296, 3515, 3888, + 3280, 3520, 3885, + 3257, 3526, 3880, + 3224, 3534, 3874, + 3177, 3544, 3866, + 3104, 3558, 3854, + 2984, 3576, 3839, + 2749, 3599, 3817, + 1669, 3628, 3786, + 0, 3663, 3741, + 0, 3707, 3674, + 0, 3760, 3564, + 0, 3822, 3356, + 0, 3894, 2681, + 3590, 3517, 3945, + 3590, 3517, 3945, + 3590, 3517, 3945, + 3589, 3517, 3945, + 3589, 3518, 3945, + 3589, 3518, 3945, + 3589, 3518, 3945, + 3589, 3518, 3945, + 3588, 3518, 3945, + 3588, 3518, 3945, + 3587, 3519, 3945, + 3586, 3519, 3944, + 3585, 3520, 3944, + 3584, 3520, 3943, + 3582, 3522, 3943, + 3579, 3523, 3942, + 3576, 3525, 3941, + 3571, 3527, 3939, + 3564, 3531, 3937, + 3555, 3535, 3934, + 3543, 3541, 3930, + 3525, 3549, 3924, + 3501, 3559, 3917, + 3467, 3573, 3907, + 3417, 3590, 3893, + 3340, 3612, 3873, + 3211, 3640, 3846, + 2949, 3675, 3807, + 0, 3718, 3749, + 0, 3769, 3658, + 0, 3830, 3497, + 0, 3901, 3116, + 3792, 3538, 4002, + 3792, 3538, 4002, + 3792, 3538, 4002, + 3792, 3539, 4002, + 3792, 3539, 4002, + 3792, 3539, 4002, + 3792, 3539, 4002, + 3792, 3539, 4002, + 3792, 3539, 4002, + 3791, 3539, 4002, + 3791, 3540, 4001, + 3790, 3540, 4001, + 3790, 3541, 4001, + 3789, 3541, 4000, + 3787, 3542, 4000, + 3786, 3544, 3999, + 3783, 3546, 3998, + 3780, 3548, 3996, + 3776, 3551, 3994, + 3770, 3556, 3992, + 3763, 3561, 3988, + 3752, 3569, 3983, + 3738, 3579, 3977, + 3718, 3591, 3968, + 3690, 3608, 3956, + 3649, 3629, 3939, + 3588, 3656, 3916, + 3492, 3690, 3882, + 3319, 3731, 3834, + 2882, 3782, 3759, + 0, 3841, 3636, + 0, 3910, 3389, + 3971, 3565, 4068, + 3971, 3565, 4068, + 3971, 3565, 4068, + 3971, 3565, 4068, + 3971, 3565, 4068, + 3971, 3565, 4068, + 3971, 3565, 4068, + 3971, 3566, 4068, + 3970, 3566, 4068, + 3970, 3566, 4068, + 3970, 3566, 4068, + 3970, 3567, 4067, + 3969, 3567, 4067, + 3968, 3568, 4067, + 3968, 3569, 4066, + 3966, 3570, 4066, + 3965, 3572, 4065, + 3963, 3574, 4063, + 3960, 3577, 4062, + 3956, 3581, 4059, + 3951, 3587, 4056, + 3944, 3594, 4052, + 3935, 3603, 4047, + 3922, 3615, 4039, + 3904, 3631, 4029, + 3879, 3651, 4014, + 3844, 3677, 3995, + 3791, 3709, 3967, + 3710, 3749, 3927, + 3572, 3797, 3867, + 3281, 3855, 3772, + 0, 3922, 3604, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3599, 4095, + 4095, 3600, 4095, + 4095, 3600, 4095, + 4095, 3601, 4095, + 4095, 3601, 4095, + 4095, 3602, 4095, + 4095, 3603, 4095, + 4095, 3605, 4095, + 4095, 3607, 4095, + 4095, 3610, 4095, + 4095, 3614, 4095, + 4095, 3619, 4095, + 4095, 3625, 4095, + 4095, 3634, 4095, + 4095, 3645, 4095, + 4090, 3660, 4095, + 4073, 3679, 4095, + 4050, 3703, 4083, + 4018, 3734, 4060, + 3970, 3772, 4027, + 3897, 3818, 3980, + 3778, 3873, 3908, + 3543, 3938, 3789, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3640, 4095, + 4095, 3641, 4095, + 4095, 3641, 4095, + 4095, 3641, 4095, + 4095, 3642, 4095, + 4095, 3642, 4095, + 4095, 3643, 4095, + 4095, 3644, 4095, + 4095, 3646, 4095, + 4095, 3648, 4095, + 4095, 3650, 4095, + 4095, 3654, 4095, + 4095, 3658, 4095, + 4095, 3664, 4095, + 4095, 3672, 4095, + 4095, 3683, 4095, + 4095, 3696, 4095, + 4095, 3714, 4095, + 4095, 3736, 4095, + 4095, 3765, 4095, + 4095, 3800, 4095, + 4095, 3844, 4095, + 4067, 3896, 4043, + 3958, 3958, 3958 +] + } +} diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/test-grade_inv-Log2-48nits_32_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/test-grade_inv-Log2-48nits_32_LUT.exr new file mode 100644 index 0000000000..a01efd6e72 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/Test_Grade/test-grade_inv-Log2-48nits_32_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11862c33eb828f32df7dd1a7dd8843f7553379334553551aae0aaadb2100a01 +size 276701 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/displaymapperpassthrough.dds b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/displaymapperpassthrough.dds new file mode 100644 index 0000000000..42f736064e --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/displaymapperpassthrough.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20355376cea9da29e36086debf3d84a6453dcbd8c1616c3c57e5a6c0df0a9e0e +size 15105796 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/displaymapperpassthrough.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/displaymapperpassthrough.exr new file mode 100644 index 0000000000..dd1b951211 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/HDR/displaymapperpassthrough.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5a5fcf9eff8064f27f7f146db353fde7207fc36b10cfde95dc6b45941663bf +size 5046039 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/O3DE_HDR_Nuke_Color_Grading b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/O3DE_HDR_Nuke_Color_Grading new file mode 100644 index 0000000000..eab6fb7d9e --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/O3DE_HDR_Nuke_Color_Grading @@ -0,0 +1,57 @@ +#! C:/Program Files/Nuke13.0v3/nuke-13.0.3.dll -nx +version 13.0 v3 +define_window_layout_xml { + + + + + + + + + + + + + + + + + + + + + + + + + + + + +} +Root { + inputs 0 + name C:/Depot/o3de-engine/Gems/AtomLyIntegration/CommonFeatures/Tools/ColorGrading/TestData/Nuke/O3DE_HDR_Nuke_Color_Grading + project_directory "\[python \{nuke.script_directory()\}]" + label "This is a Nuke project template used to validate HDR / ACES color grading workflow in Nuke to generate 'Look Modification' (LMT) Luts for Oopen 3D Engine." + format "2048 1556 0 0 2048 1556 1 2K_Super_35(full-ap)" + proxy_type scale + proxy_format "1024 778 0 0 1024 778 1 1K_Super_35(full-ap)" + colorManagement Nuke + workingSpaceLUT linear + monitorLut sRGB + monitorOutLUT rec709 + int8Lut sRGB + int16Lut sRGB + logLut Cineon + floatLut linear +} +Viewer { + inputs 0 + frame 1 + frame_range 1-100 + name Viewer1 + xpos -40 + ypos -9 +} diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/O3DE_HDR_Nuke_Color_Grading.autosave b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/O3DE_HDR_Nuke_Color_Grading.autosave new file mode 100644 index 0000000000..00db0cd63d --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Nuke/O3DE_HDR_Nuke_Color_Grading.autosave @@ -0,0 +1,125 @@ +#! C:/Program Files/Nuke13.0v3/nuke-13.0.3.dll -nx +version 13.0 v3 +define_window_layout_xml { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +} +Root { + inputs 0 + name C:/Depot/o3de-engine/Gems/AtomLyIntegration/CommonFeatures/Tools/ColorGrading/TestData/Nuke/O3DE_HDR_Nuke_Color_Grading + project_directory C:/Depot/o3de-engine/Gems/AtomLyIntegration/CommonFeatures/Tools/ColorGrading/TestData/Nuke + label "This is a Nuke project template used to validate HDR / ACES color grading workflow in Nuke to generate 'Look Modification' (LMT) Luts for Oopen 3D Engine." + frame 16 + first_frame 16 + last_frame 32 + lock_range true + format "2048 1556 0 0 2048 1556 1 2K_Super_35(full-ap)" + proxy_type scale + proxy_format "1024 778 0 0 1024 778 1 1K_Super_35(full-ap)" + colorManagement OCIO + OCIOGPUSupport true + OCIO_config aces_1.0.3 + defaultViewerLUT "OCIO LUTs" + workingSpaceLUT scene_linear + monitorLut ACES/sRGB + monitorOutLUT "sRGB (ACES)" + int8Lut matte_paint + int16Lut texture_paint + logLut compositing_log + floatLut scene_linear +} +Read { + inputs 0 + file_type exr + file C:/Depot/o3de-engine/Gems/AtomLyIntegration/CommonFeatures/Tools/ColorGrading/LUTs/linear_lut_32.exr + format "1024 32 0 0 1024 32 1 " + origset true + colorspace scene_linear + name Read3 + xpos -1727 + ypos -81 +} +OCIOFileTransform { + file C:/Depot/o3de-engine/Tools/ColorGrading/OpenColorIO-Configs/aces_1.0.3/luts/Log2_48_nits_Shaper_to_linear.spi1d + working_space scene_linear + name OCIOFileTransform1 + xpos -1587 + ypos -45 +} +Viewer { + frame_range 16-32 + viewerProcess "sRGB (ACES)" + name Viewer3 + xpos -1586 + ypos 10 +} +Read { + inputs 0 + file_type exr + file C:/Depot/o3de-engine/Gems/AtomLyIntegration/CommonFeatures/Tools/ColorGrading/TestData/Nuke/HDR/displaymapperpassthrough.exr + format "1167 1618 0 0 1167 1618 1 " + origset true + colorspace scene_linear + name Read1 + xpos -1719 + ypos -421 +} +Read { + inputs 0 + file_type exr + file C:/Depot/o3de-engine/Gems/AtomLyIntegration/CommonFeatures/Tools/ColorGrading/LUTs/linear_lut_32.exr + format "1024 32 0 0 1024 32 1 " + origset true + colorspace "Utility - Log2 48 nits Shaper - AP1" + name Read2 + xpos -1720 + ypos -311 +} +Merge2 { + inputs 2 + Achannels {rgba.red rgba.green rgba.blue -rgba.alpha} + Bchannels {rgba.red rgba.green rgba.blue -rgba.alpha} + output {rgba.red rgba.green rgba.blue -rgba.alpha} + also_merge all + mix 0 + name Merge1 + selected true + xpos -1495 + ypos -340 +} +Viewer { + frame 16 + frame_range 16-32 + viewerProcess "sRGB (ACES)" + name Viewer2 + xpos -1495 + ypos -272 +} diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/framebuffer_ACEScg_to_sRGB_icc.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/framebuffer_ACEScg_to_sRGB_icc.exr new file mode 100644 index 0000000000..9daa58f75c --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/framebuffer_ACEScg_to_sRGB_icc.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:facad074b84df87a0ab4baaf2bd95552e6eca3fed79a56875c9815f32d885b8a +size 11949493 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/i_shaped/test_clt_32_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/i_shaped/test_clt_32_LUT.exr new file mode 100644 index 0000000000..a8c859147f --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/i_shaped/test_clt_32_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfdfefb553fffd1a799a62e205fe13ebd88f3327d97d20cb900af6465ecc2dae +size 61384 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/i_shaped/test_hue-sat_32_LUT.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/i_shaped/test_hue-sat_32_LUT.exr new file mode 100644 index 0000000000..ed8446a2ad --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/i_shaped/test_hue-sat_32_LUT.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfced5571e7d681cc565a9be07fa199ecfee0d70ad4104ccb47c75a525737445 +size 96548 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/Test_3DL_32_LUT.azasset b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/Test_3DL_32_LUT.azasset new file mode 100644 index 0000000000..b643955084 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/Test_3DL_32_LUT.azasset @@ -0,0 +1,4922 @@ +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "LookupTableAsset", + "ClassData": { + "Name": "LookupTable", + "Intervals": [0, 64, 128, 192, 256, 320, 384, 448, 512, 575, 639, 703, 767, 831, 895, 959, 1023], + "Values": [128, 193, 337, +96, 193, 353, +145, 241, 418, +177, 273, 514, +225, 273, 562, +337, 337, 707, +385, 385, 803, +450, 450, 883, +562, 514, 996, +594, 578, 1108, +691, 658, 1220, +739, 723, 1317, +803, 787, 1429, +915, 867, 1574, +980, 915, 1638, +1028, 996, 1766, +1092, 1044, 1847, +257, 353, 401, +289, 353, 434, +305, 369, 514, +273, 385, 594, +321, 385, 642, +353, 466, 771, +434, 482, 835, +498, 562, 964, +562, 594, 1060, +642, 658, 1140, +691, 723, 1253, +755, 787, 1349, +851, 835, 1477, +899, 899, 1574, +947, 964, 1670, +1044, 1044, 1783, +1124, 1076, 1863, +337, 530, 482, +385, 546, 530, +401, 562, 594, +401, 562, 691, +434, 594, 771, +450, 642, 867, +482, 642, 931, +562, 674, 1028, +610, 739, 1108, +658, 771, 1204, +739, 819, 1317, +851, 899, 1445, +867, 915, 1510, +947, 980, 1590, +1012, 1044, 1718, +1060, 1076, 1815, +1140, 1140, 1927, +466, 771, 642, +482, 771, 691, +482, 771, 755, +514, 787, 803, +514, 803, 915, +578, 803, 964, +626, 851, 1044, +658, 867, 1124, +707, 899, 1220, +771, 931, 1301, +787, 947, 1381, +883, 1012, 1477, +931, 1044, 1590, +1012, 1108, 1686, +1044, 1140, 1766, +1140, 1204, 1879, +1188, 1253, 1991, +691, 1012, 755, +674, 1012, 803, +674, 980, 883, +658, 980, 947, +658, 1012, 980, +642, 1012, 1092, +707, 1012, 1156, +755, 1060, 1269, +771, 1060, 1317, +835, 1108, 1397, +931, 1156, 1510, +947, 1156, 1574, +980, 1188, 1654, +1076, 1237, 1783, +1140, 1285, 1863, +1188, 1301, 1911, +1237, 1349, 2023, +851, 1220, 899, +803, 1204, 931, +835, 1204, 996, +819, 1204, 1060, +835, 1204, 1124, +867, 1204, 1156, +883, 1220, 1253, +899, 1237, 1349, +931, 1253, 1429, +996, 1269, 1510, +996, 1317, 1590, +1060, 1349, 1670, +1124, 1349, 1750, +1156, 1397, 1847, +1253, 1429, 1943, +1285, 1461, 2039, +1333, 1477, 2104, +980, 1413, 1012, +980, 1429, 1060, +980, 1413, 1108, +980, 1413, 1172, +996, 1397, 1237, +1012, 1429, 1333, +1044, 1429, 1365, +1076, 1445, 1445, +1044, 1445, 1526, +1124, 1477, 1622, +1140, 1493, 1702, +1156, 1493, 1750, +1188, 1558, 1863, +1285, 1558, 1943, +1349, 1590, 2023, +1381, 1622, 2104, +1461, 1654, 2216, +1156, 1606, 1124, +1140, 1622, 1172, +1140, 1606, 1253, +1172, 1622, 1317, +1188, 1622, 1381, +1172, 1638, 1445, +1188, 1638, 1510, +1220, 1638, 1542, +1237, 1638, 1606, +1301, 1654, 1718, +1333, 1670, 1799, +1365, 1702, 1879, +1397, 1734, 1975, +1429, 1734, 2039, +1477, 1766, 2104, +1526, 1815, 2216, +1558, 1831, 2296, +1317, 1815, 1285, +1285, 1831, 1317, +1301, 1831, 1365, +1317, 1815, 1397, +1333, 1799, 1445, +1349, 1831, 1542, +1381, 1831, 1622, +1381, 1815, 1654, +1413, 1863, 1734, +1461, 1863, 1799, +1477, 1863, 1895, +1510, 1895, 1991, +1542, 1895, 2023, +1638, 1943, 2136, +1670, 1927, 2184, +1670, 1943, 2264, +1734, 1991, 2377, +1542, 2007, 1381, +1510, 2023, 1381, +1526, 2023, 1445, +1542, 2023, 1526, +1542, 2007, 1590, +1574, 2023, 1654, +1558, 2023, 1686, +1606, 2039, 1766, +1606, 2023, 1815, +1654, 2056, 1863, +1686, 2072, 1943, +1718, 2088, 2072, +1734, 2104, 2168, +1766, 2120, 2248, +1847, 2136, 2296, +1927, 2152, 2361, +1975, 2184, 2457, +1734, 2232, 1493, +1766, 2248, 1510, +1734, 2232, 1526, +1766, 2248, 1590, +1766, 2232, 1686, +1815, 2232, 1766, +1799, 2232, 1815, +1847, 2264, 1927, +1831, 2264, 1927, +1879, 2280, 2007, +1895, 2280, 2072, +1911, 2280, 2136, +1959, 2312, 2232, +1975, 2329, 2345, +2023, 2361, 2425, +2072, 2329, 2441, +2104, 2361, 2537, +1975, 2457, 1654, +1943, 2457, 1638, +1959, 2457, 1670, +1975, 2441, 1734, +1991, 2441, 1799, +2007, 2441, 1895, +2023, 2441, 1943, +2023, 2441, 1991, +2023, 2441, 2072, +2072, 2473, 2168, +2104, 2473, 2200, +2120, 2473, 2264, +2184, 2489, 2296, +2216, 2505, 2377, +2200, 2521, 2537, +2248, 2553, 2634, +2264, 2537, 2682, +2152, 2650, 1734, +2168, 2634, 1783, +2120, 2650, 1815, +2136, 2650, 1879, +2168, 2650, 1959, +2200, 2650, 2023, +2216, 2650, 2088, +2200, 2666, 2120, +2248, 2682, 2200, +2232, 2682, 2264, +2248, 2682, 2329, +2280, 2682, 2377, +2312, 2698, 2457, +2345, 2714, 2537, +2361, 2714, 2602, +2393, 2730, 2714, +2425, 2762, 2810, +2312, 2858, 1895, +2329, 2858, 1895, +2329, 2875, 1959, +2296, 2858, 1991, +2329, 2875, 2056, +2345, 2858, 2120, +2377, 2875, 2184, +2377, 2875, 2296, +2393, 2891, 2329, +2409, 2875, 2361, +2473, 2875, 2441, +2441, 2875, 2489, +2489, 2891, 2553, +2521, 2907, 2618, +2537, 2907, 2698, +2585, 2923, 2778, +2618, 2955, 2907, +2553, 3067, 2023, +2537, 3067, 2056, +2489, 3067, 2088, +2521, 3067, 2120, +2537, 3051, 2184, +2537, 3051, 2280, +2585, 3067, 2312, +2602, 3051, 2377, +2602, 3083, 2425, +2602, 3067, 2505, +2618, 3083, 2553, +2634, 3083, 2618, +2666, 3083, 2666, +2698, 3083, 2714, +2730, 3115, 2794, +2746, 3115, 2907, +2778, 3131, 2987, +2714, 3276, 2184, +2714, 3276, 2216, +2682, 3292, 2232, +2698, 3292, 2280, +2698, 3292, 2296, +2746, 3276, 2393, +2730, 3292, 2457, +2762, 3292, 2521, +2762, 3276, 2585, +2778, 3260, 2634, +2746, 3260, 2698, +2810, 3276, 2746, +2842, 3292, 2842, +2826, 3292, 2858, +2858, 3292, 2907, +2875, 3308, 3003, +2923, 3324, 3067, +2891, 3501, 2345, +2891, 3485, 2377, +2875, 3485, 2361, +2842, 3501, 2377, +2858, 3485, 2425, +2907, 3501, 2521, +2907, 3485, 2602, +2939, 3485, 2650, +2939, 3469, 2698, +2955, 3501, 2762, +2955, 3485, 2810, +3035, 3485, 2891, +3019, 3501, 2971, +3067, 3517, 3051, +3067, 3517, 3115, +3115, 3533, 3164, +3099, 3549, 3244, +273, 225, 353, +273, 241, 385, +225, 273, 450, +257, 257, 514, +305, 321, 626, +369, 353, 707, +434, 434, 819, +498, 482, 915, +562, 562, 1028, +594, 594, 1124, +723, 658, 1220, +755, 723, 1333, +819, 819, 1445, +899, 883, 1590, +980, 915, 1638, +1060, 1012, 1750, +1108, 1060, 1863, +337, 353, 401, +337, 369, 450, +321, 401, 546, +337, 401, 594, +369, 434, 707, +418, 466, 771, +466, 514, 867, +546, 578, 996, +578, 626, 1076, +691, 674, 1156, +723, 739, 1269, +755, 803, 1365, +867, 851, 1493, +931, 915, 1558, +996, 980, 1670, +1060, 1044, 1783, +1124, 1076, 1863, +434, 546, 482, +418, 562, 546, +466, 594, 626, +466, 594, 707, +466, 642, 819, +482, 642, 867, +514, 674, 964, +578, 707, 1028, +626, 755, 1140, +707, 787, 1220, +755, 835, 1333, +835, 883, 1429, +915, 931, 1510, +947, 996, 1606, +1028, 1060, 1734, +1076, 1076, 1799, +1140, 1140, 1927, +562, 771, 594, +530, 787, 707, +546, 803, 771, +578, 803, 803, +578, 803, 867, +594, 819, 980, +642, 867, 1076, +658, 883, 1140, +739, 915, 1237, +771, 931, 1301, +787, 980, 1413, +883, 1012, 1493, +947, 1060, 1574, +996, 1108, 1670, +1060, 1140, 1783, +1140, 1204, 1879, +1220, 1237, 1991, +723, 996, 755, +691, 996, 819, +707, 996, 883, +674, 1012, 964, +707, 1012, 996, +723, 1028, 1092, +723, 1044, 1172, +787, 1060, 1253, +819, 1092, 1317, +851, 1124, 1413, +931, 1156, 1510, +964, 1172, 1590, +1012, 1172, 1654, +1076, 1237, 1783, +1140, 1285, 1863, +1220, 1333, 1943, +1285, 1349, 2039, +851, 1220, 867, +835, 1220, 931, +835, 1220, 996, +835, 1220, 1076, +851, 1204, 1140, +867, 1204, 1156, +883, 1220, 1253, +915, 1253, 1381, +980, 1269, 1445, +996, 1285, 1510, +1012, 1317, 1606, +1108, 1349, 1686, +1124, 1365, 1750, +1156, 1381, 1847, +1237, 1413, 1927, +1285, 1445, 2039, +1349, 1493, 2104, +1028, 1413, 996, +996, 1413, 1044, +1012, 1413, 1140, +1028, 1413, 1188, +1044, 1413, 1253, +1012, 1413, 1333, +1060, 1429, 1333, +1076, 1445, 1445, +1060, 1477, 1542, +1108, 1477, 1606, +1140, 1493, 1702, +1172, 1510, 1783, +1220, 1542, 1863, +1285, 1558, 1959, +1349, 1606, 2023, +1413, 1622, 2120, +1477, 1670, 2232, +1188, 1606, 1156, +1140, 1622, 1172, +1156, 1606, 1220, +1156, 1606, 1317, +1172, 1606, 1381, +1188, 1622, 1461, +1220, 1622, 1510, +1237, 1654, 1558, +1253, 1654, 1622, +1285, 1686, 1734, +1333, 1670, 1799, +1381, 1718, 1895, +1397, 1718, 1959, +1429, 1734, 2039, +1477, 1766, 2104, +1526, 1815, 2200, +1558, 1831, 2296, +1333, 1815, 1253, +1349, 1815, 1301, +1317, 1831, 1349, +1333, 1815, 1397, +1365, 1815, 1493, +1365, 1831, 1558, +1365, 1815, 1590, +1397, 1847, 1686, +1429, 1847, 1718, +1461, 1863, 1799, +1477, 1879, 1911, +1493, 1895, 2007, +1574, 1927, 2039, +1670, 1927, 2136, +1686, 1927, 2200, +1670, 1943, 2264, +1718, 1991, 2377, +1558, 2023, 1365, +1542, 2023, 1381, +1542, 2023, 1445, +1558, 2023, 1510, +1574, 2023, 1606, +1574, 2023, 1654, +1622, 2023, 1702, +1606, 2039, 1766, +1622, 2056, 1831, +1654, 2056, 1863, +1686, 2056, 1943, +1718, 2088, 2056, +1718, 2088, 2152, +1766, 2136, 2248, +1879, 2120, 2264, +1927, 2152, 2361, +1975, 2184, 2473, +1799, 2232, 1477, +1783, 2232, 1510, +1766, 2232, 1558, +1783, 2232, 1622, +1799, 2216, 1670, +1815, 2232, 1766, +1815, 2248, 1815, +1847, 2264, 1895, +1879, 2280, 1975, +1879, 2296, 2023, +1911, 2296, 2088, +1911, 2280, 2136, +2007, 2312, 2248, +1975, 2329, 2345, +2056, 2345, 2393, +2072, 2345, 2457, +2120, 2361, 2553, +2007, 2457, 1654, +1991, 2473, 1654, +1959, 2457, 1670, +1975, 2441, 1734, +1991, 2441, 1799, +2007, 2441, 1863, +2039, 2457, 1959, +2072, 2473, 2039, +2039, 2457, 2088, +2072, 2473, 2168, +2120, 2489, 2216, +2120, 2457, 2264, +2168, 2505, 2361, +2200, 2505, 2441, +2216, 2537, 2553, +2232, 2537, 2618, +2248, 2537, 2682, +2168, 2666, 1750, +2168, 2650, 1799, +2120, 2650, 1815, +2168, 2666, 1879, +2168, 2650, 1959, +2184, 2650, 2023, +2216, 2650, 2056, +2216, 2666, 2136, +2216, 2650, 2184, +2248, 2666, 2248, +2248, 2682, 2345, +2280, 2682, 2377, +2312, 2698, 2457, +2329, 2698, 2521, +2377, 2730, 2618, +2393, 2746, 2714, +2425, 2762, 2794, +2345, 2842, 1895, +2329, 2858, 1895, +2296, 2858, 1943, +2312, 2875, 1959, +2329, 2875, 2056, +2345, 2858, 2120, +2377, 2875, 2200, +2393, 2875, 2264, +2425, 2875, 2329, +2409, 2875, 2361, +2473, 2875, 2441, +2489, 2875, 2505, +2505, 2891, 2553, +2505, 2875, 2602, +2553, 2907, 2698, +2585, 2923, 2778, +2602, 2955, 2891, +2537, 3067, 2023, +2569, 3067, 2056, +2505, 3067, 2056, +2521, 3067, 2120, +2537, 3067, 2184, +2569, 3083, 2264, +2585, 3067, 2329, +2585, 3051, 2377, +2602, 3083, 2425, +2602, 3067, 2521, +2634, 3083, 2602, +2618, 3067, 2618, +2666, 3083, 2666, +2698, 3099, 2714, +2730, 3115, 2794, +2778, 3131, 2891, +2778, 3131, 2987, +2714, 3276, 2184, +2746, 3308, 2216, +2698, 3308, 2232, +2714, 3308, 2312, +2714, 3308, 2296, +2730, 3292, 2361, +2730, 3292, 2457, +2778, 3276, 2553, +2778, 3276, 2585, +2778, 3260, 2634, +2762, 3276, 2698, +2794, 3260, 2730, +2826, 3292, 2826, +2810, 3276, 2858, +2842, 3292, 2923, +2875, 3308, 3003, +2939, 3340, 3083, +2891, 3485, 2345, +2875, 3485, 2329, +2875, 3485, 2377, +2842, 3501, 2377, +2891, 3517, 2457, +2907, 3501, 2521, +2907, 3485, 2569, +2907, 3485, 2666, +2939, 3485, 2714, +2971, 3485, 2778, +3019, 3501, 2826, +3035, 3485, 2891, +3035, 3517, 2971, +3051, 3517, 3051, +3083, 3533, 3131, +3099, 3517, 3164, +3148, 3533, 3212, +385, 257, 369, +353, 289, 401, +369, 305, 482, +401, 337, 594, +401, 337, 642, +434, 401, 771, +482, 466, 835, +562, 530, 947, +578, 578, 1060, +674, 626, 1124, +723, 707, 1253, +803, 755, 1349, +883, 835, 1477, +915, 883, 1558, +1044, 947, 1670, +1076, 1012, 1766, +1108, 1060, 1863, +498, 369, 385, +450, 401, 498, +434, 434, 578, +401, 466, 626, +450, 498, 723, +514, 514, 803, +562, 594, 931, +578, 610, 996, +642, 642, 1076, +691, 707, 1188, +755, 771, 1285, +835, 835, 1413, +867, 867, 1477, +964, 915, 1574, +996, 996, 1670, +1108, 1060, 1815, +1140, 1108, 1895, +562, 594, 514, +562, 610, 578, +530, 610, 674, +514, 642, 739, +514, 626, 803, +562, 674, 883, +610, 707, 980, +658, 755, 1076, +674, 771, 1156, +755, 819, 1237, +819, 883, 1365, +851, 915, 1445, +931, 964, 1542, +980, 1012, 1622, +1076, 1076, 1766, +1076, 1092, 1799, +1172, 1172, 1959, +658, 787, 610, +642, 803, 658, +610, 803, 755, +626, 819, 819, +642, 835, 915, +674, 851, 980, +707, 883, 1092, +723, 899, 1172, +771, 947, 1269, +771, 964, 1349, +851, 996, 1445, +915, 1044, 1493, +996, 1092, 1606, +1012, 1108, 1686, +1092, 1172, 1783, +1140, 1220, 1895, +1253, 1269, 1959, +771, 1012, 755, +771, 1012, 803, +723, 1012, 899, +739, 1028, 964, +755, 1028, 1012, +771, 1044, 1108, +787, 1060, 1204, +819, 1092, 1285, +851, 1092, 1333, +915, 1140, 1429, +931, 1156, 1510, +996, 1172, 1590, +1044, 1220, 1702, +1108, 1253, 1783, +1172, 1301, 1847, +1253, 1317, 1959, +1285, 1365, 2023, +883, 1204, 835, +915, 1220, 931, +867, 1220, 1012, +883, 1220, 1060, +899, 1220, 1156, +931, 1220, 1188, +947, 1237, 1285, +947, 1253, 1365, +980, 1269, 1445, +1012, 1285, 1526, +1060, 1333, 1622, +1092, 1333, 1670, +1140, 1381, 1766, +1220, 1397, 1863, +1269, 1445, 1959, +1317, 1477, 2039, +1381, 1477, 2120, +1060, 1413, 996, +1044, 1413, 1028, +1028, 1429, 1124, +1044, 1429, 1172, +1060, 1429, 1269, +1076, 1445, 1333, +1108, 1445, 1365, +1076, 1445, 1445, +1092, 1461, 1542, +1124, 1493, 1622, +1220, 1526, 1734, +1204, 1542, 1799, +1237, 1558, 1879, +1317, 1574, 1943, +1365, 1606, 2039, +1413, 1622, 2120, +1477, 1654, 2200, +1188, 1606, 1108, +1204, 1606, 1188, +1172, 1622, 1253, +1188, 1622, 1301, +1237, 1622, 1397, +1220, 1638, 1429, +1253, 1654, 1526, +1285, 1654, 1574, +1285, 1654, 1622, +1317, 1670, 1734, +1349, 1702, 1815, +1381, 1718, 1895, +1429, 1718, 1959, +1445, 1750, 2023, +1493, 1783, 2120, +1574, 1815, 2216, +1622, 1847, 2312, +1365, 1815, 1253, +1365, 1815, 1285, +1333, 1815, 1365, +1365, 1815, 1397, +1397, 1831, 1477, +1397, 1815, 1558, +1413, 1831, 1622, +1413, 1863, 1702, +1461, 1863, 1750, +1477, 1879, 1815, +1493, 1879, 1911, +1542, 1879, 1975, +1606, 1911, 2039, +1670, 1927, 2136, +1686, 1927, 2200, +1686, 1975, 2280, +1766, 2007, 2361, +1558, 2023, 1365, +1574, 2007, 1381, +1542, 2039, 1461, +1558, 2023, 1510, +1590, 2039, 1590, +1606, 2023, 1654, +1638, 2056, 1718, +1638, 2039, 1766, +1670, 2056, 1847, +1702, 2056, 1879, +1702, 2088, 1991, +1766, 2088, 2072, +1783, 2104, 2152, +1847, 2136, 2216, +1879, 2120, 2264, +1911, 2136, 2345, +1975, 2184, 2473, +1799, 2248, 1477, +1783, 2232, 1477, +1799, 2264, 1558, +1799, 2248, 1638, +1799, 2216, 1670, +1831, 2232, 1750, +1831, 2216, 1799, +1863, 2264, 1895, +1895, 2280, 1943, +1911, 2280, 2023, +1959, 2296, 2072, +1975, 2296, 2120, +2007, 2329, 2248, +2039, 2329, 2329, +2056, 2345, 2393, +2088, 2361, 2473, +2120, 2377, 2553, +2007, 2457, 1654, +2023, 2457, 1622, +1975, 2457, 1638, +2007, 2457, 1718, +2007, 2441, 1799, +2039, 2425, 1879, +2039, 2457, 1927, +2072, 2457, 2039, +2039, 2457, 2088, +2072, 2473, 2136, +2104, 2473, 2200, +2168, 2489, 2232, +2152, 2489, 2345, +2200, 2521, 2441, +2216, 2521, 2537, +2248, 2553, 2634, +2264, 2553, 2698, +2168, 2666, 1750, +2152, 2666, 1783, +2152, 2666, 1815, +2168, 2650, 1863, +2200, 2682, 1943, +2216, 2666, 2007, +2216, 2650, 2056, +2264, 2682, 2152, +2248, 2682, 2216, +2264, 2682, 2264, +2296, 2682, 2345, +2280, 2682, 2377, +2312, 2698, 2457, +2329, 2698, 2521, +2377, 2730, 2618, +2393, 2746, 2730, +2425, 2762, 2794, +2345, 2875, 1911, +2345, 2875, 1911, +2345, 2891, 1943, +2345, 2875, 1991, +2345, 2875, 2039, +2345, 2875, 2120, +2409, 2875, 2232, +2409, 2891, 2280, +2425, 2875, 2329, +2457, 2891, 2377, +2489, 2891, 2441, +2505, 2891, 2521, +2521, 2875, 2537, +2569, 2907, 2634, +2553, 2907, 2698, +2618, 2907, 2778, +2618, 2955, 2907, +2553, 3067, 2039, +2569, 3067, 2056, +2537, 3067, 2072, +2521, 3067, 2120, +2553, 3083, 2200, +2553, 3067, 2248, +2585, 3067, 2312, +2618, 3083, 2409, +2634, 3067, 2457, +2634, 3099, 2505, +2634, 3083, 2585, +2666, 3083, 2634, +2666, 3099, 2682, +2730, 3115, 2746, +2746, 3131, 2810, +2778, 3131, 2891, +2778, 3131, 2971, +2746, 3308, 2200, +2730, 3292, 2200, +2682, 3292, 2216, +2714, 3308, 2296, +2746, 3308, 2345, +2762, 3292, 2393, +2778, 3276, 2457, +2746, 3276, 2521, +2762, 3276, 2569, +2778, 3260, 2634, +2794, 3276, 2714, +2794, 3276, 2746, +2842, 3292, 2794, +2875, 3292, 2875, +2858, 3292, 2907, +2891, 3308, 2987, +2923, 3340, 3099, +2891, 3485, 2345, +2891, 3485, 2345, +2939, 3501, 2361, +2875, 3485, 2409, +2858, 3485, 2425, +2907, 3501, 2489, +2907, 3485, 2569, +2923, 3485, 2634, +2955, 3501, 2714, +2987, 3485, 2746, +3019, 3501, 2842, +3051, 3517, 2923, +3067, 3501, 2971, +3051, 3517, 3051, +3099, 3533, 3131, +3131, 3533, 3180, +3164, 3549, 3228, +594, 321, 466, +530, 369, 498, +498, 401, 562, +530, 418, 658, +562, 450, 707, +546, 482, 787, +594, 562, 915, +642, 594, 996, +707, 626, 1076, +755, 707, 1204, +787, 755, 1285, +851, 803, 1397, +899, 867, 1493, +1012, 915, 1574, +1060, 980, 1670, +1108, 1060, 1815, +1188, 1108, 1895, +658, 450, 466, +610, 450, 546, +546, 482, 594, +578, 514, 674, +562, 562, 771, +594, 594, 867, +594, 610, 931, +642, 642, 1028, +707, 723, 1124, +739, 739, 1204, +803, 803, 1317, +899, 883, 1445, +931, 899, 1510, +996, 947, 1606, +1060, 1012, 1702, +1092, 1076, 1783, +1188, 1140, 1927, +658, 626, 514, +674, 626, 562, +642, 642, 723, +658, 658, 787, +626, 691, 851, +610, 723, 947, +658, 739, 996, +707, 787, 1092, +739, 803, 1172, +803, 867, 1301, +867, 883, 1381, +883, 915, 1445, +947, 980, 1542, +1028, 1028, 1654, +1092, 1092, 1750, +1156, 1124, 1863, +1204, 1188, 1943, +755, 835, 642, +755, 819, 674, +739, 819, 755, +739, 851, 867, +723, 867, 931, +755, 899, 1044, +787, 915, 1108, +819, 947, 1204, +819, 964, 1269, +851, 996, 1349, +899, 1012, 1413, +964, 1076, 1526, +1028, 1092, 1622, +1076, 1140, 1718, +1156, 1188, 1815, +1220, 1237, 1927, +1253, 1269, 1975, +835, 1028, 739, +835, 1012, 787, +819, 1028, 867, +803, 1044, 996, +835, 1060, 1060, +851, 1076, 1156, +883, 1092, 1188, +883, 1108, 1269, +931, 1124, 1381, +964, 1140, 1461, +980, 1172, 1526, +1028, 1204, 1622, +1092, 1253, 1702, +1140, 1285, 1799, +1220, 1301, 1863, +1285, 1349, 1975, +1349, 1397, 2072, +980, 1220, 867, +964, 1220, 915, +964, 1237, 996, +931, 1220, 1076, +947, 1220, 1156, +980, 1237, 1204, +996, 1253, 1301, +1028, 1269, 1381, +1060, 1285, 1461, +1044, 1317, 1558, +1092, 1349, 1622, +1140, 1349, 1686, +1188, 1381, 1783, +1253, 1429, 1863, +1301, 1461, 1959, +1381, 1493, 2056, +1429, 1526, 2120, +1124, 1429, 980, +1108, 1429, 1028, +1124, 1429, 1108, +1108, 1445, 1204, +1124, 1461, 1301, +1124, 1445, 1349, +1108, 1445, 1365, +1156, 1477, 1493, +1172, 1493, 1558, +1188, 1493, 1654, +1204, 1526, 1734, +1220, 1558, 1815, +1269, 1558, 1895, +1365, 1590, 1959, +1397, 1606, 2039, +1445, 1638, 2104, +1510, 1686, 2216, +1237, 1638, 1124, +1269, 1622, 1188, +1285, 1638, 1220, +1253, 1638, 1301, +1285, 1622, 1381, +1269, 1638, 1445, +1285, 1654, 1542, +1349, 1670, 1558, +1349, 1670, 1622, +1365, 1686, 1750, +1397, 1718, 1847, +1413, 1718, 1911, +1461, 1750, 1991, +1461, 1766, 2039, +1558, 1815, 2152, +1574, 1815, 2232, +1638, 1863, 2345, +1413, 1831, 1220, +1429, 1831, 1285, +1445, 1831, 1349, +1397, 1831, 1397, +1429, 1831, 1477, +1445, 1847, 1574, +1429, 1847, 1638, +1477, 1863, 1718, +1493, 1863, 1750, +1526, 1895, 1831, +1542, 1895, 1895, +1574, 1911, 1975, +1654, 1927, 2072, +1686, 1943, 2152, +1718, 1959, 2232, +1766, 1991, 2329, +1783, 1991, 2361, +1622, 2039, 1349, +1638, 2039, 1413, +1654, 2056, 1461, +1606, 2039, 1542, +1638, 2039, 1574, +1654, 2056, 1670, +1670, 2039, 1718, +1686, 2039, 1783, +1702, 2072, 1863, +1718, 2072, 1911, +1750, 2088, 1975, +1750, 2088, 2072, +1831, 2136, 2152, +1831, 2120, 2200, +1895, 2136, 2280, +1959, 2136, 2361, +1991, 2200, 2473, +1847, 2248, 1477, +1847, 2248, 1493, +1831, 2248, 1526, +1815, 2248, 1606, +1831, 2248, 1670, +1863, 2264, 1783, +1879, 2264, 1847, +1911, 2264, 1879, +1927, 2280, 1959, +1927, 2296, 2023, +1975, 2312, 2072, +1991, 2312, 2152, +2007, 2329, 2248, +2056, 2361, 2345, +2056, 2345, 2393, +2136, 2361, 2489, +2136, 2345, 2537, +2023, 2457, 1590, +2072, 2457, 1638, +2039, 2441, 1654, +2007, 2441, 1734, +2056, 2457, 1815, +2056, 2441, 1863, +2104, 2473, 1959, +2072, 2457, 2007, +2104, 2473, 2072, +2120, 2473, 2152, +2152, 2473, 2216, +2168, 2505, 2280, +2184, 2505, 2345, +2184, 2521, 2473, +2216, 2537, 2553, +2264, 2553, 2602, +2329, 2553, 2682, +2200, 2650, 1750, +2232, 2666, 1799, +2216, 2666, 1815, +2184, 2666, 1847, +2216, 2682, 1959, +2232, 2682, 2023, +2264, 2650, 2072, +2280, 2682, 2152, +2280, 2666, 2216, +2280, 2698, 2280, +2296, 2682, 2345, +2345, 2698, 2393, +2361, 2714, 2473, +2409, 2714, 2521, +2425, 2714, 2585, +2409, 2762, 2730, +2441, 2762, 2810, +2393, 2891, 1927, +2393, 2891, 1927, +2393, 2891, 1959, +2361, 2891, 2007, +2377, 2875, 2072, +2409, 2875, 2152, +2425, 2875, 2216, +2441, 2875, 2312, +2473, 2891, 2361, +2489, 2875, 2377, +2473, 2875, 2441, +2505, 2891, 2521, +2553, 2907, 2569, +2553, 2891, 2618, +2585, 2907, 2698, +2634, 2923, 2794, +2634, 2939, 2891, +2553, 3083, 2039, +2569, 3083, 2039, +2585, 3083, 2120, +2553, 3083, 2104, +2553, 3083, 2168, +2569, 3067, 2248, +2585, 3051, 2280, +2618, 3035, 2377, +2634, 3083, 2473, +2634, 3083, 2505, +2650, 3067, 2569, +2682, 3099, 2650, +2730, 3099, 2698, +2714, 3115, 2730, +2762, 3131, 2810, +2794, 3148, 2891, +2794, 3148, 2987, +2778, 3292, 2200, +2746, 3308, 2200, +2762, 3292, 2248, +2730, 3308, 2280, +2746, 3292, 2296, +2762, 3276, 2361, +2778, 3292, 2457, +2794, 3276, 2521, +2810, 3276, 2585, +2778, 3260, 2634, +2826, 3292, 2698, +2826, 3292, 2730, +2842, 3276, 2794, +2875, 3292, 2875, +2907, 3308, 2923, +2955, 3324, 3003, +2939, 3340, 3083, +2955, 3501, 2329, +2891, 3485, 2345, +2923, 3517, 2329, +2939, 3501, 2393, +2907, 3501, 2457, +2923, 3517, 2505, +2923, 3517, 2602, +2955, 3501, 2666, +2987, 3485, 2730, +3019, 3485, 2762, +3051, 3485, 2826, +3051, 3517, 2923, +3067, 3501, 2971, +3099, 3517, 3051, +3083, 3533, 3131, +3115, 3533, 3180, +3164, 3549, 3228, +771, 418, 498, +739, 450, 562, +674, 498, 642, +658, 530, 707, +707, 562, 819, +691, 578, 883, +674, 626, 964, +739, 658, 1028, +755, 707, 1124, +819, 755, 1237, +867, 819, 1333, +931, 867, 1429, +980, 899, 1510, +1076, 964, 1606, +1108, 1028, 1718, +1140, 1060, 1799, +1204, 1124, 1927, +851, 530, 530, +819, 546, 610, +723, 594, 691, +691, 610, 755, +707, 626, 835, +723, 626, 931, +755, 691, 980, +755, 723, 1060, +803, 771, 1172, +867, 819, 1269, +915, 867, 1381, +964, 899, 1461, +1012, 947, 1526, +1044, 996, 1638, +1124, 1060, 1734, +1156, 1092, 1831, +1253, 1188, 1959, +915, 674, 498, +883, 691, 562, +819, 691, 755, +739, 739, 835, +755, 755, 899, +771, 771, 980, +771, 803, 1044, +803, 835, 1140, +851, 867, 1220, +883, 899, 1317, +899, 931, 1413, +980, 980, 1493, +1028, 1044, 1606, +1092, 1076, 1686, +1140, 1108, 1766, +1188, 1172, 1879, +1285, 1220, 1991, +899, 883, 658, +899, 867, 707, +915, 883, 787, +883, 899, 947, +867, 931, 996, +835, 931, 1076, +835, 947, 1124, +867, 980, 1237, +883, 996, 1317, +947, 1044, 1397, +964, 1044, 1461, +1028, 1108, 1574, +1076, 1140, 1638, +1124, 1172, 1734, +1188, 1220, 1847, +1269, 1253, 1911, +1317, 1301, 2007, +964, 1044, 771, +947, 1060, 851, +964, 1044, 899, +947, 1076, 1012, +931, 1076, 1076, +931, 1108, 1156, +947, 1124, 1237, +996, 1156, 1333, +980, 1172, 1397, +1028, 1156, 1445, +1076, 1204, 1558, +1108, 1237, 1638, +1140, 1253, 1718, +1204, 1301, 1799, +1285, 1333, 1879, +1301, 1349, 1959, +1365, 1413, 2088, +1076, 1253, 883, +1060, 1253, 947, +1092, 1253, 996, +1076, 1269, 1092, +1044, 1269, 1172, +1092, 1285, 1269, +1060, 1285, 1349, +1108, 1317, 1429, +1092, 1317, 1493, +1140, 1349, 1558, +1156, 1365, 1622, +1172, 1397, 1702, +1237, 1413, 1799, +1317, 1445, 1895, +1349, 1477, 1975, +1397, 1510, 2088, +1477, 1558, 2136, +1220, 1445, 1012, +1204, 1445, 1028, +1188, 1461, 1124, +1188, 1445, 1204, +1156, 1445, 1269, +1156, 1477, 1381, +1172, 1477, 1397, +1204, 1493, 1510, +1220, 1493, 1574, +1253, 1526, 1654, +1237, 1542, 1750, +1301, 1558, 1847, +1349, 1574, 1847, +1413, 1622, 1975, +1445, 1654, 2056, +1510, 1670, 2152, +1542, 1686, 2232, +1333, 1654, 1092, +1349, 1638, 1156, +1333, 1654, 1204, +1349, 1654, 1301, +1317, 1654, 1381, +1333, 1654, 1477, +1365, 1686, 1542, +1381, 1670, 1574, +1413, 1686, 1686, +1429, 1702, 1750, +1461, 1734, 1879, +1461, 1750, 1911, +1493, 1766, 1991, +1526, 1799, 2072, +1558, 1815, 2168, +1622, 1847, 2232, +1686, 1895, 2312, +1461, 1847, 1220, +1493, 1847, 1269, +1510, 1847, 1333, +1493, 1847, 1397, +1461, 1847, 1461, +1526, 1863, 1574, +1510, 1863, 1638, +1526, 1879, 1702, +1558, 1879, 1750, +1590, 1895, 1783, +1574, 1911, 1927, +1606, 1927, 2007, +1686, 1927, 2072, +1718, 1927, 2152, +1718, 1975, 2232, +1783, 2007, 2312, +1815, 2023, 2393, +1670, 2039, 1333, +1686, 2056, 1381, +1670, 2056, 1445, +1670, 2056, 1493, +1686, 2072, 1574, +1702, 2056, 1686, +1734, 2072, 1766, +1718, 2072, 1815, +1750, 2088, 1879, +1799, 2104, 1943, +1831, 2104, 1975, +1815, 2136, 2088, +1863, 2136, 2152, +1927, 2136, 2232, +1943, 2136, 2296, +2007, 2184, 2409, +2023, 2232, 2505, +1895, 2280, 1461, +1879, 2280, 1493, +1895, 2264, 1558, +1895, 2280, 1622, +1895, 2280, 1702, +1911, 2280, 1815, +1927, 2264, 1863, +1975, 2296, 1911, +1943, 2296, 1975, +1975, 2296, 2039, +2007, 2312, 2088, +2039, 2329, 2168, +2088, 2361, 2296, +2088, 2345, 2345, +2104, 2361, 2409, +2136, 2361, 2489, +2184, 2393, 2585, +2088, 2473, 1622, +2088, 2489, 1622, +2088, 2473, 1654, +2104, 2473, 1718, +2072, 2473, 1799, +2072, 2457, 1895, +2136, 2473, 1991, +2136, 2489, 2039, +2136, 2473, 2088, +2152, 2489, 2136, +2184, 2505, 2216, +2216, 2521, 2264, +2248, 2521, 2329, +2264, 2537, 2473, +2296, 2537, 2505, +2312, 2537, 2585, +2329, 2569, 2698, +2264, 2682, 1750, +2264, 2682, 1783, +2248, 2666, 1799, +2248, 2698, 1879, +2216, 2682, 1927, +2264, 2666, 2023, +2280, 2682, 2088, +2312, 2682, 2152, +2280, 2682, 2216, +2312, 2682, 2280, +2345, 2698, 2377, +2377, 2698, 2409, +2377, 2714, 2489, +2409, 2730, 2569, +2441, 2746, 2650, +2473, 2778, 2762, +2473, 2762, 2778, +2409, 2891, 1911, +2393, 2891, 1927, +2425, 2891, 1927, +2425, 2891, 1991, +2409, 2907, 2072, +2473, 2891, 2136, +2473, 2891, 2232, +2489, 2891, 2296, +2505, 2891, 2361, +2537, 2875, 2393, +2521, 2891, 2457, +2521, 2875, 2505, +2585, 2891, 2569, +2569, 2907, 2634, +2618, 2939, 2730, +2634, 2939, 2810, +2634, 2939, 2891, +2602, 3067, 2007, +2618, 3099, 2056, +2602, 3067, 2072, +2585, 3083, 2120, +2602, 3083, 2216, +2618, 3083, 2280, +2650, 3083, 2312, +2650, 3067, 2361, +2666, 3067, 2473, +2682, 3099, 2521, +2682, 3083, 2569, +2698, 3115, 2666, +2730, 3115, 2714, +2762, 3115, 2746, +2778, 3115, 2810, +2842, 3148, 2923, +2794, 3148, 3003, +2746, 3292, 2168, +2778, 3292, 2216, +2778, 3292, 2216, +2762, 3292, 2264, +2762, 3308, 2312, +2762, 3292, 2361, +2778, 3276, 2425, +2794, 3260, 2489, +2794, 3260, 2569, +2826, 3276, 2650, +2858, 3308, 2682, +2842, 3276, 2762, +2875, 3292, 2842, +2891, 3308, 2891, +2939, 3324, 2939, +2955, 3324, 3019, +2987, 3340, 3083, +2907, 3501, 2329, +2923, 3501, 2329, +2939, 3501, 2361, +2987, 3517, 2409, +2923, 3517, 2473, +2955, 3517, 2537, +2955, 3501, 2585, +3003, 3501, 2634, +3035, 3501, 2746, +3035, 3501, 2778, +3067, 3501, 2842, +3099, 3517, 2923, +3067, 3517, 2987, +3083, 3517, 3051, +3131, 3533, 3131, +3131, 3533, 3180, +3164, 3549, 3228, +996, 514, 562, +947, 546, 626, +819, 578, 723, +803, 626, 771, +803, 642, 851, +819, 674, 947, +819, 707, 1012, +867, 739, 1108, +883, 787, 1188, +947, 819, 1301, +964, 851, 1365, +1012, 899, 1461, +1076, 947, 1542, +1124, 1028, 1654, +1156, 1060, 1734, +1220, 1124, 1863, +1285, 1188, 1959, +1028, 594, 562, +996, 610, 658, +899, 674, 787, +835, 723, 851, +835, 723, 883, +851, 739, 980, +851, 755, 1044, +883, 803, 1140, +883, 835, 1220, +947, 883, 1317, +980, 899, 1397, +1060, 964, 1493, +1076, 1012, 1590, +1108, 1060, 1670, +1172, 1108, 1783, +1253, 1172, 1879, +1317, 1220, 2007, +1092, 723, 514, +1028, 739, 658, +980, 755, 803, +883, 803, 883, +899, 851, 964, +915, 851, 1044, +931, 867, 1140, +931, 899, 1188, +947, 915, 1269, +964, 947, 1349, +1012, 980, 1413, +1044, 1044, 1526, +1092, 1076, 1622, +1140, 1124, 1734, +1204, 1172, 1815, +1269, 1220, 1927, +1349, 1253, 1975, +1076, 899, 642, +1108, 899, 707, +1108, 899, 771, +1028, 931, 980, +931, 947, 1028, +964, 980, 1140, +947, 996, 1204, +964, 1028, 1269, +996, 1044, 1333, +1044, 1076, 1413, +1076, 1108, 1510, +1108, 1124, 1574, +1156, 1172, 1686, +1220, 1204, 1766, +1269, 1269, 1847, +1349, 1301, 1959, +1365, 1333, 2023, +1092, 1092, 787, +1108, 1124, 851, +1108, 1124, 931, +1108, 1092, 964, +1092, 1140, 1156, +1060, 1140, 1172, +1044, 1172, 1269, +1044, 1156, 1317, +1076, 1204, 1413, +1108, 1237, 1493, +1140, 1253, 1574, +1188, 1285, 1670, +1269, 1301, 1734, +1285, 1349, 1831, +1349, 1365, 1927, +1381, 1381, 2007, +1429, 1461, 2104, +1220, 1285, 915, +1204, 1285, 964, +1204, 1301, 1060, +1188, 1285, 1124, +1172, 1301, 1220, +1172, 1333, 1317, +1156, 1333, 1381, +1172, 1333, 1445, +1188, 1365, 1477, +1220, 1397, 1606, +1204, 1397, 1654, +1253, 1413, 1734, +1301, 1445, 1831, +1333, 1477, 1927, +1365, 1493, 2007, +1461, 1542, 2056, +1526, 1590, 2184, +1285, 1477, 1044, +1301, 1477, 1076, +1253, 1477, 1108, +1269, 1477, 1204, +1285, 1477, 1301, +1237, 1493, 1349, +1253, 1510, 1445, +1269, 1526, 1558, +1301, 1542, 1622, +1269, 1542, 1670, +1381, 1574, 1750, +1397, 1590, 1831, +1445, 1622, 1911, +1477, 1654, 2007, +1510, 1670, 2088, +1558, 1702, 2184, +1622, 1734, 2232, +1429, 1686, 1140, +1461, 1670, 1172, +1445, 1686, 1237, +1429, 1686, 1317, +1429, 1686, 1397, +1413, 1702, 1493, +1413, 1702, 1574, +1445, 1702, 1622, +1477, 1718, 1718, +1526, 1750, 1783, +1542, 1750, 1831, +1542, 1766, 1927, +1574, 1799, 1991, +1622, 1815, 2088, +1638, 1831, 2168, +1702, 1863, 2232, +1750, 1879, 2312, +1558, 1863, 1237, +1558, 1879, 1285, +1574, 1879, 1349, +1542, 1863, 1381, +1574, 1863, 1477, +1558, 1895, 1590, +1590, 1879, 1654, +1606, 1895, 1718, +1638, 1911, 1750, +1638, 1911, 1847, +1654, 1927, 1943, +1686, 1927, 2023, +1750, 1943, 2104, +1766, 1991, 2200, +1799, 1991, 2232, +1847, 2023, 2345, +1895, 2039, 2393, +1750, 2088, 1397, +1750, 2088, 1381, +1734, 2088, 1413, +1750, 2072, 1493, +1750, 2072, 1558, +1750, 2088, 1654, +1783, 2072, 1766, +1783, 2088, 1799, +1799, 2088, 1863, +1847, 2104, 1927, +1879, 2120, 1975, +1847, 2136, 2104, +1911, 2136, 2168, +1975, 2152, 2264, +2023, 2184, 2345, +2023, 2216, 2441, +2056, 2232, 2521, +1959, 2312, 1510, +1943, 2296, 1493, +1959, 2296, 1558, +1991, 2296, 1622, +1959, 2296, 1702, +1959, 2280, 1783, +1991, 2280, 1863, +2023, 2296, 1943, +2023, 2329, 2007, +2039, 2329, 2072, +2072, 2345, 2120, +2104, 2345, 2200, +2104, 2329, 2280, +2104, 2361, 2361, +2120, 2361, 2425, +2136, 2377, 2505, +2264, 2393, 2602, +2136, 2473, 1638, +2088, 2473, 1622, +2136, 2489, 1638, +2120, 2489, 1702, +2120, 2473, 1783, +2152, 2489, 1895, +2152, 2473, 1975, +2168, 2489, 2039, +2184, 2473, 2104, +2200, 2505, 2152, +2232, 2505, 2232, +2264, 2521, 2264, +2296, 2521, 2345, +2312, 2537, 2457, +2329, 2537, 2521, +2361, 2553, 2602, +2393, 2585, 2682, +2264, 2682, 1750, +2264, 2682, 1750, +2296, 2682, 1831, +2296, 2666, 1863, +2296, 2682, 1943, +2280, 2682, 2007, +2312, 2682, 2072, +2377, 2714, 2200, +2361, 2698, 2248, +2377, 2698, 2312, +2361, 2714, 2345, +2393, 2714, 2425, +2457, 2746, 2457, +2473, 2746, 2553, +2473, 2746, 2650, +2521, 2762, 2730, +2537, 2778, 2810, +2457, 2891, 1879, +2457, 2907, 1895, +2505, 2907, 1927, +2521, 2907, 1991, +2521, 2891, 2072, +2489, 2907, 2120, +2521, 2891, 2200, +2537, 2891, 2296, +2569, 2891, 2345, +2553, 2891, 2409, +2569, 2907, 2473, +2602, 2907, 2553, +2618, 2923, 2602, +2618, 2923, 2666, +2650, 2923, 2730, +2698, 2955, 2794, +2714, 2971, 2939, +2650, 3083, 2023, +2650, 3083, 2039, +2650, 3083, 2056, +2682, 3099, 2136, +2666, 3099, 2216, +2634, 3099, 2264, +2666, 3099, 2345, +2682, 3099, 2393, +2698, 3083, 2457, +2730, 3099, 2537, +2714, 3115, 2602, +2746, 3115, 2682, +2778, 3115, 2714, +2794, 3148, 2778, +2826, 3148, 2842, +2826, 3148, 2907, +2875, 3180, 3035, +2826, 3292, 2184, +2794, 3308, 2184, +2778, 3292, 2200, +2794, 3276, 2232, +2810, 3276, 2296, +2762, 3276, 2329, +2826, 3292, 2441, +2842, 3292, 2537, +2842, 3276, 2585, +2858, 3292, 2650, +2875, 3292, 2714, +2907, 3292, 2778, +2907, 3308, 2826, +2939, 3324, 2907, +2955, 3308, 2939, +3003, 3340, 3035, +3003, 3356, 3099, +2939, 3517, 2312, +3019, 3517, 2361, +2971, 3517, 2345, +3035, 3517, 2393, +2971, 3517, 2441, +3003, 3517, 2521, +3003, 3501, 2618, +3035, 3501, 2682, +3051, 3501, 2746, +3083, 3501, 2778, +3115, 3517, 2875, +3099, 3517, 2939, +3131, 3533, 3019, +3148, 3517, 3067, +3164, 3549, 3131, +3180, 3549, 3164, +3212, 3549, 3228, +1188, 594, 578, +1124, 642, 674, +1044, 691, 803, +947, 739, 851, +931, 755, 931, +980, 787, 1012, +996, 819, 1092, +1028, 851, 1204, +1044, 867, 1253, +1028, 899, 1349, +1044, 931, 1413, +1108, 996, 1510, +1156, 1044, 1622, +1188, 1060, 1686, +1253, 1124, 1799, +1317, 1188, 1911, +1349, 1220, 1959, +1220, 691, 610, +1204, 691, 691, +1092, 739, 819, +996, 787, 899, +996, 819, 964, +996, 835, 1060, +1028, 883, 1124, +1028, 883, 1204, +1060, 915, 1269, +1060, 947, 1365, +1108, 1012, 1461, +1140, 1028, 1542, +1172, 1060, 1638, +1204, 1108, 1702, +1285, 1156, 1831, +1333, 1204, 1943, +1381, 1237, 1975, +1285, 771, 578, +1237, 803, 739, +1172, 835, 851, +1092, 867, 964, +1044, 899, 1012, +1044, 915, 1076, +1028, 931, 1156, +1076, 947, 1237, +1060, 1012, 1333, +1076, 1044, 1397, +1124, 1076, 1493, +1140, 1092, 1558, +1204, 1140, 1670, +1253, 1172, 1766, +1285, 1220, 1847, +1381, 1253, 1927, +1381, 1285, 2023, +1285, 931, 626, +1301, 931, 674, +1237, 947, 867, +1172, 996, 1044, +1092, 1028, 1076, +1108, 1060, 1156, +1108, 1060, 1237, +1140, 1076, 1301, +1108, 1108, 1381, +1140, 1140, 1461, +1140, 1156, 1542, +1220, 1188, 1638, +1253, 1237, 1734, +1301, 1269, 1815, +1349, 1301, 1895, +1397, 1333, 1959, +1461, 1381, 2072, +1269, 1124, 771, +1285, 1124, 819, +1253, 1124, 883, +1285, 1108, 964, +1220, 1140, 1172, +1172, 1188, 1237, +1188, 1204, 1301, +1172, 1220, 1397, +1172, 1237, 1461, +1220, 1269, 1558, +1237, 1285, 1622, +1253, 1317, 1686, +1333, 1333, 1783, +1365, 1349, 1863, +1413, 1413, 1959, +1461, 1445, 2056, +1526, 1493, 2120, +1301, 1333, 980, +1301, 1333, 980, +1317, 1333, 1028, +1317, 1317, 1108, +1333, 1317, 1188, +1301, 1333, 1317, +1285, 1365, 1381, +1269, 1381, 1461, +1237, 1397, 1526, +1253, 1429, 1606, +1317, 1429, 1686, +1349, 1445, 1766, +1397, 1493, 1863, +1429, 1510, 1943, +1493, 1542, 2023, +1542, 1590, 2120, +1622, 1638, 2200, +1397, 1526, 1076, +1429, 1510, 1108, +1413, 1526, 1156, +1397, 1526, 1253, +1397, 1526, 1333, +1381, 1542, 1413, +1365, 1542, 1493, +1349, 1558, 1558, +1365, 1558, 1622, +1397, 1574, 1686, +1445, 1606, 1766, +1477, 1622, 1879, +1493, 1638, 1943, +1542, 1670, 2039, +1574, 1686, 2120, +1654, 1734, 2184, +1686, 1750, 2264, +1574, 1718, 1204, +1558, 1702, 1220, +1558, 1718, 1253, +1526, 1718, 1333, +1542, 1718, 1413, +1558, 1718, 1510, +1542, 1718, 1590, +1558, 1750, 1654, +1558, 1750, 1734, +1558, 1734, 1783, +1574, 1766, 1863, +1622, 1815, 1975, +1638, 1815, 2023, +1670, 1831, 2120, +1734, 1879, 2200, +1783, 1879, 2264, +1815, 1895, 2345, +1686, 1895, 1285, +1670, 1895, 1285, +1670, 1879, 1333, +1654, 1895, 1397, +1670, 1895, 1493, +1670, 1911, 1558, +1670, 1911, 1686, +1686, 1911, 1734, +1734, 1927, 1799, +1734, 1927, 1879, +1766, 1943, 1959, +1815, 1975, 2023, +1815, 1975, 2088, +1847, 2007, 2168, +1863, 2039, 2264, +1911, 2039, 2345, +1943, 2056, 2425, +1847, 2088, 1349, +1863, 2104, 1397, +1831, 2104, 1413, +1847, 2088, 1493, +1847, 2104, 1574, +1863, 2104, 1670, +1847, 2104, 1783, +1911, 2120, 1831, +1879, 2136, 1895, +1927, 2136, 1943, +1959, 2120, 2023, +1975, 2120, 2088, +2023, 2152, 2184, +2023, 2184, 2296, +2056, 2216, 2393, +2072, 2232, 2441, +2120, 2280, 2537, +2039, 2312, 1493, +2039, 2312, 1526, +2007, 2296, 1542, +2023, 2329, 1622, +2056, 2312, 1702, +2056, 2329, 1783, +2023, 2329, 1863, +2088, 2329, 1975, +2072, 2329, 1991, +2104, 2345, 2104, +2136, 2345, 2136, +2136, 2329, 2168, +2136, 2377, 2312, +2152, 2377, 2377, +2184, 2393, 2457, +2232, 2393, 2537, +2280, 2409, 2634, +2216, 2505, 1606, +2200, 2489, 1606, +2200, 2505, 1670, +2216, 2505, 1734, +2200, 2505, 1783, +2232, 2521, 1895, +2200, 2505, 1943, +2232, 2505, 2072, +2264, 2505, 2120, +2264, 2521, 2184, +2296, 2537, 2264, +2329, 2537, 2312, +2345, 2537, 2377, +2312, 2537, 2457, +2361, 2569, 2553, +2393, 2585, 2634, +2425, 2602, 2714, +2345, 2698, 1718, +2345, 2714, 1766, +2361, 2714, 1815, +2345, 2698, 1879, +2377, 2714, 1943, +2393, 2714, 2007, +2377, 2714, 2104, +2393, 2714, 2184, +2409, 2714, 2232, +2441, 2714, 2312, +2425, 2730, 2377, +2473, 2746, 2441, +2505, 2762, 2473, +2521, 2762, 2569, +2537, 2762, 2666, +2521, 2778, 2746, +2569, 2810, 2842, +2521, 2907, 1879, +2489, 2891, 1895, +2537, 2907, 1943, +2521, 2891, 1959, +2537, 2891, 2023, +2553, 2891, 2120, +2537, 2907, 2216, +2553, 2907, 2280, +2585, 2907, 2329, +2602, 2907, 2425, +2618, 2907, 2489, +2634, 2923, 2537, +2666, 2939, 2618, +2698, 2939, 2666, +2730, 2955, 2746, +2714, 2971, 2842, +2746, 2955, 2907, +2682, 3099, 2023, +2682, 3099, 2023, +2682, 3115, 2056, +2682, 3099, 2104, +2714, 3115, 2184, +2698, 3099, 2248, +2714, 3131, 2296, +2714, 3099, 2409, +2746, 3099, 2473, +2778, 3099, 2553, +2778, 3131, 2634, +2794, 3131, 2698, +2810, 3148, 2746, +2826, 3131, 2778, +2842, 3131, 2842, +2907, 3180, 2939, +2939, 3180, 3003, +2810, 3276, 2136, +2826, 3292, 2152, +2858, 3292, 2232, +2842, 3292, 2264, +2842, 3292, 2248, +2858, 3292, 2361, +2842, 3308, 2457, +2858, 3308, 2521, +2907, 3324, 2602, +2907, 3308, 2666, +2939, 3308, 2698, +2955, 3340, 2794, +2955, 3324, 2858, +2987, 3324, 2923, +3003, 3356, 2987, +3019, 3356, 3051, +3067, 3388, 3148, +3051, 3517, 2329, +3051, 3517, 2361, +3051, 3517, 2361, +3083, 3517, 2393, +3035, 3517, 2425, +3003, 3517, 2489, +3035, 3517, 2569, +3083, 3517, 2666, +3099, 3501, 2762, +3131, 3517, 2810, +3131, 3533, 2891, +3148, 3533, 2955, +3131, 3533, 3003, +3164, 3533, 3067, +3196, 3549, 3131, +3244, 3565, 3180, +3212, 3565, 3244, +1365, 707, 658, +1349, 739, 739, +1237, 787, 883, +1140, 835, 980, +1108, 883, 1028, +1108, 867, 1092, +1124, 899, 1172, +1172, 947, 1269, +1156, 980, 1349, +1204, 996, 1397, +1188, 1044, 1493, +1220, 1060, 1574, +1269, 1092, 1654, +1317, 1156, 1783, +1349, 1204, 1847, +1397, 1237, 1927, +1461, 1285, 2039, +1381, 771, 658, +1397, 771, 739, +1301, 835, 899, +1188, 867, 980, +1140, 899, 1044, +1124, 915, 1108, +1124, 931, 1188, +1156, 980, 1285, +1172, 1012, 1349, +1220, 1044, 1445, +1204, 1076, 1526, +1269, 1092, 1606, +1285, 1140, 1702, +1317, 1188, 1766, +1381, 1237, 1847, +1445, 1285, 1959, +1445, 1301, 2007, +1445, 851, 642, +1413, 867, 755, +1365, 883, 899, +1237, 947, 1028, +1156, 1012, 1092, +1172, 1012, 1156, +1188, 1044, 1237, +1188, 1060, 1301, +1220, 1076, 1381, +1220, 1076, 1477, +1220, 1124, 1542, +1269, 1156, 1622, +1301, 1188, 1718, +1397, 1253, 1815, +1413, 1269, 1895, +1461, 1317, 1975, +1526, 1365, 2088, +1493, 996, 658, +1493, 980, 723, +1413, 1028, 915, +1349, 1060, 1060, +1253, 1092, 1156, +1237, 1108, 1204, +1204, 1124, 1269, +1253, 1140, 1365, +1253, 1172, 1429, +1253, 1188, 1493, +1269, 1237, 1590, +1333, 1269, 1670, +1365, 1301, 1766, +1397, 1317, 1831, +1429, 1333, 1927, +1510, 1397, 2056, +1510, 1413, 2104, +1461, 1140, 755, +1461, 1156, 819, +1510, 1140, 883, +1445, 1188, 1108, +1381, 1204, 1220, +1301, 1253, 1285, +1301, 1269, 1365, +1317, 1285, 1445, +1333, 1301, 1493, +1349, 1333, 1590, +1365, 1333, 1638, +1397, 1365, 1734, +1397, 1381, 1815, +1445, 1413, 1911, +1477, 1445, 1991, +1574, 1493, 2056, +1622, 1526, 2152, +1493, 1365, 931, +1461, 1349, 964, +1510, 1365, 1028, +1510, 1365, 1108, +1510, 1349, 1172, +1429, 1397, 1397, +1397, 1397, 1429, +1397, 1429, 1493, +1333, 1461, 1574, +1413, 1461, 1638, +1461, 1493, 1766, +1477, 1510, 1831, +1510, 1510, 1879, +1542, 1542, 1943, +1590, 1590, 2039, +1638, 1622, 2136, +1686, 1654, 2248, +1526, 1526, 1076, +1542, 1558, 1172, +1477, 1542, 1156, +1493, 1542, 1220, +1526, 1558, 1301, +1574, 1558, 1397, +1510, 1574, 1526, +1526, 1590, 1574, +1526, 1622, 1686, +1542, 1638, 1750, +1526, 1638, 1815, +1574, 1670, 1895, +1606, 1702, 1991, +1654, 1718, 2039, +1686, 1734, 2120, +1734, 1766, 2232, +1766, 1783, 2312, +1686, 1750, 1204, +1670, 1750, 1237, +1654, 1734, 1285, +1670, 1734, 1349, +1654, 1734, 1397, +1670, 1750, 1510, +1670, 1766, 1590, +1638, 1766, 1670, +1654, 1799, 1766, +1638, 1815, 1815, +1670, 1815, 1895, +1702, 1847, 1991, +1750, 1863, 2039, +1766, 1863, 2104, +1815, 1895, 2200, +1863, 1911, 2280, +1911, 1943, 2377, +1815, 1927, 1285, +1799, 1911, 1301, +1799, 1927, 1365, +1766, 1927, 1429, +1799, 1927, 1477, +1815, 1927, 1574, +1815, 1927, 1670, +1799, 1927, 1750, +1847, 1959, 1815, +1799, 1943, 1879, +1847, 1975, 1975, +1847, 2007, 2056, +1863, 1991, 2120, +1911, 2023, 2200, +1959, 2056, 2296, +1991, 2072, 2377, +2023, 2088, 2425, +1959, 2120, 1397, +1943, 2120, 1429, +1943, 2136, 1461, +1959, 2120, 1526, +1943, 2120, 1574, +1927, 2136, 1670, +1943, 2136, 1734, +1943, 2136, 1847, +1991, 2120, 1911, +2007, 2136, 1959, +2023, 2152, 2056, +2072, 2184, 2152, +2088, 2184, 2216, +2120, 2232, 2296, +2104, 2248, 2393, +2120, 2248, 2457, +2168, 2280, 2553, +2136, 2329, 1526, +2152, 2345, 1542, +2136, 2345, 1606, +2120, 2345, 1654, +2136, 2345, 1718, +2120, 2345, 1783, +2168, 2361, 1863, +2152, 2345, 1975, +2168, 2345, 2039, +2152, 2345, 2088, +2200, 2361, 2152, +2200, 2377, 2232, +2232, 2377, 2312, +2232, 2393, 2377, +2296, 2409, 2473, +2329, 2425, 2553, +2329, 2441, 2634, +2296, 2505, 1590, +2264, 2521, 1622, +2296, 2537, 1686, +2264, 2505, 1718, +2280, 2537, 1799, +2280, 2521, 1879, +2329, 2521, 1991, +2296, 2521, 2072, +2345, 2537, 2152, +2329, 2553, 2216, +2345, 2537, 2280, +2393, 2553, 2296, +2425, 2569, 2377, +2377, 2553, 2489, +2425, 2602, 2585, +2473, 2618, 2650, +2489, 2618, 2746, +2441, 2714, 1750, +2441, 2730, 1799, +2425, 2730, 1815, +2409, 2730, 1847, +2409, 2730, 1911, +2441, 2746, 1991, +2457, 2714, 2104, +2473, 2746, 2184, +2473, 2746, 2280, +2505, 2746, 2345, +2505, 2762, 2425, +2537, 2778, 2473, +2569, 2762, 2505, +2553, 2778, 2569, +2569, 2794, 2714, +2569, 2794, 2762, +2634, 2794, 2842, +2553, 2907, 1879, +2602, 2923, 1895, +2602, 2923, 1895, +2602, 2923, 1975, +2602, 2907, 2056, +2618, 2907, 2120, +2618, 2923, 2200, +2602, 2907, 2312, +2634, 2907, 2345, +2666, 2923, 2409, +2698, 2939, 2505, +2666, 2923, 2553, +2714, 2939, 2634, +2746, 2955, 2682, +2778, 2955, 2762, +2746, 2971, 2858, +2794, 2987, 2939, +2746, 3115, 2007, +2714, 3115, 2023, +2746, 3131, 2056, +2762, 3131, 2120, +2778, 3115, 2184, +2778, 3099, 2264, +2746, 3131, 2312, +2778, 3131, 2377, +2794, 3131, 2489, +2842, 3131, 2585, +2842, 3148, 2618, +2858, 3131, 2682, +2858, 3148, 2762, +2891, 3164, 2810, +2907, 3164, 2875, +2955, 3164, 2923, +2955, 3196, 3051, +2875, 3324, 2152, +2858, 3324, 2152, +2875, 3308, 2200, +2875, 3308, 2232, +2923, 3324, 2296, +2875, 3308, 2345, +2875, 3324, 2409, +2907, 3340, 2537, +2939, 3324, 2618, +2955, 3308, 2682, +2987, 3308, 2730, +2971, 3324, 2778, +3019, 3340, 2891, +2987, 3340, 2923, +3051, 3356, 2987, +3099, 3388, 3099, +3099, 3372, 3148, +3083, 3533, 2312, +3083, 3533, 2361, +3083, 3533, 2361, +3115, 3549, 2409, +3083, 3517, 2409, +3115, 3533, 2521, +3131, 3533, 2585, +3131, 3549, 2698, +3131, 3533, 2762, +3180, 3549, 2810, +3196, 3533, 2875, +3212, 3549, 2987, +3196, 3549, 3003, +3212, 3549, 3067, +3228, 3533, 3131, +3244, 3565, 3196, +3276, 3565, 3276, +1558, 771, 691, +1542, 803, 771, +1445, 867, 947, +1349, 931, 1060, +1253, 964, 1108, +1269, 996, 1156, +1253, 1012, 1237, +1253, 1028, 1301, +1285, 1044, 1381, +1301, 1076, 1461, +1333, 1092, 1542, +1349, 1140, 1638, +1381, 1188, 1734, +1445, 1220, 1815, +1461, 1269, 1879, +1510, 1285, 1959, +1542, 1349, 2088, +1574, 835, 691, +1574, 851, 803, +1477, 883, 915, +1365, 964, 1028, +1285, 1028, 1124, +1269, 1028, 1188, +1269, 1044, 1237, +1285, 1060, 1333, +1301, 1092, 1397, +1317, 1092, 1477, +1349, 1140, 1542, +1397, 1172, 1670, +1413, 1220, 1766, +1429, 1269, 1815, +1493, 1285, 1895, +1510, 1317, 1991, +1574, 1365, 2072, +1606, 931, 707, +1590, 931, 803, +1558, 964, 931, +1429, 1012, 1060, +1333, 1076, 1172, +1301, 1076, 1188, +1285, 1092, 1253, +1333, 1124, 1365, +1317, 1124, 1429, +1365, 1156, 1510, +1381, 1204, 1606, +1397, 1237, 1702, +1397, 1253, 1734, +1461, 1301, 1847, +1510, 1333, 1943, +1542, 1397, 2023, +1574, 1413, 2104, +1670, 1028, 674, +1606, 1060, 819, +1590, 1060, 964, +1510, 1076, 1076, +1397, 1156, 1220, +1349, 1188, 1269, +1333, 1204, 1349, +1365, 1220, 1429, +1397, 1220, 1493, +1413, 1253, 1542, +1429, 1269, 1638, +1429, 1317, 1718, +1461, 1349, 1799, +1510, 1365, 1879, +1558, 1413, 1975, +1606, 1445, 2088, +1654, 1493, 2136, +1702, 1204, 755, +1718, 1204, 819, +1702, 1204, 915, +1622, 1220, 1124, +1542, 1253, 1220, +1445, 1301, 1333, +1445, 1317, 1413, +1445, 1349, 1477, +1461, 1333, 1542, +1461, 1365, 1606, +1477, 1413, 1702, +1461, 1413, 1766, +1526, 1461, 1863, +1542, 1461, 1943, +1622, 1526, 2023, +1670, 1558, 2120, +1686, 1590, 2184, +1670, 1397, 931, +1686, 1381, 947, +1686, 1397, 1028, +1718, 1365, 1076, +1654, 1397, 1285, +1590, 1429, 1413, +1493, 1461, 1461, +1510, 1461, 1526, +1510, 1477, 1606, +1526, 1493, 1702, +1558, 1526, 1766, +1558, 1558, 1847, +1590, 1590, 1927, +1638, 1622, 2023, +1686, 1638, 2104, +1718, 1654, 2168, +1750, 1702, 2232, +1686, 1574, 1044, +1702, 1558, 1092, +1702, 1574, 1172, +1702, 1590, 1220, +1750, 1590, 1301, +1750, 1574, 1397, +1670, 1606, 1558, +1638, 1638, 1638, +1638, 1654, 1702, +1638, 1686, 1783, +1638, 1702, 1831, +1654, 1702, 1895, +1686, 1718, 1959, +1750, 1750, 2072, +1799, 1783, 2168, +1815, 1799, 2248, +1879, 1847, 2329, +1799, 1766, 1204, +1766, 1766, 1253, +1783, 1783, 1285, +1766, 1799, 1381, +1750, 1783, 1429, +1766, 1783, 1526, +1783, 1799, 1590, +1766, 1799, 1734, +1750, 1831, 1815, +1766, 1847, 1847, +1783, 1863, 1927, +1799, 1895, 2007, +1831, 1879, 2072, +1863, 1895, 2152, +1927, 1927, 2248, +1943, 1943, 2329, +1991, 1991, 2377, +1927, 1927, 1285, +1927, 1927, 1317, +1911, 1927, 1381, +1927, 1959, 1461, +1927, 1943, 1526, +1911, 1943, 1590, +1943, 1959, 1654, +1927, 1975, 1750, +1911, 1991, 1847, +1895, 1975, 1895, +1911, 2023, 2007, +1943, 2039, 2072, +1975, 2056, 2152, +2007, 2072, 2232, +2039, 2072, 2280, +2072, 2088, 2361, +2120, 2136, 2457, +2072, 2120, 1397, +2088, 2120, 1429, +2088, 2136, 1493, +2088, 2136, 1526, +2072, 2136, 1590, +2088, 2136, 1670, +2072, 2136, 1734, +2056, 2152, 1831, +2072, 2152, 1927, +2120, 2168, 1991, +2104, 2200, 2088, +2152, 2216, 2168, +2136, 2216, 2232, +2168, 2248, 2312, +2184, 2280, 2409, +2216, 2296, 2473, +2248, 2312, 2537, +2248, 2361, 1542, +2232, 2345, 1558, +2232, 2361, 1606, +2216, 2345, 1654, +2216, 2345, 1718, +2216, 2345, 1750, +2216, 2361, 1847, +2216, 2361, 1959, +2216, 2361, 2056, +2248, 2361, 2120, +2248, 2377, 2168, +2264, 2393, 2264, +2329, 2393, 2345, +2345, 2425, 2441, +2361, 2425, 2505, +2361, 2457, 2585, +2393, 2473, 2666, +2409, 2537, 1654, +2377, 2521, 1654, +2393, 2537, 1702, +2377, 2537, 1734, +2377, 2537, 1799, +2393, 2553, 1895, +2377, 2553, 1991, +2377, 2537, 2072, +2377, 2553, 2120, +2425, 2553, 2216, +2409, 2553, 2280, +2457, 2585, 2345, +2473, 2585, 2441, +2505, 2602, 2505, +2489, 2618, 2585, +2521, 2618, 2666, +2569, 2650, 2762, +2505, 2746, 1799, +2505, 2746, 1783, +2489, 2746, 1815, +2505, 2746, 1879, +2505, 2746, 1943, +2521, 2762, 1991, +2537, 2746, 2104, +2537, 2762, 2184, +2553, 2762, 2280, +2553, 2762, 2377, +2553, 2778, 2441, +2569, 2762, 2473, +2618, 2778, 2521, +2650, 2778, 2553, +2618, 2810, 2698, +2666, 2794, 2794, +2682, 2810, 2875, +2666, 2939, 1895, +2682, 2939, 1895, +2682, 2955, 1943, +2682, 2939, 1991, +2682, 2939, 2023, +2666, 2939, 2088, +2698, 2923, 2216, +2714, 2939, 2312, +2714, 2939, 2393, +2730, 2955, 2457, +2746, 2939, 2521, +2730, 2955, 2585, +2778, 2971, 2666, +2794, 2955, 2698, +2826, 2971, 2778, +2810, 2987, 2891, +2842, 3003, 2955, +2826, 3164, 2023, +2794, 3131, 2039, +2794, 3148, 2039, +2794, 3164, 2120, +2810, 3148, 2168, +2826, 3148, 2280, +2875, 3164, 2329, +2875, 3148, 2409, +2842, 3131, 2489, +2875, 3148, 2569, +2875, 3148, 2666, +2923, 3164, 2714, +2939, 3180, 2762, +2939, 3180, 2826, +3003, 3196, 2891, +3003, 3180, 2955, +2987, 3196, 3051, +2923, 3340, 2136, +2971, 3340, 2184, +2955, 3340, 2216, +2923, 3324, 2232, +2907, 3324, 2296, +2955, 3340, 2345, +2971, 3324, 2441, +2971, 3340, 2521, +2987, 3340, 2618, +3003, 3340, 2682, +3067, 3340, 2762, +3019, 3324, 2794, +3067, 3340, 2891, +3067, 3356, 2971, +3115, 3388, 3035, +3131, 3372, 3051, +3164, 3388, 3148, +3131, 3533, 2296, +3148, 3565, 2361, +3148, 3565, 2345, +3164, 3549, 2425, +3164, 3565, 2457, +3148, 3549, 2489, +3164, 3549, 2585, +3148, 3565, 2650, +3164, 3565, 2746, +3212, 3549, 2810, +3244, 3549, 2891, +3244, 3533, 2971, +3244, 3549, 3019, +3276, 3565, 3099, +3260, 3565, 3180, +3308, 3581, 3228, +3340, 3597, 3308, +1734, 883, 755, +1734, 867, 819, +1670, 931, 964, +1510, 996, 1076, +1429, 1028, 1140, +1381, 1060, 1204, +1397, 1108, 1301, +1413, 1124, 1365, +1429, 1140, 1461, +1429, 1156, 1542, +1477, 1188, 1622, +1510, 1237, 1702, +1542, 1253, 1766, +1542, 1301, 1831, +1558, 1333, 1927, +1622, 1381, 2039, +1654, 1397, 2120, +1734, 915, 755, +1750, 915, 819, +1654, 947, 980, +1558, 1012, 1076, +1477, 1076, 1204, +1413, 1124, 1253, +1413, 1140, 1317, +1429, 1140, 1397, +1445, 1172, 1461, +1461, 1188, 1574, +1510, 1220, 1606, +1510, 1253, 1686, +1542, 1269, 1766, +1542, 1333, 1863, +1590, 1365, 1975, +1622, 1397, 2056, +1686, 1429, 2136, +1750, 1012, 771, +1734, 1028, 883, +1718, 1028, 980, +1622, 1076, 1108, +1542, 1124, 1220, +1429, 1172, 1269, +1445, 1204, 1349, +1477, 1220, 1445, +1477, 1237, 1493, +1493, 1237, 1558, +1526, 1285, 1654, +1558, 1301, 1734, +1574, 1333, 1815, +1590, 1381, 1911, +1638, 1413, 2007, +1654, 1445, 2072, +1702, 1493, 2152, +1879, 1092, 739, +1799, 1124, 883, +1783, 1140, 1012, +1718, 1172, 1156, +1606, 1220, 1253, +1510, 1237, 1317, +1510, 1269, 1365, +1510, 1301, 1461, +1542, 1317, 1542, +1542, 1333, 1606, +1574, 1349, 1686, +1606, 1397, 1799, +1590, 1413, 1863, +1590, 1445, 1943, +1654, 1477, 2007, +1702, 1526, 2120, +1750, 1542, 2200, +1863, 1220, 771, +1895, 1237, 835, +1831, 1237, 964, +1783, 1269, 1140, +1718, 1301, 1285, +1606, 1349, 1397, +1558, 1381, 1429, +1558, 1397, 1526, +1590, 1429, 1622, +1606, 1461, 1686, +1622, 1461, 1750, +1654, 1477, 1847, +1654, 1526, 1895, +1686, 1542, 1975, +1734, 1574, 2072, +1750, 1622, 2184, +1799, 1654, 2232, +1863, 1413, 899, +1895, 1413, 931, +1879, 1413, 1028, +1879, 1397, 1124, +1815, 1429, 1317, +1734, 1477, 1461, +1670, 1510, 1526, +1654, 1542, 1574, +1670, 1558, 1670, +1670, 1574, 1750, +1686, 1574, 1815, +1702, 1622, 1895, +1718, 1654, 1991, +1734, 1654, 2039, +1766, 1670, 2104, +1847, 1734, 2232, +1911, 1734, 2312, +1879, 1606, 1028, +1895, 1606, 1092, +1895, 1622, 1156, +1943, 1638, 1237, +1927, 1606, 1301, +1911, 1622, 1477, +1831, 1654, 1590, +1734, 1686, 1638, +1766, 1702, 1750, +1766, 1718, 1783, +1799, 1750, 1895, +1799, 1766, 1975, +1831, 1783, 2056, +1879, 1799, 2120, +1911, 1831, 2200, +1959, 1847, 2296, +1959, 1863, 2329, +1959, 1815, 1220, +1943, 1815, 1237, +1927, 1815, 1269, +1927, 1815, 1365, +1927, 1815, 1445, +2007, 1815, 1493, +2023, 1831, 1590, +1943, 1847, 1783, +1879, 1863, 1815, +1911, 1879, 1895, +1911, 1895, 1959, +1911, 1911, 2023, +1943, 1927, 2072, +1975, 1943, 2168, +2023, 1959, 2248, +2023, 2007, 2329, +2104, 2023, 2441, +2056, 1991, 1365, +2039, 1975, 1381, +2039, 1975, 1413, +2039, 1991, 1445, +2023, 1991, 1526, +2007, 1991, 1590, +2039, 2007, 1702, +2039, 2007, 1783, +2023, 2023, 1911, +2023, 2039, 1975, +2007, 2056, 1991, +2056, 2072, 2104, +2072, 2072, 2152, +2104, 2088, 2232, +2168, 2136, 2345, +2216, 2168, 2441, +2232, 2168, 2505, +2248, 2184, 1461, +2248, 2184, 1445, +2216, 2184, 1510, +2216, 2184, 1558, +2200, 2184, 1622, +2200, 2168, 1702, +2200, 2184, 1799, +2232, 2200, 1895, +2232, 2232, 1959, +2216, 2232, 2039, +2216, 2248, 2120, +2216, 2264, 2200, +2232, 2280, 2264, +2264, 2280, 2345, +2264, 2312, 2425, +2280, 2312, 2489, +2312, 2312, 2553, +2329, 2377, 1574, +2329, 2377, 1574, +2312, 2361, 1606, +2329, 2361, 1686, +2329, 2361, 1718, +2312, 2377, 1783, +2312, 2361, 1863, +2329, 2393, 1991, +2329, 2377, 2039, +2361, 2393, 2152, +2377, 2393, 2216, +2361, 2409, 2312, +2393, 2425, 2393, +2393, 2441, 2457, +2409, 2473, 2553, +2425, 2489, 2634, +2457, 2489, 2666, +2457, 2553, 1638, +2457, 2553, 1670, +2489, 2553, 1718, +2457, 2537, 1750, +2473, 2569, 1847, +2441, 2553, 1895, +2457, 2553, 1991, +2505, 2585, 2072, +2473, 2553, 2104, +2489, 2585, 2248, +2505, 2585, 2312, +2505, 2602, 2361, +2537, 2618, 2473, +2553, 2618, 2537, +2553, 2634, 2618, +2602, 2666, 2714, +2602, 2682, 2794, +2618, 2778, 1799, +2634, 2762, 1831, +2618, 2762, 1847, +2618, 2794, 1911, +2618, 2778, 1959, +2602, 2778, 1991, +2618, 2762, 2072, +2602, 2778, 2184, +2602, 2762, 2248, +2618, 2778, 2377, +2666, 2794, 2409, +2666, 2810, 2489, +2682, 2794, 2521, +2730, 2794, 2618, +2730, 2810, 2698, +2762, 2826, 2778, +2778, 2826, 2842, +2762, 2955, 1895, +2762, 2939, 1895, +2778, 2971, 1943, +2730, 2939, 1975, +2778, 2955, 2056, +2762, 2971, 2136, +2746, 2971, 2184, +2810, 2971, 2296, +2794, 2971, 2361, +2810, 2971, 2473, +2810, 2955, 2537, +2794, 2971, 2618, +2826, 2971, 2682, +2858, 2971, 2730, +2907, 3003, 2778, +2875, 3019, 2923, +2939, 3051, 2987, +2907, 3148, 2039, +2923, 3180, 2056, +2907, 3164, 2088, +2891, 3164, 2104, +2891, 3164, 2184, +2891, 3164, 2264, +2939, 3180, 2312, +2923, 3148, 2393, +2939, 3164, 2505, +2939, 3180, 2618, +2955, 3164, 2666, +2987, 3180, 2714, +2987, 3196, 2794, +3003, 3196, 2858, +3019, 3180, 2891, +3051, 3196, 2971, +3019, 3196, 3051, +3019, 3340, 2168, +3019, 3340, 2168, +3035, 3340, 2200, +3003, 3356, 2232, +3035, 3356, 2312, +3035, 3356, 2345, +3035, 3356, 2441, +3051, 3340, 2505, +3051, 3372, 2650, +3051, 3356, 2714, +3099, 3372, 2762, +3131, 3404, 2875, +3148, 3388, 2939, +3148, 3388, 2971, +3164, 3388, 3035, +3196, 3404, 3099, +3228, 3404, 3164, +3212, 3565, 2345, +3212, 3565, 2345, +3212, 3565, 2345, +3244, 3581, 2425, +3228, 3565, 2441, +3244, 3565, 2521, +3228, 3581, 2585, +3276, 3565, 2682, +3228, 3565, 2730, +3228, 3549, 2794, +3260, 3565, 2875, +3276, 3549, 2971, +3308, 3565, 3051, +3324, 3581, 3115, +3308, 3581, 3180, +3356, 3581, 3228, +3404, 3613, 3292, +1927, 964, 803, +1911, 964, 899, +1847, 1012, 1028, +1766, 1092, 1172, +1654, 1140, 1269, +1574, 1204, 1333, +1574, 1220, 1365, +1558, 1220, 1429, +1574, 1253, 1510, +1606, 1269, 1622, +1606, 1285, 1654, +1638, 1301, 1766, +1670, 1349, 1831, +1702, 1365, 1911, +1686, 1413, 1991, +1766, 1461, 2088, +1783, 1510, 2184, +1959, 1012, 835, +1943, 1012, 899, +1863, 1060, 1028, +1783, 1108, 1172, +1702, 1172, 1253, +1590, 1220, 1317, +1558, 1220, 1349, +1590, 1253, 1461, +1590, 1253, 1510, +1590, 1285, 1590, +1638, 1317, 1686, +1638, 1333, 1766, +1686, 1365, 1847, +1686, 1381, 1927, +1734, 1445, 2007, +1766, 1461, 2088, +1799, 1510, 2200, +1927, 1076, 819, +1911, 1076, 899, +1911, 1092, 1012, +1799, 1140, 1140, +1750, 1220, 1301, +1638, 1253, 1365, +1606, 1301, 1413, +1606, 1301, 1493, +1622, 1333, 1542, +1654, 1349, 1654, +1638, 1349, 1718, +1686, 1381, 1799, +1702, 1413, 1895, +1734, 1429, 1943, +1734, 1493, 2039, +1799, 1526, 2136, +1831, 1574, 2216, +1991, 1156, 803, +1943, 1204, 915, +1927, 1188, 1044, +1879, 1204, 1140, +1799, 1253, 1285, +1702, 1317, 1397, +1638, 1365, 1445, +1638, 1381, 1542, +1654, 1381, 1606, +1670, 1413, 1686, +1686, 1429, 1750, +1702, 1445, 1831, +1750, 1477, 1895, +1766, 1526, 1991, +1783, 1558, 2072, +1847, 1606, 2184, +1847, 1606, 2200, +2088, 1285, 819, +2072, 1285, 883, +1975, 1333, 1092, +1959, 1333, 1220, +1879, 1365, 1349, +1766, 1413, 1461, +1686, 1445, 1510, +1702, 1477, 1590, +1702, 1477, 1622, +1750, 1510, 1718, +1750, 1542, 1799, +1783, 1558, 1879, +1799, 1590, 1959, +1815, 1622, 2056, +1815, 1638, 2088, +1895, 1670, 2200, +1943, 1702, 2280, +2056, 1461, 915, +2088, 1461, 947, +2088, 1461, 1028, +2039, 1477, 1188, +1991, 1493, 1365, +1927, 1526, 1510, +1847, 1574, 1590, +1799, 1622, 1638, +1799, 1638, 1734, +1831, 1638, 1783, +1831, 1654, 1847, +1847, 1654, 1911, +1879, 1686, 2023, +1879, 1734, 2104, +1943, 1750, 2168, +2007, 1783, 2248, +2007, 1799, 2329, +2072, 1654, 1028, +2088, 1638, 1060, +2104, 1638, 1108, +2136, 1638, 1188, +2104, 1638, 1285, +2072, 1670, 1510, +1991, 1702, 1638, +1911, 1734, 1734, +1879, 1766, 1766, +1911, 1783, 1863, +1943, 1799, 1927, +1975, 1815, 1991, +1959, 1847, 2088, +1975, 1847, 2152, +2007, 1863, 2232, +2056, 1895, 2312, +2104, 1927, 2377, +2136, 1847, 1172, +2136, 1847, 1188, +2152, 1847, 1269, +2136, 1831, 1317, +2168, 1847, 1413, +2200, 1815, 1461, +2136, 1847, 1654, +2120, 1879, 1766, +2023, 1911, 1815, +2039, 1911, 1895, +2039, 1927, 1959, +2088, 1975, 2088, +2072, 1991, 2136, +2088, 2023, 2248, +2152, 2007, 2280, +2200, 2039, 2377, +2216, 2072, 2441, +2216, 2007, 1301, +2184, 2023, 1365, +2200, 2007, 1381, +2200, 2039, 1461, +2184, 2039, 1510, +2200, 2023, 1590, +2232, 2039, 1686, +2296, 2023, 1734, +2184, 2056, 1911, +2184, 2072, 1975, +2168, 2072, 2039, +2152, 2120, 2136, +2200, 2152, 2216, +2232, 2152, 2296, +2264, 2184, 2393, +2312, 2200, 2473, +2312, 2232, 2553, +2345, 2216, 1461, +2361, 2216, 1510, +2345, 2216, 1526, +2329, 2216, 1590, +2329, 2232, 1654, +2312, 2232, 1750, +2312, 2248, 1847, +2345, 2248, 1895, +2361, 2264, 1959, +2329, 2264, 2104, +2329, 2296, 2184, +2296, 2296, 2216, +2312, 2312, 2312, +2329, 2312, 2377, +2345, 2312, 2441, +2361, 2345, 2505, +2425, 2361, 2634, +2505, 2393, 1606, +2489, 2377, 1590, +2489, 2377, 1622, +2473, 2393, 1686, +2457, 2377, 1734, +2457, 2393, 1831, +2473, 2393, 1895, +2473, 2409, 2007, +2489, 2409, 2072, +2473, 2425, 2152, +2473, 2441, 2232, +2473, 2457, 2296, +2473, 2489, 2393, +2505, 2489, 2473, +2489, 2505, 2521, +2505, 2505, 2602, +2553, 2537, 2698, +2585, 2569, 1686, +2585, 2569, 1686, +2585, 2585, 1750, +2585, 2585, 1783, +2569, 2585, 1847, +2618, 2618, 1959, +2569, 2585, 2007, +2569, 2602, 2072, +2602, 2618, 2152, +2602, 2634, 2264, +2585, 2618, 2329, +2618, 2634, 2409, +2634, 2666, 2505, +2650, 2666, 2569, +2650, 2666, 2634, +2666, 2714, 2730, +2666, 2698, 2778, +2746, 2778, 1831, +2698, 2778, 1815, +2714, 2810, 1879, +2714, 2794, 1927, +2730, 2794, 1975, +2698, 2794, 2023, +2730, 2794, 2088, +2698, 2794, 2168, +2698, 2810, 2248, +2746, 2810, 2361, +2762, 2810, 2457, +2762, 2794, 2505, +2778, 2810, 2553, +2794, 2826, 2666, +2842, 2858, 2762, +2842, 2842, 2810, +2842, 2858, 2891, +2858, 2971, 1943, +2875, 2971, 1943, +2842, 2955, 1959, +2858, 2987, 2007, +2875, 2971, 2072, +2858, 2971, 2120, +2842, 2971, 2216, +2826, 2987, 2280, +2858, 2987, 2361, +2858, 2987, 2441, +2875, 2987, 2553, +2907, 3003, 2634, +2891, 3003, 2682, +2939, 3003, 2698, +2971, 3019, 2794, +2939, 3035, 2907, +3003, 3067, 3019, +2971, 3180, 2039, +3003, 3180, 2072, +3019, 3196, 2136, +2987, 3180, 2152, +2987, 3196, 2216, +3003, 3180, 2280, +2987, 3180, 2329, +3019, 3196, 2409, +3051, 3196, 2489, +3035, 3180, 2602, +3019, 3196, 2682, +3051, 3196, 2746, +3051, 3180, 2794, +3051, 3196, 2875, +3099, 3196, 2891, +3115, 3196, 2955, +3148, 3228, 3067, +3099, 3372, 2184, +3115, 3356, 2200, +3131, 3388, 2216, +3115, 3372, 2280, +3099, 3372, 2296, +3115, 3388, 2345, +3115, 3388, 2441, +3164, 3404, 2537, +3180, 3404, 2634, +3148, 3388, 2714, +3148, 3388, 2778, +3180, 3404, 2858, +3196, 3388, 2923, +3244, 3404, 3003, +3260, 3404, 3083, +3276, 3404, 3115, +3324, 3421, 3196, +3292, 3565, 2312, +3308, 3581, 2329, +3276, 3565, 2345, +3292, 3581, 2409, +3276, 3581, 2425, +3308, 3581, 2505, +3292, 3581, 2569, +3308, 3581, 2666, +3292, 3581, 2730, +3308, 3581, 2826, +3324, 3581, 2891, +3356, 3581, 2971, +3372, 3597, 3083, +3372, 3581, 3148, +3404, 3613, 3212, +3421, 3613, 3276, +3437, 3613, 3308, +2120, 1060, 867, +2104, 1060, 931, +2056, 1092, 1044, +1943, 1140, 1188, +1831, 1204, 1285, +1750, 1269, 1381, +1718, 1301, 1445, +1702, 1317, 1510, +1734, 1349, 1606, +1750, 1365, 1670, +1750, 1381, 1734, +1766, 1381, 1799, +1815, 1429, 1879, +1831, 1477, 1975, +1879, 1493, 2072, +1911, 1558, 2168, +1927, 1590, 2264, +2088, 1108, 867, +2072, 1092, 947, +2072, 1140, 1076, +1975, 1172, 1188, +1895, 1237, 1301, +1783, 1285, 1413, +1718, 1349, 1445, +1734, 1349, 1542, +1750, 1365, 1622, +1734, 1381, 1686, +1766, 1397, 1766, +1783, 1429, 1815, +1815, 1445, 1927, +1847, 1493, 1991, +1895, 1510, 2088, +1911, 1558, 2184, +1959, 1590, 2248, +2136, 1188, 899, +2120, 1204, 1012, +2104, 1188, 1076, +2023, 1237, 1237, +1927, 1269, 1333, +1831, 1333, 1461, +1750, 1381, 1477, +1766, 1397, 1558, +1750, 1397, 1606, +1783, 1445, 1686, +1799, 1445, 1766, +1815, 1477, 1831, +1847, 1510, 1943, +1879, 1542, 2007, +1895, 1558, 2120, +1959, 1590, 2184, +1991, 1622, 2248, +2168, 1253, 915, +2120, 1253, 996, +2120, 1269, 1108, +2072, 1269, 1188, +1975, 1349, 1381, +1895, 1397, 1477, +1815, 1445, 1526, +1799, 1461, 1590, +1815, 1477, 1654, +1799, 1493, 1718, +1847, 1526, 1815, +1847, 1542, 1879, +1895, 1590, 2007, +1895, 1606, 2056, +1943, 1622, 2104, +1959, 1654, 2200, +2023, 1702, 2312, +2280, 1333, 835, +2232, 1365, 947, +2168, 1381, 1108, +2152, 1397, 1204, +2088, 1445, 1381, +1991, 1461, 1477, +1911, 1542, 1590, +1847, 1558, 1638, +1895, 1590, 1718, +1879, 1606, 1799, +1895, 1622, 1831, +1911, 1622, 1911, +1927, 1654, 1975, +1991, 1670, 2072, +2023, 1702, 2200, +2039, 1750, 2232, +2088, 1783, 2329, +2329, 1493, 931, +2312, 1493, 980, +2296, 1493, 1076, +2184, 1542, 1285, +2200, 1542, 1381, +2120, 1606, 1526, +2023, 1638, 1638, +1943, 1670, 1686, +1943, 1686, 1766, +1959, 1718, 1831, +1975, 1718, 1895, +1991, 1718, 1975, +2072, 1766, 2056, +2088, 1799, 2136, +2072, 1815, 2200, +2072, 1831, 2280, +2120, 1879, 2377, +2329, 1686, 1076, +2345, 1686, 1076, +2361, 1702, 1140, +2377, 1686, 1237, +2312, 1702, 1397, +2264, 1702, 1526, +2168, 1750, 1670, +2120, 1799, 1766, +2072, 1831, 1831, +2056, 1831, 1895, +2104, 1863, 1959, +2104, 1863, 2023, +2136, 1879, 2104, +2136, 1911, 2184, +2152, 1959, 2280, +2184, 1959, 2345, +2232, 1991, 2441, +2345, 1863, 1156, +2312, 1863, 1204, +2345, 1879, 1253, +2345, 1863, 1301, +2377, 1863, 1397, +2377, 1879, 1493, +2312, 1895, 1686, +2280, 1927, 1815, +2184, 1959, 1895, +2152, 1975, 1927, +2184, 1991, 2007, +2216, 2007, 2088, +2248, 2023, 2168, +2216, 2039, 2232, +2264, 2072, 2329, +2312, 2104, 2425, +2361, 2136, 2521, +2393, 2039, 1301, +2393, 2039, 1333, +2409, 2039, 1365, +2409, 2039, 1445, +2441, 2039, 1477, +2425, 2039, 1558, +2473, 2039, 1670, +2425, 2072, 1847, +2361, 2120, 1975, +2312, 2136, 2007, +2329, 2152, 2104, +2345, 2168, 2168, +2361, 2184, 2248, +2329, 2200, 2296, +2393, 2232, 2393, +2393, 2232, 2489, +2425, 2280, 2553, +2489, 2264, 1510, +2489, 2264, 1510, +2489, 2280, 1558, +2505, 2264, 1606, +2457, 2280, 1670, +2473, 2280, 1734, +2457, 2264, 1783, +2521, 2280, 1863, +2553, 2248, 1943, +2425, 2296, 2152, +2425, 2296, 2184, +2425, 2312, 2248, +2473, 2345, 2345, +2457, 2361, 2409, +2489, 2377, 2489, +2505, 2377, 2553, +2537, 2409, 2650, +2634, 2441, 1606, +2618, 2425, 1622, +2602, 2425, 1670, +2602, 2441, 1718, +2618, 2457, 1799, +2569, 2441, 1863, +2569, 2457, 1927, +2585, 2473, 2039, +2585, 2457, 2104, +2618, 2457, 2136, +2569, 2473, 2280, +2585, 2489, 2361, +2569, 2505, 2425, +2569, 2521, 2505, +2602, 2521, 2569, +2634, 2569, 2650, +2666, 2569, 2746, +2698, 2602, 1702, +2714, 2618, 1750, +2746, 2618, 1799, +2714, 2618, 1847, +2730, 2634, 1911, +2714, 2634, 1975, +2698, 2634, 2039, +2714, 2618, 2088, +2714, 2650, 2200, +2746, 2666, 2312, +2730, 2682, 2377, +2714, 2682, 2441, +2714, 2698, 2505, +2714, 2714, 2618, +2714, 2698, 2682, +2730, 2730, 2762, +2746, 2746, 2842, +2842, 2810, 1847, +2842, 2810, 1879, +2858, 2794, 1911, +2875, 2810, 1911, +2858, 2810, 1975, +2842, 2810, 2039, +2842, 2794, 2120, +2826, 2794, 2184, +2858, 2810, 2296, +2858, 2826, 2329, +2858, 2842, 2441, +2858, 2842, 2537, +2875, 2842, 2602, +2875, 2858, 2682, +2907, 2875, 2762, +2907, 2891, 2826, +2907, 2907, 2907, +2971, 3003, 1943, +2971, 2971, 1959, +2987, 2987, 2007, +2939, 2987, 2023, +2971, 2987, 2104, +2955, 2987, 2152, +2939, 3003, 2232, +2987, 3003, 2312, +2955, 3003, 2361, +2987, 3003, 2473, +3003, 3019, 2585, +2987, 3035, 2682, +3019, 3035, 2714, +3019, 3051, 2762, +3035, 3051, 2858, +3067, 3067, 2971, +3051, 3083, 3035, +3115, 3212, 2104, +3115, 3212, 2088, +3115, 3212, 2136, +3083, 3196, 2184, +3083, 3212, 2216, +3083, 3212, 2280, +3099, 3196, 2312, +3083, 3212, 2409, +3099, 3196, 2473, +3067, 3196, 2569, +3099, 3212, 2666, +3115, 3212, 2746, +3148, 3228, 2826, +3131, 3228, 2875, +3164, 3228, 2923, +3196, 3244, 3003, +3212, 3260, 3115, +3228, 3404, 2216, +3244, 3404, 2232, +3212, 3404, 2264, +3228, 3404, 2296, +3212, 3404, 2345, +3196, 3404, 2377, +3212, 3388, 2441, +3212, 3404, 2521, +3228, 3404, 2618, +3228, 3388, 2714, +3324, 3421, 2810, +3292, 3421, 2907, +3292, 3404, 2955, +3340, 3421, 3051, +3324, 3437, 3115, +3372, 3453, 3164, +3388, 3437, 3196, +3388, 3581, 2361, +3421, 3613, 2377, +3404, 3597, 2409, +3388, 3597, 2441, +3388, 3597, 2473, +3372, 3597, 2505, +3356, 3597, 2553, +3388, 3613, 2666, +3388, 3629, 2746, +3372, 3613, 2826, +3421, 3581, 2891, +3421, 3613, 2971, +3453, 3581, 3099, +3469, 3613, 3148, +3469, 3597, 3212, +3485, 3613, 3260, +3517, 3629, 3308, +2296, 1156, 915, +2296, 1156, 1012, +2264, 1172, 1140, +2168, 1237, 1237, +2072, 1301, 1381, +1975, 1333, 1445, +1879, 1397, 1542, +1895, 1429, 1558, +1879, 1445, 1654, +1911, 1461, 1718, +1927, 1493, 1815, +1927, 1510, 1879, +1959, 1526, 1959, +1975, 1558, 2039, +2056, 1574, 2120, +2088, 1622, 2216, +2120, 1654, 2312, +2296, 1172, 931, +2296, 1188, 1012, +2280, 1188, 1124, +2184, 1253, 1285, +2072, 1301, 1381, +1991, 1365, 1445, +1911, 1413, 1526, +1895, 1445, 1574, +1911, 1461, 1654, +1911, 1493, 1750, +1943, 1510, 1831, +1943, 1526, 1911, +1959, 1574, 1991, +2007, 1574, 2039, +2056, 1606, 2104, +2072, 1622, 2216, +2120, 1670, 2280, +2312, 1253, 947, +2329, 1237, 996, +2329, 1253, 1124, +2232, 1285, 1237, +2136, 1365, 1381, +2023, 1413, 1493, +1927, 1461, 1574, +1943, 1510, 1638, +1927, 1526, 1702, +1943, 1526, 1750, +1975, 1574, 1863, +1975, 1574, 1895, +1991, 1590, 1991, +2023, 1606, 2072, +2072, 1622, 2152, +2104, 1670, 2232, +2136, 1702, 2361, +2361, 1317, 947, +2329, 1333, 1060, +2329, 1349, 1140, +2296, 1349, 1269, +2184, 1429, 1413, +2120, 1477, 1542, +2007, 1542, 1622, +1959, 1558, 1638, +1959, 1574, 1718, +1959, 1590, 1783, +1975, 1606, 1847, +1975, 1622, 1927, +2056, 1638, 2023, +2072, 1686, 2104, +2120, 1702, 2200, +2136, 1734, 2248, +2184, 1750, 2345, +2473, 1397, 915, +2425, 1445, 1060, +2361, 1445, 1172, +2345, 1445, 1285, +2296, 1477, 1397, +2200, 1542, 1510, +2088, 1590, 1622, +2023, 1654, 1702, +2023, 1654, 1750, +2039, 1654, 1815, +2056, 1686, 1911, +2088, 1702, 1991, +2120, 1750, 2056, +2152, 1766, 2136, +2152, 1783, 2200, +2200, 1815, 2296, +2168, 1847, 2377, +2537, 1558, 947, +2505, 1526, 996, +2489, 1558, 1140, +2409, 1606, 1349, +2377, 1606, 1445, +2296, 1622, 1574, +2232, 1686, 1670, +2152, 1734, 1766, +2104, 1766, 1799, +2136, 1766, 1879, +2136, 1799, 1943, +2136, 1815, 2007, +2168, 1815, 2088, +2184, 1847, 2168, +2216, 1863, 2232, +2312, 1911, 2377, +2280, 1943, 2425, +2553, 1718, 1012, +2521, 1702, 1060, +2569, 1702, 1140, +2521, 1718, 1237, +2441, 1734, 1429, +2441, 1766, 1590, +2377, 1799, 1670, +2264, 1847, 1815, +2184, 1895, 1847, +2216, 1911, 1943, +2216, 1927, 2007, +2232, 1943, 2088, +2248, 1943, 2152, +2296, 1959, 2264, +2312, 1975, 2280, +2329, 2007, 2361, +2361, 2072, 2473, +2585, 1911, 1156, +2585, 1911, 1188, +2618, 1911, 1237, +2585, 1895, 1317, +2585, 1879, 1381, +2569, 1927, 1590, +2537, 1927, 1718, +2441, 1975, 1847, +2345, 2007, 1943, +2345, 2039, 2007, +2329, 2056, 2072, +2345, 2056, 2136, +2377, 2104, 2232, +2425, 2120, 2296, +2409, 2136, 2393, +2425, 2168, 2473, +2489, 2200, 2553, +2618, 2088, 1285, +2618, 2104, 1317, +2602, 2104, 1381, +2634, 2072, 1413, +2618, 2104, 1510, +2666, 2088, 1606, +2666, 2104, 1702, +2602, 2120, 1863, +2537, 2152, 2023, +2441, 2200, 2088, +2457, 2216, 2136, +2473, 2216, 2232, +2473, 2232, 2296, +2489, 2248, 2361, +2473, 2248, 2441, +2505, 2296, 2537, +2553, 2296, 2602, +2650, 2280, 1445, +2666, 2280, 1477, +2634, 2264, 1526, +2634, 2264, 1558, +2634, 2280, 1622, +2650, 2280, 1686, +2650, 2296, 1783, +2746, 2264, 1863, +2682, 2280, 2023, +2602, 2312, 2184, +2585, 2361, 2216, +2602, 2361, 2264, +2585, 2377, 2393, +2618, 2393, 2489, +2602, 2425, 2537, +2618, 2425, 2602, +2634, 2473, 2698, +2714, 2473, 1622, +2714, 2473, 1654, +2698, 2473, 1670, +2730, 2473, 1718, +2730, 2489, 1783, +2698, 2473, 1831, +2698, 2457, 1911, +2714, 2489, 1991, +2762, 2473, 2056, +2794, 2473, 2136, +2746, 2505, 2329, +2666, 2537, 2393, +2698, 2553, 2457, +2698, 2553, 2537, +2714, 2585, 2618, +2746, 2618, 2714, +2762, 2602, 2762, +2842, 2666, 1783, +2842, 2666, 1783, +2826, 2650, 1799, +2858, 2666, 1879, +2858, 2666, 1943, +2826, 2666, 1959, +2842, 2682, 2072, +2826, 2698, 2168, +2794, 2682, 2216, +2826, 2682, 2296, +2842, 2682, 2361, +2826, 2714, 2489, +2826, 2730, 2569, +2810, 2730, 2634, +2858, 2746, 2682, +2875, 2746, 2746, +2875, 2762, 2826, +2971, 2810, 1879, +2971, 2826, 1895, +2955, 2810, 1911, +2971, 2826, 1927, +2971, 2810, 2007, +2971, 2826, 2088, +2971, 2842, 2152, +2955, 2842, 2248, +2955, 2875, 2329, +2971, 2858, 2393, +3003, 2875, 2489, +2971, 2875, 2553, +2971, 2891, 2666, +2971, 2907, 2730, +2955, 2907, 2794, +2987, 2939, 2891, +2987, 2939, 2955, +3083, 3035, 1991, +3067, 3003, 1975, +3067, 3035, 2023, +3067, 3035, 2072, +3083, 3019, 2120, +3067, 3019, 2184, +3083, 3019, 2280, +3099, 3035, 2329, +3083, 3035, 2377, +3099, 3051, 2489, +3067, 3051, 2569, +3067, 3067, 2650, +3115, 3083, 2746, +3131, 3083, 2810, +3131, 3099, 2891, +3164, 3115, 2971, +3164, 3131, 3035, +3180, 3196, 2072, +3180, 3196, 2104, +3180, 3196, 2136, +3180, 3212, 2168, +3196, 3196, 2232, +3180, 3228, 2280, +3164, 3196, 2329, +3180, 3212, 2409, +3180, 3212, 2505, +3196, 3244, 2585, +3180, 3212, 2666, +3228, 3228, 2746, +3212, 3244, 2858, +3228, 3244, 2923, +3276, 3260, 2971, +3260, 3276, 3083, +3276, 3324, 3180, +3340, 3421, 2232, +3324, 3404, 2264, +3340, 3421, 2296, +3324, 3421, 2329, +3372, 3437, 2377, +3340, 3421, 2393, +3340, 3421, 2473, +3356, 3421, 2569, +3356, 3437, 2650, +3372, 3437, 2698, +3372, 3453, 2778, +3372, 3453, 2875, +3388, 3453, 2971, +3421, 3469, 3099, +3437, 3453, 3131, +3453, 3469, 3180, +3453, 3469, 3244, +3485, 3597, 2393, +3517, 3629, 2409, +3501, 3613, 2409, +3485, 3613, 2473, +3469, 3613, 2489, +3469, 3613, 2537, +3501, 3645, 2602, +3501, 3629, 2682, +3485, 3645, 2746, +3485, 3629, 2842, +3517, 3629, 2907, +3517, 3613, 3003, +3485, 3629, 3099, +3533, 3645, 3196, +3533, 3629, 3244, +3549, 3661, 3308, +3597, 3661, 3356, +2505, 1253, 996, +2537, 1253, 1060, +2473, 1253, 1140, +2377, 1317, 1317, +2296, 1365, 1413, +2184, 1445, 1526, +2104, 1493, 1622, +2039, 1542, 1670, +2072, 1574, 1718, +2039, 1558, 1750, +2056, 1574, 1847, +2104, 1606, 1943, +2120, 1638, 2039, +2152, 1654, 2104, +2184, 1670, 2168, +2232, 1702, 2264, +2232, 1734, 2345, +2521, 1269, 980, +2505, 1301, 1076, +2505, 1285, 1156, +2393, 1333, 1301, +2312, 1381, 1429, +2200, 1461, 1542, +2120, 1510, 1638, +2056, 1574, 1654, +2072, 1574, 1718, +2104, 1590, 1799, +2104, 1606, 1863, +2136, 1622, 1959, +2152, 1654, 2056, +2168, 1686, 2104, +2200, 1702, 2200, +2232, 1734, 2248, +2264, 1750, 2329, +2521, 1333, 1012, +2521, 1349, 1108, +2505, 1349, 1188, +2457, 1381, 1317, +2377, 1429, 1429, +2264, 1477, 1526, +2136, 1542, 1606, +2088, 1606, 1686, +2056, 1606, 1734, +2120, 1638, 1831, +2136, 1638, 1895, +2136, 1638, 1959, +2168, 1670, 2072, +2200, 1702, 2104, +2232, 1718, 2184, +2248, 1766, 2312, +2264, 1783, 2361, +2537, 1397, 1028, +2537, 1413, 1092, +2521, 1413, 1172, +2521, 1429, 1317, +2425, 1493, 1445, +2296, 1542, 1574, +2232, 1590, 1670, +2152, 1638, 1734, +2136, 1670, 1783, +2168, 1686, 1879, +2184, 1718, 1943, +2184, 1718, 2007, +2232, 1750, 2088, +2216, 1750, 2152, +2232, 1783, 2232, +2280, 1815, 2329, +2345, 1815, 2377, +2634, 1477, 1012, +2585, 1510, 1092, +2553, 1542, 1220, +2569, 1526, 1349, +2489, 1558, 1461, +2393, 1622, 1606, +2312, 1654, 1686, +2232, 1702, 1766, +2200, 1750, 1815, +2200, 1766, 1895, +2216, 1766, 1959, +2216, 1783, 2023, +2248, 1815, 2088, +2280, 1831, 2168, +2296, 1863, 2248, +2361, 1879, 2345, +2409, 1911, 2441, +2698, 1590, 980, +2682, 1590, 1028, +2650, 1638, 1188, +2569, 1654, 1317, +2585, 1654, 1461, +2489, 1686, 1590, +2409, 1734, 1718, +2312, 1799, 1799, +2248, 1847, 1847, +2280, 1863, 1927, +2264, 1863, 1975, +2329, 1895, 2072, +2345, 1895, 2136, +2377, 1911, 2248, +2393, 1943, 2312, +2425, 1959, 2345, +2425, 1975, 2441, +2794, 1734, 1044, +2778, 1718, 1092, +2778, 1734, 1172, +2730, 1766, 1285, +2650, 1799, 1477, +2618, 1799, 1606, +2569, 1847, 1734, +2505, 1895, 1847, +2393, 1943, 1927, +2393, 1975, 1975, +2361, 1975, 2023, +2409, 1991, 2104, +2409, 2007, 2184, +2457, 2039, 2280, +2457, 2072, 2361, +2489, 2088, 2441, +2553, 2136, 2569, +2778, 1911, 1140, +2794, 1927, 1188, +2794, 1911, 1237, +2826, 1943, 1333, +2826, 1959, 1429, +2714, 1991, 1654, +2730, 1991, 1766, +2634, 2039, 1879, +2537, 2072, 1959, +2473, 2120, 2039, +2473, 2136, 2104, +2505, 2152, 2184, +2505, 2168, 2248, +2553, 2200, 2361, +2569, 2184, 2409, +2602, 2200, 2489, +2585, 2200, 2553, +2810, 2136, 1317, +2810, 2152, 1349, +2810, 2120, 1365, +2810, 2136, 1429, +2842, 2120, 1493, +2842, 2120, 1590, +2778, 2152, 1799, +2746, 2152, 1895, +2682, 2184, 2056, +2602, 2248, 2152, +2553, 2248, 2184, +2553, 2264, 2248, +2602, 2280, 2345, +2634, 2296, 2425, +2666, 2312, 2489, +2682, 2345, 2553, +2666, 2361, 2666, +2826, 2280, 1429, +2826, 2296, 1477, +2858, 2296, 1526, +2842, 2296, 1574, +2858, 2296, 1606, +2907, 2296, 1686, +2891, 2312, 1783, +2923, 2312, 1879, +2842, 2312, 2072, +2778, 2361, 2200, +2698, 2409, 2280, +2714, 2441, 2361, +2682, 2425, 2409, +2730, 2441, 2489, +2746, 2441, 2553, +2730, 2489, 2650, +2746, 2489, 2714, +2875, 2505, 1622, +2891, 2489, 1622, +2891, 2505, 1654, +2875, 2505, 1718, +2907, 2489, 1750, +2891, 2489, 1847, +2907, 2489, 1943, +2923, 2505, 1975, +2955, 2489, 2039, +2939, 2505, 2232, +2842, 2537, 2377, +2794, 2569, 2425, +2810, 2602, 2505, +2810, 2602, 2602, +2858, 2634, 2698, +2842, 2666, 2746, +2858, 2666, 2810, +2939, 2682, 1799, +2939, 2682, 1799, +2923, 2682, 1815, +2939, 2698, 1895, +2923, 2698, 1927, +2955, 2698, 1991, +2939, 2698, 2056, +2971, 2714, 2136, +2971, 2714, 2200, +3003, 2714, 2296, +3083, 2682, 2361, +2971, 2730, 2553, +2923, 2746, 2569, +2955, 2746, 2650, +2923, 2778, 2730, +2971, 2794, 2810, +3019, 2826, 2907, +3083, 2842, 1911, +3099, 2875, 1927, +3083, 2858, 1943, +3115, 2858, 1991, +3115, 2875, 2072, +3099, 2875, 2120, +3083, 2875, 2216, +3083, 2891, 2280, +3083, 2907, 2329, +3067, 2907, 2409, +3067, 2891, 2457, +3099, 2907, 2569, +3099, 2891, 2698, +3083, 2939, 2794, +3035, 2955, 2810, +3067, 2955, 2891, +3115, 2987, 2987, +3228, 3051, 2023, +3228, 3051, 2023, +3228, 3067, 2088, +3212, 3051, 2120, +3212, 3067, 2184, +3180, 3051, 2232, +3212, 3067, 2312, +3212, 3067, 2345, +3196, 3083, 2441, +3212, 3067, 2505, +3212, 3099, 2618, +3244, 3115, 2698, +3228, 3115, 2762, +3228, 3131, 2875, +3212, 3131, 2939, +3180, 3131, 2987, +3212, 3148, 3067, +3308, 3244, 2136, +3292, 3228, 2152, +3292, 3244, 2168, +3324, 3228, 2232, +3276, 3244, 2248, +3292, 3228, 2329, +3292, 3228, 2345, +3292, 3260, 2457, +3308, 3244, 2521, +3308, 3260, 2634, +3308, 3244, 2682, +3308, 3260, 2762, +3308, 3292, 2842, +3324, 3292, 2939, +3372, 3324, 3035, +3340, 3308, 3099, +3372, 3308, 3164, +3469, 3437, 2280, +3485, 3437, 2280, +3469, 3437, 2312, +3469, 3437, 2345, +3485, 3469, 2425, +3469, 3469, 2425, +3485, 3453, 2521, +3469, 3453, 2585, +3453, 3453, 2634, +3485, 3469, 2762, +3485, 3485, 2810, +3485, 3469, 2891, +3501, 3469, 2987, +3469, 3469, 3067, +3517, 3501, 3180, +3501, 3501, 3212, +3533, 3501, 3324, +3597, 3629, 2409, +3549, 3629, 2425, +3581, 3613, 2425, +3581, 3613, 2457, +3597, 3645, 2489, +3565, 3629, 2521, +3549, 3629, 2585, +3581, 3629, 2698, +3581, 3645, 2746, +3565, 3645, 2842, +3581, 3645, 2875, +3565, 3645, 2971, +3581, 3661, 3083, +3597, 3677, 3228, +3613, 3661, 3292, +3677, 3677, 3324, +3677, 3694, 3356, +2682, 1333, 1028, +2666, 1333, 1108, +2666, 1349, 1188, +2602, 1413, 1333, +2505, 1445, 1461, +2441, 1510, 1574, +2329, 1590, 1702, +2264, 1638, 1766, +2216, 1638, 1783, +2232, 1654, 1831, +2264, 1686, 1943, +2280, 1718, 2023, +2280, 1718, 2056, +2312, 1750, 2184, +2329, 1766, 2232, +2377, 1799, 2329, +2409, 1815, 2409, +2682, 1365, 1044, +2698, 1365, 1092, +2714, 1381, 1220, +2634, 1429, 1349, +2521, 1493, 1493, +2441, 1526, 1590, +2361, 1574, 1686, +2264, 1638, 1766, +2264, 1686, 1799, +2264, 1686, 1863, +2264, 1702, 1927, +2280, 1734, 2007, +2312, 1750, 2120, +2312, 1766, 2168, +2361, 1783, 2248, +2409, 1815, 2312, +2457, 1847, 2441, +2698, 1429, 1076, +2698, 1397, 1108, +2714, 1413, 1220, +2682, 1461, 1365, +2569, 1526, 1493, +2473, 1558, 1590, +2377, 1622, 1686, +2312, 1670, 1783, +2280, 1718, 1831, +2248, 1718, 1879, +2296, 1734, 1943, +2296, 1750, 2023, +2329, 1783, 2088, +2361, 1799, 2168, +2361, 1831, 2248, +2425, 1831, 2329, +2457, 1879, 2441, +2730, 1493, 1092, +2746, 1493, 1156, +2746, 1493, 1237, +2698, 1510, 1333, +2634, 1574, 1493, +2553, 1622, 1590, +2457, 1686, 1718, +2345, 1702, 1783, +2296, 1766, 1831, +2329, 1766, 1863, +2329, 1799, 1975, +2329, 1799, 2007, +2361, 1831, 2136, +2393, 1831, 2200, +2425, 1879, 2264, +2457, 1895, 2377, +2489, 1927, 2409, +2842, 1558, 1044, +2730, 1574, 1156, +2746, 1606, 1269, +2730, 1606, 1365, +2698, 1622, 1477, +2569, 1670, 1606, +2521, 1734, 1718, +2425, 1766, 1799, +2361, 1815, 1863, +2345, 1847, 1927, +2393, 1879, 2023, +2425, 1895, 2104, +2441, 1879, 2168, +2457, 1927, 2216, +2441, 1927, 2280, +2505, 1959, 2377, +2521, 1991, 2473, +2907, 1638, 1012, +2891, 1670, 1140, +2826, 1718, 1269, +2778, 1702, 1349, +2794, 1718, 1510, +2730, 1766, 1638, +2634, 1799, 1766, +2553, 1879, 1847, +2489, 1895, 1927, +2473, 1959, 1991, +2441, 1959, 2039, +2473, 1959, 2104, +2473, 1975, 2200, +2521, 2023, 2280, +2553, 2039, 2361, +2553, 2072, 2457, +2602, 2104, 2537, +2987, 1766, 1044, +2955, 1783, 1108, +2939, 1799, 1204, +2875, 1831, 1365, +2842, 1863, 1493, +2826, 1863, 1638, +2746, 1911, 1783, +2634, 1943, 1879, +2585, 2007, 1975, +2521, 2056, 2007, +2553, 2072, 2088, +2553, 2088, 2152, +2602, 2120, 2248, +2602, 2136, 2329, +2618, 2168, 2409, +2602, 2152, 2489, +2682, 2168, 2553, +3019, 1991, 1204, +3003, 1975, 1237, +3003, 1991, 1269, +3019, 1991, 1365, +2955, 2007, 1526, +2891, 2039, 1670, +2923, 2056, 1815, +2810, 2088, 1943, +2730, 2136, 2039, +2634, 2168, 2120, +2618, 2200, 2168, +2602, 2200, 2232, +2666, 2216, 2312, +2682, 2232, 2393, +2682, 2232, 2441, +2698, 2264, 2537, +2730, 2280, 2618, +3003, 2136, 1285, +2987, 2136, 1301, +3035, 2136, 1349, +3067, 2136, 1429, +3051, 2104, 1493, +3035, 2152, 1638, +2939, 2168, 1831, +2955, 2168, 1959, +2875, 2216, 2088, +2746, 2264, 2200, +2714, 2312, 2200, +2714, 2329, 2280, +2746, 2345, 2361, +2746, 2361, 2473, +2794, 2377, 2521, +2762, 2377, 2602, +2794, 2409, 2698, +3051, 2345, 1461, +3035, 2345, 1477, +3067, 2345, 1526, +3067, 2345, 1558, +3051, 2345, 1606, +3051, 2329, 1686, +3067, 2312, 1783, +3019, 2345, 1991, +3003, 2345, 2072, +2939, 2393, 2216, +2858, 2457, 2345, +2810, 2457, 2361, +2826, 2489, 2457, +2842, 2505, 2537, +2858, 2521, 2618, +2891, 2521, 2682, +2907, 2569, 2778, +3083, 2553, 1622, +3067, 2537, 1638, +3051, 2521, 1622, +3067, 2521, 1686, +3083, 2537, 1766, +3099, 2537, 1831, +3115, 2537, 1927, +3180, 2537, 1991, +3148, 2521, 2056, +3083, 2553, 2264, +3035, 2602, 2441, +2955, 2634, 2473, +2955, 2650, 2505, +2939, 2666, 2602, +2955, 2666, 2714, +2971, 2682, 2730, +2987, 2698, 2875, +3148, 2714, 1783, +3131, 2714, 1799, +3131, 2714, 1831, +3115, 2714, 1863, +3099, 2714, 1911, +3131, 2714, 1959, +3131, 2714, 2023, +3148, 2714, 2088, +3212, 2714, 2200, +3212, 2698, 2248, +3164, 2730, 2457, +3115, 2762, 2569, +3067, 2794, 2618, +3067, 2810, 2698, +3099, 2826, 2778, +3099, 2826, 2842, +3099, 2858, 2923, +3212, 2891, 1911, +3180, 2907, 1943, +3212, 2907, 1975, +3164, 2907, 1991, +3196, 2907, 2072, +3196, 2923, 2136, +3180, 2907, 2200, +3180, 2907, 2248, +3228, 2907, 2296, +3212, 2907, 2361, +3276, 2923, 2473, +3276, 2907, 2537, +3228, 2939, 2698, +3180, 2987, 2778, +3196, 2987, 2891, +3164, 3019, 2955, +3212, 3035, 3051, +3356, 3099, 2056, +3324, 3083, 2072, +3340, 3099, 2104, +3356, 3115, 2152, +3340, 3115, 2216, +3340, 3099, 2280, +3340, 3099, 2296, +3340, 3131, 2425, +3324, 3115, 2473, +3292, 3115, 2553, +3292, 3131, 2634, +3292, 3115, 2682, +3324, 3115, 2762, +3292, 3115, 2875, +3292, 3148, 2955, +3292, 3196, 3035, +3308, 3180, 3083, +3421, 3276, 2152, +3421, 3276, 2184, +3453, 3260, 2216, +3437, 3276, 2248, +3404, 3276, 2312, +3437, 3292, 2361, +3421, 3292, 2425, +3404, 3292, 2489, +3453, 3308, 2585, +3437, 3324, 2682, +3453, 3308, 2778, +3453, 3324, 2810, +3453, 3308, 2891, +3453, 3324, 2971, +3485, 3340, 3083, +3485, 3372, 3164, +3453, 3356, 3228, +3597, 3469, 2329, +3581, 3469, 2329, +3597, 3485, 2377, +3581, 3469, 2393, +3581, 3485, 2425, +3581, 3485, 2473, +3549, 3469, 2521, +3565, 3469, 2618, +3565, 3453, 2682, +3581, 3469, 2746, +3597, 3469, 2826, +3597, 3501, 2907, +3613, 3501, 3019, +3581, 3517, 3067, +3597, 3517, 3180, +3613, 3517, 3244, +3629, 3549, 3340, +3677, 3661, 2425, +3677, 3661, 2457, +3677, 3661, 2441, +3694, 3645, 2473, +3694, 3645, 2505, +3677, 3645, 2537, +3694, 3677, 2634, +3710, 3677, 2730, +3677, 3661, 2778, +3710, 3677, 2907, +3694, 3677, 2923, +3710, 3677, 3019, +3710, 3694, 3115, +3726, 3694, 3212, +3694, 3694, 3308, +3758, 3726, 3404, +3806, 3758, 3517, +2923, 1445, 1108, +2907, 1429, 1156, +2907, 1445, 1285, +2842, 1477, 1381, +2730, 1526, 1510, +2634, 1590, 1606, +2553, 1638, 1718, +2441, 1686, 1799, +2409, 1766, 1847, +2409, 1783, 1911, +2441, 1783, 1975, +2473, 1799, 2056, +2473, 1815, 2120, +2489, 1847, 2216, +2521, 1863, 2280, +2553, 1895, 2361, +2553, 1927, 2441, +2923, 1429, 1076, +2923, 1445, 1156, +2907, 1445, 1237, +2842, 1461, 1349, +2778, 1526, 1493, +2650, 1606, 1622, +2585, 1654, 1718, +2489, 1718, 1783, +2409, 1766, 1831, +2425, 1783, 1911, +2425, 1815, 1991, +2457, 1815, 2072, +2489, 1831, 2152, +2489, 1847, 2216, +2537, 1879, 2329, +2553, 1895, 2361, +2569, 1943, 2441, +2939, 1477, 1108, +2923, 1477, 1188, +2907, 1477, 1269, +2875, 1493, 1365, +2794, 1574, 1526, +2714, 1622, 1638, +2602, 1702, 1734, +2521, 1750, 1815, +2441, 1799, 1863, +2409, 1815, 1927, +2489, 1831, 2023, +2489, 1847, 2104, +2489, 1879, 2168, +2537, 1879, 2216, +2537, 1911, 2296, +2569, 1943, 2393, +2602, 1959, 2473, +2955, 1558, 1156, +2939, 1558, 1204, +2923, 1558, 1285, +2923, 1574, 1397, +2858, 1638, 1526, +2778, 1670, 1622, +2666, 1734, 1766, +2602, 1783, 1831, +2537, 1847, 1927, +2505, 1863, 1959, +2521, 1879, 2007, +2537, 1911, 2088, +2505, 1911, 2136, +2553, 1927, 2264, +2553, 1943, 2296, +2634, 2007, 2425, +2650, 2039, 2521, +2987, 1654, 1172, +2987, 1654, 1204, +2971, 1654, 1253, +2971, 1670, 1381, +2907, 1702, 1526, +2826, 1750, 1686, +2762, 1799, 1750, +2682, 1863, 1879, +2553, 1895, 1943, +2537, 1911, 1975, +2553, 1943, 2072, +2569, 1975, 2136, +2569, 2007, 2232, +2618, 2023, 2312, +2618, 2039, 2393, +2666, 2056, 2473, +2666, 2088, 2553, +3099, 1702, 1092, +3035, 1766, 1220, +3003, 1783, 1333, +2987, 1783, 1413, +2971, 1783, 1526, +2907, 1815, 1670, +2826, 1863, 1783, +2762, 1959, 1927, +2682, 2007, 1991, +2618, 2039, 2023, +2634, 2056, 2104, +2650, 2072, 2184, +2650, 2088, 2248, +2666, 2088, 2312, +2682, 2120, 2393, +2714, 2136, 2505, +2746, 2152, 2569, +3228, 1847, 1124, +3164, 1847, 1156, +3180, 1879, 1269, +3083, 1927, 1445, +3067, 1927, 1590, +3051, 1927, 1702, +2939, 1975, 1831, +2875, 2039, 1959, +2778, 2088, 2056, +2714, 2136, 2120, +2682, 2152, 2152, +2666, 2152, 2200, +2746, 2184, 2345, +2730, 2168, 2361, +2762, 2200, 2473, +2778, 2232, 2569, +2794, 2248, 2618, +3260, 2007, 1172, +3244, 2007, 1204, +3228, 2007, 1285, +3196, 2007, 1365, +3115, 2056, 1590, +3083, 2039, 1686, +3099, 2072, 1815, +2987, 2104, 1959, +2923, 2168, 2088, +2826, 2200, 2168, +2778, 2264, 2232, +2810, 2264, 2264, +2778, 2264, 2361, +2794, 2296, 2441, +2810, 2312, 2553, +2842, 2345, 2602, +2858, 2345, 2698, +3244, 2168, 1285, +3228, 2168, 1317, +3260, 2168, 1349, +3228, 2152, 1429, +3244, 2168, 1542, +3212, 2200, 1702, +3131, 2232, 1879, +3099, 2232, 2007, +3051, 2280, 2152, +2955, 2345, 2248, +2858, 2377, 2296, +2842, 2377, 2312, +2858, 2393, 2409, +2891, 2409, 2521, +2891, 2425, 2553, +2923, 2457, 2682, +2939, 2473, 2730, +3228, 2377, 1461, +3244, 2393, 1510, +3228, 2377, 1493, +3276, 2361, 1526, +3276, 2361, 1606, +3292, 2361, 1686, +3276, 2361, 1815, +3196, 2409, 2023, +3196, 2425, 2168, +3099, 2473, 2312, +2987, 2489, 2377, +2939, 2537, 2425, +2955, 2553, 2505, +2971, 2553, 2585, +2971, 2585, 2666, +3003, 2585, 2730, +3019, 2618, 2826, +3260, 2569, 1590, +3260, 2569, 1622, +3260, 2569, 1654, +3244, 2569, 1718, +3260, 2569, 1766, +3308, 2537, 1799, +3292, 2537, 1895, +3324, 2553, 1975, +3260, 2569, 2152, +3244, 2585, 2345, +3164, 2634, 2441, +3131, 2666, 2537, +3067, 2698, 2585, +3099, 2698, 2650, +3099, 2714, 2730, +3115, 2714, 2794, +3115, 2730, 2875, +3292, 2746, 1766, +3324, 2746, 1783, +3324, 2746, 1815, +3308, 2746, 1879, +3308, 2746, 1911, +3324, 2730, 1927, +3324, 2746, 2039, +3356, 2746, 2104, +3404, 2746, 2184, +3388, 2762, 2312, +3356, 2762, 2457, +3292, 2810, 2618, +3196, 2842, 2682, +3196, 2842, 2714, +3180, 2858, 2794, +3228, 2891, 2907, +3228, 2907, 2955, +3372, 2939, 1927, +3388, 2939, 1927, +3372, 2939, 1959, +3372, 2939, 2023, +3388, 2955, 2072, +3372, 2955, 2120, +3356, 2923, 2200, +3388, 2939, 2248, +3404, 2955, 2312, +3404, 2939, 2377, +3469, 2939, 2457, +3404, 2971, 2682, +3372, 3003, 2778, +3324, 3035, 2826, +3324, 3051, 2907, +3372, 3083, 3003, +3340, 3067, 3051, +3404, 3115, 2072, +3404, 3115, 2072, +3404, 3115, 2104, +3404, 3115, 2136, +3404, 3131, 2216, +3421, 3131, 2280, +3404, 3115, 2296, +3388, 3115, 2361, +3404, 3115, 2425, +3404, 3131, 2537, +3437, 3131, 2618, +3453, 3131, 2682, +3517, 3131, 2714, +3421, 3180, 2955, +3404, 3212, 3003, +3437, 3212, 3067, +3437, 3228, 3148, +3565, 3308, 2216, +3597, 3324, 2232, +3581, 3308, 2248, +3565, 3308, 2280, +3565, 3324, 2345, +3565, 3324, 2393, +3581, 3324, 2457, +3581, 3324, 2521, +3549, 3324, 2618, +3533, 3324, 2666, +3565, 3340, 2762, +3581, 3356, 2842, +3581, 3356, 2891, +3613, 3356, 3003, +3597, 3372, 3148, +3597, 3404, 3228, +3581, 3421, 3276, +3694, 3485, 2329, +3694, 3485, 2361, +3694, 3485, 2361, +3694, 3501, 2409, +3710, 3501, 2489, +3710, 3501, 2489, +3710, 3501, 2553, +3694, 3501, 2650, +3677, 3517, 2714, +3694, 3517, 2778, +3677, 3517, 2875, +3710, 3517, 2955, +3694, 3533, 3019, +3710, 3533, 3131, +3710, 3549, 3196, +3694, 3549, 3260, +3710, 3581, 3356, +3838, 3694, 2473, +3806, 3677, 2457, +3822, 3677, 2505, +3822, 3694, 2553, +3806, 3694, 2569, +3790, 3677, 2602, +3790, 3694, 2666, +3806, 3677, 2730, +3790, 3694, 2842, +3790, 3710, 2907, +3838, 3742, 3003, +3854, 3774, 3131, +3854, 3758, 3196, +3854, 3790, 3340, +3822, 3774, 3388, +3838, 3790, 3533, +3854, 3806, 3645, +3115, 1526, 1172, +3099, 1526, 1253, +3099, 1542, 1285, +3067, 1542, 1413, +2971, 1590, 1542, +2891, 1670, 1670, +2794, 1750, 1783, +2730, 1799, 1847, +2650, 1831, 1943, +2618, 1879, 1991, +2602, 1879, 2039, +2618, 1879, 2104, +2634, 1911, 2184, +2650, 1959, 2280, +2666, 1991, 2361, +2698, 1991, 2441, +2746, 2056, 2553, +3099, 1558, 1172, +3115, 1542, 1204, +3099, 1542, 1285, +3083, 1574, 1445, +2971, 1622, 1558, +2891, 1670, 1670, +2826, 1766, 1783, +2746, 1815, 1863, +2634, 1863, 1959, +2618, 1879, 1959, +2585, 1879, 2023, +2602, 1911, 2120, +2634, 1911, 2184, +2666, 1959, 2280, +2698, 2007, 2393, +2730, 2023, 2473, +2730, 2039, 2553, +3131, 1590, 1172, +3148, 1590, 1220, +3115, 1574, 1301, +3067, 1590, 1413, +3019, 1654, 1574, +2955, 1718, 1686, +2842, 1783, 1799, +2746, 1815, 1879, +2650, 1879, 1943, +2618, 1911, 1975, +2650, 1927, 2056, +2666, 1959, 2136, +2682, 1991, 2248, +2666, 1991, 2312, +2714, 2023, 2409, +2730, 2056, 2489, +2762, 2072, 2569, +3131, 1638, 1172, +3115, 1638, 1253, +3131, 1654, 1317, +3115, 1622, 1413, +3035, 1670, 1542, +2987, 1734, 1654, +2875, 1815, 1799, +2810, 1863, 1895, +2730, 1943, 1975, +2682, 1975, 2007, +2682, 1991, 2072, +2698, 2007, 2152, +2682, 2023, 2216, +2730, 2056, 2345, +2762, 2088, 2409, +2794, 2088, 2473, +2810, 2088, 2537, +3148, 1718, 1237, +3180, 1750, 1301, +3164, 1750, 1349, +3180, 1750, 1477, +3180, 1750, 1574, +3051, 1831, 1702, +2987, 1895, 1863, +2875, 1943, 1927, +2778, 1991, 1991, +2714, 2072, 2072, +2730, 2072, 2152, +2730, 2072, 2200, +2762, 2104, 2296, +2794, 2104, 2361, +2794, 2120, 2441, +2810, 2120, 2505, +2826, 2152, 2585, +3324, 1799, 1204, +3276, 1831, 1285, +3228, 1831, 1365, +3228, 1847, 1477, +3212, 1847, 1590, +3148, 1879, 1734, +3083, 1943, 1831, +2955, 2023, 1975, +2907, 2056, 2072, +2794, 2120, 2136, +2762, 2120, 2152, +2810, 2136, 2248, +2794, 2152, 2312, +2826, 2152, 2377, +2842, 2200, 2473, +2842, 2200, 2537, +2891, 2232, 2634, +3404, 1895, 1188, +3372, 1895, 1204, +3324, 1943, 1349, +3228, 1991, 1526, +3228, 1991, 1654, +3212, 1991, 1734, +3148, 2023, 1847, +3067, 2072, 1991, +2987, 2136, 2088, +2891, 2200, 2184, +2842, 2216, 2216, +2858, 2232, 2296, +2858, 2248, 2361, +2858, 2248, 2425, +2907, 2280, 2553, +2907, 2296, 2618, +2907, 2329, 2666, +3437, 2056, 1204, +3421, 2039, 1253, +3388, 2056, 1317, +3372, 2056, 1397, +3276, 2120, 1638, +3260, 2120, 1766, +3244, 2136, 1911, +3164, 2184, 2039, +3067, 2232, 2152, +3019, 2296, 2232, +2907, 2312, 2280, +2923, 2345, 2329, +2923, 2361, 2393, +2939, 2361, 2489, +2955, 2377, 2553, +2955, 2409, 2618, +3003, 2441, 2746, +3404, 2200, 1301, +3469, 2216, 1365, +3453, 2216, 1397, +3437, 2200, 1461, +3421, 2232, 1574, +3340, 2248, 1734, +3292, 2280, 1927, +3308, 2296, 2056, +3228, 2312, 2136, +3099, 2377, 2280, +3019, 2425, 2345, +2987, 2473, 2409, +3003, 2457, 2489, +3035, 2505, 2569, +3035, 2521, 2634, +3051, 2537, 2746, +3051, 2537, 2778, +3437, 2393, 1445, +3469, 2409, 1461, +3469, 2409, 1493, +3485, 2409, 1574, +3469, 2393, 1622, +3469, 2409, 1750, +3437, 2409, 1895, +3388, 2457, 2088, +3340, 2457, 2200, +3292, 2521, 2345, +3164, 2553, 2457, +3083, 2585, 2473, +3099, 2602, 2521, +3099, 2618, 2602, +3115, 2634, 2714, +3164, 2650, 2762, +3164, 2650, 2891, +3469, 2585, 1590, +3469, 2585, 1606, +3453, 2585, 1654, +3485, 2569, 1686, +3469, 2569, 1750, +3533, 2569, 1847, +3549, 2553, 1927, +3501, 2569, 2007, +3421, 2602, 2216, +3437, 2602, 2345, +3340, 2666, 2489, +3260, 2714, 2585, +3212, 2746, 2634, +3212, 2762, 2698, +3228, 2762, 2762, +3244, 2794, 2858, +3260, 2778, 2907, +3485, 2778, 1750, +3485, 2778, 1799, +3469, 2762, 1815, +3469, 2778, 1847, +3485, 2762, 1895, +3533, 2778, 1959, +3517, 2746, 1991, +3565, 2762, 2088, +3565, 2746, 2168, +3549, 2778, 2345, +3517, 2794, 2505, +3421, 2810, 2634, +3356, 2875, 2714, +3308, 2907, 2762, +3324, 2923, 2875, +3324, 2939, 2939, +3356, 2939, 3019, +3533, 2971, 1895, +3533, 3003, 1943, +3549, 2987, 1927, +3533, 2971, 1991, +3581, 2987, 2039, +3581, 2955, 2088, +3549, 2987, 2184, +3565, 2987, 2264, +3613, 2971, 2329, +3645, 2971, 2361, +3645, 2987, 2505, +3581, 3019, 2730, +3533, 3035, 2810, +3404, 3067, 2875, +3404, 3051, 2923, +3404, 3067, 2971, +3437, 3083, 3083, +3581, 3164, 2056, +3565, 3148, 2072, +3565, 3164, 2120, +3581, 3131, 2136, +3549, 3148, 2216, +3581, 3148, 2248, +3581, 3164, 2329, +3597, 3164, 2377, +3597, 3180, 2457, +3613, 3164, 2521, +3645, 3164, 2602, +3661, 3164, 2698, +3645, 3180, 2858, +3597, 3228, 3003, +3549, 3260, 3051, +3549, 3260, 3115, +3565, 3276, 3196, +3710, 3356, 2248, +3694, 3340, 2280, +3694, 3340, 2280, +3694, 3372, 2361, +3710, 3372, 2393, +3694, 3372, 2425, +3677, 3372, 2489, +3694, 3356, 2537, +3694, 3372, 2618, +3694, 3388, 2682, +3694, 3372, 2794, +3742, 3388, 2826, +3758, 3388, 2907, +3790, 3372, 3003, +3710, 3404, 3196, +3677, 3437, 3244, +3710, 3437, 3308, +3854, 3533, 2409, +3854, 3533, 2409, +3806, 3517, 2393, +3854, 3533, 2473, +3806, 3549, 2505, +3822, 3533, 2537, +3822, 3549, 2602, +3806, 3533, 2666, +3822, 3533, 2730, +3790, 3533, 2810, +3806, 3549, 2858, +3790, 3549, 2955, +3790, 3581, 3051, +3806, 3581, 3148, +3822, 3581, 3212, +3822, 3597, 3324, +3806, 3597, 3388, +3983, 3758, 2553, +3983, 3774, 2602, +3950, 3758, 2618, +3967, 3774, 2634, +3967, 3774, 2698, +3950, 3774, 2762, +3934, 3758, 2746, +3950, 3758, 2891, +3934, 3758, 2955, +3918, 3774, 3019, +3950, 3774, 3131, +3934, 3790, 3196, +3950, 3806, 3340, +3934, 3790, 3404, +3950, 3854, 3613, +3918, 3854, 3661, +3902, 3870, 3806] + } +} \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/test_clt_32_LUT.3dl b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/test_clt_32_LUT.3dl new file mode 100644 index 0000000000..956644638c --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/test_clt_32_LUT.3dl @@ -0,0 +1,32769 @@ +0 33 66 99 132 165 198 231 264 297 330 363 396 429 462 495 528 561 594 627 660 693 726 759 792 825 858 891 924 957 990 1023 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 28 +0 0 152 +0 0 280 +0 0 408 +0 0 537 +0 0 667 +0 0 797 +0 0 928 +0 0 1084 +0 0 1291 +0 0 1472 +0 0 1634 +361 0 1771 +1145 0 1881 +1561 0 2006 +1561 0 2154 +432 987 2341 +1228 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 54 +0 0 173 +0 0 295 +0 0 419 +0 0 545 +0 0 673 +0 0 802 +0 0 932 +0 0 1087 +0 0 1293 +0 0 1473 +0 0 1635 +370 0 1772 +1144 0 1882 +1559 0 2006 +1558 0 2154 +428 992 2341 +1232 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 87 +0 0 198 +0 0 315 +0 0 434 +0 0 557 +0 0 682 +0 0 809 +0 0 937 +0 0 1091 +0 0 1295 +0 0 1474 +0 0 1635 +381 0 1773 +1143 0 1883 +1556 0 2007 +1554 0 2155 +423 998 2341 +1238 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 31 +0 0 127 +0 0 230 +0 0 340 +0 0 454 +0 0 572 +0 0 693 +0 0 817 +0 0 943 +0 0 1095 +0 0 1298 +0 0 1476 +0 0 1636 +395 0 1774 +1142 0 1883 +1552 0 2008 +1548 0 2156 +416 1005 2342 +1246 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 31 +0 0 176 +0 0 270 +0 0 371 +0 0 478 +0 0 591 +0 0 708 +0 0 828 +0 0 952 +0 0 1101 +0 0 1302 +0 0 1479 +0 0 1637 +414 0 1775 +1140 0 1884 +1547 0 2010 +1540 58 2158 +407 1015 2342 +1257 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 31 +0 7 176 +0 63 318 +0 63 410 +0 63 509 +0 63 615 +0 63 727 +0 63 843 +0 63 963 +0 103 1109 +0 30 1307 +0 30 1482 +0 3 1639 +438 0 1777 +1137 0 1886 +1539 0 2011 +1530 197 2160 +394 1028 2343 +1270 621 2470 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +0 4 0 +0 23 0 +0 47 0 +0 77 31 +0 114 176 +0 159 318 +0 214 457 +0 214 548 +0 214 646 +0 214 751 +0 214 862 +0 214 977 +0 243 1120 +0 163 1314 +0 163 1487 +0 142 1641 +468 0 1779 +1134 0 1888 +1530 32 2014 +1515 333 2163 +376 1045 2344 +1287 621 2470 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +0 144 0 +0 157 0 +0 175 0 +0 198 31 +0 227 176 +0 262 318 +0 306 457 +0 359 595 +0 359 684 +0 359 782 +0 359 886 +0 359 996 +0 380 1134 +0 295 1323 +0 295 1494 +0 280 1644 +506 122 1783 +1129 0 1891 +1516 164 2017 +1495 469 2167 +352 1066 2345 +1309 621 2470 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +0 281 0 +0 291 0 +0 304 0 +0 322 31 +0 344 176 +0 371 318 +0 406 457 +0 449 595 +0 501 730 +0 501 819 +0 501 916 +0 501 1020 +0 516 1151 +0 426 1335 +0 426 1502 +0 415 1648 +552 265 1787 +1123 111 1894 +1498 296 2021 +1467 603 2172 +317 1093 2347 +1348 639 2470 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +0 417 0 +0 424 0 +0 434 0 +0 447 31 +0 464 176 +0 486 318 +0 513 457 +0 547 595 +0 589 730 +0 640 865 +0 640 954 +0 640 1050 +0 651 1174 +0 570 1350 +0 559 1512 +0 550 1653 +556 441 1791 +1115 244 1898 +1471 428 2027 +1426 737 2178 +265 1128 2349 +1396 662 2470 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +0 552 0 +0 557 0 +0 565 0 +0 575 31 +0 587 176 +0 604 318 +0 625 457 +0 652 595 +0 686 730 +0 727 865 +0 777 1000 +0 777 1088 +0 786 1203 +0 726 1370 +0 691 1526 +0 685 1662 +556 606 1796 +1132 422 1904 +1434 560 2035 +1365 871 2187 +186 1169 2352 +1454 691 2470 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +0 686 0 +0 690 0 +0 696 0 +0 703 31 +0 713 176 +0 726 318 +0 742 457 +0 763 595 +0 789 730 +0 823 865 +0 864 1000 +0 913 1133 +0 920 1239 +0 876 1395 +0 823 1544 +0 818 1675 +556 761 1803 +1160 593 1912 +1378 692 2045 +1267 1004 2199 +0 1212 2357 +1520 728 2470 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +0 857 100 +0 857 131 +0 861 202 +0 866 282 +0 873 371 +0 882 468 +0 894 573 +0 909 683 +0 928 797 +0 953 916 +0 984 1038 +0 1023 1162 +0 1061 1287 +0 1030 1430 +0 984 1569 +0 971 1697 +566 941 1817 +1178 799 1926 +1302 849 2057 +1119 1137 2212 +0 1255 2365 +1585 801 2470 +1738 957 2513 +1738 957 2513 +1738 957 2513 +1738 957 2513 +1738 957 2513 +1738 957 2513 +1738 957 2513 +1738 957 2513 +1738 957 2513 +1738 957 2513 +0 1184 1027 +0 1184 1031 +0 1184 1036 +0 1184 1043 +0 1184 1052 +0 1184 1064 +0 1184 1080 +0 1184 1099 +0 1184 1125 +0 1190 1168 +0 1209 1242 +0 1232 1325 +0 1257 1416 +0 1237 1493 +0 1209 1617 +0 1222 1740 +636 1187 1854 +1040 1131 1961 +1243 1131 2080 +1031 1271 2224 +472 1312 2372 +1588 1032 2472 +1765 1144 2512 +1765 1144 2512 +1765 1144 2512 +1765 1144 2512 +1765 1144 2512 +1765 1144 2512 +1765 1144 2512 +1765 1144 2512 +1765 1144 2512 +1765 1144 2512 +0 1421 1377 +0 1421 1379 +0 1421 1382 +0 1421 1385 +0 1421 1389 +0 1421 1395 +0 1421 1402 +0 1421 1412 +0 1421 1425 +0 1421 1442 +0 1421 1463 +0 1421 1491 +0 1432 1546 +0 1418 1604 +0 1399 1673 +0 1412 1786 +636 1404 1895 +1048 1353 1999 +1151 1350 2110 +878 1405 2240 +666 1388 2378 +1601 1209 2473 +1799 1314 2510 +1799 1314 2510 +1799 1314 2510 +1799 1314 2510 +1799 1314 2510 +1799 1314 2510 +1799 1314 2510 +1799 1314 2510 +1799 1314 2510 +1799 1314 2510 +901 1580 1648 +901 1579 1649 +901 1579 1650 +901 1579 1652 +901 1578 1655 +901 1577 1658 +901 1576 1662 +901 1574 1668 +901 1572 1675 +901 1569 1685 +901 1567 1698 +901 1567 1714 +886 1567 1736 +886 1577 1788 +886 1569 1838 +890 1552 1888 +807 1557 1969 +921 1536 2067 +942 1537 2170 +810 1524 2268 +1125 1501 2382 +1680 1435 2473 +1845 1472 2509 +1845 1472 2509 +1845 1472 2509 +1845 1472 2509 +1845 1472 2509 +1845 1472 2509 +1845 1472 2509 +1845 1472 2509 +1845 1472 2509 +1845 1472 2509 +1449 1705 1856 +1448 1705 1856 +1447 1705 1857 +1446 1705 1859 +1444 1705 1860 +1441 1705 1862 +1438 1705 1865 +1433 1705 1868 +1427 1705 1873 +1426 1703 1880 +1426 1700 1888 +1426 1696 1899 +1423 1691 1913 +1400 1685 1931 +1400 1696 1976 +1370 1702 2022 +1371 1685 2062 +1192 1672 2128 +1127 1678 2221 +1173 1647 2295 +1519 1631 2386 +1775 1634 2475 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1785 1818 1978 +1786 1818 1978 +1786 1818 1979 +1786 1818 1980 +1786 1818 1981 +1787 1818 1982 +1788 1818 1983 +1789 1818 1986 +1790 1818 1988 +1792 1818 1992 +1788 1818 1998 +1781 1818 2007 +1772 1818 2018 +1752 1824 2037 +1733 1818 2052 +1727 1802 2080 +1685 1816 2123 +1705 1809 2166 +1657 1793 2234 +1664 1793 2304 +1754 1797 2389 +1874 1790 2475 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1958 1958 2028 +1957 1958 2029 +1957 1958 2029 +1957 1958 2030 +1956 1958 2031 +1956 1958 2031 +1956 1958 2033 +1955 1958 2035 +1954 1958 2037 +1953 1958 2041 +1951 1958 2045 +1948 1958 2051 +1946 1958 2058 +1941 1962 2068 +1935 1968 2081 +1927 1969 2115 +1913 1965 2153 +1905 1963 2189 +1920 1969 2243 +1881 1969 2320 +1929 1954 2391 +2032 1964 2481 +2093 1969 2517 +2093 1969 2517 +2093 1969 2517 +2093 1969 2517 +2093 1969 2517 +2093 1969 2517 +2093 1969 2517 +2093 1969 2517 +2093 1969 2517 +2093 1969 2517 +2119 2119 2068 +2119 2119 2068 +2119 2119 2068 +2119 2120 2069 +2119 2120 2069 +2119 2120 2071 +2119 2120 2072 +2119 2121 2073 +2119 2122 2076 +2119 2122 2079 +2119 2124 2083 +2119 2125 2088 +2119 2127 2095 +2119 2127 2101 +2119 2127 2110 +2115 2131 2133 +2108 2133 2164 +2103 2131 2206 +2110 2135 2256 +2119 2135 2316 +2148 2131 2395 +2212 2147 2485 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2370 2355 2124 +2370 2355 2124 +2370 2355 2124 +2370 2355 2125 +2369 2356 2125 +2369 2356 2126 +2369 2356 2126 +2369 2356 2127 +2369 2357 2129 +2368 2357 2131 +2367 2358 2133 +2368 2359 2137 +2369 2360 2143 +2370 2358 2146 +2369 2356 2148 +2368 2358 2163 +2370 2358 2193 +2369 2358 2226 +2372 2355 2273 +2383 2356 2337 +2410 2367 2405 +2467 2385 2498 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2681 2655 1963 +2681 2655 1963 +2681 2655 1963 +2681 2655 1963 +2681 2654 1964 +2681 2654 1965 +2681 2654 1966 +2681 2654 1968 +2681 2654 1967 +2681 2654 1965 +2680 2653 1964 +2680 2653 1961 +2679 2652 1961 +2678 2653 1968 +2677 2654 1989 +2676 2653 2013 +2675 2649 2032 +2677 2655 2124 +2681 2656 2208 +2687 2661 2306 +2695 2667 2410 +2715 2678 2527 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2773 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2773 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2773 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2773 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2773 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2773 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2773 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2773 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2773 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2773 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 28 +0 0 152 +0 0 280 +0 0 408 +0 0 537 +0 0 667 +0 0 797 +0 0 928 +0 0 1088 +0 0 1293 +0 0 1473 +0 0 1634 +398 0 1772 +1148 0 1882 +1561 0 2006 +1560 0 2154 +428 987 2341 +1231 619 2470 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 36 +0 0 159 +0 0 285 +0 0 412 +0 0 540 +0 0 669 +0 0 799 +0 0 930 +0 0 1089 +0 0 1294 +0 0 1474 +0 0 1635 +378 0 1771 +1147 0 1882 +1561 0 2006 +1559 0 2154 +428 992 2341 +1235 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 71 +0 0 186 +0 0 305 +0 0 427 +0 0 551 +0 0 678 +0 0 805 +0 0 935 +0 0 1092 +0 0 1296 +0 0 1475 +0 0 1635 +389 0 1772 +1146 0 1883 +1558 0 2007 +1555 0 2155 +423 998 2341 +1241 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 13 +0 0 112 +0 0 219 +0 0 330 +0 0 446 +0 0 566 +0 0 689 +0 0 814 +0 0 941 +0 0 1097 +0 0 1299 +0 0 1477 +0 0 1636 +403 0 1773 +1145 0 1884 +1554 0 2008 +1549 0 2156 +416 1005 2342 +1249 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 13 +0 0 163 +0 0 259 +0 0 363 +0 0 472 +0 0 586 +0 0 704 +0 0 825 +0 0 949 +0 0 1103 +0 0 1303 +0 0 1480 +0 0 1637 +422 0 1775 +1143 0 1884 +1548 0 2010 +1541 50 2158 +407 1015 2342 +1259 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 13 +0 0 163 +0 38 309 +0 38 402 +0 38 503 +0 38 610 +0 38 723 +0 38 840 +0 38 961 +0 102 1111 +0 30 1308 +0 30 1483 +0 0 1639 +445 0 1776 +1140 0 1886 +1541 0 2011 +1531 190 2160 +394 1028 2343 +1272 621 2470 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +0 4 0 +0 0 0 +0 20 0 +0 52 13 +0 91 163 +0 139 309 +0 195 450 +0 195 542 +0 195 641 +0 195 748 +0 195 859 +0 195 975 +0 242 1121 +0 163 1315 +0 163 1488 +0 135 1641 +475 0 1779 +1137 0 1888 +1532 32 2014 +1516 329 2163 +376 1045 2344 +1289 621 2470 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +0 144 0 +0 137 0 +0 155 0 +0 179 13 +0 209 163 +0 246 309 +0 291 450 +0 346 589 +0 346 680 +0 346 778 +0 346 883 +0 346 994 +0 380 1135 +0 295 1324 +0 295 1494 +0 274 1644 +512 108 1782 +1133 0 1891 +1518 164 2017 +1496 465 2167 +352 1066 2345 +1311 621 2470 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +0 281 0 +0 276 0 +0 289 0 +0 307 13 +0 330 163 +0 359 309 +0 394 450 +0 438 589 +0 491 727 +0 491 816 +0 491 914 +0 491 1018 +0 516 1153 +0 426 1336 +0 426 1502 +0 412 1648 +557 254 1787 +1126 111 1894 +1500 296 2021 +1468 601 2172 +317 1093 2347 +1350 639 2470 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +0 417 0 +0 413 0 +0 423 0 +0 437 13 +0 454 163 +0 476 309 +0 504 450 +0 539 589 +0 581 727 +0 633 862 +0 633 952 +0 633 1049 +0 651 1176 +0 570 1351 +0 559 1513 +0 547 1653 +561 434 1790 +1118 244 1898 +1474 428 2027 +1427 736 2178 +265 1128 2349 +1398 662 2470 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +0 552 0 +0 549 0 +0 557 0 +0 566 13 +0 579 163 +0 596 309 +0 618 450 +0 645 589 +0 679 727 +0 721 862 +0 772 997 +0 772 1086 +0 785 1204 +0 726 1371 +0 691 1527 +0 682 1662 +561 601 1796 +1135 422 1904 +1436 560 2035 +1366 869 2187 +186 1169 2352 +1455 691 2470 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +0 686 0 +0 684 0 +0 690 0 +0 697 13 +0 707 163 +0 720 309 +0 736 450 +0 758 589 +0 784 727 +0 818 862 +0 859 997 +0 909 1132 +0 919 1240 +0 876 1396 +0 823 1545 +0 817 1675 +561 758 1802 +1163 593 1912 +1381 692 2045 +1269 1003 2199 +0 1212 2357 +1522 728 2470 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +0 854 85 +0 854 130 +0 858 201 +0 863 282 +0 870 371 +0 879 468 +0 891 572 +0 906 682 +0 925 797 +0 950 916 +0 981 1038 +0 1020 1162 +0 1060 1288 +0 1029 1430 +0 983 1570 +0 969 1697 +572 942 1817 +1182 800 1926 +1302 849 2057 +1120 1137 2212 +0 1254 2365 +1585 800 2470 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +0 1183 1025 +0 1183 1031 +0 1183 1036 +0 1183 1043 +0 1183 1052 +0 1183 1064 +0 1183 1080 +0 1183 1099 +0 1183 1125 +0 1188 1168 +0 1207 1242 +0 1231 1325 +0 1257 1417 +0 1236 1493 +0 1208 1617 +0 1221 1741 +640 1187 1855 +1045 1132 1961 +1243 1131 2080 +1031 1271 2225 +498 1311 2371 +1589 1031 2471 +1765 1143 2512 +1765 1143 2512 +1765 1143 2512 +1765 1143 2512 +1765 1143 2512 +1765 1143 2512 +1765 1143 2512 +1765 1143 2512 +1765 1143 2512 +1765 1143 2512 +0 1421 1376 +0 1421 1379 +0 1421 1382 +0 1421 1385 +0 1421 1389 +0 1421 1395 +0 1421 1402 +0 1421 1412 +0 1421 1425 +0 1421 1442 +0 1421 1463 +0 1421 1491 +0 1431 1546 +0 1417 1605 +0 1399 1673 +0 1411 1786 +640 1405 1896 +1052 1353 1999 +1151 1350 2110 +878 1405 2240 +684 1387 2378 +1602 1208 2473 +1799 1313 2510 +1799 1313 2510 +1799 1313 2510 +1799 1313 2510 +1799 1313 2510 +1799 1313 2510 +1799 1313 2510 +1799 1313 2510 +1799 1313 2510 +1799 1313 2510 +913 1579 1648 +912 1579 1649 +912 1579 1651 +912 1579 1653 +912 1578 1655 +912 1577 1658 +912 1576 1662 +912 1574 1668 +912 1572 1675 +912 1569 1685 +912 1567 1698 +912 1567 1714 +892 1567 1736 +891 1577 1788 +891 1569 1838 +896 1552 1889 +818 1557 1970 +929 1536 2067 +946 1537 2170 +810 1524 2268 +1128 1500 2382 +1680 1435 2473 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1450 1705 1856 +1449 1705 1856 +1448 1705 1857 +1446 1705 1859 +1444 1705 1860 +1442 1705 1862 +1439 1705 1865 +1434 1705 1868 +1427 1705 1873 +1427 1703 1880 +1427 1700 1888 +1427 1696 1899 +1424 1691 1913 +1401 1685 1931 +1401 1696 1976 +1370 1701 2022 +1372 1685 2062 +1195 1672 2128 +1129 1678 2221 +1176 1647 2295 +1520 1631 2386 +1776 1634 2475 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1894 1629 2511 +1786 1817 1978 +1786 1817 1978 +1786 1817 1979 +1786 1817 1980 +1787 1817 1981 +1787 1817 1982 +1788 1817 1983 +1789 1817 1986 +1790 1817 1988 +1793 1817 1992 +1789 1817 1998 +1782 1817 2007 +1772 1818 2018 +1753 1824 2036 +1733 1818 2052 +1727 1803 2080 +1686 1816 2123 +1706 1808 2166 +1658 1793 2234 +1664 1793 2304 +1754 1797 2389 +1874 1790 2475 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1964 1800 2514 +1958 1958 2028 +1958 1958 2029 +1957 1958 2029 +1957 1958 2030 +1957 1958 2031 +1956 1958 2031 +1956 1958 2033 +1955 1958 2035 +1954 1958 2037 +1953 1958 2041 +1951 1958 2045 +1948 1958 2051 +1946 1958 2058 +1941 1962 2068 +1936 1968 2081 +1927 1969 2115 +1913 1965 2153 +1905 1963 2189 +1920 1969 2243 +1881 1968 2320 +1929 1954 2392 +2033 1964 2481 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2120 2119 2068 +2120 2119 2068 +2120 2119 2068 +2120 2120 2069 +2120 2120 2069 +2120 2120 2070 +2120 2120 2072 +2120 2121 2073 +2120 2122 2076 +2120 2122 2079 +2120 2124 2083 +2120 2125 2088 +2119 2127 2095 +2119 2127 2101 +2119 2127 2110 +2115 2131 2133 +2109 2133 2164 +2103 2131 2206 +2111 2135 2256 +2119 2135 2316 +2148 2131 2395 +2212 2147 2485 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2370 2355 2124 +2370 2355 2124 +2370 2355 2124 +2370 2355 2125 +2370 2356 2125 +2369 2356 2126 +2369 2356 2126 +2369 2356 2127 +2369 2357 2129 +2368 2357 2131 +2367 2358 2133 +2368 2359 2137 +2369 2360 2143 +2370 2358 2146 +2369 2356 2148 +2368 2358 2163 +2370 2358 2193 +2369 2358 2226 +2372 2355 2273 +2383 2356 2337 +2410 2367 2405 +2467 2385 2498 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2681 2655 1963 +2681 2655 1963 +2681 2655 1963 +2681 2655 1964 +2681 2655 1965 +2681 2654 1965 +2681 2654 1966 +2681 2654 1968 +2681 2654 1967 +2681 2654 1966 +2680 2653 1964 +2680 2653 1962 +2679 2652 1962 +2678 2653 1969 +2677 2654 1990 +2676 2653 2014 +2675 2650 2033 +2677 2655 2124 +2681 2656 2208 +2687 2661 2306 +2695 2667 2410 +2715 2678 2527 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2709 2773 2484 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 28 +0 0 152 +0 0 280 +0 0 408 +0 0 537 +0 0 667 +0 0 797 +0 0 928 +0 0 1088 +0 0 1296 +0 0 1475 +0 0 1634 +445 0 1772 +1152 0 1882 +1561 0 2006 +1559 0 2155 +423 987 2341 +1234 615 2470 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 36 +0 0 159 +0 0 285 +0 0 412 +0 0 540 +0 0 669 +0 0 799 +0 0 930 +0 0 1089 +0 0 1297 +0 0 1475 +0 0 1635 +426 0 1772 +1151 0 1882 +1561 0 2007 +1558 0 2155 +423 992 2341 +1238 618 2470 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 48 +0 0 168 +0 0 291 +0 0 417 +0 0 544 +0 0 672 +0 0 801 +0 0 931 +0 0 1090 +0 0 1298 +0 0 1476 +0 0 1635 +400 0 1772 +1150 0 1883 +1560 0 2007 +1556 0 2155 +423 998 2341 +1244 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 92 +0 0 203 +0 0 318 +0 0 437 +0 0 559 +0 0 683 +0 0 810 +0 0 938 +0 0 1094 +0 0 1300 +0 0 1478 +0 0 1636 +414 0 1773 +1149 0 1884 +1556 0 2008 +1550 0 2156 +416 1005 2342 +1252 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 145 +0 0 245 +0 0 351 +0 0 462 +0 0 579 +0 0 699 +0 0 821 +0 0 946 +0 0 1101 +0 0 1304 +0 0 1481 +0 0 1637 +432 0 1774 +1147 0 1885 +1551 0 2010 +1543 38 2158 +407 1015 2342 +1262 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 145 +0 1 295 +0 1 391 +0 1 494 +0 1 604 +0 1 718 +0 1 836 +0 1 958 +0 70 1109 +0 30 1310 +0 30 1484 +0 0 1639 +455 0 1776 +1144 0 1886 +1544 0 2012 +1532 182 2160 +394 1028 2343 +1275 621 2470 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +0 4 0 +0 0 0 +0 0 0 +0 16 0 +0 58 145 +0 109 295 +0 170 441 +0 170 534 +0 170 635 +0 170 742 +0 170 855 +0 170 973 +0 218 1119 +0 163 1316 +0 163 1489 +0 126 1641 +484 0 1778 +1141 0 1888 +1534 32 2014 +1518 322 2163 +376 1045 2344 +1292 621 2470 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +0 144 0 +0 137 0 +0 127 0 +0 152 0 +0 184 145 +0 223 295 +0 271 441 +0 327 582 +0 327 674 +0 327 773 +0 327 879 +0 327 991 +0 363 1133 +0 295 1325 +0 295 1495 +0 267 1644 +520 87 1782 +1137 0 1891 +1521 164 2017 +1498 461 2167 +352 1066 2345 +1314 621 2470 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +0 281 0 +0 276 0 +0 269 0 +0 287 0 +0 311 145 +0 341 295 +0 378 441 +0 423 582 +0 478 721 +0 478 812 +0 478 910 +0 478 1016 +0 503 1151 +0 426 1337 +0 426 1503 +0 406 1648 +565 239 1786 +1131 111 1894 +1503 296 2022 +1470 597 2172 +317 1093 2347 +1353 639 2470 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +0 417 0 +0 413 0 +0 408 0 +0 422 0 +0 439 145 +0 462 295 +0 491 441 +0 527 582 +0 570 721 +0 623 859 +0 623 948 +0 623 1046 +0 642 1174 +0 570 1352 +0 559 1514 +0 544 1653 +569 424 1790 +1123 244 1899 +1477 428 2027 +1429 733 2178 +265 1128 2349 +1400 662 2470 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +0 552 0 +0 549 0 +0 545 0 +0 555 0 +0 568 145 +0 586 295 +0 608 441 +0 636 582 +0 670 721 +0 713 859 +0 765 995 +0 765 1084 +0 778 1202 +0 726 1372 +0 691 1528 +0 680 1662 +569 594 1795 +1139 422 1905 +1440 560 2035 +1368 868 2187 +186 1169 2352 +1457 691 2470 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +0 686 0 +0 684 0 +0 681 0 +0 689 0 +0 699 145 +0 712 295 +0 729 441 +0 750 582 +0 777 721 +0 811 859 +0 854 995 +0 904 1130 +0 914 1238 +0 876 1397 +0 823 1546 +0 815 1675 +569 753 1802 +1167 593 1913 +1385 692 2045 +1272 1002 2199 +0 1212 2357 +1524 728 2470 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +0 854 85 +0 854 130 +0 852 185 +0 857 268 +0 864 360 +0 873 459 +0 885 565 +0 901 676 +0 920 793 +0 946 912 +0 977 1035 +0 1016 1160 +0 1056 1287 +0 1029 1432 +0 983 1571 +0 967 1697 +579 939 1816 +1186 800 1926 +1306 849 2057 +1123 1137 2212 +0 1254 2365 +1587 800 2470 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +0 1181 1022 +0 1181 1028 +0 1181 1036 +0 1181 1043 +0 1181 1052 +0 1181 1064 +0 1181 1080 +0 1181 1099 +0 1181 1125 +0 1186 1168 +0 1205 1242 +0 1229 1325 +0 1255 1417 +0 1235 1494 +0 1207 1618 +0 1219 1741 +647 1188 1855 +1051 1133 1961 +1243 1131 2080 +1031 1271 2225 +532 1310 2371 +1590 1030 2471 +1766 1141 2512 +1766 1141 2512 +1766 1141 2512 +1766 1141 2512 +1766 1141 2512 +1766 1141 2512 +1766 1141 2512 +1766 1141 2512 +1766 1141 2512 +1766 1141 2512 +0 1420 1375 +0 1420 1378 +0 1420 1382 +0 1420 1385 +0 1420 1389 +0 1420 1395 +0 1420 1402 +0 1420 1412 +0 1420 1425 +0 1420 1442 +0 1420 1463 +0 1420 1491 +0 1430 1546 +0 1417 1606 +0 1398 1674 +0 1410 1786 +647 1405 1896 +1059 1354 2000 +1151 1350 2109 +878 1405 2240 +706 1386 2378 +1603 1208 2473 +1800 1311 2510 +1800 1311 2510 +1800 1311 2510 +1800 1311 2510 +1800 1311 2510 +1800 1311 2510 +1800 1311 2510 +1800 1311 2510 +1800 1311 2510 +1800 1311 2510 +929 1579 1649 +928 1579 1650 +926 1579 1651 +926 1579 1653 +926 1578 1655 +926 1577 1658 +926 1576 1663 +926 1574 1668 +926 1572 1676 +926 1569 1685 +926 1567 1698 +926 1567 1715 +906 1567 1736 +898 1576 1787 +898 1569 1837 +906 1552 1889 +833 1557 1970 +939 1536 2067 +950 1537 2170 +810 1524 2268 +1132 1500 2382 +1680 1435 2473 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1845 1471 2509 +1452 1705 1855 +1450 1705 1856 +1449 1705 1857 +1448 1705 1859 +1446 1705 1860 +1443 1705 1862 +1440 1705 1865 +1435 1705 1868 +1429 1705 1873 +1428 1703 1880 +1428 1700 1888 +1428 1696 1899 +1425 1691 1913 +1402 1685 1931 +1402 1696 1977 +1371 1701 2021 +1374 1685 2062 +1200 1672 2128 +1132 1678 2221 +1180 1647 2295 +1520 1631 2386 +1776 1634 2475 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1787 1817 1978 +1787 1817 1978 +1786 1817 1979 +1786 1817 1980 +1787 1817 1981 +1787 1817 1982 +1788 1817 1983 +1789 1817 1986 +1791 1817 1988 +1793 1817 1992 +1789 1817 1998 +1782 1817 2007 +1772 1818 2018 +1753 1823 2036 +1734 1818 2052 +1728 1803 2080 +1687 1816 2123 +1706 1808 2166 +1658 1793 2234 +1666 1793 2304 +1755 1797 2389 +1874 1790 2475 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1958 1958 2029 +1958 1958 2029 +1958 1958 2029 +1958 1958 2030 +1957 1958 2031 +1957 1958 2032 +1956 1958 2033 +1955 1958 2035 +1955 1958 2037 +1953 1958 2041 +1951 1958 2045 +1949 1958 2051 +1946 1958 2058 +1941 1962 2068 +1936 1968 2081 +1927 1969 2114 +1914 1966 2153 +1905 1963 2189 +1920 1969 2243 +1882 1968 2320 +1930 1954 2392 +2034 1964 2481 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2094 1969 2517 +2120 2119 2068 +2120 2119 2068 +2120 2119 2068 +2120 2120 2069 +2120 2120 2069 +2120 2120 2070 +2120 2120 2071 +2120 2121 2073 +2120 2122 2076 +2120 2122 2079 +2120 2124 2083 +2120 2125 2088 +2119 2127 2095 +2119 2127 2101 +2119 2127 2110 +2116 2131 2132 +2109 2133 2164 +2103 2131 2206 +2111 2135 2256 +2120 2135 2316 +2148 2131 2395 +2212 2147 2485 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2261 2159 2524 +2370 2355 2124 +2370 2355 2124 +2370 2355 2124 +2370 2355 2125 +2370 2355 2125 +2370 2356 2126 +2369 2356 2126 +2369 2356 2127 +2369 2357 2129 +2368 2357 2131 +2367 2358 2133 +2368 2359 2137 +2369 2360 2143 +2370 2358 2146 +2369 2356 2148 +2368 2358 2163 +2370 2358 2193 +2369 2358 2226 +2372 2355 2273 +2384 2356 2337 +2410 2367 2405 +2467 2385 2498 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2681 2655 1963 +2681 2655 1963 +2681 2655 1964 +2681 2655 1965 +2681 2655 1965 +2681 2655 1966 +2681 2654 1967 +2681 2654 1969 +2681 2654 1968 +2681 2654 1966 +2680 2653 1965 +2680 2653 1962 +2679 2652 1963 +2678 2653 1970 +2677 2655 1992 +2676 2653 2015 +2675 2650 2035 +2677 2655 2124 +2681 2656 2208 +2687 2661 2306 +2695 2666 2409 +2715 2678 2527 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2722 2684 2575 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2771 2455 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 28 +0 0 152 +0 0 280 +0 0 408 +0 0 537 +0 0 667 +0 0 797 +0 0 928 +0 0 1088 +0 0 1300 +0 0 1478 +0 0 1634 +499 0 1773 +1157 0 1883 +1561 0 2007 +1557 0 2156 +416 987 2341 +1238 611 2470 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 36 +0 0 159 +0 0 285 +0 0 412 +0 0 540 +0 0 669 +0 0 799 +0 0 930 +0 0 1089 +0 0 1301 +0 0 1478 +0 0 1635 +483 0 1773 +1157 0 1883 +1561 0 2007 +1556 0 2156 +416 992 2341 +1243 614 2470 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 48 +0 0 168 +0 0 291 +0 0 417 +0 0 544 +0 0 672 +0 0 801 +0 0 931 +0 0 1090 +0 0 1302 +0 0 1479 +0 0 1635 +460 0 1772 +1156 0 1884 +1560 0 2008 +1554 0 2156 +416 998 2341 +1249 617 2470 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 63 +0 0 180 +0 0 300 +0 0 424 +0 0 549 +0 0 676 +0 0 804 +0 0 933 +0 0 1091 +0 0 1302 +0 0 1480 +0 0 1636 +427 0 1772 +1154 0 1884 +1560 0 2009 +1552 0 2156 +416 1005 2342 +1256 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 120 +0 0 224 +0 0 335 +0 0 450 +0 0 569 +0 0 691 +0 0 816 +0 0 942 +0 0 1097 +0 0 1306 +0 0 1482 +0 0 1637 +445 0 1774 +1153 0 1885 +1554 0 2010 +1544 22 2158 +407 1015 2342 +1266 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 120 +0 0 277 +0 0 376 +0 0 483 +0 0 594 +0 0 711 +0 0 831 +0 0 954 +0 23 1106 +0 30 1311 +0 30 1486 +0 0 1639 +467 0 1775 +1150 0 1887 +1547 0 2012 +1534 170 2160 +394 1028 2343 +1279 621 2470 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +0 4 0 +0 0 0 +0 0 0 +0 0 0 +0 11 120 +0 67 277 +0 133 427 +0 133 523 +0 133 627 +0 133 736 +0 133 850 +0 133 968 +0 186 1116 +0 163 1318 +0 163 1490 +0 112 1641 +496 0 1778 +1147 0 1888 +1538 32 2014 +1520 314 2163 +376 1045 2344 +1296 621 2470 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +0 144 0 +0 137 0 +0 127 0 +0 114 0 +0 148 120 +0 190 277 +0 241 427 +0 302 573 +0 302 666 +0 302 767 +0 302 875 +0 302 987 +0 339 1130 +0 295 1327 +0 295 1496 +0 258 1644 +531 58 1781 +1142 0 1891 +1524 164 2018 +1500 455 2167 +352 1066 2345 +1318 621 2470 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +0 281 0 +0 276 0 +0 269 0 +0 259 0 +0 284 120 +0 316 277 +0 355 427 +0 403 573 +0 459 714 +0 459 806 +0 459 906 +0 459 1012 +0 486 1148 +0 426 1339 +0 426 1504 +0 399 1648 +574 219 1786 +1136 111 1894 +1506 296 2022 +1472 593 2172 +317 1093 2347 +1356 639 2470 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +0 417 0 +0 413 0 +0 408 0 +0 401 0 +0 419 120 +0 443 277 +0 473 427 +0 510 573 +0 556 714 +0 610 854 +0 610 944 +0 610 1043 +0 629 1171 +0 570 1354 +0 559 1515 +0 539 1653 +578 410 1789 +1128 244 1899 +1481 428 2028 +1431 730 2178 +265 1128 2349 +1403 662 2470 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +0 552 0 +0 549 0 +0 545 0 +0 540 0 +0 553 120 +0 571 277 +0 594 427 +0 623 573 +0 658 714 +0 702 854 +0 755 991 +0 755 1080 +0 769 1200 +0 726 1374 +0 691 1529 +0 676 1662 +578 585 1795 +1145 422 1905 +1444 560 2035 +1371 865 2187 +186 1169 2352 +1460 691 2470 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +0 686 0 +0 684 0 +0 681 0 +0 677 0 +0 688 120 +0 701 277 +0 718 427 +0 740 573 +0 768 714 +0 803 854 +0 845 991 +0 897 1127 +0 907 1236 +0 876 1399 +0 823 1547 +0 812 1675 +578 746 1801 +1172 593 1913 +1390 692 2045 +1275 1000 2199 +0 1212 2357 +1526 728 2470 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +0 854 85 +0 854 130 +0 852 185 +0 850 248 +0 857 344 +0 866 446 +0 878 555 +0 894 669 +0 914 787 +0 939 908 +0 971 1032 +0 1011 1157 +0 1051 1285 +0 1029 1433 +0 983 1572 +27 965 1697 +589 934 1816 +1190 800 1926 +1312 849 2057 +1127 1135 2212 +0 1254 2365 +1589 800 2470 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +0 1178 1018 +0 1178 1024 +0 1178 1032 +0 1178 1043 +0 1178 1052 +0 1178 1064 +0 1178 1080 +0 1178 1099 +0 1178 1125 +0 1184 1168 +0 1203 1242 +0 1227 1325 +0 1253 1417 +21 1234 1496 +21 1206 1619 +81 1217 1742 +655 1189 1855 +1060 1135 1962 +1243 1131 2080 +1031 1271 2225 +573 1308 2371 +1592 1028 2471 +1767 1138 2512 +1767 1138 2512 +1767 1138 2512 +1767 1138 2512 +1767 1138 2512 +1767 1138 2512 +1767 1138 2512 +1767 1138 2512 +1767 1138 2512 +1767 1138 2512 +0 1418 1374 +0 1418 1376 +0 1418 1380 +0 1418 1385 +0 1418 1389 +0 1418 1395 +0 1418 1402 +0 1418 1412 +0 1418 1425 +0 1418 1442 +0 1418 1463 +0 1418 1491 +0 1429 1546 +21 1416 1607 +21 1397 1675 +81 1409 1787 +655 1406 1896 +1067 1355 2000 +1151 1350 2109 +878 1405 2240 +735 1384 2378 +1605 1206 2473 +1801 1309 2510 +1801 1309 2510 +1801 1309 2510 +1801 1309 2510 +1801 1309 2510 +1801 1309 2510 +1801 1309 2510 +1801 1309 2510 +1801 1309 2510 +1801 1309 2510 +949 1577 1650 +947 1578 1651 +946 1578 1652 +943 1579 1653 +943 1578 1656 +943 1577 1659 +943 1576 1663 +943 1574 1669 +943 1572 1676 +943 1569 1686 +943 1567 1699 +943 1567 1715 +924 1567 1737 +908 1576 1787 +908 1568 1837 +917 1552 1889 +852 1557 1971 +951 1536 2066 +957 1537 2170 +810 1525 2268 +1138 1499 2382 +1680 1435 2473 +1845 1470 2509 +1845 1470 2509 +1845 1470 2509 +1845 1470 2509 +1845 1470 2509 +1845 1470 2509 +1845 1470 2509 +1845 1470 2509 +1845 1470 2509 +1845 1470 2509 +1454 1705 1855 +1453 1705 1856 +1451 1705 1857 +1449 1705 1859 +1447 1705 1860 +1444 1705 1862 +1441 1705 1865 +1436 1705 1868 +1430 1705 1873 +1430 1703 1880 +1430 1700 1888 +1430 1696 1899 +1426 1691 1913 +1403 1685 1931 +1403 1696 1977 +1372 1701 2021 +1375 1686 2063 +1206 1672 2128 +1137 1678 2221 +1185 1647 2295 +1521 1632 2386 +1778 1634 2475 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1894 1628 2511 +1788 1817 1978 +1788 1817 1978 +1787 1817 1979 +1787 1817 1980 +1787 1817 1981 +1788 1817 1982 +1789 1817 1983 +1790 1817 1986 +1791 1817 1988 +1793 1817 1992 +1789 1817 1998 +1782 1817 2007 +1773 1818 2018 +1754 1823 2036 +1735 1818 2051 +1730 1803 2080 +1689 1816 2124 +1707 1808 2166 +1658 1793 2234 +1668 1793 2304 +1756 1797 2389 +1874 1789 2475 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1965 1800 2514 +1959 1958 2029 +1959 1958 2029 +1958 1958 2030 +1958 1958 2030 +1958 1958 2031 +1957 1958 2032 +1957 1958 2033 +1956 1958 2035 +1955 1958 2037 +1954 1958 2041 +1952 1958 2045 +1950 1958 2051 +1946 1958 2058 +1942 1962 2068 +1936 1967 2081 +1928 1969 2114 +1915 1966 2154 +1905 1962 2189 +1920 1968 2243 +1883 1968 2320 +1930 1954 2392 +2035 1964 2481 +2095 1968 2516 +2095 1968 2516 +2095 1968 2516 +2095 1968 2516 +2095 1968 2516 +2095 1968 2516 +2095 1968 2516 +2095 1968 2516 +2095 1968 2516 +2095 1968 2516 +2120 2120 2068 +2120 2120 2068 +2120 2120 2068 +2120 2120 2069 +2120 2120 2069 +2120 2120 2070 +2120 2120 2071 +2120 2121 2073 +2120 2122 2075 +2120 2122 2078 +2120 2124 2082 +2120 2125 2088 +2119 2127 2095 +2119 2127 2101 +2119 2127 2110 +2116 2131 2132 +2110 2133 2165 +2104 2131 2206 +2111 2134 2256 +2120 2135 2316 +2148 2131 2395 +2212 2147 2485 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2370 2355 2124 +2370 2355 2124 +2370 2355 2124 +2370 2355 2125 +2370 2355 2125 +2370 2356 2126 +2369 2356 2126 +2369 2356 2127 +2369 2357 2129 +2368 2357 2131 +2368 2358 2133 +2368 2359 2137 +2369 2360 2143 +2370 2358 2146 +2369 2356 2148 +2369 2358 2163 +2371 2358 2193 +2369 2358 2226 +2372 2355 2273 +2384 2357 2337 +2410 2367 2405 +2467 2385 2498 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2681 2655 1963 +2681 2655 1963 +2681 2655 1964 +2681 2655 1965 +2681 2655 1966 +2681 2655 1967 +2681 2655 1968 +2681 2655 1969 +2681 2654 1968 +2681 2654 1967 +2680 2654 1965 +2680 2653 1963 +2679 2653 1963 +2678 2654 1973 +2677 2655 1994 +2676 2653 2016 +2675 2650 2036 +2677 2655 2123 +2681 2656 2208 +2687 2661 2306 +2695 2666 2409 +2715 2678 2527 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +58 0 0 +58 0 0 +58 0 0 +58 0 0 +58 0 28 +58 0 152 +58 0 280 +58 0 408 +58 0 537 +58 0 667 +58 0 797 +58 0 928 +0 0 1088 +0 0 1305 +0 0 1481 +28 0 1634 +564 0 1774 +1165 0 1884 +1561 0 2007 +1555 0 2157 +407 987 2341 +1245 605 2470 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +41 0 0 +50 0 0 +50 0 0 +50 0 0 +50 0 36 +50 0 159 +50 0 285 +50 0 412 +50 0 540 +50 0 669 +50 0 799 +50 0 930 +0 0 1089 +0 0 1306 +0 0 1482 +36 0 1635 +550 0 1774 +1164 0 1884 +1561 0 2008 +1554 0 2157 +407 992 2341 +1249 608 2470 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +17 0 0 +26 0 0 +38 0 0 +38 0 0 +38 0 48 +38 0 168 +38 0 291 +38 0 417 +38 0 544 +38 0 672 +38 0 801 +38 0 931 +0 0 1090 +0 0 1307 +0 0 1482 +48 0 1635 +530 0 1773 +1163 0 1884 +1560 0 2008 +1552 0 2157 +407 998 2341 +1254 611 2470 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +0 0 0 +0 0 0 +6 0 0 +22 0 0 +22 0 63 +22 0 180 +22 0 300 +22 0 424 +22 0 549 +22 0 676 +22 0 804 +22 0 933 +0 0 1091 +0 0 1308 +0 0 1483 +63 0 1636 +502 0 1773 +1162 0 1885 +1560 0 2009 +1550 0 2158 +407 1005 2342 +1262 615 2470 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 83 +0 0 195 +0 0 312 +0 0 433 +0 0 556 +0 0 681 +0 0 808 +0 0 936 +0 0 1093 +0 0 1309 +0 0 1484 +83 0 1637 +462 0 1772 +1160 0 1885 +1559 0 2010 +1547 0 2158 +407 1015 2342 +1272 621 2470 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +1732 0 2503 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 83 +0 0 251 +0 0 356 +0 0 467 +0 0 582 +0 0 701 +0 0 823 +0 0 948 +0 0 1102 +0 30 1314 +0 30 1487 +83 0 1639 +483 0 1774 +1157 0 1887 +1552 0 2012 +1536 154 2160 +394 1028 2343 +1285 621 2470 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +0 4 0 +0 0 0 +0 0 0 +0 0 0 +0 0 83 +0 3 251 +0 78 409 +0 78 509 +0 78 615 +0 78 727 +0 78 843 +0 78 963 +0 137 1112 +0 163 1321 +0 163 1492 +83 94 1641 +511 0 1777 +1154 0 1889 +1542 32 2015 +1522 302 2163 +376 1045 2344 +1302 621 2470 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +0 144 0 +0 137 0 +0 127 0 +0 114 0 +0 96 83 +0 143 251 +0 199 409 +0 265 559 +0 265 655 +0 265 759 +0 265 868 +0 265 982 +0 305 1126 +0 295 1330 +0 295 1498 +83 244 1644 +545 15 1780 +1150 0 1891 +1529 164 2018 +1502 446 2167 +352 1066 2345 +1323 621 2470 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +0 281 0 +0 276 0 +0 269 0 +0 259 0 +0 246 83 +0 280 251 +0 322 409 +0 373 559 +0 434 705 +0 434 798 +0 434 899 +0 434 1007 +0 462 1144 +0 426 1341 +0 426 1506 +83 390 1648 +587 190 1784 +1144 111 1895 +1511 296 2022 +1474 586 2172 +317 1093 2347 +1361 639 2470 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +0 417 0 +0 413 0 +0 408 0 +0 401 0 +0 391 83 +0 416 251 +0 448 409 +0 487 559 +0 535 705 +0 591 846 +0 591 938 +0 591 1038 +0 611 1167 +0 570 1357 +0 559 1517 +83 531 1653 +591 391 1789 +1136 244 1899 +1486 428 2028 +1434 725 2178 +265 1128 2349 +1407 662 2470 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +0 552 0 +0 549 0 +0 545 0 +0 540 0 +0 533 83 +0 551 251 +0 575 409 +0 605 559 +0 642 705 +0 688 846 +0 742 985 +0 742 1076 +0 756 1197 +0 726 1376 +0 691 1531 +83 670 1662 +591 572 1794 +1152 422 1905 +1450 560 2036 +1374 862 2187 +186 1169 2352 +1464 691 2470 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +0 686 0 +0 684 0 +0 681 0 +0 677 0 +0 672 83 +0 686 251 +0 703 409 +0 726 559 +0 755 705 +0 791 846 +0 835 985 +0 887 1123 +0 898 1233 +0 876 1401 +0 823 1548 +83 808 1675 +591 737 1800 +1179 593 1913 +1396 692 2046 +1279 997 2199 +0 1212 2357 +1529 728 2470 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +0 854 85 +0 854 130 +0 852 185 +0 850 248 +0 846 322 +0 855 429 +0 868 541 +0 884 658 +0 904 778 +0 930 901 +0 963 1027 +0 1003 1154 +69 1044 1282 +0 1029 1435 +0 983 1573 +141 963 1697 +601 928 1815 +1197 800 1927 +1320 849 2058 +1133 1133 2212 +0 1254 2365 +1592 800 2470 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +136 1175 1014 +107 1175 1020 +65 1175 1028 +1 1175 1038 +0 1175 1052 +0 1175 1064 +0 1175 1080 +0 1175 1099 +0 1175 1125 +0 1180 1168 +0 1200 1242 +0 1224 1325 +21 1250 1417 +153 1233 1497 +153 1204 1620 +214 1214 1743 +666 1191 1855 +1071 1137 1962 +1243 1131 2080 +1031 1271 2226 +622 1305 2371 +1594 1025 2471 +1769 1134 2512 +1769 1134 2512 +1769 1134 2512 +1769 1134 2512 +1769 1134 2512 +1769 1134 2512 +1769 1134 2512 +1769 1134 2512 +1769 1134 2512 +1769 1134 2512 +136 1416 1371 +107 1416 1374 +65 1416 1378 +1 1416 1383 +0 1416 1389 +0 1416 1395 +0 1416 1402 +0 1416 1412 +0 1416 1425 +0 1416 1442 +0 1416 1463 +0 1416 1491 +21 1427 1546 +153 1415 1608 +153 1396 1676 +214 1407 1788 +666 1407 1897 +1078 1356 2001 +1151 1350 2109 +878 1405 2241 +770 1382 2378 +1607 1205 2473 +1802 1306 2510 +1802 1306 2510 +1802 1306 2510 +1802 1306 2510 +1802 1306 2510 +1802 1306 2510 +1802 1306 2510 +1802 1306 2510 +1802 1306 2510 +1802 1306 2510 +973 1576 1651 +973 1576 1652 +971 1577 1653 +969 1577 1654 +966 1578 1656 +966 1577 1659 +966 1576 1664 +966 1574 1669 +966 1572 1677 +966 1569 1686 +966 1567 1699 +966 1567 1716 +948 1567 1737 +920 1575 1786 +920 1568 1836 +932 1552 1890 +876 1557 1972 +968 1536 2066 +965 1537 2170 +810 1526 2268 +1145 1498 2382 +1680 1435 2473 +1844 1469 2509 +1844 1469 2509 +1844 1469 2509 +1844 1469 2509 +1844 1469 2509 +1844 1469 2509 +1844 1469 2509 +1844 1469 2509 +1844 1469 2509 +1844 1469 2509 +1457 1704 1855 +1456 1704 1856 +1454 1705 1857 +1452 1705 1858 +1449 1705 1860 +1446 1705 1862 +1443 1705 1865 +1438 1705 1868 +1432 1705 1873 +1431 1703 1880 +1431 1700 1888 +1431 1696 1899 +1428 1691 1913 +1405 1685 1932 +1405 1696 1977 +1373 1700 2021 +1378 1686 2063 +1214 1672 2128 +1142 1679 2221 +1192 1647 2295 +1522 1633 2386 +1779 1634 2475 +1895 1627 2511 +1895 1627 2511 +1895 1627 2511 +1895 1627 2511 +1895 1627 2511 +1895 1627 2511 +1895 1627 2511 +1895 1627 2511 +1895 1627 2511 +1895 1627 2511 +1790 1816 1977 +1790 1816 1978 +1789 1816 1978 +1789 1816 1979 +1788 1816 1981 +1788 1816 1982 +1789 1816 1983 +1790 1816 1986 +1792 1816 1988 +1793 1816 1992 +1790 1816 1998 +1783 1816 2007 +1773 1817 2018 +1755 1823 2036 +1736 1817 2051 +1731 1804 2079 +1691 1816 2124 +1708 1807 2166 +1659 1793 2234 +1670 1794 2305 +1757 1797 2389 +1873 1789 2475 +1966 1800 2514 +1966 1800 2514 +1966 1800 2514 +1966 1800 2514 +1966 1800 2514 +1966 1800 2514 +1966 1800 2514 +1966 1800 2514 +1966 1800 2514 +1966 1800 2514 +1960 1958 2029 +1960 1958 2029 +1959 1958 2030 +1959 1958 2030 +1958 1958 2031 +1958 1958 2032 +1957 1958 2034 +1956 1958 2035 +1956 1958 2038 +1954 1958 2041 +1952 1958 2046 +1950 1958 2051 +1947 1958 2059 +1942 1961 2068 +1936 1967 2081 +1928 1969 2113 +1916 1966 2154 +1905 1962 2189 +1920 1968 2242 +1884 1968 2319 +1930 1954 2392 +2036 1964 2481 +2096 1968 2516 +2096 1968 2516 +2096 1968 2516 +2096 1968 2516 +2096 1968 2516 +2096 1968 2516 +2096 1968 2516 +2096 1968 2516 +2096 1968 2516 +2096 1968 2516 +2120 2120 2068 +2120 2120 2068 +2120 2120 2069 +2120 2120 2069 +2121 2120 2069 +2121 2120 2070 +2121 2120 2071 +2121 2121 2073 +2121 2122 2075 +2121 2122 2078 +2121 2124 2082 +2121 2125 2087 +2120 2127 2094 +2119 2127 2101 +2119 2127 2110 +2116 2131 2132 +2110 2134 2165 +2104 2130 2206 +2111 2134 2256 +2120 2134 2316 +2148 2131 2395 +2213 2146 2485 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2370 2355 2124 +2370 2355 2124 +2370 2355 2124 +2370 2355 2125 +2370 2355 2125 +2370 2355 2126 +2370 2356 2126 +2369 2356 2127 +2369 2356 2129 +2369 2357 2131 +2368 2357 2133 +2368 2359 2137 +2369 2360 2143 +2370 2358 2146 +2369 2356 2148 +2369 2358 2162 +2371 2358 2193 +2370 2358 2226 +2372 2356 2273 +2384 2357 2337 +2410 2367 2406 +2466 2384 2498 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2681 2655 1963 +2681 2655 1963 +2681 2655 1964 +2681 2655 1965 +2681 2655 1967 +2681 2655 1968 +2681 2655 1969 +2681 2655 1970 +2681 2655 1969 +2681 2654 1968 +2680 2654 1966 +2680 2653 1964 +2679 2653 1964 +2678 2654 1975 +2677 2655 1997 +2676 2654 2018 +2675 2650 2038 +2677 2655 2123 +2681 2656 2208 +2687 2661 2306 +2695 2666 2409 +2715 2678 2527 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2456 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +197 0 0 +197 0 0 +197 0 0 +197 0 0 +197 0 28 +197 0 152 +197 0 280 +197 0 408 +197 0 537 +197 0 667 +197 0 797 +197 0 928 +71 0 1088 +0 0 1312 +0 0 1486 +152 0 1634 +638 0 1775 +1174 0 1884 +1561 0 2008 +1552 0 2159 +394 987 2341 +1252 597 2470 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +184 0 0 +190 0 0 +190 0 0 +190 0 0 +190 0 36 +190 0 159 +190 0 285 +190 0 412 +190 0 540 +190 0 669 +190 0 799 +190 0 930 +46 0 1089 +0 0 1313 +0 0 1486 +159 0 1635 +626 0 1775 +1173 0 1885 +1561 0 2008 +1551 0 2159 +394 992 2341 +1257 599 2470 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +167 0 0 +173 0 0 +182 0 0 +182 0 0 +182 0 48 +182 0 168 +182 0 291 +182 0 417 +182 0 544 +182 0 672 +182 0 801 +182 0 931 +35 0 1090 +0 0 1313 +0 0 1487 +168 0 1635 +609 0 1775 +1172 0 1885 +1560 0 2009 +1549 0 2159 +394 998 2341 +1262 603 2470 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +142 0 0 +149 0 0 +158 0 0 +170 0 0 +170 0 63 +170 0 180 +170 0 300 +170 0 424 +170 0 549 +170 0 676 +170 0 804 +170 0 933 +19 0 1091 +0 0 1315 +0 0 1487 +180 0 1636 +586 0 1774 +1171 0 1886 +1560 0 2010 +1547 0 2159 +394 1005 2342 +1270 608 2470 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +1734 0 2503 +107 0 0 +115 0 0 +125 0 0 +138 0 0 +154 0 83 +154 0 195 +154 0 312 +154 0 433 +154 0 556 +154 0 681 +154 0 808 +154 0 936 +0 0 1093 +0 0 1316 +0 0 1489 +195 0 1637 +552 0 1774 +1169 0 1886 +1559 0 2011 +1544 57 2160 +394 1015 2342 +1279 613 2470 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +1733 0 2503 +56 0 0 +65 0 0 +76 0 0 +90 0 0 +108 0 83 +132 0 215 +132 0 327 +132 0 444 +132 0 564 +132 0 688 +132 0 813 +132 0 940 +0 0 1096 +0 30 1317 +0 30 1490 +215 0 1639 +504 0 1773 +1167 0 1887 +1558 0 2012 +1540 132 2160 +394 1028 2343 +1292 621 2470 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +1732 30 2504 +56 4 0 +65 0 0 +76 0 0 +90 0 0 +108 0 83 +132 0 215 +132 0 383 +132 0 488 +132 0 599 +132 0 714 +132 0 833 +132 0 955 +0 64 1107 +0 163 1324 +0 163 1494 +215 68 1641 +530 0 1776 +1164 0 1889 +1548 32 2015 +1525 286 2163 +376 1045 2344 +1308 621 2470 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +56 144 0 +65 137 0 +76 127 0 +90 114 0 +108 96 83 +132 70 215 +132 135 383 +132 210 541 +132 210 641 +132 210 747 +132 210 859 +132 210 975 +0 255 1121 +0 295 1333 +0 295 1500 +215 226 1644 +563 0 1779 +1159 0 1892 +1536 164 2018 +1506 434 2167 +352 1066 2345 +1329 621 2470 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +56 281 0 +65 276 0 +76 269 0 +90 259 0 +108 246 83 +132 227 215 +132 275 383 +132 331 541 +132 397 691 +132 397 787 +132 397 891 +132 397 1000 +0 427 1139 +0 426 1344 +0 426 1508 +215 376 1648 +604 147 1783 +1154 111 1895 +1518 296 2022 +1478 578 2172 +317 1093 2347 +1367 639 2470 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +56 417 0 +65 413 0 +76 408 0 +90 401 0 +108 391 83 +132 378 215 +132 412 383 +132 455 541 +132 505 691 +132 566 837 +132 566 930 +132 566 1032 +0 587 1163 +0 570 1359 +0 559 1519 +215 522 1653 +607 365 1787 +1146 244 1900 +1493 428 2028 +1438 719 2178 +265 1128 2349 +1413 662 2470 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +56 552 0 +65 549 0 +76 545 0 +90 540 0 +108 533 83 +132 523 215 +132 548 383 +132 580 541 +132 619 691 +132 667 837 +132 723 978 +132 723 1071 +0 738 1192 +0 726 1379 +0 691 1532 +215 663 1662 +607 554 1792 +1162 422 1905 +1457 560 2036 +1379 857 2187 +186 1169 2352 +1468 691 2470 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +56 686 0 +65 684 0 +76 681 0 +90 677 0 +108 672 83 +132 665 215 +132 684 383 +132 708 541 +132 737 691 +132 774 837 +132 820 978 +132 874 1118 +0 885 1229 +0 876 1403 +0 823 1550 +215 803 1675 +607 725 1799 +1188 593 1913 +1404 692 2046 +1285 994 2199 +0 1212 2357 +1533 728 2470 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +63 854 85 +31 854 130 +43 852 185 +58 850 248 +78 846 322 +103 841 404 +103 854 522 +103 870 643 +103 892 767 +103 918 893 +103 952 1020 +103 993 1149 +185 1035 1278 +0 1029 1438 +0 983 1575 +259 959 1697 +617 920 1814 +1206 800 1927 +1329 849 2058 +1141 1131 2212 +0 1254 2365 +1596 800 2470 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +289 1170 1007 +268 1170 1013 +239 1170 1021 +196 1170 1032 +132 1170 1046 +30 1170 1064 +30 1170 1080 +30 1170 1099 +30 1170 1125 +30 1176 1168 +30 1195 1242 +30 1220 1325 +125 1246 1417 +285 1231 1499 +285 1202 1622 +345 1210 1744 +680 1193 1856 +1086 1139 1963 +1243 1131 2080 +1031 1271 2226 +681 1302 2370 +1597 1022 2471 +1771 1129 2512 +1771 1129 2512 +1771 1129 2512 +1771 1129 2512 +1771 1129 2512 +1771 1129 2512 +1771 1129 2512 +1771 1129 2512 +1771 1129 2512 +1771 1129 2512 +289 1413 1368 +268 1413 1371 +239 1413 1375 +196 1413 1380 +132 1413 1386 +30 1413 1395 +30 1413 1402 +30 1413 1412 +30 1413 1425 +30 1413 1442 +30 1413 1463 +30 1413 1491 +125 1424 1546 +285 1414 1610 +285 1395 1677 +345 1404 1789 +680 1408 1897 +1092 1358 2001 +1151 1350 2109 +878 1405 2241 +813 1379 2377 +1609 1202 2473 +1804 1303 2510 +1804 1303 2510 +1804 1303 2510 +1804 1303 2510 +1804 1303 2510 +1804 1303 2510 +1804 1303 2510 +1804 1303 2510 +1804 1303 2510 +1804 1303 2510 +1005 1574 1653 +1004 1574 1654 +1003 1575 1655 +1001 1575 1656 +998 1576 1658 +995 1577 1660 +995 1576 1664 +995 1574 1670 +995 1572 1678 +995 1569 1687 +995 1567 1700 +995 1567 1716 +977 1567 1738 +937 1574 1785 +937 1567 1835 +952 1552 1890 +906 1557 1973 +989 1536 2066 +976 1537 2170 +810 1527 2268 +1155 1497 2382 +1680 1435 2473 +1844 1468 2509 +1844 1468 2509 +1844 1468 2509 +1844 1468 2509 +1844 1468 2509 +1844 1468 2509 +1844 1468 2509 +1844 1468 2509 +1844 1468 2509 +1844 1468 2509 +1461 1703 1854 +1459 1704 1855 +1458 1704 1856 +1456 1704 1858 +1453 1705 1859 +1449 1705 1862 +1446 1705 1865 +1441 1705 1868 +1435 1705 1873 +1434 1703 1880 +1434 1700 1888 +1434 1696 1899 +1431 1691 1913 +1408 1685 1932 +1408 1696 1977 +1375 1699 2021 +1380 1687 2064 +1224 1672 2127 +1149 1680 2221 +1200 1647 2295 +1523 1633 2386 +1781 1634 2475 +1896 1626 2511 +1896 1626 2511 +1896 1626 2511 +1896 1626 2511 +1896 1626 2511 +1896 1626 2511 +1896 1626 2511 +1896 1626 2511 +1896 1626 2511 +1896 1626 2511 +1793 1816 1977 +1792 1816 1977 +1792 1816 1978 +1791 1816 1979 +1790 1816 1980 +1789 1816 1982 +1790 1816 1983 +1791 1816 1986 +1792 1816 1988 +1794 1816 1992 +1790 1816 1998 +1783 1816 2007 +1774 1817 2018 +1756 1822 2035 +1737 1817 2051 +1733 1804 2079 +1694 1816 2124 +1710 1807 2166 +1660 1793 2234 +1673 1795 2305 +1759 1797 2389 +1873 1788 2475 +1968 1800 2514 +1968 1800 2514 +1968 1800 2514 +1968 1800 2514 +1968 1800 2514 +1968 1800 2514 +1968 1800 2514 +1968 1800 2514 +1968 1800 2514 +1968 1800 2514 +1961 1958 2029 +1961 1958 2030 +1961 1958 2030 +1960 1958 2031 +1959 1958 2031 +1959 1958 2032 +1958 1958 2034 +1958 1958 2036 +1956 1958 2038 +1955 1958 2042 +1953 1958 2046 +1951 1958 2052 +1948 1958 2059 +1943 1961 2068 +1937 1966 2081 +1930 1968 2112 +1918 1966 2154 +1905 1962 2189 +1920 1968 2242 +1885 1967 2319 +1930 1954 2392 +2038 1964 2481 +2097 1968 2516 +2097 1968 2516 +2097 1968 2516 +2097 1968 2516 +2097 1968 2516 +2097 1968 2516 +2097 1968 2516 +2097 1968 2516 +2097 1968 2516 +2097 1968 2516 +2120 2120 2069 +2120 2120 2069 +2121 2120 2069 +2121 2120 2069 +2121 2120 2069 +2121 2120 2069 +2121 2120 2071 +2121 2121 2073 +2121 2122 2075 +2121 2122 2078 +2121 2124 2082 +2121 2125 2087 +2120 2127 2094 +2119 2127 2101 +2119 2127 2110 +2117 2131 2132 +2111 2134 2166 +2105 2130 2206 +2111 2134 2255 +2121 2134 2316 +2148 2131 2396 +2213 2146 2485 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2370 2355 2124 +2370 2355 2124 +2370 2355 2124 +2370 2355 2125 +2370 2355 2125 +2370 2355 2126 +2370 2355 2126 +2370 2356 2127 +2369 2356 2129 +2369 2357 2131 +2368 2357 2133 +2369 2358 2137 +2369 2359 2143 +2370 2358 2146 +2369 2356 2148 +2369 2358 2162 +2371 2358 2193 +2370 2358 2226 +2373 2356 2273 +2385 2357 2337 +2411 2367 2406 +2466 2384 2498 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2681 2655 1963 +2681 2655 1963 +2681 2655 1964 +2681 2655 1965 +2681 2655 1967 +2681 2655 1969 +2681 2655 1970 +2681 2655 1971 +2681 2655 1970 +2681 2655 1969 +2680 2654 1968 +2680 2654 1965 +2679 2653 1966 +2679 2654 1979 +2677 2655 2000 +2676 2654 2020 +2675 2650 2041 +2677 2655 2122 +2681 2656 2208 +2688 2661 2306 +2695 2666 2408 +2715 2678 2527 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2723 2684 2575 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2457 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2784 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2457 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2784 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2457 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2784 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2457 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2784 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2457 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2784 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2457 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2784 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2457 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2784 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2457 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2784 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2457 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2784 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2457 +2710 2773 2483 +2714 2774 2520 +2714 2773 2553 +2717 2777 2616 +2722 2784 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +333 0 0 +333 0 0 +333 0 0 +333 0 0 +333 0 28 +333 0 152 +333 0 280 +333 0 408 +333 0 537 +333 0 667 +333 0 797 +333 0 928 +244 0 1088 +0 0 1321 +0 0 1492 +280 0 1634 +721 0 1777 +1186 0 1886 +1561 0 2009 +1548 0 2161 +376 987 2341 +1263 586 2469 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +324 0 0 +329 0 0 +329 0 0 +329 0 0 +329 0 36 +329 0 159 +329 0 285 +329 0 412 +329 0 540 +329 0 669 +329 0 799 +329 0 930 +227 0 1089 +0 0 1322 +0 0 1493 +285 0 1635 +711 0 1776 +1185 0 1886 +1561 0 2009 +1547 0 2161 +376 992 2341 +1267 588 2469 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +311 0 0 +316 0 0 +322 0 0 +322 0 0 +322 0 48 +322 0 168 +322 0 291 +322 0 417 +322 0 544 +322 0 672 +322 0 801 +322 0 931 +219 0 1090 +0 0 1323 +0 0 1493 +291 0 1635 +697 0 1776 +1184 0 1886 +1560 0 2010 +1545 22 2161 +376 998 2341 +1272 592 2469 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +294 0 0 +299 0 0 +305 0 0 +314 0 0 +314 0 63 +314 0 180 +314 0 300 +314 0 424 +314 0 549 +314 0 676 +314 0 804 +314 0 933 +209 0 1091 +0 0 1323 +0 0 1494 +300 0 1636 +678 0 1776 +1183 0 1887 +1560 0 2011 +1543 69 2161 +376 1005 2342 +1280 596 2469 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +1735 0 2503 +269 0 0 +274 0 0 +281 0 0 +290 0 0 +302 0 83 +302 0 195 +302 0 312 +302 0 433 +302 0 556 +302 0 681 +302 0 808 +302 0 936 +194 0 1093 +0 0 1325 +0 0 1495 +312 0 1637 +651 0 1776 +1181 0 1887 +1559 0 2012 +1540 124 2162 +376 1015 2342 +1289 603 2469 +1734 0 2504 +1734 0 2504 +1734 0 2504 +1734 0 2504 +1734 0 2504 +1734 0 2504 +1734 0 2504 +1734 0 2504 +1734 0 2504 +1734 0 2504 +234 0 0 +239 0 0 +247 0 0 +257 0 0 +270 0 83 +286 0 215 +286 0 327 +286 0 444 +286 0 564 +286 0 688 +286 0 813 +286 0 940 +173 0 1096 +0 30 1326 +0 30 1496 +327 0 1639 +613 0 1775 +1179 0 1888 +1558 0 2013 +1535 189 2162 +376 1028 2343 +1301 611 2469 +1733 30 2504 +1733 30 2504 +1733 30 2504 +1733 30 2504 +1733 30 2504 +1733 30 2504 +1733 30 2504 +1733 30 2504 +1733 30 2504 +1733 30 2504 +182 4 0 +188 0 0 +197 0 0 +208 0 0 +222 0 83 +241 0 215 +264 0 347 +264 0 459 +264 0 576 +264 0 697 +264 0 820 +264 0 946 +145 0 1100 +0 163 1329 +0 163 1497 +347 32 1641 +555 0 1774 +1176 0 1890 +1557 32 2015 +1530 264 2163 +376 1045 2344 +1318 621 2469 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +1732 163 2504 +182 144 0 +188 137 0 +197 127 0 +208 114 0 +222 96 83 +241 70 215 +264 34 347 +264 126 516 +264 126 620 +264 126 731 +264 126 846 +264 126 966 +145 179 1114 +0 295 1337 +0 295 1503 +347 201 1644 +586 0 1777 +1172 0 1892 +1544 164 2019 +1510 418 2167 +352 1066 2345 +1338 621 2469 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +182 281 0 +188 276 0 +197 269 0 +208 259 0 +222 246 83 +241 227 215 +264 202 347 +264 267 516 +264 342 673 +264 342 773 +264 342 879 +264 342 991 +145 376 1133 +0 426 1349 +0 426 1511 +347 358 1648 +625 84 1782 +1166 111 1896 +1526 296 2023 +1483 566 2172 +317 1093 2347 +1375 639 2469 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +182 417 0 +188 413 0 +197 408 0 +208 401 0 +222 391 83 +241 378 215 +264 360 347 +264 407 516 +264 463 673 +264 529 824 +264 529 920 +264 529 1023 +145 552 1156 +0 570 1364 +0 559 1522 +347 509 1653 +628 326 1786 +1159 244 1900 +1502 428 2029 +1443 710 2178 +265 1128 2349 +1420 662 2469 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +182 552 0 +188 549 0 +197 545 0 +208 540 0 +222 533 83 +241 523 215 +264 510 347 +264 544 516 +264 586 673 +264 637 824 +264 698 969 +264 698 1063 +145 714 1186 +0 726 1383 +0 691 1535 +347 654 1662 +628 529 1791 +1174 422 1906 +1467 560 2036 +1385 851 2187 +186 1169 2352 +1475 691 2469 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +182 686 0 +188 684 0 +197 681 0 +208 677 0 +222 672 83 +241 665 215 +264 655 347 +264 681 516 +264 712 673 +264 752 824 +264 799 969 +264 856 1111 +145 867 1223 +0 876 1407 +0 823 1553 +347 796 1675 +628 708 1798 +1200 593 1914 +1415 692 2046 +1292 989 2199 +0 1212 2357 +1539 728 2469 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +187 854 85 +163 854 130 +172 852 185 +183 850 248 +198 846 322 +218 841 404 +243 835 496 +243 852 623 +243 874 752 +243 902 881 +243 936 1011 +243 979 1142 +304 1023 1273 +0 1029 1441 +0 983 1578 +380 954 1697 +638 909 1812 +1217 800 1928 +1343 849 2058 +1151 1127 2212 +0 1254 2365 +1600 800 2469 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +436 1164 998 +421 1164 1004 +400 1164 1013 +371 1164 1024 +328 1164 1038 +265 1164 1056 +163 1164 1080 +163 1164 1099 +163 1164 1125 +163 1170 1168 +163 1189 1242 +163 1214 1325 +235 1241 1417 +417 1228 1503 +417 1199 1624 +478 1204 1746 +698 1196 1857 +1104 1142 1964 +1243 1131 2079 +1031 1271 2226 +750 1297 2370 +1600 1018 2470 +1773 1121 2512 +1773 1121 2512 +1773 1121 2512 +1773 1121 2512 +1773 1121 2512 +1773 1121 2512 +1773 1121 2512 +1773 1121 2512 +1773 1121 2512 +1773 1121 2512 +436 1410 1364 +421 1410 1367 +400 1410 1371 +371 1410 1376 +328 1410 1382 +265 1410 1391 +163 1410 1402 +163 1410 1412 +163 1410 1425 +163 1410 1442 +163 1410 1463 +163 1410 1491 +235 1421 1546 +417 1412 1612 +417 1393 1679 +478 1400 1791 +698 1410 1897 +1111 1360 2002 +1151 1350 2108 +878 1405 2242 +865 1375 2377 +1613 1200 2472 +1806 1298 2510 +1806 1298 2510 +1806 1298 2510 +1806 1298 2510 +1806 1298 2510 +1806 1298 2510 +1806 1298 2510 +1806 1298 2510 +1806 1298 2510 +1806 1298 2510 +1044 1572 1655 +1043 1572 1656 +1042 1572 1657 +1040 1573 1658 +1038 1573 1660 +1034 1574 1662 +1030 1576 1666 +1030 1574 1671 +1030 1572 1679 +1030 1569 1688 +1030 1567 1701 +1030 1567 1717 +1014 1567 1739 +958 1573 1783 +958 1565 1833 +977 1552 1891 +944 1557 1974 +1016 1536 2066 +990 1537 2170 +810 1528 2268 +1168 1496 2382 +1680 1435 2473 +1843 1466 2509 +1843 1466 2509 +1843 1466 2509 +1843 1466 2509 +1843 1466 2509 +1843 1466 2509 +1843 1466 2509 +1843 1466 2509 +1843 1466 2509 +1843 1466 2509 +1466 1702 1854 +1464 1703 1855 +1463 1703 1855 +1461 1703 1857 +1458 1704 1859 +1454 1705 1862 +1449 1705 1865 +1444 1705 1868 +1438 1705 1873 +1438 1703 1880 +1438 1700 1888 +1438 1696 1899 +1434 1691 1913 +1412 1685 1932 +1412 1696 1978 +1377 1698 2020 +1384 1688 2065 +1238 1672 2127 +1159 1681 2221 +1212 1647 2296 +1524 1635 2386 +1783 1634 2474 +1897 1625 2511 +1897 1625 2511 +1897 1625 2511 +1897 1625 2511 +1897 1625 2511 +1897 1625 2511 +1897 1625 2511 +1897 1625 2511 +1897 1625 2511 +1897 1625 2511 +1796 1815 1977 +1795 1815 1977 +1795 1815 1978 +1794 1815 1978 +1793 1815 1980 +1792 1815 1981 +1790 1815 1983 +1792 1815 1986 +1793 1815 1988 +1795 1815 1992 +1791 1815 1998 +1784 1815 2007 +1775 1816 2018 +1758 1821 2035 +1739 1816 2051 +1736 1805 2078 +1698 1816 2124 +1712 1806 2166 +1661 1793 2234 +1677 1795 2305 +1762 1797 2390 +1872 1787 2475 +1969 1800 2514 +1969 1800 2514 +1969 1800 2514 +1969 1800 2514 +1969 1800 2514 +1969 1800 2514 +1969 1800 2514 +1969 1800 2514 +1969 1800 2514 +1969 1800 2514 +1963 1958 2030 +1962 1958 2030 +1962 1958 2031 +1962 1958 2031 +1961 1958 2032 +1960 1958 2033 +1959 1958 2034 +1958 1958 2036 +1958 1958 2039 +1956 1958 2042 +1955 1958 2047 +1952 1958 2052 +1949 1958 2059 +1943 1961 2068 +1937 1966 2081 +1930 1968 2111 +1921 1967 2155 +1905 1961 2189 +1920 1967 2241 +1887 1967 2319 +1931 1954 2392 +2040 1964 2481 +2099 1967 2516 +2099 1967 2516 +2099 1967 2516 +2099 1967 2516 +2099 1967 2516 +2099 1967 2516 +2099 1967 2516 +2099 1967 2516 +2099 1967 2516 +2099 1967 2516 +2121 2120 2069 +2121 2120 2069 +2121 2120 2069 +2121 2120 2069 +2121 2120 2070 +2122 2120 2070 +2122 2120 2070 +2122 2121 2072 +2122 2122 2074 +2122 2122 2078 +2122 2124 2082 +2122 2125 2087 +2121 2127 2094 +2119 2127 2101 +2119 2127 2110 +2118 2131 2131 +2112 2134 2166 +2105 2129 2205 +2112 2134 2255 +2122 2134 2316 +2148 2132 2396 +2214 2146 2485 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2261 2159 2523 +2370 2355 2124 +2370 2355 2124 +2370 2355 2124 +2370 2355 2125 +2370 2355 2125 +2370 2355 2126 +2371 2355 2126 +2370 2356 2127 +2370 2356 2129 +2369 2357 2131 +2369 2357 2133 +2369 2358 2137 +2370 2359 2143 +2370 2358 2146 +2369 2356 2148 +2369 2358 2162 +2372 2358 2193 +2371 2358 2226 +2374 2356 2273 +2386 2358 2337 +2411 2367 2406 +2465 2384 2499 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2681 2655 1963 +2681 2655 1963 +2681 2655 1964 +2681 2655 1965 +2681 2655 1967 +2681 2655 1969 +2681 2656 1972 +2681 2656 1973 +2681 2655 1972 +2681 2655 1971 +2680 2655 1969 +2680 2654 1967 +2679 2654 1967 +2679 2655 1983 +2677 2656 2005 +2677 2654 2023 +2675 2651 2045 +2677 2655 2122 +2681 2656 2208 +2688 2660 2305 +2695 2666 2408 +2715 2678 2527 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2458 +2710 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2458 +2710 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2458 +2710 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2458 +2710 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2458 +2710 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2458 +2710 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2458 +2710 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2458 +2710 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2458 +2710 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2458 +2710 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +469 0 0 +469 0 0 +469 0 0 +469 0 0 +469 0 28 +469 0 152 +469 0 280 +469 0 408 +469 0 537 +469 0 667 +469 0 797 +469 0 928 +404 0 1088 +100 0 1333 +100 0 1501 +408 0 1634 +813 0 1779 +1202 0 1887 +1561 0 2010 +1542 61 2164 +352 987 2341 +1276 570 2469 +1737 0 2503 +1737 0 2503 +1737 0 2503 +1737 0 2503 +1737 0 2503 +1737 0 2503 +1737 0 2503 +1737 0 2503 +1737 0 2503 +1737 0 2503 +462 0 0 +465 0 0 +465 0 0 +465 0 0 +465 0 36 +465 0 159 +465 0 285 +465 0 412 +465 0 540 +465 0 669 +465 0 799 +465 0 930 +393 0 1089 +76 0 1333 +76 0 1501 +412 0 1635 +805 0 1779 +1201 0 1887 +1561 0 2011 +1541 86 2164 +352 992 2341 +1280 573 2469 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +453 0 0 +456 0 0 +461 0 0 +461 0 0 +461 0 48 +461 0 168 +461 0 291 +461 0 417 +461 0 544 +461 0 672 +461 0 801 +461 0 931 +387 0 1090 +43 0 1334 +43 0 1501 +417 0 1635 +793 0 1778 +1200 0 1888 +1560 0 2011 +1539 116 2164 +352 998 2341 +1285 577 2469 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +1736 0 2503 +440 0 0 +444 0 0 +448 0 0 +455 0 0 +455 0 63 +455 0 180 +455 0 300 +455 0 424 +455 0 549 +455 0 676 +455 0 804 +455 0 933 +380 0 1091 +0 0 1335 +0 0 1502 +424 0 1636 +778 0 1778 +1199 0 1889 +1560 0 2012 +1537 154 2164 +352 1005 2342 +1292 582 2469 +1736 0 2504 +1736 0 2504 +1736 0 2504 +1736 0 2504 +1736 0 2504 +1736 0 2504 +1736 0 2504 +1736 0 2504 +1736 0 2504 +1736 0 2504 +422 0 0 +426 0 0 +431 0 0 +437 0 0 +446 0 83 +446 0 195 +446 0 312 +446 0 433 +446 0 556 +446 0 681 +446 0 808 +446 0 936 +370 0 1093 +0 0 1336 +0 0 1503 +433 0 1637 +757 0 1778 +1197 0 1889 +1559 0 2013 +1534 201 2165 +352 1015 2342 +1302 588 2469 +1735 0 2504 +1735 0 2504 +1735 0 2504 +1735 0 2504 +1735 0 2504 +1735 0 2504 +1735 0 2504 +1735 0 2504 +1735 0 2504 +1735 0 2504 +397 0 0 +401 0 0 +406 0 0 +413 0 0 +422 0 83 +434 0 215 +434 0 327 +434 0 444 +434 0 564 +434 0 688 +434 0 813 +434 0 940 +356 0 1096 +0 30 1338 +0 30 1504 +444 0 1639 +726 0 1777 +1195 0 1890 +1558 0 2015 +1530 256 2165 +352 1028 2343 +1314 596 2469 +1735 30 2504 +1735 30 2504 +1735 30 2504 +1735 30 2504 +1735 30 2504 +1735 30 2504 +1735 30 2504 +1735 30 2504 +1735 30 2504 +1735 30 2504 +362 4 0 +366 0 0 +371 0 0 +379 0 0 +389 0 83 +402 0 215 +418 0 347 +418 0 459 +418 0 576 +418 0 697 +418 0 820 +418 0 946 +337 0 1100 +0 163 1340 +0 163 1505 +459 32 1641 +682 0 1776 +1192 0 1891 +1557 32 2017 +1524 322 2166 +352 1045 2344 +1329 607 2469 +1734 163 2504 +1734 163 2504 +1734 163 2504 +1734 163 2504 +1734 163 2504 +1734 163 2504 +1734 163 2504 +1734 163 2504 +1734 163 2504 +1734 163 2504 +309 144 0 +314 137 0 +320 127 0 +329 114 0 +340 96 83 +354 70 215 +373 34 347 +396 0 479 +396 0 591 +396 0 708 +396 0 829 +396 0 952 +310 52 1105 +0 295 1343 +0 295 1507 +479 164 1644 +615 0 1775 +1188 0 1893 +1555 164 2019 +1516 396 2167 +352 1066 2345 +1349 621 2469 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +1732 295 2505 +309 281 0 +314 276 0 +320 269 0 +329 259 0 +340 246 83 +354 227 215 +373 202 347 +396 166 479 +396 257 648 +396 257 752 +396 257 863 +396 257 978 +310 298 1124 +0 426 1354 +0 426 1515 +479 333 1648 +652 0 1779 +1183 111 1897 +1538 296 2024 +1489 550 2172 +317 1093 2347 +1385 639 2469 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +309 417 0 +314 413 0 +320 408 0 +329 401 0 +340 391 83 +354 378 215 +373 360 347 +396 334 479 +396 399 648 +396 474 805 +396 474 905 +396 474 1011 +310 500 1148 +0 570 1369 +0 559 1526 +479 490 1653 +655 270 1784 +1176 244 1901 +1514 428 2029 +1450 699 2178 +265 1128 2349 +1430 662 2469 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +309 552 0 +314 549 0 +320 545 0 +329 540 0 +340 533 83 +354 523 215 +373 510 347 +396 492 479 +396 539 648 +396 595 805 +396 661 955 +396 661 1052 +310 678 1178 +0 726 1388 +0 691 1539 +479 640 1662 +655 494 1789 +1191 422 1907 +1480 560 2037 +1393 842 2187 +186 1169 2352 +1483 691 2469 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +309 686 0 +314 684 0 +320 681 0 +329 677 0 +340 672 83 +354 665 215 +373 655 347 +396 643 479 +396 677 648 +396 719 805 +396 770 955 +396 830 1101 +310 842 1216 +0 876 1412 +0 823 1557 +479 786 1675 +655 684 1796 +1216 593 1915 +1430 692 2047 +1302 983 2199 +0 1212 2357 +1546 728 2469 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +313 854 85 +295 854 130 +302 852 185 +310 850 248 +322 846 322 +336 841 404 +356 835 496 +380 826 594 +380 849 730 +380 878 865 +380 915 1000 +380 960 1133 +426 1005 1267 +0 1029 1446 +0 983 1581 +504 947 1697 +664 894 1810 +1232 800 1928 +1359 849 2059 +1164 1123 2212 +0 1254 2365 +1607 800 2469 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +579 1156 985 +568 1156 992 +553 1156 1001 +532 1156 1012 +503 1156 1027 +461 1156 1045 +397 1156 1069 +295 1156 1099 +295 1156 1125 +295 1161 1168 +295 1181 1242 +295 1207 1325 +350 1233 1417 +549 1224 1507 +549 1195 1627 +610 1196 1748 +721 1200 1858 +1128 1147 1966 +1243 1131 2078 +1031 1271 2227 +827 1290 2369 +1605 1012 2470 +1776 1112 2512 +1776 1112 2512 +1776 1112 2512 +1776 1112 2512 +1776 1112 2512 +1776 1112 2512 +1776 1112 2512 +1776 1112 2512 +1776 1112 2512 +1776 1112 2512 +579 1405 1359 +568 1405 1361 +553 1405 1365 +532 1405 1370 +503 1405 1377 +461 1405 1386 +397 1405 1397 +295 1405 1412 +295 1405 1425 +295 1405 1442 +295 1405 1463 +295 1405 1491 +350 1416 1546 +549 1410 1615 +549 1390 1682 +610 1395 1793 +721 1413 1898 +1134 1362 2004 +1151 1350 2108 +878 1405 2243 +927 1369 2376 +1617 1196 2472 +1809 1292 2510 +1809 1292 2510 +1809 1292 2510 +1809 1292 2510 +1809 1292 2510 +1809 1292 2510 +1809 1292 2510 +1809 1292 2510 +1809 1292 2510 +1809 1292 2510 +1091 1568 1658 +1091 1569 1659 +1089 1569 1660 +1088 1569 1661 +1086 1570 1663 +1083 1571 1665 +1079 1572 1668 +1074 1574 1673 +1074 1572 1680 +1074 1569 1690 +1074 1567 1702 +1074 1567 1718 +1060 1567 1740 +984 1571 1781 +984 1563 1832 +1008 1552 1891 +990 1557 1977 +1050 1536 2065 +1008 1537 2170 +810 1530 2268 +1184 1494 2382 +1680 1435 2473 +1842 1464 2509 +1842 1464 2509 +1842 1464 2509 +1842 1464 2509 +1842 1464 2509 +1842 1464 2509 +1842 1464 2509 +1842 1464 2509 +1842 1464 2509 +1842 1464 2509 +1472 1701 1853 +1471 1701 1854 +1469 1702 1855 +1467 1702 1856 +1464 1703 1858 +1461 1703 1861 +1456 1704 1864 +1449 1705 1868 +1443 1705 1873 +1442 1703 1880 +1442 1700 1888 +1442 1696 1899 +1439 1691 1913 +1417 1685 1933 +1417 1696 1979 +1379 1697 2020 +1390 1690 2066 +1256 1672 2126 +1172 1682 2221 +1227 1647 2296 +1526 1636 2386 +1786 1634 2474 +1899 1624 2511 +1899 1624 2511 +1899 1624 2511 +1899 1624 2511 +1899 1624 2511 +1899 1624 2511 +1899 1624 2511 +1899 1624 2511 +1899 1624 2511 +1899 1624 2511 +1800 1814 1976 +1800 1814 1976 +1799 1814 1977 +1799 1814 1978 +1797 1814 1979 +1796 1814 1981 +1795 1814 1983 +1793 1814 1986 +1794 1814 1988 +1796 1814 1992 +1792 1814 1998 +1785 1814 2007 +1776 1815 2018 +1760 1821 2034 +1741 1815 2050 +1739 1806 2078 +1704 1816 2125 +1714 1805 2166 +1662 1793 2234 +1683 1796 2305 +1765 1797 2390 +1871 1786 2475 +1971 1800 2514 +1971 1800 2514 +1971 1800 2514 +1971 1800 2514 +1971 1800 2514 +1971 1800 2514 +1971 1800 2514 +1971 1800 2514 +1971 1800 2514 +1971 1800 2514 +1965 1958 2031 +1965 1958 2031 +1964 1958 2031 +1964 1958 2032 +1963 1958 2032 +1962 1958 2034 +1961 1958 2035 +1960 1958 2037 +1959 1958 2039 +1958 1958 2042 +1956 1958 2047 +1953 1958 2053 +1951 1958 2060 +1944 1960 2068 +1938 1965 2081 +1932 1967 2110 +1924 1968 2156 +1905 1961 2189 +1920 1966 2240 +1890 1966 2318 +1932 1954 2393 +2043 1964 2481 +2101 1966 2516 +2101 1966 2516 +2101 1966 2516 +2101 1966 2516 +2101 1966 2516 +2101 1966 2516 +2101 1966 2516 +2101 1966 2516 +2101 1966 2516 +2101 1966 2516 +2121 2121 2069 +2121 2121 2070 +2121 2121 2070 +2122 2121 2070 +2122 2121 2070 +2122 2121 2071 +2122 2121 2071 +2123 2121 2071 +2123 2122 2074 +2123 2122 2077 +2123 2124 2081 +2123 2125 2086 +2122 2127 2093 +2119 2127 2101 +2119 2127 2110 +2119 2131 2131 +2114 2135 2167 +2107 2129 2205 +2112 2133 2255 +2123 2133 2316 +2148 2132 2397 +2215 2145 2485 +2260 2159 2523 +2260 2159 2523 +2260 2159 2523 +2260 2159 2523 +2260 2159 2523 +2260 2159 2523 +2260 2159 2523 +2260 2159 2523 +2260 2159 2523 +2260 2159 2523 +2370 2355 2124 +2370 2355 2124 +2370 2355 2124 +2370 2355 2125 +2370 2355 2125 +2370 2355 2126 +2371 2355 2126 +2371 2355 2127 +2371 2356 2129 +2370 2356 2131 +2369 2357 2133 +2369 2358 2137 +2370 2359 2143 +2370 2358 2146 +2369 2356 2148 +2369 2358 2161 +2372 2358 2193 +2371 2358 2227 +2375 2356 2273 +2387 2359 2337 +2411 2367 2406 +2465 2384 2499 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2496 2391 2531 +2681 2655 1963 +2681 2655 1963 +2681 2655 1964 +2681 2655 1965 +2681 2655 1967 +2681 2655 1969 +2681 2656 1972 +2681 2656 1975 +2681 2656 1974 +2681 2656 1973 +2680 2655 1971 +2680 2655 1969 +2679 2654 1969 +2679 2655 1990 +2678 2657 2010 +2677 2655 2027 +2675 2651 2050 +2677 2656 2121 +2681 2656 2208 +2688 2660 2305 +2695 2665 2407 +2715 2678 2527 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2723 2684 2576 +2713 2771 2431 +2713 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2460 +2711 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2431 +2713 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2460 +2711 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2431 +2713 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2460 +2711 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2431 +2713 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2460 +2711 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2431 +2713 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2460 +2711 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2431 +2713 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2460 +2711 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2431 +2713 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2460 +2711 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2431 +2713 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2460 +2711 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2431 +2713 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2460 +2711 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2431 +2713 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2768 2439 +2714 2769 2444 +2711 2772 2460 +2711 2773 2482 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2722 2784 2693 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +603 0 0 +603 0 0 +603 0 0 +603 0 0 +603 0 28 +603 0 152 +603 0 280 +603 0 408 +603 0 537 +603 0 667 +603 0 797 +603 0 928 +556 0 1088 +249 0 1348 +249 0 1511 +537 0 1634 +912 0 1782 +1222 0 1890 +1561 0 2012 +1535 174 2167 +317 987 2341 +1325 528 2469 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +598 0 0 +601 0 0 +601 0 0 +601 0 0 +601 0 36 +601 0 159 +601 0 285 +601 0 412 +601 0 540 +601 0 669 +601 0 799 +601 0 930 +548 0 1089 +232 0 1349 +232 0 1511 +540 0 1635 +906 0 1782 +1221 0 1890 +1561 0 2013 +1534 193 2167 +317 992 2341 +1328 531 2469 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +591 0 0 +594 0 0 +597 0 0 +597 0 0 +597 0 48 +597 0 168 +597 0 291 +597 0 417 +597 0 544 +597 0 672 +597 0 801 +597 0 931 +544 0 1090 +208 0 1349 +208 0 1512 +544 0 1635 +897 0 1781 +1221 0 1891 +1560 0 2013 +1532 217 2168 +317 998 2341 +1333 535 2469 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +1738 0 2504 +582 0 0 +585 0 0 +588 0 0 +593 0 0 +593 0 63 +593 0 180 +593 0 300 +593 0 424 +593 0 549 +593 0 676 +593 0 804 +593 0 933 +539 0 1091 +175 0 1351 +175 0 1512 +549 0 1636 +884 0 1781 +1220 0 1891 +1560 0 2014 +1530 248 2168 +317 1005 2342 +1339 540 2469 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +569 0 0 +572 0 0 +575 0 0 +580 0 0 +586 0 83 +586 0 195 +586 0 312 +586 0 433 +586 0 556 +586 0 681 +586 0 808 +586 0 936 +532 0 1093 +125 0 1352 +125 0 1513 +556 0 1637 +867 0 1781 +1218 0 1891 +1559 0 2015 +1526 286 2168 +317 1015 2342 +1348 547 2469 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +1737 0 2504 +551 0 0 +554 0 0 +558 0 0 +563 0 0 +569 0 83 +578 0 215 +578 0 327 +578 0 444 +578 0 564 +578 0 688 +578 0 813 +578 0 940 +522 0 1096 +50 30 1353 +50 30 1514 +564 0 1639 +844 0 1780 +1216 0 1893 +1558 0 2017 +1522 333 2169 +317 1028 2343 +1359 556 2469 +1736 30 2504 +1736 30 2504 +1736 30 2504 +1736 30 2504 +1736 30 2504 +1736 30 2504 +1736 30 2504 +1736 30 2504 +1736 30 2504 +1736 30 2504 +526 4 0 +529 0 0 +533 0 0 +538 0 0 +545 0 83 +554 0 215 +566 0 347 +566 0 459 +566 0 576 +566 0 697 +566 0 820 +566 0 946 +509 0 1100 +0 163 1355 +0 163 1516 +576 32 1641 +810 0 1779 +1213 0 1894 +1557 32 2019 +1516 388 2170 +317 1045 2344 +1373 568 2469 +1735 163 2505 +1735 163 2505 +1735 163 2505 +1735 163 2505 +1735 163 2505 +1735 163 2505 +1735 163 2505 +1735 163 2505 +1735 163 2505 +1735 163 2505 +490 144 0 +494 137 0 +498 127 0 +504 114 0 +511 96 83 +521 70 215 +534 34 347 +550 0 479 +550 0 591 +550 0 708 +550 0 829 +550 0 952 +491 52 1105 +0 295 1358 +0 295 1518 +591 164 1644 +761 0 1778 +1209 0 1896 +1555 164 2021 +1508 454 2170 +317 1066 2345 +1391 584 2469 +1734 295 2505 +1734 295 2505 +1734 295 2505 +1734 295 2505 +1734 295 2505 +1734 295 2505 +1734 295 2505 +1734 295 2505 +1734 295 2505 +1734 295 2505 +438 281 0 +441 276 0 +446 269 0 +452 259 0 +461 246 83 +472 227 215 +486 202 347 +505 166 479 +528 111 611 +528 111 723 +528 111 840 +528 111 961 +465 167 1111 +0 426 1362 +0 426 1520 +611 296 1648 +685 0 1777 +1204 111 1898 +1552 296 2024 +1498 528 2172 +317 1093 2347 +1405 655 2469 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +1732 426 2506 +438 417 0 +441 413 0 +446 408 0 +452 401 0 +461 391 83 +472 378 215 +486 360 347 +505 334 479 +528 298 611 +528 390 780 +528 390 884 +528 390 995 +465 420 1136 +0 570 1376 +0 559 1531 +611 465 1653 +688 180 1781 +1197 244 1902 +1529 428 2030 +1459 683 2178 +265 1128 2349 +1448 678 2469 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +438 552 0 +441 549 0 +446 545 0 +452 540 0 +461 533 83 +472 523 215 +486 510 347 +505 492 479 +528 466 611 +528 532 780 +528 606 937 +528 606 1037 +465 626 1167 +0 726 1395 +0 691 1544 +611 622 1662 +688 441 1786 +1211 422 1908 +1496 560 2038 +1403 831 2187 +186 1169 2352 +1499 706 2469 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +438 686 0 +441 684 0 +446 681 0 +452 677 0 +461 672 83 +472 665 215 +486 655 347 +505 643 479 +528 624 611 +528 671 780 +528 728 937 +528 793 1088 +465 806 1206 +0 876 1419 +0 823 1561 +611 773 1675 +688 651 1793 +1235 593 1916 +1448 692 2048 +1314 975 2199 +0 1212 2357 +1560 742 2469 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +441 854 85 +427 854 130 +432 852 185 +438 850 248 +447 846 322 +458 841 404 +473 835 496 +492 826 594 +516 814 700 +516 845 843 +516 884 983 +516 932 1121 +551 980 1257 +0 1029 1452 +0 983 1586 +630 938 1697 +697 873 1807 +1251 800 1930 +1381 849 2060 +1181 1116 2212 +0 1254 2365 +1619 811 2469 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +719 1144 968 +711 1144 975 +700 1144 984 +685 1144 996 +664 1144 1011 +635 1144 1030 +592 1144 1055 +529 1144 1086 +426 1144 1125 +426 1150 1168 +426 1170 1242 +426 1196 1325 +469 1224 1417 +681 1219 1512 +681 1190 1631 +741 1186 1751 +750 1205 1859 +1158 1153 1968 +1243 1131 2078 +1031 1271 2228 +914 1282 2369 +1608 1020 2470 +1781 1099 2512 +1781 1099 2512 +1781 1099 2512 +1781 1099 2512 +1781 1099 2512 +1781 1099 2512 +1781 1099 2512 +1781 1099 2512 +1781 1099 2512 +1781 1099 2512 +719 1398 1351 +711 1398 1354 +700 1398 1358 +685 1398 1363 +664 1398 1370 +635 1398 1379 +592 1398 1390 +529 1398 1406 +426 1398 1425 +426 1398 1442 +426 1398 1463 +426 1398 1491 +469 1409 1546 +681 1406 1619 +681 1387 1686 +741 1388 1796 +750 1416 1900 +1164 1366 2006 +1151 1350 2107 +878 1405 2243 +998 1362 2375 +1620 1201 2472 +1813 1283 2510 +1813 1283 2510 +1813 1283 2510 +1813 1283 2510 +1813 1283 2510 +1813 1283 2510 +1813 1283 2510 +1813 1283 2510 +1813 1283 2510 +1813 1283 2510 +1148 1563 1662 +1147 1564 1663 +1146 1564 1663 +1145 1565 1665 +1143 1565 1667 +1140 1566 1669 +1137 1568 1672 +1133 1569 1676 +1126 1572 1682 +1126 1569 1691 +1126 1567 1704 +1126 1567 1720 +1114 1567 1742 +1017 1569 1778 +1017 1561 1829 +1046 1552 1893 +1045 1557 1979 +1092 1536 2064 +1032 1537 2170 +810 1533 2268 +1205 1491 2382 +1680 1432 2474 +1841 1461 2509 +1841 1461 2509 +1841 1461 2509 +1841 1461 2509 +1841 1461 2509 +1841 1461 2509 +1841 1461 2509 +1841 1461 2509 +1841 1461 2509 +1841 1461 2509 +1481 1699 1851 +1480 1700 1852 +1478 1700 1853 +1476 1700 1855 +1473 1701 1857 +1470 1702 1859 +1465 1703 1863 +1458 1704 1867 +1449 1705 1873 +1448 1703 1880 +1448 1700 1888 +1448 1696 1899 +1445 1691 1913 +1423 1685 1934 +1423 1696 1979 +1383 1695 2019 +1396 1691 2067 +1278 1672 2126 +1188 1684 2221 +1246 1647 2296 +1529 1638 2386 +1793 1636 2474 +1901 1622 2511 +1901 1622 2511 +1901 1622 2511 +1901 1622 2511 +1901 1622 2511 +1901 1622 2511 +1901 1622 2511 +1901 1622 2511 +1901 1622 2511 +1901 1622 2511 +1805 1813 1975 +1805 1813 1975 +1805 1813 1976 +1804 1813 1977 +1803 1813 1978 +1802 1813 1979 +1800 1813 1982 +1798 1813 1984 +1796 1813 1988 +1797 1813 1992 +1793 1813 1998 +1787 1813 2007 +1777 1813 2018 +1763 1819 2033 +1745 1813 2049 +1744 1807 2077 +1710 1816 2126 +1718 1804 2166 +1664 1793 2234 +1690 1798 2306 +1770 1797 2390 +1871 1786 2475 +1974 1800 2514 +1974 1800 2514 +1974 1800 2514 +1974 1800 2514 +1974 1800 2514 +1974 1800 2514 +1974 1800 2514 +1974 1800 2514 +1974 1800 2514 +1974 1800 2514 +1968 1958 2031 +1968 1958 2031 +1967 1958 2032 +1967 1958 2032 +1966 1958 2033 +1965 1958 2034 +1964 1958 2036 +1963 1958 2038 +1961 1958 2040 +1960 1958 2043 +1958 1958 2048 +1955 1958 2054 +1953 1958 2061 +1945 1959 2068 +1939 1964 2081 +1934 1966 2107 +1928 1969 2157 +1905 1959 2189 +1920 1965 2239 +1893 1965 2317 +1933 1954 2393 +2043 1964 2481 +2104 1965 2515 +2104 1965 2515 +2104 1965 2515 +2104 1965 2515 +2104 1965 2515 +2104 1965 2515 +2104 1965 2515 +2104 1965 2515 +2104 1965 2515 +2104 1965 2515 +2122 2122 2070 +2122 2122 2070 +2122 2122 2071 +2122 2122 2071 +2122 2122 2071 +2123 2122 2071 +2123 2122 2072 +2124 2122 2072 +2124 2122 2073 +2124 2122 2076 +2124 2124 2080 +2124 2125 2086 +2124 2127 2093 +2119 2127 2101 +2119 2127 2110 +2120 2131 2130 +2116 2135 2169 +2108 2128 2204 +2113 2132 2254 +2124 2133 2316 +2148 2133 2397 +2216 2146 2485 +2260 2159 2522 +2260 2159 2522 +2260 2159 2522 +2260 2159 2522 +2260 2159 2522 +2260 2159 2522 +2260 2159 2522 +2260 2159 2522 +2260 2159 2522 +2260 2159 2522 +2370 2355 2124 +2370 2355 2124 +2370 2355 2124 +2370 2355 2125 +2370 2355 2125 +2370 2355 2126 +2371 2355 2126 +2371 2355 2127 +2371 2355 2129 +2371 2356 2131 +2370 2357 2133 +2370 2357 2137 +2371 2358 2143 +2370 2358 2146 +2369 2356 2148 +2370 2358 2161 +2373 2358 2193 +2372 2358 2227 +2376 2357 2273 +2388 2360 2337 +2411 2367 2406 +2465 2385 2499 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2680 2654 1962 +2680 2655 1962 +2681 2655 1963 +2681 2655 1964 +2681 2655 1966 +2681 2655 1968 +2681 2656 1970 +2681 2656 1974 +2681 2656 1972 +2681 2655 1970 +2680 2655 1969 +2680 2654 1966 +2679 2654 1967 +2679 2655 1987 +2677 2657 2008 +2677 2656 2029 +2675 2652 2050 +2677 2656 2121 +2681 2656 2208 +2688 2660 2306 +2695 2665 2407 +2715 2678 2527 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2713 2771 2430 +2713 2771 2430 +2713 2771 2430 +2714 2771 2430 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2711 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2430 +2713 2771 2430 +2713 2771 2430 +2714 2771 2430 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2711 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2430 +2713 2771 2430 +2713 2771 2430 +2714 2771 2430 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2711 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2430 +2713 2771 2430 +2713 2771 2430 +2714 2771 2430 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2711 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2430 +2713 2771 2430 +2713 2771 2430 +2714 2771 2430 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2711 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2430 +2713 2771 2430 +2713 2771 2430 +2714 2771 2430 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2711 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2430 +2713 2771 2430 +2713 2771 2430 +2714 2771 2430 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2711 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2430 +2713 2771 2430 +2713 2771 2430 +2714 2771 2430 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2711 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2430 +2713 2771 2430 +2713 2771 2430 +2714 2771 2430 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2711 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2771 2430 +2713 2771 2430 +2713 2771 2430 +2714 2771 2430 +2714 2771 2431 +2714 2771 2431 +2714 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2431 +2715 2771 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2711 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2694 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +737 0 0 +737 0 0 +737 0 0 +737 0 0 +737 0 28 +737 0 152 +737 0 280 +737 0 408 +737 0 537 +737 0 667 +737 0 797 +737 0 928 +703 0 1088 +438 0 1361 +394 0 1525 +667 0 1634 +977 0 1782 +1248 0 1893 +1561 0 2015 +1525 291 2172 +265 987 2341 +1385 462 2468 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +734 0 0 +736 0 0 +736 0 0 +736 0 0 +736 0 36 +736 0 159 +736 0 285 +736 0 412 +736 0 540 +736 0 669 +736 0 799 +736 0 930 +697 0 1089 +427 0 1361 +381 0 1525 +669 0 1635 +971 0 1782 +1248 0 1893 +1561 0 2015 +1524 306 2173 +265 992 2341 +1388 465 2468 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +729 0 0 +730 0 0 +733 0 0 +733 0 0 +733 0 48 +733 0 168 +733 0 291 +733 0 417 +733 0 544 +733 0 672 +733 0 801 +733 0 931 +694 0 1090 +412 0 1362 +365 0 1526 +672 0 1635 +963 0 1782 +1247 0 1894 +1560 0 2016 +1522 325 2173 +265 998 2341 +1392 470 2468 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +1740 0 2504 +722 0 0 +723 0 0 +726 0 0 +730 0 0 +730 0 63 +730 0 180 +730 0 300 +730 0 424 +730 0 549 +730 0 676 +730 0 804 +730 0 933 +690 0 1091 +391 0 1363 +341 0 1526 +676 0 1636 +953 0 1781 +1245 0 1894 +1560 0 2017 +1519 349 2173 +265 1005 2342 +1398 476 2468 +1739 0 2504 +1739 0 2504 +1739 0 2504 +1739 0 2504 +1739 0 2504 +1739 0 2504 +1739 0 2504 +1739 0 2504 +1739 0 2504 +1739 0 2504 +712 0 0 +714 0 0 +717 0 0 +720 0 0 +725 0 83 +725 0 195 +725 0 312 +725 0 433 +725 0 556 +725 0 681 +725 0 808 +725 0 936 +685 0 1093 +361 0 1364 +307 0 1527 +681 0 1637 +939 0 1781 +1244 0 1895 +1559 0 2018 +1516 380 2173 +265 1015 2342 +1405 484 2468 +1739 0 2505 +1739 0 2505 +1739 0 2505 +1739 0 2505 +1739 0 2505 +1739 0 2505 +1739 0 2505 +1739 0 2505 +1739 0 2505 +1739 0 2505 +699 0 0 +701 0 0 +704 0 0 +708 0 0 +712 0 83 +719 0 215 +719 0 327 +719 0 444 +719 0 564 +719 0 688 +719 0 813 +719 0 940 +678 0 1096 +317 30 1365 +258 30 1528 +688 0 1639 +918 0 1780 +1242 0 1896 +1558 0 2019 +1512 419 2174 +265 1028 2343 +1415 494 2468 +1738 30 2505 +1738 30 2505 +1738 30 2505 +1738 30 2505 +1738 30 2505 +1738 30 2505 +1738 30 2505 +1738 30 2505 +1738 30 2505 +1738 30 2505 +681 4 0 +683 0 0 +686 0 0 +690 0 0 +695 0 83 +702 0 215 +710 0 347 +710 0 459 +710 0 576 +710 0 697 +710 0 820 +710 0 946 +669 0 1100 +251 163 1367 +182 163 1530 +697 32 1641 +890 0 1779 +1239 0 1897 +1557 32 2021 +1506 465 2175 +265 1045 2344 +1427 508 2468 +1737 163 2505 +1737 163 2505 +1737 163 2505 +1737 163 2505 +1737 163 2505 +1737 163 2505 +1737 163 2505 +1737 163 2505 +1737 163 2505 +1737 163 2505 +656 144 0 +658 137 0 +661 127 0 +665 114 0 +670 96 83 +678 70 215 +686 34 347 +699 0 479 +699 0 591 +699 0 708 +699 0 829 +699 0 952 +656 52 1105 +145 295 1370 +56 295 1531 +708 164 1644 +849 0 1778 +1236 0 1899 +1555 164 2023 +1498 521 2175 +265 1066 2345 +1443 526 2468 +1736 295 2505 +1736 295 2505 +1736 295 2505 +1736 295 2505 +1736 295 2505 +1736 295 2505 +1736 295 2505 +1736 295 2505 +1736 295 2505 +1736 295 2505 +620 281 0 +623 276 0 +626 269 0 +630 259 0 +636 246 83 +643 227 215 +653 202 347 +666 166 479 +683 111 611 +683 111 723 +683 111 840 +683 111 961 +639 167 1111 +0 426 1374 +0 426 1534 +723 296 1648 +788 0 1777 +1231 111 1901 +1552 296 2027 +1487 586 2177 +265 1093 2347 +1456 606 2469 +1735 426 2506 +1735 426 2506 +1735 426 2506 +1735 426 2506 +1735 426 2506 +1735 426 2506 +1735 426 2506 +1735 426 2506 +1735 426 2506 +1735 426 2506 +567 417 0 +570 413 0 +573 408 0 +578 401 0 +585 391 83 +593 378 215 +604 360 347 +618 334 479 +637 298 611 +660 244 743 +660 244 856 +660 244 973 +614 286 1119 +0 536 1379 +0 559 1537 +743 428 1653 +797 104 1780 +1224 244 1904 +1549 428 2031 +1472 660 2178 +265 1128 2349 +1472 699 2469 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +1732 559 2507 +567 552 0 +570 549 0 +573 545 0 +578 540 0 +585 533 83 +593 523 215 +604 510 347 +618 492 479 +637 466 611 +660 430 743 +660 521 912 +660 521 1017 +614 545 1152 +0 703 1397 +0 691 1550 +743 597 1662 +797 399 1786 +1238 422 1910 +1518 560 2039 +1417 815 2187 +186 1169 2352 +1521 727 2469 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +567 686 0 +570 684 0 +573 681 0 +578 677 0 +585 672 83 +593 665 215 +604 655 347 +618 643 479 +637 624 611 +660 599 743 +660 664 912 +660 739 1070 +614 754 1192 +0 860 1421 +0 823 1568 +743 755 1675 +797 625 1792 +1261 593 1918 +1472 692 2049 +1331 963 2199 +0 1212 2357 +1579 761 2469 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +569 854 85 +559 854 130 +563 852 185 +568 850 248 +574 846 322 +583 841 404 +594 835 496 +608 826 594 +627 814 700 +651 797 811 +651 841 960 +651 893 1104 +678 945 1245 +0 1017 1454 +0 983 1592 +758 925 1697 +804 857 1807 +1275 800 1931 +1408 849 2061 +1203 1108 2212 +0 1254 2365 +1635 828 2469 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +834 1134 954 +827 1134 961 +819 1134 970 +808 1134 982 +792 1134 998 +770 1134 1018 +739 1134 1043 +693 1134 1075 +625 1134 1115 +570 1131 1163 +570 1152 1237 +570 1179 1321 +601 1208 1413 +800 1208 1514 +767 1185 1636 +863 1174 1754 +863 1195 1861 +1192 1157 1970 +1257 1131 2078 +1043 1269 2229 +975 1275 2368 +1616 1030 2470 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +857 1389 1341 +851 1389 1344 +843 1389 1348 +832 1389 1353 +817 1389 1360 +797 1389 1369 +767 1389 1381 +725 1389 1397 +661 1389 1417 +559 1389 1442 +559 1389 1463 +559 1389 1491 +591 1400 1546 +794 1400 1623 +813 1382 1691 +874 1379 1799 +874 1408 1902 +1201 1371 2008 +1151 1350 2106 +878 1405 2245 +1078 1352 2375 +1623 1208 2472 +1819 1270 2510 +1819 1270 2510 +1819 1270 2510 +1819 1270 2510 +1819 1270 2510 +1819 1270 2510 +1819 1270 2510 +1819 1270 2510 +1819 1270 2510 +1819 1270 2510 +1214 1557 1667 +1213 1557 1668 +1212 1558 1669 +1211 1558 1670 +1209 1559 1672 +1207 1560 1674 +1205 1561 1677 +1201 1563 1681 +1195 1565 1686 +1188 1569 1694 +1188 1567 1706 +1188 1567 1722 +1177 1567 1744 +1072 1567 1776 +1057 1558 1825 +1094 1552 1894 +1094 1557 1981 +1142 1536 2063 +1061 1537 2170 +810 1536 2268 +1232 1487 2382 +1680 1427 2474 +1839 1457 2509 +1839 1457 2509 +1839 1457 2509 +1839 1457 2509 +1839 1457 2509 +1839 1457 2509 +1839 1457 2509 +1839 1457 2509 +1839 1457 2509 +1839 1457 2509 +1512 1695 1855 +1511 1695 1855 +1510 1695 1856 +1508 1696 1858 +1505 1696 1860 +1502 1697 1862 +1497 1698 1866 +1491 1699 1870 +1482 1701 1876 +1478 1703 1881 +1478 1700 1889 +1478 1696 1900 +1475 1691 1914 +1446 1684 1934 +1440 1693 1977 +1405 1695 2020 +1418 1691 2069 +1312 1672 2125 +1209 1684 2221 +1248 1649 2296 +1541 1636 2386 +1794 1633 2475 +1900 1619 2511 +1900 1619 2511 +1900 1619 2511 +1900 1619 2511 +1900 1619 2511 +1900 1619 2511 +1900 1619 2511 +1900 1619 2511 +1900 1619 2511 +1900 1619 2511 +1813 1811 1973 +1812 1811 1974 +1812 1811 1975 +1811 1811 1976 +1810 1811 1977 +1809 1811 1978 +1808 1811 1981 +1806 1811 1983 +1803 1811 1987 +1799 1811 1992 +1795 1811 1998 +1789 1811 2007 +1779 1812 2018 +1767 1817 2033 +1749 1812 2048 +1751 1809 2076 +1717 1818 2125 +1722 1802 2166 +1667 1793 2234 +1699 1800 2306 +1776 1797 2391 +1871 1786 2475 +1978 1800 2515 +1978 1800 2515 +1978 1800 2515 +1978 1800 2515 +1978 1800 2515 +1978 1800 2515 +1978 1800 2515 +1978 1800 2515 +1978 1800 2515 +1978 1800 2515 +1972 1958 2032 +1972 1958 2033 +1971 1958 2033 +1971 1958 2034 +1970 1958 2034 +1969 1958 2036 +1968 1958 2037 +1967 1958 2039 +1965 1958 2041 +1962 1958 2045 +1961 1958 2049 +1958 1958 2055 +1955 1958 2062 +1947 1958 2069 +1940 1963 2081 +1937 1965 2105 +1931 1968 2155 +1905 1958 2189 +1920 1964 2238 +1898 1964 2316 +1934 1954 2393 +2043 1964 2481 +2108 1964 2515 +2108 1964 2515 +2108 1964 2515 +2108 1964 2515 +2108 1964 2515 +2108 1964 2515 +2108 1964 2515 +2108 1964 2515 +2108 1964 2515 +2108 1964 2515 +2123 2122 2071 +2123 2122 2071 +2123 2122 2071 +2123 2122 2072 +2124 2122 2072 +2124 2122 2072 +2124 2122 2073 +2125 2122 2073 +2125 2122 2074 +2126 2122 2075 +2126 2124 2079 +2126 2125 2085 +2125 2127 2092 +2119 2127 2101 +2119 2127 2110 +2122 2131 2129 +2118 2135 2168 +2110 2127 2203 +2114 2132 2254 +2126 2132 2316 +2148 2134 2399 +2218 2147 2485 +2259 2159 2522 +2259 2159 2522 +2259 2159 2522 +2259 2159 2522 +2259 2159 2522 +2259 2159 2522 +2259 2159 2522 +2259 2159 2522 +2259 2159 2522 +2259 2159 2522 +2370 2355 2124 +2370 2355 2124 +2370 2355 2124 +2370 2355 2125 +2370 2355 2125 +2370 2355 2126 +2371 2355 2126 +2371 2355 2127 +2371 2355 2129 +2372 2355 2131 +2371 2356 2133 +2372 2357 2137 +2372 2358 2143 +2371 2358 2146 +2369 2356 2148 +2370 2358 2160 +2373 2358 2193 +2373 2358 2228 +2377 2357 2273 +2391 2362 2337 +2412 2367 2407 +2466 2386 2499 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2496 2392 2532 +2680 2654 1961 +2680 2654 1961 +2680 2654 1962 +2680 2654 1963 +2680 2655 1965 +2680 2655 1966 +2681 2655 1969 +2681 2656 1973 +2681 2655 1970 +2680 2654 1966 +2680 2654 1965 +2679 2653 1962 +2679 2653 1963 +2678 2655 1982 +2677 2657 2003 +2678 2657 2033 +2676 2653 2053 +2678 2656 2122 +2681 2656 2208 +2688 2660 2306 +2695 2665 2407 +2715 2678 2527 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2724 2684 2577 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2714 2770 2431 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2712 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2695 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2714 2770 2431 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2712 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2695 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2714 2770 2431 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2712 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2695 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2714 2770 2431 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2712 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2695 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2714 2770 2431 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2712 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2695 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2714 2770 2431 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2712 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2695 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2714 2770 2431 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2712 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2695 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2714 2770 2431 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2712 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2695 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2714 2770 2431 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2712 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2695 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2714 2770 2431 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2715 2770 2435 +2716 2769 2439 +2714 2769 2444 +2711 2772 2462 +2712 2773 2481 +2714 2774 2521 +2713 2773 2553 +2717 2777 2616 +2723 2785 2695 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +871 0 0 +871 0 0 +871 0 0 +871 0 0 +871 0 28 +871 0 152 +871 0 280 +871 0 408 +871 0 537 +871 0 667 +871 0 797 +871 0 928 +845 0 1088 +668 0 1361 +535 0 1543 +769 0 1643 +1048 0 1782 +1313 0 1897 +1561 0 2018 +1511 412 2179 +186 987 2341 +1454 356 2467 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +868 0 0 +869 0 0 +869 0 0 +869 0 0 +869 0 36 +869 0 159 +869 0 285 +869 0 412 +869 0 540 +869 0 669 +869 0 799 +869 0 930 +841 0 1089 +662 0 1361 +526 0 1543 +770 0 1643 +1043 0 1782 +1313 0 1897 +1561 0 2018 +1510 423 2179 +186 992 2341 +1457 360 2467 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +864 0 0 +866 0 0 +868 0 0 +868 0 0 +868 0 48 +868 0 168 +868 0 291 +868 0 417 +868 0 544 +868 0 672 +868 0 801 +868 0 931 +839 0 1090 +653 0 1362 +513 0 1544 +773 0 1644 +1036 0 1782 +1312 0 1897 +1560 0 2019 +1508 438 2179 +186 998 2341 +1461 366 2467 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +1743 0 2505 +859 0 0 +861 0 0 +862 0 0 +865 0 0 +865 0 63 +865 0 180 +865 0 300 +865 0 424 +865 0 549 +865 0 676 +865 0 804 +865 0 933 +836 0 1091 +640 0 1363 +496 0 1544 +776 0 1645 +1027 0 1781 +1311 0 1898 +1560 0 2020 +1505 457 2180 +186 1005 2342 +1465 373 2467 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +852 0 0 +854 0 0 +856 0 0 +858 0 0 +862 0 83 +862 0 195 +862 0 312 +862 0 433 +862 0 556 +862 0 681 +862 0 808 +862 0 936 +833 0 1093 +623 0 1364 +473 0 1545 +780 0 1646 +1015 0 1781 +1310 0 1899 +1559 0 2021 +1502 482 2180 +186 1015 2342 +1472 383 2467 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +1742 0 2505 +843 0 0 +844 0 0 +846 0 0 +849 0 0 +852 0 83 +857 0 215 +857 0 327 +857 0 444 +857 0 564 +857 0 688 +857 0 813 +857 0 940 +827 0 1096 +599 30 1365 +439 30 1546 +785 0 1648 +998 0 1780 +1308 0 1900 +1558 0 2022 +1497 512 2180 +186 1028 2343 +1480 397 2467 +1741 30 2505 +1741 30 2505 +1741 30 2505 +1741 30 2505 +1741 30 2505 +1741 30 2505 +1741 30 2505 +1741 30 2505 +1741 30 2505 +1741 30 2505 +830 4 0 +831 0 0 +833 0 0 +836 0 0 +839 0 83 +844 0 215 +851 0 347 +851 0 459 +851 0 576 +851 0 697 +851 0 820 +851 0 946 +821 0 1100 +565 163 1367 +390 163 1547 +793 32 1650 +974 0 1779 +1306 0 1901 +1557 32 2024 +1491 551 2181 +186 1045 2344 +1491 413 2467 +1740 163 2506 +1740 163 2506 +1740 163 2506 +1740 163 2506 +1740 163 2506 +1740 163 2506 +1740 163 2506 +1740 163 2506 +1740 163 2506 +1740 163 2506 +812 144 0 +813 137 0 +815 127 0 +818 114 0 +822 96 83 +827 70 215 +834 34 347 +842 0 479 +842 0 591 +842 0 708 +842 0 829 +842 0 952 +812 52 1105 +515 295 1370 +314 295 1549 +802 164 1653 +940 0 1778 +1302 0 1903 +1555 164 2027 +1483 597 2182 +186 1066 2345 +1505 435 2467 +1739 295 2506 +1739 295 2506 +1739 295 2506 +1739 295 2506 +1739 295 2506 +1739 295 2506 +1739 295 2506 +1739 295 2506 +1739 295 2506 +1739 295 2506 +787 281 0 +788 276 0 +790 269 0 +793 259 0 +797 246 83 +803 227 215 +809 202 347 +819 166 479 +831 111 611 +831 111 723 +831 111 840 +831 111 961 +799 167 1111 +438 426 1374 +188 426 1552 +814 296 1657 +891 0 1777 +1298 111 1905 +1552 296 2030 +1472 653 2183 +186 1093 2347 +1516 532 2467 +1738 426 2507 +1738 426 2507 +1738 426 2507 +1738 426 2507 +1738 426 2507 +1738 426 2507 +1738 426 2507 +1738 426 2507 +1738 426 2507 +1738 426 2507 +750 417 0 +752 413 0 +755 408 0 +758 401 0 +762 391 83 +768 378 215 +775 360 347 +785 334 479 +798 298 611 +815 244 743 +815 244 856 +815 244 973 +782 286 1119 +345 536 1379 +0 559 1555 +831 428 1662 +899 104 1780 +1292 244 1908 +1549 428 2034 +1456 718 2185 +186 1128 2349 +1530 640 2468 +1736 559 2508 +1736 559 2508 +1736 559 2508 +1736 559 2508 +1736 559 2508 +1736 559 2508 +1736 559 2508 +1736 559 2508 +1736 559 2508 +1736 559 2508 +697 552 0 +699 549 0 +702 545 0 +705 540 0 +710 533 83 +717 523 215 +725 510 347 +736 492 479 +750 466 611 +769 430 743 +792 376 875 +792 376 988 +758 407 1131 +280 611 1385 +0 691 1559 +799 583 1666 +916 342 1786 +1257 324 1907 +1545 560 2040 +1434 792 2187 +186 1169 2352 +1547 752 2469 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +1732 691 2509 +697 686 0 +699 684 0 +702 681 0 +705 677 0 +710 672 83 +717 665 215 +725 655 347 +736 643 479 +750 624 611 +769 599 743 +792 562 875 +792 654 1044 +758 672 1172 +280 796 1409 +0 823 1576 +799 745 1680 +916 591 1792 +1279 529 1915 +1502 692 2050 +1352 947 2199 +0 1212 2357 +1603 785 2469 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +699 854 85 +691 854 130 +694 852 185 +698 850 248 +702 846 322 +709 841 404 +717 835 496 +728 826 594 +743 814 700 +762 797 811 +786 774 927 +786 834 1081 +805 893 1228 +403 973 1443 +0 983 1599 +812 918 1701 +921 837 1807 +1293 760 1928 +1442 849 2062 +1230 1096 2212 +0 1254 2365 +1657 848 2469 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +910 1134 954 +905 1134 961 +898 1134 970 +889 1134 982 +875 1134 998 +857 1134 1018 +832 1134 1043 +795 1134 1075 +741 1134 1115 +699 1131 1163 +726 1120 1220 +726 1149 1307 +748 1179 1402 +901 1179 1504 +767 1185 1644 +906 1170 1757 +968 1186 1861 +1214 1140 1967 +1304 1131 2079 +1082 1261 2229 +975 1275 2368 +1638 1044 2470 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +993 1376 1327 +989 1376 1330 +983 1376 1334 +975 1376 1340 +964 1376 1347 +949 1376 1356 +928 1376 1368 +899 1376 1385 +857 1376 1405 +793 1376 1431 +691 1376 1463 +691 1376 1491 +715 1388 1546 +877 1388 1623 +945 1376 1697 +997 1370 1804 +1006 1396 1906 +1223 1377 2010 +1151 1350 2105 +878 1405 2247 +1167 1339 2373 +1626 1218 2473 +1826 1254 2510 +1826 1254 2510 +1826 1254 2510 +1826 1254 2510 +1826 1254 2510 +1826 1254 2510 +1826 1254 2510 +1826 1254 2510 +1826 1254 2510 +1826 1254 2510 +1284 1548 1666 +1284 1549 1666 +1283 1549 1667 +1282 1550 1668 +1281 1550 1670 +1279 1551 1673 +1276 1553 1675 +1273 1555 1680 +1269 1557 1685 +1263 1560 1692 +1239 1562 1707 +1239 1562 1723 +1229 1562 1745 +1136 1562 1777 +1127 1554 1826 +1162 1550 1897 +1168 1552 1984 +1181 1539 2065 +1075 1537 2169 +810 1538 2270 +1285 1479 2381 +1681 1429 2475 +1842 1448 2509 +1842 1448 2509 +1842 1448 2509 +1842 1448 2509 +1842 1448 2509 +1842 1448 2509 +1842 1448 2509 +1842 1448 2509 +1842 1448 2509 +1842 1448 2509 +1553 1689 1859 +1552 1689 1860 +1551 1689 1861 +1549 1690 1862 +1547 1690 1864 +1544 1691 1867 +1539 1692 1870 +1534 1693 1874 +1526 1695 1880 +1522 1697 1885 +1517 1700 1891 +1517 1696 1902 +1515 1691 1916 +1488 1684 1935 +1461 1690 1974 +1430 1693 2019 +1446 1691 2070 +1360 1672 2128 +1236 1684 2221 +1248 1653 2296 +1559 1632 2386 +1794 1630 2475 +1898 1615 2511 +1898 1615 2511 +1898 1615 2511 +1898 1615 2511 +1898 1615 2511 +1898 1615 2511 +1898 1615 2511 +1898 1615 2511 +1898 1615 2511 +1898 1615 2511 +1821 1809 1972 +1820 1809 1972 +1820 1809 1973 +1819 1809 1974 +1818 1809 1975 +1817 1809 1977 +1816 1809 1979 +1813 1809 1982 +1811 1809 1986 +1807 1809 1990 +1800 1811 1998 +1793 1811 2007 +1784 1811 2018 +1772 1817 2033 +1754 1811 2049 +1756 1809 2076 +1721 1816 2124 +1728 1804 2168 +1675 1795 2234 +1712 1800 2308 +1779 1799 2391 +1880 1789 2475 +1982 1798 2515 +1982 1798 2515 +1982 1798 2515 +1982 1798 2515 +1982 1798 2515 +1982 1798 2515 +1982 1798 2515 +1982 1798 2515 +1982 1798 2515 +1982 1798 2515 +1977 1958 2034 +1977 1958 2034 +1976 1958 2035 +1976 1958 2035 +1975 1958 2036 +1974 1958 2037 +1973 1958 2038 +1972 1958 2040 +1970 1958 2043 +1968 1958 2046 +1964 1958 2050 +1962 1958 2056 +1959 1958 2063 +1950 1958 2070 +1942 1961 2081 +1940 1963 2103 +1935 1966 2152 +1912 1959 2190 +1920 1962 2236 +1904 1962 2314 +1936 1954 2394 +2043 1964 2481 +2112 1962 2514 +2112 1962 2514 +2112 1962 2514 +2112 1962 2514 +2112 1962 2514 +2112 1962 2514 +2112 1962 2514 +2112 1962 2514 +2112 1962 2514 +2112 1962 2514 +2124 2124 2073 +2124 2124 2073 +2124 2124 2073 +2125 2124 2073 +2125 2124 2073 +2125 2124 2074 +2125 2124 2074 +2126 2124 2075 +2126 2124 2076 +2127 2124 2076 +2129 2124 2078 +2129 2125 2083 +2128 2127 2090 +2122 2127 2100 +2119 2127 2110 +2123 2131 2129 +2120 2135 2167 +2113 2128 2205 +2115 2130 2253 +2128 2131 2316 +2148 2135 2400 +2220 2148 2485 +2258 2159 2521 +2258 2159 2521 +2258 2159 2521 +2258 2159 2521 +2258 2159 2521 +2258 2159 2521 +2258 2159 2521 +2258 2159 2521 +2258 2159 2521 +2258 2159 2521 +2370 2355 2124 +2370 2355 2124 +2370 2355 2124 +2370 2355 2125 +2370 2355 2125 +2370 2355 2126 +2371 2355 2126 +2371 2355 2127 +2371 2355 2129 +2372 2355 2131 +2372 2355 2133 +2373 2356 2137 +2374 2357 2143 +2372 2357 2146 +2369 2356 2148 +2370 2358 2159 +2374 2358 2192 +2374 2358 2228 +2379 2358 2273 +2393 2364 2337 +2413 2367 2408 +2467 2387 2498 +2496 2393 2533 +2496 2393 2533 +2496 2393 2533 +2496 2393 2533 +2496 2393 2533 +2496 2393 2533 +2496 2393 2533 +2496 2393 2533 +2496 2393 2533 +2496 2393 2533 +2680 2654 1959 +2680 2654 1959 +2680 2654 1960 +2680 2654 1961 +2680 2654 1963 +2680 2655 1965 +2680 2655 1968 +2680 2655 1971 +2680 2655 1969 +2680 2654 1965 +2679 2653 1959 +2679 2652 1957 +2678 2652 1958 +2678 2654 1977 +2677 2657 1996 +2678 2657 2031 +2677 2654 2057 +2678 2657 2122 +2682 2656 2208 +2688 2660 2307 +2695 2665 2407 +2715 2678 2527 +2725 2684 2578 +2725 2684 2578 +2725 2684 2578 +2725 2684 2578 +2725 2684 2578 +2725 2684 2578 +2725 2684 2578 +2725 2684 2578 +2725 2684 2578 +2725 2684 2578 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2715 2770 2430 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2712 2773 2483 +2714 2775 2522 +2712 2773 2553 +2717 2777 2616 +2724 2786 2697 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2715 2770 2430 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2712 2773 2483 +2714 2775 2522 +2712 2773 2553 +2717 2777 2616 +2724 2786 2697 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2715 2770 2430 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2712 2773 2483 +2714 2775 2522 +2712 2773 2553 +2717 2777 2616 +2724 2786 2697 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2715 2770 2430 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2712 2773 2483 +2714 2775 2522 +2712 2773 2553 +2717 2777 2616 +2724 2786 2697 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2715 2770 2430 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2712 2773 2483 +2714 2775 2522 +2712 2773 2553 +2717 2777 2616 +2724 2786 2697 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2715 2770 2430 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2712 2773 2483 +2714 2775 2522 +2712 2773 2553 +2717 2777 2616 +2724 2786 2697 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2715 2770 2430 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2712 2773 2483 +2714 2775 2522 +2712 2773 2553 +2717 2777 2616 +2724 2786 2697 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2715 2770 2430 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2712 2773 2483 +2714 2775 2522 +2712 2773 2553 +2717 2777 2616 +2724 2786 2697 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2715 2770 2430 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2712 2773 2483 +2714 2775 2522 +2712 2773 2553 +2717 2777 2616 +2724 2786 2697 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2430 +2713 2770 2430 +2714 2770 2430 +2714 2770 2430 +2715 2770 2430 +2715 2770 2431 +2716 2770 2431 +2716 2770 2431 +2716 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2712 2773 2483 +2714 2775 2522 +2712 2773 2553 +2717 2777 2616 +2724 2786 2697 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +1004 0 0 +1004 0 0 +1004 0 0 +1004 0 0 +1004 0 28 +1004 0 152 +1004 0 280 +1004 0 408 +1004 0 537 +1004 0 667 +1004 0 797 +1004 0 928 +985 0 1088 +862 0 1361 +674 0 1566 +856 0 1661 +1128 0 1782 +1394 0 1902 +1561 0 2022 +1491 535 2188 +220 987 2343 +1533 158 2465 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1002 0 0 +1003 0 0 +1003 0 0 +1003 0 0 +1003 0 36 +1003 0 159 +1003 0 285 +1003 0 412 +1003 0 540 +1003 0 669 +1003 0 799 +1003 0 930 +982 0 1089 +858 0 1361 +667 0 1566 +858 0 1662 +1124 0 1782 +1393 0 1903 +1561 0 2022 +1490 544 2188 +220 992 2343 +1536 164 2465 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +999 0 0 +1000 0 0 +1002 0 0 +1002 0 0 +1002 0 48 +1002 0 168 +1002 0 291 +1002 0 417 +1002 0 544 +1002 0 672 +1002 0 801 +1002 0 931 +981 0 1090 +852 0 1362 +658 0 1567 +860 0 1662 +1118 0 1782 +1393 0 1903 +1560 0 2023 +1488 556 2188 +220 998 2343 +1539 173 2465 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +1747 0 2505 +996 0 0 +996 0 0 +998 0 0 +1000 0 0 +1000 0 63 +1000 0 180 +1000 0 300 +1000 0 424 +1000 0 549 +1000 0 676 +1000 0 804 +1000 0 933 +979 0 1091 +844 0 1363 +645 0 1567 +862 0 1663 +1110 0 1781 +1392 0 1903 +1560 0 2024 +1486 570 2188 +220 1005 2344 +1543 185 2465 +1746 0 2505 +1746 0 2505 +1746 0 2505 +1746 0 2505 +1746 0 2505 +1746 0 2505 +1746 0 2505 +1746 0 2505 +1746 0 2505 +1746 0 2505 +990 0 0 +991 0 0 +993 0 0 +995 0 0 +997 0 83 +997 0 195 +997 0 312 +997 0 433 +997 0 556 +997 0 681 +997 0 808 +997 0 936 +976 0 1093 +833 0 1364 +629 0 1568 +866 0 1664 +1100 0 1781 +1391 0 1904 +1559 0 2025 +1482 590 2189 +220 1015 2344 +1548 200 2465 +1746 0 2506 +1746 0 2506 +1746 0 2506 +1746 0 2506 +1746 0 2506 +1746 0 2506 +1746 0 2506 +1746 0 2506 +1746 0 2506 +1746 0 2506 +983 0 0 +985 0 0 +986 0 0 +988 0 0 +991 0 83 +994 0 215 +994 0 327 +994 0 444 +994 0 564 +994 0 688 +994 0 813 +994 0 940 +973 0 1096 +819 30 1365 +605 30 1569 +871 0 1666 +1086 0 1780 +1390 0 1905 +1558 0 2026 +1477 614 2189 +220 1028 2345 +1555 219 2465 +1745 30 2506 +1745 30 2506 +1745 30 2506 +1745 30 2506 +1745 30 2506 +1745 30 2506 +1745 30 2506 +1745 30 2506 +1745 30 2506 +1745 30 2506 +974 4 0 +975 0 0 +977 0 0 +979 0 0 +981 0 83 +985 0 215 +989 0 347 +989 0 459 +989 0 576 +989 0 697 +989 0 820 +989 0 946 +968 0 1100 +798 163 1367 +571 163 1570 +876 32 1668 +1067 0 1779 +1388 0 1906 +1557 32 2028 +1471 645 2190 +220 1045 2346 +1564 244 2465 +1744 163 2506 +1744 163 2506 +1744 163 2506 +1744 163 2506 +1744 163 2506 +1744 163 2506 +1744 163 2506 +1744 163 2506 +1744 163 2506 +1744 163 2506 +961 144 0 +962 137 0 +963 127 0 +966 114 0 +968 96 83 +972 70 215 +977 34 347 +983 0 479 +983 0 591 +983 0 708 +983 0 829 +983 0 952 +961 52 1105 +769 295 1370 +522 295 1572 +884 164 1671 +1039 0 1778 +1385 0 1908 +1555 164 2031 +1462 683 2191 +220 1066 2347 +1576 275 2465 +1743 295 2507 +1743 295 2507 +1743 295 2507 +1743 295 2507 +1743 295 2507 +1743 295 2507 +1743 295 2507 +1743 295 2507 +1743 295 2507 +1743 295 2507 +943 281 0 +944 276 0 +946 269 0 +948 259 0 +951 246 83 +955 227 215 +959 202 347 +966 166 479 +975 111 611 +975 111 723 +975 111 840 +975 111 961 +952 167 1111 +726 426 1374 +446 426 1574 +895 296 1674 +1000 0 1777 +1382 111 1910 +1552 296 2034 +1450 729 2192 +220 1093 2349 +1586 407 2466 +1741 426 2508 +1741 426 2508 +1741 426 2508 +1741 426 2508 +1741 426 2508 +1741 426 2508 +1741 426 2508 +1741 426 2508 +1741 426 2508 +1741 426 2508 +917 417 0 +919 413 0 +920 408 0 +923 401 0 +926 391 83 +930 378 215 +935 360 347 +942 334 479 +951 298 611 +963 244 743 +963 244 856 +963 244 973 +940 286 1119 +679 536 1379 +320 559 1577 +908 428 1679 +1006 104 1780 +1377 244 1913 +1549 428 2038 +1434 785 2194 +220 1128 2351 +1598 544 2467 +1739 559 2508 +1739 559 2508 +1739 559 2508 +1739 559 2508 +1739 559 2508 +1739 559 2508 +1739 559 2508 +1739 559 2508 +1739 559 2508 +1739 559 2508 +881 552 0 +883 549 0 +884 545 0 +887 540 0 +890 533 83 +894 523 215 +900 510 347 +908 492 479 +917 466 611 +930 430 743 +947 376 875 +947 376 988 +923 407 1131 +649 611 1385 +67 691 1581 +882 583 1684 +1020 342 1786 +1348 324 1912 +1545 560 2044 +1411 850 2196 +220 1169 2354 +1613 680 2468 +1736 691 2509 +1736 691 2509 +1736 691 2509 +1736 691 2509 +1736 691 2509 +1736 691 2509 +1736 691 2509 +1736 691 2509 +1736 691 2509 +1736 691 2509 +828 686 0 +829 684 0 +831 681 0 +834 677 0 +838 672 83 +842 665 215 +849 655 347 +857 643 479 +868 624 611 +883 599 743 +901 562 875 +925 508 1007 +899 532 1145 +605 694 1393 +0 823 1587 +799 745 1688 +1039 540 1792 +1299 403 1909 +1539 692 2052 +1379 925 2199 +0 1212 2357 +1633 815 2469 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +1732 823 2511 +829 854 85 +823 854 130 +825 852 185 +828 850 248 +832 846 322 +837 841 404 +843 835 496 +852 826 594 +863 814 700 +877 797 811 +896 774 927 +920 741 1047 +934 812 1203 +669 906 1428 +0 983 1610 +812 918 1709 +1043 809 1807 +1313 689 1923 +1484 849 2064 +1265 1080 2212 +0 1254 2365 +1683 875 2469 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +996 1134 954 +992 1134 961 +986 1134 970 +979 1134 982 +968 1134 998 +953 1134 1018 +932 1134 1043 +903 1134 1075 +861 1134 1115 +829 1131 1163 +850 1120 1220 +876 1105 1286 +892 1138 1385 +1008 1138 1491 +767 1185 1653 +906 1170 1765 +1078 1173 1861 +1237 1110 1962 +1360 1131 2081 +1129 1250 2229 +975 1275 2368 +1666 1061 2470 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1129 1359 1308 +1126 1359 1311 +1121 1359 1315 +1115 1359 1321 +1107 1359 1328 +1097 1359 1338 +1082 1359 1351 +1061 1359 1367 +1032 1359 1389 +989 1359 1416 +926 1359 1449 +823 1359 1491 +841 1371 1546 +969 1371 1623 +1077 1367 1705 +1117 1361 1811 +1138 1380 1911 +1246 1386 2012 +1151 1350 2103 +878 1405 2249 +1204 1332 2374 +1631 1230 2474 +1835 1230 2510 +1835 1230 2510 +1835 1230 2510 +1835 1230 2510 +1835 1230 2510 +1835 1230 2510 +1835 1230 2510 +1835 1230 2510 +1835 1230 2510 +1835 1230 2510 +1361 1536 1656 +1360 1537 1657 +1360 1537 1658 +1359 1538 1659 +1358 1539 1661 +1356 1540 1663 +1354 1541 1667 +1351 1543 1671 +1347 1545 1676 +1342 1549 1684 +1323 1550 1699 +1283 1550 1723 +1274 1550 1745 +1190 1550 1777 +1220 1548 1833 +1249 1544 1903 +1265 1540 1988 +1206 1545 2067 +1075 1537 2167 +810 1538 2272 +1313 1474 2382 +1686 1437 2475 +1851 1433 2509 +1851 1433 2509 +1851 1433 2509 +1851 1433 2509 +1851 1433 2509 +1851 1433 2509 +1851 1433 2509 +1851 1433 2509 +1851 1433 2509 +1851 1433 2509 +1603 1680 1865 +1602 1680 1865 +1600 1680 1867 +1599 1681 1868 +1597 1681 1870 +1594 1682 1872 +1590 1683 1876 +1585 1684 1880 +1578 1686 1886 +1575 1689 1891 +1571 1692 1897 +1565 1696 1905 +1563 1691 1919 +1538 1684 1938 +1489 1686 1969 +1460 1689 2014 +1482 1691 2072 +1418 1672 2133 +1270 1684 2221 +1248 1657 2296 +1563 1627 2386 +1794 1625 2476 +1896 1610 2511 +1896 1610 2511 +1896 1610 2511 +1896 1610 2511 +1896 1610 2511 +1896 1610 2511 +1896 1610 2511 +1896 1610 2511 +1896 1610 2511 +1896 1610 2511 +1830 1805 1969 +1830 1805 1970 +1829 1805 1971 +1829 1805 1972 +1828 1805 1973 +1827 1805 1974 +1825 1805 1977 +1823 1805 1979 +1821 1805 1983 +1817 1805 1988 +1810 1807 1996 +1800 1811 2007 +1791 1811 2018 +1779 1817 2033 +1762 1811 2051 +1763 1809 2078 +1725 1813 2122 +1736 1807 2171 +1689 1798 2234 +1727 1800 2309 +1778 1800 2391 +1894 1792 2475 +1986 1795 2515 +1986 1795 2515 +1986 1795 2515 +1986 1795 2515 +1986 1795 2515 +1986 1795 2515 +1986 1795 2515 +1986 1795 2515 +1986 1795 2515 +1986 1795 2515 +1983 1958 2036 +1983 1958 2036 +1983 1958 2037 +1983 1958 2037 +1982 1958 2038 +1981 1958 2039 +1980 1958 2040 +1979 1958 2042 +1977 1958 2045 +1974 1958 2048 +1971 1958 2052 +1966 1958 2058 +1963 1958 2065 +1955 1958 2072 +1945 1959 2081 +1942 1961 2103 +1940 1963 2147 +1922 1962 2193 +1920 1960 2233 +1912 1960 2312 +1943 1954 2394 +2043 1964 2481 +2119 1960 2514 +2119 1960 2514 +2119 1960 2514 +2119 1960 2514 +2119 1960 2514 +2119 1960 2514 +2119 1960 2514 +2119 1960 2514 +2119 1960 2514 +2119 1960 2514 +2126 2125 2075 +2126 2125 2075 +2126 2125 2075 +2126 2125 2075 +2126 2125 2075 +2127 2125 2076 +2127 2125 2076 +2127 2125 2076 +2128 2125 2077 +2129 2125 2078 +2130 2125 2080 +2132 2125 2082 +2131 2127 2089 +2125 2127 2098 +2119 2127 2110 +2123 2131 2129 +2124 2135 2165 +2118 2130 2208 +2117 2129 2251 +2132 2129 2316 +2154 2135 2400 +2222 2149 2485 +2257 2159 2521 +2257 2159 2521 +2257 2159 2521 +2257 2159 2521 +2257 2159 2521 +2257 2159 2521 +2257 2159 2521 +2257 2159 2521 +2257 2159 2521 +2257 2159 2521 +2371 2355 2125 +2371 2355 2125 +2371 2355 2125 +2371 2355 2126 +2372 2355 2126 +2372 2355 2127 +2372 2355 2127 +2372 2355 2128 +2372 2355 2130 +2373 2355 2132 +2374 2355 2134 +2374 2355 2136 +2375 2356 2142 +2373 2356 2145 +2371 2355 2148 +2372 2357 2159 +2375 2358 2191 +2375 2358 2229 +2381 2358 2273 +2396 2366 2336 +2413 2367 2408 +2468 2388 2498 +2497 2394 2532 +2497 2394 2532 +2497 2394 2532 +2497 2394 2532 +2497 2394 2532 +2497 2394 2532 +2497 2394 2532 +2497 2394 2532 +2497 2394 2532 +2497 2394 2532 +2679 2653 1956 +2679 2653 1957 +2679 2653 1958 +2679 2654 1959 +2679 2654 1961 +2680 2654 1962 +2680 2654 1965 +2680 2655 1969 +2680 2654 1966 +2679 2653 1962 +2679 2652 1957 +2678 2651 1950 +2678 2650 1950 +2677 2652 1970 +2676 2657 1988 +2678 2657 2023 +2679 2655 2063 +2679 2657 2122 +2682 2656 2208 +2688 2660 2308 +2695 2665 2407 +2715 2678 2527 +2726 2684 2578 +2726 2684 2578 +2726 2684 2578 +2726 2684 2578 +2726 2684 2578 +2726 2684 2578 +2726 2684 2578 +2726 2684 2578 +2726 2684 2578 +2726 2684 2578 +2712 2770 2428 +2712 2770 2429 +2712 2770 2429 +2712 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2714 2770 2429 +2714 2770 2430 +2715 2770 2430 +2716 2770 2431 +2717 2770 2431 +2717 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2713 2774 2488 +2714 2775 2522 +2712 2773 2553 +2717 2777 2617 +2724 2787 2699 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2770 2428 +2712 2770 2429 +2712 2770 2429 +2712 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2714 2770 2429 +2714 2770 2430 +2715 2770 2430 +2716 2770 2431 +2717 2770 2431 +2717 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2713 2774 2488 +2714 2775 2522 +2712 2773 2553 +2717 2777 2617 +2724 2787 2699 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2770 2428 +2712 2770 2429 +2712 2770 2429 +2712 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2714 2770 2429 +2714 2770 2430 +2715 2770 2430 +2716 2770 2431 +2717 2770 2431 +2717 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2713 2774 2488 +2714 2775 2522 +2712 2773 2553 +2717 2777 2617 +2724 2787 2699 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2770 2428 +2712 2770 2429 +2712 2770 2429 +2712 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2714 2770 2429 +2714 2770 2430 +2715 2770 2430 +2716 2770 2431 +2717 2770 2431 +2717 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2713 2774 2488 +2714 2775 2522 +2712 2773 2553 +2717 2777 2617 +2724 2787 2699 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2770 2428 +2712 2770 2429 +2712 2770 2429 +2712 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2714 2770 2429 +2714 2770 2430 +2715 2770 2430 +2716 2770 2431 +2717 2770 2431 +2717 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2713 2774 2488 +2714 2775 2522 +2712 2773 2553 +2717 2777 2617 +2724 2787 2699 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2770 2428 +2712 2770 2429 +2712 2770 2429 +2712 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2714 2770 2429 +2714 2770 2430 +2715 2770 2430 +2716 2770 2431 +2717 2770 2431 +2717 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2713 2774 2488 +2714 2775 2522 +2712 2773 2553 +2717 2777 2617 +2724 2787 2699 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2770 2428 +2712 2770 2429 +2712 2770 2429 +2712 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2714 2770 2429 +2714 2770 2430 +2715 2770 2430 +2716 2770 2431 +2717 2770 2431 +2717 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2713 2774 2488 +2714 2775 2522 +2712 2773 2553 +2717 2777 2617 +2724 2787 2699 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2770 2428 +2712 2770 2429 +2712 2770 2429 +2712 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2714 2770 2429 +2714 2770 2430 +2715 2770 2430 +2716 2770 2431 +2717 2770 2431 +2717 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2713 2774 2488 +2714 2775 2522 +2712 2773 2553 +2717 2777 2617 +2724 2787 2699 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2770 2428 +2712 2770 2429 +2712 2770 2429 +2712 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2714 2770 2429 +2714 2770 2430 +2715 2770 2430 +2716 2770 2431 +2717 2770 2431 +2717 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2713 2774 2488 +2714 2775 2522 +2712 2773 2553 +2717 2777 2617 +2724 2787 2699 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2770 2428 +2712 2770 2429 +2712 2770 2429 +2712 2770 2429 +2713 2770 2429 +2713 2770 2429 +2713 2770 2429 +2714 2770 2429 +2714 2770 2430 +2715 2770 2430 +2716 2770 2431 +2717 2770 2431 +2717 2770 2432 +2716 2770 2435 +2716 2769 2439 +2714 2770 2444 +2711 2772 2462 +2713 2774 2488 +2714 2775 2522 +2712 2773 2553 +2717 2777 2617 +2724 2787 2699 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +1146 0 0 +1146 0 0 +1146 0 0 +1146 0 46 +1146 0 140 +1146 0 240 +1146 0 347 +1146 0 460 +1146 0 576 +1146 0 697 +1146 0 820 +1146 0 946 +1143 0 1084 +1060 0 1359 +918 0 1574 +981 0 1683 +1223 0 1785 +1476 0 1909 +1569 0 2028 +1478 645 2197 +391 989 2347 +1611 0 2464 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1146 0 0 +1146 0 0 +1146 0 27 +1146 0 101 +1146 0 185 +1146 0 277 +1146 0 376 +1146 0 482 +1146 0 594 +1146 0 710 +1146 0 830 +1146 0 953 +1142 0 1089 +1059 0 1361 +917 0 1576 +981 0 1683 +1223 0 1786 +1476 0 1910 +1569 0 2029 +1477 656 2197 +395 992 2347 +1611 0 2464 +1757 0 2506 +1757 0 2506 +1757 0 2506 +1757 0 2506 +1757 0 2506 +1757 0 2506 +1757 0 2506 +1757 0 2506 +1757 0 2506 +1757 0 2506 +1143 0 0 +1143 0 0 +1144 0 38 +1144 0 111 +1144 0 193 +1144 0 284 +1144 0 382 +1144 0 487 +1144 0 598 +1144 0 713 +1144 0 833 +1144 0 955 +1141 0 1090 +1055 0 1362 +911 0 1576 +982 0 1684 +1219 0 1785 +1475 0 1911 +1568 0 2029 +1475 665 2197 +395 998 2347 +1614 0 2464 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1141 0 0 +1141 0 0 +1142 0 38 +1143 0 124 +1143 0 204 +1143 0 293 +1143 0 389 +1143 0 493 +1143 0 602 +1143 0 717 +1143 0 835 +1143 0 957 +1140 0 1091 +1050 0 1363 +904 0 1577 +984 0 1685 +1213 0 1785 +1474 0 1911 +1568 0 2030 +1472 676 2198 +395 1005 2348 +1617 0 2464 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1137 0 0 +1137 0 0 +1138 0 38 +1139 0 124 +1141 0 219 +1141 0 305 +1141 0 399 +1141 0 501 +1141 0 608 +1141 0 722 +1141 0 839 +1141 0 960 +1138 0 1093 +1043 0 1364 +895 0 1577 +987 0 1686 +1205 0 1784 +1474 0 1912 +1567 0 2031 +1469 692 2198 +395 1015 2348 +1622 0 2464 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1756 0 2506 +1132 0 0 +1132 0 0 +1133 0 38 +1134 0 124 +1136 0 219 +1139 0 320 +1139 0 411 +1139 0 511 +1139 0 616 +1139 0 728 +1139 0 844 +1139 0 963 +1136 0 1096 +1034 0 1365 +882 0 1578 +990 0 1687 +1194 0 1784 +1472 0 1913 +1566 0 2032 +1464 711 2199 +395 1028 2349 +1628 0 2464 +1755 0 2507 +1755 0 2507 +1755 0 2507 +1755 0 2507 +1755 0 2507 +1755 0 2507 +1755 0 2507 +1755 0 2507 +1755 0 2507 +1755 0 2507 +1125 13 0 +1125 0 0 +1126 0 38 +1128 0 124 +1129 0 219 +1132 0 320 +1135 0 428 +1135 0 524 +1135 0 627 +1135 0 736 +1135 0 850 +1135 0 968 +1132 0 1100 +1021 107 1367 +864 107 1579 +995 0 1690 +1178 0 1783 +1471 0 1914 +1565 97 2034 +1457 736 2199 +395 1045 2350 +1636 0 2464 +1754 107 2507 +1754 107 2507 +1754 107 2507 +1754 107 2507 +1754 107 2507 +1754 107 2507 +1754 107 2507 +1754 107 2507 +1754 107 2507 +1754 107 2507 +1116 150 0 +1116 137 0 +1117 127 38 +1118 114 124 +1120 96 219 +1123 70 320 +1126 34 428 +1131 0 541 +1131 0 640 +1131 0 747 +1131 0 858 +1131 0 975 +1128 0 1105 +1003 254 1370 +839 254 1581 +1001 137 1692 +1157 0 1782 +1469 17 1915 +1563 213 2037 +1448 768 2200 +395 1066 2351 +1646 21 2464 +1753 254 2507 +1753 254 2507 +1753 254 2507 +1753 254 2507 +1753 254 2507 +1753 254 2507 +1753 254 2507 +1753 254 2507 +1753 254 2507 +1753 254 2507 +1103 286 0 +1103 276 0 +1104 269 38 +1106 259 124 +1108 246 219 +1110 227 320 +1114 202 428 +1118 166 541 +1125 111 658 +1125 111 760 +1125 111 869 +1125 111 983 +1121 111 1111 +979 396 1374 +803 396 1584 +1009 276 1696 +1127 0 1781 +1466 140 1918 +1560 333 2040 +1436 807 2201 +395 1093 2353 +1654 232 2464 +1751 396 2508 +1751 396 2508 +1751 396 2508 +1751 396 2508 +1751 396 2508 +1751 396 2508 +1751 396 2508 +1751 396 2508 +1751 396 2508 +1751 396 2508 +1085 420 0 +1085 413 0 +1086 408 38 +1088 401 124 +1090 391 219 +1093 378 320 +1097 360 428 +1102 334 541 +1108 298 658 +1116 244 779 +1116 244 884 +1116 244 995 +1113 244 1119 +952 513 1379 +749 536 1587 +1019 413 1700 +1132 186 1784 +1462 265 1920 +1557 456 2044 +1419 854 2202 +395 1128 2355 +1664 421 2465 +1749 536 2509 +1749 536 2509 +1749 536 2509 +1749 536 2509 +1749 536 2509 +1749 536 2509 +1749 536 2509 +1749 536 2509 +1749 536 2509 +1749 536 2509 +1061 554 0 +1061 549 0 +1062 545 38 +1064 540 124 +1066 533 219 +1069 523 320 +1073 510 428 +1078 492 541 +1085 466 658 +1093 430 779 +1105 376 902 +1105 376 1009 +1102 376 1131 +936 591 1385 +666 674 1590 +999 572 1705 +1142 392 1789 +1438 342 1919 +1553 581 2050 +1395 910 2205 +395 1169 2358 +1678 592 2466 +1746 674 2510 +1746 674 2510 +1746 674 2510 +1746 674 2510 +1746 674 2510 +1746 674 2510 +1746 674 2510 +1746 674 2510 +1746 674 2510 +1746 674 2510 +1025 688 0 +1025 684 0 +1027 681 38 +1028 677 124 +1031 672 219 +1034 665 320 +1038 655 428 +1044 643 541 +1051 624 658 +1061 599 779 +1073 562 902 +1089 508 1028 +1086 508 1145 +913 678 1393 +525 811 1596 +936 738 1709 +1157 573 1796 +1399 418 1917 +1547 709 2058 +1361 976 2207 +221 1212 2361 +1695 752 2468 +1742 811 2511 +1742 811 2511 +1742 811 2511 +1742 811 2511 +1742 811 2511 +1742 811 2511 +1742 811 2511 +1742 811 2511 +1742 811 2511 +1742 811 2511 +998 854 247 +999 854 274 +1000 852 314 +1002 850 363 +1005 846 421 +1008 841 488 +1013 835 565 +1018 826 651 +1026 814 746 +1036 797 847 +1050 774 955 +1067 741 1069 +1082 701 1186 +907 818 1417 +458 939 1611 +854 914 1719 +1166 781 1811 +1344 583 1918 +1532 855 2069 +1306 1062 2213 +0 1254 2365 +1713 908 2469 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1738 955 2513 +1120 1134 981 +1120 1134 987 +1116 1134 996 +1110 1134 1007 +1102 1134 1022 +1091 1134 1041 +1076 1134 1065 +1055 1134 1096 +1025 1134 1133 +1003 1131 1180 +1017 1120 1235 +1036 1105 1300 +1052 1087 1374 +1136 1087 1482 +920 1158 1655 +941 1167 1774 +1193 1161 1864 +1274 1071 1958 +1421 1134 2085 +1184 1237 2230 +980 1275 2368 +1697 1083 2471 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1244 1351 1313 +1244 1351 1315 +1241 1351 1320 +1236 1351 1325 +1230 1351 1332 +1222 1351 1342 +1211 1351 1355 +1195 1351 1371 +1174 1351 1392 +1143 1351 1419 +1099 1351 1452 +1031 1351 1493 +1008 1345 1543 +1101 1345 1620 +1200 1345 1706 +1180 1356 1819 +1250 1368 1917 +1282 1376 2010 +1214 1352 2106 +941 1399 2251 +1206 1332 2375 +1655 1246 2474 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1442 1522 1648 +1441 1522 1649 +1440 1523 1650 +1440 1523 1651 +1439 1524 1653 +1437 1525 1655 +1436 1526 1658 +1433 1528 1663 +1430 1531 1668 +1426 1534 1676 +1410 1536 1691 +1377 1536 1716 +1335 1537 1749 +1263 1537 1781 +1301 1537 1839 +1339 1536 1910 +1357 1528 1994 +1241 1551 2071 +1105 1537 2167 +883 1536 2275 +1324 1476 2384 +1692 1446 2476 +1866 1416 2509 +1866 1416 2509 +1866 1416 2509 +1866 1416 2509 +1866 1416 2509 +1866 1416 2509 +1866 1416 2509 +1866 1416 2509 +1866 1416 2509 +1866 1416 2509 +1656 1669 1872 +1656 1669 1873 +1655 1669 1874 +1654 1670 1875 +1652 1671 1877 +1650 1671 1879 +1646 1672 1883 +1642 1674 1887 +1636 1675 1893 +1633 1678 1897 +1629 1681 1903 +1624 1685 1911 +1616 1691 1922 +1595 1684 1941 +1542 1684 1969 +1504 1684 2010 +1525 1691 2073 +1483 1671 2138 +1324 1684 2221 +1259 1662 2297 +1564 1621 2385 +1796 1617 2477 +1894 1605 2510 +1894 1605 2510 +1894 1605 2510 +1894 1605 2510 +1894 1605 2510 +1894 1605 2510 +1894 1605 2510 +1894 1605 2510 +1894 1605 2510 +1894 1605 2510 +1843 1802 1967 +1843 1802 1968 +1843 1802 1969 +1842 1802 1969 +1841 1802 1971 +1840 1802 1972 +1839 1802 1974 +1837 1802 1977 +1834 1802 1981 +1831 1802 1986 +1824 1804 1994 +1814 1807 2005 +1802 1811 2018 +1790 1817 2033 +1773 1811 2052 +1772 1809 2081 +1734 1809 2120 +1747 1811 2175 +1708 1801 2234 +1744 1800 2309 +1774 1800 2391 +1911 1796 2475 +1992 1790 2515 +1992 1790 2515 +1992 1790 2515 +1992 1790 2515 +1992 1790 2515 +1992 1790 2515 +1992 1790 2515 +1992 1790 2515 +1992 1790 2515 +1992 1790 2515 +1992 1958 2037 +1992 1958 2037 +1992 1958 2037 +1991 1958 2038 +1991 1958 2038 +1990 1958 2040 +1989 1958 2041 +1988 1958 2043 +1986 1958 2045 +1983 1958 2049 +1980 1958 2053 +1976 1958 2059 +1970 1958 2067 +1962 1958 2074 +1950 1958 2082 +1946 1958 2104 +1947 1962 2142 +1936 1964 2196 +1923 1957 2231 +1922 1958 2310 +1954 1955 2394 +2043 1964 2481 +2127 1958 2514 +2127 1958 2514 +2127 1958 2514 +2127 1958 2514 +2127 1958 2514 +2127 1958 2514 +2127 1958 2514 +2127 1958 2514 +2127 1958 2514 +2127 1958 2514 +2128 2127 2076 +2128 2127 2077 +2129 2127 2077 +2129 2127 2077 +2129 2127 2077 +2129 2127 2078 +2130 2127 2078 +2130 2127 2079 +2131 2127 2080 +2132 2127 2080 +2133 2127 2082 +2135 2127 2084 +2135 2127 2087 +2129 2127 2097 +2122 2127 2109 +2124 2131 2129 +2128 2135 2163 +2124 2132 2210 +2119 2127 2251 +2135 2128 2316 +2164 2135 2400 +2226 2151 2485 +2257 2159 2520 +2257 2159 2520 +2257 2159 2520 +2257 2159 2520 +2257 2159 2520 +2257 2159 2520 +2257 2159 2520 +2257 2159 2520 +2257 2159 2520 +2257 2159 2520 +2374 2355 2126 +2374 2355 2127 +2374 2355 2127 +2374 2355 2127 +2374 2355 2127 +2374 2355 2128 +2374 2355 2129 +2375 2355 2130 +2375 2355 2131 +2375 2355 2133 +2376 2355 2135 +2377 2355 2138 +2376 2355 2140 +2375 2355 2143 +2372 2354 2147 +2374 2356 2159 +2375 2358 2191 +2375 2357 2230 +2381 2358 2275 +2398 2368 2335 +2415 2368 2409 +2469 2388 2498 +2498 2395 2532 +2498 2395 2532 +2498 2395 2532 +2498 2395 2532 +2498 2395 2532 +2498 2395 2532 +2498 2395 2532 +2498 2395 2532 +2498 2395 2532 +2498 2395 2532 +2679 2653 1955 +2679 2653 1955 +2679 2653 1956 +2679 2653 1957 +2679 2653 1958 +2679 2654 1961 +2679 2654 1963 +2679 2654 1967 +2679 2654 1964 +2679 2653 1961 +2678 2652 1955 +2678 2650 1948 +2677 2648 1939 +2677 2650 1960 +2676 2655 1976 +2677 2657 2013 +2680 2657 2068 +2679 2658 2122 +2683 2657 2209 +2688 2661 2310 +2695 2666 2408 +2715 2679 2527 +2727 2684 2579 +2727 2684 2579 +2727 2684 2579 +2727 2684 2579 +2727 2684 2579 +2727 2684 2579 +2727 2684 2579 +2727 2684 2579 +2727 2684 2579 +2727 2684 2579 +2712 2769 2427 +2712 2769 2427 +2712 2769 2427 +2712 2769 2428 +2712 2769 2428 +2712 2769 2428 +2713 2769 2428 +2713 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2717 2770 2436 +2716 2770 2440 +2714 2770 2444 +2712 2772 2461 +2714 2774 2492 +2714 2775 2523 +2712 2774 2554 +2717 2778 2620 +2725 2789 2702 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2769 2427 +2712 2769 2427 +2712 2769 2427 +2712 2769 2428 +2712 2769 2428 +2712 2769 2428 +2713 2769 2428 +2713 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2717 2770 2436 +2716 2770 2440 +2714 2770 2444 +2712 2772 2461 +2714 2774 2492 +2714 2775 2523 +2712 2774 2554 +2717 2778 2620 +2725 2789 2702 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2769 2427 +2712 2769 2427 +2712 2769 2427 +2712 2769 2428 +2712 2769 2428 +2712 2769 2428 +2713 2769 2428 +2713 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2717 2770 2436 +2716 2770 2440 +2714 2770 2444 +2712 2772 2461 +2714 2774 2492 +2714 2775 2523 +2712 2774 2554 +2717 2778 2620 +2725 2789 2702 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2769 2427 +2712 2769 2427 +2712 2769 2427 +2712 2769 2428 +2712 2769 2428 +2712 2769 2428 +2713 2769 2428 +2713 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2717 2770 2436 +2716 2770 2440 +2714 2770 2444 +2712 2772 2461 +2714 2774 2492 +2714 2775 2523 +2712 2774 2554 +2717 2778 2620 +2725 2789 2702 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2769 2427 +2712 2769 2427 +2712 2769 2427 +2712 2769 2428 +2712 2769 2428 +2712 2769 2428 +2713 2769 2428 +2713 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2717 2770 2436 +2716 2770 2440 +2714 2770 2444 +2712 2772 2461 +2714 2774 2492 +2714 2775 2523 +2712 2774 2554 +2717 2778 2620 +2725 2789 2702 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2769 2427 +2712 2769 2427 +2712 2769 2427 +2712 2769 2428 +2712 2769 2428 +2712 2769 2428 +2713 2769 2428 +2713 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2717 2770 2436 +2716 2770 2440 +2714 2770 2444 +2712 2772 2461 +2714 2774 2492 +2714 2775 2523 +2712 2774 2554 +2717 2778 2620 +2725 2789 2702 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2769 2427 +2712 2769 2427 +2712 2769 2427 +2712 2769 2428 +2712 2769 2428 +2712 2769 2428 +2713 2769 2428 +2713 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2717 2770 2436 +2716 2770 2440 +2714 2770 2444 +2712 2772 2461 +2714 2774 2492 +2714 2775 2523 +2712 2774 2554 +2717 2778 2620 +2725 2789 2702 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2769 2427 +2712 2769 2427 +2712 2769 2427 +2712 2769 2428 +2712 2769 2428 +2712 2769 2428 +2713 2769 2428 +2713 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2717 2770 2436 +2716 2770 2440 +2714 2770 2444 +2712 2772 2461 +2714 2774 2492 +2714 2775 2523 +2712 2774 2554 +2717 2778 2620 +2725 2789 2702 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2769 2427 +2712 2769 2427 +2712 2769 2427 +2712 2769 2428 +2712 2769 2428 +2712 2769 2428 +2713 2769 2428 +2713 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2717 2770 2436 +2716 2770 2440 +2714 2770 2444 +2712 2772 2461 +2714 2774 2492 +2714 2775 2523 +2712 2774 2554 +2717 2778 2620 +2725 2789 2702 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2712 2769 2427 +2712 2769 2427 +2712 2769 2427 +2712 2769 2428 +2712 2769 2428 +2712 2769 2428 +2713 2769 2428 +2713 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2717 2770 2436 +2716 2770 2440 +2714 2770 2444 +2712 2772 2461 +2714 2774 2492 +2714 2775 2523 +2712 2774 2554 +2717 2778 2620 +2725 2789 2702 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +2729 2789 2727 +1314 0 0 +1314 0 0 +1315 0 0 +1316 0 18 +1317 0 98 +1319 0 188 +1321 0 285 +1324 0 389 +1328 0 499 +1331 0 624 +1331 0 765 +1331 0 904 +1329 0 1054 +1312 0 1291 +1236 0 1533 +1269 0 1690 +1323 0 1781 +1534 0 1909 +1607 0 2039 +1502 645 2197 +677 1023 2352 +1658 0 2466 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1314 0 0 +1314 0 0 +1315 0 17 +1315 0 78 +1316 0 150 +1318 0 230 +1321 0 319 +1324 0 417 +1328 0 521 +1331 0 640 +1331 0 777 +1331 0 914 +1329 0 1059 +1311 0 1294 +1235 0 1535 +1268 0 1691 +1323 0 1782 +1533 0 1910 +1607 0 2039 +1501 656 2197 +679 1026 2352 +1659 0 2466 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1776 0 2506 +1314 0 0 +1314 0 17 +1314 0 97 +1315 0 149 +1316 0 211 +1318 0 282 +1320 0 363 +1323 0 452 +1327 0 549 +1330 0 662 +1330 0 794 +1330 0 926 +1328 0 1068 +1311 0 1298 +1235 0 1537 +1267 0 1692 +1323 0 1783 +1532 0 1911 +1606 0 2040 +1500 671 2198 +682 1030 2352 +1660 0 2466 +1777 0 2506 +1777 0 2506 +1777 0 2506 +1777 0 2506 +1777 0 2506 +1777 0 2506 +1777 0 2506 +1777 0 2506 +1777 0 2506 +1777 0 2506 +1314 0 18 +1314 0 78 +1314 0 149 +1314 0 229 +1315 0 281 +1316 0 343 +1319 0 414 +1322 0 494 +1326 0 584 +1329 0 689 +1329 0 814 +1329 0 941 +1327 0 1079 +1310 0 1302 +1233 0 1540 +1266 0 1693 +1323 0 1784 +1531 0 1912 +1605 0 2041 +1498 690 2198 +686 1035 2353 +1661 0 2466 +1778 0 2506 +1778 0 2506 +1778 0 2506 +1778 0 2506 +1778 0 2506 +1778 0 2506 +1778 0 2506 +1778 0 2506 +1778 0 2506 +1778 0 2506 +1314 0 98 +1314 0 150 +1314 0 211 +1314 0 281 +1314 0 361 +1315 0 413 +1318 0 475 +1321 0 546 +1325 0 627 +1328 0 723 +1328 0 840 +1328 0 961 +1326 0 1094 +1309 0 1309 +1232 0 1544 +1265 0 1695 +1323 0 1787 +1529 0 1914 +1603 0 2042 +1497 714 2199 +691 1042 2353 +1662 0 2466 +1779 0 2506 +1779 0 2506 +1779 0 2506 +1779 0 2506 +1779 0 2506 +1779 0 2506 +1779 0 2506 +1779 0 2506 +1779 0 2506 +1779 0 2506 +1314 0 188 +1314 0 230 +1314 0 282 +1314 0 343 +1314 0 413 +1314 0 493 +1316 0 545 +1319 0 607 +1323 0 678 +1326 0 766 +1326 0 873 +1326 0 986 +1324 0 1113 +1307 0 1317 +1230 0 1549 +1263 0 1697 +1323 30 1790 +1527 0 1916 +1602 132 2043 +1495 745 2200 +698 1051 2354 +1663 0 2466 +1781 0 2506 +1781 0 2506 +1781 0 2506 +1781 0 2506 +1781 0 2506 +1781 0 2506 +1781 0 2506 +1781 0 2506 +1781 0 2506 +1781 0 2506 +1314 121 285 +1314 106 319 +1314 85 363 +1314 56 414 +1314 13 475 +1314 0 545 +1314 0 625 +1317 0 677 +1321 0 739 +1324 0 816 +1324 0 914 +1324 0 1018 +1322 0 1138 +1304 0 1329 +1227 0 1556 +1261 0 1700 +1323 163 1794 +1524 32 1919 +1599 264 2045 +1491 783 2201 +706 1063 2354 +1666 32 2466 +1784 0 2506 +1784 0 2506 +1784 0 2506 +1784 0 2506 +1784 0 2506 +1784 0 2506 +1784 0 2506 +1784 0 2506 +1784 0 2506 +1784 0 2506 +1314 264 389 +1314 253 417 +1314 238 452 +1314 217 494 +1314 188 546 +1314 146 607 +1314 82 677 +1314 0 757 +1318 0 809 +1321 0 876 +1321 0 963 +1321 0 1058 +1319 0 1168 +1302 0 1343 +1223 0 1565 +1257 0 1704 +1323 295 1799 +1520 164 1923 +1596 396 2047 +1487 830 2203 +718 1079 2355 +1668 164 2466 +1787 0 2506 +1787 0 2506 +1787 0 2506 +1787 0 2506 +1787 0 2506 +1787 0 2506 +1787 0 2506 +1787 0 2506 +1787 0 2506 +1787 0 2506 +1314 404 499 +1314 396 521 +1314 385 549 +1314 370 584 +1314 349 627 +1314 320 678 +1314 277 739 +1314 214 809 +1314 111 889 +1317 111 946 +1317 111 1021 +1317 111 1106 +1315 111 1206 +1297 111 1362 +1218 111 1576 +1252 111 1709 +1323 426 1806 +1515 296 1928 +1592 528 2051 +1482 885 2205 +733 1099 2357 +1667 296 2465 +1791 111 2506 +1791 111 2506 +1791 111 2506 +1791 111 2506 +1791 111 2506 +1791 111 2506 +1791 111 2506 +1791 111 2506 +1791 111 2506 +1791 111 2506 +1310 530 574 +1310 524 592 +1310 516 616 +1310 505 646 +1310 490 684 +1310 468 730 +1310 438 784 +1310 394 848 +1310 328 922 +1311 244 1001 +1311 244 1068 +1311 244 1145 +1310 244 1238 +1292 244 1379 +1207 285 1587 +1251 265 1716 +1322 514 1811 +1510 413 1934 +1587 643 2055 +1471 941 2208 +745 1128 2358 +1669 442 2465 +1794 285 2506 +1794 285 2506 +1794 285 2506 +1794 285 2506 +1794 285 2506 +1794 285 2506 +1794 285 2506 +1794 285 2506 +1794 285 2506 +1794 285 2506 +1294 639 574 +1294 634 592 +1294 627 616 +1294 619 646 +1294 607 684 +1294 591 730 +1294 568 784 +1294 535 848 +1294 488 922 +1297 430 1001 +1304 376 1080 +1304 376 1155 +1302 376 1246 +1284 376 1385 +1178 503 1590 +1239 473 1720 +1329 626 1816 +1488 470 1933 +1583 729 2060 +1450 988 2209 +745 1169 2362 +1682 607 2467 +1792 503 2507 +1792 503 2507 +1792 503 2507 +1792 503 2507 +1792 503 2507 +1792 503 2507 +1792 503 2507 +1792 503 2507 +1792 503 2507 +1792 503 2507 +1274 753 574 +1274 749 592 +1274 744 616 +1274 737 646 +1274 728 684 +1274 716 730 +1274 698 784 +1274 674 848 +1274 640 922 +1276 599 1001 +1284 562 1080 +1294 508 1169 +1292 508 1257 +1273 508 1393 +1137 691 1596 +1203 671 1723 +1338 742 1822 +1453 529 1930 +1577 824 2068 +1421 1044 2212 +672 1212 2365 +1699 762 2468 +1788 691 2509 +1788 691 2509 +1788 691 2509 +1788 691 2509 +1788 691 2509 +1788 691 2509 +1788 691 2509 +1788 691 2509 +1788 691 2509 +1788 691 2509 +1258 900 682 +1259 900 693 +1259 896 712 +1259 891 736 +1259 885 767 +1259 876 806 +1259 864 852 +1259 847 908 +1259 824 973 +1261 797 1044 +1269 774 1117 +1280 741 1199 +1289 701 1290 +1270 701 1417 +1120 852 1611 +1159 869 1734 +1344 895 1836 +1405 663 1931 +1563 942 2078 +1372 1118 2218 +602 1254 2368 +1718 915 2470 +1784 871 2510 +1784 871 2510 +1784 871 2510 +1784 871 2510 +1784 871 2510 +1784 871 2510 +1784 871 2510 +1784 871 2510 +1784 871 2510 +1784 871 2510 +1314 1134 1183 +1314 1134 1187 +1315 1134 1191 +1316 1134 1197 +1317 1134 1206 +1319 1134 1216 +1321 1134 1230 +1324 1134 1248 +1328 1134 1271 +1333 1131 1302 +1340 1120 1345 +1349 1105 1396 +1358 1087 1457 +1341 1087 1528 +1216 1158 1687 +1159 1142 1780 +1317 1176 1886 +1360 1041 1962 +1486 1159 2104 +1228 1237 2234 +1015 1275 2368 +1721 1100 2471 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1784 1087 2512 +1399 1351 1421 +1399 1351 1423 +1400 1351 1426 +1400 1351 1429 +1401 1351 1434 +1403 1351 1441 +1405 1351 1449 +1407 1351 1460 +1410 1351 1475 +1407 1351 1495 +1382 1351 1523 +1347 1351 1559 +1336 1345 1602 +1319 1345 1655 +1383 1345 1736 +1321 1339 1825 +1361 1378 1936 +1367 1360 2014 +1313 1367 2124 +1014 1399 2255 +1228 1332 2375 +1681 1258 2475 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1514 1522 1673 +1514 1522 1673 +1513 1522 1674 +1512 1522 1674 +1510 1522 1676 +1508 1522 1677 +1505 1522 1679 +1501 1522 1682 +1495 1522 1685 +1489 1523 1691 +1475 1525 1706 +1447 1525 1730 +1412 1526 1762 +1397 1537 1811 +1426 1537 1865 +1415 1525 1919 +1395 1535 2005 +1299 1551 2087 +1205 1526 2170 +1197 1525 2279 +1402 1488 2382 +1717 1446 2476 +1900 1416 2509 +1900 1416 2509 +1900 1416 2509 +1900 1416 2509 +1900 1416 2509 +1900 1416 2509 +1900 1416 2509 +1900 1416 2509 +1900 1416 2509 +1900 1416 2509 +1678 1669 1879 +1678 1669 1879 +1678 1669 1880 +1678 1669 1882 +1678 1669 1884 +1678 1669 1886 +1678 1669 1889 +1678 1669 1894 +1678 1669 1900 +1674 1670 1903 +1671 1673 1909 +1667 1678 1917 +1659 1683 1928 +1644 1684 1948 +1597 1684 1976 +1591 1683 2015 +1577 1683 2072 +1536 1664 2140 +1423 1683 2226 +1349 1660 2299 +1619 1615 2384 +1819 1607 2477 +1912 1605 2509 +1912 1605 2509 +1912 1605 2509 +1912 1605 2509 +1912 1605 2509 +1912 1605 2509 +1912 1605 2509 +1912 1605 2509 +1912 1605 2509 +1912 1605 2509 +1848 1802 1967 +1848 1802 1968 +1849 1802 1969 +1849 1803 1970 +1849 1803 1972 +1850 1804 1973 +1851 1805 1976 +1851 1806 1980 +1853 1807 1984 +1853 1808 1990 +1846 1810 1998 +1837 1813 2009 +1825 1817 2022 +1820 1817 2033 +1804 1811 2052 +1785 1809 2084 +1764 1804 2118 +1767 1811 2177 +1736 1801 2237 +1751 1800 2307 +1774 1800 2391 +1919 1797 2474 +2000 1784 2514 +2000 1784 2514 +2000 1784 2514 +2000 1784 2514 +2000 1784 2514 +2000 1784 2514 +2000 1784 2514 +2000 1784 2514 +2000 1784 2514 +2000 1784 2514 +1992 1958 2037 +1992 1958 2037 +1992 1958 2037 +1992 1958 2037 +1992 1958 2037 +1992 1958 2038 +1992 1958 2038 +1992 1958 2039 +1992 1958 2040 +1991 1958 2042 +1988 1958 2046 +1983 1958 2052 +1978 1958 2060 +1974 1962 2077 +1963 1962 2086 +1955 1958 2110 +1955 1962 2141 +1953 1964 2193 +1941 1953 2231 +1931 1953 2310 +1966 1959 2394 +2048 1966 2481 +2129 1963 2515 +2129 1963 2515 +2129 1963 2515 +2129 1963 2515 +2129 1963 2515 +2129 1963 2515 +2129 1963 2515 +2129 1963 2515 +2129 1963 2515 +2129 1963 2515 +2134 2127 2070 +2134 2127 2070 +2134 2127 2071 +2135 2127 2071 +2135 2127 2073 +2135 2127 2074 +2135 2127 2076 +2136 2127 2078 +2137 2127 2081 +2137 2127 2084 +2139 2127 2085 +2140 2127 2087 +2141 2127 2091 +2135 2127 2100 +2127 2127 2112 +2129 2128 2129 +2136 2135 2161 +2130 2135 2208 +2125 2127 2253 +2141 2131 2316 +2170 2132 2397 +2230 2150 2485 +2266 2159 2520 +2266 2159 2520 +2266 2159 2520 +2266 2159 2520 +2266 2159 2520 +2266 2159 2520 +2266 2159 2520 +2266 2159 2520 +2266 2159 2520 +2266 2159 2520 +2377 2355 2126 +2377 2355 2127 +2377 2355 2127 +2377 2355 2127 +2377 2355 2127 +2378 2355 2127 +2378 2355 2128 +2378 2355 2128 +2378 2355 2129 +2379 2355 2130 +2380 2355 2133 +2380 2355 2135 +2380 2355 2137 +2378 2357 2143 +2376 2356 2147 +2376 2354 2159 +2375 2358 2194 +2375 2357 2230 +2381 2357 2273 +2399 2366 2335 +2418 2368 2408 +2472 2387 2495 +2499 2395 2533 +2499 2395 2533 +2499 2395 2533 +2499 2395 2533 +2499 2395 2533 +2499 2395 2533 +2499 2395 2533 +2499 2395 2533 +2499 2395 2533 +2499 2395 2533 +2680 2655 1964 +2680 2655 1964 +2680 2655 1964 +2680 2655 1964 +2680 2655 1964 +2680 2655 1964 +2680 2655 1964 +2680 2655 1964 +2679 2655 1968 +2679 2655 1970 +2679 2654 1965 +2678 2652 1958 +2677 2650 1949 +2677 2648 1945 +2675 2653 1962 +2676 2656 2011 +2680 2657 2064 +2681 2657 2122 +2684 2657 2213 +2688 2662 2314 +2696 2667 2413 +2716 2679 2527 +2727 2684 2578 +2727 2684 2578 +2727 2684 2578 +2727 2684 2578 +2727 2684 2578 +2727 2684 2578 +2727 2684 2578 +2727 2684 2578 +2727 2684 2578 +2727 2684 2578 +2713 2769 2427 +2713 2769 2427 +2713 2769 2427 +2713 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2718 2772 2447 +2715 2770 2444 +2712 2771 2455 +2714 2774 2492 +2716 2775 2523 +2714 2775 2560 +2719 2781 2625 +2725 2789 2703 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2713 2769 2427 +2713 2769 2427 +2713 2769 2427 +2713 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2718 2772 2447 +2715 2770 2444 +2712 2771 2455 +2714 2774 2492 +2716 2775 2523 +2714 2775 2560 +2719 2781 2625 +2725 2789 2703 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2713 2769 2427 +2713 2769 2427 +2713 2769 2427 +2713 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2718 2772 2447 +2715 2770 2444 +2712 2771 2455 +2714 2774 2492 +2716 2775 2523 +2714 2775 2560 +2719 2781 2625 +2725 2789 2703 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2713 2769 2427 +2713 2769 2427 +2713 2769 2427 +2713 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2718 2772 2447 +2715 2770 2444 +2712 2771 2455 +2714 2774 2492 +2716 2775 2523 +2714 2775 2560 +2719 2781 2625 +2725 2789 2703 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2713 2769 2427 +2713 2769 2427 +2713 2769 2427 +2713 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2718 2772 2447 +2715 2770 2444 +2712 2771 2455 +2714 2774 2492 +2716 2775 2523 +2714 2775 2560 +2719 2781 2625 +2725 2789 2703 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2713 2769 2427 +2713 2769 2427 +2713 2769 2427 +2713 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2718 2772 2447 +2715 2770 2444 +2712 2771 2455 +2714 2774 2492 +2716 2775 2523 +2714 2775 2560 +2719 2781 2625 +2725 2789 2703 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2713 2769 2427 +2713 2769 2427 +2713 2769 2427 +2713 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2718 2772 2447 +2715 2770 2444 +2712 2771 2455 +2714 2774 2492 +2716 2775 2523 +2714 2775 2560 +2719 2781 2625 +2725 2789 2703 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2713 2769 2427 +2713 2769 2427 +2713 2769 2427 +2713 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2718 2772 2447 +2715 2770 2444 +2712 2771 2455 +2714 2774 2492 +2716 2775 2523 +2714 2775 2560 +2719 2781 2625 +2725 2789 2703 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2713 2769 2427 +2713 2769 2427 +2713 2769 2427 +2713 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2718 2772 2447 +2715 2770 2444 +2712 2771 2455 +2714 2774 2492 +2716 2775 2523 +2714 2775 2560 +2719 2781 2625 +2725 2789 2703 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2713 2769 2427 +2713 2769 2427 +2713 2769 2427 +2713 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2428 +2714 2769 2429 +2714 2769 2429 +2715 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2718 2772 2447 +2715 2770 2444 +2712 2771 2455 +2714 2774 2492 +2716 2775 2523 +2714 2775 2560 +2719 2781 2625 +2725 2789 2703 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +2729 2791 2730 +1471 0 0 +1471 0 0 +1472 0 0 +1472 0 18 +1473 0 98 +1475 0 188 +1476 0 285 +1478 0 389 +1481 0 499 +1485 0 614 +1490 0 733 +1496 0 855 +1498 0 1011 +1486 0 1266 +1470 0 1472 +1490 0 1659 +1524 0 1789 +1589 0 1904 +1654 0 2053 +1531 645 2197 +923 1046 2356 +1710 0 2469 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1471 0 0 +1471 0 0 +1471 0 17 +1472 0 78 +1473 0 150 +1474 0 230 +1476 0 319 +1478 0 417 +1481 0 521 +1485 0 631 +1489 0 746 +1496 0 865 +1497 0 1017 +1486 0 1269 +1469 0 1474 +1489 0 1660 +1524 0 1790 +1589 0 1905 +1653 0 2053 +1531 656 2197 +924 1049 2356 +1710 0 2469 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1801 0 2506 +1471 0 0 +1471 0 17 +1471 0 97 +1472 0 149 +1472 0 211 +1474 0 282 +1475 0 363 +1477 0 452 +1480 0 549 +1484 0 653 +1489 0 763 +1496 0 878 +1497 0 1026 +1485 0 1273 +1469 0 1476 +1489 0 1661 +1524 0 1791 +1588 0 1905 +1652 0 2054 +1530 671 2198 +926 1053 2357 +1711 0 2469 +1802 0 2506 +1802 0 2506 +1802 0 2506 +1802 0 2506 +1802 0 2506 +1802 0 2506 +1802 0 2506 +1802 0 2506 +1802 0 2506 +1802 0 2506 +1471 0 18 +1471 0 78 +1471 0 149 +1471 0 229 +1472 0 281 +1473 0 343 +1475 0 414 +1477 0 494 +1480 0 584 +1483 0 681 +1488 0 785 +1495 0 895 +1496 0 1039 +1485 0 1278 +1468 0 1480 +1488 0 1662 +1524 0 1793 +1587 0 1907 +1651 0 2054 +1529 690 2198 +928 1058 2357 +1712 0 2469 +1803 0 2506 +1803 0 2506 +1803 0 2506 +1803 0 2506 +1803 0 2506 +1803 0 2506 +1803 0 2506 +1803 0 2506 +1803 0 2506 +1803 0 2506 +1471 0 98 +1471 0 150 +1471 0 211 +1471 0 281 +1471 0 361 +1472 0 413 +1474 0 475 +1476 0 546 +1479 0 627 +1482 0 716 +1487 0 813 +1494 0 917 +1495 0 1055 +1484 0 1285 +1467 0 1484 +1487 0 1664 +1524 0 1795 +1585 0 1908 +1650 0 2055 +1527 714 2199 +931 1065 2357 +1713 0 2469 +1804 0 2506 +1804 0 2506 +1804 0 2506 +1804 0 2506 +1804 0 2506 +1804 0 2506 +1804 0 2506 +1804 0 2506 +1804 0 2506 +1804 0 2506 +1471 0 188 +1471 0 230 +1471 0 282 +1471 0 343 +1471 0 413 +1471 0 493 +1472 0 545 +1475 0 607 +1478 0 678 +1481 0 759 +1486 0 848 +1493 0 946 +1494 0 1075 +1482 0 1294 +1466 0 1490 +1486 0 1667 +1524 30 1798 +1584 0 1911 +1648 132 2057 +1525 745 2200 +935 1074 2358 +1715 0 2469 +1806 0 2506 +1806 0 2506 +1806 0 2506 +1806 0 2506 +1806 0 2506 +1806 0 2506 +1806 0 2506 +1806 0 2506 +1806 0 2506 +1806 0 2506 +1471 121 285 +1471 106 319 +1471 85 363 +1471 56 414 +1471 13 475 +1471 0 545 +1471 0 625 +1473 0 677 +1476 0 739 +1480 0 810 +1485 0 891 +1491 0 980 +1493 0 1102 +1481 0 1306 +1464 0 1497 +1485 0 1670 +1524 163 1802 +1581 32 1914 +1646 264 2058 +1522 783 2201 +940 1085 2358 +1716 32 2469 +1809 0 2506 +1809 0 2506 +1809 0 2506 +1809 0 2506 +1809 0 2506 +1809 0 2506 +1809 0 2506 +1809 0 2506 +1809 0 2506 +1809 0 2506 +1471 264 389 +1471 253 417 +1471 238 452 +1471 217 494 +1471 188 546 +1471 146 607 +1471 82 677 +1471 0 757 +1474 0 809 +1478 0 871 +1483 0 942 +1489 0 1023 +1491 0 1135 +1479 0 1321 +1462 0 1507 +1482 0 1674 +1524 295 1807 +1578 164 1918 +1644 396 2061 +1518 830 2203 +947 1100 2359 +1719 164 2469 +1812 0 2506 +1812 0 2506 +1812 0 2506 +1812 0 2506 +1812 0 2506 +1812 0 2506 +1812 0 2506 +1812 0 2506 +1812 0 2506 +1812 0 2506 +1471 404 499 +1471 396 521 +1471 385 549 +1471 370 584 +1471 349 627 +1471 320 678 +1471 277 739 +1471 214 809 +1471 111 889 +1475 111 942 +1480 111 1003 +1486 111 1075 +1488 111 1176 +1476 111 1340 +1459 111 1520 +1480 111 1680 +1524 426 1814 +1573 296 1923 +1640 528 2064 +1513 885 2205 +956 1119 2361 +1717 296 2469 +1816 111 2506 +1816 111 2506 +1816 111 2506 +1816 111 2506 +1816 111 2506 +1816 111 2506 +1816 111 2506 +1816 111 2506 +1816 111 2506 +1816 111 2506 +1471 542 614 +1471 536 631 +1471 528 653 +1471 517 681 +1471 502 716 +1471 482 759 +1471 452 810 +1471 410 871 +1471 346 942 +1471 244 1021 +1476 244 1074 +1483 244 1135 +1484 244 1225 +1472 244 1369 +1455 244 1537 +1476 244 1687 +1520 502 1820 +1567 428 1930 +1634 660 2068 +1506 950 2208 +968 1143 2362 +1715 428 2469 +1821 244 2506 +1821 244 2506 +1821 244 2506 +1821 244 2506 +1821 244 2506 +1821 244 2506 +1821 244 2506 +1821 244 2506 +1821 244 2506 +1821 244 2506 +1471 678 733 +1471 674 746 +1471 668 763 +1471 660 785 +1471 649 813 +1471 634 848 +1471 613 891 +1471 584 942 +1471 542 1003 +1471 478 1074 +1471 376 1153 +1478 376 1206 +1479 376 1283 +1467 376 1412 +1450 376 1559 +1471 376 1701 +1516 581 1827 +1566 591 1940 +1627 792 2074 +1496 1025 2212 +983 1174 2364 +1712 560 2468 +1828 376 2506 +1828 376 2506 +1828 376 2506 +1828 376 2506 +1828 376 2506 +1828 376 2506 +1828 376 2506 +1828 376 2506 +1828 376 2506 +1828 376 2506 +1471 814 855 +1471 811 865 +1471 806 878 +1471 800 895 +1471 792 917 +1471 782 946 +1471 767 980 +1471 746 1023 +1471 717 1075 +1471 674 1135 +1471 611 1206 +1471 508 1285 +1472 508 1352 +1460 508 1465 +1443 508 1587 +1464 508 1721 +1509 670 1836 +1566 751 1952 +1617 925 2081 +1483 1109 2218 +935 1212 2368 +1708 692 2467 +1838 508 2506 +1838 508 2506 +1838 508 2506 +1838 508 2506 +1838 508 2506 +1838 508 2506 +1838 508 2506 +1838 508 2506 +1838 508 2506 +1838 508 2506 +1467 954 955 +1467 954 960 +1467 951 971 +1467 947 985 +1467 941 1004 +1467 933 1027 +1467 923 1056 +1467 908 1092 +1467 888 1137 +1467 859 1191 +1467 818 1254 +1467 755 1326 +1471 701 1400 +1458 701 1503 +1441 701 1611 +1446 742 1738 +1508 833 1851 +1542 872 1959 +1602 1037 2091 +1448 1185 2224 +886 1254 2372 +1718 855 2468 +1839 727 2507 +1839 727 2507 +1839 727 2507 +1839 727 2507 +1839 727 2507 +1839 727 2507 +1839 727 2507 +1839 727 2507 +1839 727 2507 +1839 727 2507 +1503 1167 1293 +1503 1167 1296 +1504 1167 1299 +1504 1167 1304 +1505 1167 1311 +1506 1167 1319 +1508 1167 1330 +1510 1167 1344 +1512 1167 1363 +1514 1162 1390 +1514 1141 1432 +1514 1111 1482 +1517 1087 1536 +1506 1087 1597 +1491 1087 1687 +1446 1077 1783 +1489 1144 1900 +1509 1144 1988 +1532 1221 2116 +1329 1289 2240 +1151 1275 2372 +1721 1061 2469 +1839 1003 2508 +1839 1003 2508 +1839 1003 2508 +1839 1003 2508 +1839 1003 2508 +1839 1003 2508 +1839 1003 2508 +1839 1003 2508 +1839 1003 2508 +1839 1003 2508 +1547 1351 1534 +1547 1351 1536 +1547 1351 1538 +1548 1351 1541 +1549 1351 1545 +1550 1351 1550 +1551 1351 1556 +1553 1351 1565 +1555 1351 1577 +1558 1351 1592 +1563 1351 1611 +1569 1351 1636 +1573 1345 1671 +1563 1345 1717 +1550 1345 1771 +1498 1335 1850 +1489 1358 1942 +1476 1376 2036 +1418 1388 2147 +1096 1399 2261 +1290 1332 2375 +1730 1258 2473 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1839 1219 2510 +1626 1522 1733 +1625 1522 1734 +1625 1522 1734 +1623 1522 1735 +1622 1522 1736 +1621 1522 1737 +1618 1522 1739 +1615 1522 1742 +1611 1522 1745 +1605 1522 1749 +1605 1522 1760 +1609 1522 1778 +1596 1523 1805 +1587 1534 1850 +1574 1537 1894 +1558 1522 1941 +1509 1521 2012 +1413 1563 2107 +1330 1535 2187 +1296 1523 2285 +1459 1491 2382 +1767 1446 2474 +1910 1416 2509 +1910 1416 2509 +1910 1416 2509 +1910 1416 2509 +1910 1416 2509 +1910 1416 2509 +1910 1416 2509 +1910 1416 2509 +1910 1416 2509 +1910 1416 2509 +1737 1669 1898 +1737 1669 1899 +1737 1669 1900 +1737 1669 1901 +1737 1669 1903 +1737 1669 1905 +1737 1669 1908 +1737 1669 1913 +1737 1669 1918 +1732 1669 1922 +1727 1669 1925 +1719 1669 1930 +1711 1672 1940 +1697 1674 1960 +1687 1684 2003 +1675 1681 2036 +1638 1672 2080 +1565 1674 2153 +1492 1672 2229 +1526 1649 2305 +1680 1621 2385 +1871 1607 2473 +1954 1605 2509 +1954 1605 2509 +1954 1605 2509 +1954 1605 2509 +1954 1605 2509 +1954 1605 2509 +1954 1605 2509 +1954 1605 2509 +1954 1605 2509 +1954 1605 2509 +1862 1802 1972 +1862 1802 1973 +1862 1802 1973 +1862 1803 1975 +1862 1803 1976 +1863 1804 1978 +1864 1805 1981 +1865 1806 1984 +1866 1807 1989 +1868 1809 1995 +1868 1809 2004 +1868 1809 2014 +1861 1811 2027 +1856 1811 2038 +1842 1811 2056 +1824 1809 2088 +1829 1804 2122 +1805 1804 2175 +1793 1801 2242 +1782 1800 2309 +1820 1797 2390 +1940 1796 2477 +2014 1783 2512 +2014 1783 2512 +2014 1783 2512 +2014 1783 2512 +2014 1783 2512 +2014 1783 2512 +2014 1783 2512 +2014 1783 2512 +2014 1783 2512 +2014 1783 2512 +1992 1958 2037 +1992 1958 2037 +1992 1958 2037 +1992 1958 2037 +1992 1958 2037 +1992 1958 2038 +1992 1958 2038 +1992 1958 2039 +1992 1958 2040 +1992 1958 2041 +1992 1958 2042 +1992 1958 2044 +1989 1958 2051 +1984 1962 2068 +1979 1968 2090 +1970 1962 2115 +1966 1962 2148 +1966 1964 2190 +1964 1947 2231 +1943 1947 2310 +1978 1965 2395 +2061 1971 2481 +2133 1968 2516 +2133 1968 2516 +2133 1968 2516 +2133 1968 2516 +2133 1968 2516 +2133 1968 2516 +2133 1968 2516 +2133 1968 2516 +2133 1968 2516 +2133 1968 2516 +2142 2127 2061 +2142 2127 2061 +2142 2127 2062 +2142 2127 2063 +2142 2127 2064 +2143 2127 2065 +2143 2127 2067 +2143 2127 2069 +2144 2127 2072 +2145 2127 2076 +2146 2127 2082 +2148 2127 2089 +2148 2127 2095 +2143 2127 2104 +2135 2127 2116 +2137 2127 2132 +2144 2131 2161 +2141 2135 2204 +2133 2127 2256 +2149 2134 2316 +2174 2130 2395 +2237 2146 2485 +2277 2159 2520 +2277 2159 2520 +2277 2159 2520 +2277 2159 2520 +2277 2159 2520 +2277 2159 2520 +2277 2159 2520 +2277 2159 2520 +2277 2159 2520 +2277 2159 2520 +2379 2355 2126 +2380 2355 2127 +2380 2355 2127 +2380 2355 2127 +2380 2355 2127 +2380 2355 2127 +2380 2355 2128 +2381 2355 2128 +2381 2355 2129 +2381 2355 2130 +2382 2355 2131 +2382 2355 2133 +2382 2355 2135 +2381 2357 2141 +2379 2358 2148 +2379 2355 2161 +2378 2357 2192 +2376 2358 2230 +2382 2354 2270 +2402 2364 2335 +2420 2368 2405 +2473 2383 2495 +2499 2394 2533 +2499 2394 2533 +2499 2394 2533 +2499 2394 2533 +2499 2394 2533 +2499 2394 2533 +2499 2394 2533 +2499 2394 2533 +2499 2394 2533 +2499 2394 2533 +2681 2657 1947 +2681 2657 1947 +2681 2657 1947 +2681 2657 1947 +2681 2657 1947 +2681 2657 1947 +2681 2657 1947 +2681 2657 1947 +2681 2656 1951 +2680 2656 1956 +2680 2656 1963 +2679 2655 1973 +2679 2654 1971 +2678 2651 1967 +2678 2651 1962 +2678 2655 2011 +2679 2657 2064 +2682 2657 2129 +2684 2657 2213 +2688 2661 2311 +2699 2668 2415 +2717 2681 2528 +2726 2683 2577 +2726 2683 2577 +2726 2683 2577 +2726 2683 2577 +2726 2683 2577 +2726 2683 2577 +2726 2683 2577 +2726 2683 2577 +2726 2683 2577 +2726 2683 2577 +2715 2769 2427 +2716 2769 2427 +2716 2769 2427 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2429 +2716 2769 2429 +2717 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2720 2775 2457 +2716 2772 2452 +2713 2770 2455 +2714 2773 2485 +2718 2774 2523 +2717 2777 2567 +2721 2782 2627 +2725 2788 2702 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2715 2769 2427 +2716 2769 2427 +2716 2769 2427 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2429 +2716 2769 2429 +2717 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2720 2775 2457 +2716 2772 2452 +2713 2770 2455 +2714 2773 2485 +2718 2774 2523 +2717 2777 2567 +2721 2782 2627 +2725 2788 2702 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2715 2769 2427 +2716 2769 2427 +2716 2769 2427 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2429 +2716 2769 2429 +2717 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2720 2775 2457 +2716 2772 2452 +2713 2770 2455 +2714 2773 2485 +2718 2774 2523 +2717 2777 2567 +2721 2782 2627 +2725 2788 2702 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2715 2769 2427 +2716 2769 2427 +2716 2769 2427 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2429 +2716 2769 2429 +2717 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2720 2775 2457 +2716 2772 2452 +2713 2770 2455 +2714 2773 2485 +2718 2774 2523 +2717 2777 2567 +2721 2782 2627 +2725 2788 2702 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2715 2769 2427 +2716 2769 2427 +2716 2769 2427 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2429 +2716 2769 2429 +2717 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2720 2775 2457 +2716 2772 2452 +2713 2770 2455 +2714 2773 2485 +2718 2774 2523 +2717 2777 2567 +2721 2782 2627 +2725 2788 2702 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2715 2769 2427 +2716 2769 2427 +2716 2769 2427 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2429 +2716 2769 2429 +2717 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2720 2775 2457 +2716 2772 2452 +2713 2770 2455 +2714 2773 2485 +2718 2774 2523 +2717 2777 2567 +2721 2782 2627 +2725 2788 2702 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2715 2769 2427 +2716 2769 2427 +2716 2769 2427 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2429 +2716 2769 2429 +2717 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2720 2775 2457 +2716 2772 2452 +2713 2770 2455 +2714 2773 2485 +2718 2774 2523 +2717 2777 2567 +2721 2782 2627 +2725 2788 2702 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2715 2769 2427 +2716 2769 2427 +2716 2769 2427 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2429 +2716 2769 2429 +2717 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2720 2775 2457 +2716 2772 2452 +2713 2770 2455 +2714 2773 2485 +2718 2774 2523 +2717 2777 2567 +2721 2782 2627 +2725 2788 2702 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2715 2769 2427 +2716 2769 2427 +2716 2769 2427 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2429 +2716 2769 2429 +2717 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2720 2775 2457 +2716 2772 2452 +2713 2770 2455 +2714 2773 2485 +2718 2774 2523 +2717 2777 2567 +2721 2782 2627 +2725 2788 2702 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2715 2769 2427 +2716 2769 2427 +2716 2769 2427 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2428 +2716 2769 2429 +2716 2769 2429 +2717 2769 2430 +2717 2769 2431 +2718 2770 2433 +2719 2772 2443 +2720 2775 2457 +2716 2772 2452 +2713 2770 2455 +2714 2773 2485 +2718 2774 2523 +2717 2777 2567 +2721 2782 2627 +2725 2788 2702 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +2729 2794 2733 +1677 0 708 +1676 0 722 +1676 0 740 +1675 0 763 +1674 0 792 +1672 0 829 +1670 0 873 +1667 0 927 +1663 0 989 +1658 0 1062 +1657 0 1123 +1662 0 1179 +1666 0 1250 +1649 0 1372 +1636 0 1533 +1634 0 1672 +1671 0 1828 +1667 0 1929 +1689 355 2079 +1608 810 2211 +1232 994 2359 +1771 0 2470 +1854 0 2508 +1854 0 2508 +1854 0 2508 +1854 0 2508 +1854 0 2508 +1854 0 2508 +1854 0 2508 +1854 0 2508 +1854 0 2508 +1854 0 2508 +1676 0 726 +1676 0 735 +1675 0 753 +1674 0 775 +1673 0 804 +1672 0 839 +1669 0 883 +1667 0 935 +1663 0 997 +1658 0 1068 +1657 0 1129 +1662 0 1184 +1666 0 1253 +1649 0 1375 +1636 0 1535 +1635 0 1673 +1670 0 1829 +1666 0 1930 +1689 372 2079 +1607 814 2211 +1238 995 2359 +1771 0 2470 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1676 0 749 +1675 0 758 +1675 0 770 +1674 0 791 +1673 0 819 +1672 0 853 +1669 0 895 +1666 0 946 +1663 0 1007 +1657 0 1077 +1657 0 1136 +1661 0 1191 +1665 0 1259 +1649 0 1378 +1636 0 1537 +1635 0 1674 +1669 0 1829 +1665 0 1930 +1688 394 2080 +1606 821 2211 +1245 996 2359 +1771 0 2470 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1675 0 777 +1674 0 786 +1674 0 797 +1674 0 812 +1673 0 838 +1671 0 871 +1669 0 912 +1666 0 961 +1662 0 1020 +1657 0 1088 +1656 0 1146 +1661 0 1199 +1665 0 1266 +1649 0 1383 +1636 0 1541 +1636 0 1676 +1668 0 1830 +1663 0 1932 +1687 422 2080 +1605 829 2212 +1255 998 2359 +1772 0 2470 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1855 0 2508 +1674 0 814 +1673 0 822 +1673 0 832 +1673 0 845 +1672 0 863 +1671 0 894 +1668 0 933 +1666 0 980 +1662 0 1036 +1656 0 1102 +1655 0 1159 +1660 0 1210 +1664 0 1276 +1649 0 1390 +1636 0 1545 +1637 0 1679 +1667 0 1831 +1662 0 1934 +1686 457 2081 +1603 840 2212 +1268 1001 2360 +1772 0 2470 +1856 0 2508 +1856 0 2508 +1856 0 2508 +1856 0 2508 +1856 0 2508 +1856 0 2508 +1856 0 2508 +1856 0 2508 +1856 0 2508 +1856 0 2508 +1672 0 858 +1672 0 865 +1672 0 874 +1671 0 887 +1671 0 903 +1670 0 923 +1667 0 960 +1664 0 1004 +1661 0 1058 +1655 0 1121 +1655 0 1175 +1659 0 1225 +1663 0 1289 +1649 0 1398 +1636 0 1551 +1639 0 1683 +1666 0 1832 +1659 132 1936 +1684 500 2083 +1600 854 2213 +1285 1004 2360 +1773 0 2470 +1857 0 2508 +1857 0 2508 +1857 0 2508 +1857 0 2508 +1857 0 2508 +1857 0 2508 +1857 0 2508 +1857 0 2508 +1857 0 2508 +1857 0 2508 +1670 32 911 +1669 32 917 +1669 32 926 +1669 32 937 +1668 32 951 +1667 32 970 +1667 32 993 +1663 32 1035 +1660 32 1085 +1654 32 1144 +1654 32 1196 +1658 32 1244 +1662 0 1305 +1649 0 1410 +1636 0 1560 +1641 32 1688 +1663 32 1833 +1656 264 1939 +1682 551 2084 +1596 873 2214 +1306 1009 2361 +1773 0 2470 +1859 32 2508 +1859 32 2508 +1859 32 2508 +1859 32 2508 +1859 32 2508 +1859 32 2508 +1859 32 2508 +1859 32 2508 +1859 32 2508 +1859 32 2508 +1667 164 973 +1667 164 979 +1666 164 986 +1666 164 996 +1666 164 1009 +1664 164 1025 +1663 164 1046 +1662 164 1073 +1658 164 1119 +1653 164 1174 +1652 164 1223 +1657 164 1268 +1661 137 1326 +1649 0 1424 +1636 0 1570 +1644 164 1695 +1661 164 1835 +1652 396 1943 +1680 612 2086 +1591 896 2215 +1333 1014 2362 +1774 0 2470 +1861 164 2508 +1861 164 2508 +1861 164 2508 +1861 164 2508 +1861 164 2508 +1861 164 2508 +1861 164 2508 +1861 164 2508 +1861 164 2508 +1861 164 2508 +1663 296 1045 +1663 296 1050 +1663 296 1056 +1662 296 1065 +1662 296 1075 +1661 296 1090 +1660 296 1108 +1658 296 1131 +1656 296 1161 +1651 296 1212 +1650 296 1257 +1655 296 1299 +1659 276 1353 +1649 111 1443 +1636 111 1584 +1648 296 1704 +1657 296 1838 +1646 528 1948 +1676 683 2089 +1585 926 2217 +1367 1022 2363 +1772 0 2470 +1863 296 2508 +1863 296 2508 +1863 296 2508 +1863 296 2508 +1863 296 2508 +1863 296 2508 +1863 296 2508 +1863 296 2508 +1863 296 2508 +1863 296 2508 +1658 428 1127 +1658 428 1131 +1657 428 1136 +1657 428 1143 +1656 428 1152 +1655 428 1164 +1654 428 1180 +1653 428 1200 +1651 428 1225 +1648 428 1257 +1648 428 1298 +1653 428 1336 +1657 413 1387 +1648 265 1468 +1636 244 1601 +1653 428 1715 +1661 428 1846 +1638 660 1955 +1671 762 2093 +1576 963 2219 +1408 1032 2365 +1768 91 2470 +1866 428 2508 +1866 428 2508 +1866 428 2508 +1866 428 2508 +1866 428 2508 +1866 428 2508 +1866 428 2508 +1866 428 2508 +1866 428 2508 +1866 428 2508 +1655 583 1188 +1655 583 1191 +1654 583 1196 +1654 583 1202 +1654 583 1210 +1653 583 1221 +1651 583 1234 +1650 583 1252 +1648 583 1275 +1646 583 1304 +1644 536 1348 +1649 536 1383 +1653 524 1429 +1645 413 1503 +1633 376 1622 +1654 536 1730 +1662 536 1854 +1635 766 1962 +1664 863 2099 +1566 1025 2222 +1432 1062 2367 +1764 309 2470 +1872 536 2508 +1872 536 2508 +1872 536 2508 +1872 536 2508 +1872 536 2508 +1872 536 2508 +1872 536 2508 +1872 536 2508 +1872 536 2508 +1872 536 2508 +1655 745 1237 +1655 745 1240 +1654 745 1244 +1654 745 1249 +1654 745 1257 +1653 745 1266 +1651 745 1279 +1650 745 1295 +1648 745 1315 +1646 745 1342 +1644 713 1383 +1644 633 1439 +1648 624 1479 +1640 536 1547 +1628 508 1646 +1649 633 1749 +1657 633 1863 +1635 881 1973 +1655 979 2105 +1554 1109 2228 +1415 1110 2370 +1760 519 2469 +1880 633 2508 +1880 633 2508 +1880 633 2508 +1880 633 2508 +1880 633 2508 +1880 633 2508 +1880 633 2508 +1880 633 2508 +1880 633 2508 +1880 633 2508 +1655 918 1304 +1656 918 1306 +1655 918 1310 +1655 918 1314 +1654 918 1320 +1654 918 1329 +1653 918 1340 +1651 918 1354 +1649 918 1372 +1647 918 1395 +1645 897 1432 +1645 845 1482 +1643 779 1541 +1635 719 1601 +1623 701 1686 +1641 772 1775 +1650 779 1877 +1631 1007 1989 +1643 1092 2115 +1533 1205 2236 +1384 1170 2375 +1758 725 2468 +1889 758 2508 +1889 758 2508 +1889 758 2508 +1889 758 2508 +1889 758 2508 +1889 758 2508 +1889 758 2508 +1889 758 2508 +1889 758 2508 +1889 758 2508 +1647 1170 1441 +1648 1170 1443 +1648 1170 1445 +1648 1170 1448 +1649 1170 1452 +1650 1170 1457 +1651 1170 1463 +1653 1170 1472 +1654 1170 1484 +1655 1170 1500 +1654 1157 1529 +1654 1129 1570 +1651 1095 1619 +1635 1095 1678 +1623 1087 1751 +1615 1062 1817 +1632 1090 1907 +1595 1178 2016 +1626 1217 2123 +1463 1323 2255 +1427 1258 2375 +1780 1002 2468 +1884 986 2506 +1884 986 2506 +1884 986 2506 +1884 986 2506 +1884 986 2506 +1884 986 2506 +1884 986 2506 +1884 986 2506 +1884 986 2506 +1884 986 2506 +1671 1358 1617 +1671 1358 1618 +1672 1358 1619 +1672 1358 1621 +1672 1358 1624 +1673 1358 1628 +1674 1358 1632 +1676 1358 1638 +1678 1358 1646 +1680 1358 1657 +1683 1358 1672 +1687 1358 1694 +1687 1345 1729 +1672 1345 1775 +1659 1345 1825 +1644 1322 1879 +1625 1320 1950 +1565 1390 2060 +1550 1377 2150 +1313 1430 2275 +1491 1332 2378 +1794 1220 2471 +1883 1202 2507 +1883 1202 2507 +1883 1202 2507 +1883 1202 2507 +1883 1202 2507 +1883 1202 2507 +1883 1202 2507 +1883 1202 2507 +1883 1202 2507 +1883 1202 2507 +1720 1522 1779 +1720 1522 1780 +1719 1522 1781 +1718 1522 1782 +1717 1522 1783 +1716 1522 1785 +1714 1522 1787 +1712 1522 1790 +1708 1522 1795 +1704 1522 1800 +1703 1522 1811 +1707 1522 1827 +1711 1522 1847 +1703 1522 1873 +1693 1522 1912 +1668 1522 1965 +1628 1506 2021 +1607 1566 2121 +1540 1536 2191 +1494 1506 2283 +1572 1474 2382 +1813 1446 2473 +1923 1435 2511 +1923 1435 2511 +1923 1435 2511 +1923 1435 2511 +1923 1435 2511 +1923 1435 2511 +1923 1435 2511 +1923 1435 2511 +1923 1435 2511 +1923 1435 2511 +1810 1655 1910 +1809 1655 1911 +1809 1655 1911 +1808 1655 1912 +1807 1656 1913 +1806 1657 1915 +1805 1658 1918 +1802 1659 1921 +1800 1661 1925 +1796 1662 1930 +1791 1662 1934 +1784 1662 1939 +1776 1662 1948 +1775 1662 1972 +1766 1670 2011 +1745 1681 2051 +1732 1662 2087 +1680 1676 2155 +1604 1655 2226 +1644 1643 2305 +1738 1626 2385 +1900 1611 2473 +1984 1617 2510 +1984 1617 2510 +1984 1617 2510 +1984 1617 2510 +1984 1617 2510 +1984 1617 2510 +1984 1617 2510 +1984 1617 2510 +1984 1617 2510 +1984 1617 2510 +1907 1800 1983 +1907 1800 1984 +1907 1800 1984 +1907 1800 1985 +1907 1800 1986 +1907 1800 1987 +1907 1800 1989 +1907 1800 1991 +1907 1800 1994 +1907 1800 1997 +1906 1801 2005 +1906 1801 2015 +1905 1801 2029 +1901 1801 2043 +1890 1801 2062 +1872 1801 2086 +1874 1807 2128 +1850 1801 2174 +1847 1800 2243 +1818 1792 2312 +1871 1797 2387 +1976 1799 2480 +2034 1783 2511 +2034 1783 2511 +2034 1783 2511 +2034 1783 2511 +2034 1783 2511 +2034 1783 2511 +2034 1783 2511 +2034 1783 2511 +2034 1783 2511 +2034 1783 2511 +2034 1958 2033 +2033 1958 2033 +2033 1958 2034 +2032 1958 2034 +2031 1959 2036 +2031 1959 2037 +2029 1960 2039 +2027 1961 2041 +2025 1961 2044 +2021 1963 2049 +2020 1963 2052 +2020 1963 2054 +2020 1963 2059 +2020 1959 2069 +2016 1962 2088 +2004 1969 2111 +1998 1964 2152 +1993 1963 2193 +1987 1952 2238 +1975 1952 2313 +2009 1966 2398 +2073 1966 2481 +2135 1969 2517 +2135 1969 2517 +2135 1969 2517 +2135 1969 2517 +2135 1969 2517 +2135 1969 2517 +2135 1969 2517 +2135 1969 2517 +2135 1969 2517 +2135 1969 2517 +2163 2131 2063 +2163 2131 2063 +2163 2131 2064 +2163 2131 2065 +2163 2131 2065 +2163 2131 2066 +2163 2131 2068 +2163 2131 2069 +2163 2131 2072 +2163 2131 2075 +2164 2131 2080 +2165 2131 2087 +2166 2131 2096 +2164 2131 2105 +2157 2131 2117 +2148 2127 2128 +2154 2127 2154 +2155 2131 2206 +2143 2127 2260 +2159 2135 2315 +2188 2134 2395 +2251 2149 2486 +2283 2159 2520 +2283 2159 2520 +2283 2159 2520 +2283 2159 2520 +2283 2159 2520 +2283 2159 2520 +2283 2159 2520 +2283 2159 2520 +2283 2159 2520 +2283 2159 2520 +2386 2355 2123 +2386 2355 2123 +2386 2356 2123 +2387 2356 2123 +2387 2356 2124 +2387 2356 2124 +2387 2356 2125 +2387 2357 2126 +2388 2357 2127 +2388 2357 2129 +2389 2358 2131 +2389 2358 2133 +2389 2357 2135 +2386 2356 2141 +2384 2356 2148 +2382 2356 2170 +2388 2357 2191 +2386 2356 2226 +2394 2358 2272 +2409 2366 2337 +2431 2373 2403 +2476 2384 2495 +2508 2398 2531 +2508 2398 2531 +2508 2398 2531 +2508 2398 2531 +2508 2398 2531 +2508 2398 2531 +2508 2398 2531 +2508 2398 2531 +2508 2398 2531 +2508 2398 2531 +2684 2656 1957 +2684 2656 1957 +2684 2656 1956 +2684 2656 1956 +2684 2656 1956 +2684 2656 1956 +2684 2656 1955 +2684 2656 1954 +2684 2656 1955 +2684 2656 1956 +2684 2656 1961 +2683 2656 1971 +2683 2655 1982 +2682 2655 1994 +2682 2655 1993 +2681 2656 2011 +2682 2656 2069 +2683 2657 2133 +2686 2657 2216 +2691 2663 2315 +2700 2669 2417 +2719 2681 2533 +2726 2683 2576 +2726 2683 2576 +2726 2683 2576 +2726 2683 2576 +2726 2683 2576 +2726 2683 2576 +2726 2683 2576 +2726 2683 2576 +2726 2683 2576 +2726 2683 2576 +2718 2771 2437 +2718 2771 2437 +2718 2771 2437 +2718 2771 2436 +2718 2771 2436 +2718 2771 2435 +2718 2771 2435 +2717 2770 2434 +2717 2770 2432 +2717 2770 2430 +2717 2769 2430 +2718 2769 2431 +2718 2770 2433 +2719 2771 2443 +2720 2774 2457 +2721 2773 2466 +2716 2771 2466 +2717 2774 2492 +2718 2776 2528 +2718 2777 2569 +2722 2782 2624 +2727 2788 2703 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2718 2771 2437 +2718 2771 2437 +2718 2771 2437 +2718 2771 2436 +2718 2771 2436 +2718 2771 2435 +2718 2771 2435 +2717 2770 2434 +2717 2770 2432 +2717 2770 2430 +2717 2769 2430 +2718 2769 2431 +2718 2770 2433 +2719 2771 2443 +2720 2774 2457 +2721 2773 2466 +2716 2771 2466 +2717 2774 2492 +2718 2776 2528 +2718 2777 2569 +2722 2782 2624 +2727 2788 2703 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2718 2771 2437 +2718 2771 2437 +2718 2771 2437 +2718 2771 2436 +2718 2771 2436 +2718 2771 2435 +2718 2771 2435 +2717 2770 2434 +2717 2770 2432 +2717 2770 2430 +2717 2769 2430 +2718 2769 2431 +2718 2770 2433 +2719 2771 2443 +2720 2774 2457 +2721 2773 2466 +2716 2771 2466 +2717 2774 2492 +2718 2776 2528 +2718 2777 2569 +2722 2782 2624 +2727 2788 2703 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2718 2771 2437 +2718 2771 2437 +2718 2771 2437 +2718 2771 2436 +2718 2771 2436 +2718 2771 2435 +2718 2771 2435 +2717 2770 2434 +2717 2770 2432 +2717 2770 2430 +2717 2769 2430 +2718 2769 2431 +2718 2770 2433 +2719 2771 2443 +2720 2774 2457 +2721 2773 2466 +2716 2771 2466 +2717 2774 2492 +2718 2776 2528 +2718 2777 2569 +2722 2782 2624 +2727 2788 2703 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2718 2771 2437 +2718 2771 2437 +2718 2771 2437 +2718 2771 2436 +2718 2771 2436 +2718 2771 2435 +2718 2771 2435 +2717 2770 2434 +2717 2770 2432 +2717 2770 2430 +2717 2769 2430 +2718 2769 2431 +2718 2770 2433 +2719 2771 2443 +2720 2774 2457 +2721 2773 2466 +2716 2771 2466 +2717 2774 2492 +2718 2776 2528 +2718 2777 2569 +2722 2782 2624 +2727 2788 2703 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2718 2771 2437 +2718 2771 2437 +2718 2771 2437 +2718 2771 2436 +2718 2771 2436 +2718 2771 2435 +2718 2771 2435 +2717 2770 2434 +2717 2770 2432 +2717 2770 2430 +2717 2769 2430 +2718 2769 2431 +2718 2770 2433 +2719 2771 2443 +2720 2774 2457 +2721 2773 2466 +2716 2771 2466 +2717 2774 2492 +2718 2776 2528 +2718 2777 2569 +2722 2782 2624 +2727 2788 2703 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2718 2771 2437 +2718 2771 2437 +2718 2771 2437 +2718 2771 2436 +2718 2771 2436 +2718 2771 2435 +2718 2771 2435 +2717 2770 2434 +2717 2770 2432 +2717 2770 2430 +2717 2769 2430 +2718 2769 2431 +2718 2770 2433 +2719 2771 2443 +2720 2774 2457 +2721 2773 2466 +2716 2771 2466 +2717 2774 2492 +2718 2776 2528 +2718 2777 2569 +2722 2782 2624 +2727 2788 2703 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2718 2771 2437 +2718 2771 2437 +2718 2771 2437 +2718 2771 2436 +2718 2771 2436 +2718 2771 2435 +2718 2771 2435 +2717 2770 2434 +2717 2770 2432 +2717 2770 2430 +2717 2769 2430 +2718 2769 2431 +2718 2770 2433 +2719 2771 2443 +2720 2774 2457 +2721 2773 2466 +2716 2771 2466 +2717 2774 2492 +2718 2776 2528 +2718 2777 2569 +2722 2782 2624 +2727 2788 2703 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2718 2771 2437 +2718 2771 2437 +2718 2771 2437 +2718 2771 2436 +2718 2771 2436 +2718 2771 2435 +2718 2771 2435 +2717 2770 2434 +2717 2770 2432 +2717 2770 2430 +2717 2769 2430 +2718 2769 2431 +2718 2770 2433 +2719 2771 2443 +2720 2774 2457 +2721 2773 2466 +2716 2771 2466 +2717 2774 2492 +2718 2776 2528 +2718 2777 2569 +2722 2782 2624 +2727 2788 2703 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2718 2771 2437 +2718 2771 2437 +2718 2771 2437 +2718 2771 2436 +2718 2771 2436 +2718 2771 2435 +2718 2771 2435 +2717 2770 2434 +2717 2770 2432 +2717 2770 2430 +2717 2769 2430 +2718 2769 2431 +2718 2770 2433 +2719 2771 2443 +2720 2774 2457 +2721 2773 2466 +2716 2771 2466 +2717 2774 2492 +2718 2776 2528 +2718 2777 2569 +2722 2782 2624 +2727 2788 2703 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +2731 2794 2734 +1824 0 1212 +1824 0 1217 +1825 0 1223 +1825 0 1231 +1826 0 1242 +1827 0 1255 +1829 0 1273 +1831 0 1296 +1833 0 1325 +1830 0 1360 +1825 0 1405 +1819 0 1458 +1810 0 1521 +1804 0 1576 +1787 0 1659 +1777 0 1755 +1770 0 1865 +1790 0 1986 +1740 750 2108 +1692 916 2230 +1561 947 2370 +1845 0 2469 +1920 0 2511 +1920 0 2511 +1920 0 2511 +1920 0 2511 +1920 0 2511 +1920 0 2511 +1920 0 2511 +1920 0 2511 +1920 0 2511 +1920 0 2511 +1824 0 1216 +1824 0 1219 +1825 0 1225 +1825 0 1233 +1826 0 1243 +1827 0 1257 +1829 0 1275 +1831 0 1298 +1833 0 1326 +1830 0 1362 +1825 0 1406 +1819 0 1459 +1810 0 1523 +1804 0 1578 +1787 0 1661 +1777 0 1756 +1770 0 1866 +1790 32 1986 +1740 754 2108 +1692 922 2231 +1561 949 2370 +1845 0 2470 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1825 0 1221 +1825 0 1224 +1825 0 1228 +1825 0 1235 +1826 0 1246 +1827 0 1260 +1829 0 1277 +1831 0 1300 +1833 0 1328 +1830 0 1364 +1825 0 1408 +1819 0 1461 +1810 0 1524 +1804 0 1580 +1787 0 1663 +1777 0 1758 +1770 44 1866 +1789 88 1987 +1740 759 2109 +1692 931 2231 +1562 952 2370 +1845 0 2470 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1920 0 2510 +1825 0 1228 +1825 0 1231 +1825 0 1234 +1825 0 1239 +1826 0 1249 +1827 0 1263 +1829 0 1280 +1831 0 1302 +1833 0 1331 +1830 0 1366 +1825 0 1410 +1819 0 1463 +1810 0 1526 +1804 0 1584 +1787 0 1666 +1777 0 1760 +1769 102 1867 +1788 153 1988 +1739 765 2110 +1692 942 2232 +1563 957 2370 +1845 0 2470 +1920 44 2510 +1920 44 2510 +1920 44 2510 +1920 44 2510 +1920 44 2510 +1920 44 2510 +1920 44 2510 +1920 44 2510 +1920 44 2510 +1920 44 2510 +1826 0 1238 +1826 0 1240 +1826 0 1243 +1826 0 1248 +1826 0 1254 +1827 0 1267 +1829 0 1284 +1831 0 1306 +1833 0 1335 +1830 0 1370 +1825 0 1413 +1819 0 1465 +1810 0 1528 +1804 0 1588 +1787 0 1669 +1777 83 1763 +1769 170 1868 +1787 229 1990 +1739 774 2111 +1692 956 2233 +1563 962 2370 +1845 0 2470 +1921 103 2510 +1921 103 2510 +1921 103 2510 +1921 103 2510 +1921 103 2510 +1921 103 2510 +1921 103 2510 +1921 103 2510 +1921 103 2510 +1921 103 2510 +1827 0 1250 +1827 0 1252 +1827 0 1255 +1827 0 1260 +1827 1 1265 +1827 30 1273 +1829 30 1290 +1831 30 1312 +1833 30 1339 +1830 30 1375 +1825 30 1417 +1819 30 1469 +1810 64 1531 +1804 132 1593 +1787 132 1674 +1777 215 1767 +1768 247 1870 +1785 313 1991 +1738 785 2113 +1692 974 2235 +1564 970 2370 +1845 0 2470 +1921 171 2510 +1921 171 2510 +1921 171 2510 +1921 171 2510 +1921 171 2510 +1921 171 2510 +1921 171 2510 +1921 171 2510 +1921 171 2510 +1921 171 2510 +1829 58 1265 +1829 66 1267 +1829 77 1270 +1829 91 1275 +1829 109 1280 +1829 133 1288 +1829 163 1297 +1831 163 1318 +1833 163 1346 +1830 163 1380 +1825 163 1423 +1819 163 1474 +1810 188 1536 +1804 264 1601 +1787 264 1680 +1777 347 1772 +1767 334 1872 +1783 406 1994 +1737 799 2115 +1692 998 2237 +1565 979 2370 +1845 32 2471 +1922 248 2510 +1922 248 2510 +1922 248 2510 +1922 248 2510 +1922 248 2510 +1922 248 2510 +1922 248 2510 +1922 248 2510 +1922 248 2510 +1922 248 2510 +1831 183 1285 +1831 190 1287 +1831 198 1290 +1831 209 1294 +1831 223 1299 +1831 242 1306 +1831 265 1315 +1831 295 1328 +1833 295 1354 +1830 295 1388 +1825 295 1430 +1819 295 1480 +1810 314 1541 +1804 396 1611 +1787 396 1688 +1777 479 1778 +1766 428 1875 +1779 506 1998 +1736 818 2119 +1692 1027 2240 +1567 992 2369 +1845 164 2471 +1922 335 2510 +1922 335 2510 +1922 335 2510 +1922 335 2510 +1922 335 2510 +1922 335 2510 +1922 335 2510 +1922 335 2510 +1922 335 2510 +1922 335 2510 +1833 310 1310 +1833 315 1312 +1833 322 1315 +1833 330 1319 +1833 341 1324 +1833 355 1331 +1833 373 1339 +1833 397 1351 +1833 426 1365 +1830 426 1398 +1825 426 1439 +1819 426 1489 +1810 441 1548 +1804 528 1623 +1787 528 1699 +1777 611 1787 +1765 530 1878 +1775 613 2002 +1734 841 2123 +1692 1064 2244 +1569 1008 2369 +1844 330 2472 +1924 429 2510 +1924 429 2510 +1924 429 2510 +1924 429 2510 +1924 429 2510 +1924 429 2510 +1924 429 2510 +1924 429 2510 +1924 429 2510 +1924 429 2510 +1830 439 1356 +1830 443 1358 +1830 447 1361 +1830 454 1364 +1830 462 1369 +1830 473 1375 +1830 487 1383 +1830 506 1393 +1830 529 1407 +1828 531 1428 +1824 531 1466 +1817 531 1513 +1809 543 1570 +1803 601 1641 +1787 591 1713 +1780 686 1796 +1768 615 1886 +1769 725 2008 +1730 897 2126 +1685 1092 2246 +1595 1019 2371 +1840 422 2472 +1926 531 2509 +1926 531 2509 +1926 531 2509 +1926 531 2509 +1926 531 2509 +1926 531 2509 +1926 531 2509 +1926 531 2509 +1926 531 2509 +1926 531 2509 +1825 568 1412 +1825 571 1414 +1825 575 1417 +1825 579 1420 +1825 586 1424 +1825 594 1429 +1825 605 1436 +1825 619 1445 +1825 638 1457 +1824 640 1476 +1821 640 1501 +1814 640 1545 +1806 648 1598 +1800 695 1664 +1787 658 1731 +1782 751 1810 +1774 707 1896 +1763 805 2012 +1724 965 2131 +1675 1127 2249 +1629 1033 2373 +1836 515 2472 +1930 640 2509 +1930 640 2509 +1930 640 2509 +1930 640 2509 +1930 640 2509 +1930 640 2509 +1930 640 2509 +1930 640 2509 +1930 640 2509 +1930 640 2509 +1819 699 1479 +1819 701 1480 +1819 703 1482 +1819 707 1485 +1819 712 1488 +1819 718 1493 +1819 727 1499 +1819 737 1507 +1819 752 1518 +1817 753 1534 +1814 753 1556 +1811 753 1584 +1803 760 1633 +1797 797 1695 +1787 733 1754 +1782 813 1830 +1781 806 1910 +1756 887 2016 +1716 1042 2138 +1662 1169 2253 +1634 1062 2374 +1829 616 2472 +1935 753 2509 +1935 753 2509 +1935 753 2509 +1935 753 2509 +1935 753 2509 +1935 753 2509 +1935 753 2509 +1935 753 2509 +1935 753 2509 +1935 753 2509 +1811 848 1553 +1811 848 1554 +1811 851 1556 +1811 853 1558 +1811 857 1561 +1811 861 1565 +1811 867 1570 +1811 875 1577 +1811 886 1586 +1809 887 1600 +1807 887 1619 +1804 887 1644 +1799 892 1675 +1793 920 1732 +1785 861 1784 +1781 901 1853 +1789 932 1929 +1748 990 2023 +1706 1137 2147 +1648 1218 2257 +1620 1108 2375 +1824 746 2471 +1942 876 2509 +1942 876 2509 +1942 876 2509 +1942 876 2509 +1942 876 2509 +1942 876 2509 +1942 876 2509 +1942 876 2509 +1942 876 2509 +1942 876 2509 +1820 1109 1630 +1820 1109 1631 +1819 1109 1633 +1819 1109 1635 +1818 1109 1637 +1817 1109 1641 +1815 1109 1645 +1813 1109 1651 +1810 1109 1659 +1810 1109 1670 +1808 1109 1686 +1805 1109 1707 +1800 1112 1734 +1793 1134 1775 +1785 1098 1823 +1767 1090 1881 +1785 1153 1970 +1749 1166 2045 +1704 1267 2165 +1646 1289 2266 +1638 1188 2377 +1843 976 2471 +1948 1035 2509 +1948 1035 2509 +1948 1035 2509 +1948 1035 2509 +1948 1035 2509 +1948 1035 2509 +1948 1035 2509 +1948 1035 2509 +1948 1035 2509 +1948 1035 2509 +1812 1336 1724 +1812 1336 1725 +1811 1336 1727 +1811 1336 1728 +1810 1336 1730 +1809 1336 1733 +1807 1336 1736 +1805 1336 1741 +1802 1336 1748 +1804 1336 1756 +1806 1336 1767 +1810 1336 1781 +1808 1338 1803 +1801 1351 1839 +1785 1351 1887 +1762 1338 1936 +1760 1342 2007 +1728 1366 2073 +1683 1382 2175 +1573 1418 2288 +1713 1264 2379 +1872 1202 2471 +1942 1211 2508 +1942 1211 2508 +1942 1211 2508 +1942 1211 2508 +1942 1211 2508 +1942 1211 2508 +1942 1211 2508 +1942 1211 2508 +1942 1211 2508 +1942 1211 2508 +1832 1511 1838 +1832 1511 1839 +1832 1511 1839 +1832 1511 1840 +1832 1511 1841 +1832 1511 1843 +1832 1511 1845 +1832 1511 1848 +1832 1511 1852 +1829 1511 1857 +1829 1511 1865 +1832 1511 1876 +1834 1511 1891 +1824 1511 1912 +1810 1511 1951 +1783 1522 2002 +1774 1495 2052 +1746 1515 2117 +1708 1501 2192 +1652 1522 2297 +1779 1436 2383 +1898 1422 2472 +1969 1408 2508 +1969 1408 2508 +1969 1408 2508 +1969 1408 2508 +1969 1408 2508 +1969 1408 2508 +1969 1408 2508 +1969 1408 2508 +1969 1408 2508 +1969 1408 2508 +1888 1654 1938 +1888 1654 1938 +1888 1654 1939 +1888 1654 1940 +1888 1654 1940 +1888 1654 1942 +1888 1654 1943 +1888 1654 1946 +1888 1654 1949 +1885 1654 1953 +1881 1654 1958 +1875 1654 1965 +1868 1655 1975 +1863 1662 1991 +1855 1662 2017 +1843 1654 2055 +1817 1654 2107 +1794 1657 2159 +1766 1662 2229 +1800 1621 2303 +1843 1605 2385 +1921 1624 2474 +2007 1630 2511 +2007 1630 2511 +2007 1630 2511 +2007 1630 2511 +2007 1630 2511 +2007 1630 2511 +2007 1630 2511 +2007 1630 2511 +2007 1630 2511 +2007 1630 2511 +1977 1783 1983 +1977 1783 1984 +1977 1783 1984 +1977 1783 1985 +1977 1783 1986 +1978 1783 1987 +1978 1783 1989 +1979 1783 1991 +1980 1783 1994 +1980 1783 1997 +1977 1785 2004 +1973 1788 2012 +1966 1792 2023 +1959 1786 2037 +1958 1786 2064 +1950 1793 2093 +1929 1801 2129 +1939 1792 2174 +1905 1778 2235 +1877 1792 2311 +1920 1800 2389 +2007 1802 2476 +2064 1798 2511 +2064 1798 2511 +2064 1798 2511 +2064 1798 2511 +2064 1798 2511 +2064 1798 2511 +2064 1798 2511 +2064 1798 2511 +2064 1798 2511 +2064 1798 2511 +2083 1958 2032 +2082 1958 2032 +2082 1958 2032 +2082 1958 2033 +2082 1958 2034 +2082 1958 2035 +2081 1958 2036 +2081 1958 2038 +2080 1958 2041 +2077 1959 2045 +2073 1961 2051 +2067 1963 2058 +2061 1965 2068 +2056 1964 2080 +2056 1959 2093 +2052 1959 2114 +2036 1961 2142 +2031 1968 2199 +2019 1953 2244 +2017 1958 2317 +2046 1962 2395 +2106 1970 2483 +2149 1969 2517 +2149 1969 2517 +2149 1969 2517 +2149 1969 2517 +2149 1969 2517 +2149 1969 2517 +2149 1969 2517 +2149 1969 2517 +2149 1969 2517 +2149 1969 2517 +2191 2132 2068 +2191 2132 2068 +2191 2132 2069 +2190 2132 2069 +2190 2132 2070 +2190 2131 2071 +2189 2131 2072 +2188 2130 2074 +2187 2130 2076 +2187 2129 2079 +2187 2129 2083 +2187 2129 2088 +2187 2129 2096 +2184 2129 2105 +2180 2129 2117 +2180 2128 2131 +2170 2124 2154 +2176 2127 2200 +2167 2133 2262 +2179 2135 2315 +2208 2135 2395 +2271 2155 2484 +2291 2159 2521 +2291 2159 2521 +2291 2159 2521 +2291 2159 2521 +2291 2159 2521 +2291 2159 2521 +2291 2159 2521 +2291 2159 2521 +2291 2159 2521 +2291 2159 2521 +2407 2360 2121 +2407 2360 2121 +2407 2360 2121 +2407 2360 2121 +2407 2360 2121 +2407 2359 2122 +2407 2359 2122 +2407 2359 2123 +2407 2358 2123 +2408 2359 2125 +2408 2360 2128 +2409 2360 2131 +2409 2360 2135 +2408 2362 2141 +2405 2359 2147 +2402 2358 2164 +2395 2358 2193 +2399 2361 2228 +2408 2365 2275 +2419 2368 2338 +2446 2373 2402 +2486 2387 2498 +2516 2398 2529 +2516 2398 2529 +2516 2398 2529 +2516 2398 2529 +2516 2398 2529 +2516 2398 2529 +2516 2398 2529 +2516 2398 2529 +2516 2398 2529 +2516 2398 2529 +2687 2656 1984 +2687 2656 1984 +2687 2656 1984 +2687 2656 1984 +2687 2656 1984 +2687 2656 1984 +2687 2656 1984 +2687 2656 1984 +2688 2656 1989 +2688 2656 1991 +2688 2656 1992 +2689 2656 1995 +2690 2656 1999 +2690 2657 2008 +2688 2657 2023 +2688 2657 2054 +2688 2658 2083 +2688 2659 2149 +2689 2659 2227 +2696 2667 2323 +2703 2668 2417 +2722 2681 2534 +2728 2686 2580 +2728 2686 2580 +2728 2686 2580 +2728 2686 2580 +2728 2686 2580 +2728 2686 2580 +2728 2686 2580 +2728 2686 2580 +2728 2686 2580 +2728 2686 2580 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2772 2447 +2721 2772 2444 +2721 2771 2441 +2720 2770 2438 +2721 2771 2443 +2722 2773 2457 +2723 2774 2473 +2723 2774 2481 +2717 2775 2500 +2720 2779 2531 +2720 2778 2569 +2726 2782 2625 +2731 2788 2703 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2772 2447 +2721 2772 2444 +2721 2771 2441 +2720 2770 2438 +2721 2771 2443 +2722 2773 2457 +2723 2774 2473 +2723 2774 2481 +2717 2775 2500 +2720 2779 2531 +2720 2778 2569 +2726 2782 2625 +2731 2788 2703 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2772 2447 +2721 2772 2444 +2721 2771 2441 +2720 2770 2438 +2721 2771 2443 +2722 2773 2457 +2723 2774 2473 +2723 2774 2481 +2717 2775 2500 +2720 2779 2531 +2720 2778 2569 +2726 2782 2625 +2731 2788 2703 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2772 2447 +2721 2772 2444 +2721 2771 2441 +2720 2770 2438 +2721 2771 2443 +2722 2773 2457 +2723 2774 2473 +2723 2774 2481 +2717 2775 2500 +2720 2779 2531 +2720 2778 2569 +2726 2782 2625 +2731 2788 2703 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2772 2447 +2721 2772 2444 +2721 2771 2441 +2720 2770 2438 +2721 2771 2443 +2722 2773 2457 +2723 2774 2473 +2723 2774 2481 +2717 2775 2500 +2720 2779 2531 +2720 2778 2569 +2726 2782 2625 +2731 2788 2703 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2772 2447 +2721 2772 2444 +2721 2771 2441 +2720 2770 2438 +2721 2771 2443 +2722 2773 2457 +2723 2774 2473 +2723 2774 2481 +2717 2775 2500 +2720 2779 2531 +2720 2778 2569 +2726 2782 2625 +2731 2788 2703 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2772 2447 +2721 2772 2444 +2721 2771 2441 +2720 2770 2438 +2721 2771 2443 +2722 2773 2457 +2723 2774 2473 +2723 2774 2481 +2717 2775 2500 +2720 2779 2531 +2720 2778 2569 +2726 2782 2625 +2731 2788 2703 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2772 2447 +2721 2772 2444 +2721 2771 2441 +2720 2770 2438 +2721 2771 2443 +2722 2773 2457 +2723 2774 2473 +2723 2774 2481 +2717 2775 2500 +2720 2779 2531 +2720 2778 2569 +2726 2782 2625 +2731 2788 2703 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2772 2447 +2721 2772 2444 +2721 2771 2441 +2720 2770 2438 +2721 2771 2443 +2722 2773 2457 +2723 2774 2473 +2723 2774 2481 +2717 2775 2500 +2720 2779 2531 +2720 2778 2569 +2726 2782 2625 +2731 2788 2703 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2773 2448 +2722 2772 2447 +2721 2772 2444 +2721 2771 2441 +2720 2770 2438 +2721 2771 2443 +2722 2773 2457 +2723 2774 2473 +2723 2774 2481 +2717 2775 2500 +2720 2779 2531 +2720 2778 2569 +2726 2782 2625 +2731 2788 2703 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +2734 2794 2737 +1906 311 1618 +1906 316 1619 +1906 322 1620 +1906 330 1621 +1905 342 1623 +1905 356 1626 +1905 374 1630 +1904 398 1634 +1903 427 1640 +1901 464 1648 +1904 471 1670 +1909 471 1700 +1914 464 1736 +1910 152 1775 +1903 63 1817 +1900 481 1880 +1885 481 1958 +1866 624 2053 +1837 927 2156 +1786 933 2261 +1818 679 2380 +1933 0 2471 +1989 487 2513 +1989 487 2513 +1989 487 2513 +1989 487 2513 +1989 487 2513 +1989 487 2513 +1989 487 2513 +1989 487 2513 +1989 487 2513 +1989 487 2513 +1906 330 1619 +1907 325 1621 +1906 332 1622 +1906 340 1623 +1906 351 1625 +1905 365 1628 +1905 383 1631 +1904 406 1636 +1903 435 1642 +1901 471 1650 +1904 478 1672 +1910 478 1702 +1915 478 1736 +1910 179 1776 +1903 95 1817 +1900 491 1880 +1885 491 1958 +1866 631 2054 +1837 928 2156 +1786 935 2261 +1818 681 2380 +1933 0 2471 +1989 491 2513 +1989 491 2513 +1989 491 2513 +1989 491 2513 +1989 491 2513 +1989 491 2513 +1989 491 2513 +1989 491 2513 +1989 491 2513 +1989 491 2513 +1906 354 1621 +1907 350 1622 +1907 344 1624 +1907 352 1625 +1906 362 1627 +1906 376 1630 +1905 393 1633 +1904 416 1638 +1903 444 1644 +1902 480 1652 +1905 486 1674 +1910 486 1704 +1915 486 1738 +1910 212 1777 +1904 135 1818 +1900 504 1881 +1885 504 1959 +1866 640 2054 +1837 930 2156 +1787 936 2261 +1819 684 2380 +1933 0 2471 +1990 495 2513 +1990 495 2513 +1990 495 2513 +1990 495 2513 +1990 495 2513 +1990 495 2513 +1990 495 2513 +1990 495 2513 +1990 495 2513 +1990 495 2513 +1906 384 1623 +1907 381 1624 +1907 375 1626 +1907 367 1628 +1907 377 1630 +1906 391 1633 +1905 408 1636 +1905 430 1641 +1904 457 1647 +1902 491 1655 +1905 498 1676 +1911 498 1706 +1915 498 1740 +1910 253 1778 +1904 183 1819 +1900 520 1882 +1885 520 1960 +1866 653 2055 +1838 932 2156 +1787 939 2261 +1819 688 2381 +1933 0 2471 +1990 501 2513 +1990 501 2513 +1990 501 2513 +1990 501 2513 +1990 501 2513 +1990 501 2513 +1990 501 2513 +1990 501 2513 +1990 501 2513 +1990 501 2513 +1906 422 1625 +1907 419 1626 +1907 413 1628 +1907 406 1631 +1908 397 1634 +1907 409 1636 +1906 426 1640 +1905 447 1644 +1904 473 1650 +1903 507 1658 +1906 513 1680 +1911 513 1709 +1916 513 1743 +1911 303 1780 +1904 241 1821 +1899 542 1884 +1886 542 1962 +1866 669 2056 +1838 935 2156 +1788 941 2261 +1820 693 2381 +1933 0 2471 +1991 508 2513 +1991 508 2513 +1991 508 2513 +1991 508 2513 +1991 508 2513 +1991 508 2513 +1991 508 2513 +1991 508 2513 +1991 508 2513 +1991 508 2513 +1906 468 1629 +1907 465 1630 +1907 460 1632 +1907 454 1634 +1908 445 1637 +1908 434 1641 +1907 449 1645 +1906 469 1649 +1905 495 1655 +1904 526 1663 +1907 533 1684 +1912 533 1713 +1917 533 1747 +1911 362 1783 +1905 308 1823 +1899 569 1886 +1886 569 1964 +1866 690 2057 +1839 939 2157 +1789 945 2262 +1821 700 2381 +1933 10 2471 +1993 518 2513 +1993 518 2513 +1993 518 2513 +1993 518 2513 +1993 518 2513 +1993 518 2513 +1993 518 2513 +1993 518 2513 +1993 518 2513 +1993 518 2513 +1906 523 1633 +1907 520 1635 +1907 516 1636 +1907 511 1639 +1908 503 1642 +1908 493 1646 +1908 479 1651 +1908 498 1656 +1907 521 1662 +1905 551 1669 +1908 557 1690 +1913 557 1719 +1918 557 1753 +1912 430 1786 +1905 384 1826 +1898 602 1888 +1887 602 1966 +1866 716 2059 +1839 944 2157 +1791 950 2262 +1823 708 2381 +1933 84 2470 +1994 531 2513 +1994 531 2513 +1994 531 2513 +1994 531 2513 +1994 531 2513 +1994 531 2513 +1994 531 2513 +1994 531 2513 +1994 531 2513 +1994 531 2513 +1906 588 1640 +1907 585 1641 +1907 582 1643 +1907 577 1645 +1908 570 1648 +1908 562 1652 +1908 550 1657 +1909 533 1664 +1908 555 1670 +1907 583 1678 +1910 588 1698 +1915 588 1727 +1920 588 1759 +1913 508 1790 +1906 470 1830 +1897 644 1892 +1888 644 1970 +1866 749 2061 +1840 951 2157 +1793 957 2263 +1825 720 2382 +1933 167 2470 +1996 548 2512 +1996 548 2512 +1996 548 2512 +1996 548 2512 +1996 548 2512 +1996 548 2512 +1996 548 2512 +1996 548 2512 +1996 548 2512 +1996 548 2512 +1906 662 1647 +1907 660 1649 +1907 657 1650 +1907 653 1653 +1908 647 1655 +1908 640 1659 +1908 629 1665 +1909 615 1672 +1911 596 1681 +1909 622 1689 +1912 627 1708 +1917 627 1736 +1922 627 1769 +1913 595 1796 +1907 563 1835 +1896 695 1896 +1889 695 1975 +1866 789 2064 +1841 960 2158 +1796 966 2263 +1827 735 2383 +1933 330 2471 +1999 569 2512 +1999 569 2512 +1999 569 2512 +1999 569 2512 +1999 569 2512 +1999 569 2512 +1999 569 2512 +1999 569 2512 +1999 569 2512 +1999 569 2512 +1906 745 1658 +1907 743 1659 +1907 741 1661 +1907 737 1663 +1908 733 1666 +1908 727 1670 +1908 718 1675 +1909 707 1682 +1911 691 1691 +1912 669 1703 +1915 674 1722 +1920 674 1749 +1925 674 1780 +1915 674 1805 +1909 665 1842 +1894 754 1903 +1887 754 1980 +1866 838 2069 +1843 972 2159 +1800 977 2264 +1831 754 2384 +1933 489 2472 +2002 596 2512 +2002 596 2512 +2002 596 2512 +2002 596 2512 +2002 596 2512 +2002 596 2512 +2002 596 2512 +2002 596 2512 +2002 596 2512 +2002 596 2512 +1910 819 1677 +1910 817 1678 +1910 815 1680 +1911 812 1682 +1911 809 1685 +1911 803 1689 +1912 796 1693 +1913 787 1700 +1914 773 1708 +1915 755 1720 +1915 772 1732 +1921 772 1758 +1925 772 1789 +1916 772 1813 +1909 792 1855 +1894 863 1914 +1887 875 1990 +1865 911 2073 +1841 1000 2165 +1800 1040 2269 +1833 798 2384 +1931 640 2472 +2004 683 2511 +2004 683 2511 +2004 683 2511 +2004 683 2511 +2004 683 2511 +2004 683 2511 +2004 683 2511 +2004 683 2511 +2004 683 2511 +2004 683 2511 +1915 898 1703 +1915 897 1704 +1915 895 1705 +1915 893 1707 +1916 890 1710 +1916 885 1713 +1917 879 1718 +1918 871 1724 +1919 860 1732 +1920 845 1743 +1921 860 1755 +1921 885 1769 +1925 885 1799 +1916 885 1823 +1909 925 1873 +1894 979 1929 +1887 1007 2002 +1862 997 2078 +1838 1037 2174 +1800 1121 2277 +1843 837 2383 +1928 785 2473 +2007 787 2510 +2007 787 2510 +2007 787 2510 +2007 787 2510 +2007 787 2510 +2007 787 2510 +2007 787 2510 +2007 787 2510 +2007 787 2510 +2007 787 2510 +1922 997 1735 +1922 998 1736 +1922 997 1737 +1922 995 1739 +1923 993 1741 +1923 989 1745 +1924 984 1749 +1925 978 1755 +1926 969 1763 +1927 958 1772 +1927 969 1783 +1927 989 1797 +1926 1011 1816 +1917 1011 1839 +1910 1049 1891 +1895 1094 1949 +1888 1137 2019 +1859 1095 2086 +1833 1102 2184 +1802 1203 2287 +1856 905 2383 +1926 942 2474 +2010 902 2509 +2010 902 2509 +2010 902 2509 +2010 902 2509 +2010 902 2509 +2010 902 2509 +2010 902 2509 +2010 902 2509 +2010 902 2509 +2010 902 2509 +1931 1121 1774 +1931 1122 1775 +1931 1123 1776 +1932 1124 1778 +1932 1126 1780 +1932 1129 1783 +1933 1132 1787 +1934 1137 1793 +1935 1143 1800 +1936 1145 1809 +1936 1152 1819 +1936 1166 1832 +1935 1181 1849 +1921 1181 1881 +1914 1207 1928 +1905 1197 1974 +1898 1248 2038 +1870 1219 2099 +1827 1224 2189 +1814 1266 2289 +1856 1137 2381 +1933 1139 2475 +2017 1048 2509 +2017 1048 2509 +2017 1048 2509 +2017 1048 2509 +2017 1048 2509 +2017 1048 2509 +2017 1048 2509 +2017 1048 2509 +2017 1048 2509 +2017 1048 2509 +1943 1312 1836 +1943 1312 1837 +1943 1313 1838 +1943 1314 1839 +1944 1315 1841 +1944 1317 1844 +1945 1319 1847 +1945 1322 1852 +1946 1326 1858 +1948 1331 1866 +1945 1332 1875 +1940 1332 1886 +1936 1339 1902 +1923 1339 1930 +1915 1358 1965 +1906 1343 2006 +1889 1364 2062 +1872 1381 2136 +1826 1367 2210 +1822 1339 2296 +1868 1258 2382 +1955 1262 2478 +2027 1191 2509 +2027 1191 2509 +2027 1191 2509 +2027 1191 2509 +2027 1191 2509 +2027 1191 2509 +2027 1191 2509 +2027 1191 2509 +2027 1191 2509 +2027 1191 2509 +1969 1458 1884 +1969 1458 1884 +1968 1458 1885 +1968 1458 1887 +1968 1458 1888 +1968 1458 1890 +1967 1458 1892 +1966 1458 1896 +1965 1458 1900 +1964 1458 1906 +1962 1458 1913 +1957 1458 1924 +1950 1459 1938 +1941 1472 1960 +1934 1487 1991 +1937 1461 2031 +1908 1472 2078 +1899 1508 2159 +1871 1507 2226 +1869 1459 2304 +1906 1424 2382 +1989 1433 2480 +2031 1414 2509 +2031 1414 2509 +2031 1414 2509 +2031 1414 2509 +2031 1414 2509 +2031 1414 2509 +2031 1414 2509 +2031 1414 2509 +2031 1414 2509 +2031 1414 2509 +1995 1625 1959 +1995 1625 1960 +1995 1625 1961 +1995 1626 1962 +1995 1626 1963 +1994 1627 1965 +1994 1628 1968 +1993 1630 1972 +1992 1632 1976 +1991 1632 1982 +1990 1632 1987 +1990 1632 1993 +1990 1632 2002 +1989 1633 2018 +1978 1635 2038 +1968 1630 2070 +1945 1650 2122 +1941 1635 2175 +1926 1623 2233 +1921 1624 2309 +1947 1613 2388 +2014 1610 2474 +2061 1608 2512 +2061 1608 2512 +2061 1608 2512 +2061 1608 2512 +2061 1608 2512 +2061 1608 2512 +2061 1608 2512 +2061 1608 2512 +2061 1608 2512 +2061 1608 2512 +2048 1766 1996 +2048 1766 1996 +2048 1766 1996 +2048 1766 1997 +2048 1766 1998 +2048 1766 1999 +2048 1766 2000 +2048 1766 2002 +2048 1766 2006 +2048 1766 2009 +2048 1766 2014 +2048 1766 2020 +2048 1767 2029 +2044 1773 2043 +2040 1782 2061 +2029 1792 2098 +2027 1783 2138 +1997 1783 2185 +1996 1799 2243 +1996 1791 2315 +2012 1789 2391 +2075 1804 2478 +2111 1808 2513 +2111 1808 2513 +2111 1808 2513 +2111 1808 2513 +2111 1808 2513 +2111 1808 2513 +2111 1808 2513 +2111 1808 2513 +2111 1808 2513 +2111 1808 2513 +2118 1947 2038 +2118 1947 2038 +2118 1947 2039 +2118 1947 2039 +2118 1948 2040 +2119 1948 2041 +2119 1948 2042 +2120 1949 2044 +2120 1950 2047 +2121 1951 2050 +2120 1952 2054 +2119 1952 2060 +2117 1952 2068 +2111 1952 2078 +2102 1952 2094 +2100 1957 2116 +2094 1953 2146 +2078 1951 2186 +2073 1951 2247 +2076 1958 2318 +2097 1963 2398 +2161 1972 2478 +2191 1974 2517 +2191 1974 2517 +2191 1974 2517 +2191 1974 2517 +2191 1974 2517 +2191 1974 2517 +2191 1974 2517 +2191 1974 2517 +2191 1974 2517 +2191 1974 2517 +2223 2127 2077 +2223 2127 2077 +2223 2127 2077 +2223 2128 2078 +2223 2128 2078 +2223 2128 2078 +2223 2128 2079 +2223 2129 2080 +2223 2130 2082 +2223 2131 2084 +2221 2130 2088 +2219 2128 2093 +2216 2127 2099 +2213 2127 2109 +2210 2127 2121 +2206 2127 2136 +2216 2126 2162 +2212 2127 2204 +2215 2139 2260 +2222 2139 2318 +2237 2143 2401 +2282 2159 2486 +2316 2166 2524 +2316 2166 2524 +2316 2166 2524 +2316 2166 2524 +2316 2166 2524 +2316 2166 2524 +2316 2166 2524 +2316 2166 2524 +2316 2166 2524 +2316 2166 2524 +2426 2364 2124 +2426 2364 2124 +2426 2364 2124 +2426 2364 2125 +2426 2364 2125 +2426 2364 2126 +2426 2364 2126 +2426 2364 2127 +2426 2364 2129 +2426 2364 2131 +2426 2364 2132 +2426 2363 2135 +2427 2362 2138 +2429 2364 2138 +2428 2365 2146 +2427 2363 2161 +2428 2366 2187 +2427 2369 2230 +2430 2369 2278 +2430 2368 2333 +2463 2376 2405 +2502 2392 2495 +2540 2403 2525 +2540 2403 2525 +2540 2403 2525 +2540 2403 2525 +2540 2403 2525 +2540 2403 2525 +2540 2403 2525 +2540 2403 2525 +2540 2403 2525 +2540 2403 2525 +2694 2658 1982 +2694 2658 1982 +2694 2658 1982 +2694 2658 1981 +2694 2658 1981 +2694 2658 1979 +2693 2657 1979 +2693 2657 1977 +2693 2657 1978 +2693 2657 1979 +2693 2658 1988 +2694 2659 2001 +2694 2660 2015 +2696 2660 2021 +2695 2657 2016 +2695 2660 2055 +2697 2662 2117 +2697 2663 2170 +2697 2666 2245 +2701 2667 2320 +2711 2672 2426 +2725 2685 2539 +2731 2689 2588 +2731 2689 2588 +2731 2689 2588 +2731 2689 2588 +2731 2689 2588 +2731 2689 2588 +2731 2689 2588 +2731 2689 2588 +2731 2689 2588 +2731 2689 2588 +2727 2773 2456 +2727 2773 2456 +2727 2773 2456 +2727 2774 2457 +2727 2774 2457 +2727 2774 2457 +2727 2774 2458 +2728 2774 2459 +2728 2775 2460 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2729 2773 2461 +2729 2774 2466 +2728 2776 2478 +2729 2777 2494 +2725 2779 2509 +2723 2779 2533 +2725 2779 2571 +2728 2783 2631 +2735 2789 2705 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2727 2773 2456 +2727 2773 2456 +2727 2773 2456 +2727 2774 2457 +2727 2774 2457 +2727 2774 2457 +2727 2774 2458 +2728 2774 2459 +2728 2775 2460 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2729 2773 2461 +2729 2774 2466 +2728 2776 2478 +2729 2777 2494 +2725 2779 2509 +2723 2779 2533 +2725 2779 2571 +2728 2783 2631 +2735 2789 2705 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2727 2773 2456 +2727 2773 2456 +2727 2773 2456 +2727 2774 2457 +2727 2774 2457 +2727 2774 2457 +2727 2774 2458 +2728 2774 2459 +2728 2775 2460 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2729 2773 2461 +2729 2774 2466 +2728 2776 2478 +2729 2777 2494 +2725 2779 2509 +2723 2779 2533 +2725 2779 2571 +2728 2783 2631 +2735 2789 2705 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2727 2773 2456 +2727 2773 2456 +2727 2773 2456 +2727 2774 2457 +2727 2774 2457 +2727 2774 2457 +2727 2774 2458 +2728 2774 2459 +2728 2775 2460 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2729 2773 2461 +2729 2774 2466 +2728 2776 2478 +2729 2777 2494 +2725 2779 2509 +2723 2779 2533 +2725 2779 2571 +2728 2783 2631 +2735 2789 2705 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2727 2773 2456 +2727 2773 2456 +2727 2773 2456 +2727 2774 2457 +2727 2774 2457 +2727 2774 2457 +2727 2774 2458 +2728 2774 2459 +2728 2775 2460 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2729 2773 2461 +2729 2774 2466 +2728 2776 2478 +2729 2777 2494 +2725 2779 2509 +2723 2779 2533 +2725 2779 2571 +2728 2783 2631 +2735 2789 2705 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2727 2773 2456 +2727 2773 2456 +2727 2773 2456 +2727 2774 2457 +2727 2774 2457 +2727 2774 2457 +2727 2774 2458 +2728 2774 2459 +2728 2775 2460 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2729 2773 2461 +2729 2774 2466 +2728 2776 2478 +2729 2777 2494 +2725 2779 2509 +2723 2779 2533 +2725 2779 2571 +2728 2783 2631 +2735 2789 2705 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2727 2773 2456 +2727 2773 2456 +2727 2773 2456 +2727 2774 2457 +2727 2774 2457 +2727 2774 2457 +2727 2774 2458 +2728 2774 2459 +2728 2775 2460 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2729 2773 2461 +2729 2774 2466 +2728 2776 2478 +2729 2777 2494 +2725 2779 2509 +2723 2779 2533 +2725 2779 2571 +2728 2783 2631 +2735 2789 2705 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2727 2773 2456 +2727 2773 2456 +2727 2773 2456 +2727 2774 2457 +2727 2774 2457 +2727 2774 2457 +2727 2774 2458 +2728 2774 2459 +2728 2775 2460 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2729 2773 2461 +2729 2774 2466 +2728 2776 2478 +2729 2777 2494 +2725 2779 2509 +2723 2779 2533 +2725 2779 2571 +2728 2783 2631 +2735 2789 2705 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2727 2773 2456 +2727 2773 2456 +2727 2773 2456 +2727 2774 2457 +2727 2774 2457 +2727 2774 2457 +2727 2774 2458 +2728 2774 2459 +2728 2775 2460 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2729 2773 2461 +2729 2774 2466 +2728 2776 2478 +2729 2777 2494 +2725 2779 2509 +2723 2779 2533 +2725 2779 2571 +2728 2783 2631 +2735 2789 2705 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2727 2773 2456 +2727 2773 2456 +2727 2773 2456 +2727 2774 2457 +2727 2774 2457 +2727 2774 2457 +2727 2774 2458 +2728 2774 2459 +2728 2775 2460 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2728 2775 2461 +2729 2773 2461 +2729 2774 2466 +2728 2776 2478 +2729 2777 2494 +2725 2779 2509 +2723 2779 2533 +2725 2779 2571 +2728 2783 2631 +2735 2789 2705 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2738 2796 2741 +2036 810 1881 +2036 808 1882 +2036 806 1882 +2036 803 1883 +2037 799 1884 +2037 794 1886 +2037 787 1887 +2038 777 1890 +2039 763 1894 +2040 745 1898 +2042 718 1904 +2043 681 1912 +2044 657 1923 +2037 657 1946 +2028 657 1974 +2025 726 2020 +2019 820 2081 +1994 874 2146 +1993 810 2228 +2002 0 2298 +2010 0 2382 +2069 0 2474 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2036 813 1881 +2036 813 1882 +2036 811 1883 +2036 808 1884 +2037 804 1884 +2037 799 1886 +2037 791 1888 +2038 782 1891 +2039 769 1894 +2040 750 1898 +2042 724 1905 +2043 687 1912 +2044 666 1924 +2037 666 1946 +2028 666 1974 +2024 730 2021 +2019 824 2081 +1994 876 2146 +1994 812 2228 +2002 0 2298 +2010 0 2382 +2069 0 2474 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2037 817 1881 +2036 817 1882 +2036 817 1883 +2036 814 1884 +2037 810 1885 +2037 805 1887 +2037 798 1888 +2038 789 1891 +2039 776 1894 +2040 757 1899 +2042 732 1905 +2043 695 1913 +2044 675 1924 +2037 678 1946 +2028 678 1974 +2024 735 2021 +2019 831 2081 +1994 877 2146 +1994 814 2228 +2002 0 2298 +2010 0 2382 +2069 0 2474 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2108 0 2510 +2037 823 1882 +2037 823 1883 +2037 823 1884 +2036 823 1885 +2037 819 1886 +2037 814 1887 +2037 807 1889 +2038 797 1892 +2039 785 1895 +2040 767 1900 +2042 742 1906 +2043 706 1914 +2044 686 1925 +2038 693 1947 +2028 693 1975 +2024 742 2022 +2020 839 2082 +1995 880 2146 +1995 817 2228 +2003 0 2298 +2010 0 2382 +2069 0 2474 +2107 0 2510 +2107 0 2510 +2107 0 2510 +2107 0 2510 +2107 0 2510 +2107 0 2510 +2107 0 2510 +2107 0 2510 +2107 0 2510 +2107 0 2510 +2037 830 1882 +2037 830 1883 +2037 830 1884 +2037 830 1885 +2037 830 1887 +2037 825 1888 +2037 818 1891 +2038 809 1893 +2039 797 1897 +2040 779 1901 +2042 755 1907 +2043 721 1915 +2044 701 1926 +2038 713 1948 +2029 713 1976 +2024 751 2023 +2020 850 2082 +1995 883 2147 +1996 821 2228 +2004 0 2298 +2011 0 2383 +2069 0 2474 +2107 61 2510 +2107 61 2510 +2107 61 2510 +2107 61 2510 +2107 61 2510 +2107 61 2510 +2107 61 2510 +2107 61 2510 +2107 61 2510 +2107 61 2510 +2038 840 1883 +2038 840 1884 +2038 840 1884 +2037 840 1886 +2037 840 1887 +2037 840 1890 +2037 833 1892 +2038 825 1894 +2039 813 1898 +2040 796 1902 +2042 772 1908 +2043 739 1916 +2044 721 1927 +2038 737 1950 +2029 737 1977 +2023 762 2025 +2021 864 2083 +1996 888 2147 +1997 826 2228 +2005 48 2298 +2011 0 2383 +2069 10 2474 +2105 179 2510 +2105 179 2510 +2105 179 2510 +2105 179 2510 +2105 179 2510 +2105 179 2510 +2105 179 2510 +2105 179 2510 +2105 179 2510 +2105 179 2510 +2039 853 1883 +2039 853 1884 +2039 853 1885 +2038 853 1887 +2038 853 1888 +2038 853 1891 +2037 853 1894 +2038 844 1896 +2039 833 1900 +2040 817 1904 +2042 794 1910 +2043 763 1918 +2044 745 1929 +2039 769 1951 +2029 769 1979 +2023 777 2027 +2022 882 2084 +1997 894 2148 +1998 832 2227 +2006 147 2298 +2011 89 2384 +2069 84 2473 +2104 299 2510 +2104 299 2510 +2104 299 2510 +2104 299 2510 +2104 299 2510 +2104 299 2510 +2104 299 2510 +2104 299 2510 +2104 299 2510 +2104 299 2510 +2040 869 1884 +2040 869 1885 +2040 869 1886 +2040 869 1887 +2039 869 1889 +2039 869 1891 +2039 869 1894 +2038 869 1899 +2039 858 1902 +2040 843 1907 +2042 822 1913 +2043 792 1920 +2044 776 1932 +2039 807 1954 +2030 807 1981 +2022 797 2029 +2023 905 2085 +1998 901 2149 +2000 841 2227 +2007 253 2298 +2012 208 2384 +2069 167 2473 +2103 423 2510 +2103 423 2510 +2103 423 2510 +2103 423 2510 +2103 423 2510 +2103 423 2510 +2103 423 2510 +2103 423 2510 +2103 423 2510 +2103 423 2510 +2042 890 1885 +2042 890 1886 +2042 890 1887 +2041 890 1888 +2041 890 1890 +2041 890 1893 +2040 890 1896 +2040 890 1900 +2039 890 1905 +2040 876 1910 +2042 857 1916 +2043 829 1924 +2044 814 1935 +2040 854 1957 +2031 854 1984 +2021 822 2032 +2025 934 2086 +2000 911 2150 +2003 852 2226 +2009 364 2298 +2013 329 2385 +2069 258 2473 +2101 548 2511 +2101 548 2511 +2101 548 2511 +2101 548 2511 +2101 548 2511 +2101 548 2511 +2101 548 2511 +2101 548 2511 +2101 548 2511 +2101 548 2511 +2044 917 1887 +2044 917 1887 +2044 917 1889 +2043 917 1890 +2043 917 1892 +2043 917 1894 +2042 917 1897 +2042 917 1901 +2041 917 1907 +2040 917 1914 +2042 899 1920 +2043 874 1928 +2044 861 1939 +2041 906 1961 +2032 910 1988 +2020 853 2037 +2024 959 2090 +2002 924 2152 +2007 867 2226 +2011 480 2298 +2014 453 2386 +2069 358 2472 +2098 675 2511 +2098 675 2511 +2098 675 2511 +2098 675 2511 +2098 675 2511 +2098 675 2511 +2098 675 2511 +2098 675 2511 +2098 675 2511 +2098 675 2511 +2047 951 1889 +2047 951 1890 +2047 951 1891 +2047 951 1892 +2046 951 1894 +2046 951 1896 +2045 951 1899 +2045 951 1903 +2044 951 1909 +2043 951 1916 +2042 951 1926 +2043 928 1933 +2044 916 1944 +2041 956 1966 +2033 976 1993 +2021 913 2042 +2022 990 2095 +2006 968 2154 +2012 886 2225 +2014 599 2298 +2016 579 2387 +2069 463 2472 +2094 803 2512 +2094 803 2512 +2094 803 2512 +2094 803 2512 +2094 803 2512 +2094 803 2512 +2094 803 2512 +2094 803 2512 +2094 803 2512 +2094 803 2512 +2051 992 1892 +2051 992 1892 +2051 992 1894 +2050 992 1895 +2050 992 1897 +2050 992 1899 +2049 992 1902 +2049 992 1906 +2048 992 1912 +2047 992 1919 +2045 992 1928 +2043 992 1941 +2044 981 1951 +2041 1016 1973 +2035 1052 1999 +2023 999 2048 +2020 1028 2102 +2010 1027 2157 +2018 910 2223 +2019 722 2298 +2019 682 2389 +2069 575 2471 +2089 933 2513 +2089 933 2513 +2089 933 2513 +2089 933 2513 +2089 933 2513 +2089 933 2513 +2089 933 2513 +2089 933 2513 +2089 933 2513 +2089 933 2513 +2055 1051 1898 +2055 1052 1899 +2055 1052 1900 +2055 1052 1902 +2054 1052 1903 +2054 1052 1905 +2054 1052 1909 +2053 1052 1913 +2052 1052 1918 +2051 1052 1925 +2050 1052 1935 +2048 1052 1947 +2047 1053 1963 +2043 1083 1983 +2038 1120 2010 +2027 1089 2055 +2019 1074 2110 +2016 1091 2162 +2024 958 2224 +2023 859 2299 +2024 795 2391 +2069 729 2471 +2085 1046 2513 +2085 1046 2513 +2085 1046 2513 +2085 1046 2513 +2085 1046 2513 +2085 1046 2513 +2085 1046 2513 +2085 1046 2513 +2085 1046 2513 +2085 1046 2513 +2065 1109 1913 +2065 1110 1913 +2065 1112 1915 +2065 1113 1916 +2064 1115 1918 +2063 1118 1921 +2063 1121 1924 +2061 1126 1929 +2060 1132 1936 +2058 1137 1943 +2057 1137 1952 +2055 1137 1964 +2053 1137 1979 +2053 1164 1999 +2049 1195 2025 +2041 1167 2059 +2028 1112 2110 +2027 1145 2168 +2024 1061 2228 +2023 1050 2301 +2024 973 2387 +2069 983 2473 +2092 1159 2513 +2092 1159 2513 +2092 1159 2513 +2092 1159 2513 +2092 1159 2513 +2092 1159 2513 +2092 1159 2513 +2092 1159 2513 +2092 1159 2513 +2092 1159 2513 +2079 1177 1931 +2078 1178 1932 +2078 1179 1933 +2078 1180 1934 +2077 1182 1936 +2077 1184 1939 +2076 1187 1942 +2075 1191 1947 +2073 1196 1953 +2071 1204 1961 +2068 1213 1971 +2065 1225 1985 +2062 1230 2000 +2062 1252 2020 +2062 1280 2044 +2056 1256 2073 +2047 1209 2114 +2037 1182 2169 +2024 1169 2235 +2023 1221 2303 +2029 1152 2384 +2060 1207 2475 +2100 1275 2513 +2100 1275 2513 +2100 1275 2513 +2100 1275 2513 +2100 1275 2513 +2100 1275 2513 +2100 1275 2513 +2100 1275 2513 +2100 1275 2513 +2100 1275 2513 +2099 1357 1955 +2099 1357 1955 +2099 1357 1955 +2099 1357 1956 +2098 1357 1957 +2098 1357 1958 +2097 1357 1960 +2096 1357 1962 +2094 1357 1965 +2093 1357 1969 +2090 1361 1977 +2086 1370 1990 +2083 1381 2008 +2080 1396 2034 +2079 1416 2059 +2078 1420 2093 +2067 1399 2124 +2059 1381 2174 +2045 1359 2234 +2030 1417 2304 +2051 1393 2388 +2070 1417 2476 +2115 1452 2513 +2115 1452 2513 +2115 1452 2513 +2115 1452 2513 +2115 1452 2513 +2115 1452 2513 +2115 1452 2513 +2115 1452 2513 +2115 1452 2513 +2115 1452 2513 +2118 1561 1978 +2118 1561 1978 +2118 1561 1979 +2118 1561 1980 +2119 1561 1982 +2119 1561 1984 +2119 1561 1986 +2120 1561 1990 +2120 1561 1994 +2119 1561 1998 +2116 1561 2003 +2113 1561 2009 +2109 1560 2018 +2103 1553 2032 +2099 1566 2064 +2098 1570 2096 +2095 1587 2145 +2080 1579 2177 +2077 1562 2236 +2046 1604 2305 +2071 1614 2389 +2114 1600 2477 +2143 1637 2513 +2143 1637 2513 +2143 1637 2513 +2143 1637 2513 +2143 1637 2513 +2143 1637 2513 +2143 1637 2513 +2143 1637 2513 +2143 1637 2513 +2143 1637 2513 +2134 1765 2000 +2134 1765 2001 +2134 1766 2001 +2134 1766 2002 +2134 1767 2003 +2134 1767 2004 +2134 1768 2005 +2134 1769 2007 +2134 1771 2010 +2134 1772 2014 +2135 1773 2021 +2137 1773 2031 +2138 1773 2045 +2138 1767 2062 +2131 1758 2076 +2129 1756 2098 +2124 1756 2137 +2121 1783 2193 +2113 1774 2243 +2086 1783 2307 +2096 1787 2390 +2148 1816 2480 +2194 1817 2514 +2194 1817 2514 +2194 1817 2514 +2194 1817 2514 +2194 1817 2514 +2194 1817 2514 +2194 1817 2514 +2194 1817 2514 +2194 1817 2514 +2194 1817 2514 +2181 1956 2056 +2181 1956 2057 +2181 1956 2057 +2182 1956 2057 +2182 1955 2057 +2182 1955 2057 +2182 1955 2058 +2183 1954 2058 +2183 1953 2059 +2184 1951 2060 +2185 1950 2062 +2187 1947 2063 +2188 1945 2068 +2188 1950 2081 +2188 1955 2098 +2191 1957 2124 +2187 1958 2158 +2166 1958 2197 +2157 1958 2256 +2157 1958 2315 +2170 1965 2391 +2214 1983 2481 +2243 1992 2520 +2243 1992 2520 +2243 1992 2520 +2243 1992 2520 +2243 1992 2520 +2243 1992 2520 +2243 1992 2520 +2243 1992 2520 +2243 1992 2520 +2243 1992 2520 +2280 2135 2094 +2279 2135 2094 +2279 2135 2094 +2279 2135 2093 +2279 2135 2093 +2279 2135 2093 +2278 2135 2093 +2278 2135 2092 +2278 2135 2091 +2277 2135 2090 +2276 2135 2089 +2275 2135 2087 +2273 2135 2088 +2271 2132 2104 +2268 2128 2124 +2265 2127 2141 +2261 2127 2163 +2267 2131 2204 +2267 2143 2274 +2279 2151 2326 +2302 2151 2402 +2336 2169 2486 +2365 2174 2524 +2365 2174 2524 +2365 2174 2524 +2365 2174 2524 +2365 2174 2524 +2365 2174 2524 +2365 2174 2524 +2365 2174 2524 +2365 2174 2524 +2365 2174 2524 +2461 2367 2129 +2461 2367 2129 +2461 2367 2129 +2460 2367 2129 +2460 2367 2129 +2460 2367 2129 +2460 2367 2129 +2459 2367 2129 +2458 2367 2129 +2457 2367 2129 +2456 2367 2129 +2456 2367 2131 +2456 2368 2135 +2457 2370 2144 +2458 2370 2155 +2459 2368 2173 +2458 2367 2191 +2459 2372 2228 +2457 2374 2273 +2469 2375 2338 +2498 2390 2405 +2539 2403 2489 +2561 2413 2521 +2561 2413 2521 +2561 2413 2521 +2561 2413 2521 +2561 2413 2521 +2561 2413 2521 +2561 2413 2521 +2561 2413 2521 +2561 2413 2521 +2561 2413 2521 +2709 2666 2040 +2709 2666 2040 +2709 2665 2040 +2709 2665 2040 +2709 2665 2040 +2709 2665 2040 +2709 2665 2040 +2710 2664 2040 +2710 2664 2039 +2710 2664 2038 +2710 2664 2037 +2710 2663 2035 +2710 2663 2036 +2709 2665 2056 +2708 2668 2074 +2708 2667 2090 +2708 2666 2122 +2710 2669 2190 +2713 2675 2273 +2712 2672 2336 +2722 2681 2446 +2732 2688 2548 +2743 2699 2604 +2743 2699 2604 +2743 2699 2604 +2743 2699 2604 +2743 2699 2604 +2743 2699 2604 +2743 2699 2604 +2743 2699 2604 +2743 2699 2604 +2743 2699 2604 +2736 2777 2472 +2736 2777 2472 +2736 2777 2472 +2736 2777 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2474 +2736 2778 2475 +2736 2778 2475 +2736 2779 2476 +2736 2779 2478 +2736 2779 2480 +2736 2779 2480 +2736 2779 2480 +2737 2778 2487 +2736 2777 2497 +2732 2777 2512 +2731 2783 2550 +2734 2783 2585 +2737 2787 2644 +2741 2798 2718 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2736 2777 2472 +2736 2777 2472 +2736 2777 2472 +2736 2777 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2474 +2736 2778 2475 +2736 2778 2475 +2736 2779 2476 +2736 2779 2478 +2736 2779 2480 +2736 2779 2480 +2736 2779 2480 +2737 2778 2487 +2736 2777 2497 +2732 2777 2512 +2731 2783 2550 +2734 2783 2585 +2737 2787 2644 +2741 2798 2718 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2736 2777 2472 +2736 2777 2472 +2736 2777 2472 +2736 2777 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2474 +2736 2778 2475 +2736 2778 2475 +2736 2779 2476 +2736 2779 2478 +2736 2779 2480 +2736 2779 2480 +2736 2779 2480 +2737 2778 2487 +2736 2777 2497 +2732 2777 2512 +2731 2783 2550 +2734 2783 2585 +2737 2787 2644 +2741 2798 2718 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2736 2777 2472 +2736 2777 2472 +2736 2777 2472 +2736 2777 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2474 +2736 2778 2475 +2736 2778 2475 +2736 2779 2476 +2736 2779 2478 +2736 2779 2480 +2736 2779 2480 +2736 2779 2480 +2737 2778 2487 +2736 2777 2497 +2732 2777 2512 +2731 2783 2550 +2734 2783 2585 +2737 2787 2644 +2741 2798 2718 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2736 2777 2472 +2736 2777 2472 +2736 2777 2472 +2736 2777 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2474 +2736 2778 2475 +2736 2778 2475 +2736 2779 2476 +2736 2779 2478 +2736 2779 2480 +2736 2779 2480 +2736 2779 2480 +2737 2778 2487 +2736 2777 2497 +2732 2777 2512 +2731 2783 2550 +2734 2783 2585 +2737 2787 2644 +2741 2798 2718 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2736 2777 2472 +2736 2777 2472 +2736 2777 2472 +2736 2777 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2474 +2736 2778 2475 +2736 2778 2475 +2736 2779 2476 +2736 2779 2478 +2736 2779 2480 +2736 2779 2480 +2736 2779 2480 +2737 2778 2487 +2736 2777 2497 +2732 2777 2512 +2731 2783 2550 +2734 2783 2585 +2737 2787 2644 +2741 2798 2718 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2736 2777 2472 +2736 2777 2472 +2736 2777 2472 +2736 2777 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2474 +2736 2778 2475 +2736 2778 2475 +2736 2779 2476 +2736 2779 2478 +2736 2779 2480 +2736 2779 2480 +2736 2779 2480 +2737 2778 2487 +2736 2777 2497 +2732 2777 2512 +2731 2783 2550 +2734 2783 2585 +2737 2787 2644 +2741 2798 2718 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2736 2777 2472 +2736 2777 2472 +2736 2777 2472 +2736 2777 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2474 +2736 2778 2475 +2736 2778 2475 +2736 2779 2476 +2736 2779 2478 +2736 2779 2480 +2736 2779 2480 +2736 2779 2480 +2737 2778 2487 +2736 2777 2497 +2732 2777 2512 +2731 2783 2550 +2734 2783 2585 +2737 2787 2644 +2741 2798 2718 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2736 2777 2472 +2736 2777 2472 +2736 2777 2472 +2736 2777 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2474 +2736 2778 2475 +2736 2778 2475 +2736 2779 2476 +2736 2779 2478 +2736 2779 2480 +2736 2779 2480 +2736 2779 2480 +2737 2778 2487 +2736 2777 2497 +2732 2777 2512 +2731 2783 2550 +2734 2783 2585 +2737 2787 2644 +2741 2798 2718 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2736 2777 2472 +2736 2777 2472 +2736 2777 2472 +2736 2777 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2473 +2736 2778 2474 +2736 2778 2475 +2736 2778 2475 +2736 2779 2476 +2736 2779 2478 +2736 2779 2480 +2736 2779 2480 +2736 2779 2480 +2737 2778 2487 +2736 2777 2497 +2732 2777 2512 +2731 2783 2550 +2734 2783 2585 +2737 2787 2644 +2741 2798 2718 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2746 2799 2749 +2203 0 1962 +2203 0 1963 +2203 0 1963 +2203 0 1964 +2202 0 1966 +2202 0 1967 +2202 0 1969 +2202 0 1972 +2201 0 1976 +2200 0 1981 +2199 0 1988 +2198 0 1996 +2196 0 2008 +2194 0 2027 +2190 0 2051 +2189 0 2090 +2187 0 2135 +2178 0 2178 +2160 0 2231 +2145 0 2305 +2169 0 2389 +2195 0 2474 +2191 934 2513 +2191 934 2513 +2191 934 2513 +2191 934 2513 +2191 934 2513 +2191 934 2513 +2191 934 2513 +2191 934 2513 +2191 934 2513 +2191 934 2513 +2203 0 1962 +2203 0 1963 +2203 0 1963 +2203 0 1965 +2202 0 1966 +2202 0 1967 +2202 0 1969 +2202 0 1972 +2201 0 1976 +2200 0 1981 +2199 0 1988 +2198 0 1997 +2196 0 2008 +2194 0 2027 +2190 0 2051 +2189 0 2090 +2187 0 2135 +2178 0 2178 +2160 0 2231 +2145 0 2305 +2169 0 2389 +2195 0 2474 +2191 935 2513 +2191 935 2513 +2191 935 2513 +2191 935 2513 +2191 935 2513 +2191 935 2513 +2191 935 2513 +2191 935 2513 +2191 935 2513 +2191 935 2513 +2203 0 1962 +2203 0 1963 +2203 0 1964 +2203 0 1965 +2202 0 1966 +2202 0 1968 +2202 0 1970 +2202 0 1973 +2201 0 1976 +2200 0 1981 +2199 0 1988 +2198 0 1997 +2196 0 2008 +2194 0 2026 +2190 0 2051 +2189 0 2090 +2187 0 2135 +2178 0 2178 +2161 0 2231 +2146 0 2305 +2169 0 2389 +2195 0 2474 +2191 937 2513 +2191 937 2513 +2191 937 2513 +2191 937 2513 +2191 937 2513 +2191 937 2513 +2191 937 2513 +2191 937 2513 +2191 937 2513 +2191 937 2513 +2203 0 1963 +2203 0 1963 +2203 0 1964 +2203 0 1965 +2202 0 1966 +2202 0 1968 +2202 0 1970 +2202 0 1973 +2201 0 1977 +2200 0 1982 +2199 0 1988 +2198 0 1997 +2196 0 2008 +2194 0 2026 +2190 0 2050 +2189 0 2090 +2187 0 2135 +2178 0 2178 +2161 0 2232 +2146 0 2305 +2169 0 2389 +2195 0 2474 +2192 939 2513 +2192 939 2513 +2192 939 2513 +2192 939 2513 +2192 939 2513 +2192 939 2513 +2192 939 2513 +2192 939 2513 +2192 939 2513 +2192 939 2513 +2202 0 1963 +2202 0 1963 +2202 0 1964 +2202 0 1965 +2202 0 1966 +2202 0 1968 +2202 0 1970 +2202 0 1973 +2201 0 1977 +2200 0 1982 +2199 0 1989 +2198 0 1997 +2196 0 2009 +2194 0 2026 +2190 0 2050 +2188 0 2090 +2187 0 2136 +2178 0 2178 +2161 0 2232 +2147 0 2305 +2169 0 2389 +2195 0 2474 +2192 942 2513 +2192 942 2513 +2192 942 2513 +2192 942 2513 +2192 942 2513 +2192 942 2513 +2192 942 2513 +2192 942 2513 +2192 942 2513 +2192 942 2513 +2202 0 1963 +2202 0 1964 +2202 0 1965 +2202 0 1966 +2202 0 1967 +2202 0 1969 +2202 0 1970 +2202 0 1973 +2201 0 1977 +2200 0 1982 +2199 0 1989 +2198 0 1998 +2196 0 2009 +2194 0 2026 +2190 0 2050 +2188 0 2090 +2187 0 2136 +2178 0 2178 +2162 0 2232 +2148 0 2305 +2169 0 2389 +2195 74 2474 +2193 946 2513 +2193 946 2513 +2193 946 2513 +2193 946 2513 +2193 946 2513 +2193 946 2513 +2193 946 2513 +2193 946 2513 +2193 946 2513 +2193 946 2513 +2202 0 1964 +2202 0 1965 +2202 0 1965 +2202 0 1966 +2202 0 1968 +2202 0 1969 +2202 0 1971 +2202 0 1974 +2201 0 1978 +2200 0 1983 +2199 0 1989 +2198 0 1998 +2196 0 2010 +2194 0 2025 +2190 0 2049 +2188 0 2090 +2187 0 2137 +2178 0 2178 +2162 0 2232 +2149 0 2305 +2168 0 2389 +2196 195 2474 +2194 951 2513 +2194 951 2513 +2194 951 2513 +2194 951 2513 +2194 951 2513 +2194 951 2513 +2194 951 2513 +2194 951 2513 +2194 951 2513 +2194 951 2513 +2202 0 1965 +2202 0 1965 +2202 0 1966 +2202 0 1967 +2202 0 1968 +2202 0 1970 +2202 0 1972 +2202 0 1975 +2201 0 1979 +2200 0 1984 +2199 0 1990 +2198 0 1999 +2196 0 2010 +2194 0 2024 +2190 0 2049 +2188 0 2090 +2187 0 2138 +2178 0 2178 +2163 0 2233 +2150 0 2306 +2168 0 2388 +2196 319 2474 +2195 957 2513 +2195 957 2513 +2195 957 2513 +2195 957 2513 +2195 957 2513 +2195 957 2513 +2195 957 2513 +2195 957 2513 +2195 957 2513 +2195 957 2513 +2201 0 1966 +2201 0 1966 +2201 0 1967 +2201 0 1968 +2201 0 1969 +2201 0 1971 +2201 0 1973 +2201 0 1976 +2201 0 1979 +2200 0 1984 +2199 0 1991 +2198 0 2000 +2196 0 2011 +2194 0 2024 +2190 0 2048 +2187 0 2090 +2187 0 2140 +2178 0 2178 +2165 0 2233 +2152 111 2306 +2167 0 2388 +2195 419 2475 +2197 966 2513 +2197 966 2513 +2197 966 2513 +2197 966 2513 +2197 966 2513 +2197 966 2513 +2197 966 2513 +2197 966 2513 +2197 966 2513 +2197 966 2513 +2200 0 1967 +2200 0 1968 +2200 0 1968 +2200 0 1969 +2200 0 1970 +2200 0 1972 +2200 0 1974 +2200 0 1977 +2200 0 1981 +2200 0 1986 +2199 0 1993 +2198 0 2001 +2196 0 2012 +2194 0 2023 +2190 0 2047 +2186 0 2090 +2186 0 2140 +2178 0 2178 +2166 0 2234 +2155 244 2307 +2166 0 2388 +2195 523 2475 +2199 978 2513 +2199 978 2513 +2199 978 2513 +2199 978 2513 +2199 978 2513 +2199 978 2513 +2199 978 2513 +2199 978 2513 +2199 978 2513 +2199 978 2513 +2199 0 1969 +2199 0 1969 +2199 0 1970 +2199 0 1971 +2199 0 1972 +2199 0 1974 +2199 0 1976 +2199 0 1979 +2199 0 1983 +2199 0 1988 +2199 0 1994 +2198 0 2003 +2196 0 2014 +2194 0 2025 +2190 0 2045 +2186 0 2089 +2185 0 2140 +2178 0 2180 +2169 0 2235 +2158 376 2308 +2165 61 2387 +2194 633 2476 +2202 993 2513 +2202 993 2513 +2202 993 2513 +2202 993 2513 +2202 993 2513 +2202 993 2513 +2202 993 2513 +2202 993 2513 +2202 993 2513 +2202 993 2513 +2198 0 1971 +2198 0 1972 +2198 0 1972 +2198 0 1973 +2198 0 1974 +2198 0 1976 +2198 0 1978 +2198 0 1981 +2198 0 1985 +2198 0 1990 +2198 0 1996 +2198 0 2005 +2196 0 2016 +2194 0 2027 +2190 0 2043 +2186 0 2087 +2183 0 2140 +2178 0 2183 +2172 0 2236 +2163 508 2309 +2167 263 2387 +2192 748 2476 +2206 1012 2513 +2206 1012 2513 +2206 1012 2513 +2206 1012 2513 +2206 1012 2513 +2206 1012 2513 +2206 1012 2513 +2206 1012 2513 +2206 1012 2513 +2206 1012 2513 +2197 0 1974 +2197 0 1974 +2197 0 1975 +2197 0 1976 +2197 0 1977 +2197 0 1979 +2197 0 1981 +2197 0 1984 +2197 0 1988 +2197 0 1993 +2197 0 1999 +2197 0 2008 +2196 0 2019 +2194 0 2030 +2190 0 2044 +2186 0 2085 +2183 0 2139 +2179 0 2186 +2175 0 2237 +2168 643 2310 +2170 532 2388 +2192 890 2477 +2211 1054 2513 +2211 1054 2513 +2211 1054 2513 +2211 1054 2513 +2211 1054 2513 +2211 1054 2513 +2211 1054 2513 +2211 1054 2513 +2211 1054 2513 +2211 1054 2513 +2200 621 1974 +2200 621 1974 +2200 621 1976 +2200 621 1977 +2200 621 1978 +2200 621 1980 +2201 621 1983 +2201 621 1986 +2202 621 1991 +2202 621 1997 +2202 621 2003 +2202 621 2012 +2202 617 2022 +2196 529 2033 +2193 529 2047 +2189 621 2082 +2185 627 2133 +2182 413 2189 +2177 708 2240 +2170 828 2310 +2173 948 2390 +2196 1121 2478 +2216 1189 2513 +2216 1189 2513 +2216 1189 2513 +2216 1189 2513 +2216 1189 2513 +2216 1189 2513 +2216 1189 2513 +2216 1189 2513 +2216 1189 2513 +2216 1189 2513 +2203 974 1974 +2203 974 1974 +2203 974 1976 +2203 974 1977 +2203 974 1978 +2204 974 1980 +2204 974 1983 +2204 974 1986 +2205 974 1991 +2206 974 1997 +2207 974 2005 +2208 974 2016 +2208 973 2027 +2203 934 2038 +2196 877 2052 +2192 934 2084 +2188 977 2129 +2185 874 2183 +2181 1059 2243 +2174 996 2310 +2175 1202 2391 +2206 1271 2478 +2222 1322 2513 +2222 1322 2513 +2222 1322 2513 +2222 1322 2513 +2222 1322 2513 +2222 1322 2513 +2222 1322 2513 +2222 1322 2513 +2222 1322 2513 +2222 1322 2513 +2208 1278 1984 +2208 1279 1985 +2208 1279 1986 +2208 1281 1986 +2209 1282 1987 +2209 1284 1988 +2209 1286 1990 +2209 1289 1992 +2210 1294 1995 +2211 1299 1998 +2212 1302 2005 +2213 1302 2016 +2214 1300 2030 +2212 1282 2047 +2206 1256 2063 +2201 1278 2090 +2194 1321 2134 +2193 1308 2182 +2182 1327 2241 +2178 1331 2310 +2182 1416 2391 +2214 1452 2477 +2228 1489 2513 +2228 1489 2513 +2228 1489 2513 +2228 1489 2513 +2228 1489 2513 +2228 1489 2513 +2228 1489 2513 +2228 1489 2513 +2228 1489 2513 +2228 1489 2513 +2220 1531 2004 +2220 1531 2004 +2220 1531 2004 +2220 1532 2005 +2220 1533 2006 +2220 1534 2007 +2220 1535 2008 +2220 1537 2010 +2220 1540 2013 +2221 1543 2017 +2222 1547 2021 +2223 1553 2027 +2224 1559 2037 +2222 1557 2051 +2218 1543 2073 +2214 1535 2102 +2208 1550 2140 +2199 1572 2190 +2195 1558 2240 +2192 1577 2310 +2192 1604 2393 +2223 1653 2476 +2238 1676 2514 +2238 1676 2514 +2238 1676 2514 +2238 1676 2514 +2238 1676 2514 +2238 1676 2514 +2238 1676 2514 +2238 1676 2514 +2238 1676 2514 +2238 1676 2514 +2241 1755 2023 +2241 1755 2023 +2241 1755 2024 +2241 1755 2024 +2241 1755 2025 +2241 1755 2025 +2241 1755 2026 +2241 1755 2028 +2241 1755 2029 +2241 1755 2031 +2241 1758 2036 +2241 1761 2042 +2240 1765 2049 +2240 1765 2063 +2238 1765 2080 +2237 1764 2104 +2229 1762 2147 +2223 1755 2193 +2223 1765 2244 +2223 1774 2315 +2215 1795 2391 +2250 1824 2482 +2262 1849 2517 +2262 1849 2517 +2262 1849 2517 +2262 1849 2517 +2262 1849 2517 +2262 1849 2517 +2262 1849 2517 +2262 1849 2517 +2262 1849 2517 +2262 1849 2517 +2268 1946 2048 +2268 1946 2049 +2269 1946 2049 +2269 1946 2050 +2269 1946 2051 +2269 1946 2051 +2270 1946 2053 +2270 1946 2054 +2270 1946 2057 +2271 1946 2060 +2272 1946 2064 +2273 1946 2070 +2274 1945 2077 +2274 1945 2087 +2274 1945 2099 +2271 1951 2124 +2268 1961 2158 +2265 1963 2203 +2273 1968 2256 +2261 1969 2321 +2271 1965 2394 +2310 1995 2482 +2335 2014 2520 +2335 2014 2520 +2335 2014 2520 +2335 2014 2520 +2335 2014 2520 +2335 2014 2520 +2335 2014 2520 +2335 2014 2520 +2335 2014 2520 +2335 2014 2520 +2351 2143 2087 +2351 2143 2087 +2351 2143 2087 +2351 2143 2088 +2351 2143 2088 +2351 2143 2089 +2351 2143 2091 +2351 2143 2092 +2351 2143 2094 +2351 2143 2097 +2351 2143 2101 +2351 2143 2106 +2351 2143 2112 +2351 2143 2115 +2351 2143 2119 +2351 2143 2141 +2349 2146 2174 +2346 2147 2214 +2351 2143 2263 +2356 2159 2326 +2362 2167 2401 +2402 2189 2492 +2434 2202 2530 +2434 2202 2530 +2434 2202 2530 +2434 2202 2530 +2434 2202 2530 +2434 2202 2530 +2434 2202 2530 +2434 2202 2530 +2434 2202 2530 +2434 2202 2530 +2515 2384 2126 +2514 2384 2127 +2514 2384 2127 +2514 2384 2127 +2514 2383 2127 +2514 2383 2127 +2514 2383 2128 +2514 2383 2128 +2514 2382 2129 +2513 2382 2130 +2513 2381 2131 +2513 2381 2133 +2514 2382 2135 +2515 2384 2141 +2515 2385 2150 +2515 2388 2172 +2515 2388 2195 +2520 2388 2230 +2523 2391 2279 +2523 2395 2342 +2548 2407 2404 +2582 2421 2483 +2607 2433 2514 +2607 2433 2514 +2607 2433 2514 +2607 2433 2514 +2607 2433 2514 +2607 2433 2514 +2607 2433 2514 +2607 2433 2514 +2607 2433 2514 +2607 2433 2514 +2731 2680 2128 +2731 2680 2129 +2731 2680 2129 +2731 2680 2130 +2731 2680 2131 +2731 2681 2132 +2731 2681 2133 +2731 2681 2135 +2731 2681 2136 +2730 2681 2137 +2730 2681 2138 +2729 2680 2140 +2728 2679 2142 +2728 2679 2150 +2730 2679 2164 +2731 2678 2176 +2730 2679 2195 +2730 2680 2243 +2735 2682 2308 +2735 2687 2382 +2739 2689 2468 +2750 2708 2581 +2756 2707 2625 +2756 2707 2625 +2756 2707 2625 +2756 2707 2625 +2756 2707 2625 +2756 2707 2625 +2756 2707 2625 +2756 2707 2625 +2756 2707 2625 +2756 2707 2625 +2755 2784 2495 +2755 2784 2495 +2755 2784 2495 +2755 2784 2496 +2755 2784 2496 +2755 2784 2496 +2755 2784 2497 +2755 2784 2498 +2755 2785 2499 +2755 2785 2501 +2755 2786 2503 +2755 2786 2506 +2755 2787 2509 +2755 2787 2512 +2755 2787 2515 +2754 2787 2520 +2753 2788 2528 +2753 2787 2543 +2751 2785 2569 +2749 2789 2602 +2753 2795 2660 +2755 2801 2726 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2755 2784 2495 +2755 2784 2495 +2755 2784 2495 +2755 2784 2496 +2755 2784 2496 +2755 2784 2496 +2755 2784 2497 +2755 2784 2498 +2755 2785 2499 +2755 2785 2501 +2755 2786 2503 +2755 2786 2506 +2755 2787 2509 +2755 2787 2512 +2755 2787 2515 +2754 2787 2520 +2753 2788 2528 +2753 2787 2543 +2751 2785 2569 +2749 2789 2602 +2753 2795 2660 +2755 2801 2726 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2755 2784 2495 +2755 2784 2495 +2755 2784 2495 +2755 2784 2496 +2755 2784 2496 +2755 2784 2496 +2755 2784 2497 +2755 2784 2498 +2755 2785 2499 +2755 2785 2501 +2755 2786 2503 +2755 2786 2506 +2755 2787 2509 +2755 2787 2512 +2755 2787 2515 +2754 2787 2520 +2753 2788 2528 +2753 2787 2543 +2751 2785 2569 +2749 2789 2602 +2753 2795 2660 +2755 2801 2726 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2755 2784 2495 +2755 2784 2495 +2755 2784 2495 +2755 2784 2496 +2755 2784 2496 +2755 2784 2496 +2755 2784 2497 +2755 2784 2498 +2755 2785 2499 +2755 2785 2501 +2755 2786 2503 +2755 2786 2506 +2755 2787 2509 +2755 2787 2512 +2755 2787 2515 +2754 2787 2520 +2753 2788 2528 +2753 2787 2543 +2751 2785 2569 +2749 2789 2602 +2753 2795 2660 +2755 2801 2726 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2755 2784 2495 +2755 2784 2495 +2755 2784 2495 +2755 2784 2496 +2755 2784 2496 +2755 2784 2496 +2755 2784 2497 +2755 2784 2498 +2755 2785 2499 +2755 2785 2501 +2755 2786 2503 +2755 2786 2506 +2755 2787 2509 +2755 2787 2512 +2755 2787 2515 +2754 2787 2520 +2753 2788 2528 +2753 2787 2543 +2751 2785 2569 +2749 2789 2602 +2753 2795 2660 +2755 2801 2726 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2755 2784 2495 +2755 2784 2495 +2755 2784 2495 +2755 2784 2496 +2755 2784 2496 +2755 2784 2496 +2755 2784 2497 +2755 2784 2498 +2755 2785 2499 +2755 2785 2501 +2755 2786 2503 +2755 2786 2506 +2755 2787 2509 +2755 2787 2512 +2755 2787 2515 +2754 2787 2520 +2753 2788 2528 +2753 2787 2543 +2751 2785 2569 +2749 2789 2602 +2753 2795 2660 +2755 2801 2726 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2755 2784 2495 +2755 2784 2495 +2755 2784 2495 +2755 2784 2496 +2755 2784 2496 +2755 2784 2496 +2755 2784 2497 +2755 2784 2498 +2755 2785 2499 +2755 2785 2501 +2755 2786 2503 +2755 2786 2506 +2755 2787 2509 +2755 2787 2512 +2755 2787 2515 +2754 2787 2520 +2753 2788 2528 +2753 2787 2543 +2751 2785 2569 +2749 2789 2602 +2753 2795 2660 +2755 2801 2726 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2755 2784 2495 +2755 2784 2495 +2755 2784 2495 +2755 2784 2496 +2755 2784 2496 +2755 2784 2496 +2755 2784 2497 +2755 2784 2498 +2755 2785 2499 +2755 2785 2501 +2755 2786 2503 +2755 2786 2506 +2755 2787 2509 +2755 2787 2512 +2755 2787 2515 +2754 2787 2520 +2753 2788 2528 +2753 2787 2543 +2751 2785 2569 +2749 2789 2602 +2753 2795 2660 +2755 2801 2726 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2755 2784 2495 +2755 2784 2495 +2755 2784 2495 +2755 2784 2496 +2755 2784 2496 +2755 2784 2496 +2755 2784 2497 +2755 2784 2498 +2755 2785 2499 +2755 2785 2501 +2755 2786 2503 +2755 2786 2506 +2755 2787 2509 +2755 2787 2512 +2755 2787 2515 +2754 2787 2520 +2753 2788 2528 +2753 2787 2543 +2751 2785 2569 +2749 2789 2602 +2753 2795 2660 +2755 2801 2726 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2755 2784 2495 +2755 2784 2495 +2755 2784 2495 +2755 2784 2496 +2755 2784 2496 +2755 2784 2496 +2755 2784 2497 +2755 2784 2498 +2755 2785 2499 +2755 2785 2501 +2755 2786 2503 +2755 2786 2506 +2755 2787 2509 +2755 2787 2512 +2755 2787 2515 +2754 2787 2520 +2753 2788 2528 +2753 2787 2543 +2751 2785 2569 +2749 2789 2602 +2753 2795 2660 +2755 2801 2726 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2757 2802 2755 +2331 0 2000 +2331 0 2000 +2331 0 2001 +2331 0 2001 +2331 0 2002 +2331 0 2003 +2331 0 2005 +2331 0 2007 +2331 0 2010 +2331 0 2013 +2331 0 2018 +2331 0 2024 +2330 0 2034 +2326 0 2051 +2322 0 2072 +2321 0 2094 +2320 0 2138 +2314 0 2186 +2319 0 2244 +2315 0 2315 +2317 0 2391 +2334 913 2480 +2348 1255 2518 +2348 1255 2518 +2348 1255 2518 +2348 1255 2518 +2348 1255 2518 +2348 1255 2518 +2348 1255 2518 +2348 1255 2518 +2348 1255 2518 +2348 1255 2518 +2331 0 2000 +2331 0 2000 +2331 0 2001 +2331 0 2001 +2331 0 2002 +2331 0 2003 +2331 0 2005 +2331 0 2007 +2331 0 2010 +2331 0 2013 +2331 0 2018 +2331 0 2024 +2330 0 2034 +2326 0 2051 +2322 0 2072 +2321 0 2094 +2320 0 2138 +2315 0 2186 +2319 0 2245 +2315 0 2315 +2317 0 2392 +2334 917 2480 +2348 1256 2518 +2348 1256 2518 +2348 1256 2518 +2348 1256 2518 +2348 1256 2518 +2348 1256 2518 +2348 1256 2518 +2348 1256 2518 +2348 1256 2518 +2348 1256 2518 +2331 0 2000 +2331 0 2000 +2331 0 2001 +2331 0 2001 +2331 0 2002 +2331 0 2003 +2331 0 2005 +2331 0 2007 +2331 0 2010 +2331 0 2013 +2331 0 2018 +2330 0 2024 +2329 0 2034 +2326 0 2051 +2322 0 2072 +2321 0 2095 +2320 0 2138 +2315 0 2186 +2319 0 2245 +2315 0 2315 +2317 0 2392 +2334 922 2479 +2348 1258 2518 +2348 1258 2518 +2348 1258 2518 +2348 1258 2518 +2348 1258 2518 +2348 1258 2518 +2348 1258 2518 +2348 1258 2518 +2348 1258 2518 +2348 1258 2518 +2331 0 2000 +2331 0 2000 +2331 0 2001 +2331 0 2001 +2331 0 2002 +2331 0 2003 +2331 0 2005 +2331 0 2007 +2331 0 2010 +2331 0 2013 +2331 0 2018 +2330 0 2024 +2329 0 2034 +2326 0 2052 +2322 0 2072 +2321 0 2095 +2321 0 2138 +2315 0 2186 +2319 0 2245 +2315 0 2315 +2317 0 2392 +2334 929 2479 +2348 1260 2518 +2348 1260 2518 +2348 1260 2518 +2348 1260 2518 +2348 1260 2518 +2348 1260 2518 +2348 1260 2518 +2348 1260 2518 +2348 1260 2518 +2348 1260 2518 +2331 0 2000 +2331 0 2000 +2331 0 2001 +2331 0 2001 +2331 0 2002 +2331 0 2003 +2331 0 2005 +2331 0 2007 +2331 0 2010 +2331 0 2013 +2331 0 2018 +2330 0 2024 +2329 0 2034 +2326 0 2052 +2322 0 2072 +2321 0 2095 +2321 0 2138 +2315 0 2186 +2319 0 2245 +2315 0 2315 +2317 0 2392 +2334 938 2479 +2349 1263 2518 +2349 1263 2518 +2349 1263 2518 +2349 1263 2518 +2349 1263 2518 +2349 1263 2518 +2349 1263 2518 +2349 1263 2518 +2349 1263 2518 +2349 1263 2518 +2331 0 2000 +2331 0 2000 +2331 0 2001 +2331 0 2001 +2330 0 2002 +2330 0 2003 +2330 0 2005 +2330 0 2007 +2330 0 2010 +2330 0 2013 +2330 0 2018 +2330 0 2024 +2329 0 2034 +2326 0 2052 +2322 0 2073 +2321 0 2095 +2322 0 2138 +2315 0 2186 +2318 0 2245 +2315 30 2315 +2317 0 2392 +2334 949 2479 +2349 1267 2518 +2349 1267 2518 +2349 1267 2518 +2349 1267 2518 +2349 1267 2518 +2349 1267 2518 +2349 1267 2518 +2349 1267 2518 +2349 1267 2518 +2349 1267 2518 +2331 0 2000 +2330 0 2000 +2330 0 2001 +2330 0 2001 +2330 0 2002 +2330 0 2003 +2330 0 2005 +2330 0 2007 +2330 0 2010 +2330 0 2013 +2330 0 2018 +2329 0 2024 +2328 0 2034 +2327 0 2053 +2323 0 2073 +2321 0 2096 +2322 0 2139 +2315 0 2186 +2318 0 2245 +2315 163 2315 +2317 32 2392 +2334 964 2478 +2350 1272 2518 +2350 1272 2518 +2350 1272 2518 +2350 1272 2518 +2350 1272 2518 +2350 1272 2518 +2350 1272 2518 +2350 1272 2518 +2350 1272 2518 +2350 1272 2518 +2330 0 2000 +2330 0 2000 +2330 0 2001 +2330 0 2001 +2330 0 2002 +2330 0 2003 +2329 0 2005 +2329 0 2007 +2329 0 2010 +2329 0 2013 +2329 0 2018 +2328 0 2024 +2327 0 2034 +2327 0 2053 +2323 0 2073 +2321 0 2096 +2323 0 2139 +2316 0 2186 +2318 0 2246 +2315 295 2315 +2317 164 2393 +2334 983 2478 +2351 1279 2518 +2351 1279 2518 +2351 1279 2518 +2351 1279 2518 +2351 1279 2518 +2351 1279 2518 +2351 1279 2518 +2351 1279 2518 +2351 1279 2518 +2351 1279 2518 +2330 0 2000 +2330 0 2000 +2330 0 2001 +2330 0 2001 +2329 0 2002 +2329 0 2003 +2329 0 2005 +2329 0 2007 +2328 0 2010 +2328 0 2013 +2328 0 2018 +2328 0 2024 +2327 0 2034 +2327 0 2054 +2323 0 2074 +2321 0 2097 +2325 0 2140 +2316 0 2186 +2317 111 2246 +2315 426 2315 +2317 296 2393 +2334 993 2478 +2352 1288 2518 +2352 1288 2518 +2352 1288 2518 +2352 1288 2518 +2352 1288 2518 +2352 1288 2518 +2352 1288 2518 +2352 1288 2518 +2352 1288 2518 +2352 1288 2518 +2329 0 2000 +2329 0 2000 +2329 0 2001 +2329 0 2001 +2329 0 2002 +2329 0 2003 +2328 0 2005 +2328 0 2007 +2328 0 2010 +2327 0 2013 +2327 0 2018 +2326 0 2024 +2325 0 2034 +2327 0 2055 +2324 0 2075 +2321 0 2098 +2325 0 2141 +2317 0 2186 +2317 244 2247 +2315 559 2315 +2317 428 2393 +2335 1003 2479 +2354 1300 2518 +2354 1300 2518 +2354 1300 2518 +2354 1300 2518 +2354 1300 2518 +2354 1300 2518 +2354 1300 2518 +2354 1300 2518 +2354 1300 2518 +2354 1300 2518 +2328 0 2000 +2328 0 2000 +2328 0 2001 +2328 0 2001 +2328 0 2002 +2328 0 2003 +2328 0 2005 +2327 0 2007 +2327 0 2010 +2326 0 2013 +2325 0 2018 +2325 0 2024 +2324 0 2034 +2326 0 2055 +2325 61 2077 +2322 0 2099 +2325 0 2142 +2319 0 2187 +2316 376 2248 +2315 691 2315 +2317 560 2394 +2337 1018 2479 +2356 1315 2518 +2356 1315 2518 +2356 1315 2518 +2356 1315 2518 +2356 1315 2518 +2356 1315 2518 +2356 1315 2518 +2356 1315 2518 +2356 1315 2518 +2356 1315 2518 +2328 0 2000 +2328 0 2000 +2328 0 2001 +2328 0 2001 +2328 0 2002 +2327 0 2003 +2327 0 2005 +2327 0 2007 +2326 0 2010 +2326 0 2013 +2325 0 2018 +2325 0 2027 +2324 0 2036 +2326 0 2057 +2327 111 2081 +2323 0 2103 +2324 0 2142 +2322 0 2190 +2315 426 2247 +2315 741 2315 +2319 692 2394 +2338 1091 2481 +2357 1322 2518 +2357 1322 2518 +2357 1322 2518 +2357 1322 2518 +2357 1322 2518 +2357 1322 2518 +2357 1322 2518 +2357 1322 2518 +2357 1322 2518 +2357 1322 2518 +2328 0 2000 +2328 0 2001 +2328 0 2001 +2328 0 2002 +2328 0 2003 +2328 0 2004 +2328 0 2006 +2327 0 2008 +2327 0 2011 +2326 0 2014 +2326 0 2019 +2325 0 2028 +2325 0 2040 +2327 44 2061 +2328 216 2085 +2326 0 2109 +2323 0 2139 +2324 123 2193 +2314 517 2247 +2316 765 2314 +2321 843 2393 +2340 1204 2482 +2357 1332 2518 +2357 1332 2518 +2357 1332 2518 +2357 1332 2518 +2357 1332 2518 +2357 1332 2518 +2357 1332 2518 +2357 1332 2518 +2357 1332 2518 +2357 1332 2518 +2332 614 2005 +2332 614 2005 +2332 614 2006 +2332 614 2007 +2332 614 2008 +2332 614 2009 +2331 614 2011 +2331 614 2014 +2331 614 2017 +2330 614 2021 +2329 614 2026 +2329 614 2035 +2329 614 2047 +2329 614 2057 +2330 670 2082 +2328 727 2109 +2321 757 2137 +2324 709 2196 +2318 901 2249 +2318 868 2316 +2319 1072 2391 +2342 1300 2483 +2357 1409 2519 +2357 1409 2519 +2357 1409 2519 +2357 1409 2519 +2357 1409 2519 +2357 1409 2519 +2357 1409 2519 +2357 1409 2519 +2357 1409 2519 +2357 1409 2519 +2336 924 2012 +2336 924 2013 +2336 924 2013 +2336 924 2014 +2335 924 2015 +2335 924 2017 +2335 924 2019 +2335 924 2021 +2335 924 2024 +2334 924 2029 +2333 924 2035 +2333 924 2042 +2333 924 2052 +2333 924 2063 +2333 971 2080 +2330 1020 2108 +2324 1065 2141 +2325 1052 2197 +2321 1173 2253 +2319 1077 2317 +2317 1227 2391 +2345 1377 2483 +2359 1509 2521 +2359 1509 2521 +2359 1509 2521 +2359 1509 2521 +2359 1509 2521 +2359 1509 2521 +2359 1509 2521 +2359 1509 2521 +2359 1509 2521 +2359 1509 2521 +2339 1291 2020 +2339 1291 2020 +2339 1290 2020 +2339 1289 2020 +2339 1288 2021 +2339 1286 2022 +2338 1283 2023 +2338 1280 2024 +2338 1276 2026 +2337 1270 2028 +2336 1267 2033 +2336 1267 2040 +2336 1269 2048 +2336 1288 2065 +2336 1315 2084 +2334 1351 2116 +2331 1343 2151 +2330 1343 2198 +2326 1378 2257 +2319 1407 2317 +2328 1414 2394 +2350 1546 2482 +2368 1608 2518 +2368 1608 2518 +2368 1608 2518 +2368 1608 2518 +2368 1608 2518 +2368 1608 2518 +2368 1608 2518 +2368 1608 2518 +2368 1608 2518 +2368 1608 2518 +2349 1557 2025 +2349 1557 2025 +2349 1557 2025 +2349 1557 2026 +2348 1557 2026 +2348 1557 2027 +2348 1557 2028 +2348 1557 2029 +2347 1557 2031 +2347 1554 2033 +2346 1550 2036 +2345 1548 2041 +2344 1548 2050 +2344 1550 2067 +2343 1557 2089 +2339 1571 2115 +2337 1566 2150 +2337 1567 2198 +2334 1596 2255 +2334 1620 2319 +2342 1646 2396 +2365 1717 2481 +2382 1733 2518 +2382 1733 2518 +2382 1733 2518 +2382 1733 2518 +2382 1733 2518 +2382 1733 2518 +2382 1733 2518 +2382 1733 2518 +2382 1733 2518 +2382 1733 2518 +2364 1776 2032 +2364 1776 2033 +2364 1776 2033 +2364 1777 2034 +2364 1778 2035 +2364 1779 2037 +2363 1781 2038 +2363 1783 2041 +2363 1786 2044 +2362 1790 2049 +2361 1791 2052 +2360 1789 2057 +2359 1784 2065 +2361 1784 2074 +2360 1788 2094 +2357 1783 2117 +2358 1792 2156 +2361 1806 2207 +2354 1805 2259 +2356 1809 2322 +2365 1822 2394 +2383 1874 2484 +2403 1889 2522 +2403 1889 2522 +2403 1889 2522 +2403 1889 2522 +2403 1889 2522 +2403 1889 2522 +2403 1889 2522 +2403 1889 2522 +2403 1889 2522 +2403 1889 2522 +2391 1976 2073 +2391 1976 2073 +2391 1976 2073 +2391 1976 2073 +2391 1976 2073 +2391 1976 2074 +2391 1976 2074 +2391 1976 2075 +2391 1976 2076 +2391 1976 2077 +2391 1976 2078 +2391 1976 2080 +2392 1977 2084 +2394 1981 2093 +2395 1984 2105 +2395 1984 2134 +2392 1984 2163 +2391 1984 2207 +2387 1995 2266 +2396 1995 2324 +2406 2017 2405 +2425 2038 2488 +2448 2060 2526 +2448 2060 2526 +2448 2060 2526 +2448 2060 2526 +2448 2060 2526 +2448 2060 2526 +2448 2060 2526 +2448 2060 2526 +2448 2060 2526 +2448 2060 2526 +2463 2177 2109 +2463 2177 2109 +2463 2177 2110 +2463 2177 2110 +2463 2177 2110 +2463 2177 2111 +2463 2178 2112 +2463 2178 2113 +2463 2179 2114 +2463 2180 2116 +2463 2181 2119 +2462 2182 2121 +2460 2183 2124 +2459 2181 2126 +2458 2177 2134 +2459 2184 2157 +2463 2186 2183 +2461 2184 2220 +2460 2188 2268 +2468 2189 2340 +2476 2191 2406 +2508 2230 2493 +2527 2237 2533 +2527 2237 2533 +2527 2237 2533 +2527 2237 2533 +2527 2237 2533 +2527 2237 2533 +2527 2237 2533 +2527 2237 2533 +2527 2237 2533 +2527 2237 2533 +2598 2410 2071 +2598 2410 2071 +2599 2411 2071 +2599 2411 2071 +2599 2411 2071 +2600 2412 2070 +2600 2412 2070 +2602 2413 2069 +2603 2414 2069 +2604 2416 2068 +2606 2418 2066 +2607 2419 2068 +2607 2420 2073 +2607 2420 2079 +2607 2420 2088 +2607 2420 2112 +2607 2422 2147 +2606 2422 2181 +2609 2420 2243 +2615 2426 2302 +2628 2437 2380 +2656 2458 2462 +2676 2468 2496 +2676 2468 2496 +2676 2468 2496 +2676 2468 2496 +2676 2468 2496 +2676 2468 2496 +2676 2468 2496 +2676 2468 2496 +2676 2468 2496 +2676 2468 2496 +2763 2702 2255 +2763 2702 2255 +2763 2702 2255 +2762 2701 2255 +2762 2701 2255 +2762 2701 2255 +2762 2701 2255 +2762 2701 2255 +2762 2701 2255 +2763 2701 2256 +2763 2701 2257 +2764 2701 2260 +2765 2701 2267 +2765 2701 2274 +2763 2702 2284 +2762 2704 2300 +2763 2706 2316 +2764 2703 2348 +2764 2703 2388 +2768 2710 2455 +2769 2717 2538 +2774 2727 2626 +2777 2731 2667 +2777 2731 2667 +2777 2731 2667 +2777 2731 2667 +2777 2731 2667 +2777 2731 2667 +2777 2731 2667 +2777 2731 2667 +2777 2731 2667 +2777 2731 2667 +2781 2797 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2549 +2781 2798 2550 +2781 2799 2550 +2781 2799 2551 +2781 2800 2553 +2782 2800 2555 +2782 2801 2558 +2781 2801 2560 +2780 2800 2559 +2782 2800 2561 +2781 2802 2573 +2781 2801 2584 +2780 2801 2606 +2777 2799 2640 +2775 2801 2677 +2779 2810 2744 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2797 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2549 +2781 2798 2550 +2781 2799 2550 +2781 2799 2551 +2781 2800 2553 +2782 2800 2555 +2782 2801 2558 +2781 2801 2560 +2780 2800 2559 +2782 2800 2561 +2781 2802 2573 +2781 2801 2584 +2780 2801 2606 +2777 2799 2640 +2775 2801 2677 +2779 2810 2744 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2797 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2549 +2781 2798 2550 +2781 2799 2550 +2781 2799 2551 +2781 2800 2553 +2782 2800 2555 +2782 2801 2558 +2781 2801 2560 +2780 2800 2559 +2782 2800 2561 +2781 2802 2573 +2781 2801 2584 +2780 2801 2606 +2777 2799 2640 +2775 2801 2677 +2779 2810 2744 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2797 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2549 +2781 2798 2550 +2781 2799 2550 +2781 2799 2551 +2781 2800 2553 +2782 2800 2555 +2782 2801 2558 +2781 2801 2560 +2780 2800 2559 +2782 2800 2561 +2781 2802 2573 +2781 2801 2584 +2780 2801 2606 +2777 2799 2640 +2775 2801 2677 +2779 2810 2744 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2797 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2549 +2781 2798 2550 +2781 2799 2550 +2781 2799 2551 +2781 2800 2553 +2782 2800 2555 +2782 2801 2558 +2781 2801 2560 +2780 2800 2559 +2782 2800 2561 +2781 2802 2573 +2781 2801 2584 +2780 2801 2606 +2777 2799 2640 +2775 2801 2677 +2779 2810 2744 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2797 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2549 +2781 2798 2550 +2781 2799 2550 +2781 2799 2551 +2781 2800 2553 +2782 2800 2555 +2782 2801 2558 +2781 2801 2560 +2780 2800 2559 +2782 2800 2561 +2781 2802 2573 +2781 2801 2584 +2780 2801 2606 +2777 2799 2640 +2775 2801 2677 +2779 2810 2744 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2797 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2549 +2781 2798 2550 +2781 2799 2550 +2781 2799 2551 +2781 2800 2553 +2782 2800 2555 +2782 2801 2558 +2781 2801 2560 +2780 2800 2559 +2782 2800 2561 +2781 2802 2573 +2781 2801 2584 +2780 2801 2606 +2777 2799 2640 +2775 2801 2677 +2779 2810 2744 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2797 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2549 +2781 2798 2550 +2781 2799 2550 +2781 2799 2551 +2781 2800 2553 +2782 2800 2555 +2782 2801 2558 +2781 2801 2560 +2780 2800 2559 +2782 2800 2561 +2781 2802 2573 +2781 2801 2584 +2780 2801 2606 +2777 2799 2640 +2775 2801 2677 +2779 2810 2744 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2797 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2549 +2781 2798 2550 +2781 2799 2550 +2781 2799 2551 +2781 2800 2553 +2782 2800 2555 +2782 2801 2558 +2781 2801 2560 +2780 2800 2559 +2782 2800 2561 +2781 2802 2573 +2781 2801 2584 +2780 2801 2606 +2777 2799 2640 +2775 2801 2677 +2779 2810 2744 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2797 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2548 +2781 2798 2549 +2781 2798 2550 +2781 2799 2550 +2781 2799 2551 +2781 2800 2553 +2782 2800 2555 +2782 2801 2558 +2781 2801 2560 +2780 2800 2559 +2782 2800 2561 +2781 2802 2573 +2781 2801 2584 +2780 2801 2606 +2777 2799 2640 +2775 2801 2677 +2779 2810 2744 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2781 2810 2772 +2481 974 2044 +2481 973 2044 +2481 971 2044 +2481 969 2045 +2480 967 2045 +2480 963 2046 +2480 958 2047 +2480 951 2048 +2480 951 2051 +2480 951 2054 +2480 951 2058 +2480 951 2063 +2480 955 2072 +2479 992 2087 +2477 1037 2103 +2476 1071 2127 +2475 1132 2163 +2475 1219 2209 +2476 1370 2267 +2478 1392 2329 +2488 1469 2402 +2504 1610 2488 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2481 977 2044 +2481 977 2044 +2481 976 2044 +2480 974 2045 +2480 971 2045 +2480 968 2046 +2480 963 2047 +2480 956 2048 +2480 955 2051 +2480 955 2054 +2480 955 2058 +2480 955 2063 +2480 960 2072 +2479 996 2087 +2477 1041 2103 +2476 1074 2127 +2476 1133 2163 +2475 1220 2209 +2476 1373 2267 +2478 1394 2329 +2488 1469 2402 +2504 1611 2488 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2481 982 2044 +2481 982 2044 +2480 982 2044 +2480 980 2045 +2480 977 2045 +2480 974 2046 +2480 969 2047 +2480 962 2048 +2480 962 2051 +2480 962 2054 +2480 962 2058 +2480 962 2063 +2480 966 2072 +2479 1002 2087 +2477 1046 2103 +2476 1079 2127 +2476 1136 2162 +2475 1221 2209 +2476 1377 2267 +2478 1397 2329 +2488 1469 2402 +2504 1611 2488 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2481 988 2044 +2480 988 2044 +2480 988 2044 +2480 988 2045 +2480 985 2045 +2480 981 2046 +2480 977 2047 +2480 970 2048 +2480 970 2051 +2480 970 2054 +2480 970 2058 +2480 970 2063 +2480 974 2072 +2479 1010 2087 +2477 1053 2103 +2476 1085 2127 +2476 1138 2162 +2475 1222 2209 +2476 1382 2267 +2478 1400 2329 +2488 1469 2402 +2504 1612 2488 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2480 996 2044 +2480 996 2044 +2480 996 2044 +2480 996 2045 +2480 996 2045 +2480 992 2046 +2480 987 2047 +2480 981 2048 +2480 981 2051 +2480 981 2054 +2480 981 2058 +2480 981 2063 +2480 985 2072 +2479 1020 2087 +2477 1062 2103 +2476 1094 2127 +2476 1142 2162 +2476 1223 2208 +2476 1388 2268 +2478 1404 2329 +2488 1469 2402 +2504 1614 2487 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2480 1006 2044 +2480 1006 2044 +2480 1006 2044 +2480 1006 2045 +2480 1006 2045 +2480 1006 2046 +2480 1001 2047 +2479 995 2048 +2479 995 2051 +2479 995 2054 +2479 995 2058 +2479 995 2063 +2479 999 2072 +2479 1032 2087 +2477 1074 2103 +2476 1105 2127 +2476 1147 2162 +2476 1225 2208 +2476 1397 2268 +2478 1409 2329 +2488 1469 2401 +2503 1615 2487 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2519 1697 2526 +2480 1019 2044 +2480 1019 2044 +2480 1019 2044 +2480 1019 2045 +2480 1019 2045 +2480 1019 2046 +2479 1019 2047 +2479 1013 2048 +2479 1013 2051 +2479 1013 2054 +2479 1013 2058 +2479 1013 2063 +2479 1017 2072 +2479 1049 2087 +2477 1089 2103 +2475 1119 2127 +2476 1154 2161 +2476 1228 2208 +2477 1408 2268 +2477 1417 2329 +2488 1469 2401 +2503 1618 2486 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2480 1036 2044 +2480 1036 2044 +2480 1036 2044 +2480 1036 2045 +2480 1036 2045 +2479 1036 2046 +2479 1036 2047 +2479 1036 2048 +2479 1036 2051 +2479 1036 2054 +2479 1036 2058 +2479 1036 2063 +2479 1039 2072 +2478 1070 2087 +2476 1108 2103 +2475 1137 2127 +2477 1162 2161 +2476 1232 2207 +2477 1423 2268 +2477 1426 2329 +2488 1469 2401 +2503 1621 2486 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2518 1697 2526 +2480 1071 2044 +2480 1071 2044 +2480 1071 2044 +2480 1071 2045 +2480 1071 2045 +2479 1071 2046 +2479 1071 2047 +2479 1071 2048 +2479 1044 2051 +2479 1044 2054 +2479 1044 2058 +2479 1044 2063 +2479 1048 2072 +2479 1085 2087 +2477 1122 2103 +2476 1149 2126 +2478 1179 2161 +2476 1241 2208 +2477 1424 2268 +2478 1436 2329 +2488 1480 2401 +2504 1627 2485 +2519 1702 2526 +2519 1702 2526 +2519 1702 2526 +2519 1702 2526 +2519 1702 2526 +2519 1702 2526 +2519 1702 2526 +2519 1702 2526 +2519 1702 2526 +2519 1702 2526 +2480 1115 2044 +2480 1115 2044 +2480 1115 2044 +2480 1115 2045 +2480 1115 2045 +2479 1115 2046 +2479 1115 2047 +2479 1115 2048 +2479 1091 2051 +2479 1054 2054 +2479 1054 2058 +2479 1054 2063 +2479 1058 2072 +2479 1099 2087 +2478 1138 2103 +2476 1165 2125 +2478 1193 2160 +2477 1254 2209 +2477 1424 2266 +2479 1448 2329 +2488 1495 2401 +2504 1635 2485 +2521 1708 2526 +2521 1708 2526 +2521 1708 2526 +2521 1708 2526 +2521 1708 2526 +2521 1708 2526 +2521 1708 2526 +2521 1708 2526 +2521 1708 2526 +2521 1708 2526 +2480 1169 2044 +2480 1169 2044 +2480 1169 2044 +2480 1169 2045 +2480 1169 2045 +2479 1169 2046 +2479 1169 2047 +2479 1169 2048 +2479 1147 2051 +2479 1114 2054 +2479 1067 2058 +2479 1067 2063 +2479 1070 2072 +2479 1111 2087 +2479 1159 2103 +2478 1185 2125 +2480 1212 2159 +2478 1278 2209 +2477 1424 2264 +2480 1464 2329 +2488 1514 2402 +2505 1646 2485 +2523 1718 2525 +2523 1718 2525 +2523 1718 2525 +2523 1718 2525 +2523 1718 2525 +2523 1718 2525 +2523 1718 2525 +2523 1718 2525 +2523 1718 2525 +2523 1718 2525 +2480 1231 2044 +2480 1231 2044 +2480 1231 2044 +2480 1231 2045 +2480 1231 2045 +2479 1231 2046 +2479 1231 2047 +2479 1231 2048 +2479 1212 2051 +2479 1184 2054 +2479 1144 2058 +2479 1083 2063 +2479 1087 2072 +2479 1126 2087 +2481 1186 2103 +2479 1210 2125 +2481 1236 2158 +2479 1308 2209 +2477 1424 2262 +2481 1485 2329 +2488 1542 2402 +2507 1660 2485 +2526 1729 2524 +2526 1729 2524 +2526 1729 2524 +2526 1729 2524 +2526 1729 2524 +2526 1729 2524 +2526 1729 2524 +2526 1729 2524 +2526 1729 2524 +2526 1729 2524 +2480 1299 2045 +2480 1299 2045 +2480 1299 2045 +2480 1299 2046 +2480 1299 2046 +2480 1299 2047 +2480 1299 2048 +2479 1299 2049 +2479 1283 2051 +2479 1259 2054 +2479 1225 2059 +2479 1174 2064 +2479 1114 2072 +2480 1151 2087 +2481 1213 2103 +2481 1244 2125 +2483 1268 2156 +2481 1346 2209 +2477 1430 2260 +2483 1511 2329 +2489 1583 2403 +2509 1680 2486 +2529 1745 2524 +2529 1745 2524 +2529 1745 2524 +2529 1745 2524 +2529 1745 2524 +2529 1745 2524 +2529 1745 2524 +2529 1745 2524 +2529 1745 2524 +2529 1745 2524 +2482 1385 2049 +2482 1385 2049 +2482 1384 2049 +2482 1384 2050 +2482 1382 2050 +2482 1381 2051 +2482 1379 2052 +2481 1376 2053 +2482 1366 2055 +2482 1349 2058 +2482 1321 2063 +2482 1281 2068 +2482 1235 2076 +2482 1263 2087 +2484 1312 2103 +2484 1330 2127 +2485 1346 2157 +2483 1386 2211 +2480 1472 2262 +2483 1568 2328 +2492 1634 2404 +2509 1714 2486 +2531 1767 2524 +2531 1767 2524 +2531 1767 2524 +2531 1767 2524 +2531 1767 2524 +2531 1767 2524 +2531 1767 2524 +2531 1767 2524 +2531 1767 2524 +2531 1767 2524 +2484 1508 2049 +2484 1507 2049 +2484 1507 2049 +2484 1506 2050 +2484 1506 2050 +2484 1504 2051 +2483 1503 2052 +2483 1501 2053 +2483 1493 2055 +2484 1482 2058 +2485 1467 2063 +2485 1445 2068 +2485 1416 2076 +2486 1436 2087 +2488 1470 2103 +2487 1479 2127 +2487 1478 2157 +2484 1484 2208 +2487 1547 2268 +2485 1642 2328 +2495 1671 2406 +2509 1751 2486 +2531 1801 2522 +2531 1801 2522 +2531 1801 2522 +2531 1801 2522 +2531 1801 2522 +2531 1801 2522 +2531 1801 2522 +2531 1801 2522 +2531 1801 2522 +2531 1801 2522 +2490 1632 2052 +2490 1632 2052 +2490 1632 2053 +2490 1632 2054 +2490 1632 2054 +2490 1632 2056 +2490 1632 2057 +2490 1632 2060 +2490 1628 2062 +2491 1623 2066 +2491 1613 2070 +2492 1598 2075 +2493 1580 2082 +2492 1580 2091 +2493 1600 2105 +2492 1613 2131 +2491 1631 2162 +2489 1632 2206 +2493 1658 2265 +2493 1730 2328 +2499 1742 2404 +2518 1813 2489 +2537 1864 2526 +2537 1864 2526 +2537 1864 2526 +2537 1864 2526 +2537 1864 2526 +2537 1864 2526 +2537 1864 2526 +2537 1864 2526 +2537 1864 2526 +2537 1864 2526 +2502 1784 2071 +2502 1784 2071 +2502 1784 2071 +2502 1784 2072 +2502 1784 2073 +2502 1784 2073 +2502 1784 2075 +2502 1784 2077 +2502 1779 2078 +2502 1774 2081 +2503 1769 2085 +2503 1762 2090 +2504 1754 2098 +2504 1757 2107 +2503 1757 2115 +2502 1754 2140 +2499 1757 2175 +2500 1778 2215 +2501 1806 2266 +2500 1817 2326 +2509 1832 2402 +2528 1891 2490 +2547 1940 2532 +2547 1940 2532 +2547 1940 2532 +2547 1940 2532 +2547 1940 2532 +2547 1940 2532 +2547 1940 2532 +2547 1940 2532 +2547 1940 2532 +2547 1940 2532 +2516 1927 2075 +2516 1928 2075 +2516 1928 2075 +2516 1928 2076 +2516 1928 2076 +2517 1929 2077 +2517 1929 2078 +2517 1930 2079 +2517 1930 2081 +2516 1930 2084 +2516 1924 2087 +2515 1913 2090 +2514 1901 2096 +2516 1900 2105 +2517 1912 2120 +2515 1910 2143 +2514 1921 2180 +2513 1918 2218 +2516 1938 2272 +2518 1938 2333 +2528 1977 2406 +2552 2008 2491 +2567 2036 2526 +2567 2036 2526 +2567 2036 2526 +2567 2036 2526 +2567 2036 2526 +2567 2036 2526 +2567 2036 2526 +2567 2036 2526 +2567 2036 2526 +2567 2036 2526 +2547 2073 2093 +2547 2073 2093 +2547 2073 2093 +2546 2073 2093 +2546 2073 2094 +2546 2073 2094 +2545 2073 2095 +2545 2073 2096 +2545 2073 2098 +2545 2073 2100 +2545 2073 2102 +2545 2073 2106 +2545 2073 2111 +2545 2075 2119 +2543 2075 2127 +2543 2078 2149 +2543 2075 2180 +2546 2089 2222 +2546 2091 2274 +2551 2098 2337 +2558 2115 2411 +2588 2155 2491 +2598 2168 2529 +2598 2168 2529 +2598 2168 2529 +2598 2168 2529 +2598 2168 2529 +2598 2168 2529 +2598 2168 2529 +2598 2168 2529 +2598 2168 2529 +2598 2168 2529 +2602 2259 2099 +2602 2258 2099 +2602 2258 2099 +2602 2258 2099 +2602 2258 2099 +2601 2258 2099 +2600 2258 2099 +2600 2257 2099 +2600 2257 2101 +2600 2257 2104 +2600 2257 2108 +2600 2257 2113 +2600 2257 2120 +2603 2257 2132 +2606 2257 2144 +2606 2263 2161 +2611 2270 2190 +2606 2266 2226 +2612 2277 2289 +2615 2277 2347 +2621 2290 2414 +2651 2318 2497 +2668 2333 2527 +2668 2333 2527 +2668 2333 2527 +2668 2333 2527 +2668 2333 2527 +2668 2333 2527 +2668 2333 2527 +2668 2333 2527 +2668 2333 2527 +2668 2333 2527 +2722 2488 1839 +2722 2488 1839 +2722 2488 1841 +2722 2488 1843 +2723 2488 1845 +2723 2489 1848 +2724 2489 1852 +2724 2489 1858 +2724 2489 1862 +2724 2489 1867 +2724 2488 1873 +2723 2488 1876 +2723 2488 1878 +2722 2488 1891 +2722 2486 1913 +2722 2485 1956 +2723 2487 2015 +2723 2486 2070 +2727 2489 2159 +2732 2495 2242 +2745 2509 2352 +2763 2528 2453 +2772 2539 2499 +2772 2539 2499 +2772 2539 2499 +2772 2539 2499 +2772 2539 2499 +2772 2539 2499 +2772 2539 2499 +2772 2539 2499 +2772 2539 2499 +2772 2539 2499 +2811 2738 2425 +2811 2738 2425 +2811 2738 2426 +2811 2738 2426 +2811 2738 2426 +2811 2738 2426 +2811 2738 2427 +2811 2738 2427 +2811 2739 2428 +2811 2739 2430 +2811 2739 2431 +2811 2740 2434 +2811 2740 2437 +2811 2740 2440 +2810 2740 2444 +2810 2740 2448 +2811 2742 2464 +2810 2743 2483 +2810 2745 2522 +2810 2748 2564 +2811 2752 2623 +2810 2762 2701 +2813 2763 2731 +2813 2763 2731 +2813 2763 2731 +2813 2763 2731 +2813 2763 2731 +2813 2763 2731 +2813 2763 2731 +2813 2763 2731 +2813 2763 2731 +2813 2763 2731 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2590 +2820 2813 2590 +2820 2813 2589 +2820 2812 2589 +2820 2813 2590 +2820 2813 2591 +2820 2813 2592 +2820 2813 2593 +2820 2814 2596 +2819 2814 2598 +2818 2813 2599 +2820 2813 2604 +2822 2813 2612 +2820 2813 2623 +2820 2815 2643 +2818 2815 2670 +2818 2817 2713 +2813 2819 2768 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2590 +2820 2813 2590 +2820 2813 2589 +2820 2812 2589 +2820 2813 2590 +2820 2813 2591 +2820 2813 2592 +2820 2813 2593 +2820 2814 2596 +2819 2814 2598 +2818 2813 2599 +2820 2813 2604 +2822 2813 2612 +2820 2813 2623 +2820 2815 2643 +2818 2815 2670 +2818 2817 2713 +2813 2819 2768 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2590 +2820 2813 2590 +2820 2813 2589 +2820 2812 2589 +2820 2813 2590 +2820 2813 2591 +2820 2813 2592 +2820 2813 2593 +2820 2814 2596 +2819 2814 2598 +2818 2813 2599 +2820 2813 2604 +2822 2813 2612 +2820 2813 2623 +2820 2815 2643 +2818 2815 2670 +2818 2817 2713 +2813 2819 2768 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2590 +2820 2813 2590 +2820 2813 2589 +2820 2812 2589 +2820 2813 2590 +2820 2813 2591 +2820 2813 2592 +2820 2813 2593 +2820 2814 2596 +2819 2814 2598 +2818 2813 2599 +2820 2813 2604 +2822 2813 2612 +2820 2813 2623 +2820 2815 2643 +2818 2815 2670 +2818 2817 2713 +2813 2819 2768 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2590 +2820 2813 2590 +2820 2813 2589 +2820 2812 2589 +2820 2813 2590 +2820 2813 2591 +2820 2813 2592 +2820 2813 2593 +2820 2814 2596 +2819 2814 2598 +2818 2813 2599 +2820 2813 2604 +2822 2813 2612 +2820 2813 2623 +2820 2815 2643 +2818 2815 2670 +2818 2817 2713 +2813 2819 2768 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2590 +2820 2813 2590 +2820 2813 2589 +2820 2812 2589 +2820 2813 2590 +2820 2813 2591 +2820 2813 2592 +2820 2813 2593 +2820 2814 2596 +2819 2814 2598 +2818 2813 2599 +2820 2813 2604 +2822 2813 2612 +2820 2813 2623 +2820 2815 2643 +2818 2815 2670 +2818 2817 2713 +2813 2819 2768 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2590 +2820 2813 2590 +2820 2813 2589 +2820 2812 2589 +2820 2813 2590 +2820 2813 2591 +2820 2813 2592 +2820 2813 2593 +2820 2814 2596 +2819 2814 2598 +2818 2813 2599 +2820 2813 2604 +2822 2813 2612 +2820 2813 2623 +2820 2815 2643 +2818 2815 2670 +2818 2817 2713 +2813 2819 2768 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2590 +2820 2813 2590 +2820 2813 2589 +2820 2812 2589 +2820 2813 2590 +2820 2813 2591 +2820 2813 2592 +2820 2813 2593 +2820 2814 2596 +2819 2814 2598 +2818 2813 2599 +2820 2813 2604 +2822 2813 2612 +2820 2813 2623 +2820 2815 2643 +2818 2815 2670 +2818 2817 2713 +2813 2819 2768 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2590 +2820 2813 2590 +2820 2813 2589 +2820 2812 2589 +2820 2813 2590 +2820 2813 2591 +2820 2813 2592 +2820 2813 2593 +2820 2814 2596 +2819 2814 2598 +2818 2813 2599 +2820 2813 2604 +2822 2813 2612 +2820 2813 2623 +2820 2815 2643 +2818 2815 2670 +2818 2817 2713 +2813 2819 2768 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2591 +2820 2813 2590 +2820 2813 2590 +2820 2813 2589 +2820 2812 2589 +2820 2813 2590 +2820 2813 2591 +2820 2813 2592 +2820 2813 2593 +2820 2814 2596 +2819 2814 2598 +2818 2813 2599 +2820 2813 2604 +2822 2813 2612 +2820 2813 2623 +2820 2815 2643 +2818 2815 2670 +2818 2817 2713 +2813 2819 2768 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2814 2823 2799 +2554 1623 2059 +2554 1623 2059 +2554 1623 2060 +2554 1623 2060 +2554 1623 2061 +2554 1623 2063 +2554 1623 2065 +2554 1623 2067 +2554 1623 2070 +2554 1623 2074 +2554 1623 2080 +2554 1623 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2555 1588 2133 +2556 1555 2169 +2555 1608 2217 +2557 1691 2269 +2563 1692 2342 +2564 1761 2409 +2587 1838 2491 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1625 2059 +2554 1624 2059 +2554 1624 2060 +2554 1624 2060 +2554 1624 2061 +2554 1624 2063 +2554 1624 2064 +2554 1624 2067 +2554 1624 2070 +2554 1624 2074 +2554 1624 2080 +2554 1624 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2556 1590 2134 +2556 1556 2169 +2555 1609 2217 +2557 1691 2269 +2563 1692 2342 +2564 1762 2409 +2587 1839 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1627 2059 +2554 1626 2059 +2554 1625 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2063 +2554 1625 2064 +2554 1625 2067 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1622 2096 +2554 1621 2102 +2554 1621 2110 +2556 1592 2134 +2556 1559 2169 +2555 1610 2217 +2557 1691 2269 +2564 1693 2342 +2564 1764 2409 +2587 1840 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1630 2060 +2554 1629 2060 +2554 1627 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2062 +2554 1625 2064 +2554 1625 2066 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1623 2095 +2554 1621 2102 +2554 1621 2110 +2556 1595 2134 +2556 1562 2169 +2555 1611 2217 +2557 1691 2270 +2564 1694 2342 +2564 1765 2409 +2587 1842 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1633 2060 +2554 1632 2060 +2554 1631 2060 +2554 1629 2060 +2554 1626 2061 +2554 1626 2062 +2554 1626 2064 +2554 1626 2066 +2554 1626 2069 +2554 1626 2073 +2554 1626 2079 +2554 1626 2086 +2554 1625 2095 +2554 1621 2102 +2554 1621 2110 +2556 1599 2135 +2556 1567 2169 +2555 1613 2217 +2557 1692 2270 +2564 1695 2342 +2565 1768 2409 +2587 1844 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1638 2061 +2554 1638 2061 +2554 1636 2061 +2554 1634 2061 +2554 1631 2061 +2554 1628 2062 +2554 1628 2063 +2554 1628 2066 +2554 1628 2069 +2554 1628 2073 +2554 1628 2079 +2554 1628 2086 +2554 1626 2095 +2554 1621 2102 +2554 1621 2110 +2556 1605 2135 +2556 1572 2169 +2555 1616 2217 +2557 1693 2270 +2564 1696 2342 +2565 1771 2409 +2587 1847 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2555 1645 2062 +2555 1644 2062 +2555 1643 2062 +2555 1641 2062 +2555 1638 2062 +2555 1635 2063 +2555 1631 2063 +2555 1631 2066 +2555 1631 2069 +2555 1631 2073 +2555 1631 2078 +2555 1631 2085 +2555 1628 2094 +2554 1621 2102 +2554 1621 2110 +2556 1612 2136 +2556 1580 2169 +2554 1619 2217 +2558 1694 2270 +2564 1698 2342 +2565 1775 2409 +2587 1852 2492 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2555 1654 2063 +2555 1653 2063 +2555 1651 2063 +2555 1650 2063 +2555 1647 2063 +2555 1644 2064 +2555 1640 2064 +2555 1633 2065 +2555 1633 2068 +2555 1633 2072 +2555 1633 2078 +2555 1633 2085 +2555 1631 2094 +2554 1621 2102 +2554 1621 2110 +2556 1621 2137 +2557 1590 2169 +2554 1624 2217 +2558 1695 2270 +2564 1701 2342 +2565 1781 2409 +2588 1857 2493 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2556 1665 2064 +2556 1664 2065 +2556 1663 2065 +2556 1661 2065 +2556 1659 2065 +2556 1655 2066 +2556 1651 2066 +2556 1646 2066 +2556 1638 2067 +2556 1638 2071 +2556 1638 2077 +2556 1638 2084 +2556 1636 2093 +2554 1621 2102 +2554 1621 2110 +2556 1633 2138 +2557 1603 2169 +2554 1630 2217 +2558 1697 2271 +2564 1704 2342 +2565 1788 2409 +2588 1860 2493 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2556 1680 2066 +2556 1679 2067 +2556 1678 2067 +2556 1676 2067 +2556 1674 2067 +2556 1671 2068 +2556 1667 2068 +2556 1661 2069 +2556 1653 2069 +2556 1643 2070 +2556 1643 2076 +2556 1643 2083 +2556 1641 2092 +2554 1624 2101 +2554 1621 2110 +2557 1649 2140 +2557 1620 2170 +2554 1638 2217 +2558 1699 2271 +2565 1709 2342 +2566 1798 2409 +2589 1863 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2558 1699 2069 +2558 1698 2069 +2558 1697 2070 +2558 1695 2070 +2558 1693 2070 +2558 1690 2070 +2558 1686 2071 +2558 1681 2071 +2558 1674 2072 +2558 1663 2073 +2558 1650 2074 +2558 1650 2082 +2557 1648 2091 +2555 1631 2100 +2554 1621 2110 +2557 1657 2141 +2558 1642 2173 +2554 1658 2217 +2559 1702 2273 +2565 1715 2342 +2566 1810 2409 +2589 1868 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2559 1723 2073 +2559 1723 2073 +2559 1722 2073 +2559 1720 2073 +2559 1718 2074 +2559 1715 2074 +2559 1711 2074 +2559 1706 2075 +2559 1699 2076 +2559 1690 2077 +2559 1677 2078 +2559 1659 2080 +2558 1657 2089 +2556 1641 2098 +2554 1621 2110 +2557 1657 2141 +2558 1669 2176 +2555 1684 2217 +2560 1706 2274 +2566 1723 2342 +2567 1816 2409 +2591 1873 2493 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2560 1754 2078 +2560 1754 2078 +2560 1753 2078 +2560 1752 2079 +2560 1750 2079 +2560 1747 2079 +2560 1744 2080 +2560 1739 2080 +2560 1732 2081 +2560 1724 2082 +2560 1712 2083 +2560 1695 2085 +2560 1674 2088 +2558 1658 2097 +2555 1635 2110 +2557 1661 2141 +2559 1703 2179 +2556 1716 2217 +2560 1716 2275 +2566 1739 2342 +2568 1818 2408 +2592 1880 2493 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2562 1761 2078 +2562 1761 2078 +2562 1761 2079 +2562 1762 2080 +2562 1763 2080 +2562 1765 2082 +2562 1766 2084 +2562 1769 2086 +2562 1772 2089 +2563 1771 2091 +2563 1760 2093 +2563 1745 2094 +2562 1727 2097 +2561 1712 2103 +2558 1692 2116 +2556 1693 2138 +2560 1738 2181 +2560 1744 2217 +2561 1744 2275 +2566 1785 2340 +2571 1835 2406 +2592 1893 2492 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2563 1769 2078 +2563 1769 2078 +2563 1770 2079 +2563 1771 2080 +2563 1772 2080 +2563 1773 2082 +2564 1775 2084 +2564 1777 2086 +2564 1780 2089 +2564 1784 2093 +2565 1789 2098 +2565 1796 2105 +2566 1789 2110 +2564 1776 2116 +2563 1758 2124 +2559 1753 2143 +2558 1773 2177 +2563 1787 2220 +2563 1779 2275 +2566 1840 2337 +2576 1860 2406 +2591 1925 2491 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2566 1822 2077 +2566 1822 2078 +2566 1822 2078 +2566 1822 2078 +2566 1822 2079 +2566 1822 2079 +2566 1822 2080 +2566 1822 2081 +2566 1822 2083 +2566 1822 2085 +2567 1824 2089 +2568 1831 2096 +2568 1839 2106 +2570 1844 2121 +2568 1834 2131 +2568 1813 2145 +2564 1813 2176 +2565 1838 2221 +2568 1838 2272 +2573 1888 2337 +2580 1896 2406 +2599 1967 2492 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2573 1894 2080 +2573 1894 2081 +2573 1895 2081 +2573 1896 2081 +2573 1897 2082 +2574 1898 2082 +2574 1900 2083 +2575 1903 2084 +2575 1906 2086 +2575 1906 2088 +2575 1906 2090 +2575 1906 2094 +2575 1906 2099 +2575 1907 2109 +2576 1913 2129 +2577 1915 2152 +2578 1893 2171 +2576 1899 2221 +2578 1919 2273 +2580 1949 2338 +2587 1961 2408 +2611 2008 2495 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2588 1996 2083 +2588 1997 2083 +2588 1997 2084 +2588 1997 2085 +2588 1997 2086 +2588 1998 2087 +2588 1998 2088 +2588 1999 2091 +2588 2000 2093 +2588 2001 2098 +2588 2005 2100 +2589 2012 2104 +2591 2018 2108 +2588 2010 2114 +2588 2009 2126 +2589 2014 2149 +2590 2016 2184 +2591 2003 2214 +2591 2019 2275 +2595 2044 2342 +2604 2072 2411 +2625 2108 2494 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2625 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2148 2111 +2624 2148 2111 +2623 2147 2111 +2623 2146 2111 +2622 2145 2111 +2621 2143 2111 +2620 2141 2111 +2618 2137 2111 +2617 2136 2114 +2617 2144 2126 +2617 2155 2141 +2619 2157 2164 +2623 2160 2195 +2624 2165 2231 +2619 2165 2275 +2633 2187 2352 +2638 2190 2417 +2660 2223 2503 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2670 2315 2112 +2671 2315 2112 +2671 2315 2112 +2671 2315 2111 +2671 2316 2111 +2672 2316 2111 +2672 2316 2111 +2673 2317 2110 +2674 2318 2109 +2675 2319 2108 +2677 2321 2107 +2680 2323 2105 +2682 2325 2106 +2681 2325 2118 +2680 2325 2133 +2678 2328 2149 +2677 2328 2176 +2677 2325 2215 +2687 2335 2275 +2689 2335 2316 +2695 2346 2391 +2724 2369 2462 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2775 2531 1744 +2775 2531 1745 +2775 2531 1747 +2775 2531 1750 +2776 2532 1753 +2776 2532 1758 +2776 2533 1764 +2776 2533 1772 +2777 2534 1782 +2778 2535 1796 +2778 2536 1813 +2778 2537 1825 +2777 2535 1833 +2776 2530 1839 +2776 2528 1859 +2778 2535 1929 +2779 2534 1991 +2780 2535 2071 +2782 2538 2158 +2784 2536 2248 +2791 2552 2360 +2803 2569 2485 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2826 2762 2506 +2826 2762 2506 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2506 +2826 2761 2507 +2826 2761 2509 +2826 2761 2510 +2826 2760 2508 +2826 2760 2508 +2826 2762 2520 +2826 2764 2535 +2826 2763 2548 +2826 2763 2571 +2826 2767 2613 +2826 2769 2662 +2826 2779 2732 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2554 1623 2059 +2554 1623 2059 +2554 1623 2060 +2554 1623 2060 +2554 1623 2061 +2554 1623 2063 +2554 1623 2065 +2554 1623 2067 +2554 1623 2070 +2554 1623 2074 +2554 1623 2080 +2554 1623 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2555 1588 2133 +2556 1555 2169 +2555 1608 2217 +2557 1691 2269 +2563 1692 2342 +2564 1761 2409 +2587 1838 2491 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1625 2059 +2554 1624 2059 +2554 1624 2060 +2554 1624 2060 +2554 1624 2061 +2554 1624 2063 +2554 1624 2064 +2554 1624 2067 +2554 1624 2070 +2554 1624 2074 +2554 1624 2080 +2554 1624 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2556 1590 2134 +2556 1556 2169 +2555 1609 2217 +2557 1691 2269 +2563 1692 2342 +2564 1762 2409 +2587 1839 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1627 2059 +2554 1626 2059 +2554 1625 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2063 +2554 1625 2064 +2554 1625 2067 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1622 2096 +2554 1621 2102 +2554 1621 2110 +2556 1592 2134 +2556 1559 2169 +2555 1610 2217 +2557 1691 2269 +2564 1693 2342 +2564 1764 2409 +2587 1840 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1630 2060 +2554 1629 2060 +2554 1627 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2062 +2554 1625 2064 +2554 1625 2066 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1623 2095 +2554 1621 2102 +2554 1621 2110 +2556 1595 2134 +2556 1562 2169 +2555 1611 2217 +2557 1691 2270 +2564 1694 2342 +2564 1765 2409 +2587 1842 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1633 2060 +2554 1632 2060 +2554 1631 2060 +2554 1629 2060 +2554 1626 2061 +2554 1626 2062 +2554 1626 2064 +2554 1626 2066 +2554 1626 2069 +2554 1626 2073 +2554 1626 2079 +2554 1626 2086 +2554 1625 2095 +2554 1621 2102 +2554 1621 2110 +2556 1599 2135 +2556 1567 2169 +2555 1613 2217 +2557 1692 2270 +2564 1695 2342 +2565 1768 2409 +2587 1844 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1638 2061 +2554 1638 2061 +2554 1636 2061 +2554 1634 2061 +2554 1631 2061 +2554 1628 2062 +2554 1628 2063 +2554 1628 2066 +2554 1628 2069 +2554 1628 2073 +2554 1628 2079 +2554 1628 2086 +2554 1626 2095 +2554 1621 2102 +2554 1621 2110 +2556 1605 2135 +2556 1572 2169 +2555 1616 2217 +2557 1693 2270 +2564 1696 2342 +2565 1771 2409 +2587 1847 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2555 1645 2062 +2555 1644 2062 +2555 1643 2062 +2555 1641 2062 +2555 1638 2062 +2555 1635 2063 +2555 1631 2063 +2555 1631 2066 +2555 1631 2069 +2555 1631 2073 +2555 1631 2078 +2555 1631 2085 +2555 1628 2094 +2554 1621 2102 +2554 1621 2110 +2556 1612 2136 +2556 1580 2169 +2554 1619 2217 +2558 1694 2270 +2564 1698 2342 +2565 1775 2409 +2587 1852 2492 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2555 1654 2063 +2555 1653 2063 +2555 1651 2063 +2555 1650 2063 +2555 1647 2063 +2555 1644 2064 +2555 1640 2064 +2555 1633 2065 +2555 1633 2068 +2555 1633 2072 +2555 1633 2078 +2555 1633 2085 +2555 1631 2094 +2554 1621 2102 +2554 1621 2110 +2556 1621 2137 +2557 1590 2169 +2554 1624 2217 +2558 1695 2270 +2564 1701 2342 +2565 1781 2409 +2588 1857 2493 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2556 1665 2064 +2556 1664 2065 +2556 1663 2065 +2556 1661 2065 +2556 1659 2065 +2556 1655 2066 +2556 1651 2066 +2556 1646 2066 +2556 1638 2067 +2556 1638 2071 +2556 1638 2077 +2556 1638 2084 +2556 1636 2093 +2554 1621 2102 +2554 1621 2110 +2556 1633 2138 +2557 1603 2169 +2554 1630 2217 +2558 1697 2271 +2564 1704 2342 +2565 1788 2409 +2588 1860 2493 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2556 1680 2066 +2556 1679 2067 +2556 1678 2067 +2556 1676 2067 +2556 1674 2067 +2556 1671 2068 +2556 1667 2068 +2556 1661 2069 +2556 1653 2069 +2556 1643 2070 +2556 1643 2076 +2556 1643 2083 +2556 1641 2092 +2554 1624 2101 +2554 1621 2110 +2557 1649 2140 +2557 1620 2170 +2554 1638 2217 +2558 1699 2271 +2565 1709 2342 +2566 1798 2409 +2589 1863 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2558 1699 2069 +2558 1698 2069 +2558 1697 2070 +2558 1695 2070 +2558 1693 2070 +2558 1690 2070 +2558 1686 2071 +2558 1681 2071 +2558 1674 2072 +2558 1663 2073 +2558 1650 2074 +2558 1650 2082 +2557 1648 2091 +2555 1631 2100 +2554 1621 2110 +2557 1657 2141 +2558 1642 2173 +2554 1658 2217 +2559 1702 2273 +2565 1715 2342 +2566 1810 2409 +2589 1868 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2559 1723 2073 +2559 1723 2073 +2559 1722 2073 +2559 1720 2073 +2559 1718 2074 +2559 1715 2074 +2559 1711 2074 +2559 1706 2075 +2559 1699 2076 +2559 1690 2077 +2559 1677 2078 +2559 1659 2080 +2558 1657 2089 +2556 1641 2098 +2554 1621 2110 +2557 1657 2141 +2558 1669 2176 +2555 1684 2217 +2560 1706 2274 +2566 1723 2342 +2567 1816 2409 +2591 1873 2493 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2560 1754 2078 +2560 1754 2078 +2560 1753 2078 +2560 1752 2079 +2560 1750 2079 +2560 1747 2079 +2560 1744 2080 +2560 1739 2080 +2560 1732 2081 +2560 1724 2082 +2560 1712 2083 +2560 1695 2085 +2560 1674 2088 +2558 1658 2097 +2555 1635 2110 +2557 1661 2141 +2559 1703 2179 +2556 1716 2217 +2560 1716 2275 +2566 1739 2342 +2568 1818 2408 +2592 1880 2493 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2562 1761 2078 +2562 1761 2078 +2562 1761 2079 +2562 1762 2080 +2562 1763 2080 +2562 1765 2082 +2562 1766 2084 +2562 1769 2086 +2562 1772 2089 +2563 1771 2091 +2563 1760 2093 +2563 1745 2094 +2562 1727 2097 +2561 1712 2103 +2558 1692 2116 +2556 1693 2138 +2560 1738 2181 +2560 1744 2217 +2561 1744 2275 +2566 1785 2340 +2571 1835 2406 +2592 1893 2492 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2563 1769 2078 +2563 1769 2078 +2563 1770 2079 +2563 1771 2080 +2563 1772 2080 +2563 1773 2082 +2564 1775 2084 +2564 1777 2086 +2564 1780 2089 +2564 1784 2093 +2565 1789 2098 +2565 1796 2105 +2566 1789 2110 +2564 1776 2116 +2563 1758 2124 +2559 1753 2143 +2558 1773 2177 +2563 1787 2220 +2563 1779 2275 +2566 1840 2337 +2576 1860 2406 +2591 1925 2491 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2566 1822 2077 +2566 1822 2078 +2566 1822 2078 +2566 1822 2078 +2566 1822 2079 +2566 1822 2079 +2566 1822 2080 +2566 1822 2081 +2566 1822 2083 +2566 1822 2085 +2567 1824 2089 +2568 1831 2096 +2568 1839 2106 +2570 1844 2121 +2568 1834 2131 +2568 1813 2145 +2564 1813 2176 +2565 1838 2221 +2568 1838 2272 +2573 1888 2337 +2580 1896 2406 +2599 1967 2492 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2573 1894 2080 +2573 1894 2081 +2573 1895 2081 +2573 1896 2081 +2573 1897 2082 +2574 1898 2082 +2574 1900 2083 +2575 1903 2084 +2575 1906 2086 +2575 1906 2088 +2575 1906 2090 +2575 1906 2094 +2575 1906 2099 +2575 1907 2109 +2576 1913 2129 +2577 1915 2152 +2578 1893 2171 +2576 1899 2221 +2578 1919 2273 +2580 1949 2338 +2587 1961 2408 +2611 2008 2495 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2588 1996 2083 +2588 1997 2083 +2588 1997 2084 +2588 1997 2085 +2588 1997 2086 +2588 1998 2087 +2588 1998 2088 +2588 1999 2091 +2588 2000 2093 +2588 2001 2098 +2588 2005 2100 +2589 2012 2104 +2591 2018 2108 +2588 2010 2114 +2588 2009 2126 +2589 2014 2149 +2590 2016 2184 +2591 2003 2214 +2591 2019 2275 +2595 2044 2342 +2604 2072 2411 +2625 2108 2494 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2625 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2148 2111 +2624 2148 2111 +2623 2147 2111 +2623 2146 2111 +2622 2145 2111 +2621 2143 2111 +2620 2141 2111 +2618 2137 2111 +2617 2136 2114 +2617 2144 2126 +2617 2155 2141 +2619 2157 2164 +2623 2160 2195 +2624 2165 2231 +2619 2165 2275 +2633 2187 2352 +2638 2190 2417 +2660 2223 2503 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2670 2315 2112 +2671 2315 2112 +2671 2315 2112 +2671 2315 2111 +2671 2316 2111 +2672 2316 2111 +2672 2316 2111 +2673 2317 2110 +2674 2318 2109 +2675 2319 2108 +2677 2321 2107 +2680 2323 2105 +2682 2325 2106 +2681 2325 2118 +2680 2325 2133 +2678 2328 2149 +2677 2328 2176 +2677 2325 2215 +2687 2335 2275 +2689 2335 2316 +2695 2346 2391 +2724 2369 2462 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2775 2531 1744 +2775 2531 1745 +2775 2531 1747 +2775 2531 1750 +2776 2532 1753 +2776 2532 1758 +2776 2533 1764 +2776 2533 1772 +2777 2534 1782 +2778 2535 1796 +2778 2536 1813 +2778 2537 1825 +2777 2535 1833 +2776 2530 1839 +2776 2528 1859 +2778 2535 1929 +2779 2534 1991 +2780 2535 2071 +2782 2538 2158 +2784 2536 2248 +2791 2552 2360 +2803 2569 2485 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2826 2762 2506 +2826 2762 2506 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2506 +2826 2761 2507 +2826 2761 2509 +2826 2761 2510 +2826 2760 2508 +2826 2760 2508 +2826 2762 2520 +2826 2764 2535 +2826 2763 2548 +2826 2763 2571 +2826 2767 2613 +2826 2769 2662 +2826 2779 2732 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2554 1623 2059 +2554 1623 2059 +2554 1623 2060 +2554 1623 2060 +2554 1623 2061 +2554 1623 2063 +2554 1623 2065 +2554 1623 2067 +2554 1623 2070 +2554 1623 2074 +2554 1623 2080 +2554 1623 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2555 1588 2133 +2556 1555 2169 +2555 1608 2217 +2557 1691 2269 +2563 1692 2342 +2564 1761 2409 +2587 1838 2491 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1625 2059 +2554 1624 2059 +2554 1624 2060 +2554 1624 2060 +2554 1624 2061 +2554 1624 2063 +2554 1624 2064 +2554 1624 2067 +2554 1624 2070 +2554 1624 2074 +2554 1624 2080 +2554 1624 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2556 1590 2134 +2556 1556 2169 +2555 1609 2217 +2557 1691 2269 +2563 1692 2342 +2564 1762 2409 +2587 1839 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1627 2059 +2554 1626 2059 +2554 1625 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2063 +2554 1625 2064 +2554 1625 2067 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1622 2096 +2554 1621 2102 +2554 1621 2110 +2556 1592 2134 +2556 1559 2169 +2555 1610 2217 +2557 1691 2269 +2564 1693 2342 +2564 1764 2409 +2587 1840 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1630 2060 +2554 1629 2060 +2554 1627 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2062 +2554 1625 2064 +2554 1625 2066 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1623 2095 +2554 1621 2102 +2554 1621 2110 +2556 1595 2134 +2556 1562 2169 +2555 1611 2217 +2557 1691 2270 +2564 1694 2342 +2564 1765 2409 +2587 1842 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1633 2060 +2554 1632 2060 +2554 1631 2060 +2554 1629 2060 +2554 1626 2061 +2554 1626 2062 +2554 1626 2064 +2554 1626 2066 +2554 1626 2069 +2554 1626 2073 +2554 1626 2079 +2554 1626 2086 +2554 1625 2095 +2554 1621 2102 +2554 1621 2110 +2556 1599 2135 +2556 1567 2169 +2555 1613 2217 +2557 1692 2270 +2564 1695 2342 +2565 1768 2409 +2587 1844 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1638 2061 +2554 1638 2061 +2554 1636 2061 +2554 1634 2061 +2554 1631 2061 +2554 1628 2062 +2554 1628 2063 +2554 1628 2066 +2554 1628 2069 +2554 1628 2073 +2554 1628 2079 +2554 1628 2086 +2554 1626 2095 +2554 1621 2102 +2554 1621 2110 +2556 1605 2135 +2556 1572 2169 +2555 1616 2217 +2557 1693 2270 +2564 1696 2342 +2565 1771 2409 +2587 1847 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2555 1645 2062 +2555 1644 2062 +2555 1643 2062 +2555 1641 2062 +2555 1638 2062 +2555 1635 2063 +2555 1631 2063 +2555 1631 2066 +2555 1631 2069 +2555 1631 2073 +2555 1631 2078 +2555 1631 2085 +2555 1628 2094 +2554 1621 2102 +2554 1621 2110 +2556 1612 2136 +2556 1580 2169 +2554 1619 2217 +2558 1694 2270 +2564 1698 2342 +2565 1775 2409 +2587 1852 2492 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2555 1654 2063 +2555 1653 2063 +2555 1651 2063 +2555 1650 2063 +2555 1647 2063 +2555 1644 2064 +2555 1640 2064 +2555 1633 2065 +2555 1633 2068 +2555 1633 2072 +2555 1633 2078 +2555 1633 2085 +2555 1631 2094 +2554 1621 2102 +2554 1621 2110 +2556 1621 2137 +2557 1590 2169 +2554 1624 2217 +2558 1695 2270 +2564 1701 2342 +2565 1781 2409 +2588 1857 2493 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2556 1665 2064 +2556 1664 2065 +2556 1663 2065 +2556 1661 2065 +2556 1659 2065 +2556 1655 2066 +2556 1651 2066 +2556 1646 2066 +2556 1638 2067 +2556 1638 2071 +2556 1638 2077 +2556 1638 2084 +2556 1636 2093 +2554 1621 2102 +2554 1621 2110 +2556 1633 2138 +2557 1603 2169 +2554 1630 2217 +2558 1697 2271 +2564 1704 2342 +2565 1788 2409 +2588 1860 2493 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2556 1680 2066 +2556 1679 2067 +2556 1678 2067 +2556 1676 2067 +2556 1674 2067 +2556 1671 2068 +2556 1667 2068 +2556 1661 2069 +2556 1653 2069 +2556 1643 2070 +2556 1643 2076 +2556 1643 2083 +2556 1641 2092 +2554 1624 2101 +2554 1621 2110 +2557 1649 2140 +2557 1620 2170 +2554 1638 2217 +2558 1699 2271 +2565 1709 2342 +2566 1798 2409 +2589 1863 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2558 1699 2069 +2558 1698 2069 +2558 1697 2070 +2558 1695 2070 +2558 1693 2070 +2558 1690 2070 +2558 1686 2071 +2558 1681 2071 +2558 1674 2072 +2558 1663 2073 +2558 1650 2074 +2558 1650 2082 +2557 1648 2091 +2555 1631 2100 +2554 1621 2110 +2557 1657 2141 +2558 1642 2173 +2554 1658 2217 +2559 1702 2273 +2565 1715 2342 +2566 1810 2409 +2589 1868 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2559 1723 2073 +2559 1723 2073 +2559 1722 2073 +2559 1720 2073 +2559 1718 2074 +2559 1715 2074 +2559 1711 2074 +2559 1706 2075 +2559 1699 2076 +2559 1690 2077 +2559 1677 2078 +2559 1659 2080 +2558 1657 2089 +2556 1641 2098 +2554 1621 2110 +2557 1657 2141 +2558 1669 2176 +2555 1684 2217 +2560 1706 2274 +2566 1723 2342 +2567 1816 2409 +2591 1873 2493 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2560 1754 2078 +2560 1754 2078 +2560 1753 2078 +2560 1752 2079 +2560 1750 2079 +2560 1747 2079 +2560 1744 2080 +2560 1739 2080 +2560 1732 2081 +2560 1724 2082 +2560 1712 2083 +2560 1695 2085 +2560 1674 2088 +2558 1658 2097 +2555 1635 2110 +2557 1661 2141 +2559 1703 2179 +2556 1716 2217 +2560 1716 2275 +2566 1739 2342 +2568 1818 2408 +2592 1880 2493 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2562 1761 2078 +2562 1761 2078 +2562 1761 2079 +2562 1762 2080 +2562 1763 2080 +2562 1765 2082 +2562 1766 2084 +2562 1769 2086 +2562 1772 2089 +2563 1771 2091 +2563 1760 2093 +2563 1745 2094 +2562 1727 2097 +2561 1712 2103 +2558 1692 2116 +2556 1693 2138 +2560 1738 2181 +2560 1744 2217 +2561 1744 2275 +2566 1785 2340 +2571 1835 2406 +2592 1893 2492 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2563 1769 2078 +2563 1769 2078 +2563 1770 2079 +2563 1771 2080 +2563 1772 2080 +2563 1773 2082 +2564 1775 2084 +2564 1777 2086 +2564 1780 2089 +2564 1784 2093 +2565 1789 2098 +2565 1796 2105 +2566 1789 2110 +2564 1776 2116 +2563 1758 2124 +2559 1753 2143 +2558 1773 2177 +2563 1787 2220 +2563 1779 2275 +2566 1840 2337 +2576 1860 2406 +2591 1925 2491 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2566 1822 2077 +2566 1822 2078 +2566 1822 2078 +2566 1822 2078 +2566 1822 2079 +2566 1822 2079 +2566 1822 2080 +2566 1822 2081 +2566 1822 2083 +2566 1822 2085 +2567 1824 2089 +2568 1831 2096 +2568 1839 2106 +2570 1844 2121 +2568 1834 2131 +2568 1813 2145 +2564 1813 2176 +2565 1838 2221 +2568 1838 2272 +2573 1888 2337 +2580 1896 2406 +2599 1967 2492 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2573 1894 2080 +2573 1894 2081 +2573 1895 2081 +2573 1896 2081 +2573 1897 2082 +2574 1898 2082 +2574 1900 2083 +2575 1903 2084 +2575 1906 2086 +2575 1906 2088 +2575 1906 2090 +2575 1906 2094 +2575 1906 2099 +2575 1907 2109 +2576 1913 2129 +2577 1915 2152 +2578 1893 2171 +2576 1899 2221 +2578 1919 2273 +2580 1949 2338 +2587 1961 2408 +2611 2008 2495 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2588 1996 2083 +2588 1997 2083 +2588 1997 2084 +2588 1997 2085 +2588 1997 2086 +2588 1998 2087 +2588 1998 2088 +2588 1999 2091 +2588 2000 2093 +2588 2001 2098 +2588 2005 2100 +2589 2012 2104 +2591 2018 2108 +2588 2010 2114 +2588 2009 2126 +2589 2014 2149 +2590 2016 2184 +2591 2003 2214 +2591 2019 2275 +2595 2044 2342 +2604 2072 2411 +2625 2108 2494 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2625 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2148 2111 +2624 2148 2111 +2623 2147 2111 +2623 2146 2111 +2622 2145 2111 +2621 2143 2111 +2620 2141 2111 +2618 2137 2111 +2617 2136 2114 +2617 2144 2126 +2617 2155 2141 +2619 2157 2164 +2623 2160 2195 +2624 2165 2231 +2619 2165 2275 +2633 2187 2352 +2638 2190 2417 +2660 2223 2503 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2670 2315 2112 +2671 2315 2112 +2671 2315 2112 +2671 2315 2111 +2671 2316 2111 +2672 2316 2111 +2672 2316 2111 +2673 2317 2110 +2674 2318 2109 +2675 2319 2108 +2677 2321 2107 +2680 2323 2105 +2682 2325 2106 +2681 2325 2118 +2680 2325 2133 +2678 2328 2149 +2677 2328 2176 +2677 2325 2215 +2687 2335 2275 +2689 2335 2316 +2695 2346 2391 +2724 2369 2462 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2775 2531 1744 +2775 2531 1745 +2775 2531 1747 +2775 2531 1750 +2776 2532 1753 +2776 2532 1758 +2776 2533 1764 +2776 2533 1772 +2777 2534 1782 +2778 2535 1796 +2778 2536 1813 +2778 2537 1825 +2777 2535 1833 +2776 2530 1839 +2776 2528 1859 +2778 2535 1929 +2779 2534 1991 +2780 2535 2071 +2782 2538 2158 +2784 2536 2248 +2791 2552 2360 +2803 2569 2485 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2826 2762 2506 +2826 2762 2506 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2506 +2826 2761 2507 +2826 2761 2509 +2826 2761 2510 +2826 2760 2508 +2826 2760 2508 +2826 2762 2520 +2826 2764 2535 +2826 2763 2548 +2826 2763 2571 +2826 2767 2613 +2826 2769 2662 +2826 2779 2732 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2554 1623 2059 +2554 1623 2059 +2554 1623 2060 +2554 1623 2060 +2554 1623 2061 +2554 1623 2063 +2554 1623 2065 +2554 1623 2067 +2554 1623 2070 +2554 1623 2074 +2554 1623 2080 +2554 1623 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2555 1588 2133 +2556 1555 2169 +2555 1608 2217 +2557 1691 2269 +2563 1692 2342 +2564 1761 2409 +2587 1838 2491 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1625 2059 +2554 1624 2059 +2554 1624 2060 +2554 1624 2060 +2554 1624 2061 +2554 1624 2063 +2554 1624 2064 +2554 1624 2067 +2554 1624 2070 +2554 1624 2074 +2554 1624 2080 +2554 1624 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2556 1590 2134 +2556 1556 2169 +2555 1609 2217 +2557 1691 2269 +2563 1692 2342 +2564 1762 2409 +2587 1839 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1627 2059 +2554 1626 2059 +2554 1625 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2063 +2554 1625 2064 +2554 1625 2067 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1622 2096 +2554 1621 2102 +2554 1621 2110 +2556 1592 2134 +2556 1559 2169 +2555 1610 2217 +2557 1691 2269 +2564 1693 2342 +2564 1764 2409 +2587 1840 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1630 2060 +2554 1629 2060 +2554 1627 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2062 +2554 1625 2064 +2554 1625 2066 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1623 2095 +2554 1621 2102 +2554 1621 2110 +2556 1595 2134 +2556 1562 2169 +2555 1611 2217 +2557 1691 2270 +2564 1694 2342 +2564 1765 2409 +2587 1842 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1633 2060 +2554 1632 2060 +2554 1631 2060 +2554 1629 2060 +2554 1626 2061 +2554 1626 2062 +2554 1626 2064 +2554 1626 2066 +2554 1626 2069 +2554 1626 2073 +2554 1626 2079 +2554 1626 2086 +2554 1625 2095 +2554 1621 2102 +2554 1621 2110 +2556 1599 2135 +2556 1567 2169 +2555 1613 2217 +2557 1692 2270 +2564 1695 2342 +2565 1768 2409 +2587 1844 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1638 2061 +2554 1638 2061 +2554 1636 2061 +2554 1634 2061 +2554 1631 2061 +2554 1628 2062 +2554 1628 2063 +2554 1628 2066 +2554 1628 2069 +2554 1628 2073 +2554 1628 2079 +2554 1628 2086 +2554 1626 2095 +2554 1621 2102 +2554 1621 2110 +2556 1605 2135 +2556 1572 2169 +2555 1616 2217 +2557 1693 2270 +2564 1696 2342 +2565 1771 2409 +2587 1847 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2555 1645 2062 +2555 1644 2062 +2555 1643 2062 +2555 1641 2062 +2555 1638 2062 +2555 1635 2063 +2555 1631 2063 +2555 1631 2066 +2555 1631 2069 +2555 1631 2073 +2555 1631 2078 +2555 1631 2085 +2555 1628 2094 +2554 1621 2102 +2554 1621 2110 +2556 1612 2136 +2556 1580 2169 +2554 1619 2217 +2558 1694 2270 +2564 1698 2342 +2565 1775 2409 +2587 1852 2492 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2555 1654 2063 +2555 1653 2063 +2555 1651 2063 +2555 1650 2063 +2555 1647 2063 +2555 1644 2064 +2555 1640 2064 +2555 1633 2065 +2555 1633 2068 +2555 1633 2072 +2555 1633 2078 +2555 1633 2085 +2555 1631 2094 +2554 1621 2102 +2554 1621 2110 +2556 1621 2137 +2557 1590 2169 +2554 1624 2217 +2558 1695 2270 +2564 1701 2342 +2565 1781 2409 +2588 1857 2493 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2556 1665 2064 +2556 1664 2065 +2556 1663 2065 +2556 1661 2065 +2556 1659 2065 +2556 1655 2066 +2556 1651 2066 +2556 1646 2066 +2556 1638 2067 +2556 1638 2071 +2556 1638 2077 +2556 1638 2084 +2556 1636 2093 +2554 1621 2102 +2554 1621 2110 +2556 1633 2138 +2557 1603 2169 +2554 1630 2217 +2558 1697 2271 +2564 1704 2342 +2565 1788 2409 +2588 1860 2493 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2556 1680 2066 +2556 1679 2067 +2556 1678 2067 +2556 1676 2067 +2556 1674 2067 +2556 1671 2068 +2556 1667 2068 +2556 1661 2069 +2556 1653 2069 +2556 1643 2070 +2556 1643 2076 +2556 1643 2083 +2556 1641 2092 +2554 1624 2101 +2554 1621 2110 +2557 1649 2140 +2557 1620 2170 +2554 1638 2217 +2558 1699 2271 +2565 1709 2342 +2566 1798 2409 +2589 1863 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2558 1699 2069 +2558 1698 2069 +2558 1697 2070 +2558 1695 2070 +2558 1693 2070 +2558 1690 2070 +2558 1686 2071 +2558 1681 2071 +2558 1674 2072 +2558 1663 2073 +2558 1650 2074 +2558 1650 2082 +2557 1648 2091 +2555 1631 2100 +2554 1621 2110 +2557 1657 2141 +2558 1642 2173 +2554 1658 2217 +2559 1702 2273 +2565 1715 2342 +2566 1810 2409 +2589 1868 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2559 1723 2073 +2559 1723 2073 +2559 1722 2073 +2559 1720 2073 +2559 1718 2074 +2559 1715 2074 +2559 1711 2074 +2559 1706 2075 +2559 1699 2076 +2559 1690 2077 +2559 1677 2078 +2559 1659 2080 +2558 1657 2089 +2556 1641 2098 +2554 1621 2110 +2557 1657 2141 +2558 1669 2176 +2555 1684 2217 +2560 1706 2274 +2566 1723 2342 +2567 1816 2409 +2591 1873 2493 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2560 1754 2078 +2560 1754 2078 +2560 1753 2078 +2560 1752 2079 +2560 1750 2079 +2560 1747 2079 +2560 1744 2080 +2560 1739 2080 +2560 1732 2081 +2560 1724 2082 +2560 1712 2083 +2560 1695 2085 +2560 1674 2088 +2558 1658 2097 +2555 1635 2110 +2557 1661 2141 +2559 1703 2179 +2556 1716 2217 +2560 1716 2275 +2566 1739 2342 +2568 1818 2408 +2592 1880 2493 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2562 1761 2078 +2562 1761 2078 +2562 1761 2079 +2562 1762 2080 +2562 1763 2080 +2562 1765 2082 +2562 1766 2084 +2562 1769 2086 +2562 1772 2089 +2563 1771 2091 +2563 1760 2093 +2563 1745 2094 +2562 1727 2097 +2561 1712 2103 +2558 1692 2116 +2556 1693 2138 +2560 1738 2181 +2560 1744 2217 +2561 1744 2275 +2566 1785 2340 +2571 1835 2406 +2592 1893 2492 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2563 1769 2078 +2563 1769 2078 +2563 1770 2079 +2563 1771 2080 +2563 1772 2080 +2563 1773 2082 +2564 1775 2084 +2564 1777 2086 +2564 1780 2089 +2564 1784 2093 +2565 1789 2098 +2565 1796 2105 +2566 1789 2110 +2564 1776 2116 +2563 1758 2124 +2559 1753 2143 +2558 1773 2177 +2563 1787 2220 +2563 1779 2275 +2566 1840 2337 +2576 1860 2406 +2591 1925 2491 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2566 1822 2077 +2566 1822 2078 +2566 1822 2078 +2566 1822 2078 +2566 1822 2079 +2566 1822 2079 +2566 1822 2080 +2566 1822 2081 +2566 1822 2083 +2566 1822 2085 +2567 1824 2089 +2568 1831 2096 +2568 1839 2106 +2570 1844 2121 +2568 1834 2131 +2568 1813 2145 +2564 1813 2176 +2565 1838 2221 +2568 1838 2272 +2573 1888 2337 +2580 1896 2406 +2599 1967 2492 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2573 1894 2080 +2573 1894 2081 +2573 1895 2081 +2573 1896 2081 +2573 1897 2082 +2574 1898 2082 +2574 1900 2083 +2575 1903 2084 +2575 1906 2086 +2575 1906 2088 +2575 1906 2090 +2575 1906 2094 +2575 1906 2099 +2575 1907 2109 +2576 1913 2129 +2577 1915 2152 +2578 1893 2171 +2576 1899 2221 +2578 1919 2273 +2580 1949 2338 +2587 1961 2408 +2611 2008 2495 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2588 1996 2083 +2588 1997 2083 +2588 1997 2084 +2588 1997 2085 +2588 1997 2086 +2588 1998 2087 +2588 1998 2088 +2588 1999 2091 +2588 2000 2093 +2588 2001 2098 +2588 2005 2100 +2589 2012 2104 +2591 2018 2108 +2588 2010 2114 +2588 2009 2126 +2589 2014 2149 +2590 2016 2184 +2591 2003 2214 +2591 2019 2275 +2595 2044 2342 +2604 2072 2411 +2625 2108 2494 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2625 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2148 2111 +2624 2148 2111 +2623 2147 2111 +2623 2146 2111 +2622 2145 2111 +2621 2143 2111 +2620 2141 2111 +2618 2137 2111 +2617 2136 2114 +2617 2144 2126 +2617 2155 2141 +2619 2157 2164 +2623 2160 2195 +2624 2165 2231 +2619 2165 2275 +2633 2187 2352 +2638 2190 2417 +2660 2223 2503 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2670 2315 2112 +2671 2315 2112 +2671 2315 2112 +2671 2315 2111 +2671 2316 2111 +2672 2316 2111 +2672 2316 2111 +2673 2317 2110 +2674 2318 2109 +2675 2319 2108 +2677 2321 2107 +2680 2323 2105 +2682 2325 2106 +2681 2325 2118 +2680 2325 2133 +2678 2328 2149 +2677 2328 2176 +2677 2325 2215 +2687 2335 2275 +2689 2335 2316 +2695 2346 2391 +2724 2369 2462 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2775 2531 1744 +2775 2531 1745 +2775 2531 1747 +2775 2531 1750 +2776 2532 1753 +2776 2532 1758 +2776 2533 1764 +2776 2533 1772 +2777 2534 1782 +2778 2535 1796 +2778 2536 1813 +2778 2537 1825 +2777 2535 1833 +2776 2530 1839 +2776 2528 1859 +2778 2535 1929 +2779 2534 1991 +2780 2535 2071 +2782 2538 2158 +2784 2536 2248 +2791 2552 2360 +2803 2569 2485 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2826 2762 2506 +2826 2762 2506 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2506 +2826 2761 2507 +2826 2761 2509 +2826 2761 2510 +2826 2760 2508 +2826 2760 2508 +2826 2762 2520 +2826 2764 2535 +2826 2763 2548 +2826 2763 2571 +2826 2767 2613 +2826 2769 2662 +2826 2779 2732 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2554 1623 2059 +2554 1623 2059 +2554 1623 2060 +2554 1623 2060 +2554 1623 2061 +2554 1623 2063 +2554 1623 2065 +2554 1623 2067 +2554 1623 2070 +2554 1623 2074 +2554 1623 2080 +2554 1623 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2555 1588 2133 +2556 1555 2169 +2555 1608 2217 +2557 1691 2269 +2563 1692 2342 +2564 1761 2409 +2587 1838 2491 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1625 2059 +2554 1624 2059 +2554 1624 2060 +2554 1624 2060 +2554 1624 2061 +2554 1624 2063 +2554 1624 2064 +2554 1624 2067 +2554 1624 2070 +2554 1624 2074 +2554 1624 2080 +2554 1624 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2556 1590 2134 +2556 1556 2169 +2555 1609 2217 +2557 1691 2269 +2563 1692 2342 +2564 1762 2409 +2587 1839 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1627 2059 +2554 1626 2059 +2554 1625 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2063 +2554 1625 2064 +2554 1625 2067 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1622 2096 +2554 1621 2102 +2554 1621 2110 +2556 1592 2134 +2556 1559 2169 +2555 1610 2217 +2557 1691 2269 +2564 1693 2342 +2564 1764 2409 +2587 1840 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1630 2060 +2554 1629 2060 +2554 1627 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2062 +2554 1625 2064 +2554 1625 2066 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1623 2095 +2554 1621 2102 +2554 1621 2110 +2556 1595 2134 +2556 1562 2169 +2555 1611 2217 +2557 1691 2270 +2564 1694 2342 +2564 1765 2409 +2587 1842 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1633 2060 +2554 1632 2060 +2554 1631 2060 +2554 1629 2060 +2554 1626 2061 +2554 1626 2062 +2554 1626 2064 +2554 1626 2066 +2554 1626 2069 +2554 1626 2073 +2554 1626 2079 +2554 1626 2086 +2554 1625 2095 +2554 1621 2102 +2554 1621 2110 +2556 1599 2135 +2556 1567 2169 +2555 1613 2217 +2557 1692 2270 +2564 1695 2342 +2565 1768 2409 +2587 1844 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1638 2061 +2554 1638 2061 +2554 1636 2061 +2554 1634 2061 +2554 1631 2061 +2554 1628 2062 +2554 1628 2063 +2554 1628 2066 +2554 1628 2069 +2554 1628 2073 +2554 1628 2079 +2554 1628 2086 +2554 1626 2095 +2554 1621 2102 +2554 1621 2110 +2556 1605 2135 +2556 1572 2169 +2555 1616 2217 +2557 1693 2270 +2564 1696 2342 +2565 1771 2409 +2587 1847 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2555 1645 2062 +2555 1644 2062 +2555 1643 2062 +2555 1641 2062 +2555 1638 2062 +2555 1635 2063 +2555 1631 2063 +2555 1631 2066 +2555 1631 2069 +2555 1631 2073 +2555 1631 2078 +2555 1631 2085 +2555 1628 2094 +2554 1621 2102 +2554 1621 2110 +2556 1612 2136 +2556 1580 2169 +2554 1619 2217 +2558 1694 2270 +2564 1698 2342 +2565 1775 2409 +2587 1852 2492 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2555 1654 2063 +2555 1653 2063 +2555 1651 2063 +2555 1650 2063 +2555 1647 2063 +2555 1644 2064 +2555 1640 2064 +2555 1633 2065 +2555 1633 2068 +2555 1633 2072 +2555 1633 2078 +2555 1633 2085 +2555 1631 2094 +2554 1621 2102 +2554 1621 2110 +2556 1621 2137 +2557 1590 2169 +2554 1624 2217 +2558 1695 2270 +2564 1701 2342 +2565 1781 2409 +2588 1857 2493 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2556 1665 2064 +2556 1664 2065 +2556 1663 2065 +2556 1661 2065 +2556 1659 2065 +2556 1655 2066 +2556 1651 2066 +2556 1646 2066 +2556 1638 2067 +2556 1638 2071 +2556 1638 2077 +2556 1638 2084 +2556 1636 2093 +2554 1621 2102 +2554 1621 2110 +2556 1633 2138 +2557 1603 2169 +2554 1630 2217 +2558 1697 2271 +2564 1704 2342 +2565 1788 2409 +2588 1860 2493 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2556 1680 2066 +2556 1679 2067 +2556 1678 2067 +2556 1676 2067 +2556 1674 2067 +2556 1671 2068 +2556 1667 2068 +2556 1661 2069 +2556 1653 2069 +2556 1643 2070 +2556 1643 2076 +2556 1643 2083 +2556 1641 2092 +2554 1624 2101 +2554 1621 2110 +2557 1649 2140 +2557 1620 2170 +2554 1638 2217 +2558 1699 2271 +2565 1709 2342 +2566 1798 2409 +2589 1863 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2558 1699 2069 +2558 1698 2069 +2558 1697 2070 +2558 1695 2070 +2558 1693 2070 +2558 1690 2070 +2558 1686 2071 +2558 1681 2071 +2558 1674 2072 +2558 1663 2073 +2558 1650 2074 +2558 1650 2082 +2557 1648 2091 +2555 1631 2100 +2554 1621 2110 +2557 1657 2141 +2558 1642 2173 +2554 1658 2217 +2559 1702 2273 +2565 1715 2342 +2566 1810 2409 +2589 1868 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2559 1723 2073 +2559 1723 2073 +2559 1722 2073 +2559 1720 2073 +2559 1718 2074 +2559 1715 2074 +2559 1711 2074 +2559 1706 2075 +2559 1699 2076 +2559 1690 2077 +2559 1677 2078 +2559 1659 2080 +2558 1657 2089 +2556 1641 2098 +2554 1621 2110 +2557 1657 2141 +2558 1669 2176 +2555 1684 2217 +2560 1706 2274 +2566 1723 2342 +2567 1816 2409 +2591 1873 2493 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2560 1754 2078 +2560 1754 2078 +2560 1753 2078 +2560 1752 2079 +2560 1750 2079 +2560 1747 2079 +2560 1744 2080 +2560 1739 2080 +2560 1732 2081 +2560 1724 2082 +2560 1712 2083 +2560 1695 2085 +2560 1674 2088 +2558 1658 2097 +2555 1635 2110 +2557 1661 2141 +2559 1703 2179 +2556 1716 2217 +2560 1716 2275 +2566 1739 2342 +2568 1818 2408 +2592 1880 2493 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2562 1761 2078 +2562 1761 2078 +2562 1761 2079 +2562 1762 2080 +2562 1763 2080 +2562 1765 2082 +2562 1766 2084 +2562 1769 2086 +2562 1772 2089 +2563 1771 2091 +2563 1760 2093 +2563 1745 2094 +2562 1727 2097 +2561 1712 2103 +2558 1692 2116 +2556 1693 2138 +2560 1738 2181 +2560 1744 2217 +2561 1744 2275 +2566 1785 2340 +2571 1835 2406 +2592 1893 2492 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2563 1769 2078 +2563 1769 2078 +2563 1770 2079 +2563 1771 2080 +2563 1772 2080 +2563 1773 2082 +2564 1775 2084 +2564 1777 2086 +2564 1780 2089 +2564 1784 2093 +2565 1789 2098 +2565 1796 2105 +2566 1789 2110 +2564 1776 2116 +2563 1758 2124 +2559 1753 2143 +2558 1773 2177 +2563 1787 2220 +2563 1779 2275 +2566 1840 2337 +2576 1860 2406 +2591 1925 2491 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2566 1822 2077 +2566 1822 2078 +2566 1822 2078 +2566 1822 2078 +2566 1822 2079 +2566 1822 2079 +2566 1822 2080 +2566 1822 2081 +2566 1822 2083 +2566 1822 2085 +2567 1824 2089 +2568 1831 2096 +2568 1839 2106 +2570 1844 2121 +2568 1834 2131 +2568 1813 2145 +2564 1813 2176 +2565 1838 2221 +2568 1838 2272 +2573 1888 2337 +2580 1896 2406 +2599 1967 2492 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2573 1894 2080 +2573 1894 2081 +2573 1895 2081 +2573 1896 2081 +2573 1897 2082 +2574 1898 2082 +2574 1900 2083 +2575 1903 2084 +2575 1906 2086 +2575 1906 2088 +2575 1906 2090 +2575 1906 2094 +2575 1906 2099 +2575 1907 2109 +2576 1913 2129 +2577 1915 2152 +2578 1893 2171 +2576 1899 2221 +2578 1919 2273 +2580 1949 2338 +2587 1961 2408 +2611 2008 2495 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2588 1996 2083 +2588 1997 2083 +2588 1997 2084 +2588 1997 2085 +2588 1997 2086 +2588 1998 2087 +2588 1998 2088 +2588 1999 2091 +2588 2000 2093 +2588 2001 2098 +2588 2005 2100 +2589 2012 2104 +2591 2018 2108 +2588 2010 2114 +2588 2009 2126 +2589 2014 2149 +2590 2016 2184 +2591 2003 2214 +2591 2019 2275 +2595 2044 2342 +2604 2072 2411 +2625 2108 2494 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2625 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2148 2111 +2624 2148 2111 +2623 2147 2111 +2623 2146 2111 +2622 2145 2111 +2621 2143 2111 +2620 2141 2111 +2618 2137 2111 +2617 2136 2114 +2617 2144 2126 +2617 2155 2141 +2619 2157 2164 +2623 2160 2195 +2624 2165 2231 +2619 2165 2275 +2633 2187 2352 +2638 2190 2417 +2660 2223 2503 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2670 2315 2112 +2671 2315 2112 +2671 2315 2112 +2671 2315 2111 +2671 2316 2111 +2672 2316 2111 +2672 2316 2111 +2673 2317 2110 +2674 2318 2109 +2675 2319 2108 +2677 2321 2107 +2680 2323 2105 +2682 2325 2106 +2681 2325 2118 +2680 2325 2133 +2678 2328 2149 +2677 2328 2176 +2677 2325 2215 +2687 2335 2275 +2689 2335 2316 +2695 2346 2391 +2724 2369 2462 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2775 2531 1744 +2775 2531 1745 +2775 2531 1747 +2775 2531 1750 +2776 2532 1753 +2776 2532 1758 +2776 2533 1764 +2776 2533 1772 +2777 2534 1782 +2778 2535 1796 +2778 2536 1813 +2778 2537 1825 +2777 2535 1833 +2776 2530 1839 +2776 2528 1859 +2778 2535 1929 +2779 2534 1991 +2780 2535 2071 +2782 2538 2158 +2784 2536 2248 +2791 2552 2360 +2803 2569 2485 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2826 2762 2506 +2826 2762 2506 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2506 +2826 2761 2507 +2826 2761 2509 +2826 2761 2510 +2826 2760 2508 +2826 2760 2508 +2826 2762 2520 +2826 2764 2535 +2826 2763 2548 +2826 2763 2571 +2826 2767 2613 +2826 2769 2662 +2826 2779 2732 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2554 1623 2059 +2554 1623 2059 +2554 1623 2060 +2554 1623 2060 +2554 1623 2061 +2554 1623 2063 +2554 1623 2065 +2554 1623 2067 +2554 1623 2070 +2554 1623 2074 +2554 1623 2080 +2554 1623 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2555 1588 2133 +2556 1555 2169 +2555 1608 2217 +2557 1691 2269 +2563 1692 2342 +2564 1761 2409 +2587 1838 2491 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1625 2059 +2554 1624 2059 +2554 1624 2060 +2554 1624 2060 +2554 1624 2061 +2554 1624 2063 +2554 1624 2064 +2554 1624 2067 +2554 1624 2070 +2554 1624 2074 +2554 1624 2080 +2554 1624 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2556 1590 2134 +2556 1556 2169 +2555 1609 2217 +2557 1691 2269 +2563 1692 2342 +2564 1762 2409 +2587 1839 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1627 2059 +2554 1626 2059 +2554 1625 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2063 +2554 1625 2064 +2554 1625 2067 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1622 2096 +2554 1621 2102 +2554 1621 2110 +2556 1592 2134 +2556 1559 2169 +2555 1610 2217 +2557 1691 2269 +2564 1693 2342 +2564 1764 2409 +2587 1840 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1630 2060 +2554 1629 2060 +2554 1627 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2062 +2554 1625 2064 +2554 1625 2066 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1623 2095 +2554 1621 2102 +2554 1621 2110 +2556 1595 2134 +2556 1562 2169 +2555 1611 2217 +2557 1691 2270 +2564 1694 2342 +2564 1765 2409 +2587 1842 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1633 2060 +2554 1632 2060 +2554 1631 2060 +2554 1629 2060 +2554 1626 2061 +2554 1626 2062 +2554 1626 2064 +2554 1626 2066 +2554 1626 2069 +2554 1626 2073 +2554 1626 2079 +2554 1626 2086 +2554 1625 2095 +2554 1621 2102 +2554 1621 2110 +2556 1599 2135 +2556 1567 2169 +2555 1613 2217 +2557 1692 2270 +2564 1695 2342 +2565 1768 2409 +2587 1844 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1638 2061 +2554 1638 2061 +2554 1636 2061 +2554 1634 2061 +2554 1631 2061 +2554 1628 2062 +2554 1628 2063 +2554 1628 2066 +2554 1628 2069 +2554 1628 2073 +2554 1628 2079 +2554 1628 2086 +2554 1626 2095 +2554 1621 2102 +2554 1621 2110 +2556 1605 2135 +2556 1572 2169 +2555 1616 2217 +2557 1693 2270 +2564 1696 2342 +2565 1771 2409 +2587 1847 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2555 1645 2062 +2555 1644 2062 +2555 1643 2062 +2555 1641 2062 +2555 1638 2062 +2555 1635 2063 +2555 1631 2063 +2555 1631 2066 +2555 1631 2069 +2555 1631 2073 +2555 1631 2078 +2555 1631 2085 +2555 1628 2094 +2554 1621 2102 +2554 1621 2110 +2556 1612 2136 +2556 1580 2169 +2554 1619 2217 +2558 1694 2270 +2564 1698 2342 +2565 1775 2409 +2587 1852 2492 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2555 1654 2063 +2555 1653 2063 +2555 1651 2063 +2555 1650 2063 +2555 1647 2063 +2555 1644 2064 +2555 1640 2064 +2555 1633 2065 +2555 1633 2068 +2555 1633 2072 +2555 1633 2078 +2555 1633 2085 +2555 1631 2094 +2554 1621 2102 +2554 1621 2110 +2556 1621 2137 +2557 1590 2169 +2554 1624 2217 +2558 1695 2270 +2564 1701 2342 +2565 1781 2409 +2588 1857 2493 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2556 1665 2064 +2556 1664 2065 +2556 1663 2065 +2556 1661 2065 +2556 1659 2065 +2556 1655 2066 +2556 1651 2066 +2556 1646 2066 +2556 1638 2067 +2556 1638 2071 +2556 1638 2077 +2556 1638 2084 +2556 1636 2093 +2554 1621 2102 +2554 1621 2110 +2556 1633 2138 +2557 1603 2169 +2554 1630 2217 +2558 1697 2271 +2564 1704 2342 +2565 1788 2409 +2588 1860 2493 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2556 1680 2066 +2556 1679 2067 +2556 1678 2067 +2556 1676 2067 +2556 1674 2067 +2556 1671 2068 +2556 1667 2068 +2556 1661 2069 +2556 1653 2069 +2556 1643 2070 +2556 1643 2076 +2556 1643 2083 +2556 1641 2092 +2554 1624 2101 +2554 1621 2110 +2557 1649 2140 +2557 1620 2170 +2554 1638 2217 +2558 1699 2271 +2565 1709 2342 +2566 1798 2409 +2589 1863 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2558 1699 2069 +2558 1698 2069 +2558 1697 2070 +2558 1695 2070 +2558 1693 2070 +2558 1690 2070 +2558 1686 2071 +2558 1681 2071 +2558 1674 2072 +2558 1663 2073 +2558 1650 2074 +2558 1650 2082 +2557 1648 2091 +2555 1631 2100 +2554 1621 2110 +2557 1657 2141 +2558 1642 2173 +2554 1658 2217 +2559 1702 2273 +2565 1715 2342 +2566 1810 2409 +2589 1868 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2559 1723 2073 +2559 1723 2073 +2559 1722 2073 +2559 1720 2073 +2559 1718 2074 +2559 1715 2074 +2559 1711 2074 +2559 1706 2075 +2559 1699 2076 +2559 1690 2077 +2559 1677 2078 +2559 1659 2080 +2558 1657 2089 +2556 1641 2098 +2554 1621 2110 +2557 1657 2141 +2558 1669 2176 +2555 1684 2217 +2560 1706 2274 +2566 1723 2342 +2567 1816 2409 +2591 1873 2493 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2560 1754 2078 +2560 1754 2078 +2560 1753 2078 +2560 1752 2079 +2560 1750 2079 +2560 1747 2079 +2560 1744 2080 +2560 1739 2080 +2560 1732 2081 +2560 1724 2082 +2560 1712 2083 +2560 1695 2085 +2560 1674 2088 +2558 1658 2097 +2555 1635 2110 +2557 1661 2141 +2559 1703 2179 +2556 1716 2217 +2560 1716 2275 +2566 1739 2342 +2568 1818 2408 +2592 1880 2493 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2562 1761 2078 +2562 1761 2078 +2562 1761 2079 +2562 1762 2080 +2562 1763 2080 +2562 1765 2082 +2562 1766 2084 +2562 1769 2086 +2562 1772 2089 +2563 1771 2091 +2563 1760 2093 +2563 1745 2094 +2562 1727 2097 +2561 1712 2103 +2558 1692 2116 +2556 1693 2138 +2560 1738 2181 +2560 1744 2217 +2561 1744 2275 +2566 1785 2340 +2571 1835 2406 +2592 1893 2492 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2563 1769 2078 +2563 1769 2078 +2563 1770 2079 +2563 1771 2080 +2563 1772 2080 +2563 1773 2082 +2564 1775 2084 +2564 1777 2086 +2564 1780 2089 +2564 1784 2093 +2565 1789 2098 +2565 1796 2105 +2566 1789 2110 +2564 1776 2116 +2563 1758 2124 +2559 1753 2143 +2558 1773 2177 +2563 1787 2220 +2563 1779 2275 +2566 1840 2337 +2576 1860 2406 +2591 1925 2491 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2566 1822 2077 +2566 1822 2078 +2566 1822 2078 +2566 1822 2078 +2566 1822 2079 +2566 1822 2079 +2566 1822 2080 +2566 1822 2081 +2566 1822 2083 +2566 1822 2085 +2567 1824 2089 +2568 1831 2096 +2568 1839 2106 +2570 1844 2121 +2568 1834 2131 +2568 1813 2145 +2564 1813 2176 +2565 1838 2221 +2568 1838 2272 +2573 1888 2337 +2580 1896 2406 +2599 1967 2492 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2573 1894 2080 +2573 1894 2081 +2573 1895 2081 +2573 1896 2081 +2573 1897 2082 +2574 1898 2082 +2574 1900 2083 +2575 1903 2084 +2575 1906 2086 +2575 1906 2088 +2575 1906 2090 +2575 1906 2094 +2575 1906 2099 +2575 1907 2109 +2576 1913 2129 +2577 1915 2152 +2578 1893 2171 +2576 1899 2221 +2578 1919 2273 +2580 1949 2338 +2587 1961 2408 +2611 2008 2495 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2588 1996 2083 +2588 1997 2083 +2588 1997 2084 +2588 1997 2085 +2588 1997 2086 +2588 1998 2087 +2588 1998 2088 +2588 1999 2091 +2588 2000 2093 +2588 2001 2098 +2588 2005 2100 +2589 2012 2104 +2591 2018 2108 +2588 2010 2114 +2588 2009 2126 +2589 2014 2149 +2590 2016 2184 +2591 2003 2214 +2591 2019 2275 +2595 2044 2342 +2604 2072 2411 +2625 2108 2494 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2625 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2148 2111 +2624 2148 2111 +2623 2147 2111 +2623 2146 2111 +2622 2145 2111 +2621 2143 2111 +2620 2141 2111 +2618 2137 2111 +2617 2136 2114 +2617 2144 2126 +2617 2155 2141 +2619 2157 2164 +2623 2160 2195 +2624 2165 2231 +2619 2165 2275 +2633 2187 2352 +2638 2190 2417 +2660 2223 2503 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2670 2315 2112 +2671 2315 2112 +2671 2315 2112 +2671 2315 2111 +2671 2316 2111 +2672 2316 2111 +2672 2316 2111 +2673 2317 2110 +2674 2318 2109 +2675 2319 2108 +2677 2321 2107 +2680 2323 2105 +2682 2325 2106 +2681 2325 2118 +2680 2325 2133 +2678 2328 2149 +2677 2328 2176 +2677 2325 2215 +2687 2335 2275 +2689 2335 2316 +2695 2346 2391 +2724 2369 2462 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2775 2531 1744 +2775 2531 1745 +2775 2531 1747 +2775 2531 1750 +2776 2532 1753 +2776 2532 1758 +2776 2533 1764 +2776 2533 1772 +2777 2534 1782 +2778 2535 1796 +2778 2536 1813 +2778 2537 1825 +2777 2535 1833 +2776 2530 1839 +2776 2528 1859 +2778 2535 1929 +2779 2534 1991 +2780 2535 2071 +2782 2538 2158 +2784 2536 2248 +2791 2552 2360 +2803 2569 2485 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2826 2762 2506 +2826 2762 2506 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2506 +2826 2761 2507 +2826 2761 2509 +2826 2761 2510 +2826 2760 2508 +2826 2760 2508 +2826 2762 2520 +2826 2764 2535 +2826 2763 2548 +2826 2763 2571 +2826 2767 2613 +2826 2769 2662 +2826 2779 2732 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2554 1623 2059 +2554 1623 2059 +2554 1623 2060 +2554 1623 2060 +2554 1623 2061 +2554 1623 2063 +2554 1623 2065 +2554 1623 2067 +2554 1623 2070 +2554 1623 2074 +2554 1623 2080 +2554 1623 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2555 1588 2133 +2556 1555 2169 +2555 1608 2217 +2557 1691 2269 +2563 1692 2342 +2564 1761 2409 +2587 1838 2491 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1625 2059 +2554 1624 2059 +2554 1624 2060 +2554 1624 2060 +2554 1624 2061 +2554 1624 2063 +2554 1624 2064 +2554 1624 2067 +2554 1624 2070 +2554 1624 2074 +2554 1624 2080 +2554 1624 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2556 1590 2134 +2556 1556 2169 +2555 1609 2217 +2557 1691 2269 +2563 1692 2342 +2564 1762 2409 +2587 1839 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1627 2059 +2554 1626 2059 +2554 1625 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2063 +2554 1625 2064 +2554 1625 2067 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1622 2096 +2554 1621 2102 +2554 1621 2110 +2556 1592 2134 +2556 1559 2169 +2555 1610 2217 +2557 1691 2269 +2564 1693 2342 +2564 1764 2409 +2587 1840 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1630 2060 +2554 1629 2060 +2554 1627 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2062 +2554 1625 2064 +2554 1625 2066 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1623 2095 +2554 1621 2102 +2554 1621 2110 +2556 1595 2134 +2556 1562 2169 +2555 1611 2217 +2557 1691 2270 +2564 1694 2342 +2564 1765 2409 +2587 1842 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1633 2060 +2554 1632 2060 +2554 1631 2060 +2554 1629 2060 +2554 1626 2061 +2554 1626 2062 +2554 1626 2064 +2554 1626 2066 +2554 1626 2069 +2554 1626 2073 +2554 1626 2079 +2554 1626 2086 +2554 1625 2095 +2554 1621 2102 +2554 1621 2110 +2556 1599 2135 +2556 1567 2169 +2555 1613 2217 +2557 1692 2270 +2564 1695 2342 +2565 1768 2409 +2587 1844 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1638 2061 +2554 1638 2061 +2554 1636 2061 +2554 1634 2061 +2554 1631 2061 +2554 1628 2062 +2554 1628 2063 +2554 1628 2066 +2554 1628 2069 +2554 1628 2073 +2554 1628 2079 +2554 1628 2086 +2554 1626 2095 +2554 1621 2102 +2554 1621 2110 +2556 1605 2135 +2556 1572 2169 +2555 1616 2217 +2557 1693 2270 +2564 1696 2342 +2565 1771 2409 +2587 1847 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2555 1645 2062 +2555 1644 2062 +2555 1643 2062 +2555 1641 2062 +2555 1638 2062 +2555 1635 2063 +2555 1631 2063 +2555 1631 2066 +2555 1631 2069 +2555 1631 2073 +2555 1631 2078 +2555 1631 2085 +2555 1628 2094 +2554 1621 2102 +2554 1621 2110 +2556 1612 2136 +2556 1580 2169 +2554 1619 2217 +2558 1694 2270 +2564 1698 2342 +2565 1775 2409 +2587 1852 2492 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2555 1654 2063 +2555 1653 2063 +2555 1651 2063 +2555 1650 2063 +2555 1647 2063 +2555 1644 2064 +2555 1640 2064 +2555 1633 2065 +2555 1633 2068 +2555 1633 2072 +2555 1633 2078 +2555 1633 2085 +2555 1631 2094 +2554 1621 2102 +2554 1621 2110 +2556 1621 2137 +2557 1590 2169 +2554 1624 2217 +2558 1695 2270 +2564 1701 2342 +2565 1781 2409 +2588 1857 2493 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2556 1665 2064 +2556 1664 2065 +2556 1663 2065 +2556 1661 2065 +2556 1659 2065 +2556 1655 2066 +2556 1651 2066 +2556 1646 2066 +2556 1638 2067 +2556 1638 2071 +2556 1638 2077 +2556 1638 2084 +2556 1636 2093 +2554 1621 2102 +2554 1621 2110 +2556 1633 2138 +2557 1603 2169 +2554 1630 2217 +2558 1697 2271 +2564 1704 2342 +2565 1788 2409 +2588 1860 2493 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2556 1680 2066 +2556 1679 2067 +2556 1678 2067 +2556 1676 2067 +2556 1674 2067 +2556 1671 2068 +2556 1667 2068 +2556 1661 2069 +2556 1653 2069 +2556 1643 2070 +2556 1643 2076 +2556 1643 2083 +2556 1641 2092 +2554 1624 2101 +2554 1621 2110 +2557 1649 2140 +2557 1620 2170 +2554 1638 2217 +2558 1699 2271 +2565 1709 2342 +2566 1798 2409 +2589 1863 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2558 1699 2069 +2558 1698 2069 +2558 1697 2070 +2558 1695 2070 +2558 1693 2070 +2558 1690 2070 +2558 1686 2071 +2558 1681 2071 +2558 1674 2072 +2558 1663 2073 +2558 1650 2074 +2558 1650 2082 +2557 1648 2091 +2555 1631 2100 +2554 1621 2110 +2557 1657 2141 +2558 1642 2173 +2554 1658 2217 +2559 1702 2273 +2565 1715 2342 +2566 1810 2409 +2589 1868 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2559 1723 2073 +2559 1723 2073 +2559 1722 2073 +2559 1720 2073 +2559 1718 2074 +2559 1715 2074 +2559 1711 2074 +2559 1706 2075 +2559 1699 2076 +2559 1690 2077 +2559 1677 2078 +2559 1659 2080 +2558 1657 2089 +2556 1641 2098 +2554 1621 2110 +2557 1657 2141 +2558 1669 2176 +2555 1684 2217 +2560 1706 2274 +2566 1723 2342 +2567 1816 2409 +2591 1873 2493 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2560 1754 2078 +2560 1754 2078 +2560 1753 2078 +2560 1752 2079 +2560 1750 2079 +2560 1747 2079 +2560 1744 2080 +2560 1739 2080 +2560 1732 2081 +2560 1724 2082 +2560 1712 2083 +2560 1695 2085 +2560 1674 2088 +2558 1658 2097 +2555 1635 2110 +2557 1661 2141 +2559 1703 2179 +2556 1716 2217 +2560 1716 2275 +2566 1739 2342 +2568 1818 2408 +2592 1880 2493 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2562 1761 2078 +2562 1761 2078 +2562 1761 2079 +2562 1762 2080 +2562 1763 2080 +2562 1765 2082 +2562 1766 2084 +2562 1769 2086 +2562 1772 2089 +2563 1771 2091 +2563 1760 2093 +2563 1745 2094 +2562 1727 2097 +2561 1712 2103 +2558 1692 2116 +2556 1693 2138 +2560 1738 2181 +2560 1744 2217 +2561 1744 2275 +2566 1785 2340 +2571 1835 2406 +2592 1893 2492 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2563 1769 2078 +2563 1769 2078 +2563 1770 2079 +2563 1771 2080 +2563 1772 2080 +2563 1773 2082 +2564 1775 2084 +2564 1777 2086 +2564 1780 2089 +2564 1784 2093 +2565 1789 2098 +2565 1796 2105 +2566 1789 2110 +2564 1776 2116 +2563 1758 2124 +2559 1753 2143 +2558 1773 2177 +2563 1787 2220 +2563 1779 2275 +2566 1840 2337 +2576 1860 2406 +2591 1925 2491 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2566 1822 2077 +2566 1822 2078 +2566 1822 2078 +2566 1822 2078 +2566 1822 2079 +2566 1822 2079 +2566 1822 2080 +2566 1822 2081 +2566 1822 2083 +2566 1822 2085 +2567 1824 2089 +2568 1831 2096 +2568 1839 2106 +2570 1844 2121 +2568 1834 2131 +2568 1813 2145 +2564 1813 2176 +2565 1838 2221 +2568 1838 2272 +2573 1888 2337 +2580 1896 2406 +2599 1967 2492 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2573 1894 2080 +2573 1894 2081 +2573 1895 2081 +2573 1896 2081 +2573 1897 2082 +2574 1898 2082 +2574 1900 2083 +2575 1903 2084 +2575 1906 2086 +2575 1906 2088 +2575 1906 2090 +2575 1906 2094 +2575 1906 2099 +2575 1907 2109 +2576 1913 2129 +2577 1915 2152 +2578 1893 2171 +2576 1899 2221 +2578 1919 2273 +2580 1949 2338 +2587 1961 2408 +2611 2008 2495 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2588 1996 2083 +2588 1997 2083 +2588 1997 2084 +2588 1997 2085 +2588 1997 2086 +2588 1998 2087 +2588 1998 2088 +2588 1999 2091 +2588 2000 2093 +2588 2001 2098 +2588 2005 2100 +2589 2012 2104 +2591 2018 2108 +2588 2010 2114 +2588 2009 2126 +2589 2014 2149 +2590 2016 2184 +2591 2003 2214 +2591 2019 2275 +2595 2044 2342 +2604 2072 2411 +2625 2108 2494 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2625 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2148 2111 +2624 2148 2111 +2623 2147 2111 +2623 2146 2111 +2622 2145 2111 +2621 2143 2111 +2620 2141 2111 +2618 2137 2111 +2617 2136 2114 +2617 2144 2126 +2617 2155 2141 +2619 2157 2164 +2623 2160 2195 +2624 2165 2231 +2619 2165 2275 +2633 2187 2352 +2638 2190 2417 +2660 2223 2503 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2670 2315 2112 +2671 2315 2112 +2671 2315 2112 +2671 2315 2111 +2671 2316 2111 +2672 2316 2111 +2672 2316 2111 +2673 2317 2110 +2674 2318 2109 +2675 2319 2108 +2677 2321 2107 +2680 2323 2105 +2682 2325 2106 +2681 2325 2118 +2680 2325 2133 +2678 2328 2149 +2677 2328 2176 +2677 2325 2215 +2687 2335 2275 +2689 2335 2316 +2695 2346 2391 +2724 2369 2462 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2775 2531 1744 +2775 2531 1745 +2775 2531 1747 +2775 2531 1750 +2776 2532 1753 +2776 2532 1758 +2776 2533 1764 +2776 2533 1772 +2777 2534 1782 +2778 2535 1796 +2778 2536 1813 +2778 2537 1825 +2777 2535 1833 +2776 2530 1839 +2776 2528 1859 +2778 2535 1929 +2779 2534 1991 +2780 2535 2071 +2782 2538 2158 +2784 2536 2248 +2791 2552 2360 +2803 2569 2485 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2826 2762 2506 +2826 2762 2506 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2506 +2826 2761 2507 +2826 2761 2509 +2826 2761 2510 +2826 2760 2508 +2826 2760 2508 +2826 2762 2520 +2826 2764 2535 +2826 2763 2548 +2826 2763 2571 +2826 2767 2613 +2826 2769 2662 +2826 2779 2732 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2554 1623 2059 +2554 1623 2059 +2554 1623 2060 +2554 1623 2060 +2554 1623 2061 +2554 1623 2063 +2554 1623 2065 +2554 1623 2067 +2554 1623 2070 +2554 1623 2074 +2554 1623 2080 +2554 1623 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2555 1588 2133 +2556 1555 2169 +2555 1608 2217 +2557 1691 2269 +2563 1692 2342 +2564 1761 2409 +2587 1838 2491 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1625 2059 +2554 1624 2059 +2554 1624 2060 +2554 1624 2060 +2554 1624 2061 +2554 1624 2063 +2554 1624 2064 +2554 1624 2067 +2554 1624 2070 +2554 1624 2074 +2554 1624 2080 +2554 1624 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2556 1590 2134 +2556 1556 2169 +2555 1609 2217 +2557 1691 2269 +2563 1692 2342 +2564 1762 2409 +2587 1839 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1627 2059 +2554 1626 2059 +2554 1625 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2063 +2554 1625 2064 +2554 1625 2067 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1622 2096 +2554 1621 2102 +2554 1621 2110 +2556 1592 2134 +2556 1559 2169 +2555 1610 2217 +2557 1691 2269 +2564 1693 2342 +2564 1764 2409 +2587 1840 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1630 2060 +2554 1629 2060 +2554 1627 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2062 +2554 1625 2064 +2554 1625 2066 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1623 2095 +2554 1621 2102 +2554 1621 2110 +2556 1595 2134 +2556 1562 2169 +2555 1611 2217 +2557 1691 2270 +2564 1694 2342 +2564 1765 2409 +2587 1842 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1633 2060 +2554 1632 2060 +2554 1631 2060 +2554 1629 2060 +2554 1626 2061 +2554 1626 2062 +2554 1626 2064 +2554 1626 2066 +2554 1626 2069 +2554 1626 2073 +2554 1626 2079 +2554 1626 2086 +2554 1625 2095 +2554 1621 2102 +2554 1621 2110 +2556 1599 2135 +2556 1567 2169 +2555 1613 2217 +2557 1692 2270 +2564 1695 2342 +2565 1768 2409 +2587 1844 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1638 2061 +2554 1638 2061 +2554 1636 2061 +2554 1634 2061 +2554 1631 2061 +2554 1628 2062 +2554 1628 2063 +2554 1628 2066 +2554 1628 2069 +2554 1628 2073 +2554 1628 2079 +2554 1628 2086 +2554 1626 2095 +2554 1621 2102 +2554 1621 2110 +2556 1605 2135 +2556 1572 2169 +2555 1616 2217 +2557 1693 2270 +2564 1696 2342 +2565 1771 2409 +2587 1847 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2555 1645 2062 +2555 1644 2062 +2555 1643 2062 +2555 1641 2062 +2555 1638 2062 +2555 1635 2063 +2555 1631 2063 +2555 1631 2066 +2555 1631 2069 +2555 1631 2073 +2555 1631 2078 +2555 1631 2085 +2555 1628 2094 +2554 1621 2102 +2554 1621 2110 +2556 1612 2136 +2556 1580 2169 +2554 1619 2217 +2558 1694 2270 +2564 1698 2342 +2565 1775 2409 +2587 1852 2492 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2555 1654 2063 +2555 1653 2063 +2555 1651 2063 +2555 1650 2063 +2555 1647 2063 +2555 1644 2064 +2555 1640 2064 +2555 1633 2065 +2555 1633 2068 +2555 1633 2072 +2555 1633 2078 +2555 1633 2085 +2555 1631 2094 +2554 1621 2102 +2554 1621 2110 +2556 1621 2137 +2557 1590 2169 +2554 1624 2217 +2558 1695 2270 +2564 1701 2342 +2565 1781 2409 +2588 1857 2493 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2556 1665 2064 +2556 1664 2065 +2556 1663 2065 +2556 1661 2065 +2556 1659 2065 +2556 1655 2066 +2556 1651 2066 +2556 1646 2066 +2556 1638 2067 +2556 1638 2071 +2556 1638 2077 +2556 1638 2084 +2556 1636 2093 +2554 1621 2102 +2554 1621 2110 +2556 1633 2138 +2557 1603 2169 +2554 1630 2217 +2558 1697 2271 +2564 1704 2342 +2565 1788 2409 +2588 1860 2493 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2556 1680 2066 +2556 1679 2067 +2556 1678 2067 +2556 1676 2067 +2556 1674 2067 +2556 1671 2068 +2556 1667 2068 +2556 1661 2069 +2556 1653 2069 +2556 1643 2070 +2556 1643 2076 +2556 1643 2083 +2556 1641 2092 +2554 1624 2101 +2554 1621 2110 +2557 1649 2140 +2557 1620 2170 +2554 1638 2217 +2558 1699 2271 +2565 1709 2342 +2566 1798 2409 +2589 1863 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2558 1699 2069 +2558 1698 2069 +2558 1697 2070 +2558 1695 2070 +2558 1693 2070 +2558 1690 2070 +2558 1686 2071 +2558 1681 2071 +2558 1674 2072 +2558 1663 2073 +2558 1650 2074 +2558 1650 2082 +2557 1648 2091 +2555 1631 2100 +2554 1621 2110 +2557 1657 2141 +2558 1642 2173 +2554 1658 2217 +2559 1702 2273 +2565 1715 2342 +2566 1810 2409 +2589 1868 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2559 1723 2073 +2559 1723 2073 +2559 1722 2073 +2559 1720 2073 +2559 1718 2074 +2559 1715 2074 +2559 1711 2074 +2559 1706 2075 +2559 1699 2076 +2559 1690 2077 +2559 1677 2078 +2559 1659 2080 +2558 1657 2089 +2556 1641 2098 +2554 1621 2110 +2557 1657 2141 +2558 1669 2176 +2555 1684 2217 +2560 1706 2274 +2566 1723 2342 +2567 1816 2409 +2591 1873 2493 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2560 1754 2078 +2560 1754 2078 +2560 1753 2078 +2560 1752 2079 +2560 1750 2079 +2560 1747 2079 +2560 1744 2080 +2560 1739 2080 +2560 1732 2081 +2560 1724 2082 +2560 1712 2083 +2560 1695 2085 +2560 1674 2088 +2558 1658 2097 +2555 1635 2110 +2557 1661 2141 +2559 1703 2179 +2556 1716 2217 +2560 1716 2275 +2566 1739 2342 +2568 1818 2408 +2592 1880 2493 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2562 1761 2078 +2562 1761 2078 +2562 1761 2079 +2562 1762 2080 +2562 1763 2080 +2562 1765 2082 +2562 1766 2084 +2562 1769 2086 +2562 1772 2089 +2563 1771 2091 +2563 1760 2093 +2563 1745 2094 +2562 1727 2097 +2561 1712 2103 +2558 1692 2116 +2556 1693 2138 +2560 1738 2181 +2560 1744 2217 +2561 1744 2275 +2566 1785 2340 +2571 1835 2406 +2592 1893 2492 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2563 1769 2078 +2563 1769 2078 +2563 1770 2079 +2563 1771 2080 +2563 1772 2080 +2563 1773 2082 +2564 1775 2084 +2564 1777 2086 +2564 1780 2089 +2564 1784 2093 +2565 1789 2098 +2565 1796 2105 +2566 1789 2110 +2564 1776 2116 +2563 1758 2124 +2559 1753 2143 +2558 1773 2177 +2563 1787 2220 +2563 1779 2275 +2566 1840 2337 +2576 1860 2406 +2591 1925 2491 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2566 1822 2077 +2566 1822 2078 +2566 1822 2078 +2566 1822 2078 +2566 1822 2079 +2566 1822 2079 +2566 1822 2080 +2566 1822 2081 +2566 1822 2083 +2566 1822 2085 +2567 1824 2089 +2568 1831 2096 +2568 1839 2106 +2570 1844 2121 +2568 1834 2131 +2568 1813 2145 +2564 1813 2176 +2565 1838 2221 +2568 1838 2272 +2573 1888 2337 +2580 1896 2406 +2599 1967 2492 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2573 1894 2080 +2573 1894 2081 +2573 1895 2081 +2573 1896 2081 +2573 1897 2082 +2574 1898 2082 +2574 1900 2083 +2575 1903 2084 +2575 1906 2086 +2575 1906 2088 +2575 1906 2090 +2575 1906 2094 +2575 1906 2099 +2575 1907 2109 +2576 1913 2129 +2577 1915 2152 +2578 1893 2171 +2576 1899 2221 +2578 1919 2273 +2580 1949 2338 +2587 1961 2408 +2611 2008 2495 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2588 1996 2083 +2588 1997 2083 +2588 1997 2084 +2588 1997 2085 +2588 1997 2086 +2588 1998 2087 +2588 1998 2088 +2588 1999 2091 +2588 2000 2093 +2588 2001 2098 +2588 2005 2100 +2589 2012 2104 +2591 2018 2108 +2588 2010 2114 +2588 2009 2126 +2589 2014 2149 +2590 2016 2184 +2591 2003 2214 +2591 2019 2275 +2595 2044 2342 +2604 2072 2411 +2625 2108 2494 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2625 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2148 2111 +2624 2148 2111 +2623 2147 2111 +2623 2146 2111 +2622 2145 2111 +2621 2143 2111 +2620 2141 2111 +2618 2137 2111 +2617 2136 2114 +2617 2144 2126 +2617 2155 2141 +2619 2157 2164 +2623 2160 2195 +2624 2165 2231 +2619 2165 2275 +2633 2187 2352 +2638 2190 2417 +2660 2223 2503 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2670 2315 2112 +2671 2315 2112 +2671 2315 2112 +2671 2315 2111 +2671 2316 2111 +2672 2316 2111 +2672 2316 2111 +2673 2317 2110 +2674 2318 2109 +2675 2319 2108 +2677 2321 2107 +2680 2323 2105 +2682 2325 2106 +2681 2325 2118 +2680 2325 2133 +2678 2328 2149 +2677 2328 2176 +2677 2325 2215 +2687 2335 2275 +2689 2335 2316 +2695 2346 2391 +2724 2369 2462 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2775 2531 1744 +2775 2531 1745 +2775 2531 1747 +2775 2531 1750 +2776 2532 1753 +2776 2532 1758 +2776 2533 1764 +2776 2533 1772 +2777 2534 1782 +2778 2535 1796 +2778 2536 1813 +2778 2537 1825 +2777 2535 1833 +2776 2530 1839 +2776 2528 1859 +2778 2535 1929 +2779 2534 1991 +2780 2535 2071 +2782 2538 2158 +2784 2536 2248 +2791 2552 2360 +2803 2569 2485 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2826 2762 2506 +2826 2762 2506 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2506 +2826 2761 2507 +2826 2761 2509 +2826 2761 2510 +2826 2760 2508 +2826 2760 2508 +2826 2762 2520 +2826 2764 2535 +2826 2763 2548 +2826 2763 2571 +2826 2767 2613 +2826 2769 2662 +2826 2779 2732 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2554 1623 2059 +2554 1623 2059 +2554 1623 2060 +2554 1623 2060 +2554 1623 2061 +2554 1623 2063 +2554 1623 2065 +2554 1623 2067 +2554 1623 2070 +2554 1623 2074 +2554 1623 2080 +2554 1623 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2555 1588 2133 +2556 1555 2169 +2555 1608 2217 +2557 1691 2269 +2563 1692 2342 +2564 1761 2409 +2587 1838 2491 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1625 2059 +2554 1624 2059 +2554 1624 2060 +2554 1624 2060 +2554 1624 2061 +2554 1624 2063 +2554 1624 2064 +2554 1624 2067 +2554 1624 2070 +2554 1624 2074 +2554 1624 2080 +2554 1624 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2556 1590 2134 +2556 1556 2169 +2555 1609 2217 +2557 1691 2269 +2563 1692 2342 +2564 1762 2409 +2587 1839 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1627 2059 +2554 1626 2059 +2554 1625 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2063 +2554 1625 2064 +2554 1625 2067 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1622 2096 +2554 1621 2102 +2554 1621 2110 +2556 1592 2134 +2556 1559 2169 +2555 1610 2217 +2557 1691 2269 +2564 1693 2342 +2564 1764 2409 +2587 1840 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1630 2060 +2554 1629 2060 +2554 1627 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2062 +2554 1625 2064 +2554 1625 2066 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1623 2095 +2554 1621 2102 +2554 1621 2110 +2556 1595 2134 +2556 1562 2169 +2555 1611 2217 +2557 1691 2270 +2564 1694 2342 +2564 1765 2409 +2587 1842 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1633 2060 +2554 1632 2060 +2554 1631 2060 +2554 1629 2060 +2554 1626 2061 +2554 1626 2062 +2554 1626 2064 +2554 1626 2066 +2554 1626 2069 +2554 1626 2073 +2554 1626 2079 +2554 1626 2086 +2554 1625 2095 +2554 1621 2102 +2554 1621 2110 +2556 1599 2135 +2556 1567 2169 +2555 1613 2217 +2557 1692 2270 +2564 1695 2342 +2565 1768 2409 +2587 1844 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1638 2061 +2554 1638 2061 +2554 1636 2061 +2554 1634 2061 +2554 1631 2061 +2554 1628 2062 +2554 1628 2063 +2554 1628 2066 +2554 1628 2069 +2554 1628 2073 +2554 1628 2079 +2554 1628 2086 +2554 1626 2095 +2554 1621 2102 +2554 1621 2110 +2556 1605 2135 +2556 1572 2169 +2555 1616 2217 +2557 1693 2270 +2564 1696 2342 +2565 1771 2409 +2587 1847 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2555 1645 2062 +2555 1644 2062 +2555 1643 2062 +2555 1641 2062 +2555 1638 2062 +2555 1635 2063 +2555 1631 2063 +2555 1631 2066 +2555 1631 2069 +2555 1631 2073 +2555 1631 2078 +2555 1631 2085 +2555 1628 2094 +2554 1621 2102 +2554 1621 2110 +2556 1612 2136 +2556 1580 2169 +2554 1619 2217 +2558 1694 2270 +2564 1698 2342 +2565 1775 2409 +2587 1852 2492 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2555 1654 2063 +2555 1653 2063 +2555 1651 2063 +2555 1650 2063 +2555 1647 2063 +2555 1644 2064 +2555 1640 2064 +2555 1633 2065 +2555 1633 2068 +2555 1633 2072 +2555 1633 2078 +2555 1633 2085 +2555 1631 2094 +2554 1621 2102 +2554 1621 2110 +2556 1621 2137 +2557 1590 2169 +2554 1624 2217 +2558 1695 2270 +2564 1701 2342 +2565 1781 2409 +2588 1857 2493 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2556 1665 2064 +2556 1664 2065 +2556 1663 2065 +2556 1661 2065 +2556 1659 2065 +2556 1655 2066 +2556 1651 2066 +2556 1646 2066 +2556 1638 2067 +2556 1638 2071 +2556 1638 2077 +2556 1638 2084 +2556 1636 2093 +2554 1621 2102 +2554 1621 2110 +2556 1633 2138 +2557 1603 2169 +2554 1630 2217 +2558 1697 2271 +2564 1704 2342 +2565 1788 2409 +2588 1860 2493 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2556 1680 2066 +2556 1679 2067 +2556 1678 2067 +2556 1676 2067 +2556 1674 2067 +2556 1671 2068 +2556 1667 2068 +2556 1661 2069 +2556 1653 2069 +2556 1643 2070 +2556 1643 2076 +2556 1643 2083 +2556 1641 2092 +2554 1624 2101 +2554 1621 2110 +2557 1649 2140 +2557 1620 2170 +2554 1638 2217 +2558 1699 2271 +2565 1709 2342 +2566 1798 2409 +2589 1863 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2558 1699 2069 +2558 1698 2069 +2558 1697 2070 +2558 1695 2070 +2558 1693 2070 +2558 1690 2070 +2558 1686 2071 +2558 1681 2071 +2558 1674 2072 +2558 1663 2073 +2558 1650 2074 +2558 1650 2082 +2557 1648 2091 +2555 1631 2100 +2554 1621 2110 +2557 1657 2141 +2558 1642 2173 +2554 1658 2217 +2559 1702 2273 +2565 1715 2342 +2566 1810 2409 +2589 1868 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2559 1723 2073 +2559 1723 2073 +2559 1722 2073 +2559 1720 2073 +2559 1718 2074 +2559 1715 2074 +2559 1711 2074 +2559 1706 2075 +2559 1699 2076 +2559 1690 2077 +2559 1677 2078 +2559 1659 2080 +2558 1657 2089 +2556 1641 2098 +2554 1621 2110 +2557 1657 2141 +2558 1669 2176 +2555 1684 2217 +2560 1706 2274 +2566 1723 2342 +2567 1816 2409 +2591 1873 2493 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2560 1754 2078 +2560 1754 2078 +2560 1753 2078 +2560 1752 2079 +2560 1750 2079 +2560 1747 2079 +2560 1744 2080 +2560 1739 2080 +2560 1732 2081 +2560 1724 2082 +2560 1712 2083 +2560 1695 2085 +2560 1674 2088 +2558 1658 2097 +2555 1635 2110 +2557 1661 2141 +2559 1703 2179 +2556 1716 2217 +2560 1716 2275 +2566 1739 2342 +2568 1818 2408 +2592 1880 2493 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2562 1761 2078 +2562 1761 2078 +2562 1761 2079 +2562 1762 2080 +2562 1763 2080 +2562 1765 2082 +2562 1766 2084 +2562 1769 2086 +2562 1772 2089 +2563 1771 2091 +2563 1760 2093 +2563 1745 2094 +2562 1727 2097 +2561 1712 2103 +2558 1692 2116 +2556 1693 2138 +2560 1738 2181 +2560 1744 2217 +2561 1744 2275 +2566 1785 2340 +2571 1835 2406 +2592 1893 2492 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2563 1769 2078 +2563 1769 2078 +2563 1770 2079 +2563 1771 2080 +2563 1772 2080 +2563 1773 2082 +2564 1775 2084 +2564 1777 2086 +2564 1780 2089 +2564 1784 2093 +2565 1789 2098 +2565 1796 2105 +2566 1789 2110 +2564 1776 2116 +2563 1758 2124 +2559 1753 2143 +2558 1773 2177 +2563 1787 2220 +2563 1779 2275 +2566 1840 2337 +2576 1860 2406 +2591 1925 2491 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2566 1822 2077 +2566 1822 2078 +2566 1822 2078 +2566 1822 2078 +2566 1822 2079 +2566 1822 2079 +2566 1822 2080 +2566 1822 2081 +2566 1822 2083 +2566 1822 2085 +2567 1824 2089 +2568 1831 2096 +2568 1839 2106 +2570 1844 2121 +2568 1834 2131 +2568 1813 2145 +2564 1813 2176 +2565 1838 2221 +2568 1838 2272 +2573 1888 2337 +2580 1896 2406 +2599 1967 2492 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2573 1894 2080 +2573 1894 2081 +2573 1895 2081 +2573 1896 2081 +2573 1897 2082 +2574 1898 2082 +2574 1900 2083 +2575 1903 2084 +2575 1906 2086 +2575 1906 2088 +2575 1906 2090 +2575 1906 2094 +2575 1906 2099 +2575 1907 2109 +2576 1913 2129 +2577 1915 2152 +2578 1893 2171 +2576 1899 2221 +2578 1919 2273 +2580 1949 2338 +2587 1961 2408 +2611 2008 2495 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2588 1996 2083 +2588 1997 2083 +2588 1997 2084 +2588 1997 2085 +2588 1997 2086 +2588 1998 2087 +2588 1998 2088 +2588 1999 2091 +2588 2000 2093 +2588 2001 2098 +2588 2005 2100 +2589 2012 2104 +2591 2018 2108 +2588 2010 2114 +2588 2009 2126 +2589 2014 2149 +2590 2016 2184 +2591 2003 2214 +2591 2019 2275 +2595 2044 2342 +2604 2072 2411 +2625 2108 2494 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2625 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2148 2111 +2624 2148 2111 +2623 2147 2111 +2623 2146 2111 +2622 2145 2111 +2621 2143 2111 +2620 2141 2111 +2618 2137 2111 +2617 2136 2114 +2617 2144 2126 +2617 2155 2141 +2619 2157 2164 +2623 2160 2195 +2624 2165 2231 +2619 2165 2275 +2633 2187 2352 +2638 2190 2417 +2660 2223 2503 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2670 2315 2112 +2671 2315 2112 +2671 2315 2112 +2671 2315 2111 +2671 2316 2111 +2672 2316 2111 +2672 2316 2111 +2673 2317 2110 +2674 2318 2109 +2675 2319 2108 +2677 2321 2107 +2680 2323 2105 +2682 2325 2106 +2681 2325 2118 +2680 2325 2133 +2678 2328 2149 +2677 2328 2176 +2677 2325 2215 +2687 2335 2275 +2689 2335 2316 +2695 2346 2391 +2724 2369 2462 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2775 2531 1744 +2775 2531 1745 +2775 2531 1747 +2775 2531 1750 +2776 2532 1753 +2776 2532 1758 +2776 2533 1764 +2776 2533 1772 +2777 2534 1782 +2778 2535 1796 +2778 2536 1813 +2778 2537 1825 +2777 2535 1833 +2776 2530 1839 +2776 2528 1859 +2778 2535 1929 +2779 2534 1991 +2780 2535 2071 +2782 2538 2158 +2784 2536 2248 +2791 2552 2360 +2803 2569 2485 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2826 2762 2506 +2826 2762 2506 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2506 +2826 2761 2507 +2826 2761 2509 +2826 2761 2510 +2826 2760 2508 +2826 2760 2508 +2826 2762 2520 +2826 2764 2535 +2826 2763 2548 +2826 2763 2571 +2826 2767 2613 +2826 2769 2662 +2826 2779 2732 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2554 1623 2059 +2554 1623 2059 +2554 1623 2060 +2554 1623 2060 +2554 1623 2061 +2554 1623 2063 +2554 1623 2065 +2554 1623 2067 +2554 1623 2070 +2554 1623 2074 +2554 1623 2080 +2554 1623 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2555 1588 2133 +2556 1555 2169 +2555 1608 2217 +2557 1691 2269 +2563 1692 2342 +2564 1761 2409 +2587 1838 2491 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1625 2059 +2554 1624 2059 +2554 1624 2060 +2554 1624 2060 +2554 1624 2061 +2554 1624 2063 +2554 1624 2064 +2554 1624 2067 +2554 1624 2070 +2554 1624 2074 +2554 1624 2080 +2554 1624 2087 +2554 1621 2096 +2554 1621 2102 +2554 1621 2110 +2556 1590 2134 +2556 1556 2169 +2555 1609 2217 +2557 1691 2269 +2563 1692 2342 +2564 1762 2409 +2587 1839 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1627 2059 +2554 1626 2059 +2554 1625 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2063 +2554 1625 2064 +2554 1625 2067 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1622 2096 +2554 1621 2102 +2554 1621 2110 +2556 1592 2134 +2556 1559 2169 +2555 1610 2217 +2557 1691 2269 +2564 1693 2342 +2564 1764 2409 +2587 1840 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1630 2060 +2554 1629 2060 +2554 1627 2060 +2554 1625 2060 +2554 1625 2061 +2554 1625 2062 +2554 1625 2064 +2554 1625 2066 +2554 1625 2070 +2554 1625 2074 +2554 1625 2079 +2554 1625 2086 +2554 1623 2095 +2554 1621 2102 +2554 1621 2110 +2556 1595 2134 +2556 1562 2169 +2555 1611 2217 +2557 1691 2270 +2564 1694 2342 +2564 1765 2409 +2587 1842 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1633 2060 +2554 1632 2060 +2554 1631 2060 +2554 1629 2060 +2554 1626 2061 +2554 1626 2062 +2554 1626 2064 +2554 1626 2066 +2554 1626 2069 +2554 1626 2073 +2554 1626 2079 +2554 1626 2086 +2554 1625 2095 +2554 1621 2102 +2554 1621 2110 +2556 1599 2135 +2556 1567 2169 +2555 1613 2217 +2557 1692 2270 +2564 1695 2342 +2565 1768 2409 +2587 1844 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2554 1638 2061 +2554 1638 2061 +2554 1636 2061 +2554 1634 2061 +2554 1631 2061 +2554 1628 2062 +2554 1628 2063 +2554 1628 2066 +2554 1628 2069 +2554 1628 2073 +2554 1628 2079 +2554 1628 2086 +2554 1626 2095 +2554 1621 2102 +2554 1621 2110 +2556 1605 2135 +2556 1572 2169 +2555 1616 2217 +2557 1693 2270 +2564 1696 2342 +2565 1771 2409 +2587 1847 2492 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2597 1897 2530 +2555 1645 2062 +2555 1644 2062 +2555 1643 2062 +2555 1641 2062 +2555 1638 2062 +2555 1635 2063 +2555 1631 2063 +2555 1631 2066 +2555 1631 2069 +2555 1631 2073 +2555 1631 2078 +2555 1631 2085 +2555 1628 2094 +2554 1621 2102 +2554 1621 2110 +2556 1612 2136 +2556 1580 2169 +2554 1619 2217 +2558 1694 2270 +2564 1698 2342 +2565 1775 2409 +2587 1852 2492 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2555 1654 2063 +2555 1653 2063 +2555 1651 2063 +2555 1650 2063 +2555 1647 2063 +2555 1644 2064 +2555 1640 2064 +2555 1633 2065 +2555 1633 2068 +2555 1633 2072 +2555 1633 2078 +2555 1633 2085 +2555 1631 2094 +2554 1621 2102 +2554 1621 2110 +2556 1621 2137 +2557 1590 2169 +2554 1624 2217 +2558 1695 2270 +2564 1701 2342 +2565 1781 2409 +2588 1857 2493 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2597 1897 2529 +2556 1665 2064 +2556 1664 2065 +2556 1663 2065 +2556 1661 2065 +2556 1659 2065 +2556 1655 2066 +2556 1651 2066 +2556 1646 2066 +2556 1638 2067 +2556 1638 2071 +2556 1638 2077 +2556 1638 2084 +2556 1636 2093 +2554 1621 2102 +2554 1621 2110 +2556 1633 2138 +2557 1603 2169 +2554 1630 2217 +2558 1697 2271 +2564 1704 2342 +2565 1788 2409 +2588 1860 2493 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2597 1897 2528 +2556 1680 2066 +2556 1679 2067 +2556 1678 2067 +2556 1676 2067 +2556 1674 2067 +2556 1671 2068 +2556 1667 2068 +2556 1661 2069 +2556 1653 2069 +2556 1643 2070 +2556 1643 2076 +2556 1643 2083 +2556 1641 2092 +2554 1624 2101 +2554 1621 2110 +2557 1649 2140 +2557 1620 2170 +2554 1638 2217 +2558 1699 2271 +2565 1709 2342 +2566 1798 2409 +2589 1863 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2558 1699 2069 +2558 1698 2069 +2558 1697 2070 +2558 1695 2070 +2558 1693 2070 +2558 1690 2070 +2558 1686 2071 +2558 1681 2071 +2558 1674 2072 +2558 1663 2073 +2558 1650 2074 +2558 1650 2082 +2557 1648 2091 +2555 1631 2100 +2554 1621 2110 +2557 1657 2141 +2558 1642 2173 +2554 1658 2217 +2559 1702 2273 +2565 1715 2342 +2566 1810 2409 +2589 1868 2493 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2597 1897 2527 +2559 1723 2073 +2559 1723 2073 +2559 1722 2073 +2559 1720 2073 +2559 1718 2074 +2559 1715 2074 +2559 1711 2074 +2559 1706 2075 +2559 1699 2076 +2559 1690 2077 +2559 1677 2078 +2559 1659 2080 +2558 1657 2089 +2556 1641 2098 +2554 1621 2110 +2557 1657 2141 +2558 1669 2176 +2555 1684 2217 +2560 1706 2274 +2566 1723 2342 +2567 1816 2409 +2591 1873 2493 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2597 1897 2525 +2560 1754 2078 +2560 1754 2078 +2560 1753 2078 +2560 1752 2079 +2560 1750 2079 +2560 1747 2079 +2560 1744 2080 +2560 1739 2080 +2560 1732 2081 +2560 1724 2082 +2560 1712 2083 +2560 1695 2085 +2560 1674 2088 +2558 1658 2097 +2555 1635 2110 +2557 1661 2141 +2559 1703 2179 +2556 1716 2217 +2560 1716 2275 +2566 1739 2342 +2568 1818 2408 +2592 1880 2493 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2597 1898 2524 +2562 1761 2078 +2562 1761 2078 +2562 1761 2079 +2562 1762 2080 +2562 1763 2080 +2562 1765 2082 +2562 1766 2084 +2562 1769 2086 +2562 1772 2089 +2563 1771 2091 +2563 1760 2093 +2563 1745 2094 +2562 1727 2097 +2561 1712 2103 +2558 1692 2116 +2556 1693 2138 +2560 1738 2181 +2560 1744 2217 +2561 1744 2275 +2566 1785 2340 +2571 1835 2406 +2592 1893 2492 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2599 1908 2527 +2563 1769 2078 +2563 1769 2078 +2563 1770 2079 +2563 1771 2080 +2563 1772 2080 +2563 1773 2082 +2564 1775 2084 +2564 1777 2086 +2564 1780 2089 +2564 1784 2093 +2565 1789 2098 +2565 1796 2105 +2566 1789 2110 +2564 1776 2116 +2563 1758 2124 +2559 1753 2143 +2558 1773 2177 +2563 1787 2220 +2563 1779 2275 +2566 1840 2337 +2576 1860 2406 +2591 1925 2491 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2602 1920 2530 +2566 1822 2077 +2566 1822 2078 +2566 1822 2078 +2566 1822 2078 +2566 1822 2079 +2566 1822 2079 +2566 1822 2080 +2566 1822 2081 +2566 1822 2083 +2566 1822 2085 +2567 1824 2089 +2568 1831 2096 +2568 1839 2106 +2570 1844 2121 +2568 1834 2131 +2568 1813 2145 +2564 1813 2176 +2565 1838 2221 +2568 1838 2272 +2573 1888 2337 +2580 1896 2406 +2599 1967 2492 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2609 1966 2529 +2573 1894 2080 +2573 1894 2081 +2573 1895 2081 +2573 1896 2081 +2573 1897 2082 +2574 1898 2082 +2574 1900 2083 +2575 1903 2084 +2575 1906 2086 +2575 1906 2088 +2575 1906 2090 +2575 1906 2094 +2575 1906 2099 +2575 1907 2109 +2576 1913 2129 +2577 1915 2152 +2578 1893 2171 +2576 1899 2221 +2578 1919 2273 +2580 1949 2338 +2587 1961 2408 +2611 2008 2495 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2623 2041 2528 +2588 1996 2083 +2588 1997 2083 +2588 1997 2084 +2588 1997 2085 +2588 1997 2086 +2588 1998 2087 +2588 1998 2088 +2588 1999 2091 +2588 2000 2093 +2588 2001 2098 +2588 2005 2100 +2589 2012 2104 +2591 2018 2108 +2588 2010 2114 +2588 2009 2126 +2589 2014 2149 +2590 2016 2184 +2591 2003 2214 +2591 2019 2275 +2595 2044 2342 +2604 2072 2411 +2625 2108 2494 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2644 2138 2530 +2625 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2149 2111 +2624 2148 2111 +2624 2148 2111 +2623 2147 2111 +2623 2146 2111 +2622 2145 2111 +2621 2143 2111 +2620 2141 2111 +2618 2137 2111 +2617 2136 2114 +2617 2144 2126 +2617 2155 2141 +2619 2157 2164 +2623 2160 2195 +2624 2165 2231 +2619 2165 2275 +2633 2187 2352 +2638 2190 2417 +2660 2223 2503 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2672 2249 2537 +2670 2315 2112 +2671 2315 2112 +2671 2315 2112 +2671 2315 2111 +2671 2316 2111 +2672 2316 2111 +2672 2316 2111 +2673 2317 2110 +2674 2318 2109 +2675 2319 2108 +2677 2321 2107 +2680 2323 2105 +2682 2325 2106 +2681 2325 2118 +2680 2325 2133 +2678 2328 2149 +2677 2328 2176 +2677 2325 2215 +2687 2335 2275 +2689 2335 2316 +2695 2346 2391 +2724 2369 2462 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2735 2385 2488 +2775 2531 1744 +2775 2531 1745 +2775 2531 1747 +2775 2531 1750 +2776 2532 1753 +2776 2532 1758 +2776 2533 1764 +2776 2533 1772 +2777 2534 1782 +2778 2535 1796 +2778 2536 1813 +2778 2537 1825 +2777 2535 1833 +2776 2530 1839 +2776 2528 1859 +2778 2535 1929 +2779 2534 1991 +2780 2535 2071 +2782 2538 2158 +2784 2536 2248 +2791 2552 2360 +2803 2569 2485 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2813 2581 2533 +2826 2762 2506 +2826 2762 2506 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2762 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2505 +2826 2761 2506 +2826 2761 2507 +2826 2761 2509 +2826 2761 2510 +2826 2760 2508 +2826 2760 2508 +2826 2762 2520 +2826 2764 2535 +2826 2763 2548 +2826 2763 2571 +2826 2767 2613 +2826 2769 2662 +2826 2779 2732 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2784 2763 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2623 +2826 2823 2625 +2826 2823 2628 +2826 2822 2631 +2826 2821 2638 +2826 2822 2651 +2826 2823 2668 +2826 2819 2690 +2826 2823 2740 +2826 2825 2794 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 +2826 2826 2819 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/test_clt_32_LUT.azasset b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/test_clt_32_LUT.azasset new file mode 100644 index 0000000000..92f5a49363 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/test_clt_32_LUT.azasset @@ -0,0 +1,32777 @@ +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "LookupTableAsset", + "ClassData": { + "Name": "LookupTable", + "Intervals": [0, 33, 66, 99, 132, 165, 198, 231, 264, 297, 330, 363, 396, 429, 462, 495, 528, 561, 594, 627, 660, 693, 726, 759, 792, 825, 858, 891, 924, 957, 990, 1023], + "Values": [0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 28, +0, 0, 152, +0, 0, 280, +0, 0, 408, +0, 0, 537, +0, 0, 667, +0, 0, 797, +0, 0, 928, +0, 0, 1084, +0, 0, 1291, +0, 0, 1472, +0, 0, 1634, +361, 0, 1771, +1145, 0, 1881, +1561, 0, 2006, +1561, 0, 2154, +432, 987, 2341, +1228, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 54, +0, 0, 173, +0, 0, 295, +0, 0, 419, +0, 0, 545, +0, 0, 673, +0, 0, 802, +0, 0, 932, +0, 0, 1087, +0, 0, 1293, +0, 0, 1473, +0, 0, 1635, +370, 0, 1772, +1144, 0, 1882, +1559, 0, 2006, +1558, 0, 2154, +428, 992, 2341, +1232, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 87, +0, 0, 198, +0, 0, 315, +0, 0, 434, +0, 0, 557, +0, 0, 682, +0, 0, 809, +0, 0, 937, +0, 0, 1091, +0, 0, 1295, +0, 0, 1474, +0, 0, 1635, +381, 0, 1773, +1143, 0, 1883, +1556, 0, 2007, +1554, 0, 2155, +423, 998, 2341, +1238, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 31, +0, 0, 127, +0, 0, 230, +0, 0, 340, +0, 0, 454, +0, 0, 572, +0, 0, 693, +0, 0, 817, +0, 0, 943, +0, 0, 1095, +0, 0, 1298, +0, 0, 1476, +0, 0, 1636, +395, 0, 1774, +1142, 0, 1883, +1552, 0, 2008, +1548, 0, 2156, +416, 1005, 2342, +1246, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 31, +0, 0, 176, +0, 0, 270, +0, 0, 371, +0, 0, 478, +0, 0, 591, +0, 0, 708, +0, 0, 828, +0, 0, 952, +0, 0, 1101, +0, 0, 1302, +0, 0, 1479, +0, 0, 1637, +414, 0, 1775, +1140, 0, 1884, +1547, 0, 2010, +1540, 58, 2158, +407, 1015, 2342, +1257, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 31, +0, 7, 176, +0, 63, 318, +0, 63, 410, +0, 63, 509, +0, 63, 615, +0, 63, 727, +0, 63, 843, +0, 63, 963, +0, 103, 1109, +0, 30, 1307, +0, 30, 1482, +0, 3, 1639, +438, 0, 1777, +1137, 0, 1886, +1539, 0, 2011, +1530, 197, 2160, +394, 1028, 2343, +1270, 621, 2470, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +0, 4, 0, +0, 23, 0, +0, 47, 0, +0, 77, 31, +0, 114, 176, +0, 159, 318, +0, 214, 457, +0, 214, 548, +0, 214, 646, +0, 214, 751, +0, 214, 862, +0, 214, 977, +0, 243, 1120, +0, 163, 1314, +0, 163, 1487, +0, 142, 1641, +468, 0, 1779, +1134, 0, 1888, +1530, 32, 2014, +1515, 333, 2163, +376, 1045, 2344, +1287, 621, 2470, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +0, 144, 0, +0, 157, 0, +0, 175, 0, +0, 198, 31, +0, 227, 176, +0, 262, 318, +0, 306, 457, +0, 359, 595, +0, 359, 684, +0, 359, 782, +0, 359, 886, +0, 359, 996, +0, 380, 1134, +0, 295, 1323, +0, 295, 1494, +0, 280, 1644, +506, 122, 1783, +1129, 0, 1891, +1516, 164, 2017, +1495, 469, 2167, +352, 1066, 2345, +1309, 621, 2470, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +0, 281, 0, +0, 291, 0, +0, 304, 0, +0, 322, 31, +0, 344, 176, +0, 371, 318, +0, 406, 457, +0, 449, 595, +0, 501, 730, +0, 501, 819, +0, 501, 916, +0, 501, 1020, +0, 516, 1151, +0, 426, 1335, +0, 426, 1502, +0, 415, 1648, +552, 265, 1787, +1123, 111, 1894, +1498, 296, 2021, +1467, 603, 2172, +317, 1093, 2347, +1348, 639, 2470, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +0, 417, 0, +0, 424, 0, +0, 434, 0, +0, 447, 31, +0, 464, 176, +0, 486, 318, +0, 513, 457, +0, 547, 595, +0, 589, 730, +0, 640, 865, +0, 640, 954, +0, 640, 1050, +0, 651, 1174, +0, 570, 1350, +0, 559, 1512, +0, 550, 1653, +556, 441, 1791, +1115, 244, 1898, +1471, 428, 2027, +1426, 737, 2178, +265, 1128, 2349, +1396, 662, 2470, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +0, 552, 0, +0, 557, 0, +0, 565, 0, +0, 575, 31, +0, 587, 176, +0, 604, 318, +0, 625, 457, +0, 652, 595, +0, 686, 730, +0, 727, 865, +0, 777, 1000, +0, 777, 1088, +0, 786, 1203, +0, 726, 1370, +0, 691, 1526, +0, 685, 1662, +556, 606, 1796, +1132, 422, 1904, +1434, 560, 2035, +1365, 871, 2187, +186, 1169, 2352, +1454, 691, 2470, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +0, 686, 0, +0, 690, 0, +0, 696, 0, +0, 703, 31, +0, 713, 176, +0, 726, 318, +0, 742, 457, +0, 763, 595, +0, 789, 730, +0, 823, 865, +0, 864, 1000, +0, 913, 1133, +0, 920, 1239, +0, 876, 1395, +0, 823, 1544, +0, 818, 1675, +556, 761, 1803, +1160, 593, 1912, +1378, 692, 2045, +1267, 1004, 2199, +0, 1212, 2357, +1520, 728, 2470, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +0, 857, 100, +0, 857, 131, +0, 861, 202, +0, 866, 282, +0, 873, 371, +0, 882, 468, +0, 894, 573, +0, 909, 683, +0, 928, 797, +0, 953, 916, +0, 984, 1038, +0, 1023, 1162, +0, 1061, 1287, +0, 1030, 1430, +0, 984, 1569, +0, 971, 1697, +566, 941, 1817, +1178, 799, 1926, +1302, 849, 2057, +1119, 1137, 2212, +0, 1255, 2365, +1585, 801, 2470, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +1738, 957, 2513, +0, 1184, 1027, +0, 1184, 1031, +0, 1184, 1036, +0, 1184, 1043, +0, 1184, 1052, +0, 1184, 1064, +0, 1184, 1080, +0, 1184, 1099, +0, 1184, 1125, +0, 1190, 1168, +0, 1209, 1242, +0, 1232, 1325, +0, 1257, 1416, +0, 1237, 1493, +0, 1209, 1617, +0, 1222, 1740, +636, 1187, 1854, +1040, 1131, 1961, +1243, 1131, 2080, +1031, 1271, 2224, +472, 1312, 2372, +1588, 1032, 2472, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +1765, 1144, 2512, +0, 1421, 1377, +0, 1421, 1379, +0, 1421, 1382, +0, 1421, 1385, +0, 1421, 1389, +0, 1421, 1395, +0, 1421, 1402, +0, 1421, 1412, +0, 1421, 1425, +0, 1421, 1442, +0, 1421, 1463, +0, 1421, 1491, +0, 1432, 1546, +0, 1418, 1604, +0, 1399, 1673, +0, 1412, 1786, +636, 1404, 1895, +1048, 1353, 1999, +1151, 1350, 2110, +878, 1405, 2240, +666, 1388, 2378, +1601, 1209, 2473, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +1799, 1314, 2510, +901, 1580, 1648, +901, 1579, 1649, +901, 1579, 1650, +901, 1579, 1652, +901, 1578, 1655, +901, 1577, 1658, +901, 1576, 1662, +901, 1574, 1668, +901, 1572, 1675, +901, 1569, 1685, +901, 1567, 1698, +901, 1567, 1714, +886, 1567, 1736, +886, 1577, 1788, +886, 1569, 1838, +890, 1552, 1888, +807, 1557, 1969, +921, 1536, 2067, +942, 1537, 2170, +810, 1524, 2268, +1125, 1501, 2382, +1680, 1435, 2473, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1845, 1472, 2509, +1449, 1705, 1856, +1448, 1705, 1856, +1447, 1705, 1857, +1446, 1705, 1859, +1444, 1705, 1860, +1441, 1705, 1862, +1438, 1705, 1865, +1433, 1705, 1868, +1427, 1705, 1873, +1426, 1703, 1880, +1426, 1700, 1888, +1426, 1696, 1899, +1423, 1691, 1913, +1400, 1685, 1931, +1400, 1696, 1976, +1370, 1702, 2022, +1371, 1685, 2062, +1192, 1672, 2128, +1127, 1678, 2221, +1173, 1647, 2295, +1519, 1631, 2386, +1775, 1634, 2475, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1785, 1818, 1978, +1786, 1818, 1978, +1786, 1818, 1979, +1786, 1818, 1980, +1786, 1818, 1981, +1787, 1818, 1982, +1788, 1818, 1983, +1789, 1818, 1986, +1790, 1818, 1988, +1792, 1818, 1992, +1788, 1818, 1998, +1781, 1818, 2007, +1772, 1818, 2018, +1752, 1824, 2037, +1733, 1818, 2052, +1727, 1802, 2080, +1685, 1816, 2123, +1705, 1809, 2166, +1657, 1793, 2234, +1664, 1793, 2304, +1754, 1797, 2389, +1874, 1790, 2475, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1958, 1958, 2028, +1957, 1958, 2029, +1957, 1958, 2029, +1957, 1958, 2030, +1956, 1958, 2031, +1956, 1958, 2031, +1956, 1958, 2033, +1955, 1958, 2035, +1954, 1958, 2037, +1953, 1958, 2041, +1951, 1958, 2045, +1948, 1958, 2051, +1946, 1958, 2058, +1941, 1962, 2068, +1935, 1968, 2081, +1927, 1969, 2115, +1913, 1965, 2153, +1905, 1963, 2189, +1920, 1969, 2243, +1881, 1969, 2320, +1929, 1954, 2391, +2032, 1964, 2481, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2093, 1969, 2517, +2119, 2119, 2068, +2119, 2119, 2068, +2119, 2119, 2068, +2119, 2120, 2069, +2119, 2120, 2069, +2119, 2120, 2071, +2119, 2120, 2072, +2119, 2121, 2073, +2119, 2122, 2076, +2119, 2122, 2079, +2119, 2124, 2083, +2119, 2125, 2088, +2119, 2127, 2095, +2119, 2127, 2101, +2119, 2127, 2110, +2115, 2131, 2133, +2108, 2133, 2164, +2103, 2131, 2206, +2110, 2135, 2256, +2119, 2135, 2316, +2148, 2131, 2395, +2212, 2147, 2485, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2369, 2356, 2125, +2369, 2356, 2126, +2369, 2356, 2126, +2369, 2356, 2127, +2369, 2357, 2129, +2368, 2357, 2131, +2367, 2358, 2133, +2368, 2359, 2137, +2369, 2360, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2368, 2358, 2163, +2370, 2358, 2193, +2369, 2358, 2226, +2372, 2355, 2273, +2383, 2356, 2337, +2410, 2367, 2405, +2467, 2385, 2498, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2654, 1964, +2681, 2654, 1965, +2681, 2654, 1966, +2681, 2654, 1968, +2681, 2654, 1967, +2681, 2654, 1965, +2680, 2653, 1964, +2680, 2653, 1961, +2679, 2652, 1961, +2678, 2653, 1968, +2677, 2654, 1989, +2676, 2653, 2013, +2675, 2649, 2032, +2677, 2655, 2124, +2681, 2656, 2208, +2687, 2661, 2306, +2695, 2667, 2410, +2715, 2678, 2527, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2773, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 28, +0, 0, 152, +0, 0, 280, +0, 0, 408, +0, 0, 537, +0, 0, 667, +0, 0, 797, +0, 0, 928, +0, 0, 1088, +0, 0, 1293, +0, 0, 1473, +0, 0, 1634, +398, 0, 1772, +1148, 0, 1882, +1561, 0, 2006, +1560, 0, 2154, +428, 987, 2341, +1231, 619, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 36, +0, 0, 159, +0, 0, 285, +0, 0, 412, +0, 0, 540, +0, 0, 669, +0, 0, 799, +0, 0, 930, +0, 0, 1089, +0, 0, 1294, +0, 0, 1474, +0, 0, 1635, +378, 0, 1771, +1147, 0, 1882, +1561, 0, 2006, +1559, 0, 2154, +428, 992, 2341, +1235, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 71, +0, 0, 186, +0, 0, 305, +0, 0, 427, +0, 0, 551, +0, 0, 678, +0, 0, 805, +0, 0, 935, +0, 0, 1092, +0, 0, 1296, +0, 0, 1475, +0, 0, 1635, +389, 0, 1772, +1146, 0, 1883, +1558, 0, 2007, +1555, 0, 2155, +423, 998, 2341, +1241, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 13, +0, 0, 112, +0, 0, 219, +0, 0, 330, +0, 0, 446, +0, 0, 566, +0, 0, 689, +0, 0, 814, +0, 0, 941, +0, 0, 1097, +0, 0, 1299, +0, 0, 1477, +0, 0, 1636, +403, 0, 1773, +1145, 0, 1884, +1554, 0, 2008, +1549, 0, 2156, +416, 1005, 2342, +1249, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 13, +0, 0, 163, +0, 0, 259, +0, 0, 363, +0, 0, 472, +0, 0, 586, +0, 0, 704, +0, 0, 825, +0, 0, 949, +0, 0, 1103, +0, 0, 1303, +0, 0, 1480, +0, 0, 1637, +422, 0, 1775, +1143, 0, 1884, +1548, 0, 2010, +1541, 50, 2158, +407, 1015, 2342, +1259, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 13, +0, 0, 163, +0, 38, 309, +0, 38, 402, +0, 38, 503, +0, 38, 610, +0, 38, 723, +0, 38, 840, +0, 38, 961, +0, 102, 1111, +0, 30, 1308, +0, 30, 1483, +0, 0, 1639, +445, 0, 1776, +1140, 0, 1886, +1541, 0, 2011, +1531, 190, 2160, +394, 1028, 2343, +1272, 621, 2470, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +0, 4, 0, +0, 0, 0, +0, 20, 0, +0, 52, 13, +0, 91, 163, +0, 139, 309, +0, 195, 450, +0, 195, 542, +0, 195, 641, +0, 195, 748, +0, 195, 859, +0, 195, 975, +0, 242, 1121, +0, 163, 1315, +0, 163, 1488, +0, 135, 1641, +475, 0, 1779, +1137, 0, 1888, +1532, 32, 2014, +1516, 329, 2163, +376, 1045, 2344, +1289, 621, 2470, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +0, 144, 0, +0, 137, 0, +0, 155, 0, +0, 179, 13, +0, 209, 163, +0, 246, 309, +0, 291, 450, +0, 346, 589, +0, 346, 680, +0, 346, 778, +0, 346, 883, +0, 346, 994, +0, 380, 1135, +0, 295, 1324, +0, 295, 1494, +0, 274, 1644, +512, 108, 1782, +1133, 0, 1891, +1518, 164, 2017, +1496, 465, 2167, +352, 1066, 2345, +1311, 621, 2470, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +0, 281, 0, +0, 276, 0, +0, 289, 0, +0, 307, 13, +0, 330, 163, +0, 359, 309, +0, 394, 450, +0, 438, 589, +0, 491, 727, +0, 491, 816, +0, 491, 914, +0, 491, 1018, +0, 516, 1153, +0, 426, 1336, +0, 426, 1502, +0, 412, 1648, +557, 254, 1787, +1126, 111, 1894, +1500, 296, 2021, +1468, 601, 2172, +317, 1093, 2347, +1350, 639, 2470, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +0, 417, 0, +0, 413, 0, +0, 423, 0, +0, 437, 13, +0, 454, 163, +0, 476, 309, +0, 504, 450, +0, 539, 589, +0, 581, 727, +0, 633, 862, +0, 633, 952, +0, 633, 1049, +0, 651, 1176, +0, 570, 1351, +0, 559, 1513, +0, 547, 1653, +561, 434, 1790, +1118, 244, 1898, +1474, 428, 2027, +1427, 736, 2178, +265, 1128, 2349, +1398, 662, 2470, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +0, 552, 0, +0, 549, 0, +0, 557, 0, +0, 566, 13, +0, 579, 163, +0, 596, 309, +0, 618, 450, +0, 645, 589, +0, 679, 727, +0, 721, 862, +0, 772, 997, +0, 772, 1086, +0, 785, 1204, +0, 726, 1371, +0, 691, 1527, +0, 682, 1662, +561, 601, 1796, +1135, 422, 1904, +1436, 560, 2035, +1366, 869, 2187, +186, 1169, 2352, +1455, 691, 2470, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +0, 686, 0, +0, 684, 0, +0, 690, 0, +0, 697, 13, +0, 707, 163, +0, 720, 309, +0, 736, 450, +0, 758, 589, +0, 784, 727, +0, 818, 862, +0, 859, 997, +0, 909, 1132, +0, 919, 1240, +0, 876, 1396, +0, 823, 1545, +0, 817, 1675, +561, 758, 1802, +1163, 593, 1912, +1381, 692, 2045, +1269, 1003, 2199, +0, 1212, 2357, +1522, 728, 2470, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +0, 854, 85, +0, 854, 130, +0, 858, 201, +0, 863, 282, +0, 870, 371, +0, 879, 468, +0, 891, 572, +0, 906, 682, +0, 925, 797, +0, 950, 916, +0, 981, 1038, +0, 1020, 1162, +0, 1060, 1288, +0, 1029, 1430, +0, 983, 1570, +0, 969, 1697, +572, 942, 1817, +1182, 800, 1926, +1302, 849, 2057, +1120, 1137, 2212, +0, 1254, 2365, +1585, 800, 2470, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +0, 1183, 1025, +0, 1183, 1031, +0, 1183, 1036, +0, 1183, 1043, +0, 1183, 1052, +0, 1183, 1064, +0, 1183, 1080, +0, 1183, 1099, +0, 1183, 1125, +0, 1188, 1168, +0, 1207, 1242, +0, 1231, 1325, +0, 1257, 1417, +0, 1236, 1493, +0, 1208, 1617, +0, 1221, 1741, +640, 1187, 1855, +1045, 1132, 1961, +1243, 1131, 2080, +1031, 1271, 2225, +498, 1311, 2371, +1589, 1031, 2471, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +1765, 1143, 2512, +0, 1421, 1376, +0, 1421, 1379, +0, 1421, 1382, +0, 1421, 1385, +0, 1421, 1389, +0, 1421, 1395, +0, 1421, 1402, +0, 1421, 1412, +0, 1421, 1425, +0, 1421, 1442, +0, 1421, 1463, +0, 1421, 1491, +0, 1431, 1546, +0, 1417, 1605, +0, 1399, 1673, +0, 1411, 1786, +640, 1405, 1896, +1052, 1353, 1999, +1151, 1350, 2110, +878, 1405, 2240, +684, 1387, 2378, +1602, 1208, 2473, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +1799, 1313, 2510, +913, 1579, 1648, +912, 1579, 1649, +912, 1579, 1651, +912, 1579, 1653, +912, 1578, 1655, +912, 1577, 1658, +912, 1576, 1662, +912, 1574, 1668, +912, 1572, 1675, +912, 1569, 1685, +912, 1567, 1698, +912, 1567, 1714, +892, 1567, 1736, +891, 1577, 1788, +891, 1569, 1838, +896, 1552, 1889, +818, 1557, 1970, +929, 1536, 2067, +946, 1537, 2170, +810, 1524, 2268, +1128, 1500, 2382, +1680, 1435, 2473, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1450, 1705, 1856, +1449, 1705, 1856, +1448, 1705, 1857, +1446, 1705, 1859, +1444, 1705, 1860, +1442, 1705, 1862, +1439, 1705, 1865, +1434, 1705, 1868, +1427, 1705, 1873, +1427, 1703, 1880, +1427, 1700, 1888, +1427, 1696, 1899, +1424, 1691, 1913, +1401, 1685, 1931, +1401, 1696, 1976, +1370, 1701, 2022, +1372, 1685, 2062, +1195, 1672, 2128, +1129, 1678, 2221, +1176, 1647, 2295, +1520, 1631, 2386, +1776, 1634, 2475, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1894, 1629, 2511, +1786, 1817, 1978, +1786, 1817, 1978, +1786, 1817, 1979, +1786, 1817, 1980, +1787, 1817, 1981, +1787, 1817, 1982, +1788, 1817, 1983, +1789, 1817, 1986, +1790, 1817, 1988, +1793, 1817, 1992, +1789, 1817, 1998, +1782, 1817, 2007, +1772, 1818, 2018, +1753, 1824, 2036, +1733, 1818, 2052, +1727, 1803, 2080, +1686, 1816, 2123, +1706, 1808, 2166, +1658, 1793, 2234, +1664, 1793, 2304, +1754, 1797, 2389, +1874, 1790, 2475, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1964, 1800, 2514, +1958, 1958, 2028, +1958, 1958, 2029, +1957, 1958, 2029, +1957, 1958, 2030, +1957, 1958, 2031, +1956, 1958, 2031, +1956, 1958, 2033, +1955, 1958, 2035, +1954, 1958, 2037, +1953, 1958, 2041, +1951, 1958, 2045, +1948, 1958, 2051, +1946, 1958, 2058, +1941, 1962, 2068, +1936, 1968, 2081, +1927, 1969, 2115, +1913, 1965, 2153, +1905, 1963, 2189, +1920, 1969, 2243, +1881, 1968, 2320, +1929, 1954, 2392, +2033, 1964, 2481, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2120, 2119, 2068, +2120, 2119, 2068, +2120, 2119, 2068, +2120, 2120, 2069, +2120, 2120, 2069, +2120, 2120, 2070, +2120, 2120, 2072, +2120, 2121, 2073, +2120, 2122, 2076, +2120, 2122, 2079, +2120, 2124, 2083, +2120, 2125, 2088, +2119, 2127, 2095, +2119, 2127, 2101, +2119, 2127, 2110, +2115, 2131, 2133, +2109, 2133, 2164, +2103, 2131, 2206, +2111, 2135, 2256, +2119, 2135, 2316, +2148, 2131, 2395, +2212, 2147, 2485, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2356, 2125, +2369, 2356, 2126, +2369, 2356, 2126, +2369, 2356, 2127, +2369, 2357, 2129, +2368, 2357, 2131, +2367, 2358, 2133, +2368, 2359, 2137, +2369, 2360, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2368, 2358, 2163, +2370, 2358, 2193, +2369, 2358, 2226, +2372, 2355, 2273, +2383, 2356, 2337, +2410, 2367, 2405, +2467, 2385, 2498, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2654, 1965, +2681, 2654, 1966, +2681, 2654, 1968, +2681, 2654, 1967, +2681, 2654, 1966, +2680, 2653, 1964, +2680, 2653, 1962, +2679, 2652, 1962, +2678, 2653, 1969, +2677, 2654, 1990, +2676, 2653, 2014, +2675, 2650, 2033, +2677, 2655, 2124, +2681, 2656, 2208, +2687, 2661, 2306, +2695, 2667, 2410, +2715, 2678, 2527, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2709, 2773, 2484, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 28, +0, 0, 152, +0, 0, 280, +0, 0, 408, +0, 0, 537, +0, 0, 667, +0, 0, 797, +0, 0, 928, +0, 0, 1088, +0, 0, 1296, +0, 0, 1475, +0, 0, 1634, +445, 0, 1772, +1152, 0, 1882, +1561, 0, 2006, +1559, 0, 2155, +423, 987, 2341, +1234, 615, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 36, +0, 0, 159, +0, 0, 285, +0, 0, 412, +0, 0, 540, +0, 0, 669, +0, 0, 799, +0, 0, 930, +0, 0, 1089, +0, 0, 1297, +0, 0, 1475, +0, 0, 1635, +426, 0, 1772, +1151, 0, 1882, +1561, 0, 2007, +1558, 0, 2155, +423, 992, 2341, +1238, 618, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 48, +0, 0, 168, +0, 0, 291, +0, 0, 417, +0, 0, 544, +0, 0, 672, +0, 0, 801, +0, 0, 931, +0, 0, 1090, +0, 0, 1298, +0, 0, 1476, +0, 0, 1635, +400, 0, 1772, +1150, 0, 1883, +1560, 0, 2007, +1556, 0, 2155, +423, 998, 2341, +1244, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 92, +0, 0, 203, +0, 0, 318, +0, 0, 437, +0, 0, 559, +0, 0, 683, +0, 0, 810, +0, 0, 938, +0, 0, 1094, +0, 0, 1300, +0, 0, 1478, +0, 0, 1636, +414, 0, 1773, +1149, 0, 1884, +1556, 0, 2008, +1550, 0, 2156, +416, 1005, 2342, +1252, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 145, +0, 0, 245, +0, 0, 351, +0, 0, 462, +0, 0, 579, +0, 0, 699, +0, 0, 821, +0, 0, 946, +0, 0, 1101, +0, 0, 1304, +0, 0, 1481, +0, 0, 1637, +432, 0, 1774, +1147, 0, 1885, +1551, 0, 2010, +1543, 38, 2158, +407, 1015, 2342, +1262, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 145, +0, 1, 295, +0, 1, 391, +0, 1, 494, +0, 1, 604, +0, 1, 718, +0, 1, 836, +0, 1, 958, +0, 70, 1109, +0, 30, 1310, +0, 30, 1484, +0, 0, 1639, +455, 0, 1776, +1144, 0, 1886, +1544, 0, 2012, +1532, 182, 2160, +394, 1028, 2343, +1275, 621, 2470, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +0, 4, 0, +0, 0, 0, +0, 0, 0, +0, 16, 0, +0, 58, 145, +0, 109, 295, +0, 170, 441, +0, 170, 534, +0, 170, 635, +0, 170, 742, +0, 170, 855, +0, 170, 973, +0, 218, 1119, +0, 163, 1316, +0, 163, 1489, +0, 126, 1641, +484, 0, 1778, +1141, 0, 1888, +1534, 32, 2014, +1518, 322, 2163, +376, 1045, 2344, +1292, 621, 2470, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +0, 144, 0, +0, 137, 0, +0, 127, 0, +0, 152, 0, +0, 184, 145, +0, 223, 295, +0, 271, 441, +0, 327, 582, +0, 327, 674, +0, 327, 773, +0, 327, 879, +0, 327, 991, +0, 363, 1133, +0, 295, 1325, +0, 295, 1495, +0, 267, 1644, +520, 87, 1782, +1137, 0, 1891, +1521, 164, 2017, +1498, 461, 2167, +352, 1066, 2345, +1314, 621, 2470, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +0, 281, 0, +0, 276, 0, +0, 269, 0, +0, 287, 0, +0, 311, 145, +0, 341, 295, +0, 378, 441, +0, 423, 582, +0, 478, 721, +0, 478, 812, +0, 478, 910, +0, 478, 1016, +0, 503, 1151, +0, 426, 1337, +0, 426, 1503, +0, 406, 1648, +565, 239, 1786, +1131, 111, 1894, +1503, 296, 2022, +1470, 597, 2172, +317, 1093, 2347, +1353, 639, 2470, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +0, 417, 0, +0, 413, 0, +0, 408, 0, +0, 422, 0, +0, 439, 145, +0, 462, 295, +0, 491, 441, +0, 527, 582, +0, 570, 721, +0, 623, 859, +0, 623, 948, +0, 623, 1046, +0, 642, 1174, +0, 570, 1352, +0, 559, 1514, +0, 544, 1653, +569, 424, 1790, +1123, 244, 1899, +1477, 428, 2027, +1429, 733, 2178, +265, 1128, 2349, +1400, 662, 2470, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +0, 552, 0, +0, 549, 0, +0, 545, 0, +0, 555, 0, +0, 568, 145, +0, 586, 295, +0, 608, 441, +0, 636, 582, +0, 670, 721, +0, 713, 859, +0, 765, 995, +0, 765, 1084, +0, 778, 1202, +0, 726, 1372, +0, 691, 1528, +0, 680, 1662, +569, 594, 1795, +1139, 422, 1905, +1440, 560, 2035, +1368, 868, 2187, +186, 1169, 2352, +1457, 691, 2470, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +0, 686, 0, +0, 684, 0, +0, 681, 0, +0, 689, 0, +0, 699, 145, +0, 712, 295, +0, 729, 441, +0, 750, 582, +0, 777, 721, +0, 811, 859, +0, 854, 995, +0, 904, 1130, +0, 914, 1238, +0, 876, 1397, +0, 823, 1546, +0, 815, 1675, +569, 753, 1802, +1167, 593, 1913, +1385, 692, 2045, +1272, 1002, 2199, +0, 1212, 2357, +1524, 728, 2470, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +0, 854, 85, +0, 854, 130, +0, 852, 185, +0, 857, 268, +0, 864, 360, +0, 873, 459, +0, 885, 565, +0, 901, 676, +0, 920, 793, +0, 946, 912, +0, 977, 1035, +0, 1016, 1160, +0, 1056, 1287, +0, 1029, 1432, +0, 983, 1571, +0, 967, 1697, +579, 939, 1816, +1186, 800, 1926, +1306, 849, 2057, +1123, 1137, 2212, +0, 1254, 2365, +1587, 800, 2470, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +0, 1181, 1022, +0, 1181, 1028, +0, 1181, 1036, +0, 1181, 1043, +0, 1181, 1052, +0, 1181, 1064, +0, 1181, 1080, +0, 1181, 1099, +0, 1181, 1125, +0, 1186, 1168, +0, 1205, 1242, +0, 1229, 1325, +0, 1255, 1417, +0, 1235, 1494, +0, 1207, 1618, +0, 1219, 1741, +647, 1188, 1855, +1051, 1133, 1961, +1243, 1131, 2080, +1031, 1271, 2225, +532, 1310, 2371, +1590, 1030, 2471, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +1766, 1141, 2512, +0, 1420, 1375, +0, 1420, 1378, +0, 1420, 1382, +0, 1420, 1385, +0, 1420, 1389, +0, 1420, 1395, +0, 1420, 1402, +0, 1420, 1412, +0, 1420, 1425, +0, 1420, 1442, +0, 1420, 1463, +0, 1420, 1491, +0, 1430, 1546, +0, 1417, 1606, +0, 1398, 1674, +0, 1410, 1786, +647, 1405, 1896, +1059, 1354, 2000, +1151, 1350, 2109, +878, 1405, 2240, +706, 1386, 2378, +1603, 1208, 2473, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +1800, 1311, 2510, +929, 1579, 1649, +928, 1579, 1650, +926, 1579, 1651, +926, 1579, 1653, +926, 1578, 1655, +926, 1577, 1658, +926, 1576, 1663, +926, 1574, 1668, +926, 1572, 1676, +926, 1569, 1685, +926, 1567, 1698, +926, 1567, 1715, +906, 1567, 1736, +898, 1576, 1787, +898, 1569, 1837, +906, 1552, 1889, +833, 1557, 1970, +939, 1536, 2067, +950, 1537, 2170, +810, 1524, 2268, +1132, 1500, 2382, +1680, 1435, 2473, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1845, 1471, 2509, +1452, 1705, 1855, +1450, 1705, 1856, +1449, 1705, 1857, +1448, 1705, 1859, +1446, 1705, 1860, +1443, 1705, 1862, +1440, 1705, 1865, +1435, 1705, 1868, +1429, 1705, 1873, +1428, 1703, 1880, +1428, 1700, 1888, +1428, 1696, 1899, +1425, 1691, 1913, +1402, 1685, 1931, +1402, 1696, 1977, +1371, 1701, 2021, +1374, 1685, 2062, +1200, 1672, 2128, +1132, 1678, 2221, +1180, 1647, 2295, +1520, 1631, 2386, +1776, 1634, 2475, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1787, 1817, 1978, +1787, 1817, 1978, +1786, 1817, 1979, +1786, 1817, 1980, +1787, 1817, 1981, +1787, 1817, 1982, +1788, 1817, 1983, +1789, 1817, 1986, +1791, 1817, 1988, +1793, 1817, 1992, +1789, 1817, 1998, +1782, 1817, 2007, +1772, 1818, 2018, +1753, 1823, 2036, +1734, 1818, 2052, +1728, 1803, 2080, +1687, 1816, 2123, +1706, 1808, 2166, +1658, 1793, 2234, +1666, 1793, 2304, +1755, 1797, 2389, +1874, 1790, 2475, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1958, 1958, 2029, +1958, 1958, 2029, +1958, 1958, 2029, +1958, 1958, 2030, +1957, 1958, 2031, +1957, 1958, 2032, +1956, 1958, 2033, +1955, 1958, 2035, +1955, 1958, 2037, +1953, 1958, 2041, +1951, 1958, 2045, +1949, 1958, 2051, +1946, 1958, 2058, +1941, 1962, 2068, +1936, 1968, 2081, +1927, 1969, 2114, +1914, 1966, 2153, +1905, 1963, 2189, +1920, 1969, 2243, +1882, 1968, 2320, +1930, 1954, 2392, +2034, 1964, 2481, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2094, 1969, 2517, +2120, 2119, 2068, +2120, 2119, 2068, +2120, 2119, 2068, +2120, 2120, 2069, +2120, 2120, 2069, +2120, 2120, 2070, +2120, 2120, 2071, +2120, 2121, 2073, +2120, 2122, 2076, +2120, 2122, 2079, +2120, 2124, 2083, +2120, 2125, 2088, +2119, 2127, 2095, +2119, 2127, 2101, +2119, 2127, 2110, +2116, 2131, 2132, +2109, 2133, 2164, +2103, 2131, 2206, +2111, 2135, 2256, +2120, 2135, 2316, +2148, 2131, 2395, +2212, 2147, 2485, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2261, 2159, 2524, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2356, 2126, +2369, 2356, 2126, +2369, 2356, 2127, +2369, 2357, 2129, +2368, 2357, 2131, +2367, 2358, 2133, +2368, 2359, 2137, +2369, 2360, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2368, 2358, 2163, +2370, 2358, 2193, +2369, 2358, 2226, +2372, 2355, 2273, +2384, 2356, 2337, +2410, 2367, 2405, +2467, 2385, 2498, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2655, 1965, +2681, 2655, 1966, +2681, 2654, 1967, +2681, 2654, 1969, +2681, 2654, 1968, +2681, 2654, 1966, +2680, 2653, 1965, +2680, 2653, 1962, +2679, 2652, 1963, +2678, 2653, 1970, +2677, 2655, 1992, +2676, 2653, 2015, +2675, 2650, 2035, +2677, 2655, 2124, +2681, 2656, 2208, +2687, 2661, 2306, +2695, 2666, 2409, +2715, 2678, 2527, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2722, 2684, 2575, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2771, 2455, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 28, +0, 0, 152, +0, 0, 280, +0, 0, 408, +0, 0, 537, +0, 0, 667, +0, 0, 797, +0, 0, 928, +0, 0, 1088, +0, 0, 1300, +0, 0, 1478, +0, 0, 1634, +499, 0, 1773, +1157, 0, 1883, +1561, 0, 2007, +1557, 0, 2156, +416, 987, 2341, +1238, 611, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 36, +0, 0, 159, +0, 0, 285, +0, 0, 412, +0, 0, 540, +0, 0, 669, +0, 0, 799, +0, 0, 930, +0, 0, 1089, +0, 0, 1301, +0, 0, 1478, +0, 0, 1635, +483, 0, 1773, +1157, 0, 1883, +1561, 0, 2007, +1556, 0, 2156, +416, 992, 2341, +1243, 614, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 48, +0, 0, 168, +0, 0, 291, +0, 0, 417, +0, 0, 544, +0, 0, 672, +0, 0, 801, +0, 0, 931, +0, 0, 1090, +0, 0, 1302, +0, 0, 1479, +0, 0, 1635, +460, 0, 1772, +1156, 0, 1884, +1560, 0, 2008, +1554, 0, 2156, +416, 998, 2341, +1249, 617, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 63, +0, 0, 180, +0, 0, 300, +0, 0, 424, +0, 0, 549, +0, 0, 676, +0, 0, 804, +0, 0, 933, +0, 0, 1091, +0, 0, 1302, +0, 0, 1480, +0, 0, 1636, +427, 0, 1772, +1154, 0, 1884, +1560, 0, 2009, +1552, 0, 2156, +416, 1005, 2342, +1256, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 120, +0, 0, 224, +0, 0, 335, +0, 0, 450, +0, 0, 569, +0, 0, 691, +0, 0, 816, +0, 0, 942, +0, 0, 1097, +0, 0, 1306, +0, 0, 1482, +0, 0, 1637, +445, 0, 1774, +1153, 0, 1885, +1554, 0, 2010, +1544, 22, 2158, +407, 1015, 2342, +1266, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 120, +0, 0, 277, +0, 0, 376, +0, 0, 483, +0, 0, 594, +0, 0, 711, +0, 0, 831, +0, 0, 954, +0, 23, 1106, +0, 30, 1311, +0, 30, 1486, +0, 0, 1639, +467, 0, 1775, +1150, 0, 1887, +1547, 0, 2012, +1534, 170, 2160, +394, 1028, 2343, +1279, 621, 2470, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +0, 4, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 11, 120, +0, 67, 277, +0, 133, 427, +0, 133, 523, +0, 133, 627, +0, 133, 736, +0, 133, 850, +0, 133, 968, +0, 186, 1116, +0, 163, 1318, +0, 163, 1490, +0, 112, 1641, +496, 0, 1778, +1147, 0, 1888, +1538, 32, 2014, +1520, 314, 2163, +376, 1045, 2344, +1296, 621, 2470, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +0, 144, 0, +0, 137, 0, +0, 127, 0, +0, 114, 0, +0, 148, 120, +0, 190, 277, +0, 241, 427, +0, 302, 573, +0, 302, 666, +0, 302, 767, +0, 302, 875, +0, 302, 987, +0, 339, 1130, +0, 295, 1327, +0, 295, 1496, +0, 258, 1644, +531, 58, 1781, +1142, 0, 1891, +1524, 164, 2018, +1500, 455, 2167, +352, 1066, 2345, +1318, 621, 2470, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +0, 281, 0, +0, 276, 0, +0, 269, 0, +0, 259, 0, +0, 284, 120, +0, 316, 277, +0, 355, 427, +0, 403, 573, +0, 459, 714, +0, 459, 806, +0, 459, 906, +0, 459, 1012, +0, 486, 1148, +0, 426, 1339, +0, 426, 1504, +0, 399, 1648, +574, 219, 1786, +1136, 111, 1894, +1506, 296, 2022, +1472, 593, 2172, +317, 1093, 2347, +1356, 639, 2470, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +0, 417, 0, +0, 413, 0, +0, 408, 0, +0, 401, 0, +0, 419, 120, +0, 443, 277, +0, 473, 427, +0, 510, 573, +0, 556, 714, +0, 610, 854, +0, 610, 944, +0, 610, 1043, +0, 629, 1171, +0, 570, 1354, +0, 559, 1515, +0, 539, 1653, +578, 410, 1789, +1128, 244, 1899, +1481, 428, 2028, +1431, 730, 2178, +265, 1128, 2349, +1403, 662, 2470, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +0, 552, 0, +0, 549, 0, +0, 545, 0, +0, 540, 0, +0, 553, 120, +0, 571, 277, +0, 594, 427, +0, 623, 573, +0, 658, 714, +0, 702, 854, +0, 755, 991, +0, 755, 1080, +0, 769, 1200, +0, 726, 1374, +0, 691, 1529, +0, 676, 1662, +578, 585, 1795, +1145, 422, 1905, +1444, 560, 2035, +1371, 865, 2187, +186, 1169, 2352, +1460, 691, 2470, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +0, 686, 0, +0, 684, 0, +0, 681, 0, +0, 677, 0, +0, 688, 120, +0, 701, 277, +0, 718, 427, +0, 740, 573, +0, 768, 714, +0, 803, 854, +0, 845, 991, +0, 897, 1127, +0, 907, 1236, +0, 876, 1399, +0, 823, 1547, +0, 812, 1675, +578, 746, 1801, +1172, 593, 1913, +1390, 692, 2045, +1275, 1000, 2199, +0, 1212, 2357, +1526, 728, 2470, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +0, 854, 85, +0, 854, 130, +0, 852, 185, +0, 850, 248, +0, 857, 344, +0, 866, 446, +0, 878, 555, +0, 894, 669, +0, 914, 787, +0, 939, 908, +0, 971, 1032, +0, 1011, 1157, +0, 1051, 1285, +0, 1029, 1433, +0, 983, 1572, +27, 965, 1697, +589, 934, 1816, +1190, 800, 1926, +1312, 849, 2057, +1127, 1135, 2212, +0, 1254, 2365, +1589, 800, 2470, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +0, 1178, 1018, +0, 1178, 1024, +0, 1178, 1032, +0, 1178, 1043, +0, 1178, 1052, +0, 1178, 1064, +0, 1178, 1080, +0, 1178, 1099, +0, 1178, 1125, +0, 1184, 1168, +0, 1203, 1242, +0, 1227, 1325, +0, 1253, 1417, +21, 1234, 1496, +21, 1206, 1619, +81, 1217, 1742, +655, 1189, 1855, +1060, 1135, 1962, +1243, 1131, 2080, +1031, 1271, 2225, +573, 1308, 2371, +1592, 1028, 2471, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +1767, 1138, 2512, +0, 1418, 1374, +0, 1418, 1376, +0, 1418, 1380, +0, 1418, 1385, +0, 1418, 1389, +0, 1418, 1395, +0, 1418, 1402, +0, 1418, 1412, +0, 1418, 1425, +0, 1418, 1442, +0, 1418, 1463, +0, 1418, 1491, +0, 1429, 1546, +21, 1416, 1607, +21, 1397, 1675, +81, 1409, 1787, +655, 1406, 1896, +1067, 1355, 2000, +1151, 1350, 2109, +878, 1405, 2240, +735, 1384, 2378, +1605, 1206, 2473, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +1801, 1309, 2510, +949, 1577, 1650, +947, 1578, 1651, +946, 1578, 1652, +943, 1579, 1653, +943, 1578, 1656, +943, 1577, 1659, +943, 1576, 1663, +943, 1574, 1669, +943, 1572, 1676, +943, 1569, 1686, +943, 1567, 1699, +943, 1567, 1715, +924, 1567, 1737, +908, 1576, 1787, +908, 1568, 1837, +917, 1552, 1889, +852, 1557, 1971, +951, 1536, 2066, +957, 1537, 2170, +810, 1525, 2268, +1138, 1499, 2382, +1680, 1435, 2473, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1845, 1470, 2509, +1454, 1705, 1855, +1453, 1705, 1856, +1451, 1705, 1857, +1449, 1705, 1859, +1447, 1705, 1860, +1444, 1705, 1862, +1441, 1705, 1865, +1436, 1705, 1868, +1430, 1705, 1873, +1430, 1703, 1880, +1430, 1700, 1888, +1430, 1696, 1899, +1426, 1691, 1913, +1403, 1685, 1931, +1403, 1696, 1977, +1372, 1701, 2021, +1375, 1686, 2063, +1206, 1672, 2128, +1137, 1678, 2221, +1185, 1647, 2295, +1521, 1632, 2386, +1778, 1634, 2475, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1894, 1628, 2511, +1788, 1817, 1978, +1788, 1817, 1978, +1787, 1817, 1979, +1787, 1817, 1980, +1787, 1817, 1981, +1788, 1817, 1982, +1789, 1817, 1983, +1790, 1817, 1986, +1791, 1817, 1988, +1793, 1817, 1992, +1789, 1817, 1998, +1782, 1817, 2007, +1773, 1818, 2018, +1754, 1823, 2036, +1735, 1818, 2051, +1730, 1803, 2080, +1689, 1816, 2124, +1707, 1808, 2166, +1658, 1793, 2234, +1668, 1793, 2304, +1756, 1797, 2389, +1874, 1789, 2475, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1965, 1800, 2514, +1959, 1958, 2029, +1959, 1958, 2029, +1958, 1958, 2030, +1958, 1958, 2030, +1958, 1958, 2031, +1957, 1958, 2032, +1957, 1958, 2033, +1956, 1958, 2035, +1955, 1958, 2037, +1954, 1958, 2041, +1952, 1958, 2045, +1950, 1958, 2051, +1946, 1958, 2058, +1942, 1962, 2068, +1936, 1967, 2081, +1928, 1969, 2114, +1915, 1966, 2154, +1905, 1962, 2189, +1920, 1968, 2243, +1883, 1968, 2320, +1930, 1954, 2392, +2035, 1964, 2481, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2095, 1968, 2516, +2120, 2120, 2068, +2120, 2120, 2068, +2120, 2120, 2068, +2120, 2120, 2069, +2120, 2120, 2069, +2120, 2120, 2070, +2120, 2120, 2071, +2120, 2121, 2073, +2120, 2122, 2075, +2120, 2122, 2078, +2120, 2124, 2082, +2120, 2125, 2088, +2119, 2127, 2095, +2119, 2127, 2101, +2119, 2127, 2110, +2116, 2131, 2132, +2110, 2133, 2165, +2104, 2131, 2206, +2111, 2134, 2256, +2120, 2135, 2316, +2148, 2131, 2395, +2212, 2147, 2485, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2356, 2126, +2369, 2356, 2126, +2369, 2356, 2127, +2369, 2357, 2129, +2368, 2357, 2131, +2368, 2358, 2133, +2368, 2359, 2137, +2369, 2360, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2369, 2358, 2163, +2371, 2358, 2193, +2369, 2358, 2226, +2372, 2355, 2273, +2384, 2357, 2337, +2410, 2367, 2405, +2467, 2385, 2498, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2655, 1966, +2681, 2655, 1967, +2681, 2655, 1968, +2681, 2655, 1969, +2681, 2654, 1968, +2681, 2654, 1967, +2680, 2654, 1965, +2680, 2653, 1963, +2679, 2653, 1963, +2678, 2654, 1973, +2677, 2655, 1994, +2676, 2653, 2016, +2675, 2650, 2036, +2677, 2655, 2123, +2681, 2656, 2208, +2687, 2661, 2306, +2695, 2666, 2409, +2715, 2678, 2527, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +58, 0, 0, +58, 0, 0, +58, 0, 0, +58, 0, 0, +58, 0, 28, +58, 0, 152, +58, 0, 280, +58, 0, 408, +58, 0, 537, +58, 0, 667, +58, 0, 797, +58, 0, 928, +0, 0, 1088, +0, 0, 1305, +0, 0, 1481, +28, 0, 1634, +564, 0, 1774, +1165, 0, 1884, +1561, 0, 2007, +1555, 0, 2157, +407, 987, 2341, +1245, 605, 2470, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +41, 0, 0, +50, 0, 0, +50, 0, 0, +50, 0, 0, +50, 0, 36, +50, 0, 159, +50, 0, 285, +50, 0, 412, +50, 0, 540, +50, 0, 669, +50, 0, 799, +50, 0, 930, +0, 0, 1089, +0, 0, 1306, +0, 0, 1482, +36, 0, 1635, +550, 0, 1774, +1164, 0, 1884, +1561, 0, 2008, +1554, 0, 2157, +407, 992, 2341, +1249, 608, 2470, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +17, 0, 0, +26, 0, 0, +38, 0, 0, +38, 0, 0, +38, 0, 48, +38, 0, 168, +38, 0, 291, +38, 0, 417, +38, 0, 544, +38, 0, 672, +38, 0, 801, +38, 0, 931, +0, 0, 1090, +0, 0, 1307, +0, 0, 1482, +48, 0, 1635, +530, 0, 1773, +1163, 0, 1884, +1560, 0, 2008, +1552, 0, 2157, +407, 998, 2341, +1254, 611, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +6, 0, 0, +22, 0, 0, +22, 0, 63, +22, 0, 180, +22, 0, 300, +22, 0, 424, +22, 0, 549, +22, 0, 676, +22, 0, 804, +22, 0, 933, +0, 0, 1091, +0, 0, 1308, +0, 0, 1483, +63, 0, 1636, +502, 0, 1773, +1162, 0, 1885, +1560, 0, 2009, +1550, 0, 2158, +407, 1005, 2342, +1262, 615, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 83, +0, 0, 195, +0, 0, 312, +0, 0, 433, +0, 0, 556, +0, 0, 681, +0, 0, 808, +0, 0, 936, +0, 0, 1093, +0, 0, 1309, +0, 0, 1484, +83, 0, 1637, +462, 0, 1772, +1160, 0, 1885, +1559, 0, 2010, +1547, 0, 2158, +407, 1015, 2342, +1272, 621, 2470, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +1732, 0, 2503, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 83, +0, 0, 251, +0, 0, 356, +0, 0, 467, +0, 0, 582, +0, 0, 701, +0, 0, 823, +0, 0, 948, +0, 0, 1102, +0, 30, 1314, +0, 30, 1487, +83, 0, 1639, +483, 0, 1774, +1157, 0, 1887, +1552, 0, 2012, +1536, 154, 2160, +394, 1028, 2343, +1285, 621, 2470, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +0, 4, 0, +0, 0, 0, +0, 0, 0, +0, 0, 0, +0, 0, 83, +0, 3, 251, +0, 78, 409, +0, 78, 509, +0, 78, 615, +0, 78, 727, +0, 78, 843, +0, 78, 963, +0, 137, 1112, +0, 163, 1321, +0, 163, 1492, +83, 94, 1641, +511, 0, 1777, +1154, 0, 1889, +1542, 32, 2015, +1522, 302, 2163, +376, 1045, 2344, +1302, 621, 2470, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +0, 144, 0, +0, 137, 0, +0, 127, 0, +0, 114, 0, +0, 96, 83, +0, 143, 251, +0, 199, 409, +0, 265, 559, +0, 265, 655, +0, 265, 759, +0, 265, 868, +0, 265, 982, +0, 305, 1126, +0, 295, 1330, +0, 295, 1498, +83, 244, 1644, +545, 15, 1780, +1150, 0, 1891, +1529, 164, 2018, +1502, 446, 2167, +352, 1066, 2345, +1323, 621, 2470, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +0, 281, 0, +0, 276, 0, +0, 269, 0, +0, 259, 0, +0, 246, 83, +0, 280, 251, +0, 322, 409, +0, 373, 559, +0, 434, 705, +0, 434, 798, +0, 434, 899, +0, 434, 1007, +0, 462, 1144, +0, 426, 1341, +0, 426, 1506, +83, 390, 1648, +587, 190, 1784, +1144, 111, 1895, +1511, 296, 2022, +1474, 586, 2172, +317, 1093, 2347, +1361, 639, 2470, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +0, 417, 0, +0, 413, 0, +0, 408, 0, +0, 401, 0, +0, 391, 83, +0, 416, 251, +0, 448, 409, +0, 487, 559, +0, 535, 705, +0, 591, 846, +0, 591, 938, +0, 591, 1038, +0, 611, 1167, +0, 570, 1357, +0, 559, 1517, +83, 531, 1653, +591, 391, 1789, +1136, 244, 1899, +1486, 428, 2028, +1434, 725, 2178, +265, 1128, 2349, +1407, 662, 2470, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +0, 552, 0, +0, 549, 0, +0, 545, 0, +0, 540, 0, +0, 533, 83, +0, 551, 251, +0, 575, 409, +0, 605, 559, +0, 642, 705, +0, 688, 846, +0, 742, 985, +0, 742, 1076, +0, 756, 1197, +0, 726, 1376, +0, 691, 1531, +83, 670, 1662, +591, 572, 1794, +1152, 422, 1905, +1450, 560, 2036, +1374, 862, 2187, +186, 1169, 2352, +1464, 691, 2470, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +0, 686, 0, +0, 684, 0, +0, 681, 0, +0, 677, 0, +0, 672, 83, +0, 686, 251, +0, 703, 409, +0, 726, 559, +0, 755, 705, +0, 791, 846, +0, 835, 985, +0, 887, 1123, +0, 898, 1233, +0, 876, 1401, +0, 823, 1548, +83, 808, 1675, +591, 737, 1800, +1179, 593, 1913, +1396, 692, 2046, +1279, 997, 2199, +0, 1212, 2357, +1529, 728, 2470, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +0, 854, 85, +0, 854, 130, +0, 852, 185, +0, 850, 248, +0, 846, 322, +0, 855, 429, +0, 868, 541, +0, 884, 658, +0, 904, 778, +0, 930, 901, +0, 963, 1027, +0, 1003, 1154, +69, 1044, 1282, +0, 1029, 1435, +0, 983, 1573, +141, 963, 1697, +601, 928, 1815, +1197, 800, 1927, +1320, 849, 2058, +1133, 1133, 2212, +0, 1254, 2365, +1592, 800, 2470, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +136, 1175, 1014, +107, 1175, 1020, +65, 1175, 1028, +1, 1175, 1038, +0, 1175, 1052, +0, 1175, 1064, +0, 1175, 1080, +0, 1175, 1099, +0, 1175, 1125, +0, 1180, 1168, +0, 1200, 1242, +0, 1224, 1325, +21, 1250, 1417, +153, 1233, 1497, +153, 1204, 1620, +214, 1214, 1743, +666, 1191, 1855, +1071, 1137, 1962, +1243, 1131, 2080, +1031, 1271, 2226, +622, 1305, 2371, +1594, 1025, 2471, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +1769, 1134, 2512, +136, 1416, 1371, +107, 1416, 1374, +65, 1416, 1378, +1, 1416, 1383, +0, 1416, 1389, +0, 1416, 1395, +0, 1416, 1402, +0, 1416, 1412, +0, 1416, 1425, +0, 1416, 1442, +0, 1416, 1463, +0, 1416, 1491, +21, 1427, 1546, +153, 1415, 1608, +153, 1396, 1676, +214, 1407, 1788, +666, 1407, 1897, +1078, 1356, 2001, +1151, 1350, 2109, +878, 1405, 2241, +770, 1382, 2378, +1607, 1205, 2473, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +1802, 1306, 2510, +973, 1576, 1651, +973, 1576, 1652, +971, 1577, 1653, +969, 1577, 1654, +966, 1578, 1656, +966, 1577, 1659, +966, 1576, 1664, +966, 1574, 1669, +966, 1572, 1677, +966, 1569, 1686, +966, 1567, 1699, +966, 1567, 1716, +948, 1567, 1737, +920, 1575, 1786, +920, 1568, 1836, +932, 1552, 1890, +876, 1557, 1972, +968, 1536, 2066, +965, 1537, 2170, +810, 1526, 2268, +1145, 1498, 2382, +1680, 1435, 2473, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1844, 1469, 2509, +1457, 1704, 1855, +1456, 1704, 1856, +1454, 1705, 1857, +1452, 1705, 1858, +1449, 1705, 1860, +1446, 1705, 1862, +1443, 1705, 1865, +1438, 1705, 1868, +1432, 1705, 1873, +1431, 1703, 1880, +1431, 1700, 1888, +1431, 1696, 1899, +1428, 1691, 1913, +1405, 1685, 1932, +1405, 1696, 1977, +1373, 1700, 2021, +1378, 1686, 2063, +1214, 1672, 2128, +1142, 1679, 2221, +1192, 1647, 2295, +1522, 1633, 2386, +1779, 1634, 2475, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1895, 1627, 2511, +1790, 1816, 1977, +1790, 1816, 1978, +1789, 1816, 1978, +1789, 1816, 1979, +1788, 1816, 1981, +1788, 1816, 1982, +1789, 1816, 1983, +1790, 1816, 1986, +1792, 1816, 1988, +1793, 1816, 1992, +1790, 1816, 1998, +1783, 1816, 2007, +1773, 1817, 2018, +1755, 1823, 2036, +1736, 1817, 2051, +1731, 1804, 2079, +1691, 1816, 2124, +1708, 1807, 2166, +1659, 1793, 2234, +1670, 1794, 2305, +1757, 1797, 2389, +1873, 1789, 2475, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1966, 1800, 2514, +1960, 1958, 2029, +1960, 1958, 2029, +1959, 1958, 2030, +1959, 1958, 2030, +1958, 1958, 2031, +1958, 1958, 2032, +1957, 1958, 2034, +1956, 1958, 2035, +1956, 1958, 2038, +1954, 1958, 2041, +1952, 1958, 2046, +1950, 1958, 2051, +1947, 1958, 2059, +1942, 1961, 2068, +1936, 1967, 2081, +1928, 1969, 2113, +1916, 1966, 2154, +1905, 1962, 2189, +1920, 1968, 2242, +1884, 1968, 2319, +1930, 1954, 2392, +2036, 1964, 2481, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2096, 1968, 2516, +2120, 2120, 2068, +2120, 2120, 2068, +2120, 2120, 2069, +2120, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2070, +2121, 2120, 2071, +2121, 2121, 2073, +2121, 2122, 2075, +2121, 2122, 2078, +2121, 2124, 2082, +2121, 2125, 2087, +2120, 2127, 2094, +2119, 2127, 2101, +2119, 2127, 2110, +2116, 2131, 2132, +2110, 2134, 2165, +2104, 2130, 2206, +2111, 2134, 2256, +2120, 2134, 2316, +2148, 2131, 2395, +2213, 2146, 2485, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2370, 2356, 2126, +2369, 2356, 2127, +2369, 2356, 2129, +2369, 2357, 2131, +2368, 2357, 2133, +2368, 2359, 2137, +2369, 2360, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2369, 2358, 2162, +2371, 2358, 2193, +2370, 2358, 2226, +2372, 2356, 2273, +2384, 2357, 2337, +2410, 2367, 2406, +2466, 2384, 2498, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2655, 1967, +2681, 2655, 1968, +2681, 2655, 1969, +2681, 2655, 1970, +2681, 2655, 1969, +2681, 2654, 1968, +2680, 2654, 1966, +2680, 2653, 1964, +2679, 2653, 1964, +2678, 2654, 1975, +2677, 2655, 1997, +2676, 2654, 2018, +2675, 2650, 2038, +2677, 2655, 2123, +2681, 2656, 2208, +2687, 2661, 2306, +2695, 2666, 2409, +2715, 2678, 2527, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2456, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +197, 0, 0, +197, 0, 0, +197, 0, 0, +197, 0, 0, +197, 0, 28, +197, 0, 152, +197, 0, 280, +197, 0, 408, +197, 0, 537, +197, 0, 667, +197, 0, 797, +197, 0, 928, +71, 0, 1088, +0, 0, 1312, +0, 0, 1486, +152, 0, 1634, +638, 0, 1775, +1174, 0, 1884, +1561, 0, 2008, +1552, 0, 2159, +394, 987, 2341, +1252, 597, 2470, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +184, 0, 0, +190, 0, 0, +190, 0, 0, +190, 0, 0, +190, 0, 36, +190, 0, 159, +190, 0, 285, +190, 0, 412, +190, 0, 540, +190, 0, 669, +190, 0, 799, +190, 0, 930, +46, 0, 1089, +0, 0, 1313, +0, 0, 1486, +159, 0, 1635, +626, 0, 1775, +1173, 0, 1885, +1561, 0, 2008, +1551, 0, 2159, +394, 992, 2341, +1257, 599, 2470, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +167, 0, 0, +173, 0, 0, +182, 0, 0, +182, 0, 0, +182, 0, 48, +182, 0, 168, +182, 0, 291, +182, 0, 417, +182, 0, 544, +182, 0, 672, +182, 0, 801, +182, 0, 931, +35, 0, 1090, +0, 0, 1313, +0, 0, 1487, +168, 0, 1635, +609, 0, 1775, +1172, 0, 1885, +1560, 0, 2009, +1549, 0, 2159, +394, 998, 2341, +1262, 603, 2470, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +142, 0, 0, +149, 0, 0, +158, 0, 0, +170, 0, 0, +170, 0, 63, +170, 0, 180, +170, 0, 300, +170, 0, 424, +170, 0, 549, +170, 0, 676, +170, 0, 804, +170, 0, 933, +19, 0, 1091, +0, 0, 1315, +0, 0, 1487, +180, 0, 1636, +586, 0, 1774, +1171, 0, 1886, +1560, 0, 2010, +1547, 0, 2159, +394, 1005, 2342, +1270, 608, 2470, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +1734, 0, 2503, +107, 0, 0, +115, 0, 0, +125, 0, 0, +138, 0, 0, +154, 0, 83, +154, 0, 195, +154, 0, 312, +154, 0, 433, +154, 0, 556, +154, 0, 681, +154, 0, 808, +154, 0, 936, +0, 0, 1093, +0, 0, 1316, +0, 0, 1489, +195, 0, 1637, +552, 0, 1774, +1169, 0, 1886, +1559, 0, 2011, +1544, 57, 2160, +394, 1015, 2342, +1279, 613, 2470, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +1733, 0, 2503, +56, 0, 0, +65, 0, 0, +76, 0, 0, +90, 0, 0, +108, 0, 83, +132, 0, 215, +132, 0, 327, +132, 0, 444, +132, 0, 564, +132, 0, 688, +132, 0, 813, +132, 0, 940, +0, 0, 1096, +0, 30, 1317, +0, 30, 1490, +215, 0, 1639, +504, 0, 1773, +1167, 0, 1887, +1558, 0, 2012, +1540, 132, 2160, +394, 1028, 2343, +1292, 621, 2470, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +1732, 30, 2504, +56, 4, 0, +65, 0, 0, +76, 0, 0, +90, 0, 0, +108, 0, 83, +132, 0, 215, +132, 0, 383, +132, 0, 488, +132, 0, 599, +132, 0, 714, +132, 0, 833, +132, 0, 955, +0, 64, 1107, +0, 163, 1324, +0, 163, 1494, +215, 68, 1641, +530, 0, 1776, +1164, 0, 1889, +1548, 32, 2015, +1525, 286, 2163, +376, 1045, 2344, +1308, 621, 2470, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +56, 144, 0, +65, 137, 0, +76, 127, 0, +90, 114, 0, +108, 96, 83, +132, 70, 215, +132, 135, 383, +132, 210, 541, +132, 210, 641, +132, 210, 747, +132, 210, 859, +132, 210, 975, +0, 255, 1121, +0, 295, 1333, +0, 295, 1500, +215, 226, 1644, +563, 0, 1779, +1159, 0, 1892, +1536, 164, 2018, +1506, 434, 2167, +352, 1066, 2345, +1329, 621, 2470, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +56, 281, 0, +65, 276, 0, +76, 269, 0, +90, 259, 0, +108, 246, 83, +132, 227, 215, +132, 275, 383, +132, 331, 541, +132, 397, 691, +132, 397, 787, +132, 397, 891, +132, 397, 1000, +0, 427, 1139, +0, 426, 1344, +0, 426, 1508, +215, 376, 1648, +604, 147, 1783, +1154, 111, 1895, +1518, 296, 2022, +1478, 578, 2172, +317, 1093, 2347, +1367, 639, 2470, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +56, 417, 0, +65, 413, 0, +76, 408, 0, +90, 401, 0, +108, 391, 83, +132, 378, 215, +132, 412, 383, +132, 455, 541, +132, 505, 691, +132, 566, 837, +132, 566, 930, +132, 566, 1032, +0, 587, 1163, +0, 570, 1359, +0, 559, 1519, +215, 522, 1653, +607, 365, 1787, +1146, 244, 1900, +1493, 428, 2028, +1438, 719, 2178, +265, 1128, 2349, +1413, 662, 2470, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +56, 552, 0, +65, 549, 0, +76, 545, 0, +90, 540, 0, +108, 533, 83, +132, 523, 215, +132, 548, 383, +132, 580, 541, +132, 619, 691, +132, 667, 837, +132, 723, 978, +132, 723, 1071, +0, 738, 1192, +0, 726, 1379, +0, 691, 1532, +215, 663, 1662, +607, 554, 1792, +1162, 422, 1905, +1457, 560, 2036, +1379, 857, 2187, +186, 1169, 2352, +1468, 691, 2470, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +56, 686, 0, +65, 684, 0, +76, 681, 0, +90, 677, 0, +108, 672, 83, +132, 665, 215, +132, 684, 383, +132, 708, 541, +132, 737, 691, +132, 774, 837, +132, 820, 978, +132, 874, 1118, +0, 885, 1229, +0, 876, 1403, +0, 823, 1550, +215, 803, 1675, +607, 725, 1799, +1188, 593, 1913, +1404, 692, 2046, +1285, 994, 2199, +0, 1212, 2357, +1533, 728, 2470, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +63, 854, 85, +31, 854, 130, +43, 852, 185, +58, 850, 248, +78, 846, 322, +103, 841, 404, +103, 854, 522, +103, 870, 643, +103, 892, 767, +103, 918, 893, +103, 952, 1020, +103, 993, 1149, +185, 1035, 1278, +0, 1029, 1438, +0, 983, 1575, +259, 959, 1697, +617, 920, 1814, +1206, 800, 1927, +1329, 849, 2058, +1141, 1131, 2212, +0, 1254, 2365, +1596, 800, 2470, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +289, 1170, 1007, +268, 1170, 1013, +239, 1170, 1021, +196, 1170, 1032, +132, 1170, 1046, +30, 1170, 1064, +30, 1170, 1080, +30, 1170, 1099, +30, 1170, 1125, +30, 1176, 1168, +30, 1195, 1242, +30, 1220, 1325, +125, 1246, 1417, +285, 1231, 1499, +285, 1202, 1622, +345, 1210, 1744, +680, 1193, 1856, +1086, 1139, 1963, +1243, 1131, 2080, +1031, 1271, 2226, +681, 1302, 2370, +1597, 1022, 2471, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +1771, 1129, 2512, +289, 1413, 1368, +268, 1413, 1371, +239, 1413, 1375, +196, 1413, 1380, +132, 1413, 1386, +30, 1413, 1395, +30, 1413, 1402, +30, 1413, 1412, +30, 1413, 1425, +30, 1413, 1442, +30, 1413, 1463, +30, 1413, 1491, +125, 1424, 1546, +285, 1414, 1610, +285, 1395, 1677, +345, 1404, 1789, +680, 1408, 1897, +1092, 1358, 2001, +1151, 1350, 2109, +878, 1405, 2241, +813, 1379, 2377, +1609, 1202, 2473, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1804, 1303, 2510, +1005, 1574, 1653, +1004, 1574, 1654, +1003, 1575, 1655, +1001, 1575, 1656, +998, 1576, 1658, +995, 1577, 1660, +995, 1576, 1664, +995, 1574, 1670, +995, 1572, 1678, +995, 1569, 1687, +995, 1567, 1700, +995, 1567, 1716, +977, 1567, 1738, +937, 1574, 1785, +937, 1567, 1835, +952, 1552, 1890, +906, 1557, 1973, +989, 1536, 2066, +976, 1537, 2170, +810, 1527, 2268, +1155, 1497, 2382, +1680, 1435, 2473, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1844, 1468, 2509, +1461, 1703, 1854, +1459, 1704, 1855, +1458, 1704, 1856, +1456, 1704, 1858, +1453, 1705, 1859, +1449, 1705, 1862, +1446, 1705, 1865, +1441, 1705, 1868, +1435, 1705, 1873, +1434, 1703, 1880, +1434, 1700, 1888, +1434, 1696, 1899, +1431, 1691, 1913, +1408, 1685, 1932, +1408, 1696, 1977, +1375, 1699, 2021, +1380, 1687, 2064, +1224, 1672, 2127, +1149, 1680, 2221, +1200, 1647, 2295, +1523, 1633, 2386, +1781, 1634, 2475, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1896, 1626, 2511, +1793, 1816, 1977, +1792, 1816, 1977, +1792, 1816, 1978, +1791, 1816, 1979, +1790, 1816, 1980, +1789, 1816, 1982, +1790, 1816, 1983, +1791, 1816, 1986, +1792, 1816, 1988, +1794, 1816, 1992, +1790, 1816, 1998, +1783, 1816, 2007, +1774, 1817, 2018, +1756, 1822, 2035, +1737, 1817, 2051, +1733, 1804, 2079, +1694, 1816, 2124, +1710, 1807, 2166, +1660, 1793, 2234, +1673, 1795, 2305, +1759, 1797, 2389, +1873, 1788, 2475, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1968, 1800, 2514, +1961, 1958, 2029, +1961, 1958, 2030, +1961, 1958, 2030, +1960, 1958, 2031, +1959, 1958, 2031, +1959, 1958, 2032, +1958, 1958, 2034, +1958, 1958, 2036, +1956, 1958, 2038, +1955, 1958, 2042, +1953, 1958, 2046, +1951, 1958, 2052, +1948, 1958, 2059, +1943, 1961, 2068, +1937, 1966, 2081, +1930, 1968, 2112, +1918, 1966, 2154, +1905, 1962, 2189, +1920, 1968, 2242, +1885, 1967, 2319, +1930, 1954, 2392, +2038, 1964, 2481, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2097, 1968, 2516, +2120, 2120, 2069, +2120, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2071, +2121, 2121, 2073, +2121, 2122, 2075, +2121, 2122, 2078, +2121, 2124, 2082, +2121, 2125, 2087, +2120, 2127, 2094, +2119, 2127, 2101, +2119, 2127, 2110, +2117, 2131, 2132, +2111, 2134, 2166, +2105, 2130, 2206, +2111, 2134, 2255, +2121, 2134, 2316, +2148, 2131, 2396, +2213, 2146, 2485, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2370, 2355, 2126, +2370, 2356, 2127, +2369, 2356, 2129, +2369, 2357, 2131, +2368, 2357, 2133, +2369, 2358, 2137, +2369, 2359, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2369, 2358, 2162, +2371, 2358, 2193, +2370, 2358, 2226, +2373, 2356, 2273, +2385, 2357, 2337, +2411, 2367, 2406, +2466, 2384, 2498, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2655, 1967, +2681, 2655, 1969, +2681, 2655, 1970, +2681, 2655, 1971, +2681, 2655, 1970, +2681, 2655, 1969, +2680, 2654, 1968, +2680, 2654, 1965, +2679, 2653, 1966, +2679, 2654, 1979, +2677, 2655, 2000, +2676, 2654, 2020, +2675, 2650, 2041, +2677, 2655, 2122, +2681, 2656, 2208, +2688, 2661, 2306, +2695, 2666, 2408, +2715, 2678, 2527, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2723, 2684, 2575, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2457, +2710, 2773, 2483, +2714, 2774, 2520, +2714, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +333, 0, 0, +333, 0, 0, +333, 0, 0, +333, 0, 0, +333, 0, 28, +333, 0, 152, +333, 0, 280, +333, 0, 408, +333, 0, 537, +333, 0, 667, +333, 0, 797, +333, 0, 928, +244, 0, 1088, +0, 0, 1321, +0, 0, 1492, +280, 0, 1634, +721, 0, 1777, +1186, 0, 1886, +1561, 0, 2009, +1548, 0, 2161, +376, 987, 2341, +1263, 586, 2469, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +324, 0, 0, +329, 0, 0, +329, 0, 0, +329, 0, 0, +329, 0, 36, +329, 0, 159, +329, 0, 285, +329, 0, 412, +329, 0, 540, +329, 0, 669, +329, 0, 799, +329, 0, 930, +227, 0, 1089, +0, 0, 1322, +0, 0, 1493, +285, 0, 1635, +711, 0, 1776, +1185, 0, 1886, +1561, 0, 2009, +1547, 0, 2161, +376, 992, 2341, +1267, 588, 2469, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +311, 0, 0, +316, 0, 0, +322, 0, 0, +322, 0, 0, +322, 0, 48, +322, 0, 168, +322, 0, 291, +322, 0, 417, +322, 0, 544, +322, 0, 672, +322, 0, 801, +322, 0, 931, +219, 0, 1090, +0, 0, 1323, +0, 0, 1493, +291, 0, 1635, +697, 0, 1776, +1184, 0, 1886, +1560, 0, 2010, +1545, 22, 2161, +376, 998, 2341, +1272, 592, 2469, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +294, 0, 0, +299, 0, 0, +305, 0, 0, +314, 0, 0, +314, 0, 63, +314, 0, 180, +314, 0, 300, +314, 0, 424, +314, 0, 549, +314, 0, 676, +314, 0, 804, +314, 0, 933, +209, 0, 1091, +0, 0, 1323, +0, 0, 1494, +300, 0, 1636, +678, 0, 1776, +1183, 0, 1887, +1560, 0, 2011, +1543, 69, 2161, +376, 1005, 2342, +1280, 596, 2469, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +1735, 0, 2503, +269, 0, 0, +274, 0, 0, +281, 0, 0, +290, 0, 0, +302, 0, 83, +302, 0, 195, +302, 0, 312, +302, 0, 433, +302, 0, 556, +302, 0, 681, +302, 0, 808, +302, 0, 936, +194, 0, 1093, +0, 0, 1325, +0, 0, 1495, +312, 0, 1637, +651, 0, 1776, +1181, 0, 1887, +1559, 0, 2012, +1540, 124, 2162, +376, 1015, 2342, +1289, 603, 2469, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +1734, 0, 2504, +234, 0, 0, +239, 0, 0, +247, 0, 0, +257, 0, 0, +270, 0, 83, +286, 0, 215, +286, 0, 327, +286, 0, 444, +286, 0, 564, +286, 0, 688, +286, 0, 813, +286, 0, 940, +173, 0, 1096, +0, 30, 1326, +0, 30, 1496, +327, 0, 1639, +613, 0, 1775, +1179, 0, 1888, +1558, 0, 2013, +1535, 189, 2162, +376, 1028, 2343, +1301, 611, 2469, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +1733, 30, 2504, +182, 4, 0, +188, 0, 0, +197, 0, 0, +208, 0, 0, +222, 0, 83, +241, 0, 215, +264, 0, 347, +264, 0, 459, +264, 0, 576, +264, 0, 697, +264, 0, 820, +264, 0, 946, +145, 0, 1100, +0, 163, 1329, +0, 163, 1497, +347, 32, 1641, +555, 0, 1774, +1176, 0, 1890, +1557, 32, 2015, +1530, 264, 2163, +376, 1045, 2344, +1318, 621, 2469, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +1732, 163, 2504, +182, 144, 0, +188, 137, 0, +197, 127, 0, +208, 114, 0, +222, 96, 83, +241, 70, 215, +264, 34, 347, +264, 126, 516, +264, 126, 620, +264, 126, 731, +264, 126, 846, +264, 126, 966, +145, 179, 1114, +0, 295, 1337, +0, 295, 1503, +347, 201, 1644, +586, 0, 1777, +1172, 0, 1892, +1544, 164, 2019, +1510, 418, 2167, +352, 1066, 2345, +1338, 621, 2469, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +182, 281, 0, +188, 276, 0, +197, 269, 0, +208, 259, 0, +222, 246, 83, +241, 227, 215, +264, 202, 347, +264, 267, 516, +264, 342, 673, +264, 342, 773, +264, 342, 879, +264, 342, 991, +145, 376, 1133, +0, 426, 1349, +0, 426, 1511, +347, 358, 1648, +625, 84, 1782, +1166, 111, 1896, +1526, 296, 2023, +1483, 566, 2172, +317, 1093, 2347, +1375, 639, 2469, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +182, 417, 0, +188, 413, 0, +197, 408, 0, +208, 401, 0, +222, 391, 83, +241, 378, 215, +264, 360, 347, +264, 407, 516, +264, 463, 673, +264, 529, 824, +264, 529, 920, +264, 529, 1023, +145, 552, 1156, +0, 570, 1364, +0, 559, 1522, +347, 509, 1653, +628, 326, 1786, +1159, 244, 1900, +1502, 428, 2029, +1443, 710, 2178, +265, 1128, 2349, +1420, 662, 2469, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +182, 552, 0, +188, 549, 0, +197, 545, 0, +208, 540, 0, +222, 533, 83, +241, 523, 215, +264, 510, 347, +264, 544, 516, +264, 586, 673, +264, 637, 824, +264, 698, 969, +264, 698, 1063, +145, 714, 1186, +0, 726, 1383, +0, 691, 1535, +347, 654, 1662, +628, 529, 1791, +1174, 422, 1906, +1467, 560, 2036, +1385, 851, 2187, +186, 1169, 2352, +1475, 691, 2469, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +182, 686, 0, +188, 684, 0, +197, 681, 0, +208, 677, 0, +222, 672, 83, +241, 665, 215, +264, 655, 347, +264, 681, 516, +264, 712, 673, +264, 752, 824, +264, 799, 969, +264, 856, 1111, +145, 867, 1223, +0, 876, 1407, +0, 823, 1553, +347, 796, 1675, +628, 708, 1798, +1200, 593, 1914, +1415, 692, 2046, +1292, 989, 2199, +0, 1212, 2357, +1539, 728, 2469, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +187, 854, 85, +163, 854, 130, +172, 852, 185, +183, 850, 248, +198, 846, 322, +218, 841, 404, +243, 835, 496, +243, 852, 623, +243, 874, 752, +243, 902, 881, +243, 936, 1011, +243, 979, 1142, +304, 1023, 1273, +0, 1029, 1441, +0, 983, 1578, +380, 954, 1697, +638, 909, 1812, +1217, 800, 1928, +1343, 849, 2058, +1151, 1127, 2212, +0, 1254, 2365, +1600, 800, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +436, 1164, 998, +421, 1164, 1004, +400, 1164, 1013, +371, 1164, 1024, +328, 1164, 1038, +265, 1164, 1056, +163, 1164, 1080, +163, 1164, 1099, +163, 1164, 1125, +163, 1170, 1168, +163, 1189, 1242, +163, 1214, 1325, +235, 1241, 1417, +417, 1228, 1503, +417, 1199, 1624, +478, 1204, 1746, +698, 1196, 1857, +1104, 1142, 1964, +1243, 1131, 2079, +1031, 1271, 2226, +750, 1297, 2370, +1600, 1018, 2470, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +1773, 1121, 2512, +436, 1410, 1364, +421, 1410, 1367, +400, 1410, 1371, +371, 1410, 1376, +328, 1410, 1382, +265, 1410, 1391, +163, 1410, 1402, +163, 1410, 1412, +163, 1410, 1425, +163, 1410, 1442, +163, 1410, 1463, +163, 1410, 1491, +235, 1421, 1546, +417, 1412, 1612, +417, 1393, 1679, +478, 1400, 1791, +698, 1410, 1897, +1111, 1360, 2002, +1151, 1350, 2108, +878, 1405, 2242, +865, 1375, 2377, +1613, 1200, 2472, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1806, 1298, 2510, +1044, 1572, 1655, +1043, 1572, 1656, +1042, 1572, 1657, +1040, 1573, 1658, +1038, 1573, 1660, +1034, 1574, 1662, +1030, 1576, 1666, +1030, 1574, 1671, +1030, 1572, 1679, +1030, 1569, 1688, +1030, 1567, 1701, +1030, 1567, 1717, +1014, 1567, 1739, +958, 1573, 1783, +958, 1565, 1833, +977, 1552, 1891, +944, 1557, 1974, +1016, 1536, 2066, +990, 1537, 2170, +810, 1528, 2268, +1168, 1496, 2382, +1680, 1435, 2473, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1843, 1466, 2509, +1466, 1702, 1854, +1464, 1703, 1855, +1463, 1703, 1855, +1461, 1703, 1857, +1458, 1704, 1859, +1454, 1705, 1862, +1449, 1705, 1865, +1444, 1705, 1868, +1438, 1705, 1873, +1438, 1703, 1880, +1438, 1700, 1888, +1438, 1696, 1899, +1434, 1691, 1913, +1412, 1685, 1932, +1412, 1696, 1978, +1377, 1698, 2020, +1384, 1688, 2065, +1238, 1672, 2127, +1159, 1681, 2221, +1212, 1647, 2296, +1524, 1635, 2386, +1783, 1634, 2474, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1897, 1625, 2511, +1796, 1815, 1977, +1795, 1815, 1977, +1795, 1815, 1978, +1794, 1815, 1978, +1793, 1815, 1980, +1792, 1815, 1981, +1790, 1815, 1983, +1792, 1815, 1986, +1793, 1815, 1988, +1795, 1815, 1992, +1791, 1815, 1998, +1784, 1815, 2007, +1775, 1816, 2018, +1758, 1821, 2035, +1739, 1816, 2051, +1736, 1805, 2078, +1698, 1816, 2124, +1712, 1806, 2166, +1661, 1793, 2234, +1677, 1795, 2305, +1762, 1797, 2390, +1872, 1787, 2475, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1969, 1800, 2514, +1963, 1958, 2030, +1962, 1958, 2030, +1962, 1958, 2031, +1962, 1958, 2031, +1961, 1958, 2032, +1960, 1958, 2033, +1959, 1958, 2034, +1958, 1958, 2036, +1958, 1958, 2039, +1956, 1958, 2042, +1955, 1958, 2047, +1952, 1958, 2052, +1949, 1958, 2059, +1943, 1961, 2068, +1937, 1966, 2081, +1930, 1968, 2111, +1921, 1967, 2155, +1905, 1961, 2189, +1920, 1967, 2241, +1887, 1967, 2319, +1931, 1954, 2392, +2040, 1964, 2481, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2099, 1967, 2516, +2121, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2069, +2121, 2120, 2070, +2122, 2120, 2070, +2122, 2120, 2070, +2122, 2121, 2072, +2122, 2122, 2074, +2122, 2122, 2078, +2122, 2124, 2082, +2122, 2125, 2087, +2121, 2127, 2094, +2119, 2127, 2101, +2119, 2127, 2110, +2118, 2131, 2131, +2112, 2134, 2166, +2105, 2129, 2205, +2112, 2134, 2255, +2122, 2134, 2316, +2148, 2132, 2396, +2214, 2146, 2485, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2261, 2159, 2523, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2371, 2355, 2126, +2370, 2356, 2127, +2370, 2356, 2129, +2369, 2357, 2131, +2369, 2357, 2133, +2369, 2358, 2137, +2370, 2359, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2369, 2358, 2162, +2372, 2358, 2193, +2371, 2358, 2226, +2374, 2356, 2273, +2386, 2358, 2337, +2411, 2367, 2406, +2465, 2384, 2499, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2655, 1967, +2681, 2655, 1969, +2681, 2656, 1972, +2681, 2656, 1973, +2681, 2655, 1972, +2681, 2655, 1971, +2680, 2655, 1969, +2680, 2654, 1967, +2679, 2654, 1967, +2679, 2655, 1983, +2677, 2656, 2005, +2677, 2654, 2023, +2675, 2651, 2045, +2677, 2655, 2122, +2681, 2656, 2208, +2688, 2660, 2305, +2695, 2666, 2408, +2715, 2678, 2527, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2458, +2710, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +469, 0, 0, +469, 0, 0, +469, 0, 0, +469, 0, 0, +469, 0, 28, +469, 0, 152, +469, 0, 280, +469, 0, 408, +469, 0, 537, +469, 0, 667, +469, 0, 797, +469, 0, 928, +404, 0, 1088, +100, 0, 1333, +100, 0, 1501, +408, 0, 1634, +813, 0, 1779, +1202, 0, 1887, +1561, 0, 2010, +1542, 61, 2164, +352, 987, 2341, +1276, 570, 2469, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +1737, 0, 2503, +462, 0, 0, +465, 0, 0, +465, 0, 0, +465, 0, 0, +465, 0, 36, +465, 0, 159, +465, 0, 285, +465, 0, 412, +465, 0, 540, +465, 0, 669, +465, 0, 799, +465, 0, 930, +393, 0, 1089, +76, 0, 1333, +76, 0, 1501, +412, 0, 1635, +805, 0, 1779, +1201, 0, 1887, +1561, 0, 2011, +1541, 86, 2164, +352, 992, 2341, +1280, 573, 2469, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +453, 0, 0, +456, 0, 0, +461, 0, 0, +461, 0, 0, +461, 0, 48, +461, 0, 168, +461, 0, 291, +461, 0, 417, +461, 0, 544, +461, 0, 672, +461, 0, 801, +461, 0, 931, +387, 0, 1090, +43, 0, 1334, +43, 0, 1501, +417, 0, 1635, +793, 0, 1778, +1200, 0, 1888, +1560, 0, 2011, +1539, 116, 2164, +352, 998, 2341, +1285, 577, 2469, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +1736, 0, 2503, +440, 0, 0, +444, 0, 0, +448, 0, 0, +455, 0, 0, +455, 0, 63, +455, 0, 180, +455, 0, 300, +455, 0, 424, +455, 0, 549, +455, 0, 676, +455, 0, 804, +455, 0, 933, +380, 0, 1091, +0, 0, 1335, +0, 0, 1502, +424, 0, 1636, +778, 0, 1778, +1199, 0, 1889, +1560, 0, 2012, +1537, 154, 2164, +352, 1005, 2342, +1292, 582, 2469, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +1736, 0, 2504, +422, 0, 0, +426, 0, 0, +431, 0, 0, +437, 0, 0, +446, 0, 83, +446, 0, 195, +446, 0, 312, +446, 0, 433, +446, 0, 556, +446, 0, 681, +446, 0, 808, +446, 0, 936, +370, 0, 1093, +0, 0, 1336, +0, 0, 1503, +433, 0, 1637, +757, 0, 1778, +1197, 0, 1889, +1559, 0, 2013, +1534, 201, 2165, +352, 1015, 2342, +1302, 588, 2469, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +1735, 0, 2504, +397, 0, 0, +401, 0, 0, +406, 0, 0, +413, 0, 0, +422, 0, 83, +434, 0, 215, +434, 0, 327, +434, 0, 444, +434, 0, 564, +434, 0, 688, +434, 0, 813, +434, 0, 940, +356, 0, 1096, +0, 30, 1338, +0, 30, 1504, +444, 0, 1639, +726, 0, 1777, +1195, 0, 1890, +1558, 0, 2015, +1530, 256, 2165, +352, 1028, 2343, +1314, 596, 2469, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +1735, 30, 2504, +362, 4, 0, +366, 0, 0, +371, 0, 0, +379, 0, 0, +389, 0, 83, +402, 0, 215, +418, 0, 347, +418, 0, 459, +418, 0, 576, +418, 0, 697, +418, 0, 820, +418, 0, 946, +337, 0, 1100, +0, 163, 1340, +0, 163, 1505, +459, 32, 1641, +682, 0, 1776, +1192, 0, 1891, +1557, 32, 2017, +1524, 322, 2166, +352, 1045, 2344, +1329, 607, 2469, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +1734, 163, 2504, +309, 144, 0, +314, 137, 0, +320, 127, 0, +329, 114, 0, +340, 96, 83, +354, 70, 215, +373, 34, 347, +396, 0, 479, +396, 0, 591, +396, 0, 708, +396, 0, 829, +396, 0, 952, +310, 52, 1105, +0, 295, 1343, +0, 295, 1507, +479, 164, 1644, +615, 0, 1775, +1188, 0, 1893, +1555, 164, 2019, +1516, 396, 2167, +352, 1066, 2345, +1349, 621, 2469, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +1732, 295, 2505, +309, 281, 0, +314, 276, 0, +320, 269, 0, +329, 259, 0, +340, 246, 83, +354, 227, 215, +373, 202, 347, +396, 166, 479, +396, 257, 648, +396, 257, 752, +396, 257, 863, +396, 257, 978, +310, 298, 1124, +0, 426, 1354, +0, 426, 1515, +479, 333, 1648, +652, 0, 1779, +1183, 111, 1897, +1538, 296, 2024, +1489, 550, 2172, +317, 1093, 2347, +1385, 639, 2469, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +309, 417, 0, +314, 413, 0, +320, 408, 0, +329, 401, 0, +340, 391, 83, +354, 378, 215, +373, 360, 347, +396, 334, 479, +396, 399, 648, +396, 474, 805, +396, 474, 905, +396, 474, 1011, +310, 500, 1148, +0, 570, 1369, +0, 559, 1526, +479, 490, 1653, +655, 270, 1784, +1176, 244, 1901, +1514, 428, 2029, +1450, 699, 2178, +265, 1128, 2349, +1430, 662, 2469, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +309, 552, 0, +314, 549, 0, +320, 545, 0, +329, 540, 0, +340, 533, 83, +354, 523, 215, +373, 510, 347, +396, 492, 479, +396, 539, 648, +396, 595, 805, +396, 661, 955, +396, 661, 1052, +310, 678, 1178, +0, 726, 1388, +0, 691, 1539, +479, 640, 1662, +655, 494, 1789, +1191, 422, 1907, +1480, 560, 2037, +1393, 842, 2187, +186, 1169, 2352, +1483, 691, 2469, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +309, 686, 0, +314, 684, 0, +320, 681, 0, +329, 677, 0, +340, 672, 83, +354, 665, 215, +373, 655, 347, +396, 643, 479, +396, 677, 648, +396, 719, 805, +396, 770, 955, +396, 830, 1101, +310, 842, 1216, +0, 876, 1412, +0, 823, 1557, +479, 786, 1675, +655, 684, 1796, +1216, 593, 1915, +1430, 692, 2047, +1302, 983, 2199, +0, 1212, 2357, +1546, 728, 2469, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +313, 854, 85, +295, 854, 130, +302, 852, 185, +310, 850, 248, +322, 846, 322, +336, 841, 404, +356, 835, 496, +380, 826, 594, +380, 849, 730, +380, 878, 865, +380, 915, 1000, +380, 960, 1133, +426, 1005, 1267, +0, 1029, 1446, +0, 983, 1581, +504, 947, 1697, +664, 894, 1810, +1232, 800, 1928, +1359, 849, 2059, +1164, 1123, 2212, +0, 1254, 2365, +1607, 800, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +579, 1156, 985, +568, 1156, 992, +553, 1156, 1001, +532, 1156, 1012, +503, 1156, 1027, +461, 1156, 1045, +397, 1156, 1069, +295, 1156, 1099, +295, 1156, 1125, +295, 1161, 1168, +295, 1181, 1242, +295, 1207, 1325, +350, 1233, 1417, +549, 1224, 1507, +549, 1195, 1627, +610, 1196, 1748, +721, 1200, 1858, +1128, 1147, 1966, +1243, 1131, 2078, +1031, 1271, 2227, +827, 1290, 2369, +1605, 1012, 2470, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +1776, 1112, 2512, +579, 1405, 1359, +568, 1405, 1361, +553, 1405, 1365, +532, 1405, 1370, +503, 1405, 1377, +461, 1405, 1386, +397, 1405, 1397, +295, 1405, 1412, +295, 1405, 1425, +295, 1405, 1442, +295, 1405, 1463, +295, 1405, 1491, +350, 1416, 1546, +549, 1410, 1615, +549, 1390, 1682, +610, 1395, 1793, +721, 1413, 1898, +1134, 1362, 2004, +1151, 1350, 2108, +878, 1405, 2243, +927, 1369, 2376, +1617, 1196, 2472, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1809, 1292, 2510, +1091, 1568, 1658, +1091, 1569, 1659, +1089, 1569, 1660, +1088, 1569, 1661, +1086, 1570, 1663, +1083, 1571, 1665, +1079, 1572, 1668, +1074, 1574, 1673, +1074, 1572, 1680, +1074, 1569, 1690, +1074, 1567, 1702, +1074, 1567, 1718, +1060, 1567, 1740, +984, 1571, 1781, +984, 1563, 1832, +1008, 1552, 1891, +990, 1557, 1977, +1050, 1536, 2065, +1008, 1537, 2170, +810, 1530, 2268, +1184, 1494, 2382, +1680, 1435, 2473, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1842, 1464, 2509, +1472, 1701, 1853, +1471, 1701, 1854, +1469, 1702, 1855, +1467, 1702, 1856, +1464, 1703, 1858, +1461, 1703, 1861, +1456, 1704, 1864, +1449, 1705, 1868, +1443, 1705, 1873, +1442, 1703, 1880, +1442, 1700, 1888, +1442, 1696, 1899, +1439, 1691, 1913, +1417, 1685, 1933, +1417, 1696, 1979, +1379, 1697, 2020, +1390, 1690, 2066, +1256, 1672, 2126, +1172, 1682, 2221, +1227, 1647, 2296, +1526, 1636, 2386, +1786, 1634, 2474, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1899, 1624, 2511, +1800, 1814, 1976, +1800, 1814, 1976, +1799, 1814, 1977, +1799, 1814, 1978, +1797, 1814, 1979, +1796, 1814, 1981, +1795, 1814, 1983, +1793, 1814, 1986, +1794, 1814, 1988, +1796, 1814, 1992, +1792, 1814, 1998, +1785, 1814, 2007, +1776, 1815, 2018, +1760, 1821, 2034, +1741, 1815, 2050, +1739, 1806, 2078, +1704, 1816, 2125, +1714, 1805, 2166, +1662, 1793, 2234, +1683, 1796, 2305, +1765, 1797, 2390, +1871, 1786, 2475, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1971, 1800, 2514, +1965, 1958, 2031, +1965, 1958, 2031, +1964, 1958, 2031, +1964, 1958, 2032, +1963, 1958, 2032, +1962, 1958, 2034, +1961, 1958, 2035, +1960, 1958, 2037, +1959, 1958, 2039, +1958, 1958, 2042, +1956, 1958, 2047, +1953, 1958, 2053, +1951, 1958, 2060, +1944, 1960, 2068, +1938, 1965, 2081, +1932, 1967, 2110, +1924, 1968, 2156, +1905, 1961, 2189, +1920, 1966, 2240, +1890, 1966, 2318, +1932, 1954, 2393, +2043, 1964, 2481, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2101, 1966, 2516, +2121, 2121, 2069, +2121, 2121, 2070, +2121, 2121, 2070, +2122, 2121, 2070, +2122, 2121, 2070, +2122, 2121, 2071, +2122, 2121, 2071, +2123, 2121, 2071, +2123, 2122, 2074, +2123, 2122, 2077, +2123, 2124, 2081, +2123, 2125, 2086, +2122, 2127, 2093, +2119, 2127, 2101, +2119, 2127, 2110, +2119, 2131, 2131, +2114, 2135, 2167, +2107, 2129, 2205, +2112, 2133, 2255, +2123, 2133, 2316, +2148, 2132, 2397, +2215, 2145, 2485, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2260, 2159, 2523, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2371, 2355, 2126, +2371, 2355, 2127, +2371, 2356, 2129, +2370, 2356, 2131, +2369, 2357, 2133, +2369, 2358, 2137, +2370, 2359, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2369, 2358, 2161, +2372, 2358, 2193, +2371, 2358, 2227, +2375, 2356, 2273, +2387, 2359, 2337, +2411, 2367, 2406, +2465, 2384, 2499, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2496, 2391, 2531, +2681, 2655, 1963, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1965, +2681, 2655, 1967, +2681, 2655, 1969, +2681, 2656, 1972, +2681, 2656, 1975, +2681, 2656, 1974, +2681, 2656, 1973, +2680, 2655, 1971, +2680, 2655, 1969, +2679, 2654, 1969, +2679, 2655, 1990, +2678, 2657, 2010, +2677, 2655, 2027, +2675, 2651, 2050, +2677, 2656, 2121, +2681, 2656, 2208, +2688, 2660, 2305, +2695, 2665, 2407, +2715, 2678, 2527, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2723, 2684, 2576, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2431, +2713, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2768, 2439, +2714, 2769, 2444, +2711, 2772, 2460, +2711, 2773, 2482, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2722, 2784, 2693, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +603, 0, 0, +603, 0, 0, +603, 0, 0, +603, 0, 0, +603, 0, 28, +603, 0, 152, +603, 0, 280, +603, 0, 408, +603, 0, 537, +603, 0, 667, +603, 0, 797, +603, 0, 928, +556, 0, 1088, +249, 0, 1348, +249, 0, 1511, +537, 0, 1634, +912, 0, 1782, +1222, 0, 1890, +1561, 0, 2012, +1535, 174, 2167, +317, 987, 2341, +1325, 528, 2469, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +598, 0, 0, +601, 0, 0, +601, 0, 0, +601, 0, 0, +601, 0, 36, +601, 0, 159, +601, 0, 285, +601, 0, 412, +601, 0, 540, +601, 0, 669, +601, 0, 799, +601, 0, 930, +548, 0, 1089, +232, 0, 1349, +232, 0, 1511, +540, 0, 1635, +906, 0, 1782, +1221, 0, 1890, +1561, 0, 2013, +1534, 193, 2167, +317, 992, 2341, +1328, 531, 2469, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +591, 0, 0, +594, 0, 0, +597, 0, 0, +597, 0, 0, +597, 0, 48, +597, 0, 168, +597, 0, 291, +597, 0, 417, +597, 0, 544, +597, 0, 672, +597, 0, 801, +597, 0, 931, +544, 0, 1090, +208, 0, 1349, +208, 0, 1512, +544, 0, 1635, +897, 0, 1781, +1221, 0, 1891, +1560, 0, 2013, +1532, 217, 2168, +317, 998, 2341, +1333, 535, 2469, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +1738, 0, 2504, +582, 0, 0, +585, 0, 0, +588, 0, 0, +593, 0, 0, +593, 0, 63, +593, 0, 180, +593, 0, 300, +593, 0, 424, +593, 0, 549, +593, 0, 676, +593, 0, 804, +593, 0, 933, +539, 0, 1091, +175, 0, 1351, +175, 0, 1512, +549, 0, 1636, +884, 0, 1781, +1220, 0, 1891, +1560, 0, 2014, +1530, 248, 2168, +317, 1005, 2342, +1339, 540, 2469, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +569, 0, 0, +572, 0, 0, +575, 0, 0, +580, 0, 0, +586, 0, 83, +586, 0, 195, +586, 0, 312, +586, 0, 433, +586, 0, 556, +586, 0, 681, +586, 0, 808, +586, 0, 936, +532, 0, 1093, +125, 0, 1352, +125, 0, 1513, +556, 0, 1637, +867, 0, 1781, +1218, 0, 1891, +1559, 0, 2015, +1526, 286, 2168, +317, 1015, 2342, +1348, 547, 2469, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +1737, 0, 2504, +551, 0, 0, +554, 0, 0, +558, 0, 0, +563, 0, 0, +569, 0, 83, +578, 0, 215, +578, 0, 327, +578, 0, 444, +578, 0, 564, +578, 0, 688, +578, 0, 813, +578, 0, 940, +522, 0, 1096, +50, 30, 1353, +50, 30, 1514, +564, 0, 1639, +844, 0, 1780, +1216, 0, 1893, +1558, 0, 2017, +1522, 333, 2169, +317, 1028, 2343, +1359, 556, 2469, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +1736, 30, 2504, +526, 4, 0, +529, 0, 0, +533, 0, 0, +538, 0, 0, +545, 0, 83, +554, 0, 215, +566, 0, 347, +566, 0, 459, +566, 0, 576, +566, 0, 697, +566, 0, 820, +566, 0, 946, +509, 0, 1100, +0, 163, 1355, +0, 163, 1516, +576, 32, 1641, +810, 0, 1779, +1213, 0, 1894, +1557, 32, 2019, +1516, 388, 2170, +317, 1045, 2344, +1373, 568, 2469, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +1735, 163, 2505, +490, 144, 0, +494, 137, 0, +498, 127, 0, +504, 114, 0, +511, 96, 83, +521, 70, 215, +534, 34, 347, +550, 0, 479, +550, 0, 591, +550, 0, 708, +550, 0, 829, +550, 0, 952, +491, 52, 1105, +0, 295, 1358, +0, 295, 1518, +591, 164, 1644, +761, 0, 1778, +1209, 0, 1896, +1555, 164, 2021, +1508, 454, 2170, +317, 1066, 2345, +1391, 584, 2469, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +1734, 295, 2505, +438, 281, 0, +441, 276, 0, +446, 269, 0, +452, 259, 0, +461, 246, 83, +472, 227, 215, +486, 202, 347, +505, 166, 479, +528, 111, 611, +528, 111, 723, +528, 111, 840, +528, 111, 961, +465, 167, 1111, +0, 426, 1362, +0, 426, 1520, +611, 296, 1648, +685, 0, 1777, +1204, 111, 1898, +1552, 296, 2024, +1498, 528, 2172, +317, 1093, 2347, +1405, 655, 2469, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +1732, 426, 2506, +438, 417, 0, +441, 413, 0, +446, 408, 0, +452, 401, 0, +461, 391, 83, +472, 378, 215, +486, 360, 347, +505, 334, 479, +528, 298, 611, +528, 390, 780, +528, 390, 884, +528, 390, 995, +465, 420, 1136, +0, 570, 1376, +0, 559, 1531, +611, 465, 1653, +688, 180, 1781, +1197, 244, 1902, +1529, 428, 2030, +1459, 683, 2178, +265, 1128, 2349, +1448, 678, 2469, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +438, 552, 0, +441, 549, 0, +446, 545, 0, +452, 540, 0, +461, 533, 83, +472, 523, 215, +486, 510, 347, +505, 492, 479, +528, 466, 611, +528, 532, 780, +528, 606, 937, +528, 606, 1037, +465, 626, 1167, +0, 726, 1395, +0, 691, 1544, +611, 622, 1662, +688, 441, 1786, +1211, 422, 1908, +1496, 560, 2038, +1403, 831, 2187, +186, 1169, 2352, +1499, 706, 2469, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +438, 686, 0, +441, 684, 0, +446, 681, 0, +452, 677, 0, +461, 672, 83, +472, 665, 215, +486, 655, 347, +505, 643, 479, +528, 624, 611, +528, 671, 780, +528, 728, 937, +528, 793, 1088, +465, 806, 1206, +0, 876, 1419, +0, 823, 1561, +611, 773, 1675, +688, 651, 1793, +1235, 593, 1916, +1448, 692, 2048, +1314, 975, 2199, +0, 1212, 2357, +1560, 742, 2469, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +441, 854, 85, +427, 854, 130, +432, 852, 185, +438, 850, 248, +447, 846, 322, +458, 841, 404, +473, 835, 496, +492, 826, 594, +516, 814, 700, +516, 845, 843, +516, 884, 983, +516, 932, 1121, +551, 980, 1257, +0, 1029, 1452, +0, 983, 1586, +630, 938, 1697, +697, 873, 1807, +1251, 800, 1930, +1381, 849, 2060, +1181, 1116, 2212, +0, 1254, 2365, +1619, 811, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +719, 1144, 968, +711, 1144, 975, +700, 1144, 984, +685, 1144, 996, +664, 1144, 1011, +635, 1144, 1030, +592, 1144, 1055, +529, 1144, 1086, +426, 1144, 1125, +426, 1150, 1168, +426, 1170, 1242, +426, 1196, 1325, +469, 1224, 1417, +681, 1219, 1512, +681, 1190, 1631, +741, 1186, 1751, +750, 1205, 1859, +1158, 1153, 1968, +1243, 1131, 2078, +1031, 1271, 2228, +914, 1282, 2369, +1608, 1020, 2470, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +1781, 1099, 2512, +719, 1398, 1351, +711, 1398, 1354, +700, 1398, 1358, +685, 1398, 1363, +664, 1398, 1370, +635, 1398, 1379, +592, 1398, 1390, +529, 1398, 1406, +426, 1398, 1425, +426, 1398, 1442, +426, 1398, 1463, +426, 1398, 1491, +469, 1409, 1546, +681, 1406, 1619, +681, 1387, 1686, +741, 1388, 1796, +750, 1416, 1900, +1164, 1366, 2006, +1151, 1350, 2107, +878, 1405, 2243, +998, 1362, 2375, +1620, 1201, 2472, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1813, 1283, 2510, +1148, 1563, 1662, +1147, 1564, 1663, +1146, 1564, 1663, +1145, 1565, 1665, +1143, 1565, 1667, +1140, 1566, 1669, +1137, 1568, 1672, +1133, 1569, 1676, +1126, 1572, 1682, +1126, 1569, 1691, +1126, 1567, 1704, +1126, 1567, 1720, +1114, 1567, 1742, +1017, 1569, 1778, +1017, 1561, 1829, +1046, 1552, 1893, +1045, 1557, 1979, +1092, 1536, 2064, +1032, 1537, 2170, +810, 1533, 2268, +1205, 1491, 2382, +1680, 1432, 2474, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1841, 1461, 2509, +1481, 1699, 1851, +1480, 1700, 1852, +1478, 1700, 1853, +1476, 1700, 1855, +1473, 1701, 1857, +1470, 1702, 1859, +1465, 1703, 1863, +1458, 1704, 1867, +1449, 1705, 1873, +1448, 1703, 1880, +1448, 1700, 1888, +1448, 1696, 1899, +1445, 1691, 1913, +1423, 1685, 1934, +1423, 1696, 1979, +1383, 1695, 2019, +1396, 1691, 2067, +1278, 1672, 2126, +1188, 1684, 2221, +1246, 1647, 2296, +1529, 1638, 2386, +1793, 1636, 2474, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1901, 1622, 2511, +1805, 1813, 1975, +1805, 1813, 1975, +1805, 1813, 1976, +1804, 1813, 1977, +1803, 1813, 1978, +1802, 1813, 1979, +1800, 1813, 1982, +1798, 1813, 1984, +1796, 1813, 1988, +1797, 1813, 1992, +1793, 1813, 1998, +1787, 1813, 2007, +1777, 1813, 2018, +1763, 1819, 2033, +1745, 1813, 2049, +1744, 1807, 2077, +1710, 1816, 2126, +1718, 1804, 2166, +1664, 1793, 2234, +1690, 1798, 2306, +1770, 1797, 2390, +1871, 1786, 2475, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1974, 1800, 2514, +1968, 1958, 2031, +1968, 1958, 2031, +1967, 1958, 2032, +1967, 1958, 2032, +1966, 1958, 2033, +1965, 1958, 2034, +1964, 1958, 2036, +1963, 1958, 2038, +1961, 1958, 2040, +1960, 1958, 2043, +1958, 1958, 2048, +1955, 1958, 2054, +1953, 1958, 2061, +1945, 1959, 2068, +1939, 1964, 2081, +1934, 1966, 2107, +1928, 1969, 2157, +1905, 1959, 2189, +1920, 1965, 2239, +1893, 1965, 2317, +1933, 1954, 2393, +2043, 1964, 2481, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2104, 1965, 2515, +2122, 2122, 2070, +2122, 2122, 2070, +2122, 2122, 2071, +2122, 2122, 2071, +2122, 2122, 2071, +2123, 2122, 2071, +2123, 2122, 2072, +2124, 2122, 2072, +2124, 2122, 2073, +2124, 2122, 2076, +2124, 2124, 2080, +2124, 2125, 2086, +2124, 2127, 2093, +2119, 2127, 2101, +2119, 2127, 2110, +2120, 2131, 2130, +2116, 2135, 2169, +2108, 2128, 2204, +2113, 2132, 2254, +2124, 2133, 2316, +2148, 2133, 2397, +2216, 2146, 2485, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2260, 2159, 2522, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2371, 2355, 2126, +2371, 2355, 2127, +2371, 2355, 2129, +2371, 2356, 2131, +2370, 2357, 2133, +2370, 2357, 2137, +2371, 2358, 2143, +2370, 2358, 2146, +2369, 2356, 2148, +2370, 2358, 2161, +2373, 2358, 2193, +2372, 2358, 2227, +2376, 2357, 2273, +2388, 2360, 2337, +2411, 2367, 2406, +2465, 2385, 2499, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2680, 2654, 1962, +2680, 2655, 1962, +2681, 2655, 1963, +2681, 2655, 1964, +2681, 2655, 1966, +2681, 2655, 1968, +2681, 2656, 1970, +2681, 2656, 1974, +2681, 2656, 1972, +2681, 2655, 1970, +2680, 2655, 1969, +2680, 2654, 1966, +2679, 2654, 1967, +2679, 2655, 1987, +2677, 2657, 2008, +2677, 2656, 2029, +2675, 2652, 2050, +2677, 2656, 2121, +2681, 2656, 2208, +2688, 2660, 2306, +2695, 2665, 2407, +2715, 2678, 2527, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2771, 2430, +2713, 2771, 2430, +2713, 2771, 2430, +2714, 2771, 2430, +2714, 2771, 2431, +2714, 2771, 2431, +2714, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2431, +2715, 2771, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2711, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2694, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +737, 0, 0, +737, 0, 0, +737, 0, 0, +737, 0, 0, +737, 0, 28, +737, 0, 152, +737, 0, 280, +737, 0, 408, +737, 0, 537, +737, 0, 667, +737, 0, 797, +737, 0, 928, +703, 0, 1088, +438, 0, 1361, +394, 0, 1525, +667, 0, 1634, +977, 0, 1782, +1248, 0, 1893, +1561, 0, 2015, +1525, 291, 2172, +265, 987, 2341, +1385, 462, 2468, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +734, 0, 0, +736, 0, 0, +736, 0, 0, +736, 0, 0, +736, 0, 36, +736, 0, 159, +736, 0, 285, +736, 0, 412, +736, 0, 540, +736, 0, 669, +736, 0, 799, +736, 0, 930, +697, 0, 1089, +427, 0, 1361, +381, 0, 1525, +669, 0, 1635, +971, 0, 1782, +1248, 0, 1893, +1561, 0, 2015, +1524, 306, 2173, +265, 992, 2341, +1388, 465, 2468, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +729, 0, 0, +730, 0, 0, +733, 0, 0, +733, 0, 0, +733, 0, 48, +733, 0, 168, +733, 0, 291, +733, 0, 417, +733, 0, 544, +733, 0, 672, +733, 0, 801, +733, 0, 931, +694, 0, 1090, +412, 0, 1362, +365, 0, 1526, +672, 0, 1635, +963, 0, 1782, +1247, 0, 1894, +1560, 0, 2016, +1522, 325, 2173, +265, 998, 2341, +1392, 470, 2468, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +1740, 0, 2504, +722, 0, 0, +723, 0, 0, +726, 0, 0, +730, 0, 0, +730, 0, 63, +730, 0, 180, +730, 0, 300, +730, 0, 424, +730, 0, 549, +730, 0, 676, +730, 0, 804, +730, 0, 933, +690, 0, 1091, +391, 0, 1363, +341, 0, 1526, +676, 0, 1636, +953, 0, 1781, +1245, 0, 1894, +1560, 0, 2017, +1519, 349, 2173, +265, 1005, 2342, +1398, 476, 2468, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +1739, 0, 2504, +712, 0, 0, +714, 0, 0, +717, 0, 0, +720, 0, 0, +725, 0, 83, +725, 0, 195, +725, 0, 312, +725, 0, 433, +725, 0, 556, +725, 0, 681, +725, 0, 808, +725, 0, 936, +685, 0, 1093, +361, 0, 1364, +307, 0, 1527, +681, 0, 1637, +939, 0, 1781, +1244, 0, 1895, +1559, 0, 2018, +1516, 380, 2173, +265, 1015, 2342, +1405, 484, 2468, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +1739, 0, 2505, +699, 0, 0, +701, 0, 0, +704, 0, 0, +708, 0, 0, +712, 0, 83, +719, 0, 215, +719, 0, 327, +719, 0, 444, +719, 0, 564, +719, 0, 688, +719, 0, 813, +719, 0, 940, +678, 0, 1096, +317, 30, 1365, +258, 30, 1528, +688, 0, 1639, +918, 0, 1780, +1242, 0, 1896, +1558, 0, 2019, +1512, 419, 2174, +265, 1028, 2343, +1415, 494, 2468, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +1738, 30, 2505, +681, 4, 0, +683, 0, 0, +686, 0, 0, +690, 0, 0, +695, 0, 83, +702, 0, 215, +710, 0, 347, +710, 0, 459, +710, 0, 576, +710, 0, 697, +710, 0, 820, +710, 0, 946, +669, 0, 1100, +251, 163, 1367, +182, 163, 1530, +697, 32, 1641, +890, 0, 1779, +1239, 0, 1897, +1557, 32, 2021, +1506, 465, 2175, +265, 1045, 2344, +1427, 508, 2468, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +1737, 163, 2505, +656, 144, 0, +658, 137, 0, +661, 127, 0, +665, 114, 0, +670, 96, 83, +678, 70, 215, +686, 34, 347, +699, 0, 479, +699, 0, 591, +699, 0, 708, +699, 0, 829, +699, 0, 952, +656, 52, 1105, +145, 295, 1370, +56, 295, 1531, +708, 164, 1644, +849, 0, 1778, +1236, 0, 1899, +1555, 164, 2023, +1498, 521, 2175, +265, 1066, 2345, +1443, 526, 2468, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +1736, 295, 2505, +620, 281, 0, +623, 276, 0, +626, 269, 0, +630, 259, 0, +636, 246, 83, +643, 227, 215, +653, 202, 347, +666, 166, 479, +683, 111, 611, +683, 111, 723, +683, 111, 840, +683, 111, 961, +639, 167, 1111, +0, 426, 1374, +0, 426, 1534, +723, 296, 1648, +788, 0, 1777, +1231, 111, 1901, +1552, 296, 2027, +1487, 586, 2177, +265, 1093, 2347, +1456, 606, 2469, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +1735, 426, 2506, +567, 417, 0, +570, 413, 0, +573, 408, 0, +578, 401, 0, +585, 391, 83, +593, 378, 215, +604, 360, 347, +618, 334, 479, +637, 298, 611, +660, 244, 743, +660, 244, 856, +660, 244, 973, +614, 286, 1119, +0, 536, 1379, +0, 559, 1537, +743, 428, 1653, +797, 104, 1780, +1224, 244, 1904, +1549, 428, 2031, +1472, 660, 2178, +265, 1128, 2349, +1472, 699, 2469, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +1732, 559, 2507, +567, 552, 0, +570, 549, 0, +573, 545, 0, +578, 540, 0, +585, 533, 83, +593, 523, 215, +604, 510, 347, +618, 492, 479, +637, 466, 611, +660, 430, 743, +660, 521, 912, +660, 521, 1017, +614, 545, 1152, +0, 703, 1397, +0, 691, 1550, +743, 597, 1662, +797, 399, 1786, +1238, 422, 1910, +1518, 560, 2039, +1417, 815, 2187, +186, 1169, 2352, +1521, 727, 2469, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +567, 686, 0, +570, 684, 0, +573, 681, 0, +578, 677, 0, +585, 672, 83, +593, 665, 215, +604, 655, 347, +618, 643, 479, +637, 624, 611, +660, 599, 743, +660, 664, 912, +660, 739, 1070, +614, 754, 1192, +0, 860, 1421, +0, 823, 1568, +743, 755, 1675, +797, 625, 1792, +1261, 593, 1918, +1472, 692, 2049, +1331, 963, 2199, +0, 1212, 2357, +1579, 761, 2469, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +569, 854, 85, +559, 854, 130, +563, 852, 185, +568, 850, 248, +574, 846, 322, +583, 841, 404, +594, 835, 496, +608, 826, 594, +627, 814, 700, +651, 797, 811, +651, 841, 960, +651, 893, 1104, +678, 945, 1245, +0, 1017, 1454, +0, 983, 1592, +758, 925, 1697, +804, 857, 1807, +1275, 800, 1931, +1408, 849, 2061, +1203, 1108, 2212, +0, 1254, 2365, +1635, 828, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +834, 1134, 954, +827, 1134, 961, +819, 1134, 970, +808, 1134, 982, +792, 1134, 998, +770, 1134, 1018, +739, 1134, 1043, +693, 1134, 1075, +625, 1134, 1115, +570, 1131, 1163, +570, 1152, 1237, +570, 1179, 1321, +601, 1208, 1413, +800, 1208, 1514, +767, 1185, 1636, +863, 1174, 1754, +863, 1195, 1861, +1192, 1157, 1970, +1257, 1131, 2078, +1043, 1269, 2229, +975, 1275, 2368, +1616, 1030, 2470, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +857, 1389, 1341, +851, 1389, 1344, +843, 1389, 1348, +832, 1389, 1353, +817, 1389, 1360, +797, 1389, 1369, +767, 1389, 1381, +725, 1389, 1397, +661, 1389, 1417, +559, 1389, 1442, +559, 1389, 1463, +559, 1389, 1491, +591, 1400, 1546, +794, 1400, 1623, +813, 1382, 1691, +874, 1379, 1799, +874, 1408, 1902, +1201, 1371, 2008, +1151, 1350, 2106, +878, 1405, 2245, +1078, 1352, 2375, +1623, 1208, 2472, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1819, 1270, 2510, +1214, 1557, 1667, +1213, 1557, 1668, +1212, 1558, 1669, +1211, 1558, 1670, +1209, 1559, 1672, +1207, 1560, 1674, +1205, 1561, 1677, +1201, 1563, 1681, +1195, 1565, 1686, +1188, 1569, 1694, +1188, 1567, 1706, +1188, 1567, 1722, +1177, 1567, 1744, +1072, 1567, 1776, +1057, 1558, 1825, +1094, 1552, 1894, +1094, 1557, 1981, +1142, 1536, 2063, +1061, 1537, 2170, +810, 1536, 2268, +1232, 1487, 2382, +1680, 1427, 2474, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1839, 1457, 2509, +1512, 1695, 1855, +1511, 1695, 1855, +1510, 1695, 1856, +1508, 1696, 1858, +1505, 1696, 1860, +1502, 1697, 1862, +1497, 1698, 1866, +1491, 1699, 1870, +1482, 1701, 1876, +1478, 1703, 1881, +1478, 1700, 1889, +1478, 1696, 1900, +1475, 1691, 1914, +1446, 1684, 1934, +1440, 1693, 1977, +1405, 1695, 2020, +1418, 1691, 2069, +1312, 1672, 2125, +1209, 1684, 2221, +1248, 1649, 2296, +1541, 1636, 2386, +1794, 1633, 2475, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1900, 1619, 2511, +1813, 1811, 1973, +1812, 1811, 1974, +1812, 1811, 1975, +1811, 1811, 1976, +1810, 1811, 1977, +1809, 1811, 1978, +1808, 1811, 1981, +1806, 1811, 1983, +1803, 1811, 1987, +1799, 1811, 1992, +1795, 1811, 1998, +1789, 1811, 2007, +1779, 1812, 2018, +1767, 1817, 2033, +1749, 1812, 2048, +1751, 1809, 2076, +1717, 1818, 2125, +1722, 1802, 2166, +1667, 1793, 2234, +1699, 1800, 2306, +1776, 1797, 2391, +1871, 1786, 2475, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1978, 1800, 2515, +1972, 1958, 2032, +1972, 1958, 2033, +1971, 1958, 2033, +1971, 1958, 2034, +1970, 1958, 2034, +1969, 1958, 2036, +1968, 1958, 2037, +1967, 1958, 2039, +1965, 1958, 2041, +1962, 1958, 2045, +1961, 1958, 2049, +1958, 1958, 2055, +1955, 1958, 2062, +1947, 1958, 2069, +1940, 1963, 2081, +1937, 1965, 2105, +1931, 1968, 2155, +1905, 1958, 2189, +1920, 1964, 2238, +1898, 1964, 2316, +1934, 1954, 2393, +2043, 1964, 2481, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2108, 1964, 2515, +2123, 2122, 2071, +2123, 2122, 2071, +2123, 2122, 2071, +2123, 2122, 2072, +2124, 2122, 2072, +2124, 2122, 2072, +2124, 2122, 2073, +2125, 2122, 2073, +2125, 2122, 2074, +2126, 2122, 2075, +2126, 2124, 2079, +2126, 2125, 2085, +2125, 2127, 2092, +2119, 2127, 2101, +2119, 2127, 2110, +2122, 2131, 2129, +2118, 2135, 2168, +2110, 2127, 2203, +2114, 2132, 2254, +2126, 2132, 2316, +2148, 2134, 2399, +2218, 2147, 2485, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2259, 2159, 2522, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2371, 2355, 2126, +2371, 2355, 2127, +2371, 2355, 2129, +2372, 2355, 2131, +2371, 2356, 2133, +2372, 2357, 2137, +2372, 2358, 2143, +2371, 2358, 2146, +2369, 2356, 2148, +2370, 2358, 2160, +2373, 2358, 2193, +2373, 2358, 2228, +2377, 2357, 2273, +2391, 2362, 2337, +2412, 2367, 2407, +2466, 2386, 2499, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2496, 2392, 2532, +2680, 2654, 1961, +2680, 2654, 1961, +2680, 2654, 1962, +2680, 2654, 1963, +2680, 2655, 1965, +2680, 2655, 1966, +2681, 2655, 1969, +2681, 2656, 1973, +2681, 2655, 1970, +2680, 2654, 1966, +2680, 2654, 1965, +2679, 2653, 1962, +2679, 2653, 1963, +2678, 2655, 1982, +2677, 2657, 2003, +2678, 2657, 2033, +2676, 2653, 2053, +2678, 2656, 2122, +2681, 2656, 2208, +2688, 2660, 2306, +2695, 2665, 2407, +2715, 2678, 2527, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2724, 2684, 2577, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2431, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2715, 2770, 2435, +2716, 2769, 2439, +2714, 2769, 2444, +2711, 2772, 2462, +2712, 2773, 2481, +2714, 2774, 2521, +2713, 2773, 2553, +2717, 2777, 2616, +2723, 2785, 2695, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +871, 0, 0, +871, 0, 0, +871, 0, 0, +871, 0, 0, +871, 0, 28, +871, 0, 152, +871, 0, 280, +871, 0, 408, +871, 0, 537, +871, 0, 667, +871, 0, 797, +871, 0, 928, +845, 0, 1088, +668, 0, 1361, +535, 0, 1543, +769, 0, 1643, +1048, 0, 1782, +1313, 0, 1897, +1561, 0, 2018, +1511, 412, 2179, +186, 987, 2341, +1454, 356, 2467, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +868, 0, 0, +869, 0, 0, +869, 0, 0, +869, 0, 0, +869, 0, 36, +869, 0, 159, +869, 0, 285, +869, 0, 412, +869, 0, 540, +869, 0, 669, +869, 0, 799, +869, 0, 930, +841, 0, 1089, +662, 0, 1361, +526, 0, 1543, +770, 0, 1643, +1043, 0, 1782, +1313, 0, 1897, +1561, 0, 2018, +1510, 423, 2179, +186, 992, 2341, +1457, 360, 2467, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +864, 0, 0, +866, 0, 0, +868, 0, 0, +868, 0, 0, +868, 0, 48, +868, 0, 168, +868, 0, 291, +868, 0, 417, +868, 0, 544, +868, 0, 672, +868, 0, 801, +868, 0, 931, +839, 0, 1090, +653, 0, 1362, +513, 0, 1544, +773, 0, 1644, +1036, 0, 1782, +1312, 0, 1897, +1560, 0, 2019, +1508, 438, 2179, +186, 998, 2341, +1461, 366, 2467, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +1743, 0, 2505, +859, 0, 0, +861, 0, 0, +862, 0, 0, +865, 0, 0, +865, 0, 63, +865, 0, 180, +865, 0, 300, +865, 0, 424, +865, 0, 549, +865, 0, 676, +865, 0, 804, +865, 0, 933, +836, 0, 1091, +640, 0, 1363, +496, 0, 1544, +776, 0, 1645, +1027, 0, 1781, +1311, 0, 1898, +1560, 0, 2020, +1505, 457, 2180, +186, 1005, 2342, +1465, 373, 2467, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +852, 0, 0, +854, 0, 0, +856, 0, 0, +858, 0, 0, +862, 0, 83, +862, 0, 195, +862, 0, 312, +862, 0, 433, +862, 0, 556, +862, 0, 681, +862, 0, 808, +862, 0, 936, +833, 0, 1093, +623, 0, 1364, +473, 0, 1545, +780, 0, 1646, +1015, 0, 1781, +1310, 0, 1899, +1559, 0, 2021, +1502, 482, 2180, +186, 1015, 2342, +1472, 383, 2467, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +1742, 0, 2505, +843, 0, 0, +844, 0, 0, +846, 0, 0, +849, 0, 0, +852, 0, 83, +857, 0, 215, +857, 0, 327, +857, 0, 444, +857, 0, 564, +857, 0, 688, +857, 0, 813, +857, 0, 940, +827, 0, 1096, +599, 30, 1365, +439, 30, 1546, +785, 0, 1648, +998, 0, 1780, +1308, 0, 1900, +1558, 0, 2022, +1497, 512, 2180, +186, 1028, 2343, +1480, 397, 2467, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +1741, 30, 2505, +830, 4, 0, +831, 0, 0, +833, 0, 0, +836, 0, 0, +839, 0, 83, +844, 0, 215, +851, 0, 347, +851, 0, 459, +851, 0, 576, +851, 0, 697, +851, 0, 820, +851, 0, 946, +821, 0, 1100, +565, 163, 1367, +390, 163, 1547, +793, 32, 1650, +974, 0, 1779, +1306, 0, 1901, +1557, 32, 2024, +1491, 551, 2181, +186, 1045, 2344, +1491, 413, 2467, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +1740, 163, 2506, +812, 144, 0, +813, 137, 0, +815, 127, 0, +818, 114, 0, +822, 96, 83, +827, 70, 215, +834, 34, 347, +842, 0, 479, +842, 0, 591, +842, 0, 708, +842, 0, 829, +842, 0, 952, +812, 52, 1105, +515, 295, 1370, +314, 295, 1549, +802, 164, 1653, +940, 0, 1778, +1302, 0, 1903, +1555, 164, 2027, +1483, 597, 2182, +186, 1066, 2345, +1505, 435, 2467, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +1739, 295, 2506, +787, 281, 0, +788, 276, 0, +790, 269, 0, +793, 259, 0, +797, 246, 83, +803, 227, 215, +809, 202, 347, +819, 166, 479, +831, 111, 611, +831, 111, 723, +831, 111, 840, +831, 111, 961, +799, 167, 1111, +438, 426, 1374, +188, 426, 1552, +814, 296, 1657, +891, 0, 1777, +1298, 111, 1905, +1552, 296, 2030, +1472, 653, 2183, +186, 1093, 2347, +1516, 532, 2467, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +1738, 426, 2507, +750, 417, 0, +752, 413, 0, +755, 408, 0, +758, 401, 0, +762, 391, 83, +768, 378, 215, +775, 360, 347, +785, 334, 479, +798, 298, 611, +815, 244, 743, +815, 244, 856, +815, 244, 973, +782, 286, 1119, +345, 536, 1379, +0, 559, 1555, +831, 428, 1662, +899, 104, 1780, +1292, 244, 1908, +1549, 428, 2034, +1456, 718, 2185, +186, 1128, 2349, +1530, 640, 2468, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +1736, 559, 2508, +697, 552, 0, +699, 549, 0, +702, 545, 0, +705, 540, 0, +710, 533, 83, +717, 523, 215, +725, 510, 347, +736, 492, 479, +750, 466, 611, +769, 430, 743, +792, 376, 875, +792, 376, 988, +758, 407, 1131, +280, 611, 1385, +0, 691, 1559, +799, 583, 1666, +916, 342, 1786, +1257, 324, 1907, +1545, 560, 2040, +1434, 792, 2187, +186, 1169, 2352, +1547, 752, 2469, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +1732, 691, 2509, +697, 686, 0, +699, 684, 0, +702, 681, 0, +705, 677, 0, +710, 672, 83, +717, 665, 215, +725, 655, 347, +736, 643, 479, +750, 624, 611, +769, 599, 743, +792, 562, 875, +792, 654, 1044, +758, 672, 1172, +280, 796, 1409, +0, 823, 1576, +799, 745, 1680, +916, 591, 1792, +1279, 529, 1915, +1502, 692, 2050, +1352, 947, 2199, +0, 1212, 2357, +1603, 785, 2469, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +699, 854, 85, +691, 854, 130, +694, 852, 185, +698, 850, 248, +702, 846, 322, +709, 841, 404, +717, 835, 496, +728, 826, 594, +743, 814, 700, +762, 797, 811, +786, 774, 927, +786, 834, 1081, +805, 893, 1228, +403, 973, 1443, +0, 983, 1599, +812, 918, 1701, +921, 837, 1807, +1293, 760, 1928, +1442, 849, 2062, +1230, 1096, 2212, +0, 1254, 2365, +1657, 848, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +910, 1134, 954, +905, 1134, 961, +898, 1134, 970, +889, 1134, 982, +875, 1134, 998, +857, 1134, 1018, +832, 1134, 1043, +795, 1134, 1075, +741, 1134, 1115, +699, 1131, 1163, +726, 1120, 1220, +726, 1149, 1307, +748, 1179, 1402, +901, 1179, 1504, +767, 1185, 1644, +906, 1170, 1757, +968, 1186, 1861, +1214, 1140, 1967, +1304, 1131, 2079, +1082, 1261, 2229, +975, 1275, 2368, +1638, 1044, 2470, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +993, 1376, 1327, +989, 1376, 1330, +983, 1376, 1334, +975, 1376, 1340, +964, 1376, 1347, +949, 1376, 1356, +928, 1376, 1368, +899, 1376, 1385, +857, 1376, 1405, +793, 1376, 1431, +691, 1376, 1463, +691, 1376, 1491, +715, 1388, 1546, +877, 1388, 1623, +945, 1376, 1697, +997, 1370, 1804, +1006, 1396, 1906, +1223, 1377, 2010, +1151, 1350, 2105, +878, 1405, 2247, +1167, 1339, 2373, +1626, 1218, 2473, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1826, 1254, 2510, +1284, 1548, 1666, +1284, 1549, 1666, +1283, 1549, 1667, +1282, 1550, 1668, +1281, 1550, 1670, +1279, 1551, 1673, +1276, 1553, 1675, +1273, 1555, 1680, +1269, 1557, 1685, +1263, 1560, 1692, +1239, 1562, 1707, +1239, 1562, 1723, +1229, 1562, 1745, +1136, 1562, 1777, +1127, 1554, 1826, +1162, 1550, 1897, +1168, 1552, 1984, +1181, 1539, 2065, +1075, 1537, 2169, +810, 1538, 2270, +1285, 1479, 2381, +1681, 1429, 2475, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1842, 1448, 2509, +1553, 1689, 1859, +1552, 1689, 1860, +1551, 1689, 1861, +1549, 1690, 1862, +1547, 1690, 1864, +1544, 1691, 1867, +1539, 1692, 1870, +1534, 1693, 1874, +1526, 1695, 1880, +1522, 1697, 1885, +1517, 1700, 1891, +1517, 1696, 1902, +1515, 1691, 1916, +1488, 1684, 1935, +1461, 1690, 1974, +1430, 1693, 2019, +1446, 1691, 2070, +1360, 1672, 2128, +1236, 1684, 2221, +1248, 1653, 2296, +1559, 1632, 2386, +1794, 1630, 2475, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1898, 1615, 2511, +1821, 1809, 1972, +1820, 1809, 1972, +1820, 1809, 1973, +1819, 1809, 1974, +1818, 1809, 1975, +1817, 1809, 1977, +1816, 1809, 1979, +1813, 1809, 1982, +1811, 1809, 1986, +1807, 1809, 1990, +1800, 1811, 1998, +1793, 1811, 2007, +1784, 1811, 2018, +1772, 1817, 2033, +1754, 1811, 2049, +1756, 1809, 2076, +1721, 1816, 2124, +1728, 1804, 2168, +1675, 1795, 2234, +1712, 1800, 2308, +1779, 1799, 2391, +1880, 1789, 2475, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1982, 1798, 2515, +1977, 1958, 2034, +1977, 1958, 2034, +1976, 1958, 2035, +1976, 1958, 2035, +1975, 1958, 2036, +1974, 1958, 2037, +1973, 1958, 2038, +1972, 1958, 2040, +1970, 1958, 2043, +1968, 1958, 2046, +1964, 1958, 2050, +1962, 1958, 2056, +1959, 1958, 2063, +1950, 1958, 2070, +1942, 1961, 2081, +1940, 1963, 2103, +1935, 1966, 2152, +1912, 1959, 2190, +1920, 1962, 2236, +1904, 1962, 2314, +1936, 1954, 2394, +2043, 1964, 2481, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2112, 1962, 2514, +2124, 2124, 2073, +2124, 2124, 2073, +2124, 2124, 2073, +2125, 2124, 2073, +2125, 2124, 2073, +2125, 2124, 2074, +2125, 2124, 2074, +2126, 2124, 2075, +2126, 2124, 2076, +2127, 2124, 2076, +2129, 2124, 2078, +2129, 2125, 2083, +2128, 2127, 2090, +2122, 2127, 2100, +2119, 2127, 2110, +2123, 2131, 2129, +2120, 2135, 2167, +2113, 2128, 2205, +2115, 2130, 2253, +2128, 2131, 2316, +2148, 2135, 2400, +2220, 2148, 2485, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2258, 2159, 2521, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2124, +2370, 2355, 2125, +2370, 2355, 2125, +2370, 2355, 2126, +2371, 2355, 2126, +2371, 2355, 2127, +2371, 2355, 2129, +2372, 2355, 2131, +2372, 2355, 2133, +2373, 2356, 2137, +2374, 2357, 2143, +2372, 2357, 2146, +2369, 2356, 2148, +2370, 2358, 2159, +2374, 2358, 2192, +2374, 2358, 2228, +2379, 2358, 2273, +2393, 2364, 2337, +2413, 2367, 2408, +2467, 2387, 2498, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2496, 2393, 2533, +2680, 2654, 1959, +2680, 2654, 1959, +2680, 2654, 1960, +2680, 2654, 1961, +2680, 2654, 1963, +2680, 2655, 1965, +2680, 2655, 1968, +2680, 2655, 1971, +2680, 2655, 1969, +2680, 2654, 1965, +2679, 2653, 1959, +2679, 2652, 1957, +2678, 2652, 1958, +2678, 2654, 1977, +2677, 2657, 1996, +2678, 2657, 2031, +2677, 2654, 2057, +2678, 2657, 2122, +2682, 2656, 2208, +2688, 2660, 2307, +2695, 2665, 2407, +2715, 2678, 2527, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2725, 2684, 2578, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2430, +2713, 2770, 2430, +2714, 2770, 2430, +2714, 2770, 2430, +2715, 2770, 2430, +2715, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2431, +2716, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2712, 2773, 2483, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2616, +2724, 2786, 2697, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +1004, 0, 0, +1004, 0, 0, +1004, 0, 0, +1004, 0, 0, +1004, 0, 28, +1004, 0, 152, +1004, 0, 280, +1004, 0, 408, +1004, 0, 537, +1004, 0, 667, +1004, 0, 797, +1004, 0, 928, +985, 0, 1088, +862, 0, 1361, +674, 0, 1566, +856, 0, 1661, +1128, 0, 1782, +1394, 0, 1902, +1561, 0, 2022, +1491, 535, 2188, +220, 987, 2343, +1533, 158, 2465, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1002, 0, 0, +1003, 0, 0, +1003, 0, 0, +1003, 0, 0, +1003, 0, 36, +1003, 0, 159, +1003, 0, 285, +1003, 0, 412, +1003, 0, 540, +1003, 0, 669, +1003, 0, 799, +1003, 0, 930, +982, 0, 1089, +858, 0, 1361, +667, 0, 1566, +858, 0, 1662, +1124, 0, 1782, +1393, 0, 1903, +1561, 0, 2022, +1490, 544, 2188, +220, 992, 2343, +1536, 164, 2465, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +999, 0, 0, +1000, 0, 0, +1002, 0, 0, +1002, 0, 0, +1002, 0, 48, +1002, 0, 168, +1002, 0, 291, +1002, 0, 417, +1002, 0, 544, +1002, 0, 672, +1002, 0, 801, +1002, 0, 931, +981, 0, 1090, +852, 0, 1362, +658, 0, 1567, +860, 0, 1662, +1118, 0, 1782, +1393, 0, 1903, +1560, 0, 2023, +1488, 556, 2188, +220, 998, 2343, +1539, 173, 2465, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +1747, 0, 2505, +996, 0, 0, +996, 0, 0, +998, 0, 0, +1000, 0, 0, +1000, 0, 63, +1000, 0, 180, +1000, 0, 300, +1000, 0, 424, +1000, 0, 549, +1000, 0, 676, +1000, 0, 804, +1000, 0, 933, +979, 0, 1091, +844, 0, 1363, +645, 0, 1567, +862, 0, 1663, +1110, 0, 1781, +1392, 0, 1903, +1560, 0, 2024, +1486, 570, 2188, +220, 1005, 2344, +1543, 185, 2465, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +1746, 0, 2505, +990, 0, 0, +991, 0, 0, +993, 0, 0, +995, 0, 0, +997, 0, 83, +997, 0, 195, +997, 0, 312, +997, 0, 433, +997, 0, 556, +997, 0, 681, +997, 0, 808, +997, 0, 936, +976, 0, 1093, +833, 0, 1364, +629, 0, 1568, +866, 0, 1664, +1100, 0, 1781, +1391, 0, 1904, +1559, 0, 2025, +1482, 590, 2189, +220, 1015, 2344, +1548, 200, 2465, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +1746, 0, 2506, +983, 0, 0, +985, 0, 0, +986, 0, 0, +988, 0, 0, +991, 0, 83, +994, 0, 215, +994, 0, 327, +994, 0, 444, +994, 0, 564, +994, 0, 688, +994, 0, 813, +994, 0, 940, +973, 0, 1096, +819, 30, 1365, +605, 30, 1569, +871, 0, 1666, +1086, 0, 1780, +1390, 0, 1905, +1558, 0, 2026, +1477, 614, 2189, +220, 1028, 2345, +1555, 219, 2465, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +1745, 30, 2506, +974, 4, 0, +975, 0, 0, +977, 0, 0, +979, 0, 0, +981, 0, 83, +985, 0, 215, +989, 0, 347, +989, 0, 459, +989, 0, 576, +989, 0, 697, +989, 0, 820, +989, 0, 946, +968, 0, 1100, +798, 163, 1367, +571, 163, 1570, +876, 32, 1668, +1067, 0, 1779, +1388, 0, 1906, +1557, 32, 2028, +1471, 645, 2190, +220, 1045, 2346, +1564, 244, 2465, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +1744, 163, 2506, +961, 144, 0, +962, 137, 0, +963, 127, 0, +966, 114, 0, +968, 96, 83, +972, 70, 215, +977, 34, 347, +983, 0, 479, +983, 0, 591, +983, 0, 708, +983, 0, 829, +983, 0, 952, +961, 52, 1105, +769, 295, 1370, +522, 295, 1572, +884, 164, 1671, +1039, 0, 1778, +1385, 0, 1908, +1555, 164, 2031, +1462, 683, 2191, +220, 1066, 2347, +1576, 275, 2465, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +1743, 295, 2507, +943, 281, 0, +944, 276, 0, +946, 269, 0, +948, 259, 0, +951, 246, 83, +955, 227, 215, +959, 202, 347, +966, 166, 479, +975, 111, 611, +975, 111, 723, +975, 111, 840, +975, 111, 961, +952, 167, 1111, +726, 426, 1374, +446, 426, 1574, +895, 296, 1674, +1000, 0, 1777, +1382, 111, 1910, +1552, 296, 2034, +1450, 729, 2192, +220, 1093, 2349, +1586, 407, 2466, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +1741, 426, 2508, +917, 417, 0, +919, 413, 0, +920, 408, 0, +923, 401, 0, +926, 391, 83, +930, 378, 215, +935, 360, 347, +942, 334, 479, +951, 298, 611, +963, 244, 743, +963, 244, 856, +963, 244, 973, +940, 286, 1119, +679, 536, 1379, +320, 559, 1577, +908, 428, 1679, +1006, 104, 1780, +1377, 244, 1913, +1549, 428, 2038, +1434, 785, 2194, +220, 1128, 2351, +1598, 544, 2467, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +1739, 559, 2508, +881, 552, 0, +883, 549, 0, +884, 545, 0, +887, 540, 0, +890, 533, 83, +894, 523, 215, +900, 510, 347, +908, 492, 479, +917, 466, 611, +930, 430, 743, +947, 376, 875, +947, 376, 988, +923, 407, 1131, +649, 611, 1385, +67, 691, 1581, +882, 583, 1684, +1020, 342, 1786, +1348, 324, 1912, +1545, 560, 2044, +1411, 850, 2196, +220, 1169, 2354, +1613, 680, 2468, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +1736, 691, 2509, +828, 686, 0, +829, 684, 0, +831, 681, 0, +834, 677, 0, +838, 672, 83, +842, 665, 215, +849, 655, 347, +857, 643, 479, +868, 624, 611, +883, 599, 743, +901, 562, 875, +925, 508, 1007, +899, 532, 1145, +605, 694, 1393, +0, 823, 1587, +799, 745, 1688, +1039, 540, 1792, +1299, 403, 1909, +1539, 692, 2052, +1379, 925, 2199, +0, 1212, 2357, +1633, 815, 2469, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +1732, 823, 2511, +829, 854, 85, +823, 854, 130, +825, 852, 185, +828, 850, 248, +832, 846, 322, +837, 841, 404, +843, 835, 496, +852, 826, 594, +863, 814, 700, +877, 797, 811, +896, 774, 927, +920, 741, 1047, +934, 812, 1203, +669, 906, 1428, +0, 983, 1610, +812, 918, 1709, +1043, 809, 1807, +1313, 689, 1923, +1484, 849, 2064, +1265, 1080, 2212, +0, 1254, 2365, +1683, 875, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +996, 1134, 954, +992, 1134, 961, +986, 1134, 970, +979, 1134, 982, +968, 1134, 998, +953, 1134, 1018, +932, 1134, 1043, +903, 1134, 1075, +861, 1134, 1115, +829, 1131, 1163, +850, 1120, 1220, +876, 1105, 1286, +892, 1138, 1385, +1008, 1138, 1491, +767, 1185, 1653, +906, 1170, 1765, +1078, 1173, 1861, +1237, 1110, 1962, +1360, 1131, 2081, +1129, 1250, 2229, +975, 1275, 2368, +1666, 1061, 2470, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1129, 1359, 1308, +1126, 1359, 1311, +1121, 1359, 1315, +1115, 1359, 1321, +1107, 1359, 1328, +1097, 1359, 1338, +1082, 1359, 1351, +1061, 1359, 1367, +1032, 1359, 1389, +989, 1359, 1416, +926, 1359, 1449, +823, 1359, 1491, +841, 1371, 1546, +969, 1371, 1623, +1077, 1367, 1705, +1117, 1361, 1811, +1138, 1380, 1911, +1246, 1386, 2012, +1151, 1350, 2103, +878, 1405, 2249, +1204, 1332, 2374, +1631, 1230, 2474, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1835, 1230, 2510, +1361, 1536, 1656, +1360, 1537, 1657, +1360, 1537, 1658, +1359, 1538, 1659, +1358, 1539, 1661, +1356, 1540, 1663, +1354, 1541, 1667, +1351, 1543, 1671, +1347, 1545, 1676, +1342, 1549, 1684, +1323, 1550, 1699, +1283, 1550, 1723, +1274, 1550, 1745, +1190, 1550, 1777, +1220, 1548, 1833, +1249, 1544, 1903, +1265, 1540, 1988, +1206, 1545, 2067, +1075, 1537, 2167, +810, 1538, 2272, +1313, 1474, 2382, +1686, 1437, 2475, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1851, 1433, 2509, +1603, 1680, 1865, +1602, 1680, 1865, +1600, 1680, 1867, +1599, 1681, 1868, +1597, 1681, 1870, +1594, 1682, 1872, +1590, 1683, 1876, +1585, 1684, 1880, +1578, 1686, 1886, +1575, 1689, 1891, +1571, 1692, 1897, +1565, 1696, 1905, +1563, 1691, 1919, +1538, 1684, 1938, +1489, 1686, 1969, +1460, 1689, 2014, +1482, 1691, 2072, +1418, 1672, 2133, +1270, 1684, 2221, +1248, 1657, 2296, +1563, 1627, 2386, +1794, 1625, 2476, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1896, 1610, 2511, +1830, 1805, 1969, +1830, 1805, 1970, +1829, 1805, 1971, +1829, 1805, 1972, +1828, 1805, 1973, +1827, 1805, 1974, +1825, 1805, 1977, +1823, 1805, 1979, +1821, 1805, 1983, +1817, 1805, 1988, +1810, 1807, 1996, +1800, 1811, 2007, +1791, 1811, 2018, +1779, 1817, 2033, +1762, 1811, 2051, +1763, 1809, 2078, +1725, 1813, 2122, +1736, 1807, 2171, +1689, 1798, 2234, +1727, 1800, 2309, +1778, 1800, 2391, +1894, 1792, 2475, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1986, 1795, 2515, +1983, 1958, 2036, +1983, 1958, 2036, +1983, 1958, 2037, +1983, 1958, 2037, +1982, 1958, 2038, +1981, 1958, 2039, +1980, 1958, 2040, +1979, 1958, 2042, +1977, 1958, 2045, +1974, 1958, 2048, +1971, 1958, 2052, +1966, 1958, 2058, +1963, 1958, 2065, +1955, 1958, 2072, +1945, 1959, 2081, +1942, 1961, 2103, +1940, 1963, 2147, +1922, 1962, 2193, +1920, 1960, 2233, +1912, 1960, 2312, +1943, 1954, 2394, +2043, 1964, 2481, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2119, 1960, 2514, +2126, 2125, 2075, +2126, 2125, 2075, +2126, 2125, 2075, +2126, 2125, 2075, +2126, 2125, 2075, +2127, 2125, 2076, +2127, 2125, 2076, +2127, 2125, 2076, +2128, 2125, 2077, +2129, 2125, 2078, +2130, 2125, 2080, +2132, 2125, 2082, +2131, 2127, 2089, +2125, 2127, 2098, +2119, 2127, 2110, +2123, 2131, 2129, +2124, 2135, 2165, +2118, 2130, 2208, +2117, 2129, 2251, +2132, 2129, 2316, +2154, 2135, 2400, +2222, 2149, 2485, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2257, 2159, 2521, +2371, 2355, 2125, +2371, 2355, 2125, +2371, 2355, 2125, +2371, 2355, 2126, +2372, 2355, 2126, +2372, 2355, 2127, +2372, 2355, 2127, +2372, 2355, 2128, +2372, 2355, 2130, +2373, 2355, 2132, +2374, 2355, 2134, +2374, 2355, 2136, +2375, 2356, 2142, +2373, 2356, 2145, +2371, 2355, 2148, +2372, 2357, 2159, +2375, 2358, 2191, +2375, 2358, 2229, +2381, 2358, 2273, +2396, 2366, 2336, +2413, 2367, 2408, +2468, 2388, 2498, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2497, 2394, 2532, +2679, 2653, 1956, +2679, 2653, 1957, +2679, 2653, 1958, +2679, 2654, 1959, +2679, 2654, 1961, +2680, 2654, 1962, +2680, 2654, 1965, +2680, 2655, 1969, +2680, 2654, 1966, +2679, 2653, 1962, +2679, 2652, 1957, +2678, 2651, 1950, +2678, 2650, 1950, +2677, 2652, 1970, +2676, 2657, 1988, +2678, 2657, 2023, +2679, 2655, 2063, +2679, 2657, 2122, +2682, 2656, 2208, +2688, 2660, 2308, +2695, 2665, 2407, +2715, 2678, 2527, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2726, 2684, 2578, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2770, 2428, +2712, 2770, 2429, +2712, 2770, 2429, +2712, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2713, 2770, 2429, +2714, 2770, 2429, +2714, 2770, 2430, +2715, 2770, 2430, +2716, 2770, 2431, +2717, 2770, 2431, +2717, 2770, 2432, +2716, 2770, 2435, +2716, 2769, 2439, +2714, 2770, 2444, +2711, 2772, 2462, +2713, 2774, 2488, +2714, 2775, 2522, +2712, 2773, 2553, +2717, 2777, 2617, +2724, 2787, 2699, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +1146, 0, 0, +1146, 0, 0, +1146, 0, 0, +1146, 0, 46, +1146, 0, 140, +1146, 0, 240, +1146, 0, 347, +1146, 0, 460, +1146, 0, 576, +1146, 0, 697, +1146, 0, 820, +1146, 0, 946, +1143, 0, 1084, +1060, 0, 1359, +918, 0, 1574, +981, 0, 1683, +1223, 0, 1785, +1476, 0, 1909, +1569, 0, 2028, +1478, 645, 2197, +391, 989, 2347, +1611, 0, 2464, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1146, 0, 0, +1146, 0, 0, +1146, 0, 27, +1146, 0, 101, +1146, 0, 185, +1146, 0, 277, +1146, 0, 376, +1146, 0, 482, +1146, 0, 594, +1146, 0, 710, +1146, 0, 830, +1146, 0, 953, +1142, 0, 1089, +1059, 0, 1361, +917, 0, 1576, +981, 0, 1683, +1223, 0, 1786, +1476, 0, 1910, +1569, 0, 2029, +1477, 656, 2197, +395, 992, 2347, +1611, 0, 2464, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1757, 0, 2506, +1143, 0, 0, +1143, 0, 0, +1144, 0, 38, +1144, 0, 111, +1144, 0, 193, +1144, 0, 284, +1144, 0, 382, +1144, 0, 487, +1144, 0, 598, +1144, 0, 713, +1144, 0, 833, +1144, 0, 955, +1141, 0, 1090, +1055, 0, 1362, +911, 0, 1576, +982, 0, 1684, +1219, 0, 1785, +1475, 0, 1911, +1568, 0, 2029, +1475, 665, 2197, +395, 998, 2347, +1614, 0, 2464, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1141, 0, 0, +1141, 0, 0, +1142, 0, 38, +1143, 0, 124, +1143, 0, 204, +1143, 0, 293, +1143, 0, 389, +1143, 0, 493, +1143, 0, 602, +1143, 0, 717, +1143, 0, 835, +1143, 0, 957, +1140, 0, 1091, +1050, 0, 1363, +904, 0, 1577, +984, 0, 1685, +1213, 0, 1785, +1474, 0, 1911, +1568, 0, 2030, +1472, 676, 2198, +395, 1005, 2348, +1617, 0, 2464, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1137, 0, 0, +1137, 0, 0, +1138, 0, 38, +1139, 0, 124, +1141, 0, 219, +1141, 0, 305, +1141, 0, 399, +1141, 0, 501, +1141, 0, 608, +1141, 0, 722, +1141, 0, 839, +1141, 0, 960, +1138, 0, 1093, +1043, 0, 1364, +895, 0, 1577, +987, 0, 1686, +1205, 0, 1784, +1474, 0, 1912, +1567, 0, 2031, +1469, 692, 2198, +395, 1015, 2348, +1622, 0, 2464, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1756, 0, 2506, +1132, 0, 0, +1132, 0, 0, +1133, 0, 38, +1134, 0, 124, +1136, 0, 219, +1139, 0, 320, +1139, 0, 411, +1139, 0, 511, +1139, 0, 616, +1139, 0, 728, +1139, 0, 844, +1139, 0, 963, +1136, 0, 1096, +1034, 0, 1365, +882, 0, 1578, +990, 0, 1687, +1194, 0, 1784, +1472, 0, 1913, +1566, 0, 2032, +1464, 711, 2199, +395, 1028, 2349, +1628, 0, 2464, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1755, 0, 2507, +1125, 13, 0, +1125, 0, 0, +1126, 0, 38, +1128, 0, 124, +1129, 0, 219, +1132, 0, 320, +1135, 0, 428, +1135, 0, 524, +1135, 0, 627, +1135, 0, 736, +1135, 0, 850, +1135, 0, 968, +1132, 0, 1100, +1021, 107, 1367, +864, 107, 1579, +995, 0, 1690, +1178, 0, 1783, +1471, 0, 1914, +1565, 97, 2034, +1457, 736, 2199, +395, 1045, 2350, +1636, 0, 2464, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1754, 107, 2507, +1116, 150, 0, +1116, 137, 0, +1117, 127, 38, +1118, 114, 124, +1120, 96, 219, +1123, 70, 320, +1126, 34, 428, +1131, 0, 541, +1131, 0, 640, +1131, 0, 747, +1131, 0, 858, +1131, 0, 975, +1128, 0, 1105, +1003, 254, 1370, +839, 254, 1581, +1001, 137, 1692, +1157, 0, 1782, +1469, 17, 1915, +1563, 213, 2037, +1448, 768, 2200, +395, 1066, 2351, +1646, 21, 2464, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1753, 254, 2507, +1103, 286, 0, +1103, 276, 0, +1104, 269, 38, +1106, 259, 124, +1108, 246, 219, +1110, 227, 320, +1114, 202, 428, +1118, 166, 541, +1125, 111, 658, +1125, 111, 760, +1125, 111, 869, +1125, 111, 983, +1121, 111, 1111, +979, 396, 1374, +803, 396, 1584, +1009, 276, 1696, +1127, 0, 1781, +1466, 140, 1918, +1560, 333, 2040, +1436, 807, 2201, +395, 1093, 2353, +1654, 232, 2464, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1751, 396, 2508, +1085, 420, 0, +1085, 413, 0, +1086, 408, 38, +1088, 401, 124, +1090, 391, 219, +1093, 378, 320, +1097, 360, 428, +1102, 334, 541, +1108, 298, 658, +1116, 244, 779, +1116, 244, 884, +1116, 244, 995, +1113, 244, 1119, +952, 513, 1379, +749, 536, 1587, +1019, 413, 1700, +1132, 186, 1784, +1462, 265, 1920, +1557, 456, 2044, +1419, 854, 2202, +395, 1128, 2355, +1664, 421, 2465, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1749, 536, 2509, +1061, 554, 0, +1061, 549, 0, +1062, 545, 38, +1064, 540, 124, +1066, 533, 219, +1069, 523, 320, +1073, 510, 428, +1078, 492, 541, +1085, 466, 658, +1093, 430, 779, +1105, 376, 902, +1105, 376, 1009, +1102, 376, 1131, +936, 591, 1385, +666, 674, 1590, +999, 572, 1705, +1142, 392, 1789, +1438, 342, 1919, +1553, 581, 2050, +1395, 910, 2205, +395, 1169, 2358, +1678, 592, 2466, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1746, 674, 2510, +1025, 688, 0, +1025, 684, 0, +1027, 681, 38, +1028, 677, 124, +1031, 672, 219, +1034, 665, 320, +1038, 655, 428, +1044, 643, 541, +1051, 624, 658, +1061, 599, 779, +1073, 562, 902, +1089, 508, 1028, +1086, 508, 1145, +913, 678, 1393, +525, 811, 1596, +936, 738, 1709, +1157, 573, 1796, +1399, 418, 1917, +1547, 709, 2058, +1361, 976, 2207, +221, 1212, 2361, +1695, 752, 2468, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +1742, 811, 2511, +998, 854, 247, +999, 854, 274, +1000, 852, 314, +1002, 850, 363, +1005, 846, 421, +1008, 841, 488, +1013, 835, 565, +1018, 826, 651, +1026, 814, 746, +1036, 797, 847, +1050, 774, 955, +1067, 741, 1069, +1082, 701, 1186, +907, 818, 1417, +458, 939, 1611, +854, 914, 1719, +1166, 781, 1811, +1344, 583, 1918, +1532, 855, 2069, +1306, 1062, 2213, +0, 1254, 2365, +1713, 908, 2469, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1738, 955, 2513, +1120, 1134, 981, +1120, 1134, 987, +1116, 1134, 996, +1110, 1134, 1007, +1102, 1134, 1022, +1091, 1134, 1041, +1076, 1134, 1065, +1055, 1134, 1096, +1025, 1134, 1133, +1003, 1131, 1180, +1017, 1120, 1235, +1036, 1105, 1300, +1052, 1087, 1374, +1136, 1087, 1482, +920, 1158, 1655, +941, 1167, 1774, +1193, 1161, 1864, +1274, 1071, 1958, +1421, 1134, 2085, +1184, 1237, 2230, +980, 1275, 2368, +1697, 1083, 2471, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1244, 1351, 1313, +1244, 1351, 1315, +1241, 1351, 1320, +1236, 1351, 1325, +1230, 1351, 1332, +1222, 1351, 1342, +1211, 1351, 1355, +1195, 1351, 1371, +1174, 1351, 1392, +1143, 1351, 1419, +1099, 1351, 1452, +1031, 1351, 1493, +1008, 1345, 1543, +1101, 1345, 1620, +1200, 1345, 1706, +1180, 1356, 1819, +1250, 1368, 1917, +1282, 1376, 2010, +1214, 1352, 2106, +941, 1399, 2251, +1206, 1332, 2375, +1655, 1246, 2474, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1442, 1522, 1648, +1441, 1522, 1649, +1440, 1523, 1650, +1440, 1523, 1651, +1439, 1524, 1653, +1437, 1525, 1655, +1436, 1526, 1658, +1433, 1528, 1663, +1430, 1531, 1668, +1426, 1534, 1676, +1410, 1536, 1691, +1377, 1536, 1716, +1335, 1537, 1749, +1263, 1537, 1781, +1301, 1537, 1839, +1339, 1536, 1910, +1357, 1528, 1994, +1241, 1551, 2071, +1105, 1537, 2167, +883, 1536, 2275, +1324, 1476, 2384, +1692, 1446, 2476, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1866, 1416, 2509, +1656, 1669, 1872, +1656, 1669, 1873, +1655, 1669, 1874, +1654, 1670, 1875, +1652, 1671, 1877, +1650, 1671, 1879, +1646, 1672, 1883, +1642, 1674, 1887, +1636, 1675, 1893, +1633, 1678, 1897, +1629, 1681, 1903, +1624, 1685, 1911, +1616, 1691, 1922, +1595, 1684, 1941, +1542, 1684, 1969, +1504, 1684, 2010, +1525, 1691, 2073, +1483, 1671, 2138, +1324, 1684, 2221, +1259, 1662, 2297, +1564, 1621, 2385, +1796, 1617, 2477, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1894, 1605, 2510, +1843, 1802, 1967, +1843, 1802, 1968, +1843, 1802, 1969, +1842, 1802, 1969, +1841, 1802, 1971, +1840, 1802, 1972, +1839, 1802, 1974, +1837, 1802, 1977, +1834, 1802, 1981, +1831, 1802, 1986, +1824, 1804, 1994, +1814, 1807, 2005, +1802, 1811, 2018, +1790, 1817, 2033, +1773, 1811, 2052, +1772, 1809, 2081, +1734, 1809, 2120, +1747, 1811, 2175, +1708, 1801, 2234, +1744, 1800, 2309, +1774, 1800, 2391, +1911, 1796, 2475, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1790, 2515, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1991, 1958, 2038, +1991, 1958, 2038, +1990, 1958, 2040, +1989, 1958, 2041, +1988, 1958, 2043, +1986, 1958, 2045, +1983, 1958, 2049, +1980, 1958, 2053, +1976, 1958, 2059, +1970, 1958, 2067, +1962, 1958, 2074, +1950, 1958, 2082, +1946, 1958, 2104, +1947, 1962, 2142, +1936, 1964, 2196, +1923, 1957, 2231, +1922, 1958, 2310, +1954, 1955, 2394, +2043, 1964, 2481, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2127, 1958, 2514, +2128, 2127, 2076, +2128, 2127, 2077, +2129, 2127, 2077, +2129, 2127, 2077, +2129, 2127, 2077, +2129, 2127, 2078, +2130, 2127, 2078, +2130, 2127, 2079, +2131, 2127, 2080, +2132, 2127, 2080, +2133, 2127, 2082, +2135, 2127, 2084, +2135, 2127, 2087, +2129, 2127, 2097, +2122, 2127, 2109, +2124, 2131, 2129, +2128, 2135, 2163, +2124, 2132, 2210, +2119, 2127, 2251, +2135, 2128, 2316, +2164, 2135, 2400, +2226, 2151, 2485, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2257, 2159, 2520, +2374, 2355, 2126, +2374, 2355, 2127, +2374, 2355, 2127, +2374, 2355, 2127, +2374, 2355, 2127, +2374, 2355, 2128, +2374, 2355, 2129, +2375, 2355, 2130, +2375, 2355, 2131, +2375, 2355, 2133, +2376, 2355, 2135, +2377, 2355, 2138, +2376, 2355, 2140, +2375, 2355, 2143, +2372, 2354, 2147, +2374, 2356, 2159, +2375, 2358, 2191, +2375, 2357, 2230, +2381, 2358, 2275, +2398, 2368, 2335, +2415, 2368, 2409, +2469, 2388, 2498, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2498, 2395, 2532, +2679, 2653, 1955, +2679, 2653, 1955, +2679, 2653, 1956, +2679, 2653, 1957, +2679, 2653, 1958, +2679, 2654, 1961, +2679, 2654, 1963, +2679, 2654, 1967, +2679, 2654, 1964, +2679, 2653, 1961, +2678, 2652, 1955, +2678, 2650, 1948, +2677, 2648, 1939, +2677, 2650, 1960, +2676, 2655, 1976, +2677, 2657, 2013, +2680, 2657, 2068, +2679, 2658, 2122, +2683, 2657, 2209, +2688, 2661, 2310, +2695, 2666, 2408, +2715, 2679, 2527, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2727, 2684, 2579, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2427, +2712, 2769, 2428, +2712, 2769, 2428, +2712, 2769, 2428, +2713, 2769, 2428, +2713, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2717, 2770, 2436, +2716, 2770, 2440, +2714, 2770, 2444, +2712, 2772, 2461, +2714, 2774, 2492, +2714, 2775, 2523, +2712, 2774, 2554, +2717, 2778, 2620, +2725, 2789, 2702, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +2729, 2789, 2727, +1314, 0, 0, +1314, 0, 0, +1315, 0, 0, +1316, 0, 18, +1317, 0, 98, +1319, 0, 188, +1321, 0, 285, +1324, 0, 389, +1328, 0, 499, +1331, 0, 624, +1331, 0, 765, +1331, 0, 904, +1329, 0, 1054, +1312, 0, 1291, +1236, 0, 1533, +1269, 0, 1690, +1323, 0, 1781, +1534, 0, 1909, +1607, 0, 2039, +1502, 645, 2197, +677, 1023, 2352, +1658, 0, 2466, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1314, 0, 0, +1314, 0, 0, +1315, 0, 17, +1315, 0, 78, +1316, 0, 150, +1318, 0, 230, +1321, 0, 319, +1324, 0, 417, +1328, 0, 521, +1331, 0, 640, +1331, 0, 777, +1331, 0, 914, +1329, 0, 1059, +1311, 0, 1294, +1235, 0, 1535, +1268, 0, 1691, +1323, 0, 1782, +1533, 0, 1910, +1607, 0, 2039, +1501, 656, 2197, +679, 1026, 2352, +1659, 0, 2466, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1776, 0, 2506, +1314, 0, 0, +1314, 0, 17, +1314, 0, 97, +1315, 0, 149, +1316, 0, 211, +1318, 0, 282, +1320, 0, 363, +1323, 0, 452, +1327, 0, 549, +1330, 0, 662, +1330, 0, 794, +1330, 0, 926, +1328, 0, 1068, +1311, 0, 1298, +1235, 0, 1537, +1267, 0, 1692, +1323, 0, 1783, +1532, 0, 1911, +1606, 0, 2040, +1500, 671, 2198, +682, 1030, 2352, +1660, 0, 2466, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1777, 0, 2506, +1314, 0, 18, +1314, 0, 78, +1314, 0, 149, +1314, 0, 229, +1315, 0, 281, +1316, 0, 343, +1319, 0, 414, +1322, 0, 494, +1326, 0, 584, +1329, 0, 689, +1329, 0, 814, +1329, 0, 941, +1327, 0, 1079, +1310, 0, 1302, +1233, 0, 1540, +1266, 0, 1693, +1323, 0, 1784, +1531, 0, 1912, +1605, 0, 2041, +1498, 690, 2198, +686, 1035, 2353, +1661, 0, 2466, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1778, 0, 2506, +1314, 0, 98, +1314, 0, 150, +1314, 0, 211, +1314, 0, 281, +1314, 0, 361, +1315, 0, 413, +1318, 0, 475, +1321, 0, 546, +1325, 0, 627, +1328, 0, 723, +1328, 0, 840, +1328, 0, 961, +1326, 0, 1094, +1309, 0, 1309, +1232, 0, 1544, +1265, 0, 1695, +1323, 0, 1787, +1529, 0, 1914, +1603, 0, 2042, +1497, 714, 2199, +691, 1042, 2353, +1662, 0, 2466, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1779, 0, 2506, +1314, 0, 188, +1314, 0, 230, +1314, 0, 282, +1314, 0, 343, +1314, 0, 413, +1314, 0, 493, +1316, 0, 545, +1319, 0, 607, +1323, 0, 678, +1326, 0, 766, +1326, 0, 873, +1326, 0, 986, +1324, 0, 1113, +1307, 0, 1317, +1230, 0, 1549, +1263, 0, 1697, +1323, 30, 1790, +1527, 0, 1916, +1602, 132, 2043, +1495, 745, 2200, +698, 1051, 2354, +1663, 0, 2466, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1781, 0, 2506, +1314, 121, 285, +1314, 106, 319, +1314, 85, 363, +1314, 56, 414, +1314, 13, 475, +1314, 0, 545, +1314, 0, 625, +1317, 0, 677, +1321, 0, 739, +1324, 0, 816, +1324, 0, 914, +1324, 0, 1018, +1322, 0, 1138, +1304, 0, 1329, +1227, 0, 1556, +1261, 0, 1700, +1323, 163, 1794, +1524, 32, 1919, +1599, 264, 2045, +1491, 783, 2201, +706, 1063, 2354, +1666, 32, 2466, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1784, 0, 2506, +1314, 264, 389, +1314, 253, 417, +1314, 238, 452, +1314, 217, 494, +1314, 188, 546, +1314, 146, 607, +1314, 82, 677, +1314, 0, 757, +1318, 0, 809, +1321, 0, 876, +1321, 0, 963, +1321, 0, 1058, +1319, 0, 1168, +1302, 0, 1343, +1223, 0, 1565, +1257, 0, 1704, +1323, 295, 1799, +1520, 164, 1923, +1596, 396, 2047, +1487, 830, 2203, +718, 1079, 2355, +1668, 164, 2466, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1787, 0, 2506, +1314, 404, 499, +1314, 396, 521, +1314, 385, 549, +1314, 370, 584, +1314, 349, 627, +1314, 320, 678, +1314, 277, 739, +1314, 214, 809, +1314, 111, 889, +1317, 111, 946, +1317, 111, 1021, +1317, 111, 1106, +1315, 111, 1206, +1297, 111, 1362, +1218, 111, 1576, +1252, 111, 1709, +1323, 426, 1806, +1515, 296, 1928, +1592, 528, 2051, +1482, 885, 2205, +733, 1099, 2357, +1667, 296, 2465, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1791, 111, 2506, +1310, 530, 574, +1310, 524, 592, +1310, 516, 616, +1310, 505, 646, +1310, 490, 684, +1310, 468, 730, +1310, 438, 784, +1310, 394, 848, +1310, 328, 922, +1311, 244, 1001, +1311, 244, 1068, +1311, 244, 1145, +1310, 244, 1238, +1292, 244, 1379, +1207, 285, 1587, +1251, 265, 1716, +1322, 514, 1811, +1510, 413, 1934, +1587, 643, 2055, +1471, 941, 2208, +745, 1128, 2358, +1669, 442, 2465, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1794, 285, 2506, +1294, 639, 574, +1294, 634, 592, +1294, 627, 616, +1294, 619, 646, +1294, 607, 684, +1294, 591, 730, +1294, 568, 784, +1294, 535, 848, +1294, 488, 922, +1297, 430, 1001, +1304, 376, 1080, +1304, 376, 1155, +1302, 376, 1246, +1284, 376, 1385, +1178, 503, 1590, +1239, 473, 1720, +1329, 626, 1816, +1488, 470, 1933, +1583, 729, 2060, +1450, 988, 2209, +745, 1169, 2362, +1682, 607, 2467, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1792, 503, 2507, +1274, 753, 574, +1274, 749, 592, +1274, 744, 616, +1274, 737, 646, +1274, 728, 684, +1274, 716, 730, +1274, 698, 784, +1274, 674, 848, +1274, 640, 922, +1276, 599, 1001, +1284, 562, 1080, +1294, 508, 1169, +1292, 508, 1257, +1273, 508, 1393, +1137, 691, 1596, +1203, 671, 1723, +1338, 742, 1822, +1453, 529, 1930, +1577, 824, 2068, +1421, 1044, 2212, +672, 1212, 2365, +1699, 762, 2468, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1788, 691, 2509, +1258, 900, 682, +1259, 900, 693, +1259, 896, 712, +1259, 891, 736, +1259, 885, 767, +1259, 876, 806, +1259, 864, 852, +1259, 847, 908, +1259, 824, 973, +1261, 797, 1044, +1269, 774, 1117, +1280, 741, 1199, +1289, 701, 1290, +1270, 701, 1417, +1120, 852, 1611, +1159, 869, 1734, +1344, 895, 1836, +1405, 663, 1931, +1563, 942, 2078, +1372, 1118, 2218, +602, 1254, 2368, +1718, 915, 2470, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1784, 871, 2510, +1314, 1134, 1183, +1314, 1134, 1187, +1315, 1134, 1191, +1316, 1134, 1197, +1317, 1134, 1206, +1319, 1134, 1216, +1321, 1134, 1230, +1324, 1134, 1248, +1328, 1134, 1271, +1333, 1131, 1302, +1340, 1120, 1345, +1349, 1105, 1396, +1358, 1087, 1457, +1341, 1087, 1528, +1216, 1158, 1687, +1159, 1142, 1780, +1317, 1176, 1886, +1360, 1041, 1962, +1486, 1159, 2104, +1228, 1237, 2234, +1015, 1275, 2368, +1721, 1100, 2471, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1784, 1087, 2512, +1399, 1351, 1421, +1399, 1351, 1423, +1400, 1351, 1426, +1400, 1351, 1429, +1401, 1351, 1434, +1403, 1351, 1441, +1405, 1351, 1449, +1407, 1351, 1460, +1410, 1351, 1475, +1407, 1351, 1495, +1382, 1351, 1523, +1347, 1351, 1559, +1336, 1345, 1602, +1319, 1345, 1655, +1383, 1345, 1736, +1321, 1339, 1825, +1361, 1378, 1936, +1367, 1360, 2014, +1313, 1367, 2124, +1014, 1399, 2255, +1228, 1332, 2375, +1681, 1258, 2475, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1514, 1522, 1673, +1514, 1522, 1673, +1513, 1522, 1674, +1512, 1522, 1674, +1510, 1522, 1676, +1508, 1522, 1677, +1505, 1522, 1679, +1501, 1522, 1682, +1495, 1522, 1685, +1489, 1523, 1691, +1475, 1525, 1706, +1447, 1525, 1730, +1412, 1526, 1762, +1397, 1537, 1811, +1426, 1537, 1865, +1415, 1525, 1919, +1395, 1535, 2005, +1299, 1551, 2087, +1205, 1526, 2170, +1197, 1525, 2279, +1402, 1488, 2382, +1717, 1446, 2476, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1900, 1416, 2509, +1678, 1669, 1879, +1678, 1669, 1879, +1678, 1669, 1880, +1678, 1669, 1882, +1678, 1669, 1884, +1678, 1669, 1886, +1678, 1669, 1889, +1678, 1669, 1894, +1678, 1669, 1900, +1674, 1670, 1903, +1671, 1673, 1909, +1667, 1678, 1917, +1659, 1683, 1928, +1644, 1684, 1948, +1597, 1684, 1976, +1591, 1683, 2015, +1577, 1683, 2072, +1536, 1664, 2140, +1423, 1683, 2226, +1349, 1660, 2299, +1619, 1615, 2384, +1819, 1607, 2477, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1912, 1605, 2509, +1848, 1802, 1967, +1848, 1802, 1968, +1849, 1802, 1969, +1849, 1803, 1970, +1849, 1803, 1972, +1850, 1804, 1973, +1851, 1805, 1976, +1851, 1806, 1980, +1853, 1807, 1984, +1853, 1808, 1990, +1846, 1810, 1998, +1837, 1813, 2009, +1825, 1817, 2022, +1820, 1817, 2033, +1804, 1811, 2052, +1785, 1809, 2084, +1764, 1804, 2118, +1767, 1811, 2177, +1736, 1801, 2237, +1751, 1800, 2307, +1774, 1800, 2391, +1919, 1797, 2474, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +2000, 1784, 2514, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2038, +1992, 1958, 2038, +1992, 1958, 2039, +1992, 1958, 2040, +1991, 1958, 2042, +1988, 1958, 2046, +1983, 1958, 2052, +1978, 1958, 2060, +1974, 1962, 2077, +1963, 1962, 2086, +1955, 1958, 2110, +1955, 1962, 2141, +1953, 1964, 2193, +1941, 1953, 2231, +1931, 1953, 2310, +1966, 1959, 2394, +2048, 1966, 2481, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2129, 1963, 2515, +2134, 2127, 2070, +2134, 2127, 2070, +2134, 2127, 2071, +2135, 2127, 2071, +2135, 2127, 2073, +2135, 2127, 2074, +2135, 2127, 2076, +2136, 2127, 2078, +2137, 2127, 2081, +2137, 2127, 2084, +2139, 2127, 2085, +2140, 2127, 2087, +2141, 2127, 2091, +2135, 2127, 2100, +2127, 2127, 2112, +2129, 2128, 2129, +2136, 2135, 2161, +2130, 2135, 2208, +2125, 2127, 2253, +2141, 2131, 2316, +2170, 2132, 2397, +2230, 2150, 2485, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2266, 2159, 2520, +2377, 2355, 2126, +2377, 2355, 2127, +2377, 2355, 2127, +2377, 2355, 2127, +2377, 2355, 2127, +2378, 2355, 2127, +2378, 2355, 2128, +2378, 2355, 2128, +2378, 2355, 2129, +2379, 2355, 2130, +2380, 2355, 2133, +2380, 2355, 2135, +2380, 2355, 2137, +2378, 2357, 2143, +2376, 2356, 2147, +2376, 2354, 2159, +2375, 2358, 2194, +2375, 2357, 2230, +2381, 2357, 2273, +2399, 2366, 2335, +2418, 2368, 2408, +2472, 2387, 2495, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2499, 2395, 2533, +2680, 2655, 1964, +2680, 2655, 1964, +2680, 2655, 1964, +2680, 2655, 1964, +2680, 2655, 1964, +2680, 2655, 1964, +2680, 2655, 1964, +2680, 2655, 1964, +2679, 2655, 1968, +2679, 2655, 1970, +2679, 2654, 1965, +2678, 2652, 1958, +2677, 2650, 1949, +2677, 2648, 1945, +2675, 2653, 1962, +2676, 2656, 2011, +2680, 2657, 2064, +2681, 2657, 2122, +2684, 2657, 2213, +2688, 2662, 2314, +2696, 2667, 2413, +2716, 2679, 2527, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2727, 2684, 2578, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2427, +2713, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2428, +2714, 2769, 2429, +2714, 2769, 2429, +2715, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2718, 2772, 2447, +2715, 2770, 2444, +2712, 2771, 2455, +2714, 2774, 2492, +2716, 2775, 2523, +2714, 2775, 2560, +2719, 2781, 2625, +2725, 2789, 2703, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +2729, 2791, 2730, +1471, 0, 0, +1471, 0, 0, +1472, 0, 0, +1472, 0, 18, +1473, 0, 98, +1475, 0, 188, +1476, 0, 285, +1478, 0, 389, +1481, 0, 499, +1485, 0, 614, +1490, 0, 733, +1496, 0, 855, +1498, 0, 1011, +1486, 0, 1266, +1470, 0, 1472, +1490, 0, 1659, +1524, 0, 1789, +1589, 0, 1904, +1654, 0, 2053, +1531, 645, 2197, +923, 1046, 2356, +1710, 0, 2469, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1471, 0, 0, +1471, 0, 0, +1471, 0, 17, +1472, 0, 78, +1473, 0, 150, +1474, 0, 230, +1476, 0, 319, +1478, 0, 417, +1481, 0, 521, +1485, 0, 631, +1489, 0, 746, +1496, 0, 865, +1497, 0, 1017, +1486, 0, 1269, +1469, 0, 1474, +1489, 0, 1660, +1524, 0, 1790, +1589, 0, 1905, +1653, 0, 2053, +1531, 656, 2197, +924, 1049, 2356, +1710, 0, 2469, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1801, 0, 2506, +1471, 0, 0, +1471, 0, 17, +1471, 0, 97, +1472, 0, 149, +1472, 0, 211, +1474, 0, 282, +1475, 0, 363, +1477, 0, 452, +1480, 0, 549, +1484, 0, 653, +1489, 0, 763, +1496, 0, 878, +1497, 0, 1026, +1485, 0, 1273, +1469, 0, 1476, +1489, 0, 1661, +1524, 0, 1791, +1588, 0, 1905, +1652, 0, 2054, +1530, 671, 2198, +926, 1053, 2357, +1711, 0, 2469, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1802, 0, 2506, +1471, 0, 18, +1471, 0, 78, +1471, 0, 149, +1471, 0, 229, +1472, 0, 281, +1473, 0, 343, +1475, 0, 414, +1477, 0, 494, +1480, 0, 584, +1483, 0, 681, +1488, 0, 785, +1495, 0, 895, +1496, 0, 1039, +1485, 0, 1278, +1468, 0, 1480, +1488, 0, 1662, +1524, 0, 1793, +1587, 0, 1907, +1651, 0, 2054, +1529, 690, 2198, +928, 1058, 2357, +1712, 0, 2469, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1803, 0, 2506, +1471, 0, 98, +1471, 0, 150, +1471, 0, 211, +1471, 0, 281, +1471, 0, 361, +1472, 0, 413, +1474, 0, 475, +1476, 0, 546, +1479, 0, 627, +1482, 0, 716, +1487, 0, 813, +1494, 0, 917, +1495, 0, 1055, +1484, 0, 1285, +1467, 0, 1484, +1487, 0, 1664, +1524, 0, 1795, +1585, 0, 1908, +1650, 0, 2055, +1527, 714, 2199, +931, 1065, 2357, +1713, 0, 2469, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1804, 0, 2506, +1471, 0, 188, +1471, 0, 230, +1471, 0, 282, +1471, 0, 343, +1471, 0, 413, +1471, 0, 493, +1472, 0, 545, +1475, 0, 607, +1478, 0, 678, +1481, 0, 759, +1486, 0, 848, +1493, 0, 946, +1494, 0, 1075, +1482, 0, 1294, +1466, 0, 1490, +1486, 0, 1667, +1524, 30, 1798, +1584, 0, 1911, +1648, 132, 2057, +1525, 745, 2200, +935, 1074, 2358, +1715, 0, 2469, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1806, 0, 2506, +1471, 121, 285, +1471, 106, 319, +1471, 85, 363, +1471, 56, 414, +1471, 13, 475, +1471, 0, 545, +1471, 0, 625, +1473, 0, 677, +1476, 0, 739, +1480, 0, 810, +1485, 0, 891, +1491, 0, 980, +1493, 0, 1102, +1481, 0, 1306, +1464, 0, 1497, +1485, 0, 1670, +1524, 163, 1802, +1581, 32, 1914, +1646, 264, 2058, +1522, 783, 2201, +940, 1085, 2358, +1716, 32, 2469, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1809, 0, 2506, +1471, 264, 389, +1471, 253, 417, +1471, 238, 452, +1471, 217, 494, +1471, 188, 546, +1471, 146, 607, +1471, 82, 677, +1471, 0, 757, +1474, 0, 809, +1478, 0, 871, +1483, 0, 942, +1489, 0, 1023, +1491, 0, 1135, +1479, 0, 1321, +1462, 0, 1507, +1482, 0, 1674, +1524, 295, 1807, +1578, 164, 1918, +1644, 396, 2061, +1518, 830, 2203, +947, 1100, 2359, +1719, 164, 2469, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1812, 0, 2506, +1471, 404, 499, +1471, 396, 521, +1471, 385, 549, +1471, 370, 584, +1471, 349, 627, +1471, 320, 678, +1471, 277, 739, +1471, 214, 809, +1471, 111, 889, +1475, 111, 942, +1480, 111, 1003, +1486, 111, 1075, +1488, 111, 1176, +1476, 111, 1340, +1459, 111, 1520, +1480, 111, 1680, +1524, 426, 1814, +1573, 296, 1923, +1640, 528, 2064, +1513, 885, 2205, +956, 1119, 2361, +1717, 296, 2469, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1816, 111, 2506, +1471, 542, 614, +1471, 536, 631, +1471, 528, 653, +1471, 517, 681, +1471, 502, 716, +1471, 482, 759, +1471, 452, 810, +1471, 410, 871, +1471, 346, 942, +1471, 244, 1021, +1476, 244, 1074, +1483, 244, 1135, +1484, 244, 1225, +1472, 244, 1369, +1455, 244, 1537, +1476, 244, 1687, +1520, 502, 1820, +1567, 428, 1930, +1634, 660, 2068, +1506, 950, 2208, +968, 1143, 2362, +1715, 428, 2469, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1821, 244, 2506, +1471, 678, 733, +1471, 674, 746, +1471, 668, 763, +1471, 660, 785, +1471, 649, 813, +1471, 634, 848, +1471, 613, 891, +1471, 584, 942, +1471, 542, 1003, +1471, 478, 1074, +1471, 376, 1153, +1478, 376, 1206, +1479, 376, 1283, +1467, 376, 1412, +1450, 376, 1559, +1471, 376, 1701, +1516, 581, 1827, +1566, 591, 1940, +1627, 792, 2074, +1496, 1025, 2212, +983, 1174, 2364, +1712, 560, 2468, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1828, 376, 2506, +1471, 814, 855, +1471, 811, 865, +1471, 806, 878, +1471, 800, 895, +1471, 792, 917, +1471, 782, 946, +1471, 767, 980, +1471, 746, 1023, +1471, 717, 1075, +1471, 674, 1135, +1471, 611, 1206, +1471, 508, 1285, +1472, 508, 1352, +1460, 508, 1465, +1443, 508, 1587, +1464, 508, 1721, +1509, 670, 1836, +1566, 751, 1952, +1617, 925, 2081, +1483, 1109, 2218, +935, 1212, 2368, +1708, 692, 2467, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1838, 508, 2506, +1467, 954, 955, +1467, 954, 960, +1467, 951, 971, +1467, 947, 985, +1467, 941, 1004, +1467, 933, 1027, +1467, 923, 1056, +1467, 908, 1092, +1467, 888, 1137, +1467, 859, 1191, +1467, 818, 1254, +1467, 755, 1326, +1471, 701, 1400, +1458, 701, 1503, +1441, 701, 1611, +1446, 742, 1738, +1508, 833, 1851, +1542, 872, 1959, +1602, 1037, 2091, +1448, 1185, 2224, +886, 1254, 2372, +1718, 855, 2468, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1839, 727, 2507, +1503, 1167, 1293, +1503, 1167, 1296, +1504, 1167, 1299, +1504, 1167, 1304, +1505, 1167, 1311, +1506, 1167, 1319, +1508, 1167, 1330, +1510, 1167, 1344, +1512, 1167, 1363, +1514, 1162, 1390, +1514, 1141, 1432, +1514, 1111, 1482, +1517, 1087, 1536, +1506, 1087, 1597, +1491, 1087, 1687, +1446, 1077, 1783, +1489, 1144, 1900, +1509, 1144, 1988, +1532, 1221, 2116, +1329, 1289, 2240, +1151, 1275, 2372, +1721, 1061, 2469, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1839, 1003, 2508, +1547, 1351, 1534, +1547, 1351, 1536, +1547, 1351, 1538, +1548, 1351, 1541, +1549, 1351, 1545, +1550, 1351, 1550, +1551, 1351, 1556, +1553, 1351, 1565, +1555, 1351, 1577, +1558, 1351, 1592, +1563, 1351, 1611, +1569, 1351, 1636, +1573, 1345, 1671, +1563, 1345, 1717, +1550, 1345, 1771, +1498, 1335, 1850, +1489, 1358, 1942, +1476, 1376, 2036, +1418, 1388, 2147, +1096, 1399, 2261, +1290, 1332, 2375, +1730, 1258, 2473, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1839, 1219, 2510, +1626, 1522, 1733, +1625, 1522, 1734, +1625, 1522, 1734, +1623, 1522, 1735, +1622, 1522, 1736, +1621, 1522, 1737, +1618, 1522, 1739, +1615, 1522, 1742, +1611, 1522, 1745, +1605, 1522, 1749, +1605, 1522, 1760, +1609, 1522, 1778, +1596, 1523, 1805, +1587, 1534, 1850, +1574, 1537, 1894, +1558, 1522, 1941, +1509, 1521, 2012, +1413, 1563, 2107, +1330, 1535, 2187, +1296, 1523, 2285, +1459, 1491, 2382, +1767, 1446, 2474, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1910, 1416, 2509, +1737, 1669, 1898, +1737, 1669, 1899, +1737, 1669, 1900, +1737, 1669, 1901, +1737, 1669, 1903, +1737, 1669, 1905, +1737, 1669, 1908, +1737, 1669, 1913, +1737, 1669, 1918, +1732, 1669, 1922, +1727, 1669, 1925, +1719, 1669, 1930, +1711, 1672, 1940, +1697, 1674, 1960, +1687, 1684, 2003, +1675, 1681, 2036, +1638, 1672, 2080, +1565, 1674, 2153, +1492, 1672, 2229, +1526, 1649, 2305, +1680, 1621, 2385, +1871, 1607, 2473, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1954, 1605, 2509, +1862, 1802, 1972, +1862, 1802, 1973, +1862, 1802, 1973, +1862, 1803, 1975, +1862, 1803, 1976, +1863, 1804, 1978, +1864, 1805, 1981, +1865, 1806, 1984, +1866, 1807, 1989, +1868, 1809, 1995, +1868, 1809, 2004, +1868, 1809, 2014, +1861, 1811, 2027, +1856, 1811, 2038, +1842, 1811, 2056, +1824, 1809, 2088, +1829, 1804, 2122, +1805, 1804, 2175, +1793, 1801, 2242, +1782, 1800, 2309, +1820, 1797, 2390, +1940, 1796, 2477, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +2014, 1783, 2512, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2037, +1992, 1958, 2038, +1992, 1958, 2038, +1992, 1958, 2039, +1992, 1958, 2040, +1992, 1958, 2041, +1992, 1958, 2042, +1992, 1958, 2044, +1989, 1958, 2051, +1984, 1962, 2068, +1979, 1968, 2090, +1970, 1962, 2115, +1966, 1962, 2148, +1966, 1964, 2190, +1964, 1947, 2231, +1943, 1947, 2310, +1978, 1965, 2395, +2061, 1971, 2481, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2133, 1968, 2516, +2142, 2127, 2061, +2142, 2127, 2061, +2142, 2127, 2062, +2142, 2127, 2063, +2142, 2127, 2064, +2143, 2127, 2065, +2143, 2127, 2067, +2143, 2127, 2069, +2144, 2127, 2072, +2145, 2127, 2076, +2146, 2127, 2082, +2148, 2127, 2089, +2148, 2127, 2095, +2143, 2127, 2104, +2135, 2127, 2116, +2137, 2127, 2132, +2144, 2131, 2161, +2141, 2135, 2204, +2133, 2127, 2256, +2149, 2134, 2316, +2174, 2130, 2395, +2237, 2146, 2485, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2277, 2159, 2520, +2379, 2355, 2126, +2380, 2355, 2127, +2380, 2355, 2127, +2380, 2355, 2127, +2380, 2355, 2127, +2380, 2355, 2127, +2380, 2355, 2128, +2381, 2355, 2128, +2381, 2355, 2129, +2381, 2355, 2130, +2382, 2355, 2131, +2382, 2355, 2133, +2382, 2355, 2135, +2381, 2357, 2141, +2379, 2358, 2148, +2379, 2355, 2161, +2378, 2357, 2192, +2376, 2358, 2230, +2382, 2354, 2270, +2402, 2364, 2335, +2420, 2368, 2405, +2473, 2383, 2495, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2499, 2394, 2533, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2657, 1947, +2681, 2656, 1951, +2680, 2656, 1956, +2680, 2656, 1963, +2679, 2655, 1973, +2679, 2654, 1971, +2678, 2651, 1967, +2678, 2651, 1962, +2678, 2655, 2011, +2679, 2657, 2064, +2682, 2657, 2129, +2684, 2657, 2213, +2688, 2661, 2311, +2699, 2668, 2415, +2717, 2681, 2528, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2726, 2683, 2577, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2715, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2427, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2428, +2716, 2769, 2429, +2716, 2769, 2429, +2717, 2769, 2430, +2717, 2769, 2431, +2718, 2770, 2433, +2719, 2772, 2443, +2720, 2775, 2457, +2716, 2772, 2452, +2713, 2770, 2455, +2714, 2773, 2485, +2718, 2774, 2523, +2717, 2777, 2567, +2721, 2782, 2627, +2725, 2788, 2702, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +2729, 2794, 2733, +1677, 0, 708, +1676, 0, 722, +1676, 0, 740, +1675, 0, 763, +1674, 0, 792, +1672, 0, 829, +1670, 0, 873, +1667, 0, 927, +1663, 0, 989, +1658, 0, 1062, +1657, 0, 1123, +1662, 0, 1179, +1666, 0, 1250, +1649, 0, 1372, +1636, 0, 1533, +1634, 0, 1672, +1671, 0, 1828, +1667, 0, 1929, +1689, 355, 2079, +1608, 810, 2211, +1232, 994, 2359, +1771, 0, 2470, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1854, 0, 2508, +1676, 0, 726, +1676, 0, 735, +1675, 0, 753, +1674, 0, 775, +1673, 0, 804, +1672, 0, 839, +1669, 0, 883, +1667, 0, 935, +1663, 0, 997, +1658, 0, 1068, +1657, 0, 1129, +1662, 0, 1184, +1666, 0, 1253, +1649, 0, 1375, +1636, 0, 1535, +1635, 0, 1673, +1670, 0, 1829, +1666, 0, 1930, +1689, 372, 2079, +1607, 814, 2211, +1238, 995, 2359, +1771, 0, 2470, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1676, 0, 749, +1675, 0, 758, +1675, 0, 770, +1674, 0, 791, +1673, 0, 819, +1672, 0, 853, +1669, 0, 895, +1666, 0, 946, +1663, 0, 1007, +1657, 0, 1077, +1657, 0, 1136, +1661, 0, 1191, +1665, 0, 1259, +1649, 0, 1378, +1636, 0, 1537, +1635, 0, 1674, +1669, 0, 1829, +1665, 0, 1930, +1688, 394, 2080, +1606, 821, 2211, +1245, 996, 2359, +1771, 0, 2470, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1675, 0, 777, +1674, 0, 786, +1674, 0, 797, +1674, 0, 812, +1673, 0, 838, +1671, 0, 871, +1669, 0, 912, +1666, 0, 961, +1662, 0, 1020, +1657, 0, 1088, +1656, 0, 1146, +1661, 0, 1199, +1665, 0, 1266, +1649, 0, 1383, +1636, 0, 1541, +1636, 0, 1676, +1668, 0, 1830, +1663, 0, 1932, +1687, 422, 2080, +1605, 829, 2212, +1255, 998, 2359, +1772, 0, 2470, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1855, 0, 2508, +1674, 0, 814, +1673, 0, 822, +1673, 0, 832, +1673, 0, 845, +1672, 0, 863, +1671, 0, 894, +1668, 0, 933, +1666, 0, 980, +1662, 0, 1036, +1656, 0, 1102, +1655, 0, 1159, +1660, 0, 1210, +1664, 0, 1276, +1649, 0, 1390, +1636, 0, 1545, +1637, 0, 1679, +1667, 0, 1831, +1662, 0, 1934, +1686, 457, 2081, +1603, 840, 2212, +1268, 1001, 2360, +1772, 0, 2470, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1856, 0, 2508, +1672, 0, 858, +1672, 0, 865, +1672, 0, 874, +1671, 0, 887, +1671, 0, 903, +1670, 0, 923, +1667, 0, 960, +1664, 0, 1004, +1661, 0, 1058, +1655, 0, 1121, +1655, 0, 1175, +1659, 0, 1225, +1663, 0, 1289, +1649, 0, 1398, +1636, 0, 1551, +1639, 0, 1683, +1666, 0, 1832, +1659, 132, 1936, +1684, 500, 2083, +1600, 854, 2213, +1285, 1004, 2360, +1773, 0, 2470, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1857, 0, 2508, +1670, 32, 911, +1669, 32, 917, +1669, 32, 926, +1669, 32, 937, +1668, 32, 951, +1667, 32, 970, +1667, 32, 993, +1663, 32, 1035, +1660, 32, 1085, +1654, 32, 1144, +1654, 32, 1196, +1658, 32, 1244, +1662, 0, 1305, +1649, 0, 1410, +1636, 0, 1560, +1641, 32, 1688, +1663, 32, 1833, +1656, 264, 1939, +1682, 551, 2084, +1596, 873, 2214, +1306, 1009, 2361, +1773, 0, 2470, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1859, 32, 2508, +1667, 164, 973, +1667, 164, 979, +1666, 164, 986, +1666, 164, 996, +1666, 164, 1009, +1664, 164, 1025, +1663, 164, 1046, +1662, 164, 1073, +1658, 164, 1119, +1653, 164, 1174, +1652, 164, 1223, +1657, 164, 1268, +1661, 137, 1326, +1649, 0, 1424, +1636, 0, 1570, +1644, 164, 1695, +1661, 164, 1835, +1652, 396, 1943, +1680, 612, 2086, +1591, 896, 2215, +1333, 1014, 2362, +1774, 0, 2470, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1861, 164, 2508, +1663, 296, 1045, +1663, 296, 1050, +1663, 296, 1056, +1662, 296, 1065, +1662, 296, 1075, +1661, 296, 1090, +1660, 296, 1108, +1658, 296, 1131, +1656, 296, 1161, +1651, 296, 1212, +1650, 296, 1257, +1655, 296, 1299, +1659, 276, 1353, +1649, 111, 1443, +1636, 111, 1584, +1648, 296, 1704, +1657, 296, 1838, +1646, 528, 1948, +1676, 683, 2089, +1585, 926, 2217, +1367, 1022, 2363, +1772, 0, 2470, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1863, 296, 2508, +1658, 428, 1127, +1658, 428, 1131, +1657, 428, 1136, +1657, 428, 1143, +1656, 428, 1152, +1655, 428, 1164, +1654, 428, 1180, +1653, 428, 1200, +1651, 428, 1225, +1648, 428, 1257, +1648, 428, 1298, +1653, 428, 1336, +1657, 413, 1387, +1648, 265, 1468, +1636, 244, 1601, +1653, 428, 1715, +1661, 428, 1846, +1638, 660, 1955, +1671, 762, 2093, +1576, 963, 2219, +1408, 1032, 2365, +1768, 91, 2470, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1866, 428, 2508, +1655, 583, 1188, +1655, 583, 1191, +1654, 583, 1196, +1654, 583, 1202, +1654, 583, 1210, +1653, 583, 1221, +1651, 583, 1234, +1650, 583, 1252, +1648, 583, 1275, +1646, 583, 1304, +1644, 536, 1348, +1649, 536, 1383, +1653, 524, 1429, +1645, 413, 1503, +1633, 376, 1622, +1654, 536, 1730, +1662, 536, 1854, +1635, 766, 1962, +1664, 863, 2099, +1566, 1025, 2222, +1432, 1062, 2367, +1764, 309, 2470, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1872, 536, 2508, +1655, 745, 1237, +1655, 745, 1240, +1654, 745, 1244, +1654, 745, 1249, +1654, 745, 1257, +1653, 745, 1266, +1651, 745, 1279, +1650, 745, 1295, +1648, 745, 1315, +1646, 745, 1342, +1644, 713, 1383, +1644, 633, 1439, +1648, 624, 1479, +1640, 536, 1547, +1628, 508, 1646, +1649, 633, 1749, +1657, 633, 1863, +1635, 881, 1973, +1655, 979, 2105, +1554, 1109, 2228, +1415, 1110, 2370, +1760, 519, 2469, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1880, 633, 2508, +1655, 918, 1304, +1656, 918, 1306, +1655, 918, 1310, +1655, 918, 1314, +1654, 918, 1320, +1654, 918, 1329, +1653, 918, 1340, +1651, 918, 1354, +1649, 918, 1372, +1647, 918, 1395, +1645, 897, 1432, +1645, 845, 1482, +1643, 779, 1541, +1635, 719, 1601, +1623, 701, 1686, +1641, 772, 1775, +1650, 779, 1877, +1631, 1007, 1989, +1643, 1092, 2115, +1533, 1205, 2236, +1384, 1170, 2375, +1758, 725, 2468, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1889, 758, 2508, +1647, 1170, 1441, +1648, 1170, 1443, +1648, 1170, 1445, +1648, 1170, 1448, +1649, 1170, 1452, +1650, 1170, 1457, +1651, 1170, 1463, +1653, 1170, 1472, +1654, 1170, 1484, +1655, 1170, 1500, +1654, 1157, 1529, +1654, 1129, 1570, +1651, 1095, 1619, +1635, 1095, 1678, +1623, 1087, 1751, +1615, 1062, 1817, +1632, 1090, 1907, +1595, 1178, 2016, +1626, 1217, 2123, +1463, 1323, 2255, +1427, 1258, 2375, +1780, 1002, 2468, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1884, 986, 2506, +1671, 1358, 1617, +1671, 1358, 1618, +1672, 1358, 1619, +1672, 1358, 1621, +1672, 1358, 1624, +1673, 1358, 1628, +1674, 1358, 1632, +1676, 1358, 1638, +1678, 1358, 1646, +1680, 1358, 1657, +1683, 1358, 1672, +1687, 1358, 1694, +1687, 1345, 1729, +1672, 1345, 1775, +1659, 1345, 1825, +1644, 1322, 1879, +1625, 1320, 1950, +1565, 1390, 2060, +1550, 1377, 2150, +1313, 1430, 2275, +1491, 1332, 2378, +1794, 1220, 2471, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1883, 1202, 2507, +1720, 1522, 1779, +1720, 1522, 1780, +1719, 1522, 1781, +1718, 1522, 1782, +1717, 1522, 1783, +1716, 1522, 1785, +1714, 1522, 1787, +1712, 1522, 1790, +1708, 1522, 1795, +1704, 1522, 1800, +1703, 1522, 1811, +1707, 1522, 1827, +1711, 1522, 1847, +1703, 1522, 1873, +1693, 1522, 1912, +1668, 1522, 1965, +1628, 1506, 2021, +1607, 1566, 2121, +1540, 1536, 2191, +1494, 1506, 2283, +1572, 1474, 2382, +1813, 1446, 2473, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1923, 1435, 2511, +1810, 1655, 1910, +1809, 1655, 1911, +1809, 1655, 1911, +1808, 1655, 1912, +1807, 1656, 1913, +1806, 1657, 1915, +1805, 1658, 1918, +1802, 1659, 1921, +1800, 1661, 1925, +1796, 1662, 1930, +1791, 1662, 1934, +1784, 1662, 1939, +1776, 1662, 1948, +1775, 1662, 1972, +1766, 1670, 2011, +1745, 1681, 2051, +1732, 1662, 2087, +1680, 1676, 2155, +1604, 1655, 2226, +1644, 1643, 2305, +1738, 1626, 2385, +1900, 1611, 2473, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1984, 1617, 2510, +1907, 1800, 1983, +1907, 1800, 1984, +1907, 1800, 1984, +1907, 1800, 1985, +1907, 1800, 1986, +1907, 1800, 1987, +1907, 1800, 1989, +1907, 1800, 1991, +1907, 1800, 1994, +1907, 1800, 1997, +1906, 1801, 2005, +1906, 1801, 2015, +1905, 1801, 2029, +1901, 1801, 2043, +1890, 1801, 2062, +1872, 1801, 2086, +1874, 1807, 2128, +1850, 1801, 2174, +1847, 1800, 2243, +1818, 1792, 2312, +1871, 1797, 2387, +1976, 1799, 2480, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1783, 2511, +2034, 1958, 2033, +2033, 1958, 2033, +2033, 1958, 2034, +2032, 1958, 2034, +2031, 1959, 2036, +2031, 1959, 2037, +2029, 1960, 2039, +2027, 1961, 2041, +2025, 1961, 2044, +2021, 1963, 2049, +2020, 1963, 2052, +2020, 1963, 2054, +2020, 1963, 2059, +2020, 1959, 2069, +2016, 1962, 2088, +2004, 1969, 2111, +1998, 1964, 2152, +1993, 1963, 2193, +1987, 1952, 2238, +1975, 1952, 2313, +2009, 1966, 2398, +2073, 1966, 2481, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2135, 1969, 2517, +2163, 2131, 2063, +2163, 2131, 2063, +2163, 2131, 2064, +2163, 2131, 2065, +2163, 2131, 2065, +2163, 2131, 2066, +2163, 2131, 2068, +2163, 2131, 2069, +2163, 2131, 2072, +2163, 2131, 2075, +2164, 2131, 2080, +2165, 2131, 2087, +2166, 2131, 2096, +2164, 2131, 2105, +2157, 2131, 2117, +2148, 2127, 2128, +2154, 2127, 2154, +2155, 2131, 2206, +2143, 2127, 2260, +2159, 2135, 2315, +2188, 2134, 2395, +2251, 2149, 2486, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2283, 2159, 2520, +2386, 2355, 2123, +2386, 2355, 2123, +2386, 2356, 2123, +2387, 2356, 2123, +2387, 2356, 2124, +2387, 2356, 2124, +2387, 2356, 2125, +2387, 2357, 2126, +2388, 2357, 2127, +2388, 2357, 2129, +2389, 2358, 2131, +2389, 2358, 2133, +2389, 2357, 2135, +2386, 2356, 2141, +2384, 2356, 2148, +2382, 2356, 2170, +2388, 2357, 2191, +2386, 2356, 2226, +2394, 2358, 2272, +2409, 2366, 2337, +2431, 2373, 2403, +2476, 2384, 2495, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2508, 2398, 2531, +2684, 2656, 1957, +2684, 2656, 1957, +2684, 2656, 1956, +2684, 2656, 1956, +2684, 2656, 1956, +2684, 2656, 1956, +2684, 2656, 1955, +2684, 2656, 1954, +2684, 2656, 1955, +2684, 2656, 1956, +2684, 2656, 1961, +2683, 2656, 1971, +2683, 2655, 1982, +2682, 2655, 1994, +2682, 2655, 1993, +2681, 2656, 2011, +2682, 2656, 2069, +2683, 2657, 2133, +2686, 2657, 2216, +2691, 2663, 2315, +2700, 2669, 2417, +2719, 2681, 2533, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2726, 2683, 2576, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2437, +2718, 2771, 2436, +2718, 2771, 2436, +2718, 2771, 2435, +2718, 2771, 2435, +2717, 2770, 2434, +2717, 2770, 2432, +2717, 2770, 2430, +2717, 2769, 2430, +2718, 2769, 2431, +2718, 2770, 2433, +2719, 2771, 2443, +2720, 2774, 2457, +2721, 2773, 2466, +2716, 2771, 2466, +2717, 2774, 2492, +2718, 2776, 2528, +2718, 2777, 2569, +2722, 2782, 2624, +2727, 2788, 2703, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +2731, 2794, 2734, +1824, 0, 1212, +1824, 0, 1217, +1825, 0, 1223, +1825, 0, 1231, +1826, 0, 1242, +1827, 0, 1255, +1829, 0, 1273, +1831, 0, 1296, +1833, 0, 1325, +1830, 0, 1360, +1825, 0, 1405, +1819, 0, 1458, +1810, 0, 1521, +1804, 0, 1576, +1787, 0, 1659, +1777, 0, 1755, +1770, 0, 1865, +1790, 0, 1986, +1740, 750, 2108, +1692, 916, 2230, +1561, 947, 2370, +1845, 0, 2469, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1920, 0, 2511, +1824, 0, 1216, +1824, 0, 1219, +1825, 0, 1225, +1825, 0, 1233, +1826, 0, 1243, +1827, 0, 1257, +1829, 0, 1275, +1831, 0, 1298, +1833, 0, 1326, +1830, 0, 1362, +1825, 0, 1406, +1819, 0, 1459, +1810, 0, 1523, +1804, 0, 1578, +1787, 0, 1661, +1777, 0, 1756, +1770, 0, 1866, +1790, 32, 1986, +1740, 754, 2108, +1692, 922, 2231, +1561, 949, 2370, +1845, 0, 2470, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1825, 0, 1221, +1825, 0, 1224, +1825, 0, 1228, +1825, 0, 1235, +1826, 0, 1246, +1827, 0, 1260, +1829, 0, 1277, +1831, 0, 1300, +1833, 0, 1328, +1830, 0, 1364, +1825, 0, 1408, +1819, 0, 1461, +1810, 0, 1524, +1804, 0, 1580, +1787, 0, 1663, +1777, 0, 1758, +1770, 44, 1866, +1789, 88, 1987, +1740, 759, 2109, +1692, 931, 2231, +1562, 952, 2370, +1845, 0, 2470, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1920, 0, 2510, +1825, 0, 1228, +1825, 0, 1231, +1825, 0, 1234, +1825, 0, 1239, +1826, 0, 1249, +1827, 0, 1263, +1829, 0, 1280, +1831, 0, 1302, +1833, 0, 1331, +1830, 0, 1366, +1825, 0, 1410, +1819, 0, 1463, +1810, 0, 1526, +1804, 0, 1584, +1787, 0, 1666, +1777, 0, 1760, +1769, 102, 1867, +1788, 153, 1988, +1739, 765, 2110, +1692, 942, 2232, +1563, 957, 2370, +1845, 0, 2470, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1920, 44, 2510, +1826, 0, 1238, +1826, 0, 1240, +1826, 0, 1243, +1826, 0, 1248, +1826, 0, 1254, +1827, 0, 1267, +1829, 0, 1284, +1831, 0, 1306, +1833, 0, 1335, +1830, 0, 1370, +1825, 0, 1413, +1819, 0, 1465, +1810, 0, 1528, +1804, 0, 1588, +1787, 0, 1669, +1777, 83, 1763, +1769, 170, 1868, +1787, 229, 1990, +1739, 774, 2111, +1692, 956, 2233, +1563, 962, 2370, +1845, 0, 2470, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1921, 103, 2510, +1827, 0, 1250, +1827, 0, 1252, +1827, 0, 1255, +1827, 0, 1260, +1827, 1, 1265, +1827, 30, 1273, +1829, 30, 1290, +1831, 30, 1312, +1833, 30, 1339, +1830, 30, 1375, +1825, 30, 1417, +1819, 30, 1469, +1810, 64, 1531, +1804, 132, 1593, +1787, 132, 1674, +1777, 215, 1767, +1768, 247, 1870, +1785, 313, 1991, +1738, 785, 2113, +1692, 974, 2235, +1564, 970, 2370, +1845, 0, 2470, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1921, 171, 2510, +1829, 58, 1265, +1829, 66, 1267, +1829, 77, 1270, +1829, 91, 1275, +1829, 109, 1280, +1829, 133, 1288, +1829, 163, 1297, +1831, 163, 1318, +1833, 163, 1346, +1830, 163, 1380, +1825, 163, 1423, +1819, 163, 1474, +1810, 188, 1536, +1804, 264, 1601, +1787, 264, 1680, +1777, 347, 1772, +1767, 334, 1872, +1783, 406, 1994, +1737, 799, 2115, +1692, 998, 2237, +1565, 979, 2370, +1845, 32, 2471, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1922, 248, 2510, +1831, 183, 1285, +1831, 190, 1287, +1831, 198, 1290, +1831, 209, 1294, +1831, 223, 1299, +1831, 242, 1306, +1831, 265, 1315, +1831, 295, 1328, +1833, 295, 1354, +1830, 295, 1388, +1825, 295, 1430, +1819, 295, 1480, +1810, 314, 1541, +1804, 396, 1611, +1787, 396, 1688, +1777, 479, 1778, +1766, 428, 1875, +1779, 506, 1998, +1736, 818, 2119, +1692, 1027, 2240, +1567, 992, 2369, +1845, 164, 2471, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1922, 335, 2510, +1833, 310, 1310, +1833, 315, 1312, +1833, 322, 1315, +1833, 330, 1319, +1833, 341, 1324, +1833, 355, 1331, +1833, 373, 1339, +1833, 397, 1351, +1833, 426, 1365, +1830, 426, 1398, +1825, 426, 1439, +1819, 426, 1489, +1810, 441, 1548, +1804, 528, 1623, +1787, 528, 1699, +1777, 611, 1787, +1765, 530, 1878, +1775, 613, 2002, +1734, 841, 2123, +1692, 1064, 2244, +1569, 1008, 2369, +1844, 330, 2472, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1924, 429, 2510, +1830, 439, 1356, +1830, 443, 1358, +1830, 447, 1361, +1830, 454, 1364, +1830, 462, 1369, +1830, 473, 1375, +1830, 487, 1383, +1830, 506, 1393, +1830, 529, 1407, +1828, 531, 1428, +1824, 531, 1466, +1817, 531, 1513, +1809, 543, 1570, +1803, 601, 1641, +1787, 591, 1713, +1780, 686, 1796, +1768, 615, 1886, +1769, 725, 2008, +1730, 897, 2126, +1685, 1092, 2246, +1595, 1019, 2371, +1840, 422, 2472, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1926, 531, 2509, +1825, 568, 1412, +1825, 571, 1414, +1825, 575, 1417, +1825, 579, 1420, +1825, 586, 1424, +1825, 594, 1429, +1825, 605, 1436, +1825, 619, 1445, +1825, 638, 1457, +1824, 640, 1476, +1821, 640, 1501, +1814, 640, 1545, +1806, 648, 1598, +1800, 695, 1664, +1787, 658, 1731, +1782, 751, 1810, +1774, 707, 1896, +1763, 805, 2012, +1724, 965, 2131, +1675, 1127, 2249, +1629, 1033, 2373, +1836, 515, 2472, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1930, 640, 2509, +1819, 699, 1479, +1819, 701, 1480, +1819, 703, 1482, +1819, 707, 1485, +1819, 712, 1488, +1819, 718, 1493, +1819, 727, 1499, +1819, 737, 1507, +1819, 752, 1518, +1817, 753, 1534, +1814, 753, 1556, +1811, 753, 1584, +1803, 760, 1633, +1797, 797, 1695, +1787, 733, 1754, +1782, 813, 1830, +1781, 806, 1910, +1756, 887, 2016, +1716, 1042, 2138, +1662, 1169, 2253, +1634, 1062, 2374, +1829, 616, 2472, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1935, 753, 2509, +1811, 848, 1553, +1811, 848, 1554, +1811, 851, 1556, +1811, 853, 1558, +1811, 857, 1561, +1811, 861, 1565, +1811, 867, 1570, +1811, 875, 1577, +1811, 886, 1586, +1809, 887, 1600, +1807, 887, 1619, +1804, 887, 1644, +1799, 892, 1675, +1793, 920, 1732, +1785, 861, 1784, +1781, 901, 1853, +1789, 932, 1929, +1748, 990, 2023, +1706, 1137, 2147, +1648, 1218, 2257, +1620, 1108, 2375, +1824, 746, 2471, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1942, 876, 2509, +1820, 1109, 1630, +1820, 1109, 1631, +1819, 1109, 1633, +1819, 1109, 1635, +1818, 1109, 1637, +1817, 1109, 1641, +1815, 1109, 1645, +1813, 1109, 1651, +1810, 1109, 1659, +1810, 1109, 1670, +1808, 1109, 1686, +1805, 1109, 1707, +1800, 1112, 1734, +1793, 1134, 1775, +1785, 1098, 1823, +1767, 1090, 1881, +1785, 1153, 1970, +1749, 1166, 2045, +1704, 1267, 2165, +1646, 1289, 2266, +1638, 1188, 2377, +1843, 976, 2471, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1948, 1035, 2509, +1812, 1336, 1724, +1812, 1336, 1725, +1811, 1336, 1727, +1811, 1336, 1728, +1810, 1336, 1730, +1809, 1336, 1733, +1807, 1336, 1736, +1805, 1336, 1741, +1802, 1336, 1748, +1804, 1336, 1756, +1806, 1336, 1767, +1810, 1336, 1781, +1808, 1338, 1803, +1801, 1351, 1839, +1785, 1351, 1887, +1762, 1338, 1936, +1760, 1342, 2007, +1728, 1366, 2073, +1683, 1382, 2175, +1573, 1418, 2288, +1713, 1264, 2379, +1872, 1202, 2471, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1942, 1211, 2508, +1832, 1511, 1838, +1832, 1511, 1839, +1832, 1511, 1839, +1832, 1511, 1840, +1832, 1511, 1841, +1832, 1511, 1843, +1832, 1511, 1845, +1832, 1511, 1848, +1832, 1511, 1852, +1829, 1511, 1857, +1829, 1511, 1865, +1832, 1511, 1876, +1834, 1511, 1891, +1824, 1511, 1912, +1810, 1511, 1951, +1783, 1522, 2002, +1774, 1495, 2052, +1746, 1515, 2117, +1708, 1501, 2192, +1652, 1522, 2297, +1779, 1436, 2383, +1898, 1422, 2472, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1969, 1408, 2508, +1888, 1654, 1938, +1888, 1654, 1938, +1888, 1654, 1939, +1888, 1654, 1940, +1888, 1654, 1940, +1888, 1654, 1942, +1888, 1654, 1943, +1888, 1654, 1946, +1888, 1654, 1949, +1885, 1654, 1953, +1881, 1654, 1958, +1875, 1654, 1965, +1868, 1655, 1975, +1863, 1662, 1991, +1855, 1662, 2017, +1843, 1654, 2055, +1817, 1654, 2107, +1794, 1657, 2159, +1766, 1662, 2229, +1800, 1621, 2303, +1843, 1605, 2385, +1921, 1624, 2474, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +2007, 1630, 2511, +1977, 1783, 1983, +1977, 1783, 1984, +1977, 1783, 1984, +1977, 1783, 1985, +1977, 1783, 1986, +1978, 1783, 1987, +1978, 1783, 1989, +1979, 1783, 1991, +1980, 1783, 1994, +1980, 1783, 1997, +1977, 1785, 2004, +1973, 1788, 2012, +1966, 1792, 2023, +1959, 1786, 2037, +1958, 1786, 2064, +1950, 1793, 2093, +1929, 1801, 2129, +1939, 1792, 2174, +1905, 1778, 2235, +1877, 1792, 2311, +1920, 1800, 2389, +2007, 1802, 2476, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2064, 1798, 2511, +2083, 1958, 2032, +2082, 1958, 2032, +2082, 1958, 2032, +2082, 1958, 2033, +2082, 1958, 2034, +2082, 1958, 2035, +2081, 1958, 2036, +2081, 1958, 2038, +2080, 1958, 2041, +2077, 1959, 2045, +2073, 1961, 2051, +2067, 1963, 2058, +2061, 1965, 2068, +2056, 1964, 2080, +2056, 1959, 2093, +2052, 1959, 2114, +2036, 1961, 2142, +2031, 1968, 2199, +2019, 1953, 2244, +2017, 1958, 2317, +2046, 1962, 2395, +2106, 1970, 2483, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2149, 1969, 2517, +2191, 2132, 2068, +2191, 2132, 2068, +2191, 2132, 2069, +2190, 2132, 2069, +2190, 2132, 2070, +2190, 2131, 2071, +2189, 2131, 2072, +2188, 2130, 2074, +2187, 2130, 2076, +2187, 2129, 2079, +2187, 2129, 2083, +2187, 2129, 2088, +2187, 2129, 2096, +2184, 2129, 2105, +2180, 2129, 2117, +2180, 2128, 2131, +2170, 2124, 2154, +2176, 2127, 2200, +2167, 2133, 2262, +2179, 2135, 2315, +2208, 2135, 2395, +2271, 2155, 2484, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2291, 2159, 2521, +2407, 2360, 2121, +2407, 2360, 2121, +2407, 2360, 2121, +2407, 2360, 2121, +2407, 2360, 2121, +2407, 2359, 2122, +2407, 2359, 2122, +2407, 2359, 2123, +2407, 2358, 2123, +2408, 2359, 2125, +2408, 2360, 2128, +2409, 2360, 2131, +2409, 2360, 2135, +2408, 2362, 2141, +2405, 2359, 2147, +2402, 2358, 2164, +2395, 2358, 2193, +2399, 2361, 2228, +2408, 2365, 2275, +2419, 2368, 2338, +2446, 2373, 2402, +2486, 2387, 2498, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2516, 2398, 2529, +2687, 2656, 1984, +2687, 2656, 1984, +2687, 2656, 1984, +2687, 2656, 1984, +2687, 2656, 1984, +2687, 2656, 1984, +2687, 2656, 1984, +2687, 2656, 1984, +2688, 2656, 1989, +2688, 2656, 1991, +2688, 2656, 1992, +2689, 2656, 1995, +2690, 2656, 1999, +2690, 2657, 2008, +2688, 2657, 2023, +2688, 2657, 2054, +2688, 2658, 2083, +2688, 2659, 2149, +2689, 2659, 2227, +2696, 2667, 2323, +2703, 2668, 2417, +2722, 2681, 2534, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2728, 2686, 2580, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2773, 2448, +2722, 2772, 2447, +2721, 2772, 2444, +2721, 2771, 2441, +2720, 2770, 2438, +2721, 2771, 2443, +2722, 2773, 2457, +2723, 2774, 2473, +2723, 2774, 2481, +2717, 2775, 2500, +2720, 2779, 2531, +2720, 2778, 2569, +2726, 2782, 2625, +2731, 2788, 2703, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +2734, 2794, 2737, +1906, 311, 1618, +1906, 316, 1619, +1906, 322, 1620, +1906, 330, 1621, +1905, 342, 1623, +1905, 356, 1626, +1905, 374, 1630, +1904, 398, 1634, +1903, 427, 1640, +1901, 464, 1648, +1904, 471, 1670, +1909, 471, 1700, +1914, 464, 1736, +1910, 152, 1775, +1903, 63, 1817, +1900, 481, 1880, +1885, 481, 1958, +1866, 624, 2053, +1837, 927, 2156, +1786, 933, 2261, +1818, 679, 2380, +1933, 0, 2471, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1989, 487, 2513, +1906, 330, 1619, +1907, 325, 1621, +1906, 332, 1622, +1906, 340, 1623, +1906, 351, 1625, +1905, 365, 1628, +1905, 383, 1631, +1904, 406, 1636, +1903, 435, 1642, +1901, 471, 1650, +1904, 478, 1672, +1910, 478, 1702, +1915, 478, 1736, +1910, 179, 1776, +1903, 95, 1817, +1900, 491, 1880, +1885, 491, 1958, +1866, 631, 2054, +1837, 928, 2156, +1786, 935, 2261, +1818, 681, 2380, +1933, 0, 2471, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1989, 491, 2513, +1906, 354, 1621, +1907, 350, 1622, +1907, 344, 1624, +1907, 352, 1625, +1906, 362, 1627, +1906, 376, 1630, +1905, 393, 1633, +1904, 416, 1638, +1903, 444, 1644, +1902, 480, 1652, +1905, 486, 1674, +1910, 486, 1704, +1915, 486, 1738, +1910, 212, 1777, +1904, 135, 1818, +1900, 504, 1881, +1885, 504, 1959, +1866, 640, 2054, +1837, 930, 2156, +1787, 936, 2261, +1819, 684, 2380, +1933, 0, 2471, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1990, 495, 2513, +1906, 384, 1623, +1907, 381, 1624, +1907, 375, 1626, +1907, 367, 1628, +1907, 377, 1630, +1906, 391, 1633, +1905, 408, 1636, +1905, 430, 1641, +1904, 457, 1647, +1902, 491, 1655, +1905, 498, 1676, +1911, 498, 1706, +1915, 498, 1740, +1910, 253, 1778, +1904, 183, 1819, +1900, 520, 1882, +1885, 520, 1960, +1866, 653, 2055, +1838, 932, 2156, +1787, 939, 2261, +1819, 688, 2381, +1933, 0, 2471, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1990, 501, 2513, +1906, 422, 1625, +1907, 419, 1626, +1907, 413, 1628, +1907, 406, 1631, +1908, 397, 1634, +1907, 409, 1636, +1906, 426, 1640, +1905, 447, 1644, +1904, 473, 1650, +1903, 507, 1658, +1906, 513, 1680, +1911, 513, 1709, +1916, 513, 1743, +1911, 303, 1780, +1904, 241, 1821, +1899, 542, 1884, +1886, 542, 1962, +1866, 669, 2056, +1838, 935, 2156, +1788, 941, 2261, +1820, 693, 2381, +1933, 0, 2471, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1991, 508, 2513, +1906, 468, 1629, +1907, 465, 1630, +1907, 460, 1632, +1907, 454, 1634, +1908, 445, 1637, +1908, 434, 1641, +1907, 449, 1645, +1906, 469, 1649, +1905, 495, 1655, +1904, 526, 1663, +1907, 533, 1684, +1912, 533, 1713, +1917, 533, 1747, +1911, 362, 1783, +1905, 308, 1823, +1899, 569, 1886, +1886, 569, 1964, +1866, 690, 2057, +1839, 939, 2157, +1789, 945, 2262, +1821, 700, 2381, +1933, 10, 2471, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1993, 518, 2513, +1906, 523, 1633, +1907, 520, 1635, +1907, 516, 1636, +1907, 511, 1639, +1908, 503, 1642, +1908, 493, 1646, +1908, 479, 1651, +1908, 498, 1656, +1907, 521, 1662, +1905, 551, 1669, +1908, 557, 1690, +1913, 557, 1719, +1918, 557, 1753, +1912, 430, 1786, +1905, 384, 1826, +1898, 602, 1888, +1887, 602, 1966, +1866, 716, 2059, +1839, 944, 2157, +1791, 950, 2262, +1823, 708, 2381, +1933, 84, 2470, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1994, 531, 2513, +1906, 588, 1640, +1907, 585, 1641, +1907, 582, 1643, +1907, 577, 1645, +1908, 570, 1648, +1908, 562, 1652, +1908, 550, 1657, +1909, 533, 1664, +1908, 555, 1670, +1907, 583, 1678, +1910, 588, 1698, +1915, 588, 1727, +1920, 588, 1759, +1913, 508, 1790, +1906, 470, 1830, +1897, 644, 1892, +1888, 644, 1970, +1866, 749, 2061, +1840, 951, 2157, +1793, 957, 2263, +1825, 720, 2382, +1933, 167, 2470, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1996, 548, 2512, +1906, 662, 1647, +1907, 660, 1649, +1907, 657, 1650, +1907, 653, 1653, +1908, 647, 1655, +1908, 640, 1659, +1908, 629, 1665, +1909, 615, 1672, +1911, 596, 1681, +1909, 622, 1689, +1912, 627, 1708, +1917, 627, 1736, +1922, 627, 1769, +1913, 595, 1796, +1907, 563, 1835, +1896, 695, 1896, +1889, 695, 1975, +1866, 789, 2064, +1841, 960, 2158, +1796, 966, 2263, +1827, 735, 2383, +1933, 330, 2471, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1999, 569, 2512, +1906, 745, 1658, +1907, 743, 1659, +1907, 741, 1661, +1907, 737, 1663, +1908, 733, 1666, +1908, 727, 1670, +1908, 718, 1675, +1909, 707, 1682, +1911, 691, 1691, +1912, 669, 1703, +1915, 674, 1722, +1920, 674, 1749, +1925, 674, 1780, +1915, 674, 1805, +1909, 665, 1842, +1894, 754, 1903, +1887, 754, 1980, +1866, 838, 2069, +1843, 972, 2159, +1800, 977, 2264, +1831, 754, 2384, +1933, 489, 2472, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +2002, 596, 2512, +1910, 819, 1677, +1910, 817, 1678, +1910, 815, 1680, +1911, 812, 1682, +1911, 809, 1685, +1911, 803, 1689, +1912, 796, 1693, +1913, 787, 1700, +1914, 773, 1708, +1915, 755, 1720, +1915, 772, 1732, +1921, 772, 1758, +1925, 772, 1789, +1916, 772, 1813, +1909, 792, 1855, +1894, 863, 1914, +1887, 875, 1990, +1865, 911, 2073, +1841, 1000, 2165, +1800, 1040, 2269, +1833, 798, 2384, +1931, 640, 2472, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +2004, 683, 2511, +1915, 898, 1703, +1915, 897, 1704, +1915, 895, 1705, +1915, 893, 1707, +1916, 890, 1710, +1916, 885, 1713, +1917, 879, 1718, +1918, 871, 1724, +1919, 860, 1732, +1920, 845, 1743, +1921, 860, 1755, +1921, 885, 1769, +1925, 885, 1799, +1916, 885, 1823, +1909, 925, 1873, +1894, 979, 1929, +1887, 1007, 2002, +1862, 997, 2078, +1838, 1037, 2174, +1800, 1121, 2277, +1843, 837, 2383, +1928, 785, 2473, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +2007, 787, 2510, +1922, 997, 1735, +1922, 998, 1736, +1922, 997, 1737, +1922, 995, 1739, +1923, 993, 1741, +1923, 989, 1745, +1924, 984, 1749, +1925, 978, 1755, +1926, 969, 1763, +1927, 958, 1772, +1927, 969, 1783, +1927, 989, 1797, +1926, 1011, 1816, +1917, 1011, 1839, +1910, 1049, 1891, +1895, 1094, 1949, +1888, 1137, 2019, +1859, 1095, 2086, +1833, 1102, 2184, +1802, 1203, 2287, +1856, 905, 2383, +1926, 942, 2474, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +2010, 902, 2509, +1931, 1121, 1774, +1931, 1122, 1775, +1931, 1123, 1776, +1932, 1124, 1778, +1932, 1126, 1780, +1932, 1129, 1783, +1933, 1132, 1787, +1934, 1137, 1793, +1935, 1143, 1800, +1936, 1145, 1809, +1936, 1152, 1819, +1936, 1166, 1832, +1935, 1181, 1849, +1921, 1181, 1881, +1914, 1207, 1928, +1905, 1197, 1974, +1898, 1248, 2038, +1870, 1219, 2099, +1827, 1224, 2189, +1814, 1266, 2289, +1856, 1137, 2381, +1933, 1139, 2475, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +2017, 1048, 2509, +1943, 1312, 1836, +1943, 1312, 1837, +1943, 1313, 1838, +1943, 1314, 1839, +1944, 1315, 1841, +1944, 1317, 1844, +1945, 1319, 1847, +1945, 1322, 1852, +1946, 1326, 1858, +1948, 1331, 1866, +1945, 1332, 1875, +1940, 1332, 1886, +1936, 1339, 1902, +1923, 1339, 1930, +1915, 1358, 1965, +1906, 1343, 2006, +1889, 1364, 2062, +1872, 1381, 2136, +1826, 1367, 2210, +1822, 1339, 2296, +1868, 1258, 2382, +1955, 1262, 2478, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +2027, 1191, 2509, +1969, 1458, 1884, +1969, 1458, 1884, +1968, 1458, 1885, +1968, 1458, 1887, +1968, 1458, 1888, +1968, 1458, 1890, +1967, 1458, 1892, +1966, 1458, 1896, +1965, 1458, 1900, +1964, 1458, 1906, +1962, 1458, 1913, +1957, 1458, 1924, +1950, 1459, 1938, +1941, 1472, 1960, +1934, 1487, 1991, +1937, 1461, 2031, +1908, 1472, 2078, +1899, 1508, 2159, +1871, 1507, 2226, +1869, 1459, 2304, +1906, 1424, 2382, +1989, 1433, 2480, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +2031, 1414, 2509, +1995, 1625, 1959, +1995, 1625, 1960, +1995, 1625, 1961, +1995, 1626, 1962, +1995, 1626, 1963, +1994, 1627, 1965, +1994, 1628, 1968, +1993, 1630, 1972, +1992, 1632, 1976, +1991, 1632, 1982, +1990, 1632, 1987, +1990, 1632, 1993, +1990, 1632, 2002, +1989, 1633, 2018, +1978, 1635, 2038, +1968, 1630, 2070, +1945, 1650, 2122, +1941, 1635, 2175, +1926, 1623, 2233, +1921, 1624, 2309, +1947, 1613, 2388, +2014, 1610, 2474, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2061, 1608, 2512, +2048, 1766, 1996, +2048, 1766, 1996, +2048, 1766, 1996, +2048, 1766, 1997, +2048, 1766, 1998, +2048, 1766, 1999, +2048, 1766, 2000, +2048, 1766, 2002, +2048, 1766, 2006, +2048, 1766, 2009, +2048, 1766, 2014, +2048, 1766, 2020, +2048, 1767, 2029, +2044, 1773, 2043, +2040, 1782, 2061, +2029, 1792, 2098, +2027, 1783, 2138, +1997, 1783, 2185, +1996, 1799, 2243, +1996, 1791, 2315, +2012, 1789, 2391, +2075, 1804, 2478, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2111, 1808, 2513, +2118, 1947, 2038, +2118, 1947, 2038, +2118, 1947, 2039, +2118, 1947, 2039, +2118, 1948, 2040, +2119, 1948, 2041, +2119, 1948, 2042, +2120, 1949, 2044, +2120, 1950, 2047, +2121, 1951, 2050, +2120, 1952, 2054, +2119, 1952, 2060, +2117, 1952, 2068, +2111, 1952, 2078, +2102, 1952, 2094, +2100, 1957, 2116, +2094, 1953, 2146, +2078, 1951, 2186, +2073, 1951, 2247, +2076, 1958, 2318, +2097, 1963, 2398, +2161, 1972, 2478, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2191, 1974, 2517, +2223, 2127, 2077, +2223, 2127, 2077, +2223, 2127, 2077, +2223, 2128, 2078, +2223, 2128, 2078, +2223, 2128, 2078, +2223, 2128, 2079, +2223, 2129, 2080, +2223, 2130, 2082, +2223, 2131, 2084, +2221, 2130, 2088, +2219, 2128, 2093, +2216, 2127, 2099, +2213, 2127, 2109, +2210, 2127, 2121, +2206, 2127, 2136, +2216, 2126, 2162, +2212, 2127, 2204, +2215, 2139, 2260, +2222, 2139, 2318, +2237, 2143, 2401, +2282, 2159, 2486, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2316, 2166, 2524, +2426, 2364, 2124, +2426, 2364, 2124, +2426, 2364, 2124, +2426, 2364, 2125, +2426, 2364, 2125, +2426, 2364, 2126, +2426, 2364, 2126, +2426, 2364, 2127, +2426, 2364, 2129, +2426, 2364, 2131, +2426, 2364, 2132, +2426, 2363, 2135, +2427, 2362, 2138, +2429, 2364, 2138, +2428, 2365, 2146, +2427, 2363, 2161, +2428, 2366, 2187, +2427, 2369, 2230, +2430, 2369, 2278, +2430, 2368, 2333, +2463, 2376, 2405, +2502, 2392, 2495, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2540, 2403, 2525, +2694, 2658, 1982, +2694, 2658, 1982, +2694, 2658, 1982, +2694, 2658, 1981, +2694, 2658, 1981, +2694, 2658, 1979, +2693, 2657, 1979, +2693, 2657, 1977, +2693, 2657, 1978, +2693, 2657, 1979, +2693, 2658, 1988, +2694, 2659, 2001, +2694, 2660, 2015, +2696, 2660, 2021, +2695, 2657, 2016, +2695, 2660, 2055, +2697, 2662, 2117, +2697, 2663, 2170, +2697, 2666, 2245, +2701, 2667, 2320, +2711, 2672, 2426, +2725, 2685, 2539, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2731, 2689, 2588, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2773, 2456, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2457, +2727, 2774, 2458, +2728, 2774, 2459, +2728, 2775, 2460, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2728, 2775, 2461, +2729, 2773, 2461, +2729, 2774, 2466, +2728, 2776, 2478, +2729, 2777, 2494, +2725, 2779, 2509, +2723, 2779, 2533, +2725, 2779, 2571, +2728, 2783, 2631, +2735, 2789, 2705, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2738, 2796, 2741, +2036, 810, 1881, +2036, 808, 1882, +2036, 806, 1882, +2036, 803, 1883, +2037, 799, 1884, +2037, 794, 1886, +2037, 787, 1887, +2038, 777, 1890, +2039, 763, 1894, +2040, 745, 1898, +2042, 718, 1904, +2043, 681, 1912, +2044, 657, 1923, +2037, 657, 1946, +2028, 657, 1974, +2025, 726, 2020, +2019, 820, 2081, +1994, 874, 2146, +1993, 810, 2228, +2002, 0, 2298, +2010, 0, 2382, +2069, 0, 2474, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2036, 813, 1881, +2036, 813, 1882, +2036, 811, 1883, +2036, 808, 1884, +2037, 804, 1884, +2037, 799, 1886, +2037, 791, 1888, +2038, 782, 1891, +2039, 769, 1894, +2040, 750, 1898, +2042, 724, 1905, +2043, 687, 1912, +2044, 666, 1924, +2037, 666, 1946, +2028, 666, 1974, +2024, 730, 2021, +2019, 824, 2081, +1994, 876, 2146, +1994, 812, 2228, +2002, 0, 2298, +2010, 0, 2382, +2069, 0, 2474, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2037, 817, 1881, +2036, 817, 1882, +2036, 817, 1883, +2036, 814, 1884, +2037, 810, 1885, +2037, 805, 1887, +2037, 798, 1888, +2038, 789, 1891, +2039, 776, 1894, +2040, 757, 1899, +2042, 732, 1905, +2043, 695, 1913, +2044, 675, 1924, +2037, 678, 1946, +2028, 678, 1974, +2024, 735, 2021, +2019, 831, 2081, +1994, 877, 2146, +1994, 814, 2228, +2002, 0, 2298, +2010, 0, 2382, +2069, 0, 2474, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2108, 0, 2510, +2037, 823, 1882, +2037, 823, 1883, +2037, 823, 1884, +2036, 823, 1885, +2037, 819, 1886, +2037, 814, 1887, +2037, 807, 1889, +2038, 797, 1892, +2039, 785, 1895, +2040, 767, 1900, +2042, 742, 1906, +2043, 706, 1914, +2044, 686, 1925, +2038, 693, 1947, +2028, 693, 1975, +2024, 742, 2022, +2020, 839, 2082, +1995, 880, 2146, +1995, 817, 2228, +2003, 0, 2298, +2010, 0, 2382, +2069, 0, 2474, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2107, 0, 2510, +2037, 830, 1882, +2037, 830, 1883, +2037, 830, 1884, +2037, 830, 1885, +2037, 830, 1887, +2037, 825, 1888, +2037, 818, 1891, +2038, 809, 1893, +2039, 797, 1897, +2040, 779, 1901, +2042, 755, 1907, +2043, 721, 1915, +2044, 701, 1926, +2038, 713, 1948, +2029, 713, 1976, +2024, 751, 2023, +2020, 850, 2082, +1995, 883, 2147, +1996, 821, 2228, +2004, 0, 2298, +2011, 0, 2383, +2069, 0, 2474, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2107, 61, 2510, +2038, 840, 1883, +2038, 840, 1884, +2038, 840, 1884, +2037, 840, 1886, +2037, 840, 1887, +2037, 840, 1890, +2037, 833, 1892, +2038, 825, 1894, +2039, 813, 1898, +2040, 796, 1902, +2042, 772, 1908, +2043, 739, 1916, +2044, 721, 1927, +2038, 737, 1950, +2029, 737, 1977, +2023, 762, 2025, +2021, 864, 2083, +1996, 888, 2147, +1997, 826, 2228, +2005, 48, 2298, +2011, 0, 2383, +2069, 10, 2474, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2105, 179, 2510, +2039, 853, 1883, +2039, 853, 1884, +2039, 853, 1885, +2038, 853, 1887, +2038, 853, 1888, +2038, 853, 1891, +2037, 853, 1894, +2038, 844, 1896, +2039, 833, 1900, +2040, 817, 1904, +2042, 794, 1910, +2043, 763, 1918, +2044, 745, 1929, +2039, 769, 1951, +2029, 769, 1979, +2023, 777, 2027, +2022, 882, 2084, +1997, 894, 2148, +1998, 832, 2227, +2006, 147, 2298, +2011, 89, 2384, +2069, 84, 2473, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2104, 299, 2510, +2040, 869, 1884, +2040, 869, 1885, +2040, 869, 1886, +2040, 869, 1887, +2039, 869, 1889, +2039, 869, 1891, +2039, 869, 1894, +2038, 869, 1899, +2039, 858, 1902, +2040, 843, 1907, +2042, 822, 1913, +2043, 792, 1920, +2044, 776, 1932, +2039, 807, 1954, +2030, 807, 1981, +2022, 797, 2029, +2023, 905, 2085, +1998, 901, 2149, +2000, 841, 2227, +2007, 253, 2298, +2012, 208, 2384, +2069, 167, 2473, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2103, 423, 2510, +2042, 890, 1885, +2042, 890, 1886, +2042, 890, 1887, +2041, 890, 1888, +2041, 890, 1890, +2041, 890, 1893, +2040, 890, 1896, +2040, 890, 1900, +2039, 890, 1905, +2040, 876, 1910, +2042, 857, 1916, +2043, 829, 1924, +2044, 814, 1935, +2040, 854, 1957, +2031, 854, 1984, +2021, 822, 2032, +2025, 934, 2086, +2000, 911, 2150, +2003, 852, 2226, +2009, 364, 2298, +2013, 329, 2385, +2069, 258, 2473, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2101, 548, 2511, +2044, 917, 1887, +2044, 917, 1887, +2044, 917, 1889, +2043, 917, 1890, +2043, 917, 1892, +2043, 917, 1894, +2042, 917, 1897, +2042, 917, 1901, +2041, 917, 1907, +2040, 917, 1914, +2042, 899, 1920, +2043, 874, 1928, +2044, 861, 1939, +2041, 906, 1961, +2032, 910, 1988, +2020, 853, 2037, +2024, 959, 2090, +2002, 924, 2152, +2007, 867, 2226, +2011, 480, 2298, +2014, 453, 2386, +2069, 358, 2472, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2098, 675, 2511, +2047, 951, 1889, +2047, 951, 1890, +2047, 951, 1891, +2047, 951, 1892, +2046, 951, 1894, +2046, 951, 1896, +2045, 951, 1899, +2045, 951, 1903, +2044, 951, 1909, +2043, 951, 1916, +2042, 951, 1926, +2043, 928, 1933, +2044, 916, 1944, +2041, 956, 1966, +2033, 976, 1993, +2021, 913, 2042, +2022, 990, 2095, +2006, 968, 2154, +2012, 886, 2225, +2014, 599, 2298, +2016, 579, 2387, +2069, 463, 2472, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2094, 803, 2512, +2051, 992, 1892, +2051, 992, 1892, +2051, 992, 1894, +2050, 992, 1895, +2050, 992, 1897, +2050, 992, 1899, +2049, 992, 1902, +2049, 992, 1906, +2048, 992, 1912, +2047, 992, 1919, +2045, 992, 1928, +2043, 992, 1941, +2044, 981, 1951, +2041, 1016, 1973, +2035, 1052, 1999, +2023, 999, 2048, +2020, 1028, 2102, +2010, 1027, 2157, +2018, 910, 2223, +2019, 722, 2298, +2019, 682, 2389, +2069, 575, 2471, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2089, 933, 2513, +2055, 1051, 1898, +2055, 1052, 1899, +2055, 1052, 1900, +2055, 1052, 1902, +2054, 1052, 1903, +2054, 1052, 1905, +2054, 1052, 1909, +2053, 1052, 1913, +2052, 1052, 1918, +2051, 1052, 1925, +2050, 1052, 1935, +2048, 1052, 1947, +2047, 1053, 1963, +2043, 1083, 1983, +2038, 1120, 2010, +2027, 1089, 2055, +2019, 1074, 2110, +2016, 1091, 2162, +2024, 958, 2224, +2023, 859, 2299, +2024, 795, 2391, +2069, 729, 2471, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2085, 1046, 2513, +2065, 1109, 1913, +2065, 1110, 1913, +2065, 1112, 1915, +2065, 1113, 1916, +2064, 1115, 1918, +2063, 1118, 1921, +2063, 1121, 1924, +2061, 1126, 1929, +2060, 1132, 1936, +2058, 1137, 1943, +2057, 1137, 1952, +2055, 1137, 1964, +2053, 1137, 1979, +2053, 1164, 1999, +2049, 1195, 2025, +2041, 1167, 2059, +2028, 1112, 2110, +2027, 1145, 2168, +2024, 1061, 2228, +2023, 1050, 2301, +2024, 973, 2387, +2069, 983, 2473, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2092, 1159, 2513, +2079, 1177, 1931, +2078, 1178, 1932, +2078, 1179, 1933, +2078, 1180, 1934, +2077, 1182, 1936, +2077, 1184, 1939, +2076, 1187, 1942, +2075, 1191, 1947, +2073, 1196, 1953, +2071, 1204, 1961, +2068, 1213, 1971, +2065, 1225, 1985, +2062, 1230, 2000, +2062, 1252, 2020, +2062, 1280, 2044, +2056, 1256, 2073, +2047, 1209, 2114, +2037, 1182, 2169, +2024, 1169, 2235, +2023, 1221, 2303, +2029, 1152, 2384, +2060, 1207, 2475, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2100, 1275, 2513, +2099, 1357, 1955, +2099, 1357, 1955, +2099, 1357, 1955, +2099, 1357, 1956, +2098, 1357, 1957, +2098, 1357, 1958, +2097, 1357, 1960, +2096, 1357, 1962, +2094, 1357, 1965, +2093, 1357, 1969, +2090, 1361, 1977, +2086, 1370, 1990, +2083, 1381, 2008, +2080, 1396, 2034, +2079, 1416, 2059, +2078, 1420, 2093, +2067, 1399, 2124, +2059, 1381, 2174, +2045, 1359, 2234, +2030, 1417, 2304, +2051, 1393, 2388, +2070, 1417, 2476, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2115, 1452, 2513, +2118, 1561, 1978, +2118, 1561, 1978, +2118, 1561, 1979, +2118, 1561, 1980, +2119, 1561, 1982, +2119, 1561, 1984, +2119, 1561, 1986, +2120, 1561, 1990, +2120, 1561, 1994, +2119, 1561, 1998, +2116, 1561, 2003, +2113, 1561, 2009, +2109, 1560, 2018, +2103, 1553, 2032, +2099, 1566, 2064, +2098, 1570, 2096, +2095, 1587, 2145, +2080, 1579, 2177, +2077, 1562, 2236, +2046, 1604, 2305, +2071, 1614, 2389, +2114, 1600, 2477, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2143, 1637, 2513, +2134, 1765, 2000, +2134, 1765, 2001, +2134, 1766, 2001, +2134, 1766, 2002, +2134, 1767, 2003, +2134, 1767, 2004, +2134, 1768, 2005, +2134, 1769, 2007, +2134, 1771, 2010, +2134, 1772, 2014, +2135, 1773, 2021, +2137, 1773, 2031, +2138, 1773, 2045, +2138, 1767, 2062, +2131, 1758, 2076, +2129, 1756, 2098, +2124, 1756, 2137, +2121, 1783, 2193, +2113, 1774, 2243, +2086, 1783, 2307, +2096, 1787, 2390, +2148, 1816, 2480, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2194, 1817, 2514, +2181, 1956, 2056, +2181, 1956, 2057, +2181, 1956, 2057, +2182, 1956, 2057, +2182, 1955, 2057, +2182, 1955, 2057, +2182, 1955, 2058, +2183, 1954, 2058, +2183, 1953, 2059, +2184, 1951, 2060, +2185, 1950, 2062, +2187, 1947, 2063, +2188, 1945, 2068, +2188, 1950, 2081, +2188, 1955, 2098, +2191, 1957, 2124, +2187, 1958, 2158, +2166, 1958, 2197, +2157, 1958, 2256, +2157, 1958, 2315, +2170, 1965, 2391, +2214, 1983, 2481, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2243, 1992, 2520, +2280, 2135, 2094, +2279, 2135, 2094, +2279, 2135, 2094, +2279, 2135, 2093, +2279, 2135, 2093, +2279, 2135, 2093, +2278, 2135, 2093, +2278, 2135, 2092, +2278, 2135, 2091, +2277, 2135, 2090, +2276, 2135, 2089, +2275, 2135, 2087, +2273, 2135, 2088, +2271, 2132, 2104, +2268, 2128, 2124, +2265, 2127, 2141, +2261, 2127, 2163, +2267, 2131, 2204, +2267, 2143, 2274, +2279, 2151, 2326, +2302, 2151, 2402, +2336, 2169, 2486, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2365, 2174, 2524, +2461, 2367, 2129, +2461, 2367, 2129, +2461, 2367, 2129, +2460, 2367, 2129, +2460, 2367, 2129, +2460, 2367, 2129, +2460, 2367, 2129, +2459, 2367, 2129, +2458, 2367, 2129, +2457, 2367, 2129, +2456, 2367, 2129, +2456, 2367, 2131, +2456, 2368, 2135, +2457, 2370, 2144, +2458, 2370, 2155, +2459, 2368, 2173, +2458, 2367, 2191, +2459, 2372, 2228, +2457, 2374, 2273, +2469, 2375, 2338, +2498, 2390, 2405, +2539, 2403, 2489, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2561, 2413, 2521, +2709, 2666, 2040, +2709, 2666, 2040, +2709, 2665, 2040, +2709, 2665, 2040, +2709, 2665, 2040, +2709, 2665, 2040, +2709, 2665, 2040, +2710, 2664, 2040, +2710, 2664, 2039, +2710, 2664, 2038, +2710, 2664, 2037, +2710, 2663, 2035, +2710, 2663, 2036, +2709, 2665, 2056, +2708, 2668, 2074, +2708, 2667, 2090, +2708, 2666, 2122, +2710, 2669, 2190, +2713, 2675, 2273, +2712, 2672, 2336, +2722, 2681, 2446, +2732, 2688, 2548, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2743, 2699, 2604, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2472, +2736, 2777, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2473, +2736, 2778, 2474, +2736, 2778, 2475, +2736, 2778, 2475, +2736, 2779, 2476, +2736, 2779, 2478, +2736, 2779, 2480, +2736, 2779, 2480, +2736, 2779, 2480, +2737, 2778, 2487, +2736, 2777, 2497, +2732, 2777, 2512, +2731, 2783, 2550, +2734, 2783, 2585, +2737, 2787, 2644, +2741, 2798, 2718, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2746, 2799, 2749, +2203, 0, 1962, +2203, 0, 1963, +2203, 0, 1963, +2203, 0, 1964, +2202, 0, 1966, +2202, 0, 1967, +2202, 0, 1969, +2202, 0, 1972, +2201, 0, 1976, +2200, 0, 1981, +2199, 0, 1988, +2198, 0, 1996, +2196, 0, 2008, +2194, 0, 2027, +2190, 0, 2051, +2189, 0, 2090, +2187, 0, 2135, +2178, 0, 2178, +2160, 0, 2231, +2145, 0, 2305, +2169, 0, 2389, +2195, 0, 2474, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2191, 934, 2513, +2203, 0, 1962, +2203, 0, 1963, +2203, 0, 1963, +2203, 0, 1965, +2202, 0, 1966, +2202, 0, 1967, +2202, 0, 1969, +2202, 0, 1972, +2201, 0, 1976, +2200, 0, 1981, +2199, 0, 1988, +2198, 0, 1997, +2196, 0, 2008, +2194, 0, 2027, +2190, 0, 2051, +2189, 0, 2090, +2187, 0, 2135, +2178, 0, 2178, +2160, 0, 2231, +2145, 0, 2305, +2169, 0, 2389, +2195, 0, 2474, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2191, 935, 2513, +2203, 0, 1962, +2203, 0, 1963, +2203, 0, 1964, +2203, 0, 1965, +2202, 0, 1966, +2202, 0, 1968, +2202, 0, 1970, +2202, 0, 1973, +2201, 0, 1976, +2200, 0, 1981, +2199, 0, 1988, +2198, 0, 1997, +2196, 0, 2008, +2194, 0, 2026, +2190, 0, 2051, +2189, 0, 2090, +2187, 0, 2135, +2178, 0, 2178, +2161, 0, 2231, +2146, 0, 2305, +2169, 0, 2389, +2195, 0, 2474, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2191, 937, 2513, +2203, 0, 1963, +2203, 0, 1963, +2203, 0, 1964, +2203, 0, 1965, +2202, 0, 1966, +2202, 0, 1968, +2202, 0, 1970, +2202, 0, 1973, +2201, 0, 1977, +2200, 0, 1982, +2199, 0, 1988, +2198, 0, 1997, +2196, 0, 2008, +2194, 0, 2026, +2190, 0, 2050, +2189, 0, 2090, +2187, 0, 2135, +2178, 0, 2178, +2161, 0, 2232, +2146, 0, 2305, +2169, 0, 2389, +2195, 0, 2474, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2192, 939, 2513, +2202, 0, 1963, +2202, 0, 1963, +2202, 0, 1964, +2202, 0, 1965, +2202, 0, 1966, +2202, 0, 1968, +2202, 0, 1970, +2202, 0, 1973, +2201, 0, 1977, +2200, 0, 1982, +2199, 0, 1989, +2198, 0, 1997, +2196, 0, 2009, +2194, 0, 2026, +2190, 0, 2050, +2188, 0, 2090, +2187, 0, 2136, +2178, 0, 2178, +2161, 0, 2232, +2147, 0, 2305, +2169, 0, 2389, +2195, 0, 2474, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2192, 942, 2513, +2202, 0, 1963, +2202, 0, 1964, +2202, 0, 1965, +2202, 0, 1966, +2202, 0, 1967, +2202, 0, 1969, +2202, 0, 1970, +2202, 0, 1973, +2201, 0, 1977, +2200, 0, 1982, +2199, 0, 1989, +2198, 0, 1998, +2196, 0, 2009, +2194, 0, 2026, +2190, 0, 2050, +2188, 0, 2090, +2187, 0, 2136, +2178, 0, 2178, +2162, 0, 2232, +2148, 0, 2305, +2169, 0, 2389, +2195, 74, 2474, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2193, 946, 2513, +2202, 0, 1964, +2202, 0, 1965, +2202, 0, 1965, +2202, 0, 1966, +2202, 0, 1968, +2202, 0, 1969, +2202, 0, 1971, +2202, 0, 1974, +2201, 0, 1978, +2200, 0, 1983, +2199, 0, 1989, +2198, 0, 1998, +2196, 0, 2010, +2194, 0, 2025, +2190, 0, 2049, +2188, 0, 2090, +2187, 0, 2137, +2178, 0, 2178, +2162, 0, 2232, +2149, 0, 2305, +2168, 0, 2389, +2196, 195, 2474, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2194, 951, 2513, +2202, 0, 1965, +2202, 0, 1965, +2202, 0, 1966, +2202, 0, 1967, +2202, 0, 1968, +2202, 0, 1970, +2202, 0, 1972, +2202, 0, 1975, +2201, 0, 1979, +2200, 0, 1984, +2199, 0, 1990, +2198, 0, 1999, +2196, 0, 2010, +2194, 0, 2024, +2190, 0, 2049, +2188, 0, 2090, +2187, 0, 2138, +2178, 0, 2178, +2163, 0, 2233, +2150, 0, 2306, +2168, 0, 2388, +2196, 319, 2474, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2195, 957, 2513, +2201, 0, 1966, +2201, 0, 1966, +2201, 0, 1967, +2201, 0, 1968, +2201, 0, 1969, +2201, 0, 1971, +2201, 0, 1973, +2201, 0, 1976, +2201, 0, 1979, +2200, 0, 1984, +2199, 0, 1991, +2198, 0, 2000, +2196, 0, 2011, +2194, 0, 2024, +2190, 0, 2048, +2187, 0, 2090, +2187, 0, 2140, +2178, 0, 2178, +2165, 0, 2233, +2152, 111, 2306, +2167, 0, 2388, +2195, 419, 2475, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2197, 966, 2513, +2200, 0, 1967, +2200, 0, 1968, +2200, 0, 1968, +2200, 0, 1969, +2200, 0, 1970, +2200, 0, 1972, +2200, 0, 1974, +2200, 0, 1977, +2200, 0, 1981, +2200, 0, 1986, +2199, 0, 1993, +2198, 0, 2001, +2196, 0, 2012, +2194, 0, 2023, +2190, 0, 2047, +2186, 0, 2090, +2186, 0, 2140, +2178, 0, 2178, +2166, 0, 2234, +2155, 244, 2307, +2166, 0, 2388, +2195, 523, 2475, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 978, 2513, +2199, 0, 1969, +2199, 0, 1969, +2199, 0, 1970, +2199, 0, 1971, +2199, 0, 1972, +2199, 0, 1974, +2199, 0, 1976, +2199, 0, 1979, +2199, 0, 1983, +2199, 0, 1988, +2199, 0, 1994, +2198, 0, 2003, +2196, 0, 2014, +2194, 0, 2025, +2190, 0, 2045, +2186, 0, 2089, +2185, 0, 2140, +2178, 0, 2180, +2169, 0, 2235, +2158, 376, 2308, +2165, 61, 2387, +2194, 633, 2476, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2202, 993, 2513, +2198, 0, 1971, +2198, 0, 1972, +2198, 0, 1972, +2198, 0, 1973, +2198, 0, 1974, +2198, 0, 1976, +2198, 0, 1978, +2198, 0, 1981, +2198, 0, 1985, +2198, 0, 1990, +2198, 0, 1996, +2198, 0, 2005, +2196, 0, 2016, +2194, 0, 2027, +2190, 0, 2043, +2186, 0, 2087, +2183, 0, 2140, +2178, 0, 2183, +2172, 0, 2236, +2163, 508, 2309, +2167, 263, 2387, +2192, 748, 2476, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2206, 1012, 2513, +2197, 0, 1974, +2197, 0, 1974, +2197, 0, 1975, +2197, 0, 1976, +2197, 0, 1977, +2197, 0, 1979, +2197, 0, 1981, +2197, 0, 1984, +2197, 0, 1988, +2197, 0, 1993, +2197, 0, 1999, +2197, 0, 2008, +2196, 0, 2019, +2194, 0, 2030, +2190, 0, 2044, +2186, 0, 2085, +2183, 0, 2139, +2179, 0, 2186, +2175, 0, 2237, +2168, 643, 2310, +2170, 532, 2388, +2192, 890, 2477, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2211, 1054, 2513, +2200, 621, 1974, +2200, 621, 1974, +2200, 621, 1976, +2200, 621, 1977, +2200, 621, 1978, +2200, 621, 1980, +2201, 621, 1983, +2201, 621, 1986, +2202, 621, 1991, +2202, 621, 1997, +2202, 621, 2003, +2202, 621, 2012, +2202, 617, 2022, +2196, 529, 2033, +2193, 529, 2047, +2189, 621, 2082, +2185, 627, 2133, +2182, 413, 2189, +2177, 708, 2240, +2170, 828, 2310, +2173, 948, 2390, +2196, 1121, 2478, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2216, 1189, 2513, +2203, 974, 1974, +2203, 974, 1974, +2203, 974, 1976, +2203, 974, 1977, +2203, 974, 1978, +2204, 974, 1980, +2204, 974, 1983, +2204, 974, 1986, +2205, 974, 1991, +2206, 974, 1997, +2207, 974, 2005, +2208, 974, 2016, +2208, 973, 2027, +2203, 934, 2038, +2196, 877, 2052, +2192, 934, 2084, +2188, 977, 2129, +2185, 874, 2183, +2181, 1059, 2243, +2174, 996, 2310, +2175, 1202, 2391, +2206, 1271, 2478, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2222, 1322, 2513, +2208, 1278, 1984, +2208, 1279, 1985, +2208, 1279, 1986, +2208, 1281, 1986, +2209, 1282, 1987, +2209, 1284, 1988, +2209, 1286, 1990, +2209, 1289, 1992, +2210, 1294, 1995, +2211, 1299, 1998, +2212, 1302, 2005, +2213, 1302, 2016, +2214, 1300, 2030, +2212, 1282, 2047, +2206, 1256, 2063, +2201, 1278, 2090, +2194, 1321, 2134, +2193, 1308, 2182, +2182, 1327, 2241, +2178, 1331, 2310, +2182, 1416, 2391, +2214, 1452, 2477, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2228, 1489, 2513, +2220, 1531, 2004, +2220, 1531, 2004, +2220, 1531, 2004, +2220, 1532, 2005, +2220, 1533, 2006, +2220, 1534, 2007, +2220, 1535, 2008, +2220, 1537, 2010, +2220, 1540, 2013, +2221, 1543, 2017, +2222, 1547, 2021, +2223, 1553, 2027, +2224, 1559, 2037, +2222, 1557, 2051, +2218, 1543, 2073, +2214, 1535, 2102, +2208, 1550, 2140, +2199, 1572, 2190, +2195, 1558, 2240, +2192, 1577, 2310, +2192, 1604, 2393, +2223, 1653, 2476, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2238, 1676, 2514, +2241, 1755, 2023, +2241, 1755, 2023, +2241, 1755, 2024, +2241, 1755, 2024, +2241, 1755, 2025, +2241, 1755, 2025, +2241, 1755, 2026, +2241, 1755, 2028, +2241, 1755, 2029, +2241, 1755, 2031, +2241, 1758, 2036, +2241, 1761, 2042, +2240, 1765, 2049, +2240, 1765, 2063, +2238, 1765, 2080, +2237, 1764, 2104, +2229, 1762, 2147, +2223, 1755, 2193, +2223, 1765, 2244, +2223, 1774, 2315, +2215, 1795, 2391, +2250, 1824, 2482, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2262, 1849, 2517, +2268, 1946, 2048, +2268, 1946, 2049, +2269, 1946, 2049, +2269, 1946, 2050, +2269, 1946, 2051, +2269, 1946, 2051, +2270, 1946, 2053, +2270, 1946, 2054, +2270, 1946, 2057, +2271, 1946, 2060, +2272, 1946, 2064, +2273, 1946, 2070, +2274, 1945, 2077, +2274, 1945, 2087, +2274, 1945, 2099, +2271, 1951, 2124, +2268, 1961, 2158, +2265, 1963, 2203, +2273, 1968, 2256, +2261, 1969, 2321, +2271, 1965, 2394, +2310, 1995, 2482, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2335, 2014, 2520, +2351, 2143, 2087, +2351, 2143, 2087, +2351, 2143, 2087, +2351, 2143, 2088, +2351, 2143, 2088, +2351, 2143, 2089, +2351, 2143, 2091, +2351, 2143, 2092, +2351, 2143, 2094, +2351, 2143, 2097, +2351, 2143, 2101, +2351, 2143, 2106, +2351, 2143, 2112, +2351, 2143, 2115, +2351, 2143, 2119, +2351, 2143, 2141, +2349, 2146, 2174, +2346, 2147, 2214, +2351, 2143, 2263, +2356, 2159, 2326, +2362, 2167, 2401, +2402, 2189, 2492, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2434, 2202, 2530, +2515, 2384, 2126, +2514, 2384, 2127, +2514, 2384, 2127, +2514, 2384, 2127, +2514, 2383, 2127, +2514, 2383, 2127, +2514, 2383, 2128, +2514, 2383, 2128, +2514, 2382, 2129, +2513, 2382, 2130, +2513, 2381, 2131, +2513, 2381, 2133, +2514, 2382, 2135, +2515, 2384, 2141, +2515, 2385, 2150, +2515, 2388, 2172, +2515, 2388, 2195, +2520, 2388, 2230, +2523, 2391, 2279, +2523, 2395, 2342, +2548, 2407, 2404, +2582, 2421, 2483, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2607, 2433, 2514, +2731, 2680, 2128, +2731, 2680, 2129, +2731, 2680, 2129, +2731, 2680, 2130, +2731, 2680, 2131, +2731, 2681, 2132, +2731, 2681, 2133, +2731, 2681, 2135, +2731, 2681, 2136, +2730, 2681, 2137, +2730, 2681, 2138, +2729, 2680, 2140, +2728, 2679, 2142, +2728, 2679, 2150, +2730, 2679, 2164, +2731, 2678, 2176, +2730, 2679, 2195, +2730, 2680, 2243, +2735, 2682, 2308, +2735, 2687, 2382, +2739, 2689, 2468, +2750, 2708, 2581, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2756, 2707, 2625, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2495, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2496, +2755, 2784, 2497, +2755, 2784, 2498, +2755, 2785, 2499, +2755, 2785, 2501, +2755, 2786, 2503, +2755, 2786, 2506, +2755, 2787, 2509, +2755, 2787, 2512, +2755, 2787, 2515, +2754, 2787, 2520, +2753, 2788, 2528, +2753, 2787, 2543, +2751, 2785, 2569, +2749, 2789, 2602, +2753, 2795, 2660, +2755, 2801, 2726, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2757, 2802, 2755, +2331, 0, 2000, +2331, 0, 2000, +2331, 0, 2001, +2331, 0, 2001, +2331, 0, 2002, +2331, 0, 2003, +2331, 0, 2005, +2331, 0, 2007, +2331, 0, 2010, +2331, 0, 2013, +2331, 0, 2018, +2331, 0, 2024, +2330, 0, 2034, +2326, 0, 2051, +2322, 0, 2072, +2321, 0, 2094, +2320, 0, 2138, +2314, 0, 2186, +2319, 0, 2244, +2315, 0, 2315, +2317, 0, 2391, +2334, 913, 2480, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2348, 1255, 2518, +2331, 0, 2000, +2331, 0, 2000, +2331, 0, 2001, +2331, 0, 2001, +2331, 0, 2002, +2331, 0, 2003, +2331, 0, 2005, +2331, 0, 2007, +2331, 0, 2010, +2331, 0, 2013, +2331, 0, 2018, +2331, 0, 2024, +2330, 0, 2034, +2326, 0, 2051, +2322, 0, 2072, +2321, 0, 2094, +2320, 0, 2138, +2315, 0, 2186, +2319, 0, 2245, +2315, 0, 2315, +2317, 0, 2392, +2334, 917, 2480, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2348, 1256, 2518, +2331, 0, 2000, +2331, 0, 2000, +2331, 0, 2001, +2331, 0, 2001, +2331, 0, 2002, +2331, 0, 2003, +2331, 0, 2005, +2331, 0, 2007, +2331, 0, 2010, +2331, 0, 2013, +2331, 0, 2018, +2330, 0, 2024, +2329, 0, 2034, +2326, 0, 2051, +2322, 0, 2072, +2321, 0, 2095, +2320, 0, 2138, +2315, 0, 2186, +2319, 0, 2245, +2315, 0, 2315, +2317, 0, 2392, +2334, 922, 2479, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2348, 1258, 2518, +2331, 0, 2000, +2331, 0, 2000, +2331, 0, 2001, +2331, 0, 2001, +2331, 0, 2002, +2331, 0, 2003, +2331, 0, 2005, +2331, 0, 2007, +2331, 0, 2010, +2331, 0, 2013, +2331, 0, 2018, +2330, 0, 2024, +2329, 0, 2034, +2326, 0, 2052, +2322, 0, 2072, +2321, 0, 2095, +2321, 0, 2138, +2315, 0, 2186, +2319, 0, 2245, +2315, 0, 2315, +2317, 0, 2392, +2334, 929, 2479, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2348, 1260, 2518, +2331, 0, 2000, +2331, 0, 2000, +2331, 0, 2001, +2331, 0, 2001, +2331, 0, 2002, +2331, 0, 2003, +2331, 0, 2005, +2331, 0, 2007, +2331, 0, 2010, +2331, 0, 2013, +2331, 0, 2018, +2330, 0, 2024, +2329, 0, 2034, +2326, 0, 2052, +2322, 0, 2072, +2321, 0, 2095, +2321, 0, 2138, +2315, 0, 2186, +2319, 0, 2245, +2315, 0, 2315, +2317, 0, 2392, +2334, 938, 2479, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2349, 1263, 2518, +2331, 0, 2000, +2331, 0, 2000, +2331, 0, 2001, +2331, 0, 2001, +2330, 0, 2002, +2330, 0, 2003, +2330, 0, 2005, +2330, 0, 2007, +2330, 0, 2010, +2330, 0, 2013, +2330, 0, 2018, +2330, 0, 2024, +2329, 0, 2034, +2326, 0, 2052, +2322, 0, 2073, +2321, 0, 2095, +2322, 0, 2138, +2315, 0, 2186, +2318, 0, 2245, +2315, 30, 2315, +2317, 0, 2392, +2334, 949, 2479, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2349, 1267, 2518, +2331, 0, 2000, +2330, 0, 2000, +2330, 0, 2001, +2330, 0, 2001, +2330, 0, 2002, +2330, 0, 2003, +2330, 0, 2005, +2330, 0, 2007, +2330, 0, 2010, +2330, 0, 2013, +2330, 0, 2018, +2329, 0, 2024, +2328, 0, 2034, +2327, 0, 2053, +2323, 0, 2073, +2321, 0, 2096, +2322, 0, 2139, +2315, 0, 2186, +2318, 0, 2245, +2315, 163, 2315, +2317, 32, 2392, +2334, 964, 2478, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2350, 1272, 2518, +2330, 0, 2000, +2330, 0, 2000, +2330, 0, 2001, +2330, 0, 2001, +2330, 0, 2002, +2330, 0, 2003, +2329, 0, 2005, +2329, 0, 2007, +2329, 0, 2010, +2329, 0, 2013, +2329, 0, 2018, +2328, 0, 2024, +2327, 0, 2034, +2327, 0, 2053, +2323, 0, 2073, +2321, 0, 2096, +2323, 0, 2139, +2316, 0, 2186, +2318, 0, 2246, +2315, 295, 2315, +2317, 164, 2393, +2334, 983, 2478, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2351, 1279, 2518, +2330, 0, 2000, +2330, 0, 2000, +2330, 0, 2001, +2330, 0, 2001, +2329, 0, 2002, +2329, 0, 2003, +2329, 0, 2005, +2329, 0, 2007, +2328, 0, 2010, +2328, 0, 2013, +2328, 0, 2018, +2328, 0, 2024, +2327, 0, 2034, +2327, 0, 2054, +2323, 0, 2074, +2321, 0, 2097, +2325, 0, 2140, +2316, 0, 2186, +2317, 111, 2246, +2315, 426, 2315, +2317, 296, 2393, +2334, 993, 2478, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2352, 1288, 2518, +2329, 0, 2000, +2329, 0, 2000, +2329, 0, 2001, +2329, 0, 2001, +2329, 0, 2002, +2329, 0, 2003, +2328, 0, 2005, +2328, 0, 2007, +2328, 0, 2010, +2327, 0, 2013, +2327, 0, 2018, +2326, 0, 2024, +2325, 0, 2034, +2327, 0, 2055, +2324, 0, 2075, +2321, 0, 2098, +2325, 0, 2141, +2317, 0, 2186, +2317, 244, 2247, +2315, 559, 2315, +2317, 428, 2393, +2335, 1003, 2479, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2354, 1300, 2518, +2328, 0, 2000, +2328, 0, 2000, +2328, 0, 2001, +2328, 0, 2001, +2328, 0, 2002, +2328, 0, 2003, +2328, 0, 2005, +2327, 0, 2007, +2327, 0, 2010, +2326, 0, 2013, +2325, 0, 2018, +2325, 0, 2024, +2324, 0, 2034, +2326, 0, 2055, +2325, 61, 2077, +2322, 0, 2099, +2325, 0, 2142, +2319, 0, 2187, +2316, 376, 2248, +2315, 691, 2315, +2317, 560, 2394, +2337, 1018, 2479, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2356, 1315, 2518, +2328, 0, 2000, +2328, 0, 2000, +2328, 0, 2001, +2328, 0, 2001, +2328, 0, 2002, +2327, 0, 2003, +2327, 0, 2005, +2327, 0, 2007, +2326, 0, 2010, +2326, 0, 2013, +2325, 0, 2018, +2325, 0, 2027, +2324, 0, 2036, +2326, 0, 2057, +2327, 111, 2081, +2323, 0, 2103, +2324, 0, 2142, +2322, 0, 2190, +2315, 426, 2247, +2315, 741, 2315, +2319, 692, 2394, +2338, 1091, 2481, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2357, 1322, 2518, +2328, 0, 2000, +2328, 0, 2001, +2328, 0, 2001, +2328, 0, 2002, +2328, 0, 2003, +2328, 0, 2004, +2328, 0, 2006, +2327, 0, 2008, +2327, 0, 2011, +2326, 0, 2014, +2326, 0, 2019, +2325, 0, 2028, +2325, 0, 2040, +2327, 44, 2061, +2328, 216, 2085, +2326, 0, 2109, +2323, 0, 2139, +2324, 123, 2193, +2314, 517, 2247, +2316, 765, 2314, +2321, 843, 2393, +2340, 1204, 2482, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2357, 1332, 2518, +2332, 614, 2005, +2332, 614, 2005, +2332, 614, 2006, +2332, 614, 2007, +2332, 614, 2008, +2332, 614, 2009, +2331, 614, 2011, +2331, 614, 2014, +2331, 614, 2017, +2330, 614, 2021, +2329, 614, 2026, +2329, 614, 2035, +2329, 614, 2047, +2329, 614, 2057, +2330, 670, 2082, +2328, 727, 2109, +2321, 757, 2137, +2324, 709, 2196, +2318, 901, 2249, +2318, 868, 2316, +2319, 1072, 2391, +2342, 1300, 2483, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2357, 1409, 2519, +2336, 924, 2012, +2336, 924, 2013, +2336, 924, 2013, +2336, 924, 2014, +2335, 924, 2015, +2335, 924, 2017, +2335, 924, 2019, +2335, 924, 2021, +2335, 924, 2024, +2334, 924, 2029, +2333, 924, 2035, +2333, 924, 2042, +2333, 924, 2052, +2333, 924, 2063, +2333, 971, 2080, +2330, 1020, 2108, +2324, 1065, 2141, +2325, 1052, 2197, +2321, 1173, 2253, +2319, 1077, 2317, +2317, 1227, 2391, +2345, 1377, 2483, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2359, 1509, 2521, +2339, 1291, 2020, +2339, 1291, 2020, +2339, 1290, 2020, +2339, 1289, 2020, +2339, 1288, 2021, +2339, 1286, 2022, +2338, 1283, 2023, +2338, 1280, 2024, +2338, 1276, 2026, +2337, 1270, 2028, +2336, 1267, 2033, +2336, 1267, 2040, +2336, 1269, 2048, +2336, 1288, 2065, +2336, 1315, 2084, +2334, 1351, 2116, +2331, 1343, 2151, +2330, 1343, 2198, +2326, 1378, 2257, +2319, 1407, 2317, +2328, 1414, 2394, +2350, 1546, 2482, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2368, 1608, 2518, +2349, 1557, 2025, +2349, 1557, 2025, +2349, 1557, 2025, +2349, 1557, 2026, +2348, 1557, 2026, +2348, 1557, 2027, +2348, 1557, 2028, +2348, 1557, 2029, +2347, 1557, 2031, +2347, 1554, 2033, +2346, 1550, 2036, +2345, 1548, 2041, +2344, 1548, 2050, +2344, 1550, 2067, +2343, 1557, 2089, +2339, 1571, 2115, +2337, 1566, 2150, +2337, 1567, 2198, +2334, 1596, 2255, +2334, 1620, 2319, +2342, 1646, 2396, +2365, 1717, 2481, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2382, 1733, 2518, +2364, 1776, 2032, +2364, 1776, 2033, +2364, 1776, 2033, +2364, 1777, 2034, +2364, 1778, 2035, +2364, 1779, 2037, +2363, 1781, 2038, +2363, 1783, 2041, +2363, 1786, 2044, +2362, 1790, 2049, +2361, 1791, 2052, +2360, 1789, 2057, +2359, 1784, 2065, +2361, 1784, 2074, +2360, 1788, 2094, +2357, 1783, 2117, +2358, 1792, 2156, +2361, 1806, 2207, +2354, 1805, 2259, +2356, 1809, 2322, +2365, 1822, 2394, +2383, 1874, 2484, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2403, 1889, 2522, +2391, 1976, 2073, +2391, 1976, 2073, +2391, 1976, 2073, +2391, 1976, 2073, +2391, 1976, 2073, +2391, 1976, 2074, +2391, 1976, 2074, +2391, 1976, 2075, +2391, 1976, 2076, +2391, 1976, 2077, +2391, 1976, 2078, +2391, 1976, 2080, +2392, 1977, 2084, +2394, 1981, 2093, +2395, 1984, 2105, +2395, 1984, 2134, +2392, 1984, 2163, +2391, 1984, 2207, +2387, 1995, 2266, +2396, 1995, 2324, +2406, 2017, 2405, +2425, 2038, 2488, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2448, 2060, 2526, +2463, 2177, 2109, +2463, 2177, 2109, +2463, 2177, 2110, +2463, 2177, 2110, +2463, 2177, 2110, +2463, 2177, 2111, +2463, 2178, 2112, +2463, 2178, 2113, +2463, 2179, 2114, +2463, 2180, 2116, +2463, 2181, 2119, +2462, 2182, 2121, +2460, 2183, 2124, +2459, 2181, 2126, +2458, 2177, 2134, +2459, 2184, 2157, +2463, 2186, 2183, +2461, 2184, 2220, +2460, 2188, 2268, +2468, 2189, 2340, +2476, 2191, 2406, +2508, 2230, 2493, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2527, 2237, 2533, +2598, 2410, 2071, +2598, 2410, 2071, +2599, 2411, 2071, +2599, 2411, 2071, +2599, 2411, 2071, +2600, 2412, 2070, +2600, 2412, 2070, +2602, 2413, 2069, +2603, 2414, 2069, +2604, 2416, 2068, +2606, 2418, 2066, +2607, 2419, 2068, +2607, 2420, 2073, +2607, 2420, 2079, +2607, 2420, 2088, +2607, 2420, 2112, +2607, 2422, 2147, +2606, 2422, 2181, +2609, 2420, 2243, +2615, 2426, 2302, +2628, 2437, 2380, +2656, 2458, 2462, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2676, 2468, 2496, +2763, 2702, 2255, +2763, 2702, 2255, +2763, 2702, 2255, +2762, 2701, 2255, +2762, 2701, 2255, +2762, 2701, 2255, +2762, 2701, 2255, +2762, 2701, 2255, +2762, 2701, 2255, +2763, 2701, 2256, +2763, 2701, 2257, +2764, 2701, 2260, +2765, 2701, 2267, +2765, 2701, 2274, +2763, 2702, 2284, +2762, 2704, 2300, +2763, 2706, 2316, +2764, 2703, 2348, +2764, 2703, 2388, +2768, 2710, 2455, +2769, 2717, 2538, +2774, 2727, 2626, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2777, 2731, 2667, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2797, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2548, +2781, 2798, 2549, +2781, 2798, 2550, +2781, 2799, 2550, +2781, 2799, 2551, +2781, 2800, 2553, +2782, 2800, 2555, +2782, 2801, 2558, +2781, 2801, 2560, +2780, 2800, 2559, +2782, 2800, 2561, +2781, 2802, 2573, +2781, 2801, 2584, +2780, 2801, 2606, +2777, 2799, 2640, +2775, 2801, 2677, +2779, 2810, 2744, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2781, 2810, 2772, +2481, 974, 2044, +2481, 973, 2044, +2481, 971, 2044, +2481, 969, 2045, +2480, 967, 2045, +2480, 963, 2046, +2480, 958, 2047, +2480, 951, 2048, +2480, 951, 2051, +2480, 951, 2054, +2480, 951, 2058, +2480, 951, 2063, +2480, 955, 2072, +2479, 992, 2087, +2477, 1037, 2103, +2476, 1071, 2127, +2475, 1132, 2163, +2475, 1219, 2209, +2476, 1370, 2267, +2478, 1392, 2329, +2488, 1469, 2402, +2504, 1610, 2488, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2481, 977, 2044, +2481, 977, 2044, +2481, 976, 2044, +2480, 974, 2045, +2480, 971, 2045, +2480, 968, 2046, +2480, 963, 2047, +2480, 956, 2048, +2480, 955, 2051, +2480, 955, 2054, +2480, 955, 2058, +2480, 955, 2063, +2480, 960, 2072, +2479, 996, 2087, +2477, 1041, 2103, +2476, 1074, 2127, +2476, 1133, 2163, +2475, 1220, 2209, +2476, 1373, 2267, +2478, 1394, 2329, +2488, 1469, 2402, +2504, 1611, 2488, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2481, 982, 2044, +2481, 982, 2044, +2480, 982, 2044, +2480, 980, 2045, +2480, 977, 2045, +2480, 974, 2046, +2480, 969, 2047, +2480, 962, 2048, +2480, 962, 2051, +2480, 962, 2054, +2480, 962, 2058, +2480, 962, 2063, +2480, 966, 2072, +2479, 1002, 2087, +2477, 1046, 2103, +2476, 1079, 2127, +2476, 1136, 2162, +2475, 1221, 2209, +2476, 1377, 2267, +2478, 1397, 2329, +2488, 1469, 2402, +2504, 1611, 2488, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2481, 988, 2044, +2480, 988, 2044, +2480, 988, 2044, +2480, 988, 2045, +2480, 985, 2045, +2480, 981, 2046, +2480, 977, 2047, +2480, 970, 2048, +2480, 970, 2051, +2480, 970, 2054, +2480, 970, 2058, +2480, 970, 2063, +2480, 974, 2072, +2479, 1010, 2087, +2477, 1053, 2103, +2476, 1085, 2127, +2476, 1138, 2162, +2475, 1222, 2209, +2476, 1382, 2267, +2478, 1400, 2329, +2488, 1469, 2402, +2504, 1612, 2488, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2480, 996, 2044, +2480, 996, 2044, +2480, 996, 2044, +2480, 996, 2045, +2480, 996, 2045, +2480, 992, 2046, +2480, 987, 2047, +2480, 981, 2048, +2480, 981, 2051, +2480, 981, 2054, +2480, 981, 2058, +2480, 981, 2063, +2480, 985, 2072, +2479, 1020, 2087, +2477, 1062, 2103, +2476, 1094, 2127, +2476, 1142, 2162, +2476, 1223, 2208, +2476, 1388, 2268, +2478, 1404, 2329, +2488, 1469, 2402, +2504, 1614, 2487, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2480, 1006, 2044, +2480, 1006, 2044, +2480, 1006, 2044, +2480, 1006, 2045, +2480, 1006, 2045, +2480, 1006, 2046, +2480, 1001, 2047, +2479, 995, 2048, +2479, 995, 2051, +2479, 995, 2054, +2479, 995, 2058, +2479, 995, 2063, +2479, 999, 2072, +2479, 1032, 2087, +2477, 1074, 2103, +2476, 1105, 2127, +2476, 1147, 2162, +2476, 1225, 2208, +2476, 1397, 2268, +2478, 1409, 2329, +2488, 1469, 2401, +2503, 1615, 2487, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2519, 1697, 2526, +2480, 1019, 2044, +2480, 1019, 2044, +2480, 1019, 2044, +2480, 1019, 2045, +2480, 1019, 2045, +2480, 1019, 2046, +2479, 1019, 2047, +2479, 1013, 2048, +2479, 1013, 2051, +2479, 1013, 2054, +2479, 1013, 2058, +2479, 1013, 2063, +2479, 1017, 2072, +2479, 1049, 2087, +2477, 1089, 2103, +2475, 1119, 2127, +2476, 1154, 2161, +2476, 1228, 2208, +2477, 1408, 2268, +2477, 1417, 2329, +2488, 1469, 2401, +2503, 1618, 2486, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2480, 1036, 2044, +2480, 1036, 2044, +2480, 1036, 2044, +2480, 1036, 2045, +2480, 1036, 2045, +2479, 1036, 2046, +2479, 1036, 2047, +2479, 1036, 2048, +2479, 1036, 2051, +2479, 1036, 2054, +2479, 1036, 2058, +2479, 1036, 2063, +2479, 1039, 2072, +2478, 1070, 2087, +2476, 1108, 2103, +2475, 1137, 2127, +2477, 1162, 2161, +2476, 1232, 2207, +2477, 1423, 2268, +2477, 1426, 2329, +2488, 1469, 2401, +2503, 1621, 2486, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2518, 1697, 2526, +2480, 1071, 2044, +2480, 1071, 2044, +2480, 1071, 2044, +2480, 1071, 2045, +2480, 1071, 2045, +2479, 1071, 2046, +2479, 1071, 2047, +2479, 1071, 2048, +2479, 1044, 2051, +2479, 1044, 2054, +2479, 1044, 2058, +2479, 1044, 2063, +2479, 1048, 2072, +2479, 1085, 2087, +2477, 1122, 2103, +2476, 1149, 2126, +2478, 1179, 2161, +2476, 1241, 2208, +2477, 1424, 2268, +2478, 1436, 2329, +2488, 1480, 2401, +2504, 1627, 2485, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2519, 1702, 2526, +2480, 1115, 2044, +2480, 1115, 2044, +2480, 1115, 2044, +2480, 1115, 2045, +2480, 1115, 2045, +2479, 1115, 2046, +2479, 1115, 2047, +2479, 1115, 2048, +2479, 1091, 2051, +2479, 1054, 2054, +2479, 1054, 2058, +2479, 1054, 2063, +2479, 1058, 2072, +2479, 1099, 2087, +2478, 1138, 2103, +2476, 1165, 2125, +2478, 1193, 2160, +2477, 1254, 2209, +2477, 1424, 2266, +2479, 1448, 2329, +2488, 1495, 2401, +2504, 1635, 2485, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2521, 1708, 2526, +2480, 1169, 2044, +2480, 1169, 2044, +2480, 1169, 2044, +2480, 1169, 2045, +2480, 1169, 2045, +2479, 1169, 2046, +2479, 1169, 2047, +2479, 1169, 2048, +2479, 1147, 2051, +2479, 1114, 2054, +2479, 1067, 2058, +2479, 1067, 2063, +2479, 1070, 2072, +2479, 1111, 2087, +2479, 1159, 2103, +2478, 1185, 2125, +2480, 1212, 2159, +2478, 1278, 2209, +2477, 1424, 2264, +2480, 1464, 2329, +2488, 1514, 2402, +2505, 1646, 2485, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2523, 1718, 2525, +2480, 1231, 2044, +2480, 1231, 2044, +2480, 1231, 2044, +2480, 1231, 2045, +2480, 1231, 2045, +2479, 1231, 2046, +2479, 1231, 2047, +2479, 1231, 2048, +2479, 1212, 2051, +2479, 1184, 2054, +2479, 1144, 2058, +2479, 1083, 2063, +2479, 1087, 2072, +2479, 1126, 2087, +2481, 1186, 2103, +2479, 1210, 2125, +2481, 1236, 2158, +2479, 1308, 2209, +2477, 1424, 2262, +2481, 1485, 2329, +2488, 1542, 2402, +2507, 1660, 2485, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2526, 1729, 2524, +2480, 1299, 2045, +2480, 1299, 2045, +2480, 1299, 2045, +2480, 1299, 2046, +2480, 1299, 2046, +2480, 1299, 2047, +2480, 1299, 2048, +2479, 1299, 2049, +2479, 1283, 2051, +2479, 1259, 2054, +2479, 1225, 2059, +2479, 1174, 2064, +2479, 1114, 2072, +2480, 1151, 2087, +2481, 1213, 2103, +2481, 1244, 2125, +2483, 1268, 2156, +2481, 1346, 2209, +2477, 1430, 2260, +2483, 1511, 2329, +2489, 1583, 2403, +2509, 1680, 2486, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2529, 1745, 2524, +2482, 1385, 2049, +2482, 1385, 2049, +2482, 1384, 2049, +2482, 1384, 2050, +2482, 1382, 2050, +2482, 1381, 2051, +2482, 1379, 2052, +2481, 1376, 2053, +2482, 1366, 2055, +2482, 1349, 2058, +2482, 1321, 2063, +2482, 1281, 2068, +2482, 1235, 2076, +2482, 1263, 2087, +2484, 1312, 2103, +2484, 1330, 2127, +2485, 1346, 2157, +2483, 1386, 2211, +2480, 1472, 2262, +2483, 1568, 2328, +2492, 1634, 2404, +2509, 1714, 2486, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2531, 1767, 2524, +2484, 1508, 2049, +2484, 1507, 2049, +2484, 1507, 2049, +2484, 1506, 2050, +2484, 1506, 2050, +2484, 1504, 2051, +2483, 1503, 2052, +2483, 1501, 2053, +2483, 1493, 2055, +2484, 1482, 2058, +2485, 1467, 2063, +2485, 1445, 2068, +2485, 1416, 2076, +2486, 1436, 2087, +2488, 1470, 2103, +2487, 1479, 2127, +2487, 1478, 2157, +2484, 1484, 2208, +2487, 1547, 2268, +2485, 1642, 2328, +2495, 1671, 2406, +2509, 1751, 2486, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2531, 1801, 2522, +2490, 1632, 2052, +2490, 1632, 2052, +2490, 1632, 2053, +2490, 1632, 2054, +2490, 1632, 2054, +2490, 1632, 2056, +2490, 1632, 2057, +2490, 1632, 2060, +2490, 1628, 2062, +2491, 1623, 2066, +2491, 1613, 2070, +2492, 1598, 2075, +2493, 1580, 2082, +2492, 1580, 2091, +2493, 1600, 2105, +2492, 1613, 2131, +2491, 1631, 2162, +2489, 1632, 2206, +2493, 1658, 2265, +2493, 1730, 2328, +2499, 1742, 2404, +2518, 1813, 2489, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2537, 1864, 2526, +2502, 1784, 2071, +2502, 1784, 2071, +2502, 1784, 2071, +2502, 1784, 2072, +2502, 1784, 2073, +2502, 1784, 2073, +2502, 1784, 2075, +2502, 1784, 2077, +2502, 1779, 2078, +2502, 1774, 2081, +2503, 1769, 2085, +2503, 1762, 2090, +2504, 1754, 2098, +2504, 1757, 2107, +2503, 1757, 2115, +2502, 1754, 2140, +2499, 1757, 2175, +2500, 1778, 2215, +2501, 1806, 2266, +2500, 1817, 2326, +2509, 1832, 2402, +2528, 1891, 2490, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2547, 1940, 2532, +2516, 1927, 2075, +2516, 1928, 2075, +2516, 1928, 2075, +2516, 1928, 2076, +2516, 1928, 2076, +2517, 1929, 2077, +2517, 1929, 2078, +2517, 1930, 2079, +2517, 1930, 2081, +2516, 1930, 2084, +2516, 1924, 2087, +2515, 1913, 2090, +2514, 1901, 2096, +2516, 1900, 2105, +2517, 1912, 2120, +2515, 1910, 2143, +2514, 1921, 2180, +2513, 1918, 2218, +2516, 1938, 2272, +2518, 1938, 2333, +2528, 1977, 2406, +2552, 2008, 2491, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2567, 2036, 2526, +2547, 2073, 2093, +2547, 2073, 2093, +2547, 2073, 2093, +2546, 2073, 2093, +2546, 2073, 2094, +2546, 2073, 2094, +2545, 2073, 2095, +2545, 2073, 2096, +2545, 2073, 2098, +2545, 2073, 2100, +2545, 2073, 2102, +2545, 2073, 2106, +2545, 2073, 2111, +2545, 2075, 2119, +2543, 2075, 2127, +2543, 2078, 2149, +2543, 2075, 2180, +2546, 2089, 2222, +2546, 2091, 2274, +2551, 2098, 2337, +2558, 2115, 2411, +2588, 2155, 2491, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2598, 2168, 2529, +2602, 2259, 2099, +2602, 2258, 2099, +2602, 2258, 2099, +2602, 2258, 2099, +2602, 2258, 2099, +2601, 2258, 2099, +2600, 2258, 2099, +2600, 2257, 2099, +2600, 2257, 2101, +2600, 2257, 2104, +2600, 2257, 2108, +2600, 2257, 2113, +2600, 2257, 2120, +2603, 2257, 2132, +2606, 2257, 2144, +2606, 2263, 2161, +2611, 2270, 2190, +2606, 2266, 2226, +2612, 2277, 2289, +2615, 2277, 2347, +2621, 2290, 2414, +2651, 2318, 2497, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2668, 2333, 2527, +2722, 2488, 1839, +2722, 2488, 1839, +2722, 2488, 1841, +2722, 2488, 1843, +2723, 2488, 1845, +2723, 2489, 1848, +2724, 2489, 1852, +2724, 2489, 1858, +2724, 2489, 1862, +2724, 2489, 1867, +2724, 2488, 1873, +2723, 2488, 1876, +2723, 2488, 1878, +2722, 2488, 1891, +2722, 2486, 1913, +2722, 2485, 1956, +2723, 2487, 2015, +2723, 2486, 2070, +2727, 2489, 2159, +2732, 2495, 2242, +2745, 2509, 2352, +2763, 2528, 2453, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2772, 2539, 2499, +2811, 2738, 2425, +2811, 2738, 2425, +2811, 2738, 2426, +2811, 2738, 2426, +2811, 2738, 2426, +2811, 2738, 2426, +2811, 2738, 2427, +2811, 2738, 2427, +2811, 2739, 2428, +2811, 2739, 2430, +2811, 2739, 2431, +2811, 2740, 2434, +2811, 2740, 2437, +2811, 2740, 2440, +2810, 2740, 2444, +2810, 2740, 2448, +2811, 2742, 2464, +2810, 2743, 2483, +2810, 2745, 2522, +2810, 2748, 2564, +2811, 2752, 2623, +2810, 2762, 2701, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2813, 2763, 2731, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2591, +2820, 2813, 2590, +2820, 2813, 2590, +2820, 2813, 2589, +2820, 2812, 2589, +2820, 2813, 2590, +2820, 2813, 2591, +2820, 2813, 2592, +2820, 2813, 2593, +2820, 2814, 2596, +2819, 2814, 2598, +2818, 2813, 2599, +2820, 2813, 2604, +2822, 2813, 2612, +2820, 2813, 2623, +2820, 2815, 2643, +2818, 2815, 2670, +2818, 2817, 2713, +2813, 2819, 2768, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2814, 2823, 2799, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2554, 1623, 2059, +2554, 1623, 2059, +2554, 1623, 2060, +2554, 1623, 2060, +2554, 1623, 2061, +2554, 1623, 2063, +2554, 1623, 2065, +2554, 1623, 2067, +2554, 1623, 2070, +2554, 1623, 2074, +2554, 1623, 2080, +2554, 1623, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2555, 1588, 2133, +2556, 1555, 2169, +2555, 1608, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1761, 2409, +2587, 1838, 2491, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1625, 2059, +2554, 1624, 2059, +2554, 1624, 2060, +2554, 1624, 2060, +2554, 1624, 2061, +2554, 1624, 2063, +2554, 1624, 2064, +2554, 1624, 2067, +2554, 1624, 2070, +2554, 1624, 2074, +2554, 1624, 2080, +2554, 1624, 2087, +2554, 1621, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1590, 2134, +2556, 1556, 2169, +2555, 1609, 2217, +2557, 1691, 2269, +2563, 1692, 2342, +2564, 1762, 2409, +2587, 1839, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1627, 2059, +2554, 1626, 2059, +2554, 1625, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2063, +2554, 1625, 2064, +2554, 1625, 2067, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1622, 2096, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1592, 2134, +2556, 1559, 2169, +2555, 1610, 2217, +2557, 1691, 2269, +2564, 1693, 2342, +2564, 1764, 2409, +2587, 1840, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1630, 2060, +2554, 1629, 2060, +2554, 1627, 2060, +2554, 1625, 2060, +2554, 1625, 2061, +2554, 1625, 2062, +2554, 1625, 2064, +2554, 1625, 2066, +2554, 1625, 2070, +2554, 1625, 2074, +2554, 1625, 2079, +2554, 1625, 2086, +2554, 1623, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1595, 2134, +2556, 1562, 2169, +2555, 1611, 2217, +2557, 1691, 2270, +2564, 1694, 2342, +2564, 1765, 2409, +2587, 1842, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1633, 2060, +2554, 1632, 2060, +2554, 1631, 2060, +2554, 1629, 2060, +2554, 1626, 2061, +2554, 1626, 2062, +2554, 1626, 2064, +2554, 1626, 2066, +2554, 1626, 2069, +2554, 1626, 2073, +2554, 1626, 2079, +2554, 1626, 2086, +2554, 1625, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1599, 2135, +2556, 1567, 2169, +2555, 1613, 2217, +2557, 1692, 2270, +2564, 1695, 2342, +2565, 1768, 2409, +2587, 1844, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2554, 1638, 2061, +2554, 1638, 2061, +2554, 1636, 2061, +2554, 1634, 2061, +2554, 1631, 2061, +2554, 1628, 2062, +2554, 1628, 2063, +2554, 1628, 2066, +2554, 1628, 2069, +2554, 1628, 2073, +2554, 1628, 2079, +2554, 1628, 2086, +2554, 1626, 2095, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1605, 2135, +2556, 1572, 2169, +2555, 1616, 2217, +2557, 1693, 2270, +2564, 1696, 2342, +2565, 1771, 2409, +2587, 1847, 2492, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2597, 1897, 2530, +2555, 1645, 2062, +2555, 1644, 2062, +2555, 1643, 2062, +2555, 1641, 2062, +2555, 1638, 2062, +2555, 1635, 2063, +2555, 1631, 2063, +2555, 1631, 2066, +2555, 1631, 2069, +2555, 1631, 2073, +2555, 1631, 2078, +2555, 1631, 2085, +2555, 1628, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1612, 2136, +2556, 1580, 2169, +2554, 1619, 2217, +2558, 1694, 2270, +2564, 1698, 2342, +2565, 1775, 2409, +2587, 1852, 2492, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2555, 1654, 2063, +2555, 1653, 2063, +2555, 1651, 2063, +2555, 1650, 2063, +2555, 1647, 2063, +2555, 1644, 2064, +2555, 1640, 2064, +2555, 1633, 2065, +2555, 1633, 2068, +2555, 1633, 2072, +2555, 1633, 2078, +2555, 1633, 2085, +2555, 1631, 2094, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1621, 2137, +2557, 1590, 2169, +2554, 1624, 2217, +2558, 1695, 2270, +2564, 1701, 2342, +2565, 1781, 2409, +2588, 1857, 2493, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2597, 1897, 2529, +2556, 1665, 2064, +2556, 1664, 2065, +2556, 1663, 2065, +2556, 1661, 2065, +2556, 1659, 2065, +2556, 1655, 2066, +2556, 1651, 2066, +2556, 1646, 2066, +2556, 1638, 2067, +2556, 1638, 2071, +2556, 1638, 2077, +2556, 1638, 2084, +2556, 1636, 2093, +2554, 1621, 2102, +2554, 1621, 2110, +2556, 1633, 2138, +2557, 1603, 2169, +2554, 1630, 2217, +2558, 1697, 2271, +2564, 1704, 2342, +2565, 1788, 2409, +2588, 1860, 2493, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2597, 1897, 2528, +2556, 1680, 2066, +2556, 1679, 2067, +2556, 1678, 2067, +2556, 1676, 2067, +2556, 1674, 2067, +2556, 1671, 2068, +2556, 1667, 2068, +2556, 1661, 2069, +2556, 1653, 2069, +2556, 1643, 2070, +2556, 1643, 2076, +2556, 1643, 2083, +2556, 1641, 2092, +2554, 1624, 2101, +2554, 1621, 2110, +2557, 1649, 2140, +2557, 1620, 2170, +2554, 1638, 2217, +2558, 1699, 2271, +2565, 1709, 2342, +2566, 1798, 2409, +2589, 1863, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2558, 1699, 2069, +2558, 1698, 2069, +2558, 1697, 2070, +2558, 1695, 2070, +2558, 1693, 2070, +2558, 1690, 2070, +2558, 1686, 2071, +2558, 1681, 2071, +2558, 1674, 2072, +2558, 1663, 2073, +2558, 1650, 2074, +2558, 1650, 2082, +2557, 1648, 2091, +2555, 1631, 2100, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1642, 2173, +2554, 1658, 2217, +2559, 1702, 2273, +2565, 1715, 2342, +2566, 1810, 2409, +2589, 1868, 2493, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2597, 1897, 2527, +2559, 1723, 2073, +2559, 1723, 2073, +2559, 1722, 2073, +2559, 1720, 2073, +2559, 1718, 2074, +2559, 1715, 2074, +2559, 1711, 2074, +2559, 1706, 2075, +2559, 1699, 2076, +2559, 1690, 2077, +2559, 1677, 2078, +2559, 1659, 2080, +2558, 1657, 2089, +2556, 1641, 2098, +2554, 1621, 2110, +2557, 1657, 2141, +2558, 1669, 2176, +2555, 1684, 2217, +2560, 1706, 2274, +2566, 1723, 2342, +2567, 1816, 2409, +2591, 1873, 2493, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2597, 1897, 2525, +2560, 1754, 2078, +2560, 1754, 2078, +2560, 1753, 2078, +2560, 1752, 2079, +2560, 1750, 2079, +2560, 1747, 2079, +2560, 1744, 2080, +2560, 1739, 2080, +2560, 1732, 2081, +2560, 1724, 2082, +2560, 1712, 2083, +2560, 1695, 2085, +2560, 1674, 2088, +2558, 1658, 2097, +2555, 1635, 2110, +2557, 1661, 2141, +2559, 1703, 2179, +2556, 1716, 2217, +2560, 1716, 2275, +2566, 1739, 2342, +2568, 1818, 2408, +2592, 1880, 2493, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2597, 1898, 2524, +2562, 1761, 2078, +2562, 1761, 2078, +2562, 1761, 2079, +2562, 1762, 2080, +2562, 1763, 2080, +2562, 1765, 2082, +2562, 1766, 2084, +2562, 1769, 2086, +2562, 1772, 2089, +2563, 1771, 2091, +2563, 1760, 2093, +2563, 1745, 2094, +2562, 1727, 2097, +2561, 1712, 2103, +2558, 1692, 2116, +2556, 1693, 2138, +2560, 1738, 2181, +2560, 1744, 2217, +2561, 1744, 2275, +2566, 1785, 2340, +2571, 1835, 2406, +2592, 1893, 2492, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2599, 1908, 2527, +2563, 1769, 2078, +2563, 1769, 2078, +2563, 1770, 2079, +2563, 1771, 2080, +2563, 1772, 2080, +2563, 1773, 2082, +2564, 1775, 2084, +2564, 1777, 2086, +2564, 1780, 2089, +2564, 1784, 2093, +2565, 1789, 2098, +2565, 1796, 2105, +2566, 1789, 2110, +2564, 1776, 2116, +2563, 1758, 2124, +2559, 1753, 2143, +2558, 1773, 2177, +2563, 1787, 2220, +2563, 1779, 2275, +2566, 1840, 2337, +2576, 1860, 2406, +2591, 1925, 2491, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2602, 1920, 2530, +2566, 1822, 2077, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2078, +2566, 1822, 2079, +2566, 1822, 2079, +2566, 1822, 2080, +2566, 1822, 2081, +2566, 1822, 2083, +2566, 1822, 2085, +2567, 1824, 2089, +2568, 1831, 2096, +2568, 1839, 2106, +2570, 1844, 2121, +2568, 1834, 2131, +2568, 1813, 2145, +2564, 1813, 2176, +2565, 1838, 2221, +2568, 1838, 2272, +2573, 1888, 2337, +2580, 1896, 2406, +2599, 1967, 2492, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2609, 1966, 2529, +2573, 1894, 2080, +2573, 1894, 2081, +2573, 1895, 2081, +2573, 1896, 2081, +2573, 1897, 2082, +2574, 1898, 2082, +2574, 1900, 2083, +2575, 1903, 2084, +2575, 1906, 2086, +2575, 1906, 2088, +2575, 1906, 2090, +2575, 1906, 2094, +2575, 1906, 2099, +2575, 1907, 2109, +2576, 1913, 2129, +2577, 1915, 2152, +2578, 1893, 2171, +2576, 1899, 2221, +2578, 1919, 2273, +2580, 1949, 2338, +2587, 1961, 2408, +2611, 2008, 2495, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2623, 2041, 2528, +2588, 1996, 2083, +2588, 1997, 2083, +2588, 1997, 2084, +2588, 1997, 2085, +2588, 1997, 2086, +2588, 1998, 2087, +2588, 1998, 2088, +2588, 1999, 2091, +2588, 2000, 2093, +2588, 2001, 2098, +2588, 2005, 2100, +2589, 2012, 2104, +2591, 2018, 2108, +2588, 2010, 2114, +2588, 2009, 2126, +2589, 2014, 2149, +2590, 2016, 2184, +2591, 2003, 2214, +2591, 2019, 2275, +2595, 2044, 2342, +2604, 2072, 2411, +2625, 2108, 2494, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2644, 2138, 2530, +2625, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2149, 2111, +2624, 2148, 2111, +2624, 2148, 2111, +2623, 2147, 2111, +2623, 2146, 2111, +2622, 2145, 2111, +2621, 2143, 2111, +2620, 2141, 2111, +2618, 2137, 2111, +2617, 2136, 2114, +2617, 2144, 2126, +2617, 2155, 2141, +2619, 2157, 2164, +2623, 2160, 2195, +2624, 2165, 2231, +2619, 2165, 2275, +2633, 2187, 2352, +2638, 2190, 2417, +2660, 2223, 2503, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2672, 2249, 2537, +2670, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2112, +2671, 2315, 2111, +2671, 2316, 2111, +2672, 2316, 2111, +2672, 2316, 2111, +2673, 2317, 2110, +2674, 2318, 2109, +2675, 2319, 2108, +2677, 2321, 2107, +2680, 2323, 2105, +2682, 2325, 2106, +2681, 2325, 2118, +2680, 2325, 2133, +2678, 2328, 2149, +2677, 2328, 2176, +2677, 2325, 2215, +2687, 2335, 2275, +2689, 2335, 2316, +2695, 2346, 2391, +2724, 2369, 2462, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2735, 2385, 2488, +2775, 2531, 1744, +2775, 2531, 1745, +2775, 2531, 1747, +2775, 2531, 1750, +2776, 2532, 1753, +2776, 2532, 1758, +2776, 2533, 1764, +2776, 2533, 1772, +2777, 2534, 1782, +2778, 2535, 1796, +2778, 2536, 1813, +2778, 2537, 1825, +2777, 2535, 1833, +2776, 2530, 1839, +2776, 2528, 1859, +2778, 2535, 1929, +2779, 2534, 1991, +2780, 2535, 2071, +2782, 2538, 2158, +2784, 2536, 2248, +2791, 2552, 2360, +2803, 2569, 2485, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2813, 2581, 2533, +2826, 2762, 2506, +2826, 2762, 2506, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2762, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2505, +2826, 2761, 2506, +2826, 2761, 2507, +2826, 2761, 2509, +2826, 2761, 2510, +2826, 2760, 2508, +2826, 2760, 2508, +2826, 2762, 2520, +2826, 2764, 2535, +2826, 2763, 2548, +2826, 2763, 2571, +2826, 2767, 2613, +2826, 2769, 2662, +2826, 2779, 2732, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2784, 2763, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2623, +2826, 2823, 2625, +2826, 2823, 2628, +2826, 2822, 2631, +2826, 2821, 2638, +2826, 2822, 2651, +2826, 2823, 2668, +2826, 2819, 2690, +2826, 2823, 2740, +2826, 2825, 2794, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819, +2826, 2826, 2819] + } +} \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/test_hue-sat_32_LUT.3dl b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/test_hue-sat_32_LUT.3dl new file mode 100644 index 0000000000..7d112117cd --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/test_hue-sat_32_LUT.3dl @@ -0,0 +1,32769 @@ +0 33 66 99 132 165 198 231 264 297 330 363 396 429 462 495 528 561 594 627 660 693 726 759 792 825 858 891 924 957 990 1023 +0 0 0 +97 163 0 +201 318 0 +312 466 0 +427 609 0 +545 750 0 +667 888 0 +792 1025 0 +918 1160 0 +1046 1295 0 +1174 1429 0 +1304 1563 0 +1434 1696 0 +1565 1828 0 +1696 1961 0 +1827 2094 0 +1959 2226 0 +2090 2358 0 +2222 2491 0 +2354 2623 0 +2486 2755 0 +2618 2887 0 +2750 3019 0 +2882 3152 0 +3014 3284 0 +3146 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +163 0 97 +163 42 0 +318 300 0 +419 466 0 +512 609 0 +613 750 0 +719 888 0 +832 1025 0 +949 1160 0 +1069 1295 0 +1192 1429 0 +1318 1563 0 +1444 1696 0 +1572 1828 0 +1702 1961 0 +1831 2094 0 +1962 2226 0 +2093 2358 0 +2224 2491 0 +2355 2623 0 +2487 2755 0 +2619 2887 0 +2750 3019 0 +2883 3152 0 +3014 3284 0 +3146 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +318 0 201 +318 0 13 +318 93 0 +466 388 0 +606 609 0 +689 750 0 +781 888 0 +881 1025 0 +987 1160 0 +1099 1295 0 +1215 1429 0 +1335 1563 0 +1457 1696 0 +1582 1828 0 +1709 1961 0 +1837 2094 0 +1966 2226 0 +2096 2358 0 +2226 2491 0 +2357 2623 0 +2488 2755 0 +2620 2887 0 +2751 3019 0 +2883 3152 0 +3014 3284 0 +3147 3416 0 +3279 3548 0 +3410 3680 0 +3543 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +466 0 312 +466 0 171 +466 0 0 +466 154 0 +609 485 0 +750 723 0 +852 888 0 +939 1025 0 +1033 1160 0 +1135 1295 0 +1244 1429 0 +1357 1563 0 +1475 1696 0 +1596 1828 0 +1719 1961 0 +1845 2094 0 +1972 2226 0 +2100 2358 0 +2230 2491 0 +2359 2623 0 +2490 2755 0 +2621 2887 0 +2752 3019 0 +2884 3152 0 +3015 3284 0 +3147 3416 0 +3279 3548 0 +3411 3680 0 +3543 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +609 0 427 +609 0 322 +609 0 127 +609 0 0 +609 224 0 +750 587 0 +888 838 0 +1006 1025 0 +1089 1160 0 +1181 1295 0 +1280 1429 0 +1385 1563 0 +1496 1696 0 +1612 1828 0 +1732 1961 0 +1855 2094 0 +1979 2226 0 +2106 2358 0 +2234 2491 0 +2363 2623 0 +2493 2755 0 +2623 2887 0 +2754 3019 0 +2885 3152 0 +3016 3284 0 +3147 3416 0 +3279 3548 0 +3411 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +750 0 545 +750 0 467 +750 0 334 +750 0 59 +750 0 0 +750 304 0 +888 697 0 +1025 957 0 +1154 1160 0 +1234 1295 0 +1323 1429 0 +1421 1563 0 +1524 1696 0 +1634 1828 0 +1749 1961 0 +1867 2094 0 +1989 2226 0 +2113 2358 0 +2239 2491 0 +2367 2623 0 +2496 2755 0 +2625 2887 0 +2755 3019 0 +2886 3152 0 +3017 3284 0 +3148 3416 0 +3280 3548 0 +3411 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +888 0 667 +888 0 608 +888 0 515 +888 0 350 +888 0 0 +888 0 0 +888 392 0 +1025 811 0 +1160 1079 0 +1295 1292 0 +1376 1429 0 +1463 1563 0 +1559 1696 0 +1661 1828 0 +1770 1961 0 +1884 2094 0 +2002 2226 0 +2123 2358 0 +2247 2491 0 +2372 2623 0 +2500 2755 0 +2628 2887 0 +2758 3019 0 +2888 3152 0 +3018 3284 0 +3149 3416 0 +3280 3548 0 +3412 3680 0 +3544 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1025 0 792 +1025 0 748 +1025 0 681 +1025 0 573 +1025 0 371 +1025 0 0 +1025 0 0 +1025 488 0 +1160 929 0 +1295 1204 0 +1429 1419 0 +1515 1563 0 +1601 1696 0 +1696 1828 0 +1797 1961 0 +1905 2094 0 +2018 2226 0 +2136 2358 0 +2256 2491 0 +2380 2623 0 +2505 2755 0 +2633 2887 0 +2761 3019 0 +2890 3152 0 +3020 3284 0 +3151 3416 0 +3281 3548 0 +3413 3680 0 +3544 3812 0 +3676 3944 0 +3808 4076 0 +3939 4095 0 +1160 0 918 +1160 0 885 +1160 0 836 +1160 0 762 +1160 0 640 +1160 0 397 +1160 0 0 +1160 0 0 +1160 592 0 +1295 1051 0 +1429 1330 0 +1563 1548 0 +1653 1696 0 +1738 1828 0 +1831 1961 0 +1932 2094 0 +2039 2226 0 +2152 2358 0 +2269 2491 0 +2390 2623 0 +2513 2755 0 +2638 2887 0 +2765 3019 0 +2893 3152 0 +3022 3284 0 +3152 3416 0 +3283 3548 0 +3414 3680 0 +3545 3812 0 +3676 3944 0 +3808 4076 0 +3940 4095 0 +1295 0 1046 +1295 0 1021 +1295 0 985 +1295 0 934 +1295 0 853 +1295 0 717 +1295 0 431 +1295 0 0 +1295 0 0 +1295 702 0 +1429 1174 0 +1563 1458 0 +1696 1677 0 +1789 1828 0 +1873 1961 0 +1966 2094 0 +2066 2226 0 +2173 2358 0 +2285 2491 0 +2402 2623 0 +2523 2755 0 +2646 2887 0 +2771 3019 0 +2898 3152 0 +3025 3284 0 +3155 3416 0 +3285 3548 0 +3415 3680 0 +3546 3812 0 +3677 3944 0 +3808 4076 0 +3940 4095 0 +1429 0 1174 +1429 0 1156 +1429 0 1130 +1429 0 1092 +1429 0 1037 +1429 0 951 +1429 0 803 +1429 0 471 +1429 0 0 +1429 0 0 +1429 816 0 +1563 1301 0 +1696 1587 0 +1828 1807 0 +1923 1961 0 +2007 2094 0 +2100 2226 0 +2200 2358 0 +2306 2491 0 +2419 2623 0 +2535 2755 0 +2655 2887 0 +2778 3019 0 +2903 3152 0 +3030 3284 0 +3158 3416 0 +3287 3548 0 +3417 3680 0 +3547 3812 0 +3678 3944 0 +3809 4076 0 +3941 4095 0 +1563 0 1304 +1563 0 1290 +1563 0 1271 +1563 0 1244 +1563 0 1205 +1563 0 1148 +1563 0 1057 +1563 0 897 +1563 0 523 +1563 0 0 +1563 0 0 +1563 934 0 +1696 1427 0 +1828 1716 0 +1961 1938 0 +2058 2094 0 +2141 2226 0 +2233 2358 0 +2333 2491 0 +2440 2623 0 +2552 2755 0 +2668 2887 0 +2788 3019 0 +2911 3152 0 +3035 3284 0 +3162 3416 0 +3290 3548 0 +3419 3680 0 +3549 3812 0 +3679 3944 0 +3810 4076 0 +3941 4095 0 +1696 0 1434 +1696 0 1424 +1696 0 1410 +1696 0 1390 +1696 0 1362 +1696 0 1322 +1696 0 1262 +1696 0 1167 +1696 0 998 +1696 0 580 +1696 0 0 +1696 0 0 +1696 1056 0 +1828 1557 0 +1961 1847 0 +2094 2069 0 +2191 2226 0 +2275 2358 0 +2367 2491 0 +2466 2623 0 +2573 2755 0 +2684 2887 0 +2800 3019 0 +2920 3152 0 +3043 3284 0 +3168 3416 0 +3294 3548 0 +3422 3680 0 +3552 3812 0 +3681 3944 0 +3812 4076 0 +3942 4095 0 +1828 0 1565 +1828 0 1557 +1828 0 1547 +1828 0 1532 +1828 0 1512 +1828 0 1484 +1828 0 1442 +1828 0 1381 +1828 0 1283 +1828 0 1106 +1828 0 650 +1828 0 0 +1828 0 0 +1828 1180 0 +1961 1686 0 +2094 1977 0 +2226 2200 0 +2325 2358 0 +2408 2491 0 +2500 2623 0 +2599 2755 0 +2705 2887 0 +2816 3019 0 +2933 3152 0 +3052 3284 0 +3175 3416 0 +3300 3548 0 +3427 3680 0 +3554 3812 0 +3683 3944 0 +3813 4076 0 +3944 4095 0 +1961 0 1696 +1961 0 1690 +1961 0 1682 +1961 0 1672 +1961 0 1657 +1961 0 1636 +1961 0 1607 +1961 0 1565 +1961 0 1503 +1961 0 1402 +1961 0 1220 +1961 0 726 +1961 0 0 +1961 0 0 +1961 1306 0 +2094 1816 0 +2226 2108 0 +2358 2332 0 +2458 2491 0 +2541 2623 0 +2632 2755 0 +2732 2887 0 +2837 3019 0 +2949 3152 0 +3065 3284 0 +3184 3416 0 +3307 3548 0 +3432 3680 0 +3559 3812 0 +3687 3944 0 +3816 4076 0 +3946 4095 0 +2094 0 1827 +2094 0 1823 +2094 0 1817 +2094 0 1809 +2094 0 1798 +2094 0 1783 +2094 0 1763 +2094 0 1733 +2094 0 1691 +2094 0 1626 +2094 0 1524 +2094 0 1336 +2094 0 814 +2094 0 0 +2094 0 0 +2094 1433 0 +2226 1946 0 +2358 2239 0 +2491 2463 0 +2590 2623 0 +2673 2755 0 +2765 2887 0 +2864 3019 0 +2970 3152 0 +3081 3284 0 +3197 3416 0 +3317 3548 0 +3440 3680 0 +3564 3812 0 +3691 3944 0 +3819 4076 0 +3948 4095 0 +2226 0 1959 +2226 0 1956 +2226 0 1951 +2226 0 1945 +2226 0 1937 +2226 0 1926 +2226 0 1911 +2226 0 1890 +2226 0 1860 +2226 0 1817 +2226 0 1753 +2226 0 1648 +2226 0 1457 +2226 0 907 +2226 0 0 +2226 0 0 +2226 1562 0 +2358 2078 0 +2491 2371 0 +2623 2595 0 +2723 2755 0 +2806 2887 0 +2897 3019 0 +2996 3152 0 +3102 3284 0 +3213 3416 0 +3329 3548 0 +3449 3680 0 +3572 3812 0 +3696 3944 0 +3823 4076 0 +3951 4095 0 +2358 0 2090 +2358 0 2088 +2358 0 2085 +2358 0 2080 +2358 0 2074 +2358 0 2066 +2358 0 2055 +2358 0 2040 +2358 0 2019 +2358 0 1989 +2358 0 1946 +2358 0 1880 +2358 0 1775 +2358 0 1580 +2358 0 1009 +2358 0 0 +2358 0 0 +2358 1692 0 +2491 2209 0 +2623 2503 0 +2755 2727 0 +2856 2887 0 +2938 3019 0 +3030 3152 0 +3128 3284 0 +3234 3416 0 +3346 3548 0 +3462 3680 0 +3581 3812 0 +3704 3944 0 +3828 4076 0 +3955 4095 0 +2491 0 2222 +2491 0 2220 +2491 0 2218 +2491 0 2215 +2491 0 2210 +2491 0 2204 +2491 0 2196 +2491 0 2185 +2491 0 2170 +2491 0 2149 +2491 0 2119 +2491 0 2075 +2491 0 2009 +2491 0 1903 +2491 0 1706 +2491 0 1120 +2491 0 0 +2491 0 0 +2491 1822 0 +2623 2340 0 +2755 2635 0 +2887 2859 0 +2988 3019 0 +3071 3152 0 +3162 3284 0 +3261 3416 0 +3367 3548 0 +3478 3680 0 +3594 3812 0 +3713 3944 0 +3836 4076 0 +3961 4095 0 +2623 0 2354 +2623 0 2352 +2623 0 2351 +2623 0 2348 +2623 0 2345 +2623 0 2341 +2623 0 2335 +2623 0 2327 +2623 0 2315 +2623 0 2300 +2623 0 2278 +2623 0 2248 +2623 0 2205 +2623 0 2138 +2623 0 2032 +2623 0 1833 +2623 0 1232 +2623 0 0 +2623 0 0 +2623 1952 0 +2755 2473 0 +2887 2767 0 +3019 2991 0 +3120 3152 0 +3203 3284 0 +3294 3416 0 +3393 3548 0 +3499 3680 0 +3610 3812 0 +3726 3944 0 +3846 4076 0 +3968 4095 0 +2755 0 2486 +2755 0 2485 +2755 0 2484 +2755 0 2482 +2755 0 2479 +2755 0 2476 +2755 0 2472 +2755 0 2466 +2755 0 2457 +2755 0 2446 +2755 0 2431 +2755 0 2409 +2755 0 2379 +2755 0 2335 +2755 0 2269 +2755 0 2162 +2755 0 1962 +2755 0 1353 +2755 0 0 +2755 0 0 +2755 2083 0 +2887 2604 0 +3019 2898 0 +3152 3123 0 +3252 3284 0 +3335 3416 0 +3426 3548 0 +3525 3680 0 +3631 3812 0 +3742 3944 0 +3858 4076 0 +3978 4095 0 +2887 0 2618 +2887 0 2617 +2887 0 2616 +2887 0 2615 +2887 0 2613 +2887 0 2611 +2887 0 2607 +2887 0 2603 +2887 0 2597 +2887 0 2589 +2887 0 2577 +2887 0 2562 +2887 0 2541 +2887 0 2510 +2887 0 2466 +2887 0 2400 +2887 0 2292 +2887 0 2091 +2887 0 1472 +2887 0 0 +2887 0 0 +2887 2215 0 +3019 2735 0 +3152 3031 0 +3284 3254 0 +3385 3416 0 +3467 3548 0 +3558 3680 0 +3657 3812 0 +3763 3944 0 +3874 4076 0 +3990 4095 0 +3019 0 2750 +3019 0 2749 +3019 0 2748 +3019 0 2747 +3019 0 2746 +3019 0 2744 +3019 0 2742 +3019 0 2738 +3019 0 2734 +3019 0 2728 +3019 0 2720 +3019 0 2708 +3019 0 2693 +3019 0 2672 +3019 0 2641 +3019 0 2597 +3019 0 2530 +3019 0 2422 +3019 0 2220 +3019 0 1594 +3019 0 0 +3019 0 0 +3019 2346 0 +3152 2868 0 +3284 3162 0 +3416 3387 0 +3516 3548 0 +3599 3680 0 +3691 3812 0 +3790 3944 0 +3895 4076 0 +4007 4095 0 +3152 0 2882 +3152 0 2881 +3152 0 2881 +3152 0 2880 +3152 0 2879 +3152 0 2878 +3152 0 2876 +3152 0 2873 +3152 0 2870 +3152 0 2866 +3152 0 2860 +3152 0 2851 +3152 0 2840 +3152 0 2825 +3152 0 2803 +3152 0 2773 +3152 0 2729 +3152 0 2662 +3152 0 2554 +3152 0 2352 +3152 0 1720 +3152 0 0 +3152 0 0 +3152 2478 0 +3284 2999 0 +3416 3294 0 +3548 3519 0 +3649 3680 0 +3732 3812 0 +3823 3944 0 +3922 4076 0 +4027 4095 0 +3284 0 3014 +3284 0 3014 +3284 0 3013 +3284 0 3012 +3284 0 3012 +3284 0 3011 +3284 0 3009 +3284 0 3008 +3284 0 3005 +3284 0 3002 +3284 0 2997 +3284 0 2991 +3284 0 2983 +3284 0 2972 +3284 0 2956 +3284 0 2935 +3284 0 2904 +3284 0 2860 +3284 0 2793 +3284 0 2684 +3284 0 2481 +3284 0 1844 +3284 0 0 +3284 0 0 +3284 2609 0 +3416 3132 0 +3548 3426 0 +3680 3651 0 +3781 3812 0 +3864 3944 0 +3955 4076 0 +4054 4095 0 +3416 0 3146 +3416 0 3146 +3416 0 3145 +3416 0 3145 +3416 0 3144 +3416 0 3144 +3416 0 3143 +3416 0 3141 +3416 0 3139 +3416 0 3137 +3416 0 3134 +3416 0 3129 +3416 0 3123 +3416 0 3115 +3416 0 3104 +3416 0 3088 +3416 0 3067 +3416 0 3036 +3416 0 2992 +3416 0 2925 +3416 0 2816 +3416 0 2613 +3416 0 1977 +3416 0 0 +3416 0 0 +3416 2741 0 +3548 3264 0 +3680 3558 0 +3812 3783 0 +3913 3944 0 +3996 4076 0 +4087 4095 0 +3548 0 3278 +3548 0 3278 +3548 0 3278 +3548 0 3277 +3548 0 3277 +3548 0 3276 +3548 0 3276 +3548 0 3275 +3548 0 3273 +3548 0 3271 +3548 0 3269 +3548 0 3266 +3548 0 3261 +3548 0 3255 +3548 0 3247 +3548 0 3236 +3548 0 3220 +3548 0 3198 +3548 0 3168 +3548 0 3124 +3548 0 3056 +3548 0 2948 +3548 0 2745 +3548 0 2104 +3548 0 0 +3548 0 0 +3548 2873 0 +3680 3396 0 +3812 3691 0 +3944 3915 0 +4045 4076 0 +4095 4095 0 +3680 0 3410 +3680 0 3410 +3680 0 3410 +3680 0 3410 +3680 0 3409 +3680 0 3409 +3680 0 3408 +3680 0 3408 +3680 0 3406 +3680 0 3405 +3680 0 3403 +3680 0 3401 +3680 0 3398 +3680 0 3393 +3680 0 3387 +3680 0 3379 +3680 0 3367 +3680 0 3352 +3680 0 3330 +3680 0 3300 +3680 0 3255 +3680 0 3188 +3680 0 3080 +3680 0 2876 +3680 0 2237 +3680 0 0 +3680 0 0 +3680 3005 0 +3812 3528 0 +3944 3822 0 +4076 4047 0 +4095 4095 0 +3812 0 3542 +3812 0 3542 +3812 0 3542 +3812 0 3542 +3812 0 3541 +3812 0 3541 +3812 0 3541 +3812 0 3540 +3812 0 3540 +3812 0 3538 +3812 0 3537 +3812 0 3535 +3812 0 3533 +3812 0 3530 +3812 0 3525 +3812 0 3519 +3812 0 3511 +3812 0 3499 +3812 0 3484 +3812 0 3462 +3812 0 3432 +3812 0 3387 +3812 0 3320 +3812 0 3211 +3812 0 3008 +3812 0 2367 +3812 0 0 +3812 0 0 +3812 3137 0 +3944 3660 0 +4076 3954 0 +4095 4095 0 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3673 +3944 0 3673 +3944 0 3672 +3944 0 3671 +3944 0 3670 +3944 0 3669 +3944 0 3667 +3944 0 3665 +3944 0 3661 +3944 0 3657 +3944 0 3651 +3944 0 3643 +3944 0 3631 +3944 0 3616 +3944 0 3594 +3944 0 3564 +3944 0 3520 +3944 0 3452 +3944 0 3344 +3944 0 3140 +3944 0 2497 +3944 0 0 +3944 0 0 +3944 3269 0 +4076 3791 0 +4095 4087 0 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3805 +4076 0 3805 +4076 0 3805 +4076 0 3804 +4076 0 3803 +4076 0 3803 +4076 0 3801 +4076 0 3799 +4076 0 3797 +4076 0 3793 +4076 0 3789 +4076 0 3783 +4076 0 3774 +4076 0 3763 +4076 0 3748 +4076 0 3726 +4076 0 3696 +4076 0 3651 +4076 0 3584 +4076 0 3475 +4076 0 3271 +4076 0 2626 +4076 0 0 +4076 0 0 +4076 3401 0 +4095 3924 0 +4095 0 3939 +4095 0 3939 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3937 +4095 0 3937 +4095 0 3937 +4095 0 3936 +4095 0 3935 +4095 0 3933 +4095 0 3932 +4095 0 3929 +4095 0 3926 +4095 0 3921 +4095 0 3915 +4095 0 3907 +4095 0 3896 +4095 0 3880 +4095 0 3859 +4095 0 3828 +4095 0 3784 +4095 0 3716 +4095 0 3608 +4095 0 3404 +4095 0 2761 +4095 0 0 +4095 0 0 +4095 3533 0 +0 97 163 +0 163 42 +13 318 0 +171 466 0 +322 609 0 +467 750 0 +608 888 0 +748 1025 0 +885 1160 0 +1021 1295 0 +1156 1429 0 +1290 1563 0 +1424 1696 0 +1557 1828 0 +1690 1961 0 +1823 2094 0 +1956 2226 0 +2088 2358 0 +2220 2491 0 +2352 2623 0 +2485 2755 0 +2617 2887 0 +2749 3019 0 +2881 3152 0 +3014 3284 0 +3146 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +42 0 163 +131 131 131 +229 295 86 +333 450 15 +444 598 0 +559 741 0 +678 882 0 +800 1020 0 +924 1157 0 +1050 1292 0 +1178 1427 0 +1307 1561 0 +1436 1695 0 +1566 1828 0 +1697 1961 0 +1828 2093 0 +1959 2226 0 +2091 2358 0 +2223 2491 0 +2354 2623 0 +2486 2755 0 +2618 2887 0 +2750 3019 0 +2882 3152 0 +3014 3283 0 +3146 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +300 0 318 +295 86 229 +295 174 86 +450 432 15 +551 598 0 +644 741 0 +745 882 0 +852 1020 0 +964 1157 0 +1081 1292 0 +1201 1427 0 +1325 1561 0 +1450 1695 0 +1576 1828 0 +1705 1961 0 +1834 2093 0 +1963 2226 0 +2094 2358 0 +2225 2491 0 +2356 2623 0 +2488 2755 0 +2619 2887 0 +2751 3019 0 +2883 3152 0 +3014 3283 0 +3146 3416 0 +3278 3548 0 +3410 3680 0 +3543 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +466 0 419 +450 15 333 +450 15 145 +450 225 15 +598 520 0 +738 741 0 +822 882 0 +914 1020 0 +1013 1157 0 +1119 1292 0 +1231 1427 0 +1347 1561 0 +1467 1695 0 +1590 1828 0 +1715 1961 0 +1841 2093 0 +1969 2226 0 +2098 2358 0 +2228 2491 0 +2358 2623 0 +2489 2755 0 +2620 2887 0 +2752 3019 0 +2883 3152 0 +3015 3283 0 +3147 3416 0 +3279 3548 0 +3411 3680 0 +3543 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +609 0 512 +598 0 444 +598 0 303 +598 0 0 +598 286 0 +741 616 0 +882 855 0 +985 1020 0 +1071 1157 0 +1166 1292 0 +1267 1427 0 +1376 1561 0 +1489 1695 0 +1607 1828 0 +1728 1961 0 +1851 2093 0 +1977 2226 0 +2104 2358 0 +2233 2491 0 +2362 2623 0 +2492 2755 0 +2622 2887 0 +2753 3019 0 +2885 3152 0 +3016 3283 0 +3147 3416 0 +3279 3548 0 +3411 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +750 0 613 +741 0 559 +741 0 453 +741 0 258 +741 0 0 +741 356 0 +882 719 0 +1020 970 0 +1139 1157 0 +1221 1292 0 +1313 1427 0 +1412 1561 0 +1517 1695 0 +1629 1828 0 +1745 1961 0 +1864 2093 0 +1987 2226 0 +2111 2358 0 +2238 2491 0 +2366 2623 0 +2495 2755 0 +2625 2887 0 +2755 3019 0 +2886 3152 0 +3017 3283 0 +3148 3416 0 +3280 3548 0 +3411 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +888 0 719 +882 0 678 +882 0 599 +882 0 466 +882 0 190 +882 0 0 +882 436 0 +1020 829 0 +1157 1089 0 +1286 1292 0 +1366 1427 0 +1456 1561 0 +1552 1695 0 +1656 1828 0 +1766 1961 0 +1881 2093 0 +1999 2226 0 +2121 2358 0 +2245 2491 0 +2372 2623 0 +2499 2755 0 +2628 2887 0 +2757 3019 0 +2888 3152 0 +3018 3283 0 +3149 3416 0 +3280 3548 0 +3412 3680 0 +3544 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1025 0 832 +1020 0 800 +1020 0 740 +1020 0 647 +1020 0 482 +1020 0 81 +1020 0 0 +1020 524 0 +1157 943 0 +1292 1211 0 +1427 1424 0 +1508 1561 0 +1596 1695 0 +1691 1828 0 +1793 1961 0 +1902 2093 0 +2016 2226 0 +2134 2358 0 +2255 2491 0 +2379 2623 0 +2505 2755 0 +2632 2887 0 +2760 3019 0 +2890 3152 0 +3020 3283 0 +3151 3416 0 +3281 3548 0 +3413 3680 0 +3544 3812 0 +3676 3944 0 +3807 4076 0 +3939 4095 0 +1160 0 949 +1157 0 924 +1157 0 879 +1157 0 813 +1157 0 705 +1157 0 503 +1157 0 0 +1157 0 0 +1157 620 0 +1292 1062 0 +1427 1336 0 +1561 1552 0 +1647 1695 0 +1733 1828 0 +1828 1961 0 +1929 2093 0 +2037 2226 0 +2150 2358 0 +2268 2491 0 +2388 2623 0 +2512 2755 0 +2638 2887 0 +2765 3019 0 +2893 3152 0 +3022 3283 0 +3152 3416 0 +3283 3548 0 +3414 3680 0 +3545 3812 0 +3676 3944 0 +3808 4076 0 +3940 4095 0 +1295 0 1069 +1292 0 1050 +1292 0 1017 +1292 0 968 +1292 0 894 +1292 0 772 +1292 0 529 +1292 0 0 +1292 0 0 +1292 724 0 +1427 1182 0 +1561 1463 0 +1695 1680 0 +1785 1828 0 +1870 1961 0 +1963 2093 0 +2064 2226 0 +2171 2358 0 +2284 2491 0 +2401 2623 0 +2522 2755 0 +2645 2887 0 +2770 3019 0 +2897 3152 0 +3025 3283 0 +3154 3416 0 +3284 3548 0 +3415 3680 0 +3546 3812 0 +3677 3944 0 +3808 4076 0 +3940 4095 0 +1429 0 1192 +1427 0 1178 +1427 0 1153 +1427 0 1118 +1427 0 1065 +1427 0 985 +1427 0 849 +1427 0 562 +1427 0 0 +1427 0 0 +1427 833 0 +1561 1307 0 +1695 1590 0 +1828 1810 0 +1920 1961 0 +2005 2093 0 +2098 2226 0 +2199 2358 0 +2305 2491 0 +2417 2623 0 +2535 2755 0 +2655 2887 0 +2777 3019 0 +2903 3152 0 +3029 3283 0 +3158 3416 0 +3287 3548 0 +3417 3680 0 +3547 3812 0 +3678 3944 0 +3809 4076 0 +3941 4095 0 +1563 0 1318 +1561 0 1307 +1561 0 1288 +1561 0 1262 +1561 0 1225 +1561 0 1170 +1561 0 1084 +1561 0 935 +1561 0 605 +1561 0 0 +1561 0 0 +1561 948 0 +1695 1432 0 +1828 1719 0 +1961 1940 0 +2056 2093 0 +2140 2226 0 +2232 2358 0 +2332 2491 0 +2439 2623 0 +2551 2755 0 +2667 2887 0 +2787 3019 0 +2910 3152 0 +3035 3283 0 +3162 3416 0 +3290 3548 0 +3419 3680 0 +3549 3812 0 +3679 3944 0 +3810 4076 0 +3941 4095 0 +1696 0 1444 +1695 0 1436 +1695 0 1422 +1695 0 1403 +1695 0 1376 +1695 0 1337 +1695 0 1279 +1695 0 1188 +1695 0 1029 +1695 0 653 +1695 0 0 +1695 0 0 +1695 1066 0 +1828 1560 0 +1961 1849 0 +2093 2070 0 +2190 2226 0 +2273 2358 0 +2366 2491 0 +2465 2623 0 +2572 2755 0 +2684 2887 0 +2800 3019 0 +2920 3152 0 +3042 3283 0 +3168 3416 0 +3294 3548 0 +3422 3680 0 +3551 3812 0 +3681 3944 0 +3811 4076 0 +3942 4095 0 +1828 0 1572 +1828 0 1566 +1828 0 1556 +1828 0 1542 +1828 0 1522 +1828 0 1494 +1828 0 1454 +1828 0 1394 +1828 0 1300 +1828 0 1131 +1828 0 713 +1828 0 0 +1828 0 0 +1828 1188 0 +1961 1689 0 +2093 1979 0 +2226 2201 0 +2324 2358 0 +2407 2491 0 +2499 2623 0 +2598 2755 0 +2705 2887 0 +2816 3019 0 +2932 3152 0 +3052 3283 0 +3175 3416 0 +3300 3548 0 +3426 3680 0 +3554 3812 0 +3683 3944 0 +3813 4076 0 +3944 4095 0 +1961 0 1702 +1961 0 1697 +1961 0 1689 +1961 0 1679 +1961 0 1664 +1961 0 1644 +1961 0 1615 +1961 0 1574 +1961 0 1513 +1961 0 1415 +1961 0 1238 +1961 0 780 +1961 0 0 +1961 0 0 +1961 1312 0 +2093 1818 0 +2226 2109 0 +2358 2332 0 +2457 2491 0 +2540 2623 0 +2632 2755 0 +2731 2887 0 +2837 3019 0 +2949 3152 0 +3065 3283 0 +3184 3416 0 +3307 3548 0 +3432 3680 0 +3559 3812 0 +3687 3944 0 +3816 4076 0 +3946 4095 0 +2094 0 1831 +2093 0 1828 +2093 0 1822 +2093 0 1814 +2093 0 1804 +2093 0 1789 +2093 0 1768 +2093 0 1739 +2093 0 1698 +2093 0 1635 +2093 0 1534 +2093 0 1351 +2093 0 859 +2093 0 0 +2093 0 0 +2093 1438 0 +2226 1948 0 +2358 2240 0 +2491 2464 0 +2590 2623 0 +2673 2755 0 +2764 2887 0 +2863 3019 0 +2970 3152 0 +3081 3283 0 +3197 3416 0 +3317 3548 0 +3439 3680 0 +3564 3812 0 +3691 3944 0 +3819 4076 0 +3948 4095 0 +2226 0 1962 +2226 0 1959 +2226 0 1955 +2226 0 1949 +2226 0 1941 +2226 0 1930 +2226 0 1915 +2226 0 1894 +2226 0 1865 +2226 0 1823 +2226 0 1759 +2226 0 1656 +2226 0 1469 +2226 0 944 +2226 0 0 +2226 0 0 +2226 1565 0 +2358 2079 0 +2491 2372 0 +2623 2595 0 +2723 2755 0 +2805 2887 0 +2897 3019 0 +2996 3152 0 +3102 3283 0 +3213 3416 0 +3329 3548 0 +3449 3680 0 +3572 3812 0 +3696 3944 0 +3823 4076 0 +3951 4095 0 +2358 0 2093 +2358 0 2091 +2358 0 2087 +2358 0 2083 +2358 0 2077 +2358 0 2069 +2358 0 2058 +2358 0 2043 +2358 0 2022 +2358 0 1993 +2358 0 1950 +2358 0 1885 +2358 0 1781 +2358 0 1589 +2358 0 1039 +2358 0 0 +2358 0 0 +2358 1694 0 +2491 2210 0 +2623 2503 0 +2755 2727 0 +2855 2887 0 +2938 3019 0 +3029 3152 0 +3128 3283 0 +3234 3416 0 +3346 3548 0 +3462 3680 0 +3581 3812 0 +3704 3944 0 +3828 4076 0 +3955 4095 0 +2491 0 2224 +2491 0 2223 +2491 0 2220 +2491 0 2217 +2491 0 2212 +2491 0 2206 +2491 0 2199 +2491 0 2187 +2491 0 2172 +2491 0 2151 +2491 0 2121 +2491 0 2078 +2491 0 2013 +2491 0 1907 +2491 0 1713 +2491 0 1143 +2491 0 0 +2491 0 0 +2491 1824 0 +2623 2341 0 +2755 2635 0 +2887 2859 0 +2987 3019 0 +3070 3152 0 +3162 3283 0 +3261 3416 0 +3367 3548 0 +3478 3680 0 +3594 3812 0 +3713 3944 0 +3836 4076 0 +3961 4095 0 +2623 0 2355 +2623 0 2354 +2623 0 2352 +2623 0 2350 +2623 0 2347 +2623 0 2342 +2623 0 2336 +2623 0 2328 +2623 0 2317 +2623 0 2302 +2623 0 2281 +2623 0 2250 +2623 0 2207 +2623 0 2141 +2623 0 2035 +2623 0 1838 +2623 0 1251 +2623 0 0 +2623 0 0 +2623 1954 0 +2755 2473 0 +2887 2767 0 +3019 2991 0 +3120 3152 0 +3203 3283 0 +3294 3416 0 +3393 3548 0 +3499 3680 0 +3610 3812 0 +3726 3944 0 +3845 4076 0 +3968 4095 0 +2755 0 2487 +2755 0 2486 +2755 0 2485 +2755 0 2483 +2755 0 2481 +2755 0 2477 +2755 0 2473 +2755 0 2467 +2755 0 2459 +2755 0 2448 +2755 0 2432 +2755 0 2411 +2755 0 2381 +2755 0 2337 +2755 0 2271 +2755 0 2164 +2755 0 1966 +2755 0 1367 +2755 0 0 +2755 0 0 +2755 2084 0 +2887 2604 0 +3019 2898 0 +3152 3123 0 +3252 3283 0 +3335 3416 0 +3426 3548 0 +3525 3680 0 +3631 3812 0 +3742 3944 0 +3858 4076 0 +3978 4095 0 +2887 0 2619 +2887 0 2618 +2887 0 2617 +2887 0 2616 +2887 0 2614 +2887 0 2612 +2887 0 2608 +2887 0 2604 +2887 0 2598 +2887 0 2589 +2887 0 2578 +2887 0 2563 +2887 0 2542 +2887 0 2511 +2887 0 2467 +2887 0 2401 +2887 0 2294 +2887 0 2094 +2887 0 1483 +2887 0 0 +2887 0 0 +2887 2215 0 +3019 2735 0 +3152 3031 0 +3283 3254 0 +3385 3416 0 +3467 3548 0 +3558 3680 0 +3657 3812 0 +3763 3944 0 +3874 4076 0 +3990 4095 0 +3019 0 2750 +3019 0 2750 +3019 0 2749 +3019 0 2748 +3019 0 2747 +3019 0 2745 +3019 0 2742 +3019 0 2739 +3019 0 2735 +3019 0 2729 +3019 0 2720 +3019 0 2709 +3019 0 2694 +3019 0 2672 +3019 0 2642 +3019 0 2598 +3019 0 2531 +3019 0 2424 +3019 0 2222 +3019 0 1602 +3019 0 0 +3019 0 0 +3019 2346 0 +3152 2868 0 +3283 3162 0 +3416 3387 0 +3516 3548 0 +3599 3680 0 +3691 3812 0 +3790 3944 0 +3895 4076 0 +4006 4095 0 +3152 0 2883 +3152 0 2882 +3152 0 2881 +3152 0 2881 +3152 0 2880 +3152 0 2878 +3152 0 2877 +3152 0 2874 +3152 0 2871 +3152 0 2866 +3152 0 2860 +3152 0 2852 +3152 0 2841 +3152 0 2825 +3152 0 2804 +3152 0 2773 +3152 0 2729 +3152 0 2663 +3152 0 2555 +3152 0 2353 +3152 0 1726 +3152 0 0 +3152 0 0 +3152 2478 0 +3283 2999 0 +3416 3294 0 +3548 3519 0 +3649 3680 0 +3731 3812 0 +3823 3944 0 +3922 4076 0 +4027 4095 0 +3284 0 3014 +3283 0 3014 +3283 0 3014 +3283 0 3013 +3283 0 3012 +3283 0 3011 +3283 0 3010 +3283 0 3008 +3283 0 3005 +3283 0 3002 +3283 0 2998 +3283 0 2992 +3283 0 2983 +3283 0 2972 +3283 0 2957 +3283 0 2935 +3283 0 2905 +3283 0 2860 +3283 0 2793 +3283 0 2685 +3283 0 2482 +3283 0 1849 +3283 0 0 +3283 0 0 +3283 2609 0 +3416 3132 0 +3548 3426 0 +3680 3651 0 +3781 3812 0 +3864 3944 0 +3955 4076 0 +4054 4095 0 +3416 0 3146 +3416 0 3146 +3416 0 3146 +3416 0 3145 +3416 0 3145 +3416 0 3144 +3416 0 3143 +3416 0 3141 +3416 0 3140 +3416 0 3137 +3416 0 3134 +3416 0 3129 +3416 0 3123 +3416 0 3115 +3416 0 3104 +3416 0 3088 +3416 0 3067 +3416 0 3036 +3416 0 2992 +3416 0 2925 +3416 0 2817 +3416 0 2614 +3416 0 1981 +3416 0 0 +3416 0 0 +3416 2741 0 +3548 3264 0 +3680 3558 0 +3812 3783 0 +3913 3944 0 +3996 4076 0 +4087 4095 0 +3548 0 3278 +3548 0 3278 +3548 0 3278 +3548 0 3278 +3548 0 3277 +3548 0 3277 +3548 0 3276 +3548 0 3275 +3548 0 3273 +3548 0 3272 +3548 0 3269 +3548 0 3266 +3548 0 3261 +3548 0 3255 +3548 0 3247 +3548 0 3236 +3548 0 3220 +3548 0 3199 +3548 0 3168 +3548 0 3124 +3548 0 3057 +3548 0 2948 +3548 0 2745 +3548 0 2107 +3548 0 0 +3548 0 0 +3548 2873 0 +3680 3396 0 +3812 3691 0 +3944 3915 0 +4045 4076 0 +4095 4095 0 +3680 0 3410 +3680 0 3410 +3680 0 3410 +3680 0 3410 +3680 0 3409 +3680 0 3409 +3680 0 3408 +3680 0 3408 +3680 0 3407 +3680 0 3405 +3680 0 3403 +3680 0 3401 +3680 0 3398 +3680 0 3393 +3680 0 3387 +3680 0 3379 +3680 0 3368 +3680 0 3352 +3680 0 3331 +3680 0 3300 +3680 0 3256 +3680 0 3188 +3680 0 3080 +3680 0 2877 +3680 0 2239 +3680 0 0 +3680 0 0 +3680 3005 0 +3812 3528 0 +3944 3822 0 +4076 4047 0 +4095 4095 0 +3812 0 3542 +3812 0 3542 +3812 0 3542 +3812 0 3542 +3812 0 3542 +3812 0 3541 +3812 0 3541 +3812 0 3540 +3812 0 3540 +3812 0 3538 +3812 0 3537 +3812 0 3536 +3812 0 3533 +3812 0 3530 +3812 0 3525 +3812 0 3519 +3812 0 3511 +3812 0 3499 +3812 0 3484 +3812 0 3462 +3812 0 3432 +3812 0 3388 +3812 0 3321 +3812 0 3212 +3812 0 3009 +3812 0 2369 +3812 0 0 +3812 0 0 +3812 3137 0 +3944 3660 0 +4076 3954 0 +4095 4095 0 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3673 +3944 0 3673 +3944 0 3672 +3944 0 3671 +3944 0 3671 +3944 0 3669 +3944 0 3667 +3944 0 3665 +3944 0 3662 +3944 0 3657 +3944 0 3651 +3944 0 3643 +3944 0 3632 +3944 0 3616 +3944 0 3595 +3944 0 3564 +3944 0 3520 +3944 0 3452 +3944 0 3344 +3944 0 3140 +3944 0 2498 +3944 0 0 +3944 0 0 +3944 3269 0 +4076 3792 0 +4095 4087 0 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3805 +4076 0 3805 +4076 0 3805 +4076 0 3804 +4076 0 3803 +4076 0 3803 +4076 0 3801 +4076 0 3799 +4076 0 3797 +4076 0 3793 +4076 0 3789 +4076 0 3783 +4076 0 3775 +4076 0 3763 +4076 0 3748 +4076 0 3726 +4076 0 3696 +4076 0 3651 +4076 0 3584 +4076 0 3475 +4076 0 3272 +4076 0 2627 +4076 0 0 +4076 0 0 +4076 3401 0 +4095 3924 0 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3937 +4095 0 3937 +4095 0 3937 +4095 0 3936 +4095 0 3935 +4095 0 3933 +4095 0 3932 +4095 0 3929 +4095 0 3926 +4095 0 3921 +4095 0 3915 +4095 0 3907 +4095 0 3896 +4095 0 3880 +4095 0 3859 +4095 0 3828 +4095 0 3784 +4095 0 3717 +4095 0 3608 +4095 0 3404 +4095 0 2762 +4095 0 0 +4095 0 0 +4095 3533 0 +0 201 318 +0 318 300 +0 318 93 +0 466 0 +127 609 0 +334 750 0 +515 888 0 +681 1025 0 +836 1160 0 +985 1295 0 +1130 1429 0 +1271 1563 0 +1410 1696 0 +1547 1828 0 +1682 1961 0 +1817 2094 0 +1951 2226 0 +2085 2358 0 +2218 2491 0 +2351 2623 0 +2484 2755 0 +2616 2887 0 +2748 3019 0 +2881 3152 0 +3013 3284 0 +3145 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 13 318 +86 229 295 +86 295 174 +145 450 15 +303 598 0 +453 741 0 +599 882 0 +740 1020 0 +879 1157 0 +1017 1292 0 +1153 1427 0 +1288 1561 0 +1422 1695 0 +1556 1828 0 +1689 1961 0 +1822 2093 0 +1955 2226 0 +2087 2358 0 +2220 2491 0 +2352 2623 0 +2485 2755 0 +2617 2887 0 +2749 3019 0 +2881 3152 0 +3014 3283 0 +3146 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +93 0 318 +174 86 295 +264 264 264 +361 427 218 +466 582 148 +576 730 34 +691 873 0 +810 1014 0 +932 1152 0 +1056 1289 0 +1182 1424 0 +1310 1559 0 +1439 1693 0 +1568 1827 0 +1699 1960 0 +1829 2093 0 +1960 2225 0 +2091 2358 0 +2223 2490 0 +2355 2623 0 +2486 2755 0 +2618 2887 0 +2750 3019 0 +2882 3152 0 +3014 3283 0 +3146 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +388 0 466 +432 15 450 +427 218 361 +427 306 218 +582 564 148 +683 730 34 +776 873 0 +877 1014 0 +984 1152 0 +1096 1289 0 +1213 1424 0 +1333 1559 0 +1456 1693 0 +1582 1827 0 +1708 1960 0 +1837 2093 0 +1966 2225 0 +2096 2358 0 +2226 2490 0 +2357 2623 0 +2488 2755 0 +2620 2887 0 +2751 3019 0 +2883 3152 0 +3014 3283 0 +3147 3416 0 +3279 3548 0 +3410 3680 0 +3543 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +609 0 606 +598 0 551 +582 148 466 +582 148 277 +582 357 148 +730 652 34 +870 873 0 +954 1014 0 +1045 1152 0 +1145 1289 0 +1251 1424 0 +1363 1559 0 +1479 1693 0 +1599 1827 0 +1722 1960 0 +1847 2093 0 +1973 2225 0 +2101 2358 0 +2230 2490 0 +2360 2623 0 +2491 2755 0 +2621 2887 0 +2752 3019 0 +2884 3152 0 +3015 3283 0 +3147 3416 0 +3279 3548 0 +3411 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +750 0 689 +741 0 644 +730 34 576 +730 34 435 +730 34 132 +730 418 34 +873 749 0 +1014 987 0 +1117 1152 0 +1203 1289 0 +1298 1424 0 +1400 1559 0 +1508 1693 0 +1621 1827 0 +1739 1960 0 +1860 2093 0 +1983 2225 0 +2109 2358 0 +2236 2490 0 +2364 2623 0 +2494 2755 0 +2624 2887 0 +2754 3019 0 +2885 3152 0 +3016 3283 0 +3148 3416 0 +3280 3548 0 +3411 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +888 0 781 +882 0 745 +873 0 691 +873 0 585 +873 0 390 +873 0 0 +873 488 0 +1014 852 0 +1152 1102 0 +1271 1289 0 +1353 1424 0 +1445 1559 0 +1544 1693 0 +1650 1827 0 +1761 1960 0 +1877 2093 0 +1996 2225 0 +2119 2358 0 +2243 2490 0 +2370 2623 0 +2498 2755 0 +2627 2887 0 +2757 3019 0 +2887 3152 0 +3018 3283 0 +3149 3416 0 +3280 3548 0 +3412 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1025 0 881 +1020 0 852 +1014 0 810 +1014 0 731 +1014 0 598 +1014 0 323 +1014 0 0 +1014 568 0 +1152 960 0 +1289 1221 0 +1418 1424 0 +1499 1559 0 +1588 1693 0 +1684 1827 0 +1789 1960 0 +1898 2093 0 +2013 2225 0 +2132 2358 0 +2253 2490 0 +2378 2623 0 +2504 2755 0 +2631 2887 0 +2760 3019 0 +2890 3152 0 +3019 3283 0 +3150 3416 0 +3281 3548 0 +3413 3680 0 +3544 3812 0 +3676 3944 0 +3807 4076 0 +3939 4095 0 +1160 0 987 +1157 0 964 +1152 0 932 +1152 0 873 +1152 0 779 +1152 0 614 +1152 0 214 +1152 0 0 +1152 656 0 +1289 1075 0 +1424 1343 0 +1559 1556 0 +1640 1693 0 +1727 1827 0 +1823 1960 0 +1926 2093 0 +2034 2225 0 +2148 2358 0 +2266 2490 0 +2387 2623 0 +2511 2755 0 +2637 2887 0 +2764 3019 0 +2893 3152 0 +3022 3283 0 +3152 3416 0 +3282 3548 0 +3414 3680 0 +3545 3812 0 +3676 3944 0 +3808 4076 0 +3940 4095 0 +1295 0 1099 +1292 0 1081 +1289 0 1056 +1289 0 1012 +1289 0 945 +1289 0 837 +1289 0 635 +1289 0 9 +1289 0 0 +1289 753 0 +1424 1193 0 +1559 1468 0 +1693 1683 0 +1779 1827 0 +1865 1960 0 +1960 2093 0 +2061 2225 0 +2169 2358 0 +2283 2490 0 +2400 2623 0 +2521 2755 0 +2644 2887 0 +2770 3019 0 +2897 3152 0 +3025 3283 0 +3154 3416 0 +3284 3548 0 +3415 3680 0 +3546 3812 0 +3677 3944 0 +3808 4076 0 +3940 4095 0 +1429 0 1215 +1427 0 1201 +1424 0 1182 +1424 0 1149 +1424 0 1101 +1424 0 1027 +1424 0 904 +1424 0 662 +1424 0 0 +1424 0 0 +1424 856 0 +1559 1315 0 +1693 1594 0 +1827 1812 0 +1917 1960 0 +2002 2093 0 +2095 2225 0 +2196 2358 0 +2304 2490 0 +2416 2623 0 +2533 2755 0 +2654 2887 0 +2777 3019 0 +2903 3152 0 +3029 3283 0 +3157 3416 0 +3287 3548 0 +3417 3680 0 +3547 3812 0 +3678 3944 0 +3809 4076 0 +3941 4095 0 +1563 0 1335 +1561 0 1325 +1559 0 1310 +1559 0 1285 +1559 0 1250 +1559 0 1198 +1559 0 1118 +1559 0 981 +1559 0 696 +1559 0 0 +1559 0 0 +1559 966 0 +1693 1439 0 +1827 1722 0 +1960 1941 0 +2053 2093 0 +2137 2225 0 +2230 2358 0 +2331 2490 0 +2437 2623 0 +2550 2755 0 +2667 2887 0 +2787 3019 0 +2910 3152 0 +3035 3283 0 +3162 3416 0 +3290 3548 0 +3419 3680 0 +3549 3812 0 +3679 3944 0 +3810 4076 0 +3941 4095 0 +1696 0 1457 +1695 0 1450 +1693 0 1439 +1693 0 1420 +1693 0 1394 +1693 0 1357 +1693 0 1302 +1693 0 1216 +1693 0 1067 +1693 0 736 +1693 0 0 +1693 0 0 +1693 1080 0 +1827 1565 0 +1960 1851 0 +2093 2071 0 +2188 2225 0 +2271 2358 0 +2364 2490 0 +2464 2623 0 +2571 2755 0 +2683 2887 0 +2799 3019 0 +2919 3152 0 +3042 3283 0 +3167 3416 0 +3294 3548 0 +3422 3680 0 +3551 3812 0 +3681 3944 0 +3811 4076 0 +3942 4095 0 +1828 0 1582 +1828 0 1576 +1827 0 1568 +1827 0 1554 +1827 0 1535 +1827 0 1508 +1827 0 1469 +1827 0 1412 +1827 0 1321 +1827 0 1161 +1827 0 786 +1827 0 0 +1827 0 0 +1827 1198 0 +1960 1692 0 +2093 1981 0 +2225 2202 0 +2322 2358 0 +2406 2490 0 +2498 2623 0 +2598 2755 0 +2704 2887 0 +2816 3019 0 +2932 3152 0 +3052 3283 0 +3175 3416 0 +3300 3548 0 +3426 3680 0 +3554 3812 0 +3683 3944 0 +3813 4076 0 +3944 4095 0 +1961 0 1709 +1961 0 1705 +1960 0 1699 +1960 0 1688 +1960 0 1674 +1960 0 1654 +1960 0 1626 +1960 0 1586 +1960 0 1526 +1960 0 1431 +1960 0 1263 +1960 0 844 +1960 0 0 +1960 0 0 +1960 1320 0 +2093 1821 0 +2225 2111 0 +2358 2333 0 +2456 2490 0 +2539 2623 0 +2631 2755 0 +2731 2887 0 +2836 3019 0 +2948 3152 0 +3064 3283 0 +3184 3416 0 +3307 3548 0 +3432 3680 0 +3559 3812 0 +3687 3944 0 +3816 4076 0 +3945 4095 0 +2094 0 1837 +2093 0 1834 +2093 0 1829 +2093 0 1821 +2093 0 1811 +2093 0 1796 +2093 0 1776 +2093 0 1748 +2093 0 1706 +2093 0 1645 +2093 0 1547 +2093 0 1370 +2093 0 913 +2093 0 0 +2093 0 0 +2093 1444 0 +2225 1950 0 +2358 2241 0 +2490 2464 0 +2589 2623 0 +2672 2755 0 +2764 2887 0 +2863 3019 0 +2969 3152 0 +3081 3283 0 +3197 3416 0 +3317 3548 0 +3439 3680 0 +3564 3812 0 +3691 3944 0 +3819 4076 0 +3948 4095 0 +2226 0 1966 +2226 0 1963 +2225 0 1960 +2225 0 1954 +2225 0 1946 +2225 0 1936 +2225 0 1921 +2225 0 1900 +2225 0 1871 +2225 0 1829 +2225 0 1767 +2225 0 1666 +2225 0 1484 +2225 0 990 +2225 0 0 +2225 0 0 +2225 1570 0 +2358 2080 0 +2490 2373 0 +2623 2596 0 +2722 2755 0 +2805 2887 0 +2896 3019 0 +2996 3152 0 +3101 3283 0 +3213 3416 0 +3329 3548 0 +3449 3680 0 +3572 3812 0 +3696 3944 0 +3823 4076 0 +3951 4095 0 +2358 0 2096 +2358 0 2094 +2358 0 2091 +2358 0 2087 +2358 0 2081 +2358 0 2073 +2358 0 2062 +2358 0 2047 +2358 0 2027 +2358 0 1997 +2358 0 1955 +2358 0 1891 +2358 0 1788 +2358 0 1600 +2358 0 1076 +2358 0 0 +2358 0 0 +2358 1698 0 +2490 2211 0 +2623 2504 0 +2755 2728 0 +2855 2887 0 +2938 3019 0 +3029 3152 0 +3128 3283 0 +3234 3416 0 +3346 3548 0 +3462 3680 0 +3581 3812 0 +3704 3944 0 +3828 4076 0 +3955 4095 0 +2491 0 2226 +2491 0 2225 +2490 0 2223 +2490 0 2220 +2490 0 2215 +2490 0 2209 +2490 0 2202 +2490 0 2190 +2490 0 2175 +2490 0 2154 +2490 0 2125 +2490 0 2082 +2490 0 2017 +2490 0 1913 +2490 0 1722 +2490 0 1173 +2490 0 0 +2490 0 0 +2490 1826 0 +2623 2342 0 +2755 2636 0 +2887 2859 0 +2987 3019 0 +3070 3152 0 +3161 3283 0 +3260 3416 0 +3366 3548 0 +3478 3680 0 +3594 3812 0 +3713 3944 0 +3836 4076 0 +3961 4095 0 +2623 0 2357 +2623 0 2356 +2623 0 2355 +2623 0 2352 +2623 0 2349 +2623 0 2345 +2623 0 2338 +2623 0 2331 +2623 0 2320 +2623 0 2304 +2623 0 2283 +2623 0 2253 +2623 0 2210 +2623 0 2144 +2623 0 2039 +2623 0 1845 +2623 0 1275 +2623 0 0 +2623 0 0 +2623 1956 0 +2755 2474 0 +2887 2767 0 +3019 2991 0 +3120 3152 0 +3202 3283 0 +3294 3416 0 +3393 3548 0 +3499 3680 0 +3610 3812 0 +3726 3944 0 +3845 4076 0 +3968 4095 0 +2755 0 2488 +2755 0 2488 +2755 0 2486 +2755 0 2485 +2755 0 2482 +2755 0 2479 +2755 0 2475 +2755 0 2469 +2755 0 2460 +2755 0 2449 +2755 0 2434 +2755 0 2413 +2755 0 2383 +2755 0 2339 +2755 0 2274 +2755 0 2167 +2755 0 1971 +2755 0 1386 +2755 0 0 +2755 0 0 +2755 2086 0 +2887 2605 0 +3019 2898 0 +3152 3123 0 +3252 3283 0 +3335 3416 0 +3426 3548 0 +3525 3680 0 +3631 3812 0 +3742 3944 0 +3858 4076 0 +3978 4095 0 +2887 0 2620 +2887 0 2619 +2887 0 2618 +2887 0 2617 +2887 0 2615 +2887 0 2613 +2887 0 2609 +2887 0 2605 +2887 0 2599 +2887 0 2591 +2887 0 2580 +2887 0 2564 +2887 0 2543 +2887 0 2513 +2887 0 2469 +2887 0 2403 +2887 0 2296 +2887 0 2098 +2887 0 1497 +2887 0 0 +2887 0 0 +2887 2217 0 +3019 2736 0 +3152 3031 0 +3283 3255 0 +3384 3416 0 +3467 3548 0 +3558 3680 0 +3657 3812 0 +3763 3944 0 +3874 4076 0 +3990 4095 0 +3019 0 2751 +3019 0 2751 +3019 0 2750 +3019 0 2749 +3019 0 2747 +3019 0 2746 +3019 0 2743 +3019 0 2740 +3019 0 2735 +3019 0 2729 +3019 0 2721 +3019 0 2710 +3019 0 2695 +3019 0 2673 +3019 0 2643 +3019 0 2599 +3019 0 2533 +3019 0 2426 +3019 0 2225 +3019 0 1613 +3019 0 0 +3019 0 0 +3019 2347 0 +3152 2869 0 +3283 3163 0 +3416 3387 0 +3516 3548 0 +3599 3680 0 +3690 3812 0 +3790 3944 0 +3895 4076 0 +4006 4095 0 +3152 0 2883 +3152 0 2883 +3152 0 2882 +3152 0 2881 +3152 0 2880 +3152 0 2879 +3152 0 2877 +3152 0 2875 +3152 0 2871 +3152 0 2867 +3152 0 2861 +3152 0 2853 +3152 0 2842 +3152 0 2826 +3152 0 2805 +3152 0 2774 +3152 0 2730 +3152 0 2664 +3152 0 2556 +3152 0 2355 +3152 0 1735 +3152 0 0 +3152 0 0 +3152 2479 0 +3283 2999 0 +3416 3294 0 +3548 3519 0 +3649 3680 0 +3731 3812 0 +3823 3944 0 +3921 4076 0 +4027 4095 0 +3284 0 3014 +3283 0 3014 +3283 0 3014 +3283 0 3013 +3283 0 3013 +3283 0 3011 +3283 0 3010 +3283 0 3008 +3283 0 3006 +3283 0 3002 +3283 0 2998 +3283 0 2992 +3283 0 2984 +3283 0 2973 +3283 0 2957 +3283 0 2936 +3283 0 2905 +3283 0 2861 +3283 0 2794 +3283 0 2686 +3283 0 2484 +3283 0 1856 +3283 0 0 +3283 0 0 +3283 2610 0 +3416 3132 0 +3548 3427 0 +3680 3651 0 +3781 3812 0 +3863 3944 0 +3955 4076 0 +4054 4095 0 +3416 0 3147 +3416 0 3146 +3416 0 3146 +3416 0 3146 +3416 0 3145 +3416 0 3144 +3416 0 3143 +3416 0 3142 +3416 0 3140 +3416 0 3138 +3416 0 3134 +3416 0 3130 +3416 0 3124 +3416 0 3115 +3416 0 3104 +3416 0 3089 +3416 0 3067 +3416 0 3037 +3416 0 2992 +3416 0 2926 +3416 0 2817 +3416 0 2615 +3416 0 1986 +3416 0 0 +3416 0 0 +3416 2742 0 +3548 3264 0 +3680 3559 0 +3812 3783 0 +3913 3944 0 +3996 4076 0 +4087 4095 0 +3548 0 3279 +3548 0 3278 +3548 0 3278 +3548 0 3278 +3548 0 3277 +3548 0 3277 +3548 0 3276 +3548 0 3275 +3548 0 3274 +3548 0 3272 +3548 0 3269 +3548 0 3266 +3548 0 3261 +3548 0 3256 +3548 0 3247 +3548 0 3236 +3548 0 3221 +3548 0 3199 +3548 0 3168 +3548 0 3124 +3548 0 3057 +3548 0 2949 +3548 0 2746 +3548 0 2111 +3548 0 0 +3548 0 0 +3548 2873 0 +3680 3396 0 +3812 3691 0 +3944 3915 0 +4045 4076 0 +4095 4095 0 +3680 0 3410 +3680 0 3410 +3680 0 3410 +3680 0 3410 +3680 0 3410 +3680 0 3409 +3680 0 3409 +3680 0 3408 +3680 0 3407 +3680 0 3405 +3680 0 3404 +3680 0 3401 +3680 0 3398 +3680 0 3393 +3680 0 3387 +3680 0 3379 +3680 0 3368 +3680 0 3353 +3680 0 3331 +3680 0 3300 +3680 0 3256 +3680 0 3189 +3680 0 3081 +3680 0 2877 +3680 0 2242 +3680 0 0 +3680 0 0 +3680 3005 0 +3812 3528 0 +3944 3822 0 +4076 4047 0 +4095 4095 0 +3812 0 3543 +3812 0 3543 +3812 0 3542 +3812 0 3542 +3812 0 3542 +3812 0 3541 +3812 0 3541 +3812 0 3541 +3812 0 3540 +3812 0 3539 +3812 0 3537 +3812 0 3536 +3812 0 3533 +3812 0 3530 +3812 0 3525 +3812 0 3519 +3812 0 3511 +3812 0 3500 +3812 0 3484 +3812 0 3463 +3812 0 3432 +3812 0 3388 +3812 0 3321 +3812 0 3212 +3812 0 3009 +3812 0 2371 +3812 0 0 +3812 0 0 +3812 3137 0 +3944 3660 0 +4076 3954 0 +4095 4095 0 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3673 +3944 0 3673 +3944 0 3673 +3944 0 3672 +3944 0 3671 +3944 0 3669 +3944 0 3668 +3944 0 3665 +3944 0 3662 +3944 0 3657 +3944 0 3651 +3944 0 3643 +3944 0 3632 +3944 0 3616 +3944 0 3595 +3944 0 3564 +3944 0 3520 +3944 0 3453 +3944 0 3344 +3944 0 3140 +3944 0 2500 +3944 0 0 +3944 0 0 +3944 3269 0 +4076 3792 0 +4095 4087 0 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3805 +4076 0 3805 +4076 0 3805 +4076 0 3804 +4076 0 3803 +4076 0 3803 +4076 0 3801 +4076 0 3799 +4076 0 3797 +4076 0 3793 +4076 0 3789 +4076 0 3783 +4076 0 3775 +4076 0 3763 +4076 0 3748 +4076 0 3726 +4076 0 3696 +4076 0 3651 +4076 0 3585 +4076 0 3476 +4076 0 3272 +4076 0 2628 +4076 0 0 +4076 0 0 +4076 3401 0 +4095 3924 0 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3937 +4095 0 3937 +4095 0 3937 +4095 0 3936 +4095 0 3935 +4095 0 3933 +4095 0 3932 +4095 0 3929 +4095 0 3926 +4095 0 3921 +4095 0 3915 +4095 0 3907 +4095 0 3896 +4095 0 3880 +4095 0 3859 +4095 0 3828 +4095 0 3784 +4095 0 3717 +4095 0 3608 +4095 0 3404 +4095 0 2762 +4095 0 0 +4095 0 0 +4095 3533 0 +0 312 466 +0 419 466 +0 466 388 +0 466 154 +0 609 0 +59 750 0 +350 888 0 +573 1025 0 +762 1160 0 +934 1295 0 +1092 1429 0 +1244 1563 0 +1390 1696 0 +1532 1828 0 +1672 1961 0 +1809 2094 0 +1945 2226 0 +2080 2358 0 +2215 2491 0 +2348 2623 0 +2482 2755 0 +2615 2887 0 +2747 3019 0 +2880 3152 0 +3012 3284 0 +3145 3416 0 +3277 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 171 466 +15 333 450 +15 450 432 +15 450 225 +0 598 0 +258 741 0 +466 882 0 +647 1020 0 +813 1157 0 +968 1292 0 +1118 1427 0 +1262 1561 0 +1403 1695 0 +1542 1828 0 +1679 1961 0 +1814 2093 0 +1949 2226 0 +2083 2358 0 +2217 2491 0 +2350 2623 0 +2483 2755 0 +2616 2887 0 +2748 3019 0 +2881 3152 0 +3013 3283 0 +3145 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 0 466 +15 145 450 +218 361 427 +218 427 306 +277 582 148 +435 730 34 +585 873 0 +731 1014 0 +873 1152 0 +1012 1289 0 +1149 1424 0 +1285 1559 0 +1420 1693 0 +1554 1827 0 +1688 1960 0 +1821 2093 0 +1954 2225 0 +2087 2358 0 +2220 2490 0 +2352 2623 0 +2485 2755 0 +2617 2887 0 +2749 3019 0 +2881 3152 0 +3013 3283 0 +3146 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +154 0 466 +225 15 450 +306 218 427 +396 396 396 +494 560 350 +598 714 280 +708 862 166 +823 1005 0 +942 1146 0 +1064 1284 0 +1188 1421 0 +1315 1557 0 +1442 1691 0 +1571 1825 0 +1700 1959 0 +1830 2092 0 +1961 2225 0 +2092 2357 0 +2223 2490 0 +2355 2622 0 +2487 2755 0 +2619 2887 0 +2750 3019 0 +2882 3151 0 +3014 3283 0 +3146 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +485 0 609 +520 0 598 +564 148 582 +560 350 494 +560 438 350 +714 696 280 +815 862 166 +908 1005 0 +1009 1146 0 +1116 1284 0 +1228 1421 0 +1345 1557 0 +1465 1691 0 +1588 1825 0 +1714 1959 0 +1841 2092 0 +1969 2225 0 +2098 2357 0 +2228 2490 0 +2358 2622 0 +2489 2755 0 +2620 2887 0 +2751 3019 0 +2883 3151 0 +3015 3283 0 +3147 3416 0 +3279 3548 0 +3411 3680 0 +3543 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +723 0 750 +741 0 738 +730 34 683 +714 280 598 +714 280 409 +714 490 280 +862 784 166 +1002 1005 0 +1086 1146 0 +1177 1284 0 +1277 1421 0 +1384 1557 0 +1495 1691 0 +1611 1825 0 +1731 1959 0 +1854 2092 0 +1979 2225 0 +2105 2357 0 +2234 2490 0 +2362 2622 0 +2492 2755 0 +2623 2887 0 +2753 3019 0 +2885 3151 0 +3016 3283 0 +3147 3416 0 +3279 3548 0 +3411 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +888 0 852 +882 0 822 +873 0 776 +862 166 708 +862 166 567 +862 166 264 +862 550 166 +1005 881 0 +1146 1119 0 +1249 1284 0 +1335 1421 0 +1430 1557 0 +1532 1691 0 +1640 1825 0 +1754 1959 0 +1871 2092 0 +1992 2225 0 +2115 2357 0 +2241 2490 0 +2368 2622 0 +2497 2755 0 +2626 2887 0 +2756 3019 0 +2886 3151 0 +3017 3283 0 +3148 3416 0 +3280 3548 0 +3412 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1025 0 939 +1020 0 914 +1014 0 877 +1005 0 823 +1005 0 717 +1005 0 523 +1005 0 0 +1005 620 0 +1146 983 0 +1284 1235 0 +1403 1421 0 +1486 1557 0 +1577 1691 0 +1676 1825 0 +1781 1959 0 +1893 2092 0 +2009 2225 0 +2128 2357 0 +2251 2490 0 +2375 2622 0 +2502 2755 0 +2630 2887 0 +2759 3019 0 +2889 3151 0 +3019 3283 0 +3150 3416 0 +3281 3548 0 +3412 3680 0 +3544 3812 0 +3676 3944 0 +3807 4076 0 +3939 4095 0 +1160 0 1033 +1157 0 1013 +1152 0 984 +1146 0 942 +1146 0 863 +1146 0 730 +1146 0 455 +1146 0 0 +1146 700 0 +1284 1093 0 +1421 1353 0 +1551 1557 0 +1631 1691 0 +1720 1825 0 +1817 1959 0 +1920 2092 0 +2030 2225 0 +2145 2357 0 +2264 2490 0 +2385 2622 0 +2510 2755 0 +2636 2887 0 +2763 3019 0 +2892 3151 0 +3021 3283 0 +3151 3416 0 +3282 3548 0 +3413 3680 0 +3545 3812 0 +3676 3944 0 +3808 4076 0 +3940 4095 0 +1295 0 1135 +1292 0 1119 +1289 0 1096 +1284 0 1064 +1284 0 1005 +1284 0 911 +1284 0 746 +1284 0 346 +1284 0 0 +1284 788 0 +1421 1207 0 +1557 1476 0 +1691 1688 0 +1772 1825 0 +1860 1959 0 +1955 2092 0 +2058 2225 0 +2166 2357 0 +2280 2490 0 +2398 2622 0 +2520 2755 0 +2643 2887 0 +2769 3019 0 +2896 3151 0 +3025 3283 0 +3154 3416 0 +3284 3548 0 +3415 3680 0 +3545 3812 0 +3677 3944 0 +3808 4076 0 +3940 4095 0 +1429 0 1244 +1427 0 1231 +1424 0 1213 +1421 0 1188 +1421 0 1144 +1421 0 1077 +1421 0 969 +1421 0 767 +1421 0 141 +1421 0 0 +1421 885 0 +1557 1326 0 +1691 1600 0 +1825 1816 0 +1911 1959 0 +1997 2092 0 +2092 2225 0 +2193 2357 0 +2302 2490 0 +2414 2622 0 +2532 2755 0 +2653 2887 0 +2776 3019 0 +2902 3151 0 +3029 3283 0 +3157 3416 0 +3286 3548 0 +3416 3680 0 +3547 3812 0 +3678 3944 0 +3809 4076 0 +3941 4095 0 +1563 0 1357 +1561 0 1347 +1559 0 1333 +1557 0 1315 +1557 0 1281 +1557 0 1233 +1557 0 1159 +1557 0 1037 +1557 0 794 +1557 0 0 +1557 0 0 +1557 988 0 +1691 1447 0 +1825 1727 0 +1959 1944 0 +2049 2092 0 +2134 2225 0 +2228 2357 0 +2329 2490 0 +2436 2622 0 +2549 2755 0 +2666 2887 0 +2786 3019 0 +2909 3151 0 +3034 3283 0 +3161 3416 0 +3290 3548 0 +3419 3680 0 +3549 3812 0 +3679 3944 0 +3810 4076 0 +3941 4095 0 +1696 0 1475 +1695 0 1467 +1693 0 1456 +1691 0 1442 +1691 0 1417 +1691 0 1382 +1691 0 1330 +1691 0 1249 +1691 0 1113 +1691 0 827 +1691 0 0 +1691 0 0 +1691 1098 0 +1825 1571 0 +1959 1854 0 +2092 2073 0 +2185 2225 0 +2269 2357 0 +2362 2490 0 +2463 2622 0 +2570 2755 0 +2682 2887 0 +2798 3019 0 +2919 3151 0 +3042 3283 0 +3167 3416 0 +3294 3548 0 +3422 3680 0 +3551 3812 0 +3681 3944 0 +3811 4076 0 +3942 4095 0 +1828 0 1596 +1828 0 1590 +1827 0 1582 +1825 0 1571 +1825 0 1552 +1825 0 1526 +1825 0 1489 +1825 0 1434 +1825 0 1348 +1825 0 1199 +1825 0 869 +1825 0 0 +1825 0 0 +1825 1212 0 +1959 1697 0 +2092 1983 0 +2225 2203 0 +2320 2357 0 +2404 2490 0 +2496 2622 0 +2596 2755 0 +2703 2887 0 +2815 3019 0 +2932 3151 0 +3051 3283 0 +3174 3416 0 +3299 3548 0 +3426 3680 0 +3554 3812 0 +3683 3944 0 +3813 4076 0 +3944 4095 0 +1961 0 1719 +1961 0 1715 +1960 0 1708 +1959 0 1700 +1959 0 1686 +1959 0 1667 +1959 0 1640 +1959 0 1601 +1959 0 1544 +1959 0 1453 +1959 0 1294 +1959 0 917 +1959 0 0 +1959 0 0 +1959 1331 0 +2092 1824 0 +2225 2112 0 +2357 2334 0 +2454 2490 0 +2538 2622 0 +2630 2755 0 +2730 2887 0 +2836 3019 0 +2948 3151 0 +3064 3283 0 +3184 3416 0 +3307 3548 0 +3432 3680 0 +3558 3812 0 +3686 3944 0 +3815 4076 0 +3945 4095 0 +2094 0 1845 +2093 0 1841 +2093 0 1837 +2092 0 1830 +2092 0 1820 +2092 0 1806 +2092 0 1786 +2092 0 1758 +2092 0 1718 +2092 0 1658 +2092 0 1564 +2092 0 1394 +2092 0 977 +2092 0 0 +2092 0 0 +2092 1452 0 +2225 1953 0 +2357 2243 0 +2490 2465 0 +2588 2622 0 +2671 2755 0 +2763 2887 0 +2863 3019 0 +2969 3151 0 +3080 3283 0 +3196 3416 0 +3316 3548 0 +3439 3680 0 +3564 3812 0 +3691 3944 0 +3818 4076 0 +3948 4095 0 +2226 0 1972 +2226 0 1969 +2225 0 1966 +2225 0 1961 +2225 0 1953 +2225 0 1943 +2225 0 1928 +2225 0 1908 +2225 0 1880 +2225 0 1839 +2225 0 1777 +2225 0 1679 +2225 0 1503 +2225 0 1044 +2225 0 0 +2225 0 0 +2225 1576 0 +2357 2082 0 +2490 2374 0 +2622 2596 0 +2721 2755 0 +2804 2887 0 +2896 3019 0 +2995 3151 0 +3101 3283 0 +3213 3416 0 +3329 3548 0 +3449 3680 0 +3571 3812 0 +3696 3944 0 +3823 4076 0 +3951 4095 0 +2358 0 2100 +2358 0 2098 +2358 0 2096 +2357 0 2092 +2357 0 2086 +2357 0 2078 +2357 0 2068 +2357 0 2053 +2357 0 2032 +2357 0 2004 +2357 0 1962 +2357 0 1899 +2357 0 1798 +2357 0 1615 +2357 0 1122 +2357 0 0 +2357 0 0 +2357 1702 0 +2490 2213 0 +2622 2505 0 +2755 2728 0 +2854 2887 0 +2937 3019 0 +3029 3151 0 +3128 3283 0 +3234 3416 0 +3345 3548 0 +3461 3680 0 +3581 3812 0 +3703 3944 0 +3828 4076 0 +3955 4095 0 +2491 0 2230 +2491 0 2228 +2490 0 2226 +2490 0 2223 +2490 0 2219 +2490 0 2213 +2490 0 2206 +2490 0 2195 +2490 0 2180 +2490 0 2159 +2490 0 2129 +2490 0 2087 +2490 0 2023 +2490 0 1920 +2490 0 1733 +2490 0 1210 +2490 0 0 +2490 0 0 +2490 1830 0 +2622 2343 0 +2755 2636 0 +2887 2860 0 +2987 3019 0 +3070 3151 0 +3161 3283 0 +3260 3416 0 +3366 3548 0 +3478 3680 0 +3594 3812 0 +3713 3944 0 +3836 4076 0 +3961 4095 0 +2623 0 2359 +2623 0 2358 +2623 0 2357 +2622 0 2355 +2622 0 2352 +2622 0 2347 +2622 0 2341 +2622 0 2334 +2622 0 2323 +2622 0 2308 +2622 0 2287 +2622 0 2256 +2622 0 2214 +2622 0 2149 +2622 0 2045 +2622 0 1853 +2622 0 1304 +2622 0 0 +2622 0 0 +2622 1958 0 +2755 2475 0 +2887 2768 0 +3019 2991 0 +3119 3151 0 +3202 3283 0 +3293 3416 0 +3393 3548 0 +3499 3680 0 +3610 3812 0 +3726 3944 0 +3845 4076 0 +3968 4095 0 +2755 0 2490 +2755 0 2489 +2755 0 2488 +2755 0 2487 +2755 0 2484 +2755 0 2481 +2755 0 2477 +2755 0 2471 +2755 0 2463 +2755 0 2452 +2755 0 2436 +2755 0 2415 +2755 0 2386 +2755 0 2342 +2755 0 2277 +2755 0 2172 +2755 0 1977 +2755 0 1409 +2755 0 0 +2755 0 0 +2755 2088 0 +2887 2605 0 +3019 2899 0 +3151 3123 0 +3252 3283 0 +3335 3416 0 +3426 3548 0 +3525 3680 0 +3631 3812 0 +3742 3944 0 +3858 4076 0 +3978 4095 0 +2887 0 2621 +2887 0 2620 +2887 0 2620 +2887 0 2619 +2887 0 2617 +2887 0 2614 +2887 0 2611 +2887 0 2607 +2887 0 2601 +2887 0 2592 +2887 0 2581 +2887 0 2566 +2887 0 2545 +2887 0 2515 +2887 0 2471 +2887 0 2406 +2887 0 2299 +2887 0 2103 +2887 0 1516 +2887 0 0 +2887 0 0 +2887 2218 0 +3019 2736 0 +3151 3031 0 +3283 3255 0 +3384 3416 0 +3467 3548 0 +3558 3680 0 +3657 3812 0 +3763 3944 0 +3874 4076 0 +3990 4095 0 +3019 0 2752 +3019 0 2752 +3019 0 2751 +3019 0 2750 +3019 0 2749 +3019 0 2747 +3019 0 2745 +3019 0 2741 +3019 0 2737 +3019 0 2731 +3019 0 2723 +3019 0 2712 +3019 0 2696 +3019 0 2675 +3019 0 2645 +3019 0 2601 +3019 0 2535 +3019 0 2428 +3019 0 2229 +3019 0 1628 +3019 0 0 +3019 0 0 +3019 2348 0 +3151 2869 0 +3283 3163 0 +3416 3387 0 +3516 3548 0 +3599 3680 0 +3690 3812 0 +3790 3944 0 +3895 4076 0 +4006 4095 0 +3152 0 2884 +3152 0 2883 +3152 0 2883 +3151 0 2882 +3151 0 2881 +3151 0 2880 +3151 0 2878 +3151 0 2876 +3151 0 2872 +3151 0 2868 +3151 0 2862 +3151 0 2854 +3151 0 2842 +3151 0 2827 +3151 0 2806 +3151 0 2775 +3151 0 2732 +3151 0 2665 +3151 0 2558 +3151 0 2358 +3151 0 1746 +3151 0 0 +3151 0 0 +3151 2480 0 +3283 2999 0 +3416 3294 0 +3548 3519 0 +3649 3680 0 +3731 3812 0 +3822 3944 0 +3921 4076 0 +4027 4095 0 +3284 0 3015 +3283 0 3015 +3283 0 3014 +3283 0 3014 +3283 0 3013 +3283 0 3012 +3283 0 3011 +3283 0 3009 +3283 0 3007 +3283 0 3003 +3283 0 2999 +3283 0 2993 +3283 0 2985 +3283 0 2973 +3283 0 2958 +3283 0 2936 +3283 0 2906 +3283 0 2862 +3283 0 2795 +3283 0 2688 +3283 0 2486 +3283 0 1864 +3283 0 0 +3283 0 0 +3283 2611 0 +3416 3132 0 +3548 3427 0 +3680 3651 0 +3781 3812 0 +3863 3944 0 +3955 4076 0 +4054 4095 0 +3416 0 3147 +3416 0 3147 +3416 0 3147 +3416 0 3146 +3416 0 3146 +3416 0 3145 +3416 0 3144 +3416 0 3142 +3416 0 3141 +3416 0 3138 +3416 0 3135 +3416 0 3130 +3416 0 3124 +3416 0 3116 +3416 0 3105 +3416 0 3089 +3416 0 3068 +3416 0 3038 +3416 0 2993 +3416 0 2927 +3416 0 2818 +3416 0 2617 +3416 0 1992 +3416 0 0 +3416 0 0 +3416 2742 0 +3548 3264 0 +3680 3559 0 +3812 3783 0 +3913 3944 0 +3995 4076 0 +4087 4095 0 +3548 0 3279 +3548 0 3279 +3548 0 3279 +3548 0 3278 +3548 0 3278 +3548 0 3277 +3548 0 3277 +3548 0 3275 +3548 0 3274 +3548 0 3272 +3548 0 3270 +3548 0 3267 +3548 0 3262 +3548 0 3256 +3548 0 3248 +3548 0 3237 +3548 0 3221 +3548 0 3200 +3548 0 3169 +3548 0 3125 +3548 0 3058 +3548 0 2950 +3548 0 2747 +3548 0 2115 +3548 0 0 +3548 0 0 +3548 2874 0 +3680 3396 0 +3812 3691 0 +3944 3915 0 +4045 4076 0 +4095 4095 0 +3680 0 3411 +3680 0 3411 +3680 0 3410 +3680 0 3410 +3680 0 3410 +3680 0 3410 +3680 0 3409 +3680 0 3408 +3680 0 3407 +3680 0 3406 +3680 0 3404 +3680 0 3401 +3680 0 3398 +3680 0 3394 +3680 0 3388 +3680 0 3379 +3680 0 3368 +3680 0 3353 +3680 0 3331 +3680 0 3301 +3680 0 3256 +3680 0 3189 +3680 0 3081 +3680 0 2878 +3680 0 2246 +3680 0 0 +3680 0 0 +3680 3006 0 +3812 3528 0 +3944 3823 0 +4076 4047 0 +4095 4095 0 +3812 0 3543 +3812 0 3543 +3812 0 3543 +3812 0 3542 +3812 0 3542 +3812 0 3542 +3812 0 3541 +3812 0 3541 +3812 0 3540 +3812 0 3539 +3812 0 3538 +3812 0 3536 +3812 0 3533 +3812 0 3530 +3812 0 3526 +3812 0 3520 +3812 0 3511 +3812 0 3500 +3812 0 3485 +3812 0 3463 +3812 0 3432 +3812 0 3388 +3812 0 3321 +3812 0 3213 +3812 0 3010 +3812 0 2374 +3812 0 0 +3812 0 0 +3812 3138 0 +3944 3660 0 +4076 3954 0 +4095 4095 0 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3673 +3944 0 3673 +3944 0 3672 +3944 0 3671 +3944 0 3669 +3944 0 3668 +3944 0 3665 +3944 0 3662 +3944 0 3657 +3944 0 3651 +3944 0 3643 +3944 0 3632 +3944 0 3616 +3944 0 3595 +3944 0 3564 +3944 0 3520 +3944 0 3453 +3944 0 3344 +3944 0 3141 +3944 0 2502 +3944 0 0 +3944 0 0 +3944 3269 0 +4076 3792 0 +4095 4087 0 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3805 +4076 0 3805 +4076 0 3805 +4076 0 3804 +4076 0 3803 +4076 0 3801 +4076 0 3799 +4076 0 3797 +4076 0 3794 +4076 0 3789 +4076 0 3783 +4076 0 3775 +4076 0 3764 +4076 0 3748 +4076 0 3727 +4076 0 3696 +4076 0 3652 +4076 0 3585 +4076 0 3476 +4076 0 3272 +4076 0 2630 +4076 0 0 +4076 0 0 +4076 3401 0 +4095 3924 0 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3937 +4095 0 3937 +4095 0 3936 +4095 0 3935 +4095 0 3933 +4095 0 3932 +4095 0 3929 +4095 0 3926 +4095 0 3921 +4095 0 3915 +4095 0 3907 +4095 0 3896 +4095 0 3880 +4095 0 3859 +4095 0 3828 +4095 0 3784 +4095 0 3717 +4095 0 3608 +4095 0 3405 +4095 0 2764 +4095 0 0 +4095 0 0 +4095 3534 0 +0 427 609 +0 512 609 +0 606 609 +0 609 485 +0 609 224 +0 750 0 +0 888 0 +371 1025 0 +640 1160 0 +853 1295 0 +1037 1429 0 +1205 1563 0 +1362 1696 0 +1512 1828 0 +1657 1961 0 +1798 2094 0 +1937 2226 0 +2074 2358 0 +2210 2491 0 +2345 2623 0 +2479 2755 0 +2613 2887 0 +2746 3019 0 +2879 3152 0 +3012 3284 0 +3144 3416 0 +3277 3548 0 +3409 3680 0 +3541 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 322 609 +0 444 598 +0 551 598 +0 598 520 +0 598 286 +0 741 0 +190 882 0 +482 1020 0 +705 1157 0 +894 1292 0 +1065 1427 0 +1225 1561 0 +1376 1695 0 +1522 1828 0 +1664 1961 0 +1804 2093 0 +1941 2226 0 +2077 2358 0 +2212 2491 0 +2347 2623 0 +2481 2755 0 +2614 2887 0 +2747 3019 0 +2880 3152 0 +3012 3283 0 +3145 3416 0 +3277 3548 0 +3409 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 127 609 +0 303 598 +148 466 582 +148 582 564 +148 582 357 +132 730 34 +390 873 0 +598 1014 0 +779 1152 0 +945 1289 0 +1101 1424 0 +1250 1559 0 +1394 1693 0 +1535 1827 0 +1674 1960 0 +1811 2093 0 +1946 2225 0 +2081 2358 0 +2215 2490 0 +2349 2623 0 +2482 2755 0 +2615 2887 0 +2747 3019 0 +2880 3152 0 +3013 3283 0 +3145 3416 0 +3277 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 0 609 +0 0 598 +148 277 582 +350 494 560 +350 560 438 +409 714 280 +567 862 166 +717 1005 0 +863 1146 0 +1005 1284 0 +1144 1421 0 +1281 1557 0 +1417 1691 0 +1552 1825 0 +1686 1959 0 +1820 2092 0 +1953 2225 0 +2086 2357 0 +2219 2490 0 +2352 2622 0 +2484 2755 0 +2617 2887 0 +2749 3019 0 +2881 3151 0 +3013 3283 0 +3146 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +224 0 609 +286 0 598 +357 148 582 +438 350 560 +528 528 528 +625 691 482 +730 846 412 +840 994 298 +955 1137 80 +1074 1278 0 +1196 1416 0 +1320 1553 0 +1446 1689 0 +1574 1823 0 +1703 1958 0 +1832 2091 0 +1963 2224 0 +2093 2357 0 +2224 2489 0 +2356 2622 0 +2487 2755 0 +2619 2887 0 +2750 3019 0 +2883 3151 0 +3014 3283 0 +3146 3416 0 +3278 3548 0 +3410 3680 0 +3543 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +587 0 750 +616 0 741 +652 34 730 +696 280 714 +691 482 625 +691 570 482 +846 828 412 +947 994 298 +1040 1137 80 +1141 1278 0 +1248 1416 0 +1360 1553 0 +1477 1689 0 +1598 1823 0 +1721 1958 0 +1846 2091 0 +1973 2224 0 +2101 2357 0 +2230 2489 0 +2360 2622 0 +2490 2755 0 +2621 2887 0 +2752 3019 0 +2884 3151 0 +3015 3283 0 +3147 3416 0 +3279 3548 0 +3411 3680 0 +3543 3812 0 +3674 3944 0 +3807 4076 0 +3939 4095 0 +838 0 888 +855 0 882 +873 0 870 +862 166 815 +846 412 730 +846 412 541 +846 622 412 +994 917 298 +1134 1137 80 +1218 1278 0 +1310 1416 0 +1409 1553 0 +1515 1689 0 +1627 1823 0 +1743 1958 0 +1863 2091 0 +1986 2224 0 +2111 2357 0 +2238 2489 0 +2366 2622 0 +2495 2755 0 +2625 2887 0 +2755 3019 0 +2886 3151 0 +3016 3283 0 +3148 3416 0 +3280 3548 0 +3411 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1025 0 1006 +1020 0 985 +1014 0 954 +1005 0 908 +994 298 840 +994 298 699 +994 298 397 +994 682 298 +1137 1013 80 +1278 1251 0 +1381 1416 0 +1467 1553 0 +1562 1689 0 +1664 1823 0 +1772 1958 0 +1885 2091 0 +2003 2224 0 +2124 2357 0 +2247 2489 0 +2373 2622 0 +2501 2755 0 +2629 2887 0 +2758 3019 0 +2888 3151 0 +3018 3283 0 +3149 3416 0 +3280 3548 0 +3412 3680 0 +3544 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1160 0 1089 +1157 0 1071 +1152 0 1045 +1146 0 1009 +1137 80 955 +1137 80 850 +1137 80 655 +1137 80 81 +1137 753 80 +1278 1116 0 +1416 1367 0 +1535 1553 0 +1617 1689 0 +1709 1823 0 +1808 1958 0 +1913 2091 0 +2025 2224 0 +2141 2357 0 +2260 2489 0 +2383 2622 0 +2508 2755 0 +2635 2887 0 +2762 3019 0 +2891 3151 0 +3021 3283 0 +3151 3416 0 +3282 3548 0 +3413 3680 0 +3544 3812 0 +3676 3944 0 +3808 4076 0 +3940 4095 0 +1295 0 1181 +1292 0 1166 +1289 0 1145 +1284 0 1116 +1278 0 1074 +1278 0 995 +1278 0 862 +1278 0 587 +1278 0 0 +1278 832 0 +1416 1225 0 +1553 1486 0 +1683 1689 0 +1763 1823 0 +1852 1958 0 +1949 2091 0 +2053 2224 0 +2162 2357 0 +2277 2489 0 +2396 2622 0 +2517 2755 0 +2642 2887 0 +2768 3019 0 +2895 3151 0 +3024 3283 0 +3154 3416 0 +3284 3548 0 +3414 3680 0 +3545 3812 0 +3677 3944 0 +3808 4076 0 +3940 4095 0 +1429 0 1280 +1427 0 1267 +1424 0 1251 +1421 0 1228 +1416 0 1196 +1416 0 1137 +1416 0 1043 +1416 0 878 +1416 0 478 +1416 0 0 +1416 920 0 +1553 1340 0 +1689 1608 0 +1823 1821 0 +1905 1958 0 +1992 2091 0 +2087 2224 0 +2190 2357 0 +2298 2489 0 +2412 2622 0 +2530 2755 0 +2651 2887 0 +2775 3019 0 +2901 3151 0 +3028 3283 0 +3157 3416 0 +3286 3548 0 +3416 3680 0 +3547 3812 0 +3678 3944 0 +3809 4076 0 +3941 4095 0 +1563 0 1385 +1561 0 1376 +1559 0 1363 +1557 0 1345 +1553 0 1320 +1553 0 1276 +1553 0 1209 +1553 0 1102 +1553 0 900 +1553 0 275 +1553 0 0 +1553 1017 0 +1689 1457 0 +1823 1732 0 +1958 1948 0 +2044 2091 0 +2130 2224 0 +2224 2357 0 +2326 2489 0 +2434 2622 0 +2547 2755 0 +2664 2887 0 +2785 3019 0 +2908 3151 0 +3034 3283 0 +3161 3416 0 +3289 3548 0 +3419 3680 0 +3549 3812 0 +3679 3944 0 +3810 4076 0 +3941 4095 0 +1696 0 1496 +1695 0 1489 +1693 0 1479 +1691 0 1465 +1689 0 1446 +1689 0 1413 +1689 0 1365 +1689 0 1291 +1689 0 1169 +1689 0 926 +1689 0 0 +1689 0 0 +1689 1120 0 +1823 1579 0 +1958 1859 0 +2091 2076 0 +2181 2224 0 +2266 2357 0 +2360 2489 0 +2460 2622 0 +2568 2755 0 +2681 2887 0 +2797 3019 0 +2918 3151 0 +3041 3283 0 +3166 3416 0 +3293 3548 0 +3422 3680 0 +3551 3812 0 +3681 3944 0 +3811 4076 0 +3942 4095 0 +1828 0 1612 +1828 0 1607 +1827 0 1599 +1825 0 1588 +1823 0 1574 +1823 0 1549 +1823 0 1514 +1823 0 1462 +1823 0 1382 +1823 0 1245 +1823 0 960 +1823 0 0 +1823 0 0 +1823 1230 0 +1958 1703 0 +2091 1986 0 +2224 2206 0 +2317 2357 0 +2401 2489 0 +2494 2622 0 +2595 2755 0 +2702 2887 0 +2814 3019 0 +2931 3151 0 +3051 3283 0 +3174 3416 0 +3299 3548 0 +3426 3680 0 +3554 3812 0 +3683 3944 0 +3813 4076 0 +3944 4095 0 +1961 0 1732 +1961 0 1728 +1960 0 1722 +1959 0 1714 +1958 0 1703 +1958 0 1684 +1958 0 1658 +1958 0 1621 +1958 0 1566 +1958 0 1480 +1958 0 1332 +1958 0 1000 +1958 0 0 +1958 0 0 +1958 1344 0 +2091 1829 0 +2224 2115 0 +2357 2335 0 +2452 2489 0 +2536 2622 0 +2628 2755 0 +2728 2887 0 +2835 3019 0 +2947 3151 0 +3063 3283 0 +3184 3416 0 +3307 3548 0 +3431 3680 0 +3558 3812 0 +3686 3944 0 +3815 4076 0 +3945 4095 0 +2094 0 1855 +2093 0 1851 +2093 0 1847 +2092 0 1841 +2091 0 1832 +2091 0 1819 +2091 0 1799 +2091 0 1772 +2091 0 1733 +2091 0 1676 +2091 0 1585 +2091 0 1425 +2091 0 1050 +2091 0 0 +2091 0 0 +2091 1463 0 +2224 1956 0 +2357 2245 0 +2489 2466 0 +2586 2622 0 +2670 2755 0 +2762 2887 0 +2862 3019 0 +2968 3151 0 +3080 3283 0 +3196 3416 0 +3316 3548 0 +3439 3680 0 +3564 3812 0 +3691 3944 0 +3818 4076 0 +3948 4095 0 +2226 0 1979 +2226 0 1977 +2225 0 1973 +2225 0 1969 +2224 0 1963 +2224 0 1952 +2224 0 1938 +2224 0 1918 +2224 0 1891 +2224 0 1850 +2224 0 1790 +2224 0 1695 +2224 0 1527 +2224 0 1108 +2224 0 0 +2224 0 0 +2224 1584 0 +2357 2085 0 +2489 2375 0 +2622 2597 0 +2720 2755 0 +2803 2887 0 +2895 3019 0 +2995 3151 0 +3101 3283 0 +3212 3416 0 +3329 3548 0 +3448 3680 0 +3571 3812 0 +3696 3944 0 +3823 4076 0 +3951 4095 0 +2358 0 2106 +2358 0 2104 +2358 0 2101 +2357 0 2098 +2357 0 2093 +2357 0 2086 +2357 0 2075 +2357 0 2060 +2357 0 2040 +2357 0 2012 +2357 0 1970 +2357 0 1909 +2357 0 1811 +2357 0 1634 +2357 0 1176 +2357 0 0 +2357 0 0 +2357 1708 0 +2489 2215 0 +2622 2506 0 +2755 2729 0 +2853 2887 0 +2936 3019 0 +3028 3151 0 +3127 3283 0 +3233 3416 0 +3345 3548 0 +3461 3680 0 +3581 3812 0 +3703 3944 0 +3828 4076 0 +3955 4095 0 +2491 0 2234 +2491 0 2233 +2490 0 2230 +2490 0 2228 +2489 0 2224 +2489 0 2219 +2489 0 2211 +2489 0 2200 +2489 0 2185 +2489 0 2165 +2489 0 2136 +2489 0 2094 +2489 0 2031 +2489 0 1930 +2489 0 1748 +2489 0 1255 +2489 0 0 +2489 0 0 +2489 1834 0 +2622 2344 0 +2755 2637 0 +2887 2860 0 +2986 3019 0 +3069 3151 0 +3160 3283 0 +3260 3416 0 +3366 3548 0 +3478 3680 0 +3594 3812 0 +3713 3944 0 +3836 4076 0 +3961 4095 0 +2623 0 2363 +2623 0 2362 +2623 0 2360 +2622 0 2358 +2622 0 2356 +2622 0 2351 +2622 0 2346 +2622 0 2337 +2622 0 2327 +2622 0 2312 +2622 0 2291 +2622 0 2261 +2622 0 2219 +2622 0 2155 +2622 0 2052 +2622 0 1865 +2622 0 1342 +2622 0 0 +2622 0 0 +2622 1962 0 +2755 2476 0 +2887 2768 0 +3019 2992 0 +3119 3151 0 +3201 3283 0 +3293 3416 0 +3392 3548 0 +3498 3680 0 +3610 3812 0 +3726 3944 0 +3845 4076 0 +3968 4095 0 +2755 0 2493 +2755 0 2492 +2755 0 2491 +2755 0 2489 +2755 0 2487 +2755 0 2484 +2755 0 2480 +2755 0 2474 +2755 0 2466 +2755 0 2455 +2755 0 2440 +2755 0 2419 +2755 0 2389 +2755 0 2346 +2755 0 2281 +2755 0 2177 +2755 0 1986 +2755 0 1439 +2755 0 0 +2755 0 0 +2755 2091 0 +2887 2606 0 +3019 2899 0 +3151 3123 0 +3251 3283 0 +3334 3416 0 +3426 3548 0 +3525 3680 0 +3631 3812 0 +3742 3944 0 +3858 4076 0 +3977 4095 0 +2887 0 2623 +2887 0 2622 +2887 0 2621 +2887 0 2620 +2887 0 2619 +2887 0 2617 +2887 0 2613 +2887 0 2609 +2887 0 2603 +2887 0 2595 +2887 0 2584 +2887 0 2569 +2887 0 2548 +2887 0 2517 +2887 0 2474 +2887 0 2409 +2887 0 2304 +2887 0 2110 +2887 0 1540 +2887 0 0 +2887 0 0 +2887 2220 0 +3019 2737 0 +3151 3031 0 +3283 3255 0 +3384 3416 0 +3467 3548 0 +3558 3680 0 +3657 3812 0 +3763 3944 0 +3874 4076 0 +3990 4095 0 +3019 0 2754 +3019 0 2753 +3019 0 2752 +3019 0 2751 +3019 0 2750 +3019 0 2749 +3019 0 2746 +3019 0 2743 +3019 0 2738 +3019 0 2732 +3019 0 2724 +3019 0 2713 +3019 0 2698 +3019 0 2677 +3019 0 2647 +3019 0 2603 +3019 0 2537 +3019 0 2431 +3019 0 2234 +3019 0 1646 +3019 0 0 +3019 0 0 +3019 2350 0 +3151 2869 0 +3283 3163 0 +3416 3387 0 +3516 3548 0 +3599 3680 0 +3690 3812 0 +3789 3944 0 +3895 4076 0 +4006 4095 0 +3152 0 2885 +3152 0 2885 +3152 0 2884 +3151 0 2883 +3151 0 2883 +3151 0 2881 +3151 0 2879 +3151 0 2877 +3151 0 2873 +3151 0 2869 +3151 0 2863 +3151 0 2855 +3151 0 2844 +3151 0 2829 +3151 0 2807 +3151 0 2777 +3151 0 2733 +3151 0 2667 +3151 0 2560 +3151 0 2362 +3151 0 1760 +3151 0 0 +3151 0 0 +3151 2481 0 +3283 3000 0 +3416 3295 0 +3548 3519 0 +3648 3680 0 +3731 3812 0 +3822 3944 0 +3921 4076 0 +4027 4095 0 +3284 0 3016 +3283 0 3016 +3283 0 3015 +3283 0 3015 +3283 0 3014 +3283 0 3013 +3283 0 3012 +3283 0 3010 +3283 0 3008 +3283 0 3004 +3283 0 3000 +3283 0 2994 +3283 0 2986 +3283 0 2974 +3283 0 2959 +3283 0 2938 +3283 0 2907 +3283 0 2863 +3283 0 2797 +3283 0 2690 +3283 0 2489 +3283 0 1875 +3283 0 0 +3283 0 0 +3283 2612 0 +3416 3132 0 +3548 3427 0 +3680 3651 0 +3781 3812 0 +3863 3944 0 +3955 4076 0 +4054 4095 0 +3416 0 3147 +3416 0 3147 +3416 0 3147 +3416 0 3147 +3416 0 3146 +3416 0 3145 +3416 0 3144 +3416 0 3143 +3416 0 3141 +3416 0 3139 +3416 0 3135 +3416 0 3131 +3416 0 3125 +3416 0 3117 +3416 0 3106 +3416 0 3090 +3416 0 3069 +3416 0 3038 +3416 0 2994 +3416 0 2928 +3416 0 2820 +3416 0 2619 +3416 0 2000 +3416 0 0 +3416 0 0 +3416 2743 0 +3548 3264 0 +3680 3559 0 +3812 3783 0 +3913 3944 0 +3995 4076 0 +4087 4095 0 +3548 0 3279 +3548 0 3279 +3548 0 3279 +3548 0 3279 +3548 0 3278 +3548 0 3278 +3548 0 3277 +3548 0 3276 +3548 0 3275 +3548 0 3273 +3548 0 3270 +3548 0 3267 +3548 0 3262 +3548 0 3256 +3548 0 3248 +3548 0 3237 +3548 0 3222 +3548 0 3200 +3548 0 3170 +3548 0 3125 +3548 0 3059 +3548 0 2951 +3548 0 2749 +3548 0 2122 +3548 0 0 +3548 0 0 +3548 2874 0 +3680 3396 0 +3812 3691 0 +3944 3915 0 +4045 4076 0 +4095 4095 0 +3680 0 3411 +3680 0 3411 +3680 0 3411 +3680 0 3411 +3680 0 3410 +3680 0 3410 +3680 0 3409 +3680 0 3409 +3680 0 3408 +3680 0 3406 +3680 0 3404 +3680 0 3402 +3680 0 3399 +3680 0 3394 +3680 0 3388 +3680 0 3380 +3680 0 3369 +3680 0 3353 +3680 0 3332 +3680 0 3301 +3680 0 3257 +3680 0 3190 +3680 0 3082 +3680 0 2879 +3680 0 2251 +3680 0 0 +3680 0 0 +3680 3006 0 +3812 3528 0 +3944 3823 0 +4076 4047 0 +4095 4095 0 +3812 0 3543 +3812 0 3543 +3812 0 3543 +3812 0 3543 +3812 0 3543 +3812 0 3542 +3812 0 3542 +3812 0 3541 +3812 0 3540 +3812 0 3539 +3812 0 3538 +3812 0 3536 +3812 0 3534 +3812 0 3530 +3812 0 3526 +3812 0 3520 +3812 0 3511 +3812 0 3500 +3812 0 3485 +3812 0 3463 +3812 0 3433 +3812 0 3388 +3812 0 3322 +3812 0 3213 +3812 0 3011 +3812 0 2377 +3812 0 0 +3812 0 0 +3812 3138 0 +3944 3660 0 +4076 3955 0 +4095 4095 0 +3944 0 3675 +3944 0 3675 +3944 0 3675 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3673 +3944 0 3673 +3944 0 3672 +3944 0 3671 +3944 0 3670 +3944 0 3668 +3944 0 3665 +3944 0 3662 +3944 0 3658 +3944 0 3652 +3944 0 3643 +3944 0 3632 +3944 0 3617 +3944 0 3595 +3944 0 3564 +3944 0 3520 +3944 0 3453 +3944 0 3345 +3944 0 3142 +3944 0 2505 +3944 0 0 +3944 0 0 +3944 3270 0 +4076 3792 0 +4095 4087 0 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3805 +4076 0 3805 +4076 0 3805 +4076 0 3804 +4076 0 3803 +4076 0 3801 +4076 0 3800 +4076 0 3797 +4076 0 3794 +4076 0 3790 +4076 0 3783 +4076 0 3775 +4076 0 3764 +4076 0 3748 +4076 0 3727 +4076 0 3696 +4076 0 3652 +4076 0 3585 +4076 0 3476 +4076 0 3273 +4076 0 2632 +4076 0 0 +4076 0 0 +4076 3401 0 +4095 3924 0 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3937 +4095 0 3937 +4095 0 3936 +4095 0 3935 +4095 0 3934 +4095 0 3932 +4095 0 3929 +4095 0 3926 +4095 0 3921 +4095 0 3915 +4095 0 3907 +4095 0 3896 +4095 0 3880 +4095 0 3859 +4095 0 3828 +4095 0 3784 +4095 0 3717 +4095 0 3608 +4095 0 3405 +4095 0 2765 +4095 0 0 +4095 0 0 +4095 3534 0 +0 545 750 +0 613 750 +0 689 750 +0 750 723 +0 750 587 +0 750 304 +0 888 0 +0 1025 0 +397 1160 0 +717 1295 0 +951 1429 0 +1148 1563 0 +1322 1696 0 +1484 1828 0 +1636 1961 0 +1783 2094 0 +1926 2226 0 +2066 2358 0 +2204 2491 0 +2341 2623 0 +2476 2755 0 +2611 2887 0 +2744 3019 0 +2878 3152 0 +3011 3284 0 +3144 3416 0 +3276 3548 0 +3409 3680 0 +3541 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 467 750 +0 559 741 +0 644 741 +0 738 741 +0 741 616 +0 741 356 +0 882 0 +81 1020 0 +503 1157 0 +772 1292 0 +985 1427 0 +1170 1561 0 +1337 1695 0 +1494 1828 0 +1644 1961 0 +1789 2093 0 +1930 2226 0 +2069 2358 0 +2206 2491 0 +2342 2623 0 +2477 2755 0 +2612 2887 0 +2745 3019 0 +2878 3152 0 +3011 3283 0 +3144 3416 0 +3277 3548 0 +3409 3680 0 +3541 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 334 750 +0 453 741 +34 576 730 +34 683 730 +34 730 652 +34 730 418 +0 873 0 +323 1014 0 +614 1152 0 +837 1289 0 +1027 1424 0 +1198 1559 0 +1357 1693 0 +1508 1827 0 +1654 1960 0 +1796 2093 0 +1936 2225 0 +2073 2358 0 +2209 2490 0 +2345 2623 0 +2479 2755 0 +2613 2887 0 +2746 3019 0 +2879 3152 0 +3011 3283 0 +3144 3416 0 +3277 3548 0 +3409 3680 0 +3541 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 59 750 +0 258 741 +34 435 730 +280 598 714 +280 714 696 +280 714 490 +264 862 166 +523 1005 0 +730 1146 0 +911 1284 0 +1077 1421 0 +1233 1557 0 +1382 1691 0 +1526 1825 0 +1667 1959 0 +1806 2092 0 +1943 2225 0 +2078 2357 0 +2213 2490 0 +2347 2622 0 +2481 2755 0 +2614 2887 0 +2747 3019 0 +2880 3151 0 +3012 3283 0 +3145 3416 0 +3277 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 0 750 +0 0 741 +34 132 730 +280 409 714 +482 625 691 +482 691 570 +541 846 412 +699 994 298 +850 1137 80 +995 1278 0 +1137 1416 0 +1276 1553 0 +1413 1689 0 +1549 1823 0 +1684 1958 0 +1819 2091 0 +1952 2224 0 +2086 2357 0 +2219 2489 0 +2351 2622 0 +2484 2755 0 +2617 2887 0 +2749 3019 0 +2881 3151 0 +3013 3283 0 +3145 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +304 0 750 +356 0 741 +418 34 730 +490 280 714 +570 482 691 +660 660 660 +758 824 614 +862 978 544 +972 1126 430 +1087 1270 212 +1206 1410 0 +1328 1549 0 +1452 1685 0 +1579 1821 0 +1706 1956 0 +1835 2089 0 +1965 2223 0 +2095 2356 0 +2226 2489 0 +2356 2621 0 +2488 2754 0 +2619 2887 0 +2751 3019 0 +2883 3151 0 +3014 3283 0 +3146 3416 0 +3278 3548 0 +3410 3680 0 +3543 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +697 0 888 +719 0 882 +749 0 873 +784 166 862 +828 412 846 +824 614 758 +824 702 614 +978 960 544 +1079 1126 430 +1172 1270 212 +1273 1410 0 +1380 1549 0 +1492 1685 0 +1609 1821 0 +1730 1956 0 +1853 2089 0 +1978 2223 0 +2105 2356 0 +2233 2489 0 +2362 2621 0 +2492 2754 0 +2623 2887 0 +2753 3019 0 +2885 3151 0 +3016 3283 0 +3147 3416 0 +3279 3548 0 +3411 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +957 0 1025 +970 0 1020 +987 0 1014 +1005 0 1002 +994 298 947 +978 544 862 +978 544 673 +978 754 544 +1126 1049 430 +1266 1270 212 +1350 1410 0 +1442 1549 0 +1541 1685 0 +1648 1821 0 +1759 1956 0 +1875 2089 0 +1995 2223 0 +2118 2356 0 +2243 2489 0 +2370 2621 0 +2498 2754 0 +2627 2887 0 +2756 3019 0 +2887 3151 0 +3018 3283 0 +3149 3416 0 +3280 3548 0 +3412 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1160 0 1154 +1157 0 1139 +1152 0 1117 +1146 0 1086 +1137 80 1040 +1126 430 972 +1126 430 831 +1126 430 529 +1126 814 430 +1270 1145 212 +1410 1383 0 +1513 1549 0 +1599 1685 0 +1694 1821 0 +1796 1956 0 +1904 2089 0 +2018 2223 0 +2135 2356 0 +2256 2489 0 +2380 2621 0 +2505 2754 0 +2632 2887 0 +2761 3019 0 +2890 3151 0 +3020 3283 0 +3151 3416 0 +3281 3548 0 +3413 3680 0 +3544 3812 0 +3676 3944 0 +3808 4076 0 +3939 4095 0 +1295 0 1234 +1292 0 1221 +1289 0 1203 +1284 0 1177 +1278 0 1141 +1270 212 1087 +1270 212 982 +1270 212 787 +1270 212 214 +1270 884 212 +1410 1248 0 +1549 1499 0 +1667 1685 0 +1750 1821 0 +1841 1956 0 +1940 2089 0 +2046 2223 0 +2157 2356 0 +2273 2489 0 +2393 2621 0 +2515 2754 0 +2640 2887 0 +2766 3019 0 +2895 3151 0 +3023 3283 0 +3153 3416 0 +3283 3548 0 +3414 3680 0 +3545 3812 0 +3676 3944 0 +3808 4076 0 +3940 4095 0 +1429 0 1323 +1427 0 1313 +1424 0 1298 +1421 0 1277 +1416 0 1248 +1410 0 1206 +1410 0 1127 +1410 0 994 +1410 0 719 +1410 47 0 +1410 964 0 +1549 1358 0 +1685 1618 0 +1815 1821 0 +1895 1956 0 +1984 2089 0 +2081 2223 0 +2185 2356 0 +2294 2489 0 +2409 2621 0 +2528 2754 0 +2650 2887 0 +2774 3019 0 +2900 3151 0 +3027 3283 0 +3156 3416 0 +3286 3548 0 +3416 3680 0 +3547 3812 0 +3677 3944 0 +3809 4076 0 +3941 4095 0 +1563 0 1421 +1561 0 1412 +1559 0 1400 +1557 0 1384 +1553 0 1360 +1549 0 1328 +1549 0 1269 +1549 0 1176 +1549 0 1011 +1549 0 611 +1549 0 0 +1549 1053 0 +1685 1471 0 +1821 1740 0 +1956 1953 0 +2037 2089 0 +2124 2223 0 +2219 2356 0 +2322 2489 0 +2431 2621 0 +2545 2754 0 +2662 2887 0 +2784 3019 0 +2907 3151 0 +3033 3283 0 +3160 3416 0 +3289 3548 0 +3418 3680 0 +3548 3812 0 +3679 3944 0 +3810 4076 0 +3941 4095 0 +1696 0 1524 +1695 0 1517 +1693 0 1508 +1691 0 1495 +1689 0 1477 +1685 0 1452 +1685 0 1408 +1685 0 1341 +1685 0 1233 +1685 0 1031 +1685 0 406 +1685 0 0 +1685 1149 0 +1821 1590 0 +1956 1865 0 +2089 2080 0 +2176 2223 0 +2262 2356 0 +2356 2489 0 +2458 2621 0 +2566 2754 0 +2679 2887 0 +2796 3019 0 +2917 3151 0 +3040 3283 0 +3166 3416 0 +3293 3548 0 +3421 3680 0 +3551 3812 0 +3681 3944 0 +3811 4076 0 +3942 4095 0 +1828 0 1634 +1828 0 1629 +1827 0 1621 +1825 0 1611 +1823 0 1598 +1821 0 1579 +1821 0 1545 +1821 0 1497 +1821 0 1423 +1821 0 1301 +1821 0 1059 +1821 0 0 +1821 0 0 +1821 1253 0 +1956 1711 0 +2089 1991 0 +2223 2208 0 +2313 2356 0 +2398 2489 0 +2492 2621 0 +2593 2754 0 +2700 2887 0 +2813 3019 0 +2930 3151 0 +3050 3283 0 +3173 3416 0 +3299 3548 0 +3426 3680 0 +3554 3812 0 +3683 3944 0 +3813 4076 0 +3944 4095 0 +1961 0 1749 +1961 0 1745 +1960 0 1739 +1959 0 1731 +1958 0 1721 +1956 0 1706 +1956 0 1681 +1956 0 1646 +1956 0 1594 +1956 0 1514 +1956 0 1378 +1956 0 1091 +1956 0 0 +1956 0 0 +1956 1362 0 +2089 1835 0 +2223 2118 0 +2356 2338 0 +2449 2489 0 +2533 2621 0 +2627 2754 0 +2727 2887 0 +2834 3019 0 +2946 3151 0 +3062 3283 0 +3183 3416 0 +3306 3548 0 +3431 3680 0 +3558 3812 0 +3686 3944 0 +3815 4076 0 +3945 4095 0 +2094 0 1867 +2093 0 1864 +2093 0 1860 +2092 0 1854 +2091 0 1846 +2089 0 1835 +2089 0 1816 +2089 0 1790 +2089 0 1753 +2089 0 1698 +2089 0 1612 +2089 0 1463 +2089 0 1133 +2089 0 0 +2089 0 0 +2089 1476 0 +2223 1961 0 +2356 2247 0 +2489 2468 0 +2584 2621 0 +2668 2754 0 +2761 2887 0 +2860 3019 0 +2967 3151 0 +3079 3283 0 +3196 3416 0 +3316 3548 0 +3438 3680 0 +3564 3812 0 +3690 3944 0 +3818 4076 0 +3948 4095 0 +2226 0 1989 +2226 0 1987 +2225 0 1983 +2225 0 1979 +2224 0 1973 +2223 0 1965 +2223 0 1951 +2223 0 1931 +2223 0 1904 +2223 0 1865 +2223 0 1808 +2223 0 1717 +2223 0 1557 +2223 0 1181 +2223 0 0 +2223 0 0 +2223 1595 0 +2356 2088 0 +2489 2377 0 +2621 2598 0 +2718 2754 0 +2802 2887 0 +2894 3019 0 +2994 3151 0 +3100 3283 0 +3212 3416 0 +3328 3548 0 +3448 3680 0 +3571 3812 0 +3696 3944 0 +3822 4076 0 +3951 4095 0 +2358 0 2113 +2358 0 2111 +2358 0 2109 +2357 0 2105 +2357 0 2101 +2356 0 2095 +2356 0 2084 +2356 0 2070 +2356 0 2050 +2356 0 2022 +2356 0 1982 +2356 0 1922 +2356 0 1828 +2356 0 1659 +2356 0 1240 +2356 0 0 +2356 0 0 +2356 1716 0 +2489 2218 0 +2621 2507 0 +2754 2730 0 +2852 2887 0 +2935 3019 0 +3027 3151 0 +3127 3283 0 +3233 3416 0 +3344 3548 0 +3461 3680 0 +3581 3812 0 +3703 3944 0 +3828 4076 0 +3955 4095 0 +2491 0 2239 +2491 0 2238 +2490 0 2236 +2490 0 2234 +2489 0 2230 +2489 0 2226 +2489 0 2218 +2489 0 2207 +2489 0 2193 +2489 0 2172 +2489 0 2144 +2489 0 2103 +2489 0 2041 +2489 0 1943 +2489 0 1767 +2489 0 1310 +2489 0 0 +2489 0 0 +2489 1840 0 +2621 2346 0 +2754 2638 0 +2887 2861 0 +2985 3019 0 +3068 3151 0 +3160 3283 0 +3259 3416 0 +3365 3548 0 +3477 3680 0 +3593 3812 0 +3713 3944 0 +3835 4076 0 +3961 4095 0 +2623 0 2367 +2623 0 2366 +2623 0 2364 +2622 0 2362 +2622 0 2360 +2621 0 2356 +2621 0 2351 +2621 0 2343 +2621 0 2332 +2621 0 2317 +2621 0 2297 +2621 0 2268 +2621 0 2226 +2621 0 2163 +2621 0 2062 +2621 0 1880 +2621 0 1387 +2621 0 0 +2621 0 0 +2621 1966 0 +2754 2477 0 +2887 2769 0 +3019 2992 0 +3118 3151 0 +3201 3283 0 +3293 3416 0 +3392 3548 0 +3498 3680 0 +3609 3812 0 +3725 3944 0 +3845 4076 0 +3968 4095 0 +2755 0 2496 +2755 0 2495 +2755 0 2494 +2755 0 2492 +2755 0 2490 +2754 0 2488 +2754 0 2484 +2754 0 2478 +2754 0 2470 +2754 0 2459 +2754 0 2444 +2754 0 2423 +2754 0 2394 +2754 0 2351 +2754 0 2287 +2754 0 2185 +2754 0 1997 +2754 0 1476 +2754 0 0 +2754 0 0 +2754 2094 0 +2887 2607 0 +3019 2900 0 +3151 3124 0 +3251 3283 0 +3334 3416 0 +3425 3548 0 +3525 3680 0 +3630 3812 0 +3742 3944 0 +3858 4076 0 +3977 4095 0 +2887 0 2625 +2887 0 2625 +2887 0 2624 +2887 0 2623 +2887 0 2621 +2887 0 2619 +2887 0 2616 +2887 0 2612 +2887 0 2606 +2887 0 2598 +2887 0 2587 +2887 0 2572 +2887 0 2551 +2887 0 2521 +2887 0 2478 +2887 0 2413 +2887 0 2310 +2887 0 2118 +2887 0 1569 +2887 0 0 +2887 0 0 +2887 2223 0 +3019 2738 0 +3151 3032 0 +3283 3255 0 +3384 3416 0 +3466 3548 0 +3558 3680 0 +3657 3812 0 +3763 3944 0 +3874 4076 0 +3990 4095 0 +3019 0 2755 +3019 0 2755 +3019 0 2754 +3019 0 2753 +3019 0 2752 +3019 0 2751 +3019 0 2748 +3019 0 2745 +3019 0 2741 +3019 0 2735 +3019 0 2727 +3019 0 2716 +3019 0 2701 +3019 0 2679 +3019 0 2649 +3019 0 2606 +3019 0 2541 +3019 0 2435 +3019 0 2241 +3019 0 1670 +3019 0 0 +3019 0 0 +3019 2352 0 +3151 2870 0 +3283 3163 0 +3416 3387 0 +3516 3548 0 +3599 3680 0 +3690 3812 0 +3789 3944 0 +3895 4076 0 +4006 4095 0 +3152 0 2886 +3152 0 2886 +3152 0 2885 +3151 0 2885 +3151 0 2884 +3151 0 2883 +3151 0 2881 +3151 0 2879 +3151 0 2875 +3151 0 2871 +3151 0 2865 +3151 0 2857 +3151 0 2845 +3151 0 2830 +3151 0 2809 +3151 0 2779 +3151 0 2735 +3151 0 2670 +3151 0 2564 +3151 0 2367 +3151 0 1779 +3151 0 0 +3151 0 0 +3151 2482 0 +3283 3000 0 +3416 3295 0 +3548 3519 0 +3648 3680 0 +3731 3812 0 +3822 3944 0 +3921 4076 0 +4027 4095 0 +3284 0 3017 +3283 0 3017 +3283 0 3016 +3283 0 3016 +3283 0 3015 +3283 0 3014 +3283 0 3013 +3283 0 3011 +3283 0 3009 +3283 0 3005 +3283 0 3001 +3283 0 2995 +3283 0 2987 +3283 0 2976 +3283 0 2960 +3283 0 2939 +3283 0 2909 +3283 0 2865 +3283 0 2799 +3283 0 2692 +3283 0 2493 +3283 0 1890 +3283 0 0 +3283 0 0 +3283 2613 0 +3416 3133 0 +3548 3427 0 +3680 3651 0 +3781 3812 0 +3863 3944 0 +3954 4076 0 +4054 4095 0 +3416 0 3148 +3416 0 3148 +3416 0 3148 +3416 0 3147 +3416 0 3147 +3416 0 3146 +3416 0 3145 +3416 0 3144 +3416 0 3142 +3416 0 3140 +3416 0 3136 +3416 0 3132 +3416 0 3126 +3416 0 3118 +3416 0 3106 +3416 0 3091 +3416 0 3070 +3416 0 3039 +3416 0 2996 +3416 0 2929 +3416 0 2822 +3416 0 2621 +3416 0 2011 +3416 0 0 +3416 0 0 +3416 2744 0 +3548 3265 0 +3680 3559 0 +3812 3783 0 +3913 3944 0 +3995 4076 0 +4087 4095 0 +3548 0 3280 +3548 0 3280 +3548 0 3280 +3548 0 3279 +3548 0 3279 +3548 0 3278 +3548 0 3278 +3548 0 3277 +3548 0 3275 +3548 0 3273 +3548 0 3271 +3548 0 3268 +3548 0 3263 +3548 0 3257 +3548 0 3249 +3548 0 3238 +3548 0 3222 +3548 0 3201 +3548 0 3171 +3548 0 3126 +3548 0 3060 +3548 0 2952 +3548 0 2751 +3548 0 2130 +3548 0 0 +3548 0 0 +3548 2875 0 +3680 3396 0 +3812 3691 0 +3944 3915 0 +4045 4076 0 +4095 4095 0 +3680 0 3411 +3680 0 3411 +3680 0 3411 +3680 0 3411 +3680 0 3411 +3680 0 3410 +3680 0 3410 +3680 0 3409 +3680 0 3408 +3680 0 3407 +3680 0 3405 +3680 0 3402 +3680 0 3399 +3680 0 3395 +3680 0 3388 +3680 0 3380 +3680 0 3369 +3680 0 3354 +3680 0 3332 +3680 0 3302 +3680 0 3258 +3680 0 3191 +3680 0 3083 +3680 0 2881 +3680 0 2257 +3680 0 0 +3680 0 0 +3680 3006 0 +3812 3528 0 +3944 3823 0 +4076 4047 0 +4095 4095 0 +3812 0 3543 +3812 0 3543 +3812 0 3543 +3812 0 3543 +3812 0 3543 +3812 0 3543 +3812 0 3542 +3812 0 3541 +3812 0 3541 +3812 0 3540 +3812 0 3538 +3812 0 3537 +3812 0 3534 +3812 0 3531 +3812 0 3526 +3812 0 3520 +3812 0 3512 +3812 0 3501 +3812 0 3485 +3812 0 3464 +3812 0 3433 +3812 0 3389 +3812 0 3322 +3812 0 3214 +3812 0 3012 +3812 0 2382 +3812 0 0 +3812 0 0 +3812 3138 0 +3944 3660 0 +4076 3955 0 +4095 4095 0 +3944 0 3675 +3944 0 3675 +3944 0 3675 +3944 0 3675 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3674 +3944 0 3673 +3944 0 3672 +3944 0 3671 +3944 0 3670 +3944 0 3668 +3944 0 3666 +3944 0 3662 +3944 0 3658 +3944 0 3652 +3944 0 3644 +3944 0 3632 +3944 0 3617 +3944 0 3595 +3944 0 3565 +3944 0 3521 +3944 0 3454 +3944 0 3346 +3944 0 3143 +3944 0 2508 +3944 0 0 +3944 0 0 +3944 3270 0 +4076 3792 0 +4095 4087 0 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3806 +4076 0 3806 +4076 0 3806 +4076 0 3805 +4076 0 3805 +4076 0 3804 +4076 0 3803 +4076 0 3802 +4076 0 3800 +4076 0 3797 +4076 0 3794 +4076 0 3790 +4076 0 3784 +4076 0 3775 +4076 0 3764 +4076 0 3749 +4076 0 3727 +4076 0 3696 +4076 0 3652 +4076 0 3585 +4076 0 3477 +4076 0 3273 +4076 0 2635 +4076 0 0 +4076 0 0 +4076 3402 0 +4095 3925 0 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3937 +4095 0 3937 +4095 0 3936 +4095 0 3935 +4095 0 3934 +4095 0 3932 +4095 0 3929 +4095 0 3926 +4095 0 3922 +4095 0 3916 +4095 0 3908 +4095 0 3896 +4095 0 3881 +4095 0 3859 +4095 0 3829 +4095 0 3784 +4095 0 3717 +4095 0 3609 +4095 0 3405 +4095 0 2767 +4095 0 0 +4095 0 0 +4095 3534 0 +0 667 888 +0 719 888 +0 781 888 +0 852 888 +0 888 838 +0 888 697 +0 888 392 +0 1025 0 +0 1160 0 +431 1295 0 +803 1429 0 +1057 1563 0 +1262 1696 0 +1442 1828 0 +1607 1961 0 +1763 2094 0 +1911 2226 0 +2055 2358 0 +2196 2491 0 +2335 2623 0 +2472 2755 0 +2607 2887 0 +2742 3019 0 +2876 3152 0 +3009 3284 0 +3143 3416 0 +3276 3548 0 +3408 3680 0 +3541 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 608 888 +0 678 882 +0 745 882 +0 822 882 +0 882 855 +0 882 719 +0 882 436 +0 1020 0 +0 1157 0 +529 1292 0 +849 1427 0 +1084 1561 0 +1279 1695 0 +1454 1828 0 +1615 1961 0 +1768 2093 0 +1915 2226 0 +2058 2358 0 +2199 2491 0 +2336 2623 0 +2473 2755 0 +2608 2887 0 +2742 3019 0 +2877 3152 0 +3010 3283 0 +3143 3416 0 +3276 3548 0 +3408 3680 0 +3541 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 515 888 +0 599 882 +0 691 873 +0 776 873 +0 870 873 +0 873 749 +0 873 488 +0 1014 0 +214 1152 0 +635 1289 0 +904 1424 0 +1118 1559 0 +1302 1693 0 +1469 1827 0 +1626 1960 0 +1776 2093 0 +1921 2225 0 +2062 2358 0 +2202 2490 0 +2338 2623 0 +2475 2755 0 +2609 2887 0 +2743 3019 0 +2877 3152 0 +3010 3283 0 +3143 3416 0 +3276 3548 0 +3409 3680 0 +3541 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 350 888 +0 466 882 +0 585 873 +166 708 862 +166 815 862 +166 862 784 +166 862 550 +0 1005 0 +455 1146 0 +746 1284 0 +969 1421 0 +1159 1557 0 +1330 1691 0 +1489 1825 0 +1640 1959 0 +1786 2092 0 +1928 2225 0 +2068 2357 0 +2206 2490 0 +2341 2622 0 +2477 2755 0 +2611 2887 0 +2745 3019 0 +2878 3151 0 +3011 3283 0 +3144 3416 0 +3277 3548 0 +3409 3680 0 +3541 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 0 888 +0 190 882 +0 390 873 +166 567 862 +412 730 846 +412 846 828 +412 846 622 +397 994 298 +655 1137 80 +862 1278 0 +1043 1416 0 +1209 1553 0 +1365 1689 0 +1514 1823 0 +1658 1958 0 +1799 2091 0 +1938 2224 0 +2075 2357 0 +2211 2489 0 +2346 2622 0 +2480 2755 0 +2613 2887 0 +2746 3019 0 +2879 3151 0 +3012 3283 0 +3144 3416 0 +3277 3548 0 +3409 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 0 888 +0 0 882 +0 0 873 +166 264 862 +412 541 846 +614 758 824 +614 824 702 +673 978 544 +831 1126 430 +982 1270 212 +1127 1410 0 +1269 1549 0 +1408 1685 0 +1545 1821 0 +1681 1956 0 +1816 2089 0 +1951 2223 0 +2084 2356 0 +2218 2489 0 +2351 2621 0 +2484 2754 0 +2616 2887 0 +2748 3019 0 +2881 3151 0 +3013 3283 0 +3145 3416 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +392 0 888 +436 0 882 +488 0 873 +550 166 862 +622 412 846 +702 614 824 +792 792 792 +890 956 746 +994 1110 676 +1104 1258 562 +1219 1402 344 +1338 1543 0 +1460 1681 0 +1585 1817 0 +1711 1953 0 +1838 2087 0 +1967 2221 0 +2096 2355 0 +2227 2488 0 +2357 2621 0 +2489 2754 0 +2620 2886 0 +2751 3018 0 +2883 3151 0 +3015 3283 0 +3147 3415 0 +3279 3548 0 +3411 3680 0 +3543 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +811 0 1025 +829 0 1020 +852 0 1014 +881 0 1005 +917 298 994 +960 544 978 +956 746 890 +956 834 746 +1110 1092 676 +1211 1258 562 +1304 1402 344 +1405 1543 0 +1512 1681 0 +1625 1817 0 +1742 1953 0 +1862 2087 0 +1985 2221 0 +2110 2355 0 +2237 2488 0 +2365 2621 0 +2494 2754 0 +2624 2886 0 +2754 3018 0 +2885 3151 0 +3016 3283 0 +3148 3415 0 +3280 3548 0 +3411 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1079 0 1160 +1089 0 1157 +1102 0 1152 +1119 0 1146 +1137 80 1134 +1126 430 1079 +1110 676 994 +1110 676 805 +1110 886 676 +1258 1181 562 +1398 1402 344 +1482 1543 0 +1574 1681 0 +1673 1817 0 +1779 1953 0 +1891 2087 0 +2008 2221 0 +2127 2355 0 +2250 2488 0 +2375 2621 0 +2502 2754 0 +2630 2886 0 +2759 3018 0 +2889 3151 0 +3019 3283 0 +3150 3415 0 +3281 3548 0 +3412 3680 0 +3544 3812 0 +3676 3944 0 +3807 4076 0 +3939 4095 0 +1292 0 1295 +1292 0 1286 +1289 0 1271 +1284 0 1249 +1278 0 1218 +1270 212 1172 +1258 562 1104 +1258 562 963 +1258 562 661 +1258 946 562 +1402 1277 344 +1543 1516 0 +1645 1681 0 +1732 1817 0 +1826 1953 0 +1928 2087 0 +2036 2221 0 +2150 2355 0 +2267 2488 0 +2388 2621 0 +2512 2754 0 +2637 2886 0 +2764 3018 0 +2893 3151 0 +3022 3283 0 +3152 3415 0 +3283 3548 0 +3414 3680 0 +3545 3812 0 +3676 3944 0 +3808 4076 0 +3940 4095 0 +1429 0 1376 +1427 0 1366 +1424 0 1353 +1421 0 1335 +1416 0 1310 +1410 0 1273 +1402 344 1219 +1402 344 1114 +1402 344 919 +1402 344 345 +1402 1017 344 +1543 1381 0 +1681 1631 0 +1799 1817 0 +1882 1953 0 +1973 2087 0 +2072 2221 0 +2178 2355 0 +2289 2488 0 +2405 2621 0 +2525 2754 0 +2647 2886 0 +2772 3018 0 +2898 3151 0 +3026 3283 0 +3155 3415 0 +3285 3548 0 +3415 3680 0 +3546 3812 0 +3677 3944 0 +3808 4076 0 +3940 4095 0 +1563 0 1463 +1561 0 1456 +1559 0 1445 +1557 0 1430 +1553 0 1409 +1549 0 1380 +1543 0 1338 +1543 0 1259 +1543 0 1127 +1543 0 852 +1543 172 0 +1543 1096 0 +1681 1489 0 +1817 1750 0 +1947 1953 0 +2027 2087 0 +2116 2221 0 +2213 2355 0 +2317 2488 0 +2427 2621 0 +2541 2754 0 +2660 2886 0 +2782 3018 0 +2906 3151 0 +3032 3283 0 +3160 3415 0 +3288 3548 0 +3418 3680 0 +3548 3812 0 +3679 3944 0 +3810 4076 0 +3941 4095 0 +1696 0 1559 +1695 0 1552 +1693 0 1544 +1691 0 1532 +1689 0 1515 +1685 0 1492 +1681 0 1460 +1681 0 1401 +1681 0 1308 +1681 0 1142 +1681 0 742 +1681 0 0 +1681 1184 0 +1817 1604 0 +1953 1872 0 +2087 2085 0 +2169 2221 0 +2256 2355 0 +2352 2488 0 +2454 2621 0 +2563 2754 0 +2677 2886 0 +2794 3018 0 +2916 3151 0 +3039 3283 0 +3165 3415 0 +3292 3548 0 +3421 3680 0 +3550 3812 0 +3680 3944 0 +3811 4076 0 +3942 4095 0 +1828 0 1661 +1828 0 1656 +1827 0 1650 +1825 0 1640 +1823 0 1627 +1821 0 1609 +1817 0 1585 +1817 0 1540 +1817 0 1474 +1817 0 1366 +1817 0 1164 +1817 0 536 +1817 0 0 +1817 1281 0 +1953 1722 0 +2087 1996 0 +2221 2212 0 +2308 2355 0 +2394 2488 0 +2488 2621 0 +2590 2754 0 +2698 2886 0 +2811 3018 0 +2928 3151 0 +3049 3283 0 +3173 3415 0 +3298 3548 0 +3425 3680 0 +3553 3812 0 +3683 3944 0 +3812 4076 0 +3943 4095 0 +1961 0 1770 +1961 0 1766 +1960 0 1761 +1959 0 1754 +1958 0 1743 +1956 0 1730 +1953 0 1711 +1953 0 1678 +1953 0 1629 +1953 0 1555 +1953 0 1433 +1953 0 1190 +1953 0 0 +1953 0 0 +1953 1385 0 +2087 1843 0 +2221 2123 0 +2355 2340 0 +2445 2488 0 +2530 2621 0 +2624 2754 0 +2725 2886 0 +2832 3018 0 +2945 3151 0 +3062 3283 0 +3182 3415 0 +3305 3548 0 +3431 3680 0 +3558 3812 0 +3686 3944 0 +3815 4076 0 +3945 4095 0 +2094 0 1884 +2093 0 1881 +2093 0 1877 +2092 0 1871 +2091 0 1863 +2089 0 1853 +2087 0 1838 +2087 0 1813 +2087 0 1778 +2087 0 1726 +2087 0 1646 +2087 0 1509 +2087 0 1224 +2087 0 0 +2087 0 0 +2087 1494 0 +2221 1967 0 +2355 2251 0 +2488 2470 0 +2581 2621 0 +2666 2754 0 +2759 2886 0 +2859 3018 0 +2966 3151 0 +3078 3283 0 +3195 3415 0 +3315 3548 0 +3438 3680 0 +3563 3812 0 +3690 3944 0 +3818 4076 0 +3947 4095 0 +2226 0 2002 +2226 0 1999 +2225 0 1996 +2225 0 1992 +2224 0 1986 +2223 0 1978 +2221 0 1967 +2221 0 1948 +2221 0 1922 +2221 0 1885 +2221 0 1830 +2221 0 1744 +2221 0 1596 +2221 0 1264 +2221 0 0 +2221 0 0 +2221 1608 0 +2355 2093 0 +2488 2379 0 +2621 2600 0 +2716 2754 0 +2800 2886 0 +2892 3018 0 +2993 3151 0 +3099 3283 0 +3211 3415 0 +3328 3548 0 +3448 3680 0 +3571 3812 0 +3696 3944 0 +3822 4076 0 +3951 4095 0 +2358 0 2123 +2358 0 2121 +2358 0 2119 +2357 0 2115 +2357 0 2111 +2356 0 2105 +2355 0 2096 +2355 0 2083 +2355 0 2063 +2355 0 2037 +2355 0 1998 +2355 0 1940 +2355 0 1849 +2355 0 1689 +2355 0 1313 +2355 0 0 +2355 0 0 +2355 1727 0 +2488 2221 0 +2621 2509 0 +2754 2731 0 +2850 2886 0 +2934 3018 0 +3026 3151 0 +3126 3283 0 +3232 3415 0 +3344 3548 0 +3460 3680 0 +3580 3812 0 +3703 3944 0 +3828 4076 0 +3955 4095 0 +2491 0 2247 +2491 0 2245 +2490 0 2243 +2490 0 2241 +2489 0 2238 +2489 0 2233 +2488 0 2227 +2488 0 2217 +2488 0 2202 +2488 0 2183 +2488 0 2155 +2488 0 2115 +2488 0 2055 +2488 0 1960 +2488 0 1791 +2488 0 1373 +2488 0 0 +2488 0 0 +2488 1848 0 +2621 2349 0 +2754 2640 0 +2886 2862 0 +2984 3018 0 +3067 3151 0 +3159 3283 0 +3259 3415 0 +3365 3548 0 +3477 3680 0 +3593 3812 0 +3713 3944 0 +3835 4076 0 +3961 4095 0 +2623 0 2372 +2623 0 2372 +2623 0 2370 +2622 0 2368 +2622 0 2366 +2621 0 2362 +2621 0 2357 +2621 0 2350 +2621 0 2339 +2621 0 2325 +2621 0 2304 +2621 0 2276 +2621 0 2235 +2621 0 2173 +2621 0 2075 +2621 0 1899 +2621 0 1441 +2621 0 0 +2621 0 0 +2621 1972 0 +2754 2479 0 +2886 2770 0 +3018 2992 0 +3117 3151 0 +3200 3283 0 +3292 3415 0 +3392 3548 0 +3497 3680 0 +3609 3812 0 +3725 3944 0 +3845 4076 0 +3968 4095 0 +2755 0 2500 +2755 0 2499 +2755 0 2498 +2755 0 2497 +2755 0 2495 +2754 0 2492 +2754 0 2489 +2754 0 2483 +2754 0 2475 +2754 0 2464 +2754 0 2450 +2754 0 2429 +2754 0 2400 +2754 0 2358 +2754 0 2295 +2754 0 2195 +2754 0 2012 +2754 0 1521 +2754 0 0 +2754 0 0 +2754 2099 0 +2886 2609 0 +3018 2901 0 +3151 3124 0 +3250 3283 0 +3333 3415 0 +3425 3548 0 +3524 3680 0 +3630 3812 0 +3741 3944 0 +3858 4076 0 +3977 4095 0 +2887 0 2628 +2887 0 2628 +2887 0 2627 +2887 0 2626 +2887 0 2625 +2887 0 2623 +2886 0 2620 +2886 0 2616 +2886 0 2610 +2886 0 2602 +2886 0 2591 +2886 0 2576 +2886 0 2555 +2886 0 2526 +2886 0 2483 +2886 0 2419 +2886 0 2317 +2886 0 2129 +2886 0 1606 +2886 0 0 +2886 0 0 +2886 2226 0 +3018 2739 0 +3151 3032 0 +3283 3256 0 +3383 3415 0 +3466 3548 0 +3557 3680 0 +3657 3812 0 +3762 3944 0 +3874 4076 0 +3990 4095 0 +3019 0 2758 +3019 0 2757 +3019 0 2757 +3019 0 2756 +3019 0 2755 +3019 0 2753 +3018 0 2751 +3018 0 2748 +3018 0 2744 +3018 0 2738 +3018 0 2730 +3018 0 2719 +3018 0 2703 +3018 0 2683 +3018 0 2653 +3018 0 2610 +3018 0 2545 +3018 0 2441 +3018 0 2249 +3018 0 1700 +3018 0 0 +3018 0 0 +3018 2354 0 +3151 2871 0 +3283 3164 0 +3415 3387 0 +3515 3548 0 +3598 3680 0 +3690 3812 0 +3789 3944 0 +3895 4076 0 +4006 4095 0 +3152 0 2888 +3152 0 2888 +3152 0 2887 +3151 0 2886 +3151 0 2886 +3151 0 2885 +3151 0 2883 +3151 0 2881 +3151 0 2877 +3151 0 2873 +3151 0 2867 +3151 0 2859 +3151 0 2848 +3151 0 2833 +3151 0 2812 +3151 0 2782 +3151 0 2738 +3151 0 2673 +3151 0 2568 +3151 0 2373 +3151 0 1802 +3151 0 0 +3151 0 0 +3151 2484 0 +3283 3001 0 +3415 3295 0 +3548 3519 0 +3648 3680 0 +3731 3812 0 +3822 3944 0 +3921 4076 0 +4027 4095 0 +3284 0 3018 +3283 0 3018 +3283 0 3018 +3283 0 3017 +3283 0 3016 +3283 0 3016 +3283 0 3015 +3283 0 3013 +3283 0 3010 +3283 0 3007 +3283 0 3003 +3283 0 2997 +3283 0 2988 +3283 0 2977 +3283 0 2962 +3283 0 2941 +3283 0 2911 +3283 0 2867 +3283 0 2801 +3283 0 2695 +3283 0 2498 +3283 0 1908 +3283 0 0 +3283 0 0 +3283 2614 0 +3415 3133 0 +3548 3427 0 +3680 3651 0 +3781 3812 0 +3863 3944 0 +3954 4076 0 +4054 4095 0 +3416 0 3149 +3416 0 3149 +3416 0 3149 +3416 0 3148 +3416 0 3148 +3416 0 3147 +3415 0 3147 +3415 0 3145 +3415 0 3144 +3415 0 3141 +3415 0 3138 +3415 0 3133 +3415 0 3127 +3415 0 3119 +3415 0 3108 +3415 0 3093 +3415 0 3071 +3415 0 3041 +3415 0 2997 +3415 0 2931 +3415 0 2824 +3415 0 2625 +3415 0 2026 +3415 0 0 +3415 0 0 +3415 2745 0 +3548 3265 0 +3680 3559 0 +3812 3783 0 +3913 3944 0 +3995 4076 0 +4087 4095 0 +3548 0 3280 +3548 0 3280 +3548 0 3280 +3548 0 3280 +3548 0 3280 +3548 0 3279 +3548 0 3279 +3548 0 3278 +3548 0 3276 +3548 0 3274 +3548 0 3272 +3548 0 3269 +3548 0 3264 +3548 0 3258 +3548 0 3250 +3548 0 3239 +3548 0 3223 +3548 0 3202 +3548 0 3172 +3548 0 3128 +3548 0 3061 +3548 0 2954 +3548 0 2754 +3548 0 2141 +3548 0 0 +3548 0 0 +3548 2876 0 +3680 3396 0 +3812 3691 0 +3944 3915 0 +4045 4076 0 +4095 4095 0 +3680 0 3412 +3680 0 3412 +3680 0 3412 +3680 0 3412 +3680 0 3411 +3680 0 3411 +3680 0 3411 +3680 0 3410 +3680 0 3409 +3680 0 3407 +3680 0 3406 +3680 0 3403 +3680 0 3400 +3680 0 3395 +3680 0 3389 +3680 0 3381 +3680 0 3370 +3680 0 3354 +3680 0 3333 +3680 0 3303 +3680 0 3258 +3680 0 3192 +3680 0 3084 +3680 0 2883 +3680 0 2266 +3680 0 0 +3680 0 0 +3680 3007 0 +3812 3528 0 +3944 3823 0 +4076 4047 0 +4095 4095 0 +3812 0 3544 +3812 0 3544 +3812 0 3543 +3812 0 3543 +3812 0 3543 +3812 0 3543 +3812 0 3543 +3812 0 3542 +3812 0 3541 +3812 0 3540 +3812 0 3539 +3812 0 3537 +3812 0 3534 +3812 0 3531 +3812 0 3527 +3812 0 3521 +3812 0 3513 +3812 0 3501 +3812 0 3486 +3812 0 3464 +3812 0 3434 +3812 0 3390 +3812 0 3323 +3812 0 3215 +3812 0 3014 +3812 0 2389 +3812 0 0 +3812 0 0 +3812 3139 0 +3944 3660 0 +4076 3955 0 +4095 4095 0 +3944 0 3675 +3944 0 3675 +3944 0 3675 +3944 0 3675 +3944 0 3675 +3944 0 3675 +3944 0 3674 +3944 0 3674 +3944 0 3673 +3944 0 3673 +3944 0 3672 +3944 0 3670 +3944 0 3668 +3944 0 3666 +3944 0 3663 +3944 0 3658 +3944 0 3652 +3944 0 3644 +3944 0 3633 +3944 0 3617 +3944 0 3596 +3944 0 3565 +3944 0 3521 +3944 0 3454 +3944 0 3346 +3944 0 3144 +3944 0 2513 +3944 0 0 +3944 0 0 +3944 3270 0 +4076 3792 0 +4095 4087 0 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3806 +4076 0 3806 +4076 0 3805 +4076 0 3805 +4076 0 3804 +4076 0 3803 +4076 0 3802 +4076 0 3800 +4076 0 3798 +4076 0 3794 +4076 0 3790 +4076 0 3784 +4076 0 3776 +4076 0 3764 +4076 0 3749 +4076 0 3727 +4076 0 3697 +4076 0 3653 +4076 0 3586 +4076 0 3477 +4076 0 3274 +4076 0 2639 +4076 0 0 +4076 0 0 +4076 3402 0 +4095 3925 0 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3938 +4095 0 3938 +4095 0 3938 +4095 0 3937 +4095 0 3937 +4095 0 3935 +4095 0 3934 +4095 0 3932 +4095 0 3930 +4095 0 3927 +4095 0 3922 +4095 0 3916 +4095 0 3908 +4095 0 3896 +4095 0 3881 +4095 0 3859 +4095 0 3829 +4095 0 3784 +4095 0 3718 +4095 0 3609 +4095 0 3406 +4095 0 2770 +4095 0 0 +4095 0 0 +4095 3534 0 +0 792 1025 +0 832 1025 +0 881 1025 +0 939 1025 +0 1006 1025 +0 1025 957 +0 1025 811 +0 1025 488 +0 1160 0 +0 1295 0 +471 1429 0 +897 1563 0 +1167 1696 0 +1381 1828 0 +1565 1961 0 +1733 2094 0 +1890 2226 0 +2040 2358 0 +2185 2491 0 +2327 2623 0 +2466 2755 0 +2603 2887 0 +2738 3019 0 +2873 3152 0 +3008 3284 0 +3141 3416 0 +3275 3548 0 +3408 3680 0 +3540 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 748 1025 +0 800 1020 +0 852 1020 +0 914 1020 +0 985 1020 +0 1020 970 +0 1020 829 +0 1020 524 +0 1157 0 +0 1292 0 +562 1427 0 +935 1561 0 +1188 1695 0 +1394 1828 0 +1574 1961 0 +1739 2093 0 +1894 2226 0 +2043 2358 0 +2187 2491 0 +2328 2623 0 +2467 2755 0 +2604 2887 0 +2739 3019 0 +2874 3152 0 +3008 3283 0 +3141 3416 0 +3275 3548 0 +3408 3680 0 +3540 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 681 1025 +0 740 1020 +0 810 1014 +0 877 1014 +0 954 1014 +0 1014 987 +0 1014 852 +0 1014 568 +0 1152 0 +9 1289 0 +662 1424 0 +981 1559 0 +1216 1693 0 +1412 1827 0 +1586 1960 0 +1748 2093 0 +1900 2225 0 +2047 2358 0 +2190 2490 0 +2331 2623 0 +2469 2755 0 +2605 2887 0 +2740 3019 0 +2875 3152 0 +3008 3283 0 +3142 3416 0 +3275 3548 0 +3408 3680 0 +3541 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 573 1025 +0 647 1020 +0 731 1014 +0 823 1005 +0 908 1005 +0 1002 1005 +0 1005 881 +0 1005 620 +0 1146 0 +346 1284 0 +767 1421 0 +1037 1557 0 +1249 1691 0 +1434 1825 0 +1601 1959 0 +1758 2092 0 +1908 2225 0 +2053 2357 0 +2195 2490 0 +2334 2622 0 +2471 2755 0 +2607 2887 0 +2741 3019 0 +2876 3151 0 +3009 3283 0 +3142 3416 0 +3275 3548 0 +3408 3680 0 +3541 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 371 1025 +0 482 1020 +0 598 1014 +0 717 1005 +298 840 994 +298 947 994 +298 994 917 +298 994 682 +81 1137 80 +587 1278 0 +878 1416 0 +1102 1553 0 +1291 1689 0 +1462 1823 0 +1621 1958 0 +1772 2091 0 +1918 2224 0 +2060 2357 0 +2200 2489 0 +2337 2622 0 +2474 2755 0 +2609 2887 0 +2743 3019 0 +2877 3151 0 +3010 3283 0 +3143 3416 0 +3276 3548 0 +3409 3680 0 +3541 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 0 1025 +0 81 1020 +0 323 1014 +0 523 1005 +298 699 994 +544 862 978 +544 978 960 +544 978 754 +529 1126 430 +787 1270 212 +994 1410 0 +1176 1549 0 +1341 1685 0 +1497 1821 0 +1646 1956 0 +1790 2089 0 +1931 2223 0 +2070 2356 0 +2207 2489 0 +2343 2621 0 +2478 2754 0 +2612 2887 0 +2745 3019 0 +2879 3151 0 +3011 3283 0 +3144 3416 0 +3277 3548 0 +3409 3680 0 +3541 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +0 0 1025 +0 0 1020 +0 0 1014 +0 0 1005 +298 397 994 +544 673 978 +746 890 956 +746 956 834 +805 1110 676 +963 1258 562 +1114 1402 344 +1259 1543 0 +1401 1681 0 +1540 1817 0 +1678 1953 0 +1813 2087 0 +1948 2221 0 +2083 2355 0 +2217 2488 0 +2350 2621 0 +2483 2754 0 +2616 2886 0 +2748 3018 0 +2881 3151 0 +3013 3283 0 +3145 3415 0 +3278 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +488 0 1025 +524 0 1020 +568 0 1014 +620 0 1005 +682 298 994 +754 544 978 +834 746 956 +924 924 924 +1021 1088 878 +1126 1242 809 +1236 1390 695 +1351 1534 476 +1470 1674 0 +1592 1813 0 +1716 1950 0 +1843 2085 0 +1970 2220 0 +2099 2353 0 +2229 2487 0 +2359 2620 0 +2490 2753 0 +2621 2886 0 +2752 3018 0 +2883 3151 0 +3015 3283 0 +3147 3415 0 +3279 3548 0 +3411 3680 0 +3543 3812 0 +3674 3944 0 +3806 4076 0 +3939 4095 0 +929 0 1160 +943 0 1157 +960 0 1152 +983 0 1146 +1013 80 1137 +1049 430 1126 +1092 676 1110 +1088 878 1021 +1088 967 878 +1242 1225 809 +1343 1390 695 +1437 1534 476 +1537 1674 0 +1644 1813 0 +1757 1950 0 +1873 2085 0 +1994 2220 0 +2117 2353 0 +2242 2487 0 +2369 2620 0 +2497 2753 0 +2626 2886 0 +2756 3018 0 +2887 3151 0 +3017 3283 0 +3149 3415 0 +3280 3548 0 +3412 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1204 0 1295 +1211 0 1292 +1221 0 1289 +1235 0 1284 +1251 0 1278 +1270 212 1266 +1258 562 1211 +1242 809 1126 +1242 809 938 +1242 1018 809 +1390 1313 695 +1531 1534 476 +1614 1674 0 +1706 1813 0 +1806 1950 0 +1912 2085 0 +2023 2220 0 +2140 2353 0 +2260 2487 0 +2382 2620 0 +2507 2753 0 +2634 2886 0 +2762 3018 0 +2891 3151 0 +3021 3283 0 +3151 3415 0 +3282 3548 0 +3413 3680 0 +3544 3812 0 +3676 3944 0 +3808 4076 0 +3940 4095 0 +1419 0 1429 +1424 0 1427 +1424 0 1418 +1421 0 1403 +1416 0 1381 +1410 0 1350 +1402 344 1304 +1390 695 1236 +1390 695 1095 +1390 695 793 +1390 1078 695 +1534 1409 476 +1674 1648 0 +1777 1813 0 +1864 1950 0 +1958 2085 0 +2060 2220 0 +2168 2353 0 +2282 2487 0 +2399 2620 0 +2521 2753 0 +2644 2886 0 +2769 3018 0 +2896 3151 0 +3025 3283 0 +3154 3415 0 +3284 3548 0 +3415 3680 0 +3546 3812 0 +3677 3944 0 +3808 4076 0 +3940 4095 0 +1563 0 1515 +1561 0 1508 +1559 0 1499 +1557 0 1486 +1553 0 1467 +1549 0 1442 +1543 0 1405 +1534 476 1351 +1534 476 1246 +1534 476 1051 +1534 476 479 +1534 1149 476 +1674 1512 0 +1813 1763 0 +1931 1950 0 +2014 2085 0 +2105 2220 0 +2204 2353 0 +2310 2487 0 +2421 2620 0 +2537 2753 0 +2657 2886 0 +2779 3018 0 +2904 3151 0 +3031 3283 0 +3158 3415 0 +3287 3548 0 +3417 3680 0 +3548 3812 0 +3678 3944 0 +3809 4076 0 +3941 4095 0 +1696 0 1601 +1695 0 1596 +1693 0 1588 +1691 0 1577 +1689 0 1562 +1685 0 1541 +1681 0 1512 +1674 0 1470 +1674 0 1391 +1674 0 1258 +1674 0 983 +1674 313 0 +1674 1228 0 +1813 1622 0 +1950 1882 0 +2079 2085 0 +2159 2220 0 +2248 2353 0 +2345 2487 0 +2449 2620 0 +2559 2753 0 +2673 2886 0 +2792 3018 0 +2914 3151 0 +3038 3283 0 +3164 3415 0 +3292 3548 0 +3420 3680 0 +3550 3812 0 +3680 3944 0 +3810 4076 0 +3942 4095 0 +1828 0 1696 +1828 0 1691 +1827 0 1684 +1825 0 1676 +1823 0 1664 +1821 0 1648 +1817 0 1625 +1813 0 1592 +1813 0 1533 +1813 0 1440 +1813 0 1275 +1813 0 874 +1813 0 0 +1813 1317 0 +1950 1736 0 +2085 2004 0 +2220 2217 0 +2301 2353 0 +2388 2487 0 +2483 2620 0 +2586 2753 0 +2695 2886 0 +2808 3018 0 +2927 3151 0 +3047 3283 0 +3171 3415 0 +3297 3548 0 +3425 3680 0 +3553 3812 0 +3682 3944 0 +3812 4076 0 +3943 4095 0 +1961 0 1797 +1961 0 1793 +1960 0 1789 +1959 0 1781 +1958 0 1772 +1956 0 1759 +1953 0 1742 +1950 0 1716 +1950 0 1672 +1950 0 1606 +1950 0 1498 +1950 0 1295 +1950 0 670 +1950 0 0 +1950 1413 0 +2085 1854 0 +2220 2128 0 +2353 2344 0 +2440 2487 0 +2526 2620 0 +2620 2753 0 +2722 2886 0 +2830 3018 0 +2943 3151 0 +3060 3283 0 +3181 3415 0 +3305 3548 0 +3430 3680 0 +3557 3812 0 +3686 3944 0 +3815 4076 0 +3945 4095 0 +2094 0 1905 +2093 0 1902 +2093 0 1898 +2092 0 1893 +2091 0 1885 +2089 0 1875 +2087 0 1862 +2085 0 1843 +2085 0 1810 +2085 0 1761 +2085 0 1687 +2085 0 1565 +2085 0 1322 +2085 0 10 +2085 0 0 +2085 1517 0 +2220 1975 0 +2353 2255 0 +2487 2473 0 +2577 2620 0 +2662 2753 0 +2756 2886 0 +2857 3018 0 +2964 3151 0 +3077 3283 0 +3194 3415 0 +3314 3548 0 +3437 3680 0 +3563 3812 0 +3690 3944 0 +3818 4076 0 +3947 4095 0 +2226 0 2018 +2226 0 2016 +2225 0 2013 +2225 0 2009 +2224 0 2003 +2223 0 1995 +2221 0 1985 +2220 0 1970 +2220 0 1946 +2220 0 1910 +2220 0 1858 +2220 0 1778 +2220 0 1642 +2220 0 1355 +2220 0 0 +2220 0 0 +2220 1626 0 +2353 2099 0 +2487 2383 0 +2620 2602 0 +2713 2753 0 +2798 2886 0 +2890 3018 0 +2991 3151 0 +3098 3283 0 +3210 3415 0 +3327 3548 0 +3447 3680 0 +3570 3812 0 +3695 3944 0 +3822 4076 0 +3950 4095 0 +2358 0 2136 +2358 0 2134 +2358 0 2132 +2357 0 2128 +2357 0 2124 +2356 0 2118 +2355 0 2110 +2353 0 2099 +2353 0 2081 +2353 0 2054 +2353 0 2017 +2353 0 1962 +2353 0 1876 +2353 0 1727 +2353 0 1396 +2353 0 0 +2353 0 0 +2353 1740 0 +2487 2226 0 +2620 2511 0 +2753 2732 0 +2848 2886 0 +2932 3018 0 +3025 3151 0 +3125 3283 0 +3231 3415 0 +3343 3548 0 +3460 3680 0 +3580 3812 0 +3703 3944 0 +3828 4076 0 +3955 4095 0 +2491 0 2256 +2491 0 2255 +2490 0 2253 +2490 0 2251 +2489 0 2247 +2489 0 2243 +2488 0 2237 +2487 0 2229 +2487 0 2215 +2487 0 2196 +2487 0 2169 +2487 0 2130 +2487 0 2072 +2487 0 1981 +2487 0 1822 +2487 0 1446 +2487 0 0 +2487 0 0 +2487 1859 0 +2620 2352 0 +2753 2641 0 +2886 2863 0 +2982 3018 0 +3066 3151 0 +3158 3283 0 +3258 3415 0 +3364 3548 0 +3476 3680 0 +3593 3812 0 +3712 3944 0 +3835 4076 0 +3960 4095 0 +2623 0 2380 +2623 0 2379 +2623 0 2378 +2622 0 2375 +2622 0 2373 +2621 0 2370 +2621 0 2365 +2620 0 2359 +2620 0 2348 +2620 0 2334 +2620 0 2314 +2620 0 2287 +2620 0 2247 +2620 0 2187 +2620 0 2092 +2620 0 1923 +2620 0 1505 +2620 0 0 +2620 0 0 +2620 1981 0 +2753 2482 0 +2886 2772 0 +3018 2993 0 +3116 3151 0 +3199 3283 0 +3291 3415 0 +3391 3548 0 +3497 3680 0 +3609 3812 0 +3725 3944 0 +3845 4076 0 +3968 4095 0 +2755 0 2505 +2755 0 2505 +2755 0 2504 +2755 0 2502 +2755 0 2501 +2754 0 2498 +2754 0 2494 +2753 0 2490 +2753 0 2482 +2753 0 2471 +2753 0 2457 +2753 0 2437 +2753 0 2408 +2753 0 2367 +2753 0 2305 +2753 0 2208 +2753 0 2031 +2753 0 1575 +2753 0 0 +2753 0 0 +2753 2105 0 +2886 2611 0 +3018 2902 0 +3151 3125 0 +3249 3283 0 +3333 3415 0 +3424 3548 0 +3524 3680 0 +3630 3812 0 +3741 3944 0 +3857 4076 0 +3977 4095 0 +2887 0 2633 +2887 0 2632 +2887 0 2631 +2887 0 2630 +2887 0 2629 +2887 0 2627 +2886 0 2624 +2886 0 2621 +2886 0 2615 +2886 0 2607 +2886 0 2596 +2886 0 2581 +2886 0 2561 +2886 0 2532 +2886 0 2490 +2886 0 2427 +2886 0 2327 +2886 0 2144 +2886 0 1651 +2886 0 0 +2886 0 0 +2886 2231 0 +3018 2740 0 +3151 3033 0 +3283 3256 0 +3382 3415 0 +3466 3548 0 +3557 3680 0 +3656 3812 0 +3762 3944 0 +3873 4076 0 +3990 4095 0 +3019 0 2761 +3019 0 2760 +3019 0 2760 +3019 0 2759 +3019 0 2758 +3019 0 2756 +3018 0 2754 +3018 0 2752 +3018 0 2747 +3018 0 2742 +3018 0 2734 +3018 0 2723 +3018 0 2708 +3018 0 2687 +3018 0 2658 +3018 0 2615 +3018 0 2551 +3018 0 2449 +3018 0 2261 +3018 0 1737 +3018 0 0 +3018 0 0 +3018 2358 0 +3151 2872 0 +3283 3164 0 +3415 3388 0 +3515 3548 0 +3598 3680 0 +3690 3812 0 +3789 3944 0 +3895 4076 0 +4006 4095 0 +3152 0 2890 +3152 0 2890 +3152 0 2890 +3151 0 2889 +3151 0 2888 +3151 0 2887 +3151 0 2885 +3151 0 2883 +3151 0 2880 +3151 0 2876 +3151 0 2870 +3151 0 2862 +3151 0 2851 +3151 0 2836 +3151 0 2815 +3151 0 2785 +3151 0 2742 +3151 0 2678 +3151 0 2573 +3151 0 2382 +3151 0 1832 +3151 0 0 +3151 0 0 +3151 2487 0 +3283 3002 0 +3415 3296 0 +3548 3520 0 +3648 3680 0 +3730 3812 0 +3822 3944 0 +3921 4076 0 +4027 4095 0 +3284 0 3020 +3283 0 3020 +3283 0 3019 +3283 0 3019 +3283 0 3018 +3283 0 3018 +3283 0 3016 +3283 0 3015 +3283 0 3013 +3283 0 3009 +3283 0 3005 +3283 0 2999 +3283 0 2991 +3283 0 2980 +3283 0 2965 +3283 0 2943 +3283 0 2914 +3283 0 2870 +3283 0 2805 +3283 0 2700 +3283 0 2504 +3283 0 1932 +3283 0 0 +3283 0 0 +3283 2616 0 +3415 3134 0 +3548 3428 0 +3680 3652 0 +3780 3812 0 +3863 3944 0 +3954 4076 0 +4053 4095 0 +3416 0 3151 +3416 0 3151 +3416 0 3150 +3416 0 3150 +3416 0 3149 +3416 0 3149 +3415 0 3148 +3415 0 3147 +3415 0 3145 +3415 0 3143 +3415 0 3139 +3415 0 3135 +3415 0 3129 +3415 0 3121 +3415 0 3110 +3415 0 3094 +3415 0 3073 +3415 0 3043 +3415 0 2999 +3415 0 2934 +3415 0 2827 +3415 0 2630 +3415 0 2044 +3415 0 0 +3415 0 0 +3415 2746 0 +3548 3265 0 +3680 3559 0 +3812 3784 0 +3912 3944 0 +3995 4076 0 +4087 4095 0 +3548 0 3281 +3548 0 3281 +3548 0 3281 +3548 0 3281 +3548 0 3280 +3548 0 3280 +3548 0 3280 +3548 0 3279 +3548 0 3277 +3548 0 3276 +3548 0 3273 +3548 0 3270 +3548 0 3265 +3548 0 3259 +3548 0 3251 +3548 0 3240 +3548 0 3225 +3548 0 3203 +3548 0 3173 +3548 0 3129 +3548 0 3063 +3548 0 2956 +3548 0 2758 +3548 0 2156 +3548 0 0 +3548 0 0 +3548 2877 0 +3680 3397 0 +3812 3691 0 +3944 3915 0 +4045 4076 0 +4095 4095 0 +3680 0 3413 +3680 0 3413 +3680 0 3413 +3680 0 3412 +3680 0 3412 +3680 0 3412 +3680 0 3411 +3680 0 3411 +3680 0 3410 +3680 0 3408 +3680 0 3406 +3680 0 3404 +3680 0 3401 +3680 0 3396 +3680 0 3390 +3680 0 3382 +3680 0 3371 +3680 0 3356 +3680 0 3334 +3680 0 3304 +3680 0 3260 +3680 0 3193 +3680 0 3086 +3680 0 2886 +3680 0 2277 +3680 0 0 +3680 0 0 +3680 3008 0 +3812 3529 0 +3944 3823 0 +4076 4047 0 +4095 4095 0 +3812 0 3544 +3812 0 3544 +3812 0 3544 +3812 0 3544 +3812 0 3544 +3812 0 3543 +3812 0 3543 +3812 0 3543 +3812 0 3542 +3812 0 3541 +3812 0 3540 +3812 0 3538 +3812 0 3535 +3812 0 3532 +3812 0 3528 +3812 0 3521 +3812 0 3513 +3812 0 3502 +3812 0 3487 +3812 0 3465 +3812 0 3435 +3812 0 3391 +3812 0 3324 +3812 0 3216 +3812 0 3016 +3812 0 2397 +3812 0 0 +3812 0 0 +3812 3139 0 +3944 3660 0 +4076 3955 0 +4095 4095 0 +3944 0 3676 +3944 0 3676 +3944 0 3676 +3944 0 3676 +3944 0 3675 +3944 0 3675 +3944 0 3675 +3944 0 3674 +3944 0 3674 +3944 0 3673 +3944 0 3672 +3944 0 3671 +3944 0 3669 +3944 0 3666 +3944 0 3663 +3944 0 3659 +3944 0 3653 +3944 0 3645 +3944 0 3633 +3944 0 3618 +3944 0 3596 +3944 0 3566 +3944 0 3522 +3944 0 3455 +3944 0 3347 +3944 0 3145 +3944 0 2520 +3944 0 0 +3944 0 0 +3944 3271 0 +4076 3792 0 +4095 4087 0 +4076 0 3808 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3806 +4076 0 3806 +4076 0 3805 +4076 0 3805 +4076 0 3804 +4076 0 3802 +4076 0 3801 +4076 0 3798 +4076 0 3795 +4076 0 3790 +4076 0 3784 +4076 0 3776 +4076 0 3765 +4076 0 3749 +4076 0 3728 +4076 0 3697 +4076 0 3653 +4076 0 3586 +4076 0 3478 +4076 0 3276 +4076 0 2644 +4076 0 0 +4076 0 0 +4076 3402 0 +4095 3925 0 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3938 +4095 0 3938 +4095 0 3937 +4095 0 3937 +4095 0 3936 +4095 0 3934 +4095 0 3932 +4095 0 3930 +4095 0 3927 +4095 0 3922 +4095 0 3916 +4095 0 3908 +4095 0 3897 +4095 0 3881 +4095 0 3860 +4095 0 3829 +4095 0 3785 +4095 0 3718 +4095 0 3610 +4095 0 3407 +4095 0 2773 +4095 0 0 +4095 0 0 +4095 3534 0 +0 918 1160 +0 949 1160 +0 987 1160 +0 1033 1160 +0 1089 1160 +0 1154 1160 +0 1160 1079 +0 1160 929 +0 1160 592 +0 1295 0 +0 1429 0 +523 1563 0 +998 1696 0 +1283 1828 0 +1503 1961 0 +1691 2094 0 +1860 2226 0 +2019 2358 0 +2170 2491 0 +2315 2623 0 +2457 2755 0 +2597 2887 0 +2734 3019 0 +2870 3152 0 +3005 3284 0 +3139 3416 0 +3273 3548 0 +3406 3680 0 +3540 3812 0 +3672 3944 0 +3805 4076 0 +3937 4095 0 +0 885 1160 +0 924 1157 +0 964 1157 +0 1013 1157 +0 1071 1157 +0 1139 1157 +0 1157 1089 +0 1157 943 +0 1157 620 +0 1292 0 +0 1427 0 +605 1561 0 +1029 1695 0 +1300 1828 0 +1513 1961 0 +1698 2093 0 +1865 2226 0 +2022 2358 0 +2172 2491 0 +2317 2623 0 +2459 2755 0 +2598 2887 0 +2735 3019 0 +2871 3152 0 +3005 3283 0 +3140 3416 0 +3273 3548 0 +3407 3680 0 +3540 3812 0 +3672 3944 0 +3805 4076 0 +3937 4095 0 +0 836 1160 +0 879 1157 +0 932 1152 +0 984 1152 +0 1045 1152 +0 1117 1152 +0 1152 1102 +0 1152 960 +0 1152 656 +0 1289 0 +0 1424 0 +696 1559 0 +1067 1693 0 +1321 1827 0 +1526 1960 0 +1706 2093 0 +1871 2225 0 +2027 2358 0 +2175 2490 0 +2320 2623 0 +2460 2755 0 +2599 2887 0 +2735 3019 0 +2871 3152 0 +3006 3283 0 +3140 3416 0 +3274 3548 0 +3407 3680 0 +3540 3812 0 +3673 3944 0 +3805 4076 0 +3937 4095 0 +0 762 1160 +0 813 1157 +0 873 1152 +0 942 1146 +0 1009 1146 +0 1086 1146 +0 1146 1119 +0 1146 983 +0 1146 700 +0 1284 0 +141 1421 0 +794 1557 0 +1113 1691 0 +1348 1825 0 +1544 1959 0 +1718 2092 0 +1880 2225 0 +2032 2357 0 +2180 2490 0 +2323 2622 0 +2463 2755 0 +2601 2887 0 +2737 3019 0 +2872 3151 0 +3007 3283 0 +3141 3416 0 +3274 3548 0 +3407 3680 0 +3540 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 640 1160 +0 705 1157 +0 779 1152 +0 863 1146 +80 955 1137 +80 1040 1137 +80 1134 1137 +80 1137 1013 +80 1137 753 +0 1278 0 +478 1416 0 +900 1553 0 +1169 1689 0 +1382 1823 0 +1566 1958 0 +1733 2091 0 +1891 2224 0 +2040 2357 0 +2185 2489 0 +2327 2622 0 +2466 2755 0 +2603 2887 0 +2738 3019 0 +2873 3151 0 +3008 3283 0 +3141 3416 0 +3275 3548 0 +3408 3680 0 +3540 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 397 1160 +0 503 1157 +0 614 1152 +0 730 1146 +80 850 1137 +430 972 1126 +430 1079 1126 +430 1126 1049 +430 1126 814 +214 1270 212 +719 1410 0 +1011 1549 0 +1233 1685 0 +1423 1821 0 +1594 1956 0 +1753 2089 0 +1904 2223 0 +2050 2356 0 +2193 2489 0 +2332 2621 0 +2470 2754 0 +2606 2887 0 +2741 3019 0 +2875 3151 0 +3009 3283 0 +3142 3416 0 +3275 3548 0 +3408 3680 0 +3541 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 0 1160 +0 0 1157 +0 214 1152 +0 455 1146 +80 655 1137 +430 831 1126 +676 994 1110 +676 1110 1092 +676 1110 886 +661 1258 562 +919 1402 344 +1127 1543 0 +1308 1681 0 +1474 1817 0 +1629 1953 0 +1778 2087 0 +1922 2221 0 +2063 2355 0 +2202 2488 0 +2339 2621 0 +2475 2754 0 +2610 2886 0 +2744 3018 0 +2877 3151 0 +3010 3283 0 +3144 3415 0 +3276 3548 0 +3409 3680 0 +3541 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 0 1160 +0 0 1157 +0 0 1152 +0 0 1146 +80 81 1137 +430 529 1126 +676 805 1110 +878 1021 1088 +878 1088 967 +938 1242 809 +1095 1390 695 +1246 1534 476 +1391 1674 0 +1533 1813 0 +1672 1950 0 +1810 2085 0 +1946 2220 0 +2081 2353 0 +2215 2487 0 +2348 2620 0 +2482 2753 0 +2615 2886 0 +2747 3018 0 +2880 3151 0 +3013 3283 0 +3145 3415 0 +3277 3548 0 +3410 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +592 0 1160 +620 0 1157 +656 0 1152 +700 0 1146 +753 80 1137 +814 430 1126 +886 676 1110 +967 878 1088 +1056 1056 1056 +1154 1220 1010 +1258 1374 940 +1368 1523 826 +1483 1666 608 +1602 1807 0 +1724 1945 0 +1849 2082 0 +1975 2217 0 +2102 2352 0 +2231 2486 0 +2361 2619 0 +2491 2752 0 +2622 2885 0 +2752 3018 0 +2884 3151 0 +3015 3283 0 +3147 3415 0 +3279 3548 0 +3411 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1051 0 1295 +1062 0 1292 +1075 0 1289 +1093 0 1284 +1116 0 1278 +1145 212 1270 +1181 562 1258 +1225 809 1242 +1220 1010 1154 +1220 1099 1010 +1374 1357 940 +1476 1523 826 +1569 1666 608 +1669 1807 0 +1776 1945 0 +1889 2082 0 +2006 2217 0 +2126 2352 0 +2249 2486 0 +2374 2619 0 +2501 2752 0 +2629 2885 0 +2758 3018 0 +2888 3151 0 +3018 3283 0 +3150 3415 0 +3281 3548 0 +3412 3680 0 +3544 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1330 0 1429 +1336 0 1427 +1343 0 1424 +1353 0 1421 +1367 0 1416 +1383 0 1410 +1402 344 1398 +1390 695 1343 +1374 940 1258 +1374 940 1069 +1374 1150 940 +1523 1445 826 +1663 1666 608 +1746 1807 0 +1838 1945 0 +1938 2082 0 +2044 2217 0 +2155 2352 0 +2272 2486 0 +2392 2619 0 +2514 2752 0 +2639 2885 0 +2766 3018 0 +2894 3151 0 +3023 3283 0 +3153 3415 0 +3283 3548 0 +3414 3680 0 +3545 3812 0 +3676 3944 0 +3808 4076 0 +3940 4095 0 +1548 0 1563 +1552 0 1561 +1556 0 1559 +1557 0 1551 +1553 0 1535 +1549 0 1513 +1543 0 1482 +1534 476 1437 +1523 826 1368 +1523 826 1228 +1523 826 926 +1523 1211 826 +1666 1541 608 +1807 1780 0 +1909 1945 0 +1996 2082 0 +2090 2217 0 +2192 2352 0 +2301 2486 0 +2414 2619 0 +2532 2752 0 +2652 2885 0 +2776 3018 0 +2902 3151 0 +3029 3283 0 +3157 3415 0 +3286 3548 0 +3416 3680 0 +3547 3812 0 +3678 3944 0 +3809 4076 0 +3941 4095 0 +1696 0 1653 +1695 0 1647 +1693 0 1640 +1691 0 1631 +1689 0 1617 +1685 0 1599 +1681 0 1574 +1674 0 1537 +1666 608 1483 +1666 608 1378 +1666 608 1183 +1666 609 608 +1666 1281 608 +1807 1644 0 +1945 1895 0 +2063 2082 0 +2146 2217 0 +2237 2352 0 +2336 2486 0 +2442 2619 0 +2553 2752 0 +2669 2885 0 +2789 3018 0 +2911 3151 0 +3036 3283 0 +3163 3415 0 +3291 3548 0 +3420 3680 0 +3549 3812 0 +3680 3944 0 +3810 4076 0 +3941 4095 0 +1828 0 1738 +1828 0 1733 +1827 0 1727 +1825 0 1720 +1823 0 1709 +1821 0 1694 +1817 0 1673 +1813 0 1644 +1807 0 1602 +1807 0 1523 +1807 0 1391 +1807 0 1115 +1807 438 0 +1807 1360 0 +1945 1754 0 +2082 2014 0 +2211 2217 0 +2291 2352 0 +2380 2486 0 +2477 2619 0 +2581 2752 0 +2691 2885 0 +2805 3018 0 +2924 3151 0 +3046 3283 0 +3170 3415 0 +3296 3548 0 +3424 3680 0 +3552 3812 0 +3682 3944 0 +3812 4076 0 +3943 4095 0 +1961 0 1831 +1961 0 1828 +1960 0 1823 +1959 0 1817 +1958 0 1808 +1956 0 1796 +1953 0 1779 +1950 0 1757 +1945 0 1724 +1945 0 1665 +1945 0 1572 +1945 0 1407 +1945 0 1007 +1945 37 0 +1945 1449 0 +2082 1868 0 +2217 2136 0 +2352 2349 0 +2433 2486 0 +2520 2619 0 +2616 2752 0 +2718 2885 0 +2827 3018 0 +2941 3151 0 +3059 3283 0 +3180 3415 0 +3303 3548 0 +3429 3680 0 +3557 3812 0 +3685 3944 0 +3814 4076 0 +3945 4095 0 +2094 0 1932 +2093 0 1929 +2093 0 1926 +2092 0 1920 +2091 0 1913 +2089 0 1904 +2087 0 1891 +2085 0 1873 +2082 0 1849 +2082 0 1804 +2082 0 1738 +2082 0 1630 +2082 0 1428 +2082 0 800 +2082 0 0 +2082 1545 0 +2217 1986 0 +2352 2261 0 +2486 2476 0 +2572 2619 0 +2658 2752 0 +2752 2885 0 +2854 3018 0 +2962 3151 0 +3075 3283 0 +3192 3415 0 +3313 3548 0 +3437 3680 0 +3562 3812 0 +3689 3944 0 +3818 4076 0 +3947 4095 0 +2226 0 2039 +2226 0 2037 +2225 0 2034 +2225 0 2030 +2224 0 2025 +2223 0 2018 +2221 0 2008 +2220 0 1994 +2217 0 1975 +2217 0 1941 +2217 0 1894 +2217 0 1819 +2217 0 1697 +2217 0 1454 +2217 0 140 +2217 0 0 +2217 1649 0 +2352 2107 0 +2486 2387 0 +2619 2604 0 +2710 2752 0 +2795 2885 0 +2888 3018 0 +2989 3151 0 +3096 3283 0 +3209 3415 0 +3326 3548 0 +3446 3680 0 +3570 3812 0 +3695 3944 0 +3822 4076 0 +3950 4095 0 +2358 0 2152 +2358 0 2150 +2358 0 2148 +2357 0 2145 +2357 0 2141 +2356 0 2135 +2355 0 2127 +2353 0 2117 +2352 0 2102 +2352 0 2078 +2352 0 2042 +2352 0 1990 +2352 0 1910 +2352 0 1773 +2352 0 1487 +2352 0 0 +2352 0 0 +2352 1758 0 +2486 2232 0 +2619 2515 0 +2752 2734 0 +2845 2885 0 +2930 3018 0 +3023 3151 0 +3123 3283 0 +3230 3415 0 +3342 3548 0 +3459 3680 0 +3579 3812 0 +3702 3944 0 +3827 4076 0 +3954 4095 0 +2491 0 2269 +2491 0 2268 +2490 0 2266 +2490 0 2264 +2489 0 2260 +2489 0 2256 +2488 0 2250 +2487 0 2242 +2486 0 2231 +2486 0 2213 +2486 0 2187 +2486 0 2149 +2486 0 2094 +2486 0 2008 +2486 0 1859 +2486 0 1529 +2486 0 0 +2486 0 0 +2486 1873 0 +2619 2357 0 +2752 2644 0 +2885 2864 0 +2980 3018 0 +3064 3151 0 +3157 3283 0 +3257 3415 0 +3363 3548 0 +3475 3680 0 +3592 3812 0 +3712 3944 0 +3835 4076 0 +3960 4095 0 +2623 0 2390 +2623 0 2388 +2623 0 2387 +2622 0 2385 +2622 0 2383 +2621 0 2380 +2621 0 2375 +2620 0 2369 +2619 0 2361 +2619 0 2347 +2619 0 2328 +2619 0 2301 +2619 0 2262 +2619 0 2204 +2619 0 2113 +2619 0 1954 +2619 0 1578 +2619 0 0 +2619 0 0 +2619 1991 0 +2752 2485 0 +2885 2773 0 +3018 2995 0 +3115 3151 0 +3198 3283 0 +3290 3415 0 +3390 3548 0 +3496 3680 0 +3608 3812 0 +3725 3944 0 +3845 4076 0 +3967 4095 0 +2755 0 2513 +2755 0 2512 +2755 0 2511 +2755 0 2510 +2755 0 2508 +2754 0 2505 +2754 0 2502 +2753 0 2497 +2752 0 2491 +2752 0 2481 +2752 0 2467 +2752 0 2447 +2752 0 2419 +2752 0 2379 +2752 0 2319 +2752 0 2224 +2752 0 2056 +2752 0 1638 +2752 0 0 +2752 0 0 +2752 2113 0 +2885 2613 0 +3018 2903 0 +3151 3126 0 +3248 3283 0 +3331 3415 0 +3423 3548 0 +3523 3680 0 +3629 3812 0 +3741 3944 0 +3857 4076 0 +3977 4095 0 +2887 0 2638 +2887 0 2638 +2887 0 2637 +2887 0 2636 +2887 0 2635 +2887 0 2632 +2886 0 2630 +2886 0 2626 +2885 0 2622 +2885 0 2614 +2885 0 2603 +2885 0 2589 +2885 0 2569 +2885 0 2540 +2885 0 2499 +2885 0 2438 +2885 0 2340 +2885 0 2163 +2885 0 1706 +2885 0 0 +2885 0 0 +2885 2237 0 +3018 2742 0 +3151 3034 0 +3283 3257 0 +3381 3415 0 +3465 3548 0 +3556 3680 0 +3656 3812 0 +3762 3944 0 +3873 4076 0 +3989 4095 0 +3019 0 2765 +3019 0 2765 +3019 0 2764 +3019 0 2763 +3019 0 2762 +3019 0 2761 +3018 0 2759 +3018 0 2756 +3018 0 2752 +3018 0 2747 +3018 0 2739 +3018 0 2728 +3018 0 2714 +3018 0 2693 +3018 0 2664 +3018 0 2622 +3018 0 2559 +3018 0 2459 +3018 0 2276 +3018 0 1782 +3018 0 0 +3018 0 0 +3018 2362 0 +3151 2873 0 +3283 3165 0 +3415 3388 0 +3514 3548 0 +3597 3680 0 +3689 3812 0 +3788 3944 0 +3894 4076 0 +4006 4095 0 +3152 0 2893 +3152 0 2893 +3152 0 2893 +3151 0 2892 +3151 0 2891 +3151 0 2890 +3151 0 2889 +3151 0 2887 +3151 0 2884 +3151 0 2880 +3151 0 2874 +3151 0 2866 +3151 0 2855 +3151 0 2840 +3151 0 2819 +3151 0 2790 +3151 0 2747 +3151 0 2684 +3151 0 2581 +3151 0 2394 +3151 0 1869 +3151 0 0 +3151 0 0 +3151 2490 0 +3283 3003 0 +3415 3296 0 +3548 3520 0 +3647 3680 0 +3730 3812 0 +3822 3944 0 +3921 4076 0 +4027 4095 0 +3284 0 3022 +3283 0 3022 +3283 0 3022 +3283 0 3021 +3283 0 3021 +3283 0 3020 +3283 0 3019 +3283 0 3017 +3283 0 3015 +3283 0 3012 +3283 0 3008 +3283 0 3002 +3283 0 2994 +3283 0 2983 +3283 0 2968 +3283 0 2947 +3283 0 2917 +3283 0 2874 +3283 0 2809 +3283 0 2705 +3283 0 2513 +3283 0 1962 +3283 0 0 +3283 0 0 +3283 2619 0 +3415 3135 0 +3548 3428 0 +3680 3652 0 +3780 3812 0 +3863 3944 0 +3954 4076 0 +4053 4095 0 +3416 0 3152 +3416 0 3152 +3416 0 3152 +3416 0 3151 +3416 0 3151 +3416 0 3151 +3415 0 3150 +3415 0 3149 +3415 0 3147 +3415 0 3145 +3415 0 3141 +3415 0 3137 +3415 0 3131 +3415 0 3123 +3415 0 3112 +3415 0 3097 +3415 0 3076 +3415 0 3046 +3415 0 3002 +3415 0 2937 +3415 0 2832 +3415 0 2637 +3415 0 2068 +3415 0 0 +3415 0 0 +3415 2748 0 +3548 3266 0 +3680 3560 0 +3812 3784 0 +3912 3944 0 +3995 4076 0 +4086 4095 0 +3548 0 3283 +3548 0 3283 +3548 0 3282 +3548 0 3282 +3548 0 3282 +3548 0 3281 +3548 0 3281 +3548 0 3280 +3548 0 3279 +3548 0 3277 +3548 0 3275 +3548 0 3271 +3548 0 3267 +3548 0 3261 +3548 0 3253 +3548 0 3242 +3548 0 3226 +3548 0 3205 +3548 0 3175 +3548 0 3132 +3548 0 3066 +3548 0 2960 +3548 0 2763 +3548 0 2174 +3548 0 0 +3548 0 0 +3548 2878 0 +3680 3397 0 +3812 3691 0 +3944 3915 0 +4044 4076 0 +4095 4095 0 +3680 0 3414 +3680 0 3414 +3680 0 3414 +3680 0 3413 +3680 0 3413 +3680 0 3413 +3680 0 3412 +3680 0 3412 +3680 0 3411 +3680 0 3409 +3680 0 3408 +3680 0 3405 +3680 0 3402 +3680 0 3397 +3680 0 3392 +3680 0 3383 +3680 0 3372 +3680 0 3357 +3680 0 3336 +3680 0 3305 +3680 0 3261 +3680 0 3195 +3680 0 3089 +3680 0 2890 +3680 0 2291 +3680 0 0 +3680 0 0 +3680 3009 0 +3812 3529 0 +3944 3823 0 +4076 4047 0 +4095 4095 0 +3812 0 3545 +3812 0 3545 +3812 0 3545 +3812 0 3545 +3812 0 3544 +3812 0 3544 +3812 0 3544 +3812 0 3543 +3812 0 3543 +3812 0 3542 +3812 0 3540 +3812 0 3538 +3812 0 3536 +3812 0 3533 +3812 0 3528 +3812 0 3522 +3812 0 3514 +3812 0 3503 +3812 0 3488 +3812 0 3466 +3812 0 3436 +3812 0 3392 +3812 0 3326 +3812 0 3218 +3812 0 3019 +3812 0 2408 +3812 0 0 +3812 0 0 +3812 3140 0 +3944 3661 0 +4076 3955 0 +4095 4095 0 +3944 0 3676 +3944 0 3676 +3944 0 3676 +3944 0 3676 +3944 0 3676 +3944 0 3676 +3944 0 3676 +3944 0 3675 +3944 0 3675 +3944 0 3674 +3944 0 3673 +3944 0 3671 +3944 0 3670 +3944 0 3667 +3944 0 3664 +3944 0 3659 +3944 0 3653 +3944 0 3645 +3944 0 3634 +3944 0 3619 +3944 0 3597 +3944 0 3567 +3944 0 3523 +3944 0 3456 +3944 0 3349 +3944 0 3147 +3944 0 2528 +3944 0 0 +3944 0 0 +3944 3271 0 +4076 3792 0 +4095 4087 0 +4076 0 3808 +4076 0 3808 +4076 0 3808 +4076 0 3808 +4076 0 3808 +4076 0 3808 +4076 0 3807 +4076 0 3807 +4076 0 3807 +4076 0 3806 +4076 0 3805 +4076 0 3804 +4076 0 3803 +4076 0 3801 +4076 0 3798 +4076 0 3795 +4076 0 3791 +4076 0 3785 +4076 0 3777 +4076 0 3765 +4076 0 3750 +4076 0 3728 +4076 0 3698 +4076 0 3654 +4076 0 3587 +4076 0 3479 +4076 0 3277 +4076 0 2650 +4076 0 0 +4076 0 0 +4076 3403 0 +4095 3925 0 +4095 0 3940 +4095 0 3940 +4095 0 3940 +4095 0 3940 +4095 0 3940 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3939 +4095 0 3938 +4095 0 3938 +4095 0 3937 +4095 0 3936 +4095 0 3935 +4095 0 3933 +4095 0 3930 +4095 0 3927 +4095 0 3923 +4095 0 3917 +4095 0 3908 +4095 0 3897 +4095 0 3881 +4095 0 3860 +4095 0 3830 +4095 0 3786 +4095 0 3719 +4095 0 3611 +4095 0 3408 +4095 0 2778 +4095 0 0 +4095 0 0 +4095 3534 0 +0 1046 1295 +0 1069 1295 +0 1099 1295 +0 1135 1295 +0 1181 1295 +0 1234 1295 +0 1295 1292 +0 1295 1204 +0 1295 1051 +0 1295 702 +0 1429 0 +0 1563 0 +580 1696 0 +1106 1828 0 +1402 1961 0 +1626 2094 0 +1817 2226 0 +1989 2358 0 +2149 2491 0 +2300 2623 0 +2446 2755 0 +2589 2887 0 +2728 3019 0 +2866 3152 0 +3002 3284 0 +3137 3416 0 +3271 3548 0 +3405 3680 0 +3538 3812 0 +3671 3944 0 +3804 4076 0 +3937 4095 0 +0 1021 1295 +0 1050 1292 +0 1081 1292 +0 1119 1292 +0 1166 1292 +0 1221 1292 +0 1286 1292 +0 1292 1211 +0 1292 1062 +0 1292 724 +0 1427 0 +0 1561 0 +653 1695 0 +1131 1828 0 +1415 1961 0 +1635 2093 0 +1823 2226 0 +1993 2358 0 +2151 2491 0 +2302 2623 0 +2448 2755 0 +2589 2887 0 +2729 3019 0 +2866 3152 0 +3002 3283 0 +3137 3416 0 +3272 3548 0 +3405 3680 0 +3538 3812 0 +3671 3944 0 +3804 4076 0 +3937 4095 0 +0 985 1295 +0 1017 1292 +0 1056 1289 +0 1096 1289 +0 1145 1289 +0 1203 1289 +0 1271 1289 +0 1289 1221 +0 1289 1075 +0 1289 753 +0 1424 0 +0 1559 0 +736 1693 0 +1161 1827 0 +1431 1960 0 +1645 2093 0 +1829 2225 0 +1997 2358 0 +2154 2490 0 +2304 2623 0 +2449 2755 0 +2591 2887 0 +2729 3019 0 +2867 3152 0 +3002 3283 0 +3138 3416 0 +3272 3548 0 +3405 3680 0 +3539 3812 0 +3672 3944 0 +3804 4076 0 +3937 4095 0 +0 934 1295 +0 968 1292 +0 1012 1289 +0 1064 1284 +0 1116 1284 +0 1177 1284 +0 1249 1284 +0 1284 1235 +0 1284 1093 +0 1284 788 +0 1421 0 +0 1557 0 +827 1691 0 +1199 1825 0 +1453 1959 0 +1658 2092 0 +1839 2225 0 +2004 2357 0 +2159 2490 0 +2308 2622 0 +2452 2755 0 +2592 2887 0 +2731 3019 0 +2868 3151 0 +3003 3283 0 +3138 3416 0 +3272 3548 0 +3406 3680 0 +3539 3812 0 +3672 3944 0 +3805 4076 0 +3937 4095 0 +0 853 1295 +0 894 1292 +0 945 1289 +0 1005 1284 +0 1074 1278 +0 1141 1278 +0 1218 1278 +0 1278 1251 +0 1278 1116 +0 1278 832 +0 1416 0 +275 1553 0 +926 1689 0 +1245 1823 0 +1480 1958 0 +1676 2091 0 +1850 2224 0 +2012 2357 0 +2165 2489 0 +2312 2622 0 +2455 2755 0 +2595 2887 0 +2732 3019 0 +2869 3151 0 +3004 3283 0 +3139 3416 0 +3273 3548 0 +3406 3680 0 +3539 3812 0 +3672 3944 0 +3805 4076 0 +3937 4095 0 +0 717 1295 +0 772 1292 +0 837 1289 +0 911 1284 +0 995 1278 +212 1087 1270 +212 1172 1270 +212 1266 1270 +212 1270 1145 +212 1270 884 +0 1410 47 +611 1549 0 +1031 1685 0 +1301 1821 0 +1514 1956 0 +1698 2089 0 +1865 2223 0 +2022 2356 0 +2172 2489 0 +2317 2621 0 +2459 2754 0 +2598 2887 0 +2735 3019 0 +2871 3151 0 +3005 3283 0 +3140 3416 0 +3273 3548 0 +3407 3680 0 +3540 3812 0 +3672 3944 0 +3805 4076 0 +3937 4095 0 +0 431 1295 +0 529 1292 +0 635 1289 +0 746 1284 +0 862 1278 +212 982 1270 +562 1104 1258 +562 1211 1258 +562 1258 1181 +562 1258 946 +345 1402 344 +852 1543 0 +1142 1681 0 +1366 1817 0 +1555 1953 0 +1726 2087 0 +1885 2221 0 +2037 2355 0 +2183 2488 0 +2325 2621 0 +2464 2754 0 +2602 2886 0 +2738 3018 0 +2873 3151 0 +3007 3283 0 +3141 3415 0 +3274 3548 0 +3407 3680 0 +3540 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 0 1295 +0 0 1292 +0 9 1289 +0 346 1284 +0 587 1278 +212 787 1270 +562 963 1258 +809 1126 1242 +809 1242 1225 +809 1242 1018 +793 1390 695 +1051 1534 476 +1258 1674 0 +1440 1813 0 +1606 1950 0 +1761 2085 0 +1910 2220 0 +2054 2353 0 +2196 2487 0 +2334 2620 0 +2471 2753 0 +2607 2886 0 +2742 3018 0 +2876 3151 0 +3009 3283 0 +3143 3415 0 +3276 3548 0 +3408 3680 0 +3541 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 0 1295 +0 0 1292 +0 0 1289 +0 0 1284 +0 0 1278 +212 214 1270 +562 661 1258 +809 938 1242 +1010 1154 1220 +1010 1220 1099 +1069 1374 940 +1228 1523 826 +1378 1666 608 +1523 1807 0 +1665 1945 0 +1804 2082 0 +1942 2217 0 +2078 2352 0 +2213 2486 0 +2347 2619 0 +2481 2752 0 +2614 2885 0 +2747 3018 0 +2880 3151 0 +3012 3283 0 +3145 3415 0 +3277 3548 0 +3409 3680 0 +3542 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +702 0 1295 +724 0 1292 +753 0 1289 +788 0 1284 +832 0 1278 +884 212 1270 +946 562 1258 +1018 809 1242 +1099 1010 1220 +1188 1188 1188 +1286 1352 1142 +1390 1507 1073 +1500 1654 959 +1615 1798 740 +1734 1939 0 +1856 2077 0 +1981 2214 0 +2107 2349 0 +2235 2484 0 +2363 2618 0 +2493 2751 0 +2623 2885 0 +2754 3017 0 +2885 3150 0 +3016 3282 0 +3147 3415 0 +3279 3547 0 +3411 3680 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1174 0 1429 +1182 0 1427 +1193 0 1424 +1207 0 1421 +1225 0 1416 +1248 0 1410 +1277 344 1402 +1313 695 1390 +1357 940 1374 +1352 1142 1286 +1352 1231 1142 +1507 1489 1073 +1608 1654 959 +1701 1798 740 +1801 1939 0 +1908 2077 0 +2021 2214 0 +2138 2349 0 +2258 2484 0 +2381 2618 0 +2506 2751 0 +2633 2885 0 +2761 3017 0 +2891 3150 0 +3020 3282 0 +3151 3415 0 +3282 3547 0 +3413 3680 0 +3544 3812 0 +3676 3944 0 +3808 4076 0 +3940 4095 0 +1458 0 1563 +1463 0 1561 +1468 0 1559 +1476 0 1557 +1486 0 1553 +1499 0 1549 +1516 0 1543 +1534 476 1531 +1523 826 1476 +1507 1073 1390 +1507 1073 1202 +1507 1282 1073 +1654 1577 959 +1795 1798 740 +1878 1939 0 +1970 2077 0 +2070 2214 0 +2176 2349 0 +2288 2484 0 +2404 2618 0 +2524 2751 0 +2647 2885 0 +2771 3017 0 +2898 3150 0 +3026 3282 0 +3155 3415 0 +3285 3547 0 +3415 3680 0 +3546 3812 0 +3677 3944 0 +3808 4076 0 +3940 4095 0 +1677 0 1696 +1680 0 1695 +1683 0 1693 +1688 0 1691 +1689 0 1683 +1685 0 1667 +1681 0 1645 +1674 0 1614 +1666 608 1569 +1654 959 1500 +1654 959 1360 +1654 959 1056 +1654 1343 959 +1798 1673 740 +1939 1912 0 +2041 2077 0 +2128 2214 0 +2223 2349 0 +2325 2484 0 +2432 2618 0 +2546 2751 0 +2664 2885 0 +2784 3017 0 +2908 3150 0 +3033 3282 0 +3161 3415 0 +3289 3547 0 +3418 3680 0 +3548 3812 0 +3679 3944 0 +3810 4076 0 +3941 4095 0 +1828 0 1789 +1828 0 1785 +1827 0 1779 +1825 0 1772 +1823 0 1763 +1821 0 1750 +1817 0 1732 +1813 0 1706 +1807 0 1669 +1798 740 1615 +1798 740 1510 +1798 740 1315 +1798 740 742 +1798 1413 740 +1939 1776 0 +2077 2027 0 +2195 2214 0 +2278 2349 0 +2369 2484 0 +2469 2618 0 +2574 2751 0 +2685 2885 0 +2801 3017 0 +2921 3150 0 +3043 3282 0 +3168 3415 0 +3295 3547 0 +3423 3680 0 +3552 3812 0 +3681 3944 0 +3812 4076 0 +3943 4095 0 +1961 0 1873 +1961 0 1870 +1960 0 1865 +1959 0 1860 +1958 0 1852 +1956 0 1841 +1953 0 1826 +1950 0 1806 +1945 0 1776 +1939 0 1734 +1939 0 1655 +1939 0 1523 +1939 0 1248 +1939 573 0 +1939 1492 0 +2077 1886 0 +2214 2146 0 +2343 2349 0 +2423 2484 0 +2512 2618 0 +2609 2751 0 +2713 2885 0 +2823 3017 0 +2938 3150 0 +3056 3282 0 +3178 3415 0 +3302 3547 0 +3428 3680 0 +3556 3812 0 +3685 3944 0 +3814 4076 0 +3944 4095 0 +2094 0 1966 +2093 0 1963 +2093 0 1960 +2092 0 1955 +2091 0 1949 +2089 0 1940 +2087 0 1928 +2085 0 1912 +2082 0 1889 +2077 0 1856 +2077 0 1797 +2077 0 1704 +2077 0 1539 +2077 0 1138 +2077 173 0 +2077 1581 0 +2214 2000 0 +2349 2268 0 +2484 2481 0 +2565 2618 0 +2652 2751 0 +2748 2885 0 +2850 3017 0 +2959 3150 0 +3073 3282 0 +3191 3415 0 +3312 3547 0 +3436 3680 0 +3562 3812 0 +3689 3944 0 +3817 4076 0 +3947 4095 0 +2226 0 2066 +2226 0 2064 +2225 0 2061 +2225 0 2058 +2224 0 2053 +2223 0 2046 +2221 0 2036 +2220 0 2023 +2217 0 2006 +2214 0 1981 +2214 0 1936 +2214 0 1870 +2214 0 1762 +2214 0 1560 +2214 0 932 +2214 0 0 +2214 1677 0 +2349 2118 0 +2484 2393 0 +2618 2608 0 +2704 2751 0 +2790 2885 0 +2885 3017 0 +2986 3150 0 +3094 3282 0 +3207 3415 0 +3325 3547 0 +3445 3680 0 +3569 3812 0 +3694 3944 0 +3821 4076 0 +3950 4095 0 +2358 0 2173 +2358 0 2171 +2358 0 2169 +2357 0 2166 +2357 0 2162 +2356 0 2157 +2355 0 2150 +2353 0 2140 +2352 0 2126 +2349 0 2107 +2349 0 2074 +2349 0 2025 +2349 0 1951 +2349 0 1829 +2349 0 1586 +2349 0 275 +2349 0 0 +2349 1781 0 +2484 2240 0 +2618 2519 0 +2751 2737 0 +2842 2885 0 +2927 3017 0 +3020 3150 0 +3121 3282 0 +3228 3415 0 +3341 3547 0 +3458 3680 0 +3579 3812 0 +3702 3944 0 +3827 4076 0 +3954 4095 0 +2491 0 2285 +2491 0 2284 +2490 0 2283 +2490 0 2280 +2489 0 2277 +2489 0 2273 +2488 0 2267 +2487 0 2260 +2486 0 2249 +2484 0 2235 +2484 0 2210 +2484 0 2174 +2484 0 2122 +2484 0 2042 +2484 0 1906 +2484 0 1620 +2484 0 0 +2484 0 0 +2484 1891 0 +2618 2363 0 +2751 2647 0 +2885 2866 0 +2977 3017 0 +3062 3150 0 +3155 3282 0 +3255 3415 0 +3362 3547 0 +3475 3680 0 +3591 3812 0 +3711 3944 0 +3834 4076 0 +3960 4095 0 +2623 0 2402 +2623 0 2401 +2623 0 2400 +2622 0 2398 +2622 0 2396 +2621 0 2393 +2621 0 2388 +2620 0 2382 +2619 0 2374 +2618 0 2363 +2618 0 2345 +2618 0 2319 +2618 0 2281 +2618 0 2226 +2618 0 2140 +2618 0 1991 +2618 0 1661 +2618 0 0 +2618 0 0 +2618 2005 0 +2751 2490 0 +2885 2776 0 +3017 2996 0 +3112 3150 0 +3196 3282 0 +3289 3415 0 +3389 3547 0 +3495 3680 0 +3607 3812 0 +3724 3944 0 +3844 4076 0 +3967 4095 0 +2755 0 2523 +2755 0 2522 +2755 0 2521 +2755 0 2520 +2755 0 2517 +2754 0 2515 +2754 0 2512 +2753 0 2507 +2752 0 2501 +2751 0 2493 +2751 0 2479 +2751 0 2460 +2751 0 2433 +2751 0 2394 +2751 0 2336 +2751 0 2245 +2751 0 2086 +2751 0 1711 +2751 0 0 +2751 0 0 +2751 2123 0 +2885 2617 0 +3017 2905 0 +3150 3127 0 +3247 3282 0 +3330 3415 0 +3422 3547 0 +3522 3680 0 +3629 3812 0 +3740 3944 0 +3856 4076 0 +3977 4095 0 +2887 0 2646 +2887 0 2645 +2887 0 2644 +2887 0 2643 +2887 0 2642 +2887 0 2640 +2886 0 2637 +2886 0 2634 +2885 0 2629 +2885 0 2623 +2885 0 2613 +2885 0 2599 +2885 0 2579 +2885 0 2551 +2885 0 2511 +2885 0 2451 +2885 0 2356 +2885 0 2188 +2885 0 1769 +2885 0 0 +2885 0 0 +2885 2245 0 +3017 2745 0 +3150 3036 0 +3282 3257 0 +3380 3415 0 +3464 3547 0 +3556 3680 0 +3655 3812 0 +3761 3944 0 +3873 4076 0 +3989 4095 0 +3019 0 2771 +3019 0 2770 +3019 0 2770 +3019 0 2769 +3019 0 2768 +3019 0 2766 +3018 0 2764 +3018 0 2762 +3018 0 2758 +3017 0 2754 +3017 0 2746 +3017 0 2735 +3017 0 2721 +3017 0 2701 +3017 0 2672 +3017 0 2631 +3017 0 2570 +3017 0 2471 +3017 0 2294 +3017 0 1837 +3017 0 0 +3017 0 0 +3017 2369 0 +3150 2875 0 +3282 3166 0 +3415 3389 0 +3513 3547 0 +3597 3680 0 +3689 3812 0 +3788 3944 0 +3894 4076 0 +4005 4095 0 +3152 0 2898 +3152 0 2897 +3152 0 2897 +3151 0 2896 +3151 0 2895 +3151 0 2895 +3151 0 2893 +3151 0 2891 +3151 0 2888 +3150 0 2885 +3150 0 2879 +3150 0 2871 +3150 0 2860 +3150 0 2846 +3150 0 2825 +3150 0 2796 +3150 0 2754 +3150 0 2691 +3150 0 2591 +3150 0 2408 +3150 0 1915 +3150 0 0 +3150 0 0 +3150 2495 0 +3282 3005 0 +3415 3297 0 +3547 3520 0 +3646 3680 0 +3729 3812 0 +3821 3944 0 +3921 4076 0 +4026 4095 0 +3284 0 3025 +3283 0 3025 +3283 0 3025 +3283 0 3025 +3283 0 3024 +3283 0 3023 +3283 0 3022 +3283 0 3021 +3283 0 3018 +3282 0 3016 +3282 0 3012 +3282 0 3006 +3282 0 2998 +3282 0 2987 +3282 0 2972 +3282 0 2951 +3282 0 2922 +3282 0 2879 +3282 0 2815 +3282 0 2713 +3282 0 2524 +3282 0 1999 +3282 0 0 +3282 0 0 +3282 2622 0 +3415 3136 0 +3547 3429 0 +3680 3652 0 +3779 3812 0 +3862 3944 0 +3953 4076 0 +4053 4095 0 +3416 0 3155 +3416 0 3154 +3416 0 3154 +3416 0 3154 +3416 0 3154 +3416 0 3153 +3415 0 3152 +3415 0 3151 +3415 0 3150 +3415 0 3147 +3415 0 3144 +3415 0 3140 +3415 0 3134 +3415 0 3126 +3415 0 3115 +3415 0 3100 +3415 0 3079 +3415 0 3049 +3415 0 3006 +3415 0 2942 +3415 0 2837 +3415 0 2646 +3415 0 2098 +3415 0 0 +3415 0 0 +3415 2751 0 +3547 3267 0 +3680 3560 0 +3812 3784 0 +3912 3944 0 +3995 4076 0 +4086 4095 0 +3548 0 3285 +3548 0 3284 +3548 0 3284 +3548 0 3284 +3548 0 3284 +3548 0 3283 +3548 0 3283 +3548 0 3282 +3548 0 3281 +3547 0 3279 +3547 0 3277 +3547 0 3274 +3547 0 3269 +3547 0 3263 +3547 0 3255 +3547 0 3244 +3547 0 3229 +3547 0 3208 +3547 0 3178 +3547 0 3135 +3547 0 3069 +3547 0 2964 +3547 0 2770 +3547 0 2198 +3547 0 0 +3547 0 0 +3547 2880 0 +3680 3398 0 +3812 3692 0 +3944 3916 0 +4044 4076 0 +4095 4095 0 +3680 0 3415 +3680 0 3415 +3680 0 3415 +3680 0 3415 +3680 0 3414 +3680 0 3414 +3680 0 3414 +3680 0 3413 +3680 0 3412 +3680 0 3411 +3680 0 3409 +3680 0 3407 +3680 0 3404 +3680 0 3399 +3680 0 3393 +3680 0 3385 +3680 0 3374 +3680 0 3359 +3680 0 3337 +3680 0 3307 +3680 0 3264 +3680 0 3198 +3680 0 3092 +3680 0 2895 +3680 0 2310 +3680 0 0 +3680 0 0 +3680 3011 0 +3812 3530 0 +3944 3824 0 +4076 4047 0 +4095 4095 0 +3812 0 3546 +3812 0 3546 +3812 0 3546 +3812 0 3545 +3812 0 3545 +3812 0 3545 +3812 0 3545 +3812 0 3544 +3812 0 3544 +3812 0 3543 +3812 0 3541 +3812 0 3540 +3812 0 3537 +3812 0 3534 +3812 0 3530 +3812 0 3523 +3812 0 3515 +3812 0 3504 +3812 0 3489 +3812 0 3468 +3812 0 3437 +3812 0 3394 +3812 0 3328 +3812 0 3221 +3812 0 3023 +3812 0 2422 +3812 0 0 +3812 0 0 +3812 3141 0 +3944 3661 0 +4076 3955 0 +4095 4095 0 +3944 0 3677 +3944 0 3677 +3944 0 3677 +3944 0 3677 +3944 0 3677 +3944 0 3676 +3944 0 3676 +3944 0 3676 +3944 0 3675 +3944 0 3675 +3944 0 3674 +3944 0 3673 +3944 0 3671 +3944 0 3668 +3944 0 3665 +3944 0 3661 +3944 0 3654 +3944 0 3646 +3944 0 3635 +3944 0 3620 +3944 0 3598 +3944 0 3568 +3944 0 3524 +3944 0 3458 +3944 0 3351 +3944 0 3151 +3944 0 2539 +3944 0 0 +3944 0 0 +3944 3272 0 +4076 3793 0 +4095 4088 0 +4076 0 3808 +4076 0 3808 +4076 0 3808 +4076 0 3808 +4076 0 3808 +4076 0 3808 +4076 0 3808 +4076 0 3808 +4076 0 3807 +4076 0 3807 +4076 0 3806 +4076 0 3805 +4076 0 3803 +4076 0 3802 +4076 0 3799 +4076 0 3796 +4076 0 3791 +4076 0 3785 +4076 0 3777 +4076 0 3766 +4076 0 3751 +4076 0 3729 +4076 0 3699 +4076 0 3655 +4076 0 3588 +4076 0 3480 +4076 0 3279 +4076 0 2659 +4076 0 0 +4076 0 0 +4076 3403 0 +4095 3925 0 +4095 0 3940 +4095 0 3940 +4095 0 3940 +4095 0 3940 +4095 0 3940 +4095 0 3940 +4095 0 3940 +4095 0 3940 +4095 0 3939 +4095 0 3939 +4095 0 3938 +4095 0 3937 +4095 0 3937 +4095 0 3935 +4095 0 3933 +4095 0 3931 +4095 0 3927 +4095 0 3923 +4095 0 3917 +4095 0 3909 +4095 0 3898 +4095 0 3882 +4095 0 3861 +4095 0 3830 +4095 0 3786 +4095 0 3720 +4095 0 3612 +4095 0 3410 +4095 0 2785 +4095 0 0 +4095 0 0 +4095 3535 0 +0 1174 1429 +0 1192 1429 +0 1215 1429 +0 1244 1429 +0 1280 1429 +0 1323 1429 +0 1376 1429 +0 1429 1419 +0 1429 1330 +0 1429 1174 +0 1429 816 +0 1563 0 +0 1696 0 +650 1828 0 +1220 1961 0 +1524 2094 0 +1753 2226 0 +1946 2358 0 +2119 2491 0 +2278 2623 0 +2431 2755 0 +2577 2887 0 +2720 3019 0 +2860 3152 0 +2997 3284 0 +3134 3416 0 +3269 3548 0 +3403 3680 0 +3537 3812 0 +3670 3944 0 +3803 4076 0 +3937 4095 0 +0 1156 1429 +0 1178 1427 +0 1201 1427 +0 1231 1427 +0 1267 1427 +0 1313 1427 +0 1366 1427 +0 1427 1424 +0 1427 1336 +0 1427 1182 +0 1427 833 +0 1561 0 +0 1695 0 +713 1828 0 +1238 1961 0 +1534 2093 0 +1759 2226 0 +1950 2358 0 +2121 2491 0 +2281 2623 0 +2432 2755 0 +2578 2887 0 +2720 3019 0 +2860 3152 0 +2998 3283 0 +3134 3416 0 +3269 3548 0 +3403 3680 0 +3537 3812 0 +3671 3944 0 +3803 4076 0 +3937 4095 0 +0 1130 1429 +0 1153 1427 +0 1182 1424 +0 1213 1424 +0 1251 1424 +0 1298 1424 +0 1353 1424 +0 1418 1424 +0 1424 1343 +0 1424 1193 +0 1424 856 +0 1559 0 +0 1693 0 +786 1827 0 +1263 1960 0 +1547 2093 0 +1767 2225 0 +1955 2358 0 +2125 2490 0 +2283 2623 0 +2434 2755 0 +2580 2887 0 +2721 3019 0 +2861 3152 0 +2998 3283 0 +3134 3416 0 +3269 3548 0 +3404 3680 0 +3537 3812 0 +3671 3944 0 +3803 4076 0 +3937 4095 0 +0 1092 1429 +0 1118 1427 +0 1149 1424 +0 1188 1421 +0 1228 1421 +0 1277 1421 +0 1335 1421 +0 1403 1421 +0 1421 1353 +0 1421 1207 +0 1421 885 +0 1557 0 +0 1691 0 +869 1825 0 +1294 1959 0 +1564 2092 0 +1777 2225 0 +1962 2357 0 +2129 2490 0 +2287 2622 0 +2436 2755 0 +2581 2887 0 +2723 3019 0 +2862 3151 0 +2999 3283 0 +3135 3416 0 +3270 3548 0 +3404 3680 0 +3538 3812 0 +3671 3944 0 +3804 4076 0 +3937 4095 0 +0 1037 1429 +0 1065 1427 +0 1101 1424 +0 1144 1421 +0 1196 1416 +0 1248 1416 +0 1310 1416 +0 1381 1416 +0 1416 1367 +0 1416 1225 +0 1416 920 +0 1553 0 +0 1689 0 +960 1823 0 +1332 1958 0 +1585 2091 0 +1790 2224 0 +1970 2357 0 +2136 2489 0 +2291 2622 0 +2440 2755 0 +2584 2887 0 +2724 3019 0 +2863 3151 0 +3000 3283 0 +3135 3416 0 +3270 3548 0 +3404 3680 0 +3538 3812 0 +3671 3944 0 +3804 4076 0 +3937 4095 0 +0 951 1429 +0 985 1427 +0 1027 1424 +0 1077 1421 +0 1137 1416 +0 1206 1410 +0 1273 1410 +0 1350 1410 +0 1410 1383 +0 1410 1248 +0 1410 964 +0 1549 0 +406 1685 0 +1059 1821 0 +1378 1956 0 +1612 2089 0 +1808 2223 0 +1982 2356 0 +2144 2489 0 +2297 2621 0 +2444 2754 0 +2587 2887 0 +2727 3019 0 +2865 3151 0 +3001 3283 0 +3136 3416 0 +3271 3548 0 +3405 3680 0 +3538 3812 0 +3671 3944 0 +3804 4076 0 +3937 4095 0 +0 803 1429 +0 849 1427 +0 904 1424 +0 969 1421 +0 1043 1416 +0 1127 1410 +344 1219 1402 +344 1304 1402 +344 1398 1402 +344 1402 1277 +344 1402 1017 +0 1543 172 +742 1681 0 +1164 1817 0 +1433 1953 0 +1646 2087 0 +1830 2221 0 +1998 2355 0 +2155 2488 0 +2304 2621 0 +2450 2754 0 +2591 2886 0 +2730 3018 0 +2867 3151 0 +3003 3283 0 +3138 3415 0 +3272 3548 0 +3406 3680 0 +3539 3812 0 +3672 3944 0 +3804 4076 0 +3937 4095 0 +0 471 1429 +0 562 1427 +0 662 1424 +0 767 1421 +0 878 1416 +0 994 1410 +344 1114 1402 +695 1236 1390 +695 1343 1390 +695 1390 1313 +695 1390 1078 +479 1534 476 +983 1674 0 +1275 1813 0 +1498 1950 0 +1687 2085 0 +1858 2220 0 +2017 2353 0 +2169 2487 0 +2314 2620 0 +2457 2753 0 +2596 2886 0 +2734 3018 0 +2870 3151 0 +3005 3283 0 +3139 3415 0 +3273 3548 0 +3406 3680 0 +3540 3812 0 +3672 3944 0 +3805 4076 0 +3937 4095 0 +0 0 1429 +0 0 1427 +0 0 1424 +0 141 1421 +0 478 1416 +0 719 1410 +344 919 1402 +695 1095 1390 +940 1258 1374 +940 1374 1357 +940 1374 1150 +926 1523 826 +1183 1666 608 +1391 1807 0 +1572 1945 0 +1738 2082 0 +1894 2217 0 +2042 2352 0 +2187 2486 0 +2328 2619 0 +2467 2752 0 +2603 2885 0 +2739 3018 0 +2874 3151 0 +3008 3283 0 +3141 3415 0 +3275 3548 0 +3408 3680 0 +3540 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +0 0 1429 +0 0 1427 +0 0 1424 +0 0 1421 +0 0 1416 +47 0 1410 +344 345 1402 +695 793 1390 +940 1069 1374 +1142 1286 1352 +1142 1352 1231 +1202 1507 1073 +1360 1654 959 +1510 1798 740 +1655 1939 0 +1797 2077 0 +1936 2214 0 +2074 2349 0 +2210 2484 0 +2345 2618 0 +2479 2751 0 +2613 2885 0 +2746 3017 0 +2879 3150 0 +3012 3282 0 +3144 3415 0 +3277 3547 0 +3409 3680 0 +3541 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +816 0 1429 +833 0 1427 +856 0 1424 +885 0 1421 +920 0 1416 +964 0 1410 +1017 344 1402 +1078 695 1390 +1150 940 1374 +1231 1142 1352 +1320 1320 1320 +1418 1484 1274 +1522 1638 1205 +1633 1787 1090 +1748 1930 872 +1866 2071 79 +1988 2209 0 +2113 2346 0 +2239 2481 0 +2367 2616 0 +2495 2750 0 +2625 2883 0 +2755 3016 0 +2886 3150 0 +3017 3282 0 +3148 3414 0 +3280 3547 0 +3411 3679 0 +3543 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1301 0 1563 +1307 0 1561 +1315 0 1559 +1326 0 1557 +1340 0 1553 +1358 0 1549 +1381 0 1543 +1409 476 1534 +1445 826 1523 +1489 1073 1507 +1484 1274 1418 +1484 1363 1274 +1638 1621 1205 +1740 1787 1090 +1833 1930 872 +1934 2071 79 +2041 2209 0 +2153 2346 0 +2270 2481 0 +2390 2616 0 +2514 2750 0 +2639 2883 0 +2765 3016 0 +2894 3150 0 +3023 3282 0 +3152 3414 0 +3283 3547 0 +3414 3679 0 +3545 3812 0 +3676 3944 0 +3808 4076 0 +3940 4095 0 +1587 0 1696 +1590 0 1695 +1594 0 1693 +1600 0 1691 +1608 0 1689 +1618 0 1685 +1631 0 1681 +1648 0 1674 +1666 608 1663 +1654 959 1608 +1638 1205 1522 +1638 1205 1333 +1638 1414 1205 +1787 1709 1090 +1927 1930 872 +2010 2071 79 +2102 2209 0 +2202 2346 0 +2308 2481 0 +2420 2616 0 +2536 2750 0 +2656 2883 0 +2778 3016 0 +2904 3150 0 +3030 3282 0 +3158 3414 0 +3287 3547 0 +3417 3679 0 +3547 3812 0 +3678 3944 0 +3809 4076 0 +3941 4095 0 +1807 0 1828 +1810 0 1828 +1812 0 1827 +1816 0 1825 +1821 0 1823 +1821 0 1815 +1817 0 1799 +1813 0 1777 +1807 0 1746 +1798 740 1701 +1787 1090 1633 +1787 1090 1491 +1787 1090 1189 +1787 1475 1090 +1930 1805 872 +2071 2044 79 +2174 2209 0 +2260 2346 0 +2355 2481 0 +2456 2616 0 +2565 2750 0 +2678 2883 0 +2796 3016 0 +2917 3150 0 +3040 3282 0 +3165 3414 0 +3293 3547 0 +3421 3679 0 +3551 3812 0 +3680 3944 0 +3811 4076 0 +3942 4095 0 +1961 0 1923 +1961 0 1920 +1960 0 1917 +1959 0 1911 +1958 0 1905 +1956 0 1895 +1953 0 1882 +1950 0 1864 +1945 0 1838 +1939 0 1801 +1930 872 1748 +1930 872 1642 +1930 872 1447 +1930 872 873 +1930 1545 872 +2071 1908 79 +2209 2159 0 +2328 2346 0 +2410 2481 0 +2501 2616 0 +2601 2750 0 +2706 2883 0 +2817 3016 0 +2933 3150 0 +3053 3282 0 +3175 3414 0 +3300 3547 0 +3427 3679 0 +3555 3812 0 +3684 3944 0 +3813 4076 0 +3944 4095 0 +2094 0 2007 +2093 0 2005 +2093 0 2002 +2092 0 1997 +2091 0 1992 +2089 0 1984 +2087 0 1973 +2085 0 1958 +2082 0 1938 +2077 0 1908 +2071 79 1866 +2071 79 1787 +2071 79 1655 +2071 79 1379 +2071 706 79 +2071 1625 79 +2209 2018 0 +2346 2278 0 +2475 2481 0 +2555 2616 0 +2645 2750 0 +2741 2883 0 +2845 3016 0 +2955 3150 0 +3070 3282 0 +3188 3414 0 +3310 3547 0 +3434 3679 0 +3561 3812 0 +3688 3944 0 +3816 4076 0 +3946 4095 0 +2226 0 2100 +2226 0 2098 +2225 0 2095 +2225 0 2092 +2224 0 2087 +2223 0 2081 +2221 0 2072 +2220 0 2060 +2217 0 2044 +2214 0 2021 +2209 0 1988 +2209 0 1929 +2209 0 1836 +2209 0 1671 +2209 0 1270 +2209 303 0 +2209 1713 0 +2346 2132 0 +2481 2401 0 +2616 2613 0 +2697 2750 0 +2784 2883 0 +2880 3016 0 +2982 3150 0 +3091 3282 0 +3205 3414 0 +3323 3547 0 +3444 3679 0 +3568 3812 0 +3694 3944 0 +3821 4076 0 +3950 4095 0 +2358 0 2200 +2358 0 2199 +2358 0 2196 +2357 0 2193 +2357 0 2190 +2356 0 2185 +2355 0 2178 +2353 0 2168 +2352 0 2155 +2349 0 2138 +2346 0 2113 +2346 0 2069 +2346 0 2002 +2346 0 1894 +2346 0 1692 +2346 0 1064 +2346 0 0 +2346 1809 0 +2481 2251 0 +2616 2525 0 +2750 2741 0 +2836 2883 0 +2922 3016 0 +3017 3150 0 +3118 3282 0 +3226 3414 0 +3339 3547 0 +3457 3679 0 +3577 3812 0 +3701 3944 0 +3826 4076 0 +3954 4095 0 +2491 0 2306 +2491 0 2305 +2490 0 2304 +2490 0 2302 +2489 0 2298 +2489 0 2294 +2488 0 2289 +2487 0 2282 +2486 0 2272 +2484 0 2258 +2481 0 2239 +2481 0 2206 +2481 0 2158 +2481 0 2084 +2481 0 1961 +2481 0 1719 +2481 0 415 +2481 0 0 +2481 1913 0 +2616 2372 0 +2750 2651 0 +2883 2869 0 +2974 3016 0 +3059 3150 0 +3152 3282 0 +3253 3414 0 +3361 3547 0 +3473 3679 0 +3590 3812 0 +3711 3944 0 +3834 4076 0 +3959 4095 0 +2623 0 2419 +2623 0 2417 +2623 0 2416 +2622 0 2414 +2622 0 2412 +2621 0 2409 +2621 0 2405 +2620 0 2399 +2619 0 2392 +2618 0 2381 +2616 0 2367 +2616 0 2342 +2616 0 2306 +2616 0 2255 +2616 0 2174 +2616 0 2038 +2616 0 1752 +2616 0 0 +2616 0 0 +2616 2022 0 +2750 2496 0 +2883 2779 0 +3016 2998 0 +3110 3150 0 +3194 3282 0 +3287 3414 0 +3387 3547 0 +3494 3679 0 +3606 3812 0 +3723 3944 0 +3843 4076 0 +3967 4095 0 +2755 0 2535 +2755 0 2535 +2755 0 2533 +2755 0 2532 +2755 0 2530 +2754 0 2528 +2754 0 2525 +2753 0 2521 +2752 0 2514 +2751 0 2506 +2750 0 2495 +2750 0 2477 +2750 0 2451 +2750 0 2414 +2750 0 2359 +2750 0 2273 +2750 0 2124 +2750 0 1794 +2750 0 0 +2750 0 0 +2750 2137 0 +2883 2621 0 +3016 2907 0 +3150 3128 0 +3244 3282 0 +3329 3414 0 +3421 3547 0 +3521 3679 0 +3628 3812 0 +3740 3944 0 +3856 4076 0 +3976 4095 0 +2887 0 2655 +2887 0 2655 +2887 0 2654 +2887 0 2653 +2887 0 2651 +2887 0 2650 +2886 0 2647 +2886 0 2644 +2885 0 2639 +2885 0 2633 +2883 0 2625 +2883 0 2611 +2883 0 2592 +2883 0 2565 +2883 0 2526 +2883 0 2469 +2883 0 2378 +2883 0 2218 +2883 0 1843 +2883 0 0 +2883 0 0 +2883 2255 0 +3016 2749 0 +3150 3038 0 +3282 3259 0 +3379 3414 0 +3462 3547 0 +3554 3679 0 +3654 3812 0 +3761 3944 0 +3872 4076 0 +3989 4095 0 +3019 0 2778 +3019 0 2777 +3019 0 2777 +3019 0 2776 +3019 0 2775 +3019 0 2774 +3018 0 2772 +3018 0 2769 +3018 0 2766 +3017 0 2761 +3016 0 2755 +3016 0 2745 +3016 0 2731 +3016 0 2711 +3016 0 2683 +3016 0 2643 +3016 0 2583 +3016 0 2488 +3016 0 2319 +3016 0 1900 +3016 0 0 +3016 0 0 +3016 2377 0 +3150 2878 0 +3282 3168 0 +3414 3390 0 +3512 3547 0 +3596 3679 0 +3688 3812 0 +3787 3944 0 +3893 4076 0 +4005 4095 0 +3152 0 2903 +3152 0 2903 +3152 0 2903 +3151 0 2902 +3151 0 2901 +3151 0 2900 +3151 0 2898 +3151 0 2896 +3151 0 2894 +3150 0 2891 +3150 0 2886 +3150 0 2878 +3150 0 2868 +3150 0 2853 +3150 0 2833 +3150 0 2804 +3150 0 2763 +3150 0 2702 +3150 0 2604 +3150 0 2427 +3150 0 1969 +3150 0 0 +3150 0 0 +3150 2501 0 +3282 3006 0 +3414 3298 0 +3547 3521 0 +3646 3679 0 +3729 3812 0 +3820 3944 0 +3920 4076 0 +4026 4095 0 +3284 0 3030 +3283 0 3029 +3283 0 3029 +3283 0 3029 +3283 0 3028 +3283 0 3027 +3283 0 3026 +3283 0 3025 +3283 0 3023 +3282 0 3020 +3282 0 3017 +3282 0 3011 +3282 0 3003 +3282 0 2992 +3282 0 2977 +3282 0 2957 +3282 0 2928 +3282 0 2886 +3282 0 2823 +3282 0 2723 +3282 0 2539 +3282 0 2045 +3282 0 0 +3282 0 0 +3282 2627 0 +3414 3137 0 +3547 3429 0 +3679 3653 0 +3778 3812 0 +3862 3944 0 +3953 4076 0 +4053 4095 0 +3416 0 3158 +3416 0 3158 +3416 0 3157 +3416 0 3157 +3416 0 3157 +3416 0 3156 +3415 0 3155 +3415 0 3154 +3415 0 3153 +3415 0 3151 +3414 0 3148 +3414 0 3144 +3414 0 3138 +3414 0 3130 +3414 0 3119 +3414 0 3104 +3414 0 3083 +3414 0 3054 +3414 0 3011 +3414 0 2947 +3414 0 2845 +3414 0 2657 +3414 0 2135 +3414 0 0 +3414 0 0 +3414 2754 0 +3547 3268 0 +3679 3561 0 +3812 3784 0 +3911 3944 0 +3994 4076 0 +4086 4095 0 +3548 0 3287 +3548 0 3287 +3548 0 3287 +3548 0 3286 +3548 0 3286 +3548 0 3286 +3548 0 3285 +3548 0 3284 +3548 0 3283 +3547 0 3282 +3547 0 3280 +3547 0 3277 +3547 0 3272 +3547 0 3266 +3547 0 3258 +3547 0 3247 +3547 0 3232 +3547 0 3211 +3547 0 3181 +3547 0 3138 +3547 0 3074 +3547 0 2970 +3547 0 2778 +3547 0 2228 +3547 0 0 +3547 0 0 +3547 2883 0 +3679 3399 0 +3812 3692 0 +3944 3916 0 +4044 4076 0 +4095 4095 0 +3680 0 3417 +3680 0 3417 +3680 0 3417 +3680 0 3416 +3680 0 3416 +3680 0 3416 +3680 0 3415 +3680 0 3415 +3680 0 3414 +3680 0 3413 +3679 0 3411 +3679 0 3409 +3679 0 3406 +3679 0 3401 +3679 0 3395 +3679 0 3387 +3679 0 3376 +3679 0 3361 +3679 0 3340 +3679 0 3310 +3679 0 3267 +3679 0 3201 +3679 0 3096 +3679 0 2901 +3679 0 2333 +3679 0 0 +3679 0 0 +3679 3013 0 +3812 3530 0 +3944 3824 0 +4076 4048 0 +4095 4095 0 +3812 0 3547 +3812 0 3547 +3812 0 3547 +3812 0 3547 +3812 0 3547 +3812 0 3547 +3812 0 3546 +3812 0 3546 +3812 0 3545 +3812 0 3544 +3812 0 3543 +3812 0 3541 +3812 0 3539 +3812 0 3536 +3812 0 3531 +3812 0 3525 +3812 0 3517 +3812 0 3506 +3812 0 3491 +3812 0 3469 +3812 0 3439 +3812 0 3396 +3812 0 3330 +3812 0 3224 +3812 0 3027 +3812 0 2441 +3812 0 0 +3812 0 0 +3812 3143 0 +3944 3661 0 +4076 3955 0 +4095 4095 0 +3944 0 3678 +3944 0 3678 +3944 0 3678 +3944 0 3678 +3944 0 3678 +3944 0 3677 +3944 0 3677 +3944 0 3677 +3944 0 3676 +3944 0 3676 +3944 0 3675 +3944 0 3674 +3944 0 3672 +3944 0 3669 +3944 0 3666 +3944 0 3662 +3944 0 3656 +3944 0 3648 +3944 0 3636 +3944 0 3621 +3944 0 3600 +3944 0 3569 +3944 0 3526 +3944 0 3459 +3944 0 3353 +3944 0 3154 +3944 0 2553 +3944 0 0 +3944 0 0 +3944 3273 0 +4076 3793 0 +4095 4088 0 +4076 0 3809 +4076 0 3809 +4076 0 3809 +4076 0 3809 +4076 0 3809 +4076 0 3809 +4076 0 3808 +4076 0 3808 +4076 0 3808 +4076 0 3808 +4076 0 3807 +4076 0 3806 +4076 0 3804 +4076 0 3803 +4076 0 3800 +4076 0 3797 +4076 0 3793 +4076 0 3787 +4076 0 3778 +4076 0 3767 +4076 0 3752 +4076 0 3730 +4076 0 3700 +4076 0 3656 +4076 0 3590 +4076 0 3482 +4076 0 3282 +4076 0 2670 +4076 0 0 +4076 0 0 +4076 3404 0 +4095 3925 0 +4095 0 3941 +4095 0 3941 +4095 0 3941 +4095 0 3941 +4095 0 3941 +4095 0 3941 +4095 0 3940 +4095 0 3940 +4095 0 3940 +4095 0 3940 +4095 0 3939 +4095 0 3938 +4095 0 3937 +4095 0 3936 +4095 0 3934 +4095 0 3932 +4095 0 3928 +4095 0 3924 +4095 0 3918 +4095 0 3910 +4095 0 3898 +4095 0 3883 +4095 0 3862 +4095 0 3831 +4095 0 3787 +4095 0 3721 +4095 0 3613 +4095 0 3412 +4095 0 2793 +4095 0 0 +4095 0 0 +4095 3536 0 +0 1304 1563 +0 1318 1563 +0 1335 1563 +0 1357 1563 +0 1385 1563 +0 1421 1563 +0 1463 1563 +0 1515 1563 +0 1563 1548 +0 1563 1458 +0 1563 1301 +0 1563 934 +0 1696 0 +0 1828 0 +726 1961 0 +1336 2094 0 +1648 2226 0 +1880 2358 0 +2075 2491 0 +2248 2623 0 +2409 2755 0 +2562 2887 0 +2708 3019 0 +2851 3152 0 +2991 3284 0 +3129 3416 0 +3266 3548 0 +3401 3680 0 +3535 3812 0 +3669 3944 0 +3803 4076 0 +3936 4095 0 +0 1290 1563 +0 1307 1561 +0 1325 1561 +0 1347 1561 +0 1376 1561 +0 1412 1561 +0 1456 1561 +0 1508 1561 +0 1561 1552 +0 1561 1463 +0 1561 1307 +0 1561 948 +0 1695 0 +0 1828 0 +780 1961 0 +1351 2093 0 +1656 2226 0 +1885 2358 0 +2078 2491 0 +2250 2623 0 +2411 2755 0 +2563 2887 0 +2709 3019 0 +2852 3152 0 +2992 3283 0 +3129 3416 0 +3266 3548 0 +3401 3680 0 +3536 3812 0 +3669 3944 0 +3803 4076 0 +3936 4095 0 +0 1271 1563 +0 1288 1561 +0 1310 1559 +0 1333 1559 +0 1363 1559 +0 1400 1559 +0 1445 1559 +0 1499 1559 +0 1559 1556 +0 1559 1468 +0 1559 1315 +0 1559 966 +0 1693 0 +0 1827 0 +844 1960 0 +1370 2093 0 +1666 2225 0 +1891 2358 0 +2082 2490 0 +2253 2623 0 +2413 2755 0 +2564 2887 0 +2710 3019 0 +2853 3152 0 +2992 3283 0 +3130 3416 0 +3266 3548 0 +3401 3680 0 +3536 3812 0 +3669 3944 0 +3803 4076 0 +3936 4095 0 +0 1244 1563 +0 1262 1561 +0 1285 1559 +0 1315 1557 +0 1345 1557 +0 1384 1557 +0 1430 1557 +0 1486 1557 +0 1551 1557 +0 1557 1476 +0 1557 1326 +0 1557 988 +0 1691 0 +0 1825 0 +917 1959 0 +1394 2092 0 +1679 2225 0 +1899 2357 0 +2087 2490 0 +2256 2622 0 +2415 2755 0 +2566 2887 0 +2712 3019 0 +2854 3151 0 +2993 3283 0 +3130 3416 0 +3267 3548 0 +3401 3680 0 +3536 3812 0 +3669 3944 0 +3803 4076 0 +3936 4095 0 +0 1205 1563 +0 1225 1561 +0 1250 1559 +0 1281 1557 +0 1320 1553 +0 1360 1553 +0 1409 1553 +0 1467 1553 +0 1535 1553 +0 1553 1486 +0 1553 1340 +0 1553 1017 +0 1689 0 +0 1823 0 +1000 1958 0 +1425 2091 0 +1695 2224 0 +1909 2357 0 +2094 2489 0 +2261 2622 0 +2419 2755 0 +2569 2887 0 +2713 3019 0 +2855 3151 0 +2994 3283 0 +3131 3416 0 +3267 3548 0 +3402 3680 0 +3536 3812 0 +3670 3944 0 +3803 4076 0 +3936 4095 0 +0 1148 1563 +0 1170 1561 +0 1198 1559 +0 1233 1557 +0 1276 1553 +0 1328 1549 +0 1380 1549 +0 1442 1549 +0 1513 1549 +0 1549 1499 +0 1549 1358 +0 1549 1053 +0 1685 0 +0 1821 0 +1091 1956 0 +1463 2089 0 +1717 2223 0 +1922 2356 0 +2103 2489 0 +2268 2621 0 +2423 2754 0 +2572 2887 0 +2716 3019 0 +2857 3151 0 +2995 3283 0 +3132 3416 0 +3268 3548 0 +3402 3680 0 +3537 3812 0 +3670 3944 0 +3803 4076 0 +3936 4095 0 +0 1057 1563 +0 1084 1561 +0 1118 1559 +0 1159 1557 +0 1209 1553 +0 1269 1549 +0 1338 1543 +0 1405 1543 +0 1482 1543 +0 1543 1516 +0 1543 1381 +0 1543 1096 +0 1681 0 +536 1817 0 +1190 1953 0 +1509 2087 0 +1744 2221 0 +1940 2355 0 +2115 2488 0 +2276 2621 0 +2429 2754 0 +2576 2886 0 +2719 3018 0 +2859 3151 0 +2997 3283 0 +3133 3415 0 +3269 3548 0 +3403 3680 0 +3537 3812 0 +3670 3944 0 +3803 4076 0 +3937 4095 0 +0 897 1563 +0 935 1561 +0 981 1559 +0 1037 1557 +0 1102 1553 +0 1176 1549 +0 1259 1543 +476 1351 1534 +476 1437 1534 +476 1531 1534 +476 1534 1409 +476 1534 1149 +0 1674 313 +874 1813 0 +1295 1950 0 +1565 2085 0 +1778 2220 0 +1962 2353 0 +2130 2487 0 +2287 2620 0 +2437 2753 0 +2581 2886 0 +2723 3018 0 +2862 3151 0 +2999 3283 0 +3135 3415 0 +3270 3548 0 +3404 3680 0 +3538 3812 0 +3671 3944 0 +3804 4076 0 +3937 4095 0 +0 523 1563 +0 605 1561 +0 696 1559 +0 794 1557 +0 900 1553 +0 1011 1549 +0 1127 1543 +476 1246 1534 +826 1368 1523 +826 1476 1523 +826 1523 1445 +826 1523 1211 +608 1666 609 +1115 1807 0 +1407 1945 0 +1630 2082 0 +1819 2217 0 +1990 2352 0 +2149 2486 0 +2301 2619 0 +2447 2752 0 +2589 2885 0 +2728 3018 0 +2866 3151 0 +3002 3283 0 +3137 3415 0 +3271 3548 0 +3405 3680 0 +3538 3812 0 +3671 3944 0 +3804 4076 0 +3937 4095 0 +0 0 1563 +0 0 1561 +0 0 1559 +0 0 1557 +0 275 1553 +0 611 1549 +0 852 1543 +476 1051 1534 +826 1228 1523 +1073 1390 1507 +1073 1507 1489 +1073 1507 1282 +1056 1654 959 +1315 1798 740 +1523 1939 0 +1704 2077 0 +1870 2214 0 +2025 2349 0 +2174 2484 0 +2319 2618 0 +2460 2751 0 +2599 2885 0 +2735 3017 0 +2871 3150 0 +3006 3282 0 +3140 3415 0 +3274 3547 0 +3407 3680 0 +3540 3812 0 +3673 3944 0 +3805 4076 0 +3937 4095 0 +0 0 1563 +0 0 1561 +0 0 1559 +0 0 1557 +0 0 1553 +0 0 1549 +172 0 1543 +476 479 1534 +826 926 1523 +1073 1202 1507 +1274 1418 1484 +1274 1484 1363 +1333 1638 1205 +1491 1787 1090 +1642 1930 872 +1787 2071 79 +1929 2209 0 +2069 2346 0 +2206 2481 0 +2342 2616 0 +2477 2750 0 +2611 2883 0 +2745 3016 0 +2878 3150 0 +3011 3282 0 +3144 3414 0 +3277 3547 0 +3409 3679 0 +3541 3812 0 +3674 3944 0 +3806 4076 0 +3938 4095 0 +934 0 1563 +948 0 1561 +966 0 1559 +988 0 1557 +1017 0 1553 +1053 0 1549 +1096 0 1543 +1149 476 1534 +1211 826 1523 +1282 1073 1507 +1363 1274 1484 +1453 1453 1453 +1550 1616 1407 +1654 1771 1337 +1765 1919 1223 +1880 2062 1005 +1998 2203 217 +2120 2341 0 +2245 2478 0 +2371 2613 0 +2499 2748 0 +2628 2882 0 +2757 3015 0 +2887 3149 0 +3018 3281 0 +3149 3414 0 +3280 3547 0 +3412 3679 0 +3544 3812 0 +3675 3944 0 +3807 4076 0 +3939 4095 0 +1427 0 1696 +1432 0 1695 +1439 0 1693 +1447 0 1691 +1457 0 1689 +1471 0 1685 +1489 0 1681 +1512 0 1674 +1541 608 1666 +1577 959 1654 +1621 1205 1638 +1616 1407 1550 +1616 1495 1407 +1771 1754 1337 +1872 1919 1223 +1965 2062 1005 +2066 2203 217 +2173 2341 0 +2285 2478 0 +2402 2613 0 +2522 2748 0 +2645 2882 0 +2770 3015 0 +2898 3149 0 +3025 3281 0 +3155 3414 0 +3285 3547 0 +3415 3679 0 +3546 3812 0 +3677 3944 0 +3808 4076 0 +3940 4095 0 +1716 0 1828 +1719 0 1828 +1722 0 1827 +1727 0 1825 +1732 0 1823 +1740 0 1821 +1750 0 1817 +1763 0 1813 +1780 0 1807 +1798 740 1795 +1787 1090 1740 +1771 1337 1654 +1771 1337 1466 +1771 1546 1337 +1919 1841 1223 +2059 2062 1005 +2142 2203 217 +2234 2341 0 +2334 2478 0 +2440 2613 0 +2552 2748 0 +2668 2882 0 +2788 3015 0 +2911 3149 0 +3035 3281 0 +3162 3414 0 +3290 3547 0 +3419 3679 0 +3549 3812 0 +3679 3944 0 +3810 4076 0 +3941 4095 0 +1938 0 1961 +1940 0 1961 +1941 0 1960 +1944 0 1959 +1948 0 1958 +1953 0 1956 +1953 0 1947 +1950 0 1931 +1945 0 1909 +1939 0 1878 +1930 872 1833 +1919 1223 1765 +1919 1223 1624 +1919 1223 1321 +1919 1607 1223 +2062 1937 1005 +2203 2176 217 +2305 2341 0 +2392 2478 0 +2487 2613 0 +2589 2748 0 +2697 2882 0 +2810 3015 0 +2928 3149 0 +3049 3281 0 +3172 3414 0 +3298 3547 0 +3425 3679 0 +3553 3812 0 +3683 3944 0 +3812 4076 0 +3943 4095 0 +2094 0 2058 +2093 0 2056 +2093 0 2053 +2092 0 2049 +2091 0 2044 +2089 0 2037 +2087 0 2027 +2085 0 2014 +2082 0 1996 +2077 0 1970 +2071 79 1934 +2062 1005 1880 +2062 1005 1774 +2062 1005 1579 +2062 1005 1006 +2062 1677 1005 +2203 2041 217 +2341 2291 0 +2460 2478 0 +2542 2613 0 +2634 2748 0 +2733 2882 0 +2838 3015 0 +2950 3149 0 +3065 3281 0 +3185 3414 0 +3307 3547 0 +3432 3679 0 +3559 3812 0 +3687 3944 0 +3816 4076 0 +3946 4095 0 +2226 0 2141 +2226 0 2140 +2225 0 2137 +2225 0 2134 +2224 0 2130 +2223 0 2124 +2221 0 2116 +2220 0 2105 +2217 0 2090 +2214 0 2070 +2209 0 2041 +2203 217 1998 +2203 217 1920 +2203 217 1787 +2203 217 1512 +2203 838 217 +2203 1757 217 +2341 2150 0 +2478 2411 0 +2607 2613 0 +2687 2748 0 +2777 2882 0 +2873 3015 0 +2977 3149 0 +3087 3281 0 +3202 3414 0 +3320 3547 0 +3442 3679 0 +3566 3812 0 +3692 3944 0 +3820 4076 0 +3949 4095 0 +2358 0 2233 +2358 0 2232 +2358 0 2230 +2357 0 2228 +2357 0 2224 +2356 0 2219 +2355 0 2213 +2353 0 2204 +2352 0 2192 +2349 0 2176 +2346 0 2153 +2341 0 2120 +2341 0 2061 +2341 0 1968 +2341 0 1803 +2341 0 1403 +2341 437 0 +2341 1845 0 +2478 2264 0 +2613 2533 0 +2748 2745 0 +2829 2882 0 +2916 3015 0 +3012 3149 0 +3114 3281 0 +3223 3414 0 +3337 3547 0 +3455 3679 0 +3576 3812 0 +3700 3944 0 +3826 4076 0 +3953 4095 0 +2491 0 2333 +2491 0 2332 +2490 0 2331 +2490 0 2329 +2489 0 2326 +2489 0 2322 +2488 0 2317 +2487 0 2310 +2486 0 2301 +2484 0 2288 +2481 0 2270 +2478 0 2245 +2478 0 2201 +2478 0 2134 +2478 0 2026 +2478 0 1824 +2478 0 1199 +2478 0 0 +2478 1941 0 +2613 2382 0 +2748 2657 0 +2882 2873 0 +2968 3015 0 +3055 3149 0 +3149 3281 0 +3250 3414 0 +3358 3547 0 +3472 3679 0 +3589 3812 0 +3710 3944 0 +3833 4076 0 +3959 4095 0 +2623 0 2440 +2623 0 2439 +2623 0 2437 +2622 0 2436 +2622 0 2434 +2621 0 2431 +2621 0 2427 +2620 0 2421 +2619 0 2414 +2618 0 2404 +2616 0 2390 +2613 0 2371 +2613 0 2338 +2613 0 2290 +2613 0 2216 +2613 0 2093 +2613 0 1851 +2613 0 547 +2613 0 0 +2613 2045 0 +2748 2504 0 +2882 2784 0 +3015 3001 0 +3106 3149 0 +3191 3281 0 +3284 3414 0 +3385 3547 0 +3493 3679 0 +3605 3812 0 +3722 3944 0 +3843 4076 0 +3966 4095 0 +2755 0 2552 +2755 0 2551 +2755 0 2550 +2755 0 2549 +2755 0 2547 +2754 0 2545 +2754 0 2541 +2753 0 2537 +2752 0 2532 +2751 0 2524 +2750 0 2514 +2748 0 2499 +2748 0 2474 +2748 0 2439 +2748 0 2387 +2748 0 2306 +2748 0 2170 +2748 0 1885 +2748 0 0 +2748 0 0 +2748 2155 0 +2882 2628 0 +3015 2911 0 +3149 3131 0 +3242 3281 0 +3326 3414 0 +3419 3547 0 +3520 3679 0 +3626 3812 0 +3739 3944 0 +3855 4076 0 +3976 4095 0 +2887 0 2668 +2887 0 2667 +2887 0 2667 +2887 0 2666 +2887 0 2664 +2887 0 2662 +2886 0 2660 +2886 0 2657 +2885 0 2652 +2885 0 2647 +2883 0 2639 +2882 0 2628 +2882 0 2609 +2882 0 2583 +2882 0 2546 +2882 0 2491 +2882 0 2405 +2882 0 2256 +2882 0 1925 +2882 0 0 +2882 0 0 +2882 2269 0 +3015 2753 0 +3149 3040 0 +3281 3260 0 +3376 3414 0 +3461 3547 0 +3553 3679 0 +3653 3812 0 +3760 3944 0 +3872 4076 0 +3988 4095 0 +3019 0 2788 +3019 0 2787 +3019 0 2787 +3019 0 2786 +3019 0 2785 +3019 0 2784 +3018 0 2782 +3018 0 2779 +3018 0 2776 +3017 0 2771 +3016 0 2765 +3015 0 2757 +3015 0 2743 +3015 0 2724 +3015 0 2697 +3015 0 2658 +3015 0 2600 +3015 0 2510 +3015 0 2350 +3015 0 1974 +3015 0 0 +3015 0 0 +3015 2387 0 +3149 2881 0 +3281 3169 0 +3414 3391 0 +3511 3547 0 +3595 3679 0 +3687 3812 0 +3786 3944 0 +3892 4076 0 +4005 4095 0 +3152 0 2911 +3152 0 2910 +3152 0 2910 +3151 0 2909 +3151 0 2908 +3151 0 2907 +3151 0 2906 +3151 0 2904 +3151 0 2902 +3150 0 2898 +3150 0 2894 +3149 0 2887 +3149 0 2877 +3149 0 2863 +3149 0 2843 +3149 0 2815 +3149 0 2775 +3149 0 2715 +3149 0 2620 +3149 0 2452 +3149 0 2033 +3149 0 0 +3149 0 0 +3149 2509 0 +3281 3009 0 +3414 3299 0 +3547 3522 0 +3644 3679 0 +3728 3812 0 +3820 3944 0 +3919 4076 0 +4026 4095 0 +3284 0 3035 +3283 0 3035 +3283 0 3035 +3283 0 3034 +3283 0 3034 +3283 0 3033 +3283 0 3032 +3283 0 3031 +3283 0 3029 +3282 0 3026 +3282 0 3023 +3281 0 3018 +3281 0 3010 +3281 0 2999 +3281 0 2985 +3281 0 2965 +3281 0 2936 +3281 0 2895 +3281 0 2833 +3281 0 2735 +3281 0 2558 +3281 0 2100 +3281 0 0 +3281 0 0 +3281 2633 0 +3414 3139 0 +3547 3430 0 +3679 3653 0 +3777 3812 0 +3861 3944 0 +3953 4076 0 +4052 4095 0 +3416 0 3162 +3416 0 3162 +3416 0 3162 +3416 0 3161 +3416 0 3161 +3416 0 3160 +3415 0 3160 +3415 0 3158 +3415 0 3157 +3415 0 3155 +3414 0 3152 +3414 0 3149 +3414 0 3143 +3414 0 3135 +3414 0 3125 +3414 0 3110 +3414 0 3089 +3414 0 3060 +3414 0 3018 +3414 0 2956 +3414 0 2855 +3414 0 2672 +3414 0 2180 +3414 0 0 +3414 0 0 +3414 2759 0 +3547 3269 0 +3679 3562 0 +3812 3785 0 +3910 3944 0 +3994 4076 0 +4085 4095 0 +3548 0 3290 +3548 0 3290 +3548 0 3290 +3548 0 3290 +3548 0 3289 +3548 0 3289 +3548 0 3288 +3548 0 3287 +3548 0 3286 +3547 0 3285 +3547 0 3283 +3547 0 3280 +3547 0 3276 +3547 0 3270 +3547 0 3262 +3547 0 3251 +3547 0 3236 +3547 0 3216 +3547 0 3186 +3547 0 3144 +3547 0 3080 +3547 0 2977 +3547 0 2790 +3547 0 2265 +3547 0 0 +3547 0 0 +3547 2886 0 +3679 3400 0 +3812 3693 0 +3944 3916 0 +4043 4076 0 +4095 4095 0 +3680 0 3419 +3680 0 3419 +3680 0 3419 +3680 0 3419 +3680 0 3419 +3680 0 3418 +3680 0 3418 +3680 0 3417 +3680 0 3416 +3680 0 3415 +3679 0 3414 +3679 0 3412 +3679 0 3409 +3679 0 3404 +3679 0 3398 +3679 0 3390 +3679 0 3379 +3679 0 3364 +3679 0 3343 +3679 0 3314 +3679 0 3271 +3679 0 3206 +3679 0 3102 +3679 0 2910 +3679 0 2363 +3679 0 0 +3679 0 0 +3679 3015 0 +3812 3531 0 +3944 3824 0 +4076 4048 0 +4095 4095 0 +3812 0 3549 +3812 0 3549 +3812 0 3549 +3812 0 3549 +3812 0 3549 +3812 0 3548 +3812 0 3548 +3812 0 3548 +3812 0 3547 +3812 0 3546 +3812 0 3545 +3812 0 3544 +3812 0 3541 +3812 0 3538 +3812 0 3533 +3812 0 3528 +3812 0 3520 +3812 0 3508 +3812 0 3493 +3812 0 3472 +3812 0 3442 +3812 0 3399 +3812 0 3333 +3812 0 3228 +3812 0 3034 +3812 0 2465 +3812 0 0 +3812 0 0 +3812 3145 0 +3944 3662 0 +4076 3956 0 +4095 4095 0 +3944 0 3679 +3944 0 3679 +3944 0 3679 +3944 0 3679 +3944 0 3679 +3944 0 3679 +3944 0 3679 +3944 0 3678 +3944 0 3678 +3944 0 3677 +3944 0 3676 +3944 0 3675 +3944 0 3673 +3944 0 3671 +3944 0 3668 +3944 0 3663 +3944 0 3657 +3944 0 3649 +3944 0 3638 +3944 0 3623 +3944 0 3602 +3944 0 3571 +3944 0 3528 +3944 0 3462 +3944 0 3356 +3944 0 3159 +3944 0 2572 +3944 0 0 +3944 0 0 +3944 3275 0 +4076 3793 0 +4095 4088 0 +4076 0 3810 +4076 0 3810 +4076 0 3810 +4076 0 3810 +4076 0 3810 +4076 0 3810 +4076 0 3810 +4076 0 3809 +4076 0 3809 +4076 0 3808 +4076 0 3808 +4076 0 3807 +4076 0 3805 +4076 0 3804 +4076 0 3801 +4076 0 3798 +4076 0 3794 +4076 0 3787 +4076 0 3780 +4076 0 3768 +4076 0 3753 +4076 0 3732 +4076 0 3701 +4076 0 3658 +4076 0 3592 +4076 0 3485 +4076 0 3286 +4076 0 2684 +4076 0 0 +4076 0 0 +4076 3405 0 +4095 3926 0 +4095 0 3941 +4095 0 3941 +4095 0 3941 +4095 0 3941 +4095 0 3941 +4095 0 3941 +4095 0 3941 +4095 0 3941 +4095 0 3941 +4095 0 3940 +4095 0 3940 +4095 0 3939 +4095 0 3938 +4095 0 3937 +4095 0 3935 +4095 0 3932 +4095 0 3929 +4095 0 3925 +4095 0 3919 +4095 0 3910 +4095 0 3899 +4095 0 3884 +4095 0 3863 +4095 0 3832 +4095 0 3788 +4095 0 3722 +4095 0 3615 +4095 0 3415 +4095 0 2804 +4095 0 0 +4095 0 0 +4095 3537 0 +0 1434 1696 +0 1444 1696 +0 1457 1696 +0 1475 1696 +0 1496 1696 +0 1524 1696 +0 1559 1696 +0 1601 1696 +0 1653 1696 +0 1696 1677 +0 1696 1587 +0 1696 1427 +0 1696 1056 +0 1828 0 +0 1961 0 +814 2094 0 +1457 2226 0 +1775 2358 0 +2009 2491 0 +2205 2623 0 +2379 2755 0 +2541 2887 0 +2693 3019 0 +2840 3152 0 +2983 3284 0 +3123 3416 0 +3261 3548 0 +3398 3680 0 +3533 3812 0 +3667 3944 0 +3801 4076 0 +3935 4095 0 +0 1424 1696 +0 1436 1695 +0 1450 1695 +0 1467 1695 +0 1489 1695 +0 1517 1695 +0 1552 1695 +0 1596 1695 +0 1647 1695 +0 1695 1680 +0 1695 1590 +0 1695 1432 +0 1695 1066 +0 1828 0 +0 1961 0 +859 2093 0 +1469 2226 0 +1781 2358 0 +2013 2491 0 +2207 2623 0 +2381 2755 0 +2542 2887 0 +2694 3019 0 +2841 3152 0 +2983 3283 0 +3123 3416 0 +3261 3548 0 +3398 3680 0 +3533 3812 0 +3667 3944 0 +3801 4076 0 +3935 4095 0 +0 1410 1696 +0 1422 1695 +0 1439 1693 +0 1456 1693 +0 1479 1693 +0 1508 1693 +0 1544 1693 +0 1588 1693 +0 1640 1693 +0 1693 1683 +0 1693 1594 +0 1693 1439 +0 1693 1080 +0 1827 0 +0 1960 0 +913 2093 0 +1484 2225 0 +1788 2358 0 +2017 2490 0 +2210 2623 0 +2383 2755 0 +2543 2887 0 +2695 3019 0 +2842 3152 0 +2984 3283 0 +3124 3416 0 +3261 3548 0 +3398 3680 0 +3533 3812 0 +3668 3944 0 +3801 4076 0 +3935 4095 0 +0 1390 1696 +0 1403 1695 +0 1420 1693 +0 1442 1691 +0 1465 1691 +0 1495 1691 +0 1532 1691 +0 1577 1691 +0 1631 1691 +0 1691 1688 +0 1691 1600 +0 1691 1447 +0 1691 1098 +0 1825 0 +0 1959 0 +977 2092 0 +1503 2225 0 +1798 2357 0 +2023 2490 0 +2214 2622 0 +2386 2755 0 +2545 2887 0 +2696 3019 0 +2842 3151 0 +2985 3283 0 +3124 3416 0 +3262 3548 0 +3398 3680 0 +3533 3812 0 +3668 3944 0 +3801 4076 0 +3935 4095 0 +0 1362 1696 +0 1376 1695 +0 1394 1693 +0 1417 1691 +0 1446 1689 +0 1477 1689 +0 1515 1689 +0 1562 1689 +0 1617 1689 +0 1683 1689 +0 1689 1608 +0 1689 1457 +0 1689 1120 +0 1823 0 +0 1958 0 +1050 2091 0 +1527 2224 0 +1811 2357 0 +2031 2489 0 +2219 2622 0 +2389 2755 0 +2548 2887 0 +2698 3019 0 +2844 3151 0 +2986 3283 0 +3125 3416 0 +3262 3548 0 +3399 3680 0 +3534 3812 0 +3668 3944 0 +3801 4076 0 +3935 4095 0 +0 1322 1696 +0 1337 1695 +0 1357 1693 +0 1382 1691 +0 1413 1689 +0 1452 1685 +0 1492 1685 +0 1541 1685 +0 1599 1685 +0 1667 1685 +0 1685 1618 +0 1685 1471 +0 1685 1149 +0 1821 0 +0 1956 0 +1133 2089 0 +1557 2223 0 +1828 2356 0 +2041 2489 0 +2226 2621 0 +2394 2754 0 +2551 2887 0 +2701 3019 0 +2845 3151 0 +2987 3283 0 +3126 3416 0 +3263 3548 0 +3399 3680 0 +3534 3812 0 +3668 3944 0 +3802 4076 0 +3935 4095 0 +0 1262 1696 +0 1279 1695 +0 1302 1693 +0 1330 1691 +0 1365 1689 +0 1408 1685 +0 1460 1681 +0 1512 1681 +0 1574 1681 +0 1645 1681 +0 1681 1631 +0 1681 1489 +0 1681 1184 +0 1817 0 +0 1953 0 +1224 2087 0 +1596 2221 0 +1849 2355 0 +2055 2488 0 +2235 2621 0 +2400 2754 0 +2555 2886 0 +2703 3018 0 +2848 3151 0 +2988 3283 0 +3127 3415 0 +3264 3548 0 +3400 3680 0 +3534 3812 0 +3668 3944 0 +3802 4076 0 +3935 4095 0 +0 1167 1696 +0 1188 1695 +0 1216 1693 +0 1249 1691 +0 1291 1689 +0 1341 1685 +0 1401 1681 +0 1470 1674 +0 1537 1674 +0 1614 1674 +0 1674 1648 +0 1674 1512 +0 1674 1228 +0 1813 0 +670 1950 0 +1322 2085 0 +1642 2220 0 +1876 2353 0 +2072 2487 0 +2247 2620 0 +2408 2753 0 +2561 2886 0 +2708 3018 0 +2851 3151 0 +2991 3283 0 +3129 3415 0 +3265 3548 0 +3401 3680 0 +3535 3812 0 +3669 3944 0 +3802 4076 0 +3936 4095 0 +0 998 1696 +0 1029 1695 +0 1067 1693 +0 1113 1691 +0 1169 1689 +0 1233 1685 +0 1308 1681 +0 1391 1674 +608 1483 1666 +608 1569 1666 +608 1663 1666 +608 1666 1541 +608 1666 1281 +0 1807 438 +1007 1945 0 +1428 2082 0 +1697 2217 0 +1910 2352 0 +2094 2486 0 +2262 2619 0 +2419 2752 0 +2569 2885 0 +2714 3018 0 +2855 3151 0 +2994 3283 0 +3131 3415 0 +3267 3548 0 +3402 3680 0 +3536 3812 0 +3670 3944 0 +3803 4076 0 +3936 4095 0 +0 580 1696 +0 653 1695 +0 736 1693 +0 827 1691 +0 926 1689 +0 1031 1685 +0 1142 1681 +0 1258 1674 +608 1378 1666 +959 1500 1654 +959 1608 1654 +959 1654 1577 +959 1654 1343 +742 1798 740 +1248 1939 0 +1539 2077 0 +1762 2214 0 +1951 2349 0 +2122 2484 0 +2281 2618 0 +2433 2751 0 +2579 2885 0 +2721 3017 0 +2860 3150 0 +2998 3282 0 +3134 3415 0 +3269 3547 0 +3404 3680 0 +3537 3812 0 +3671 3944 0 +3803 4076 0 +3937 4095 0 +0 0 1696 +0 0 1695 +0 0 1693 +0 0 1691 +0 0 1689 +0 406 1685 +0 742 1681 +0 983 1674 +608 1183 1666 +959 1360 1654 +1205 1522 1638 +1205 1638 1621 +1205 1638 1414 +1189 1787 1090 +1447 1930 872 +1655 2071 79 +1836 2209 0 +2002 2346 0 +2158 2481 0 +2306 2616 0 +2451 2750 0 +2592 2883 0 +2731 3016 0 +2868 3150 0 +3003 3282 0 +3138 3414 0 +3272 3547 0 +3406 3679 0 +3539 3812 0 +3672 3944 0 +3804 4076 0 +3937 4095 0 +0 0 1696 +0 0 1695 +0 0 1693 +0 0 1691 +0 0 1689 +0 0 1685 +0 0 1681 +313 0 1674 +609 608 1666 +959 1056 1654 +1205 1333 1638 +1407 1550 1616 +1407 1616 1495 +1466 1771 1337 +1624 1919 1223 +1774 2062 1005 +1920 2203 217 +2061 2341 0 +2201 2478 0 +2338 2613 0 +2474 2748 0 +2609 2882 0 +2743 3015 0 +2877 3149 0 +3010 3281 0 +3143 3414 0 +3276 3547 0 +3409 3679 0 +3541 3812 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +1056 0 1696 +1066 0 1695 +1080 0 1693 +1098 0 1691 +1120 0 1689 +1149 0 1685 +1184 0 1681 +1228 0 1674 +1281 608 1666 +1343 959 1654 +1414 1205 1638 +1495 1407 1616 +1585 1585 1585 +1682 1748 1539 +1787 1903 1469 +1897 2051 1355 +2012 2194 1136 +2131 2335 345 +2253 2473 0 +2377 2610 0 +2503 2746 0 +2631 2880 0 +2759 3014 0 +2889 3148 0 +3019 3280 0 +3150 3414 0 +3281 3546 0 +3413 3679 0 +3544 3811 0 +3676 3944 0 +3807 4076 0 +3939 4095 0 +1557 0 1828 +1560 0 1828 +1565 0 1827 +1571 0 1825 +1579 0 1823 +1590 0 1821 +1604 0 1817 +1622 0 1813 +1644 0 1807 +1673 740 1798 +1709 1090 1787 +1754 1337 1771 +1748 1539 1682 +1748 1627 1539 +1903 1885 1469 +2004 2051 1355 +2097 2194 1136 +2198 2335 345 +2305 2473 0 +2417 2610 0 +2534 2746 0 +2654 2880 0 +2777 3014 0 +2903 3148 0 +3029 3280 0 +3158 3414 0 +3287 3546 0 +3417 3679 0 +3547 3811 0 +3678 3944 0 +3809 4076 0 +3941 4095 0 +1847 0 1961 +1849 0 1961 +1851 0 1960 +1854 0 1959 +1859 0 1958 +1865 0 1956 +1872 0 1953 +1882 0 1950 +1895 0 1945 +1912 0 1939 +1930 872 1927 +1919 1223 1872 +1903 1469 1787 +1903 1469 1598 +1903 1678 1469 +2051 1973 1355 +2191 2194 1136 +2274 2335 345 +2366 2473 0 +2466 2610 0 +2572 2746 0 +2684 2880 0 +2800 3014 0 +2920 3148 0 +3043 3280 0 +3168 3414 0 +3294 3546 0 +3422 3679 0 +3552 3811 0 +3681 3944 0 +3812 4076 0 +3942 4095 0 +2069 0 2094 +2070 0 2093 +2071 0 2093 +2073 0 2092 +2076 0 2091 +2080 0 2089 +2085 0 2087 +2085 0 2079 +2082 0 2063 +2077 0 2041 +2071 79 2010 +2062 1005 1965 +2051 1355 1897 +2051 1355 1756 +2051 1355 1453 +2051 1739 1355 +2194 2069 1136 +2335 2308 345 +2438 2473 0 +2524 2610 0 +2619 2746 0 +2721 2880 0 +2829 3014 0 +2942 3148 0 +3060 3280 0 +3181 3414 0 +3304 3546 0 +3430 3679 0 +3557 3811 0 +3685 3944 0 +3814 4076 0 +3945 4095 0 +2226 0 2191 +2226 0 2190 +2225 0 2188 +2225 0 2185 +2224 0 2181 +2223 0 2176 +2221 0 2169 +2220 0 2159 +2217 0 2146 +2214 0 2128 +2209 0 2102 +2203 217 2066 +2194 1136 2012 +2194 1136 1906 +2194 1136 1711 +2194 1136 1137 +2194 1809 1136 +2335 2173 345 +2473 2423 0 +2592 2610 0 +2674 2746 0 +2766 2880 0 +2865 3014 0 +2970 3148 0 +3082 3280 0 +3198 3414 0 +3317 3546 0 +3440 3679 0 +3564 3811 0 +3691 3944 0 +3819 4076 0 +3948 4095 0 +2358 0 2275 +2358 0 2273 +2358 0 2271 +2357 0 2269 +2357 0 2266 +2356 0 2262 +2355 0 2256 +2353 0 2248 +2352 0 2237 +2349 0 2223 +2346 0 2202 +2341 0 2173 +2335 345 2131 +2335 345 2052 +2335 345 1919 +2335 345 1644 +2335 970 345 +2335 1889 345 +2473 2282 0 +2610 2543 0 +2740 2746 0 +2820 2880 0 +2908 3014 0 +3005 3148 0 +3109 3280 0 +3219 3414 0 +3334 3546 0 +3453 3679 0 +3574 3811 0 +3699 3944 0 +3824 4076 0 +3952 4095 0 +2491 0 2367 +2491 0 2366 +2490 0 2364 +2490 0 2362 +2489 0 2360 +2489 0 2356 +2488 0 2352 +2487 0 2345 +2486 0 2336 +2484 0 2325 +2481 0 2308 +2478 0 2285 +2473 0 2253 +2473 0 2194 +2473 0 2100 +2473 0 1935 +2473 0 1535 +2473 557 0 +2473 1977 0 +2610 2396 0 +2746 2665 0 +2880 2877 0 +2961 3014 0 +3049 3148 0 +3144 3280 0 +3247 3414 0 +3355 3546 0 +3469 3679 0 +3587 3811 0 +3708 3944 0 +3832 4076 0 +3958 4095 0 +2623 0 2466 +2623 0 2465 +2623 0 2464 +2622 0 2463 +2622 0 2460 +2621 0 2458 +2621 0 2454 +2620 0 2449 +2619 0 2442 +2618 0 2432 +2616 0 2420 +2613 0 2402 +2610 0 2377 +2610 0 2333 +2610 0 2266 +2610 0 2158 +2610 0 1956 +2610 0 1330 +2610 0 0 +2610 2073 0 +2746 2515 0 +2880 2789 0 +3014 3004 0 +3100 3148 0 +3186 3280 0 +3281 3414 0 +3382 3546 0 +3490 3679 0 +3604 3811 0 +3721 3944 0 +3841 4076 0 +3965 4095 0 +2755 0 2573 +2755 0 2572 +2755 0 2571 +2755 0 2570 +2755 0 2568 +2754 0 2566 +2754 0 2563 +2753 0 2559 +2752 0 2553 +2751 0 2546 +2750 0 2536 +2748 0 2522 +2746 0 2503 +2746 0 2470 +2746 0 2422 +2746 0 2348 +2746 0 2226 +2746 0 1983 +2746 0 678 +2746 0 0 +2746 2177 0 +2880 2636 0 +3014 2915 0 +3148 3133 0 +3238 3280 0 +3323 3414 0 +3416 3546 0 +3517 3679 0 +3625 3811 0 +3737 3944 0 +3854 4076 0 +3975 4095 0 +2887 0 2684 +2887 0 2684 +2887 0 2683 +2887 0 2682 +2887 0 2681 +2887 0 2679 +2886 0 2677 +2886 0 2673 +2885 0 2669 +2885 0 2664 +2883 0 2656 +2882 0 2645 +2880 0 2631 +2880 0 2606 +2880 0 2571 +2880 0 2519 +2880 0 2439 +2880 0 2302 +2880 0 2016 +2880 0 0 +2880 0 0 +2880 2287 0 +3014 2759 0 +3148 3043 0 +3280 3262 0 +3374 3414 0 +3458 3546 0 +3551 3679 0 +3652 3811 0 +3758 3944 0 +3871 4076 0 +3988 4095 0 +3019 0 2800 +3019 0 2800 +3019 0 2799 +3019 0 2798 +3019 0 2797 +3019 0 2796 +3018 0 2794 +3018 0 2792 +3018 0 2789 +3017 0 2784 +3016 0 2778 +3015 0 2770 +3014 0 2759 +3014 0 2741 +3014 0 2715 +3014 0 2678 +3014 0 2623 +3014 0 2536 +3014 0 2388 +3014 0 2056 +3014 0 0 +3014 0 0 +3014 2401 0 +3148 2886 0 +3280 3172 0 +3414 3393 0 +3509 3546 0 +3593 3679 0 +3685 3811 0 +3785 3944 0 +3891 4076 0 +4004 4095 0 +3152 0 2920 +3152 0 2920 +3152 0 2919 +3151 0 2919 +3151 0 2918 +3151 0 2917 +3151 0 2916 +3151 0 2914 +3151 0 2911 +3150 0 2908 +3150 0 2904 +3149 0 2898 +3148 0 2889 +3148 0 2875 +3148 0 2856 +3148 0 2829 +3148 0 2790 +3148 0 2733 +3148 0 2642 +3148 0 2482 +3148 0 2106 +3148 0 0 +3148 0 0 +3148 2520 0 +3280 3013 0 +3414 3301 0 +3546 3523 0 +3643 3679 0 +3727 3811 0 +3819 3944 0 +3918 4076 0 +4025 4095 0 +3284 0 3043 +3283 0 3042 +3283 0 3042 +3283 0 3042 +3283 0 3041 +3283 0 3040 +3283 0 3039 +3283 0 3038 +3283 0 3036 +3282 0 3033 +3282 0 3030 +3281 0 3025 +3280 0 3019 +3280 0 3009 +3280 0 2995 +3280 0 2975 +3280 0 2947 +3280 0 2907 +3280 0 2847 +3280 0 2752 +3280 0 2583 +3280 0 2164 +3280 0 0 +3280 0 0 +3280 2641 0 +3414 3142 0 +3546 3432 0 +3679 3654 0 +3777 3811 0 +3860 3944 0 +3952 4076 0 +4051 4095 0 +3416 0 3168 +3416 0 3168 +3416 0 3167 +3416 0 3167 +3416 0 3166 +3416 0 3166 +3415 0 3165 +3415 0 3164 +3415 0 3163 +3415 0 3161 +3414 0 3158 +3414 0 3155 +3414 0 3150 +3414 0 3142 +3414 0 3132 +3414 0 3117 +3414 0 3097 +3414 0 3069 +3414 0 3027 +3414 0 2966 +3414 0 2867 +3414 0 2691 +3414 0 2234 +3414 0 0 +3414 0 0 +3414 2765 0 +3546 3271 0 +3679 3563 0 +3811 3785 0 +3910 3944 0 +3993 4076 0 +4085 4095 0 +3548 0 3294 +3548 0 3294 +3548 0 3294 +3548 0 3294 +3548 0 3293 +3548 0 3293 +3548 0 3292 +3548 0 3292 +3548 0 3291 +3547 0 3289 +3547 0 3287 +3547 0 3285 +3546 0 3281 +3546 0 3275 +3546 0 3268 +3546 0 3257 +3546 0 3242 +3546 0 3221 +3546 0 3192 +3546 0 3151 +3546 0 3087 +3546 0 2987 +3546 0 2804 +3546 0 2311 +3546 0 0 +3546 0 0 +3546 2891 0 +3679 3401 0 +3811 3694 0 +3944 3917 0 +4043 4076 0 +4095 4095 0 +3680 0 3422 +3680 0 3422 +3680 0 3422 +3680 0 3422 +3680 0 3422 +3680 0 3421 +3680 0 3421 +3680 0 3420 +3680 0 3420 +3680 0 3418 +3679 0 3417 +3679 0 3415 +3679 0 3413 +3679 0 3408 +3679 0 3402 +3679 0 3394 +3679 0 3384 +3679 0 3368 +3679 0 3348 +3679 0 3318 +3679 0 3276 +3679 0 3212 +3679 0 3110 +3679 0 2922 +3679 0 2400 +3679 0 0 +3679 0 0 +3679 3018 0 +3811 3532 0 +3944 3825 0 +4076 4048 0 +4095 4095 0 +3812 0 3552 +3812 0 3551 +3812 0 3551 +3812 0 3551 +3812 0 3551 +3812 0 3551 +3812 0 3550 +3812 0 3550 +3812 0 3549 +3812 0 3548 +3812 0 3547 +3812 0 3546 +3811 0 3544 +3811 0 3541 +3811 0 3536 +3811 0 3530 +3811 0 3522 +3811 0 3511 +3811 0 3496 +3811 0 3475 +3811 0 3446 +3811 0 3403 +3811 0 3338 +3811 0 3234 +3811 0 3043 +3811 0 2494 +3811 0 0 +3811 0 0 +3811 3147 0 +3944 3663 0 +4076 3956 0 +4095 4095 0 +3944 0 3681 +3944 0 3681 +3944 0 3681 +3944 0 3681 +3944 0 3681 +3944 0 3681 +3944 0 3680 +3944 0 3680 +3944 0 3680 +3944 0 3679 +3944 0 3678 +3944 0 3677 +3944 0 3676 +3944 0 3673 +3944 0 3670 +3944 0 3666 +3944 0 3659 +3944 0 3651 +3944 0 3640 +3944 0 3625 +3944 0 3604 +3944 0 3574 +3944 0 3531 +3944 0 3466 +3944 0 3361 +3944 0 3166 +3944 0 2596 +3944 0 0 +3944 0 0 +3944 3277 0 +4076 3794 0 +4095 4088 0 +4076 0 3812 +4076 0 3811 +4076 0 3811 +4076 0 3811 +4076 0 3811 +4076 0 3811 +4076 0 3811 +4076 0 3810 +4076 0 3810 +4076 0 3810 +4076 0 3809 +4076 0 3808 +4076 0 3807 +4076 0 3805 +4076 0 3803 +4076 0 3800 +4076 0 3795 +4076 0 3789 +4076 0 3781 +4076 0 3770 +4076 0 3755 +4076 0 3734 +4076 0 3703 +4076 0 3660 +4076 0 3594 +4076 0 3488 +4076 0 3291 +4076 0 2703 +4076 0 0 +4076 0 0 +4076 3407 0 +4095 3926 0 +4095 0 3942 +4095 0 3942 +4095 0 3942 +4095 0 3942 +4095 0 3942 +4095 0 3942 +4095 0 3942 +4095 0 3942 +4095 0 3941 +4095 0 3941 +4095 0 3941 +4095 0 3940 +4095 0 3939 +4095 0 3938 +4095 0 3936 +4095 0 3934 +4095 0 3930 +4095 0 3926 +4095 0 3920 +4095 0 3912 +4095 0 3901 +4095 0 3885 +4095 0 3864 +4095 0 3834 +4095 0 3790 +4095 0 3724 +4095 0 3617 +4095 0 3419 +4095 0 2818 +4095 0 0 +4095 0 0 +4095 3538 0 +0 1565 1828 +0 1572 1828 +0 1582 1828 +0 1596 1828 +0 1612 1828 +0 1634 1828 +0 1661 1828 +0 1696 1828 +0 1738 1828 +0 1789 1828 +0 1828 1807 +0 1828 1716 +0 1828 1557 +0 1828 1180 +0 1961 0 +0 2094 0 +907 2226 0 +1580 2358 0 +1903 2491 0 +2138 2623 0 +2335 2755 0 +2510 2887 0 +2672 3019 0 +2825 3152 0 +2972 3284 0 +3115 3416 0 +3255 3548 0 +3393 3680 0 +3530 3812 0 +3665 3944 0 +3799 4076 0 +3933 4095 0 +0 1557 1828 +0 1566 1828 +0 1576 1828 +0 1590 1828 +0 1607 1828 +0 1629 1828 +0 1656 1828 +0 1691 1828 +0 1733 1828 +0 1785 1828 +0 1828 1810 +0 1828 1719 +0 1828 1560 +0 1828 1188 +0 1961 0 +0 2093 0 +944 2226 0 +1589 2358 0 +1907 2491 0 +2141 2623 0 +2337 2755 0 +2511 2887 0 +2672 3019 0 +2825 3152 0 +2972 3283 0 +3115 3416 0 +3255 3548 0 +3393 3680 0 +3530 3812 0 +3665 3944 0 +3799 4076 0 +3933 4095 0 +0 1547 1828 +0 1556 1828 +0 1568 1827 +0 1582 1827 +0 1599 1827 +0 1621 1827 +0 1650 1827 +0 1684 1827 +0 1727 1827 +0 1779 1827 +0 1827 1812 +0 1827 1722 +0 1827 1565 +0 1827 1198 +0 1960 0 +0 2093 0 +990 2225 0 +1600 2358 0 +1913 2490 0 +2144 2623 0 +2339 2755 0 +2513 2887 0 +2673 3019 0 +2826 3152 0 +2973 3283 0 +3115 3416 0 +3256 3548 0 +3393 3680 0 +3530 3812 0 +3665 3944 0 +3799 4076 0 +3933 4095 0 +0 1532 1828 +0 1542 1828 +0 1554 1827 +0 1571 1825 +0 1588 1825 +0 1611 1825 +0 1640 1825 +0 1676 1825 +0 1720 1825 +0 1772 1825 +0 1825 1816 +0 1825 1727 +0 1825 1571 +0 1825 1212 +0 1959 0 +0 2092 0 +1044 2225 0 +1615 2357 0 +1920 2490 0 +2149 2622 0 +2342 2755 0 +2515 2887 0 +2675 3019 0 +2827 3151 0 +2973 3283 0 +3116 3416 0 +3256 3548 0 +3394 3680 0 +3530 3812 0 +3665 3944 0 +3799 4076 0 +3933 4095 0 +0 1512 1828 +0 1522 1828 +0 1535 1827 +0 1552 1825 +0 1574 1823 +0 1598 1823 +0 1627 1823 +0 1664 1823 +0 1709 1823 +0 1763 1823 +0 1823 1821 +0 1823 1732 +0 1823 1579 +0 1823 1230 +0 1958 0 +0 2091 0 +1108 2224 0 +1634 2357 0 +1930 2489 0 +2155 2622 0 +2346 2755 0 +2517 2887 0 +2677 3019 0 +2829 3151 0 +2974 3283 0 +3117 3416 0 +3256 3548 0 +3394 3680 0 +3530 3812 0 +3665 3944 0 +3800 4076 0 +3934 4095 0 +0 1484 1828 +0 1494 1828 +0 1508 1827 +0 1526 1825 +0 1549 1823 +0 1579 1821 +0 1609 1821 +0 1648 1821 +0 1694 1821 +0 1750 1821 +0 1815 1821 +0 1821 1740 +0 1821 1590 +0 1821 1253 +0 1956 0 +0 2089 0 +1181 2223 0 +1659 2356 0 +1943 2489 0 +2163 2621 0 +2351 2754 0 +2521 2887 0 +2679 3019 0 +2830 3151 0 +2976 3283 0 +3118 3416 0 +3257 3548 0 +3395 3680 0 +3531 3812 0 +3666 3944 0 +3800 4076 0 +3934 4095 0 +0 1442 1828 +0 1454 1828 +0 1469 1827 +0 1489 1825 +0 1514 1823 +0 1545 1821 +0 1585 1817 +0 1625 1817 +0 1673 1817 +0 1732 1817 +0 1799 1817 +0 1817 1750 +0 1817 1604 +0 1817 1281 +0 1953 0 +0 2087 0 +1264 2221 0 +1689 2355 0 +1960 2488 0 +2173 2621 0 +2358 2754 0 +2526 2886 0 +2683 3018 0 +2833 3151 0 +2977 3283 0 +3119 3415 0 +3258 3548 0 +3395 3680 0 +3531 3812 0 +3666 3944 0 +3800 4076 0 +3934 4095 0 +0 1381 1828 +0 1394 1828 +0 1412 1827 +0 1434 1825 +0 1462 1823 +0 1497 1821 +0 1540 1817 +0 1592 1813 +0 1644 1813 +0 1706 1813 +0 1777 1813 +0 1813 1763 +0 1813 1622 +0 1813 1317 +0 1950 0 +10 2085 0 +1355 2220 0 +1727 2353 0 +1981 2487 0 +2187 2620 0 +2367 2753 0 +2532 2886 0 +2687 3018 0 +2836 3151 0 +2980 3283 0 +3121 3415 0 +3259 3548 0 +3396 3680 0 +3532 3812 0 +3666 3944 0 +3801 4076 0 +3934 4095 0 +0 1283 1828 +0 1300 1828 +0 1321 1827 +0 1348 1825 +0 1382 1823 +0 1423 1821 +0 1474 1817 +0 1533 1813 +0 1602 1807 +0 1669 1807 +0 1746 1807 +0 1807 1780 +0 1807 1644 +0 1807 1360 +0 1945 37 +800 2082 0 +1454 2217 0 +1773 2352 0 +2008 2486 0 +2204 2619 0 +2379 2752 0 +2540 2885 0 +2693 3018 0 +2840 3151 0 +2983 3283 0 +3123 3415 0 +3261 3548 0 +3397 3680 0 +3533 3812 0 +3667 3944 0 +3801 4076 0 +3935 4095 0 +0 1106 1828 +0 1131 1828 +0 1161 1827 +0 1199 1825 +0 1245 1823 +0 1301 1821 +0 1366 1817 +0 1440 1813 +0 1523 1807 +740 1615 1798 +740 1701 1798 +740 1795 1798 +740 1798 1673 +740 1798 1413 +0 1939 573 +1138 2077 0 +1560 2214 0 +1829 2349 0 +2042 2484 0 +2226 2618 0 +2394 2751 0 +2551 2885 0 +2701 3017 0 +2846 3150 0 +2987 3282 0 +3126 3415 0 +3263 3547 0 +3399 3680 0 +3534 3812 0 +3668 3944 0 +3802 4076 0 +3935 4095 0 +0 650 1828 +0 713 1828 +0 786 1827 +0 869 1825 +0 960 1823 +0 1059 1821 +0 1164 1817 +0 1275 1813 +0 1391 1807 +740 1510 1798 +1090 1633 1787 +1090 1740 1787 +1090 1787 1709 +1090 1787 1475 +873 1930 872 +1379 2071 79 +1671 2209 0 +1894 2346 0 +2084 2481 0 +2255 2616 0 +2414 2750 0 +2565 2883 0 +2711 3016 0 +2853 3150 0 +2992 3282 0 +3130 3414 0 +3266 3547 0 +3401 3679 0 +3536 3812 0 +3669 3944 0 +3803 4076 0 +3936 4095 0 +0 0 1828 +0 0 1828 +0 0 1827 +0 0 1825 +0 0 1823 +0 0 1821 +0 536 1817 +0 874 1813 +0 1115 1807 +740 1315 1798 +1090 1491 1787 +1337 1654 1771 +1337 1771 1754 +1337 1771 1546 +1321 1919 1223 +1579 2062 1005 +1787 2203 217 +1968 2341 0 +2134 2478 0 +2290 2613 0 +2439 2748 0 +2583 2882 0 +2724 3015 0 +2863 3149 0 +2999 3281 0 +3135 3414 0 +3270 3547 0 +3404 3679 0 +3538 3812 0 +3671 3944 0 +3804 4076 0 +3937 4095 0 +0 0 1828 +0 0 1828 +0 0 1827 +0 0 1825 +0 0 1823 +0 0 1821 +0 0 1817 +0 0 1813 +438 0 1807 +740 742 1798 +1090 1189 1787 +1337 1466 1771 +1539 1682 1748 +1539 1748 1627 +1598 1903 1469 +1756 2051 1355 +1906 2194 1136 +2052 2335 345 +2194 2473 0 +2333 2610 0 +2470 2746 0 +2606 2880 0 +2741 3014 0 +2875 3148 0 +3009 3280 0 +3142 3414 0 +3275 3546 0 +3408 3679 0 +3541 3811 0 +3673 3944 0 +3805 4076 0 +3938 4095 0 +1180 0 1828 +1188 0 1828 +1198 0 1827 +1212 0 1825 +1230 0 1823 +1253 0 1821 +1281 0 1817 +1317 0 1813 +1360 0 1807 +1413 740 1798 +1475 1090 1787 +1546 1337 1771 +1627 1539 1748 +1717 1717 1717 +1814 1880 1671 +1919 2035 1601 +2029 2183 1487 +2144 2326 1269 +2263 2467 477 +2385 2605 0 +2509 2742 0 +2636 2878 0 +2763 3012 0 +2892 3146 0 +3021 3280 0 +3151 3413 0 +3282 3546 0 +3413 3678 0 +3545 3811 0 +3676 3943 0 +3808 4076 0 +3940 4095 0 +1686 0 1961 +1689 0 1961 +1692 0 1960 +1697 0 1959 +1703 0 1958 +1711 0 1956 +1722 0 1953 +1736 0 1950 +1754 0 1945 +1776 0 1939 +1805 872 1930 +1841 1223 1919 +1885 1469 1903 +1880 1671 1814 +1880 1759 1671 +2035 2017 1601 +2136 2183 1487 +2229 2326 1269 +2330 2467 477 +2437 2605 0 +2550 2742 0 +2666 2878 0 +2786 3012 0 +2910 3146 0 +3034 3280 0 +3162 3413 0 +3290 3546 0 +3419 3678 0 +3549 3811 0 +3679 3943 0 +3810 4076 0 +3941 4095 0 +1977 0 2094 +1979 0 2093 +1981 0 2093 +1983 0 2092 +1986 0 2091 +1991 0 2089 +1996 0 2087 +2004 0 2085 +2014 0 2082 +2027 0 2077 +2044 79 2071 +2062 1005 2059 +2051 1355 2004 +2035 1601 1919 +2035 1601 1730 +2035 1811 1601 +2183 2105 1487 +2323 2326 1269 +2407 2467 477 +2498 2605 0 +2598 2742 0 +2704 2878 0 +2816 3012 0 +2932 3146 0 +3052 3280 0 +3175 3413 0 +3300 3546 0 +3426 3678 0 +3554 3811 0 +3683 3943 0 +3813 4076 0 +3944 4095 0 +2200 0 2226 +2201 0 2226 +2202 0 2225 +2203 0 2225 +2206 0 2224 +2208 0 2223 +2212 0 2221 +2217 0 2220 +2217 0 2211 +2214 0 2195 +2209 0 2174 +2203 217 2142 +2194 1136 2097 +2183 1487 2029 +2183 1487 1888 +2183 1487 1585 +2183 1871 1487 +2326 2202 1269 +2467 2440 477 +2570 2605 0 +2656 2742 0 +2751 2878 0 +2853 3012 0 +2961 3146 0 +3074 3280 0 +3192 3413 0 +3313 3546 0 +3436 3678 0 +3562 3811 0 +3689 3943 0 +3817 4076 0 +3947 4095 0 +2358 0 2325 +2358 0 2324 +2358 0 2322 +2357 0 2320 +2357 0 2317 +2356 0 2313 +2355 0 2308 +2353 0 2301 +2352 0 2291 +2349 0 2278 +2346 0 2260 +2341 0 2234 +2335 345 2198 +2326 1269 2144 +2326 1269 2038 +2326 1269 1843 +2326 1269 1270 +2326 1941 1269 +2467 2305 477 +2605 2556 0 +2724 2742 0 +2807 2878 0 +2898 3012 0 +2997 3146 0 +3102 3280 0 +3214 3413 0 +3330 3546 0 +3449 3678 0 +3572 3811 0 +3697 3943 0 +3823 4076 0 +3951 4095 0 +2491 0 2408 +2491 0 2407 +2490 0 2406 +2490 0 2404 +2489 0 2401 +2489 0 2398 +2488 0 2394 +2487 0 2388 +2486 0 2380 +2484 0 2369 +2481 0 2355 +2478 0 2334 +2473 0 2305 +2467 477 2263 +2467 477 2184 +2467 477 2051 +2467 477 1776 +2467 1099 477 +2467 2021 477 +2605 2414 0 +2742 2675 0 +2872 2878 0 +2952 3012 0 +3041 3146 0 +3138 3280 0 +3242 3413 0 +3351 3546 0 +3466 3678 0 +3585 3811 0 +3706 3943 0 +3830 4076 0 +3957 4095 0 +2623 0 2500 +2623 0 2499 +2623 0 2498 +2622 0 2496 +2622 0 2494 +2621 0 2492 +2621 0 2488 +2620 0 2483 +2619 0 2477 +2618 0 2469 +2616 0 2456 +2613 0 2440 +2610 0 2417 +2605 0 2385 +2605 0 2326 +2605 0 2233 +2605 0 2067 +2605 0 1667 +2605 705 0 +2605 2109 0 +2742 2529 0 +2878 2797 0 +3012 3009 0 +3093 3146 0 +3180 3280 0 +3276 3413 0 +3379 3546 0 +3488 3678 0 +3601 3811 0 +3719 3943 0 +3840 4076 0 +3964 4095 0 +2755 0 2599 +2755 0 2598 +2755 0 2598 +2755 0 2596 +2755 0 2595 +2754 0 2593 +2754 0 2590 +2753 0 2586 +2752 0 2581 +2751 0 2574 +2750 0 2565 +2748 0 2552 +2746 0 2534 +2742 0 2509 +2742 0 2465 +2742 0 2398 +2742 0 2291 +2742 0 2089 +2742 0 1463 +2742 0 0 +2742 2206 0 +2878 2647 0 +3012 2921 0 +3146 3137 0 +3233 3280 0 +3319 3413 0 +3413 3546 0 +3515 3678 0 +3622 3811 0 +3736 3943 0 +3853 4076 0 +3974 4095 0 +2887 0 2705 +2887 0 2705 +2887 0 2704 +2887 0 2703 +2887 0 2702 +2887 0 2700 +2886 0 2698 +2886 0 2695 +2885 0 2691 +2885 0 2685 +2883 0 2678 +2882 0 2668 +2880 0 2654 +2878 0 2636 +2878 0 2602 +2878 0 2554 +2878 0 2480 +2878 0 2358 +2878 0 2115 +2878 0 817 +2878 0 0 +2878 2309 0 +3012 2767 0 +3146 3047 0 +3280 3265 0 +3370 3413 0 +3455 3546 0 +3548 3678 0 +3650 3811 0 +3757 3943 0 +3869 4076 0 +3986 4095 0 +3019 0 2816 +3019 0 2816 +3019 0 2816 +3019 0 2815 +3019 0 2814 +3019 0 2813 +3018 0 2811 +3018 0 2808 +3018 0 2805 +3017 0 2801 +3016 0 2796 +3015 0 2788 +3014 0 2777 +3012 0 2763 +3012 0 2738 +3012 0 2703 +3012 0 2651 +3012 0 2570 +3012 0 2434 +3012 0 2148 +3012 0 0 +3012 0 0 +3012 2419 0 +3146 2892 0 +3280 3175 0 +3413 3395 0 +3506 3546 0 +3590 3678 0 +3683 3811 0 +3784 3943 0 +3890 4076 0 +4003 4095 0 +3152 0 2933 +3152 0 2932 +3152 0 2932 +3151 0 2932 +3151 0 2931 +3151 0 2930 +3151 0 2928 +3151 0 2927 +3151 0 2924 +3150 0 2921 +3150 0 2917 +3149 0 2911 +3148 0 2903 +3146 0 2892 +3146 0 2873 +3146 0 2847 +3146 0 2810 +3146 0 2755 +3146 0 2669 +3146 0 2521 +3146 0 2189 +3146 0 0 +3146 0 0 +3146 2533 0 +3280 3017 0 +3413 3304 0 +3546 3525 0 +3641 3678 0 +3725 3811 0 +3817 3943 0 +3917 4076 0 +4024 4095 0 +3284 0 3052 +3283 0 3052 +3283 0 3052 +3283 0 3051 +3283 0 3051 +3283 0 3050 +3283 0 3049 +3283 0 3047 +3283 0 3046 +3282 0 3043 +3282 0 3040 +3281 0 3035 +3280 0 3029 +3280 0 3021 +3280 0 3007 +3280 0 2988 +3280 0 2961 +3280 0 2922 +3280 0 2865 +3280 0 2773 +3280 0 2613 +3280 0 2237 +3280 0 0 +3280 0 0 +3280 2651 0 +3413 3145 0 +3546 3434 0 +3678 3655 0 +3775 3811 0 +3859 3943 0 +3950 4076 0 +4051 4095 0 +3416 0 3175 +3416 0 3175 +3416 0 3175 +3416 0 3174 +3416 0 3174 +3416 0 3173 +3415 0 3173 +3415 0 3171 +3415 0 3170 +3415 0 3168 +3414 0 3165 +3414 0 3162 +3414 0 3158 +3413 0 3151 +3413 0 3141 +3413 0 3127 +3413 0 3107 +3413 0 3079 +3413 0 3039 +3413 0 2979 +3413 0 2884 +3413 0 2715 +3413 0 2298 +3413 0 0 +3413 0 0 +3413 2773 0 +3546 3274 0 +3678 3564 0 +3811 3786 0 +3909 3943 0 +3992 4076 0 +4084 4095 0 +3548 0 3300 +3548 0 3300 +3548 0 3300 +3548 0 3299 +3548 0 3299 +3548 0 3299 +3548 0 3298 +3548 0 3297 +3548 0 3296 +3547 0 3295 +3547 0 3293 +3547 0 3290 +3546 0 3287 +3546 0 3282 +3546 0 3275 +3546 0 3264 +3546 0 3249 +3546 0 3229 +3546 0 3201 +3546 0 3160 +3546 0 3098 +3546 0 3000 +3546 0 2824 +3546 0 2365 +3546 0 0 +3546 0 0 +3546 2897 0 +3678 3403 0 +3811 3695 0 +3943 3917 0 +4042 4076 0 +4095 4095 0 +3680 0 3427 +3680 0 3426 +3680 0 3426 +3680 0 3426 +3680 0 3426 +3680 0 3426 +3680 0 3425 +3680 0 3425 +3680 0 3424 +3680 0 3423 +3679 0 3421 +3679 0 3419 +3679 0 3417 +3678 0 3413 +3678 0 3407 +3678 0 3400 +3678 0 3389 +3678 0 3374 +3678 0 3354 +3678 0 3325 +3678 0 3282 +3678 0 3220 +3678 0 3119 +3678 0 2936 +3678 0 2445 +3678 0 0 +3678 0 0 +3678 3023 0 +3811 3534 0 +3943 3826 0 +4076 4049 0 +4095 4095 0 +3812 0 3554 +3812 0 3554 +3812 0 3554 +3812 0 3554 +3812 0 3554 +3812 0 3554 +3812 0 3553 +3812 0 3553 +3812 0 3552 +3812 0 3552 +3812 0 3551 +3812 0 3549 +3811 0 3547 +3811 0 3545 +3811 0 3540 +3811 0 3534 +3811 0 3526 +3811 0 3516 +3811 0 3501 +3811 0 3480 +3811 0 3450 +3811 0 3408 +3811 0 3344 +3811 0 3241 +3811 0 3054 +3811 0 2531 +3811 0 0 +3811 0 0 +3811 3151 0 +3943 3664 0 +4076 3957 0 +4095 4095 0 +3944 0 3683 +3944 0 3683 +3944 0 3683 +3944 0 3683 +3944 0 3683 +3944 0 3683 +3944 0 3683 +3944 0 3682 +3944 0 3682 +3944 0 3681 +3944 0 3680 +3944 0 3679 +3944 0 3678 +3943 0 3676 +3943 0 3673 +3943 0 3668 +3943 0 3662 +3943 0 3655 +3943 0 3644 +3943 0 3628 +3943 0 3607 +3943 0 3578 +3943 0 3535 +3943 0 3470 +3943 0 3366 +3943 0 3175 +3943 0 2625 +3943 0 0 +3943 0 0 +3943 3279 0 +4076 3795 0 +4095 4089 0 +4076 0 3813 +4076 0 3813 +4076 0 3813 +4076 0 3813 +4076 0 3813 +4076 0 3813 +4076 0 3812 +4076 0 3812 +4076 0 3812 +4076 0 3812 +4076 0 3811 +4076 0 3810 +4076 0 3809 +4076 0 3808 +4076 0 3805 +4076 0 3802 +4076 0 3798 +4076 0 3792 +4076 0 3784 +4076 0 3773 +4076 0 3757 +4076 0 3736 +4076 0 3706 +4076 0 3663 +4076 0 3597 +4076 0 3492 +4076 0 3297 +4076 0 2726 +4076 0 0 +4076 0 0 +4076 3409 0 +4095 3927 0 +4095 0 3944 +4095 0 3944 +4095 0 3944 +4095 0 3944 +4095 0 3944 +4095 0 3944 +4095 0 3943 +4095 0 3943 +4095 0 3943 +4095 0 3943 +4095 0 3942 +4095 0 3941 +4095 0 3941 +4095 0 3940 +4095 0 3938 +4095 0 3935 +4095 0 3932 +4095 0 3927 +4095 0 3922 +4095 0 3913 +4095 0 3903 +4095 0 3887 +4095 0 3866 +4095 0 3836 +4095 0 3792 +4095 0 3727 +4095 0 3621 +4095 0 3424 +4095 0 2837 +4095 0 0 +4095 0 0 +4095 3539 0 +0 1696 1961 +0 1702 1961 +0 1709 1961 +0 1719 1961 +0 1732 1961 +0 1749 1961 +0 1770 1961 +0 1797 1961 +0 1831 1961 +0 1873 1961 +0 1923 1961 +0 1961 1938 +0 1961 1847 +0 1961 1686 +0 1961 1306 +0 2094 0 +0 2226 0 +1009 2358 0 +1706 2491 0 +2032 2623 0 +2269 2755 0 +2466 2887 0 +2641 3019 0 +2803 3152 0 +2956 3284 0 +3104 3416 0 +3247 3548 0 +3387 3680 0 +3525 3812 0 +3661 3944 0 +3797 4076 0 +3932 4095 0 +0 1690 1961 +0 1697 1961 +0 1705 1961 +0 1715 1961 +0 1728 1961 +0 1745 1961 +0 1766 1961 +0 1793 1961 +0 1828 1961 +0 1870 1961 +0 1920 1961 +0 1961 1940 +0 1961 1849 +0 1961 1689 +0 1961 1312 +0 2093 0 +0 2226 0 +1039 2358 0 +1713 2491 0 +2035 2623 0 +2271 2755 0 +2467 2887 0 +2642 3019 0 +2804 3152 0 +2957 3283 0 +3104 3416 0 +3247 3548 0 +3387 3680 0 +3525 3812 0 +3662 3944 0 +3797 4076 0 +3932 4095 0 +0 1682 1961 +0 1689 1961 +0 1699 1960 +0 1708 1960 +0 1722 1960 +0 1739 1960 +0 1761 1960 +0 1789 1960 +0 1823 1960 +0 1865 1960 +0 1917 1960 +0 1960 1941 +0 1960 1851 +0 1960 1692 +0 1960 1320 +0 2093 0 +0 2225 0 +1076 2358 0 +1722 2490 0 +2039 2623 0 +2274 2755 0 +2469 2887 0 +2643 3019 0 +2805 3152 0 +2957 3283 0 +3104 3416 0 +3247 3548 0 +3387 3680 0 +3525 3812 0 +3662 3944 0 +3797 4076 0 +3932 4095 0 +0 1672 1961 +0 1679 1961 +0 1688 1960 +0 1700 1959 +0 1714 1959 +0 1731 1959 +0 1754 1959 +0 1781 1959 +0 1817 1959 +0 1860 1959 +0 1911 1959 +0 1959 1944 +0 1959 1854 +0 1959 1697 +0 1959 1331 +0 2092 0 +0 2225 0 +1122 2357 0 +1733 2490 0 +2045 2622 0 +2277 2755 0 +2471 2887 0 +2645 3019 0 +2806 3151 0 +2958 3283 0 +3105 3416 0 +3248 3548 0 +3388 3680 0 +3526 3812 0 +3662 3944 0 +3797 4076 0 +3932 4095 0 +0 1657 1961 +0 1664 1961 +0 1674 1960 +0 1686 1959 +0 1703 1958 +0 1721 1958 +0 1743 1958 +0 1772 1958 +0 1808 1958 +0 1852 1958 +0 1905 1958 +0 1958 1948 +0 1958 1859 +0 1958 1703 +0 1958 1344 +0 2091 0 +0 2224 0 +1176 2357 0 +1748 2489 0 +2052 2622 0 +2281 2755 0 +2474 2887 0 +2647 3019 0 +2807 3151 0 +2959 3283 0 +3106 3416 0 +3248 3548 0 +3388 3680 0 +3526 3812 0 +3662 3944 0 +3797 4076 0 +3932 4095 0 +0 1636 1961 +0 1644 1961 +0 1654 1960 +0 1667 1959 +0 1684 1958 +0 1706 1956 +0 1730 1956 +0 1759 1956 +0 1796 1956 +0 1841 1956 +0 1895 1956 +0 1956 1953 +0 1956 1865 +0 1956 1711 +0 1956 1362 +0 2089 0 +0 2223 0 +1240 2356 0 +1767 2489 0 +2062 2621 0 +2287 2754 0 +2478 2887 0 +2649 3019 0 +2809 3151 0 +2960 3283 0 +3106 3416 0 +3249 3548 0 +3388 3680 0 +3526 3812 0 +3662 3944 0 +3797 4076 0 +3932 4095 0 +0 1607 1961 +0 1615 1961 +0 1626 1960 +0 1640 1959 +0 1658 1958 +0 1681 1956 +0 1711 1953 +0 1742 1953 +0 1779 1953 +0 1826 1953 +0 1882 1953 +0 1947 1953 +0 1953 1872 +0 1953 1722 +0 1953 1385 +0 2087 0 +0 2221 0 +1313 2355 0 +1791 2488 0 +2075 2621 0 +2295 2754 0 +2483 2886 0 +2653 3018 0 +2812 3151 0 +2962 3283 0 +3108 3415 0 +3250 3548 0 +3389 3680 0 +3527 3812 0 +3663 3944 0 +3798 4076 0 +3932 4095 0 +0 1565 1961 +0 1574 1961 +0 1586 1960 +0 1601 1959 +0 1621 1958 +0 1646 1956 +0 1678 1953 +0 1716 1950 +0 1757 1950 +0 1806 1950 +0 1864 1950 +0 1931 1950 +0 1950 1882 +0 1950 1736 +0 1950 1413 +0 2085 0 +0 2220 0 +1396 2353 0 +1822 2487 0 +2092 2620 0 +2305 2753 0 +2490 2886 0 +2658 3018 0 +2815 3151 0 +2965 3283 0 +3110 3415 0 +3251 3548 0 +3390 3680 0 +3528 3812 0 +3663 3944 0 +3798 4076 0 +3932 4095 0 +0 1503 1961 +0 1513 1961 +0 1526 1960 +0 1544 1959 +0 1566 1958 +0 1594 1956 +0 1629 1953 +0 1672 1950 +0 1724 1945 +0 1776 1945 +0 1838 1945 +0 1909 1945 +0 1945 1895 +0 1945 1754 +0 1945 1449 +0 2082 0 +140 2217 0 +1487 2352 0 +1859 2486 0 +2113 2619 0 +2319 2752 0 +2499 2885 0 +2664 3018 0 +2819 3151 0 +2968 3283 0 +3112 3415 0 +3253 3548 0 +3392 3680 0 +3528 3812 0 +3664 3944 0 +3798 4076 0 +3933 4095 0 +0 1402 1961 +0 1415 1961 +0 1431 1960 +0 1453 1959 +0 1480 1958 +0 1514 1956 +0 1555 1953 +0 1606 1950 +0 1665 1945 +0 1734 1939 +0 1801 1939 +0 1878 1939 +0 1939 1912 +0 1939 1776 +0 1939 1492 +0 2077 173 +932 2214 0 +1586 2349 0 +1906 2484 0 +2140 2618 0 +2336 2751 0 +2511 2885 0 +2672 3017 0 +2825 3150 0 +2972 3282 0 +3115 3415 0 +3255 3547 0 +3393 3680 0 +3530 3812 0 +3665 3944 0 +3799 4076 0 +3933 4095 0 +0 1220 1961 +0 1238 1961 +0 1263 1960 +0 1294 1959 +0 1332 1958 +0 1378 1956 +0 1433 1953 +0 1498 1950 +0 1572 1945 +0 1655 1939 +872 1748 1930 +872 1833 1930 +872 1927 1930 +872 1930 1805 +872 1930 1545 +79 2071 706 +1270 2209 0 +1692 2346 0 +1961 2481 0 +2174 2616 0 +2359 2750 0 +2526 2883 0 +2683 3016 0 +2833 3150 0 +2977 3282 0 +3119 3414 0 +3258 3547 0 +3395 3679 0 +3531 3812 0 +3666 3944 0 +3800 4076 0 +3934 4095 0 +0 726 1961 +0 780 1961 +0 844 1960 +0 917 1959 +0 1000 1958 +0 1091 1956 +0 1190 1953 +0 1295 1950 +0 1407 1945 +0 1523 1939 +872 1642 1930 +1223 1765 1919 +1223 1872 1919 +1223 1919 1841 +1223 1919 1607 +1006 2062 1005 +1512 2203 217 +1803 2341 0 +2026 2478 0 +2216 2613 0 +2387 2748 0 +2546 2882 0 +2697 3015 0 +2843 3149 0 +2985 3281 0 +3125 3414 0 +3262 3547 0 +3398 3679 0 +3533 3812 0 +3668 3944 0 +3801 4076 0 +3935 4095 0 +0 0 1961 +0 0 1961 +0 0 1960 +0 0 1959 +0 0 1958 +0 0 1956 +0 0 1953 +0 670 1950 +0 1007 1945 +0 1248 1939 +872 1447 1930 +1223 1624 1919 +1469 1787 1903 +1469 1903 1885 +1469 1903 1678 +1453 2051 1355 +1711 2194 1136 +1919 2335 345 +2100 2473 0 +2266 2610 0 +2422 2746 0 +2571 2880 0 +2715 3014 0 +2856 3148 0 +2995 3280 0 +3132 3414 0 +3268 3546 0 +3402 3679 0 +3536 3811 0 +3670 3944 0 +3803 4076 0 +3936 4095 0 +0 0 1961 +0 0 1961 +0 0 1960 +0 0 1959 +0 0 1958 +0 0 1956 +0 0 1953 +0 0 1950 +37 0 1945 +573 0 1939 +872 873 1930 +1223 1321 1919 +1469 1598 1903 +1671 1814 1880 +1671 1880 1759 +1730 2035 1601 +1888 2183 1487 +2038 2326 1269 +2184 2467 477 +2326 2605 0 +2465 2742 0 +2602 2878 0 +2738 3012 0 +2873 3146 0 +3007 3280 0 +3141 3413 0 +3275 3546 0 +3407 3678 0 +3540 3811 0 +3673 3943 0 +3805 4076 0 +3938 4095 0 +1306 0 1961 +1312 0 1961 +1320 0 1960 +1331 0 1959 +1344 0 1958 +1362 0 1956 +1385 0 1953 +1413 0 1950 +1449 0 1945 +1492 0 1939 +1545 872 1930 +1607 1223 1919 +1678 1469 1903 +1759 1671 1880 +1849 1849 1849 +1946 2013 1803 +2051 2167 1733 +2161 2315 1619 +2276 2459 1401 +2395 2599 611 +2517 2738 0 +2641 2874 0 +2767 3010 0 +2895 3144 0 +3024 3278 0 +3154 3412 0 +3284 3545 0 +3414 3678 0 +3545 3810 0 +3677 3943 0 +3808 4075 0 +3940 4095 0 +1816 0 2094 +1818 0 2093 +1821 0 2093 +1824 0 2092 +1829 0 2091 +1835 0 2089 +1843 0 2087 +1854 0 2085 +1868 0 2082 +1886 0 2077 +1908 79 2071 +1937 1005 2062 +1973 1355 2051 +2017 1601 2035 +2013 1803 1946 +2013 1891 1803 +2167 2149 1733 +2268 2315 1619 +2362 2459 1401 +2462 2599 611 +2569 2738 0 +2681 2874 0 +2798 3010 0 +2919 3144 0 +3041 3278 0 +3167 3412 0 +3294 3545 0 +3422 3678 0 +3551 3810 0 +3681 3943 0 +3811 4075 0 +3942 4095 0 +2108 0 2226 +2109 0 2226 +2111 0 2225 +2112 0 2225 +2115 0 2224 +2118 0 2223 +2123 0 2221 +2128 0 2220 +2136 0 2217 +2146 0 2214 +2159 0 2209 +2176 217 2203 +2194 1136 2191 +2183 1487 2136 +2167 1733 2051 +2167 1733 1862 +2167 1943 1733 +2315 2237 1619 +2455 2459 1401 +2538 2599 611 +2631 2738 0 +2730 2874 0 +2836 3010 0 +2948 3144 0 +3064 3278 0 +3184 3412 0 +3307 3545 0 +3432 3678 0 +3559 3810 0 +3687 3943 0 +3816 4075 0 +3945 4095 0 +2332 0 2358 +2332 0 2358 +2333 0 2358 +2334 0 2357 +2335 0 2357 +2338 0 2356 +2340 0 2355 +2344 0 2353 +2349 0 2352 +2349 0 2343 +2346 0 2328 +2341 0 2305 +2335 345 2274 +2326 1269 2229 +2315 1619 2161 +2315 1619 2020 +2315 1619 1718 +2315 2003 1619 +2459 2334 1401 +2599 2572 611 +2702 2738 0 +2788 2874 0 +2883 3010 0 +2985 3144 0 +3093 3278 0 +3206 3412 0 +3324 3545 0 +3445 3678 0 +3569 3810 0 +3694 3943 0 +3821 4075 0 +3950 4095 0 +2491 0 2458 +2491 0 2457 +2490 0 2456 +2490 0 2454 +2489 0 2452 +2489 0 2449 +2488 0 2445 +2487 0 2440 +2486 0 2433 +2484 0 2423 +2481 0 2410 +2478 0 2392 +2473 0 2366 +2467 477 2330 +2459 1401 2276 +2459 1401 2171 +2459 1401 1976 +2459 1401 1403 +2459 2073 1401 +2599 2437 611 +2738 2688 0 +2856 2874 0 +2939 3010 0 +3030 3144 0 +3129 3278 0 +3234 3412 0 +3346 3545 0 +3462 3678 0 +3582 3810 0 +3704 3943 0 +3829 4075 0 +3955 4095 0 +2623 0 2541 +2623 0 2540 +2623 0 2539 +2622 0 2538 +2622 0 2536 +2621 0 2533 +2621 0 2530 +2620 0 2526 +2619 0 2520 +2618 0 2512 +2616 0 2501 +2613 0 2487 +2610 0 2466 +2605 0 2437 +2599 611 2395 +2599 611 2316 +2599 611 2183 +2599 611 1908 +2599 1236 611 +2599 2153 611 +2738 2547 0 +2874 2807 0 +3004 3010 0 +3084 3144 0 +3173 3278 0 +3270 3412 0 +3374 3545 0 +3483 3678 0 +3598 3810 0 +3717 3943 0 +3838 4075 0 +3963 4095 0 +2755 0 2632 +2755 0 2632 +2755 0 2631 +2755 0 2630 +2755 0 2628 +2754 0 2627 +2754 0 2624 +2753 0 2620 +2752 0 2616 +2751 0 2609 +2750 0 2601 +2748 0 2589 +2746 0 2572 +2742 0 2550 +2738 0 2517 +2738 0 2458 +2738 0 2365 +2738 0 2200 +2738 0 1799 +2738 817 0 +2738 2241 0 +2874 2661 0 +3010 2928 0 +3144 3141 0 +3225 3278 0 +3313 3412 0 +3408 3545 0 +3511 3678 0 +3620 3810 0 +3733 3943 0 +3851 4075 0 +3972 4095 0 +2887 0 2732 +2887 0 2731 +2887 0 2731 +2887 0 2730 +2887 0 2728 +2887 0 2727 +2886 0 2725 +2886 0 2722 +2885 0 2718 +2885 0 2713 +2883 0 2706 +2882 0 2697 +2880 0 2684 +2878 0 2666 +2874 0 2641 +2874 0 2597 +2874 0 2530 +2874 0 2423 +2874 0 2220 +2874 0 1596 +2874 0 0 +2874 2338 0 +3010 2778 0 +3144 3053 0 +3278 3269 0 +3365 3412 0 +3451 3545 0 +3545 3678 0 +3647 3810 0 +3755 3943 0 +3868 4075 0 +3985 4095 0 +3019 0 2837 +3019 0 2837 +3019 0 2836 +3019 0 2836 +3019 0 2835 +3019 0 2834 +3018 0 2832 +3018 0 2830 +3018 0 2827 +3017 0 2823 +3016 0 2817 +3015 0 2810 +3014 0 2800 +3012 0 2786 +3010 0 2767 +3010 0 2734 +3010 0 2686 +3010 0 2612 +3010 0 2489 +3010 0 2247 +3010 0 922 +3010 0 0 +3010 2441 0 +3144 2901 0 +3278 3180 0 +3412 3397 0 +3502 3545 0 +3587 3678 0 +3680 3810 0 +3781 3943 0 +3889 4075 0 +4002 4095 0 +3152 0 2949 +3152 0 2949 +3152 0 2948 +3151 0 2948 +3151 0 2947 +3151 0 2946 +3151 0 2945 +3151 0 2943 +3151 0 2941 +3150 0 2938 +3150 0 2933 +3149 0 2928 +3148 0 2920 +3146 0 2910 +3144 0 2895 +3144 0 2870 +3144 0 2835 +3144 0 2783 +3144 0 2703 +3144 0 2566 +3144 0 2280 +3144 0 0 +3144 0 0 +3144 2551 0 +3278 3023 0 +3412 3307 0 +3545 3526 0 +3638 3678 0 +3722 3810 0 +3815 3943 0 +3916 4075 0 +4023 4095 0 +3284 0 3065 +3283 0 3065 +3283 0 3064 +3283 0 3064 +3283 0 3063 +3283 0 3062 +3283 0 3062 +3283 0 3060 +3283 0 3059 +3282 0 3056 +3282 0 3053 +3281 0 3049 +3280 0 3043 +3280 0 3034 +3278 0 3024 +3278 0 3005 +3278 0 2979 +3278 0 2942 +3278 0 2886 +3278 0 2800 +3278 0 2651 +3278 0 2320 +3278 0 0 +3278 0 0 +3278 2665 0 +3412 3150 0 +3545 3436 0 +3678 3657 0 +3773 3810 0 +3857 3943 0 +3949 4075 0 +4049 4095 0 +3416 0 3184 +3416 0 3184 +3416 0 3184 +3416 0 3184 +3416 0 3184 +3416 0 3183 +3415 0 3182 +3415 0 3181 +3415 0 3180 +3415 0 3178 +3414 0 3175 +3414 0 3172 +3414 0 3168 +3413 0 3162 +3412 0 3154 +3412 0 3140 +3412 0 3120 +3412 0 3093 +3412 0 3055 +3412 0 2997 +3412 0 2906 +3412 0 2746 +3412 0 2371 +3412 0 0 +3412 0 0 +3412 2784 0 +3545 3278 0 +3678 3566 0 +3810 3787 0 +3907 3943 0 +3991 4075 0 +4083 4095 0 +3548 0 3307 +3548 0 3307 +3548 0 3307 +3548 0 3307 +3548 0 3307 +3548 0 3306 +3548 0 3305 +3548 0 3305 +3548 0 3303 +3547 0 3302 +3547 0 3300 +3547 0 3298 +3546 0 3294 +3546 0 3290 +3545 0 3284 +3545 0 3273 +3545 0 3259 +3545 0 3239 +3545 0 3211 +3545 0 3171 +3545 0 3111 +3545 0 3016 +3545 0 2848 +3545 0 2429 +3545 0 0 +3545 0 0 +3545 2905 0 +3678 3406 0 +3810 3696 0 +3943 3918 0 +4041 4075 0 +4095 4095 0 +3680 0 3432 +3680 0 3432 +3680 0 3432 +3680 0 3432 +3680 0 3431 +3680 0 3431 +3680 0 3431 +3680 0 3430 +3680 0 3429 +3680 0 3428 +3679 0 3427 +3679 0 3425 +3679 0 3422 +3678 0 3419 +3678 0 3414 +3678 0 3407 +3678 0 3396 +3678 0 3381 +3678 0 3361 +3678 0 3333 +3678 0 3291 +3678 0 3230 +3678 0 3132 +3678 0 2955 +3678 0 2499 +3678 0 0 +3678 0 0 +3678 3029 0 +3810 3536 0 +3943 3827 0 +4075 4049 0 +4095 4095 0 +3812 0 3559 +3812 0 3559 +3812 0 3559 +3812 0 3558 +3812 0 3558 +3812 0 3558 +3812 0 3558 +3812 0 3557 +3812 0 3557 +3812 0 3556 +3812 0 3555 +3812 0 3553 +3811 0 3552 +3811 0 3549 +3810 0 3545 +3810 0 3540 +3810 0 3532 +3810 0 3521 +3810 0 3506 +3810 0 3486 +3810 0 3457 +3810 0 3415 +3810 0 3352 +3810 0 3251 +3810 0 3069 +3810 0 2576 +3810 0 0 +3810 0 0 +3810 3155 0 +3943 3665 0 +4075 3958 0 +4095 4095 0 +3944 0 3687 +3944 0 3687 +3944 0 3687 +3944 0 3686 +3944 0 3686 +3944 0 3686 +3944 0 3686 +3944 0 3686 +3944 0 3685 +3944 0 3685 +3944 0 3684 +3944 0 3683 +3944 0 3681 +3943 0 3679 +3943 0 3677 +3943 0 3672 +3943 0 3666 +3943 0 3659 +3943 0 3648 +3943 0 3632 +3943 0 3612 +3943 0 3583 +3943 0 3540 +3943 0 3476 +3943 0 3374 +3943 0 3186 +3943 0 2662 +3943 0 0 +3943 0 0 +3943 3283 0 +4075 3796 0 +4095 4089 0 +4076 0 3816 +4076 0 3816 +4076 0 3816 +4076 0 3815 +4076 0 3815 +4076 0 3815 +4076 0 3815 +4076 0 3815 +4076 0 3814 +4076 0 3814 +4076 0 3813 +4076 0 3812 +4076 0 3812 +4076 0 3810 +4075 0 3808 +4075 0 3805 +4075 0 3801 +4075 0 3795 +4075 0 3787 +4075 0 3776 +4075 0 3760 +4075 0 3739 +4075 0 3710 +4075 0 3667 +4075 0 3602 +4075 0 3498 +4075 0 3306 +4075 0 2756 +4075 0 0 +4075 0 0 +4075 3411 0 +4095 3927 0 +4095 0 3946 +4095 0 3946 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3945 +4095 0 3944 +4095 0 3944 +4095 0 3943 +4095 0 3942 +4095 0 3941 +4095 0 3940 +4095 0 3937 +4095 0 3934 +4095 0 3930 +4095 0 3924 +4095 0 3916 +4095 0 3905 +4095 0 3889 +4095 0 3868 +4095 0 3838 +4095 0 3795 +4095 0 3730 +4095 0 3625 +4095 0 3430 +4095 0 2861 +4095 0 0 +4095 0 0 +4095 3541 0 +0 1827 2094 +0 1831 2094 +0 1837 2094 +0 1845 2094 +0 1855 2094 +0 1867 2094 +0 1884 2094 +0 1905 2094 +0 1932 2094 +0 1966 2094 +0 2007 2094 +0 2058 2094 +0 2094 2069 +0 2094 1977 +0 2094 1816 +0 2094 1433 +0 2226 0 +0 2358 0 +1120 2491 0 +1833 2623 0 +2162 2755 0 +2400 2887 0 +2597 3019 0 +2773 3152 0 +2935 3284 0 +3088 3416 0 +3236 3548 0 +3379 3680 0 +3519 3812 0 +3657 3944 0 +3793 4076 0 +3929 4095 0 +0 1823 2094 +0 1828 2093 +0 1834 2093 +0 1841 2093 +0 1851 2093 +0 1864 2093 +0 1881 2093 +0 1902 2093 +0 1929 2093 +0 1963 2093 +0 2005 2093 +0 2056 2093 +0 2093 2070 +0 2093 1979 +0 2093 1818 +0 2093 1438 +0 2226 0 +0 2358 0 +1143 2491 0 +1838 2623 0 +2164 2755 0 +2401 2887 0 +2598 3019 0 +2773 3152 0 +2935 3283 0 +3088 3416 0 +3236 3548 0 +3379 3680 0 +3519 3812 0 +3657 3944 0 +3793 4076 0 +3929 4095 0 +0 1817 2094 +0 1822 2093 +0 1829 2093 +0 1837 2093 +0 1847 2093 +0 1860 2093 +0 1877 2093 +0 1898 2093 +0 1926 2093 +0 1960 2093 +0 2002 2093 +0 2053 2093 +0 2093 2071 +0 2093 1981 +0 2093 1821 +0 2093 1444 +0 2225 0 +0 2358 0 +1173 2490 0 +1845 2623 0 +2167 2755 0 +2403 2887 0 +2599 3019 0 +2774 3152 0 +2936 3283 0 +3089 3416 0 +3236 3548 0 +3379 3680 0 +3519 3812 0 +3657 3944 0 +3793 4076 0 +3929 4095 0 +0 1809 2094 +0 1814 2093 +0 1821 2093 +0 1830 2092 +0 1841 2092 +0 1854 2092 +0 1871 2092 +0 1893 2092 +0 1920 2092 +0 1955 2092 +0 1997 2092 +0 2049 2092 +0 2092 2073 +0 2092 1983 +0 2092 1824 +0 2092 1452 +0 2225 0 +0 2357 0 +1210 2490 0 +1853 2622 0 +2172 2755 0 +2406 2887 0 +2601 3019 0 +2775 3151 0 +2936 3283 0 +3089 3416 0 +3237 3548 0 +3379 3680 0 +3520 3812 0 +3657 3944 0 +3794 4076 0 +3929 4095 0 +0 1798 2094 +0 1804 2093 +0 1811 2093 +0 1820 2092 +0 1832 2091 +0 1846 2091 +0 1863 2091 +0 1885 2091 +0 1913 2091 +0 1949 2091 +0 1992 2091 +0 2044 2091 +0 2091 2076 +0 2091 1986 +0 2091 1829 +0 2091 1463 +0 2224 0 +0 2357 0 +1255 2489 0 +1865 2622 0 +2177 2755 0 +2409 2887 0 +2603 3019 0 +2777 3151 0 +2938 3283 0 +3090 3416 0 +3237 3548 0 +3380 3680 0 +3520 3812 0 +3658 3944 0 +3794 4076 0 +3929 4095 0 +0 1783 2094 +0 1789 2093 +0 1796 2093 +0 1806 2092 +0 1819 2091 +0 1835 2089 +0 1853 2089 +0 1875 2089 +0 1904 2089 +0 1940 2089 +0 1984 2089 +0 2037 2089 +0 2089 2080 +0 2089 1991 +0 2089 1835 +0 2089 1476 +0 2223 0 +0 2356 0 +1310 2489 0 +1880 2621 0 +2185 2754 0 +2413 2887 0 +2606 3019 0 +2779 3151 0 +2939 3283 0 +3091 3416 0 +3238 3548 0 +3380 3680 0 +3520 3812 0 +3658 3944 0 +3794 4076 0 +3929 4095 0 +0 1763 2094 +0 1768 2093 +0 1776 2093 +0 1786 2092 +0 1799 2091 +0 1816 2089 +0 1838 2087 +0 1862 2087 +0 1891 2087 +0 1928 2087 +0 1973 2087 +0 2027 2087 +0 2087 2085 +0 2087 1996 +0 2087 1843 +0 2087 1494 +0 2221 0 +0 2355 0 +1373 2488 0 +1899 2621 0 +2195 2754 0 +2419 2886 0 +2610 3018 0 +2782 3151 0 +2941 3283 0 +3093 3415 0 +3239 3548 0 +3381 3680 0 +3521 3812 0 +3658 3944 0 +3794 4076 0 +3930 4095 0 +0 1733 2094 +0 1739 2093 +0 1748 2093 +0 1758 2092 +0 1772 2091 +0 1790 2089 +0 1813 2087 +0 1843 2085 +0 1873 2085 +0 1912 2085 +0 1958 2085 +0 2014 2085 +0 2079 2085 +0 2085 2004 +0 2085 1854 +0 2085 1517 +0 2220 0 +0 2353 0 +1446 2487 0 +1923 2620 0 +2208 2753 0 +2427 2886 0 +2615 3018 0 +2785 3151 0 +2943 3283 0 +3094 3415 0 +3240 3548 0 +3382 3680 0 +3521 3812 0 +3659 3944 0 +3795 4076 0 +3930 4095 0 +0 1691 2094 +0 1698 2093 +0 1706 2093 +0 1718 2092 +0 1733 2091 +0 1753 2089 +0 1778 2087 +0 1810 2085 +0 1849 2082 +0 1889 2082 +0 1938 2082 +0 1996 2082 +0 2063 2082 +0 2082 2014 +0 2082 1868 +0 2082 1545 +0 2217 0 +0 2352 0 +1529 2486 0 +1954 2619 0 +2224 2752 0 +2438 2885 0 +2622 3018 0 +2790 3151 0 +2947 3283 0 +3097 3415 0 +3242 3548 0 +3383 3680 0 +3522 3812 0 +3659 3944 0 +3795 4076 0 +3930 4095 0 +0 1626 2094 +0 1635 2093 +0 1645 2093 +0 1658 2092 +0 1676 2091 +0 1698 2089 +0 1726 2087 +0 1761 2085 +0 1804 2082 +0 1856 2077 +0 1908 2077 +0 1970 2077 +0 2041 2077 +0 2077 2027 +0 2077 1886 +0 2077 1581 +0 2214 0 +275 2349 0 +1620 2484 0 +1991 2618 0 +2245 2751 0 +2451 2885 0 +2631 3017 0 +2796 3150 0 +2951 3282 0 +3100 3415 0 +3244 3547 0 +3385 3680 0 +3523 3812 0 +3661 3944 0 +3796 4076 0 +3931 4095 0 +0 1524 2094 +0 1534 2093 +0 1547 2093 +0 1564 2092 +0 1585 2091 +0 1612 2089 +0 1646 2087 +0 1687 2085 +0 1738 2082 +0 1797 2077 +79 1866 2071 +79 1934 2071 +79 2010 2071 +79 2071 2044 +79 2071 1908 +79 2071 1625 +0 2209 303 +1064 2346 0 +1719 2481 0 +2038 2616 0 +2273 2750 0 +2469 2883 0 +2643 3016 0 +2804 3150 0 +2957 3282 0 +3104 3414 0 +3247 3547 0 +3387 3679 0 +3525 3812 0 +3662 3944 0 +3797 4076 0 +3932 4095 0 +0 1336 2094 +0 1351 2093 +0 1370 2093 +0 1394 2092 +0 1425 2091 +0 1463 2089 +0 1509 2087 +0 1565 2085 +0 1630 2082 +0 1704 2077 +79 1787 2071 +1005 1880 2062 +1005 1965 2062 +1005 2059 2062 +1005 2062 1937 +1005 2062 1677 +217 2203 838 +1403 2341 0 +1824 2478 0 +2093 2613 0 +2306 2748 0 +2491 2882 0 +2658 3015 0 +2815 3149 0 +2965 3281 0 +3110 3414 0 +3251 3547 0 +3390 3679 0 +3528 3812 0 +3663 3944 0 +3798 4076 0 +3932 4095 0 +0 814 2094 +0 859 2093 +0 913 2093 +0 977 2092 +0 1050 2091 +0 1133 2089 +0 1224 2087 +0 1322 2085 +0 1428 2082 +0 1539 2077 +79 1655 2071 +1005 1774 2062 +1355 1897 2051 +1355 2004 2051 +1355 2051 1973 +1355 2051 1739 +1137 2194 1136 +1644 2335 345 +1935 2473 0 +2158 2610 0 +2348 2746 0 +2519 2880 0 +2678 3014 0 +2829 3148 0 +2975 3280 0 +3117 3414 0 +3257 3546 0 +3394 3679 0 +3530 3811 0 +3666 3944 0 +3800 4076 0 +3934 4095 0 +0 0 2094 +0 0 2093 +0 0 2093 +0 0 2092 +0 0 2091 +0 0 2089 +0 0 2087 +0 10 2085 +0 800 2082 +0 1138 2077 +79 1379 2071 +1005 1579 2062 +1355 1756 2051 +1601 1919 2035 +1601 2035 2017 +1601 2035 1811 +1585 2183 1487 +1843 2326 1269 +2051 2467 477 +2233 2605 0 +2398 2742 0 +2554 2878 0 +2703 3012 0 +2847 3146 0 +2988 3280 0 +3127 3413 0 +3264 3546 0 +3400 3678 0 +3534 3811 0 +3668 3943 0 +3802 4076 0 +3935 4095 0 +0 0 2094 +0 0 2093 +0 0 2093 +0 0 2092 +0 0 2091 +0 0 2089 +0 0 2087 +0 0 2085 +0 0 2082 +173 0 2077 +706 79 2071 +1005 1006 2062 +1355 1453 2051 +1601 1730 2035 +1803 1946 2013 +1803 2013 1891 +1862 2167 1733 +2020 2315 1619 +2171 2459 1401 +2316 2599 611 +2458 2738 0 +2597 2874 0 +2734 3010 0 +2870 3144 0 +3005 3278 0 +3140 3412 0 +3273 3545 0 +3407 3678 0 +3540 3810 0 +3672 3943 0 +3805 4075 0 +3937 4095 0 +1433 0 2094 +1438 0 2093 +1444 0 2093 +1452 0 2092 +1463 0 2091 +1476 0 2089 +1494 0 2087 +1517 0 2085 +1545 0 2082 +1581 0 2077 +1625 79 2071 +1677 1005 2062 +1739 1355 2051 +1811 1601 2035 +1891 1803 2013 +1981 1981 1981 +2078 2145 1935 +2183 2299 1865 +2293 2447 1751 +2408 2591 1533 +2527 2731 738 +2649 2870 0 +2773 3006 0 +2900 3142 0 +3027 3276 0 +3156 3410 0 +3285 3544 0 +3416 3677 0 +3547 3810 0 +3677 3943 0 +3809 4075 0 +3940 4095 0 +1946 0 2226 +1948 0 2226 +1950 0 2225 +1953 0 2225 +1956 0 2224 +1961 0 2223 +1967 0 2221 +1975 0 2220 +1986 0 2217 +2000 0 2214 +2018 0 2209 +2041 217 2203 +2069 1136 2194 +2105 1487 2183 +2149 1733 2167 +2145 1935 2078 +2145 2023 1935 +2299 2281 1865 +2401 2447 1751 +2493 2591 1533 +2594 2731 738 +2701 2870 0 +2813 3006 0 +2931 3142 0 +3050 3276 0 +3174 3410 0 +3299 3544 0 +3426 3677 0 +3554 3810 0 +3683 3943 0 +3813 4075 0 +3944 4095 0 +2239 0 2358 +2240 0 2358 +2241 0 2358 +2243 0 2357 +2245 0 2357 +2247 0 2356 +2251 0 2355 +2255 0 2353 +2261 0 2352 +2268 0 2349 +2278 0 2346 +2291 0 2341 +2308 345 2335 +2326 1269 2323 +2315 1619 2268 +2299 1865 2183 +2299 1865 1994 +2299 2075 1865 +2447 2370 1751 +2587 2591 1533 +2671 2731 738 +2763 2870 0 +2862 3006 0 +2969 3142 0 +3080 3276 0 +3196 3410 0 +3316 3544 0 +3439 3677 0 +3564 3810 0 +3691 3943 0 +3818 4075 0 +3948 4095 0 +2463 0 2491 +2464 0 2491 +2464 0 2490 +2465 0 2490 +2466 0 2489 +2468 0 2489 +2470 0 2488 +2473 0 2487 +2476 0 2486 +2481 0 2484 +2481 0 2475 +2478 0 2460 +2473 0 2438 +2467 477 2407 +2459 1401 2362 +2447 1751 2293 +2447 1751 2152 +2447 1751 1850 +2447 2135 1751 +2591 2466 1533 +2731 2705 738 +2834 2870 0 +2920 3006 0 +3015 3142 0 +3117 3276 0 +3225 3410 0 +3339 3544 0 +3456 3677 0 +3577 3810 0 +3701 3943 0 +3826 4075 0 +3953 4095 0 +2623 0 2590 +2623 0 2590 +2623 0 2589 +2622 0 2588 +2622 0 2586 +2621 0 2584 +2621 0 2581 +2620 0 2577 +2619 0 2572 +2618 0 2565 +2616 0 2555 +2613 0 2542 +2610 0 2524 +2605 0 2498 +2599 611 2462 +2591 1533 2408 +2591 1533 2303 +2591 1533 2108 +2591 1533 1533 +2591 2206 1533 +2731 2570 738 +2870 2820 0 +2988 3006 0 +3071 3142 0 +3162 3276 0 +3261 3410 0 +3367 3544 0 +3478 3677 0 +3594 3810 0 +3713 3943 0 +3836 4075 0 +3961 4095 0 +2755 0 2673 +2755 0 2673 +2755 0 2672 +2755 0 2671 +2755 0 2670 +2754 0 2668 +2754 0 2666 +2753 0 2662 +2752 0 2658 +2751 0 2652 +2750 0 2645 +2748 0 2634 +2746 0 2619 +2742 0 2598 +2738 0 2569 +2731 738 2527 +2731 738 2448 +2731 738 2315 +2731 738 2040 +2731 1362 738 +2731 2285 738 +2870 2678 0 +3006 2939 0 +3136 3142 0 +3216 3276 0 +3305 3410 0 +3402 3544 0 +3506 3677 0 +3616 3810 0 +3730 3943 0 +3849 4075 0 +3971 4095 0 +2887 0 2765 +2887 0 2764 +2887 0 2764 +2887 0 2763 +2887 0 2762 +2887 0 2761 +2886 0 2759 +2886 0 2756 +2885 0 2752 +2885 0 2748 +2883 0 2741 +2882 0 2733 +2880 0 2721 +2878 0 2704 +2874 0 2681 +2870 0 2649 +2870 0 2590 +2870 0 2497 +2870 0 2332 +2870 0 1932 +2870 963 0 +2870 2374 0 +3006 2792 0 +3142 3061 0 +3276 3273 0 +3358 3410 0 +3445 3544 0 +3540 3677 0 +3643 3810 0 +3752 3943 0 +3865 4075 0 +3983 4095 0 +3019 0 2864 +3019 0 2863 +3019 0 2863 +3019 0 2863 +3019 0 2862 +3019 0 2860 +3018 0 2859 +3018 0 2857 +3018 0 2854 +3017 0 2850 +3016 0 2845 +3015 0 2838 +3014 0 2829 +3012 0 2816 +3010 0 2798 +3006 0 2773 +3006 0 2729 +3006 0 2662 +3006 0 2554 +3006 0 2352 +3006 0 1723 +3006 0 0 +3006 2470 0 +3142 2911 0 +3276 3185 0 +3410 3401 0 +3497 3544 0 +3583 3677 0 +3677 3810 0 +3779 3943 0 +3887 4075 0 +4000 4095 0 +3152 0 2970 +3152 0 2970 +3152 0 2969 +3151 0 2969 +3151 0 2968 +3151 0 2967 +3151 0 2966 +3151 0 2964 +3151 0 2962 +3150 0 2959 +3150 0 2955 +3149 0 2950 +3148 0 2942 +3146 0 2932 +3144 0 2919 +3142 0 2900 +3142 0 2867 +3142 0 2818 +3142 0 2744 +3142 0 2622 +3142 0 2379 +3142 0 1068 +3142 0 0 +3142 2573 0 +3276 3032 0 +3410 3311 0 +3544 3529 0 +3634 3677 0 +3719 3810 0 +3813 3943 0 +3913 4075 0 +4021 4095 0 +3284 0 3081 +3283 0 3081 +3283 0 3081 +3283 0 3080 +3283 0 3080 +3283 0 3079 +3283 0 3078 +3283 0 3077 +3283 0 3075 +3282 0 3073 +3282 0 3070 +3281 0 3065 +3280 0 3060 +3280 0 3052 +3278 0 3041 +3276 0 3027 +3276 0 3002 +3276 0 2967 +3276 0 2915 +3276 0 2834 +3276 0 2698 +3276 0 2411 +3276 0 0 +3276 0 0 +3276 2683 0 +3410 3156 0 +3544 3440 0 +3677 3659 0 +3770 3810 0 +3854 3943 0 +3947 4075 0 +4048 4095 0 +3416 0 3197 +3416 0 3197 +3416 0 3197 +3416 0 3196 +3416 0 3196 +3416 0 3196 +3415 0 3195 +3415 0 3194 +3415 0 3192 +3415 0 3191 +3414 0 3188 +3414 0 3185 +3414 0 3181 +3413 0 3175 +3412 0 3167 +3410 0 3156 +3410 0 3137 +3410 0 3111 +3410 0 3074 +3410 0 3019 +3410 0 2933 +3410 0 2784 +3410 0 2453 +3410 0 0 +3410 0 0 +3410 2797 0 +3544 3282 0 +3677 3568 0 +3810 3789 0 +3905 3943 0 +3989 4075 0 +4082 4095 0 +3548 0 3317 +3548 0 3317 +3548 0 3317 +3548 0 3316 +3548 0 3316 +3548 0 3316 +3548 0 3315 +3548 0 3314 +3548 0 3313 +3547 0 3312 +3547 0 3310 +3547 0 3307 +3546 0 3304 +3546 0 3300 +3545 0 3294 +3544 0 3285 +3544 0 3272 +3544 0 3253 +3544 0 3225 +3544 0 3186 +3544 0 3129 +3544 0 3038 +3544 0 2879 +3544 0 2502 +3544 0 0 +3544 0 0 +3544 2916 0 +3677 3410 0 +3810 3698 0 +3943 3920 0 +4039 4075 0 +4095 4095 0 +3680 0 3440 +3680 0 3439 +3680 0 3439 +3680 0 3439 +3680 0 3439 +3680 0 3438 +3680 0 3438 +3680 0 3437 +3680 0 3437 +3680 0 3436 +3679 0 3434 +3679 0 3432 +3679 0 3430 +3678 0 3426 +3678 0 3422 +3677 0 3416 +3677 0 3405 +3677 0 3391 +3677 0 3371 +3677 0 3344 +3677 0 3303 +3677 0 3243 +3677 0 3149 +3677 0 2980 +3677 0 2562 +3677 0 0 +3677 0 0 +3677 3037 0 +3810 3538 0 +3943 3828 0 +4075 4050 0 +4095 4095 0 +3812 0 3564 +3812 0 3564 +3812 0 3564 +3812 0 3564 +3812 0 3564 +3812 0 3564 +3812 0 3563 +3812 0 3563 +3812 0 3562 +3812 0 3562 +3812 0 3561 +3812 0 3559 +3811 0 3557 +3811 0 3554 +3810 0 3551 +3810 0 3547 +3810 0 3539 +3810 0 3528 +3810 0 3514 +3810 0 3493 +3810 0 3465 +3810 0 3424 +3810 0 3362 +3810 0 3264 +3810 0 3088 +3810 0 2631 +3810 0 0 +3810 0 0 +3810 3161 0 +3943 3667 0 +4075 3959 0 +4095 4095 0 +3944 0 3691 +3944 0 3691 +3944 0 3691 +3944 0 3691 +3944 0 3691 +3944 0 3690 +3944 0 3690 +3944 0 3690 +3944 0 3689 +3944 0 3689 +3944 0 3688 +3944 0 3687 +3944 0 3685 +3943 0 3683 +3943 0 3681 +3943 0 3677 +3943 0 3672 +3943 0 3664 +3943 0 3653 +3943 0 3638 +3943 0 3618 +3943 0 3589 +3943 0 3547 +3943 0 3484 +3943 0 3384 +3943 0 3201 +3943 0 2708 +3943 0 0 +3943 0 0 +3943 3287 0 +4075 3797 0 +4095 4090 0 +4076 0 3819 +4076 0 3819 +4076 0 3819 +4076 0 3818 +4076 0 3818 +4076 0 3818 +4076 0 3818 +4076 0 3818 +4076 0 3818 +4076 0 3817 +4076 0 3816 +4076 0 3816 +4076 0 3814 +4076 0 3813 +4075 0 3811 +4075 0 3809 +4075 0 3804 +4075 0 3798 +4075 0 3790 +4075 0 3780 +4075 0 3765 +4075 0 3744 +4075 0 3714 +4075 0 3672 +4075 0 3608 +4075 0 3505 +4075 0 3318 +4075 0 2793 +4075 0 0 +4075 0 0 +4075 3415 0 +4095 3929 0 +4095 0 3948 +4095 0 3948 +4095 0 3948 +4095 0 3948 +4095 0 3948 +4095 0 3948 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3947 +4095 0 3946 +4095 0 3946 +4095 0 3945 +4095 0 3944 +4095 0 3942 +4095 0 3940 +4095 0 3937 +4095 0 3933 +4095 0 3927 +4095 0 3919 +4095 0 3908 +4095 0 3893 +4095 0 3872 +4095 0 3842 +4095 0 3799 +4095 0 3735 +4095 0 3630 +4095 0 3439 +4095 0 2890 +4095 0 0 +4095 0 0 +4095 3544 0 +0 1959 2226 +0 1962 2226 +0 1966 2226 +0 1972 2226 +0 1979 2226 +0 1989 2226 +0 2002 2226 +0 2018 2226 +0 2039 2226 +0 2066 2226 +0 2100 2226 +0 2141 2226 +0 2191 2226 +0 2226 2200 +0 2226 2108 +0 2226 1946 +0 2226 1562 +0 2358 0 +0 2491 0 +1232 2623 0 +1962 2755 0 +2292 2887 0 +2530 3019 0 +2729 3152 0 +2904 3284 0 +3067 3416 0 +3220 3548 0 +3367 3680 0 +3511 3812 0 +3651 3944 0 +3789 4076 0 +3926 4095 0 +0 1956 2226 +0 1959 2226 +0 1963 2226 +0 1969 2226 +0 1977 2226 +0 1987 2226 +0 1999 2226 +0 2016 2226 +0 2037 2226 +0 2064 2226 +0 2098 2226 +0 2140 2226 +0 2190 2226 +0 2226 2201 +0 2226 2109 +0 2226 1948 +0 2226 1565 +0 2358 0 +0 2491 0 +1251 2623 0 +1966 2755 0 +2294 2887 0 +2531 3019 0 +2729 3152 0 +2905 3283 0 +3067 3416 0 +3220 3548 0 +3368 3680 0 +3511 3812 0 +3651 3944 0 +3789 4076 0 +3926 4095 0 +0 1951 2226 +0 1955 2226 +0 1960 2225 +0 1966 2225 +0 1973 2225 +0 1983 2225 +0 1996 2225 +0 2013 2225 +0 2034 2225 +0 2061 2225 +0 2095 2225 +0 2137 2225 +0 2188 2225 +0 2225 2202 +0 2225 2111 +0 2225 1950 +0 2225 1570 +0 2358 0 +0 2490 0 +1275 2623 0 +1971 2755 0 +2296 2887 0 +2533 3019 0 +2730 3152 0 +2905 3283 0 +3067 3416 0 +3221 3548 0 +3368 3680 0 +3511 3812 0 +3651 3944 0 +3789 4076 0 +3926 4095 0 +0 1945 2226 +0 1949 2226 +0 1954 2225 +0 1961 2225 +0 1969 2225 +0 1979 2225 +0 1992 2225 +0 2009 2225 +0 2030 2225 +0 2058 2225 +0 2092 2225 +0 2134 2225 +0 2185 2225 +0 2225 2203 +0 2225 2112 +0 2225 1953 +0 2225 1576 +0 2357 0 +0 2490 0 +1304 2622 0 +1977 2755 0 +2299 2887 0 +2535 3019 0 +2732 3151 0 +2906 3283 0 +3068 3416 0 +3221 3548 0 +3368 3680 0 +3511 3812 0 +3651 3944 0 +3789 4076 0 +3926 4095 0 +0 1937 2226 +0 1941 2226 +0 1946 2225 +0 1953 2225 +0 1963 2224 +0 1973 2224 +0 1986 2224 +0 2003 2224 +0 2025 2224 +0 2053 2224 +0 2087 2224 +0 2130 2224 +0 2181 2224 +0 2224 2206 +0 2224 2115 +0 2224 1956 +0 2224 1584 +0 2357 0 +0 2489 0 +1342 2622 0 +1986 2755 0 +2304 2887 0 +2537 3019 0 +2733 3151 0 +2907 3283 0 +3069 3416 0 +3222 3548 0 +3369 3680 0 +3511 3812 0 +3652 3944 0 +3790 4076 0 +3926 4095 0 +0 1926 2226 +0 1930 2226 +0 1936 2225 +0 1943 2225 +0 1952 2224 +0 1965 2223 +0 1978 2223 +0 1995 2223 +0 2018 2223 +0 2046 2223 +0 2081 2223 +0 2124 2223 +0 2176 2223 +0 2223 2208 +0 2223 2118 +0 2223 1961 +0 2223 1595 +0 2356 0 +0 2489 0 +1387 2621 0 +1997 2754 0 +2310 2887 0 +2541 3019 0 +2735 3151 0 +2909 3283 0 +3070 3416 0 +3222 3548 0 +3369 3680 0 +3512 3812 0 +3652 3944 0 +3790 4076 0 +3926 4095 0 +0 1911 2226 +0 1915 2226 +0 1921 2225 +0 1928 2225 +0 1938 2224 +0 1951 2223 +0 1967 2221 +0 1985 2221 +0 2008 2221 +0 2036 2221 +0 2072 2221 +0 2116 2221 +0 2169 2221 +0 2221 2212 +0 2221 2123 +0 2221 1967 +0 2221 1608 +0 2355 0 +0 2488 0 +1441 2621 0 +2012 2754 0 +2317 2886 0 +2545 3018 0 +2738 3151 0 +2911 3283 0 +3071 3415 0 +3223 3548 0 +3370 3680 0 +3513 3812 0 +3652 3944 0 +3790 4076 0 +3927 4095 0 +0 1890 2226 +0 1894 2226 +0 1900 2225 +0 1908 2225 +0 1918 2224 +0 1931 2223 +0 1948 2221 +0 1970 2220 +0 1994 2220 +0 2023 2220 +0 2060 2220 +0 2105 2220 +0 2159 2220 +0 2220 2217 +0 2220 2128 +0 2220 1975 +0 2220 1626 +0 2353 0 +0 2487 0 +1505 2620 0 +2031 2753 0 +2327 2886 0 +2551 3018 0 +2742 3151 0 +2914 3283 0 +3073 3415 0 +3225 3548 0 +3371 3680 0 +3513 3812 0 +3653 3944 0 +3790 4076 0 +3927 4095 0 +0 1860 2226 +0 1865 2226 +0 1871 2225 +0 1880 2225 +0 1891 2224 +0 1904 2223 +0 1922 2221 +0 1946 2220 +0 1975 2217 +0 2006 2217 +0 2044 2217 +0 2090 2217 +0 2146 2217 +0 2211 2217 +0 2217 2136 +0 2217 1986 +0 2217 1649 +0 2352 0 +0 2486 0 +1578 2619 0 +2056 2752 0 +2340 2885 0 +2559 3018 0 +2747 3151 0 +2917 3283 0 +3076 3415 0 +3226 3548 0 +3372 3680 0 +3514 3812 0 +3653 3944 0 +3791 4076 0 +3927 4095 0 +0 1817 2226 +0 1823 2226 +0 1829 2225 +0 1839 2225 +0 1850 2224 +0 1865 2223 +0 1885 2221 +0 1910 2220 +0 1942 2217 +0 1981 2214 +0 2021 2214 +0 2070 2214 +0 2128 2214 +0 2195 2214 +0 2214 2146 +0 2214 2000 +0 2214 1677 +0 2349 0 +0 2484 0 +1661 2618 0 +2086 2751 0 +2356 2885 0 +2570 3017 0 +2754 3150 0 +2922 3282 0 +3079 3415 0 +3229 3547 0 +3374 3680 0 +3515 3812 0 +3654 3944 0 +3791 4076 0 +3927 4095 0 +0 1753 2226 +0 1759 2226 +0 1767 2225 +0 1777 2225 +0 1790 2224 +0 1808 2223 +0 1830 2221 +0 1858 2220 +0 1894 2217 +0 1936 2214 +0 1988 2209 +0 2041 2209 +0 2102 2209 +0 2174 2209 +0 2209 2159 +0 2209 2018 +0 2209 1713 +0 2346 0 +415 2481 0 +1752 2616 0 +2124 2750 0 +2378 2883 0 +2583 3016 0 +2763 3150 0 +2928 3282 0 +3083 3414 0 +3232 3547 0 +3376 3679 0 +3517 3812 0 +3656 3944 0 +3793 4076 0 +3928 4095 0 +0 1648 2226 +0 1656 2226 +0 1666 2225 +0 1679 2225 +0 1695 2224 +0 1717 2223 +0 1744 2221 +0 1778 2220 +0 1819 2217 +0 1870 2214 +0 1929 2209 +217 1998 2203 +217 2066 2203 +217 2142 2203 +217 2203 2176 +217 2203 2041 +217 2203 1757 +0 2341 437 +1199 2478 0 +1851 2613 0 +2170 2748 0 +2405 2882 0 +2600 3015 0 +2775 3149 0 +2936 3281 0 +3089 3414 0 +3236 3547 0 +3379 3679 0 +3520 3812 0 +3657 3944 0 +3794 4076 0 +3929 4095 0 +0 1457 2226 +0 1469 2226 +0 1484 2225 +0 1503 2225 +0 1527 2224 +0 1557 2223 +0 1596 2221 +0 1642 2220 +0 1697 2217 +0 1762 2214 +0 1836 2209 +217 1920 2203 +1136 2012 2194 +1136 2097 2194 +1136 2191 2194 +1136 2194 2069 +1136 2194 1809 +345 2335 970 +1535 2473 0 +1956 2610 0 +2226 2746 0 +2439 2880 0 +2623 3014 0 +2790 3148 0 +2947 3280 0 +3097 3414 0 +3242 3546 0 +3384 3679 0 +3522 3811 0 +3659 3944 0 +3795 4076 0 +3930 4095 0 +0 907 2226 +0 944 2226 +0 990 2225 +0 1044 2225 +0 1108 2224 +0 1181 2223 +0 1264 2221 +0 1355 2220 +0 1454 2217 +0 1560 2214 +0 1671 2209 +217 1787 2203 +1136 1906 2194 +1487 2029 2183 +1487 2136 2183 +1487 2183 2105 +1487 2183 1871 +1270 2326 1269 +1776 2467 477 +2067 2605 0 +2291 2742 0 +2480 2878 0 +2651 3012 0 +2810 3146 0 +2961 3280 0 +3107 3413 0 +3249 3546 0 +3389 3678 0 +3526 3811 0 +3662 3943 0 +3798 4076 0 +3932 4095 0 +0 0 2226 +0 0 2226 +0 0 2225 +0 0 2225 +0 0 2224 +0 0 2223 +0 0 2221 +0 0 2220 +0 140 2217 +0 932 2214 +0 1270 2209 +217 1512 2203 +1136 1711 2194 +1487 1888 2183 +1733 2051 2167 +1733 2167 2149 +1733 2167 1943 +1718 2315 1619 +1976 2459 1401 +2183 2599 611 +2365 2738 0 +2530 2874 0 +2686 3010 0 +2835 3144 0 +2979 3278 0 +3120 3412 0 +3259 3545 0 +3396 3678 0 +3532 3810 0 +3666 3943 0 +3801 4075 0 +3934 4095 0 +0 0 2226 +0 0 2226 +0 0 2225 +0 0 2225 +0 0 2224 +0 0 2223 +0 0 2221 +0 0 2220 +0 0 2217 +0 0 2214 +303 0 2209 +838 217 2203 +1136 1137 2194 +1487 1585 2183 +1733 1862 2167 +1935 2078 2145 +1935 2145 2023 +1994 2299 1865 +2152 2447 1751 +2303 2591 1533 +2448 2731 738 +2590 2870 0 +2729 3006 0 +2867 3142 0 +3002 3276 0 +3137 3410 0 +3272 3544 0 +3405 3677 0 +3539 3810 0 +3672 3943 0 +3804 4075 0 +3937 4095 0 +1562 0 2226 +1565 0 2226 +1570 0 2225 +1576 0 2225 +1584 0 2224 +1595 0 2223 +1608 0 2221 +1626 0 2220 +1649 0 2217 +1677 0 2214 +1713 0 2209 +1757 217 2203 +1809 1136 2194 +1871 1487 2183 +1943 1733 2167 +2023 1935 2145 +2113 2113 2113 +2210 2277 2067 +2315 2431 1997 +2425 2579 1883 +2540 2723 1664 +2659 2863 870 +2781 3002 0 +2906 3138 0 +3031 3274 0 +3159 3408 0 +3288 3543 0 +3418 3676 0 +3548 3809 0 +3679 3942 0 +3810 4075 0 +3941 4095 0 +2078 0 2358 +2079 0 2358 +2080 0 2358 +2082 0 2357 +2085 0 2357 +2088 0 2356 +2093 0 2355 +2099 0 2353 +2107 0 2352 +2118 0 2349 +2132 0 2346 +2150 0 2341 +2173 345 2335 +2202 1269 2326 +2237 1619 2315 +2281 1865 2299 +2277 2067 2210 +2277 2155 2067 +2431 2414 1997 +2533 2579 1883 +2626 2723 1664 +2726 2863 870 +2833 3002 0 +2946 3138 0 +3062 3274 0 +3183 3408 0 +3306 3543 0 +3431 3676 0 +3558 3809 0 +3686 3942 0 +3815 4075 0 +3945 4095 0 +2371 0 2491 +2372 0 2491 +2373 0 2490 +2374 0 2490 +2375 0 2489 +2377 0 2489 +2379 0 2488 +2383 0 2487 +2387 0 2486 +2393 0 2484 +2401 0 2481 +2411 0 2478 +2423 0 2473 +2440 477 2467 +2459 1401 2455 +2447 1751 2401 +2431 1997 2315 +2431 1997 2126 +2431 2207 1997 +2579 2502 1883 +2719 2723 1664 +2803 2863 870 +2895 3002 0 +2995 3138 0 +3100 3274 0 +3212 3408 0 +3329 3543 0 +3448 3676 0 +3571 3809 0 +3696 3942 0 +3823 4075 0 +3951 4095 0 +2595 0 2623 +2595 0 2623 +2596 0 2623 +2596 0 2622 +2597 0 2622 +2598 0 2621 +2600 0 2621 +2602 0 2620 +2604 0 2619 +2608 0 2618 +2613 0 2616 +2613 0 2607 +2610 0 2592 +2605 0 2570 +2599 611 2538 +2591 1533 2493 +2579 1883 2425 +2579 1883 2284 +2579 1883 1981 +2579 2267 1883 +2723 2598 1664 +2863 2837 870 +2966 3002 0 +3053 3138 0 +3147 3274 0 +3249 3408 0 +3357 3543 0 +3471 3676 0 +3588 3809 0 +3709 3942 0 +3833 4075 0 +3959 4095 0 +2755 0 2723 +2755 0 2723 +2755 0 2722 +2755 0 2721 +2755 0 2720 +2754 0 2718 +2754 0 2716 +2753 0 2713 +2752 0 2710 +2751 0 2704 +2750 0 2697 +2748 0 2687 +2746 0 2674 +2742 0 2656 +2738 0 2631 +2731 738 2594 +2723 1664 2540 +2723 1664 2435 +2723 1664 2240 +2723 1664 1667 +2723 2338 1664 +2863 2701 870 +3002 2952 0 +3120 3138 0 +3203 3274 0 +3294 3408 0 +3393 3543 0 +3499 3676 0 +3610 3809 0 +3726 3942 0 +3846 4075 0 +3968 4095 0 +2887 0 2806 +2887 0 2805 +2887 0 2805 +2887 0 2804 +2887 0 2803 +2887 0 2802 +2886 0 2800 +2886 0 2798 +2885 0 2795 +2885 0 2790 +2883 0 2784 +2882 0 2777 +2880 0 2766 +2878 0 2751 +2874 0 2730 +2870 0 2701 +2863 870 2659 +2863 870 2580 +2863 870 2447 +2863 870 2173 +2863 1498 870 +2863 2417 870 +3002 2810 0 +3138 3071 0 +3268 3274 0 +3348 3408 0 +3437 3543 0 +3534 3676 0 +3638 3809 0 +3748 3942 0 +3862 4075 0 +3981 4095 0 +3019 0 2897 +3019 0 2897 +3019 0 2896 +3019 0 2896 +3019 0 2895 +3019 0 2894 +3018 0 2892 +3018 0 2890 +3018 0 2888 +3017 0 2885 +3016 0 2880 +3015 0 2873 +3014 0 2865 +3012 0 2853 +3010 0 2836 +3006 0 2813 +3002 0 2781 +3002 0 2722 +3002 0 2628 +3002 0 2463 +3002 0 2062 +3002 1109 0 +3002 2505 0 +3138 2925 0 +3274 3193 0 +3408 3406 0 +3490 3543 0 +3577 3676 0 +3672 3809 0 +3775 3942 0 +3884 4075 0 +3998 4095 0 +3152 0 2996 +3152 0 2996 +3152 0 2996 +3151 0 2995 +3151 0 2995 +3151 0 2994 +3151 0 2993 +3151 0 2991 +3151 0 2989 +3150 0 2986 +3150 0 2982 +3149 0 2977 +3148 0 2970 +3146 0 2961 +3144 0 2948 +3142 0 2931 +3138 0 2906 +3138 0 2861 +3138 0 2795 +3138 0 2687 +3138 0 2484 +3138 0 1857 +3138 0 0 +3138 2602 0 +3274 3042 0 +3408 3317 0 +3543 3533 0 +3629 3676 0 +3715 3809 0 +3809 3942 0 +3911 4075 0 +4019 4095 0 +3284 0 3102 +3283 0 3102 +3283 0 3101 +3283 0 3101 +3283 0 3101 +3283 0 3100 +3283 0 3099 +3283 0 3098 +3283 0 3096 +3282 0 3094 +3282 0 3091 +3281 0 3087 +3280 0 3082 +3280 0 3074 +3278 0 3064 +3276 0 3050 +3274 0 3031 +3274 0 2998 +3274 0 2950 +3274 0 2876 +3274 0 2753 +3274 0 2510 +3274 0 1202 +3274 0 0 +3274 2706 0 +3408 3164 0 +3543 3444 0 +3676 3662 0 +3766 3809 0 +3851 3942 0 +3945 4075 0 +4046 4095 0 +3416 0 3213 +3416 0 3213 +3416 0 3213 +3416 0 3213 +3416 0 3212 +3416 0 3212 +3415 0 3211 +3415 0 3210 +3415 0 3209 +3415 0 3207 +3414 0 3205 +3414 0 3202 +3414 0 3198 +3413 0 3192 +3412 0 3184 +3410 0 3174 +3408 0 3159 +3408 0 3134 +3408 0 3099 +3408 0 3047 +3408 0 2966 +3408 0 2830 +3408 0 2545 +3408 0 0 +3408 0 0 +3408 2815 0 +3543 3288 0 +3676 3572 0 +3809 3791 0 +3902 3942 0 +3986 4075 0 +4080 4095 0 +3548 0 3329 +3548 0 3329 +3548 0 3329 +3548 0 3329 +3548 0 3329 +3548 0 3328 +3548 0 3328 +3548 0 3327 +3548 0 3326 +3547 0 3325 +3547 0 3323 +3547 0 3320 +3546 0 3317 +3546 0 3313 +3545 0 3307 +3544 0 3299 +3543 0 3288 +3543 0 3270 +3543 0 3243 +3543 0 3206 +3543 0 3151 +3543 0 3065 +3543 0 2917 +3543 0 2585 +3543 0 0 +3543 0 0 +3543 2929 0 +3676 3414 0 +3809 3700 0 +3942 3921 0 +4037 4075 0 +4095 4095 0 +3680 0 3449 +3680 0 3449 +3680 0 3449 +3680 0 3449 +3680 0 3448 +3680 0 3448 +3680 0 3448 +3680 0 3447 +3680 0 3446 +3680 0 3445 +3679 0 3444 +3679 0 3442 +3679 0 3440 +3678 0 3436 +3678 0 3432 +3677 0 3426 +3676 0 3418 +3676 0 3404 +3676 0 3385 +3676 0 3358 +3676 0 3319 +3676 0 3261 +3676 0 3170 +3676 0 3010 +3676 0 2636 +3676 0 0 +3676 0 0 +3676 3048 0 +3809 3542 0 +3942 3830 0 +4075 4051 0 +4095 4095 0 +3812 0 3572 +3812 0 3572 +3812 0 3572 +3812 0 3571 +3812 0 3571 +3812 0 3571 +3812 0 3571 +3812 0 3570 +3812 0 3570 +3812 0 3569 +3812 0 3568 +3812 0 3566 +3811 0 3564 +3811 0 3562 +3810 0 3559 +3810 0 3554 +3809 0 3548 +3809 0 3537 +3809 0 3523 +3809 0 3503 +3809 0 3475 +3809 0 3435 +3809 0 3376 +3809 0 3281 +3809 0 3112 +3809 0 2694 +3809 0 0 +3809 0 0 +3809 3169 0 +3942 3670 0 +4075 3960 0 +4095 4095 0 +3944 0 3696 +3944 0 3696 +3944 0 3696 +3944 0 3696 +3944 0 3696 +3944 0 3696 +3944 0 3696 +3944 0 3695 +3944 0 3695 +3944 0 3694 +3944 0 3694 +3944 0 3692 +3944 0 3691 +3943 0 3689 +3943 0 3687 +3943 0 3683 +3942 0 3679 +3942 0 3671 +3942 0 3660 +3942 0 3646 +3942 0 3626 +3942 0 3597 +3942 0 3556 +3942 0 3494 +3942 0 3396 +3942 0 3220 +3942 0 2762 +3942 0 0 +3942 0 0 +3942 3293 0 +4075 3799 0 +4095 4091 0 +4076 0 3823 +4076 0 3823 +4076 0 3823 +4076 0 3823 +4076 0 3823 +4076 0 3822 +4076 0 3822 +4076 0 3822 +4076 0 3822 +4076 0 3821 +4076 0 3821 +4076 0 3820 +4076 0 3819 +4076 0 3817 +4075 0 3816 +4075 0 3813 +4075 0 3810 +4075 0 3803 +4075 0 3796 +4075 0 3785 +4075 0 3770 +4075 0 3750 +4075 0 3721 +4075 0 3679 +4075 0 3616 +4075 0 3515 +4075 0 3333 +4075 0 2839 +4075 0 0 +4075 0 0 +4075 3419 0 +4095 3930 0 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3951 +4095 0 3950 +4095 0 3950 +4095 0 3950 +4095 0 3950 +4095 0 3949 +4095 0 3948 +4095 0 3947 +4095 0 3945 +4095 0 3944 +4095 0 3941 +4095 0 3937 +4095 0 3931 +4095 0 3923 +4095 0 3912 +4095 0 3897 +4095 0 3876 +4095 0 3847 +4095 0 3804 +4095 0 3741 +4095 0 3638 +4095 0 3450 +4095 0 2927 +4095 0 0 +4095 0 0 +4095 3547 0 +0 2090 2358 +0 2093 2358 +0 2096 2358 +0 2100 2358 +0 2106 2358 +0 2113 2358 +0 2123 2358 +0 2136 2358 +0 2152 2358 +0 2173 2358 +0 2200 2358 +0 2233 2358 +0 2275 2358 +0 2325 2358 +0 2358 2332 +0 2358 2239 +0 2358 2078 +0 2358 1692 +0 2491 0 +0 2623 0 +1353 2755 0 +2091 2887 0 +2422 3019 0 +2662 3152 0 +2860 3284 0 +3036 3416 0 +3198 3548 0 +3352 3680 0 +3499 3812 0 +3643 3944 0 +3783 4076 0 +3921 4095 0 +0 2088 2358 +0 2091 2358 +0 2094 2358 +0 2098 2358 +0 2104 2358 +0 2111 2358 +0 2121 2358 +0 2134 2358 +0 2150 2358 +0 2171 2358 +0 2199 2358 +0 2232 2358 +0 2273 2358 +0 2324 2358 +0 2358 2332 +0 2358 2240 +0 2358 2079 +0 2358 1694 +0 2491 0 +0 2623 0 +1367 2755 0 +2094 2887 0 +2424 3019 0 +2663 3152 0 +2860 3283 0 +3036 3416 0 +3199 3548 0 +3352 3680 0 +3499 3812 0 +3643 3944 0 +3783 4076 0 +3921 4095 0 +0 2085 2358 +0 2087 2358 +0 2091 2358 +0 2096 2358 +0 2101 2358 +0 2109 2358 +0 2119 2358 +0 2132 2358 +0 2148 2358 +0 2169 2358 +0 2196 2358 +0 2230 2358 +0 2271 2358 +0 2322 2358 +0 2358 2333 +0 2358 2241 +0 2358 2080 +0 2358 1698 +0 2490 0 +0 2623 0 +1386 2755 0 +2098 2887 0 +2426 3019 0 +2664 3152 0 +2861 3283 0 +3037 3416 0 +3199 3548 0 +3353 3680 0 +3500 3812 0 +3643 3944 0 +3783 4076 0 +3921 4095 0 +0 2080 2358 +0 2083 2358 +0 2087 2358 +0 2092 2357 +0 2098 2357 +0 2105 2357 +0 2115 2357 +0 2128 2357 +0 2145 2357 +0 2166 2357 +0 2193 2357 +0 2228 2357 +0 2269 2357 +0 2320 2357 +0 2357 2334 +0 2357 2243 +0 2357 2082 +0 2357 1702 +0 2490 0 +0 2622 0 +1409 2755 0 +2103 2887 0 +2428 3019 0 +2665 3151 0 +2862 3283 0 +3038 3416 0 +3200 3548 0 +3353 3680 0 +3500 3812 0 +3643 3944 0 +3783 4076 0 +3921 4095 0 +0 2074 2358 +0 2077 2358 +0 2081 2358 +0 2086 2357 +0 2093 2357 +0 2101 2357 +0 2111 2357 +0 2124 2357 +0 2141 2357 +0 2162 2357 +0 2190 2357 +0 2224 2357 +0 2266 2357 +0 2317 2357 +0 2357 2335 +0 2357 2245 +0 2357 2085 +0 2357 1708 +0 2489 0 +0 2622 0 +1439 2755 0 +2110 2887 0 +2431 3019 0 +2667 3151 0 +2863 3283 0 +3038 3416 0 +3200 3548 0 +3353 3680 0 +3500 3812 0 +3643 3944 0 +3783 4076 0 +3921 4095 0 +0 2066 2358 +0 2069 2358 +0 2073 2358 +0 2078 2357 +0 2086 2357 +0 2095 2356 +0 2105 2356 +0 2118 2356 +0 2135 2356 +0 2157 2356 +0 2185 2356 +0 2219 2356 +0 2262 2356 +0 2313 2356 +0 2356 2338 +0 2356 2247 +0 2356 2088 +0 2356 1716 +0 2489 0 +0 2621 0 +1476 2754 0 +2118 2887 0 +2435 3019 0 +2670 3151 0 +2865 3283 0 +3039 3416 0 +3201 3548 0 +3354 3680 0 +3501 3812 0 +3644 3944 0 +3784 4076 0 +3922 4095 0 +0 2055 2358 +0 2058 2358 +0 2062 2358 +0 2068 2357 +0 2075 2357 +0 2084 2356 +0 2096 2355 +0 2110 2355 +0 2127 2355 +0 2150 2355 +0 2178 2355 +0 2213 2355 +0 2256 2355 +0 2308 2355 +0 2355 2340 +0 2355 2251 +0 2355 2093 +0 2355 1727 +0 2488 0 +0 2621 0 +1521 2754 0 +2129 2886 0 +2441 3018 0 +2673 3151 0 +2867 3283 0 +3041 3415 0 +3202 3548 0 +3354 3680 0 +3501 3812 0 +3644 3944 0 +3784 4076 0 +3922 4095 0 +0 2040 2358 +0 2043 2358 +0 2047 2358 +0 2053 2357 +0 2060 2357 +0 2070 2356 +0 2083 2355 +0 2099 2353 +0 2117 2353 +0 2140 2353 +0 2168 2353 +0 2204 2353 +0 2248 2353 +0 2301 2353 +0 2353 2344 +0 2353 2255 +0 2353 2099 +0 2353 1740 +0 2487 0 +0 2620 0 +1575 2753 0 +2144 2886 0 +2449 3018 0 +2678 3151 0 +2870 3283 0 +3043 3415 0 +3203 3548 0 +3356 3680 0 +3502 3812 0 +3645 3944 0 +3784 4076 0 +3922 4095 0 +0 2019 2358 +0 2022 2358 +0 2027 2358 +0 2032 2357 +0 2040 2357 +0 2050 2356 +0 2063 2355 +0 2081 2353 +0 2102 2352 +0 2126 2352 +0 2155 2352 +0 2192 2352 +0 2237 2352 +0 2291 2352 +0 2352 2349 +0 2352 2261 +0 2352 2107 +0 2352 1758 +0 2486 0 +0 2619 0 +1638 2752 0 +2163 2885 0 +2459 3018 0 +2684 3151 0 +2874 3283 0 +3046 3415 0 +3205 3548 0 +3357 3680 0 +3503 3812 0 +3645 3944 0 +3785 4076 0 +3923 4095 0 +0 1989 2358 +0 1993 2358 +0 1997 2358 +0 2004 2357 +0 2012 2357 +0 2022 2356 +0 2037 2355 +0 2054 2353 +0 2078 2352 +0 2107 2349 +0 2138 2349 +0 2176 2349 +0 2223 2349 +0 2278 2349 +0 2343 2349 +0 2349 2268 +0 2349 2118 +0 2349 1781 +0 2484 0 +0 2618 0 +1711 2751 0 +2188 2885 0 +2471 3017 0 +2691 3150 0 +2879 3282 0 +3049 3415 0 +3208 3547 0 +3359 3680 0 +3504 3812 0 +3646 3944 0 +3785 4076 0 +3923 4095 0 +0 1946 2358 +0 1950 2358 +0 1955 2358 +0 1962 2357 +0 1970 2357 +0 1982 2356 +0 1998 2355 +0 2017 2353 +0 2042 2352 +0 2074 2349 +0 2113 2346 +0 2153 2346 +0 2202 2346 +0 2260 2346 +0 2328 2346 +0 2346 2278 +0 2346 2132 +0 2346 1809 +0 2481 0 +0 2616 0 +1794 2750 0 +2218 2883 0 +2488 3016 0 +2702 3150 0 +2886 3282 0 +3054 3414 0 +3211 3547 0 +3361 3679 0 +3506 3812 0 +3648 3944 0 +3787 4076 0 +3924 4095 0 +0 1880 2358 +0 1885 2358 +0 1891 2358 +0 1899 2357 +0 1909 2357 +0 1922 2356 +0 1940 2355 +0 1962 2353 +0 1990 2352 +0 2025 2349 +0 2069 2346 +0 2120 2341 +0 2173 2341 +0 2234 2341 +0 2305 2341 +0 2341 2291 +0 2341 2150 +0 2341 1845 +0 2478 0 +547 2613 0 +1885 2748 0 +2256 2882 0 +2510 3015 0 +2715 3149 0 +2895 3281 0 +3060 3414 0 +3216 3547 0 +3364 3679 0 +3508 3812 0 +3649 3944 0 +3787 4076 0 +3925 4095 0 +0 1775 2358 +0 1781 2358 +0 1788 2358 +0 1798 2357 +0 1811 2357 +0 1828 2356 +0 1849 2355 +0 1876 2353 +0 1910 2352 +0 1951 2349 +0 2002 2346 +0 2061 2341 +345 2131 2335 +345 2198 2335 +345 2274 2335 +345 2335 2308 +345 2335 2173 +345 2335 1889 +0 2473 557 +1330 2610 0 +1983 2746 0 +2302 2880 0 +2536 3014 0 +2733 3148 0 +2907 3280 0 +3069 3414 0 +3221 3546 0 +3368 3679 0 +3511 3811 0 +3651 3944 0 +3789 4076 0 +3926 4095 0 +0 1580 2358 +0 1589 2358 +0 1600 2358 +0 1615 2357 +0 1634 2357 +0 1659 2356 +0 1689 2355 +0 1727 2353 +0 1773 2352 +0 1829 2349 +0 1894 2346 +0 1968 2341 +345 2052 2335 +1269 2144 2326 +1269 2229 2326 +1269 2323 2326 +1269 2326 2202 +1269 2326 1941 +477 2467 1099 +1667 2605 0 +2089 2742 0 +2358 2878 0 +2570 3012 0 +2755 3146 0 +2922 3280 0 +3079 3413 0 +3229 3546 0 +3374 3678 0 +3516 3811 0 +3655 3943 0 +3792 4076 0 +3927 4095 0 +0 1009 2358 +0 1039 2358 +0 1076 2358 +0 1122 2357 +0 1176 2357 +0 1240 2356 +0 1313 2355 +0 1396 2353 +0 1487 2352 +0 1586 2349 +0 1692 2346 +0 1803 2341 +345 1919 2335 +1269 2038 2326 +1619 2161 2315 +1619 2268 2315 +1619 2315 2237 +1619 2315 2003 +1403 2459 1401 +1908 2599 611 +2200 2738 0 +2423 2874 0 +2612 3010 0 +2783 3144 0 +2942 3278 0 +3093 3412 0 +3239 3545 0 +3381 3678 0 +3521 3810 0 +3659 3943 0 +3795 4075 0 +3930 4095 0 +0 0 2358 +0 0 2358 +0 0 2358 +0 0 2357 +0 0 2357 +0 0 2356 +0 0 2355 +0 0 2353 +0 0 2352 +0 275 2349 +0 1064 2346 +0 1403 2341 +345 1644 2335 +1269 1843 2326 +1619 2020 2315 +1865 2183 2299 +1865 2299 2281 +1865 2299 2075 +1850 2447 1751 +2108 2591 1533 +2315 2731 738 +2497 2870 0 +2662 3006 0 +2818 3142 0 +2967 3276 0 +3111 3410 0 +3253 3544 0 +3391 3677 0 +3528 3810 0 +3664 3943 0 +3798 4075 0 +3933 4095 0 +0 0 2358 +0 0 2358 +0 0 2358 +0 0 2357 +0 0 2357 +0 0 2356 +0 0 2355 +0 0 2353 +0 0 2352 +0 0 2349 +0 0 2346 +437 0 2341 +970 345 2335 +1269 1270 2326 +1619 1718 2315 +1865 1994 2299 +2067 2210 2277 +2067 2277 2155 +2126 2431 1997 +2284 2579 1883 +2435 2723 1664 +2580 2863 870 +2722 3002 0 +2861 3138 0 +2998 3274 0 +3134 3408 0 +3270 3543 0 +3404 3676 0 +3537 3809 0 +3671 3942 0 +3803 4075 0 +3937 4095 0 +1692 0 2358 +1694 0 2358 +1698 0 2358 +1702 0 2357 +1708 0 2357 +1716 0 2356 +1727 0 2355 +1740 0 2353 +1758 0 2352 +1781 0 2349 +1809 0 2346 +1845 0 2341 +1889 345 2335 +1941 1269 2326 +2003 1619 2315 +2075 1865 2299 +2155 2067 2277 +2245 2245 2245 +2343 2409 2199 +2447 2563 2129 +2557 2711 2015 +2672 2855 1796 +2791 2995 1006 +2913 3134 0 +3037 3270 0 +3164 3406 0 +3291 3541 0 +3420 3675 0 +3550 3808 0 +3680 3941 0 +3810 4074 0 +3942 4095 0 +2209 0 2491 +2210 0 2491 +2211 0 2490 +2213 0 2490 +2215 0 2489 +2218 0 2489 +2221 0 2488 +2226 0 2487 +2232 0 2486 +2240 0 2484 +2251 0 2481 +2264 0 2478 +2282 0 2473 +2305 477 2467 +2334 1401 2459 +2370 1751 2447 +2414 1997 2431 +2409 2199 2343 +2409 2288 2199 +2563 2545 2129 +2665 2711 2015 +2758 2855 1796 +2858 2995 1006 +2965 3134 0 +3078 3270 0 +3194 3406 0 +3315 3541 0 +3438 3675 0 +3563 3808 0 +3690 3941 0 +3818 4074 0 +3947 4095 0 +2503 0 2623 +2503 0 2623 +2504 0 2623 +2505 0 2622 +2506 0 2622 +2507 0 2621 +2509 0 2621 +2511 0 2620 +2515 0 2619 +2519 0 2618 +2525 0 2616 +2533 0 2613 +2543 0 2610 +2556 0 2605 +2572 611 2599 +2591 1533 2587 +2579 1883 2533 +2563 2129 2447 +2563 2129 2258 +2563 2339 2129 +2711 2634 2015 +2852 2855 1796 +2935 2995 1006 +3027 3134 0 +3126 3270 0 +3233 3406 0 +3344 3541 0 +3461 3675 0 +3581 3808 0 +3703 3941 0 +3828 4074 0 +3955 4095 0 +2727 0 2755 +2727 0 2755 +2728 0 2755 +2728 0 2755 +2729 0 2755 +2730 0 2754 +2731 0 2754 +2732 0 2753 +2734 0 2752 +2737 0 2751 +2741 0 2750 +2745 0 2748 +2746 0 2740 +2742 0 2724 +2738 0 2702 +2731 738 2671 +2723 1664 2626 +2711 2015 2557 +2711 2015 2416 +2711 2015 2114 +2711 2400 2015 +2855 2730 1796 +2995 2968 1006 +3098 3134 0 +3184 3270 0 +3279 3406 0 +3381 3541 0 +3490 3675 0 +3603 3808 0 +3720 3941 0 +3841 4074 0 +3965 4095 0 +2887 0 2856 +2887 0 2855 +2887 0 2855 +2887 0 2854 +2887 0 2853 +2887 0 2852 +2886 0 2850 +2886 0 2848 +2885 0 2845 +2885 0 2842 +2883 0 2836 +2882 0 2829 +2880 0 2820 +2878 0 2807 +2874 0 2788 +2870 0 2763 +2863 870 2726 +2855 1796 2672 +2855 1796 2567 +2855 1796 2372 +2855 1796 1797 +2855 2470 1796 +2995 2833 1006 +3134 3084 0 +3252 3270 0 +3335 3406 0 +3426 3541 0 +3525 3675 0 +3631 3808 0 +3742 3941 0 +3858 4074 0 +3978 4095 0 +3019 0 2938 +3019 0 2938 +3019 0 2938 +3019 0 2937 +3019 0 2936 +3019 0 2935 +3018 0 2934 +3018 0 2932 +3018 0 2930 +3017 0 2927 +3016 0 2922 +3015 0 2916 +3014 0 2908 +3012 0 2898 +3010 0 2883 +3006 0 2862 +3002 0 2833 +2995 1006 2791 +2995 1006 2712 +2995 1006 2579 +2995 1006 2303 +2995 1635 1006 +2995 2549 1006 +3134 2943 0 +3270 3203 0 +3400 3406 0 +3480 3541 0 +3569 3675 0 +3666 3808 0 +3770 3941 0 +3880 4074 0 +3994 4095 0 +3152 0 3030 +3152 0 3029 +3152 0 3029 +3151 0 3029 +3151 0 3028 +3151 0 3027 +3151 0 3026 +3151 0 3025 +3151 0 3023 +3150 0 3020 +3150 0 3017 +3149 0 3012 +3148 0 3005 +3146 0 2997 +3144 0 2985 +3142 0 2969 +3138 0 2946 +3134 0 2913 +3134 0 2854 +3134 0 2761 +3134 0 2596 +3134 0 2195 +3134 1211 0 +3134 2638 0 +3270 3056 0 +3406 3325 0 +3541 3538 0 +3622 3675 0 +3709 3808 0 +3805 3941 0 +3907 4074 0 +4016 4095 0 +3284 0 3128 +3283 0 3128 +3283 0 3128 +3283 0 3128 +3283 0 3127 +3283 0 3127 +3283 0 3126 +3283 0 3125 +3283 0 3123 +3282 0 3121 +3282 0 3118 +3281 0 3114 +3280 0 3109 +3280 0 3102 +3278 0 3093 +3276 0 3080 +3274 0 3062 +3270 0 3037 +3270 0 2993 +3270 0 2926 +3270 0 2818 +3270 0 2616 +3270 0 1990 +3270 0 0 +3270 2734 0 +3406 3175 0 +3541 3450 0 +3675 3665 0 +3761 3808 0 +3847 3941 0 +3941 4074 0 +4043 4095 0 +3416 0 3234 +3416 0 3234 +3416 0 3234 +3416 0 3234 +3416 0 3233 +3416 0 3233 +3415 0 3232 +3415 0 3231 +3415 0 3230 +3415 0 3228 +3414 0 3226 +3414 0 3223 +3414 0 3219 +3413 0 3214 +3412 0 3206 +3410 0 3196 +3408 0 3183 +3406 0 3164 +3406 0 3131 +3406 0 3082 +3406 0 3008 +3406 0 2886 +3406 0 2643 +3406 0 1325 +3406 0 0 +3406 2838 0 +3541 3296 0 +3675 3576 0 +3808 3794 0 +3898 3941 0 +3983 4074 0 +4077 4095 0 +3548 0 3346 +3548 0 3346 +3548 0 3346 +3548 0 3345 +3548 0 3345 +3548 0 3344 +3548 0 3344 +3548 0 3343 +3548 0 3342 +3547 0 3341 +3547 0 3339 +3547 0 3337 +3546 0 3334 +3546 0 3330 +3545 0 3324 +3544 0 3316 +3543 0 3306 +3541 0 3291 +3541 0 3267 +3541 0 3231 +3541 0 3179 +3541 0 3099 +3541 0 2963 +3541 0 2676 +3541 0 0 +3541 0 0 +3541 2947 0 +3675 3420 0 +3808 3704 0 +3941 3923 0 +4034 4074 0 +4095 4095 0 +3680 0 3462 +3680 0 3462 +3680 0 3462 +3680 0 3461 +3680 0 3461 +3680 0 3461 +3680 0 3460 +3680 0 3460 +3680 0 3459 +3680 0 3458 +3679 0 3457 +3679 0 3455 +3679 0 3453 +3678 0 3449 +3678 0 3445 +3677 0 3439 +3676 0 3431 +3675 0 3420 +3675 0 3402 +3675 0 3376 +3675 0 3338 +3675 0 3283 +3675 0 3197 +3675 0 3048 +3675 0 2718 +3675 0 0 +3675 0 0 +3675 3061 0 +3808 3546 0 +3941 3832 0 +4074 4053 0 +4095 4095 0 +3812 0 3581 +3812 0 3581 +3812 0 3581 +3812 0 3581 +3812 0 3581 +3812 0 3581 +3812 0 3580 +3812 0 3580 +3812 0 3579 +3812 0 3579 +3812 0 3577 +3812 0 3576 +3811 0 3574 +3811 0 3572 +3810 0 3569 +3810 0 3564 +3809 0 3558 +3808 0 3550 +3808 0 3536 +3808 0 3517 +3808 0 3490 +3808 0 3451 +3808 0 3393 +3808 0 3302 +3808 0 3143 +3808 0 2767 +3808 0 0 +3808 0 0 +3808 3180 0 +3941 3674 0 +4074 3962 0 +4095 4095 0 +3944 0 3704 +3944 0 3704 +3944 0 3704 +3944 0 3703 +3944 0 3703 +3944 0 3703 +3944 0 3703 +3944 0 3703 +3944 0 3702 +3944 0 3702 +3944 0 3701 +3944 0 3700 +3944 0 3699 +3943 0 3697 +3943 0 3694 +3943 0 3691 +3942 0 3686 +3941 0 3680 +3941 0 3669 +3941 0 3655 +3941 0 3635 +3941 0 3608 +3941 0 3568 +3941 0 3507 +3941 0 3413 +3941 0 3244 +3941 0 2826 +3941 0 0 +3941 0 0 +3941 3302 0 +4074 3802 0 +4095 4092 0 +4076 0 3828 +4076 0 3828 +4076 0 3828 +4076 0 3828 +4076 0 3828 +4076 0 3828 +4076 0 3828 +4076 0 3828 +4076 0 3827 +4076 0 3827 +4076 0 3826 +4076 0 3826 +4076 0 3824 +4076 0 3823 +4075 0 3821 +4075 0 3818 +4075 0 3815 +4074 0 3810 +4074 0 3803 +4074 0 3792 +4074 0 3777 +4074 0 3757 +4074 0 3729 +4074 0 3688 +4074 0 3626 +4074 0 3528 +4074 0 3351 +4074 0 2893 +4074 0 0 +4074 0 0 +4074 3426 0 +4095 3932 0 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3955 +4095 0 3954 +4095 0 3954 +4095 0 3954 +4095 0 3953 +4095 0 3952 +4095 0 3951 +4095 0 3950 +4095 0 3948 +4095 0 3945 +4095 0 3942 +4095 0 3936 +4095 0 3928 +4095 0 3917 +4095 0 3903 +4095 0 3882 +4095 0 3853 +4095 0 3811 +4095 0 3748 +4095 0 3648 +4095 0 3465 +4095 0 2973 +4095 0 0 +4095 0 0 +4095 3552 0 +0 2222 2491 +0 2224 2491 +0 2226 2491 +0 2230 2491 +0 2234 2491 +0 2239 2491 +0 2247 2491 +0 2256 2491 +0 2269 2491 +0 2285 2491 +0 2306 2491 +0 2333 2491 +0 2367 2491 +0 2408 2491 +0 2458 2491 +0 2491 2463 +0 2491 2371 +0 2491 2209 +0 2491 1822 +0 2623 0 +0 2755 0 +1472 2887 0 +2220 3019 0 +2554 3152 0 +2793 3284 0 +2992 3416 0 +3168 3548 0 +3330 3680 0 +3484 3812 0 +3631 3944 0 +3774 4076 0 +3915 4095 0 +0 2220 2491 +0 2223 2491 +0 2225 2491 +0 2228 2491 +0 2233 2491 +0 2238 2491 +0 2245 2491 +0 2255 2491 +0 2268 2491 +0 2284 2491 +0 2305 2491 +0 2332 2491 +0 2366 2491 +0 2407 2491 +0 2457 2491 +0 2491 2464 +0 2491 2372 +0 2491 2210 +0 2491 1824 +0 2623 0 +0 2755 0 +1483 2887 0 +2222 3019 0 +2555 3152 0 +2793 3283 0 +2992 3416 0 +3168 3548 0 +3331 3680 0 +3484 3812 0 +3632 3944 0 +3775 4076 0 +3915 4095 0 +0 2218 2491 +0 2220 2491 +0 2223 2490 +0 2226 2490 +0 2230 2490 +0 2236 2490 +0 2243 2490 +0 2253 2490 +0 2266 2490 +0 2283 2490 +0 2304 2490 +0 2331 2490 +0 2364 2490 +0 2406 2490 +0 2456 2490 +0 2490 2464 +0 2490 2373 +0 2490 2211 +0 2490 1826 +0 2623 0 +0 2755 0 +1497 2887 0 +2225 3019 0 +2556 3152 0 +2794 3283 0 +2992 3416 0 +3168 3548 0 +3331 3680 0 +3484 3812 0 +3632 3944 0 +3775 4076 0 +3915 4095 0 +0 2215 2491 +0 2217 2491 +0 2220 2490 +0 2223 2490 +0 2228 2490 +0 2234 2490 +0 2241 2490 +0 2251 2490 +0 2264 2490 +0 2280 2490 +0 2302 2490 +0 2329 2490 +0 2362 2490 +0 2404 2490 +0 2454 2490 +0 2490 2465 +0 2490 2374 +0 2490 2213 +0 2490 1830 +0 2622 0 +0 2755 0 +1516 2887 0 +2229 3019 0 +2558 3151 0 +2795 3283 0 +2993 3416 0 +3169 3548 0 +3331 3680 0 +3485 3812 0 +3632 3944 0 +3775 4076 0 +3915 4095 0 +0 2210 2491 +0 2212 2491 +0 2215 2490 +0 2219 2490 +0 2224 2489 +0 2230 2489 +0 2238 2489 +0 2247 2489 +0 2260 2489 +0 2277 2489 +0 2298 2489 +0 2326 2489 +0 2360 2489 +0 2401 2489 +0 2452 2489 +0 2489 2466 +0 2489 2375 +0 2489 2215 +0 2489 1834 +0 2622 0 +0 2755 0 +1540 2887 0 +2234 3019 0 +2560 3151 0 +2797 3283 0 +2994 3416 0 +3170 3548 0 +3332 3680 0 +3485 3812 0 +3632 3944 0 +3775 4076 0 +3915 4095 0 +0 2204 2491 +0 2206 2491 +0 2209 2490 +0 2213 2490 +0 2219 2489 +0 2226 2489 +0 2233 2489 +0 2243 2489 +0 2256 2489 +0 2273 2489 +0 2294 2489 +0 2322 2489 +0 2356 2489 +0 2398 2489 +0 2449 2489 +0 2489 2468 +0 2489 2377 +0 2489 2218 +0 2489 1840 +0 2621 0 +0 2754 0 +1569 2887 0 +2241 3019 0 +2564 3151 0 +2799 3283 0 +2996 3416 0 +3171 3548 0 +3332 3680 0 +3485 3812 0 +3632 3944 0 +3775 4076 0 +3916 4095 0 +0 2196 2491 +0 2199 2491 +0 2202 2490 +0 2206 2490 +0 2211 2489 +0 2218 2489 +0 2227 2488 +0 2237 2488 +0 2250 2488 +0 2267 2488 +0 2289 2488 +0 2317 2488 +0 2352 2488 +0 2394 2488 +0 2445 2488 +0 2488 2470 +0 2488 2379 +0 2488 2221 +0 2488 1848 +0 2621 0 +0 2754 0 +1606 2886 0 +2249 3018 0 +2568 3151 0 +2801 3283 0 +2997 3415 0 +3172 3548 0 +3333 3680 0 +3486 3812 0 +3633 3944 0 +3776 4076 0 +3916 4095 0 +0 2185 2491 +0 2187 2491 +0 2190 2490 +0 2195 2490 +0 2200 2489 +0 2207 2489 +0 2217 2488 +0 2229 2487 +0 2242 2487 +0 2260 2487 +0 2282 2487 +0 2310 2487 +0 2345 2487 +0 2388 2487 +0 2440 2487 +0 2487 2473 +0 2487 2383 +0 2487 2226 +0 2487 1859 +0 2620 0 +0 2753 0 +1651 2886 0 +2261 3018 0 +2573 3151 0 +2805 3283 0 +2999 3415 0 +3173 3548 0 +3334 3680 0 +3487 3812 0 +3633 3944 0 +3776 4076 0 +3916 4095 0 +0 2170 2491 +0 2172 2491 +0 2175 2490 +0 2180 2490 +0 2185 2489 +0 2193 2489 +0 2202 2488 +0 2215 2487 +0 2231 2486 +0 2249 2486 +0 2272 2486 +0 2301 2486 +0 2336 2486 +0 2380 2486 +0 2433 2486 +0 2486 2476 +0 2486 2387 +0 2486 2232 +0 2486 1873 +0 2619 0 +0 2752 0 +1706 2885 0 +2276 3018 0 +2581 3151 0 +2809 3283 0 +3002 3415 0 +3175 3548 0 +3336 3680 0 +3488 3812 0 +3634 3944 0 +3777 4076 0 +3917 4095 0 +0 2149 2491 +0 2151 2491 +0 2154 2490 +0 2159 2490 +0 2165 2489 +0 2172 2489 +0 2183 2488 +0 2196 2487 +0 2213 2486 +0 2235 2484 +0 2258 2484 +0 2288 2484 +0 2325 2484 +0 2369 2484 +0 2423 2484 +0 2484 2481 +0 2484 2393 +0 2484 2240 +0 2484 1891 +0 2618 0 +0 2751 0 +1769 2885 0 +2294 3017 0 +2591 3150 0 +2815 3282 0 +3006 3415 0 +3178 3547 0 +3337 3680 0 +3489 3812 0 +3635 3944 0 +3777 4076 0 +3917 4095 0 +0 2119 2491 +0 2121 2491 +0 2125 2490 +0 2129 2490 +0 2136 2489 +0 2144 2489 +0 2155 2488 +0 2169 2487 +0 2187 2486 +0 2210 2484 +0 2239 2481 +0 2270 2481 +0 2308 2481 +0 2355 2481 +0 2410 2481 +0 2475 2481 +0 2481 2401 +0 2481 2251 +0 2481 1913 +0 2616 0 +0 2750 0 +1843 2883 0 +2319 3016 0 +2604 3150 0 +2823 3282 0 +3011 3414 0 +3182 3547 0 +3340 3679 0 +3491 3812 0 +3636 3944 0 +3778 4076 0 +3918 4095 0 +0 2075 2491 +0 2078 2491 +0 2082 2490 +0 2087 2490 +0 2094 2489 +0 2103 2489 +0 2115 2488 +0 2130 2487 +0 2149 2486 +0 2174 2484 +0 2206 2481 +0 2245 2478 +0 2285 2478 +0 2334 2478 +0 2392 2478 +0 2460 2478 +0 2478 2411 +0 2478 2264 +0 2478 1941 +0 2613 0 +0 2748 0 +1925 2882 0 +2350 3015 0 +2620 3149 0 +2833 3281 0 +3018 3414 0 +3186 3547 0 +3343 3679 0 +3493 3812 0 +3638 3944 0 +3780 4076 0 +3919 4095 0 +0 2009 2491 +0 2013 2491 +0 2017 2490 +0 2023 2490 +0 2031 2489 +0 2041 2489 +0 2055 2488 +0 2072 2487 +0 2094 2486 +0 2122 2484 +0 2158 2481 +0 2201 2478 +0 2253 2473 +0 2305 2473 +0 2366 2473 +0 2438 2473 +0 2473 2423 +0 2473 2282 +0 2473 1977 +0 2610 0 +678 2746 0 +2016 2880 0 +2388 3014 0 +2642 3148 0 +2847 3280 0 +3027 3414 0 +3192 3546 0 +3348 3679 0 +3496 3811 0 +3640 3944 0 +3781 4076 0 +3920 4095 0 +0 1903 2491 +0 1907 2491 +0 1913 2490 +0 1920 2490 +0 1930 2489 +0 1943 2489 +0 1960 2488 +0 1981 2487 +0 2008 2486 +0 2042 2484 +0 2084 2481 +0 2134 2478 +0 2194 2473 +477 2263 2467 +477 2330 2467 +477 2407 2467 +477 2467 2440 +477 2467 2305 +477 2467 2021 +0 2605 705 +1463 2742 0 +2115 2878 0 +2434 3012 0 +2669 3146 0 +2865 3280 0 +3039 3413 0 +3201 3546 0 +3354 3678 0 +3501 3811 0 +3644 3943 0 +3784 4076 0 +3922 4095 0 +0 1706 2491 +0 1713 2491 +0 1722 2490 +0 1733 2490 +0 1748 2489 +0 1767 2489 +0 1791 2488 +0 1822 2487 +0 1859 2486 +0 1906 2484 +0 1961 2481 +0 2026 2478 +0 2100 2473 +477 2184 2467 +1401 2276 2459 +1401 2362 2459 +1401 2455 2459 +1401 2459 2334 +1401 2459 2073 +611 2599 1236 +1799 2738 0 +2220 2874 0 +2489 3010 0 +2703 3144 0 +2886 3278 0 +3055 3412 0 +3211 3545 0 +3361 3678 0 +3506 3810 0 +3648 3943 0 +3787 4075 0 +3924 4095 0 +0 1120 2491 +0 1143 2491 +0 1173 2490 +0 1210 2490 +0 1255 2489 +0 1310 2489 +0 1373 2488 +0 1446 2487 +0 1529 2486 +0 1620 2484 +0 1719 2481 +0 1824 2478 +0 1935 2473 +477 2051 2467 +1401 2171 2459 +1751 2293 2447 +1751 2401 2447 +1751 2447 2370 +1751 2447 2135 +1533 2591 1533 +2040 2731 738 +2332 2870 0 +2554 3006 0 +2744 3142 0 +2915 3276 0 +3074 3410 0 +3225 3544 0 +3371 3677 0 +3514 3810 0 +3653 3943 0 +3790 4075 0 +3927 4095 0 +0 0 2491 +0 0 2491 +0 0 2490 +0 0 2490 +0 0 2489 +0 0 2489 +0 0 2488 +0 0 2487 +0 0 2486 +0 0 2484 +0 415 2481 +0 1199 2478 +0 1535 2473 +477 1776 2467 +1401 1976 2459 +1751 2152 2447 +1997 2315 2431 +1997 2431 2414 +1997 2431 2207 +1981 2579 1883 +2240 2723 1664 +2447 2863 870 +2628 3002 0 +2795 3138 0 +2950 3274 0 +3099 3408 0 +3243 3543 0 +3385 3676 0 +3523 3809 0 +3660 3942 0 +3796 4075 0 +3931 4095 0 +0 0 2491 +0 0 2491 +0 0 2490 +0 0 2490 +0 0 2489 +0 0 2489 +0 0 2488 +0 0 2487 +0 0 2486 +0 0 2484 +0 0 2481 +0 0 2478 +557 0 2473 +1099 477 2467 +1401 1403 2459 +1751 1850 2447 +1997 2126 2431 +2199 2343 2409 +2199 2409 2288 +2258 2563 2129 +2416 2711 2015 +2567 2855 1796 +2712 2995 1006 +2854 3134 0 +2993 3270 0 +3131 3406 0 +3267 3541 0 +3402 3675 0 +3536 3808 0 +3669 3941 0 +3803 4074 0 +3936 4095 0 +1822 0 2491 +1824 0 2491 +1826 0 2490 +1830 0 2490 +1834 0 2489 +1840 0 2489 +1848 0 2488 +1859 0 2487 +1873 0 2486 +1891 0 2484 +1913 0 2481 +1941 0 2478 +1977 0 2473 +2021 477 2467 +2073 1401 2459 +2135 1751 2447 +2207 1997 2431 +2288 2199 2409 +2377 2377 2377 +2475 2541 2331 +2579 2696 2261 +2689 2843 2147 +2804 2987 1930 +2923 3128 1137 +3045 3266 0 +3170 3402 0 +3296 3538 0 +3423 3673 0 +3552 3807 0 +3682 3940 0 +3812 4073 0 +3943 4095 0 +2340 0 2623 +2341 0 2623 +2342 0 2623 +2343 0 2622 +2344 0 2622 +2346 0 2621 +2349 0 2621 +2352 0 2620 +2357 0 2619 +2363 0 2618 +2372 0 2616 +2382 0 2613 +2396 0 2610 +2414 0 2605 +2437 611 2599 +2466 1533 2591 +2502 1883 2579 +2545 2129 2563 +2541 2331 2475 +2541 2420 2331 +2696 2678 2261 +2797 2843 2147 +2890 2987 1930 +2991 3128 1137 +3097 3266 0 +3210 3402 0 +3326 3538 0 +3447 3673 0 +3570 3807 0 +3695 3940 0 +3822 4073 0 +3950 4095 0 +2635 0 2755 +2635 0 2755 +2636 0 2755 +2636 0 2755 +2637 0 2755 +2638 0 2754 +2640 0 2754 +2641 0 2753 +2644 0 2752 +2647 0 2751 +2651 0 2750 +2657 0 2748 +2665 0 2746 +2675 0 2742 +2688 0 2738 +2705 738 2731 +2723 1664 2719 +2711 2015 2665 +2696 2261 2579 +2696 2261 2391 +2696 2471 2261 +2843 2766 2147 +2984 2987 1930 +3067 3128 1137 +3159 3266 0 +3259 3402 0 +3365 3538 0 +3477 3673 0 +3593 3807 0 +3713 3940 0 +3835 4073 0 +3961 4095 0 +2859 0 2887 +2859 0 2887 +2859 0 2887 +2860 0 2887 +2860 0 2887 +2861 0 2887 +2862 0 2886 +2863 0 2886 +2864 0 2885 +2866 0 2885 +2869 0 2883 +2873 0 2882 +2877 0 2880 +2878 0 2872 +2874 0 2856 +2870 0 2834 +2863 870 2803 +2855 1796 2758 +2843 2147 2689 +2843 2147 2549 +2843 2147 2246 +2843 2532 2147 +2987 2862 1930 +3128 3101 1137 +3230 3266 0 +3317 3402 0 +3411 3538 0 +3513 3673 0 +3622 3807 0 +3735 3940 0 +3852 4073 0 +3974 4095 0 +3019 0 2988 +3019 0 2987 +3019 0 2987 +3019 0 2987 +3019 0 2986 +3019 0 2985 +3018 0 2984 +3018 0 2982 +3018 0 2980 +3017 0 2977 +3016 0 2974 +3015 0 2968 +3014 0 2961 +3012 0 2952 +3010 0 2939 +3006 0 2920 +3002 0 2895 +2995 1006 2858 +2987 1930 2804 +2987 1930 2699 +2987 1930 2503 +2987 1930 1930 +2987 2602 1930 +3128 2965 1137 +3266 3216 0 +3384 3402 0 +3467 3538 0 +3558 3673 0 +3657 3807 0 +3763 3940 0 +3874 4073 0 +3990 4095 0 +3152 0 3071 +3152 0 3070 +3152 0 3070 +3151 0 3070 +3151 0 3069 +3151 0 3068 +3151 0 3067 +3151 0 3066 +3151 0 3064 +3150 0 3062 +3150 0 3059 +3149 0 3055 +3148 0 3049 +3146 0 3041 +3144 0 3030 +3142 0 3015 +3138 0 2995 +3134 0 2965 +3128 1137 2923 +3128 1137 2845 +3128 1137 2712 +3128 1137 2436 +3128 1758 1137 +3128 2681 1137 +3266 3074 0 +3402 3335 0 +3532 3538 0 +3612 3673 0 +3701 3807 0 +3798 3940 0 +3902 4073 0 +4012 4095 0 +3284 0 3162 +3283 0 3162 +3283 0 3161 +3283 0 3161 +3283 0 3160 +3283 0 3160 +3283 0 3159 +3283 0 3158 +3283 0 3157 +3282 0 3155 +3282 0 3152 +3281 0 3149 +3280 0 3144 +3280 0 3138 +3278 0 3129 +3276 0 3117 +3274 0 3100 +3270 0 3078 +3266 0 3045 +3266 0 2986 +3266 0 2893 +3266 0 2727 +3266 0 2327 +3266 1375 0 +3266 2770 0 +3402 3189 0 +3538 3457 0 +3673 3670 0 +3754 3807 0 +3841 3940 0 +3937 4073 0 +4039 4095 0 +3416 0 3261 +3416 0 3261 +3416 0 3260 +3416 0 3260 +3416 0 3260 +3416 0 3259 +3415 0 3259 +3415 0 3258 +3415 0 3257 +3415 0 3255 +3414 0 3253 +3414 0 3250 +3414 0 3247 +3413 0 3242 +3412 0 3234 +3410 0 3225 +3408 0 3212 +3406 0 3194 +3402 0 3170 +3402 0 3125 +3402 0 3059 +3402 0 2951 +3402 0 2749 +3402 0 2121 +3402 0 0 +3402 2866 0 +3538 3307 0 +3673 3582 0 +3807 3797 0 +3893 3940 0 +3979 4073 0 +4073 4095 0 +3548 0 3367 +3548 0 3367 +3548 0 3366 +3548 0 3366 +3548 0 3366 +3548 0 3365 +3548 0 3365 +3548 0 3364 +3548 0 3363 +3547 0 3362 +3547 0 3361 +3547 0 3358 +3546 0 3355 +3546 0 3351 +3545 0 3346 +3544 0 3339 +3543 0 3329 +3541 0 3315 +3538 0 3296 +3538 0 3263 +3538 0 3214 +3538 0 3140 +3538 0 3018 +3538 0 2775 +3538 0 1477 +3538 0 0 +3538 2970 0 +3673 3429 0 +3807 3708 0 +3940 3926 0 +4030 4073 0 +4095 4095 0 +3680 0 3478 +3680 0 3478 +3680 0 3478 +3680 0 3478 +3680 0 3478 +3680 0 3477 +3680 0 3477 +3680 0 3476 +3680 0 3475 +3680 0 3475 +3679 0 3473 +3679 0 3472 +3679 0 3469 +3678 0 3466 +3678 0 3462 +3677 0 3456 +3676 0 3448 +3675 0 3438 +3673 0 3423 +3673 0 3399 +3673 0 3363 +3673 0 3311 +3673 0 3231 +3673 0 3095 +3673 0 2809 +3673 0 0 +3673 0 0 +3673 3079 0 +3807 3552 0 +3940 3836 0 +4073 4055 0 +4095 4095 0 +3812 0 3594 +3812 0 3594 +3812 0 3594 +3812 0 3594 +3812 0 3594 +3812 0 3593 +3812 0 3593 +3812 0 3593 +3812 0 3592 +3812 0 3591 +3812 0 3590 +3812 0 3589 +3811 0 3587 +3811 0 3585 +3810 0 3582 +3810 0 3577 +3809 0 3571 +3808 0 3563 +3807 0 3552 +3807 0 3534 +3807 0 3508 +3807 0 3470 +3807 0 3415 +3807 0 3329 +3807 0 3181 +3807 0 2850 +3807 0 0 +3807 0 0 +3807 3194 0 +3940 3678 0 +4073 3964 0 +4095 4095 0 +3944 0 3713 +3944 0 3713 +3944 0 3713 +3944 0 3713 +3944 0 3713 +3944 0 3713 +3944 0 3713 +3944 0 3712 +3944 0 3712 +3944 0 3711 +3944 0 3711 +3944 0 3710 +3944 0 3708 +3943 0 3706 +3943 0 3704 +3943 0 3701 +3942 0 3696 +3941 0 3690 +3940 0 3682 +3940 0 3668 +3940 0 3649 +3940 0 3622 +3940 0 3583 +3940 0 3525 +3940 0 3434 +3940 0 3275 +3940 0 2899 +3940 0 0 +3940 0 0 +3940 3312 0 +4073 3805 0 +4095 4094 0 +4076 0 3836 +4076 0 3836 +4076 0 3836 +4076 0 3836 +4076 0 3836 +4076 0 3835 +4076 0 3835 +4076 0 3835 +4076 0 3835 +4076 0 3834 +4076 0 3834 +4076 0 3833 +4076 0 3832 +4076 0 3830 +4075 0 3829 +4075 0 3826 +4075 0 3823 +4074 0 3818 +4073 0 3812 +4073 0 3801 +4073 0 3787 +4073 0 3768 +4073 0 3740 +4073 0 3700 +4073 0 3640 +4073 0 3545 +4073 0 3376 +4073 0 2957 +4073 0 0 +4073 0 0 +4073 3434 0 +4095 3935 0 +4095 0 3961 +4095 0 3961 +4095 0 3961 +4095 0 3961 +4095 0 3961 +4095 0 3961 +4095 0 3961 +4095 0 3960 +4095 0 3960 +4095 0 3960 +4095 0 3959 +4095 0 3959 +4095 0 3958 +4095 0 3957 +4095 0 3955 +4095 0 3953 +4095 0 3951 +4095 0 3947 +4095 0 3943 +4095 0 3935 +4095 0 3924 +4095 0 3910 +4095 0 3890 +4095 0 3861 +4095 0 3820 +4095 0 3759 +4095 0 3661 +4095 0 3484 +4095 0 3027 +4095 0 0 +4095 0 0 +4095 3558 0 +0 2354 2623 +0 2355 2623 +0 2357 2623 +0 2359 2623 +0 2363 2623 +0 2367 2623 +0 2372 2623 +0 2380 2623 +0 2390 2623 +0 2402 2623 +0 2419 2623 +0 2440 2623 +0 2466 2623 +0 2500 2623 +0 2541 2623 +0 2590 2623 +0 2623 2595 +0 2623 2503 +0 2623 2340 +0 2623 1952 +0 2755 0 +0 2887 0 +1594 3019 0 +2352 3152 0 +2684 3284 0 +2925 3416 0 +3124 3548 0 +3300 3680 0 +3462 3812 0 +3616 3944 0 +3763 4076 0 +3907 4095 0 +0 2352 2623 +0 2354 2623 +0 2356 2623 +0 2358 2623 +0 2362 2623 +0 2366 2623 +0 2372 2623 +0 2379 2623 +0 2388 2623 +0 2401 2623 +0 2417 2623 +0 2439 2623 +0 2465 2623 +0 2499 2623 +0 2540 2623 +0 2590 2623 +0 2623 2595 +0 2623 2503 +0 2623 2341 +0 2623 1954 +0 2755 0 +0 2887 0 +1602 3019 0 +2353 3152 0 +2685 3283 0 +2925 3416 0 +3124 3548 0 +3300 3680 0 +3462 3812 0 +3616 3944 0 +3763 4076 0 +3907 4095 0 +0 2351 2623 +0 2352 2623 +0 2355 2623 +0 2357 2623 +0 2360 2623 +0 2364 2623 +0 2370 2623 +0 2378 2623 +0 2387 2623 +0 2400 2623 +0 2416 2623 +0 2437 2623 +0 2464 2623 +0 2498 2623 +0 2539 2623 +0 2589 2623 +0 2623 2596 +0 2623 2504 +0 2623 2342 +0 2623 1956 +0 2755 0 +0 2887 0 +1613 3019 0 +2355 3152 0 +2686 3283 0 +2926 3416 0 +3124 3548 0 +3300 3680 0 +3463 3812 0 +3616 3944 0 +3763 4076 0 +3907 4095 0 +0 2348 2623 +0 2350 2623 +0 2352 2623 +0 2355 2622 +0 2358 2622 +0 2362 2622 +0 2368 2622 +0 2375 2622 +0 2385 2622 +0 2398 2622 +0 2414 2622 +0 2436 2622 +0 2463 2622 +0 2496 2622 +0 2538 2622 +0 2588 2622 +0 2622 2596 +0 2622 2505 +0 2622 2343 +0 2622 1958 +0 2755 0 +0 2887 0 +1628 3019 0 +2358 3151 0 +2688 3283 0 +2927 3416 0 +3125 3548 0 +3301 3680 0 +3463 3812 0 +3616 3944 0 +3764 4076 0 +3907 4095 0 +0 2345 2623 +0 2347 2623 +0 2349 2623 +0 2352 2622 +0 2356 2622 +0 2360 2622 +0 2366 2622 +0 2373 2622 +0 2383 2622 +0 2396 2622 +0 2412 2622 +0 2434 2622 +0 2460 2622 +0 2494 2622 +0 2536 2622 +0 2586 2622 +0 2622 2597 +0 2622 2506 +0 2622 2344 +0 2622 1962 +0 2755 0 +0 2887 0 +1646 3019 0 +2362 3151 0 +2690 3283 0 +2928 3416 0 +3125 3548 0 +3301 3680 0 +3463 3812 0 +3617 3944 0 +3764 4076 0 +3907 4095 0 +0 2341 2623 +0 2342 2623 +0 2345 2623 +0 2347 2622 +0 2351 2622 +0 2356 2621 +0 2362 2621 +0 2370 2621 +0 2380 2621 +0 2393 2621 +0 2409 2621 +0 2431 2621 +0 2458 2621 +0 2492 2621 +0 2533 2621 +0 2584 2621 +0 2621 2598 +0 2621 2507 +0 2621 2346 +0 2621 1966 +0 2754 0 +0 2887 0 +1670 3019 0 +2367 3151 0 +2692 3283 0 +2929 3416 0 +3126 3548 0 +3302 3680 0 +3464 3812 0 +3617 3944 0 +3764 4076 0 +3908 4095 0 +0 2335 2623 +0 2336 2623 +0 2338 2623 +0 2341 2622 +0 2346 2622 +0 2351 2621 +0 2357 2621 +0 2365 2621 +0 2375 2621 +0 2388 2621 +0 2405 2621 +0 2427 2621 +0 2454 2621 +0 2488 2621 +0 2530 2621 +0 2581 2621 +0 2621 2600 +0 2621 2509 +0 2621 2349 +0 2621 1972 +0 2754 0 +0 2886 0 +1700 3018 0 +2373 3151 0 +2695 3283 0 +2931 3415 0 +3128 3548 0 +3303 3680 0 +3464 3812 0 +3617 3944 0 +3764 4076 0 +3908 4095 0 +0 2327 2623 +0 2328 2623 +0 2331 2623 +0 2334 2622 +0 2337 2622 +0 2343 2621 +0 2350 2621 +0 2359 2620 +0 2369 2620 +0 2382 2620 +0 2399 2620 +0 2421 2620 +0 2449 2620 +0 2483 2620 +0 2526 2620 +0 2577 2620 +0 2620 2602 +0 2620 2511 +0 2620 2352 +0 2620 1981 +0 2753 0 +0 2886 0 +1737 3018 0 +2382 3151 0 +2700 3283 0 +2934 3415 0 +3129 3548 0 +3304 3680 0 +3465 3812 0 +3618 3944 0 +3765 4076 0 +3908 4095 0 +0 2315 2623 +0 2317 2623 +0 2320 2623 +0 2323 2622 +0 2327 2622 +0 2332 2621 +0 2339 2621 +0 2348 2620 +0 2361 2619 +0 2374 2619 +0 2392 2619 +0 2414 2619 +0 2442 2619 +0 2477 2619 +0 2520 2619 +0 2572 2619 +0 2619 2604 +0 2619 2515 +0 2619 2357 +0 2619 1991 +0 2752 0 +0 2885 0 +1782 3018 0 +2394 3151 0 +2705 3283 0 +2937 3415 0 +3132 3548 0 +3305 3680 0 +3466 3812 0 +3619 3944 0 +3765 4076 0 +3908 4095 0 +0 2300 2623 +0 2302 2623 +0 2304 2623 +0 2308 2622 +0 2312 2622 +0 2317 2621 +0 2325 2621 +0 2334 2620 +0 2347 2619 +0 2363 2618 +0 2381 2618 +0 2404 2618 +0 2432 2618 +0 2469 2618 +0 2512 2618 +0 2565 2618 +0 2618 2608 +0 2618 2519 +0 2618 2363 +0 2618 2005 +0 2751 0 +0 2885 0 +1837 3017 0 +2408 3150 0 +2713 3282 0 +2942 3415 0 +3135 3547 0 +3307 3680 0 +3468 3812 0 +3620 3944 0 +3766 4076 0 +3909 4095 0 +0 2278 2623 +0 2281 2623 +0 2283 2623 +0 2287 2622 +0 2291 2622 +0 2297 2621 +0 2304 2621 +0 2314 2620 +0 2328 2619 +0 2345 2618 +0 2367 2616 +0 2390 2616 +0 2420 2616 +0 2456 2616 +0 2501 2616 +0 2555 2616 +0 2616 2613 +0 2616 2525 +0 2616 2372 +0 2616 2022 +0 2750 0 +0 2883 0 +1900 3016 0 +2427 3150 0 +2723 3282 0 +2947 3414 0 +3138 3547 0 +3310 3679 0 +3469 3812 0 +3621 3944 0 +3767 4076 0 +3910 4095 0 +0 2248 2623 +0 2250 2623 +0 2253 2623 +0 2256 2622 +0 2261 2622 +0 2268 2621 +0 2276 2621 +0 2287 2620 +0 2301 2619 +0 2319 2618 +0 2342 2616 +0 2371 2613 +0 2402 2613 +0 2440 2613 +0 2487 2613 +0 2542 2613 +0 2607 2613 +0 2613 2533 +0 2613 2382 +0 2613 2045 +0 2748 0 +0 2882 0 +1974 3015 0 +2452 3149 0 +2735 3281 0 +2956 3414 0 +3144 3547 0 +3314 3679 0 +3472 3812 0 +3623 3944 0 +3768 4076 0 +3910 4095 0 +0 2205 2623 +0 2207 2623 +0 2210 2623 +0 2214 2622 +0 2219 2622 +0 2226 2621 +0 2235 2621 +0 2247 2620 +0 2262 2619 +0 2281 2618 +0 2306 2616 +0 2338 2613 +0 2377 2610 +0 2417 2610 +0 2466 2610 +0 2524 2610 +0 2592 2610 +0 2610 2543 +0 2610 2396 +0 2610 2073 +0 2746 0 +0 2880 0 +2056 3014 0 +2482 3148 0 +2752 3280 0 +2966 3414 0 +3151 3546 0 +3318 3679 0 +3475 3811 0 +3625 3944 0 +3770 4076 0 +3912 4095 0 +0 2138 2623 +0 2141 2623 +0 2144 2623 +0 2149 2622 +0 2155 2622 +0 2163 2621 +0 2173 2621 +0 2187 2620 +0 2204 2619 +0 2226 2618 +0 2255 2616 +0 2290 2613 +0 2333 2610 +0 2385 2605 +0 2437 2605 +0 2498 2605 +0 2570 2605 +0 2605 2556 +0 2605 2414 +0 2605 2109 +0 2742 0 +817 2878 0 +2148 3012 0 +2521 3146 0 +2773 3280 0 +2979 3413 0 +3160 3546 0 +3325 3678 0 +3480 3811 0 +3628 3943 0 +3773 4076 0 +3913 4095 0 +0 2032 2623 +0 2035 2623 +0 2039 2623 +0 2045 2622 +0 2052 2622 +0 2062 2621 +0 2075 2621 +0 2092 2620 +0 2113 2619 +0 2140 2618 +0 2174 2616 +0 2216 2613 +0 2266 2610 +0 2326 2605 +611 2395 2599 +611 2462 2599 +611 2538 2599 +611 2599 2572 +611 2599 2437 +611 2599 2153 +0 2738 817 +1596 2874 0 +2247 3010 0 +2566 3144 0 +2800 3278 0 +2997 3412 0 +3171 3545 0 +3333 3678 0 +3486 3810 0 +3632 3943 0 +3776 4075 0 +3916 4095 0 +0 1833 2623 +0 1838 2623 +0 1845 2623 +0 1853 2622 +0 1865 2622 +0 1880 2621 +0 1899 2621 +0 1923 2620 +0 1954 2619 +0 1991 2618 +0 2038 2616 +0 2093 2613 +0 2158 2610 +0 2233 2605 +611 2316 2599 +1533 2408 2591 +1533 2493 2591 +1533 2587 2591 +1533 2591 2466 +1533 2591 2206 +738 2731 1362 +1932 2870 0 +2352 3006 0 +2622 3142 0 +2834 3276 0 +3019 3410 0 +3186 3544 0 +3344 3677 0 +3493 3810 0 +3638 3943 0 +3780 4075 0 +3919 4095 0 +0 1232 2623 +0 1251 2623 +0 1275 2623 +0 1304 2622 +0 1342 2622 +0 1387 2621 +0 1441 2621 +0 1505 2620 +0 1578 2619 +0 1661 2618 +0 1752 2616 +0 1851 2613 +0 1956 2610 +0 2067 2605 +611 2183 2599 +1533 2303 2591 +1883 2425 2579 +1883 2533 2579 +1883 2579 2502 +1883 2579 2267 +1667 2723 1664 +2173 2863 870 +2463 3002 0 +2687 3138 0 +2876 3274 0 +3047 3408 0 +3206 3543 0 +3358 3676 0 +3503 3809 0 +3646 3942 0 +3785 4075 0 +3923 4095 0 +0 0 2623 +0 0 2623 +0 0 2623 +0 0 2622 +0 0 2622 +0 0 2621 +0 0 2621 +0 0 2620 +0 0 2619 +0 0 2618 +0 0 2616 +0 547 2613 +0 1330 2610 +0 1667 2605 +611 1908 2599 +1533 2108 2591 +1883 2284 2579 +2129 2447 2563 +2129 2563 2545 +2129 2563 2339 +2114 2711 2015 +2372 2855 1796 +2579 2995 1006 +2761 3134 0 +2926 3270 0 +3082 3406 0 +3231 3541 0 +3376 3675 0 +3517 3808 0 +3655 3941 0 +3792 4074 0 +3928 4095 0 +0 0 2623 +0 0 2623 +0 0 2623 +0 0 2622 +0 0 2622 +0 0 2621 +0 0 2621 +0 0 2620 +0 0 2619 +0 0 2618 +0 0 2616 +0 0 2613 +0 0 2610 +705 0 2605 +1236 611 2599 +1533 1533 2591 +1883 1981 2579 +2129 2258 2563 +2331 2475 2541 +2331 2541 2420 +2391 2696 2261 +2549 2843 2147 +2699 2987 1930 +2845 3128 1137 +2986 3266 0 +3125 3402 0 +3263 3538 0 +3399 3673 0 +3534 3807 0 +3668 3940 0 +3801 4073 0 +3935 4095 0 +1952 0 2623 +1954 0 2623 +1956 0 2623 +1958 0 2622 +1962 0 2622 +1966 0 2621 +1972 0 2621 +1981 0 2620 +1991 0 2619 +2005 0 2618 +2022 0 2616 +2045 0 2613 +2073 0 2610 +2109 0 2605 +2153 611 2599 +2206 1533 2591 +2267 1883 2579 +2339 2129 2563 +2420 2331 2541 +2509 2509 2509 +2607 2673 2463 +2711 2828 2393 +2821 2975 2280 +2936 3119 2061 +3055 3259 1272 +3177 3398 0 +3302 3535 0 +3428 3670 0 +3556 3805 0 +3684 3939 0 +3814 4072 0 +3944 4095 0 +2473 0 2755 +2473 0 2755 +2474 0 2755 +2475 0 2755 +2476 0 2755 +2477 0 2754 +2479 0 2754 +2482 0 2753 +2485 0 2752 +2490 0 2751 +2496 0 2750 +2504 0 2748 +2515 0 2746 +2529 0 2742 +2547 0 2738 +2570 738 2731 +2598 1664 2723 +2634 2015 2711 +2678 2261 2696 +2673 2463 2607 +2673 2552 2463 +2828 2810 2393 +2929 2975 2280 +3022 3119 2061 +3122 3259 1272 +3230 3398 0 +3342 3535 0 +3459 3670 0 +3579 3805 0 +3702 3939 0 +3827 4072 0 +3954 4095 0 +2767 0 2887 +2767 0 2887 +2767 0 2887 +2768 0 2887 +2768 0 2887 +2769 0 2887 +2770 0 2886 +2772 0 2886 +2773 0 2885 +2776 0 2885 +2779 0 2883 +2784 0 2882 +2789 0 2880 +2797 0 2878 +2807 0 2874 +2820 0 2870 +2837 870 2863 +2855 1796 2852 +2843 2147 2797 +2828 2393 2711 +2828 2393 2522 +2828 2603 2393 +2975 2898 2280 +3116 3119 2061 +3199 3259 1272 +3291 3398 0 +3391 3535 0 +3497 3670 0 +3609 3805 0 +3725 3939 0 +3845 4072 0 +3968 4095 0 +2991 0 3019 +2991 0 3019 +2991 0 3019 +2991 0 3019 +2992 0 3019 +2992 0 3019 +2992 0 3018 +2993 0 3018 +2995 0 3018 +2996 0 3017 +2998 0 3016 +3001 0 3015 +3004 0 3014 +3009 0 3012 +3010 0 3004 +3006 0 2988 +3002 0 2966 +2995 1006 2935 +2987 1930 2890 +2975 2280 2821 +2975 2280 2680 +2975 2280 2377 +2975 2664 2280 +3119 2995 2061 +3259 3233 1272 +3362 3398 0 +3449 3535 0 +3543 3670 0 +3646 3805 0 +3754 3939 0 +3867 4072 0 +3984 4095 0 +3152 0 3120 +3152 0 3120 +3152 0 3120 +3151 0 3119 +3151 0 3119 +3151 0 3118 +3151 0 3117 +3151 0 3116 +3151 0 3115 +3150 0 3112 +3150 0 3110 +3149 0 3106 +3148 0 3100 +3146 0 3093 +3144 0 3084 +3142 0 3071 +3138 0 3053 +3134 0 3027 +3128 1137 2991 +3119 2061 2936 +3119 2061 2831 +3119 2061 2636 +3119 2061 2064 +3119 2734 2061 +3259 3097 1272 +3398 3348 0 +3516 3535 0 +3599 3670 0 +3690 3805 0 +3790 3939 0 +3895 4072 0 +4006 4095 0 +3284 0 3203 +3283 0 3203 +3283 0 3202 +3283 0 3202 +3283 0 3201 +3283 0 3201 +3283 0 3200 +3283 0 3199 +3283 0 3198 +3282 0 3196 +3282 0 3194 +3281 0 3191 +3280 0 3186 +3280 0 3180 +3278 0 3173 +3276 0 3162 +3274 0 3147 +3270 0 3126 +3266 0 3097 +3259 1272 3055 +3259 1272 2976 +3259 1272 2843 +3259 1272 2569 +3259 1899 1272 +3259 2813 1272 +3398 3206 0 +3535 3467 0 +3664 3670 0 +3744 3805 0 +3833 3939 0 +3930 4072 0 +4034 4095 0 +3416 0 3294 +3416 0 3294 +3416 0 3294 +3416 0 3293 +3416 0 3293 +3416 0 3293 +3415 0 3292 +3415 0 3291 +3415 0 3290 +3415 0 3289 +3414 0 3287 +3414 0 3284 +3414 0 3281 +3413 0 3276 +3412 0 3270 +3410 0 3261 +3408 0 3249 +3406 0 3233 +3402 0 3210 +3398 0 3177 +3398 0 3118 +3398 0 3025 +3398 0 2860 +3398 0 2458 +3398 1484 0 +3398 2902 0 +3535 3321 0 +3670 3589 0 +3805 3802 0 +3886 3939 0 +3973 4072 0 +4069 4095 0 +3548 0 3393 +3548 0 3393 +3548 0 3393 +3548 0 3393 +3548 0 3392 +3548 0 3392 +3548 0 3392 +3548 0 3391 +3548 0 3390 +3547 0 3389 +3547 0 3387 +3547 0 3385 +3546 0 3382 +3546 0 3379 +3545 0 3374 +3544 0 3367 +3543 0 3357 +3541 0 3344 +3538 0 3326 +3535 0 3302 +3535 0 3257 +3535 0 3190 +3535 0 3083 +3535 0 2881 +3535 0 2256 +3535 0 0 +3535 2998 0 +3670 3439 0 +3805 3714 0 +3939 3929 0 +4025 4072 0 +4095 4095 0 +3680 0 3499 +3680 0 3499 +3680 0 3499 +3680 0 3499 +3680 0 3498 +3680 0 3498 +3680 0 3497 +3680 0 3497 +3680 0 3496 +3680 0 3495 +3679 0 3494 +3679 0 3493 +3679 0 3490 +3678 0 3488 +3678 0 3483 +3677 0 3478 +3676 0 3471 +3675 0 3461 +3673 0 3447 +3670 0 3428 +3670 0 3395 +3670 0 3346 +3670 0 3273 +3670 0 3150 +3670 0 2908 +3670 0 1603 +3670 0 0 +3670 3102 0 +3805 3561 0 +3939 3840 0 +4072 4058 0 +4095 4095 0 +3812 0 3610 +3812 0 3610 +3812 0 3610 +3812 0 3610 +3812 0 3610 +3812 0 3609 +3812 0 3609 +3812 0 3609 +3812 0 3608 +3812 0 3607 +3812 0 3606 +3812 0 3605 +3811 0 3604 +3811 0 3601 +3810 0 3598 +3810 0 3594 +3809 0 3588 +3808 0 3581 +3807 0 3570 +3805 0 3556 +3805 0 3531 +3805 0 3495 +3805 0 3443 +3805 0 3363 +3805 0 3227 +3805 0 2941 +3805 0 0 +3805 0 0 +3805 3211 0 +3939 3685 0 +4072 3968 0 +4095 4095 0 +3944 0 3726 +3944 0 3726 +3944 0 3726 +3944 0 3726 +3944 0 3726 +3944 0 3725 +3944 0 3725 +3944 0 3725 +3944 0 3725 +3944 0 3724 +3944 0 3723 +3944 0 3722 +3944 0 3721 +3943 0 3719 +3943 0 3717 +3943 0 3713 +3942 0 3709 +3941 0 3703 +3940 0 3695 +3939 0 3684 +3939 0 3666 +3939 0 3640 +3939 0 3603 +3939 0 3547 +3939 0 3461 +3939 0 3313 +3939 0 2982 +3939 0 0 +3939 0 0 +3939 3326 0 +4072 3810 0 +4095 4095 0 +4076 0 3846 +4076 0 3845 +4076 0 3845 +4076 0 3845 +4076 0 3845 +4076 0 3845 +4076 0 3845 +4076 0 3845 +4076 0 3845 +4076 0 3844 +4076 0 3843 +4076 0 3843 +4076 0 3841 +4076 0 3840 +4075 0 3838 +4075 0 3836 +4075 0 3833 +4074 0 3828 +4073 0 3822 +4072 0 3814 +4072 0 3800 +4072 0 3781 +4072 0 3754 +4072 0 3715 +4072 0 3657 +4072 0 3566 +4072 0 3407 +4072 0 3031 +4072 0 0 +4072 0 0 +4072 3444 0 +4095 3938 0 +4095 0 3968 +4095 0 3968 +4095 0 3968 +4095 0 3968 +4095 0 3968 +4095 0 3968 +4095 0 3968 +4095 0 3968 +4095 0 3967 +4095 0 3967 +4095 0 3967 +4095 0 3966 +4095 0 3965 +4095 0 3964 +4095 0 3963 +4095 0 3961 +4095 0 3959 +4095 0 3955 +4095 0 3950 +4095 0 3944 +4095 0 3934 +4095 0 3920 +4095 0 3900 +4095 0 3872 +4095 0 3832 +4095 0 3772 +4095 0 3677 +4095 0 3509 +4095 0 3090 +4095 0 0 +4095 0 0 +4095 3566 0 +0 2486 2755 +0 2487 2755 +0 2488 2755 +0 2490 2755 +0 2493 2755 +0 2496 2755 +0 2500 2755 +0 2505 2755 +0 2513 2755 +0 2523 2755 +0 2535 2755 +0 2552 2755 +0 2573 2755 +0 2599 2755 +0 2632 2755 +0 2673 2755 +0 2723 2755 +0 2755 2727 +0 2755 2635 +0 2755 2473 +0 2755 2083 +0 2887 0 +0 3019 0 +1720 3152 0 +2481 3284 0 +2816 3416 0 +3056 3548 0 +3255 3680 0 +3432 3812 0 +3594 3944 0 +3748 4076 0 +3896 4095 0 +0 2485 2755 +0 2486 2755 +0 2488 2755 +0 2489 2755 +0 2492 2755 +0 2495 2755 +0 2499 2755 +0 2505 2755 +0 2512 2755 +0 2522 2755 +0 2535 2755 +0 2551 2755 +0 2572 2755 +0 2598 2755 +0 2632 2755 +0 2673 2755 +0 2723 2755 +0 2755 2727 +0 2755 2635 +0 2755 2473 +0 2755 2084 +0 2887 0 +0 3019 0 +1726 3152 0 +2482 3283 0 +2817 3416 0 +3057 3548 0 +3256 3680 0 +3432 3812 0 +3595 3944 0 +3748 4076 0 +3896 4095 0 +0 2484 2755 +0 2485 2755 +0 2486 2755 +0 2488 2755 +0 2491 2755 +0 2494 2755 +0 2498 2755 +0 2504 2755 +0 2511 2755 +0 2521 2755 +0 2533 2755 +0 2550 2755 +0 2571 2755 +0 2598 2755 +0 2631 2755 +0 2672 2755 +0 2722 2755 +0 2755 2728 +0 2755 2636 +0 2755 2474 +0 2755 2086 +0 2887 0 +0 3019 0 +1735 3152 0 +2484 3283 0 +2817 3416 0 +3057 3548 0 +3256 3680 0 +3432 3812 0 +3595 3944 0 +3748 4076 0 +3896 4095 0 +0 2482 2755 +0 2483 2755 +0 2485 2755 +0 2487 2755 +0 2489 2755 +0 2492 2755 +0 2497 2755 +0 2502 2755 +0 2510 2755 +0 2520 2755 +0 2532 2755 +0 2549 2755 +0 2570 2755 +0 2596 2755 +0 2630 2755 +0 2671 2755 +0 2721 2755 +0 2755 2728 +0 2755 2636 +0 2755 2475 +0 2755 2088 +0 2887 0 +0 3019 0 +1746 3151 0 +2486 3283 0 +2818 3416 0 +3058 3548 0 +3256 3680 0 +3432 3812 0 +3595 3944 0 +3748 4076 0 +3896 4095 0 +0 2479 2755 +0 2481 2755 +0 2482 2755 +0 2484 2755 +0 2487 2755 +0 2490 2755 +0 2495 2755 +0 2501 2755 +0 2508 2755 +0 2517 2755 +0 2530 2755 +0 2547 2755 +0 2568 2755 +0 2595 2755 +0 2628 2755 +0 2670 2755 +0 2720 2755 +0 2755 2729 +0 2755 2637 +0 2755 2476 +0 2755 2091 +0 2887 0 +0 3019 0 +1760 3151 0 +2489 3283 0 +2820 3416 0 +3059 3548 0 +3257 3680 0 +3433 3812 0 +3595 3944 0 +3748 4076 0 +3896 4095 0 +0 2476 2755 +0 2477 2755 +0 2479 2755 +0 2481 2755 +0 2484 2755 +0 2488 2754 +0 2492 2754 +0 2498 2754 +0 2505 2754 +0 2515 2754 +0 2528 2754 +0 2545 2754 +0 2566 2754 +0 2593 2754 +0 2627 2754 +0 2668 2754 +0 2718 2754 +0 2754 2730 +0 2754 2638 +0 2754 2477 +0 2754 2094 +0 2887 0 +0 3019 0 +1779 3151 0 +2493 3283 0 +2822 3416 0 +3060 3548 0 +3258 3680 0 +3433 3812 0 +3595 3944 0 +3749 4076 0 +3896 4095 0 +0 2472 2755 +0 2473 2755 +0 2475 2755 +0 2477 2755 +0 2480 2755 +0 2484 2754 +0 2489 2754 +0 2494 2754 +0 2502 2754 +0 2512 2754 +0 2525 2754 +0 2541 2754 +0 2563 2754 +0 2590 2754 +0 2624 2754 +0 2666 2754 +0 2716 2754 +0 2754 2731 +0 2754 2640 +0 2754 2479 +0 2754 2099 +0 2886 0 +0 3018 0 +1802 3151 0 +2498 3283 0 +2824 3415 0 +3061 3548 0 +3258 3680 0 +3434 3812 0 +3596 3944 0 +3749 4076 0 +3896 4095 0 +0 2466 2755 +0 2467 2755 +0 2469 2755 +0 2471 2755 +0 2474 2755 +0 2478 2754 +0 2483 2754 +0 2490 2753 +0 2497 2753 +0 2507 2753 +0 2521 2753 +0 2537 2753 +0 2559 2753 +0 2586 2753 +0 2620 2753 +0 2662 2753 +0 2713 2753 +0 2753 2732 +0 2753 2641 +0 2753 2482 +0 2753 2105 +0 2886 0 +0 3018 0 +1832 3151 0 +2504 3283 0 +2827 3415 0 +3063 3548 0 +3260 3680 0 +3435 3812 0 +3596 3944 0 +3749 4076 0 +3897 4095 0 +0 2457 2755 +0 2459 2755 +0 2460 2755 +0 2463 2755 +0 2466 2755 +0 2470 2754 +0 2475 2754 +0 2482 2753 +0 2491 2752 +0 2501 2752 +0 2514 2752 +0 2532 2752 +0 2553 2752 +0 2581 2752 +0 2616 2752 +0 2658 2752 +0 2710 2752 +0 2752 2734 +0 2752 2644 +0 2752 2485 +0 2752 2113 +0 2885 0 +0 3018 0 +1869 3151 0 +2513 3283 0 +2832 3415 0 +3066 3548 0 +3261 3680 0 +3436 3812 0 +3597 3944 0 +3750 4076 0 +3897 4095 0 +0 2446 2755 +0 2448 2755 +0 2449 2755 +0 2452 2755 +0 2455 2755 +0 2459 2754 +0 2464 2754 +0 2471 2753 +0 2481 2752 +0 2493 2751 +0 2506 2751 +0 2524 2751 +0 2546 2751 +0 2574 2751 +0 2609 2751 +0 2652 2751 +0 2704 2751 +0 2751 2737 +0 2751 2647 +0 2751 2490 +0 2751 2123 +0 2885 0 +0 3017 0 +1915 3150 0 +2524 3282 0 +2837 3415 0 +3069 3547 0 +3264 3680 0 +3437 3812 0 +3598 3944 0 +3751 4076 0 +3898 4095 0 +0 2431 2755 +0 2432 2755 +0 2434 2755 +0 2436 2755 +0 2440 2755 +0 2444 2754 +0 2450 2754 +0 2457 2753 +0 2467 2752 +0 2479 2751 +0 2495 2750 +0 2514 2750 +0 2536 2750 +0 2565 2750 +0 2601 2750 +0 2645 2750 +0 2697 2750 +0 2750 2741 +0 2750 2651 +0 2750 2496 +0 2750 2137 +0 2883 0 +0 3016 0 +1969 3150 0 +2539 3282 0 +2845 3414 0 +3074 3547 0 +3267 3679 0 +3439 3812 0 +3600 3944 0 +3752 4076 0 +3898 4095 0 +0 2409 2755 +0 2411 2755 +0 2413 2755 +0 2415 2755 +0 2419 2755 +0 2423 2754 +0 2429 2754 +0 2437 2753 +0 2447 2752 +0 2460 2751 +0 2477 2750 +0 2499 2748 +0 2522 2748 +0 2552 2748 +0 2589 2748 +0 2634 2748 +0 2687 2748 +0 2748 2745 +0 2748 2657 +0 2748 2504 +0 2748 2155 +0 2882 0 +0 3015 0 +2033 3149 0 +2558 3281 0 +2855 3414 0 +3080 3547 0 +3271 3679 0 +3442 3812 0 +3602 3944 0 +3753 4076 0 +3899 4095 0 +0 2379 2755 +0 2381 2755 +0 2383 2755 +0 2386 2755 +0 2389 2755 +0 2394 2754 +0 2400 2754 +0 2408 2753 +0 2419 2752 +0 2433 2751 +0 2451 2750 +0 2474 2748 +0 2503 2746 +0 2534 2746 +0 2572 2746 +0 2619 2746 +0 2674 2746 +0 2740 2746 +0 2746 2665 +0 2746 2515 +0 2746 2177 +0 2880 0 +0 3014 0 +2106 3148 0 +2583 3280 0 +2867 3414 0 +3087 3546 0 +3276 3679 0 +3446 3811 0 +3604 3944 0 +3755 4076 0 +3901 4095 0 +0 2335 2755 +0 2337 2755 +0 2339 2755 +0 2342 2755 +0 2346 2755 +0 2351 2754 +0 2358 2754 +0 2367 2753 +0 2379 2752 +0 2394 2751 +0 2414 2750 +0 2439 2748 +0 2470 2746 +0 2509 2742 +0 2550 2742 +0 2598 2742 +0 2656 2742 +0 2724 2742 +0 2742 2675 +0 2742 2529 +0 2742 2206 +0 2878 0 +0 3012 0 +2189 3146 0 +2613 3280 0 +2884 3413 0 +3098 3546 0 +3282 3678 0 +3450 3811 0 +3607 3943 0 +3757 4076 0 +3903 4095 0 +0 2269 2755 +0 2271 2755 +0 2274 2755 +0 2277 2755 +0 2281 2755 +0 2287 2754 +0 2295 2754 +0 2305 2753 +0 2319 2752 +0 2336 2751 +0 2359 2750 +0 2387 2748 +0 2422 2746 +0 2465 2742 +0 2517 2738 +0 2569 2738 +0 2631 2738 +0 2702 2738 +0 2738 2688 +0 2738 2547 +0 2738 2241 +0 2874 0 +922 3010 0 +2280 3144 0 +2651 3278 0 +2906 3412 0 +3111 3545 0 +3291 3678 0 +3457 3810 0 +3612 3943 0 +3760 4075 0 +3905 4095 0 +0 2162 2755 +0 2164 2755 +0 2167 2755 +0 2172 2755 +0 2177 2755 +0 2185 2754 +0 2195 2754 +0 2208 2753 +0 2224 2752 +0 2245 2751 +0 2273 2750 +0 2306 2748 +0 2348 2746 +0 2398 2742 +0 2458 2738 +738 2527 2731 +738 2594 2731 +738 2671 2731 +738 2731 2705 +738 2731 2570 +738 2731 2285 +0 2870 963 +1723 3006 0 +2379 3142 0 +2698 3276 0 +2933 3410 0 +3129 3544 0 +3303 3677 0 +3465 3810 0 +3618 3943 0 +3765 4075 0 +3908 4095 0 +0 1962 2755 +0 1966 2755 +0 1971 2755 +0 1977 2755 +0 1986 2755 +0 1997 2754 +0 2012 2754 +0 2031 2753 +0 2056 2752 +0 2086 2751 +0 2124 2750 +0 2170 2748 +0 2226 2746 +0 2291 2742 +0 2365 2738 +738 2448 2731 +1664 2540 2723 +1664 2626 2723 +1664 2719 2723 +1664 2723 2598 +1664 2723 2338 +870 2863 1498 +2062 3002 0 +2484 3138 0 +2753 3274 0 +2966 3408 0 +3151 3543 0 +3319 3676 0 +3475 3809 0 +3626 3942 0 +3770 4075 0 +3912 4095 0 +0 1353 2755 +0 1367 2755 +0 1386 2755 +0 1409 2755 +0 1439 2755 +0 1476 2754 +0 1521 2754 +0 1575 2753 +0 1638 2752 +0 1711 2751 +0 1794 2750 +0 1885 2748 +0 1983 2746 +0 2089 2742 +0 2200 2738 +738 2315 2731 +1664 2435 2723 +2015 2557 2711 +2015 2665 2711 +2015 2711 2634 +2015 2711 2400 +1797 2855 1796 +2303 2995 1006 +2596 3134 0 +2818 3270 0 +3008 3406 0 +3179 3541 0 +3338 3675 0 +3490 3808 0 +3635 3941 0 +3777 4074 0 +3917 4095 0 +0 0 2755 +0 0 2755 +0 0 2755 +0 0 2755 +0 0 2755 +0 0 2754 +0 0 2754 +0 0 2753 +0 0 2752 +0 0 2751 +0 0 2750 +0 0 2748 +0 678 2746 +0 1463 2742 +0 1799 2738 +738 2040 2731 +1664 2240 2723 +2015 2416 2711 +2261 2579 2696 +2261 2696 2678 +2261 2696 2471 +2246 2843 2147 +2503 2987 1930 +2712 3128 1137 +2893 3266 0 +3059 3402 0 +3214 3538 0 +3363 3673 0 +3508 3807 0 +3649 3940 0 +3787 4073 0 +3924 4095 0 +0 0 2755 +0 0 2755 +0 0 2755 +0 0 2755 +0 0 2755 +0 0 2754 +0 0 2754 +0 0 2753 +0 0 2752 +0 0 2751 +0 0 2750 +0 0 2748 +0 0 2746 +0 0 2742 +817 0 2738 +1362 738 2731 +1664 1667 2723 +2015 2114 2711 +2261 2391 2696 +2463 2607 2673 +2463 2673 2552 +2522 2828 2393 +2680 2975 2280 +2831 3119 2061 +2976 3259 1272 +3118 3398 0 +3257 3535 0 +3395 3670 0 +3531 3805 0 +3666 3939 0 +3800 4072 0 +3934 4095 0 +2083 0 2755 +2084 0 2755 +2086 0 2755 +2088 0 2755 +2091 0 2755 +2094 0 2754 +2099 0 2754 +2105 0 2753 +2113 0 2752 +2123 0 2751 +2137 0 2750 +2155 0 2748 +2177 0 2746 +2206 0 2742 +2241 0 2738 +2285 738 2731 +2338 1664 2723 +2400 2015 2711 +2471 2261 2696 +2552 2463 2673 +2642 2642 2642 +2739 2805 2596 +2843 2959 2526 +2954 3108 2412 +3069 3251 2194 +3187 3392 1406 +3309 3530 0 +3434 3667 0 +3560 3802 0 +3688 3937 0 +3816 4071 0 +3946 4095 0 +2604 0 2887 +2604 0 2887 +2605 0 2887 +2605 0 2887 +2606 0 2887 +2607 0 2887 +2609 0 2886 +2611 0 2886 +2613 0 2885 +2617 0 2885 +2621 0 2883 +2628 0 2882 +2636 0 2880 +2647 0 2878 +2661 0 2874 +2678 0 2870 +2701 870 2863 +2730 1796 2855 +2766 2147 2843 +2810 2393 2828 +2805 2596 2739 +2805 2684 2596 +2959 2942 2526 +3061 3108 2412 +3154 3251 2194 +3255 3392 1406 +3362 3530 0 +3474 3667 0 +3591 3802 0 +3711 3937 0 +3834 4071 0 +3960 4095 0 +2898 0 3019 +2898 0 3019 +2898 0 3019 +2899 0 3019 +2899 0 3019 +2900 0 3019 +2901 0 3018 +2902 0 3018 +2903 0 3018 +2905 0 3017 +2907 0 3016 +2911 0 3015 +2915 0 3014 +2921 0 3012 +2928 0 3010 +2939 0 3006 +2952 0 3002 +2968 1006 2995 +2987 1930 2984 +2975 2280 2929 +2959 2526 2843 +2959 2526 2654 +2959 2735 2526 +3108 3031 2412 +3248 3251 2194 +3331 3392 1406 +3423 3530 0 +3523 3667 0 +3629 3802 0 +3741 3937 0 +3857 4071 0 +3977 4095 0 +3123 0 3152 +3123 0 3152 +3123 0 3152 +3123 0 3151 +3123 0 3151 +3124 0 3151 +3124 0 3151 +3125 0 3151 +3126 0 3151 +3127 0 3150 +3128 0 3150 +3131 0 3149 +3133 0 3148 +3137 0 3146 +3141 0 3144 +3142 0 3136 +3138 0 3120 +3134 0 3098 +3128 1137 3067 +3119 2061 3022 +3108 2412 2954 +3108 2412 2813 +3108 2412 2511 +3108 2796 2412 +3251 3126 2194 +3392 3365 1406 +3495 3530 0 +3581 3667 0 +3676 3802 0 +3777 3937 0 +3886 4071 0 +3999 4095 0 +3284 0 3252 +3283 0 3252 +3283 0 3252 +3283 0 3252 +3283 0 3251 +3283 0 3251 +3283 0 3250 +3283 0 3249 +3283 0 3248 +3282 0 3247 +3282 0 3244 +3281 0 3242 +3280 0 3238 +3280 0 3233 +3278 0 3225 +3276 0 3216 +3274 0 3203 +3270 0 3184 +3266 0 3159 +3259 1272 3122 +3251 2194 3069 +3251 2194 2963 +3251 2194 2768 +3251 2195 2194 +3251 2866 2194 +3392 3230 1406 +3530 3480 0 +3648 3667 0 +3731 3802 0 +3822 3937 0 +3921 4071 0 +4027 4095 0 +3416 0 3335 +3416 0 3335 +3416 0 3335 +3416 0 3335 +3416 0 3334 +3416 0 3334 +3415 0 3333 +3415 0 3333 +3415 0 3331 +3415 0 3330 +3414 0 3329 +3414 0 3326 +3414 0 3323 +3413 0 3319 +3412 0 3313 +3410 0 3305 +3408 0 3294 +3406 0 3279 +3402 0 3259 +3398 0 3230 +3392 1406 3187 +3392 1406 3108 +3392 1406 2976 +3392 1406 2701 +3392 2025 1406 +3392 2945 1406 +3530 3339 0 +3667 3599 0 +3796 3802 0 +3876 3937 0 +3965 4071 0 +4062 4095 0 +3548 0 3426 +3548 0 3426 +3548 0 3426 +3548 0 3426 +3548 0 3426 +3548 0 3425 +3548 0 3425 +3548 0 3424 +3548 0 3423 +3547 0 3422 +3547 0 3421 +3547 0 3419 +3546 0 3416 +3546 0 3413 +3545 0 3408 +3544 0 3402 +3543 0 3393 +3541 0 3381 +3538 0 3365 +3535 0 3342 +3530 0 3309 +3530 0 3250 +3530 0 3157 +3530 0 2992 +3530 0 2593 +3530 1621 0 +3530 3034 0 +3667 3453 0 +3802 3721 0 +3937 3934 0 +4018 4071 0 +4095 4095 0 +3680 0 3525 +3680 0 3525 +3680 0 3525 +3680 0 3525 +3680 0 3525 +3680 0 3525 +3680 0 3524 +3680 0 3524 +3680 0 3523 +3680 0 3522 +3679 0 3521 +3679 0 3520 +3679 0 3517 +3678 0 3515 +3678 0 3511 +3677 0 3506 +3676 0 3499 +3675 0 3490 +3673 0 3477 +3670 0 3459 +3667 0 3434 +3667 0 3389 +3667 0 3323 +3667 0 3215 +3667 0 3014 +3667 0 2388 +3667 0 0 +3667 3131 0 +3802 3571 0 +3937 3846 0 +4071 4061 0 +4095 4095 0 +3812 0 3631 +3812 0 3631 +3812 0 3631 +3812 0 3631 +3812 0 3631 +3812 0 3630 +3812 0 3630 +3812 0 3630 +3812 0 3629 +3812 0 3629 +3812 0 3628 +3812 0 3626 +3811 0 3625 +3811 0 3622 +3810 0 3620 +3810 0 3616 +3809 0 3610 +3808 0 3603 +3807 0 3593 +3805 0 3579 +3802 0 3560 +3802 0 3527 +3802 0 3479 +3802 0 3405 +3802 0 3282 +3802 0 3040 +3802 0 1737 +3802 0 0 +3802 3234 0 +3937 3692 0 +4071 3972 0 +4095 4095 0 +3944 0 3742 +3944 0 3742 +3944 0 3742 +3944 0 3742 +3944 0 3742 +3944 0 3742 +3944 0 3741 +3944 0 3741 +3944 0 3741 +3944 0 3740 +3944 0 3740 +3944 0 3739 +3944 0 3737 +3943 0 3736 +3943 0 3733 +3943 0 3730 +3942 0 3726 +3941 0 3720 +3940 0 3713 +3939 0 3702 +3937 0 3688 +3937 0 3663 +3937 0 3628 +3937 0 3575 +3937 0 3495 +3937 0 3359 +3937 0 3073 +3937 0 0 +3937 0 0 +3937 3344 0 +4071 3816 0 +4095 4095 0 +4076 0 3858 +4076 0 3858 +4076 0 3858 +4076 0 3858 +4076 0 3858 +4076 0 3858 +4076 0 3858 +4076 0 3857 +4076 0 3857 +4076 0 3856 +4076 0 3856 +4076 0 3855 +4076 0 3854 +4076 0 3853 +4075 0 3851 +4075 0 3849 +4075 0 3846 +4074 0 3841 +4073 0 3835 +4072 0 3827 +4071 0 3816 +4071 0 3798 +4071 0 3772 +4071 0 3735 +4071 0 3679 +4071 0 3593 +4071 0 3445 +4071 0 3113 +4071 0 0 +4071 0 0 +4071 3458 0 +4095 3943 0 +4095 0 3978 +4095 0 3978 +4095 0 3978 +4095 0 3978 +4095 0 3977 +4095 0 3977 +4095 0 3977 +4095 0 3977 +4095 0 3977 +4095 0 3977 +4095 0 3976 +4095 0 3976 +4095 0 3975 +4095 0 3974 +4095 0 3972 +4095 0 3971 +4095 0 3968 +4095 0 3965 +4095 0 3961 +4095 0 3954 +4095 0 3946 +4095 0 3932 +4095 0 3913 +4095 0 3886 +4095 0 3847 +4095 0 3790 +4095 0 3699 +4095 0 3539 +4095 0 3164 +4095 0 0 +4095 0 0 +4095 3576 0 +0 2618 2887 +0 2619 2887 +0 2620 2887 +0 2621 2887 +0 2623 2887 +0 2625 2887 +0 2628 2887 +0 2633 2887 +0 2638 2887 +0 2646 2887 +0 2655 2887 +0 2668 2887 +0 2684 2887 +0 2705 2887 +0 2732 2887 +0 2765 2887 +0 2806 2887 +0 2856 2887 +0 2887 2859 +0 2887 2767 +0 2887 2604 +0 2887 2215 +0 3019 0 +0 3152 0 +1844 3284 0 +2613 3416 0 +2948 3548 0 +3188 3680 0 +3387 3812 0 +3564 3944 0 +3726 4076 0 +3880 4095 0 +0 2617 2887 +0 2618 2887 +0 2619 2887 +0 2620 2887 +0 2622 2887 +0 2625 2887 +0 2628 2887 +0 2632 2887 +0 2638 2887 +0 2645 2887 +0 2655 2887 +0 2667 2887 +0 2684 2887 +0 2705 2887 +0 2731 2887 +0 2764 2887 +0 2805 2887 +0 2855 2887 +0 2887 2859 +0 2887 2767 +0 2887 2604 +0 2887 2215 +0 3019 0 +0 3152 0 +1849 3283 0 +2614 3416 0 +2948 3548 0 +3188 3680 0 +3388 3812 0 +3564 3944 0 +3726 4076 0 +3880 4095 0 +0 2616 2887 +0 2617 2887 +0 2618 2887 +0 2620 2887 +0 2621 2887 +0 2624 2887 +0 2627 2887 +0 2631 2887 +0 2637 2887 +0 2644 2887 +0 2654 2887 +0 2667 2887 +0 2683 2887 +0 2704 2887 +0 2731 2887 +0 2764 2887 +0 2805 2887 +0 2855 2887 +0 2887 2859 +0 2887 2767 +0 2887 2605 +0 2887 2217 +0 3019 0 +0 3152 0 +1856 3283 0 +2615 3416 0 +2949 3548 0 +3189 3680 0 +3388 3812 0 +3564 3944 0 +3726 4076 0 +3880 4095 0 +0 2615 2887 +0 2616 2887 +0 2617 2887 +0 2619 2887 +0 2620 2887 +0 2623 2887 +0 2626 2887 +0 2630 2887 +0 2636 2887 +0 2643 2887 +0 2653 2887 +0 2666 2887 +0 2682 2887 +0 2703 2887 +0 2730 2887 +0 2763 2887 +0 2804 2887 +0 2854 2887 +0 2887 2860 +0 2887 2768 +0 2887 2605 +0 2887 2218 +0 3019 0 +0 3151 0 +1864 3283 0 +2617 3416 0 +2950 3548 0 +3189 3680 0 +3388 3812 0 +3564 3944 0 +3727 4076 0 +3880 4095 0 +0 2613 2887 +0 2614 2887 +0 2615 2887 +0 2617 2887 +0 2619 2887 +0 2621 2887 +0 2625 2887 +0 2629 2887 +0 2635 2887 +0 2642 2887 +0 2651 2887 +0 2664 2887 +0 2681 2887 +0 2702 2887 +0 2728 2887 +0 2762 2887 +0 2803 2887 +0 2853 2887 +0 2887 2860 +0 2887 2768 +0 2887 2606 +0 2887 2220 +0 3019 0 +0 3151 0 +1875 3283 0 +2619 3416 0 +2951 3548 0 +3190 3680 0 +3388 3812 0 +3564 3944 0 +3727 4076 0 +3880 4095 0 +0 2611 2887 +0 2612 2887 +0 2613 2887 +0 2614 2887 +0 2617 2887 +0 2619 2887 +0 2623 2887 +0 2627 2887 +0 2632 2887 +0 2640 2887 +0 2650 2887 +0 2662 2887 +0 2679 2887 +0 2700 2887 +0 2727 2887 +0 2761 2887 +0 2802 2887 +0 2852 2887 +0 2887 2861 +0 2887 2769 +0 2887 2607 +0 2887 2223 +0 3019 0 +0 3151 0 +1890 3283 0 +2621 3416 0 +2952 3548 0 +3191 3680 0 +3389 3812 0 +3565 3944 0 +3727 4076 0 +3881 4095 0 +0 2607 2887 +0 2608 2887 +0 2609 2887 +0 2611 2887 +0 2613 2887 +0 2616 2887 +0 2620 2886 +0 2624 2886 +0 2630 2886 +0 2637 2886 +0 2647 2886 +0 2660 2886 +0 2677 2886 +0 2698 2886 +0 2725 2886 +0 2759 2886 +0 2800 2886 +0 2850 2886 +0 2886 2862 +0 2886 2770 +0 2886 2609 +0 2886 2226 +0 3018 0 +0 3151 0 +1908 3283 0 +2625 3415 0 +2954 3548 0 +3192 3680 0 +3390 3812 0 +3565 3944 0 +3727 4076 0 +3881 4095 0 +0 2603 2887 +0 2604 2887 +0 2605 2887 +0 2607 2887 +0 2609 2887 +0 2612 2887 +0 2616 2886 +0 2621 2886 +0 2626 2886 +0 2634 2886 +0 2644 2886 +0 2657 2886 +0 2673 2886 +0 2695 2886 +0 2722 2886 +0 2756 2886 +0 2798 2886 +0 2848 2886 +0 2886 2863 +0 2886 2772 +0 2886 2611 +0 2886 2231 +0 3018 0 +0 3151 0 +1932 3283 0 +2630 3415 0 +2956 3548 0 +3193 3680 0 +3391 3812 0 +3566 3944 0 +3728 4076 0 +3881 4095 0 +0 2597 2887 +0 2598 2887 +0 2599 2887 +0 2601 2887 +0 2603 2887 +0 2606 2887 +0 2610 2886 +0 2615 2886 +0 2622 2885 +0 2629 2885 +0 2639 2885 +0 2652 2885 +0 2669 2885 +0 2691 2885 +0 2718 2885 +0 2752 2885 +0 2795 2885 +0 2845 2885 +0 2885 2864 +0 2885 2773 +0 2885 2613 +0 2885 2237 +0 3018 0 +0 3151 0 +1962 3283 0 +2637 3415 0 +2960 3548 0 +3195 3680 0 +3392 3812 0 +3567 3944 0 +3728 4076 0 +3881 4095 0 +0 2589 2887 +0 2589 2887 +0 2591 2887 +0 2592 2887 +0 2595 2887 +0 2598 2887 +0 2602 2886 +0 2607 2886 +0 2614 2885 +0 2623 2885 +0 2633 2885 +0 2647 2885 +0 2664 2885 +0 2685 2885 +0 2713 2885 +0 2748 2885 +0 2790 2885 +0 2842 2885 +0 2885 2866 +0 2885 2776 +0 2885 2617 +0 2885 2245 +0 3017 0 +0 3150 0 +1999 3282 0 +2646 3415 0 +2964 3547 0 +3198 3680 0 +3394 3812 0 +3568 3944 0 +3729 4076 0 +3882 4095 0 +0 2577 2887 +0 2578 2887 +0 2580 2887 +0 2581 2887 +0 2584 2887 +0 2587 2887 +0 2591 2886 +0 2596 2886 +0 2603 2885 +0 2613 2885 +0 2625 2883 +0 2639 2883 +0 2656 2883 +0 2678 2883 +0 2706 2883 +0 2741 2883 +0 2784 2883 +0 2836 2883 +0 2883 2869 +0 2883 2779 +0 2883 2621 +0 2883 2255 +0 3016 0 +0 3150 0 +2045 3282 0 +2657 3414 0 +2970 3547 0 +3201 3679 0 +3396 3812 0 +3569 3944 0 +3730 4076 0 +3883 4095 0 +0 2562 2887 +0 2563 2887 +0 2564 2887 +0 2566 2887 +0 2569 2887 +0 2572 2887 +0 2576 2886 +0 2581 2886 +0 2589 2885 +0 2599 2885 +0 2611 2883 +0 2628 2882 +0 2645 2882 +0 2668 2882 +0 2697 2882 +0 2733 2882 +0 2777 2882 +0 2829 2882 +0 2882 2873 +0 2882 2784 +0 2882 2628 +0 2882 2269 +0 3015 0 +0 3149 0 +2100 3281 0 +2672 3414 0 +2977 3547 0 +3206 3679 0 +3399 3812 0 +3571 3944 0 +3732 4076 0 +3884 4095 0 +0 2541 2887 +0 2542 2887 +0 2543 2887 +0 2545 2887 +0 2548 2887 +0 2551 2887 +0 2555 2886 +0 2561 2886 +0 2569 2885 +0 2579 2885 +0 2592 2883 +0 2609 2882 +0 2631 2880 +0 2654 2880 +0 2684 2880 +0 2721 2880 +0 2766 2880 +0 2820 2880 +0 2880 2877 +0 2880 2789 +0 2880 2636 +0 2880 2287 +0 3014 0 +0 3148 0 +2164 3280 0 +2691 3414 0 +2987 3546 0 +3212 3679 0 +3403 3811 0 +3574 3944 0 +3734 4076 0 +3885 4095 0 +0 2510 2887 +0 2511 2887 +0 2513 2887 +0 2515 2887 +0 2517 2887 +0 2521 2887 +0 2526 2886 +0 2532 2886 +0 2540 2885 +0 2551 2885 +0 2565 2883 +0 2583 2882 +0 2606 2880 +0 2636 2878 +0 2666 2878 +0 2704 2878 +0 2751 2878 +0 2807 2878 +0 2872 2878 +0 2878 2797 +0 2878 2647 +0 2878 2309 +0 3012 0 +0 3146 0 +2237 3280 0 +2715 3413 0 +3000 3546 0 +3220 3678 0 +3408 3811 0 +3578 3943 0 +3736 4076 0 +3887 4095 0 +0 2466 2887 +0 2467 2887 +0 2469 2887 +0 2471 2887 +0 2474 2887 +0 2478 2887 +0 2483 2886 +0 2490 2886 +0 2499 2885 +0 2511 2885 +0 2526 2883 +0 2546 2882 +0 2571 2880 +0 2602 2878 +0 2641 2874 +0 2681 2874 +0 2730 2874 +0 2788 2874 +0 2856 2874 +0 2874 2807 +0 2874 2661 +0 2874 2338 +0 3010 0 +0 3144 0 +2320 3278 0 +2746 3412 0 +3016 3545 0 +3230 3678 0 +3415 3810 0 +3583 3943 0 +3739 4075 0 +3889 4095 0 +0 2400 2887 +0 2401 2887 +0 2403 2887 +0 2406 2887 +0 2409 2887 +0 2413 2887 +0 2419 2886 +0 2427 2886 +0 2438 2885 +0 2451 2885 +0 2469 2883 +0 2491 2882 +0 2519 2880 +0 2554 2878 +0 2597 2874 +0 2649 2870 +0 2701 2870 +0 2763 2870 +0 2834 2870 +0 2870 2820 +0 2870 2678 +0 2870 2374 +0 3006 0 +1068 3142 0 +2411 3276 0 +2784 3410 0 +3038 3544 0 +3243 3677 0 +3424 3810 0 +3589 3943 0 +3744 4075 0 +3893 4095 0 +0 2292 2887 +0 2294 2887 +0 2296 2887 +0 2299 2887 +0 2304 2887 +0 2310 2887 +0 2317 2886 +0 2327 2886 +0 2340 2885 +0 2356 2885 +0 2378 2883 +0 2405 2882 +0 2439 2880 +0 2480 2878 +0 2530 2874 +0 2590 2870 +870 2659 2863 +870 2726 2863 +870 2803 2863 +870 2863 2837 +870 2863 2701 +870 2863 2417 +0 3002 1109 +1857 3138 0 +2510 3274 0 +2830 3408 0 +3065 3543 0 +3261 3676 0 +3435 3809 0 +3597 3942 0 +3750 4075 0 +3897 4095 0 +0 2091 2887 +0 2094 2887 +0 2098 2887 +0 2103 2887 +0 2110 2887 +0 2118 2887 +0 2129 2886 +0 2144 2886 +0 2163 2885 +0 2188 2885 +0 2218 2883 +0 2256 2882 +0 2302 2880 +0 2358 2878 +0 2423 2874 +0 2497 2870 +870 2580 2863 +1796 2672 2855 +1796 2758 2855 +1796 2852 2855 +1796 2855 2730 +1796 2855 2470 +1006 2995 1635 +2195 3134 0 +2616 3270 0 +2886 3406 0 +3099 3541 0 +3283 3675 0 +3451 3808 0 +3608 3941 0 +3757 4074 0 +3903 4095 0 +0 1472 2887 +0 1483 2887 +0 1497 2887 +0 1516 2887 +0 1540 2887 +0 1569 2887 +0 1606 2886 +0 1651 2886 +0 1706 2885 +0 1769 2885 +0 1843 2883 +0 1925 2882 +0 2016 2880 +0 2115 2878 +0 2220 2874 +0 2332 2870 +870 2447 2863 +1796 2567 2855 +2147 2689 2843 +2147 2797 2843 +2147 2843 2766 +2147 2843 2532 +1930 2987 1930 +2436 3128 1137 +2727 3266 0 +2951 3402 0 +3140 3538 0 +3311 3673 0 +3470 3807 0 +3622 3940 0 +3768 4073 0 +3910 4095 0 +0 0 2887 +0 0 2887 +0 0 2887 +0 0 2887 +0 0 2887 +0 0 2887 +0 0 2886 +0 0 2886 +0 0 2885 +0 0 2885 +0 0 2883 +0 0 2882 +0 0 2880 +0 817 2878 +0 1596 2874 +0 1932 2870 +870 2173 2863 +1796 2372 2855 +2147 2549 2843 +2393 2711 2828 +2393 2828 2810 +2393 2828 2603 +2377 2975 2280 +2636 3119 2061 +2843 3259 1272 +3025 3398 0 +3190 3535 0 +3346 3670 0 +3495 3805 0 +3640 3939 0 +3781 4072 0 +3920 4095 0 +0 0 2887 +0 0 2887 +0 0 2887 +0 0 2887 +0 0 2887 +0 0 2887 +0 0 2886 +0 0 2886 +0 0 2885 +0 0 2885 +0 0 2883 +0 0 2882 +0 0 2880 +0 0 2878 +0 0 2874 +963 0 2870 +1498 870 2863 +1796 1797 2855 +2147 2246 2843 +2393 2522 2828 +2596 2739 2805 +2596 2805 2684 +2654 2959 2526 +2813 3108 2412 +2963 3251 2194 +3108 3392 1406 +3250 3530 0 +3389 3667 0 +3527 3802 0 +3663 3937 0 +3798 4071 0 +3932 4095 0 +2215 0 2887 +2215 0 2887 +2217 0 2887 +2218 0 2887 +2220 0 2887 +2223 0 2887 +2226 0 2886 +2231 0 2886 +2237 0 2885 +2245 0 2885 +2255 0 2883 +2269 0 2882 +2287 0 2880 +2309 0 2878 +2338 0 2874 +2374 0 2870 +2417 870 2863 +2470 1796 2855 +2532 2147 2843 +2603 2393 2828 +2684 2596 2805 +2774 2774 2774 +2871 2937 2728 +2976 3092 2658 +3085 3239 2544 +3201 3383 2326 +3320 3524 1536 +3441 3662 0 +3566 3799 0 +3692 3934 0 +3820 4069 0 +3949 4095 0 +2735 0 3019 +2735 0 3019 +2736 0 3019 +2736 0 3019 +2737 0 3019 +2738 0 3019 +2739 0 3018 +2740 0 3018 +2742 0 3018 +2745 0 3017 +2749 0 3016 +2753 0 3015 +2759 0 3014 +2767 0 3012 +2778 0 3010 +2792 0 3006 +2810 0 3002 +2833 1006 2995 +2862 1930 2987 +2898 2280 2975 +2942 2526 2959 +2937 2728 2871 +2937 2816 2728 +3092 3074 2658 +3193 3239 2544 +3286 3383 2326 +3387 3524 1536 +3494 3662 0 +3606 3799 0 +3723 3934 0 +3843 4069 0 +3966 4095 0 +3031 0 3152 +3031 0 3152 +3031 0 3152 +3031 0 3151 +3031 0 3151 +3032 0 3151 +3032 0 3151 +3033 0 3151 +3034 0 3151 +3036 0 3150 +3038 0 3150 +3040 0 3149 +3043 0 3148 +3047 0 3146 +3053 0 3144 +3061 0 3142 +3071 0 3138 +3084 0 3134 +3101 1137 3128 +3119 2061 3116 +3108 2412 3061 +3092 2658 2976 +3092 2658 2787 +3092 2867 2658 +3239 3162 2544 +3380 3383 2326 +3463 3524 1536 +3555 3662 0 +3655 3799 0 +3761 3934 0 +3873 4069 0 +3989 4095 0 +3254 0 3284 +3254 0 3283 +3255 0 3283 +3255 0 3283 +3255 0 3283 +3255 0 3283 +3256 0 3283 +3256 0 3283 +3257 0 3283 +3257 0 3282 +3259 0 3282 +3260 0 3281 +3262 0 3280 +3265 0 3280 +3269 0 3278 +3273 0 3276 +3274 0 3268 +3270 0 3252 +3266 0 3230 +3259 1272 3199 +3251 2194 3154 +3239 2544 3085 +3239 2544 2945 +3239 2544 2642 +3239 2928 2544 +3383 3258 2326 +3524 3497 1536 +3626 3662 0 +3713 3799 0 +3808 3934 0 +3910 4069 0 +4018 4095 0 +3416 0 3385 +3416 0 3385 +3416 0 3384 +3416 0 3384 +3416 0 3384 +3416 0 3384 +3415 0 3383 +3415 0 3382 +3415 0 3381 +3415 0 3380 +3414 0 3379 +3414 0 3376 +3414 0 3374 +3413 0 3370 +3412 0 3365 +3410 0 3358 +3408 0 3348 +3406 0 3335 +3402 0 3317 +3398 0 3291 +3392 1406 3255 +3383 2326 3201 +3383 2326 3095 +3383 2326 2900 +3383 2326 2328 +3383 2998 2326 +3524 3362 1536 +3662 3612 0 +3781 3799 0 +3863 3934 0 +3954 4069 0 +4054 4095 0 +3548 0 3467 +3548 0 3467 +3548 0 3467 +3548 0 3467 +3548 0 3467 +3548 0 3466 +3548 0 3466 +3548 0 3466 +3548 0 3465 +3547 0 3464 +3547 0 3462 +3547 0 3461 +3546 0 3458 +3546 0 3455 +3545 0 3451 +3544 0 3445 +3543 0 3437 +3541 0 3426 +3538 0 3411 +3535 0 3391 +3530 0 3362 +3524 1536 3320 +3524 1536 3241 +3524 1536 3108 +3524 1536 2833 +3524 2158 1536 +3524 3078 1536 +3662 3471 0 +3799 3731 0 +3928 3934 0 +4008 4069 0 +4095 4095 0 +3680 0 3558 +3680 0 3558 +3680 0 3558 +3680 0 3558 +3680 0 3558 +3680 0 3558 +3680 0 3557 +3680 0 3557 +3680 0 3556 +3680 0 3556 +3679 0 3554 +3679 0 3553 +3679 0 3551 +3678 0 3548 +3678 0 3545 +3677 0 3540 +3676 0 3534 +3675 0 3525 +3673 0 3513 +3670 0 3497 +3667 0 3474 +3662 0 3441 +3662 0 3382 +3662 0 3289 +3662 0 3125 +3662 0 2724 +3662 1753 0 +3662 3166 0 +3799 3585 0 +3934 3853 0 +4069 4066 0 +4095 4095 0 +3812 0 3657 +3812 0 3657 +3812 0 3657 +3812 0 3657 +3812 0 3657 +3812 0 3657 +3812 0 3657 +3812 0 3656 +3812 0 3656 +3812 0 3655 +3812 0 3654 +3812 0 3653 +3811 0 3652 +3811 0 3650 +3810 0 3647 +3810 0 3643 +3809 0 3638 +3808 0 3631 +3807 0 3622 +3805 0 3609 +3802 0 3591 +3799 0 3566 +3799 0 3522 +3799 0 3455 +3799 0 3347 +3799 0 3145 +3799 0 2519 +3799 0 0 +3799 3262 0 +3934 3703 0 +4069 3978 0 +4095 4095 0 +3944 0 3763 +3944 0 3763 +3944 0 3763 +3944 0 3763 +3944 0 3763 +3944 0 3763 +3944 0 3762 +3944 0 3762 +3944 0 3762 +3944 0 3761 +3944 0 3761 +3944 0 3760 +3944 0 3758 +3943 0 3757 +3943 0 3755 +3943 0 3752 +3942 0 3748 +3941 0 3742 +3940 0 3735 +3939 0 3725 +3937 0 3711 +3934 0 3692 +3934 0 3659 +3934 0 3611 +3934 0 3537 +3934 0 3414 +3934 0 3172 +3934 0 1863 +3934 0 0 +3934 3366 0 +4069 3824 0 +4095 4095 0 +4076 0 3874 +4076 0 3874 +4076 0 3874 +4076 0 3874 +4076 0 3874 +4076 0 3874 +4076 0 3874 +4076 0 3873 +4076 0 3873 +4076 0 3873 +4076 0 3872 +4076 0 3872 +4076 0 3871 +4076 0 3869 +4075 0 3868 +4075 0 3865 +4075 0 3862 +4074 0 3858 +4073 0 3852 +4072 0 3845 +4071 0 3834 +4069 0 3820 +4069 0 3795 +4069 0 3760 +4069 0 3708 +4069 0 3627 +4069 0 3491 +4069 0 3205 +4069 0 0 +4069 0 0 +4069 3475 0 +4095 3949 0 +4095 0 3990 +4095 0 3990 +4095 0 3990 +4095 0 3990 +4095 0 3990 +4095 0 3990 +4095 0 3990 +4095 0 3990 +4095 0 3989 +4095 0 3989 +4095 0 3989 +4095 0 3988 +4095 0 3988 +4095 0 3986 +4095 0 3985 +4095 0 3983 +4095 0 3981 +4095 0 3978 +4095 0 3974 +4095 0 3968 +4095 0 3960 +4095 0 3949 +4095 0 3930 +4095 0 3904 +4095 0 3867 +4095 0 3812 +4095 0 3726 +4095 0 3577 +4095 0 3246 +4095 0 0 +4095 0 0 +4095 3590 0 +0 2750 3019 +0 2750 3019 +0 2751 3019 +0 2752 3019 +0 2754 3019 +0 2755 3019 +0 2758 3019 +0 2761 3019 +0 2765 3019 +0 2771 3019 +0 2778 3019 +0 2788 3019 +0 2800 3019 +0 2816 3019 +0 2837 3019 +0 2864 3019 +0 2897 3019 +0 2938 3019 +0 2988 3019 +0 3019 2991 +0 3019 2898 +0 3019 2735 +0 3019 2346 +0 3152 0 +0 3284 0 +1977 3416 0 +2745 3548 0 +3080 3680 0 +3320 3812 0 +3520 3944 0 +3696 4076 0 +3859 4095 0 +0 2749 3019 +0 2750 3019 +0 2751 3019 +0 2752 3019 +0 2753 3019 +0 2755 3019 +0 2757 3019 +0 2760 3019 +0 2765 3019 +0 2770 3019 +0 2777 3019 +0 2787 3019 +0 2800 3019 +0 2816 3019 +0 2837 3019 +0 2863 3019 +0 2897 3019 +0 2938 3019 +0 2987 3019 +0 3019 2991 +0 3019 2898 +0 3019 2735 +0 3019 2346 +0 3152 0 +0 3283 0 +1981 3416 0 +2745 3548 0 +3080 3680 0 +3321 3812 0 +3520 3944 0 +3696 4076 0 +3859 4095 0 +0 2748 3019 +0 2749 3019 +0 2750 3019 +0 2751 3019 +0 2752 3019 +0 2754 3019 +0 2757 3019 +0 2760 3019 +0 2764 3019 +0 2770 3019 +0 2777 3019 +0 2787 3019 +0 2799 3019 +0 2816 3019 +0 2836 3019 +0 2863 3019 +0 2896 3019 +0 2938 3019 +0 2987 3019 +0 3019 2991 +0 3019 2898 +0 3019 2736 +0 3019 2347 +0 3152 0 +0 3283 0 +1986 3416 0 +2746 3548 0 +3081 3680 0 +3321 3812 0 +3520 3944 0 +3696 4076 0 +3859 4095 0 +0 2747 3019 +0 2748 3019 +0 2749 3019 +0 2750 3019 +0 2751 3019 +0 2753 3019 +0 2756 3019 +0 2759 3019 +0 2763 3019 +0 2769 3019 +0 2776 3019 +0 2786 3019 +0 2798 3019 +0 2815 3019 +0 2836 3019 +0 2863 3019 +0 2896 3019 +0 2937 3019 +0 2987 3019 +0 3019 2991 +0 3019 2899 +0 3019 2736 +0 3019 2348 +0 3151 0 +0 3283 0 +1992 3416 0 +2747 3548 0 +3081 3680 0 +3321 3812 0 +3520 3944 0 +3696 4076 0 +3859 4095 0 +0 2746 3019 +0 2747 3019 +0 2747 3019 +0 2749 3019 +0 2750 3019 +0 2752 3019 +0 2755 3019 +0 2758 3019 +0 2762 3019 +0 2768 3019 +0 2775 3019 +0 2785 3019 +0 2797 3019 +0 2814 3019 +0 2835 3019 +0 2862 3019 +0 2895 3019 +0 2936 3019 +0 2986 3019 +0 3019 2992 +0 3019 2899 +0 3019 2737 +0 3019 2350 +0 3151 0 +0 3283 0 +2000 3416 0 +2749 3548 0 +3082 3680 0 +3322 3812 0 +3520 3944 0 +3696 4076 0 +3859 4095 0 +0 2744 3019 +0 2745 3019 +0 2746 3019 +0 2747 3019 +0 2749 3019 +0 2751 3019 +0 2753 3019 +0 2756 3019 +0 2761 3019 +0 2766 3019 +0 2774 3019 +0 2784 3019 +0 2796 3019 +0 2813 3019 +0 2834 3019 +0 2860 3019 +0 2894 3019 +0 2935 3019 +0 2985 3019 +0 3019 2992 +0 3019 2900 +0 3019 2738 +0 3019 2352 +0 3151 0 +0 3283 0 +2011 3416 0 +2751 3548 0 +3083 3680 0 +3322 3812 0 +3521 3944 0 +3696 4076 0 +3859 4095 0 +0 2742 3019 +0 2742 3019 +0 2743 3019 +0 2745 3019 +0 2746 3019 +0 2748 3019 +0 2751 3018 +0 2754 3018 +0 2759 3018 +0 2764 3018 +0 2772 3018 +0 2782 3018 +0 2794 3018 +0 2811 3018 +0 2832 3018 +0 2859 3018 +0 2892 3018 +0 2934 3018 +0 2984 3018 +0 3018 2992 +0 3018 2901 +0 3018 2739 +0 3018 2354 +0 3151 0 +0 3283 0 +2026 3415 0 +2754 3548 0 +3084 3680 0 +3323 3812 0 +3521 3944 0 +3697 4076 0 +3859 4095 0 +0 2738 3019 +0 2739 3019 +0 2740 3019 +0 2741 3019 +0 2743 3019 +0 2745 3019 +0 2748 3018 +0 2752 3018 +0 2756 3018 +0 2762 3018 +0 2769 3018 +0 2779 3018 +0 2792 3018 +0 2808 3018 +0 2830 3018 +0 2857 3018 +0 2890 3018 +0 2932 3018 +0 2982 3018 +0 3018 2993 +0 3018 2902 +0 3018 2740 +0 3018 2358 +0 3151 0 +0 3283 0 +2044 3415 0 +2758 3548 0 +3086 3680 0 +3324 3812 0 +3522 3944 0 +3697 4076 0 +3860 4095 0 +0 2734 3019 +0 2735 3019 +0 2735 3019 +0 2737 3019 +0 2738 3019 +0 2741 3019 +0 2744 3018 +0 2747 3018 +0 2752 3018 +0 2758 3018 +0 2766 3018 +0 2776 3018 +0 2789 3018 +0 2805 3018 +0 2827 3018 +0 2854 3018 +0 2888 3018 +0 2930 3018 +0 2980 3018 +0 3018 2995 +0 3018 2903 +0 3018 2742 +0 3018 2362 +0 3151 0 +0 3283 0 +2068 3415 0 +2763 3548 0 +3089 3680 0 +3326 3812 0 +3523 3944 0 +3698 4076 0 +3860 4095 0 +0 2728 3019 +0 2729 3019 +0 2729 3019 +0 2731 3019 +0 2732 3019 +0 2735 3019 +0 2738 3018 +0 2742 3018 +0 2747 3018 +0 2754 3017 +0 2761 3017 +0 2771 3017 +0 2784 3017 +0 2801 3017 +0 2823 3017 +0 2850 3017 +0 2885 3017 +0 2927 3017 +0 2977 3017 +0 3017 2996 +0 3017 2905 +0 3017 2745 +0 3017 2369 +0 3150 0 +0 3282 0 +2098 3415 0 +2770 3547 0 +3092 3680 0 +3328 3812 0 +3524 3944 0 +3699 4076 0 +3861 4095 0 +0 2720 3019 +0 2720 3019 +0 2721 3019 +0 2723 3019 +0 2724 3019 +0 2727 3019 +0 2730 3018 +0 2734 3018 +0 2739 3018 +0 2746 3017 +0 2755 3016 +0 2765 3016 +0 2778 3016 +0 2796 3016 +0 2817 3016 +0 2845 3016 +0 2880 3016 +0 2922 3016 +0 2974 3016 +0 3016 2998 +0 3016 2907 +0 3016 2749 +0 3016 2377 +0 3150 0 +0 3282 0 +2135 3414 0 +2778 3547 0 +3096 3679 0 +3330 3812 0 +3526 3944 0 +3700 4076 0 +3862 4095 0 +0 2708 3019 +0 2709 3019 +0 2710 3019 +0 2712 3019 +0 2713 3019 +0 2716 3019 +0 2719 3018 +0 2723 3018 +0 2728 3018 +0 2735 3017 +0 2745 3016 +0 2757 3015 +0 2770 3015 +0 2788 3015 +0 2810 3015 +0 2838 3015 +0 2873 3015 +0 2916 3015 +0 2968 3015 +0 3015 3001 +0 3015 2911 +0 3015 2753 +0 3015 2387 +0 3149 0 +0 3281 0 +2180 3414 0 +2790 3547 0 +3102 3679 0 +3333 3812 0 +3528 3944 0 +3701 4076 0 +3863 4095 0 +0 2693 3019 +0 2694 3019 +0 2695 3019 +0 2696 3019 +0 2698 3019 +0 2701 3019 +0 2703 3018 +0 2708 3018 +0 2714 3018 +0 2721 3017 +0 2731 3016 +0 2743 3015 +0 2759 3014 +0 2777 3014 +0 2800 3014 +0 2829 3014 +0 2865 3014 +0 2908 3014 +0 2961 3014 +0 3014 3004 +0 3014 2915 +0 3014 2759 +0 3014 2401 +0 3148 0 +0 3280 0 +2234 3414 0 +2804 3546 0 +3110 3679 0 +3338 3811 0 +3531 3944 0 +3703 4076 0 +3864 4095 0 +0 2672 3019 +0 2672 3019 +0 2673 3019 +0 2675 3019 +0 2677 3019 +0 2679 3019 +0 2683 3018 +0 2687 3018 +0 2693 3018 +0 2701 3017 +0 2711 3016 +0 2724 3015 +0 2741 3014 +0 2763 3012 +0 2786 3012 +0 2816 3012 +0 2853 3012 +0 2898 3012 +0 2952 3012 +0 3012 3009 +0 3012 2921 +0 3012 2767 +0 3012 2419 +0 3146 0 +0 3280 0 +2298 3413 0 +2824 3546 0 +3119 3678 0 +3344 3811 0 +3535 3943 0 +3706 4076 0 +3866 4095 0 +0 2641 3019 +0 2642 3019 +0 2643 3019 +0 2645 3019 +0 2647 3019 +0 2649 3019 +0 2653 3018 +0 2658 3018 +0 2664 3018 +0 2672 3017 +0 2683 3016 +0 2697 3015 +0 2715 3014 +0 2738 3012 +0 2767 3010 +0 2798 3010 +0 2836 3010 +0 2883 3010 +0 2939 3010 +0 3004 3010 +0 3010 2928 +0 3010 2778 +0 3010 2441 +0 3144 0 +0 3278 0 +2371 3412 0 +2848 3545 0 +3132 3678 0 +3352 3810 0 +3540 3943 0 +3710 4075 0 +3868 4095 0 +0 2597 3019 +0 2598 3019 +0 2599 3019 +0 2601 3019 +0 2603 3019 +0 2606 3019 +0 2610 3018 +0 2615 3018 +0 2622 3018 +0 2631 3017 +0 2643 3016 +0 2658 3015 +0 2678 3014 +0 2703 3012 +0 2734 3010 +0 2773 3006 +0 2813 3006 +0 2862 3006 +0 2920 3006 +0 2988 3006 +0 3006 2939 +0 3006 2792 +0 3006 2470 +0 3142 0 +0 3276 0 +2453 3410 0 +2879 3544 0 +3149 3677 0 +3362 3810 0 +3547 3943 0 +3714 4075 0 +3872 4095 0 +0 2530 3019 +0 2531 3019 +0 2533 3019 +0 2535 3019 +0 2537 3019 +0 2541 3019 +0 2545 3018 +0 2551 3018 +0 2559 3018 +0 2570 3017 +0 2583 3016 +0 2600 3015 +0 2623 3014 +0 2651 3012 +0 2686 3010 +0 2729 3006 +0 2781 3002 +0 2833 3002 +0 2895 3002 +0 2966 3002 +0 3002 2952 +0 3002 2810 +0 3002 2505 +0 3138 0 +1202 3274 0 +2545 3408 0 +2917 3543 0 +3170 3676 0 +3376 3809 0 +3556 3942 0 +3721 4075 0 +3876 4095 0 +0 2422 3019 +0 2424 3019 +0 2426 3019 +0 2428 3019 +0 2431 3019 +0 2435 3019 +0 2441 3018 +0 2449 3018 +0 2459 3018 +0 2471 3017 +0 2488 3016 +0 2510 3015 +0 2536 3014 +0 2570 3012 +0 2612 3010 +0 2662 3006 +0 2722 3002 +1006 2791 2995 +1006 2858 2995 +1006 2935 2995 +1006 2995 2968 +1006 2995 2833 +1006 2995 2549 +0 3134 1211 +1990 3270 0 +2643 3406 0 +2963 3541 0 +3197 3675 0 +3393 3808 0 +3568 3941 0 +3729 4074 0 +3882 4095 0 +0 2220 3019 +0 2222 3019 +0 2225 3019 +0 2229 3019 +0 2234 3019 +0 2241 3019 +0 2249 3018 +0 2261 3018 +0 2276 3018 +0 2294 3017 +0 2319 3016 +0 2350 3015 +0 2388 3014 +0 2434 3012 +0 2489 3010 +0 2554 3006 +0 2628 3002 +1006 2712 2995 +1930 2804 2987 +1930 2890 2987 +1930 2984 2987 +1930 2987 2862 +1930 2987 2602 +1137 3128 1758 +2327 3266 0 +2749 3402 0 +3018 3538 0 +3231 3673 0 +3415 3807 0 +3583 3940 0 +3740 4073 0 +3890 4095 0 +0 1594 3019 +0 1602 3019 +0 1613 3019 +0 1628 3019 +0 1646 3019 +0 1670 3019 +0 1700 3018 +0 1737 3018 +0 1782 3018 +0 1837 3017 +0 1900 3016 +0 1974 3015 +0 2056 3014 +0 2148 3012 +0 2247 3010 +0 2352 3006 +0 2463 3002 +1006 2579 2995 +1930 2699 2987 +2280 2821 2975 +2280 2929 2975 +2280 2975 2898 +2280 2975 2664 +2064 3119 2061 +2569 3259 1272 +2860 3398 0 +3083 3535 0 +3273 3670 0 +3443 3805 0 +3603 3939 0 +3754 4072 0 +3900 4095 0 +0 0 3019 +0 0 3019 +0 0 3019 +0 0 3019 +0 0 3019 +0 0 3019 +0 0 3018 +0 0 3018 +0 0 3018 +0 0 3017 +0 0 3016 +0 0 3015 +0 0 3014 +0 0 3012 +0 922 3010 +0 1723 3006 +0 2062 3002 +1006 2303 2995 +1930 2503 2987 +2280 2680 2975 +2526 2843 2959 +2526 2959 2942 +2526 2959 2735 +2511 3108 2412 +2768 3251 2194 +2976 3392 1406 +3157 3530 0 +3323 3667 0 +3479 3802 0 +3628 3937 0 +3772 4071 0 +3913 4095 0 +0 0 3019 +0 0 3019 +0 0 3019 +0 0 3019 +0 0 3019 +0 0 3019 +0 0 3018 +0 0 3018 +0 0 3018 +0 0 3017 +0 0 3016 +0 0 3015 +0 0 3014 +0 0 3012 +0 0 3010 +0 0 3006 +1109 0 3002 +1635 1006 2995 +1930 1930 2987 +2280 2377 2975 +2526 2654 2959 +2728 2871 2937 +2728 2937 2816 +2787 3092 2658 +2945 3239 2544 +3095 3383 2326 +3241 3524 1536 +3382 3662 0 +3522 3799 0 +3659 3934 0 +3795 4069 0 +3930 4095 0 +2346 0 3019 +2346 0 3019 +2347 0 3019 +2348 0 3019 +2350 0 3019 +2352 0 3019 +2354 0 3018 +2358 0 3018 +2362 0 3018 +2369 0 3017 +2377 0 3016 +2387 0 3015 +2401 0 3014 +2419 0 3012 +2441 0 3010 +2470 0 3006 +2505 0 3002 +2549 1006 2995 +2602 1930 2987 +2664 2280 2975 +2735 2526 2959 +2816 2728 2937 +2906 2906 2906 +3003 3069 2860 +3107 3223 2790 +3218 3372 2676 +3333 3515 2457 +3452 3656 1663 +3574 3794 0 +3698 3931 0 +3824 4066 0 +3952 4095 0 +2868 0 3152 +2868 0 3152 +2869 0 3152 +2869 0 3151 +2869 0 3151 +2870 0 3151 +2871 0 3151 +2872 0 3151 +2873 0 3151 +2875 0 3150 +2878 0 3150 +2881 0 3149 +2886 0 3148 +2892 0 3146 +2901 0 3144 +2911 0 3142 +2925 0 3138 +2943 0 3134 +2965 1137 3128 +2995 2061 3119 +3031 2412 3108 +3074 2658 3092 +3069 2860 3003 +3069 2948 2860 +3223 3206 2790 +3325 3372 2676 +3418 3515 2457 +3519 3656 1663 +3626 3794 0 +3738 3931 0 +3855 4066 0 +3976 4095 0 +3162 0 3284 +3162 0 3283 +3163 0 3283 +3163 0 3283 +3163 0 3283 +3163 0 3283 +3164 0 3283 +3164 0 3283 +3165 0 3283 +3166 0 3282 +3168 0 3282 +3169 0 3281 +3172 0 3280 +3175 0 3280 +3180 0 3278 +3185 0 3276 +3193 0 3274 +3203 0 3270 +3216 0 3266 +3233 1272 3259 +3251 2194 3248 +3239 2544 3193 +3223 2790 3107 +3223 2790 2918 +3223 2999 2790 +3372 3294 2676 +3512 3515 2457 +3595 3656 1663 +3687 3794 0 +3787 3931 0 +3893 4066 0 +4005 4095 0 +3387 0 3416 +3387 0 3416 +3387 0 3416 +3387 0 3416 +3387 0 3416 +3387 0 3416 +3387 0 3415 +3388 0 3415 +3388 0 3415 +3389 0 3415 +3390 0 3414 +3391 0 3414 +3393 0 3414 +3395 0 3413 +3397 0 3412 +3401 0 3410 +3406 0 3408 +3406 0 3400 +3402 0 3384 +3398 0 3362 +3392 1406 3331 +3383 2326 3286 +3372 2676 3218 +3372 2676 3077 +3372 2676 2774 +3372 3060 2676 +3515 3391 2457 +3656 3629 1663 +3759 3794 0 +3845 3931 0 +3940 4066 0 +4042 4095 0 +3548 0 3516 +3548 0 3516 +3548 0 3516 +3548 0 3516 +3548 0 3516 +3548 0 3516 +3548 0 3515 +3548 0 3515 +3548 0 3514 +3547 0 3513 +3547 0 3512 +3547 0 3511 +3546 0 3509 +3546 0 3506 +3545 0 3502 +3544 0 3497 +3543 0 3490 +3541 0 3480 +3538 0 3467 +3535 0 3449 +3530 0 3423 +3524 1536 3387 +3515 2457 3333 +3515 2457 3227 +3515 2457 3032 +3515 2457 2459 +3515 3130 2457 +3656 3494 1663 +3794 3745 0 +3913 3931 0 +3995 4066 0 +4087 4095 0 +3680 0 3599 +3680 0 3599 +3680 0 3599 +3680 0 3599 +3680 0 3599 +3680 0 3599 +3680 0 3598 +3680 0 3598 +3680 0 3597 +3680 0 3597 +3679 0 3596 +3679 0 3595 +3679 0 3593 +3678 0 3590 +3678 0 3587 +3677 0 3583 +3676 0 3577 +3675 0 3569 +3673 0 3558 +3670 0 3543 +3667 0 3523 +3662 0 3494 +3656 1663 3452 +3656 1663 3373 +3656 1663 3240 +3656 1663 2965 +3656 2289 1663 +3656 3210 1663 +3794 3603 0 +3931 3863 0 +4060 4066 0 +4095 4095 0 +3812 0 3691 +3812 0 3691 +3812 0 3690 +3812 0 3690 +3812 0 3690 +3812 0 3690 +3812 0 3690 +3812 0 3690 +3812 0 3689 +3812 0 3689 +3812 0 3688 +3812 0 3687 +3811 0 3685 +3811 0 3683 +3810 0 3680 +3810 0 3677 +3809 0 3672 +3808 0 3666 +3807 0 3657 +3805 0 3646 +3802 0 3629 +3799 0 3606 +3794 0 3574 +3794 0 3515 +3794 0 3421 +3794 0 3256 +3794 0 2856 +3794 1884 0 +3794 3298 0 +3931 3717 0 +4066 3985 0 +4095 4095 0 +3944 0 3790 +3944 0 3790 +3944 0 3790 +3944 0 3790 +3944 0 3789 +3944 0 3789 +3944 0 3789 +3944 0 3789 +3944 0 3788 +3944 0 3788 +3944 0 3787 +3944 0 3786 +3944 0 3785 +3943 0 3784 +3943 0 3781 +3943 0 3779 +3942 0 3775 +3941 0 3770 +3940 0 3763 +3939 0 3754 +3937 0 3741 +3934 0 3723 +3931 0 3698 +3931 0 3654 +3931 0 3587 +3931 0 3479 +3931 0 3277 +3931 0 2650 +3931 0 0 +3931 3395 0 +4066 3835 0 +4095 4095 0 +4076 0 3895 +4076 0 3895 +4076 0 3895 +4076 0 3895 +4076 0 3895 +4076 0 3895 +4076 0 3895 +4076 0 3895 +4076 0 3894 +4076 0 3894 +4076 0 3893 +4076 0 3892 +4076 0 3891 +4076 0 3890 +4075 0 3889 +4075 0 3887 +4075 0 3884 +4074 0 3880 +4073 0 3874 +4072 0 3867 +4071 0 3857 +4069 0 3843 +4066 0 3824 +4066 0 3791 +4066 0 3743 +4066 0 3669 +4066 0 3546 +4066 0 3303 +4066 0 1985 +4066 0 0 +4066 3498 0 +4095 3957 0 +4095 0 4007 +4095 0 4006 +4095 0 4006 +4095 0 4006 +4095 0 4006 +4095 0 4006 +4095 0 4006 +4095 0 4006 +4095 0 4006 +4095 0 4005 +4095 0 4005 +4095 0 4005 +4095 0 4004 +4095 0 4003 +4095 0 4002 +4095 0 4000 +4095 0 3998 +4095 0 3994 +4095 0 3990 +4095 0 3984 +4095 0 3977 +4095 0 3966 +4095 0 3952 +4095 0 3927 +4095 0 3892 +4095 0 3840 +4095 0 3759 +4095 0 3623 +4095 0 3337 +4095 0 0 +4095 0 0 +4095 3608 0 +0 2882 3152 +0 2883 3152 +0 2883 3152 +0 2884 3152 +0 2885 3152 +0 2886 3152 +0 2888 3152 +0 2890 3152 +0 2893 3152 +0 2898 3152 +0 2903 3152 +0 2911 3152 +0 2920 3152 +0 2933 3152 +0 2949 3152 +0 2970 3152 +0 2996 3152 +0 3030 3152 +0 3071 3152 +0 3120 3152 +0 3152 3123 +0 3152 3031 +0 3152 2868 +0 3152 2478 +0 3284 0 +0 3416 0 +2104 3548 0 +2876 3680 0 +3211 3812 0 +3452 3944 0 +3651 4076 0 +3828 4095 0 +0 2881 3152 +0 2882 3152 +0 2883 3152 +0 2883 3152 +0 2885 3152 +0 2886 3152 +0 2888 3152 +0 2890 3152 +0 2893 3152 +0 2897 3152 +0 2903 3152 +0 2910 3152 +0 2920 3152 +0 2932 3152 +0 2949 3152 +0 2970 3152 +0 2996 3152 +0 3029 3152 +0 3070 3152 +0 3120 3152 +0 3152 3123 +0 3152 3031 +0 3152 2868 +0 3152 2478 +0 3283 0 +0 3416 0 +2107 3548 0 +2877 3680 0 +3212 3812 0 +3452 3944 0 +3651 4076 0 +3828 4095 0 +0 2881 3152 +0 2881 3152 +0 2882 3152 +0 2883 3152 +0 2884 3152 +0 2885 3152 +0 2887 3152 +0 2890 3152 +0 2893 3152 +0 2897 3152 +0 2903 3152 +0 2910 3152 +0 2919 3152 +0 2932 3152 +0 2948 3152 +0 2969 3152 +0 2996 3152 +0 3029 3152 +0 3070 3152 +0 3120 3152 +0 3152 3123 +0 3152 3031 +0 3152 2869 +0 3152 2479 +0 3283 0 +0 3416 0 +2111 3548 0 +2877 3680 0 +3212 3812 0 +3453 3944 0 +3651 4076 0 +3828 4095 0 +0 2880 3152 +0 2881 3152 +0 2881 3152 +0 2882 3151 +0 2883 3151 +0 2885 3151 +0 2886 3151 +0 2889 3151 +0 2892 3151 +0 2896 3151 +0 2902 3151 +0 2909 3151 +0 2919 3151 +0 2932 3151 +0 2948 3151 +0 2969 3151 +0 2995 3151 +0 3029 3151 +0 3070 3151 +0 3119 3151 +0 3151 3123 +0 3151 3031 +0 3151 2869 +0 3151 2480 +0 3283 0 +0 3416 0 +2115 3548 0 +2878 3680 0 +3213 3812 0 +3453 3944 0 +3652 4076 0 +3828 4095 0 +0 2879 3152 +0 2880 3152 +0 2880 3152 +0 2881 3151 +0 2883 3151 +0 2884 3151 +0 2886 3151 +0 2888 3151 +0 2891 3151 +0 2895 3151 +0 2901 3151 +0 2908 3151 +0 2918 3151 +0 2931 3151 +0 2947 3151 +0 2968 3151 +0 2995 3151 +0 3028 3151 +0 3069 3151 +0 3119 3151 +0 3151 3123 +0 3151 3031 +0 3151 2869 +0 3151 2481 +0 3283 0 +0 3416 0 +2122 3548 0 +2879 3680 0 +3213 3812 0 +3453 3944 0 +3652 4076 0 +3828 4095 0 +0 2878 3152 +0 2878 3152 +0 2879 3152 +0 2880 3151 +0 2881 3151 +0 2883 3151 +0 2885 3151 +0 2887 3151 +0 2890 3151 +0 2895 3151 +0 2900 3151 +0 2907 3151 +0 2917 3151 +0 2930 3151 +0 2946 3151 +0 2967 3151 +0 2994 3151 +0 3027 3151 +0 3068 3151 +0 3118 3151 +0 3151 3124 +0 3151 3032 +0 3151 2870 +0 3151 2482 +0 3283 0 +0 3416 0 +2130 3548 0 +2881 3680 0 +3214 3812 0 +3454 3944 0 +3652 4076 0 +3829 4095 0 +0 2876 3152 +0 2877 3152 +0 2877 3152 +0 2878 3151 +0 2879 3151 +0 2881 3151 +0 2883 3151 +0 2885 3151 +0 2889 3151 +0 2893 3151 +0 2898 3151 +0 2906 3151 +0 2916 3151 +0 2928 3151 +0 2945 3151 +0 2966 3151 +0 2993 3151 +0 3026 3151 +0 3067 3151 +0 3117 3151 +0 3151 3124 +0 3151 3032 +0 3151 2871 +0 3151 2484 +0 3283 0 +0 3415 0 +2141 3548 0 +2883 3680 0 +3215 3812 0 +3454 3944 0 +3653 4076 0 +3829 4095 0 +0 2873 3152 +0 2874 3152 +0 2875 3152 +0 2876 3151 +0 2877 3151 +0 2879 3151 +0 2881 3151 +0 2883 3151 +0 2887 3151 +0 2891 3151 +0 2896 3151 +0 2904 3151 +0 2914 3151 +0 2927 3151 +0 2943 3151 +0 2964 3151 +0 2991 3151 +0 3025 3151 +0 3066 3151 +0 3116 3151 +0 3151 3125 +0 3151 3033 +0 3151 2872 +0 3151 2487 +0 3283 0 +0 3415 0 +2156 3548 0 +2886 3680 0 +3216 3812 0 +3455 3944 0 +3653 4076 0 +3829 4095 0 +0 2870 3152 +0 2871 3152 +0 2871 3152 +0 2872 3151 +0 2873 3151 +0 2875 3151 +0 2877 3151 +0 2880 3151 +0 2884 3151 +0 2888 3151 +0 2894 3151 +0 2902 3151 +0 2911 3151 +0 2924 3151 +0 2941 3151 +0 2962 3151 +0 2989 3151 +0 3023 3151 +0 3064 3151 +0 3115 3151 +0 3151 3126 +0 3151 3034 +0 3151 2873 +0 3151 2490 +0 3283 0 +0 3415 0 +2174 3548 0 +2890 3680 0 +3218 3812 0 +3456 3944 0 +3654 4076 0 +3830 4095 0 +0 2866 3152 +0 2866 3152 +0 2867 3152 +0 2868 3151 +0 2869 3151 +0 2871 3151 +0 2873 3151 +0 2876 3151 +0 2880 3151 +0 2885 3150 +0 2891 3150 +0 2898 3150 +0 2908 3150 +0 2921 3150 +0 2938 3150 +0 2959 3150 +0 2986 3150 +0 3020 3150 +0 3062 3150 +0 3112 3150 +0 3150 3127 +0 3150 3036 +0 3150 2875 +0 3150 2495 +0 3282 0 +0 3415 0 +2198 3547 0 +2895 3680 0 +3221 3812 0 +3458 3944 0 +3655 4076 0 +3830 4095 0 +0 2860 3152 +0 2860 3152 +0 2861 3152 +0 2862 3151 +0 2863 3151 +0 2865 3151 +0 2867 3151 +0 2870 3151 +0 2874 3151 +0 2879 3150 +0 2886 3150 +0 2894 3150 +0 2904 3150 +0 2917 3150 +0 2933 3150 +0 2955 3150 +0 2982 3150 +0 3017 3150 +0 3059 3150 +0 3110 3150 +0 3150 3128 +0 3150 3038 +0 3150 2878 +0 3150 2501 +0 3282 0 +0 3414 0 +2228 3547 0 +2901 3679 0 +3224 3812 0 +3459 3944 0 +3656 4076 0 +3831 4095 0 +0 2851 3152 +0 2852 3152 +0 2853 3152 +0 2854 3151 +0 2855 3151 +0 2857 3151 +0 2859 3151 +0 2862 3151 +0 2866 3151 +0 2871 3150 +0 2878 3150 +0 2887 3149 +0 2898 3149 +0 2911 3149 +0 2928 3149 +0 2950 3149 +0 2977 3149 +0 3012 3149 +0 3055 3149 +0 3106 3149 +0 3149 3131 +0 3149 3040 +0 3149 2881 +0 3149 2509 +0 3281 0 +0 3414 0 +2265 3547 0 +2910 3679 0 +3228 3812 0 +3462 3944 0 +3658 4076 0 +3832 4095 0 +0 2840 3152 +0 2841 3152 +0 2842 3152 +0 2842 3151 +0 2844 3151 +0 2845 3151 +0 2848 3151 +0 2851 3151 +0 2855 3151 +0 2860 3150 +0 2868 3150 +0 2877 3149 +0 2889 3148 +0 2903 3148 +0 2920 3148 +0 2942 3148 +0 2970 3148 +0 3005 3148 +0 3049 3148 +0 3100 3148 +0 3148 3133 +0 3148 3043 +0 3148 2886 +0 3148 2520 +0 3280 0 +0 3414 0 +2311 3546 0 +2922 3679 0 +3234 3811 0 +3466 3944 0 +3660 4076 0 +3834 4095 0 +0 2825 3152 +0 2825 3152 +0 2826 3152 +0 2827 3151 +0 2829 3151 +0 2830 3151 +0 2833 3151 +0 2836 3151 +0 2840 3151 +0 2846 3150 +0 2853 3150 +0 2863 3149 +0 2875 3148 +0 2892 3146 +0 2910 3146 +0 2932 3146 +0 2961 3146 +0 2997 3146 +0 3041 3146 +0 3093 3146 +0 3146 3137 +0 3146 3047 +0 3146 2892 +0 3146 2533 +0 3280 0 +0 3413 0 +2365 3546 0 +2936 3678 0 +3241 3811 0 +3470 3943 0 +3663 4076 0 +3836 4095 0 +0 2803 3152 +0 2804 3152 +0 2805 3152 +0 2806 3151 +0 2807 3151 +0 2809 3151 +0 2812 3151 +0 2815 3151 +0 2819 3151 +0 2825 3150 +0 2833 3150 +0 2843 3149 +0 2856 3148 +0 2873 3146 +0 2895 3144 +0 2919 3144 +0 2948 3144 +0 2985 3144 +0 3030 3144 +0 3084 3144 +0 3144 3141 +0 3144 3053 +0 3144 2901 +0 3144 2551 +0 3278 0 +0 3412 0 +2429 3545 0 +2955 3678 0 +3251 3810 0 +3476 3943 0 +3667 4075 0 +3838 4095 0 +0 2773 3152 +0 2773 3152 +0 2774 3152 +0 2775 3151 +0 2777 3151 +0 2779 3151 +0 2782 3151 +0 2785 3151 +0 2790 3151 +0 2796 3150 +0 2804 3150 +0 2815 3149 +0 2829 3148 +0 2847 3146 +0 2870 3144 +0 2900 3142 +0 2931 3142 +0 2969 3142 +0 3015 3142 +0 3071 3142 +0 3136 3142 +0 3142 3061 +0 3142 2911 +0 3142 2573 +0 3276 0 +0 3410 0 +2502 3544 0 +2980 3677 0 +3264 3810 0 +3484 3943 0 +3672 4075 0 +3842 4095 0 +0 2729 3152 +0 2729 3152 +0 2730 3152 +0 2732 3151 +0 2733 3151 +0 2735 3151 +0 2738 3151 +0 2742 3151 +0 2747 3151 +0 2754 3150 +0 2763 3150 +0 2775 3149 +0 2790 3148 +0 2810 3146 +0 2835 3144 +0 2867 3142 +0 2906 3138 +0 2946 3138 +0 2995 3138 +0 3053 3138 +0 3120 3138 +0 3138 3071 +0 3138 2925 +0 3138 2602 +0 3274 0 +0 3408 0 +2585 3543 0 +3010 3676 0 +3281 3809 0 +3494 3942 0 +3679 4075 0 +3847 4095 0 +0 2662 3152 +0 2663 3152 +0 2664 3152 +0 2665 3151 +0 2667 3151 +0 2670 3151 +0 2673 3151 +0 2678 3151 +0 2684 3151 +0 2691 3150 +0 2702 3150 +0 2715 3149 +0 2733 3148 +0 2755 3146 +0 2783 3144 +0 2818 3142 +0 2861 3138 +0 2913 3134 +0 2965 3134 +0 3027 3134 +0 3098 3134 +0 3134 3084 +0 3134 2943 +0 3134 2638 +0 3270 0 +1325 3406 0 +2676 3541 0 +3048 3675 0 +3302 3808 0 +3507 3941 0 +3688 4074 0 +3853 4095 0 +0 2554 3152 +0 2555 3152 +0 2556 3152 +0 2558 3151 +0 2560 3151 +0 2564 3151 +0 2568 3151 +0 2573 3151 +0 2581 3151 +0 2591 3150 +0 2604 3150 +0 2620 3149 +0 2642 3148 +0 2669 3146 +0 2703 3144 +0 2744 3142 +0 2795 3138 +0 2854 3134 +1137 2923 3128 +1137 2991 3128 +1137 3067 3128 +1137 3128 3101 +1137 3128 2965 +1137 3128 2681 +0 3266 1375 +2121 3402 0 +2775 3538 0 +3095 3673 0 +3329 3807 0 +3525 3940 0 +3700 4073 0 +3861 4095 0 +0 2352 3152 +0 2353 3152 +0 2355 3152 +0 2358 3151 +0 2362 3151 +0 2367 3151 +0 2373 3151 +0 2382 3151 +0 2394 3151 +0 2408 3150 +0 2427 3150 +0 2452 3149 +0 2482 3148 +0 2521 3146 +0 2566 3144 +0 2622 3142 +0 2687 3138 +0 2761 3134 +1137 2845 3128 +2061 2936 3119 +2061 3022 3119 +2061 3116 3119 +2061 3119 2995 +2061 3119 2734 +1272 3259 1899 +2458 3398 0 +2881 3535 0 +3150 3670 0 +3363 3805 0 +3547 3939 0 +3715 4072 0 +3872 4095 0 +0 1720 3152 +0 1726 3152 +0 1735 3152 +0 1746 3151 +0 1760 3151 +0 1779 3151 +0 1802 3151 +0 1832 3151 +0 1869 3151 +0 1915 3150 +0 1969 3150 +0 2033 3149 +0 2106 3148 +0 2189 3146 +0 2280 3144 +0 2379 3142 +0 2484 3138 +0 2596 3134 +1137 2712 3128 +2061 2831 3119 +2412 2954 3108 +2412 3061 3108 +2412 3108 3031 +2412 3108 2796 +2194 3251 2195 +2701 3392 1406 +2992 3530 0 +3215 3667 0 +3405 3802 0 +3575 3937 0 +3735 4071 0 +3886 4095 0 +0 0 3152 +0 0 3152 +0 0 3152 +0 0 3151 +0 0 3151 +0 0 3151 +0 0 3151 +0 0 3151 +0 0 3151 +0 0 3150 +0 0 3150 +0 0 3149 +0 0 3148 +0 0 3146 +0 0 3144 +0 1068 3142 +0 1857 3138 +0 2195 3134 +1137 2436 3128 +2061 2636 3119 +2412 2813 3108 +2658 2976 3092 +2658 3092 3074 +2658 3092 2867 +2642 3239 2544 +2900 3383 2326 +3108 3524 1536 +3289 3662 0 +3455 3799 0 +3611 3934 0 +3760 4069 0 +3904 4095 0 +0 0 3152 +0 0 3152 +0 0 3152 +0 0 3151 +0 0 3151 +0 0 3151 +0 0 3151 +0 0 3151 +0 0 3151 +0 0 3150 +0 0 3150 +0 0 3149 +0 0 3148 +0 0 3146 +0 0 3144 +0 0 3142 +0 0 3138 +1211 0 3134 +1758 1137 3128 +2061 2064 3119 +2412 2511 3108 +2658 2787 3092 +2860 3003 3069 +2860 3069 2948 +2918 3223 2790 +3077 3372 2676 +3227 3515 2457 +3373 3656 1663 +3515 3794 0 +3654 3931 0 +3791 4066 0 +3927 4095 0 +2478 0 3152 +2478 0 3152 +2479 0 3152 +2480 0 3151 +2481 0 3151 +2482 0 3151 +2484 0 3151 +2487 0 3151 +2490 0 3151 +2495 0 3150 +2501 0 3150 +2509 0 3149 +2520 0 3148 +2533 0 3146 +2551 0 3144 +2573 0 3142 +2602 0 3138 +2638 0 3134 +2681 1137 3128 +2734 2061 3119 +2796 2412 3108 +2867 2658 3092 +2948 2860 3069 +3038 3038 3038 +3135 3201 2992 +3239 3356 2922 +3350 3504 2808 +3465 3648 2590 +3584 3788 1799 +3706 3926 0 +3830 4063 0 +3956 4095 0 +2999 0 3284 +2999 0 3283 +2999 0 3283 +2999 0 3283 +3000 0 3283 +3000 0 3283 +3001 0 3283 +3002 0 3283 +3003 0 3283 +3005 0 3282 +3006 0 3282 +3009 0 3281 +3013 0 3280 +3017 0 3280 +3023 0 3278 +3032 0 3276 +3042 0 3274 +3056 0 3270 +3074 0 3266 +3097 1272 3259 +3126 2194 3251 +3162 2544 3239 +3206 2790 3223 +3201 2992 3135 +3201 3080 2992 +3356 3338 2922 +3457 3504 2808 +3550 3648 2590 +3651 3788 1799 +3758 3926 0 +3870 4063 0 +3987 4095 0 +3294 0 3416 +3294 0 3416 +3294 0 3416 +3294 0 3416 +3295 0 3416 +3295 0 3416 +3295 0 3415 +3296 0 3415 +3296 0 3415 +3297 0 3415 +3298 0 3414 +3299 0 3414 +3301 0 3414 +3304 0 3413 +3307 0 3412 +3311 0 3410 +3317 0 3408 +3325 0 3406 +3335 0 3402 +3348 0 3398 +3365 1406 3392 +3383 2326 3380 +3372 2676 3325 +3356 2922 3239 +3356 2922 3051 +3356 3132 2922 +3504 3426 2808 +3644 3648 2590 +3728 3788 1799 +3820 3926 0 +3919 4063 0 +4025 4095 0 +3519 0 3548 +3519 0 3548 +3519 0 3548 +3519 0 3548 +3519 0 3548 +3519 0 3548 +3519 0 3548 +3520 0 3548 +3520 0 3548 +3520 0 3547 +3521 0 3547 +3522 0 3547 +3523 0 3546 +3525 0 3546 +3526 0 3545 +3529 0 3544 +3533 0 3543 +3538 0 3541 +3538 0 3532 +3535 0 3516 +3530 0 3495 +3524 1536 3463 +3515 2457 3418 +3504 2808 3350 +3504 2808 3209 +3504 2808 2907 +3504 3192 2808 +3648 3523 2590 +3788 3761 1799 +3891 3926 0 +3977 4063 0 +4072 4095 0 +3680 0 3649 +3680 0 3649 +3680 0 3649 +3680 0 3649 +3680 0 3648 +3680 0 3648 +3680 0 3648 +3680 0 3648 +3680 0 3647 +3680 0 3646 +3679 0 3646 +3679 0 3644 +3679 0 3643 +3678 0 3641 +3678 0 3638 +3677 0 3634 +3676 0 3629 +3675 0 3622 +3673 0 3612 +3670 0 3599 +3667 0 3581 +3662 0 3555 +3656 1663 3519 +3648 2590 3465 +3648 2590 3360 +3648 2590 3165 +3648 2590 2592 +3648 3262 2590 +3788 3626 1799 +3926 3877 0 +4045 4063 0 +4095 4095 0 +3812 0 3732 +3812 0 3731 +3812 0 3731 +3812 0 3731 +3812 0 3731 +3812 0 3731 +3812 0 3731 +3812 0 3730 +3812 0 3730 +3812 0 3729 +3812 0 3729 +3812 0 3728 +3811 0 3727 +3811 0 3725 +3810 0 3722 +3810 0 3719 +3809 0 3715 +3808 0 3709 +3807 0 3701 +3805 0 3690 +3802 0 3676 +3799 0 3655 +3794 0 3626 +3788 1799 3584 +3788 1799 3505 +3788 1799 3372 +3788 1799 3097 +3788 2422 1799 +3788 3342 1799 +3926 3735 0 +4063 3995 0 +4095 4095 0 +3944 0 3823 +3944 0 3823 +3944 0 3823 +3944 0 3822 +3944 0 3822 +3944 0 3822 +3944 0 3822 +3944 0 3822 +3944 0 3822 +3944 0 3821 +3944 0 3820 +3944 0 3820 +3944 0 3819 +3943 0 3817 +3943 0 3815 +3943 0 3813 +3942 0 3809 +3941 0 3805 +3940 0 3798 +3939 0 3790 +3937 0 3777 +3934 0 3761 +3931 0 3738 +3926 0 3706 +3926 0 3647 +3926 0 3553 +3926 0 3388 +3926 0 2988 +3926 2023 0 +3926 3430 0 +4063 3849 0 +4095 4095 0 +4076 0 3922 +4076 0 3922 +4076 0 3921 +4076 0 3921 +4076 0 3921 +4076 0 3921 +4076 0 3921 +4076 0 3921 +4076 0 3921 +4076 0 3921 +4076 0 3920 +4076 0 3919 +4076 0 3918 +4076 0 3917 +4075 0 3916 +4075 0 3913 +4075 0 3911 +4074 0 3907 +4073 0 3902 +4072 0 3895 +4071 0 3886 +4069 0 3873 +4066 0 3855 +4063 0 3830 +4063 0 3786 +4063 0 3719 +4063 0 3611 +4063 0 3409 +4063 0 2781 +4063 0 0 +4063 3527 0 +4095 3968 0 +4095 0 4027 +4095 0 4027 +4095 0 4027 +4095 0 4027 +4095 0 4027 +4095 0 4027 +4095 0 4027 +4095 0 4027 +4095 0 4027 +4095 0 4026 +4095 0 4026 +4095 0 4026 +4095 0 4025 +4095 0 4024 +4095 0 4023 +4095 0 4021 +4095 0 4019 +4095 0 4016 +4095 0 4012 +4095 0 4006 +4095 0 3999 +4095 0 3989 +4095 0 3976 +4095 0 3956 +4095 0 3923 +4095 0 3875 +4095 0 3801 +4095 0 3679 +4095 0 3436 +4095 0 2137 +4095 0 0 +4095 3630 0 +0 3014 3284 +0 3014 3284 +0 3014 3284 +0 3015 3284 +0 3016 3284 +0 3017 3284 +0 3018 3284 +0 3020 3284 +0 3022 3284 +0 3025 3284 +0 3030 3284 +0 3035 3284 +0 3043 3284 +0 3052 3284 +0 3065 3284 +0 3081 3284 +0 3102 3284 +0 3128 3284 +0 3162 3284 +0 3203 3284 +0 3252 3284 +0 3284 3254 +0 3284 3162 +0 3284 2999 +0 3284 2609 +0 3416 0 +0 3548 0 +2237 3680 0 +3008 3812 0 +3344 3944 0 +3584 4076 0 +3784 4095 0 +0 3014 3284 +0 3014 3283 +0 3014 3283 +0 3015 3283 +0 3016 3283 +0 3017 3283 +0 3018 3283 +0 3020 3283 +0 3022 3283 +0 3025 3283 +0 3029 3283 +0 3035 3283 +0 3042 3283 +0 3052 3283 +0 3065 3283 +0 3081 3283 +0 3102 3283 +0 3128 3283 +0 3162 3283 +0 3203 3283 +0 3252 3283 +0 3283 3254 +0 3283 3162 +0 3283 2999 +0 3283 2609 +0 3416 0 +0 3548 0 +2239 3680 0 +3009 3812 0 +3344 3944 0 +3584 4076 0 +3784 4095 0 +0 3013 3284 +0 3014 3283 +0 3014 3283 +0 3014 3283 +0 3015 3283 +0 3016 3283 +0 3018 3283 +0 3019 3283 +0 3022 3283 +0 3025 3283 +0 3029 3283 +0 3035 3283 +0 3042 3283 +0 3052 3283 +0 3064 3283 +0 3081 3283 +0 3101 3283 +0 3128 3283 +0 3161 3283 +0 3202 3283 +0 3252 3283 +0 3283 3255 +0 3283 3163 +0 3283 2999 +0 3283 2610 +0 3416 0 +0 3548 0 +2242 3680 0 +3009 3812 0 +3344 3944 0 +3585 4076 0 +3784 4095 0 +0 3012 3284 +0 3013 3283 +0 3013 3283 +0 3014 3283 +0 3015 3283 +0 3016 3283 +0 3017 3283 +0 3019 3283 +0 3021 3283 +0 3025 3283 +0 3029 3283 +0 3034 3283 +0 3042 3283 +0 3051 3283 +0 3064 3283 +0 3080 3283 +0 3101 3283 +0 3128 3283 +0 3161 3283 +0 3202 3283 +0 3252 3283 +0 3283 3255 +0 3283 3163 +0 3283 2999 +0 3283 2611 +0 3416 0 +0 3548 0 +2246 3680 0 +3010 3812 0 +3344 3944 0 +3585 4076 0 +3784 4095 0 +0 3012 3284 +0 3012 3283 +0 3013 3283 +0 3013 3283 +0 3014 3283 +0 3015 3283 +0 3016 3283 +0 3018 3283 +0 3021 3283 +0 3024 3283 +0 3028 3283 +0 3034 3283 +0 3041 3283 +0 3051 3283 +0 3063 3283 +0 3080 3283 +0 3101 3283 +0 3127 3283 +0 3160 3283 +0 3201 3283 +0 3251 3283 +0 3283 3255 +0 3283 3163 +0 3283 3000 +0 3283 2612 +0 3416 0 +0 3548 0 +2251 3680 0 +3011 3812 0 +3345 3944 0 +3585 4076 0 +3784 4095 0 +0 3011 3284 +0 3011 3283 +0 3011 3283 +0 3012 3283 +0 3013 3283 +0 3014 3283 +0 3016 3283 +0 3018 3283 +0 3020 3283 +0 3023 3283 +0 3027 3283 +0 3033 3283 +0 3040 3283 +0 3050 3283 +0 3062 3283 +0 3079 3283 +0 3100 3283 +0 3127 3283 +0 3160 3283 +0 3201 3283 +0 3251 3283 +0 3283 3255 +0 3283 3163 +0 3283 3000 +0 3283 2613 +0 3416 0 +0 3548 0 +2257 3680 0 +3012 3812 0 +3346 3944 0 +3585 4076 0 +3784 4095 0 +0 3009 3284 +0 3010 3283 +0 3010 3283 +0 3011 3283 +0 3012 3283 +0 3013 3283 +0 3015 3283 +0 3016 3283 +0 3019 3283 +0 3022 3283 +0 3026 3283 +0 3032 3283 +0 3039 3283 +0 3049 3283 +0 3062 3283 +0 3078 3283 +0 3099 3283 +0 3126 3283 +0 3159 3283 +0 3200 3283 +0 3250 3283 +0 3283 3256 +0 3283 3164 +0 3283 3001 +0 3283 2614 +0 3415 0 +0 3548 0 +2266 3680 0 +3014 3812 0 +3346 3944 0 +3586 4076 0 +3784 4095 0 +0 3008 3284 +0 3008 3283 +0 3008 3283 +0 3009 3283 +0 3010 3283 +0 3011 3283 +0 3013 3283 +0 3015 3283 +0 3017 3283 +0 3021 3283 +0 3025 3283 +0 3031 3283 +0 3038 3283 +0 3047 3283 +0 3060 3283 +0 3077 3283 +0 3098 3283 +0 3125 3283 +0 3158 3283 +0 3199 3283 +0 3249 3283 +0 3283 3256 +0 3283 3164 +0 3283 3002 +0 3283 2616 +0 3415 0 +0 3548 0 +2277 3680 0 +3016 3812 0 +3347 3944 0 +3586 4076 0 +3785 4095 0 +0 3005 3284 +0 3005 3283 +0 3006 3283 +0 3007 3283 +0 3008 3283 +0 3009 3283 +0 3010 3283 +0 3013 3283 +0 3015 3283 +0 3018 3283 +0 3023 3283 +0 3029 3283 +0 3036 3283 +0 3046 3283 +0 3059 3283 +0 3075 3283 +0 3096 3283 +0 3123 3283 +0 3157 3283 +0 3198 3283 +0 3248 3283 +0 3283 3257 +0 3283 3165 +0 3283 3003 +0 3283 2619 +0 3415 0 +0 3548 0 +2291 3680 0 +3019 3812 0 +3349 3944 0 +3587 4076 0 +3786 4095 0 +0 3002 3284 +0 3002 3283 +0 3002 3283 +0 3003 3283 +0 3004 3283 +0 3005 3283 +0 3007 3283 +0 3009 3283 +0 3012 3283 +0 3016 3282 +0 3020 3282 +0 3026 3282 +0 3033 3282 +0 3043 3282 +0 3056 3282 +0 3073 3282 +0 3094 3282 +0 3121 3282 +0 3155 3282 +0 3196 3282 +0 3247 3282 +0 3282 3257 +0 3282 3166 +0 3282 3005 +0 3282 2622 +0 3415 0 +0 3547 0 +2310 3680 0 +3023 3812 0 +3351 3944 0 +3588 4076 0 +3786 4095 0 +0 2997 3284 +0 2998 3283 +0 2998 3283 +0 2999 3283 +0 3000 3283 +0 3001 3283 +0 3003 3283 +0 3005 3283 +0 3008 3283 +0 3012 3282 +0 3017 3282 +0 3023 3282 +0 3030 3282 +0 3040 3282 +0 3053 3282 +0 3070 3282 +0 3091 3282 +0 3118 3282 +0 3152 3282 +0 3194 3282 +0 3244 3282 +0 3282 3259 +0 3282 3168 +0 3282 3006 +0 3282 2627 +0 3414 0 +0 3547 0 +2333 3679 0 +3027 3812 0 +3353 3944 0 +3590 4076 0 +3787 4095 0 +0 2991 3284 +0 2992 3283 +0 2992 3283 +0 2993 3283 +0 2994 3283 +0 2995 3283 +0 2997 3283 +0 2999 3283 +0 3002 3283 +0 3006 3282 +0 3011 3282 +0 3018 3281 +0 3025 3281 +0 3035 3281 +0 3049 3281 +0 3065 3281 +0 3087 3281 +0 3114 3281 +0 3149 3281 +0 3191 3281 +0 3242 3281 +0 3281 3260 +0 3281 3169 +0 3281 3009 +0 3281 2633 +0 3414 0 +0 3547 0 +2363 3679 0 +3034 3812 0 +3356 3944 0 +3592 4076 0 +3788 4095 0 +0 2983 3284 +0 2983 3283 +0 2984 3283 +0 2985 3283 +0 2986 3283 +0 2987 3283 +0 2988 3283 +0 2991 3283 +0 2994 3283 +0 2998 3282 +0 3003 3282 +0 3010 3281 +0 3019 3280 +0 3029 3280 +0 3043 3280 +0 3060 3280 +0 3082 3280 +0 3109 3280 +0 3144 3280 +0 3186 3280 +0 3238 3280 +0 3280 3262 +0 3280 3172 +0 3280 3013 +0 3280 2641 +0 3414 0 +0 3546 0 +2400 3679 0 +3043 3811 0 +3361 3944 0 +3594 4076 0 +3790 4095 0 +0 2972 3284 +0 2972 3283 +0 2973 3283 +0 2973 3283 +0 2974 3283 +0 2976 3283 +0 2977 3283 +0 2980 3283 +0 2983 3283 +0 2987 3282 +0 2992 3282 +0 2999 3281 +0 3009 3280 +0 3021 3280 +0 3034 3280 +0 3052 3280 +0 3074 3280 +0 3102 3280 +0 3138 3280 +0 3180 3280 +0 3233 3280 +0 3280 3265 +0 3280 3175 +0 3280 3017 +0 3280 2651 +0 3413 0 +0 3546 0 +2445 3678 0 +3054 3811 0 +3366 3943 0 +3597 4076 0 +3792 4095 0 +0 2956 3284 +0 2957 3283 +0 2957 3283 +0 2958 3283 +0 2959 3283 +0 2960 3283 +0 2962 3283 +0 2965 3283 +0 2968 3283 +0 2972 3282 +0 2977 3282 +0 2985 3281 +0 2995 3280 +0 3007 3280 +0 3024 3278 +0 3041 3278 +0 3064 3278 +0 3093 3278 +0 3129 3278 +0 3173 3278 +0 3225 3278 +0 3278 3269 +0 3278 3180 +0 3278 3023 +0 3278 2665 +0 3412 0 +0 3545 0 +2499 3678 0 +3069 3810 0 +3374 3943 0 +3602 4075 0 +3795 4095 0 +0 2935 3284 +0 2935 3283 +0 2936 3283 +0 2936 3283 +0 2938 3283 +0 2939 3283 +0 2941 3283 +0 2943 3283 +0 2947 3283 +0 2951 3282 +0 2957 3282 +0 2965 3281 +0 2975 3280 +0 2988 3280 +0 3005 3278 +0 3027 3276 +0 3050 3276 +0 3080 3276 +0 3117 3276 +0 3162 3276 +0 3216 3276 +0 3276 3273 +0 3276 3185 +0 3276 3032 +0 3276 2683 +0 3410 0 +0 3544 0 +2562 3677 0 +3088 3810 0 +3384 3943 0 +3608 4075 0 +3799 4095 0 +0 2904 3284 +0 2905 3283 +0 2905 3283 +0 2906 3283 +0 2907 3283 +0 2909 3283 +0 2911 3283 +0 2914 3283 +0 2917 3283 +0 2922 3282 +0 2928 3282 +0 2936 3281 +0 2947 3280 +0 2961 3280 +0 2979 3278 +0 3002 3276 +0 3031 3274 +0 3062 3274 +0 3100 3274 +0 3147 3274 +0 3203 3274 +0 3268 3274 +0 3274 3193 +0 3274 3042 +0 3274 2706 +0 3408 0 +0 3543 0 +2636 3676 0 +3112 3809 0 +3396 3942 0 +3616 4075 0 +3804 4095 0 +0 2860 3284 +0 2860 3283 +0 2861 3283 +0 2862 3283 +0 2863 3283 +0 2865 3283 +0 2867 3283 +0 2870 3283 +0 2874 3283 +0 2879 3282 +0 2886 3282 +0 2895 3281 +0 2907 3280 +0 2922 3280 +0 2942 3278 +0 2967 3276 +0 2998 3274 +0 3037 3270 +0 3078 3270 +0 3126 3270 +0 3184 3270 +0 3252 3270 +0 3270 3203 +0 3270 3056 +0 3270 2734 +0 3406 0 +0 3541 0 +2718 3675 0 +3143 3808 0 +3413 3941 0 +3626 4074 0 +3811 4095 0 +0 2793 3284 +0 2793 3283 +0 2794 3283 +0 2795 3283 +0 2797 3283 +0 2799 3283 +0 2801 3283 +0 2805 3283 +0 2809 3283 +0 2815 3282 +0 2823 3282 +0 2833 3281 +0 2847 3280 +0 2865 3280 +0 2886 3278 +0 2915 3276 +0 2950 3274 +0 2993 3270 +0 3045 3266 +0 3097 3266 +0 3159 3266 +0 3230 3266 +0 3266 3216 +0 3266 3074 +0 3266 2770 +0 3402 0 +1477 3538 0 +2809 3673 0 +3181 3807 0 +3434 3940 0 +3640 4073 0 +3820 4095 0 +0 2684 3284 +0 2685 3283 +0 2686 3283 +0 2688 3283 +0 2690 3283 +0 2692 3283 +0 2695 3283 +0 2700 3283 +0 2705 3283 +0 2713 3282 +0 2723 3282 +0 2735 3281 +0 2752 3280 +0 2773 3280 +0 2800 3278 +0 2834 3276 +0 2876 3274 +0 2926 3270 +0 2986 3266 +1272 3055 3259 +1272 3122 3259 +1272 3199 3259 +1272 3259 3233 +1272 3259 3097 +1272 3259 2813 +0 3398 1484 +2256 3535 0 +2908 3670 0 +3227 3805 0 +3461 3939 0 +3657 4072 0 +3832 4095 0 +0 2481 3284 +0 2482 3283 +0 2484 3283 +0 2486 3283 +0 2489 3283 +0 2493 3283 +0 2498 3283 +0 2504 3283 +0 2513 3283 +0 2524 3282 +0 2539 3282 +0 2558 3281 +0 2583 3280 +0 2613 3280 +0 2651 3278 +0 2698 3276 +0 2753 3274 +0 2818 3270 +0 2893 3266 +1272 2976 3259 +2194 3069 3251 +2194 3154 3251 +2194 3248 3251 +2194 3251 3126 +2194 3251 2866 +1406 3392 2025 +2593 3530 0 +3014 3667 0 +3282 3802 0 +3495 3937 0 +3679 4071 0 +3847 4095 0 +0 1844 3284 +0 1849 3283 +0 1856 3283 +0 1864 3283 +0 1875 3283 +0 1890 3283 +0 1908 3283 +0 1932 3283 +0 1962 3283 +0 1999 3282 +0 2045 3282 +0 2100 3281 +0 2164 3280 +0 2237 3280 +0 2320 3278 +0 2411 3276 +0 2510 3274 +0 2616 3270 +0 2727 3266 +1272 2843 3259 +2194 2963 3251 +2544 3085 3239 +2544 3193 3239 +2544 3239 3162 +2544 3239 2928 +2328 3383 2326 +2833 3524 1536 +3125 3662 0 +3347 3799 0 +3537 3934 0 +3708 4069 0 +3867 4095 0 +0 0 3284 +0 0 3283 +0 0 3283 +0 0 3283 +0 0 3283 +0 0 3283 +0 0 3283 +0 0 3283 +0 0 3283 +0 0 3282 +0 0 3282 +0 0 3281 +0 0 3280 +0 0 3280 +0 0 3278 +0 0 3276 +0 1202 3274 +0 1990 3270 +0 2327 3266 +1272 2569 3259 +2194 2768 3251 +2544 2945 3239 +2790 3107 3223 +2790 3223 3206 +2790 3223 2999 +2774 3372 2676 +3032 3515 2457 +3240 3656 1663 +3421 3794 0 +3587 3931 0 +3743 4066 0 +3892 4095 0 +0 0 3284 +0 0 3283 +0 0 3283 +0 0 3283 +0 0 3283 +0 0 3283 +0 0 3283 +0 0 3283 +0 0 3283 +0 0 3282 +0 0 3282 +0 0 3281 +0 0 3280 +0 0 3280 +0 0 3278 +0 0 3276 +0 0 3274 +0 0 3270 +1375 0 3266 +1899 1272 3259 +2195 2194 3251 +2544 2642 3239 +2790 2918 3223 +2992 3135 3201 +2992 3201 3080 +3051 3356 2922 +3209 3504 2808 +3360 3648 2590 +3505 3788 1799 +3647 3926 0 +3786 4063 0 +3923 4095 0 +2609 0 3284 +2609 0 3283 +2610 0 3283 +2611 0 3283 +2612 0 3283 +2613 0 3283 +2614 0 3283 +2616 0 3283 +2619 0 3283 +2622 0 3282 +2627 0 3282 +2633 0 3281 +2641 0 3280 +2651 0 3280 +2665 0 3278 +2683 0 3276 +2706 0 3274 +2734 0 3270 +2770 0 3266 +2813 1272 3259 +2866 2194 3251 +2928 2544 3239 +2999 2790 3223 +3080 2992 3201 +3170 3170 3170 +3267 3333 3124 +3372 3488 3054 +3482 3636 2940 +3597 3780 2721 +3716 3920 1928 +3838 4058 0 +3962 4095 0 +3132 0 3416 +3132 0 3416 +3132 0 3416 +3132 0 3416 +3132 0 3416 +3133 0 3416 +3133 0 3415 +3134 0 3415 +3135 0 3415 +3136 0 3415 +3137 0 3414 +3139 0 3414 +3142 0 3414 +3145 0 3413 +3150 0 3412 +3156 0 3410 +3164 0 3408 +3175 0 3406 +3189 0 3402 +3206 0 3398 +3230 1406 3392 +3258 2326 3383 +3294 2676 3372 +3338 2922 3356 +3333 3124 3267 +3333 3212 3124 +3488 3470 3054 +3589 3636 2940 +3682 3780 2721 +3783 3920 1928 +3890 4058 0 +4002 4095 0 +3426 0 3548 +3426 0 3548 +3427 0 3548 +3427 0 3548 +3427 0 3548 +3427 0 3548 +3427 0 3548 +3428 0 3548 +3428 0 3548 +3429 0 3547 +3429 0 3547 +3430 0 3547 +3432 0 3546 +3434 0 3546 +3436 0 3545 +3440 0 3544 +3444 0 3543 +3450 0 3541 +3457 0 3538 +3467 0 3535 +3480 0 3530 +3497 1536 3524 +3515 2457 3512 +3504 2808 3457 +3488 3054 3372 +3488 3054 3183 +3488 3264 3054 +3636 3558 2940 +3776 3780 2721 +3860 3920 1928 +3952 4058 0 +4051 4095 0 +3651 0 3680 +3651 0 3680 +3651 0 3680 +3651 0 3680 +3651 0 3680 +3651 0 3680 +3651 0 3680 +3652 0 3680 +3652 0 3680 +3652 0 3680 +3653 0 3679 +3653 0 3679 +3654 0 3679 +3655 0 3678 +3657 0 3678 +3659 0 3677 +3662 0 3676 +3665 0 3675 +3670 0 3673 +3670 0 3664 +3667 0 3648 +3662 0 3626 +3656 1663 3595 +3648 2590 3550 +3636 2940 3482 +3636 2940 3341 +3636 2940 3038 +3636 3324 2940 +3780 3655 2721 +3920 3893 1928 +4023 4058 0 +4095 4095 0 +3812 0 3781 +3812 0 3781 +3812 0 3781 +3812 0 3781 +3812 0 3781 +3812 0 3781 +3812 0 3781 +3812 0 3780 +3812 0 3780 +3812 0 3779 +3812 0 3778 +3812 0 3777 +3811 0 3777 +3811 0 3775 +3810 0 3773 +3810 0 3770 +3809 0 3766 +3808 0 3761 +3807 0 3754 +3805 0 3744 +3802 0 3731 +3799 0 3713 +3794 0 3687 +3788 1799 3651 +3780 2721 3597 +3780 2721 3492 +3780 2721 3296 +3780 2721 2722 +3780 3394 2721 +3920 3758 1928 +4058 4008 0 +4095 4095 0 +3944 0 3864 +3944 0 3864 +3944 0 3863 +3944 0 3863 +3944 0 3863 +3944 0 3863 +3944 0 3863 +3944 0 3863 +3944 0 3863 +3944 0 3862 +3944 0 3862 +3944 0 3861 +3944 0 3860 +3943 0 3859 +3943 0 3857 +3943 0 3854 +3942 0 3851 +3941 0 3847 +3940 0 3841 +3939 0 3833 +3937 0 3822 +3934 0 3808 +3931 0 3787 +3926 0 3758 +3920 1928 3716 +3920 1928 3637 +3920 1928 3504 +3920 1928 3229 +3920 2556 1928 +3920 3474 1928 +4058 3867 0 +4095 4095 0 +4076 0 3955 +4076 0 3955 +4076 0 3955 +4076 0 3955 +4076 0 3955 +4076 0 3954 +4076 0 3954 +4076 0 3954 +4076 0 3954 +4076 0 3953 +4076 0 3953 +4076 0 3953 +4076 0 3952 +4076 0 3950 +4075 0 3949 +4075 0 3947 +4075 0 3945 +4074 0 3941 +4073 0 3937 +4072 0 3930 +4071 0 3921 +4069 0 3910 +4066 0 3893 +4063 0 3870 +4058 0 3838 +4058 0 3779 +4058 0 3685 +4058 0 3520 +4058 0 3119 +4058 2157 0 +4058 3562 0 +4095 3982 0 +4095 0 4054 +4095 0 4054 +4095 0 4054 +4095 0 4054 +4095 0 4054 +4095 0 4054 +4095 0 4054 +4095 0 4053 +4095 0 4053 +4095 0 4053 +4095 0 4053 +4095 0 4052 +4095 0 4051 +4095 0 4051 +4095 0 4049 +4095 0 4048 +4095 0 4046 +4095 0 4043 +4095 0 4039 +4095 0 4034 +4095 0 4027 +4095 0 4018 +4095 0 4005 +4095 0 3987 +4095 0 3962 +4095 0 3918 +4095 0 3851 +4095 0 3743 +4095 0 3541 +4095 0 2915 +4095 0 0 +4095 3659 0 +0 3146 3416 +0 3146 3416 +0 3147 3416 +0 3147 3416 +0 3147 3416 +0 3148 3416 +0 3149 3416 +0 3151 3416 +0 3152 3416 +0 3155 3416 +0 3158 3416 +0 3162 3416 +0 3168 3416 +0 3175 3416 +0 3184 3416 +0 3197 3416 +0 3213 3416 +0 3234 3416 +0 3261 3416 +0 3294 3416 +0 3335 3416 +0 3385 3416 +0 3416 3387 +0 3416 3294 +0 3416 3132 +0 3416 2741 +0 3548 0 +0 3680 0 +2367 3812 0 +3140 3944 0 +3475 4076 0 +3716 4095 0 +0 3146 3416 +0 3146 3416 +0 3146 3416 +0 3147 3416 +0 3147 3416 +0 3148 3416 +0 3149 3416 +0 3151 3416 +0 3152 3416 +0 3154 3416 +0 3158 3416 +0 3162 3416 +0 3168 3416 +0 3175 3416 +0 3184 3416 +0 3197 3416 +0 3213 3416 +0 3234 3416 +0 3261 3416 +0 3294 3416 +0 3335 3416 +0 3385 3416 +0 3416 3387 +0 3416 3294 +0 3416 3132 +0 3416 2741 +0 3548 0 +0 3680 0 +2369 3812 0 +3140 3944 0 +3475 4076 0 +3717 4095 0 +0 3145 3416 +0 3146 3416 +0 3146 3416 +0 3147 3416 +0 3147 3416 +0 3148 3416 +0 3149 3416 +0 3150 3416 +0 3152 3416 +0 3154 3416 +0 3157 3416 +0 3162 3416 +0 3167 3416 +0 3175 3416 +0 3184 3416 +0 3197 3416 +0 3213 3416 +0 3234 3416 +0 3260 3416 +0 3294 3416 +0 3335 3416 +0 3384 3416 +0 3416 3387 +0 3416 3294 +0 3416 3132 +0 3416 2742 +0 3548 0 +0 3680 0 +2371 3812 0 +3140 3944 0 +3476 4076 0 +3717 4095 0 +0 3145 3416 +0 3145 3416 +0 3146 3416 +0 3146 3416 +0 3147 3416 +0 3147 3416 +0 3148 3416 +0 3150 3416 +0 3151 3416 +0 3154 3416 +0 3157 3416 +0 3161 3416 +0 3167 3416 +0 3174 3416 +0 3184 3416 +0 3196 3416 +0 3213 3416 +0 3234 3416 +0 3260 3416 +0 3293 3416 +0 3335 3416 +0 3384 3416 +0 3416 3387 +0 3416 3294 +0 3416 3132 +0 3416 2742 +0 3548 0 +0 3680 0 +2374 3812 0 +3141 3944 0 +3476 4076 0 +3717 4095 0 +0 3144 3416 +0 3145 3416 +0 3145 3416 +0 3146 3416 +0 3146 3416 +0 3147 3416 +0 3148 3416 +0 3149 3416 +0 3151 3416 +0 3154 3416 +0 3157 3416 +0 3161 3416 +0 3166 3416 +0 3174 3416 +0 3184 3416 +0 3196 3416 +0 3212 3416 +0 3233 3416 +0 3260 3416 +0 3293 3416 +0 3334 3416 +0 3384 3416 +0 3416 3387 +0 3416 3295 +0 3416 3132 +0 3416 2743 +0 3548 0 +0 3680 0 +2377 3812 0 +3142 3944 0 +3476 4076 0 +3717 4095 0 +0 3144 3416 +0 3144 3416 +0 3144 3416 +0 3145 3416 +0 3145 3416 +0 3146 3416 +0 3147 3416 +0 3149 3416 +0 3151 3416 +0 3153 3416 +0 3156 3416 +0 3160 3416 +0 3166 3416 +0 3173 3416 +0 3183 3416 +0 3196 3416 +0 3212 3416 +0 3233 3416 +0 3259 3416 +0 3293 3416 +0 3334 3416 +0 3384 3416 +0 3416 3387 +0 3416 3295 +0 3416 3133 +0 3416 2744 +0 3548 0 +0 3680 0 +2382 3812 0 +3143 3944 0 +3477 4076 0 +3717 4095 0 +0 3143 3416 +0 3143 3416 +0 3143 3416 +0 3144 3416 +0 3144 3416 +0 3145 3416 +0 3147 3415 +0 3148 3415 +0 3150 3415 +0 3152 3415 +0 3155 3415 +0 3160 3415 +0 3165 3415 +0 3173 3415 +0 3182 3415 +0 3195 3415 +0 3211 3415 +0 3232 3415 +0 3259 3415 +0 3292 3415 +0 3333 3415 +0 3383 3415 +0 3415 3387 +0 3415 3295 +0 3415 3133 +0 3415 2745 +0 3548 0 +0 3680 0 +2389 3812 0 +3144 3944 0 +3477 4076 0 +3718 4095 0 +0 3141 3416 +0 3141 3416 +0 3142 3416 +0 3142 3416 +0 3143 3416 +0 3144 3416 +0 3145 3415 +0 3147 3415 +0 3149 3415 +0 3151 3415 +0 3154 3415 +0 3158 3415 +0 3164 3415 +0 3171 3415 +0 3181 3415 +0 3194 3415 +0 3210 3415 +0 3231 3415 +0 3258 3415 +0 3291 3415 +0 3333 3415 +0 3382 3415 +0 3415 3388 +0 3415 3296 +0 3415 3134 +0 3415 2746 +0 3548 0 +0 3680 0 +2397 3812 0 +3145 3944 0 +3478 4076 0 +3718 4095 0 +0 3139 3416 +0 3140 3416 +0 3140 3416 +0 3141 3416 +0 3141 3416 +0 3142 3416 +0 3144 3415 +0 3145 3415 +0 3147 3415 +0 3150 3415 +0 3153 3415 +0 3157 3415 +0 3163 3415 +0 3170 3415 +0 3180 3415 +0 3192 3415 +0 3209 3415 +0 3230 3415 +0 3257 3415 +0 3290 3415 +0 3331 3415 +0 3381 3415 +0 3415 3388 +0 3415 3296 +0 3415 3135 +0 3415 2748 +0 3548 0 +0 3680 0 +2408 3812 0 +3147 3944 0 +3479 4076 0 +3719 4095 0 +0 3137 3416 +0 3137 3416 +0 3138 3416 +0 3138 3416 +0 3139 3416 +0 3140 3416 +0 3141 3415 +0 3143 3415 +0 3145 3415 +0 3147 3415 +0 3151 3415 +0 3155 3415 +0 3161 3415 +0 3168 3415 +0 3178 3415 +0 3191 3415 +0 3207 3415 +0 3228 3415 +0 3255 3415 +0 3289 3415 +0 3330 3415 +0 3380 3415 +0 3415 3389 +0 3415 3297 +0 3415 3136 +0 3415 2751 +0 3547 0 +0 3680 0 +2422 3812 0 +3151 3944 0 +3480 4076 0 +3720 4095 0 +0 3134 3416 +0 3134 3416 +0 3134 3416 +0 3135 3416 +0 3135 3416 +0 3136 3416 +0 3138 3415 +0 3139 3415 +0 3141 3415 +0 3144 3415 +0 3148 3414 +0 3152 3414 +0 3158 3414 +0 3165 3414 +0 3175 3414 +0 3188 3414 +0 3205 3414 +0 3226 3414 +0 3253 3414 +0 3287 3414 +0 3329 3414 +0 3379 3414 +0 3414 3390 +0 3414 3298 +0 3414 3137 +0 3414 2754 +0 3547 0 +0 3679 0 +2441 3812 0 +3154 3944 0 +3482 4076 0 +3721 4095 0 +0 3129 3416 +0 3129 3416 +0 3130 3416 +0 3130 3416 +0 3131 3416 +0 3132 3416 +0 3133 3415 +0 3135 3415 +0 3137 3415 +0 3140 3415 +0 3144 3414 +0 3149 3414 +0 3155 3414 +0 3162 3414 +0 3172 3414 +0 3185 3414 +0 3202 3414 +0 3223 3414 +0 3250 3414 +0 3284 3414 +0 3326 3414 +0 3376 3414 +0 3414 3391 +0 3414 3299 +0 3414 3139 +0 3414 2759 +0 3547 0 +0 3679 0 +2465 3812 0 +3159 3944 0 +3485 4076 0 +3722 4095 0 +0 3123 3416 +0 3123 3416 +0 3124 3416 +0 3124 3416 +0 3125 3416 +0 3126 3416 +0 3127 3415 +0 3129 3415 +0 3131 3415 +0 3134 3415 +0 3138 3414 +0 3143 3414 +0 3150 3414 +0 3158 3414 +0 3168 3414 +0 3181 3414 +0 3198 3414 +0 3219 3414 +0 3247 3414 +0 3281 3414 +0 3323 3414 +0 3374 3414 +0 3414 3393 +0 3414 3301 +0 3414 3142 +0 3414 2765 +0 3546 0 +0 3679 0 +2494 3811 0 +3166 3944 0 +3488 4076 0 +3724 4095 0 +0 3115 3416 +0 3115 3416 +0 3115 3416 +0 3116 3416 +0 3117 3416 +0 3118 3416 +0 3119 3415 +0 3121 3415 +0 3123 3415 +0 3126 3415 +0 3130 3414 +0 3135 3414 +0 3142 3414 +0 3151 3413 +0 3162 3413 +0 3175 3413 +0 3192 3413 +0 3214 3413 +0 3242 3413 +0 3276 3413 +0 3319 3413 +0 3370 3413 +0 3413 3395 +0 3413 3304 +0 3413 3145 +0 3413 2773 +0 3546 0 +0 3678 0 +2531 3811 0 +3175 3943 0 +3492 4076 0 +3727 4095 0 +0 3104 3416 +0 3104 3416 +0 3104 3416 +0 3105 3416 +0 3106 3416 +0 3106 3416 +0 3108 3415 +0 3110 3415 +0 3112 3415 +0 3115 3415 +0 3119 3414 +0 3125 3414 +0 3132 3414 +0 3141 3413 +0 3154 3412 +0 3167 3412 +0 3184 3412 +0 3206 3412 +0 3234 3412 +0 3270 3412 +0 3313 3412 +0 3365 3412 +0 3412 3397 +0 3412 3307 +0 3412 3150 +0 3412 2784 +0 3545 0 +0 3678 0 +2576 3810 0 +3186 3943 0 +3498 4075 0 +3730 4095 0 +0 3088 3416 +0 3088 3416 +0 3089 3416 +0 3089 3416 +0 3090 3416 +0 3091 3416 +0 3093 3415 +0 3094 3415 +0 3097 3415 +0 3100 3415 +0 3104 3414 +0 3110 3414 +0 3117 3414 +0 3127 3413 +0 3140 3412 +0 3156 3410 +0 3174 3410 +0 3196 3410 +0 3225 3410 +0 3261 3410 +0 3305 3410 +0 3358 3410 +0 3410 3401 +0 3410 3311 +0 3410 3156 +0 3410 2797 +0 3544 0 +0 3677 0 +2631 3810 0 +3201 3943 0 +3505 4075 0 +3735 4095 0 +0 3067 3416 +0 3067 3416 +0 3067 3416 +0 3068 3416 +0 3069 3416 +0 3070 3416 +0 3071 3415 +0 3073 3415 +0 3076 3415 +0 3079 3415 +0 3083 3414 +0 3089 3414 +0 3097 3414 +0 3107 3413 +0 3120 3412 +0 3137 3410 +0 3159 3408 +0 3183 3408 +0 3212 3408 +0 3249 3408 +0 3294 3408 +0 3348 3408 +0 3408 3406 +0 3408 3317 +0 3408 3164 +0 3408 2815 +0 3543 0 +0 3676 0 +2694 3809 0 +3220 3942 0 +3515 4075 0 +3741 4095 0 +0 3036 3416 +0 3036 3416 +0 3037 3416 +0 3038 3416 +0 3038 3416 +0 3039 3416 +0 3041 3415 +0 3043 3415 +0 3046 3415 +0 3049 3415 +0 3054 3414 +0 3060 3414 +0 3069 3414 +0 3079 3413 +0 3093 3412 +0 3111 3410 +0 3134 3408 +0 3164 3406 +0 3194 3406 +0 3233 3406 +0 3279 3406 +0 3335 3406 +0 3400 3406 +0 3406 3325 +0 3406 3175 +0 3406 2838 +0 3541 0 +0 3675 0 +2767 3808 0 +3244 3941 0 +3528 4074 0 +3748 4095 0 +0 2992 3416 +0 2992 3416 +0 2992 3416 +0 2993 3416 +0 2994 3416 +0 2996 3416 +0 2997 3415 +0 2999 3415 +0 3002 3415 +0 3006 3415 +0 3011 3414 +0 3018 3414 +0 3027 3414 +0 3039 3413 +0 3055 3412 +0 3074 3410 +0 3099 3408 +0 3131 3406 +0 3170 3402 +0 3210 3402 +0 3259 3402 +0 3317 3402 +0 3384 3402 +0 3402 3335 +0 3402 3189 +0 3402 2866 +0 3538 0 +0 3673 0 +2850 3807 0 +3275 3940 0 +3545 4073 0 +3759 4095 0 +0 2925 3416 +0 2925 3416 +0 2926 3416 +0 2927 3416 +0 2928 3416 +0 2929 3416 +0 2931 3415 +0 2934 3415 +0 2937 3415 +0 2942 3415 +0 2947 3414 +0 2956 3414 +0 2966 3414 +0 2979 3413 +0 2997 3412 +0 3019 3410 +0 3047 3408 +0 3082 3406 +0 3125 3402 +0 3177 3398 +0 3230 3398 +0 3291 3398 +0 3362 3398 +0 3398 3348 +0 3398 3206 +0 3398 2902 +0 3535 0 +1603 3670 0 +2941 3805 0 +3313 3939 0 +3566 4072 0 +3772 4095 0 +0 2816 3416 +0 2817 3416 +0 2817 3416 +0 2818 3416 +0 2820 3416 +0 2822 3416 +0 2824 3415 +0 2827 3415 +0 2832 3415 +0 2837 3415 +0 2845 3414 +0 2855 3414 +0 2867 3414 +0 2884 3413 +0 2906 3412 +0 2933 3410 +0 2966 3408 +0 3008 3406 +0 3059 3402 +0 3118 3398 +1406 3187 3392 +1406 3255 3392 +1406 3331 3392 +1406 3392 3365 +1406 3392 3230 +1406 3392 2945 +0 3530 1621 +2388 3667 0 +3040 3802 0 +3359 3937 0 +3593 4071 0 +3790 4095 0 +0 2613 3416 +0 2614 3416 +0 2615 3416 +0 2617 3416 +0 2619 3416 +0 2621 3416 +0 2625 3415 +0 2630 3415 +0 2637 3415 +0 2646 3415 +0 2657 3414 +0 2672 3414 +0 2691 3414 +0 2715 3413 +0 2746 3412 +0 2784 3410 +0 2830 3408 +0 2886 3406 +0 2951 3402 +0 3025 3398 +1406 3108 3392 +2326 3201 3383 +2326 3286 3383 +2326 3380 3383 +2326 3383 3258 +2326 3383 2998 +1536 3524 2158 +2724 3662 0 +3145 3799 0 +3414 3934 0 +3627 4069 0 +3812 4095 0 +0 1977 3416 +0 1981 3416 +0 1986 3416 +0 1992 3416 +0 2000 3416 +0 2011 3416 +0 2026 3415 +0 2044 3415 +0 2068 3415 +0 2098 3415 +0 2135 3414 +0 2180 3414 +0 2234 3414 +0 2298 3413 +0 2371 3412 +0 2453 3410 +0 2545 3408 +0 2643 3406 +0 2749 3402 +0 2860 3398 +1406 2976 3392 +2326 3095 3383 +2676 3218 3372 +2676 3325 3372 +2676 3372 3294 +2676 3372 3060 +2459 3515 2457 +2965 3656 1663 +3256 3794 0 +3479 3931 0 +3669 4066 0 +3840 4095 0 +0 0 3416 +0 0 3416 +0 0 3416 +0 0 3416 +0 0 3416 +0 0 3416 +0 0 3415 +0 0 3415 +0 0 3415 +0 0 3415 +0 0 3414 +0 0 3414 +0 0 3414 +0 0 3413 +0 0 3412 +0 0 3410 +0 0 3408 +0 1325 3406 +0 2121 3402 +0 2458 3398 +1406 2701 3392 +2326 2900 3383 +2676 3077 3372 +2922 3239 3356 +2922 3356 3338 +2922 3356 3132 +2907 3504 2808 +3165 3648 2590 +3372 3788 1799 +3553 3926 0 +3719 4063 0 +3875 4095 0 +0 0 3416 +0 0 3416 +0 0 3416 +0 0 3416 +0 0 3416 +0 0 3416 +0 0 3415 +0 0 3415 +0 0 3415 +0 0 3415 +0 0 3414 +0 0 3414 +0 0 3414 +0 0 3413 +0 0 3412 +0 0 3410 +0 0 3408 +0 0 3406 +0 0 3402 +1484 0 3398 +2025 1406 3392 +2326 2328 3383 +2676 2774 3372 +2922 3051 3356 +3124 3267 3333 +3124 3333 3212 +3183 3488 3054 +3341 3636 2940 +3492 3780 2721 +3637 3920 1928 +3779 4058 0 +3918 4095 0 +2741 0 3416 +2741 0 3416 +2742 0 3416 +2742 0 3416 +2743 0 3416 +2744 0 3416 +2745 0 3415 +2746 0 3415 +2748 0 3415 +2751 0 3415 +2754 0 3414 +2759 0 3414 +2765 0 3414 +2773 0 3413 +2784 0 3412 +2797 0 3410 +2815 0 3408 +2838 0 3406 +2866 0 3402 +2902 0 3398 +2945 1406 3392 +2998 2326 3383 +3060 2676 3372 +3132 2922 3356 +3212 3124 3333 +3302 3302 3302 +3399 3466 3256 +3504 3620 3186 +3614 3768 3072 +3729 3912 2854 +3848 4052 2063 +3970 4095 0 +3264 0 3548 +3264 0 3548 +3264 0 3548 +3264 0 3548 +3264 0 3548 +3265 0 3548 +3265 0 3548 +3265 0 3548 +3266 0 3548 +3267 0 3547 +3268 0 3547 +3269 0 3547 +3271 0 3546 +3274 0 3546 +3278 0 3545 +3282 0 3544 +3288 0 3543 +3296 0 3541 +3307 0 3538 +3321 0 3535 +3339 0 3530 +3362 1536 3524 +3391 2457 3515 +3426 2808 3504 +3470 3054 3488 +3466 3256 3399 +3466 3344 3256 +3620 3603 3186 +3721 3768 3072 +3814 3912 2854 +3915 4052 2063 +4022 4095 0 +3558 0 3680 +3558 0 3680 +3559 0 3680 +3559 0 3680 +3559 0 3680 +3559 0 3680 +3559 0 3680 +3559 0 3680 +3560 0 3680 +3560 0 3680 +3561 0 3679 +3562 0 3679 +3563 0 3679 +3564 0 3678 +3566 0 3678 +3568 0 3677 +3572 0 3676 +3576 0 3675 +3582 0 3673 +3589 0 3670 +3599 0 3667 +3612 0 3662 +3629 1663 3656 +3648 2590 3644 +3636 2940 3589 +3620 3186 3504 +3620 3186 3315 +3620 3396 3186 +3768 3691 3072 +3908 3912 2854 +3992 4052 2063 +4084 4095 0 +3783 0 3812 +3783 0 3812 +3783 0 3812 +3783 0 3812 +3783 0 3812 +3783 0 3812 +3783 0 3812 +3784 0 3812 +3784 0 3812 +3784 0 3812 +3784 0 3812 +3785 0 3812 +3785 0 3811 +3786 0 3811 +3787 0 3810 +3789 0 3810 +3791 0 3809 +3794 0 3808 +3797 0 3807 +3802 0 3805 +3802 0 3796 +3799 0 3781 +3794 0 3759 +3788 1799 3728 +3780 2721 3682 +3768 3072 3614 +3768 3072 3473 +3768 3072 3171 +3768 3456 3072 +3912 3787 2854 +4052 4025 2063 +4095 4095 0 +3944 0 3913 +3944 0 3913 +3944 0 3913 +3944 0 3913 +3944 0 3913 +3944 0 3913 +3944 0 3913 +3944 0 3912 +3944 0 3912 +3944 0 3912 +3944 0 3911 +3944 0 3910 +3944 0 3910 +3943 0 3909 +3943 0 3907 +3943 0 3905 +3942 0 3902 +3941 0 3898 +3940 0 3893 +3939 0 3886 +3937 0 3876 +3934 0 3863 +3931 0 3845 +3926 0 3820 +3920 1928 3783 +3912 2854 3729 +3912 2854 3624 +3912 2854 3428 +3912 2854 2854 +3912 3526 2854 +4052 3890 2063 +4095 4095 0 +4076 0 3996 +4076 0 3996 +4076 0 3996 +4076 0 3995 +4076 0 3995 +4076 0 3995 +4076 0 3995 +4076 0 3995 +4076 0 3995 +4076 0 3995 +4076 0 3994 +4076 0 3994 +4076 0 3993 +4076 0 3992 +4075 0 3991 +4075 0 3989 +4075 0 3986 +4074 0 3983 +4073 0 3979 +4072 0 3973 +4071 0 3965 +4069 0 3954 +4066 0 3940 +4063 0 3919 +4058 0 3890 +4052 2063 3848 +4052 2063 3769 +4052 2063 3636 +4052 2063 3361 +4052 2689 2063 +4052 3606 2063 +4095 4000 0 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4087 +4095 0 4086 +4095 0 4086 +4095 0 4086 +4095 0 4085 +4095 0 4085 +4095 0 4084 +4095 0 4083 +4095 0 4082 +4095 0 4080 +4095 0 4077 +4095 0 4073 +4095 0 4069 +4095 0 4062 +4095 0 4054 +4095 0 4042 +4095 0 4025 +4095 0 4002 +4095 0 3970 +4095 0 3911 +4095 0 3818 +4095 0 3653 +4095 0 3253 +4095 2266 0 +4095 3695 0 +0 3278 3548 +0 3278 3548 +0 3279 3548 +0 3279 3548 +0 3279 3548 +0 3280 3548 +0 3280 3548 +0 3281 3548 +0 3283 3548 +0 3285 3548 +0 3287 3548 +0 3290 3548 +0 3294 3548 +0 3300 3548 +0 3307 3548 +0 3317 3548 +0 3329 3548 +0 3346 3548 +0 3367 3548 +0 3393 3548 +0 3426 3548 +0 3467 3548 +0 3516 3548 +0 3548 3519 +0 3548 3426 +0 3548 3264 +0 3548 2873 +0 3680 0 +0 3812 0 +2497 3944 0 +3271 4076 0 +3608 4095 0 +0 3278 3548 +0 3278 3548 +0 3278 3548 +0 3279 3548 +0 3279 3548 +0 3280 3548 +0 3280 3548 +0 3281 3548 +0 3283 3548 +0 3284 3548 +0 3287 3548 +0 3290 3548 +0 3294 3548 +0 3300 3548 +0 3307 3548 +0 3317 3548 +0 3329 3548 +0 3346 3548 +0 3367 3548 +0 3393 3548 +0 3426 3548 +0 3467 3548 +0 3516 3548 +0 3548 3519 +0 3548 3426 +0 3548 3264 +0 3548 2873 +0 3680 0 +0 3812 0 +2498 3944 0 +3272 4076 0 +3608 4095 0 +0 3278 3548 +0 3278 3548 +0 3278 3548 +0 3279 3548 +0 3279 3548 +0 3280 3548 +0 3280 3548 +0 3281 3548 +0 3282 3548 +0 3284 3548 +0 3287 3548 +0 3290 3548 +0 3294 3548 +0 3300 3548 +0 3307 3548 +0 3317 3548 +0 3329 3548 +0 3346 3548 +0 3366 3548 +0 3393 3548 +0 3426 3548 +0 3467 3548 +0 3516 3548 +0 3548 3519 +0 3548 3427 +0 3548 3264 +0 3548 2873 +0 3680 0 +0 3812 0 +2500 3944 0 +3272 4076 0 +3608 4095 0 +0 3277 3548 +0 3278 3548 +0 3278 3548 +0 3278 3548 +0 3279 3548 +0 3279 3548 +0 3280 3548 +0 3281 3548 +0 3282 3548 +0 3284 3548 +0 3286 3548 +0 3290 3548 +0 3294 3548 +0 3299 3548 +0 3307 3548 +0 3316 3548 +0 3329 3548 +0 3345 3548 +0 3366 3548 +0 3393 3548 +0 3426 3548 +0 3467 3548 +0 3516 3548 +0 3548 3519 +0 3548 3427 +0 3548 3264 +0 3548 2874 +0 3680 0 +0 3812 0 +2502 3944 0 +3272 4076 0 +3608 4095 0 +0 3277 3548 +0 3277 3548 +0 3277 3548 +0 3278 3548 +0 3278 3548 +0 3279 3548 +0 3280 3548 +0 3280 3548 +0 3282 3548 +0 3284 3548 +0 3286 3548 +0 3289 3548 +0 3293 3548 +0 3299 3548 +0 3307 3548 +0 3316 3548 +0 3329 3548 +0 3345 3548 +0 3366 3548 +0 3392 3548 +0 3426 3548 +0 3467 3548 +0 3516 3548 +0 3548 3519 +0 3548 3427 +0 3548 3264 +0 3548 2874 +0 3680 0 +0 3812 0 +2505 3944 0 +3273 4076 0 +3608 4095 0 +0 3276 3548 +0 3277 3548 +0 3277 3548 +0 3277 3548 +0 3278 3548 +0 3278 3548 +0 3279 3548 +0 3280 3548 +0 3281 3548 +0 3283 3548 +0 3286 3548 +0 3289 3548 +0 3293 3548 +0 3299 3548 +0 3306 3548 +0 3316 3548 +0 3328 3548 +0 3344 3548 +0 3365 3548 +0 3392 3548 +0 3425 3548 +0 3466 3548 +0 3516 3548 +0 3548 3519 +0 3548 3427 +0 3548 3265 +0 3548 2875 +0 3680 0 +0 3812 0 +2508 3944 0 +3273 4076 0 +3609 4095 0 +0 3276 3548 +0 3276 3548 +0 3276 3548 +0 3277 3548 +0 3277 3548 +0 3278 3548 +0 3279 3548 +0 3280 3548 +0 3281 3548 +0 3283 3548 +0 3285 3548 +0 3288 3548 +0 3292 3548 +0 3298 3548 +0 3305 3548 +0 3315 3548 +0 3328 3548 +0 3344 3548 +0 3365 3548 +0 3392 3548 +0 3425 3548 +0 3466 3548 +0 3515 3548 +0 3548 3519 +0 3548 3427 +0 3548 3265 +0 3548 2876 +0 3680 0 +0 3812 0 +2513 3944 0 +3274 4076 0 +3609 4095 0 +0 3275 3548 +0 3275 3548 +0 3275 3548 +0 3275 3548 +0 3276 3548 +0 3277 3548 +0 3278 3548 +0 3279 3548 +0 3280 3548 +0 3282 3548 +0 3284 3548 +0 3287 3548 +0 3292 3548 +0 3297 3548 +0 3305 3548 +0 3314 3548 +0 3327 3548 +0 3343 3548 +0 3364 3548 +0 3391 3548 +0 3424 3548 +0 3466 3548 +0 3515 3548 +0 3548 3520 +0 3548 3428 +0 3548 3265 +0 3548 2877 +0 3680 0 +0 3812 0 +2520 3944 0 +3276 4076 0 +3610 4095 0 +0 3273 3548 +0 3273 3548 +0 3274 3548 +0 3274 3548 +0 3275 3548 +0 3275 3548 +0 3276 3548 +0 3277 3548 +0 3279 3548 +0 3281 3548 +0 3283 3548 +0 3286 3548 +0 3291 3548 +0 3296 3548 +0 3303 3548 +0 3313 3548 +0 3326 3548 +0 3342 3548 +0 3363 3548 +0 3390 3548 +0 3423 3548 +0 3465 3548 +0 3514 3548 +0 3548 3520 +0 3548 3428 +0 3548 3266 +0 3548 2878 +0 3680 0 +0 3812 0 +2528 3944 0 +3277 4076 0 +3611 4095 0 +0 3271 3548 +0 3272 3548 +0 3272 3548 +0 3272 3548 +0 3273 3548 +0 3273 3548 +0 3274 3548 +0 3276 3548 +0 3277 3548 +0 3279 3547 +0 3282 3547 +0 3285 3547 +0 3289 3547 +0 3295 3547 +0 3302 3547 +0 3312 3547 +0 3325 3547 +0 3341 3547 +0 3362 3547 +0 3389 3547 +0 3422 3547 +0 3464 3547 +0 3513 3547 +0 3547 3520 +0 3547 3429 +0 3547 3267 +0 3547 2880 +0 3680 0 +0 3812 0 +2539 3944 0 +3279 4076 0 +3612 4095 0 +0 3269 3548 +0 3269 3548 +0 3269 3548 +0 3270 3548 +0 3270 3548 +0 3271 3548 +0 3272 3548 +0 3273 3548 +0 3275 3548 +0 3277 3547 +0 3280 3547 +0 3283 3547 +0 3287 3547 +0 3293 3547 +0 3300 3547 +0 3310 3547 +0 3323 3547 +0 3339 3547 +0 3361 3547 +0 3387 3547 +0 3421 3547 +0 3462 3547 +0 3512 3547 +0 3547 3521 +0 3547 3429 +0 3547 3268 +0 3547 2883 +0 3679 0 +0 3812 0 +2553 3944 0 +3282 4076 0 +3613 4095 0 +0 3266 3548 +0 3266 3548 +0 3266 3548 +0 3267 3548 +0 3267 3548 +0 3268 3548 +0 3269 3548 +0 3270 3548 +0 3271 3548 +0 3274 3547 +0 3277 3547 +0 3280 3547 +0 3285 3547 +0 3290 3547 +0 3298 3547 +0 3307 3547 +0 3320 3547 +0 3337 3547 +0 3358 3547 +0 3385 3547 +0 3419 3547 +0 3461 3547 +0 3511 3547 +0 3547 3522 +0 3547 3430 +0 3547 3269 +0 3547 2886 +0 3679 0 +0 3812 0 +2572 3944 0 +3286 4076 0 +3615 4095 0 +0 3261 3548 +0 3261 3548 +0 3261 3548 +0 3262 3548 +0 3262 3548 +0 3263 3548 +0 3264 3548 +0 3265 3548 +0 3267 3548 +0 3269 3547 +0 3272 3547 +0 3276 3547 +0 3281 3546 +0 3287 3546 +0 3294 3546 +0 3304 3546 +0 3317 3546 +0 3334 3546 +0 3355 3546 +0 3382 3546 +0 3416 3546 +0 3458 3546 +0 3509 3546 +0 3546 3523 +0 3546 3432 +0 3546 3271 +0 3546 2891 +0 3679 0 +0 3811 0 +2596 3944 0 +3291 4076 0 +3617 4095 0 +0 3255 3548 +0 3255 3548 +0 3256 3548 +0 3256 3548 +0 3256 3548 +0 3257 3548 +0 3258 3548 +0 3259 3548 +0 3261 3548 +0 3263 3547 +0 3266 3547 +0 3270 3547 +0 3275 3546 +0 3282 3546 +0 3290 3546 +0 3300 3546 +0 3313 3546 +0 3330 3546 +0 3351 3546 +0 3379 3546 +0 3413 3546 +0 3455 3546 +0 3506 3546 +0 3546 3525 +0 3546 3434 +0 3546 3274 +0 3546 2897 +0 3678 0 +0 3811 0 +2625 3943 0 +3297 4076 0 +3621 4095 0 +0 3247 3548 +0 3247 3548 +0 3247 3548 +0 3248 3548 +0 3248 3548 +0 3249 3548 +0 3250 3548 +0 3251 3548 +0 3253 3548 +0 3255 3547 +0 3258 3547 +0 3262 3547 +0 3268 3546 +0 3275 3546 +0 3284 3545 +0 3294 3545 +0 3307 3545 +0 3324 3545 +0 3346 3545 +0 3374 3545 +0 3408 3545 +0 3451 3545 +0 3502 3545 +0 3545 3526 +0 3545 3436 +0 3545 3278 +0 3545 2905 +0 3678 0 +0 3810 0 +2662 3943 0 +3306 4075 0 +3625 4095 0 +0 3236 3548 +0 3236 3548 +0 3236 3548 +0 3237 3548 +0 3237 3548 +0 3238 3548 +0 3239 3548 +0 3240 3548 +0 3242 3548 +0 3244 3547 +0 3247 3547 +0 3251 3547 +0 3257 3546 +0 3264 3546 +0 3273 3545 +0 3285 3544 +0 3299 3544 +0 3316 3544 +0 3339 3544 +0 3367 3544 +0 3402 3544 +0 3445 3544 +0 3497 3544 +0 3544 3529 +0 3544 3440 +0 3544 3282 +0 3544 2916 +0 3677 0 +0 3810 0 +2708 3943 0 +3318 4075 0 +3630 4095 0 +0 3220 3548 +0 3220 3548 +0 3221 3548 +0 3221 3548 +0 3222 3548 +0 3222 3548 +0 3223 3548 +0 3225 3548 +0 3226 3548 +0 3229 3547 +0 3232 3547 +0 3236 3547 +0 3242 3546 +0 3249 3546 +0 3259 3545 +0 3272 3544 +0 3288 3543 +0 3306 3543 +0 3329 3543 +0 3357 3543 +0 3393 3543 +0 3437 3543 +0 3490 3543 +0 3543 3533 +0 3543 3444 +0 3543 3288 +0 3543 2929 +0 3676 0 +0 3809 0 +2762 3942 0 +3333 4075 0 +3638 4095 0 +0 3198 3548 +0 3199 3548 +0 3199 3548 +0 3200 3548 +0 3200 3548 +0 3201 3548 +0 3202 3548 +0 3203 3548 +0 3205 3548 +0 3208 3547 +0 3211 3547 +0 3216 3547 +0 3221 3546 +0 3229 3546 +0 3239 3545 +0 3253 3544 +0 3270 3543 +0 3291 3541 +0 3315 3541 +0 3344 3541 +0 3381 3541 +0 3426 3541 +0 3480 3541 +0 3541 3538 +0 3541 3450 +0 3541 3296 +0 3541 2947 +0 3675 0 +0 3808 0 +2826 3941 0 +3351 4074 0 +3648 4095 0 +0 3168 3548 +0 3168 3548 +0 3168 3548 +0 3169 3548 +0 3170 3548 +0 3171 3548 +0 3172 3548 +0 3173 3548 +0 3175 3548 +0 3178 3547 +0 3182 3547 +0 3186 3547 +0 3192 3546 +0 3201 3546 +0 3211 3545 +0 3225 3544 +0 3243 3543 +0 3267 3541 +0 3296 3538 +0 3326 3538 +0 3365 3538 +0 3411 3538 +0 3467 3538 +0 3532 3538 +0 3538 3457 +0 3538 3307 +0 3538 2970 +0 3673 0 +0 3807 0 +2899 3940 0 +3376 4073 0 +3661 4095 0 +0 3124 3548 +0 3124 3548 +0 3124 3548 +0 3125 3548 +0 3125 3548 +0 3126 3548 +0 3128 3548 +0 3129 3548 +0 3132 3548 +0 3135 3547 +0 3138 3547 +0 3144 3547 +0 3151 3546 +0 3160 3546 +0 3171 3545 +0 3186 3544 +0 3206 3543 +0 3231 3541 +0 3263 3538 +0 3302 3535 +0 3342 3535 +0 3391 3535 +0 3449 3535 +0 3516 3535 +0 3535 3467 +0 3535 3321 +0 3535 2998 +0 3670 0 +0 3805 0 +2982 3939 0 +3407 4072 0 +3677 4095 0 +0 3056 3548 +0 3057 3548 +0 3057 3548 +0 3058 3548 +0 3059 3548 +0 3060 3548 +0 3061 3548 +0 3063 3548 +0 3066 3548 +0 3069 3547 +0 3074 3547 +0 3080 3547 +0 3087 3546 +0 3098 3546 +0 3111 3545 +0 3129 3544 +0 3151 3543 +0 3179 3541 +0 3214 3538 +0 3257 3535 +0 3309 3530 +0 3362 3530 +0 3423 3530 +0 3495 3530 +0 3530 3480 +0 3530 3339 +0 3530 3034 +0 3667 0 +1737 3802 0 +3073 3937 0 +3445 4071 0 +3699 4095 0 +0 2948 3548 +0 2948 3548 +0 2949 3548 +0 2950 3548 +0 2951 3548 +0 2952 3548 +0 2954 3548 +0 2956 3548 +0 2960 3548 +0 2964 3547 +0 2970 3547 +0 2977 3547 +0 2987 3546 +0 3000 3546 +0 3016 3545 +0 3038 3544 +0 3065 3543 +0 3099 3541 +0 3140 3538 +0 3190 3535 +0 3250 3530 +1536 3320 3524 +1536 3387 3524 +1536 3463 3524 +1536 3524 3497 +1536 3524 3362 +1536 3524 3078 +0 3662 1753 +2519 3799 0 +3172 3934 0 +3491 4069 0 +3726 4095 0 +0 2745 3548 +0 2745 3548 +0 2746 3548 +0 2747 3548 +0 2749 3548 +0 2751 3548 +0 2754 3548 +0 2758 3548 +0 2763 3548 +0 2770 3547 +0 2778 3547 +0 2790 3547 +0 2804 3546 +0 2824 3546 +0 2848 3545 +0 2879 3544 +0 2917 3543 +0 2963 3541 +0 3018 3538 +0 3083 3535 +0 3157 3530 +1536 3241 3524 +2457 3333 3515 +2457 3418 3515 +2457 3512 3515 +2457 3515 3391 +2457 3515 3130 +1663 3656 2289 +2856 3794 0 +3277 3931 0 +3546 4066 0 +3759 4095 0 +0 2104 3548 +0 2107 3548 +0 2111 3548 +0 2115 3548 +0 2122 3548 +0 2130 3548 +0 2141 3548 +0 2156 3548 +0 2174 3548 +0 2198 3547 +0 2228 3547 +0 2265 3547 +0 2311 3546 +0 2365 3546 +0 2429 3545 +0 2502 3544 +0 2585 3543 +0 2676 3541 +0 2775 3538 +0 2881 3535 +0 2992 3530 +1536 3108 3524 +2457 3227 3515 +2808 3350 3504 +2808 3457 3504 +2808 3504 3426 +2808 3504 3192 +2592 3648 2590 +3097 3788 1799 +3388 3926 0 +3611 4063 0 +3801 4095 0 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3547 +0 0 3547 +0 0 3547 +0 0 3546 +0 0 3546 +0 0 3545 +0 0 3544 +0 0 3543 +0 0 3541 +0 1477 3538 +0 2256 3535 +0 2593 3530 +1536 2833 3524 +2457 3032 3515 +2808 3209 3504 +3054 3372 3488 +3054 3488 3470 +3054 3488 3264 +3038 3636 2940 +3296 3780 2721 +3504 3920 1928 +3685 4058 0 +3851 4095 0 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3548 +0 0 3547 +0 0 3547 +0 0 3547 +0 0 3546 +0 0 3546 +0 0 3545 +0 0 3544 +0 0 3543 +0 0 3541 +0 0 3538 +0 0 3535 +1621 0 3530 +2158 1536 3524 +2457 2459 3515 +2808 2907 3504 +3054 3183 3488 +3256 3399 3466 +3256 3466 3344 +3315 3620 3186 +3473 3768 3072 +3624 3912 2854 +3769 4052 2063 +3911 4095 0 +2873 0 3548 +2873 0 3548 +2873 0 3548 +2874 0 3548 +2874 0 3548 +2875 0 3548 +2876 0 3548 +2877 0 3548 +2878 0 3548 +2880 0 3547 +2883 0 3547 +2886 0 3547 +2891 0 3546 +2897 0 3546 +2905 0 3545 +2916 0 3544 +2929 0 3543 +2947 0 3541 +2970 0 3538 +2998 0 3535 +3034 0 3530 +3078 1536 3524 +3130 2457 3515 +3192 2808 3504 +3264 3054 3488 +3344 3256 3466 +3434 3434 3434 +3531 3598 3388 +3636 3752 3318 +3746 3900 3204 +3861 4044 2986 +3980 4095 2192 +3396 0 3680 +3396 0 3680 +3396 0 3680 +3396 0 3680 +3396 0 3680 +3396 0 3680 +3396 0 3680 +3397 0 3680 +3397 0 3680 +3398 0 3680 +3399 0 3679 +3400 0 3679 +3401 0 3679 +3403 0 3678 +3406 0 3678 +3410 0 3677 +3414 0 3676 +3420 0 3675 +3429 0 3673 +3439 0 3670 +3453 0 3667 +3471 0 3662 +3494 1663 3656 +3523 2590 3648 +3558 2940 3636 +3603 3186 3620 +3598 3388 3531 +3598 3477 3388 +3752 3735 3318 +3853 3900 3204 +3947 4044 2986 +4047 4095 2192 +3691 0 3812 +3691 0 3812 +3691 0 3812 +3691 0 3812 +3691 0 3812 +3691 0 3812 +3691 0 3812 +3691 0 3812 +3691 0 3812 +3692 0 3812 +3692 0 3812 +3693 0 3812 +3694 0 3811 +3695 0 3811 +3696 0 3810 +3698 0 3810 +3700 0 3809 +3704 0 3808 +3708 0 3807 +3714 0 3805 +3721 0 3802 +3731 0 3799 +3745 0 3794 +3761 1799 3788 +3780 2721 3776 +3768 3072 3721 +3752 3318 3636 +3752 3318 3447 +3752 3528 3318 +3900 3822 3204 +4040 4044 2986 +4095 4095 2192 +3915 0 3944 +3915 0 3944 +3915 0 3944 +3915 0 3944 +3915 0 3944 +3915 0 3944 +3915 0 3944 +3915 0 3944 +3915 0 3944 +3916 0 3944 +3916 0 3944 +3916 0 3944 +3917 0 3944 +3917 0 3943 +3918 0 3943 +3920 0 3943 +3921 0 3942 +3923 0 3941 +3926 0 3940 +3929 0 3939 +3934 0 3937 +3934 0 3928 +3931 0 3913 +3926 0 3891 +3920 1928 3860 +3912 2854 3814 +3900 3204 3746 +3900 3204 3605 +3900 3204 3302 +3900 3588 3204 +4044 3919 2986 +4095 4095 2192 +4076 0 4045 +4076 0 4045 +4076 0 4045 +4076 0 4045 +4076 0 4045 +4076 0 4045 +4076 0 4045 +4076 0 4045 +4076 0 4044 +4076 0 4044 +4076 0 4044 +4076 0 4043 +4076 0 4043 +4076 0 4042 +4075 0 4041 +4075 0 4039 +4075 0 4037 +4074 0 4034 +4073 0 4030 +4072 0 4025 +4071 0 4018 +4069 0 4008 +4066 0 3995 +4063 0 3977 +4058 0 3952 +4052 2063 3915 +4044 2986 3861 +4044 2986 3755 +4044 2986 3561 +4044 2986 2987 +4044 3659 2986 +4095 4023 2192 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4087 +4095 0 4072 +4095 0 4051 +4095 0 4022 +4095 2192 3980 +4095 2192 3901 +4095 2192 3768 +4095 2192 3494 +4095 2814 2192 +4095 3738 2192 +0 3410 3680 +0 3410 3680 +0 3410 3680 +0 3411 3680 +0 3411 3680 +0 3411 3680 +0 3412 3680 +0 3413 3680 +0 3414 3680 +0 3415 3680 +0 3417 3680 +0 3419 3680 +0 3422 3680 +0 3427 3680 +0 3432 3680 +0 3440 3680 +0 3449 3680 +0 3462 3680 +0 3478 3680 +0 3499 3680 +0 3525 3680 +0 3558 3680 +0 3599 3680 +0 3649 3680 +0 3680 3651 +0 3680 3558 +0 3680 3396 +0 3680 3005 +0 3812 0 +0 3944 0 +2626 4076 0 +3404 4095 0 +0 3410 3680 +0 3410 3680 +0 3410 3680 +0 3411 3680 +0 3411 3680 +0 3411 3680 +0 3412 3680 +0 3413 3680 +0 3414 3680 +0 3415 3680 +0 3417 3680 +0 3419 3680 +0 3422 3680 +0 3426 3680 +0 3432 3680 +0 3439 3680 +0 3449 3680 +0 3462 3680 +0 3478 3680 +0 3499 3680 +0 3525 3680 +0 3558 3680 +0 3599 3680 +0 3649 3680 +0 3680 3651 +0 3680 3558 +0 3680 3396 +0 3680 3005 +0 3812 0 +0 3944 0 +2627 4076 0 +3404 4095 0 +0 3410 3680 +0 3410 3680 +0 3410 3680 +0 3410 3680 +0 3411 3680 +0 3411 3680 +0 3412 3680 +0 3413 3680 +0 3414 3680 +0 3415 3680 +0 3417 3680 +0 3419 3680 +0 3422 3680 +0 3426 3680 +0 3432 3680 +0 3439 3680 +0 3449 3680 +0 3462 3680 +0 3478 3680 +0 3499 3680 +0 3525 3680 +0 3558 3680 +0 3599 3680 +0 3649 3680 +0 3680 3651 +0 3680 3559 +0 3680 3396 +0 3680 3005 +0 3812 0 +0 3944 0 +2628 4076 0 +3404 4095 0 +0 3410 3680 +0 3410 3680 +0 3410 3680 +0 3410 3680 +0 3411 3680 +0 3411 3680 +0 3412 3680 +0 3412 3680 +0 3413 3680 +0 3415 3680 +0 3416 3680 +0 3419 3680 +0 3422 3680 +0 3426 3680 +0 3432 3680 +0 3439 3680 +0 3449 3680 +0 3461 3680 +0 3478 3680 +0 3499 3680 +0 3525 3680 +0 3558 3680 +0 3599 3680 +0 3649 3680 +0 3680 3651 +0 3680 3559 +0 3680 3396 +0 3680 3006 +0 3812 0 +0 3944 0 +2630 4076 0 +3405 4095 0 +0 3409 3680 +0 3409 3680 +0 3410 3680 +0 3410 3680 +0 3410 3680 +0 3411 3680 +0 3411 3680 +0 3412 3680 +0 3413 3680 +0 3414 3680 +0 3416 3680 +0 3419 3680 +0 3422 3680 +0 3426 3680 +0 3431 3680 +0 3439 3680 +0 3448 3680 +0 3461 3680 +0 3478 3680 +0 3498 3680 +0 3525 3680 +0 3558 3680 +0 3599 3680 +0 3648 3680 +0 3680 3651 +0 3680 3559 +0 3680 3396 +0 3680 3006 +0 3812 0 +0 3944 0 +2632 4076 0 +3405 4095 0 +0 3409 3680 +0 3409 3680 +0 3409 3680 +0 3410 3680 +0 3410 3680 +0 3410 3680 +0 3411 3680 +0 3412 3680 +0 3413 3680 +0 3414 3680 +0 3416 3680 +0 3418 3680 +0 3421 3680 +0 3426 3680 +0 3431 3680 +0 3438 3680 +0 3448 3680 +0 3461 3680 +0 3477 3680 +0 3498 3680 +0 3525 3680 +0 3558 3680 +0 3599 3680 +0 3648 3680 +0 3680 3651 +0 3680 3559 +0 3680 3396 +0 3680 3006 +0 3812 0 +0 3944 0 +2635 4076 0 +3405 4095 0 +0 3408 3680 +0 3408 3680 +0 3409 3680 +0 3409 3680 +0 3409 3680 +0 3410 3680 +0 3411 3680 +0 3411 3680 +0 3412 3680 +0 3414 3680 +0 3415 3680 +0 3418 3680 +0 3421 3680 +0 3425 3680 +0 3431 3680 +0 3438 3680 +0 3448 3680 +0 3460 3680 +0 3477 3680 +0 3497 3680 +0 3524 3680 +0 3557 3680 +0 3598 3680 +0 3648 3680 +0 3680 3651 +0 3680 3559 +0 3680 3396 +0 3680 3007 +0 3812 0 +0 3944 0 +2639 4076 0 +3406 4095 0 +0 3408 3680 +0 3408 3680 +0 3408 3680 +0 3408 3680 +0 3409 3680 +0 3409 3680 +0 3410 3680 +0 3411 3680 +0 3412 3680 +0 3413 3680 +0 3415 3680 +0 3417 3680 +0 3420 3680 +0 3425 3680 +0 3430 3680 +0 3437 3680 +0 3447 3680 +0 3460 3680 +0 3476 3680 +0 3497 3680 +0 3524 3680 +0 3557 3680 +0 3598 3680 +0 3648 3680 +0 3680 3652 +0 3680 3559 +0 3680 3397 +0 3680 3008 +0 3812 0 +0 3944 0 +2644 4076 0 +3407 4095 0 +0 3406 3680 +0 3407 3680 +0 3407 3680 +0 3407 3680 +0 3408 3680 +0 3408 3680 +0 3409 3680 +0 3410 3680 +0 3411 3680 +0 3412 3680 +0 3414 3680 +0 3416 3680 +0 3420 3680 +0 3424 3680 +0 3429 3680 +0 3437 3680 +0 3446 3680 +0 3459 3680 +0 3475 3680 +0 3496 3680 +0 3523 3680 +0 3556 3680 +0 3597 3680 +0 3647 3680 +0 3680 3652 +0 3680 3560 +0 3680 3397 +0 3680 3009 +0 3812 0 +0 3944 0 +2650 4076 0 +3408 4095 0 +0 3405 3680 +0 3405 3680 +0 3405 3680 +0 3406 3680 +0 3406 3680 +0 3407 3680 +0 3407 3680 +0 3408 3680 +0 3409 3680 +0 3411 3680 +0 3413 3680 +0 3415 3680 +0 3418 3680 +0 3423 3680 +0 3428 3680 +0 3436 3680 +0 3445 3680 +0 3458 3680 +0 3475 3680 +0 3495 3680 +0 3522 3680 +0 3556 3680 +0 3597 3680 +0 3646 3680 +0 3680 3652 +0 3680 3560 +0 3680 3398 +0 3680 3011 +0 3812 0 +0 3944 0 +2659 4076 0 +3410 4095 0 +0 3403 3680 +0 3403 3680 +0 3404 3680 +0 3404 3680 +0 3404 3680 +0 3405 3680 +0 3406 3680 +0 3406 3680 +0 3408 3680 +0 3409 3680 +0 3411 3679 +0 3414 3679 +0 3417 3679 +0 3421 3679 +0 3427 3679 +0 3434 3679 +0 3444 3679 +0 3457 3679 +0 3473 3679 +0 3494 3679 +0 3521 3679 +0 3554 3679 +0 3596 3679 +0 3646 3679 +0 3679 3653 +0 3679 3561 +0 3679 3399 +0 3679 3013 +0 3812 0 +0 3944 0 +2670 4076 0 +3412 4095 0 +0 3401 3680 +0 3401 3680 +0 3401 3680 +0 3401 3680 +0 3402 3680 +0 3402 3680 +0 3403 3680 +0 3404 3680 +0 3405 3680 +0 3407 3680 +0 3409 3679 +0 3412 3679 +0 3415 3679 +0 3419 3679 +0 3425 3679 +0 3432 3679 +0 3442 3679 +0 3455 3679 +0 3472 3679 +0 3493 3679 +0 3520 3679 +0 3553 3679 +0 3595 3679 +0 3644 3679 +0 3679 3653 +0 3679 3562 +0 3679 3400 +0 3679 3015 +0 3812 0 +0 3944 0 +2684 4076 0 +3415 4095 0 +0 3398 3680 +0 3398 3680 +0 3398 3680 +0 3398 3680 +0 3399 3680 +0 3399 3680 +0 3400 3680 +0 3401 3680 +0 3402 3680 +0 3404 3680 +0 3406 3679 +0 3409 3679 +0 3413 3679 +0 3417 3679 +0 3422 3679 +0 3430 3679 +0 3440 3679 +0 3453 3679 +0 3469 3679 +0 3490 3679 +0 3517 3679 +0 3551 3679 +0 3593 3679 +0 3643 3679 +0 3679 3654 +0 3679 3563 +0 3679 3401 +0 3679 3018 +0 3811 0 +0 3944 0 +2703 4076 0 +3419 4095 0 +0 3393 3680 +0 3393 3680 +0 3393 3680 +0 3394 3680 +0 3394 3680 +0 3395 3680 +0 3395 3680 +0 3396 3680 +0 3397 3680 +0 3399 3680 +0 3401 3679 +0 3404 3679 +0 3408 3679 +0 3413 3678 +0 3419 3678 +0 3426 3678 +0 3436 3678 +0 3449 3678 +0 3466 3678 +0 3488 3678 +0 3515 3678 +0 3548 3678 +0 3590 3678 +0 3641 3678 +0 3678 3655 +0 3678 3564 +0 3678 3403 +0 3678 3023 +0 3811 0 +0 3943 0 +2726 4076 0 +3424 4095 0 +0 3387 3680 +0 3387 3680 +0 3387 3680 +0 3388 3680 +0 3388 3680 +0 3388 3680 +0 3389 3680 +0 3390 3680 +0 3392 3680 +0 3393 3680 +0 3395 3679 +0 3398 3679 +0 3402 3679 +0 3407 3678 +0 3414 3678 +0 3422 3678 +0 3432 3678 +0 3445 3678 +0 3462 3678 +0 3483 3678 +0 3511 3678 +0 3545 3678 +0 3587 3678 +0 3638 3678 +0 3678 3657 +0 3678 3566 +0 3678 3406 +0 3678 3029 +0 3810 0 +0 3943 0 +2756 4075 0 +3430 4095 0 +0 3379 3680 +0 3379 3680 +0 3379 3680 +0 3379 3680 +0 3380 3680 +0 3380 3680 +0 3381 3680 +0 3382 3680 +0 3383 3680 +0 3385 3680 +0 3387 3679 +0 3390 3679 +0 3394 3679 +0 3400 3678 +0 3407 3678 +0 3416 3677 +0 3426 3677 +0 3439 3677 +0 3456 3677 +0 3478 3677 +0 3506 3677 +0 3540 3677 +0 3583 3677 +0 3634 3677 +0 3677 3659 +0 3677 3568 +0 3677 3410 +0 3677 3037 +0 3810 0 +0 3943 0 +2793 4075 0 +3439 4095 0 +0 3367 3680 +0 3368 3680 +0 3368 3680 +0 3368 3680 +0 3369 3680 +0 3369 3680 +0 3370 3680 +0 3371 3680 +0 3372 3680 +0 3374 3680 +0 3376 3679 +0 3379 3679 +0 3384 3679 +0 3389 3678 +0 3396 3678 +0 3405 3677 +0 3418 3676 +0 3431 3676 +0 3448 3676 +0 3471 3676 +0 3499 3676 +0 3534 3676 +0 3577 3676 +0 3629 3676 +0 3676 3662 +0 3676 3572 +0 3676 3414 +0 3676 3048 +0 3809 0 +0 3942 0 +2839 4075 0 +3450 4095 0 +0 3352 3680 +0 3352 3680 +0 3353 3680 +0 3353 3680 +0 3353 3680 +0 3354 3680 +0 3354 3680 +0 3356 3680 +0 3357 3680 +0 3359 3680 +0 3361 3679 +0 3364 3679 +0 3368 3679 +0 3374 3678 +0 3381 3678 +0 3391 3677 +0 3404 3676 +0 3420 3675 +0 3438 3675 +0 3461 3675 +0 3490 3675 +0 3525 3675 +0 3569 3675 +0 3622 3675 +0 3675 3665 +0 3675 3576 +0 3675 3420 +0 3675 3061 +0 3808 0 +0 3941 0 +2893 4074 0 +3465 4095 0 +0 3330 3680 +0 3331 3680 +0 3331 3680 +0 3331 3680 +0 3332 3680 +0 3332 3680 +0 3333 3680 +0 3334 3680 +0 3336 3680 +0 3337 3680 +0 3340 3679 +0 3343 3679 +0 3348 3679 +0 3354 3678 +0 3361 3678 +0 3371 3677 +0 3385 3676 +0 3402 3675 +0 3423 3673 +0 3447 3673 +0 3477 3673 +0 3513 3673 +0 3558 3673 +0 3612 3673 +0 3673 3670 +0 3673 3582 +0 3673 3429 +0 3673 3079 +0 3807 0 +0 3940 0 +2957 4073 0 +3484 4095 0 +0 3300 3680 +0 3300 3680 +0 3300 3680 +0 3301 3680 +0 3301 3680 +0 3302 3680 +0 3303 3680 +0 3304 3680 +0 3305 3680 +0 3307 3680 +0 3310 3679 +0 3314 3679 +0 3318 3679 +0 3325 3678 +0 3333 3678 +0 3344 3677 +0 3358 3676 +0 3376 3675 +0 3399 3673 +0 3428 3670 +0 3459 3670 +0 3497 3670 +0 3543 3670 +0 3599 3670 +0 3664 3670 +0 3670 3589 +0 3670 3439 +0 3670 3102 +0 3805 0 +0 3939 0 +3031 4072 0 +3509 4095 0 +0 3255 3680 +0 3256 3680 +0 3256 3680 +0 3256 3680 +0 3257 3680 +0 3258 3680 +0 3258 3680 +0 3260 3680 +0 3261 3680 +0 3264 3680 +0 3267 3679 +0 3271 3679 +0 3276 3679 +0 3282 3678 +0 3291 3678 +0 3303 3677 +0 3319 3676 +0 3338 3675 +0 3363 3673 +0 3395 3670 +0 3434 3667 +0 3474 3667 +0 3523 3667 +0 3581 3667 +0 3648 3667 +0 3667 3599 +0 3667 3453 +0 3667 3131 +0 3802 0 +0 3937 0 +3113 4071 0 +3539 4095 0 +0 3188 3680 +0 3188 3680 +0 3189 3680 +0 3189 3680 +0 3190 3680 +0 3191 3680 +0 3192 3680 +0 3193 3680 +0 3195 3680 +0 3198 3680 +0 3201 3679 +0 3206 3679 +0 3212 3679 +0 3220 3678 +0 3230 3678 +0 3243 3677 +0 3261 3676 +0 3283 3675 +0 3311 3673 +0 3346 3670 +0 3389 3667 +0 3441 3662 +0 3494 3662 +0 3555 3662 +0 3626 3662 +0 3662 3612 +0 3662 3471 +0 3662 3166 +0 3799 0 +1863 3934 0 +3205 4069 0 +3577 4095 0 +0 3080 3680 +0 3080 3680 +0 3081 3680 +0 3081 3680 +0 3082 3680 +0 3083 3680 +0 3084 3680 +0 3086 3680 +0 3089 3680 +0 3092 3680 +0 3096 3679 +0 3102 3679 +0 3110 3679 +0 3119 3678 +0 3132 3678 +0 3149 3677 +0 3170 3676 +0 3197 3675 +0 3231 3673 +0 3273 3670 +0 3323 3667 +0 3382 3662 +1663 3452 3656 +1663 3519 3656 +1663 3595 3656 +1663 3656 3629 +1663 3656 3494 +1663 3656 3210 +0 3794 1884 +2650 3931 0 +3303 4066 0 +3623 4095 0 +0 2876 3680 +0 2877 3680 +0 2877 3680 +0 2878 3680 +0 2879 3680 +0 2881 3680 +0 2883 3680 +0 2886 3680 +0 2890 3680 +0 2895 3680 +0 2901 3679 +0 2910 3679 +0 2922 3679 +0 2936 3678 +0 2955 3678 +0 2980 3677 +0 3010 3676 +0 3048 3675 +0 3095 3673 +0 3150 3670 +0 3215 3667 +0 3289 3662 +1663 3373 3656 +2590 3465 3648 +2590 3550 3648 +2590 3644 3648 +2590 3648 3523 +2590 3648 3262 +1799 3788 2422 +2988 3926 0 +3409 4063 0 +3679 4095 0 +0 2237 3680 +0 2239 3680 +0 2242 3680 +0 2246 3680 +0 2251 3680 +0 2257 3680 +0 2266 3680 +0 2277 3680 +0 2291 3680 +0 2310 3680 +0 2333 3679 +0 2363 3679 +0 2400 3679 +0 2445 3678 +0 2499 3678 +0 2562 3677 +0 2636 3676 +0 2718 3675 +0 2809 3673 +0 2908 3670 +0 3014 3667 +0 3125 3662 +1663 3240 3656 +2590 3360 3648 +2940 3482 3636 +2940 3589 3636 +2940 3636 3558 +2940 3636 3324 +2722 3780 2721 +3229 3920 1928 +3520 4058 0 +3743 4095 0 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3679 +0 0 3679 +0 0 3679 +0 0 3678 +0 0 3678 +0 0 3677 +0 0 3676 +0 0 3675 +0 0 3673 +0 1603 3670 +0 2388 3667 +0 2724 3662 +1663 2965 3656 +2590 3165 3648 +2940 3341 3636 +3186 3504 3620 +3186 3620 3603 +3186 3620 3396 +3171 3768 3072 +3428 3912 2854 +3636 4052 2063 +3818 4095 0 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3680 +0 0 3679 +0 0 3679 +0 0 3679 +0 0 3678 +0 0 3678 +0 0 3677 +0 0 3676 +0 0 3675 +0 0 3673 +0 0 3670 +0 0 3667 +1753 0 3662 +2289 1663 3656 +2590 2592 3648 +2940 3038 3636 +3186 3315 3620 +3388 3531 3598 +3388 3598 3477 +3447 3752 3318 +3605 3900 3204 +3755 4044 2986 +3901 4095 2192 +3005 0 3680 +3005 0 3680 +3005 0 3680 +3006 0 3680 +3006 0 3680 +3006 0 3680 +3007 0 3680 +3008 0 3680 +3009 0 3680 +3011 0 3680 +3013 0 3679 +3015 0 3679 +3018 0 3679 +3023 0 3678 +3029 0 3678 +3037 0 3677 +3048 0 3676 +3061 0 3675 +3079 0 3673 +3102 0 3670 +3131 0 3667 +3166 0 3662 +3210 1663 3656 +3262 2590 3648 +3324 2940 3636 +3396 3186 3620 +3477 3388 3598 +3566 3566 3566 +3664 3730 3520 +3768 3884 3450 +3878 4032 3336 +3993 4095 3118 +3528 0 3812 +3528 0 3812 +3528 0 3812 +3528 0 3812 +3528 0 3812 +3528 0 3812 +3528 0 3812 +3529 0 3812 +3529 0 3812 +3530 0 3812 +3530 0 3812 +3531 0 3812 +3532 0 3811 +3534 0 3811 +3536 0 3810 +3538 0 3810 +3542 0 3809 +3546 0 3808 +3552 0 3807 +3561 0 3805 +3571 0 3802 +3585 0 3799 +3603 0 3794 +3626 1799 3788 +3655 2721 3780 +3691 3072 3768 +3735 3318 3752 +3730 3520 3664 +3730 3609 3520 +3884 3867 3450 +3986 4032 3336 +4079 4095 3118 +3822 0 3944 +3822 0 3944 +3822 0 3944 +3823 0 3944 +3823 0 3944 +3823 0 3944 +3823 0 3944 +3823 0 3944 +3823 0 3944 +3824 0 3944 +3824 0 3944 +3824 0 3944 +3825 0 3944 +3826 0 3943 +3827 0 3943 +3828 0 3943 +3830 0 3942 +3832 0 3941 +3836 0 3940 +3840 0 3939 +3846 0 3937 +3853 0 3934 +3863 0 3931 +3877 0 3926 +3893 1928 3920 +3912 2854 3908 +3900 3204 3853 +3884 3450 3768 +3884 3450 3579 +3884 3660 3450 +4032 3955 3336 +4095 4095 3118 +4047 0 4076 +4047 0 4076 +4047 0 4076 +4047 0 4076 +4047 0 4076 +4047 0 4076 +4047 0 4076 +4047 0 4076 +4047 0 4076 +4047 0 4076 +4048 0 4076 +4048 0 4076 +4048 0 4076 +4049 0 4076 +4049 0 4075 +4050 0 4075 +4051 0 4075 +4053 0 4074 +4055 0 4073 +4058 0 4072 +4061 0 4071 +4066 0 4069 +4066 0 4060 +4063 0 4045 +4058 0 4023 +4052 2063 3992 +4044 2986 3947 +4032 3336 3878 +4032 3336 3737 +4032 3336 3435 +4032 3720 3336 +4095 4051 3118 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4084 +4095 2192 4047 +4095 3118 3993 +4095 3118 3888 +4095 3118 3693 +4095 3118 3121 +4095 3791 3118 +0 3542 3812 +0 3542 3812 +0 3543 3812 +0 3543 3812 +0 3543 3812 +0 3543 3812 +0 3544 3812 +0 3544 3812 +0 3545 3812 +0 3546 3812 +0 3547 3812 +0 3549 3812 +0 3552 3812 +0 3554 3812 +0 3559 3812 +0 3564 3812 +0 3572 3812 +0 3581 3812 +0 3594 3812 +0 3610 3812 +0 3631 3812 +0 3657 3812 +0 3691 3812 +0 3732 3812 +0 3781 3812 +0 3812 3783 +0 3812 3691 +0 3812 3528 +0 3812 3137 +0 3944 0 +0 4076 0 +2761 4095 0 +0 3542 3812 +0 3542 3812 +0 3543 3812 +0 3543 3812 +0 3543 3812 +0 3543 3812 +0 3544 3812 +0 3544 3812 +0 3545 3812 +0 3546 3812 +0 3547 3812 +0 3549 3812 +0 3551 3812 +0 3554 3812 +0 3559 3812 +0 3564 3812 +0 3572 3812 +0 3581 3812 +0 3594 3812 +0 3610 3812 +0 3631 3812 +0 3657 3812 +0 3691 3812 +0 3731 3812 +0 3781 3812 +0 3812 3783 +0 3812 3691 +0 3812 3528 +0 3812 3137 +0 3944 0 +0 4076 0 +2762 4095 0 +0 3542 3812 +0 3542 3812 +0 3542 3812 +0 3543 3812 +0 3543 3812 +0 3543 3812 +0 3543 3812 +0 3544 3812 +0 3545 3812 +0 3546 3812 +0 3547 3812 +0 3549 3812 +0 3551 3812 +0 3554 3812 +0 3559 3812 +0 3564 3812 +0 3572 3812 +0 3581 3812 +0 3594 3812 +0 3610 3812 +0 3631 3812 +0 3657 3812 +0 3690 3812 +0 3731 3812 +0 3781 3812 +0 3812 3783 +0 3812 3691 +0 3812 3528 +0 3812 3137 +0 3944 0 +0 4076 0 +2762 4095 0 +0 3542 3812 +0 3542 3812 +0 3542 3812 +0 3542 3812 +0 3543 3812 +0 3543 3812 +0 3543 3812 +0 3544 3812 +0 3545 3812 +0 3545 3812 +0 3547 3812 +0 3549 3812 +0 3551 3812 +0 3554 3812 +0 3558 3812 +0 3564 3812 +0 3571 3812 +0 3581 3812 +0 3594 3812 +0 3610 3812 +0 3631 3812 +0 3657 3812 +0 3690 3812 +0 3731 3812 +0 3781 3812 +0 3812 3783 +0 3812 3691 +0 3812 3528 +0 3812 3138 +0 3944 0 +0 4076 0 +2764 4095 0 +0 3541 3812 +0 3542 3812 +0 3542 3812 +0 3542 3812 +0 3543 3812 +0 3543 3812 +0 3543 3812 +0 3544 3812 +0 3544 3812 +0 3545 3812 +0 3547 3812 +0 3549 3812 +0 3551 3812 +0 3554 3812 +0 3558 3812 +0 3564 3812 +0 3571 3812 +0 3581 3812 +0 3594 3812 +0 3610 3812 +0 3631 3812 +0 3657 3812 +0 3690 3812 +0 3731 3812 +0 3781 3812 +0 3812 3783 +0 3812 3691 +0 3812 3528 +0 3812 3138 +0 3944 0 +0 4076 0 +2765 4095 0 +0 3541 3812 +0 3541 3812 +0 3541 3812 +0 3542 3812 +0 3542 3812 +0 3543 3812 +0 3543 3812 +0 3543 3812 +0 3544 3812 +0 3545 3812 +0 3547 3812 +0 3548 3812 +0 3551 3812 +0 3554 3812 +0 3558 3812 +0 3564 3812 +0 3571 3812 +0 3581 3812 +0 3593 3812 +0 3609 3812 +0 3630 3812 +0 3657 3812 +0 3690 3812 +0 3731 3812 +0 3781 3812 +0 3812 3783 +0 3812 3691 +0 3812 3528 +0 3812 3138 +0 3944 0 +0 4076 0 +2767 4095 0 +0 3541 3812 +0 3541 3812 +0 3541 3812 +0 3541 3812 +0 3542 3812 +0 3542 3812 +0 3543 3812 +0 3543 3812 +0 3544 3812 +0 3545 3812 +0 3546 3812 +0 3548 3812 +0 3550 3812 +0 3553 3812 +0 3558 3812 +0 3563 3812 +0 3571 3812 +0 3580 3812 +0 3593 3812 +0 3609 3812 +0 3630 3812 +0 3657 3812 +0 3690 3812 +0 3731 3812 +0 3781 3812 +0 3812 3783 +0 3812 3691 +0 3812 3528 +0 3812 3139 +0 3944 0 +0 4076 0 +2770 4095 0 +0 3540 3812 +0 3540 3812 +0 3541 3812 +0 3541 3812 +0 3541 3812 +0 3541 3812 +0 3542 3812 +0 3543 3812 +0 3543 3812 +0 3544 3812 +0 3546 3812 +0 3548 3812 +0 3550 3812 +0 3553 3812 +0 3557 3812 +0 3563 3812 +0 3570 3812 +0 3580 3812 +0 3593 3812 +0 3609 3812 +0 3630 3812 +0 3656 3812 +0 3690 3812 +0 3730 3812 +0 3780 3812 +0 3812 3784 +0 3812 3691 +0 3812 3529 +0 3812 3139 +0 3944 0 +0 4076 0 +2773 4095 0 +0 3540 3812 +0 3540 3812 +0 3540 3812 +0 3540 3812 +0 3540 3812 +0 3541 3812 +0 3541 3812 +0 3542 3812 +0 3543 3812 +0 3544 3812 +0 3545 3812 +0 3547 3812 +0 3549 3812 +0 3552 3812 +0 3557 3812 +0 3562 3812 +0 3570 3812 +0 3579 3812 +0 3592 3812 +0 3608 3812 +0 3629 3812 +0 3656 3812 +0 3689 3812 +0 3730 3812 +0 3780 3812 +0 3812 3784 +0 3812 3691 +0 3812 3529 +0 3812 3140 +0 3944 0 +0 4076 0 +2778 4095 0 +0 3538 3812 +0 3538 3812 +0 3539 3812 +0 3539 3812 +0 3539 3812 +0 3540 3812 +0 3540 3812 +0 3541 3812 +0 3542 3812 +0 3543 3812 +0 3544 3812 +0 3546 3812 +0 3548 3812 +0 3552 3812 +0 3556 3812 +0 3562 3812 +0 3569 3812 +0 3579 3812 +0 3591 3812 +0 3607 3812 +0 3629 3812 +0 3655 3812 +0 3689 3812 +0 3729 3812 +0 3779 3812 +0 3812 3784 +0 3812 3692 +0 3812 3530 +0 3812 3141 +0 3944 0 +0 4076 0 +2785 4095 0 +0 3537 3812 +0 3537 3812 +0 3537 3812 +0 3538 3812 +0 3538 3812 +0 3538 3812 +0 3539 3812 +0 3540 3812 +0 3540 3812 +0 3541 3812 +0 3543 3812 +0 3545 3812 +0 3547 3812 +0 3551 3812 +0 3555 3812 +0 3561 3812 +0 3568 3812 +0 3577 3812 +0 3590 3812 +0 3606 3812 +0 3628 3812 +0 3654 3812 +0 3688 3812 +0 3729 3812 +0 3778 3812 +0 3812 3784 +0 3812 3692 +0 3812 3530 +0 3812 3143 +0 3944 0 +0 4076 0 +2793 4095 0 +0 3535 3812 +0 3536 3812 +0 3536 3812 +0 3536 3812 +0 3536 3812 +0 3537 3812 +0 3537 3812 +0 3538 3812 +0 3538 3812 +0 3540 3812 +0 3541 3812 +0 3544 3812 +0 3546 3812 +0 3549 3812 +0 3553 3812 +0 3559 3812 +0 3566 3812 +0 3576 3812 +0 3589 3812 +0 3605 3812 +0 3626 3812 +0 3653 3812 +0 3687 3812 +0 3728 3812 +0 3777 3812 +0 3812 3785 +0 3812 3693 +0 3812 3531 +0 3812 3145 +0 3944 0 +0 4076 0 +2804 4095 0 +0 3533 3812 +0 3533 3812 +0 3533 3812 +0 3533 3812 +0 3534 3812 +0 3534 3812 +0 3534 3812 +0 3535 3812 +0 3536 3812 +0 3537 3812 +0 3539 3812 +0 3541 3812 +0 3544 3811 +0 3547 3811 +0 3552 3811 +0 3557 3811 +0 3564 3811 +0 3574 3811 +0 3587 3811 +0 3604 3811 +0 3625 3811 +0 3652 3811 +0 3685 3811 +0 3727 3811 +0 3777 3811 +0 3811 3785 +0 3811 3694 +0 3811 3532 +0 3811 3147 +0 3944 0 +0 4076 0 +2818 4095 0 +0 3530 3812 +0 3530 3812 +0 3530 3812 +0 3530 3812 +0 3530 3812 +0 3531 3812 +0 3531 3812 +0 3532 3812 +0 3533 3812 +0 3534 3812 +0 3536 3812 +0 3538 3812 +0 3541 3811 +0 3545 3811 +0 3549 3811 +0 3554 3811 +0 3562 3811 +0 3572 3811 +0 3585 3811 +0 3601 3811 +0 3622 3811 +0 3650 3811 +0 3683 3811 +0 3725 3811 +0 3775 3811 +0 3811 3786 +0 3811 3695 +0 3811 3534 +0 3811 3151 +0 3943 0 +0 4076 0 +2837 4095 0 +0 3525 3812 +0 3525 3812 +0 3525 3812 +0 3526 3812 +0 3526 3812 +0 3526 3812 +0 3527 3812 +0 3528 3812 +0 3528 3812 +0 3530 3812 +0 3531 3812 +0 3533 3812 +0 3536 3811 +0 3540 3811 +0 3545 3810 +0 3551 3810 +0 3559 3810 +0 3569 3810 +0 3582 3810 +0 3598 3810 +0 3620 3810 +0 3647 3810 +0 3680 3810 +0 3722 3810 +0 3773 3810 +0 3810 3787 +0 3810 3696 +0 3810 3536 +0 3810 3155 +0 3943 0 +0 4075 0 +2861 4095 0 +0 3519 3812 +0 3519 3812 +0 3519 3812 +0 3520 3812 +0 3520 3812 +0 3520 3812 +0 3521 3812 +0 3521 3812 +0 3522 3812 +0 3523 3812 +0 3525 3812 +0 3528 3812 +0 3530 3811 +0 3534 3811 +0 3540 3810 +0 3547 3810 +0 3554 3810 +0 3564 3810 +0 3577 3810 +0 3594 3810 +0 3616 3810 +0 3643 3810 +0 3677 3810 +0 3719 3810 +0 3770 3810 +0 3810 3789 +0 3810 3698 +0 3810 3538 +0 3810 3161 +0 3943 0 +0 4075 0 +2890 4095 0 +0 3511 3812 +0 3511 3812 +0 3511 3812 +0 3511 3812 +0 3511 3812 +0 3512 3812 +0 3513 3812 +0 3513 3812 +0 3514 3812 +0 3515 3812 +0 3517 3812 +0 3520 3812 +0 3522 3811 +0 3526 3811 +0 3532 3810 +0 3539 3810 +0 3548 3809 +0 3558 3809 +0 3571 3809 +0 3588 3809 +0 3610 3809 +0 3638 3809 +0 3672 3809 +0 3715 3809 +0 3766 3809 +0 3809 3791 +0 3809 3700 +0 3809 3542 +0 3809 3169 +0 3942 0 +0 4075 0 +2927 4095 0 +0 3499 3812 +0 3499 3812 +0 3500 3812 +0 3500 3812 +0 3500 3812 +0 3501 3812 +0 3501 3812 +0 3502 3812 +0 3503 3812 +0 3504 3812 +0 3506 3812 +0 3508 3812 +0 3511 3811 +0 3516 3811 +0 3521 3810 +0 3528 3810 +0 3537 3809 +0 3550 3808 +0 3563 3808 +0 3581 3808 +0 3603 3808 +0 3631 3808 +0 3666 3808 +0 3709 3808 +0 3761 3808 +0 3808 3794 +0 3808 3704 +0 3808 3546 +0 3808 3180 +0 3941 0 +0 4074 0 +2973 4095 0 +0 3484 3812 +0 3484 3812 +0 3484 3812 +0 3485 3812 +0 3485 3812 +0 3485 3812 +0 3486 3812 +0 3487 3812 +0 3488 3812 +0 3489 3812 +0 3491 3812 +0 3493 3812 +0 3496 3811 +0 3501 3811 +0 3506 3810 +0 3514 3810 +0 3523 3809 +0 3536 3808 +0 3552 3807 +0 3570 3807 +0 3593 3807 +0 3622 3807 +0 3657 3807 +0 3701 3807 +0 3754 3807 +0 3807 3797 +0 3807 3708 +0 3807 3552 +0 3807 3194 +0 3940 0 +0 4073 0 +3027 4095 0 +0 3462 3812 +0 3462 3812 +0 3463 3812 +0 3463 3812 +0 3463 3812 +0 3464 3812 +0 3464 3812 +0 3465 3812 +0 3466 3812 +0 3468 3812 +0 3469 3812 +0 3472 3812 +0 3475 3811 +0 3480 3811 +0 3486 3810 +0 3493 3810 +0 3503 3809 +0 3517 3808 +0 3534 3807 +0 3556 3805 +0 3579 3805 +0 3609 3805 +0 3646 3805 +0 3690 3805 +0 3744 3805 +0 3805 3802 +0 3805 3714 +0 3805 3561 +0 3805 3211 +0 3939 0 +0 4072 0 +3090 4095 0 +0 3432 3812 +0 3432 3812 +0 3432 3812 +0 3432 3812 +0 3433 3812 +0 3433 3812 +0 3434 3812 +0 3435 3812 +0 3436 3812 +0 3437 3812 +0 3439 3812 +0 3442 3812 +0 3446 3811 +0 3450 3811 +0 3457 3810 +0 3465 3810 +0 3475 3809 +0 3490 3808 +0 3508 3807 +0 3531 3805 +0 3560 3802 +0 3591 3802 +0 3629 3802 +0 3676 3802 +0 3731 3802 +0 3796 3802 +0 3802 3721 +0 3802 3571 +0 3802 3234 +0 3937 0 +0 4071 0 +3164 4095 0 +0 3387 3812 +0 3388 3812 +0 3388 3812 +0 3388 3812 +0 3388 3812 +0 3389 3812 +0 3390 3812 +0 3391 3812 +0 3392 3812 +0 3394 3812 +0 3396 3812 +0 3399 3812 +0 3403 3811 +0 3408 3811 +0 3415 3810 +0 3424 3810 +0 3435 3809 +0 3451 3808 +0 3470 3807 +0 3495 3805 +0 3527 3802 +0 3566 3799 +0 3606 3799 +0 3655 3799 +0 3713 3799 +0 3781 3799 +0 3799 3731 +0 3799 3585 +0 3799 3262 +0 3934 0 +0 4069 0 +3246 4095 0 +0 3320 3812 +0 3321 3812 +0 3321 3812 +0 3321 3812 +0 3322 3812 +0 3322 3812 +0 3323 3812 +0 3324 3812 +0 3326 3812 +0 3328 3812 +0 3330 3812 +0 3333 3812 +0 3338 3811 +0 3344 3811 +0 3352 3810 +0 3362 3810 +0 3376 3809 +0 3393 3808 +0 3415 3807 +0 3443 3805 +0 3479 3802 +0 3522 3799 +0 3574 3794 +0 3626 3794 +0 3687 3794 +0 3759 3794 +0 3794 3745 +0 3794 3603 +0 3794 3298 +0 3931 0 +1985 4066 0 +3337 4095 0 +0 3211 3812 +0 3212 3812 +0 3212 3812 +0 3213 3812 +0 3213 3812 +0 3214 3812 +0 3215 3812 +0 3216 3812 +0 3218 3812 +0 3221 3812 +0 3224 3812 +0 3228 3812 +0 3234 3811 +0 3241 3811 +0 3251 3810 +0 3264 3810 +0 3281 3809 +0 3302 3808 +0 3329 3807 +0 3363 3805 +0 3405 3802 +0 3455 3799 +0 3515 3794 +1799 3584 3788 +1799 3651 3788 +1799 3728 3788 +1799 3788 3761 +1799 3788 3626 +1799 3788 3342 +0 3926 2023 +2781 4063 0 +3436 4095 0 +0 3008 3812 +0 3009 3812 +0 3009 3812 +0 3010 3812 +0 3011 3812 +0 3012 3812 +0 3014 3812 +0 3016 3812 +0 3019 3812 +0 3023 3812 +0 3027 3812 +0 3034 3812 +0 3043 3811 +0 3054 3811 +0 3069 3810 +0 3088 3810 +0 3112 3809 +0 3143 3808 +0 3181 3807 +0 3227 3805 +0 3282 3802 +0 3347 3799 +0 3421 3794 +1799 3505 3788 +2721 3597 3780 +2721 3682 3780 +2721 3776 3780 +2721 3780 3655 +2721 3780 3394 +1928 3920 2556 +3119 4058 0 +3541 4095 0 +0 2367 3812 +0 2369 3812 +0 2371 3812 +0 2374 3812 +0 2377 3812 +0 2382 3812 +0 2389 3812 +0 2397 3812 +0 2408 3812 +0 2422 3812 +0 2441 3812 +0 2465 3812 +0 2494 3811 +0 2531 3811 +0 2576 3810 +0 2631 3810 +0 2694 3809 +0 2767 3808 +0 2850 3807 +0 2941 3805 +0 3040 3802 +0 3145 3799 +0 3256 3794 +1799 3372 3788 +2721 3492 3780 +3072 3614 3768 +3072 3721 3768 +3072 3768 3691 +3072 3768 3456 +2854 3912 2854 +3361 4052 2063 +3653 4095 0 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3811 +0 0 3811 +0 0 3810 +0 0 3810 +0 0 3809 +0 0 3808 +0 0 3807 +0 0 3805 +0 1737 3802 +0 2519 3799 +0 2856 3794 +1799 3097 3788 +2721 3296 3780 +3072 3473 3768 +3318 3636 3752 +3318 3752 3735 +3318 3752 3528 +3302 3900 3204 +3561 4044 2986 +3768 4095 2192 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3812 +0 0 3811 +0 0 3811 +0 0 3810 +0 0 3810 +0 0 3809 +0 0 3808 +0 0 3807 +0 0 3805 +0 0 3802 +0 0 3799 +1884 0 3794 +2422 1799 3788 +2721 2722 3780 +3072 3171 3768 +3318 3447 3752 +3520 3664 3730 +3520 3730 3609 +3579 3884 3450 +3737 4032 3336 +3888 4095 3118 +3137 0 3812 +3137 0 3812 +3137 0 3812 +3138 0 3812 +3138 0 3812 +3138 0 3812 +3139 0 3812 +3139 0 3812 +3140 0 3812 +3141 0 3812 +3143 0 3812 +3145 0 3812 +3147 0 3811 +3151 0 3811 +3155 0 3810 +3161 0 3810 +3169 0 3809 +3180 0 3808 +3194 0 3807 +3211 0 3805 +3234 0 3802 +3262 0 3799 +3298 0 3794 +3342 1799 3788 +3394 2721 3780 +3456 3072 3768 +3528 3318 3752 +3609 3520 3730 +3698 3698 3698 +3796 3862 3652 +3900 4016 3583 +4010 4095 3469 +3660 0 3944 +3660 0 3944 +3660 0 3944 +3660 0 3944 +3660 0 3944 +3660 0 3944 +3660 0 3944 +3660 0 3944 +3661 0 3944 +3661 0 3944 +3661 0 3944 +3662 0 3944 +3663 0 3944 +3664 0 3943 +3665 0 3943 +3667 0 3943 +3670 0 3942 +3674 0 3941 +3678 0 3940 +3685 0 3939 +3692 0 3937 +3703 0 3934 +3717 0 3931 +3735 0 3926 +3758 1928 3920 +3787 2854 3912 +3822 3204 3900 +3867 3450 3884 +3862 3652 3796 +3862 3741 3652 +4016 3999 3583 +4095 4095 3469 +3954 0 4076 +3954 0 4076 +3954 0 4076 +3954 0 4076 +3955 0 4076 +3955 0 4076 +3955 0 4076 +3955 0 4076 +3955 0 4076 +3955 0 4076 +3955 0 4076 +3956 0 4076 +3956 0 4076 +3957 0 4076 +3958 0 4075 +3959 0 4075 +3960 0 4075 +3962 0 4074 +3964 0 4073 +3968 0 4072 +3972 0 4071 +3978 0 4069 +3985 0 4066 +3995 0 4063 +4008 0 4058 +4025 2063 4052 +4044 2986 4040 +4032 3336 3986 +4016 3583 3900 +4016 3583 3711 +4016 3792 3583 +4095 4087 3469 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2192 4095 +4095 3118 4079 +4095 3469 4010 +4095 3469 3869 +4095 3469 3568 +4095 3853 3469 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3675 3944 +0 3675 3944 +0 3675 3944 +0 3676 3944 +0 3676 3944 +0 3677 3944 +0 3678 3944 +0 3679 3944 +0 3681 3944 +0 3683 3944 +0 3687 3944 +0 3691 3944 +0 3696 3944 +0 3704 3944 +0 3713 3944 +0 3726 3944 +0 3742 3944 +0 3763 3944 +0 3790 3944 +0 3823 3944 +0 3864 3944 +0 3913 3944 +0 3944 3915 +0 3944 3822 +0 3944 3660 +0 3944 3269 +0 4076 0 +0 4095 0 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3675 3944 +0 3675 3944 +0 3675 3944 +0 3676 3944 +0 3676 3944 +0 3677 3944 +0 3678 3944 +0 3679 3944 +0 3681 3944 +0 3683 3944 +0 3687 3944 +0 3691 3944 +0 3696 3944 +0 3704 3944 +0 3713 3944 +0 3726 3944 +0 3742 3944 +0 3763 3944 +0 3790 3944 +0 3823 3944 +0 3864 3944 +0 3913 3944 +0 3944 3915 +0 3944 3822 +0 3944 3660 +0 3944 3269 +0 4076 0 +0 4095 0 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3675 3944 +0 3675 3944 +0 3675 3944 +0 3676 3944 +0 3676 3944 +0 3677 3944 +0 3678 3944 +0 3679 3944 +0 3681 3944 +0 3683 3944 +0 3687 3944 +0 3691 3944 +0 3696 3944 +0 3704 3944 +0 3713 3944 +0 3726 3944 +0 3742 3944 +0 3763 3944 +0 3790 3944 +0 3823 3944 +0 3863 3944 +0 3913 3944 +0 3944 3915 +0 3944 3822 +0 3944 3660 +0 3944 3269 +0 4076 0 +0 4095 0 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3675 3944 +0 3675 3944 +0 3676 3944 +0 3676 3944 +0 3677 3944 +0 3678 3944 +0 3679 3944 +0 3681 3944 +0 3683 3944 +0 3686 3944 +0 3691 3944 +0 3696 3944 +0 3703 3944 +0 3713 3944 +0 3726 3944 +0 3742 3944 +0 3763 3944 +0 3790 3944 +0 3822 3944 +0 3863 3944 +0 3913 3944 +0 3944 3915 +0 3944 3823 +0 3944 3660 +0 3944 3269 +0 4076 0 +0 4095 0 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3675 3944 +0 3675 3944 +0 3676 3944 +0 3677 3944 +0 3678 3944 +0 3679 3944 +0 3681 3944 +0 3683 3944 +0 3686 3944 +0 3691 3944 +0 3696 3944 +0 3703 3944 +0 3713 3944 +0 3726 3944 +0 3742 3944 +0 3763 3944 +0 3789 3944 +0 3822 3944 +0 3863 3944 +0 3913 3944 +0 3944 3915 +0 3944 3823 +0 3944 3660 +0 3944 3270 +0 4076 0 +0 4095 0 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3675 3944 +0 3675 3944 +0 3676 3944 +0 3676 3944 +0 3677 3944 +0 3679 3944 +0 3681 3944 +0 3683 3944 +0 3686 3944 +0 3690 3944 +0 3696 3944 +0 3703 3944 +0 3713 3944 +0 3725 3944 +0 3742 3944 +0 3763 3944 +0 3789 3944 +0 3822 3944 +0 3863 3944 +0 3913 3944 +0 3944 3915 +0 3944 3823 +0 3944 3660 +0 3944 3270 +0 4076 0 +0 4095 0 +0 3673 3944 +0 3673 3944 +0 3673 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3675 3944 +0 3676 3944 +0 3676 3944 +0 3677 3944 +0 3679 3944 +0 3680 3944 +0 3683 3944 +0 3686 3944 +0 3690 3944 +0 3696 3944 +0 3703 3944 +0 3713 3944 +0 3725 3944 +0 3741 3944 +0 3762 3944 +0 3789 3944 +0 3822 3944 +0 3863 3944 +0 3913 3944 +0 3944 3915 +0 3944 3823 +0 3944 3660 +0 3944 3270 +0 4076 0 +0 4095 0 +0 3673 3944 +0 3673 3944 +0 3673 3944 +0 3673 3944 +0 3673 3944 +0 3674 3944 +0 3674 3944 +0 3674 3944 +0 3675 3944 +0 3676 3944 +0 3677 3944 +0 3678 3944 +0 3680 3944 +0 3682 3944 +0 3686 3944 +0 3690 3944 +0 3695 3944 +0 3703 3944 +0 3712 3944 +0 3725 3944 +0 3741 3944 +0 3762 3944 +0 3789 3944 +0 3822 3944 +0 3863 3944 +0 3912 3944 +0 3944 3915 +0 3944 3823 +0 3944 3660 +0 3944 3271 +0 4076 0 +0 4095 0 +0 3672 3944 +0 3672 3944 +0 3673 3944 +0 3673 3944 +0 3673 3944 +0 3673 3944 +0 3673 3944 +0 3674 3944 +0 3675 3944 +0 3675 3944 +0 3676 3944 +0 3678 3944 +0 3680 3944 +0 3682 3944 +0 3685 3944 +0 3689 3944 +0 3695 3944 +0 3702 3944 +0 3712 3944 +0 3725 3944 +0 3741 3944 +0 3762 3944 +0 3788 3944 +0 3822 3944 +0 3863 3944 +0 3912 3944 +0 3944 3915 +0 3944 3823 +0 3944 3661 +0 3944 3271 +0 4076 0 +0 4095 0 +0 3671 3944 +0 3671 3944 +0 3672 3944 +0 3672 3944 +0 3672 3944 +0 3672 3944 +0 3673 3944 +0 3673 3944 +0 3674 3944 +0 3675 3944 +0 3676 3944 +0 3677 3944 +0 3679 3944 +0 3681 3944 +0 3685 3944 +0 3689 3944 +0 3694 3944 +0 3702 3944 +0 3711 3944 +0 3724 3944 +0 3740 3944 +0 3761 3944 +0 3788 3944 +0 3821 3944 +0 3862 3944 +0 3912 3944 +0 3944 3916 +0 3944 3824 +0 3944 3661 +0 3944 3272 +0 4076 0 +0 4095 0 +0 3670 3944 +0 3671 3944 +0 3671 3944 +0 3671 3944 +0 3671 3944 +0 3671 3944 +0 3672 3944 +0 3672 3944 +0 3673 3944 +0 3674 3944 +0 3675 3944 +0 3676 3944 +0 3678 3944 +0 3680 3944 +0 3684 3944 +0 3688 3944 +0 3694 3944 +0 3701 3944 +0 3711 3944 +0 3723 3944 +0 3740 3944 +0 3761 3944 +0 3787 3944 +0 3820 3944 +0 3862 3944 +0 3911 3944 +0 3944 3916 +0 3944 3824 +0 3944 3661 +0 3944 3273 +0 4076 0 +0 4095 0 +0 3669 3944 +0 3669 3944 +0 3669 3944 +0 3669 3944 +0 3670 3944 +0 3670 3944 +0 3670 3944 +0 3671 3944 +0 3671 3944 +0 3673 3944 +0 3674 3944 +0 3675 3944 +0 3677 3944 +0 3679 3944 +0 3683 3944 +0 3687 3944 +0 3692 3944 +0 3700 3944 +0 3710 3944 +0 3722 3944 +0 3739 3944 +0 3760 3944 +0 3786 3944 +0 3820 3944 +0 3861 3944 +0 3910 3944 +0 3944 3916 +0 3944 3824 +0 3944 3662 +0 3944 3275 +0 4076 0 +0 4095 0 +0 3667 3944 +0 3667 3944 +0 3668 3944 +0 3668 3944 +0 3668 3944 +0 3668 3944 +0 3668 3944 +0 3669 3944 +0 3670 3944 +0 3671 3944 +0 3672 3944 +0 3673 3944 +0 3676 3944 +0 3678 3944 +0 3681 3944 +0 3685 3944 +0 3691 3944 +0 3699 3944 +0 3708 3944 +0 3721 3944 +0 3737 3944 +0 3758 3944 +0 3785 3944 +0 3819 3944 +0 3860 3944 +0 3910 3944 +0 3944 3917 +0 3944 3825 +0 3944 3663 +0 3944 3277 +0 4076 0 +0 4095 0 +0 3665 3944 +0 3665 3944 +0 3665 3944 +0 3665 3944 +0 3665 3944 +0 3666 3944 +0 3666 3944 +0 3666 3944 +0 3667 3944 +0 3668 3944 +0 3669 3944 +0 3671 3944 +0 3673 3944 +0 3676 3943 +0 3679 3943 +0 3683 3943 +0 3689 3943 +0 3697 3943 +0 3706 3943 +0 3719 3943 +0 3736 3943 +0 3757 3943 +0 3784 3943 +0 3817 3943 +0 3859 3943 +0 3909 3943 +0 3943 3917 +0 3943 3826 +0 3943 3664 +0 3943 3279 +0 4076 0 +0 4095 0 +0 3661 3944 +0 3662 3944 +0 3662 3944 +0 3662 3944 +0 3662 3944 +0 3662 3944 +0 3663 3944 +0 3663 3944 +0 3664 3944 +0 3665 3944 +0 3666 3944 +0 3668 3944 +0 3670 3944 +0 3673 3943 +0 3677 3943 +0 3681 3943 +0 3687 3943 +0 3694 3943 +0 3704 3943 +0 3717 3943 +0 3733 3943 +0 3755 3943 +0 3781 3943 +0 3815 3943 +0 3857 3943 +0 3907 3943 +0 3943 3918 +0 3943 3827 +0 3943 3665 +0 3943 3283 +0 4075 0 +0 4095 0 +0 3657 3944 +0 3657 3944 +0 3657 3944 +0 3657 3944 +0 3658 3944 +0 3658 3944 +0 3658 3944 +0 3659 3944 +0 3659 3944 +0 3661 3944 +0 3662 3944 +0 3663 3944 +0 3666 3944 +0 3668 3943 +0 3672 3943 +0 3677 3943 +0 3683 3943 +0 3691 3943 +0 3701 3943 +0 3713 3943 +0 3730 3943 +0 3752 3943 +0 3779 3943 +0 3813 3943 +0 3854 3943 +0 3905 3943 +0 3943 3920 +0 3943 3828 +0 3943 3667 +0 3943 3287 +0 4075 0 +0 4095 0 +0 3651 3944 +0 3651 3944 +0 3651 3944 +0 3651 3944 +0 3652 3944 +0 3652 3944 +0 3652 3944 +0 3653 3944 +0 3653 3944 +0 3654 3944 +0 3656 3944 +0 3657 3944 +0 3659 3944 +0 3662 3943 +0 3666 3943 +0 3672 3943 +0 3679 3942 +0 3686 3942 +0 3696 3942 +0 3709 3942 +0 3726 3942 +0 3748 3942 +0 3775 3942 +0 3809 3942 +0 3851 3942 +0 3902 3942 +0 3942 3921 +0 3942 3830 +0 3942 3670 +0 3942 3293 +0 4075 0 +0 4095 0 +0 3643 3944 +0 3643 3944 +0 3643 3944 +0 3643 3944 +0 3643 3944 +0 3644 3944 +0 3644 3944 +0 3645 3944 +0 3645 3944 +0 3646 3944 +0 3648 3944 +0 3649 3944 +0 3651 3944 +0 3655 3943 +0 3659 3943 +0 3664 3943 +0 3671 3942 +0 3680 3941 +0 3690 3941 +0 3703 3941 +0 3720 3941 +0 3742 3941 +0 3770 3941 +0 3805 3941 +0 3847 3941 +0 3898 3941 +0 3941 3923 +0 3941 3832 +0 3941 3674 +0 3941 3302 +0 4074 0 +0 4095 0 +0 3631 3944 +0 3632 3944 +0 3632 3944 +0 3632 3944 +0 3632 3944 +0 3632 3944 +0 3633 3944 +0 3633 3944 +0 3634 3944 +0 3635 3944 +0 3636 3944 +0 3638 3944 +0 3640 3944 +0 3644 3943 +0 3648 3943 +0 3653 3943 +0 3660 3942 +0 3669 3941 +0 3682 3940 +0 3695 3940 +0 3713 3940 +0 3735 3940 +0 3763 3940 +0 3798 3940 +0 3841 3940 +0 3893 3940 +0 3940 3926 +0 3940 3836 +0 3940 3678 +0 3940 3312 +0 4073 0 +0 4095 0 +0 3616 3944 +0 3616 3944 +0 3616 3944 +0 3616 3944 +0 3617 3944 +0 3617 3944 +0 3617 3944 +0 3618 3944 +0 3619 3944 +0 3620 3944 +0 3621 3944 +0 3623 3944 +0 3625 3944 +0 3628 3943 +0 3632 3943 +0 3638 3943 +0 3646 3942 +0 3655 3941 +0 3668 3940 +0 3684 3939 +0 3702 3939 +0 3725 3939 +0 3754 3939 +0 3790 3939 +0 3833 3939 +0 3886 3939 +0 3939 3929 +0 3939 3840 +0 3939 3685 +0 3939 3326 +0 4072 0 +0 4095 0 +0 3594 3944 +0 3595 3944 +0 3595 3944 +0 3595 3944 +0 3595 3944 +0 3595 3944 +0 3596 3944 +0 3596 3944 +0 3597 3944 +0 3598 3944 +0 3600 3944 +0 3602 3944 +0 3604 3944 +0 3607 3943 +0 3612 3943 +0 3618 3943 +0 3626 3942 +0 3635 3941 +0 3649 3940 +0 3666 3939 +0 3688 3937 +0 3711 3937 +0 3741 3937 +0 3777 3937 +0 3822 3937 +0 3876 3937 +0 3937 3934 +0 3937 3846 +0 3937 3692 +0 3937 3344 +0 4071 0 +0 4095 0 +0 3564 3944 +0 3564 3944 +0 3564 3944 +0 3564 3944 +0 3564 3944 +0 3565 3944 +0 3565 3944 +0 3566 3944 +0 3567 3944 +0 3568 3944 +0 3569 3944 +0 3571 3944 +0 3574 3944 +0 3578 3943 +0 3583 3943 +0 3589 3943 +0 3597 3942 +0 3608 3941 +0 3622 3940 +0 3640 3939 +0 3663 3937 +0 3692 3934 +0 3723 3934 +0 3761 3934 +0 3808 3934 +0 3863 3934 +0 3928 3934 +0 3934 3853 +0 3934 3703 +0 3934 3366 +0 4069 0 +0 4095 0 +0 3520 3944 +0 3520 3944 +0 3520 3944 +0 3520 3944 +0 3520 3944 +0 3521 3944 +0 3521 3944 +0 3522 3944 +0 3523 3944 +0 3524 3944 +0 3526 3944 +0 3528 3944 +0 3531 3944 +0 3535 3943 +0 3540 3943 +0 3547 3943 +0 3556 3942 +0 3568 3941 +0 3583 3940 +0 3603 3939 +0 3628 3937 +0 3659 3934 +0 3698 3931 +0 3738 3931 +0 3787 3931 +0 3845 3931 +0 3913 3931 +0 3931 3863 +0 3931 3717 +0 3931 3395 +0 4066 0 +0 4095 0 +0 3452 3944 +0 3452 3944 +0 3453 3944 +0 3453 3944 +0 3453 3944 +0 3454 3944 +0 3454 3944 +0 3455 3944 +0 3456 3944 +0 3458 3944 +0 3459 3944 +0 3462 3944 +0 3466 3944 +0 3470 3943 +0 3476 3943 +0 3484 3943 +0 3494 3942 +0 3507 3941 +0 3525 3940 +0 3547 3939 +0 3575 3937 +0 3611 3934 +0 3654 3931 +0 3706 3926 +0 3758 3926 +0 3820 3926 +0 3891 3926 +0 3926 3877 +0 3926 3735 +0 3926 3430 +0 4063 0 +2137 4095 0 +0 3344 3944 +0 3344 3944 +0 3344 3944 +0 3344 3944 +0 3345 3944 +0 3346 3944 +0 3346 3944 +0 3347 3944 +0 3349 3944 +0 3351 3944 +0 3353 3944 +0 3356 3944 +0 3361 3944 +0 3366 3943 +0 3374 3943 +0 3384 3943 +0 3396 3942 +0 3413 3941 +0 3434 3940 +0 3461 3939 +0 3495 3937 +0 3537 3934 +0 3587 3931 +0 3647 3926 +1928 3716 3920 +1928 3783 3920 +1928 3860 3920 +1928 3920 3893 +1928 3920 3758 +1928 3920 3474 +0 4058 2157 +2915 4095 0 +0 3140 3944 +0 3140 3944 +0 3140 3944 +0 3141 3944 +0 3142 3944 +0 3143 3944 +0 3144 3944 +0 3145 3944 +0 3147 3944 +0 3151 3944 +0 3154 3944 +0 3159 3944 +0 3166 3944 +0 3175 3943 +0 3186 3943 +0 3201 3943 +0 3220 3942 +0 3244 3941 +0 3275 3940 +0 3313 3939 +0 3359 3937 +0 3414 3934 +0 3479 3931 +0 3553 3926 +1928 3637 3920 +2854 3729 3912 +2854 3814 3912 +2854 3908 3912 +2854 3912 3787 +2854 3912 3526 +2063 4052 2689 +3253 4095 0 +0 2497 3944 +0 2498 3944 +0 2500 3944 +0 2502 3944 +0 2505 3944 +0 2508 3944 +0 2513 3944 +0 2520 3944 +0 2528 3944 +0 2539 3944 +0 2553 3944 +0 2572 3944 +0 2596 3944 +0 2625 3943 +0 2662 3943 +0 2708 3943 +0 2762 3942 +0 2826 3941 +0 2899 3940 +0 2982 3939 +0 3073 3937 +0 3172 3934 +0 3277 3931 +0 3388 3926 +1928 3504 3920 +2854 3624 3912 +3204 3746 3900 +3204 3853 3900 +3204 3900 3822 +3204 3900 3588 +2987 4044 2986 +3494 4095 2192 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3943 +0 0 3943 +0 0 3943 +0 0 3942 +0 0 3941 +0 0 3940 +0 0 3939 +0 0 3937 +0 1863 3934 +0 2650 3931 +0 2988 3926 +1928 3229 3920 +2854 3428 3912 +3204 3605 3900 +3450 3768 3884 +3450 3884 3867 +3450 3884 3660 +3435 4032 3336 +3693 4095 3118 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3944 +0 0 3943 +0 0 3943 +0 0 3943 +0 0 3942 +0 0 3941 +0 0 3940 +0 0 3939 +0 0 3937 +0 0 3934 +0 0 3931 +2023 0 3926 +2556 1928 3920 +2854 2854 3912 +3204 3302 3900 +3450 3579 3884 +3652 3796 3862 +3652 3862 3741 +3711 4016 3583 +3869 4095 3469 +3269 0 3944 +3269 0 3944 +3269 0 3944 +3269 0 3944 +3270 0 3944 +3270 0 3944 +3270 0 3944 +3271 0 3944 +3271 0 3944 +3272 0 3944 +3273 0 3944 +3275 0 3944 +3277 0 3944 +3279 0 3943 +3283 0 3943 +3287 0 3943 +3293 0 3942 +3302 0 3941 +3312 0 3940 +3326 0 3939 +3344 0 3937 +3366 0 3934 +3395 0 3931 +3430 0 3926 +3474 1928 3920 +3526 2854 3912 +3588 3204 3900 +3660 3450 3884 +3741 3652 3862 +3830 3830 3830 +3928 3994 3784 +4032 4095 3714 +3791 0 4076 +3792 0 4076 +3792 0 4076 +3792 0 4076 +3792 0 4076 +3792 0 4076 +3792 0 4076 +3792 0 4076 +3792 0 4076 +3793 0 4076 +3793 0 4076 +3793 0 4076 +3794 0 4076 +3795 0 4076 +3796 0 4075 +3797 0 4075 +3799 0 4075 +3802 0 4074 +3805 0 4073 +3810 0 4072 +3816 0 4071 +3824 0 4069 +3835 0 4066 +3849 0 4063 +3867 0 4058 +3890 2063 4052 +3919 2986 4044 +3955 3336 4032 +3999 3583 4016 +3994 3784 3928 +3994 3873 3784 +4095 4095 3714 +4087 0 4095 +4087 0 4095 +4087 0 4095 +4087 0 4095 +4087 0 4095 +4087 0 4095 +4087 0 4095 +4087 0 4095 +4087 0 4095 +4088 0 4095 +4088 0 4095 +4088 0 4095 +4088 0 4095 +4089 0 4095 +4089 0 4095 +4090 0 4095 +4091 0 4095 +4092 0 4095 +4094 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 0 4095 +4095 2192 4095 +4095 3118 4095 +4095 3469 4095 +4095 3714 4032 +4095 3714 3844 +4095 3924 3714 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3807 4076 +0 3807 4076 +0 3807 4076 +0 3808 4076 +0 3808 4076 +0 3808 4076 +0 3809 4076 +0 3810 4076 +0 3812 4076 +0 3813 4076 +0 3816 4076 +0 3819 4076 +0 3823 4076 +0 3828 4076 +0 3836 4076 +0 3846 4076 +0 3858 4076 +0 3874 4076 +0 3895 4076 +0 3922 4076 +0 3955 4076 +0 3996 4076 +0 4045 4076 +0 4076 4047 +0 4076 3954 +0 4076 3791 +0 4076 3401 +0 4095 0 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3807 4076 +0 3807 4076 +0 3807 4076 +0 3807 4076 +0 3808 4076 +0 3808 4076 +0 3809 4076 +0 3810 4076 +0 3811 4076 +0 3813 4076 +0 3816 4076 +0 3819 4076 +0 3823 4076 +0 3828 4076 +0 3836 4076 +0 3845 4076 +0 3858 4076 +0 3874 4076 +0 3895 4076 +0 3922 4076 +0 3955 4076 +0 3996 4076 +0 4045 4076 +0 4076 4047 +0 4076 3954 +0 4076 3792 +0 4076 3401 +0 4095 0 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3807 4076 +0 3807 4076 +0 3807 4076 +0 3807 4076 +0 3808 4076 +0 3808 4076 +0 3809 4076 +0 3810 4076 +0 3811 4076 +0 3813 4076 +0 3816 4076 +0 3819 4076 +0 3823 4076 +0 3828 4076 +0 3836 4076 +0 3845 4076 +0 3858 4076 +0 3874 4076 +0 3895 4076 +0 3921 4076 +0 3955 4076 +0 3996 4076 +0 4045 4076 +0 4076 4047 +0 4076 3954 +0 4076 3792 +0 4076 3401 +0 4095 0 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3807 4076 +0 3807 4076 +0 3807 4076 +0 3808 4076 +0 3808 4076 +0 3809 4076 +0 3810 4076 +0 3811 4076 +0 3813 4076 +0 3815 4076 +0 3818 4076 +0 3823 4076 +0 3828 4076 +0 3836 4076 +0 3845 4076 +0 3858 4076 +0 3874 4076 +0 3895 4076 +0 3921 4076 +0 3955 4076 +0 3995 4076 +0 4045 4076 +0 4076 4047 +0 4076 3954 +0 4076 3792 +0 4076 3401 +0 4095 0 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3807 4076 +0 3807 4076 +0 3807 4076 +0 3808 4076 +0 3808 4076 +0 3809 4076 +0 3810 4076 +0 3811 4076 +0 3813 4076 +0 3815 4076 +0 3818 4076 +0 3823 4076 +0 3828 4076 +0 3836 4076 +0 3845 4076 +0 3858 4076 +0 3874 4076 +0 3895 4076 +0 3921 4076 +0 3955 4076 +0 3995 4076 +0 4045 4076 +0 4076 4047 +0 4076 3955 +0 4076 3792 +0 4076 3401 +0 4095 0 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3807 4076 +0 3807 4076 +0 3808 4076 +0 3808 4076 +0 3809 4076 +0 3810 4076 +0 3811 4076 +0 3813 4076 +0 3815 4076 +0 3818 4076 +0 3822 4076 +0 3828 4076 +0 3835 4076 +0 3845 4076 +0 3858 4076 +0 3874 4076 +0 3895 4076 +0 3921 4076 +0 3954 4076 +0 3995 4076 +0 4045 4076 +0 4076 4047 +0 4076 3955 +0 4076 3792 +0 4076 3402 +0 4095 0 +0 3805 4076 +0 3805 4076 +0 3805 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3807 4076 +0 3807 4076 +0 3808 4076 +0 3808 4076 +0 3810 4076 +0 3811 4076 +0 3812 4076 +0 3815 4076 +0 3818 4076 +0 3822 4076 +0 3828 4076 +0 3835 4076 +0 3845 4076 +0 3858 4076 +0 3874 4076 +0 3895 4076 +0 3921 4076 +0 3954 4076 +0 3995 4076 +0 4045 4076 +0 4076 4047 +0 4076 3955 +0 4076 3792 +0 4076 3402 +0 4095 0 +0 3805 4076 +0 3805 4076 +0 3805 4076 +0 3805 4076 +0 3805 4076 +0 3806 4076 +0 3806 4076 +0 3806 4076 +0 3807 4076 +0 3808 4076 +0 3808 4076 +0 3809 4076 +0 3810 4076 +0 3812 4076 +0 3815 4076 +0 3818 4076 +0 3822 4076 +0 3828 4076 +0 3835 4076 +0 3845 4076 +0 3857 4076 +0 3873 4076 +0 3895 4076 +0 3921 4076 +0 3954 4076 +0 3995 4076 +0 4045 4076 +0 4076 4047 +0 4076 3955 +0 4076 3792 +0 4076 3402 +0 4095 0 +0 3805 4076 +0 3805 4076 +0 3805 4076 +0 3805 4076 +0 3805 4076 +0 3805 4076 +0 3805 4076 +0 3806 4076 +0 3807 4076 +0 3807 4076 +0 3808 4076 +0 3809 4076 +0 3810 4076 +0 3812 4076 +0 3814 4076 +0 3818 4076 +0 3822 4076 +0 3827 4076 +0 3835 4076 +0 3845 4076 +0 3857 4076 +0 3873 4076 +0 3894 4076 +0 3921 4076 +0 3954 4076 +0 3995 4076 +0 4044 4076 +0 4076 4047 +0 4076 3955 +0 4076 3792 +0 4076 3403 +0 4095 0 +0 3804 4076 +0 3804 4076 +0 3804 4076 +0 3805 4076 +0 3805 4076 +0 3805 4076 +0 3805 4076 +0 3805 4076 +0 3806 4076 +0 3807 4076 +0 3808 4076 +0 3808 4076 +0 3810 4076 +0 3812 4076 +0 3814 4076 +0 3817 4076 +0 3821 4076 +0 3827 4076 +0 3834 4076 +0 3844 4076 +0 3856 4076 +0 3873 4076 +0 3894 4076 +0 3921 4076 +0 3953 4076 +0 3995 4076 +0 4044 4076 +0 4076 4047 +0 4076 3955 +0 4076 3793 +0 4076 3403 +0 4095 0 +0 3803 4076 +0 3803 4076 +0 3803 4076 +0 3804 4076 +0 3804 4076 +0 3804 4076 +0 3804 4076 +0 3805 4076 +0 3805 4076 +0 3806 4076 +0 3807 4076 +0 3808 4076 +0 3809 4076 +0 3811 4076 +0 3813 4076 +0 3816 4076 +0 3821 4076 +0 3826 4076 +0 3834 4076 +0 3843 4076 +0 3856 4076 +0 3872 4076 +0 3893 4076 +0 3920 4076 +0 3953 4076 +0 3994 4076 +0 4044 4076 +0 4076 4048 +0 4076 3955 +0 4076 3793 +0 4076 3404 +0 4095 0 +0 3803 4076 +0 3803 4076 +0 3803 4076 +0 3803 4076 +0 3803 4076 +0 3803 4076 +0 3803 4076 +0 3804 4076 +0 3804 4076 +0 3805 4076 +0 3806 4076 +0 3807 4076 +0 3808 4076 +0 3810 4076 +0 3812 4076 +0 3816 4076 +0 3820 4076 +0 3826 4076 +0 3833 4076 +0 3843 4076 +0 3855 4076 +0 3872 4076 +0 3892 4076 +0 3919 4076 +0 3953 4076 +0 3994 4076 +0 4043 4076 +0 4076 4048 +0 4076 3956 +0 4076 3793 +0 4076 3405 +0 4095 0 +0 3801 4076 +0 3801 4076 +0 3801 4076 +0 3801 4076 +0 3801 4076 +0 3802 4076 +0 3802 4076 +0 3802 4076 +0 3803 4076 +0 3803 4076 +0 3804 4076 +0 3805 4076 +0 3807 4076 +0 3809 4076 +0 3812 4076 +0 3814 4076 +0 3819 4076 +0 3824 4076 +0 3832 4076 +0 3841 4076 +0 3854 4076 +0 3871 4076 +0 3891 4076 +0 3918 4076 +0 3952 4076 +0 3993 4076 +0 4043 4076 +0 4076 4048 +0 4076 3956 +0 4076 3794 +0 4076 3407 +0 4095 0 +0 3799 4076 +0 3799 4076 +0 3799 4076 +0 3799 4076 +0 3800 4076 +0 3800 4076 +0 3800 4076 +0 3801 4076 +0 3801 4076 +0 3802 4076 +0 3803 4076 +0 3804 4076 +0 3805 4076 +0 3808 4076 +0 3810 4076 +0 3813 4076 +0 3817 4076 +0 3823 4076 +0 3830 4076 +0 3840 4076 +0 3853 4076 +0 3869 4076 +0 3890 4076 +0 3917 4076 +0 3950 4076 +0 3992 4076 +0 4042 4076 +0 4076 4049 +0 4076 3957 +0 4076 3795 +0 4076 3409 +0 4095 0 +0 3797 4076 +0 3797 4076 +0 3797 4076 +0 3797 4076 +0 3797 4076 +0 3797 4076 +0 3798 4076 +0 3798 4076 +0 3798 4076 +0 3799 4076 +0 3800 4076 +0 3801 4076 +0 3803 4076 +0 3805 4076 +0 3808 4075 +0 3811 4075 +0 3816 4075 +0 3821 4075 +0 3829 4075 +0 3838 4075 +0 3851 4075 +0 3868 4075 +0 3889 4075 +0 3916 4075 +0 3949 4075 +0 3991 4075 +0 4041 4075 +0 4075 4049 +0 4075 3958 +0 4075 3796 +0 4075 3411 +0 4095 0 +0 3793 4076 +0 3793 4076 +0 3793 4076 +0 3794 4076 +0 3794 4076 +0 3794 4076 +0 3794 4076 +0 3795 4076 +0 3795 4076 +0 3796 4076 +0 3797 4076 +0 3798 4076 +0 3800 4076 +0 3802 4076 +0 3805 4075 +0 3809 4075 +0 3813 4075 +0 3818 4075 +0 3826 4075 +0 3836 4075 +0 3849 4075 +0 3865 4075 +0 3887 4075 +0 3913 4075 +0 3947 4075 +0 3989 4075 +0 4039 4075 +0 4075 4050 +0 4075 3959 +0 4075 3797 +0 4075 3415 +0 4095 0 +0 3789 4076 +0 3789 4076 +0 3789 4076 +0 3789 4076 +0 3790 4076 +0 3790 4076 +0 3790 4076 +0 3790 4076 +0 3791 4076 +0 3791 4076 +0 3793 4076 +0 3794 4076 +0 3795 4076 +0 3798 4076 +0 3801 4075 +0 3804 4075 +0 3810 4075 +0 3815 4075 +0 3823 4075 +0 3833 4075 +0 3846 4075 +0 3862 4075 +0 3884 4075 +0 3911 4075 +0 3945 4075 +0 3986 4075 +0 4037 4075 +0 4075 4051 +0 4075 3960 +0 4075 3799 +0 4075 3419 +0 4095 0 +0 3783 4076 +0 3783 4076 +0 3783 4076 +0 3783 4076 +0 3783 4076 +0 3784 4076 +0 3784 4076 +0 3784 4076 +0 3785 4076 +0 3785 4076 +0 3787 4076 +0 3787 4076 +0 3789 4076 +0 3792 4076 +0 3795 4075 +0 3798 4075 +0 3803 4075 +0 3810 4074 +0 3818 4074 +0 3828 4074 +0 3841 4074 +0 3858 4074 +0 3880 4074 +0 3907 4074 +0 3941 4074 +0 3983 4074 +0 4034 4074 +0 4074 4053 +0 4074 3962 +0 4074 3802 +0 4074 3426 +0 4095 0 +0 3774 4076 +0 3775 4076 +0 3775 4076 +0 3775 4076 +0 3775 4076 +0 3775 4076 +0 3776 4076 +0 3776 4076 +0 3777 4076 +0 3777 4076 +0 3778 4076 +0 3780 4076 +0 3781 4076 +0 3784 4076 +0 3787 4075 +0 3790 4075 +0 3796 4075 +0 3803 4074 +0 3812 4073 +0 3822 4073 +0 3835 4073 +0 3852 4073 +0 3874 4073 +0 3902 4073 +0 3937 4073 +0 3979 4073 +0 4030 4073 +0 4073 4055 +0 4073 3964 +0 4073 3805 +0 4073 3434 +0 4095 0 +0 3763 4076 +0 3763 4076 +0 3763 4076 +0 3764 4076 +0 3764 4076 +0 3764 4076 +0 3764 4076 +0 3765 4076 +0 3765 4076 +0 3766 4076 +0 3767 4076 +0 3768 4076 +0 3770 4076 +0 3773 4076 +0 3776 4075 +0 3780 4075 +0 3785 4075 +0 3792 4074 +0 3801 4073 +0 3814 4072 +0 3827 4072 +0 3845 4072 +0 3867 4072 +0 3895 4072 +0 3930 4072 +0 3973 4072 +0 4025 4072 +0 4072 4058 +0 4072 3968 +0 4072 3810 +0 4072 3444 +0 4095 0 +0 3748 4076 +0 3748 4076 +0 3748 4076 +0 3748 4076 +0 3748 4076 +0 3749 4076 +0 3749 4076 +0 3749 4076 +0 3750 4076 +0 3751 4076 +0 3752 4076 +0 3753 4076 +0 3755 4076 +0 3757 4076 +0 3760 4075 +0 3765 4075 +0 3770 4075 +0 3777 4074 +0 3787 4073 +0 3800 4072 +0 3816 4071 +0 3834 4071 +0 3857 4071 +0 3886 4071 +0 3921 4071 +0 3965 4071 +0 4018 4071 +0 4071 4061 +0 4071 3972 +0 4071 3816 +0 4071 3458 +0 4095 0 +0 3726 4076 +0 3726 4076 +0 3726 4076 +0 3727 4076 +0 3727 4076 +0 3727 4076 +0 3727 4076 +0 3728 4076 +0 3728 4076 +0 3729 4076 +0 3730 4076 +0 3732 4076 +0 3734 4076 +0 3736 4076 +0 3739 4075 +0 3744 4075 +0 3750 4075 +0 3757 4074 +0 3768 4073 +0 3781 4072 +0 3798 4071 +0 3820 4069 +0 3843 4069 +0 3873 4069 +0 3910 4069 +0 3954 4069 +0 4008 4069 +0 4069 4066 +0 4069 3978 +0 4069 3824 +0 4069 3475 +0 4095 0 +0 3696 4076 +0 3696 4076 +0 3696 4076 +0 3696 4076 +0 3696 4076 +0 3696 4076 +0 3697 4076 +0 3697 4076 +0 3698 4076 +0 3699 4076 +0 3700 4076 +0 3701 4076 +0 3703 4076 +0 3706 4076 +0 3710 4075 +0 3714 4075 +0 3721 4075 +0 3729 4074 +0 3740 4073 +0 3754 4072 +0 3772 4071 +0 3795 4069 +0 3824 4066 +0 3855 4066 +0 3893 4066 +0 3940 4066 +0 3995 4066 +0 4060 4066 +0 4066 3985 +0 4066 3835 +0 4066 3498 +0 4095 0 +0 3651 4076 +0 3651 4076 +0 3651 4076 +0 3652 4076 +0 3652 4076 +0 3652 4076 +0 3653 4076 +0 3653 4076 +0 3654 4076 +0 3655 4076 +0 3656 4076 +0 3658 4076 +0 3660 4076 +0 3663 4076 +0 3667 4075 +0 3672 4075 +0 3679 4075 +0 3688 4074 +0 3700 4073 +0 3715 4072 +0 3735 4071 +0 3760 4069 +0 3791 4066 +0 3830 4063 +0 3870 4063 +0 3919 4063 +0 3977 4063 +0 4045 4063 +0 4063 3995 +0 4063 3849 +0 4063 3527 +0 4095 0 +0 3584 4076 +0 3584 4076 +0 3585 4076 +0 3585 4076 +0 3585 4076 +0 3585 4076 +0 3586 4076 +0 3586 4076 +0 3587 4076 +0 3588 4076 +0 3590 4076 +0 3592 4076 +0 3594 4076 +0 3597 4076 +0 3602 4075 +0 3608 4075 +0 3616 4075 +0 3626 4074 +0 3640 4073 +0 3657 4072 +0 3679 4071 +0 3708 4069 +0 3743 4066 +0 3786 4063 +0 3838 4058 +0 3890 4058 +0 3952 4058 +0 4023 4058 +0 4058 4008 +0 4058 3867 +0 4058 3562 +0 4095 0 +0 3475 4076 +0 3475 4076 +0 3476 4076 +0 3476 4076 +0 3476 4076 +0 3477 4076 +0 3477 4076 +0 3478 4076 +0 3479 4076 +0 3480 4076 +0 3482 4076 +0 3485 4076 +0 3488 4076 +0 3492 4076 +0 3498 4075 +0 3505 4075 +0 3515 4075 +0 3528 4074 +0 3545 4073 +0 3566 4072 +0 3593 4071 +0 3627 4069 +0 3669 4066 +0 3719 4063 +0 3779 4058 +2063 3848 4052 +2063 3915 4052 +2063 3992 4052 +2063 4052 4025 +2063 4052 3890 +2063 4052 3606 +0 4095 2266 +0 3271 4076 +0 3272 4076 +0 3272 4076 +0 3272 4076 +0 3273 4076 +0 3273 4076 +0 3274 4076 +0 3276 4076 +0 3277 4076 +0 3279 4076 +0 3282 4076 +0 3286 4076 +0 3291 4076 +0 3297 4076 +0 3306 4075 +0 3318 4075 +0 3333 4075 +0 3351 4074 +0 3376 4073 +0 3407 4072 +0 3445 4071 +0 3491 4069 +0 3546 4066 +0 3611 4063 +0 3685 4058 +2063 3769 4052 +2986 3861 4044 +2986 3947 4044 +2986 4040 4044 +2986 4044 3919 +2986 4044 3659 +2192 4095 2814 +0 2626 4076 +0 2627 4076 +0 2628 4076 +0 2630 4076 +0 2632 4076 +0 2635 4076 +0 2639 4076 +0 2644 4076 +0 2650 4076 +0 2659 4076 +0 2670 4076 +0 2684 4076 +0 2703 4076 +0 2726 4076 +0 2756 4075 +0 2793 4075 +0 2839 4075 +0 2893 4074 +0 2957 4073 +0 3031 4072 +0 3113 4071 +0 3205 4069 +0 3303 4066 +0 3409 4063 +0 3520 4058 +2063 3636 4052 +2986 3755 4044 +3336 3878 4032 +3336 3986 4032 +3336 4032 3955 +3336 4032 3720 +3121 4095 3118 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4075 +0 0 4075 +0 0 4075 +0 0 4074 +0 0 4073 +0 0 4072 +0 0 4071 +0 0 4069 +0 1985 4066 +0 2781 4063 +0 3119 4058 +2063 3361 4052 +2986 3561 4044 +3336 3737 4032 +3583 3900 4016 +3583 4016 3999 +3583 4016 3792 +3568 4095 3469 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4076 +0 0 4075 +0 0 4075 +0 0 4075 +0 0 4074 +0 0 4073 +0 0 4072 +0 0 4071 +0 0 4069 +0 0 4066 +0 0 4063 +2157 0 4058 +2689 2063 4052 +2986 2987 4044 +3336 3435 4032 +3583 3711 4016 +3784 3928 3994 +3784 3994 3873 +3844 4095 3714 +3401 0 4076 +3401 0 4076 +3401 0 4076 +3401 0 4076 +3401 0 4076 +3402 0 4076 +3402 0 4076 +3402 0 4076 +3403 0 4076 +3403 0 4076 +3404 0 4076 +3405 0 4076 +3407 0 4076 +3409 0 4076 +3411 0 4075 +3415 0 4075 +3419 0 4075 +3426 0 4074 +3434 0 4073 +3444 0 4072 +3458 0 4071 +3475 0 4069 +3498 0 4066 +3527 0 4063 +3562 0 4058 +3606 2063 4052 +3659 2986 4044 +3720 3336 4032 +3792 3583 4016 +3873 3784 3994 +3962 3962 3962 +4060 4095 3916 +3924 0 4095 +3924 0 4095 +3924 0 4095 +3924 0 4095 +3924 0 4095 +3925 0 4095 +3925 0 4095 +3925 0 4095 +3925 0 4095 +3925 0 4095 +3925 0 4095 +3926 0 4095 +3926 0 4095 +3927 0 4095 +3927 0 4095 +3929 0 4095 +3930 0 4095 +3932 0 4095 +3935 0 4095 +3938 0 4095 +3943 0 4095 +3949 0 4095 +3957 0 4095 +3968 0 4095 +3982 0 4095 +4000 0 4095 +4023 2192 4095 +4051 3118 4095 +4087 3469 4095 +4095 3714 4095 +4095 3916 4060 +4095 4005 3916 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3940 4095 +0 3940 4095 +0 3941 4095 +0 3941 4095 +0 3942 4095 +0 3944 4095 +0 3946 4095 +0 3948 4095 +0 3951 4095 +0 3955 4095 +0 3961 4095 +0 3968 4095 +0 3978 4095 +0 3990 4095 +0 4007 4095 +0 4027 4095 +0 4054 4095 +0 4087 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4087 +0 4095 3924 +0 4095 3533 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3940 4095 +0 3940 4095 +0 3941 4095 +0 3941 4095 +0 3942 4095 +0 3944 4095 +0 3946 4095 +0 3948 4095 +0 3951 4095 +0 3955 4095 +0 3961 4095 +0 3968 4095 +0 3978 4095 +0 3990 4095 +0 4006 4095 +0 4027 4095 +0 4054 4095 +0 4087 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4087 +0 4095 3924 +0 4095 3533 +0 3938 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3940 4095 +0 3940 4095 +0 3941 4095 +0 3941 4095 +0 3942 4095 +0 3944 4095 +0 3945 4095 +0 3948 4095 +0 3951 4095 +0 3955 4095 +0 3961 4095 +0 3968 4095 +0 3978 4095 +0 3990 4095 +0 4006 4095 +0 4027 4095 +0 4054 4095 +0 4087 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4087 +0 4095 3924 +0 4095 3533 +0 3938 4095 +0 3938 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3940 4095 +0 3940 4095 +0 3941 4095 +0 3941 4095 +0 3942 4095 +0 3944 4095 +0 3945 4095 +0 3948 4095 +0 3951 4095 +0 3955 4095 +0 3961 4095 +0 3968 4095 +0 3978 4095 +0 3990 4095 +0 4006 4095 +0 4027 4095 +0 4054 4095 +0 4087 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4087 +0 4095 3924 +0 4095 3534 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3940 4095 +0 3940 4095 +0 3941 4095 +0 3941 4095 +0 3942 4095 +0 3944 4095 +0 3945 4095 +0 3948 4095 +0 3951 4095 +0 3955 4095 +0 3961 4095 +0 3968 4095 +0 3977 4095 +0 3990 4095 +0 4006 4095 +0 4027 4095 +0 4054 4095 +0 4087 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4087 +0 4095 3924 +0 4095 3534 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3940 4095 +0 3941 4095 +0 3941 4095 +0 3942 4095 +0 3944 4095 +0 3945 4095 +0 3948 4095 +0 3951 4095 +0 3955 4095 +0 3961 4095 +0 3968 4095 +0 3977 4095 +0 3990 4095 +0 4006 4095 +0 4027 4095 +0 4054 4095 +0 4087 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4087 +0 4095 3925 +0 4095 3534 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3939 4095 +0 3939 4095 +0 3939 4095 +0 3940 4095 +0 3940 4095 +0 3941 4095 +0 3942 4095 +0 3943 4095 +0 3945 4095 +0 3947 4095 +0 3951 4095 +0 3955 4095 +0 3961 4095 +0 3968 4095 +0 3977 4095 +0 3990 4095 +0 4006 4095 +0 4027 4095 +0 4054 4095 +0 4087 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4087 +0 4095 3925 +0 4095 3534 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3939 4095 +0 3939 4095 +0 3940 4095 +0 3940 4095 +0 3941 4095 +0 3942 4095 +0 3943 4095 +0 3945 4095 +0 3947 4095 +0 3950 4095 +0 3955 4095 +0 3960 4095 +0 3968 4095 +0 3977 4095 +0 3990 4095 +0 4006 4095 +0 4027 4095 +0 4053 4095 +0 4087 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4087 +0 4095 3925 +0 4095 3534 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3939 4095 +0 3939 4095 +0 3940 4095 +0 3941 4095 +0 3941 4095 +0 3943 4095 +0 3945 4095 +0 3947 4095 +0 3950 4095 +0 3954 4095 +0 3960 4095 +0 3967 4095 +0 3977 4095 +0 3989 4095 +0 4006 4095 +0 4027 4095 +0 4053 4095 +0 4086 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4087 +0 4095 3925 +0 4095 3534 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3938 4095 +0 3938 4095 +0 3938 4095 +0 3939 4095 +0 3940 4095 +0 3940 4095 +0 3941 4095 +0 3943 4095 +0 3944 4095 +0 3947 4095 +0 3950 4095 +0 3954 4095 +0 3960 4095 +0 3967 4095 +0 3977 4095 +0 3989 4095 +0 4005 4095 +0 4026 4095 +0 4053 4095 +0 4086 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4088 +0 4095 3925 +0 4095 3535 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3938 4095 +0 3938 4095 +0 3939 4095 +0 3940 4095 +0 3941 4095 +0 3942 4095 +0 3944 4095 +0 3946 4095 +0 3950 4095 +0 3954 4095 +0 3959 4095 +0 3967 4095 +0 3976 4095 +0 3989 4095 +0 4005 4095 +0 4026 4095 +0 4053 4095 +0 4086 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4088 +0 4095 3925 +0 4095 3536 +0 3936 4095 +0 3936 4095 +0 3936 4095 +0 3936 4095 +0 3936 4095 +0 3936 4095 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3937 4095 +0 3938 4095 +0 3939 4095 +0 3940 4095 +0 3941 4095 +0 3943 4095 +0 3946 4095 +0 3949 4095 +0 3953 4095 +0 3959 4095 +0 3966 4095 +0 3976 4095 +0 3988 4095 +0 4005 4095 +0 4026 4095 +0 4052 4095 +0 4085 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4088 +0 4095 3926 +0 4095 3537 +0 3935 4095 +0 3935 4095 +0 3935 4095 +0 3935 4095 +0 3935 4095 +0 3935 4095 +0 3935 4095 +0 3936 4095 +0 3936 4095 +0 3937 4095 +0 3937 4095 +0 3938 4095 +0 3939 4095 +0 3941 4095 +0 3942 4095 +0 3945 4095 +0 3948 4095 +0 3952 4095 +0 3958 4095 +0 3965 4095 +0 3975 4095 +0 3988 4095 +0 4004 4095 +0 4025 4095 +0 4051 4095 +0 4085 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4088 +0 4095 3926 +0 4095 3538 +0 3933 4095 +0 3933 4095 +0 3933 4095 +0 3933 4095 +0 3934 4095 +0 3934 4095 +0 3934 4095 +0 3934 4095 +0 3935 4095 +0 3935 4095 +0 3936 4095 +0 3937 4095 +0 3938 4095 +0 3940 4095 +0 3941 4095 +0 3944 4095 +0 3947 4095 +0 3951 4095 +0 3957 4095 +0 3964 4095 +0 3974 4095 +0 3986 4095 +0 4003 4095 +0 4024 4095 +0 4051 4095 +0 4084 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4089 +0 4095 3927 +0 4095 3539 +0 3932 4095 +0 3932 4095 +0 3932 4095 +0 3932 4095 +0 3932 4095 +0 3932 4095 +0 3932 4095 +0 3932 4095 +0 3933 4095 +0 3933 4095 +0 3934 4095 +0 3935 4095 +0 3936 4095 +0 3938 4095 +0 3940 4095 +0 3942 4095 +0 3945 4095 +0 3950 4095 +0 3955 4095 +0 3963 4095 +0 3972 4095 +0 3985 4095 +0 4002 4095 +0 4023 4095 +0 4049 4095 +0 4083 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4089 +0 4095 3927 +0 4095 3541 +0 3929 4095 +0 3929 4095 +0 3929 4095 +0 3929 4095 +0 3929 4095 +0 3929 4095 +0 3930 4095 +0 3930 4095 +0 3930 4095 +0 3931 4095 +0 3932 4095 +0 3932 4095 +0 3934 4095 +0 3935 4095 +0 3937 4095 +0 3940 4095 +0 3944 4095 +0 3948 4095 +0 3953 4095 +0 3961 4095 +0 3971 4095 +0 3983 4095 +0 4000 4095 +0 4021 4095 +0 4048 4095 +0 4082 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4090 +0 4095 3929 +0 4095 3544 +0 3926 4095 +0 3926 4095 +0 3926 4095 +0 3926 4095 +0 3926 4095 +0 3926 4095 +0 3927 4095 +0 3927 4095 +0 3927 4095 +0 3927 4095 +0 3928 4095 +0 3929 4095 +0 3930 4095 +0 3932 4095 +0 3934 4095 +0 3937 4095 +0 3941 4095 +0 3945 4095 +0 3951 4095 +0 3959 4095 +0 3968 4095 +0 3981 4095 +0 3998 4095 +0 4019 4095 +0 4046 4095 +0 4080 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4091 +0 4095 3930 +0 4095 3547 +0 3921 4095 +0 3921 4095 +0 3921 4095 +0 3921 4095 +0 3921 4095 +0 3922 4095 +0 3922 4095 +0 3922 4095 +0 3923 4095 +0 3923 4095 +0 3924 4095 +0 3925 4095 +0 3926 4095 +0 3927 4095 +0 3930 4095 +0 3933 4095 +0 3937 4095 +0 3942 4095 +0 3947 4095 +0 3955 4095 +0 3965 4095 +0 3978 4095 +0 3994 4095 +0 4016 4095 +0 4043 4095 +0 4077 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4092 +0 4095 3932 +0 4095 3552 +0 3915 4095 +0 3915 4095 +0 3915 4095 +0 3915 4095 +0 3915 4095 +0 3916 4095 +0 3916 4095 +0 3916 4095 +0 3917 4095 +0 3917 4095 +0 3918 4095 +0 3919 4095 +0 3920 4095 +0 3922 4095 +0 3924 4095 +0 3927 4095 +0 3931 4095 +0 3936 4095 +0 3943 4095 +0 3950 4095 +0 3961 4095 +0 3974 4095 +0 3990 4095 +0 4012 4095 +0 4039 4095 +0 4073 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4094 +0 4095 3935 +0 4095 3558 +0 3907 4095 +0 3907 4095 +0 3907 4095 +0 3907 4095 +0 3907 4095 +0 3908 4095 +0 3908 4095 +0 3908 4095 +0 3908 4095 +0 3909 4095 +0 3910 4095 +0 3910 4095 +0 3912 4095 +0 3913 4095 +0 3916 4095 +0 3919 4095 +0 3923 4095 +0 3928 4095 +0 3935 4095 +0 3944 4095 +0 3954 4095 +0 3968 4095 +0 3984 4095 +0 4006 4095 +0 4034 4095 +0 4069 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 3938 +0 4095 3566 +0 3896 4095 +0 3896 4095 +0 3896 4095 +0 3896 4095 +0 3896 4095 +0 3896 4095 +0 3896 4095 +0 3897 4095 +0 3897 4095 +0 3898 4095 +0 3898 4095 +0 3899 4095 +0 3901 4095 +0 3903 4095 +0 3905 4095 +0 3908 4095 +0 3912 4095 +0 3917 4095 +0 3924 4095 +0 3934 4095 +0 3946 4095 +0 3960 4095 +0 3977 4095 +0 3999 4095 +0 4027 4095 +0 4062 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 3943 +0 4095 3576 +0 3880 4095 +0 3880 4095 +0 3880 4095 +0 3880 4095 +0 3880 4095 +0 3881 4095 +0 3881 4095 +0 3881 4095 +0 3881 4095 +0 3882 4095 +0 3883 4095 +0 3884 4095 +0 3885 4095 +0 3887 4095 +0 3889 4095 +0 3893 4095 +0 3897 4095 +0 3903 4095 +0 3910 4095 +0 3920 4095 +0 3932 4095 +0 3949 4095 +0 3966 4095 +0 3989 4095 +0 4018 4095 +0 4054 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 3949 +0 4095 3590 +0 3859 4095 +0 3859 4095 +0 3859 4095 +0 3859 4095 +0 3859 4095 +0 3859 4095 +0 3859 4095 +0 3860 4095 +0 3860 4095 +0 3861 4095 +0 3862 4095 +0 3863 4095 +0 3864 4095 +0 3866 4095 +0 3868 4095 +0 3872 4095 +0 3876 4095 +0 3882 4095 +0 3890 4095 +0 3900 4095 +0 3913 4095 +0 3930 4095 +0 3952 4095 +0 3976 4095 +0 4005 4095 +0 4042 4095 +0 4087 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 3957 +0 4095 3608 +0 3828 4095 +0 3828 4095 +0 3828 4095 +0 3828 4095 +0 3828 4095 +0 3829 4095 +0 3829 4095 +0 3829 4095 +0 3830 4095 +0 3830 4095 +0 3831 4095 +0 3832 4095 +0 3834 4095 +0 3836 4095 +0 3838 4095 +0 3842 4095 +0 3847 4095 +0 3853 4095 +0 3861 4095 +0 3872 4095 +0 3886 4095 +0 3904 4095 +0 3927 4095 +0 3956 4095 +0 3987 4095 +0 4025 4095 +0 4072 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 3968 +0 4095 3630 +0 3784 4095 +0 3784 4095 +0 3784 4095 +0 3784 4095 +0 3784 4095 +0 3784 4095 +0 3784 4095 +0 3785 4095 +0 3786 4095 +0 3786 4095 +0 3787 4095 +0 3788 4095 +0 3790 4095 +0 3792 4095 +0 3795 4095 +0 3799 4095 +0 3804 4095 +0 3811 4095 +0 3820 4095 +0 3832 4095 +0 3847 4095 +0 3867 4095 +0 3892 4095 +0 3923 4095 +0 3962 4095 +0 4002 4095 +0 4051 4095 +0 4095 4095 +0 4095 4095 +0 4095 4095 +0 4095 3982 +0 4095 3659 +0 3716 4095 +0 3717 4095 +0 3717 4095 +0 3717 4095 +0 3717 4095 +0 3717 4095 +0 3718 4095 +0 3718 4095 +0 3719 4095 +0 3720 4095 +0 3721 4095 +0 3722 4095 +0 3724 4095 +0 3727 4095 +0 3730 4095 +0 3735 4095 +0 3741 4095 +0 3748 4095 +0 3759 4095 +0 3772 4095 +0 3790 4095 +0 3812 4095 +0 3840 4095 +0 3875 4095 +0 3918 4095 +0 3970 4095 +0 4022 4095 +0 4084 4095 +0 4095 4095 +0 4095 4095 +0 4095 4000 +0 4095 3695 +0 3608 4095 +0 3608 4095 +0 3608 4095 +0 3608 4095 +0 3608 4095 +0 3609 4095 +0 3609 4095 +0 3610 4095 +0 3611 4095 +0 3612 4095 +0 3613 4095 +0 3615 4095 +0 3617 4095 +0 3621 4095 +0 3625 4095 +0 3630 4095 +0 3638 4095 +0 3648 4095 +0 3661 4095 +0 3677 4095 +0 3699 4095 +0 3726 4095 +0 3759 4095 +0 3801 4095 +0 3851 4095 +0 3911 4095 +2192 3980 4095 +2192 4047 4095 +2192 4095 4095 +2192 4095 4095 +2192 4095 4023 +2192 4095 3738 +0 3404 4095 +0 3404 4095 +0 3404 4095 +0 3405 4095 +0 3405 4095 +0 3405 4095 +0 3406 4095 +0 3407 4095 +0 3408 4095 +0 3410 4095 +0 3412 4095 +0 3415 4095 +0 3419 4095 +0 3424 4095 +0 3430 4095 +0 3439 4095 +0 3450 4095 +0 3465 4095 +0 3484 4095 +0 3509 4095 +0 3539 4095 +0 3577 4095 +0 3623 4095 +0 3679 4095 +0 3743 4095 +0 3818 4095 +2192 3901 4095 +3118 3993 4095 +3118 4079 4095 +3118 4095 4095 +3118 4095 4051 +3118 4095 3791 +0 2761 4095 +0 2762 4095 +0 2762 4095 +0 2764 4095 +0 2765 4095 +0 2767 4095 +0 2770 4095 +0 2773 4095 +0 2778 4095 +0 2785 4095 +0 2793 4095 +0 2804 4095 +0 2818 4095 +0 2837 4095 +0 2861 4095 +0 2890 4095 +0 2927 4095 +0 2973 4095 +0 3027 4095 +0 3090 4095 +0 3164 4095 +0 3246 4095 +0 3337 4095 +0 3436 4095 +0 3541 4095 +0 3653 4095 +2192 3768 4095 +3118 3888 4095 +3469 4010 4095 +3469 4095 4095 +3469 4095 4087 +3469 4095 3853 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 2137 4095 +0 2915 4095 +0 3253 4095 +2192 3494 4095 +3118 3693 4095 +3469 3869 4095 +3714 4032 4095 +3714 4095 4095 +3714 4095 3924 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +0 0 4095 +2266 0 4095 +2814 2192 4095 +3118 3121 4095 +3469 3568 4095 +3714 3844 4095 +3916 4060 4095 +3916 4095 4005 +3533 0 4095 +3533 0 4095 +3533 0 4095 +3534 0 4095 +3534 0 4095 +3534 0 4095 +3534 0 4095 +3534 0 4095 +3534 0 4095 +3535 0 4095 +3536 0 4095 +3537 0 4095 +3538 0 4095 +3539 0 4095 +3541 0 4095 +3544 0 4095 +3547 0 4095 +3552 0 4095 +3558 0 4095 +3566 0 4095 +3576 0 4095 +3590 0 4095 +3608 0 4095 +3630 0 4095 +3659 0 4095 +3695 0 4095 +3738 2192 4095 +3791 3118 4095 +3853 3469 4095 +3924 3714 4095 +4005 3916 4095 +4095 4095 4095 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/test_hue-sat_32_LUT.azasset b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/test_hue-sat_32_LUT.azasset new file mode 100644 index 0000000000..82fbee2eee --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/Photoshop/Log2-48nits/o_invShaped/test_hue-sat_32_LUT.azasset @@ -0,0 +1,32777 @@ +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "LookupTableAsset", + "ClassData": { + "Name": "LookupTable", + "Intervals": [0, 33, 66, 99, 132, 165, 198, 231, 264, 297, 330, 363, 396, 429, 462, 495, 528, 561, 594, 627, 660, 693, 726, 759, 792, 825, 858, 891, 924, 957, 990, 1023], + "Values": [0, 0, 0, +97, 163, 0, +201, 318, 0, +312, 466, 0, +427, 609, 0, +545, 750, 0, +667, 888, 0, +792, 1025, 0, +918, 1160, 0, +1046, 1295, 0, +1174, 1429, 0, +1304, 1563, 0, +1434, 1696, 0, +1565, 1828, 0, +1696, 1961, 0, +1827, 2094, 0, +1959, 2226, 0, +2090, 2358, 0, +2222, 2491, 0, +2354, 2623, 0, +2486, 2755, 0, +2618, 2887, 0, +2750, 3019, 0, +2882, 3152, 0, +3014, 3284, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +163, 0, 97, +163, 42, 0, +318, 300, 0, +419, 466, 0, +512, 609, 0, +613, 750, 0, +719, 888, 0, +832, 1025, 0, +949, 1160, 0, +1069, 1295, 0, +1192, 1429, 0, +1318, 1563, 0, +1444, 1696, 0, +1572, 1828, 0, +1702, 1961, 0, +1831, 2094, 0, +1962, 2226, 0, +2093, 2358, 0, +2224, 2491, 0, +2355, 2623, 0, +2487, 2755, 0, +2619, 2887, 0, +2750, 3019, 0, +2883, 3152, 0, +3014, 3284, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +318, 0, 201, +318, 0, 13, +318, 93, 0, +466, 388, 0, +606, 609, 0, +689, 750, 0, +781, 888, 0, +881, 1025, 0, +987, 1160, 0, +1099, 1295, 0, +1215, 1429, 0, +1335, 1563, 0, +1457, 1696, 0, +1582, 1828, 0, +1709, 1961, 0, +1837, 2094, 0, +1966, 2226, 0, +2096, 2358, 0, +2226, 2491, 0, +2357, 2623, 0, +2488, 2755, 0, +2620, 2887, 0, +2751, 3019, 0, +2883, 3152, 0, +3014, 3284, 0, +3147, 3416, 0, +3279, 3548, 0, +3410, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +466, 0, 312, +466, 0, 171, +466, 0, 0, +466, 154, 0, +609, 485, 0, +750, 723, 0, +852, 888, 0, +939, 1025, 0, +1033, 1160, 0, +1135, 1295, 0, +1244, 1429, 0, +1357, 1563, 0, +1475, 1696, 0, +1596, 1828, 0, +1719, 1961, 0, +1845, 2094, 0, +1972, 2226, 0, +2100, 2358, 0, +2230, 2491, 0, +2359, 2623, 0, +2490, 2755, 0, +2621, 2887, 0, +2752, 3019, 0, +2884, 3152, 0, +3015, 3284, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +609, 0, 427, +609, 0, 322, +609, 0, 127, +609, 0, 0, +609, 224, 0, +750, 587, 0, +888, 838, 0, +1006, 1025, 0, +1089, 1160, 0, +1181, 1295, 0, +1280, 1429, 0, +1385, 1563, 0, +1496, 1696, 0, +1612, 1828, 0, +1732, 1961, 0, +1855, 2094, 0, +1979, 2226, 0, +2106, 2358, 0, +2234, 2491, 0, +2363, 2623, 0, +2493, 2755, 0, +2623, 2887, 0, +2754, 3019, 0, +2885, 3152, 0, +3016, 3284, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +750, 0, 545, +750, 0, 467, +750, 0, 334, +750, 0, 59, +750, 0, 0, +750, 304, 0, +888, 697, 0, +1025, 957, 0, +1154, 1160, 0, +1234, 1295, 0, +1323, 1429, 0, +1421, 1563, 0, +1524, 1696, 0, +1634, 1828, 0, +1749, 1961, 0, +1867, 2094, 0, +1989, 2226, 0, +2113, 2358, 0, +2239, 2491, 0, +2367, 2623, 0, +2496, 2755, 0, +2625, 2887, 0, +2755, 3019, 0, +2886, 3152, 0, +3017, 3284, 0, +3148, 3416, 0, +3280, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +888, 0, 667, +888, 0, 608, +888, 0, 515, +888, 0, 350, +888, 0, 0, +888, 0, 0, +888, 392, 0, +1025, 811, 0, +1160, 1079, 0, +1295, 1292, 0, +1376, 1429, 0, +1463, 1563, 0, +1559, 1696, 0, +1661, 1828, 0, +1770, 1961, 0, +1884, 2094, 0, +2002, 2226, 0, +2123, 2358, 0, +2247, 2491, 0, +2372, 2623, 0, +2500, 2755, 0, +2628, 2887, 0, +2758, 3019, 0, +2888, 3152, 0, +3018, 3284, 0, +3149, 3416, 0, +3280, 3548, 0, +3412, 3680, 0, +3544, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1025, 0, 792, +1025, 0, 748, +1025, 0, 681, +1025, 0, 573, +1025, 0, 371, +1025, 0, 0, +1025, 0, 0, +1025, 488, 0, +1160, 929, 0, +1295, 1204, 0, +1429, 1419, 0, +1515, 1563, 0, +1601, 1696, 0, +1696, 1828, 0, +1797, 1961, 0, +1905, 2094, 0, +2018, 2226, 0, +2136, 2358, 0, +2256, 2491, 0, +2380, 2623, 0, +2505, 2755, 0, +2633, 2887, 0, +2761, 3019, 0, +2890, 3152, 0, +3020, 3284, 0, +3151, 3416, 0, +3281, 3548, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3939, 4095, 0, +1160, 0, 918, +1160, 0, 885, +1160, 0, 836, +1160, 0, 762, +1160, 0, 640, +1160, 0, 397, +1160, 0, 0, +1160, 0, 0, +1160, 592, 0, +1295, 1051, 0, +1429, 1330, 0, +1563, 1548, 0, +1653, 1696, 0, +1738, 1828, 0, +1831, 1961, 0, +1932, 2094, 0, +2039, 2226, 0, +2152, 2358, 0, +2269, 2491, 0, +2390, 2623, 0, +2513, 2755, 0, +2638, 2887, 0, +2765, 3019, 0, +2893, 3152, 0, +3022, 3284, 0, +3152, 3416, 0, +3283, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1295, 0, 1046, +1295, 0, 1021, +1295, 0, 985, +1295, 0, 934, +1295, 0, 853, +1295, 0, 717, +1295, 0, 431, +1295, 0, 0, +1295, 0, 0, +1295, 702, 0, +1429, 1174, 0, +1563, 1458, 0, +1696, 1677, 0, +1789, 1828, 0, +1873, 1961, 0, +1966, 2094, 0, +2066, 2226, 0, +2173, 2358, 0, +2285, 2491, 0, +2402, 2623, 0, +2523, 2755, 0, +2646, 2887, 0, +2771, 3019, 0, +2898, 3152, 0, +3025, 3284, 0, +3155, 3416, 0, +3285, 3548, 0, +3415, 3680, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1174, +1429, 0, 1156, +1429, 0, 1130, +1429, 0, 1092, +1429, 0, 1037, +1429, 0, 951, +1429, 0, 803, +1429, 0, 471, +1429, 0, 0, +1429, 0, 0, +1429, 816, 0, +1563, 1301, 0, +1696, 1587, 0, +1828, 1807, 0, +1923, 1961, 0, +2007, 2094, 0, +2100, 2226, 0, +2200, 2358, 0, +2306, 2491, 0, +2419, 2623, 0, +2535, 2755, 0, +2655, 2887, 0, +2778, 3019, 0, +2903, 3152, 0, +3030, 3284, 0, +3158, 3416, 0, +3287, 3548, 0, +3417, 3680, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1563, 0, 1304, +1563, 0, 1290, +1563, 0, 1271, +1563, 0, 1244, +1563, 0, 1205, +1563, 0, 1148, +1563, 0, 1057, +1563, 0, 897, +1563, 0, 523, +1563, 0, 0, +1563, 0, 0, +1563, 934, 0, +1696, 1427, 0, +1828, 1716, 0, +1961, 1938, 0, +2058, 2094, 0, +2141, 2226, 0, +2233, 2358, 0, +2333, 2491, 0, +2440, 2623, 0, +2552, 2755, 0, +2668, 2887, 0, +2788, 3019, 0, +2911, 3152, 0, +3035, 3284, 0, +3162, 3416, 0, +3290, 3548, 0, +3419, 3680, 0, +3549, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1434, +1696, 0, 1424, +1696, 0, 1410, +1696, 0, 1390, +1696, 0, 1362, +1696, 0, 1322, +1696, 0, 1262, +1696, 0, 1167, +1696, 0, 998, +1696, 0, 580, +1696, 0, 0, +1696, 0, 0, +1696, 1056, 0, +1828, 1557, 0, +1961, 1847, 0, +2094, 2069, 0, +2191, 2226, 0, +2275, 2358, 0, +2367, 2491, 0, +2466, 2623, 0, +2573, 2755, 0, +2684, 2887, 0, +2800, 3019, 0, +2920, 3152, 0, +3043, 3284, 0, +3168, 3416, 0, +3294, 3548, 0, +3422, 3680, 0, +3552, 3812, 0, +3681, 3944, 0, +3812, 4076, 0, +3942, 4095, 0, +1828, 0, 1565, +1828, 0, 1557, +1828, 0, 1547, +1828, 0, 1532, +1828, 0, 1512, +1828, 0, 1484, +1828, 0, 1442, +1828, 0, 1381, +1828, 0, 1283, +1828, 0, 1106, +1828, 0, 650, +1828, 0, 0, +1828, 0, 0, +1828, 1180, 0, +1961, 1686, 0, +2094, 1977, 0, +2226, 2200, 0, +2325, 2358, 0, +2408, 2491, 0, +2500, 2623, 0, +2599, 2755, 0, +2705, 2887, 0, +2816, 3019, 0, +2933, 3152, 0, +3052, 3284, 0, +3175, 3416, 0, +3300, 3548, 0, +3427, 3680, 0, +3554, 3812, 0, +3683, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +1961, 0, 1696, +1961, 0, 1690, +1961, 0, 1682, +1961, 0, 1672, +1961, 0, 1657, +1961, 0, 1636, +1961, 0, 1607, +1961, 0, 1565, +1961, 0, 1503, +1961, 0, 1402, +1961, 0, 1220, +1961, 0, 726, +1961, 0, 0, +1961, 0, 0, +1961, 1306, 0, +2094, 1816, 0, +2226, 2108, 0, +2358, 2332, 0, +2458, 2491, 0, +2541, 2623, 0, +2632, 2755, 0, +2732, 2887, 0, +2837, 3019, 0, +2949, 3152, 0, +3065, 3284, 0, +3184, 3416, 0, +3307, 3548, 0, +3432, 3680, 0, +3559, 3812, 0, +3687, 3944, 0, +3816, 4076, 0, +3946, 4095, 0, +2094, 0, 1827, +2094, 0, 1823, +2094, 0, 1817, +2094, 0, 1809, +2094, 0, 1798, +2094, 0, 1783, +2094, 0, 1763, +2094, 0, 1733, +2094, 0, 1691, +2094, 0, 1626, +2094, 0, 1524, +2094, 0, 1336, +2094, 0, 814, +2094, 0, 0, +2094, 0, 0, +2094, 1433, 0, +2226, 1946, 0, +2358, 2239, 0, +2491, 2463, 0, +2590, 2623, 0, +2673, 2755, 0, +2765, 2887, 0, +2864, 3019, 0, +2970, 3152, 0, +3081, 3284, 0, +3197, 3416, 0, +3317, 3548, 0, +3440, 3680, 0, +3564, 3812, 0, +3691, 3944, 0, +3819, 4076, 0, +3948, 4095, 0, +2226, 0, 1959, +2226, 0, 1956, +2226, 0, 1951, +2226, 0, 1945, +2226, 0, 1937, +2226, 0, 1926, +2226, 0, 1911, +2226, 0, 1890, +2226, 0, 1860, +2226, 0, 1817, +2226, 0, 1753, +2226, 0, 1648, +2226, 0, 1457, +2226, 0, 907, +2226, 0, 0, +2226, 0, 0, +2226, 1562, 0, +2358, 2078, 0, +2491, 2371, 0, +2623, 2595, 0, +2723, 2755, 0, +2806, 2887, 0, +2897, 3019, 0, +2996, 3152, 0, +3102, 3284, 0, +3213, 3416, 0, +3329, 3548, 0, +3449, 3680, 0, +3572, 3812, 0, +3696, 3944, 0, +3823, 4076, 0, +3951, 4095, 0, +2358, 0, 2090, +2358, 0, 2088, +2358, 0, 2085, +2358, 0, 2080, +2358, 0, 2074, +2358, 0, 2066, +2358, 0, 2055, +2358, 0, 2040, +2358, 0, 2019, +2358, 0, 1989, +2358, 0, 1946, +2358, 0, 1880, +2358, 0, 1775, +2358, 0, 1580, +2358, 0, 1009, +2358, 0, 0, +2358, 0, 0, +2358, 1692, 0, +2491, 2209, 0, +2623, 2503, 0, +2755, 2727, 0, +2856, 2887, 0, +2938, 3019, 0, +3030, 3152, 0, +3128, 3284, 0, +3234, 3416, 0, +3346, 3548, 0, +3462, 3680, 0, +3581, 3812, 0, +3704, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2222, +2491, 0, 2220, +2491, 0, 2218, +2491, 0, 2215, +2491, 0, 2210, +2491, 0, 2204, +2491, 0, 2196, +2491, 0, 2185, +2491, 0, 2170, +2491, 0, 2149, +2491, 0, 2119, +2491, 0, 2075, +2491, 0, 2009, +2491, 0, 1903, +2491, 0, 1706, +2491, 0, 1120, +2491, 0, 0, +2491, 0, 0, +2491, 1822, 0, +2623, 2340, 0, +2755, 2635, 0, +2887, 2859, 0, +2988, 3019, 0, +3071, 3152, 0, +3162, 3284, 0, +3261, 3416, 0, +3367, 3548, 0, +3478, 3680, 0, +3594, 3812, 0, +3713, 3944, 0, +3836, 4076, 0, +3961, 4095, 0, +2623, 0, 2354, +2623, 0, 2352, +2623, 0, 2351, +2623, 0, 2348, +2623, 0, 2345, +2623, 0, 2341, +2623, 0, 2335, +2623, 0, 2327, +2623, 0, 2315, +2623, 0, 2300, +2623, 0, 2278, +2623, 0, 2248, +2623, 0, 2205, +2623, 0, 2138, +2623, 0, 2032, +2623, 0, 1833, +2623, 0, 1232, +2623, 0, 0, +2623, 0, 0, +2623, 1952, 0, +2755, 2473, 0, +2887, 2767, 0, +3019, 2991, 0, +3120, 3152, 0, +3203, 3284, 0, +3294, 3416, 0, +3393, 3548, 0, +3499, 3680, 0, +3610, 3812, 0, +3726, 3944, 0, +3846, 4076, 0, +3968, 4095, 0, +2755, 0, 2486, +2755, 0, 2485, +2755, 0, 2484, +2755, 0, 2482, +2755, 0, 2479, +2755, 0, 2476, +2755, 0, 2472, +2755, 0, 2466, +2755, 0, 2457, +2755, 0, 2446, +2755, 0, 2431, +2755, 0, 2409, +2755, 0, 2379, +2755, 0, 2335, +2755, 0, 2269, +2755, 0, 2162, +2755, 0, 1962, +2755, 0, 1353, +2755, 0, 0, +2755, 0, 0, +2755, 2083, 0, +2887, 2604, 0, +3019, 2898, 0, +3152, 3123, 0, +3252, 3284, 0, +3335, 3416, 0, +3426, 3548, 0, +3525, 3680, 0, +3631, 3812, 0, +3742, 3944, 0, +3858, 4076, 0, +3978, 4095, 0, +2887, 0, 2618, +2887, 0, 2617, +2887, 0, 2616, +2887, 0, 2615, +2887, 0, 2613, +2887, 0, 2611, +2887, 0, 2607, +2887, 0, 2603, +2887, 0, 2597, +2887, 0, 2589, +2887, 0, 2577, +2887, 0, 2562, +2887, 0, 2541, +2887, 0, 2510, +2887, 0, 2466, +2887, 0, 2400, +2887, 0, 2292, +2887, 0, 2091, +2887, 0, 1472, +2887, 0, 0, +2887, 0, 0, +2887, 2215, 0, +3019, 2735, 0, +3152, 3031, 0, +3284, 3254, 0, +3385, 3416, 0, +3467, 3548, 0, +3558, 3680, 0, +3657, 3812, 0, +3763, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2750, +3019, 0, 2749, +3019, 0, 2748, +3019, 0, 2747, +3019, 0, 2746, +3019, 0, 2744, +3019, 0, 2742, +3019, 0, 2738, +3019, 0, 2734, +3019, 0, 2728, +3019, 0, 2720, +3019, 0, 2708, +3019, 0, 2693, +3019, 0, 2672, +3019, 0, 2641, +3019, 0, 2597, +3019, 0, 2530, +3019, 0, 2422, +3019, 0, 2220, +3019, 0, 1594, +3019, 0, 0, +3019, 0, 0, +3019, 2346, 0, +3152, 2868, 0, +3284, 3162, 0, +3416, 3387, 0, +3516, 3548, 0, +3599, 3680, 0, +3691, 3812, 0, +3790, 3944, 0, +3895, 4076, 0, +4007, 4095, 0, +3152, 0, 2882, +3152, 0, 2881, +3152, 0, 2881, +3152, 0, 2880, +3152, 0, 2879, +3152, 0, 2878, +3152, 0, 2876, +3152, 0, 2873, +3152, 0, 2870, +3152, 0, 2866, +3152, 0, 2860, +3152, 0, 2851, +3152, 0, 2840, +3152, 0, 2825, +3152, 0, 2803, +3152, 0, 2773, +3152, 0, 2729, +3152, 0, 2662, +3152, 0, 2554, +3152, 0, 2352, +3152, 0, 1720, +3152, 0, 0, +3152, 0, 0, +3152, 2478, 0, +3284, 2999, 0, +3416, 3294, 0, +3548, 3519, 0, +3649, 3680, 0, +3732, 3812, 0, +3823, 3944, 0, +3922, 4076, 0, +4027, 4095, 0, +3284, 0, 3014, +3284, 0, 3014, +3284, 0, 3013, +3284, 0, 3012, +3284, 0, 3012, +3284, 0, 3011, +3284, 0, 3009, +3284, 0, 3008, +3284, 0, 3005, +3284, 0, 3002, +3284, 0, 2997, +3284, 0, 2991, +3284, 0, 2983, +3284, 0, 2972, +3284, 0, 2956, +3284, 0, 2935, +3284, 0, 2904, +3284, 0, 2860, +3284, 0, 2793, +3284, 0, 2684, +3284, 0, 2481, +3284, 0, 1844, +3284, 0, 0, +3284, 0, 0, +3284, 2609, 0, +3416, 3132, 0, +3548, 3426, 0, +3680, 3651, 0, +3781, 3812, 0, +3864, 3944, 0, +3955, 4076, 0, +4054, 4095, 0, +3416, 0, 3146, +3416, 0, 3146, +3416, 0, 3145, +3416, 0, 3145, +3416, 0, 3144, +3416, 0, 3144, +3416, 0, 3143, +3416, 0, 3141, +3416, 0, 3139, +3416, 0, 3137, +3416, 0, 3134, +3416, 0, 3129, +3416, 0, 3123, +3416, 0, 3115, +3416, 0, 3104, +3416, 0, 3088, +3416, 0, 3067, +3416, 0, 3036, +3416, 0, 2992, +3416, 0, 2925, +3416, 0, 2816, +3416, 0, 2613, +3416, 0, 1977, +3416, 0, 0, +3416, 0, 0, +3416, 2741, 0, +3548, 3264, 0, +3680, 3558, 0, +3812, 3783, 0, +3913, 3944, 0, +3996, 4076, 0, +4087, 4095, 0, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3277, +3548, 0, 3277, +3548, 0, 3276, +3548, 0, 3276, +3548, 0, 3275, +3548, 0, 3273, +3548, 0, 3271, +3548, 0, 3269, +3548, 0, 3266, +3548, 0, 3261, +3548, 0, 3255, +3548, 0, 3247, +3548, 0, 3236, +3548, 0, 3220, +3548, 0, 3198, +3548, 0, 3168, +3548, 0, 3124, +3548, 0, 3056, +3548, 0, 2948, +3548, 0, 2745, +3548, 0, 2104, +3548, 0, 0, +3548, 0, 0, +3548, 2873, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3408, +3680, 0, 3406, +3680, 0, 3405, +3680, 0, 3403, +3680, 0, 3401, +3680, 0, 3398, +3680, 0, 3393, +3680, 0, 3387, +3680, 0, 3379, +3680, 0, 3367, +3680, 0, 3352, +3680, 0, 3330, +3680, 0, 3300, +3680, 0, 3255, +3680, 0, 3188, +3680, 0, 3080, +3680, 0, 2876, +3680, 0, 2237, +3680, 0, 0, +3680, 0, 0, +3680, 3005, 0, +3812, 3528, 0, +3944, 3822, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3540, +3812, 0, 3538, +3812, 0, 3537, +3812, 0, 3535, +3812, 0, 3533, +3812, 0, 3530, +3812, 0, 3525, +3812, 0, 3519, +3812, 0, 3511, +3812, 0, 3499, +3812, 0, 3484, +3812, 0, 3462, +3812, 0, 3432, +3812, 0, 3387, +3812, 0, 3320, +3812, 0, 3211, +3812, 0, 3008, +3812, 0, 2367, +3812, 0, 0, +3812, 0, 0, +3812, 3137, 0, +3944, 3660, 0, +4076, 3954, 0, +4095, 4095, 0, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3670, +3944, 0, 3669, +3944, 0, 3667, +3944, 0, 3665, +3944, 0, 3661, +3944, 0, 3657, +3944, 0, 3651, +3944, 0, 3643, +3944, 0, 3631, +3944, 0, 3616, +3944, 0, 3594, +3944, 0, 3564, +3944, 0, 3520, +3944, 0, 3452, +3944, 0, 3344, +3944, 0, 3140, +3944, 0, 2497, +3944, 0, 0, +3944, 0, 0, +3944, 3269, 0, +4076, 3791, 0, +4095, 4087, 0, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3803, +4076, 0, 3801, +4076, 0, 3799, +4076, 0, 3797, +4076, 0, 3793, +4076, 0, 3789, +4076, 0, 3783, +4076, 0, 3774, +4076, 0, 3763, +4076, 0, 3748, +4076, 0, 3726, +4076, 0, 3696, +4076, 0, 3651, +4076, 0, 3584, +4076, 0, 3475, +4076, 0, 3271, +4076, 0, 2626, +4076, 0, 0, +4076, 0, 0, +4076, 3401, 0, +4095, 3924, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3933, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3926, +4095, 0, 3921, +4095, 0, 3915, +4095, 0, 3907, +4095, 0, 3896, +4095, 0, 3880, +4095, 0, 3859, +4095, 0, 3828, +4095, 0, 3784, +4095, 0, 3716, +4095, 0, 3608, +4095, 0, 3404, +4095, 0, 2761, +4095, 0, 0, +4095, 0, 0, +4095, 3533, 0, +0, 97, 163, +0, 163, 42, +13, 318, 0, +171, 466, 0, +322, 609, 0, +467, 750, 0, +608, 888, 0, +748, 1025, 0, +885, 1160, 0, +1021, 1295, 0, +1156, 1429, 0, +1290, 1563, 0, +1424, 1696, 0, +1557, 1828, 0, +1690, 1961, 0, +1823, 2094, 0, +1956, 2226, 0, +2088, 2358, 0, +2220, 2491, 0, +2352, 2623, 0, +2485, 2755, 0, +2617, 2887, 0, +2749, 3019, 0, +2881, 3152, 0, +3014, 3284, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +42, 0, 163, +131, 131, 131, +229, 295, 86, +333, 450, 15, +444, 598, 0, +559, 741, 0, +678, 882, 0, +800, 1020, 0, +924, 1157, 0, +1050, 1292, 0, +1178, 1427, 0, +1307, 1561, 0, +1436, 1695, 0, +1566, 1828, 0, +1697, 1961, 0, +1828, 2093, 0, +1959, 2226, 0, +2091, 2358, 0, +2223, 2491, 0, +2354, 2623, 0, +2486, 2755, 0, +2618, 2887, 0, +2750, 3019, 0, +2882, 3152, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +300, 0, 318, +295, 86, 229, +295, 174, 86, +450, 432, 15, +551, 598, 0, +644, 741, 0, +745, 882, 0, +852, 1020, 0, +964, 1157, 0, +1081, 1292, 0, +1201, 1427, 0, +1325, 1561, 0, +1450, 1695, 0, +1576, 1828, 0, +1705, 1961, 0, +1834, 2093, 0, +1963, 2226, 0, +2094, 2358, 0, +2225, 2491, 0, +2356, 2623, 0, +2488, 2755, 0, +2619, 2887, 0, +2751, 3019, 0, +2883, 3152, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +466, 0, 419, +450, 15, 333, +450, 15, 145, +450, 225, 15, +598, 520, 0, +738, 741, 0, +822, 882, 0, +914, 1020, 0, +1013, 1157, 0, +1119, 1292, 0, +1231, 1427, 0, +1347, 1561, 0, +1467, 1695, 0, +1590, 1828, 0, +1715, 1961, 0, +1841, 2093, 0, +1969, 2226, 0, +2098, 2358, 0, +2228, 2491, 0, +2358, 2623, 0, +2489, 2755, 0, +2620, 2887, 0, +2752, 3019, 0, +2883, 3152, 0, +3015, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +609, 0, 512, +598, 0, 444, +598, 0, 303, +598, 0, 0, +598, 286, 0, +741, 616, 0, +882, 855, 0, +985, 1020, 0, +1071, 1157, 0, +1166, 1292, 0, +1267, 1427, 0, +1376, 1561, 0, +1489, 1695, 0, +1607, 1828, 0, +1728, 1961, 0, +1851, 2093, 0, +1977, 2226, 0, +2104, 2358, 0, +2233, 2491, 0, +2362, 2623, 0, +2492, 2755, 0, +2622, 2887, 0, +2753, 3019, 0, +2885, 3152, 0, +3016, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +750, 0, 613, +741, 0, 559, +741, 0, 453, +741, 0, 258, +741, 0, 0, +741, 356, 0, +882, 719, 0, +1020, 970, 0, +1139, 1157, 0, +1221, 1292, 0, +1313, 1427, 0, +1412, 1561, 0, +1517, 1695, 0, +1629, 1828, 0, +1745, 1961, 0, +1864, 2093, 0, +1987, 2226, 0, +2111, 2358, 0, +2238, 2491, 0, +2366, 2623, 0, +2495, 2755, 0, +2625, 2887, 0, +2755, 3019, 0, +2886, 3152, 0, +3017, 3283, 0, +3148, 3416, 0, +3280, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +888, 0, 719, +882, 0, 678, +882, 0, 599, +882, 0, 466, +882, 0, 190, +882, 0, 0, +882, 436, 0, +1020, 829, 0, +1157, 1089, 0, +1286, 1292, 0, +1366, 1427, 0, +1456, 1561, 0, +1552, 1695, 0, +1656, 1828, 0, +1766, 1961, 0, +1881, 2093, 0, +1999, 2226, 0, +2121, 2358, 0, +2245, 2491, 0, +2372, 2623, 0, +2499, 2755, 0, +2628, 2887, 0, +2757, 3019, 0, +2888, 3152, 0, +3018, 3283, 0, +3149, 3416, 0, +3280, 3548, 0, +3412, 3680, 0, +3544, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1025, 0, 832, +1020, 0, 800, +1020, 0, 740, +1020, 0, 647, +1020, 0, 482, +1020, 0, 81, +1020, 0, 0, +1020, 524, 0, +1157, 943, 0, +1292, 1211, 0, +1427, 1424, 0, +1508, 1561, 0, +1596, 1695, 0, +1691, 1828, 0, +1793, 1961, 0, +1902, 2093, 0, +2016, 2226, 0, +2134, 2358, 0, +2255, 2491, 0, +2379, 2623, 0, +2505, 2755, 0, +2632, 2887, 0, +2760, 3019, 0, +2890, 3152, 0, +3020, 3283, 0, +3151, 3416, 0, +3281, 3548, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1160, 0, 949, +1157, 0, 924, +1157, 0, 879, +1157, 0, 813, +1157, 0, 705, +1157, 0, 503, +1157, 0, 0, +1157, 0, 0, +1157, 620, 0, +1292, 1062, 0, +1427, 1336, 0, +1561, 1552, 0, +1647, 1695, 0, +1733, 1828, 0, +1828, 1961, 0, +1929, 2093, 0, +2037, 2226, 0, +2150, 2358, 0, +2268, 2491, 0, +2388, 2623, 0, +2512, 2755, 0, +2638, 2887, 0, +2765, 3019, 0, +2893, 3152, 0, +3022, 3283, 0, +3152, 3416, 0, +3283, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1295, 0, 1069, +1292, 0, 1050, +1292, 0, 1017, +1292, 0, 968, +1292, 0, 894, +1292, 0, 772, +1292, 0, 529, +1292, 0, 0, +1292, 0, 0, +1292, 724, 0, +1427, 1182, 0, +1561, 1463, 0, +1695, 1680, 0, +1785, 1828, 0, +1870, 1961, 0, +1963, 2093, 0, +2064, 2226, 0, +2171, 2358, 0, +2284, 2491, 0, +2401, 2623, 0, +2522, 2755, 0, +2645, 2887, 0, +2770, 3019, 0, +2897, 3152, 0, +3025, 3283, 0, +3154, 3416, 0, +3284, 3548, 0, +3415, 3680, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1192, +1427, 0, 1178, +1427, 0, 1153, +1427, 0, 1118, +1427, 0, 1065, +1427, 0, 985, +1427, 0, 849, +1427, 0, 562, +1427, 0, 0, +1427, 0, 0, +1427, 833, 0, +1561, 1307, 0, +1695, 1590, 0, +1828, 1810, 0, +1920, 1961, 0, +2005, 2093, 0, +2098, 2226, 0, +2199, 2358, 0, +2305, 2491, 0, +2417, 2623, 0, +2535, 2755, 0, +2655, 2887, 0, +2777, 3019, 0, +2903, 3152, 0, +3029, 3283, 0, +3158, 3416, 0, +3287, 3548, 0, +3417, 3680, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1563, 0, 1318, +1561, 0, 1307, +1561, 0, 1288, +1561, 0, 1262, +1561, 0, 1225, +1561, 0, 1170, +1561, 0, 1084, +1561, 0, 935, +1561, 0, 605, +1561, 0, 0, +1561, 0, 0, +1561, 948, 0, +1695, 1432, 0, +1828, 1719, 0, +1961, 1940, 0, +2056, 2093, 0, +2140, 2226, 0, +2232, 2358, 0, +2332, 2491, 0, +2439, 2623, 0, +2551, 2755, 0, +2667, 2887, 0, +2787, 3019, 0, +2910, 3152, 0, +3035, 3283, 0, +3162, 3416, 0, +3290, 3548, 0, +3419, 3680, 0, +3549, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1444, +1695, 0, 1436, +1695, 0, 1422, +1695, 0, 1403, +1695, 0, 1376, +1695, 0, 1337, +1695, 0, 1279, +1695, 0, 1188, +1695, 0, 1029, +1695, 0, 653, +1695, 0, 0, +1695, 0, 0, +1695, 1066, 0, +1828, 1560, 0, +1961, 1849, 0, +2093, 2070, 0, +2190, 2226, 0, +2273, 2358, 0, +2366, 2491, 0, +2465, 2623, 0, +2572, 2755, 0, +2684, 2887, 0, +2800, 3019, 0, +2920, 3152, 0, +3042, 3283, 0, +3168, 3416, 0, +3294, 3548, 0, +3422, 3680, 0, +3551, 3812, 0, +3681, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1828, 0, 1572, +1828, 0, 1566, +1828, 0, 1556, +1828, 0, 1542, +1828, 0, 1522, +1828, 0, 1494, +1828, 0, 1454, +1828, 0, 1394, +1828, 0, 1300, +1828, 0, 1131, +1828, 0, 713, +1828, 0, 0, +1828, 0, 0, +1828, 1188, 0, +1961, 1689, 0, +2093, 1979, 0, +2226, 2201, 0, +2324, 2358, 0, +2407, 2491, 0, +2499, 2623, 0, +2598, 2755, 0, +2705, 2887, 0, +2816, 3019, 0, +2932, 3152, 0, +3052, 3283, 0, +3175, 3416, 0, +3300, 3548, 0, +3426, 3680, 0, +3554, 3812, 0, +3683, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +1961, 0, 1702, +1961, 0, 1697, +1961, 0, 1689, +1961, 0, 1679, +1961, 0, 1664, +1961, 0, 1644, +1961, 0, 1615, +1961, 0, 1574, +1961, 0, 1513, +1961, 0, 1415, +1961, 0, 1238, +1961, 0, 780, +1961, 0, 0, +1961, 0, 0, +1961, 1312, 0, +2093, 1818, 0, +2226, 2109, 0, +2358, 2332, 0, +2457, 2491, 0, +2540, 2623, 0, +2632, 2755, 0, +2731, 2887, 0, +2837, 3019, 0, +2949, 3152, 0, +3065, 3283, 0, +3184, 3416, 0, +3307, 3548, 0, +3432, 3680, 0, +3559, 3812, 0, +3687, 3944, 0, +3816, 4076, 0, +3946, 4095, 0, +2094, 0, 1831, +2093, 0, 1828, +2093, 0, 1822, +2093, 0, 1814, +2093, 0, 1804, +2093, 0, 1789, +2093, 0, 1768, +2093, 0, 1739, +2093, 0, 1698, +2093, 0, 1635, +2093, 0, 1534, +2093, 0, 1351, +2093, 0, 859, +2093, 0, 0, +2093, 0, 0, +2093, 1438, 0, +2226, 1948, 0, +2358, 2240, 0, +2491, 2464, 0, +2590, 2623, 0, +2673, 2755, 0, +2764, 2887, 0, +2863, 3019, 0, +2970, 3152, 0, +3081, 3283, 0, +3197, 3416, 0, +3317, 3548, 0, +3439, 3680, 0, +3564, 3812, 0, +3691, 3944, 0, +3819, 4076, 0, +3948, 4095, 0, +2226, 0, 1962, +2226, 0, 1959, +2226, 0, 1955, +2226, 0, 1949, +2226, 0, 1941, +2226, 0, 1930, +2226, 0, 1915, +2226, 0, 1894, +2226, 0, 1865, +2226, 0, 1823, +2226, 0, 1759, +2226, 0, 1656, +2226, 0, 1469, +2226, 0, 944, +2226, 0, 0, +2226, 0, 0, +2226, 1565, 0, +2358, 2079, 0, +2491, 2372, 0, +2623, 2595, 0, +2723, 2755, 0, +2805, 2887, 0, +2897, 3019, 0, +2996, 3152, 0, +3102, 3283, 0, +3213, 3416, 0, +3329, 3548, 0, +3449, 3680, 0, +3572, 3812, 0, +3696, 3944, 0, +3823, 4076, 0, +3951, 4095, 0, +2358, 0, 2093, +2358, 0, 2091, +2358, 0, 2087, +2358, 0, 2083, +2358, 0, 2077, +2358, 0, 2069, +2358, 0, 2058, +2358, 0, 2043, +2358, 0, 2022, +2358, 0, 1993, +2358, 0, 1950, +2358, 0, 1885, +2358, 0, 1781, +2358, 0, 1589, +2358, 0, 1039, +2358, 0, 0, +2358, 0, 0, +2358, 1694, 0, +2491, 2210, 0, +2623, 2503, 0, +2755, 2727, 0, +2855, 2887, 0, +2938, 3019, 0, +3029, 3152, 0, +3128, 3283, 0, +3234, 3416, 0, +3346, 3548, 0, +3462, 3680, 0, +3581, 3812, 0, +3704, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2224, +2491, 0, 2223, +2491, 0, 2220, +2491, 0, 2217, +2491, 0, 2212, +2491, 0, 2206, +2491, 0, 2199, +2491, 0, 2187, +2491, 0, 2172, +2491, 0, 2151, +2491, 0, 2121, +2491, 0, 2078, +2491, 0, 2013, +2491, 0, 1907, +2491, 0, 1713, +2491, 0, 1143, +2491, 0, 0, +2491, 0, 0, +2491, 1824, 0, +2623, 2341, 0, +2755, 2635, 0, +2887, 2859, 0, +2987, 3019, 0, +3070, 3152, 0, +3162, 3283, 0, +3261, 3416, 0, +3367, 3548, 0, +3478, 3680, 0, +3594, 3812, 0, +3713, 3944, 0, +3836, 4076, 0, +3961, 4095, 0, +2623, 0, 2355, +2623, 0, 2354, +2623, 0, 2352, +2623, 0, 2350, +2623, 0, 2347, +2623, 0, 2342, +2623, 0, 2336, +2623, 0, 2328, +2623, 0, 2317, +2623, 0, 2302, +2623, 0, 2281, +2623, 0, 2250, +2623, 0, 2207, +2623, 0, 2141, +2623, 0, 2035, +2623, 0, 1838, +2623, 0, 1251, +2623, 0, 0, +2623, 0, 0, +2623, 1954, 0, +2755, 2473, 0, +2887, 2767, 0, +3019, 2991, 0, +3120, 3152, 0, +3203, 3283, 0, +3294, 3416, 0, +3393, 3548, 0, +3499, 3680, 0, +3610, 3812, 0, +3726, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2487, +2755, 0, 2486, +2755, 0, 2485, +2755, 0, 2483, +2755, 0, 2481, +2755, 0, 2477, +2755, 0, 2473, +2755, 0, 2467, +2755, 0, 2459, +2755, 0, 2448, +2755, 0, 2432, +2755, 0, 2411, +2755, 0, 2381, +2755, 0, 2337, +2755, 0, 2271, +2755, 0, 2164, +2755, 0, 1966, +2755, 0, 1367, +2755, 0, 0, +2755, 0, 0, +2755, 2084, 0, +2887, 2604, 0, +3019, 2898, 0, +3152, 3123, 0, +3252, 3283, 0, +3335, 3416, 0, +3426, 3548, 0, +3525, 3680, 0, +3631, 3812, 0, +3742, 3944, 0, +3858, 4076, 0, +3978, 4095, 0, +2887, 0, 2619, +2887, 0, 2618, +2887, 0, 2617, +2887, 0, 2616, +2887, 0, 2614, +2887, 0, 2612, +2887, 0, 2608, +2887, 0, 2604, +2887, 0, 2598, +2887, 0, 2589, +2887, 0, 2578, +2887, 0, 2563, +2887, 0, 2542, +2887, 0, 2511, +2887, 0, 2467, +2887, 0, 2401, +2887, 0, 2294, +2887, 0, 2094, +2887, 0, 1483, +2887, 0, 0, +2887, 0, 0, +2887, 2215, 0, +3019, 2735, 0, +3152, 3031, 0, +3283, 3254, 0, +3385, 3416, 0, +3467, 3548, 0, +3558, 3680, 0, +3657, 3812, 0, +3763, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2750, +3019, 0, 2750, +3019, 0, 2749, +3019, 0, 2748, +3019, 0, 2747, +3019, 0, 2745, +3019, 0, 2742, +3019, 0, 2739, +3019, 0, 2735, +3019, 0, 2729, +3019, 0, 2720, +3019, 0, 2709, +3019, 0, 2694, +3019, 0, 2672, +3019, 0, 2642, +3019, 0, 2598, +3019, 0, 2531, +3019, 0, 2424, +3019, 0, 2222, +3019, 0, 1602, +3019, 0, 0, +3019, 0, 0, +3019, 2346, 0, +3152, 2868, 0, +3283, 3162, 0, +3416, 3387, 0, +3516, 3548, 0, +3599, 3680, 0, +3691, 3812, 0, +3790, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2883, +3152, 0, 2882, +3152, 0, 2881, +3152, 0, 2881, +3152, 0, 2880, +3152, 0, 2878, +3152, 0, 2877, +3152, 0, 2874, +3152, 0, 2871, +3152, 0, 2866, +3152, 0, 2860, +3152, 0, 2852, +3152, 0, 2841, +3152, 0, 2825, +3152, 0, 2804, +3152, 0, 2773, +3152, 0, 2729, +3152, 0, 2663, +3152, 0, 2555, +3152, 0, 2353, +3152, 0, 1726, +3152, 0, 0, +3152, 0, 0, +3152, 2478, 0, +3283, 2999, 0, +3416, 3294, 0, +3548, 3519, 0, +3649, 3680, 0, +3731, 3812, 0, +3823, 3944, 0, +3922, 4076, 0, +4027, 4095, 0, +3284, 0, 3014, +3283, 0, 3014, +3283, 0, 3014, +3283, 0, 3013, +3283, 0, 3012, +3283, 0, 3011, +3283, 0, 3010, +3283, 0, 3008, +3283, 0, 3005, +3283, 0, 3002, +3283, 0, 2998, +3283, 0, 2992, +3283, 0, 2983, +3283, 0, 2972, +3283, 0, 2957, +3283, 0, 2935, +3283, 0, 2905, +3283, 0, 2860, +3283, 0, 2793, +3283, 0, 2685, +3283, 0, 2482, +3283, 0, 1849, +3283, 0, 0, +3283, 0, 0, +3283, 2609, 0, +3416, 3132, 0, +3548, 3426, 0, +3680, 3651, 0, +3781, 3812, 0, +3864, 3944, 0, +3955, 4076, 0, +4054, 4095, 0, +3416, 0, 3146, +3416, 0, 3146, +3416, 0, 3146, +3416, 0, 3145, +3416, 0, 3145, +3416, 0, 3144, +3416, 0, 3143, +3416, 0, 3141, +3416, 0, 3140, +3416, 0, 3137, +3416, 0, 3134, +3416, 0, 3129, +3416, 0, 3123, +3416, 0, 3115, +3416, 0, 3104, +3416, 0, 3088, +3416, 0, 3067, +3416, 0, 3036, +3416, 0, 2992, +3416, 0, 2925, +3416, 0, 2817, +3416, 0, 2614, +3416, 0, 1981, +3416, 0, 0, +3416, 0, 0, +3416, 2741, 0, +3548, 3264, 0, +3680, 3558, 0, +3812, 3783, 0, +3913, 3944, 0, +3996, 4076, 0, +4087, 4095, 0, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3277, +3548, 0, 3277, +3548, 0, 3276, +3548, 0, 3275, +3548, 0, 3273, +3548, 0, 3272, +3548, 0, 3269, +3548, 0, 3266, +3548, 0, 3261, +3548, 0, 3255, +3548, 0, 3247, +3548, 0, 3236, +3548, 0, 3220, +3548, 0, 3199, +3548, 0, 3168, +3548, 0, 3124, +3548, 0, 3057, +3548, 0, 2948, +3548, 0, 2745, +3548, 0, 2107, +3548, 0, 0, +3548, 0, 0, +3548, 2873, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3408, +3680, 0, 3407, +3680, 0, 3405, +3680, 0, 3403, +3680, 0, 3401, +3680, 0, 3398, +3680, 0, 3393, +3680, 0, 3387, +3680, 0, 3379, +3680, 0, 3368, +3680, 0, 3352, +3680, 0, 3331, +3680, 0, 3300, +3680, 0, 3256, +3680, 0, 3188, +3680, 0, 3080, +3680, 0, 2877, +3680, 0, 2239, +3680, 0, 0, +3680, 0, 0, +3680, 3005, 0, +3812, 3528, 0, +3944, 3822, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3540, +3812, 0, 3538, +3812, 0, 3537, +3812, 0, 3536, +3812, 0, 3533, +3812, 0, 3530, +3812, 0, 3525, +3812, 0, 3519, +3812, 0, 3511, +3812, 0, 3499, +3812, 0, 3484, +3812, 0, 3462, +3812, 0, 3432, +3812, 0, 3388, +3812, 0, 3321, +3812, 0, 3212, +3812, 0, 3009, +3812, 0, 2369, +3812, 0, 0, +3812, 0, 0, +3812, 3137, 0, +3944, 3660, 0, +4076, 3954, 0, +4095, 4095, 0, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3671, +3944, 0, 3669, +3944, 0, 3667, +3944, 0, 3665, +3944, 0, 3662, +3944, 0, 3657, +3944, 0, 3651, +3944, 0, 3643, +3944, 0, 3632, +3944, 0, 3616, +3944, 0, 3595, +3944, 0, 3564, +3944, 0, 3520, +3944, 0, 3452, +3944, 0, 3344, +3944, 0, 3140, +3944, 0, 2498, +3944, 0, 0, +3944, 0, 0, +3944, 3269, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3803, +4076, 0, 3801, +4076, 0, 3799, +4076, 0, 3797, +4076, 0, 3793, +4076, 0, 3789, +4076, 0, 3783, +4076, 0, 3775, +4076, 0, 3763, +4076, 0, 3748, +4076, 0, 3726, +4076, 0, 3696, +4076, 0, 3651, +4076, 0, 3584, +4076, 0, 3475, +4076, 0, 3272, +4076, 0, 2627, +4076, 0, 0, +4076, 0, 0, +4076, 3401, 0, +4095, 3924, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3933, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3926, +4095, 0, 3921, +4095, 0, 3915, +4095, 0, 3907, +4095, 0, 3896, +4095, 0, 3880, +4095, 0, 3859, +4095, 0, 3828, +4095, 0, 3784, +4095, 0, 3717, +4095, 0, 3608, +4095, 0, 3404, +4095, 0, 2762, +4095, 0, 0, +4095, 0, 0, +4095, 3533, 0, +0, 201, 318, +0, 318, 300, +0, 318, 93, +0, 466, 0, +127, 609, 0, +334, 750, 0, +515, 888, 0, +681, 1025, 0, +836, 1160, 0, +985, 1295, 0, +1130, 1429, 0, +1271, 1563, 0, +1410, 1696, 0, +1547, 1828, 0, +1682, 1961, 0, +1817, 2094, 0, +1951, 2226, 0, +2085, 2358, 0, +2218, 2491, 0, +2351, 2623, 0, +2484, 2755, 0, +2616, 2887, 0, +2748, 3019, 0, +2881, 3152, 0, +3013, 3284, 0, +3145, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 13, 318, +86, 229, 295, +86, 295, 174, +145, 450, 15, +303, 598, 0, +453, 741, 0, +599, 882, 0, +740, 1020, 0, +879, 1157, 0, +1017, 1292, 0, +1153, 1427, 0, +1288, 1561, 0, +1422, 1695, 0, +1556, 1828, 0, +1689, 1961, 0, +1822, 2093, 0, +1955, 2226, 0, +2087, 2358, 0, +2220, 2491, 0, +2352, 2623, 0, +2485, 2755, 0, +2617, 2887, 0, +2749, 3019, 0, +2881, 3152, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +93, 0, 318, +174, 86, 295, +264, 264, 264, +361, 427, 218, +466, 582, 148, +576, 730, 34, +691, 873, 0, +810, 1014, 0, +932, 1152, 0, +1056, 1289, 0, +1182, 1424, 0, +1310, 1559, 0, +1439, 1693, 0, +1568, 1827, 0, +1699, 1960, 0, +1829, 2093, 0, +1960, 2225, 0, +2091, 2358, 0, +2223, 2490, 0, +2355, 2623, 0, +2486, 2755, 0, +2618, 2887, 0, +2750, 3019, 0, +2882, 3152, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +388, 0, 466, +432, 15, 450, +427, 218, 361, +427, 306, 218, +582, 564, 148, +683, 730, 34, +776, 873, 0, +877, 1014, 0, +984, 1152, 0, +1096, 1289, 0, +1213, 1424, 0, +1333, 1559, 0, +1456, 1693, 0, +1582, 1827, 0, +1708, 1960, 0, +1837, 2093, 0, +1966, 2225, 0, +2096, 2358, 0, +2226, 2490, 0, +2357, 2623, 0, +2488, 2755, 0, +2620, 2887, 0, +2751, 3019, 0, +2883, 3152, 0, +3014, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3410, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +609, 0, 606, +598, 0, 551, +582, 148, 466, +582, 148, 277, +582, 357, 148, +730, 652, 34, +870, 873, 0, +954, 1014, 0, +1045, 1152, 0, +1145, 1289, 0, +1251, 1424, 0, +1363, 1559, 0, +1479, 1693, 0, +1599, 1827, 0, +1722, 1960, 0, +1847, 2093, 0, +1973, 2225, 0, +2101, 2358, 0, +2230, 2490, 0, +2360, 2623, 0, +2491, 2755, 0, +2621, 2887, 0, +2752, 3019, 0, +2884, 3152, 0, +3015, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +750, 0, 689, +741, 0, 644, +730, 34, 576, +730, 34, 435, +730, 34, 132, +730, 418, 34, +873, 749, 0, +1014, 987, 0, +1117, 1152, 0, +1203, 1289, 0, +1298, 1424, 0, +1400, 1559, 0, +1508, 1693, 0, +1621, 1827, 0, +1739, 1960, 0, +1860, 2093, 0, +1983, 2225, 0, +2109, 2358, 0, +2236, 2490, 0, +2364, 2623, 0, +2494, 2755, 0, +2624, 2887, 0, +2754, 3019, 0, +2885, 3152, 0, +3016, 3283, 0, +3148, 3416, 0, +3280, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +888, 0, 781, +882, 0, 745, +873, 0, 691, +873, 0, 585, +873, 0, 390, +873, 0, 0, +873, 488, 0, +1014, 852, 0, +1152, 1102, 0, +1271, 1289, 0, +1353, 1424, 0, +1445, 1559, 0, +1544, 1693, 0, +1650, 1827, 0, +1761, 1960, 0, +1877, 2093, 0, +1996, 2225, 0, +2119, 2358, 0, +2243, 2490, 0, +2370, 2623, 0, +2498, 2755, 0, +2627, 2887, 0, +2757, 3019, 0, +2887, 3152, 0, +3018, 3283, 0, +3149, 3416, 0, +3280, 3548, 0, +3412, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1025, 0, 881, +1020, 0, 852, +1014, 0, 810, +1014, 0, 731, +1014, 0, 598, +1014, 0, 323, +1014, 0, 0, +1014, 568, 0, +1152, 960, 0, +1289, 1221, 0, +1418, 1424, 0, +1499, 1559, 0, +1588, 1693, 0, +1684, 1827, 0, +1789, 1960, 0, +1898, 2093, 0, +2013, 2225, 0, +2132, 2358, 0, +2253, 2490, 0, +2378, 2623, 0, +2504, 2755, 0, +2631, 2887, 0, +2760, 3019, 0, +2890, 3152, 0, +3019, 3283, 0, +3150, 3416, 0, +3281, 3548, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1160, 0, 987, +1157, 0, 964, +1152, 0, 932, +1152, 0, 873, +1152, 0, 779, +1152, 0, 614, +1152, 0, 214, +1152, 0, 0, +1152, 656, 0, +1289, 1075, 0, +1424, 1343, 0, +1559, 1556, 0, +1640, 1693, 0, +1727, 1827, 0, +1823, 1960, 0, +1926, 2093, 0, +2034, 2225, 0, +2148, 2358, 0, +2266, 2490, 0, +2387, 2623, 0, +2511, 2755, 0, +2637, 2887, 0, +2764, 3019, 0, +2893, 3152, 0, +3022, 3283, 0, +3152, 3416, 0, +3282, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1295, 0, 1099, +1292, 0, 1081, +1289, 0, 1056, +1289, 0, 1012, +1289, 0, 945, +1289, 0, 837, +1289, 0, 635, +1289, 0, 9, +1289, 0, 0, +1289, 753, 0, +1424, 1193, 0, +1559, 1468, 0, +1693, 1683, 0, +1779, 1827, 0, +1865, 1960, 0, +1960, 2093, 0, +2061, 2225, 0, +2169, 2358, 0, +2283, 2490, 0, +2400, 2623, 0, +2521, 2755, 0, +2644, 2887, 0, +2770, 3019, 0, +2897, 3152, 0, +3025, 3283, 0, +3154, 3416, 0, +3284, 3548, 0, +3415, 3680, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1215, +1427, 0, 1201, +1424, 0, 1182, +1424, 0, 1149, +1424, 0, 1101, +1424, 0, 1027, +1424, 0, 904, +1424, 0, 662, +1424, 0, 0, +1424, 0, 0, +1424, 856, 0, +1559, 1315, 0, +1693, 1594, 0, +1827, 1812, 0, +1917, 1960, 0, +2002, 2093, 0, +2095, 2225, 0, +2196, 2358, 0, +2304, 2490, 0, +2416, 2623, 0, +2533, 2755, 0, +2654, 2887, 0, +2777, 3019, 0, +2903, 3152, 0, +3029, 3283, 0, +3157, 3416, 0, +3287, 3548, 0, +3417, 3680, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1563, 0, 1335, +1561, 0, 1325, +1559, 0, 1310, +1559, 0, 1285, +1559, 0, 1250, +1559, 0, 1198, +1559, 0, 1118, +1559, 0, 981, +1559, 0, 696, +1559, 0, 0, +1559, 0, 0, +1559, 966, 0, +1693, 1439, 0, +1827, 1722, 0, +1960, 1941, 0, +2053, 2093, 0, +2137, 2225, 0, +2230, 2358, 0, +2331, 2490, 0, +2437, 2623, 0, +2550, 2755, 0, +2667, 2887, 0, +2787, 3019, 0, +2910, 3152, 0, +3035, 3283, 0, +3162, 3416, 0, +3290, 3548, 0, +3419, 3680, 0, +3549, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1457, +1695, 0, 1450, +1693, 0, 1439, +1693, 0, 1420, +1693, 0, 1394, +1693, 0, 1357, +1693, 0, 1302, +1693, 0, 1216, +1693, 0, 1067, +1693, 0, 736, +1693, 0, 0, +1693, 0, 0, +1693, 1080, 0, +1827, 1565, 0, +1960, 1851, 0, +2093, 2071, 0, +2188, 2225, 0, +2271, 2358, 0, +2364, 2490, 0, +2464, 2623, 0, +2571, 2755, 0, +2683, 2887, 0, +2799, 3019, 0, +2919, 3152, 0, +3042, 3283, 0, +3167, 3416, 0, +3294, 3548, 0, +3422, 3680, 0, +3551, 3812, 0, +3681, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1828, 0, 1582, +1828, 0, 1576, +1827, 0, 1568, +1827, 0, 1554, +1827, 0, 1535, +1827, 0, 1508, +1827, 0, 1469, +1827, 0, 1412, +1827, 0, 1321, +1827, 0, 1161, +1827, 0, 786, +1827, 0, 0, +1827, 0, 0, +1827, 1198, 0, +1960, 1692, 0, +2093, 1981, 0, +2225, 2202, 0, +2322, 2358, 0, +2406, 2490, 0, +2498, 2623, 0, +2598, 2755, 0, +2704, 2887, 0, +2816, 3019, 0, +2932, 3152, 0, +3052, 3283, 0, +3175, 3416, 0, +3300, 3548, 0, +3426, 3680, 0, +3554, 3812, 0, +3683, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +1961, 0, 1709, +1961, 0, 1705, +1960, 0, 1699, +1960, 0, 1688, +1960, 0, 1674, +1960, 0, 1654, +1960, 0, 1626, +1960, 0, 1586, +1960, 0, 1526, +1960, 0, 1431, +1960, 0, 1263, +1960, 0, 844, +1960, 0, 0, +1960, 0, 0, +1960, 1320, 0, +2093, 1821, 0, +2225, 2111, 0, +2358, 2333, 0, +2456, 2490, 0, +2539, 2623, 0, +2631, 2755, 0, +2731, 2887, 0, +2836, 3019, 0, +2948, 3152, 0, +3064, 3283, 0, +3184, 3416, 0, +3307, 3548, 0, +3432, 3680, 0, +3559, 3812, 0, +3687, 3944, 0, +3816, 4076, 0, +3945, 4095, 0, +2094, 0, 1837, +2093, 0, 1834, +2093, 0, 1829, +2093, 0, 1821, +2093, 0, 1811, +2093, 0, 1796, +2093, 0, 1776, +2093, 0, 1748, +2093, 0, 1706, +2093, 0, 1645, +2093, 0, 1547, +2093, 0, 1370, +2093, 0, 913, +2093, 0, 0, +2093, 0, 0, +2093, 1444, 0, +2225, 1950, 0, +2358, 2241, 0, +2490, 2464, 0, +2589, 2623, 0, +2672, 2755, 0, +2764, 2887, 0, +2863, 3019, 0, +2969, 3152, 0, +3081, 3283, 0, +3197, 3416, 0, +3317, 3548, 0, +3439, 3680, 0, +3564, 3812, 0, +3691, 3944, 0, +3819, 4076, 0, +3948, 4095, 0, +2226, 0, 1966, +2226, 0, 1963, +2225, 0, 1960, +2225, 0, 1954, +2225, 0, 1946, +2225, 0, 1936, +2225, 0, 1921, +2225, 0, 1900, +2225, 0, 1871, +2225, 0, 1829, +2225, 0, 1767, +2225, 0, 1666, +2225, 0, 1484, +2225, 0, 990, +2225, 0, 0, +2225, 0, 0, +2225, 1570, 0, +2358, 2080, 0, +2490, 2373, 0, +2623, 2596, 0, +2722, 2755, 0, +2805, 2887, 0, +2896, 3019, 0, +2996, 3152, 0, +3101, 3283, 0, +3213, 3416, 0, +3329, 3548, 0, +3449, 3680, 0, +3572, 3812, 0, +3696, 3944, 0, +3823, 4076, 0, +3951, 4095, 0, +2358, 0, 2096, +2358, 0, 2094, +2358, 0, 2091, +2358, 0, 2087, +2358, 0, 2081, +2358, 0, 2073, +2358, 0, 2062, +2358, 0, 2047, +2358, 0, 2027, +2358, 0, 1997, +2358, 0, 1955, +2358, 0, 1891, +2358, 0, 1788, +2358, 0, 1600, +2358, 0, 1076, +2358, 0, 0, +2358, 0, 0, +2358, 1698, 0, +2490, 2211, 0, +2623, 2504, 0, +2755, 2728, 0, +2855, 2887, 0, +2938, 3019, 0, +3029, 3152, 0, +3128, 3283, 0, +3234, 3416, 0, +3346, 3548, 0, +3462, 3680, 0, +3581, 3812, 0, +3704, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2226, +2491, 0, 2225, +2490, 0, 2223, +2490, 0, 2220, +2490, 0, 2215, +2490, 0, 2209, +2490, 0, 2202, +2490, 0, 2190, +2490, 0, 2175, +2490, 0, 2154, +2490, 0, 2125, +2490, 0, 2082, +2490, 0, 2017, +2490, 0, 1913, +2490, 0, 1722, +2490, 0, 1173, +2490, 0, 0, +2490, 0, 0, +2490, 1826, 0, +2623, 2342, 0, +2755, 2636, 0, +2887, 2859, 0, +2987, 3019, 0, +3070, 3152, 0, +3161, 3283, 0, +3260, 3416, 0, +3366, 3548, 0, +3478, 3680, 0, +3594, 3812, 0, +3713, 3944, 0, +3836, 4076, 0, +3961, 4095, 0, +2623, 0, 2357, +2623, 0, 2356, +2623, 0, 2355, +2623, 0, 2352, +2623, 0, 2349, +2623, 0, 2345, +2623, 0, 2338, +2623, 0, 2331, +2623, 0, 2320, +2623, 0, 2304, +2623, 0, 2283, +2623, 0, 2253, +2623, 0, 2210, +2623, 0, 2144, +2623, 0, 2039, +2623, 0, 1845, +2623, 0, 1275, +2623, 0, 0, +2623, 0, 0, +2623, 1956, 0, +2755, 2474, 0, +2887, 2767, 0, +3019, 2991, 0, +3120, 3152, 0, +3202, 3283, 0, +3294, 3416, 0, +3393, 3548, 0, +3499, 3680, 0, +3610, 3812, 0, +3726, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2488, +2755, 0, 2488, +2755, 0, 2486, +2755, 0, 2485, +2755, 0, 2482, +2755, 0, 2479, +2755, 0, 2475, +2755, 0, 2469, +2755, 0, 2460, +2755, 0, 2449, +2755, 0, 2434, +2755, 0, 2413, +2755, 0, 2383, +2755, 0, 2339, +2755, 0, 2274, +2755, 0, 2167, +2755, 0, 1971, +2755, 0, 1386, +2755, 0, 0, +2755, 0, 0, +2755, 2086, 0, +2887, 2605, 0, +3019, 2898, 0, +3152, 3123, 0, +3252, 3283, 0, +3335, 3416, 0, +3426, 3548, 0, +3525, 3680, 0, +3631, 3812, 0, +3742, 3944, 0, +3858, 4076, 0, +3978, 4095, 0, +2887, 0, 2620, +2887, 0, 2619, +2887, 0, 2618, +2887, 0, 2617, +2887, 0, 2615, +2887, 0, 2613, +2887, 0, 2609, +2887, 0, 2605, +2887, 0, 2599, +2887, 0, 2591, +2887, 0, 2580, +2887, 0, 2564, +2887, 0, 2543, +2887, 0, 2513, +2887, 0, 2469, +2887, 0, 2403, +2887, 0, 2296, +2887, 0, 2098, +2887, 0, 1497, +2887, 0, 0, +2887, 0, 0, +2887, 2217, 0, +3019, 2736, 0, +3152, 3031, 0, +3283, 3255, 0, +3384, 3416, 0, +3467, 3548, 0, +3558, 3680, 0, +3657, 3812, 0, +3763, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2751, +3019, 0, 2751, +3019, 0, 2750, +3019, 0, 2749, +3019, 0, 2747, +3019, 0, 2746, +3019, 0, 2743, +3019, 0, 2740, +3019, 0, 2735, +3019, 0, 2729, +3019, 0, 2721, +3019, 0, 2710, +3019, 0, 2695, +3019, 0, 2673, +3019, 0, 2643, +3019, 0, 2599, +3019, 0, 2533, +3019, 0, 2426, +3019, 0, 2225, +3019, 0, 1613, +3019, 0, 0, +3019, 0, 0, +3019, 2347, 0, +3152, 2869, 0, +3283, 3163, 0, +3416, 3387, 0, +3516, 3548, 0, +3599, 3680, 0, +3690, 3812, 0, +3790, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2883, +3152, 0, 2883, +3152, 0, 2882, +3152, 0, 2881, +3152, 0, 2880, +3152, 0, 2879, +3152, 0, 2877, +3152, 0, 2875, +3152, 0, 2871, +3152, 0, 2867, +3152, 0, 2861, +3152, 0, 2853, +3152, 0, 2842, +3152, 0, 2826, +3152, 0, 2805, +3152, 0, 2774, +3152, 0, 2730, +3152, 0, 2664, +3152, 0, 2556, +3152, 0, 2355, +3152, 0, 1735, +3152, 0, 0, +3152, 0, 0, +3152, 2479, 0, +3283, 2999, 0, +3416, 3294, 0, +3548, 3519, 0, +3649, 3680, 0, +3731, 3812, 0, +3823, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3014, +3283, 0, 3014, +3283, 0, 3014, +3283, 0, 3013, +3283, 0, 3013, +3283, 0, 3011, +3283, 0, 3010, +3283, 0, 3008, +3283, 0, 3006, +3283, 0, 3002, +3283, 0, 2998, +3283, 0, 2992, +3283, 0, 2984, +3283, 0, 2973, +3283, 0, 2957, +3283, 0, 2936, +3283, 0, 2905, +3283, 0, 2861, +3283, 0, 2794, +3283, 0, 2686, +3283, 0, 2484, +3283, 0, 1856, +3283, 0, 0, +3283, 0, 0, +3283, 2610, 0, +3416, 3132, 0, +3548, 3427, 0, +3680, 3651, 0, +3781, 3812, 0, +3863, 3944, 0, +3955, 4076, 0, +4054, 4095, 0, +3416, 0, 3147, +3416, 0, 3146, +3416, 0, 3146, +3416, 0, 3146, +3416, 0, 3145, +3416, 0, 3144, +3416, 0, 3143, +3416, 0, 3142, +3416, 0, 3140, +3416, 0, 3138, +3416, 0, 3134, +3416, 0, 3130, +3416, 0, 3124, +3416, 0, 3115, +3416, 0, 3104, +3416, 0, 3089, +3416, 0, 3067, +3416, 0, 3037, +3416, 0, 2992, +3416, 0, 2926, +3416, 0, 2817, +3416, 0, 2615, +3416, 0, 1986, +3416, 0, 0, +3416, 0, 0, +3416, 2742, 0, +3548, 3264, 0, +3680, 3559, 0, +3812, 3783, 0, +3913, 3944, 0, +3996, 4076, 0, +4087, 4095, 0, +3548, 0, 3279, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3277, +3548, 0, 3277, +3548, 0, 3276, +3548, 0, 3275, +3548, 0, 3274, +3548, 0, 3272, +3548, 0, 3269, +3548, 0, 3266, +3548, 0, 3261, +3548, 0, 3256, +3548, 0, 3247, +3548, 0, 3236, +3548, 0, 3221, +3548, 0, 3199, +3548, 0, 3168, +3548, 0, 3124, +3548, 0, 3057, +3548, 0, 2949, +3548, 0, 2746, +3548, 0, 2111, +3548, 0, 0, +3548, 0, 0, +3548, 2873, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3407, +3680, 0, 3405, +3680, 0, 3404, +3680, 0, 3401, +3680, 0, 3398, +3680, 0, 3393, +3680, 0, 3387, +3680, 0, 3379, +3680, 0, 3368, +3680, 0, 3353, +3680, 0, 3331, +3680, 0, 3300, +3680, 0, 3256, +3680, 0, 3189, +3680, 0, 3081, +3680, 0, 2877, +3680, 0, 2242, +3680, 0, 0, +3680, 0, 0, +3680, 3005, 0, +3812, 3528, 0, +3944, 3822, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3539, +3812, 0, 3537, +3812, 0, 3536, +3812, 0, 3533, +3812, 0, 3530, +3812, 0, 3525, +3812, 0, 3519, +3812, 0, 3511, +3812, 0, 3500, +3812, 0, 3484, +3812, 0, 3463, +3812, 0, 3432, +3812, 0, 3388, +3812, 0, 3321, +3812, 0, 3212, +3812, 0, 3009, +3812, 0, 2371, +3812, 0, 0, +3812, 0, 0, +3812, 3137, 0, +3944, 3660, 0, +4076, 3954, 0, +4095, 4095, 0, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3669, +3944, 0, 3668, +3944, 0, 3665, +3944, 0, 3662, +3944, 0, 3657, +3944, 0, 3651, +3944, 0, 3643, +3944, 0, 3632, +3944, 0, 3616, +3944, 0, 3595, +3944, 0, 3564, +3944, 0, 3520, +3944, 0, 3453, +3944, 0, 3344, +3944, 0, 3140, +3944, 0, 2500, +3944, 0, 0, +3944, 0, 0, +3944, 3269, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3803, +4076, 0, 3801, +4076, 0, 3799, +4076, 0, 3797, +4076, 0, 3793, +4076, 0, 3789, +4076, 0, 3783, +4076, 0, 3775, +4076, 0, 3763, +4076, 0, 3748, +4076, 0, 3726, +4076, 0, 3696, +4076, 0, 3651, +4076, 0, 3585, +4076, 0, 3476, +4076, 0, 3272, +4076, 0, 2628, +4076, 0, 0, +4076, 0, 0, +4076, 3401, 0, +4095, 3924, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3933, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3926, +4095, 0, 3921, +4095, 0, 3915, +4095, 0, 3907, +4095, 0, 3896, +4095, 0, 3880, +4095, 0, 3859, +4095, 0, 3828, +4095, 0, 3784, +4095, 0, 3717, +4095, 0, 3608, +4095, 0, 3404, +4095, 0, 2762, +4095, 0, 0, +4095, 0, 0, +4095, 3533, 0, +0, 312, 466, +0, 419, 466, +0, 466, 388, +0, 466, 154, +0, 609, 0, +59, 750, 0, +350, 888, 0, +573, 1025, 0, +762, 1160, 0, +934, 1295, 0, +1092, 1429, 0, +1244, 1563, 0, +1390, 1696, 0, +1532, 1828, 0, +1672, 1961, 0, +1809, 2094, 0, +1945, 2226, 0, +2080, 2358, 0, +2215, 2491, 0, +2348, 2623, 0, +2482, 2755, 0, +2615, 2887, 0, +2747, 3019, 0, +2880, 3152, 0, +3012, 3284, 0, +3145, 3416, 0, +3277, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 171, 466, +15, 333, 450, +15, 450, 432, +15, 450, 225, +0, 598, 0, +258, 741, 0, +466, 882, 0, +647, 1020, 0, +813, 1157, 0, +968, 1292, 0, +1118, 1427, 0, +1262, 1561, 0, +1403, 1695, 0, +1542, 1828, 0, +1679, 1961, 0, +1814, 2093, 0, +1949, 2226, 0, +2083, 2358, 0, +2217, 2491, 0, +2350, 2623, 0, +2483, 2755, 0, +2616, 2887, 0, +2748, 3019, 0, +2881, 3152, 0, +3013, 3283, 0, +3145, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 0, 466, +15, 145, 450, +218, 361, 427, +218, 427, 306, +277, 582, 148, +435, 730, 34, +585, 873, 0, +731, 1014, 0, +873, 1152, 0, +1012, 1289, 0, +1149, 1424, 0, +1285, 1559, 0, +1420, 1693, 0, +1554, 1827, 0, +1688, 1960, 0, +1821, 2093, 0, +1954, 2225, 0, +2087, 2358, 0, +2220, 2490, 0, +2352, 2623, 0, +2485, 2755, 0, +2617, 2887, 0, +2749, 3019, 0, +2881, 3152, 0, +3013, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +154, 0, 466, +225, 15, 450, +306, 218, 427, +396, 396, 396, +494, 560, 350, +598, 714, 280, +708, 862, 166, +823, 1005, 0, +942, 1146, 0, +1064, 1284, 0, +1188, 1421, 0, +1315, 1557, 0, +1442, 1691, 0, +1571, 1825, 0, +1700, 1959, 0, +1830, 2092, 0, +1961, 2225, 0, +2092, 2357, 0, +2223, 2490, 0, +2355, 2622, 0, +2487, 2755, 0, +2619, 2887, 0, +2750, 3019, 0, +2882, 3151, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +485, 0, 609, +520, 0, 598, +564, 148, 582, +560, 350, 494, +560, 438, 350, +714, 696, 280, +815, 862, 166, +908, 1005, 0, +1009, 1146, 0, +1116, 1284, 0, +1228, 1421, 0, +1345, 1557, 0, +1465, 1691, 0, +1588, 1825, 0, +1714, 1959, 0, +1841, 2092, 0, +1969, 2225, 0, +2098, 2357, 0, +2228, 2490, 0, +2358, 2622, 0, +2489, 2755, 0, +2620, 2887, 0, +2751, 3019, 0, +2883, 3151, 0, +3015, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +723, 0, 750, +741, 0, 738, +730, 34, 683, +714, 280, 598, +714, 280, 409, +714, 490, 280, +862, 784, 166, +1002, 1005, 0, +1086, 1146, 0, +1177, 1284, 0, +1277, 1421, 0, +1384, 1557, 0, +1495, 1691, 0, +1611, 1825, 0, +1731, 1959, 0, +1854, 2092, 0, +1979, 2225, 0, +2105, 2357, 0, +2234, 2490, 0, +2362, 2622, 0, +2492, 2755, 0, +2623, 2887, 0, +2753, 3019, 0, +2885, 3151, 0, +3016, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +888, 0, 852, +882, 0, 822, +873, 0, 776, +862, 166, 708, +862, 166, 567, +862, 166, 264, +862, 550, 166, +1005, 881, 0, +1146, 1119, 0, +1249, 1284, 0, +1335, 1421, 0, +1430, 1557, 0, +1532, 1691, 0, +1640, 1825, 0, +1754, 1959, 0, +1871, 2092, 0, +1992, 2225, 0, +2115, 2357, 0, +2241, 2490, 0, +2368, 2622, 0, +2497, 2755, 0, +2626, 2887, 0, +2756, 3019, 0, +2886, 3151, 0, +3017, 3283, 0, +3148, 3416, 0, +3280, 3548, 0, +3412, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1025, 0, 939, +1020, 0, 914, +1014, 0, 877, +1005, 0, 823, +1005, 0, 717, +1005, 0, 523, +1005, 0, 0, +1005, 620, 0, +1146, 983, 0, +1284, 1235, 0, +1403, 1421, 0, +1486, 1557, 0, +1577, 1691, 0, +1676, 1825, 0, +1781, 1959, 0, +1893, 2092, 0, +2009, 2225, 0, +2128, 2357, 0, +2251, 2490, 0, +2375, 2622, 0, +2502, 2755, 0, +2630, 2887, 0, +2759, 3019, 0, +2889, 3151, 0, +3019, 3283, 0, +3150, 3416, 0, +3281, 3548, 0, +3412, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1160, 0, 1033, +1157, 0, 1013, +1152, 0, 984, +1146, 0, 942, +1146, 0, 863, +1146, 0, 730, +1146, 0, 455, +1146, 0, 0, +1146, 700, 0, +1284, 1093, 0, +1421, 1353, 0, +1551, 1557, 0, +1631, 1691, 0, +1720, 1825, 0, +1817, 1959, 0, +1920, 2092, 0, +2030, 2225, 0, +2145, 2357, 0, +2264, 2490, 0, +2385, 2622, 0, +2510, 2755, 0, +2636, 2887, 0, +2763, 3019, 0, +2892, 3151, 0, +3021, 3283, 0, +3151, 3416, 0, +3282, 3548, 0, +3413, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1295, 0, 1135, +1292, 0, 1119, +1289, 0, 1096, +1284, 0, 1064, +1284, 0, 1005, +1284, 0, 911, +1284, 0, 746, +1284, 0, 346, +1284, 0, 0, +1284, 788, 0, +1421, 1207, 0, +1557, 1476, 0, +1691, 1688, 0, +1772, 1825, 0, +1860, 1959, 0, +1955, 2092, 0, +2058, 2225, 0, +2166, 2357, 0, +2280, 2490, 0, +2398, 2622, 0, +2520, 2755, 0, +2643, 2887, 0, +2769, 3019, 0, +2896, 3151, 0, +3025, 3283, 0, +3154, 3416, 0, +3284, 3548, 0, +3415, 3680, 0, +3545, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1244, +1427, 0, 1231, +1424, 0, 1213, +1421, 0, 1188, +1421, 0, 1144, +1421, 0, 1077, +1421, 0, 969, +1421, 0, 767, +1421, 0, 141, +1421, 0, 0, +1421, 885, 0, +1557, 1326, 0, +1691, 1600, 0, +1825, 1816, 0, +1911, 1959, 0, +1997, 2092, 0, +2092, 2225, 0, +2193, 2357, 0, +2302, 2490, 0, +2414, 2622, 0, +2532, 2755, 0, +2653, 2887, 0, +2776, 3019, 0, +2902, 3151, 0, +3029, 3283, 0, +3157, 3416, 0, +3286, 3548, 0, +3416, 3680, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1563, 0, 1357, +1561, 0, 1347, +1559, 0, 1333, +1557, 0, 1315, +1557, 0, 1281, +1557, 0, 1233, +1557, 0, 1159, +1557, 0, 1037, +1557, 0, 794, +1557, 0, 0, +1557, 0, 0, +1557, 988, 0, +1691, 1447, 0, +1825, 1727, 0, +1959, 1944, 0, +2049, 2092, 0, +2134, 2225, 0, +2228, 2357, 0, +2329, 2490, 0, +2436, 2622, 0, +2549, 2755, 0, +2666, 2887, 0, +2786, 3019, 0, +2909, 3151, 0, +3034, 3283, 0, +3161, 3416, 0, +3290, 3548, 0, +3419, 3680, 0, +3549, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1475, +1695, 0, 1467, +1693, 0, 1456, +1691, 0, 1442, +1691, 0, 1417, +1691, 0, 1382, +1691, 0, 1330, +1691, 0, 1249, +1691, 0, 1113, +1691, 0, 827, +1691, 0, 0, +1691, 0, 0, +1691, 1098, 0, +1825, 1571, 0, +1959, 1854, 0, +2092, 2073, 0, +2185, 2225, 0, +2269, 2357, 0, +2362, 2490, 0, +2463, 2622, 0, +2570, 2755, 0, +2682, 2887, 0, +2798, 3019, 0, +2919, 3151, 0, +3042, 3283, 0, +3167, 3416, 0, +3294, 3548, 0, +3422, 3680, 0, +3551, 3812, 0, +3681, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1828, 0, 1596, +1828, 0, 1590, +1827, 0, 1582, +1825, 0, 1571, +1825, 0, 1552, +1825, 0, 1526, +1825, 0, 1489, +1825, 0, 1434, +1825, 0, 1348, +1825, 0, 1199, +1825, 0, 869, +1825, 0, 0, +1825, 0, 0, +1825, 1212, 0, +1959, 1697, 0, +2092, 1983, 0, +2225, 2203, 0, +2320, 2357, 0, +2404, 2490, 0, +2496, 2622, 0, +2596, 2755, 0, +2703, 2887, 0, +2815, 3019, 0, +2932, 3151, 0, +3051, 3283, 0, +3174, 3416, 0, +3299, 3548, 0, +3426, 3680, 0, +3554, 3812, 0, +3683, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +1961, 0, 1719, +1961, 0, 1715, +1960, 0, 1708, +1959, 0, 1700, +1959, 0, 1686, +1959, 0, 1667, +1959, 0, 1640, +1959, 0, 1601, +1959, 0, 1544, +1959, 0, 1453, +1959, 0, 1294, +1959, 0, 917, +1959, 0, 0, +1959, 0, 0, +1959, 1331, 0, +2092, 1824, 0, +2225, 2112, 0, +2357, 2334, 0, +2454, 2490, 0, +2538, 2622, 0, +2630, 2755, 0, +2730, 2887, 0, +2836, 3019, 0, +2948, 3151, 0, +3064, 3283, 0, +3184, 3416, 0, +3307, 3548, 0, +3432, 3680, 0, +3558, 3812, 0, +3686, 3944, 0, +3815, 4076, 0, +3945, 4095, 0, +2094, 0, 1845, +2093, 0, 1841, +2093, 0, 1837, +2092, 0, 1830, +2092, 0, 1820, +2092, 0, 1806, +2092, 0, 1786, +2092, 0, 1758, +2092, 0, 1718, +2092, 0, 1658, +2092, 0, 1564, +2092, 0, 1394, +2092, 0, 977, +2092, 0, 0, +2092, 0, 0, +2092, 1452, 0, +2225, 1953, 0, +2357, 2243, 0, +2490, 2465, 0, +2588, 2622, 0, +2671, 2755, 0, +2763, 2887, 0, +2863, 3019, 0, +2969, 3151, 0, +3080, 3283, 0, +3196, 3416, 0, +3316, 3548, 0, +3439, 3680, 0, +3564, 3812, 0, +3691, 3944, 0, +3818, 4076, 0, +3948, 4095, 0, +2226, 0, 1972, +2226, 0, 1969, +2225, 0, 1966, +2225, 0, 1961, +2225, 0, 1953, +2225, 0, 1943, +2225, 0, 1928, +2225, 0, 1908, +2225, 0, 1880, +2225, 0, 1839, +2225, 0, 1777, +2225, 0, 1679, +2225, 0, 1503, +2225, 0, 1044, +2225, 0, 0, +2225, 0, 0, +2225, 1576, 0, +2357, 2082, 0, +2490, 2374, 0, +2622, 2596, 0, +2721, 2755, 0, +2804, 2887, 0, +2896, 3019, 0, +2995, 3151, 0, +3101, 3283, 0, +3213, 3416, 0, +3329, 3548, 0, +3449, 3680, 0, +3571, 3812, 0, +3696, 3944, 0, +3823, 4076, 0, +3951, 4095, 0, +2358, 0, 2100, +2358, 0, 2098, +2358, 0, 2096, +2357, 0, 2092, +2357, 0, 2086, +2357, 0, 2078, +2357, 0, 2068, +2357, 0, 2053, +2357, 0, 2032, +2357, 0, 2004, +2357, 0, 1962, +2357, 0, 1899, +2357, 0, 1798, +2357, 0, 1615, +2357, 0, 1122, +2357, 0, 0, +2357, 0, 0, +2357, 1702, 0, +2490, 2213, 0, +2622, 2505, 0, +2755, 2728, 0, +2854, 2887, 0, +2937, 3019, 0, +3029, 3151, 0, +3128, 3283, 0, +3234, 3416, 0, +3345, 3548, 0, +3461, 3680, 0, +3581, 3812, 0, +3703, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2230, +2491, 0, 2228, +2490, 0, 2226, +2490, 0, 2223, +2490, 0, 2219, +2490, 0, 2213, +2490, 0, 2206, +2490, 0, 2195, +2490, 0, 2180, +2490, 0, 2159, +2490, 0, 2129, +2490, 0, 2087, +2490, 0, 2023, +2490, 0, 1920, +2490, 0, 1733, +2490, 0, 1210, +2490, 0, 0, +2490, 0, 0, +2490, 1830, 0, +2622, 2343, 0, +2755, 2636, 0, +2887, 2860, 0, +2987, 3019, 0, +3070, 3151, 0, +3161, 3283, 0, +3260, 3416, 0, +3366, 3548, 0, +3478, 3680, 0, +3594, 3812, 0, +3713, 3944, 0, +3836, 4076, 0, +3961, 4095, 0, +2623, 0, 2359, +2623, 0, 2358, +2623, 0, 2357, +2622, 0, 2355, +2622, 0, 2352, +2622, 0, 2347, +2622, 0, 2341, +2622, 0, 2334, +2622, 0, 2323, +2622, 0, 2308, +2622, 0, 2287, +2622, 0, 2256, +2622, 0, 2214, +2622, 0, 2149, +2622, 0, 2045, +2622, 0, 1853, +2622, 0, 1304, +2622, 0, 0, +2622, 0, 0, +2622, 1958, 0, +2755, 2475, 0, +2887, 2768, 0, +3019, 2991, 0, +3119, 3151, 0, +3202, 3283, 0, +3293, 3416, 0, +3393, 3548, 0, +3499, 3680, 0, +3610, 3812, 0, +3726, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2490, +2755, 0, 2489, +2755, 0, 2488, +2755, 0, 2487, +2755, 0, 2484, +2755, 0, 2481, +2755, 0, 2477, +2755, 0, 2471, +2755, 0, 2463, +2755, 0, 2452, +2755, 0, 2436, +2755, 0, 2415, +2755, 0, 2386, +2755, 0, 2342, +2755, 0, 2277, +2755, 0, 2172, +2755, 0, 1977, +2755, 0, 1409, +2755, 0, 0, +2755, 0, 0, +2755, 2088, 0, +2887, 2605, 0, +3019, 2899, 0, +3151, 3123, 0, +3252, 3283, 0, +3335, 3416, 0, +3426, 3548, 0, +3525, 3680, 0, +3631, 3812, 0, +3742, 3944, 0, +3858, 4076, 0, +3978, 4095, 0, +2887, 0, 2621, +2887, 0, 2620, +2887, 0, 2620, +2887, 0, 2619, +2887, 0, 2617, +2887, 0, 2614, +2887, 0, 2611, +2887, 0, 2607, +2887, 0, 2601, +2887, 0, 2592, +2887, 0, 2581, +2887, 0, 2566, +2887, 0, 2545, +2887, 0, 2515, +2887, 0, 2471, +2887, 0, 2406, +2887, 0, 2299, +2887, 0, 2103, +2887, 0, 1516, +2887, 0, 0, +2887, 0, 0, +2887, 2218, 0, +3019, 2736, 0, +3151, 3031, 0, +3283, 3255, 0, +3384, 3416, 0, +3467, 3548, 0, +3558, 3680, 0, +3657, 3812, 0, +3763, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2752, +3019, 0, 2752, +3019, 0, 2751, +3019, 0, 2750, +3019, 0, 2749, +3019, 0, 2747, +3019, 0, 2745, +3019, 0, 2741, +3019, 0, 2737, +3019, 0, 2731, +3019, 0, 2723, +3019, 0, 2712, +3019, 0, 2696, +3019, 0, 2675, +3019, 0, 2645, +3019, 0, 2601, +3019, 0, 2535, +3019, 0, 2428, +3019, 0, 2229, +3019, 0, 1628, +3019, 0, 0, +3019, 0, 0, +3019, 2348, 0, +3151, 2869, 0, +3283, 3163, 0, +3416, 3387, 0, +3516, 3548, 0, +3599, 3680, 0, +3690, 3812, 0, +3790, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2884, +3152, 0, 2883, +3152, 0, 2883, +3151, 0, 2882, +3151, 0, 2881, +3151, 0, 2880, +3151, 0, 2878, +3151, 0, 2876, +3151, 0, 2872, +3151, 0, 2868, +3151, 0, 2862, +3151, 0, 2854, +3151, 0, 2842, +3151, 0, 2827, +3151, 0, 2806, +3151, 0, 2775, +3151, 0, 2732, +3151, 0, 2665, +3151, 0, 2558, +3151, 0, 2358, +3151, 0, 1746, +3151, 0, 0, +3151, 0, 0, +3151, 2480, 0, +3283, 2999, 0, +3416, 3294, 0, +3548, 3519, 0, +3649, 3680, 0, +3731, 3812, 0, +3822, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3015, +3283, 0, 3015, +3283, 0, 3014, +3283, 0, 3014, +3283, 0, 3013, +3283, 0, 3012, +3283, 0, 3011, +3283, 0, 3009, +3283, 0, 3007, +3283, 0, 3003, +3283, 0, 2999, +3283, 0, 2993, +3283, 0, 2985, +3283, 0, 2973, +3283, 0, 2958, +3283, 0, 2936, +3283, 0, 2906, +3283, 0, 2862, +3283, 0, 2795, +3283, 0, 2688, +3283, 0, 2486, +3283, 0, 1864, +3283, 0, 0, +3283, 0, 0, +3283, 2611, 0, +3416, 3132, 0, +3548, 3427, 0, +3680, 3651, 0, +3781, 3812, 0, +3863, 3944, 0, +3955, 4076, 0, +4054, 4095, 0, +3416, 0, 3147, +3416, 0, 3147, +3416, 0, 3147, +3416, 0, 3146, +3416, 0, 3146, +3416, 0, 3145, +3416, 0, 3144, +3416, 0, 3142, +3416, 0, 3141, +3416, 0, 3138, +3416, 0, 3135, +3416, 0, 3130, +3416, 0, 3124, +3416, 0, 3116, +3416, 0, 3105, +3416, 0, 3089, +3416, 0, 3068, +3416, 0, 3038, +3416, 0, 2993, +3416, 0, 2927, +3416, 0, 2818, +3416, 0, 2617, +3416, 0, 1992, +3416, 0, 0, +3416, 0, 0, +3416, 2742, 0, +3548, 3264, 0, +3680, 3559, 0, +3812, 3783, 0, +3913, 3944, 0, +3995, 4076, 0, +4087, 4095, 0, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3277, +3548, 0, 3277, +3548, 0, 3275, +3548, 0, 3274, +3548, 0, 3272, +3548, 0, 3270, +3548, 0, 3267, +3548, 0, 3262, +3548, 0, 3256, +3548, 0, 3248, +3548, 0, 3237, +3548, 0, 3221, +3548, 0, 3200, +3548, 0, 3169, +3548, 0, 3125, +3548, 0, 3058, +3548, 0, 2950, +3548, 0, 2747, +3548, 0, 2115, +3548, 0, 0, +3548, 0, 0, +3548, 2874, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3407, +3680, 0, 3406, +3680, 0, 3404, +3680, 0, 3401, +3680, 0, 3398, +3680, 0, 3394, +3680, 0, 3388, +3680, 0, 3379, +3680, 0, 3368, +3680, 0, 3353, +3680, 0, 3331, +3680, 0, 3301, +3680, 0, 3256, +3680, 0, 3189, +3680, 0, 3081, +3680, 0, 2878, +3680, 0, 2246, +3680, 0, 0, +3680, 0, 0, +3680, 3006, 0, +3812, 3528, 0, +3944, 3823, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3539, +3812, 0, 3538, +3812, 0, 3536, +3812, 0, 3533, +3812, 0, 3530, +3812, 0, 3526, +3812, 0, 3520, +3812, 0, 3511, +3812, 0, 3500, +3812, 0, 3485, +3812, 0, 3463, +3812, 0, 3432, +3812, 0, 3388, +3812, 0, 3321, +3812, 0, 3213, +3812, 0, 3010, +3812, 0, 2374, +3812, 0, 0, +3812, 0, 0, +3812, 3138, 0, +3944, 3660, 0, +4076, 3954, 0, +4095, 4095, 0, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3669, +3944, 0, 3668, +3944, 0, 3665, +3944, 0, 3662, +3944, 0, 3657, +3944, 0, 3651, +3944, 0, 3643, +3944, 0, 3632, +3944, 0, 3616, +3944, 0, 3595, +3944, 0, 3564, +3944, 0, 3520, +3944, 0, 3453, +3944, 0, 3344, +3944, 0, 3141, +3944, 0, 2502, +3944, 0, 0, +3944, 0, 0, +3944, 3269, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3801, +4076, 0, 3799, +4076, 0, 3797, +4076, 0, 3794, +4076, 0, 3789, +4076, 0, 3783, +4076, 0, 3775, +4076, 0, 3764, +4076, 0, 3748, +4076, 0, 3727, +4076, 0, 3696, +4076, 0, 3652, +4076, 0, 3585, +4076, 0, 3476, +4076, 0, 3272, +4076, 0, 2630, +4076, 0, 0, +4076, 0, 0, +4076, 3401, 0, +4095, 3924, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3933, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3926, +4095, 0, 3921, +4095, 0, 3915, +4095, 0, 3907, +4095, 0, 3896, +4095, 0, 3880, +4095, 0, 3859, +4095, 0, 3828, +4095, 0, 3784, +4095, 0, 3717, +4095, 0, 3608, +4095, 0, 3405, +4095, 0, 2764, +4095, 0, 0, +4095, 0, 0, +4095, 3534, 0, +0, 427, 609, +0, 512, 609, +0, 606, 609, +0, 609, 485, +0, 609, 224, +0, 750, 0, +0, 888, 0, +371, 1025, 0, +640, 1160, 0, +853, 1295, 0, +1037, 1429, 0, +1205, 1563, 0, +1362, 1696, 0, +1512, 1828, 0, +1657, 1961, 0, +1798, 2094, 0, +1937, 2226, 0, +2074, 2358, 0, +2210, 2491, 0, +2345, 2623, 0, +2479, 2755, 0, +2613, 2887, 0, +2746, 3019, 0, +2879, 3152, 0, +3012, 3284, 0, +3144, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 322, 609, +0, 444, 598, +0, 551, 598, +0, 598, 520, +0, 598, 286, +0, 741, 0, +190, 882, 0, +482, 1020, 0, +705, 1157, 0, +894, 1292, 0, +1065, 1427, 0, +1225, 1561, 0, +1376, 1695, 0, +1522, 1828, 0, +1664, 1961, 0, +1804, 2093, 0, +1941, 2226, 0, +2077, 2358, 0, +2212, 2491, 0, +2347, 2623, 0, +2481, 2755, 0, +2614, 2887, 0, +2747, 3019, 0, +2880, 3152, 0, +3012, 3283, 0, +3145, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 127, 609, +0, 303, 598, +148, 466, 582, +148, 582, 564, +148, 582, 357, +132, 730, 34, +390, 873, 0, +598, 1014, 0, +779, 1152, 0, +945, 1289, 0, +1101, 1424, 0, +1250, 1559, 0, +1394, 1693, 0, +1535, 1827, 0, +1674, 1960, 0, +1811, 2093, 0, +1946, 2225, 0, +2081, 2358, 0, +2215, 2490, 0, +2349, 2623, 0, +2482, 2755, 0, +2615, 2887, 0, +2747, 3019, 0, +2880, 3152, 0, +3013, 3283, 0, +3145, 3416, 0, +3277, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 0, 609, +0, 0, 598, +148, 277, 582, +350, 494, 560, +350, 560, 438, +409, 714, 280, +567, 862, 166, +717, 1005, 0, +863, 1146, 0, +1005, 1284, 0, +1144, 1421, 0, +1281, 1557, 0, +1417, 1691, 0, +1552, 1825, 0, +1686, 1959, 0, +1820, 2092, 0, +1953, 2225, 0, +2086, 2357, 0, +2219, 2490, 0, +2352, 2622, 0, +2484, 2755, 0, +2617, 2887, 0, +2749, 3019, 0, +2881, 3151, 0, +3013, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +224, 0, 609, +286, 0, 598, +357, 148, 582, +438, 350, 560, +528, 528, 528, +625, 691, 482, +730, 846, 412, +840, 994, 298, +955, 1137, 80, +1074, 1278, 0, +1196, 1416, 0, +1320, 1553, 0, +1446, 1689, 0, +1574, 1823, 0, +1703, 1958, 0, +1832, 2091, 0, +1963, 2224, 0, +2093, 2357, 0, +2224, 2489, 0, +2356, 2622, 0, +2487, 2755, 0, +2619, 2887, 0, +2750, 3019, 0, +2883, 3151, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +587, 0, 750, +616, 0, 741, +652, 34, 730, +696, 280, 714, +691, 482, 625, +691, 570, 482, +846, 828, 412, +947, 994, 298, +1040, 1137, 80, +1141, 1278, 0, +1248, 1416, 0, +1360, 1553, 0, +1477, 1689, 0, +1598, 1823, 0, +1721, 1958, 0, +1846, 2091, 0, +1973, 2224, 0, +2101, 2357, 0, +2230, 2489, 0, +2360, 2622, 0, +2490, 2755, 0, +2621, 2887, 0, +2752, 3019, 0, +2884, 3151, 0, +3015, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +838, 0, 888, +855, 0, 882, +873, 0, 870, +862, 166, 815, +846, 412, 730, +846, 412, 541, +846, 622, 412, +994, 917, 298, +1134, 1137, 80, +1218, 1278, 0, +1310, 1416, 0, +1409, 1553, 0, +1515, 1689, 0, +1627, 1823, 0, +1743, 1958, 0, +1863, 2091, 0, +1986, 2224, 0, +2111, 2357, 0, +2238, 2489, 0, +2366, 2622, 0, +2495, 2755, 0, +2625, 2887, 0, +2755, 3019, 0, +2886, 3151, 0, +3016, 3283, 0, +3148, 3416, 0, +3280, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1025, 0, 1006, +1020, 0, 985, +1014, 0, 954, +1005, 0, 908, +994, 298, 840, +994, 298, 699, +994, 298, 397, +994, 682, 298, +1137, 1013, 80, +1278, 1251, 0, +1381, 1416, 0, +1467, 1553, 0, +1562, 1689, 0, +1664, 1823, 0, +1772, 1958, 0, +1885, 2091, 0, +2003, 2224, 0, +2124, 2357, 0, +2247, 2489, 0, +2373, 2622, 0, +2501, 2755, 0, +2629, 2887, 0, +2758, 3019, 0, +2888, 3151, 0, +3018, 3283, 0, +3149, 3416, 0, +3280, 3548, 0, +3412, 3680, 0, +3544, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1160, 0, 1089, +1157, 0, 1071, +1152, 0, 1045, +1146, 0, 1009, +1137, 80, 955, +1137, 80, 850, +1137, 80, 655, +1137, 80, 81, +1137, 753, 80, +1278, 1116, 0, +1416, 1367, 0, +1535, 1553, 0, +1617, 1689, 0, +1709, 1823, 0, +1808, 1958, 0, +1913, 2091, 0, +2025, 2224, 0, +2141, 2357, 0, +2260, 2489, 0, +2383, 2622, 0, +2508, 2755, 0, +2635, 2887, 0, +2762, 3019, 0, +2891, 3151, 0, +3021, 3283, 0, +3151, 3416, 0, +3282, 3548, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1295, 0, 1181, +1292, 0, 1166, +1289, 0, 1145, +1284, 0, 1116, +1278, 0, 1074, +1278, 0, 995, +1278, 0, 862, +1278, 0, 587, +1278, 0, 0, +1278, 832, 0, +1416, 1225, 0, +1553, 1486, 0, +1683, 1689, 0, +1763, 1823, 0, +1852, 1958, 0, +1949, 2091, 0, +2053, 2224, 0, +2162, 2357, 0, +2277, 2489, 0, +2396, 2622, 0, +2517, 2755, 0, +2642, 2887, 0, +2768, 3019, 0, +2895, 3151, 0, +3024, 3283, 0, +3154, 3416, 0, +3284, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1280, +1427, 0, 1267, +1424, 0, 1251, +1421, 0, 1228, +1416, 0, 1196, +1416, 0, 1137, +1416, 0, 1043, +1416, 0, 878, +1416, 0, 478, +1416, 0, 0, +1416, 920, 0, +1553, 1340, 0, +1689, 1608, 0, +1823, 1821, 0, +1905, 1958, 0, +1992, 2091, 0, +2087, 2224, 0, +2190, 2357, 0, +2298, 2489, 0, +2412, 2622, 0, +2530, 2755, 0, +2651, 2887, 0, +2775, 3019, 0, +2901, 3151, 0, +3028, 3283, 0, +3157, 3416, 0, +3286, 3548, 0, +3416, 3680, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1563, 0, 1385, +1561, 0, 1376, +1559, 0, 1363, +1557, 0, 1345, +1553, 0, 1320, +1553, 0, 1276, +1553, 0, 1209, +1553, 0, 1102, +1553, 0, 900, +1553, 0, 275, +1553, 0, 0, +1553, 1017, 0, +1689, 1457, 0, +1823, 1732, 0, +1958, 1948, 0, +2044, 2091, 0, +2130, 2224, 0, +2224, 2357, 0, +2326, 2489, 0, +2434, 2622, 0, +2547, 2755, 0, +2664, 2887, 0, +2785, 3019, 0, +2908, 3151, 0, +3034, 3283, 0, +3161, 3416, 0, +3289, 3548, 0, +3419, 3680, 0, +3549, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1496, +1695, 0, 1489, +1693, 0, 1479, +1691, 0, 1465, +1689, 0, 1446, +1689, 0, 1413, +1689, 0, 1365, +1689, 0, 1291, +1689, 0, 1169, +1689, 0, 926, +1689, 0, 0, +1689, 0, 0, +1689, 1120, 0, +1823, 1579, 0, +1958, 1859, 0, +2091, 2076, 0, +2181, 2224, 0, +2266, 2357, 0, +2360, 2489, 0, +2460, 2622, 0, +2568, 2755, 0, +2681, 2887, 0, +2797, 3019, 0, +2918, 3151, 0, +3041, 3283, 0, +3166, 3416, 0, +3293, 3548, 0, +3422, 3680, 0, +3551, 3812, 0, +3681, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1828, 0, 1612, +1828, 0, 1607, +1827, 0, 1599, +1825, 0, 1588, +1823, 0, 1574, +1823, 0, 1549, +1823, 0, 1514, +1823, 0, 1462, +1823, 0, 1382, +1823, 0, 1245, +1823, 0, 960, +1823, 0, 0, +1823, 0, 0, +1823, 1230, 0, +1958, 1703, 0, +2091, 1986, 0, +2224, 2206, 0, +2317, 2357, 0, +2401, 2489, 0, +2494, 2622, 0, +2595, 2755, 0, +2702, 2887, 0, +2814, 3019, 0, +2931, 3151, 0, +3051, 3283, 0, +3174, 3416, 0, +3299, 3548, 0, +3426, 3680, 0, +3554, 3812, 0, +3683, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +1961, 0, 1732, +1961, 0, 1728, +1960, 0, 1722, +1959, 0, 1714, +1958, 0, 1703, +1958, 0, 1684, +1958, 0, 1658, +1958, 0, 1621, +1958, 0, 1566, +1958, 0, 1480, +1958, 0, 1332, +1958, 0, 1000, +1958, 0, 0, +1958, 0, 0, +1958, 1344, 0, +2091, 1829, 0, +2224, 2115, 0, +2357, 2335, 0, +2452, 2489, 0, +2536, 2622, 0, +2628, 2755, 0, +2728, 2887, 0, +2835, 3019, 0, +2947, 3151, 0, +3063, 3283, 0, +3184, 3416, 0, +3307, 3548, 0, +3431, 3680, 0, +3558, 3812, 0, +3686, 3944, 0, +3815, 4076, 0, +3945, 4095, 0, +2094, 0, 1855, +2093, 0, 1851, +2093, 0, 1847, +2092, 0, 1841, +2091, 0, 1832, +2091, 0, 1819, +2091, 0, 1799, +2091, 0, 1772, +2091, 0, 1733, +2091, 0, 1676, +2091, 0, 1585, +2091, 0, 1425, +2091, 0, 1050, +2091, 0, 0, +2091, 0, 0, +2091, 1463, 0, +2224, 1956, 0, +2357, 2245, 0, +2489, 2466, 0, +2586, 2622, 0, +2670, 2755, 0, +2762, 2887, 0, +2862, 3019, 0, +2968, 3151, 0, +3080, 3283, 0, +3196, 3416, 0, +3316, 3548, 0, +3439, 3680, 0, +3564, 3812, 0, +3691, 3944, 0, +3818, 4076, 0, +3948, 4095, 0, +2226, 0, 1979, +2226, 0, 1977, +2225, 0, 1973, +2225, 0, 1969, +2224, 0, 1963, +2224, 0, 1952, +2224, 0, 1938, +2224, 0, 1918, +2224, 0, 1891, +2224, 0, 1850, +2224, 0, 1790, +2224, 0, 1695, +2224, 0, 1527, +2224, 0, 1108, +2224, 0, 0, +2224, 0, 0, +2224, 1584, 0, +2357, 2085, 0, +2489, 2375, 0, +2622, 2597, 0, +2720, 2755, 0, +2803, 2887, 0, +2895, 3019, 0, +2995, 3151, 0, +3101, 3283, 0, +3212, 3416, 0, +3329, 3548, 0, +3448, 3680, 0, +3571, 3812, 0, +3696, 3944, 0, +3823, 4076, 0, +3951, 4095, 0, +2358, 0, 2106, +2358, 0, 2104, +2358, 0, 2101, +2357, 0, 2098, +2357, 0, 2093, +2357, 0, 2086, +2357, 0, 2075, +2357, 0, 2060, +2357, 0, 2040, +2357, 0, 2012, +2357, 0, 1970, +2357, 0, 1909, +2357, 0, 1811, +2357, 0, 1634, +2357, 0, 1176, +2357, 0, 0, +2357, 0, 0, +2357, 1708, 0, +2489, 2215, 0, +2622, 2506, 0, +2755, 2729, 0, +2853, 2887, 0, +2936, 3019, 0, +3028, 3151, 0, +3127, 3283, 0, +3233, 3416, 0, +3345, 3548, 0, +3461, 3680, 0, +3581, 3812, 0, +3703, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2234, +2491, 0, 2233, +2490, 0, 2230, +2490, 0, 2228, +2489, 0, 2224, +2489, 0, 2219, +2489, 0, 2211, +2489, 0, 2200, +2489, 0, 2185, +2489, 0, 2165, +2489, 0, 2136, +2489, 0, 2094, +2489, 0, 2031, +2489, 0, 1930, +2489, 0, 1748, +2489, 0, 1255, +2489, 0, 0, +2489, 0, 0, +2489, 1834, 0, +2622, 2344, 0, +2755, 2637, 0, +2887, 2860, 0, +2986, 3019, 0, +3069, 3151, 0, +3160, 3283, 0, +3260, 3416, 0, +3366, 3548, 0, +3478, 3680, 0, +3594, 3812, 0, +3713, 3944, 0, +3836, 4076, 0, +3961, 4095, 0, +2623, 0, 2363, +2623, 0, 2362, +2623, 0, 2360, +2622, 0, 2358, +2622, 0, 2356, +2622, 0, 2351, +2622, 0, 2346, +2622, 0, 2337, +2622, 0, 2327, +2622, 0, 2312, +2622, 0, 2291, +2622, 0, 2261, +2622, 0, 2219, +2622, 0, 2155, +2622, 0, 2052, +2622, 0, 1865, +2622, 0, 1342, +2622, 0, 0, +2622, 0, 0, +2622, 1962, 0, +2755, 2476, 0, +2887, 2768, 0, +3019, 2992, 0, +3119, 3151, 0, +3201, 3283, 0, +3293, 3416, 0, +3392, 3548, 0, +3498, 3680, 0, +3610, 3812, 0, +3726, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2493, +2755, 0, 2492, +2755, 0, 2491, +2755, 0, 2489, +2755, 0, 2487, +2755, 0, 2484, +2755, 0, 2480, +2755, 0, 2474, +2755, 0, 2466, +2755, 0, 2455, +2755, 0, 2440, +2755, 0, 2419, +2755, 0, 2389, +2755, 0, 2346, +2755, 0, 2281, +2755, 0, 2177, +2755, 0, 1986, +2755, 0, 1439, +2755, 0, 0, +2755, 0, 0, +2755, 2091, 0, +2887, 2606, 0, +3019, 2899, 0, +3151, 3123, 0, +3251, 3283, 0, +3334, 3416, 0, +3426, 3548, 0, +3525, 3680, 0, +3631, 3812, 0, +3742, 3944, 0, +3858, 4076, 0, +3977, 4095, 0, +2887, 0, 2623, +2887, 0, 2622, +2887, 0, 2621, +2887, 0, 2620, +2887, 0, 2619, +2887, 0, 2617, +2887, 0, 2613, +2887, 0, 2609, +2887, 0, 2603, +2887, 0, 2595, +2887, 0, 2584, +2887, 0, 2569, +2887, 0, 2548, +2887, 0, 2517, +2887, 0, 2474, +2887, 0, 2409, +2887, 0, 2304, +2887, 0, 2110, +2887, 0, 1540, +2887, 0, 0, +2887, 0, 0, +2887, 2220, 0, +3019, 2737, 0, +3151, 3031, 0, +3283, 3255, 0, +3384, 3416, 0, +3467, 3548, 0, +3558, 3680, 0, +3657, 3812, 0, +3763, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2754, +3019, 0, 2753, +3019, 0, 2752, +3019, 0, 2751, +3019, 0, 2750, +3019, 0, 2749, +3019, 0, 2746, +3019, 0, 2743, +3019, 0, 2738, +3019, 0, 2732, +3019, 0, 2724, +3019, 0, 2713, +3019, 0, 2698, +3019, 0, 2677, +3019, 0, 2647, +3019, 0, 2603, +3019, 0, 2537, +3019, 0, 2431, +3019, 0, 2234, +3019, 0, 1646, +3019, 0, 0, +3019, 0, 0, +3019, 2350, 0, +3151, 2869, 0, +3283, 3163, 0, +3416, 3387, 0, +3516, 3548, 0, +3599, 3680, 0, +3690, 3812, 0, +3789, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2885, +3152, 0, 2885, +3152, 0, 2884, +3151, 0, 2883, +3151, 0, 2883, +3151, 0, 2881, +3151, 0, 2879, +3151, 0, 2877, +3151, 0, 2873, +3151, 0, 2869, +3151, 0, 2863, +3151, 0, 2855, +3151, 0, 2844, +3151, 0, 2829, +3151, 0, 2807, +3151, 0, 2777, +3151, 0, 2733, +3151, 0, 2667, +3151, 0, 2560, +3151, 0, 2362, +3151, 0, 1760, +3151, 0, 0, +3151, 0, 0, +3151, 2481, 0, +3283, 3000, 0, +3416, 3295, 0, +3548, 3519, 0, +3648, 3680, 0, +3731, 3812, 0, +3822, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3016, +3283, 0, 3016, +3283, 0, 3015, +3283, 0, 3015, +3283, 0, 3014, +3283, 0, 3013, +3283, 0, 3012, +3283, 0, 3010, +3283, 0, 3008, +3283, 0, 3004, +3283, 0, 3000, +3283, 0, 2994, +3283, 0, 2986, +3283, 0, 2974, +3283, 0, 2959, +3283, 0, 2938, +3283, 0, 2907, +3283, 0, 2863, +3283, 0, 2797, +3283, 0, 2690, +3283, 0, 2489, +3283, 0, 1875, +3283, 0, 0, +3283, 0, 0, +3283, 2612, 0, +3416, 3132, 0, +3548, 3427, 0, +3680, 3651, 0, +3781, 3812, 0, +3863, 3944, 0, +3955, 4076, 0, +4054, 4095, 0, +3416, 0, 3147, +3416, 0, 3147, +3416, 0, 3147, +3416, 0, 3147, +3416, 0, 3146, +3416, 0, 3145, +3416, 0, 3144, +3416, 0, 3143, +3416, 0, 3141, +3416, 0, 3139, +3416, 0, 3135, +3416, 0, 3131, +3416, 0, 3125, +3416, 0, 3117, +3416, 0, 3106, +3416, 0, 3090, +3416, 0, 3069, +3416, 0, 3038, +3416, 0, 2994, +3416, 0, 2928, +3416, 0, 2820, +3416, 0, 2619, +3416, 0, 2000, +3416, 0, 0, +3416, 0, 0, +3416, 2743, 0, +3548, 3264, 0, +3680, 3559, 0, +3812, 3783, 0, +3913, 3944, 0, +3995, 4076, 0, +4087, 4095, 0, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3277, +3548, 0, 3276, +3548, 0, 3275, +3548, 0, 3273, +3548, 0, 3270, +3548, 0, 3267, +3548, 0, 3262, +3548, 0, 3256, +3548, 0, 3248, +3548, 0, 3237, +3548, 0, 3222, +3548, 0, 3200, +3548, 0, 3170, +3548, 0, 3125, +3548, 0, 3059, +3548, 0, 2951, +3548, 0, 2749, +3548, 0, 2122, +3548, 0, 0, +3548, 0, 0, +3548, 2874, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3406, +3680, 0, 3404, +3680, 0, 3402, +3680, 0, 3399, +3680, 0, 3394, +3680, 0, 3388, +3680, 0, 3380, +3680, 0, 3369, +3680, 0, 3353, +3680, 0, 3332, +3680, 0, 3301, +3680, 0, 3257, +3680, 0, 3190, +3680, 0, 3082, +3680, 0, 2879, +3680, 0, 2251, +3680, 0, 0, +3680, 0, 0, +3680, 3006, 0, +3812, 3528, 0, +3944, 3823, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3539, +3812, 0, 3538, +3812, 0, 3536, +3812, 0, 3534, +3812, 0, 3530, +3812, 0, 3526, +3812, 0, 3520, +3812, 0, 3511, +3812, 0, 3500, +3812, 0, 3485, +3812, 0, 3463, +3812, 0, 3433, +3812, 0, 3388, +3812, 0, 3322, +3812, 0, 3213, +3812, 0, 3011, +3812, 0, 2377, +3812, 0, 0, +3812, 0, 0, +3812, 3138, 0, +3944, 3660, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3670, +3944, 0, 3668, +3944, 0, 3665, +3944, 0, 3662, +3944, 0, 3658, +3944, 0, 3652, +3944, 0, 3643, +3944, 0, 3632, +3944, 0, 3617, +3944, 0, 3595, +3944, 0, 3564, +3944, 0, 3520, +3944, 0, 3453, +3944, 0, 3345, +3944, 0, 3142, +3944, 0, 2505, +3944, 0, 0, +3944, 0, 0, +3944, 3270, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3801, +4076, 0, 3800, +4076, 0, 3797, +4076, 0, 3794, +4076, 0, 3790, +4076, 0, 3783, +4076, 0, 3775, +4076, 0, 3764, +4076, 0, 3748, +4076, 0, 3727, +4076, 0, 3696, +4076, 0, 3652, +4076, 0, 3585, +4076, 0, 3476, +4076, 0, 3273, +4076, 0, 2632, +4076, 0, 0, +4076, 0, 0, +4076, 3401, 0, +4095, 3924, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3934, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3926, +4095, 0, 3921, +4095, 0, 3915, +4095, 0, 3907, +4095, 0, 3896, +4095, 0, 3880, +4095, 0, 3859, +4095, 0, 3828, +4095, 0, 3784, +4095, 0, 3717, +4095, 0, 3608, +4095, 0, 3405, +4095, 0, 2765, +4095, 0, 0, +4095, 0, 0, +4095, 3534, 0, +0, 545, 750, +0, 613, 750, +0, 689, 750, +0, 750, 723, +0, 750, 587, +0, 750, 304, +0, 888, 0, +0, 1025, 0, +397, 1160, 0, +717, 1295, 0, +951, 1429, 0, +1148, 1563, 0, +1322, 1696, 0, +1484, 1828, 0, +1636, 1961, 0, +1783, 2094, 0, +1926, 2226, 0, +2066, 2358, 0, +2204, 2491, 0, +2341, 2623, 0, +2476, 2755, 0, +2611, 2887, 0, +2744, 3019, 0, +2878, 3152, 0, +3011, 3284, 0, +3144, 3416, 0, +3276, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 467, 750, +0, 559, 741, +0, 644, 741, +0, 738, 741, +0, 741, 616, +0, 741, 356, +0, 882, 0, +81, 1020, 0, +503, 1157, 0, +772, 1292, 0, +985, 1427, 0, +1170, 1561, 0, +1337, 1695, 0, +1494, 1828, 0, +1644, 1961, 0, +1789, 2093, 0, +1930, 2226, 0, +2069, 2358, 0, +2206, 2491, 0, +2342, 2623, 0, +2477, 2755, 0, +2612, 2887, 0, +2745, 3019, 0, +2878, 3152, 0, +3011, 3283, 0, +3144, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 334, 750, +0, 453, 741, +34, 576, 730, +34, 683, 730, +34, 730, 652, +34, 730, 418, +0, 873, 0, +323, 1014, 0, +614, 1152, 0, +837, 1289, 0, +1027, 1424, 0, +1198, 1559, 0, +1357, 1693, 0, +1508, 1827, 0, +1654, 1960, 0, +1796, 2093, 0, +1936, 2225, 0, +2073, 2358, 0, +2209, 2490, 0, +2345, 2623, 0, +2479, 2755, 0, +2613, 2887, 0, +2746, 3019, 0, +2879, 3152, 0, +3011, 3283, 0, +3144, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 59, 750, +0, 258, 741, +34, 435, 730, +280, 598, 714, +280, 714, 696, +280, 714, 490, +264, 862, 166, +523, 1005, 0, +730, 1146, 0, +911, 1284, 0, +1077, 1421, 0, +1233, 1557, 0, +1382, 1691, 0, +1526, 1825, 0, +1667, 1959, 0, +1806, 2092, 0, +1943, 2225, 0, +2078, 2357, 0, +2213, 2490, 0, +2347, 2622, 0, +2481, 2755, 0, +2614, 2887, 0, +2747, 3019, 0, +2880, 3151, 0, +3012, 3283, 0, +3145, 3416, 0, +3277, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 0, 750, +0, 0, 741, +34, 132, 730, +280, 409, 714, +482, 625, 691, +482, 691, 570, +541, 846, 412, +699, 994, 298, +850, 1137, 80, +995, 1278, 0, +1137, 1416, 0, +1276, 1553, 0, +1413, 1689, 0, +1549, 1823, 0, +1684, 1958, 0, +1819, 2091, 0, +1952, 2224, 0, +2086, 2357, 0, +2219, 2489, 0, +2351, 2622, 0, +2484, 2755, 0, +2617, 2887, 0, +2749, 3019, 0, +2881, 3151, 0, +3013, 3283, 0, +3145, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +304, 0, 750, +356, 0, 741, +418, 34, 730, +490, 280, 714, +570, 482, 691, +660, 660, 660, +758, 824, 614, +862, 978, 544, +972, 1126, 430, +1087, 1270, 212, +1206, 1410, 0, +1328, 1549, 0, +1452, 1685, 0, +1579, 1821, 0, +1706, 1956, 0, +1835, 2089, 0, +1965, 2223, 0, +2095, 2356, 0, +2226, 2489, 0, +2356, 2621, 0, +2488, 2754, 0, +2619, 2887, 0, +2751, 3019, 0, +2883, 3151, 0, +3014, 3283, 0, +3146, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +697, 0, 888, +719, 0, 882, +749, 0, 873, +784, 166, 862, +828, 412, 846, +824, 614, 758, +824, 702, 614, +978, 960, 544, +1079, 1126, 430, +1172, 1270, 212, +1273, 1410, 0, +1380, 1549, 0, +1492, 1685, 0, +1609, 1821, 0, +1730, 1956, 0, +1853, 2089, 0, +1978, 2223, 0, +2105, 2356, 0, +2233, 2489, 0, +2362, 2621, 0, +2492, 2754, 0, +2623, 2887, 0, +2753, 3019, 0, +2885, 3151, 0, +3016, 3283, 0, +3147, 3416, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +957, 0, 1025, +970, 0, 1020, +987, 0, 1014, +1005, 0, 1002, +994, 298, 947, +978, 544, 862, +978, 544, 673, +978, 754, 544, +1126, 1049, 430, +1266, 1270, 212, +1350, 1410, 0, +1442, 1549, 0, +1541, 1685, 0, +1648, 1821, 0, +1759, 1956, 0, +1875, 2089, 0, +1995, 2223, 0, +2118, 2356, 0, +2243, 2489, 0, +2370, 2621, 0, +2498, 2754, 0, +2627, 2887, 0, +2756, 3019, 0, +2887, 3151, 0, +3018, 3283, 0, +3149, 3416, 0, +3280, 3548, 0, +3412, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1160, 0, 1154, +1157, 0, 1139, +1152, 0, 1117, +1146, 0, 1086, +1137, 80, 1040, +1126, 430, 972, +1126, 430, 831, +1126, 430, 529, +1126, 814, 430, +1270, 1145, 212, +1410, 1383, 0, +1513, 1549, 0, +1599, 1685, 0, +1694, 1821, 0, +1796, 1956, 0, +1904, 2089, 0, +2018, 2223, 0, +2135, 2356, 0, +2256, 2489, 0, +2380, 2621, 0, +2505, 2754, 0, +2632, 2887, 0, +2761, 3019, 0, +2890, 3151, 0, +3020, 3283, 0, +3151, 3416, 0, +3281, 3548, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3939, 4095, 0, +1295, 0, 1234, +1292, 0, 1221, +1289, 0, 1203, +1284, 0, 1177, +1278, 0, 1141, +1270, 212, 1087, +1270, 212, 982, +1270, 212, 787, +1270, 212, 214, +1270, 884, 212, +1410, 1248, 0, +1549, 1499, 0, +1667, 1685, 0, +1750, 1821, 0, +1841, 1956, 0, +1940, 2089, 0, +2046, 2223, 0, +2157, 2356, 0, +2273, 2489, 0, +2393, 2621, 0, +2515, 2754, 0, +2640, 2887, 0, +2766, 3019, 0, +2895, 3151, 0, +3023, 3283, 0, +3153, 3416, 0, +3283, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1323, +1427, 0, 1313, +1424, 0, 1298, +1421, 0, 1277, +1416, 0, 1248, +1410, 0, 1206, +1410, 0, 1127, +1410, 0, 994, +1410, 0, 719, +1410, 47, 0, +1410, 964, 0, +1549, 1358, 0, +1685, 1618, 0, +1815, 1821, 0, +1895, 1956, 0, +1984, 2089, 0, +2081, 2223, 0, +2185, 2356, 0, +2294, 2489, 0, +2409, 2621, 0, +2528, 2754, 0, +2650, 2887, 0, +2774, 3019, 0, +2900, 3151, 0, +3027, 3283, 0, +3156, 3416, 0, +3286, 3548, 0, +3416, 3680, 0, +3547, 3812, 0, +3677, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1563, 0, 1421, +1561, 0, 1412, +1559, 0, 1400, +1557, 0, 1384, +1553, 0, 1360, +1549, 0, 1328, +1549, 0, 1269, +1549, 0, 1176, +1549, 0, 1011, +1549, 0, 611, +1549, 0, 0, +1549, 1053, 0, +1685, 1471, 0, +1821, 1740, 0, +1956, 1953, 0, +2037, 2089, 0, +2124, 2223, 0, +2219, 2356, 0, +2322, 2489, 0, +2431, 2621, 0, +2545, 2754, 0, +2662, 2887, 0, +2784, 3019, 0, +2907, 3151, 0, +3033, 3283, 0, +3160, 3416, 0, +3289, 3548, 0, +3418, 3680, 0, +3548, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1524, +1695, 0, 1517, +1693, 0, 1508, +1691, 0, 1495, +1689, 0, 1477, +1685, 0, 1452, +1685, 0, 1408, +1685, 0, 1341, +1685, 0, 1233, +1685, 0, 1031, +1685, 0, 406, +1685, 0, 0, +1685, 1149, 0, +1821, 1590, 0, +1956, 1865, 0, +2089, 2080, 0, +2176, 2223, 0, +2262, 2356, 0, +2356, 2489, 0, +2458, 2621, 0, +2566, 2754, 0, +2679, 2887, 0, +2796, 3019, 0, +2917, 3151, 0, +3040, 3283, 0, +3166, 3416, 0, +3293, 3548, 0, +3421, 3680, 0, +3551, 3812, 0, +3681, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1828, 0, 1634, +1828, 0, 1629, +1827, 0, 1621, +1825, 0, 1611, +1823, 0, 1598, +1821, 0, 1579, +1821, 0, 1545, +1821, 0, 1497, +1821, 0, 1423, +1821, 0, 1301, +1821, 0, 1059, +1821, 0, 0, +1821, 0, 0, +1821, 1253, 0, +1956, 1711, 0, +2089, 1991, 0, +2223, 2208, 0, +2313, 2356, 0, +2398, 2489, 0, +2492, 2621, 0, +2593, 2754, 0, +2700, 2887, 0, +2813, 3019, 0, +2930, 3151, 0, +3050, 3283, 0, +3173, 3416, 0, +3299, 3548, 0, +3426, 3680, 0, +3554, 3812, 0, +3683, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +1961, 0, 1749, +1961, 0, 1745, +1960, 0, 1739, +1959, 0, 1731, +1958, 0, 1721, +1956, 0, 1706, +1956, 0, 1681, +1956, 0, 1646, +1956, 0, 1594, +1956, 0, 1514, +1956, 0, 1378, +1956, 0, 1091, +1956, 0, 0, +1956, 0, 0, +1956, 1362, 0, +2089, 1835, 0, +2223, 2118, 0, +2356, 2338, 0, +2449, 2489, 0, +2533, 2621, 0, +2627, 2754, 0, +2727, 2887, 0, +2834, 3019, 0, +2946, 3151, 0, +3062, 3283, 0, +3183, 3416, 0, +3306, 3548, 0, +3431, 3680, 0, +3558, 3812, 0, +3686, 3944, 0, +3815, 4076, 0, +3945, 4095, 0, +2094, 0, 1867, +2093, 0, 1864, +2093, 0, 1860, +2092, 0, 1854, +2091, 0, 1846, +2089, 0, 1835, +2089, 0, 1816, +2089, 0, 1790, +2089, 0, 1753, +2089, 0, 1698, +2089, 0, 1612, +2089, 0, 1463, +2089, 0, 1133, +2089, 0, 0, +2089, 0, 0, +2089, 1476, 0, +2223, 1961, 0, +2356, 2247, 0, +2489, 2468, 0, +2584, 2621, 0, +2668, 2754, 0, +2761, 2887, 0, +2860, 3019, 0, +2967, 3151, 0, +3079, 3283, 0, +3196, 3416, 0, +3316, 3548, 0, +3438, 3680, 0, +3564, 3812, 0, +3690, 3944, 0, +3818, 4076, 0, +3948, 4095, 0, +2226, 0, 1989, +2226, 0, 1987, +2225, 0, 1983, +2225, 0, 1979, +2224, 0, 1973, +2223, 0, 1965, +2223, 0, 1951, +2223, 0, 1931, +2223, 0, 1904, +2223, 0, 1865, +2223, 0, 1808, +2223, 0, 1717, +2223, 0, 1557, +2223, 0, 1181, +2223, 0, 0, +2223, 0, 0, +2223, 1595, 0, +2356, 2088, 0, +2489, 2377, 0, +2621, 2598, 0, +2718, 2754, 0, +2802, 2887, 0, +2894, 3019, 0, +2994, 3151, 0, +3100, 3283, 0, +3212, 3416, 0, +3328, 3548, 0, +3448, 3680, 0, +3571, 3812, 0, +3696, 3944, 0, +3822, 4076, 0, +3951, 4095, 0, +2358, 0, 2113, +2358, 0, 2111, +2358, 0, 2109, +2357, 0, 2105, +2357, 0, 2101, +2356, 0, 2095, +2356, 0, 2084, +2356, 0, 2070, +2356, 0, 2050, +2356, 0, 2022, +2356, 0, 1982, +2356, 0, 1922, +2356, 0, 1828, +2356, 0, 1659, +2356, 0, 1240, +2356, 0, 0, +2356, 0, 0, +2356, 1716, 0, +2489, 2218, 0, +2621, 2507, 0, +2754, 2730, 0, +2852, 2887, 0, +2935, 3019, 0, +3027, 3151, 0, +3127, 3283, 0, +3233, 3416, 0, +3344, 3548, 0, +3461, 3680, 0, +3581, 3812, 0, +3703, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2239, +2491, 0, 2238, +2490, 0, 2236, +2490, 0, 2234, +2489, 0, 2230, +2489, 0, 2226, +2489, 0, 2218, +2489, 0, 2207, +2489, 0, 2193, +2489, 0, 2172, +2489, 0, 2144, +2489, 0, 2103, +2489, 0, 2041, +2489, 0, 1943, +2489, 0, 1767, +2489, 0, 1310, +2489, 0, 0, +2489, 0, 0, +2489, 1840, 0, +2621, 2346, 0, +2754, 2638, 0, +2887, 2861, 0, +2985, 3019, 0, +3068, 3151, 0, +3160, 3283, 0, +3259, 3416, 0, +3365, 3548, 0, +3477, 3680, 0, +3593, 3812, 0, +3713, 3944, 0, +3835, 4076, 0, +3961, 4095, 0, +2623, 0, 2367, +2623, 0, 2366, +2623, 0, 2364, +2622, 0, 2362, +2622, 0, 2360, +2621, 0, 2356, +2621, 0, 2351, +2621, 0, 2343, +2621, 0, 2332, +2621, 0, 2317, +2621, 0, 2297, +2621, 0, 2268, +2621, 0, 2226, +2621, 0, 2163, +2621, 0, 2062, +2621, 0, 1880, +2621, 0, 1387, +2621, 0, 0, +2621, 0, 0, +2621, 1966, 0, +2754, 2477, 0, +2887, 2769, 0, +3019, 2992, 0, +3118, 3151, 0, +3201, 3283, 0, +3293, 3416, 0, +3392, 3548, 0, +3498, 3680, 0, +3609, 3812, 0, +3725, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2496, +2755, 0, 2495, +2755, 0, 2494, +2755, 0, 2492, +2755, 0, 2490, +2754, 0, 2488, +2754, 0, 2484, +2754, 0, 2478, +2754, 0, 2470, +2754, 0, 2459, +2754, 0, 2444, +2754, 0, 2423, +2754, 0, 2394, +2754, 0, 2351, +2754, 0, 2287, +2754, 0, 2185, +2754, 0, 1997, +2754, 0, 1476, +2754, 0, 0, +2754, 0, 0, +2754, 2094, 0, +2887, 2607, 0, +3019, 2900, 0, +3151, 3124, 0, +3251, 3283, 0, +3334, 3416, 0, +3425, 3548, 0, +3525, 3680, 0, +3630, 3812, 0, +3742, 3944, 0, +3858, 4076, 0, +3977, 4095, 0, +2887, 0, 2625, +2887, 0, 2625, +2887, 0, 2624, +2887, 0, 2623, +2887, 0, 2621, +2887, 0, 2619, +2887, 0, 2616, +2887, 0, 2612, +2887, 0, 2606, +2887, 0, 2598, +2887, 0, 2587, +2887, 0, 2572, +2887, 0, 2551, +2887, 0, 2521, +2887, 0, 2478, +2887, 0, 2413, +2887, 0, 2310, +2887, 0, 2118, +2887, 0, 1569, +2887, 0, 0, +2887, 0, 0, +2887, 2223, 0, +3019, 2738, 0, +3151, 3032, 0, +3283, 3255, 0, +3384, 3416, 0, +3466, 3548, 0, +3558, 3680, 0, +3657, 3812, 0, +3763, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2755, +3019, 0, 2755, +3019, 0, 2754, +3019, 0, 2753, +3019, 0, 2752, +3019, 0, 2751, +3019, 0, 2748, +3019, 0, 2745, +3019, 0, 2741, +3019, 0, 2735, +3019, 0, 2727, +3019, 0, 2716, +3019, 0, 2701, +3019, 0, 2679, +3019, 0, 2649, +3019, 0, 2606, +3019, 0, 2541, +3019, 0, 2435, +3019, 0, 2241, +3019, 0, 1670, +3019, 0, 0, +3019, 0, 0, +3019, 2352, 0, +3151, 2870, 0, +3283, 3163, 0, +3416, 3387, 0, +3516, 3548, 0, +3599, 3680, 0, +3690, 3812, 0, +3789, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2886, +3152, 0, 2886, +3152, 0, 2885, +3151, 0, 2885, +3151, 0, 2884, +3151, 0, 2883, +3151, 0, 2881, +3151, 0, 2879, +3151, 0, 2875, +3151, 0, 2871, +3151, 0, 2865, +3151, 0, 2857, +3151, 0, 2845, +3151, 0, 2830, +3151, 0, 2809, +3151, 0, 2779, +3151, 0, 2735, +3151, 0, 2670, +3151, 0, 2564, +3151, 0, 2367, +3151, 0, 1779, +3151, 0, 0, +3151, 0, 0, +3151, 2482, 0, +3283, 3000, 0, +3416, 3295, 0, +3548, 3519, 0, +3648, 3680, 0, +3731, 3812, 0, +3822, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3017, +3283, 0, 3017, +3283, 0, 3016, +3283, 0, 3016, +3283, 0, 3015, +3283, 0, 3014, +3283, 0, 3013, +3283, 0, 3011, +3283, 0, 3009, +3283, 0, 3005, +3283, 0, 3001, +3283, 0, 2995, +3283, 0, 2987, +3283, 0, 2976, +3283, 0, 2960, +3283, 0, 2939, +3283, 0, 2909, +3283, 0, 2865, +3283, 0, 2799, +3283, 0, 2692, +3283, 0, 2493, +3283, 0, 1890, +3283, 0, 0, +3283, 0, 0, +3283, 2613, 0, +3416, 3133, 0, +3548, 3427, 0, +3680, 3651, 0, +3781, 3812, 0, +3863, 3944, 0, +3954, 4076, 0, +4054, 4095, 0, +3416, 0, 3148, +3416, 0, 3148, +3416, 0, 3148, +3416, 0, 3147, +3416, 0, 3147, +3416, 0, 3146, +3416, 0, 3145, +3416, 0, 3144, +3416, 0, 3142, +3416, 0, 3140, +3416, 0, 3136, +3416, 0, 3132, +3416, 0, 3126, +3416, 0, 3118, +3416, 0, 3106, +3416, 0, 3091, +3416, 0, 3070, +3416, 0, 3039, +3416, 0, 2996, +3416, 0, 2929, +3416, 0, 2822, +3416, 0, 2621, +3416, 0, 2011, +3416, 0, 0, +3416, 0, 0, +3416, 2744, 0, +3548, 3265, 0, +3680, 3559, 0, +3812, 3783, 0, +3913, 3944, 0, +3995, 4076, 0, +4087, 4095, 0, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3278, +3548, 0, 3278, +3548, 0, 3277, +3548, 0, 3275, +3548, 0, 3273, +3548, 0, 3271, +3548, 0, 3268, +3548, 0, 3263, +3548, 0, 3257, +3548, 0, 3249, +3548, 0, 3238, +3548, 0, 3222, +3548, 0, 3201, +3548, 0, 3171, +3548, 0, 3126, +3548, 0, 3060, +3548, 0, 2952, +3548, 0, 2751, +3548, 0, 2130, +3548, 0, 0, +3548, 0, 0, +3548, 2875, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3410, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3407, +3680, 0, 3405, +3680, 0, 3402, +3680, 0, 3399, +3680, 0, 3395, +3680, 0, 3388, +3680, 0, 3380, +3680, 0, 3369, +3680, 0, 3354, +3680, 0, 3332, +3680, 0, 3302, +3680, 0, 3258, +3680, 0, 3191, +3680, 0, 3083, +3680, 0, 2881, +3680, 0, 2257, +3680, 0, 0, +3680, 0, 0, +3680, 3006, 0, +3812, 3528, 0, +3944, 3823, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3538, +3812, 0, 3537, +3812, 0, 3534, +3812, 0, 3531, +3812, 0, 3526, +3812, 0, 3520, +3812, 0, 3512, +3812, 0, 3501, +3812, 0, 3485, +3812, 0, 3464, +3812, 0, 3433, +3812, 0, 3389, +3812, 0, 3322, +3812, 0, 3214, +3812, 0, 3012, +3812, 0, 2382, +3812, 0, 0, +3812, 0, 0, +3812, 3138, 0, +3944, 3660, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3670, +3944, 0, 3668, +3944, 0, 3666, +3944, 0, 3662, +3944, 0, 3658, +3944, 0, 3652, +3944, 0, 3644, +3944, 0, 3632, +3944, 0, 3617, +3944, 0, 3595, +3944, 0, 3565, +3944, 0, 3521, +3944, 0, 3454, +3944, 0, 3346, +3944, 0, 3143, +3944, 0, 2508, +3944, 0, 0, +3944, 0, 0, +3944, 3270, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3802, +4076, 0, 3800, +4076, 0, 3797, +4076, 0, 3794, +4076, 0, 3790, +4076, 0, 3784, +4076, 0, 3775, +4076, 0, 3764, +4076, 0, 3749, +4076, 0, 3727, +4076, 0, 3696, +4076, 0, 3652, +4076, 0, 3585, +4076, 0, 3477, +4076, 0, 3273, +4076, 0, 2635, +4076, 0, 0, +4076, 0, 0, +4076, 3402, 0, +4095, 3925, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3934, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3926, +4095, 0, 3922, +4095, 0, 3916, +4095, 0, 3908, +4095, 0, 3896, +4095, 0, 3881, +4095, 0, 3859, +4095, 0, 3829, +4095, 0, 3784, +4095, 0, 3717, +4095, 0, 3609, +4095, 0, 3405, +4095, 0, 2767, +4095, 0, 0, +4095, 0, 0, +4095, 3534, 0, +0, 667, 888, +0, 719, 888, +0, 781, 888, +0, 852, 888, +0, 888, 838, +0, 888, 697, +0, 888, 392, +0, 1025, 0, +0, 1160, 0, +431, 1295, 0, +803, 1429, 0, +1057, 1563, 0, +1262, 1696, 0, +1442, 1828, 0, +1607, 1961, 0, +1763, 2094, 0, +1911, 2226, 0, +2055, 2358, 0, +2196, 2491, 0, +2335, 2623, 0, +2472, 2755, 0, +2607, 2887, 0, +2742, 3019, 0, +2876, 3152, 0, +3009, 3284, 0, +3143, 3416, 0, +3276, 3548, 0, +3408, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 608, 888, +0, 678, 882, +0, 745, 882, +0, 822, 882, +0, 882, 855, +0, 882, 719, +0, 882, 436, +0, 1020, 0, +0, 1157, 0, +529, 1292, 0, +849, 1427, 0, +1084, 1561, 0, +1279, 1695, 0, +1454, 1828, 0, +1615, 1961, 0, +1768, 2093, 0, +1915, 2226, 0, +2058, 2358, 0, +2199, 2491, 0, +2336, 2623, 0, +2473, 2755, 0, +2608, 2887, 0, +2742, 3019, 0, +2877, 3152, 0, +3010, 3283, 0, +3143, 3416, 0, +3276, 3548, 0, +3408, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 515, 888, +0, 599, 882, +0, 691, 873, +0, 776, 873, +0, 870, 873, +0, 873, 749, +0, 873, 488, +0, 1014, 0, +214, 1152, 0, +635, 1289, 0, +904, 1424, 0, +1118, 1559, 0, +1302, 1693, 0, +1469, 1827, 0, +1626, 1960, 0, +1776, 2093, 0, +1921, 2225, 0, +2062, 2358, 0, +2202, 2490, 0, +2338, 2623, 0, +2475, 2755, 0, +2609, 2887, 0, +2743, 3019, 0, +2877, 3152, 0, +3010, 3283, 0, +3143, 3416, 0, +3276, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 350, 888, +0, 466, 882, +0, 585, 873, +166, 708, 862, +166, 815, 862, +166, 862, 784, +166, 862, 550, +0, 1005, 0, +455, 1146, 0, +746, 1284, 0, +969, 1421, 0, +1159, 1557, 0, +1330, 1691, 0, +1489, 1825, 0, +1640, 1959, 0, +1786, 2092, 0, +1928, 2225, 0, +2068, 2357, 0, +2206, 2490, 0, +2341, 2622, 0, +2477, 2755, 0, +2611, 2887, 0, +2745, 3019, 0, +2878, 3151, 0, +3011, 3283, 0, +3144, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 0, 888, +0, 190, 882, +0, 390, 873, +166, 567, 862, +412, 730, 846, +412, 846, 828, +412, 846, 622, +397, 994, 298, +655, 1137, 80, +862, 1278, 0, +1043, 1416, 0, +1209, 1553, 0, +1365, 1689, 0, +1514, 1823, 0, +1658, 1958, 0, +1799, 2091, 0, +1938, 2224, 0, +2075, 2357, 0, +2211, 2489, 0, +2346, 2622, 0, +2480, 2755, 0, +2613, 2887, 0, +2746, 3019, 0, +2879, 3151, 0, +3012, 3283, 0, +3144, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 0, 888, +0, 0, 882, +0, 0, 873, +166, 264, 862, +412, 541, 846, +614, 758, 824, +614, 824, 702, +673, 978, 544, +831, 1126, 430, +982, 1270, 212, +1127, 1410, 0, +1269, 1549, 0, +1408, 1685, 0, +1545, 1821, 0, +1681, 1956, 0, +1816, 2089, 0, +1951, 2223, 0, +2084, 2356, 0, +2218, 2489, 0, +2351, 2621, 0, +2484, 2754, 0, +2616, 2887, 0, +2748, 3019, 0, +2881, 3151, 0, +3013, 3283, 0, +3145, 3416, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +392, 0, 888, +436, 0, 882, +488, 0, 873, +550, 166, 862, +622, 412, 846, +702, 614, 824, +792, 792, 792, +890, 956, 746, +994, 1110, 676, +1104, 1258, 562, +1219, 1402, 344, +1338, 1543, 0, +1460, 1681, 0, +1585, 1817, 0, +1711, 1953, 0, +1838, 2087, 0, +1967, 2221, 0, +2096, 2355, 0, +2227, 2488, 0, +2357, 2621, 0, +2489, 2754, 0, +2620, 2886, 0, +2751, 3018, 0, +2883, 3151, 0, +3015, 3283, 0, +3147, 3415, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +811, 0, 1025, +829, 0, 1020, +852, 0, 1014, +881, 0, 1005, +917, 298, 994, +960, 544, 978, +956, 746, 890, +956, 834, 746, +1110, 1092, 676, +1211, 1258, 562, +1304, 1402, 344, +1405, 1543, 0, +1512, 1681, 0, +1625, 1817, 0, +1742, 1953, 0, +1862, 2087, 0, +1985, 2221, 0, +2110, 2355, 0, +2237, 2488, 0, +2365, 2621, 0, +2494, 2754, 0, +2624, 2886, 0, +2754, 3018, 0, +2885, 3151, 0, +3016, 3283, 0, +3148, 3415, 0, +3280, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1079, 0, 1160, +1089, 0, 1157, +1102, 0, 1152, +1119, 0, 1146, +1137, 80, 1134, +1126, 430, 1079, +1110, 676, 994, +1110, 676, 805, +1110, 886, 676, +1258, 1181, 562, +1398, 1402, 344, +1482, 1543, 0, +1574, 1681, 0, +1673, 1817, 0, +1779, 1953, 0, +1891, 2087, 0, +2008, 2221, 0, +2127, 2355, 0, +2250, 2488, 0, +2375, 2621, 0, +2502, 2754, 0, +2630, 2886, 0, +2759, 3018, 0, +2889, 3151, 0, +3019, 3283, 0, +3150, 3415, 0, +3281, 3548, 0, +3412, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1292, 0, 1295, +1292, 0, 1286, +1289, 0, 1271, +1284, 0, 1249, +1278, 0, 1218, +1270, 212, 1172, +1258, 562, 1104, +1258, 562, 963, +1258, 562, 661, +1258, 946, 562, +1402, 1277, 344, +1543, 1516, 0, +1645, 1681, 0, +1732, 1817, 0, +1826, 1953, 0, +1928, 2087, 0, +2036, 2221, 0, +2150, 2355, 0, +2267, 2488, 0, +2388, 2621, 0, +2512, 2754, 0, +2637, 2886, 0, +2764, 3018, 0, +2893, 3151, 0, +3022, 3283, 0, +3152, 3415, 0, +3283, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1429, 0, 1376, +1427, 0, 1366, +1424, 0, 1353, +1421, 0, 1335, +1416, 0, 1310, +1410, 0, 1273, +1402, 344, 1219, +1402, 344, 1114, +1402, 344, 919, +1402, 344, 345, +1402, 1017, 344, +1543, 1381, 0, +1681, 1631, 0, +1799, 1817, 0, +1882, 1953, 0, +1973, 2087, 0, +2072, 2221, 0, +2178, 2355, 0, +2289, 2488, 0, +2405, 2621, 0, +2525, 2754, 0, +2647, 2886, 0, +2772, 3018, 0, +2898, 3151, 0, +3026, 3283, 0, +3155, 3415, 0, +3285, 3548, 0, +3415, 3680, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1563, 0, 1463, +1561, 0, 1456, +1559, 0, 1445, +1557, 0, 1430, +1553, 0, 1409, +1549, 0, 1380, +1543, 0, 1338, +1543, 0, 1259, +1543, 0, 1127, +1543, 0, 852, +1543, 172, 0, +1543, 1096, 0, +1681, 1489, 0, +1817, 1750, 0, +1947, 1953, 0, +2027, 2087, 0, +2116, 2221, 0, +2213, 2355, 0, +2317, 2488, 0, +2427, 2621, 0, +2541, 2754, 0, +2660, 2886, 0, +2782, 3018, 0, +2906, 3151, 0, +3032, 3283, 0, +3160, 3415, 0, +3288, 3548, 0, +3418, 3680, 0, +3548, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1696, 0, 1559, +1695, 0, 1552, +1693, 0, 1544, +1691, 0, 1532, +1689, 0, 1515, +1685, 0, 1492, +1681, 0, 1460, +1681, 0, 1401, +1681, 0, 1308, +1681, 0, 1142, +1681, 0, 742, +1681, 0, 0, +1681, 1184, 0, +1817, 1604, 0, +1953, 1872, 0, +2087, 2085, 0, +2169, 2221, 0, +2256, 2355, 0, +2352, 2488, 0, +2454, 2621, 0, +2563, 2754, 0, +2677, 2886, 0, +2794, 3018, 0, +2916, 3151, 0, +3039, 3283, 0, +3165, 3415, 0, +3292, 3548, 0, +3421, 3680, 0, +3550, 3812, 0, +3680, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1828, 0, 1661, +1828, 0, 1656, +1827, 0, 1650, +1825, 0, 1640, +1823, 0, 1627, +1821, 0, 1609, +1817, 0, 1585, +1817, 0, 1540, +1817, 0, 1474, +1817, 0, 1366, +1817, 0, 1164, +1817, 0, 536, +1817, 0, 0, +1817, 1281, 0, +1953, 1722, 0, +2087, 1996, 0, +2221, 2212, 0, +2308, 2355, 0, +2394, 2488, 0, +2488, 2621, 0, +2590, 2754, 0, +2698, 2886, 0, +2811, 3018, 0, +2928, 3151, 0, +3049, 3283, 0, +3173, 3415, 0, +3298, 3548, 0, +3425, 3680, 0, +3553, 3812, 0, +3683, 3944, 0, +3812, 4076, 0, +3943, 4095, 0, +1961, 0, 1770, +1961, 0, 1766, +1960, 0, 1761, +1959, 0, 1754, +1958, 0, 1743, +1956, 0, 1730, +1953, 0, 1711, +1953, 0, 1678, +1953, 0, 1629, +1953, 0, 1555, +1953, 0, 1433, +1953, 0, 1190, +1953, 0, 0, +1953, 0, 0, +1953, 1385, 0, +2087, 1843, 0, +2221, 2123, 0, +2355, 2340, 0, +2445, 2488, 0, +2530, 2621, 0, +2624, 2754, 0, +2725, 2886, 0, +2832, 3018, 0, +2945, 3151, 0, +3062, 3283, 0, +3182, 3415, 0, +3305, 3548, 0, +3431, 3680, 0, +3558, 3812, 0, +3686, 3944, 0, +3815, 4076, 0, +3945, 4095, 0, +2094, 0, 1884, +2093, 0, 1881, +2093, 0, 1877, +2092, 0, 1871, +2091, 0, 1863, +2089, 0, 1853, +2087, 0, 1838, +2087, 0, 1813, +2087, 0, 1778, +2087, 0, 1726, +2087, 0, 1646, +2087, 0, 1509, +2087, 0, 1224, +2087, 0, 0, +2087, 0, 0, +2087, 1494, 0, +2221, 1967, 0, +2355, 2251, 0, +2488, 2470, 0, +2581, 2621, 0, +2666, 2754, 0, +2759, 2886, 0, +2859, 3018, 0, +2966, 3151, 0, +3078, 3283, 0, +3195, 3415, 0, +3315, 3548, 0, +3438, 3680, 0, +3563, 3812, 0, +3690, 3944, 0, +3818, 4076, 0, +3947, 4095, 0, +2226, 0, 2002, +2226, 0, 1999, +2225, 0, 1996, +2225, 0, 1992, +2224, 0, 1986, +2223, 0, 1978, +2221, 0, 1967, +2221, 0, 1948, +2221, 0, 1922, +2221, 0, 1885, +2221, 0, 1830, +2221, 0, 1744, +2221, 0, 1596, +2221, 0, 1264, +2221, 0, 0, +2221, 0, 0, +2221, 1608, 0, +2355, 2093, 0, +2488, 2379, 0, +2621, 2600, 0, +2716, 2754, 0, +2800, 2886, 0, +2892, 3018, 0, +2993, 3151, 0, +3099, 3283, 0, +3211, 3415, 0, +3328, 3548, 0, +3448, 3680, 0, +3571, 3812, 0, +3696, 3944, 0, +3822, 4076, 0, +3951, 4095, 0, +2358, 0, 2123, +2358, 0, 2121, +2358, 0, 2119, +2357, 0, 2115, +2357, 0, 2111, +2356, 0, 2105, +2355, 0, 2096, +2355, 0, 2083, +2355, 0, 2063, +2355, 0, 2037, +2355, 0, 1998, +2355, 0, 1940, +2355, 0, 1849, +2355, 0, 1689, +2355, 0, 1313, +2355, 0, 0, +2355, 0, 0, +2355, 1727, 0, +2488, 2221, 0, +2621, 2509, 0, +2754, 2731, 0, +2850, 2886, 0, +2934, 3018, 0, +3026, 3151, 0, +3126, 3283, 0, +3232, 3415, 0, +3344, 3548, 0, +3460, 3680, 0, +3580, 3812, 0, +3703, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2247, +2491, 0, 2245, +2490, 0, 2243, +2490, 0, 2241, +2489, 0, 2238, +2489, 0, 2233, +2488, 0, 2227, +2488, 0, 2217, +2488, 0, 2202, +2488, 0, 2183, +2488, 0, 2155, +2488, 0, 2115, +2488, 0, 2055, +2488, 0, 1960, +2488, 0, 1791, +2488, 0, 1373, +2488, 0, 0, +2488, 0, 0, +2488, 1848, 0, +2621, 2349, 0, +2754, 2640, 0, +2886, 2862, 0, +2984, 3018, 0, +3067, 3151, 0, +3159, 3283, 0, +3259, 3415, 0, +3365, 3548, 0, +3477, 3680, 0, +3593, 3812, 0, +3713, 3944, 0, +3835, 4076, 0, +3961, 4095, 0, +2623, 0, 2372, +2623, 0, 2372, +2623, 0, 2370, +2622, 0, 2368, +2622, 0, 2366, +2621, 0, 2362, +2621, 0, 2357, +2621, 0, 2350, +2621, 0, 2339, +2621, 0, 2325, +2621, 0, 2304, +2621, 0, 2276, +2621, 0, 2235, +2621, 0, 2173, +2621, 0, 2075, +2621, 0, 1899, +2621, 0, 1441, +2621, 0, 0, +2621, 0, 0, +2621, 1972, 0, +2754, 2479, 0, +2886, 2770, 0, +3018, 2992, 0, +3117, 3151, 0, +3200, 3283, 0, +3292, 3415, 0, +3392, 3548, 0, +3497, 3680, 0, +3609, 3812, 0, +3725, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2500, +2755, 0, 2499, +2755, 0, 2498, +2755, 0, 2497, +2755, 0, 2495, +2754, 0, 2492, +2754, 0, 2489, +2754, 0, 2483, +2754, 0, 2475, +2754, 0, 2464, +2754, 0, 2450, +2754, 0, 2429, +2754, 0, 2400, +2754, 0, 2358, +2754, 0, 2295, +2754, 0, 2195, +2754, 0, 2012, +2754, 0, 1521, +2754, 0, 0, +2754, 0, 0, +2754, 2099, 0, +2886, 2609, 0, +3018, 2901, 0, +3151, 3124, 0, +3250, 3283, 0, +3333, 3415, 0, +3425, 3548, 0, +3524, 3680, 0, +3630, 3812, 0, +3741, 3944, 0, +3858, 4076, 0, +3977, 4095, 0, +2887, 0, 2628, +2887, 0, 2628, +2887, 0, 2627, +2887, 0, 2626, +2887, 0, 2625, +2887, 0, 2623, +2886, 0, 2620, +2886, 0, 2616, +2886, 0, 2610, +2886, 0, 2602, +2886, 0, 2591, +2886, 0, 2576, +2886, 0, 2555, +2886, 0, 2526, +2886, 0, 2483, +2886, 0, 2419, +2886, 0, 2317, +2886, 0, 2129, +2886, 0, 1606, +2886, 0, 0, +2886, 0, 0, +2886, 2226, 0, +3018, 2739, 0, +3151, 3032, 0, +3283, 3256, 0, +3383, 3415, 0, +3466, 3548, 0, +3557, 3680, 0, +3657, 3812, 0, +3762, 3944, 0, +3874, 4076, 0, +3990, 4095, 0, +3019, 0, 2758, +3019, 0, 2757, +3019, 0, 2757, +3019, 0, 2756, +3019, 0, 2755, +3019, 0, 2753, +3018, 0, 2751, +3018, 0, 2748, +3018, 0, 2744, +3018, 0, 2738, +3018, 0, 2730, +3018, 0, 2719, +3018, 0, 2703, +3018, 0, 2683, +3018, 0, 2653, +3018, 0, 2610, +3018, 0, 2545, +3018, 0, 2441, +3018, 0, 2249, +3018, 0, 1700, +3018, 0, 0, +3018, 0, 0, +3018, 2354, 0, +3151, 2871, 0, +3283, 3164, 0, +3415, 3387, 0, +3515, 3548, 0, +3598, 3680, 0, +3690, 3812, 0, +3789, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2888, +3152, 0, 2888, +3152, 0, 2887, +3151, 0, 2886, +3151, 0, 2886, +3151, 0, 2885, +3151, 0, 2883, +3151, 0, 2881, +3151, 0, 2877, +3151, 0, 2873, +3151, 0, 2867, +3151, 0, 2859, +3151, 0, 2848, +3151, 0, 2833, +3151, 0, 2812, +3151, 0, 2782, +3151, 0, 2738, +3151, 0, 2673, +3151, 0, 2568, +3151, 0, 2373, +3151, 0, 1802, +3151, 0, 0, +3151, 0, 0, +3151, 2484, 0, +3283, 3001, 0, +3415, 3295, 0, +3548, 3519, 0, +3648, 3680, 0, +3731, 3812, 0, +3822, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3018, +3283, 0, 3018, +3283, 0, 3018, +3283, 0, 3017, +3283, 0, 3016, +3283, 0, 3016, +3283, 0, 3015, +3283, 0, 3013, +3283, 0, 3010, +3283, 0, 3007, +3283, 0, 3003, +3283, 0, 2997, +3283, 0, 2988, +3283, 0, 2977, +3283, 0, 2962, +3283, 0, 2941, +3283, 0, 2911, +3283, 0, 2867, +3283, 0, 2801, +3283, 0, 2695, +3283, 0, 2498, +3283, 0, 1908, +3283, 0, 0, +3283, 0, 0, +3283, 2614, 0, +3415, 3133, 0, +3548, 3427, 0, +3680, 3651, 0, +3781, 3812, 0, +3863, 3944, 0, +3954, 4076, 0, +4054, 4095, 0, +3416, 0, 3149, +3416, 0, 3149, +3416, 0, 3149, +3416, 0, 3148, +3416, 0, 3148, +3416, 0, 3147, +3415, 0, 3147, +3415, 0, 3145, +3415, 0, 3144, +3415, 0, 3141, +3415, 0, 3138, +3415, 0, 3133, +3415, 0, 3127, +3415, 0, 3119, +3415, 0, 3108, +3415, 0, 3093, +3415, 0, 3071, +3415, 0, 3041, +3415, 0, 2997, +3415, 0, 2931, +3415, 0, 2824, +3415, 0, 2625, +3415, 0, 2026, +3415, 0, 0, +3415, 0, 0, +3415, 2745, 0, +3548, 3265, 0, +3680, 3559, 0, +3812, 3783, 0, +3913, 3944, 0, +3995, 4076, 0, +4087, 4095, 0, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3279, +3548, 0, 3279, +3548, 0, 3278, +3548, 0, 3276, +3548, 0, 3274, +3548, 0, 3272, +3548, 0, 3269, +3548, 0, 3264, +3548, 0, 3258, +3548, 0, 3250, +3548, 0, 3239, +3548, 0, 3223, +3548, 0, 3202, +3548, 0, 3172, +3548, 0, 3128, +3548, 0, 3061, +3548, 0, 2954, +3548, 0, 2754, +3548, 0, 2141, +3548, 0, 0, +3548, 0, 0, +3548, 2876, 0, +3680, 3396, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3412, +3680, 0, 3412, +3680, 0, 3412, +3680, 0, 3412, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3410, +3680, 0, 3409, +3680, 0, 3407, +3680, 0, 3406, +3680, 0, 3403, +3680, 0, 3400, +3680, 0, 3395, +3680, 0, 3389, +3680, 0, 3381, +3680, 0, 3370, +3680, 0, 3354, +3680, 0, 3333, +3680, 0, 3303, +3680, 0, 3258, +3680, 0, 3192, +3680, 0, 3084, +3680, 0, 2883, +3680, 0, 2266, +3680, 0, 0, +3680, 0, 0, +3680, 3007, 0, +3812, 3528, 0, +3944, 3823, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3539, +3812, 0, 3537, +3812, 0, 3534, +3812, 0, 3531, +3812, 0, 3527, +3812, 0, 3521, +3812, 0, 3513, +3812, 0, 3501, +3812, 0, 3486, +3812, 0, 3464, +3812, 0, 3434, +3812, 0, 3390, +3812, 0, 3323, +3812, 0, 3215, +3812, 0, 3014, +3812, 0, 2389, +3812, 0, 0, +3812, 0, 0, +3812, 3139, 0, +3944, 3660, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3670, +3944, 0, 3668, +3944, 0, 3666, +3944, 0, 3663, +3944, 0, 3658, +3944, 0, 3652, +3944, 0, 3644, +3944, 0, 3633, +3944, 0, 3617, +3944, 0, 3596, +3944, 0, 3565, +3944, 0, 3521, +3944, 0, 3454, +3944, 0, 3346, +3944, 0, 3144, +3944, 0, 2513, +3944, 0, 0, +3944, 0, 0, +3944, 3270, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3802, +4076, 0, 3800, +4076, 0, 3798, +4076, 0, 3794, +4076, 0, 3790, +4076, 0, 3784, +4076, 0, 3776, +4076, 0, 3764, +4076, 0, 3749, +4076, 0, 3727, +4076, 0, 3697, +4076, 0, 3653, +4076, 0, 3586, +4076, 0, 3477, +4076, 0, 3274, +4076, 0, 2639, +4076, 0, 0, +4076, 0, 0, +4076, 3402, 0, +4095, 3925, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3935, +4095, 0, 3934, +4095, 0, 3932, +4095, 0, 3930, +4095, 0, 3927, +4095, 0, 3922, +4095, 0, 3916, +4095, 0, 3908, +4095, 0, 3896, +4095, 0, 3881, +4095, 0, 3859, +4095, 0, 3829, +4095, 0, 3784, +4095, 0, 3718, +4095, 0, 3609, +4095, 0, 3406, +4095, 0, 2770, +4095, 0, 0, +4095, 0, 0, +4095, 3534, 0, +0, 792, 1025, +0, 832, 1025, +0, 881, 1025, +0, 939, 1025, +0, 1006, 1025, +0, 1025, 957, +0, 1025, 811, +0, 1025, 488, +0, 1160, 0, +0, 1295, 0, +471, 1429, 0, +897, 1563, 0, +1167, 1696, 0, +1381, 1828, 0, +1565, 1961, 0, +1733, 2094, 0, +1890, 2226, 0, +2040, 2358, 0, +2185, 2491, 0, +2327, 2623, 0, +2466, 2755, 0, +2603, 2887, 0, +2738, 3019, 0, +2873, 3152, 0, +3008, 3284, 0, +3141, 3416, 0, +3275, 3548, 0, +3408, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 748, 1025, +0, 800, 1020, +0, 852, 1020, +0, 914, 1020, +0, 985, 1020, +0, 1020, 970, +0, 1020, 829, +0, 1020, 524, +0, 1157, 0, +0, 1292, 0, +562, 1427, 0, +935, 1561, 0, +1188, 1695, 0, +1394, 1828, 0, +1574, 1961, 0, +1739, 2093, 0, +1894, 2226, 0, +2043, 2358, 0, +2187, 2491, 0, +2328, 2623, 0, +2467, 2755, 0, +2604, 2887, 0, +2739, 3019, 0, +2874, 3152, 0, +3008, 3283, 0, +3141, 3416, 0, +3275, 3548, 0, +3408, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 681, 1025, +0, 740, 1020, +0, 810, 1014, +0, 877, 1014, +0, 954, 1014, +0, 1014, 987, +0, 1014, 852, +0, 1014, 568, +0, 1152, 0, +9, 1289, 0, +662, 1424, 0, +981, 1559, 0, +1216, 1693, 0, +1412, 1827, 0, +1586, 1960, 0, +1748, 2093, 0, +1900, 2225, 0, +2047, 2358, 0, +2190, 2490, 0, +2331, 2623, 0, +2469, 2755, 0, +2605, 2887, 0, +2740, 3019, 0, +2875, 3152, 0, +3008, 3283, 0, +3142, 3416, 0, +3275, 3548, 0, +3408, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 573, 1025, +0, 647, 1020, +0, 731, 1014, +0, 823, 1005, +0, 908, 1005, +0, 1002, 1005, +0, 1005, 881, +0, 1005, 620, +0, 1146, 0, +346, 1284, 0, +767, 1421, 0, +1037, 1557, 0, +1249, 1691, 0, +1434, 1825, 0, +1601, 1959, 0, +1758, 2092, 0, +1908, 2225, 0, +2053, 2357, 0, +2195, 2490, 0, +2334, 2622, 0, +2471, 2755, 0, +2607, 2887, 0, +2741, 3019, 0, +2876, 3151, 0, +3009, 3283, 0, +3142, 3416, 0, +3275, 3548, 0, +3408, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 371, 1025, +0, 482, 1020, +0, 598, 1014, +0, 717, 1005, +298, 840, 994, +298, 947, 994, +298, 994, 917, +298, 994, 682, +81, 1137, 80, +587, 1278, 0, +878, 1416, 0, +1102, 1553, 0, +1291, 1689, 0, +1462, 1823, 0, +1621, 1958, 0, +1772, 2091, 0, +1918, 2224, 0, +2060, 2357, 0, +2200, 2489, 0, +2337, 2622, 0, +2474, 2755, 0, +2609, 2887, 0, +2743, 3019, 0, +2877, 3151, 0, +3010, 3283, 0, +3143, 3416, 0, +3276, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 0, 1025, +0, 81, 1020, +0, 323, 1014, +0, 523, 1005, +298, 699, 994, +544, 862, 978, +544, 978, 960, +544, 978, 754, +529, 1126, 430, +787, 1270, 212, +994, 1410, 0, +1176, 1549, 0, +1341, 1685, 0, +1497, 1821, 0, +1646, 1956, 0, +1790, 2089, 0, +1931, 2223, 0, +2070, 2356, 0, +2207, 2489, 0, +2343, 2621, 0, +2478, 2754, 0, +2612, 2887, 0, +2745, 3019, 0, +2879, 3151, 0, +3011, 3283, 0, +3144, 3416, 0, +3277, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +0, 0, 1025, +0, 0, 1020, +0, 0, 1014, +0, 0, 1005, +298, 397, 994, +544, 673, 978, +746, 890, 956, +746, 956, 834, +805, 1110, 676, +963, 1258, 562, +1114, 1402, 344, +1259, 1543, 0, +1401, 1681, 0, +1540, 1817, 0, +1678, 1953, 0, +1813, 2087, 0, +1948, 2221, 0, +2083, 2355, 0, +2217, 2488, 0, +2350, 2621, 0, +2483, 2754, 0, +2616, 2886, 0, +2748, 3018, 0, +2881, 3151, 0, +3013, 3283, 0, +3145, 3415, 0, +3278, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +488, 0, 1025, +524, 0, 1020, +568, 0, 1014, +620, 0, 1005, +682, 298, 994, +754, 544, 978, +834, 746, 956, +924, 924, 924, +1021, 1088, 878, +1126, 1242, 809, +1236, 1390, 695, +1351, 1534, 476, +1470, 1674, 0, +1592, 1813, 0, +1716, 1950, 0, +1843, 2085, 0, +1970, 2220, 0, +2099, 2353, 0, +2229, 2487, 0, +2359, 2620, 0, +2490, 2753, 0, +2621, 2886, 0, +2752, 3018, 0, +2883, 3151, 0, +3015, 3283, 0, +3147, 3415, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3939, 4095, 0, +929, 0, 1160, +943, 0, 1157, +960, 0, 1152, +983, 0, 1146, +1013, 80, 1137, +1049, 430, 1126, +1092, 676, 1110, +1088, 878, 1021, +1088, 967, 878, +1242, 1225, 809, +1343, 1390, 695, +1437, 1534, 476, +1537, 1674, 0, +1644, 1813, 0, +1757, 1950, 0, +1873, 2085, 0, +1994, 2220, 0, +2117, 2353, 0, +2242, 2487, 0, +2369, 2620, 0, +2497, 2753, 0, +2626, 2886, 0, +2756, 3018, 0, +2887, 3151, 0, +3017, 3283, 0, +3149, 3415, 0, +3280, 3548, 0, +3412, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1204, 0, 1295, +1211, 0, 1292, +1221, 0, 1289, +1235, 0, 1284, +1251, 0, 1278, +1270, 212, 1266, +1258, 562, 1211, +1242, 809, 1126, +1242, 809, 938, +1242, 1018, 809, +1390, 1313, 695, +1531, 1534, 476, +1614, 1674, 0, +1706, 1813, 0, +1806, 1950, 0, +1912, 2085, 0, +2023, 2220, 0, +2140, 2353, 0, +2260, 2487, 0, +2382, 2620, 0, +2507, 2753, 0, +2634, 2886, 0, +2762, 3018, 0, +2891, 3151, 0, +3021, 3283, 0, +3151, 3415, 0, +3282, 3548, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1419, 0, 1429, +1424, 0, 1427, +1424, 0, 1418, +1421, 0, 1403, +1416, 0, 1381, +1410, 0, 1350, +1402, 344, 1304, +1390, 695, 1236, +1390, 695, 1095, +1390, 695, 793, +1390, 1078, 695, +1534, 1409, 476, +1674, 1648, 0, +1777, 1813, 0, +1864, 1950, 0, +1958, 2085, 0, +2060, 2220, 0, +2168, 2353, 0, +2282, 2487, 0, +2399, 2620, 0, +2521, 2753, 0, +2644, 2886, 0, +2769, 3018, 0, +2896, 3151, 0, +3025, 3283, 0, +3154, 3415, 0, +3284, 3548, 0, +3415, 3680, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1563, 0, 1515, +1561, 0, 1508, +1559, 0, 1499, +1557, 0, 1486, +1553, 0, 1467, +1549, 0, 1442, +1543, 0, 1405, +1534, 476, 1351, +1534, 476, 1246, +1534, 476, 1051, +1534, 476, 479, +1534, 1149, 476, +1674, 1512, 0, +1813, 1763, 0, +1931, 1950, 0, +2014, 2085, 0, +2105, 2220, 0, +2204, 2353, 0, +2310, 2487, 0, +2421, 2620, 0, +2537, 2753, 0, +2657, 2886, 0, +2779, 3018, 0, +2904, 3151, 0, +3031, 3283, 0, +3158, 3415, 0, +3287, 3548, 0, +3417, 3680, 0, +3548, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1696, 0, 1601, +1695, 0, 1596, +1693, 0, 1588, +1691, 0, 1577, +1689, 0, 1562, +1685, 0, 1541, +1681, 0, 1512, +1674, 0, 1470, +1674, 0, 1391, +1674, 0, 1258, +1674, 0, 983, +1674, 313, 0, +1674, 1228, 0, +1813, 1622, 0, +1950, 1882, 0, +2079, 2085, 0, +2159, 2220, 0, +2248, 2353, 0, +2345, 2487, 0, +2449, 2620, 0, +2559, 2753, 0, +2673, 2886, 0, +2792, 3018, 0, +2914, 3151, 0, +3038, 3283, 0, +3164, 3415, 0, +3292, 3548, 0, +3420, 3680, 0, +3550, 3812, 0, +3680, 3944, 0, +3810, 4076, 0, +3942, 4095, 0, +1828, 0, 1696, +1828, 0, 1691, +1827, 0, 1684, +1825, 0, 1676, +1823, 0, 1664, +1821, 0, 1648, +1817, 0, 1625, +1813, 0, 1592, +1813, 0, 1533, +1813, 0, 1440, +1813, 0, 1275, +1813, 0, 874, +1813, 0, 0, +1813, 1317, 0, +1950, 1736, 0, +2085, 2004, 0, +2220, 2217, 0, +2301, 2353, 0, +2388, 2487, 0, +2483, 2620, 0, +2586, 2753, 0, +2695, 2886, 0, +2808, 3018, 0, +2927, 3151, 0, +3047, 3283, 0, +3171, 3415, 0, +3297, 3548, 0, +3425, 3680, 0, +3553, 3812, 0, +3682, 3944, 0, +3812, 4076, 0, +3943, 4095, 0, +1961, 0, 1797, +1961, 0, 1793, +1960, 0, 1789, +1959, 0, 1781, +1958, 0, 1772, +1956, 0, 1759, +1953, 0, 1742, +1950, 0, 1716, +1950, 0, 1672, +1950, 0, 1606, +1950, 0, 1498, +1950, 0, 1295, +1950, 0, 670, +1950, 0, 0, +1950, 1413, 0, +2085, 1854, 0, +2220, 2128, 0, +2353, 2344, 0, +2440, 2487, 0, +2526, 2620, 0, +2620, 2753, 0, +2722, 2886, 0, +2830, 3018, 0, +2943, 3151, 0, +3060, 3283, 0, +3181, 3415, 0, +3305, 3548, 0, +3430, 3680, 0, +3557, 3812, 0, +3686, 3944, 0, +3815, 4076, 0, +3945, 4095, 0, +2094, 0, 1905, +2093, 0, 1902, +2093, 0, 1898, +2092, 0, 1893, +2091, 0, 1885, +2089, 0, 1875, +2087, 0, 1862, +2085, 0, 1843, +2085, 0, 1810, +2085, 0, 1761, +2085, 0, 1687, +2085, 0, 1565, +2085, 0, 1322, +2085, 0, 10, +2085, 0, 0, +2085, 1517, 0, +2220, 1975, 0, +2353, 2255, 0, +2487, 2473, 0, +2577, 2620, 0, +2662, 2753, 0, +2756, 2886, 0, +2857, 3018, 0, +2964, 3151, 0, +3077, 3283, 0, +3194, 3415, 0, +3314, 3548, 0, +3437, 3680, 0, +3563, 3812, 0, +3690, 3944, 0, +3818, 4076, 0, +3947, 4095, 0, +2226, 0, 2018, +2226, 0, 2016, +2225, 0, 2013, +2225, 0, 2009, +2224, 0, 2003, +2223, 0, 1995, +2221, 0, 1985, +2220, 0, 1970, +2220, 0, 1946, +2220, 0, 1910, +2220, 0, 1858, +2220, 0, 1778, +2220, 0, 1642, +2220, 0, 1355, +2220, 0, 0, +2220, 0, 0, +2220, 1626, 0, +2353, 2099, 0, +2487, 2383, 0, +2620, 2602, 0, +2713, 2753, 0, +2798, 2886, 0, +2890, 3018, 0, +2991, 3151, 0, +3098, 3283, 0, +3210, 3415, 0, +3327, 3548, 0, +3447, 3680, 0, +3570, 3812, 0, +3695, 3944, 0, +3822, 4076, 0, +3950, 4095, 0, +2358, 0, 2136, +2358, 0, 2134, +2358, 0, 2132, +2357, 0, 2128, +2357, 0, 2124, +2356, 0, 2118, +2355, 0, 2110, +2353, 0, 2099, +2353, 0, 2081, +2353, 0, 2054, +2353, 0, 2017, +2353, 0, 1962, +2353, 0, 1876, +2353, 0, 1727, +2353, 0, 1396, +2353, 0, 0, +2353, 0, 0, +2353, 1740, 0, +2487, 2226, 0, +2620, 2511, 0, +2753, 2732, 0, +2848, 2886, 0, +2932, 3018, 0, +3025, 3151, 0, +3125, 3283, 0, +3231, 3415, 0, +3343, 3548, 0, +3460, 3680, 0, +3580, 3812, 0, +3703, 3944, 0, +3828, 4076, 0, +3955, 4095, 0, +2491, 0, 2256, +2491, 0, 2255, +2490, 0, 2253, +2490, 0, 2251, +2489, 0, 2247, +2489, 0, 2243, +2488, 0, 2237, +2487, 0, 2229, +2487, 0, 2215, +2487, 0, 2196, +2487, 0, 2169, +2487, 0, 2130, +2487, 0, 2072, +2487, 0, 1981, +2487, 0, 1822, +2487, 0, 1446, +2487, 0, 0, +2487, 0, 0, +2487, 1859, 0, +2620, 2352, 0, +2753, 2641, 0, +2886, 2863, 0, +2982, 3018, 0, +3066, 3151, 0, +3158, 3283, 0, +3258, 3415, 0, +3364, 3548, 0, +3476, 3680, 0, +3593, 3812, 0, +3712, 3944, 0, +3835, 4076, 0, +3960, 4095, 0, +2623, 0, 2380, +2623, 0, 2379, +2623, 0, 2378, +2622, 0, 2375, +2622, 0, 2373, +2621, 0, 2370, +2621, 0, 2365, +2620, 0, 2359, +2620, 0, 2348, +2620, 0, 2334, +2620, 0, 2314, +2620, 0, 2287, +2620, 0, 2247, +2620, 0, 2187, +2620, 0, 2092, +2620, 0, 1923, +2620, 0, 1505, +2620, 0, 0, +2620, 0, 0, +2620, 1981, 0, +2753, 2482, 0, +2886, 2772, 0, +3018, 2993, 0, +3116, 3151, 0, +3199, 3283, 0, +3291, 3415, 0, +3391, 3548, 0, +3497, 3680, 0, +3609, 3812, 0, +3725, 3944, 0, +3845, 4076, 0, +3968, 4095, 0, +2755, 0, 2505, +2755, 0, 2505, +2755, 0, 2504, +2755, 0, 2502, +2755, 0, 2501, +2754, 0, 2498, +2754, 0, 2494, +2753, 0, 2490, +2753, 0, 2482, +2753, 0, 2471, +2753, 0, 2457, +2753, 0, 2437, +2753, 0, 2408, +2753, 0, 2367, +2753, 0, 2305, +2753, 0, 2208, +2753, 0, 2031, +2753, 0, 1575, +2753, 0, 0, +2753, 0, 0, +2753, 2105, 0, +2886, 2611, 0, +3018, 2902, 0, +3151, 3125, 0, +3249, 3283, 0, +3333, 3415, 0, +3424, 3548, 0, +3524, 3680, 0, +3630, 3812, 0, +3741, 3944, 0, +3857, 4076, 0, +3977, 4095, 0, +2887, 0, 2633, +2887, 0, 2632, +2887, 0, 2631, +2887, 0, 2630, +2887, 0, 2629, +2887, 0, 2627, +2886, 0, 2624, +2886, 0, 2621, +2886, 0, 2615, +2886, 0, 2607, +2886, 0, 2596, +2886, 0, 2581, +2886, 0, 2561, +2886, 0, 2532, +2886, 0, 2490, +2886, 0, 2427, +2886, 0, 2327, +2886, 0, 2144, +2886, 0, 1651, +2886, 0, 0, +2886, 0, 0, +2886, 2231, 0, +3018, 2740, 0, +3151, 3033, 0, +3283, 3256, 0, +3382, 3415, 0, +3466, 3548, 0, +3557, 3680, 0, +3656, 3812, 0, +3762, 3944, 0, +3873, 4076, 0, +3990, 4095, 0, +3019, 0, 2761, +3019, 0, 2760, +3019, 0, 2760, +3019, 0, 2759, +3019, 0, 2758, +3019, 0, 2756, +3018, 0, 2754, +3018, 0, 2752, +3018, 0, 2747, +3018, 0, 2742, +3018, 0, 2734, +3018, 0, 2723, +3018, 0, 2708, +3018, 0, 2687, +3018, 0, 2658, +3018, 0, 2615, +3018, 0, 2551, +3018, 0, 2449, +3018, 0, 2261, +3018, 0, 1737, +3018, 0, 0, +3018, 0, 0, +3018, 2358, 0, +3151, 2872, 0, +3283, 3164, 0, +3415, 3388, 0, +3515, 3548, 0, +3598, 3680, 0, +3690, 3812, 0, +3789, 3944, 0, +3895, 4076, 0, +4006, 4095, 0, +3152, 0, 2890, +3152, 0, 2890, +3152, 0, 2890, +3151, 0, 2889, +3151, 0, 2888, +3151, 0, 2887, +3151, 0, 2885, +3151, 0, 2883, +3151, 0, 2880, +3151, 0, 2876, +3151, 0, 2870, +3151, 0, 2862, +3151, 0, 2851, +3151, 0, 2836, +3151, 0, 2815, +3151, 0, 2785, +3151, 0, 2742, +3151, 0, 2678, +3151, 0, 2573, +3151, 0, 2382, +3151, 0, 1832, +3151, 0, 0, +3151, 0, 0, +3151, 2487, 0, +3283, 3002, 0, +3415, 3296, 0, +3548, 3520, 0, +3648, 3680, 0, +3730, 3812, 0, +3822, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3020, +3283, 0, 3020, +3283, 0, 3019, +3283, 0, 3019, +3283, 0, 3018, +3283, 0, 3018, +3283, 0, 3016, +3283, 0, 3015, +3283, 0, 3013, +3283, 0, 3009, +3283, 0, 3005, +3283, 0, 2999, +3283, 0, 2991, +3283, 0, 2980, +3283, 0, 2965, +3283, 0, 2943, +3283, 0, 2914, +3283, 0, 2870, +3283, 0, 2805, +3283, 0, 2700, +3283, 0, 2504, +3283, 0, 1932, +3283, 0, 0, +3283, 0, 0, +3283, 2616, 0, +3415, 3134, 0, +3548, 3428, 0, +3680, 3652, 0, +3780, 3812, 0, +3863, 3944, 0, +3954, 4076, 0, +4053, 4095, 0, +3416, 0, 3151, +3416, 0, 3151, +3416, 0, 3150, +3416, 0, 3150, +3416, 0, 3149, +3416, 0, 3149, +3415, 0, 3148, +3415, 0, 3147, +3415, 0, 3145, +3415, 0, 3143, +3415, 0, 3139, +3415, 0, 3135, +3415, 0, 3129, +3415, 0, 3121, +3415, 0, 3110, +3415, 0, 3094, +3415, 0, 3073, +3415, 0, 3043, +3415, 0, 2999, +3415, 0, 2934, +3415, 0, 2827, +3415, 0, 2630, +3415, 0, 2044, +3415, 0, 0, +3415, 0, 0, +3415, 2746, 0, +3548, 3265, 0, +3680, 3559, 0, +3812, 3784, 0, +3912, 3944, 0, +3995, 4076, 0, +4087, 4095, 0, +3548, 0, 3281, +3548, 0, 3281, +3548, 0, 3281, +3548, 0, 3281, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3280, +3548, 0, 3279, +3548, 0, 3277, +3548, 0, 3276, +3548, 0, 3273, +3548, 0, 3270, +3548, 0, 3265, +3548, 0, 3259, +3548, 0, 3251, +3548, 0, 3240, +3548, 0, 3225, +3548, 0, 3203, +3548, 0, 3173, +3548, 0, 3129, +3548, 0, 3063, +3548, 0, 2956, +3548, 0, 2758, +3548, 0, 2156, +3548, 0, 0, +3548, 0, 0, +3548, 2877, 0, +3680, 3397, 0, +3812, 3691, 0, +3944, 3915, 0, +4045, 4076, 0, +4095, 4095, 0, +3680, 0, 3413, +3680, 0, 3413, +3680, 0, 3413, +3680, 0, 3412, +3680, 0, 3412, +3680, 0, 3412, +3680, 0, 3411, +3680, 0, 3411, +3680, 0, 3410, +3680, 0, 3408, +3680, 0, 3406, +3680, 0, 3404, +3680, 0, 3401, +3680, 0, 3396, +3680, 0, 3390, +3680, 0, 3382, +3680, 0, 3371, +3680, 0, 3356, +3680, 0, 3334, +3680, 0, 3304, +3680, 0, 3260, +3680, 0, 3193, +3680, 0, 3086, +3680, 0, 2886, +3680, 0, 2277, +3680, 0, 0, +3680, 0, 0, +3680, 3008, 0, +3812, 3529, 0, +3944, 3823, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3538, +3812, 0, 3535, +3812, 0, 3532, +3812, 0, 3528, +3812, 0, 3521, +3812, 0, 3513, +3812, 0, 3502, +3812, 0, 3487, +3812, 0, 3465, +3812, 0, 3435, +3812, 0, 3391, +3812, 0, 3324, +3812, 0, 3216, +3812, 0, 3016, +3812, 0, 2397, +3812, 0, 0, +3812, 0, 0, +3812, 3139, 0, +3944, 3660, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3672, +3944, 0, 3671, +3944, 0, 3669, +3944, 0, 3666, +3944, 0, 3663, +3944, 0, 3659, +3944, 0, 3653, +3944, 0, 3645, +3944, 0, 3633, +3944, 0, 3618, +3944, 0, 3596, +3944, 0, 3566, +3944, 0, 3522, +3944, 0, 3455, +3944, 0, 3347, +3944, 0, 3145, +3944, 0, 2520, +3944, 0, 0, +3944, 0, 0, +3944, 3271, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3808, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3802, +4076, 0, 3801, +4076, 0, 3798, +4076, 0, 3795, +4076, 0, 3790, +4076, 0, 3784, +4076, 0, 3776, +4076, 0, 3765, +4076, 0, 3749, +4076, 0, 3728, +4076, 0, 3697, +4076, 0, 3653, +4076, 0, 3586, +4076, 0, 3478, +4076, 0, 3276, +4076, 0, 2644, +4076, 0, 0, +4076, 0, 0, +4076, 3402, 0, +4095, 3925, 0, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3934, +4095, 0, 3932, +4095, 0, 3930, +4095, 0, 3927, +4095, 0, 3922, +4095, 0, 3916, +4095, 0, 3908, +4095, 0, 3897, +4095, 0, 3881, +4095, 0, 3860, +4095, 0, 3829, +4095, 0, 3785, +4095, 0, 3718, +4095, 0, 3610, +4095, 0, 3407, +4095, 0, 2773, +4095, 0, 0, +4095, 0, 0, +4095, 3534, 0, +0, 918, 1160, +0, 949, 1160, +0, 987, 1160, +0, 1033, 1160, +0, 1089, 1160, +0, 1154, 1160, +0, 1160, 1079, +0, 1160, 929, +0, 1160, 592, +0, 1295, 0, +0, 1429, 0, +523, 1563, 0, +998, 1696, 0, +1283, 1828, 0, +1503, 1961, 0, +1691, 2094, 0, +1860, 2226, 0, +2019, 2358, 0, +2170, 2491, 0, +2315, 2623, 0, +2457, 2755, 0, +2597, 2887, 0, +2734, 3019, 0, +2870, 3152, 0, +3005, 3284, 0, +3139, 3416, 0, +3273, 3548, 0, +3406, 3680, 0, +3540, 3812, 0, +3672, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 885, 1160, +0, 924, 1157, +0, 964, 1157, +0, 1013, 1157, +0, 1071, 1157, +0, 1139, 1157, +0, 1157, 1089, +0, 1157, 943, +0, 1157, 620, +0, 1292, 0, +0, 1427, 0, +605, 1561, 0, +1029, 1695, 0, +1300, 1828, 0, +1513, 1961, 0, +1698, 2093, 0, +1865, 2226, 0, +2022, 2358, 0, +2172, 2491, 0, +2317, 2623, 0, +2459, 2755, 0, +2598, 2887, 0, +2735, 3019, 0, +2871, 3152, 0, +3005, 3283, 0, +3140, 3416, 0, +3273, 3548, 0, +3407, 3680, 0, +3540, 3812, 0, +3672, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 836, 1160, +0, 879, 1157, +0, 932, 1152, +0, 984, 1152, +0, 1045, 1152, +0, 1117, 1152, +0, 1152, 1102, +0, 1152, 960, +0, 1152, 656, +0, 1289, 0, +0, 1424, 0, +696, 1559, 0, +1067, 1693, 0, +1321, 1827, 0, +1526, 1960, 0, +1706, 2093, 0, +1871, 2225, 0, +2027, 2358, 0, +2175, 2490, 0, +2320, 2623, 0, +2460, 2755, 0, +2599, 2887, 0, +2735, 3019, 0, +2871, 3152, 0, +3006, 3283, 0, +3140, 3416, 0, +3274, 3548, 0, +3407, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 762, 1160, +0, 813, 1157, +0, 873, 1152, +0, 942, 1146, +0, 1009, 1146, +0, 1086, 1146, +0, 1146, 1119, +0, 1146, 983, +0, 1146, 700, +0, 1284, 0, +141, 1421, 0, +794, 1557, 0, +1113, 1691, 0, +1348, 1825, 0, +1544, 1959, 0, +1718, 2092, 0, +1880, 2225, 0, +2032, 2357, 0, +2180, 2490, 0, +2323, 2622, 0, +2463, 2755, 0, +2601, 2887, 0, +2737, 3019, 0, +2872, 3151, 0, +3007, 3283, 0, +3141, 3416, 0, +3274, 3548, 0, +3407, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 640, 1160, +0, 705, 1157, +0, 779, 1152, +0, 863, 1146, +80, 955, 1137, +80, 1040, 1137, +80, 1134, 1137, +80, 1137, 1013, +80, 1137, 753, +0, 1278, 0, +478, 1416, 0, +900, 1553, 0, +1169, 1689, 0, +1382, 1823, 0, +1566, 1958, 0, +1733, 2091, 0, +1891, 2224, 0, +2040, 2357, 0, +2185, 2489, 0, +2327, 2622, 0, +2466, 2755, 0, +2603, 2887, 0, +2738, 3019, 0, +2873, 3151, 0, +3008, 3283, 0, +3141, 3416, 0, +3275, 3548, 0, +3408, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 397, 1160, +0, 503, 1157, +0, 614, 1152, +0, 730, 1146, +80, 850, 1137, +430, 972, 1126, +430, 1079, 1126, +430, 1126, 1049, +430, 1126, 814, +214, 1270, 212, +719, 1410, 0, +1011, 1549, 0, +1233, 1685, 0, +1423, 1821, 0, +1594, 1956, 0, +1753, 2089, 0, +1904, 2223, 0, +2050, 2356, 0, +2193, 2489, 0, +2332, 2621, 0, +2470, 2754, 0, +2606, 2887, 0, +2741, 3019, 0, +2875, 3151, 0, +3009, 3283, 0, +3142, 3416, 0, +3275, 3548, 0, +3408, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 0, 1160, +0, 0, 1157, +0, 214, 1152, +0, 455, 1146, +80, 655, 1137, +430, 831, 1126, +676, 994, 1110, +676, 1110, 1092, +676, 1110, 886, +661, 1258, 562, +919, 1402, 344, +1127, 1543, 0, +1308, 1681, 0, +1474, 1817, 0, +1629, 1953, 0, +1778, 2087, 0, +1922, 2221, 0, +2063, 2355, 0, +2202, 2488, 0, +2339, 2621, 0, +2475, 2754, 0, +2610, 2886, 0, +2744, 3018, 0, +2877, 3151, 0, +3010, 3283, 0, +3144, 3415, 0, +3276, 3548, 0, +3409, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 0, 1160, +0, 0, 1157, +0, 0, 1152, +0, 0, 1146, +80, 81, 1137, +430, 529, 1126, +676, 805, 1110, +878, 1021, 1088, +878, 1088, 967, +938, 1242, 809, +1095, 1390, 695, +1246, 1534, 476, +1391, 1674, 0, +1533, 1813, 0, +1672, 1950, 0, +1810, 2085, 0, +1946, 2220, 0, +2081, 2353, 0, +2215, 2487, 0, +2348, 2620, 0, +2482, 2753, 0, +2615, 2886, 0, +2747, 3018, 0, +2880, 3151, 0, +3013, 3283, 0, +3145, 3415, 0, +3277, 3548, 0, +3410, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +592, 0, 1160, +620, 0, 1157, +656, 0, 1152, +700, 0, 1146, +753, 80, 1137, +814, 430, 1126, +886, 676, 1110, +967, 878, 1088, +1056, 1056, 1056, +1154, 1220, 1010, +1258, 1374, 940, +1368, 1523, 826, +1483, 1666, 608, +1602, 1807, 0, +1724, 1945, 0, +1849, 2082, 0, +1975, 2217, 0, +2102, 2352, 0, +2231, 2486, 0, +2361, 2619, 0, +2491, 2752, 0, +2622, 2885, 0, +2752, 3018, 0, +2884, 3151, 0, +3015, 3283, 0, +3147, 3415, 0, +3279, 3548, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1051, 0, 1295, +1062, 0, 1292, +1075, 0, 1289, +1093, 0, 1284, +1116, 0, 1278, +1145, 212, 1270, +1181, 562, 1258, +1225, 809, 1242, +1220, 1010, 1154, +1220, 1099, 1010, +1374, 1357, 940, +1476, 1523, 826, +1569, 1666, 608, +1669, 1807, 0, +1776, 1945, 0, +1889, 2082, 0, +2006, 2217, 0, +2126, 2352, 0, +2249, 2486, 0, +2374, 2619, 0, +2501, 2752, 0, +2629, 2885, 0, +2758, 3018, 0, +2888, 3151, 0, +3018, 3283, 0, +3150, 3415, 0, +3281, 3548, 0, +3412, 3680, 0, +3544, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1330, 0, 1429, +1336, 0, 1427, +1343, 0, 1424, +1353, 0, 1421, +1367, 0, 1416, +1383, 0, 1410, +1402, 344, 1398, +1390, 695, 1343, +1374, 940, 1258, +1374, 940, 1069, +1374, 1150, 940, +1523, 1445, 826, +1663, 1666, 608, +1746, 1807, 0, +1838, 1945, 0, +1938, 2082, 0, +2044, 2217, 0, +2155, 2352, 0, +2272, 2486, 0, +2392, 2619, 0, +2514, 2752, 0, +2639, 2885, 0, +2766, 3018, 0, +2894, 3151, 0, +3023, 3283, 0, +3153, 3415, 0, +3283, 3548, 0, +3414, 3680, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1548, 0, 1563, +1552, 0, 1561, +1556, 0, 1559, +1557, 0, 1551, +1553, 0, 1535, +1549, 0, 1513, +1543, 0, 1482, +1534, 476, 1437, +1523, 826, 1368, +1523, 826, 1228, +1523, 826, 926, +1523, 1211, 826, +1666, 1541, 608, +1807, 1780, 0, +1909, 1945, 0, +1996, 2082, 0, +2090, 2217, 0, +2192, 2352, 0, +2301, 2486, 0, +2414, 2619, 0, +2532, 2752, 0, +2652, 2885, 0, +2776, 3018, 0, +2902, 3151, 0, +3029, 3283, 0, +3157, 3415, 0, +3286, 3548, 0, +3416, 3680, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1696, 0, 1653, +1695, 0, 1647, +1693, 0, 1640, +1691, 0, 1631, +1689, 0, 1617, +1685, 0, 1599, +1681, 0, 1574, +1674, 0, 1537, +1666, 608, 1483, +1666, 608, 1378, +1666, 608, 1183, +1666, 609, 608, +1666, 1281, 608, +1807, 1644, 0, +1945, 1895, 0, +2063, 2082, 0, +2146, 2217, 0, +2237, 2352, 0, +2336, 2486, 0, +2442, 2619, 0, +2553, 2752, 0, +2669, 2885, 0, +2789, 3018, 0, +2911, 3151, 0, +3036, 3283, 0, +3163, 3415, 0, +3291, 3548, 0, +3420, 3680, 0, +3549, 3812, 0, +3680, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1828, 0, 1738, +1828, 0, 1733, +1827, 0, 1727, +1825, 0, 1720, +1823, 0, 1709, +1821, 0, 1694, +1817, 0, 1673, +1813, 0, 1644, +1807, 0, 1602, +1807, 0, 1523, +1807, 0, 1391, +1807, 0, 1115, +1807, 438, 0, +1807, 1360, 0, +1945, 1754, 0, +2082, 2014, 0, +2211, 2217, 0, +2291, 2352, 0, +2380, 2486, 0, +2477, 2619, 0, +2581, 2752, 0, +2691, 2885, 0, +2805, 3018, 0, +2924, 3151, 0, +3046, 3283, 0, +3170, 3415, 0, +3296, 3548, 0, +3424, 3680, 0, +3552, 3812, 0, +3682, 3944, 0, +3812, 4076, 0, +3943, 4095, 0, +1961, 0, 1831, +1961, 0, 1828, +1960, 0, 1823, +1959, 0, 1817, +1958, 0, 1808, +1956, 0, 1796, +1953, 0, 1779, +1950, 0, 1757, +1945, 0, 1724, +1945, 0, 1665, +1945, 0, 1572, +1945, 0, 1407, +1945, 0, 1007, +1945, 37, 0, +1945, 1449, 0, +2082, 1868, 0, +2217, 2136, 0, +2352, 2349, 0, +2433, 2486, 0, +2520, 2619, 0, +2616, 2752, 0, +2718, 2885, 0, +2827, 3018, 0, +2941, 3151, 0, +3059, 3283, 0, +3180, 3415, 0, +3303, 3548, 0, +3429, 3680, 0, +3557, 3812, 0, +3685, 3944, 0, +3814, 4076, 0, +3945, 4095, 0, +2094, 0, 1932, +2093, 0, 1929, +2093, 0, 1926, +2092, 0, 1920, +2091, 0, 1913, +2089, 0, 1904, +2087, 0, 1891, +2085, 0, 1873, +2082, 0, 1849, +2082, 0, 1804, +2082, 0, 1738, +2082, 0, 1630, +2082, 0, 1428, +2082, 0, 800, +2082, 0, 0, +2082, 1545, 0, +2217, 1986, 0, +2352, 2261, 0, +2486, 2476, 0, +2572, 2619, 0, +2658, 2752, 0, +2752, 2885, 0, +2854, 3018, 0, +2962, 3151, 0, +3075, 3283, 0, +3192, 3415, 0, +3313, 3548, 0, +3437, 3680, 0, +3562, 3812, 0, +3689, 3944, 0, +3818, 4076, 0, +3947, 4095, 0, +2226, 0, 2039, +2226, 0, 2037, +2225, 0, 2034, +2225, 0, 2030, +2224, 0, 2025, +2223, 0, 2018, +2221, 0, 2008, +2220, 0, 1994, +2217, 0, 1975, +2217, 0, 1941, +2217, 0, 1894, +2217, 0, 1819, +2217, 0, 1697, +2217, 0, 1454, +2217, 0, 140, +2217, 0, 0, +2217, 1649, 0, +2352, 2107, 0, +2486, 2387, 0, +2619, 2604, 0, +2710, 2752, 0, +2795, 2885, 0, +2888, 3018, 0, +2989, 3151, 0, +3096, 3283, 0, +3209, 3415, 0, +3326, 3548, 0, +3446, 3680, 0, +3570, 3812, 0, +3695, 3944, 0, +3822, 4076, 0, +3950, 4095, 0, +2358, 0, 2152, +2358, 0, 2150, +2358, 0, 2148, +2357, 0, 2145, +2357, 0, 2141, +2356, 0, 2135, +2355, 0, 2127, +2353, 0, 2117, +2352, 0, 2102, +2352, 0, 2078, +2352, 0, 2042, +2352, 0, 1990, +2352, 0, 1910, +2352, 0, 1773, +2352, 0, 1487, +2352, 0, 0, +2352, 0, 0, +2352, 1758, 0, +2486, 2232, 0, +2619, 2515, 0, +2752, 2734, 0, +2845, 2885, 0, +2930, 3018, 0, +3023, 3151, 0, +3123, 3283, 0, +3230, 3415, 0, +3342, 3548, 0, +3459, 3680, 0, +3579, 3812, 0, +3702, 3944, 0, +3827, 4076, 0, +3954, 4095, 0, +2491, 0, 2269, +2491, 0, 2268, +2490, 0, 2266, +2490, 0, 2264, +2489, 0, 2260, +2489, 0, 2256, +2488, 0, 2250, +2487, 0, 2242, +2486, 0, 2231, +2486, 0, 2213, +2486, 0, 2187, +2486, 0, 2149, +2486, 0, 2094, +2486, 0, 2008, +2486, 0, 1859, +2486, 0, 1529, +2486, 0, 0, +2486, 0, 0, +2486, 1873, 0, +2619, 2357, 0, +2752, 2644, 0, +2885, 2864, 0, +2980, 3018, 0, +3064, 3151, 0, +3157, 3283, 0, +3257, 3415, 0, +3363, 3548, 0, +3475, 3680, 0, +3592, 3812, 0, +3712, 3944, 0, +3835, 4076, 0, +3960, 4095, 0, +2623, 0, 2390, +2623, 0, 2388, +2623, 0, 2387, +2622, 0, 2385, +2622, 0, 2383, +2621, 0, 2380, +2621, 0, 2375, +2620, 0, 2369, +2619, 0, 2361, +2619, 0, 2347, +2619, 0, 2328, +2619, 0, 2301, +2619, 0, 2262, +2619, 0, 2204, +2619, 0, 2113, +2619, 0, 1954, +2619, 0, 1578, +2619, 0, 0, +2619, 0, 0, +2619, 1991, 0, +2752, 2485, 0, +2885, 2773, 0, +3018, 2995, 0, +3115, 3151, 0, +3198, 3283, 0, +3290, 3415, 0, +3390, 3548, 0, +3496, 3680, 0, +3608, 3812, 0, +3725, 3944, 0, +3845, 4076, 0, +3967, 4095, 0, +2755, 0, 2513, +2755, 0, 2512, +2755, 0, 2511, +2755, 0, 2510, +2755, 0, 2508, +2754, 0, 2505, +2754, 0, 2502, +2753, 0, 2497, +2752, 0, 2491, +2752, 0, 2481, +2752, 0, 2467, +2752, 0, 2447, +2752, 0, 2419, +2752, 0, 2379, +2752, 0, 2319, +2752, 0, 2224, +2752, 0, 2056, +2752, 0, 1638, +2752, 0, 0, +2752, 0, 0, +2752, 2113, 0, +2885, 2613, 0, +3018, 2903, 0, +3151, 3126, 0, +3248, 3283, 0, +3331, 3415, 0, +3423, 3548, 0, +3523, 3680, 0, +3629, 3812, 0, +3741, 3944, 0, +3857, 4076, 0, +3977, 4095, 0, +2887, 0, 2638, +2887, 0, 2638, +2887, 0, 2637, +2887, 0, 2636, +2887, 0, 2635, +2887, 0, 2632, +2886, 0, 2630, +2886, 0, 2626, +2885, 0, 2622, +2885, 0, 2614, +2885, 0, 2603, +2885, 0, 2589, +2885, 0, 2569, +2885, 0, 2540, +2885, 0, 2499, +2885, 0, 2438, +2885, 0, 2340, +2885, 0, 2163, +2885, 0, 1706, +2885, 0, 0, +2885, 0, 0, +2885, 2237, 0, +3018, 2742, 0, +3151, 3034, 0, +3283, 3257, 0, +3381, 3415, 0, +3465, 3548, 0, +3556, 3680, 0, +3656, 3812, 0, +3762, 3944, 0, +3873, 4076, 0, +3989, 4095, 0, +3019, 0, 2765, +3019, 0, 2765, +3019, 0, 2764, +3019, 0, 2763, +3019, 0, 2762, +3019, 0, 2761, +3018, 0, 2759, +3018, 0, 2756, +3018, 0, 2752, +3018, 0, 2747, +3018, 0, 2739, +3018, 0, 2728, +3018, 0, 2714, +3018, 0, 2693, +3018, 0, 2664, +3018, 0, 2622, +3018, 0, 2559, +3018, 0, 2459, +3018, 0, 2276, +3018, 0, 1782, +3018, 0, 0, +3018, 0, 0, +3018, 2362, 0, +3151, 2873, 0, +3283, 3165, 0, +3415, 3388, 0, +3514, 3548, 0, +3597, 3680, 0, +3689, 3812, 0, +3788, 3944, 0, +3894, 4076, 0, +4006, 4095, 0, +3152, 0, 2893, +3152, 0, 2893, +3152, 0, 2893, +3151, 0, 2892, +3151, 0, 2891, +3151, 0, 2890, +3151, 0, 2889, +3151, 0, 2887, +3151, 0, 2884, +3151, 0, 2880, +3151, 0, 2874, +3151, 0, 2866, +3151, 0, 2855, +3151, 0, 2840, +3151, 0, 2819, +3151, 0, 2790, +3151, 0, 2747, +3151, 0, 2684, +3151, 0, 2581, +3151, 0, 2394, +3151, 0, 1869, +3151, 0, 0, +3151, 0, 0, +3151, 2490, 0, +3283, 3003, 0, +3415, 3296, 0, +3548, 3520, 0, +3647, 3680, 0, +3730, 3812, 0, +3822, 3944, 0, +3921, 4076, 0, +4027, 4095, 0, +3284, 0, 3022, +3283, 0, 3022, +3283, 0, 3022, +3283, 0, 3021, +3283, 0, 3021, +3283, 0, 3020, +3283, 0, 3019, +3283, 0, 3017, +3283, 0, 3015, +3283, 0, 3012, +3283, 0, 3008, +3283, 0, 3002, +3283, 0, 2994, +3283, 0, 2983, +3283, 0, 2968, +3283, 0, 2947, +3283, 0, 2917, +3283, 0, 2874, +3283, 0, 2809, +3283, 0, 2705, +3283, 0, 2513, +3283, 0, 1962, +3283, 0, 0, +3283, 0, 0, +3283, 2619, 0, +3415, 3135, 0, +3548, 3428, 0, +3680, 3652, 0, +3780, 3812, 0, +3863, 3944, 0, +3954, 4076, 0, +4053, 4095, 0, +3416, 0, 3152, +3416, 0, 3152, +3416, 0, 3152, +3416, 0, 3151, +3416, 0, 3151, +3416, 0, 3151, +3415, 0, 3150, +3415, 0, 3149, +3415, 0, 3147, +3415, 0, 3145, +3415, 0, 3141, +3415, 0, 3137, +3415, 0, 3131, +3415, 0, 3123, +3415, 0, 3112, +3415, 0, 3097, +3415, 0, 3076, +3415, 0, 3046, +3415, 0, 3002, +3415, 0, 2937, +3415, 0, 2832, +3415, 0, 2637, +3415, 0, 2068, +3415, 0, 0, +3415, 0, 0, +3415, 2748, 0, +3548, 3266, 0, +3680, 3560, 0, +3812, 3784, 0, +3912, 3944, 0, +3995, 4076, 0, +4086, 4095, 0, +3548, 0, 3283, +3548, 0, 3283, +3548, 0, 3282, +3548, 0, 3282, +3548, 0, 3282, +3548, 0, 3281, +3548, 0, 3281, +3548, 0, 3280, +3548, 0, 3279, +3548, 0, 3277, +3548, 0, 3275, +3548, 0, 3271, +3548, 0, 3267, +3548, 0, 3261, +3548, 0, 3253, +3548, 0, 3242, +3548, 0, 3226, +3548, 0, 3205, +3548, 0, 3175, +3548, 0, 3132, +3548, 0, 3066, +3548, 0, 2960, +3548, 0, 2763, +3548, 0, 2174, +3548, 0, 0, +3548, 0, 0, +3548, 2878, 0, +3680, 3397, 0, +3812, 3691, 0, +3944, 3915, 0, +4044, 4076, 0, +4095, 4095, 0, +3680, 0, 3414, +3680, 0, 3414, +3680, 0, 3414, +3680, 0, 3413, +3680, 0, 3413, +3680, 0, 3413, +3680, 0, 3412, +3680, 0, 3412, +3680, 0, 3411, +3680, 0, 3409, +3680, 0, 3408, +3680, 0, 3405, +3680, 0, 3402, +3680, 0, 3397, +3680, 0, 3392, +3680, 0, 3383, +3680, 0, 3372, +3680, 0, 3357, +3680, 0, 3336, +3680, 0, 3305, +3680, 0, 3261, +3680, 0, 3195, +3680, 0, 3089, +3680, 0, 2890, +3680, 0, 2291, +3680, 0, 0, +3680, 0, 0, +3680, 3009, 0, +3812, 3529, 0, +3944, 3823, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3545, +3812, 0, 3545, +3812, 0, 3545, +3812, 0, 3545, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3543, +3812, 0, 3543, +3812, 0, 3542, +3812, 0, 3540, +3812, 0, 3538, +3812, 0, 3536, +3812, 0, 3533, +3812, 0, 3528, +3812, 0, 3522, +3812, 0, 3514, +3812, 0, 3503, +3812, 0, 3488, +3812, 0, 3466, +3812, 0, 3436, +3812, 0, 3392, +3812, 0, 3326, +3812, 0, 3218, +3812, 0, 3019, +3812, 0, 2408, +3812, 0, 0, +3812, 0, 0, +3812, 3140, 0, +3944, 3661, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3671, +3944, 0, 3670, +3944, 0, 3667, +3944, 0, 3664, +3944, 0, 3659, +3944, 0, 3653, +3944, 0, 3645, +3944, 0, 3634, +3944, 0, 3619, +3944, 0, 3597, +3944, 0, 3567, +3944, 0, 3523, +3944, 0, 3456, +3944, 0, 3349, +3944, 0, 3147, +3944, 0, 2528, +3944, 0, 0, +3944, 0, 0, +3944, 3271, 0, +4076, 3792, 0, +4095, 4087, 0, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3801, +4076, 0, 3798, +4076, 0, 3795, +4076, 0, 3791, +4076, 0, 3785, +4076, 0, 3777, +4076, 0, 3765, +4076, 0, 3750, +4076, 0, 3728, +4076, 0, 3698, +4076, 0, 3654, +4076, 0, 3587, +4076, 0, 3479, +4076, 0, 3277, +4076, 0, 2650, +4076, 0, 0, +4076, 0, 0, +4076, 3403, 0, +4095, 3925, 0, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3935, +4095, 0, 3933, +4095, 0, 3930, +4095, 0, 3927, +4095, 0, 3923, +4095, 0, 3917, +4095, 0, 3908, +4095, 0, 3897, +4095, 0, 3881, +4095, 0, 3860, +4095, 0, 3830, +4095, 0, 3786, +4095, 0, 3719, +4095, 0, 3611, +4095, 0, 3408, +4095, 0, 2778, +4095, 0, 0, +4095, 0, 0, +4095, 3534, 0, +0, 1046, 1295, +0, 1069, 1295, +0, 1099, 1295, +0, 1135, 1295, +0, 1181, 1295, +0, 1234, 1295, +0, 1295, 1292, +0, 1295, 1204, +0, 1295, 1051, +0, 1295, 702, +0, 1429, 0, +0, 1563, 0, +580, 1696, 0, +1106, 1828, 0, +1402, 1961, 0, +1626, 2094, 0, +1817, 2226, 0, +1989, 2358, 0, +2149, 2491, 0, +2300, 2623, 0, +2446, 2755, 0, +2589, 2887, 0, +2728, 3019, 0, +2866, 3152, 0, +3002, 3284, 0, +3137, 3416, 0, +3271, 3548, 0, +3405, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 1021, 1295, +0, 1050, 1292, +0, 1081, 1292, +0, 1119, 1292, +0, 1166, 1292, +0, 1221, 1292, +0, 1286, 1292, +0, 1292, 1211, +0, 1292, 1062, +0, 1292, 724, +0, 1427, 0, +0, 1561, 0, +653, 1695, 0, +1131, 1828, 0, +1415, 1961, 0, +1635, 2093, 0, +1823, 2226, 0, +1993, 2358, 0, +2151, 2491, 0, +2302, 2623, 0, +2448, 2755, 0, +2589, 2887, 0, +2729, 3019, 0, +2866, 3152, 0, +3002, 3283, 0, +3137, 3416, 0, +3272, 3548, 0, +3405, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 985, 1295, +0, 1017, 1292, +0, 1056, 1289, +0, 1096, 1289, +0, 1145, 1289, +0, 1203, 1289, +0, 1271, 1289, +0, 1289, 1221, +0, 1289, 1075, +0, 1289, 753, +0, 1424, 0, +0, 1559, 0, +736, 1693, 0, +1161, 1827, 0, +1431, 1960, 0, +1645, 2093, 0, +1829, 2225, 0, +1997, 2358, 0, +2154, 2490, 0, +2304, 2623, 0, +2449, 2755, 0, +2591, 2887, 0, +2729, 3019, 0, +2867, 3152, 0, +3002, 3283, 0, +3138, 3416, 0, +3272, 3548, 0, +3405, 3680, 0, +3539, 3812, 0, +3672, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 934, 1295, +0, 968, 1292, +0, 1012, 1289, +0, 1064, 1284, +0, 1116, 1284, +0, 1177, 1284, +0, 1249, 1284, +0, 1284, 1235, +0, 1284, 1093, +0, 1284, 788, +0, 1421, 0, +0, 1557, 0, +827, 1691, 0, +1199, 1825, 0, +1453, 1959, 0, +1658, 2092, 0, +1839, 2225, 0, +2004, 2357, 0, +2159, 2490, 0, +2308, 2622, 0, +2452, 2755, 0, +2592, 2887, 0, +2731, 3019, 0, +2868, 3151, 0, +3003, 3283, 0, +3138, 3416, 0, +3272, 3548, 0, +3406, 3680, 0, +3539, 3812, 0, +3672, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 853, 1295, +0, 894, 1292, +0, 945, 1289, +0, 1005, 1284, +0, 1074, 1278, +0, 1141, 1278, +0, 1218, 1278, +0, 1278, 1251, +0, 1278, 1116, +0, 1278, 832, +0, 1416, 0, +275, 1553, 0, +926, 1689, 0, +1245, 1823, 0, +1480, 1958, 0, +1676, 2091, 0, +1850, 2224, 0, +2012, 2357, 0, +2165, 2489, 0, +2312, 2622, 0, +2455, 2755, 0, +2595, 2887, 0, +2732, 3019, 0, +2869, 3151, 0, +3004, 3283, 0, +3139, 3416, 0, +3273, 3548, 0, +3406, 3680, 0, +3539, 3812, 0, +3672, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 717, 1295, +0, 772, 1292, +0, 837, 1289, +0, 911, 1284, +0, 995, 1278, +212, 1087, 1270, +212, 1172, 1270, +212, 1266, 1270, +212, 1270, 1145, +212, 1270, 884, +0, 1410, 47, +611, 1549, 0, +1031, 1685, 0, +1301, 1821, 0, +1514, 1956, 0, +1698, 2089, 0, +1865, 2223, 0, +2022, 2356, 0, +2172, 2489, 0, +2317, 2621, 0, +2459, 2754, 0, +2598, 2887, 0, +2735, 3019, 0, +2871, 3151, 0, +3005, 3283, 0, +3140, 3416, 0, +3273, 3548, 0, +3407, 3680, 0, +3540, 3812, 0, +3672, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 431, 1295, +0, 529, 1292, +0, 635, 1289, +0, 746, 1284, +0, 862, 1278, +212, 982, 1270, +562, 1104, 1258, +562, 1211, 1258, +562, 1258, 1181, +562, 1258, 946, +345, 1402, 344, +852, 1543, 0, +1142, 1681, 0, +1366, 1817, 0, +1555, 1953, 0, +1726, 2087, 0, +1885, 2221, 0, +2037, 2355, 0, +2183, 2488, 0, +2325, 2621, 0, +2464, 2754, 0, +2602, 2886, 0, +2738, 3018, 0, +2873, 3151, 0, +3007, 3283, 0, +3141, 3415, 0, +3274, 3548, 0, +3407, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 0, 1295, +0, 0, 1292, +0, 9, 1289, +0, 346, 1284, +0, 587, 1278, +212, 787, 1270, +562, 963, 1258, +809, 1126, 1242, +809, 1242, 1225, +809, 1242, 1018, +793, 1390, 695, +1051, 1534, 476, +1258, 1674, 0, +1440, 1813, 0, +1606, 1950, 0, +1761, 2085, 0, +1910, 2220, 0, +2054, 2353, 0, +2196, 2487, 0, +2334, 2620, 0, +2471, 2753, 0, +2607, 2886, 0, +2742, 3018, 0, +2876, 3151, 0, +3009, 3283, 0, +3143, 3415, 0, +3276, 3548, 0, +3408, 3680, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 0, 1295, +0, 0, 1292, +0, 0, 1289, +0, 0, 1284, +0, 0, 1278, +212, 214, 1270, +562, 661, 1258, +809, 938, 1242, +1010, 1154, 1220, +1010, 1220, 1099, +1069, 1374, 940, +1228, 1523, 826, +1378, 1666, 608, +1523, 1807, 0, +1665, 1945, 0, +1804, 2082, 0, +1942, 2217, 0, +2078, 2352, 0, +2213, 2486, 0, +2347, 2619, 0, +2481, 2752, 0, +2614, 2885, 0, +2747, 3018, 0, +2880, 3151, 0, +3012, 3283, 0, +3145, 3415, 0, +3277, 3548, 0, +3409, 3680, 0, +3542, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +702, 0, 1295, +724, 0, 1292, +753, 0, 1289, +788, 0, 1284, +832, 0, 1278, +884, 212, 1270, +946, 562, 1258, +1018, 809, 1242, +1099, 1010, 1220, +1188, 1188, 1188, +1286, 1352, 1142, +1390, 1507, 1073, +1500, 1654, 959, +1615, 1798, 740, +1734, 1939, 0, +1856, 2077, 0, +1981, 2214, 0, +2107, 2349, 0, +2235, 2484, 0, +2363, 2618, 0, +2493, 2751, 0, +2623, 2885, 0, +2754, 3017, 0, +2885, 3150, 0, +3016, 3282, 0, +3147, 3415, 0, +3279, 3547, 0, +3411, 3680, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1174, 0, 1429, +1182, 0, 1427, +1193, 0, 1424, +1207, 0, 1421, +1225, 0, 1416, +1248, 0, 1410, +1277, 344, 1402, +1313, 695, 1390, +1357, 940, 1374, +1352, 1142, 1286, +1352, 1231, 1142, +1507, 1489, 1073, +1608, 1654, 959, +1701, 1798, 740, +1801, 1939, 0, +1908, 2077, 0, +2021, 2214, 0, +2138, 2349, 0, +2258, 2484, 0, +2381, 2618, 0, +2506, 2751, 0, +2633, 2885, 0, +2761, 3017, 0, +2891, 3150, 0, +3020, 3282, 0, +3151, 3415, 0, +3282, 3547, 0, +3413, 3680, 0, +3544, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1458, 0, 1563, +1463, 0, 1561, +1468, 0, 1559, +1476, 0, 1557, +1486, 0, 1553, +1499, 0, 1549, +1516, 0, 1543, +1534, 476, 1531, +1523, 826, 1476, +1507, 1073, 1390, +1507, 1073, 1202, +1507, 1282, 1073, +1654, 1577, 959, +1795, 1798, 740, +1878, 1939, 0, +1970, 2077, 0, +2070, 2214, 0, +2176, 2349, 0, +2288, 2484, 0, +2404, 2618, 0, +2524, 2751, 0, +2647, 2885, 0, +2771, 3017, 0, +2898, 3150, 0, +3026, 3282, 0, +3155, 3415, 0, +3285, 3547, 0, +3415, 3680, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1677, 0, 1696, +1680, 0, 1695, +1683, 0, 1693, +1688, 0, 1691, +1689, 0, 1683, +1685, 0, 1667, +1681, 0, 1645, +1674, 0, 1614, +1666, 608, 1569, +1654, 959, 1500, +1654, 959, 1360, +1654, 959, 1056, +1654, 1343, 959, +1798, 1673, 740, +1939, 1912, 0, +2041, 2077, 0, +2128, 2214, 0, +2223, 2349, 0, +2325, 2484, 0, +2432, 2618, 0, +2546, 2751, 0, +2664, 2885, 0, +2784, 3017, 0, +2908, 3150, 0, +3033, 3282, 0, +3161, 3415, 0, +3289, 3547, 0, +3418, 3680, 0, +3548, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1828, 0, 1789, +1828, 0, 1785, +1827, 0, 1779, +1825, 0, 1772, +1823, 0, 1763, +1821, 0, 1750, +1817, 0, 1732, +1813, 0, 1706, +1807, 0, 1669, +1798, 740, 1615, +1798, 740, 1510, +1798, 740, 1315, +1798, 740, 742, +1798, 1413, 740, +1939, 1776, 0, +2077, 2027, 0, +2195, 2214, 0, +2278, 2349, 0, +2369, 2484, 0, +2469, 2618, 0, +2574, 2751, 0, +2685, 2885, 0, +2801, 3017, 0, +2921, 3150, 0, +3043, 3282, 0, +3168, 3415, 0, +3295, 3547, 0, +3423, 3680, 0, +3552, 3812, 0, +3681, 3944, 0, +3812, 4076, 0, +3943, 4095, 0, +1961, 0, 1873, +1961, 0, 1870, +1960, 0, 1865, +1959, 0, 1860, +1958, 0, 1852, +1956, 0, 1841, +1953, 0, 1826, +1950, 0, 1806, +1945, 0, 1776, +1939, 0, 1734, +1939, 0, 1655, +1939, 0, 1523, +1939, 0, 1248, +1939, 573, 0, +1939, 1492, 0, +2077, 1886, 0, +2214, 2146, 0, +2343, 2349, 0, +2423, 2484, 0, +2512, 2618, 0, +2609, 2751, 0, +2713, 2885, 0, +2823, 3017, 0, +2938, 3150, 0, +3056, 3282, 0, +3178, 3415, 0, +3302, 3547, 0, +3428, 3680, 0, +3556, 3812, 0, +3685, 3944, 0, +3814, 4076, 0, +3944, 4095, 0, +2094, 0, 1966, +2093, 0, 1963, +2093, 0, 1960, +2092, 0, 1955, +2091, 0, 1949, +2089, 0, 1940, +2087, 0, 1928, +2085, 0, 1912, +2082, 0, 1889, +2077, 0, 1856, +2077, 0, 1797, +2077, 0, 1704, +2077, 0, 1539, +2077, 0, 1138, +2077, 173, 0, +2077, 1581, 0, +2214, 2000, 0, +2349, 2268, 0, +2484, 2481, 0, +2565, 2618, 0, +2652, 2751, 0, +2748, 2885, 0, +2850, 3017, 0, +2959, 3150, 0, +3073, 3282, 0, +3191, 3415, 0, +3312, 3547, 0, +3436, 3680, 0, +3562, 3812, 0, +3689, 3944, 0, +3817, 4076, 0, +3947, 4095, 0, +2226, 0, 2066, +2226, 0, 2064, +2225, 0, 2061, +2225, 0, 2058, +2224, 0, 2053, +2223, 0, 2046, +2221, 0, 2036, +2220, 0, 2023, +2217, 0, 2006, +2214, 0, 1981, +2214, 0, 1936, +2214, 0, 1870, +2214, 0, 1762, +2214, 0, 1560, +2214, 0, 932, +2214, 0, 0, +2214, 1677, 0, +2349, 2118, 0, +2484, 2393, 0, +2618, 2608, 0, +2704, 2751, 0, +2790, 2885, 0, +2885, 3017, 0, +2986, 3150, 0, +3094, 3282, 0, +3207, 3415, 0, +3325, 3547, 0, +3445, 3680, 0, +3569, 3812, 0, +3694, 3944, 0, +3821, 4076, 0, +3950, 4095, 0, +2358, 0, 2173, +2358, 0, 2171, +2358, 0, 2169, +2357, 0, 2166, +2357, 0, 2162, +2356, 0, 2157, +2355, 0, 2150, +2353, 0, 2140, +2352, 0, 2126, +2349, 0, 2107, +2349, 0, 2074, +2349, 0, 2025, +2349, 0, 1951, +2349, 0, 1829, +2349, 0, 1586, +2349, 0, 275, +2349, 0, 0, +2349, 1781, 0, +2484, 2240, 0, +2618, 2519, 0, +2751, 2737, 0, +2842, 2885, 0, +2927, 3017, 0, +3020, 3150, 0, +3121, 3282, 0, +3228, 3415, 0, +3341, 3547, 0, +3458, 3680, 0, +3579, 3812, 0, +3702, 3944, 0, +3827, 4076, 0, +3954, 4095, 0, +2491, 0, 2285, +2491, 0, 2284, +2490, 0, 2283, +2490, 0, 2280, +2489, 0, 2277, +2489, 0, 2273, +2488, 0, 2267, +2487, 0, 2260, +2486, 0, 2249, +2484, 0, 2235, +2484, 0, 2210, +2484, 0, 2174, +2484, 0, 2122, +2484, 0, 2042, +2484, 0, 1906, +2484, 0, 1620, +2484, 0, 0, +2484, 0, 0, +2484, 1891, 0, +2618, 2363, 0, +2751, 2647, 0, +2885, 2866, 0, +2977, 3017, 0, +3062, 3150, 0, +3155, 3282, 0, +3255, 3415, 0, +3362, 3547, 0, +3475, 3680, 0, +3591, 3812, 0, +3711, 3944, 0, +3834, 4076, 0, +3960, 4095, 0, +2623, 0, 2402, +2623, 0, 2401, +2623, 0, 2400, +2622, 0, 2398, +2622, 0, 2396, +2621, 0, 2393, +2621, 0, 2388, +2620, 0, 2382, +2619, 0, 2374, +2618, 0, 2363, +2618, 0, 2345, +2618, 0, 2319, +2618, 0, 2281, +2618, 0, 2226, +2618, 0, 2140, +2618, 0, 1991, +2618, 0, 1661, +2618, 0, 0, +2618, 0, 0, +2618, 2005, 0, +2751, 2490, 0, +2885, 2776, 0, +3017, 2996, 0, +3112, 3150, 0, +3196, 3282, 0, +3289, 3415, 0, +3389, 3547, 0, +3495, 3680, 0, +3607, 3812, 0, +3724, 3944, 0, +3844, 4076, 0, +3967, 4095, 0, +2755, 0, 2523, +2755, 0, 2522, +2755, 0, 2521, +2755, 0, 2520, +2755, 0, 2517, +2754, 0, 2515, +2754, 0, 2512, +2753, 0, 2507, +2752, 0, 2501, +2751, 0, 2493, +2751, 0, 2479, +2751, 0, 2460, +2751, 0, 2433, +2751, 0, 2394, +2751, 0, 2336, +2751, 0, 2245, +2751, 0, 2086, +2751, 0, 1711, +2751, 0, 0, +2751, 0, 0, +2751, 2123, 0, +2885, 2617, 0, +3017, 2905, 0, +3150, 3127, 0, +3247, 3282, 0, +3330, 3415, 0, +3422, 3547, 0, +3522, 3680, 0, +3629, 3812, 0, +3740, 3944, 0, +3856, 4076, 0, +3977, 4095, 0, +2887, 0, 2646, +2887, 0, 2645, +2887, 0, 2644, +2887, 0, 2643, +2887, 0, 2642, +2887, 0, 2640, +2886, 0, 2637, +2886, 0, 2634, +2885, 0, 2629, +2885, 0, 2623, +2885, 0, 2613, +2885, 0, 2599, +2885, 0, 2579, +2885, 0, 2551, +2885, 0, 2511, +2885, 0, 2451, +2885, 0, 2356, +2885, 0, 2188, +2885, 0, 1769, +2885, 0, 0, +2885, 0, 0, +2885, 2245, 0, +3017, 2745, 0, +3150, 3036, 0, +3282, 3257, 0, +3380, 3415, 0, +3464, 3547, 0, +3556, 3680, 0, +3655, 3812, 0, +3761, 3944, 0, +3873, 4076, 0, +3989, 4095, 0, +3019, 0, 2771, +3019, 0, 2770, +3019, 0, 2770, +3019, 0, 2769, +3019, 0, 2768, +3019, 0, 2766, +3018, 0, 2764, +3018, 0, 2762, +3018, 0, 2758, +3017, 0, 2754, +3017, 0, 2746, +3017, 0, 2735, +3017, 0, 2721, +3017, 0, 2701, +3017, 0, 2672, +3017, 0, 2631, +3017, 0, 2570, +3017, 0, 2471, +3017, 0, 2294, +3017, 0, 1837, +3017, 0, 0, +3017, 0, 0, +3017, 2369, 0, +3150, 2875, 0, +3282, 3166, 0, +3415, 3389, 0, +3513, 3547, 0, +3597, 3680, 0, +3689, 3812, 0, +3788, 3944, 0, +3894, 4076, 0, +4005, 4095, 0, +3152, 0, 2898, +3152, 0, 2897, +3152, 0, 2897, +3151, 0, 2896, +3151, 0, 2895, +3151, 0, 2895, +3151, 0, 2893, +3151, 0, 2891, +3151, 0, 2888, +3150, 0, 2885, +3150, 0, 2879, +3150, 0, 2871, +3150, 0, 2860, +3150, 0, 2846, +3150, 0, 2825, +3150, 0, 2796, +3150, 0, 2754, +3150, 0, 2691, +3150, 0, 2591, +3150, 0, 2408, +3150, 0, 1915, +3150, 0, 0, +3150, 0, 0, +3150, 2495, 0, +3282, 3005, 0, +3415, 3297, 0, +3547, 3520, 0, +3646, 3680, 0, +3729, 3812, 0, +3821, 3944, 0, +3921, 4076, 0, +4026, 4095, 0, +3284, 0, 3025, +3283, 0, 3025, +3283, 0, 3025, +3283, 0, 3025, +3283, 0, 3024, +3283, 0, 3023, +3283, 0, 3022, +3283, 0, 3021, +3283, 0, 3018, +3282, 0, 3016, +3282, 0, 3012, +3282, 0, 3006, +3282, 0, 2998, +3282, 0, 2987, +3282, 0, 2972, +3282, 0, 2951, +3282, 0, 2922, +3282, 0, 2879, +3282, 0, 2815, +3282, 0, 2713, +3282, 0, 2524, +3282, 0, 1999, +3282, 0, 0, +3282, 0, 0, +3282, 2622, 0, +3415, 3136, 0, +3547, 3429, 0, +3680, 3652, 0, +3779, 3812, 0, +3862, 3944, 0, +3953, 4076, 0, +4053, 4095, 0, +3416, 0, 3155, +3416, 0, 3154, +3416, 0, 3154, +3416, 0, 3154, +3416, 0, 3154, +3416, 0, 3153, +3415, 0, 3152, +3415, 0, 3151, +3415, 0, 3150, +3415, 0, 3147, +3415, 0, 3144, +3415, 0, 3140, +3415, 0, 3134, +3415, 0, 3126, +3415, 0, 3115, +3415, 0, 3100, +3415, 0, 3079, +3415, 0, 3049, +3415, 0, 3006, +3415, 0, 2942, +3415, 0, 2837, +3415, 0, 2646, +3415, 0, 2098, +3415, 0, 0, +3415, 0, 0, +3415, 2751, 0, +3547, 3267, 0, +3680, 3560, 0, +3812, 3784, 0, +3912, 3944, 0, +3995, 4076, 0, +4086, 4095, 0, +3548, 0, 3285, +3548, 0, 3284, +3548, 0, 3284, +3548, 0, 3284, +3548, 0, 3284, +3548, 0, 3283, +3548, 0, 3283, +3548, 0, 3282, +3548, 0, 3281, +3547, 0, 3279, +3547, 0, 3277, +3547, 0, 3274, +3547, 0, 3269, +3547, 0, 3263, +3547, 0, 3255, +3547, 0, 3244, +3547, 0, 3229, +3547, 0, 3208, +3547, 0, 3178, +3547, 0, 3135, +3547, 0, 3069, +3547, 0, 2964, +3547, 0, 2770, +3547, 0, 2198, +3547, 0, 0, +3547, 0, 0, +3547, 2880, 0, +3680, 3398, 0, +3812, 3692, 0, +3944, 3916, 0, +4044, 4076, 0, +4095, 4095, 0, +3680, 0, 3415, +3680, 0, 3415, +3680, 0, 3415, +3680, 0, 3415, +3680, 0, 3414, +3680, 0, 3414, +3680, 0, 3414, +3680, 0, 3413, +3680, 0, 3412, +3680, 0, 3411, +3680, 0, 3409, +3680, 0, 3407, +3680, 0, 3404, +3680, 0, 3399, +3680, 0, 3393, +3680, 0, 3385, +3680, 0, 3374, +3680, 0, 3359, +3680, 0, 3337, +3680, 0, 3307, +3680, 0, 3264, +3680, 0, 3198, +3680, 0, 3092, +3680, 0, 2895, +3680, 0, 2310, +3680, 0, 0, +3680, 0, 0, +3680, 3011, 0, +3812, 3530, 0, +3944, 3824, 0, +4076, 4047, 0, +4095, 4095, 0, +3812, 0, 3546, +3812, 0, 3546, +3812, 0, 3546, +3812, 0, 3545, +3812, 0, 3545, +3812, 0, 3545, +3812, 0, 3545, +3812, 0, 3544, +3812, 0, 3544, +3812, 0, 3543, +3812, 0, 3541, +3812, 0, 3540, +3812, 0, 3537, +3812, 0, 3534, +3812, 0, 3530, +3812, 0, 3523, +3812, 0, 3515, +3812, 0, 3504, +3812, 0, 3489, +3812, 0, 3468, +3812, 0, 3437, +3812, 0, 3394, +3812, 0, 3328, +3812, 0, 3221, +3812, 0, 3023, +3812, 0, 2422, +3812, 0, 0, +3812, 0, 0, +3812, 3141, 0, +3944, 3661, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3677, +3944, 0, 3677, +3944, 0, 3677, +3944, 0, 3677, +3944, 0, 3677, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3675, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3673, +3944, 0, 3671, +3944, 0, 3668, +3944, 0, 3665, +3944, 0, 3661, +3944, 0, 3654, +3944, 0, 3646, +3944, 0, 3635, +3944, 0, 3620, +3944, 0, 3598, +3944, 0, 3568, +3944, 0, 3524, +3944, 0, 3458, +3944, 0, 3351, +3944, 0, 3151, +3944, 0, 2539, +3944, 0, 0, +3944, 0, 0, +3944, 3272, 0, +4076, 3793, 0, +4095, 4088, 0, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3807, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3805, +4076, 0, 3803, +4076, 0, 3802, +4076, 0, 3799, +4076, 0, 3796, +4076, 0, 3791, +4076, 0, 3785, +4076, 0, 3777, +4076, 0, 3766, +4076, 0, 3751, +4076, 0, 3729, +4076, 0, 3699, +4076, 0, 3655, +4076, 0, 3588, +4076, 0, 3480, +4076, 0, 3279, +4076, 0, 2659, +4076, 0, 0, +4076, 0, 0, +4076, 3403, 0, +4095, 3925, 0, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3939, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3937, +4095, 0, 3935, +4095, 0, 3933, +4095, 0, 3931, +4095, 0, 3927, +4095, 0, 3923, +4095, 0, 3917, +4095, 0, 3909, +4095, 0, 3898, +4095, 0, 3882, +4095, 0, 3861, +4095, 0, 3830, +4095, 0, 3786, +4095, 0, 3720, +4095, 0, 3612, +4095, 0, 3410, +4095, 0, 2785, +4095, 0, 0, +4095, 0, 0, +4095, 3535, 0, +0, 1174, 1429, +0, 1192, 1429, +0, 1215, 1429, +0, 1244, 1429, +0, 1280, 1429, +0, 1323, 1429, +0, 1376, 1429, +0, 1429, 1419, +0, 1429, 1330, +0, 1429, 1174, +0, 1429, 816, +0, 1563, 0, +0, 1696, 0, +650, 1828, 0, +1220, 1961, 0, +1524, 2094, 0, +1753, 2226, 0, +1946, 2358, 0, +2119, 2491, 0, +2278, 2623, 0, +2431, 2755, 0, +2577, 2887, 0, +2720, 3019, 0, +2860, 3152, 0, +2997, 3284, 0, +3134, 3416, 0, +3269, 3548, 0, +3403, 3680, 0, +3537, 3812, 0, +3670, 3944, 0, +3803, 4076, 0, +3937, 4095, 0, +0, 1156, 1429, +0, 1178, 1427, +0, 1201, 1427, +0, 1231, 1427, +0, 1267, 1427, +0, 1313, 1427, +0, 1366, 1427, +0, 1427, 1424, +0, 1427, 1336, +0, 1427, 1182, +0, 1427, 833, +0, 1561, 0, +0, 1695, 0, +713, 1828, 0, +1238, 1961, 0, +1534, 2093, 0, +1759, 2226, 0, +1950, 2358, 0, +2121, 2491, 0, +2281, 2623, 0, +2432, 2755, 0, +2578, 2887, 0, +2720, 3019, 0, +2860, 3152, 0, +2998, 3283, 0, +3134, 3416, 0, +3269, 3548, 0, +3403, 3680, 0, +3537, 3812, 0, +3671, 3944, 0, +3803, 4076, 0, +3937, 4095, 0, +0, 1130, 1429, +0, 1153, 1427, +0, 1182, 1424, +0, 1213, 1424, +0, 1251, 1424, +0, 1298, 1424, +0, 1353, 1424, +0, 1418, 1424, +0, 1424, 1343, +0, 1424, 1193, +0, 1424, 856, +0, 1559, 0, +0, 1693, 0, +786, 1827, 0, +1263, 1960, 0, +1547, 2093, 0, +1767, 2225, 0, +1955, 2358, 0, +2125, 2490, 0, +2283, 2623, 0, +2434, 2755, 0, +2580, 2887, 0, +2721, 3019, 0, +2861, 3152, 0, +2998, 3283, 0, +3134, 3416, 0, +3269, 3548, 0, +3404, 3680, 0, +3537, 3812, 0, +3671, 3944, 0, +3803, 4076, 0, +3937, 4095, 0, +0, 1092, 1429, +0, 1118, 1427, +0, 1149, 1424, +0, 1188, 1421, +0, 1228, 1421, +0, 1277, 1421, +0, 1335, 1421, +0, 1403, 1421, +0, 1421, 1353, +0, 1421, 1207, +0, 1421, 885, +0, 1557, 0, +0, 1691, 0, +869, 1825, 0, +1294, 1959, 0, +1564, 2092, 0, +1777, 2225, 0, +1962, 2357, 0, +2129, 2490, 0, +2287, 2622, 0, +2436, 2755, 0, +2581, 2887, 0, +2723, 3019, 0, +2862, 3151, 0, +2999, 3283, 0, +3135, 3416, 0, +3270, 3548, 0, +3404, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 1037, 1429, +0, 1065, 1427, +0, 1101, 1424, +0, 1144, 1421, +0, 1196, 1416, +0, 1248, 1416, +0, 1310, 1416, +0, 1381, 1416, +0, 1416, 1367, +0, 1416, 1225, +0, 1416, 920, +0, 1553, 0, +0, 1689, 0, +960, 1823, 0, +1332, 1958, 0, +1585, 2091, 0, +1790, 2224, 0, +1970, 2357, 0, +2136, 2489, 0, +2291, 2622, 0, +2440, 2755, 0, +2584, 2887, 0, +2724, 3019, 0, +2863, 3151, 0, +3000, 3283, 0, +3135, 3416, 0, +3270, 3548, 0, +3404, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 951, 1429, +0, 985, 1427, +0, 1027, 1424, +0, 1077, 1421, +0, 1137, 1416, +0, 1206, 1410, +0, 1273, 1410, +0, 1350, 1410, +0, 1410, 1383, +0, 1410, 1248, +0, 1410, 964, +0, 1549, 0, +406, 1685, 0, +1059, 1821, 0, +1378, 1956, 0, +1612, 2089, 0, +1808, 2223, 0, +1982, 2356, 0, +2144, 2489, 0, +2297, 2621, 0, +2444, 2754, 0, +2587, 2887, 0, +2727, 3019, 0, +2865, 3151, 0, +3001, 3283, 0, +3136, 3416, 0, +3271, 3548, 0, +3405, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 803, 1429, +0, 849, 1427, +0, 904, 1424, +0, 969, 1421, +0, 1043, 1416, +0, 1127, 1410, +344, 1219, 1402, +344, 1304, 1402, +344, 1398, 1402, +344, 1402, 1277, +344, 1402, 1017, +0, 1543, 172, +742, 1681, 0, +1164, 1817, 0, +1433, 1953, 0, +1646, 2087, 0, +1830, 2221, 0, +1998, 2355, 0, +2155, 2488, 0, +2304, 2621, 0, +2450, 2754, 0, +2591, 2886, 0, +2730, 3018, 0, +2867, 3151, 0, +3003, 3283, 0, +3138, 3415, 0, +3272, 3548, 0, +3406, 3680, 0, +3539, 3812, 0, +3672, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 471, 1429, +0, 562, 1427, +0, 662, 1424, +0, 767, 1421, +0, 878, 1416, +0, 994, 1410, +344, 1114, 1402, +695, 1236, 1390, +695, 1343, 1390, +695, 1390, 1313, +695, 1390, 1078, +479, 1534, 476, +983, 1674, 0, +1275, 1813, 0, +1498, 1950, 0, +1687, 2085, 0, +1858, 2220, 0, +2017, 2353, 0, +2169, 2487, 0, +2314, 2620, 0, +2457, 2753, 0, +2596, 2886, 0, +2734, 3018, 0, +2870, 3151, 0, +3005, 3283, 0, +3139, 3415, 0, +3273, 3548, 0, +3406, 3680, 0, +3540, 3812, 0, +3672, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 0, 1429, +0, 0, 1427, +0, 0, 1424, +0, 141, 1421, +0, 478, 1416, +0, 719, 1410, +344, 919, 1402, +695, 1095, 1390, +940, 1258, 1374, +940, 1374, 1357, +940, 1374, 1150, +926, 1523, 826, +1183, 1666, 608, +1391, 1807, 0, +1572, 1945, 0, +1738, 2082, 0, +1894, 2217, 0, +2042, 2352, 0, +2187, 2486, 0, +2328, 2619, 0, +2467, 2752, 0, +2603, 2885, 0, +2739, 3018, 0, +2874, 3151, 0, +3008, 3283, 0, +3141, 3415, 0, +3275, 3548, 0, +3408, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +0, 0, 1429, +0, 0, 1427, +0, 0, 1424, +0, 0, 1421, +0, 0, 1416, +47, 0, 1410, +344, 345, 1402, +695, 793, 1390, +940, 1069, 1374, +1142, 1286, 1352, +1142, 1352, 1231, +1202, 1507, 1073, +1360, 1654, 959, +1510, 1798, 740, +1655, 1939, 0, +1797, 2077, 0, +1936, 2214, 0, +2074, 2349, 0, +2210, 2484, 0, +2345, 2618, 0, +2479, 2751, 0, +2613, 2885, 0, +2746, 3017, 0, +2879, 3150, 0, +3012, 3282, 0, +3144, 3415, 0, +3277, 3547, 0, +3409, 3680, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +816, 0, 1429, +833, 0, 1427, +856, 0, 1424, +885, 0, 1421, +920, 0, 1416, +964, 0, 1410, +1017, 344, 1402, +1078, 695, 1390, +1150, 940, 1374, +1231, 1142, 1352, +1320, 1320, 1320, +1418, 1484, 1274, +1522, 1638, 1205, +1633, 1787, 1090, +1748, 1930, 872, +1866, 2071, 79, +1988, 2209, 0, +2113, 2346, 0, +2239, 2481, 0, +2367, 2616, 0, +2495, 2750, 0, +2625, 2883, 0, +2755, 3016, 0, +2886, 3150, 0, +3017, 3282, 0, +3148, 3414, 0, +3280, 3547, 0, +3411, 3679, 0, +3543, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1301, 0, 1563, +1307, 0, 1561, +1315, 0, 1559, +1326, 0, 1557, +1340, 0, 1553, +1358, 0, 1549, +1381, 0, 1543, +1409, 476, 1534, +1445, 826, 1523, +1489, 1073, 1507, +1484, 1274, 1418, +1484, 1363, 1274, +1638, 1621, 1205, +1740, 1787, 1090, +1833, 1930, 872, +1934, 2071, 79, +2041, 2209, 0, +2153, 2346, 0, +2270, 2481, 0, +2390, 2616, 0, +2514, 2750, 0, +2639, 2883, 0, +2765, 3016, 0, +2894, 3150, 0, +3023, 3282, 0, +3152, 3414, 0, +3283, 3547, 0, +3414, 3679, 0, +3545, 3812, 0, +3676, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1587, 0, 1696, +1590, 0, 1695, +1594, 0, 1693, +1600, 0, 1691, +1608, 0, 1689, +1618, 0, 1685, +1631, 0, 1681, +1648, 0, 1674, +1666, 608, 1663, +1654, 959, 1608, +1638, 1205, 1522, +1638, 1205, 1333, +1638, 1414, 1205, +1787, 1709, 1090, +1927, 1930, 872, +2010, 2071, 79, +2102, 2209, 0, +2202, 2346, 0, +2308, 2481, 0, +2420, 2616, 0, +2536, 2750, 0, +2656, 2883, 0, +2778, 3016, 0, +2904, 3150, 0, +3030, 3282, 0, +3158, 3414, 0, +3287, 3547, 0, +3417, 3679, 0, +3547, 3812, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1807, 0, 1828, +1810, 0, 1828, +1812, 0, 1827, +1816, 0, 1825, +1821, 0, 1823, +1821, 0, 1815, +1817, 0, 1799, +1813, 0, 1777, +1807, 0, 1746, +1798, 740, 1701, +1787, 1090, 1633, +1787, 1090, 1491, +1787, 1090, 1189, +1787, 1475, 1090, +1930, 1805, 872, +2071, 2044, 79, +2174, 2209, 0, +2260, 2346, 0, +2355, 2481, 0, +2456, 2616, 0, +2565, 2750, 0, +2678, 2883, 0, +2796, 3016, 0, +2917, 3150, 0, +3040, 3282, 0, +3165, 3414, 0, +3293, 3547, 0, +3421, 3679, 0, +3551, 3812, 0, +3680, 3944, 0, +3811, 4076, 0, +3942, 4095, 0, +1961, 0, 1923, +1961, 0, 1920, +1960, 0, 1917, +1959, 0, 1911, +1958, 0, 1905, +1956, 0, 1895, +1953, 0, 1882, +1950, 0, 1864, +1945, 0, 1838, +1939, 0, 1801, +1930, 872, 1748, +1930, 872, 1642, +1930, 872, 1447, +1930, 872, 873, +1930, 1545, 872, +2071, 1908, 79, +2209, 2159, 0, +2328, 2346, 0, +2410, 2481, 0, +2501, 2616, 0, +2601, 2750, 0, +2706, 2883, 0, +2817, 3016, 0, +2933, 3150, 0, +3053, 3282, 0, +3175, 3414, 0, +3300, 3547, 0, +3427, 3679, 0, +3555, 3812, 0, +3684, 3944, 0, +3813, 4076, 0, +3944, 4095, 0, +2094, 0, 2007, +2093, 0, 2005, +2093, 0, 2002, +2092, 0, 1997, +2091, 0, 1992, +2089, 0, 1984, +2087, 0, 1973, +2085, 0, 1958, +2082, 0, 1938, +2077, 0, 1908, +2071, 79, 1866, +2071, 79, 1787, +2071, 79, 1655, +2071, 79, 1379, +2071, 706, 79, +2071, 1625, 79, +2209, 2018, 0, +2346, 2278, 0, +2475, 2481, 0, +2555, 2616, 0, +2645, 2750, 0, +2741, 2883, 0, +2845, 3016, 0, +2955, 3150, 0, +3070, 3282, 0, +3188, 3414, 0, +3310, 3547, 0, +3434, 3679, 0, +3561, 3812, 0, +3688, 3944, 0, +3816, 4076, 0, +3946, 4095, 0, +2226, 0, 2100, +2226, 0, 2098, +2225, 0, 2095, +2225, 0, 2092, +2224, 0, 2087, +2223, 0, 2081, +2221, 0, 2072, +2220, 0, 2060, +2217, 0, 2044, +2214, 0, 2021, +2209, 0, 1988, +2209, 0, 1929, +2209, 0, 1836, +2209, 0, 1671, +2209, 0, 1270, +2209, 303, 0, +2209, 1713, 0, +2346, 2132, 0, +2481, 2401, 0, +2616, 2613, 0, +2697, 2750, 0, +2784, 2883, 0, +2880, 3016, 0, +2982, 3150, 0, +3091, 3282, 0, +3205, 3414, 0, +3323, 3547, 0, +3444, 3679, 0, +3568, 3812, 0, +3694, 3944, 0, +3821, 4076, 0, +3950, 4095, 0, +2358, 0, 2200, +2358, 0, 2199, +2358, 0, 2196, +2357, 0, 2193, +2357, 0, 2190, +2356, 0, 2185, +2355, 0, 2178, +2353, 0, 2168, +2352, 0, 2155, +2349, 0, 2138, +2346, 0, 2113, +2346, 0, 2069, +2346, 0, 2002, +2346, 0, 1894, +2346, 0, 1692, +2346, 0, 1064, +2346, 0, 0, +2346, 1809, 0, +2481, 2251, 0, +2616, 2525, 0, +2750, 2741, 0, +2836, 2883, 0, +2922, 3016, 0, +3017, 3150, 0, +3118, 3282, 0, +3226, 3414, 0, +3339, 3547, 0, +3457, 3679, 0, +3577, 3812, 0, +3701, 3944, 0, +3826, 4076, 0, +3954, 4095, 0, +2491, 0, 2306, +2491, 0, 2305, +2490, 0, 2304, +2490, 0, 2302, +2489, 0, 2298, +2489, 0, 2294, +2488, 0, 2289, +2487, 0, 2282, +2486, 0, 2272, +2484, 0, 2258, +2481, 0, 2239, +2481, 0, 2206, +2481, 0, 2158, +2481, 0, 2084, +2481, 0, 1961, +2481, 0, 1719, +2481, 0, 415, +2481, 0, 0, +2481, 1913, 0, +2616, 2372, 0, +2750, 2651, 0, +2883, 2869, 0, +2974, 3016, 0, +3059, 3150, 0, +3152, 3282, 0, +3253, 3414, 0, +3361, 3547, 0, +3473, 3679, 0, +3590, 3812, 0, +3711, 3944, 0, +3834, 4076, 0, +3959, 4095, 0, +2623, 0, 2419, +2623, 0, 2417, +2623, 0, 2416, +2622, 0, 2414, +2622, 0, 2412, +2621, 0, 2409, +2621, 0, 2405, +2620, 0, 2399, +2619, 0, 2392, +2618, 0, 2381, +2616, 0, 2367, +2616, 0, 2342, +2616, 0, 2306, +2616, 0, 2255, +2616, 0, 2174, +2616, 0, 2038, +2616, 0, 1752, +2616, 0, 0, +2616, 0, 0, +2616, 2022, 0, +2750, 2496, 0, +2883, 2779, 0, +3016, 2998, 0, +3110, 3150, 0, +3194, 3282, 0, +3287, 3414, 0, +3387, 3547, 0, +3494, 3679, 0, +3606, 3812, 0, +3723, 3944, 0, +3843, 4076, 0, +3967, 4095, 0, +2755, 0, 2535, +2755, 0, 2535, +2755, 0, 2533, +2755, 0, 2532, +2755, 0, 2530, +2754, 0, 2528, +2754, 0, 2525, +2753, 0, 2521, +2752, 0, 2514, +2751, 0, 2506, +2750, 0, 2495, +2750, 0, 2477, +2750, 0, 2451, +2750, 0, 2414, +2750, 0, 2359, +2750, 0, 2273, +2750, 0, 2124, +2750, 0, 1794, +2750, 0, 0, +2750, 0, 0, +2750, 2137, 0, +2883, 2621, 0, +3016, 2907, 0, +3150, 3128, 0, +3244, 3282, 0, +3329, 3414, 0, +3421, 3547, 0, +3521, 3679, 0, +3628, 3812, 0, +3740, 3944, 0, +3856, 4076, 0, +3976, 4095, 0, +2887, 0, 2655, +2887, 0, 2655, +2887, 0, 2654, +2887, 0, 2653, +2887, 0, 2651, +2887, 0, 2650, +2886, 0, 2647, +2886, 0, 2644, +2885, 0, 2639, +2885, 0, 2633, +2883, 0, 2625, +2883, 0, 2611, +2883, 0, 2592, +2883, 0, 2565, +2883, 0, 2526, +2883, 0, 2469, +2883, 0, 2378, +2883, 0, 2218, +2883, 0, 1843, +2883, 0, 0, +2883, 0, 0, +2883, 2255, 0, +3016, 2749, 0, +3150, 3038, 0, +3282, 3259, 0, +3379, 3414, 0, +3462, 3547, 0, +3554, 3679, 0, +3654, 3812, 0, +3761, 3944, 0, +3872, 4076, 0, +3989, 4095, 0, +3019, 0, 2778, +3019, 0, 2777, +3019, 0, 2777, +3019, 0, 2776, +3019, 0, 2775, +3019, 0, 2774, +3018, 0, 2772, +3018, 0, 2769, +3018, 0, 2766, +3017, 0, 2761, +3016, 0, 2755, +3016, 0, 2745, +3016, 0, 2731, +3016, 0, 2711, +3016, 0, 2683, +3016, 0, 2643, +3016, 0, 2583, +3016, 0, 2488, +3016, 0, 2319, +3016, 0, 1900, +3016, 0, 0, +3016, 0, 0, +3016, 2377, 0, +3150, 2878, 0, +3282, 3168, 0, +3414, 3390, 0, +3512, 3547, 0, +3596, 3679, 0, +3688, 3812, 0, +3787, 3944, 0, +3893, 4076, 0, +4005, 4095, 0, +3152, 0, 2903, +3152, 0, 2903, +3152, 0, 2903, +3151, 0, 2902, +3151, 0, 2901, +3151, 0, 2900, +3151, 0, 2898, +3151, 0, 2896, +3151, 0, 2894, +3150, 0, 2891, +3150, 0, 2886, +3150, 0, 2878, +3150, 0, 2868, +3150, 0, 2853, +3150, 0, 2833, +3150, 0, 2804, +3150, 0, 2763, +3150, 0, 2702, +3150, 0, 2604, +3150, 0, 2427, +3150, 0, 1969, +3150, 0, 0, +3150, 0, 0, +3150, 2501, 0, +3282, 3006, 0, +3414, 3298, 0, +3547, 3521, 0, +3646, 3679, 0, +3729, 3812, 0, +3820, 3944, 0, +3920, 4076, 0, +4026, 4095, 0, +3284, 0, 3030, +3283, 0, 3029, +3283, 0, 3029, +3283, 0, 3029, +3283, 0, 3028, +3283, 0, 3027, +3283, 0, 3026, +3283, 0, 3025, +3283, 0, 3023, +3282, 0, 3020, +3282, 0, 3017, +3282, 0, 3011, +3282, 0, 3003, +3282, 0, 2992, +3282, 0, 2977, +3282, 0, 2957, +3282, 0, 2928, +3282, 0, 2886, +3282, 0, 2823, +3282, 0, 2723, +3282, 0, 2539, +3282, 0, 2045, +3282, 0, 0, +3282, 0, 0, +3282, 2627, 0, +3414, 3137, 0, +3547, 3429, 0, +3679, 3653, 0, +3778, 3812, 0, +3862, 3944, 0, +3953, 4076, 0, +4053, 4095, 0, +3416, 0, 3158, +3416, 0, 3158, +3416, 0, 3157, +3416, 0, 3157, +3416, 0, 3157, +3416, 0, 3156, +3415, 0, 3155, +3415, 0, 3154, +3415, 0, 3153, +3415, 0, 3151, +3414, 0, 3148, +3414, 0, 3144, +3414, 0, 3138, +3414, 0, 3130, +3414, 0, 3119, +3414, 0, 3104, +3414, 0, 3083, +3414, 0, 3054, +3414, 0, 3011, +3414, 0, 2947, +3414, 0, 2845, +3414, 0, 2657, +3414, 0, 2135, +3414, 0, 0, +3414, 0, 0, +3414, 2754, 0, +3547, 3268, 0, +3679, 3561, 0, +3812, 3784, 0, +3911, 3944, 0, +3994, 4076, 0, +4086, 4095, 0, +3548, 0, 3287, +3548, 0, 3287, +3548, 0, 3287, +3548, 0, 3286, +3548, 0, 3286, +3548, 0, 3286, +3548, 0, 3285, +3548, 0, 3284, +3548, 0, 3283, +3547, 0, 3282, +3547, 0, 3280, +3547, 0, 3277, +3547, 0, 3272, +3547, 0, 3266, +3547, 0, 3258, +3547, 0, 3247, +3547, 0, 3232, +3547, 0, 3211, +3547, 0, 3181, +3547, 0, 3138, +3547, 0, 3074, +3547, 0, 2970, +3547, 0, 2778, +3547, 0, 2228, +3547, 0, 0, +3547, 0, 0, +3547, 2883, 0, +3679, 3399, 0, +3812, 3692, 0, +3944, 3916, 0, +4044, 4076, 0, +4095, 4095, 0, +3680, 0, 3417, +3680, 0, 3417, +3680, 0, 3417, +3680, 0, 3416, +3680, 0, 3416, +3680, 0, 3416, +3680, 0, 3415, +3680, 0, 3415, +3680, 0, 3414, +3680, 0, 3413, +3679, 0, 3411, +3679, 0, 3409, +3679, 0, 3406, +3679, 0, 3401, +3679, 0, 3395, +3679, 0, 3387, +3679, 0, 3376, +3679, 0, 3361, +3679, 0, 3340, +3679, 0, 3310, +3679, 0, 3267, +3679, 0, 3201, +3679, 0, 3096, +3679, 0, 2901, +3679, 0, 2333, +3679, 0, 0, +3679, 0, 0, +3679, 3013, 0, +3812, 3530, 0, +3944, 3824, 0, +4076, 4048, 0, +4095, 4095, 0, +3812, 0, 3547, +3812, 0, 3547, +3812, 0, 3547, +3812, 0, 3547, +3812, 0, 3547, +3812, 0, 3547, +3812, 0, 3546, +3812, 0, 3546, +3812, 0, 3545, +3812, 0, 3544, +3812, 0, 3543, +3812, 0, 3541, +3812, 0, 3539, +3812, 0, 3536, +3812, 0, 3531, +3812, 0, 3525, +3812, 0, 3517, +3812, 0, 3506, +3812, 0, 3491, +3812, 0, 3469, +3812, 0, 3439, +3812, 0, 3396, +3812, 0, 3330, +3812, 0, 3224, +3812, 0, 3027, +3812, 0, 2441, +3812, 0, 0, +3812, 0, 0, +3812, 3143, 0, +3944, 3661, 0, +4076, 3955, 0, +4095, 4095, 0, +3944, 0, 3678, +3944, 0, 3678, +3944, 0, 3678, +3944, 0, 3678, +3944, 0, 3678, +3944, 0, 3677, +3944, 0, 3677, +3944, 0, 3677, +3944, 0, 3676, +3944, 0, 3676, +3944, 0, 3675, +3944, 0, 3674, +3944, 0, 3672, +3944, 0, 3669, +3944, 0, 3666, +3944, 0, 3662, +3944, 0, 3656, +3944, 0, 3648, +3944, 0, 3636, +3944, 0, 3621, +3944, 0, 3600, +3944, 0, 3569, +3944, 0, 3526, +3944, 0, 3459, +3944, 0, 3353, +3944, 0, 3154, +3944, 0, 2553, +3944, 0, 0, +3944, 0, 0, +3944, 3273, 0, +4076, 3793, 0, +4095, 4088, 0, +4076, 0, 3809, +4076, 0, 3809, +4076, 0, 3809, +4076, 0, 3809, +4076, 0, 3809, +4076, 0, 3809, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3807, +4076, 0, 3806, +4076, 0, 3804, +4076, 0, 3803, +4076, 0, 3800, +4076, 0, 3797, +4076, 0, 3793, +4076, 0, 3787, +4076, 0, 3778, +4076, 0, 3767, +4076, 0, 3752, +4076, 0, 3730, +4076, 0, 3700, +4076, 0, 3656, +4076, 0, 3590, +4076, 0, 3482, +4076, 0, 3282, +4076, 0, 2670, +4076, 0, 0, +4076, 0, 0, +4076, 3404, 0, +4095, 3925, 0, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3936, +4095, 0, 3934, +4095, 0, 3932, +4095, 0, 3928, +4095, 0, 3924, +4095, 0, 3918, +4095, 0, 3910, +4095, 0, 3898, +4095, 0, 3883, +4095, 0, 3862, +4095, 0, 3831, +4095, 0, 3787, +4095, 0, 3721, +4095, 0, 3613, +4095, 0, 3412, +4095, 0, 2793, +4095, 0, 0, +4095, 0, 0, +4095, 3536, 0, +0, 1304, 1563, +0, 1318, 1563, +0, 1335, 1563, +0, 1357, 1563, +0, 1385, 1563, +0, 1421, 1563, +0, 1463, 1563, +0, 1515, 1563, +0, 1563, 1548, +0, 1563, 1458, +0, 1563, 1301, +0, 1563, 934, +0, 1696, 0, +0, 1828, 0, +726, 1961, 0, +1336, 2094, 0, +1648, 2226, 0, +1880, 2358, 0, +2075, 2491, 0, +2248, 2623, 0, +2409, 2755, 0, +2562, 2887, 0, +2708, 3019, 0, +2851, 3152, 0, +2991, 3284, 0, +3129, 3416, 0, +3266, 3548, 0, +3401, 3680, 0, +3535, 3812, 0, +3669, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 1290, 1563, +0, 1307, 1561, +0, 1325, 1561, +0, 1347, 1561, +0, 1376, 1561, +0, 1412, 1561, +0, 1456, 1561, +0, 1508, 1561, +0, 1561, 1552, +0, 1561, 1463, +0, 1561, 1307, +0, 1561, 948, +0, 1695, 0, +0, 1828, 0, +780, 1961, 0, +1351, 2093, 0, +1656, 2226, 0, +1885, 2358, 0, +2078, 2491, 0, +2250, 2623, 0, +2411, 2755, 0, +2563, 2887, 0, +2709, 3019, 0, +2852, 3152, 0, +2992, 3283, 0, +3129, 3416, 0, +3266, 3548, 0, +3401, 3680, 0, +3536, 3812, 0, +3669, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 1271, 1563, +0, 1288, 1561, +0, 1310, 1559, +0, 1333, 1559, +0, 1363, 1559, +0, 1400, 1559, +0, 1445, 1559, +0, 1499, 1559, +0, 1559, 1556, +0, 1559, 1468, +0, 1559, 1315, +0, 1559, 966, +0, 1693, 0, +0, 1827, 0, +844, 1960, 0, +1370, 2093, 0, +1666, 2225, 0, +1891, 2358, 0, +2082, 2490, 0, +2253, 2623, 0, +2413, 2755, 0, +2564, 2887, 0, +2710, 3019, 0, +2853, 3152, 0, +2992, 3283, 0, +3130, 3416, 0, +3266, 3548, 0, +3401, 3680, 0, +3536, 3812, 0, +3669, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 1244, 1563, +0, 1262, 1561, +0, 1285, 1559, +0, 1315, 1557, +0, 1345, 1557, +0, 1384, 1557, +0, 1430, 1557, +0, 1486, 1557, +0, 1551, 1557, +0, 1557, 1476, +0, 1557, 1326, +0, 1557, 988, +0, 1691, 0, +0, 1825, 0, +917, 1959, 0, +1394, 2092, 0, +1679, 2225, 0, +1899, 2357, 0, +2087, 2490, 0, +2256, 2622, 0, +2415, 2755, 0, +2566, 2887, 0, +2712, 3019, 0, +2854, 3151, 0, +2993, 3283, 0, +3130, 3416, 0, +3267, 3548, 0, +3401, 3680, 0, +3536, 3812, 0, +3669, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 1205, 1563, +0, 1225, 1561, +0, 1250, 1559, +0, 1281, 1557, +0, 1320, 1553, +0, 1360, 1553, +0, 1409, 1553, +0, 1467, 1553, +0, 1535, 1553, +0, 1553, 1486, +0, 1553, 1340, +0, 1553, 1017, +0, 1689, 0, +0, 1823, 0, +1000, 1958, 0, +1425, 2091, 0, +1695, 2224, 0, +1909, 2357, 0, +2094, 2489, 0, +2261, 2622, 0, +2419, 2755, 0, +2569, 2887, 0, +2713, 3019, 0, +2855, 3151, 0, +2994, 3283, 0, +3131, 3416, 0, +3267, 3548, 0, +3402, 3680, 0, +3536, 3812, 0, +3670, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 1148, 1563, +0, 1170, 1561, +0, 1198, 1559, +0, 1233, 1557, +0, 1276, 1553, +0, 1328, 1549, +0, 1380, 1549, +0, 1442, 1549, +0, 1513, 1549, +0, 1549, 1499, +0, 1549, 1358, +0, 1549, 1053, +0, 1685, 0, +0, 1821, 0, +1091, 1956, 0, +1463, 2089, 0, +1717, 2223, 0, +1922, 2356, 0, +2103, 2489, 0, +2268, 2621, 0, +2423, 2754, 0, +2572, 2887, 0, +2716, 3019, 0, +2857, 3151, 0, +2995, 3283, 0, +3132, 3416, 0, +3268, 3548, 0, +3402, 3680, 0, +3537, 3812, 0, +3670, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 1057, 1563, +0, 1084, 1561, +0, 1118, 1559, +0, 1159, 1557, +0, 1209, 1553, +0, 1269, 1549, +0, 1338, 1543, +0, 1405, 1543, +0, 1482, 1543, +0, 1543, 1516, +0, 1543, 1381, +0, 1543, 1096, +0, 1681, 0, +536, 1817, 0, +1190, 1953, 0, +1509, 2087, 0, +1744, 2221, 0, +1940, 2355, 0, +2115, 2488, 0, +2276, 2621, 0, +2429, 2754, 0, +2576, 2886, 0, +2719, 3018, 0, +2859, 3151, 0, +2997, 3283, 0, +3133, 3415, 0, +3269, 3548, 0, +3403, 3680, 0, +3537, 3812, 0, +3670, 3944, 0, +3803, 4076, 0, +3937, 4095, 0, +0, 897, 1563, +0, 935, 1561, +0, 981, 1559, +0, 1037, 1557, +0, 1102, 1553, +0, 1176, 1549, +0, 1259, 1543, +476, 1351, 1534, +476, 1437, 1534, +476, 1531, 1534, +476, 1534, 1409, +476, 1534, 1149, +0, 1674, 313, +874, 1813, 0, +1295, 1950, 0, +1565, 2085, 0, +1778, 2220, 0, +1962, 2353, 0, +2130, 2487, 0, +2287, 2620, 0, +2437, 2753, 0, +2581, 2886, 0, +2723, 3018, 0, +2862, 3151, 0, +2999, 3283, 0, +3135, 3415, 0, +3270, 3548, 0, +3404, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 523, 1563, +0, 605, 1561, +0, 696, 1559, +0, 794, 1557, +0, 900, 1553, +0, 1011, 1549, +0, 1127, 1543, +476, 1246, 1534, +826, 1368, 1523, +826, 1476, 1523, +826, 1523, 1445, +826, 1523, 1211, +608, 1666, 609, +1115, 1807, 0, +1407, 1945, 0, +1630, 2082, 0, +1819, 2217, 0, +1990, 2352, 0, +2149, 2486, 0, +2301, 2619, 0, +2447, 2752, 0, +2589, 2885, 0, +2728, 3018, 0, +2866, 3151, 0, +3002, 3283, 0, +3137, 3415, 0, +3271, 3548, 0, +3405, 3680, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 0, 1563, +0, 0, 1561, +0, 0, 1559, +0, 0, 1557, +0, 275, 1553, +0, 611, 1549, +0, 852, 1543, +476, 1051, 1534, +826, 1228, 1523, +1073, 1390, 1507, +1073, 1507, 1489, +1073, 1507, 1282, +1056, 1654, 959, +1315, 1798, 740, +1523, 1939, 0, +1704, 2077, 0, +1870, 2214, 0, +2025, 2349, 0, +2174, 2484, 0, +2319, 2618, 0, +2460, 2751, 0, +2599, 2885, 0, +2735, 3017, 0, +2871, 3150, 0, +3006, 3282, 0, +3140, 3415, 0, +3274, 3547, 0, +3407, 3680, 0, +3540, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3937, 4095, 0, +0, 0, 1563, +0, 0, 1561, +0, 0, 1559, +0, 0, 1557, +0, 0, 1553, +0, 0, 1549, +172, 0, 1543, +476, 479, 1534, +826, 926, 1523, +1073, 1202, 1507, +1274, 1418, 1484, +1274, 1484, 1363, +1333, 1638, 1205, +1491, 1787, 1090, +1642, 1930, 872, +1787, 2071, 79, +1929, 2209, 0, +2069, 2346, 0, +2206, 2481, 0, +2342, 2616, 0, +2477, 2750, 0, +2611, 2883, 0, +2745, 3016, 0, +2878, 3150, 0, +3011, 3282, 0, +3144, 3414, 0, +3277, 3547, 0, +3409, 3679, 0, +3541, 3812, 0, +3674, 3944, 0, +3806, 4076, 0, +3938, 4095, 0, +934, 0, 1563, +948, 0, 1561, +966, 0, 1559, +988, 0, 1557, +1017, 0, 1553, +1053, 0, 1549, +1096, 0, 1543, +1149, 476, 1534, +1211, 826, 1523, +1282, 1073, 1507, +1363, 1274, 1484, +1453, 1453, 1453, +1550, 1616, 1407, +1654, 1771, 1337, +1765, 1919, 1223, +1880, 2062, 1005, +1998, 2203, 217, +2120, 2341, 0, +2245, 2478, 0, +2371, 2613, 0, +2499, 2748, 0, +2628, 2882, 0, +2757, 3015, 0, +2887, 3149, 0, +3018, 3281, 0, +3149, 3414, 0, +3280, 3547, 0, +3412, 3679, 0, +3544, 3812, 0, +3675, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1427, 0, 1696, +1432, 0, 1695, +1439, 0, 1693, +1447, 0, 1691, +1457, 0, 1689, +1471, 0, 1685, +1489, 0, 1681, +1512, 0, 1674, +1541, 608, 1666, +1577, 959, 1654, +1621, 1205, 1638, +1616, 1407, 1550, +1616, 1495, 1407, +1771, 1754, 1337, +1872, 1919, 1223, +1965, 2062, 1005, +2066, 2203, 217, +2173, 2341, 0, +2285, 2478, 0, +2402, 2613, 0, +2522, 2748, 0, +2645, 2882, 0, +2770, 3015, 0, +2898, 3149, 0, +3025, 3281, 0, +3155, 3414, 0, +3285, 3547, 0, +3415, 3679, 0, +3546, 3812, 0, +3677, 3944, 0, +3808, 4076, 0, +3940, 4095, 0, +1716, 0, 1828, +1719, 0, 1828, +1722, 0, 1827, +1727, 0, 1825, +1732, 0, 1823, +1740, 0, 1821, +1750, 0, 1817, +1763, 0, 1813, +1780, 0, 1807, +1798, 740, 1795, +1787, 1090, 1740, +1771, 1337, 1654, +1771, 1337, 1466, +1771, 1546, 1337, +1919, 1841, 1223, +2059, 2062, 1005, +2142, 2203, 217, +2234, 2341, 0, +2334, 2478, 0, +2440, 2613, 0, +2552, 2748, 0, +2668, 2882, 0, +2788, 3015, 0, +2911, 3149, 0, +3035, 3281, 0, +3162, 3414, 0, +3290, 3547, 0, +3419, 3679, 0, +3549, 3812, 0, +3679, 3944, 0, +3810, 4076, 0, +3941, 4095, 0, +1938, 0, 1961, +1940, 0, 1961, +1941, 0, 1960, +1944, 0, 1959, +1948, 0, 1958, +1953, 0, 1956, +1953, 0, 1947, +1950, 0, 1931, +1945, 0, 1909, +1939, 0, 1878, +1930, 872, 1833, +1919, 1223, 1765, +1919, 1223, 1624, +1919, 1223, 1321, +1919, 1607, 1223, +2062, 1937, 1005, +2203, 2176, 217, +2305, 2341, 0, +2392, 2478, 0, +2487, 2613, 0, +2589, 2748, 0, +2697, 2882, 0, +2810, 3015, 0, +2928, 3149, 0, +3049, 3281, 0, +3172, 3414, 0, +3298, 3547, 0, +3425, 3679, 0, +3553, 3812, 0, +3683, 3944, 0, +3812, 4076, 0, +3943, 4095, 0, +2094, 0, 2058, +2093, 0, 2056, +2093, 0, 2053, +2092, 0, 2049, +2091, 0, 2044, +2089, 0, 2037, +2087, 0, 2027, +2085, 0, 2014, +2082, 0, 1996, +2077, 0, 1970, +2071, 79, 1934, +2062, 1005, 1880, +2062, 1005, 1774, +2062, 1005, 1579, +2062, 1005, 1006, +2062, 1677, 1005, +2203, 2041, 217, +2341, 2291, 0, +2460, 2478, 0, +2542, 2613, 0, +2634, 2748, 0, +2733, 2882, 0, +2838, 3015, 0, +2950, 3149, 0, +3065, 3281, 0, +3185, 3414, 0, +3307, 3547, 0, +3432, 3679, 0, +3559, 3812, 0, +3687, 3944, 0, +3816, 4076, 0, +3946, 4095, 0, +2226, 0, 2141, +2226, 0, 2140, +2225, 0, 2137, +2225, 0, 2134, +2224, 0, 2130, +2223, 0, 2124, +2221, 0, 2116, +2220, 0, 2105, +2217, 0, 2090, +2214, 0, 2070, +2209, 0, 2041, +2203, 217, 1998, +2203, 217, 1920, +2203, 217, 1787, +2203, 217, 1512, +2203, 838, 217, +2203, 1757, 217, +2341, 2150, 0, +2478, 2411, 0, +2607, 2613, 0, +2687, 2748, 0, +2777, 2882, 0, +2873, 3015, 0, +2977, 3149, 0, +3087, 3281, 0, +3202, 3414, 0, +3320, 3547, 0, +3442, 3679, 0, +3566, 3812, 0, +3692, 3944, 0, +3820, 4076, 0, +3949, 4095, 0, +2358, 0, 2233, +2358, 0, 2232, +2358, 0, 2230, +2357, 0, 2228, +2357, 0, 2224, +2356, 0, 2219, +2355, 0, 2213, +2353, 0, 2204, +2352, 0, 2192, +2349, 0, 2176, +2346, 0, 2153, +2341, 0, 2120, +2341, 0, 2061, +2341, 0, 1968, +2341, 0, 1803, +2341, 0, 1403, +2341, 437, 0, +2341, 1845, 0, +2478, 2264, 0, +2613, 2533, 0, +2748, 2745, 0, +2829, 2882, 0, +2916, 3015, 0, +3012, 3149, 0, +3114, 3281, 0, +3223, 3414, 0, +3337, 3547, 0, +3455, 3679, 0, +3576, 3812, 0, +3700, 3944, 0, +3826, 4076, 0, +3953, 4095, 0, +2491, 0, 2333, +2491, 0, 2332, +2490, 0, 2331, +2490, 0, 2329, +2489, 0, 2326, +2489, 0, 2322, +2488, 0, 2317, +2487, 0, 2310, +2486, 0, 2301, +2484, 0, 2288, +2481, 0, 2270, +2478, 0, 2245, +2478, 0, 2201, +2478, 0, 2134, +2478, 0, 2026, +2478, 0, 1824, +2478, 0, 1199, +2478, 0, 0, +2478, 1941, 0, +2613, 2382, 0, +2748, 2657, 0, +2882, 2873, 0, +2968, 3015, 0, +3055, 3149, 0, +3149, 3281, 0, +3250, 3414, 0, +3358, 3547, 0, +3472, 3679, 0, +3589, 3812, 0, +3710, 3944, 0, +3833, 4076, 0, +3959, 4095, 0, +2623, 0, 2440, +2623, 0, 2439, +2623, 0, 2437, +2622, 0, 2436, +2622, 0, 2434, +2621, 0, 2431, +2621, 0, 2427, +2620, 0, 2421, +2619, 0, 2414, +2618, 0, 2404, +2616, 0, 2390, +2613, 0, 2371, +2613, 0, 2338, +2613, 0, 2290, +2613, 0, 2216, +2613, 0, 2093, +2613, 0, 1851, +2613, 0, 547, +2613, 0, 0, +2613, 2045, 0, +2748, 2504, 0, +2882, 2784, 0, +3015, 3001, 0, +3106, 3149, 0, +3191, 3281, 0, +3284, 3414, 0, +3385, 3547, 0, +3493, 3679, 0, +3605, 3812, 0, +3722, 3944, 0, +3843, 4076, 0, +3966, 4095, 0, +2755, 0, 2552, +2755, 0, 2551, +2755, 0, 2550, +2755, 0, 2549, +2755, 0, 2547, +2754, 0, 2545, +2754, 0, 2541, +2753, 0, 2537, +2752, 0, 2532, +2751, 0, 2524, +2750, 0, 2514, +2748, 0, 2499, +2748, 0, 2474, +2748, 0, 2439, +2748, 0, 2387, +2748, 0, 2306, +2748, 0, 2170, +2748, 0, 1885, +2748, 0, 0, +2748, 0, 0, +2748, 2155, 0, +2882, 2628, 0, +3015, 2911, 0, +3149, 3131, 0, +3242, 3281, 0, +3326, 3414, 0, +3419, 3547, 0, +3520, 3679, 0, +3626, 3812, 0, +3739, 3944, 0, +3855, 4076, 0, +3976, 4095, 0, +2887, 0, 2668, +2887, 0, 2667, +2887, 0, 2667, +2887, 0, 2666, +2887, 0, 2664, +2887, 0, 2662, +2886, 0, 2660, +2886, 0, 2657, +2885, 0, 2652, +2885, 0, 2647, +2883, 0, 2639, +2882, 0, 2628, +2882, 0, 2609, +2882, 0, 2583, +2882, 0, 2546, +2882, 0, 2491, +2882, 0, 2405, +2882, 0, 2256, +2882, 0, 1925, +2882, 0, 0, +2882, 0, 0, +2882, 2269, 0, +3015, 2753, 0, +3149, 3040, 0, +3281, 3260, 0, +3376, 3414, 0, +3461, 3547, 0, +3553, 3679, 0, +3653, 3812, 0, +3760, 3944, 0, +3872, 4076, 0, +3988, 4095, 0, +3019, 0, 2788, +3019, 0, 2787, +3019, 0, 2787, +3019, 0, 2786, +3019, 0, 2785, +3019, 0, 2784, +3018, 0, 2782, +3018, 0, 2779, +3018, 0, 2776, +3017, 0, 2771, +3016, 0, 2765, +3015, 0, 2757, +3015, 0, 2743, +3015, 0, 2724, +3015, 0, 2697, +3015, 0, 2658, +3015, 0, 2600, +3015, 0, 2510, +3015, 0, 2350, +3015, 0, 1974, +3015, 0, 0, +3015, 0, 0, +3015, 2387, 0, +3149, 2881, 0, +3281, 3169, 0, +3414, 3391, 0, +3511, 3547, 0, +3595, 3679, 0, +3687, 3812, 0, +3786, 3944, 0, +3892, 4076, 0, +4005, 4095, 0, +3152, 0, 2911, +3152, 0, 2910, +3152, 0, 2910, +3151, 0, 2909, +3151, 0, 2908, +3151, 0, 2907, +3151, 0, 2906, +3151, 0, 2904, +3151, 0, 2902, +3150, 0, 2898, +3150, 0, 2894, +3149, 0, 2887, +3149, 0, 2877, +3149, 0, 2863, +3149, 0, 2843, +3149, 0, 2815, +3149, 0, 2775, +3149, 0, 2715, +3149, 0, 2620, +3149, 0, 2452, +3149, 0, 2033, +3149, 0, 0, +3149, 0, 0, +3149, 2509, 0, +3281, 3009, 0, +3414, 3299, 0, +3547, 3522, 0, +3644, 3679, 0, +3728, 3812, 0, +3820, 3944, 0, +3919, 4076, 0, +4026, 4095, 0, +3284, 0, 3035, +3283, 0, 3035, +3283, 0, 3035, +3283, 0, 3034, +3283, 0, 3034, +3283, 0, 3033, +3283, 0, 3032, +3283, 0, 3031, +3283, 0, 3029, +3282, 0, 3026, +3282, 0, 3023, +3281, 0, 3018, +3281, 0, 3010, +3281, 0, 2999, +3281, 0, 2985, +3281, 0, 2965, +3281, 0, 2936, +3281, 0, 2895, +3281, 0, 2833, +3281, 0, 2735, +3281, 0, 2558, +3281, 0, 2100, +3281, 0, 0, +3281, 0, 0, +3281, 2633, 0, +3414, 3139, 0, +3547, 3430, 0, +3679, 3653, 0, +3777, 3812, 0, +3861, 3944, 0, +3953, 4076, 0, +4052, 4095, 0, +3416, 0, 3162, +3416, 0, 3162, +3416, 0, 3162, +3416, 0, 3161, +3416, 0, 3161, +3416, 0, 3160, +3415, 0, 3160, +3415, 0, 3158, +3415, 0, 3157, +3415, 0, 3155, +3414, 0, 3152, +3414, 0, 3149, +3414, 0, 3143, +3414, 0, 3135, +3414, 0, 3125, +3414, 0, 3110, +3414, 0, 3089, +3414, 0, 3060, +3414, 0, 3018, +3414, 0, 2956, +3414, 0, 2855, +3414, 0, 2672, +3414, 0, 2180, +3414, 0, 0, +3414, 0, 0, +3414, 2759, 0, +3547, 3269, 0, +3679, 3562, 0, +3812, 3785, 0, +3910, 3944, 0, +3994, 4076, 0, +4085, 4095, 0, +3548, 0, 3290, +3548, 0, 3290, +3548, 0, 3290, +3548, 0, 3290, +3548, 0, 3289, +3548, 0, 3289, +3548, 0, 3288, +3548, 0, 3287, +3548, 0, 3286, +3547, 0, 3285, +3547, 0, 3283, +3547, 0, 3280, +3547, 0, 3276, +3547, 0, 3270, +3547, 0, 3262, +3547, 0, 3251, +3547, 0, 3236, +3547, 0, 3216, +3547, 0, 3186, +3547, 0, 3144, +3547, 0, 3080, +3547, 0, 2977, +3547, 0, 2790, +3547, 0, 2265, +3547, 0, 0, +3547, 0, 0, +3547, 2886, 0, +3679, 3400, 0, +3812, 3693, 0, +3944, 3916, 0, +4043, 4076, 0, +4095, 4095, 0, +3680, 0, 3419, +3680, 0, 3419, +3680, 0, 3419, +3680, 0, 3419, +3680, 0, 3419, +3680, 0, 3418, +3680, 0, 3418, +3680, 0, 3417, +3680, 0, 3416, +3680, 0, 3415, +3679, 0, 3414, +3679, 0, 3412, +3679, 0, 3409, +3679, 0, 3404, +3679, 0, 3398, +3679, 0, 3390, +3679, 0, 3379, +3679, 0, 3364, +3679, 0, 3343, +3679, 0, 3314, +3679, 0, 3271, +3679, 0, 3206, +3679, 0, 3102, +3679, 0, 2910, +3679, 0, 2363, +3679, 0, 0, +3679, 0, 0, +3679, 3015, 0, +3812, 3531, 0, +3944, 3824, 0, +4076, 4048, 0, +4095, 4095, 0, +3812, 0, 3549, +3812, 0, 3549, +3812, 0, 3549, +3812, 0, 3549, +3812, 0, 3549, +3812, 0, 3548, +3812, 0, 3548, +3812, 0, 3548, +3812, 0, 3547, +3812, 0, 3546, +3812, 0, 3545, +3812, 0, 3544, +3812, 0, 3541, +3812, 0, 3538, +3812, 0, 3533, +3812, 0, 3528, +3812, 0, 3520, +3812, 0, 3508, +3812, 0, 3493, +3812, 0, 3472, +3812, 0, 3442, +3812, 0, 3399, +3812, 0, 3333, +3812, 0, 3228, +3812, 0, 3034, +3812, 0, 2465, +3812, 0, 0, +3812, 0, 0, +3812, 3145, 0, +3944, 3662, 0, +4076, 3956, 0, +4095, 4095, 0, +3944, 0, 3679, +3944, 0, 3679, +3944, 0, 3679, +3944, 0, 3679, +3944, 0, 3679, +3944, 0, 3679, +3944, 0, 3679, +3944, 0, 3678, +3944, 0, 3678, +3944, 0, 3677, +3944, 0, 3676, +3944, 0, 3675, +3944, 0, 3673, +3944, 0, 3671, +3944, 0, 3668, +3944, 0, 3663, +3944, 0, 3657, +3944, 0, 3649, +3944, 0, 3638, +3944, 0, 3623, +3944, 0, 3602, +3944, 0, 3571, +3944, 0, 3528, +3944, 0, 3462, +3944, 0, 3356, +3944, 0, 3159, +3944, 0, 2572, +3944, 0, 0, +3944, 0, 0, +3944, 3275, 0, +4076, 3793, 0, +4095, 4088, 0, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3809, +4076, 0, 3809, +4076, 0, 3808, +4076, 0, 3808, +4076, 0, 3807, +4076, 0, 3805, +4076, 0, 3804, +4076, 0, 3801, +4076, 0, 3798, +4076, 0, 3794, +4076, 0, 3787, +4076, 0, 3780, +4076, 0, 3768, +4076, 0, 3753, +4076, 0, 3732, +4076, 0, 3701, +4076, 0, 3658, +4076, 0, 3592, +4076, 0, 3485, +4076, 0, 3286, +4076, 0, 2684, +4076, 0, 0, +4076, 0, 0, +4076, 3405, 0, +4095, 3926, 0, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3940, +4095, 0, 3940, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3937, +4095, 0, 3935, +4095, 0, 3932, +4095, 0, 3929, +4095, 0, 3925, +4095, 0, 3919, +4095, 0, 3910, +4095, 0, 3899, +4095, 0, 3884, +4095, 0, 3863, +4095, 0, 3832, +4095, 0, 3788, +4095, 0, 3722, +4095, 0, 3615, +4095, 0, 3415, +4095, 0, 2804, +4095, 0, 0, +4095, 0, 0, +4095, 3537, 0, +0, 1434, 1696, +0, 1444, 1696, +0, 1457, 1696, +0, 1475, 1696, +0, 1496, 1696, +0, 1524, 1696, +0, 1559, 1696, +0, 1601, 1696, +0, 1653, 1696, +0, 1696, 1677, +0, 1696, 1587, +0, 1696, 1427, +0, 1696, 1056, +0, 1828, 0, +0, 1961, 0, +814, 2094, 0, +1457, 2226, 0, +1775, 2358, 0, +2009, 2491, 0, +2205, 2623, 0, +2379, 2755, 0, +2541, 2887, 0, +2693, 3019, 0, +2840, 3152, 0, +2983, 3284, 0, +3123, 3416, 0, +3261, 3548, 0, +3398, 3680, 0, +3533, 3812, 0, +3667, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 1424, 1696, +0, 1436, 1695, +0, 1450, 1695, +0, 1467, 1695, +0, 1489, 1695, +0, 1517, 1695, +0, 1552, 1695, +0, 1596, 1695, +0, 1647, 1695, +0, 1695, 1680, +0, 1695, 1590, +0, 1695, 1432, +0, 1695, 1066, +0, 1828, 0, +0, 1961, 0, +859, 2093, 0, +1469, 2226, 0, +1781, 2358, 0, +2013, 2491, 0, +2207, 2623, 0, +2381, 2755, 0, +2542, 2887, 0, +2694, 3019, 0, +2841, 3152, 0, +2983, 3283, 0, +3123, 3416, 0, +3261, 3548, 0, +3398, 3680, 0, +3533, 3812, 0, +3667, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 1410, 1696, +0, 1422, 1695, +0, 1439, 1693, +0, 1456, 1693, +0, 1479, 1693, +0, 1508, 1693, +0, 1544, 1693, +0, 1588, 1693, +0, 1640, 1693, +0, 1693, 1683, +0, 1693, 1594, +0, 1693, 1439, +0, 1693, 1080, +0, 1827, 0, +0, 1960, 0, +913, 2093, 0, +1484, 2225, 0, +1788, 2358, 0, +2017, 2490, 0, +2210, 2623, 0, +2383, 2755, 0, +2543, 2887, 0, +2695, 3019, 0, +2842, 3152, 0, +2984, 3283, 0, +3124, 3416, 0, +3261, 3548, 0, +3398, 3680, 0, +3533, 3812, 0, +3668, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 1390, 1696, +0, 1403, 1695, +0, 1420, 1693, +0, 1442, 1691, +0, 1465, 1691, +0, 1495, 1691, +0, 1532, 1691, +0, 1577, 1691, +0, 1631, 1691, +0, 1691, 1688, +0, 1691, 1600, +0, 1691, 1447, +0, 1691, 1098, +0, 1825, 0, +0, 1959, 0, +977, 2092, 0, +1503, 2225, 0, +1798, 2357, 0, +2023, 2490, 0, +2214, 2622, 0, +2386, 2755, 0, +2545, 2887, 0, +2696, 3019, 0, +2842, 3151, 0, +2985, 3283, 0, +3124, 3416, 0, +3262, 3548, 0, +3398, 3680, 0, +3533, 3812, 0, +3668, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 1362, 1696, +0, 1376, 1695, +0, 1394, 1693, +0, 1417, 1691, +0, 1446, 1689, +0, 1477, 1689, +0, 1515, 1689, +0, 1562, 1689, +0, 1617, 1689, +0, 1683, 1689, +0, 1689, 1608, +0, 1689, 1457, +0, 1689, 1120, +0, 1823, 0, +0, 1958, 0, +1050, 2091, 0, +1527, 2224, 0, +1811, 2357, 0, +2031, 2489, 0, +2219, 2622, 0, +2389, 2755, 0, +2548, 2887, 0, +2698, 3019, 0, +2844, 3151, 0, +2986, 3283, 0, +3125, 3416, 0, +3262, 3548, 0, +3399, 3680, 0, +3534, 3812, 0, +3668, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 1322, 1696, +0, 1337, 1695, +0, 1357, 1693, +0, 1382, 1691, +0, 1413, 1689, +0, 1452, 1685, +0, 1492, 1685, +0, 1541, 1685, +0, 1599, 1685, +0, 1667, 1685, +0, 1685, 1618, +0, 1685, 1471, +0, 1685, 1149, +0, 1821, 0, +0, 1956, 0, +1133, 2089, 0, +1557, 2223, 0, +1828, 2356, 0, +2041, 2489, 0, +2226, 2621, 0, +2394, 2754, 0, +2551, 2887, 0, +2701, 3019, 0, +2845, 3151, 0, +2987, 3283, 0, +3126, 3416, 0, +3263, 3548, 0, +3399, 3680, 0, +3534, 3812, 0, +3668, 3944, 0, +3802, 4076, 0, +3935, 4095, 0, +0, 1262, 1696, +0, 1279, 1695, +0, 1302, 1693, +0, 1330, 1691, +0, 1365, 1689, +0, 1408, 1685, +0, 1460, 1681, +0, 1512, 1681, +0, 1574, 1681, +0, 1645, 1681, +0, 1681, 1631, +0, 1681, 1489, +0, 1681, 1184, +0, 1817, 0, +0, 1953, 0, +1224, 2087, 0, +1596, 2221, 0, +1849, 2355, 0, +2055, 2488, 0, +2235, 2621, 0, +2400, 2754, 0, +2555, 2886, 0, +2703, 3018, 0, +2848, 3151, 0, +2988, 3283, 0, +3127, 3415, 0, +3264, 3548, 0, +3400, 3680, 0, +3534, 3812, 0, +3668, 3944, 0, +3802, 4076, 0, +3935, 4095, 0, +0, 1167, 1696, +0, 1188, 1695, +0, 1216, 1693, +0, 1249, 1691, +0, 1291, 1689, +0, 1341, 1685, +0, 1401, 1681, +0, 1470, 1674, +0, 1537, 1674, +0, 1614, 1674, +0, 1674, 1648, +0, 1674, 1512, +0, 1674, 1228, +0, 1813, 0, +670, 1950, 0, +1322, 2085, 0, +1642, 2220, 0, +1876, 2353, 0, +2072, 2487, 0, +2247, 2620, 0, +2408, 2753, 0, +2561, 2886, 0, +2708, 3018, 0, +2851, 3151, 0, +2991, 3283, 0, +3129, 3415, 0, +3265, 3548, 0, +3401, 3680, 0, +3535, 3812, 0, +3669, 3944, 0, +3802, 4076, 0, +3936, 4095, 0, +0, 998, 1696, +0, 1029, 1695, +0, 1067, 1693, +0, 1113, 1691, +0, 1169, 1689, +0, 1233, 1685, +0, 1308, 1681, +0, 1391, 1674, +608, 1483, 1666, +608, 1569, 1666, +608, 1663, 1666, +608, 1666, 1541, +608, 1666, 1281, +0, 1807, 438, +1007, 1945, 0, +1428, 2082, 0, +1697, 2217, 0, +1910, 2352, 0, +2094, 2486, 0, +2262, 2619, 0, +2419, 2752, 0, +2569, 2885, 0, +2714, 3018, 0, +2855, 3151, 0, +2994, 3283, 0, +3131, 3415, 0, +3267, 3548, 0, +3402, 3680, 0, +3536, 3812, 0, +3670, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 580, 1696, +0, 653, 1695, +0, 736, 1693, +0, 827, 1691, +0, 926, 1689, +0, 1031, 1685, +0, 1142, 1681, +0, 1258, 1674, +608, 1378, 1666, +959, 1500, 1654, +959, 1608, 1654, +959, 1654, 1577, +959, 1654, 1343, +742, 1798, 740, +1248, 1939, 0, +1539, 2077, 0, +1762, 2214, 0, +1951, 2349, 0, +2122, 2484, 0, +2281, 2618, 0, +2433, 2751, 0, +2579, 2885, 0, +2721, 3017, 0, +2860, 3150, 0, +2998, 3282, 0, +3134, 3415, 0, +3269, 3547, 0, +3404, 3680, 0, +3537, 3812, 0, +3671, 3944, 0, +3803, 4076, 0, +3937, 4095, 0, +0, 0, 1696, +0, 0, 1695, +0, 0, 1693, +0, 0, 1691, +0, 0, 1689, +0, 406, 1685, +0, 742, 1681, +0, 983, 1674, +608, 1183, 1666, +959, 1360, 1654, +1205, 1522, 1638, +1205, 1638, 1621, +1205, 1638, 1414, +1189, 1787, 1090, +1447, 1930, 872, +1655, 2071, 79, +1836, 2209, 0, +2002, 2346, 0, +2158, 2481, 0, +2306, 2616, 0, +2451, 2750, 0, +2592, 2883, 0, +2731, 3016, 0, +2868, 3150, 0, +3003, 3282, 0, +3138, 3414, 0, +3272, 3547, 0, +3406, 3679, 0, +3539, 3812, 0, +3672, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 0, 1696, +0, 0, 1695, +0, 0, 1693, +0, 0, 1691, +0, 0, 1689, +0, 0, 1685, +0, 0, 1681, +313, 0, 1674, +609, 608, 1666, +959, 1056, 1654, +1205, 1333, 1638, +1407, 1550, 1616, +1407, 1616, 1495, +1466, 1771, 1337, +1624, 1919, 1223, +1774, 2062, 1005, +1920, 2203, 217, +2061, 2341, 0, +2201, 2478, 0, +2338, 2613, 0, +2474, 2748, 0, +2609, 2882, 0, +2743, 3015, 0, +2877, 3149, 0, +3010, 3281, 0, +3143, 3414, 0, +3276, 3547, 0, +3409, 3679, 0, +3541, 3812, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +1056, 0, 1696, +1066, 0, 1695, +1080, 0, 1693, +1098, 0, 1691, +1120, 0, 1689, +1149, 0, 1685, +1184, 0, 1681, +1228, 0, 1674, +1281, 608, 1666, +1343, 959, 1654, +1414, 1205, 1638, +1495, 1407, 1616, +1585, 1585, 1585, +1682, 1748, 1539, +1787, 1903, 1469, +1897, 2051, 1355, +2012, 2194, 1136, +2131, 2335, 345, +2253, 2473, 0, +2377, 2610, 0, +2503, 2746, 0, +2631, 2880, 0, +2759, 3014, 0, +2889, 3148, 0, +3019, 3280, 0, +3150, 3414, 0, +3281, 3546, 0, +3413, 3679, 0, +3544, 3811, 0, +3676, 3944, 0, +3807, 4076, 0, +3939, 4095, 0, +1557, 0, 1828, +1560, 0, 1828, +1565, 0, 1827, +1571, 0, 1825, +1579, 0, 1823, +1590, 0, 1821, +1604, 0, 1817, +1622, 0, 1813, +1644, 0, 1807, +1673, 740, 1798, +1709, 1090, 1787, +1754, 1337, 1771, +1748, 1539, 1682, +1748, 1627, 1539, +1903, 1885, 1469, +2004, 2051, 1355, +2097, 2194, 1136, +2198, 2335, 345, +2305, 2473, 0, +2417, 2610, 0, +2534, 2746, 0, +2654, 2880, 0, +2777, 3014, 0, +2903, 3148, 0, +3029, 3280, 0, +3158, 3414, 0, +3287, 3546, 0, +3417, 3679, 0, +3547, 3811, 0, +3678, 3944, 0, +3809, 4076, 0, +3941, 4095, 0, +1847, 0, 1961, +1849, 0, 1961, +1851, 0, 1960, +1854, 0, 1959, +1859, 0, 1958, +1865, 0, 1956, +1872, 0, 1953, +1882, 0, 1950, +1895, 0, 1945, +1912, 0, 1939, +1930, 872, 1927, +1919, 1223, 1872, +1903, 1469, 1787, +1903, 1469, 1598, +1903, 1678, 1469, +2051, 1973, 1355, +2191, 2194, 1136, +2274, 2335, 345, +2366, 2473, 0, +2466, 2610, 0, +2572, 2746, 0, +2684, 2880, 0, +2800, 3014, 0, +2920, 3148, 0, +3043, 3280, 0, +3168, 3414, 0, +3294, 3546, 0, +3422, 3679, 0, +3552, 3811, 0, +3681, 3944, 0, +3812, 4076, 0, +3942, 4095, 0, +2069, 0, 2094, +2070, 0, 2093, +2071, 0, 2093, +2073, 0, 2092, +2076, 0, 2091, +2080, 0, 2089, +2085, 0, 2087, +2085, 0, 2079, +2082, 0, 2063, +2077, 0, 2041, +2071, 79, 2010, +2062, 1005, 1965, +2051, 1355, 1897, +2051, 1355, 1756, +2051, 1355, 1453, +2051, 1739, 1355, +2194, 2069, 1136, +2335, 2308, 345, +2438, 2473, 0, +2524, 2610, 0, +2619, 2746, 0, +2721, 2880, 0, +2829, 3014, 0, +2942, 3148, 0, +3060, 3280, 0, +3181, 3414, 0, +3304, 3546, 0, +3430, 3679, 0, +3557, 3811, 0, +3685, 3944, 0, +3814, 4076, 0, +3945, 4095, 0, +2226, 0, 2191, +2226, 0, 2190, +2225, 0, 2188, +2225, 0, 2185, +2224, 0, 2181, +2223, 0, 2176, +2221, 0, 2169, +2220, 0, 2159, +2217, 0, 2146, +2214, 0, 2128, +2209, 0, 2102, +2203, 217, 2066, +2194, 1136, 2012, +2194, 1136, 1906, +2194, 1136, 1711, +2194, 1136, 1137, +2194, 1809, 1136, +2335, 2173, 345, +2473, 2423, 0, +2592, 2610, 0, +2674, 2746, 0, +2766, 2880, 0, +2865, 3014, 0, +2970, 3148, 0, +3082, 3280, 0, +3198, 3414, 0, +3317, 3546, 0, +3440, 3679, 0, +3564, 3811, 0, +3691, 3944, 0, +3819, 4076, 0, +3948, 4095, 0, +2358, 0, 2275, +2358, 0, 2273, +2358, 0, 2271, +2357, 0, 2269, +2357, 0, 2266, +2356, 0, 2262, +2355, 0, 2256, +2353, 0, 2248, +2352, 0, 2237, +2349, 0, 2223, +2346, 0, 2202, +2341, 0, 2173, +2335, 345, 2131, +2335, 345, 2052, +2335, 345, 1919, +2335, 345, 1644, +2335, 970, 345, +2335, 1889, 345, +2473, 2282, 0, +2610, 2543, 0, +2740, 2746, 0, +2820, 2880, 0, +2908, 3014, 0, +3005, 3148, 0, +3109, 3280, 0, +3219, 3414, 0, +3334, 3546, 0, +3453, 3679, 0, +3574, 3811, 0, +3699, 3944, 0, +3824, 4076, 0, +3952, 4095, 0, +2491, 0, 2367, +2491, 0, 2366, +2490, 0, 2364, +2490, 0, 2362, +2489, 0, 2360, +2489, 0, 2356, +2488, 0, 2352, +2487, 0, 2345, +2486, 0, 2336, +2484, 0, 2325, +2481, 0, 2308, +2478, 0, 2285, +2473, 0, 2253, +2473, 0, 2194, +2473, 0, 2100, +2473, 0, 1935, +2473, 0, 1535, +2473, 557, 0, +2473, 1977, 0, +2610, 2396, 0, +2746, 2665, 0, +2880, 2877, 0, +2961, 3014, 0, +3049, 3148, 0, +3144, 3280, 0, +3247, 3414, 0, +3355, 3546, 0, +3469, 3679, 0, +3587, 3811, 0, +3708, 3944, 0, +3832, 4076, 0, +3958, 4095, 0, +2623, 0, 2466, +2623, 0, 2465, +2623, 0, 2464, +2622, 0, 2463, +2622, 0, 2460, +2621, 0, 2458, +2621, 0, 2454, +2620, 0, 2449, +2619, 0, 2442, +2618, 0, 2432, +2616, 0, 2420, +2613, 0, 2402, +2610, 0, 2377, +2610, 0, 2333, +2610, 0, 2266, +2610, 0, 2158, +2610, 0, 1956, +2610, 0, 1330, +2610, 0, 0, +2610, 2073, 0, +2746, 2515, 0, +2880, 2789, 0, +3014, 3004, 0, +3100, 3148, 0, +3186, 3280, 0, +3281, 3414, 0, +3382, 3546, 0, +3490, 3679, 0, +3604, 3811, 0, +3721, 3944, 0, +3841, 4076, 0, +3965, 4095, 0, +2755, 0, 2573, +2755, 0, 2572, +2755, 0, 2571, +2755, 0, 2570, +2755, 0, 2568, +2754, 0, 2566, +2754, 0, 2563, +2753, 0, 2559, +2752, 0, 2553, +2751, 0, 2546, +2750, 0, 2536, +2748, 0, 2522, +2746, 0, 2503, +2746, 0, 2470, +2746, 0, 2422, +2746, 0, 2348, +2746, 0, 2226, +2746, 0, 1983, +2746, 0, 678, +2746, 0, 0, +2746, 2177, 0, +2880, 2636, 0, +3014, 2915, 0, +3148, 3133, 0, +3238, 3280, 0, +3323, 3414, 0, +3416, 3546, 0, +3517, 3679, 0, +3625, 3811, 0, +3737, 3944, 0, +3854, 4076, 0, +3975, 4095, 0, +2887, 0, 2684, +2887, 0, 2684, +2887, 0, 2683, +2887, 0, 2682, +2887, 0, 2681, +2887, 0, 2679, +2886, 0, 2677, +2886, 0, 2673, +2885, 0, 2669, +2885, 0, 2664, +2883, 0, 2656, +2882, 0, 2645, +2880, 0, 2631, +2880, 0, 2606, +2880, 0, 2571, +2880, 0, 2519, +2880, 0, 2439, +2880, 0, 2302, +2880, 0, 2016, +2880, 0, 0, +2880, 0, 0, +2880, 2287, 0, +3014, 2759, 0, +3148, 3043, 0, +3280, 3262, 0, +3374, 3414, 0, +3458, 3546, 0, +3551, 3679, 0, +3652, 3811, 0, +3758, 3944, 0, +3871, 4076, 0, +3988, 4095, 0, +3019, 0, 2800, +3019, 0, 2800, +3019, 0, 2799, +3019, 0, 2798, +3019, 0, 2797, +3019, 0, 2796, +3018, 0, 2794, +3018, 0, 2792, +3018, 0, 2789, +3017, 0, 2784, +3016, 0, 2778, +3015, 0, 2770, +3014, 0, 2759, +3014, 0, 2741, +3014, 0, 2715, +3014, 0, 2678, +3014, 0, 2623, +3014, 0, 2536, +3014, 0, 2388, +3014, 0, 2056, +3014, 0, 0, +3014, 0, 0, +3014, 2401, 0, +3148, 2886, 0, +3280, 3172, 0, +3414, 3393, 0, +3509, 3546, 0, +3593, 3679, 0, +3685, 3811, 0, +3785, 3944, 0, +3891, 4076, 0, +4004, 4095, 0, +3152, 0, 2920, +3152, 0, 2920, +3152, 0, 2919, +3151, 0, 2919, +3151, 0, 2918, +3151, 0, 2917, +3151, 0, 2916, +3151, 0, 2914, +3151, 0, 2911, +3150, 0, 2908, +3150, 0, 2904, +3149, 0, 2898, +3148, 0, 2889, +3148, 0, 2875, +3148, 0, 2856, +3148, 0, 2829, +3148, 0, 2790, +3148, 0, 2733, +3148, 0, 2642, +3148, 0, 2482, +3148, 0, 2106, +3148, 0, 0, +3148, 0, 0, +3148, 2520, 0, +3280, 3013, 0, +3414, 3301, 0, +3546, 3523, 0, +3643, 3679, 0, +3727, 3811, 0, +3819, 3944, 0, +3918, 4076, 0, +4025, 4095, 0, +3284, 0, 3043, +3283, 0, 3042, +3283, 0, 3042, +3283, 0, 3042, +3283, 0, 3041, +3283, 0, 3040, +3283, 0, 3039, +3283, 0, 3038, +3283, 0, 3036, +3282, 0, 3033, +3282, 0, 3030, +3281, 0, 3025, +3280, 0, 3019, +3280, 0, 3009, +3280, 0, 2995, +3280, 0, 2975, +3280, 0, 2947, +3280, 0, 2907, +3280, 0, 2847, +3280, 0, 2752, +3280, 0, 2583, +3280, 0, 2164, +3280, 0, 0, +3280, 0, 0, +3280, 2641, 0, +3414, 3142, 0, +3546, 3432, 0, +3679, 3654, 0, +3777, 3811, 0, +3860, 3944, 0, +3952, 4076, 0, +4051, 4095, 0, +3416, 0, 3168, +3416, 0, 3168, +3416, 0, 3167, +3416, 0, 3167, +3416, 0, 3166, +3416, 0, 3166, +3415, 0, 3165, +3415, 0, 3164, +3415, 0, 3163, +3415, 0, 3161, +3414, 0, 3158, +3414, 0, 3155, +3414, 0, 3150, +3414, 0, 3142, +3414, 0, 3132, +3414, 0, 3117, +3414, 0, 3097, +3414, 0, 3069, +3414, 0, 3027, +3414, 0, 2966, +3414, 0, 2867, +3414, 0, 2691, +3414, 0, 2234, +3414, 0, 0, +3414, 0, 0, +3414, 2765, 0, +3546, 3271, 0, +3679, 3563, 0, +3811, 3785, 0, +3910, 3944, 0, +3993, 4076, 0, +4085, 4095, 0, +3548, 0, 3294, +3548, 0, 3294, +3548, 0, 3294, +3548, 0, 3294, +3548, 0, 3293, +3548, 0, 3293, +3548, 0, 3292, +3548, 0, 3292, +3548, 0, 3291, +3547, 0, 3289, +3547, 0, 3287, +3547, 0, 3285, +3546, 0, 3281, +3546, 0, 3275, +3546, 0, 3268, +3546, 0, 3257, +3546, 0, 3242, +3546, 0, 3221, +3546, 0, 3192, +3546, 0, 3151, +3546, 0, 3087, +3546, 0, 2987, +3546, 0, 2804, +3546, 0, 2311, +3546, 0, 0, +3546, 0, 0, +3546, 2891, 0, +3679, 3401, 0, +3811, 3694, 0, +3944, 3917, 0, +4043, 4076, 0, +4095, 4095, 0, +3680, 0, 3422, +3680, 0, 3422, +3680, 0, 3422, +3680, 0, 3422, +3680, 0, 3422, +3680, 0, 3421, +3680, 0, 3421, +3680, 0, 3420, +3680, 0, 3420, +3680, 0, 3418, +3679, 0, 3417, +3679, 0, 3415, +3679, 0, 3413, +3679, 0, 3408, +3679, 0, 3402, +3679, 0, 3394, +3679, 0, 3384, +3679, 0, 3368, +3679, 0, 3348, +3679, 0, 3318, +3679, 0, 3276, +3679, 0, 3212, +3679, 0, 3110, +3679, 0, 2922, +3679, 0, 2400, +3679, 0, 0, +3679, 0, 0, +3679, 3018, 0, +3811, 3532, 0, +3944, 3825, 0, +4076, 4048, 0, +4095, 4095, 0, +3812, 0, 3552, +3812, 0, 3551, +3812, 0, 3551, +3812, 0, 3551, +3812, 0, 3551, +3812, 0, 3551, +3812, 0, 3550, +3812, 0, 3550, +3812, 0, 3549, +3812, 0, 3548, +3812, 0, 3547, +3812, 0, 3546, +3811, 0, 3544, +3811, 0, 3541, +3811, 0, 3536, +3811, 0, 3530, +3811, 0, 3522, +3811, 0, 3511, +3811, 0, 3496, +3811, 0, 3475, +3811, 0, 3446, +3811, 0, 3403, +3811, 0, 3338, +3811, 0, 3234, +3811, 0, 3043, +3811, 0, 2494, +3811, 0, 0, +3811, 0, 0, +3811, 3147, 0, +3944, 3663, 0, +4076, 3956, 0, +4095, 4095, 0, +3944, 0, 3681, +3944, 0, 3681, +3944, 0, 3681, +3944, 0, 3681, +3944, 0, 3681, +3944, 0, 3681, +3944, 0, 3680, +3944, 0, 3680, +3944, 0, 3680, +3944, 0, 3679, +3944, 0, 3678, +3944, 0, 3677, +3944, 0, 3676, +3944, 0, 3673, +3944, 0, 3670, +3944, 0, 3666, +3944, 0, 3659, +3944, 0, 3651, +3944, 0, 3640, +3944, 0, 3625, +3944, 0, 3604, +3944, 0, 3574, +3944, 0, 3531, +3944, 0, 3466, +3944, 0, 3361, +3944, 0, 3166, +3944, 0, 2596, +3944, 0, 0, +3944, 0, 0, +3944, 3277, 0, +4076, 3794, 0, +4095, 4088, 0, +4076, 0, 3812, +4076, 0, 3811, +4076, 0, 3811, +4076, 0, 3811, +4076, 0, 3811, +4076, 0, 3811, +4076, 0, 3811, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3810, +4076, 0, 3809, +4076, 0, 3808, +4076, 0, 3807, +4076, 0, 3805, +4076, 0, 3803, +4076, 0, 3800, +4076, 0, 3795, +4076, 0, 3789, +4076, 0, 3781, +4076, 0, 3770, +4076, 0, 3755, +4076, 0, 3734, +4076, 0, 3703, +4076, 0, 3660, +4076, 0, 3594, +4076, 0, 3488, +4076, 0, 3291, +4076, 0, 2703, +4076, 0, 0, +4076, 0, 0, +4076, 3407, 0, +4095, 3926, 0, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3942, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3940, +4095, 0, 3939, +4095, 0, 3938, +4095, 0, 3936, +4095, 0, 3934, +4095, 0, 3930, +4095, 0, 3926, +4095, 0, 3920, +4095, 0, 3912, +4095, 0, 3901, +4095, 0, 3885, +4095, 0, 3864, +4095, 0, 3834, +4095, 0, 3790, +4095, 0, 3724, +4095, 0, 3617, +4095, 0, 3419, +4095, 0, 2818, +4095, 0, 0, +4095, 0, 0, +4095, 3538, 0, +0, 1565, 1828, +0, 1572, 1828, +0, 1582, 1828, +0, 1596, 1828, +0, 1612, 1828, +0, 1634, 1828, +0, 1661, 1828, +0, 1696, 1828, +0, 1738, 1828, +0, 1789, 1828, +0, 1828, 1807, +0, 1828, 1716, +0, 1828, 1557, +0, 1828, 1180, +0, 1961, 0, +0, 2094, 0, +907, 2226, 0, +1580, 2358, 0, +1903, 2491, 0, +2138, 2623, 0, +2335, 2755, 0, +2510, 2887, 0, +2672, 3019, 0, +2825, 3152, 0, +2972, 3284, 0, +3115, 3416, 0, +3255, 3548, 0, +3393, 3680, 0, +3530, 3812, 0, +3665, 3944, 0, +3799, 4076, 0, +3933, 4095, 0, +0, 1557, 1828, +0, 1566, 1828, +0, 1576, 1828, +0, 1590, 1828, +0, 1607, 1828, +0, 1629, 1828, +0, 1656, 1828, +0, 1691, 1828, +0, 1733, 1828, +0, 1785, 1828, +0, 1828, 1810, +0, 1828, 1719, +0, 1828, 1560, +0, 1828, 1188, +0, 1961, 0, +0, 2093, 0, +944, 2226, 0, +1589, 2358, 0, +1907, 2491, 0, +2141, 2623, 0, +2337, 2755, 0, +2511, 2887, 0, +2672, 3019, 0, +2825, 3152, 0, +2972, 3283, 0, +3115, 3416, 0, +3255, 3548, 0, +3393, 3680, 0, +3530, 3812, 0, +3665, 3944, 0, +3799, 4076, 0, +3933, 4095, 0, +0, 1547, 1828, +0, 1556, 1828, +0, 1568, 1827, +0, 1582, 1827, +0, 1599, 1827, +0, 1621, 1827, +0, 1650, 1827, +0, 1684, 1827, +0, 1727, 1827, +0, 1779, 1827, +0, 1827, 1812, +0, 1827, 1722, +0, 1827, 1565, +0, 1827, 1198, +0, 1960, 0, +0, 2093, 0, +990, 2225, 0, +1600, 2358, 0, +1913, 2490, 0, +2144, 2623, 0, +2339, 2755, 0, +2513, 2887, 0, +2673, 3019, 0, +2826, 3152, 0, +2973, 3283, 0, +3115, 3416, 0, +3256, 3548, 0, +3393, 3680, 0, +3530, 3812, 0, +3665, 3944, 0, +3799, 4076, 0, +3933, 4095, 0, +0, 1532, 1828, +0, 1542, 1828, +0, 1554, 1827, +0, 1571, 1825, +0, 1588, 1825, +0, 1611, 1825, +0, 1640, 1825, +0, 1676, 1825, +0, 1720, 1825, +0, 1772, 1825, +0, 1825, 1816, +0, 1825, 1727, +0, 1825, 1571, +0, 1825, 1212, +0, 1959, 0, +0, 2092, 0, +1044, 2225, 0, +1615, 2357, 0, +1920, 2490, 0, +2149, 2622, 0, +2342, 2755, 0, +2515, 2887, 0, +2675, 3019, 0, +2827, 3151, 0, +2973, 3283, 0, +3116, 3416, 0, +3256, 3548, 0, +3394, 3680, 0, +3530, 3812, 0, +3665, 3944, 0, +3799, 4076, 0, +3933, 4095, 0, +0, 1512, 1828, +0, 1522, 1828, +0, 1535, 1827, +0, 1552, 1825, +0, 1574, 1823, +0, 1598, 1823, +0, 1627, 1823, +0, 1664, 1823, +0, 1709, 1823, +0, 1763, 1823, +0, 1823, 1821, +0, 1823, 1732, +0, 1823, 1579, +0, 1823, 1230, +0, 1958, 0, +0, 2091, 0, +1108, 2224, 0, +1634, 2357, 0, +1930, 2489, 0, +2155, 2622, 0, +2346, 2755, 0, +2517, 2887, 0, +2677, 3019, 0, +2829, 3151, 0, +2974, 3283, 0, +3117, 3416, 0, +3256, 3548, 0, +3394, 3680, 0, +3530, 3812, 0, +3665, 3944, 0, +3800, 4076, 0, +3934, 4095, 0, +0, 1484, 1828, +0, 1494, 1828, +0, 1508, 1827, +0, 1526, 1825, +0, 1549, 1823, +0, 1579, 1821, +0, 1609, 1821, +0, 1648, 1821, +0, 1694, 1821, +0, 1750, 1821, +0, 1815, 1821, +0, 1821, 1740, +0, 1821, 1590, +0, 1821, 1253, +0, 1956, 0, +0, 2089, 0, +1181, 2223, 0, +1659, 2356, 0, +1943, 2489, 0, +2163, 2621, 0, +2351, 2754, 0, +2521, 2887, 0, +2679, 3019, 0, +2830, 3151, 0, +2976, 3283, 0, +3118, 3416, 0, +3257, 3548, 0, +3395, 3680, 0, +3531, 3812, 0, +3666, 3944, 0, +3800, 4076, 0, +3934, 4095, 0, +0, 1442, 1828, +0, 1454, 1828, +0, 1469, 1827, +0, 1489, 1825, +0, 1514, 1823, +0, 1545, 1821, +0, 1585, 1817, +0, 1625, 1817, +0, 1673, 1817, +0, 1732, 1817, +0, 1799, 1817, +0, 1817, 1750, +0, 1817, 1604, +0, 1817, 1281, +0, 1953, 0, +0, 2087, 0, +1264, 2221, 0, +1689, 2355, 0, +1960, 2488, 0, +2173, 2621, 0, +2358, 2754, 0, +2526, 2886, 0, +2683, 3018, 0, +2833, 3151, 0, +2977, 3283, 0, +3119, 3415, 0, +3258, 3548, 0, +3395, 3680, 0, +3531, 3812, 0, +3666, 3944, 0, +3800, 4076, 0, +3934, 4095, 0, +0, 1381, 1828, +0, 1394, 1828, +0, 1412, 1827, +0, 1434, 1825, +0, 1462, 1823, +0, 1497, 1821, +0, 1540, 1817, +0, 1592, 1813, +0, 1644, 1813, +0, 1706, 1813, +0, 1777, 1813, +0, 1813, 1763, +0, 1813, 1622, +0, 1813, 1317, +0, 1950, 0, +10, 2085, 0, +1355, 2220, 0, +1727, 2353, 0, +1981, 2487, 0, +2187, 2620, 0, +2367, 2753, 0, +2532, 2886, 0, +2687, 3018, 0, +2836, 3151, 0, +2980, 3283, 0, +3121, 3415, 0, +3259, 3548, 0, +3396, 3680, 0, +3532, 3812, 0, +3666, 3944, 0, +3801, 4076, 0, +3934, 4095, 0, +0, 1283, 1828, +0, 1300, 1828, +0, 1321, 1827, +0, 1348, 1825, +0, 1382, 1823, +0, 1423, 1821, +0, 1474, 1817, +0, 1533, 1813, +0, 1602, 1807, +0, 1669, 1807, +0, 1746, 1807, +0, 1807, 1780, +0, 1807, 1644, +0, 1807, 1360, +0, 1945, 37, +800, 2082, 0, +1454, 2217, 0, +1773, 2352, 0, +2008, 2486, 0, +2204, 2619, 0, +2379, 2752, 0, +2540, 2885, 0, +2693, 3018, 0, +2840, 3151, 0, +2983, 3283, 0, +3123, 3415, 0, +3261, 3548, 0, +3397, 3680, 0, +3533, 3812, 0, +3667, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 1106, 1828, +0, 1131, 1828, +0, 1161, 1827, +0, 1199, 1825, +0, 1245, 1823, +0, 1301, 1821, +0, 1366, 1817, +0, 1440, 1813, +0, 1523, 1807, +740, 1615, 1798, +740, 1701, 1798, +740, 1795, 1798, +740, 1798, 1673, +740, 1798, 1413, +0, 1939, 573, +1138, 2077, 0, +1560, 2214, 0, +1829, 2349, 0, +2042, 2484, 0, +2226, 2618, 0, +2394, 2751, 0, +2551, 2885, 0, +2701, 3017, 0, +2846, 3150, 0, +2987, 3282, 0, +3126, 3415, 0, +3263, 3547, 0, +3399, 3680, 0, +3534, 3812, 0, +3668, 3944, 0, +3802, 4076, 0, +3935, 4095, 0, +0, 650, 1828, +0, 713, 1828, +0, 786, 1827, +0, 869, 1825, +0, 960, 1823, +0, 1059, 1821, +0, 1164, 1817, +0, 1275, 1813, +0, 1391, 1807, +740, 1510, 1798, +1090, 1633, 1787, +1090, 1740, 1787, +1090, 1787, 1709, +1090, 1787, 1475, +873, 1930, 872, +1379, 2071, 79, +1671, 2209, 0, +1894, 2346, 0, +2084, 2481, 0, +2255, 2616, 0, +2414, 2750, 0, +2565, 2883, 0, +2711, 3016, 0, +2853, 3150, 0, +2992, 3282, 0, +3130, 3414, 0, +3266, 3547, 0, +3401, 3679, 0, +3536, 3812, 0, +3669, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 0, 1828, +0, 0, 1828, +0, 0, 1827, +0, 0, 1825, +0, 0, 1823, +0, 0, 1821, +0, 536, 1817, +0, 874, 1813, +0, 1115, 1807, +740, 1315, 1798, +1090, 1491, 1787, +1337, 1654, 1771, +1337, 1771, 1754, +1337, 1771, 1546, +1321, 1919, 1223, +1579, 2062, 1005, +1787, 2203, 217, +1968, 2341, 0, +2134, 2478, 0, +2290, 2613, 0, +2439, 2748, 0, +2583, 2882, 0, +2724, 3015, 0, +2863, 3149, 0, +2999, 3281, 0, +3135, 3414, 0, +3270, 3547, 0, +3404, 3679, 0, +3538, 3812, 0, +3671, 3944, 0, +3804, 4076, 0, +3937, 4095, 0, +0, 0, 1828, +0, 0, 1828, +0, 0, 1827, +0, 0, 1825, +0, 0, 1823, +0, 0, 1821, +0, 0, 1817, +0, 0, 1813, +438, 0, 1807, +740, 742, 1798, +1090, 1189, 1787, +1337, 1466, 1771, +1539, 1682, 1748, +1539, 1748, 1627, +1598, 1903, 1469, +1756, 2051, 1355, +1906, 2194, 1136, +2052, 2335, 345, +2194, 2473, 0, +2333, 2610, 0, +2470, 2746, 0, +2606, 2880, 0, +2741, 3014, 0, +2875, 3148, 0, +3009, 3280, 0, +3142, 3414, 0, +3275, 3546, 0, +3408, 3679, 0, +3541, 3811, 0, +3673, 3944, 0, +3805, 4076, 0, +3938, 4095, 0, +1180, 0, 1828, +1188, 0, 1828, +1198, 0, 1827, +1212, 0, 1825, +1230, 0, 1823, +1253, 0, 1821, +1281, 0, 1817, +1317, 0, 1813, +1360, 0, 1807, +1413, 740, 1798, +1475, 1090, 1787, +1546, 1337, 1771, +1627, 1539, 1748, +1717, 1717, 1717, +1814, 1880, 1671, +1919, 2035, 1601, +2029, 2183, 1487, +2144, 2326, 1269, +2263, 2467, 477, +2385, 2605, 0, +2509, 2742, 0, +2636, 2878, 0, +2763, 3012, 0, +2892, 3146, 0, +3021, 3280, 0, +3151, 3413, 0, +3282, 3546, 0, +3413, 3678, 0, +3545, 3811, 0, +3676, 3943, 0, +3808, 4076, 0, +3940, 4095, 0, +1686, 0, 1961, +1689, 0, 1961, +1692, 0, 1960, +1697, 0, 1959, +1703, 0, 1958, +1711, 0, 1956, +1722, 0, 1953, +1736, 0, 1950, +1754, 0, 1945, +1776, 0, 1939, +1805, 872, 1930, +1841, 1223, 1919, +1885, 1469, 1903, +1880, 1671, 1814, +1880, 1759, 1671, +2035, 2017, 1601, +2136, 2183, 1487, +2229, 2326, 1269, +2330, 2467, 477, +2437, 2605, 0, +2550, 2742, 0, +2666, 2878, 0, +2786, 3012, 0, +2910, 3146, 0, +3034, 3280, 0, +3162, 3413, 0, +3290, 3546, 0, +3419, 3678, 0, +3549, 3811, 0, +3679, 3943, 0, +3810, 4076, 0, +3941, 4095, 0, +1977, 0, 2094, +1979, 0, 2093, +1981, 0, 2093, +1983, 0, 2092, +1986, 0, 2091, +1991, 0, 2089, +1996, 0, 2087, +2004, 0, 2085, +2014, 0, 2082, +2027, 0, 2077, +2044, 79, 2071, +2062, 1005, 2059, +2051, 1355, 2004, +2035, 1601, 1919, +2035, 1601, 1730, +2035, 1811, 1601, +2183, 2105, 1487, +2323, 2326, 1269, +2407, 2467, 477, +2498, 2605, 0, +2598, 2742, 0, +2704, 2878, 0, +2816, 3012, 0, +2932, 3146, 0, +3052, 3280, 0, +3175, 3413, 0, +3300, 3546, 0, +3426, 3678, 0, +3554, 3811, 0, +3683, 3943, 0, +3813, 4076, 0, +3944, 4095, 0, +2200, 0, 2226, +2201, 0, 2226, +2202, 0, 2225, +2203, 0, 2225, +2206, 0, 2224, +2208, 0, 2223, +2212, 0, 2221, +2217, 0, 2220, +2217, 0, 2211, +2214, 0, 2195, +2209, 0, 2174, +2203, 217, 2142, +2194, 1136, 2097, +2183, 1487, 2029, +2183, 1487, 1888, +2183, 1487, 1585, +2183, 1871, 1487, +2326, 2202, 1269, +2467, 2440, 477, +2570, 2605, 0, +2656, 2742, 0, +2751, 2878, 0, +2853, 3012, 0, +2961, 3146, 0, +3074, 3280, 0, +3192, 3413, 0, +3313, 3546, 0, +3436, 3678, 0, +3562, 3811, 0, +3689, 3943, 0, +3817, 4076, 0, +3947, 4095, 0, +2358, 0, 2325, +2358, 0, 2324, +2358, 0, 2322, +2357, 0, 2320, +2357, 0, 2317, +2356, 0, 2313, +2355, 0, 2308, +2353, 0, 2301, +2352, 0, 2291, +2349, 0, 2278, +2346, 0, 2260, +2341, 0, 2234, +2335, 345, 2198, +2326, 1269, 2144, +2326, 1269, 2038, +2326, 1269, 1843, +2326, 1269, 1270, +2326, 1941, 1269, +2467, 2305, 477, +2605, 2556, 0, +2724, 2742, 0, +2807, 2878, 0, +2898, 3012, 0, +2997, 3146, 0, +3102, 3280, 0, +3214, 3413, 0, +3330, 3546, 0, +3449, 3678, 0, +3572, 3811, 0, +3697, 3943, 0, +3823, 4076, 0, +3951, 4095, 0, +2491, 0, 2408, +2491, 0, 2407, +2490, 0, 2406, +2490, 0, 2404, +2489, 0, 2401, +2489, 0, 2398, +2488, 0, 2394, +2487, 0, 2388, +2486, 0, 2380, +2484, 0, 2369, +2481, 0, 2355, +2478, 0, 2334, +2473, 0, 2305, +2467, 477, 2263, +2467, 477, 2184, +2467, 477, 2051, +2467, 477, 1776, +2467, 1099, 477, +2467, 2021, 477, +2605, 2414, 0, +2742, 2675, 0, +2872, 2878, 0, +2952, 3012, 0, +3041, 3146, 0, +3138, 3280, 0, +3242, 3413, 0, +3351, 3546, 0, +3466, 3678, 0, +3585, 3811, 0, +3706, 3943, 0, +3830, 4076, 0, +3957, 4095, 0, +2623, 0, 2500, +2623, 0, 2499, +2623, 0, 2498, +2622, 0, 2496, +2622, 0, 2494, +2621, 0, 2492, +2621, 0, 2488, +2620, 0, 2483, +2619, 0, 2477, +2618, 0, 2469, +2616, 0, 2456, +2613, 0, 2440, +2610, 0, 2417, +2605, 0, 2385, +2605, 0, 2326, +2605, 0, 2233, +2605, 0, 2067, +2605, 0, 1667, +2605, 705, 0, +2605, 2109, 0, +2742, 2529, 0, +2878, 2797, 0, +3012, 3009, 0, +3093, 3146, 0, +3180, 3280, 0, +3276, 3413, 0, +3379, 3546, 0, +3488, 3678, 0, +3601, 3811, 0, +3719, 3943, 0, +3840, 4076, 0, +3964, 4095, 0, +2755, 0, 2599, +2755, 0, 2598, +2755, 0, 2598, +2755, 0, 2596, +2755, 0, 2595, +2754, 0, 2593, +2754, 0, 2590, +2753, 0, 2586, +2752, 0, 2581, +2751, 0, 2574, +2750, 0, 2565, +2748, 0, 2552, +2746, 0, 2534, +2742, 0, 2509, +2742, 0, 2465, +2742, 0, 2398, +2742, 0, 2291, +2742, 0, 2089, +2742, 0, 1463, +2742, 0, 0, +2742, 2206, 0, +2878, 2647, 0, +3012, 2921, 0, +3146, 3137, 0, +3233, 3280, 0, +3319, 3413, 0, +3413, 3546, 0, +3515, 3678, 0, +3622, 3811, 0, +3736, 3943, 0, +3853, 4076, 0, +3974, 4095, 0, +2887, 0, 2705, +2887, 0, 2705, +2887, 0, 2704, +2887, 0, 2703, +2887, 0, 2702, +2887, 0, 2700, +2886, 0, 2698, +2886, 0, 2695, +2885, 0, 2691, +2885, 0, 2685, +2883, 0, 2678, +2882, 0, 2668, +2880, 0, 2654, +2878, 0, 2636, +2878, 0, 2602, +2878, 0, 2554, +2878, 0, 2480, +2878, 0, 2358, +2878, 0, 2115, +2878, 0, 817, +2878, 0, 0, +2878, 2309, 0, +3012, 2767, 0, +3146, 3047, 0, +3280, 3265, 0, +3370, 3413, 0, +3455, 3546, 0, +3548, 3678, 0, +3650, 3811, 0, +3757, 3943, 0, +3869, 4076, 0, +3986, 4095, 0, +3019, 0, 2816, +3019, 0, 2816, +3019, 0, 2816, +3019, 0, 2815, +3019, 0, 2814, +3019, 0, 2813, +3018, 0, 2811, +3018, 0, 2808, +3018, 0, 2805, +3017, 0, 2801, +3016, 0, 2796, +3015, 0, 2788, +3014, 0, 2777, +3012, 0, 2763, +3012, 0, 2738, +3012, 0, 2703, +3012, 0, 2651, +3012, 0, 2570, +3012, 0, 2434, +3012, 0, 2148, +3012, 0, 0, +3012, 0, 0, +3012, 2419, 0, +3146, 2892, 0, +3280, 3175, 0, +3413, 3395, 0, +3506, 3546, 0, +3590, 3678, 0, +3683, 3811, 0, +3784, 3943, 0, +3890, 4076, 0, +4003, 4095, 0, +3152, 0, 2933, +3152, 0, 2932, +3152, 0, 2932, +3151, 0, 2932, +3151, 0, 2931, +3151, 0, 2930, +3151, 0, 2928, +3151, 0, 2927, +3151, 0, 2924, +3150, 0, 2921, +3150, 0, 2917, +3149, 0, 2911, +3148, 0, 2903, +3146, 0, 2892, +3146, 0, 2873, +3146, 0, 2847, +3146, 0, 2810, +3146, 0, 2755, +3146, 0, 2669, +3146, 0, 2521, +3146, 0, 2189, +3146, 0, 0, +3146, 0, 0, +3146, 2533, 0, +3280, 3017, 0, +3413, 3304, 0, +3546, 3525, 0, +3641, 3678, 0, +3725, 3811, 0, +3817, 3943, 0, +3917, 4076, 0, +4024, 4095, 0, +3284, 0, 3052, +3283, 0, 3052, +3283, 0, 3052, +3283, 0, 3051, +3283, 0, 3051, +3283, 0, 3050, +3283, 0, 3049, +3283, 0, 3047, +3283, 0, 3046, +3282, 0, 3043, +3282, 0, 3040, +3281, 0, 3035, +3280, 0, 3029, +3280, 0, 3021, +3280, 0, 3007, +3280, 0, 2988, +3280, 0, 2961, +3280, 0, 2922, +3280, 0, 2865, +3280, 0, 2773, +3280, 0, 2613, +3280, 0, 2237, +3280, 0, 0, +3280, 0, 0, +3280, 2651, 0, +3413, 3145, 0, +3546, 3434, 0, +3678, 3655, 0, +3775, 3811, 0, +3859, 3943, 0, +3950, 4076, 0, +4051, 4095, 0, +3416, 0, 3175, +3416, 0, 3175, +3416, 0, 3175, +3416, 0, 3174, +3416, 0, 3174, +3416, 0, 3173, +3415, 0, 3173, +3415, 0, 3171, +3415, 0, 3170, +3415, 0, 3168, +3414, 0, 3165, +3414, 0, 3162, +3414, 0, 3158, +3413, 0, 3151, +3413, 0, 3141, +3413, 0, 3127, +3413, 0, 3107, +3413, 0, 3079, +3413, 0, 3039, +3413, 0, 2979, +3413, 0, 2884, +3413, 0, 2715, +3413, 0, 2298, +3413, 0, 0, +3413, 0, 0, +3413, 2773, 0, +3546, 3274, 0, +3678, 3564, 0, +3811, 3786, 0, +3909, 3943, 0, +3992, 4076, 0, +4084, 4095, 0, +3548, 0, 3300, +3548, 0, 3300, +3548, 0, 3300, +3548, 0, 3299, +3548, 0, 3299, +3548, 0, 3299, +3548, 0, 3298, +3548, 0, 3297, +3548, 0, 3296, +3547, 0, 3295, +3547, 0, 3293, +3547, 0, 3290, +3546, 0, 3287, +3546, 0, 3282, +3546, 0, 3275, +3546, 0, 3264, +3546, 0, 3249, +3546, 0, 3229, +3546, 0, 3201, +3546, 0, 3160, +3546, 0, 3098, +3546, 0, 3000, +3546, 0, 2824, +3546, 0, 2365, +3546, 0, 0, +3546, 0, 0, +3546, 2897, 0, +3678, 3403, 0, +3811, 3695, 0, +3943, 3917, 0, +4042, 4076, 0, +4095, 4095, 0, +3680, 0, 3427, +3680, 0, 3426, +3680, 0, 3426, +3680, 0, 3426, +3680, 0, 3426, +3680, 0, 3426, +3680, 0, 3425, +3680, 0, 3425, +3680, 0, 3424, +3680, 0, 3423, +3679, 0, 3421, +3679, 0, 3419, +3679, 0, 3417, +3678, 0, 3413, +3678, 0, 3407, +3678, 0, 3400, +3678, 0, 3389, +3678, 0, 3374, +3678, 0, 3354, +3678, 0, 3325, +3678, 0, 3282, +3678, 0, 3220, +3678, 0, 3119, +3678, 0, 2936, +3678, 0, 2445, +3678, 0, 0, +3678, 0, 0, +3678, 3023, 0, +3811, 3534, 0, +3943, 3826, 0, +4076, 4049, 0, +4095, 4095, 0, +3812, 0, 3554, +3812, 0, 3554, +3812, 0, 3554, +3812, 0, 3554, +3812, 0, 3554, +3812, 0, 3554, +3812, 0, 3553, +3812, 0, 3553, +3812, 0, 3552, +3812, 0, 3552, +3812, 0, 3551, +3812, 0, 3549, +3811, 0, 3547, +3811, 0, 3545, +3811, 0, 3540, +3811, 0, 3534, +3811, 0, 3526, +3811, 0, 3516, +3811, 0, 3501, +3811, 0, 3480, +3811, 0, 3450, +3811, 0, 3408, +3811, 0, 3344, +3811, 0, 3241, +3811, 0, 3054, +3811, 0, 2531, +3811, 0, 0, +3811, 0, 0, +3811, 3151, 0, +3943, 3664, 0, +4076, 3957, 0, +4095, 4095, 0, +3944, 0, 3683, +3944, 0, 3683, +3944, 0, 3683, +3944, 0, 3683, +3944, 0, 3683, +3944, 0, 3683, +3944, 0, 3683, +3944, 0, 3682, +3944, 0, 3682, +3944, 0, 3681, +3944, 0, 3680, +3944, 0, 3679, +3944, 0, 3678, +3943, 0, 3676, +3943, 0, 3673, +3943, 0, 3668, +3943, 0, 3662, +3943, 0, 3655, +3943, 0, 3644, +3943, 0, 3628, +3943, 0, 3607, +3943, 0, 3578, +3943, 0, 3535, +3943, 0, 3470, +3943, 0, 3366, +3943, 0, 3175, +3943, 0, 2625, +3943, 0, 0, +3943, 0, 0, +3943, 3279, 0, +4076, 3795, 0, +4095, 4089, 0, +4076, 0, 3813, +4076, 0, 3813, +4076, 0, 3813, +4076, 0, 3813, +4076, 0, 3813, +4076, 0, 3813, +4076, 0, 3812, +4076, 0, 3812, +4076, 0, 3812, +4076, 0, 3812, +4076, 0, 3811, +4076, 0, 3810, +4076, 0, 3809, +4076, 0, 3808, +4076, 0, 3805, +4076, 0, 3802, +4076, 0, 3798, +4076, 0, 3792, +4076, 0, 3784, +4076, 0, 3773, +4076, 0, 3757, +4076, 0, 3736, +4076, 0, 3706, +4076, 0, 3663, +4076, 0, 3597, +4076, 0, 3492, +4076, 0, 3297, +4076, 0, 2726, +4076, 0, 0, +4076, 0, 0, +4076, 3409, 0, +4095, 3927, 0, +4095, 0, 3944, +4095, 0, 3944, +4095, 0, 3944, +4095, 0, 3944, +4095, 0, 3944, +4095, 0, 3944, +4095, 0, 3943, +4095, 0, 3943, +4095, 0, 3943, +4095, 0, 3943, +4095, 0, 3942, +4095, 0, 3941, +4095, 0, 3941, +4095, 0, 3940, +4095, 0, 3938, +4095, 0, 3935, +4095, 0, 3932, +4095, 0, 3927, +4095, 0, 3922, +4095, 0, 3913, +4095, 0, 3903, +4095, 0, 3887, +4095, 0, 3866, +4095, 0, 3836, +4095, 0, 3792, +4095, 0, 3727, +4095, 0, 3621, +4095, 0, 3424, +4095, 0, 2837, +4095, 0, 0, +4095, 0, 0, +4095, 3539, 0, +0, 1696, 1961, +0, 1702, 1961, +0, 1709, 1961, +0, 1719, 1961, +0, 1732, 1961, +0, 1749, 1961, +0, 1770, 1961, +0, 1797, 1961, +0, 1831, 1961, +0, 1873, 1961, +0, 1923, 1961, +0, 1961, 1938, +0, 1961, 1847, +0, 1961, 1686, +0, 1961, 1306, +0, 2094, 0, +0, 2226, 0, +1009, 2358, 0, +1706, 2491, 0, +2032, 2623, 0, +2269, 2755, 0, +2466, 2887, 0, +2641, 3019, 0, +2803, 3152, 0, +2956, 3284, 0, +3104, 3416, 0, +3247, 3548, 0, +3387, 3680, 0, +3525, 3812, 0, +3661, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1690, 1961, +0, 1697, 1961, +0, 1705, 1961, +0, 1715, 1961, +0, 1728, 1961, +0, 1745, 1961, +0, 1766, 1961, +0, 1793, 1961, +0, 1828, 1961, +0, 1870, 1961, +0, 1920, 1961, +0, 1961, 1940, +0, 1961, 1849, +0, 1961, 1689, +0, 1961, 1312, +0, 2093, 0, +0, 2226, 0, +1039, 2358, 0, +1713, 2491, 0, +2035, 2623, 0, +2271, 2755, 0, +2467, 2887, 0, +2642, 3019, 0, +2804, 3152, 0, +2957, 3283, 0, +3104, 3416, 0, +3247, 3548, 0, +3387, 3680, 0, +3525, 3812, 0, +3662, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1682, 1961, +0, 1689, 1961, +0, 1699, 1960, +0, 1708, 1960, +0, 1722, 1960, +0, 1739, 1960, +0, 1761, 1960, +0, 1789, 1960, +0, 1823, 1960, +0, 1865, 1960, +0, 1917, 1960, +0, 1960, 1941, +0, 1960, 1851, +0, 1960, 1692, +0, 1960, 1320, +0, 2093, 0, +0, 2225, 0, +1076, 2358, 0, +1722, 2490, 0, +2039, 2623, 0, +2274, 2755, 0, +2469, 2887, 0, +2643, 3019, 0, +2805, 3152, 0, +2957, 3283, 0, +3104, 3416, 0, +3247, 3548, 0, +3387, 3680, 0, +3525, 3812, 0, +3662, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1672, 1961, +0, 1679, 1961, +0, 1688, 1960, +0, 1700, 1959, +0, 1714, 1959, +0, 1731, 1959, +0, 1754, 1959, +0, 1781, 1959, +0, 1817, 1959, +0, 1860, 1959, +0, 1911, 1959, +0, 1959, 1944, +0, 1959, 1854, +0, 1959, 1697, +0, 1959, 1331, +0, 2092, 0, +0, 2225, 0, +1122, 2357, 0, +1733, 2490, 0, +2045, 2622, 0, +2277, 2755, 0, +2471, 2887, 0, +2645, 3019, 0, +2806, 3151, 0, +2958, 3283, 0, +3105, 3416, 0, +3248, 3548, 0, +3388, 3680, 0, +3526, 3812, 0, +3662, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1657, 1961, +0, 1664, 1961, +0, 1674, 1960, +0, 1686, 1959, +0, 1703, 1958, +0, 1721, 1958, +0, 1743, 1958, +0, 1772, 1958, +0, 1808, 1958, +0, 1852, 1958, +0, 1905, 1958, +0, 1958, 1948, +0, 1958, 1859, +0, 1958, 1703, +0, 1958, 1344, +0, 2091, 0, +0, 2224, 0, +1176, 2357, 0, +1748, 2489, 0, +2052, 2622, 0, +2281, 2755, 0, +2474, 2887, 0, +2647, 3019, 0, +2807, 3151, 0, +2959, 3283, 0, +3106, 3416, 0, +3248, 3548, 0, +3388, 3680, 0, +3526, 3812, 0, +3662, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1636, 1961, +0, 1644, 1961, +0, 1654, 1960, +0, 1667, 1959, +0, 1684, 1958, +0, 1706, 1956, +0, 1730, 1956, +0, 1759, 1956, +0, 1796, 1956, +0, 1841, 1956, +0, 1895, 1956, +0, 1956, 1953, +0, 1956, 1865, +0, 1956, 1711, +0, 1956, 1362, +0, 2089, 0, +0, 2223, 0, +1240, 2356, 0, +1767, 2489, 0, +2062, 2621, 0, +2287, 2754, 0, +2478, 2887, 0, +2649, 3019, 0, +2809, 3151, 0, +2960, 3283, 0, +3106, 3416, 0, +3249, 3548, 0, +3388, 3680, 0, +3526, 3812, 0, +3662, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1607, 1961, +0, 1615, 1961, +0, 1626, 1960, +0, 1640, 1959, +0, 1658, 1958, +0, 1681, 1956, +0, 1711, 1953, +0, 1742, 1953, +0, 1779, 1953, +0, 1826, 1953, +0, 1882, 1953, +0, 1947, 1953, +0, 1953, 1872, +0, 1953, 1722, +0, 1953, 1385, +0, 2087, 0, +0, 2221, 0, +1313, 2355, 0, +1791, 2488, 0, +2075, 2621, 0, +2295, 2754, 0, +2483, 2886, 0, +2653, 3018, 0, +2812, 3151, 0, +2962, 3283, 0, +3108, 3415, 0, +3250, 3548, 0, +3389, 3680, 0, +3527, 3812, 0, +3663, 3944, 0, +3798, 4076, 0, +3932, 4095, 0, +0, 1565, 1961, +0, 1574, 1961, +0, 1586, 1960, +0, 1601, 1959, +0, 1621, 1958, +0, 1646, 1956, +0, 1678, 1953, +0, 1716, 1950, +0, 1757, 1950, +0, 1806, 1950, +0, 1864, 1950, +0, 1931, 1950, +0, 1950, 1882, +0, 1950, 1736, +0, 1950, 1413, +0, 2085, 0, +0, 2220, 0, +1396, 2353, 0, +1822, 2487, 0, +2092, 2620, 0, +2305, 2753, 0, +2490, 2886, 0, +2658, 3018, 0, +2815, 3151, 0, +2965, 3283, 0, +3110, 3415, 0, +3251, 3548, 0, +3390, 3680, 0, +3528, 3812, 0, +3663, 3944, 0, +3798, 4076, 0, +3932, 4095, 0, +0, 1503, 1961, +0, 1513, 1961, +0, 1526, 1960, +0, 1544, 1959, +0, 1566, 1958, +0, 1594, 1956, +0, 1629, 1953, +0, 1672, 1950, +0, 1724, 1945, +0, 1776, 1945, +0, 1838, 1945, +0, 1909, 1945, +0, 1945, 1895, +0, 1945, 1754, +0, 1945, 1449, +0, 2082, 0, +140, 2217, 0, +1487, 2352, 0, +1859, 2486, 0, +2113, 2619, 0, +2319, 2752, 0, +2499, 2885, 0, +2664, 3018, 0, +2819, 3151, 0, +2968, 3283, 0, +3112, 3415, 0, +3253, 3548, 0, +3392, 3680, 0, +3528, 3812, 0, +3664, 3944, 0, +3798, 4076, 0, +3933, 4095, 0, +0, 1402, 1961, +0, 1415, 1961, +0, 1431, 1960, +0, 1453, 1959, +0, 1480, 1958, +0, 1514, 1956, +0, 1555, 1953, +0, 1606, 1950, +0, 1665, 1945, +0, 1734, 1939, +0, 1801, 1939, +0, 1878, 1939, +0, 1939, 1912, +0, 1939, 1776, +0, 1939, 1492, +0, 2077, 173, +932, 2214, 0, +1586, 2349, 0, +1906, 2484, 0, +2140, 2618, 0, +2336, 2751, 0, +2511, 2885, 0, +2672, 3017, 0, +2825, 3150, 0, +2972, 3282, 0, +3115, 3415, 0, +3255, 3547, 0, +3393, 3680, 0, +3530, 3812, 0, +3665, 3944, 0, +3799, 4076, 0, +3933, 4095, 0, +0, 1220, 1961, +0, 1238, 1961, +0, 1263, 1960, +0, 1294, 1959, +0, 1332, 1958, +0, 1378, 1956, +0, 1433, 1953, +0, 1498, 1950, +0, 1572, 1945, +0, 1655, 1939, +872, 1748, 1930, +872, 1833, 1930, +872, 1927, 1930, +872, 1930, 1805, +872, 1930, 1545, +79, 2071, 706, +1270, 2209, 0, +1692, 2346, 0, +1961, 2481, 0, +2174, 2616, 0, +2359, 2750, 0, +2526, 2883, 0, +2683, 3016, 0, +2833, 3150, 0, +2977, 3282, 0, +3119, 3414, 0, +3258, 3547, 0, +3395, 3679, 0, +3531, 3812, 0, +3666, 3944, 0, +3800, 4076, 0, +3934, 4095, 0, +0, 726, 1961, +0, 780, 1961, +0, 844, 1960, +0, 917, 1959, +0, 1000, 1958, +0, 1091, 1956, +0, 1190, 1953, +0, 1295, 1950, +0, 1407, 1945, +0, 1523, 1939, +872, 1642, 1930, +1223, 1765, 1919, +1223, 1872, 1919, +1223, 1919, 1841, +1223, 1919, 1607, +1006, 2062, 1005, +1512, 2203, 217, +1803, 2341, 0, +2026, 2478, 0, +2216, 2613, 0, +2387, 2748, 0, +2546, 2882, 0, +2697, 3015, 0, +2843, 3149, 0, +2985, 3281, 0, +3125, 3414, 0, +3262, 3547, 0, +3398, 3679, 0, +3533, 3812, 0, +3668, 3944, 0, +3801, 4076, 0, +3935, 4095, 0, +0, 0, 1961, +0, 0, 1961, +0, 0, 1960, +0, 0, 1959, +0, 0, 1958, +0, 0, 1956, +0, 0, 1953, +0, 670, 1950, +0, 1007, 1945, +0, 1248, 1939, +872, 1447, 1930, +1223, 1624, 1919, +1469, 1787, 1903, +1469, 1903, 1885, +1469, 1903, 1678, +1453, 2051, 1355, +1711, 2194, 1136, +1919, 2335, 345, +2100, 2473, 0, +2266, 2610, 0, +2422, 2746, 0, +2571, 2880, 0, +2715, 3014, 0, +2856, 3148, 0, +2995, 3280, 0, +3132, 3414, 0, +3268, 3546, 0, +3402, 3679, 0, +3536, 3811, 0, +3670, 3944, 0, +3803, 4076, 0, +3936, 4095, 0, +0, 0, 1961, +0, 0, 1961, +0, 0, 1960, +0, 0, 1959, +0, 0, 1958, +0, 0, 1956, +0, 0, 1953, +0, 0, 1950, +37, 0, 1945, +573, 0, 1939, +872, 873, 1930, +1223, 1321, 1919, +1469, 1598, 1903, +1671, 1814, 1880, +1671, 1880, 1759, +1730, 2035, 1601, +1888, 2183, 1487, +2038, 2326, 1269, +2184, 2467, 477, +2326, 2605, 0, +2465, 2742, 0, +2602, 2878, 0, +2738, 3012, 0, +2873, 3146, 0, +3007, 3280, 0, +3141, 3413, 0, +3275, 3546, 0, +3407, 3678, 0, +3540, 3811, 0, +3673, 3943, 0, +3805, 4076, 0, +3938, 4095, 0, +1306, 0, 1961, +1312, 0, 1961, +1320, 0, 1960, +1331, 0, 1959, +1344, 0, 1958, +1362, 0, 1956, +1385, 0, 1953, +1413, 0, 1950, +1449, 0, 1945, +1492, 0, 1939, +1545, 872, 1930, +1607, 1223, 1919, +1678, 1469, 1903, +1759, 1671, 1880, +1849, 1849, 1849, +1946, 2013, 1803, +2051, 2167, 1733, +2161, 2315, 1619, +2276, 2459, 1401, +2395, 2599, 611, +2517, 2738, 0, +2641, 2874, 0, +2767, 3010, 0, +2895, 3144, 0, +3024, 3278, 0, +3154, 3412, 0, +3284, 3545, 0, +3414, 3678, 0, +3545, 3810, 0, +3677, 3943, 0, +3808, 4075, 0, +3940, 4095, 0, +1816, 0, 2094, +1818, 0, 2093, +1821, 0, 2093, +1824, 0, 2092, +1829, 0, 2091, +1835, 0, 2089, +1843, 0, 2087, +1854, 0, 2085, +1868, 0, 2082, +1886, 0, 2077, +1908, 79, 2071, +1937, 1005, 2062, +1973, 1355, 2051, +2017, 1601, 2035, +2013, 1803, 1946, +2013, 1891, 1803, +2167, 2149, 1733, +2268, 2315, 1619, +2362, 2459, 1401, +2462, 2599, 611, +2569, 2738, 0, +2681, 2874, 0, +2798, 3010, 0, +2919, 3144, 0, +3041, 3278, 0, +3167, 3412, 0, +3294, 3545, 0, +3422, 3678, 0, +3551, 3810, 0, +3681, 3943, 0, +3811, 4075, 0, +3942, 4095, 0, +2108, 0, 2226, +2109, 0, 2226, +2111, 0, 2225, +2112, 0, 2225, +2115, 0, 2224, +2118, 0, 2223, +2123, 0, 2221, +2128, 0, 2220, +2136, 0, 2217, +2146, 0, 2214, +2159, 0, 2209, +2176, 217, 2203, +2194, 1136, 2191, +2183, 1487, 2136, +2167, 1733, 2051, +2167, 1733, 1862, +2167, 1943, 1733, +2315, 2237, 1619, +2455, 2459, 1401, +2538, 2599, 611, +2631, 2738, 0, +2730, 2874, 0, +2836, 3010, 0, +2948, 3144, 0, +3064, 3278, 0, +3184, 3412, 0, +3307, 3545, 0, +3432, 3678, 0, +3559, 3810, 0, +3687, 3943, 0, +3816, 4075, 0, +3945, 4095, 0, +2332, 0, 2358, +2332, 0, 2358, +2333, 0, 2358, +2334, 0, 2357, +2335, 0, 2357, +2338, 0, 2356, +2340, 0, 2355, +2344, 0, 2353, +2349, 0, 2352, +2349, 0, 2343, +2346, 0, 2328, +2341, 0, 2305, +2335, 345, 2274, +2326, 1269, 2229, +2315, 1619, 2161, +2315, 1619, 2020, +2315, 1619, 1718, +2315, 2003, 1619, +2459, 2334, 1401, +2599, 2572, 611, +2702, 2738, 0, +2788, 2874, 0, +2883, 3010, 0, +2985, 3144, 0, +3093, 3278, 0, +3206, 3412, 0, +3324, 3545, 0, +3445, 3678, 0, +3569, 3810, 0, +3694, 3943, 0, +3821, 4075, 0, +3950, 4095, 0, +2491, 0, 2458, +2491, 0, 2457, +2490, 0, 2456, +2490, 0, 2454, +2489, 0, 2452, +2489, 0, 2449, +2488, 0, 2445, +2487, 0, 2440, +2486, 0, 2433, +2484, 0, 2423, +2481, 0, 2410, +2478, 0, 2392, +2473, 0, 2366, +2467, 477, 2330, +2459, 1401, 2276, +2459, 1401, 2171, +2459, 1401, 1976, +2459, 1401, 1403, +2459, 2073, 1401, +2599, 2437, 611, +2738, 2688, 0, +2856, 2874, 0, +2939, 3010, 0, +3030, 3144, 0, +3129, 3278, 0, +3234, 3412, 0, +3346, 3545, 0, +3462, 3678, 0, +3582, 3810, 0, +3704, 3943, 0, +3829, 4075, 0, +3955, 4095, 0, +2623, 0, 2541, +2623, 0, 2540, +2623, 0, 2539, +2622, 0, 2538, +2622, 0, 2536, +2621, 0, 2533, +2621, 0, 2530, +2620, 0, 2526, +2619, 0, 2520, +2618, 0, 2512, +2616, 0, 2501, +2613, 0, 2487, +2610, 0, 2466, +2605, 0, 2437, +2599, 611, 2395, +2599, 611, 2316, +2599, 611, 2183, +2599, 611, 1908, +2599, 1236, 611, +2599, 2153, 611, +2738, 2547, 0, +2874, 2807, 0, +3004, 3010, 0, +3084, 3144, 0, +3173, 3278, 0, +3270, 3412, 0, +3374, 3545, 0, +3483, 3678, 0, +3598, 3810, 0, +3717, 3943, 0, +3838, 4075, 0, +3963, 4095, 0, +2755, 0, 2632, +2755, 0, 2632, +2755, 0, 2631, +2755, 0, 2630, +2755, 0, 2628, +2754, 0, 2627, +2754, 0, 2624, +2753, 0, 2620, +2752, 0, 2616, +2751, 0, 2609, +2750, 0, 2601, +2748, 0, 2589, +2746, 0, 2572, +2742, 0, 2550, +2738, 0, 2517, +2738, 0, 2458, +2738, 0, 2365, +2738, 0, 2200, +2738, 0, 1799, +2738, 817, 0, +2738, 2241, 0, +2874, 2661, 0, +3010, 2928, 0, +3144, 3141, 0, +3225, 3278, 0, +3313, 3412, 0, +3408, 3545, 0, +3511, 3678, 0, +3620, 3810, 0, +3733, 3943, 0, +3851, 4075, 0, +3972, 4095, 0, +2887, 0, 2732, +2887, 0, 2731, +2887, 0, 2731, +2887, 0, 2730, +2887, 0, 2728, +2887, 0, 2727, +2886, 0, 2725, +2886, 0, 2722, +2885, 0, 2718, +2885, 0, 2713, +2883, 0, 2706, +2882, 0, 2697, +2880, 0, 2684, +2878, 0, 2666, +2874, 0, 2641, +2874, 0, 2597, +2874, 0, 2530, +2874, 0, 2423, +2874, 0, 2220, +2874, 0, 1596, +2874, 0, 0, +2874, 2338, 0, +3010, 2778, 0, +3144, 3053, 0, +3278, 3269, 0, +3365, 3412, 0, +3451, 3545, 0, +3545, 3678, 0, +3647, 3810, 0, +3755, 3943, 0, +3868, 4075, 0, +3985, 4095, 0, +3019, 0, 2837, +3019, 0, 2837, +3019, 0, 2836, +3019, 0, 2836, +3019, 0, 2835, +3019, 0, 2834, +3018, 0, 2832, +3018, 0, 2830, +3018, 0, 2827, +3017, 0, 2823, +3016, 0, 2817, +3015, 0, 2810, +3014, 0, 2800, +3012, 0, 2786, +3010, 0, 2767, +3010, 0, 2734, +3010, 0, 2686, +3010, 0, 2612, +3010, 0, 2489, +3010, 0, 2247, +3010, 0, 922, +3010, 0, 0, +3010, 2441, 0, +3144, 2901, 0, +3278, 3180, 0, +3412, 3397, 0, +3502, 3545, 0, +3587, 3678, 0, +3680, 3810, 0, +3781, 3943, 0, +3889, 4075, 0, +4002, 4095, 0, +3152, 0, 2949, +3152, 0, 2949, +3152, 0, 2948, +3151, 0, 2948, +3151, 0, 2947, +3151, 0, 2946, +3151, 0, 2945, +3151, 0, 2943, +3151, 0, 2941, +3150, 0, 2938, +3150, 0, 2933, +3149, 0, 2928, +3148, 0, 2920, +3146, 0, 2910, +3144, 0, 2895, +3144, 0, 2870, +3144, 0, 2835, +3144, 0, 2783, +3144, 0, 2703, +3144, 0, 2566, +3144, 0, 2280, +3144, 0, 0, +3144, 0, 0, +3144, 2551, 0, +3278, 3023, 0, +3412, 3307, 0, +3545, 3526, 0, +3638, 3678, 0, +3722, 3810, 0, +3815, 3943, 0, +3916, 4075, 0, +4023, 4095, 0, +3284, 0, 3065, +3283, 0, 3065, +3283, 0, 3064, +3283, 0, 3064, +3283, 0, 3063, +3283, 0, 3062, +3283, 0, 3062, +3283, 0, 3060, +3283, 0, 3059, +3282, 0, 3056, +3282, 0, 3053, +3281, 0, 3049, +3280, 0, 3043, +3280, 0, 3034, +3278, 0, 3024, +3278, 0, 3005, +3278, 0, 2979, +3278, 0, 2942, +3278, 0, 2886, +3278, 0, 2800, +3278, 0, 2651, +3278, 0, 2320, +3278, 0, 0, +3278, 0, 0, +3278, 2665, 0, +3412, 3150, 0, +3545, 3436, 0, +3678, 3657, 0, +3773, 3810, 0, +3857, 3943, 0, +3949, 4075, 0, +4049, 4095, 0, +3416, 0, 3184, +3416, 0, 3184, +3416, 0, 3184, +3416, 0, 3184, +3416, 0, 3184, +3416, 0, 3183, +3415, 0, 3182, +3415, 0, 3181, +3415, 0, 3180, +3415, 0, 3178, +3414, 0, 3175, +3414, 0, 3172, +3414, 0, 3168, +3413, 0, 3162, +3412, 0, 3154, +3412, 0, 3140, +3412, 0, 3120, +3412, 0, 3093, +3412, 0, 3055, +3412, 0, 2997, +3412, 0, 2906, +3412, 0, 2746, +3412, 0, 2371, +3412, 0, 0, +3412, 0, 0, +3412, 2784, 0, +3545, 3278, 0, +3678, 3566, 0, +3810, 3787, 0, +3907, 3943, 0, +3991, 4075, 0, +4083, 4095, 0, +3548, 0, 3307, +3548, 0, 3307, +3548, 0, 3307, +3548, 0, 3307, +3548, 0, 3307, +3548, 0, 3306, +3548, 0, 3305, +3548, 0, 3305, +3548, 0, 3303, +3547, 0, 3302, +3547, 0, 3300, +3547, 0, 3298, +3546, 0, 3294, +3546, 0, 3290, +3545, 0, 3284, +3545, 0, 3273, +3545, 0, 3259, +3545, 0, 3239, +3545, 0, 3211, +3545, 0, 3171, +3545, 0, 3111, +3545, 0, 3016, +3545, 0, 2848, +3545, 0, 2429, +3545, 0, 0, +3545, 0, 0, +3545, 2905, 0, +3678, 3406, 0, +3810, 3696, 0, +3943, 3918, 0, +4041, 4075, 0, +4095, 4095, 0, +3680, 0, 3432, +3680, 0, 3432, +3680, 0, 3432, +3680, 0, 3432, +3680, 0, 3431, +3680, 0, 3431, +3680, 0, 3431, +3680, 0, 3430, +3680, 0, 3429, +3680, 0, 3428, +3679, 0, 3427, +3679, 0, 3425, +3679, 0, 3422, +3678, 0, 3419, +3678, 0, 3414, +3678, 0, 3407, +3678, 0, 3396, +3678, 0, 3381, +3678, 0, 3361, +3678, 0, 3333, +3678, 0, 3291, +3678, 0, 3230, +3678, 0, 3132, +3678, 0, 2955, +3678, 0, 2499, +3678, 0, 0, +3678, 0, 0, +3678, 3029, 0, +3810, 3536, 0, +3943, 3827, 0, +4075, 4049, 0, +4095, 4095, 0, +3812, 0, 3559, +3812, 0, 3559, +3812, 0, 3559, +3812, 0, 3558, +3812, 0, 3558, +3812, 0, 3558, +3812, 0, 3558, +3812, 0, 3557, +3812, 0, 3557, +3812, 0, 3556, +3812, 0, 3555, +3812, 0, 3553, +3811, 0, 3552, +3811, 0, 3549, +3810, 0, 3545, +3810, 0, 3540, +3810, 0, 3532, +3810, 0, 3521, +3810, 0, 3506, +3810, 0, 3486, +3810, 0, 3457, +3810, 0, 3415, +3810, 0, 3352, +3810, 0, 3251, +3810, 0, 3069, +3810, 0, 2576, +3810, 0, 0, +3810, 0, 0, +3810, 3155, 0, +3943, 3665, 0, +4075, 3958, 0, +4095, 4095, 0, +3944, 0, 3687, +3944, 0, 3687, +3944, 0, 3687, +3944, 0, 3686, +3944, 0, 3686, +3944, 0, 3686, +3944, 0, 3686, +3944, 0, 3686, +3944, 0, 3685, +3944, 0, 3685, +3944, 0, 3684, +3944, 0, 3683, +3944, 0, 3681, +3943, 0, 3679, +3943, 0, 3677, +3943, 0, 3672, +3943, 0, 3666, +3943, 0, 3659, +3943, 0, 3648, +3943, 0, 3632, +3943, 0, 3612, +3943, 0, 3583, +3943, 0, 3540, +3943, 0, 3476, +3943, 0, 3374, +3943, 0, 3186, +3943, 0, 2662, +3943, 0, 0, +3943, 0, 0, +3943, 3283, 0, +4075, 3796, 0, +4095, 4089, 0, +4076, 0, 3816, +4076, 0, 3816, +4076, 0, 3816, +4076, 0, 3815, +4076, 0, 3815, +4076, 0, 3815, +4076, 0, 3815, +4076, 0, 3815, +4076, 0, 3814, +4076, 0, 3814, +4076, 0, 3813, +4076, 0, 3812, +4076, 0, 3812, +4076, 0, 3810, +4075, 0, 3808, +4075, 0, 3805, +4075, 0, 3801, +4075, 0, 3795, +4075, 0, 3787, +4075, 0, 3776, +4075, 0, 3760, +4075, 0, 3739, +4075, 0, 3710, +4075, 0, 3667, +4075, 0, 3602, +4075, 0, 3498, +4075, 0, 3306, +4075, 0, 2756, +4075, 0, 0, +4075, 0, 0, +4075, 3411, 0, +4095, 3927, 0, +4095, 0, 3946, +4095, 0, 3946, +4095, 0, 3945, +4095, 0, 3945, +4095, 0, 3945, +4095, 0, 3945, +4095, 0, 3945, +4095, 0, 3945, +4095, 0, 3945, +4095, 0, 3944, +4095, 0, 3944, +4095, 0, 3943, +4095, 0, 3942, +4095, 0, 3941, +4095, 0, 3940, +4095, 0, 3937, +4095, 0, 3934, +4095, 0, 3930, +4095, 0, 3924, +4095, 0, 3916, +4095, 0, 3905, +4095, 0, 3889, +4095, 0, 3868, +4095, 0, 3838, +4095, 0, 3795, +4095, 0, 3730, +4095, 0, 3625, +4095, 0, 3430, +4095, 0, 2861, +4095, 0, 0, +4095, 0, 0, +4095, 3541, 0, +0, 1827, 2094, +0, 1831, 2094, +0, 1837, 2094, +0, 1845, 2094, +0, 1855, 2094, +0, 1867, 2094, +0, 1884, 2094, +0, 1905, 2094, +0, 1932, 2094, +0, 1966, 2094, +0, 2007, 2094, +0, 2058, 2094, +0, 2094, 2069, +0, 2094, 1977, +0, 2094, 1816, +0, 2094, 1433, +0, 2226, 0, +0, 2358, 0, +1120, 2491, 0, +1833, 2623, 0, +2162, 2755, 0, +2400, 2887, 0, +2597, 3019, 0, +2773, 3152, 0, +2935, 3284, 0, +3088, 3416, 0, +3236, 3548, 0, +3379, 3680, 0, +3519, 3812, 0, +3657, 3944, 0, +3793, 4076, 0, +3929, 4095, 0, +0, 1823, 2094, +0, 1828, 2093, +0, 1834, 2093, +0, 1841, 2093, +0, 1851, 2093, +0, 1864, 2093, +0, 1881, 2093, +0, 1902, 2093, +0, 1929, 2093, +0, 1963, 2093, +0, 2005, 2093, +0, 2056, 2093, +0, 2093, 2070, +0, 2093, 1979, +0, 2093, 1818, +0, 2093, 1438, +0, 2226, 0, +0, 2358, 0, +1143, 2491, 0, +1838, 2623, 0, +2164, 2755, 0, +2401, 2887, 0, +2598, 3019, 0, +2773, 3152, 0, +2935, 3283, 0, +3088, 3416, 0, +3236, 3548, 0, +3379, 3680, 0, +3519, 3812, 0, +3657, 3944, 0, +3793, 4076, 0, +3929, 4095, 0, +0, 1817, 2094, +0, 1822, 2093, +0, 1829, 2093, +0, 1837, 2093, +0, 1847, 2093, +0, 1860, 2093, +0, 1877, 2093, +0, 1898, 2093, +0, 1926, 2093, +0, 1960, 2093, +0, 2002, 2093, +0, 2053, 2093, +0, 2093, 2071, +0, 2093, 1981, +0, 2093, 1821, +0, 2093, 1444, +0, 2225, 0, +0, 2358, 0, +1173, 2490, 0, +1845, 2623, 0, +2167, 2755, 0, +2403, 2887, 0, +2599, 3019, 0, +2774, 3152, 0, +2936, 3283, 0, +3089, 3416, 0, +3236, 3548, 0, +3379, 3680, 0, +3519, 3812, 0, +3657, 3944, 0, +3793, 4076, 0, +3929, 4095, 0, +0, 1809, 2094, +0, 1814, 2093, +0, 1821, 2093, +0, 1830, 2092, +0, 1841, 2092, +0, 1854, 2092, +0, 1871, 2092, +0, 1893, 2092, +0, 1920, 2092, +0, 1955, 2092, +0, 1997, 2092, +0, 2049, 2092, +0, 2092, 2073, +0, 2092, 1983, +0, 2092, 1824, +0, 2092, 1452, +0, 2225, 0, +0, 2357, 0, +1210, 2490, 0, +1853, 2622, 0, +2172, 2755, 0, +2406, 2887, 0, +2601, 3019, 0, +2775, 3151, 0, +2936, 3283, 0, +3089, 3416, 0, +3237, 3548, 0, +3379, 3680, 0, +3520, 3812, 0, +3657, 3944, 0, +3794, 4076, 0, +3929, 4095, 0, +0, 1798, 2094, +0, 1804, 2093, +0, 1811, 2093, +0, 1820, 2092, +0, 1832, 2091, +0, 1846, 2091, +0, 1863, 2091, +0, 1885, 2091, +0, 1913, 2091, +0, 1949, 2091, +0, 1992, 2091, +0, 2044, 2091, +0, 2091, 2076, +0, 2091, 1986, +0, 2091, 1829, +0, 2091, 1463, +0, 2224, 0, +0, 2357, 0, +1255, 2489, 0, +1865, 2622, 0, +2177, 2755, 0, +2409, 2887, 0, +2603, 3019, 0, +2777, 3151, 0, +2938, 3283, 0, +3090, 3416, 0, +3237, 3548, 0, +3380, 3680, 0, +3520, 3812, 0, +3658, 3944, 0, +3794, 4076, 0, +3929, 4095, 0, +0, 1783, 2094, +0, 1789, 2093, +0, 1796, 2093, +0, 1806, 2092, +0, 1819, 2091, +0, 1835, 2089, +0, 1853, 2089, +0, 1875, 2089, +0, 1904, 2089, +0, 1940, 2089, +0, 1984, 2089, +0, 2037, 2089, +0, 2089, 2080, +0, 2089, 1991, +0, 2089, 1835, +0, 2089, 1476, +0, 2223, 0, +0, 2356, 0, +1310, 2489, 0, +1880, 2621, 0, +2185, 2754, 0, +2413, 2887, 0, +2606, 3019, 0, +2779, 3151, 0, +2939, 3283, 0, +3091, 3416, 0, +3238, 3548, 0, +3380, 3680, 0, +3520, 3812, 0, +3658, 3944, 0, +3794, 4076, 0, +3929, 4095, 0, +0, 1763, 2094, +0, 1768, 2093, +0, 1776, 2093, +0, 1786, 2092, +0, 1799, 2091, +0, 1816, 2089, +0, 1838, 2087, +0, 1862, 2087, +0, 1891, 2087, +0, 1928, 2087, +0, 1973, 2087, +0, 2027, 2087, +0, 2087, 2085, +0, 2087, 1996, +0, 2087, 1843, +0, 2087, 1494, +0, 2221, 0, +0, 2355, 0, +1373, 2488, 0, +1899, 2621, 0, +2195, 2754, 0, +2419, 2886, 0, +2610, 3018, 0, +2782, 3151, 0, +2941, 3283, 0, +3093, 3415, 0, +3239, 3548, 0, +3381, 3680, 0, +3521, 3812, 0, +3658, 3944, 0, +3794, 4076, 0, +3930, 4095, 0, +0, 1733, 2094, +0, 1739, 2093, +0, 1748, 2093, +0, 1758, 2092, +0, 1772, 2091, +0, 1790, 2089, +0, 1813, 2087, +0, 1843, 2085, +0, 1873, 2085, +0, 1912, 2085, +0, 1958, 2085, +0, 2014, 2085, +0, 2079, 2085, +0, 2085, 2004, +0, 2085, 1854, +0, 2085, 1517, +0, 2220, 0, +0, 2353, 0, +1446, 2487, 0, +1923, 2620, 0, +2208, 2753, 0, +2427, 2886, 0, +2615, 3018, 0, +2785, 3151, 0, +2943, 3283, 0, +3094, 3415, 0, +3240, 3548, 0, +3382, 3680, 0, +3521, 3812, 0, +3659, 3944, 0, +3795, 4076, 0, +3930, 4095, 0, +0, 1691, 2094, +0, 1698, 2093, +0, 1706, 2093, +0, 1718, 2092, +0, 1733, 2091, +0, 1753, 2089, +0, 1778, 2087, +0, 1810, 2085, +0, 1849, 2082, +0, 1889, 2082, +0, 1938, 2082, +0, 1996, 2082, +0, 2063, 2082, +0, 2082, 2014, +0, 2082, 1868, +0, 2082, 1545, +0, 2217, 0, +0, 2352, 0, +1529, 2486, 0, +1954, 2619, 0, +2224, 2752, 0, +2438, 2885, 0, +2622, 3018, 0, +2790, 3151, 0, +2947, 3283, 0, +3097, 3415, 0, +3242, 3548, 0, +3383, 3680, 0, +3522, 3812, 0, +3659, 3944, 0, +3795, 4076, 0, +3930, 4095, 0, +0, 1626, 2094, +0, 1635, 2093, +0, 1645, 2093, +0, 1658, 2092, +0, 1676, 2091, +0, 1698, 2089, +0, 1726, 2087, +0, 1761, 2085, +0, 1804, 2082, +0, 1856, 2077, +0, 1908, 2077, +0, 1970, 2077, +0, 2041, 2077, +0, 2077, 2027, +0, 2077, 1886, +0, 2077, 1581, +0, 2214, 0, +275, 2349, 0, +1620, 2484, 0, +1991, 2618, 0, +2245, 2751, 0, +2451, 2885, 0, +2631, 3017, 0, +2796, 3150, 0, +2951, 3282, 0, +3100, 3415, 0, +3244, 3547, 0, +3385, 3680, 0, +3523, 3812, 0, +3661, 3944, 0, +3796, 4076, 0, +3931, 4095, 0, +0, 1524, 2094, +0, 1534, 2093, +0, 1547, 2093, +0, 1564, 2092, +0, 1585, 2091, +0, 1612, 2089, +0, 1646, 2087, +0, 1687, 2085, +0, 1738, 2082, +0, 1797, 2077, +79, 1866, 2071, +79, 1934, 2071, +79, 2010, 2071, +79, 2071, 2044, +79, 2071, 1908, +79, 2071, 1625, +0, 2209, 303, +1064, 2346, 0, +1719, 2481, 0, +2038, 2616, 0, +2273, 2750, 0, +2469, 2883, 0, +2643, 3016, 0, +2804, 3150, 0, +2957, 3282, 0, +3104, 3414, 0, +3247, 3547, 0, +3387, 3679, 0, +3525, 3812, 0, +3662, 3944, 0, +3797, 4076, 0, +3932, 4095, 0, +0, 1336, 2094, +0, 1351, 2093, +0, 1370, 2093, +0, 1394, 2092, +0, 1425, 2091, +0, 1463, 2089, +0, 1509, 2087, +0, 1565, 2085, +0, 1630, 2082, +0, 1704, 2077, +79, 1787, 2071, +1005, 1880, 2062, +1005, 1965, 2062, +1005, 2059, 2062, +1005, 2062, 1937, +1005, 2062, 1677, +217, 2203, 838, +1403, 2341, 0, +1824, 2478, 0, +2093, 2613, 0, +2306, 2748, 0, +2491, 2882, 0, +2658, 3015, 0, +2815, 3149, 0, +2965, 3281, 0, +3110, 3414, 0, +3251, 3547, 0, +3390, 3679, 0, +3528, 3812, 0, +3663, 3944, 0, +3798, 4076, 0, +3932, 4095, 0, +0, 814, 2094, +0, 859, 2093, +0, 913, 2093, +0, 977, 2092, +0, 1050, 2091, +0, 1133, 2089, +0, 1224, 2087, +0, 1322, 2085, +0, 1428, 2082, +0, 1539, 2077, +79, 1655, 2071, +1005, 1774, 2062, +1355, 1897, 2051, +1355, 2004, 2051, +1355, 2051, 1973, +1355, 2051, 1739, +1137, 2194, 1136, +1644, 2335, 345, +1935, 2473, 0, +2158, 2610, 0, +2348, 2746, 0, +2519, 2880, 0, +2678, 3014, 0, +2829, 3148, 0, +2975, 3280, 0, +3117, 3414, 0, +3257, 3546, 0, +3394, 3679, 0, +3530, 3811, 0, +3666, 3944, 0, +3800, 4076, 0, +3934, 4095, 0, +0, 0, 2094, +0, 0, 2093, +0, 0, 2093, +0, 0, 2092, +0, 0, 2091, +0, 0, 2089, +0, 0, 2087, +0, 10, 2085, +0, 800, 2082, +0, 1138, 2077, +79, 1379, 2071, +1005, 1579, 2062, +1355, 1756, 2051, +1601, 1919, 2035, +1601, 2035, 2017, +1601, 2035, 1811, +1585, 2183, 1487, +1843, 2326, 1269, +2051, 2467, 477, +2233, 2605, 0, +2398, 2742, 0, +2554, 2878, 0, +2703, 3012, 0, +2847, 3146, 0, +2988, 3280, 0, +3127, 3413, 0, +3264, 3546, 0, +3400, 3678, 0, +3534, 3811, 0, +3668, 3943, 0, +3802, 4076, 0, +3935, 4095, 0, +0, 0, 2094, +0, 0, 2093, +0, 0, 2093, +0, 0, 2092, +0, 0, 2091, +0, 0, 2089, +0, 0, 2087, +0, 0, 2085, +0, 0, 2082, +173, 0, 2077, +706, 79, 2071, +1005, 1006, 2062, +1355, 1453, 2051, +1601, 1730, 2035, +1803, 1946, 2013, +1803, 2013, 1891, +1862, 2167, 1733, +2020, 2315, 1619, +2171, 2459, 1401, +2316, 2599, 611, +2458, 2738, 0, +2597, 2874, 0, +2734, 3010, 0, +2870, 3144, 0, +3005, 3278, 0, +3140, 3412, 0, +3273, 3545, 0, +3407, 3678, 0, +3540, 3810, 0, +3672, 3943, 0, +3805, 4075, 0, +3937, 4095, 0, +1433, 0, 2094, +1438, 0, 2093, +1444, 0, 2093, +1452, 0, 2092, +1463, 0, 2091, +1476, 0, 2089, +1494, 0, 2087, +1517, 0, 2085, +1545, 0, 2082, +1581, 0, 2077, +1625, 79, 2071, +1677, 1005, 2062, +1739, 1355, 2051, +1811, 1601, 2035, +1891, 1803, 2013, +1981, 1981, 1981, +2078, 2145, 1935, +2183, 2299, 1865, +2293, 2447, 1751, +2408, 2591, 1533, +2527, 2731, 738, +2649, 2870, 0, +2773, 3006, 0, +2900, 3142, 0, +3027, 3276, 0, +3156, 3410, 0, +3285, 3544, 0, +3416, 3677, 0, +3547, 3810, 0, +3677, 3943, 0, +3809, 4075, 0, +3940, 4095, 0, +1946, 0, 2226, +1948, 0, 2226, +1950, 0, 2225, +1953, 0, 2225, +1956, 0, 2224, +1961, 0, 2223, +1967, 0, 2221, +1975, 0, 2220, +1986, 0, 2217, +2000, 0, 2214, +2018, 0, 2209, +2041, 217, 2203, +2069, 1136, 2194, +2105, 1487, 2183, +2149, 1733, 2167, +2145, 1935, 2078, +2145, 2023, 1935, +2299, 2281, 1865, +2401, 2447, 1751, +2493, 2591, 1533, +2594, 2731, 738, +2701, 2870, 0, +2813, 3006, 0, +2931, 3142, 0, +3050, 3276, 0, +3174, 3410, 0, +3299, 3544, 0, +3426, 3677, 0, +3554, 3810, 0, +3683, 3943, 0, +3813, 4075, 0, +3944, 4095, 0, +2239, 0, 2358, +2240, 0, 2358, +2241, 0, 2358, +2243, 0, 2357, +2245, 0, 2357, +2247, 0, 2356, +2251, 0, 2355, +2255, 0, 2353, +2261, 0, 2352, +2268, 0, 2349, +2278, 0, 2346, +2291, 0, 2341, +2308, 345, 2335, +2326, 1269, 2323, +2315, 1619, 2268, +2299, 1865, 2183, +2299, 1865, 1994, +2299, 2075, 1865, +2447, 2370, 1751, +2587, 2591, 1533, +2671, 2731, 738, +2763, 2870, 0, +2862, 3006, 0, +2969, 3142, 0, +3080, 3276, 0, +3196, 3410, 0, +3316, 3544, 0, +3439, 3677, 0, +3564, 3810, 0, +3691, 3943, 0, +3818, 4075, 0, +3948, 4095, 0, +2463, 0, 2491, +2464, 0, 2491, +2464, 0, 2490, +2465, 0, 2490, +2466, 0, 2489, +2468, 0, 2489, +2470, 0, 2488, +2473, 0, 2487, +2476, 0, 2486, +2481, 0, 2484, +2481, 0, 2475, +2478, 0, 2460, +2473, 0, 2438, +2467, 477, 2407, +2459, 1401, 2362, +2447, 1751, 2293, +2447, 1751, 2152, +2447, 1751, 1850, +2447, 2135, 1751, +2591, 2466, 1533, +2731, 2705, 738, +2834, 2870, 0, +2920, 3006, 0, +3015, 3142, 0, +3117, 3276, 0, +3225, 3410, 0, +3339, 3544, 0, +3456, 3677, 0, +3577, 3810, 0, +3701, 3943, 0, +3826, 4075, 0, +3953, 4095, 0, +2623, 0, 2590, +2623, 0, 2590, +2623, 0, 2589, +2622, 0, 2588, +2622, 0, 2586, +2621, 0, 2584, +2621, 0, 2581, +2620, 0, 2577, +2619, 0, 2572, +2618, 0, 2565, +2616, 0, 2555, +2613, 0, 2542, +2610, 0, 2524, +2605, 0, 2498, +2599, 611, 2462, +2591, 1533, 2408, +2591, 1533, 2303, +2591, 1533, 2108, +2591, 1533, 1533, +2591, 2206, 1533, +2731, 2570, 738, +2870, 2820, 0, +2988, 3006, 0, +3071, 3142, 0, +3162, 3276, 0, +3261, 3410, 0, +3367, 3544, 0, +3478, 3677, 0, +3594, 3810, 0, +3713, 3943, 0, +3836, 4075, 0, +3961, 4095, 0, +2755, 0, 2673, +2755, 0, 2673, +2755, 0, 2672, +2755, 0, 2671, +2755, 0, 2670, +2754, 0, 2668, +2754, 0, 2666, +2753, 0, 2662, +2752, 0, 2658, +2751, 0, 2652, +2750, 0, 2645, +2748, 0, 2634, +2746, 0, 2619, +2742, 0, 2598, +2738, 0, 2569, +2731, 738, 2527, +2731, 738, 2448, +2731, 738, 2315, +2731, 738, 2040, +2731, 1362, 738, +2731, 2285, 738, +2870, 2678, 0, +3006, 2939, 0, +3136, 3142, 0, +3216, 3276, 0, +3305, 3410, 0, +3402, 3544, 0, +3506, 3677, 0, +3616, 3810, 0, +3730, 3943, 0, +3849, 4075, 0, +3971, 4095, 0, +2887, 0, 2765, +2887, 0, 2764, +2887, 0, 2764, +2887, 0, 2763, +2887, 0, 2762, +2887, 0, 2761, +2886, 0, 2759, +2886, 0, 2756, +2885, 0, 2752, +2885, 0, 2748, +2883, 0, 2741, +2882, 0, 2733, +2880, 0, 2721, +2878, 0, 2704, +2874, 0, 2681, +2870, 0, 2649, +2870, 0, 2590, +2870, 0, 2497, +2870, 0, 2332, +2870, 0, 1932, +2870, 963, 0, +2870, 2374, 0, +3006, 2792, 0, +3142, 3061, 0, +3276, 3273, 0, +3358, 3410, 0, +3445, 3544, 0, +3540, 3677, 0, +3643, 3810, 0, +3752, 3943, 0, +3865, 4075, 0, +3983, 4095, 0, +3019, 0, 2864, +3019, 0, 2863, +3019, 0, 2863, +3019, 0, 2863, +3019, 0, 2862, +3019, 0, 2860, +3018, 0, 2859, +3018, 0, 2857, +3018, 0, 2854, +3017, 0, 2850, +3016, 0, 2845, +3015, 0, 2838, +3014, 0, 2829, +3012, 0, 2816, +3010, 0, 2798, +3006, 0, 2773, +3006, 0, 2729, +3006, 0, 2662, +3006, 0, 2554, +3006, 0, 2352, +3006, 0, 1723, +3006, 0, 0, +3006, 2470, 0, +3142, 2911, 0, +3276, 3185, 0, +3410, 3401, 0, +3497, 3544, 0, +3583, 3677, 0, +3677, 3810, 0, +3779, 3943, 0, +3887, 4075, 0, +4000, 4095, 0, +3152, 0, 2970, +3152, 0, 2970, +3152, 0, 2969, +3151, 0, 2969, +3151, 0, 2968, +3151, 0, 2967, +3151, 0, 2966, +3151, 0, 2964, +3151, 0, 2962, +3150, 0, 2959, +3150, 0, 2955, +3149, 0, 2950, +3148, 0, 2942, +3146, 0, 2932, +3144, 0, 2919, +3142, 0, 2900, +3142, 0, 2867, +3142, 0, 2818, +3142, 0, 2744, +3142, 0, 2622, +3142, 0, 2379, +3142, 0, 1068, +3142, 0, 0, +3142, 2573, 0, +3276, 3032, 0, +3410, 3311, 0, +3544, 3529, 0, +3634, 3677, 0, +3719, 3810, 0, +3813, 3943, 0, +3913, 4075, 0, +4021, 4095, 0, +3284, 0, 3081, +3283, 0, 3081, +3283, 0, 3081, +3283, 0, 3080, +3283, 0, 3080, +3283, 0, 3079, +3283, 0, 3078, +3283, 0, 3077, +3283, 0, 3075, +3282, 0, 3073, +3282, 0, 3070, +3281, 0, 3065, +3280, 0, 3060, +3280, 0, 3052, +3278, 0, 3041, +3276, 0, 3027, +3276, 0, 3002, +3276, 0, 2967, +3276, 0, 2915, +3276, 0, 2834, +3276, 0, 2698, +3276, 0, 2411, +3276, 0, 0, +3276, 0, 0, +3276, 2683, 0, +3410, 3156, 0, +3544, 3440, 0, +3677, 3659, 0, +3770, 3810, 0, +3854, 3943, 0, +3947, 4075, 0, +4048, 4095, 0, +3416, 0, 3197, +3416, 0, 3197, +3416, 0, 3197, +3416, 0, 3196, +3416, 0, 3196, +3416, 0, 3196, +3415, 0, 3195, +3415, 0, 3194, +3415, 0, 3192, +3415, 0, 3191, +3414, 0, 3188, +3414, 0, 3185, +3414, 0, 3181, +3413, 0, 3175, +3412, 0, 3167, +3410, 0, 3156, +3410, 0, 3137, +3410, 0, 3111, +3410, 0, 3074, +3410, 0, 3019, +3410, 0, 2933, +3410, 0, 2784, +3410, 0, 2453, +3410, 0, 0, +3410, 0, 0, +3410, 2797, 0, +3544, 3282, 0, +3677, 3568, 0, +3810, 3789, 0, +3905, 3943, 0, +3989, 4075, 0, +4082, 4095, 0, +3548, 0, 3317, +3548, 0, 3317, +3548, 0, 3317, +3548, 0, 3316, +3548, 0, 3316, +3548, 0, 3316, +3548, 0, 3315, +3548, 0, 3314, +3548, 0, 3313, +3547, 0, 3312, +3547, 0, 3310, +3547, 0, 3307, +3546, 0, 3304, +3546, 0, 3300, +3545, 0, 3294, +3544, 0, 3285, +3544, 0, 3272, +3544, 0, 3253, +3544, 0, 3225, +3544, 0, 3186, +3544, 0, 3129, +3544, 0, 3038, +3544, 0, 2879, +3544, 0, 2502, +3544, 0, 0, +3544, 0, 0, +3544, 2916, 0, +3677, 3410, 0, +3810, 3698, 0, +3943, 3920, 0, +4039, 4075, 0, +4095, 4095, 0, +3680, 0, 3440, +3680, 0, 3439, +3680, 0, 3439, +3680, 0, 3439, +3680, 0, 3439, +3680, 0, 3438, +3680, 0, 3438, +3680, 0, 3437, +3680, 0, 3437, +3680, 0, 3436, +3679, 0, 3434, +3679, 0, 3432, +3679, 0, 3430, +3678, 0, 3426, +3678, 0, 3422, +3677, 0, 3416, +3677, 0, 3405, +3677, 0, 3391, +3677, 0, 3371, +3677, 0, 3344, +3677, 0, 3303, +3677, 0, 3243, +3677, 0, 3149, +3677, 0, 2980, +3677, 0, 2562, +3677, 0, 0, +3677, 0, 0, +3677, 3037, 0, +3810, 3538, 0, +3943, 3828, 0, +4075, 4050, 0, +4095, 4095, 0, +3812, 0, 3564, +3812, 0, 3564, +3812, 0, 3564, +3812, 0, 3564, +3812, 0, 3564, +3812, 0, 3564, +3812, 0, 3563, +3812, 0, 3563, +3812, 0, 3562, +3812, 0, 3562, +3812, 0, 3561, +3812, 0, 3559, +3811, 0, 3557, +3811, 0, 3554, +3810, 0, 3551, +3810, 0, 3547, +3810, 0, 3539, +3810, 0, 3528, +3810, 0, 3514, +3810, 0, 3493, +3810, 0, 3465, +3810, 0, 3424, +3810, 0, 3362, +3810, 0, 3264, +3810, 0, 3088, +3810, 0, 2631, +3810, 0, 0, +3810, 0, 0, +3810, 3161, 0, +3943, 3667, 0, +4075, 3959, 0, +4095, 4095, 0, +3944, 0, 3691, +3944, 0, 3691, +3944, 0, 3691, +3944, 0, 3691, +3944, 0, 3691, +3944, 0, 3690, +3944, 0, 3690, +3944, 0, 3690, +3944, 0, 3689, +3944, 0, 3689, +3944, 0, 3688, +3944, 0, 3687, +3944, 0, 3685, +3943, 0, 3683, +3943, 0, 3681, +3943, 0, 3677, +3943, 0, 3672, +3943, 0, 3664, +3943, 0, 3653, +3943, 0, 3638, +3943, 0, 3618, +3943, 0, 3589, +3943, 0, 3547, +3943, 0, 3484, +3943, 0, 3384, +3943, 0, 3201, +3943, 0, 2708, +3943, 0, 0, +3943, 0, 0, +3943, 3287, 0, +4075, 3797, 0, +4095, 4090, 0, +4076, 0, 3819, +4076, 0, 3819, +4076, 0, 3819, +4076, 0, 3818, +4076, 0, 3818, +4076, 0, 3818, +4076, 0, 3818, +4076, 0, 3818, +4076, 0, 3818, +4076, 0, 3817, +4076, 0, 3816, +4076, 0, 3816, +4076, 0, 3814, +4076, 0, 3813, +4075, 0, 3811, +4075, 0, 3809, +4075, 0, 3804, +4075, 0, 3798, +4075, 0, 3790, +4075, 0, 3780, +4075, 0, 3765, +4075, 0, 3744, +4075, 0, 3714, +4075, 0, 3672, +4075, 0, 3608, +4075, 0, 3505, +4075, 0, 3318, +4075, 0, 2793, +4075, 0, 0, +4075, 0, 0, +4075, 3415, 0, +4095, 3929, 0, +4095, 0, 3948, +4095, 0, 3948, +4095, 0, 3948, +4095, 0, 3948, +4095, 0, 3948, +4095, 0, 3948, +4095, 0, 3947, +4095, 0, 3947, +4095, 0, 3947, +4095, 0, 3947, +4095, 0, 3946, +4095, 0, 3946, +4095, 0, 3945, +4095, 0, 3944, +4095, 0, 3942, +4095, 0, 3940, +4095, 0, 3937, +4095, 0, 3933, +4095, 0, 3927, +4095, 0, 3919, +4095, 0, 3908, +4095, 0, 3893, +4095, 0, 3872, +4095, 0, 3842, +4095, 0, 3799, +4095, 0, 3735, +4095, 0, 3630, +4095, 0, 3439, +4095, 0, 2890, +4095, 0, 0, +4095, 0, 0, +4095, 3544, 0, +0, 1959, 2226, +0, 1962, 2226, +0, 1966, 2226, +0, 1972, 2226, +0, 1979, 2226, +0, 1989, 2226, +0, 2002, 2226, +0, 2018, 2226, +0, 2039, 2226, +0, 2066, 2226, +0, 2100, 2226, +0, 2141, 2226, +0, 2191, 2226, +0, 2226, 2200, +0, 2226, 2108, +0, 2226, 1946, +0, 2226, 1562, +0, 2358, 0, +0, 2491, 0, +1232, 2623, 0, +1962, 2755, 0, +2292, 2887, 0, +2530, 3019, 0, +2729, 3152, 0, +2904, 3284, 0, +3067, 3416, 0, +3220, 3548, 0, +3367, 3680, 0, +3511, 3812, 0, +3651, 3944, 0, +3789, 4076, 0, +3926, 4095, 0, +0, 1956, 2226, +0, 1959, 2226, +0, 1963, 2226, +0, 1969, 2226, +0, 1977, 2226, +0, 1987, 2226, +0, 1999, 2226, +0, 2016, 2226, +0, 2037, 2226, +0, 2064, 2226, +0, 2098, 2226, +0, 2140, 2226, +0, 2190, 2226, +0, 2226, 2201, +0, 2226, 2109, +0, 2226, 1948, +0, 2226, 1565, +0, 2358, 0, +0, 2491, 0, +1251, 2623, 0, +1966, 2755, 0, +2294, 2887, 0, +2531, 3019, 0, +2729, 3152, 0, +2905, 3283, 0, +3067, 3416, 0, +3220, 3548, 0, +3368, 3680, 0, +3511, 3812, 0, +3651, 3944, 0, +3789, 4076, 0, +3926, 4095, 0, +0, 1951, 2226, +0, 1955, 2226, +0, 1960, 2225, +0, 1966, 2225, +0, 1973, 2225, +0, 1983, 2225, +0, 1996, 2225, +0, 2013, 2225, +0, 2034, 2225, +0, 2061, 2225, +0, 2095, 2225, +0, 2137, 2225, +0, 2188, 2225, +0, 2225, 2202, +0, 2225, 2111, +0, 2225, 1950, +0, 2225, 1570, +0, 2358, 0, +0, 2490, 0, +1275, 2623, 0, +1971, 2755, 0, +2296, 2887, 0, +2533, 3019, 0, +2730, 3152, 0, +2905, 3283, 0, +3067, 3416, 0, +3221, 3548, 0, +3368, 3680, 0, +3511, 3812, 0, +3651, 3944, 0, +3789, 4076, 0, +3926, 4095, 0, +0, 1945, 2226, +0, 1949, 2226, +0, 1954, 2225, +0, 1961, 2225, +0, 1969, 2225, +0, 1979, 2225, +0, 1992, 2225, +0, 2009, 2225, +0, 2030, 2225, +0, 2058, 2225, +0, 2092, 2225, +0, 2134, 2225, +0, 2185, 2225, +0, 2225, 2203, +0, 2225, 2112, +0, 2225, 1953, +0, 2225, 1576, +0, 2357, 0, +0, 2490, 0, +1304, 2622, 0, +1977, 2755, 0, +2299, 2887, 0, +2535, 3019, 0, +2732, 3151, 0, +2906, 3283, 0, +3068, 3416, 0, +3221, 3548, 0, +3368, 3680, 0, +3511, 3812, 0, +3651, 3944, 0, +3789, 4076, 0, +3926, 4095, 0, +0, 1937, 2226, +0, 1941, 2226, +0, 1946, 2225, +0, 1953, 2225, +0, 1963, 2224, +0, 1973, 2224, +0, 1986, 2224, +0, 2003, 2224, +0, 2025, 2224, +0, 2053, 2224, +0, 2087, 2224, +0, 2130, 2224, +0, 2181, 2224, +0, 2224, 2206, +0, 2224, 2115, +0, 2224, 1956, +0, 2224, 1584, +0, 2357, 0, +0, 2489, 0, +1342, 2622, 0, +1986, 2755, 0, +2304, 2887, 0, +2537, 3019, 0, +2733, 3151, 0, +2907, 3283, 0, +3069, 3416, 0, +3222, 3548, 0, +3369, 3680, 0, +3511, 3812, 0, +3652, 3944, 0, +3790, 4076, 0, +3926, 4095, 0, +0, 1926, 2226, +0, 1930, 2226, +0, 1936, 2225, +0, 1943, 2225, +0, 1952, 2224, +0, 1965, 2223, +0, 1978, 2223, +0, 1995, 2223, +0, 2018, 2223, +0, 2046, 2223, +0, 2081, 2223, +0, 2124, 2223, +0, 2176, 2223, +0, 2223, 2208, +0, 2223, 2118, +0, 2223, 1961, +0, 2223, 1595, +0, 2356, 0, +0, 2489, 0, +1387, 2621, 0, +1997, 2754, 0, +2310, 2887, 0, +2541, 3019, 0, +2735, 3151, 0, +2909, 3283, 0, +3070, 3416, 0, +3222, 3548, 0, +3369, 3680, 0, +3512, 3812, 0, +3652, 3944, 0, +3790, 4076, 0, +3926, 4095, 0, +0, 1911, 2226, +0, 1915, 2226, +0, 1921, 2225, +0, 1928, 2225, +0, 1938, 2224, +0, 1951, 2223, +0, 1967, 2221, +0, 1985, 2221, +0, 2008, 2221, +0, 2036, 2221, +0, 2072, 2221, +0, 2116, 2221, +0, 2169, 2221, +0, 2221, 2212, +0, 2221, 2123, +0, 2221, 1967, +0, 2221, 1608, +0, 2355, 0, +0, 2488, 0, +1441, 2621, 0, +2012, 2754, 0, +2317, 2886, 0, +2545, 3018, 0, +2738, 3151, 0, +2911, 3283, 0, +3071, 3415, 0, +3223, 3548, 0, +3370, 3680, 0, +3513, 3812, 0, +3652, 3944, 0, +3790, 4076, 0, +3927, 4095, 0, +0, 1890, 2226, +0, 1894, 2226, +0, 1900, 2225, +0, 1908, 2225, +0, 1918, 2224, +0, 1931, 2223, +0, 1948, 2221, +0, 1970, 2220, +0, 1994, 2220, +0, 2023, 2220, +0, 2060, 2220, +0, 2105, 2220, +0, 2159, 2220, +0, 2220, 2217, +0, 2220, 2128, +0, 2220, 1975, +0, 2220, 1626, +0, 2353, 0, +0, 2487, 0, +1505, 2620, 0, +2031, 2753, 0, +2327, 2886, 0, +2551, 3018, 0, +2742, 3151, 0, +2914, 3283, 0, +3073, 3415, 0, +3225, 3548, 0, +3371, 3680, 0, +3513, 3812, 0, +3653, 3944, 0, +3790, 4076, 0, +3927, 4095, 0, +0, 1860, 2226, +0, 1865, 2226, +0, 1871, 2225, +0, 1880, 2225, +0, 1891, 2224, +0, 1904, 2223, +0, 1922, 2221, +0, 1946, 2220, +0, 1975, 2217, +0, 2006, 2217, +0, 2044, 2217, +0, 2090, 2217, +0, 2146, 2217, +0, 2211, 2217, +0, 2217, 2136, +0, 2217, 1986, +0, 2217, 1649, +0, 2352, 0, +0, 2486, 0, +1578, 2619, 0, +2056, 2752, 0, +2340, 2885, 0, +2559, 3018, 0, +2747, 3151, 0, +2917, 3283, 0, +3076, 3415, 0, +3226, 3548, 0, +3372, 3680, 0, +3514, 3812, 0, +3653, 3944, 0, +3791, 4076, 0, +3927, 4095, 0, +0, 1817, 2226, +0, 1823, 2226, +0, 1829, 2225, +0, 1839, 2225, +0, 1850, 2224, +0, 1865, 2223, +0, 1885, 2221, +0, 1910, 2220, +0, 1942, 2217, +0, 1981, 2214, +0, 2021, 2214, +0, 2070, 2214, +0, 2128, 2214, +0, 2195, 2214, +0, 2214, 2146, +0, 2214, 2000, +0, 2214, 1677, +0, 2349, 0, +0, 2484, 0, +1661, 2618, 0, +2086, 2751, 0, +2356, 2885, 0, +2570, 3017, 0, +2754, 3150, 0, +2922, 3282, 0, +3079, 3415, 0, +3229, 3547, 0, +3374, 3680, 0, +3515, 3812, 0, +3654, 3944, 0, +3791, 4076, 0, +3927, 4095, 0, +0, 1753, 2226, +0, 1759, 2226, +0, 1767, 2225, +0, 1777, 2225, +0, 1790, 2224, +0, 1808, 2223, +0, 1830, 2221, +0, 1858, 2220, +0, 1894, 2217, +0, 1936, 2214, +0, 1988, 2209, +0, 2041, 2209, +0, 2102, 2209, +0, 2174, 2209, +0, 2209, 2159, +0, 2209, 2018, +0, 2209, 1713, +0, 2346, 0, +415, 2481, 0, +1752, 2616, 0, +2124, 2750, 0, +2378, 2883, 0, +2583, 3016, 0, +2763, 3150, 0, +2928, 3282, 0, +3083, 3414, 0, +3232, 3547, 0, +3376, 3679, 0, +3517, 3812, 0, +3656, 3944, 0, +3793, 4076, 0, +3928, 4095, 0, +0, 1648, 2226, +0, 1656, 2226, +0, 1666, 2225, +0, 1679, 2225, +0, 1695, 2224, +0, 1717, 2223, +0, 1744, 2221, +0, 1778, 2220, +0, 1819, 2217, +0, 1870, 2214, +0, 1929, 2209, +217, 1998, 2203, +217, 2066, 2203, +217, 2142, 2203, +217, 2203, 2176, +217, 2203, 2041, +217, 2203, 1757, +0, 2341, 437, +1199, 2478, 0, +1851, 2613, 0, +2170, 2748, 0, +2405, 2882, 0, +2600, 3015, 0, +2775, 3149, 0, +2936, 3281, 0, +3089, 3414, 0, +3236, 3547, 0, +3379, 3679, 0, +3520, 3812, 0, +3657, 3944, 0, +3794, 4076, 0, +3929, 4095, 0, +0, 1457, 2226, +0, 1469, 2226, +0, 1484, 2225, +0, 1503, 2225, +0, 1527, 2224, +0, 1557, 2223, +0, 1596, 2221, +0, 1642, 2220, +0, 1697, 2217, +0, 1762, 2214, +0, 1836, 2209, +217, 1920, 2203, +1136, 2012, 2194, +1136, 2097, 2194, +1136, 2191, 2194, +1136, 2194, 2069, +1136, 2194, 1809, +345, 2335, 970, +1535, 2473, 0, +1956, 2610, 0, +2226, 2746, 0, +2439, 2880, 0, +2623, 3014, 0, +2790, 3148, 0, +2947, 3280, 0, +3097, 3414, 0, +3242, 3546, 0, +3384, 3679, 0, +3522, 3811, 0, +3659, 3944, 0, +3795, 4076, 0, +3930, 4095, 0, +0, 907, 2226, +0, 944, 2226, +0, 990, 2225, +0, 1044, 2225, +0, 1108, 2224, +0, 1181, 2223, +0, 1264, 2221, +0, 1355, 2220, +0, 1454, 2217, +0, 1560, 2214, +0, 1671, 2209, +217, 1787, 2203, +1136, 1906, 2194, +1487, 2029, 2183, +1487, 2136, 2183, +1487, 2183, 2105, +1487, 2183, 1871, +1270, 2326, 1269, +1776, 2467, 477, +2067, 2605, 0, +2291, 2742, 0, +2480, 2878, 0, +2651, 3012, 0, +2810, 3146, 0, +2961, 3280, 0, +3107, 3413, 0, +3249, 3546, 0, +3389, 3678, 0, +3526, 3811, 0, +3662, 3943, 0, +3798, 4076, 0, +3932, 4095, 0, +0, 0, 2226, +0, 0, 2226, +0, 0, 2225, +0, 0, 2225, +0, 0, 2224, +0, 0, 2223, +0, 0, 2221, +0, 0, 2220, +0, 140, 2217, +0, 932, 2214, +0, 1270, 2209, +217, 1512, 2203, +1136, 1711, 2194, +1487, 1888, 2183, +1733, 2051, 2167, +1733, 2167, 2149, +1733, 2167, 1943, +1718, 2315, 1619, +1976, 2459, 1401, +2183, 2599, 611, +2365, 2738, 0, +2530, 2874, 0, +2686, 3010, 0, +2835, 3144, 0, +2979, 3278, 0, +3120, 3412, 0, +3259, 3545, 0, +3396, 3678, 0, +3532, 3810, 0, +3666, 3943, 0, +3801, 4075, 0, +3934, 4095, 0, +0, 0, 2226, +0, 0, 2226, +0, 0, 2225, +0, 0, 2225, +0, 0, 2224, +0, 0, 2223, +0, 0, 2221, +0, 0, 2220, +0, 0, 2217, +0, 0, 2214, +303, 0, 2209, +838, 217, 2203, +1136, 1137, 2194, +1487, 1585, 2183, +1733, 1862, 2167, +1935, 2078, 2145, +1935, 2145, 2023, +1994, 2299, 1865, +2152, 2447, 1751, +2303, 2591, 1533, +2448, 2731, 738, +2590, 2870, 0, +2729, 3006, 0, +2867, 3142, 0, +3002, 3276, 0, +3137, 3410, 0, +3272, 3544, 0, +3405, 3677, 0, +3539, 3810, 0, +3672, 3943, 0, +3804, 4075, 0, +3937, 4095, 0, +1562, 0, 2226, +1565, 0, 2226, +1570, 0, 2225, +1576, 0, 2225, +1584, 0, 2224, +1595, 0, 2223, +1608, 0, 2221, +1626, 0, 2220, +1649, 0, 2217, +1677, 0, 2214, +1713, 0, 2209, +1757, 217, 2203, +1809, 1136, 2194, +1871, 1487, 2183, +1943, 1733, 2167, +2023, 1935, 2145, +2113, 2113, 2113, +2210, 2277, 2067, +2315, 2431, 1997, +2425, 2579, 1883, +2540, 2723, 1664, +2659, 2863, 870, +2781, 3002, 0, +2906, 3138, 0, +3031, 3274, 0, +3159, 3408, 0, +3288, 3543, 0, +3418, 3676, 0, +3548, 3809, 0, +3679, 3942, 0, +3810, 4075, 0, +3941, 4095, 0, +2078, 0, 2358, +2079, 0, 2358, +2080, 0, 2358, +2082, 0, 2357, +2085, 0, 2357, +2088, 0, 2356, +2093, 0, 2355, +2099, 0, 2353, +2107, 0, 2352, +2118, 0, 2349, +2132, 0, 2346, +2150, 0, 2341, +2173, 345, 2335, +2202, 1269, 2326, +2237, 1619, 2315, +2281, 1865, 2299, +2277, 2067, 2210, +2277, 2155, 2067, +2431, 2414, 1997, +2533, 2579, 1883, +2626, 2723, 1664, +2726, 2863, 870, +2833, 3002, 0, +2946, 3138, 0, +3062, 3274, 0, +3183, 3408, 0, +3306, 3543, 0, +3431, 3676, 0, +3558, 3809, 0, +3686, 3942, 0, +3815, 4075, 0, +3945, 4095, 0, +2371, 0, 2491, +2372, 0, 2491, +2373, 0, 2490, +2374, 0, 2490, +2375, 0, 2489, +2377, 0, 2489, +2379, 0, 2488, +2383, 0, 2487, +2387, 0, 2486, +2393, 0, 2484, +2401, 0, 2481, +2411, 0, 2478, +2423, 0, 2473, +2440, 477, 2467, +2459, 1401, 2455, +2447, 1751, 2401, +2431, 1997, 2315, +2431, 1997, 2126, +2431, 2207, 1997, +2579, 2502, 1883, +2719, 2723, 1664, +2803, 2863, 870, +2895, 3002, 0, +2995, 3138, 0, +3100, 3274, 0, +3212, 3408, 0, +3329, 3543, 0, +3448, 3676, 0, +3571, 3809, 0, +3696, 3942, 0, +3823, 4075, 0, +3951, 4095, 0, +2595, 0, 2623, +2595, 0, 2623, +2596, 0, 2623, +2596, 0, 2622, +2597, 0, 2622, +2598, 0, 2621, +2600, 0, 2621, +2602, 0, 2620, +2604, 0, 2619, +2608, 0, 2618, +2613, 0, 2616, +2613, 0, 2607, +2610, 0, 2592, +2605, 0, 2570, +2599, 611, 2538, +2591, 1533, 2493, +2579, 1883, 2425, +2579, 1883, 2284, +2579, 1883, 1981, +2579, 2267, 1883, +2723, 2598, 1664, +2863, 2837, 870, +2966, 3002, 0, +3053, 3138, 0, +3147, 3274, 0, +3249, 3408, 0, +3357, 3543, 0, +3471, 3676, 0, +3588, 3809, 0, +3709, 3942, 0, +3833, 4075, 0, +3959, 4095, 0, +2755, 0, 2723, +2755, 0, 2723, +2755, 0, 2722, +2755, 0, 2721, +2755, 0, 2720, +2754, 0, 2718, +2754, 0, 2716, +2753, 0, 2713, +2752, 0, 2710, +2751, 0, 2704, +2750, 0, 2697, +2748, 0, 2687, +2746, 0, 2674, +2742, 0, 2656, +2738, 0, 2631, +2731, 738, 2594, +2723, 1664, 2540, +2723, 1664, 2435, +2723, 1664, 2240, +2723, 1664, 1667, +2723, 2338, 1664, +2863, 2701, 870, +3002, 2952, 0, +3120, 3138, 0, +3203, 3274, 0, +3294, 3408, 0, +3393, 3543, 0, +3499, 3676, 0, +3610, 3809, 0, +3726, 3942, 0, +3846, 4075, 0, +3968, 4095, 0, +2887, 0, 2806, +2887, 0, 2805, +2887, 0, 2805, +2887, 0, 2804, +2887, 0, 2803, +2887, 0, 2802, +2886, 0, 2800, +2886, 0, 2798, +2885, 0, 2795, +2885, 0, 2790, +2883, 0, 2784, +2882, 0, 2777, +2880, 0, 2766, +2878, 0, 2751, +2874, 0, 2730, +2870, 0, 2701, +2863, 870, 2659, +2863, 870, 2580, +2863, 870, 2447, +2863, 870, 2173, +2863, 1498, 870, +2863, 2417, 870, +3002, 2810, 0, +3138, 3071, 0, +3268, 3274, 0, +3348, 3408, 0, +3437, 3543, 0, +3534, 3676, 0, +3638, 3809, 0, +3748, 3942, 0, +3862, 4075, 0, +3981, 4095, 0, +3019, 0, 2897, +3019, 0, 2897, +3019, 0, 2896, +3019, 0, 2896, +3019, 0, 2895, +3019, 0, 2894, +3018, 0, 2892, +3018, 0, 2890, +3018, 0, 2888, +3017, 0, 2885, +3016, 0, 2880, +3015, 0, 2873, +3014, 0, 2865, +3012, 0, 2853, +3010, 0, 2836, +3006, 0, 2813, +3002, 0, 2781, +3002, 0, 2722, +3002, 0, 2628, +3002, 0, 2463, +3002, 0, 2062, +3002, 1109, 0, +3002, 2505, 0, +3138, 2925, 0, +3274, 3193, 0, +3408, 3406, 0, +3490, 3543, 0, +3577, 3676, 0, +3672, 3809, 0, +3775, 3942, 0, +3884, 4075, 0, +3998, 4095, 0, +3152, 0, 2996, +3152, 0, 2996, +3152, 0, 2996, +3151, 0, 2995, +3151, 0, 2995, +3151, 0, 2994, +3151, 0, 2993, +3151, 0, 2991, +3151, 0, 2989, +3150, 0, 2986, +3150, 0, 2982, +3149, 0, 2977, +3148, 0, 2970, +3146, 0, 2961, +3144, 0, 2948, +3142, 0, 2931, +3138, 0, 2906, +3138, 0, 2861, +3138, 0, 2795, +3138, 0, 2687, +3138, 0, 2484, +3138, 0, 1857, +3138, 0, 0, +3138, 2602, 0, +3274, 3042, 0, +3408, 3317, 0, +3543, 3533, 0, +3629, 3676, 0, +3715, 3809, 0, +3809, 3942, 0, +3911, 4075, 0, +4019, 4095, 0, +3284, 0, 3102, +3283, 0, 3102, +3283, 0, 3101, +3283, 0, 3101, +3283, 0, 3101, +3283, 0, 3100, +3283, 0, 3099, +3283, 0, 3098, +3283, 0, 3096, +3282, 0, 3094, +3282, 0, 3091, +3281, 0, 3087, +3280, 0, 3082, +3280, 0, 3074, +3278, 0, 3064, +3276, 0, 3050, +3274, 0, 3031, +3274, 0, 2998, +3274, 0, 2950, +3274, 0, 2876, +3274, 0, 2753, +3274, 0, 2510, +3274, 0, 1202, +3274, 0, 0, +3274, 2706, 0, +3408, 3164, 0, +3543, 3444, 0, +3676, 3662, 0, +3766, 3809, 0, +3851, 3942, 0, +3945, 4075, 0, +4046, 4095, 0, +3416, 0, 3213, +3416, 0, 3213, +3416, 0, 3213, +3416, 0, 3213, +3416, 0, 3212, +3416, 0, 3212, +3415, 0, 3211, +3415, 0, 3210, +3415, 0, 3209, +3415, 0, 3207, +3414, 0, 3205, +3414, 0, 3202, +3414, 0, 3198, +3413, 0, 3192, +3412, 0, 3184, +3410, 0, 3174, +3408, 0, 3159, +3408, 0, 3134, +3408, 0, 3099, +3408, 0, 3047, +3408, 0, 2966, +3408, 0, 2830, +3408, 0, 2545, +3408, 0, 0, +3408, 0, 0, +3408, 2815, 0, +3543, 3288, 0, +3676, 3572, 0, +3809, 3791, 0, +3902, 3942, 0, +3986, 4075, 0, +4080, 4095, 0, +3548, 0, 3329, +3548, 0, 3329, +3548, 0, 3329, +3548, 0, 3329, +3548, 0, 3329, +3548, 0, 3328, +3548, 0, 3328, +3548, 0, 3327, +3548, 0, 3326, +3547, 0, 3325, +3547, 0, 3323, +3547, 0, 3320, +3546, 0, 3317, +3546, 0, 3313, +3545, 0, 3307, +3544, 0, 3299, +3543, 0, 3288, +3543, 0, 3270, +3543, 0, 3243, +3543, 0, 3206, +3543, 0, 3151, +3543, 0, 3065, +3543, 0, 2917, +3543, 0, 2585, +3543, 0, 0, +3543, 0, 0, +3543, 2929, 0, +3676, 3414, 0, +3809, 3700, 0, +3942, 3921, 0, +4037, 4075, 0, +4095, 4095, 0, +3680, 0, 3449, +3680, 0, 3449, +3680, 0, 3449, +3680, 0, 3449, +3680, 0, 3448, +3680, 0, 3448, +3680, 0, 3448, +3680, 0, 3447, +3680, 0, 3446, +3680, 0, 3445, +3679, 0, 3444, +3679, 0, 3442, +3679, 0, 3440, +3678, 0, 3436, +3678, 0, 3432, +3677, 0, 3426, +3676, 0, 3418, +3676, 0, 3404, +3676, 0, 3385, +3676, 0, 3358, +3676, 0, 3319, +3676, 0, 3261, +3676, 0, 3170, +3676, 0, 3010, +3676, 0, 2636, +3676, 0, 0, +3676, 0, 0, +3676, 3048, 0, +3809, 3542, 0, +3942, 3830, 0, +4075, 4051, 0, +4095, 4095, 0, +3812, 0, 3572, +3812, 0, 3572, +3812, 0, 3572, +3812, 0, 3571, +3812, 0, 3571, +3812, 0, 3571, +3812, 0, 3571, +3812, 0, 3570, +3812, 0, 3570, +3812, 0, 3569, +3812, 0, 3568, +3812, 0, 3566, +3811, 0, 3564, +3811, 0, 3562, +3810, 0, 3559, +3810, 0, 3554, +3809, 0, 3548, +3809, 0, 3537, +3809, 0, 3523, +3809, 0, 3503, +3809, 0, 3475, +3809, 0, 3435, +3809, 0, 3376, +3809, 0, 3281, +3809, 0, 3112, +3809, 0, 2694, +3809, 0, 0, +3809, 0, 0, +3809, 3169, 0, +3942, 3670, 0, +4075, 3960, 0, +4095, 4095, 0, +3944, 0, 3696, +3944, 0, 3696, +3944, 0, 3696, +3944, 0, 3696, +3944, 0, 3696, +3944, 0, 3696, +3944, 0, 3696, +3944, 0, 3695, +3944, 0, 3695, +3944, 0, 3694, +3944, 0, 3694, +3944, 0, 3692, +3944, 0, 3691, +3943, 0, 3689, +3943, 0, 3687, +3943, 0, 3683, +3942, 0, 3679, +3942, 0, 3671, +3942, 0, 3660, +3942, 0, 3646, +3942, 0, 3626, +3942, 0, 3597, +3942, 0, 3556, +3942, 0, 3494, +3942, 0, 3396, +3942, 0, 3220, +3942, 0, 2762, +3942, 0, 0, +3942, 0, 0, +3942, 3293, 0, +4075, 3799, 0, +4095, 4091, 0, +4076, 0, 3823, +4076, 0, 3823, +4076, 0, 3823, +4076, 0, 3823, +4076, 0, 3823, +4076, 0, 3822, +4076, 0, 3822, +4076, 0, 3822, +4076, 0, 3822, +4076, 0, 3821, +4076, 0, 3821, +4076, 0, 3820, +4076, 0, 3819, +4076, 0, 3817, +4075, 0, 3816, +4075, 0, 3813, +4075, 0, 3810, +4075, 0, 3803, +4075, 0, 3796, +4075, 0, 3785, +4075, 0, 3770, +4075, 0, 3750, +4075, 0, 3721, +4075, 0, 3679, +4075, 0, 3616, +4075, 0, 3515, +4075, 0, 3333, +4075, 0, 2839, +4075, 0, 0, +4075, 0, 0, +4075, 3419, 0, +4095, 3930, 0, +4095, 0, 3951, +4095, 0, 3951, +4095, 0, 3951, +4095, 0, 3951, +4095, 0, 3951, +4095, 0, 3951, +4095, 0, 3951, +4095, 0, 3950, +4095, 0, 3950, +4095, 0, 3950, +4095, 0, 3950, +4095, 0, 3949, +4095, 0, 3948, +4095, 0, 3947, +4095, 0, 3945, +4095, 0, 3944, +4095, 0, 3941, +4095, 0, 3937, +4095, 0, 3931, +4095, 0, 3923, +4095, 0, 3912, +4095, 0, 3897, +4095, 0, 3876, +4095, 0, 3847, +4095, 0, 3804, +4095, 0, 3741, +4095, 0, 3638, +4095, 0, 3450, +4095, 0, 2927, +4095, 0, 0, +4095, 0, 0, +4095, 3547, 0, +0, 2090, 2358, +0, 2093, 2358, +0, 2096, 2358, +0, 2100, 2358, +0, 2106, 2358, +0, 2113, 2358, +0, 2123, 2358, +0, 2136, 2358, +0, 2152, 2358, +0, 2173, 2358, +0, 2200, 2358, +0, 2233, 2358, +0, 2275, 2358, +0, 2325, 2358, +0, 2358, 2332, +0, 2358, 2239, +0, 2358, 2078, +0, 2358, 1692, +0, 2491, 0, +0, 2623, 0, +1353, 2755, 0, +2091, 2887, 0, +2422, 3019, 0, +2662, 3152, 0, +2860, 3284, 0, +3036, 3416, 0, +3198, 3548, 0, +3352, 3680, 0, +3499, 3812, 0, +3643, 3944, 0, +3783, 4076, 0, +3921, 4095, 0, +0, 2088, 2358, +0, 2091, 2358, +0, 2094, 2358, +0, 2098, 2358, +0, 2104, 2358, +0, 2111, 2358, +0, 2121, 2358, +0, 2134, 2358, +0, 2150, 2358, +0, 2171, 2358, +0, 2199, 2358, +0, 2232, 2358, +0, 2273, 2358, +0, 2324, 2358, +0, 2358, 2332, +0, 2358, 2240, +0, 2358, 2079, +0, 2358, 1694, +0, 2491, 0, +0, 2623, 0, +1367, 2755, 0, +2094, 2887, 0, +2424, 3019, 0, +2663, 3152, 0, +2860, 3283, 0, +3036, 3416, 0, +3199, 3548, 0, +3352, 3680, 0, +3499, 3812, 0, +3643, 3944, 0, +3783, 4076, 0, +3921, 4095, 0, +0, 2085, 2358, +0, 2087, 2358, +0, 2091, 2358, +0, 2096, 2358, +0, 2101, 2358, +0, 2109, 2358, +0, 2119, 2358, +0, 2132, 2358, +0, 2148, 2358, +0, 2169, 2358, +0, 2196, 2358, +0, 2230, 2358, +0, 2271, 2358, +0, 2322, 2358, +0, 2358, 2333, +0, 2358, 2241, +0, 2358, 2080, +0, 2358, 1698, +0, 2490, 0, +0, 2623, 0, +1386, 2755, 0, +2098, 2887, 0, +2426, 3019, 0, +2664, 3152, 0, +2861, 3283, 0, +3037, 3416, 0, +3199, 3548, 0, +3353, 3680, 0, +3500, 3812, 0, +3643, 3944, 0, +3783, 4076, 0, +3921, 4095, 0, +0, 2080, 2358, +0, 2083, 2358, +0, 2087, 2358, +0, 2092, 2357, +0, 2098, 2357, +0, 2105, 2357, +0, 2115, 2357, +0, 2128, 2357, +0, 2145, 2357, +0, 2166, 2357, +0, 2193, 2357, +0, 2228, 2357, +0, 2269, 2357, +0, 2320, 2357, +0, 2357, 2334, +0, 2357, 2243, +0, 2357, 2082, +0, 2357, 1702, +0, 2490, 0, +0, 2622, 0, +1409, 2755, 0, +2103, 2887, 0, +2428, 3019, 0, +2665, 3151, 0, +2862, 3283, 0, +3038, 3416, 0, +3200, 3548, 0, +3353, 3680, 0, +3500, 3812, 0, +3643, 3944, 0, +3783, 4076, 0, +3921, 4095, 0, +0, 2074, 2358, +0, 2077, 2358, +0, 2081, 2358, +0, 2086, 2357, +0, 2093, 2357, +0, 2101, 2357, +0, 2111, 2357, +0, 2124, 2357, +0, 2141, 2357, +0, 2162, 2357, +0, 2190, 2357, +0, 2224, 2357, +0, 2266, 2357, +0, 2317, 2357, +0, 2357, 2335, +0, 2357, 2245, +0, 2357, 2085, +0, 2357, 1708, +0, 2489, 0, +0, 2622, 0, +1439, 2755, 0, +2110, 2887, 0, +2431, 3019, 0, +2667, 3151, 0, +2863, 3283, 0, +3038, 3416, 0, +3200, 3548, 0, +3353, 3680, 0, +3500, 3812, 0, +3643, 3944, 0, +3783, 4076, 0, +3921, 4095, 0, +0, 2066, 2358, +0, 2069, 2358, +0, 2073, 2358, +0, 2078, 2357, +0, 2086, 2357, +0, 2095, 2356, +0, 2105, 2356, +0, 2118, 2356, +0, 2135, 2356, +0, 2157, 2356, +0, 2185, 2356, +0, 2219, 2356, +0, 2262, 2356, +0, 2313, 2356, +0, 2356, 2338, +0, 2356, 2247, +0, 2356, 2088, +0, 2356, 1716, +0, 2489, 0, +0, 2621, 0, +1476, 2754, 0, +2118, 2887, 0, +2435, 3019, 0, +2670, 3151, 0, +2865, 3283, 0, +3039, 3416, 0, +3201, 3548, 0, +3354, 3680, 0, +3501, 3812, 0, +3644, 3944, 0, +3784, 4076, 0, +3922, 4095, 0, +0, 2055, 2358, +0, 2058, 2358, +0, 2062, 2358, +0, 2068, 2357, +0, 2075, 2357, +0, 2084, 2356, +0, 2096, 2355, +0, 2110, 2355, +0, 2127, 2355, +0, 2150, 2355, +0, 2178, 2355, +0, 2213, 2355, +0, 2256, 2355, +0, 2308, 2355, +0, 2355, 2340, +0, 2355, 2251, +0, 2355, 2093, +0, 2355, 1727, +0, 2488, 0, +0, 2621, 0, +1521, 2754, 0, +2129, 2886, 0, +2441, 3018, 0, +2673, 3151, 0, +2867, 3283, 0, +3041, 3415, 0, +3202, 3548, 0, +3354, 3680, 0, +3501, 3812, 0, +3644, 3944, 0, +3784, 4076, 0, +3922, 4095, 0, +0, 2040, 2358, +0, 2043, 2358, +0, 2047, 2358, +0, 2053, 2357, +0, 2060, 2357, +0, 2070, 2356, +0, 2083, 2355, +0, 2099, 2353, +0, 2117, 2353, +0, 2140, 2353, +0, 2168, 2353, +0, 2204, 2353, +0, 2248, 2353, +0, 2301, 2353, +0, 2353, 2344, +0, 2353, 2255, +0, 2353, 2099, +0, 2353, 1740, +0, 2487, 0, +0, 2620, 0, +1575, 2753, 0, +2144, 2886, 0, +2449, 3018, 0, +2678, 3151, 0, +2870, 3283, 0, +3043, 3415, 0, +3203, 3548, 0, +3356, 3680, 0, +3502, 3812, 0, +3645, 3944, 0, +3784, 4076, 0, +3922, 4095, 0, +0, 2019, 2358, +0, 2022, 2358, +0, 2027, 2358, +0, 2032, 2357, +0, 2040, 2357, +0, 2050, 2356, +0, 2063, 2355, +0, 2081, 2353, +0, 2102, 2352, +0, 2126, 2352, +0, 2155, 2352, +0, 2192, 2352, +0, 2237, 2352, +0, 2291, 2352, +0, 2352, 2349, +0, 2352, 2261, +0, 2352, 2107, +0, 2352, 1758, +0, 2486, 0, +0, 2619, 0, +1638, 2752, 0, +2163, 2885, 0, +2459, 3018, 0, +2684, 3151, 0, +2874, 3283, 0, +3046, 3415, 0, +3205, 3548, 0, +3357, 3680, 0, +3503, 3812, 0, +3645, 3944, 0, +3785, 4076, 0, +3923, 4095, 0, +0, 1989, 2358, +0, 1993, 2358, +0, 1997, 2358, +0, 2004, 2357, +0, 2012, 2357, +0, 2022, 2356, +0, 2037, 2355, +0, 2054, 2353, +0, 2078, 2352, +0, 2107, 2349, +0, 2138, 2349, +0, 2176, 2349, +0, 2223, 2349, +0, 2278, 2349, +0, 2343, 2349, +0, 2349, 2268, +0, 2349, 2118, +0, 2349, 1781, +0, 2484, 0, +0, 2618, 0, +1711, 2751, 0, +2188, 2885, 0, +2471, 3017, 0, +2691, 3150, 0, +2879, 3282, 0, +3049, 3415, 0, +3208, 3547, 0, +3359, 3680, 0, +3504, 3812, 0, +3646, 3944, 0, +3785, 4076, 0, +3923, 4095, 0, +0, 1946, 2358, +0, 1950, 2358, +0, 1955, 2358, +0, 1962, 2357, +0, 1970, 2357, +0, 1982, 2356, +0, 1998, 2355, +0, 2017, 2353, +0, 2042, 2352, +0, 2074, 2349, +0, 2113, 2346, +0, 2153, 2346, +0, 2202, 2346, +0, 2260, 2346, +0, 2328, 2346, +0, 2346, 2278, +0, 2346, 2132, +0, 2346, 1809, +0, 2481, 0, +0, 2616, 0, +1794, 2750, 0, +2218, 2883, 0, +2488, 3016, 0, +2702, 3150, 0, +2886, 3282, 0, +3054, 3414, 0, +3211, 3547, 0, +3361, 3679, 0, +3506, 3812, 0, +3648, 3944, 0, +3787, 4076, 0, +3924, 4095, 0, +0, 1880, 2358, +0, 1885, 2358, +0, 1891, 2358, +0, 1899, 2357, +0, 1909, 2357, +0, 1922, 2356, +0, 1940, 2355, +0, 1962, 2353, +0, 1990, 2352, +0, 2025, 2349, +0, 2069, 2346, +0, 2120, 2341, +0, 2173, 2341, +0, 2234, 2341, +0, 2305, 2341, +0, 2341, 2291, +0, 2341, 2150, +0, 2341, 1845, +0, 2478, 0, +547, 2613, 0, +1885, 2748, 0, +2256, 2882, 0, +2510, 3015, 0, +2715, 3149, 0, +2895, 3281, 0, +3060, 3414, 0, +3216, 3547, 0, +3364, 3679, 0, +3508, 3812, 0, +3649, 3944, 0, +3787, 4076, 0, +3925, 4095, 0, +0, 1775, 2358, +0, 1781, 2358, +0, 1788, 2358, +0, 1798, 2357, +0, 1811, 2357, +0, 1828, 2356, +0, 1849, 2355, +0, 1876, 2353, +0, 1910, 2352, +0, 1951, 2349, +0, 2002, 2346, +0, 2061, 2341, +345, 2131, 2335, +345, 2198, 2335, +345, 2274, 2335, +345, 2335, 2308, +345, 2335, 2173, +345, 2335, 1889, +0, 2473, 557, +1330, 2610, 0, +1983, 2746, 0, +2302, 2880, 0, +2536, 3014, 0, +2733, 3148, 0, +2907, 3280, 0, +3069, 3414, 0, +3221, 3546, 0, +3368, 3679, 0, +3511, 3811, 0, +3651, 3944, 0, +3789, 4076, 0, +3926, 4095, 0, +0, 1580, 2358, +0, 1589, 2358, +0, 1600, 2358, +0, 1615, 2357, +0, 1634, 2357, +0, 1659, 2356, +0, 1689, 2355, +0, 1727, 2353, +0, 1773, 2352, +0, 1829, 2349, +0, 1894, 2346, +0, 1968, 2341, +345, 2052, 2335, +1269, 2144, 2326, +1269, 2229, 2326, +1269, 2323, 2326, +1269, 2326, 2202, +1269, 2326, 1941, +477, 2467, 1099, +1667, 2605, 0, +2089, 2742, 0, +2358, 2878, 0, +2570, 3012, 0, +2755, 3146, 0, +2922, 3280, 0, +3079, 3413, 0, +3229, 3546, 0, +3374, 3678, 0, +3516, 3811, 0, +3655, 3943, 0, +3792, 4076, 0, +3927, 4095, 0, +0, 1009, 2358, +0, 1039, 2358, +0, 1076, 2358, +0, 1122, 2357, +0, 1176, 2357, +0, 1240, 2356, +0, 1313, 2355, +0, 1396, 2353, +0, 1487, 2352, +0, 1586, 2349, +0, 1692, 2346, +0, 1803, 2341, +345, 1919, 2335, +1269, 2038, 2326, +1619, 2161, 2315, +1619, 2268, 2315, +1619, 2315, 2237, +1619, 2315, 2003, +1403, 2459, 1401, +1908, 2599, 611, +2200, 2738, 0, +2423, 2874, 0, +2612, 3010, 0, +2783, 3144, 0, +2942, 3278, 0, +3093, 3412, 0, +3239, 3545, 0, +3381, 3678, 0, +3521, 3810, 0, +3659, 3943, 0, +3795, 4075, 0, +3930, 4095, 0, +0, 0, 2358, +0, 0, 2358, +0, 0, 2358, +0, 0, 2357, +0, 0, 2357, +0, 0, 2356, +0, 0, 2355, +0, 0, 2353, +0, 0, 2352, +0, 275, 2349, +0, 1064, 2346, +0, 1403, 2341, +345, 1644, 2335, +1269, 1843, 2326, +1619, 2020, 2315, +1865, 2183, 2299, +1865, 2299, 2281, +1865, 2299, 2075, +1850, 2447, 1751, +2108, 2591, 1533, +2315, 2731, 738, +2497, 2870, 0, +2662, 3006, 0, +2818, 3142, 0, +2967, 3276, 0, +3111, 3410, 0, +3253, 3544, 0, +3391, 3677, 0, +3528, 3810, 0, +3664, 3943, 0, +3798, 4075, 0, +3933, 4095, 0, +0, 0, 2358, +0, 0, 2358, +0, 0, 2358, +0, 0, 2357, +0, 0, 2357, +0, 0, 2356, +0, 0, 2355, +0, 0, 2353, +0, 0, 2352, +0, 0, 2349, +0, 0, 2346, +437, 0, 2341, +970, 345, 2335, +1269, 1270, 2326, +1619, 1718, 2315, +1865, 1994, 2299, +2067, 2210, 2277, +2067, 2277, 2155, +2126, 2431, 1997, +2284, 2579, 1883, +2435, 2723, 1664, +2580, 2863, 870, +2722, 3002, 0, +2861, 3138, 0, +2998, 3274, 0, +3134, 3408, 0, +3270, 3543, 0, +3404, 3676, 0, +3537, 3809, 0, +3671, 3942, 0, +3803, 4075, 0, +3937, 4095, 0, +1692, 0, 2358, +1694, 0, 2358, +1698, 0, 2358, +1702, 0, 2357, +1708, 0, 2357, +1716, 0, 2356, +1727, 0, 2355, +1740, 0, 2353, +1758, 0, 2352, +1781, 0, 2349, +1809, 0, 2346, +1845, 0, 2341, +1889, 345, 2335, +1941, 1269, 2326, +2003, 1619, 2315, +2075, 1865, 2299, +2155, 2067, 2277, +2245, 2245, 2245, +2343, 2409, 2199, +2447, 2563, 2129, +2557, 2711, 2015, +2672, 2855, 1796, +2791, 2995, 1006, +2913, 3134, 0, +3037, 3270, 0, +3164, 3406, 0, +3291, 3541, 0, +3420, 3675, 0, +3550, 3808, 0, +3680, 3941, 0, +3810, 4074, 0, +3942, 4095, 0, +2209, 0, 2491, +2210, 0, 2491, +2211, 0, 2490, +2213, 0, 2490, +2215, 0, 2489, +2218, 0, 2489, +2221, 0, 2488, +2226, 0, 2487, +2232, 0, 2486, +2240, 0, 2484, +2251, 0, 2481, +2264, 0, 2478, +2282, 0, 2473, +2305, 477, 2467, +2334, 1401, 2459, +2370, 1751, 2447, +2414, 1997, 2431, +2409, 2199, 2343, +2409, 2288, 2199, +2563, 2545, 2129, +2665, 2711, 2015, +2758, 2855, 1796, +2858, 2995, 1006, +2965, 3134, 0, +3078, 3270, 0, +3194, 3406, 0, +3315, 3541, 0, +3438, 3675, 0, +3563, 3808, 0, +3690, 3941, 0, +3818, 4074, 0, +3947, 4095, 0, +2503, 0, 2623, +2503, 0, 2623, +2504, 0, 2623, +2505, 0, 2622, +2506, 0, 2622, +2507, 0, 2621, +2509, 0, 2621, +2511, 0, 2620, +2515, 0, 2619, +2519, 0, 2618, +2525, 0, 2616, +2533, 0, 2613, +2543, 0, 2610, +2556, 0, 2605, +2572, 611, 2599, +2591, 1533, 2587, +2579, 1883, 2533, +2563, 2129, 2447, +2563, 2129, 2258, +2563, 2339, 2129, +2711, 2634, 2015, +2852, 2855, 1796, +2935, 2995, 1006, +3027, 3134, 0, +3126, 3270, 0, +3233, 3406, 0, +3344, 3541, 0, +3461, 3675, 0, +3581, 3808, 0, +3703, 3941, 0, +3828, 4074, 0, +3955, 4095, 0, +2727, 0, 2755, +2727, 0, 2755, +2728, 0, 2755, +2728, 0, 2755, +2729, 0, 2755, +2730, 0, 2754, +2731, 0, 2754, +2732, 0, 2753, +2734, 0, 2752, +2737, 0, 2751, +2741, 0, 2750, +2745, 0, 2748, +2746, 0, 2740, +2742, 0, 2724, +2738, 0, 2702, +2731, 738, 2671, +2723, 1664, 2626, +2711, 2015, 2557, +2711, 2015, 2416, +2711, 2015, 2114, +2711, 2400, 2015, +2855, 2730, 1796, +2995, 2968, 1006, +3098, 3134, 0, +3184, 3270, 0, +3279, 3406, 0, +3381, 3541, 0, +3490, 3675, 0, +3603, 3808, 0, +3720, 3941, 0, +3841, 4074, 0, +3965, 4095, 0, +2887, 0, 2856, +2887, 0, 2855, +2887, 0, 2855, +2887, 0, 2854, +2887, 0, 2853, +2887, 0, 2852, +2886, 0, 2850, +2886, 0, 2848, +2885, 0, 2845, +2885, 0, 2842, +2883, 0, 2836, +2882, 0, 2829, +2880, 0, 2820, +2878, 0, 2807, +2874, 0, 2788, +2870, 0, 2763, +2863, 870, 2726, +2855, 1796, 2672, +2855, 1796, 2567, +2855, 1796, 2372, +2855, 1796, 1797, +2855, 2470, 1796, +2995, 2833, 1006, +3134, 3084, 0, +3252, 3270, 0, +3335, 3406, 0, +3426, 3541, 0, +3525, 3675, 0, +3631, 3808, 0, +3742, 3941, 0, +3858, 4074, 0, +3978, 4095, 0, +3019, 0, 2938, +3019, 0, 2938, +3019, 0, 2938, +3019, 0, 2937, +3019, 0, 2936, +3019, 0, 2935, +3018, 0, 2934, +3018, 0, 2932, +3018, 0, 2930, +3017, 0, 2927, +3016, 0, 2922, +3015, 0, 2916, +3014, 0, 2908, +3012, 0, 2898, +3010, 0, 2883, +3006, 0, 2862, +3002, 0, 2833, +2995, 1006, 2791, +2995, 1006, 2712, +2995, 1006, 2579, +2995, 1006, 2303, +2995, 1635, 1006, +2995, 2549, 1006, +3134, 2943, 0, +3270, 3203, 0, +3400, 3406, 0, +3480, 3541, 0, +3569, 3675, 0, +3666, 3808, 0, +3770, 3941, 0, +3880, 4074, 0, +3994, 4095, 0, +3152, 0, 3030, +3152, 0, 3029, +3152, 0, 3029, +3151, 0, 3029, +3151, 0, 3028, +3151, 0, 3027, +3151, 0, 3026, +3151, 0, 3025, +3151, 0, 3023, +3150, 0, 3020, +3150, 0, 3017, +3149, 0, 3012, +3148, 0, 3005, +3146, 0, 2997, +3144, 0, 2985, +3142, 0, 2969, +3138, 0, 2946, +3134, 0, 2913, +3134, 0, 2854, +3134, 0, 2761, +3134, 0, 2596, +3134, 0, 2195, +3134, 1211, 0, +3134, 2638, 0, +3270, 3056, 0, +3406, 3325, 0, +3541, 3538, 0, +3622, 3675, 0, +3709, 3808, 0, +3805, 3941, 0, +3907, 4074, 0, +4016, 4095, 0, +3284, 0, 3128, +3283, 0, 3128, +3283, 0, 3128, +3283, 0, 3128, +3283, 0, 3127, +3283, 0, 3127, +3283, 0, 3126, +3283, 0, 3125, +3283, 0, 3123, +3282, 0, 3121, +3282, 0, 3118, +3281, 0, 3114, +3280, 0, 3109, +3280, 0, 3102, +3278, 0, 3093, +3276, 0, 3080, +3274, 0, 3062, +3270, 0, 3037, +3270, 0, 2993, +3270, 0, 2926, +3270, 0, 2818, +3270, 0, 2616, +3270, 0, 1990, +3270, 0, 0, +3270, 2734, 0, +3406, 3175, 0, +3541, 3450, 0, +3675, 3665, 0, +3761, 3808, 0, +3847, 3941, 0, +3941, 4074, 0, +4043, 4095, 0, +3416, 0, 3234, +3416, 0, 3234, +3416, 0, 3234, +3416, 0, 3234, +3416, 0, 3233, +3416, 0, 3233, +3415, 0, 3232, +3415, 0, 3231, +3415, 0, 3230, +3415, 0, 3228, +3414, 0, 3226, +3414, 0, 3223, +3414, 0, 3219, +3413, 0, 3214, +3412, 0, 3206, +3410, 0, 3196, +3408, 0, 3183, +3406, 0, 3164, +3406, 0, 3131, +3406, 0, 3082, +3406, 0, 3008, +3406, 0, 2886, +3406, 0, 2643, +3406, 0, 1325, +3406, 0, 0, +3406, 2838, 0, +3541, 3296, 0, +3675, 3576, 0, +3808, 3794, 0, +3898, 3941, 0, +3983, 4074, 0, +4077, 4095, 0, +3548, 0, 3346, +3548, 0, 3346, +3548, 0, 3346, +3548, 0, 3345, +3548, 0, 3345, +3548, 0, 3344, +3548, 0, 3344, +3548, 0, 3343, +3548, 0, 3342, +3547, 0, 3341, +3547, 0, 3339, +3547, 0, 3337, +3546, 0, 3334, +3546, 0, 3330, +3545, 0, 3324, +3544, 0, 3316, +3543, 0, 3306, +3541, 0, 3291, +3541, 0, 3267, +3541, 0, 3231, +3541, 0, 3179, +3541, 0, 3099, +3541, 0, 2963, +3541, 0, 2676, +3541, 0, 0, +3541, 0, 0, +3541, 2947, 0, +3675, 3420, 0, +3808, 3704, 0, +3941, 3923, 0, +4034, 4074, 0, +4095, 4095, 0, +3680, 0, 3462, +3680, 0, 3462, +3680, 0, 3462, +3680, 0, 3461, +3680, 0, 3461, +3680, 0, 3461, +3680, 0, 3460, +3680, 0, 3460, +3680, 0, 3459, +3680, 0, 3458, +3679, 0, 3457, +3679, 0, 3455, +3679, 0, 3453, +3678, 0, 3449, +3678, 0, 3445, +3677, 0, 3439, +3676, 0, 3431, +3675, 0, 3420, +3675, 0, 3402, +3675, 0, 3376, +3675, 0, 3338, +3675, 0, 3283, +3675, 0, 3197, +3675, 0, 3048, +3675, 0, 2718, +3675, 0, 0, +3675, 0, 0, +3675, 3061, 0, +3808, 3546, 0, +3941, 3832, 0, +4074, 4053, 0, +4095, 4095, 0, +3812, 0, 3581, +3812, 0, 3581, +3812, 0, 3581, +3812, 0, 3581, +3812, 0, 3581, +3812, 0, 3581, +3812, 0, 3580, +3812, 0, 3580, +3812, 0, 3579, +3812, 0, 3579, +3812, 0, 3577, +3812, 0, 3576, +3811, 0, 3574, +3811, 0, 3572, +3810, 0, 3569, +3810, 0, 3564, +3809, 0, 3558, +3808, 0, 3550, +3808, 0, 3536, +3808, 0, 3517, +3808, 0, 3490, +3808, 0, 3451, +3808, 0, 3393, +3808, 0, 3302, +3808, 0, 3143, +3808, 0, 2767, +3808, 0, 0, +3808, 0, 0, +3808, 3180, 0, +3941, 3674, 0, +4074, 3962, 0, +4095, 4095, 0, +3944, 0, 3704, +3944, 0, 3704, +3944, 0, 3704, +3944, 0, 3703, +3944, 0, 3703, +3944, 0, 3703, +3944, 0, 3703, +3944, 0, 3703, +3944, 0, 3702, +3944, 0, 3702, +3944, 0, 3701, +3944, 0, 3700, +3944, 0, 3699, +3943, 0, 3697, +3943, 0, 3694, +3943, 0, 3691, +3942, 0, 3686, +3941, 0, 3680, +3941, 0, 3669, +3941, 0, 3655, +3941, 0, 3635, +3941, 0, 3608, +3941, 0, 3568, +3941, 0, 3507, +3941, 0, 3413, +3941, 0, 3244, +3941, 0, 2826, +3941, 0, 0, +3941, 0, 0, +3941, 3302, 0, +4074, 3802, 0, +4095, 4092, 0, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3828, +4076, 0, 3827, +4076, 0, 3827, +4076, 0, 3826, +4076, 0, 3826, +4076, 0, 3824, +4076, 0, 3823, +4075, 0, 3821, +4075, 0, 3818, +4075, 0, 3815, +4074, 0, 3810, +4074, 0, 3803, +4074, 0, 3792, +4074, 0, 3777, +4074, 0, 3757, +4074, 0, 3729, +4074, 0, 3688, +4074, 0, 3626, +4074, 0, 3528, +4074, 0, 3351, +4074, 0, 2893, +4074, 0, 0, +4074, 0, 0, +4074, 3426, 0, +4095, 3932, 0, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3955, +4095, 0, 3954, +4095, 0, 3954, +4095, 0, 3954, +4095, 0, 3953, +4095, 0, 3952, +4095, 0, 3951, +4095, 0, 3950, +4095, 0, 3948, +4095, 0, 3945, +4095, 0, 3942, +4095, 0, 3936, +4095, 0, 3928, +4095, 0, 3917, +4095, 0, 3903, +4095, 0, 3882, +4095, 0, 3853, +4095, 0, 3811, +4095, 0, 3748, +4095, 0, 3648, +4095, 0, 3465, +4095, 0, 2973, +4095, 0, 0, +4095, 0, 0, +4095, 3552, 0, +0, 2222, 2491, +0, 2224, 2491, +0, 2226, 2491, +0, 2230, 2491, +0, 2234, 2491, +0, 2239, 2491, +0, 2247, 2491, +0, 2256, 2491, +0, 2269, 2491, +0, 2285, 2491, +0, 2306, 2491, +0, 2333, 2491, +0, 2367, 2491, +0, 2408, 2491, +0, 2458, 2491, +0, 2491, 2463, +0, 2491, 2371, +0, 2491, 2209, +0, 2491, 1822, +0, 2623, 0, +0, 2755, 0, +1472, 2887, 0, +2220, 3019, 0, +2554, 3152, 0, +2793, 3284, 0, +2992, 3416, 0, +3168, 3548, 0, +3330, 3680, 0, +3484, 3812, 0, +3631, 3944, 0, +3774, 4076, 0, +3915, 4095, 0, +0, 2220, 2491, +0, 2223, 2491, +0, 2225, 2491, +0, 2228, 2491, +0, 2233, 2491, +0, 2238, 2491, +0, 2245, 2491, +0, 2255, 2491, +0, 2268, 2491, +0, 2284, 2491, +0, 2305, 2491, +0, 2332, 2491, +0, 2366, 2491, +0, 2407, 2491, +0, 2457, 2491, +0, 2491, 2464, +0, 2491, 2372, +0, 2491, 2210, +0, 2491, 1824, +0, 2623, 0, +0, 2755, 0, +1483, 2887, 0, +2222, 3019, 0, +2555, 3152, 0, +2793, 3283, 0, +2992, 3416, 0, +3168, 3548, 0, +3331, 3680, 0, +3484, 3812, 0, +3632, 3944, 0, +3775, 4076, 0, +3915, 4095, 0, +0, 2218, 2491, +0, 2220, 2491, +0, 2223, 2490, +0, 2226, 2490, +0, 2230, 2490, +0, 2236, 2490, +0, 2243, 2490, +0, 2253, 2490, +0, 2266, 2490, +0, 2283, 2490, +0, 2304, 2490, +0, 2331, 2490, +0, 2364, 2490, +0, 2406, 2490, +0, 2456, 2490, +0, 2490, 2464, +0, 2490, 2373, +0, 2490, 2211, +0, 2490, 1826, +0, 2623, 0, +0, 2755, 0, +1497, 2887, 0, +2225, 3019, 0, +2556, 3152, 0, +2794, 3283, 0, +2992, 3416, 0, +3168, 3548, 0, +3331, 3680, 0, +3484, 3812, 0, +3632, 3944, 0, +3775, 4076, 0, +3915, 4095, 0, +0, 2215, 2491, +0, 2217, 2491, +0, 2220, 2490, +0, 2223, 2490, +0, 2228, 2490, +0, 2234, 2490, +0, 2241, 2490, +0, 2251, 2490, +0, 2264, 2490, +0, 2280, 2490, +0, 2302, 2490, +0, 2329, 2490, +0, 2362, 2490, +0, 2404, 2490, +0, 2454, 2490, +0, 2490, 2465, +0, 2490, 2374, +0, 2490, 2213, +0, 2490, 1830, +0, 2622, 0, +0, 2755, 0, +1516, 2887, 0, +2229, 3019, 0, +2558, 3151, 0, +2795, 3283, 0, +2993, 3416, 0, +3169, 3548, 0, +3331, 3680, 0, +3485, 3812, 0, +3632, 3944, 0, +3775, 4076, 0, +3915, 4095, 0, +0, 2210, 2491, +0, 2212, 2491, +0, 2215, 2490, +0, 2219, 2490, +0, 2224, 2489, +0, 2230, 2489, +0, 2238, 2489, +0, 2247, 2489, +0, 2260, 2489, +0, 2277, 2489, +0, 2298, 2489, +0, 2326, 2489, +0, 2360, 2489, +0, 2401, 2489, +0, 2452, 2489, +0, 2489, 2466, +0, 2489, 2375, +0, 2489, 2215, +0, 2489, 1834, +0, 2622, 0, +0, 2755, 0, +1540, 2887, 0, +2234, 3019, 0, +2560, 3151, 0, +2797, 3283, 0, +2994, 3416, 0, +3170, 3548, 0, +3332, 3680, 0, +3485, 3812, 0, +3632, 3944, 0, +3775, 4076, 0, +3915, 4095, 0, +0, 2204, 2491, +0, 2206, 2491, +0, 2209, 2490, +0, 2213, 2490, +0, 2219, 2489, +0, 2226, 2489, +0, 2233, 2489, +0, 2243, 2489, +0, 2256, 2489, +0, 2273, 2489, +0, 2294, 2489, +0, 2322, 2489, +0, 2356, 2489, +0, 2398, 2489, +0, 2449, 2489, +0, 2489, 2468, +0, 2489, 2377, +0, 2489, 2218, +0, 2489, 1840, +0, 2621, 0, +0, 2754, 0, +1569, 2887, 0, +2241, 3019, 0, +2564, 3151, 0, +2799, 3283, 0, +2996, 3416, 0, +3171, 3548, 0, +3332, 3680, 0, +3485, 3812, 0, +3632, 3944, 0, +3775, 4076, 0, +3916, 4095, 0, +0, 2196, 2491, +0, 2199, 2491, +0, 2202, 2490, +0, 2206, 2490, +0, 2211, 2489, +0, 2218, 2489, +0, 2227, 2488, +0, 2237, 2488, +0, 2250, 2488, +0, 2267, 2488, +0, 2289, 2488, +0, 2317, 2488, +0, 2352, 2488, +0, 2394, 2488, +0, 2445, 2488, +0, 2488, 2470, +0, 2488, 2379, +0, 2488, 2221, +0, 2488, 1848, +0, 2621, 0, +0, 2754, 0, +1606, 2886, 0, +2249, 3018, 0, +2568, 3151, 0, +2801, 3283, 0, +2997, 3415, 0, +3172, 3548, 0, +3333, 3680, 0, +3486, 3812, 0, +3633, 3944, 0, +3776, 4076, 0, +3916, 4095, 0, +0, 2185, 2491, +0, 2187, 2491, +0, 2190, 2490, +0, 2195, 2490, +0, 2200, 2489, +0, 2207, 2489, +0, 2217, 2488, +0, 2229, 2487, +0, 2242, 2487, +0, 2260, 2487, +0, 2282, 2487, +0, 2310, 2487, +0, 2345, 2487, +0, 2388, 2487, +0, 2440, 2487, +0, 2487, 2473, +0, 2487, 2383, +0, 2487, 2226, +0, 2487, 1859, +0, 2620, 0, +0, 2753, 0, +1651, 2886, 0, +2261, 3018, 0, +2573, 3151, 0, +2805, 3283, 0, +2999, 3415, 0, +3173, 3548, 0, +3334, 3680, 0, +3487, 3812, 0, +3633, 3944, 0, +3776, 4076, 0, +3916, 4095, 0, +0, 2170, 2491, +0, 2172, 2491, +0, 2175, 2490, +0, 2180, 2490, +0, 2185, 2489, +0, 2193, 2489, +0, 2202, 2488, +0, 2215, 2487, +0, 2231, 2486, +0, 2249, 2486, +0, 2272, 2486, +0, 2301, 2486, +0, 2336, 2486, +0, 2380, 2486, +0, 2433, 2486, +0, 2486, 2476, +0, 2486, 2387, +0, 2486, 2232, +0, 2486, 1873, +0, 2619, 0, +0, 2752, 0, +1706, 2885, 0, +2276, 3018, 0, +2581, 3151, 0, +2809, 3283, 0, +3002, 3415, 0, +3175, 3548, 0, +3336, 3680, 0, +3488, 3812, 0, +3634, 3944, 0, +3777, 4076, 0, +3917, 4095, 0, +0, 2149, 2491, +0, 2151, 2491, +0, 2154, 2490, +0, 2159, 2490, +0, 2165, 2489, +0, 2172, 2489, +0, 2183, 2488, +0, 2196, 2487, +0, 2213, 2486, +0, 2235, 2484, +0, 2258, 2484, +0, 2288, 2484, +0, 2325, 2484, +0, 2369, 2484, +0, 2423, 2484, +0, 2484, 2481, +0, 2484, 2393, +0, 2484, 2240, +0, 2484, 1891, +0, 2618, 0, +0, 2751, 0, +1769, 2885, 0, +2294, 3017, 0, +2591, 3150, 0, +2815, 3282, 0, +3006, 3415, 0, +3178, 3547, 0, +3337, 3680, 0, +3489, 3812, 0, +3635, 3944, 0, +3777, 4076, 0, +3917, 4095, 0, +0, 2119, 2491, +0, 2121, 2491, +0, 2125, 2490, +0, 2129, 2490, +0, 2136, 2489, +0, 2144, 2489, +0, 2155, 2488, +0, 2169, 2487, +0, 2187, 2486, +0, 2210, 2484, +0, 2239, 2481, +0, 2270, 2481, +0, 2308, 2481, +0, 2355, 2481, +0, 2410, 2481, +0, 2475, 2481, +0, 2481, 2401, +0, 2481, 2251, +0, 2481, 1913, +0, 2616, 0, +0, 2750, 0, +1843, 2883, 0, +2319, 3016, 0, +2604, 3150, 0, +2823, 3282, 0, +3011, 3414, 0, +3182, 3547, 0, +3340, 3679, 0, +3491, 3812, 0, +3636, 3944, 0, +3778, 4076, 0, +3918, 4095, 0, +0, 2075, 2491, +0, 2078, 2491, +0, 2082, 2490, +0, 2087, 2490, +0, 2094, 2489, +0, 2103, 2489, +0, 2115, 2488, +0, 2130, 2487, +0, 2149, 2486, +0, 2174, 2484, +0, 2206, 2481, +0, 2245, 2478, +0, 2285, 2478, +0, 2334, 2478, +0, 2392, 2478, +0, 2460, 2478, +0, 2478, 2411, +0, 2478, 2264, +0, 2478, 1941, +0, 2613, 0, +0, 2748, 0, +1925, 2882, 0, +2350, 3015, 0, +2620, 3149, 0, +2833, 3281, 0, +3018, 3414, 0, +3186, 3547, 0, +3343, 3679, 0, +3493, 3812, 0, +3638, 3944, 0, +3780, 4076, 0, +3919, 4095, 0, +0, 2009, 2491, +0, 2013, 2491, +0, 2017, 2490, +0, 2023, 2490, +0, 2031, 2489, +0, 2041, 2489, +0, 2055, 2488, +0, 2072, 2487, +0, 2094, 2486, +0, 2122, 2484, +0, 2158, 2481, +0, 2201, 2478, +0, 2253, 2473, +0, 2305, 2473, +0, 2366, 2473, +0, 2438, 2473, +0, 2473, 2423, +0, 2473, 2282, +0, 2473, 1977, +0, 2610, 0, +678, 2746, 0, +2016, 2880, 0, +2388, 3014, 0, +2642, 3148, 0, +2847, 3280, 0, +3027, 3414, 0, +3192, 3546, 0, +3348, 3679, 0, +3496, 3811, 0, +3640, 3944, 0, +3781, 4076, 0, +3920, 4095, 0, +0, 1903, 2491, +0, 1907, 2491, +0, 1913, 2490, +0, 1920, 2490, +0, 1930, 2489, +0, 1943, 2489, +0, 1960, 2488, +0, 1981, 2487, +0, 2008, 2486, +0, 2042, 2484, +0, 2084, 2481, +0, 2134, 2478, +0, 2194, 2473, +477, 2263, 2467, +477, 2330, 2467, +477, 2407, 2467, +477, 2467, 2440, +477, 2467, 2305, +477, 2467, 2021, +0, 2605, 705, +1463, 2742, 0, +2115, 2878, 0, +2434, 3012, 0, +2669, 3146, 0, +2865, 3280, 0, +3039, 3413, 0, +3201, 3546, 0, +3354, 3678, 0, +3501, 3811, 0, +3644, 3943, 0, +3784, 4076, 0, +3922, 4095, 0, +0, 1706, 2491, +0, 1713, 2491, +0, 1722, 2490, +0, 1733, 2490, +0, 1748, 2489, +0, 1767, 2489, +0, 1791, 2488, +0, 1822, 2487, +0, 1859, 2486, +0, 1906, 2484, +0, 1961, 2481, +0, 2026, 2478, +0, 2100, 2473, +477, 2184, 2467, +1401, 2276, 2459, +1401, 2362, 2459, +1401, 2455, 2459, +1401, 2459, 2334, +1401, 2459, 2073, +611, 2599, 1236, +1799, 2738, 0, +2220, 2874, 0, +2489, 3010, 0, +2703, 3144, 0, +2886, 3278, 0, +3055, 3412, 0, +3211, 3545, 0, +3361, 3678, 0, +3506, 3810, 0, +3648, 3943, 0, +3787, 4075, 0, +3924, 4095, 0, +0, 1120, 2491, +0, 1143, 2491, +0, 1173, 2490, +0, 1210, 2490, +0, 1255, 2489, +0, 1310, 2489, +0, 1373, 2488, +0, 1446, 2487, +0, 1529, 2486, +0, 1620, 2484, +0, 1719, 2481, +0, 1824, 2478, +0, 1935, 2473, +477, 2051, 2467, +1401, 2171, 2459, +1751, 2293, 2447, +1751, 2401, 2447, +1751, 2447, 2370, +1751, 2447, 2135, +1533, 2591, 1533, +2040, 2731, 738, +2332, 2870, 0, +2554, 3006, 0, +2744, 3142, 0, +2915, 3276, 0, +3074, 3410, 0, +3225, 3544, 0, +3371, 3677, 0, +3514, 3810, 0, +3653, 3943, 0, +3790, 4075, 0, +3927, 4095, 0, +0, 0, 2491, +0, 0, 2491, +0, 0, 2490, +0, 0, 2490, +0, 0, 2489, +0, 0, 2489, +0, 0, 2488, +0, 0, 2487, +0, 0, 2486, +0, 0, 2484, +0, 415, 2481, +0, 1199, 2478, +0, 1535, 2473, +477, 1776, 2467, +1401, 1976, 2459, +1751, 2152, 2447, +1997, 2315, 2431, +1997, 2431, 2414, +1997, 2431, 2207, +1981, 2579, 1883, +2240, 2723, 1664, +2447, 2863, 870, +2628, 3002, 0, +2795, 3138, 0, +2950, 3274, 0, +3099, 3408, 0, +3243, 3543, 0, +3385, 3676, 0, +3523, 3809, 0, +3660, 3942, 0, +3796, 4075, 0, +3931, 4095, 0, +0, 0, 2491, +0, 0, 2491, +0, 0, 2490, +0, 0, 2490, +0, 0, 2489, +0, 0, 2489, +0, 0, 2488, +0, 0, 2487, +0, 0, 2486, +0, 0, 2484, +0, 0, 2481, +0, 0, 2478, +557, 0, 2473, +1099, 477, 2467, +1401, 1403, 2459, +1751, 1850, 2447, +1997, 2126, 2431, +2199, 2343, 2409, +2199, 2409, 2288, +2258, 2563, 2129, +2416, 2711, 2015, +2567, 2855, 1796, +2712, 2995, 1006, +2854, 3134, 0, +2993, 3270, 0, +3131, 3406, 0, +3267, 3541, 0, +3402, 3675, 0, +3536, 3808, 0, +3669, 3941, 0, +3803, 4074, 0, +3936, 4095, 0, +1822, 0, 2491, +1824, 0, 2491, +1826, 0, 2490, +1830, 0, 2490, +1834, 0, 2489, +1840, 0, 2489, +1848, 0, 2488, +1859, 0, 2487, +1873, 0, 2486, +1891, 0, 2484, +1913, 0, 2481, +1941, 0, 2478, +1977, 0, 2473, +2021, 477, 2467, +2073, 1401, 2459, +2135, 1751, 2447, +2207, 1997, 2431, +2288, 2199, 2409, +2377, 2377, 2377, +2475, 2541, 2331, +2579, 2696, 2261, +2689, 2843, 2147, +2804, 2987, 1930, +2923, 3128, 1137, +3045, 3266, 0, +3170, 3402, 0, +3296, 3538, 0, +3423, 3673, 0, +3552, 3807, 0, +3682, 3940, 0, +3812, 4073, 0, +3943, 4095, 0, +2340, 0, 2623, +2341, 0, 2623, +2342, 0, 2623, +2343, 0, 2622, +2344, 0, 2622, +2346, 0, 2621, +2349, 0, 2621, +2352, 0, 2620, +2357, 0, 2619, +2363, 0, 2618, +2372, 0, 2616, +2382, 0, 2613, +2396, 0, 2610, +2414, 0, 2605, +2437, 611, 2599, +2466, 1533, 2591, +2502, 1883, 2579, +2545, 2129, 2563, +2541, 2331, 2475, +2541, 2420, 2331, +2696, 2678, 2261, +2797, 2843, 2147, +2890, 2987, 1930, +2991, 3128, 1137, +3097, 3266, 0, +3210, 3402, 0, +3326, 3538, 0, +3447, 3673, 0, +3570, 3807, 0, +3695, 3940, 0, +3822, 4073, 0, +3950, 4095, 0, +2635, 0, 2755, +2635, 0, 2755, +2636, 0, 2755, +2636, 0, 2755, +2637, 0, 2755, +2638, 0, 2754, +2640, 0, 2754, +2641, 0, 2753, +2644, 0, 2752, +2647, 0, 2751, +2651, 0, 2750, +2657, 0, 2748, +2665, 0, 2746, +2675, 0, 2742, +2688, 0, 2738, +2705, 738, 2731, +2723, 1664, 2719, +2711, 2015, 2665, +2696, 2261, 2579, +2696, 2261, 2391, +2696, 2471, 2261, +2843, 2766, 2147, +2984, 2987, 1930, +3067, 3128, 1137, +3159, 3266, 0, +3259, 3402, 0, +3365, 3538, 0, +3477, 3673, 0, +3593, 3807, 0, +3713, 3940, 0, +3835, 4073, 0, +3961, 4095, 0, +2859, 0, 2887, +2859, 0, 2887, +2859, 0, 2887, +2860, 0, 2887, +2860, 0, 2887, +2861, 0, 2887, +2862, 0, 2886, +2863, 0, 2886, +2864, 0, 2885, +2866, 0, 2885, +2869, 0, 2883, +2873, 0, 2882, +2877, 0, 2880, +2878, 0, 2872, +2874, 0, 2856, +2870, 0, 2834, +2863, 870, 2803, +2855, 1796, 2758, +2843, 2147, 2689, +2843, 2147, 2549, +2843, 2147, 2246, +2843, 2532, 2147, +2987, 2862, 1930, +3128, 3101, 1137, +3230, 3266, 0, +3317, 3402, 0, +3411, 3538, 0, +3513, 3673, 0, +3622, 3807, 0, +3735, 3940, 0, +3852, 4073, 0, +3974, 4095, 0, +3019, 0, 2988, +3019, 0, 2987, +3019, 0, 2987, +3019, 0, 2987, +3019, 0, 2986, +3019, 0, 2985, +3018, 0, 2984, +3018, 0, 2982, +3018, 0, 2980, +3017, 0, 2977, +3016, 0, 2974, +3015, 0, 2968, +3014, 0, 2961, +3012, 0, 2952, +3010, 0, 2939, +3006, 0, 2920, +3002, 0, 2895, +2995, 1006, 2858, +2987, 1930, 2804, +2987, 1930, 2699, +2987, 1930, 2503, +2987, 1930, 1930, +2987, 2602, 1930, +3128, 2965, 1137, +3266, 3216, 0, +3384, 3402, 0, +3467, 3538, 0, +3558, 3673, 0, +3657, 3807, 0, +3763, 3940, 0, +3874, 4073, 0, +3990, 4095, 0, +3152, 0, 3071, +3152, 0, 3070, +3152, 0, 3070, +3151, 0, 3070, +3151, 0, 3069, +3151, 0, 3068, +3151, 0, 3067, +3151, 0, 3066, +3151, 0, 3064, +3150, 0, 3062, +3150, 0, 3059, +3149, 0, 3055, +3148, 0, 3049, +3146, 0, 3041, +3144, 0, 3030, +3142, 0, 3015, +3138, 0, 2995, +3134, 0, 2965, +3128, 1137, 2923, +3128, 1137, 2845, +3128, 1137, 2712, +3128, 1137, 2436, +3128, 1758, 1137, +3128, 2681, 1137, +3266, 3074, 0, +3402, 3335, 0, +3532, 3538, 0, +3612, 3673, 0, +3701, 3807, 0, +3798, 3940, 0, +3902, 4073, 0, +4012, 4095, 0, +3284, 0, 3162, +3283, 0, 3162, +3283, 0, 3161, +3283, 0, 3161, +3283, 0, 3160, +3283, 0, 3160, +3283, 0, 3159, +3283, 0, 3158, +3283, 0, 3157, +3282, 0, 3155, +3282, 0, 3152, +3281, 0, 3149, +3280, 0, 3144, +3280, 0, 3138, +3278, 0, 3129, +3276, 0, 3117, +3274, 0, 3100, +3270, 0, 3078, +3266, 0, 3045, +3266, 0, 2986, +3266, 0, 2893, +3266, 0, 2727, +3266, 0, 2327, +3266, 1375, 0, +3266, 2770, 0, +3402, 3189, 0, +3538, 3457, 0, +3673, 3670, 0, +3754, 3807, 0, +3841, 3940, 0, +3937, 4073, 0, +4039, 4095, 0, +3416, 0, 3261, +3416, 0, 3261, +3416, 0, 3260, +3416, 0, 3260, +3416, 0, 3260, +3416, 0, 3259, +3415, 0, 3259, +3415, 0, 3258, +3415, 0, 3257, +3415, 0, 3255, +3414, 0, 3253, +3414, 0, 3250, +3414, 0, 3247, +3413, 0, 3242, +3412, 0, 3234, +3410, 0, 3225, +3408, 0, 3212, +3406, 0, 3194, +3402, 0, 3170, +3402, 0, 3125, +3402, 0, 3059, +3402, 0, 2951, +3402, 0, 2749, +3402, 0, 2121, +3402, 0, 0, +3402, 2866, 0, +3538, 3307, 0, +3673, 3582, 0, +3807, 3797, 0, +3893, 3940, 0, +3979, 4073, 0, +4073, 4095, 0, +3548, 0, 3367, +3548, 0, 3367, +3548, 0, 3366, +3548, 0, 3366, +3548, 0, 3366, +3548, 0, 3365, +3548, 0, 3365, +3548, 0, 3364, +3548, 0, 3363, +3547, 0, 3362, +3547, 0, 3361, +3547, 0, 3358, +3546, 0, 3355, +3546, 0, 3351, +3545, 0, 3346, +3544, 0, 3339, +3543, 0, 3329, +3541, 0, 3315, +3538, 0, 3296, +3538, 0, 3263, +3538, 0, 3214, +3538, 0, 3140, +3538, 0, 3018, +3538, 0, 2775, +3538, 0, 1477, +3538, 0, 0, +3538, 2970, 0, +3673, 3429, 0, +3807, 3708, 0, +3940, 3926, 0, +4030, 4073, 0, +4095, 4095, 0, +3680, 0, 3478, +3680, 0, 3478, +3680, 0, 3478, +3680, 0, 3478, +3680, 0, 3478, +3680, 0, 3477, +3680, 0, 3477, +3680, 0, 3476, +3680, 0, 3475, +3680, 0, 3475, +3679, 0, 3473, +3679, 0, 3472, +3679, 0, 3469, +3678, 0, 3466, +3678, 0, 3462, +3677, 0, 3456, +3676, 0, 3448, +3675, 0, 3438, +3673, 0, 3423, +3673, 0, 3399, +3673, 0, 3363, +3673, 0, 3311, +3673, 0, 3231, +3673, 0, 3095, +3673, 0, 2809, +3673, 0, 0, +3673, 0, 0, +3673, 3079, 0, +3807, 3552, 0, +3940, 3836, 0, +4073, 4055, 0, +4095, 4095, 0, +3812, 0, 3594, +3812, 0, 3594, +3812, 0, 3594, +3812, 0, 3594, +3812, 0, 3594, +3812, 0, 3593, +3812, 0, 3593, +3812, 0, 3593, +3812, 0, 3592, +3812, 0, 3591, +3812, 0, 3590, +3812, 0, 3589, +3811, 0, 3587, +3811, 0, 3585, +3810, 0, 3582, +3810, 0, 3577, +3809, 0, 3571, +3808, 0, 3563, +3807, 0, 3552, +3807, 0, 3534, +3807, 0, 3508, +3807, 0, 3470, +3807, 0, 3415, +3807, 0, 3329, +3807, 0, 3181, +3807, 0, 2850, +3807, 0, 0, +3807, 0, 0, +3807, 3194, 0, +3940, 3678, 0, +4073, 3964, 0, +4095, 4095, 0, +3944, 0, 3713, +3944, 0, 3713, +3944, 0, 3713, +3944, 0, 3713, +3944, 0, 3713, +3944, 0, 3713, +3944, 0, 3713, +3944, 0, 3712, +3944, 0, 3712, +3944, 0, 3711, +3944, 0, 3711, +3944, 0, 3710, +3944, 0, 3708, +3943, 0, 3706, +3943, 0, 3704, +3943, 0, 3701, +3942, 0, 3696, +3941, 0, 3690, +3940, 0, 3682, +3940, 0, 3668, +3940, 0, 3649, +3940, 0, 3622, +3940, 0, 3583, +3940, 0, 3525, +3940, 0, 3434, +3940, 0, 3275, +3940, 0, 2899, +3940, 0, 0, +3940, 0, 0, +3940, 3312, 0, +4073, 3805, 0, +4095, 4094, 0, +4076, 0, 3836, +4076, 0, 3836, +4076, 0, 3836, +4076, 0, 3836, +4076, 0, 3836, +4076, 0, 3835, +4076, 0, 3835, +4076, 0, 3835, +4076, 0, 3835, +4076, 0, 3834, +4076, 0, 3834, +4076, 0, 3833, +4076, 0, 3832, +4076, 0, 3830, +4075, 0, 3829, +4075, 0, 3826, +4075, 0, 3823, +4074, 0, 3818, +4073, 0, 3812, +4073, 0, 3801, +4073, 0, 3787, +4073, 0, 3768, +4073, 0, 3740, +4073, 0, 3700, +4073, 0, 3640, +4073, 0, 3545, +4073, 0, 3376, +4073, 0, 2957, +4073, 0, 0, +4073, 0, 0, +4073, 3434, 0, +4095, 3935, 0, +4095, 0, 3961, +4095, 0, 3961, +4095, 0, 3961, +4095, 0, 3961, +4095, 0, 3961, +4095, 0, 3961, +4095, 0, 3961, +4095, 0, 3960, +4095, 0, 3960, +4095, 0, 3960, +4095, 0, 3959, +4095, 0, 3959, +4095, 0, 3958, +4095, 0, 3957, +4095, 0, 3955, +4095, 0, 3953, +4095, 0, 3951, +4095, 0, 3947, +4095, 0, 3943, +4095, 0, 3935, +4095, 0, 3924, +4095, 0, 3910, +4095, 0, 3890, +4095, 0, 3861, +4095, 0, 3820, +4095, 0, 3759, +4095, 0, 3661, +4095, 0, 3484, +4095, 0, 3027, +4095, 0, 0, +4095, 0, 0, +4095, 3558, 0, +0, 2354, 2623, +0, 2355, 2623, +0, 2357, 2623, +0, 2359, 2623, +0, 2363, 2623, +0, 2367, 2623, +0, 2372, 2623, +0, 2380, 2623, +0, 2390, 2623, +0, 2402, 2623, +0, 2419, 2623, +0, 2440, 2623, +0, 2466, 2623, +0, 2500, 2623, +0, 2541, 2623, +0, 2590, 2623, +0, 2623, 2595, +0, 2623, 2503, +0, 2623, 2340, +0, 2623, 1952, +0, 2755, 0, +0, 2887, 0, +1594, 3019, 0, +2352, 3152, 0, +2684, 3284, 0, +2925, 3416, 0, +3124, 3548, 0, +3300, 3680, 0, +3462, 3812, 0, +3616, 3944, 0, +3763, 4076, 0, +3907, 4095, 0, +0, 2352, 2623, +0, 2354, 2623, +0, 2356, 2623, +0, 2358, 2623, +0, 2362, 2623, +0, 2366, 2623, +0, 2372, 2623, +0, 2379, 2623, +0, 2388, 2623, +0, 2401, 2623, +0, 2417, 2623, +0, 2439, 2623, +0, 2465, 2623, +0, 2499, 2623, +0, 2540, 2623, +0, 2590, 2623, +0, 2623, 2595, +0, 2623, 2503, +0, 2623, 2341, +0, 2623, 1954, +0, 2755, 0, +0, 2887, 0, +1602, 3019, 0, +2353, 3152, 0, +2685, 3283, 0, +2925, 3416, 0, +3124, 3548, 0, +3300, 3680, 0, +3462, 3812, 0, +3616, 3944, 0, +3763, 4076, 0, +3907, 4095, 0, +0, 2351, 2623, +0, 2352, 2623, +0, 2355, 2623, +0, 2357, 2623, +0, 2360, 2623, +0, 2364, 2623, +0, 2370, 2623, +0, 2378, 2623, +0, 2387, 2623, +0, 2400, 2623, +0, 2416, 2623, +0, 2437, 2623, +0, 2464, 2623, +0, 2498, 2623, +0, 2539, 2623, +0, 2589, 2623, +0, 2623, 2596, +0, 2623, 2504, +0, 2623, 2342, +0, 2623, 1956, +0, 2755, 0, +0, 2887, 0, +1613, 3019, 0, +2355, 3152, 0, +2686, 3283, 0, +2926, 3416, 0, +3124, 3548, 0, +3300, 3680, 0, +3463, 3812, 0, +3616, 3944, 0, +3763, 4076, 0, +3907, 4095, 0, +0, 2348, 2623, +0, 2350, 2623, +0, 2352, 2623, +0, 2355, 2622, +0, 2358, 2622, +0, 2362, 2622, +0, 2368, 2622, +0, 2375, 2622, +0, 2385, 2622, +0, 2398, 2622, +0, 2414, 2622, +0, 2436, 2622, +0, 2463, 2622, +0, 2496, 2622, +0, 2538, 2622, +0, 2588, 2622, +0, 2622, 2596, +0, 2622, 2505, +0, 2622, 2343, +0, 2622, 1958, +0, 2755, 0, +0, 2887, 0, +1628, 3019, 0, +2358, 3151, 0, +2688, 3283, 0, +2927, 3416, 0, +3125, 3548, 0, +3301, 3680, 0, +3463, 3812, 0, +3616, 3944, 0, +3764, 4076, 0, +3907, 4095, 0, +0, 2345, 2623, +0, 2347, 2623, +0, 2349, 2623, +0, 2352, 2622, +0, 2356, 2622, +0, 2360, 2622, +0, 2366, 2622, +0, 2373, 2622, +0, 2383, 2622, +0, 2396, 2622, +0, 2412, 2622, +0, 2434, 2622, +0, 2460, 2622, +0, 2494, 2622, +0, 2536, 2622, +0, 2586, 2622, +0, 2622, 2597, +0, 2622, 2506, +0, 2622, 2344, +0, 2622, 1962, +0, 2755, 0, +0, 2887, 0, +1646, 3019, 0, +2362, 3151, 0, +2690, 3283, 0, +2928, 3416, 0, +3125, 3548, 0, +3301, 3680, 0, +3463, 3812, 0, +3617, 3944, 0, +3764, 4076, 0, +3907, 4095, 0, +0, 2341, 2623, +0, 2342, 2623, +0, 2345, 2623, +0, 2347, 2622, +0, 2351, 2622, +0, 2356, 2621, +0, 2362, 2621, +0, 2370, 2621, +0, 2380, 2621, +0, 2393, 2621, +0, 2409, 2621, +0, 2431, 2621, +0, 2458, 2621, +0, 2492, 2621, +0, 2533, 2621, +0, 2584, 2621, +0, 2621, 2598, +0, 2621, 2507, +0, 2621, 2346, +0, 2621, 1966, +0, 2754, 0, +0, 2887, 0, +1670, 3019, 0, +2367, 3151, 0, +2692, 3283, 0, +2929, 3416, 0, +3126, 3548, 0, +3302, 3680, 0, +3464, 3812, 0, +3617, 3944, 0, +3764, 4076, 0, +3908, 4095, 0, +0, 2335, 2623, +0, 2336, 2623, +0, 2338, 2623, +0, 2341, 2622, +0, 2346, 2622, +0, 2351, 2621, +0, 2357, 2621, +0, 2365, 2621, +0, 2375, 2621, +0, 2388, 2621, +0, 2405, 2621, +0, 2427, 2621, +0, 2454, 2621, +0, 2488, 2621, +0, 2530, 2621, +0, 2581, 2621, +0, 2621, 2600, +0, 2621, 2509, +0, 2621, 2349, +0, 2621, 1972, +0, 2754, 0, +0, 2886, 0, +1700, 3018, 0, +2373, 3151, 0, +2695, 3283, 0, +2931, 3415, 0, +3128, 3548, 0, +3303, 3680, 0, +3464, 3812, 0, +3617, 3944, 0, +3764, 4076, 0, +3908, 4095, 0, +0, 2327, 2623, +0, 2328, 2623, +0, 2331, 2623, +0, 2334, 2622, +0, 2337, 2622, +0, 2343, 2621, +0, 2350, 2621, +0, 2359, 2620, +0, 2369, 2620, +0, 2382, 2620, +0, 2399, 2620, +0, 2421, 2620, +0, 2449, 2620, +0, 2483, 2620, +0, 2526, 2620, +0, 2577, 2620, +0, 2620, 2602, +0, 2620, 2511, +0, 2620, 2352, +0, 2620, 1981, +0, 2753, 0, +0, 2886, 0, +1737, 3018, 0, +2382, 3151, 0, +2700, 3283, 0, +2934, 3415, 0, +3129, 3548, 0, +3304, 3680, 0, +3465, 3812, 0, +3618, 3944, 0, +3765, 4076, 0, +3908, 4095, 0, +0, 2315, 2623, +0, 2317, 2623, +0, 2320, 2623, +0, 2323, 2622, +0, 2327, 2622, +0, 2332, 2621, +0, 2339, 2621, +0, 2348, 2620, +0, 2361, 2619, +0, 2374, 2619, +0, 2392, 2619, +0, 2414, 2619, +0, 2442, 2619, +0, 2477, 2619, +0, 2520, 2619, +0, 2572, 2619, +0, 2619, 2604, +0, 2619, 2515, +0, 2619, 2357, +0, 2619, 1991, +0, 2752, 0, +0, 2885, 0, +1782, 3018, 0, +2394, 3151, 0, +2705, 3283, 0, +2937, 3415, 0, +3132, 3548, 0, +3305, 3680, 0, +3466, 3812, 0, +3619, 3944, 0, +3765, 4076, 0, +3908, 4095, 0, +0, 2300, 2623, +0, 2302, 2623, +0, 2304, 2623, +0, 2308, 2622, +0, 2312, 2622, +0, 2317, 2621, +0, 2325, 2621, +0, 2334, 2620, +0, 2347, 2619, +0, 2363, 2618, +0, 2381, 2618, +0, 2404, 2618, +0, 2432, 2618, +0, 2469, 2618, +0, 2512, 2618, +0, 2565, 2618, +0, 2618, 2608, +0, 2618, 2519, +0, 2618, 2363, +0, 2618, 2005, +0, 2751, 0, +0, 2885, 0, +1837, 3017, 0, +2408, 3150, 0, +2713, 3282, 0, +2942, 3415, 0, +3135, 3547, 0, +3307, 3680, 0, +3468, 3812, 0, +3620, 3944, 0, +3766, 4076, 0, +3909, 4095, 0, +0, 2278, 2623, +0, 2281, 2623, +0, 2283, 2623, +0, 2287, 2622, +0, 2291, 2622, +0, 2297, 2621, +0, 2304, 2621, +0, 2314, 2620, +0, 2328, 2619, +0, 2345, 2618, +0, 2367, 2616, +0, 2390, 2616, +0, 2420, 2616, +0, 2456, 2616, +0, 2501, 2616, +0, 2555, 2616, +0, 2616, 2613, +0, 2616, 2525, +0, 2616, 2372, +0, 2616, 2022, +0, 2750, 0, +0, 2883, 0, +1900, 3016, 0, +2427, 3150, 0, +2723, 3282, 0, +2947, 3414, 0, +3138, 3547, 0, +3310, 3679, 0, +3469, 3812, 0, +3621, 3944, 0, +3767, 4076, 0, +3910, 4095, 0, +0, 2248, 2623, +0, 2250, 2623, +0, 2253, 2623, +0, 2256, 2622, +0, 2261, 2622, +0, 2268, 2621, +0, 2276, 2621, +0, 2287, 2620, +0, 2301, 2619, +0, 2319, 2618, +0, 2342, 2616, +0, 2371, 2613, +0, 2402, 2613, +0, 2440, 2613, +0, 2487, 2613, +0, 2542, 2613, +0, 2607, 2613, +0, 2613, 2533, +0, 2613, 2382, +0, 2613, 2045, +0, 2748, 0, +0, 2882, 0, +1974, 3015, 0, +2452, 3149, 0, +2735, 3281, 0, +2956, 3414, 0, +3144, 3547, 0, +3314, 3679, 0, +3472, 3812, 0, +3623, 3944, 0, +3768, 4076, 0, +3910, 4095, 0, +0, 2205, 2623, +0, 2207, 2623, +0, 2210, 2623, +0, 2214, 2622, +0, 2219, 2622, +0, 2226, 2621, +0, 2235, 2621, +0, 2247, 2620, +0, 2262, 2619, +0, 2281, 2618, +0, 2306, 2616, +0, 2338, 2613, +0, 2377, 2610, +0, 2417, 2610, +0, 2466, 2610, +0, 2524, 2610, +0, 2592, 2610, +0, 2610, 2543, +0, 2610, 2396, +0, 2610, 2073, +0, 2746, 0, +0, 2880, 0, +2056, 3014, 0, +2482, 3148, 0, +2752, 3280, 0, +2966, 3414, 0, +3151, 3546, 0, +3318, 3679, 0, +3475, 3811, 0, +3625, 3944, 0, +3770, 4076, 0, +3912, 4095, 0, +0, 2138, 2623, +0, 2141, 2623, +0, 2144, 2623, +0, 2149, 2622, +0, 2155, 2622, +0, 2163, 2621, +0, 2173, 2621, +0, 2187, 2620, +0, 2204, 2619, +0, 2226, 2618, +0, 2255, 2616, +0, 2290, 2613, +0, 2333, 2610, +0, 2385, 2605, +0, 2437, 2605, +0, 2498, 2605, +0, 2570, 2605, +0, 2605, 2556, +0, 2605, 2414, +0, 2605, 2109, +0, 2742, 0, +817, 2878, 0, +2148, 3012, 0, +2521, 3146, 0, +2773, 3280, 0, +2979, 3413, 0, +3160, 3546, 0, +3325, 3678, 0, +3480, 3811, 0, +3628, 3943, 0, +3773, 4076, 0, +3913, 4095, 0, +0, 2032, 2623, +0, 2035, 2623, +0, 2039, 2623, +0, 2045, 2622, +0, 2052, 2622, +0, 2062, 2621, +0, 2075, 2621, +0, 2092, 2620, +0, 2113, 2619, +0, 2140, 2618, +0, 2174, 2616, +0, 2216, 2613, +0, 2266, 2610, +0, 2326, 2605, +611, 2395, 2599, +611, 2462, 2599, +611, 2538, 2599, +611, 2599, 2572, +611, 2599, 2437, +611, 2599, 2153, +0, 2738, 817, +1596, 2874, 0, +2247, 3010, 0, +2566, 3144, 0, +2800, 3278, 0, +2997, 3412, 0, +3171, 3545, 0, +3333, 3678, 0, +3486, 3810, 0, +3632, 3943, 0, +3776, 4075, 0, +3916, 4095, 0, +0, 1833, 2623, +0, 1838, 2623, +0, 1845, 2623, +0, 1853, 2622, +0, 1865, 2622, +0, 1880, 2621, +0, 1899, 2621, +0, 1923, 2620, +0, 1954, 2619, +0, 1991, 2618, +0, 2038, 2616, +0, 2093, 2613, +0, 2158, 2610, +0, 2233, 2605, +611, 2316, 2599, +1533, 2408, 2591, +1533, 2493, 2591, +1533, 2587, 2591, +1533, 2591, 2466, +1533, 2591, 2206, +738, 2731, 1362, +1932, 2870, 0, +2352, 3006, 0, +2622, 3142, 0, +2834, 3276, 0, +3019, 3410, 0, +3186, 3544, 0, +3344, 3677, 0, +3493, 3810, 0, +3638, 3943, 0, +3780, 4075, 0, +3919, 4095, 0, +0, 1232, 2623, +0, 1251, 2623, +0, 1275, 2623, +0, 1304, 2622, +0, 1342, 2622, +0, 1387, 2621, +0, 1441, 2621, +0, 1505, 2620, +0, 1578, 2619, +0, 1661, 2618, +0, 1752, 2616, +0, 1851, 2613, +0, 1956, 2610, +0, 2067, 2605, +611, 2183, 2599, +1533, 2303, 2591, +1883, 2425, 2579, +1883, 2533, 2579, +1883, 2579, 2502, +1883, 2579, 2267, +1667, 2723, 1664, +2173, 2863, 870, +2463, 3002, 0, +2687, 3138, 0, +2876, 3274, 0, +3047, 3408, 0, +3206, 3543, 0, +3358, 3676, 0, +3503, 3809, 0, +3646, 3942, 0, +3785, 4075, 0, +3923, 4095, 0, +0, 0, 2623, +0, 0, 2623, +0, 0, 2623, +0, 0, 2622, +0, 0, 2622, +0, 0, 2621, +0, 0, 2621, +0, 0, 2620, +0, 0, 2619, +0, 0, 2618, +0, 0, 2616, +0, 547, 2613, +0, 1330, 2610, +0, 1667, 2605, +611, 1908, 2599, +1533, 2108, 2591, +1883, 2284, 2579, +2129, 2447, 2563, +2129, 2563, 2545, +2129, 2563, 2339, +2114, 2711, 2015, +2372, 2855, 1796, +2579, 2995, 1006, +2761, 3134, 0, +2926, 3270, 0, +3082, 3406, 0, +3231, 3541, 0, +3376, 3675, 0, +3517, 3808, 0, +3655, 3941, 0, +3792, 4074, 0, +3928, 4095, 0, +0, 0, 2623, +0, 0, 2623, +0, 0, 2623, +0, 0, 2622, +0, 0, 2622, +0, 0, 2621, +0, 0, 2621, +0, 0, 2620, +0, 0, 2619, +0, 0, 2618, +0, 0, 2616, +0, 0, 2613, +0, 0, 2610, +705, 0, 2605, +1236, 611, 2599, +1533, 1533, 2591, +1883, 1981, 2579, +2129, 2258, 2563, +2331, 2475, 2541, +2331, 2541, 2420, +2391, 2696, 2261, +2549, 2843, 2147, +2699, 2987, 1930, +2845, 3128, 1137, +2986, 3266, 0, +3125, 3402, 0, +3263, 3538, 0, +3399, 3673, 0, +3534, 3807, 0, +3668, 3940, 0, +3801, 4073, 0, +3935, 4095, 0, +1952, 0, 2623, +1954, 0, 2623, +1956, 0, 2623, +1958, 0, 2622, +1962, 0, 2622, +1966, 0, 2621, +1972, 0, 2621, +1981, 0, 2620, +1991, 0, 2619, +2005, 0, 2618, +2022, 0, 2616, +2045, 0, 2613, +2073, 0, 2610, +2109, 0, 2605, +2153, 611, 2599, +2206, 1533, 2591, +2267, 1883, 2579, +2339, 2129, 2563, +2420, 2331, 2541, +2509, 2509, 2509, +2607, 2673, 2463, +2711, 2828, 2393, +2821, 2975, 2280, +2936, 3119, 2061, +3055, 3259, 1272, +3177, 3398, 0, +3302, 3535, 0, +3428, 3670, 0, +3556, 3805, 0, +3684, 3939, 0, +3814, 4072, 0, +3944, 4095, 0, +2473, 0, 2755, +2473, 0, 2755, +2474, 0, 2755, +2475, 0, 2755, +2476, 0, 2755, +2477, 0, 2754, +2479, 0, 2754, +2482, 0, 2753, +2485, 0, 2752, +2490, 0, 2751, +2496, 0, 2750, +2504, 0, 2748, +2515, 0, 2746, +2529, 0, 2742, +2547, 0, 2738, +2570, 738, 2731, +2598, 1664, 2723, +2634, 2015, 2711, +2678, 2261, 2696, +2673, 2463, 2607, +2673, 2552, 2463, +2828, 2810, 2393, +2929, 2975, 2280, +3022, 3119, 2061, +3122, 3259, 1272, +3230, 3398, 0, +3342, 3535, 0, +3459, 3670, 0, +3579, 3805, 0, +3702, 3939, 0, +3827, 4072, 0, +3954, 4095, 0, +2767, 0, 2887, +2767, 0, 2887, +2767, 0, 2887, +2768, 0, 2887, +2768, 0, 2887, +2769, 0, 2887, +2770, 0, 2886, +2772, 0, 2886, +2773, 0, 2885, +2776, 0, 2885, +2779, 0, 2883, +2784, 0, 2882, +2789, 0, 2880, +2797, 0, 2878, +2807, 0, 2874, +2820, 0, 2870, +2837, 870, 2863, +2855, 1796, 2852, +2843, 2147, 2797, +2828, 2393, 2711, +2828, 2393, 2522, +2828, 2603, 2393, +2975, 2898, 2280, +3116, 3119, 2061, +3199, 3259, 1272, +3291, 3398, 0, +3391, 3535, 0, +3497, 3670, 0, +3609, 3805, 0, +3725, 3939, 0, +3845, 4072, 0, +3968, 4095, 0, +2991, 0, 3019, +2991, 0, 3019, +2991, 0, 3019, +2991, 0, 3019, +2992, 0, 3019, +2992, 0, 3019, +2992, 0, 3018, +2993, 0, 3018, +2995, 0, 3018, +2996, 0, 3017, +2998, 0, 3016, +3001, 0, 3015, +3004, 0, 3014, +3009, 0, 3012, +3010, 0, 3004, +3006, 0, 2988, +3002, 0, 2966, +2995, 1006, 2935, +2987, 1930, 2890, +2975, 2280, 2821, +2975, 2280, 2680, +2975, 2280, 2377, +2975, 2664, 2280, +3119, 2995, 2061, +3259, 3233, 1272, +3362, 3398, 0, +3449, 3535, 0, +3543, 3670, 0, +3646, 3805, 0, +3754, 3939, 0, +3867, 4072, 0, +3984, 4095, 0, +3152, 0, 3120, +3152, 0, 3120, +3152, 0, 3120, +3151, 0, 3119, +3151, 0, 3119, +3151, 0, 3118, +3151, 0, 3117, +3151, 0, 3116, +3151, 0, 3115, +3150, 0, 3112, +3150, 0, 3110, +3149, 0, 3106, +3148, 0, 3100, +3146, 0, 3093, +3144, 0, 3084, +3142, 0, 3071, +3138, 0, 3053, +3134, 0, 3027, +3128, 1137, 2991, +3119, 2061, 2936, +3119, 2061, 2831, +3119, 2061, 2636, +3119, 2061, 2064, +3119, 2734, 2061, +3259, 3097, 1272, +3398, 3348, 0, +3516, 3535, 0, +3599, 3670, 0, +3690, 3805, 0, +3790, 3939, 0, +3895, 4072, 0, +4006, 4095, 0, +3284, 0, 3203, +3283, 0, 3203, +3283, 0, 3202, +3283, 0, 3202, +3283, 0, 3201, +3283, 0, 3201, +3283, 0, 3200, +3283, 0, 3199, +3283, 0, 3198, +3282, 0, 3196, +3282, 0, 3194, +3281, 0, 3191, +3280, 0, 3186, +3280, 0, 3180, +3278, 0, 3173, +3276, 0, 3162, +3274, 0, 3147, +3270, 0, 3126, +3266, 0, 3097, +3259, 1272, 3055, +3259, 1272, 2976, +3259, 1272, 2843, +3259, 1272, 2569, +3259, 1899, 1272, +3259, 2813, 1272, +3398, 3206, 0, +3535, 3467, 0, +3664, 3670, 0, +3744, 3805, 0, +3833, 3939, 0, +3930, 4072, 0, +4034, 4095, 0, +3416, 0, 3294, +3416, 0, 3294, +3416, 0, 3294, +3416, 0, 3293, +3416, 0, 3293, +3416, 0, 3293, +3415, 0, 3292, +3415, 0, 3291, +3415, 0, 3290, +3415, 0, 3289, +3414, 0, 3287, +3414, 0, 3284, +3414, 0, 3281, +3413, 0, 3276, +3412, 0, 3270, +3410, 0, 3261, +3408, 0, 3249, +3406, 0, 3233, +3402, 0, 3210, +3398, 0, 3177, +3398, 0, 3118, +3398, 0, 3025, +3398, 0, 2860, +3398, 0, 2458, +3398, 1484, 0, +3398, 2902, 0, +3535, 3321, 0, +3670, 3589, 0, +3805, 3802, 0, +3886, 3939, 0, +3973, 4072, 0, +4069, 4095, 0, +3548, 0, 3393, +3548, 0, 3393, +3548, 0, 3393, +3548, 0, 3393, +3548, 0, 3392, +3548, 0, 3392, +3548, 0, 3392, +3548, 0, 3391, +3548, 0, 3390, +3547, 0, 3389, +3547, 0, 3387, +3547, 0, 3385, +3546, 0, 3382, +3546, 0, 3379, +3545, 0, 3374, +3544, 0, 3367, +3543, 0, 3357, +3541, 0, 3344, +3538, 0, 3326, +3535, 0, 3302, +3535, 0, 3257, +3535, 0, 3190, +3535, 0, 3083, +3535, 0, 2881, +3535, 0, 2256, +3535, 0, 0, +3535, 2998, 0, +3670, 3439, 0, +3805, 3714, 0, +3939, 3929, 0, +4025, 4072, 0, +4095, 4095, 0, +3680, 0, 3499, +3680, 0, 3499, +3680, 0, 3499, +3680, 0, 3499, +3680, 0, 3498, +3680, 0, 3498, +3680, 0, 3497, +3680, 0, 3497, +3680, 0, 3496, +3680, 0, 3495, +3679, 0, 3494, +3679, 0, 3493, +3679, 0, 3490, +3678, 0, 3488, +3678, 0, 3483, +3677, 0, 3478, +3676, 0, 3471, +3675, 0, 3461, +3673, 0, 3447, +3670, 0, 3428, +3670, 0, 3395, +3670, 0, 3346, +3670, 0, 3273, +3670, 0, 3150, +3670, 0, 2908, +3670, 0, 1603, +3670, 0, 0, +3670, 3102, 0, +3805, 3561, 0, +3939, 3840, 0, +4072, 4058, 0, +4095, 4095, 0, +3812, 0, 3610, +3812, 0, 3610, +3812, 0, 3610, +3812, 0, 3610, +3812, 0, 3610, +3812, 0, 3609, +3812, 0, 3609, +3812, 0, 3609, +3812, 0, 3608, +3812, 0, 3607, +3812, 0, 3606, +3812, 0, 3605, +3811, 0, 3604, +3811, 0, 3601, +3810, 0, 3598, +3810, 0, 3594, +3809, 0, 3588, +3808, 0, 3581, +3807, 0, 3570, +3805, 0, 3556, +3805, 0, 3531, +3805, 0, 3495, +3805, 0, 3443, +3805, 0, 3363, +3805, 0, 3227, +3805, 0, 2941, +3805, 0, 0, +3805, 0, 0, +3805, 3211, 0, +3939, 3685, 0, +4072, 3968, 0, +4095, 4095, 0, +3944, 0, 3726, +3944, 0, 3726, +3944, 0, 3726, +3944, 0, 3726, +3944, 0, 3726, +3944, 0, 3725, +3944, 0, 3725, +3944, 0, 3725, +3944, 0, 3725, +3944, 0, 3724, +3944, 0, 3723, +3944, 0, 3722, +3944, 0, 3721, +3943, 0, 3719, +3943, 0, 3717, +3943, 0, 3713, +3942, 0, 3709, +3941, 0, 3703, +3940, 0, 3695, +3939, 0, 3684, +3939, 0, 3666, +3939, 0, 3640, +3939, 0, 3603, +3939, 0, 3547, +3939, 0, 3461, +3939, 0, 3313, +3939, 0, 2982, +3939, 0, 0, +3939, 0, 0, +3939, 3326, 0, +4072, 3810, 0, +4095, 4095, 0, +4076, 0, 3846, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3845, +4076, 0, 3844, +4076, 0, 3843, +4076, 0, 3843, +4076, 0, 3841, +4076, 0, 3840, +4075, 0, 3838, +4075, 0, 3836, +4075, 0, 3833, +4074, 0, 3828, +4073, 0, 3822, +4072, 0, 3814, +4072, 0, 3800, +4072, 0, 3781, +4072, 0, 3754, +4072, 0, 3715, +4072, 0, 3657, +4072, 0, 3566, +4072, 0, 3407, +4072, 0, 3031, +4072, 0, 0, +4072, 0, 0, +4072, 3444, 0, +4095, 3938, 0, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3968, +4095, 0, 3967, +4095, 0, 3967, +4095, 0, 3967, +4095, 0, 3966, +4095, 0, 3965, +4095, 0, 3964, +4095, 0, 3963, +4095, 0, 3961, +4095, 0, 3959, +4095, 0, 3955, +4095, 0, 3950, +4095, 0, 3944, +4095, 0, 3934, +4095, 0, 3920, +4095, 0, 3900, +4095, 0, 3872, +4095, 0, 3832, +4095, 0, 3772, +4095, 0, 3677, +4095, 0, 3509, +4095, 0, 3090, +4095, 0, 0, +4095, 0, 0, +4095, 3566, 0, +0, 2486, 2755, +0, 2487, 2755, +0, 2488, 2755, +0, 2490, 2755, +0, 2493, 2755, +0, 2496, 2755, +0, 2500, 2755, +0, 2505, 2755, +0, 2513, 2755, +0, 2523, 2755, +0, 2535, 2755, +0, 2552, 2755, +0, 2573, 2755, +0, 2599, 2755, +0, 2632, 2755, +0, 2673, 2755, +0, 2723, 2755, +0, 2755, 2727, +0, 2755, 2635, +0, 2755, 2473, +0, 2755, 2083, +0, 2887, 0, +0, 3019, 0, +1720, 3152, 0, +2481, 3284, 0, +2816, 3416, 0, +3056, 3548, 0, +3255, 3680, 0, +3432, 3812, 0, +3594, 3944, 0, +3748, 4076, 0, +3896, 4095, 0, +0, 2485, 2755, +0, 2486, 2755, +0, 2488, 2755, +0, 2489, 2755, +0, 2492, 2755, +0, 2495, 2755, +0, 2499, 2755, +0, 2505, 2755, +0, 2512, 2755, +0, 2522, 2755, +0, 2535, 2755, +0, 2551, 2755, +0, 2572, 2755, +0, 2598, 2755, +0, 2632, 2755, +0, 2673, 2755, +0, 2723, 2755, +0, 2755, 2727, +0, 2755, 2635, +0, 2755, 2473, +0, 2755, 2084, +0, 2887, 0, +0, 3019, 0, +1726, 3152, 0, +2482, 3283, 0, +2817, 3416, 0, +3057, 3548, 0, +3256, 3680, 0, +3432, 3812, 0, +3595, 3944, 0, +3748, 4076, 0, +3896, 4095, 0, +0, 2484, 2755, +0, 2485, 2755, +0, 2486, 2755, +0, 2488, 2755, +0, 2491, 2755, +0, 2494, 2755, +0, 2498, 2755, +0, 2504, 2755, +0, 2511, 2755, +0, 2521, 2755, +0, 2533, 2755, +0, 2550, 2755, +0, 2571, 2755, +0, 2598, 2755, +0, 2631, 2755, +0, 2672, 2755, +0, 2722, 2755, +0, 2755, 2728, +0, 2755, 2636, +0, 2755, 2474, +0, 2755, 2086, +0, 2887, 0, +0, 3019, 0, +1735, 3152, 0, +2484, 3283, 0, +2817, 3416, 0, +3057, 3548, 0, +3256, 3680, 0, +3432, 3812, 0, +3595, 3944, 0, +3748, 4076, 0, +3896, 4095, 0, +0, 2482, 2755, +0, 2483, 2755, +0, 2485, 2755, +0, 2487, 2755, +0, 2489, 2755, +0, 2492, 2755, +0, 2497, 2755, +0, 2502, 2755, +0, 2510, 2755, +0, 2520, 2755, +0, 2532, 2755, +0, 2549, 2755, +0, 2570, 2755, +0, 2596, 2755, +0, 2630, 2755, +0, 2671, 2755, +0, 2721, 2755, +0, 2755, 2728, +0, 2755, 2636, +0, 2755, 2475, +0, 2755, 2088, +0, 2887, 0, +0, 3019, 0, +1746, 3151, 0, +2486, 3283, 0, +2818, 3416, 0, +3058, 3548, 0, +3256, 3680, 0, +3432, 3812, 0, +3595, 3944, 0, +3748, 4076, 0, +3896, 4095, 0, +0, 2479, 2755, +0, 2481, 2755, +0, 2482, 2755, +0, 2484, 2755, +0, 2487, 2755, +0, 2490, 2755, +0, 2495, 2755, +0, 2501, 2755, +0, 2508, 2755, +0, 2517, 2755, +0, 2530, 2755, +0, 2547, 2755, +0, 2568, 2755, +0, 2595, 2755, +0, 2628, 2755, +0, 2670, 2755, +0, 2720, 2755, +0, 2755, 2729, +0, 2755, 2637, +0, 2755, 2476, +0, 2755, 2091, +0, 2887, 0, +0, 3019, 0, +1760, 3151, 0, +2489, 3283, 0, +2820, 3416, 0, +3059, 3548, 0, +3257, 3680, 0, +3433, 3812, 0, +3595, 3944, 0, +3748, 4076, 0, +3896, 4095, 0, +0, 2476, 2755, +0, 2477, 2755, +0, 2479, 2755, +0, 2481, 2755, +0, 2484, 2755, +0, 2488, 2754, +0, 2492, 2754, +0, 2498, 2754, +0, 2505, 2754, +0, 2515, 2754, +0, 2528, 2754, +0, 2545, 2754, +0, 2566, 2754, +0, 2593, 2754, +0, 2627, 2754, +0, 2668, 2754, +0, 2718, 2754, +0, 2754, 2730, +0, 2754, 2638, +0, 2754, 2477, +0, 2754, 2094, +0, 2887, 0, +0, 3019, 0, +1779, 3151, 0, +2493, 3283, 0, +2822, 3416, 0, +3060, 3548, 0, +3258, 3680, 0, +3433, 3812, 0, +3595, 3944, 0, +3749, 4076, 0, +3896, 4095, 0, +0, 2472, 2755, +0, 2473, 2755, +0, 2475, 2755, +0, 2477, 2755, +0, 2480, 2755, +0, 2484, 2754, +0, 2489, 2754, +0, 2494, 2754, +0, 2502, 2754, +0, 2512, 2754, +0, 2525, 2754, +0, 2541, 2754, +0, 2563, 2754, +0, 2590, 2754, +0, 2624, 2754, +0, 2666, 2754, +0, 2716, 2754, +0, 2754, 2731, +0, 2754, 2640, +0, 2754, 2479, +0, 2754, 2099, +0, 2886, 0, +0, 3018, 0, +1802, 3151, 0, +2498, 3283, 0, +2824, 3415, 0, +3061, 3548, 0, +3258, 3680, 0, +3434, 3812, 0, +3596, 3944, 0, +3749, 4076, 0, +3896, 4095, 0, +0, 2466, 2755, +0, 2467, 2755, +0, 2469, 2755, +0, 2471, 2755, +0, 2474, 2755, +0, 2478, 2754, +0, 2483, 2754, +0, 2490, 2753, +0, 2497, 2753, +0, 2507, 2753, +0, 2521, 2753, +0, 2537, 2753, +0, 2559, 2753, +0, 2586, 2753, +0, 2620, 2753, +0, 2662, 2753, +0, 2713, 2753, +0, 2753, 2732, +0, 2753, 2641, +0, 2753, 2482, +0, 2753, 2105, +0, 2886, 0, +0, 3018, 0, +1832, 3151, 0, +2504, 3283, 0, +2827, 3415, 0, +3063, 3548, 0, +3260, 3680, 0, +3435, 3812, 0, +3596, 3944, 0, +3749, 4076, 0, +3897, 4095, 0, +0, 2457, 2755, +0, 2459, 2755, +0, 2460, 2755, +0, 2463, 2755, +0, 2466, 2755, +0, 2470, 2754, +0, 2475, 2754, +0, 2482, 2753, +0, 2491, 2752, +0, 2501, 2752, +0, 2514, 2752, +0, 2532, 2752, +0, 2553, 2752, +0, 2581, 2752, +0, 2616, 2752, +0, 2658, 2752, +0, 2710, 2752, +0, 2752, 2734, +0, 2752, 2644, +0, 2752, 2485, +0, 2752, 2113, +0, 2885, 0, +0, 3018, 0, +1869, 3151, 0, +2513, 3283, 0, +2832, 3415, 0, +3066, 3548, 0, +3261, 3680, 0, +3436, 3812, 0, +3597, 3944, 0, +3750, 4076, 0, +3897, 4095, 0, +0, 2446, 2755, +0, 2448, 2755, +0, 2449, 2755, +0, 2452, 2755, +0, 2455, 2755, +0, 2459, 2754, +0, 2464, 2754, +0, 2471, 2753, +0, 2481, 2752, +0, 2493, 2751, +0, 2506, 2751, +0, 2524, 2751, +0, 2546, 2751, +0, 2574, 2751, +0, 2609, 2751, +0, 2652, 2751, +0, 2704, 2751, +0, 2751, 2737, +0, 2751, 2647, +0, 2751, 2490, +0, 2751, 2123, +0, 2885, 0, +0, 3017, 0, +1915, 3150, 0, +2524, 3282, 0, +2837, 3415, 0, +3069, 3547, 0, +3264, 3680, 0, +3437, 3812, 0, +3598, 3944, 0, +3751, 4076, 0, +3898, 4095, 0, +0, 2431, 2755, +0, 2432, 2755, +0, 2434, 2755, +0, 2436, 2755, +0, 2440, 2755, +0, 2444, 2754, +0, 2450, 2754, +0, 2457, 2753, +0, 2467, 2752, +0, 2479, 2751, +0, 2495, 2750, +0, 2514, 2750, +0, 2536, 2750, +0, 2565, 2750, +0, 2601, 2750, +0, 2645, 2750, +0, 2697, 2750, +0, 2750, 2741, +0, 2750, 2651, +0, 2750, 2496, +0, 2750, 2137, +0, 2883, 0, +0, 3016, 0, +1969, 3150, 0, +2539, 3282, 0, +2845, 3414, 0, +3074, 3547, 0, +3267, 3679, 0, +3439, 3812, 0, +3600, 3944, 0, +3752, 4076, 0, +3898, 4095, 0, +0, 2409, 2755, +0, 2411, 2755, +0, 2413, 2755, +0, 2415, 2755, +0, 2419, 2755, +0, 2423, 2754, +0, 2429, 2754, +0, 2437, 2753, +0, 2447, 2752, +0, 2460, 2751, +0, 2477, 2750, +0, 2499, 2748, +0, 2522, 2748, +0, 2552, 2748, +0, 2589, 2748, +0, 2634, 2748, +0, 2687, 2748, +0, 2748, 2745, +0, 2748, 2657, +0, 2748, 2504, +0, 2748, 2155, +0, 2882, 0, +0, 3015, 0, +2033, 3149, 0, +2558, 3281, 0, +2855, 3414, 0, +3080, 3547, 0, +3271, 3679, 0, +3442, 3812, 0, +3602, 3944, 0, +3753, 4076, 0, +3899, 4095, 0, +0, 2379, 2755, +0, 2381, 2755, +0, 2383, 2755, +0, 2386, 2755, +0, 2389, 2755, +0, 2394, 2754, +0, 2400, 2754, +0, 2408, 2753, +0, 2419, 2752, +0, 2433, 2751, +0, 2451, 2750, +0, 2474, 2748, +0, 2503, 2746, +0, 2534, 2746, +0, 2572, 2746, +0, 2619, 2746, +0, 2674, 2746, +0, 2740, 2746, +0, 2746, 2665, +0, 2746, 2515, +0, 2746, 2177, +0, 2880, 0, +0, 3014, 0, +2106, 3148, 0, +2583, 3280, 0, +2867, 3414, 0, +3087, 3546, 0, +3276, 3679, 0, +3446, 3811, 0, +3604, 3944, 0, +3755, 4076, 0, +3901, 4095, 0, +0, 2335, 2755, +0, 2337, 2755, +0, 2339, 2755, +0, 2342, 2755, +0, 2346, 2755, +0, 2351, 2754, +0, 2358, 2754, +0, 2367, 2753, +0, 2379, 2752, +0, 2394, 2751, +0, 2414, 2750, +0, 2439, 2748, +0, 2470, 2746, +0, 2509, 2742, +0, 2550, 2742, +0, 2598, 2742, +0, 2656, 2742, +0, 2724, 2742, +0, 2742, 2675, +0, 2742, 2529, +0, 2742, 2206, +0, 2878, 0, +0, 3012, 0, +2189, 3146, 0, +2613, 3280, 0, +2884, 3413, 0, +3098, 3546, 0, +3282, 3678, 0, +3450, 3811, 0, +3607, 3943, 0, +3757, 4076, 0, +3903, 4095, 0, +0, 2269, 2755, +0, 2271, 2755, +0, 2274, 2755, +0, 2277, 2755, +0, 2281, 2755, +0, 2287, 2754, +0, 2295, 2754, +0, 2305, 2753, +0, 2319, 2752, +0, 2336, 2751, +0, 2359, 2750, +0, 2387, 2748, +0, 2422, 2746, +0, 2465, 2742, +0, 2517, 2738, +0, 2569, 2738, +0, 2631, 2738, +0, 2702, 2738, +0, 2738, 2688, +0, 2738, 2547, +0, 2738, 2241, +0, 2874, 0, +922, 3010, 0, +2280, 3144, 0, +2651, 3278, 0, +2906, 3412, 0, +3111, 3545, 0, +3291, 3678, 0, +3457, 3810, 0, +3612, 3943, 0, +3760, 4075, 0, +3905, 4095, 0, +0, 2162, 2755, +0, 2164, 2755, +0, 2167, 2755, +0, 2172, 2755, +0, 2177, 2755, +0, 2185, 2754, +0, 2195, 2754, +0, 2208, 2753, +0, 2224, 2752, +0, 2245, 2751, +0, 2273, 2750, +0, 2306, 2748, +0, 2348, 2746, +0, 2398, 2742, +0, 2458, 2738, +738, 2527, 2731, +738, 2594, 2731, +738, 2671, 2731, +738, 2731, 2705, +738, 2731, 2570, +738, 2731, 2285, +0, 2870, 963, +1723, 3006, 0, +2379, 3142, 0, +2698, 3276, 0, +2933, 3410, 0, +3129, 3544, 0, +3303, 3677, 0, +3465, 3810, 0, +3618, 3943, 0, +3765, 4075, 0, +3908, 4095, 0, +0, 1962, 2755, +0, 1966, 2755, +0, 1971, 2755, +0, 1977, 2755, +0, 1986, 2755, +0, 1997, 2754, +0, 2012, 2754, +0, 2031, 2753, +0, 2056, 2752, +0, 2086, 2751, +0, 2124, 2750, +0, 2170, 2748, +0, 2226, 2746, +0, 2291, 2742, +0, 2365, 2738, +738, 2448, 2731, +1664, 2540, 2723, +1664, 2626, 2723, +1664, 2719, 2723, +1664, 2723, 2598, +1664, 2723, 2338, +870, 2863, 1498, +2062, 3002, 0, +2484, 3138, 0, +2753, 3274, 0, +2966, 3408, 0, +3151, 3543, 0, +3319, 3676, 0, +3475, 3809, 0, +3626, 3942, 0, +3770, 4075, 0, +3912, 4095, 0, +0, 1353, 2755, +0, 1367, 2755, +0, 1386, 2755, +0, 1409, 2755, +0, 1439, 2755, +0, 1476, 2754, +0, 1521, 2754, +0, 1575, 2753, +0, 1638, 2752, +0, 1711, 2751, +0, 1794, 2750, +0, 1885, 2748, +0, 1983, 2746, +0, 2089, 2742, +0, 2200, 2738, +738, 2315, 2731, +1664, 2435, 2723, +2015, 2557, 2711, +2015, 2665, 2711, +2015, 2711, 2634, +2015, 2711, 2400, +1797, 2855, 1796, +2303, 2995, 1006, +2596, 3134, 0, +2818, 3270, 0, +3008, 3406, 0, +3179, 3541, 0, +3338, 3675, 0, +3490, 3808, 0, +3635, 3941, 0, +3777, 4074, 0, +3917, 4095, 0, +0, 0, 2755, +0, 0, 2755, +0, 0, 2755, +0, 0, 2755, +0, 0, 2755, +0, 0, 2754, +0, 0, 2754, +0, 0, 2753, +0, 0, 2752, +0, 0, 2751, +0, 0, 2750, +0, 0, 2748, +0, 678, 2746, +0, 1463, 2742, +0, 1799, 2738, +738, 2040, 2731, +1664, 2240, 2723, +2015, 2416, 2711, +2261, 2579, 2696, +2261, 2696, 2678, +2261, 2696, 2471, +2246, 2843, 2147, +2503, 2987, 1930, +2712, 3128, 1137, +2893, 3266, 0, +3059, 3402, 0, +3214, 3538, 0, +3363, 3673, 0, +3508, 3807, 0, +3649, 3940, 0, +3787, 4073, 0, +3924, 4095, 0, +0, 0, 2755, +0, 0, 2755, +0, 0, 2755, +0, 0, 2755, +0, 0, 2755, +0, 0, 2754, +0, 0, 2754, +0, 0, 2753, +0, 0, 2752, +0, 0, 2751, +0, 0, 2750, +0, 0, 2748, +0, 0, 2746, +0, 0, 2742, +817, 0, 2738, +1362, 738, 2731, +1664, 1667, 2723, +2015, 2114, 2711, +2261, 2391, 2696, +2463, 2607, 2673, +2463, 2673, 2552, +2522, 2828, 2393, +2680, 2975, 2280, +2831, 3119, 2061, +2976, 3259, 1272, +3118, 3398, 0, +3257, 3535, 0, +3395, 3670, 0, +3531, 3805, 0, +3666, 3939, 0, +3800, 4072, 0, +3934, 4095, 0, +2083, 0, 2755, +2084, 0, 2755, +2086, 0, 2755, +2088, 0, 2755, +2091, 0, 2755, +2094, 0, 2754, +2099, 0, 2754, +2105, 0, 2753, +2113, 0, 2752, +2123, 0, 2751, +2137, 0, 2750, +2155, 0, 2748, +2177, 0, 2746, +2206, 0, 2742, +2241, 0, 2738, +2285, 738, 2731, +2338, 1664, 2723, +2400, 2015, 2711, +2471, 2261, 2696, +2552, 2463, 2673, +2642, 2642, 2642, +2739, 2805, 2596, +2843, 2959, 2526, +2954, 3108, 2412, +3069, 3251, 2194, +3187, 3392, 1406, +3309, 3530, 0, +3434, 3667, 0, +3560, 3802, 0, +3688, 3937, 0, +3816, 4071, 0, +3946, 4095, 0, +2604, 0, 2887, +2604, 0, 2887, +2605, 0, 2887, +2605, 0, 2887, +2606, 0, 2887, +2607, 0, 2887, +2609, 0, 2886, +2611, 0, 2886, +2613, 0, 2885, +2617, 0, 2885, +2621, 0, 2883, +2628, 0, 2882, +2636, 0, 2880, +2647, 0, 2878, +2661, 0, 2874, +2678, 0, 2870, +2701, 870, 2863, +2730, 1796, 2855, +2766, 2147, 2843, +2810, 2393, 2828, +2805, 2596, 2739, +2805, 2684, 2596, +2959, 2942, 2526, +3061, 3108, 2412, +3154, 3251, 2194, +3255, 3392, 1406, +3362, 3530, 0, +3474, 3667, 0, +3591, 3802, 0, +3711, 3937, 0, +3834, 4071, 0, +3960, 4095, 0, +2898, 0, 3019, +2898, 0, 3019, +2898, 0, 3019, +2899, 0, 3019, +2899, 0, 3019, +2900, 0, 3019, +2901, 0, 3018, +2902, 0, 3018, +2903, 0, 3018, +2905, 0, 3017, +2907, 0, 3016, +2911, 0, 3015, +2915, 0, 3014, +2921, 0, 3012, +2928, 0, 3010, +2939, 0, 3006, +2952, 0, 3002, +2968, 1006, 2995, +2987, 1930, 2984, +2975, 2280, 2929, +2959, 2526, 2843, +2959, 2526, 2654, +2959, 2735, 2526, +3108, 3031, 2412, +3248, 3251, 2194, +3331, 3392, 1406, +3423, 3530, 0, +3523, 3667, 0, +3629, 3802, 0, +3741, 3937, 0, +3857, 4071, 0, +3977, 4095, 0, +3123, 0, 3152, +3123, 0, 3152, +3123, 0, 3152, +3123, 0, 3151, +3123, 0, 3151, +3124, 0, 3151, +3124, 0, 3151, +3125, 0, 3151, +3126, 0, 3151, +3127, 0, 3150, +3128, 0, 3150, +3131, 0, 3149, +3133, 0, 3148, +3137, 0, 3146, +3141, 0, 3144, +3142, 0, 3136, +3138, 0, 3120, +3134, 0, 3098, +3128, 1137, 3067, +3119, 2061, 3022, +3108, 2412, 2954, +3108, 2412, 2813, +3108, 2412, 2511, +3108, 2796, 2412, +3251, 3126, 2194, +3392, 3365, 1406, +3495, 3530, 0, +3581, 3667, 0, +3676, 3802, 0, +3777, 3937, 0, +3886, 4071, 0, +3999, 4095, 0, +3284, 0, 3252, +3283, 0, 3252, +3283, 0, 3252, +3283, 0, 3252, +3283, 0, 3251, +3283, 0, 3251, +3283, 0, 3250, +3283, 0, 3249, +3283, 0, 3248, +3282, 0, 3247, +3282, 0, 3244, +3281, 0, 3242, +3280, 0, 3238, +3280, 0, 3233, +3278, 0, 3225, +3276, 0, 3216, +3274, 0, 3203, +3270, 0, 3184, +3266, 0, 3159, +3259, 1272, 3122, +3251, 2194, 3069, +3251, 2194, 2963, +3251, 2194, 2768, +3251, 2195, 2194, +3251, 2866, 2194, +3392, 3230, 1406, +3530, 3480, 0, +3648, 3667, 0, +3731, 3802, 0, +3822, 3937, 0, +3921, 4071, 0, +4027, 4095, 0, +3416, 0, 3335, +3416, 0, 3335, +3416, 0, 3335, +3416, 0, 3335, +3416, 0, 3334, +3416, 0, 3334, +3415, 0, 3333, +3415, 0, 3333, +3415, 0, 3331, +3415, 0, 3330, +3414, 0, 3329, +3414, 0, 3326, +3414, 0, 3323, +3413, 0, 3319, +3412, 0, 3313, +3410, 0, 3305, +3408, 0, 3294, +3406, 0, 3279, +3402, 0, 3259, +3398, 0, 3230, +3392, 1406, 3187, +3392, 1406, 3108, +3392, 1406, 2976, +3392, 1406, 2701, +3392, 2025, 1406, +3392, 2945, 1406, +3530, 3339, 0, +3667, 3599, 0, +3796, 3802, 0, +3876, 3937, 0, +3965, 4071, 0, +4062, 4095, 0, +3548, 0, 3426, +3548, 0, 3426, +3548, 0, 3426, +3548, 0, 3426, +3548, 0, 3426, +3548, 0, 3425, +3548, 0, 3425, +3548, 0, 3424, +3548, 0, 3423, +3547, 0, 3422, +3547, 0, 3421, +3547, 0, 3419, +3546, 0, 3416, +3546, 0, 3413, +3545, 0, 3408, +3544, 0, 3402, +3543, 0, 3393, +3541, 0, 3381, +3538, 0, 3365, +3535, 0, 3342, +3530, 0, 3309, +3530, 0, 3250, +3530, 0, 3157, +3530, 0, 2992, +3530, 0, 2593, +3530, 1621, 0, +3530, 3034, 0, +3667, 3453, 0, +3802, 3721, 0, +3937, 3934, 0, +4018, 4071, 0, +4095, 4095, 0, +3680, 0, 3525, +3680, 0, 3525, +3680, 0, 3525, +3680, 0, 3525, +3680, 0, 3525, +3680, 0, 3525, +3680, 0, 3524, +3680, 0, 3524, +3680, 0, 3523, +3680, 0, 3522, +3679, 0, 3521, +3679, 0, 3520, +3679, 0, 3517, +3678, 0, 3515, +3678, 0, 3511, +3677, 0, 3506, +3676, 0, 3499, +3675, 0, 3490, +3673, 0, 3477, +3670, 0, 3459, +3667, 0, 3434, +3667, 0, 3389, +3667, 0, 3323, +3667, 0, 3215, +3667, 0, 3014, +3667, 0, 2388, +3667, 0, 0, +3667, 3131, 0, +3802, 3571, 0, +3937, 3846, 0, +4071, 4061, 0, +4095, 4095, 0, +3812, 0, 3631, +3812, 0, 3631, +3812, 0, 3631, +3812, 0, 3631, +3812, 0, 3631, +3812, 0, 3630, +3812, 0, 3630, +3812, 0, 3630, +3812, 0, 3629, +3812, 0, 3629, +3812, 0, 3628, +3812, 0, 3626, +3811, 0, 3625, +3811, 0, 3622, +3810, 0, 3620, +3810, 0, 3616, +3809, 0, 3610, +3808, 0, 3603, +3807, 0, 3593, +3805, 0, 3579, +3802, 0, 3560, +3802, 0, 3527, +3802, 0, 3479, +3802, 0, 3405, +3802, 0, 3282, +3802, 0, 3040, +3802, 0, 1737, +3802, 0, 0, +3802, 3234, 0, +3937, 3692, 0, +4071, 3972, 0, +4095, 4095, 0, +3944, 0, 3742, +3944, 0, 3742, +3944, 0, 3742, +3944, 0, 3742, +3944, 0, 3742, +3944, 0, 3742, +3944, 0, 3741, +3944, 0, 3741, +3944, 0, 3741, +3944, 0, 3740, +3944, 0, 3740, +3944, 0, 3739, +3944, 0, 3737, +3943, 0, 3736, +3943, 0, 3733, +3943, 0, 3730, +3942, 0, 3726, +3941, 0, 3720, +3940, 0, 3713, +3939, 0, 3702, +3937, 0, 3688, +3937, 0, 3663, +3937, 0, 3628, +3937, 0, 3575, +3937, 0, 3495, +3937, 0, 3359, +3937, 0, 3073, +3937, 0, 0, +3937, 0, 0, +3937, 3344, 0, +4071, 3816, 0, +4095, 4095, 0, +4076, 0, 3858, +4076, 0, 3858, +4076, 0, 3858, +4076, 0, 3858, +4076, 0, 3858, +4076, 0, 3858, +4076, 0, 3858, +4076, 0, 3857, +4076, 0, 3857, +4076, 0, 3856, +4076, 0, 3856, +4076, 0, 3855, +4076, 0, 3854, +4076, 0, 3853, +4075, 0, 3851, +4075, 0, 3849, +4075, 0, 3846, +4074, 0, 3841, +4073, 0, 3835, +4072, 0, 3827, +4071, 0, 3816, +4071, 0, 3798, +4071, 0, 3772, +4071, 0, 3735, +4071, 0, 3679, +4071, 0, 3593, +4071, 0, 3445, +4071, 0, 3113, +4071, 0, 0, +4071, 0, 0, +4071, 3458, 0, +4095, 3943, 0, +4095, 0, 3978, +4095, 0, 3978, +4095, 0, 3978, +4095, 0, 3978, +4095, 0, 3977, +4095, 0, 3977, +4095, 0, 3977, +4095, 0, 3977, +4095, 0, 3977, +4095, 0, 3977, +4095, 0, 3976, +4095, 0, 3976, +4095, 0, 3975, +4095, 0, 3974, +4095, 0, 3972, +4095, 0, 3971, +4095, 0, 3968, +4095, 0, 3965, +4095, 0, 3961, +4095, 0, 3954, +4095, 0, 3946, +4095, 0, 3932, +4095, 0, 3913, +4095, 0, 3886, +4095, 0, 3847, +4095, 0, 3790, +4095, 0, 3699, +4095, 0, 3539, +4095, 0, 3164, +4095, 0, 0, +4095, 0, 0, +4095, 3576, 0, +0, 2618, 2887, +0, 2619, 2887, +0, 2620, 2887, +0, 2621, 2887, +0, 2623, 2887, +0, 2625, 2887, +0, 2628, 2887, +0, 2633, 2887, +0, 2638, 2887, +0, 2646, 2887, +0, 2655, 2887, +0, 2668, 2887, +0, 2684, 2887, +0, 2705, 2887, +0, 2732, 2887, +0, 2765, 2887, +0, 2806, 2887, +0, 2856, 2887, +0, 2887, 2859, +0, 2887, 2767, +0, 2887, 2604, +0, 2887, 2215, +0, 3019, 0, +0, 3152, 0, +1844, 3284, 0, +2613, 3416, 0, +2948, 3548, 0, +3188, 3680, 0, +3387, 3812, 0, +3564, 3944, 0, +3726, 4076, 0, +3880, 4095, 0, +0, 2617, 2887, +0, 2618, 2887, +0, 2619, 2887, +0, 2620, 2887, +0, 2622, 2887, +0, 2625, 2887, +0, 2628, 2887, +0, 2632, 2887, +0, 2638, 2887, +0, 2645, 2887, +0, 2655, 2887, +0, 2667, 2887, +0, 2684, 2887, +0, 2705, 2887, +0, 2731, 2887, +0, 2764, 2887, +0, 2805, 2887, +0, 2855, 2887, +0, 2887, 2859, +0, 2887, 2767, +0, 2887, 2604, +0, 2887, 2215, +0, 3019, 0, +0, 3152, 0, +1849, 3283, 0, +2614, 3416, 0, +2948, 3548, 0, +3188, 3680, 0, +3388, 3812, 0, +3564, 3944, 0, +3726, 4076, 0, +3880, 4095, 0, +0, 2616, 2887, +0, 2617, 2887, +0, 2618, 2887, +0, 2620, 2887, +0, 2621, 2887, +0, 2624, 2887, +0, 2627, 2887, +0, 2631, 2887, +0, 2637, 2887, +0, 2644, 2887, +0, 2654, 2887, +0, 2667, 2887, +0, 2683, 2887, +0, 2704, 2887, +0, 2731, 2887, +0, 2764, 2887, +0, 2805, 2887, +0, 2855, 2887, +0, 2887, 2859, +0, 2887, 2767, +0, 2887, 2605, +0, 2887, 2217, +0, 3019, 0, +0, 3152, 0, +1856, 3283, 0, +2615, 3416, 0, +2949, 3548, 0, +3189, 3680, 0, +3388, 3812, 0, +3564, 3944, 0, +3726, 4076, 0, +3880, 4095, 0, +0, 2615, 2887, +0, 2616, 2887, +0, 2617, 2887, +0, 2619, 2887, +0, 2620, 2887, +0, 2623, 2887, +0, 2626, 2887, +0, 2630, 2887, +0, 2636, 2887, +0, 2643, 2887, +0, 2653, 2887, +0, 2666, 2887, +0, 2682, 2887, +0, 2703, 2887, +0, 2730, 2887, +0, 2763, 2887, +0, 2804, 2887, +0, 2854, 2887, +0, 2887, 2860, +0, 2887, 2768, +0, 2887, 2605, +0, 2887, 2218, +0, 3019, 0, +0, 3151, 0, +1864, 3283, 0, +2617, 3416, 0, +2950, 3548, 0, +3189, 3680, 0, +3388, 3812, 0, +3564, 3944, 0, +3727, 4076, 0, +3880, 4095, 0, +0, 2613, 2887, +0, 2614, 2887, +0, 2615, 2887, +0, 2617, 2887, +0, 2619, 2887, +0, 2621, 2887, +0, 2625, 2887, +0, 2629, 2887, +0, 2635, 2887, +0, 2642, 2887, +0, 2651, 2887, +0, 2664, 2887, +0, 2681, 2887, +0, 2702, 2887, +0, 2728, 2887, +0, 2762, 2887, +0, 2803, 2887, +0, 2853, 2887, +0, 2887, 2860, +0, 2887, 2768, +0, 2887, 2606, +0, 2887, 2220, +0, 3019, 0, +0, 3151, 0, +1875, 3283, 0, +2619, 3416, 0, +2951, 3548, 0, +3190, 3680, 0, +3388, 3812, 0, +3564, 3944, 0, +3727, 4076, 0, +3880, 4095, 0, +0, 2611, 2887, +0, 2612, 2887, +0, 2613, 2887, +0, 2614, 2887, +0, 2617, 2887, +0, 2619, 2887, +0, 2623, 2887, +0, 2627, 2887, +0, 2632, 2887, +0, 2640, 2887, +0, 2650, 2887, +0, 2662, 2887, +0, 2679, 2887, +0, 2700, 2887, +0, 2727, 2887, +0, 2761, 2887, +0, 2802, 2887, +0, 2852, 2887, +0, 2887, 2861, +0, 2887, 2769, +0, 2887, 2607, +0, 2887, 2223, +0, 3019, 0, +0, 3151, 0, +1890, 3283, 0, +2621, 3416, 0, +2952, 3548, 0, +3191, 3680, 0, +3389, 3812, 0, +3565, 3944, 0, +3727, 4076, 0, +3881, 4095, 0, +0, 2607, 2887, +0, 2608, 2887, +0, 2609, 2887, +0, 2611, 2887, +0, 2613, 2887, +0, 2616, 2887, +0, 2620, 2886, +0, 2624, 2886, +0, 2630, 2886, +0, 2637, 2886, +0, 2647, 2886, +0, 2660, 2886, +0, 2677, 2886, +0, 2698, 2886, +0, 2725, 2886, +0, 2759, 2886, +0, 2800, 2886, +0, 2850, 2886, +0, 2886, 2862, +0, 2886, 2770, +0, 2886, 2609, +0, 2886, 2226, +0, 3018, 0, +0, 3151, 0, +1908, 3283, 0, +2625, 3415, 0, +2954, 3548, 0, +3192, 3680, 0, +3390, 3812, 0, +3565, 3944, 0, +3727, 4076, 0, +3881, 4095, 0, +0, 2603, 2887, +0, 2604, 2887, +0, 2605, 2887, +0, 2607, 2887, +0, 2609, 2887, +0, 2612, 2887, +0, 2616, 2886, +0, 2621, 2886, +0, 2626, 2886, +0, 2634, 2886, +0, 2644, 2886, +0, 2657, 2886, +0, 2673, 2886, +0, 2695, 2886, +0, 2722, 2886, +0, 2756, 2886, +0, 2798, 2886, +0, 2848, 2886, +0, 2886, 2863, +0, 2886, 2772, +0, 2886, 2611, +0, 2886, 2231, +0, 3018, 0, +0, 3151, 0, +1932, 3283, 0, +2630, 3415, 0, +2956, 3548, 0, +3193, 3680, 0, +3391, 3812, 0, +3566, 3944, 0, +3728, 4076, 0, +3881, 4095, 0, +0, 2597, 2887, +0, 2598, 2887, +0, 2599, 2887, +0, 2601, 2887, +0, 2603, 2887, +0, 2606, 2887, +0, 2610, 2886, +0, 2615, 2886, +0, 2622, 2885, +0, 2629, 2885, +0, 2639, 2885, +0, 2652, 2885, +0, 2669, 2885, +0, 2691, 2885, +0, 2718, 2885, +0, 2752, 2885, +0, 2795, 2885, +0, 2845, 2885, +0, 2885, 2864, +0, 2885, 2773, +0, 2885, 2613, +0, 2885, 2237, +0, 3018, 0, +0, 3151, 0, +1962, 3283, 0, +2637, 3415, 0, +2960, 3548, 0, +3195, 3680, 0, +3392, 3812, 0, +3567, 3944, 0, +3728, 4076, 0, +3881, 4095, 0, +0, 2589, 2887, +0, 2589, 2887, +0, 2591, 2887, +0, 2592, 2887, +0, 2595, 2887, +0, 2598, 2887, +0, 2602, 2886, +0, 2607, 2886, +0, 2614, 2885, +0, 2623, 2885, +0, 2633, 2885, +0, 2647, 2885, +0, 2664, 2885, +0, 2685, 2885, +0, 2713, 2885, +0, 2748, 2885, +0, 2790, 2885, +0, 2842, 2885, +0, 2885, 2866, +0, 2885, 2776, +0, 2885, 2617, +0, 2885, 2245, +0, 3017, 0, +0, 3150, 0, +1999, 3282, 0, +2646, 3415, 0, +2964, 3547, 0, +3198, 3680, 0, +3394, 3812, 0, +3568, 3944, 0, +3729, 4076, 0, +3882, 4095, 0, +0, 2577, 2887, +0, 2578, 2887, +0, 2580, 2887, +0, 2581, 2887, +0, 2584, 2887, +0, 2587, 2887, +0, 2591, 2886, +0, 2596, 2886, +0, 2603, 2885, +0, 2613, 2885, +0, 2625, 2883, +0, 2639, 2883, +0, 2656, 2883, +0, 2678, 2883, +0, 2706, 2883, +0, 2741, 2883, +0, 2784, 2883, +0, 2836, 2883, +0, 2883, 2869, +0, 2883, 2779, +0, 2883, 2621, +0, 2883, 2255, +0, 3016, 0, +0, 3150, 0, +2045, 3282, 0, +2657, 3414, 0, +2970, 3547, 0, +3201, 3679, 0, +3396, 3812, 0, +3569, 3944, 0, +3730, 4076, 0, +3883, 4095, 0, +0, 2562, 2887, +0, 2563, 2887, +0, 2564, 2887, +0, 2566, 2887, +0, 2569, 2887, +0, 2572, 2887, +0, 2576, 2886, +0, 2581, 2886, +0, 2589, 2885, +0, 2599, 2885, +0, 2611, 2883, +0, 2628, 2882, +0, 2645, 2882, +0, 2668, 2882, +0, 2697, 2882, +0, 2733, 2882, +0, 2777, 2882, +0, 2829, 2882, +0, 2882, 2873, +0, 2882, 2784, +0, 2882, 2628, +0, 2882, 2269, +0, 3015, 0, +0, 3149, 0, +2100, 3281, 0, +2672, 3414, 0, +2977, 3547, 0, +3206, 3679, 0, +3399, 3812, 0, +3571, 3944, 0, +3732, 4076, 0, +3884, 4095, 0, +0, 2541, 2887, +0, 2542, 2887, +0, 2543, 2887, +0, 2545, 2887, +0, 2548, 2887, +0, 2551, 2887, +0, 2555, 2886, +0, 2561, 2886, +0, 2569, 2885, +0, 2579, 2885, +0, 2592, 2883, +0, 2609, 2882, +0, 2631, 2880, +0, 2654, 2880, +0, 2684, 2880, +0, 2721, 2880, +0, 2766, 2880, +0, 2820, 2880, +0, 2880, 2877, +0, 2880, 2789, +0, 2880, 2636, +0, 2880, 2287, +0, 3014, 0, +0, 3148, 0, +2164, 3280, 0, +2691, 3414, 0, +2987, 3546, 0, +3212, 3679, 0, +3403, 3811, 0, +3574, 3944, 0, +3734, 4076, 0, +3885, 4095, 0, +0, 2510, 2887, +0, 2511, 2887, +0, 2513, 2887, +0, 2515, 2887, +0, 2517, 2887, +0, 2521, 2887, +0, 2526, 2886, +0, 2532, 2886, +0, 2540, 2885, +0, 2551, 2885, +0, 2565, 2883, +0, 2583, 2882, +0, 2606, 2880, +0, 2636, 2878, +0, 2666, 2878, +0, 2704, 2878, +0, 2751, 2878, +0, 2807, 2878, +0, 2872, 2878, +0, 2878, 2797, +0, 2878, 2647, +0, 2878, 2309, +0, 3012, 0, +0, 3146, 0, +2237, 3280, 0, +2715, 3413, 0, +3000, 3546, 0, +3220, 3678, 0, +3408, 3811, 0, +3578, 3943, 0, +3736, 4076, 0, +3887, 4095, 0, +0, 2466, 2887, +0, 2467, 2887, +0, 2469, 2887, +0, 2471, 2887, +0, 2474, 2887, +0, 2478, 2887, +0, 2483, 2886, +0, 2490, 2886, +0, 2499, 2885, +0, 2511, 2885, +0, 2526, 2883, +0, 2546, 2882, +0, 2571, 2880, +0, 2602, 2878, +0, 2641, 2874, +0, 2681, 2874, +0, 2730, 2874, +0, 2788, 2874, +0, 2856, 2874, +0, 2874, 2807, +0, 2874, 2661, +0, 2874, 2338, +0, 3010, 0, +0, 3144, 0, +2320, 3278, 0, +2746, 3412, 0, +3016, 3545, 0, +3230, 3678, 0, +3415, 3810, 0, +3583, 3943, 0, +3739, 4075, 0, +3889, 4095, 0, +0, 2400, 2887, +0, 2401, 2887, +0, 2403, 2887, +0, 2406, 2887, +0, 2409, 2887, +0, 2413, 2887, +0, 2419, 2886, +0, 2427, 2886, +0, 2438, 2885, +0, 2451, 2885, +0, 2469, 2883, +0, 2491, 2882, +0, 2519, 2880, +0, 2554, 2878, +0, 2597, 2874, +0, 2649, 2870, +0, 2701, 2870, +0, 2763, 2870, +0, 2834, 2870, +0, 2870, 2820, +0, 2870, 2678, +0, 2870, 2374, +0, 3006, 0, +1068, 3142, 0, +2411, 3276, 0, +2784, 3410, 0, +3038, 3544, 0, +3243, 3677, 0, +3424, 3810, 0, +3589, 3943, 0, +3744, 4075, 0, +3893, 4095, 0, +0, 2292, 2887, +0, 2294, 2887, +0, 2296, 2887, +0, 2299, 2887, +0, 2304, 2887, +0, 2310, 2887, +0, 2317, 2886, +0, 2327, 2886, +0, 2340, 2885, +0, 2356, 2885, +0, 2378, 2883, +0, 2405, 2882, +0, 2439, 2880, +0, 2480, 2878, +0, 2530, 2874, +0, 2590, 2870, +870, 2659, 2863, +870, 2726, 2863, +870, 2803, 2863, +870, 2863, 2837, +870, 2863, 2701, +870, 2863, 2417, +0, 3002, 1109, +1857, 3138, 0, +2510, 3274, 0, +2830, 3408, 0, +3065, 3543, 0, +3261, 3676, 0, +3435, 3809, 0, +3597, 3942, 0, +3750, 4075, 0, +3897, 4095, 0, +0, 2091, 2887, +0, 2094, 2887, +0, 2098, 2887, +0, 2103, 2887, +0, 2110, 2887, +0, 2118, 2887, +0, 2129, 2886, +0, 2144, 2886, +0, 2163, 2885, +0, 2188, 2885, +0, 2218, 2883, +0, 2256, 2882, +0, 2302, 2880, +0, 2358, 2878, +0, 2423, 2874, +0, 2497, 2870, +870, 2580, 2863, +1796, 2672, 2855, +1796, 2758, 2855, +1796, 2852, 2855, +1796, 2855, 2730, +1796, 2855, 2470, +1006, 2995, 1635, +2195, 3134, 0, +2616, 3270, 0, +2886, 3406, 0, +3099, 3541, 0, +3283, 3675, 0, +3451, 3808, 0, +3608, 3941, 0, +3757, 4074, 0, +3903, 4095, 0, +0, 1472, 2887, +0, 1483, 2887, +0, 1497, 2887, +0, 1516, 2887, +0, 1540, 2887, +0, 1569, 2887, +0, 1606, 2886, +0, 1651, 2886, +0, 1706, 2885, +0, 1769, 2885, +0, 1843, 2883, +0, 1925, 2882, +0, 2016, 2880, +0, 2115, 2878, +0, 2220, 2874, +0, 2332, 2870, +870, 2447, 2863, +1796, 2567, 2855, +2147, 2689, 2843, +2147, 2797, 2843, +2147, 2843, 2766, +2147, 2843, 2532, +1930, 2987, 1930, +2436, 3128, 1137, +2727, 3266, 0, +2951, 3402, 0, +3140, 3538, 0, +3311, 3673, 0, +3470, 3807, 0, +3622, 3940, 0, +3768, 4073, 0, +3910, 4095, 0, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2886, +0, 0, 2886, +0, 0, 2885, +0, 0, 2885, +0, 0, 2883, +0, 0, 2882, +0, 0, 2880, +0, 817, 2878, +0, 1596, 2874, +0, 1932, 2870, +870, 2173, 2863, +1796, 2372, 2855, +2147, 2549, 2843, +2393, 2711, 2828, +2393, 2828, 2810, +2393, 2828, 2603, +2377, 2975, 2280, +2636, 3119, 2061, +2843, 3259, 1272, +3025, 3398, 0, +3190, 3535, 0, +3346, 3670, 0, +3495, 3805, 0, +3640, 3939, 0, +3781, 4072, 0, +3920, 4095, 0, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2887, +0, 0, 2886, +0, 0, 2886, +0, 0, 2885, +0, 0, 2885, +0, 0, 2883, +0, 0, 2882, +0, 0, 2880, +0, 0, 2878, +0, 0, 2874, +963, 0, 2870, +1498, 870, 2863, +1796, 1797, 2855, +2147, 2246, 2843, +2393, 2522, 2828, +2596, 2739, 2805, +2596, 2805, 2684, +2654, 2959, 2526, +2813, 3108, 2412, +2963, 3251, 2194, +3108, 3392, 1406, +3250, 3530, 0, +3389, 3667, 0, +3527, 3802, 0, +3663, 3937, 0, +3798, 4071, 0, +3932, 4095, 0, +2215, 0, 2887, +2215, 0, 2887, +2217, 0, 2887, +2218, 0, 2887, +2220, 0, 2887, +2223, 0, 2887, +2226, 0, 2886, +2231, 0, 2886, +2237, 0, 2885, +2245, 0, 2885, +2255, 0, 2883, +2269, 0, 2882, +2287, 0, 2880, +2309, 0, 2878, +2338, 0, 2874, +2374, 0, 2870, +2417, 870, 2863, +2470, 1796, 2855, +2532, 2147, 2843, +2603, 2393, 2828, +2684, 2596, 2805, +2774, 2774, 2774, +2871, 2937, 2728, +2976, 3092, 2658, +3085, 3239, 2544, +3201, 3383, 2326, +3320, 3524, 1536, +3441, 3662, 0, +3566, 3799, 0, +3692, 3934, 0, +3820, 4069, 0, +3949, 4095, 0, +2735, 0, 3019, +2735, 0, 3019, +2736, 0, 3019, +2736, 0, 3019, +2737, 0, 3019, +2738, 0, 3019, +2739, 0, 3018, +2740, 0, 3018, +2742, 0, 3018, +2745, 0, 3017, +2749, 0, 3016, +2753, 0, 3015, +2759, 0, 3014, +2767, 0, 3012, +2778, 0, 3010, +2792, 0, 3006, +2810, 0, 3002, +2833, 1006, 2995, +2862, 1930, 2987, +2898, 2280, 2975, +2942, 2526, 2959, +2937, 2728, 2871, +2937, 2816, 2728, +3092, 3074, 2658, +3193, 3239, 2544, +3286, 3383, 2326, +3387, 3524, 1536, +3494, 3662, 0, +3606, 3799, 0, +3723, 3934, 0, +3843, 4069, 0, +3966, 4095, 0, +3031, 0, 3152, +3031, 0, 3152, +3031, 0, 3152, +3031, 0, 3151, +3031, 0, 3151, +3032, 0, 3151, +3032, 0, 3151, +3033, 0, 3151, +3034, 0, 3151, +3036, 0, 3150, +3038, 0, 3150, +3040, 0, 3149, +3043, 0, 3148, +3047, 0, 3146, +3053, 0, 3144, +3061, 0, 3142, +3071, 0, 3138, +3084, 0, 3134, +3101, 1137, 3128, +3119, 2061, 3116, +3108, 2412, 3061, +3092, 2658, 2976, +3092, 2658, 2787, +3092, 2867, 2658, +3239, 3162, 2544, +3380, 3383, 2326, +3463, 3524, 1536, +3555, 3662, 0, +3655, 3799, 0, +3761, 3934, 0, +3873, 4069, 0, +3989, 4095, 0, +3254, 0, 3284, +3254, 0, 3283, +3255, 0, 3283, +3255, 0, 3283, +3255, 0, 3283, +3255, 0, 3283, +3256, 0, 3283, +3256, 0, 3283, +3257, 0, 3283, +3257, 0, 3282, +3259, 0, 3282, +3260, 0, 3281, +3262, 0, 3280, +3265, 0, 3280, +3269, 0, 3278, +3273, 0, 3276, +3274, 0, 3268, +3270, 0, 3252, +3266, 0, 3230, +3259, 1272, 3199, +3251, 2194, 3154, +3239, 2544, 3085, +3239, 2544, 2945, +3239, 2544, 2642, +3239, 2928, 2544, +3383, 3258, 2326, +3524, 3497, 1536, +3626, 3662, 0, +3713, 3799, 0, +3808, 3934, 0, +3910, 4069, 0, +4018, 4095, 0, +3416, 0, 3385, +3416, 0, 3385, +3416, 0, 3384, +3416, 0, 3384, +3416, 0, 3384, +3416, 0, 3384, +3415, 0, 3383, +3415, 0, 3382, +3415, 0, 3381, +3415, 0, 3380, +3414, 0, 3379, +3414, 0, 3376, +3414, 0, 3374, +3413, 0, 3370, +3412, 0, 3365, +3410, 0, 3358, +3408, 0, 3348, +3406, 0, 3335, +3402, 0, 3317, +3398, 0, 3291, +3392, 1406, 3255, +3383, 2326, 3201, +3383, 2326, 3095, +3383, 2326, 2900, +3383, 2326, 2328, +3383, 2998, 2326, +3524, 3362, 1536, +3662, 3612, 0, +3781, 3799, 0, +3863, 3934, 0, +3954, 4069, 0, +4054, 4095, 0, +3548, 0, 3467, +3548, 0, 3467, +3548, 0, 3467, +3548, 0, 3467, +3548, 0, 3467, +3548, 0, 3466, +3548, 0, 3466, +3548, 0, 3466, +3548, 0, 3465, +3547, 0, 3464, +3547, 0, 3462, +3547, 0, 3461, +3546, 0, 3458, +3546, 0, 3455, +3545, 0, 3451, +3544, 0, 3445, +3543, 0, 3437, +3541, 0, 3426, +3538, 0, 3411, +3535, 0, 3391, +3530, 0, 3362, +3524, 1536, 3320, +3524, 1536, 3241, +3524, 1536, 3108, +3524, 1536, 2833, +3524, 2158, 1536, +3524, 3078, 1536, +3662, 3471, 0, +3799, 3731, 0, +3928, 3934, 0, +4008, 4069, 0, +4095, 4095, 0, +3680, 0, 3558, +3680, 0, 3558, +3680, 0, 3558, +3680, 0, 3558, +3680, 0, 3558, +3680, 0, 3558, +3680, 0, 3557, +3680, 0, 3557, +3680, 0, 3556, +3680, 0, 3556, +3679, 0, 3554, +3679, 0, 3553, +3679, 0, 3551, +3678, 0, 3548, +3678, 0, 3545, +3677, 0, 3540, +3676, 0, 3534, +3675, 0, 3525, +3673, 0, 3513, +3670, 0, 3497, +3667, 0, 3474, +3662, 0, 3441, +3662, 0, 3382, +3662, 0, 3289, +3662, 0, 3125, +3662, 0, 2724, +3662, 1753, 0, +3662, 3166, 0, +3799, 3585, 0, +3934, 3853, 0, +4069, 4066, 0, +4095, 4095, 0, +3812, 0, 3657, +3812, 0, 3657, +3812, 0, 3657, +3812, 0, 3657, +3812, 0, 3657, +3812, 0, 3657, +3812, 0, 3657, +3812, 0, 3656, +3812, 0, 3656, +3812, 0, 3655, +3812, 0, 3654, +3812, 0, 3653, +3811, 0, 3652, +3811, 0, 3650, +3810, 0, 3647, +3810, 0, 3643, +3809, 0, 3638, +3808, 0, 3631, +3807, 0, 3622, +3805, 0, 3609, +3802, 0, 3591, +3799, 0, 3566, +3799, 0, 3522, +3799, 0, 3455, +3799, 0, 3347, +3799, 0, 3145, +3799, 0, 2519, +3799, 0, 0, +3799, 3262, 0, +3934, 3703, 0, +4069, 3978, 0, +4095, 4095, 0, +3944, 0, 3763, +3944, 0, 3763, +3944, 0, 3763, +3944, 0, 3763, +3944, 0, 3763, +3944, 0, 3763, +3944, 0, 3762, +3944, 0, 3762, +3944, 0, 3762, +3944, 0, 3761, +3944, 0, 3761, +3944, 0, 3760, +3944, 0, 3758, +3943, 0, 3757, +3943, 0, 3755, +3943, 0, 3752, +3942, 0, 3748, +3941, 0, 3742, +3940, 0, 3735, +3939, 0, 3725, +3937, 0, 3711, +3934, 0, 3692, +3934, 0, 3659, +3934, 0, 3611, +3934, 0, 3537, +3934, 0, 3414, +3934, 0, 3172, +3934, 0, 1863, +3934, 0, 0, +3934, 3366, 0, +4069, 3824, 0, +4095, 4095, 0, +4076, 0, 3874, +4076, 0, 3874, +4076, 0, 3874, +4076, 0, 3874, +4076, 0, 3874, +4076, 0, 3874, +4076, 0, 3874, +4076, 0, 3873, +4076, 0, 3873, +4076, 0, 3873, +4076, 0, 3872, +4076, 0, 3872, +4076, 0, 3871, +4076, 0, 3869, +4075, 0, 3868, +4075, 0, 3865, +4075, 0, 3862, +4074, 0, 3858, +4073, 0, 3852, +4072, 0, 3845, +4071, 0, 3834, +4069, 0, 3820, +4069, 0, 3795, +4069, 0, 3760, +4069, 0, 3708, +4069, 0, 3627, +4069, 0, 3491, +4069, 0, 3205, +4069, 0, 0, +4069, 0, 0, +4069, 3475, 0, +4095, 3949, 0, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3990, +4095, 0, 3989, +4095, 0, 3989, +4095, 0, 3989, +4095, 0, 3988, +4095, 0, 3988, +4095, 0, 3986, +4095, 0, 3985, +4095, 0, 3983, +4095, 0, 3981, +4095, 0, 3978, +4095, 0, 3974, +4095, 0, 3968, +4095, 0, 3960, +4095, 0, 3949, +4095, 0, 3930, +4095, 0, 3904, +4095, 0, 3867, +4095, 0, 3812, +4095, 0, 3726, +4095, 0, 3577, +4095, 0, 3246, +4095, 0, 0, +4095, 0, 0, +4095, 3590, 0, +0, 2750, 3019, +0, 2750, 3019, +0, 2751, 3019, +0, 2752, 3019, +0, 2754, 3019, +0, 2755, 3019, +0, 2758, 3019, +0, 2761, 3019, +0, 2765, 3019, +0, 2771, 3019, +0, 2778, 3019, +0, 2788, 3019, +0, 2800, 3019, +0, 2816, 3019, +0, 2837, 3019, +0, 2864, 3019, +0, 2897, 3019, +0, 2938, 3019, +0, 2988, 3019, +0, 3019, 2991, +0, 3019, 2898, +0, 3019, 2735, +0, 3019, 2346, +0, 3152, 0, +0, 3284, 0, +1977, 3416, 0, +2745, 3548, 0, +3080, 3680, 0, +3320, 3812, 0, +3520, 3944, 0, +3696, 4076, 0, +3859, 4095, 0, +0, 2749, 3019, +0, 2750, 3019, +0, 2751, 3019, +0, 2752, 3019, +0, 2753, 3019, +0, 2755, 3019, +0, 2757, 3019, +0, 2760, 3019, +0, 2765, 3019, +0, 2770, 3019, +0, 2777, 3019, +0, 2787, 3019, +0, 2800, 3019, +0, 2816, 3019, +0, 2837, 3019, +0, 2863, 3019, +0, 2897, 3019, +0, 2938, 3019, +0, 2987, 3019, +0, 3019, 2991, +0, 3019, 2898, +0, 3019, 2735, +0, 3019, 2346, +0, 3152, 0, +0, 3283, 0, +1981, 3416, 0, +2745, 3548, 0, +3080, 3680, 0, +3321, 3812, 0, +3520, 3944, 0, +3696, 4076, 0, +3859, 4095, 0, +0, 2748, 3019, +0, 2749, 3019, +0, 2750, 3019, +0, 2751, 3019, +0, 2752, 3019, +0, 2754, 3019, +0, 2757, 3019, +0, 2760, 3019, +0, 2764, 3019, +0, 2770, 3019, +0, 2777, 3019, +0, 2787, 3019, +0, 2799, 3019, +0, 2816, 3019, +0, 2836, 3019, +0, 2863, 3019, +0, 2896, 3019, +0, 2938, 3019, +0, 2987, 3019, +0, 3019, 2991, +0, 3019, 2898, +0, 3019, 2736, +0, 3019, 2347, +0, 3152, 0, +0, 3283, 0, +1986, 3416, 0, +2746, 3548, 0, +3081, 3680, 0, +3321, 3812, 0, +3520, 3944, 0, +3696, 4076, 0, +3859, 4095, 0, +0, 2747, 3019, +0, 2748, 3019, +0, 2749, 3019, +0, 2750, 3019, +0, 2751, 3019, +0, 2753, 3019, +0, 2756, 3019, +0, 2759, 3019, +0, 2763, 3019, +0, 2769, 3019, +0, 2776, 3019, +0, 2786, 3019, +0, 2798, 3019, +0, 2815, 3019, +0, 2836, 3019, +0, 2863, 3019, +0, 2896, 3019, +0, 2937, 3019, +0, 2987, 3019, +0, 3019, 2991, +0, 3019, 2899, +0, 3019, 2736, +0, 3019, 2348, +0, 3151, 0, +0, 3283, 0, +1992, 3416, 0, +2747, 3548, 0, +3081, 3680, 0, +3321, 3812, 0, +3520, 3944, 0, +3696, 4076, 0, +3859, 4095, 0, +0, 2746, 3019, +0, 2747, 3019, +0, 2747, 3019, +0, 2749, 3019, +0, 2750, 3019, +0, 2752, 3019, +0, 2755, 3019, +0, 2758, 3019, +0, 2762, 3019, +0, 2768, 3019, +0, 2775, 3019, +0, 2785, 3019, +0, 2797, 3019, +0, 2814, 3019, +0, 2835, 3019, +0, 2862, 3019, +0, 2895, 3019, +0, 2936, 3019, +0, 2986, 3019, +0, 3019, 2992, +0, 3019, 2899, +0, 3019, 2737, +0, 3019, 2350, +0, 3151, 0, +0, 3283, 0, +2000, 3416, 0, +2749, 3548, 0, +3082, 3680, 0, +3322, 3812, 0, +3520, 3944, 0, +3696, 4076, 0, +3859, 4095, 0, +0, 2744, 3019, +0, 2745, 3019, +0, 2746, 3019, +0, 2747, 3019, +0, 2749, 3019, +0, 2751, 3019, +0, 2753, 3019, +0, 2756, 3019, +0, 2761, 3019, +0, 2766, 3019, +0, 2774, 3019, +0, 2784, 3019, +0, 2796, 3019, +0, 2813, 3019, +0, 2834, 3019, +0, 2860, 3019, +0, 2894, 3019, +0, 2935, 3019, +0, 2985, 3019, +0, 3019, 2992, +0, 3019, 2900, +0, 3019, 2738, +0, 3019, 2352, +0, 3151, 0, +0, 3283, 0, +2011, 3416, 0, +2751, 3548, 0, +3083, 3680, 0, +3322, 3812, 0, +3521, 3944, 0, +3696, 4076, 0, +3859, 4095, 0, +0, 2742, 3019, +0, 2742, 3019, +0, 2743, 3019, +0, 2745, 3019, +0, 2746, 3019, +0, 2748, 3019, +0, 2751, 3018, +0, 2754, 3018, +0, 2759, 3018, +0, 2764, 3018, +0, 2772, 3018, +0, 2782, 3018, +0, 2794, 3018, +0, 2811, 3018, +0, 2832, 3018, +0, 2859, 3018, +0, 2892, 3018, +0, 2934, 3018, +0, 2984, 3018, +0, 3018, 2992, +0, 3018, 2901, +0, 3018, 2739, +0, 3018, 2354, +0, 3151, 0, +0, 3283, 0, +2026, 3415, 0, +2754, 3548, 0, +3084, 3680, 0, +3323, 3812, 0, +3521, 3944, 0, +3697, 4076, 0, +3859, 4095, 0, +0, 2738, 3019, +0, 2739, 3019, +0, 2740, 3019, +0, 2741, 3019, +0, 2743, 3019, +0, 2745, 3019, +0, 2748, 3018, +0, 2752, 3018, +0, 2756, 3018, +0, 2762, 3018, +0, 2769, 3018, +0, 2779, 3018, +0, 2792, 3018, +0, 2808, 3018, +0, 2830, 3018, +0, 2857, 3018, +0, 2890, 3018, +0, 2932, 3018, +0, 2982, 3018, +0, 3018, 2993, +0, 3018, 2902, +0, 3018, 2740, +0, 3018, 2358, +0, 3151, 0, +0, 3283, 0, +2044, 3415, 0, +2758, 3548, 0, +3086, 3680, 0, +3324, 3812, 0, +3522, 3944, 0, +3697, 4076, 0, +3860, 4095, 0, +0, 2734, 3019, +0, 2735, 3019, +0, 2735, 3019, +0, 2737, 3019, +0, 2738, 3019, +0, 2741, 3019, +0, 2744, 3018, +0, 2747, 3018, +0, 2752, 3018, +0, 2758, 3018, +0, 2766, 3018, +0, 2776, 3018, +0, 2789, 3018, +0, 2805, 3018, +0, 2827, 3018, +0, 2854, 3018, +0, 2888, 3018, +0, 2930, 3018, +0, 2980, 3018, +0, 3018, 2995, +0, 3018, 2903, +0, 3018, 2742, +0, 3018, 2362, +0, 3151, 0, +0, 3283, 0, +2068, 3415, 0, +2763, 3548, 0, +3089, 3680, 0, +3326, 3812, 0, +3523, 3944, 0, +3698, 4076, 0, +3860, 4095, 0, +0, 2728, 3019, +0, 2729, 3019, +0, 2729, 3019, +0, 2731, 3019, +0, 2732, 3019, +0, 2735, 3019, +0, 2738, 3018, +0, 2742, 3018, +0, 2747, 3018, +0, 2754, 3017, +0, 2761, 3017, +0, 2771, 3017, +0, 2784, 3017, +0, 2801, 3017, +0, 2823, 3017, +0, 2850, 3017, +0, 2885, 3017, +0, 2927, 3017, +0, 2977, 3017, +0, 3017, 2996, +0, 3017, 2905, +0, 3017, 2745, +0, 3017, 2369, +0, 3150, 0, +0, 3282, 0, +2098, 3415, 0, +2770, 3547, 0, +3092, 3680, 0, +3328, 3812, 0, +3524, 3944, 0, +3699, 4076, 0, +3861, 4095, 0, +0, 2720, 3019, +0, 2720, 3019, +0, 2721, 3019, +0, 2723, 3019, +0, 2724, 3019, +0, 2727, 3019, +0, 2730, 3018, +0, 2734, 3018, +0, 2739, 3018, +0, 2746, 3017, +0, 2755, 3016, +0, 2765, 3016, +0, 2778, 3016, +0, 2796, 3016, +0, 2817, 3016, +0, 2845, 3016, +0, 2880, 3016, +0, 2922, 3016, +0, 2974, 3016, +0, 3016, 2998, +0, 3016, 2907, +0, 3016, 2749, +0, 3016, 2377, +0, 3150, 0, +0, 3282, 0, +2135, 3414, 0, +2778, 3547, 0, +3096, 3679, 0, +3330, 3812, 0, +3526, 3944, 0, +3700, 4076, 0, +3862, 4095, 0, +0, 2708, 3019, +0, 2709, 3019, +0, 2710, 3019, +0, 2712, 3019, +0, 2713, 3019, +0, 2716, 3019, +0, 2719, 3018, +0, 2723, 3018, +0, 2728, 3018, +0, 2735, 3017, +0, 2745, 3016, +0, 2757, 3015, +0, 2770, 3015, +0, 2788, 3015, +0, 2810, 3015, +0, 2838, 3015, +0, 2873, 3015, +0, 2916, 3015, +0, 2968, 3015, +0, 3015, 3001, +0, 3015, 2911, +0, 3015, 2753, +0, 3015, 2387, +0, 3149, 0, +0, 3281, 0, +2180, 3414, 0, +2790, 3547, 0, +3102, 3679, 0, +3333, 3812, 0, +3528, 3944, 0, +3701, 4076, 0, +3863, 4095, 0, +0, 2693, 3019, +0, 2694, 3019, +0, 2695, 3019, +0, 2696, 3019, +0, 2698, 3019, +0, 2701, 3019, +0, 2703, 3018, +0, 2708, 3018, +0, 2714, 3018, +0, 2721, 3017, +0, 2731, 3016, +0, 2743, 3015, +0, 2759, 3014, +0, 2777, 3014, +0, 2800, 3014, +0, 2829, 3014, +0, 2865, 3014, +0, 2908, 3014, +0, 2961, 3014, +0, 3014, 3004, +0, 3014, 2915, +0, 3014, 2759, +0, 3014, 2401, +0, 3148, 0, +0, 3280, 0, +2234, 3414, 0, +2804, 3546, 0, +3110, 3679, 0, +3338, 3811, 0, +3531, 3944, 0, +3703, 4076, 0, +3864, 4095, 0, +0, 2672, 3019, +0, 2672, 3019, +0, 2673, 3019, +0, 2675, 3019, +0, 2677, 3019, +0, 2679, 3019, +0, 2683, 3018, +0, 2687, 3018, +0, 2693, 3018, +0, 2701, 3017, +0, 2711, 3016, +0, 2724, 3015, +0, 2741, 3014, +0, 2763, 3012, +0, 2786, 3012, +0, 2816, 3012, +0, 2853, 3012, +0, 2898, 3012, +0, 2952, 3012, +0, 3012, 3009, +0, 3012, 2921, +0, 3012, 2767, +0, 3012, 2419, +0, 3146, 0, +0, 3280, 0, +2298, 3413, 0, +2824, 3546, 0, +3119, 3678, 0, +3344, 3811, 0, +3535, 3943, 0, +3706, 4076, 0, +3866, 4095, 0, +0, 2641, 3019, +0, 2642, 3019, +0, 2643, 3019, +0, 2645, 3019, +0, 2647, 3019, +0, 2649, 3019, +0, 2653, 3018, +0, 2658, 3018, +0, 2664, 3018, +0, 2672, 3017, +0, 2683, 3016, +0, 2697, 3015, +0, 2715, 3014, +0, 2738, 3012, +0, 2767, 3010, +0, 2798, 3010, +0, 2836, 3010, +0, 2883, 3010, +0, 2939, 3010, +0, 3004, 3010, +0, 3010, 2928, +0, 3010, 2778, +0, 3010, 2441, +0, 3144, 0, +0, 3278, 0, +2371, 3412, 0, +2848, 3545, 0, +3132, 3678, 0, +3352, 3810, 0, +3540, 3943, 0, +3710, 4075, 0, +3868, 4095, 0, +0, 2597, 3019, +0, 2598, 3019, +0, 2599, 3019, +0, 2601, 3019, +0, 2603, 3019, +0, 2606, 3019, +0, 2610, 3018, +0, 2615, 3018, +0, 2622, 3018, +0, 2631, 3017, +0, 2643, 3016, +0, 2658, 3015, +0, 2678, 3014, +0, 2703, 3012, +0, 2734, 3010, +0, 2773, 3006, +0, 2813, 3006, +0, 2862, 3006, +0, 2920, 3006, +0, 2988, 3006, +0, 3006, 2939, +0, 3006, 2792, +0, 3006, 2470, +0, 3142, 0, +0, 3276, 0, +2453, 3410, 0, +2879, 3544, 0, +3149, 3677, 0, +3362, 3810, 0, +3547, 3943, 0, +3714, 4075, 0, +3872, 4095, 0, +0, 2530, 3019, +0, 2531, 3019, +0, 2533, 3019, +0, 2535, 3019, +0, 2537, 3019, +0, 2541, 3019, +0, 2545, 3018, +0, 2551, 3018, +0, 2559, 3018, +0, 2570, 3017, +0, 2583, 3016, +0, 2600, 3015, +0, 2623, 3014, +0, 2651, 3012, +0, 2686, 3010, +0, 2729, 3006, +0, 2781, 3002, +0, 2833, 3002, +0, 2895, 3002, +0, 2966, 3002, +0, 3002, 2952, +0, 3002, 2810, +0, 3002, 2505, +0, 3138, 0, +1202, 3274, 0, +2545, 3408, 0, +2917, 3543, 0, +3170, 3676, 0, +3376, 3809, 0, +3556, 3942, 0, +3721, 4075, 0, +3876, 4095, 0, +0, 2422, 3019, +0, 2424, 3019, +0, 2426, 3019, +0, 2428, 3019, +0, 2431, 3019, +0, 2435, 3019, +0, 2441, 3018, +0, 2449, 3018, +0, 2459, 3018, +0, 2471, 3017, +0, 2488, 3016, +0, 2510, 3015, +0, 2536, 3014, +0, 2570, 3012, +0, 2612, 3010, +0, 2662, 3006, +0, 2722, 3002, +1006, 2791, 2995, +1006, 2858, 2995, +1006, 2935, 2995, +1006, 2995, 2968, +1006, 2995, 2833, +1006, 2995, 2549, +0, 3134, 1211, +1990, 3270, 0, +2643, 3406, 0, +2963, 3541, 0, +3197, 3675, 0, +3393, 3808, 0, +3568, 3941, 0, +3729, 4074, 0, +3882, 4095, 0, +0, 2220, 3019, +0, 2222, 3019, +0, 2225, 3019, +0, 2229, 3019, +0, 2234, 3019, +0, 2241, 3019, +0, 2249, 3018, +0, 2261, 3018, +0, 2276, 3018, +0, 2294, 3017, +0, 2319, 3016, +0, 2350, 3015, +0, 2388, 3014, +0, 2434, 3012, +0, 2489, 3010, +0, 2554, 3006, +0, 2628, 3002, +1006, 2712, 2995, +1930, 2804, 2987, +1930, 2890, 2987, +1930, 2984, 2987, +1930, 2987, 2862, +1930, 2987, 2602, +1137, 3128, 1758, +2327, 3266, 0, +2749, 3402, 0, +3018, 3538, 0, +3231, 3673, 0, +3415, 3807, 0, +3583, 3940, 0, +3740, 4073, 0, +3890, 4095, 0, +0, 1594, 3019, +0, 1602, 3019, +0, 1613, 3019, +0, 1628, 3019, +0, 1646, 3019, +0, 1670, 3019, +0, 1700, 3018, +0, 1737, 3018, +0, 1782, 3018, +0, 1837, 3017, +0, 1900, 3016, +0, 1974, 3015, +0, 2056, 3014, +0, 2148, 3012, +0, 2247, 3010, +0, 2352, 3006, +0, 2463, 3002, +1006, 2579, 2995, +1930, 2699, 2987, +2280, 2821, 2975, +2280, 2929, 2975, +2280, 2975, 2898, +2280, 2975, 2664, +2064, 3119, 2061, +2569, 3259, 1272, +2860, 3398, 0, +3083, 3535, 0, +3273, 3670, 0, +3443, 3805, 0, +3603, 3939, 0, +3754, 4072, 0, +3900, 4095, 0, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3018, +0, 0, 3018, +0, 0, 3018, +0, 0, 3017, +0, 0, 3016, +0, 0, 3015, +0, 0, 3014, +0, 0, 3012, +0, 922, 3010, +0, 1723, 3006, +0, 2062, 3002, +1006, 2303, 2995, +1930, 2503, 2987, +2280, 2680, 2975, +2526, 2843, 2959, +2526, 2959, 2942, +2526, 2959, 2735, +2511, 3108, 2412, +2768, 3251, 2194, +2976, 3392, 1406, +3157, 3530, 0, +3323, 3667, 0, +3479, 3802, 0, +3628, 3937, 0, +3772, 4071, 0, +3913, 4095, 0, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3019, +0, 0, 3018, +0, 0, 3018, +0, 0, 3018, +0, 0, 3017, +0, 0, 3016, +0, 0, 3015, +0, 0, 3014, +0, 0, 3012, +0, 0, 3010, +0, 0, 3006, +1109, 0, 3002, +1635, 1006, 2995, +1930, 1930, 2987, +2280, 2377, 2975, +2526, 2654, 2959, +2728, 2871, 2937, +2728, 2937, 2816, +2787, 3092, 2658, +2945, 3239, 2544, +3095, 3383, 2326, +3241, 3524, 1536, +3382, 3662, 0, +3522, 3799, 0, +3659, 3934, 0, +3795, 4069, 0, +3930, 4095, 0, +2346, 0, 3019, +2346, 0, 3019, +2347, 0, 3019, +2348, 0, 3019, +2350, 0, 3019, +2352, 0, 3019, +2354, 0, 3018, +2358, 0, 3018, +2362, 0, 3018, +2369, 0, 3017, +2377, 0, 3016, +2387, 0, 3015, +2401, 0, 3014, +2419, 0, 3012, +2441, 0, 3010, +2470, 0, 3006, +2505, 0, 3002, +2549, 1006, 2995, +2602, 1930, 2987, +2664, 2280, 2975, +2735, 2526, 2959, +2816, 2728, 2937, +2906, 2906, 2906, +3003, 3069, 2860, +3107, 3223, 2790, +3218, 3372, 2676, +3333, 3515, 2457, +3452, 3656, 1663, +3574, 3794, 0, +3698, 3931, 0, +3824, 4066, 0, +3952, 4095, 0, +2868, 0, 3152, +2868, 0, 3152, +2869, 0, 3152, +2869, 0, 3151, +2869, 0, 3151, +2870, 0, 3151, +2871, 0, 3151, +2872, 0, 3151, +2873, 0, 3151, +2875, 0, 3150, +2878, 0, 3150, +2881, 0, 3149, +2886, 0, 3148, +2892, 0, 3146, +2901, 0, 3144, +2911, 0, 3142, +2925, 0, 3138, +2943, 0, 3134, +2965, 1137, 3128, +2995, 2061, 3119, +3031, 2412, 3108, +3074, 2658, 3092, +3069, 2860, 3003, +3069, 2948, 2860, +3223, 3206, 2790, +3325, 3372, 2676, +3418, 3515, 2457, +3519, 3656, 1663, +3626, 3794, 0, +3738, 3931, 0, +3855, 4066, 0, +3976, 4095, 0, +3162, 0, 3284, +3162, 0, 3283, +3163, 0, 3283, +3163, 0, 3283, +3163, 0, 3283, +3163, 0, 3283, +3164, 0, 3283, +3164, 0, 3283, +3165, 0, 3283, +3166, 0, 3282, +3168, 0, 3282, +3169, 0, 3281, +3172, 0, 3280, +3175, 0, 3280, +3180, 0, 3278, +3185, 0, 3276, +3193, 0, 3274, +3203, 0, 3270, +3216, 0, 3266, +3233, 1272, 3259, +3251, 2194, 3248, +3239, 2544, 3193, +3223, 2790, 3107, +3223, 2790, 2918, +3223, 2999, 2790, +3372, 3294, 2676, +3512, 3515, 2457, +3595, 3656, 1663, +3687, 3794, 0, +3787, 3931, 0, +3893, 4066, 0, +4005, 4095, 0, +3387, 0, 3416, +3387, 0, 3416, +3387, 0, 3416, +3387, 0, 3416, +3387, 0, 3416, +3387, 0, 3416, +3387, 0, 3415, +3388, 0, 3415, +3388, 0, 3415, +3389, 0, 3415, +3390, 0, 3414, +3391, 0, 3414, +3393, 0, 3414, +3395, 0, 3413, +3397, 0, 3412, +3401, 0, 3410, +3406, 0, 3408, +3406, 0, 3400, +3402, 0, 3384, +3398, 0, 3362, +3392, 1406, 3331, +3383, 2326, 3286, +3372, 2676, 3218, +3372, 2676, 3077, +3372, 2676, 2774, +3372, 3060, 2676, +3515, 3391, 2457, +3656, 3629, 1663, +3759, 3794, 0, +3845, 3931, 0, +3940, 4066, 0, +4042, 4095, 0, +3548, 0, 3516, +3548, 0, 3516, +3548, 0, 3516, +3548, 0, 3516, +3548, 0, 3516, +3548, 0, 3516, +3548, 0, 3515, +3548, 0, 3515, +3548, 0, 3514, +3547, 0, 3513, +3547, 0, 3512, +3547, 0, 3511, +3546, 0, 3509, +3546, 0, 3506, +3545, 0, 3502, +3544, 0, 3497, +3543, 0, 3490, +3541, 0, 3480, +3538, 0, 3467, +3535, 0, 3449, +3530, 0, 3423, +3524, 1536, 3387, +3515, 2457, 3333, +3515, 2457, 3227, +3515, 2457, 3032, +3515, 2457, 2459, +3515, 3130, 2457, +3656, 3494, 1663, +3794, 3745, 0, +3913, 3931, 0, +3995, 4066, 0, +4087, 4095, 0, +3680, 0, 3599, +3680, 0, 3599, +3680, 0, 3599, +3680, 0, 3599, +3680, 0, 3599, +3680, 0, 3599, +3680, 0, 3598, +3680, 0, 3598, +3680, 0, 3597, +3680, 0, 3597, +3679, 0, 3596, +3679, 0, 3595, +3679, 0, 3593, +3678, 0, 3590, +3678, 0, 3587, +3677, 0, 3583, +3676, 0, 3577, +3675, 0, 3569, +3673, 0, 3558, +3670, 0, 3543, +3667, 0, 3523, +3662, 0, 3494, +3656, 1663, 3452, +3656, 1663, 3373, +3656, 1663, 3240, +3656, 1663, 2965, +3656, 2289, 1663, +3656, 3210, 1663, +3794, 3603, 0, +3931, 3863, 0, +4060, 4066, 0, +4095, 4095, 0, +3812, 0, 3691, +3812, 0, 3691, +3812, 0, 3690, +3812, 0, 3690, +3812, 0, 3690, +3812, 0, 3690, +3812, 0, 3690, +3812, 0, 3690, +3812, 0, 3689, +3812, 0, 3689, +3812, 0, 3688, +3812, 0, 3687, +3811, 0, 3685, +3811, 0, 3683, +3810, 0, 3680, +3810, 0, 3677, +3809, 0, 3672, +3808, 0, 3666, +3807, 0, 3657, +3805, 0, 3646, +3802, 0, 3629, +3799, 0, 3606, +3794, 0, 3574, +3794, 0, 3515, +3794, 0, 3421, +3794, 0, 3256, +3794, 0, 2856, +3794, 1884, 0, +3794, 3298, 0, +3931, 3717, 0, +4066, 3985, 0, +4095, 4095, 0, +3944, 0, 3790, +3944, 0, 3790, +3944, 0, 3790, +3944, 0, 3790, +3944, 0, 3789, +3944, 0, 3789, +3944, 0, 3789, +3944, 0, 3789, +3944, 0, 3788, +3944, 0, 3788, +3944, 0, 3787, +3944, 0, 3786, +3944, 0, 3785, +3943, 0, 3784, +3943, 0, 3781, +3943, 0, 3779, +3942, 0, 3775, +3941, 0, 3770, +3940, 0, 3763, +3939, 0, 3754, +3937, 0, 3741, +3934, 0, 3723, +3931, 0, 3698, +3931, 0, 3654, +3931, 0, 3587, +3931, 0, 3479, +3931, 0, 3277, +3931, 0, 2650, +3931, 0, 0, +3931, 3395, 0, +4066, 3835, 0, +4095, 4095, 0, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3895, +4076, 0, 3894, +4076, 0, 3894, +4076, 0, 3893, +4076, 0, 3892, +4076, 0, 3891, +4076, 0, 3890, +4075, 0, 3889, +4075, 0, 3887, +4075, 0, 3884, +4074, 0, 3880, +4073, 0, 3874, +4072, 0, 3867, +4071, 0, 3857, +4069, 0, 3843, +4066, 0, 3824, +4066, 0, 3791, +4066, 0, 3743, +4066, 0, 3669, +4066, 0, 3546, +4066, 0, 3303, +4066, 0, 1985, +4066, 0, 0, +4066, 3498, 0, +4095, 3957, 0, +4095, 0, 4007, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4006, +4095, 0, 4005, +4095, 0, 4005, +4095, 0, 4005, +4095, 0, 4004, +4095, 0, 4003, +4095, 0, 4002, +4095, 0, 4000, +4095, 0, 3998, +4095, 0, 3994, +4095, 0, 3990, +4095, 0, 3984, +4095, 0, 3977, +4095, 0, 3966, +4095, 0, 3952, +4095, 0, 3927, +4095, 0, 3892, +4095, 0, 3840, +4095, 0, 3759, +4095, 0, 3623, +4095, 0, 3337, +4095, 0, 0, +4095, 0, 0, +4095, 3608, 0, +0, 2882, 3152, +0, 2883, 3152, +0, 2883, 3152, +0, 2884, 3152, +0, 2885, 3152, +0, 2886, 3152, +0, 2888, 3152, +0, 2890, 3152, +0, 2893, 3152, +0, 2898, 3152, +0, 2903, 3152, +0, 2911, 3152, +0, 2920, 3152, +0, 2933, 3152, +0, 2949, 3152, +0, 2970, 3152, +0, 2996, 3152, +0, 3030, 3152, +0, 3071, 3152, +0, 3120, 3152, +0, 3152, 3123, +0, 3152, 3031, +0, 3152, 2868, +0, 3152, 2478, +0, 3284, 0, +0, 3416, 0, +2104, 3548, 0, +2876, 3680, 0, +3211, 3812, 0, +3452, 3944, 0, +3651, 4076, 0, +3828, 4095, 0, +0, 2881, 3152, +0, 2882, 3152, +0, 2883, 3152, +0, 2883, 3152, +0, 2885, 3152, +0, 2886, 3152, +0, 2888, 3152, +0, 2890, 3152, +0, 2893, 3152, +0, 2897, 3152, +0, 2903, 3152, +0, 2910, 3152, +0, 2920, 3152, +0, 2932, 3152, +0, 2949, 3152, +0, 2970, 3152, +0, 2996, 3152, +0, 3029, 3152, +0, 3070, 3152, +0, 3120, 3152, +0, 3152, 3123, +0, 3152, 3031, +0, 3152, 2868, +0, 3152, 2478, +0, 3283, 0, +0, 3416, 0, +2107, 3548, 0, +2877, 3680, 0, +3212, 3812, 0, +3452, 3944, 0, +3651, 4076, 0, +3828, 4095, 0, +0, 2881, 3152, +0, 2881, 3152, +0, 2882, 3152, +0, 2883, 3152, +0, 2884, 3152, +0, 2885, 3152, +0, 2887, 3152, +0, 2890, 3152, +0, 2893, 3152, +0, 2897, 3152, +0, 2903, 3152, +0, 2910, 3152, +0, 2919, 3152, +0, 2932, 3152, +0, 2948, 3152, +0, 2969, 3152, +0, 2996, 3152, +0, 3029, 3152, +0, 3070, 3152, +0, 3120, 3152, +0, 3152, 3123, +0, 3152, 3031, +0, 3152, 2869, +0, 3152, 2479, +0, 3283, 0, +0, 3416, 0, +2111, 3548, 0, +2877, 3680, 0, +3212, 3812, 0, +3453, 3944, 0, +3651, 4076, 0, +3828, 4095, 0, +0, 2880, 3152, +0, 2881, 3152, +0, 2881, 3152, +0, 2882, 3151, +0, 2883, 3151, +0, 2885, 3151, +0, 2886, 3151, +0, 2889, 3151, +0, 2892, 3151, +0, 2896, 3151, +0, 2902, 3151, +0, 2909, 3151, +0, 2919, 3151, +0, 2932, 3151, +0, 2948, 3151, +0, 2969, 3151, +0, 2995, 3151, +0, 3029, 3151, +0, 3070, 3151, +0, 3119, 3151, +0, 3151, 3123, +0, 3151, 3031, +0, 3151, 2869, +0, 3151, 2480, +0, 3283, 0, +0, 3416, 0, +2115, 3548, 0, +2878, 3680, 0, +3213, 3812, 0, +3453, 3944, 0, +3652, 4076, 0, +3828, 4095, 0, +0, 2879, 3152, +0, 2880, 3152, +0, 2880, 3152, +0, 2881, 3151, +0, 2883, 3151, +0, 2884, 3151, +0, 2886, 3151, +0, 2888, 3151, +0, 2891, 3151, +0, 2895, 3151, +0, 2901, 3151, +0, 2908, 3151, +0, 2918, 3151, +0, 2931, 3151, +0, 2947, 3151, +0, 2968, 3151, +0, 2995, 3151, +0, 3028, 3151, +0, 3069, 3151, +0, 3119, 3151, +0, 3151, 3123, +0, 3151, 3031, +0, 3151, 2869, +0, 3151, 2481, +0, 3283, 0, +0, 3416, 0, +2122, 3548, 0, +2879, 3680, 0, +3213, 3812, 0, +3453, 3944, 0, +3652, 4076, 0, +3828, 4095, 0, +0, 2878, 3152, +0, 2878, 3152, +0, 2879, 3152, +0, 2880, 3151, +0, 2881, 3151, +0, 2883, 3151, +0, 2885, 3151, +0, 2887, 3151, +0, 2890, 3151, +0, 2895, 3151, +0, 2900, 3151, +0, 2907, 3151, +0, 2917, 3151, +0, 2930, 3151, +0, 2946, 3151, +0, 2967, 3151, +0, 2994, 3151, +0, 3027, 3151, +0, 3068, 3151, +0, 3118, 3151, +0, 3151, 3124, +0, 3151, 3032, +0, 3151, 2870, +0, 3151, 2482, +0, 3283, 0, +0, 3416, 0, +2130, 3548, 0, +2881, 3680, 0, +3214, 3812, 0, +3454, 3944, 0, +3652, 4076, 0, +3829, 4095, 0, +0, 2876, 3152, +0, 2877, 3152, +0, 2877, 3152, +0, 2878, 3151, +0, 2879, 3151, +0, 2881, 3151, +0, 2883, 3151, +0, 2885, 3151, +0, 2889, 3151, +0, 2893, 3151, +0, 2898, 3151, +0, 2906, 3151, +0, 2916, 3151, +0, 2928, 3151, +0, 2945, 3151, +0, 2966, 3151, +0, 2993, 3151, +0, 3026, 3151, +0, 3067, 3151, +0, 3117, 3151, +0, 3151, 3124, +0, 3151, 3032, +0, 3151, 2871, +0, 3151, 2484, +0, 3283, 0, +0, 3415, 0, +2141, 3548, 0, +2883, 3680, 0, +3215, 3812, 0, +3454, 3944, 0, +3653, 4076, 0, +3829, 4095, 0, +0, 2873, 3152, +0, 2874, 3152, +0, 2875, 3152, +0, 2876, 3151, +0, 2877, 3151, +0, 2879, 3151, +0, 2881, 3151, +0, 2883, 3151, +0, 2887, 3151, +0, 2891, 3151, +0, 2896, 3151, +0, 2904, 3151, +0, 2914, 3151, +0, 2927, 3151, +0, 2943, 3151, +0, 2964, 3151, +0, 2991, 3151, +0, 3025, 3151, +0, 3066, 3151, +0, 3116, 3151, +0, 3151, 3125, +0, 3151, 3033, +0, 3151, 2872, +0, 3151, 2487, +0, 3283, 0, +0, 3415, 0, +2156, 3548, 0, +2886, 3680, 0, +3216, 3812, 0, +3455, 3944, 0, +3653, 4076, 0, +3829, 4095, 0, +0, 2870, 3152, +0, 2871, 3152, +0, 2871, 3152, +0, 2872, 3151, +0, 2873, 3151, +0, 2875, 3151, +0, 2877, 3151, +0, 2880, 3151, +0, 2884, 3151, +0, 2888, 3151, +0, 2894, 3151, +0, 2902, 3151, +0, 2911, 3151, +0, 2924, 3151, +0, 2941, 3151, +0, 2962, 3151, +0, 2989, 3151, +0, 3023, 3151, +0, 3064, 3151, +0, 3115, 3151, +0, 3151, 3126, +0, 3151, 3034, +0, 3151, 2873, +0, 3151, 2490, +0, 3283, 0, +0, 3415, 0, +2174, 3548, 0, +2890, 3680, 0, +3218, 3812, 0, +3456, 3944, 0, +3654, 4076, 0, +3830, 4095, 0, +0, 2866, 3152, +0, 2866, 3152, +0, 2867, 3152, +0, 2868, 3151, +0, 2869, 3151, +0, 2871, 3151, +0, 2873, 3151, +0, 2876, 3151, +0, 2880, 3151, +0, 2885, 3150, +0, 2891, 3150, +0, 2898, 3150, +0, 2908, 3150, +0, 2921, 3150, +0, 2938, 3150, +0, 2959, 3150, +0, 2986, 3150, +0, 3020, 3150, +0, 3062, 3150, +0, 3112, 3150, +0, 3150, 3127, +0, 3150, 3036, +0, 3150, 2875, +0, 3150, 2495, +0, 3282, 0, +0, 3415, 0, +2198, 3547, 0, +2895, 3680, 0, +3221, 3812, 0, +3458, 3944, 0, +3655, 4076, 0, +3830, 4095, 0, +0, 2860, 3152, +0, 2860, 3152, +0, 2861, 3152, +0, 2862, 3151, +0, 2863, 3151, +0, 2865, 3151, +0, 2867, 3151, +0, 2870, 3151, +0, 2874, 3151, +0, 2879, 3150, +0, 2886, 3150, +0, 2894, 3150, +0, 2904, 3150, +0, 2917, 3150, +0, 2933, 3150, +0, 2955, 3150, +0, 2982, 3150, +0, 3017, 3150, +0, 3059, 3150, +0, 3110, 3150, +0, 3150, 3128, +0, 3150, 3038, +0, 3150, 2878, +0, 3150, 2501, +0, 3282, 0, +0, 3414, 0, +2228, 3547, 0, +2901, 3679, 0, +3224, 3812, 0, +3459, 3944, 0, +3656, 4076, 0, +3831, 4095, 0, +0, 2851, 3152, +0, 2852, 3152, +0, 2853, 3152, +0, 2854, 3151, +0, 2855, 3151, +0, 2857, 3151, +0, 2859, 3151, +0, 2862, 3151, +0, 2866, 3151, +0, 2871, 3150, +0, 2878, 3150, +0, 2887, 3149, +0, 2898, 3149, +0, 2911, 3149, +0, 2928, 3149, +0, 2950, 3149, +0, 2977, 3149, +0, 3012, 3149, +0, 3055, 3149, +0, 3106, 3149, +0, 3149, 3131, +0, 3149, 3040, +0, 3149, 2881, +0, 3149, 2509, +0, 3281, 0, +0, 3414, 0, +2265, 3547, 0, +2910, 3679, 0, +3228, 3812, 0, +3462, 3944, 0, +3658, 4076, 0, +3832, 4095, 0, +0, 2840, 3152, +0, 2841, 3152, +0, 2842, 3152, +0, 2842, 3151, +0, 2844, 3151, +0, 2845, 3151, +0, 2848, 3151, +0, 2851, 3151, +0, 2855, 3151, +0, 2860, 3150, +0, 2868, 3150, +0, 2877, 3149, +0, 2889, 3148, +0, 2903, 3148, +0, 2920, 3148, +0, 2942, 3148, +0, 2970, 3148, +0, 3005, 3148, +0, 3049, 3148, +0, 3100, 3148, +0, 3148, 3133, +0, 3148, 3043, +0, 3148, 2886, +0, 3148, 2520, +0, 3280, 0, +0, 3414, 0, +2311, 3546, 0, +2922, 3679, 0, +3234, 3811, 0, +3466, 3944, 0, +3660, 4076, 0, +3834, 4095, 0, +0, 2825, 3152, +0, 2825, 3152, +0, 2826, 3152, +0, 2827, 3151, +0, 2829, 3151, +0, 2830, 3151, +0, 2833, 3151, +0, 2836, 3151, +0, 2840, 3151, +0, 2846, 3150, +0, 2853, 3150, +0, 2863, 3149, +0, 2875, 3148, +0, 2892, 3146, +0, 2910, 3146, +0, 2932, 3146, +0, 2961, 3146, +0, 2997, 3146, +0, 3041, 3146, +0, 3093, 3146, +0, 3146, 3137, +0, 3146, 3047, +0, 3146, 2892, +0, 3146, 2533, +0, 3280, 0, +0, 3413, 0, +2365, 3546, 0, +2936, 3678, 0, +3241, 3811, 0, +3470, 3943, 0, +3663, 4076, 0, +3836, 4095, 0, +0, 2803, 3152, +0, 2804, 3152, +0, 2805, 3152, +0, 2806, 3151, +0, 2807, 3151, +0, 2809, 3151, +0, 2812, 3151, +0, 2815, 3151, +0, 2819, 3151, +0, 2825, 3150, +0, 2833, 3150, +0, 2843, 3149, +0, 2856, 3148, +0, 2873, 3146, +0, 2895, 3144, +0, 2919, 3144, +0, 2948, 3144, +0, 2985, 3144, +0, 3030, 3144, +0, 3084, 3144, +0, 3144, 3141, +0, 3144, 3053, +0, 3144, 2901, +0, 3144, 2551, +0, 3278, 0, +0, 3412, 0, +2429, 3545, 0, +2955, 3678, 0, +3251, 3810, 0, +3476, 3943, 0, +3667, 4075, 0, +3838, 4095, 0, +0, 2773, 3152, +0, 2773, 3152, +0, 2774, 3152, +0, 2775, 3151, +0, 2777, 3151, +0, 2779, 3151, +0, 2782, 3151, +0, 2785, 3151, +0, 2790, 3151, +0, 2796, 3150, +0, 2804, 3150, +0, 2815, 3149, +0, 2829, 3148, +0, 2847, 3146, +0, 2870, 3144, +0, 2900, 3142, +0, 2931, 3142, +0, 2969, 3142, +0, 3015, 3142, +0, 3071, 3142, +0, 3136, 3142, +0, 3142, 3061, +0, 3142, 2911, +0, 3142, 2573, +0, 3276, 0, +0, 3410, 0, +2502, 3544, 0, +2980, 3677, 0, +3264, 3810, 0, +3484, 3943, 0, +3672, 4075, 0, +3842, 4095, 0, +0, 2729, 3152, +0, 2729, 3152, +0, 2730, 3152, +0, 2732, 3151, +0, 2733, 3151, +0, 2735, 3151, +0, 2738, 3151, +0, 2742, 3151, +0, 2747, 3151, +0, 2754, 3150, +0, 2763, 3150, +0, 2775, 3149, +0, 2790, 3148, +0, 2810, 3146, +0, 2835, 3144, +0, 2867, 3142, +0, 2906, 3138, +0, 2946, 3138, +0, 2995, 3138, +0, 3053, 3138, +0, 3120, 3138, +0, 3138, 3071, +0, 3138, 2925, +0, 3138, 2602, +0, 3274, 0, +0, 3408, 0, +2585, 3543, 0, +3010, 3676, 0, +3281, 3809, 0, +3494, 3942, 0, +3679, 4075, 0, +3847, 4095, 0, +0, 2662, 3152, +0, 2663, 3152, +0, 2664, 3152, +0, 2665, 3151, +0, 2667, 3151, +0, 2670, 3151, +0, 2673, 3151, +0, 2678, 3151, +0, 2684, 3151, +0, 2691, 3150, +0, 2702, 3150, +0, 2715, 3149, +0, 2733, 3148, +0, 2755, 3146, +0, 2783, 3144, +0, 2818, 3142, +0, 2861, 3138, +0, 2913, 3134, +0, 2965, 3134, +0, 3027, 3134, +0, 3098, 3134, +0, 3134, 3084, +0, 3134, 2943, +0, 3134, 2638, +0, 3270, 0, +1325, 3406, 0, +2676, 3541, 0, +3048, 3675, 0, +3302, 3808, 0, +3507, 3941, 0, +3688, 4074, 0, +3853, 4095, 0, +0, 2554, 3152, +0, 2555, 3152, +0, 2556, 3152, +0, 2558, 3151, +0, 2560, 3151, +0, 2564, 3151, +0, 2568, 3151, +0, 2573, 3151, +0, 2581, 3151, +0, 2591, 3150, +0, 2604, 3150, +0, 2620, 3149, +0, 2642, 3148, +0, 2669, 3146, +0, 2703, 3144, +0, 2744, 3142, +0, 2795, 3138, +0, 2854, 3134, +1137, 2923, 3128, +1137, 2991, 3128, +1137, 3067, 3128, +1137, 3128, 3101, +1137, 3128, 2965, +1137, 3128, 2681, +0, 3266, 1375, +2121, 3402, 0, +2775, 3538, 0, +3095, 3673, 0, +3329, 3807, 0, +3525, 3940, 0, +3700, 4073, 0, +3861, 4095, 0, +0, 2352, 3152, +0, 2353, 3152, +0, 2355, 3152, +0, 2358, 3151, +0, 2362, 3151, +0, 2367, 3151, +0, 2373, 3151, +0, 2382, 3151, +0, 2394, 3151, +0, 2408, 3150, +0, 2427, 3150, +0, 2452, 3149, +0, 2482, 3148, +0, 2521, 3146, +0, 2566, 3144, +0, 2622, 3142, +0, 2687, 3138, +0, 2761, 3134, +1137, 2845, 3128, +2061, 2936, 3119, +2061, 3022, 3119, +2061, 3116, 3119, +2061, 3119, 2995, +2061, 3119, 2734, +1272, 3259, 1899, +2458, 3398, 0, +2881, 3535, 0, +3150, 3670, 0, +3363, 3805, 0, +3547, 3939, 0, +3715, 4072, 0, +3872, 4095, 0, +0, 1720, 3152, +0, 1726, 3152, +0, 1735, 3152, +0, 1746, 3151, +0, 1760, 3151, +0, 1779, 3151, +0, 1802, 3151, +0, 1832, 3151, +0, 1869, 3151, +0, 1915, 3150, +0, 1969, 3150, +0, 2033, 3149, +0, 2106, 3148, +0, 2189, 3146, +0, 2280, 3144, +0, 2379, 3142, +0, 2484, 3138, +0, 2596, 3134, +1137, 2712, 3128, +2061, 2831, 3119, +2412, 2954, 3108, +2412, 3061, 3108, +2412, 3108, 3031, +2412, 3108, 2796, +2194, 3251, 2195, +2701, 3392, 1406, +2992, 3530, 0, +3215, 3667, 0, +3405, 3802, 0, +3575, 3937, 0, +3735, 4071, 0, +3886, 4095, 0, +0, 0, 3152, +0, 0, 3152, +0, 0, 3152, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3150, +0, 0, 3150, +0, 0, 3149, +0, 0, 3148, +0, 0, 3146, +0, 0, 3144, +0, 1068, 3142, +0, 1857, 3138, +0, 2195, 3134, +1137, 2436, 3128, +2061, 2636, 3119, +2412, 2813, 3108, +2658, 2976, 3092, +2658, 3092, 3074, +2658, 3092, 2867, +2642, 3239, 2544, +2900, 3383, 2326, +3108, 3524, 1536, +3289, 3662, 0, +3455, 3799, 0, +3611, 3934, 0, +3760, 4069, 0, +3904, 4095, 0, +0, 0, 3152, +0, 0, 3152, +0, 0, 3152, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3151, +0, 0, 3150, +0, 0, 3150, +0, 0, 3149, +0, 0, 3148, +0, 0, 3146, +0, 0, 3144, +0, 0, 3142, +0, 0, 3138, +1211, 0, 3134, +1758, 1137, 3128, +2061, 2064, 3119, +2412, 2511, 3108, +2658, 2787, 3092, +2860, 3003, 3069, +2860, 3069, 2948, +2918, 3223, 2790, +3077, 3372, 2676, +3227, 3515, 2457, +3373, 3656, 1663, +3515, 3794, 0, +3654, 3931, 0, +3791, 4066, 0, +3927, 4095, 0, +2478, 0, 3152, +2478, 0, 3152, +2479, 0, 3152, +2480, 0, 3151, +2481, 0, 3151, +2482, 0, 3151, +2484, 0, 3151, +2487, 0, 3151, +2490, 0, 3151, +2495, 0, 3150, +2501, 0, 3150, +2509, 0, 3149, +2520, 0, 3148, +2533, 0, 3146, +2551, 0, 3144, +2573, 0, 3142, +2602, 0, 3138, +2638, 0, 3134, +2681, 1137, 3128, +2734, 2061, 3119, +2796, 2412, 3108, +2867, 2658, 3092, +2948, 2860, 3069, +3038, 3038, 3038, +3135, 3201, 2992, +3239, 3356, 2922, +3350, 3504, 2808, +3465, 3648, 2590, +3584, 3788, 1799, +3706, 3926, 0, +3830, 4063, 0, +3956, 4095, 0, +2999, 0, 3284, +2999, 0, 3283, +2999, 0, 3283, +2999, 0, 3283, +3000, 0, 3283, +3000, 0, 3283, +3001, 0, 3283, +3002, 0, 3283, +3003, 0, 3283, +3005, 0, 3282, +3006, 0, 3282, +3009, 0, 3281, +3013, 0, 3280, +3017, 0, 3280, +3023, 0, 3278, +3032, 0, 3276, +3042, 0, 3274, +3056, 0, 3270, +3074, 0, 3266, +3097, 1272, 3259, +3126, 2194, 3251, +3162, 2544, 3239, +3206, 2790, 3223, +3201, 2992, 3135, +3201, 3080, 2992, +3356, 3338, 2922, +3457, 3504, 2808, +3550, 3648, 2590, +3651, 3788, 1799, +3758, 3926, 0, +3870, 4063, 0, +3987, 4095, 0, +3294, 0, 3416, +3294, 0, 3416, +3294, 0, 3416, +3294, 0, 3416, +3295, 0, 3416, +3295, 0, 3416, +3295, 0, 3415, +3296, 0, 3415, +3296, 0, 3415, +3297, 0, 3415, +3298, 0, 3414, +3299, 0, 3414, +3301, 0, 3414, +3304, 0, 3413, +3307, 0, 3412, +3311, 0, 3410, +3317, 0, 3408, +3325, 0, 3406, +3335, 0, 3402, +3348, 0, 3398, +3365, 1406, 3392, +3383, 2326, 3380, +3372, 2676, 3325, +3356, 2922, 3239, +3356, 2922, 3051, +3356, 3132, 2922, +3504, 3426, 2808, +3644, 3648, 2590, +3728, 3788, 1799, +3820, 3926, 0, +3919, 4063, 0, +4025, 4095, 0, +3519, 0, 3548, +3519, 0, 3548, +3519, 0, 3548, +3519, 0, 3548, +3519, 0, 3548, +3519, 0, 3548, +3519, 0, 3548, +3520, 0, 3548, +3520, 0, 3548, +3520, 0, 3547, +3521, 0, 3547, +3522, 0, 3547, +3523, 0, 3546, +3525, 0, 3546, +3526, 0, 3545, +3529, 0, 3544, +3533, 0, 3543, +3538, 0, 3541, +3538, 0, 3532, +3535, 0, 3516, +3530, 0, 3495, +3524, 1536, 3463, +3515, 2457, 3418, +3504, 2808, 3350, +3504, 2808, 3209, +3504, 2808, 2907, +3504, 3192, 2808, +3648, 3523, 2590, +3788, 3761, 1799, +3891, 3926, 0, +3977, 4063, 0, +4072, 4095, 0, +3680, 0, 3649, +3680, 0, 3649, +3680, 0, 3649, +3680, 0, 3649, +3680, 0, 3648, +3680, 0, 3648, +3680, 0, 3648, +3680, 0, 3648, +3680, 0, 3647, +3680, 0, 3646, +3679, 0, 3646, +3679, 0, 3644, +3679, 0, 3643, +3678, 0, 3641, +3678, 0, 3638, +3677, 0, 3634, +3676, 0, 3629, +3675, 0, 3622, +3673, 0, 3612, +3670, 0, 3599, +3667, 0, 3581, +3662, 0, 3555, +3656, 1663, 3519, +3648, 2590, 3465, +3648, 2590, 3360, +3648, 2590, 3165, +3648, 2590, 2592, +3648, 3262, 2590, +3788, 3626, 1799, +3926, 3877, 0, +4045, 4063, 0, +4095, 4095, 0, +3812, 0, 3732, +3812, 0, 3731, +3812, 0, 3731, +3812, 0, 3731, +3812, 0, 3731, +3812, 0, 3731, +3812, 0, 3731, +3812, 0, 3730, +3812, 0, 3730, +3812, 0, 3729, +3812, 0, 3729, +3812, 0, 3728, +3811, 0, 3727, +3811, 0, 3725, +3810, 0, 3722, +3810, 0, 3719, +3809, 0, 3715, +3808, 0, 3709, +3807, 0, 3701, +3805, 0, 3690, +3802, 0, 3676, +3799, 0, 3655, +3794, 0, 3626, +3788, 1799, 3584, +3788, 1799, 3505, +3788, 1799, 3372, +3788, 1799, 3097, +3788, 2422, 1799, +3788, 3342, 1799, +3926, 3735, 0, +4063, 3995, 0, +4095, 4095, 0, +3944, 0, 3823, +3944, 0, 3823, +3944, 0, 3823, +3944, 0, 3822, +3944, 0, 3822, +3944, 0, 3822, +3944, 0, 3822, +3944, 0, 3822, +3944, 0, 3822, +3944, 0, 3821, +3944, 0, 3820, +3944, 0, 3820, +3944, 0, 3819, +3943, 0, 3817, +3943, 0, 3815, +3943, 0, 3813, +3942, 0, 3809, +3941, 0, 3805, +3940, 0, 3798, +3939, 0, 3790, +3937, 0, 3777, +3934, 0, 3761, +3931, 0, 3738, +3926, 0, 3706, +3926, 0, 3647, +3926, 0, 3553, +3926, 0, 3388, +3926, 0, 2988, +3926, 2023, 0, +3926, 3430, 0, +4063, 3849, 0, +4095, 4095, 0, +4076, 0, 3922, +4076, 0, 3922, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3921, +4076, 0, 3920, +4076, 0, 3919, +4076, 0, 3918, +4076, 0, 3917, +4075, 0, 3916, +4075, 0, 3913, +4075, 0, 3911, +4074, 0, 3907, +4073, 0, 3902, +4072, 0, 3895, +4071, 0, 3886, +4069, 0, 3873, +4066, 0, 3855, +4063, 0, 3830, +4063, 0, 3786, +4063, 0, 3719, +4063, 0, 3611, +4063, 0, 3409, +4063, 0, 2781, +4063, 0, 0, +4063, 3527, 0, +4095, 3968, 0, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4027, +4095, 0, 4026, +4095, 0, 4026, +4095, 0, 4026, +4095, 0, 4025, +4095, 0, 4024, +4095, 0, 4023, +4095, 0, 4021, +4095, 0, 4019, +4095, 0, 4016, +4095, 0, 4012, +4095, 0, 4006, +4095, 0, 3999, +4095, 0, 3989, +4095, 0, 3976, +4095, 0, 3956, +4095, 0, 3923, +4095, 0, 3875, +4095, 0, 3801, +4095, 0, 3679, +4095, 0, 3436, +4095, 0, 2137, +4095, 0, 0, +4095, 3630, 0, +0, 3014, 3284, +0, 3014, 3284, +0, 3014, 3284, +0, 3015, 3284, +0, 3016, 3284, +0, 3017, 3284, +0, 3018, 3284, +0, 3020, 3284, +0, 3022, 3284, +0, 3025, 3284, +0, 3030, 3284, +0, 3035, 3284, +0, 3043, 3284, +0, 3052, 3284, +0, 3065, 3284, +0, 3081, 3284, +0, 3102, 3284, +0, 3128, 3284, +0, 3162, 3284, +0, 3203, 3284, +0, 3252, 3284, +0, 3284, 3254, +0, 3284, 3162, +0, 3284, 2999, +0, 3284, 2609, +0, 3416, 0, +0, 3548, 0, +2237, 3680, 0, +3008, 3812, 0, +3344, 3944, 0, +3584, 4076, 0, +3784, 4095, 0, +0, 3014, 3284, +0, 3014, 3283, +0, 3014, 3283, +0, 3015, 3283, +0, 3016, 3283, +0, 3017, 3283, +0, 3018, 3283, +0, 3020, 3283, +0, 3022, 3283, +0, 3025, 3283, +0, 3029, 3283, +0, 3035, 3283, +0, 3042, 3283, +0, 3052, 3283, +0, 3065, 3283, +0, 3081, 3283, +0, 3102, 3283, +0, 3128, 3283, +0, 3162, 3283, +0, 3203, 3283, +0, 3252, 3283, +0, 3283, 3254, +0, 3283, 3162, +0, 3283, 2999, +0, 3283, 2609, +0, 3416, 0, +0, 3548, 0, +2239, 3680, 0, +3009, 3812, 0, +3344, 3944, 0, +3584, 4076, 0, +3784, 4095, 0, +0, 3013, 3284, +0, 3014, 3283, +0, 3014, 3283, +0, 3014, 3283, +0, 3015, 3283, +0, 3016, 3283, +0, 3018, 3283, +0, 3019, 3283, +0, 3022, 3283, +0, 3025, 3283, +0, 3029, 3283, +0, 3035, 3283, +0, 3042, 3283, +0, 3052, 3283, +0, 3064, 3283, +0, 3081, 3283, +0, 3101, 3283, +0, 3128, 3283, +0, 3161, 3283, +0, 3202, 3283, +0, 3252, 3283, +0, 3283, 3255, +0, 3283, 3163, +0, 3283, 2999, +0, 3283, 2610, +0, 3416, 0, +0, 3548, 0, +2242, 3680, 0, +3009, 3812, 0, +3344, 3944, 0, +3585, 4076, 0, +3784, 4095, 0, +0, 3012, 3284, +0, 3013, 3283, +0, 3013, 3283, +0, 3014, 3283, +0, 3015, 3283, +0, 3016, 3283, +0, 3017, 3283, +0, 3019, 3283, +0, 3021, 3283, +0, 3025, 3283, +0, 3029, 3283, +0, 3034, 3283, +0, 3042, 3283, +0, 3051, 3283, +0, 3064, 3283, +0, 3080, 3283, +0, 3101, 3283, +0, 3128, 3283, +0, 3161, 3283, +0, 3202, 3283, +0, 3252, 3283, +0, 3283, 3255, +0, 3283, 3163, +0, 3283, 2999, +0, 3283, 2611, +0, 3416, 0, +0, 3548, 0, +2246, 3680, 0, +3010, 3812, 0, +3344, 3944, 0, +3585, 4076, 0, +3784, 4095, 0, +0, 3012, 3284, +0, 3012, 3283, +0, 3013, 3283, +0, 3013, 3283, +0, 3014, 3283, +0, 3015, 3283, +0, 3016, 3283, +0, 3018, 3283, +0, 3021, 3283, +0, 3024, 3283, +0, 3028, 3283, +0, 3034, 3283, +0, 3041, 3283, +0, 3051, 3283, +0, 3063, 3283, +0, 3080, 3283, +0, 3101, 3283, +0, 3127, 3283, +0, 3160, 3283, +0, 3201, 3283, +0, 3251, 3283, +0, 3283, 3255, +0, 3283, 3163, +0, 3283, 3000, +0, 3283, 2612, +0, 3416, 0, +0, 3548, 0, +2251, 3680, 0, +3011, 3812, 0, +3345, 3944, 0, +3585, 4076, 0, +3784, 4095, 0, +0, 3011, 3284, +0, 3011, 3283, +0, 3011, 3283, +0, 3012, 3283, +0, 3013, 3283, +0, 3014, 3283, +0, 3016, 3283, +0, 3018, 3283, +0, 3020, 3283, +0, 3023, 3283, +0, 3027, 3283, +0, 3033, 3283, +0, 3040, 3283, +0, 3050, 3283, +0, 3062, 3283, +0, 3079, 3283, +0, 3100, 3283, +0, 3127, 3283, +0, 3160, 3283, +0, 3201, 3283, +0, 3251, 3283, +0, 3283, 3255, +0, 3283, 3163, +0, 3283, 3000, +0, 3283, 2613, +0, 3416, 0, +0, 3548, 0, +2257, 3680, 0, +3012, 3812, 0, +3346, 3944, 0, +3585, 4076, 0, +3784, 4095, 0, +0, 3009, 3284, +0, 3010, 3283, +0, 3010, 3283, +0, 3011, 3283, +0, 3012, 3283, +0, 3013, 3283, +0, 3015, 3283, +0, 3016, 3283, +0, 3019, 3283, +0, 3022, 3283, +0, 3026, 3283, +0, 3032, 3283, +0, 3039, 3283, +0, 3049, 3283, +0, 3062, 3283, +0, 3078, 3283, +0, 3099, 3283, +0, 3126, 3283, +0, 3159, 3283, +0, 3200, 3283, +0, 3250, 3283, +0, 3283, 3256, +0, 3283, 3164, +0, 3283, 3001, +0, 3283, 2614, +0, 3415, 0, +0, 3548, 0, +2266, 3680, 0, +3014, 3812, 0, +3346, 3944, 0, +3586, 4076, 0, +3784, 4095, 0, +0, 3008, 3284, +0, 3008, 3283, +0, 3008, 3283, +0, 3009, 3283, +0, 3010, 3283, +0, 3011, 3283, +0, 3013, 3283, +0, 3015, 3283, +0, 3017, 3283, +0, 3021, 3283, +0, 3025, 3283, +0, 3031, 3283, +0, 3038, 3283, +0, 3047, 3283, +0, 3060, 3283, +0, 3077, 3283, +0, 3098, 3283, +0, 3125, 3283, +0, 3158, 3283, +0, 3199, 3283, +0, 3249, 3283, +0, 3283, 3256, +0, 3283, 3164, +0, 3283, 3002, +0, 3283, 2616, +0, 3415, 0, +0, 3548, 0, +2277, 3680, 0, +3016, 3812, 0, +3347, 3944, 0, +3586, 4076, 0, +3785, 4095, 0, +0, 3005, 3284, +0, 3005, 3283, +0, 3006, 3283, +0, 3007, 3283, +0, 3008, 3283, +0, 3009, 3283, +0, 3010, 3283, +0, 3013, 3283, +0, 3015, 3283, +0, 3018, 3283, +0, 3023, 3283, +0, 3029, 3283, +0, 3036, 3283, +0, 3046, 3283, +0, 3059, 3283, +0, 3075, 3283, +0, 3096, 3283, +0, 3123, 3283, +0, 3157, 3283, +0, 3198, 3283, +0, 3248, 3283, +0, 3283, 3257, +0, 3283, 3165, +0, 3283, 3003, +0, 3283, 2619, +0, 3415, 0, +0, 3548, 0, +2291, 3680, 0, +3019, 3812, 0, +3349, 3944, 0, +3587, 4076, 0, +3786, 4095, 0, +0, 3002, 3284, +0, 3002, 3283, +0, 3002, 3283, +0, 3003, 3283, +0, 3004, 3283, +0, 3005, 3283, +0, 3007, 3283, +0, 3009, 3283, +0, 3012, 3283, +0, 3016, 3282, +0, 3020, 3282, +0, 3026, 3282, +0, 3033, 3282, +0, 3043, 3282, +0, 3056, 3282, +0, 3073, 3282, +0, 3094, 3282, +0, 3121, 3282, +0, 3155, 3282, +0, 3196, 3282, +0, 3247, 3282, +0, 3282, 3257, +0, 3282, 3166, +0, 3282, 3005, +0, 3282, 2622, +0, 3415, 0, +0, 3547, 0, +2310, 3680, 0, +3023, 3812, 0, +3351, 3944, 0, +3588, 4076, 0, +3786, 4095, 0, +0, 2997, 3284, +0, 2998, 3283, +0, 2998, 3283, +0, 2999, 3283, +0, 3000, 3283, +0, 3001, 3283, +0, 3003, 3283, +0, 3005, 3283, +0, 3008, 3283, +0, 3012, 3282, +0, 3017, 3282, +0, 3023, 3282, +0, 3030, 3282, +0, 3040, 3282, +0, 3053, 3282, +0, 3070, 3282, +0, 3091, 3282, +0, 3118, 3282, +0, 3152, 3282, +0, 3194, 3282, +0, 3244, 3282, +0, 3282, 3259, +0, 3282, 3168, +0, 3282, 3006, +0, 3282, 2627, +0, 3414, 0, +0, 3547, 0, +2333, 3679, 0, +3027, 3812, 0, +3353, 3944, 0, +3590, 4076, 0, +3787, 4095, 0, +0, 2991, 3284, +0, 2992, 3283, +0, 2992, 3283, +0, 2993, 3283, +0, 2994, 3283, +0, 2995, 3283, +0, 2997, 3283, +0, 2999, 3283, +0, 3002, 3283, +0, 3006, 3282, +0, 3011, 3282, +0, 3018, 3281, +0, 3025, 3281, +0, 3035, 3281, +0, 3049, 3281, +0, 3065, 3281, +0, 3087, 3281, +0, 3114, 3281, +0, 3149, 3281, +0, 3191, 3281, +0, 3242, 3281, +0, 3281, 3260, +0, 3281, 3169, +0, 3281, 3009, +0, 3281, 2633, +0, 3414, 0, +0, 3547, 0, +2363, 3679, 0, +3034, 3812, 0, +3356, 3944, 0, +3592, 4076, 0, +3788, 4095, 0, +0, 2983, 3284, +0, 2983, 3283, +0, 2984, 3283, +0, 2985, 3283, +0, 2986, 3283, +0, 2987, 3283, +0, 2988, 3283, +0, 2991, 3283, +0, 2994, 3283, +0, 2998, 3282, +0, 3003, 3282, +0, 3010, 3281, +0, 3019, 3280, +0, 3029, 3280, +0, 3043, 3280, +0, 3060, 3280, +0, 3082, 3280, +0, 3109, 3280, +0, 3144, 3280, +0, 3186, 3280, +0, 3238, 3280, +0, 3280, 3262, +0, 3280, 3172, +0, 3280, 3013, +0, 3280, 2641, +0, 3414, 0, +0, 3546, 0, +2400, 3679, 0, +3043, 3811, 0, +3361, 3944, 0, +3594, 4076, 0, +3790, 4095, 0, +0, 2972, 3284, +0, 2972, 3283, +0, 2973, 3283, +0, 2973, 3283, +0, 2974, 3283, +0, 2976, 3283, +0, 2977, 3283, +0, 2980, 3283, +0, 2983, 3283, +0, 2987, 3282, +0, 2992, 3282, +0, 2999, 3281, +0, 3009, 3280, +0, 3021, 3280, +0, 3034, 3280, +0, 3052, 3280, +0, 3074, 3280, +0, 3102, 3280, +0, 3138, 3280, +0, 3180, 3280, +0, 3233, 3280, +0, 3280, 3265, +0, 3280, 3175, +0, 3280, 3017, +0, 3280, 2651, +0, 3413, 0, +0, 3546, 0, +2445, 3678, 0, +3054, 3811, 0, +3366, 3943, 0, +3597, 4076, 0, +3792, 4095, 0, +0, 2956, 3284, +0, 2957, 3283, +0, 2957, 3283, +0, 2958, 3283, +0, 2959, 3283, +0, 2960, 3283, +0, 2962, 3283, +0, 2965, 3283, +0, 2968, 3283, +0, 2972, 3282, +0, 2977, 3282, +0, 2985, 3281, +0, 2995, 3280, +0, 3007, 3280, +0, 3024, 3278, +0, 3041, 3278, +0, 3064, 3278, +0, 3093, 3278, +0, 3129, 3278, +0, 3173, 3278, +0, 3225, 3278, +0, 3278, 3269, +0, 3278, 3180, +0, 3278, 3023, +0, 3278, 2665, +0, 3412, 0, +0, 3545, 0, +2499, 3678, 0, +3069, 3810, 0, +3374, 3943, 0, +3602, 4075, 0, +3795, 4095, 0, +0, 2935, 3284, +0, 2935, 3283, +0, 2936, 3283, +0, 2936, 3283, +0, 2938, 3283, +0, 2939, 3283, +0, 2941, 3283, +0, 2943, 3283, +0, 2947, 3283, +0, 2951, 3282, +0, 2957, 3282, +0, 2965, 3281, +0, 2975, 3280, +0, 2988, 3280, +0, 3005, 3278, +0, 3027, 3276, +0, 3050, 3276, +0, 3080, 3276, +0, 3117, 3276, +0, 3162, 3276, +0, 3216, 3276, +0, 3276, 3273, +0, 3276, 3185, +0, 3276, 3032, +0, 3276, 2683, +0, 3410, 0, +0, 3544, 0, +2562, 3677, 0, +3088, 3810, 0, +3384, 3943, 0, +3608, 4075, 0, +3799, 4095, 0, +0, 2904, 3284, +0, 2905, 3283, +0, 2905, 3283, +0, 2906, 3283, +0, 2907, 3283, +0, 2909, 3283, +0, 2911, 3283, +0, 2914, 3283, +0, 2917, 3283, +0, 2922, 3282, +0, 2928, 3282, +0, 2936, 3281, +0, 2947, 3280, +0, 2961, 3280, +0, 2979, 3278, +0, 3002, 3276, +0, 3031, 3274, +0, 3062, 3274, +0, 3100, 3274, +0, 3147, 3274, +0, 3203, 3274, +0, 3268, 3274, +0, 3274, 3193, +0, 3274, 3042, +0, 3274, 2706, +0, 3408, 0, +0, 3543, 0, +2636, 3676, 0, +3112, 3809, 0, +3396, 3942, 0, +3616, 4075, 0, +3804, 4095, 0, +0, 2860, 3284, +0, 2860, 3283, +0, 2861, 3283, +0, 2862, 3283, +0, 2863, 3283, +0, 2865, 3283, +0, 2867, 3283, +0, 2870, 3283, +0, 2874, 3283, +0, 2879, 3282, +0, 2886, 3282, +0, 2895, 3281, +0, 2907, 3280, +0, 2922, 3280, +0, 2942, 3278, +0, 2967, 3276, +0, 2998, 3274, +0, 3037, 3270, +0, 3078, 3270, +0, 3126, 3270, +0, 3184, 3270, +0, 3252, 3270, +0, 3270, 3203, +0, 3270, 3056, +0, 3270, 2734, +0, 3406, 0, +0, 3541, 0, +2718, 3675, 0, +3143, 3808, 0, +3413, 3941, 0, +3626, 4074, 0, +3811, 4095, 0, +0, 2793, 3284, +0, 2793, 3283, +0, 2794, 3283, +0, 2795, 3283, +0, 2797, 3283, +0, 2799, 3283, +0, 2801, 3283, +0, 2805, 3283, +0, 2809, 3283, +0, 2815, 3282, +0, 2823, 3282, +0, 2833, 3281, +0, 2847, 3280, +0, 2865, 3280, +0, 2886, 3278, +0, 2915, 3276, +0, 2950, 3274, +0, 2993, 3270, +0, 3045, 3266, +0, 3097, 3266, +0, 3159, 3266, +0, 3230, 3266, +0, 3266, 3216, +0, 3266, 3074, +0, 3266, 2770, +0, 3402, 0, +1477, 3538, 0, +2809, 3673, 0, +3181, 3807, 0, +3434, 3940, 0, +3640, 4073, 0, +3820, 4095, 0, +0, 2684, 3284, +0, 2685, 3283, +0, 2686, 3283, +0, 2688, 3283, +0, 2690, 3283, +0, 2692, 3283, +0, 2695, 3283, +0, 2700, 3283, +0, 2705, 3283, +0, 2713, 3282, +0, 2723, 3282, +0, 2735, 3281, +0, 2752, 3280, +0, 2773, 3280, +0, 2800, 3278, +0, 2834, 3276, +0, 2876, 3274, +0, 2926, 3270, +0, 2986, 3266, +1272, 3055, 3259, +1272, 3122, 3259, +1272, 3199, 3259, +1272, 3259, 3233, +1272, 3259, 3097, +1272, 3259, 2813, +0, 3398, 1484, +2256, 3535, 0, +2908, 3670, 0, +3227, 3805, 0, +3461, 3939, 0, +3657, 4072, 0, +3832, 4095, 0, +0, 2481, 3284, +0, 2482, 3283, +0, 2484, 3283, +0, 2486, 3283, +0, 2489, 3283, +0, 2493, 3283, +0, 2498, 3283, +0, 2504, 3283, +0, 2513, 3283, +0, 2524, 3282, +0, 2539, 3282, +0, 2558, 3281, +0, 2583, 3280, +0, 2613, 3280, +0, 2651, 3278, +0, 2698, 3276, +0, 2753, 3274, +0, 2818, 3270, +0, 2893, 3266, +1272, 2976, 3259, +2194, 3069, 3251, +2194, 3154, 3251, +2194, 3248, 3251, +2194, 3251, 3126, +2194, 3251, 2866, +1406, 3392, 2025, +2593, 3530, 0, +3014, 3667, 0, +3282, 3802, 0, +3495, 3937, 0, +3679, 4071, 0, +3847, 4095, 0, +0, 1844, 3284, +0, 1849, 3283, +0, 1856, 3283, +0, 1864, 3283, +0, 1875, 3283, +0, 1890, 3283, +0, 1908, 3283, +0, 1932, 3283, +0, 1962, 3283, +0, 1999, 3282, +0, 2045, 3282, +0, 2100, 3281, +0, 2164, 3280, +0, 2237, 3280, +0, 2320, 3278, +0, 2411, 3276, +0, 2510, 3274, +0, 2616, 3270, +0, 2727, 3266, +1272, 2843, 3259, +2194, 2963, 3251, +2544, 3085, 3239, +2544, 3193, 3239, +2544, 3239, 3162, +2544, 3239, 2928, +2328, 3383, 2326, +2833, 3524, 1536, +3125, 3662, 0, +3347, 3799, 0, +3537, 3934, 0, +3708, 4069, 0, +3867, 4095, 0, +0, 0, 3284, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3282, +0, 0, 3282, +0, 0, 3281, +0, 0, 3280, +0, 0, 3280, +0, 0, 3278, +0, 0, 3276, +0, 1202, 3274, +0, 1990, 3270, +0, 2327, 3266, +1272, 2569, 3259, +2194, 2768, 3251, +2544, 2945, 3239, +2790, 3107, 3223, +2790, 3223, 3206, +2790, 3223, 2999, +2774, 3372, 2676, +3032, 3515, 2457, +3240, 3656, 1663, +3421, 3794, 0, +3587, 3931, 0, +3743, 4066, 0, +3892, 4095, 0, +0, 0, 3284, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3283, +0, 0, 3282, +0, 0, 3282, +0, 0, 3281, +0, 0, 3280, +0, 0, 3280, +0, 0, 3278, +0, 0, 3276, +0, 0, 3274, +0, 0, 3270, +1375, 0, 3266, +1899, 1272, 3259, +2195, 2194, 3251, +2544, 2642, 3239, +2790, 2918, 3223, +2992, 3135, 3201, +2992, 3201, 3080, +3051, 3356, 2922, +3209, 3504, 2808, +3360, 3648, 2590, +3505, 3788, 1799, +3647, 3926, 0, +3786, 4063, 0, +3923, 4095, 0, +2609, 0, 3284, +2609, 0, 3283, +2610, 0, 3283, +2611, 0, 3283, +2612, 0, 3283, +2613, 0, 3283, +2614, 0, 3283, +2616, 0, 3283, +2619, 0, 3283, +2622, 0, 3282, +2627, 0, 3282, +2633, 0, 3281, +2641, 0, 3280, +2651, 0, 3280, +2665, 0, 3278, +2683, 0, 3276, +2706, 0, 3274, +2734, 0, 3270, +2770, 0, 3266, +2813, 1272, 3259, +2866, 2194, 3251, +2928, 2544, 3239, +2999, 2790, 3223, +3080, 2992, 3201, +3170, 3170, 3170, +3267, 3333, 3124, +3372, 3488, 3054, +3482, 3636, 2940, +3597, 3780, 2721, +3716, 3920, 1928, +3838, 4058, 0, +3962, 4095, 0, +3132, 0, 3416, +3132, 0, 3416, +3132, 0, 3416, +3132, 0, 3416, +3132, 0, 3416, +3133, 0, 3416, +3133, 0, 3415, +3134, 0, 3415, +3135, 0, 3415, +3136, 0, 3415, +3137, 0, 3414, +3139, 0, 3414, +3142, 0, 3414, +3145, 0, 3413, +3150, 0, 3412, +3156, 0, 3410, +3164, 0, 3408, +3175, 0, 3406, +3189, 0, 3402, +3206, 0, 3398, +3230, 1406, 3392, +3258, 2326, 3383, +3294, 2676, 3372, +3338, 2922, 3356, +3333, 3124, 3267, +3333, 3212, 3124, +3488, 3470, 3054, +3589, 3636, 2940, +3682, 3780, 2721, +3783, 3920, 1928, +3890, 4058, 0, +4002, 4095, 0, +3426, 0, 3548, +3426, 0, 3548, +3427, 0, 3548, +3427, 0, 3548, +3427, 0, 3548, +3427, 0, 3548, +3427, 0, 3548, +3428, 0, 3548, +3428, 0, 3548, +3429, 0, 3547, +3429, 0, 3547, +3430, 0, 3547, +3432, 0, 3546, +3434, 0, 3546, +3436, 0, 3545, +3440, 0, 3544, +3444, 0, 3543, +3450, 0, 3541, +3457, 0, 3538, +3467, 0, 3535, +3480, 0, 3530, +3497, 1536, 3524, +3515, 2457, 3512, +3504, 2808, 3457, +3488, 3054, 3372, +3488, 3054, 3183, +3488, 3264, 3054, +3636, 3558, 2940, +3776, 3780, 2721, +3860, 3920, 1928, +3952, 4058, 0, +4051, 4095, 0, +3651, 0, 3680, +3651, 0, 3680, +3651, 0, 3680, +3651, 0, 3680, +3651, 0, 3680, +3651, 0, 3680, +3651, 0, 3680, +3652, 0, 3680, +3652, 0, 3680, +3652, 0, 3680, +3653, 0, 3679, +3653, 0, 3679, +3654, 0, 3679, +3655, 0, 3678, +3657, 0, 3678, +3659, 0, 3677, +3662, 0, 3676, +3665, 0, 3675, +3670, 0, 3673, +3670, 0, 3664, +3667, 0, 3648, +3662, 0, 3626, +3656, 1663, 3595, +3648, 2590, 3550, +3636, 2940, 3482, +3636, 2940, 3341, +3636, 2940, 3038, +3636, 3324, 2940, +3780, 3655, 2721, +3920, 3893, 1928, +4023, 4058, 0, +4095, 4095, 0, +3812, 0, 3781, +3812, 0, 3781, +3812, 0, 3781, +3812, 0, 3781, +3812, 0, 3781, +3812, 0, 3781, +3812, 0, 3781, +3812, 0, 3780, +3812, 0, 3780, +3812, 0, 3779, +3812, 0, 3778, +3812, 0, 3777, +3811, 0, 3777, +3811, 0, 3775, +3810, 0, 3773, +3810, 0, 3770, +3809, 0, 3766, +3808, 0, 3761, +3807, 0, 3754, +3805, 0, 3744, +3802, 0, 3731, +3799, 0, 3713, +3794, 0, 3687, +3788, 1799, 3651, +3780, 2721, 3597, +3780, 2721, 3492, +3780, 2721, 3296, +3780, 2721, 2722, +3780, 3394, 2721, +3920, 3758, 1928, +4058, 4008, 0, +4095, 4095, 0, +3944, 0, 3864, +3944, 0, 3864, +3944, 0, 3863, +3944, 0, 3863, +3944, 0, 3863, +3944, 0, 3863, +3944, 0, 3863, +3944, 0, 3863, +3944, 0, 3863, +3944, 0, 3862, +3944, 0, 3862, +3944, 0, 3861, +3944, 0, 3860, +3943, 0, 3859, +3943, 0, 3857, +3943, 0, 3854, +3942, 0, 3851, +3941, 0, 3847, +3940, 0, 3841, +3939, 0, 3833, +3937, 0, 3822, +3934, 0, 3808, +3931, 0, 3787, +3926, 0, 3758, +3920, 1928, 3716, +3920, 1928, 3637, +3920, 1928, 3504, +3920, 1928, 3229, +3920, 2556, 1928, +3920, 3474, 1928, +4058, 3867, 0, +4095, 4095, 0, +4076, 0, 3955, +4076, 0, 3955, +4076, 0, 3955, +4076, 0, 3955, +4076, 0, 3955, +4076, 0, 3954, +4076, 0, 3954, +4076, 0, 3954, +4076, 0, 3954, +4076, 0, 3953, +4076, 0, 3953, +4076, 0, 3953, +4076, 0, 3952, +4076, 0, 3950, +4075, 0, 3949, +4075, 0, 3947, +4075, 0, 3945, +4074, 0, 3941, +4073, 0, 3937, +4072, 0, 3930, +4071, 0, 3921, +4069, 0, 3910, +4066, 0, 3893, +4063, 0, 3870, +4058, 0, 3838, +4058, 0, 3779, +4058, 0, 3685, +4058, 0, 3520, +4058, 0, 3119, +4058, 2157, 0, +4058, 3562, 0, +4095, 3982, 0, +4095, 0, 4054, +4095, 0, 4054, +4095, 0, 4054, +4095, 0, 4054, +4095, 0, 4054, +4095, 0, 4054, +4095, 0, 4054, +4095, 0, 4053, +4095, 0, 4053, +4095, 0, 4053, +4095, 0, 4053, +4095, 0, 4052, +4095, 0, 4051, +4095, 0, 4051, +4095, 0, 4049, +4095, 0, 4048, +4095, 0, 4046, +4095, 0, 4043, +4095, 0, 4039, +4095, 0, 4034, +4095, 0, 4027, +4095, 0, 4018, +4095, 0, 4005, +4095, 0, 3987, +4095, 0, 3962, +4095, 0, 3918, +4095, 0, 3851, +4095, 0, 3743, +4095, 0, 3541, +4095, 0, 2915, +4095, 0, 0, +4095, 3659, 0, +0, 3146, 3416, +0, 3146, 3416, +0, 3147, 3416, +0, 3147, 3416, +0, 3147, 3416, +0, 3148, 3416, +0, 3149, 3416, +0, 3151, 3416, +0, 3152, 3416, +0, 3155, 3416, +0, 3158, 3416, +0, 3162, 3416, +0, 3168, 3416, +0, 3175, 3416, +0, 3184, 3416, +0, 3197, 3416, +0, 3213, 3416, +0, 3234, 3416, +0, 3261, 3416, +0, 3294, 3416, +0, 3335, 3416, +0, 3385, 3416, +0, 3416, 3387, +0, 3416, 3294, +0, 3416, 3132, +0, 3416, 2741, +0, 3548, 0, +0, 3680, 0, +2367, 3812, 0, +3140, 3944, 0, +3475, 4076, 0, +3716, 4095, 0, +0, 3146, 3416, +0, 3146, 3416, +0, 3146, 3416, +0, 3147, 3416, +0, 3147, 3416, +0, 3148, 3416, +0, 3149, 3416, +0, 3151, 3416, +0, 3152, 3416, +0, 3154, 3416, +0, 3158, 3416, +0, 3162, 3416, +0, 3168, 3416, +0, 3175, 3416, +0, 3184, 3416, +0, 3197, 3416, +0, 3213, 3416, +0, 3234, 3416, +0, 3261, 3416, +0, 3294, 3416, +0, 3335, 3416, +0, 3385, 3416, +0, 3416, 3387, +0, 3416, 3294, +0, 3416, 3132, +0, 3416, 2741, +0, 3548, 0, +0, 3680, 0, +2369, 3812, 0, +3140, 3944, 0, +3475, 4076, 0, +3717, 4095, 0, +0, 3145, 3416, +0, 3146, 3416, +0, 3146, 3416, +0, 3147, 3416, +0, 3147, 3416, +0, 3148, 3416, +0, 3149, 3416, +0, 3150, 3416, +0, 3152, 3416, +0, 3154, 3416, +0, 3157, 3416, +0, 3162, 3416, +0, 3167, 3416, +0, 3175, 3416, +0, 3184, 3416, +0, 3197, 3416, +0, 3213, 3416, +0, 3234, 3416, +0, 3260, 3416, +0, 3294, 3416, +0, 3335, 3416, +0, 3384, 3416, +0, 3416, 3387, +0, 3416, 3294, +0, 3416, 3132, +0, 3416, 2742, +0, 3548, 0, +0, 3680, 0, +2371, 3812, 0, +3140, 3944, 0, +3476, 4076, 0, +3717, 4095, 0, +0, 3145, 3416, +0, 3145, 3416, +0, 3146, 3416, +0, 3146, 3416, +0, 3147, 3416, +0, 3147, 3416, +0, 3148, 3416, +0, 3150, 3416, +0, 3151, 3416, +0, 3154, 3416, +0, 3157, 3416, +0, 3161, 3416, +0, 3167, 3416, +0, 3174, 3416, +0, 3184, 3416, +0, 3196, 3416, +0, 3213, 3416, +0, 3234, 3416, +0, 3260, 3416, +0, 3293, 3416, +0, 3335, 3416, +0, 3384, 3416, +0, 3416, 3387, +0, 3416, 3294, +0, 3416, 3132, +0, 3416, 2742, +0, 3548, 0, +0, 3680, 0, +2374, 3812, 0, +3141, 3944, 0, +3476, 4076, 0, +3717, 4095, 0, +0, 3144, 3416, +0, 3145, 3416, +0, 3145, 3416, +0, 3146, 3416, +0, 3146, 3416, +0, 3147, 3416, +0, 3148, 3416, +0, 3149, 3416, +0, 3151, 3416, +0, 3154, 3416, +0, 3157, 3416, +0, 3161, 3416, +0, 3166, 3416, +0, 3174, 3416, +0, 3184, 3416, +0, 3196, 3416, +0, 3212, 3416, +0, 3233, 3416, +0, 3260, 3416, +0, 3293, 3416, +0, 3334, 3416, +0, 3384, 3416, +0, 3416, 3387, +0, 3416, 3295, +0, 3416, 3132, +0, 3416, 2743, +0, 3548, 0, +0, 3680, 0, +2377, 3812, 0, +3142, 3944, 0, +3476, 4076, 0, +3717, 4095, 0, +0, 3144, 3416, +0, 3144, 3416, +0, 3144, 3416, +0, 3145, 3416, +0, 3145, 3416, +0, 3146, 3416, +0, 3147, 3416, +0, 3149, 3416, +0, 3151, 3416, +0, 3153, 3416, +0, 3156, 3416, +0, 3160, 3416, +0, 3166, 3416, +0, 3173, 3416, +0, 3183, 3416, +0, 3196, 3416, +0, 3212, 3416, +0, 3233, 3416, +0, 3259, 3416, +0, 3293, 3416, +0, 3334, 3416, +0, 3384, 3416, +0, 3416, 3387, +0, 3416, 3295, +0, 3416, 3133, +0, 3416, 2744, +0, 3548, 0, +0, 3680, 0, +2382, 3812, 0, +3143, 3944, 0, +3477, 4076, 0, +3717, 4095, 0, +0, 3143, 3416, +0, 3143, 3416, +0, 3143, 3416, +0, 3144, 3416, +0, 3144, 3416, +0, 3145, 3416, +0, 3147, 3415, +0, 3148, 3415, +0, 3150, 3415, +0, 3152, 3415, +0, 3155, 3415, +0, 3160, 3415, +0, 3165, 3415, +0, 3173, 3415, +0, 3182, 3415, +0, 3195, 3415, +0, 3211, 3415, +0, 3232, 3415, +0, 3259, 3415, +0, 3292, 3415, +0, 3333, 3415, +0, 3383, 3415, +0, 3415, 3387, +0, 3415, 3295, +0, 3415, 3133, +0, 3415, 2745, +0, 3548, 0, +0, 3680, 0, +2389, 3812, 0, +3144, 3944, 0, +3477, 4076, 0, +3718, 4095, 0, +0, 3141, 3416, +0, 3141, 3416, +0, 3142, 3416, +0, 3142, 3416, +0, 3143, 3416, +0, 3144, 3416, +0, 3145, 3415, +0, 3147, 3415, +0, 3149, 3415, +0, 3151, 3415, +0, 3154, 3415, +0, 3158, 3415, +0, 3164, 3415, +0, 3171, 3415, +0, 3181, 3415, +0, 3194, 3415, +0, 3210, 3415, +0, 3231, 3415, +0, 3258, 3415, +0, 3291, 3415, +0, 3333, 3415, +0, 3382, 3415, +0, 3415, 3388, +0, 3415, 3296, +0, 3415, 3134, +0, 3415, 2746, +0, 3548, 0, +0, 3680, 0, +2397, 3812, 0, +3145, 3944, 0, +3478, 4076, 0, +3718, 4095, 0, +0, 3139, 3416, +0, 3140, 3416, +0, 3140, 3416, +0, 3141, 3416, +0, 3141, 3416, +0, 3142, 3416, +0, 3144, 3415, +0, 3145, 3415, +0, 3147, 3415, +0, 3150, 3415, +0, 3153, 3415, +0, 3157, 3415, +0, 3163, 3415, +0, 3170, 3415, +0, 3180, 3415, +0, 3192, 3415, +0, 3209, 3415, +0, 3230, 3415, +0, 3257, 3415, +0, 3290, 3415, +0, 3331, 3415, +0, 3381, 3415, +0, 3415, 3388, +0, 3415, 3296, +0, 3415, 3135, +0, 3415, 2748, +0, 3548, 0, +0, 3680, 0, +2408, 3812, 0, +3147, 3944, 0, +3479, 4076, 0, +3719, 4095, 0, +0, 3137, 3416, +0, 3137, 3416, +0, 3138, 3416, +0, 3138, 3416, +0, 3139, 3416, +0, 3140, 3416, +0, 3141, 3415, +0, 3143, 3415, +0, 3145, 3415, +0, 3147, 3415, +0, 3151, 3415, +0, 3155, 3415, +0, 3161, 3415, +0, 3168, 3415, +0, 3178, 3415, +0, 3191, 3415, +0, 3207, 3415, +0, 3228, 3415, +0, 3255, 3415, +0, 3289, 3415, +0, 3330, 3415, +0, 3380, 3415, +0, 3415, 3389, +0, 3415, 3297, +0, 3415, 3136, +0, 3415, 2751, +0, 3547, 0, +0, 3680, 0, +2422, 3812, 0, +3151, 3944, 0, +3480, 4076, 0, +3720, 4095, 0, +0, 3134, 3416, +0, 3134, 3416, +0, 3134, 3416, +0, 3135, 3416, +0, 3135, 3416, +0, 3136, 3416, +0, 3138, 3415, +0, 3139, 3415, +0, 3141, 3415, +0, 3144, 3415, +0, 3148, 3414, +0, 3152, 3414, +0, 3158, 3414, +0, 3165, 3414, +0, 3175, 3414, +0, 3188, 3414, +0, 3205, 3414, +0, 3226, 3414, +0, 3253, 3414, +0, 3287, 3414, +0, 3329, 3414, +0, 3379, 3414, +0, 3414, 3390, +0, 3414, 3298, +0, 3414, 3137, +0, 3414, 2754, +0, 3547, 0, +0, 3679, 0, +2441, 3812, 0, +3154, 3944, 0, +3482, 4076, 0, +3721, 4095, 0, +0, 3129, 3416, +0, 3129, 3416, +0, 3130, 3416, +0, 3130, 3416, +0, 3131, 3416, +0, 3132, 3416, +0, 3133, 3415, +0, 3135, 3415, +0, 3137, 3415, +0, 3140, 3415, +0, 3144, 3414, +0, 3149, 3414, +0, 3155, 3414, +0, 3162, 3414, +0, 3172, 3414, +0, 3185, 3414, +0, 3202, 3414, +0, 3223, 3414, +0, 3250, 3414, +0, 3284, 3414, +0, 3326, 3414, +0, 3376, 3414, +0, 3414, 3391, +0, 3414, 3299, +0, 3414, 3139, +0, 3414, 2759, +0, 3547, 0, +0, 3679, 0, +2465, 3812, 0, +3159, 3944, 0, +3485, 4076, 0, +3722, 4095, 0, +0, 3123, 3416, +0, 3123, 3416, +0, 3124, 3416, +0, 3124, 3416, +0, 3125, 3416, +0, 3126, 3416, +0, 3127, 3415, +0, 3129, 3415, +0, 3131, 3415, +0, 3134, 3415, +0, 3138, 3414, +0, 3143, 3414, +0, 3150, 3414, +0, 3158, 3414, +0, 3168, 3414, +0, 3181, 3414, +0, 3198, 3414, +0, 3219, 3414, +0, 3247, 3414, +0, 3281, 3414, +0, 3323, 3414, +0, 3374, 3414, +0, 3414, 3393, +0, 3414, 3301, +0, 3414, 3142, +0, 3414, 2765, +0, 3546, 0, +0, 3679, 0, +2494, 3811, 0, +3166, 3944, 0, +3488, 4076, 0, +3724, 4095, 0, +0, 3115, 3416, +0, 3115, 3416, +0, 3115, 3416, +0, 3116, 3416, +0, 3117, 3416, +0, 3118, 3416, +0, 3119, 3415, +0, 3121, 3415, +0, 3123, 3415, +0, 3126, 3415, +0, 3130, 3414, +0, 3135, 3414, +0, 3142, 3414, +0, 3151, 3413, +0, 3162, 3413, +0, 3175, 3413, +0, 3192, 3413, +0, 3214, 3413, +0, 3242, 3413, +0, 3276, 3413, +0, 3319, 3413, +0, 3370, 3413, +0, 3413, 3395, +0, 3413, 3304, +0, 3413, 3145, +0, 3413, 2773, +0, 3546, 0, +0, 3678, 0, +2531, 3811, 0, +3175, 3943, 0, +3492, 4076, 0, +3727, 4095, 0, +0, 3104, 3416, +0, 3104, 3416, +0, 3104, 3416, +0, 3105, 3416, +0, 3106, 3416, +0, 3106, 3416, +0, 3108, 3415, +0, 3110, 3415, +0, 3112, 3415, +0, 3115, 3415, +0, 3119, 3414, +0, 3125, 3414, +0, 3132, 3414, +0, 3141, 3413, +0, 3154, 3412, +0, 3167, 3412, +0, 3184, 3412, +0, 3206, 3412, +0, 3234, 3412, +0, 3270, 3412, +0, 3313, 3412, +0, 3365, 3412, +0, 3412, 3397, +0, 3412, 3307, +0, 3412, 3150, +0, 3412, 2784, +0, 3545, 0, +0, 3678, 0, +2576, 3810, 0, +3186, 3943, 0, +3498, 4075, 0, +3730, 4095, 0, +0, 3088, 3416, +0, 3088, 3416, +0, 3089, 3416, +0, 3089, 3416, +0, 3090, 3416, +0, 3091, 3416, +0, 3093, 3415, +0, 3094, 3415, +0, 3097, 3415, +0, 3100, 3415, +0, 3104, 3414, +0, 3110, 3414, +0, 3117, 3414, +0, 3127, 3413, +0, 3140, 3412, +0, 3156, 3410, +0, 3174, 3410, +0, 3196, 3410, +0, 3225, 3410, +0, 3261, 3410, +0, 3305, 3410, +0, 3358, 3410, +0, 3410, 3401, +0, 3410, 3311, +0, 3410, 3156, +0, 3410, 2797, +0, 3544, 0, +0, 3677, 0, +2631, 3810, 0, +3201, 3943, 0, +3505, 4075, 0, +3735, 4095, 0, +0, 3067, 3416, +0, 3067, 3416, +0, 3067, 3416, +0, 3068, 3416, +0, 3069, 3416, +0, 3070, 3416, +0, 3071, 3415, +0, 3073, 3415, +0, 3076, 3415, +0, 3079, 3415, +0, 3083, 3414, +0, 3089, 3414, +0, 3097, 3414, +0, 3107, 3413, +0, 3120, 3412, +0, 3137, 3410, +0, 3159, 3408, +0, 3183, 3408, +0, 3212, 3408, +0, 3249, 3408, +0, 3294, 3408, +0, 3348, 3408, +0, 3408, 3406, +0, 3408, 3317, +0, 3408, 3164, +0, 3408, 2815, +0, 3543, 0, +0, 3676, 0, +2694, 3809, 0, +3220, 3942, 0, +3515, 4075, 0, +3741, 4095, 0, +0, 3036, 3416, +0, 3036, 3416, +0, 3037, 3416, +0, 3038, 3416, +0, 3038, 3416, +0, 3039, 3416, +0, 3041, 3415, +0, 3043, 3415, +0, 3046, 3415, +0, 3049, 3415, +0, 3054, 3414, +0, 3060, 3414, +0, 3069, 3414, +0, 3079, 3413, +0, 3093, 3412, +0, 3111, 3410, +0, 3134, 3408, +0, 3164, 3406, +0, 3194, 3406, +0, 3233, 3406, +0, 3279, 3406, +0, 3335, 3406, +0, 3400, 3406, +0, 3406, 3325, +0, 3406, 3175, +0, 3406, 2838, +0, 3541, 0, +0, 3675, 0, +2767, 3808, 0, +3244, 3941, 0, +3528, 4074, 0, +3748, 4095, 0, +0, 2992, 3416, +0, 2992, 3416, +0, 2992, 3416, +0, 2993, 3416, +0, 2994, 3416, +0, 2996, 3416, +0, 2997, 3415, +0, 2999, 3415, +0, 3002, 3415, +0, 3006, 3415, +0, 3011, 3414, +0, 3018, 3414, +0, 3027, 3414, +0, 3039, 3413, +0, 3055, 3412, +0, 3074, 3410, +0, 3099, 3408, +0, 3131, 3406, +0, 3170, 3402, +0, 3210, 3402, +0, 3259, 3402, +0, 3317, 3402, +0, 3384, 3402, +0, 3402, 3335, +0, 3402, 3189, +0, 3402, 2866, +0, 3538, 0, +0, 3673, 0, +2850, 3807, 0, +3275, 3940, 0, +3545, 4073, 0, +3759, 4095, 0, +0, 2925, 3416, +0, 2925, 3416, +0, 2926, 3416, +0, 2927, 3416, +0, 2928, 3416, +0, 2929, 3416, +0, 2931, 3415, +0, 2934, 3415, +0, 2937, 3415, +0, 2942, 3415, +0, 2947, 3414, +0, 2956, 3414, +0, 2966, 3414, +0, 2979, 3413, +0, 2997, 3412, +0, 3019, 3410, +0, 3047, 3408, +0, 3082, 3406, +0, 3125, 3402, +0, 3177, 3398, +0, 3230, 3398, +0, 3291, 3398, +0, 3362, 3398, +0, 3398, 3348, +0, 3398, 3206, +0, 3398, 2902, +0, 3535, 0, +1603, 3670, 0, +2941, 3805, 0, +3313, 3939, 0, +3566, 4072, 0, +3772, 4095, 0, +0, 2816, 3416, +0, 2817, 3416, +0, 2817, 3416, +0, 2818, 3416, +0, 2820, 3416, +0, 2822, 3416, +0, 2824, 3415, +0, 2827, 3415, +0, 2832, 3415, +0, 2837, 3415, +0, 2845, 3414, +0, 2855, 3414, +0, 2867, 3414, +0, 2884, 3413, +0, 2906, 3412, +0, 2933, 3410, +0, 2966, 3408, +0, 3008, 3406, +0, 3059, 3402, +0, 3118, 3398, +1406, 3187, 3392, +1406, 3255, 3392, +1406, 3331, 3392, +1406, 3392, 3365, +1406, 3392, 3230, +1406, 3392, 2945, +0, 3530, 1621, +2388, 3667, 0, +3040, 3802, 0, +3359, 3937, 0, +3593, 4071, 0, +3790, 4095, 0, +0, 2613, 3416, +0, 2614, 3416, +0, 2615, 3416, +0, 2617, 3416, +0, 2619, 3416, +0, 2621, 3416, +0, 2625, 3415, +0, 2630, 3415, +0, 2637, 3415, +0, 2646, 3415, +0, 2657, 3414, +0, 2672, 3414, +0, 2691, 3414, +0, 2715, 3413, +0, 2746, 3412, +0, 2784, 3410, +0, 2830, 3408, +0, 2886, 3406, +0, 2951, 3402, +0, 3025, 3398, +1406, 3108, 3392, +2326, 3201, 3383, +2326, 3286, 3383, +2326, 3380, 3383, +2326, 3383, 3258, +2326, 3383, 2998, +1536, 3524, 2158, +2724, 3662, 0, +3145, 3799, 0, +3414, 3934, 0, +3627, 4069, 0, +3812, 4095, 0, +0, 1977, 3416, +0, 1981, 3416, +0, 1986, 3416, +0, 1992, 3416, +0, 2000, 3416, +0, 2011, 3416, +0, 2026, 3415, +0, 2044, 3415, +0, 2068, 3415, +0, 2098, 3415, +0, 2135, 3414, +0, 2180, 3414, +0, 2234, 3414, +0, 2298, 3413, +0, 2371, 3412, +0, 2453, 3410, +0, 2545, 3408, +0, 2643, 3406, +0, 2749, 3402, +0, 2860, 3398, +1406, 2976, 3392, +2326, 3095, 3383, +2676, 3218, 3372, +2676, 3325, 3372, +2676, 3372, 3294, +2676, 3372, 3060, +2459, 3515, 2457, +2965, 3656, 1663, +3256, 3794, 0, +3479, 3931, 0, +3669, 4066, 0, +3840, 4095, 0, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3415, +0, 0, 3415, +0, 0, 3415, +0, 0, 3415, +0, 0, 3414, +0, 0, 3414, +0, 0, 3414, +0, 0, 3413, +0, 0, 3412, +0, 0, 3410, +0, 0, 3408, +0, 1325, 3406, +0, 2121, 3402, +0, 2458, 3398, +1406, 2701, 3392, +2326, 2900, 3383, +2676, 3077, 3372, +2922, 3239, 3356, +2922, 3356, 3338, +2922, 3356, 3132, +2907, 3504, 2808, +3165, 3648, 2590, +3372, 3788, 1799, +3553, 3926, 0, +3719, 4063, 0, +3875, 4095, 0, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3416, +0, 0, 3415, +0, 0, 3415, +0, 0, 3415, +0, 0, 3415, +0, 0, 3414, +0, 0, 3414, +0, 0, 3414, +0, 0, 3413, +0, 0, 3412, +0, 0, 3410, +0, 0, 3408, +0, 0, 3406, +0, 0, 3402, +1484, 0, 3398, +2025, 1406, 3392, +2326, 2328, 3383, +2676, 2774, 3372, +2922, 3051, 3356, +3124, 3267, 3333, +3124, 3333, 3212, +3183, 3488, 3054, +3341, 3636, 2940, +3492, 3780, 2721, +3637, 3920, 1928, +3779, 4058, 0, +3918, 4095, 0, +2741, 0, 3416, +2741, 0, 3416, +2742, 0, 3416, +2742, 0, 3416, +2743, 0, 3416, +2744, 0, 3416, +2745, 0, 3415, +2746, 0, 3415, +2748, 0, 3415, +2751, 0, 3415, +2754, 0, 3414, +2759, 0, 3414, +2765, 0, 3414, +2773, 0, 3413, +2784, 0, 3412, +2797, 0, 3410, +2815, 0, 3408, +2838, 0, 3406, +2866, 0, 3402, +2902, 0, 3398, +2945, 1406, 3392, +2998, 2326, 3383, +3060, 2676, 3372, +3132, 2922, 3356, +3212, 3124, 3333, +3302, 3302, 3302, +3399, 3466, 3256, +3504, 3620, 3186, +3614, 3768, 3072, +3729, 3912, 2854, +3848, 4052, 2063, +3970, 4095, 0, +3264, 0, 3548, +3264, 0, 3548, +3264, 0, 3548, +3264, 0, 3548, +3264, 0, 3548, +3265, 0, 3548, +3265, 0, 3548, +3265, 0, 3548, +3266, 0, 3548, +3267, 0, 3547, +3268, 0, 3547, +3269, 0, 3547, +3271, 0, 3546, +3274, 0, 3546, +3278, 0, 3545, +3282, 0, 3544, +3288, 0, 3543, +3296, 0, 3541, +3307, 0, 3538, +3321, 0, 3535, +3339, 0, 3530, +3362, 1536, 3524, +3391, 2457, 3515, +3426, 2808, 3504, +3470, 3054, 3488, +3466, 3256, 3399, +3466, 3344, 3256, +3620, 3603, 3186, +3721, 3768, 3072, +3814, 3912, 2854, +3915, 4052, 2063, +4022, 4095, 0, +3558, 0, 3680, +3558, 0, 3680, +3559, 0, 3680, +3559, 0, 3680, +3559, 0, 3680, +3559, 0, 3680, +3559, 0, 3680, +3559, 0, 3680, +3560, 0, 3680, +3560, 0, 3680, +3561, 0, 3679, +3562, 0, 3679, +3563, 0, 3679, +3564, 0, 3678, +3566, 0, 3678, +3568, 0, 3677, +3572, 0, 3676, +3576, 0, 3675, +3582, 0, 3673, +3589, 0, 3670, +3599, 0, 3667, +3612, 0, 3662, +3629, 1663, 3656, +3648, 2590, 3644, +3636, 2940, 3589, +3620, 3186, 3504, +3620, 3186, 3315, +3620, 3396, 3186, +3768, 3691, 3072, +3908, 3912, 2854, +3992, 4052, 2063, +4084, 4095, 0, +3783, 0, 3812, +3783, 0, 3812, +3783, 0, 3812, +3783, 0, 3812, +3783, 0, 3812, +3783, 0, 3812, +3783, 0, 3812, +3784, 0, 3812, +3784, 0, 3812, +3784, 0, 3812, +3784, 0, 3812, +3785, 0, 3812, +3785, 0, 3811, +3786, 0, 3811, +3787, 0, 3810, +3789, 0, 3810, +3791, 0, 3809, +3794, 0, 3808, +3797, 0, 3807, +3802, 0, 3805, +3802, 0, 3796, +3799, 0, 3781, +3794, 0, 3759, +3788, 1799, 3728, +3780, 2721, 3682, +3768, 3072, 3614, +3768, 3072, 3473, +3768, 3072, 3171, +3768, 3456, 3072, +3912, 3787, 2854, +4052, 4025, 2063, +4095, 4095, 0, +3944, 0, 3913, +3944, 0, 3913, +3944, 0, 3913, +3944, 0, 3913, +3944, 0, 3913, +3944, 0, 3913, +3944, 0, 3913, +3944, 0, 3912, +3944, 0, 3912, +3944, 0, 3912, +3944, 0, 3911, +3944, 0, 3910, +3944, 0, 3910, +3943, 0, 3909, +3943, 0, 3907, +3943, 0, 3905, +3942, 0, 3902, +3941, 0, 3898, +3940, 0, 3893, +3939, 0, 3886, +3937, 0, 3876, +3934, 0, 3863, +3931, 0, 3845, +3926, 0, 3820, +3920, 1928, 3783, +3912, 2854, 3729, +3912, 2854, 3624, +3912, 2854, 3428, +3912, 2854, 2854, +3912, 3526, 2854, +4052, 3890, 2063, +4095, 4095, 0, +4076, 0, 3996, +4076, 0, 3996, +4076, 0, 3996, +4076, 0, 3995, +4076, 0, 3995, +4076, 0, 3995, +4076, 0, 3995, +4076, 0, 3995, +4076, 0, 3995, +4076, 0, 3995, +4076, 0, 3994, +4076, 0, 3994, +4076, 0, 3993, +4076, 0, 3992, +4075, 0, 3991, +4075, 0, 3989, +4075, 0, 3986, +4074, 0, 3983, +4073, 0, 3979, +4072, 0, 3973, +4071, 0, 3965, +4069, 0, 3954, +4066, 0, 3940, +4063, 0, 3919, +4058, 0, 3890, +4052, 2063, 3848, +4052, 2063, 3769, +4052, 2063, 3636, +4052, 2063, 3361, +4052, 2689, 2063, +4052, 3606, 2063, +4095, 4000, 0, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4087, +4095, 0, 4086, +4095, 0, 4086, +4095, 0, 4086, +4095, 0, 4085, +4095, 0, 4085, +4095, 0, 4084, +4095, 0, 4083, +4095, 0, 4082, +4095, 0, 4080, +4095, 0, 4077, +4095, 0, 4073, +4095, 0, 4069, +4095, 0, 4062, +4095, 0, 4054, +4095, 0, 4042, +4095, 0, 4025, +4095, 0, 4002, +4095, 0, 3970, +4095, 0, 3911, +4095, 0, 3818, +4095, 0, 3653, +4095, 0, 3253, +4095, 2266, 0, +4095, 3695, 0, +0, 3278, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3279, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3280, 3548, +0, 3281, 3548, +0, 3283, 3548, +0, 3285, 3548, +0, 3287, 3548, +0, 3290, 3548, +0, 3294, 3548, +0, 3300, 3548, +0, 3307, 3548, +0, 3317, 3548, +0, 3329, 3548, +0, 3346, 3548, +0, 3367, 3548, +0, 3393, 3548, +0, 3426, 3548, +0, 3467, 3548, +0, 3516, 3548, +0, 3548, 3519, +0, 3548, 3426, +0, 3548, 3264, +0, 3548, 2873, +0, 3680, 0, +0, 3812, 0, +2497, 3944, 0, +3271, 4076, 0, +3608, 4095, 0, +0, 3278, 3548, +0, 3278, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3280, 3548, +0, 3281, 3548, +0, 3283, 3548, +0, 3284, 3548, +0, 3287, 3548, +0, 3290, 3548, +0, 3294, 3548, +0, 3300, 3548, +0, 3307, 3548, +0, 3317, 3548, +0, 3329, 3548, +0, 3346, 3548, +0, 3367, 3548, +0, 3393, 3548, +0, 3426, 3548, +0, 3467, 3548, +0, 3516, 3548, +0, 3548, 3519, +0, 3548, 3426, +0, 3548, 3264, +0, 3548, 2873, +0, 3680, 0, +0, 3812, 0, +2498, 3944, 0, +3272, 4076, 0, +3608, 4095, 0, +0, 3278, 3548, +0, 3278, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3280, 3548, +0, 3281, 3548, +0, 3282, 3548, +0, 3284, 3548, +0, 3287, 3548, +0, 3290, 3548, +0, 3294, 3548, +0, 3300, 3548, +0, 3307, 3548, +0, 3317, 3548, +0, 3329, 3548, +0, 3346, 3548, +0, 3366, 3548, +0, 3393, 3548, +0, 3426, 3548, +0, 3467, 3548, +0, 3516, 3548, +0, 3548, 3519, +0, 3548, 3427, +0, 3548, 3264, +0, 3548, 2873, +0, 3680, 0, +0, 3812, 0, +2500, 3944, 0, +3272, 4076, 0, +3608, 4095, 0, +0, 3277, 3548, +0, 3278, 3548, +0, 3278, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3281, 3548, +0, 3282, 3548, +0, 3284, 3548, +0, 3286, 3548, +0, 3290, 3548, +0, 3294, 3548, +0, 3299, 3548, +0, 3307, 3548, +0, 3316, 3548, +0, 3329, 3548, +0, 3345, 3548, +0, 3366, 3548, +0, 3393, 3548, +0, 3426, 3548, +0, 3467, 3548, +0, 3516, 3548, +0, 3548, 3519, +0, 3548, 3427, +0, 3548, 3264, +0, 3548, 2874, +0, 3680, 0, +0, 3812, 0, +2502, 3944, 0, +3272, 4076, 0, +3608, 4095, 0, +0, 3277, 3548, +0, 3277, 3548, +0, 3277, 3548, +0, 3278, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3280, 3548, +0, 3282, 3548, +0, 3284, 3548, +0, 3286, 3548, +0, 3289, 3548, +0, 3293, 3548, +0, 3299, 3548, +0, 3307, 3548, +0, 3316, 3548, +0, 3329, 3548, +0, 3345, 3548, +0, 3366, 3548, +0, 3392, 3548, +0, 3426, 3548, +0, 3467, 3548, +0, 3516, 3548, +0, 3548, 3519, +0, 3548, 3427, +0, 3548, 3264, +0, 3548, 2874, +0, 3680, 0, +0, 3812, 0, +2505, 3944, 0, +3273, 4076, 0, +3608, 4095, 0, +0, 3276, 3548, +0, 3277, 3548, +0, 3277, 3548, +0, 3277, 3548, +0, 3278, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3281, 3548, +0, 3283, 3548, +0, 3286, 3548, +0, 3289, 3548, +0, 3293, 3548, +0, 3299, 3548, +0, 3306, 3548, +0, 3316, 3548, +0, 3328, 3548, +0, 3344, 3548, +0, 3365, 3548, +0, 3392, 3548, +0, 3425, 3548, +0, 3466, 3548, +0, 3516, 3548, +0, 3548, 3519, +0, 3548, 3427, +0, 3548, 3265, +0, 3548, 2875, +0, 3680, 0, +0, 3812, 0, +2508, 3944, 0, +3273, 4076, 0, +3609, 4095, 0, +0, 3276, 3548, +0, 3276, 3548, +0, 3276, 3548, +0, 3277, 3548, +0, 3277, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3281, 3548, +0, 3283, 3548, +0, 3285, 3548, +0, 3288, 3548, +0, 3292, 3548, +0, 3298, 3548, +0, 3305, 3548, +0, 3315, 3548, +0, 3328, 3548, +0, 3344, 3548, +0, 3365, 3548, +0, 3392, 3548, +0, 3425, 3548, +0, 3466, 3548, +0, 3515, 3548, +0, 3548, 3519, +0, 3548, 3427, +0, 3548, 3265, +0, 3548, 2876, +0, 3680, 0, +0, 3812, 0, +2513, 3944, 0, +3274, 4076, 0, +3609, 4095, 0, +0, 3275, 3548, +0, 3275, 3548, +0, 3275, 3548, +0, 3275, 3548, +0, 3276, 3548, +0, 3277, 3548, +0, 3278, 3548, +0, 3279, 3548, +0, 3280, 3548, +0, 3282, 3548, +0, 3284, 3548, +0, 3287, 3548, +0, 3292, 3548, +0, 3297, 3548, +0, 3305, 3548, +0, 3314, 3548, +0, 3327, 3548, +0, 3343, 3548, +0, 3364, 3548, +0, 3391, 3548, +0, 3424, 3548, +0, 3466, 3548, +0, 3515, 3548, +0, 3548, 3520, +0, 3548, 3428, +0, 3548, 3265, +0, 3548, 2877, +0, 3680, 0, +0, 3812, 0, +2520, 3944, 0, +3276, 4076, 0, +3610, 4095, 0, +0, 3273, 3548, +0, 3273, 3548, +0, 3274, 3548, +0, 3274, 3548, +0, 3275, 3548, +0, 3275, 3548, +0, 3276, 3548, +0, 3277, 3548, +0, 3279, 3548, +0, 3281, 3548, +0, 3283, 3548, +0, 3286, 3548, +0, 3291, 3548, +0, 3296, 3548, +0, 3303, 3548, +0, 3313, 3548, +0, 3326, 3548, +0, 3342, 3548, +0, 3363, 3548, +0, 3390, 3548, +0, 3423, 3548, +0, 3465, 3548, +0, 3514, 3548, +0, 3548, 3520, +0, 3548, 3428, +0, 3548, 3266, +0, 3548, 2878, +0, 3680, 0, +0, 3812, 0, +2528, 3944, 0, +3277, 4076, 0, +3611, 4095, 0, +0, 3271, 3548, +0, 3272, 3548, +0, 3272, 3548, +0, 3272, 3548, +0, 3273, 3548, +0, 3273, 3548, +0, 3274, 3548, +0, 3276, 3548, +0, 3277, 3548, +0, 3279, 3547, +0, 3282, 3547, +0, 3285, 3547, +0, 3289, 3547, +0, 3295, 3547, +0, 3302, 3547, +0, 3312, 3547, +0, 3325, 3547, +0, 3341, 3547, +0, 3362, 3547, +0, 3389, 3547, +0, 3422, 3547, +0, 3464, 3547, +0, 3513, 3547, +0, 3547, 3520, +0, 3547, 3429, +0, 3547, 3267, +0, 3547, 2880, +0, 3680, 0, +0, 3812, 0, +2539, 3944, 0, +3279, 4076, 0, +3612, 4095, 0, +0, 3269, 3548, +0, 3269, 3548, +0, 3269, 3548, +0, 3270, 3548, +0, 3270, 3548, +0, 3271, 3548, +0, 3272, 3548, +0, 3273, 3548, +0, 3275, 3548, +0, 3277, 3547, +0, 3280, 3547, +0, 3283, 3547, +0, 3287, 3547, +0, 3293, 3547, +0, 3300, 3547, +0, 3310, 3547, +0, 3323, 3547, +0, 3339, 3547, +0, 3361, 3547, +0, 3387, 3547, +0, 3421, 3547, +0, 3462, 3547, +0, 3512, 3547, +0, 3547, 3521, +0, 3547, 3429, +0, 3547, 3268, +0, 3547, 2883, +0, 3679, 0, +0, 3812, 0, +2553, 3944, 0, +3282, 4076, 0, +3613, 4095, 0, +0, 3266, 3548, +0, 3266, 3548, +0, 3266, 3548, +0, 3267, 3548, +0, 3267, 3548, +0, 3268, 3548, +0, 3269, 3548, +0, 3270, 3548, +0, 3271, 3548, +0, 3274, 3547, +0, 3277, 3547, +0, 3280, 3547, +0, 3285, 3547, +0, 3290, 3547, +0, 3298, 3547, +0, 3307, 3547, +0, 3320, 3547, +0, 3337, 3547, +0, 3358, 3547, +0, 3385, 3547, +0, 3419, 3547, +0, 3461, 3547, +0, 3511, 3547, +0, 3547, 3522, +0, 3547, 3430, +0, 3547, 3269, +0, 3547, 2886, +0, 3679, 0, +0, 3812, 0, +2572, 3944, 0, +3286, 4076, 0, +3615, 4095, 0, +0, 3261, 3548, +0, 3261, 3548, +0, 3261, 3548, +0, 3262, 3548, +0, 3262, 3548, +0, 3263, 3548, +0, 3264, 3548, +0, 3265, 3548, +0, 3267, 3548, +0, 3269, 3547, +0, 3272, 3547, +0, 3276, 3547, +0, 3281, 3546, +0, 3287, 3546, +0, 3294, 3546, +0, 3304, 3546, +0, 3317, 3546, +0, 3334, 3546, +0, 3355, 3546, +0, 3382, 3546, +0, 3416, 3546, +0, 3458, 3546, +0, 3509, 3546, +0, 3546, 3523, +0, 3546, 3432, +0, 3546, 3271, +0, 3546, 2891, +0, 3679, 0, +0, 3811, 0, +2596, 3944, 0, +3291, 4076, 0, +3617, 4095, 0, +0, 3255, 3548, +0, 3255, 3548, +0, 3256, 3548, +0, 3256, 3548, +0, 3256, 3548, +0, 3257, 3548, +0, 3258, 3548, +0, 3259, 3548, +0, 3261, 3548, +0, 3263, 3547, +0, 3266, 3547, +0, 3270, 3547, +0, 3275, 3546, +0, 3282, 3546, +0, 3290, 3546, +0, 3300, 3546, +0, 3313, 3546, +0, 3330, 3546, +0, 3351, 3546, +0, 3379, 3546, +0, 3413, 3546, +0, 3455, 3546, +0, 3506, 3546, +0, 3546, 3525, +0, 3546, 3434, +0, 3546, 3274, +0, 3546, 2897, +0, 3678, 0, +0, 3811, 0, +2625, 3943, 0, +3297, 4076, 0, +3621, 4095, 0, +0, 3247, 3548, +0, 3247, 3548, +0, 3247, 3548, +0, 3248, 3548, +0, 3248, 3548, +0, 3249, 3548, +0, 3250, 3548, +0, 3251, 3548, +0, 3253, 3548, +0, 3255, 3547, +0, 3258, 3547, +0, 3262, 3547, +0, 3268, 3546, +0, 3275, 3546, +0, 3284, 3545, +0, 3294, 3545, +0, 3307, 3545, +0, 3324, 3545, +0, 3346, 3545, +0, 3374, 3545, +0, 3408, 3545, +0, 3451, 3545, +0, 3502, 3545, +0, 3545, 3526, +0, 3545, 3436, +0, 3545, 3278, +0, 3545, 2905, +0, 3678, 0, +0, 3810, 0, +2662, 3943, 0, +3306, 4075, 0, +3625, 4095, 0, +0, 3236, 3548, +0, 3236, 3548, +0, 3236, 3548, +0, 3237, 3548, +0, 3237, 3548, +0, 3238, 3548, +0, 3239, 3548, +0, 3240, 3548, +0, 3242, 3548, +0, 3244, 3547, +0, 3247, 3547, +0, 3251, 3547, +0, 3257, 3546, +0, 3264, 3546, +0, 3273, 3545, +0, 3285, 3544, +0, 3299, 3544, +0, 3316, 3544, +0, 3339, 3544, +0, 3367, 3544, +0, 3402, 3544, +0, 3445, 3544, +0, 3497, 3544, +0, 3544, 3529, +0, 3544, 3440, +0, 3544, 3282, +0, 3544, 2916, +0, 3677, 0, +0, 3810, 0, +2708, 3943, 0, +3318, 4075, 0, +3630, 4095, 0, +0, 3220, 3548, +0, 3220, 3548, +0, 3221, 3548, +0, 3221, 3548, +0, 3222, 3548, +0, 3222, 3548, +0, 3223, 3548, +0, 3225, 3548, +0, 3226, 3548, +0, 3229, 3547, +0, 3232, 3547, +0, 3236, 3547, +0, 3242, 3546, +0, 3249, 3546, +0, 3259, 3545, +0, 3272, 3544, +0, 3288, 3543, +0, 3306, 3543, +0, 3329, 3543, +0, 3357, 3543, +0, 3393, 3543, +0, 3437, 3543, +0, 3490, 3543, +0, 3543, 3533, +0, 3543, 3444, +0, 3543, 3288, +0, 3543, 2929, +0, 3676, 0, +0, 3809, 0, +2762, 3942, 0, +3333, 4075, 0, +3638, 4095, 0, +0, 3198, 3548, +0, 3199, 3548, +0, 3199, 3548, +0, 3200, 3548, +0, 3200, 3548, +0, 3201, 3548, +0, 3202, 3548, +0, 3203, 3548, +0, 3205, 3548, +0, 3208, 3547, +0, 3211, 3547, +0, 3216, 3547, +0, 3221, 3546, +0, 3229, 3546, +0, 3239, 3545, +0, 3253, 3544, +0, 3270, 3543, +0, 3291, 3541, +0, 3315, 3541, +0, 3344, 3541, +0, 3381, 3541, +0, 3426, 3541, +0, 3480, 3541, +0, 3541, 3538, +0, 3541, 3450, +0, 3541, 3296, +0, 3541, 2947, +0, 3675, 0, +0, 3808, 0, +2826, 3941, 0, +3351, 4074, 0, +3648, 4095, 0, +0, 3168, 3548, +0, 3168, 3548, +0, 3168, 3548, +0, 3169, 3548, +0, 3170, 3548, +0, 3171, 3548, +0, 3172, 3548, +0, 3173, 3548, +0, 3175, 3548, +0, 3178, 3547, +0, 3182, 3547, +0, 3186, 3547, +0, 3192, 3546, +0, 3201, 3546, +0, 3211, 3545, +0, 3225, 3544, +0, 3243, 3543, +0, 3267, 3541, +0, 3296, 3538, +0, 3326, 3538, +0, 3365, 3538, +0, 3411, 3538, +0, 3467, 3538, +0, 3532, 3538, +0, 3538, 3457, +0, 3538, 3307, +0, 3538, 2970, +0, 3673, 0, +0, 3807, 0, +2899, 3940, 0, +3376, 4073, 0, +3661, 4095, 0, +0, 3124, 3548, +0, 3124, 3548, +0, 3124, 3548, +0, 3125, 3548, +0, 3125, 3548, +0, 3126, 3548, +0, 3128, 3548, +0, 3129, 3548, +0, 3132, 3548, +0, 3135, 3547, +0, 3138, 3547, +0, 3144, 3547, +0, 3151, 3546, +0, 3160, 3546, +0, 3171, 3545, +0, 3186, 3544, +0, 3206, 3543, +0, 3231, 3541, +0, 3263, 3538, +0, 3302, 3535, +0, 3342, 3535, +0, 3391, 3535, +0, 3449, 3535, +0, 3516, 3535, +0, 3535, 3467, +0, 3535, 3321, +0, 3535, 2998, +0, 3670, 0, +0, 3805, 0, +2982, 3939, 0, +3407, 4072, 0, +3677, 4095, 0, +0, 3056, 3548, +0, 3057, 3548, +0, 3057, 3548, +0, 3058, 3548, +0, 3059, 3548, +0, 3060, 3548, +0, 3061, 3548, +0, 3063, 3548, +0, 3066, 3548, +0, 3069, 3547, +0, 3074, 3547, +0, 3080, 3547, +0, 3087, 3546, +0, 3098, 3546, +0, 3111, 3545, +0, 3129, 3544, +0, 3151, 3543, +0, 3179, 3541, +0, 3214, 3538, +0, 3257, 3535, +0, 3309, 3530, +0, 3362, 3530, +0, 3423, 3530, +0, 3495, 3530, +0, 3530, 3480, +0, 3530, 3339, +0, 3530, 3034, +0, 3667, 0, +1737, 3802, 0, +3073, 3937, 0, +3445, 4071, 0, +3699, 4095, 0, +0, 2948, 3548, +0, 2948, 3548, +0, 2949, 3548, +0, 2950, 3548, +0, 2951, 3548, +0, 2952, 3548, +0, 2954, 3548, +0, 2956, 3548, +0, 2960, 3548, +0, 2964, 3547, +0, 2970, 3547, +0, 2977, 3547, +0, 2987, 3546, +0, 3000, 3546, +0, 3016, 3545, +0, 3038, 3544, +0, 3065, 3543, +0, 3099, 3541, +0, 3140, 3538, +0, 3190, 3535, +0, 3250, 3530, +1536, 3320, 3524, +1536, 3387, 3524, +1536, 3463, 3524, +1536, 3524, 3497, +1536, 3524, 3362, +1536, 3524, 3078, +0, 3662, 1753, +2519, 3799, 0, +3172, 3934, 0, +3491, 4069, 0, +3726, 4095, 0, +0, 2745, 3548, +0, 2745, 3548, +0, 2746, 3548, +0, 2747, 3548, +0, 2749, 3548, +0, 2751, 3548, +0, 2754, 3548, +0, 2758, 3548, +0, 2763, 3548, +0, 2770, 3547, +0, 2778, 3547, +0, 2790, 3547, +0, 2804, 3546, +0, 2824, 3546, +0, 2848, 3545, +0, 2879, 3544, +0, 2917, 3543, +0, 2963, 3541, +0, 3018, 3538, +0, 3083, 3535, +0, 3157, 3530, +1536, 3241, 3524, +2457, 3333, 3515, +2457, 3418, 3515, +2457, 3512, 3515, +2457, 3515, 3391, +2457, 3515, 3130, +1663, 3656, 2289, +2856, 3794, 0, +3277, 3931, 0, +3546, 4066, 0, +3759, 4095, 0, +0, 2104, 3548, +0, 2107, 3548, +0, 2111, 3548, +0, 2115, 3548, +0, 2122, 3548, +0, 2130, 3548, +0, 2141, 3548, +0, 2156, 3548, +0, 2174, 3548, +0, 2198, 3547, +0, 2228, 3547, +0, 2265, 3547, +0, 2311, 3546, +0, 2365, 3546, +0, 2429, 3545, +0, 2502, 3544, +0, 2585, 3543, +0, 2676, 3541, +0, 2775, 3538, +0, 2881, 3535, +0, 2992, 3530, +1536, 3108, 3524, +2457, 3227, 3515, +2808, 3350, 3504, +2808, 3457, 3504, +2808, 3504, 3426, +2808, 3504, 3192, +2592, 3648, 2590, +3097, 3788, 1799, +3388, 3926, 0, +3611, 4063, 0, +3801, 4095, 0, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3547, +0, 0, 3547, +0, 0, 3547, +0, 0, 3546, +0, 0, 3546, +0, 0, 3545, +0, 0, 3544, +0, 0, 3543, +0, 0, 3541, +0, 1477, 3538, +0, 2256, 3535, +0, 2593, 3530, +1536, 2833, 3524, +2457, 3032, 3515, +2808, 3209, 3504, +3054, 3372, 3488, +3054, 3488, 3470, +3054, 3488, 3264, +3038, 3636, 2940, +3296, 3780, 2721, +3504, 3920, 1928, +3685, 4058, 0, +3851, 4095, 0, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3548, +0, 0, 3547, +0, 0, 3547, +0, 0, 3547, +0, 0, 3546, +0, 0, 3546, +0, 0, 3545, +0, 0, 3544, +0, 0, 3543, +0, 0, 3541, +0, 0, 3538, +0, 0, 3535, +1621, 0, 3530, +2158, 1536, 3524, +2457, 2459, 3515, +2808, 2907, 3504, +3054, 3183, 3488, +3256, 3399, 3466, +3256, 3466, 3344, +3315, 3620, 3186, +3473, 3768, 3072, +3624, 3912, 2854, +3769, 4052, 2063, +3911, 4095, 0, +2873, 0, 3548, +2873, 0, 3548, +2873, 0, 3548, +2874, 0, 3548, +2874, 0, 3548, +2875, 0, 3548, +2876, 0, 3548, +2877, 0, 3548, +2878, 0, 3548, +2880, 0, 3547, +2883, 0, 3547, +2886, 0, 3547, +2891, 0, 3546, +2897, 0, 3546, +2905, 0, 3545, +2916, 0, 3544, +2929, 0, 3543, +2947, 0, 3541, +2970, 0, 3538, +2998, 0, 3535, +3034, 0, 3530, +3078, 1536, 3524, +3130, 2457, 3515, +3192, 2808, 3504, +3264, 3054, 3488, +3344, 3256, 3466, +3434, 3434, 3434, +3531, 3598, 3388, +3636, 3752, 3318, +3746, 3900, 3204, +3861, 4044, 2986, +3980, 4095, 2192, +3396, 0, 3680, +3396, 0, 3680, +3396, 0, 3680, +3396, 0, 3680, +3396, 0, 3680, +3396, 0, 3680, +3396, 0, 3680, +3397, 0, 3680, +3397, 0, 3680, +3398, 0, 3680, +3399, 0, 3679, +3400, 0, 3679, +3401, 0, 3679, +3403, 0, 3678, +3406, 0, 3678, +3410, 0, 3677, +3414, 0, 3676, +3420, 0, 3675, +3429, 0, 3673, +3439, 0, 3670, +3453, 0, 3667, +3471, 0, 3662, +3494, 1663, 3656, +3523, 2590, 3648, +3558, 2940, 3636, +3603, 3186, 3620, +3598, 3388, 3531, +3598, 3477, 3388, +3752, 3735, 3318, +3853, 3900, 3204, +3947, 4044, 2986, +4047, 4095, 2192, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3691, 0, 3812, +3692, 0, 3812, +3692, 0, 3812, +3693, 0, 3812, +3694, 0, 3811, +3695, 0, 3811, +3696, 0, 3810, +3698, 0, 3810, +3700, 0, 3809, +3704, 0, 3808, +3708, 0, 3807, +3714, 0, 3805, +3721, 0, 3802, +3731, 0, 3799, +3745, 0, 3794, +3761, 1799, 3788, +3780, 2721, 3776, +3768, 3072, 3721, +3752, 3318, 3636, +3752, 3318, 3447, +3752, 3528, 3318, +3900, 3822, 3204, +4040, 4044, 2986, +4095, 4095, 2192, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3915, 0, 3944, +3916, 0, 3944, +3916, 0, 3944, +3916, 0, 3944, +3917, 0, 3944, +3917, 0, 3943, +3918, 0, 3943, +3920, 0, 3943, +3921, 0, 3942, +3923, 0, 3941, +3926, 0, 3940, +3929, 0, 3939, +3934, 0, 3937, +3934, 0, 3928, +3931, 0, 3913, +3926, 0, 3891, +3920, 1928, 3860, +3912, 2854, 3814, +3900, 3204, 3746, +3900, 3204, 3605, +3900, 3204, 3302, +3900, 3588, 3204, +4044, 3919, 2986, +4095, 4095, 2192, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4045, +4076, 0, 4044, +4076, 0, 4044, +4076, 0, 4044, +4076, 0, 4043, +4076, 0, 4043, +4076, 0, 4042, +4075, 0, 4041, +4075, 0, 4039, +4075, 0, 4037, +4074, 0, 4034, +4073, 0, 4030, +4072, 0, 4025, +4071, 0, 4018, +4069, 0, 4008, +4066, 0, 3995, +4063, 0, 3977, +4058, 0, 3952, +4052, 2063, 3915, +4044, 2986, 3861, +4044, 2986, 3755, +4044, 2986, 3561, +4044, 2986, 2987, +4044, 3659, 2986, +4095, 4023, 2192, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4087, +4095, 0, 4072, +4095, 0, 4051, +4095, 0, 4022, +4095, 2192, 3980, +4095, 2192, 3901, +4095, 2192, 3768, +4095, 2192, 3494, +4095, 2814, 2192, +4095, 3738, 2192, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3414, 3680, +0, 3415, 3680, +0, 3417, 3680, +0, 3419, 3680, +0, 3422, 3680, +0, 3427, 3680, +0, 3432, 3680, +0, 3440, 3680, +0, 3449, 3680, +0, 3462, 3680, +0, 3478, 3680, +0, 3499, 3680, +0, 3525, 3680, +0, 3558, 3680, +0, 3599, 3680, +0, 3649, 3680, +0, 3680, 3651, +0, 3680, 3558, +0, 3680, 3396, +0, 3680, 3005, +0, 3812, 0, +0, 3944, 0, +2626, 4076, 0, +3404, 4095, 0, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3414, 3680, +0, 3415, 3680, +0, 3417, 3680, +0, 3419, 3680, +0, 3422, 3680, +0, 3426, 3680, +0, 3432, 3680, +0, 3439, 3680, +0, 3449, 3680, +0, 3462, 3680, +0, 3478, 3680, +0, 3499, 3680, +0, 3525, 3680, +0, 3558, 3680, +0, 3599, 3680, +0, 3649, 3680, +0, 3680, 3651, +0, 3680, 3558, +0, 3680, 3396, +0, 3680, 3005, +0, 3812, 0, +0, 3944, 0, +2627, 4076, 0, +3404, 4095, 0, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3414, 3680, +0, 3415, 3680, +0, 3417, 3680, +0, 3419, 3680, +0, 3422, 3680, +0, 3426, 3680, +0, 3432, 3680, +0, 3439, 3680, +0, 3449, 3680, +0, 3462, 3680, +0, 3478, 3680, +0, 3499, 3680, +0, 3525, 3680, +0, 3558, 3680, +0, 3599, 3680, +0, 3649, 3680, +0, 3680, 3651, +0, 3680, 3559, +0, 3680, 3396, +0, 3680, 3005, +0, 3812, 0, +0, 3944, 0, +2628, 4076, 0, +3404, 4095, 0, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3415, 3680, +0, 3416, 3680, +0, 3419, 3680, +0, 3422, 3680, +0, 3426, 3680, +0, 3432, 3680, +0, 3439, 3680, +0, 3449, 3680, +0, 3461, 3680, +0, 3478, 3680, +0, 3499, 3680, +0, 3525, 3680, +0, 3558, 3680, +0, 3599, 3680, +0, 3649, 3680, +0, 3680, 3651, +0, 3680, 3559, +0, 3680, 3396, +0, 3680, 3006, +0, 3812, 0, +0, 3944, 0, +2630, 4076, 0, +3405, 4095, 0, +0, 3409, 3680, +0, 3409, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3414, 3680, +0, 3416, 3680, +0, 3419, 3680, +0, 3422, 3680, +0, 3426, 3680, +0, 3431, 3680, +0, 3439, 3680, +0, 3448, 3680, +0, 3461, 3680, +0, 3478, 3680, +0, 3498, 3680, +0, 3525, 3680, +0, 3558, 3680, +0, 3599, 3680, +0, 3648, 3680, +0, 3680, 3651, +0, 3680, 3559, +0, 3680, 3396, +0, 3680, 3006, +0, 3812, 0, +0, 3944, 0, +2632, 4076, 0, +3405, 4095, 0, +0, 3409, 3680, +0, 3409, 3680, +0, 3409, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3414, 3680, +0, 3416, 3680, +0, 3418, 3680, +0, 3421, 3680, +0, 3426, 3680, +0, 3431, 3680, +0, 3438, 3680, +0, 3448, 3680, +0, 3461, 3680, +0, 3477, 3680, +0, 3498, 3680, +0, 3525, 3680, +0, 3558, 3680, +0, 3599, 3680, +0, 3648, 3680, +0, 3680, 3651, +0, 3680, 3559, +0, 3680, 3396, +0, 3680, 3006, +0, 3812, 0, +0, 3944, 0, +2635, 4076, 0, +3405, 4095, 0, +0, 3408, 3680, +0, 3408, 3680, +0, 3409, 3680, +0, 3409, 3680, +0, 3409, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3414, 3680, +0, 3415, 3680, +0, 3418, 3680, +0, 3421, 3680, +0, 3425, 3680, +0, 3431, 3680, +0, 3438, 3680, +0, 3448, 3680, +0, 3460, 3680, +0, 3477, 3680, +0, 3497, 3680, +0, 3524, 3680, +0, 3557, 3680, +0, 3598, 3680, +0, 3648, 3680, +0, 3680, 3651, +0, 3680, 3559, +0, 3680, 3396, +0, 3680, 3007, +0, 3812, 0, +0, 3944, 0, +2639, 4076, 0, +3406, 4095, 0, +0, 3408, 3680, +0, 3408, 3680, +0, 3408, 3680, +0, 3408, 3680, +0, 3409, 3680, +0, 3409, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3413, 3680, +0, 3415, 3680, +0, 3417, 3680, +0, 3420, 3680, +0, 3425, 3680, +0, 3430, 3680, +0, 3437, 3680, +0, 3447, 3680, +0, 3460, 3680, +0, 3476, 3680, +0, 3497, 3680, +0, 3524, 3680, +0, 3557, 3680, +0, 3598, 3680, +0, 3648, 3680, +0, 3680, 3652, +0, 3680, 3559, +0, 3680, 3397, +0, 3680, 3008, +0, 3812, 0, +0, 3944, 0, +2644, 4076, 0, +3407, 4095, 0, +0, 3406, 3680, +0, 3407, 3680, +0, 3407, 3680, +0, 3407, 3680, +0, 3408, 3680, +0, 3408, 3680, +0, 3409, 3680, +0, 3410, 3680, +0, 3411, 3680, +0, 3412, 3680, +0, 3414, 3680, +0, 3416, 3680, +0, 3420, 3680, +0, 3424, 3680, +0, 3429, 3680, +0, 3437, 3680, +0, 3446, 3680, +0, 3459, 3680, +0, 3475, 3680, +0, 3496, 3680, +0, 3523, 3680, +0, 3556, 3680, +0, 3597, 3680, +0, 3647, 3680, +0, 3680, 3652, +0, 3680, 3560, +0, 3680, 3397, +0, 3680, 3009, +0, 3812, 0, +0, 3944, 0, +2650, 4076, 0, +3408, 4095, 0, +0, 3405, 3680, +0, 3405, 3680, +0, 3405, 3680, +0, 3406, 3680, +0, 3406, 3680, +0, 3407, 3680, +0, 3407, 3680, +0, 3408, 3680, +0, 3409, 3680, +0, 3411, 3680, +0, 3413, 3680, +0, 3415, 3680, +0, 3418, 3680, +0, 3423, 3680, +0, 3428, 3680, +0, 3436, 3680, +0, 3445, 3680, +0, 3458, 3680, +0, 3475, 3680, +0, 3495, 3680, +0, 3522, 3680, +0, 3556, 3680, +0, 3597, 3680, +0, 3646, 3680, +0, 3680, 3652, +0, 3680, 3560, +0, 3680, 3398, +0, 3680, 3011, +0, 3812, 0, +0, 3944, 0, +2659, 4076, 0, +3410, 4095, 0, +0, 3403, 3680, +0, 3403, 3680, +0, 3404, 3680, +0, 3404, 3680, +0, 3404, 3680, +0, 3405, 3680, +0, 3406, 3680, +0, 3406, 3680, +0, 3408, 3680, +0, 3409, 3680, +0, 3411, 3679, +0, 3414, 3679, +0, 3417, 3679, +0, 3421, 3679, +0, 3427, 3679, +0, 3434, 3679, +0, 3444, 3679, +0, 3457, 3679, +0, 3473, 3679, +0, 3494, 3679, +0, 3521, 3679, +0, 3554, 3679, +0, 3596, 3679, +0, 3646, 3679, +0, 3679, 3653, +0, 3679, 3561, +0, 3679, 3399, +0, 3679, 3013, +0, 3812, 0, +0, 3944, 0, +2670, 4076, 0, +3412, 4095, 0, +0, 3401, 3680, +0, 3401, 3680, +0, 3401, 3680, +0, 3401, 3680, +0, 3402, 3680, +0, 3402, 3680, +0, 3403, 3680, +0, 3404, 3680, +0, 3405, 3680, +0, 3407, 3680, +0, 3409, 3679, +0, 3412, 3679, +0, 3415, 3679, +0, 3419, 3679, +0, 3425, 3679, +0, 3432, 3679, +0, 3442, 3679, +0, 3455, 3679, +0, 3472, 3679, +0, 3493, 3679, +0, 3520, 3679, +0, 3553, 3679, +0, 3595, 3679, +0, 3644, 3679, +0, 3679, 3653, +0, 3679, 3562, +0, 3679, 3400, +0, 3679, 3015, +0, 3812, 0, +0, 3944, 0, +2684, 4076, 0, +3415, 4095, 0, +0, 3398, 3680, +0, 3398, 3680, +0, 3398, 3680, +0, 3398, 3680, +0, 3399, 3680, +0, 3399, 3680, +0, 3400, 3680, +0, 3401, 3680, +0, 3402, 3680, +0, 3404, 3680, +0, 3406, 3679, +0, 3409, 3679, +0, 3413, 3679, +0, 3417, 3679, +0, 3422, 3679, +0, 3430, 3679, +0, 3440, 3679, +0, 3453, 3679, +0, 3469, 3679, +0, 3490, 3679, +0, 3517, 3679, +0, 3551, 3679, +0, 3593, 3679, +0, 3643, 3679, +0, 3679, 3654, +0, 3679, 3563, +0, 3679, 3401, +0, 3679, 3018, +0, 3811, 0, +0, 3944, 0, +2703, 4076, 0, +3419, 4095, 0, +0, 3393, 3680, +0, 3393, 3680, +0, 3393, 3680, +0, 3394, 3680, +0, 3394, 3680, +0, 3395, 3680, +0, 3395, 3680, +0, 3396, 3680, +0, 3397, 3680, +0, 3399, 3680, +0, 3401, 3679, +0, 3404, 3679, +0, 3408, 3679, +0, 3413, 3678, +0, 3419, 3678, +0, 3426, 3678, +0, 3436, 3678, +0, 3449, 3678, +0, 3466, 3678, +0, 3488, 3678, +0, 3515, 3678, +0, 3548, 3678, +0, 3590, 3678, +0, 3641, 3678, +0, 3678, 3655, +0, 3678, 3564, +0, 3678, 3403, +0, 3678, 3023, +0, 3811, 0, +0, 3943, 0, +2726, 4076, 0, +3424, 4095, 0, +0, 3387, 3680, +0, 3387, 3680, +0, 3387, 3680, +0, 3388, 3680, +0, 3388, 3680, +0, 3388, 3680, +0, 3389, 3680, +0, 3390, 3680, +0, 3392, 3680, +0, 3393, 3680, +0, 3395, 3679, +0, 3398, 3679, +0, 3402, 3679, +0, 3407, 3678, +0, 3414, 3678, +0, 3422, 3678, +0, 3432, 3678, +0, 3445, 3678, +0, 3462, 3678, +0, 3483, 3678, +0, 3511, 3678, +0, 3545, 3678, +0, 3587, 3678, +0, 3638, 3678, +0, 3678, 3657, +0, 3678, 3566, +0, 3678, 3406, +0, 3678, 3029, +0, 3810, 0, +0, 3943, 0, +2756, 4075, 0, +3430, 4095, 0, +0, 3379, 3680, +0, 3379, 3680, +0, 3379, 3680, +0, 3379, 3680, +0, 3380, 3680, +0, 3380, 3680, +0, 3381, 3680, +0, 3382, 3680, +0, 3383, 3680, +0, 3385, 3680, +0, 3387, 3679, +0, 3390, 3679, +0, 3394, 3679, +0, 3400, 3678, +0, 3407, 3678, +0, 3416, 3677, +0, 3426, 3677, +0, 3439, 3677, +0, 3456, 3677, +0, 3478, 3677, +0, 3506, 3677, +0, 3540, 3677, +0, 3583, 3677, +0, 3634, 3677, +0, 3677, 3659, +0, 3677, 3568, +0, 3677, 3410, +0, 3677, 3037, +0, 3810, 0, +0, 3943, 0, +2793, 4075, 0, +3439, 4095, 0, +0, 3367, 3680, +0, 3368, 3680, +0, 3368, 3680, +0, 3368, 3680, +0, 3369, 3680, +0, 3369, 3680, +0, 3370, 3680, +0, 3371, 3680, +0, 3372, 3680, +0, 3374, 3680, +0, 3376, 3679, +0, 3379, 3679, +0, 3384, 3679, +0, 3389, 3678, +0, 3396, 3678, +0, 3405, 3677, +0, 3418, 3676, +0, 3431, 3676, +0, 3448, 3676, +0, 3471, 3676, +0, 3499, 3676, +0, 3534, 3676, +0, 3577, 3676, +0, 3629, 3676, +0, 3676, 3662, +0, 3676, 3572, +0, 3676, 3414, +0, 3676, 3048, +0, 3809, 0, +0, 3942, 0, +2839, 4075, 0, +3450, 4095, 0, +0, 3352, 3680, +0, 3352, 3680, +0, 3353, 3680, +0, 3353, 3680, +0, 3353, 3680, +0, 3354, 3680, +0, 3354, 3680, +0, 3356, 3680, +0, 3357, 3680, +0, 3359, 3680, +0, 3361, 3679, +0, 3364, 3679, +0, 3368, 3679, +0, 3374, 3678, +0, 3381, 3678, +0, 3391, 3677, +0, 3404, 3676, +0, 3420, 3675, +0, 3438, 3675, +0, 3461, 3675, +0, 3490, 3675, +0, 3525, 3675, +0, 3569, 3675, +0, 3622, 3675, +0, 3675, 3665, +0, 3675, 3576, +0, 3675, 3420, +0, 3675, 3061, +0, 3808, 0, +0, 3941, 0, +2893, 4074, 0, +3465, 4095, 0, +0, 3330, 3680, +0, 3331, 3680, +0, 3331, 3680, +0, 3331, 3680, +0, 3332, 3680, +0, 3332, 3680, +0, 3333, 3680, +0, 3334, 3680, +0, 3336, 3680, +0, 3337, 3680, +0, 3340, 3679, +0, 3343, 3679, +0, 3348, 3679, +0, 3354, 3678, +0, 3361, 3678, +0, 3371, 3677, +0, 3385, 3676, +0, 3402, 3675, +0, 3423, 3673, +0, 3447, 3673, +0, 3477, 3673, +0, 3513, 3673, +0, 3558, 3673, +0, 3612, 3673, +0, 3673, 3670, +0, 3673, 3582, +0, 3673, 3429, +0, 3673, 3079, +0, 3807, 0, +0, 3940, 0, +2957, 4073, 0, +3484, 4095, 0, +0, 3300, 3680, +0, 3300, 3680, +0, 3300, 3680, +0, 3301, 3680, +0, 3301, 3680, +0, 3302, 3680, +0, 3303, 3680, +0, 3304, 3680, +0, 3305, 3680, +0, 3307, 3680, +0, 3310, 3679, +0, 3314, 3679, +0, 3318, 3679, +0, 3325, 3678, +0, 3333, 3678, +0, 3344, 3677, +0, 3358, 3676, +0, 3376, 3675, +0, 3399, 3673, +0, 3428, 3670, +0, 3459, 3670, +0, 3497, 3670, +0, 3543, 3670, +0, 3599, 3670, +0, 3664, 3670, +0, 3670, 3589, +0, 3670, 3439, +0, 3670, 3102, +0, 3805, 0, +0, 3939, 0, +3031, 4072, 0, +3509, 4095, 0, +0, 3255, 3680, +0, 3256, 3680, +0, 3256, 3680, +0, 3256, 3680, +0, 3257, 3680, +0, 3258, 3680, +0, 3258, 3680, +0, 3260, 3680, +0, 3261, 3680, +0, 3264, 3680, +0, 3267, 3679, +0, 3271, 3679, +0, 3276, 3679, +0, 3282, 3678, +0, 3291, 3678, +0, 3303, 3677, +0, 3319, 3676, +0, 3338, 3675, +0, 3363, 3673, +0, 3395, 3670, +0, 3434, 3667, +0, 3474, 3667, +0, 3523, 3667, +0, 3581, 3667, +0, 3648, 3667, +0, 3667, 3599, +0, 3667, 3453, +0, 3667, 3131, +0, 3802, 0, +0, 3937, 0, +3113, 4071, 0, +3539, 4095, 0, +0, 3188, 3680, +0, 3188, 3680, +0, 3189, 3680, +0, 3189, 3680, +0, 3190, 3680, +0, 3191, 3680, +0, 3192, 3680, +0, 3193, 3680, +0, 3195, 3680, +0, 3198, 3680, +0, 3201, 3679, +0, 3206, 3679, +0, 3212, 3679, +0, 3220, 3678, +0, 3230, 3678, +0, 3243, 3677, +0, 3261, 3676, +0, 3283, 3675, +0, 3311, 3673, +0, 3346, 3670, +0, 3389, 3667, +0, 3441, 3662, +0, 3494, 3662, +0, 3555, 3662, +0, 3626, 3662, +0, 3662, 3612, +0, 3662, 3471, +0, 3662, 3166, +0, 3799, 0, +1863, 3934, 0, +3205, 4069, 0, +3577, 4095, 0, +0, 3080, 3680, +0, 3080, 3680, +0, 3081, 3680, +0, 3081, 3680, +0, 3082, 3680, +0, 3083, 3680, +0, 3084, 3680, +0, 3086, 3680, +0, 3089, 3680, +0, 3092, 3680, +0, 3096, 3679, +0, 3102, 3679, +0, 3110, 3679, +0, 3119, 3678, +0, 3132, 3678, +0, 3149, 3677, +0, 3170, 3676, +0, 3197, 3675, +0, 3231, 3673, +0, 3273, 3670, +0, 3323, 3667, +0, 3382, 3662, +1663, 3452, 3656, +1663, 3519, 3656, +1663, 3595, 3656, +1663, 3656, 3629, +1663, 3656, 3494, +1663, 3656, 3210, +0, 3794, 1884, +2650, 3931, 0, +3303, 4066, 0, +3623, 4095, 0, +0, 2876, 3680, +0, 2877, 3680, +0, 2877, 3680, +0, 2878, 3680, +0, 2879, 3680, +0, 2881, 3680, +0, 2883, 3680, +0, 2886, 3680, +0, 2890, 3680, +0, 2895, 3680, +0, 2901, 3679, +0, 2910, 3679, +0, 2922, 3679, +0, 2936, 3678, +0, 2955, 3678, +0, 2980, 3677, +0, 3010, 3676, +0, 3048, 3675, +0, 3095, 3673, +0, 3150, 3670, +0, 3215, 3667, +0, 3289, 3662, +1663, 3373, 3656, +2590, 3465, 3648, +2590, 3550, 3648, +2590, 3644, 3648, +2590, 3648, 3523, +2590, 3648, 3262, +1799, 3788, 2422, +2988, 3926, 0, +3409, 4063, 0, +3679, 4095, 0, +0, 2237, 3680, +0, 2239, 3680, +0, 2242, 3680, +0, 2246, 3680, +0, 2251, 3680, +0, 2257, 3680, +0, 2266, 3680, +0, 2277, 3680, +0, 2291, 3680, +0, 2310, 3680, +0, 2333, 3679, +0, 2363, 3679, +0, 2400, 3679, +0, 2445, 3678, +0, 2499, 3678, +0, 2562, 3677, +0, 2636, 3676, +0, 2718, 3675, +0, 2809, 3673, +0, 2908, 3670, +0, 3014, 3667, +0, 3125, 3662, +1663, 3240, 3656, +2590, 3360, 3648, +2940, 3482, 3636, +2940, 3589, 3636, +2940, 3636, 3558, +2940, 3636, 3324, +2722, 3780, 2721, +3229, 3920, 1928, +3520, 4058, 0, +3743, 4095, 0, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3679, +0, 0, 3679, +0, 0, 3679, +0, 0, 3678, +0, 0, 3678, +0, 0, 3677, +0, 0, 3676, +0, 0, 3675, +0, 0, 3673, +0, 1603, 3670, +0, 2388, 3667, +0, 2724, 3662, +1663, 2965, 3656, +2590, 3165, 3648, +2940, 3341, 3636, +3186, 3504, 3620, +3186, 3620, 3603, +3186, 3620, 3396, +3171, 3768, 3072, +3428, 3912, 2854, +3636, 4052, 2063, +3818, 4095, 0, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3680, +0, 0, 3679, +0, 0, 3679, +0, 0, 3679, +0, 0, 3678, +0, 0, 3678, +0, 0, 3677, +0, 0, 3676, +0, 0, 3675, +0, 0, 3673, +0, 0, 3670, +0, 0, 3667, +1753, 0, 3662, +2289, 1663, 3656, +2590, 2592, 3648, +2940, 3038, 3636, +3186, 3315, 3620, +3388, 3531, 3598, +3388, 3598, 3477, +3447, 3752, 3318, +3605, 3900, 3204, +3755, 4044, 2986, +3901, 4095, 2192, +3005, 0, 3680, +3005, 0, 3680, +3005, 0, 3680, +3006, 0, 3680, +3006, 0, 3680, +3006, 0, 3680, +3007, 0, 3680, +3008, 0, 3680, +3009, 0, 3680, +3011, 0, 3680, +3013, 0, 3679, +3015, 0, 3679, +3018, 0, 3679, +3023, 0, 3678, +3029, 0, 3678, +3037, 0, 3677, +3048, 0, 3676, +3061, 0, 3675, +3079, 0, 3673, +3102, 0, 3670, +3131, 0, 3667, +3166, 0, 3662, +3210, 1663, 3656, +3262, 2590, 3648, +3324, 2940, 3636, +3396, 3186, 3620, +3477, 3388, 3598, +3566, 3566, 3566, +3664, 3730, 3520, +3768, 3884, 3450, +3878, 4032, 3336, +3993, 4095, 3118, +3528, 0, 3812, +3528, 0, 3812, +3528, 0, 3812, +3528, 0, 3812, +3528, 0, 3812, +3528, 0, 3812, +3528, 0, 3812, +3529, 0, 3812, +3529, 0, 3812, +3530, 0, 3812, +3530, 0, 3812, +3531, 0, 3812, +3532, 0, 3811, +3534, 0, 3811, +3536, 0, 3810, +3538, 0, 3810, +3542, 0, 3809, +3546, 0, 3808, +3552, 0, 3807, +3561, 0, 3805, +3571, 0, 3802, +3585, 0, 3799, +3603, 0, 3794, +3626, 1799, 3788, +3655, 2721, 3780, +3691, 3072, 3768, +3735, 3318, 3752, +3730, 3520, 3664, +3730, 3609, 3520, +3884, 3867, 3450, +3986, 4032, 3336, +4079, 4095, 3118, +3822, 0, 3944, +3822, 0, 3944, +3822, 0, 3944, +3823, 0, 3944, +3823, 0, 3944, +3823, 0, 3944, +3823, 0, 3944, +3823, 0, 3944, +3823, 0, 3944, +3824, 0, 3944, +3824, 0, 3944, +3824, 0, 3944, +3825, 0, 3944, +3826, 0, 3943, +3827, 0, 3943, +3828, 0, 3943, +3830, 0, 3942, +3832, 0, 3941, +3836, 0, 3940, +3840, 0, 3939, +3846, 0, 3937, +3853, 0, 3934, +3863, 0, 3931, +3877, 0, 3926, +3893, 1928, 3920, +3912, 2854, 3908, +3900, 3204, 3853, +3884, 3450, 3768, +3884, 3450, 3579, +3884, 3660, 3450, +4032, 3955, 3336, +4095, 4095, 3118, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4047, 0, 4076, +4048, 0, 4076, +4048, 0, 4076, +4048, 0, 4076, +4049, 0, 4076, +4049, 0, 4075, +4050, 0, 4075, +4051, 0, 4075, +4053, 0, 4074, +4055, 0, 4073, +4058, 0, 4072, +4061, 0, 4071, +4066, 0, 4069, +4066, 0, 4060, +4063, 0, 4045, +4058, 0, 4023, +4052, 2063, 3992, +4044, 2986, 3947, +4032, 3336, 3878, +4032, 3336, 3737, +4032, 3336, 3435, +4032, 3720, 3336, +4095, 4051, 3118, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4084, +4095, 2192, 4047, +4095, 3118, 3993, +4095, 3118, 3888, +4095, 3118, 3693, +4095, 3118, 3121, +4095, 3791, 3118, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3546, 3812, +0, 3547, 3812, +0, 3549, 3812, +0, 3552, 3812, +0, 3554, 3812, +0, 3559, 3812, +0, 3564, 3812, +0, 3572, 3812, +0, 3581, 3812, +0, 3594, 3812, +0, 3610, 3812, +0, 3631, 3812, +0, 3657, 3812, +0, 3691, 3812, +0, 3732, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3137, +0, 3944, 0, +0, 4076, 0, +2761, 4095, 0, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3546, 3812, +0, 3547, 3812, +0, 3549, 3812, +0, 3551, 3812, +0, 3554, 3812, +0, 3559, 3812, +0, 3564, 3812, +0, 3572, 3812, +0, 3581, 3812, +0, 3594, 3812, +0, 3610, 3812, +0, 3631, 3812, +0, 3657, 3812, +0, 3691, 3812, +0, 3731, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3137, +0, 3944, 0, +0, 4076, 0, +2762, 4095, 0, +0, 3542, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3546, 3812, +0, 3547, 3812, +0, 3549, 3812, +0, 3551, 3812, +0, 3554, 3812, +0, 3559, 3812, +0, 3564, 3812, +0, 3572, 3812, +0, 3581, 3812, +0, 3594, 3812, +0, 3610, 3812, +0, 3631, 3812, +0, 3657, 3812, +0, 3690, 3812, +0, 3731, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3137, +0, 3944, 0, +0, 4076, 0, +2762, 4095, 0, +0, 3542, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3545, 3812, +0, 3547, 3812, +0, 3549, 3812, +0, 3551, 3812, +0, 3554, 3812, +0, 3558, 3812, +0, 3564, 3812, +0, 3571, 3812, +0, 3581, 3812, +0, 3594, 3812, +0, 3610, 3812, +0, 3631, 3812, +0, 3657, 3812, +0, 3690, 3812, +0, 3731, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3138, +0, 3944, 0, +0, 4076, 0, +2764, 4095, 0, +0, 3541, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3547, 3812, +0, 3549, 3812, +0, 3551, 3812, +0, 3554, 3812, +0, 3558, 3812, +0, 3564, 3812, +0, 3571, 3812, +0, 3581, 3812, +0, 3594, 3812, +0, 3610, 3812, +0, 3631, 3812, +0, 3657, 3812, +0, 3690, 3812, +0, 3731, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3138, +0, 3944, 0, +0, 4076, 0, +2765, 4095, 0, +0, 3541, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3547, 3812, +0, 3548, 3812, +0, 3551, 3812, +0, 3554, 3812, +0, 3558, 3812, +0, 3564, 3812, +0, 3571, 3812, +0, 3581, 3812, +0, 3593, 3812, +0, 3609, 3812, +0, 3630, 3812, +0, 3657, 3812, +0, 3690, 3812, +0, 3731, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3138, +0, 3944, 0, +0, 4076, 0, +2767, 4095, 0, +0, 3541, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3542, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3546, 3812, +0, 3548, 3812, +0, 3550, 3812, +0, 3553, 3812, +0, 3558, 3812, +0, 3563, 3812, +0, 3571, 3812, +0, 3580, 3812, +0, 3593, 3812, +0, 3609, 3812, +0, 3630, 3812, +0, 3657, 3812, +0, 3690, 3812, +0, 3731, 3812, +0, 3781, 3812, +0, 3812, 3783, +0, 3812, 3691, +0, 3812, 3528, +0, 3812, 3139, +0, 3944, 0, +0, 4076, 0, +2770, 4095, 0, +0, 3540, 3812, +0, 3540, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3546, 3812, +0, 3548, 3812, +0, 3550, 3812, +0, 3553, 3812, +0, 3557, 3812, +0, 3563, 3812, +0, 3570, 3812, +0, 3580, 3812, +0, 3593, 3812, +0, 3609, 3812, +0, 3630, 3812, +0, 3656, 3812, +0, 3690, 3812, +0, 3730, 3812, +0, 3780, 3812, +0, 3812, 3784, +0, 3812, 3691, +0, 3812, 3529, +0, 3812, 3139, +0, 3944, 0, +0, 4076, 0, +2773, 4095, 0, +0, 3540, 3812, +0, 3540, 3812, +0, 3540, 3812, +0, 3540, 3812, +0, 3540, 3812, +0, 3541, 3812, +0, 3541, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3545, 3812, +0, 3547, 3812, +0, 3549, 3812, +0, 3552, 3812, +0, 3557, 3812, +0, 3562, 3812, +0, 3570, 3812, +0, 3579, 3812, +0, 3592, 3812, +0, 3608, 3812, +0, 3629, 3812, +0, 3656, 3812, +0, 3689, 3812, +0, 3730, 3812, +0, 3780, 3812, +0, 3812, 3784, +0, 3812, 3691, +0, 3812, 3529, +0, 3812, 3140, +0, 3944, 0, +0, 4076, 0, +2778, 4095, 0, +0, 3538, 3812, +0, 3538, 3812, +0, 3539, 3812, +0, 3539, 3812, +0, 3539, 3812, +0, 3540, 3812, +0, 3540, 3812, +0, 3541, 3812, +0, 3542, 3812, +0, 3543, 3812, +0, 3544, 3812, +0, 3546, 3812, +0, 3548, 3812, +0, 3552, 3812, +0, 3556, 3812, +0, 3562, 3812, +0, 3569, 3812, +0, 3579, 3812, +0, 3591, 3812, +0, 3607, 3812, +0, 3629, 3812, +0, 3655, 3812, +0, 3689, 3812, +0, 3729, 3812, +0, 3779, 3812, +0, 3812, 3784, +0, 3812, 3692, +0, 3812, 3530, +0, 3812, 3141, +0, 3944, 0, +0, 4076, 0, +2785, 4095, 0, +0, 3537, 3812, +0, 3537, 3812, +0, 3537, 3812, +0, 3538, 3812, +0, 3538, 3812, +0, 3538, 3812, +0, 3539, 3812, +0, 3540, 3812, +0, 3540, 3812, +0, 3541, 3812, +0, 3543, 3812, +0, 3545, 3812, +0, 3547, 3812, +0, 3551, 3812, +0, 3555, 3812, +0, 3561, 3812, +0, 3568, 3812, +0, 3577, 3812, +0, 3590, 3812, +0, 3606, 3812, +0, 3628, 3812, +0, 3654, 3812, +0, 3688, 3812, +0, 3729, 3812, +0, 3778, 3812, +0, 3812, 3784, +0, 3812, 3692, +0, 3812, 3530, +0, 3812, 3143, +0, 3944, 0, +0, 4076, 0, +2793, 4095, 0, +0, 3535, 3812, +0, 3536, 3812, +0, 3536, 3812, +0, 3536, 3812, +0, 3536, 3812, +0, 3537, 3812, +0, 3537, 3812, +0, 3538, 3812, +0, 3538, 3812, +0, 3540, 3812, +0, 3541, 3812, +0, 3544, 3812, +0, 3546, 3812, +0, 3549, 3812, +0, 3553, 3812, +0, 3559, 3812, +0, 3566, 3812, +0, 3576, 3812, +0, 3589, 3812, +0, 3605, 3812, +0, 3626, 3812, +0, 3653, 3812, +0, 3687, 3812, +0, 3728, 3812, +0, 3777, 3812, +0, 3812, 3785, +0, 3812, 3693, +0, 3812, 3531, +0, 3812, 3145, +0, 3944, 0, +0, 4076, 0, +2804, 4095, 0, +0, 3533, 3812, +0, 3533, 3812, +0, 3533, 3812, +0, 3533, 3812, +0, 3534, 3812, +0, 3534, 3812, +0, 3534, 3812, +0, 3535, 3812, +0, 3536, 3812, +0, 3537, 3812, +0, 3539, 3812, +0, 3541, 3812, +0, 3544, 3811, +0, 3547, 3811, +0, 3552, 3811, +0, 3557, 3811, +0, 3564, 3811, +0, 3574, 3811, +0, 3587, 3811, +0, 3604, 3811, +0, 3625, 3811, +0, 3652, 3811, +0, 3685, 3811, +0, 3727, 3811, +0, 3777, 3811, +0, 3811, 3785, +0, 3811, 3694, +0, 3811, 3532, +0, 3811, 3147, +0, 3944, 0, +0, 4076, 0, +2818, 4095, 0, +0, 3530, 3812, +0, 3530, 3812, +0, 3530, 3812, +0, 3530, 3812, +0, 3530, 3812, +0, 3531, 3812, +0, 3531, 3812, +0, 3532, 3812, +0, 3533, 3812, +0, 3534, 3812, +0, 3536, 3812, +0, 3538, 3812, +0, 3541, 3811, +0, 3545, 3811, +0, 3549, 3811, +0, 3554, 3811, +0, 3562, 3811, +0, 3572, 3811, +0, 3585, 3811, +0, 3601, 3811, +0, 3622, 3811, +0, 3650, 3811, +0, 3683, 3811, +0, 3725, 3811, +0, 3775, 3811, +0, 3811, 3786, +0, 3811, 3695, +0, 3811, 3534, +0, 3811, 3151, +0, 3943, 0, +0, 4076, 0, +2837, 4095, 0, +0, 3525, 3812, +0, 3525, 3812, +0, 3525, 3812, +0, 3526, 3812, +0, 3526, 3812, +0, 3526, 3812, +0, 3527, 3812, +0, 3528, 3812, +0, 3528, 3812, +0, 3530, 3812, +0, 3531, 3812, +0, 3533, 3812, +0, 3536, 3811, +0, 3540, 3811, +0, 3545, 3810, +0, 3551, 3810, +0, 3559, 3810, +0, 3569, 3810, +0, 3582, 3810, +0, 3598, 3810, +0, 3620, 3810, +0, 3647, 3810, +0, 3680, 3810, +0, 3722, 3810, +0, 3773, 3810, +0, 3810, 3787, +0, 3810, 3696, +0, 3810, 3536, +0, 3810, 3155, +0, 3943, 0, +0, 4075, 0, +2861, 4095, 0, +0, 3519, 3812, +0, 3519, 3812, +0, 3519, 3812, +0, 3520, 3812, +0, 3520, 3812, +0, 3520, 3812, +0, 3521, 3812, +0, 3521, 3812, +0, 3522, 3812, +0, 3523, 3812, +0, 3525, 3812, +0, 3528, 3812, +0, 3530, 3811, +0, 3534, 3811, +0, 3540, 3810, +0, 3547, 3810, +0, 3554, 3810, +0, 3564, 3810, +0, 3577, 3810, +0, 3594, 3810, +0, 3616, 3810, +0, 3643, 3810, +0, 3677, 3810, +0, 3719, 3810, +0, 3770, 3810, +0, 3810, 3789, +0, 3810, 3698, +0, 3810, 3538, +0, 3810, 3161, +0, 3943, 0, +0, 4075, 0, +2890, 4095, 0, +0, 3511, 3812, +0, 3511, 3812, +0, 3511, 3812, +0, 3511, 3812, +0, 3511, 3812, +0, 3512, 3812, +0, 3513, 3812, +0, 3513, 3812, +0, 3514, 3812, +0, 3515, 3812, +0, 3517, 3812, +0, 3520, 3812, +0, 3522, 3811, +0, 3526, 3811, +0, 3532, 3810, +0, 3539, 3810, +0, 3548, 3809, +0, 3558, 3809, +0, 3571, 3809, +0, 3588, 3809, +0, 3610, 3809, +0, 3638, 3809, +0, 3672, 3809, +0, 3715, 3809, +0, 3766, 3809, +0, 3809, 3791, +0, 3809, 3700, +0, 3809, 3542, +0, 3809, 3169, +0, 3942, 0, +0, 4075, 0, +2927, 4095, 0, +0, 3499, 3812, +0, 3499, 3812, +0, 3500, 3812, +0, 3500, 3812, +0, 3500, 3812, +0, 3501, 3812, +0, 3501, 3812, +0, 3502, 3812, +0, 3503, 3812, +0, 3504, 3812, +0, 3506, 3812, +0, 3508, 3812, +0, 3511, 3811, +0, 3516, 3811, +0, 3521, 3810, +0, 3528, 3810, +0, 3537, 3809, +0, 3550, 3808, +0, 3563, 3808, +0, 3581, 3808, +0, 3603, 3808, +0, 3631, 3808, +0, 3666, 3808, +0, 3709, 3808, +0, 3761, 3808, +0, 3808, 3794, +0, 3808, 3704, +0, 3808, 3546, +0, 3808, 3180, +0, 3941, 0, +0, 4074, 0, +2973, 4095, 0, +0, 3484, 3812, +0, 3484, 3812, +0, 3484, 3812, +0, 3485, 3812, +0, 3485, 3812, +0, 3485, 3812, +0, 3486, 3812, +0, 3487, 3812, +0, 3488, 3812, +0, 3489, 3812, +0, 3491, 3812, +0, 3493, 3812, +0, 3496, 3811, +0, 3501, 3811, +0, 3506, 3810, +0, 3514, 3810, +0, 3523, 3809, +0, 3536, 3808, +0, 3552, 3807, +0, 3570, 3807, +0, 3593, 3807, +0, 3622, 3807, +0, 3657, 3807, +0, 3701, 3807, +0, 3754, 3807, +0, 3807, 3797, +0, 3807, 3708, +0, 3807, 3552, +0, 3807, 3194, +0, 3940, 0, +0, 4073, 0, +3027, 4095, 0, +0, 3462, 3812, +0, 3462, 3812, +0, 3463, 3812, +0, 3463, 3812, +0, 3463, 3812, +0, 3464, 3812, +0, 3464, 3812, +0, 3465, 3812, +0, 3466, 3812, +0, 3468, 3812, +0, 3469, 3812, +0, 3472, 3812, +0, 3475, 3811, +0, 3480, 3811, +0, 3486, 3810, +0, 3493, 3810, +0, 3503, 3809, +0, 3517, 3808, +0, 3534, 3807, +0, 3556, 3805, +0, 3579, 3805, +0, 3609, 3805, +0, 3646, 3805, +0, 3690, 3805, +0, 3744, 3805, +0, 3805, 3802, +0, 3805, 3714, +0, 3805, 3561, +0, 3805, 3211, +0, 3939, 0, +0, 4072, 0, +3090, 4095, 0, +0, 3432, 3812, +0, 3432, 3812, +0, 3432, 3812, +0, 3432, 3812, +0, 3433, 3812, +0, 3433, 3812, +0, 3434, 3812, +0, 3435, 3812, +0, 3436, 3812, +0, 3437, 3812, +0, 3439, 3812, +0, 3442, 3812, +0, 3446, 3811, +0, 3450, 3811, +0, 3457, 3810, +0, 3465, 3810, +0, 3475, 3809, +0, 3490, 3808, +0, 3508, 3807, +0, 3531, 3805, +0, 3560, 3802, +0, 3591, 3802, +0, 3629, 3802, +0, 3676, 3802, +0, 3731, 3802, +0, 3796, 3802, +0, 3802, 3721, +0, 3802, 3571, +0, 3802, 3234, +0, 3937, 0, +0, 4071, 0, +3164, 4095, 0, +0, 3387, 3812, +0, 3388, 3812, +0, 3388, 3812, +0, 3388, 3812, +0, 3388, 3812, +0, 3389, 3812, +0, 3390, 3812, +0, 3391, 3812, +0, 3392, 3812, +0, 3394, 3812, +0, 3396, 3812, +0, 3399, 3812, +0, 3403, 3811, +0, 3408, 3811, +0, 3415, 3810, +0, 3424, 3810, +0, 3435, 3809, +0, 3451, 3808, +0, 3470, 3807, +0, 3495, 3805, +0, 3527, 3802, +0, 3566, 3799, +0, 3606, 3799, +0, 3655, 3799, +0, 3713, 3799, +0, 3781, 3799, +0, 3799, 3731, +0, 3799, 3585, +0, 3799, 3262, +0, 3934, 0, +0, 4069, 0, +3246, 4095, 0, +0, 3320, 3812, +0, 3321, 3812, +0, 3321, 3812, +0, 3321, 3812, +0, 3322, 3812, +0, 3322, 3812, +0, 3323, 3812, +0, 3324, 3812, +0, 3326, 3812, +0, 3328, 3812, +0, 3330, 3812, +0, 3333, 3812, +0, 3338, 3811, +0, 3344, 3811, +0, 3352, 3810, +0, 3362, 3810, +0, 3376, 3809, +0, 3393, 3808, +0, 3415, 3807, +0, 3443, 3805, +0, 3479, 3802, +0, 3522, 3799, +0, 3574, 3794, +0, 3626, 3794, +0, 3687, 3794, +0, 3759, 3794, +0, 3794, 3745, +0, 3794, 3603, +0, 3794, 3298, +0, 3931, 0, +1985, 4066, 0, +3337, 4095, 0, +0, 3211, 3812, +0, 3212, 3812, +0, 3212, 3812, +0, 3213, 3812, +0, 3213, 3812, +0, 3214, 3812, +0, 3215, 3812, +0, 3216, 3812, +0, 3218, 3812, +0, 3221, 3812, +0, 3224, 3812, +0, 3228, 3812, +0, 3234, 3811, +0, 3241, 3811, +0, 3251, 3810, +0, 3264, 3810, +0, 3281, 3809, +0, 3302, 3808, +0, 3329, 3807, +0, 3363, 3805, +0, 3405, 3802, +0, 3455, 3799, +0, 3515, 3794, +1799, 3584, 3788, +1799, 3651, 3788, +1799, 3728, 3788, +1799, 3788, 3761, +1799, 3788, 3626, +1799, 3788, 3342, +0, 3926, 2023, +2781, 4063, 0, +3436, 4095, 0, +0, 3008, 3812, +0, 3009, 3812, +0, 3009, 3812, +0, 3010, 3812, +0, 3011, 3812, +0, 3012, 3812, +0, 3014, 3812, +0, 3016, 3812, +0, 3019, 3812, +0, 3023, 3812, +0, 3027, 3812, +0, 3034, 3812, +0, 3043, 3811, +0, 3054, 3811, +0, 3069, 3810, +0, 3088, 3810, +0, 3112, 3809, +0, 3143, 3808, +0, 3181, 3807, +0, 3227, 3805, +0, 3282, 3802, +0, 3347, 3799, +0, 3421, 3794, +1799, 3505, 3788, +2721, 3597, 3780, +2721, 3682, 3780, +2721, 3776, 3780, +2721, 3780, 3655, +2721, 3780, 3394, +1928, 3920, 2556, +3119, 4058, 0, +3541, 4095, 0, +0, 2367, 3812, +0, 2369, 3812, +0, 2371, 3812, +0, 2374, 3812, +0, 2377, 3812, +0, 2382, 3812, +0, 2389, 3812, +0, 2397, 3812, +0, 2408, 3812, +0, 2422, 3812, +0, 2441, 3812, +0, 2465, 3812, +0, 2494, 3811, +0, 2531, 3811, +0, 2576, 3810, +0, 2631, 3810, +0, 2694, 3809, +0, 2767, 3808, +0, 2850, 3807, +0, 2941, 3805, +0, 3040, 3802, +0, 3145, 3799, +0, 3256, 3794, +1799, 3372, 3788, +2721, 3492, 3780, +3072, 3614, 3768, +3072, 3721, 3768, +3072, 3768, 3691, +3072, 3768, 3456, +2854, 3912, 2854, +3361, 4052, 2063, +3653, 4095, 0, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3811, +0, 0, 3811, +0, 0, 3810, +0, 0, 3810, +0, 0, 3809, +0, 0, 3808, +0, 0, 3807, +0, 0, 3805, +0, 1737, 3802, +0, 2519, 3799, +0, 2856, 3794, +1799, 3097, 3788, +2721, 3296, 3780, +3072, 3473, 3768, +3318, 3636, 3752, +3318, 3752, 3735, +3318, 3752, 3528, +3302, 3900, 3204, +3561, 4044, 2986, +3768, 4095, 2192, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3812, +0, 0, 3811, +0, 0, 3811, +0, 0, 3810, +0, 0, 3810, +0, 0, 3809, +0, 0, 3808, +0, 0, 3807, +0, 0, 3805, +0, 0, 3802, +0, 0, 3799, +1884, 0, 3794, +2422, 1799, 3788, +2721, 2722, 3780, +3072, 3171, 3768, +3318, 3447, 3752, +3520, 3664, 3730, +3520, 3730, 3609, +3579, 3884, 3450, +3737, 4032, 3336, +3888, 4095, 3118, +3137, 0, 3812, +3137, 0, 3812, +3137, 0, 3812, +3138, 0, 3812, +3138, 0, 3812, +3138, 0, 3812, +3139, 0, 3812, +3139, 0, 3812, +3140, 0, 3812, +3141, 0, 3812, +3143, 0, 3812, +3145, 0, 3812, +3147, 0, 3811, +3151, 0, 3811, +3155, 0, 3810, +3161, 0, 3810, +3169, 0, 3809, +3180, 0, 3808, +3194, 0, 3807, +3211, 0, 3805, +3234, 0, 3802, +3262, 0, 3799, +3298, 0, 3794, +3342, 1799, 3788, +3394, 2721, 3780, +3456, 3072, 3768, +3528, 3318, 3752, +3609, 3520, 3730, +3698, 3698, 3698, +3796, 3862, 3652, +3900, 4016, 3583, +4010, 4095, 3469, +3660, 0, 3944, +3660, 0, 3944, +3660, 0, 3944, +3660, 0, 3944, +3660, 0, 3944, +3660, 0, 3944, +3660, 0, 3944, +3660, 0, 3944, +3661, 0, 3944, +3661, 0, 3944, +3661, 0, 3944, +3662, 0, 3944, +3663, 0, 3944, +3664, 0, 3943, +3665, 0, 3943, +3667, 0, 3943, +3670, 0, 3942, +3674, 0, 3941, +3678, 0, 3940, +3685, 0, 3939, +3692, 0, 3937, +3703, 0, 3934, +3717, 0, 3931, +3735, 0, 3926, +3758, 1928, 3920, +3787, 2854, 3912, +3822, 3204, 3900, +3867, 3450, 3884, +3862, 3652, 3796, +3862, 3741, 3652, +4016, 3999, 3583, +4095, 4095, 3469, +3954, 0, 4076, +3954, 0, 4076, +3954, 0, 4076, +3954, 0, 4076, +3955, 0, 4076, +3955, 0, 4076, +3955, 0, 4076, +3955, 0, 4076, +3955, 0, 4076, +3955, 0, 4076, +3955, 0, 4076, +3956, 0, 4076, +3956, 0, 4076, +3957, 0, 4076, +3958, 0, 4075, +3959, 0, 4075, +3960, 0, 4075, +3962, 0, 4074, +3964, 0, 4073, +3968, 0, 4072, +3972, 0, 4071, +3978, 0, 4069, +3985, 0, 4066, +3995, 0, 4063, +4008, 0, 4058, +4025, 2063, 4052, +4044, 2986, 4040, +4032, 3336, 3986, +4016, 3583, 3900, +4016, 3583, 3711, +4016, 3792, 3583, +4095, 4087, 3469, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 2192, 4095, +4095, 3118, 4079, +4095, 3469, 4010, +4095, 3469, 3869, +4095, 3469, 3568, +4095, 3853, 3469, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3678, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3683, 3944, +0, 3687, 3944, +0, 3691, 3944, +0, 3696, 3944, +0, 3704, 3944, +0, 3713, 3944, +0, 3726, 3944, +0, 3742, 3944, +0, 3763, 3944, +0, 3790, 3944, +0, 3823, 3944, +0, 3864, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3822, +0, 3944, 3660, +0, 3944, 3269, +0, 4076, 0, +0, 4095, 0, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3678, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3683, 3944, +0, 3687, 3944, +0, 3691, 3944, +0, 3696, 3944, +0, 3704, 3944, +0, 3713, 3944, +0, 3726, 3944, +0, 3742, 3944, +0, 3763, 3944, +0, 3790, 3944, +0, 3823, 3944, +0, 3864, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3822, +0, 3944, 3660, +0, 3944, 3269, +0, 4076, 0, +0, 4095, 0, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3678, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3683, 3944, +0, 3687, 3944, +0, 3691, 3944, +0, 3696, 3944, +0, 3704, 3944, +0, 3713, 3944, +0, 3726, 3944, +0, 3742, 3944, +0, 3763, 3944, +0, 3790, 3944, +0, 3823, 3944, +0, 3863, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3822, +0, 3944, 3660, +0, 3944, 3269, +0, 4076, 0, +0, 4095, 0, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3678, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3683, 3944, +0, 3686, 3944, +0, 3691, 3944, +0, 3696, 3944, +0, 3703, 3944, +0, 3713, 3944, +0, 3726, 3944, +0, 3742, 3944, +0, 3763, 3944, +0, 3790, 3944, +0, 3822, 3944, +0, 3863, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3823, +0, 3944, 3660, +0, 3944, 3269, +0, 4076, 0, +0, 4095, 0, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3678, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3683, 3944, +0, 3686, 3944, +0, 3691, 3944, +0, 3696, 3944, +0, 3703, 3944, +0, 3713, 3944, +0, 3726, 3944, +0, 3742, 3944, +0, 3763, 3944, +0, 3789, 3944, +0, 3822, 3944, +0, 3863, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3823, +0, 3944, 3660, +0, 3944, 3270, +0, 4076, 0, +0, 4095, 0, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3683, 3944, +0, 3686, 3944, +0, 3690, 3944, +0, 3696, 3944, +0, 3703, 3944, +0, 3713, 3944, +0, 3725, 3944, +0, 3742, 3944, +0, 3763, 3944, +0, 3789, 3944, +0, 3822, 3944, +0, 3863, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3823, +0, 3944, 3660, +0, 3944, 3270, +0, 4076, 0, +0, 4095, 0, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3679, 3944, +0, 3680, 3944, +0, 3683, 3944, +0, 3686, 3944, +0, 3690, 3944, +0, 3696, 3944, +0, 3703, 3944, +0, 3713, 3944, +0, 3725, 3944, +0, 3741, 3944, +0, 3762, 3944, +0, 3789, 3944, +0, 3822, 3944, +0, 3863, 3944, +0, 3913, 3944, +0, 3944, 3915, +0, 3944, 3823, +0, 3944, 3660, +0, 3944, 3270, +0, 4076, 0, +0, 4095, 0, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3678, 3944, +0, 3680, 3944, +0, 3682, 3944, +0, 3686, 3944, +0, 3690, 3944, +0, 3695, 3944, +0, 3703, 3944, +0, 3712, 3944, +0, 3725, 3944, +0, 3741, 3944, +0, 3762, 3944, +0, 3789, 3944, +0, 3822, 3944, +0, 3863, 3944, +0, 3912, 3944, +0, 3944, 3915, +0, 3944, 3823, +0, 3944, 3660, +0, 3944, 3271, +0, 4076, 0, +0, 4095, 0, +0, 3672, 3944, +0, 3672, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3678, 3944, +0, 3680, 3944, +0, 3682, 3944, +0, 3685, 3944, +0, 3689, 3944, +0, 3695, 3944, +0, 3702, 3944, +0, 3712, 3944, +0, 3725, 3944, +0, 3741, 3944, +0, 3762, 3944, +0, 3788, 3944, +0, 3822, 3944, +0, 3863, 3944, +0, 3912, 3944, +0, 3944, 3915, +0, 3944, 3823, +0, 3944, 3661, +0, 3944, 3271, +0, 4076, 0, +0, 4095, 0, +0, 3671, 3944, +0, 3671, 3944, +0, 3672, 3944, +0, 3672, 3944, +0, 3672, 3944, +0, 3672, 3944, +0, 3673, 3944, +0, 3673, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3677, 3944, +0, 3679, 3944, +0, 3681, 3944, +0, 3685, 3944, +0, 3689, 3944, +0, 3694, 3944, +0, 3702, 3944, +0, 3711, 3944, +0, 3724, 3944, +0, 3740, 3944, +0, 3761, 3944, +0, 3788, 3944, +0, 3821, 3944, +0, 3862, 3944, +0, 3912, 3944, +0, 3944, 3916, +0, 3944, 3824, +0, 3944, 3661, +0, 3944, 3272, +0, 4076, 0, +0, 4095, 0, +0, 3670, 3944, +0, 3671, 3944, +0, 3671, 3944, +0, 3671, 3944, +0, 3671, 3944, +0, 3671, 3944, +0, 3672, 3944, +0, 3672, 3944, +0, 3673, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3676, 3944, +0, 3678, 3944, +0, 3680, 3944, +0, 3684, 3944, +0, 3688, 3944, +0, 3694, 3944, +0, 3701, 3944, +0, 3711, 3944, +0, 3723, 3944, +0, 3740, 3944, +0, 3761, 3944, +0, 3787, 3944, +0, 3820, 3944, +0, 3862, 3944, +0, 3911, 3944, +0, 3944, 3916, +0, 3944, 3824, +0, 3944, 3661, +0, 3944, 3273, +0, 4076, 0, +0, 4095, 0, +0, 3669, 3944, +0, 3669, 3944, +0, 3669, 3944, +0, 3669, 3944, +0, 3670, 3944, +0, 3670, 3944, +0, 3670, 3944, +0, 3671, 3944, +0, 3671, 3944, +0, 3673, 3944, +0, 3674, 3944, +0, 3675, 3944, +0, 3677, 3944, +0, 3679, 3944, +0, 3683, 3944, +0, 3687, 3944, +0, 3692, 3944, +0, 3700, 3944, +0, 3710, 3944, +0, 3722, 3944, +0, 3739, 3944, +0, 3760, 3944, +0, 3786, 3944, +0, 3820, 3944, +0, 3861, 3944, +0, 3910, 3944, +0, 3944, 3916, +0, 3944, 3824, +0, 3944, 3662, +0, 3944, 3275, +0, 4076, 0, +0, 4095, 0, +0, 3667, 3944, +0, 3667, 3944, +0, 3668, 3944, +0, 3668, 3944, +0, 3668, 3944, +0, 3668, 3944, +0, 3668, 3944, +0, 3669, 3944, +0, 3670, 3944, +0, 3671, 3944, +0, 3672, 3944, +0, 3673, 3944, +0, 3676, 3944, +0, 3678, 3944, +0, 3681, 3944, +0, 3685, 3944, +0, 3691, 3944, +0, 3699, 3944, +0, 3708, 3944, +0, 3721, 3944, +0, 3737, 3944, +0, 3758, 3944, +0, 3785, 3944, +0, 3819, 3944, +0, 3860, 3944, +0, 3910, 3944, +0, 3944, 3917, +0, 3944, 3825, +0, 3944, 3663, +0, 3944, 3277, +0, 4076, 0, +0, 4095, 0, +0, 3665, 3944, +0, 3665, 3944, +0, 3665, 3944, +0, 3665, 3944, +0, 3665, 3944, +0, 3666, 3944, +0, 3666, 3944, +0, 3666, 3944, +0, 3667, 3944, +0, 3668, 3944, +0, 3669, 3944, +0, 3671, 3944, +0, 3673, 3944, +0, 3676, 3943, +0, 3679, 3943, +0, 3683, 3943, +0, 3689, 3943, +0, 3697, 3943, +0, 3706, 3943, +0, 3719, 3943, +0, 3736, 3943, +0, 3757, 3943, +0, 3784, 3943, +0, 3817, 3943, +0, 3859, 3943, +0, 3909, 3943, +0, 3943, 3917, +0, 3943, 3826, +0, 3943, 3664, +0, 3943, 3279, +0, 4076, 0, +0, 4095, 0, +0, 3661, 3944, +0, 3662, 3944, +0, 3662, 3944, +0, 3662, 3944, +0, 3662, 3944, +0, 3662, 3944, +0, 3663, 3944, +0, 3663, 3944, +0, 3664, 3944, +0, 3665, 3944, +0, 3666, 3944, +0, 3668, 3944, +0, 3670, 3944, +0, 3673, 3943, +0, 3677, 3943, +0, 3681, 3943, +0, 3687, 3943, +0, 3694, 3943, +0, 3704, 3943, +0, 3717, 3943, +0, 3733, 3943, +0, 3755, 3943, +0, 3781, 3943, +0, 3815, 3943, +0, 3857, 3943, +0, 3907, 3943, +0, 3943, 3918, +0, 3943, 3827, +0, 3943, 3665, +0, 3943, 3283, +0, 4075, 0, +0, 4095, 0, +0, 3657, 3944, +0, 3657, 3944, +0, 3657, 3944, +0, 3657, 3944, +0, 3658, 3944, +0, 3658, 3944, +0, 3658, 3944, +0, 3659, 3944, +0, 3659, 3944, +0, 3661, 3944, +0, 3662, 3944, +0, 3663, 3944, +0, 3666, 3944, +0, 3668, 3943, +0, 3672, 3943, +0, 3677, 3943, +0, 3683, 3943, +0, 3691, 3943, +0, 3701, 3943, +0, 3713, 3943, +0, 3730, 3943, +0, 3752, 3943, +0, 3779, 3943, +0, 3813, 3943, +0, 3854, 3943, +0, 3905, 3943, +0, 3943, 3920, +0, 3943, 3828, +0, 3943, 3667, +0, 3943, 3287, +0, 4075, 0, +0, 4095, 0, +0, 3651, 3944, +0, 3651, 3944, +0, 3651, 3944, +0, 3651, 3944, +0, 3652, 3944, +0, 3652, 3944, +0, 3652, 3944, +0, 3653, 3944, +0, 3653, 3944, +0, 3654, 3944, +0, 3656, 3944, +0, 3657, 3944, +0, 3659, 3944, +0, 3662, 3943, +0, 3666, 3943, +0, 3672, 3943, +0, 3679, 3942, +0, 3686, 3942, +0, 3696, 3942, +0, 3709, 3942, +0, 3726, 3942, +0, 3748, 3942, +0, 3775, 3942, +0, 3809, 3942, +0, 3851, 3942, +0, 3902, 3942, +0, 3942, 3921, +0, 3942, 3830, +0, 3942, 3670, +0, 3942, 3293, +0, 4075, 0, +0, 4095, 0, +0, 3643, 3944, +0, 3643, 3944, +0, 3643, 3944, +0, 3643, 3944, +0, 3643, 3944, +0, 3644, 3944, +0, 3644, 3944, +0, 3645, 3944, +0, 3645, 3944, +0, 3646, 3944, +0, 3648, 3944, +0, 3649, 3944, +0, 3651, 3944, +0, 3655, 3943, +0, 3659, 3943, +0, 3664, 3943, +0, 3671, 3942, +0, 3680, 3941, +0, 3690, 3941, +0, 3703, 3941, +0, 3720, 3941, +0, 3742, 3941, +0, 3770, 3941, +0, 3805, 3941, +0, 3847, 3941, +0, 3898, 3941, +0, 3941, 3923, +0, 3941, 3832, +0, 3941, 3674, +0, 3941, 3302, +0, 4074, 0, +0, 4095, 0, +0, 3631, 3944, +0, 3632, 3944, +0, 3632, 3944, +0, 3632, 3944, +0, 3632, 3944, +0, 3632, 3944, +0, 3633, 3944, +0, 3633, 3944, +0, 3634, 3944, +0, 3635, 3944, +0, 3636, 3944, +0, 3638, 3944, +0, 3640, 3944, +0, 3644, 3943, +0, 3648, 3943, +0, 3653, 3943, +0, 3660, 3942, +0, 3669, 3941, +0, 3682, 3940, +0, 3695, 3940, +0, 3713, 3940, +0, 3735, 3940, +0, 3763, 3940, +0, 3798, 3940, +0, 3841, 3940, +0, 3893, 3940, +0, 3940, 3926, +0, 3940, 3836, +0, 3940, 3678, +0, 3940, 3312, +0, 4073, 0, +0, 4095, 0, +0, 3616, 3944, +0, 3616, 3944, +0, 3616, 3944, +0, 3616, 3944, +0, 3617, 3944, +0, 3617, 3944, +0, 3617, 3944, +0, 3618, 3944, +0, 3619, 3944, +0, 3620, 3944, +0, 3621, 3944, +0, 3623, 3944, +0, 3625, 3944, +0, 3628, 3943, +0, 3632, 3943, +0, 3638, 3943, +0, 3646, 3942, +0, 3655, 3941, +0, 3668, 3940, +0, 3684, 3939, +0, 3702, 3939, +0, 3725, 3939, +0, 3754, 3939, +0, 3790, 3939, +0, 3833, 3939, +0, 3886, 3939, +0, 3939, 3929, +0, 3939, 3840, +0, 3939, 3685, +0, 3939, 3326, +0, 4072, 0, +0, 4095, 0, +0, 3594, 3944, +0, 3595, 3944, +0, 3595, 3944, +0, 3595, 3944, +0, 3595, 3944, +0, 3595, 3944, +0, 3596, 3944, +0, 3596, 3944, +0, 3597, 3944, +0, 3598, 3944, +0, 3600, 3944, +0, 3602, 3944, +0, 3604, 3944, +0, 3607, 3943, +0, 3612, 3943, +0, 3618, 3943, +0, 3626, 3942, +0, 3635, 3941, +0, 3649, 3940, +0, 3666, 3939, +0, 3688, 3937, +0, 3711, 3937, +0, 3741, 3937, +0, 3777, 3937, +0, 3822, 3937, +0, 3876, 3937, +0, 3937, 3934, +0, 3937, 3846, +0, 3937, 3692, +0, 3937, 3344, +0, 4071, 0, +0, 4095, 0, +0, 3564, 3944, +0, 3564, 3944, +0, 3564, 3944, +0, 3564, 3944, +0, 3564, 3944, +0, 3565, 3944, +0, 3565, 3944, +0, 3566, 3944, +0, 3567, 3944, +0, 3568, 3944, +0, 3569, 3944, +0, 3571, 3944, +0, 3574, 3944, +0, 3578, 3943, +0, 3583, 3943, +0, 3589, 3943, +0, 3597, 3942, +0, 3608, 3941, +0, 3622, 3940, +0, 3640, 3939, +0, 3663, 3937, +0, 3692, 3934, +0, 3723, 3934, +0, 3761, 3934, +0, 3808, 3934, +0, 3863, 3934, +0, 3928, 3934, +0, 3934, 3853, +0, 3934, 3703, +0, 3934, 3366, +0, 4069, 0, +0, 4095, 0, +0, 3520, 3944, +0, 3520, 3944, +0, 3520, 3944, +0, 3520, 3944, +0, 3520, 3944, +0, 3521, 3944, +0, 3521, 3944, +0, 3522, 3944, +0, 3523, 3944, +0, 3524, 3944, +0, 3526, 3944, +0, 3528, 3944, +0, 3531, 3944, +0, 3535, 3943, +0, 3540, 3943, +0, 3547, 3943, +0, 3556, 3942, +0, 3568, 3941, +0, 3583, 3940, +0, 3603, 3939, +0, 3628, 3937, +0, 3659, 3934, +0, 3698, 3931, +0, 3738, 3931, +0, 3787, 3931, +0, 3845, 3931, +0, 3913, 3931, +0, 3931, 3863, +0, 3931, 3717, +0, 3931, 3395, +0, 4066, 0, +0, 4095, 0, +0, 3452, 3944, +0, 3452, 3944, +0, 3453, 3944, +0, 3453, 3944, +0, 3453, 3944, +0, 3454, 3944, +0, 3454, 3944, +0, 3455, 3944, +0, 3456, 3944, +0, 3458, 3944, +0, 3459, 3944, +0, 3462, 3944, +0, 3466, 3944, +0, 3470, 3943, +0, 3476, 3943, +0, 3484, 3943, +0, 3494, 3942, +0, 3507, 3941, +0, 3525, 3940, +0, 3547, 3939, +0, 3575, 3937, +0, 3611, 3934, +0, 3654, 3931, +0, 3706, 3926, +0, 3758, 3926, +0, 3820, 3926, +0, 3891, 3926, +0, 3926, 3877, +0, 3926, 3735, +0, 3926, 3430, +0, 4063, 0, +2137, 4095, 0, +0, 3344, 3944, +0, 3344, 3944, +0, 3344, 3944, +0, 3344, 3944, +0, 3345, 3944, +0, 3346, 3944, +0, 3346, 3944, +0, 3347, 3944, +0, 3349, 3944, +0, 3351, 3944, +0, 3353, 3944, +0, 3356, 3944, +0, 3361, 3944, +0, 3366, 3943, +0, 3374, 3943, +0, 3384, 3943, +0, 3396, 3942, +0, 3413, 3941, +0, 3434, 3940, +0, 3461, 3939, +0, 3495, 3937, +0, 3537, 3934, +0, 3587, 3931, +0, 3647, 3926, +1928, 3716, 3920, +1928, 3783, 3920, +1928, 3860, 3920, +1928, 3920, 3893, +1928, 3920, 3758, +1928, 3920, 3474, +0, 4058, 2157, +2915, 4095, 0, +0, 3140, 3944, +0, 3140, 3944, +0, 3140, 3944, +0, 3141, 3944, +0, 3142, 3944, +0, 3143, 3944, +0, 3144, 3944, +0, 3145, 3944, +0, 3147, 3944, +0, 3151, 3944, +0, 3154, 3944, +0, 3159, 3944, +0, 3166, 3944, +0, 3175, 3943, +0, 3186, 3943, +0, 3201, 3943, +0, 3220, 3942, +0, 3244, 3941, +0, 3275, 3940, +0, 3313, 3939, +0, 3359, 3937, +0, 3414, 3934, +0, 3479, 3931, +0, 3553, 3926, +1928, 3637, 3920, +2854, 3729, 3912, +2854, 3814, 3912, +2854, 3908, 3912, +2854, 3912, 3787, +2854, 3912, 3526, +2063, 4052, 2689, +3253, 4095, 0, +0, 2497, 3944, +0, 2498, 3944, +0, 2500, 3944, +0, 2502, 3944, +0, 2505, 3944, +0, 2508, 3944, +0, 2513, 3944, +0, 2520, 3944, +0, 2528, 3944, +0, 2539, 3944, +0, 2553, 3944, +0, 2572, 3944, +0, 2596, 3944, +0, 2625, 3943, +0, 2662, 3943, +0, 2708, 3943, +0, 2762, 3942, +0, 2826, 3941, +0, 2899, 3940, +0, 2982, 3939, +0, 3073, 3937, +0, 3172, 3934, +0, 3277, 3931, +0, 3388, 3926, +1928, 3504, 3920, +2854, 3624, 3912, +3204, 3746, 3900, +3204, 3853, 3900, +3204, 3900, 3822, +3204, 3900, 3588, +2987, 4044, 2986, +3494, 4095, 2192, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3943, +0, 0, 3943, +0, 0, 3943, +0, 0, 3942, +0, 0, 3941, +0, 0, 3940, +0, 0, 3939, +0, 0, 3937, +0, 1863, 3934, +0, 2650, 3931, +0, 2988, 3926, +1928, 3229, 3920, +2854, 3428, 3912, +3204, 3605, 3900, +3450, 3768, 3884, +3450, 3884, 3867, +3450, 3884, 3660, +3435, 4032, 3336, +3693, 4095, 3118, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3944, +0, 0, 3943, +0, 0, 3943, +0, 0, 3943, +0, 0, 3942, +0, 0, 3941, +0, 0, 3940, +0, 0, 3939, +0, 0, 3937, +0, 0, 3934, +0, 0, 3931, +2023, 0, 3926, +2556, 1928, 3920, +2854, 2854, 3912, +3204, 3302, 3900, +3450, 3579, 3884, +3652, 3796, 3862, +3652, 3862, 3741, +3711, 4016, 3583, +3869, 4095, 3469, +3269, 0, 3944, +3269, 0, 3944, +3269, 0, 3944, +3269, 0, 3944, +3270, 0, 3944, +3270, 0, 3944, +3270, 0, 3944, +3271, 0, 3944, +3271, 0, 3944, +3272, 0, 3944, +3273, 0, 3944, +3275, 0, 3944, +3277, 0, 3944, +3279, 0, 3943, +3283, 0, 3943, +3287, 0, 3943, +3293, 0, 3942, +3302, 0, 3941, +3312, 0, 3940, +3326, 0, 3939, +3344, 0, 3937, +3366, 0, 3934, +3395, 0, 3931, +3430, 0, 3926, +3474, 1928, 3920, +3526, 2854, 3912, +3588, 3204, 3900, +3660, 3450, 3884, +3741, 3652, 3862, +3830, 3830, 3830, +3928, 3994, 3784, +4032, 4095, 3714, +3791, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3792, 0, 4076, +3793, 0, 4076, +3793, 0, 4076, +3793, 0, 4076, +3794, 0, 4076, +3795, 0, 4076, +3796, 0, 4075, +3797, 0, 4075, +3799, 0, 4075, +3802, 0, 4074, +3805, 0, 4073, +3810, 0, 4072, +3816, 0, 4071, +3824, 0, 4069, +3835, 0, 4066, +3849, 0, 4063, +3867, 0, 4058, +3890, 2063, 4052, +3919, 2986, 4044, +3955, 3336, 4032, +3999, 3583, 4016, +3994, 3784, 3928, +3994, 3873, 3784, +4095, 4095, 3714, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4087, 0, 4095, +4088, 0, 4095, +4088, 0, 4095, +4088, 0, 4095, +4088, 0, 4095, +4089, 0, 4095, +4089, 0, 4095, +4090, 0, 4095, +4091, 0, 4095, +4092, 0, 4095, +4094, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 0, 4095, +4095, 2192, 4095, +4095, 3118, 4095, +4095, 3469, 4095, +4095, 3714, 4032, +4095, 3714, 3844, +4095, 3924, 3714, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3812, 4076, +0, 3813, 4076, +0, 3816, 4076, +0, 3819, 4076, +0, 3823, 4076, +0, 3828, 4076, +0, 3836, 4076, +0, 3846, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3922, 4076, +0, 3955, 4076, +0, 3996, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3954, +0, 4076, 3791, +0, 4076, 3401, +0, 4095, 0, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3811, 4076, +0, 3813, 4076, +0, 3816, 4076, +0, 3819, 4076, +0, 3823, 4076, +0, 3828, 4076, +0, 3836, 4076, +0, 3845, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3922, 4076, +0, 3955, 4076, +0, 3996, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3954, +0, 4076, 3792, +0, 4076, 3401, +0, 4095, 0, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3811, 4076, +0, 3813, 4076, +0, 3816, 4076, +0, 3819, 4076, +0, 3823, 4076, +0, 3828, 4076, +0, 3836, 4076, +0, 3845, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3921, 4076, +0, 3955, 4076, +0, 3996, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3954, +0, 4076, 3792, +0, 4076, 3401, +0, 4095, 0, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3811, 4076, +0, 3813, 4076, +0, 3815, 4076, +0, 3818, 4076, +0, 3823, 4076, +0, 3828, 4076, +0, 3836, 4076, +0, 3845, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3921, 4076, +0, 3955, 4076, +0, 3995, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3954, +0, 4076, 3792, +0, 4076, 3401, +0, 4095, 0, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3811, 4076, +0, 3813, 4076, +0, 3815, 4076, +0, 3818, 4076, +0, 3823, 4076, +0, 3828, 4076, +0, 3836, 4076, +0, 3845, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3921, 4076, +0, 3955, 4076, +0, 3995, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3955, +0, 4076, 3792, +0, 4076, 3401, +0, 4095, 0, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3811, 4076, +0, 3813, 4076, +0, 3815, 4076, +0, 3818, 4076, +0, 3822, 4076, +0, 3828, 4076, +0, 3835, 4076, +0, 3845, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3921, 4076, +0, 3954, 4076, +0, 3995, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3955, +0, 4076, 3792, +0, 4076, 3402, +0, 4095, 0, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3810, 4076, +0, 3811, 4076, +0, 3812, 4076, +0, 3815, 4076, +0, 3818, 4076, +0, 3822, 4076, +0, 3828, 4076, +0, 3835, 4076, +0, 3845, 4076, +0, 3858, 4076, +0, 3874, 4076, +0, 3895, 4076, +0, 3921, 4076, +0, 3954, 4076, +0, 3995, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3955, +0, 4076, 3792, +0, 4076, 3402, +0, 4095, 0, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3812, 4076, +0, 3815, 4076, +0, 3818, 4076, +0, 3822, 4076, +0, 3828, 4076, +0, 3835, 4076, +0, 3845, 4076, +0, 3857, 4076, +0, 3873, 4076, +0, 3895, 4076, +0, 3921, 4076, +0, 3954, 4076, +0, 3995, 4076, +0, 4045, 4076, +0, 4076, 4047, +0, 4076, 3955, +0, 4076, 3792, +0, 4076, 3402, +0, 4095, 0, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3810, 4076, +0, 3812, 4076, +0, 3814, 4076, +0, 3818, 4076, +0, 3822, 4076, +0, 3827, 4076, +0, 3835, 4076, +0, 3845, 4076, +0, 3857, 4076, +0, 3873, 4076, +0, 3894, 4076, +0, 3921, 4076, +0, 3954, 4076, +0, 3995, 4076, +0, 4044, 4076, +0, 4076, 4047, +0, 4076, 3955, +0, 4076, 3792, +0, 4076, 3403, +0, 4095, 0, +0, 3804, 4076, +0, 3804, 4076, +0, 3804, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3808, 4076, +0, 3810, 4076, +0, 3812, 4076, +0, 3814, 4076, +0, 3817, 4076, +0, 3821, 4076, +0, 3827, 4076, +0, 3834, 4076, +0, 3844, 4076, +0, 3856, 4076, +0, 3873, 4076, +0, 3894, 4076, +0, 3921, 4076, +0, 3953, 4076, +0, 3995, 4076, +0, 4044, 4076, +0, 4076, 4047, +0, 4076, 3955, +0, 4076, 3793, +0, 4076, 3403, +0, 4095, 0, +0, 3803, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3804, 4076, +0, 3804, 4076, +0, 3804, 4076, +0, 3804, 4076, +0, 3805, 4076, +0, 3805, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3809, 4076, +0, 3811, 4076, +0, 3813, 4076, +0, 3816, 4076, +0, 3821, 4076, +0, 3826, 4076, +0, 3834, 4076, +0, 3843, 4076, +0, 3856, 4076, +0, 3872, 4076, +0, 3893, 4076, +0, 3920, 4076, +0, 3953, 4076, +0, 3994, 4076, +0, 4044, 4076, +0, 4076, 4048, +0, 4076, 3955, +0, 4076, 3793, +0, 4076, 3404, +0, 4095, 0, +0, 3803, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3804, 4076, +0, 3804, 4076, +0, 3805, 4076, +0, 3806, 4076, +0, 3807, 4076, +0, 3808, 4076, +0, 3810, 4076, +0, 3812, 4076, +0, 3816, 4076, +0, 3820, 4076, +0, 3826, 4076, +0, 3833, 4076, +0, 3843, 4076, +0, 3855, 4076, +0, 3872, 4076, +0, 3892, 4076, +0, 3919, 4076, +0, 3953, 4076, +0, 3994, 4076, +0, 4043, 4076, +0, 4076, 4048, +0, 4076, 3956, +0, 4076, 3793, +0, 4076, 3405, +0, 4095, 0, +0, 3801, 4076, +0, 3801, 4076, +0, 3801, 4076, +0, 3801, 4076, +0, 3801, 4076, +0, 3802, 4076, +0, 3802, 4076, +0, 3802, 4076, +0, 3803, 4076, +0, 3803, 4076, +0, 3804, 4076, +0, 3805, 4076, +0, 3807, 4076, +0, 3809, 4076, +0, 3812, 4076, +0, 3814, 4076, +0, 3819, 4076, +0, 3824, 4076, +0, 3832, 4076, +0, 3841, 4076, +0, 3854, 4076, +0, 3871, 4076, +0, 3891, 4076, +0, 3918, 4076, +0, 3952, 4076, +0, 3993, 4076, +0, 4043, 4076, +0, 4076, 4048, +0, 4076, 3956, +0, 4076, 3794, +0, 4076, 3407, +0, 4095, 0, +0, 3799, 4076, +0, 3799, 4076, +0, 3799, 4076, +0, 3799, 4076, +0, 3800, 4076, +0, 3800, 4076, +0, 3800, 4076, +0, 3801, 4076, +0, 3801, 4076, +0, 3802, 4076, +0, 3803, 4076, +0, 3804, 4076, +0, 3805, 4076, +0, 3808, 4076, +0, 3810, 4076, +0, 3813, 4076, +0, 3817, 4076, +0, 3823, 4076, +0, 3830, 4076, +0, 3840, 4076, +0, 3853, 4076, +0, 3869, 4076, +0, 3890, 4076, +0, 3917, 4076, +0, 3950, 4076, +0, 3992, 4076, +0, 4042, 4076, +0, 4076, 4049, +0, 4076, 3957, +0, 4076, 3795, +0, 4076, 3409, +0, 4095, 0, +0, 3797, 4076, +0, 3797, 4076, +0, 3797, 4076, +0, 3797, 4076, +0, 3797, 4076, +0, 3797, 4076, +0, 3798, 4076, +0, 3798, 4076, +0, 3798, 4076, +0, 3799, 4076, +0, 3800, 4076, +0, 3801, 4076, +0, 3803, 4076, +0, 3805, 4076, +0, 3808, 4075, +0, 3811, 4075, +0, 3816, 4075, +0, 3821, 4075, +0, 3829, 4075, +0, 3838, 4075, +0, 3851, 4075, +0, 3868, 4075, +0, 3889, 4075, +0, 3916, 4075, +0, 3949, 4075, +0, 3991, 4075, +0, 4041, 4075, +0, 4075, 4049, +0, 4075, 3958, +0, 4075, 3796, +0, 4075, 3411, +0, 4095, 0, +0, 3793, 4076, +0, 3793, 4076, +0, 3793, 4076, +0, 3794, 4076, +0, 3794, 4076, +0, 3794, 4076, +0, 3794, 4076, +0, 3795, 4076, +0, 3795, 4076, +0, 3796, 4076, +0, 3797, 4076, +0, 3798, 4076, +0, 3800, 4076, +0, 3802, 4076, +0, 3805, 4075, +0, 3809, 4075, +0, 3813, 4075, +0, 3818, 4075, +0, 3826, 4075, +0, 3836, 4075, +0, 3849, 4075, +0, 3865, 4075, +0, 3887, 4075, +0, 3913, 4075, +0, 3947, 4075, +0, 3989, 4075, +0, 4039, 4075, +0, 4075, 4050, +0, 4075, 3959, +0, 4075, 3797, +0, 4075, 3415, +0, 4095, 0, +0, 3789, 4076, +0, 3789, 4076, +0, 3789, 4076, +0, 3789, 4076, +0, 3790, 4076, +0, 3790, 4076, +0, 3790, 4076, +0, 3790, 4076, +0, 3791, 4076, +0, 3791, 4076, +0, 3793, 4076, +0, 3794, 4076, +0, 3795, 4076, +0, 3798, 4076, +0, 3801, 4075, +0, 3804, 4075, +0, 3810, 4075, +0, 3815, 4075, +0, 3823, 4075, +0, 3833, 4075, +0, 3846, 4075, +0, 3862, 4075, +0, 3884, 4075, +0, 3911, 4075, +0, 3945, 4075, +0, 3986, 4075, +0, 4037, 4075, +0, 4075, 4051, +0, 4075, 3960, +0, 4075, 3799, +0, 4075, 3419, +0, 4095, 0, +0, 3783, 4076, +0, 3783, 4076, +0, 3783, 4076, +0, 3783, 4076, +0, 3783, 4076, +0, 3784, 4076, +0, 3784, 4076, +0, 3784, 4076, +0, 3785, 4076, +0, 3785, 4076, +0, 3787, 4076, +0, 3787, 4076, +0, 3789, 4076, +0, 3792, 4076, +0, 3795, 4075, +0, 3798, 4075, +0, 3803, 4075, +0, 3810, 4074, +0, 3818, 4074, +0, 3828, 4074, +0, 3841, 4074, +0, 3858, 4074, +0, 3880, 4074, +0, 3907, 4074, +0, 3941, 4074, +0, 3983, 4074, +0, 4034, 4074, +0, 4074, 4053, +0, 4074, 3962, +0, 4074, 3802, +0, 4074, 3426, +0, 4095, 0, +0, 3774, 4076, +0, 3775, 4076, +0, 3775, 4076, +0, 3775, 4076, +0, 3775, 4076, +0, 3775, 4076, +0, 3776, 4076, +0, 3776, 4076, +0, 3777, 4076, +0, 3777, 4076, +0, 3778, 4076, +0, 3780, 4076, +0, 3781, 4076, +0, 3784, 4076, +0, 3787, 4075, +0, 3790, 4075, +0, 3796, 4075, +0, 3803, 4074, +0, 3812, 4073, +0, 3822, 4073, +0, 3835, 4073, +0, 3852, 4073, +0, 3874, 4073, +0, 3902, 4073, +0, 3937, 4073, +0, 3979, 4073, +0, 4030, 4073, +0, 4073, 4055, +0, 4073, 3964, +0, 4073, 3805, +0, 4073, 3434, +0, 4095, 0, +0, 3763, 4076, +0, 3763, 4076, +0, 3763, 4076, +0, 3764, 4076, +0, 3764, 4076, +0, 3764, 4076, +0, 3764, 4076, +0, 3765, 4076, +0, 3765, 4076, +0, 3766, 4076, +0, 3767, 4076, +0, 3768, 4076, +0, 3770, 4076, +0, 3773, 4076, +0, 3776, 4075, +0, 3780, 4075, +0, 3785, 4075, +0, 3792, 4074, +0, 3801, 4073, +0, 3814, 4072, +0, 3827, 4072, +0, 3845, 4072, +0, 3867, 4072, +0, 3895, 4072, +0, 3930, 4072, +0, 3973, 4072, +0, 4025, 4072, +0, 4072, 4058, +0, 4072, 3968, +0, 4072, 3810, +0, 4072, 3444, +0, 4095, 0, +0, 3748, 4076, +0, 3748, 4076, +0, 3748, 4076, +0, 3748, 4076, +0, 3748, 4076, +0, 3749, 4076, +0, 3749, 4076, +0, 3749, 4076, +0, 3750, 4076, +0, 3751, 4076, +0, 3752, 4076, +0, 3753, 4076, +0, 3755, 4076, +0, 3757, 4076, +0, 3760, 4075, +0, 3765, 4075, +0, 3770, 4075, +0, 3777, 4074, +0, 3787, 4073, +0, 3800, 4072, +0, 3816, 4071, +0, 3834, 4071, +0, 3857, 4071, +0, 3886, 4071, +0, 3921, 4071, +0, 3965, 4071, +0, 4018, 4071, +0, 4071, 4061, +0, 4071, 3972, +0, 4071, 3816, +0, 4071, 3458, +0, 4095, 0, +0, 3726, 4076, +0, 3726, 4076, +0, 3726, 4076, +0, 3727, 4076, +0, 3727, 4076, +0, 3727, 4076, +0, 3727, 4076, +0, 3728, 4076, +0, 3728, 4076, +0, 3729, 4076, +0, 3730, 4076, +0, 3732, 4076, +0, 3734, 4076, +0, 3736, 4076, +0, 3739, 4075, +0, 3744, 4075, +0, 3750, 4075, +0, 3757, 4074, +0, 3768, 4073, +0, 3781, 4072, +0, 3798, 4071, +0, 3820, 4069, +0, 3843, 4069, +0, 3873, 4069, +0, 3910, 4069, +0, 3954, 4069, +0, 4008, 4069, +0, 4069, 4066, +0, 4069, 3978, +0, 4069, 3824, +0, 4069, 3475, +0, 4095, 0, +0, 3696, 4076, +0, 3696, 4076, +0, 3696, 4076, +0, 3696, 4076, +0, 3696, 4076, +0, 3696, 4076, +0, 3697, 4076, +0, 3697, 4076, +0, 3698, 4076, +0, 3699, 4076, +0, 3700, 4076, +0, 3701, 4076, +0, 3703, 4076, +0, 3706, 4076, +0, 3710, 4075, +0, 3714, 4075, +0, 3721, 4075, +0, 3729, 4074, +0, 3740, 4073, +0, 3754, 4072, +0, 3772, 4071, +0, 3795, 4069, +0, 3824, 4066, +0, 3855, 4066, +0, 3893, 4066, +0, 3940, 4066, +0, 3995, 4066, +0, 4060, 4066, +0, 4066, 3985, +0, 4066, 3835, +0, 4066, 3498, +0, 4095, 0, +0, 3651, 4076, +0, 3651, 4076, +0, 3651, 4076, +0, 3652, 4076, +0, 3652, 4076, +0, 3652, 4076, +0, 3653, 4076, +0, 3653, 4076, +0, 3654, 4076, +0, 3655, 4076, +0, 3656, 4076, +0, 3658, 4076, +0, 3660, 4076, +0, 3663, 4076, +0, 3667, 4075, +0, 3672, 4075, +0, 3679, 4075, +0, 3688, 4074, +0, 3700, 4073, +0, 3715, 4072, +0, 3735, 4071, +0, 3760, 4069, +0, 3791, 4066, +0, 3830, 4063, +0, 3870, 4063, +0, 3919, 4063, +0, 3977, 4063, +0, 4045, 4063, +0, 4063, 3995, +0, 4063, 3849, +0, 4063, 3527, +0, 4095, 0, +0, 3584, 4076, +0, 3584, 4076, +0, 3585, 4076, +0, 3585, 4076, +0, 3585, 4076, +0, 3585, 4076, +0, 3586, 4076, +0, 3586, 4076, +0, 3587, 4076, +0, 3588, 4076, +0, 3590, 4076, +0, 3592, 4076, +0, 3594, 4076, +0, 3597, 4076, +0, 3602, 4075, +0, 3608, 4075, +0, 3616, 4075, +0, 3626, 4074, +0, 3640, 4073, +0, 3657, 4072, +0, 3679, 4071, +0, 3708, 4069, +0, 3743, 4066, +0, 3786, 4063, +0, 3838, 4058, +0, 3890, 4058, +0, 3952, 4058, +0, 4023, 4058, +0, 4058, 4008, +0, 4058, 3867, +0, 4058, 3562, +0, 4095, 0, +0, 3475, 4076, +0, 3475, 4076, +0, 3476, 4076, +0, 3476, 4076, +0, 3476, 4076, +0, 3477, 4076, +0, 3477, 4076, +0, 3478, 4076, +0, 3479, 4076, +0, 3480, 4076, +0, 3482, 4076, +0, 3485, 4076, +0, 3488, 4076, +0, 3492, 4076, +0, 3498, 4075, +0, 3505, 4075, +0, 3515, 4075, +0, 3528, 4074, +0, 3545, 4073, +0, 3566, 4072, +0, 3593, 4071, +0, 3627, 4069, +0, 3669, 4066, +0, 3719, 4063, +0, 3779, 4058, +2063, 3848, 4052, +2063, 3915, 4052, +2063, 3992, 4052, +2063, 4052, 4025, +2063, 4052, 3890, +2063, 4052, 3606, +0, 4095, 2266, +0, 3271, 4076, +0, 3272, 4076, +0, 3272, 4076, +0, 3272, 4076, +0, 3273, 4076, +0, 3273, 4076, +0, 3274, 4076, +0, 3276, 4076, +0, 3277, 4076, +0, 3279, 4076, +0, 3282, 4076, +0, 3286, 4076, +0, 3291, 4076, +0, 3297, 4076, +0, 3306, 4075, +0, 3318, 4075, +0, 3333, 4075, +0, 3351, 4074, +0, 3376, 4073, +0, 3407, 4072, +0, 3445, 4071, +0, 3491, 4069, +0, 3546, 4066, +0, 3611, 4063, +0, 3685, 4058, +2063, 3769, 4052, +2986, 3861, 4044, +2986, 3947, 4044, +2986, 4040, 4044, +2986, 4044, 3919, +2986, 4044, 3659, +2192, 4095, 2814, +0, 2626, 4076, +0, 2627, 4076, +0, 2628, 4076, +0, 2630, 4076, +0, 2632, 4076, +0, 2635, 4076, +0, 2639, 4076, +0, 2644, 4076, +0, 2650, 4076, +0, 2659, 4076, +0, 2670, 4076, +0, 2684, 4076, +0, 2703, 4076, +0, 2726, 4076, +0, 2756, 4075, +0, 2793, 4075, +0, 2839, 4075, +0, 2893, 4074, +0, 2957, 4073, +0, 3031, 4072, +0, 3113, 4071, +0, 3205, 4069, +0, 3303, 4066, +0, 3409, 4063, +0, 3520, 4058, +2063, 3636, 4052, +2986, 3755, 4044, +3336, 3878, 4032, +3336, 3986, 4032, +3336, 4032, 3955, +3336, 4032, 3720, +3121, 4095, 3118, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4075, +0, 0, 4075, +0, 0, 4075, +0, 0, 4074, +0, 0, 4073, +0, 0, 4072, +0, 0, 4071, +0, 0, 4069, +0, 1985, 4066, +0, 2781, 4063, +0, 3119, 4058, +2063, 3361, 4052, +2986, 3561, 4044, +3336, 3737, 4032, +3583, 3900, 4016, +3583, 4016, 3999, +3583, 4016, 3792, +3568, 4095, 3469, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4076, +0, 0, 4075, +0, 0, 4075, +0, 0, 4075, +0, 0, 4074, +0, 0, 4073, +0, 0, 4072, +0, 0, 4071, +0, 0, 4069, +0, 0, 4066, +0, 0, 4063, +2157, 0, 4058, +2689, 2063, 4052, +2986, 2987, 4044, +3336, 3435, 4032, +3583, 3711, 4016, +3784, 3928, 3994, +3784, 3994, 3873, +3844, 4095, 3714, +3401, 0, 4076, +3401, 0, 4076, +3401, 0, 4076, +3401, 0, 4076, +3401, 0, 4076, +3402, 0, 4076, +3402, 0, 4076, +3402, 0, 4076, +3403, 0, 4076, +3403, 0, 4076, +3404, 0, 4076, +3405, 0, 4076, +3407, 0, 4076, +3409, 0, 4076, +3411, 0, 4075, +3415, 0, 4075, +3419, 0, 4075, +3426, 0, 4074, +3434, 0, 4073, +3444, 0, 4072, +3458, 0, 4071, +3475, 0, 4069, +3498, 0, 4066, +3527, 0, 4063, +3562, 0, 4058, +3606, 2063, 4052, +3659, 2986, 4044, +3720, 3336, 4032, +3792, 3583, 4016, +3873, 3784, 3994, +3962, 3962, 3962, +4060, 4095, 3916, +3924, 0, 4095, +3924, 0, 4095, +3924, 0, 4095, +3924, 0, 4095, +3924, 0, 4095, +3925, 0, 4095, +3925, 0, 4095, +3925, 0, 4095, +3925, 0, 4095, +3925, 0, 4095, +3925, 0, 4095, +3926, 0, 4095, +3926, 0, 4095, +3927, 0, 4095, +3927, 0, 4095, +3929, 0, 4095, +3930, 0, 4095, +3932, 0, 4095, +3935, 0, 4095, +3938, 0, 4095, +3943, 0, 4095, +3949, 0, 4095, +3957, 0, 4095, +3968, 0, 4095, +3982, 0, 4095, +4000, 0, 4095, +4023, 2192, 4095, +4051, 3118, 4095, +4087, 3469, 4095, +4095, 3714, 4095, +4095, 3916, 4060, +4095, 4005, 3916, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3946, 4095, +0, 3948, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3978, 4095, +0, 3990, 4095, +0, 4007, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3924, +0, 4095, 3533, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3946, 4095, +0, 3948, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3978, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3924, +0, 4095, 3533, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3945, 4095, +0, 3948, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3978, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3924, +0, 4095, 3533, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3945, 4095, +0, 3948, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3978, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3924, +0, 4095, 3534, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3945, 4095, +0, 3948, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3977, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3924, +0, 4095, 3534, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3945, 4095, +0, 3948, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3977, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3925, +0, 4095, 3534, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3943, 4095, +0, 3945, 4095, +0, 3947, 4095, +0, 3951, 4095, +0, 3955, 4095, +0, 3961, 4095, +0, 3968, 4095, +0, 3977, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4054, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3925, +0, 4095, 3534, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3943, 4095, +0, 3945, 4095, +0, 3947, 4095, +0, 3950, 4095, +0, 3955, 4095, +0, 3960, 4095, +0, 3968, 4095, +0, 3977, 4095, +0, 3990, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4053, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3925, +0, 4095, 3534, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3941, 4095, +0, 3943, 4095, +0, 3945, 4095, +0, 3947, 4095, +0, 3950, 4095, +0, 3954, 4095, +0, 3960, 4095, +0, 3967, 4095, +0, 3977, 4095, +0, 3989, 4095, +0, 4006, 4095, +0, 4027, 4095, +0, 4053, 4095, +0, 4086, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4087, +0, 4095, 3925, +0, 4095, 3534, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3943, 4095, +0, 3944, 4095, +0, 3947, 4095, +0, 3950, 4095, +0, 3954, 4095, +0, 3960, 4095, +0, 3967, 4095, +0, 3977, 4095, +0, 3989, 4095, +0, 4005, 4095, +0, 4026, 4095, +0, 4053, 4095, +0, 4086, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4088, +0, 4095, 3925, +0, 4095, 3535, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3938, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3944, 4095, +0, 3946, 4095, +0, 3950, 4095, +0, 3954, 4095, +0, 3959, 4095, +0, 3967, 4095, +0, 3976, 4095, +0, 3989, 4095, +0, 4005, 4095, +0, 4026, 4095, +0, 4053, 4095, +0, 4086, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4088, +0, 4095, 3925, +0, 4095, 3536, +0, 3936, 4095, +0, 3936, 4095, +0, 3936, 4095, +0, 3936, 4095, +0, 3936, 4095, +0, 3936, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3943, 4095, +0, 3946, 4095, +0, 3949, 4095, +0, 3953, 4095, +0, 3959, 4095, +0, 3966, 4095, +0, 3976, 4095, +0, 3988, 4095, +0, 4005, 4095, +0, 4026, 4095, +0, 4052, 4095, +0, 4085, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4088, +0, 4095, 3926, +0, 4095, 3537, +0, 3935, 4095, +0, 3935, 4095, +0, 3935, 4095, +0, 3935, 4095, +0, 3935, 4095, +0, 3935, 4095, +0, 3935, 4095, +0, 3936, 4095, +0, 3936, 4095, +0, 3937, 4095, +0, 3937, 4095, +0, 3938, 4095, +0, 3939, 4095, +0, 3941, 4095, +0, 3942, 4095, +0, 3945, 4095, +0, 3948, 4095, +0, 3952, 4095, +0, 3958, 4095, +0, 3965, 4095, +0, 3975, 4095, +0, 3988, 4095, +0, 4004, 4095, +0, 4025, 4095, +0, 4051, 4095, +0, 4085, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4088, +0, 4095, 3926, +0, 4095, 3538, +0, 3933, 4095, +0, 3933, 4095, +0, 3933, 4095, +0, 3933, 4095, +0, 3934, 4095, +0, 3934, 4095, +0, 3934, 4095, +0, 3934, 4095, +0, 3935, 4095, +0, 3935, 4095, +0, 3936, 4095, +0, 3937, 4095, +0, 3938, 4095, +0, 3940, 4095, +0, 3941, 4095, +0, 3944, 4095, +0, 3947, 4095, +0, 3951, 4095, +0, 3957, 4095, +0, 3964, 4095, +0, 3974, 4095, +0, 3986, 4095, +0, 4003, 4095, +0, 4024, 4095, +0, 4051, 4095, +0, 4084, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4089, +0, 4095, 3927, +0, 4095, 3539, +0, 3932, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3933, 4095, +0, 3933, 4095, +0, 3934, 4095, +0, 3935, 4095, +0, 3936, 4095, +0, 3938, 4095, +0, 3940, 4095, +0, 3942, 4095, +0, 3945, 4095, +0, 3950, 4095, +0, 3955, 4095, +0, 3963, 4095, +0, 3972, 4095, +0, 3985, 4095, +0, 4002, 4095, +0, 4023, 4095, +0, 4049, 4095, +0, 4083, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4089, +0, 4095, 3927, +0, 4095, 3541, +0, 3929, 4095, +0, 3929, 4095, +0, 3929, 4095, +0, 3929, 4095, +0, 3929, 4095, +0, 3929, 4095, +0, 3930, 4095, +0, 3930, 4095, +0, 3930, 4095, +0, 3931, 4095, +0, 3932, 4095, +0, 3932, 4095, +0, 3934, 4095, +0, 3935, 4095, +0, 3937, 4095, +0, 3940, 4095, +0, 3944, 4095, +0, 3948, 4095, +0, 3953, 4095, +0, 3961, 4095, +0, 3971, 4095, +0, 3983, 4095, +0, 4000, 4095, +0, 4021, 4095, +0, 4048, 4095, +0, 4082, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4090, +0, 4095, 3929, +0, 4095, 3544, +0, 3926, 4095, +0, 3926, 4095, +0, 3926, 4095, +0, 3926, 4095, +0, 3926, 4095, +0, 3926, 4095, +0, 3927, 4095, +0, 3927, 4095, +0, 3927, 4095, +0, 3927, 4095, +0, 3928, 4095, +0, 3929, 4095, +0, 3930, 4095, +0, 3932, 4095, +0, 3934, 4095, +0, 3937, 4095, +0, 3941, 4095, +0, 3945, 4095, +0, 3951, 4095, +0, 3959, 4095, +0, 3968, 4095, +0, 3981, 4095, +0, 3998, 4095, +0, 4019, 4095, +0, 4046, 4095, +0, 4080, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4091, +0, 4095, 3930, +0, 4095, 3547, +0, 3921, 4095, +0, 3921, 4095, +0, 3921, 4095, +0, 3921, 4095, +0, 3921, 4095, +0, 3922, 4095, +0, 3922, 4095, +0, 3922, 4095, +0, 3923, 4095, +0, 3923, 4095, +0, 3924, 4095, +0, 3925, 4095, +0, 3926, 4095, +0, 3927, 4095, +0, 3930, 4095, +0, 3933, 4095, +0, 3937, 4095, +0, 3942, 4095, +0, 3947, 4095, +0, 3955, 4095, +0, 3965, 4095, +0, 3978, 4095, +0, 3994, 4095, +0, 4016, 4095, +0, 4043, 4095, +0, 4077, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4092, +0, 4095, 3932, +0, 4095, 3552, +0, 3915, 4095, +0, 3915, 4095, +0, 3915, 4095, +0, 3915, 4095, +0, 3915, 4095, +0, 3916, 4095, +0, 3916, 4095, +0, 3916, 4095, +0, 3917, 4095, +0, 3917, 4095, +0, 3918, 4095, +0, 3919, 4095, +0, 3920, 4095, +0, 3922, 4095, +0, 3924, 4095, +0, 3927, 4095, +0, 3931, 4095, +0, 3936, 4095, +0, 3943, 4095, +0, 3950, 4095, +0, 3961, 4095, +0, 3974, 4095, +0, 3990, 4095, +0, 4012, 4095, +0, 4039, 4095, +0, 4073, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4094, +0, 4095, 3935, +0, 4095, 3558, +0, 3907, 4095, +0, 3907, 4095, +0, 3907, 4095, +0, 3907, 4095, +0, 3907, 4095, +0, 3908, 4095, +0, 3908, 4095, +0, 3908, 4095, +0, 3908, 4095, +0, 3909, 4095, +0, 3910, 4095, +0, 3910, 4095, +0, 3912, 4095, +0, 3913, 4095, +0, 3916, 4095, +0, 3919, 4095, +0, 3923, 4095, +0, 3928, 4095, +0, 3935, 4095, +0, 3944, 4095, +0, 3954, 4095, +0, 3968, 4095, +0, 3984, 4095, +0, 4006, 4095, +0, 4034, 4095, +0, 4069, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 3938, +0, 4095, 3566, +0, 3896, 4095, +0, 3896, 4095, +0, 3896, 4095, +0, 3896, 4095, +0, 3896, 4095, +0, 3896, 4095, +0, 3896, 4095, +0, 3897, 4095, +0, 3897, 4095, +0, 3898, 4095, +0, 3898, 4095, +0, 3899, 4095, +0, 3901, 4095, +0, 3903, 4095, +0, 3905, 4095, +0, 3908, 4095, +0, 3912, 4095, +0, 3917, 4095, +0, 3924, 4095, +0, 3934, 4095, +0, 3946, 4095, +0, 3960, 4095, +0, 3977, 4095, +0, 3999, 4095, +0, 4027, 4095, +0, 4062, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 3943, +0, 4095, 3576, +0, 3880, 4095, +0, 3880, 4095, +0, 3880, 4095, +0, 3880, 4095, +0, 3880, 4095, +0, 3881, 4095, +0, 3881, 4095, +0, 3881, 4095, +0, 3881, 4095, +0, 3882, 4095, +0, 3883, 4095, +0, 3884, 4095, +0, 3885, 4095, +0, 3887, 4095, +0, 3889, 4095, +0, 3893, 4095, +0, 3897, 4095, +0, 3903, 4095, +0, 3910, 4095, +0, 3920, 4095, +0, 3932, 4095, +0, 3949, 4095, +0, 3966, 4095, +0, 3989, 4095, +0, 4018, 4095, +0, 4054, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 3949, +0, 4095, 3590, +0, 3859, 4095, +0, 3859, 4095, +0, 3859, 4095, +0, 3859, 4095, +0, 3859, 4095, +0, 3859, 4095, +0, 3859, 4095, +0, 3860, 4095, +0, 3860, 4095, +0, 3861, 4095, +0, 3862, 4095, +0, 3863, 4095, +0, 3864, 4095, +0, 3866, 4095, +0, 3868, 4095, +0, 3872, 4095, +0, 3876, 4095, +0, 3882, 4095, +0, 3890, 4095, +0, 3900, 4095, +0, 3913, 4095, +0, 3930, 4095, +0, 3952, 4095, +0, 3976, 4095, +0, 4005, 4095, +0, 4042, 4095, +0, 4087, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 3957, +0, 4095, 3608, +0, 3828, 4095, +0, 3828, 4095, +0, 3828, 4095, +0, 3828, 4095, +0, 3828, 4095, +0, 3829, 4095, +0, 3829, 4095, +0, 3829, 4095, +0, 3830, 4095, +0, 3830, 4095, +0, 3831, 4095, +0, 3832, 4095, +0, 3834, 4095, +0, 3836, 4095, +0, 3838, 4095, +0, 3842, 4095, +0, 3847, 4095, +0, 3853, 4095, +0, 3861, 4095, +0, 3872, 4095, +0, 3886, 4095, +0, 3904, 4095, +0, 3927, 4095, +0, 3956, 4095, +0, 3987, 4095, +0, 4025, 4095, +0, 4072, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 3968, +0, 4095, 3630, +0, 3784, 4095, +0, 3784, 4095, +0, 3784, 4095, +0, 3784, 4095, +0, 3784, 4095, +0, 3784, 4095, +0, 3784, 4095, +0, 3785, 4095, +0, 3786, 4095, +0, 3786, 4095, +0, 3787, 4095, +0, 3788, 4095, +0, 3790, 4095, +0, 3792, 4095, +0, 3795, 4095, +0, 3799, 4095, +0, 3804, 4095, +0, 3811, 4095, +0, 3820, 4095, +0, 3832, 4095, +0, 3847, 4095, +0, 3867, 4095, +0, 3892, 4095, +0, 3923, 4095, +0, 3962, 4095, +0, 4002, 4095, +0, 4051, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 3982, +0, 4095, 3659, +0, 3716, 4095, +0, 3717, 4095, +0, 3717, 4095, +0, 3717, 4095, +0, 3717, 4095, +0, 3717, 4095, +0, 3718, 4095, +0, 3718, 4095, +0, 3719, 4095, +0, 3720, 4095, +0, 3721, 4095, +0, 3722, 4095, +0, 3724, 4095, +0, 3727, 4095, +0, 3730, 4095, +0, 3735, 4095, +0, 3741, 4095, +0, 3748, 4095, +0, 3759, 4095, +0, 3772, 4095, +0, 3790, 4095, +0, 3812, 4095, +0, 3840, 4095, +0, 3875, 4095, +0, 3918, 4095, +0, 3970, 4095, +0, 4022, 4095, +0, 4084, 4095, +0, 4095, 4095, +0, 4095, 4095, +0, 4095, 4000, +0, 4095, 3695, +0, 3608, 4095, +0, 3608, 4095, +0, 3608, 4095, +0, 3608, 4095, +0, 3608, 4095, +0, 3609, 4095, +0, 3609, 4095, +0, 3610, 4095, +0, 3611, 4095, +0, 3612, 4095, +0, 3613, 4095, +0, 3615, 4095, +0, 3617, 4095, +0, 3621, 4095, +0, 3625, 4095, +0, 3630, 4095, +0, 3638, 4095, +0, 3648, 4095, +0, 3661, 4095, +0, 3677, 4095, +0, 3699, 4095, +0, 3726, 4095, +0, 3759, 4095, +0, 3801, 4095, +0, 3851, 4095, +0, 3911, 4095, +2192, 3980, 4095, +2192, 4047, 4095, +2192, 4095, 4095, +2192, 4095, 4095, +2192, 4095, 4023, +2192, 4095, 3738, +0, 3404, 4095, +0, 3404, 4095, +0, 3404, 4095, +0, 3405, 4095, +0, 3405, 4095, +0, 3405, 4095, +0, 3406, 4095, +0, 3407, 4095, +0, 3408, 4095, +0, 3410, 4095, +0, 3412, 4095, +0, 3415, 4095, +0, 3419, 4095, +0, 3424, 4095, +0, 3430, 4095, +0, 3439, 4095, +0, 3450, 4095, +0, 3465, 4095, +0, 3484, 4095, +0, 3509, 4095, +0, 3539, 4095, +0, 3577, 4095, +0, 3623, 4095, +0, 3679, 4095, +0, 3743, 4095, +0, 3818, 4095, +2192, 3901, 4095, +3118, 3993, 4095, +3118, 4079, 4095, +3118, 4095, 4095, +3118, 4095, 4051, +3118, 4095, 3791, +0, 2761, 4095, +0, 2762, 4095, +0, 2762, 4095, +0, 2764, 4095, +0, 2765, 4095, +0, 2767, 4095, +0, 2770, 4095, +0, 2773, 4095, +0, 2778, 4095, +0, 2785, 4095, +0, 2793, 4095, +0, 2804, 4095, +0, 2818, 4095, +0, 2837, 4095, +0, 2861, 4095, +0, 2890, 4095, +0, 2927, 4095, +0, 2973, 4095, +0, 3027, 4095, +0, 3090, 4095, +0, 3164, 4095, +0, 3246, 4095, +0, 3337, 4095, +0, 3436, 4095, +0, 3541, 4095, +0, 3653, 4095, +2192, 3768, 4095, +3118, 3888, 4095, +3469, 4010, 4095, +3469, 4095, 4095, +3469, 4095, 4087, +3469, 4095, 3853, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 2137, 4095, +0, 2915, 4095, +0, 3253, 4095, +2192, 3494, 4095, +3118, 3693, 4095, +3469, 3869, 4095, +3714, 4032, 4095, +3714, 4095, 4095, +3714, 4095, 3924, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +0, 0, 4095, +2266, 0, 4095, +2814, 2192, 4095, +3118, 3121, 4095, +3469, 3568, 4095, +3714, 3844, 4095, +3916, 4060, 4095, +3916, 4095, 4005, +3533, 0, 4095, +3533, 0, 4095, +3533, 0, 4095, +3534, 0, 4095, +3534, 0, 4095, +3534, 0, 4095, +3534, 0, 4095, +3534, 0, 4095, +3534, 0, 4095, +3535, 0, 4095, +3536, 0, 4095, +3537, 0, 4095, +3538, 0, 4095, +3539, 0, 4095, +3541, 0, 4095, +3544, 0, 4095, +3547, 0, 4095, +3552, 0, 4095, +3558, 0, 4095, +3566, 0, 4095, +3576, 0, 4095, +3590, 0, 4095, +3608, 0, 4095, +3630, 0, 4095, +3659, 0, 4095, +3695, 0, 4095, +3738, 2192, 4095, +3791, 3118, 4095, +3853, 3469, 4095, +3924, 3714, 4095, +4005, 3916, 4095, +4095, 4095, 4095] + } +} \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/displaymapperpassthrough.dds b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/displaymapperpassthrough.dds new file mode 100644 index 0000000000..d48a60e5cf --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/displaymapperpassthrough.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd3fe7e7f016c1a3b2c3e8db5fbd23efbc8d8717c01fac4cf39b1ae7b3ae9325 +size 41559412 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/displaymapperpassthrough.exr b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/displaymapperpassthrough.exr new file mode 100644 index 0000000000..9daa58f75c --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/Resources/TestData/displaymapperpassthrough.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:facad074b84df87a0ab4baaf2bd95552e6eca3fed79a56875c9815f32d885b8a +size 11949493 diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/.gitignore b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/.gitignore new file mode 100644 index 0000000000..fd2792f73e --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/.gitignore @@ -0,0 +1 @@ +User_Env.bat \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/CMD_ColorGradingTools.bat b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/CMD_ColorGradingTools.bat new file mode 100644 index 0000000000..c655eb2e6c --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/CMD_ColorGradingTools.bat @@ -0,0 +1,52 @@ +@echo off + +REM +REM Copyright (c) Contributors to the Open 3D Engine Project +REM +REM SPDX-License-Identifier: Apache-2.0 OR MIT +REM For complete copyright and license terms please see the LICENSE at the root of this distribution. +REM +REM + +:: Set up and run O3DE Python CMD prompt +:: Sets up the DccScriptingInterface_Env, +:: Puts you in the CMD within the dev environment + +:: Set up window +TITLE O3DE Color Grading CMD +:: Use obvious color to prevent confusion (Grey with Yellow Text) +COLOR 8E + +%~d0 +cd %~dp0 +PUSHD %~dp0 + +SETLOCAL ENABLEDELAYEDEXPANSION + +:: if the user has set up a custom env call it +IF EXIST "%~dp0User_Env.bat" CALL %~dp0User_Env.bat + +:: Initialize env +CALL %~dp0\Env_Core.bat +CALL %~dp0\Env_Python.bat +CALL %~dp0\Env_Tools.bat + +echo. +echo _____________________________________________________________________ +echo. +echo ~ O3DE Color Grading Python CMD ... +echo _____________________________________________________________________ +echo. + +:: Change to root dir +CD /D .. + +:: Create command prompt with environment +CALL %windir%\system32\cmd.exe + +ENDLOCAL + +:: Return to starting directory +POPD + +:END_OF_FILE diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Env_Core.bat b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Env_Core.bat new file mode 100644 index 0000000000..730170dce7 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Env_Core.bat @@ -0,0 +1,129 @@ +@echo off + +REM +REM Copyright (c) Contributors to the Open 3D Engine Project +REM +REM SPDX-License-Identifier: Apache-2.0 OR MIT +REM For complete copyright and license terms please see the LICENSE at the root of this distribution. +REM +REM + +:: Sets up environment for O3DE DCC tools and code access + +:: Set up window +TITLE O3DE Color Grading Env Core +:: Use obvious color to prevent confusion (Grey with Yellow Text) +COLOR 8E + +:: Skip initialization if already completed +IF "%O3DE_ENV_INIT%"=="1" GOTO :END_OF_FILE + +:: Store current dir +%~d0 +cd %~dp0 +PUSHD %~dp0 + +::SETLOCAL ENABLEDELAYEDEXPANSION + +echo. +echo _____________________________________________________________________ +echo. +echo ~ O3DE Color Grading Core Env ... +echo _____________________________________________________________________ +echo. + +IF "%CMD_LAUNCHERS%"=="" (set CMD_LAUNCHERS=%~dp0) +echo CMD_LAUNCHERS = %CMD_LAUNCHERS% + +:: add to the PATH +SET PATH=%CMD_LAUNCHERS%;%PATH% + +:: Constant Vars (Global) +:: global debug flag (propogates) +:: The intent here is to set and globally enter a debug mode +IF "%DCCSI_GDEBUG%"=="" (set DCCSI_GDEBUG=false) +echo DCCSI_GDEBUG = %DCCSI_GDEBUG% +:: initiates earliest debugger connection +:: we support attaching to WingIDE... PyCharm and VScode in the future +IF "%DCCSI_DEV_MODE%"=="" (set DCCSI_DEV_MODE=false) +echo DCCSI_DEV_MODE = %DCCSI_DEV_MODE% +:: sets debugger, options: WING, PYCHARM +IF "%DCCSI_GDEBUGGER%"=="" (set DCCSI_GDEBUGGER=WING) +echo DCCSI_GDEBUGGER = %DCCSI_GDEBUGGER% +:: Default level logger will handle +:: Override this to control the setting +:: CRITICAL:50 +:: ERROR:40 +:: WARNING:30 +:: INFO:20 +:: DEBUG:10 +:: NOTSET:0 +IF "%DCCSI_LOGLEVEL%"=="" (set DCCSI_LOGLEVEL=20) +echo DCCSI_LOGLEVEL = %DCCSI_LOGLEVEL% + +:: This maps up to the \Dev folder +IF "%DEV_REL_PATH%"=="" (set DEV_REL_PATH=..\..\..\..\..\..) +echo DEV_REL_PATH = %DEV_REL_PATH% + +:: You can define the project name +IF "%O3DE_PROJECT_NAME%"=="" ( + for %%a in (%CD%..\..) do set O3DE_PROJECT_NAME=%%~na + ) +echo O3DE_PROJECT_NAME = %O3DE_PROJECT_NAME% + +CD /D ..\ +IF "%O3DE_PROJECT_PATH%"=="" (set O3DE_PROJECT_PATH=%CD%) +echo O3DE_PROJECT_PATH = %O3DE_PROJECT_PATH% + +IF "%ABS_PATH%"=="" (set ABS_PATH=%CD%) +echo ABS_PATH = %ABS_PATH% + +:: Save current directory and change to target directory +pushd %ABS_PATH% + +:: Change to root Lumberyard dev dir +CD /d %DEV_REL_PATH% +IF "%O3DE_DEV%"=="" (set O3DE_DEV=%CD%) +echo O3DE_DEV = %O3DE_DEV% +:: Restore original directory +popd + +:: dcc scripting interface gem path +:: currently know relative path to this gem +set DCCSIG_PATH=%O3DE_DEV%\Gems\AtomLyIntegration\TechnicalArt\DccScriptingInterface +echo DCCSIG_PATH = %DCCSIG_PATH% + +:: Change to DCCsi root dir +CD /D %DCCSIG_PATH% + +:: per-dcc sdk path +set DCCSI_SDK_PATH=%DCCSIG_PATH%\SDK +echo DCCSI_SDK_PATH = %DCCSI_SDK_PATH% + +:: temp log location specific to this gem +set DCCSI_LOG_PATH=%DCCSIG_PATH%\.temp\logs +echo DCCSI_LOG_PATH = %DCCSI_LOG_PATH% + +:: O3DE build path +IF "%TAG_O3DE_BUILD_PATH%"=="" (set TAG_O3DE_BUILD_PATH=build) +echo TAG_O3DE_BUILD_PATH = %TAG_O3DE_BUILD_PATH% + +IF "%O3DE_BUILD_PATH%"=="" (set O3DE_BUILD_PATH=%O3DE_DEV%\%TAG_O3DE_BUILD_PATH%) +echo O3DE_BUILD_PATH = %O3DE_BUILD_PATH% + +IF "%O3DE_BIN_PATH%"=="" (set O3DE_BIN_PATH=%O3DE_BUILD_PATH%\bin\profile) +echo O3DE_BIN_PATH = %O3DE_BIN_PATH% + +:: add to the PATH +SET PATH=%O3DE_BUILD_PATH%;%DCCSIG_PATH%;%DCCSI_AZPY_PATH%;%PATH% + +::ENDLOCAL + +:: Set flag so we don't initialize dccsi environment twice +SET O3DE_ENV_INIT=1 +GOTO END_OF_FILE + +:: Return to starting directory +POPD + +:END_OF_FILE diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Env_Python.bat b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Env_Python.bat new file mode 100644 index 0000000000..fc4afc964e --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Env_Python.bat @@ -0,0 +1,106 @@ +@echo off + +REM +REM Copyright (c) Contributors to the Open 3D Engine Project +REM +REM SPDX-License-Identifier: Apache-2.0 OR MIT +REM For complete copyright and license terms please see the LICENSE at the root of this distribution. +REM +REM + +:: Sets up extended environment for O3DE and DCCsi python + +:: Skip initialization if already completed +IF "%O3DE_ENV_PY_INIT%"=="1" GOTO :END_OF_FILE + +:: Store current dir +%~d0 +cd %~dp0 +PUSHD %~dp0 + +CALL %~dp0\Env_Core.bat + +echo. +echo _____________________________________________________________________ +echo. +echo ~ O3DE Color Grading Python Env ... +echo _____________________________________________________________________ +echo. + +:: Python Version +:: Ideally these are set to match the O3DE python distribution +:: \python\runtime +IF "%DCCSI_PY_VERSION_MAJOR%"=="" (set DCCSI_PY_VERSION_MAJOR=3) +echo DCCSI_PY_VERSION_MAJOR = %DCCSI_PY_VERSION_MAJOR% + +:: PY version Major +IF "%DCCSI_PY_VERSION_MINOR%"=="" (set DCCSI_PY_VERSION_MINOR=7) +echo DCCSI_PY_VERSION_MINOR = %DCCSI_PY_VERSION_MINOR% + +IF "%DCCSI_PY_VERSION_RELEASE%"=="" (set DCCSI_PY_VERSION_RELEASE=10) +echo DCCSI_PY_VERSION_RELEASE = %DCCSI_PY_VERSION_RELEASE% + +:: shared location for 64bit python 3.7 DEV location +:: this defines a DCCsi sandbox for lib site-packages by version +:: \Gems\AtomLyIntegration\TechnicalArt\DccScriptingInterface\3rdParty\Python\Lib +set DCCSI_PYTHON_PATH=%DCCSIG_PATH%\3rdParty\Python +echo DCCSI_PYTHON_PATH = %DCCSI_PYTHON_PATH% + +:: add access to a Lib location that matches the py version (example: 3.7.x) +:: switch this for other python versions like maya (2.7.x) +IF "%DCCSI_PYTHON_LIB_PATH%"=="" (set DCCSI_PYTHON_LIB_PATH=%DCCSI_PYTHON_PATH%\Lib\%DCCSI_PY_VERSION_MAJOR%.x\%DCCSI_PY_VERSION_MAJOR%.%DCCSI_PY_VERSION_MINOR%.x\site-packages) +echo DCCSI_PYTHON_LIB_PATH = %DCCSI_PYTHON_LIB_PATH% + +:: add to the PATH +SET PATH=%DCCSI_PYTHON_LIB_PATH%;%PATH% + +:: shared location for default O3DE python location +set DCCSI_PYTHON_INSTALL=%O3DE_DEV%\Python +echo DCCSI_PYTHON_INSTALL = %DCCSI_PYTHON_INSTALL% + +:: location for O3DE python 3.7 location +set DCCSI_PY_BASE=%DCCSI_PYTHON_INSTALL%\python.cmd +echo DCCSI_PY_BASE = %DCCSI_PY_BASE% + +:: ide and debugger plug +set DCCSI_PY_DEFAULT=%DCCSI_PY_BASE% + +IF "%DCCSI_PY_REV%"=="" (set DCCSI_PY_REV=rev2) +IF "%DCCSI_PY_PLATFORM%"=="" (set DCCSI_PY_PLATFORM=windows) + +set DCCSI_PY_IDE=%DCCSI_PYTHON_INSTALL%\runtime\python-%DCCSI_PY_VERSION_MAJOR%.%DCCSI_PY_VERSION_MINOR%.%DCCSI_PY_VERSION_RELEASE%-%DCCSI_PY_REV%-%DCCSI_PY_PLATFORM%\python +echo DCCSI_PY_IDE = %DCCSI_PY_IDE% + +:: Wing and other IDEs probably prefer access directly to the python.exe +set DCCSI_PY_EXE=%DCCSI_PY_IDE%\python.exe +echo DCCSI_PY_EXE = %DCCSI_PY_EXE% + +set DCCSI_PY_IDE_PACKAGES=%DCCSI_PY_IDE%\Lib\site-packages +echo DCCSI_PY_IDE_PACKAGES = %DCCSI_PY_IDE_PACKAGES% + +set DCCSI_FEATURECOMMON_SCRIPTS=%O3DE_DEV%\Gems\Atom\Feature\Common\Editor\Scripts +echo DCCSI_FEATURECOMMON_SCRIPTS = %DCCSI_FEATURECOMMON_SCRIPTS% + +set DCCSI_COLORGRADING_SCRIPTS=%DCCSI_FEATURECOMMON_SCRIPTS%\ColorGrading +echo DCCSI_COLORGRADING_SCRIPTS = %DCCSI_COLORGRADING_SCRIPTS% + +:: add to the PATH +SET PATH=%DCCSI_PYTHON_INSTALL%;%DCCSI_PY_IDE%;%DCCSI_PY_IDE_PACKAGES%;%DCCSI_PY_EXE%;%DCCSI_COLORGRADING_SCRIPTS%;%PATH% + +:: add all python related paths to PYTHONPATH for package imports +set PYTHONPATH=%DCCSIG_PATH%;%DCCSI_PYTHON_LIB_PATH%;%O3DE_BIN_PATH%;%DCCSI_COLORGRADING_SCRIPTS%;%DCCSI_FEATURECOMMON_SCRIPTS%;%PYTHONPATH% +echo PYTHONPATH = %PYTHONPATH% + +:: used for debugging in WingIDE (but needs to be here) +IF "%TAG_USERNAME%"=="" (set TAG_USERNAME=NOT_SET) +echo TAG_USERNAME = %TAG_USERNAME% +IF "%TAG_USERNAME%"=="NOT_SET" (echo Add TAG_USERNAME to User_Env.bat) + +:: Set flag so we don't initialize dccsi environment twice +SET O3DE_ENV_PY_INIT=1 +GOTO END_OF_FILE + +:: Return to starting directory +POPD + +:END_OF_FILE diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Env_Tools.bat b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Env_Tools.bat new file mode 100644 index 0000000000..27c8960ca3 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Env_Tools.bat @@ -0,0 +1,88 @@ +@echo off + +REM +REM Copyright (c) Contributors to the Open 3D Engine Project +REM +REM SPDX-License-Identifier: Apache-2.0 OR MIT +REM For complete copyright and license terms please see the LICENSE at the root of this distribution. +REM +REM + + +:: Sets ocio and oiio tools for O3DE Color Grading + +:: Skip initialization if already completed +IF "%O3DE_ENV_TOOLS_INIT%"=="1" GOTO :END_OF_FILE + +:: Store current dir +%~d0 +cd %~dp0 +PUSHD %~dp0 + +:: Initialize env +CALL %~dp0\Env_Core.bat +CALL %~dp0\Env_Python.bat + +::SETLOCAL ENABLEDELAYEDEXPANSION + +echo. +echo _____________________________________________________________________ +echo. +echo ~ O3DE Color Grading Tools Env ... +echo _____________________________________________________________________ +echo. + +::SET oiio_bin=%O3DE_PROJECT_PATH%\Tools\oiio\build\bin\Release +::SET oiiotool=%oiio_bin%\oiiotool.exe + +:: Libs that ocio uses +SET vcpkg_bin=%O3DE_DEV%\Tools\ColorGrading\vcpkg\installed\x64-windows\bin +:: add to path +SET PATH=%PATH%;%vcpkg_bin% + +SET ocio_bin=%O3DE_DEV%\Tools\ColorGrading\ocio\build\src\OpenColorIO\Release +echo ocio_bin = %ocio_bin% +:: add to the PATH +SET PATH=%PATH%;%ocio_bin% + +IF "%OCIO_APPS%"=="" (set OCIO_APPS=%O3DE_DEV%\Tools\ColorGrading\ocio\build\src\apps) +echo OCIO_APPS = %OCIO_APPS% + +SET ociobakelut=%OCIO_APPS%\ociobakelut\Release +echo ociobakelut = %ociobakelut% +SET PATH=%PATH%;%ociobakelut% + +SET ociocheck=%OCIO_APPS%\ociocheck\Release +SET PATH=%PATH%;%ociocheck% + +SET ociochecklut=%OCIO_APPS%\ociochecklut\Release +SET PATH=%PATH%;%ociochecklut% + +SET ocioconvert=%OCIO_APPS%\ocioconvert\Release +SET PATH=%PATH%;%ocioconvert% + +SET ociodisplay=%OCIO_APPS%\ociodisplay\Release +SET PATH=%PATH%;%ociodisplay% + +SET ociolutimage=%OCIO_APPS%\ociolutimage\Release +SET PATH=%PATH%;%ociolutimage% + +SET ociomakeclf=%OCIO_APPS%\ociomakeclf\Release +SET PATH=%PATH%;%ociomakeclf% + +SET ocioperf=%OCIO_APPS%\ocioperf\Release +SET PATH=%PATH%;%ocioperf% + +SET ociowrite=%OCIO_APPS%\ociowrite\Release +SET PATH=%PATH%;%ociowrite% + +::ENDLOCAL + +:: Set flag so we don't initialize this environment twice +SET O3DE_ENV_TOOLS_INIT=1 +GOTO END_OF_FILE + +:: Return to starting directory +POPD + +:END_OF_FILE \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Env_WingIDE.bat b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Env_WingIDE.bat new file mode 100644 index 0000000000..29982db4f1 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Env_WingIDE.bat @@ -0,0 +1,63 @@ +@echo off + +REM +REM Copyright (c) Contributors to the Open 3D Engine Project +REM +REM SPDX-License-Identifier: Apache-2.0 OR MIT +REM For complete copyright and license terms please see the LICENSE at the root of this distribution. +REM +REM + +:: Sets up environment for Lumberyard DCC tools and code access + +:: Skip initialization if already completed +IF "%DCCSI_ENV_WINGIDE_INIT%"=="1" GOTO :END_OF_FILE + +:: Store current dir +%~d0 +cd %~dp0 +PUSHD %~dp0 + +:: WingIDE version Major +IF "%DCCSI_WING_VERSION_MAJOR%"=="" (set DCCSI_WING_VERSION_MAJOR=7) +:: WingIDE version Major +IF "%DCCSI_WING_VERSION_MINOR%"=="" (set DCCSI_WING_VERSION_MINOR=1) + +:: Initialize env +CALL %~dp0\Env_Core.bat +CALL %~dp0\Env_Python.bat + +:: Wing and other IDEs probably prefer access directly to the python.exe +set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev1-windows\python +echo DCCSI_PY_IDE = %DCCSI_PY_IDE% + +:: ide and debugger plug +set DCCSI_PY_DEFAULT=%DCCSI_PY_IDE%\python.exe + +:: put project env variables/paths here +set WINGHOME=%PROGRAMFILES(X86)%\Wing Pro %DCCSI_WING_VERSION_MAJOR%.%DCCSI_WING_VERSION_MINOR% +IF "%WING_PROJ%"=="" (set WING_PROJ=%O3DE_PROJECT_PATH%\.solutions\.wing\o3de_color_grading_%DCCSI_WING_VERSION_MAJOR%x.wpr) + +echo. +echo _____________________________________________________________________ +echo. +echo ~ O3DE Color Grading Environment ... +echo _____________________________________________________________________ +echo. + +echo DCCSI_WING_VERSION_MAJOR = %DCCSI_WING_VERSION_MAJOR% +echo DCCSI_WING_VERSION_MINOR = %DCCSI_WING_VERSION_MINOR% +echo WINGHOME = %WINGHOME% +echo WING_PROJ = %WING_PROJ% + +:: add to the PATH +SET PATH=%WINGHOME%;%PATH% + +:: Set flag so we don't initialize dccsi environment twice +SET DCCSI_ENV_WINGIDE_INIT=1 +GOTO END_OF_FILE + +:: Return to starting directory +POPD + +:END_OF_FILE diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Launch_WingIDE-7-1.bat b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Launch_WingIDE-7-1.bat new file mode 100644 index 0000000000..15d31b2074 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/Launch_WingIDE-7-1.bat @@ -0,0 +1,96 @@ +@echo off + +REM +REM Copyright (c) Contributors to the Open 3D Engine Project +REM +REM SPDX-License-Identifier: Apache-2.0 OR MIT +REM For complete copyright and license terms please see the LICENSE at the root of this distribution. +REM +REM + +:: Launches Wing IDE and the O3de Color Grading project files + +:: Set up window +TITLE O3DE Color Grading Launch WingIDE 7x +:: Use obvious color to prevent confusion (Grey with Yellow Text) +COLOR 8E + +:: Store current dir +%~d0 +cd %~dp0 +PUSHD %~dp0 + +:: if the user has set up a custom env call it +IF EXIST "%~dp0User_env.bat" CALL %~dp0User_env.bat + +:: Constant Vars (Global) +:: global debug (propogates) +IF "%DCCSI_GDEBUG%"=="" (set DCCSI_GDEBUG=True) +echo DCCSI_GDEBUG = %DCCSI_GDEBUG% +:: initiates debugger connection +IF "%DCCSI_DEV_MODE%"=="" (set DCCSI_DEV_MODE=True) +echo DCCSI_DEV_MODE = %DCCSI_DEV_MODE% +:: sets debugger, options: WING, PYCHARM +IF "%DCCSI_GDEBUGGER%"=="" (set DCCSI_GDEBUGGER=WING) +echo DCCSI_GDEBUGGER = %DCCSI_GDEBUGGER% +:: Default level logger will handle +:: CRITICAL:50 +:: ERROR:40 +:: WARNING:30 +:: INFO:20 +:: DEBUG:10 +:: NOTSET:0 +IF "%DCCSI_LOGLEVEL%"=="" (set DCCSI_LOGLEVEL=10) +echo DCCSI_LOGLEVEL = %DCCSI_LOGLEVEL% + +:: Initialize env +CALL %~dp0\Env_Core.bat +CALL %~dp0\Env_Python.bat +CALL %~dp0\Env_WingIDE.bat +echo. +echo _____________________________________________________________________ +echo. +echo ~ WingIDE Version %DCCSI_WING_VERSION_MAJOR%.%DCCSI_WING_VERSION_MINOR% +echo ~ Launching O3DE %LY_PROJECT% project in WingIDE %DCCSI_WING_VERSION_MAJOR%.%DCCSI_WING_VERSION_MINOR% ... +echo _____________________________________________________________________ +echo. + +echo LY_DEV = %LY_DEV% + +:: shared location for default O3DE python location +set DCCSI_PYTHON_INSTALL=%LY_DEV%\Python +echo DCCSI_PYTHON_INSTALL = %DCCSI_PYTHON_INSTALL% + +:: Wing and other IDEs probably prefer access directly to the python.exe +set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev1-windows\python +echo DCCSI_PY_IDE = %DCCSI_PY_IDE% + +:: ide and debugger plug +set DCCSI_PY_BASE=%DCCSI_PY_IDE%\python.exe +echo DCCSI_PY_BASE = %DCCSI_PY_BASE% + +:: ide and debugger plug +set DCCSI_PY_DEFAULT=%DCCSI_PY_BASE% +echo DCCSI_PY_DEFAULT = %DCCSI_PY_DEFAULT% + +echo. + +:: Change to root dir +CD /D %O3DE_PROJECT_PATH% + +IF EXIST "%WINGHOME%\bin\wing.exe" ( + start "" "%WINGHOME%\bin\wing.exe" "%WING_PROJ%" +) ELSE ( + Where wing.exe 2> NUL + IF ERRORLEVEL 1 ( + echo wing.exe could not be found + pause + ) ELSE ( + start "" wing.exe "%WING_PROJ%" + ) +) + +:: Return to starting directory +POPD + +:END_OF_FILE diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/README.txt b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/README.txt new file mode 100644 index 0000000000..d876dd671d --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/README.txt @@ -0,0 +1,26 @@ +# +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +These are commandline tools for color grading workflow and authoring LUTs externally. +Note: may require OpenColorIO (ocio) and/or OpenImageIO (oiio) to be set up properly. + +CMD_ColorGradingTools.bat :: opens a configured window env context in CMD +Env_Core.bat :: core O3DE env hooks (any envars DCCSI_ shares some overlay with DccScriptingInterface Gem) +Env_Python.bat :: sets up access and configures env for O3DE python (to run externally) +Env_Tools.bat :: hooks for ocio and oiio + :: note: currently you must build coio tools/apps yourself (we used vcpkg and cmake gui) + :: note: oiio, it's .pyd and oiiotool should build in O3DE (if you have troubel issue a ticket to investigate) +Env_WingIDE.bat :: hooks for WingIDE (a python IDE and debugger) + :: note: feel free to configure a different IDE, user choice. +Launch_WingIDE-7-1.bat :: this will launch WingIDE with envar hooks and access to O3DE python (for authroing, debugging) + :: note: you will need to make sure wingstub.py is configured correctly + :: note: you will need to create the wing project file/path (see Env_WingIDE.bat) +User_Env.bat.template :: this is an example of overriding or extending the envar hooks (set local engine root, or branch path, etc.) + :: note: to use, copy and rename to User_Env.bat + :: bote: we use this to primarily enable the debugging related envar hooks \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/User_Env.bat.template b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/User_Env.bat.template new file mode 100644 index 0000000000..81a53393cf --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/cmdline/User_Env.bat.template @@ -0,0 +1,40 @@ +@echo off + +REM +REM Copyright (c) Contributors to the Open 3D Engine Project +REM +REM SPDX-License-Identifier: Apache-2.0 OR MIT +REM For complete copyright and license terms please see the LICENSE at the root of this distribution. +REM +REM + +:: copy this file, rename to User_Env.bat (remove .template) +:: use this file to override any local properties that differ from base + +:: Skip initialization if already completed +IF "%O3DE_USER_ENV_INIT%"=="1" GOTO :END_OF_FILE + +:: Store current dir +%~d0 +cd %~dp0 +PUSHD %~dp0 + +SET O3DE_DEV=C:\Depot\o3de-engine +::SET OCIO_APPS=C:\Depot\o3de-engine\Tools\ColorGrading\ocio\build\src\apps +SET TAG_LY_BUILD_PATH=build +SET DCCSI_GDEBUG=True +SET DCCSI_DEV_MODE=True + +:: set the your user name here for windows path +SET TAG_USERNAME=< not set > +SET DCCSI_PY_REV=rev1 +SET DCCSI_PY_PLATFORM=windows + +:: Set flag so we don't initialize dccsi environment twice +SET O3DE_USER_ENV_INIT=1 +GOTO END_OF_FILE + +:: Return to starting directory +POPD + +:END_OF_FILE \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/Tools/ColorGrading/readme.txt b/Gems/Atom/Feature/Common/Tools/ColorGrading/readme.txt new file mode 100644 index 0000000000..ffa6e9d9e5 --- /dev/null +++ b/Gems/Atom/Feature/Common/Tools/ColorGrading/readme.txt @@ -0,0 +1,98 @@ +################################ +# create identity LUT +ociolutimage --generate --cubesize 16 --output C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_16_LUT.exr + +NOTE: ociolutimage is a OpenColorIO (ocio) app. O3DE does NOT currently build these, however you can build them yourself. + for example, we used vcpkg and cmake gui to build them locally. + we intend to add a fully built integration of ocio in the future. + for now, we have provided all of the LUTs below so that most users will not need the ocio tools. + +################################ +# create base 16x16x16 LUT shaped for grading in 48-nits (LDR), in 1000-nits (HDR), 2000nits, 4000-nits +python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_16_LUT.exr --op pre-grading --shaper Log2-48nits --o C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-48nits_16_LUT.exr + +python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_16_LUT.exr --op pre-grading --shaper Log2-1000nits --o C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-1000nits_16_LUT.exr + +python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_16_LUT.exr --op pre-grading --shaper Log2-2000nits --o C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-2000nits_16_LUT.exr + +python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_16_LUT.exr --op pre-grading --shaper Log2-4000nits --o C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-4000nits_16_LUT.exr + + +################################ +# create base 32x32x32 LUT shaped for grading in 48-nits (LDR), in 1000-nits (HDR), 2000nits, 4000-nits +ociolutimage --generate --cubesize 32 --output C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_32_LUT.exr + +python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_32_LUT.exr --op pre-grading --shaper Log2-48nits --o C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-48nits_32_LUT.exr + +python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_32_LUT.exr --op pre-grading --shaper Log2-1000nits --o C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-1000nits_32_LUT.exr + +python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_32_LUT.exr --op pre-grading --shaper Log2-2000nits --o C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-2000nits_32_LUT.exr + +python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_32_LUT.exr --op pre-grading --shaper Log2-4000nits --o C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-4000nits_32_LUT.exr + + +################################ +# create base 64x64x64 LUT shaped for grading in 48-nits (LDR), in 1000-nits (HDR), 2000nits, 4000-nits +# LUT size 64 broken output without --maxwidth 4096!!! +ociolutimage --generate --cubesize 64 --maxwidth 4096 --output C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_64_LUT.exr + +python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_64_LUT.exr --op pre-grading --shaper Log2-48nits --o C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-48nits_64_LUT.exr + +python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_64_LUT.exr --op pre-grading --shaper Log2-1000nits --o C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-1000nits_64_LUT.exr + +python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_64_LUT.exr --op pre-grading --shaper Log2-2000nits --o C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-2000nits_64_LUT.exr + +python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\linear_64_LUT.exr --op pre-grading --shaper Log2-4000nits --o C:\Depot\o3de\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-4000nits_64_LUT.exr + + +################################ +# Photoshop, Basics +Examples: C:\Depot\o3de-engine\Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\TestData\Photoshop\ + HDR_in_LDR_Log2-48nits\LUT_PreShaped_Composite\* + + 1. This must be installed (righ-click) before launching photoshop: + Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\from_ACEScg_to_sRGB.icc + ^ this is to be used as 'custom color proof' (ACES view transform) + + 2. This is the O3DE 'displaymapper passthrough' capture, re-saved as a .exr: + "ColorGrading\Resources\TestData\Photoshop\Log2-48nits\framebuffer_ACEScg_to_sRGB_icc.exr" + ^ open in photoshop, color proof with the above .icc + the image should proof such that it looks the same as camera in O3DE viewport + with the Displaymapper set to ACES + + 3. Composite this base LUT in a layer on top: + "Gems\Atom\Feature\Common\Tools\ColorGrading\Resources\LUTs\base_Log2-48nits_32_LUT.exr" + ^ this is a pre-shaped 32x32x32 LUT we generated above + + 4. Color Grade using adjustment layers (and hope for the best, some photoshop grades may cause values to clip) + + 5. Select/crop just the LUT, 'Copy Merged' into a new document, save into a folder such as: + "ColorGrading\Resources\TestData\Photoshop\Log2-48nits\i_shaped\test_hue-sat_32_LUT.exr" + ^ this lut is post-grade BUT still shaped (need to inv shape back to normailzed 0-1 values) + + 6. Use the provided cmd/python tools, we need to inverse shape: + + Run: "Gems\Atom\Feature\Common\Tools\ColorGrading\cmdline\CMD_ColorGradingTools.bat" + + C:\Depot\o3de-engine\Gems\Atom\Feature\Common\Tools\ColorGrading>> + + python %DCCSI_COLORGRADING_SCRIPTS%\lut_helper.py --i "Resources\TestData\TestData\Photoshop\Log2-48nits\i_shaped\test_hue-sat_32_LUT.exr" --op post-grading --shaper Log2-48nits --o Resources\TestData\Photoshop\Log2-48nits\o_invShaped\test_hue-sat_32_LUT -l -a + + ^ this will inv-shaped LUT (3DL's are normalized in 0-1 space, values may clip!!!) + ^ -e generates LUT as .exr + ^ -l generates a .3DL version + ^ -a generates a .azasset version <-- this copies/moves to an asset folder + +Using LUTs In-engine: + Only the .azasset needs to be copied to a O3DE project assets folder to use in engine, example: + "C:\Depot\o3de-engine\Gems\Atom\Feature\Common\Assets\ColorGrading\TestData\Photoshop\inv-Log2-48nits\test_hue-sat_32_LUT.azasset" + ^ this is just an example path within the engine folder + + The .azasset can be loaded into a 'Look Modification Component' + + If there are multiple properly configured 'Look Modification Components' you can blend LUTs/Looks (in world space, in a cinematic, etc.) + + By default LUTs utilize linear sampling, but you can use the following CVAR to improve quality for 'any difficult lut': + r_lutSampleQuality=0, linear + r_lutSampleQuality=1, b-spline 7 taps + r_lutSampleQuality=2, b-spline 19 taps (highest quality) \ No newline at end of file diff --git a/Gems/Atom/Feature/Common/preview.png b/Gems/Atom/Feature/Common/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/Atom/Feature/Common/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/Atom/Feature/Mesh/preview.png b/Gems/Atom/Feature/Mesh/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/Atom/Feature/Mesh/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Base.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Base.h index 71b1326fd0..9e1ec4585e 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Base.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Base.h @@ -8,12 +8,14 @@ #pragma once #include +#include #include #include #include #include #include +AZ_DECLARE_BUDGET(RHI); namespace UnitTest { diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Bits.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Bits.h index 6659383c2f..c3972c829e 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Bits.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Bits.h @@ -279,28 +279,3 @@ namespace AZ }; } } - - -// Emits an error when padding is introduced into a struct. -#if defined (AZ_COMPILER_MSVC) - -#define AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN \ - __pragma(warning(push)) \ - __pragma(warning(error : 4820)) - -#define AZ_ASSERT_NO_ALIGNMENT_PADDING_END \ - __pragma(warning(pop)) - -#elif defined (AZ_COMPILER_CLANG) || defined (AZ_COMPILER_GCC) - -#define AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN \ - _Pragma("GCC diagnostic push") \ - _Pragma("GCC diagnostic error \"-Wpadded\"") - -#define AZ_ASSERT_NO_ALIGNMENT_PADDING_END \ - _Pragma("GCC diagnostic pop") - -#else -#define AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN -#define AZ_ASSERT_NO_ALIGNMENT_PADDING_END -#endif diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferDescriptor.h index 80c41bec25..c271045ed0 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferDescriptor.h @@ -67,8 +67,6 @@ namespace AZ BufferBindFlags GetBufferBindFlags(ScopeAttachmentUsage usage, ScopeAttachmentAccess access); - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN - /** * A buffer corresponds to a region of linear memory and used for rendering operations. * Its lifecycle is managed by buffer pools. @@ -103,8 +101,6 @@ namespace AZ /// The mask of queue classes supporting shared access of this resource. HardwareQueueClassMask m_sharedQueueMask = HardwareQueueClassMask::All; }; - - AZ_ASSERT_NO_ALIGNMENT_PADDING_END } diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferViewDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferViewDescriptor.h index 887cbcb9bb..3aadc8e7db 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferViewDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferViewDescriptor.h @@ -19,8 +19,6 @@ namespace AZ namespace RHI { - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN - //! Buffer views describe how to interpret a region of memory in a buffer. struct BufferViewDescriptor { @@ -85,7 +83,5 @@ namespace AZ // manual alignment padding char m_pad0 = 0, m_pad1 = 0, m_pad2 = 0; }; - - AZ_ASSERT_NO_ALIGNMENT_PADDING_END } } diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageDescriptor.h index 17fb5e9207..a90d52ac21 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageDescriptor.h @@ -21,8 +21,6 @@ namespace AZ { ImageBindFlags GetImageBindFlags(ScopeAttachmentUsage usage, ScopeAttachmentAccess access); - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN - /** * Images are comprised of sub-resources corresponding to the number of mip-mip levels * and array slices. Image data is stored as pixels in opaque swizzled formats. Images @@ -111,8 +109,6 @@ namespace AZ uint32_t m_isCubemap = 0; }; - AZ_ASSERT_NO_ALIGNMENT_PADDING_END - /// Returns whether mip 'A' is more detailed than mip 'B'. inline bool IsMipMoreDetailedThan(uint32_t mipA, uint32_t mipB) { diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageViewDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageViewDescriptor.h index cb0682e967..c9ca1856f3 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageViewDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageViewDescriptor.h @@ -20,8 +20,6 @@ namespace AZ namespace RHI { - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN - /** * Image views map to a range of mips / array slices in an image. */ @@ -124,7 +122,5 @@ namespace AZ /// This is needed because a texture array can have 1 layer only. uint32_t m_isArray = 0; }; - - AZ_ASSERT_NO_ALIGNMENT_PADDING_END } } diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/IndirectBufferLayout.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/IndirectBufferLayout.h index 0cde499546..fd26d845f7 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/IndirectBufferLayout.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/IndirectBufferLayout.h @@ -42,8 +42,6 @@ namespace AZ AZ_DEFINE_ENUM_BITWISE_OPERATORS(AZ::RHI::IndirectCommandTiers); - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN - //! Arguments when setting an indirect Vertex Buffer View command. struct IndirectBufferViewArguments { @@ -84,8 +82,6 @@ namespace AZ IndirectBufferViewArguments m_vertexBufferArgs; }; - AZ_ASSERT_NO_ALIGNMENT_PADDING_END - AZ_FORCE_INLINE bool operator==(const IndirectCommandDescriptor& lhs, const IndirectCommandDescriptor& rhs) { return diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MultisampleState.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MultisampleState.h index 1c4979b773..689e23562d 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MultisampleState.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MultisampleState.h @@ -19,8 +19,6 @@ namespace AZ namespace RHI { - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN - // Defines a custom sample position when doing Multisample rendering. // Sample positions have the origin(0, 0) at the pixel top left. // Each of the X and Y coordinates are unsigned values in the range 0 (top / left) to Limits::Pipeline::MultiSampleCustomLocationGridSize - 1 (bottom / right). @@ -56,7 +54,5 @@ namespace AZ uint16_t m_samples = 1; uint16_t m_quality = 0; }; - - AZ_ASSERT_NO_ALIGNMENT_PADDING_END } } diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PipelineLayoutDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PipelineLayoutDescriptor.h index 31fcd9be10..216021a316 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PipelineLayoutDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PipelineLayoutDescriptor.h @@ -22,7 +22,6 @@ namespace AZ { namespace RHI { - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN struct ResourceBindingInfo { AZ_TYPE_INFO(ResourceBindingInfo, "{2B25FA97-21C2-4567-8F01-6A64F7B9DFF6}"); @@ -45,7 +44,6 @@ namespace AZ /// Register id of a resource. Register m_registerId = InvalidRegister; }; - AZ_ASSERT_NO_ALIGNMENT_PADDING_END /** * This class describes binding information about the Shader Resource Group diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PlatformLimitsDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PlatformLimitsDescriptor.h index 2d85420694..a239242b33 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PlatformLimitsDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PlatformLimitsDescriptor.h @@ -68,7 +68,7 @@ namespace AZ HeapMemoryHintParameters m_usageHintParameters; HeapAllocationStrategy m_heapAllocationStrategy = HeapAllocationStrategy::MemoryHint; - void LoadPlatformLimitsDescriptor(const char* rhiName); + virtual void LoadPlatformLimitsDescriptor(const char* rhiName); }; class PlatformLimits final diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RHISystemDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RHISystemDescriptor.h deleted file mode 100644 index 8c512662e7..0000000000 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RHISystemDescriptor.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#pragma once - -#include -#include - -namespace AZ -{ - class ReflectContext; - - - namespace RHI - { - class PlatformLimits; - struct RHISystemDescriptor final - { - AZ_TYPE_INFO(RHISystemDescriptor, "{A506DA28-856C-483A-938D-73471D2C5A5B}"); - static void Reflect(AZ::ReflectContext* context); - - //! The set of globally declared draw list tags, which will be registered with the registry at startup. - AZStd::vector m_drawListTags; - }; - } // namespace RHI -} // namespace AZ diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderAttachmentLayout.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderAttachmentLayout.h index 6bbf013261..9a3c3dd226 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderAttachmentLayout.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderAttachmentLayout.h @@ -23,7 +23,6 @@ namespace AZ { static const uint32_t InvalidRenderAttachmentIndex = Limits::Pipeline::RenderAttachmentCountMax; - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN //! Describes one render attachment that is part of a layout. struct RenderAttachmentDescriptor { @@ -91,7 +90,6 @@ namespace AZ //! List with the layout of each subpass. AZStd::array m_subpassLayouts; }; - AZ_ASSERT_NO_ALIGNMENT_PADDING_END //! Describes the layout of a collection of subpasses and it defines which of the subpasses this //! configuration will be using. diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderStates.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderStates.h index d56e3e3fd5..ae2141a1e8 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderStates.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderStates.h @@ -82,8 +82,6 @@ namespace AZ void ReflectRenderStateEnums(ReflectContext* context); - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN - struct RasterState { AZ_TYPE_INFO(RasterState, "{57D4BE50-EBE2-4ABE-90A4-C99BF2EA43FB}"); @@ -216,8 +214,6 @@ namespace AZ static constexpr int32_t RenderStates_InvalidInt = std::numeric_limits::max(); static constexpr float RenderStates_InvalidFloat = std::numeric_limits::max(); - AZ_ASSERT_NO_ALIGNMENT_PADDING_END - //! Merges any render states in stateToMerge into the result state object. //! The values in stateToMerge are only copied over into the result if they are //! not invalid (see also GetInvalidState below). diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/SamplerState.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/SamplerState.h index 46cc8525f3..2771d23495 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/SamplerState.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/SamplerState.h @@ -70,8 +70,6 @@ namespace AZ void ReflectSamplerStateEnums(ReflectContext* context); - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN - class SamplerState { public: @@ -107,8 +105,6 @@ namespace AZ float m_mipLodBias = 0.0f; BorderColor m_borderColor = BorderColor::TransparentBlack; }; - - AZ_ASSERT_NO_ALIGNMENT_PADDING_END } AZ_TYPE_INFO_SPECIALIZE(RHI::FilterMode, "{CFAE2156-0293-4D71-87D5-68F5C9F98884}"); diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferPool.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferPool.h index abbd316bc7..2d226407c7 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferPool.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferPool.h @@ -223,6 +223,9 @@ namespace AZ /// Called when a buffer is being streamed asynchronously. virtual ResultCode StreamBufferInternal(const BufferStreamRequest& request); + //Called in order to do a simple mem copy allowing Null rhi to opt out + virtual void BufferCopy(void* destination, const void* source, size_t num); + ////////////////////////////////////////////////////////////////////////// BufferPoolDescriptor m_descriptor; diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ConstantsData.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ConstantsData.h index ff1158e455..82b0b7146b 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ConstantsData.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ConstantsData.h @@ -248,7 +248,6 @@ namespace AZ AZStd::array_view constantBytes = GetConstantRaw(inputIndex); const size_t elementSize = sizeof(T); const size_t elementOffset = arrayIndex * elementSize; - const size_t elementCount = DivideByMultiple(constantBytes.size(), elementSize); if (ValidateConstantAccess(inputIndex, ValidateConstantAccessExpect::ArrayElement, elementOffset, elementSize)) { return *reinterpret_cast(&constantBytes[elementOffset]); diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfilerImpl.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfilerImpl.h index 9372977d8e..92b56880b7 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfilerImpl.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfilerImpl.h @@ -173,13 +173,14 @@ namespace AZ static void Reflect(AZ::ReflectContext* context); CpuProfilingStatisticsSerializerEntry() = default; - CpuProfilingStatisticsSerializerEntry(const RHI::CachedTimeRegion& cachedTimeRegion); + CpuProfilingStatisticsSerializerEntry(const RHI::CachedTimeRegion& cachedTimeRegion, AZStd::thread_id threadId); Name m_groupName; Name m_regionName; uint16_t m_stackDepth; AZStd::sys_time_t m_startTick; AZStd::sys_time_t m_endTick; + size_t m_threadId; }; AZ_TYPE_INFO(CpuProfilingStatisticsSerializer, "{D5B02946-0D27-474F-9A44-364C2706DD41}"); diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/Factory.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/Factory.h index 11f28e7a94..e0f03df9d7 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/Factory.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/Factory.h @@ -9,12 +9,15 @@ #include #include +#include #include #if defined(USE_RENDERDOC) #include #endif +AZ_DECLARE_BUDGET(RHI); + namespace AZ { namespace RHI diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndexBufferView.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndexBufferView.h index 7219709109..8e19ad1bff 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndexBufferView.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndexBufferView.h @@ -24,9 +24,7 @@ namespace AZ uint32_t GetIndexFormatSize(IndexFormat indexFormat); - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN - - class IndexBufferView + class alignas(8) IndexBufferView { public: IndexBufferView() = default; @@ -58,10 +56,6 @@ namespace AZ uint32_t m_byteOffset = 0; uint32_t m_byteCount = 0; IndexFormat m_format = IndexFormat::Uint32; - // Padding the size so it's 8 bytes aligned - uint32_t m_pad = 0; }; - - AZ_ASSERT_NO_ALIGNMENT_PADDING_END } } diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferView.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferView.h index 7014fd030c..b97ea81dd8 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferView.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferView.h @@ -17,11 +17,9 @@ namespace AZ class Buffer; class IndirectBufferSignature; - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN - //! Provides a view into a buffer, to be used as an indirect buffer. The content of the view is a contiguous //! list of commands sequences. It is provided to the RHI back-end at draw time. - class IndirectBufferView + class alignas(8) IndirectBufferView { public: IndirectBufferView() = default; @@ -59,10 +57,6 @@ namespace AZ uint32_t m_byteOffset = 0; uint32_t m_byteCount = 0; uint32_t m_byteStride = 0; - // Padding the size so it's 8 bytes aligned - uint32_t m_pad = 0; }; - - AZ_ASSERT_NO_ALIGNMENT_PADDING_END } } diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystem.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystem.h index 25026b5b87..599108654a 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystem.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystem.h @@ -14,7 +14,6 @@ #include #include #include -#include namespace AZ { @@ -33,7 +32,7 @@ namespace AZ void InitDevice(); //! This function initializes the rest of the RHI/RHI backend. - void Init(const RHISystemDescriptor& descriptor); + void Init(); void Shutdown(); //! An external callback to build the frame graph. diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystemInterface.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystemInterface.h index 277b974641..6a9650e0a1 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystemInterface.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystemInterface.h @@ -8,12 +8,15 @@ #pragma once +#include #include #include #include #include #include +AZ_DECLARE_BUDGET(RHI); + namespace AZ { namespace RHI diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/StreamBufferView.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/StreamBufferView.h index 9c9a16e8df..4efc7da002 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/StreamBufferView.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/StreamBufferView.h @@ -18,8 +18,6 @@ namespace AZ class Buffer; class InputStreamLayout; - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN - /** * Provides a view into a buffer, to be used as vertex stream. The content of the view is a contiguous * list of input vertex data. It is provided to the RHI back-end at draw time. @@ -31,7 +29,7 @@ namespace AZ * or interleaved in a single StreamBufferView (one view having multiple StreamChannelDescriptors). * - The view will correspond to a single StreamBufferDescriptor. */ - class StreamBufferView + class alignas(8) StreamBufferView { public: StreamBufferView() = default; @@ -64,12 +62,8 @@ namespace AZ uint32_t m_byteOffset = 0; uint32_t m_byteCount = 0; uint32_t m_byteStride = 0; - // Padding the size so it's 8 bytes aligned - uint32_t m_pad = 0; }; - AZ_ASSERT_NO_ALIGNMENT_PADDING_END - /// Utility function for checking that the set of StreamBufferViews aligns with the InputStreamLayout bool ValidateStreamBufferViews(const InputStreamLayout& inputStreamLayout, AZStd::array_view streamBufferViews); } diff --git a/Gems/Atom/RHI/Code/Source/RHI.Edit/Utils.cpp b/Gems/Atom/RHI/Code/Source/RHI.Edit/Utils.cpp index 8c64f1611f..d5b626917b 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Edit/Utils.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Edit/Utils.cpp @@ -8,7 +8,7 @@ #include -#include +#include #include #include diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp index 250f03716d..eaaefe6065 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp @@ -77,7 +77,7 @@ namespace AZ void PlatformLimitsDescriptor::LoadPlatformLimitsDescriptor(const char* rhiName) { auto settingsRegistry = AZ::SettingsRegistry::Get(); - AZStd::string platformLimitsRegPath = AZStd::string::format("/Amazon/Atom/RHI/PlatformLimits/%s", rhiName); + AZStd::string platformLimitsRegPath = AZStd::string::format("/O3DE/Atom/RHI/PlatformLimits/%s", rhiName); if (!(settingsRegistry && settingsRegistry->GetObject(this, azrtti_typeid(this), platformLimitsRegPath.c_str()))) { diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/RHISystemDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/RHISystemDescriptor.cpp deleted file mode 100644 index 45463c79ac..0000000000 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/RHISystemDescriptor.cpp +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#include -#include - -#include -#include - -namespace AZ -{ - namespace RHI - { - void RHISystemDescriptor::Reflect(AZ::ReflectContext* context) - { - if (auto* serializeContext = azrtti_cast(context)) - { - serializeContext->Class() - ->Version(4) - ->Field("DrawItemTags", &RHISystemDescriptor::m_drawListTags) - ; - - if (AZ::EditContext* ec = serializeContext->GetEditContext()) - { - ec->Class("RHI Settings", "Settings for runtime RHI system") - ->ClassElement(AZ::Edit::ClassElements::EditorData, "") - ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("System", 0xc94d118b)) - ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - ->DataElement(AZ::Edit::UIHandlers::Default, &RHISystemDescriptor::m_drawListTags, "Draw List Tags", "The set of globally declared draw list tags, which will be registered with the registry at startup.") - ; - } - } - } - } // namespace RPI -} // namespace AZ diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp index 691a07b24d..c7f7e777aa 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp @@ -27,7 +27,6 @@ #include #include #include -#include #include #include #include @@ -161,7 +160,6 @@ namespace AZ TransientAttachmentPoolBudgets::Reflect(context); PlatformLimits::Reflect(context); PlatformLimitsDescriptor::Reflect(context); - RHISystemDescriptor::Reflect(context); Origin::Reflect(context); ReflectVendorIdEnums(context); PhysicalDeviceDriverValidator::Reflect(context); diff --git a/Gems/Atom/RHI/Code/Source/RHI/AsyncWorkQueue.cpp b/Gems/Atom/RHI/Code/Source/RHI/AsyncWorkQueue.cpp index a32301276e..52021fa736 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/AsyncWorkQueue.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/AsyncWorkQueue.cpp @@ -9,6 +9,8 @@ #include +AZ_DECLARE_BUDGET(RHI); + namespace AZ { namespace RHI @@ -126,7 +128,7 @@ namespace AZ return; } - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZStd::unique_lock lock(m_waitWorkItemMutex); m_waitWorkItemCondition.wait(lock, [&]() {return HasFinishedWork(workHandle); }); diff --git a/Gems/Atom/RHI/Code/Source/RHI/BufferPool.cpp b/Gems/Atom/RHI/Code/Source/RHI/BufferPool.cpp index 3c0359bf8a..9849db254e 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/BufferPool.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/BufferPool.cpp @@ -143,7 +143,7 @@ namespace AZ resultCode = MapBufferInternal(mapRequest, mapResponse); if (resultCode == ResultCode::Success) { - memcpy(mapResponse.m_data, initRequest.m_initialData, initRequest.m_descriptor.m_byteCount); + BufferCopy(mapResponse.m_data, initRequest.m_initialData, initRequest.m_descriptor.m_byteCount); UnmapBufferInternal(*initRequest.m_buffer); } } @@ -219,6 +219,11 @@ namespace AZ return m_descriptor; } + void BufferPool::BufferCopy(void* destination, const void* source, size_t num) + { + memcpy(destination, source, num); + } + ResultCode BufferPool::StreamBufferInternal([[maybe_unused]] const BufferStreamRequest& request) { return ResultCode::Unimplemented; diff --git a/Gems/Atom/RHI/Code/Source/RHI/BufferPoolBase.cpp b/Gems/Atom/RHI/Code/Source/RHI/BufferPoolBase.cpp index 8d61617da5..64f4454f0f 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/BufferPoolBase.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/BufferPoolBase.cpp @@ -34,7 +34,7 @@ namespace AZ if (!isDataValid) { - AZ_Warning("BufferPoolBase", false, "Failed to map buffer '%s'.", buffer.GetName().GetCStr()); + AZ_Error("BufferPoolBase", false, "Failed to map buffer '%s'.", buffer.GetName().GetCStr()); } ++buffer.m_mapRefCount; ++m_mapRefCount; diff --git a/Gems/Atom/RHI/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/Code/Source/RHI/CommandQueue.cpp index 2474967dab..15621c7f2b 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/CommandQueue.cpp @@ -22,7 +22,7 @@ namespace AZ ResultCode CommandQueue::Init(Device& device, const CommandQueueDescriptor& descriptor) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); #if defined (AZ_RHI_ENABLE_VALIDATION) if (IsInitialized()) @@ -116,7 +116,7 @@ namespace AZ //run a command { - AZ_PROFILE_SCOPE(AzRender, "RHI::CommandQueue - Execute Command"); + AZ_PROFILE_SCOPE(RHI, "CommandQueue - Execute Command"); command(GetNativeQueue()); } } diff --git a/Gems/Atom/RHI/Code/Source/RHI/CpuProfilerImpl.cpp b/Gems/Atom/RHI/Code/Source/RHI/CpuProfilerImpl.cpp index 6cfd68d3c6..8099fc3a32 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/CpuProfilerImpl.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/CpuProfilerImpl.cpp @@ -417,14 +417,14 @@ namespace AZ // Create serializable entries for (const auto& timeRegionMap : continuousData) { - for (const auto& threadEntry : timeRegionMap) + for (const auto& [threadId, regionMap] : timeRegionMap) { - for (const auto& cachedRegionEntry : threadEntry.second) + for (const auto& [regionName, regionVec] : regionMap) { - m_cpuProfilingStatisticsSerializerEntries.insert( - m_cpuProfilingStatisticsSerializerEntries.end(), - cachedRegionEntry.second.begin(), - cachedRegionEntry.second.end()); + for (const auto& region : regionVec) + { + m_cpuProfilingStatisticsSerializerEntries.emplace_back(region, threadId); + } } } } @@ -445,13 +445,15 @@ namespace AZ // --- CpuProfilingStatisticsSerializerEntry --- - CpuProfilingStatisticsSerializer::CpuProfilingStatisticsSerializerEntry::CpuProfilingStatisticsSerializerEntry(const RHI::CachedTimeRegion& cachedTimeRegion) + CpuProfilingStatisticsSerializer::CpuProfilingStatisticsSerializerEntry::CpuProfilingStatisticsSerializerEntry( + const RHI::CachedTimeRegion& cachedTimeRegion, AZStd::thread_id threadId) { m_groupName = cachedTimeRegion.m_groupRegionName->m_groupName; m_regionName = cachedTimeRegion.m_groupRegionName->m_regionName; m_stackDepth = cachedTimeRegion.m_stackDepth; m_startTick = cachedTimeRegion.m_startTick; m_endTick = cachedTimeRegion.m_endTick; + m_threadId = AZStd::hash{}(threadId); } void CpuProfilingStatisticsSerializer::CpuProfilingStatisticsSerializerEntry::Reflect(AZ::ReflectContext* context) @@ -465,6 +467,7 @@ namespace AZ ->Field("stackDepth", &CpuProfilingStatisticsSerializerEntry::m_stackDepth) ->Field("startTick", &CpuProfilingStatisticsSerializerEntry::m_startTick) ->Field("endTick", &CpuProfilingStatisticsSerializerEntry::m_endTick) + ->Field("threadId", &CpuProfilingStatisticsSerializerEntry::m_threadId) ; } } diff --git a/Gems/Atom/RHI/Code/Source/RHI/DrawPacketBuilder.cpp b/Gems/Atom/RHI/Code/Source/RHI/DrawPacketBuilder.cpp index 7bfaed0a31..ebda9732df 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/DrawPacketBuilder.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/DrawPacketBuilder.cpp @@ -119,7 +119,7 @@ namespace AZ LinearAllocator linearAllocator; linearAllocator.Init(linearAllocatorDesc); - const VirtualAddress drawPacketOffset = linearAllocator.Allocate( + [[maybe_unused]] const VirtualAddress drawPacketOffset = linearAllocator.Allocate( sizeof(DrawPacket), AZStd::alignment_of::value); diff --git a/Gems/Atom/RHI/Code/Source/RHI/Fence.cpp b/Gems/Atom/RHI/Code/Source/RHI/Fence.cpp index 868d2e3317..b35260caca 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/Fence.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/Fence.cpp @@ -81,7 +81,7 @@ namespace AZ return ResultCode::InvalidOperation; } - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); WaitOnCpuInternal(); return ResultCode::Success; } diff --git a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuteGroup.cpp b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuteGroup.cpp index a493fbd143..d00991421f 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuteGroup.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuteGroup.cpp @@ -71,7 +71,7 @@ namespace AZ { EndContextInternal(m_contexts[contextIndex], contextIndex); - const int32_t activeCount = --m_contextCountActive; + [[maybe_unused]] const int32_t activeCount = --m_contextCountActive; AZ_Assert(activeCount >= 0, "Asymmetric calls to FrameSchedulerExecuteContext:: Begin / End."); ++m_contextCountCompleted; } diff --git a/Gems/Atom/RHI/Code/Source/RHI/FrameScheduler.cpp b/Gems/Atom/RHI/Code/Source/RHI/FrameScheduler.cpp index 0793c1ffd0..0b8c6ad9ce 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FrameScheduler.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FrameScheduler.cpp @@ -137,7 +137,7 @@ namespace AZ ResultCode FrameScheduler::ImportScopeProducer(ScopeProducer& scopeProducer) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); if (!ValidateIsProcessing()) { @@ -216,7 +216,7 @@ namespace AZ void FrameScheduler::PrepareProducers() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_ATOM_PROFILE_FUNCTION("RHI", "FrameScheduler: PrepareProducers"); for (ScopeProducer* scopeProducer : m_scopeProducers) @@ -237,7 +237,7 @@ namespace AZ void FrameScheduler::CompileProducers() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_ATOM_PROFILE_FUNCTION("RHI", "FrameScheduler: CompileProducers"); for (ScopeProducer* scopeProducer : m_scopeProducers) @@ -249,12 +249,12 @@ namespace AZ void FrameScheduler::CompileShaderResourceGroups() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_ATOM_PROFILE_FUNCTION("RHI", "FrameScheduler: CompileShaderResourceGroups"); // Execute all queued resource invalidations, which will mark SRG's for compilation. { - AZ_PROFILE_SCOPE(AzRender, "Invalidate Resources"); + AZ_PROFILE_SCOPE(RHI, "Invalidate Resources"); ResourceInvalidateBus::ExecuteQueuedEvents(); } @@ -322,7 +322,7 @@ namespace AZ void FrameScheduler::BuildRayTracingShaderTables() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_ATOM_PROFILE_FUNCTION("RHI", "FrameScheduler: BuildRayTracingShaderTables"); for (auto rayTracingShaderTable : m_rayTracingShaderTablesToBuild) @@ -341,7 +341,7 @@ namespace AZ ResultCode FrameScheduler::BeginFrame() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_ATOM_PROFILE_FUNCTION("RHI", "FrameScheduler: BeginFrame"); if (!ValidateIsInitialized()) @@ -376,7 +376,7 @@ namespace AZ ResultCode FrameScheduler::EndFrame() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_ATOM_PROFILE_FUNCTION("RHI", "FrameScheduler: EndFrame"); if (Validation::IsEnabled()) @@ -417,13 +417,13 @@ namespace AZ void FrameScheduler::ExecuteContextInternal(FrameGraphExecuteGroup& group, uint32_t index) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); FrameGraphExecuteContext* executeContext = group.BeginContext(index); { ScopeProducer* scopeProducer = FindScopeProducer(executeContext->GetScopeId()); - AZ_PROFILE_SCOPE(AzRender, "ScopeProducer: %s", scopeProducer->GetScopeId().GetCStr()); + AZ_PROFILE_SCOPE(RHI, "ScopeProducer: %s", scopeProducer->GetScopeId().GetCStr()); scopeProducer->BuildCommandList(*executeContext); } @@ -432,7 +432,7 @@ namespace AZ void FrameScheduler::ExecuteGroupInternal(AZ::Job* parentJob, uint32_t groupIndex) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_ATOM_PROFILE_FUNCTION("RHI", "FrameScheduler: ExecuteGroupInternal"); FrameGraphExecuteGroup* executeGroup = m_frameGraphExecuter->BeginGroup(groupIndex); @@ -475,7 +475,7 @@ namespace AZ void FrameScheduler::Execute(JobPolicy overrideJobPolicy) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_ATOM_PROFILE_FUNCTION("RHI", "FrameScheduler: Execute"); const uint32_t groupCount = m_frameGraphExecuter->GetGroupCount(); diff --git a/Gems/Atom/RHI/Code/Source/RHI/PipelineStateCache.cpp b/Gems/Atom/RHI/Code/Source/RHI/PipelineStateCache.cpp index 69eee86108..52093f7b4c 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/PipelineStateCache.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/PipelineStateCache.cpp @@ -177,7 +177,7 @@ namespace AZ */ AZStd::vector threadLibraries; - m_threadLibrarySet.ForEach([this, handle, &threadLibraries](const ThreadLibrarySet& threadLibrarySet) + m_threadLibrarySet.ForEach([handle, &threadLibraries](const ThreadLibrarySet& threadLibrarySet) { const ThreadLibraryEntry& threadLibraryEntry = threadLibrarySet[handle.GetIndex()]; @@ -272,7 +272,7 @@ namespace AZ const PipelineState* PipelineStateCache::AcquirePipelineState(PipelineLibraryHandle handle, const PipelineStateDescriptor& descriptor) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); if (handle.IsNull()) { diff --git a/Gems/Atom/RHI/Code/Source/RHI/RHISystem.cpp b/Gems/Atom/RHI/Code/Source/RHI/RHISystem.cpp index 8f8b7677fd..a381209d2b 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/RHISystem.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/RHISystem.cpp @@ -19,6 +19,8 @@ #include #include +AZ_DEFINE_BUDGET(RHI); + namespace AZ { namespace RHI @@ -34,7 +36,7 @@ namespace AZ m_device = InitInternalDevice(); } - void RHISystem::Init(const RHISystemDescriptor& descriptor) + void RHISystem::Init() { m_cpuProfiler.Init(); @@ -84,14 +86,6 @@ namespace AZ frameSchedulerDescriptor.m_platformLimitsDescriptor = platformLimitsDescriptor; m_frameScheduler.Init(*m_device, frameSchedulerDescriptor); - - // Register draw list tags declared from content. - for (const Name& drawListName : descriptor.m_drawListTags) - { - RHI::DrawListTag drawListTag = m_drawListTagRegistry->AcquireTag(drawListName); - - AZ_Warning("RHISystem", drawListTag.IsValid(), "Failed to register draw list tag '%s'. Registry at capacity.", drawListName.GetCStr()); - } } RHI::Ptr RHISystem::InitInternalDevice() @@ -153,7 +147,7 @@ namespace AZ // Some GPU drivers have known issues and it is recommended to update or use other versions. auto settingsRegistry = AZ::SettingsRegistry::Get(); PhysicalDeviceDriverValidator physicalDriverValidator; - if (!(settingsRegistry && settingsRegistry->GetObject(physicalDriverValidator, "/Amazon/Atom/RHI/PhysicalDeviceDriverInfo"))) + if (!(settingsRegistry && settingsRegistry->GetObject(physicalDriverValidator, "/O3DE/Atom/RHI/PhysicalDeviceDriverInfo"))) { AZ_Printf("RHISystem", "Failed to get settings registry for GPU driver Info."); } @@ -193,11 +187,11 @@ namespace AZ void RHISystem::FrameUpdate(FrameGraphCallback frameGraphCallback) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_ATOM_PROFILE_FUNCTION("RHI", "RHISystem: FrameUpdate"); { - AZ_PROFILE_SCOPE(AzRender, "main per-frame work"); + AZ_PROFILE_SCOPE(RHI, "main per-frame work"); m_frameScheduler.BeginFrame(); frameGraphCallback(m_frameScheduler); diff --git a/Gems/Atom/RHI/Code/Source/RHI/Resource.cpp b/Gems/Atom/RHI/Code/Source/RHI/Resource.cpp index b7ae469f16..f27ea22d8a 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/Resource.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/Resource.cpp @@ -98,8 +98,8 @@ namespace AZ if (Validation::IsEnabled()) { // The frame attachment has tight control over lifecycle here. - const bool isAttach = (!m_frameAttachment && frameAttachment); - const bool isDetach = (m_frameAttachment && !frameAttachment); + [[maybe_unused]] const bool isAttach = (!m_frameAttachment && frameAttachment); + [[maybe_unused]] const bool isDetach = (m_frameAttachment && !frameAttachment); AZ_Assert(isAttach || isDetach, "The frame attachment for resource '%s' was not assigned properly."); } diff --git a/Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp b/Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp index fa4c14089f..e43510adb5 100644 --- a/Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp @@ -67,7 +67,6 @@ namespace UnitTest AZStd::vector retiredAllocationsCurrent; AZStd::vector retiredAllocationsPrevious; - const size_t AllocationCount = 100; const size_t AllocationSizeRange = descriptor.m_allocationSizeMax - descriptor.m_allocationSizeMin; AZStd::string outputString; diff --git a/Gems/Atom/RHI/Code/Tests/BufferTests.cpp b/Gems/Atom/RHI/Code/Tests/BufferTests.cpp index 0ce4626b92..acf680a6d8 100644 --- a/Gems/Atom/RHI/Code/Tests/BufferTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/BufferTests.cpp @@ -121,6 +121,7 @@ namespace UnitTest bufferPool->ForEach([&bufferIndex, &buffers]([[maybe_unused]] RHI::Buffer& buffer) { + AZ_UNUSED(buffers); // Prevent unused warning in release builds AZ_Assert(buffers[bufferIndex] == &buffer, "buffers don't match"); bufferIndex++; }); diff --git a/Gems/Atom/RHI/Code/Tests/FrameGraph.cpp b/Gems/Atom/RHI/Code/Tests/FrameGraph.cpp index e03c9d13b4..bc2dce056c 100644 --- a/Gems/Atom/RHI/Code/Tests/FrameGraph.cpp +++ b/Gems/Atom/RHI/Code/Tests/FrameGraph.cpp @@ -58,7 +58,7 @@ namespace UnitTest FrameGraphExecuteGroup* group = AddGroup(); group->Init(scope->GetId()); - const bool wasInserted = m_scopeIds.emplace(scope->GetId()).second; + [[maybe_unused]] const bool wasInserted = m_scopeIds.emplace(scope->GetId()).second; AZ_Assert(wasInserted, "scope was inserted already"); } } diff --git a/Gems/Atom/RHI/Code/Tests/ImageTests.cpp b/Gems/Atom/RHI/Code/Tests/ImageTests.cpp index d3f528c9cd..ebcc05abe1 100644 --- a/Gems/Atom/RHI/Code/Tests/ImageTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/ImageTests.cpp @@ -108,6 +108,7 @@ namespace UnitTest imagePool->ForEach([&imageIndex, &images]([[maybe_unused]] const RHI::Image& image) { + AZ_UNUSED(images); // Prevent unused warning in release builds AZ_Assert(images[imageIndex] == &image, "images don't match"); imageIndex++; }); diff --git a/Gems/Atom/RHI/Code/Tests/QueryTests.cpp b/Gems/Atom/RHI/Code/Tests/QueryTests.cpp index f883f6a8bd..9eb45cbd96 100644 --- a/Gems/Atom/RHI/Code/Tests/QueryTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/QueryTests.cpp @@ -112,6 +112,7 @@ namespace UnitTest queryPool->ForEach([&queryIndex, &queries]([[maybe_unused]] RHI::Query& query) { + AZ_UNUSED(queries); // Prevent unused warning in release builds AZ_Assert(queries[queryIndex] == &query, "Queries don't match"); queryIndex++; }); diff --git a/Gems/Atom/RHI/Code/Tests/ShaderResourceGroupTests.cpp b/Gems/Atom/RHI/Code/Tests/ShaderResourceGroupTests.cpp index 32d89cd596..83b3b68b25 100644 --- a/Gems/Atom/RHI/Code/Tests/ShaderResourceGroupTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/ShaderResourceGroupTests.cpp @@ -56,8 +56,7 @@ namespace UnitTest const uint32_t BufferConstantCount = 2; const uint32_t BufferReadCount = 2; const uint32_t BufferReadWriteCount = 2; - const uint32_t BindingIndex = 1; - + AZStd::unique_ptr m_factory; AZStd::unique_ptr m_serializeContext; diff --git a/Gems/Atom/RHI/Code/atom_rhi_reflect_files.cmake b/Gems/Atom/RHI/Code/atom_rhi_reflect_files.cmake index 9c4ca9a60d..e211462eeb 100644 --- a/Gems/Atom/RHI/Code/atom_rhi_reflect_files.cmake +++ b/Gems/Atom/RHI/Code/atom_rhi_reflect_files.cmake @@ -118,9 +118,7 @@ set(FILES Include/Atom/RHI.Reflect/SwapChainDescriptor.h Source/RHI.Reflect/SwapChainDescriptor.cpp Include/Atom/RHI.Reflect/ReflectSystemComponent.h - Include/Atom/RHI.Reflect/RHISystemDescriptor.h Source/RHI.Reflect/ReflectSystemComponent.cpp - Source/RHI.Reflect/RHISystemDescriptor.cpp Include/Atom/RHI.Reflect/AliasedHeapEnums.h Include/Atom/RHI.Reflect/TransientBufferDescriptor.h Include/Atom/RHI.Reflect/TransientImageDescriptor.h diff --git a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/PlatformLimitsDescriptor.h b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/PlatformLimitsDescriptor.h index cbf1fd11f6..1f22599b38 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/PlatformLimitsDescriptor.h +++ b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/PlatformLimitsDescriptor.h @@ -65,6 +65,8 @@ namespace AZ AZStd::unordered_map> m_descriptorHeapLimits; FrameGraphExecuterData m_frameGraphExecuterData; + + void LoadPlatformLimitsDescriptor(const char* rhiName) override; }; } } diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp index 980264aa9b..77b41d6ffc 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp @@ -7,6 +7,7 @@ */ #include #include +#include namespace AZ { @@ -39,5 +40,27 @@ namespace AZ ; } } + + void PlatformLimitsDescriptor::LoadPlatformLimitsDescriptor(const char* rhiName) + { + auto settingsRegistry = AZ::SettingsRegistry::Get(); + AZStd::string platformLimitsRegPath = AZStd::string::format("/O3DE/Atom/RHI/PlatformLimits/%s", rhiName); + if (!(settingsRegistry && settingsRegistry->GetObject(this, azrtti_typeid(this), platformLimitsRegPath.c_str()))) + { + AZ_Warning( + "Device", false, "Platform limits for %s %s is not loaded correctly. Will use default values.", + AZ_TRAIT_OS_PLATFORM_NAME, rhiName); + + // Map default value must be initialized after attempting to serialize (and result in failure). + // Otherwise, serialization won't overwrite the default values. + m_descriptorHeapLimits = AZStd::unordered_map>({ + { AZStd::string("DESCRIPTOR_HEAP_TYPE_CBV_SRV_UAV"), { 1000000, 1000000 } }, + { AZStd::string("DESCRIPTOR_HEAP_TYPE_SAMPLER"), { 2048, 2048 } }, + { AZStd::string("DESCRIPTOR_HEAP_TYPE_RTV"), { 2048, 0 } }, + { AZStd::string("DESCRIPTOR_HEAP_TYPE_DSV"), { 2048, 0 } } + }); + } + + } } } diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.cpp index 8c1ce4b3b2..d45c58e24c 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.cpp @@ -104,8 +104,6 @@ namespace AZ { const RHI::BufferDescriptor& descriptor = request.m_descriptor; Buffer* buffer = static_cast(request.m_buffer); - const size_t alignmentInBytes = D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT; - const size_t sizeInBytes = RHI::AlignUp(descriptor.m_byteCount, alignmentInBytes); MemoryView memoryView = GetDX12RHIDevice().CreateBufferPlaced( diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.cpp index 81e52d6d3f..29b210e17e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.cpp @@ -152,21 +152,21 @@ namespace AZ m_copyQueue->QueueCommand([=](void* commandQueue) { - AZ_PROFILE_SCOPE(AzRender, "Upload Buffer"); + AZ_PROFILE_SCOPE(RHI, "Upload Buffer"); size_t pendingByteOffset = 0; size_t pendingByteCount = byteCount; ID3D12CommandQueue* dx12CommandQueue = static_cast(commandQueue); while (pendingByteCount > 0) { - AZ_PROFILE_SCOPE(AzRender, "Upload Buffer Chunk"); + AZ_PROFILE_SCOPE(RHI, "Upload Buffer Chunk"); FramePacket* framePacket = BeginFramePacket(); const size_t bytesToCopy = AZStd::min(pendingByteCount, m_descriptor.m_stagingSizeInBytes); { - AZ_PROFILE_SCOPE(AzRender, "Copy CPU buffer"); + AZ_PROFILE_SCOPE(RHI, "Copy CPU buffer"); memcpy(framePacket->m_stagingResourceData, sourceData + pendingByteOffset, bytesToCopy); } @@ -196,7 +196,7 @@ namespace AZ AsyncUploadQueue::FramePacket* AsyncUploadQueue::BeginFramePacket() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_Assert(!m_recordingFrame, "The previous frame packet isn't ended"); FramePacket* framePacket = &m_framePackets[m_frameIndex]; @@ -212,7 +212,7 @@ namespace AZ void AsyncUploadQueue::EndFramePacket(ID3D12CommandQueue* commandQueue) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_Assert(m_recordingFrame, "The frame packet wasn't started. You need to call StartFramePacket first."); AssertSuccess(m_commandList->Close()); @@ -229,7 +229,7 @@ namespace AZ // [GFX TODO][ATOM-4205] Stage/Upload 3D streaming images more efficiently. uint64_t AsyncUploadQueue::QueueUpload(const RHI::StreamingImageExpandRequest& request, uint32_t residentMip) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); uint64_t fenceValue = m_uploadFence.Increment(); @@ -243,7 +243,7 @@ namespace AZ m_copyQueue->QueueCommand([=](void* commandQueue) { - AZ_PROFILE_SCOPE(AzRender, "Upload Image"); + AZ_PROFILE_SCOPE(RHI, "Upload Image"); ID3D12CommandQueue* dx12CommandQueue = static_cast(commandQueue); FramePacket* framePacket = BeginFramePacket(); @@ -314,7 +314,7 @@ namespace AZ // Copy subresource data to staging memory. { - AZ_PROFILE_SCOPE(AzRender, "Copy CPU image"); + AZ_PROFILE_SCOPE(RHI, "Copy CPU image"); uint8_t* stagingDataStart = framePacket->m_stagingResourceData + framePacket->m_dataOffset; const uint8_t* subresourceSliceDataStart = static_cast(subresource.m_data) + (depth * subresourceSlicePitch); @@ -378,14 +378,13 @@ namespace AZ } const uint32_t endRow = AZStd::GetMin(startRow + rowsPerSplit, subresourceLayout.m_rowCount); - const uint32_t numRowsToCopy = endRow - startRow; // Calculate the blocksize for BC formatted images; the copy command works in texels. uint32_t heightToCopy = (endRow - startRow) * compressedTexelBlockSizeHeight; // Copy subresource data to staging memory { - AZ_PROFILE_SCOPE(AzRender, "Copy CPU image"); + AZ_PROFILE_SCOPE(RHI, "Copy CPU image"); for (uint32_t row = startRow; row < endRow; row++) { uint8_t* stagingDataStart = framePacket->m_stagingResourceData + framePacket->m_dataOffset; @@ -476,7 +475,7 @@ namespace AZ void AsyncUploadQueue::WaitForUpload(uint64_t fenceValue) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); if (!IsUploadFinished(fenceValue)) { @@ -490,7 +489,7 @@ namespace AZ void AsyncUploadQueue::ProcessCallbacks(uint64_t fenceValue) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZStd::lock_guard lock(m_callbackMutex); while (m_callbacks.size() > 0 && m_callbacks.front().second <= fenceValue) { @@ -504,7 +503,7 @@ namespace AZ { m_copyQueue->QueueCommand([=](void* commandQueue) { - AZ_PROFILE_SCOPE(AzRender, "QueueTileMapping"); + AZ_PROFILE_SCOPE(RHI, "QueueTileMapping"); ID3D12CommandQueue* dx12CommandQueue = static_cast(commandQueue); const uint32_t tileCount = request.m_sourceRegionSize.NumTiles; diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.h index b0c8642d68..443ab3e73a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.h @@ -11,6 +11,8 @@ #include #include #include +#include +#include #include #include #include diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.cpp index a8ae753294..c5c71a9f43 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.cpp @@ -33,7 +33,7 @@ namespace AZ void CommandListBase::Reset(ID3D12CommandAllocator* commandAllocator) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_Assert(m_queuedBarriers.empty(), "Unflushed barriers in command list."); m_commandList->Reset(commandAllocator, nullptr); @@ -95,7 +95,7 @@ namespace AZ { if (m_queuedBarriers.size()) { - AZ_PROFILE_FUNCTION(AzRenderDetailed); + AZ_PROFILE_FUNCTION(RHI); m_commandList->ResourceBarrier((UINT)m_queuedBarriers.size(), m_queuedBarriers.data()); m_queuedBarriers.clear(); diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.cpp index 3d3ec472a7..c31fe8ada8 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.cpp @@ -138,7 +138,7 @@ namespace AZ commandAllocatorPoolDescriptor.m_collectLatency = descriptor.m_frameCountMax; commandAllocatorPool.Init(commandAllocatorPoolDescriptor); - m_commandListSubAllocators[queueIdx].SetInitFunction([this, &commandListPool, &commandAllocatorPool] + m_commandListSubAllocators[queueIdx].SetInitFunction([&commandListPool, &commandAllocatorPool] (Internal::CommandListSubAllocator& subAllocator) { subAllocator.Init(commandAllocatorPool, commandListPool); diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.cpp index b73228e717..9d58217f01 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.cpp @@ -108,9 +108,9 @@ namespace AZ void CommandQueue::QueueGpuSignal(Fence& fence) { - QueueCommand([this, &fence](void* commandQueue) + QueueCommand([&fence](void* commandQueue) { - AZ_PROFILE_SCOPE(AzRender, "SignalFence"); + AZ_PROFILE_SCOPE(RHI, "SignalFence"); ID3D12CommandQueue* dx12CommandQueue = static_cast(commandQueue); dx12CommandQueue->Signal(fence.Get(), fence.GetPendingValue()); }); @@ -138,7 +138,7 @@ namespace AZ QueueCommand([=](void* commandQueue) { - AZ_PROFILE_SCOPE(AzRender, "ExecuteWork"); + AZ_PROFILE_SCOPE(RHI, "ExecuteWork"); AZ_PROFILE_RHI_VARIABLE(m_lastExecuteDuration); static const uint32_t CommandListCountMax = 128; @@ -195,7 +195,7 @@ namespace AZ void CommandQueue::UpdateTileMappings(CommandList& commandList) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); for (const CommandList::TileMapRequest& request : commandList.GetTileMapRequests()) { const uint32_t tileCount = request.m_sourceRegionSize.NumTiles; @@ -229,7 +229,7 @@ namespace AZ void CommandQueue::WaitForIdle() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); Fence fence; fence.Init(m_device.get(), RHI::FenceState::Reset); diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.cpp index f35f66f3e8..96d621df59 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.cpp @@ -101,7 +101,7 @@ namespace AZ void CommandQueueContext::WaitForIdle() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); for (uint32_t hardwareQueueIdx = 0; hardwareQueueIdx < RHI::HardwareQueueClassCount; ++hardwareQueueIdx) { if (m_commandQueues[hardwareQueueIdx]) @@ -113,10 +113,10 @@ namespace AZ void CommandQueueContext::Begin() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); { - AZ_PROFILE_SCOPE(AzRender, "Clearing Command Queue Timers"); + AZ_PROFILE_SCOPE(RHI, "Clearing Command Queue Timers"); for (const RHI::Ptr& commandQueue : m_commandQueues) { commandQueue->ClearTimers(); @@ -131,7 +131,7 @@ namespace AZ void CommandQueueContext::End() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_ATOM_PROFILE_FUNCTION("DX12", "CommandQueueContext: End"); QueueGpuSignals(m_frameFences[m_currentFrameIndex]); @@ -145,7 +145,7 @@ namespace AZ m_currentFrameIndex = (m_currentFrameIndex + 1) % aznumeric_cast(m_frameFences.size()); { - AZ_PROFILE_SCOPE(AzRender, "Wait and Reset Fence"); + AZ_PROFILE_SCOPE(RHI, "Wait and Reset Fence"); AZ_ATOM_PROFILE_TIME_GROUP_REGION("DX12", "CommandQueueContext: Wait on Fences"); FenceEvent event("FrameFence"); diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp index 6244089d93..10d8abee6d 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp @@ -60,7 +60,7 @@ namespace AZ { if (fenceValue > GetCompletedValue()) { - AZ_PROFILE_SCOPE(AzRender, "Fence Wait: %s", fenceEvent.GetName()); + AZ_PROFILE_SCOPE(RHI, "Fence Wait: %s", fenceEvent.GetName()); m_fence->SetEventOnCompletion(fenceValue, fenceEvent.m_EventHandle); WaitForSingleObject(fenceEvent.m_EventHandle, INFINITE); } diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.cpp index ba4aa76a60..7eaafc3705 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.cpp @@ -530,7 +530,6 @@ namespace AZ transition.StateAfter = GetResourceState(*scopeAttachment); logger.SetStateAfter(transition.StateAfter); - const bool isCopyQueueAfter = scopeAfter.GetHardwareQueueClass() == RHI::HardwareQueueClass::Copy; RHI::ImageSubresourceRange viewRange = RHI::ImageSubresourceRange(scopeAttachment->GetImageView()->GetDescriptor()); for (const auto& subresourceState : image.GetAttachmentStateByIndex(&viewRange)) { diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.cpp index 42c5f91817..526c913085 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.cpp @@ -111,6 +111,8 @@ namespace AZ void IndirectBufferSignature::ShutdownInternal() { + auto& device = static_cast(GetDevice()); + device.QueueForRelease(m_signature); m_signature = nullptr; m_stride = 0; } diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.cpp index 5bb2be662d..f5eacfc576 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.cpp @@ -237,5 +237,14 @@ namespace AZ static constexpr D3D12_RANGE InvalidRange = {0,0}; m_readBackBuffer->Unmap(0, &InvalidRange); } + + void QueryPool::ShutdownInternal() + { + auto& device = static_cast(GetDevice()); + device.QueueForRelease(m_queryHeap); + m_queryHeap = nullptr; + device.QueueForRelease(m_readBackBuffer); + m_readBackBuffer = nullptr; + } } } diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.h index eca040b724..7b0ab512cc 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.h @@ -44,6 +44,7 @@ namespace AZ RHI::ResultCode InitInternal(RHI::Device& device, const RHI::QueryPoolDescriptor& descriptor) override; RHI::ResultCode InitQueryInternal(RHI::Query& query) override; RHI::ResultCode GetResultsInternal(uint32_t startIndex, uint32_t queryCount, uint64_t* results, uint32_t resultsCount, RHI::QueryResultFlagBits flags) override; + void ShutdownInternal() override; ////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.cpp index 11863cb70b..add7364056 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.cpp @@ -144,7 +144,7 @@ namespace AZ #ifdef AZ_RHI_USE_TILED_RESOURCES { - AZ_PROFILE_SCOPE(AzRender, "StreamImagePool::CreateHeap"); + AZ_PROFILE_SCOPE(RHI, "StreamImagePool::CreateHeap"); CD3DX12_HEAP_DESC heapDesc(descriptor.m_budgetInBytes, D3D12_HEAP_TYPE_DEFAULT, 0, D3D12_HEAP_FLAG_DENY_BUFFERS | D3D12_HEAP_FLAG_DENY_RT_DS_TEXTURES); diff --git a/Gems/Atom/RHI/DX12/preview.png b/Gems/Atom/RHI/DX12/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/Atom/RHI/DX12/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp index b65db2a993..7e41e50892 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp @@ -191,7 +191,7 @@ namespace AZ StageDescriptor& outputDescriptor, const RHI::ShaderCompilerArguments& shaderCompilerArguments) const { - for (auto srgLayout : m_srgLayouts) + for ([[maybe_unused]] auto srgLayout : m_srgLayouts) { AZ_Assert(srgLayout != nullptr, "Most likely BuildPipelineLayoutDescriptor() was not called!"); } @@ -252,9 +252,7 @@ namespace AZ // Output file AZStd::string shaderMSLOutputFile = RHI::BuildFileNameWithExtension(shaderSourceFile, tempFolder, "metal"); - - bool outputFileWriteResult = false; - + // Stage profile name parameter const AZStd::string shaderModelVersion = "6_2"; @@ -282,7 +280,7 @@ namespace AZ // Enable half precision types when shader model >= 6.2 int shaderModelMajor = 0; int shaderModelMinor = 0; - int numValuesRead = azsscanf(shaderModelVersion.c_str(), "%d_%d", &shaderModelMajor, &shaderModelMinor); + [[maybe_unused]] int numValuesRead = azsscanf(shaderModelVersion.c_str(), "%d_%d", &shaderModelMajor, &shaderModelMinor); AZ_Assert(numValuesRead == 2, "Unknown shader model version format"); if (shaderModelMajor >= 6 && shaderModelMinor >= 2) { diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.cpp index 05107128ad..b820a6bf76 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.cpp @@ -431,7 +431,7 @@ namespace AZ } else { - bool isBoundToGraphics = RHI::CheckBitsAny(visMaskIt->second, RHI::ShaderStageMask::Vertex) || RHI::CheckBitsAny(visMaskIt->second, RHI::ShaderStageMask::Fragment); + [[maybe_unused]] bool isBoundToGraphics = RHI::CheckBitsAny(visMaskIt->second, RHI::ShaderStageMask::Vertex) || RHI::CheckBitsAny(visMaskIt->second, RHI::ShaderStageMask::Fragment); AZ_Assert(isBoundToGraphics, "The visibility mask %i is not set for Vertex or fragment stage", visMaskIt->second); CollectResourcesForGraphics(commandEncoder, visMaskIt->second, it.second, resourcesToMakeResidentGraphics); } diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.cpp index 2c9eb95ad4..bd163f1419 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.cpp @@ -105,7 +105,6 @@ namespace AZ } Fence* fenceToSignal = nullptr; - uint64_t fenceToSignalValue = 0; size_t byteCount = uploadRequest.m_byteCount; size_t byteOffset = destMemoryView.GetOffset() + uploadRequest.m_byteOffset; uint64_t queueValue = m_uploadFence.Increment(); @@ -183,8 +182,6 @@ namespace AZ { CommandQueue* commandQueue = static_cast(queue); FramePacket* framePacket = BeginFramePacket(commandQueue); - const uint16_t arraySize = image->GetDescriptor().m_arraySize; - const uint16_t imageMipLevels = image->GetDescriptor().m_mipLevels; //[GFX TODO][ATOM-5605] - Cache alignments for all formats at Init const static uint32_t bufferOffsetAlign = [mtlDevice minimumTextureBufferAlignmentForPixelFormat: ConvertPixelFormat(image->GetDescriptor().m_format)]; @@ -212,7 +209,6 @@ namespace AZ if (subresourceLayout.m_size.m_height < subresourceLayout.m_rowCount) { AZ_Error("Metal", false, "AsyncUploadQueue::QueueUpload expects ImageHeight '%d' to be bigger than or equal to the image's RowCount '%d'.", subresourceLayout.m_size.m_height, subresourceLayout.m_rowCount); - RHI::AsyncWorkHandle::Null; } // The final staging size for each CopyTextureRegion command @@ -281,8 +277,6 @@ namespace AZ { const uint8_t* subresourceDataStart = reinterpret_cast(subresourceData.m_data) + depth * subresourceSlicePitch; - MTLTextureDescriptor* mtlTextureDesc = ConvertImageDescriptor(image->GetDescriptor()); - uint32_t startRow = 0; uint32_t destHeight = 0; while (startRow < subresourceLayout.m_rowCount) @@ -468,7 +462,6 @@ namespace AZ MTLBlitOption mtlBlitOption = GetBlitOption(destImage->GetDescriptor().m_format); - id tempTex = destImage->GetMemoryView().GetGpuAddress>(); [blitEncoder copyFromBuffer:framePacket->m_stagingResource sourceOffset:framePacket->m_dataOffset sourceBytesPerRow:stagingRowPitch diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.cpp index a1bd9533bc..13f216e098 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.cpp @@ -102,8 +102,7 @@ namespace AZ void BufferPool::ShutdownResourceInternal(RHI::Resource& resourceBase) { Buffer& buffer = static_cast(resourceBase); - auto& device = static_cast(GetDevice()); - + if (auto* resolver = GetResolver()) { resolver->OnResourceShutdown(resourceBase); diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.cpp index 9b67f5c6e2..5508086fe5 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.cpp @@ -54,7 +54,7 @@ namespace AZ usage : textureUsage]; mtlTextureDesc.textureType = MTLTextureTypeTextureBuffer; - uint32_t bytesPerRow = viewDescriptor.m_elementCount * bytesPerPixel; + [[maybe_unused]] uint32_t bytesPerRow = viewDescriptor.m_elementCount * bytesPerPixel; AZ_Assert(bytesPerRow == (viewDescriptor.m_elementCount * viewDescriptor.m_elementSize), "Mismatch for bytesPerRow"); id mtlTexture = [mtlBuffer newTextureWithDescriptor : mtlTextureDesc offset : m_memoryView.GetOffset() diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.cpp index 62091b794a..7753968122 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.cpp @@ -72,7 +72,7 @@ namespace AZ commandListPoolDescriptor.m_collectLatency = descriptor.m_frameCountMax; commandListPool.Init(commandListPoolDescriptor); - m_commandListSubAllocators[queueIdx].SetInitFunction([this, &commandListPool] + m_commandListSubAllocators[queueIdx].SetInitFunction([&commandListPool] (CommandListSubAllocator& subAllocator) { subAllocator.Init(commandListPool); diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.h index ca40f3c7aa..0ec5952525 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.h @@ -90,7 +90,7 @@ namespace AZ void Collect(); private: - CommandListPool* m_commandListPool = nullptr; + [[maybe_unused]] CommandListPool* m_commandListPool = nullptr; AZStd::vector m_activeLists; AZStd::array m_commandListPools; diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.cpp index 4bde063d63..d151a11ec1 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.cpp @@ -114,7 +114,7 @@ namespace AZ //Autoreleasepool is to ensure that the driver is not leaking memory related to the command buffer and encoder @autoreleasepool { - AZ_PROFILE_SCOPE(AzRender, "ExecuteWork"); + AZ_PROFILE_SCOPE(RHI, "ExecuteWork"); AZ_PROFILE_RHI_VARIABLE(m_lastExecuteDuration); if (request.m_signalFenceValue > 0) diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueContext.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueContext.cpp index f0ec98be89..7f0c535383 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueContext.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueContext.cpp @@ -79,7 +79,7 @@ namespace AZ void CommandQueueContext::End() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); QueueGpuSignals(m_frameFences[m_currentFrameIndex]); for (uint32_t hardwareQueueIdx = 0; hardwareQueueIdx < RHI::HardwareQueueClassCount; ++hardwareQueueIdx) @@ -91,7 +91,7 @@ namespace AZ m_currentFrameIndex = (m_currentFrameIndex + 1) % aznumeric_cast(m_frameFences.size()); { - AZ_PROFILE_SCOPE(AzRender, "Wait and Reset Fence"); + AZ_PROFILE_SCOPE(RHI, "Wait and Reset Fence"); AZ_ATOM_PROFILE_TIME_GROUP_REGION("RHI", "CommandQueueContext: Wait on Fences"); //Synchronize the CPU with the GPU by waiting on the fence until signalled by the GPU. CPU can only go upto diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.cpp index fce4db364f..96e61be2cd 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.cpp @@ -17,8 +17,6 @@ namespace AZ { namespace Metal { - static const int INVALID_OFFSET = 0xFFFFFFFF; - namespace Platform { MTLPixelFormat ConvertPixelFormat(RHI::Format format); diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.cpp index 94dacb2488..d8a0c2e788 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.cpp @@ -25,11 +25,9 @@ namespace AZ RHI::ResultCode ImagePoolResolver::UpdateImage(const RHI::ImageUpdateRequest& request, size_t& bytesTransferred) { Image* image = static_cast(request.m_image); - auto& device = static_cast(GetDevice()); - + const RHI::ImageSubresourceLayout& sourceSubresourceLayout = request.m_sourceSubresourceLayout; - const RHI::Origin& imageSubresourcePixelOffset = request.m_imageSubresourcePixelOffset; - + const uint32_t stagingRowPitch = sourceSubresourceLayout.m_bytesPerRow; const uint32_t stagingSlicePitch = sourceSubresourceLayout.m_bytesPerImage; const uint32_t stagingSize = stagingSlicePitch * sourceSubresourceLayout.m_size.m_depth; diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.cpp index e86ba3c2c3..749e47f6b5 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.cpp @@ -42,8 +42,6 @@ namespace AZ void NullDescriptorManager::Shutdown() { - const Device& device = static_cast(GetDevice()); - m_nullImages.clear(); m_nullBuffer.m_memoryView = {}; m_nullMtlSamplerState = nil; @@ -94,7 +92,6 @@ namespace AZ textureSizeAndAlign.size = memoryRequirements.m_sizeInBytes; const size_t alignedHeapSize = RHI::AlignUp(heapSize, textureSizeAndAlign.align); - const uint32_t bytesPerPixel = RHI::GetFormatSize(m_nullImages[imageIndex].m_imageDescriptor.m_format); if(imageIndex == static_cast(NullDescriptorManager::ImageTypes::TextureBuffer)) { m_nullImages[imageIndex].m_memoryView = device.CreateImagePlaced(m_nullImages[imageIndex].m_imageDescriptor, m_nullDescriptorHeap, alignedHeapSize, textureSizeAndAlign, MTLTextureTypeTextureBuffer); diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.cpp index f1d9fdc3a6..8d6ab8fee3 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.cpp @@ -188,7 +188,7 @@ namespace AZ } else { - const char * errorStr = [ error.localizedDescription UTF8String ]; + [[maybe_unused]] const char * errorStr = [ error.localizedDescription UTF8String ]; AZ_Error("PipelineState", false, "Failed to compile compute pipeline state with error: %s.", errorStr); return RHI::ResultCode::Fail; } @@ -221,7 +221,7 @@ namespace AZ } else { - const char * errorStr = [ error.localizedDescription UTF8String ]; + [[maybe_unused]] const char * errorStr = [ error.localizedDescription UTF8String ]; AZ_Error("PipelineState", false, "Failed to compile compute pipeline state with error: %s.", errorStr); return RHI::ResultCode::Fail; } diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.cpp index c8f2b89346..629aeb24f1 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.cpp @@ -26,10 +26,9 @@ namespace AZ RHI::ResultCode QueryPool::InitInternal(RHI::Device& baseDevice, const RHI::QueryPoolDescriptor& descriptor) { auto& device = static_cast(baseDevice); - id mtlDevice = device.GetMtlDevice(); - NSError* error = nil; - + #if AZ_TRAIT_ATOM_METAL_COUNTER_SAMPLING + id mtlDevice = device.GetMtlDevice(); NSArray> * counterSets = [mtlDevice counterSets]; CacheCounterIndices(counterSets); #endif @@ -77,6 +76,7 @@ namespace AZ } case RHI::QueryType::PipelineStatistics: { + NSError* error = nil; NSUInteger statisticCounterIndex = [counterSets indexOfObjectPassingTest:^BOOL(id mtlCounterSet, NSUInteger idx, BOOL *stop) { if ([mtlCounterSet.name isEqualToString:MTLCommonCounterSetStatistic]) @@ -127,9 +127,6 @@ namespace AZ RHI::ResultCode QueryPool::GetResultsInternal(uint32_t startIndex, uint32_t queryCount, uint64_t* results, uint32_t resultsCount, RHI::QueryResultFlagBits flags) { - auto& device = static_cast(GetDevice()); - MTLCommandBufferStatus commandBufferStatus = MTLCommandBufferStatusError; - switch(GetDescriptor().m_type) { case RHI::QueryType::Occlusion: diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp index d70a4d4e60..7e4d510dfa 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp @@ -115,12 +115,10 @@ namespace AZ const RHI::ImageScopeAttachmentDescriptor& bindingDescriptor = scopeAttachment->GetDescriptor(); id imageViewMtlTexture = imageView->GetMemoryView().GetGpuAddress>(); - const bool isFullView = imageView->IsFullView(); const bool isClearAction = bindingDescriptor.m_loadStoreAction.m_loadAction == RHI::AttachmentLoadAction::Clear; const bool isClearActionStencil = bindingDescriptor.m_loadStoreAction.m_loadActionStencil == RHI::AttachmentLoadAction::Clear; const bool isLoadAction = bindingDescriptor.m_loadStoreAction.m_loadAction == RHI::AttachmentLoadAction::Load; - const bool isLoadActionStencil = bindingDescriptor.m_loadStoreAction.m_loadActionStencil == RHI::AttachmentLoadAction::Load; const bool isStoreAction = bindingDescriptor.m_loadStoreAction.m_storeAction == RHI::AttachmentStoreAction::Store; const bool isStoreActionStencil = bindingDescriptor.m_loadStoreAction.m_storeActionStencil == RHI::AttachmentStoreAction::Store; @@ -158,7 +156,6 @@ namespace AZ { mtlStoreActionStencil = MTLStoreActionStore; } - const RHI::ImageViewDescriptor& imgViewDescriptor = imageView->GetDescriptor(); const AZStd::vector& usagesAndAccesses = scopeAttachment->GetUsageAndAccess(); for (const RHI::ScopeAttachmentUsageAndAccess& usageAndAccess : usagesAndAccesses) { diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.cpp index 3862885395..6be5ec7259 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.cpp @@ -26,7 +26,6 @@ namespace AZ { Device& device = static_cast(deviceBase); m_device = &device; - const RHI::ShaderResourceGroupLayout& layout = *descriptor.m_layout; m_srgLayout = descriptor.m_layout; return RHI::ResultCode::Success; } diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.cpp index 03d898bc60..3d90b595e4 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.cpp @@ -50,7 +50,6 @@ namespace AZ RHI::ResultCode StreamingImagePool::InitImageInternal(const RHI::StreamingImageInitRequest& request) { Image& image = static_cast(*request.m_image); - auto& device = static_cast(GetDevice()); MemoryView memoryView = GetDevice().CreateImageCommitted(image.GetDescriptor()); if (!memoryView.IsValid()) diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.cpp index 0065ea724e..90ba04c3db 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.cpp @@ -123,9 +123,6 @@ namespace AZ RHI::ResultCode SwapChain::InitImageInternal(const InitImageRequest& request) { - const RHI::SwapChainDescriptor& descriptor = GetDescriptor(); - Device& device = GetDevice(); - Name name(AZStd::string::format("SwapChainImage_%d", request.m_imageIndex)); Image& image = static_cast(*request.m_image); diff --git a/Gems/Atom/RHI/Metal/preview.png b/Gems/Atom/RHI/Metal/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/Atom/RHI/Metal/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.h b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.h index 8d1936fc56..5b69c765f2 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.h @@ -39,9 +39,10 @@ namespace AZ RHI::ResultCode InitBufferInternal([[maybe_unused]] RHI::Buffer& buffer, [[maybe_unused]] const RHI::BufferDescriptor& rhiDescriptor) override{ return RHI::ResultCode::Success;} void ShutdownResourceInternal([[maybe_unused]] RHI::Resource& resource) override {} RHI::ResultCode OrphanBufferInternal([[maybe_unused]] RHI::Buffer& buffer) override { return RHI::ResultCode::Success;} - RHI::ResultCode MapBufferInternal([[maybe_unused]] const RHI::BufferMapRequest& mapRequest, [[maybe_unused]] RHI::BufferMapResponse& response) override { return RHI::ResultCode::Unimplemented;} + RHI::ResultCode MapBufferInternal([[maybe_unused]] const RHI::BufferMapRequest& mapRequest, [[maybe_unused]] RHI::BufferMapResponse& response) override { return RHI::ResultCode::Success;} void UnmapBufferInternal([[maybe_unused]] RHI::Buffer& buffer) override {} RHI::ResultCode StreamBufferInternal([[maybe_unused]] const RHI::BufferStreamRequest& request) override { return RHI::ResultCode::Success;} + void BufferCopy([[maybe_unused]] void* destination, [[maybe_unused]] const void* source, [[maybe_unused]] size_t num) override {} ////////////////////////////////////////////////////////////////////////// }; diff --git a/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Fence.cpp similarity index 58% rename from Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.cpp rename to Gems/Atom/RHI/Null/Code/Source/RHI/Fence.cpp index 9c2d19c9de..dc3743c101 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Fence.cpp @@ -5,11 +5,16 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ - -#include -#include "DrillerMainWindowMessages.h" +#include -namespace Driller +namespace AZ { + namespace Null + { + RHI::Ptr Fence::Create() + { + return aznew Fence(); + } + } } diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Fence.h b/Gems/Atom/RHI/Null/Code/Source/RHI/Fence.h new file mode 100644 index 0000000000..fb64727362 --- /dev/null +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Fence.h @@ -0,0 +1,40 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ +#pragma once + +#include + +namespace AZ +{ + namespace Null + { + class Fence + : public RHI::Fence + { + using Base = RHI::Fence; + public: + AZ_RTTI(Fence, "{34908F40-A7DE-4EE8-A871-71ACE0C24972}", Base); + AZ_CLASS_ALLOCATOR(Fence, AZ::SystemAllocator, 0); + + static RHI::Ptr Create(); + + private: + Fence() = default; + + ////////////////////////////////////////////////////////////////////////// + // RHI::Fence + RHI::ResultCode InitInternal([[maybe_unused]] RHI::Device& device, [[maybe_unused]] RHI::FenceState initialState) override { return RHI::ResultCode::Success;} + void ShutdownInternal() override {} + void SignalOnCpuInternal() override {} + void WaitOnCpuInternal() const override {} + void ResetInternal() override {} + RHI::FenceState GetFenceStateInternal() const override { return RHI::FenceState::Signaled;}; + ////////////////////////////////////////////////////////////////////////// + }; + } +} diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.cpp index d72de7996e..091084b097 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.cpp @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include @@ -99,7 +100,7 @@ namespace AZ RHI::Ptr SystemComponent::CreateFence() { - return nullptr; + return Fence::Create(); } RHI::Ptr SystemComponent::CreateBuffer() diff --git a/Gems/Atom/RHI/Null/Code/atom_rhi_null_private_common_files.cmake b/Gems/Atom/RHI/Null/Code/atom_rhi_null_private_common_files.cmake index 13e16be77b..ad57002dd3 100644 --- a/Gems/Atom/RHI/Null/Code/atom_rhi_null_private_common_files.cmake +++ b/Gems/Atom/RHI/Null/Code/atom_rhi_null_private_common_files.cmake @@ -21,6 +21,8 @@ set(FILES Source/RHI/CommandQueue.h Source/RHI/Device.cpp Source/RHI/Device.h + Source/RHI/Fence.cpp + Source/RHI/Fence.h Source/RHI/FrameGraphCompiler.cpp Source/RHI/FrameGraphCompiler.h Source/RHI/FrameGraphExecuter.cpp diff --git a/Gems/Atom/RHI/Registry/PhysicalDeviceDriverInfo.setreg b/Gems/Atom/RHI/Registry/PhysicalDeviceDriverInfo.setreg index 823b9e5fcd..ecb2a0fb54 100644 --- a/Gems/Atom/RHI/Registry/PhysicalDeviceDriverInfo.setreg +++ b/Gems/Atom/RHI/Registry/PhysicalDeviceDriverInfo.setreg @@ -8,7 +8,7 @@ // { - "Amazon": + "O3DE": { "Atom": { diff --git a/Gems/Atom/RHI/Registry/Platform/Android/PlatformLimits.setreg b/Gems/Atom/RHI/Registry/Platform/Android/PlatformLimits.setreg index 6ce3c88bbb..683098138f 100644 --- a/Gems/Atom/RHI/Registry/Platform/Android/PlatformLimits.setreg +++ b/Gems/Atom/RHI/Registry/Platform/Android/PlatformLimits.setreg @@ -8,7 +8,7 @@ // { - "Amazon": + "O3DE": { "Atom": { diff --git a/Gems/Atom/RHI/Registry/Platform/Linux/PlatformLimits.setreg b/Gems/Atom/RHI/Registry/Platform/Linux/PlatformLimits.setreg index 7c60aeb098..ce1e65fb40 100644 --- a/Gems/Atom/RHI/Registry/Platform/Linux/PlatformLimits.setreg +++ b/Gems/Atom/RHI/Registry/Platform/Linux/PlatformLimits.setreg @@ -8,7 +8,7 @@ // { - "Amazon": + "O3DE": { "Atom": { diff --git a/Gems/Atom/RHI/Registry/Platform/Mac/PlatformLimits.setreg b/Gems/Atom/RHI/Registry/Platform/Mac/PlatformLimits.setreg index 508287b762..b16e72b625 100644 --- a/Gems/Atom/RHI/Registry/Platform/Mac/PlatformLimits.setreg +++ b/Gems/Atom/RHI/Registry/Platform/Mac/PlatformLimits.setreg @@ -8,7 +8,7 @@ // { - "Amazon": + "O3DE": { "Atom": { diff --git a/Gems/Atom/RHI/Registry/Platform/Windows/PlatformLimits.setreg b/Gems/Atom/RHI/Registry/Platform/Windows/PlatformLimits.setreg index dd1273953b..240f8b041c 100644 --- a/Gems/Atom/RHI/Registry/Platform/Windows/PlatformLimits.setreg +++ b/Gems/Atom/RHI/Registry/Platform/Windows/PlatformLimits.setreg @@ -8,7 +8,7 @@ // { - "Amazon": + "O3DE": { "Atom": { diff --git a/Gems/Atom/RHI/Registry/Platform/iOS/PlatformLimits.setreg b/Gems/Atom/RHI/Registry/Platform/iOS/PlatformLimits.setreg index 508287b762..b16e72b625 100644 --- a/Gems/Atom/RHI/Registry/Platform/iOS/PlatformLimits.setreg +++ b/Gems/Atom/RHI/Registry/Platform/iOS/PlatformLimits.setreg @@ -8,7 +8,7 @@ // { - "Amazon": + "O3DE": { "Atom": { diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_Android.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_Android.h index 9289423b37..b8e83ab8a3 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_Android.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_Android.h @@ -8,7 +8,7 @@ #pragma once #include -#include +#include #include #include #include diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.cpp index 8f44abccef..47cde358ba 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.cpp @@ -63,7 +63,6 @@ namespace AZ const uint8_t* sourceData = reinterpret_cast(request.m_sourceData); const size_t byteCount = request.m_byteCount; - const size_t byteOffset = request.m_byteOffset; auto* buffer = static_cast(request.m_buffer); RHI::BufferPool* bufferPool = static_cast(buffer->GetPool()); @@ -96,7 +95,7 @@ namespace AZ uploadFence->Init(device, RHI::FenceState::Reset); CommandQueue::Command command = [=, &device](void* queue) { - AZ_PROFILE_SCOPE(AzRender, "Upload Buffer"); + AZ_PROFILE_SCOPE(RHI, "Upload Buffer"); size_t pendingByteOffset = 0; size_t pendingByteCount = byteCount; FramePacket* framePacket = nullptr; @@ -110,7 +109,7 @@ namespace AZ while (pendingByteCount > 0) { - AZ_PROFILE_SCOPE(AzRender, "Upload Buffer Chunk"); + AZ_PROFILE_SCOPE(RHI, "Upload Buffer Chunk"); framePacket = BeginFramePacket(vulkanQueue); const size_t bytesToCopy = AZStd::min(pendingByteCount, m_descriptor.m_stagingSizeInBytes); @@ -181,7 +180,7 @@ namespace AZ CommandQueue::Command command = [=, &device](void* queue) { - AZ_PROFILE_SCOPE(AzRender, "Upload Image"); + AZ_PROFILE_SCOPE(RHI, "Upload Image"); Queue* vulkanQueue = static_cast(queue); FramePacket* framePacket = BeginFramePacket(vulkanQueue); @@ -189,8 +188,6 @@ namespace AZ // Set pipeline barriers before copy. EmmitPrologueMemoryBarrier(request, residentMip); - const uint16_t arraySize = image->GetDescriptor().m_arraySize; - const uint16_t imageMipLevels = image->GetDescriptor().m_mipLevels; const static uint32_t bufferOffsetAlign = 4; // refer VkBufferImageCopy in the spec. // Variables for split subresource slice. @@ -213,11 +210,7 @@ namespace AZ // ImageHeight must be bigger than or equal to the Image's row count. Images with a RowCount that is less than the ImageHeight indicates a block compression. // Images with a RowCount which is higher than the ImageHeight indicates a planar image, which is not supported for streaming images. - if (subresourceLayout.m_size.m_height < subresourceLayout.m_rowCount) - { - AZ_Error("StreamingImage", false, "AsyncUploadQueue::QueueUpload expects ImageHeight '%d' to be bigger than or equal to the image's RowCount '%d'.", subresourceLayout.m_size.m_height, subresourceLayout.m_rowCount); - RHI::AsyncWorkHandle::Null; - } + AZ_Error("StreamingImage", subresourceLayout.m_size.m_height < subresourceLayout.m_rowCount, "AsyncUploadQueue::QueueUpload expects ImageHeight '%d' to be bigger than or equal to the image's RowCount '%d'.", subresourceLayout.m_size.m_height, subresourceLayout.m_rowCount); // The final staging size for each CopyTextureRegion command uint32_t stagingSize = stagingSlicePitch; @@ -257,7 +250,7 @@ namespace AZ // Copy subresource data to staging memory. { - AZ_PROFILE_SCOPE(AzRender, "Copy CPU image"); + AZ_PROFILE_SCOPE(RHI, "Copy CPU image"); uint8_t* stagingDataStart = reinterpret_cast(framePacket->m_stagingBuffer->GetBufferMemoryView()->Map(RHI::HostMemoryAccess::Write)) + framePacket->m_dataOffset; for (uint32_t row = 0; row < subresourceLayout.m_rowCount; ++row) { @@ -332,7 +325,7 @@ namespace AZ // Copy subresource data to staging memory. { - AZ_PROFILE_SCOPE(AzRender, "Copy CPU image"); + AZ_PROFILE_SCOPE(RHI, "Copy CPU image"); uint8_t* stagingDataStart = reinterpret_cast(framePacket->m_stagingBuffer->GetBufferMemoryView()->Map(RHI::HostMemoryAccess::Write)); stagingDataStart += framePacket->m_dataOffset; @@ -458,7 +451,7 @@ namespace AZ AsyncUploadQueue::FramePacket* AsyncUploadQueue::BeginFramePacket(Queue* queue) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_Assert(!m_recordingFrame, "The previous frame packet isn't ended."); auto& device = static_cast(GetDevice()); @@ -478,7 +471,7 @@ namespace AZ void AsyncUploadQueue::EndFramePacket(Queue* queue, Semaphore* semaphoreToSignal /*=nullptr*/) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZ_Assert(m_recordingFrame, "The frame packet wasn't started. You need to call StartFramePacket first."); m_commandList->EndCommandBuffer(); @@ -596,7 +589,6 @@ namespace AZ uint32_t residentMip) { const auto& image = static_cast(*request.m_image); - const RHI::ImageBindFlags bindFlags = image.GetDescriptor().m_bindFlags; const VkImageLayout layout = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL; const uint32_t beforeMip = residentMip; const uint32_t afterMip = beforeMip - static_cast(request.m_mipSlices.size()); @@ -644,7 +636,7 @@ namespace AZ void AsyncUploadQueue::ProcessCallback(const RHI::AsyncWorkHandle& handle) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); AZStd::unique_lock lock(m_callbackListMutex); auto findIter = m_callbackList.find(handle); if (findIter != m_callbackList.end()) diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.cpp index ba67f11c32..a94e610b49 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.cpp @@ -94,7 +94,6 @@ namespace AZ void BufferPoolResolver::Resolve(CommandList& commandList) { auto& device = static_cast(commandList.GetDevice()); - VkBufferCopy bufCopy{}; for (const BufferUploadPacket& packet : m_uploadPackets) { Buffer* stagingBuffer = packet.m_stagingBuffer.get(); diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.cpp index d07ee5dde3..3cd016ba39 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.cpp @@ -108,7 +108,7 @@ namespace AZ VkAccelerationStructureKHR BufferView::GetNativeAccelerationStructure() const { bool hasOverrideFlags = GetDescriptor().m_overrideBindFlags != RHI::BufferBindFlags::None; - const RHI::BufferBindFlags bindFlags = hasOverrideFlags ? GetDescriptor().m_overrideBindFlags : GetBuffer().GetDescriptor().m_bindFlags; + [[maybe_unused]] const RHI::BufferBindFlags bindFlags = hasOverrideFlags ? GetDescriptor().m_overrideBindFlags : GetBuffer().GetDescriptor().m_bindFlags; AZ_Assert(RHI::CheckBitsAll(bindFlags, RHI::BufferBindFlags::RayTracingAccelerationStructure), "GetNativeAccelerationStructure() is only valid for buffers with the RayTracingAccelerationStructure bind flag"); diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.cpp index 09179c7110..bac7a69c9a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.cpp @@ -100,7 +100,7 @@ namespace AZ commandPoolAllocatorDescriptor.m_collectLatency = descriptor.m_frameCountMax; commadPoolAllocator.Init(commandPoolAllocatorDescriptor); - m_commandListSubAllocators[queueFamilyIndex].SetInitFunction([this, &commadPoolAllocator] + m_commandListSubAllocators[queueFamilyIndex].SetInitFunction([&commadPoolAllocator] (Internal::CommandListSubAllocator& subAllocator) { subAllocator.Init(commadPoolAllocator); diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.cpp index 6929b63ac4..dc52e530e0 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.cpp @@ -54,7 +54,7 @@ namespace AZ const ExecuteWorkRequest& request = static_cast(rhiRequest); QueueCommand([=](void* queue) { - AZ_PROFILE_SCOPE(AzRender, "ExecuteWork"); + AZ_PROFILE_SCOPE(RHI, "ExecuteWork"); AZ_PROFILE_RHI_VARIABLE(m_lastExecuteDuration); Queue* vulkanQueue = static_cast(queue); @@ -109,7 +109,7 @@ namespace AZ { // The queue doesn't have an explicit way to signal a fence, so // we submit an empty work batch with only a fence to signal. - QueueCommand([this, &fence](void* queue) + QueueCommand([&fence](void* queue) { Queue* vulkanQueue = static_cast(queue); vulkanQueue->SubmitCommandBuffers( diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.cpp index f31132f039..39f0ac9d58 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.cpp @@ -42,7 +42,7 @@ namespace AZ void CommandQueueContext::End() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); for (auto& commandQueue : m_commandQueues) { @@ -54,7 +54,7 @@ namespace AZ m_currentFrameIndex = (m_currentFrameIndex + 1) % GetFrameCount(); { - AZ_PROFILE_SCOPE(AzRender, "Wait on Fences"); + AZ_PROFILE_SCOPE(RHI, "Wait on Fences"); AZ_ATOM_PROFILE_FUNCTION("RHI", "CommandQueueContext: Wait on Fences"); FencesPerQueue& nextFences = m_frameFences[m_currentFrameIndex]; @@ -79,7 +79,7 @@ namespace AZ void CommandQueueContext::WaitForIdle() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RHI); for (auto& commandQueue : m_commandQueues) { commandQueue->WaitForIdle(); diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp index 15a532f832..4f800f114b 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp @@ -190,7 +190,6 @@ namespace AZ if (majorVersion >= 1 && minorVersion >= 2) { vulkan12Features.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_FEATURES; - VkPhysicalDeviceVulkan12Features physicalDeviceVulkan12Features = physicalDevice.GetPhysicalDeviceVulkan12Features(); vulkan12Features.drawIndirectCount = physicalDevice.GetPhysicalDeviceVulkan12Features().drawIndirectCount; vulkan12Features.shaderFloat16 = physicalDevice.GetPhysicalDeviceVulkan12Features().shaderFloat16; vulkan12Features.shaderInt8 = physicalDevice.GetPhysicalDeviceVulkan12Features().shaderInt8; diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.h index d8c1b9378a..c93aa29988 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.h @@ -58,7 +58,6 @@ namespace AZ RHI::Origin m_offset; }; - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN struct BarrierInfo { VkPipelineStageFlags m_srcStageMask = {}; @@ -67,7 +66,6 @@ namespace AZ bool operator==(const BarrierInfo& other) { return ::memcmp(this, &other, sizeof(BarrierInfo)) == 0; } }; - AZ_ASSERT_NO_ALIGNMENT_PADDING_END void EmmitBarriers(CommandList& commandList, const AZStd::vector& barriers) const; diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.cpp index 44c36f5c70..9a92028b86 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.cpp @@ -117,10 +117,10 @@ namespace AZ const auto& device = static_cast(GetDevice()); const auto& physicalDevice = static_cast(GetDevice().GetPhysicalDevice()); - const uint16_t width = static_cast(imgDesc.m_size.m_width); - const uint16_t height = static_cast(imgDesc.m_size.m_height); + [[maybe_unused]] const uint16_t width = static_cast(imgDesc.m_size.m_width); + [[maybe_unused]] const uint16_t height = static_cast(imgDesc.m_size.m_height); const uint16_t depth = AZStd::min(static_cast(imgViewDesc.m_depthSliceMax - imgViewDesc.m_depthSliceMin), static_cast(imgDesc.m_size.m_depth - 1)) + 1; - const uint16_t samples = imgDesc.m_multisampleState.m_samples; + [[maybe_unused]] const uint16_t samples = imgDesc.m_multisampleState.m_samples; const uint16_t arrayLayers = AZStd::min(static_cast(imgViewDesc.m_arraySliceMax - imgViewDesc.m_arraySliceMin), static_cast(imgDesc.m_arraySize - 1)) + 1; // We cannot only use the number of layers of the ImageView to determinate if is a texture array. You can have a texture array with only 1 layer and the shader expects // an array type instead of a normal image type. diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.cpp index 316144f323..6d16cdc284 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.cpp @@ -73,7 +73,6 @@ namespace AZ Device& device = static_cast(GetDevice()); const uint32_t imageDimension = 8; - const uint32_t pixelSize = 4; // fill out the different options for the types of image null descriptors m_imageNullDescriptor.m_images.resize(static_cast(ImageTypes::Count)); diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.cpp index c00c1804b9..cdb9bbc7bd 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.cpp @@ -17,8 +17,6 @@ namespace AZ { namespace Vulkan { - static constexpr size_t MinGPUMemSize = AZ_TRAIT_ATOM_VULKAN_MIN_GPU_MEM; - RHI::PhysicalDeviceList PhysicalDevice::Enumerate() { RHI::PhysicalDeviceList physicalDeviceList; diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.h index 2c3a8ee2cc..5bf831eff5 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.h @@ -23,7 +23,6 @@ namespace AZ class SwapChain; class Fence; - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN struct QueueId { uint32_t m_familyIndex = 0; @@ -32,7 +31,6 @@ namespace AZ bool operator==(const QueueId& other) const { return ::memcmp(this, &other, sizeof(other)) == 0; } bool operator!=(const QueueId& other) const { return !(*this == other); } }; - AZ_ASSERT_NO_ALIGNMENT_PADDING_END class Queue final : public RHI::DeviceObject diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.h index 3cc2ff3ba7..8aaef51bd0 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.h @@ -38,8 +38,6 @@ namespace AZ ~RenderPass() = default; static RHI::Ptr Create(); - AZ_ASSERT_NO_ALIGNMENT_PADDING_BEGIN - enum class AttachmentType : uint32_t { Color, // Color render target attachment @@ -98,8 +96,6 @@ namespace AZ SubpassAttachment m_depthStencilAttachment; }; - AZ_ASSERT_NO_ALIGNMENT_PADDING_END - struct Descriptor { size_t GetHash() const; diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.cpp index 586470da0a..d00e597ae6 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.cpp @@ -153,7 +153,6 @@ namespace AZ } const VkMemoryRequirements memoryRequirements = GetMemoryRequirements(image.GetDescriptor(), targetMipLevel); - const uint16_t residentMipLevelBefore = static_cast(image.GetResidentMipLevel()); RHI::HeapMemoryUsage& memoryUsage = m_memoryUsage.GetHeapMemoryUsage(RHI::HeapMemoryLevel::Device); const size_t imageSizeBefore = image.GetResidentSizeInBytes(); diff --git a/Gems/Atom/RHI/Vulkan/preview.png b/Gems/Atom/RHI/Vulkan/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/Atom/RHI/Vulkan/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/Atom/RHI/preview.png b/Gems/Atom/RHI/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/Atom/RHI/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonUtils.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonUtils.h index 549f787ac9..1a62e1753c 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonUtils.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonUtils.h @@ -10,9 +10,7 @@ #include #include - -#include - +#include #include #include @@ -120,6 +118,7 @@ namespace AZ AZ_Error("AZ::RPI::JsonUtils", false, "Failed to load object from json string: %s", loadResult.GetError().c_str()); return false; } + } // namespace JsonUtils } // namespace RPI } // namespace AZ diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialConverterBus.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialConverterBus.h index 120c1ee28b..1807fca15e 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialConverterBus.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialConverterBus.h @@ -29,10 +29,23 @@ namespace AZ : public AZ::EBusTraits { public: - //! Returns true if the converion was successful + + virtual bool IsEnabled() const = 0; + + //! Returns true if material property names should be included in azmaterials. This allows unlinking of dependencies for some + //! file types to materialtype files (e.g. fbx). + virtual bool ShouldIncludeMaterialPropertyNames() const = 0; + + //! Converts data from a IMaterialData object to an Atom MaterialSourceData. + //! Only works when IsEnabled() is true. + //! @return true if the MaterialSourceData output was populated with converted material data. virtual bool ConvertMaterial(const AZ::SceneAPI::DataTypes::IMaterialData& materialData, MaterialSourceData& out) = 0; - //! Returns the path to the .materialtype file that the materials are based on, such as StandardPBR.materialtype, etc. - virtual const char* GetMaterialTypePath() const = 0; + + //! Returns the path to the .materialtype file that the converted materials are based on, such as StandardPBR.materialtype, etc. + virtual AZStd::string GetMaterialTypePath() const = 0; + + //! Returns the path to a .material file to use as the default material when conversion is disabled. + virtual AZStd::string GetDefaultMaterialPath() const = 0; }; using MaterialConverterBus = AZ::EBus; diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialSourceData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialSourceData.h index 1daec3bacd..02607a7954 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialSourceData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialSourceData.h @@ -68,12 +68,12 @@ namespace AZ //! @param assetId ID for the MaterialAsset //! @param materialSourceFilePath Indicates the path of the .material file that the MaterialSourceData represents. Used for resolving file-relative paths. //! @param elevateWarnings Indicates whether to treat warnings as errors - //! @param materialTypeSourceData The function sometimes needs metadata from the .materialtype file. - //! It will either load the .materialtype file from disk, or use this MaterialTypeSourceData if it's provided. + //! @param includeMaterialPropertyNames Indicates whether to save material property names into the material asset file Outcome> CreateMaterialAsset( Data::AssetId assetId, AZStd::string_view materialSourceFilePath = "", - bool elevateWarnings = true + bool elevateWarnings = true, + bool includeMaterialPropertyNames = true ) const; }; } // namespace RPI diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Base.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Base.h index 5c39bc3656..a88c640c19 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Base.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Base.h @@ -14,10 +14,14 @@ #include #include #include +#include #include #include #include +AZ_DECLARE_BUDGET(AzRender); +AZ_DECLARE_BUDGET(RPI); + namespace AZ { namespace RHI @@ -67,3 +71,4 @@ namespace AZ } // namespace RPI } // namespace AZ + diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Culling.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Culling.h index bcc4dfb89f..82e9c733c8 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Culling.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Culling.h @@ -70,8 +70,23 @@ namespace AZ }; CullData m_cullData; + enum LodType : uint8_t + { + Default = 0, + ScreenCoverage, + SpecificLod, + }; using LodOverride = uint8_t; - static constexpr uint8_t NoLodOverride = AZStd::numeric_limits::max(); + + struct LodConfiguration + { + LodType m_lodType = LodType::Default; + LodOverride m_lodOverride = 0; + // the minimum possibe area a sphere enclosing a mesh projected onto the screen should have before it is culled. + float m_minimumScreenCoverage = 1.0f / 1080.0f; // For default, mesh should cover at least a screen pixel at 1080p to be drawn; + // The screen area decay between 0 and 1, i.e. closer to 1 -> lose quality immediately, closer to 0 -> never lose quality + float m_qualityDecayRate = 0.5f; + }; struct LodData { @@ -88,7 +103,7 @@ namespace AZ //! Suggest setting to: 0.5f*localAabb.GetExtents().GetMaxElement() float m_lodSelectionRadius = 1.0f; - LodOverride m_lodOverride = NoLodOverride; + LodConfiguration m_lodConfiguration; }; LodData m_lodData; diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Base.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Base.h index c62a9439ea..6126f14e4a 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Base.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Base.h @@ -7,12 +7,15 @@ */ #pragma once +#include #include #include #include #include +AZ_DECLARE_BUDGET(RPI); + namespace UnitTest { class RPITestFixture; diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageSystemDescriptor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageSystemDescriptor.h index 22dec8ce64..e013c1dad1 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageSystemDescriptor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageSystemDescriptor.h @@ -21,8 +21,16 @@ namespace AZ AZ_TYPE_INFO(RPI::ImageSystemDescriptor, "{319D14F6-F7F2-487A-AA6B-5800E328C79B}"); static void Reflect(AZ::ReflectContext* context); + //! The maximum size of the image pool used for system streaming images. + //! Check ImageSystemInterface::GetSystemStreamingPool() for detail of this image pool uint64_t m_systemStreamingImagePoolSize = 128 * 1024 * 1024; + + //! The maximum size of the image pool used for system attachments images. + //! Check ImageSystemInterface::GetSystemAttachmentPool() for detail of this image pool uint64_t m_systemAttachmentImagePoolSize = 512 * 1024 * 1024; + + //! The maximum size of the image pool used for streaming images load from assets + //! Check ImageSystemInterface::GetStreamingPool() for detail of this image pool uint64_t m_assetStreamingImagePoolSize = 2u * 1024u * 1024u * 1024u; }; } // namespace RPI diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAsset.h index 49ef839331..52af56ba0e 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAsset.h @@ -108,6 +108,11 @@ namespace AZ private: bool PostLoadInit() override; + //! Realigns property value and name indices with MaterialProperiesLayout by using m_propertyNames. Property names not found in the + //! MaterialPropertiesLayout are discarded, while property names not included in m_propertyNames will use the default value + //! from m_materialTypeAsset. + void RealignPropertyValuesAndNames(); + //! Called by asset creators to assign the asset to a ready state. void SetReady(); @@ -121,11 +126,20 @@ namespace AZ // MaterialReloadNotificationBus overrides... void OnMaterialTypeAssetReinitialized(const Data::Asset& materialTypeAsset) override; + static const char* s_debugTraceName; + Data::Asset m_materialTypeAsset; //! Holds values for each material property, used to initialize Material instances. //! This is indexed by MaterialPropertyIndex and aligns with entries in m_materialPropertiesLayout. AZStd::vector m_propertyValues; + //! This is used to realign m_propertyValues as well as itself with MaterialPropertiesLayout when not empty. + //! If empty, this implies that m_propertyValues is aligned with the entries in m_materialPropertiesLayout. + AZStd::vector m_propertyNames; + + //! A flag to determine if m_propertyValues needs to be aligned with MaterialPropertiesLayout. Set to true whenever + //! m_materialTypeAsset is reinitializing. + bool m_isDirty = true; }; diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAssetCreator.h index 44520cb549..862d98ce0c 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAssetCreator.h @@ -26,11 +26,13 @@ namespace AZ public: friend class MaterialSourceData; - void Begin(const Data::AssetId& assetId, MaterialAsset& parentMaterial); - void Begin(const Data::AssetId& assetId, MaterialTypeAsset& materialType); + void Begin(const Data::AssetId& assetId, MaterialAsset& parentMaterial, bool includeMaterialPropertyNames = true); + void Begin(const Data::AssetId& assetId, MaterialTypeAsset& materialType, bool includeMaterialPropertyNames = true); bool End(Data::Asset& result); private: + void PopulatePropertyNameList(); + const MaterialPropertiesLayout* m_materialPropertiesLayout = nullptr; }; } // namespace RPI diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelMaterialSlot.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelMaterialSlot.h index dd46aca6cd..30088d2d52 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelMaterialSlot.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelMaterialSlot.h @@ -25,6 +25,8 @@ namespace AZ static void Reflect(AZ::ReflectContext* context); + // Note that StableId is uint32_t for legacy reasons: we used to use AssetId::m_subId as the material slot ID. But actually the original MaterialUid + // is 64 bit so we might want to switch this to be uint64_t at some point. using StableId = uint32_t; static const StableId InvalidStableId; diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/RPISystemDescriptor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/RPISystemDescriptor.h index 2076e72731..1b7b32c1e9 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/RPISystemDescriptor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/RPISystemDescriptor.h @@ -10,7 +10,6 @@ #include #include -#include namespace AZ { @@ -31,8 +30,6 @@ namespace AZ AZ_TYPE_INFO(RPISystemDescriptor, "{96DAC3DA-40D4-4C03-8D6A-3181E843262A}"); static void Reflect(AZ::ReflectContext* context); - RHI::RHISystemDescriptor m_rhiSystemDescriptor; - //! The asset cache relative path of the only common shader asset for the RPI system that is used //! as means to load the layout for scene srg and view srg. This is used to create any RPI::Scene. AZStd::string m_commonSrgsShaderAssetPath = "shader/sceneandviewsrgs.azshader"; diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Common/AnyAssetBuilder.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Common/AnyAssetBuilder.cpp index 4074568fbe..c9c477048f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Common/AnyAssetBuilder.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Common/AnyAssetBuilder.cpp @@ -19,7 +19,7 @@ #include -#include +#include #include #include diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Material/MaterialBuilder.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Material/MaterialBuilder.cpp index d07f073d4f..09f6610150 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Material/MaterialBuilder.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Material/MaterialBuilder.cpp @@ -13,7 +13,7 @@ #include #include #include -#include +#include #include #include diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.cpp index 7187cb391a..4c2876dc0c 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.cpp @@ -28,6 +28,7 @@ #include #include +#include #include #include @@ -70,28 +71,80 @@ namespace AZ void MaterialAssetDependenciesComponent::ReportJobDependencies(SceneAPI::JobDependencyList& jobDependencyList, const char* platformIdentifier) { - AssetBuilderSDK::SourceFileDependency materialTypeSource; + bool conversionEnabled = false; + RPI::MaterialConverterBus::BroadcastResult(conversionEnabled, &RPI::MaterialConverterBus::Events::IsEnabled); + // Right now, scene file importing only supports a single material type, once that changes, this will have to be re-designed, see ATOM-3554 - RPI::MaterialConverterBus::BroadcastResult(materialTypeSource.m_sourceFileDependencyPath, &RPI::MaterialConverterBus::Events::GetMaterialTypePath); + AZStd::string materialTypePath; + RPI::MaterialConverterBus::BroadcastResult(materialTypePath, &RPI::MaterialConverterBus::Events::GetMaterialTypePath); - AssetBuilderSDK::JobDependency jobDependency; - jobDependency.m_jobKey = "Atom Material Builder"; - jobDependency.m_sourceFile = materialTypeSource; - jobDependency.m_platformIdentifier = platformIdentifier; - jobDependency.m_type = AssetBuilderSDK::JobDependencyType::Order; - - if (!materialTypeSource.m_sourceFileDependencyPath.empty()) + bool includeMaterialPropertyNames = true; + RPI::MaterialConverterBus::BroadcastResult(includeMaterialPropertyNames, &RPI::MaterialConverterBus::Events::ShouldIncludeMaterialPropertyNames); + if (conversionEnabled && !materialTypePath.empty() && !includeMaterialPropertyNames) { + AssetBuilderSDK::SourceFileDependency materialTypeSource; + materialTypeSource.m_sourceFileDependencyPath = materialTypePath; + + AssetBuilderSDK::JobDependency jobDependency; + jobDependency.m_jobKey = "Atom Material Builder"; + jobDependency.m_sourceFile = materialTypeSource; + jobDependency.m_platformIdentifier = platformIdentifier; + jobDependency.m_type = AssetBuilderSDK::JobDependencyType::Order; + jobDependencyList.push_back(jobDependency); } } + + void MaterialAssetDependenciesComponent::AddFingerprintInfo(AZStd::set& fingerprintInfo) + { + // This will cause scene files to be reprocessed whenever the global MaterialConverter settings change. + + bool conversionEnabled = false; + RPI::MaterialConverterBus::BroadcastResult(conversionEnabled, &RPI::MaterialConverterBus::Events::IsEnabled); + fingerprintInfo.insert(AZStd::string::format("[MaterialConverter enabled=%d]", conversionEnabled)); + + bool includeMaterialPropertyNames = true; + RPI::MaterialConverterBus::BroadcastResult(includeMaterialPropertyNames, &RPI::MaterialConverterBus::Events::ShouldIncludeMaterialPropertyNames); + fingerprintInfo.insert(AZStd::string::format("[MaterialConverter includeMaterialPropertyNames=%d]", includeMaterialPropertyNames)); + + if (!conversionEnabled) + { + AZStd::string defaultMaterialPath; + RPI::MaterialConverterBus::BroadcastResult(defaultMaterialPath, &RPI::MaterialConverterBus::Events::GetDefaultMaterialPath); + fingerprintInfo.insert(AZStd::string::format("[MaterialConverter defaultMaterial=%s]", defaultMaterialPath.c_str())); + } + } void MaterialAssetBuilderComponent::Reflect(ReflectContext* context) { if (auto* serialize = azrtti_cast(context)) { serialize->Class() - ->Version(16); // Optional material conversion + ->Version(16); // Optional material conversion + } + } + + Data::Asset MaterialAssetBuilderComponent::GetDefaultMaterialAsset() const + { + AZStd::string defaultMaterialPath; + RPI::MaterialConverterBus::BroadcastResult(defaultMaterialPath, &RPI::MaterialConverterBus::Events::GetDefaultMaterialPath); + + if (defaultMaterialPath.empty()) + { + return {}; + } + else + { + auto defaultMaterialAssetId = RPI::AssetUtils::MakeAssetId(defaultMaterialPath, 0); + if (!defaultMaterialAssetId.IsSuccess()) + { + AZ_Error("MaterialAssetBuilderComponent", false, "Could not find asset '%s'", defaultMaterialPath.c_str()); + return {}; + } + else + { + return Data::AssetManager::Instance().CreateAsset(defaultMaterialAssetId.GetValue(), Data::AssetLoadBehaviorNamespace::PreLoad); + } } } @@ -119,8 +172,8 @@ namespace AZ BindToCall(&MaterialAssetBuilderComponent::BuildMaterials); } - - SceneAPI::Events::ProcessingResult MaterialAssetBuilderComponent::BuildMaterials(MaterialAssetBuilderContext& context) const + + SceneAPI::Events::ProcessingResult MaterialAssetBuilderComponent::ConvertMaterials(MaterialAssetBuilderContext& context) const { const auto& scene = context.m_scene; const Uuid sourceSceneUuid = scene.GetSourceGuid(); @@ -172,6 +225,8 @@ namespace AZ } } + bool includeMaterialPropertyNames = true; + RPI::MaterialConverterBus::BroadcastResult(includeMaterialPropertyNames, &RPI::MaterialConverterBus::Events::ShouldIncludeMaterialPropertyNames); // Build material assets. for (auto& itr : materialSourceDataByUid) { @@ -179,7 +234,7 @@ namespace AZ Data::AssetId assetId(sourceSceneUuid, GetMaterialAssetSubId(materialUid)); auto materialSourceData = itr.second; - Outcome> result = materialSourceData.m_data.CreateMaterialAsset(assetId, "", false); + Outcome> result = materialSourceData.m_data.CreateMaterialAsset(assetId, "", false, includeMaterialPropertyNames); if (result.IsSuccess()) { context.m_outputMaterialsByUid[materialUid] = { result.GetValue(), materialSourceData.m_name }; @@ -193,6 +248,63 @@ namespace AZ return SceneAPI::Events::ProcessingResult::Success; } + + SceneAPI::Events::ProcessingResult MaterialAssetBuilderComponent::AssignDefaultMaterials(MaterialAssetBuilderContext& context) const + { + Data::Asset defaultMaterialAsset = GetDefaultMaterialAsset(); + + if (!defaultMaterialAsset.GetId().IsValid()) + { + AZ_Warning("MaterialAssetBuilderComponent", false, "Material conversion is disabled but no default material was provided. The model will likely be invisible by default."); + // Return success because it's just a warning. + return SceneAPI::Events::ProcessingResult::Success; + } + + const auto& scene = context.m_scene; + const auto& sceneGraph = scene.GetGraph(); + + auto names = sceneGraph.GetNameStorage(); + auto content = sceneGraph.GetContentStorage(); + auto pairView = SceneAPI::Containers::Views::MakePairView(names, content); + + auto view = SceneAPI::Containers::Views::MakeSceneGraphDownwardsView< + SceneAPI::Containers::Views::BreadthFirst>( + sceneGraph, sceneGraph.GetRoot(), pairView.cbegin(), true); + + for (const auto& viewIt : view) + { + if (viewIt.second == nullptr) + { + continue; + } + + if (azrtti_istypeof(viewIt.second.get())) + { + auto materialData = AZStd::static_pointer_cast(viewIt.second); + uint64_t materialUid = materialData->GetUniqueId(); + + context.m_outputMaterialsByUid[materialUid] = { defaultMaterialAsset, materialData->GetMaterialName() }; + } + } + + return SceneAPI::Events::ProcessingResult::Success; + } + + SceneAPI::Events::ProcessingResult MaterialAssetBuilderComponent::BuildMaterials(MaterialAssetBuilderContext& context) const + { + bool conversionEnabled = false; + RPI::MaterialConverterBus::BroadcastResult(conversionEnabled, &RPI::MaterialConverterBus::Events::IsEnabled); + + if (conversionEnabled) + { + return ConvertMaterials(context); + } + else + { + return AssignDefaultMaterials(context); + } + + } } // namespace RPI } // namespace AZ diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.h b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.h index f02034c35d..f89ae1cde9 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.h @@ -39,6 +39,13 @@ namespace AZ // Required for ExportingComponent static void Reflect(AZ::ReflectContext* context); + + private: + + SceneAPI::Events::ProcessingResult ConvertMaterials(MaterialAssetBuilderContext& context) const; + SceneAPI::Events::ProcessingResult AssignDefaultMaterials(MaterialAssetBuilderContext& context) const; + + Data::Asset GetDefaultMaterialAsset() const; }; /** @@ -65,6 +72,7 @@ namespace AZ // SceneAPI::SceneBuilderDependencyBus::Handler overrides... void ReportJobDependencies(SceneAPI::JobDependencyList& jobDependencyList, const char* platformIdentifier) override; + void AddFingerprintInfo(AZStd::set& fingerprintInfo) override; }; } // namespace RPI } // namespace AZ diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.cpp index 13e5714b52..9fc99e3ea4 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.cpp @@ -60,7 +60,6 @@ namespace { - const uint32_t IndicesPerFace = 3; const AZ::RHI::Format IndicesFormat = AZ::RHI::Format::R32_UINT; const uint32_t PositionFloatsPerVert = 3; @@ -84,11 +83,6 @@ namespace // Morph targets const char* ShaderSemanticName_MorphTargetDeltas = "MORPHTARGET_VERTEXDELTAS"; - const AZ::RHI::Format MorphTargetVertexIndexFormat = AZ::RHI::Format::R32_UINT; // Single-component, 32-bit integer as vertex index - const char* ShaderSemanticName_MorphTargetPositionDeltas = "MORPHTARGET_POSITIONDELTAS"; - const AZ::RHI::Format MorphTargetPositionDeltaFormat = AZ::RHI::Format::R16_UINT; // 16-bit integer per compressed position delta component - const char* ShaderSemanticName_MorphTargetNormalDeltas = "MORPHTARGET_NORMALDELTAS"; - const AZ::RHI::Format MorphTargetNormalDeltaFormat = AZ::RHI::Format::R8_UINT; // 8-bit integer per compressed normal delta component // Cloth data const char* const ShaderSemanticName_ClothData = "CLOTH_DATA"; @@ -959,7 +953,6 @@ namespace AZ size_t numInfluencesAdded = 0; for (const auto& skinData : sourceMesh.m_skinData) { - const size_t numJoints = skinData->GetBoneCount(); const AZ::u32 controlPointIndex = sourceMeshData->GetControlPointIndex(static_cast(vertexIndex)); const size_t numSkinInfluences = skinData->GetLinkCount(controlPointIndex); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.cpp index ea39ea9031..f7e672ab32 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.cpp @@ -78,9 +78,17 @@ namespace AZ //Export MaterialAssets for (auto& materialPair : materialsByUid) { + const Data::Asset& asset = materialPair.second.m_asset; + + // MaterialAssetBuilderContext could attach an independent material asset rather than + // generate one using the scene data, so we must skip the export step in that case. + if (asset.GetId().m_guid != exportEventContext.GetScene().GetSourceGuid()) + { + continue; + } + uint64_t materialUid = materialPair.first; const AZStd::string& sceneName = exportEventContext.GetScene().GetName(); - const Data::Asset& asset = materialPair.second.m_asset; // escape the material name acceptable for a filename AZStd::string materialName = materialPair.second.m_name; diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MorphTargetExporter.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MorphTargetExporter.cpp index fa437c002f..44141f3ae3 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MorphTargetExporter.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MorphTargetExporter.cpp @@ -149,8 +149,6 @@ namespace AZ::RPI const float tolerance = CalcPositionDeltaTolerance(sourceMesh); AZ::Aabb deltaPositionAabb = AZ::Aabb::CreateNull(); - const uint32_t numFaces = blendShapeData->GetFaceCount(); - AZStd::vector& packedCompressedMorphTargetVertexData = productMesh.m_morphTargetVertexData; MorphTargetMetaAsset::MorphTarget metaData; diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Pass/PassBuilder.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Pass/PassBuilder.cpp index f74792049f..b67f1643df 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Pass/PassBuilder.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Pass/PassBuilder.cpp @@ -11,7 +11,7 @@ #include -#include +#include #include #include diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/ResourcePool/ResourcePoolBuilder.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/ResourcePool/ResourcePoolBuilder.cpp index 1dcab2679f..6cd2709d25 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/ResourcePool/ResourcePoolBuilder.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/ResourcePool/ResourcePoolBuilder.cpp @@ -16,7 +16,7 @@ #include -#include +#include #include #include diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceDataSerializer.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceDataSerializer.cpp index 3ba115f3e6..a944a35162 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceDataSerializer.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceDataSerializer.cpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSerializer.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSerializer.cpp index 708644ae20..060a563c53 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSerializer.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSerializer.cpp @@ -21,7 +21,7 @@ #include #include -#include +#include namespace AZ { diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceData.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceData.cpp index 1fee57759c..f697f33a3f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceData.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceData.cpp @@ -12,6 +12,7 @@ #include #include #include +#include #include #include @@ -22,7 +23,7 @@ #include #include -#include +#include #include #include @@ -72,7 +73,7 @@ namespace AZ } } - Outcome > MaterialSourceData::CreateMaterialAsset(Data::AssetId assetId, AZStd::string_view materialSourceFilePath, bool elevateWarnings) const + Outcome > MaterialSourceData::CreateMaterialAsset(Data::AssetId assetId, AZStd::string_view materialSourceFilePath, bool elevateWarnings, bool includeMaterialPropertyNames) const { MaterialAssetCreator materialAssetCreator; materialAssetCreator.SetElevateWarnings(elevateWarnings); @@ -85,7 +86,7 @@ namespace AZ return Failure(); } - materialAssetCreator.Begin(assetId, *materialTypeAsset.GetValue().Get()); + materialAssetCreator.Begin(assetId, *materialTypeAsset.GetValue().Get(), includeMaterialPropertyNames); } else { @@ -115,7 +116,7 @@ namespace AZ } } - materialAssetCreator.Begin(assetId, *parentMaterialAsset.GetValue().Get()); + materialAssetCreator.Begin(assetId, *parentMaterialAsset.GetValue().Get(), includeMaterialPropertyNames); } for (auto& group : m_properties) diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceDataSerializer.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceDataSerializer.cpp index e65c65a39a..307d2bb80f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceDataSerializer.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceDataSerializer.cpp @@ -10,7 +10,7 @@ #include #include #include -#include +#include #include #include diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialUtils.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialUtils.cpp index 67c143c074..0c2e9dca1f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialUtils.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialUtils.cpp @@ -15,7 +15,7 @@ #include #include #include -#include +#include #include diff --git a/Gems/Atom/RPI/Code/Source/RPI.Private/RPISystemComponent.cpp b/Gems/Atom/RPI/Code/Source/RPI.Private/RPISystemComponent.cpp index f73673f0e4..2567d221e5 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Private/RPISystemComponent.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Private/RPISystemComponent.cpp @@ -15,9 +15,11 @@ #include +#include #include #include -#include +#include + #ifdef RPI_EDITOR #include #endif @@ -84,8 +86,11 @@ namespace AZ void RPISystemComponent::Activate() { - // [GFX TODO] [ATOM-1436] this can be removed when setup and save system component's configure from projectConfigure.exe is fixed. - m_rpiDescriptor.m_rhiSystemDescriptor.m_drawListTags.push_back(AZ::Name("forward")); + auto settingsRegistry = AZ::SettingsRegistry::Get(); + if (settingsRegistry) + { + settingsRegistry->GetObject(m_rpiDescriptor, "/O3DE/Atom/RPI/Initialization"); + } m_rpiSystem.Initialize(m_rpiDescriptor); AZ::SystemTickBus::Handler::BusConnect(); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/Buffer.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/Buffer.cpp index 87e7605c71..2d812c602f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/Buffer.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/Buffer.cpp @@ -176,8 +176,7 @@ namespace AZ return RHI::ResultCode::Success; } - // ResultCode::Unimplemented is used by Null Renderer and hence is a valid use case - AZ_Error("Buffer", resultCode == AZ::RHI::ResultCode::Unimplemented, "Buffer::Init() failed to initialize RHI buffer. Error code: %d", static_cast(resultCode)); + AZ_Error("Buffer", false, "Buffer::Init() failed to initialize RHI buffer. Error code: %d", static_cast(resultCode)); return resultCode; } @@ -241,11 +240,6 @@ namespace AZ { return response.m_data; } - else if (result == RHI::ResultCode::Unimplemented) - { - // ResultCode::Unimplemented is used by Null Renderer and hence is a valid use case - return nullptr; - } else { AZ_Error("RPI::Buffer", false, "Failed to update RHI buffer. Error code: %d", result); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/BufferSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/BufferSystem.cpp index bb66526ea0..77e32cd040 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/BufferSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/BufferSystem.cpp @@ -136,6 +136,7 @@ namespace AZ return false; } + bufferPool->SetName(Name(AZStd::string::format("RPI::CommonBufferPool_%i", static_cast(poolType)))); RHI::ResultCode resultCode = bufferPool->Init(*device, bufferPoolDesc); if (resultCode != RHI::ResultCode::Success) { diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Culling.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Culling.cpp index 841607404a..bedf4fe989 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Culling.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Culling.cpp @@ -31,7 +31,7 @@ #include #endif -//Enables more inner-loop profiling scopes (can create high overhead in RadTelemetry if there are many-many objects in a scene) +//Enables more inner-loop profiling scopes (can create high overhead in telemetry if there are many-many objects in a scene) //#define AZ_CULL_PROFILE_DETAILED //Enables more detailed profiling descriptions within the culling system, but adds some performance overhead. @@ -299,7 +299,7 @@ namespace AZ //work function void Process() override { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); const View::UsageFlags viewFlags = m_jobData->m_view->GetUsageFlags(); const RHI::DrawListMask drawListMask = m_jobData->m_view->GetDrawListMask(); @@ -312,7 +312,7 @@ namespace AZ bool nodeIsContainedInFrustum = ShapeIntersection::Contains(m_jobData->m_frustum, nodeData.m_bounds); #ifdef AZ_CULL_PROFILE_VERBOSE - AZ_PROFILE_SCOPE(AzRender, "process node (view: %s, skip fine cull: %d", + AZ_PROFILE_SCOPE(RPI, "process node (view: %s, skip fine cull: %d", m_view->GetName().GetCStr(), nodeIsContainedInFrustum ? 1 : 0); #endif @@ -385,7 +385,7 @@ namespace AZ if (m_jobData->m_debugCtx->m_debugDraw && (m_jobData->m_view->GetName() == m_jobData->m_debugCtx->m_currentViewSelectionName)) { - AZ_PROFILE_SCOPE(AzRender, "debug draw culling"); + AZ_PROFILE_SCOPE(RPI, "debug draw culling"); AuxGeomDrawPtr auxGeomPtr = AuxGeomFeatureProcessorInterface::GetDrawQueueForScene(m_jobData->m_scene); if (auxGeomPtr) @@ -507,7 +507,7 @@ namespace AZ void CullingScene::ProcessCullables(const Scene& scene, View& view, AZ::Job& parentJob) { - AZ_PROFILE_SCOPE(AzRender, "CullingScene::ProcessCullables() - %s", view.GetName().GetCStr()); + AZ_PROFILE_SCOPE(RPI, "CullingScene::ProcessCullables() - %s", view.GetName().GetCStr()); const Matrix4x4& worldToClip = view.GetWorldToClipMatrix(); Frustum frustum = Frustum::CreateFromMatrixColumnMajor(worldToClip); @@ -596,9 +596,9 @@ namespace AZ jobData->m_maskedOcclusionCulling = maskedOcclusionCulling; #endif - auto nodeVisitorLambda = [this, jobData, &parentJob, &frustum, &worklist](const AzFramework::IVisibilityScene::NodeData& nodeData) -> void + auto nodeVisitorLambda = [jobData, &parentJob, &worklist](const AzFramework::IVisibilityScene::NodeData& nodeData) -> void { - AZ_PROFILE_SCOPE(AzRender, "nodeVisitorLambda()"); + AZ_PROFILE_SCOPE(RPI, "nodeVisitorLambda()"); AZ_Assert(nodeData.m_entries.size() > 0, "should not get called with 0 entries"); AZ_Assert(worklist.size() < worklist.capacity(), "we should always have room to push a node on the queue"); @@ -645,7 +645,7 @@ namespace AZ uint32_t AddLodDataToView(const Vector3& pos, const Cullable::LodData& lodData, RPI::View& view) { #ifdef AZ_CULL_PROFILE_DETAILED - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); #endif const Matrix4x4& viewToClip = view.GetViewToClipMatrix(); @@ -663,7 +663,7 @@ namespace AZ auto addLodToDrawPacket = [&](const Cullable::LodData::Lod& lod) { #ifdef AZ_CULL_PROFILE_VERBOSE - AZ_PROFILE_SCOPE(AzRender, "add draw packets: %zu", lod.m_drawPackets.size()); + AZ_PROFILE_SCOPE(RPI, "add draw packets: %zu", lod.m_drawPackets.size()); #endif numVisibleDrawPackets += static_cast(lod.m_drawPackets.size()); //don't want to pay the cost of aznumeric_cast<> here so using static_cast<> instead for (const RHI::DrawPacket* drawPacket : lod.m_drawPackets) @@ -672,20 +672,25 @@ namespace AZ } }; - if (lodData.m_lodOverride == Cullable::NoLodOverride) + switch (lodData.m_lodConfiguration.m_lodType) { - for (const Cullable::LodData::Lod& lod : lodData.m_lods) - { - //Note that this supports overlapping lod ranges (to suport cross-fading lods, for example) - if (approxScreenPercentage >= lod.m_screenCoverageMin && approxScreenPercentage <= lod.m_screenCoverageMax) + case Cullable::LodType::SpecificLod: + if (lodData.m_lodConfiguration.m_lodOverride < lodData.m_lods.size()) { - addLodToDrawPacket(lod); + addLodToDrawPacket(lodData.m_lods.at(lodData.m_lodConfiguration.m_lodOverride)); } - } - } - else if(lodData.m_lodOverride < lodData.m_lods.size()) - { - addLodToDrawPacket(lodData.m_lods.at(lodData.m_lodOverride)); + break; + case Cullable::LodType::ScreenCoverage: + default: + for (const Cullable::LodData::Lod& lod : lodData.m_lods) + { + // Note that this supports overlapping lod ranges (to suport cross-fading lods, for example) + if (approxScreenPercentage >= lod.m_screenCoverageMin && approxScreenPercentage <= lod.m_screenCoverageMax) + { + addLodToDrawPacket(lod); + } + } + break; } return numVisibleDrawPackets; diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicDrawContext.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicDrawContext.cpp index 29f57d6e0f..4da85823b3 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicDrawContext.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicDrawContext.cpp @@ -25,8 +25,7 @@ namespace AZ namespace { constexpr const char* PerContextSrgName = "PerContextSrg"; - constexpr const char* PerDrawSrgName = "PerDrawSrg"; - }; + } void DynamicDrawContext::MultiStates::UpdateHash(const DrawStateOptions& drawStateOptions) { diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/ImageSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/ImageSystem.cpp index cb838eb2ba..d4a55d1c29 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/ImageSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/ImageSystem.cpp @@ -254,7 +254,7 @@ namespace AZ poolAssetCreator.SetPoolDescriptor(AZStd::move(imagePoolDescriptor)); poolAssetCreator.SetControllerAsset(m_defaultStreamingImageControllerAsset); poolAssetCreator.SetPoolName(systemStreamingPoolDescriptor.m_name); - const bool created = poolAssetCreator.End(poolAsset); + [[maybe_unused]] const bool created = poolAssetCreator.End(poolAsset); AZ_Assert(created, "Failed to build streaming image pool"); m_systemStreamingPool = StreamingImagePool::FindOrCreate(poolAsset); @@ -272,7 +272,7 @@ namespace AZ poolAssetCreator.SetPoolDescriptor(AZStd::move(imagePoolDescriptor)); poolAssetCreator.SetControllerAsset(m_defaultStreamingImageControllerAsset); poolAssetCreator.SetPoolName(assetStreamingPoolDescriptor.m_name); - const bool created = poolAssetCreator.End(poolAsset); + [[maybe_unused]] const bool created = poolAssetCreator.End(poolAsset); AZ_Assert(created, "Failed to build streaming image pool for assets"); m_assetStreamingPool = StreamingImagePool::FindOrCreate(poolAsset); @@ -292,7 +292,7 @@ namespace AZ poolAssetCreator.Begin(systemAttachmentPoolDescriptor.m_assetId); poolAssetCreator.SetPoolDescriptor(AZStd::move(imagePoolDescriptor)); poolAssetCreator.SetPoolName(systemAttachmentPoolDescriptor.m_name); - const bool created = poolAssetCreator.End(poolAsset); + [[maybe_unused]] const bool created = poolAssetCreator.End(poolAsset); AZ_Assert(created, "Failed to build attachment image pool"); m_systemAttachmentPool = AttachmentImagePool::FindOrCreate(poolAsset); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImageController.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImageController.cpp index 97a3eb324b..a84d8ca9b7 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImageController.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImageController.cpp @@ -88,7 +88,7 @@ namespace AZ { if (StreamingImage* image = context->TryGetImage()) { - const RHI::ResultCode resultCode = image->ExpandMipChain(); + [[maybe_unused]] const RHI::ResultCode resultCode = image->ExpandMipChain(); AZ_Warning("StreamingImageController", resultCode == RHI::ResultCode::Success, "Failed to expand mip chain for streaming image."); } context->m_queuedForMipExpand = false; diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Material/Material.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Material/Material.cpp index 1de6776d9c..3b82114a69 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Material/Material.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Material/Material.cpp @@ -310,7 +310,7 @@ namespace AZ if (NeedsCompile() && CanCompile()) { - AZ_PROFILE_BEGIN(AzRender, "Material::Compile() Processing Functors"); + AZ_PROFILE_BEGIN(RPI, "Material::Compile() Processing Functors"); for (const Ptr& functor : m_materialAsset->GetMaterialFunctors()) { if (functor) @@ -339,7 +339,7 @@ namespace AZ AZ_Error(s_debugTraceName, false, "Material functor is null."); } } - AZ_PROFILE_END(); + AZ_PROFILE_END(RPI); m_propertyDirtyFlags.reset(); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/MeshDrawPacket.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/MeshDrawPacket.cpp index 7fd7133cee..0e4c8ec15a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/MeshDrawPacket.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/MeshDrawPacket.cpp @@ -88,7 +88,7 @@ namespace AZ } else { - itEntry->second == value; + itEntry->second = value; } } } @@ -124,7 +124,7 @@ namespace AZ bool MeshDrawPacket::DoUpdate(const Scene& parentScene) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); const ModelLod::Mesh& mesh = m_modelLod->GetMeshes()[m_modelLodMeshIndex]; if (!m_material) @@ -155,7 +155,7 @@ namespace AZ auto appendShader = [&](const ShaderCollection::Item& shaderItem) { - AZ_PROFILE_SCOPE(AzRender, "appendShader()"); + AZ_PROFILE_SCOPE(RPI, "appendShader()"); // Skip the shader item without creating the shader instance // if the mesh is not going to be rendered based on the draw tag @@ -256,7 +256,7 @@ namespace AZ Data::Instance drawSrg; if (drawSrgLayout) { - AZ_PROFILE_SCOPE(AzRender, "create drawSrg"); + AZ_PROFILE_SCOPE(RPI, "create drawSrg"); // If the DrawSrg exists we must create and bind it, otherwise the CommandList will fail validation for SRG being null drawSrg = RPI::ShaderResourceGroup::Create(shader->GetAsset(), shader->GetSupervariantIndex(), drawSrgLayout->GetName()); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/Model.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/Model.cpp index 0cbcdbf5f4..6fd313e27f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/Model.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/Model.cpp @@ -42,7 +42,7 @@ namespace AZ Data::Instance Model::CreateInternal(const Data::Asset& modelAsset) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); Data::Instance model = aznew Model(); const RHI::ResultCode resultCode = model->Init(modelAsset); @@ -56,7 +56,7 @@ namespace AZ RHI::ResultCode Model::Init(const Data::Asset& modelAsset) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); m_lods.resize(modelAsset->GetLodAssets().size()); @@ -107,7 +107,7 @@ namespace AZ { if (m_isUploadPending) { - AZ_PROFILE_SCOPE(AzRender, "Model::WaitForUpload - %s", GetDatabaseName()); + AZ_PROFILE_SCOPE(RPI, "Model::WaitForUpload - %s", GetDatabaseName()); for (const Data::Instance& lod : m_lods) { lod->WaitForUpload(); @@ -128,7 +128,7 @@ namespace AZ bool Model::LocalRayIntersection(const AZ::Vector3& rayStart, const AZ::Vector3& rayDir, float& distanceNormalized, AZ::Vector3& normal) const { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); if (!GetModelAsset()) { @@ -171,7 +171,7 @@ namespace AZ float& distanceNormalized, AZ::Vector3& normal) const { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); const AZ::Vector3 clampedScale = nonUniformScale.GetMax(AZ::Vector3(AZ::MinTransformScale)); const AZ::Transform inverseTM = modelTransform.GetInverse(); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLod.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLod.cpp index cfe0d08270..04fa004228 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLod.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLod.cpp @@ -264,7 +264,7 @@ namespace AZ const MaterialModelUvOverrideMap& materialModelUvMap, const MaterialUvNameMap& materialUvNameMap) const { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); streamBufferViewsOut.clear(); @@ -366,7 +366,7 @@ namespace AZ const MaterialModelUvOverrideMap& materialModelUvMap, const MaterialUvNameMap& materialUvNameMap) const { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); const Mesh& mesh = m_meshes[meshIndex]; diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLodUtils.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLodUtils.cpp index 0fe035dd85..ef9521d23c 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLodUtils.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLodUtils.cpp @@ -27,7 +27,7 @@ namespace AZ ModelLodIndex SelectLod(const View* view, const Vector3& position, const Model& model, ModelLodIndex lodOverride) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); ModelLodIndex lodIndex; if (model.GetLodCount() == 1) { diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/AttachmentReadback.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/AttachmentReadback.cpp index 29af8b7b63..146c37fe1b 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/AttachmentReadback.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/AttachmentReadback.cpp @@ -21,9 +21,10 @@ #include #include #include +#include #include -#include +#include #include @@ -175,6 +176,11 @@ namespace AZ bool AttachmentReadback::ReadPassAttachment(const PassAttachment* attachment, const AZ::Name& readbackName) { + if (AZ::RHI::IsNullRenderer()) + { + return false; + } + if (!IsReady()) { AZ_Assert(false, "AttachmentReadback is not ready to readback an attachment"); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassLibrary.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassLibrary.cpp index ca49843efb..8eedf3aa1f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassLibrary.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassLibrary.cpp @@ -247,8 +247,6 @@ namespace AZ void PassLibrary::OnAssetReloaded(Data::Asset asset) { - Data::AssetId assetId = asset->GetId(); - // Handle pass asset reload Data::Asset passAsset = { asset.GetAs(), AZ::Data::AssetLoadBehavior::PreLoad }; if (passAsset && passAsset->GetPassTemplate()) diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassSystem.cpp index 4cf952ee01..a8feeb1047 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassSystem.cpp @@ -17,7 +17,7 @@ #include #include -#include +#include #include #include @@ -189,7 +189,7 @@ namespace AZ void PassSystem::BuildPasses() { m_state = PassSystemState::BuildingPasses; - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); AZ_ATOM_PROFILE_FUNCTION("RPI", "PassSystem: BuildPassAttachments"); m_passHierarchyChanged = m_passHierarchyChanged || !m_buildPassList.empty(); @@ -239,7 +239,7 @@ namespace AZ void PassSystem::InitializePasses() { m_state = PassSystemState::InitializingPasses; - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); AZ_ATOM_PROFILE_FUNCTION("RPI", "PassSystem: BuildPassAttachments"); m_passHierarchyChanged = m_passHierarchyChanged || !m_initializePassList.empty(); @@ -286,7 +286,7 @@ namespace AZ return; } - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); PassValidationResults validationResults; m_rootPass->Validate(validationResults); @@ -307,7 +307,7 @@ namespace AZ void PassSystem::FrameUpdate(RHI::FrameGraphBuilder& frameGraphBuilder) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); AZ_ATOM_PROFILE_FUNCTION("RPI", "PassSystem: FrameUpdate"); ResetFrameStatistics(); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RasterPass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RasterPass.cpp index d37002eb6b..51cbc82f2b 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RasterPass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RasterPass.cpp @@ -216,7 +216,7 @@ namespace AZ void RasterPass::CompileResources(const RHI::FrameGraphCompileContext& context) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); if (m_shaderResourceGroup == nullptr) { @@ -230,7 +230,7 @@ namespace AZ void RasterPass::BuildCommandListInternal(const RHI::FrameGraphExecuteContext& context) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); RHI::CommandList* commandList = context.GetCommandList(); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RenderPass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RenderPass.cpp index 9b182a3c4b..318ea7d11f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RenderPass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RenderPass.cpp @@ -494,6 +494,7 @@ namespace AZ { if (query->BeginQuery(context) == QueryResultCode::Fail) { + AZ_UNUSED(this); // Prevent unused warning in release builds AZ_WarningOnce("RenderPass", false, "BeginScopeQuery failed. Make sure AddScopeQueryToFrameGraph was called in SetupFrameGraphDependencies" " for this pass: %s", this->RTTI_GetTypeName()); } diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/RPISystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/RPISystem.cpp index 5eb9bd2d46..66c4f6d20a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/RPISystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/RPISystem.cpp @@ -36,6 +36,9 @@ #include +AZ_DEFINE_BUDGET(AzRender); +AZ_DEFINE_BUDGET(RPI); + // This will cause the RPI System to print out global state (like the current pass hierarchy) when an assert is hit // This is useful for rendering engineers debugging a crash in the RPI/RHI layers #define AZ_RPI_PRINT_GLOBAL_STATE_ON_ASSERT 0 @@ -270,7 +273,7 @@ namespace AZ return; } - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); AZ_ATOM_PROFILE_FUNCTION("RPI", "RPISystem: RenderTick"); // Query system update is to increment the frame count @@ -369,7 +372,7 @@ namespace AZ return; } - m_rhiSystem.Init(m_descriptor.m_rhiSystemDescriptor); + m_rhiSystem.Init(); m_imageSystem.Init(m_descriptor.m_imageSystemDescriptor); m_bufferSystem.Init(); m_dynamicDraw.Init(m_descriptor.m_dynamicDrawSystemDescriptor); @@ -393,7 +396,7 @@ namespace AZ } //Init rhi/image/buffer systems to match InitializeSystemAssets - m_rhiSystem.Init(m_descriptor.m_rhiSystemDescriptor); + m_rhiSystem.Init(); m_imageSystem.Init(m_descriptor.m_imageSystemDescriptor); m_bufferSystem.Init(); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/RenderPipeline.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/RenderPipeline.cpp index a552ac86f2..6d974a074f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/RenderPipeline.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/RenderPipeline.cpp @@ -377,7 +377,7 @@ namespace AZ void RenderPipeline::OnStartFrame(const TickTimeInfo& tick) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); m_lastRenderStartTime = tick.m_currentGameTime; diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Scene.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Scene.cpp index 26fdae1c54..761ce20ee8 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Scene.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Scene.cpp @@ -400,7 +400,7 @@ namespace AZ AZ_ATOM_PROFILE_FUNCTION("RPI", "Scene: PrepareRender"); { - AZ_PROFILE_SCOPE(AzRender, "WaitForSimulationCompletion"); + AZ_PROFILE_SCOPE(RPI, "WaitForSimulationCompletion"); AZ_ATOM_PROFILE_TIME_GROUP_REGION("RPI", "WaitForSimulationCompletion"); WaitAndCleanCompletionJob(m_simulationCompletion); } @@ -408,7 +408,7 @@ namespace AZ SceneNotificationBus::Event(GetId(), &SceneNotification::OnBeginPrepareRender); { - AZ_PROFILE_SCOPE(AzRender, "m_srgCallback"); + AZ_PROFILE_SCOPE(RPI, "m_srgCallback"); AZ_ATOM_PROFILE_TIME_GROUP_REGION("RPI", "ShaderResourceGroupCallback: SrgCallback"); // Set values for scene srg if (m_srg && m_srgCallback) @@ -484,7 +484,7 @@ namespace AZ } { - AZ_PROFILE_SCOPE(AzRender, "CollectDrawPackets"); + AZ_PROFILE_SCOPE(RPI, "CollectDrawPackets"); AZ_ATOM_PROFILE_TIME_GROUP_REGION("RPI", "CollectDrawPackets"); AZ::JobCompletion* collectDrawPacketsCompletion = aznew AZ::JobCompletion(); @@ -534,7 +534,7 @@ namespace AZ } { - AZ_PROFILE_BEGIN(AzRender, "FinalizeDrawLists"); + AZ_PROFILE_BEGIN(RPI, "FinalizeDrawLists"); AZ_ATOM_PROFILE_TIME_GROUP_REGION("RPI", "FinalizeDrawLists"); if (jobPolicy == RHI::JobPolicy::Serial) { @@ -542,7 +542,7 @@ namespace AZ { view->FinalizeDrawLists(); } - AZ_PROFILE_END(); + AZ_PROFILE_END(RPI); } else { @@ -558,7 +558,7 @@ namespace AZ finalizeDrawListsJob->SetDependent(finalizeDrawListsCompletion); finalizeDrawListsJob->Start(); } - AZ_PROFILE_END(); + AZ_PROFILE_END(RPI); WaitAndCleanCompletionJob(finalizeDrawListsCompletion); } } diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetrics.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetrics.cpp index 5df21f3964..dbb5a30756 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetrics.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetrics.cpp @@ -6,7 +6,7 @@ * */ #include -#include +#include namespace AZ { diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetricsSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetricsSystem.cpp index c0f0e20714..9e633077e7 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetricsSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetricsSystem.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include @@ -113,7 +113,7 @@ namespace AZ return; } - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); AZStd::lock_guard lock(m_metricsMutex); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Shader.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Shader.cpp index f6dcd02804..4440b96f79 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Shader.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Shader.cpp @@ -175,6 +175,8 @@ namespace AZ /// ShaderVariantFinderNotificationBus overrides void Shader::OnShaderVariantAssetReady(Data::Asset shaderVariantAsset, bool isError) { + ShaderReloadDebugTracker::ScopedSection reloadSection("{%p}->Shader::OnShaderVariantAssetReady %s", this, shaderVariantAsset.GetHint().c_str()); + AZ_Assert(shaderVariantAsset, "Reloaded ShaderVariantAsset is null"); const ShaderVariantStableId stableId = shaderVariantAsset->GetStableId(); @@ -297,7 +299,7 @@ namespace AZ const ShaderVariant& Shader::GetVariant(const ShaderVariantId& shaderVariantId) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); Data::Asset shaderVariantAsset = m_asset->GetVariant(shaderVariantId, m_supervariantIndex); if (!shaderVariantAsset || shaderVariantAsset->IsRootVariant()) { @@ -314,14 +316,14 @@ namespace AZ ShaderVariantSearchResult Shader::FindVariantStableId(const ShaderVariantId& shaderVariantId) const { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); ShaderVariantSearchResult variantSearchResult = m_asset->FindVariantStableId(shaderVariantId); return variantSearchResult; } const ShaderVariant& Shader::GetVariant(ShaderVariantStableId shaderVariantStableId) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); if (!shaderVariantStableId.IsValid() || shaderVariantStableId == ShaderAsset::RootShaderVariantStableId) { diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderSystem.cpp index c1ae1f0be9..ec6aeb3771 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderSystem.cpp @@ -25,8 +25,6 @@ namespace AZ { namespace RPI { - static constexpr char ShaderSystemLog[] = "ShaderSystem"; - void ShaderSystem::Reflect(ReflectContext* context) { ShaderOptionDescriptor::Reflect(context); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/View.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/View.cpp index f1f25e3303..b07728938f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/View.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/View.cpp @@ -30,8 +30,10 @@ namespace AZ namespace RPI { // fixed-size software occlusion culling buffer +#if AZ_TRAIT_MASKED_OCCLUSION_CULLING_SUPPORTED const uint32_t MaskedSoftwareOcclusionCullingWidth = 1920; const uint32_t MaskedSoftwareOcclusionCullingHeight = 1080; +#endif ViewPtr View::CreateView(const AZ::Name& name, UsageFlags usage) { @@ -237,7 +239,7 @@ namespace AZ void View::FinalizeDrawLists() { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); m_drawListContext.FinalizeLists(); SortFinalizedDrawLists(); } diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageSystemDescriptor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageSystemDescriptor.cpp index 611a83be93..937daf3f62 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageSystemDescriptor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageSystemDescriptor.cpp @@ -25,21 +25,6 @@ namespace AZ ->Field("SystemStreamingImagePoolSize", &ImageSystemDescriptor::m_systemStreamingImagePoolSize) ->Field("SystemAttachmentImagePoolSize", &ImageSystemDescriptor::m_systemAttachmentImagePoolSize) ; - - if (AZ::EditContext* ec = serializeContext->GetEditContext()) - { - ec->Class("Image System Config", "Settings for RPI Image System") - ->ClassElement(AZ::Edit::ClassElements::EditorData, "") - ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("System", 0xc94d118b)) - ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - ->DataElement(AZ::Edit::UIHandlers::Default, &ImageSystemDescriptor::m_assetStreamingImagePoolSize, - "Streaming image pool size for assets", "Streaming image pool size in bytes for streaming images created from assets") - ->DataElement(AZ::Edit::UIHandlers::Default, &ImageSystemDescriptor::m_systemStreamingImagePoolSize, - "System streaming image pool size", "Streaming image pool size in bytes for streaming images created in memory") - ->DataElement(AZ::Edit::UIHandlers::Default, &ImageSystemDescriptor::m_systemAttachmentImagePoolSize, - "System attachment image pool size", "Default attachment image pool size in bytes") - ; - } } } } // namespace RPI diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAsset.cpp index 1acb1c69a1..c3e0221192 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAsset.cpp @@ -20,6 +20,8 @@ namespace AZ { namespace RPI { + const char* MaterialAsset::s_debugTraceName = "MaterialAsset"; + const char* MaterialAsset::DisplayName = "MaterialAsset"; const char* MaterialAsset::Group = "Material"; const char* MaterialAsset::Extension = "azmaterial"; @@ -29,9 +31,10 @@ namespace AZ if (auto* serializeContext = azrtti_cast(context)) { serializeContext->Class() - ->Version(9) + ->Version(10) ->Field("materialTypeAsset", &MaterialAsset::m_materialTypeAsset) ->Field("propertyValues", &MaterialAsset::m_propertyValues) + ->Field("propertyNames", &MaterialAsset::m_propertyNames) ; } } @@ -99,6 +102,11 @@ namespace AZ AZStd::array_view MaterialAsset::GetPropertyValues() const { + if (!m_propertyNames.empty() && m_isDirty) + { + const_cast(this)->RealignPropertyValuesAndNames(); + } + return m_propertyValues; } @@ -146,6 +154,34 @@ namespace AZ } } + void MaterialAsset::RealignPropertyValuesAndNames() + { + const MaterialPropertiesLayout* propertyLayout = GetMaterialPropertiesLayout(); + AZStd::vector alignedPropertyValues(m_materialTypeAsset->GetDefaultPropertyValues().begin(), m_materialTypeAsset->GetDefaultPropertyValues().end()); + for (size_t i = 0; i < m_propertyNames.size(); ++i) + { + const MaterialPropertyIndex propertyIndex = propertyLayout->FindPropertyIndex(m_propertyNames[i]); + if (propertyIndex.IsValid()) + { + alignedPropertyValues[propertyIndex.GetIndex()] = m_propertyValues[i]; + } + else + { + AZ_Warning(s_debugTraceName, false, "Material property name \"%s\" is not found in the material properties layout and will not be used.", m_propertyNames[i].GetCStr()); + } + } + m_propertyValues.swap(alignedPropertyValues); + + const size_t propertyCount = propertyLayout->GetPropertyCount(); + m_propertyNames.resize(propertyCount); + for (size_t i = 0; i < propertyCount; ++i) + { + m_propertyNames[i] = propertyLayout->GetPropertyDescriptor(MaterialPropertyIndex{ i })->GetName(); + } + + m_isDirty = false; + } + void MaterialAsset::ReinitializeMaterialTypeAsset(Data::Asset asset) { Data::Asset newMaterialTypeAsset = { asset.GetAs(), AZ::Data::AssetLoadBehavior::PreLoad }; @@ -157,6 +193,8 @@ namespace AZ // This also covers the case where just the MaterialTypeAsset is reloaded and not the MaterialAsset. m_materialTypeAsset = newMaterialTypeAsset; + m_isDirty = true; + // Notify interested parties that this MaterialAsset is changed and may require other data to reinitialize as well MaterialReloadNotificationBus::Event(GetId(), &MaterialReloadNotifications::OnMaterialAssetReinitialized, Data::Asset{this, AZ::Data::AssetLoadBehavior::PreLoad}); } diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAssetCreator.cpp index 8e401d2ee8..79d19c15a2 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAssetCreator.cpp @@ -16,7 +16,7 @@ namespace AZ { namespace RPI { - void MaterialAssetCreator::Begin(const Data::AssetId& assetId, MaterialAsset& parentMaterial) + void MaterialAssetCreator::Begin(const Data::AssetId& assetId, MaterialAsset& parentMaterial, bool includeMaterialPropertyNames) { BeginCommon(assetId); @@ -36,6 +36,10 @@ namespace AZ ReportError("MaterialPropertiesLayout is null"); return; } + if (includeMaterialPropertyNames) + { + PopulatePropertyNameList(); + } // Note we don't have to check the validity of these property values because the parent material's AssetCreator already did that. m_asset->m_propertyValues.assign(parentMaterial.GetPropertyValues().begin(), parentMaterial.GetPropertyValues().end()); @@ -52,14 +56,14 @@ namespace AZ } } - void MaterialAssetCreator::Begin(const Data::AssetId& assetId, MaterialTypeAsset& materialType) + void MaterialAssetCreator::Begin(const Data::AssetId& assetId, MaterialTypeAsset& materialType, bool includeMaterialPropertyNames) { BeginCommon(assetId); if (ValidateIsReady()) { m_asset->m_materialTypeAsset = { &materialType, AZ::Data::AssetLoadBehavior::PreLoad }; - + if (!m_asset->m_materialTypeAsset) { ReportError("MaterialTypeAsset is null"); @@ -67,6 +71,11 @@ namespace AZ } m_materialPropertiesLayout = m_asset->GetMaterialPropertiesLayout(); + if (includeMaterialPropertyNames) + { + PopulatePropertyNameList(); + } + if (!m_materialPropertiesLayout) { ReportError("MaterialPropertiesLayout is null"); @@ -101,5 +110,16 @@ namespace AZ m_asset->SetReady(); return EndCommon(result); } + + void MaterialAssetCreator::PopulatePropertyNameList() + { + for (int i = 0; i < m_materialPropertiesLayout->GetPropertyCount(); ++i) + { + MaterialPropertyIndex propertyIndex{ i }; + auto& propertyName = m_materialPropertiesLayout->GetPropertyDescriptor(propertyIndex)->GetName(); + m_asset->m_propertyNames.emplace_back(propertyName); + } + } + } // namespace RPI } // namespace AZ diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAsset.cpp index e1da50d2fb..8230c57e15 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAsset.cpp @@ -96,7 +96,7 @@ namespace AZ const AZ::Vector3& rayStart, const AZ::Vector3& rayDir, bool allowBruteForce, float& distanceNormalized, AZ::Vector3& normal) const { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); if (!m_modelTriangleCount) { diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAssetCreator.cpp index b35c9e44fe..524ef9e910 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAssetCreator.cpp @@ -118,6 +118,12 @@ namespace AZ } } + const ModelMaterialSlotMap &sourceMaterialSlotMap = sourceAsset->GetMaterialSlots(); + for (const auto& sourceMaterialSlot : sourceMaterialSlotMap) + { + creator.AddMaterialSlot(sourceMaterialSlot.second); + } + return creator.End(clonedResult); } } // namespace RPI diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/RPISystemDescriptor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/RPISystemDescriptor.cpp index 21c6061d8e..dc379396eb 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/RPISystemDescriptor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/RPISystemDescriptor.cpp @@ -25,35 +25,12 @@ namespace AZ ; serializeContext->Class() - ->Version(6) // ATOM-15472 - ->Field("RHISystemDescriptor", &RPISystemDescriptor::m_rhiSystemDescriptor) + ->Version(7) // ATOM-16237 ->Field("CommonSrgsShaderAssetPath", &RPISystemDescriptor::m_commonSrgsShaderAssetPath) ->Field("ImageSystemDescriptor", &RPISystemDescriptor::m_imageSystemDescriptor) ->Field("GpuQuerySystemDescriptor", &RPISystemDescriptor::m_gpuQuerySystemDescriptor) ->Field("DynamicDrawSystemDescriptor", &RPISystemDescriptor::m_dynamicDrawSystemDescriptor) ; - - if (AZ::EditContext* ec = serializeContext->GetEditContext()) - { - ec->Class("Dynamic Draw System Settings", "Settings for the Dynamic Draw System") - ->ClassElement(AZ::Edit::ClassElements::EditorData, "") - ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("System", 0xc94d118b)) - ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - ->DataElement(AZ::Edit::UIHandlers::Default, &DynamicDrawSystemDescriptor::m_dynamicBufferPoolSize, "Dynamic Buffer Pool Size", "The maxinum size of pool which is used to allocate dynamic buffers") - ; - - ec->Class("RPI Settings", "Settings for runtime RPI system") - ->ClassElement(AZ::Edit::ClassElements::EditorData, "") - ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("System", 0xc94d118b)) - ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - ->DataElement(AZ::Edit::UIHandlers::Default, &RPISystemDescriptor::m_commonSrgsShaderAssetPath, "Common Shader Asset Path For Scene & View SRGs", - "Shader asset path used to get the Scene and View SRGs for all RPI scenes and views respectively") - ->DataElement(AZ::Edit::UIHandlers::Default, &RPISystemDescriptor::m_rhiSystemDescriptor, "RHI System Config", "Configuration of Render Hardware Interface") - ->DataElement(AZ::Edit::UIHandlers::Default, &RPISystemDescriptor::m_imageSystemDescriptor, "Image System Config", "Configuration of Image System") - ->DataElement(AZ::Edit::UIHandlers::Default, &RPISystemDescriptor::m_gpuQuerySystemDescriptor, "Gpu Query System Config", "Configuration of Gpu Query System") - ->DataElement(AZ::Edit::UIHandlers::Default, &RPISystemDescriptor::m_dynamicDrawSystemDescriptor, "Dynamic Draw System Config", "Configuration of Dynamic Draw System") - ; - } } } } // namespace RPI diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAsset.cpp index adeb564675..616aa44299 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAsset.cpp @@ -28,7 +28,7 @@ namespace AZ static constexpr uint32_t SubProductTypeBitPosition = 0; static constexpr uint32_t SubProductTypeNumBits = SupervariantIndexBitPosition - SubProductTypeBitPosition; - static constexpr uint32_t SubProductTypeMaxValue = (1 << SubProductTypeNumBits) - 1; + [[maybe_unused]] static constexpr uint32_t SubProductTypeMaxValue = (1 << SubProductTypeNumBits) - 1; static_assert(RhiIndexMaxValue == RHI::Limits::APIType::PerPlatformApiUniqueIndexMax); @@ -172,7 +172,7 @@ namespace AZ Data::Asset ShaderAsset::GetVariant( const ShaderVariantId& shaderVariantId, SupervariantIndex supervariantIndex) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); auto variantFinder = AZ::Interface::Get(); AZ_Assert(variantFinder, "The IShaderVariantFinder doesn't exist"); @@ -189,7 +189,7 @@ namespace AZ ShaderVariantSearchResult ShaderAsset::FindVariantStableId(const ShaderVariantId& shaderVariantId) { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); uint32_t dynamicOptionCount = aznumeric_cast(GetShaderOptionGroupLayout()->GetShaderOptions().size()); ShaderVariantSearchResult variantSearchResult{RootShaderVariantStableId, dynamicOptionCount }; @@ -587,6 +587,8 @@ namespace AZ { Data::Asset shaderVariantAsset = { asset.GetAs(), AZ::Data::AssetLoadBehavior::PreLoad }; AZ_Assert(shaderVariantAsset->GetStableId() == RootShaderVariantStableId, "Was expecting to update the root variant"); + SupervariantIndex supervariantIndex = GetSupervariantIndexFromAssetId(asset.GetId()); + GetCurrentShaderApiData().m_supervariants[supervariantIndex.GetIndex()].m_rootShaderVariantAsset = asset; ShaderReloadNotificationBus::Event(GetId(), &ShaderReloadNotificationBus::Events::OnShaderAssetReinitialized, Data::Asset{ this, AZ::Data::AssetLoadBehavior::PreLoad } ); } @@ -607,17 +609,7 @@ namespace AZ // so it continues using the old ShaderVariantAsset instead of the new one. // The OnAssetReady bus function is called automatically whenever a connection to AssetBus is made, so listening to this gives // us the opportunity to assign the appropriate ShaderVariantAsset. - - ShaderReloadNotificationBus::Event(GetId(), &ShaderReloadNotificationBus::Events::OnShaderAssetReinitialized, Data::Asset{ this, AZ::Data::AssetLoadBehavior::PreLoad } ); - - Data::Asset shaderVariantAsset = { asset.GetAs(), AZ::Data::AssetLoadBehavior::PreLoad }; - AZ_Assert(shaderVariantAsset->GetStableId() == RootShaderVariantStableId, - "Was expecting to update the root variant"); - SupervariantIndex supervariantIndex = GetSupervariantIndexFromAssetId(asset.GetId()); - GetCurrentShaderApiData().m_supervariants[supervariantIndex.GetIndex()].m_rootShaderVariantAsset = asset; - - ShaderReloadNotificationBus::Event(GetId(), &ShaderReloadNotificationBus::Events::OnShaderAssetReinitialized, Data::Asset{ this, AZ::Data::AssetLoadBehavior::PreLoad } ); - + ShaderReloadDebugTracker::ScopedSection reloadSection("{%p}->ShaderAsset::OnAssetReady %s", this, asset.GetHint().c_str()); ReinitializeRootShaderVariant(asset); } diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantAsset.cpp index 5d31feb411..442fc6a79f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantAsset.cpp @@ -25,11 +25,11 @@ namespace AZ { static constexpr uint32_t SubProductTypeBitPosition = 17; static constexpr uint32_t SubProductTypeNumBits = SupervariantIndexBitPosition - SubProductTypeBitPosition; - static constexpr uint32_t SubProductTypeMaxValue = (1 << SubProductTypeNumBits) - 1; + [[maybe_unused]] static constexpr uint32_t SubProductTypeMaxValue = (1 << SubProductTypeNumBits) - 1; static constexpr uint32_t StableIdBitPosition = 0; static constexpr uint32_t StableIdNumBits = SubProductTypeBitPosition - StableIdBitPosition; - static constexpr uint32_t StableIdMaxValue = (1 << StableIdNumBits) - 1; + [[maybe_unused]] static constexpr uint32_t StableIdMaxValue = (1 << StableIdNumBits) - 1; static_assert(RhiIndexMaxValue == RHI::Limits::APIType::PerPlatformApiUniqueIndexMax); diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantTreeAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantTreeAsset.cpp index bd0cad9f4d..f17a144adb 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantTreeAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantTreeAsset.cpp @@ -72,7 +72,7 @@ namespace AZ ShaderVariantSearchResult ShaderVariantTreeAsset::FindVariantStableId(const ShaderOptionGroupLayout* shaderOptionGroupLayout, const ShaderVariantId& shaderVariantId) const { - AZ_PROFILE_FUNCTION(AzRender); + AZ_PROFILE_FUNCTION(RPI); struct NodeToVisit { @@ -199,7 +199,6 @@ namespace AZ if ((shaderVariantId.m_mask & option.GetBitMask()).any()) { optionValues.push_back(option.DecodeBits(shaderVariantId.m_key)); - AZ_Assert(optionValues.back() >= 0, "Invalid shader variant key"); } else { diff --git a/Gems/Atom/RPI/Code/Tests.Builders/AnyAssetBuilderTest.cpp b/Gems/Atom/RPI/Code/Tests.Builders/AnyAssetBuilderTest.cpp index fcec484fa9..92e6957e9d 100644 --- a/Gems/Atom/RPI/Code/Tests.Builders/AnyAssetBuilderTest.cpp +++ b/Gems/Atom/RPI/Code/Tests.Builders/AnyAssetBuilderTest.cpp @@ -13,7 +13,7 @@ #include #include -#include +#include #include #include diff --git a/Gems/Atom/RPI/Code/Tests.Builders/BuilderTestFixture.h b/Gems/Atom/RPI/Code/Tests.Builders/BuilderTestFixture.h index 33f237e919..31c1bc6715 100644 --- a/Gems/Atom/RPI/Code/Tests.Builders/BuilderTestFixture.h +++ b/Gems/Atom/RPI/Code/Tests.Builders/BuilderTestFixture.h @@ -49,7 +49,6 @@ namespace UnitTest const char* GetAppRoot() const override { return nullptr; } const char* GetEngineRoot() const override { return nullptr; } const char* GetExecutableFolder() const override { return nullptr; } - AZ::Debug::DrillerManager* GetDrillerManager() override { return nullptr; } void EnumerateEntities(const EntityCallback& /*callback*/) override {} void QueryApplicationType(AZ::ApplicationTypeQuery& /*appType*/) const override {} // The functions we need to implement. diff --git a/Gems/Atom/RPI/Code/Tests.Builders/PassBuilderTest.cpp b/Gems/Atom/RPI/Code/Tests.Builders/PassBuilderTest.cpp index 4e088cece5..60feb7e065 100644 --- a/Gems/Atom/RPI/Code/Tests.Builders/PassBuilderTest.cpp +++ b/Gems/Atom/RPI/Code/Tests.Builders/PassBuilderTest.cpp @@ -16,7 +16,7 @@ #include #include -#include +#include #include diff --git a/Gems/Atom/RPI/Code/Tests.Builders/ResourcePoolBuilderTest.cpp b/Gems/Atom/RPI/Code/Tests.Builders/ResourcePoolBuilderTest.cpp index d6107cda9e..c7e030f912 100644 --- a/Gems/Atom/RPI/Code/Tests.Builders/ResourcePoolBuilderTest.cpp +++ b/Gems/Atom/RPI/Code/Tests.Builders/ResourcePoolBuilderTest.cpp @@ -8,7 +8,7 @@ #include -#include +#include #include #include diff --git a/Gems/Atom/RPI/Code/Tests/Buffer/BufferTests.cpp b/Gems/Atom/RPI/Code/Tests/Buffer/BufferTests.cpp index f648de6997..a2f478901c 100644 --- a/Gems/Atom/RPI/Code/Tests/Buffer/BufferTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Buffer/BufferTests.cpp @@ -616,7 +616,6 @@ namespace UnitTest Data::Asset asset; creator.End(asset); - bufferInfo.m_bufferDescriptor.m_byteCount; Data::Instance bufferInst = RPI::Buffer::FindOrCreate(asset); ASSERT_NE(bufferInst.get(), nullptr); diff --git a/Gems/Atom/RPI/Code/Tests/Common/AssetManagerTestFixture.h b/Gems/Atom/RPI/Code/Tests/Common/AssetManagerTestFixture.h index 63a5865afa..ee3ad94d4f 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/AssetManagerTestFixture.h +++ b/Gems/Atom/RPI/Code/Tests/Common/AssetManagerTestFixture.h @@ -47,7 +47,6 @@ namespace UnitTest const char* GetAppRoot() const override { return nullptr; } const char* GetEngineRoot() const override { return nullptr; } const char* GetExecutableFolder() const override { return nullptr; } - AZ::Debug::DrillerManager* GetDrillerManager() override { return nullptr; } void EnumerateEntities(const EntityCallback& /*callback*/) override {} AZ::SerializeContext* GetSerializeContext() override { diff --git a/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinder.cpp b/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinder.cpp index 7ffdffbb14..fa88f145a6 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinder.cpp +++ b/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinder.cpp @@ -105,7 +105,7 @@ namespace UnitTest { EXPECT_FALSE(m_disabled); - AZStd::for_each(m_expectedErrors.begin(), m_expectedErrors.end(), [this](ExpectedError& expectedError) { expectedError.m_gotCount = 0; }); + AZStd::for_each(m_expectedErrors.begin(), m_expectedErrors.end(), [](ExpectedError& expectedError) { expectedError.m_gotCount = 0; }); m_checked = false; } diff --git a/Gems/Atom/RPI/Code/Tests/Common/JsonTestUtils.h b/Gems/Atom/RPI/Code/Tests/Common/JsonTestUtils.h index 2c38090b43..56d537f236 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/JsonTestUtils.h +++ b/Gems/Atom/RPI/Code/Tests/Common/JsonTestUtils.h @@ -15,7 +15,7 @@ #include #include #include -#include +#include #include namespace UnitTest diff --git a/Gems/Atom/RPI/Code/Tests/Image/StreamingImageTests.cpp b/Gems/Atom/RPI/Code/Tests/Image/StreamingImageTests.cpp index 3836f5c8f5..345637bfe5 100644 --- a/Gems/Atom/RPI/Code/Tests/Image/StreamingImageTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Image/StreamingImageTests.cpp @@ -490,7 +490,6 @@ namespace UnitTest const uint16_t mipLevels = 1; const uint16_t arraySize = 1; - const uint16_t pixelSize = 4; Data::Asset mipChain; diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTests.cpp index 0b30b723d6..ce223ceb35 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTests.cpp @@ -267,47 +267,47 @@ namespace UnitTest creator.SetPropertyValue(Name{ "MyBool" }, m_testImageAsset); }); - expectCreatorError([this](MaterialAssetCreator& creator) + expectCreatorError([](MaterialAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyInt" }, 0.0f); }); - expectCreatorError([this](MaterialAssetCreator& creator) + expectCreatorError([](MaterialAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyUInt" }, -1); }); - expectCreatorError([this](MaterialAssetCreator& creator) + expectCreatorError([](MaterialAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyFloat" }, 10u); }); - expectCreatorError([this](MaterialAssetCreator& creator) + expectCreatorError([](MaterialAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyFloat2" }, 1.0f); }); - expectCreatorError([this](MaterialAssetCreator& creator) + expectCreatorError([](MaterialAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyFloat3" }, AZ::Vector4{}); }); - expectCreatorError([this](MaterialAssetCreator& creator) + expectCreatorError([](MaterialAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyFloat4" }, AZ::Vector3{}); }); - expectCreatorError([this](MaterialAssetCreator& creator) + expectCreatorError([](MaterialAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyColor" }, MaterialPropertyValue(false)); }); - expectCreatorError([this](MaterialAssetCreator& creator) + expectCreatorError([](MaterialAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyImage" }, true); }); - expectCreatorError([this](MaterialAssetCreator& creator) + expectCreatorError([](MaterialAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyEnum" }, -1); }); diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialFunctorTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialFunctorTests.cpp index cf64fd12f3..0c84484508 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialFunctorTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialFunctorTests.cpp @@ -19,7 +19,6 @@ #include #include -//#include namespace UnitTest { using namespace AZ; diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialPropertySerializerTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialPropertySerializerTests.cpp index 759842cf96..5386af1cfa 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialPropertySerializerTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialPropertySerializerTests.cpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialSourceDataTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialSourceDataTests.cpp index a20d16b0d6..553c3243e1 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialSourceDataTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialSourceDataTests.cpp @@ -566,7 +566,7 @@ namespace UnitTest // We use local functions to easily start a new MaterialAssetCreator for each test case because // the AssetCreator would just skip subsequent operations after the first failure is detected. - auto expectError = [this](AZStd::function setOneBadInput, [[maybe_unused]] uint32_t expectedAsserts = 2) + auto expectError = [](AZStd::function setOneBadInput, [[maybe_unused]] uint32_t expectedAsserts = 2) { MaterialSourceData sourceData; @@ -583,7 +583,7 @@ namespace UnitTest EXPECT_FALSE(materialAssetOutcome.IsSuccess()); }; - auto expectWarning = [this](AZStd::function setOneBadInput, [[maybe_unused]] uint32_t expectedAsserts = 1) + auto expectWarning = [](AZStd::function setOneBadInput, [[maybe_unused]] uint32_t expectedAsserts = 1) { MaterialSourceData sourceData; diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeAssetTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeAssetTests.cpp index 6b788addc7..e11a049af2 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeAssetTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeAssetTests.cpp @@ -413,7 +413,7 @@ namespace UnitTest EXPECT_EQ(1, creator.GetErrorCount()); }; - auto expectCreatorWarning = [this](AZStd::function passBadInput) + auto expectCreatorWarning = [](AZStd::function passBadInput) { MaterialTypeAssetCreator creator; creator.Begin(Uuid::CreateRandom()); @@ -442,47 +442,47 @@ namespace UnitTest creator.SetPropertyValue(Name{ "MyBool" }, m_testImageAsset); }); - expectCreatorError([this](MaterialTypeAssetCreator& creator) + expectCreatorError([](MaterialTypeAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyInt" }, 0.0f); }); - expectCreatorError([this](MaterialTypeAssetCreator& creator) + expectCreatorError([](MaterialTypeAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyUInt" }, -1); }); - expectCreatorError([this](MaterialTypeAssetCreator& creator) + expectCreatorError([](MaterialTypeAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyFloat" }, 10u); }); - expectCreatorError([this](MaterialTypeAssetCreator& creator) + expectCreatorError([](MaterialTypeAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyFloat2" }, 1.0f); }); - expectCreatorError([this](MaterialTypeAssetCreator& creator) + expectCreatorError([](MaterialTypeAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyFloat3" }, AZ::Vector4{}); }); - expectCreatorError([this](MaterialTypeAssetCreator& creator) + expectCreatorError([](MaterialTypeAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyFloat4" }, AZ::Vector3{}); }); - expectCreatorError([this](MaterialTypeAssetCreator& creator) + expectCreatorError([](MaterialTypeAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyColor" }, MaterialPropertyValue(false)); }); - expectCreatorError([this](MaterialTypeAssetCreator& creator) + expectCreatorError([](MaterialTypeAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyImage" }, true); }); - expectCreatorError([this](MaterialTypeAssetCreator& creator) + expectCreatorError([](MaterialTypeAssetCreator& creator) { creator.SetPropertyValue(Name{ "MyEnum" }, -1); }); diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeSourceDataTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeSourceDataTests.cpp index 44b59059ba..5edf09b67d 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeSourceDataTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeSourceDataTests.cpp @@ -20,7 +20,7 @@ #include #include -#include +#include #include #include diff --git a/Gems/Atom/RPI/Code/Tests/Model/ModelTests.cpp b/Gems/Atom/RPI/Code/Tests/Model/ModelTests.cpp index ff998ad4d3..7b07e14de0 100644 --- a/Gems/Atom/RPI/Code/Tests/Model/ModelTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Model/ModelTests.cpp @@ -783,7 +783,6 @@ namespace UnitTest const uint32_t vertexCount = 36; const uint32_t vertexSize = sizeof(float) * 3; - const uint32_t vertexBufferSize = vertexCount * vertexSize; RHI::BufferViewDescriptor validStreamBufferViewDescriptor = RHI::BufferViewDescriptor::CreateStructured(0, vertexCount, vertexSize); diff --git a/Gems/Atom/RPI/Registry/atom_rpi.setreg b/Gems/Atom/RPI/Registry/atom_rpi.setreg new file mode 100644 index 0000000000..bcbade5d38 --- /dev/null +++ b/Gems/Atom/RPI/Registry/atom_rpi.setreg @@ -0,0 +1,24 @@ +{ + "O3DE": { + "Atom": { + "RPI": { + "Initialization": { + "CommonSrgsShaderAssetPath": "shader/sceneandviewsrgs.azshader", + "ImageSystemDescriptor": { + "AssetStreamingImagePoolSize": 2147483648, // 2 * 1024 * 1024 * 1024 + "SystemStreamingImagePoolSize": 134217728, // 128 * 1024 * 1024 + "SystemAttachmentImagePoolSize": 536870912 // 512 * 1024 * 1024 + }, + "GpuQuerySystemDescriptor": { + "OcclusionQueryCount": 128, + "StatisticsQueryCount": 256, + "TimestampQueryCount": 256 + }, + "DynamicDrawSystemDescriptor": { + "DynamicBufferPoolSize": 50331648 // 3 * 16 * 1024 * 1024 (for 3 frames) + } + } + } + } + } +} diff --git a/Gems/Atom/RPI/Tools/CMakeLists.txt b/Gems/Atom/RPI/Tools/CMakeLists.txt index 62ba4cfb09..5dacb73b0f 100644 --- a/Gems/Atom/RPI/Tools/CMakeLists.txt +++ b/Gems/Atom/RPI/Tools/CMakeLists.txt @@ -18,3 +18,6 @@ if (PAL_TRAIT_BUILD_HOST_TOOLS) endif() endif() +ly_install_directory(DIRECTORIES . + EXCLUDE_PATTERNS tests +) diff --git a/Gems/Atom/RPI/preview.png b/Gems/Atom/RPI/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/Atom/RPI/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/Atom/TestData/TestData/Textures/Foliage_Leaves_0_BaseColor.dds.assetinfo b/Gems/Atom/TestData/TestData/Textures/Foliage_Leaves_0_BaseColor.dds.assetinfo index 1aa896a8d7..8a189b3b98 100644 --- a/Gems/Atom/TestData/TestData/Textures/Foliage_Leaves_0_BaseColor.dds.assetinfo +++ b/Gems/Atom/TestData/TestData/Textures/Foliage_Leaves_0_BaseColor.dds.assetinfo @@ -62,6 +62,14 @@ + + + + + + + + diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Document/AtomToolsDocumentMainWindow.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Document/AtomToolsDocumentMainWindow.h new file mode 100644 index 0000000000..826d2427b1 --- /dev/null +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Document/AtomToolsDocumentMainWindow.h @@ -0,0 +1,90 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#if !defined(Q_MOC_RUN) +#include +#include +#include +#include +#endif + +namespace AtomToolsFramework +{ + //! AtomToolsDocumentMainWindow + class AtomToolsDocumentMainWindow + : public AtomToolsMainWindow + , private AtomToolsDocumentNotificationBus::Handler + { + Q_OBJECT + public: + AZ_CLASS_ALLOCATOR(AtomToolsDocumentMainWindow, AZ::SystemAllocator, 0); + + using Base = AtomToolsMainWindow; + + AtomToolsDocumentMainWindow(QWidget* parent = 0); + ~AtomToolsDocumentMainWindow(); + + protected: + void AddDocumentMenus(); + void AddDocumentTabBar(); + + QString GetDocumentPath(const AZ::Uuid& documentId) const; + + AZ::Uuid GetDocumentTabId(const int tabIndex) const; + + void AddDocumentTab( + const AZ::Uuid& documentId, + const AZStd::string& label, + const AZStd::string& toolTip); + + void RemoveDocumentTab(const AZ::Uuid& documentId); + + void UpdateDocumentTab( + const AZ::Uuid& documentId, const AZStd::string& label, const AZStd::string& toolTip, bool isModified); + + void SelectPrevDocumentTab(); + void SelectNextDocumentTab(); + + virtual QWidget* CreateDocumentTabView(const AZ::Uuid& documentId); + virtual void OpenDocumentTabContextMenu(); + virtual bool GetCreateDocumentParams(AZStd::string& openPath, AZStd::string& savePath); + virtual bool GetOpenDocumentParams(AZStd::string& openPath); + + // AtomToolsDocumentNotificationBus::Handler overrides... + void OnDocumentOpened(const AZ::Uuid& documentId) override; + void OnDocumentClosed(const AZ::Uuid& documentId) override; + void OnDocumentModified(const AZ::Uuid& documentId) override; + void OnDocumentUndoStateChanged(const AZ::Uuid& documentId) override; + void OnDocumentSaved(const AZ::Uuid& documentId) override; + + void closeEvent(QCloseEvent* closeEvent) override; + + template + QAction* CreateAction(const QString& text, Functor functor, const QKeySequence& shortcut = 0); + + QAction* m_actionNew = {}; + QAction* m_actionOpen = {}; + QAction* m_actionClose = {}; + QAction* m_actionCloseAll = {}; + QAction* m_actionCloseOthers = {}; + QAction* m_actionSave = {}; + QAction* m_actionSaveAsCopy = {}; + QAction* m_actionSaveAsChild = {}; + QAction* m_actionSaveAll = {}; + + QAction* m_actionUndo = {}; + QAction* m_actionRedo = {}; + + QAction* m_actionNextTab = {}; + QAction* m_actionPreviousTab = {}; + + AzQtComponents::TabWidget* m_tabWidget = {}; + }; +} // namespace AtomToolsFramework diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/RenderViewportWidget.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/RenderViewportWidget.h index bb26e116af..62e2f834c8 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/RenderViewportWidget.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/RenderViewportWidget.h @@ -109,7 +109,6 @@ namespace AtomToolsFramework // AzToolsFramework::ViewportInteraction::ViewportMouseCursorRequestBus::Handler ... void BeginCursorCapture() override; void EndCursorCapture() override; - AzFramework::ScreenPoint ViewportCursorScreenPosition() override; bool IsMouseOver() const override; // AzFramework::WindowRequestBus::Handler ... @@ -160,8 +159,6 @@ namespace AtomToolsFramework QElapsedTimer m_renderTimer; // The time of the last recorded tick event from the system tick bus. AZ::ScriptTimePoint m_time; - // Whether the Viewport is currently hiding and capturing the cursor position. - bool m_capturingCursor = false; // The viewport settings (e.g. grid snapping, grid size) for this viewport. const AzToolsFramework::ViewportInteraction::ViewportSettings* m_viewportSettings = nullptr; // Maps our internal Qt events into AzFramework InputChannels for our ViewportControllerList. diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Window/AtomToolsMainWindow.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Window/AtomToolsMainWindow.h index 2a304c9a8c..fab6e2fb01 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Window/AtomToolsMainWindow.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Window/AtomToolsMainWindow.h @@ -7,18 +7,14 @@ */ #pragma once + #include - #include - #include #include #include -#include #include -#include -#include namespace AtomToolsFramework { @@ -38,28 +34,26 @@ namespace AtomToolsFramework bool IsDockWidgetVisible(const AZStd::string& name) const override; AZStd::vector GetDockWidgetNames() const override; - virtual void CreateMenu(); - virtual void CreateTabBar(); - - virtual void AddTabForDocumentId( - const AZ::Uuid& documentId, const AZStd::string& label, const AZStd::string& toolTip, AZStd::function widgetCreator); - virtual void RemoveTabForDocumentId(const AZ::Uuid& documentId); - virtual void UpdateTabForDocumentId( - const AZ::Uuid& documentId, const AZStd::string& label, const AZStd::string& toolTip, bool isModified); - virtual AZ::Uuid GetDocumentIdFromTab(const int tabIndex) const; - - virtual void OpenTabContextMenu(); - virtual void SelectPreviousTab(); - virtual void SelectNextTab(); - void SetStatusMessage(const QString& message); void SetStatusWarning(const QString& message); void SetStatusError(const QString& message); - AzQtComponents::FancyDocking* m_advancedDockManager = nullptr; - AzQtComponents::TabWidget* m_tabWidget = nullptr; - QLabel* m_statusMessage = nullptr; + void AddCommonMenus(); + + virtual void OpenSettings(); + virtual void OpenHelp(); + virtual void OpenAbout(); + + AzQtComponents::FancyDocking* m_advancedDockManager = {}; + + QLabel* m_statusMessage = {}; + + QMenu* m_menuFile = {}; + QMenu* m_menuEdit = {}; + QMenu* m_menuView = {}; + QMenu* m_menuHelp = {}; AZStd::unordered_map m_dockWidgets; + AZStd::unordered_map m_dockActions; }; } // namespace AtomToolsFramework diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Application/AtomToolsApplication.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Application/AtomToolsApplication.cpp index b8426f7528..36e45bb7ca 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Application/AtomToolsApplication.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Application/AtomToolsApplication.cpp @@ -238,6 +238,7 @@ namespace AtomToolsFramework connectionSettings.m_connectionIdentifier = GetBuildTargetName(); connectionSettings.m_loggingCallback = [targetName]([[maybe_unused]] AZStd::string_view logData) { + AZ_UNUSED(targetName); // Prevent unused warning in release builds AZ_TracePrintf(targetName.c_str(), "%.*s", aznumeric_cast(logData.size()), logData.data()); }; AzFramework::AssetSystemRequestBus::BroadcastResult( diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Document/AtomToolsDocumentMainWindow.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Document/AtomToolsDocumentMainWindow.cpp new file mode 100644 index 0000000000..0d62adc9ee --- /dev/null +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Document/AtomToolsDocumentMainWindow.cpp @@ -0,0 +1,493 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include +#include +#include +#include +#include + +AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") // disable warnings spawned by QT +#include +#include +#include +#include +#include +#include +#include +AZ_POP_DISABLE_WARNING + +namespace AtomToolsFramework +{ + AtomToolsDocumentMainWindow::AtomToolsDocumentMainWindow(QWidget* parent /* = 0 */) + : AtomToolsMainWindow(parent) + { + setObjectName("AtomToolsDocumentMainWindow"); + AddDocumentMenus(); + AddDocumentTabBar(); + AtomToolsDocumentNotificationBus::Handler::BusConnect(); + } + + AtomToolsDocumentMainWindow::~AtomToolsDocumentMainWindow() + { + AtomToolsDocumentNotificationBus::Handler::BusDisconnect(); + } + + void AtomToolsDocumentMainWindow::AddDocumentMenus() + { + QAction* insertPostion = !m_menuFile->actions().empty() ? m_menuFile->actions().front() : nullptr; + + // Generating the main menu manually because it's easier and we will have some dynamic or data driven entries + m_actionNew = CreateAction("&New...", [this]() { + AZStd::string openPath; + AZStd::string savePath; + if (GetCreateDocumentParams(openPath, savePath)) + { + AtomToolsDocumentSystemRequestBus::Broadcast( + &AtomToolsDocumentSystemRequestBus::Events::CreateDocumentFromFile, openPath, savePath); + } + }, QKeySequence::New); + m_menuFile->insertAction(insertPostion, m_actionNew); + + m_actionOpen = CreateAction("&Open...", [this]() { + AZStd::string openPath; + if (GetOpenDocumentParams(openPath)) + { + AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsDocumentSystemRequestBus::Events::OpenDocument, openPath); + } + }, QKeySequence::Open); + m_menuFile->insertAction(insertPostion, m_actionOpen); + m_menuFile->insertSeparator(insertPostion); + + m_actionSave = CreateAction("&Save", [this]() { + const AZ::Uuid documentId = GetDocumentTabId(m_tabWidget->currentIndex()); + bool result = false; + AtomToolsDocumentSystemRequestBus::BroadcastResult(result, &AtomToolsDocumentSystemRequestBus::Events::SaveDocument, documentId); + if (!result) + { + SetStatusError(tr("Document save failed: %1").arg(GetDocumentPath(documentId))); + } + }, QKeySequence::Save); + m_menuFile->insertAction(insertPostion, m_actionSave); + + m_actionSaveAsCopy = CreateAction("Save &As...", [this]() { + const AZ::Uuid documentId = GetDocumentTabId(m_tabWidget->currentIndex()); + const QString documentPath = GetDocumentPath(documentId); + + bool result = false; + AtomToolsDocumentSystemRequestBus::BroadcastResult(result, &AtomToolsDocumentSystemRequestBus::Events::SaveDocumentAsCopy, + documentId, GetSaveFileInfo(documentPath).absoluteFilePath().toUtf8().constData()); + if (!result) + { + SetStatusError(tr("Document save failed: %1").arg(GetDocumentPath(documentId))); + } + }, QKeySequence::SaveAs); + m_menuFile->insertAction(insertPostion, m_actionSaveAsCopy); + + m_actionSaveAsChild = CreateAction("Save As &Child...", [this]() { + const AZ::Uuid documentId = GetDocumentTabId(m_tabWidget->currentIndex()); + const QString documentPath = GetDocumentPath(documentId); + + bool result = false; + AtomToolsDocumentSystemRequestBus::BroadcastResult(result, &AtomToolsDocumentSystemRequestBus::Events::SaveDocumentAsChild, + documentId, GetSaveFileInfo(documentPath).absoluteFilePath().toUtf8().constData()); + if (!result) + { + SetStatusError(tr("Document save failed: %1").arg(GetDocumentPath(documentId))); + } + }); + m_menuFile->insertAction(insertPostion, m_actionSaveAsChild); + + m_actionSaveAll = CreateAction("Save A&ll", [this]() { + bool result = false; + AtomToolsDocumentSystemRequestBus::BroadcastResult(result, &AtomToolsDocumentSystemRequestBus::Events::SaveAllDocuments); + if (!result) + { + SetStatusError(tr("Document save all failed")); + } + }); + m_menuFile->insertAction(insertPostion, m_actionSaveAll); + m_menuFile->insertSeparator(insertPostion); + + m_actionClose = CreateAction("&Close", [this]() { + const AZ::Uuid documentId = GetDocumentTabId(m_tabWidget->currentIndex()); + AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsDocumentSystemRequestBus::Events::CloseDocument, documentId); + }, QKeySequence::Close); + m_menuFile->insertAction(insertPostion, m_actionClose); + + m_actionCloseAll = CreateAction("Close All", []() { + AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsDocumentSystemRequestBus::Events::CloseAllDocuments); + }); + m_menuFile->insertAction(insertPostion, m_actionCloseAll); + + m_actionCloseOthers = CreateAction("Close Others", [this]() { + const AZ::Uuid documentId = GetDocumentTabId(m_tabWidget->currentIndex()); + AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsDocumentSystemRequestBus::Events::CloseAllDocumentsExcept, documentId); + }); + m_menuFile->insertAction(insertPostion, m_actionCloseOthers); + m_menuFile->insertSeparator(insertPostion); + + insertPostion = !m_menuEdit->actions().empty() ? m_menuEdit->actions().front() : nullptr; + + m_actionUndo = CreateAction("&Undo", [this]() { + const AZ::Uuid documentId = GetDocumentTabId(m_tabWidget->currentIndex()); + bool result = false; + AtomToolsDocumentRequestBus::EventResult(result, documentId, &AtomToolsDocumentRequestBus::Events::Undo); + if (!result) + { + SetStatusError(tr("Document undo failed: %1").arg(GetDocumentPath(documentId))); + } + }, QKeySequence::Undo); + m_menuEdit->insertAction(insertPostion, m_actionUndo); + + m_actionRedo = CreateAction("&Redo", [this]() { + const AZ::Uuid documentId = GetDocumentTabId(m_tabWidget->currentIndex()); + bool result = false; + AtomToolsDocumentRequestBus::EventResult(result, documentId, &AtomToolsDocumentRequestBus::Events::Redo); + if (!result) + { + SetStatusError(tr("Document redo failed: %1").arg(GetDocumentPath(documentId))); + } + }, QKeySequence::Redo); + m_menuEdit->insertAction(insertPostion, m_actionRedo); + m_menuEdit->insertSeparator(insertPostion); + + insertPostion = !m_menuView->actions().empty() ? m_menuView->actions().front() : nullptr; + + m_actionPreviousTab = CreateAction( + "&Previous Tab", + [this]() + { + SelectPrevDocumentTab(); + }, Qt::CTRL | Qt::SHIFT | Qt::Key_Tab); //QKeySequence::PreviousChild is mapped incorrectly in Qt + m_menuView->insertAction(insertPostion, m_actionPreviousTab); + + m_actionNextTab = CreateAction("&Next Tab", [this]() { + SelectNextDocumentTab(); + }, Qt::CTRL | Qt::Key_Tab); //QKeySequence::NextChild works as expected but mirroring Previous + m_menuView->insertAction(insertPostion, m_actionNextTab); + m_menuView->insertSeparator(insertPostion); + } + + void AtomToolsDocumentMainWindow::AddDocumentTabBar() + { + m_tabWidget = new AzQtComponents::TabWidget(centralWidget()); + m_tabWidget->setObjectName("TabWidget"); + m_tabWidget->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Preferred); + m_tabWidget->setContentsMargins(0, 0, 0, 0); + + // The tab bar should only be visible if it has active documents + m_tabWidget->setVisible(false); + m_tabWidget->setTabBarAutoHide(false); + m_tabWidget->setMovable(true); + m_tabWidget->setTabsClosable(true); + m_tabWidget->setUsesScrollButtons(true); + + // This signal will be triggered whenever a tab is added, removed, selected, clicked, dragged + // When the last tab is removed tabIndex will be -1 and the document ID will be null + // This should automatically clear the active document + connect(m_tabWidget, &QTabWidget::currentChanged, this, [this](int tabIndex) { + const AZ::Uuid documentId = GetDocumentTabId(tabIndex); + AtomToolsDocumentNotificationBus::Broadcast(&AtomToolsDocumentNotificationBus::Events::OnDocumentOpened, documentId); + }); + + connect(m_tabWidget, &QTabWidget::tabCloseRequested, this, [this](int tabIndex) { + const AZ::Uuid documentId = GetDocumentTabId(tabIndex); + AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsDocumentSystemRequestBus::Events::CloseDocument, documentId); + }); + + // Add context menu for right-clicking on tabs + m_tabWidget->setContextMenuPolicy(Qt::ContextMenuPolicy::CustomContextMenu); + connect(m_tabWidget, &QWidget::customContextMenuRequested, this, [this]() { + OpenDocumentTabContextMenu(); + }); + + centralWidget()->layout()->addWidget(m_tabWidget); + } + + QString AtomToolsDocumentMainWindow::GetDocumentPath(const AZ::Uuid& documentId) const + { + AZStd::string absolutePath; + AtomToolsDocumentRequestBus::EventResult(absolutePath, documentId, &AtomToolsDocumentRequestBus::Handler::GetAbsolutePath); + return absolutePath.c_str(); + } + + AZ::Uuid AtomToolsDocumentMainWindow::GetDocumentTabId(const int tabIndex) const + { + const QVariant tabData = m_tabWidget->tabBar()->tabData(tabIndex); + if (!tabData.isNull()) + { + // We need to be able to convert between a UUID and a string to store and retrieve a document ID from the tab bar + const QString documentIdString = tabData.toString(); + const QByteArray documentIdBytes = documentIdString.toUtf8(); + const AZ::Uuid documentId(documentIdBytes.data(), documentIdBytes.size()); + return documentId; + } + return AZ::Uuid::CreateNull(); + } + + void AtomToolsDocumentMainWindow::AddDocumentTab( + const AZ::Uuid& documentId, const AZStd::string& label, const AZStd::string& toolTip) + { + // Blocking signals from the tab bar so the currentChanged signal is not sent while a document is already being opened. + // This prevents the OnDocumentOpened notification from being sent recursively. + const QSignalBlocker blocker(m_tabWidget); + + // If a tab for this document already exists then select it instead of creating a new one + for (int tabIndex = 0; tabIndex < m_tabWidget->count(); ++tabIndex) + { + if (documentId == GetDocumentTabId(tabIndex)) + { + m_tabWidget->setCurrentIndex(tabIndex); + m_tabWidget->repaint(); + return; + } + } + + const int tabIndex = m_tabWidget->addTab(CreateDocumentTabView(documentId), label.c_str()); + + // The user can manually reorder tabs which will invalidate any association by index. + // We need to store the document ID with the tab using the tab instead of a separate mapping. + m_tabWidget->tabBar()->setTabData(tabIndex, QVariant(documentId.ToString())); + m_tabWidget->setTabToolTip(tabIndex, toolTip.c_str()); + m_tabWidget->setCurrentIndex(tabIndex); + m_tabWidget->setVisible(true); + m_tabWidget->repaint(); + } + + void AtomToolsDocumentMainWindow::RemoveDocumentTab(const AZ::Uuid& documentId) + { + // We are not blocking signals here because we want closing tabs to close the associated document + // and automatically select the next document. + for (int tabIndex = 0; tabIndex < m_tabWidget->count(); ++tabIndex) + { + if (documentId == GetDocumentTabId(tabIndex)) + { + m_tabWidget->removeTab(tabIndex); + m_tabWidget->setVisible(m_tabWidget->count() > 0); + m_tabWidget->repaint(); + break; + } + } + } + + void AtomToolsDocumentMainWindow::UpdateDocumentTab( + const AZ::Uuid& documentId, const AZStd::string& label, const AZStd::string& toolTip, bool isModified) + { + // Whenever a document is opened, saved, or modified we need to update the tab label + if (!documentId.IsNull()) + { + // Because tab order and indexes can change from user interactions, we cannot store a map + // between a tab index and document ID. + // We must iterate over all of the tabs to find the one associated with this document. + for (int tabIndex = 0; tabIndex < m_tabWidget->count(); ++tabIndex) + { + if (documentId == GetDocumentTabId(tabIndex)) + { + // We use an asterisk prepended to the file name to denote modified document + // Appending is standard and preferred but the tabs elide from the + // end (instead of middle) and cut it off + const AZStd::string modifiedLabel = isModified ? "* " + label : label; + m_tabWidget->setTabText(tabIndex, modifiedLabel.c_str()); + m_tabWidget->setTabToolTip(tabIndex, toolTip.c_str()); + m_tabWidget->repaint(); + break; + } + } + } + } + + void AtomToolsDocumentMainWindow::SelectPrevDocumentTab() + { + if (m_tabWidget->count() > 1) + { + // Adding count to wrap around when index <= 0 + m_tabWidget->setCurrentIndex((m_tabWidget->currentIndex() + m_tabWidget->count() - 1) % m_tabWidget->count()); + } + } + + void AtomToolsDocumentMainWindow::SelectNextDocumentTab() + { + if (m_tabWidget->count() > 1) + { + m_tabWidget->setCurrentIndex((m_tabWidget->currentIndex() + 1) % m_tabWidget->count()); + } + } + + QWidget* AtomToolsDocumentMainWindow::CreateDocumentTabView(const AZ::Uuid& documentId) + { + AZ_UNUSED(documentId); + auto contentWidget = new QWidget(centralWidget()); + contentWidget->setContentsMargins(0, 0, 0, 0); + contentWidget->setFixedSize(0, 0); + return contentWidget; + } + + void AtomToolsDocumentMainWindow::OpenDocumentTabContextMenu() + { + const QTabBar* tabBar = m_tabWidget->tabBar(); + const QPoint position = tabBar->mapFromGlobal(QCursor::pos()); + const int clickedTabIndex = tabBar->tabAt(position); + const int currentTabIndex = tabBar->currentIndex(); + if (clickedTabIndex >= 0) + { + QMenu tabMenu; + const QString selectActionName = (currentTabIndex == clickedTabIndex) ? "Select in Browser" : "Select"; + tabMenu.addAction(selectActionName, [this, clickedTabIndex]() { + const AZ::Uuid documentId = GetDocumentTabId(clickedTabIndex); + AtomToolsDocumentNotificationBus::Broadcast(&AtomToolsDocumentNotificationBus::Events::OnDocumentOpened, documentId); + }); + tabMenu.addAction("Close", [this, clickedTabIndex]() { + const AZ::Uuid documentId = GetDocumentTabId(clickedTabIndex); + AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsDocumentSystemRequestBus::Events::CloseDocument, documentId); + }); + auto closeOthersAction = tabMenu.addAction("Close Others", [this, clickedTabIndex]() { + const AZ::Uuid documentId = GetDocumentTabId(clickedTabIndex); + AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsDocumentSystemRequestBus::Events::CloseAllDocumentsExcept, documentId); + }); + closeOthersAction->setEnabled(tabBar->count() > 1); + tabMenu.exec(QCursor::pos()); + } + } + + bool AtomToolsDocumentMainWindow::GetCreateDocumentParams(AZStd::string& openPath, AZStd::string& savePath) + { + AZ_UNUSED(openPath); + AZ_UNUSED(savePath); + return false; + } + + bool AtomToolsDocumentMainWindow::GetOpenDocumentParams(AZStd::string& openPath) + { + AZ_UNUSED(openPath); + return false; + } + + void AtomToolsDocumentMainWindow::OnDocumentOpened(const AZ::Uuid& documentId) + { + bool isOpen = false; + AtomToolsDocumentRequestBus::EventResult(isOpen, documentId, &AtomToolsDocumentRequestBus::Events::IsOpen); + bool isSavable = false; + AtomToolsDocumentRequestBus::EventResult(isSavable, documentId, &AtomToolsDocumentRequestBus::Events::IsSavable); + bool isModified = false; + AtomToolsDocumentRequestBus::EventResult(isModified, documentId, &AtomToolsDocumentRequestBus::Events::IsModified); + bool canUndo = false; + AtomToolsDocumentRequestBus::EventResult(canUndo, documentId, &AtomToolsDocumentRequestBus::Events::CanUndo); + bool canRedo = false; + AtomToolsDocumentRequestBus::EventResult(canRedo, documentId, &AtomToolsDocumentRequestBus::Events::CanRedo); + AZStd::string absolutePath; + AtomToolsDocumentRequestBus::EventResult(absolutePath, documentId, &AtomToolsDocumentRequestBus::Events::GetAbsolutePath); + AZStd::string filename; + AzFramework::StringFunc::Path::GetFullFileName(absolutePath.c_str(), filename); + + // Update UI to display the new document + if (!documentId.IsNull() && isOpen) + { + // Create a new tab for the document ID and assign it's label to the file name of the document. + AddDocumentTab(documentId, filename, absolutePath); + UpdateDocumentTab(documentId, filename, absolutePath, isModified); + } + + const bool hasTabs = m_tabWidget->count() > 0; + + // Update menu options + m_actionNew->setEnabled(true); + m_actionOpen->setEnabled(true); + m_actionClose->setEnabled(hasTabs); + m_actionCloseAll->setEnabled(hasTabs); + m_actionCloseOthers->setEnabled(hasTabs); + + m_actionSave->setEnabled(isOpen && isSavable); + m_actionSaveAsCopy->setEnabled(isOpen && isSavable); + m_actionSaveAsChild->setEnabled(isOpen); + m_actionSaveAll->setEnabled(hasTabs); + + m_actionUndo->setEnabled(canUndo); + m_actionRedo->setEnabled(canRedo); + + m_actionPreviousTab->setEnabled(m_tabWidget->count() > 1); + m_actionNextTab->setEnabled(m_tabWidget->count() > 1); + + activateWindow(); + raise(); + + const QString documentPath = GetDocumentPath(documentId); + if (!documentPath.isEmpty()) + { + SetStatusMessage(tr("Document opened: %1").arg(documentPath)); + } + } + + void AtomToolsDocumentMainWindow::OnDocumentClosed(const AZ::Uuid& documentId) + { + RemoveDocumentTab(documentId); + SetStatusMessage(tr("Document closed: %1").arg(GetDocumentPath(documentId))); + } + + void AtomToolsDocumentMainWindow::OnDocumentModified(const AZ::Uuid& documentId) + { + bool isModified = false; + AtomToolsDocumentRequestBus::EventResult(isModified, documentId, &AtomToolsDocumentRequestBus::Events::IsModified); + AZStd::string absolutePath; + AtomToolsDocumentRequestBus::EventResult(absolutePath, documentId, &AtomToolsDocumentRequestBus::Events::GetAbsolutePath); + AZStd::string filename; + AzFramework::StringFunc::Path::GetFullFileName(absolutePath.c_str(), filename); + UpdateDocumentTab(documentId, filename, absolutePath, isModified); + } + + void AtomToolsDocumentMainWindow::OnDocumentUndoStateChanged(const AZ::Uuid& documentId) + { + if (documentId == GetDocumentTabId(m_tabWidget->currentIndex())) + { + bool canUndo = false; + AtomToolsDocumentRequestBus::EventResult(canUndo, documentId, &AtomToolsDocumentRequestBus::Events::CanUndo); + bool canRedo = false; + AtomToolsDocumentRequestBus::EventResult(canRedo, documentId, &AtomToolsDocumentRequestBus::Events::CanRedo); + m_actionUndo->setEnabled(canUndo); + m_actionRedo->setEnabled(canRedo); + } + } + + void AtomToolsDocumentMainWindow::OnDocumentSaved(const AZ::Uuid& documentId) + { + bool isModified = false; + AtomToolsDocumentRequestBus::EventResult(isModified, documentId, &AtomToolsDocumentRequestBus::Events::IsModified); + AZStd::string absolutePath; + AtomToolsDocumentRequestBus::EventResult(absolutePath, documentId, &AtomToolsDocumentRequestBus::Events::GetAbsolutePath); + AZStd::string filename; + AzFramework::StringFunc::Path::GetFullFileName(absolutePath.c_str(), filename); + UpdateDocumentTab(documentId, filename, absolutePath, isModified); + SetStatusMessage(tr("Document saved: %1").arg(GetDocumentPath(documentId))); + } + + + void AtomToolsDocumentMainWindow::closeEvent(QCloseEvent* closeEvent) + { + bool didClose = true; + AtomToolsDocumentSystemRequestBus::BroadcastResult(didClose, &AtomToolsDocumentSystemRequestBus::Events::CloseAllDocuments); + if (!didClose) + { + closeEvent->ignore(); + return; + } + + AtomToolsMainWindowNotificationBus::Broadcast(&AtomToolsMainWindowNotifications::OnMainWindowClosing); + } + + template + QAction* AtomToolsDocumentMainWindow::CreateAction(const QString& text, Functor functor, const QKeySequence& shortcut) + { + QAction* action = new QAction(text, this); + action->setShortcut(shortcut); + connect(action, &QAction::triggered, this, functor); + return action; + } +} // namespace AtomToolsFramework + +//#include diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Util/Util.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Util/Util.cpp index ba913e317b..be112345a9 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Util/Util.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Util/Util.cpp @@ -11,13 +11,13 @@ #include #include #include +#include #include #include #include AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") // disable warnings spawned by QT #include -#include #include #include AZ_POP_DISABLE_WARNING @@ -29,7 +29,7 @@ namespace AtomToolsFramework const QFileInfo initialFileInfo(initialPath); const QString initialExt(initialFileInfo.completeSuffix()); - const QFileInfo selectedFileInfo(QFileDialog::getSaveFileName( + const QFileInfo selectedFileInfo(AzQtComponents::FileDialog::GetSaveFileName( QApplication::activeWindow(), "Save File", initialFileInfo.absolutePath() + @@ -104,7 +104,7 @@ namespace AtomToolsFramework const QFileInfo initialFileInfo(initialPath); const QString initialExt(initialFileInfo.completeSuffix()); - const QFileInfo duplicateFileInfo(QFileDialog::getSaveFileName( + const QFileInfo duplicateFileInfo(AzQtComponents::FileDialog::GetSaveFileName( QApplication::activeWindow(), "Duplicate File", GetUniqueFileInfo(initialPath).absoluteFilePath(), diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Viewport/RenderViewportWidget.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Viewport/RenderViewportWidget.cpp index bf356d2b99..cbb30ba6da 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Viewport/RenderViewportWidget.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Viewport/RenderViewportWidget.cpp @@ -403,11 +403,6 @@ namespace AtomToolsFramework return aznumeric_cast(devicePixelRatioF()); } - AzFramework::ScreenPoint RenderViewportWidget::ViewportCursorScreenPosition() - { - return AzToolsFramework::ViewportInteraction::ScreenPointFromQPoint(m_mousePosition.toPoint()); - } - bool RenderViewportWidget::IsMouseOver() const { return m_mouseOver; diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Window/AtomToolsMainWindow.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Window/AtomToolsMainWindow.cpp index cd7d49d8d3..aeca51230a 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Window/AtomToolsMainWindow.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Window/AtomToolsMainWindow.cpp @@ -7,6 +7,11 @@ */ #include +#include + +#include +#include +#include #include #include @@ -23,6 +28,8 @@ namespace AtomToolsFramework setCorner(Qt::TopRightCorner, Qt::RightDockWidgetArea); setCorner(Qt::BottomRightCorner, Qt::RightDockWidgetArea); + AddCommonMenus(); + m_statusMessage = new QLabel(statusBar()); statusBar()->addPermanentWidget(m_statusMessage, 1); @@ -65,6 +72,10 @@ namespace AtomToolsFramework addDockWidget(aznumeric_cast(area), dockWidget); resizeDocks({ dockWidget }, { 400 }, aznumeric_cast(orientation)); m_dockWidgets[name] = dockWidget; + + m_dockActions[name] = m_menuView->addAction(name.c_str(), [this, name](){ + SetDockWidgetVisible(name, !IsDockWidgetVisible(name)); + }); return true; } @@ -76,6 +87,12 @@ namespace AtomToolsFramework delete dockWidgetItr->second; m_dockWidgets.erase(dockWidgetItr); } + auto dockActionItr = m_dockActions.find(name); + if (dockActionItr != m_dockActions.end()) + { + delete dockActionItr->second; + m_dockActions.erase(dockActionItr); + } } void AtomToolsMainWindow::SetDockWidgetVisible(const AZStd::string& name, bool visible) @@ -108,145 +125,6 @@ namespace AtomToolsFramework return names; } - void AtomToolsMainWindow::CreateMenu() - { - auto menuBar = new QMenuBar(this); - menuBar->setObjectName("MenuBar"); - setMenuBar(menuBar); - } - - void AtomToolsMainWindow::CreateTabBar() - { - m_tabWidget = new AzQtComponents::TabWidget(centralWidget()); - m_tabWidget->setObjectName("TabWidget"); - m_tabWidget->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Preferred); - m_tabWidget->setContentsMargins(0, 0, 0, 0); - - // The tab bar should only be visible if it has active documents - m_tabWidget->setVisible(false); - m_tabWidget->setTabBarAutoHide(false); - m_tabWidget->setMovable(true); - m_tabWidget->setTabsClosable(true); - m_tabWidget->setUsesScrollButtons(true); - - // Add context menu for right-clicking on tabs - m_tabWidget->setContextMenuPolicy(Qt::ContextMenuPolicy::CustomContextMenu); - connect( - m_tabWidget, &QWidget::customContextMenuRequested, this, - [this]() - { - OpenTabContextMenu(); - }); - - centralWidget()->layout()->addWidget(m_tabWidget); - } - - void AtomToolsMainWindow::AddTabForDocumentId( - const AZ::Uuid& documentId, const AZStd::string& label, const AZStd::string& toolTip, AZStd::function widgetCreator) - { - // Blocking signals from the tab bar so the currentChanged signal is not sent while a document is already being opened. - // This prevents the OnDocumentOpened notification from being sent recursively. - const QSignalBlocker blocker(m_tabWidget); - - // If a tab for this document already exists then select it instead of creating a new one - for (int tabIndex = 0; tabIndex < m_tabWidget->count(); ++tabIndex) - { - if (documentId == GetDocumentIdFromTab(tabIndex)) - { - m_tabWidget->setCurrentIndex(tabIndex); - m_tabWidget->repaint(); - return; - } - } - - const int tabIndex = m_tabWidget->addTab(widgetCreator(), label.c_str()); - - // The user can manually reorder tabs which will invalidate any association by index. - // We need to store the document ID with the tab using the tab instead of a separate mapping. - m_tabWidget->tabBar()->setTabData(tabIndex, QVariant(documentId.ToString())); - m_tabWidget->setTabToolTip(tabIndex, toolTip.c_str()); - m_tabWidget->setCurrentIndex(tabIndex); - m_tabWidget->setVisible(true); - m_tabWidget->repaint(); - } - - void AtomToolsMainWindow::RemoveTabForDocumentId(const AZ::Uuid& documentId) - { - // We are not blocking signals here because we want closing tabs to close the associated document - // and automatically select the next document. - for (int tabIndex = 0; tabIndex < m_tabWidget->count(); ++tabIndex) - { - if (documentId == GetDocumentIdFromTab(tabIndex)) - { - m_tabWidget->removeTab(tabIndex); - m_tabWidget->setVisible(m_tabWidget->count() > 0); - m_tabWidget->repaint(); - break; - } - } - } - - void AtomToolsMainWindow::UpdateTabForDocumentId( - const AZ::Uuid& documentId, const AZStd::string& label, const AZStd::string& toolTip, bool isModified) - { - // Whenever a document is opened, saved, or modified we need to update the tab label - if (!documentId.IsNull()) - { - // Because tab order and indexes can change from user interactions, we cannot store a map - // between a tab index and document ID. - // We must iterate over all of the tabs to find the one associated with this document. - for (int tabIndex = 0; tabIndex < m_tabWidget->count(); ++tabIndex) - { - if (documentId == GetDocumentIdFromTab(tabIndex)) - { - // We use an asterisk prepended to the file name to denote modified document - // Appending is standard and preferred but the tabs elide from the - // end (instead of middle) and cut it off - const AZStd::string modifiedLabel = isModified ? "* " + label : label; - m_tabWidget->setTabText(tabIndex, modifiedLabel.c_str()); - m_tabWidget->setTabToolTip(tabIndex, toolTip.c_str()); - m_tabWidget->repaint(); - break; - } - } - } - } - - AZ::Uuid AtomToolsMainWindow::GetDocumentIdFromTab(const int tabIndex) const - { - const QVariant tabData = m_tabWidget->tabBar()->tabData(tabIndex); - if (!tabData.isNull()) - { - // We need to be able to convert between a UUID and a string to store and retrieve a document ID from the tab bar - const QString documentIdString = tabData.toString(); - const QByteArray documentIdBytes = documentIdString.toUtf8(); - const AZ::Uuid documentId(documentIdBytes.data(), documentIdBytes.size()); - return documentId; - } - return AZ::Uuid::CreateNull(); - } - - void AtomToolsMainWindow::OpenTabContextMenu() - { - } - - void AtomToolsMainWindow::SelectPreviousTab() - { - if (m_tabWidget->count() > 1) - { - // Adding count to wrap around when index <= 0 - m_tabWidget->setCurrentIndex((m_tabWidget->currentIndex() + m_tabWidget->count() - 1) % m_tabWidget->count()); - } - } - - void AtomToolsMainWindow::SelectNextTab() - { - if (m_tabWidget->count() > 1) - { - m_tabWidget->setCurrentIndex((m_tabWidget->currentIndex() + 1) % m_tabWidget->count()); - } - } - void AtomToolsMainWindow::SetStatusMessage(const QString& message) { m_statusMessage->setText(QString("%1").arg(message)); @@ -261,4 +139,50 @@ namespace AtomToolsFramework { m_statusMessage->setText(QString("%1").arg(message)); } + + void AtomToolsMainWindow::AddCommonMenus() + { + m_menuFile = menuBar()->addMenu("&File"); + m_menuEdit = menuBar()->addMenu("&Edit"); + m_menuView = menuBar()->addMenu("&View"); + m_menuHelp = menuBar()->addMenu("&Help"); + + m_menuFile->addAction("Run &Python...", [this]() { + const QString script = QFileDialog::getOpenFileName(this, "Run Script", QString(), QString("*.py")); + if (!script.isEmpty()) + { + AzToolsFramework::EditorPythonRunnerRequestBus::Broadcast(&AzToolsFramework::EditorPythonRunnerRequestBus::Events::ExecuteByFilename, script.toUtf8().constData()); + } + }); + + m_menuFile->addSeparator(); + + m_menuFile->addAction("E&xit", [this]() { + close(); + }, QKeySequence::Quit); + + m_menuEdit->addAction("&Settings...", [this]() { + OpenSettings(); + }, QKeySequence::Preferences); + + m_menuHelp->addAction("&Help...", [this]() { + OpenHelp(); + }); + + m_menuHelp->addAction("&About...", [this]() { + OpenAbout(); + }); + } + + void AtomToolsMainWindow::OpenSettings() + { + } + + void AtomToolsMainWindow::OpenHelp() + { + } + + void AtomToolsMainWindow::OpenAbout() + { + } } // namespace AtomToolsFramework diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/atomtoolsframework_files.cmake b/Gems/Atom/Tools/AtomToolsFramework/Code/atomtoolsframework_files.cmake index cd056f5fcf..3d4bb82eec 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/atomtoolsframework_files.cmake +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/atomtoolsframework_files.cmake @@ -12,6 +12,7 @@ set(FILES Include/AtomToolsFramework/Communication/LocalSocket.h Include/AtomToolsFramework/Debug/TraceRecorder.h Include/AtomToolsFramework/Document/AtomToolsDocument.h + Include/AtomToolsFramework/Document/AtomToolsDocumentMainWindow.h Include/AtomToolsFramework/Document/AtomToolsDocumentSystemSettings.h Include/AtomToolsFramework/Document/AtomToolsDocumentSystemRequestBus.h Include/AtomToolsFramework/Document/AtomToolsDocumentNotificationBus.h @@ -38,6 +39,7 @@ set(FILES Source/Communication/LocalSocket.cpp Source/Debug/TraceRecorder.cpp Source/Document/AtomToolsDocument.cpp + Source/Document/AtomToolsDocumentMainWindow.cpp Source/Document/AtomToolsDocumentSystemSettings.cpp Source/Document/AtomToolsDocumentSystemComponent.cpp Source/Document/AtomToolsDocumentSystemComponent.h diff --git a/Gems/Atom/Tools/AtomToolsFramework/preview.png b/Gems/Atom/Tools/AtomToolsFramework/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/Atom/Tools/AtomToolsFramework/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/Atom/Tools/MaterialEditor/Code/CMakeLists.txt b/Gems/Atom/Tools/MaterialEditor/Code/CMakeLists.txt index c83ca2bb19..6230217ac2 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/CMakeLists.txt +++ b/Gems/Atom/Tools/MaterialEditor/Code/CMakeLists.txt @@ -133,6 +133,9 @@ ly_add_target_dependencies( DEPENDENCIES_FILES tool_dependencies.cmake Source/Platform/${PAL_PLATFORM_NAME}/tool_dependencies_${PAL_PLATFORM_NAME_LOWERCASE}.cmake + # The Material Editor needs the LyShine "Tools" gem variant for the custom LyShine pass + DEPENDENT_TARGETS + Gem::LyShine.Tools ) # Inject the project path into the MaterialEditor VS debugger command arguments if the build system being invoked diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportComponent.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportComponent.cpp index d957ea327c..24e78b5ad3 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportComponent.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportComponent.cpp @@ -25,7 +25,7 @@ #include #include -#include +#include #include #include diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/CreateMaterialDialog/CreateMaterialDialog.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/CreateMaterialDialog/CreateMaterialDialog.cpp index 608122b77a..f27a08b08d 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/CreateMaterialDialog/CreateMaterialDialog.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/CreateMaterialDialog/CreateMaterialDialog.cpp @@ -11,6 +11,8 @@ #include #include +#include + #include #include @@ -19,8 +21,6 @@ #include -#include - namespace MaterialEditor { CreateMaterialDialog::CreateMaterialDialog(QWidget* parent) @@ -95,7 +95,7 @@ namespace MaterialEditor //When the file selection button is pressed, open a file dialog to select where the material will be saved QObject::connect(m_ui->m_materialFilePicker, &AzQtComponents::BrowseEdit::attachedButtonTriggered, m_ui->m_materialFilePicker, [this]() { - QFileInfo fileInfo = QFileDialog::getSaveFileName(this, + QFileInfo fileInfo = AzQtComponents::FileDialog::GetSaveFileName(this, QString("Select Material Filename"), m_materialFileInfo.absoluteFilePath(), QString("Material (*.material)")); diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorBrowserInteractions.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorBrowserInteractions.cpp index 3440d9c316..e6ffd2842f 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorBrowserInteractions.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorBrowserInteractions.cpp @@ -125,7 +125,7 @@ namespace MaterialEditor QDesktopServices::openUrl(QUrl::fromLocalFile(entry->GetFullPath().c_str())); }); - menu->addAction("Duplicate...", [entry, caller]() + menu->addAction("Duplicate...", [entry]() { const QFileInfo duplicateFileInfo(AtomToolsFramework::GetDuplicationFileInfo(entry->GetFullPath().c_str())); if (!duplicateFileInfo.absoluteFilePath().isEmpty()) @@ -156,7 +156,7 @@ namespace MaterialEditor AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::OpenDocument, entry->GetFullPath()); }); - menu->addAction("Duplicate...", [entry, caller]() + menu->addAction("Duplicate...", [entry]() { const QFileInfo duplicateFileInfo(AtomToolsFramework::GetDuplicationFileInfo(entry->GetFullPath().c_str())); if (!duplicateFileInfo.absoluteFilePath().isEmpty()) @@ -285,7 +285,7 @@ namespace MaterialEditor }); // add get latest action - m_getLatestAction = sourceControlMenu->addAction("Get Latest", [path, this]() + m_getLatestAction = sourceControlMenu->addAction("Get Latest", [path]() { SourceControlCommandBus::Broadcast(&SourceControlCommandBus::Events::RequestLatest, path.c_str(), [](bool, const SourceControlFileInfo&) {}); diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.cpp index 8922591580..0388af0134 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.cpp @@ -9,15 +9,9 @@ #include #include #include -#include -#include #include -#include -#include #include #include -#include -#include #include #include #include @@ -33,7 +27,6 @@ AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") // disable warnin #include #include #include -#include #include #include AZ_POP_DISABLE_WARNING @@ -41,7 +34,7 @@ AZ_POP_DISABLE_WARNING namespace MaterialEditor { MaterialEditorWindow::MaterialEditorWindow(QWidget* parent /* = 0 */) - : AtomToolsFramework::AtomToolsMainWindow(parent) + : AtomToolsFramework::AtomToolsDocumentMainWindow(parent) { resize(1280, 1024); @@ -74,9 +67,6 @@ namespace MaterialEditor m_toolBar->setObjectName("ToolBar"); addToolBar(m_toolBar); - CreateMenu(); - CreateTabBar(); - m_materialViewport = new MaterialViewportWidget(centralWidget()); m_materialViewport->setObjectName("Viewport"); m_materialViewport->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); @@ -105,16 +95,9 @@ namespace MaterialEditor m_advancedDockManager->restoreState(windowState); } - AtomToolsFramework::AtomToolsDocumentNotificationBus::Handler::BusConnect(); OnDocumentOpened(AZ::Uuid::CreateNull()); } - MaterialEditorWindow::~MaterialEditorWindow() - { - AtomToolsFramework::AtomToolsDocumentNotificationBus::Handler::BusDisconnect(); - } - - void MaterialEditorWindow::ResizeViewportRenderTarget(uint32_t width, uint32_t height) { QSize requestedViewportSize = QSize(width, height) / devicePixelRatioF(); @@ -129,7 +112,7 @@ namespace MaterialEditor requestedViewportSize.width(), requestedViewportSize.height(), m_materialViewport->size().width(), m_materialViewport->size().height()); - QSize newDeviceSize = m_materialViewport->size(); + [[maybe_unused]] QSize newDeviceSize = m_materialViewport->size(); AZ_Warning( "Material Editor", static_cast(newDeviceSize.width()) == width && static_cast(newDeviceSize.height()) == height, "Resizing the window did not give the expected frame size. Requested %d x %d but got %d x %d.", width, height, @@ -146,16 +129,43 @@ namespace MaterialEditor m_materialViewport->UnlockRenderTargetSize(); } + bool MaterialEditorWindow::GetCreateDocumentParams(AZStd::string& openPath, AZStd::string& savePath) + { + CreateMaterialDialog createDialog(this); + createDialog.adjustSize(); + + if (createDialog.exec() == QDialog::Accepted && + !createDialog.m_materialFileInfo.absoluteFilePath().isEmpty() && + !createDialog.m_materialTypeFileInfo.absoluteFilePath().isEmpty()) + { + savePath = createDialog.m_materialFileInfo.absoluteFilePath().toUtf8().constData(); + openPath = createDialog.m_materialTypeFileInfo.absoluteFilePath().toUtf8().constData(); + return true; + } + return false; + } + + bool MaterialEditorWindow::GetOpenDocumentParams(AZStd::string& openPath) + { + const AZStd::vector assetTypes = { azrtti_typeid() }; + openPath = AtomToolsFramework::GetOpenFileInfo(assetTypes).absoluteFilePath().toUtf8().constData(); + return !openPath.empty(); + } + + void MaterialEditorWindow::OpenSettings() + { + SettingsDialog dialog(this); + dialog.exec(); + } + + void MaterialEditorWindow::OpenHelp() + { + HelpDialog dialog(this); + dialog.exec(); + } + void MaterialEditorWindow::closeEvent(QCloseEvent* closeEvent) { - bool didClose = true; - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::BroadcastResult(didClose, &AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseAllDocuments); - if (!didClose) - { - closeEvent->ignore(); - return; - } - // Capture docking state before shutdown auto windowSettings = AZ::UserSettings::CreateFind( AZ::Crc32("MaterialEditorWindowSettings"), AZ::UserSettings::CT_GLOBAL); @@ -163,368 +173,7 @@ namespace MaterialEditor QByteArray windowState = m_advancedDockManager->saveState(); windowSettings->m_mainWindowState.assign(windowState.begin(), windowState.end()); - AtomToolsFramework::AtomToolsMainWindowNotificationBus::Broadcast( - &AtomToolsFramework::AtomToolsMainWindowNotifications::OnMainWindowClosing); - } - - void MaterialEditorWindow::OnDocumentOpened(const AZ::Uuid& documentId) - { - bool isOpen = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(isOpen, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::IsOpen); - bool isSavable = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(isSavable, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::IsSavable); - bool isModified = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(isModified, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::IsModified); - bool canUndo = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(canUndo, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::CanUndo); - bool canRedo = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(canRedo, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::CanRedo); - AZStd::string absolutePath; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(absolutePath, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::GetAbsolutePath); - AZStd::string filename; - AzFramework::StringFunc::Path::GetFullFileName(absolutePath.c_str(), filename); - - // Update UI to display the new document - if (!documentId.IsNull() && isOpen) - { - // Create a new tab for the document ID and assign it's label to the file name of the document. - AddTabForDocumentId(documentId, filename, absolutePath, [this]{ - // The tab widget requires a dummy page per tab - auto contentWidget = new QWidget(centralWidget()); - contentWidget->setContentsMargins(0, 0, 0, 0); - contentWidget->setFixedSize(0, 0); - return contentWidget; - }); - } - - UpdateTabForDocumentId(documentId, filename, absolutePath, isModified); - - const bool hasTabs = m_tabWidget->count() > 0; - - // Update menu options - m_actionNew->setEnabled(true); - m_actionOpen->setEnabled(true); - m_actionOpenRecent->setEnabled(false); - m_actionClose->setEnabled(hasTabs); - m_actionCloseAll->setEnabled(hasTabs); - m_actionCloseOthers->setEnabled(hasTabs); - - m_actionSave->setEnabled(isOpen && isSavable); - m_actionSaveAsCopy->setEnabled(isOpen && isSavable); - m_actionSaveAsChild->setEnabled(isOpen); - m_actionSaveAll->setEnabled(hasTabs); - - m_actionExit->setEnabled(true); - - m_actionUndo->setEnabled(canUndo); - m_actionRedo->setEnabled(canRedo); - m_actionSettings->setEnabled(true); - - m_actionAssetBrowser->setEnabled(true); - m_actionInspector->setEnabled(true); - m_actionConsole->setEnabled(false); - m_actionPythonTerminal->setEnabled(true); - m_actionPerfMonitor->setEnabled(true); - m_actionViewportSettings->setEnabled(true); - m_actionPreviousTab->setEnabled(m_tabWidget->count() > 1); - m_actionNextTab->setEnabled(m_tabWidget->count() > 1); - - m_actionAbout->setEnabled(false); - - activateWindow(); - raise(); - - const QString documentPath = GetDocumentPath(documentId); - if (!documentPath.isEmpty()) - { - SetStatusMessage(tr("Document opened: %1").arg(documentPath)); - } - } - - void MaterialEditorWindow::OnDocumentClosed(const AZ::Uuid& documentId) - { - RemoveTabForDocumentId(documentId); - SetStatusMessage(tr("Document closed: %1").arg(GetDocumentPath(documentId))); - } - - void MaterialEditorWindow::OnDocumentModified(const AZ::Uuid& documentId) - { - bool isModified = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(isModified, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::IsModified); - AZStd::string absolutePath; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(absolutePath, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::GetAbsolutePath); - AZStd::string filename; - AzFramework::StringFunc::Path::GetFullFileName(absolutePath.c_str(), filename); - UpdateTabForDocumentId(documentId, filename, absolutePath, isModified); - } - - void MaterialEditorWindow::OnDocumentUndoStateChanged(const AZ::Uuid& documentId) - { - if (documentId == GetDocumentIdFromTab(m_tabWidget->currentIndex())) - { - bool canUndo = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(canUndo, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::CanUndo); - bool canRedo = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(canRedo, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::CanRedo); - m_actionUndo->setEnabled(canUndo); - m_actionRedo->setEnabled(canRedo); - } - } - - void MaterialEditorWindow::OnDocumentSaved(const AZ::Uuid& documentId) - { - bool isModified = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(isModified, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::IsModified); - AZStd::string absolutePath; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(absolutePath, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::GetAbsolutePath); - AZStd::string filename; - AzFramework::StringFunc::Path::GetFullFileName(absolutePath.c_str(), filename); - UpdateTabForDocumentId(documentId, filename, absolutePath, isModified); - SetStatusMessage(tr("Document saved: %1").arg(GetDocumentPath(documentId))); - } - - void MaterialEditorWindow::CreateMenu() - { - Base::CreateMenu(); - - // Generating the main menu manually because it's easier and we will have some dynamic or data driven entries - m_menuFile = menuBar()->addMenu("&File"); - - m_actionNew = m_menuFile->addAction("&New...", [this]() { - CreateMaterialDialog createDialog(this); - createDialog.adjustSize(); - - if (createDialog.exec() == QDialog::Accepted && - !createDialog.m_materialFileInfo.absoluteFilePath().isEmpty() && - !createDialog.m_materialTypeFileInfo.absoluteFilePath().isEmpty()) - { - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CreateDocumentFromFile, - createDialog.m_materialTypeFileInfo.absoluteFilePath().toUtf8().constData(), - createDialog.m_materialFileInfo.absoluteFilePath().toUtf8().constData()); - } - }, QKeySequence::New); - - m_actionOpen = m_menuFile->addAction("&Open...", [this]() { - const AZStd::vector assetTypes = { azrtti_typeid() }; - const AZStd::string filePath = AtomToolsFramework::GetOpenFileInfo(assetTypes).absoluteFilePath().toUtf8().constData(); - if (!filePath.empty()) - { - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::OpenDocument, filePath); - } - }, QKeySequence::Open); - - m_actionOpenRecent = m_menuFile->addAction("Open &Recent"); - - m_menuFile->addSeparator(); - - m_actionSave = m_menuFile->addAction("&Save", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - bool result = false; - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::BroadcastResult(result, &AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::SaveDocument, documentId); - if (!result) - { - SetStatusError(tr("Document save failed: %1").arg(GetDocumentPath(documentId))); - } - }, QKeySequence::Save); - - m_actionSaveAsCopy = m_menuFile->addAction("Save &As...", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - const QString documentPath = GetDocumentPath(documentId); - - bool result = false; - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::BroadcastResult(result, &AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::SaveDocumentAsCopy, - documentId, AtomToolsFramework::GetSaveFileInfo(documentPath).absoluteFilePath().toUtf8().constData()); - if (!result) - { - SetStatusError(tr("Document save failed: %1").arg(GetDocumentPath(documentId))); - } - }, QKeySequence::SaveAs); - - m_actionSaveAsChild = m_menuFile->addAction("Save As &Child...", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - const QString documentPath = GetDocumentPath(documentId); - - bool result = false; - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::BroadcastResult(result, &AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::SaveDocumentAsChild, - documentId, AtomToolsFramework::GetSaveFileInfo(documentPath).absoluteFilePath().toUtf8().constData()); - if (!result) - { - SetStatusError(tr("Document save failed: %1").arg(GetDocumentPath(documentId))); - } - }); - - m_actionSaveAll = m_menuFile->addAction("Save A&ll", [this]() { - bool result = false; - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::BroadcastResult(result, &AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::SaveAllDocuments); - if (!result) - { - SetStatusError(tr("Document save all failed")); - } - }); - - m_menuFile->addSeparator(); - - m_actionClose = m_menuFile->addAction("&Close", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseDocument, documentId); - }, QKeySequence::Close); - - m_actionCloseAll = m_menuFile->addAction("Close All", [this]() { - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseAllDocuments); - }); - - m_actionCloseOthers = m_menuFile->addAction("Close Others", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseAllDocumentsExcept, documentId); - }); - - m_menuFile->addSeparator(); - - m_menuFile->addAction("Run &Python...", [this]() { - const QString script = QFileDialog::getOpenFileName(this, "Run Script", QString(), QString("*.py")); - if (!script.isEmpty()) - { - AzToolsFramework::EditorPythonRunnerRequestBus::Broadcast(&AzToolsFramework::EditorPythonRunnerRequestBus::Events::ExecuteByFilename, script.toUtf8().constData()); - } - }); - - m_menuFile->addSeparator(); - - m_actionExit = m_menuFile->addAction("E&xit", [this]() { - close(); - }, QKeySequence::Quit); - - m_menuEdit = menuBar()->addMenu("&Edit"); - - m_actionUndo = m_menuEdit->addAction("&Undo", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - bool result = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(result, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::Undo); - if (!result) - { - SetStatusError(tr("Document undo failed: %1").arg(GetDocumentPath(documentId))); - } - }, QKeySequence::Undo); - - m_actionRedo = m_menuEdit->addAction("&Redo", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - bool result = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(result, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::Redo); - if (!result) - { - SetStatusError(tr("Document redo failed: %1").arg(GetDocumentPath(documentId))); - } - }, QKeySequence::Redo); - - m_menuEdit->addSeparator(); - - m_actionSettings = m_menuEdit->addAction("&Settings...", [this]() { - SettingsDialog dialog(this); - dialog.exec(); - }, QKeySequence::Preferences); - m_actionSettings->setEnabled(true); - - m_menuView = menuBar()->addMenu("&View"); - - m_actionAssetBrowser = m_menuView->addAction("&Asset Browser", [this]() { - const AZStd::string label = "Asset Browser"; - SetDockWidgetVisible(label, !IsDockWidgetVisible(label)); - }); - - m_actionInspector = m_menuView->addAction("&Inspector", [this]() { - const AZStd::string label = "Inspector"; - SetDockWidgetVisible(label, !IsDockWidgetVisible(label)); - }); - - m_actionConsole = m_menuView->addAction("&Console", [this]() { - }); - - m_actionPythonTerminal = m_menuView->addAction("Python &Terminal", [this]() { - const AZStd::string label = "Python Terminal"; - SetDockWidgetVisible(label, !IsDockWidgetVisible(label)); - }); - - m_actionPerfMonitor = m_menuView->addAction("Performance &Monitor", [this]() { - const AZStd::string label = "Performance Monitor"; - SetDockWidgetVisible(label, !IsDockWidgetVisible(label)); - }); - - m_actionViewportSettings = m_menuView->addAction("Viewport Settings", [this]() { - const AZStd::string label = "Viewport Settings"; - SetDockWidgetVisible(label, !IsDockWidgetVisible(label)); - }); - - m_menuView->addSeparator(); - - m_actionPreviousTab = m_menuView->addAction("&Previous Tab", [this]() { - SelectPreviousTab(); - }, Qt::CTRL | Qt::SHIFT | Qt::Key_Tab); //QKeySequence::PreviousChild is mapped incorrectly in Qt - - m_actionNextTab = m_menuView->addAction("&Next Tab", [this]() { - SelectNextTab(); - }, Qt::CTRL | Qt::Key_Tab); //QKeySequence::NextChild works as expected but mirroring Previous - - m_menuHelp = menuBar()->addMenu("&Help"); - - m_actionHelp = m_menuHelp->addAction("&Help...", [this]() { - HelpDialog dialog(this); - dialog.exec(); - }); - - m_actionAbout = m_menuHelp->addAction("&About...", [this]() { - }); - } - - void MaterialEditorWindow::CreateTabBar() - { - Base::CreateTabBar(); - - // This signal will be triggered whenever a tab is added, removed, selected, clicked, dragged - // When the last tab is removed tabIndex will be -1 and the document ID will be null - // This should automatically clear the active document - connect(m_tabWidget, &QTabWidget::currentChanged, this, [this](int tabIndex) { - const AZ::Uuid documentId = GetDocumentIdFromTab(tabIndex); - AtomToolsFramework::AtomToolsDocumentNotificationBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentNotificationBus::Events::OnDocumentOpened, documentId); - }); - - connect(m_tabWidget, &QTabWidget::tabCloseRequested, this, [this](int tabIndex) { - const AZ::Uuid documentId = GetDocumentIdFromTab(tabIndex); - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseDocument, documentId); - }); - } - - QString MaterialEditorWindow::GetDocumentPath(const AZ::Uuid& documentId) const - { - AZStd::string absolutePath; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(absolutePath, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Handler::GetAbsolutePath); - return absolutePath.c_str(); - } - - void MaterialEditorWindow::OpenTabContextMenu() - { - const QTabBar* tabBar = m_tabWidget->tabBar(); - const QPoint position = tabBar->mapFromGlobal(QCursor::pos()); - const int clickedTabIndex = tabBar->tabAt(position); - const int currentTabIndex = tabBar->currentIndex(); - if (clickedTabIndex >= 0) - { - QMenu tabMenu; - const QString selectActionName = (currentTabIndex == clickedTabIndex) ? "Select in Browser" : "Select"; - tabMenu.addAction(selectActionName, [this, clickedTabIndex]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(clickedTabIndex); - AtomToolsFramework::AtomToolsDocumentNotificationBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentNotificationBus::Events::OnDocumentOpened, documentId); - }); - tabMenu.addAction("Close", [this, clickedTabIndex]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(clickedTabIndex); - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseDocument, documentId); - }); - auto closeOthersAction = tabMenu.addAction("Close Others", [this, clickedTabIndex]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(clickedTabIndex); - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseAllDocumentsExcept, documentId); - }); - closeOthersAction->setEnabled(tabBar->count() > 1); - tabMenu.exec(QCursor::pos()); - } + Base::closeEvent(closeEvent); } } // namespace MaterialEditor diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.h index b7d0cbf8da..bed2aa34e4 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.h @@ -9,9 +9,7 @@ #pragma once #if !defined(Q_MOC_RUN) -#include -#include -#include +#include AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") // disable warnings spawned by QT #include @@ -21,80 +19,36 @@ AZ_POP_DISABLE_WARNING namespace MaterialEditor { - /** - * MaterialEditorWindow is the main class. Its responsibility is limited to initializing and connecting - * its panels, managing selection of assets, and performing high-level actions like saving. It contains... - * 1) MaterialBrowser - The user browses for Material (.material) assets. - * 2) MaterialViewport - The user can see the selected Material applied to a model. - * 3) MaterialPropertyInspector - The user edits the properties of the selected Material. - */ + //! MaterialEditorWindow is the main class. Its responsibility is limited to initializing and connecting + //! its panels, managing selection of assets, and performing high-level actions like saving. It contains... + //! 1) MaterialBrowser - The user browses for Material (.material) assets. + //! 2) MaterialViewport - The user can see the selected Material applied to a model. + //! 3) MaterialPropertyInspector - The user edits the properties of the selected Material. class MaterialEditorWindow - : public AtomToolsFramework::AtomToolsMainWindow - , private AtomToolsFramework::AtomToolsDocumentNotificationBus::Handler + : public AtomToolsFramework::AtomToolsDocumentMainWindow { Q_OBJECT public: AZ_CLASS_ALLOCATOR(MaterialEditorWindow, AZ::SystemAllocator, 0); - using Base = AtomToolsFramework::AtomToolsMainWindow; + using Base = AtomToolsFramework::AtomToolsDocumentMainWindow; MaterialEditorWindow(QWidget* parent = 0); - ~MaterialEditorWindow(); + ~MaterialEditorWindow() = default; - private: + protected: void ResizeViewportRenderTarget(uint32_t width, uint32_t height) override; void LockViewportRenderTargetSize(uint32_t width, uint32_t height) override; void UnlockViewportRenderTargetSize() override; - // AtomToolsFramework::AtomToolsDocumentNotificationBus::Handler overrides... - void OnDocumentOpened(const AZ::Uuid& documentId) override; - void OnDocumentClosed(const AZ::Uuid& documentId) override; - void OnDocumentModified(const AZ::Uuid& documentId) override; - void OnDocumentUndoStateChanged(const AZ::Uuid& documentId) override; - void OnDocumentSaved(const AZ::Uuid& documentId) override; - - void CreateMenu() override; - void CreateTabBar() override; - - QString GetDocumentPath(const AZ::Uuid& documentId) const; - - void OpenTabContextMenu() override; + bool GetCreateDocumentParams(AZStd::string& openPath, AZStd::string& savePath) override; + bool GetOpenDocumentParams(AZStd::string& openPath) override; + void OpenSettings() override; + void OpenHelp() override; void closeEvent(QCloseEvent* closeEvent) override; MaterialViewportWidget* m_materialViewport = nullptr; MaterialEditorToolBar* m_toolBar = nullptr; - - QMenu* m_menuFile = {}; - QAction* m_actionNew = {}; - QAction* m_actionOpen = {}; - QAction* m_actionOpenRecent = {}; - QAction* m_actionClose = {}; - QAction* m_actionCloseAll = {}; - QAction* m_actionCloseOthers = {}; - QAction* m_actionSave = {}; - QAction* m_actionSaveAsCopy = {}; - QAction* m_actionSaveAsChild = {}; - QAction* m_actionSaveAll = {}; - QAction* m_actionExit = {}; - - QMenu* m_menuEdit = {}; - QAction* m_actionUndo = {}; - QAction* m_actionRedo = {}; - QAction* m_actionSettings = {}; - - QMenu* m_menuView = {}; - QAction* m_actionAssetBrowser = {}; - QAction* m_actionInspector = {}; - QAction* m_actionConsole = {}; - QAction* m_actionPythonTerminal = {}; - QAction* m_actionPerfMonitor = {}; - QAction* m_actionViewportSettings = {}; - QAction* m_actionNextTab = {}; - QAction* m_actionPreviousTab = {}; - - QMenu* m_menuHelp = {}; - QAction* m_actionHelp = {}; - QAction* m_actionAbout = {}; }; } // namespace MaterialEditor diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserInteractions.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserInteractions.cpp index b82d348df3..ca836b1b8d 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserInteractions.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserInteractions.cpp @@ -84,7 +84,7 @@ namespace ShaderManagementConsole } }); - menu->addAction("Duplicate...", [entry, caller]() + menu->addAction("Duplicate...", [entry]() { const QFileInfo duplicateFileInfo(AtomToolsFramework::GetDuplicationFileInfo(entry->GetFullPath().c_str())); if (!duplicateFileInfo.absoluteFilePath().isEmpty()) @@ -189,7 +189,7 @@ namespace ShaderManagementConsole }); // add get latest action - m_getLatestAction = sourceControlMenu->addAction("Get Latest", [path, this]() + m_getLatestAction = sourceControlMenu->addAction("Get Latest", [path]() { SourceControlCommandBus::Broadcast(&SourceControlCommandBus::Events::RequestLatest, path.c_str(), [](bool, const SourceControlFileInfo&) {}); diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.cpp index 6354f8beba..29dafe99fe 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.cpp @@ -5,24 +5,15 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include + #include -#include -#include +#include +#include +#include +#include #include AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") // disable warnings spawned by QT -#include -#include #include #include #include @@ -32,7 +23,7 @@ AZ_POP_DISABLE_WARNING namespace ShaderManagementConsole { ShaderManagementConsoleWindow::ShaderManagementConsoleWindow(QWidget* parent /* = 0 */) - : AtomToolsFramework::AtomToolsMainWindow(parent) + : AtomToolsFramework::AtomToolsDocumentMainWindow(parent) { resize(1280, 1024); @@ -50,9 +41,6 @@ namespace ShaderManagementConsole m_toolBar->setObjectName("ToolBar"); addToolBar(m_toolBar); - CreateMenu(); - CreateTabBar(); - AddDockWidget("Asset Browser", new ShaderManagementConsoleBrowserWidget, Qt::BottomDockWidgetArea, Qt::Vertical); AddDockWidget("Python Terminal", new AzToolsFramework::CScriptTermDialog, Qt::BottomDockWidgetArea, Qt::Horizontal); @@ -61,356 +49,36 @@ namespace ShaderManagementConsole // Restore geometry and show the window mainWindowWrapper->showFromSettings(); - AtomToolsFramework::AtomToolsDocumentNotificationBus::Handler::BusConnect(); + // Disable unused actions + m_actionNew->setVisible(false); + m_actionNew->setEnabled(false); + m_actionSaveAsChild->setVisible(false); + m_actionSaveAsChild->setEnabled(false); + OnDocumentOpened(AZ::Uuid::CreateNull()); } - ShaderManagementConsoleWindow::~ShaderManagementConsoleWindow() - { - AtomToolsFramework::AtomToolsDocumentNotificationBus::Handler::BusDisconnect(); - } - - void ShaderManagementConsoleWindow::closeEvent(QCloseEvent* closeEvent) - { - bool didClose = true; - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::BroadcastResult(didClose, &AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseAllDocuments); - if (!didClose) - { - closeEvent->ignore(); - return; - } - - AtomToolsFramework::AtomToolsMainWindowNotificationBus::Broadcast( - &AtomToolsFramework::AtomToolsMainWindowNotifications::OnMainWindowClosing); - } - - void ShaderManagementConsoleWindow::OnDocumentOpened(const AZ::Uuid& documentId) - { - bool isOpen = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(isOpen, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::IsOpen); - bool isSavable = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(isSavable, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::IsSavable); - bool isModified = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(isModified, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::IsModified); - bool canUndo = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(canUndo, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::CanUndo); - bool canRedo = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(canRedo, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::CanRedo); - AZStd::string absolutePath; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(absolutePath, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::GetAbsolutePath); - AZStd::string filename; - AzFramework::StringFunc::Path::GetFullFileName(absolutePath.c_str(), filename); - - // Update UI to display the new document - if (!documentId.IsNull() && isOpen) - { - // Create a new tab for the document ID and assign it's label to the file name of the document. - AddTabForDocumentId(documentId, filename, absolutePath, [this, documentId]{ - // The document tab contains a table view. - auto contentWidget = new QTableView(centralWidget()); - contentWidget->setSelectionBehavior(QAbstractItemView::SelectRows); - contentWidget->setModel(CreateDocumentContent(documentId)); - return contentWidget; - }); - } - - UpdateTabForDocumentId(documentId, filename, absolutePath, isModified); - - const bool hasTabs = m_tabWidget->count() > 0; - - // Update menu options - m_actionOpen->setEnabled(true); - m_actionOpenRecent->setEnabled(false); - m_actionClose->setEnabled(hasTabs); - m_actionCloseAll->setEnabled(hasTabs); - m_actionCloseOthers->setEnabled(hasTabs); - - m_actionSave->setEnabled(isOpen && isSavable); - m_actionSaveAsCopy->setEnabled(isOpen && isSavable); - m_actionSaveAll->setEnabled(hasTabs); - - m_actionExit->setEnabled(true); - - m_actionUndo->setEnabled(canUndo); - m_actionRedo->setEnabled(canRedo); - m_actionSettings->setEnabled(false); - - m_actionAssetBrowser->setEnabled(true); - m_actionPythonTerminal->setEnabled(true); - m_actionPreviousTab->setEnabled(m_tabWidget->count() > 1); - m_actionNextTab->setEnabled(m_tabWidget->count() > 1); - - m_actionHelp->setEnabled(false); - m_actionAbout->setEnabled(false); - - activateWindow(); - raise(); - - const QString documentPath = GetDocumentPath(documentId); - if (!documentPath.isEmpty()) - { - SetStatusMessage(tr("Document opened: %1").arg(documentPath)); - } - } - - void ShaderManagementConsoleWindow::OnDocumentClosed(const AZ::Uuid& documentId) - { - RemoveTabForDocumentId(documentId); - SetStatusMessage(tr("Document closed: %1").arg(GetDocumentPath(documentId))); - } - - void ShaderManagementConsoleWindow::OnDocumentModified(const AZ::Uuid& documentId) - { - bool isModified = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(isModified, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::IsModified); - AZStd::string absolutePath; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(absolutePath, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::GetAbsolutePath); - AZStd::string filename; - AzFramework::StringFunc::Path::GetFullFileName(absolutePath.c_str(), filename); - UpdateTabForDocumentId(documentId, filename, absolutePath, isModified); - } - - void ShaderManagementConsoleWindow::OnDocumentUndoStateChanged(const AZ::Uuid& documentId) - { - if (documentId == GetDocumentIdFromTab(m_tabWidget->currentIndex())) - { - bool canUndo = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(canUndo, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::CanUndo); - bool canRedo = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(canRedo, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::CanRedo); - m_actionUndo->setEnabled(canUndo); - m_actionRedo->setEnabled(canRedo); - } - } - - void ShaderManagementConsoleWindow::OnDocumentSaved(const AZ::Uuid& documentId) - { - bool isModified = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(isModified, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::IsModified); - AZStd::string absolutePath; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(absolutePath, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::GetAbsolutePath); - AZStd::string filename; - AzFramework::StringFunc::Path::GetFullFileName(absolutePath.c_str(), filename); - UpdateTabForDocumentId(documentId, filename, absolutePath, isModified); - SetStatusMessage(tr("Document saved: %1").arg(GetDocumentPath(documentId))); - } - - void ShaderManagementConsoleWindow::CreateMenu() - { - Base::CreateMenu(); - - // Generating the main menu manually because it's easier and we will have some dynamic or data driven entries - m_menuFile = menuBar()->addMenu("&File"); - - m_actionOpen = m_menuFile->addAction("&Open...", [this]() { - const AZStd::vector assetTypes = { - }; - - const AZStd::string filePath = AtomToolsFramework::GetOpenFileInfo(assetTypes).absoluteFilePath().toUtf8().constData(); - if (!filePath.empty()) - { - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::OpenDocument, filePath); - } - }, QKeySequence::Open); - - m_actionOpenRecent = m_menuFile->addAction("Open &Recent"); - - m_menuFile->addSeparator(); - - m_actionSave = m_menuFile->addAction("&Save", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - bool result = false; - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::BroadcastResult(result, &AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::SaveDocument, documentId); - if (!result) - { - SetStatusError(tr("Document save failed: %1").arg(GetDocumentPath(documentId))); - } - }, QKeySequence::Save); - - m_actionSaveAsCopy = m_menuFile->addAction("Save &As...", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - const QString documentPath = GetDocumentPath(documentId); - - bool result = false; - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::BroadcastResult(result, &AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::SaveDocumentAsCopy, - documentId, AtomToolsFramework::GetSaveFileInfo(documentPath).absoluteFilePath().toUtf8().constData()); - if (!result) - { - SetStatusError(tr("Document save failed: %1").arg(GetDocumentPath(documentId))); - } - }, QKeySequence::SaveAs); - - m_actionSaveAll = m_menuFile->addAction("Save A&ll", [this]() { - bool result = false; - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::BroadcastResult(result, &AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::SaveAllDocuments); - if (!result) - { - SetStatusError(tr("Document save all failed")); - } - }); - - m_menuFile->addSeparator(); - - m_actionClose = m_menuFile->addAction("&Close", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseDocument, documentId); - }, QKeySequence::Close); - - m_actionCloseAll = m_menuFile->addAction("Close All", [this]() { - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseAllDocuments); - }); - - m_actionCloseOthers = m_menuFile->addAction("Close Others", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseAllDocumentsExcept, documentId); - }); - - m_menuFile->addSeparator(); - - m_menuFile->addAction("Run &Python...", [this]() { - const QString script = QFileDialog::getOpenFileName(this, "Run Script", QString(), QString("*.py")); - if (!script.isEmpty()) - { - AzToolsFramework::EditorPythonRunnerRequestBus::Broadcast(&AzToolsFramework::EditorPythonRunnerRequestBus::Events::ExecuteByFilename, script.toUtf8().constData()); - } - }); - - m_menuFile->addSeparator(); - - m_actionExit = m_menuFile->addAction("E&xit", [this]() { - close(); - }, QKeySequence::Quit); - - m_menuEdit = menuBar()->addMenu("&Edit"); - - m_actionUndo = m_menuEdit->addAction("&Undo", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - bool result = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(result, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::Undo); - if (!result) - { - SetStatusError(tr("Document undo failed: %1").arg(GetDocumentPath(documentId))); - } - }, QKeySequence::Undo); - - m_actionRedo = m_menuEdit->addAction("&Redo", [this]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(m_tabWidget->currentIndex()); - bool result = false; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(result, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Events::Redo); - if (!result) - { - SetStatusError(tr("Document redo failed: %1").arg(GetDocumentPath(documentId))); - } - }, QKeySequence::Redo); - - m_menuEdit->addSeparator(); - - m_actionSettings = m_menuEdit->addAction("&Settings...", [this]() { - }, QKeySequence::Preferences); - m_actionSettings->setEnabled(false); - - m_menuView = menuBar()->addMenu("&View"); - - m_actionAssetBrowser = m_menuView->addAction("&Asset Browser", [this]() { - const AZStd::string label = "Asset Browser"; - SetDockWidgetVisible(label, !IsDockWidgetVisible(label)); - }); - - m_actionPythonTerminal = m_menuView->addAction("Python &Terminal", [this]() { - const AZStd::string label = "Python Terminal"; - SetDockWidgetVisible(label, !IsDockWidgetVisible(label)); - }); - - - m_menuView->addSeparator(); - - m_actionPreviousTab = m_menuView->addAction("&Previous Tab", [this]() { - SelectPreviousTab(); - }, Qt::CTRL | Qt::SHIFT | Qt::Key_Tab); //QKeySequence::PreviousChild is mapped incorrectly in Qt - - m_actionNextTab = m_menuView->addAction("&Next Tab", [this]() { - SelectNextTab(); - }, Qt::CTRL | Qt::Key_Tab); //QKeySequence::NextChild works as expected but mirroring Previous - - m_menuHelp = menuBar()->addMenu("&Help"); - - m_actionHelp = m_menuHelp->addAction("&Help...", [this]() { - }); - - m_actionAbout = m_menuHelp->addAction("&About...", [this]() { - }); - } - - void ShaderManagementConsoleWindow::CreateTabBar() - { - Base::CreateTabBar(); - - // This signal will be triggered whenever a tab is added, removed, selected, clicked, dragged - // When the last tab is removed tabIndex will be -1 and the document ID will be null - // This should automatically clear the active document - connect(m_tabWidget, &QTabWidget::currentChanged, this, [this](int tabIndex) { - const AZ::Uuid documentId = GetDocumentIdFromTab(tabIndex); - AtomToolsFramework::AtomToolsDocumentNotificationBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentNotificationBus::Events::OnDocumentOpened, documentId); - }); - - connect(m_tabWidget, &QTabWidget::tabCloseRequested, this, [this](int tabIndex) { - const AZ::Uuid documentId = GetDocumentIdFromTab(tabIndex); - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseDocument, documentId); - }); - } - - QString ShaderManagementConsoleWindow::GetDocumentPath(const AZ::Uuid& documentId) const - { - AZStd::string absolutePath; - AtomToolsFramework::AtomToolsDocumentRequestBus::EventResult(absolutePath, documentId, &AtomToolsFramework::AtomToolsDocumentRequestBus::Handler::GetAbsolutePath); - return absolutePath.c_str(); - } - - void ShaderManagementConsoleWindow::OpenTabContextMenu() - { - const QTabBar* tabBar = m_tabWidget->tabBar(); - const QPoint position = tabBar->mapFromGlobal(QCursor::pos()); - const int clickedTabIndex = tabBar->tabAt(position); - const int currentTabIndex = tabBar->currentIndex(); - if (clickedTabIndex >= 0) - { - QMenu tabMenu; - const QString selectActionName = (currentTabIndex == clickedTabIndex) ? "Select in Browser" : "Select"; - tabMenu.addAction(selectActionName, [this, clickedTabIndex]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(clickedTabIndex); - AtomToolsFramework::AtomToolsDocumentNotificationBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentNotificationBus::Events::OnDocumentOpened, documentId); - }); - tabMenu.addAction("Close", [this, clickedTabIndex]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(clickedTabIndex); - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseDocument, documentId); - }); - auto closeOthersAction = tabMenu.addAction("Close Others", [this, clickedTabIndex]() { - const AZ::Uuid documentId = GetDocumentIdFromTab(clickedTabIndex); - AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Broadcast(&AtomToolsFramework::AtomToolsDocumentSystemRequestBus::Events::CloseAllDocumentsExcept, documentId); - }); - closeOthersAction->setEnabled(tabBar->count() > 1); - tabMenu.exec(QCursor::pos()); - } - } - - QStandardItemModel* ShaderManagementConsoleWindow::CreateDocumentContent(const AZ::Uuid& documentId) + QWidget* ShaderManagementConsoleWindow::CreateDocumentTabView(const AZ::Uuid& documentId) { AZStd::unordered_set optionNames; size_t shaderOptionCount = 0; - ShaderManagementConsoleDocumentRequestBus::EventResult(shaderOptionCount, documentId, &ShaderManagementConsoleDocumentRequestBus::Events::GetShaderOptionCount); + ShaderManagementConsoleDocumentRequestBus::EventResult( + shaderOptionCount, documentId, &ShaderManagementConsoleDocumentRequestBus::Events::GetShaderOptionCount); for (size_t optionIndex = 0; optionIndex < shaderOptionCount; ++optionIndex) { AZ::RPI::ShaderOptionDescriptor shaderOptionDesc; - ShaderManagementConsoleDocumentRequestBus::EventResult(shaderOptionDesc, documentId, &ShaderManagementConsoleDocumentRequestBus::Events::GetShaderOptionDescriptor, optionIndex); + ShaderManagementConsoleDocumentRequestBus::EventResult( + shaderOptionDesc, documentId, &ShaderManagementConsoleDocumentRequestBus::Events::GetShaderOptionDescriptor, optionIndex); const char* optionName = shaderOptionDesc.GetName().GetCStr(); optionNames.insert(optionName); } size_t shaderVariantCount = 0; - ShaderManagementConsoleDocumentRequestBus::EventResult(shaderVariantCount, documentId, &ShaderManagementConsoleDocumentRequestBus::Events::GetShaderVariantCount); + ShaderManagementConsoleDocumentRequestBus::EventResult( + shaderVariantCount, documentId, &ShaderManagementConsoleDocumentRequestBus::Events::GetShaderVariantCount); auto model = new QStandardItemModel(); model->setRowCount(static_cast(shaderVariantCount)); @@ -425,7 +93,8 @@ namespace ShaderManagementConsole for (int variantIndex = 0; variantIndex < shaderVariantCount; ++variantIndex) { AZ::RPI::ShaderVariantListSourceData::VariantInfo shaderVariantInfo; - ShaderManagementConsoleDocumentRequestBus::EventResult(shaderVariantInfo, documentId, &ShaderManagementConsoleDocumentRequestBus::Events::GetShaderVariantInfo, variantIndex); + ShaderManagementConsoleDocumentRequestBus::EventResult( + shaderVariantInfo, documentId, &ShaderManagementConsoleDocumentRequestBus::Events::GetShaderVariantInfo, variantIndex); model->setHeaderData(variantIndex, Qt::Vertical, QString::number(variantIndex)); @@ -442,7 +111,11 @@ namespace ShaderManagementConsole } } - return model; + // The document tab contains a table view. + auto contentWidget = new QTableView(centralWidget()); + contentWidget->setSelectionBehavior(QAbstractItemView::SelectRows); + contentWidget->setModel(model); + return contentWidget; } } // namespace ShaderManagementConsole diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.h index 2b682f6c09..3ba122674a 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.h @@ -11,9 +11,7 @@ #if !defined(Q_MOC_RUN) #include #include -#include -#include -#include +#include AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") // disable warnings spawned by QT #include @@ -25,69 +23,23 @@ AZ_POP_DISABLE_WARNING namespace ShaderManagementConsole { - /** - * ShaderManagementConsoleWindow is the main class. Its responsibility is limited to initializing and connecting - * its panels, managing selection of assets, and performing high-level actions like saving. It contains... - */ + //! ShaderManagementConsoleWindow is the main class. Its responsibility is limited to initializing and connecting + //! its panels, managing selection of assets, and performing high-level actions like saving. It contains... class ShaderManagementConsoleWindow - : public AtomToolsFramework::AtomToolsMainWindow - , private AtomToolsFramework::AtomToolsDocumentNotificationBus::Handler + : public AtomToolsFramework::AtomToolsDocumentMainWindow { Q_OBJECT public: AZ_CLASS_ALLOCATOR(ShaderManagementConsoleWindow, AZ::SystemAllocator, 0); - using Base = AtomToolsFramework::AtomToolsMainWindow; + using Base = AtomToolsFramework::AtomToolsDocumentMainWindow; ShaderManagementConsoleWindow(QWidget* parent = 0); - ~ShaderManagementConsoleWindow(); + ~ShaderManagementConsoleWindow() = default; - private: - // AtomToolsFramework::AtomToolsDocumentNotificationBus::Handler overrides... - void OnDocumentOpened(const AZ::Uuid& documentId) override; - void OnDocumentClosed(const AZ::Uuid& documentId) override; - void OnDocumentModified(const AZ::Uuid& documentId) override; - void OnDocumentUndoStateChanged(const AZ::Uuid& documentId) override; - void OnDocumentSaved(const AZ::Uuid& documentId) override; - - void CreateMenu() override; - void CreateTabBar() override; - - QString GetDocumentPath(const AZ::Uuid& documentId) const; - - void OpenTabContextMenu() override; - - void closeEvent(QCloseEvent* closeEvent) override; - - QStandardItemModel* CreateDocumentContent(const AZ::Uuid& documentId); + protected: + QWidget* CreateDocumentTabView(const AZ::Uuid& documentId) override; ShaderManagementConsoleToolBar* m_toolBar = nullptr; - - QMenu* m_menuFile = {}; - QMenu* m_menuNew = {}; - QAction* m_actionOpen = {}; - QAction* m_actionOpenRecent = {}; - QAction* m_actionClose = {}; - QAction* m_actionCloseAll = {}; - QAction* m_actionCloseOthers = {}; - QAction* m_actionSave = {}; - QAction* m_actionSaveAsCopy = {}; - QAction* m_actionSaveAll = {}; - QAction* m_actionExit = {}; - - QMenu* m_menuEdit = {}; - QAction* m_actionUndo = {}; - QAction* m_actionRedo = {}; - QAction* m_actionSettings = {}; - - QMenu* m_menuView = {}; - QAction* m_actionAssetBrowser = {}; - QAction* m_actionPythonTerminal = {}; - QAction* m_actionNextTab = {}; - QAction* m_actionPreviousTab = {}; - - QMenu* m_menuHelp = {}; - QAction* m_actionHelp = {}; - QAction* m_actionAbout = {}; }; } // namespace ShaderManagementConsole diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.h index bdaf38a64a..ea4dd20250 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.h @@ -43,7 +43,7 @@ namespace AZ }; // Update running statistics with new region data - void RecordRegion(const AZ::RHI::CachedTimeRegion& region, AZStd::thread_id threadId); + void RecordRegion(const AZ::RHI::CachedTimeRegion& region, size_t threadId); void ResetPerFrameStatistics(); @@ -58,7 +58,7 @@ namespace AZ u64 m_invocationsLastFrame = 0; // NOTE: set over unordered_set so the threads can be shown in increasing order in tooltip. - AZStd::set m_executingThreads; + AZStd::set m_executingThreads; AZStd::sys_time_t m_lastFrameTotalTicks = 0; @@ -95,7 +95,7 @@ namespace AZ void Draw(bool& keepDrawing, const AZ::RHI::CpuTimingStatistics& cpuTimingStatistics); private: - static constexpr float RowHeight = 50.0; + static constexpr float RowHeight = 35.0; static constexpr int DefaultFramesToCollect = 50; static constexpr float MediumFrameTimeLimit = 16.6; // 60 fps static constexpr float HighFrameTimeLimit = 33.3; // 30 fps @@ -134,7 +134,7 @@ namespace AZ void DrawThreadSeparator(u64 threadBoundary, u64 maxDepth); // Draw the "Thread XXXXX" label onto the viewport - void DrawThreadLabel(u64 baseRow, AZStd::thread_id threadId); + void DrawThreadLabel(u64 baseRow, size_t threadId); // Draw the vertical lines separating frames in the timeline void DrawFrameBoundaries(); @@ -169,7 +169,9 @@ namespace AZ AZStd::sys_time_t m_viewportEndTick; // Map to store each thread's TimeRegions, individual vectors are sorted by start tick - AZStd::unordered_map> m_savedData; + // note: we use size_t as a proxy for thread_id because native_thread_id_type differs differs from + // platform to platform, which causes problems when deserializing saved captures. + AZStd::unordered_map> m_savedData; // Region color cache AZStd::unordered_map m_regionColorMap; @@ -213,6 +215,11 @@ namespace AZ // Index into the file picker, used to determine which file to load when "Load File" is pressed. int m_currentFileIndex = 0; + + + // --- Loading capture state --- + AZStd::unordered_set m_deserializedStringPool; + AZStd::unordered_set m_deserializedGroupRegionNamePool; }; } // namespace Render } // namespace AZ diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.inl index a225646761..cd9e4fc2b5 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.inl @@ -13,6 +13,7 @@ #include #include +#include #include #include #include @@ -30,19 +31,6 @@ namespace AZ { namespace CpuProfilerImGuiHelper { - // NOTE: Fix build error in case AZStd::thread_id is not of an arithmetic type, and instead a pointer - template::value>::type* = nullptr> - AZStd::string TextThreadId(ThreadId threadId) - { - return AZStd::string::format("Thread: %p", threadId); - } - - template::value>::type* = nullptr> - AZStd::string TextThreadId(ThreadId threadId) - { - return AZStd::string::format("Thread: %zu", static_cast(threadId)); - } - inline float TicksToMs(AZStd::sys_time_t ticks) { // Note: converting to microseconds integer before converting to milliseconds float @@ -231,6 +219,7 @@ namespace AZ m_lastCapturedFilePath = resolvedPath; AZ::Render::ProfilingCaptureRequestBus::Broadcast( &AZ::Render::ProfilingCaptureRequestBus::Events::EndContinuousCpuProfilingCapture, frameDataFilePath); + m_paused = true; } else @@ -367,14 +356,12 @@ namespace AZ const AZ::RHI::CpuTimingStatistics& cpuTimingStatistics = m_cpuTimingStatisticsWhenPause; - const AZStd::sys_time_t ticksPerSecond = AZStd::GetTimeTicksPerSecond(); - - const auto ShowTimeInMs = [ticksPerSecond](AZStd::sys_time_t duration) + const auto ShowTimeInMs = [](AZStd::sys_time_t duration) { ImGui::Text("%.2f ms", CpuProfilerImGuiHelper::TicksToMs(duration)); }; - const auto ShowRow = [ticksPerSecond, &ShowTimeInMs](const char* regionLabel, AZStd::sys_time_t duration) + const auto ShowRow = [&ShowTimeInMs](const char* regionLabel, AZStd::sys_time_t duration) { ImGui::Text(regionLabel); ImGui::NextColumn(); @@ -447,13 +434,65 @@ namespace AZ inline void ImGuiCpuProfiler::LoadFile() { const IO::Path& pathToLoad = m_cachedCapturePaths[m_currentFileIndex]; - auto res = CpuProfilerImGuiHelper::LoadSavedCpuProfilingStatistics(pathToLoad.String()); - if (!res.IsSuccess()) + auto loadResult = CpuProfilerImGuiHelper::LoadSavedCpuProfilingStatistics(pathToLoad.String()); + if (!loadResult.IsSuccess()) { - AZ_TracePrintf("ImGuiCpuProfiler", "%s", res.GetError().c_str()); + AZ_TracePrintf("ImGuiCpuProfiler", "%s", loadResult.GetError().c_str()); return; } - // TODO ATOM-16022 Parse this data and display it in the visualizer widget. + + AZStd::vector deserializedData = loadResult.TakeValue(); + + // Clear visualizer and statistics view state + m_savedRegionCount = deserializedData.size(); + m_savedData.clear(); + m_paused = true; + AZ::RHI::CpuProfiler::Get()->SetProfilerEnabled(false); + m_frameEndTicks.clear(); + + m_tableData.clear(); + m_groupRegionMap.clear(); + + for (const auto& entry : deserializedData) + { + const auto [groupNameItr, wasGroupNameInserted] = m_deserializedStringPool.emplace(entry.m_groupName.GetCStr()); + const auto [regionNameItr, wasRegionNameInserted] = m_deserializedStringPool.emplace(entry.m_regionName.GetCStr()); + const auto [groupRegionNameItr, wasGroupRegionNameInserted] = + m_deserializedGroupRegionNamePool.emplace(groupNameItr->c_str(), regionNameItr->c_str()); + + const RHI::CachedTimeRegion newRegion(&(*groupRegionNameItr), entry.m_stackDepth, entry.m_startTick, entry.m_endTick); + m_savedData[entry.m_threadId].push_back(newRegion); + + // Since we don't serialize the frame boundaries, we need to use the RPI's OnSystemTick event as a heuristic. + const static Name frameBoundaryName = Name("RPISystem: OnSystemTick"); + if (entry.m_regionName == frameBoundaryName) + { + m_frameEndTicks.push_back(entry.m_endTick); + } + + // Update running statistics + if (!m_groupRegionMap[*groupNameItr].contains(*regionNameItr)) + { + m_groupRegionMap[*groupNameItr][*regionNameItr].m_groupName = *groupNameItr; + m_groupRegionMap[*groupNameItr][*regionNameItr].m_regionName = *regionNameItr; + m_tableData.push_back(&m_groupRegionMap[*groupNameItr][*regionNameItr]); + } + m_groupRegionMap[*groupNameItr][*regionNameItr].RecordRegion(newRegion, entry.m_threadId); + } + + // Update viewport bounds with some added UX fudge factor + m_viewportStartTick = deserializedData.back().m_startTick - 1000; + m_viewportEndTick = deserializedData.back().m_endTick + 1000; + + // Invariant: each vector in m_savedData must be sorted so that we can efficiently cull region data. + for (auto& [threadId, singleThreadData] : m_savedData) + { + AZStd::sort(singleThreadData.begin(), singleThreadData.end(), + [](const TimeRegion& lhs, const TimeRegion& rhs) + { + return lhs.m_startTick < rhs.m_startTick; + }); + } } // -- CPU Visualizer -- @@ -465,7 +504,7 @@ namespace AZ if (ImGui::BeginChild("Options and Statistics", { 0, 0 }, true)) { ImGui::Columns(3, "Options", true); - ImGui::SliderInt("Saved Frames", &m_framesToCollect, 10, 10000, "%d", ImGuiSliderFlags_AlwaysClamp | ImGuiSliderFlags_Logarithmic); + ImGui::SliderInt("Saved Frames", &m_framesToCollect, 10, 20000, "%d", ImGuiSliderFlags_AlwaysClamp | ImGuiSliderFlags_Logarithmic); m_visualizerHighlightFilter.Draw("Find Region"); ImGui::NextColumn(); @@ -591,7 +630,6 @@ namespace AZ else if (io.MouseWheel != 0 && io.KeyCtrl) // Zooming { // We want zooming to be relative to the mouse's current position - const float mouseVel = io.MouseWheel; const float mouseX = ImGui::GetMousePos().x; // Find the normalized position of the cursor relative to the window @@ -631,6 +669,7 @@ namespace AZ // Iterate through the entire TimeRegionMap and copy the data since it will get deleted on the next frame for (const auto& [threadId, singleThreadRegionMap] : timeRegionMap) { + const size_t threadIdHashed = AZStd::hash{}(threadId); // The profiler can sometime return threads without any profiling events when dropping threads, FIXME(ATOM-15949) if (singleThreadRegionMap.size() == 0) { @@ -656,7 +695,7 @@ namespace AZ m_tableData.push_back(&m_groupRegionMap[groupName][regionName]); } - m_groupRegionMap[groupName][regionName].RecordRegion(region, threadId); + m_groupRegionMap[groupName][regionName].RecordRegion(region, threadIdHashed); } } @@ -676,7 +715,7 @@ namespace AZ m_savedRegionCount += newVisualizerData.size(); // Move onto the end of the current thread's saved data, sorted order maintained - AZStd::vector& savedDataVec = m_savedData[threadId]; + AZStd::vector& savedDataVec = m_savedData[threadIdHashed]; savedDataVec.insert( savedDataVec.end(), AZStd::make_move_iterator(newVisualizerData.begin()), AZStd::make_move_iterator(newVisualizerData.end())); } @@ -696,6 +735,12 @@ namespace AZ { AZStd::size_t sizeBeforeRemove = savedRegions.size(); + // Early out to avoid the linear erase_if call + if (savedRegions.size() >= 1 && savedRegions.at(0).m_startTick > deleteBeforeTick) + { + continue; + } + // Use erase_if over plain upper_bound + erase to avoid repeated shifts. erase requires a shift of all elements to the right // for each element that is erased, while erase_if squashes all removes into a single shift which significantly improves perf. AZStd::erase_if( @@ -732,12 +777,19 @@ namespace AZ const float startPixel = ConvertTickToPixelSpace(block.m_startTick, m_viewportStartTick, m_viewportEndTick); const float endPixel = ConvertTickToPixelSpace(block.m_endTick, m_viewportStartTick, m_viewportEndTick); - const ImVec2 startPoint = { startPixel, wy + targetRow * RowHeight }; - const ImVec2 endPoint = { endPixel, wy + targetRow * RowHeight + 40 }; + if (endPixel - startPixel < 0.5f) + { + return; + } + + const ImVec2 startPoint = { startPixel, wy + targetRow * RowHeight + 1}; + const ImVec2 endPoint = { endPixel, wy + (targetRow + 1) * RowHeight }; const ImU32 blockColor = GetBlockColor(block); drawList->AddRectFilled(startPoint, endPoint, blockColor, 0); + drawList->AddLine(startPoint, { endPixel, startPoint.y }, IM_COL32_BLACK, 0.5f); + drawList->AddLine({ startPixel, endPoint.y }, endPoint, IM_COL32_BLACK, 0.5f); // Draw the region name if possible // If the block's current width is too small, we skip drawing the label. @@ -751,11 +803,13 @@ namespace AZ if (regionPixelWidth < textWidth) // Not enough space in the block to draw the whole name, draw clipped text. { - // clipRect appears to only clip when a character is fully outside of its bounds which can lead to overflow - // for now subtract the width of a character const ImVec4 clipRect = { startPoint.x, startPoint.y, endPoint.x - maxCharWidth, endPoint.y }; - const float fontSize = ImGui::GetFont()->FontSize; + // NOTE: RenderText calls do not automatically account for the global scale (which is modified at high DPI) + // so we must adjust for the scale manually. + const float scaleFactor = ImGui::GetIO().FontGlobalScale; + const float fontSize = ImGui::GetFont()->FontSize * scaleFactor; + ImGui::GetFont()->RenderText(drawList, fontSize, startPoint, IM_COL32_WHITE, clipRect, label.c_str(), 0); } else // We have enough space to draw the entire label, draw and center text. @@ -815,18 +869,18 @@ namespace AZ auto [wx, wy] = ImGui::GetWindowPos(); wy -= ImGui::GetScrollY(); const float windowWidth = ImGui::GetWindowWidth(); - const float boundaryY = wy + (baseRow + maxDepth + 1) * RowHeight - 5; + const float boundaryY = wy + (baseRow + maxDepth + 1) * RowHeight; - ImGui::GetWindowDrawList()->AddLine({ wx, boundaryY }, { wx + windowWidth, boundaryY }, red, 2.0f); + ImGui::GetWindowDrawList()->AddLine({ wx, boundaryY }, { wx + windowWidth, boundaryY }, red, 1.0f); } - inline void ImGuiCpuProfiler::DrawThreadLabel(u64 baseRow, AZStd::thread_id threadId) + inline void ImGuiCpuProfiler::DrawThreadLabel(u64 baseRow, size_t threadId) { auto [wx, wy] = ImGui::GetWindowPos(); wy -= ImGui::GetScrollY(); - const AZStd::string threadIdText = CpuProfilerImGuiHelper::TextThreadId(threadId.m_id); + const AZStd::string threadIdText = AZStd::string::format("Thread: %zu", threadId); - ImGui::GetWindowDrawList()->AddText({ wx + 10, wy + baseRow * RowHeight + 5 }, IM_COL32_WHITE, threadIdText.c_str()); + ImGui::GetWindowDrawList()->AddText({ wx + 10, wy + baseRow * RowHeight}, IM_COL32_WHITE, threadIdText.c_str()); } inline void ImGuiCpuProfiler::DrawFrameBoundaries() @@ -884,8 +938,10 @@ namespace AZ const float textBeginPixel = lastFrameBoundaryPixel + offset; const float textEndPixel = textBeginPixel + labelWidth; + const float verticalOffset = (ImGui::GetWindowHeight() - ImGui::GetFontSize()) / 2; + // Execution time label - drawList->AddText({ textBeginPixel, wy + ImGui::GetWindowHeight() / 4 }, IM_COL32_WHITE, label.c_str()); + drawList->AddText({ textBeginPixel, wy + verticalOffset }, IM_COL32_WHITE, label.c_str()); // Left side drawList->AddLine( @@ -1043,7 +1099,7 @@ namespace AZ // ---- TableRow impl ---- - inline void TableRow::RecordRegion(const AZ::RHI::CachedTimeRegion& region, AZStd::thread_id threadId) + inline void TableRow::RecordRegion(const AZ::RHI::CachedTimeRegion& region, size_t threadId) { const AZStd::sys_time_t deltaTime = region.m_endTick - region.m_startTick; @@ -1072,7 +1128,7 @@ namespace AZ auto threadString = AZStd::string::format("Executed in %zu threads\n", m_executingThreads.size()); for (const auto& threadId : m_executingThreads) { - threadString.append(CpuProfilerImGuiHelper::TextThreadId(threadId.m_id) + "\n"); + threadString.append(AZStd::string::format("Thread: %zu\n", threadId)); } return threadString; } diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiGpuProfiler.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiGpuProfiler.inl index e6bde136f8..9b2f2b0dd9 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiGpuProfiler.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiGpuProfiler.inl @@ -390,7 +390,7 @@ namespace AZ inline void ImGuiPipelineStatisticsView::CreateAttributeRow(const PassEntry* passEntry, const PassEntry* rootEntry) { - const uint32_t columnCount = static_cast(ImGui::GetColumnsCount()); + [[maybe_unused]] const uint32_t columnCount = static_cast(ImGui::GetColumnsCount()); AZ_Assert(columnCount == ImGuiPipelineStatisticsView::HeaderAttributeCount, "The column count needs to match HeaderAttributeCount."); ImGui::Separator(); @@ -834,8 +834,10 @@ namespace AZ { // Check whether it should be sorted by name. const uint32_t sortType = static_cast(m_sortType); + AZ_PUSH_DISABLE_WARNING(4296, "-Wunknown-warning-option") bool sortByName = (sortType >= static_cast(ProfilerSortType::Alphabetical) && (sortType < static_cast(ProfilerSortType::AlphabeticalCount))); + AZ_POP_DISABLE_WARNING if (ImGui::Selectable("Pass Names", sortByName)) { @@ -1011,7 +1013,7 @@ namespace AZ const uint32_t countNumerical = static_cast(count); const uint32_t offset = static_cast(m_sortType) - startNumerical; - if (offset < countNumerical && offset >= 0u) + if (offset < countNumerical) { // Change the sorting order. m_sortType = static_cast(((offset + 1u) % countNumerical) + startNumerical); @@ -1107,7 +1109,7 @@ namespace AZ { ImGui::TableSetupColumn("Parent pool"); ImGui::TableSetupColumn("Name"); - ImGui::TableSetupColumn("Size (MB)", 0, 100.0f); + ImGui::TableSetupColumn("Size (MB)"); ImGui::TableSetupColumn("BindFlags", ImGuiTableColumnFlags_NoSort); ImGui::TableHeadersRow(); ImGui::TableNextColumn(); @@ -1133,7 +1135,7 @@ namespace AZ ImGui::TableNextColumn(); ImGui::Text(tableRow.m_bufImgName.GetCStr()); ImGui::TableNextColumn(); - ImGui::Text("%.2f", 1.0f * tableRow.m_sizeInBytes / GpuProfilerImGuiHelper::MB); + ImGui::Text("%.4f", 1.0f * tableRow.m_sizeInBytes / GpuProfilerImGuiHelper::MB); ImGui::TableNextColumn(); ImGui::Text(tableRow.m_bindFlags.c_str()); ImGui::TableNextColumn(); @@ -1271,6 +1273,7 @@ namespace AZ m_nameFilter.Draw("Search"); DrawTable(); } + ImGui::End(); } // --- ImGuiGpuProfiler --- @@ -1333,7 +1336,7 @@ namespace AZ inline PassEntry* ImGuiGpuProfiler::CreatePassEntries(RHI::Ptr rootPass) { AZStd::unordered_map passEntryDatabase; - const auto addPassEntry = [&passEntryDatabase, this](const RPI::Pass* pass, PassEntry* parent) -> PassEntry* + const auto addPassEntry = [&passEntryDatabase](const RPI::Pass* pass, PassEntry* parent) -> PassEntry* { // If parent a nullptr, it's assumed to be the rootpass. if (parent == nullptr) @@ -1345,7 +1348,7 @@ namespace AZ PassEntry entry(pass, parent); // Set the time stamp in the database. - const auto passEntry = passEntryDatabase.find(entry.m_path); + [[maybe_unused]] const auto passEntry = passEntryDatabase.find(entry.m_path); AZ_Assert(passEntry == passEntryDatabase.end(), "There already is an entry with the name \"%s\".", entry.m_path.GetCStr()); // Set the entry in the map. diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/StableDynamicArray.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/StableDynamicArray.inl index 25f3f528ab..870ed04b33 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/StableDynamicArray.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/StableDynamicArray.inl @@ -305,7 +305,7 @@ namespace AZ template size_t StableDynamicArray::Page::Reserve() { - for (m_bitStartIndex; m_bitStartIndex < NumUint64_t; ++m_bitStartIndex) + for (; m_bitStartIndex < NumUint64_t; ++m_bitStartIndex) { if (m_bits[m_bitStartIndex] != FullBits) { @@ -462,7 +462,7 @@ namespace AZ } // skip the empty bitfields in the page - for (m_bitGroupIndex; m_bitGroupIndex < Page::NumUint64_t && m_page->m_bits.at(m_bitGroupIndex) == 0; ++m_bitGroupIndex) + for (; m_bitGroupIndex < Page::NumUint64_t && m_page->m_bits.at(m_bitGroupIndex) == 0; ++m_bitGroupIndex) { } diff --git a/Gems/Atom/Utils/preview.png b/Gems/Atom/Utils/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/Atom/Utils/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/Atom/gem.json b/Gems/Atom/gem.json index f927e42e7e..99ca26025a 100644 --- a/Gems/Atom/gem.json +++ b/Gems/Atom/gem.json @@ -7,7 +7,6 @@ "summary": "The Atom Renderer Gem provides Atom Renderer and its associated tools (such as Material Editor), utilites, libraries, and interfaces.", "canonical_tags": ["Gem"], "user_tags": ["Rendering", "Core"], - "icon_path": "preview.png", "requirements": "", "documentation_url": "https://o3de.org/docs/user-guide/gems/reference/rendering/atom/atom/" } diff --git a/Gems/AtomContent/ReferenceMaterials/gem.json b/Gems/AtomContent/ReferenceMaterials/gem.json index cb1d6f7a2e..d66c2fa1db 100644 --- a/Gems/AtomContent/ReferenceMaterials/gem.json +++ b/Gems/AtomContent/ReferenceMaterials/gem.json @@ -7,6 +7,5 @@ "summary": "Atom Asset Gem with a library of reference materials for StandardPBR (and others in the future)", "canonical_tags": ["Gem"], "user_tags": ["Assets"], - "icon_path": "preview.png", "requirements": "" } diff --git a/Gems/AtomContent/ReferenceMaterials/preview.png b/Gems/AtomContent/ReferenceMaterials/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/AtomContent/ReferenceMaterials/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/AtomContent/Sponza/gem.json b/Gems/AtomContent/Sponza/gem.json index ef054ce55a..3fc76927e1 100644 --- a/Gems/AtomContent/Sponza/gem.json +++ b/Gems/AtomContent/Sponza/gem.json @@ -7,6 +7,5 @@ "summary": "A standard test scene for Global Illumination (forked from crytek sponza scene)", "canonical_tags": ["Gem"], "user_tags": ["Assets"], - "icon_path": "preview.png", "requirements": "" } diff --git a/Gems/AtomContent/Sponza/preview.png b/Gems/AtomContent/Sponza/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/AtomContent/Sponza/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/AtomContent/gem.json b/Gems/AtomContent/gem.json index 8161635f43..6fcb8903e4 100644 --- a/Gems/AtomContent/gem.json +++ b/Gems/AtomContent/gem.json @@ -7,7 +7,6 @@ "summary": "The Atom Content Gem provides assets for Atom Renderer and a modified version of the Pixar Look Development Studio.", "canonical_tags": ["Gem"], "user_tags": ["Rendering", "Assets", "Tools"], - "icon_path": "preview.png", "requirements": "", "documentation_url": "https://o3de.org/docs/user-guide/gems/reference/rendering/atom/atom-content/" } diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Editor/AssetCollectionAsyncLoaderTestComponent.cpp b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Editor/AssetCollectionAsyncLoaderTestComponent.cpp index b51e3b0e29..2a72641050 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Editor/AssetCollectionAsyncLoaderTestComponent.cpp +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Editor/AssetCollectionAsyncLoaderTestComponent.cpp @@ -13,7 +13,7 @@ #include -#include +#include // Included so we can deduce the asset type from asset paths. #include diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/PerViewportDynamicDrawManager.cpp b/Gems/AtomLyIntegration/AtomBridge/Code/Source/PerViewportDynamicDrawManager.cpp index 414dd7cdf0..c0627d38da 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/PerViewportDynamicDrawManager.cpp +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/PerViewportDynamicDrawManager.cpp @@ -86,7 +86,7 @@ namespace AZ::AtomBridge context.second->SetOutputScope(pipeline.get()); } }); - viewportData.m_viewportDestroyedHandler = AZ::Event::Handler([this, viewportId](AzFramework::ViewportId id) + viewportData.m_viewportDestroyedHandler = AZ::Event::Handler([this](AzFramework::ViewportId id) { AZStd::lock_guard lock(m_mutexDrawContexts); m_viewportData.erase(id); diff --git a/Gems/AtomLyIntegration/AtomBridge/preview.png b/Gems/AtomLyIntegration/AtomBridge/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/AtomLyIntegration/AtomBridge/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont.h index f5883232eb..6d361c01ae 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont.h @@ -136,7 +136,6 @@ namespace AZ FontMap m_fonts; FontFamilyMap m_fontFamilies; //!< Map font family names to weak ptrs so we can construct shared_ptrs but not keep a ref ourselves. FontFamilyReverseLookupMap m_fontFamilyReverseLookup; //" const bool charWidthFits = static_cast(iX + m_glyph->bitmap.width) <= textureSlotBufferWidth; const bool charHeightFits = static_cast(iY + m_glyph->bitmap.rows) <= textureSlotBufferHeight; - const bool charFitsInSlot = charWidthFits && charHeightFits; + [[maybe_unused]] const bool charFitsInSlot = charWidthFits && charHeightFits; AZ_Error("Font", charFitsInSlot, "Character code %d doesn't fit in font texture; check 'sizeRatio' attribute in font XML or adjust this character's sizing in the font.", characterCode); // Since we might be re-rendering/overwriting a glyph that already exists diff --git a/Gems/AtomLyIntegration/AtomImGuiTools/preview.png b/Gems/AtomLyIntegration/AtomImGuiTools/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/AtomLyIntegration/AtomImGuiTools/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/AtomViewportDisplayInfoSystemComponent.cpp b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/AtomViewportDisplayInfoSystemComponent.cpp index 45757c2c6c..7d659ebb7a 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/AtomViewportDisplayInfoSystemComponent.cpp +++ b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/AtomViewportDisplayInfoSystemComponent.cpp @@ -211,7 +211,6 @@ namespace AZ::Render return; } - auto viewportSize = viewportContext->GetViewportSize(); AzFramework::CameraState cameraState; AzFramework::SetCameraClippingVolumeFromPerspectiveFovMatrixRH(cameraState, currentView->GetViewToClipMatrix()); const AZ::Transform transform = currentView->GetCameraTransform(); diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/CMakeLists.txt b/Gems/AtomLyIntegration/CommonFeatures/Code/CMakeLists.txt index 804a53ebed..df5ab134fa 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/CMakeLists.txt +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/CMakeLists.txt @@ -123,27 +123,10 @@ if(PAL_TRAIT_BUILD_HOST_TOOLS) Gem::AtomLyIntegration_CommonFeatures.Editor Gem::GradientSignal.Tools ) - - # AtomLyIntergration_CommonFeatures gem targets are required as part of the Editor and AssetProcessor - # due to the AZ::Render::EditorDirectionalLightComponent, AZ::Render::EditorMeshComponent, - # AZ::Render::EditorGridComponent, AZ::Render::EditorHDRiSkyboxComponent, - # AZ::Render::EditorImageBasedLightComponent being saved as part of the DefaultLevel.prefab - ly_enable_gems(GEMS AtomLyIntegration_CommonFeatures VARIANTS Tools - TARGETS Editor) - ly_enable_gems(GEMS AtomLyIntegration_CommonFeatures VARIANTS Builders - TARGETS AssetBuilder AssetProcessor AssetProcessorBatch) endif() - -# Added dependencies to the Client and Server Launchers -get_property(LY_PROJECTS_TARGET_NAME GLOBAL PROPERTY LY_PROJECTS_TARGET_NAME) -foreach(project_name IN LISTS LY_PROJECTS_TARGET_NAME) - # Add gem as a dependency of the Clients Launcher - ly_enable_gems(PROJECT_NAME ${project_name} GEMS AtomLyIntegration_CommonFeatures VARIANTS Clients - TARGETS ${project_name}.GameLauncher) - # Add gem as a dependency of the Servers Launcher - if(PAL_TRAIT_BUILD_SERVER_SUPPORTED) - ly_enable_gems(PROJECT_NAME ${project_name} GEMS AtomLyIntegration_CommonFeatures VARIANTS Servers - TARGETS ${project_name}.ServerLauncher) - endif() -endforeach() +# AtomLyIntegration_CommonFeatures gem targets are required as part of the Editor and AssetProcessor +# due to the AZ::Render::EditorDirectionalLightComponent, AZ::Render::EditorMeshComponent, +# AZ::Render::EditorGridComponent, AZ::Render::EditorHDRiSkyboxComponent, +# AZ::Render::EditorImageBasedLightComponent being saved as part of the DefaultLevel.prefab +ly_enable_gems(GEMS AtomLyIntegration_CommonFeatures) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/AreaLightComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/AreaLightComponentConfig.h index b890b3e264..74eb10fdb6 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/AreaLightComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/AreaLightComponentConfig.h @@ -124,6 +124,9 @@ namespace AZ //! Returns true if exponential shadow maps are disabled. bool IsEsmDisabled() const; + + //! Returns true if the softening boundary width parameter is disabled. + bool IsSofteningBoundaryWidthDisabled() const; }; } } diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightBus.h index 086f68f80f..610578ee2d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightBus.h @@ -185,6 +185,14 @@ namespace AZ //! This sets the type of Pcf (percentage-closer filtering) to use. //! @param method The Pcf method to use. virtual void SetPcfMethod(PcfMethod method) = 0; + + //! Gets whether the directional shadowmap should use receiver plane bias. + //! This attempts to reduce shadow acne when using large pcf filters. + virtual bool GetShadowReceiverPlaneBiasEnabled() const = 0; + + //! Sets whether the directional shadowmap should use receiver plane bias. + //! @param enable flag specifying whether to enable the receiver plane bias feature + virtual void SetShadowReceiverPlaneBiasEnabled(bool enable) = 0; }; using DirectionalLightRequestBus = EBus; diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightComponentConfig.h index 562750acd5..e9e5778086 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightComponentConfig.h @@ -115,12 +115,18 @@ namespace AZ PcfMethod m_pcfMethod = PcfMethod::Bicubic; + //! Whether not to enable the receiver plane bias. + //! This uses partial derivatives to reduce shadow acne when using large pcf kernels. + bool m_receiverPlaneBiasEnabled = true; + bool IsSplitManual() const; bool IsSplitAutomatic() const; bool IsCascadeCorrectionDisabled() const; bool IsShadowFilteringDisabled() const; bool IsShadowPcfDisabled() const; bool IsPcfBoundarySearchDisabled() const; + bool IsSofteningBoundaryWidthDisabled() const; + bool IsEsmDisabled() const; }; } // namespace Render } // namespace AZ diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Mesh/MeshComponentBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Mesh/MeshComponentBus.h index ff75f7f45a..cc9c78d356 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Mesh/MeshComponentBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Mesh/MeshComponentBus.h @@ -36,9 +36,18 @@ namespace AZ virtual void SetSortKey(RHI::DrawItemSortKey sortKey) = 0; virtual RHI::DrawItemSortKey GetSortKey() const = 0; + virtual void SetLodType(RPI::Cullable::LodType lodType) = 0; + virtual RPI::Cullable::LodType GetLodType() const = 0; + virtual void SetLodOverride(RPI::Cullable::LodOverride lodOverride) = 0; virtual RPI::Cullable::LodOverride GetLodOverride() const = 0; + virtual void SetMinimumScreenCoverage(float minimumScreenCoverage) = 0; + virtual float GetMinimumScreenCoverage() const = 0; + + virtual void SetQualityDecayRate(float qualityDecayRate) = 0; + virtual float GetQualityDecayRate() const = 0; + virtual void SetVisibility(bool visible) = 0; virtual bool GetVisibility() const = 0; diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentConfig.cpp index b9da5ccff4..550a09469f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentConfig.cpp @@ -197,5 +197,16 @@ namespace AZ return !(m_shadowFilterMethod == ShadowFilterMethod::Esm || m_shadowFilterMethod == ShadowFilterMethod::EsmPcf); } + bool AreaLightComponentConfig::IsSofteningBoundaryWidthDisabled() const + { + // softening boundary width is always available with ESM. It controls the width of the blur kernel during the ESM gaussian + // blur passes + if (!IsEsmDisabled()) + return false; + + // with PCF, softening boundary width is used with the boundary search method and NOT the bicubic pcf methods + return IsPcfBoundarySearchDisabled(); + } + } } diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentConfig.cpp index 4e700927e9..24ce566fb4 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentConfig.cpp @@ -21,7 +21,7 @@ namespace AZ if (auto* serializeContext = azrtti_cast(context)) { serializeContext->Class() - ->Version(7) + ->Version(8) ->Field("Color", &DirectionalLightComponentConfig::m_color) ->Field("IntensityMode", &DirectionalLightComponentConfig::m_intensityMode) ->Field("Intensity", &DirectionalLightComponentConfig::m_intensity) @@ -41,7 +41,7 @@ namespace AZ ->Field("PcfPredictionSampleCount", &DirectionalLightComponentConfig::m_predictionSampleCount) ->Field("PcfFilteringSampleCount", &DirectionalLightComponentConfig::m_filteringSampleCount) ->Field("Pcf Method", &DirectionalLightComponentConfig::m_pcfMethod) - ; + ->Field("ShadowReceiverPlaneBiasEnabled", &DirectionalLightComponentConfig::m_receiverPlaneBiasEnabled); } } @@ -128,5 +128,21 @@ namespace AZ return m_pcfMethod != PcfMethod::BoundarySearch; } + bool DirectionalLightComponentConfig::IsEsmDisabled() const + { + return !(m_shadowFilterMethod == ShadowFilterMethod::Esm || m_shadowFilterMethod == ShadowFilterMethod::EsmPcf); + } + + bool DirectionalLightComponentConfig::IsSofteningBoundaryWidthDisabled() const + { + // softening boundary width is always available with ESM. It controls the width of the blur kernel during the ESM gaussian + // blur passes + if (!IsEsmDisabled()) + return false; + + // with PCF, softening boundary width is used with the boundary search method and NOT the bicubic pcf methods + return IsPcfBoundarySearchDisabled(); + } + } // namespace Render } // namespace AZ diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.cpp index 642e50d104..6bf449803b 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.cpp @@ -88,6 +88,8 @@ namespace AZ ->Event("SetFilteringSampleCount", &DirectionalLightRequestBus::Events::SetFilteringSampleCount) ->Event("GetPcfMethod", &DirectionalLightRequestBus::Events::GetPcfMethod) ->Event("SetPcfMethod", &DirectionalLightRequestBus::Events::SetPcfMethod) + ->Event("GetShadowReceiverPlaneBiasEnabled", &DirectionalLightRequestBus::Events::GetShadowReceiverPlaneBiasEnabled) + ->Event("SetShadowReceiverPlaneBiasEnabled", &DirectionalLightRequestBus::Events::SetShadowReceiverPlaneBiasEnabled) ->VirtualProperty("Color", "GetColor", "SetColor") ->VirtualProperty("Intensity", "GetIntensity", "SetIntensity") ->VirtualProperty("AngularDiameter", "GetAngularDiameter", "SetAngularDiameter") @@ -104,7 +106,8 @@ namespace AZ ->VirtualProperty("SofteningBoundaryWidth", "GetSofteningBoundaryWidth", "SetSofteningBoundaryWidth") ->VirtualProperty("PredictionSampleCount", "GetPredictionSampleCount", "SetPredictionSampleCount") ->VirtualProperty("FilteringSampleCount", "GetFilteringSampleCount", "SetFilteringSampleCount") - ->VirtualProperty("PcfMethod", "GetPcfMethod", "SetPcfMethod"); + ->VirtualProperty("PcfMethod", "GetPcfMethod", "SetPcfMethod") + ->VirtualProperty("ShadowReceiverPlaneBiasEnabled", "GetShadowReceiverPlaneBiasEnabled", "SetShadowReceiverPlaneBiasEnabled"); ; } } @@ -539,6 +542,7 @@ namespace AZ SetPredictionSampleCount(m_configuration.m_predictionSampleCount); SetFilteringSampleCount(m_configuration.m_filteringSampleCount); SetPcfMethod(m_configuration.m_pcfMethod); + SetShadowReceiverPlaneBiasEnabled(m_configuration.m_receiverPlaneBiasEnabled); // [GFX TODO][ATOM-1726] share config for multiple light (e.g., light ID). // [GFX TODO][ATOM-2416] adapt to multiple viewports. @@ -637,6 +641,17 @@ namespace AZ m_configuration.m_pcfMethod = method; m_featureProcessor->SetPcfMethod(m_lightHandle, method); } - + + bool DirectionalLightComponentController::GetShadowReceiverPlaneBiasEnabled() const + { + return m_configuration.m_receiverPlaneBiasEnabled; + } + + void DirectionalLightComponentController::SetShadowReceiverPlaneBiasEnabled(bool enable) + { + m_configuration.m_receiverPlaneBiasEnabled = enable; + m_featureProcessor->SetShadowReceiverPlaneBiasEnabled(m_lightHandle, enable); + } + } // namespace Render } // namespace AZ diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.h index 4684852ff1..6b788c241c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.h @@ -84,6 +84,8 @@ namespace AZ void SetFilteringSampleCount(uint32_t count) override; PcfMethod GetPcfMethod() const override; void SetPcfMethod(PcfMethod method) override; + bool GetShadowReceiverPlaneBiasEnabled() const override; + void SetShadowReceiverPlaneBiasEnabled(bool enable) override; private: friend class EditorDirectionalLightComponent; diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorAreaLightComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorAreaLightComponent.cpp index e45f460f18..17fb9a5e1d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorAreaLightComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorAreaLightComponent.cpp @@ -162,7 +162,7 @@ namespace AZ ->Attribute(Edit::Attributes::Max, 1.f) ->Attribute(Edit::Attributes::Suffix, " deg") ->Attribute(Edit::Attributes::Visibility, &AreaLightComponentConfig::SupportsShadows) - ->Attribute(Edit::Attributes::ReadOnly, &AreaLightComponentConfig::IsPcfBoundarySearchDisabled) + ->Attribute(Edit::Attributes::ReadOnly, &AreaLightComponentConfig::IsSofteningBoundaryWidthDisabled) ->DataElement(Edit::UIHandlers::Slider, &AreaLightComponentConfig::m_predictionSampleCount, "Prediction sample count", "Sample count for prediction of whether the pixel is on the boundary. Specific to PCF and ESM+PCF.") ->Attribute(Edit::Attributes::Min, 4) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorDirectionalLightComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorDirectionalLightComponent.cpp index dced9314b7..18d9ad70e0 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorDirectionalLightComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorDirectionalLightComponent.cpp @@ -141,7 +141,7 @@ namespace AZ ->Attribute(Edit::Attributes::Max, 0.1f) ->Attribute(Edit::Attributes::Suffix, " m") ->Attribute(Edit::Attributes::ChangeNotify, Edit::PropertyRefreshLevels::ValuesOnly) - ->Attribute(Edit::Attributes::ReadOnly, &DirectionalLightComponentConfig::IsPcfBoundarySearchDisabled) + ->Attribute(Edit::Attributes::ReadOnly, &DirectionalLightComponentConfig::IsSofteningBoundaryWidthDisabled) ->DataElement(Edit::UIHandlers::Slider, &DirectionalLightComponentConfig::m_predictionSampleCount, "Prediction sample count", "Sample count for prediction of whether the pixel is on the boundary. " "Specific to PCF and ESM+PCF.") @@ -164,9 +164,13 @@ namespace AZ ->EnumAttribute(PcfMethod::Bicubic, "Bicubic") ->EnumAttribute(PcfMethod::BoundarySearch, "Boundary search") ->Attribute(Edit::Attributes::ChangeNotify, Edit::PropertyRefreshLevels::ValuesOnly) - ->Attribute(Edit::Attributes::ReadOnly, &DirectionalLightComponentConfig::IsShadowPcfDisabled); - ; - + ->Attribute(Edit::Attributes::ReadOnly, &DirectionalLightComponentConfig::IsShadowPcfDisabled) + ->DataElement( + Edit::UIHandlers::CheckBox, &DirectionalLightComponentConfig::m_receiverPlaneBiasEnabled, + "Shadow Receiver Plane Bias Enable", + "This reduces shadow acne when using large pcf kernels.") + ->Attribute(Edit::Attributes::ChangeNotify, Edit::PropertyRefreshLevels::ValuesOnly) + ->Attribute(Edit::Attributes::ReadOnly, &DirectionalLightComponentConfig::IsShadowPcfDisabled); } } diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.cpp index 32a36392a4..f55da28fa6 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.cpp @@ -11,6 +11,7 @@ #include #include +#include #include #include #include @@ -22,7 +23,6 @@ AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") // disable warnin #include #include #include -#include #include #include #include @@ -145,7 +145,7 @@ namespace AZ // Whenever the browse button is clicked, open a save file dialog in the same location as the current export file setting QObject::connect(materialFileWidget, &AzQtComponents::BrowseEdit::attachedButtonTriggered, materialFileWidget, [&dialog, &exportItem, materialFileWidget, overwriteCheckBox]() { - QFileInfo fileInfo = QFileDialog::getSaveFileName(&dialog, + QFileInfo fileInfo = AzQtComponents::FileDialog::GetSaveFileName(&dialog, QString("Select Material Filename"), exportItem.GetExportPath().c_str(), QString("Material (*.material)"), diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentInspector.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentInspector.cpp index f4c255d774..b9a4adc068 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentInspector.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentInspector.cpp @@ -214,7 +214,7 @@ namespace AZ groupNameId.c_str())); auto propertyGroupWidget = new AtomToolsFramework::InspectorPropertyGroupWidget( &group, &group, group.TYPEINFO_Uuid(), this, this, saveStateKey, - [this](const AzToolsFramework::InstanceDataNode* source, const AzToolsFramework::InstanceDataNode* target) { + [](const AzToolsFramework::InstanceDataNode* source, const AzToolsFramework::InstanceDataNode* target) { AZ_UNUSED(source); const AtomToolsFramework::DynamicProperty* property = AtomToolsFramework::FindDynamicPropertyForInstanceDataNode(target); return property && AtomToolsFramework::ArePropertyValuesEqual(property->GetValue(), property->GetConfig().m_parentValue); @@ -267,7 +267,7 @@ namespace AZ groupNameId.c_str())); auto propertyGroupWidget = new AtomToolsFramework::InspectorPropertyGroupWidget( &group, &group, group.TYPEINFO_Uuid(), this, this, saveStateKey, - [this](const AzToolsFramework::InstanceDataNode* source, const AzToolsFramework::InstanceDataNode* target) { + [](const AzToolsFramework::InstanceDataNode* source, const AzToolsFramework::InstanceDataNode* target) { AZ_UNUSED(source); const AtomToolsFramework::DynamicProperty* property = AtomToolsFramework::FindDynamicPropertyForInstanceDataNode(target); return property && AtomToolsFramework::ArePropertyValuesEqual(property->GetValue(), property->GetConfig().m_parentValue); diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.cpp index 91ac73a209..6e1e710282 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.cpp @@ -8,6 +8,7 @@ #include #include +#include #include #include @@ -133,7 +134,7 @@ namespace AZ { InitializeMaterialInstance(asset); } - + void MaterialComponentController::OnTick([[maybe_unused]] float deltaTime, [[maybe_unused]] AZ::ScriptTimePoint time) { AZStd::unordered_set propertyOverrides; @@ -208,6 +209,7 @@ namespace AZ for (auto& materialPair : m_configuration.m_materials) { auto& materialAsset = materialPair.second.m_materialAsset; + if (materialAsset.GetId().IsValid() && !Data::AssetBus::MultiHandler::BusIsConnectedId(materialAsset.GetId())) { anyQueued = true; @@ -221,7 +223,7 @@ namespace AZ ReleaseMaterials(); } } - + void MaterialComponentController::InitializeMaterialInstance(const Data::Asset& asset) { bool allReady = true; diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.h index 8866493998..9e59bbef19 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.h @@ -92,11 +92,11 @@ namespace AZ AZ_DISABLE_COPY(MaterialComponentController); - //! Data::AssetBus interface + //! Data::AssetBus overrides... void OnAssetReady(Data::Asset asset) override; void OnAssetReloaded(Data::Asset asset) override; - //! AZ::TickBus interface implementation + // AZ::TickBus overrides... void OnTick(float deltaTime, AZ::ScriptTimePoint time) override; void LoadMaterials(); diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshComponent.cpp index 4b3322c442..3324bdfa8d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshComponent.cpp @@ -71,16 +71,36 @@ namespace AZ "MeshComponentConfig", "") ->ClassElement(AZ::Edit::ClassElements::EditorData, "") ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - ->DataElement(AZ::Edit::UIHandlers::Default, &MeshComponentConfig::m_modelAsset, "Mesh Asset", "Mesh asset reference") - ->DataElement(AZ::Edit::UIHandlers::Default, &MeshComponentConfig::m_sortKey, "Sort Key", "Transparent meshes are drawn by sort key then depth. Used this to force certain transparent meshes to draw before or after others.") - ->DataElement(AZ::Edit::UIHandlers::ComboBox, &MeshComponentConfig::m_lodOverride, "Lod Override", "Allows the rendered LOD to be overridden instead of being calculated automatically.") - ->Attribute(AZ::Edit::Attributes::EnumValues, &MeshComponentConfig::GetLodOverrideValues) - ->Attribute(AZ::Edit::Attributes::Visibility, &MeshComponentConfig::IsAssetSet) - ->DataElement(AZ::Edit::UIHandlers::CheckBox, &MeshComponentConfig::m_excludeFromReflectionCubeMaps, "Exclude from reflection cubemaps", "Mesh will not be visible in baked reflection probe cubemaps") - ->Attribute(AZ::Edit::Attributes::ChangeNotify, Edit::PropertyRefreshLevels::ValuesOnly) - ->DataElement(AZ::Edit::UIHandlers::CheckBox, &MeshComponentConfig::m_useForwardPassIblSpecular, "Use Forward Pass IBL Specular", - "Renders IBL specular reflections in the forward pass, using only the most influential probe (based on the position of the entity) and the global IBL cubemap. Can reduce rendering costs, but only recommended for static objects that are affected by at most one reflection probe.") - ->Attribute(AZ::Edit::Attributes::ChangeNotify, Edit::PropertyRefreshLevels::ValuesOnly) + ->DataElement(AZ::Edit::UIHandlers::Default, &MeshComponentConfig::m_modelAsset, "Mesh Asset", "Mesh asset reference") + ->DataElement(AZ::Edit::UIHandlers::Default, &MeshComponentConfig::m_sortKey, "Sort Key", "Transparent meshes are drawn by sort key then depth. Used this to force certain transparent meshes to draw before or after others.") + ->Attribute(AZ::Edit::Attributes::Visibility, &MeshComponentConfig::IsAssetSet) + ->DataElement(AZ::Edit::UIHandlers::CheckBox, &MeshComponentConfig::m_excludeFromReflectionCubeMaps, "Exclude from reflection cubemaps", "Mesh will not be visible in baked reflection probe cubemaps") + ->Attribute(AZ::Edit::Attributes::ChangeNotify, Edit::PropertyRefreshLevels::ValuesOnly) + ->DataElement(AZ::Edit::UIHandlers::CheckBox, &MeshComponentConfig::m_useForwardPassIblSpecular, "Use Forward Pass IBL Specular", + "Renders IBL specular reflections in the forward pass, using only the most influential probe (based on the position of the entity) and the global IBL cubemap. Can reduce rendering costs, but only recommended for static objects that are affected by at most one reflection probe.") + ->Attribute(AZ::Edit::Attributes::ChangeNotify, Edit::PropertyRefreshLevels::ValuesOnly) + ->DataElement(AZ::Edit::UIHandlers::ComboBox, &MeshComponentConfig::m_lodType, "Lod Type", "Lod Method.") + ->EnumAttribute(RPI::Cullable::LodType::Default, "Default") + ->EnumAttribute(RPI::Cullable::LodType::ScreenCoverage, "Screen Coverage") + ->EnumAttribute(RPI::Cullable::LodType::SpecificLod, "Specific Lod") + ->Attribute(AZ::Edit::Attributes::Visibility, &MeshComponentConfig::IsAssetSet) + ->Attribute(AZ::Edit::Attributes::ChangeNotify, Edit::PropertyRefreshLevels::EntireTree) + ->ClassElement(AZ::Edit::ClassElements::Group, "Lod Configuration") + ->Attribute(AZ::Edit::Attributes::AutoExpand, false) + ->Attribute(AZ::Edit::Attributes::Visibility, &MeshComponentConfig::ShowLodConfig) + ->DataElement(AZ::Edit::UIHandlers::ComboBox, &MeshComponentConfig::m_lodOverride, "Lod Override", "Allows the rendered LOD to be overridden instead of being calculated automatically.") + ->Attribute(AZ::Edit::Attributes::EnumValues, &MeshComponentConfig::GetLodOverrideValues) + ->Attribute(AZ::Edit::Attributes::Visibility, &MeshComponentConfig::LodTypeIsSpecificLOD) + ->DataElement(AZ::Edit::UIHandlers::Slider, &MeshComponentConfig::m_minimumScreenCoverage, "Minimum Screen Coverage", "Minimum proportion of screen area an entitiy takes up, after that the entitiy is culled.") + ->Attribute(AZ::Edit::Attributes::Min, 0.f) + ->Attribute(AZ::Edit::Attributes::Max, 1.f) + ->Attribute(AZ::Edit::Attributes::Suffix, " percent") + ->Attribute(AZ::Edit::Attributes::Visibility, &MeshComponentConfig::LodTypeIsScreenCoverage) + ->DataElement(AZ::Edit::UIHandlers::Slider, &MeshComponentConfig::m_qualityDecayRate, "Quality Decay Rate", + "Rate at which mesh quality decays (0 -> always stay highest quality, 1 -> quality falls off to lowest quality immediately).") + ->Attribute(AZ::Edit::Attributes::Min, 0.f) + ->Attribute(AZ::Edit::Attributes::Max, 1.f) + ->Attribute(AZ::Edit::Attributes::Visibility, &MeshComponentConfig::LodTypeIsScreenCoverage) ; } } diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp index bb38f932fb..9e0c285001 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp @@ -31,18 +31,40 @@ namespace AZ { namespace Render { + + namespace MeshComponentControllerVersionUtility + { + bool VersionConverter(AZ::SerializeContext& context, AZ::SerializeContext::DataElementNode& classElement) + { + if (classElement.GetVersion() < 2) + { + RPI::Cullable::LodOverride lodOverride = aznumeric_cast(classElement.FindElement(AZ_CRC("LodOverride"))); + static constexpr uint8_t old_NoLodOverride = AZStd::numeric_limits ::max(); + if (lodOverride == old_NoLodOverride) + { + classElement.AddElementWithData(context, "LodType", RPI::Cullable::LodType::SpecificLod); + } + } + return true; + } + } // namespace MeshComponentControllerVersionUtility + void MeshComponentConfig::Reflect(ReflectContext* context) { if (auto* serializeContext = azrtti_cast(context)) { serializeContext->Class() - ->Version(1) + ->Version(2, &MeshComponentControllerVersionUtility::VersionConverter) ->Field("ModelAsset", &MeshComponentConfig::m_modelAsset) ->Field("SortKey", &MeshComponentConfig::m_sortKey) - ->Field("LodOverride", &MeshComponentConfig::m_lodOverride) ->Field("ExcludeFromReflectionCubeMaps", &MeshComponentConfig::m_excludeFromReflectionCubeMaps) - ->Field("UseForwardPassIBLSpecular", &MeshComponentConfig::m_useForwardPassIblSpecular); + ->Field("UseForwardPassIBLSpecular", &MeshComponentConfig::m_useForwardPassIblSpecular) + ->Field("LodType", &MeshComponentConfig::m_lodType) + ->Field("LodOverride", &MeshComponentConfig::m_lodOverride) + ->Field("MinimumScreenCoverage", &MeshComponentConfig::m_minimumScreenCoverage) + ->Field("QualityDecayRate", &MeshComponentConfig::m_qualityDecayRate); } + } bool MeshComponentConfig::IsAssetSet() @@ -50,6 +72,21 @@ namespace AZ return m_modelAsset.GetId().IsValid(); } + bool MeshComponentConfig::LodTypeIsScreenCoverage() + { + return m_lodType == RPI::Cullable::LodType::ScreenCoverage; + } + + bool MeshComponentConfig::LodTypeIsSpecificLOD() + { + return m_lodType == RPI::Cullable::LodType::SpecificLod; + } + + bool MeshComponentConfig::ShowLodConfig() + { + return LodTypeIsScreenCoverage() && LodTypeIsSpecificLOD(); + } + AZStd::vector> MeshComponentConfig::GetLodOverrideValues() { AZStd::vector> values; @@ -72,9 +109,9 @@ namespace AZ } values.reserve(lodCount + 1); - values.push_back({ RPI::Cullable::NoLodOverride, "Not Set" }); + values.push_back({ aznumeric_cast(0), "Default (Highest)" }); - for (uint32_t i = 0; i < lodCount; ++i) + for (uint32_t i = 1; i < lodCount; ++i) { AZStd::string enumDescription = AZStd::string::format("Lod %i", i); values.push_back({ aznumeric_cast(i), enumDescription.c_str() }); @@ -102,7 +139,12 @@ namespace AZ if (AZ::BehaviorContext* behaviorContext = azrtti_cast(context)) { - behaviorContext->ConstantProperty("NoLodOverride", BehaviorConstant(RPI::Cullable::NoLodOverride)) + behaviorContext->ConstantProperty("DefaultLodOverride", BehaviorConstant(0)) + ->Attribute(AZ::Script::Attributes::Scope, AZ::Script::Attributes::ScopeFlags::Common) + ->Attribute(AZ::Script::Attributes::Category, "render") + ->Attribute(AZ::Script::Attributes::Module, "render"); + + behaviorContext->ConstantProperty("DefaultLodType", BehaviorConstant(RPI::Cullable::LodType::Default)) ->Attribute(AZ::Script::Attributes::Scope, AZ::Script::Attributes::ScopeFlags::Common) ->Attribute(AZ::Script::Attributes::Category, "render") ->Attribute(AZ::Script::Attributes::Module, "render"); @@ -114,12 +156,21 @@ namespace AZ ->Event("SetModelAssetPath", &MeshComponentRequestBus::Events::SetModelAssetPath) ->Event("SetSortKey", &MeshComponentRequestBus::Events::SetSortKey) ->Event("GetSortKey", &MeshComponentRequestBus::Events::GetSortKey) + ->Event("SetLodType", &MeshComponentRequestBus::Events::SetLodType) + ->Event("GetLodType", &MeshComponentRequestBus::Events::GetLodType) ->Event("SetLodOverride", &MeshComponentRequestBus::Events::SetLodOverride) ->Event("GetLodOverride", &MeshComponentRequestBus::Events::GetLodOverride) + ->Event("SetMinimumScreenCoverage", &MeshComponentRequestBus::Events::SetMinimumScreenCoverage) + ->Event("GetMinimumScreenCoverage", &MeshComponentRequestBus::Events::GetMinimumScreenCoverage) + ->Event("SetQualityDecayRate", &MeshComponentRequestBus::Events::SetQualityDecayRate) + ->Event("GetQualityDecayRate", &MeshComponentRequestBus::Events::GetQualityDecayRate) ->VirtualProperty("ModelAssetId", "GetModelAssetId", "SetModelAssetId") ->VirtualProperty("ModelAssetPath", "GetModelAssetPath", "SetModelAssetPath") ->VirtualProperty("SortKey", "GetSortKey", "SetSortKey") + ->VirtualProperty("LodType", "GetLodType", "SetLodType") ->VirtualProperty("LodOverride", "GetLodOverride", "SetLodOverride") + ->VirtualProperty("MinimumScreenCoverage", "GetMinimumScreenCoverage", "SetMinimumScreenCoverage") + ->VirtualProperty("QualityDecayRate", "GetQualityDecayRate", "SetQualityDecayRate") ; } } @@ -343,7 +394,7 @@ namespace AZ m_meshFeatureProcessor->SetTransform(m_meshHandle, transform, m_cachedNonUniformScale); m_meshFeatureProcessor->SetSortKey(m_meshHandle, m_configuration.m_sortKey); - m_meshFeatureProcessor->SetLodOverride(m_meshHandle, m_configuration.m_lodOverride); + m_meshFeatureProcessor->SetMeshLodConfiguration(m_meshHandle, GetMeshLodConfiguration()); m_meshFeatureProcessor->SetExcludeFromReflectionCubeMaps(m_meshHandle, m_configuration.m_excludeFromReflectionCubeMaps); m_meshFeatureProcessor->SetVisible(m_meshHandle, m_isVisible); @@ -434,15 +485,66 @@ namespace AZ return m_meshFeatureProcessor->GetSortKey(m_meshHandle); } + RPI::Cullable::LodConfiguration MeshComponentController::GetMeshLodConfiguration() const + { + return { + m_configuration.m_lodType, + m_configuration.m_lodOverride, + m_configuration.m_minimumScreenCoverage, + m_configuration.m_qualityDecayRate + }; + } + // ----------------------- + void MeshComponentController::SetLodType(RPI::Cullable::LodType lodType) + { + RPI::Cullable::LodConfiguration lodConfig = GetMeshLodConfiguration(); + lodConfig.m_lodType = lodType; + m_meshFeatureProcessor->SetMeshLodConfiguration(m_meshHandle, lodConfig); + } + + RPI::Cullable::LodType MeshComponentController::GetLodType() const + { + RPI::Cullable::LodConfiguration lodConfig = m_meshFeatureProcessor->GetMeshLodConfiguration(m_meshHandle); + return lodConfig.m_lodType; + } + void MeshComponentController::SetLodOverride(RPI::Cullable::LodOverride lodOverride) { - m_configuration.m_lodOverride = lodOverride; // Save for serialization - m_meshFeatureProcessor->SetLodOverride(m_meshHandle, lodOverride); + RPI::Cullable::LodConfiguration lodConfig = GetMeshLodConfiguration(); + lodConfig.m_lodOverride = lodOverride; + m_meshFeatureProcessor->SetMeshLodConfiguration(m_meshHandle, lodConfig); } RPI::Cullable::LodOverride MeshComponentController::GetLodOverride() const { - return static_cast(m_meshFeatureProcessor->GetSortKey(m_meshHandle)); + RPI::Cullable::LodConfiguration lodConfig = m_meshFeatureProcessor->GetMeshLodConfiguration(m_meshHandle); + return lodConfig.m_lodOverride; + } + + void MeshComponentController::SetMinimumScreenCoverage(float minimumScreenCoverage) + { + RPI::Cullable::LodConfiguration lodConfig = GetMeshLodConfiguration(); + lodConfig.m_minimumScreenCoverage = minimumScreenCoverage; + m_meshFeatureProcessor->SetMeshLodConfiguration(m_meshHandle, lodConfig); + } + + float MeshComponentController::GetMinimumScreenCoverage() const + { + RPI::Cullable::LodConfiguration lodConfig = m_meshFeatureProcessor->GetMeshLodConfiguration(m_meshHandle); + return lodConfig.m_minimumScreenCoverage; + } + + void MeshComponentController::SetQualityDecayRate(float qualityDecayRate) + { + RPI::Cullable::LodConfiguration lodConfig = GetMeshLodConfiguration(); + lodConfig.m_qualityDecayRate = qualityDecayRate; + m_meshFeatureProcessor->SetMeshLodConfiguration(m_meshHandle, lodConfig); + } + + float MeshComponentController::GetQualityDecayRate() const + { + RPI::Cullable::LodConfiguration lodConfig = m_meshFeatureProcessor->GetMeshLodConfiguration(m_meshHandle); + return lodConfig.m_qualityDecayRate; } void MeshComponentController::SetVisibility(bool visible) @@ -476,15 +578,14 @@ namespace AZ { if (m_meshHandle.IsValid() && m_meshFeatureProcessor) { - Aabb aabb = m_meshFeatureProcessor->GetLocalAabb(m_meshHandle); + if (Aabb aabb = m_meshFeatureProcessor->GetLocalAabb(m_meshHandle); aabb.IsValid()) + { + aabb.MultiplyByScale(m_cachedNonUniformScale); + return aabb; + } + } - aabb.MultiplyByScale(m_cachedNonUniformScale); - return aabb; - } - else - { - return Aabb::CreateNull(); - } + return Aabb::CreateNull(); } AzFramework::RenderGeometry::RayResult MeshComponentController::RenderGeometryIntersect( diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.h index 63dba83fef..2c7cc78979 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.h @@ -30,6 +30,9 @@ namespace AZ { namespace Render { + + + //! A configuration structure for the MeshComponentController class MeshComponentConfig final : public AZ::ComponentConfig @@ -41,13 +44,20 @@ namespace AZ // Editor helper functions bool IsAssetSet(); + bool LodTypeIsScreenCoverage(); + bool LodTypeIsSpecificLOD(); + bool ShowLodConfig(); AZStd::vector> GetLodOverrideValues(); Data::Asset m_modelAsset = { AZ::Data::AssetLoadBehavior::QueueLoad }; RHI::DrawItemSortKey m_sortKey = 0; - RPI::Cullable::LodOverride m_lodOverride = RPI::Cullable::NoLodOverride; bool m_excludeFromReflectionCubeMaps = false; bool m_useForwardPassIblSpecular = false; + + RPI::Cullable::LodType m_lodType = RPI::Cullable::LodType::Default; + RPI::Cullable::LodOverride m_lodOverride = aznumeric_cast(0); + float m_minimumScreenCoverage = 1.0f / 1080.0f; + float m_qualityDecayRate = 0.5f; }; class MeshComponentController final @@ -94,8 +104,17 @@ namespace AZ void SetSortKey(RHI::DrawItemSortKey sortKey) override; RHI::DrawItemSortKey GetSortKey() const override; - void SetLodOverride(RPI::Cullable::LodOverride lodOverride) override; - RPI::Cullable::LodOverride GetLodOverride() const override; + void SetLodType(RPI::Cullable::LodType lodType) override; + RPI::Cullable::LodType GetLodType() const override; + + virtual void SetLodOverride(RPI::Cullable::LodOverride lodOverride); + virtual RPI::Cullable::LodOverride GetLodOverride() const; + + virtual void SetMinimumScreenCoverage(float minimumScreenCoverage); + virtual float GetMinimumScreenCoverage() const; + + virtual void SetQualityDecayRate(float qualityDecayRate); + virtual float GetQualityDecayRate() const; void SetVisibility(bool visible) override; bool GetVisibility() const override; @@ -132,6 +151,8 @@ namespace AZ void UnregisterModel(); void RefreshModelRegistration(); + RPI::Cullable::LodConfiguration GetMeshLodConfiguration() const; + void HandleNonUniformScaleChange(const AZ::Vector3& nonUniformScale); Render::MeshFeatureProcessorInterface* m_meshFeatureProcessor = nullptr; diff --git a/Gems/AtomLyIntegration/CommonFeatures/preview.png b/Gems/AtomLyIntegration/CommonFeatures/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/AtomLyIntegration/CommonFeatures/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.cpp b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.cpp index 8d247eaf45..284e1ed35d 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.cpp +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.cpp @@ -39,25 +39,6 @@ // Copied from ModelAssetBuilderComponent.cpp namespace { - const AZ::u32 IndicesPerFace = 3; - const AZ::RHI::Format IndicesFormat = AZ::RHI::Format::R32_UINT; - - const AZ::u32 PositionFloatsPerVert = 3; - const AZ::u32 NormalFloatsPerVert = 3; - const AZ::u32 UVFloatsPerVert = 2; - const AZ::u32 ColorFloatsPerVert = 4; - const AZ::u32 TangentFloatsPerVert = 4; - const AZ::u32 BitangentFloatsPerVert = 3; - - const AZ::RHI::Format PositionFormat = AZ::RHI::Format::R32G32B32_FLOAT; - const AZ::RHI::Format NormalFormat = AZ::RHI::Format::R32G32B32_FLOAT; - const AZ::RHI::Format UVFormat = AZ::RHI::Format::R32G32_FLOAT; - const AZ::RHI::Format ColorFormat = AZ::RHI::Format::R32G32B32A32_FLOAT; - const AZ::RHI::Format TangentFormat = AZ::RHI::Format::R32G32B32A32_FLOAT; - const AZ::RHI::Format BitangentFormat = AZ::RHI::Format::R32G32B32_FLOAT; - const AZ::RHI::Format BoneIndexFormat = AZ::RHI::Format::R32G32B32A32_UINT; - const AZ::RHI::Format BoneWeightFormat = AZ::RHI::Format::R32G32B32A32_FLOAT; - const uint32_t LinearSkinningFloatsPerBone = 12; const uint32_t DualQuaternionSkinningFloatsPerBone = 8; const uint32_t MaxSupportedSkinInfluences = 4; diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.cpp b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.cpp index e85c2b92e7..a3161002a0 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.cpp +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.cpp @@ -426,15 +426,53 @@ namespace AZ { return m_meshFeatureProcessor->GetSortKey(*m_meshHandle); } + + void AtomActorInstance::SetLodType(RPI::Cullable::LodType lodType) + { + RPI::Cullable::LodConfiguration config = m_meshFeatureProcessor->GetMeshLodConfiguration(*m_meshHandle); + config.m_lodType = lodType; + m_meshFeatureProcessor->SetMeshLodConfiguration(*m_meshHandle, config); + } + + RPI::Cullable::LodType AtomActorInstance::GetLodType() const + { + return m_meshFeatureProcessor->GetMeshLodConfiguration(*m_meshHandle).m_lodType; + } void AtomActorInstance::SetLodOverride(RPI::Cullable::LodOverride lodOverride) { - m_meshFeatureProcessor->SetLodOverride(*m_meshHandle, lodOverride); + RPI::Cullable::LodConfiguration config = m_meshFeatureProcessor->GetMeshLodConfiguration(*m_meshHandle); + config.m_lodOverride = lodOverride; + m_meshFeatureProcessor->SetMeshLodConfiguration(*m_meshHandle, config); } RPI::Cullable::LodOverride AtomActorInstance::GetLodOverride() const { - return m_meshFeatureProcessor->GetLodOverride(*m_meshHandle); + return m_meshFeatureProcessor->GetMeshLodConfiguration(*m_meshHandle).m_lodOverride; + } + + void AtomActorInstance::SetMinimumScreenCoverage(float minimumScreenCoverage) + { + RPI::Cullable::LodConfiguration config = m_meshFeatureProcessor->GetMeshLodConfiguration(*m_meshHandle); + config.m_minimumScreenCoverage = minimumScreenCoverage; + m_meshFeatureProcessor->SetMeshLodConfiguration(*m_meshHandle, config); + } + + float AtomActorInstance::GetMinimumScreenCoverage() const + { + return m_meshFeatureProcessor->GetMeshLodConfiguration(*m_meshHandle).m_minimumScreenCoverage; + } + + void AtomActorInstance::SetQualityDecayRate(float qualityDecayRate) + { + RPI::Cullable::LodConfiguration config = m_meshFeatureProcessor->GetMeshLodConfiguration(*m_meshHandle); + config.m_qualityDecayRate = qualityDecayRate; + m_meshFeatureProcessor->SetMeshLodConfiguration(*m_meshHandle, config); + } + + float AtomActorInstance::GetQualityDecayRate() const + { + return m_meshFeatureProcessor->GetMeshLodConfiguration(*m_meshHandle).m_qualityDecayRate; } void AtomActorInstance::SetVisibility(bool visible) @@ -773,7 +811,7 @@ namespace AZ const uint64_t inputByteOffset = aznumeric_cast(inputBufferViewDescriptor.m_elementOffset) * aznumeric_cast(inputBufferViewDescriptor.m_elementSize); const uint32_t outputElementSize = SkinnedMeshVertexStreamPropertyInterface::Get()->GetOutputStreamInfo(outputStream).m_elementSize; - const uint64_t outputByteCount = aznumeric_cast(lodVertexCount) * aznumeric_cast(outputElementSize); + [[maybe_unused]] const uint64_t outputByteCount = aznumeric_cast(lodVertexCount) * aznumeric_cast(outputElementSize); const uint64_t outputByteOffset = aznumeric_cast(outputBufferOffsetsInBytes[static_cast(outputStream)]); // The byte count from input and output buffers doesn't have to match necessarily. diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.h b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.h index b3e1a8a989..a74cc46e65 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.h +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.h @@ -141,8 +141,14 @@ namespace AZ AZ::Data::Instance GetModel() const override; void SetSortKey(RHI::DrawItemSortKey sortKey) override; RHI::DrawItemSortKey GetSortKey() const override; + void SetLodType(RPI::Cullable::LodType lodType) override; + RPI::Cullable::LodType GetLodType() const override; void SetLodOverride(RPI::Cullable::LodOverride lodOverride) override; RPI::Cullable::LodOverride GetLodOverride() const override; + void SetMinimumScreenCoverage(float minimumScreenCoverage) override; + float GetMinimumScreenCoverage() const override; + void SetQualityDecayRate(float qualityDecayRate) override; + float GetQualityDecayRate() const override; void SetVisibility(bool visible) override; bool GetVisibility() const override; // GetWorldBounds/GetLocalBounds already overridden by BoundsRequestBus::Handler diff --git a/Gems/AtomLyIntegration/ImguiAtom/preview.png b/Gems/AtomLyIntegration/ImguiAtom/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/AtomLyIntegration/ImguiAtom/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_PyCharm.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_PyCharm.bat index 296245d171..67f2c3d81e 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_PyCharm.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_PyCharm.bat @@ -34,7 +34,7 @@ CALL %~dp0\Env_Python.bat CALL %~dp0\Env_Qt.bat :: Wing and other IDEs probably prefer access directly to the python.exe -set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev1-windows\python +set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev2-windows\python echo DCCSI_PY_IDE = %DCCSI_PY_IDE% :: ide and debugger plug diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Python.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Python.bat index 7492811a1d..196d7b09bb 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Python.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Python.bat @@ -67,7 +67,7 @@ echo DCCSI_PY_BASE = %DCCSI_PY_BASE% set DCCSI_PY_DEFAULT=%DCCSI_PY_BASE% :: Wing and other IDEs probably prefer access directly to the python.exe -set DCCSI_PY_IDE=%DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev1-windows\python +set DCCSI_PY_IDE=%DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev2-windows\python echo DCCSI_PY_IDE = %DCCSI_PY_IDE% set DCCSI_PY_IDE_PACKAGES=%DCCSI_PY_IDE%\Lib\site-packages diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_WingIDE.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_WingIDE.bat index 2532acce1f..56209ca5aa 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_WingIDE.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_WingIDE.bat @@ -28,7 +28,7 @@ CALL %~dp0\Env_Python.bat CALL %~dp0\Env_Qt.bat :: Wing and other IDEs probably prefer access directly to the python.exe -set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev1-windows\python +set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev2-windows\python echo DCCSI_PY_IDE = %DCCSI_PY_IDE% :: ide and debugger plug diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_MayaPy_PyCharmPro.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_MayaPy_PyCharmPro.bat index bbccbba304..d98b8d81e7 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_MayaPy_PyCharmPro.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_MayaPy_PyCharmPro.bat @@ -63,7 +63,7 @@ set DCCSI_PYTHON_INSTALL=%LY_DEV%\Python echo DCCSI_PYTHON_INSTALL = %DCCSI_PYTHON_INSTALL% :: Wing and other IDEs probably prefer access directly to the python.exe -set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev1-windows\python +set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev2-windows\python echo DCCSI_PY_IDE = %DCCSI_PY_IDE% :: ide and debugger plug diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_VScode.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_VScode.bat index 46b32f4fb0..120584ed6a 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_VScode.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_VScode.bat @@ -68,7 +68,7 @@ set DCCSI_PYTHON_INSTALL=%LY_DEV%\Python echo DCCSI_PYTHON_INSTALL = %DCCSI_PYTHON_INSTALL% :: Wing and other IDEs probably prefer access directly to the python.exe -set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev1-windows\python +set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev2-windows\python echo DCCSI_PY_IDE = %DCCSI_PY_IDE% :: ide and debugger plug diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_WingIDE-7-1.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_WingIDE-7-1.bat index aa3ca76a72..c933670bab 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_WingIDE-7-1.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_WingIDE-7-1.bat @@ -62,7 +62,7 @@ set DCCSI_PYTHON_INSTALL=%LY_DEV%\Python echo DCCSI_PYTHON_INSTALL = %DCCSI_PYTHON_INSTALL% :: Wing and other IDEs probably prefer access directly to the python.exe -set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev1-windows\python +set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev2-windows\python echo DCCSI_PY_IDE = %DCCSI_PY_IDE% :: ide and debugger plug diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_mayapy_WingIDE-7-1.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_mayapy_WingIDE-7-1.bat index f223d68ebb..631250d06b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_mayapy_WingIDE-7-1.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_mayapy_WingIDE-7-1.bat @@ -62,7 +62,7 @@ set DCCSI_PYTHON_INSTALL=%LY_DEV%\Python echo DCCSI_PYTHON_INSTALL = %DCCSI_PYTHON_INSTALL% :: Wing and other IDEs probably prefer access directly to the python.exe -set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev1-windows\python +set DCCSI_PY_IDE = %DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev2-windows\python echo DCCSI_PY_IDE = %DCCSI_PY_IDE% :: ide and debugger plug diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Setuo_copy_oiio.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Setuo_copy_oiio.bat index 1a43e624c9..590e634d54 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Setuo_copy_oiio.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Setuo_copy_oiio.bat @@ -18,7 +18,7 @@ set LY_DEV=..\..\..\..\..\.. :: shared location for default O3DE python location set DCCSI_PYTHON_INSTALL=%LY_DEV%\Python -set PY_SITE=%DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev1-windows\python\Lib\site-packages +set PY_SITE=%DCCSI_PYTHON_INSTALL%\runtime\python-3.7.10-rev2-windows\python\Lib\site-packages set PACKAGE_LOC=C:\Depot\3rdParty\packages\openimageio-2.1.16.0-rev1-windows\OpenImageIO\2.1.16.0\win_x64\bin diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/preview.png b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/preview.png deleted file mode 100644 index b48e4907fc..0000000000 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1bda4365dc85f8abbcb2b08e942ad03e3d7d9dabe555e079185789a2e1b282bf -size 23321 diff --git a/Gems/AtomLyIntegration/gem.json b/Gems/AtomLyIntegration/gem.json index 28faf364db..5af133c8e8 100644 --- a/Gems/AtomLyIntegration/gem.json +++ b/Gems/AtomLyIntegration/gem.json @@ -7,7 +7,6 @@ "summary": "The Atom O3DE Integration Gem provides components, libraries, and functionality to support and integrate Atom Renderer in Open 3D Engine.", "canonical_tags": ["Gem"], "user_tags": ["Rendering", "Core", "Utility"], - "icon_path": "preview.png", "requirements": "", "documentation_url": "https://o3de.org/docs/user-guide/gems/reference/rendering/atom/atom-ly-integration/" } diff --git a/Gems/AtomTressFX/gem.json b/Gems/AtomTressFX/gem.json index 5f2e25b8a9..f6ff2b41d5 100644 --- a/Gems/AtomTressFX/gem.json +++ b/Gems/AtomTressFX/gem.json @@ -7,7 +7,6 @@ "summary": "The Atom TressFX Gem provides realistic hair and fur simulation and rendering in Atom and Open 3D Engine with AMD TressFX.", "canonical_tags": ["Gem"], "user_tags": ["Rendering", "Physics", "Animation"], - "icon_path": "preview.png", "requirements": "", "documentation_url": "https://o3de.org/docs/user-guide/gems/reference/rendering/amd/atom-tressfx/" } diff --git a/Gems/AtomTressFX/preview.png b/Gems/AtomTressFX/preview.png deleted file mode 100644 index 2f1ed47754..0000000000 --- a/Gems/AtomTressFX/preview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6204c6730e5675791765ca194e9b1cbec282208e280507de830afc2805e5fa -size 41127 diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/FileIOHandler_wwise.cpp b/Gems/AudioEngineWwise/Code/Source/Engine/FileIOHandler_wwise.cpp index bfb1254e52..07113e09d3 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/FileIOHandler_wwise.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Engine/FileIOHandler_wwise.cpp @@ -12,6 +12,7 @@ #include #include #include +#include #include #include diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlsLoader.cpp b/Gems/AudioSystem/Code/Source/Editor/AudioControlsLoader.cpp index 30889e33f0..45f044be32 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlsLoader.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlsLoader.cpp @@ -31,7 +31,6 @@ namespace AudioControls namespace LoaderStrings { static constexpr const char* LevelsSubFolder = "levels"; - static constexpr const char* PathAttribute = "path"; } // namespace LoaderStrings diff --git a/Gems/AudioSystem/Code/Source/Engine/ATL.cpp b/Gems/AudioSystem/Code/Source/Engine/ATL.cpp index ff56300b85..8fbb8fffc0 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATL.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/ATL.cpp @@ -13,6 +13,7 @@ #include #endif // !AUDIO_RELEASE +#include #include #include @@ -21,7 +22,8 @@ #include #include -#include +#include +#include #include namespace Audio @@ -1155,7 +1157,6 @@ namespace Audio EAudioRequestStatus eResult = eARS_FAILURE; const TAudioObjectID nATLObjectID = pAudioObject->GetID(); - const TAudioControlID nATLTriggerID = pTrigger->GetID(); const TObjectTriggerImplStates& rTriggerImplStates = pAudioObject->GetTriggerImpls(); for (auto const triggerImpl : pTrigger->m_cImplPtrs) @@ -1357,7 +1358,6 @@ namespace Audio { EAudioRequestStatus eResult = eARS_FAILURE; - const TAudioObjectID nATLObjectID = pAudioObject->GetID(); const TAudioControlID nATLTriggerID = pTrigger->GetID(); TObjectEventSet rEvents = pAudioObject->GetActiveEvents(); diff --git a/Gems/AudioSystem/Code/Source/Engine/ATLAudioObject.cpp b/Gems/AudioSystem/Code/Source/Engine/ATLAudioObject.cpp index 980757ffca..c8548efa04 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATLAudioObject.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/ATLAudioObject.cpp @@ -1042,7 +1042,8 @@ namespace Audio auxGeom.SetRenderFlags(newRenderFlags); const bool drawRays = CVars::s_debugDrawOptions.AreAllFlagsActive(DebugDraw::Options::DrawRays); - const bool drawLabels = CVars::s_debugDrawOptions.AreAllFlagsActive(DebugDraw::Options::RayLabels); + // ToDo: Update to work with Atom? LYN-3677 + //const bool drawLabels = CVars::s_debugDrawOptions.AreAllFlagsActive(DebugDraw::Options::RayLabels); size_t numRays = m_obstOccType == eAOOCT_SINGLE_RAY ? 1 : s_maxRaysPerObject; for (size_t rayIndex = 0; rayIndex < numRays; ++rayIndex) diff --git a/Gems/AudioSystem/Code/Source/Engine/ATLComponents.cpp b/Gems/AudioSystem/Code/Source/Engine/ATLComponents.cpp index 91340ca9bb..996a2a80b6 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATLComponents.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/ATLComponents.cpp @@ -284,10 +284,9 @@ namespace Audio /////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////// - CAudioObjectManager::CAudioObjectManager(CAudioEventManager& refAudioEventManager) + CAudioObjectManager::CAudioObjectManager([[maybe_unused]] CAudioEventManager& refAudioEventManager) : m_cObjectPool(Audio::CVars::s_AudioObjectPoolSize, AudioObjectIDFactory::s_minValidAudioObjectID) , m_fTimeSinceLastVelocityUpdateMS(0.0f) - , m_refAudioEventManager(refAudioEventManager) #if !defined(AUDIO_RELEASE) , m_pDebugNameStore(nullptr) #endif // !AUDIO_RELEASE @@ -1777,7 +1776,6 @@ namespace Audio static float const fItemPlayingColor[4] = { 0.3f, 0.6f, 0.3f, 0.9f }; static float const fItemLoadingColor[4] = { 0.9f, 0.2f, 0.2f, 0.9f }; static float const fItemOtherColor[4] = { 0.8f, 0.8f, 0.8f, 0.9f }; - static float const fNoImplColor[4] = { 1.0f, 0.6f, 0.6f, 0.9f }; rAuxGeom.Draw2dLabel(fPosX, fPosY, 1.6f, fHeaderColor, false, "Audio Events [%zu]", m_cActiveAudioEvents.size()); fPosX += 20.0f; diff --git a/Gems/AudioSystem/Code/Source/Engine/ATLComponents.h b/Gems/AudioSystem/Code/Source/Engine/ATLComponents.h index 17a1b65afe..efdee4fd2f 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATLComponents.h +++ b/Gems/AudioSystem/Code/Source/Engine/ATLComponents.h @@ -160,8 +160,6 @@ namespace Audio CInstanceManager m_cObjectPool; float m_fTimeSinceLastVelocityUpdateMS; - CAudioEventManager& m_refAudioEventManager; - AudioRaycastManager m_raycastManager; }; diff --git a/Gems/AudioSystem/Code/Source/Engine/AudioSystem.cpp b/Gems/AudioSystem/Code/Source/Engine/AudioSystem.cpp index af1dfedfaa..5f3603c956 100644 --- a/Gems/AudioSystem/Code/Source/Engine/AudioSystem.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/AudioSystem.cpp @@ -17,7 +17,6 @@ #include #include - namespace Audio { extern CAudioLogger g_audioLogger; @@ -293,7 +292,7 @@ namespace Audio PushRequestBlocking(request); m_audioSystemThread.Deactivate(); - const bool bSuccess = m_oATL.ShutDown(); + m_oATL.ShutDown(); m_bSystemInitialized = false; } diff --git a/Gems/AudioSystem/Code/Source/Engine/AudioSystem.h b/Gems/AudioSystem/Code/Source/Engine/AudioSystem.h index da3b8053b5..1d8f8fb286 100644 --- a/Gems/AudioSystem/Code/Source/Engine/AudioSystem.h +++ b/Gems/AudioSystem/Code/Source/Engine/AudioSystem.h @@ -13,6 +13,7 @@ #include #include +#include #include #include @@ -22,6 +23,8 @@ #define PROVIDE_GETNAME_SUPPORT +AZ_DECLARE_BUDGET(Audio); + namespace Audio { // Forward declarations. diff --git a/Gems/AudioSystem/Code/Source/Engine/FileCacheManager.cpp b/Gems/AudioSystem/Code/Source/Engine/FileCacheManager.cpp index 791c86eba8..b106c4f9d2 100644 --- a/Gems/AudioSystem/Code/Source/Engine/FileCacheManager.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/FileCacheManager.cpp @@ -841,7 +841,7 @@ namespace Audio streamer->SetRequestCompleteCallback( audioFileEntry->m_asyncStreamRequest, - [this](AZ::IO::FileRequestHandle request) + [](AZ::IO::FileRequestHandle request) { AZ_PROFILE_FUNCTION(Audio); AudioFileCacheManagerNotficationBus::QueueBroadcast( diff --git a/Gems/BarrierInput/Code/Source/BarrierInputKeyboard.cpp b/Gems/BarrierInput/Code/Source/BarrierInputKeyboard.cpp index 5e486df680..93c485a790 100644 --- a/Gems/BarrierInput/Code/Source/BarrierInputKeyboard.cpp +++ b/Gems/BarrierInput/Code/Source/BarrierInputKeyboard.cpp @@ -147,7 +147,7 @@ namespace BarrierInput { inputChannelId = InputChannelIdByScanCodeTable[scanCode]; } - else if (0 <= (scanCode - 0x100) && scanCode < InputChannelIdByScanCodeWithExtendedPrefixTable.size()) + else if (0x100 <= scanCode && scanCode < InputChannelIdByScanCodeWithExtendedPrefixTable.size()) { inputChannelId = InputChannelIdByScanCodeWithExtendedPrefixTable[scanCode - 0x100]; } diff --git a/Gems/Blast/Code/Platform/Windows/PAL_windows.cmake b/Gems/Blast/Code/Platform/Windows/PAL_windows.cmake index bf05e5c7eb..cab1497a7c 100644 --- a/Gems/Blast/Code/Platform/Windows/PAL_windows.cmake +++ b/Gems/Blast/Code/Platform/Windows/PAL_windows.cmake @@ -7,3 +7,5 @@ # set(PAL_TRAIT_BLAST_SUPPORTED TRUE) + +ly_associate_package(PACKAGE_NAME Blast-v1.1.7_rc2-9-geb169fe-rev2-windows TARGETS Blast PACKAGE_HASH ac3ab4c778194f9e8413b95b87116032a336f58d55f489e941c8932609f892ff) \ No newline at end of file diff --git a/Gems/Blast/Code/Source/Actor/BlastActorFactory.cpp b/Gems/Blast/Code/Source/Actor/BlastActorFactory.cpp index 704661c716..989ea1221a 100644 --- a/Gems/Blast/Code/Source/Actor/BlastActorFactory.cpp +++ b/Gems/Blast/Code/Source/Actor/BlastActorFactory.cpp @@ -43,8 +43,6 @@ namespace Blast const Nv::Blast::ExtPxChunk* pxChunks = blastFamily.GetPxAsset().getChunks(); const NvBlastChunk* chunks = tkAsset->getChunks(); const uint32_t pxChunkCount = blastFamily.GetPxAsset().getChunkCount(); - const uint32_t chunkCount = tkAsset->getChunkCount(); - const uint32_t nodeCount = tkActor.getGraphNodeCount(); AZ_Assert(pxChunks, "ExtPxAsset asset has a null chunk array."); AZ_Assert(chunks, "TkActor's asset has a null chunk array."); @@ -183,8 +181,6 @@ namespace Blast bool BlastActorFactoryImpl::VisibleChunksHasStaticActor( const BlastFamily& blastFamily, const AZStd::vector& chunkIndices) const { - const uint32_t chunkCount = blastFamily.GetPxAsset().getChunkCount(); - const Nv::Blast::ExtPxChunk* pxChunks = blastFamily.GetPxAsset().getChunks(); if (!pxChunks) { diff --git a/Gems/Blast/Code/Source/Asset/BlastAsset.cpp b/Gems/Blast/Code/Source/Asset/BlastAsset.cpp index bfd27448c0..9046ae62d5 100644 --- a/Gems/Blast/Code/Source/Asset/BlastAsset.cpp +++ b/Gems/Blast/Code/Source/Asset/BlastAsset.cpp @@ -7,6 +7,7 @@ */ #include +#include #include #include #include @@ -27,6 +28,17 @@ namespace Blast { } + void BlastAsset::Reflect(AZ::ReflectContext* context) + { + if (auto* serializeContext = azrtti_cast(context)) + { + serializeContext->Class() + ->Version(0) + ; + } + } + + bool BlastAsset::LoadFromBuffer(void* buffer, size_t bytesSize) { Nv::Blast::ExtSerialization* serialization = nullptr; diff --git a/Gems/Blast/Code/Source/Asset/BlastAsset.h b/Gems/Blast/Code/Source/Asset/BlastAsset.h index 8c7fd1db4b..22754aa535 100644 --- a/Gems/Blast/Code/Source/Asset/BlastAsset.h +++ b/Gems/Blast/Code/Source/Asset/BlastAsset.h @@ -25,6 +25,8 @@ namespace Blast BlastAsset(Nv::Blast::ExtPxAsset* pxAsset = nullptr, NvBlastExtDamageAccelerator* damageAccelerator = nullptr); + static void Reflect(AZ::ReflectContext* context); + bool LoadFromBuffer(void* buffer, size_t bytesSize); const Nv::Blast::ExtPxAsset* GetPxAsset() const diff --git a/Gems/Blast/Code/Source/Components/BlastFamilyComponent.cpp b/Gems/Blast/Code/Source/Components/BlastFamilyComponent.cpp index ec6e7bbbb9..c2fb81e86a 100644 --- a/Gems/Blast/Code/Source/Components/BlastFamilyComponent.cpp +++ b/Gems/Blast/Code/Source/Components/BlastFamilyComponent.cpp @@ -48,6 +48,7 @@ namespace Blast BlastFamilyComponentNotificationBusHandler::Reflect(context); BlastActorConfiguration::Reflect(context); BlastActorData::Reflect(context); + BlastAsset::Reflect(context); if (AZ::SerializeContext* serialize = azrtti_cast(context)) { @@ -187,7 +188,7 @@ namespace Blast void BlastFamilyComponent::Activate() { - AZ_PROFILE_FUNCTION(System); + AZ_PROFILE_FUNCTION(Physics); AZ_Assert(m_blastAsset.GetId().IsValid(), "BlastFamilyComponent created with invalid blast asset."); @@ -199,7 +200,7 @@ namespace Blast void BlastFamilyComponent::Deactivate() { - AZ_PROFILE_FUNCTION(System); + AZ_PROFILE_FUNCTION(Physics); // cleanup collision handlers for (auto& itr : m_collisionHandlers) diff --git a/Gems/Blast/Code/Source/Components/BlastFamilyComponent.h b/Gems/Blast/Code/Source/Components/BlastFamilyComponent.h index c27a738b05..99957d0fce 100644 --- a/Gems/Blast/Code/Source/Components/BlastFamilyComponent.h +++ b/Gems/Blast/Code/Source/Components/BlastFamilyComponent.h @@ -107,7 +107,7 @@ namespace Blast BlastMeshData* m_meshDataComponent = nullptr; // Configurations - const AZ::Data::Asset m_blastAsset; + AZ::Data::Asset m_blastAsset; const BlastMaterialId m_materialId{}; Physics::MaterialId m_physicsMaterialId; const BlastActorConfiguration m_actorConfiguration{}; diff --git a/Gems/Blast/Code/Source/Components/BlastSystemComponent.cpp b/Gems/Blast/Code/Source/Components/BlastSystemComponent.cpp index 711d3a0087..851cb4460b 100644 --- a/Gems/Blast/Code/Source/Components/BlastSystemComponent.cpp +++ b/Gems/Blast/Code/Source/Components/BlastSystemComponent.cpp @@ -112,7 +112,7 @@ namespace Blast void BlastSystemComponent::Activate() { - AZ_PROFILE_FUNCTION(System); + AZ_PROFILE_FUNCTION(Physics); auto blastAssetHandler = aznew BlastAssetHandler(); blastAssetHandler->Register(); m_assetHandlers.emplace_back(blastAssetHandler); @@ -141,7 +141,7 @@ namespace Blast void BlastSystemComponent::Deactivate() { - AZ_PROFILE_FUNCTION(System); + AZ_PROFILE_FUNCTION(Physics); CrySystemEventBus::Handler::BusDisconnect(); AZ::TickBus::Handler::BusDisconnect(); BlastSystemRequestBus::Handler::BusDisconnect(); @@ -433,7 +433,7 @@ namespace Blast void BlastSystemComponent::AZBlastProfilerCallback::zoneEnd() { - AZ_PROFILE_END(); + AZ_PROFILE_END(Physics); } static void CmdToggleBlastDebugVisualization(IConsoleCmdArgs* args) diff --git a/Gems/Blast/Code/Source/Family/DamageManager.h b/Gems/Blast/Code/Source/Family/DamageManager.h index af7bae096b..4bffd8c5e0 100644 --- a/Gems/Blast/Code/Source/Family/DamageManager.h +++ b/Gems/Blast/Code/Source/Family/DamageManager.h @@ -9,6 +9,8 @@ #include #include +#include +#include namespace Blast { diff --git a/Gems/Camera/Code/CMakeLists.txt b/Gems/Camera/Code/CMakeLists.txt index deb123824f..3fbeec0908 100644 --- a/Gems/Camera/Code/CMakeLists.txt +++ b/Gems/Camera/Code/CMakeLists.txt @@ -66,22 +66,7 @@ if (PAL_TRAIT_BUILD_HOST_TOOLS) # tools and builders use the above module. ly_create_alias(NAME Camera.Tools NAMESPACE Gem TARGETS Gem::Camera.Editor) ly_create_alias(NAME Camera.Builders NAMESPACE Gem TARGETS Gem::Camera.Editor) - - # The DefaultPrefab contains an EditorCameraComponent which makes this gem required - ly_enable_gems(GEMS Camera VARIANTS Tools TARGETS Editor) - ly_enable_gems(GEMS Camera VARIANTS Builders TARGETS AssetBuilder AssetProcessor AssetProcessorBatch) endif() - -# Added dependencies to the Client and Server Launchers -get_property(LY_PROJECTS_TARGET_NAME GLOBAL PROPERTY LY_PROJECTS_TARGET_NAME) -foreach(project_name IN LISTS LY_PROJECTS_TARGET_NAME) - # Add gem as a dependency of the Clients Launcher - ly_enable_gems(PROJECT_NAME ${project_name} GEMS Camera VARIANTS Clients - TARGETS ${project_name}.GameLauncher) - # Add gem as a dependency of the Servers Launcher - if(PAL_TRAIT_BUILD_SERVER_SUPPORTED) - ly_enable_gems(PROJECT_NAME ${project_name} GEMS Camera VARIANTS Servers - TARGETS ${project_name}.ServerLauncher) - endif() -endforeach() +# The DefaultPrefab contains an EditorCameraComponent which makes this gem required +ly_enable_gems(GEMS Camera) diff --git a/Gems/Camera/Code/Source/ViewportCameraSelectorWindow_Internals.h b/Gems/Camera/Code/Source/ViewportCameraSelectorWindow_Internals.h index 2c3d114908..b07ae7789f 100644 --- a/Gems/Camera/Code/Source/ViewportCameraSelectorWindow_Internals.h +++ b/Gems/Camera/Code/Source/ViewportCameraSelectorWindow_Internals.h @@ -58,7 +58,6 @@ namespace Camera private: AZStd::vector m_cameraItems; AZ::EntityId m_sequenceCameraEntityId; - bool m_sequenceCameraSelected; }; struct ViewportCameraSelectorWindow diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorCommands.cpp index da5366f6cf..85bb726822 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorCommands.cpp @@ -145,7 +145,6 @@ namespace CommandSystem AZStd::vector nodeNames; AzFramework::StringFunc::Tokenize(attachmentNodes.c_str(), nodeNames, ";", false, true); - const size_t numNodeNames = nodeNames.size(); // Remove the given nodes from the attachment node list by unsetting the flag. if (AzFramework::StringFunc::Equal(nodeAction.c_str(), "remove")) @@ -224,7 +223,6 @@ namespace CommandSystem AZStd::vector nodeNames; AzFramework::StringFunc::Tokenize(nodesExcludedFromBounds.c_str(), nodeNames, ";", false, true); - const size_t numNodeNames = nodeNames.size(); // Remove the selected nodes from the bounding volume calculations. if (AzFramework::StringFunc::Equal(nodeAction.c_str(), "remove")) diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.cpp index b6a3870073..8396ad7b83 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.cpp @@ -497,13 +497,13 @@ namespace CommandSystem } // verify port ranges - if (m_sourcePort >= static_cast(sourceNode->GetOutputPorts().size()) || m_sourcePort < 0) + if (m_sourcePort >= static_cast(sourceNode->GetOutputPorts().size())) { outResult = AZStd::string::format("The output port number is not valid for the given node. Node '%s' only has %zu output ports.", sourceNode->GetName(), sourceNode->GetOutputPorts().size()); return false; } - if (m_targetPort >= static_cast(targetNode->GetInputPorts().size()) || m_targetPort < 0) + if (m_targetPort >= static_cast(targetNode->GetInputPorts().size())) { outResult = AZStd::string::format("The input port number is not valid for the given node. Node '%s' only has %zu input ports.", targetNode->GetName(), targetNode->GetInputPorts().size()); return false; diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionSetCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionSetCommands.cpp index c3d9a88471..34fee273c2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionSetCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionSetCommands.cpp @@ -997,7 +997,7 @@ namespace CommandSystem else { AZStd::string result; - const bool success = GetCommandManager()->ExecuteCommand(AZStd::string::format("Unselect -motionName %s", selectedMotion->GetName()), result); + [[maybe_unused]] const bool success = GetCommandManager()->ExecuteCommand(AZStd::string::format("Unselect -motionName %s", selectedMotion->GetName()), result); AZ_Error("EMotionFX", success, result.c_str()); } } diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MotionEventExport.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MotionEventExport.cpp index e1bde1ff79..d2a69bca67 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MotionEventExport.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MotionEventExport.cpp @@ -11,8 +11,8 @@ #include #include #include +#include #include -#include #include "Exporter.h" #include #include @@ -55,10 +55,10 @@ namespace ExporterLib } AZStd::string serializedMotionEventTable; - auto writeToStringOutcome = AzFramework::FileFunc::WriteJsonToString(jsonDocument, serializedMotionEventTable); + auto writeToStringOutcome = AZ::JsonSerializationUtils::WriteJsonString(jsonDocument, serializedMotionEventTable); if (!writeToStringOutcome.IsSuccess()) { - AZ_Error("EMotionFX", false, "WriteJsonToString failed: %s", writeToStringOutcome.GetError().c_str()); + AZ_Error("EMotionFX", false, "WriteJsonString failed: %s", writeToStringOutcome.GetError().c_str()); return; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp index efd3d84aa0..4cba50138a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp @@ -163,7 +163,6 @@ namespace EMotionFX } // Default to the first mesh group until we get a way to choose it via the scene settings (ATOM-13590). - AZStd::optional meshAssetId = AZStd::nullopt; AZ_Error("EMotionFX", atomModelAssets.size() <= 1, "Ambigious mesh for actor asset. More than one mesh group found. Defaulting to the first one."); if (!atomModelAssets.empty()) { diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionDataBuilder.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionDataBuilder.cpp index 130aa41931..422baa5125 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionDataBuilder.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionDataBuilder.cpp @@ -406,7 +406,7 @@ namespace EMotionFX for (; iterator != sceneGraphDownardsIteratorView.end(); ++iterator) { SceneContainers::SceneGraph::HierarchyStorageConstIterator hierarchy = iterator.GetHierarchyIterator(); - SceneContainers::SceneGraph::NodeIndex currentIndex = graph.ConvertToNodeIndex(hierarchy); + [[maybe_unused]] SceneContainers::SceneGraph::NodeIndex currentIndex = graph.ConvertToNodeIndex(hierarchy); AZ_Assert(currentIndex.IsValid(), "While iterating through the Scene Graph an unexpected invalid entry was found."); AZStd::shared_ptr currentItem = iterator->second; if (hierarchy->IsEndPoint()) diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RenderUtil.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RenderUtil.cpp index 183d56a07f..6fd28ee72f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RenderUtil.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RenderUtil.cpp @@ -519,7 +519,6 @@ namespace MCommon EMotionFX::SubMesh* subMesh = mesh->GetSubMesh(subMeshIndex); const uint32 numVertices = subMesh->GetNumVertices(); const uint32 startVertex = subMesh->GetStartVertex(); - const uint32 startIndex = subMesh->GetStartIndex(); for (uint32 j = 0; j < numVertices; ++j) { @@ -1332,7 +1331,6 @@ namespace MCommon // render mesh based axis void RenderUtil::RenderAxis(float size, const AZ::Vector3& position, const AZ::Vector3& right, const AZ::Vector3& up, const AZ::Vector3& forward) { - const float zeroSphereRadius = size * 0.075f; static const MCore::RGBAColor xAxisColor(1.0f, 0.0f, 0.0f); static const MCore::RGBAColor yAxisColor(0.0f, 1.0f, 0.0f); static const MCore::RGBAColor zAxisColor(0.0f, 0.0f, 1.0f); diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Attachment.h b/Gems/EMotionFX/Code/EMotionFX/Source/Attachment.h index 67a62ac7f6..d2cd9cdc6f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Attachment.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Attachment.h @@ -63,7 +63,7 @@ namespace EMotionFX * This can be implemented for say skin attachments, which copy over joint transforms from the actor instance they are attached to. * @param outPose The pose that will be modified. */ - virtual void UpdateJointTransforms(Pose& outPose) { AZ_UNUSED(outPose) }; + virtual void UpdateJointTransforms(Pose& outPose) { AZ_UNUSED(outPose); }; /** * Get the actor instance object of the attachment. diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace2DNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace2DNode.cpp index b34a860b71..03a7552410 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace2DNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace2DNode.cpp @@ -24,19 +24,6 @@ namespace { - // Dimensions of the 2D grid into which we place the triangles for quick lookup - const uint32_t kGridCellCountX = 10; - const uint32_t kGridCellCountY = 10; - - AZ_FORCE_INLINE void GetBoundsOfTriangle(const AZ::Vector2 triVerts[3], - float& minX, float& minY, float& maxX, float& maxY) - { - minX = AZStd::min(triVerts[0].GetX(), AZStd::min(triVerts[1].GetX(), triVerts[2].GetX())); - minY = AZStd::min(triVerts[0].GetY(), AZStd::min(triVerts[1].GetY(), triVerts[2].GetY())); - maxX = AZStd::max(triVerts[0].GetX(), AZStd::max(triVerts[1].GetX(), triVerts[2].GetX())); - maxY = AZStd::max(triVerts[0].GetY(), AZStd::max(triVerts[1].GetY(), triVerts[2].GetY())); - } - AZ_FORCE_INLINE bool IsDegenerateTriangle(const AZ::Vector2& p0, const AZ::Vector2& p1, const AZ::Vector2& p2) { const AZ::Vector2 v01(p1 - p0); diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ChunkProcessors.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ChunkProcessors.cpp index 7d800f8928..10f9c0dc60 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ChunkProcessors.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ChunkProcessors.cpp @@ -16,7 +16,7 @@ #include #include #include -#include +#include #include #include @@ -1081,11 +1081,11 @@ namespace EMotionFX file->Read(&buffer[0], fileEventTable.m_size); AZStd::string_view bufferStringView(&buffer[0], buffer.size()); - auto readJsonOutcome = AzFramework::FileFunc::ReadJsonFromString(bufferStringView); + auto readJsonOutcome = AZ::JsonSerializationUtils::ReadJsonString(bufferStringView); AZStd::string errorMsg; if (!readJsonOutcome.IsSuccess()) { - AZ_Error("EMotionFX", false, "Loading motion event table failed due to ReadJsonFromString. %s", readJsonOutcome.TakeError().c_str()); + AZ_Error("EMotionFX", false, "Loading motion event table failed due to ReadJsonString. %s", readJsonOutcome.TakeError().c_str()); return false; } rapidjson::Document document = readJsonOutcome.TakeValue(); @@ -1585,9 +1585,6 @@ namespace EMotionFX // get the expression name const char* morphTargetName = SharedHelperData::ReadString(file, importParams.m_sharedData, endianType); - // get the level of detail of the expression part - const uint32 morphTargetLOD = morphTargetChunk.m_lod; - if (GetLogging()) { MCore::LogDetailedInfo(" + Morph Target:"); @@ -1732,9 +1729,6 @@ namespace EMotionFX // get the expression name const char* morphTargetName = SharedHelperData::ReadString(file, importParams.m_sharedData, endianType); - // get the level of detail of the expression part - const uint32 morphTargetLOD = morphTargetChunk.m_lod; - if (GetLogging()) { MCore::LogDetailedInfo(" + Morph Target:"); diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MorphTargetStandard.h b/Gems/EMotionFX/Code/EMotionFX/Source/MorphTargetStandard.h index c4187fd638..8737da7139 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MorphTargetStandard.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MorphTargetStandard.h @@ -98,15 +98,14 @@ namespace EMotionFX * Please keep in mind that the rotation is stored as non-delta value, while the position and scale are * stored as delta values. */ - struct EMFX_API MCORE_ALIGN_PRE(16) Transformation + struct EMFX_API alignas(16) Transformation { AZ::Quaternion m_rotation; /**< The rotation as absolute value. So not a delta value, but a target (absolute) rotation. */ AZ::Quaternion m_scaleRotation; /**< The scale rotation, as absolute value. */ AZ::Vector3 m_position; /**< The position as a delta, so the difference between the original and target position. */ AZ::Vector3 m_scale; /**< The scale as a delta, so the difference between the original and target scale. */ size_t m_nodeIndex; /**< The node number to apply this on. */ - } - MCORE_ALIGN_POST(16); + }; /** * The constructor. diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Pose.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Pose.cpp index 99f1474c89..e2bff677ad 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Pose.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Pose.cpp @@ -728,7 +728,7 @@ namespace EMotionFX m_localSpaceTransforms[nodeNr].Zero(); } - const size_t numMorphs = m_morphWeights.size(); + [[maybe_unused]] const size_t numMorphs = m_morphWeights.size(); MCORE_ASSERT(m_actorInstance->GetMorphSetupInstance()->GetNumMorphTargets() == numMorphs); for (float& morphWeight : m_morphWeights) { @@ -743,7 +743,7 @@ namespace EMotionFX m_localSpaceTransforms[i].Zero(); } - const size_t numMorphs = m_morphWeights.size(); + [[maybe_unused]] const size_t numMorphs = m_morphWeights.size(); MCORE_ASSERT(m_actor->GetMorphSetup(0)->GetNumMorphTargets() == numMorphs); for (float& morphWeight : m_morphWeights) { diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/RagdollInstance.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/RagdollInstance.cpp index c7da3430b1..426f6da473 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/RagdollInstance.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/RagdollInstance.cpp @@ -433,7 +433,6 @@ namespace EMotionFX } const EMotionFX::TransformData* transformData = m_actorInstance->GetTransformData(); - const size_t transformCount = transformData->GetNumTransforms(); const EMotionFX::Skeleton* skeleton = m_actorInstance->GetActor()->GetSkeleton(); const size_t jointCount = skeleton->GetNumNodes(); @@ -498,9 +497,7 @@ namespace EMotionFX const AZ::Vector3 currentPos = currentNodeState.m_position; const AZ::Vector3 currentParentPos = currentParentJointPose.m_position; - const Physics::RagdollNodeState& targetJointPose = ragdollTargetPose[ragdollJointIndex.GetValue()]; const Physics::RagdollNodeState& targetParentJointPose = ragdollTargetPose[ragdollParentJointIndex.GetValue()]; - const float strength = targetJointPose.m_strength; if (targetParentJointPose.m_simulationType == Physics::SimulationType::Dynamic) { diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SpringSolver.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/SpringSolver.cpp index 83cbc41a36..adf0a0cc2b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SpringSolver.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SpringSolver.cpp @@ -310,7 +310,6 @@ namespace EMotionFX SetParentParticle(parentParticleIndex); // Register the joint, which creates a particle internally. - const bool isPinned = (parentParticleIndex != InvalidIndex) ? joint->IsPinned() : true; SpringSolver::Particle* particle = AddJoint(joint); if (!particle) { diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Transform.h b/Gems/EMotionFX/Code/EMotionFX/Source/Transform.h index 764de9e8f9..cb1489410d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Transform.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Transform.h @@ -20,7 +20,7 @@ namespace EMotionFX enum EMotionExtractionFlags : uint8; - class EMFX_API MCORE_ALIGN_PRE(16) Transform + class EMFX_API alignas(16) Transform { MCORE_MEMORYOBJECTCATEGORY(Transform, MCore::MCORE_SIMD_ALIGNMENT, EMFX_MEMCATEGORY_TRANSFORM); @@ -142,6 +142,5 @@ namespace EMotionFX #ifndef EMFX_SCALE_DISABLED AZ::Vector3 m_scale; /**< The scale. */ #endif - } - MCORE_ALIGN_POST(16); + }; } // namespace EMotionFX diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.cpp index 5a89729e49..129d005f80 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.cpp @@ -9,7 +9,6 @@ #include "FileManager.h" #include #include -#include #include #include #include @@ -36,6 +35,8 @@ #include #include +#include + #include #include #include @@ -412,14 +413,12 @@ namespace EMStudio { GetManager()->SetAvoidRendering(true); - QFileDialog::Options options; QString selectedFilter; - const AZStd::string filename = QFileDialog::getSaveFileName(parent, // parent + const AZStd::string filename = AzQtComponents::FileDialog::GetSaveFileName(parent, // parent "Save", // caption GetLastUsedFolder(m_lastActorFolder), // directory "EMotion FX Actor Files (*.actor)", - &selectedFilter, - options).toUtf8().data(); + &selectedFilter).toUtf8().data(); GetManager()->SetAvoidRendering(false); @@ -471,14 +470,12 @@ namespace EMStudio { GetManager()->SetAvoidRendering(true); - QFileDialog::Options options; QString selectedFilter; - AZStd::string filename = QFileDialog::getSaveFileName(parent, // parent + AZStd::string filename = AzQtComponents::FileDialog::GetSaveFileName(parent, // parent "Save", // caption GetLastUsedFolder(m_lastWorkspaceFolder), // directory "EMotionFX Editor Workspace Files (*.emfxworkspace)", - &selectedFilter, - options).toUtf8().data(); + &selectedFilter).toUtf8().data(); GetManager()->SetAvoidRendering(false); @@ -553,14 +550,12 @@ namespace EMStudio { GetManager()->SetAvoidRendering(true); - QFileDialog::Options options; QString selectedFilter; - AZStd::string filename = QFileDialog::getSaveFileName(parent, // parent + AZStd::string filename = AzQtComponents::FileDialog::GetSaveFileName(parent, // parent "Save", // caption GetLastUsedFolder(m_lastMotionSetFolder), // directory "EMotion FX Motion Set Files (*.motionset)", - &selectedFilter, - options).toUtf8().data(); + &selectedFilter).toUtf8().data(); GetManager()->SetAvoidRendering(false); @@ -632,14 +627,12 @@ namespace EMStudio { GetManager()->SetAvoidRendering(true); - QFileDialog::Options options; QString selectedFilter; - AZStd::string filename = QFileDialog::getSaveFileName(parent, // parent + AZStd::string filename = AzQtComponents::FileDialog::GetSaveFileName(parent, // parent "Save", // caption GetLastUsedFolder(m_lastAnimGraphFolder), // directory "EMotion FX Anim Graph Files (*.animgraph);;All Files (*)", - &selectedFilter, - options).toUtf8().data(); + &selectedFilter).toUtf8().data(); GetManager()->SetAvoidRendering(false); @@ -675,14 +668,12 @@ namespace EMStudio { GetManager()->SetAvoidRendering(true); - QFileDialog::Options options; QString selectedFilter; - const AZStd::string filename = QFileDialog::getSaveFileName(parent, // parent + const AZStd::string filename = AzQtComponents::FileDialog::GetSaveFileName(parent, // parent "Save", // caption GetLastUsedFolder(m_lastNodeMapFolder), // directory "Node Map Files (*.nodeMap);;All Files (*)", - &selectedFilter, - options).toUtf8().data(); + &selectedFilter).toUtf8().data(); GetManager()->SetAvoidRendering(false); @@ -737,14 +728,12 @@ namespace EMStudio GetManager()->SetAvoidRendering(true); - QFileDialog::Options options; QString selectedFilter; - QString filename = QFileDialog::getSaveFileName(parent, // parent + QString filename = AzQtComponents::FileDialog::GetSaveFileName(parent, // parent "Save", // caption dir.c_str(), // directory "EMotion FX Blend Config Files (*.cfg);;All Files (*)", - &selectedFilter, - options); + &selectedFilter); GetManager()->SetAvoidRendering(false); diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.h index 98d7de188d..9e2b4001b5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.h @@ -112,8 +112,6 @@ namespace EMStudio QString m_lastWorkspaceFolder; QString m_lastNodeMapFolder; - bool m_skipFileChangedCheck; - void UpdateLastUsedFolder(const char* filename, QString& outLastFolder) const; QString GetLastUsedFolder(const QString& lastUsedFolder) const; }; diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindow.h index 734dd7840d..318838b2b1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindow.h @@ -203,9 +203,6 @@ namespace EMStudio QAction* m_saveAllAction; QAction* m_mergeActorAction; QAction* m_saveSelectedActorsAction; -#ifdef EMFX_DEVELOPMENT_BUILD - QAction* m_saveSelectedActorAsAttachmentsAction; -#endif // application mode QComboBox* m_applicationMode; diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter.h index c7e82b13e9..144fac4eed 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter.h @@ -27,6 +27,6 @@ namespace EMStudio virtual bool nativeEventFilter(const QByteArray& /*eventType*/, void* message, long* /*result*/) Q_DECL_OVERRIDE; private: - MainWindow* m_mainWindow; + [[maybe_unused]] MainWindow* m_mainWindow; }; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeHierarchyWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeHierarchyWidget.cpp index 63934a380c..89e5363bbb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeHierarchyWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeHierarchyWidget.cpp @@ -454,7 +454,7 @@ namespace EMStudio // get the actor instance id to which this item belongs to m_actorInstanceIdString = FromQtString(item->whatsThis(0)); int actorInstanceID; - const bool validConversion = AzFramework::StringFunc::LooksLikeInt(m_actorInstanceIdString.c_str(), &actorInstanceID); + [[maybe_unused]] const bool validConversion = AzFramework::StringFunc::LooksLikeInt(m_actorInstanceIdString.c_str(), &actorInstanceID); MCORE_ASSERT(validConversion); // remove the node from the selected nodes @@ -497,7 +497,7 @@ namespace EMStudio FromQtString(item->whatsThis(0), &m_actorInstanceIdString); int actorInstanceID; - const bool validConversion = AzFramework::StringFunc::LooksLikeInt(m_actorInstanceIdString.c_str(), &actorInstanceID); + [[maybe_unused]] const bool validConversion = AzFramework::StringFunc::LooksLikeInt(m_actorInstanceIdString.c_str(), &actorInstanceID); MCORE_ASSERT(validConversion); EMotionFX::ActorInstance* actorInstance = EMotionFX::GetActorManager().FindActorInstanceByID(actorInstanceID); diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModel.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModel.h index 7ff61123cb..46ab632ce2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModel.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModel.h @@ -313,7 +313,7 @@ namespace EMStudio bool Execute(MCore::Command * command, const MCore::CommandLine& commandLine) override; \ bool Undo(MCore::Command* command, const MCore::CommandLine& commandLine) override; \ private: \ - AnimGraphModel& m_animGraphModel; \ + [[maybe_unused]] AnimGraphModel& m_animGraphModel; \ }; \ friend class CLASSNAME; diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace1DNodeWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace1DNodeWidget.cpp index bd8b94f361..e4990d658b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace1DNodeWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace1DNodeWidget.cpp @@ -364,8 +364,6 @@ namespace EMStudio const int rectLeft = m_drawRect.left(); const int rectRight = m_drawRect.right(); - const int rectBottom = m_drawRect.bottom(); - const int xValueTop = rectBottom + 4; const int xAxisLabelTop = m_drawCenterY + 15; const char numFormat = 'g'; const int numPrecision = 4; diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraph.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraph.cpp index 596f3d7e30..759adbcb1c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraph.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraph.cpp @@ -2077,7 +2077,7 @@ namespace EMStudio if (visualStateConnection->GetModelIndex() == modelIndex) { // Transfer ownership from the previous visual node to where we relinked the transition to. - const bool connectionRemoveResult = visualNode->RemoveConnection(transition, false); + [[maybe_unused]] const bool connectionRemoveResult = visualNode->RemoveConnection(transition, false); AZ_Error("EMotionFX", connectionRemoveResult, "Removing connection failed."); targetGraphNode->AddConnection(visualStateConnection); diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.cpp index c93d358c07..3f3c7c1c7d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.cpp @@ -651,7 +651,6 @@ namespace EMStudio // enable/disable recording/playback mode void ParameterWindow::OnRecorderStateChanged() { - const bool readOnly = (EMotionFX::GetRecorder().GetIsInPlayMode()); // disable when in playback mode, enable otherwise if (m_animGraph) { // update parameter values diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.h index 66cb62f0a5..f3b1702751 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.h @@ -205,7 +205,6 @@ namespace EMStudio ParameterWindowTreeWidget* m_treeWidget; AzQtComponents::FilteredSearchWidget* m_searchWidget; QVBoxLayout* m_verticalLayout; - QScrollArea* m_scrollArea; AZStd::string m_nameString; struct ParameterWidget { diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.h index d59d0d1b93..edab3a9580 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.h @@ -85,7 +85,6 @@ namespace EMStudio CommandAdjustActorCallback* m_adjustActorCallback; CommandRemoveActorInstanceCallback* m_removeActorInstanceCallback; - QWidget* m_noSelectionWidget; MysticQt::DialogStack* m_dialogStack; AttachmentsWindow* m_attachmentsWindow; AttachmentsHierarchyWindow* m_attachmentsHierarchyWindow; diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h index d2295fcd9c..26503bfbc6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h @@ -91,6 +91,5 @@ namespace EMStudio QVBoxLayout* m_staticTextLayout; QWidget* m_staticTextWidget; MysticQt::DialogStack* m_dialogStack; - QLabel* m_infoText; }; } // namespace EMStudio diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.cpp index 316b2017cc..8d77bd5e04 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.cpp @@ -32,7 +32,6 @@ namespace EMStudio , m_dialogStack(nullptr) , m_motionEventPresetsWidget(nullptr) , m_motionEventWidget(nullptr) - , m_motionTable(nullptr) , m_timeViewPlugin(nullptr) , m_trackHeaderWidget(nullptr) , m_trackDataWidget(nullptr) diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.h index 7cd34e4bca..f2c0f43b9b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.h @@ -87,7 +87,6 @@ namespace EMStudio MotionEventPresetsWidget* m_motionEventPresetsWidget; MotionEventWidget* m_motionEventWidget; - QTableWidget* m_motionTable; TimeViewPlugin* m_timeViewPlugin; TrackHeaderWidget* m_trackHeaderWidget; TrackDataWidget* m_trackDataWidget; diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.cpp index 6d16ea19b1..393e26790b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.cpp @@ -819,7 +819,6 @@ namespace EMStudio } const QList selectedItems = m_tableWidget->selectedItems(); - const size_t numSelectedItems = selectedItems.count(); // Get the row indices from the selected items. AZStd::vector rowIndices; @@ -1079,7 +1078,6 @@ namespace EMStudio // Get the row indices from the selected items. AZStd::vector rowIndices; GetRowIndices(selectedItems, rowIndices); - const size_t numRowIndices = rowIndices.size(); // remove motion from motion window, too? bool removeMotion = false; diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.h index 8c1fe04662..a1cab4e89f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.h @@ -187,7 +187,6 @@ namespace EMStudio size_t CalcNumMotionEntriesUsingMotionExcluding(const AZStd::string& motionFilename, EMotionFX::MotionSet* excludedMotionSet); private: - QVBoxLayout* m_vLayout = nullptr; MotionSetTableWidget* m_tableWidget = nullptr; QAction* m_addAction = nullptr; diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionExtractionWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionExtractionWindow.h index 5e314df323..2f0bf63685 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionExtractionWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionExtractionWindow.h @@ -68,7 +68,6 @@ namespace EMStudio // general MotionWindowPlugin* m_motionWindowPlugin; - QCheckBox* m_autoMode; // flags widget QWidget* m_flagsWidget; diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionRetargetingWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionRetargetingWindow.h index a846982eca..3090a1f8bd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionRetargetingWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionRetargetingWindow.h @@ -49,8 +49,6 @@ namespace EMStudio private: MotionWindowPlugin* m_motionWindowPlugin; QCheckBox* m_motionRetargetingButton; - EMotionFX::ActorInstance* m_selectedActorInstance; - EMotionFX::Actor* m_actor; CommandSystem::SelectionList m_selectionList; }; } // namespace EMStudio diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupWidget.h index c96b972085..e1530ebd3b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupWidget.h @@ -58,7 +58,6 @@ namespace EMStudio NodeSelectionWindow* m_nodeSelectionWindow; CommandSystem::SelectionList m_nodeSelectionList; EMotionFX::NodeGroup* m_nodeGroup; - uint16 m_nodeGroupIndex; CommandSystem::CommandAdjustNodeGroup::NodeAction m_nodeAction; // widgets diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewToolBar.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewToolBar.cpp index d95b606b3f..14a27eec49 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewToolBar.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewToolBar.cpp @@ -441,7 +441,7 @@ namespace EMStudio const bool playbackOptionsVisible = m_playbackOptions->UpdateInterface(mode, /*showRightSeparator=*/false); const bool playbackControlsVisible = m_playbackControls->UpdateInterface(mode, /*showRightSeparator=*/playbackOptionsVisible); - const bool recorderGroupVisible = m_recorderGroup->UpdateInterface(mode, /*showRightSeparator=*/playbackControlsVisible); + m_recorderGroup->UpdateInterface(mode, /*showRightSeparator=*/playbackControlsVisible); } void TimeViewToolBar::OnDetailedNodes() diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataHeaderWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataHeaderWidget.cpp index 0d1f55c172..9524d6f57d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataHeaderWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataHeaderWidget.cpp @@ -284,8 +284,6 @@ namespace EMStudio { m_plugin->SetRedrawFlag(); - const bool ctrlPressed = event->modifiers() & Qt::ControlModifier; - const bool shiftPressed = event->modifiers() & Qt::ShiftModifier; const bool altPressed = event->modifiers() & Qt::AltModifier; // store the last clicked position @@ -370,8 +368,6 @@ namespace EMStudio m_plugin->GetTimeInfoWidget()->SetIsOverwriteMode(false); } - const bool ctrlPressed = event->modifiers() & Qt::ControlModifier; - if (event->button() == Qt::RightButton) { m_mouseRightClicked = false; diff --git a/Gems/EMotionFX/Code/MCore/Source/Config.h b/Gems/EMotionFX/Code/MCore/Source/Config.h index c753a45ec3..8367e0d4e2 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Config.h +++ b/Gems/EMotionFX/Code/MCore/Source/Config.h @@ -217,22 +217,6 @@ typedef uintptr_t uintPointer; #define NULL 0 #endif -// alignment macro -#if (MCORE_COMPILER == MCORE_COMPILER_MSVC || MCORE_COMPILER == MCORE_COMPILER_INTELC) - #define MCORE_ALIGN(NUMBYTES, X) __declspec(align(NUMBYTES)) X - #define MCORE_ALIGN_PRE(NUMBYTES) __declspec(align(NUMBYTES)) - #define MCORE_ALIGN_POST(NUMBYTES) -#elif (MCORE_COMPILER == MCORE_COMPILER_GCC) - #define MCORE_ALIGN(NUMBYTES, X) X __attribute__((aligned(NUMBYTES))) - #define MCORE_ALIGN_PRE(NUMBYTES) - #define MCORE_ALIGN_POST(NUMBYTES) __attribute__((aligned(NUMBYTES))) -#else - #define MCORE_ALIGN(NUMBYTES, X) X - #define MCORE_ALIGN_PRE(NUMBYTES) - #define MCORE_ALIGN_POST(NUMBYTES) -#endif - - // detect and enable OpenMP support #if defined(_OPENMP) #define MCORE_OPENMP_ENABLED diff --git a/Gems/EMotionFX/Code/MCore/Source/Matrix4.h b/Gems/EMotionFX/Code/MCore/Source/Matrix4.h index c136aa824e..5d6da79bf5 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Matrix4.h +++ b/Gems/EMotionFX/Code/MCore/Source/Matrix4.h @@ -69,8 +69,7 @@ namespace MCore * [Tx Ty Tz 1] // translation
* */ - MCORE_ALIGN_PRE(16) - class MCORE_API Matrix + class MCORE_API alignas(16) Matrix { public: /** @@ -910,7 +909,7 @@ namespace MCore float m_m16[16]; // 16 floats as 1D array float m44[4][4]; // as 2D array }; - } MCORE_ALIGN_POST(16); + }; // include inline code diff --git a/Gems/EMotionFX/Code/MCore/Source/StringConversions.cpp b/Gems/EMotionFX/Code/MCore/Source/StringConversions.cpp index c6b84a9e04..88a22db245 100644 --- a/Gems/EMotionFX/Code/MCore/Source/StringConversions.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/StringConversions.cpp @@ -30,7 +30,7 @@ namespace MCore // find the last letter index from the right size_t lastIndex = AZStd::string::npos; const size_t numCharacters = prefixString.size(); - for (size_t i = numCharacters - 1; i >= 0; --i) + for (int i = static_cast(numCharacters) - 1; i >= 0; --i) { if (!AZStd::is_digit(prefixString[i])) { diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointInspectorPlugin.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointInspectorPlugin.cpp index 861100b073..e1a58f1f44 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointInspectorPlugin.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointInspectorPlugin.cpp @@ -71,7 +71,7 @@ namespace EMotionFX } else { - m_dock->setWidget(CreateErrorContentWidget("Cloth collider editor depends on the NVIDIA Cloth gem. Please enable it in the project configurator.")); + m_dock->setWidget(CreateErrorContentWidget("Cloth collider editor depends on the NVIDIA Cloth gem. Please enable it in the Project Manager.")); } return true; diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointInspectorPlugin.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointInspectorPlugin.cpp index c69fdd9393..b7cf3ea13d 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointInspectorPlugin.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointInspectorPlugin.cpp @@ -57,7 +57,7 @@ namespace EMotionFX } else { - m_dock->setWidget(CreateErrorContentWidget("Hit detection collider editor depends on the PhysX gem. Please enable it in the project configurator.")); + m_dock->setWidget(CreateErrorContentWidget("Hit detection collider editor depends on the PhysX gem. Please enable it in the Project Manager.")); } return true; diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeInspectorPlugin.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeInspectorPlugin.cpp index 5324950c82..171100592d 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeInspectorPlugin.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeInspectorPlugin.cpp @@ -86,7 +86,7 @@ namespace EMotionFX } else { - m_dock->setWidget(CreateErrorContentWidget("Ragdoll editor depends on the PhysX gem. Please enable it in the project configurator.")); + m_dock->setWidget(CreateErrorContentWidget("Ragdoll editor depends on the PhysX gem. Please enable it in the Project Manager.")); } return true; diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedJointWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedJointWidget.cpp index 4dd8b94303..ce9eb1cbae 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedJointWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedJointWidget.cpp @@ -389,7 +389,7 @@ namespace EMotionFX { QLabel* noColliders = new QLabel( "To adjust the properties of the Simulated Object Colliders, " - "enable the PhysX gem via the Project Configurator"); + "enable the PhysX gem via the Project Manager"); colliderWidgetLayout->addWidget(noColliders); } @@ -441,8 +441,8 @@ namespace EMotionFX void SimulatedJointWidget::UpdateDetailsView(const QItemSelection& selected, const QItemSelection& deselected) { - AZ_UNUSED(selected) - AZ_UNUSED(deselected) + AZ_UNUSED(selected); + AZ_UNUSED(deselected); const SimulatedObjectModel* model = m_plugin->GetSimulatedObjectModel(); const QItemSelectionModel* selectionModel = model->GetSelectionModel(); diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectWidget.cpp index a2b23e3268..48104707de 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectWidget.cpp @@ -495,7 +495,6 @@ namespace EMotionFX if (renderSimulatedJoints && !selectedJointIndices.empty()) { // Render the joint radius. - const MCore::RGBAColor defaultColor = renderPlugin->GetRenderOptions()->GetSelectedSimulatedObjectColliderColor(); const size_t actorInstanceCount = GetActorManager().GetNumActorInstances(); for (size_t actorInstanceIndex = 0; actorInstanceIndex < actorInstanceCount; ++actorInstanceIndex) { diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTransitionHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTransitionHandler.cpp index 4bc4da1030..ce114a498e 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTransitionHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTransitionHandler.cpp @@ -206,7 +206,7 @@ namespace EMotionFX QPushButton* removeTransitionButton = new QPushButton(); EMStudio::EMStudioManager::MakeTransparentButton(removeTransitionButton, "Images/Icons/Trash.svg", "Remove transition from list"); - connect(removeTransitionButton, &QPushButton::clicked, this, [this, removeTransitionButton, id]() + connect(removeTransitionButton, &QPushButton::clicked, this, [this, id]() { m_transitionIds.erase(AZStd::remove(m_transitionIds.begin(), m_transitionIds.end(), id), m_transitionIds.end()); Reinit(); diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.cpp index 485b56c077..ed4edda891 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.cpp @@ -683,7 +683,6 @@ namespace EMotionFX const size_t lodLevel = m_actorInstance->GetLODLevel(); Actor* actor = m_actorAsset.Get()->GetActor(); const size_t numNodes = actor->GetNumNodes(); - const size_t numLods = actor->GetNumLODLevels(); for (size_t nodeIndex = 0; nodeIndex < numNodes; ++nodeIndex) { Mesh* mesh = actor->GetMesh(lodLevel, nodeIndex); diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphCopyPasteTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphCopyPasteTests.cpp index 4feb8cd86a..dee1bd5ca2 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphCopyPasteTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphCopyPasteTests.cpp @@ -184,7 +184,6 @@ namespace EMotionFX void VerifyAfterOperation() { const AZStd::vector conditionTypeIds = GetConditionTypeIds(); - const size_t numConditionTypes = conditionTypeIds.size(); const bool cutMode = GetParam(); if (cutMode) { @@ -419,7 +418,6 @@ namespace EMotionFX AZStd::string result; MCore::CommandGroup commandGroup; const bool cutMode = GetParam(); - const AnimGraphConnectionId oldtransitionId = m_transition->GetId(); // Add transition actions to the node. AnimGraphParameterAction* action1 = aznew AnimGraphParameterAction(); diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphEventTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphEventTests.cpp index 1b88092917..bd3fa10b24 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphEventTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphEventTests.cpp @@ -88,7 +88,7 @@ namespace EMotionFX void SimulateTest(float simulationTime, float expectedFps, float fpsVariance) { Simulate(simulationTime, expectedFps, fpsVariance, - /*preCallback*/[this](AnimGraphInstance*) + /*preCallback*/[](AnimGraphInstance*) { }, /*postCallback*/[this](AnimGraphInstance*) @@ -102,8 +102,8 @@ namespace EMotionFX EXPECT_EQ(this->m_eventHandler->m_numTransitionsStarted, numStates); EXPECT_EQ(this->m_eventHandler->m_numTransitionsEnded, numStates); }, - /*preUpdateCallback*/[this](AnimGraphInstance*, float, float, int) {}, - /*postUpdateCallback*/[this](AnimGraphInstance*, float, float, int) {}); + /*preUpdateCallback*/[](AnimGraphInstance*, float, float, int) {}, + /*postUpdateCallback*/[](AnimGraphInstance*, float, float, int) {}); const int numStates = GetParam().m_numStates; if (numStates > 1) diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphRefCountTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphRefCountTests.cpp index 8b51f5b814..54f945d95f 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphRefCountTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphRefCountTests.cpp @@ -32,12 +32,10 @@ namespace EMotionFX this->m_animGraphInstance->SetAutoReleaseRefDatas(false); this->m_animGraphInstance->SetAutoReleasePoses(false); }, - /*postCallback*/[this](AnimGraphInstance*){}, - /*preUpdateCallback*/[this](AnimGraphInstance*, float, float, int){}, + /*postCallback*/[](AnimGraphInstance*){}, + /*preUpdateCallback*/[](AnimGraphInstance*, float, float, int){}, /*postUpdateCallback*/[this](AnimGraphInstance*, float, float, int) { - const uint32 threadIndex = this->m_actorInstance->GetThreadIndex(); - // Check if data and pose ref counts are back to 0 for all nodes. const size_t numNodes = this->m_animGraph->GetNumNodes(); for (size_t i = 0; i < numNodes; ++i) diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineInterruptionTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineInterruptionTests.cpp index 39fc296d9f..b0f070d203 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineInterruptionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineInterruptionTests.cpp @@ -137,9 +137,9 @@ namespace EMotionFX m_eventHandler->m_numStatesEnded -= 1; Simulate(20.0f/*simulationTime*/, 60.0f/*expectedFps*/, 0.0f/*fpsVariance*/, - /*preCallback*/[this]([[maybe_unused]] AnimGraphInstance* animGraphInstance){}, - /*postCallback*/[this]([[maybe_unused]] AnimGraphInstance* animGraphInstance){}, - /*preUpdateCallback*/[this](AnimGraphInstance*, float, float, int) {}, + /*preCallback*/[]([[maybe_unused]] AnimGraphInstance* animGraphInstance){}, + /*postCallback*/[]([[maybe_unused]] AnimGraphInstance* animGraphInstance){}, + /*preUpdateCallback*/[](AnimGraphInstance*, float, float, int) {}, /*postUpdateCallback*/[this](AnimGraphInstance* animGraphInstance, [[maybe_unused]] float time, [[maybe_unused]] float timeDelta, int frame) { const std::vector& activeObjectsAtFrame = GetParam().m_activeObjectsAtFrame; @@ -457,14 +457,11 @@ namespace EMotionFX float prevBlendWeight = 0.0f; Simulate(2.0f /*simulationTime*/, 10.0f /*expectedFps*/, 0.0f /*fpsVariance*/, - /*preCallback*/[this]([[maybe_unused]] AnimGraphInstance* animGraphInstance) {}, - /*postCallback*/[this]([[maybe_unused]] AnimGraphInstance* animGraphInstance) {}, - /*preUpdateCallback*/[this](AnimGraphInstance*, float, float, int) {}, + /*preCallback*/[]([[maybe_unused]] AnimGraphInstance* animGraphInstance) {}, + /*postCallback*/[]([[maybe_unused]] AnimGraphInstance* animGraphInstance) {}, + /*preUpdateCallback*/[](AnimGraphInstance*, float, float, int) {}, /*postUpdateCallback*/[this, &prevGotInterrupted, &prevBlendWeight](AnimGraphInstance* animGraphInstance, [[maybe_unused]] float time, [[maybe_unused]] float timeDelta, [[maybe_unused]] int frame) { - const AnimGraphStateMachine_InterruptionPropertiesTestData param = GetParam(); - - const AnimGraphStateTransition::EInterruptionMode interruptionMode = m_transitionLeft->GetInterruptionMode(); const float maxInterruptionBlendWeight = m_transitionLeft->GetMaxInterruptionBlendWeight(); const bool gotInterrupted = m_transitionLeft->GotInterrupted(animGraphInstance); const bool gotInterruptedThisFrame = gotInterrupted && !prevGotInterrupted; diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineSyncTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineSyncTests.cpp index 37996abbd8..d95140a23b 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineSyncTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineSyncTests.cpp @@ -100,13 +100,11 @@ namespace EMotionFX TEST_P(AnimGraphStateMachineSyncFixture, PlayspeedTests) { - const AnimGraphStateMachineSyncParam param = GetParam(); - bool transitioned = false; Simulate(2.0f/*simulationTime*/, 10.0f/*expectedFps*/, 0.0f/*fpsVariance*/, - /*preCallback*/[this]([[maybe_unused]] AnimGraphInstance* animGraphInstance){}, - /*postCallback*/[this]([[maybe_unused]] AnimGraphInstance* animGraphInstance){}, - /*preUpdateCallback*/[this](AnimGraphInstance*, float, float, int){}, + /*preCallback*/[]([[maybe_unused]] AnimGraphInstance* animGraphInstance){}, + /*postCallback*/[]([[maybe_unused]] AnimGraphInstance* animGraphInstance){}, + /*preUpdateCallback*/[](AnimGraphInstance*, float, float, int){}, /*postUpdateCallback*/[this, &transitioned](AnimGraphInstance* animGraphInstance, [[maybe_unused]] float time, [[maybe_unused]] float timeDelta, [[maybe_unused]] int frame) { if (m_rootStateMachine->IsTransitionActive(m_transition, animGraphInstance)) diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeBlendNNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeBlendNNodeTests.cpp index 1f5fb9a512..53744aeb6b 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeBlendNNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeBlendNNodeTests.cpp @@ -332,9 +332,7 @@ namespace EMotionFX EXPECT_NEAR(durationA, durationN, epsilon); // Node B gets synced to the blend N node which got synced to node A. - const float timeRatio = durationA / durationB; const float timeRatio2 = durationB / durationA; - const float factorA = AZ::Lerp(1.0f, timeRatio, blendWeight); const float factorB = AZ::Lerp(timeRatio2, 1.0f, blendWeight); const float primaryMotionPlaySpeed = m_motionNodes[motionIndexA]->GetDefaultPlaySpeed(); const float interpolatedSpeed = AZ::Lerp(playSpeedA, primaryMotionPlaySpeed, blendWeight); diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeRagdollNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeRagdollNodeTests.cpp index 85504675db..a01d333e95 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeRagdollNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeRagdollNodeTests.cpp @@ -115,7 +115,6 @@ namespace EMotionFX { AddRagdollNodeConfig(ragdollNodes, jointName.c_str()); } - const size_t numRagdollNodes = ragdollNodes.size(); // Create the ragdoll instance and check if the ragdoll root node is set correctly. TestRagdoll testRagdoll; diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeTwoLinkIKNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeTwoLinkIKNodeTests.cpp index eab445ddfe..5d57c74d10 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeTwoLinkIKNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeTwoLinkIKNodeTests.cpp @@ -165,8 +165,6 @@ namespace EMotionFX if (weight) { const AZ::Vector3 expectedPosition(goalX, goalY, goalZ); - const AZ::Vector3 dist = (expectedPosition - testJointNewPos).GetAbs(); - const float length = dist.GetLength(); EXPECT_TRUE(PosePositionCompareClose(testJointNewPos, expectedPosition, 0.0001f)) << "Joint position should be similar to expected position."; } diff --git a/Gems/EMotionFX/Code/Tests/Integration/ActorComponentRagdollTests.cpp b/Gems/EMotionFX/Code/Tests/Integration/ActorComponentRagdollTests.cpp index 809dd67573..4c9eb2c32c 100644 --- a/Gems/EMotionFX/Code/Tests/Integration/ActorComponentRagdollTests.cpp +++ b/Gems/EMotionFX/Code/Tests/Integration/ActorComponentRagdollTests.cpp @@ -61,7 +61,6 @@ namespace EMotionFX TEST_F(EntityComponentFixture, ActorComponent_ActivateRagdoll) { AZ::EntityId entityId(740216387); - AZ::Crc32 worldId(174592); AzPhysics::SceneEvents::OnSceneSimulationFinishEvent sceneFinishSimEvent; diff --git a/Gems/EMotionFX/Code/Tests/MotionExtractionBusTests.cpp b/Gems/EMotionFX/Code/Tests/MotionExtractionBusTests.cpp index d8b8a2a430..170f4d2d75 100644 --- a/Gems/EMotionFX/Code/Tests/MotionExtractionBusTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MotionExtractionBusTests.cpp @@ -132,8 +132,6 @@ namespace EMotionFX EXPECT_TRUE(hasCustomMotionExtractionController) << "MotionExtractionBus is not found."; - const float deltaTimeInv = (timeDelta > 0.0f) ? (1.0f / timeDelta) : 0.0f; - AZ::Transform currentTransform = AZ::Transform::CreateIdentity(); AZ::TransformBus::EventResult(currentTransform, m_entityId, &AZ::TransformBus::Events::GetWorldTM); diff --git a/Gems/EMotionFX/Code/Tests/Prefabs/LeftArmSkeleton.h b/Gems/EMotionFX/Code/Tests/Prefabs/LeftArmSkeleton.h index 2af9da3306..b9ddac817b 100644 --- a/Gems/EMotionFX/Code/Tests/Prefabs/LeftArmSkeleton.h +++ b/Gems/EMotionFX/Code/Tests/Prefabs/LeftArmSkeleton.h @@ -80,7 +80,7 @@ namespace EMotionFX .WillRepeatedly(Return(nodeName)); AZ::u32 i = 0; - std::initializer_list {(([&]() { + [[maybe_unused]] std::initializer_list dummy = {(([&]() { EXPECT_CALL(*node, GetChildIndex(i)) .WillRepeatedly(Return(children)); ++i; diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransition.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransition.cpp index c4d4504335..db4ca21fe5 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransition.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransition.cpp @@ -73,7 +73,6 @@ namespace EMotionFX // Select the transition in the anim graph model. const QModelIndex& modelIndex = animGraphModel.FindFirstModelIndex(transition); - const EMStudio::AnimGraphModel::ModelItemType itemType = modelIndex.data(EMStudio::AnimGraphModel::ROLE_MODEL_ITEM_TYPE).value(); ASSERT_TRUE(modelIndex.isValid()) << "Anim graph transition has an invalid model index."; animGraphModel.GetSelectionModel().select(QItemSelection(modelIndex, modelIndex), QItemSelectionModel::Current | QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows); diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransitionCondition.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransitionCondition.cpp index 5dbe52c2c4..c07a2f9611 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransitionCondition.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransitionCondition.cpp @@ -76,7 +76,6 @@ namespace EMotionFX // Select the transition in the anim graph model. const QModelIndex& modelIndex = animGraphModel.FindFirstModelIndex(transition); - const EMStudio::AnimGraphModel::ModelItemType itemType = modelIndex.data(EMStudio::AnimGraphModel::ROLE_MODEL_ITEM_TYPE).value(); ASSERT_TRUE(modelIndex.isValid()) << "Anim graph transition has an invalid model index."; animGraphModel.GetSelectionModel().select(QItemSelection(modelIndex, modelIndex), QItemSelectionModel::Current | QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows); diff --git a/Gems/EMotionFX/Code/Tests/SimulatedObjectSetupTests.cpp b/Gems/EMotionFX/Code/Tests/SimulatedObjectSetupTests.cpp index f37f571982..2660931e07 100644 --- a/Gems/EMotionFX/Code/Tests/SimulatedObjectSetupTests.cpp +++ b/Gems/EMotionFX/Code/Tests/SimulatedObjectSetupTests.cpp @@ -406,7 +406,6 @@ namespace SimulatedObjectSetupTests const float newGravityFactor = 1.2f; const float newFriction = 0.3f; const bool newPinned = true; - const bool newStretchable = true; joint.SetConeAngleLimit(newConeAngleLimit); joint.SetMass(newMass); diff --git a/Gems/EMotionFX/Code/Tests/UI/LODSkinnedMeshTests.cpp b/Gems/EMotionFX/Code/Tests/UI/LODSkinnedMeshTests.cpp index 65bb056654..6e5e14e9fc 100644 --- a/Gems/EMotionFX/Code/Tests/UI/LODSkinnedMeshTests.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/LODSkinnedMeshTests.cpp @@ -32,7 +32,6 @@ #include #include -#include #include namespace EMotionFX @@ -73,7 +72,6 @@ namespace EMotionFX struct DataMembers { - testing::NiceMock m_renderer; testing::NiceMock m_system; }; diff --git a/Gems/EditorPythonBindings/Code/Source/PythonMarshalComponent.cpp b/Gems/EditorPythonBindings/Code/Source/PythonMarshalComponent.cpp index af21420b62..fd12635325 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonMarshalComponent.cpp +++ b/Gems/EditorPythonBindings/Code/Source/PythonMarshalComponent.cpp @@ -697,14 +697,12 @@ namespace EditorPythonBindings class TypeConverterDictionary final : public PythonMarshalComponent::TypeConverter { - AZ::GenericClassInfo* m_genericClassInfo = nullptr; const AZ::SerializeContext::ClassData* m_classData = nullptr; const AZ::TypeId m_typeId = {}; public: - TypeConverterDictionary(AZ::GenericClassInfo* genericClassInfo, const AZ::SerializeContext::ClassData* classData, const AZ::TypeId& typeId) - : m_genericClassInfo(genericClassInfo) - , m_classData(classData) + TypeConverterDictionary([[maybe_unused]] AZ::GenericClassInfo* genericClassInfo, const AZ::SerializeContext::ClassData* classData, const AZ::TypeId& typeId) + : m_classData(classData) , m_typeId(typeId) { } @@ -1376,7 +1374,6 @@ namespace EditorPythonBindings class TypeConverterPair final : public PythonMarshalComponent::TypeConverter { - AZ::GenericClassInfo* m_genericClassInfo = nullptr; const AZ::SerializeContext::ClassData* m_classData = nullptr; const AZ::TypeId m_typeId = {}; @@ -1403,9 +1400,8 @@ namespace EditorPythonBindings } public: - TypeConverterPair(AZ::GenericClassInfo* genericClassInfo, const AZ::SerializeContext::ClassData* classData, const AZ::TypeId& typeId) - : m_genericClassInfo(genericClassInfo) - , m_classData(classData) + TypeConverterPair([[maybe_unused]] AZ::GenericClassInfo* genericClassInfo, const AZ::SerializeContext::ClassData* classData, const AZ::TypeId& typeId) + : m_classData(classData) , m_typeId(typeId) { } diff --git a/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine/ExpressionTree.h b/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine/ExpressionTree.h index e9da3bbfba..e47e1e84c6 100644 --- a/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine/ExpressionTree.h +++ b/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine/ExpressionTree.h @@ -11,6 +11,11 @@ #include +namespace AZ +{ + class ExpressionTreeVariableDescriptorSerializer; +} + namespace ExpressionEvaluation { // Holds all of the tokeniszed information from parsing an expression string. @@ -20,8 +25,22 @@ namespace ExpressionEvaluation { // Friend class for reflection friend class ExpressionEvaluationSystemComponent; + friend class ExpressionTreeVariableDescriptorSerializer; public: + struct VariableDescriptor + { + AZ_TYPE_INFO(VariableDescriptor, "{5E1A0044-E0E7-46D3-8BC6-A22E226ADB83}"); + + VariableDescriptor() + { + m_supportedTypes.push_back(azrtti_typeid()); + } + + AZStd::vector< AZ::Uuid > m_supportedTypes; + ExpressionVariable m_value; + }; + AZ_RTTI(ExpressionTree, "{4CCF3DFD-2EA8-47CB-AF25-353BC034EF42}"); AZ_CLASS_ALLOCATOR(ExpressionTree, AZ::SystemAllocator, 0); @@ -147,18 +166,6 @@ namespace ExpressionEvaluation private: - struct VariableDescriptor - { - AZ_TYPE_INFO(VariableDescriptor, "{5E1A0044-E0E7-46D3-8BC6-A22E226ADB83}"); - - VariableDescriptor() - { - m_supportedTypes.push_back(azrtti_typeid()); - } - - AZStd::vector< AZ::Uuid > m_supportedTypes; - ExpressionVariable m_value; - }; AZStd::unordered_map< AZ::Crc32, VariableDescriptor > m_variables; diff --git a/Gems/ExpressionEvaluation/Code/Source/ElementInformationSerializer.inl b/Gems/ExpressionEvaluation/Code/Source/ElementInformationSerializer.inl new file mode 100644 index 0000000000..c2cd377039 --- /dev/null +++ b/Gems/ExpressionEvaluation/Code/Source/ElementInformationSerializer.inl @@ -0,0 +1,179 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include +#include +#include +#include + +namespace AZ +{ + class ElementInformationSerializer + : public BaseJsonSerializer + { + + public: + AZ_RTTI(ElementInformationSerializer, "{B33E6AA9-C700-4E3D-857C-55F362AFE57A}", BaseJsonSerializer); + AZ_CLASS_ALLOCATOR_DECL; + + private: + using ElementInformation = ExpressionEvaluation::ElementInformation; + + static constexpr AZStd::string_view EmptyAnyIdentifier = "Empty AZStd::any"; + + static bool IsEmptyAny(const rapidjson::Value& typeId) + { + if (typeId.IsString()) + { + AZStd::string_view typeName(typeId.GetString(), typeId.GetStringLength()); + return typeName == EmptyAnyIdentifier; + } + + return false; + } + + JsonSerializationResult::Result Load + ( void* outputValue + , [[maybe_unused]] const Uuid& outputValueTypeId + , const rapidjson::Value& inputValue + , JsonDeserializerContext& context) override + { + namespace JSR = JsonSerializationResult; + + AZ_Assert(outputValueTypeId == azrtti_typeid(), "ElementInformationSerializer Load against " + "output typeID that was not ElementInformation"); + AZ_Assert(outputValue, "ElementInformationSerializer Load against null output"); + + JsonSerializationResult::ResultCode result(JSR::Tasks::ReadField); + auto outputDatum = reinterpret_cast(outputValue); + result.Combine(ContinueLoadingFromJsonObjectField + ( &outputDatum->m_id + , azrtti_typeidm_id)>() + , inputValue + , "Id" + , context)); + + // any storage begin + { + AZ::Uuid typeId = AZ::Uuid::CreateNull(); + auto typeIdMember = inputValue.FindMember(JsonSerialization::TypeIdFieldIdentifier); + if (typeIdMember == inputValue.MemberEnd()) + { + return context.Report + ( JSR::Tasks::ReadField + , JSR::Outcomes::Missing + , AZStd::string::format("ElementInformationSerializer::Load failed to load the %s member" + , JsonSerialization::TypeIdFieldIdentifier)); + } + + if (!IsEmptyAny(typeIdMember->value)) + { + result.Combine(LoadTypeId(typeId, typeIdMember->value, context)); + if (typeId.IsNull()) + { + return context.Report(JSR::Tasks::ReadField, JSR::Outcomes::Catastrophic + , "ElementInformationSerializer::Load failed to load the AZ TypeId of the value"); + } + + AZStd::any storage = context.GetSerializeContext()->CreateAny(typeId); + if (storage.empty() || storage.type() != typeId) + { + return context.Report(result, "ElementInformationSerializer::Load failed to load a value matched the " + "reported AZ TypeId. The C++ declaration may have been deleted or changed."); + } + + result.Combine + ( ContinueLoadingFromJsonObjectField(AZStd::any_cast(&storage), typeId, inputValue, "Value", context)); + outputDatum->m_extraStore = storage; + } + } + // any storage end + + return context.Report(result, result.GetProcessing() != JSR::Processing::Halted + ? "ElementInformationSerializer Load finished loading ElementInformation" + : "ElementInformationSerializer Load failed to load ElementInformation"); + } + + JsonSerializationResult::Result Store + ( rapidjson::Value& outputValue + , const void* inputValue + , const void* defaultValue + , [[maybe_unused]] const Uuid& valueTypeId + , JsonSerializerContext& context) override + { + namespace JSR = JsonSerializationResult; + + AZ_Assert(valueTypeId == azrtti_typeid(), "ElementInformation Store against value typeID that " + "was not ElementInformation"); + AZ_Assert(inputValue, "ElementInformation Store against null inputValue pointer "); + + auto inputScriptDataPtr = reinterpret_cast(inputValue); + auto defaultScriptDataPtr = reinterpret_cast(defaultValue); + + if (defaultScriptDataPtr) + { + if (inputScriptDataPtr->m_id == defaultScriptDataPtr->m_id + && AZ::Helpers::CompareAnyValue(inputScriptDataPtr->m_extraStore, defaultScriptDataPtr->m_extraStore)) + { + return context.Report + ( JSR::Tasks::WriteValue, JSR::Outcomes::DefaultsUsed, "ElementInformation Store used defaults for " + "ElementInformation"); + } + } + + JSR::ResultCode result(JSR::Tasks::WriteValue); + outputValue.SetObject(); + + result.Combine(ContinueStoringToJsonObjectField + ( outputValue + , "Id" + , &inputScriptDataPtr->m_id + , defaultScriptDataPtr ? &defaultScriptDataPtr->m_id : nullptr + , azrtti_typeidm_id)>() + , context)); + + if (!inputScriptDataPtr->m_extraStore.empty()) + { + rapidjson::Value typeValue; + result.Combine(StoreTypeId(typeValue, inputScriptDataPtr->m_extraStore.type(), context)); + outputValue.AddMember + ( rapidjson::StringRef(JsonSerialization::TypeIdFieldIdentifier) + , AZStd::move(typeValue) + , context.GetJsonAllocator()); + + result.Combine(ContinueStoringToJsonObjectField + ( outputValue + , "Value" + , AZStd::any_cast(const_cast(&inputScriptDataPtr->m_extraStore)) + , defaultScriptDataPtr ? AZStd::any_cast(const_cast(&defaultScriptDataPtr->m_extraStore)) : nullptr + , inputScriptDataPtr->m_extraStore.type() + , context)); + + } + else + { + rapidjson::Value emptyAny; + emptyAny.SetString(EmptyAnyIdentifier.data(), aznumeric_caster(EmptyAnyIdentifier.size()), context.GetJsonAllocator()); + outputValue.AddMember + ( rapidjson::StringRef(JsonSerialization::TypeIdFieldIdentifier) + , AZStd::move(emptyAny) + , context.GetJsonAllocator()); + } + + return context.Report(result, result.GetProcessing() != JSR::Processing::Halted + ? "ElementInformation Store finished saving ElementInformation" + : "ElementInformation Store failed to save ElementInformation"); + } + }; + + AZ_CLASS_ALLOCATOR_IMPL(ElementInformationSerializer, SystemAllocator, 0); +} diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationSystemComponent.cpp b/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationSystemComponent.cpp index 295d42228d..1a72f30e7c 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationSystemComponent.cpp +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationSystemComponent.cpp @@ -6,16 +6,19 @@ * */ -#include - #include -#include #include #include - +#include +#include #include #include #include +#include +#include +#include + +AZ_DEFINE_BUDGET(ExpressionEvaluation); namespace ExpressionEvaluation { @@ -146,6 +149,12 @@ namespace ExpressionEvaluation ; } } + + if (AZ::JsonRegistrationContext* jsonContext = azrtti_cast(context)) + { + jsonContext->Serializer()->HandlesType(); + jsonContext->Serializer()->HandlesType(); + } } void ExpressionEvaluationSystemComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided) diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionPrimitivesSerializers.inl b/Gems/ExpressionEvaluation/Code/Source/ExpressionPrimitivesSerializers.inl new file mode 100644 index 0000000000..be9ddb4f20 --- /dev/null +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionPrimitivesSerializers.inl @@ -0,0 +1,148 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include +#include +#include +#include + +namespace AZ +{ + class ExpressionTreeVariableDescriptorSerializer + : public BaseJsonSerializer + { + + public: + AZ_RTTI(ExpressionTreeVariableDescriptorSerializer, "{5EFF37D6-BD54-45C6-9FC6-B1E0D3A8204C}", BaseJsonSerializer); + AZ_CLASS_ALLOCATOR_DECL; + + private: + using VariableDescriptor = ExpressionEvaluation::ExpressionTree::VariableDescriptor; + + JsonSerializationResult::Result Load + ( void* outputValue + , [[maybe_unused]] const Uuid& outputValueTypeId + , const rapidjson::Value& inputValue + , JsonDeserializerContext& context) override + { + namespace JSR = JsonSerializationResult; + + AZ_Assert(outputValueTypeId == azrtti_typeid(), "ExpressionTreeVariableDescriptorSerializer Load against " + "output typeID that was not VariableDescriptor"); + AZ_Assert(outputValue, "ExpressionTreeVariableDescriptorSerializer Load against null output"); + + JsonSerializationResult::ResultCode result(JSR::Tasks::ReadField); + auto outputDatum = reinterpret_cast(outputValue); + + result.Combine(ContinueLoadingFromJsonObjectField + ( &outputDatum->m_supportedTypes + , azrtti_typeidm_supportedTypes)>() + , inputValue + , "SupportedTypes" + , context)); + + // any storage begin + AZ::Uuid typeId = AZ::Uuid::CreateNull(); + auto typeIdMember = inputValue.FindMember(JsonSerialization::TypeIdFieldIdentifier); + if (typeIdMember == inputValue.MemberEnd()) + { + return context.Report + ( JSR::Tasks::ReadField + , JSR::Outcomes::Missing + , AZStd::string::format("ExpressionTreeVariableDescriptorSerializer::Load failed to load the %s member" + , JsonSerialization::TypeIdFieldIdentifier)); + } + + result.Combine(LoadTypeId(typeId, typeIdMember->value, context)); + if (typeId.IsNull()) + { + return context.Report(JSR::Tasks::ReadField, JSR::Outcomes::Catastrophic + , "ExpressionTreeVariableDescriptorSerializer::Load failed to load the AZ TypeId of the value"); + } + + AZStd::any storage = context.GetSerializeContext()->CreateAny(typeId); + if (storage.empty() || storage.type() != typeId) + { + return context.Report(result, "ExpressionTreeVariableDescriptorSerializer::Load failed to load a value matched the " + "reported AZ TypeId. The C++ declaration may have been deleted or changed."); + } + + result.Combine(ContinueLoadingFromJsonObjectField(AZStd::any_cast(&storage), typeId, inputValue, "Value", context)); + outputDatum->m_value = storage; + // any storage end + + return context.Report(result, result.GetProcessing() != JSR::Processing::Halted + ? "ExpressionTreeVariableDescriptorSerializer Load finished loading VariableDescriptor" + : "ExpressionTreeVariableDescriptorSerializer Load failed to load VariableDescriptor"); + } + + JsonSerializationResult::Result Store + ( rapidjson::Value& outputValue + , const void* inputValue + , const void* defaultValue + , [[maybe_unused]] const Uuid& valueTypeId + , JsonSerializerContext& context) override + { + namespace JSR = JsonSerializationResult; + + AZ_Assert(valueTypeId == azrtti_typeid(), "VariableDescriptor Store against value typeID that " + "was not VariableDescriptor"); + AZ_Assert(inputValue, "VariableDescriptor Store against null inputValue pointer "); + + auto inputScriptDataPtr = reinterpret_cast(inputValue); + auto defaultScriptDataPtr = reinterpret_cast(defaultValue); + + if (defaultScriptDataPtr) + { + if (inputScriptDataPtr->m_supportedTypes == defaultScriptDataPtr->m_supportedTypes + && AZ::Helpers::CompareAnyValue(inputScriptDataPtr->m_value, defaultScriptDataPtr->m_value)) + { + return context.Report + ( JSR::Tasks::WriteValue, JSR::Outcomes::DefaultsUsed, "VariableDescriptor Store used defaults for " + "VariableDescriptor"); + } + } + + JSR::ResultCode result(JSR::Tasks::WriteValue); + outputValue.SetObject(); + + result.Combine(ContinueStoringToJsonObjectField + ( outputValue + , "SupportedTypes" + , &inputScriptDataPtr->m_supportedTypes + , defaultScriptDataPtr ? &defaultScriptDataPtr->m_supportedTypes : nullptr + , azrtti_typeidm_supportedTypes)>() + , context)); + + rapidjson::Value typeValue; + result.Combine(StoreTypeId(typeValue, inputScriptDataPtr->m_value.type(), context)); + outputValue.AddMember + ( rapidjson::StringRef(JsonSerialization::TypeIdFieldIdentifier) + , AZStd::move(typeValue) + , context.GetJsonAllocator()); + + result.Combine(ContinueStoringToJsonObjectField + ( outputValue + , "Value" + , AZStd::any_cast(const_cast(&inputScriptDataPtr->m_value)) + , defaultScriptDataPtr ? AZStd::any_cast(const_cast(&defaultScriptDataPtr->m_value)) : nullptr + , inputScriptDataPtr->m_value.type() + , context)); + + return context.Report(result, result.GetProcessing() != JSR::Processing::Halted + ? "VariableDescriptor Store finished saving VariableDescriptor" + : "VariableDescriptor Store failed to save VariableDescriptor"); + } + }; + + AZ_CLASS_ALLOCATOR_IMPL(ExpressionTreeVariableDescriptorSerializer, SystemAllocator, 0); +} diff --git a/Gems/ExpressionEvaluation/Code/expressionevaluation_files.cmake b/Gems/ExpressionEvaluation/Code/expressionevaluation_files.cmake index 00d546459a..908622c163 100644 --- a/Gems/ExpressionEvaluation/Code/expressionevaluation_files.cmake +++ b/Gems/ExpressionEvaluation/Code/expressionevaluation_files.cmake @@ -13,6 +13,8 @@ set(FILES Include/ExpressionEvaluation/ExpressionEngine/ExpressionTypes.h Source/ExpressionEvaluationSystemComponent.cpp Source/ExpressionEvaluationSystemComponent.h + Source/ExpressionPrimitivesSerializers.inl + Source/ElementInformationSerializer.inl Source/ExpressionEngine/ExpressionElementParser.h Source/ExpressionEngine/ExpressionPrimitive.cpp Source/ExpressionEngine/ExpressionPrimitive.h diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerClickOrTap.inl b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerClickOrTap.inl index 57716c7d9f..9333c5cbc9 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerClickOrTap.inl +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerClickOrTap.inl @@ -9,6 +9,8 @@ #include #include #include +#include +#include //////////////////////////////////////////////////////////////////////////////////////////////////// inline void Gestures::RecognizerClickOrTap::Config::Reflect(AZ::ReflectContext* context) diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerDrag.inl b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerDrag.inl index 2c1af6fbc9..642ae9b852 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerDrag.inl +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerDrag.inl @@ -8,6 +8,7 @@ #include #include +#include #include //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.h b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.h index 87c53d815a..facdd899c8 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.h +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.h @@ -10,6 +10,7 @@ #include "IGestureRecognizer.h" #include +#include #include //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.inl b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.inl index b399639f6d..a85acfe466 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.inl +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.inl @@ -8,6 +8,7 @@ #include #include +#include #include //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerPinch.inl b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerPinch.inl index f6c0427b2c..1a198eab59 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerPinch.inl +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerPinch.inl @@ -8,6 +8,7 @@ #include #include +#include #include //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerRotate.inl b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerRotate.inl index 9dff9a115a..6cc82f47dc 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerRotate.inl +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerRotate.inl @@ -9,6 +9,7 @@ #include #include #include +#include //////////////////////////////////////////////////////////////////////////////////////////////////// inline void Gestures::RecognizerRotate::Config::Reflect(AZ::ReflectContext* context) diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerSwipe.h b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerSwipe.h index d745454d69..bf0181e2b9 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerSwipe.h +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerSwipe.h @@ -8,7 +8,7 @@ #pragma once #include "IGestureRecognizer.h" - +#include #include //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/SmoothStep.h b/Gems/GradientSignal/Code/Include/GradientSignal/SmoothStep.h index f60cf4804c..0489fa4893 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/SmoothStep.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/SmoothStep.h @@ -37,7 +37,6 @@ namespace GradientSignal float output = 0.0f; const float value = AZ::GetClamp(inputValue, 0.0f, 1.0f); - const float valueFalloffRange = AZ::GetClamp(m_falloffRange, 0.0f, 1.0f); const float valueFalloffStrength = AZ::GetClamp(m_falloffStrength, 0.0f, 1.0f); float min = m_falloffMidpoint - m_falloffRange / 2.0f; diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.cpp index 52c96c143c..e665d46468 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.cpp @@ -108,7 +108,7 @@ namespace GradientSignal if(settingsExist) { - menu->addAction("Edit Gradient Image Settings...", [this, source, settingsPath]() + menu->addAction("Edit Gradient Image Settings...", [settingsPath]() { bool result = false; AZ::Data::AssetInfo assetInfo; @@ -123,7 +123,7 @@ namespace GradientSignal } else { - menu->addAction("Enable Gradient Image Settings", [this, source, settingsPath]() + menu->addAction("Enable Gradient Image Settings", [settingsPath]() { GradientSignal::ImageSettings imageSettings; AZ::Utils::SaveObjectToFile(settingsPath, AZ::DataStream::ST_XML, &imageSettings); diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.cpp index afafa8350d..ce08f9b448 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.cpp @@ -156,6 +156,4 @@ namespace GraphCanvas m_proxyWidget = nullptr; } } - -#include } diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.h b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.h index 0067d75bac..5b35386547 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.h @@ -7,13 +7,11 @@ */ #pragma once -#if !defined(Q_MOC_RUN) #include #include #include #include -#endif class QGraphicsProxyWidget; diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.cpp index 9206d32d65..6d0590ed99 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.cpp @@ -403,6 +403,4 @@ namespace GraphCanvas m_menuDisplayDirty = true; } } - -#include } diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.h b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.h index 8f0bb05421..3044456046 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.h @@ -9,7 +9,6 @@ class QEvent; -#if !defined(Q_MOC_RUN) #include #include @@ -18,7 +17,6 @@ class QEvent; #include #include #include -#endif namespace GraphCanvas { diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.cpp index 01dab4c53b..21c5fffa86 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.cpp @@ -208,6 +208,4 @@ namespace GraphCanvas m_proxyWidget = nullptr; } } - -#include } diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.h b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.h index 322ceef941..63b6d3d301 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.h @@ -9,7 +9,6 @@ class QEvent; -#if !defined(Q_MOC_RUN) #include #include @@ -17,7 +16,6 @@ class QEvent; #include #include #include -#endif namespace GraphCanvas { diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.cpp index c317e8044a..f6a7efd7fb 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.cpp @@ -2295,8 +2295,6 @@ namespace GraphCanvas { QScopedValueRollback allowMovement(m_allowMovement, false); - QRectF rect = boundingRect(); - qreal originalHeight = boundingRect().height(); qreal newHeight = boundingRect().height() + (newSize.height() - oldSize.height()); diff --git a/Gems/GraphCanvas/Code/Source/Components/SceneComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/SceneComponent.cpp index eefde088bb..52e7892364 100644 --- a/Gems/GraphCanvas/Code/Source/Components/SceneComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/SceneComponent.cpp @@ -1070,8 +1070,6 @@ namespace GraphCanvas // SceneComponent /////////////////// - static const char* k_copyPasteKey = "GraphCanvasScene"; - void SceneComponent::Reflect(AZ::ReflectContext* context) { GraphSerialization::Reflect(context); @@ -3262,8 +3260,6 @@ namespace GraphCanvas { for (const auto& sceneMember : sceneMemberList) { - QRectF boundingArea; - QGraphicsItem* sceneItem = nullptr; VisualRequestBus::EventResult(sceneItem, sceneMember->GetId(), &VisualRequests::AsGraphicsItem); @@ -3292,8 +3288,6 @@ namespace GraphCanvas { for (const auto& sceneMember : sceneMemberList) { - QRectF boundingArea; - QGraphicsItem* sceneItem = nullptr; VisualRequestBus::EventResult(sceneItem, sceneMember->GetId(), &VisualRequests::AsGraphicsItem); diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationBuilder.cpp b/Gems/GraphCanvas/Code/Source/Translation/TranslationBuilder.cpp index 9b8d67aa62..bac58c3ba1 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationBuilder.cpp +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationBuilder.cpp @@ -11,8 +11,6 @@ namespace GraphCanvas { - constexpr const char* s_graphCanvasTranslationBuilderName = "GraphCanvasTranslationBuilder"; - AZ::Uuid TranslationAssetWorker::GetUUID() { return AZ::Uuid::CreateString("{459EF910-CAAF-465A-BA19-C91979DA5729}"); diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationDatabase.cpp b/Gems/GraphCanvas/Code/Source/Translation/TranslationDatabase.cpp index 158b310d7c..17c59d17bc 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationDatabase.cpp +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationDatabase.cpp @@ -33,10 +33,10 @@ namespace GraphCanvas m_database.clear(); - AZStd::function reloadFn = [this]() + AZStd::function reloadFn = []() { // Collects all script assets for reloading - AZ::Data::AssetCatalogRequests::AssetEnumerationCB collectAssetsCb = [this](const AZ::Data::AssetId, const AZ::Data::AssetInfo& info) + AZ::Data::AssetCatalogRequests::AssetEnumerationCB collectAssetsCb = [](const AZ::Data::AssetId, const AZ::Data::AssetInfo& info) { // Check asset type if (info.m_assetType == azrtti_typeid()) diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.cpp b/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.cpp index dd6ee187c0..3875f76d92 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.cpp +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.cpp @@ -20,14 +20,6 @@ namespace GraphCanvas static constexpr char variant[] = "variant"; static constexpr char entries[] = "entries"; } - - static const AZStd::string_view RequiredFields[] = - { - Field::key, - Field::context, - Field::variant, - Field::entries - }; } AZ_CLASS_ALLOCATOR_IMPL(TranslationFormatSerializer, AZ::SystemAllocator, 0); diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/ParticleGraphicsItem.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/ParticleGraphicsItem.cpp index 26ee857cd8..a6ec4484cf 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/ParticleGraphicsItem.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/ParticleGraphicsItem.cpp @@ -117,7 +117,6 @@ namespace GraphCanvas void ParticleGraphicsItem::paint([[maybe_unused]] QPainter* painter, [[maybe_unused]] const QStyleOptionGraphicsItem* option, [[maybe_unused]] QWidget* widget) { - static const float k_pulseWidth = 60.0f; painter->save(); float alpha = m_configuration.m_alphaStart; diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Parser.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Parser.cpp index d391ecf418..5d15c9fcd0 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Parser.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Parser.cpp @@ -291,8 +291,6 @@ namespace QColor ParseColor(const QString& color) { - QColor result; - QRegularExpressionMatch match; if ((match = hexColor.match(color)).hasMatch()) { @@ -520,34 +518,6 @@ namespace } } - QFont::Capitalization ParseFontVariant(const QString& value) - { - if (QString::compare(value, QLatin1String("normal"), Qt::CaseInsensitive) == 0) - { - return QFont::MixedCase; - } - else if (QString::compare(value, QLatin1String("all-uppercase"), Qt::CaseInsensitive) == 0) - { - return QFont::AllUppercase; - } - else if (QString::compare(value, QLatin1String("all-lowercase"), Qt::CaseInsensitive) == 0) - { - return QFont::AllLowercase; - } - else if (QString::compare(value, QLatin1String("small-caps"), Qt::CaseInsensitive) == 0) - { - return QFont::SmallCaps; - } - else if (QString::compare(value, QLatin1String("capitalize"), Qt::CaseInsensitive) == 0) - { - return QFont::Capitalize; - } - else - { - return{}; - } - } - bool IsFontStyleValid(const QString& value) { if (QString::compare(value, QLatin1String("normal"), Qt::CaseInsensitive) == 0 || @@ -640,16 +610,6 @@ namespace return{}; } - AZStd::string CreateStyleName(const Styling::Style& style) - { - const Styling::SelectorVector selectors = style.GetSelectors(); - return std::accumulate(selectors.cbegin(), selectors.cend(), AZStd::string(), [](const AZStd::string& a, const Styling::Selector& s) { - return a + (a.empty() ? "" : ", ") + s.ToString(); - }); - } - - - } // namespace diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.cpp index 93ee795ec6..40284efcdf 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.cpp @@ -1898,8 +1898,6 @@ namespace GraphCanvas targetConnectionType = ConnectionType::CT_Invalid; } - NodeId nodeId = initializingEndpoint.GetNodeId(); - AZStd::vector< SlotId > slotIds; NodeRequestBus::EventResult(slotIds, initializingEndpoint.GetNodeId(), &NodeRequests::GetSlotIds); @@ -2307,7 +2305,6 @@ namespace GraphCanvas AZ::EntityId anchorEntity; float minDistance = -1; - QPointF offset; AZStd::vector nearbyEntities; FloatingElementAnchor floatingAnchor; @@ -2425,10 +2422,6 @@ namespace GraphCanvas // - Overall Alignment is a bit...non-deterministic right now, and can change for some reason. AZStd::queue< OrganizationHelper* > termimnalOrganizationHelpers; - QPointF minTerminalPointSpot(0,0); - - AZ::Vector2 anchorPoint = CalculateAlignmentAnchorPoint(alignConfig); - // Tail recursed loop. while (!nextLayer.empty()) { @@ -2487,10 +2480,6 @@ namespace GraphCanvas OrganizationHelper* helper = termimnalOrganizationHelpers.front(); termimnalOrganizationHelpers.pop(); - NodeId nodeId = helper->m_nodeId; - - QRectF totalBoundingRect = helper->m_boundingArea; - OrganizationSpaceAllocationHelper leftAllocation; OrganizationSpaceAllocationHelper rightAllocation; diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtVectorMath.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtVectorMath.h index 8361d57e9a..5b572714f2 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtVectorMath.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtVectorMath.h @@ -58,18 +58,8 @@ namespace GraphCanvas } // Find the line between the two rectangles. - QPointF direction = rectA.center() - rectB.center(); QLineF directionLine(rectA.center(), rectB.center()); - QLineF aLine1; - QLineF aLine2; - QLineF aFinalLine; - - QLineF bLine1; - QLineF bLine2; - QLineF bFinalLine; - - // Not strictly correct, but correct enough. // // Finds the two points on the line from center to center, and returns the distance between them. diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ConstructPresetDialog/ConstructPresetDialog.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ConstructPresetDialog/ConstructPresetDialog.cpp index 73655cf41d..bde2135b9e 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ConstructPresetDialog/ConstructPresetDialog.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ConstructPresetDialog/ConstructPresetDialog.cpp @@ -445,7 +445,6 @@ namespace GraphCanvas if (newIndex >= 0) { - QModelIndex index = m_presetsModel->index(newIndex, 0); m_ui->constructTypes->setCurrentIndex(newIndex); } } diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasGraphicsView/GraphCanvasGraphicsView.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasGraphicsView/GraphCanvasGraphicsView.cpp index f0b4d264ca..fa7e051035 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasGraphicsView/GraphCanvasGraphicsView.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasGraphicsView/GraphCanvasGraphicsView.cpp @@ -1488,7 +1488,6 @@ namespace GraphCanvas void GraphCanvasGraphicsView::SaveViewParams() { - QPointF centerPoint = mapToScene(rect().center()); QPointF anchorPoint = mapToScene(rect().topLeft()); m_viewParams.m_anchorPointX = aznumeric_cast(anchorPoint.x()); diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/Model/NodePaletteSortFilterProxyModel.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/Model/NodePaletteSortFilterProxyModel.cpp index 89e0ef3aac..33d11f998e 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/Model/NodePaletteSortFilterProxyModel.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/Model/NodePaletteSortFilterProxyModel.cpp @@ -202,8 +202,6 @@ namespace GraphCanvas AZStd::list exploreItems; exploreItems.push_back(treeItem); - const QModelIndex k_flagIndex; - while (!exploreItems.empty()) { const GraphCanvas::GraphCanvasTreeItem* currentItem = exploreItems.front(); diff --git a/Gems/GraphModel/Code/Source/Integration/GraphController.cpp b/Gems/GraphModel/Code/Source/Integration/GraphController.cpp index 3551e5ba41..86cfb42990 100644 --- a/Gems/GraphModel/Code/Source/Integration/GraphController.cpp +++ b/Gems/GraphModel/Code/Source/Integration/GraphController.cpp @@ -280,6 +280,7 @@ namespace GraphModelIntegration } else { + AZ_UNUSED(this); // Prevent unused warning in release builds AZ_Error(m_graph->GetSystemName(), false, "Failed to load position information for node [%d]", nodeId); } diff --git a/Gems/GraphModel/Code/Tests/TestEnvironment.cpp b/Gems/GraphModel/Code/Tests/TestEnvironment.cpp index 67d2e7af80..b7724c6799 100644 --- a/Gems/GraphModel/Code/Tests/TestEnvironment.cpp +++ b/Gems/GraphModel/Code/Tests/TestEnvironment.cpp @@ -51,7 +51,7 @@ namespace GraphModelIntegrationTest GraphModel::DataTypePtr TestGraphContext::GetDataType(GraphModel::DataType::Enum typeEnum) const { - if (0 <= typeEnum && typeEnum < m_dataTypes.size()) + if (typeEnum < m_dataTypes.size()) { return m_dataTypes[typeEnum]; } diff --git a/Gems/ImGui/Code/Include/ImGuiContextScope.h b/Gems/ImGui/Code/Include/ImGuiContextScope.h index 553430862e..f9b2df1834 100644 --- a/Gems/ImGui/Code/Include/ImGuiContextScope.h +++ b/Gems/ImGui/Code/Include/ImGuiContextScope.h @@ -39,6 +39,6 @@ namespace ImGui private: //////////////////////////////////////////////////////////////////////////////////////////// - ImGuiContext* m_previousContext = nullptr; + [[maybe_unused]] ImGuiContext* m_previousContext = nullptr; }; } diff --git a/Gems/ImGui/Code/Source/ImGuiManager.cpp b/Gems/ImGui/Code/Source/ImGuiManager.cpp index 427af6d7dc..6fc1ea8b71 100644 --- a/Gems/ImGui/Code/Source/ImGuiManager.cpp +++ b/Gems/ImGui/Code/Source/ImGuiManager.cpp @@ -81,59 +81,6 @@ namespace const auto& it = AZStd::find(touches.cbegin(), touches.cend(), inputChannelId); return it != touches.cend() ? static_cast(it - touches.cbegin()) : UINT_MAX; } - - /** - Utility function to map an AzFrameworkInput controller button to its integer index. - - @param inputChannelId the ID for an AzFrameworkInput controller button. - @return the index of the indicated button, or -1 if not found. - */ - unsigned int GetAzControllerButtonIndex(const InputChannelId& inputChannelId) - { - const auto& buttons = InputDeviceGamepad::Button::All; - const auto& triggers = InputDeviceGamepad::Trigger::All; - const auto& it = AZStd::find(buttons.cbegin(), buttons.cend(), inputChannelId); - if (it != buttons.cend()) - { - return static_cast(it - buttons.cbegin()); - } - else - { - const auto& it2 = AZStd::find(triggers.cbegin(), triggers.cend(), inputChannelId); - if (it2 != triggers.cend()) - { - return static_cast(it2 - triggers.cbegin()) + AZ_ARRAY_SIZE(InputDeviceGamepad::Button::All); - } - } - - return UINT_MAX; - } - - /** - Utility function to map an AzFrameworkInput thumbstick movement to its integer index. - - @param inputChannelId the ID for an AzFrameworkInput thumbstick movement. - @return the index of the indicated button, or -1 if not found. - */ - unsigned int GetAzControllerThumbstickIndex(const InputChannelId& inputChannelId) - { - const auto& thumbstickMovements = InputDeviceGamepad::ThumbStickDirection::All; - const auto& it = AZStd::find(thumbstickMovements.cbegin(), thumbstickMovements.cend(), inputChannelId); - return it != thumbstickMovements.cend() ? static_cast(it - thumbstickMovements.cbegin()) : UINT_MAX; - } - - /** - Utility function to map an AzFrameworkInput thumbstick movement amountto its integer index. - - @param inputChannelId the ID for an AzFrameworkInput thumbstick movement amount. - @return the index of the indicated button, or -1 if not found. - */ - unsigned int GetAzControllerThumbstickAmountIndex(const InputChannelId& inputChannelId) - { - const auto& thumbstickMovementAmounts = InputDeviceGamepad::ThumbStickAxis1D::All; - const auto& it = AZStd::find(thumbstickMovementAmounts.cbegin(), thumbstickMovementAmounts.cend(), inputChannelId); - return it != thumbstickMovementAmounts.cend() ? static_cast(it - thumbstickMovementAmounts.cbegin()) : UINT_MAX; - } } void ImGuiManager::Initialize() diff --git a/Gems/ImGui/Code/Source/ImGuiManager.h b/Gems/ImGui/Code/Source/ImGuiManager.h index 20695c0825..52862205a5 100644 --- a/Gems/ImGui/Code/Source/ImGuiManager.h +++ b/Gems/ImGui/Code/Source/ImGuiManager.h @@ -67,7 +67,7 @@ namespace ImGui // -- AzFramework::InputChannelEventListener and AzFramework::InputTextEventListener Interface ------------ bool OnInputChannelEventFiltered(const AzFramework::InputChannel& inputChannel) override; bool OnInputTextEventFiltered(const AZStd::string& textUTF8) override; - int GetPriority() const override { return AzFramework::InputChannelEventListener::GetPriorityDebug(); } + int GetPriority() const override { return AzFramework::InputChannelEventListener::GetPriorityDebugUI(); } // -- AzFramework::InputChannelEventListener and AzFramework::InputTextEventListener Interface ------------ // AzFramework::WindowNotificationBus::Handler overrides... @@ -81,7 +81,6 @@ namespace ImGui private: ImGuiContext* m_imguiContext = nullptr; - int m_fontTextureId = -1; DisplayState m_clientMenuBarState = DisplayState::Hidden; DisplayState m_editorWindowState = DisplayState::Hidden; diff --git a/Gems/InAppPurchases/Code/Source/Platform/Android/InAppPurchasesAndroid.cpp b/Gems/InAppPurchases/Code/Source/Platform/Android/InAppPurchasesAndroid.cpp index 5c8195235b..bd13e91dc6 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Android/InAppPurchasesAndroid.cpp +++ b/Gems/InAppPurchases/Code/Source/Platform/Android/InAppPurchasesAndroid.cpp @@ -250,7 +250,7 @@ namespace InAppPurchases document.Parse(fileBuffer.data()); if (document.HasParseError()) { - const char* errorStr = rapidjson::GetParseError_En(document.GetParseError()); + [[maybe_unused]] const char* errorStr = rapidjson::GetParseError_En(document.GetParseError()); AZ_TracePrintf("LumberyardInAppBilling", "Failed to parse product_ids.json: %s\n", errorStr); return; } diff --git a/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesDelegate.mm b/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesDelegate.mm index 09d087e97a..d1ec128236 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesDelegate.mm +++ b/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesDelegate.mm @@ -131,7 +131,7 @@ -(void) productsRequest:(SKProductsRequest*) request didReceiveResponse:(SKProductsResponse*) response { - for (NSString* invalidId in response.invalidProductIdentifiers) + for ([[maybe_unused]] NSString* invalidId in response.invalidProductIdentifiers) { AZ_TracePrintf("O3DEInAppPurchases:", "Invalid product ID:", [invalidId cStringUsingEncoding:NSASCIIStringEncoding]); } diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Core/GraphContext.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Core/GraphContext.cpp index 9011a82069..615139333c 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Core/GraphContext.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Core/GraphContext.cpp @@ -102,7 +102,7 @@ namespace LandscapeCanvas GraphModel::DataTypePtr GraphContext::GetDataType(GraphModel::DataType::Enum typeEnum) const { - if (0 <= typeEnum && typeEnum < m_dataTypes.size()) + if (typeEnum < m_dataTypes.size()) { return m_dataTypes[typeEnum]; } diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/MainWindow.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/MainWindow.cpp index 2204034185..836eec682e 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/MainWindow.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/MainWindow.cpp @@ -955,14 +955,14 @@ namespace LandscapeCanvasEditor auto redoAction = new QAction(QObject::tr("&Redo"), this); redoAction->setShortcut(AzQtComponents::RedoKeySequence); - QObject::connect(redoAction, &QAction::triggered, [this] { + QObject::connect(redoAction, &QAction::triggered, [] { GetLegacyEditor()->Redo(); }); menu->insertAction(separatorAction, redoAction); auto undoAction = new QAction(QObject::tr("&Undo"), this); undoAction->setShortcut(QKeySequence::Undo); - QObject::connect(undoAction, &QAction::triggered, [this] { + QObject::connect(undoAction, &QAction::triggered, [] { GetLegacyEditor()->Undo(); }); menu->insertAction(redoAction, undoAction); @@ -2852,7 +2852,7 @@ namespace LandscapeCanvasEditor // For any node with an Entity Name slot, we need to replace the string property display with a read-only version // instead until we have support for listening for GraphModel slot value changes. We need to delay this because // when the node is added, the slots haven't been added to the element map yet. - QTimer::singleShot(0, [this, node, graphId]() { + QTimer::singleShot(0, [node, graphId]() { GraphModel::SlotPtr slot = node->GetSlot(LandscapeCanvas::ENTITY_NAME_SLOT_ID); if (slot) { @@ -2976,7 +2976,7 @@ namespace LandscapeCanvasEditor AzToolsFramework::EntityIdList vegetationAreaIds; m_serializeContext->EnumerateObject(component, // beginElemCB - [this, &previewEntityId, &inboundShapeEntityId, &gradientSamplerIds, &vegetationAreaIds](void *instance, [[maybe_unused]] const AZ::SerializeContext::ClassData *classData, const AZ::SerializeContext::ClassElement *classElement) -> bool + [&previewEntityId, &inboundShapeEntityId, &gradientSamplerIds, &vegetationAreaIds](void *instance, [[maybe_unused]] const AZ::SerializeContext::ClassData *classData, const AZ::SerializeContext::ClassElement *classElement) -> bool { if (classElement && (classElement->m_typeId == azrtti_typeid())) { diff --git a/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.cpp b/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.cpp index fbeb26706e..9897895dcd 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.cpp @@ -9,7 +9,6 @@ #include "EditorNavigationUtil.h" #include -#include #include #include #include @@ -47,7 +46,7 @@ namespace LmbrCentral Call(FN_OnTraversalStarted, requestId); } - void OnTraversalPathUpdate(PathfindRequest::NavigationRequestId requestId, const AZ::Vector3& nextPathPosition, const AZ::Vector3& inflectionPosition) override + void OnTraversalPathUpdate(PathfindRequest::NavigationRequestId requestId, const AZ::Vector3& nextPathPosition, const AZ::Vector3& inflectionPosition) override { Call(FN_OnTraversalPathUpdate, requestId, nextPathPosition, inflectionPosition); } @@ -460,7 +459,7 @@ namespace LmbrCentral const bool usesAZCharacterPhysics = Physics::CharacterRequestBus::FindFirstHandler(entityId) != nullptr; m_usesCharacterPhysics = usesLegacyCharacterPhysics || usesAZCharacterPhysics; - + AZ_Warning("NavigationComponent", usesAZCharacterPhysics || Physics::RigidBodyRequestBus::FindFirstHandler(entityId), "Entity %s cannot be moved physically because it is missing a physics component", GetEntity()->GetName().c_str()); @@ -748,7 +747,7 @@ namespace LmbrCentral PathFollowResult result; - const bool arrived = pathFollower->Update( + [[maybe_unused]] const bool arrived = pathFollower->Update( result, AZVec3ToLYVec3(agentPosition), AZVec3ToLYVec3(agentVelocity), @@ -791,10 +790,10 @@ namespace LmbrCentral m_lastResponseCache.SetNextPathPosition(nextPathPosition); m_lastResponseCache.SetInflectionPosition(inflectionPosition); - // when using the custom movement method we just update the path and rely on + // when using the custom movement method we just update the path and rely on // the user to move the entity NavigationComponentNotificationBus::Event(m_entity->GetId(), - &NavigationComponentNotificationBus::Events::OnTraversalPathUpdate, + &NavigationComponentNotificationBus::Events::OnTraversalPathUpdate, m_lastResponseCache.GetRequestId(), nextPathPosition, inflectionPosition); @@ -808,7 +807,7 @@ namespace LmbrCentral if (m_usesCharacterPhysics) { - Physics::CharacterRequestBus::Event(GetEntityId(), + Physics::CharacterRequestBus::Event(GetEntityId(), &Physics::CharacterRequestBus::Events::AddVelocity, targetVelocity); } else diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.cpp index 8be8aa042e..659fff55d9 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.cpp @@ -39,7 +39,7 @@ namespace LmbrCentral ->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioProxy.svg") ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c)) ->Attribute(AZ::Edit::Attributes::AddableByUser, true) - ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-proxy/") + ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio/proxy/") ; } } diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioAreaEnvironmentComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioAreaEnvironmentComponent.cpp index 2b4741331f..7861244ea4 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioAreaEnvironmentComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioAreaEnvironmentComponent.cpp @@ -40,7 +40,7 @@ namespace LmbrCentral ->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioAreaEnvironment.svg") ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c)) ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-area-environment/") + ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio/area-environment/") ->DataElement(AZ::Edit::UIHandlers::Default, &EditorAudioAreaEnvironmentComponent::m_broadPhaseTriggerArea, "Broad-phase trigger area", "The entity that contains a Trigger Area component for broad-phase checks") ->Attribute(AZ::Edit::Attributes::RequiredService, AZ_CRC("ProximityTriggerService", 0x561f262c)) diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioEnvironmentComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioEnvironmentComponent.cpp index b4dd5c4d74..b2633a9cb0 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioEnvironmentComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioEnvironmentComponent.cpp @@ -33,7 +33,7 @@ namespace LmbrCentral ->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioEnvironment.png") ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c)) ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-environment/") + ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio/environment/") ->DataElement("AudioControl", &EditorAudioEnvironmentComponent::m_defaultEnvironment, "Default Environment", "Name of the default ATL Environment control to use") ; } diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioListenerComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioListenerComponent.cpp index 205267db73..c9f80ed398 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioListenerComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioListenerComponent.cpp @@ -36,7 +36,7 @@ namespace LmbrCentral ->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioListener.svg") ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c)) ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-listener/") + ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio/listener/") ->DataElement(AZ::Edit::UIHandlers::Default, &EditorAudioListenerComponent::m_rotationEntity, "Rotation Entity", "The Entity whose rotation the audio listener will adopt. If none set, will assume 'this' Entity") ->DataElement(AZ::Edit::UIHandlers::Default, &EditorAudioListenerComponent::m_positionEntity, diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioMultiPositionComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioMultiPositionComponent.cpp index 987fa6e0e4..51386b1c02 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioMultiPositionComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioMultiPositionComponent.cpp @@ -38,7 +38,7 @@ namespace LmbrCentral ->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioMultiPosition.svg") ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c)) ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - // Followup: Need Help URL + ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio/multi-position/") ->DataElement(AZ::Edit::UIHandlers::Default, &EditorAudioMultiPositionComponent::m_entityRefs, "Entity References", "The entities from which positions will be obtained for multi-position audio") ->DataElement(AZ::Edit::UIHandlers::ComboBox, &EditorAudioMultiPositionComponent::m_behaviorType, "Behavior Type", "Determines how multi-postion sounds are treated, Separate or Blended") ; diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioPreloadComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioPreloadComponent.cpp index a5d137c1b2..a24acac292 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioPreloadComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioPreloadComponent.cpp @@ -43,7 +43,7 @@ namespace LmbrCentral // Icon todo: //->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioPreload.png") - ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-preload/") + ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio/preload/") ->DataElement("AudioControl", &EditorAudioPreloadComponent::m_defaultPreload, "Preload Name", "The default ATL Preload control to use") ->DataElement(AZ::Edit::UIHandlers::ComboBox, &EditorAudioPreloadComponent::m_loadType, "Load Type", "Automatically when the component activates/deactivates, or Manually at user's request") diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioRtpcComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioRtpcComponent.cpp index ab98692a50..4426c21ff6 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioRtpcComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioRtpcComponent.cpp @@ -34,7 +34,7 @@ namespace LmbrCentral ->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioRtpc.svg") ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c)) ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-rtpc/") + ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio/rtpc/") ->DataElement("AudioControl", &EditorAudioRtpcComponent::m_defaultRtpc, "Default Rtpc", "The default ATL Rtpc control to use") ; } diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioSwitchComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioSwitchComponent.cpp index 6ea89ee31e..1aafbd5c21 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioSwitchComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioSwitchComponent.cpp @@ -34,7 +34,7 @@ namespace LmbrCentral ->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioSwitch.svg") ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c)) ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-switch/") + ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio/switch/") ->DataElement("AudioControl", &EditorAudioSwitchComponent::m_defaultSwitch, "Default Switch", "The default ATL Switch to use when Activated") ->DataElement("AudioControl", &EditorAudioSwitchComponent::m_defaultState, "Default State", "The default ATL State to set on the default Switch when Activated") ; diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioTriggerComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioTriggerComponent.cpp index e38caf303b..adecf3c4d0 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioTriggerComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioTriggerComponent.cpp @@ -43,7 +43,7 @@ namespace LmbrCentral ->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioTrigger.svg") ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c)) ->Attribute(AZ::Edit::Attributes::AutoExpand, true) - ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-trigger/") + ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio/trigger/") ->DataElement("AudioControl", &EditorAudioTriggerComponent::m_defaultPlayTrigger, "Default 'play' Trigger", "The default ATL Trigger control used by 'Play'") ->DataElement("AudioControl", &EditorAudioTriggerComponent::m_defaultStopTrigger, "Default 'stop' Trigger", "The default ATL Trigger control used by 'Stop'") ->DataElement(AZ::Edit::UIHandlers::ComboBox, &EditorAudioTriggerComponent::m_obstructionType, "Obstruction Type", "Ray-casts used in calculation of obstruction and occlusion") diff --git a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.cpp index c67dad89b3..dc060ee7cf 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.cpp @@ -12,9 +12,8 @@ namespace DependencyBuilder { - DependencyBuilderWorker::DependencyBuilderWorker(AZStd::string jobKey, bool critical) + DependencyBuilderWorker::DependencyBuilderWorker(AZStd::string jobKey, [[maybe_unused]] bool critical) : m_jobKey(jobKey) - , m_critical(critical) { } diff --git a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.h index 91e657dc2d..76c46fde35 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.h @@ -38,7 +38,6 @@ namespace DependencyBuilder private: AZStd::string m_jobKey; - bool m_critical = false; bool m_isShuttingDown = false; }; } diff --git a/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderWorker.cpp index 88284ede1d..14096f73d2 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderWorker.cpp @@ -12,7 +12,6 @@ #include #include #include -#include #include #include #include @@ -27,6 +26,7 @@ #include #include #include +#include #include #include #include @@ -73,9 +73,7 @@ namespace SliceBuilder AzFramework::StringFunc::Path::Join(relativePath.c_str(), settingsAssetInfo.m_relativePath.c_str(), sliceBuilderSettingsPath, true, true); // Attempt to load the Slice Builder Settings file - AZ::IO::LocalFileIO localFileIO; - AZ::IO::Path sliceBuilderSettingsIoPath(sliceBuilderSettingsPath); - auto result = AzFramework::FileFunc::ReadJsonFile(sliceBuilderSettingsIoPath, &localFileIO); + auto result = AZ::JsonSerializationUtils::ReadJsonFile(sliceBuilderSettingsPath); if (result.IsSuccess()) { AZ::JsonSerializationResult::ResultCode serializaionResult = AZ::JsonSerialization::Load(m_settings, result.GetValue()); @@ -388,11 +386,11 @@ namespace SliceBuilder bool sliceWritable = AZ::IO::SystemFile::IsWritable(fullPath.c_str()); if (!m_settings.m_enableSliceConversion || !sliceWritable) { - static const char* const s_OutOfDate = "This slice file is out of date: "; - static const char* const s_ToEnable = "To enable automatic upgrades:"; - static const char* const s_FixSettings1 = "In the settings file "; - static const char* const s_FixSettings2 = ", Set 'EnableSliceConversion' to true and restart the Asset Processor"; - static const char* const s_FixReadOnly = "Make sure the slice file isn't marked read-only. If using perforce, check out the slice file."; + [[maybe_unused]] static const char* const s_OutOfDate = "This slice file is out of date: "; + [[maybe_unused]] static const char* const s_ToEnable = "To enable automatic upgrades:"; + [[maybe_unused]] static const char* const s_FixSettings1 = "In the settings file "; + [[maybe_unused]] static const char* const s_FixSettings2 = ", Set 'EnableSliceConversion' to true and restart the Asset Processor"; + [[maybe_unused]] static const char* const s_FixReadOnly = "Make sure the slice file isn't marked read-only. If using perforce, check out the slice file."; // The Slice isn't marked as read only but Slice Upgrades aren't Enabled in the builder settings file if(!m_settings.m_enableSliceConversion && sliceWritable) @@ -512,10 +510,10 @@ namespace SliceBuilder // To avoid potential data loss, only delete the old file if there is a data patching error detected if (m_sliceDataPatchError) { - static const char* const s_overrideWarning = "At least one Data Patch Upgrade wasn't completed:"; - static const char* const s_checkLogs = "Please check the slice processing log for more information."; - static const char* const s_originalSliceAvailable = "The original slice file has been preserved at: "; - static const char* const s_recomendReload = "It's recomended that this slice be loaded into the editor and repaired before upgrading."; + [[maybe_unused]] static const char* const s_overrideWarning = "At least one Data Patch Upgrade wasn't completed:"; + [[maybe_unused]] static const char* const s_checkLogs = "Please check the slice processing log for more information."; + [[maybe_unused]] static const char* const s_originalSliceAvailable = "The original slice file has been preserved at: "; + [[maybe_unused]] static const char* const s_recomendReload = "It's recomended that this slice be loaded into the editor and repaired before upgrading."; AZ_Warning(s_sliceBuilder, false, "%s\n%s\n%s%s\n%s", s_overrideWarning, s_checkLogs, s_originalSliceAvailable, oldPath.c_str(), s_recomendReload); } diff --git a/Gems/LmbrCentral/Code/Source/Shape/CapsuleShape.cpp b/Gems/LmbrCentral/Code/Source/Shape/CapsuleShape.cpp index a47041f767..fb2d2bd8ae 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CapsuleShape.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/CapsuleShape.cpp @@ -13,6 +13,7 @@ #include #include #include +#include #include namespace LmbrCentral diff --git a/Gems/LmbrCentral/Code/Source/Shape/CompoundShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/CompoundShapeComponent.cpp index fa6f3e3702..7f4c58512d 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CompoundShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/CompoundShapeComponent.cpp @@ -8,7 +8,6 @@ #include "CompoundShapeComponent.h" #include -#include "Cry_GeoOverlap.h" namespace LmbrCentral @@ -147,7 +146,7 @@ namespace LmbrCentral { m_currentlyActiveChildren++; ShapeComponentNotificationsBus::MultiHandler::BusConnect(id); - + if (ShapeComponentRequestsBus::Handler::BusIsConnected() && CompoundShapeComponentRequestsBus::Handler::BusIsConnected()) { EBUS_EVENT_ID(GetEntityId(), ShapeComponentNotificationsBus, OnShapeChanged, ShapeComponentNotifications::ShapeChangeReasons::ShapeChanged); diff --git a/Gems/LmbrCentral/Code/Source/Shape/CylinderShape.cpp b/Gems/LmbrCentral/Code/Source/Shape/CylinderShape.cpp index 85f28bcbbd..3c65dafbbc 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CylinderShape.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/CylinderShape.cpp @@ -243,7 +243,6 @@ namespace LmbrCentral AZ::Vector3 diff = m_intersectionDataCache.m_baseCenterPoint - point; return diff.GetLengthSq(); } - return Distance::Point_CylinderSq( point, m_intersectionDataCache.m_baseCenterPoint, m_intersectionDataCache.m_baseCenterPoint + m_intersectionDataCache.m_axisVector, diff --git a/Gems/LmbrCentral/Code/Tests/Builders/SliceBuilderTests.cpp b/Gems/LmbrCentral/Code/Tests/Builders/SliceBuilderTests.cpp index 2f8d913d9c..647a5dedef 100644 --- a/Gems/LmbrCentral/Code/Tests/Builders/SliceBuilderTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/Builders/SliceBuilderTests.cpp @@ -313,7 +313,6 @@ namespace UnitTest const char* GetAppRoot() const override { return nullptr; } const char* GetEngineRoot() const override { return nullptr; } const char* GetExecutableFolder() const override { return nullptr; } - Debug::DrillerManager* GetDrillerManager() override { return nullptr; } void EnumerateEntities(const EntityCallback& /*callback*/) override {} void QueryApplicationType(AZ::ApplicationTypeQuery& /*appType*/) const override {} ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/LmbrCentral/Code/Tests/BundlingSystemComponentTests.cpp b/Gems/LmbrCentral/Code/Tests/BundlingSystemComponentTests.cpp index ada7975b62..08251eb716 100644 --- a/Gems/LmbrCentral/Code/Tests/BundlingSystemComponentTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/BundlingSystemComponentTests.cpp @@ -138,7 +138,6 @@ namespace UnitTest // cache as test/bundle/staticdata.pak and should be loaded below // The Pak has a catalog describing the contents which should automatically update our central asset catalog const char testCSVAsset[] = "staticdata/csv/bundlingsystemtestgameproperties.csv"; - const char testCSVAssetPak[] = "test/bundle/staticdata.pak"; const char testMTLAsset[] = "materials/water_test.mtl"; const char testMTLAssetPak[] = "test/TestMaterials.pak"; @@ -167,7 +166,6 @@ namespace UnitTest const char testCSVAssetPak[] = "test/bundle/staticdata.pak"; // This asset lives only within LmbrCentral/Assets/Test/Bundle/ping.pak - const char testDDSAsset[] = "textures/test/ping.dds"; const char testDDSAssetPak[] = "test/bundle/ping.pak"; size_t bundleCount{ 0 }; diff --git a/Gems/LyShine/Code/CMakeLists.txt b/Gems/LyShine/Code/CMakeLists.txt index 93bf84c66e..f8c2ebfd07 100644 --- a/Gems/LyShine/Code/CMakeLists.txt +++ b/Gems/LyShine/Code/CMakeLists.txt @@ -29,7 +29,7 @@ ly_add_target( Gem::Atom_Utils.Static Gem::Atom_Bootstrap.Headers Gem::AtomFont - Gem::TextureAtlas + Gem::TextureAtlas ) ly_add_target( @@ -151,12 +151,11 @@ if (PAL_TRAIT_BUILD_HOST_TOOLS) Gem::Atom_RPI.Public Gem::Atom_Utils.Static Gem::Atom_Bootstrap.Headers - ) + ) ly_add_target( NAME LyShine.Builders GEM_MODULE NAMESPACE Gem - OUTPUT_NAME Gem.LyShine.Builders FILES_CMAKE lyshine_common_module_files.cmake COMPILE_DEFINITIONS diff --git a/Gems/LyShine/Code/Editor/Animation/AnimationContext.cpp b/Gems/LyShine/Code/Editor/Animation/AnimationContext.cpp index c2c05277a8..8f8864106b 100644 --- a/Gems/LyShine/Code/Editor/Animation/AnimationContext.cpp +++ b/Gems/LyShine/Code/Editor/Animation/AnimationContext.cpp @@ -521,7 +521,7 @@ void CUiAnimationContext::OnEditorNotifyEvent(EEditorNotifyEvent event) case eNotify_OnBeginLayerExport: if (m_pSequence) { - m_sequenceName = m_pSequence->GetName(); + m_sequenceName = QString::fromUtf8(m_pSequence->GetName().c_str()); } else { diff --git a/Gems/LyShine/Code/Editor/Animation/Controls/UiSplineCtrlEx.cpp b/Gems/LyShine/Code/Editor/Animation/Controls/UiSplineCtrlEx.cpp index cf5c1b2d8f..94a4c77593 100644 --- a/Gems/LyShine/Code/Editor/Animation/Controls/UiSplineCtrlEx.cpp +++ b/Gems/LyShine/Code/Editor/Animation/Controls/UiSplineCtrlEx.cpp @@ -824,8 +824,6 @@ void SplineWidget::DrawSpline(QPainter* painter, SSplineInfo& splineInfo, float { const QPen pOldPen = painter->pen(); - const QRect rcClip = painter->clipBoundingRect().intersected(m_rcSpline).toRect(); - ////////////////////////////////////////////////////////////////////////// ISplineInterpolator* pSpline = splineInfo.pSpline; ISplineInterpolator* pDetailSpline = splineInfo.pDetailSpline; diff --git a/Gems/LyShine/Code/Editor/Animation/Controls/UiTimelineCtrl.h b/Gems/LyShine/Code/Editor/Animation/Controls/UiTimelineCtrl.h index d1aeaacb00..701d187ddc 100644 --- a/Gems/LyShine/Code/Editor/Animation/Controls/UiTimelineCtrl.h +++ b/Gems/LyShine/Code/Editor/Animation/Controls/UiTimelineCtrl.h @@ -134,7 +134,6 @@ protected: void DrawFrameTicks(QPainter* dc); private: - bool m_bAutoDelete; QRect m_rcClient; QRect m_rcTimeline; float m_fTimeMarker; diff --git a/Gems/LyShine/Code/Editor/Animation/UiAVCustomizeTrackColorsDlg.cpp b/Gems/LyShine/Code/Editor/Animation/UiAVCustomizeTrackColorsDlg.cpp index 533625c762..b1412a2d7c 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAVCustomizeTrackColorsDlg.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAVCustomizeTrackColorsDlg.cpp @@ -63,7 +63,6 @@ namespace { eUiAnimParamType_User, "Muted", QColor(255, 224, 224) }, }; - const int kButtonsIdBase = 0x7fff; const int kMaxRows = 20; const int kColumnWidth = 300; const int kRowHeight = 24; diff --git a/Gems/LyShine/Code/Editor/Animation/UiAVEventsDialog.cpp b/Gems/LyShine/Code/Editor/Animation/UiAVEventsDialog.cpp index b45cee6948..910307c71a 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAVEventsDialog.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAVEventsDialog.cpp @@ -18,12 +18,6 @@ // CUiAVEventsDialog dialog -namespace -{ - const int kCountSubItemIndex = 1; - const int kTimeSubItemIndex = 2; -} - class UiAVEventsModel : public QAbstractTableModel { diff --git a/Gems/LyShine/Code/Editor/Animation/UiAVSequenceProps.cpp b/Gems/LyShine/Code/Editor/Animation/UiAVSequenceProps.cpp index db8a96830b..a2df73cf26 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAVSequenceProps.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAVSequenceProps.cpp @@ -45,7 +45,7 @@ CUiAVSequenceProps::~CUiAVSequenceProps() // CUiAVSequenceProps message handlers bool CUiAVSequenceProps::OnInitDialog() { - QString name = m_pSequence->GetName(); + QString name = QString::fromUtf8(m_pSequence->GetName().c_str()); ui->NAME->setText(name); ui->MOVE_SCALE_KEYS->setChecked(false); @@ -135,7 +135,7 @@ void CUiAVSequenceProps::OnOK() ac->UpdateTimeRange(); } - QString seqName = m_pSequence->GetName(); + QString seqName = QString::fromUtf8(m_pSequence->GetName().c_str()); if (name != seqName) { // Rename sequence. diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimUndoManager.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimUndoManager.cpp index 025b8c94d8..3a3234fdce 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimUndoManager.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimUndoManager.cpp @@ -6,11 +6,10 @@ * */ - #include "UiAnimUndoManager.h" #include "UiAnimUndoObject.h" #include "Undo/IUndoManagerListener.h" -#include +#include // UI Editor #include "EditorCommon.h" diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.cpp index 3646e5a413..5d62f88310 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.cpp @@ -149,8 +149,6 @@ void CUiAnimViewAnimNode::UiElementPropertyChanged() bool valueChanged = false; - const float time = GetSequence()->GetTime(); - if (m_nodeEntityId.IsValid() && !m_azEntityDataCache.empty()) { AZ::Entity* pNodeEntity = nullptr; @@ -180,8 +178,8 @@ void CUiAnimViewAnimNode::UiElementPropertyChanged() AZ::Component* oldComponent = oldComponents[componentIndex]; AZ::Component* newComponent = newComponents[componentIndex]; - AZ::Uuid oldComponentType = oldComponent->RTTI_GetType(); - AZ::Uuid newComponentType = newComponent->RTTI_GetType(); + [[maybe_unused]] AZ::Uuid oldComponentType = oldComponent->RTTI_GetType(); + [[maybe_unused]] AZ::Uuid newComponentType = newComponent->RTTI_GetType(); AZ_Assert(oldComponentType == newComponentType, "Components have different types"); @@ -537,9 +535,6 @@ void CUiAnimViewAnimNode::BindToEditorObjects() CUiAnimViewSequenceNotificationContext context(GetSequence()); - CUiAnimViewAnimNode* pDirector = GetDirector(); - const bool bBelongsToActiveDirector = pDirector ? pDirector->IsActiveDirector() : true; - // if this node represents an AZ entity then register for updates if (m_nodeEntityId.IsValid()) { @@ -1246,7 +1241,7 @@ CUiAnimViewAnimNodeBundle CUiAnimViewAnimNode::GetAnimNodesByName(const char* pN { CUiAnimViewAnimNodeBundle bundle; - QString nodeName = GetName(); + QString nodeName = QString::fromUtf8(GetName().c_str()); if (GetNodeType() == eUiAVNT_AnimNode && QString::compare(pName, nodeName, Qt::CaseInsensitive) == 0) { bundle.AppendAnimNode(this); @@ -1266,17 +1261,15 @@ CUiAnimViewAnimNodeBundle CUiAnimViewAnimNode::GetAnimNodesByName(const char* pN } ////////////////////////////////////////////////////////////////////////// -const char* CUiAnimViewAnimNode::GetParamName(const CUiAnimParamType& paramType) const +AZStd::string CUiAnimViewAnimNode::GetParamName(const CUiAnimParamType& paramType) const { - const char* pName = m_pAnimNode->GetParamName(paramType); - return pName ? pName : ""; + return m_pAnimNode->GetParamName(paramType); } ////////////////////////////////////////////////////////////////////////// -const char* CUiAnimViewAnimNode::GetParamNameForTrack(const CUiAnimParamType& paramType, const IUiAnimTrack* track) const +AZStd::string CUiAnimViewAnimNode::GetParamNameForTrack(const CUiAnimParamType& paramType, const IUiAnimTrack* track) const { - const char* pName = m_pAnimNode->GetParamNameForTrack(paramType, track); - return pName ? pName : ""; + return m_pAnimNode->GetParamNameForTrack(paramType, track); } ////////////////////////////////////////////////////////////////////////// @@ -1413,7 +1406,7 @@ void CUiAnimViewAnimNode::UpdateDynamicParams() void CUiAnimViewAnimNode::CopyKeysToClipboard(XmlNodeRef& xmlNode, const bool bOnlySelectedKeys, const bool bOnlyFromSelectedTracks) { XmlNodeRef childNode = xmlNode->createNode("Node"); - childNode->setAttr("name", GetName()); + childNode->setAttr("name", GetName().c_str()); childNode->setAttr("type", GetType()); for (auto iter = m_childNodes.begin(); iter != m_childNodes.end(); ++iter) @@ -1557,7 +1550,7 @@ bool CUiAnimViewAnimNode::IsValidReparentingTo(CUiAnimViewAnimNode* pNewParent) } // Check if the new parent already contains a node with this name - CUiAnimViewAnimNodeBundle foundNodes = pNewParent->GetAnimNodesByName(GetName()); + CUiAnimViewAnimNodeBundle foundNodes = pNewParent->GetAnimNodesByName(GetName().c_str()); if (foundNodes.GetCount() > 1 || (foundNodes.GetCount() == 1 && foundNodes.GetNode(0) != this)) { return false; @@ -1632,7 +1625,7 @@ void CUiAnimViewAnimNode::OnSelectionChanged(const bool bSelected) { if (m_pAnimNode) { - const EUiAnimNodeType animNodeType = GetType(); + [[maybe_unused]] const EUiAnimNodeType animNodeType = GetType(); assert(animNodeType == eUiAnimNodeType_Camera || animNodeType == eUiAnimNodeType_Entity || animNodeType == eUiAnimNodeType_GeomCache); const EUiAnimNodeFlags flags = (EUiAnimNodeFlags)m_pAnimNode->GetFlags(); diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.h index 72dc7344ec..abc4a84c8c 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.h @@ -118,7 +118,7 @@ public: virtual bool IsActive(); // Name setter/getter - virtual const char* GetName() const override { return m_pAnimNode->GetName(); } + AZStd::string GetName() const override { return m_pAnimNode->GetName(); } virtual bool SetName(const char* pName) override; virtual bool CanBeRenamed() const override; @@ -164,8 +164,8 @@ public: // Param unsigned int GetParamCount() const; CUiAnimParamType GetParamType(unsigned int index) const; - const char* GetParamName(const CUiAnimParamType& paramType) const; - const char* GetParamNameForTrack(const CUiAnimParamType& paramType, const IUiAnimTrack* track) const; + AZStd::string GetParamName(const CUiAnimParamType& paramType) const; + AZStd::string GetParamNameForTrack(const CUiAnimParamType& paramType, const IUiAnimTrack* track) const; bool IsParamValid(const CUiAnimParamType& param) const; IUiAnimNode::ESupportedParamFlags GetParamFlags(const CUiAnimParamType& paramType) const; EUiAnimValue GetParamValueType(const CUiAnimParamType& paramType) const; diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewCurveEditor.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewCurveEditor.cpp index 51209c7f02..d677acea02 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewCurveEditor.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewCurveEditor.cpp @@ -8,7 +8,7 @@ #include "EditorDefs.h" -#include "Resource.h" +#include "Editor/Resource.h" #include "UiEditorAnimationBus.h" #include "UiAnimViewCurveEditor.h" diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp index 6a3afe2036..e6c2dda74c 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp @@ -15,7 +15,7 @@ // ----- End UI_ANIMATION_REVISIT #include "EditorDefs.h" -#include "Resource.h" +#include "Editor/Resource.h" #include "UiAnimViewDialog.h" @@ -70,24 +70,12 @@ ////////////////////////////////////////////////////////////////////////// namespace { - const char* s_kUiAnimViewLayoutSection = "UiAnimViewLayout"; - const char* s_kUiAnimViewSection = "DockingPaneLayouts\\UiAnimView"; - const char* s_kSplitterEntry = "Splitter"; - const char* s_kVersionEntry = "UiAnimViewLayoutVersion"; - const char* s_kUiAnimViewSettingsSection = "UiAnimView"; const char* s_kSnappingModeEntry = "SnappingMode"; const char* s_kFrameSnappingFPSEntry = "FrameSnappingFPS"; const char* s_kTickDisplayModeEntry = "TickDisplayMode"; - const char* s_kDefaultTracksEntry = "DefaultTracks"; - - const char* s_kRebarVersionEntry = "UiAnimViewReBarVersion"; - const char* s_kRebarBandEntryPrefix = "ReBarBand"; const char* s_kNoSequenceComboBoxEntry = "--- No Sequence ---"; - - const int TRACKVIEW_LAYOUT_VERSION = 0x0001; // Bump this up on every substantial pane layout change - const int TRACKVIEW_REBAR_VERSION = 0x0002; // Bump this up on every substantial rebar change } ////////////////////////////////////////////////////////////////////////// @@ -992,7 +980,7 @@ void CUiAnimViewDialog::ReloadSequencesComboBox() for (unsigned int k = 0; k < numSequences; ++k) { CUiAnimViewSequence* pSequence = pSequenceManager->GetSequenceByIndex(k); - QString fullname = pSequence->GetName(); + QString fullname = QString::fromUtf8(pSequence->GetName().c_str()); m_sequencesComboBox->addItem(fullname); } } @@ -1132,7 +1120,7 @@ void CUiAnimViewDialog::OnSequenceChanged(CUiAnimViewSequence* pSequence) if (pSequence) { - m_currentSequenceName = pSequence->GetName(); + m_currentSequenceName = QString::fromUtf8(pSequence->GetName().c_str()); pSequence->Reset(true); SaveZoomScrollSettings(); @@ -1733,7 +1721,7 @@ void CUiAnimViewDialog::OnNodeRenamed(CUiAnimViewNode* pNode, const char* pOldNa { if (m_currentSequenceName == QString(pOldName)) { - m_currentSequenceName = pNode->GetName(); + m_currentSequenceName = QString::fromUtf8(pNode->GetName().c_str()); } ReloadSequencesComboBox(); diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDopeSheetBase.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDopeSheetBase.cpp index 4e67fb520e..9f67503b73 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDopeSheetBase.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDopeSheetBase.cpp @@ -8,7 +8,7 @@ #include "EditorDefs.h" -#include "Resource.h" +#include "Editor/Resource.h" #include "UiEditorAnimationBus.h" #include "UiAnimViewDopeSheetBase.h" @@ -192,7 +192,6 @@ void CUiAnimViewDopeSheetBase::SetTimeRange(float start, float end) void CUiAnimViewDopeSheetBase::SetTimeScale(float timeScale, float fAnchorTime) { const double fOldOffset = -fAnchorTime * m_timeScale; - const double fOldScale = m_timeScale; timeScale = std::max(timeScale, 0.001f); timeScale = std::min(timeScale, 100000.0f); @@ -1308,8 +1307,6 @@ void CUiAnimViewDopeSheetBase::OnCaptureChanged() ////////////////////////////////////////////////////////////////////////// bool CUiAnimViewDopeSheetBase::IsOkToAddKeyHere(const CUiAnimViewTrack* pTrack, float time) const { - const float timeEpsilon = 0.05f; - for (unsigned int i = 0; i < pTrack->GetKeyCount(); ++i) { CUiAnimViewKeyHandle keyHandle = const_cast(pTrack)->GetKey(i); @@ -1795,8 +1792,6 @@ void CUiAnimViewDopeSheetBase::AcceptUndo() { if (UiAnimUndo::IsRecording()) { - const QPoint mousePos = mapFromGlobal(QCursor::pos()); - if (m_mouseMode == eUiAVMouseMode_Paste) { UiAnimUndoManager::Get()->Cancel(); @@ -2242,7 +2237,6 @@ void CUiAnimViewDopeSheetBase::DrawBoolTrack(const Range& timeRange, QPainter* p { int x0 = TimeToClient(timeRange.start); float t0 = timeRange.start; - QRect trackRect; const QBrush prevBrush = painter->brush(); painter->setBrush(m_visibilityBrush); @@ -2980,7 +2974,7 @@ void CUiAnimViewDopeSheetBase::DrawNodeTrack(CUiAnimViewAnimNode* pAnimNode, QPa const QRect textRect = trackRect.adjusted(4, 0, -4, 0); - QString sAnimNodeName = pAnimNode->GetName(); + QString sAnimNodeName = QString::fromUtf8(pAnimNode->GetName().c_str()); const bool hasObsoleteTrack = pAnimNode->HasObsoleteTrack(); if (hasObsoleteTrack) diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewFindDlg.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewFindDlg.cpp index 511866db43..0b4ce7f633 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewFindDlg.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewFindDlg.cpp @@ -61,8 +61,8 @@ void CUiAnimViewFindDlg::FillData() { IUiAnimNode* pNode = seq->GetNode(i); ObjName obj; - obj.m_objName = pNode->GetName(); - obj.m_directorName = pNode->HasDirectorAsParent() ? pNode->HasDirectorAsParent()->GetName() : ""; + obj.m_objName = QString::fromUtf8(pNode->GetName().c_str()); + obj.m_directorName = pNode->HasDirectorAsParent() ? QString::fromUtf8(pNode->HasDirectorAsParent()->GetName().c_str()) : ""; AZStd::string fullname = seq->GetName(); obj.m_seqName = fullname.c_str(); m_objs.push_back(obj); diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNewSequenceDialog.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNewSequenceDialog.cpp index 3dd49574fd..e7ad1b91ea 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNewSequenceDialog.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNewSequenceDialog.cpp @@ -46,7 +46,7 @@ void CUiAVNewSequenceDialog::OnOK() for (unsigned int k = 0; k < CUiAnimViewSequenceManager::GetSequenceManager()->GetCount(); ++k) { CUiAnimViewSequence* pSequence = CUiAnimViewSequenceManager::GetSequenceManager()->GetSequenceByIndex(k); - QString fullname = pSequence->GetName(); + QString fullname = QString::fromUtf8(pSequence->GetName().c_str()); if (fullname.compare(m_sequenceName, Qt::CaseInsensitive) == 0) { diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.cpp index 2b14a38015..fd9207bc13 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.cpp @@ -14,16 +14,12 @@ //////////////////////////////////////////////////////////////////////////// void CUiAnimViewKeyConstHandle::GetKey(IKey* pKey) const { - assert(m_bIsValid); - m_pTrack->GetKey(m_keyIndex, pKey); } //////////////////////////////////////////////////////////////////////////// float CUiAnimViewKeyConstHandle::GetTime() const { - assert(m_bIsValid); - return m_pTrack->GetKeyTime(m_keyIndex); } @@ -598,7 +594,7 @@ bool CUiAnimViewNode::operator<(const CUiAnimViewNode& otherNode) const if (thisTypeOrder == otherTypeOrder) { // Same node type, sort by name - return azstricmp(thisAnimNode.GetName(), otherAnimNode.GetName()) < 0; + return thisAnimNode.GetName() < otherAnimNode.GetName(); } return thisTypeOrder < otherTypeOrder; @@ -610,7 +606,7 @@ bool CUiAnimViewNode::operator<(const CUiAnimViewNode& otherNode) const if (thisTrack.GetParameterType() == otherTrack.GetParameterType()) { // Same parameter type, sort by name - return azstricmp(thisTrack.GetName(), otherTrack.GetName()) < 0; + return thisTrack.GetName() < otherTrack.GetName(); } return thisTrack.GetParameterType() < otherTrack.GetParameterType(); diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.h index 5a82d1be7f..80946eb317 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.h @@ -19,13 +19,11 @@ class CUiAnimViewKeyConstHandle { public: CUiAnimViewKeyConstHandle() - : m_bIsValid(false) - , m_keyIndex(0) + : m_keyIndex(0) , m_pTrack(nullptr) {} CUiAnimViewKeyConstHandle(const CUiAnimViewTrack* pTrack, unsigned int keyIndex) - : m_bIsValid(true) - , m_keyIndex(keyIndex) + : m_keyIndex(keyIndex) , m_pTrack(pTrack) {} void GetKey(IKey* pKey) const; @@ -33,7 +31,6 @@ public: const CUiAnimViewTrack* GetTrack() const { return m_pTrack; } private: - bool m_bIsValid; unsigned int m_keyIndex; const CUiAnimViewTrack* m_pTrack; }; @@ -159,7 +156,7 @@ public: virtual ~CUiAnimViewNode() {} // Name - virtual const char* GetName() const = 0; + virtual AZStd::string GetName() const = 0; virtual bool SetName([[maybe_unused]] const char* pName) { return false; }; virtual bool CanBeRenamed() const { return false; } diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.cpp index 74d2c7d4fb..a3aa330dca 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.cpp @@ -8,7 +8,7 @@ #include "EditorDefs.h" -#include "Resource.h" +#include "Editor/Resource.h" #include "UiEditorAnimationBus.h" #include "UiAnimViewNodes.h" #include "UiAnimViewDopeSheetBase.h" @@ -413,7 +413,7 @@ CUiAnimViewNodesCtrl::CRecord* CUiAnimViewNodesCtrl::AddAnimNodeRecord(CRecord* { CRecord* pNewRecord = new CRecord(pAnimNode); - pNewRecord->setText(0, pAnimNode->GetName()); + pNewRecord->setText(0, QString::fromUtf8(pAnimNode->GetName().c_str())); UpdateUiAnimNodeRecord(pNewRecord, pAnimNode); pParentRecord->insertChild(GetInsertPosition(pParentRecord, pAnimNode), pNewRecord); FillNodesRec(pNewRecord, pAnimNode); @@ -426,7 +426,7 @@ CUiAnimViewNodesCtrl::CRecord* CUiAnimViewNodesCtrl::AddTrackRecord(CRecord* pPa { CRecord* pNewTrackRecord = new CRecord(pTrack); pNewTrackRecord->setSizeHint(0, QSize(30, 18)); - pNewTrackRecord->setText(0, pTrack->GetName()); + pNewTrackRecord->setText(0, QString::fromUtf8(pTrack->GetName().c_str())); UpdateTrackRecord(pNewTrackRecord, pTrack); pParentRecord->insertChild(GetInsertPosition(pParentRecord, pTrack), pNewTrackRecord); FillNodesRec(pNewTrackRecord, pTrack); @@ -576,7 +576,7 @@ void CUiAnimViewNodesCtrl::UpdateUiAnimNodeRecord(CRecord* pRecord, CUiAnimViewA int nNodeImage = GetIconIndexForNode(nodeType); assert(m_imageList.contains(nNodeImage)); - QString nodeName = pAnimNode->GetName(); + QString nodeName = QString::fromUtf8(pAnimNode->GetName().c_str()); pRecord->setIcon(0, m_imageList[nNodeImage]); @@ -635,7 +635,7 @@ void CUiAnimViewNodesCtrl::OnFillItems() m_nodeToRecordMap.clear(); CRecord* pRootGroupRec = new CRecord(pSequence); - pRootGroupRec->setText(0, pSequence->GetName()); + pRootGroupRec->setText(0, QString::fromUtf8(pSequence->GetName().c_str())); QFont f = font(); f.setBold(true); pRootGroupRec->setData(0, Qt::FontRole, f); @@ -987,7 +987,7 @@ void CUiAnimViewNodesCtrl::OnNMRclick(QPoint point) if (pAnimNode) { QString matName; - GetMatNameAndSubMtlIndexFromName(matName, pAnimNode->GetName()); + GetMatNameAndSubMtlIndexFromName(matName, pAnimNode->GetName().c_str()); QString newMatName; newMatName = QStringLiteral("%1.[%2]").arg(matName).arg(cmd - eMI_SelectSubmaterialBase + 1); UiAnimUndo undo("Rename Animation node"); @@ -1096,9 +1096,6 @@ void CUiAnimViewNodesCtrl::AddGroupNodeAddItems(UiAnimContextMenu& contextMenu, contextMenu.main.addAction("Add Event Node")->setData(eMI_AddEvent); } - const bool bIsDirectorOrSequence = (pAnimNode->GetType() == eUiAnimNodeType_Director || pAnimNode->GetNodeType() == eUiAVNT_Sequence); - - #if UI_ANIMATION_REMOVED contextMenu.main.addAction("Add Comment Node")->setData(eMI_AddCommentNode); contextMenu.main.addAction("Add Console Variable")->setData(eMI_AddConsoleVariable); @@ -1232,7 +1229,7 @@ int CUiAnimViewNodesCtrl::ShowPopupMenuSingleSelection(UiAnimContextMenu& contex if (bOnNode && !pNode->IsGroupNode()) { AddMenuSeperatorConditional(contextMenu.main, bAppended); - QString string = QString("%1 Tracks").arg(pAnimNode->GetName()); + QString string = QString("%1 Tracks").arg(QString::fromUtf8(pAnimNode->GetName().c_str())); contextMenu.main.addAction(string)->setEnabled(false); bool bAppendedTrackFlag = false; @@ -1250,7 +1247,7 @@ int CUiAnimViewNodesCtrl::ShowPopupMenuSingleSelection(UiAnimContextMenu& contex continue; } - QAction* a = contextMenu.main.addAction(QString(" %1").arg(pTrack2->GetName())); + QAction* a = contextMenu.main.addAction(QString(" %1").arg(QString::fromUtf8(pTrack2->GetName().c_str()))); a->setData(eMI_ShowHideBase + childIndex); a->setCheckable(true); a->setChecked(!pTrack2->IsHidden()); @@ -1386,7 +1383,7 @@ void CUiAnimViewNodesCtrl::FillAutoCompletionListForFilter() for (unsigned int i = 0; i < animNodeCount; ++i) { - strings << QString(animNodes.GetNode(i)->GetName()); + strings << QString::fromUtf8(animNodes.GetNode(i)->GetName().c_str()); } } else @@ -1690,7 +1687,7 @@ void CUiAnimViewNodesCtrl::OnNodeRenamed(CUiAnimViewNode* pNode, [[maybe_unused] if (!m_bIgnoreNotifications) { CRecord* pNodeRecord = GetNodeRecord(pNode); - pNodeRecord->setText(0, pNode->GetName()); + pNodeRecord->setText(0, QString::fromUtf8(pNode->GetName().c_str())); update(); } diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.h index a5cce764e3..38cc6d8384 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.h @@ -56,7 +56,7 @@ public: CRecord(CUiAnimViewNode* pNode = nullptr); CUiAnimViewNode* GetNode() const { return m_pNode; } bool IsGroup() const { return m_pNode->GetChildCount() != 0; } - const QString GetName() const { return m_pNode->GetName(); } + const QString GetName() const { return QString::fromUtf8(m_pNode->GetName().c_str()); } // Workaround: CXTPReportRecord::IsVisible is // unreliable after the last visible element @@ -182,7 +182,6 @@ private: // Drag and drop CUiAnimViewAnimNodeBundle m_draggedNodes; - CUiAnimViewAnimNode* m_pDragTarget; std::unordered_map m_nodeToRecordMap; diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.cpp index d8888124a4..5d89957397 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.cpp @@ -334,7 +334,7 @@ void CUiAnimViewSequence::OnNodeRenamed(CUiAnimViewNode* pNode, const char* pOld bool bLightAnimationSetActive = GetFlags() & IUiAnimSequence::eSeqFlags_LightAnimationSet; if (bLightAnimationSetActive) { - UpdateLightAnimationRefs(pOldName, pNode->GetName()); + UpdateLightAnimationRefs(pOldName, pNode->GetName().c_str()); } if (m_bNoNotifications) @@ -488,11 +488,12 @@ void CUiAnimViewSequence::SelectSelectedNodesInViewport() assert(UiAnimUndo::IsRecording()); CUiAnimViewAnimNodeBundle selectedNodes = GetSelectedAnimNodes(); - const unsigned int numSelectedNodes = selectedNodes.GetCount(); std::vector entitiesToBeSelected; #if UI_ANIMATION_REMOVED // lights + const unsigned int numSelectedNodes = selectedNodes.GetCount(); + // Also select objects that refer to light animation const bool bLightAnimationSetActive = GetFlags() & IUiAnimSequence::eSeqFlags_LightAnimationSet; if (bLightAnimationSetActive) diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.h index 69c933509f..3aa8d74563 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.h @@ -86,7 +86,7 @@ public: // IUiAnimViewNode virtual EUiAnimViewNodeType GetNodeType() const override { return eUiAVNT_Sequence; } - virtual const char* GetName() const override { return m_pAnimSequence->GetName(); } + AZStd::string GetName() const override { return m_pAnimSequence->GetName(); } virtual bool SetName(const char* pName) override; virtual bool CanBeRenamed() const override { return true; } diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.cpp index 7a0d637a9e..4cfeeaff6a 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.cpp @@ -58,7 +58,7 @@ CUiAnimViewSequence* CUiAnimViewSequenceManager::GetSequenceByName(QString name) { CUiAnimViewSequence* pSequence = (*iter).get(); - if (pSequence->GetName() == name) + if (QString::fromUtf8(pSequence->GetName().c_str()) == name) { return pSequence; } @@ -156,8 +156,8 @@ void CUiAnimViewSequenceManager::SortSequences() std::stable_sort(m_sequences.begin(), m_sequences.end(), [](const std::unique_ptr& a, const std::unique_ptr& b) -> bool { - QString aName = a.get()->GetName(); - QString bName = b.get()->GetName(); + QString aName = QString::fromUtf8(a.get()->GetName().c_str()); + QString bName = QString::fromUtf8(b.get()->GetName().c_str()); return aName < bName; }); } diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.h index e26a1ceec3..f29f0e58e1 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.h @@ -15,6 +15,7 @@ #include #include "UiEditorAnimationBus.h" #include "UiAnimUndoManager.h" +#include "CryCommon/StlUtils.h" #include diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplineCtrl.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplineCtrl.cpp index 8edd13f8cc..61610e3c8e 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplineCtrl.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplineCtrl.cpp @@ -9,7 +9,7 @@ #include "UiEditorAnimationBus.h" #include "EditorDefs.h" -#include "Resource.h" +#include "Editor/Resource.h" #include "UiAnimViewSequenceManager.h" #include "UiAnimViewSplineCtrl.h" #include "UiAnimViewSequence.h" @@ -28,7 +28,7 @@ public: CUndoUiAnimViewSplineCtrl(CUiAnimViewSplineCtrl* pCtrl, std::vector& splineContainer) : CUndoAnimKeySelection(CUiAnimViewSequenceManager::GetSequenceManager()->GetAnimationContext()->GetSequence()) { - m_sequenceName = CUiAnimViewSequenceManager::GetSequenceManager()->GetAnimationContext()->GetSequence()->GetName(); + m_sequenceName = QString::fromUtf8(CUiAnimViewSequenceManager::GetSequenceManager()->GetAnimationContext()->GetSequence()->GetName().c_str()); m_pCtrl = pCtrl; @@ -589,7 +589,6 @@ void CUiAnimViewSplineCtrl::mouseMoveEvent(QMouseEvent* event) CUiAnimViewSequenceNotificationContext context(pSequence); - QPoint cMousePosPrev = m_cMousePos; m_cMousePos = point; if (m_editMode == SelectMode) diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.cpp index 2984e152cd..fe120d7f33 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.cpp @@ -16,6 +16,7 @@ #include "UiEditorAnimationBus.h" #include +#include ////////////////////////////////////////////////////////////////////////// void CUiAnimViewTrackBundle::AppendTrack(CUiAnimViewTrack* pTrack) @@ -404,7 +405,7 @@ void CUiAnimViewTrack::RestoreFromMemento(const CUiAnimViewTrackMemento& memento } ////////////////////////////////////////////////////////////////////////// -const char* CUiAnimViewTrack::GetName() const +AZStd::string CUiAnimViewTrack::GetName() const { CUiAnimViewNode* pParentNode = GetParentNode(); @@ -629,7 +630,7 @@ void CUiAnimViewTrack::CopyKeysToClipboard(XmlNodeRef& xmlNode, const bool bOnly EBUS_EVENT_RESULT(animationSystem, UiEditorAnimationBus, GetAnimationSystem); XmlNodeRef childNode = xmlNode->newChild("Track"); - childNode->setAttr("name", GetName()); + childNode->setAttr("name", GetName().c_str()); GetParameterType().Serialize(animationSystem, childNode, false); childNode->setAttr("valueType", GetValueType()); diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.h index a2e38edc51..b16dbf6dfa 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.h @@ -73,7 +73,7 @@ public: CUiAnimViewAnimNode* GetAnimNode() const; // Name getter - virtual const char* GetName() const; + AZStd::string GetName() const override; // CUiAnimViewNode virtual EUiAnimViewNodeType GetNodeType() const override { return eUiAVNT_Track; } diff --git a/Gems/LyShine/Code/Editor/Animation/Util/UiEditorUtils.cpp b/Gems/LyShine/Code/Editor/Animation/Util/UiEditorUtils.cpp index 82d764491f..41f7300002 100644 --- a/Gems/LyShine/Code/Editor/Animation/Util/UiEditorUtils.cpp +++ b/Gems/LyShine/Code/Editor/Animation/Util/UiEditorUtils.cpp @@ -120,7 +120,7 @@ QColor ColorLinearToGamma(ColorF col) g = (float)(g <= 0.0031308 ? (12.92 * g) : (1.055 * pow((double)g, 1.0 / 2.4) - 0.055)); b = (float)(b <= 0.0031308 ? (12.92 * b) : (1.055 * pow((double)b, 1.0 / 2.4) - 0.055)); - return QColor(FtoI(r * 255.0f), FtoI(g * 255.0f), FtoI(b * 255.0f)); + return QColor(int(r * 255.0f), int(g * 255.0f), int(b * 255.0f)); } ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/LyShine/Code/Editor/ComponentHelpers.cpp b/Gems/LyShine/Code/Editor/ComponentHelpers.cpp index b2c3d20025..d7ba13cb7c 100644 --- a/Gems/LyShine/Code/Editor/ComponentHelpers.cpp +++ b/Gems/LyShine/Code/Editor/ComponentHelpers.cpp @@ -764,7 +764,7 @@ namespace ComponentHelpers QObject::connect(action, &QAction::triggered, hierarchy, - [serializeContext, hierarchy, componentClass, items]([[maybe_unused]] bool checked) + [hierarchy, componentClass, items]([[maybe_unused]] bool checked) { EBUS_EVENT(UiEditorInternalNotificationBus, OnBeginUndoableEntitiesChange); diff --git a/Gems/LyShine/Code/Editor/EditorCommon.h b/Gems/LyShine/Code/Editor/EditorCommon.h index 9af5958c67..5a435e7dba 100644 --- a/Gems/LyShine/Code/Editor/EditorCommon.h +++ b/Gems/LyShine/Code/Editor/EditorCommon.h @@ -9,8 +9,6 @@ #include #include -#include -#include #include #include #include diff --git a/Gems/LyShine/Code/Editor/EditorMenu.cpp b/Gems/LyShine/Code/Editor/EditorMenu.cpp index 840bd206ab..8a6c93de6b 100644 --- a/Gems/LyShine/Code/Editor/EditorMenu.cpp +++ b/Gems/LyShine/Code/Editor/EditorMenu.cpp @@ -704,7 +704,7 @@ void EditorWindow::AddMenu_View() action->setEnabled(canvasLoaded); QObject::connect(action, &QAction::triggered, - [this]([[maybe_unused]] bool checked) + []([[maybe_unused]] bool checked) { gEnv->pCryFont->ReloadAllFonts(); }); diff --git a/Gems/LyShine/Code/Editor/EditorWindow.cpp b/Gems/LyShine/Code/Editor/EditorWindow.cpp index 8d7e20492d..a4ad4d7043 100644 --- a/Gems/LyShine/Code/Editor/EditorWindow.cpp +++ b/Gems/LyShine/Code/Editor/EditorWindow.cpp @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include @@ -32,7 +33,6 @@ #include #include #include -#include #define UICANVASEDITOR_SETTINGS_EDIT_MODE_STATE_KEY (QString("Edit Mode State") + " " + FileHelpers::GetAbsoluteGameDir()) #define UICANVASEDITOR_SETTINGS_EDIT_MODE_GEOM_KEY (QString("Edit Mode Geometry") + " " + FileHelpers::GetAbsoluteGameDir()) @@ -706,7 +706,7 @@ bool EditorWindow::SaveCanvasToXml(UiCanvasMetadata& canvasMetadata, bool forceA dir.append(canvasMetadata.m_canvasDisplayName.c_str()); } - QString filename = QFileDialog::getSaveFileName(nullptr, + QString filename = AzQtComponents::FileDialog::GetSaveFileName(nullptr, QString(), dir, "*." UICANVASEDITOR_CANVAS_EXTENSION, @@ -2103,24 +2103,6 @@ void EditorWindow::RestoreModeSettings(UiEditorMode mode) settings.endGroup(); // UI canvas editor } -static const char* UIEDITOR_UNLOAD_SAVED_CANVAS_METRIC_EVENT_NAME = "UiEditorUnloadSavedCanvas"; -static const char* UIEDITOR_CANVAS_ID_ATTRIBUTE_NAME = "CanvasId"; -static const char* UIEDITOR_CANVAS_WIDTH_METRIC_NAME = "CanvasWidth"; -static const char* UIEDITOR_CANVAS_HEIGHT_METRIC_NAME = "CanvasHeight"; -static const char* UIEDITOR_CANVAS_MAX_HIERARCHY_DEPTH_METRIC_NAME = "MaxHierarchyDepth"; -static const char* UIEDITOR_CANVAS_NUM_ELEMENT_METRIC_NAME = "NumElement"; -static const char* UIEDITOR_CANVAS_NUM_ELEMENTS_WITH_COMPONENT_PREFIX_METRIC_NAME = "Num"; -static const char* UIEDITOR_CANVAS_NUM_ELEMENTS_WITH_CUSTOM_COMPONENT_METRIC_NAME = "NumCustomElement"; -static const char* UIEDITOR_CANVAS_NUM_UNIQUE_CUSTOM_COMPONENT_NAME = "NumUniqueCustomComponent"; -static const char* UIEDITOR_CANVAS_NUM_AVAILABLE_CUSTOM_COMPONENT_NAME = "NumAvailableCustomComponent"; -static const char* UIEDITOR_CANVAS_NUM_ANCHOR_PRESETS_ATTRIBUTE_NAME = "NumAnchorPreset"; -static const char* UIEDITOR_CANVAS_NUM_ANCHOR_CUSTOM_ATTRIBUTE_NAME = "NumAnchorCustom"; -static const char* UIEDITOR_CANVAS_NUM_PIVOT_PRESETS_ATTRIBUTE_NAME = "NumPivotPreset"; -static const char* UIEDITOR_CANVAS_NUM_PIVOT_CUSTOM_ATTRIBUTE_NAME = "NumPivotCustom"; -static const char* UIEDITOR_CANVAS_NUM_ROTATED_ELEMENT_METRIC_NAME = "NumRotatedElement"; -static const char* UIEDITOR_CANVAS_NUM_SCALED_ELEMENT_METRIC_NAME = "NumScaledElement"; -static const char* UIEDITOR_CANVAS_NUM_SCALE_TO_DEVICE_ELEMENT_METRIC_NAME = "NumScaleToDeviceElement"; - int EditorWindow::GetCanvasMaxHierarchyDepth(const LyShine::EntityArray& rootChildElements) { int depth = 0; @@ -2130,8 +2112,8 @@ int EditorWindow::GetCanvasMaxHierarchyDepth(const LyShine::EntityArray& rootChi return depth; } - int numChildrenCurLevel = rootChildElements.size(); - int numChildrenNextLevel = 0; + size_t numChildrenCurLevel = rootChildElements.size(); + size_t numChildrenNextLevel = 0; std::list elementList(rootChildElements.begin(), rootChildElements.end()); while (!elementList.empty()) { diff --git a/Gems/LyShine/Code/Editor/GuideHelpers.cpp b/Gems/LyShine/Code/Editor/GuideHelpers.cpp index 7efbaf236f..eb5966568e 100644 --- a/Gems/LyShine/Code/Editor/GuideHelpers.cpp +++ b/Gems/LyShine/Code/Editor/GuideHelpers.cpp @@ -172,20 +172,23 @@ namespace GuideHelpers // the line is drawn as the inverse of the background color AZ::Color guideColor(1.0f, 1.0f, 1.0f, 1.0f); - int blendMode = GS_BLSRC_ONEMINUSDSTCOL|GS_BLDST_ZERO; + + CDraw2d::RenderState renderState; + renderState.m_blendState.m_blendSource = AZ::RHI::BlendFactor::ColorDestInverse; + renderState.m_blendState.m_blendDest = AZ::RHI::BlendFactor::Zero; // Draw the guide line if (guideIsVertical) { AZ::Vector2 start(viewportPoint.GetX(), 0); AZ::Vector2 end(viewportPoint.GetX(), viewportSize.GetY()); - draw2d.DrawLine(start, end, guideColor, blendMode); + draw2d.DrawLine(start, end, guideColor, IDraw2d::Rounding::Nearest, renderState); } else { AZ::Vector2 start(0, viewportPoint.GetY()); AZ::Vector2 end(viewportSize.GetX(), viewportPoint.GetY()); - draw2d.DrawLine(start, end, guideColor, blendMode); + draw2d.DrawLine(start, end, guideColor, IDraw2d::Rounding::Nearest, renderState); } } diff --git a/Gems/LyShine/Code/Editor/HierarchyHelpers.cpp b/Gems/LyShine/Code/Editor/HierarchyHelpers.cpp index 5d97ecb83c..91e5781608 100644 --- a/Gems/LyShine/Code/Editor/HierarchyHelpers.cpp +++ b/Gems/LyShine/Code/Editor/HierarchyHelpers.cpp @@ -186,16 +186,20 @@ namespace HierarchyHelpers if (listOfNewlyCreatedTopLevelElements.empty()) { // This happens when the serialization version numbers DON'T match. - QMessageBox(QMessageBox::Critical, - "Error", - QString("Failed to load elements. The serialization format is incompatible."), - QMessageBox::Ok, widget->GetEditorWindow()).exec(); + QMessageBox( + QMessageBox::Critical, "Error", QString("Failed to load elements. The serialization format is incompatible."), QMessageBox::Ok, + widget->GetEditorWindow()) + .exec(); // Nothing more to do. return LyShine::EntityArray(); } - completeListOfNewlyCreatedTopLevelElements.push_back(listOfNewlyCreatedTopLevelElements); + completeListOfNewlyCreatedTopLevelElements.insert( + completeListOfNewlyCreatedTopLevelElements.end(), + listOfNewlyCreatedTopLevelElements.begin(), + listOfNewlyCreatedTopLevelElements.end() + ); } } diff --git a/Gems/LyShine/Code/Editor/HierarchyMenu.cpp b/Gems/LyShine/Code/Editor/HierarchyMenu.cpp index ab0c250434..004fe53354 100644 --- a/Gems/LyShine/Code/Editor/HierarchyMenu.cpp +++ b/Gems/LyShine/Code/Editor/HierarchyMenu.cpp @@ -236,14 +236,14 @@ void HierarchyMenu::SliceMenuItems(HierarchyWidget* hierarchy, if (showMask & Show::kNewSlice) { QAction* action = addAction("Make Cascaded Slice from Selected Slices && Entities..."); - QObject::connect(action, &QAction::triggered, hierarchy, [hierarchy, selectedEntities] + QObject::connect(action, &QAction::triggered, hierarchy, [hierarchy] { hierarchy->GetEditorWindow()->GetSliceManager()->MakeSliceFromSelectedItems(hierarchy, true); } ); action = addAction(QObject::tr("Make Detached Slice from Selected Entities...")); - QObject::connect(action, &QAction::triggered, hierarchy, [hierarchy, selectedEntities] + QObject::connect(action, &QAction::triggered, hierarchy, [hierarchy] { hierarchy->GetEditorWindow()->GetSliceManager()->MakeSliceFromSelectedItems(hierarchy, false); } @@ -330,7 +330,7 @@ void HierarchyMenu::SliceMenuItems(HierarchyWidget* hierarchy, slicesAddedToMenu.push_back(sliceAsset.GetId()); QAction* action = menu->addAction(assetPath.c_str()); - QObject::connect(action, &QAction::triggered, [this, hierarchy, sliceAsset] + QObject::connect(action, &QAction::triggered, [hierarchy, sliceAsset] { hierarchy->GetEditorWindow()->EditSliceInNewTab(sliceAsset.GetId()); } diff --git a/Gems/LyShine/Code/Editor/HierarchyWidget.h b/Gems/LyShine/Code/Editor/HierarchyWidget.h index 324eda207b..0dbe423b38 100644 --- a/Gems/LyShine/Code/Editor/HierarchyWidget.h +++ b/Gems/LyShine/Code/Editor/HierarchyWidget.h @@ -29,6 +29,8 @@ class HierarchyWidget public: + AZ_CLASS_ALLOCATOR(HierarchyWidget, AZ::SystemAllocator, 0); + HierarchyWidget(EditorWindow* editorWindow); virtual ~HierarchyWidget(); diff --git a/Gems/LyShine/Code/Editor/MainToolbar.cpp b/Gems/LyShine/Code/Editor/MainToolbar.cpp index ee2d3db7b5..dd0ab39f89 100644 --- a/Gems/LyShine/Code/Editor/MainToolbar.cpp +++ b/Gems/LyShine/Code/Editor/MainToolbar.cpp @@ -32,7 +32,7 @@ MainToolbar::MainToolbar(EditorWindow* parent) QObject::connect(m_zoomFactorSpinBox, QOverload::of(&AzQtComponents::DoubleSpinBox::valueChanged), - [this, parent](double value) + [parent](double value) { parent->GetViewport()->GetViewportInteraction()->SetCanvasZoomPercent(static_cast(value)); }); diff --git a/Gems/LyShine/Code/Editor/PropertiesContainer.cpp b/Gems/LyShine/Code/Editor/PropertiesContainer.cpp index 9f9023f84d..e86cffcc08 100644 --- a/Gems/LyShine/Code/Editor/PropertiesContainer.cpp +++ b/Gems/LyShine/Code/Editor/PropertiesContainer.cpp @@ -544,7 +544,7 @@ AzToolsFramework::ComponentEditor* PropertiesContainer::CreateComponentEditor([[ { AzToolsFramework::ComponentEditor* editor = new AzToolsFramework::ComponentEditor(m_serializeContext, m_propertiesWidget, this); connect(editor, &AzToolsFramework::ComponentEditor::OnDisplayComponentEditorMenu, this, &PropertiesContainer::OnDisplayUiComponentEditorMenu); - + m_rowLayout->addWidget(editor); editor->hide(); @@ -788,7 +788,7 @@ void PropertiesContainer::Update() } else // more than one entity selected { - displayName = (ToString(selectedEntitiesAmount) + " elements selected").c_str(); + displayName = QString::number(selectedEntitiesAmount) + " elements selected"; } // Update the selected element display name diff --git a/Gems/LyShine/Code/Editor/PropertiesContainer.h b/Gems/LyShine/Code/Editor/PropertiesContainer.h index 0d47444281..209a2354ad 100644 --- a/Gems/LyShine/Code/Editor/PropertiesContainer.h +++ b/Gems/LyShine/Code/Editor/PropertiesContainer.h @@ -119,7 +119,6 @@ private: PropertiesWidget* m_propertiesWidget; EditorWindow* m_editorWindow; - QWidget* m_containerWidget; QWidget* m_componentListContents; QVBoxLayout* m_rowLayout; QLineEdit* m_selectedEntityDisplayNameWidget; diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerAnchor.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerAnchor.cpp index 8e00b6f277..5ffba22df6 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerAnchor.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerAnchor.cpp @@ -350,10 +350,8 @@ void PropertyHandlerAnchor::WriteGUIValuesIntoProperty(size_t index, PropertyAnc } } -bool PropertyHandlerAnchor::ReadValuesIntoGUI(size_t index, PropertyAnchorCtrl* GUI, const property_t& instance, [[maybe_unused]] AzToolsFramework::InstanceDataNode* node) +bool PropertyHandlerAnchor::ReadValuesIntoGUI([[maybe_unused]] size_t index, PropertyAnchorCtrl* GUI, const property_t& instance, [[maybe_unused]] AzToolsFramework::InstanceDataNode* node) { - (int)index; - AzQtComponents::VectorInput* ctrl = GUI->GetPropertyVectorCtrl(); ctrl->blockSignals(true); diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerChar.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerChar.cpp index b3cacec065..d99cd9bf20 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerChar.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerChar.cpp @@ -27,19 +27,16 @@ void PropertyHandlerChar::ConsumeAttribute(AzToolsFramework::PropertyStringLineE { } -void PropertyHandlerChar::WriteGUIValuesIntoProperty(size_t index, AzToolsFramework::PropertyStringLineEditCtrl* GUI, property_t& instance, [[maybe_unused]] AzToolsFramework::InstanceDataNode* node) +void PropertyHandlerChar::WriteGUIValuesIntoProperty([[maybe_unused]] size_t index, AzToolsFramework::PropertyStringLineEditCtrl* GUI, property_t& instance, [[maybe_unused]] AzToolsFramework::InstanceDataNode* node) { - (int)index; AZStd::string str = GUI->value(); wchar_t character = '\0'; AZStd::to_wstring(&character, 1, str.c_str()); instance = character; } -bool PropertyHandlerChar::ReadValuesIntoGUI(size_t index, AzToolsFramework::PropertyStringLineEditCtrl* GUI, const property_t& instance, [[maybe_unused]] AzToolsFramework::InstanceDataNode* node) +bool PropertyHandlerChar::ReadValuesIntoGUI([[maybe_unused]] size_t index, AzToolsFramework::PropertyStringLineEditCtrl* GUI, const property_t& instance, [[maybe_unused]] AzToolsFramework::InstanceDataNode* node) { - (int)index; - GUI->blockSignals(true); { // NOTE: this assumes the uint32_t can be interpreted as a wchar_t, it seems to diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerDirectory.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerDirectory.cpp index 1f3e28b077..5a464b2210 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerDirectory.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerDirectory.cpp @@ -53,7 +53,7 @@ PropertyDirectoryCtrl::PropertyDirectoryCtrl(QWidget* parent) QObject::connect(refreshButton, &QPushButton::clicked, - [this]([[maybe_unused]] bool checked) + []([[maybe_unused]] bool checked) { UiEditorRefreshDirectoryNotificationBus::Broadcast(&UiEditorRefreshDirectoryNotificationInterface::OnRefreshDirectory); }); diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerOffset.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerOffset.cpp index 22f87b5b53..b8a34ae314 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerOffset.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerOffset.cpp @@ -106,10 +106,8 @@ void PropertyHandlerOffset::WriteGUIValuesIntoProperty(size_t index, AzQtCompone EBUS_EVENT_ID(id, UiTransform2dBus, SetOffsets, newInternalOffset); } -bool PropertyHandlerOffset::ReadValuesIntoGUI(size_t index, AzQtComponents::VectorInput* GUI, const UiTransform2dInterface::Offsets& instance, AzToolsFramework::InstanceDataNode* node) +bool PropertyHandlerOffset::ReadValuesIntoGUI([[maybe_unused]] size_t index, AzQtComponents::VectorInput* GUI, const UiTransform2dInterface::Offsets& instance, AzToolsFramework::InstanceDataNode* node) { - (int)index; - // IMPORTANT: We DON'T need to do validation of data here because that's // done for us BEFORE we get here. We DO need to set the labels here. diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerPivot.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerPivot.cpp index 47d98cf68a..3f89b2fe74 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerPivot.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerPivot.cpp @@ -143,10 +143,8 @@ void PropertyHandlerPivot::WriteGUIValuesIntoProperty(size_t index, PropertyPivo } } -bool PropertyHandlerPivot::ReadValuesIntoGUI(size_t index, PropertyPivotCtrl* GUI, const property_t& instance, [[maybe_unused]] AzToolsFramework::InstanceDataNode* node) +bool PropertyHandlerPivot::ReadValuesIntoGUI([[maybe_unused]] size_t index, PropertyPivotCtrl* GUI, const property_t& instance, [[maybe_unused]] AzToolsFramework::InstanceDataNode* node) { - (int)index; - AzQtComponents::VectorInput* ctrl = GUI->GetPropertyVectorCtrl(); ctrl->blockSignals(true); diff --git a/Gems/LyShine/Code/Editor/SerializeHelpers.cpp b/Gems/LyShine/Code/Editor/SerializeHelpers.cpp index 724b6dee14..f9ce70caec 100644 --- a/Gems/LyShine/Code/Editor/SerializeHelpers.cpp +++ b/Gems/LyShine/Code/Editor/SerializeHelpers.cpp @@ -243,11 +243,14 @@ namespace SerializeHelpers insertBefore); } - // if a list of entities was passed then add all the entities that we added + // if a list of entities was passed then add all the entities that we added // to the list if (cumulativeListOfCreatedEntities) { - cumulativeListOfCreatedEntities->push_back(validatedListOfNewlyCreatedTopLevelElements); + cumulativeListOfCreatedEntities->insert( + cumulativeListOfCreatedEntities->end(), + validatedListOfNewlyCreatedTopLevelElements.begin(), + validatedListOfNewlyCreatedTopLevelElements.end()); } } @@ -363,7 +366,7 @@ namespace SerializeHelpers entityRestoreInfos.insert(entityRestoreInfos.end(), unserializedEntities->m_entityRestoreInfos.begin(), unserializedEntities->m_entityRestoreInfos.end()); entityRestoreInfos.insert(entityRestoreInfos.end(), - unserializedEntities->m_childEntityRestoreInfos.begin(), unserializedEntities->m_childEntityRestoreInfos.end()); + unserializedEntities->m_childEntityRestoreInfos.begin(), unserializedEntities->m_childEntityRestoreInfos.end()); } } // namespace EntityHelpers diff --git a/Gems/LyShine/Code/Editor/SpriteBorderEditor.cpp b/Gems/LyShine/Code/Editor/SpriteBorderEditor.cpp index 04f655123c..93d77bd174 100644 --- a/Gems/LyShine/Code/Editor/SpriteBorderEditor.cpp +++ b/Gems/LyShine/Code/Editor/SpriteBorderEditor.cpp @@ -227,7 +227,6 @@ void SpriteBorderEditor::DisplaySelectedCell(AZ::u32 cellIndex) // Determine how much we need to scale the view to fit the cell // contents to the displayed properties image. const AZ::Vector2 cellSize = m_sprite->GetCellSize(cellIndex); - const AZ::Vector2 cellScale = AZ::Vector2(m_unscaledSpriteSheet.size().width() / cellSize.GetX(), m_unscaledSpriteSheet.size().height() / cellSize.GetY()); // Scale-to-fit, while preserving aspect ratio. QRect croppedRect = m_unscaledSpriteSheet.rect(); diff --git a/Gems/LyShine/Code/Editor/ViewportCanvasBackground.cpp b/Gems/LyShine/Code/Editor/ViewportCanvasBackground.cpp index 4cf2c0e6b4..668c4e8024 100644 --- a/Gems/LyShine/Code/Editor/ViewportCanvasBackground.cpp +++ b/Gems/LyShine/Code/Editor/ViewportCanvasBackground.cpp @@ -50,7 +50,7 @@ void ViewportCanvasBackground::Draw(Draw2dHelper& draw2d, const AZ::Vector2& can // now draw the same as Stretched but with UV's adjusted const AZ::Vector2 uvs[4] = { AZ::Vector2(0, 0), AZ::Vector2(uvScale.GetX(), 0), AZ::Vector2(uvScale.GetX(), uvScale.GetY()), AZ::Vector2(0, uvScale.GetY()) }; AZ::Color colorWhite(1.0f, 1.0f, 1.0f, 1.0f); - IDraw2d::VertexPosColUV verts[4]; + CDraw2d::VertexPosColUV verts[4]; for (int i = 0; i < 4; ++i) { verts[i].position = positions[i]; @@ -58,5 +58,5 @@ void ViewportCanvasBackground::Draw(Draw2dHelper& draw2d, const AZ::Vector2& can verts[i].uv = uvs[i]; } - m_canvasBackground->DrawImageTiled(draw2d, verts, 1.0f); + m_canvasBackground->DrawImageTiled(draw2d, verts); } diff --git a/Gems/LyShine/Code/Editor/ViewportIcon.cpp b/Gems/LyShine/Code/Editor/ViewportIcon.cpp index e3ad68922e..3f0fdfaba0 100644 --- a/Gems/LyShine/Code/Editor/ViewportIcon.cpp +++ b/Gems/LyShine/Code/Editor/ViewportIcon.cpp @@ -48,12 +48,11 @@ void ViewportIcon::DrawImageAligned(Draw2dHelper& draw2d, AZ::Vector2& pivot, fl opacity); } -void ViewportIcon::DrawImageTiled(Draw2dHelper& draw2d, IDraw2d::VertexPosColUV* verts, [[maybe_unused]] float opacity) +void ViewportIcon::DrawImageTiled(Draw2dHelper& draw2d, CDraw2d::VertexPosColUV* verts) { // Use default blending and rounding modes - int blendMode = GS_BLSRC_SRCALPHA | GS_BLDST_ONEMINUSSRCALPHA; IDraw2d::Rounding rounding = IDraw2d::Rounding::Nearest; - draw2d.DrawQuad(m_image, verts, blendMode, rounding); + draw2d.DrawQuad(m_image, verts, rounding); } void ViewportIcon::DrawAxisAlignedBoundingBox(Draw2dHelper& draw2d, AZ::Vector2 bound0, AZ::Vector2 bound1) @@ -64,7 +63,7 @@ void ViewportIcon::DrawAxisAlignedBoundingBox(Draw2dHelper& draw2d, AZ::Vector2 float endTexCoordU = fabsf((bound1.GetX() - bound0.GetX()) * pixelLengthForDottedLineTexture); float endTexCoordV = fabsf((bound1.GetY() - bound0.GetY()) * pixelLengthForDottedLineTexture); - IDraw2d::VertexPosColUV verts[2]; + CDraw2d::VertexPosColUV verts[2]; { verts[0].color = dottedColor; verts[1].color = dottedColor; @@ -159,7 +158,7 @@ void ViewportIcon::Draw(Draw2dHelper& draw2d, AZ::Vector2 anchorPos, const AZ::M AZ::Matrix4x4 moveFromPivotSpaceMat = AZ::Matrix4x4::CreateTranslation(pivot3); AZ::Matrix4x4 newTransform = transform * moveFromPivotSpaceMat * rotMat * moveToPivotSpaceMat; - IDraw2d::VertexPosColUV verts[4]; + CDraw2d::VertexPosColUV verts[4]; // points are a clockwise quad static const AZ::Vector2 uvs[4] = { AZ::Vector2(0.0f, 0.0f), AZ::Vector2(1.0f, 0.0f), AZ::Vector2(1.0f, 1.0f), AZ::Vector2(0.0f, 1.0f) @@ -252,7 +251,7 @@ void ViewportIcon::DrawDistanceLine(Draw2dHelper& draw2d, AZ::Vector2 start, AZ: const float pixelLengthForDottedLineTexture = 8.0f; float endTexCoordU = length / pixelLengthForDottedLineTexture; - IDraw2d::VertexPosColUV verts[2]; + CDraw2d::VertexPosColUV verts[2]; verts[0].position = start; verts[0].color = dottedColor; diff --git a/Gems/LyShine/Code/Editor/ViewportIcon.h b/Gems/LyShine/Code/Editor/ViewportIcon.h index c7391d9f46..f815b244e9 100644 --- a/Gems/LyShine/Code/Editor/ViewportIcon.h +++ b/Gems/LyShine/Code/Editor/ViewportIcon.h @@ -20,7 +20,7 @@ public: void DrawImageAligned(Draw2dHelper& draw2d, AZ::Vector2& pivot, float opacity); - void DrawImageTiled(Draw2dHelper& draw2d, IDraw2d::VertexPosColUV* verts, float opacity); + void DrawImageTiled(Draw2dHelper& draw2d, CDraw2d::VertexPosColUV* verts); void Draw(Draw2dHelper& draw2d, AZ::Vector2 anchorPos, const AZ::Matrix4x4& transform, float iconRot = 0.0f, AZ::Color color = AZ::Color(1.0f, 1.0f, 1.0f, 1.0f)) const; diff --git a/Gems/LyShine/Code/Editor/ViewportInteraction.h b/Gems/LyShine/Code/Editor/ViewportInteraction.h index 100d1fdb1e..a104d87634 100644 --- a/Gems/LyShine/Code/Editor/ViewportInteraction.h +++ b/Gems/LyShine/Code/Editor/ViewportInteraction.h @@ -261,7 +261,6 @@ private: // data AZStd::string m_cursorStr; QCursor m_cursorRotate; - bool m_inObjectPickMode = false; ViewportInteraction::InteractionMode m_interactionModeBeforePickMode; AZ::EntityId m_hoverElement; bool m_entityPickedOnMousePress; // used to ignore mouse move/release events if element was picked on the mouse press diff --git a/Gems/LyShine/Code/Include/LyShine/Draw2d.h b/Gems/LyShine/Code/Include/LyShine/Draw2d.h index d6e255f6f7..6c848a7f96 100644 --- a/Gems/LyShine/Code/Include/LyShine/Draw2d.h +++ b/Gems/LyShine/Code/Include/LyShine/Draw2d.h @@ -26,6 +26,65 @@ class CDraw2d : public IDraw2d // LYSHINE_ATOM_TODO - keep around until gEnv->pLyShine is replaced by bus interface , public AZ::Render::Bootstrap::NotificationBus::Handler { +public: // types + + struct RenderState + { + RenderState() + { + m_blendState.m_enable = true; + m_blendState.m_blendSource = AZ::RHI::BlendFactor::AlphaSource; + m_blendState.m_blendDest = AZ::RHI::BlendFactor::AlphaSourceInverse; + + m_depthState.m_enable = false; + } + + AZ::RHI::TargetBlendState m_blendState; + AZ::RHI::DepthState m_depthState; + }; + + //! Struct used to pass additional image options. + // + //! If this is not passed then the defaults are used + struct ImageOptions + { + AZ::Vector3 color = AZ::Vector3(1.0f, 1.0f, 1.0f); + Rounding pixelRounding = Rounding::Nearest; + RenderState m_renderState; + }; + + //! Struct used to pass additional text options - mostly ones that do not change from call to call. + // + //! If this is not passed then the defaults below are used + struct TextOptions + { + AZStd::string fontName; //!< default is "default" + unsigned int effectIndex; //!< default is 0 + AZ::Vector3 color; //!< default is (1,1,1) + HAlign horizontalAlignment; //!< default is HAlign::Left + VAlign verticalAlignment; //!< default is VAlign::Top + AZ::Vector2 dropShadowOffset; //!< default is (0,0), zero offset means no drop shadow is drawn + AZ::Color dropShadowColor; //!< default is (0,0,0,0), zero alpha means no drop shadow is drawn + float rotation; //!< default is 0 + bool depthTestEnabled; //!< default is false + }; + + //! Used to pass in arrays of vertices (e.g. to DrawQuad) + struct VertexPosColUV + { + VertexPosColUV() {} + VertexPosColUV(const AZ::Vector2& inPos, const AZ::Color& inColor, const AZ::Vector2& inUV) + { + position = inPos; + color = inColor; + uv = inUV; + } + + AZ::Vector2 position; //!< 2D position of vertex + AZ::Color color; //!< Float color + AZ::Vector2 uv; //!< Texture coordinate + }; + public: // member functions //! Constructor, constructed by the LyShine class @@ -81,40 +140,34 @@ public: // member functions // //! \param texId The texture ID returned by ITexture::GetTextureID() //! \param verts An array of 4 vertices, in clockwise order (e.g. top left, top right, bottom right, bottom left) - //! \param blendMode UseDefault means default blend mode (currently GS_BLSRC_SRCALPHA | GS_BLDST_ONEMINUSSRCALPHA) //! \param pixelRounding Whether and how to round pixel coordinates - //! \param baseState Additional render state to pass to or into value passed to renderer SetState + //! \param renderState Blend mode and depth state virtual void DrawQuad(AZ::Data::Instance image, VertexPosColUV* verts, - int blendMode = UseDefault, Rounding pixelRounding = Rounding::Nearest, - int baseState = UseDefault); + const RenderState& renderState = RenderState{}); //! Draw a line // //! \param start The start position //! \param end The end position //! \param color The color of the line - //! \param blendMode UseDefault means default blend mode (currently GS_BLSRC_SRCALPHA | GS_BLDST_ONEMINUSSRCALPHA) //! \param pixelRounding Whether and how to round pixel coordinates - //! \param baseState Additional render state to pass to or into value passed to renderer SetState + //! \param renderState Blend mode and depth state virtual void DrawLine(AZ::Vector2 start, AZ::Vector2 end, AZ::Color color, - int blendMode = UseDefault, IDraw2d::Rounding pixelRounding = IDraw2d::Rounding::Nearest, - int baseState = UseDefault); + const RenderState& renderState = RenderState{}); //! Draw a line with a texture so it can be dotted or dashed // //! \param texId The texture ID returned by ITexture::GetTextureID() //! \param verts An array of 2 vertices for the start and end points of the line - //! \param blendMode UseDefault means default blend mode (currently GS_BLSRC_SRCALPHA | GS_BLDST_ONEMINUSSRCALPHA) //! \param pixelRounding Whether and how to round pixel coordinates - //! \param baseState Additional render state to pass to or into value passed to renderer SetState + //! \param renderState Blend mode and depth state virtual void DrawLineTextured(AZ::Data::Instance image, VertexPosColUV* verts, - int blendMode = UseDefault, IDraw2d::Rounding pixelRounding = IDraw2d::Rounding::Nearest, - int baseState = UseDefault); + const RenderState& renderState = RenderState{}); //! Draw a text string. Only supports ASCII text. // //! The font and effect used to render the text are specified in the textOptions structure @@ -225,7 +278,7 @@ protected: // types and constants AZ::Vector2 m_texCoords[4]; uint32 m_packedColors[4]; AZ::Data::Instance m_image; - int m_state; + RenderState m_renderState; }; class DeferredLine @@ -241,7 +294,7 @@ protected: // types and constants AZ::Vector2 m_points[2]; AZ::Vector2 m_texCoords[2]; uint32 m_packedColors[2]; - int m_state; + RenderState m_renderState; }; class DeferredText @@ -286,7 +339,7 @@ protected: // member functions //! Helper function to render a text string void DrawTextInternal(const char* textString, AzFramework::FontId fontId, unsigned int effectIndex, AZ::Vector2 position, float pointSize, AZ::Color color, float rotation, - HAlign horizontalAlignment, VAlign verticalAlignment, int baseState); + HAlign horizontalAlignment, VAlign verticalAlignment, bool depthTestEnabled); //! Draw or defer a quad void DrawOrDeferQuad(const DeferredQuad* quad); @@ -397,39 +450,39 @@ public: // member functions //! Draw a textured quad where the position, color and uv of each point is specified explicitly // //! See IDraw2d:DrawQuad for parameter descriptions - void DrawQuad(AZ::Data::Instance image, IDraw2d::VertexPosColUV* verts, int blendMode = IDraw2d::UseDefault, + void DrawQuad(AZ::Data::Instance image, CDraw2d::VertexPosColUV* verts, IDraw2d::Rounding pixelRounding = IDraw2d::Rounding::Nearest, - int baseState = IDraw2d::UseDefault) + const CDraw2d::RenderState& renderState = CDraw2d::RenderState{}) { if (m_draw2d) { - m_draw2d->DrawQuad(image, verts, blendMode, pixelRounding, baseState); + m_draw2d->DrawQuad(image, verts, pixelRounding, renderState); } } //! Draw a line // //! See IDraw2d:DrawLine for parameter descriptions - void DrawLine(AZ::Vector2 start, AZ::Vector2 end, AZ::Color color, int blendMode = IDraw2d::UseDefault, + void DrawLine(AZ::Vector2 start, AZ::Vector2 end, AZ::Color color, IDraw2d::Rounding pixelRounding = IDraw2d::Rounding::Nearest, - int baseState = IDraw2d::UseDefault) + const CDraw2d::RenderState& renderState = CDraw2d::RenderState{}) { if (m_draw2d) { - m_draw2d->DrawLine(start, end, color, blendMode, pixelRounding, baseState); + m_draw2d->DrawLine(start, end, color, pixelRounding, renderState); } } //! Draw a line with a texture so it can be dotted or dashed // //! See IDraw2d:DrawLineTextured for parameter descriptions - void DrawLineTextured(AZ::Data::Instance image, IDraw2d::VertexPosColUV* verts, int blendMode = IDraw2d::UseDefault, + void DrawLineTextured(AZ::Data::Instance image, CDraw2d::VertexPosColUV* verts, IDraw2d::Rounding pixelRounding = IDraw2d::Rounding::Nearest, - int baseState = IDraw2d::UseDefault) + const CDraw2d::RenderState& renderState = CDraw2d::RenderState{}) { if (m_draw2d) { - m_draw2d->DrawLineTextured(image, verts, blendMode, pixelRounding, baseState); + m_draw2d->DrawLineTextured(image, verts, pixelRounding, renderState); } } @@ -478,7 +531,7 @@ public: // member functions // State management //! Set the blend mode used for images, default is GS_BLSRC_SRCALPHA|GS_BLDST_ONEMINUSSRCALPHA. - void SetImageBlendMode(int mode) { m_imageOptions.blendMode = mode; } + void SetImageBlendMode(const AZ::RHI::TargetBlendState& blendState) { m_imageOptions.m_renderState.m_blendState = blendState; } //! Set the color used for DrawImage and other image drawing. void SetImageColor(AZ::Vector3 color) { m_imageOptions.color = color; } @@ -487,7 +540,7 @@ public: // member functions void SetImagePixelRounding(IDraw2d::Rounding round) { m_imageOptions.pixelRounding = round; } //! Set the base state (that blend mode etc is combined with) used for images, default is GS_NODEPTHTEST. - void SetImageBaseState(int state) { m_imageOptions.baseState = state; } + void SetImageDepthState(const AZ::RHI::DepthState& depthState) { m_imageOptions.m_renderState.m_depthState = depthState; } //! Set the text font. void SetTextFont(AZStd::string_view fontName) { m_textOptions.fontName = fontName; } @@ -518,8 +571,11 @@ public: // member functions m_textOptions.rotation = rotation; } - //! Set the base state (that blend mode etc is combined with) used for text, default is GS_NODEPTHTEST. - void SetTextBaseState(int state) { m_textOptions.baseState = state; } + //! Set wheter to enable depth test for the text + void SetTextDepthTestEnabled(bool enabled) + { + m_textOptions.depthTestEnabled = enabled; + } public: // static member functions @@ -565,8 +621,8 @@ public: // static member functions protected: // attributes - IDraw2d::ImageOptions m_imageOptions; //!< image options are stored locally and updated by member functions - IDraw2d::TextOptions m_textOptions; //!< text options are stored locally and updated by member functions + CDraw2d::ImageOptions m_imageOptions; //!< image options are stored locally and updated by member functions + CDraw2d::TextOptions m_textOptions; //!< text options are stored locally and updated by member functions CDraw2d* m_draw2d; bool m_previousDeferCalls; }; diff --git a/Gems/LyShine/Code/Source/Animation/2DSpline.h b/Gems/LyShine/Code/Source/Animation/2DSpline.h index b831bd669a..92494ed78f 100644 --- a/Gems/LyShine/Code/Source/Animation/2DSpline.h +++ b/Gems/LyShine/Code/Source/Animation/2DSpline.h @@ -694,7 +694,6 @@ namespace UiSpline Vec2 interpolate_tangent(float time, float& u) { Vec2 tangent; - const float epsilon = 0.001f; int curr = seek_key(time); int next = curr + 1; assert(0 <= curr && next < num_keys()); diff --git a/Gems/LyShine/Code/Source/Animation/AnimNode.cpp b/Gems/LyShine/Code/Source/Animation/AnimNode.cpp index a87dae6fbd..9086d68f01 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimNode.cpp +++ b/Gems/LyShine/Code/Source/Animation/AnimNode.cpp @@ -41,15 +41,6 @@ ////////////////////////////////////////////////////////////////////////// static const EUiAnimCurveType DEFAULT_TRACK_TYPE = eUiAnimCurveType_BezierFloat; -// Old serialization values that are no longer -// defined in IUiAnimationSystem.h, but needed for conversion: -static const int OLD_ACURVE_GOTO = 21; -static const int OLD_APARAM_PARTICLE_COUNT_SCALE = 95; -static const int OLD_APARAM_PARTICLE_PULSE_PERIOD = 96; -static const int OLD_APARAM_PARTICLE_SCALE = 97; -static const int OLD_APARAM_PARTICLE_SPEED_SCALE = 98; -static const int OLD_APARAM_PARTICLE_STRENGTH = 99; - ////////////////////////////////////////////////////////////////////////// // CUiAnimNode. ////////////////////////////////////////////////////////////////////////// @@ -65,7 +56,7 @@ int CUiAnimNode::GetTrackCount() const return static_cast(m_tracks.size()); } -const char* CUiAnimNode::GetParamName(const CUiAnimParamType& paramType) const +AZStd::string CUiAnimNode::GetParamName(const CUiAnimParamType& paramType) const { SParamInfo info; if (GetParamInfoFromType(paramType, info)) @@ -636,7 +627,7 @@ void CUiAnimNode::Serialize(XmlNodeRef& xmlNode, bool bLoading, bool bLoadEmptyT EUiAnimNodeType nodeType = GetType(); static_cast(GetUiAnimationSystem())->SerializeNodeType(nodeType, xmlNode, bLoading, IUiAnimSequence::kSequenceVersion, m_flags); - xmlNode->setAttr("Name", GetName()); + xmlNode->setAttr("Name", GetName().c_str()); // Don't store expanded or selected flags int flags = GetFlags() & ~(eUiAnimNodeFlags_Expanded | eUiAnimNodeFlags_EntitySelected); diff --git a/Gems/LyShine/Code/Source/Animation/AnimNode.h b/Gems/LyShine/Code/Source/Animation/AnimNode.h index dc3144dfba..6ac198a5c7 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimNode.h +++ b/Gems/LyShine/Code/Source/Animation/AnimNode.h @@ -39,7 +39,7 @@ public: , valueType(_valueType) , flags(_flags) {}; - const char* name; // parameter name. + AZStd::string name; // parameter name. CUiAnimParamType paramType; // parameter id. EUiAnimValue valueType; // value type, defines type of track to use for animating this parameter. ESupportedParamFlags flags; // combination of flags from ESupportedParamFlags. @@ -58,7 +58,7 @@ public: ////////////////////////////////////////////////////////////////////////// void SetName(const char* name) override { m_name = name; }; - const char* GetName() { return m_name.c_str(); }; + AZStd::string GetName() override { return m_name; }; void SetSequence(IUiAnimSequence* pSequence) override { m_pSequence = pSequence; } // Return Animation Sequence that owns this node. @@ -81,7 +81,7 @@ public: ////////////////////////////////////////////////////////////////////////// bool IsParamValid(const CUiAnimParamType& paramType) const; - virtual const char* GetParamName(const CUiAnimParamType& param) const; + AZStd::string GetParamName(const CUiAnimParamType& param) const override; virtual EUiAnimValue GetParamValueType(const CUiAnimParamType& paramType) const; virtual IUiAnimNode::ESupportedParamFlags GetParamFlags(const CUiAnimParamType& paramType) const; virtual unsigned int GetParamCount() const { return 0; }; diff --git a/Gems/LyShine/Code/Source/Animation/AnimSplineTrack.h b/Gems/LyShine/Code/Source/Animation/AnimSplineTrack.h index cd94277795..0bc625155a 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimSplineTrack.h +++ b/Gems/LyShine/Code/Source/Animation/AnimSplineTrack.h @@ -47,7 +47,7 @@ public: virtual int GetSubTrackCount() const { return 0; }; virtual IUiAnimTrack* GetSubTrack([[maybe_unused]] int nIndex) const { return 0; }; - virtual const char* GetSubTrackName([[maybe_unused]] int nIndex) const { return NULL; }; + AZStd::string GetSubTrackName([[maybe_unused]] int nIndex) const override { return AZStd::string(); }; virtual void SetSubTrackName([[maybe_unused]] int nIndex, [[maybe_unused]] const char* name) { assert(0); } virtual const CUiAnimParamType& GetParameterType() const { return m_nParamType; }; diff --git a/Gems/LyShine/Code/Source/Animation/AnimTrack.h b/Gems/LyShine/Code/Source/Animation/AnimTrack.h index df0ae3a805..9645572e3e 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimTrack.h +++ b/Gems/LyShine/Code/Source/Animation/AnimTrack.h @@ -32,7 +32,7 @@ public: virtual int GetSubTrackCount() const { return 0; }; virtual IUiAnimTrack* GetSubTrack([[maybe_unused]] int nIndex) const { return 0; }; - virtual const char* GetSubTrackName([[maybe_unused]] int nIndex) const { return NULL; }; + AZStd::string GetSubTrackName([[maybe_unused]] int nIndex) const override { return AZStd::string(); }; virtual void SetSubTrackName([[maybe_unused]] int nIndex, [[maybe_unused]] const char* name) { assert(0); } virtual const CUiAnimParamType& GetParameterType() const { return m_nParamType; }; diff --git a/Gems/LyShine/Code/Source/Animation/AzEntityNode.cpp b/Gems/LyShine/Code/Source/Animation/AzEntityNode.cpp index 814d1404b4..cc4e70e010 100644 --- a/Gems/LyShine/Code/Source/Animation/AzEntityNode.cpp +++ b/Gems/LyShine/Code/Source/Animation/AzEntityNode.cpp @@ -27,18 +27,6 @@ #define s_nodeParams s_nodeParamsEnt #define AddSupportedParam AddSupportedParamEnt -static const float TIMEJUMPED_TRANSITION_TIME = 1.0f; -static const float EPSILON = 0.01f; - -static const char* s_VariablePrefixes[] = -{ - "n", "i", "b", "f", "s", "ei", "es", - "shader", "clr", "color", "vector", - "snd", "sound", "dialog", "tex", "texture", - "obj", "object", "file", "text", "equip", "reverbpreset", "eaxpreset", - "aianchor", "customaction", "gametoken", "seq_", "mission_", "seqid_", "lightanimation_" -}; - ////////////////////////////////////////////////////////////////////////// namespace { @@ -56,16 +44,7 @@ namespace param.flags = (IUiAnimNode::ESupportedParamFlags)flags; nodeParams.push_back(param); } - - // Quat::IsEquivalent has numerical problems with very similar values - bool CompareRotation(const Quat& q1, const Quat& q2, float epsilon) - { - return (fabs_tpl(q1.v.x - q2.v.x) <= epsilon) - && (fabs_tpl(q1.v.y - q2.v.y) <= epsilon) - && (fabs_tpl(q1.v.z - q2.v.z) <= epsilon) - && (fabs_tpl(q1.w - q2.w) <= epsilon); - } -}; +} ////////////////////////////////////////////////////////////////////////// CUiAnimAzEntityNode::CUiAnimAzEntityNode(const int id) @@ -384,7 +363,7 @@ void CUiAnimAzEntityNode::ComputeOffsetsFromElementNames() } ////////////////////////////////////////////////////////////////////////// -const char* CUiAnimAzEntityNode::GetParamName(const CUiAnimParamType& param) const +AZStd::string CUiAnimAzEntityNode::GetParamName(const CUiAnimParamType& param) const { SParamInfo info; if (GetParamInfoFromType(param, info)) @@ -402,7 +381,7 @@ const char* CUiAnimAzEntityNode::GetParamName(const CUiAnimParamType& param) con } ////////////////////////////////////////////////////////////////////////// -const char* CUiAnimAzEntityNode::GetParamNameForTrack(const CUiAnimParamType& param, const IUiAnimTrack* track) const +AZStd::string CUiAnimAzEntityNode::GetParamNameForTrack(const CUiAnimParamType& param, const IUiAnimTrack* track) const { // for Az Component Fields we use the name from the ClassElement if (param == eUiAnimParamType_AzComponentField) diff --git a/Gems/LyShine/Code/Source/Animation/AzEntityNode.h b/Gems/LyShine/Code/Source/Animation/AzEntityNode.h index 56680f1094..9771ac7be3 100644 --- a/Gems/LyShine/Code/Source/Animation/AzEntityNode.h +++ b/Gems/LyShine/Code/Source/Animation/AzEntityNode.h @@ -91,8 +91,8 @@ public: ////////////////////////////////////////////////////////////////////////// virtual unsigned int GetParamCount() const; virtual CUiAnimParamType GetParamType(unsigned int nIndex) const; - virtual const char* GetParamName(const CUiAnimParamType& param) const; - const char* GetParamNameForTrack(const CUiAnimParamType& param, const IUiAnimTrack* track) const override; + AZStd::string GetParamName(const CUiAnimParamType& param) const override; + AZStd::string GetParamNameForTrack(const CUiAnimParamType& param, const IUiAnimTrack* track) const override; static int GetParamCountStatic(); static bool GetParamInfoStatic(int nIndex, SParamInfo& info); diff --git a/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.cpp b/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.cpp index dee96ee22a..a9b7dde6cd 100644 --- a/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.cpp +++ b/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.cpp @@ -386,10 +386,10 @@ IUiAnimTrack* UiCompoundSplineTrack::GetSubTrack(int nIndex) const } ////////////////////////////////////////////////////////////////////////// -const char* UiCompoundSplineTrack::GetSubTrackName(int nIndex) const +AZStd::string UiCompoundSplineTrack::GetSubTrackName(int nIndex) const { assert(nIndex >= 0 && nIndex < m_nDimensions); - return m_subTrackNames[nIndex].c_str(); + return m_subTrackNames[nIndex]; } diff --git a/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.h b/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.h index 3ae230d4e4..127b6593fb 100644 --- a/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.h +++ b/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.h @@ -37,7 +37,7 @@ public: virtual int GetSubTrackCount() const { return m_nDimensions; }; virtual IUiAnimTrack* GetSubTrack(int nIndex) const; - virtual const char* GetSubTrackName(int nIndex) const; + AZStd::string GetSubTrackName(int nIndex) const override; virtual void SetSubTrackName(int nIndex, const char* name); virtual EUiAnimCurveType GetCurveType() { return eUiAnimCurveType_BezierFloat; }; diff --git a/Gems/LyShine/Code/Source/Animation/TrackEventTrack.h b/Gems/LyShine/Code/Source/Animation/TrackEventTrack.h index bbfba486c8..5896b19a2a 100644 --- a/Gems/LyShine/Code/Source/Animation/TrackEventTrack.h +++ b/Gems/LyShine/Code/Source/Animation/TrackEventTrack.h @@ -9,6 +9,7 @@ #pragma once #include +#include "CryCommon/StlUtils.h" #include "AnimTrack.h" #include "AnimKey.h" diff --git a/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.cpp b/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.cpp index 35fde93e83..012eaacd1b 100644 --- a/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.cpp +++ b/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.cpp @@ -16,6 +16,7 @@ #include #include +#include #include #include #include @@ -106,7 +107,6 @@ void UiAnimationSystem::DoNodeStaticInitialisation() bool UiAnimationSystem::Load(const char* pszFile, const char* pszMission) { INDENT_LOG_DURING_SCOPE (true, "UI Animation system is loading the file '%s' (mission='%s')", pszFile, pszMission); - LOADING_TIME_PROFILE_SECTION(GetISystem()); XmlNodeRef rootNode = m_pSystem->LoadXmlFromFile(pszFile); if (!rootNode) @@ -731,11 +731,11 @@ void UiAnimationSystem::StillUpdate() ////////////////////////////////////////////////////////////////////////// void UiAnimationSystem::ShowPlayedSequencesDebug() { - f32 green[4] = {0, 1, 0, 1}; - f32 purple[4] = {1, 0, 1, 1}; - f32 white[4] = {1, 1, 1, 1}; + //f32 green[4] = {0, 1, 0, 1}; + //f32 purple[4] = {1, 0, 1, 1}; + //f32 white[4] = {1, 1, 1, 1}; float y = 10.0f; - std::vector names; + AZStd::vector names; for (PlayingSequences::iterator it = m_playingSequences.begin(); it != m_playingSequences.end(); ++it) { @@ -746,8 +746,9 @@ void UiAnimationSystem::ShowPlayedSequencesDebug() continue; } - const char* fullname = playingSequence.sequence->GetName(); - gEnv->pRenderer->Draw2dLabel(1.0f, y, 1.3f, green, false, "Sequence %s : %f (x %f)", fullname, playingSequence.currentTime, playingSequence.currentSpeed); + AZ_Assert(false,"gEnv->pRenderer is always null so it can't be used here"); + //const char* fullname = playingSequence.sequence->GetName(); + //gEnv->pRenderer->Draw2dLabel(1.0f, y, 1.3f, green, false, "Sequence %s : %f (x %f)", fullname, playingSequence.currentTime, playingSequence.currentSpeed); y += 16.0f; @@ -755,23 +756,18 @@ void UiAnimationSystem::ShowPlayedSequencesDebug() { // Checks nodes which happen to be in several sequences. // Those can be a bug, since several sequences may try to control the same entity. - const char* name = playingSequence.sequence->GetNode(i)->GetName(); + AZStd::string name = playingSequence.sequence->GetNode(i)->GetName(); bool alreadyThere = false; - for (size_t k = 0; k < names.size(); ++k) + if (AZStd::find(names.begin(), names.end(), name) != names.end()) { - if (strcmp(names[k], name) == 0) - { - alreadyThere = true; - break; - } + alreadyThere = true; } - - if (alreadyThere == false) + else { names.push_back(name); } - gEnv->pRenderer->Draw2dLabel((21.0f + 100.0f * i), ((i % 2) ? (y + 8.0f) : y), 1.0f, alreadyThere ? white : purple, false, "%s", name); + //gEnv->pRenderer->Draw2dLabel((21.0f + 100.0f * i), ((i % 2) ? (y + 8.0f) : y), 1.0f, alreadyThere ? white : purple, false, "%s", name.c_str()); } y += 32.0f; diff --git a/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.h b/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.h index 8b2d6937ad..c1dbdcfcda 100644 --- a/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.h +++ b/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.h @@ -11,6 +11,7 @@ #include #include +#include struct PlayingUIAnimSequence { @@ -165,13 +166,13 @@ private: CTimeValue m_lastUpdateTime; - typedef AZStd::vector > Sequences; + using Sequences = AZStd::vector >; Sequences m_sequences; PlayingSequences m_playingSequences; - typedef std::vector TUiAnimationListenerVec; - typedef std::map TUiAnimationListenerMap; + using TUiAnimationListenerVec = AZStd::vector; + using TUiAnimationListenerMap = AZStd::map ; // a container which maps sequences to all interested listeners // listeners is a vector (could be a set in case we have a lot of listeners, stl::push_back_unique!) diff --git a/Gems/LyShine/Code/Source/Draw2d.cpp b/Gems/LyShine/Code/Source/Draw2d.cpp index b4c8d58fae..b0539900e2 100644 --- a/Gems/LyShine/Code/Source/Draw2d.cpp +++ b/Gems/LyShine/Code/Source/Draw2d.cpp @@ -5,7 +5,6 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "IFont.h" #include // for SVF_P3F_C4B_T2F which will be removed in a coming PR #include @@ -23,9 +22,6 @@ #include #include -static const int g_defaultBlendState = GS_BLSRC_SRCALPHA | GS_BLDST_ONEMINUSSRCALPHA; -static const int g_defaultBaseState = GS_NODEPTHTEST; - //////////////////////////////////////////////////////////////////////////////////////////////////// // LOCAL STATIC FUNCTIONS //////////////////////////////////////////////////////////////////////////////////////////////////// @@ -48,10 +44,6 @@ CDraw2d::CDraw2d(AZ::RPI::ViewportContextPtr viewportContext) { // These default options are set here and never change. They are stored so that if a null options // structure is passed into the draw functions then this default one can be used instead - m_defaultImageOptions.blendMode = g_defaultBlendState; - m_defaultImageOptions.color.Set(1.0f, 1.0f, 1.0f); - m_defaultImageOptions.pixelRounding = Rounding::Nearest; - m_defaultImageOptions.baseState = g_defaultBaseState; m_defaultTextOptions.fontName = "default"; m_defaultTextOptions.effectIndex = 0; @@ -61,7 +53,7 @@ CDraw2d::CDraw2d(AZ::RPI::ViewportContextPtr viewportContext) m_defaultTextOptions.dropShadowOffset.Set(0.0f, 0.0f); m_defaultTextOptions.dropShadowColor.Set(0.0f, 0.0f, 0.0f, 0.0f); m_defaultTextOptions.rotation = 0.0f; - m_defaultTextOptions.baseState = g_defaultBaseState; + m_defaultTextOptions.depthTestEnabled = false; AZ::Render::Bootstrap::NotificationBus::Handler::BusConnect(); } @@ -112,7 +104,8 @@ void CDraw2d::OnBootstrapSceneReady([[maybe_unused]] AZ::RPI::Scene* bootstrapSc {"COLOR", AZ::RHI::Format::B8G8R8A8_UNORM}, {"TEXCOORD0", AZ::RHI::Format::R32G32_FLOAT} }); m_dynamicDraw->AddDrawStateOptions(AZ::RPI::DynamicDrawContext::DrawStateOptions::PrimitiveType - | AZ::RPI::DynamicDrawContext::DrawStateOptions::BlendMode); + | AZ::RPI::DynamicDrawContext::DrawStateOptions::BlendMode + | AZ::RPI::DynamicDrawContext::DrawStateOptions::DepthState); if (uiCanvasPass) { m_dynamicDraw->SetOutputScope(uiCanvasPass); @@ -124,12 +117,6 @@ void CDraw2d::OnBootstrapSceneReady([[maybe_unused]] AZ::RPI::Scene* bootstrapSc } m_dynamicDraw->EndInit(); - AZ::RHI::TargetBlendState targetBlendState; - targetBlendState.m_enable = true; - targetBlendState.m_blendSource = AZ::RHI::BlendFactor::AlphaSource; - targetBlendState.m_blendDest = AZ::RHI::BlendFactor::AlphaSourceInverse; - m_dynamicDraw->SetTarget0BlendState(targetBlendState); - // Cache draw srg input indices for later use static const char textureIndexName[] = "m_texture"; static const char worldToProjIndexName[] = "m_worldToProj"; @@ -154,8 +141,6 @@ void CDraw2d::DrawImage(AZ::Data::Instance image, AZ::Vector2 po AZ::Color color = AZ::Color::CreateFromVector3AndFloat(actualImageOptions->color, opacity); AZ::u32 packedColor = PackARGB8888(color); - int blendMode = actualImageOptions->blendMode; - // Depending on the requested pixel rounding setting we may round position to an exact pixel AZ::Vector2 pos = Draw2dHelper::RoundXY(position, actualImageOptions->pixelRounding); @@ -189,7 +174,7 @@ void CDraw2d::DrawImage(AZ::Data::Instance image, AZ::Vector2 po quad.m_image = image; // add the blendMode flags to the base state - quad.m_state = blendMode | actualImageOptions->baseState; + quad.m_renderState = actualImageOptions->m_renderState; // apply rotation if requested if (rotation != 0.0f) @@ -212,11 +197,9 @@ void CDraw2d::DrawImageAligned(AZ::Data::Instance image, AZ::Vec } //////////////////////////////////////////////////////////////////////////////////////////////////// -void CDraw2d::DrawQuad(AZ::Data::Instance image, VertexPosColUV* verts, int blendMode, Rounding pixelRounding, int baseState) +void CDraw2d::DrawQuad(AZ::Data::Instance image, VertexPosColUV* verts, Rounding pixelRounding, + const CDraw2d::RenderState& renderState) { - int actualBlendMode = (blendMode == -1) ? g_defaultBlendState : blendMode; - int actualBaseState = (baseState == -1) ? g_defaultBaseState : baseState; - // define quad DeferredQuad quad; for (int i = 0; i < 4; ++i) @@ -228,20 +211,17 @@ void CDraw2d::DrawQuad(AZ::Data::Instance image, VertexPosColUV* quad.m_image = image; // add the blendMode flags to the base state - quad.m_state = actualBlendMode | actualBaseState; + quad.m_renderState = renderState; DrawOrDeferQuad(&quad); } //////////////////////////////////////////////////////////////////////////////////////////////////// -void CDraw2d::DrawLine(AZ::Vector2 start, AZ::Vector2 end, AZ::Color color, int blendMode, Rounding pixelRounding, int baseState) +void CDraw2d::DrawLine(AZ::Vector2 start, AZ::Vector2 end, AZ::Color color, Rounding pixelRounding, + const CDraw2d::RenderState& renderState) { - int actualBaseState = (baseState == -1) ? g_defaultBaseState : baseState; - auto image = AZ::RPI::ImageSystemInterface::Get()->GetSystemImage(AZ::RPI::SystemImage::White); - int actualBlendMode = (blendMode == -1) ? g_defaultBlendState : blendMode; - // define line uint32 packedColor = PackARGB8888(color); @@ -258,19 +238,16 @@ void CDraw2d::DrawLine(AZ::Vector2 start, AZ::Vector2 end, AZ::Color color, int line.m_packedColors[1] = packedColor; // add the blendMode flags to the base state - line.m_state = actualBlendMode | actualBaseState; + line.m_renderState = renderState; DrawOrDeferLine(&line); } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////// -void CDraw2d::DrawLineTextured(AZ::Data::Instance image, VertexPosColUV* verts, int blendMode, Rounding pixelRounding, int baseState) +void CDraw2d::DrawLineTextured(AZ::Data::Instance image, VertexPosColUV* verts, Rounding pixelRounding, + const CDraw2d::RenderState& renderState) { - int actualBaseState = (baseState == -1) ? g_defaultBaseState : baseState; - - int actualBlendMode = (blendMode == -1) ? g_defaultBlendState : blendMode; - // define line DeferredLine line; line.m_image = image; @@ -283,7 +260,7 @@ void CDraw2d::DrawLineTextured(AZ::Data::Instance image, VertexP } // add the blendMode flags to the base state - line.m_state = actualBlendMode | actualBaseState; + line.m_renderState = renderState; DrawOrDeferLine(&line); } @@ -313,7 +290,7 @@ void CDraw2d::DrawText(const char* textString, AZ::Vector2 position, float point dropShadowPosition, pointSize, actualTextOptions->dropShadowColor, actualTextOptions->rotation, actualTextOptions->horizontalAlignment, actualTextOptions->verticalAlignment, - actualTextOptions->baseState); + actualTextOptions->depthTestEnabled); } // draw the text string @@ -322,7 +299,7 @@ void CDraw2d::DrawText(const char* textString, AZ::Vector2 position, float point position, pointSize, textColor, actualTextOptions->rotation, actualTextOptions->horizontalAlignment, actualTextOptions->verticalAlignment, - actualTextOptions->baseState); + actualTextOptions->depthTestEnabled); } void CDraw2d::DrawRectOutlineTextured(AZ::Data::Instance image, @@ -594,7 +571,7 @@ void CDraw2d::RotatePointsAboutPivot(AZ::Vector2* points, [[maybe_unused]] int n //////////////////////////////////////////////////////////////////////////////////////////////////// void CDraw2d::DrawTextInternal(const char* textString, AzFramework::FontId fontId, unsigned int effectIndex, AZ::Vector2 position, float pointSize, AZ::Color color, float rotation, - HAlign horizontalAlignment, VAlign verticalAlignment, [[maybe_unused]] int baseState) + HAlign horizontalAlignment, VAlign verticalAlignment, bool depthTestEnabled) { // FFont.cpp uses the alpha value of the color to decide whether to use the color, if the alpha value is zero // (in a ColorB format) then the color set via SetColor is ignored and it usually ends up drawing with an alpha of 1. @@ -651,7 +628,7 @@ void CDraw2d::DrawTextInternal(const char* textString, AzFramework::FontId fontI drawParams.m_hAlign = hAlignment; drawParams.m_vAlign = vAlignment; drawParams.m_monospace = false; - drawParams.m_depthTest = false; + drawParams.m_depthTest = depthTestEnabled; drawParams.m_virtual800x600ScreenSize = false; drawParams.m_scaleWithWindow = false; drawParams.m_multiline = true; @@ -809,6 +786,8 @@ void CDraw2d::DeferredQuad::Draw(AZ::RHI::Ptr dynam // Add the primitive to the dynamic draw context for drawing dynamicDraw->SetPrimitiveType(AZ::RHI::PrimitiveTopology::TriangleList); + dynamicDraw->SetDepthState(m_renderState.m_depthState); + dynamicDraw->SetTarget0BlendState(m_renderState.m_blendState); dynamicDraw->DrawLinear(vertices, NUM_VERTS, drawSrg); } @@ -868,6 +847,8 @@ void CDraw2d::DeferredLine::Draw(AZ::RHI::Ptr dynam // Add the primitive to the dynamic draw context for drawing dynamicDraw->SetPrimitiveType(AZ::RHI::PrimitiveTopology::LineList); + dynamicDraw->SetDepthState(m_renderState.m_depthState); + dynamicDraw->SetTarget0BlendState(m_renderState.m_blendState); dynamicDraw->DrawLinear(vertices, NUM_VERTS, drawSrg); } @@ -966,4 +947,3 @@ void CDraw2d::DeferredText::Draw([[maybe_unused]] AZ::RHI::PtrpSystem, PROFILE_UI); - if (!m_uiRenderer->IsReady()) { return; @@ -408,8 +405,6 @@ void CLyShine::Update(float deltaTimeInSeconds) //////////////////////////////////////////////////////////////////////////////////////////////////// void CLyShine::Render() { - FRAME_PROFILER(__FUNCTION__, gEnv->pSystem, PROFILE_UI); - if (AZ::RHI::IsNullRenderer()) { return; @@ -587,8 +582,6 @@ AZ::Vector2 CLyShine::GetUiCursorPosition() //////////////////////////////////////////////////////////////////////////////////////////////////// bool CLyShine::OnInputChannelEventFiltered(const AzFramework::InputChannel& inputChannel) { - FUNCTION_PROFILER(GetISystem(), PROFILE_ACTION); - // disable UI inputs when console is open except for a primary release // if we ignore the primary release when there is an active interactable then it will miss its release // which leaves it in a bad state. E.g. a drag operation will be left in flight and not properly @@ -624,8 +617,6 @@ bool CLyShine::OnInputChannelEventFiltered(const AzFramework::InputChannel& inpu //////////////////////////////////////////////////////////////////////////////////////////////////// bool CLyShine::OnInputTextEventFiltered(const AZStd::string& textUTF8) { - FUNCTION_PROFILER(GetISystem(), PROFILE_ACTION); - if (gEnv->pConsole->GetStatus()) // disable UI inputs when console is open { return false; diff --git a/Gems/LyShine/Code/Source/LyShine.h b/Gems/LyShine/Code/Source/LyShine.h index 19a4e664e5..065ad59f80 100644 --- a/Gems/LyShine/Code/Source/LyShine.h +++ b/Gems/LyShine/Code/Source/LyShine.h @@ -155,8 +155,6 @@ private: // static member functions private: // data - ISystem* m_system; // store a pointer to system rather than relying on env.pSystem - std::unique_ptr m_draw2d; // using a pointer rather than an instance to avoid including Draw2d.h std::unique_ptr m_uiRenderer; // using a pointer rather than an instance to avoid including UiRenderer.h AZStd::shared_ptr m_uiRendererForEditor; diff --git a/Gems/LyShine/Code/Source/LyShineDebug.cpp b/Gems/LyShine/Code/Source/LyShineDebug.cpp index a30f816c73..15894fe4aa 100644 --- a/Gems/LyShine/Code/Source/LyShineDebug.cpp +++ b/Gems/LyShine/Code/Source/LyShineDebug.cpp @@ -7,7 +7,6 @@ */ #include "LyShineDebug.h" #include "IConsole.h" -#include "IRenderer.h" #include #include @@ -39,7 +38,7 @@ AllocateConstIntCVar(LyShineDebug, CV_r_DebugUIDraw2dLine); AllocateConstIntCVar(LyShineDebug, CV_r_DebugUIDraw2dDefer); static const int g_numColors = 8; -static const char* g_colorNames[g_numColors] = +[[maybe_unused]] static const char* g_colorNames[g_numColors] = { "white", "red", @@ -51,7 +50,7 @@ static const char* g_colorNames[g_numColors] = "black" }; -static AZ::Vector3 g_colorVec3[g_numColors] = +[[maybe_unused]] static AZ::Vector3 g_colorVec3[g_numColors] = { AZ::Vector3(1.0f, 1.0f, 1.0f), AZ::Vector3(1.0f, 0.0f, 0.0f), @@ -64,37 +63,37 @@ static AZ::Vector3 g_colorVec3[g_numColors] = }; static const int g_numSrcBlendModes = 11; -static int g_srcBlendModes[g_numSrcBlendModes] = +[[maybe_unused]] static AZ::RHI::BlendFactor g_srcBlendModes[g_numSrcBlendModes] = { - GS_BLSRC_ZERO, - GS_BLSRC_ONE, - GS_BLSRC_DSTCOL, - GS_BLSRC_ONEMINUSDSTCOL, - GS_BLSRC_SRCALPHA, - GS_BLSRC_ONEMINUSSRCALPHA, - GS_BLSRC_DSTALPHA, - GS_BLSRC_ONEMINUSDSTALPHA, - GS_BLSRC_ALPHASATURATE, - GS_BLSRC_SRCALPHA_A_ZERO, // separate alpha blend state - GS_BLSRC_SRC1ALPHA, // dual source blending + AZ::RHI::BlendFactor::Zero, + AZ::RHI::BlendFactor::One, + AZ::RHI::BlendFactor::ColorDest, + AZ::RHI::BlendFactor::ColorDestInverse, + AZ::RHI::BlendFactor::AlphaSource, + AZ::RHI::BlendFactor::AlphaSourceInverse, + AZ::RHI::BlendFactor::AlphaDest, + AZ::RHI::BlendFactor::AlphaDestInverse, + AZ::RHI::BlendFactor::AlphaSourceSaturate, + AZ::RHI::BlendFactor::Factor, + AZ::RHI::BlendFactor::AlphaSource1 }; static const int g_numDstBlendModes = 10; -static int g_dstBlendModes[g_numDstBlendModes] = +[[maybe_unused]] static AZ::RHI::BlendFactor g_dstBlendModes[g_numDstBlendModes] = { - GS_BLDST_ZERO, - GS_BLDST_ONE, - GS_BLDST_SRCCOL, - GS_BLDST_ONEMINUSSRCCOL, - GS_BLDST_SRCALPHA, - GS_BLDST_ONEMINUSSRCALPHA, - GS_BLDST_DSTALPHA, - GS_BLDST_ONEMINUSDSTALPHA, - GS_BLDST_ONE_A_ZERO, // separate alpha blend state - GS_BLDST_ONEMINUSSRC1ALPHA, // dual source blending + AZ::RHI::BlendFactor::Zero, + AZ::RHI::BlendFactor::One, + AZ::RHI::BlendFactor::ColorSource, + AZ::RHI::BlendFactor::ColorSourceInverse, + AZ::RHI::BlendFactor::AlphaSource, + AZ::RHI::BlendFactor::AlphaSourceInverse, + AZ::RHI::BlendFactor::AlphaDest, + AZ::RHI::BlendFactor::AlphaDestInverse, + AZ::RHI::BlendFactor::FactorInverse, + AZ::RHI::BlendFactor::AlphaSource1Inverse }; -static bool g_deferDrawsToEndOfFrame = false; +[[maybe_unused]] static bool g_deferDrawsToEndOfFrame = false; //////////////////////////////////////////////////////////////////////////////////////////////////// // LOCAL STATIC FUNCTIONS @@ -378,7 +377,7 @@ static void DebugDrawColoredBox(AZ::Vector2 pos, AZ::Vector2 size, AZ::Color col { CDraw2d* draw2d = Draw2dHelper::GetDefaultDraw2d(); - IDraw2d::ImageOptions imageOptions = draw2d->GetDefaultImageOptions(); + CDraw2d::ImageOptions imageOptions = draw2d->GetDefaultImageOptions(); imageOptions.color = color.GetAsVector3(); auto whiteTexture = AZ::RPI::ImageSystemInterface::Get()->GetSystemImage(AZ::RPI::SystemImage::White); draw2d->DrawImageAligned(whiteTexture, pos, size, horizontalAlignment, verticalAlignment, @@ -393,7 +392,7 @@ static void DebugDrawStringWithSizeBox(AZStd::string_view font, unsigned int eff { CDraw2d* draw2d = Draw2dHelper::GetDefaultDraw2d(); - IDraw2d::TextOptions textOptions = draw2d->GetDefaultTextOptions(); + CDraw2d::TextOptions textOptions = draw2d->GetDefaultTextOptions(); if (!font.empty()) { textOptions.fontName = font; @@ -619,7 +618,7 @@ static AZ::Vector2 DebugDrawFontColorTestBox(AZ::Vector2 pos, const char* string float pointSize = 32.0f; const float spacing = 6.0f; - IDraw2d::TextOptions textOptions = draw2d->GetDefaultTextOptions(); + CDraw2d::TextOptions textOptions = draw2d->GetDefaultTextOptions(); textOptions.effectIndex = 1; // no drop shadow baked in textOptions.color = color; @@ -743,7 +742,7 @@ static void DebugDraw2dImageColor() AZ::Data::Instance texture = GetMonoAlphaTestTexture(); - IDraw2d::ImageOptions imageOptions = draw2d->GetDefaultImageOptions(); + CDraw2d::ImageOptions imageOptions = draw2d->GetDefaultImageOptions(); draw2d->DrawText( "Testing image colors, image is black and white, top row is opacity=1, bottom row is opacity = 0.5", @@ -781,7 +780,7 @@ static void DebugDraw2dImageBlendMode() AZ::Data::Instance texture = GetColorAlphaTestTexture(); - IDraw2d::ImageOptions imageOptions = draw2d->GetDefaultImageOptions(); + CDraw2d::ImageOptions imageOptions = draw2d->GetDefaultImageOptions(); draw2d->DrawText("Testing blend modes, src blend changes across x-axis, dst blend changes across y axis", AZ::Vector2(20, 20), 16); @@ -802,7 +801,7 @@ static void DebugDraw2dImageBlendMode() AZ::Vector2 pos(xStart + xSpacing * srcIndex, yStart + ySpacing * dstIndex); // first draw a background with varying color and alpha - IDraw2d::VertexPosColUV verts[4] = + CDraw2d::VertexPosColUV verts[4] = { { // top left AZ::Vector2(pos.GetX(), pos.GetY()), @@ -829,7 +828,9 @@ static void DebugDraw2dImageBlendMode() // Draw the image with this color - imageOptions.blendMode = g_srcBlendModes[srcIndex] | g_dstBlendModes[dstIndex]; + CDraw2d::RenderState renderState; + renderState.m_blendState.m_blendSource = g_srcBlendModes[srcIndex]; + renderState.m_blendState.m_blendDest = g_dstBlendModes[dstIndex]; draw2d->DrawImage(texture, pos, size, 1.0f, 0.0f, 0, 0, &imageOptions); } } @@ -844,7 +845,7 @@ static void DebugDraw2dImageUVs() AZ::Data::Instance texture = GetColorTestTexture(); - IDraw2d::ImageOptions imageOptions = draw2d->GetDefaultImageOptions(); + CDraw2d::ImageOptions imageOptions = draw2d->GetDefaultImageOptions(); draw2d->DrawText( "Testing DrawImage with minMaxTexCoords. Full image, top left quadrant, middle section, full flipped", @@ -893,7 +894,7 @@ static void DebugDraw2dImagePixelRounding() AZ::Data::Instance texture = GetColorTestTexture(); - IDraw2d::ImageOptions imageOptions = draw2d->GetDefaultImageOptions(); + CDraw2d::ImageOptions imageOptions = draw2d->GetDefaultImageOptions(); draw2d->DrawText("Testing DrawImage pixel rounding options", AZ::Vector2(20, 20), 16); @@ -932,7 +933,7 @@ static void DebugDraw2dLineBasic() { CDraw2d* draw2d = Draw2dHelper::GetDefaultDraw2d(); - IDraw2d::ImageOptions imageOptions = draw2d->GetDefaultImageOptions(); + CDraw2d::ImageOptions imageOptions = draw2d->GetDefaultImageOptions(); draw2d->DrawText("Testing DrawLine", AZ::Vector2(20, 20), 16); diff --git a/Gems/LyShine/Code/Source/LyShineLoadScreen.cpp b/Gems/LyShine/Code/Source/LyShineLoadScreen.cpp index 64a577efa2..279c0527bd 100644 --- a/Gems/LyShine/Code/Source/LyShineLoadScreen.cpp +++ b/Gems/LyShine/Code/Source/LyShineLoadScreen.cpp @@ -61,8 +61,11 @@ namespace LyShine { return false; } - - if (!gEnv || !gEnv->pRenderer || !gEnv->pLyShine) + //TODO: gEnv->pRenderer is always null, fix the logic below + AZ_ErrorOnce(nullptr, false, "NotifyGameLoadStart needs to be removed/ported to use Atom"); + return false; +#if 0 + if (!gEnv || gEnv->pRenderer || !gEnv->pLyShine) { return false; } @@ -87,6 +90,7 @@ namespace LyShine } return m_isPlaying; +#endif } bool LyShineLoadScreenComponent::NotifyLevelLoadStart(bool usingLoadingThread) @@ -97,7 +101,11 @@ namespace LyShine return false; } - if (!gEnv || !gEnv->pRenderer || !gEnv->pLyShine) + AZ_ErrorOnce(nullptr, false, "NotifyLevelLoadStart needs to be removed/ported to use Atom"); + return false; + //TODO: gEnv->pRenderer is always null, fix the logic below +#if 0 + if (!gEnv || gEnv->pRenderer || !gEnv->pLyShine) { return false; } @@ -123,6 +131,7 @@ namespace LyShine } return m_isPlaying; +#endif } void LyShineLoadScreenComponent::NotifyLoadEnd() @@ -130,10 +139,13 @@ namespace LyShine Reset(); } - void LyShineLoadScreenComponent::UpdateAndRender(float deltaTimeInSeconds) + void LyShineLoadScreenComponent::UpdateAndRender([[maybe_unused]] float deltaTimeInSeconds) { AZ_Assert(m_isPlaying, "LyShineLoadScreenComponent should not be connected to LoadScreenUpdateNotificationBus while not playing"); + AZ_ErrorOnce(nullptr, m_isPlaying && gEnv && gEnv->pLyShine, "UpdateAndRender needs to be removed/ported to use Atom"); + //TODO: gEnv->pRenderer is always null, fix the logic below +#if 0 if (m_isPlaying && gEnv && gEnv->pLyShine && gEnv->pRenderer) { AZ_Assert(GetCurrentThreadId() == gEnv->mMainThreadId, "UpdateAndRender should only be called from the main thread"); @@ -148,6 +160,7 @@ namespace LyShine gEnv->pLyShine->Render(); gEnv->pRenderer->EndFrame(); } +#endif } void LyShineLoadScreenComponent::LoadThreadUpdate([[maybe_unused]] float deltaTimeInSeconds) diff --git a/Gems/LyShine/Code/Source/LyShineSystemComponent.cpp b/Gems/LyShine/Code/Source/LyShineSystemComponent.cpp index f05cbc04d4..f815e2ddbd 100644 --- a/Gems/LyShine/Code/Source/LyShineSystemComponent.cpp +++ b/Gems/LyShine/Code/Source/LyShineSystemComponent.cpp @@ -205,6 +205,10 @@ namespace LyShine //////////////////////////////////////////////////////////////////////////////////////////////////// void LyShineSystemComponent::Deactivate() { +#if !defined(LYSHINE_BUILDER) && !defined(LYSHINE_TESTS) + m_loadTemplatesHandler.Disconnect(); +#endif + UiSystemBus::Handler::BusDisconnect(); UiSystemToolsBus::Handler::BusDisconnect(); UiFrameworkBus::Handler::BusDisconnect(); @@ -342,8 +346,6 @@ namespace LyShine // Build a map of entity Ids to their parent Ids, for faster lookup during processing. for (AZ::Entity* exportParentEntity : exportSliceEntities) { - AZ::EntityId exportParentId = exportParentEntity->GetId(); - UiElementComponent* exportParentComponent = exportParentEntity->FindComponent(); if (!exportParentComponent) { diff --git a/Gems/LyShine/Code/Source/RenderGraph.cpp b/Gems/LyShine/Code/Source/RenderGraph.cpp index 51f62fc7ad..567c29eecd 100644 --- a/Gems/LyShine/Code/Source/RenderGraph.cpp +++ b/Gems/LyShine/Code/Source/RenderGraph.cpp @@ -21,9 +21,6 @@ namespace LyShine { - static const char* s_maskIncrProfileMarker = "UI_MASK_STENCIL_INCR"; - static const char* s_maskDecrProfileMarker = "UI_MASK_STENCIL_DECR"; - enum UiColorOp { ColorOp_Unused = 0, // reusing shader flag value, FixedPipelineEmu shader uses 0 to mean eCO_NOSET @@ -41,7 +38,7 @@ namespace LyShine //////////////////////////////////////////////////////////////////////////////////////////////////// PrimitiveListRenderNode::PrimitiveListRenderNode(const AZ::Data::Instance& texture, - bool isClampTextureMode, bool isTextureSRGB, bool preMultiplyAlpha, int blendModeState) + bool isClampTextureMode, bool isTextureSRGB, bool preMultiplyAlpha, const AZ::RHI::TargetBlendState& blendModeState) : RenderNode(RenderNodeType::PrimitiveList) , m_numTextures(1) , m_isTextureSRGB(isTextureSRGB) @@ -58,7 +55,7 @@ namespace LyShine //////////////////////////////////////////////////////////////////////////////////////////////////// PrimitiveListRenderNode::PrimitiveListRenderNode(const AZ::Data::Instance& texture, const AZ::Data::Instance& maskTexture, bool isClampTextureMode, bool isTextureSRGB, - bool preMultiplyAlpha, AlphaMaskType alphaMaskType, int blendModeState) + bool preMultiplyAlpha, AlphaMaskType alphaMaskType, const AZ::RHI::TargetBlendState& blendModeState) : RenderNode(RenderNodeType::PrimitiveList) , m_numTextures(2) , m_isTextureSRGB(isTextureSRGB) @@ -105,9 +102,16 @@ namespace LyShine const UiRenderer::UiShaderData& uiShaderData = uiRenderer->GetUiShaderData(); - // Set render state dynamicDraw->SetStencilState(uiRenderer->GetBaseState().m_stencilState); - dynamicDraw->SetTarget0BlendState(uiRenderer->GetBaseState().m_blendState); + + // The blend factor and op is stored in m_blendModeState when the primitive is added to the graph. + // That is also when the graph determines whether a new primitive list node is needed. + // The rest of the blend properties are assigned during the render calls, so they get merged here + // and all are passed to the dynamic draw context + AZ::RHI::TargetBlendState targetBlendState = m_blendModeState; + targetBlendState.m_enable = uiRenderer->GetBaseState().m_blendStateEnabled; + targetBlendState.m_writeMask = uiRenderer->GetBaseState().m_blendStateWriteMask; + dynamicDraw->SetTarget0BlendState(targetBlendState); dynamicDraw->SetShaderVariant(uiRenderer->GetCurrentShaderVariant()); @@ -150,7 +154,7 @@ namespace LyShine // [LYSHINE_ATOM_TODO][ATOM-15073] - need to combine into a single DrawIndexed call to take advantage of the draw call // optimization done by this RenderGraph. This option will be added to DynamicDrawContext. For // now we could combine the vertices ourselves - for (const IRenderer::DynUiPrimitive& primitive : m_primitives) + for (const DynUiPrimitive& primitive : m_primitives) { dynamicDraw->DrawIndexed(primitive.m_vertices, primitive.m_numVertices, primitive.m_indices, primitive.m_numIndices, AZ::RHI::IndexFormat::Uint16, drawSrg); } @@ -159,7 +163,7 @@ namespace LyShine } //////////////////////////////////////////////////////////////////////////////////////////////////// - void PrimitiveListRenderNode::AddPrimitive(IRenderer::DynUiPrimitive* primitive) + void PrimitiveListRenderNode::AddPrimitive(DynUiPrimitive* primitive) { // always clear the next pointer before adding to list primitive->m_next = nullptr; @@ -170,9 +174,9 @@ namespace LyShine } //////////////////////////////////////////////////////////////////////////////////////////////////// - IRenderer::DynUiPrimitiveList& PrimitiveListRenderNode::GetPrimitives() const + DynUiPrimitiveList& PrimitiveListRenderNode::GetPrimitives() const { - return const_cast(m_primitives); + return const_cast(m_primitives); } //////////////////////////////////////////////////////////////////////////////////////////////////// @@ -194,7 +198,7 @@ namespace LyShine } //////////////////////////////////////////////////////////////////////////////////////////////////// - bool PrimitiveListRenderNode::HasSpaceToAddPrimitive(IRenderer::DynUiPrimitive* primitive) const + bool PrimitiveListRenderNode::HasSpaceToAddPrimitive(DynUiPrimitive* primitive) const { return primitive->m_numVertices + m_totalNumVertices < std::numeric_limits::max(); } @@ -218,9 +222,9 @@ namespace LyShine { size_t numPrims = m_primitives.size(); size_t primCount = 0; - const IRenderer::DynUiPrimitive* lastPrim = nullptr; + const DynUiPrimitive* lastPrim = nullptr; int highestTexUnit = 0; - for (const IRenderer::DynUiPrimitive& primitive : m_primitives) + for (const DynUiPrimitive& primitive : m_primitives) { if (primCount > numPrims) { @@ -357,13 +361,13 @@ namespace LyShine // if either of the draw flags are checked then we may want to draw the renderable component(s) // on this element, otherwise use the color mask to stop them rendering - curBaseState.m_blendState.m_enable = false; - curBaseState.m_blendState.m_writeMask = 0x0; + curBaseState.m_blendStateEnabled = false; + curBaseState.m_blendStateWriteMask = 0x0; if ((m_drawBehind && firstPass) || (m_drawInFront && !firstPass)) { - curBaseState.m_blendState.m_enable = true; - curBaseState.m_blendState.m_writeMask = 0xF; + curBaseState.m_blendStateEnabled = true; + curBaseState.m_blendStateWriteMask = 0xF; } if (m_isMaskingEnabled) @@ -510,19 +514,10 @@ namespace LyShine if (m_dynamicDraw) { - UiRenderer::BaseState priorBaseState = uiRenderer->GetBaseState(); - - UiRenderer::BaseState curBaseState = priorBaseState; - curBaseState.m_blendState.m_blendAlphaSource = AZ::RHI::BlendFactor::One; - curBaseState.m_blendState.m_blendAlphaDest = AZ::RHI::BlendFactor::AlphaSource1Inverse; - uiRenderer->SetBaseState(curBaseState); - for (RenderNode* renderNode : m_childRenderNodes) { renderNode->Render(uiRenderer, m_modelViewProjMat, m_dynamicDraw); } - - uiRenderer->SetBaseState(priorBaseState); } else { @@ -709,25 +704,8 @@ namespace LyShine } } - void RenderGraph::AddPrimitive( - IRenderer::DynUiPrimitive* primitive, - ITexture* texture, - bool isClampTextureMode, - bool isTextureSRGB, - bool isTexturePremultipliedAlpha, - BlendMode blendMode) - { - // LYSHINE_ATOM_TODO - this function will be removed when all IRenderer references are gone from UI components - AZ_UNUSED(primitive); - AZ_UNUSED(texture); - AZ_UNUSED(isClampTextureMode); - AZ_UNUSED(isTextureSRGB); - AZ_UNUSED(isTexturePremultipliedAlpha); - AZ_UNUSED(blendMode); - } - //////////////////////////////////////////////////////////////////////////////////////////////////// - void RenderGraph::AddPrimitiveAtom(IRenderer::DynUiPrimitive* primitive, const AZ::Data::Instance& texture, + void RenderGraph::AddPrimitiveAtom(DynUiPrimitive* primitive, const AZ::Data::Instance& texture, bool isClampTextureMode, bool isTextureSRGB, bool isTexturePremultipliedAlpha, BlendMode blendMode) { AZStd::vector* renderNodeList = m_renderNodeListStack.top(); @@ -742,7 +720,7 @@ namespace LyShine // The shader can be outputing premultiplied alpha EITHER if the input texture is premultiplied alpha OR if the // shader is doing the premultiply of the output color bool isShaderOutputPremultAlpha = isPreMultiplyAlpha || isTexturePremultipliedAlpha; - int blendModeState = GetBlendModeState(blendMode, isShaderOutputPremultAlpha); + AZ::RHI::TargetBlendState blendModeState = GetBlendModeState(blendMode, isShaderOutputPremultAlpha); PrimitiveListRenderNode* renderNodeToAddTo = nullptr; if (!renderNodeList->empty()) @@ -800,15 +778,7 @@ namespace LyShine } //////////////////////////////////////////////////////////////////////////////////////////////////// - void RenderGraph::AddAlphaMaskPrimitive([[maybe_unused]] IRenderer::DynUiPrimitive* primitive, - [[maybe_unused]] ITexture* texture, [[maybe_unused]] ITexture* maskTexture, - [[maybe_unused]] bool isClampTextureMode, [[maybe_unused]] bool isTextureSRGB, [[maybe_unused]] bool isTexturePremultipliedAlpha, [[maybe_unused]] BlendMode blendMode) - { - // LYSHINE_ATOM_TODO - this function will be removed when all IRenderer references are gone from UI components - } - - //////////////////////////////////////////////////////////////////////////////////////////////////// - void RenderGraph::AddAlphaMaskPrimitiveAtom(IRenderer::DynUiPrimitive* primitive, + void RenderGraph::AddAlphaMaskPrimitiveAtom(DynUiPrimitive* primitive, AZ::Data::Instance contentAttachmentImage, AZ::Data::Instance maskAttachmentImage, bool isClampTextureMode, @@ -829,7 +799,7 @@ namespace LyShine // The shader can be outputing premultiplied alpha EITHER if the input texture is premultiplied alpha OR if the // shader is doing the premultiply of the output color bool isShaderOutputPremultAlpha = isPreMultiplyAlpha || isTexturePremultipliedAlpha; - int blendModeState = GetBlendModeState(blendMode, isShaderOutputPremultAlpha); + AZ::RHI::TargetBlendState blendModeState = GetBlendModeState(blendMode, isShaderOutputPremultAlpha); AlphaMaskType alphaMaskType = isShaderOutputPremultAlpha ? AlphaMaskType::ModulateAlphaAndColor : AlphaMaskType::ModulateAlpha; PrimitiveListRenderNode* renderNodeToAddTo = nullptr; @@ -892,7 +862,7 @@ namespace LyShine } //////////////////////////////////////////////////////////////////////////////////////////////////// - IRenderer::DynUiPrimitive* RenderGraph::GetDynamicQuadPrimitive(const AZ::Vector2* positions, uint32 packedColor) + DynUiPrimitive* RenderGraph::GetDynamicQuadPrimitive(const AZ::Vector2* positions, uint32 packedColor) { const int numVertsInQuad = 4; const int numIndicesInQuad = 6; @@ -975,9 +945,12 @@ namespace LyShine { AZ::RHI::Ptr dynamicDraw = uiRenderer->GetDynamicDrawContext(); - // Disable stencil and enable blend/color write + // Reset stencil and blend mode to defaults (disable stencil and enable blend/color write) dynamicDraw->SetStencilState(uiRenderer->GetBaseState().m_stencilState); - dynamicDraw->SetTarget0BlendState(uiRenderer->GetBaseState().m_blendState); + AZ::RHI::TargetBlendState defaultBlendModeState = GetBlendModeState(LyShine::BlendMode::Normal, false); + defaultBlendModeState.m_enable = uiRenderer->GetBaseState().m_blendStateEnabled; + defaultBlendModeState.m_writeMask = uiRenderer->GetBaseState().m_blendStateWriteMask; + dynamicDraw->SetTarget0BlendState(defaultBlendModeState); // First render the render targets, they are sorted so that more deeply nested ones are rendered first. // They only need to be rendered the first time that a render graph is rendered after it has been built. @@ -1181,10 +1154,10 @@ namespace LyShine const PrimitiveListRenderNode* primListRenderNode = static_cast(renderNode); - IRenderer::DynUiPrimitiveList& primitives = primListRenderNode->GetPrimitives(); + DynUiPrimitiveList& primitives = primListRenderNode->GetPrimitives(); info.m_numPrimitives += static_cast(primitives.size()); { - for (const IRenderer::DynUiPrimitive& primitive : primitives) + for (const DynUiPrimitive& primitive : primitives) { info.m_numTriangles += primitive.m_numIndices / 3; } @@ -1197,7 +1170,7 @@ namespace LyShine if (prevPrimListNode) { - if (prevPrimListNode->GetBlendModeState() != primListRenderNode->GetBlendModeState()) + if (!(prevPrimListNode->GetBlendModeState() == primListRenderNode->GetBlendModeState())) { ++info.m_numNodesDueToBlendMode; } @@ -1365,17 +1338,18 @@ namespace LyShine previousNodeAlreadyCounted = false; } - IRenderer::DynUiPrimitiveList& primitives = primListRenderNode->GetPrimitives(); + DynUiPrimitiveList& primitives = primListRenderNode->GetPrimitives(); int numPrimitives = static_cast(primitives.size()); int numTriangles = 0; - for (const IRenderer::DynUiPrimitive& primitive : primitives) + for (const DynUiPrimitive& primitive : primitives) { numTriangles += primitive.m_numIndices / 3; } // Write heading to logfile for this render node - logLine = AZStd::string::format("%sPrimitive render node (Blend mode=%d, SRGB=%d). NumPrims=%d, NumTris=%d. Using textures:\r\n", - indent.c_str(), primListRenderNode->GetBlendModeState(), + AZ::RHI::TargetBlendState blendMode = primListRenderNode->GetBlendModeState(); + logLine = AZStd::string::format("%sPrimitive render node (Blend mode=%s, SRGB=%d). NumPrims=%d, NumTris=%d. Using textures:\r\n", + indent.c_str(), blendMode.m_enable ? "enabled" : "disabled", static_cast(primListRenderNode->GetIsTextureSRGB()), numPrimitives, numTriangles); AZ::IO::LocalFileIO::GetInstance()->Write(fileHandle, logLine.c_str(), logLine.size()); @@ -1443,8 +1417,9 @@ namespace LyShine #endif //////////////////////////////////////////////////////////////////////////////////////////////////// - int RenderGraph::GetBlendModeState(LyShine::BlendMode blendMode, bool isShaderOutputPremultAlpha) const - { + AZ::RHI::TargetBlendState RenderGraph::GetBlendModeState(LyShine::BlendMode blendMode, [[maybe_unused]] bool isShaderOutputPremultAlpha) const + { + // LYSHINE_ATOM_TODO - remove "premultiplyAlpha" parameter and clean up related comments as I think it's no longer needed // Our blend modes are complicated by the fact we want to be able to render to a render target and then // render from that render target texture to the back buffer and get the same result as if we rendered // directly to the back buffer. This should be true even if the render target texture does not end up @@ -1471,72 +1446,47 @@ namespace LyShine // properly might require shader changes also. For the moment using the blend modes Screen, Darken, Lighten // is not encouraged, especially when rendering to a render target. - int flags = GS_BLSRC_SRCALPHA | GS_BLDST_ONEMINUSSRCALPHA; // the default + AZ::RHI::TargetBlendState blendState; + blendState.m_blendAlphaSource = AZ::RHI::BlendFactor::One; + blendState.m_blendAlphaDest = AZ::RHI::BlendFactor::AlphaSourceInverse; + switch (blendMode) { case LyShine::BlendMode::Normal: // This is the default mode that does an alpha blend by interpolating based on src alpha - if (isShaderOutputPremultAlpha) - { - flags = GS_BLSRC_ONE | GS_BLDST_ONEMINUSSRCALPHA; - } - else - { - flags = GS_BLSRC_SRCALPHA | GS_BLDST_ONEMINUSSRCALPHA; - } + blendState.m_blendSource = AZ::RHI::BlendFactor::AlphaSource; + blendState.m_blendDest = AZ::RHI::BlendFactor::AlphaSourceInverse; break; case LyShine::BlendMode::Add: // This works well, the amount of the src color added is controlled by src alpha - if (isShaderOutputPremultAlpha) - { - flags = GS_BLSRC_ONE | GS_BLDST_ONE; - } - else - { - flags = GS_BLSRC_SRCALPHA | GS_BLDST_ONE; - } + blendState.m_blendSource = AZ::RHI::BlendFactor::AlphaSource; + blendState.m_blendDest = AZ::RHI::BlendFactor::One; break; case LyShine::BlendMode::Screen: // This is a poor approximation of the PhotoShop Screen mode but trying to take some account of src alpha // In Photoshop this would be 1 - ( (1-SrcColor) * (1-DstColor) ) // So we should use a blend op of multiply but the IRenderer interface doesn't support that. We get some multiply // from GS_BLDST_ONEMINUSSRCCOL which multiplies the DstColor by (1-SrcColor) - if (isShaderOutputPremultAlpha) - { - flags = GS_BLSRC_ONE | GS_BLDST_ONEMINUSSRCCOL; - } - else - { - flags = GS_BLSRC_SRCALPHA | GS_BLDST_ONEMINUSSRCCOL; - } + blendState.m_blendSource = AZ::RHI::BlendFactor::AlphaSource; + blendState.m_blendDest = AZ::RHI::BlendFactor::ColorSourceInverse; break; case LyShine::BlendMode::Darken: // This is a poor approximation of the PhotoShop Darken mode but trying to take some account of src alpha // In Photoshop Darken means min(SrcColor, DstColor) - if (isShaderOutputPremultAlpha) - { - flags = GS_BLOP_MIN | GS_BLSRC_ONE | GS_BLDST_ONE | GS_BLALPHA_MAX; - } - else - { - flags = GS_BLOP_MIN | GS_BLSRC_ONEMINUSSRCALPHA | GS_BLDST_ONE; - } + blendState.m_blendSource = AZ::RHI::BlendFactor::AlphaSourceInverse; + blendState.m_blendDest = AZ::RHI::BlendFactor::One; + blendState.m_blendOp = AZ::RHI::BlendOp::Minimum; break; case LyShine::BlendMode::Lighten: // This is a pretty good an approximation of the PhotoShop Lighten mode but trying to take some account of src alpha // In PhotoShop Lighten means max(SrcColor, DstColor) - if (isShaderOutputPremultAlpha) - { - flags = GS_BLOP_MAX | GS_BLSRC_ONE| GS_BLDST_ONE; - } - else - { - flags = GS_BLOP_MAX | GS_BLSRC_SRCALPHA | GS_BLDST_ONE; - } + blendState.m_blendSource = AZ::RHI::BlendFactor::AlphaSource; + blendState.m_blendDest = AZ::RHI::BlendFactor::One; + blendState.m_blendOp = AZ::RHI::BlendOp::Maximum; break; } - return flags; + return blendState; } void RenderGraph::SetRttPassesEnabled(UiRenderer* uiRenderer, bool enabled) diff --git a/Gems/LyShine/Code/Source/RenderGraph.h b/Gems/LyShine/Code/Source/RenderGraph.h index bc5bd094c8..9edc1f50e8 100644 --- a/Gems/LyShine/Code/Source/RenderGraph.h +++ b/Gems/LyShine/Code/Source/RenderGraph.h @@ -71,16 +71,16 @@ namespace LyShine // We use a pool allocator to keep these allocations fast. AZ_CLASS_ALLOCATOR(PrimitiveListRenderNode, AZ::PoolAllocator, 0); - PrimitiveListRenderNode(const AZ::Data::Instance& texture, bool isClampTextureMode, bool isTextureSRGB, bool preMultiplyAlpha, int blendModeState); + PrimitiveListRenderNode(const AZ::Data::Instance& texture, bool isClampTextureMode, bool isTextureSRGB, bool preMultiplyAlpha, const AZ::RHI::TargetBlendState& blendModeState); PrimitiveListRenderNode(const AZ::Data::Instance& texture, const AZ::Data::Instance& maskTexture, - bool isClampTextureMode, bool isTextureSRGB, bool preMultiplyAlpha, AlphaMaskType alphaMaskType, int blendModeState); + bool isClampTextureMode, bool isTextureSRGB, bool preMultiplyAlpha, AlphaMaskType alphaMaskType, const AZ::RHI::TargetBlendState& blendModeState); ~PrimitiveListRenderNode() override; void Render(UiRenderer* uiRenderer , const AZ::Matrix4x4& modelViewProjMat , AZ::RHI::Ptr dynamicDraw) override; - void AddPrimitive(IRenderer::DynUiPrimitive* primitive); - IRenderer::DynUiPrimitiveList& GetPrimitives() const; + void AddPrimitive(DynUiPrimitive* primitive); + DynUiPrimitiveList& GetPrimitives() const; int GetOrAddTexture(const AZ::Data::Instance& texture, bool isClampTextureMode); int GetNumTextures() const { return m_numTextures; } @@ -88,11 +88,11 @@ namespace LyShine bool GetTextureIsClampMode(int texIndex) const { return m_textures[texIndex].m_isClampTextureMode; } bool GetIsTextureSRGB() const { return m_isTextureSRGB; } - int GetBlendModeState() const { return m_blendModeState; } + AZ::RHI::TargetBlendState GetBlendModeState() const { return m_blendModeState; } bool GetIsPremultiplyAlpha() const { return m_preMultiplyAlpha; } AlphaMaskType GetAlphaMaskType() const { return m_alphaMaskType; } - bool HasSpaceToAddPrimitive(IRenderer::DynUiPrimitive* primitive) const; + bool HasSpaceToAddPrimitive(DynUiPrimitive* primitive) const; // Search to see if this texture is already used by this texture unit, returns -1 if not used int FindTexture(const AZ::Data::Instance& texture, bool isClampTextureMode) const; @@ -118,11 +118,11 @@ namespace LyShine bool m_isTextureSRGB; bool m_preMultiplyAlpha; AlphaMaskType m_alphaMaskType; - int m_blendModeState; + AZ::RHI::TargetBlendState m_blendModeState; int m_totalNumVertices; int m_totalNumIndices; - IRenderer::DynUiPrimitiveList m_primitives; + DynUiPrimitiveList m_primitives; }; // A mask render node handles using one set of render nodes to mask another set of render nodes @@ -268,14 +268,7 @@ namespace LyShine void EndRenderToTexture() override; - void AddPrimitive(IRenderer::DynUiPrimitive* primitive, ITexture* texture, - bool isClampTextureMode, bool isTextureSRGB, bool isTexturePremultipliedAlpha, BlendMode blendMode) override; - - void AddAlphaMaskPrimitive(IRenderer::DynUiPrimitive* primitive, - ITexture* texture, ITexture* maskTexture, - bool isClampTextureMode, bool isTextureSRGB, bool isTexturePremultipliedAlpha, BlendMode blendMode) override; - - IRenderer::DynUiPrimitive* GetDynamicQuadPrimitive(const AZ::Vector2* positions, uint32 packedColor) override; + DynUiPrimitive* GetDynamicQuadPrimitive(const AZ::Vector2* positions, uint32 packedColor) override; bool IsRenderingToMask() const override; void SetIsRenderingToMask(bool isRenderingToMask) override; @@ -287,11 +280,11 @@ namespace LyShine // ~IRenderGraph // LYSHINE_ATOM_TODO - this can be renamed back to AddPrimitive after removal of IRenderer from all UI components - void AddPrimitiveAtom(IRenderer::DynUiPrimitive* primitive, const AZ::Data::Instance& texture, + void AddPrimitiveAtom(DynUiPrimitive* primitive, const AZ::Data::Instance& texture, bool isClampTextureMode, bool isTextureSRGB, bool isTexturePremultipliedAlpha, BlendMode blendMode); //! Add an indexed triangle list primitive to the render graph which will use maskTexture as an alpha (gradient) mask - void AddAlphaMaskPrimitiveAtom(IRenderer::DynUiPrimitive* primitive, + void AddAlphaMaskPrimitiveAtom(DynUiPrimitive* primitive, AZ::Data::Instance contentAttachmentImage, AZ::Data::Instance maskAttachmentImage, bool isClampTextureMode, @@ -341,13 +334,13 @@ namespace LyShine struct DynamicQuad { SVF_P2F_C4B_T2F_F4B m_quadVerts[4]; - IRenderer::DynUiPrimitive m_primitive; + DynUiPrimitive m_primitive; }; protected: // member functions //! Given a blend mode and whether the shader will be outputing premultiplied alpha, return state flags - int GetBlendModeState(LyShine::BlendMode blendMode, bool isShaderOutputPremultAlpha) const; + AZ::RHI::TargetBlendState GetBlendModeState(LyShine::BlendMode blendMode, bool isShaderOutputPremultAlpha) const; void SetRttPassesEnabled(UiRenderer* uiRenderer, bool enabled); diff --git a/Gems/LyShine/Code/Source/Sprite.cpp b/Gems/LyShine/Code/Source/Sprite.cpp index 7f293e57a3..5c7adae481 100644 --- a/Gems/LyShine/Code/Source/Sprite.cpp +++ b/Gems/LyShine/Code/Source/Sprite.cpp @@ -509,20 +509,16 @@ ISprite::Borders CSprite::GetTextureSpaceCellUvBorders(int cellIndex) const if (CellIndexWithinRange(cellIndex)) { const float cellWidth = GetCellUvSize(cellIndex).GetX(); - const float cellMinUCoord = GetCellUvCoords(cellIndex).TopLeft().GetX(); const float cellNormalizedLeftBorder = GetCellUvBorders(cellIndex).m_left * cellWidth; textureSpaceBorders.m_left = cellNormalizedLeftBorder; - const float cellMaxUCoord = GetCellUvCoords(cellIndex).TopRight().GetX(); const float cellNormalizedRightBorder = GetCellUvBorders(cellIndex).m_right * cellWidth; textureSpaceBorders.m_right = cellNormalizedRightBorder; const float cellHeight = GetCellUvSize(cellIndex).GetY(); - const float cellMinVCoord = GetCellUvCoords(cellIndex).TopLeft().GetY(); const float cellNormalizedTopBorder = GetCellUvBorders(cellIndex).m_top * cellHeight; textureSpaceBorders.m_top = cellNormalizedTopBorder; - const float cellMaxVCoord = GetCellUvCoords(cellIndex).BottomLeft().GetY(); const float cellNormalizedBottomBorder = GetCellUvBorders(cellIndex).m_bottom * cellHeight; textureSpaceBorders.m_bottom = cellNormalizedBottomBorder; } diff --git a/Gems/LyShine/Code/Source/Tests/internal/test_UiTransform2dComponent.cpp b/Gems/LyShine/Code/Source/Tests/internal/test_UiTransform2dComponent.cpp index 89b88cd8f6..bea66101fa 100644 --- a/Gems/LyShine/Code/Source/Tests/internal/test_UiTransform2dComponent.cpp +++ b/Gems/LyShine/Code/Source/Tests/internal/test_UiTransform2dComponent.cpp @@ -904,7 +904,6 @@ namespace AZ::EntityId testElemId = CreateElementWithTransform2dComponent(canvas, "UiTransfrom2DTestElement:Offsets"); - AZ::Vector2 parentSize(canvas->GetCanvasSize()); UiTransform2dInterface::Offsets expectedOffsets(-50, -50, 50, 50); UiTransform2dInterface::Offsets actualOffsets; @@ -971,7 +970,6 @@ namespace AZ::EntityId testElemId = CreateElementWithTransform2dComponent(canvas, "UiTransfrom2DTestElement:LocalSize"); - AZ::Vector2 parentSize(canvas->GetCanvasSize()); float expectedWidth = 100; float actualWidth = 1; float expectedHeight = 100; diff --git a/Gems/LyShine/Code/Source/UiCanvasComponent.cpp b/Gems/LyShine/Code/Source/UiCanvasComponent.cpp index 9d17f90f0b..d967b88610 100644 --- a/Gems/LyShine/Code/Source/UiCanvasComponent.cpp +++ b/Gems/LyShine/Code/Source/UiCanvasComponent.cpp @@ -706,7 +706,7 @@ AZStd::string UiCanvasComponent::GetUniqueChildName(AZ::EntityId parentEntityId, if (includeChildren) { - children.push_back(*includeChildren); + children.insert(children.end(),includeChildren->begin(),includeChildren->end()); } // First, check if base name is unique @@ -1862,7 +1862,7 @@ AZ::RHI::AttachmentId UiCanvasComponent::UseRenderTarget(const AZ::Name& renderT // Notify LyShine render pass that it needs to rebuild QueueRttPassRebuild(); - + return attachmentImage->GetAttachmentId(); } @@ -3637,9 +3637,13 @@ void UiCanvasComponent::DestroyRenderTarget() if (m_renderTargetHandle > 0) { ISystem::CrySystemNotificationBus::Handler::BusDisconnect(); +#ifdef LYSHINE_ATOM_TODO // [LYN-3359] Support RTT using Atom gEnv->pRenderer->DestroyDepthSurface(m_renderTargetDepthSurface); +#endif m_renderTargetDepthSurface = nullptr; +#ifdef LYSHINE_ATOM_TODO // [LYN-3359] Support RTT using Atom gEnv->pRenderer->DestroyRenderTarget(m_renderTargetHandle); +#endif m_renderTargetHandle = -1; } } @@ -4097,7 +4101,7 @@ UiCanvasComponent* UiCanvasComponent::FixupPostLoad(AZ::Entity* canvasEntity, AZ canvasComponent->m_editorToGameEntityIdMap = *previousRemapTable; ReuseOrGenerateNewIdsAndFixRefs(&entityContainer, canvasComponent->m_editorToGameEntityIdMap, context); - + AzFramework::SliceEntityOwnershipServiceRequestBus::EventResult(isLoadingRootEntitySuccessful, canvasComponent->m_entityContext->GetContextId(), &AzFramework::SliceEntityOwnershipServiceRequestBus::Events::HandleRootEntityReloadedFromStream, rootSliceEntity, false, nullptr); diff --git a/Gems/LyShine/Code/Source/UiCanvasManager.cpp b/Gems/LyShine/Code/Source/UiCanvasManager.cpp index d13a8f5034..a71c46d45e 100644 --- a/Gems/LyShine/Code/Source/UiCanvasManager.cpp +++ b/Gems/LyShine/Code/Source/UiCanvasManager.cpp @@ -13,6 +13,7 @@ #include "UiGameEntityContext.h" #include +#include #include #include @@ -1030,7 +1031,7 @@ void UiCanvasManager::DebugDisplayCanvasData(int setting) const // local function to write a line of text (with a background rect) and increment Y offset AZStd::function WriteLine = [&](const char* buffer, const AZ::Vector3& color) { - IDraw2d::TextOptions textOptions = draw2d->GetDefaultTextOptions(); + CDraw2d::TextOptions textOptions = draw2d->GetDefaultTextOptions(); textOptions.color = color; AZ::Vector2 textSize = draw2d->GetTextSize(buffer, fontSize, &textOptions); AZ::Vector2 rectTopLeft = AZ::Vector2(xOffset - 2, yOffset); @@ -1181,7 +1182,7 @@ void UiCanvasManager::DebugDisplayDrawCallData() const // local function to write a line of text (with a background rect) and increment Y offset AZStd::function WriteLine = [&](const char* buffer, const AZ::Vector3& color) { - IDraw2d::TextOptions textOptions = draw2d->GetDefaultTextOptions(); + CDraw2d::TextOptions textOptions = draw2d->GetDefaultTextOptions(); textOptions.color = color; AZ::Vector2 textSize = draw2d->GetTextSize(buffer, 16, &textOptions); AZ::Vector2 rectTopLeft = AZ::Vector2(xOffset - 2, yOffset); diff --git a/Gems/LyShine/Code/Source/UiElementComponent.cpp b/Gems/LyShine/Code/Source/UiElementComponent.cpp index d06b87cf6a..cb81ea639c 100644 --- a/Gems/LyShine/Code/Source/UiElementComponent.cpp +++ b/Gems/LyShine/Code/Source/UiElementComponent.cpp @@ -27,6 +27,8 @@ #include #include +#include + #include "UiTransform2dComponent.h" #include "IConsole.h" @@ -559,7 +561,7 @@ LyShine::EntityArray UiElementComponent::FindAllChildrenIntersectingRect(const A // Check children of this child first // child elements do not have to be contained in the parent element's bounds LyShine::EntityArray childMatches = childElementComponent->FindAllChildrenIntersectingRect(bound0, bound1, isInGame); - result.push_back(childMatches); + result.insert(result.end(),childMatches.begin(),childMatches.end()); bool isSelectable = true; if (!isInGame) @@ -941,7 +943,7 @@ bool UiElementComponent::GetAreElementAndAncestorsEnabled() { return m_parentElementComponent->GetAreElementAndAncestorsEnabled(); } - + return true; } @@ -1325,7 +1327,7 @@ void UiElementComponent::Reflect(AZ::ReflectContext* context) serializeContext->Class() // Persistent IDs for this are simply the entity id ->PersistentId([](const void* instance) -> AZ::u64 - { + { const ChildEntityIdOrderEntry* entry = reinterpret_cast(instance); return static_cast(entry->m_entityId); }) @@ -1678,7 +1680,7 @@ void UiElementComponent::OnPatchEnd(const AZ::DataPatchNodeInfo& patchInfo) entityIdLoaded = true; } } - + if (entityIdLoaded) { oldChildrenDataPatchFound = true; @@ -1810,7 +1812,7 @@ void UiElementComponent::OnPatchEnd(const AZ::DataPatchNodeInfo& patchInfo) m_childEntityIdOrder.push_back({elementChanged.second, m_childEntityIdOrder.size()}); } } - + // sort the added elements by index AZStd::sort(elementsAdded.begin(), elementsAdded.end()); for (auto& elementAdded : elementsAdded) diff --git a/Gems/LyShine/Code/Source/UiFaderComponent.cpp b/Gems/LyShine/Code/Source/UiFaderComponent.cpp index e7eca04c59..d9309a7505 100644 --- a/Gems/LyShine/Code/Source/UiFaderComponent.cpp +++ b/Gems/LyShine/Code/Source/UiFaderComponent.cpp @@ -575,7 +575,7 @@ void UiFaderComponent::RenderRttFader(LyShine::IRenderGraph* renderGraph, UiElem AZ::Color clearColor(0.0f, 0.0f, 0.0f, 0.0f); // Start building the render to texture node in the render graph - LyShine::RenderGraph* lyRenderGraph = dynamic_cast(renderGraph); + LyShine::RenderGraph* lyRenderGraph = static_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 lyRenderGraph->BeginRenderToTexture(attachmentImage, m_viewportTopLeft, m_viewportSize, clearColor); // We don't want this fader or parent faders to affect what is rendered to the render target since we will @@ -615,7 +615,7 @@ void UiFaderComponent::RenderRttFader(LyShine::IRenderGraph* renderGraph, UiElem // Add a primitive to render a quad using the render target we have created { - LyShine::RenderGraph* lyRenderGraph = dynamic_cast(renderGraph); + LyShine::RenderGraph* lyRenderGraph = static_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 if (lyRenderGraph) { // Set the texture and other render state required diff --git a/Gems/LyShine/Code/Source/UiFaderComponent.h b/Gems/LyShine/Code/Source/UiFaderComponent.h index 560c1beaaa..218eab3794 100644 --- a/Gems/LyShine/Code/Source/UiFaderComponent.h +++ b/Gems/LyShine/Code/Source/UiFaderComponent.h @@ -169,5 +169,5 @@ private: // data int m_renderTargetHeight = 0; //! cached rendering data for performance optimization of rendering the render target to screen - IRenderer::DynUiPrimitive m_cachedPrimitive; + DynUiPrimitive m_cachedPrimitive; }; diff --git a/Gems/LyShine/Code/Source/UiImageComponent.cpp b/Gems/LyShine/Code/Source/UiImageComponent.cpp index d279beeee9..fac8a83c71 100644 --- a/Gems/LyShine/Code/Source/UiImageComponent.cpp +++ b/Gems/LyShine/Code/Source/UiImageComponent.cpp @@ -280,7 +280,7 @@ namespace AZ::Data::Instance image; if (sprite) { - CSprite* cSprite = dynamic_cast(sprite); // LYSHINE_ATOM_TODO - find a different solution from downcasting + CSprite* cSprite = static_cast(sprite); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 if (cSprite) { image = cSprite->GetImage(); @@ -484,7 +484,7 @@ void UiImageComponent::Render(LyShine::IRenderGraph* renderGraph) bool isTextureSRGB = IsSpriteTypeRenderTarget() && m_isRenderTargetSRGB; bool isTexturePremultipliedAlpha = false; // we are not rendering from a render target with alpha in it - LyShine::RenderGraph* lyRenderGraph = dynamic_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting + LyShine::RenderGraph* lyRenderGraph = static_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 if (lyRenderGraph) { lyRenderGraph->AddPrimitiveAtom(&m_cachedPrimitive, image, isClampTextureMode, isTextureSRGB, isTexturePremultipliedAlpha, m_blendMode); @@ -1536,7 +1536,6 @@ void UiImageComponent::RenderSingleQuad(const AZ::Vector2* positions, const AZ:: IDraw2d::Rounding pixelRounding = IsPixelAligned() ? IDraw2d::Rounding::Nearest : IDraw2d::Rounding::None; const uint32 numVertices = 4; SVF_P2F_C4B_T2F_F4B vertices[numVertices]; - const float z = 1.0f; // depth test disabled, if writing Z this will write at far plane for (int i = 0; i < numVertices; ++i) { AZ::Vector2 roundedPoint = Draw2dHelper::RoundXY(positions[i], pixelRounding); @@ -1596,7 +1595,6 @@ void UiImageComponent::RenderLinearFilledQuad(const AZ::Vector2* positions, cons IDraw2d::Rounding pixelRounding = IsPixelAligned() ? IDraw2d::Rounding::Nearest : IDraw2d::Rounding::None; const uint32 numVertices = 4; SVF_P2F_C4B_T2F_F4B vertices[numVertices]; - const float z = 1.0f; // depth test disabled, if writing Z this will write at far plane for (int i = 0; i < numVertices; ++i) { diff --git a/Gems/LyShine/Code/Source/UiImageComponent.h b/Gems/LyShine/Code/Source/UiImageComponent.h index 4cffbc4b88..0b93d5f8e5 100644 --- a/Gems/LyShine/Code/Source/UiImageComponent.h +++ b/Gems/LyShine/Code/Source/UiImageComponent.h @@ -294,6 +294,6 @@ private: // data bool m_isAlphaOverridden; // cached rendering data for performance optimization - IRenderer::DynUiPrimitive m_cachedPrimitive; + DynUiPrimitive m_cachedPrimitive; bool m_isRenderCacheDirty = true; }; diff --git a/Gems/LyShine/Code/Source/UiImageSequenceComponent.cpp b/Gems/LyShine/Code/Source/UiImageSequenceComponent.cpp index 086aed9f58..d954cf2747 100644 --- a/Gems/LyShine/Code/Source/UiImageSequenceComponent.cpp +++ b/Gems/LyShine/Code/Source/UiImageSequenceComponent.cpp @@ -97,7 +97,7 @@ void UiImageSequenceComponent::Render(LyShine::IRenderGraph* renderGraph) return; } - CSprite* sprite = dynamic_cast(m_spriteList[m_sequenceIndex]); + CSprite* sprite = static_cast(m_spriteList[m_sequenceIndex]); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 // get fade value (tracked by UiRenderer) and compute the desired alpha for the image float fade = renderGraph->GetAlphaFade(); @@ -105,7 +105,6 @@ void UiImageSequenceComponent::Render(LyShine::IRenderGraph* renderGraph) if (m_isRenderCacheDirty) { - const int defaultIndex = 0; uint32 packedColor = 0xffffffff; switch (m_imageType) { @@ -166,7 +165,7 @@ void UiImageSequenceComponent::Render(LyShine::IRenderGraph* renderGraph) LyShine::BlendMode blendMode = LyShine::BlendMode::Normal; // Add the quad to the render graph - LyShine::RenderGraph* lyRenderGraph = dynamic_cast(renderGraph); + LyShine::RenderGraph* lyRenderGraph = static_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 if (lyRenderGraph) { lyRenderGraph->AddPrimitiveAtom(&m_cachedPrimitive, image, @@ -542,7 +541,6 @@ void UiImageSequenceComponent::RenderSingleQuad(const AZ::Vector2* positions, co IDraw2d::Rounding pixelRounding = IsPixelAligned() ? IDraw2d::Rounding::Nearest : IDraw2d::Rounding::None; const uint32 numVertices = 4; SVF_P2F_C4B_T2F_F4B vertices[numVertices]; - const float z = 1.0f; // depth test disabled, if writing Z this will write at far plane for (int i = 0; i < numVertices; ++i) { AZ::Vector2 roundedPoint = Draw2dHelper::RoundXY(positions[i], pixelRounding); diff --git a/Gems/LyShine/Code/Source/UiImageSequenceComponent.h b/Gems/LyShine/Code/Source/UiImageSequenceComponent.h index fb8087f525..84be0021f4 100644 --- a/Gems/LyShine/Code/Source/UiImageSequenceComponent.h +++ b/Gems/LyShine/Code/Source/UiImageSequenceComponent.h @@ -157,6 +157,6 @@ private: // data ImageType m_imageType = ImageType::Fixed; //!< Affects how the texture/sprite is mapped to the image rectangle // cached rendering data for performance optimization - IRenderer::DynUiPrimitive m_cachedPrimitive; + DynUiPrimitive m_cachedPrimitive; bool m_isRenderCacheDirty = true; }; diff --git a/Gems/LyShine/Code/Source/UiMaskComponent.cpp b/Gems/LyShine/Code/Source/UiMaskComponent.cpp index d6ed468deb..b6ffc2ae89 100644 --- a/Gems/LyShine/Code/Source/UiMaskComponent.cpp +++ b/Gems/LyShine/Code/Source/UiMaskComponent.cpp @@ -722,7 +722,7 @@ void UiMaskComponent::RenderUsingGradientMask(LyShine::IRenderGraph* renderGraph // mask render target { // Start building the render to texture node in the render graph - LyShine::RenderGraph* lyRenderGraph = dynamic_cast(renderGraph); + LyShine::RenderGraph* lyRenderGraph = static_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 lyRenderGraph->BeginRenderToTexture(maskAttachmentImage, m_viewportTopLeft, m_viewportSize, clearColor); // Render the visual component for this element (if there is one) plus the child mask element (if there is one) @@ -735,7 +735,7 @@ void UiMaskComponent::RenderUsingGradientMask(LyShine::IRenderGraph* renderGraph // content render target { // Start building the render to texture node for the content render target in the render graph - LyShine::RenderGraph* lyRenderGraph = dynamic_cast(renderGraph); + LyShine::RenderGraph* lyRenderGraph = static_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 lyRenderGraph->BeginRenderToTexture(contentAttachmentImage, m_viewportTopLeft, m_viewportSize, clearColor); // Render the "content" - the child elements excluding the child mask element (if any) @@ -772,7 +772,7 @@ void UiMaskComponent::RenderUsingGradientMask(LyShine::IRenderGraph* renderGraph // Add a primitive to do the alpha mask { - LyShine::RenderGraph* lyRenderGraph = dynamic_cast(renderGraph); + LyShine::RenderGraph* lyRenderGraph = static_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 if (lyRenderGraph) { // Set the texture and other render state required diff --git a/Gems/LyShine/Code/Source/UiMaskComponent.h b/Gems/LyShine/Code/Source/UiMaskComponent.h index 8635f048f5..8e04fa0b4f 100644 --- a/Gems/LyShine/Code/Source/UiMaskComponent.h +++ b/Gems/LyShine/Code/Source/UiMaskComponent.h @@ -205,7 +205,7 @@ private: // data int m_renderTargetHeight = 0; //! cached rendering data for performance optimization of rendering the render target to screen - IRenderer::DynUiPrimitive m_cachedPrimitive; + DynUiPrimitive m_cachedPrimitive; #ifndef _RELEASE //! This variable is only used to prevent spamming a warning message each frame (for nested stencil masks) diff --git a/Gems/LyShine/Code/Source/UiParticleEmitterComponent.cpp b/Gems/LyShine/Code/Source/UiParticleEmitterComponent.cpp index 0adf2fb2de..c6fd144d3a 100644 --- a/Gems/LyShine/Code/Source/UiParticleEmitterComponent.cpp +++ b/Gems/LyShine/Code/Source/UiParticleEmitterComponent.cpp @@ -785,7 +785,7 @@ void UiParticleEmitterComponent::Render(LyShine::IRenderGraph* renderGraph) AZ::Data::Instance image; if (m_sprite) { - CSprite* sprite = dynamic_cast(m_sprite); + CSprite* sprite = static_cast(m_sprite); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 if (sprite) { image = sprite->GetImage(); @@ -843,7 +843,7 @@ void UiParticleEmitterComponent::Render(LyShine::IRenderGraph* renderGraph) m_cachedPrimitive.m_numVertices = totalVerticesInserted; m_cachedPrimitive.m_numIndices = totalParticlesInserted * indicesPerParticle; - LyShine::RenderGraph* lyRenderGraph = dynamic_cast(renderGraph); + LyShine::RenderGraph* lyRenderGraph = static_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 if (lyRenderGraph) { lyRenderGraph->AddPrimitiveAtom(&m_cachedPrimitive, image, isClampTextureMode, isTextureSRGB, isTexturePremultipliedAlpha, m_blendMode); diff --git a/Gems/LyShine/Code/Source/UiParticleEmitterComponent.h b/Gems/LyShine/Code/Source/UiParticleEmitterComponent.h index cb8152265d..452e0ad01a 100644 --- a/Gems/LyShine/Code/Source/UiParticleEmitterComponent.h +++ b/Gems/LyShine/Code/Source/UiParticleEmitterComponent.h @@ -349,5 +349,5 @@ protected: // data AZStd::vector m_particleContainer; AZ::u32 m_particleBufferSize = 0; - IRenderer::DynUiPrimitive m_cachedPrimitive; + DynUiPrimitive m_cachedPrimitive; }; diff --git a/Gems/LyShine/Code/Source/UiRenderer.cpp b/Gems/LyShine/Code/Source/UiRenderer.cpp index c52c249d20..3111f31615 100644 --- a/Gems/LyShine/Code/Source/UiRenderer.cpp +++ b/Gems/LyShine/Code/Source/UiRenderer.cpp @@ -313,8 +313,6 @@ AZ::Vector2 UiRenderer::GetViewportSize() auto windowContext = viewportContext->GetWindowContext(); const AZ::RHI::Viewport& viewport = windowContext->GetViewport(); - const float viewX = viewport.m_minX; - const float viewY = viewport.m_minY; const float viewWidth = viewport.m_maxX - viewport.m_minX; const float viewHeight = viewport.m_maxY - viewport.m_minY; return AZ::Vector2(viewWidth, viewHeight); @@ -491,7 +489,7 @@ void UiRenderer::DebugDisplayTextureData(int recordingOption) // local function to write a line of text (with a background rect) and increment Y offset AZStd::function WriteLine = [&](const char* buffer, const AZ::Vector3& color) { - IDraw2d::TextOptions textOptions = draw2d->GetDefaultTextOptions(); + CDraw2d::TextOptions textOptions = draw2d->GetDefaultTextOptions(); textOptions.color = color; AZ::Vector2 textSize = draw2d->GetTextSize(buffer, 16, &textOptions); AZ::Vector2 rectTopLeft = AZ::Vector2(xOffset - 2, yOffset); diff --git a/Gems/LyShine/Code/Source/UiRenderer.h b/Gems/LyShine/Code/Source/UiRenderer.h index 14fc67fc6b..3be3c832d3 100644 --- a/Gems/LyShine/Code/Source/UiRenderer.h +++ b/Gems/LyShine/Code/Source/UiRenderer.h @@ -53,14 +53,8 @@ public: // types void ResetToDefault() { // Enable blend/color write - m_blendState.m_enable = true; - m_blendState.m_writeMask = 0xF; - m_blendState.m_blendSource = AZ::RHI::BlendFactor::AlphaSource; - m_blendState.m_blendDest = AZ::RHI::BlendFactor::AlphaSourceInverse; - m_blendState.m_blendOp = AZ::RHI::BlendOp::Add; - m_blendState.m_blendAlphaSource = AZ::RHI::BlendFactor::One; - m_blendState.m_blendAlphaDest = AZ::RHI::BlendFactor::Zero; - m_blendState.m_blendAlphaOp = AZ::RHI::BlendOp::Add; + m_blendStateEnabled = true; + m_blendStateWriteMask = 0xF; // Disable stencil m_stencilState = AZ::RHI::StencilState(); @@ -70,7 +64,8 @@ public: // types m_modulateAlpha = false; } - AZ::RHI::TargetBlendState m_blendState; + uint32_t m_blendStateEnabled = true; + uint32_t m_blendStateWriteMask = 0xF; AZ::RHI::StencilState m_stencilState; bool m_useAlphaTest = false; bool m_modulateAlpha = false; diff --git a/Gems/LyShine/Code/Source/UiScrollBoxComponent.cpp b/Gems/LyShine/Code/Source/UiScrollBoxComponent.cpp index 88317b840f..8b634b32fb 100644 --- a/Gems/LyShine/Code/Source/UiScrollBoxComponent.cpp +++ b/Gems/LyShine/Code/Source/UiScrollBoxComponent.cpp @@ -1500,7 +1500,6 @@ AZ::Vector2 UiScrollBoxComponent::ConstrainOffset(AZ::Vector2 proposedOffset, AZ // add the requested scroll offset to the content rect to get the proposed position // The content has already need moved by the requested offset all but latestOffsetDelta - UiTransformInterface::Rect origContentRect = contentRect; contentRect.MoveBy(latestOffsetDelta); if (contentRect.GetWidth() <= parentRect.GetWidth()) diff --git a/Gems/LyShine/Code/Source/UiTextComponent.cpp b/Gems/LyShine/Code/Source/UiTextComponent.cpp index f9544a9954..1c8189fa2a 100644 --- a/Gems/LyShine/Code/Source/UiTextComponent.cpp +++ b/Gems/LyShine/Code/Source/UiTextComponent.cpp @@ -1827,10 +1827,10 @@ void UiTextComponent::Render(LyShine::IRenderGraph* renderGraph) for (UiTransformInterface::RectPoints& rect : rectPoints) { - IRenderer::DynUiPrimitive* primitive = renderGraph->GetDynamicQuadPrimitive(rect.pt, packedColor); + DynUiPrimitive* primitive = renderGraph->GetDynamicQuadPrimitive(rect.pt, packedColor); primitive->m_next = nullptr; - LyShine::RenderGraph* lyRenderGraph = dynamic_cast(renderGraph); + LyShine::RenderGraph* lyRenderGraph = static_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 if (lyRenderGraph) { lyRenderGraph->AddPrimitiveAtom(primitive, systemImage, isClampTextureMode, isTextureSRGB, isTexturePremultipliedAlpha, blendMode); @@ -1856,7 +1856,7 @@ void UiTextComponent::Render(LyShine::IRenderGraph* renderGraph) } bool isClampTextureMode = true; - LyShine::RenderGraph* lyRenderGraph = dynamic_cast(renderGraph); + LyShine::RenderGraph* lyRenderGraph = static_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 if (lyRenderGraph) { lyRenderGraph->AddPrimitiveAtom(&batch->m_cachedPrimitive, texture, @@ -1871,7 +1871,7 @@ void UiTextComponent::Render(LyShine::IRenderGraph* renderGraph) for (RenderCacheBatch* batch : m_renderCache.m_batches) { - AZ::FFont* font = static_cast(batch->m_font); // LYSHINE_ATOM_TODO - find a different solution from downcasting FFont to IFont + AZ::FFont* font = static_cast(batch->m_font); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 AZ::Data::Instance fontImage = font->GetFontImage(); if (fontImage) { @@ -1894,7 +1894,7 @@ void UiTextComponent::Render(LyShine::IRenderGraph* renderGraph) // because there is no padding on the left of the glyphs. bool isClampTextureMode = false; - LyShine::RenderGraph* lyRenderGraph = static_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting + LyShine::RenderGraph* lyRenderGraph = static_cast(renderGraph); // LYSHINE_ATOM_TODO - find a different solution from downcasting - GHI #3570 if (lyRenderGraph) { lyRenderGraph->AddPrimitiveAtom(&batch->m_cachedPrimitive, fontImage, @@ -2662,8 +2662,6 @@ void UiTextComponent::GetClickableTextRects(UiClickableTextInterface::ClickableT AZ::Vector2 pos = CalculateAlignedPositionWithYOffset(points); const DrawBatchLines& drawBatchLines = GetDrawBatchLines(); - int requestFontSize = GetRequestFontSize(); - STextDrawContext fontContext(GetTextDrawContextPrototype(requestFontSize, drawBatchLines.fontSizeScale)); float newlinePosYIncrement = 0.0f; for (auto& drawBatchLine : drawBatchLines.batchLines) @@ -3344,7 +3342,6 @@ void UiTextComponent::GetTextRect(UiTransformInterface::RectPoints& rect, const // get the "no scale rotate" element box UiTransformInterface::RectPoints elemRect; EBUS_EVENT_ID(GetEntityId(), UiTransformBus, GetCanvasSpacePointsNoScaleRotate, elemRect); - AZ::Vector2 elemSize = elemRect.GetAxisAlignedSize(); // given the text alignment work out the box of the actual text rect = elemRect; diff --git a/Gems/LyShine/Code/Source/UiTextComponent.h b/Gems/LyShine/Code/Source/UiTextComponent.h index 600f0dc148..cc1f9bf393 100644 --- a/Gems/LyShine/Code/Source/UiTextComponent.h +++ b/Gems/LyShine/Code/Source/UiTextComponent.h @@ -153,8 +153,8 @@ public: //types InlineImage* image = nullptr; - AZ::Vector2 size; //!< The size in pixels of the batch content - + AZ::Vector2 size; //!< The size in pixels of the batch content + float yOffset; //!< While calculating, the yOffset is set to the offset from the text draw y position. //!< Once all batches in the line are calculated, the yOffset will become the offset //!< from the y draw position of the batch line @@ -475,7 +475,7 @@ protected: // member functions //! Handles overflow and shrink-to-text settings to text void HandleOverflowText(UiTextComponent::DrawBatchLines& drawBatchLinesOut); - //! Handles shrink-to-fit for text, if applicable. + //! Handles shrink-to-fit for text, if applicable. void HandleShrinkToFit(UiTextComponent::DrawBatchLines& drawBatchLinesOut, float availableHeight = -1.0f); //! Handles the "uniform" shrink-to-fit setting. @@ -506,18 +506,18 @@ protected: // member functions void GetDrawBatchStartPositions(DrawBatchStartPositions& startPositions, DrawBatchLine* lineToEllipsis, const AZ::Vector2& currentElementSize); //! Returns the draw batch that will have ellipsis inserted, along with required position information to do so. - DrawBatch* GetDrawBatchToEllipseAndPositions(const char* ellipseText, - const STextDrawContext& ctx, - const AZ::Vector2& currentElementSize, + DrawBatch* GetDrawBatchToEllipseAndPositions(const char* ellipseText, + const STextDrawContext& ctx, + const AZ::Vector2& currentElementSize, DrawBatchStartPositions* startPositions, - float* drawBatchStartPos, + float* drawBatchStartPos, float* ellipsisPos); //! Removes all draw batches following the given DrawBatch on the given DrawBatchLine. void TruncateDrawBatches(DrawBatchLine* lineToTruncate, const DrawBatch* truncateAfterBatch); //! Given a draw batch, get the character index where ellipsis should be inserted in the string. - int GetStartEllipseIndexInDrawBatch(const DrawBatch* drawBatchToEllipse, + int GetStartEllipseIndexInDrawBatch(const DrawBatch* drawBatchToEllipse, const STextDrawContext& ctx, const float drawBatchStartPos, const float ellipsePos); @@ -546,7 +546,7 @@ protected: // member functions //! Given rect points and number of lines of text to display, returns the position to display text. //! //! The number of lines of text determines the Y offset of the first line to display. For - //! top-aligned text, this offset will be zero (regardless of the number of lines of text) + //! top-aligned text, this offset will be zero (regardless of the number of lines of text) //! because the first line to display will always be displayed at the top of the rect, while //! bottom-aligned text will be offset by the number of lines to display, and vertically //! centered text will be offset by half of that amount. @@ -608,13 +608,13 @@ private: // types ColorB m_color; IFFont* m_font; uint32 m_fontTextureVersion; - IRenderer::DynUiPrimitive m_cachedPrimitive; + DynUiPrimitive m_cachedPrimitive; }; struct RenderCacheImageBatch { AZ::Data::Instance m_texture; - IRenderer::DynUiPrimitive m_cachedPrimitive; + DynUiPrimitive m_cachedPrimitive; }; struct RenderCacheData @@ -642,11 +642,11 @@ private: // data //!< font size. In GetTextDrawContextPrototype, this value ultimately gets converted to pixels and //!< stored in STextDrawContext::m_tracking. This value and STextDrawContext::m_tracking aren't //!< necessarily 1:1, just as m_fontSize and STextDrawContext::m_size aren't necessarily 1:1. - //!< Although the component values of m_charSpacing and m_fontSize are unaffected by scaling, - //!< scaling (such as scaling performed by shrink-to-fit overflow handling) is applied to these + //!< Although the component values of m_charSpacing and m_fontSize are unaffected by scaling, + //!< scaling (such as scaling performed by shrink-to-fit overflow handling) is applied to these //!< values and the resulting scaled value is stored in STextDrawContext for rendering. As a result, //!< it's possible for the value of m_charSpacing to never change, but STextDrawContext::m_tracking - //!< can vary in value independently of m_charSpacing as the font size (and/or scaled font size) + //!< can vary in value independently of m_charSpacing as the font size (and/or scaled font size) //!< changes over time. See also DrawBatchLines::fontSizeScale. float m_lineSpacing; diff --git a/Gems/LyShine/Code/Source/UiTextInputComponent.cpp b/Gems/LyShine/Code/Source/UiTextInputComponent.cpp index df2d85eb74..e789301572 100644 --- a/Gems/LyShine/Code/Source/UiTextInputComponent.cpp +++ b/Gems/LyShine/Code/Source/UiTextInputComponent.cpp @@ -17,6 +17,7 @@ #include #include +#include #include #include #include @@ -27,6 +28,7 @@ #include #include + #include "UiNavigationHelpers.h" #include "UiSerialize.h" #include "Sprite.h" diff --git a/Gems/LyShine/Code/Source/UiTransform2dComponent.cpp b/Gems/LyShine/Code/Source/UiTransform2dComponent.cpp index 48b2c2a8c4..40839fac66 100644 --- a/Gems/LyShine/Code/Source/UiTransform2dComponent.cpp +++ b/Gems/LyShine/Code/Source/UiTransform2dComponent.cpp @@ -23,6 +23,9 @@ #include "UiElementComponent.h" #include "UiCanvasComponent.h" +#include +#include + namespace { bool AxisAlignedBoxesIntersect(const AZ::Vector2& minA, const AZ::Vector2& maxA, const AZ::Vector2& minB, const AZ::Vector2& maxB) @@ -273,7 +276,7 @@ AZ::Vector2 UiTransform2dComponent::GetViewportSpacePivot() AZ::Matrix4x4 transform; parentTransformComponent->GetTransformToViewport(transform); - point3 = transform * point3; + point3 = transform * point3; } return AZ::Vector2(point3.GetX(), point3.GetY()); @@ -1454,7 +1457,7 @@ AZ::EntityId UiTransform2dComponent::GetAncestorWithSameDimensionScaleToDevice(S LyShine::EntityArray UiTransform2dComponent::GetDescendantsWithSameDimensionScaleToDevice(ScaleToDeviceMode scaleToDeviceMode) const { // Check if any descendants have their scale to device mode set in the same dimension - auto HasSameDimensionScaleToDevice = [this, scaleToDeviceMode](const AZ::Entity* entity) + auto HasSameDimensionScaleToDevice = [scaleToDeviceMode](const AZ::Entity* entity) { ScaleToDeviceMode descendantScaleToDeviceMode = ScaleToDeviceMode::None; EBUS_EVENT_ID_RESULT(descendantScaleToDeviceMode, entity->GetId(), UiTransformBus, GetScaleToDeviceMode); diff --git a/Gems/LyShine/Code/Source/World/UiCanvasOnMeshComponent.cpp b/Gems/LyShine/Code/Source/World/UiCanvasOnMeshComponent.cpp index 81a68a5a9e..395e0dfc32 100644 --- a/Gems/LyShine/Code/Source/World/UiCanvasOnMeshComponent.cpp +++ b/Gems/LyShine/Code/Source/World/UiCanvasOnMeshComponent.cpp @@ -101,190 +101,6 @@ namespace } #endif - //////////////////////////////////////////////////////////////////////////////////////////////////// - bool GetBarycentricCoordinates(const Vec3& a, const Vec3& b, const Vec3& c, const Vec3& p, float& u, float& v, float& w, float fBorder) - { - // Compute vectors - Vec3 v0 = b - a; - Vec3 v1 = c - a; - Vec3 v2 = p - a; - - // Compute dot products - float dot00 = v0.Dot(v0); - float dot01 = v0.Dot(v1); - float dot02 = v0.Dot(v2); - float dot11 = v1.Dot(v1); - float dot12 = v1.Dot(v2); - - // Compute barycentric coordinates - float invDenom = 1.f / (dot00 * dot11 - dot01 * dot01); - v = (dot11 * dot02 - dot01 * dot12) * invDenom; - w = (dot00 * dot12 - dot01 * dot02) * invDenom; - u = 1.f - v - w; - - // Check if point is in triangle - return (u >= -fBorder) && (v >= -fBorder) && (w >= -fBorder); - } - - //////////////////////////////////////////////////////////////////////////////////////////////////// - bool SnapToPlaneAndGetBarycentricCoordinates(const Vec3& a, const Vec3& b, const Vec3& c, const Vec3& p, float& u, float& v, float& w) - { - // get face normal - Vec3 uVec = b - a; - Vec3 vVec = c - a; - Vec3 faceNormal = uVec.cross(vVec); - faceNormal.NormalizeSafe(); - Vec3 aToPt = p - a; - float dist = aToPt.Dot(faceNormal); - float distSq = dist * dist; - float triLenSq = uVec.len2() + vVec.len2(); - - // Is the point "close enough" to the plane of the triangle? - if (distSq < triLenSq * 0.1f) - { - // snap the point to the plane of the triangle - Vec3 coplanarP = p - dist * faceNormal; - - return GetBarycentricCoordinates(a, b, c, coplanarP, u, v, w, 0.0f); - } - - return false; - } - - //////////////////////////////////////////////////////////////////////////////////////////////////// - Vec2 ConvertBarycentricCoordsToUVCoords(float u, float v, float w, Vec2 uv0, Vec2 uv1, Vec2 uv2) - { - float arrVertWeight[3] = { max(0.f, u), max(0.f, v), max(0.f, w) }; - float fDiv = 1.f / (arrVertWeight[0] + arrVertWeight[1] + arrVertWeight[2]); - arrVertWeight[0] *= fDiv; - arrVertWeight[1] *= fDiv; - arrVertWeight[2] *= fDiv; - - Vec2 uvResult = uv0 * arrVertWeight[0] + uv1 * arrVertWeight[1] + uv2 * arrVertWeight[2]; - return uvResult; - } - - //////////////////////////////////////////////////////////////////////////////////////////////////// - bool GetTexCoordFromRayHitOnIndexedMesh( - int triIndex, - Vec3 hitPoint, - [[maybe_unused]] const IPhysicalEntity* collider, - [[maybe_unused]] int partIndex, - const Matrix34& slotWorldTM, - const IIndexedMesh* indexedMesh, - Vec2& texCoord) - { - IIndexedMesh::SMeshDescription meshDesc; - indexedMesh->GetMeshDescription(meshDesc); - -#if UI_CANVAS_ON_MESH_DEBUG - DrawSphere(hitPoint, debugHitColor, debugDrawSphereSize); -#endif - - // triIndex is -1 if this is not a mesh collision (i.e. collided with a parametric primitive) - if (triIndex >= 0 && triIndex * 3 <= meshDesc.m_nIndexCount) - { - // convert TriIndex into the indices into the index buffer - int i0 = triIndex * 3; - int i1 = i0 + 1; - int i2 = i0 + 2; - - // get the vertex indices from the index buffer - int vIndex0 = meshDesc.m_pIndices[i0]; - int vIndex1 = meshDesc.m_pIndices[i1]; - int vIndex2 = meshDesc.m_pIndices[i2]; - - // get verts in local space - Vec3 v0 = meshDesc.m_pVerts[vIndex0]; - Vec3 v1 = meshDesc.m_pVerts[vIndex1]; - Vec3 v2 = meshDesc.m_pVerts[vIndex2]; - - // get verts in world space - Vec3 wv0 = slotWorldTM.TransformPoint(v0); - Vec3 wv1 = slotWorldTM.TransformPoint(v1); - Vec3 wv2 = slotWorldTM.TransformPoint(v2); - - -#if UI_CANVAS_ON_MESH_DEBUG - DrawCollisionMeshTrianglePoints(triIndex, collider, partIndex, slotWorldTM); -#endif - - float u, v, w; - if (SnapToPlaneAndGetBarycentricCoordinates(wv0, wv1, wv2, hitPoint, u, v, w)) - { -#if UI_CANVAS_ON_MESH_DEBUG - DrawTrianglePoints(wv0, wv1, wv2, debugRenderMeshAttempt1Color, debugDrawSphereSize); -#endif - - // get the texcoord for each vert of the triangle - Vec2 uv0 = meshDesc.m_pTexCoord[vIndex0].GetUV(); - Vec2 uv1 = meshDesc.m_pTexCoord[vIndex1].GetUV(); - Vec2 uv2 = meshDesc.m_pTexCoord[vIndex2].GetUV(); - - texCoord = ConvertBarycentricCoordsToUVCoords(u, v, w, uv0, uv1, uv2); - - return true; - } - } - - // If we got here then EITHER, the iPrim is 0xffffffff meaning that the collision - // was a primitive rather than a mesh collision OR the iPrim is not the right - // triangle index in the render mesh. This sometimes happens, presumably due to - // some modifications that are made automatically to the collision mesh by the - // physics system or something to do with how the IndexedMesh is generated on - // demand in IStatObj:::GetIndexedMesh. - // We do have the collision point though. So we go through all the triangles in - // the render mesh and try to find the right triangle. - // NOTE: This could be optimized by converting the hit point to local space. - // NOTE: Currently we use the first triangle where the point is "close enough" to the plane - // of the triangle and the barycentric calculation says that the point is within the - // triangle. This "close enough" test is rather arbitrary and could get a false positive in - // some edge cases. - // Another approach would be to go through all the triangles doing the barycentric - // test and keep track of which one that passes is closest to the plane of the triangle. - int triCount = meshDesc.m_nIndexCount / 3; - for (int i = 0; i < triCount; ++i) - { - // convert TriIndex into the indices into the index buffer - int i0 = i * 3; - int i1 = i0 + 1; - int i2 = i0 + 2; - - // get the vertex indices from the index buffer - int vIndex0 = meshDesc.m_pIndices[i0]; - int vIndex1 = meshDesc.m_pIndices[i1]; - int vIndex2 = meshDesc.m_pIndices[i2]; - - // get verts in local space - Vec3 v0 = meshDesc.m_pVerts[vIndex0]; - Vec3 v1 = meshDesc.m_pVerts[vIndex1]; - Vec3 v2 = meshDesc.m_pVerts[vIndex2]; - - // get verts in world space - Vec3 wv0 = slotWorldTM.TransformPoint(v0); - Vec3 wv1 = slotWorldTM.TransformPoint(v1); - Vec3 wv2 = slotWorldTM.TransformPoint(v2); - - float u, v, w; - if (SnapToPlaneAndGetBarycentricCoordinates(wv0, wv1, wv2, hitPoint, u, v, w)) - { -#if UI_CANVAS_ON_MESH_DEBUG - DrawTrianglePoints(wv0, wv1, wv2, debugRenderMeshAttempt2Color, debugDrawSphereSize); -#endif - - // get the texcoord for each vert of the triangle - Vec2 uv0 = meshDesc.m_pTexCoord[vIndex0].GetUV(); - Vec2 uv1 = meshDesc.m_pTexCoord[vIndex1].GetUV(); - Vec2 uv2 = meshDesc.m_pTexCoord[vIndex2].GetUV(); - - texCoord = ConvertBarycentricCoordsToUVCoords(u, v, w, uv0, uv1, uv2); - - return true; - } - } - - return false; - } } // Anonymous namespace //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/LyShine/Code/Tests/LyShineEditorTest.cpp b/Gems/LyShine/Code/Tests/LyShineEditorTest.cpp index 597874d5d6..ff4e054ac7 100644 --- a/Gems/LyShine/Code/Tests/LyShineEditorTest.cpp +++ b/Gems/LyShine/Code/Tests/LyShineEditorTest.cpp @@ -54,7 +54,6 @@ #include #include #include -#include AZ_UNIT_TEST_HOOK(DEFAULT_UNIT_TEST_ENV); @@ -80,7 +79,6 @@ protected: m_data = AZStd::make_unique(); memset(&m_data->m_stubEnv, 0, sizeof(SSystemGlobalEnvironment)); - m_data->m_stubEnv.pRenderer = &m_data->m_renderer; m_data->m_stubEnv.pSystem = &m_data->m_mockSystem; gEnv = &m_data->m_stubEnv; @@ -212,7 +210,6 @@ protected: struct DataMembers { SSystemGlobalEnvironment m_stubEnv; - NiceMock m_renderer; NiceMock m_mockSystem; }; diff --git a/Gems/LyShine/Code/Tests/SpriteTest.cpp b/Gems/LyShine/Code/Tests/SpriteTest.cpp index 84b47955b4..ff9095a7d9 100644 --- a/Gems/LyShine/Code/Tests/SpriteTest.cpp +++ b/Gems/LyShine/Code/Tests/SpriteTest.cpp @@ -8,7 +8,6 @@ #include "LyShineTest.h" #include -#include #include #include @@ -42,23 +41,13 @@ namespace UnitTest { LyShineTest::SetupEnvironment(); - m_data = AZStd::make_unique(); - m_env->m_stubEnv.pRenderer = &m_data->m_renderer; } void TearDown() override { - m_data.reset(); - LyShineTest::TearDown(); } - struct DataMembers - { - testing::NiceMock m_renderer; - }; - - AZStd::unique_ptr m_data; }; #ifdef LYSHINE_ATOM_TODO // [LYN-3359] - render target support using Atom diff --git a/Gems/LyShine/Code/Tests/TextInputComponentTest.cpp b/Gems/LyShine/Code/Tests/TextInputComponentTest.cpp index 6a9560da27..97c178a557 100644 --- a/Gems/LyShine/Code/Tests/TextInputComponentTest.cpp +++ b/Gems/LyShine/Code/Tests/TextInputComponentTest.cpp @@ -8,7 +8,6 @@ #include "LyShineTest.h" -#include #include "UiGameEntityContext.h" #include "UiElementComponent.h" #include "UiTransform2dComponent.h" @@ -118,13 +117,10 @@ namespace UnitTest m_priorEnv = gEnv; gEnv = &m_env->m_stubEnv; - m_data = AZStd::make_unique(); - m_env->m_stubEnv.pRenderer = &m_data->m_renderer; } void TearDown() override { - m_data.reset(); m_env.reset(); gEnv = m_priorEnv; @@ -140,12 +136,7 @@ namespace UnitTest SSystemGlobalEnvironment m_stubEnv; }; - struct DataMembers - { - testing::NiceMock m_renderer; - }; - AZStd::unique_ptr m_data; AZStd::unique_ptr m_env; SSystemGlobalEnvironment* m_priorEnv = nullptr; diff --git a/Gems/LyShine/Code/Tests/UiDynamicScrollBoxComponentTest.cpp b/Gems/LyShine/Code/Tests/UiDynamicScrollBoxComponentTest.cpp index 3ea3550e76..425ab6bb9a 100644 --- a/Gems/LyShine/Code/Tests/UiDynamicScrollBoxComponentTest.cpp +++ b/Gems/LyShine/Code/Tests/UiDynamicScrollBoxComponentTest.cpp @@ -93,7 +93,7 @@ namespace UnitTest static int FindDescendantCount(const AZ::Entity* entity) { LyShine::EntityArray children = entity->FindComponent()->GetChildElements(); - int numDescendants = children.size(); + int numDescendants = static_cast(children.size()); for(const AZ::Entity* child : children) { numDescendants += FindDescendantCount(child); @@ -105,7 +105,7 @@ namespace UnitTest static int FindCanvasElementCount(UiCanvasComponent* uiCanvasComponent) { const LyShine::EntityArray childEntities = uiCanvasComponent->GetChildElements(); - int numCanvasElements = childEntities.size(); + int numCanvasElements = static_cast(childEntities.size()); for (const AZ::Entity* childEntity : childEntities) { numCanvasElements += FindDescendantCount(childEntity); diff --git a/Gems/LyShineExamples/Code/Source/UiCustomImageComponent.h b/Gems/LyShineExamples/Code/Source/UiCustomImageComponent.h index ccd886df87..f696228f5a 100644 --- a/Gems/LyShineExamples/Code/Source/UiCustomImageComponent.h +++ b/Gems/LyShineExamples/Code/Source/UiCustomImageComponent.h @@ -136,7 +136,7 @@ namespace LyShineExamples float m_overrideAlpha; // cached rendering data for performance optimization - IRenderer::DynUiPrimitive m_cachedPrimitive; + DynUiPrimitive m_cachedPrimitive; bool m_isRenderCacheDirty = true; }; } diff --git a/Gems/Maestro/Code/CMakeLists.txt b/Gems/Maestro/Code/CMakeLists.txt index 56d1f2f3c4..2ae737acc7 100644 --- a/Gems/Maestro/Code/CMakeLists.txt +++ b/Gems/Maestro/Code/CMakeLists.txt @@ -75,23 +75,10 @@ if (PAL_TRAIT_BUILD_HOST_TOOLS) ly_create_alias(NAME Maestro.Tools NAMESPACE Gem TARGETS Gem::Maestro.Editor) ly_create_alias(NAME Maestro.Builders NAMESPACE Gem TARGETS Gem::Maestro.Editor) - # Maestro is still used by the CrySystem Level System and SystemInit and TrackView - # It is required by the GameLauncher, ServerLauncher and Editor applications - ly_enable_gems(GEMS Maestro VARIANTS Tools TARGETS Editor) - endif() -# Loop over each Project name to allow the ${ProjectName}.GameLauncher and ${ProjectName}.ServerLauncher -# target to add the gem the Clients and Servers variant -get_property(LY_PROJECTS_TARGET_NAME GLOBAL PROPERTY LY_PROJECTS_TARGET_NAME) -foreach(project_name IN LISTS LY_PROJECTS_TARGET_NAME) - # Add gem as a dependency of the Clients Launcher - ly_enable_gems(PROJECT_NAME ${project_name} GEMS Maestro VARIANTS Clients TARGETS ${project_name}.GameLauncher) - # Add gem as a dependency of the Servers Launcher - if(PAL_TRAIT_BUILD_SERVER_SUPPORTED) - ly_enable_gems(PROJECT_NAME ${project_name} GEMS Maestro VARIANTS Servers TARGETS ${project_name}.ServerLauncher) - endif() -endforeach() +# Maestro is still used by the CrySystem Level System, CSystem::SystemInit and TrackView +ly_enable_gems(GEMS Maestro) ################################################################################ diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimComponentNode.h b/Gems/Maestro/Code/Source/Cinematics/AnimComponentNode.h index 5ad3ab6f94..43f49e8b80 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimComponentNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimComponentNode.h @@ -152,14 +152,14 @@ private: { m_displayName = other.m_displayName; m_animNodeParamInfo.paramType = other.m_displayName; - m_animNodeParamInfo.name = &m_displayName[0]; + m_animNodeParamInfo.name = m_displayName; } BehaviorPropertyInfo& operator=(const AZStd::string& str) { // TODO: clean this up - this weird memory sharing was copied from legacy Cry - could be better. m_displayName = str; m_animNodeParamInfo.paramType = str; // set type to AnimParamType::ByString by assigning a string - m_animNodeParamInfo.name = &m_displayName[0]; + m_animNodeParamInfo.name = m_displayName; return *this; } diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimNode.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimNode.cpp index 828e5ad20f..c141dc51c8 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimNode.cpp @@ -77,7 +77,7 @@ int CAnimNode::GetTrackCount() const return static_cast(m_tracks.size()); } -const char* CAnimNode::GetParamName(const CAnimParamType& paramType) const +AZStd::string CAnimNode::GetParamName(const CAnimParamType& paramType) const { SParamInfo info; if (GetParamInfoFromType(paramType, info)) diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimNode.h b/Gems/Maestro/Code/Source/Cinematics/AnimNode.h index 418d667c34..7c56d8f641 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimNode.h @@ -86,7 +86,7 @@ public: ////////////////////////////////////////////////////////////////////////// bool IsParamValid(const CAnimParamType& paramType) const; - virtual const char* GetParamName(const CAnimParamType& param) const; + AZStd::string GetParamName(const CAnimParamType& param) const override; virtual AnimValueType GetParamValueType(const CAnimParamType& paramType) const; virtual IAnimNode::ESupportedParamFlags GetParamFlags(const CAnimParamType& paramType) const; virtual unsigned int GetParamCount() const { return 0; }; diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimPostFXNode.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimPostFXNode.cpp index 9da32d757a..7e32301b71 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimPostFXNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimPostFXNode.cpp @@ -12,7 +12,6 @@ #include "AnimSplineTrack.h" #include "CompoundSplineTrack.h" #include "BoolTrack.h" -#include "IPostEffectGroup.h" #include "Maestro/Types/AnimNodeType.h" #include "Maestro/Types/AnimParamType.h" #include "Maestro/Types/AnimValueType.h" @@ -236,7 +235,7 @@ CAnimNode* CAnimPostFXNode::CreateNode(const int id, AnimNodeType nodeType) retNode = aznew CAnimPostFXNode(id, nodeType, pDesc); static_cast(retNode)->m_nodeType = nodeType; } - + return retNode; } @@ -294,7 +293,7 @@ unsigned int CAnimPostFXNode::GetParamCount() const //----------------------------------------------------------------------------- CAnimParamType CAnimPostFXNode::GetParamType(unsigned int nIndex) const { - if (nIndex >= 0 && nIndex < (int)m_pDescription->m_nodeParams.size()) + if (nIndex < m_pDescription->m_nodeParams.size()) { return m_pDescription->m_nodeParams[nIndex].paramType; } diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimScreenFaderNode.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimScreenFaderNode.cpp index 62cffcefb1..975e31d8cb 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimScreenFaderNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimScreenFaderNode.cpp @@ -304,7 +304,7 @@ unsigned int CAnimScreenFaderNode::GetParamCount() const //----------------------------------------------------------------------------- CAnimParamType CAnimScreenFaderNode::GetParamType(unsigned int nIndex) const { - if (nIndex >= 0 && nIndex < (int)s_screenFaderNodeParams.size()) + if (nIndex < s_screenFaderNodeParams.size()) { return s_screenFaderNodeParams[nIndex].paramType; } diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimSequence.h b/Gems/Maestro/Code/Source/Cinematics/AnimSequence.h index f69017c3a6..0a1d4a931c 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimSequence.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimSequence.h @@ -18,6 +18,8 @@ #include "TrackEventTrack.h" +#include + class CAnimSequence : public IAnimSequence { diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack.h b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack.h index 5167a8e7b1..46dcb63daa 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack.h @@ -54,7 +54,7 @@ public: virtual int GetSubTrackCount() const { return 0; }; virtual IAnimTrack* GetSubTrack([[maybe_unused]] int nIndex) const { return 0; }; - virtual const char* GetSubTrackName([[maybe_unused]] int nIndex) const { return NULL; }; + AZStd::string GetSubTrackName([[maybe_unused]] int nIndex) const { return AZStd::string(); }; virtual void SetSubTrackName([[maybe_unused]] int nIndex, [[maybe_unused]] const char* name) { assert(0); } void SetNode(IAnimNode* node) override { m_node = node; } diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimTrack.h b/Gems/Maestro/Code/Source/Cinematics/AnimTrack.h index b65dad1323..e16f64c7c1 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimTrack.h @@ -37,7 +37,7 @@ public: virtual int GetSubTrackCount() const { return 0; }; virtual IAnimTrack* GetSubTrack([[maybe_unused]] int nIndex) const { return 0; }; - virtual const char* GetSubTrackName([[maybe_unused]] int nIndex) const { return NULL; }; + AZStd::string GetSubTrackName([[maybe_unused]] int nIndex) const override { return AZStd::string(); }; virtual void SetSubTrackName([[maybe_unused]] int nIndex, [[maybe_unused]] const char* name) { assert(0); } virtual const CAnimParamType& GetParameterType() const { return m_nParamType; }; diff --git a/Gems/Maestro/Code/Source/Cinematics/CommentNode.cpp b/Gems/Maestro/Code/Source/Cinematics/CommentNode.cpp index fc58b91723..98bfef78a0 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CommentNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/CommentNode.cpp @@ -120,7 +120,7 @@ unsigned int CCommentNode::GetParamCount() const //----------------------------------------------------------------------------- CAnimParamType CCommentNode::GetParamType(unsigned int nIndex) const { - if (nIndex >= 0 && nIndex < (int)s_nodeParameters.size()) + if (nIndex < s_nodeParameters.size()) { return s_nodeParameters[nIndex].paramType; } diff --git a/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.cpp index 884a90b200..d134d5f0f7 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.cpp @@ -346,10 +346,10 @@ IAnimTrack* CCompoundSplineTrack::GetSubTrack(int nIndex) const } ////////////////////////////////////////////////////////////////////////// -const char* CCompoundSplineTrack::GetSubTrackName(int nIndex) const +AZStd::string CCompoundSplineTrack::GetSubTrackName(int nIndex) const { assert(nIndex >= 0 && nIndex < m_nDimensions); - return m_subTrackNames[nIndex].c_str(); + return m_subTrackNames[nIndex]; } diff --git a/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.h b/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.h index b0a2733316..443bad584b 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.h @@ -38,7 +38,7 @@ public: virtual int GetSubTrackCount() const { return m_nDimensions; }; virtual IAnimTrack* GetSubTrack(int nIndex) const; - virtual const char* GetSubTrackName(int nIndex) const; + AZStd::string GetSubTrackName(int nIndex) const; virtual void SetSubTrackName(int nIndex, const char* name); virtual EAnimCurveType GetCurveType() { return eAnimCurveType_BezierFloat; }; diff --git a/Gems/Maestro/Code/Source/Cinematics/LayerNode.cpp b/Gems/Maestro/Code/Source/Cinematics/LayerNode.cpp index 8c518f5a54..e2a9e816c6 100644 --- a/Gems/Maestro/Code/Source/Cinematics/LayerNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/LayerNode.cpp @@ -144,7 +144,7 @@ unsigned int CLayerNode::GetParamCount() const //----------------------------------------------------------------------------- CAnimParamType CLayerNode::GetParamType(unsigned int nIndex) const { - if (nIndex >= 0 && nIndex < (int)s_nodeParams.size()) + if (nIndex < (int)s_nodeParams.size()) { return s_nodeParams[nIndex].paramType; } diff --git a/Gems/Maestro/Code/Source/Cinematics/MaterialNode.cpp b/Gems/Maestro/Code/Source/Cinematics/MaterialNode.cpp index 08d4d92e8b..9a54b21d7f 100644 --- a/Gems/Maestro/Code/Source/Cinematics/MaterialNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/MaterialNode.cpp @@ -180,7 +180,7 @@ unsigned int CAnimMaterialNode::GetParamCount() const ////////////////////////////////////////////////////////////////////////// CAnimParamType CAnimMaterialNode::GetParamType(unsigned int nIndex) const { - if (nIndex >= 0 && nIndex < (int)s_nodeParams.size()) + if (nIndex < s_nodeParams.size()) { return s_nodeParams[nIndex].paramType; } @@ -217,7 +217,7 @@ bool CAnimMaterialNode::GetParamInfoFromType(const CAnimParamType& paramId, SPar } ////////////////////////////////////////////////////////////////////////// -const char* CAnimMaterialNode::GetParamName(const CAnimParamType& param) const +AZStd::string CAnimMaterialNode::GetParamName(const CAnimParamType& param) const { if (param.GetType() == AnimParamType::ByString) { diff --git a/Gems/Maestro/Code/Source/Cinematics/MaterialNode.h b/Gems/Maestro/Code/Source/Cinematics/MaterialNode.h index 003312c426..0c8bc38f1a 100644 --- a/Gems/Maestro/Code/Source/Cinematics/MaterialNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/MaterialNode.h @@ -12,6 +12,8 @@ #pragma once #include "AnimNode.h" +#include +#include class CAnimMaterialNode : public CAnimNode @@ -37,13 +39,13 @@ public: ////////////////////////////////////////////////////////////////////////// virtual unsigned int GetParamCount() const; virtual CAnimParamType GetParamType(unsigned int nIndex) const; - virtual const char* GetParamName(const CAnimParamType& paramType) const; + AZStd::string GetParamName(const CAnimParamType& paramType) const override; virtual void GetKeyValueRange(float& fMin, float& fMax) const { fMin = m_fMinKeyValue; fMax = m_fMaxKeyValue; }; virtual void SetKeyValueRange(float fMin, float fMax){ m_fMinKeyValue = fMin; m_fMaxKeyValue = fMax; }; virtual void InitializeTrack(IAnimTrack* pTrack, const CAnimParamType& paramType); - + static void Reflect(AZ::ReflectContext* context); protected: diff --git a/Gems/Maestro/Code/Source/Cinematics/Movie.cpp b/Gems/Maestro/Code/Source/Cinematics/Movie.cpp index cf51ef3729..467ab37dab 100644 --- a/Gems/Maestro/Code/Source/Cinematics/Movie.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/Movie.cpp @@ -27,6 +27,7 @@ #include #include +#include #include #include @@ -973,9 +974,6 @@ void CMovieSystem::StillUpdate() ////////////////////////////////////////////////////////////////////////// void CMovieSystem::ShowPlayedSequencesDebug() { - f32 green[4] = {0, 1, 0, 1}; - f32 purple[4] = {1, 0, 1, 1}; - f32 white[4] = {1, 1, 1, 1}; float y = 10.0f; std::vector names; diff --git a/Gems/Maestro/Code/Source/Cinematics/Movie.h b/Gems/Maestro/Code/Source/Cinematics/Movie.h index 6ac857d652..0d7d1743f1 100644 --- a/Gems/Maestro/Code/Source/Cinematics/Movie.h +++ b/Gems/Maestro/Code/Source/Cinematics/Movie.h @@ -15,7 +15,11 @@ #pragma once #include +#include +#include + #include "IMovieSystem.h" +#include "IShader.h" struct PlayingSequence { diff --git a/Gems/Maestro/Code/Source/Cinematics/SceneNode.cpp b/Gems/Maestro/Code/Source/Cinematics/SceneNode.cpp index d4b894dc92..10014a8700 100644 --- a/Gems/Maestro/Code/Source/Cinematics/SceneNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/SceneNode.cpp @@ -42,8 +42,6 @@ #define s_nodeParams s_nodeParamsSene #define AddSupportedParam AddSupportedParamScene -float const kDefaultCameraFOV = 60.0f; - namespace { bool s_nodeParamsInitialized = false; StaticInstance> s_nodeParams; @@ -260,7 +258,7 @@ unsigned int CAnimSceneNode::GetParamCount() const ////////////////////////////////////////////////////////////////////////// CAnimParamType CAnimSceneNode::GetParamType(unsigned int nIndex) const { - if (nIndex >= 0 && nIndex < (int)s_nodeParams.size()) + if (nIndex < s_nodeParams.size()) { return s_nodeParams[nIndex].paramType; } @@ -697,7 +695,6 @@ void CAnimSceneNode::InterpolateCameras(SCameraParams& retInterpolatedCameraPara return; } - static const float EPSILON_TIME = 0.01f; // consider times within EPSILON_TIME of beginning of blend time to be at the beginning of blend time float interpolatedFoV; ISceneCamera* secondCamera = static_cast(new CComponentEntitySceneCamera(secondKey.cameraAzEntityId)); diff --git a/Gems/Maestro/Code/Source/Cinematics/ScreenFaderTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/ScreenFaderTrack.cpp index 9ac19f91ea..1b2fbe0baf 100644 --- a/Gems/Maestro/Code/Source/Cinematics/ScreenFaderTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/ScreenFaderTrack.cpp @@ -9,7 +9,7 @@ #include #include "ScreenFaderTrack.h" -#include +#include //----------------------------------------------------------------------------- CScreenFaderTrack::CScreenFaderTrack() diff --git a/Gems/Maestro/Code/Source/Cinematics/ShadowsSetupNode.cpp b/Gems/Maestro/Code/Source/Cinematics/ShadowsSetupNode.cpp index fd5e30199e..817c37483e 100644 --- a/Gems/Maestro/Code/Source/Cinematics/ShadowsSetupNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/ShadowsSetupNode.cpp @@ -87,7 +87,7 @@ unsigned int CShadowsSetupNode::GetParamCount() const //----------------------------------------------------------------------------- CAnimParamType CShadowsSetupNode::GetParamType(unsigned int nIndex) const { - if (nIndex >= 0 && nIndex < (int)ShadowSetupNode::s_shadowSetupParams.size()) + if (nIndex < ShadowSetupNode::s_shadowSetupParams.size()) { return ShadowSetupNode::s_shadowSetupParams[nIndex].paramType; } diff --git a/Gems/Maestro/Code/Source/Cinematics/SoundTrack.h b/Gems/Maestro/Code/Source/Cinematics/SoundTrack.h index ac6eca4f03..58ba8c78c6 100644 --- a/Gems/Maestro/Code/Source/Cinematics/SoundTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/SoundTrack.h @@ -11,6 +11,7 @@ #define CRYINCLUDE_CRYMOVIE_SOUNDTRACK_H #include "AnimTrack.h" +#include struct SSoundInfo { diff --git a/Gems/Maestro/Code/Source/Cinematics/Tests/AssetBlendTrackTest.cpp b/Gems/Maestro/Code/Source/Cinematics/Tests/AssetBlendTrackTest.cpp index e995795198..09bbe640d4 100644 --- a/Gems/Maestro/Code/Source/Cinematics/Tests/AssetBlendTrackTest.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/Tests/AssetBlendTrackTest.cpp @@ -20,7 +20,6 @@ namespace AssetBlendTrackTest const AZ::Data::AssetId KEY1_ASSET_ID = AZ::Data::AssetId(AZ::Uuid("{86CE36B5-D996-4CEF-943E-3F12008694E1}"), 1); const AZ::Data::AssetId KEY2_ASSET_ID = AZ::Data::AssetId(AZ::Uuid("{94D54D20-BACC-4A60-8A03-0DC9B5033E03}"), 2); const AZ::Data::AssetId KEY3_ASSET_ID = AZ::Data::AssetId(AZ::Uuid("{94D54D20-BACC-4A60-8A03-0DC9B5033E03}"), 3); - const float KEY_TIME = 1.0f; ///////////////////////////////////////////////////////////////////////////////////// // Testing sub-class diff --git a/Gems/Maestro/Code/Source/Cinematics/Tests/EntityNodeTest.cpp b/Gems/Maestro/Code/Source/Cinematics/Tests/EntityNodeTest.cpp index 064f1ba6a7..763fa67c78 100644 --- a/Gems/Maestro/Code/Source/Cinematics/Tests/EntityNodeTest.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/Tests/EntityNodeTest.cpp @@ -15,8 +15,6 @@ namespace EntityNodeTest { - // dummy entity id - const int ENTITY_ID = 0; // consants to set up test key frame, at 1.0 seconds, lasting for 1.0 seconds const int KEY_IDX = 0; const float KEY_TIME = 1.0f; @@ -113,7 +111,6 @@ namespace EntityNodeTest TEST_F(CryMovie_CharacterTrackAnimator_Test, CryMovieUnitTest_CharacterTrackAnimator_ComputeAnimKeyNormalizedTime_Loop) { const float NORMALIZED_CLIP_START = .0f; - const float NORMALIZED_CLIP_END = 1.0f; const float ERROR_TOLERANCE = 0.0001f; ICharacterKey key; m_dummyTrack.GetKey(EntityNodeTest::KEY_IDX, &key); diff --git a/Gems/Maestro/Code/Source/Cinematics/TrackEventTrack.h b/Gems/Maestro/Code/Source/Cinematics/TrackEventTrack.h index 3993194bcf..13a6549220 100644 --- a/Gems/Maestro/Code/Source/Cinematics/TrackEventTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/TrackEventTrack.h @@ -15,6 +15,7 @@ #include "IMovieSystem.h" #include "AnimTrack.h" #include "AnimKey.h" +#include "StlUtils.h" class CAnimStringTable : public IAnimStringTable diff --git a/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.cpp b/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.cpp index 4264dd0ab3..acc9713291 100644 --- a/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.cpp +++ b/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.cpp @@ -146,7 +146,7 @@ namespace Maestro AZ::EntityId sequenceEntityId = busIdToDisconnect->first; // we only process DisconnectSequence events sent over an ID'ed bus - otherwise we don't know which SequenceComponent to disconnect - auto findIter = m_sequenceEntityIds.find(sequenceEntityId); + [[maybe_unused]] auto findIter = m_sequenceEntityIds.find(sequenceEntityId); AZ_Assert(findIter != m_sequenceEntityIds.end(), "A sequence not connected to SequenceAgentComponent on %s is requesting a disconnection", GetEntity()->GetName().c_str()); m_sequenceEntityIds.erase(sequenceEntityId); diff --git a/Gems/Maestro/Code/Source/Components/SequenceAgentComponent.cpp b/Gems/Maestro/Code/Source/Components/SequenceAgentComponent.cpp index 83599d7b40..5f38334c83 100644 --- a/Gems/Maestro/Code/Source/Components/SequenceAgentComponent.cpp +++ b/Gems/Maestro/Code/Source/Components/SequenceAgentComponent.cpp @@ -74,7 +74,7 @@ namespace Maestro AZ::EntityId sequenceEntityId = busIdToDisconnect->first; // we only process DisconnectSequence events sent over an ID'ed bus - otherwise we don't know which SequenceComponent to disconnect - auto findIter = m_sequenceEntityIds.find(sequenceEntityId); + [[maybe_unused]] auto findIter = m_sequenceEntityIds.find(sequenceEntityId); AZ_Assert(findIter != m_sequenceEntityIds.end(), "A sequence not connected to SequenceAgentComponent on %s is requesting a disconnection", GetEntity()->GetName().c_str()); m_sequenceEntityIds.erase(sequenceEntityId); diff --git a/Gems/Maestro/Code/Source/MaestroSystemComponent.h b/Gems/Maestro/Code/Source/MaestroSystemComponent.h index b27075dbc0..8b37dee183 100644 --- a/Gems/Maestro/Code/Source/MaestroSystemComponent.h +++ b/Gems/Maestro/Code/Source/MaestroSystemComponent.h @@ -11,6 +11,7 @@ #include #include #include +#include #include "Cinematics/Movie.h" #include "Maestro/MaestroBus.h" diff --git a/Gems/Microphone/Code/Include/Microphone/WAVUtil.h b/Gems/Microphone/Code/Include/Microphone/WAVUtil.h index 71c1ec13d1..9fdcc95a97 100644 --- a/Gems/Microphone/Code/Include/Microphone/WAVUtil.h +++ b/Gems/Microphone/Code/Include/Microphone/WAVUtil.h @@ -89,7 +89,7 @@ namespace Audio AZ::IO::FileIOStream fileStream(filePath.c_str(), AZ::IO::OpenMode::ModeWrite | AZ::IO::OpenMode::ModeBinary); if (fileStream.IsOpen()) { - auto bytesWritten = fileStream.Write(m_bufferSize, m_buffer); + [[maybe_unused]] auto bytesWritten = fileStream.Write(m_bufferSize, m_buffer); AZ_TracePrintf("WAVUtil", "Wrote WAV file: %s, %d bytes\n", filePath.c_str(), bytesWritten); return true; } diff --git a/Gems/Microphone/Code/Source/Platform/Android/MicrophoneSystemComponent_Android.cpp b/Gems/Microphone/Code/Source/Platform/Android/MicrophoneSystemComponent_Android.cpp index f30bef03ae..1e696f7978 100644 --- a/Gems/Microphone/Code/Source/Platform/Android/MicrophoneSystemComponent_Android.cpp +++ b/Gems/Microphone/Code/Source/Platform/Android/MicrophoneSystemComponent_Android.cpp @@ -121,53 +121,51 @@ namespace Audio AZStd::size_t GetData(void** outputData, AZStd::size_t numFrames, const SAudioInputConfig& targetConfig, bool shouldDeinterleave) { - - bool changeSampleType = (targetConfig.m_sampleType != m_config.m_sampleType); - bool changeSampleRate = (targetConfig.m_sampleRate != m_config.m_sampleRate); - bool changeNumChannels = (targetConfig.m_numChannels != m_config.m_numChannels); - #if defined(USE_LIBSAMPLERATE) return {}; #else - if (changeSampleType || changeNumChannels) - { - // Without the SRC library, any change is unsupported! - return {}; - } - else if (changeSampleRate) - { - if(targetConfig.m_sampleRate > m_config.m_sampleRate) + bool changeSampleType = (targetConfig.m_sampleType != m_config.m_sampleType); + bool changeSampleRate = (targetConfig.m_sampleRate != m_config.m_sampleRate); + bool changeNumChannels = (targetConfig.m_numChannels != m_config.m_numChannels); + if (changeSampleType || changeNumChannels) { - AZ_Error("MacOSMicrophone", false, "Target sample rate is larger than source sample rate, this is not supported"); + // Without the SRC library, any change is unsupported! return {}; } - - auto sourceBuffer = new AZ::s16[numFrames]; - AZStd::size_t targetSize = GetDownsampleSize(numFrames, m_config.m_sampleRate, targetConfig.m_sampleRate); - auto targetBuffer = new AZ::s16[targetSize]; - - numFrames = m_captureData->ConsumeData(reinterpret_cast(&sourceBuffer), numFrames, m_config.m_numChannels, false); - - - if(numFrames > 0) + else if (changeSampleRate) { - Downsample(sourceBuffer, numFrames, m_config.m_sampleRate, targetBuffer, targetSize, targetConfig.m_sampleRate); + if(targetConfig.m_sampleRate > m_config.m_sampleRate) + { + AZ_Error("MacOSMicrophone", false, "Target sample rate is larger than source sample rate, this is not supported"); + return {}; + } - numFrames = targetSize; - // swap target data to output - ::memcpy(*outputData, targetBuffer, targetSize * 2); //*2 as two bytes per frame + auto sourceBuffer = new AZ::s16[numFrames]; + AZStd::size_t targetSize = GetDownsampleSize(numFrames, m_config.m_sampleRate, targetConfig.m_sampleRate); + auto targetBuffer = new AZ::s16[targetSize]; + + numFrames = m_captureData->ConsumeData(reinterpret_cast(&sourceBuffer), numFrames, m_config.m_numChannels, false); + + + if(numFrames > 0) + { + Downsample(sourceBuffer, numFrames, m_config.m_sampleRate, targetBuffer, targetSize, targetConfig.m_sampleRate); + + numFrames = targetSize; + // swap target data to output + ::memcpy(*outputData, targetBuffer, targetSize * 2); //*2 as two bytes per frame + } + + delete [] sourceBuffer; + delete [] targetBuffer; + + return numFrames; + } + else + { + // No change to the data from Input to Output + return m_captureData->ConsumeData(outputData, numFrames, m_config.m_numChannels, shouldDeinterleave); } - - delete [] sourceBuffer; - delete [] targetBuffer; - - return numFrames; - } - else - { - // No change to the data from Input to Output - return m_captureData->ConsumeData(outputData, numFrames, m_config.m_numChannels, shouldDeinterleave); - } #endif } diff --git a/Gems/Microphone/Code/Source/Platform/Mac/MicrophoneSystemComponent_Mac.mm b/Gems/Microphone/Code/Source/Platform/Mac/MicrophoneSystemComponent_Mac.mm index 1f7cef7b0c..567f2db6b2 100644 --- a/Gems/Microphone/Code/Source/Platform/Mac/MicrophoneSystemComponent_Mac.mm +++ b/Gems/Microphone/Code/Source/Platform/Mac/MicrophoneSystemComponent_Mac.mm @@ -241,13 +241,14 @@ public: AZStd::size_t GetData(void** outputData, AZStd::size_t numFrames, const SAudioInputConfig& targetConfig, bool shouldDeinterleave) override { - bool changeSampleType = (targetConfig.m_sampleType != m_config.m_sampleType); - bool changeSampleRate = (targetConfig.m_sampleRate != m_config.m_sampleRate); - bool changeNumChannels = (targetConfig.m_numChannels != m_config.m_numChannels); #if defined(USE_LIBSAMPLERATE) // pending port of LIBSAMPLERATE to MacOS return {}; #else + bool changeSampleType = (targetConfig.m_sampleType != m_config.m_sampleType); + bool changeSampleRate = (targetConfig.m_sampleRate != m_config.m_sampleRate); + bool changeNumChannels = (targetConfig.m_numChannels != m_config.m_numChannels); + if (changeSampleType || changeNumChannels) { // Without the SRC library, any change is unsupported! diff --git a/Gems/Microphone/Code/Source/Platform/iOS/MicrophoneSystemComponent_iOS.mm b/Gems/Microphone/Code/Source/Platform/iOS/MicrophoneSystemComponent_iOS.mm index fe8580723a..a3d4f9434f 100644 --- a/Gems/Microphone/Code/Source/Platform/iOS/MicrophoneSystemComponent_iOS.mm +++ b/Gems/Microphone/Code/Source/Platform/iOS/MicrophoneSystemComponent_iOS.mm @@ -187,13 +187,14 @@ public: AZStd::size_t GetData(void** outputData, AZStd::size_t numFrames, const SAudioInputConfig& targetConfig, bool shouldDeinterleave) override { - bool changeSampleType = (targetConfig.m_sampleType != m_config.m_sampleType); - bool changeSampleRate = (targetConfig.m_sampleRate != m_config.m_sampleRate); - bool changeNumChannels = (targetConfig.m_numChannels != m_config.m_numChannels); #if defined(USE_LIBSAMPLERATE) // pending port of LIBSAMPLERATE to iOS return {}; #else + bool changeSampleType = (targetConfig.m_sampleType != m_config.m_sampleType); + bool changeSampleRate = (targetConfig.m_sampleRate != m_config.m_sampleRate); + bool changeNumChannels = (targetConfig.m_numChannels != m_config.m_numChannels); + if (changeSampleType || changeNumChannels) { // Without the SRC library, any change is unsupported! diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/Components/LocalPredictionPlayerInputComponent.h b/Gems/Multiplayer/Code/Include/Multiplayer/Components/LocalPredictionPlayerInputComponent.h index f26f043b85..397406f3b5 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/Components/LocalPredictionPlayerInputComponent.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/Components/LocalPredictionPlayerInputComponent.h @@ -21,6 +21,7 @@ namespace Multiplayer AZ_MULTIPLAYER_COMPONENT(Multiplayer::LocalPredictionPlayerInputComponent, s_localPredictionPlayerInputComponentConcreteUuid, Multiplayer::LocalPredictionPlayerInputComponentBase); static void Reflect([[maybe_unused]] AZ::ReflectContext* context); + static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided); void OnInit() override; void OnActivate([[maybe_unused]] Multiplayer::EntityIsMigrating entityIsMigrating) override; diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerComponent.h b/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerComponent.h index 64ceb6e16f..f685d453f3 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerComponent.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerComponent.h @@ -102,11 +102,34 @@ namespace Multiplayer return GetEntity()->FindComponent(); } + inline void UpdateComponentMetrics + ( + bool modifyRecord, + uint32_t prevSerializerSize, + uint32_t currSerializerSize, + NetComponentId componentId, + PropertyIndex propertyIndex, + MultiplayerStats& stats + ) + { + const uint32_t updateSize = (currSerializerSize - prevSerializerSize); + if (updateSize > 0) + { + if (modifyRecord) + { + stats.RecordPropertyReceived(componentId, propertyIndex, updateSize); + } + else + { + stats.RecordPropertySent(componentId, propertyIndex, updateSize); + } + } + } + template inline void SerializeNetworkPropertyHelper ( AzNetworking::ISerializer& serializer, - bool modifyRecord, AzNetworking::FixedSizeBitsetView& bitset, int32_t bitIndex, TYPE& value, @@ -118,6 +141,7 @@ namespace Multiplayer { if (bitset.GetBit(bitIndex)) { + const bool modifyRecord = serializer.GetSerializerMode() == AzNetworking::SerializerMode::WriteToObject; const uint32_t prevUpdateSize = serializer.GetSize(); serializer.ClearTrackedChangesFlag(); serializer.Serialize(value, name); @@ -127,19 +151,78 @@ namespace Multiplayer bitset.SetBit(bitIndex, false); } const uint32_t postUpdateSize = serializer.GetSize(); - // Network Property metrics - const uint32_t updateSize = (postUpdateSize - prevUpdateSize); - if (updateSize > 0) + UpdateComponentMetrics(modifyRecord, prevUpdateSize, postUpdateSize, componentId, propertyIndex, stats); + } + } + + template + inline void SerializeNetworkPropertyHelperArray + ( + AzNetworking::ISerializer& serializer, + AzNetworking::FixedSizeBitsetView& bitset, + AZStd::array& value, + NetComponentId componentId, + PropertyIndex propertyIndex, + MultiplayerStats& stats + ) + { + const bool modifyRecord = serializer.GetSerializerMode() == AzNetworking::SerializerMode::WriteToObject; + const uint32_t prevUpdateSize = serializer.GetSize(); + for (uint32_t i = 0; i < SIZE; ++i) + { + if (bitset.GetBit(i)) { - if (modifyRecord) + serializer.ClearTrackedChangesFlag(); + serializer.Serialize(value[i], "Element"); + if (modifyRecord && !serializer.GetTrackedChangesFlag()) { - stats.RecordPropertyReceived(componentId, propertyIndex, updateSize); - } - else - { - stats.RecordPropertySent(componentId, propertyIndex, updateSize); + bitset.SetBit(i, false); } } } + const uint32_t postUpdateSize = serializer.GetSize(); + UpdateComponentMetrics(modifyRecord, prevUpdateSize, postUpdateSize, componentId, propertyIndex, stats); + } + + template + inline void SerializeNetworkPropertyHelperVector + ( + AzNetworking::ISerializer& serializer, + AzNetworking::FixedSizeBitsetView& bitset, + AZStd::fixed_vector& value, + NetComponentId componentId, + PropertyIndex propertyIndex, + MultiplayerStats& stats + ) + { + const bool modifyRecord = serializer.GetSerializerMode() == AzNetworking::SerializerMode::WriteToObject; + const uint32_t prevUpdateSize = serializer.GetSize(); + if (bitset.GetBit(SIZE)) + { + using SizeType = typename AZ::SizeType(), false>::Type; + SizeType origSize = aznumeric_cast(value.size()); + SizeType newSize = origSize; + serializer.Serialize(newSize, "Size"); + value.resize(newSize); + if (modifyRecord && origSize == newSize) + { + bitset.SetBit(SIZE, false); + } + } + + for (uint32_t i = 0; i < value.size(); ++i) + { + if (bitset.GetBit(i)) + { + serializer.ClearTrackedChangesFlag(); + serializer.Serialize(value[i], "Element"); + if (modifyRecord && !serializer.GetTrackedChangesFlag()) + { + bitset.SetBit(i, false); + } + } + } + const uint32_t postUpdateSize = serializer.GetSize(); + UpdateComponentMetrics(modifyRecord, prevUpdateSize, postUpdateSize, componentId, propertyIndex, stats); } } diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerConstants.h b/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerConstants.h index b6ed0219f8..4471aa0c2b 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerConstants.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerConstants.h @@ -17,12 +17,10 @@ namespace Multiplayer { - constexpr AZStd::string_view MPNetworkInterfaceName("MultiplayerNetworkInterface"); - constexpr AZStd::string_view MPEditorInterfaceName("MultiplayerEditorNetworkInterface"); - + constexpr AZStd::string_view MpNetworkInterfaceName("MultiplayerNetworkInterface"); + constexpr AZStd::string_view MpEditorInterfaceName("MultiplayerEditorNetworkInterface"); constexpr AZStd::string_view LocalHost("127.0.0.1"); + constexpr uint16_t DefaultServerPort = 33450; constexpr uint16_t DefaultServerEditorPort = 33451; - } - diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerTypes.h b/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerTypes.h index 704e9d2734..4ac20abc83 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerTypes.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerTypes.h @@ -86,7 +86,7 @@ namespace Multiplayer Activate }; - // Structure for identifying a specific entity within a spawnable + //! Structure for identifying a specific entity within a spawnable. struct PrefabEntityId { AZ_TYPE_INFO(PrefabEntityId, "{EFD37465-CCAC-4E87-A825-41B4010A2C75}"); @@ -97,29 +97,10 @@ namespace Multiplayer uint32_t m_entityOffset = AllIndices; PrefabEntityId() = default; - - explicit PrefabEntityId(AZ::Name name, uint32_t entityOffset = AllIndices) - : m_prefabName(name) - , m_entityOffset(entityOffset) - { - } - - bool operator==(const PrefabEntityId& rhs) const - { - return m_prefabName == rhs.m_prefabName && m_entityOffset == rhs.m_entityOffset; - } - - bool operator!=(const PrefabEntityId& rhs) const - { - return !(*this == rhs); - } - - bool Serialize(AzNetworking::ISerializer& serializer) - { - serializer.Serialize(m_prefabName, "prefabName"); - serializer.Serialize(m_entityOffset, "entityOffset"); - return serializer.IsValid(); - } + explicit PrefabEntityId(AZ::Name name, uint32_t entityOffset = AllIndices); + bool operator==(const PrefabEntityId& rhs) const; + bool operator!=(const PrefabEntityId& rhs) const; + bool Serialize(AzNetworking::ISerializer& serializer); }; struct EntityMigrationMessage @@ -128,6 +109,30 @@ namespace Multiplayer PrefabEntityId m_prefabEntityId; AzNetworking::PacketEncodingBuffer m_propertyUpdateData; }; + + inline PrefabEntityId::PrefabEntityId(AZ::Name name, uint32_t entityOffset) + : m_prefabName(name) + , m_entityOffset(entityOffset) + { + ; + } + + inline bool PrefabEntityId::operator==(const PrefabEntityId& rhs) const + { + return m_prefabName == rhs.m_prefabName && m_entityOffset == rhs.m_entityOffset; + } + + inline bool PrefabEntityId::operator!=(const PrefabEntityId& rhs) const + { + return !(*this == rhs); + } + + inline bool PrefabEntityId::Serialize(AzNetworking::ISerializer& serializer) + { + serializer.Serialize(m_prefabName, "prefabName"); + serializer.Serialize(m_entityOffset, "entityOffset"); + return serializer.IsValid(); + } } AZ_TYPE_SAFE_INTEGRAL_SERIALIZEBINDING(Multiplayer::HostId); diff --git a/Gems/Multiplayer/Code/Source/AutoGen/AutoComponent_Common.jinja b/Gems/Multiplayer/Code/Source/AutoGen/AutoComponent_Common.jinja index 72583f9062..811039feda 100644 --- a/Gems/Multiplayer/Code/Source/AutoGen/AutoComponent_Common.jinja +++ b/Gems/Multiplayer/Code/Source/AutoGen/AutoComponent_Common.jinja @@ -5,12 +5,12 @@ #} {%- macro ParseRpcParams(property, outNames, outTypes, outDefines, use_default_value=False) -%} {%- for Param in property.iter('Param') -%} -{%- do outNames.append(Param.attrib['Name']) -%} +{%- do outNames.append(LowerFirst(Param.attrib['Name'])) -%} {%- do outTypes.append(Param.attrib['Type']) -%} {%- if use_default_value and Param.attrib['DefaultValue'] -%} -{%- do outDefines.append('const ' ~ Param.attrib['Type'] ~ '& ' + Param.attrib['Name'] + ' = ' + Param.attrib['DefaultValue']) -%} +{%- do outDefines.append('const ' ~ Param.attrib['Type'] ~ '& ' + LowerFirst(Param.attrib['Name']) + ' = ' + Param.attrib['DefaultValue']) -%} {%- else -%} -{%- do outDefines.append('const ' ~ Param.attrib['Type'] ~ '& ' ~ Param.attrib['Name']) -%} +{%- do outDefines.append('const ' ~ Param.attrib['Type'] ~ '& ' ~ LowerFirst(Param.attrib['Name'])) -%} {%- endif -%} {%- endfor -%} {%- endmacro -%} diff --git a/Gems/Multiplayer/Code/Source/AutoGen/AutoComponent_Source.jinja b/Gems/Multiplayer/Code/Source/AutoGen/AutoComponent_Source.jinja index 1ddb5d9d65..d8e729afd6 100644 --- a/Gems/Multiplayer/Code/Source/AutoGen/AutoComponent_Source.jinja +++ b/Gems/Multiplayer/Code/Source/AutoGen/AutoComponent_Source.jinja @@ -636,7 +636,6 @@ bool {{ ClassName }}::Serialize{{ AutoComponentMacros.GetNetPropertiesSetName(Re {% if networkPropertyCount.value > 0 %} [[maybe_unused]] Multiplayer::MultiplayerStats& stats = Multiplayer::GetMultiplayer()->GetStats(); // We modify the record if we are writing an update so that we don't notify for a change that really didn't change the value (just a duplicated send from the server) - [[maybe_unused]] bool modifyRecord = serializer.GetSerializerMode() == AzNetworking::SerializerMode::WriteToObject; {% call(Property) AutoComponentMacros.ParseNetworkProperties(Component, ReplicateFrom, ReplicateTo) %} {% if Property.attrib['Container'] != 'None' and Property.attrib['Container'] != 'Object' %} { // Serialization for Vector and Array Network Properties @@ -651,17 +650,24 @@ bool {{ ClassName }}::Serialize{{ AutoComponentMacros.GetNetPropertiesSetName(Re if (deltaRecord.AnySet()) { {% if Property.attrib['Container'] == 'Vector' %} - serializer.Serialize>(m_{{ LowerFirst(Property.attrib['Name']) }}, "{{ LowerFirst(Property.attrib['Name']) }}"); + Multiplayer::SerializeNetworkPropertyHelperVector {% elif Property.attrib['Container'] == 'Array' %} - serializer.Serialize>(m_{{ LowerFirst(Property.attrib['Name']) }}, "{{ LowerFirst(Property.attrib['Name']) }}"); + Multiplayer::SerializeNetworkPropertyHelperArray {% endif %} + ( + serializer, + deltaRecord, + m_{{ LowerFirst(Property.attrib['Name']) }}, + GetNetComponentId(), + static_cast({{ UpperFirst(Component.attrib['Name']) }}Internal::NetworkProperties::{{ UpperFirst(Property.attrib['Name']) }}), + stats + ); } } {% else %} Multiplayer::SerializeNetworkPropertyHelper ( serializer, - modifyRecord, replicationRecord.m_{{ LowerFirst(AutoComponentMacros.GetNetPropertiesSetName(ReplicateFrom, ReplicateTo)) }}, static_cast({{ AutoComponentMacros.GetNetPropertiesQualifiedPropertyDirtyEnum(Component.attrib['Name'], ReplicateFrom, ReplicateTo, Property) }}), m_{{ LowerFirst(Property.attrib['Name']) }}, @@ -1254,10 +1260,12 @@ namespace {{ Component.attrib['Namespace'] }} bool {{ RecordName }}::CanAttachRecord(Multiplayer::ReplicationRecord& replicationRecord) { bool canAttach{ true }; + AZ_PUSH_DISABLE_WARNING(4296, "-Wunknown-warning-option") // expression is always true canAttach &= replicationRecord.ContainsAuthorityToClientBits() ? (replicationRecord.GetRemainingAuthorityToClientBits() >= static_cast({{ AutoComponentMacros.GetNetPropertiesDirtyEnumName(ComponentName, 'Authority', 'Client') }}::Count)) : true; canAttach &= replicationRecord.ContainsAuthorityToServerBits() ? (replicationRecord.GetRemainingAuthorityToServerBits() >= static_cast({{ AutoComponentMacros.GetNetPropertiesDirtyEnumName(ComponentName, 'Authority', 'Server') }}::Count)) : true; canAttach &= replicationRecord.ContainsAuthorityToAutonomousBits() ? (replicationRecord.GetRemainingAuthorityToAutonomousBits() >= static_cast({{ AutoComponentMacros.GetNetPropertiesDirtyEnumName(ComponentName, 'Authority', 'Autonomous') }}::Count)) : true; canAttach &= replicationRecord.ContainsAutonomousToAuthorityBits() ? (replicationRecord.GetRemainingAutonomousToAuthorityBits() >= static_cast({{ AutoComponentMacros.GetNetPropertiesDirtyEnumName(ComponentName, 'Autonomous', 'Authority') }}::Count)) : true; + AZ_POP_DISABLE_WARNING return canAttach; } @@ -1468,6 +1476,11 @@ namespace {{ Component.attrib['Namespace'] }} {% call(ComponentService) ParseComponentServiceNames(Component, ClassType, 'Required') %} required.push_back(AZ_CRC_CE("{{ ComponentService }}")); {% endcall %} +{% if NetworkInputCount > 0 %} + + // This component uses NetworkInputs so it requires a MultiplayerInputDriver service which is responsible for calling CreateInput and ProcessInput + required.push_back(AZ_CRC_CE("MultiplayerInputDriver")); +{% endif %} } void {{ ComponentBaseName }}::GetDependentServices([[maybe_unused]] AZ::ComponentDescriptor::DependencyArrayType& dependent) diff --git a/Gems/Multiplayer/Code/Source/AutoGen/Multiplayer.AutoPackets.xml b/Gems/Multiplayer/Code/Source/AutoGen/Multiplayer.AutoPackets.xml index ce8931107f..203750d761 100644 --- a/Gems/Multiplayer/Code/Source/AutoGen/Multiplayer.AutoPackets.xml +++ b/Gems/Multiplayer/Code/Source/AutoGen/Multiplayer.AutoPackets.xml @@ -7,12 +7,12 @@ - + - + diff --git a/Gems/Multiplayer/Code/Source/Components/LocalPredictionPlayerInputComponent.cpp b/Gems/Multiplayer/Code/Source/Components/LocalPredictionPlayerInputComponent.cpp index 936f2ea92c..418bea79dd 100644 --- a/Gems/Multiplayer/Code/Source/Components/LocalPredictionPlayerInputComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Components/LocalPredictionPlayerInputComponent.cpp @@ -40,7 +40,6 @@ namespace Multiplayer AzNetworking::StringifySerializer::ValueMap differences = clientMap; for (auto iter = server.GetValueMap().begin(); iter != server.GetValueMap().end(); ++iter) { - auto serverValueIter = clientMap.find(iter->first); if (iter->second == differences[iter->first]) { differences.erase(iter->first); @@ -82,6 +81,12 @@ namespace Multiplayer LocalPredictionPlayerInputComponentBase::Reflect(context); } + void LocalPredictionPlayerInputComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided) + { + LocalPredictionPlayerInputComponentBase::GetProvidedServices(provided); + provided.push_back(AZ_CRC_CE("MultiplayerInputDriver")); + } + void LocalPredictionPlayerInputComponent::OnInit() { ; @@ -492,7 +497,6 @@ namespace Multiplayer { const double deltaTime = static_cast(deltaTimeMs) / 1000.0; const double clientInputRateSec = static_cast(static_cast(cl_InputRateMs)) / 1000.0; - const double maxRewindHistory = static_cast(static_cast(cl_MaxRewindHistoryMs)) / 1000.0; // Update banked time accumulator m_clientBankedTime -= deltaTime; diff --git a/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugPerEntityReporter.h b/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugPerEntityReporter.h index 8a68110b93..2d0fe4da39 100644 --- a/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugPerEntityReporter.h +++ b/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugPerEntityReporter.h @@ -53,8 +53,8 @@ namespace Multiplayer AZStd::map m_receivingEntityReports{}; MultiplayerDebugEntityReporter m_currentReceivingEntityReport; - float m_replicatedStateKbpsWarn = 10.f; - float m_replicatedStateMaxSizeWarn = 30.f; + [[maybe_unused]] float m_replicatedStateKbpsWarn = 10.f; + [[maybe_unused]] float m_replicatedStateMaxSizeWarn = 30.f; char m_statusBuffer[100] = {}; diff --git a/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugSystemComponent.cpp b/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugSystemComponent.cpp index 27a4dff485..422b2f0cae 100644 --- a/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugSystemComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugSystemComponent.cpp @@ -230,7 +230,6 @@ namespace Multiplayer void DrawNetworkingStats() { const float TEXT_BASE_WIDTH = ImGui::CalcTextSize("A").x; - const float TEXT_BASE_HEIGHT = ImGui::GetTextLineHeightWithSpacing(); const ImGuiTableFlags flags = ImGuiTableFlags_BordersV | ImGuiTableFlags_BordersOuterH @@ -383,7 +382,6 @@ namespace Multiplayer void DrawMultiplayerStats() { const float TEXT_BASE_WIDTH = ImGui::CalcTextSize("A").x; - const float TEXT_BASE_HEIGHT = ImGui::GetTextLineHeightWithSpacing(); IMultiplayer* multiplayer = AZ::Interface::Get(); MultiplayerComponentRegistry* componentRegistry = GetMultiplayerComponentRegistry(); diff --git a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.cpp b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.cpp index fc398182ef..3ca1af8b66 100644 --- a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.cpp +++ b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.cpp @@ -31,7 +31,7 @@ namespace Multiplayer : m_byteStream(&m_buffer) { m_networkEditorInterface = AZ::Interface::Get()->CreateNetworkInterface( - AZ::Name(MPEditorInterfaceName), ProtocolType::Tcp, TrustZone::ExternalClientToServer, *this); + AZ::Name(MpEditorInterfaceName), ProtocolType::Tcp, TrustZone::ExternalClientToServer, *this); m_networkEditorInterface->SetTimeoutEnabled(false); if (editorsv_isDedicated) { @@ -109,7 +109,7 @@ namespace Multiplayer // Setup the normal multiplayer connection AZ::Interface::Get()->InitializeMultiplayer(MultiplayerAgentType::DedicatedServer); - INetworkInterface* networkInterface = AZ::Interface::Get()->RetrieveNetworkInterface(AZ::Name(MPNetworkInterfaceName)); + INetworkInterface* networkInterface = AZ::Interface::Get()->RetrieveNetworkInterface(AZ::Name(MpNetworkInterfaceName)); uint16_t serverPort = DefaultServerPort; if (auto console = AZ::Interface::Get(); console) @@ -168,7 +168,7 @@ namespace Multiplayer ; } - bool MultiplayerEditorConnection::OnPacketReceived(AzNetworking::IConnection* connection, const IPacketHeader& packetHeader, ISerializer& serializer) + AzNetworking::PacketDispatchResult MultiplayerEditorConnection::OnPacketReceived(AzNetworking::IConnection* connection, const IPacketHeader& packetHeader, ISerializer& serializer) { return MultiplayerEditorPackets::DispatchPacket(connection, packetHeader, serializer, *this); } diff --git a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.h b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.h index 8c19848db7..ca815d5c48 100644 --- a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.h +++ b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.h @@ -33,6 +33,7 @@ namespace Multiplayer MultiplayerEditorConnection(); ~MultiplayerEditorConnection() = default; + bool IsHandshakeComplete() const { return true; }; bool HandleRequest(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, MultiplayerEditorPackets::EditorServerInit& packet); bool HandleRequest(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, MultiplayerEditorPackets::EditorServerReady& packet); @@ -40,7 +41,7 @@ namespace Multiplayer //! @{ AzNetworking::ConnectResult ValidateConnect(const AzNetworking::IpAddress& remoteAddress, const AzNetworking::IPacketHeader& packetHeader, AzNetworking::ISerializer& serializer) override; void OnConnect(AzNetworking::IConnection* connection) override; - bool OnPacketReceived(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, AzNetworking::ISerializer& serializer) override; + AzNetworking::PacketDispatchResult OnPacketReceived(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, AzNetworking::ISerializer& serializer) override; void OnPacketLost(AzNetworking::IConnection* connection, AzNetworking::PacketId packetId) override; void OnDisconnect(AzNetworking::IConnection* connection, AzNetworking::DisconnectReason reason, AzNetworking::TerminationEndpoint endpoint) override; //! @} diff --git a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.cpp b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.cpp index d557c65215..377fb1eb56 100644 --- a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.cpp @@ -105,7 +105,7 @@ namespace Multiplayer m_serverProcess->TerminateProcess(0); m_serverProcess = nullptr; } - INetworkInterface* editorNetworkInterface = AZ::Interface::Get()->RetrieveNetworkInterface(AZ::Name(MPEditorInterfaceName)); + INetworkInterface* editorNetworkInterface = AZ::Interface::Get()->RetrieveNetworkInterface(AZ::Name(MpEditorInterfaceName)); if (editorNetworkInterface) { editorNetworkInterface->Disconnect(m_editorConnId, AzNetworking::DisconnectReason::TerminatedByClient); @@ -194,7 +194,7 @@ namespace Multiplayer AZ::Interface::Get()->BuildSpawnablesList(); // Now that the server has launched, attempt to connect the NetworkInterface - INetworkInterface* editorNetworkInterface = AZ::Interface::Get()->RetrieveNetworkInterface(AZ::Name(MPEditorInterfaceName)); + INetworkInterface* editorNetworkInterface = AZ::Interface::Get()->RetrieveNetworkInterface(AZ::Name(MpEditorInterfaceName)); AZ_Assert(editorNetworkInterface, "MP Editor Network Interface was unregistered before Editor could connect."); m_editorConnId = editorNetworkInterface->Connect( AzNetworking::IpAddress(remoteAddress.c_str(), editorsv_port, AzNetworking::ProtocolType::Tcp)); diff --git a/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.cpp b/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.cpp index b0a8350982..24f865194f 100644 --- a/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.cpp +++ b/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.cpp @@ -180,7 +180,7 @@ namespace Multiplayer { AZ::TickBus::Handler::BusConnect(); AzFramework::SessionNotificationBus::Handler::BusConnect(); - m_networkInterface = AZ::Interface::Get()->CreateNetworkInterface(AZ::Name(MPNetworkInterfaceName), sv_protocol, TrustZone::ExternalClientToServer, *this); + m_networkInterface = AZ::Interface::Get()->CreateNetworkInterface(AZ::Name(MpNetworkInterfaceName), sv_protocol, TrustZone::ExternalClientToServer, *this); if (AZ::Interface::Get()) { m_consoleCommandHandler.Connect(AZ::Interface::Get()->GetConsoleCommandInvokedEvent()); @@ -197,7 +197,7 @@ namespace Multiplayer AZ::Interface::Unregister(this); AZ::Interface::Unregister(this); m_consoleCommandHandler.Disconnect(); - AZ::Interface::Get()->DestroyNetworkInterface(AZ::Name(MPNetworkInterfaceName)); + AZ::Interface::Get()->DestroyNetworkInterface(AZ::Name(MpNetworkInterfaceName)); AzFramework::SessionNotificationBus::Handler::BusDisconnect(); AZ::TickBus::Handler::BusDisconnect(); } @@ -441,6 +441,11 @@ namespace Multiplayer MultiplayerPackets::SyncConsole m_syncPacket; }; + bool MultiplayerSystemComponent::IsHandshakeComplete() const + { + return m_didHandshake; + } + bool MultiplayerSystemComponent::HandleRequest ( [[maybe_unused]] AzNetworking::IConnection* connection, @@ -465,6 +470,8 @@ namespace Multiplayer if (connection->SendReliablePacket(MultiplayerPackets::Accept(InvalidHostId, sv_map))) { + m_didHandshake = true; + // Sync our console ConsoleReplicator consoleReplicator(connection); AZ::Interface::Get()->VisitRegisteredFunctors([&consoleReplicator](AZ::ConsoleFunctorBase* functor) { consoleReplicator.Visit(functor); }); @@ -480,6 +487,8 @@ namespace Multiplayer [[maybe_unused]] MultiplayerPackets::Accept& packet ) { + m_didHandshake = true; + AZ::CVarFixedString commandString = "sv_map " + packet.GetMap(); AZ::Interface::Get()->PerformCommand(commandString.c_str()); @@ -670,7 +679,7 @@ namespace Multiplayer } } - bool MultiplayerSystemComponent::OnPacketReceived(AzNetworking::IConnection* connection, const IPacketHeader& packetHeader, ISerializer& serializer) + AzNetworking::PacketDispatchResult MultiplayerSystemComponent::OnPacketReceived(AzNetworking::IConnection* connection, const IPacketHeader& packetHeader, ISerializer& serializer) { return MultiplayerPackets::DispatchPacket(connection, packetHeader, serializer, *this); } @@ -748,7 +757,6 @@ namespace Multiplayer { m_initEvent.Signal(m_networkInterface); - const AZ::Aabb worldBounds = AZ::Aabb::CreateFromMinMax(AZ::Vector3(-16384.0f), AZ::Vector3(16384.0f)); //const AZ::Aabb worldBounds = AZ::Interface.Get()->GetWorldBounds(); AZStd::unique_ptr newDomain = AZStd::make_unique(); m_networkEntityManager.Initialize(InvalidHostId, AZStd::move(newDomain)); @@ -894,9 +902,8 @@ namespace Multiplayer // Unfortunately necessary, as NotifyPreRender can update transforms and thus cause a deadlock inside the vis system AZStd::vector gatheredEntities; - AzFramework::IEntityBoundsUnion* entityBoundsUnion = AZ::Interface::Get(); AZ::Interface::Get()->GetDefaultVisibilityScene()->Enumerate(viewFrustum, - [&gatheredEntities, entityBoundsUnion](const AzFramework::IVisibilityScene::NodeData& nodeData) + [&gatheredEntities](const AzFramework::IVisibilityScene::NodeData& nodeData) { gatheredEntities.reserve(gatheredEntities.size() + nodeData.m_entries.size()); for (AzFramework::VisibilityEntry* visEntry : nodeData.m_entries) diff --git a/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.h b/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.h index e2fb7deacc..c467ed9ad9 100644 --- a/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.h +++ b/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.h @@ -76,6 +76,7 @@ namespace Multiplayer int GetTickOrder() override; //! @} + bool IsHandshakeComplete() const; bool HandleRequest(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, MultiplayerPackets::Connect& packet); bool HandleRequest(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, MultiplayerPackets::Accept& packet); bool HandleRequest(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, MultiplayerPackets::ReadyForEntityUpdates& packet); @@ -89,7 +90,7 @@ namespace Multiplayer //! @{ AzNetworking::ConnectResult ValidateConnect(const AzNetworking::IpAddress& remoteAddress, const AzNetworking::IPacketHeader& packetHeader, AzNetworking::ISerializer& serializer) override; void OnConnect(AzNetworking::IConnection* connection) override; - bool OnPacketReceived(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, AzNetworking::ISerializer& serializer) override; + AzNetworking::PacketDispatchResult OnPacketReceived(AzNetworking::IConnection* connection, const AzNetworking::IPacketHeader& packetHeader, AzNetworking::ISerializer& serializer) override; void OnPacketLost(AzNetworking::IConnection* connection, AzNetworking::PacketId packetId) override; void OnDisconnect(AzNetworking::IConnection* connection, AzNetworking::DisconnectReason reason, AzNetworking::TerminationEndpoint endpoint) override; //! @} @@ -158,6 +159,7 @@ namespace Multiplayer double m_serverSendAccumulator = 0.0; float m_renderBlendFactor = 0.0f; float m_tickFactor = 0.0f; + bool m_didHandshake = false; #if !defined(AZ_RELEASE_BUILD) MultiplayerEditorConnection m_editorConnectionListener; diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertySubscriber.h b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertySubscriber.h index f5615f3d52..286509b798 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertySubscriber.h +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertySubscriber.h @@ -40,7 +40,6 @@ namespace Multiplayer // The last packet to have been received about this entity AzNetworking::PacketId m_lastReceivedPacketId = AzNetworking::InvalidPacketId; - AZ::TimeMs m_lastRecievedTimeMs = AZ::TimeMs{ 0 }; AZ::TimeMs m_markForRemovalTimeMs = AZ::TimeMs{ 0 }; }; } diff --git a/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.cpp b/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.cpp index ba9740f8db..3677eb8b5c 100644 --- a/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.cpp +++ b/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.cpp @@ -181,9 +181,9 @@ namespace Multiplayer void ServerToClientReplicationWindow::DebugDraw() const { - static const float BoundaryStripeHeight = 1.0f; - static const float BoundaryStripeSpacing = 0.5f; - static const int32_t BoundaryStripeCount = 10; + //static const float BoundaryStripeHeight = 1.0f; + //static const float BoundaryStripeSpacing = 0.5f; + //static const int32_t BoundaryStripeCount = 10; //if (auto localEnt = m_ControlledEntity.lock()) //{ @@ -289,7 +289,6 @@ namespace Multiplayer } const bool isQueueFull = (m_candidateQueue.size() >= sv_MaxEntitiesToTrackReplication); // See if have the maximum number of entities in our set - const bool isBetterChoice = !m_candidateQueue.empty() && (priority > m_candidateQueue.top().m_priority); // Check if the new thing we are adding is better than the worst item in our set const bool isInReplicationSet = m_replicationSet.find(entityHandle) != m_replicationSet.end(); if (!isInReplicationSet) { diff --git a/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.h b/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.h index 391693812d..bfaa351095 100644 --- a/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.h +++ b/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.h @@ -76,7 +76,6 @@ namespace Multiplayer //NetBindComponent* m_controlledNetBindComponent = nullptr; const AzNetworking::IConnection* m_connection = nullptr; - float m_minPriorityReplicated = 0.0f; ///< Lowest replicated entity priority in last update // Cached values to detect a poor network connection uint32_t m_lastCheckedSentPackets = 0; diff --git a/Gems/MultiplayerCompression/Code/Tests/MultiplayerCompressionTest.cpp b/Gems/MultiplayerCompression/Code/Tests/MultiplayerCompressionTest.cpp index 1c3eda6709..4748d0f331 100644 --- a/Gems/MultiplayerCompression/Code/Tests/MultiplayerCompressionTest.cpp +++ b/Gems/MultiplayerCompression/Code/Tests/MultiplayerCompressionTest.cpp @@ -53,7 +53,7 @@ TEST_F(MultiplayerCompressionTest, MultiplayerCompression_CompressTest) MultiplayerCompression::LZ4Compressor lz4Compressor; startTime = AZStd::chrono::system_clock::now(); AzNetworking::CompressorError compressStatus = lz4Compressor.Compress(buffer.GetBuffer(), buffer.GetSize(), pCompressedBuffer, maxCompressedSize, compressedSize); - const AZ::u64 compressTime = (AZStd::chrono::system_clock::now() - startTime).count(); + [[maybe_unused]] const AZ::u64 compressTime = (AZStd::chrono::system_clock::now() - startTime).count(); ASSERT_TRUE(compressStatus == AzNetworking::CompressorError::Ok); EXPECT_TRUE(compressedSize < maxCompressedSize); @@ -61,14 +61,12 @@ TEST_F(MultiplayerCompressionTest, MultiplayerCompression_CompressTest) //Run and test decompress startTime = AZStd::chrono::system_clock::now(); AzNetworking::CompressorError decompressStatus = lz4Compressor.Decompress(pCompressedBuffer, compressedSize, pDecompressedBuffer, buffer.GetSize(), consumedSize, uncompressedSize); - const AZ::u64 decompressTime = (AZStd::chrono::system_clock::now() - startTime).count(); + [[maybe_unused]] const AZ::u64 decompressTime = (AZStd::chrono::system_clock::now() - startTime).count(); ASSERT_TRUE(decompressStatus == AzNetworking::CompressorError::Ok); EXPECT_TRUE(uncompressedSize = buffer.GetSize()); EXPECT_TRUE(memcmp(pDecompressedBuffer, buffer.GetBuffer(), uncompressedSize) == 0); - const AZ::u64 unmarshalTime = (AZStd::chrono::system_clock::now() - startTime).count(); - delete [] pCompressedBuffer; delete [] pDecompressedBuffer; diff --git a/Gems/NvCloth/Assets/Objects/cloth/Chicken/Actor/chicken.fbx.assetinfo b/Gems/NvCloth/Assets/Objects/cloth/Chicken/Actor/chicken.fbx.assetinfo index 37480c52c1..4c73efae13 100644 --- a/Gems/NvCloth/Assets/Objects/cloth/Chicken/Actor/chicken.fbx.assetinfo +++ b/Gems/NvCloth/Assets/Objects/cloth/Chicken/Actor/chicken.fbx.assetinfo @@ -25,13 +25,18 @@ "Position": [ -0.03709467500448227, -3.725290298461914e-9, - 0.013427333906292916 + 0.013427333906292915 ], + "MaterialSelection": { + "MaterialIds": [ + {} + ] + }, "propertyVisibilityFlags": 248 }, { "$type": "SphereShapeConfiguration", - "Radius": 0.12945009768009187 + "Radius": 0.12945009768009186 } ] ] @@ -50,15 +55,20 @@ "Rotation": [ 0.0, 0.662880003452301, - 0.7487256526947022, + 0.7487256526947021, 0.0 ], + "MaterialSelection": { + "MaterialIds": [ + {} + ] + }, "propertyVisibilityFlags": 248 }, { "$type": "CapsuleShapeConfiguration", "Height": 0.8597599267959595, - "Radius": 0.27968019247055056 + "Radius": 0.27968019247055054 } ] ] @@ -79,95 +89,51 @@ "RootNode", "RootNode.chicken_skeleton", "RootNode.chicken_feet_skin", + "RootNode.chicken_feet_skin.chicken_feet_skin_1", + "RootNode.chicken_feet_skin.chicken_feet_skin_2", "RootNode.chicken_eyes_skin", + "RootNode.chicken_eyes_skin.chicken_eyes_skin_1", + "RootNode.chicken_eyes_skin.chicken_eyes_skin_2", "RootNode.chicken_body_skin", + "RootNode.chicken_body_skin.chicken_body_skin_1", + "RootNode.chicken_body_skin.chicken_body_skin_2", "RootNode.chicken_mohawk", - "RootNode.chicken_skeleton.transform", + "RootNode.chicken_mohawk.chicken_mohawk_1", + "RootNode.chicken_mohawk.chicken_mohawk_2", "RootNode.chicken_skeleton.def_c_chickenRoot_joint", - "RootNode.chicken_feet_skin.SkinWeight_0", - "RootNode.chicken_feet_skin.transform", - "RootNode.chicken_feet_skin.map1", - "RootNode.chicken_feet_skin.chicken_body_mat", - "RootNode.chicken_eyes_skin.SkinWeight_0", - "RootNode.chicken_eyes_skin.transform", - "RootNode.chicken_eyes_skin.uvSet1", - "RootNode.chicken_eyes_skin.chicken_eye_mat", - "RootNode.chicken_body_skin.SkinWeight_0", - "RootNode.chicken_body_skin.transform", - "RootNode.chicken_body_skin.map1", - "RootNode.chicken_body_skin.chicken_body_mat", - "RootNode.chicken_mohawk.Col0", - "RootNode.chicken_mohawk.SkinWeight_0", - "RootNode.chicken_mohawk.transform", - "RootNode.chicken_mohawk.map1", - "RootNode.chicken_mohawk.mohawkMat", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_l_uprLeg_joint", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_r_uprLeg_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_l_uprLeg_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_l_uprLeg_joint.def_l_lwrLeg_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_r_uprLeg_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_r_uprLeg_joint.def_r_lwrLeg_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_l_wing1_joint", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_r_wing1_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_l_uprLeg_joint.def_l_lwrLeg_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_l_uprLeg_joint.def_l_lwrLeg_joint.def_l_foot_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_r_uprLeg_joint.def_r_lwrLeg_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_r_uprLeg_joint.def_r_lwrLeg_joint.def_r_foot_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_tail1_joint", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_l_wing1_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_l_wing1_joint.def_l_wing2_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_r_wing1_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_r_wing1_joint.def_r_wing2_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_l_uprLeg_joint.def_l_lwrLeg_joint.def_l_foot_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_l_uprLeg_joint.def_l_lwrLeg_joint.def_l_foot_joint.def_l_ball_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_r_uprLeg_joint.def_r_lwrLeg_joint.def_r_foot_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_r_uprLeg_joint.def_r_lwrLeg_joint.def_r_foot_joint.def_r_ball_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_tail1_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_tail1_joint.def_c_tail2_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_l_wing1_joint.def_l_wing2_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_l_wing1_joint.def_l_wing2_joint.def_l_wing_end", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_r_wing1_joint.def_r_wing2_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_r_wing1_joint.def_r_wing2_joint.def_r_wing_end", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_l_uprLeg_joint.def_l_lwrLeg_joint.def_l_foot_joint.def_l_ball_joint.transform", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_r_uprLeg_joint.def_r_lwrLeg_joint.def_r_foot_joint.def_r_ball_joint.transform", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_tail1_joint.def_c_tail2_joint.transform", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_feather1_joint", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_mouth_joint", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_waddle1_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_l_wing1_joint.def_l_wing2_joint.def_l_wing_end.transform", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_r_wing1_joint.def_r_wing2_joint.def_r_wing_end.transform", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_feather1_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_feather1_joint.def_c_feather2_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_mouth_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_mouth_joint.def_c_mouth_end", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_waddle1_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_waddle1_joint.def_c_waddle2_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_feather1_joint.def_c_feather2_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_feather1_joint.def_c_feather2_joint.def_c_feather3_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_mouth_joint.def_c_mouth_end.transform", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_waddle1_joint.def_c_waddle2_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_waddle1_joint.def_c_waddle2_joint.def_c_waddle3_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_feather1_joint.def_c_feather2_joint.def_c_feather3_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_feather1_joint.def_c_feather2_joint.def_c_feather3_joint.def_c_feather4_joint", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_waddle1_joint.def_c_waddle2_joint.def_c_waddle3_joint.transform", "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_waddle1_joint.def_c_waddle2_joint.def_c_waddle3_joint.def_c_waddle_end", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_feather1_joint.def_c_feather2_joint.def_c_feather3_joint.def_c_feather4_joint.transform", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_feather1_joint.def_c_feather2_joint.def_c_feather3_joint.def_c_feather4_joint.def_c_feather_end", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_waddle1_joint.def_c_waddle2_joint.def_c_waddle3_joint.def_c_waddle_end.transform", - "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_feather1_joint.def_c_feather2_joint.def_c_feather3_joint.def_c_feather4_joint.def_c_feather_end.transform" + "RootNode.chicken_skeleton.def_c_chickenRoot_joint.def_c_spine1_joint.def_c_spine2_joint.def_c_spine3_joint.def_c_spine_end.def_c_neck_joint.def_c_head_joint.def_c_feather1_joint.def_c_feather2_joint.def_c_feather3_joint.def_c_feather4_joint.def_c_feather_end" ] }, "rules": { @@ -184,7 +150,7 @@ }, { "$type": "ClothRule", - "meshNodeName": "RootNode.chicken_mohawk", + "meshNodeName": "RootNode.chicken_mohawk.chicken_mohawk_1", "inverseMassesStreamName": "Col0", "motionConstraintsStreamName": "Default: 1.0", "backstopStreamName": "None" diff --git a/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_blinds.fbx.assetinfo b/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_blinds.fbx.assetinfo index cbde27b201..b7dae925c9 100644 --- a/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_blinds.fbx.assetinfo +++ b/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_blinds.fbx.assetinfo @@ -7,10 +7,14 @@ "selectedNodes": [ "RootNode", "RootNode.pPlane1", - "RootNode.pPlane1.Col0", - "RootNode.pPlane1.transform", - "RootNode.pPlane1.map1", - "RootNode.pPlane1.lambert1" + "RootNode.pPlane1.pPlane1_1", + "RootNode.pPlane1.pPlane1_2", + "RootNode.pPlane1.pPlane1_1.Col0", + "RootNode.pPlane1.pPlane1_1.map1", + "RootNode.pPlane1.pPlane1_1.lambert1", + "RootNode.pPlane1.pPlane1_2.Col0", + "RootNode.pPlane1.pPlane1_2.map1", + "RootNode.pPlane1.pPlane1_2.lambert1" ] }, "rules": { @@ -24,7 +28,7 @@ }, { "$type": "ClothRule", - "meshNodeName": "RootNode.pPlane1", + "meshNodeName": "RootNode.pPlane1.pPlane1_1", "inverseMassesStreamName": "Col0", "motionConstraintsStreamName": "Default: 1.0", "backstopStreamName": "None" @@ -34,4 +38,4 @@ "id": "{9D0F5F7F-FB90-5C00-97A7-C55F9180CE4E}" } ] -} +} \ No newline at end of file diff --git a/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_blinds_broken.fbx.assetinfo b/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_blinds_broken.fbx.assetinfo index 1636e063a7..db558275cf 100644 --- a/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_blinds_broken.fbx.assetinfo +++ b/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_blinds_broken.fbx.assetinfo @@ -7,10 +7,14 @@ "selectedNodes": [ "RootNode", "RootNode.pPlane1", - "RootNode.pPlane1.Col0", - "RootNode.pPlane1.transform", - "RootNode.pPlane1.map1", - "RootNode.pPlane1.lambert1" + "RootNode.pPlane1.pPlane1_1", + "RootNode.pPlane1.pPlane1_2", + "RootNode.pPlane1.pPlane1_1.Col0", + "RootNode.pPlane1.pPlane1_1.map1", + "RootNode.pPlane1.pPlane1_1.lambert1", + "RootNode.pPlane1.pPlane1_2.Col0", + "RootNode.pPlane1.pPlane1_2.map1", + "RootNode.pPlane1.pPlane1_2.lambert1" ] }, "rules": { @@ -24,7 +28,7 @@ }, { "$type": "ClothRule", - "meshNodeName": "RootNode.pPlane1", + "meshNodeName": "RootNode.pPlane1.pPlane1_1", "inverseMassesStreamName": "Col0", "motionConstraintsStreamName": "Default: 1.0", "backstopStreamName": "None" @@ -34,4 +38,4 @@ "id": "{3A467F2C-C2AB-581F-94E3-946575011973}" } ] -} +} \ No newline at end of file diff --git a/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_locked_corners_four.fbx.assetinfo b/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_locked_corners_four.fbx.assetinfo index aea3110a42..5dacf085cf 100644 --- a/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_locked_corners_four.fbx.assetinfo +++ b/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_locked_corners_four.fbx.assetinfo @@ -7,10 +7,14 @@ "selectedNodes": [ "RootNode", "RootNode.pPlane1", - "RootNode.pPlane1.Col0", - "RootNode.pPlane1.transform", - "RootNode.pPlane1.map1", - "RootNode.pPlane1.lambert1" + "RootNode.pPlane1.pPlane1_1", + "RootNode.pPlane1.pPlane1_2", + "RootNode.pPlane1.pPlane1_1.Col0", + "RootNode.pPlane1.pPlane1_1.map1", + "RootNode.pPlane1.pPlane1_1.lambert1", + "RootNode.pPlane1.pPlane1_2.Col0", + "RootNode.pPlane1.pPlane1_2.map1", + "RootNode.pPlane1.pPlane1_2.lambert1" ] }, "rules": { @@ -24,7 +28,7 @@ }, { "$type": "ClothRule", - "meshNodeName": "RootNode.pPlane1", + "meshNodeName": "RootNode.pPlane1.pPlane1_1", "inverseMassesStreamName": "Col0", "motionConstraintsStreamName": "Default: 1.0", "backstopStreamName": "None" @@ -34,4 +38,4 @@ "id": "{105338D3-5947-5F72-A077-36C193C8AE7C}" } ] -} +} \ No newline at end of file diff --git a/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_locked_corners_two.fbx.assetinfo b/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_locked_corners_two.fbx.assetinfo index d23b92be9f..8da57dbed3 100644 --- a/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_locked_corners_two.fbx.assetinfo +++ b/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_locked_corners_two.fbx.assetinfo @@ -7,10 +7,14 @@ "selectedNodes": [ "RootNode", "RootNode.pPlane1", - "RootNode.pPlane1.Col0", - "RootNode.pPlane1.transform", - "RootNode.pPlane1.map1", - "RootNode.pPlane1.lambert1" + "RootNode.pPlane1.pPlane1_1", + "RootNode.pPlane1.pPlane1_2", + "RootNode.pPlane1.pPlane1_1.Col0", + "RootNode.pPlane1.pPlane1_1.map1", + "RootNode.pPlane1.pPlane1_1.lambert1", + "RootNode.pPlane1.pPlane1_2.Col0", + "RootNode.pPlane1.pPlane1_2.map1", + "RootNode.pPlane1.pPlane1_2.lambert1" ] }, "rules": { @@ -24,7 +28,7 @@ }, { "$type": "ClothRule", - "meshNodeName": "RootNode.pPlane1", + "meshNodeName": "RootNode.pPlane1.pPlane1_1", "inverseMassesStreamName": "Col0", "motionConstraintsStreamName": "Default: 1.0", "backstopStreamName": "None" diff --git a/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_locked_edge.fbx.assetinfo b/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_locked_edge.fbx.assetinfo index 6a56ea23cf..bfc39618b4 100644 --- a/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_locked_edge.fbx.assetinfo +++ b/Gems/NvCloth/Assets/Objects/cloth/Environment/cloth_locked_edge.fbx.assetinfo @@ -7,10 +7,14 @@ "selectedNodes": [ "RootNode", "RootNode.pPlane1", - "RootNode.pPlane1.Col0", - "RootNode.pPlane1.transform", - "RootNode.pPlane1.map1", - "RootNode.pPlane1.lambert1" + "RootNode.pPlane1.pPlane1_1", + "RootNode.pPlane1.pPlane1_2", + "RootNode.pPlane1.pPlane1_1.Col0", + "RootNode.pPlane1.pPlane1_1.map1", + "RootNode.pPlane1.pPlane1_1.lambert1", + "RootNode.pPlane1.pPlane1_2.Col0", + "RootNode.pPlane1.pPlane1_2.map1", + "RootNode.pPlane1.pPlane1_2.lambert1" ] }, "rules": { @@ -24,7 +28,7 @@ }, { "$type": "ClothRule", - "meshNodeName": "RootNode.pPlane1", + "meshNodeName": "RootNode.pPlane1.pPlane1_1", "inverseMassesStreamName": "Col0", "motionConstraintsStreamName": "Default: 1.0", "backstopStreamName": "None" diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/Chicken_Actor.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/Chicken_Actor.prefab index 57953f927b..16d30a36c2 100644 --- a/Gems/NvCloth/Assets/prefabs/Cloth/Chicken_Actor.prefab +++ b/Gems/NvCloth/Assets/prefabs/Cloth/Chicken_Actor.prefab @@ -22,8 +22,7 @@ "Component_[4272963378099646759]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", "Id": 4272963378099646759, - "Parent Entity": "", - "Cached World Transform Parent": "" + "Parent Entity": "" }, "Component_[4848458548047175816]": { "$type": "EditorVisibilityComponent", @@ -80,8 +79,7 @@ "Component_[12470135924384913029]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", "Id": 12470135924384913029, - "Parent Entity": "ContainerEntity", - "Cached World Transform Parent": "ContainerEntity" + "Parent Entity": "ContainerEntity" }, "Component_[14919455666821657531]": { "$type": "EditorEntitySortComponent", @@ -108,8 +106,7 @@ "$type": "SelectionComponent", "Id": 786957291078135994 } - }, - "IsDependencyReady": true + } }, "Entity_[303451468511700]": { "Id": "Entity_[303451468511700]", @@ -163,7 +160,7 @@ "assetHint": "objects/cloth/chicken/motions/chickenidle.motion" }, "Loop": true, - "PlaySpeed": 1.2000000476837159 + "PlaySpeed": 1.2000000476837158 } }, "Component_[3482722103355682975]": { @@ -182,7 +179,7 @@ "$type": "EditorClothComponent", "Id": 7236637452394054627, "Configuration": { - "Mesh Node": "chicken_mohawk", + "Mesh Node": "chicken_mohawk_1", "Mass": 4.0, "Remove Static Triangles": false } @@ -191,18 +188,27 @@ "$type": "EditorEntitySortComponent", "Id": 868427789695884987 }, - "Component_[8777596718122199558]": { + "Component_[9845606399230319505]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 9845606399230319505, + "Parent Entity": "Entity_[303447173544404]", + "Transform Data": { + "Rotate": [ + 0.0, + 0.0, + -0.00006830000347690657 + ] + } + }, + "Component_[9927411050130082647]": { "$type": "EditorMaterialComponent", - "Id": 8777596718122199558, + "Id": 9927411050130082647, "Controller": { "Configuration": { "materials": [ { "Key": { - "materialAssetId": { - "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", - "subId": 668669130 - } + "materialSlotStableId": 668669130 }, "Value": { "MaterialAsset": { @@ -215,10 +221,7 @@ }, { "Key": { - "materialAssetId": { - "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", - "subId": 1541321207 - } + "materialSlotStableId": 1541321207 }, "Value": { "MaterialAsset": { @@ -231,10 +234,7 @@ }, { "Key": { - "materialAssetId": { - "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", - "subId": 2608524672 - } + "materialSlotStableId": 2608524672 }, "Value": { "MaterialAsset": { @@ -251,44 +251,59 @@ "materialSlots": [ { "id": { - "materialAssetId": { - "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", - "subId": 668669130 - } + "materialSlotStableId": 668669130 }, "materialAsset": { "assetId": { "guid": "{FB34D8F7-E8CA-542D-92A3-F0E04F3A3EC3}" }, "assetHint": "objects/cloth/chicken/actor/chicken_chicken_body_mat.azmaterial" + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 668669130 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/chicken/actor/chicken_chicken_body_mat_4404500000782619850.azmaterial" } }, { "id": { - "materialAssetId": { - "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", - "subId": 1541321207 - } + "materialSlotStableId": 1541321207 }, "materialAsset": { "assetId": { "guid": "{6114C408-26EE-51DC-8733-A07800BF4991}" }, "assetHint": "objects/cloth/chicken/actor/chicken_chicken_eye_mat.azmaterial" + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 1541321207 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/chicken/actor/chicken_chicken_eye_mat_10184937185004663287.azmaterial" } }, { "id": { - "materialAssetId": { - "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", - "subId": 2608524672 - } + "materialSlotStableId": 2608524672 }, "materialAsset": { "assetId": { "guid": "{80F92051-203E-52CE-B4D6-E3AED21795C9}" }, "assetHint": "objects/cloth/chicken/actor/chicken_mohawkmat.azmaterial" + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 2608524672 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/chicken/actor/chicken_mohawkmat_13891540077583723904.azmaterial" } } ], @@ -297,46 +312,48 @@ { "id": { "lodIndex": 0, - "materialAssetId": { + "materialSlotStableId": 668669130 + }, + "defaultMaterialAsset": { + "assetId": { "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", "subId": 668669130 - } + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/chicken/actor/chicken_chicken_body_mat_4404500000782619850.azmaterial" } }, { "id": { "lodIndex": 0, - "materialAssetId": { + "materialSlotStableId": 1541321207 + }, + "defaultMaterialAsset": { + "assetId": { "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", "subId": 1541321207 - } + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/chicken/actor/chicken_chicken_eye_mat_10184937185004663287.azmaterial" } }, { "id": { "lodIndex": 0, - "materialAssetId": { + "materialSlotStableId": 2608524672 + }, + "defaultMaterialAsset": { + "assetId": { "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", "subId": 2608524672 - } + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/chicken/actor/chicken_mohawkmat_13891540077583723904.azmaterial" } } ] ] }, - "Component_[9845606399230319505]": { - "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 9845606399230319505, - "Parent Entity": "Entity_[303447173544404]", - "Transform Data": { - "Rotate": [ - 0.0, - 0.0, - -0.00006830000347690657 - ] - }, - "Cached World Transform Parent": "" - }, "Component_[9979479216337101498]": { "$type": "EditorInspectorComponent", "Id": 9979479216337101498, @@ -362,8 +379,7 @@ } ] } - }, - "IsDependencyReady": true + } } } } \ No newline at end of file diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds.prefab index 270f52b29b..108b4ba13c 100644 --- a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds.prefab +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds.prefab @@ -22,8 +22,7 @@ "Component_[4272963378099646759]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", "Id": 4272963378099646759, - "Parent Entity": "", - "Cached World Transform Parent": "" + "Parent Entity": "" }, "Component_[4848458548047175816]": { "$type": "EditorVisibilityComponent", @@ -64,7 +63,7 @@ "$type": "EditorClothComponent", "Id": 11309989511197311871, "Configuration": { - "Mesh Node": "pPlane1", + "Mesh Node": "pPlane1_1", "Damping": [ 0.0, 0.0, @@ -94,6 +93,68 @@ "$type": "EditorLockComponent", "Id": 12850019035302463297 }, + "Component_[15070431754554069043]": { + "$type": "EditorMaterialComponent", + "Id": 15070431754554069043, + "Controller": { + "Configuration": { + "materials": [ + { + "Key": { + "materialSlotStableId": 902256226 + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{6BFA7C7C-AF9F-5B12-8B30-6B6ECE9BAB9E}" + }, + "assetHint": "objects/cloth/environment/cloth_blinds.azmaterial" + } + } + } + ] + } + }, + "materialSlots": [ + { + "id": { + "materialSlotStableId": 902256226 + }, + "materialAsset": { + "assetId": { + "guid": "{6BFA7C7C-AF9F-5B12-8B30-6B6ECE9BAB9E}" + }, + "assetHint": "objects/cloth/environment/cloth_blinds.azmaterial" + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{C3078003-51DA-5D8E-B311-38C426480DD2}", + "subId": 902256226 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/environment/cloth_blinds_lambert1_3614897150141879906.azmaterial" + } + } + ], + "materialSlotsByLod": [ + [ + { + "id": { + "lodIndex": 0, + "materialSlotStableId": 902256226 + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{C3078003-51DA-5D8E-B311-38C426480DD2}", + "subId": 902256226 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/environment/cloth_blinds_lambert1_3614897150141879906.azmaterial" + } + } + ] + ] + }, "Component_[15214644042360665965]": { "$type": "AZ::Render::EditorMeshComponent", "Id": 15214644042360665965, @@ -145,8 +206,7 @@ "Component_[4795695323030511838]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", "Id": 4795695323030511838, - "Parent Entity": "ContainerEntity", - "Cached World Transform Parent": "ContainerEntity" + "Parent Entity": "ContainerEntity" }, "Component_[5800800590637221800]": { "$type": "EditorDisabledCompositionComponent", @@ -159,64 +219,8 @@ "Component_[7074022732104182988]": { "$type": "EditorEntitySortComponent", "Id": 7074022732104182988 - }, - "Component_[9206497685981025331]": { - "$type": "EditorMaterialComponent", - "Id": 9206497685981025331, - "Controller": { - "Configuration": { - "materials": [ - { - "Key": { - "materialAssetId": { - "guid": "{C3078003-51DA-5D8E-B311-38C426480DD2}", - "subId": 902256226 - } - }, - "Value": { - "MaterialAsset": { - "assetId": { - "guid": "{6BFA7C7C-AF9F-5B12-8B30-6B6ECE9BAB9E}" - }, - "assetHint": "objects/cloth/environment/cloth_blinds.azmaterial" - } - } - } - ] - } - }, - "materialSlots": [ - { - "id": { - "materialAssetId": { - "guid": "{C3078003-51DA-5D8E-B311-38C426480DD2}", - "subId": 902256226 - } - }, - "materialAsset": { - "assetId": { - "guid": "{6BFA7C7C-AF9F-5B12-8B30-6B6ECE9BAB9E}" - }, - "assetHint": "objects/cloth/environment/cloth_blinds.azmaterial" - } - } - ], - "materialSlotsByLod": [ - [ - { - "id": { - "lodIndex": 0, - "materialAssetId": { - "guid": "{C3078003-51DA-5D8E-B311-38C426480DD2}", - "subId": 902256226 - } - } - } - ] - ] } - }, - "IsDependencyReady": true + } } } } \ No newline at end of file diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds_broken.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds_broken.prefab index 7feb61db90..52b0c9fa17 100644 --- a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds_broken.prefab +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds_broken.prefab @@ -22,8 +22,7 @@ "Component_[4272963378099646759]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", "Id": 4272963378099646759, - "Parent Entity": "", - "Cached World Transform Parent": "" + "Parent Entity": "" }, "Component_[4848458548047175816]": { "$type": "EditorVisibilityComponent", @@ -60,7 +59,7 @@ "$type": "EditorClothComponent", "Id": 10786078036233199116, "Configuration": { - "Mesh Node": "pPlane1", + "Mesh Node": "pPlane1_1", "Damping": [ 0.0, 0.0, @@ -127,66 +126,10 @@ "$type": "EditorEntityIconComponent", "Id": 4939437553142322315 }, - "Component_[538074694053236341]": { - "$type": "EditorMaterialComponent", - "Id": 538074694053236341, - "Controller": { - "Configuration": { - "materials": [ - { - "Key": { - "materialAssetId": { - "guid": "{A64AD477-5E35-5834-A9A3-580B9D708E0C}", - "subId": 902256226 - } - }, - "Value": { - "MaterialAsset": { - "assetId": { - "guid": "{EB6CB909-E4BB-54CB-8CAE-6A4B4F203B1B}" - }, - "assetHint": "objects/cloth/environment/cloth_blinds_broken.azmaterial" - } - } - } - ] - } - }, - "materialSlots": [ - { - "id": { - "materialAssetId": { - "guid": "{A64AD477-5E35-5834-A9A3-580B9D708E0C}", - "subId": 902256226 - } - }, - "materialAsset": { - "assetId": { - "guid": "{EB6CB909-E4BB-54CB-8CAE-6A4B4F203B1B}" - }, - "assetHint": "objects/cloth/environment/cloth_blinds_broken.azmaterial" - } - } - ], - "materialSlotsByLod": [ - [ - { - "id": { - "lodIndex": 0, - "materialAssetId": { - "guid": "{A64AD477-5E35-5834-A9A3-580B9D708E0C}", - "subId": 902256226 - } - } - } - ] - ] - }, "Component_[5681411293917950785]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", "Id": 5681411293917950785, - "Parent Entity": "ContainerEntity", - "Cached World Transform Parent": "ContainerEntity" + "Parent Entity": "ContainerEntity" }, "Component_[7046686956433693767]": { "$type": "EditorInspectorComponent", @@ -209,12 +152,73 @@ } ] }, + "Component_[7873865615483617838]": { + "$type": "EditorMaterialComponent", + "Id": 7873865615483617838, + "Controller": { + "Configuration": { + "materials": [ + { + "Key": { + "materialSlotStableId": 902256226 + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{EB6CB909-E4BB-54CB-8CAE-6A4B4F203B1B}" + }, + "assetHint": "objects/cloth/environment/cloth_blinds_broken.azmaterial" + } + } + } + ] + } + }, + "materialSlots": [ + { + "id": { + "materialSlotStableId": 902256226 + }, + "materialAsset": { + "assetId": { + "guid": "{EB6CB909-E4BB-54CB-8CAE-6A4B4F203B1B}" + }, + "assetHint": "objects/cloth/environment/cloth_blinds_broken.azmaterial" + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{A64AD477-5E35-5834-A9A3-580B9D708E0C}", + "subId": 902256226 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/environment/cloth_blinds_broken_lambert1_3614897150141879906.azmaterial" + } + } + ], + "materialSlotsByLod": [ + [ + { + "id": { + "lodIndex": 0, + "materialSlotStableId": 902256226 + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{A64AD477-5E35-5834-A9A3-580B9D708E0C}", + "subId": 902256226 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/environment/cloth_blinds_broken_lambert1_3614897150141879906.azmaterial" + } + } + ] + ] + }, "Component_[9565338131843702938]": { "$type": "EditorOnlyEntityComponent", "Id": 9565338131843702938 } - }, - "IsDependencyReady": true + } } } } \ No newline at end of file diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_four.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_four.prefab index cdbe92dab6..1017317bd3 100644 --- a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_four.prefab +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_four.prefab @@ -22,8 +22,7 @@ "Component_[4272963378099646759]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", "Id": 4272963378099646759, - "Parent Entity": "", - "Cached World Transform Parent": "" + "Parent Entity": "" }, "Component_[4848458548047175816]": { "$type": "EditorVisibilityComponent", @@ -74,63 +73,7 @@ "Component_[12766570162661899127]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", "Id": 12766570162661899127, - "Parent Entity": "ContainerEntity", - "Cached World Transform Parent": "ContainerEntity" - }, - "Component_[12950486357466178058]": { - "$type": "EditorMaterialComponent", - "Id": 12950486357466178058, - "Controller": { - "Configuration": { - "materials": [ - { - "Key": { - "materialAssetId": { - "guid": "{89C91D92-7B4E-5EB5-945D-0053111859EE}", - "subId": 902256226 - } - }, - "Value": { - "MaterialAsset": { - "assetId": { - "guid": "{838EA487-0F74-5448-AABE-947B138CD6C2}" - }, - "assetHint": "objects/cloth/environment/cloth_locked_corners_four.azmaterial" - } - } - } - ] - } - }, - "materialSlots": [ - { - "id": { - "materialAssetId": { - "guid": "{89C91D92-7B4E-5EB5-945D-0053111859EE}", - "subId": 902256226 - } - }, - "materialAsset": { - "assetId": { - "guid": "{838EA487-0F74-5448-AABE-947B138CD6C2}" - }, - "assetHint": "objects/cloth/environment/cloth_locked_corners_four.azmaterial" - } - } - ], - "materialSlotsByLod": [ - [ - { - "id": { - "lodIndex": 0, - "materialAssetId": { - "guid": "{89C91D92-7B4E-5EB5-945D-0053111859EE}", - "subId": 902256226 - } - } - } - ] - ] + "Parent Entity": "ContainerEntity" }, "Component_[13484816898680823471]": { "$type": "EditorEntitySortComponent", @@ -165,7 +108,7 @@ "$type": "EditorClothComponent", "Id": 15114198178471353754, "Configuration": { - "Mesh Node": "pPlane1", + "Mesh Node": "pPlane1_1", "Stiffness Frequency": 1.0, "Damping": [ 0.0, @@ -210,6 +153,68 @@ "$type": "EditorDisabledCompositionComponent", "Id": 7652255413353256955 }, + "Component_[8261070538889619357]": { + "$type": "EditorMaterialComponent", + "Id": 8261070538889619357, + "Controller": { + "Configuration": { + "materials": [ + { + "Key": { + "materialSlotStableId": 902256226 + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{838EA487-0F74-5448-AABE-947B138CD6C2}" + }, + "assetHint": "objects/cloth/environment/cloth_locked_corners_four.azmaterial" + } + } + } + ] + } + }, + "materialSlots": [ + { + "id": { + "materialSlotStableId": 902256226 + }, + "materialAsset": { + "assetId": { + "guid": "{838EA487-0F74-5448-AABE-947B138CD6C2}" + }, + "assetHint": "objects/cloth/environment/cloth_locked_corners_four.azmaterial" + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{89C91D92-7B4E-5EB5-945D-0053111859EE}", + "subId": 902256226 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/environment/cloth_locked_corners_four_lambert1_3614897150141879906.azmaterial" + } + } + ], + "materialSlotsByLod": [ + [ + { + "id": { + "lodIndex": 0, + "materialSlotStableId": 902256226 + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{89C91D92-7B4E-5EB5-945D-0053111859EE}", + "subId": 902256226 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/environment/cloth_locked_corners_four_lambert1_3614897150141879906.azmaterial" + } + } + ] + ] + }, "Component_[8417657922837077982]": { "$type": "EditorVisibilityComponent", "Id": 8417657922837077982 @@ -218,8 +223,7 @@ "$type": "SelectionComponent", "Id": 944311658362107535 } - }, - "IsDependencyReady": true + } } } } \ No newline at end of file diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_two.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_two.prefab index 068c4a6a7e..368cb2d846 100644 --- a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_two.prefab +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_two.prefab @@ -22,8 +22,7 @@ "Component_[4272963378099646759]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", "Id": 4272963378099646759, - "Parent Entity": "", - "Cached World Transform Parent": "" + "Parent Entity": "" }, "Component_[4848458548047175816]": { "$type": "EditorVisibilityComponent", @@ -84,7 +83,7 @@ "$type": "EditorClothComponent", "Id": 16927361351552746000, "Configuration": { - "Mesh Node": "pPlane1", + "Mesh Node": "pPlane1_1", "Mass": 10.0, "Stiffness Frequency": 1.0, "Damping": [ @@ -109,6 +108,68 @@ "Update Normals of Static Particles": true } }, + "Component_[17380859760246609280]": { + "$type": "EditorMaterialComponent", + "Id": 17380859760246609280, + "Controller": { + "Configuration": { + "materials": [ + { + "Key": { + "materialSlotStableId": 902256226 + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{A56F28DD-6082-50B6-9B44-9EF3E03E95BB}" + }, + "assetHint": "objects/cloth/environment/cloth_locked_corners_two.azmaterial" + } + } + } + ] + } + }, + "materialSlots": [ + { + "id": { + "materialSlotStableId": 902256226 + }, + "materialAsset": { + "assetId": { + "guid": "{A56F28DD-6082-50B6-9B44-9EF3E03E95BB}" + }, + "assetHint": "objects/cloth/environment/cloth_locked_corners_two.azmaterial" + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{23C6817F-0B79-5CAD-B861-9E6F5E55927D}", + "subId": 902256226 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/environment/cloth_locked_corners_two_lambert1_3614897150141879906.azmaterial" + } + } + ], + "materialSlotsByLod": [ + [ + { + "id": { + "lodIndex": 0, + "materialSlotStableId": 902256226 + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{23C6817F-0B79-5CAD-B861-9E6F5E55927D}", + "subId": 902256226 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/environment/cloth_locked_corners_two_lambert1_3614897150141879906.azmaterial" + } + } + ] + ] + }, "Component_[2410073307760782444]": { "$type": "EditorPendingCompositionComponent", "Id": 2410073307760782444 @@ -137,8 +198,7 @@ "Component_[5636741882934012477]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", "Id": 5636741882934012477, - "Parent Entity": "ContainerEntity", - "Cached World Transform Parent": "ContainerEntity" + "Parent Entity": "ContainerEntity" }, "Component_[691437686890444081]": { "$type": "SelectionComponent", @@ -158,64 +218,8 @@ } } } - }, - "Component_[9419069324766365964]": { - "$type": "EditorMaterialComponent", - "Id": 9419069324766365964, - "Controller": { - "Configuration": { - "materials": [ - { - "Key": { - "materialAssetId": { - "guid": "{23C6817F-0B79-5CAD-B861-9E6F5E55927D}", - "subId": 902256226 - } - }, - "Value": { - "MaterialAsset": { - "assetId": { - "guid": "{A56F28DD-6082-50B6-9B44-9EF3E03E95BB}" - }, - "assetHint": "objects/cloth/environment/cloth_locked_corners_two.azmaterial" - } - } - } - ] - } - }, - "materialSlots": [ - { - "id": { - "materialAssetId": { - "guid": "{23C6817F-0B79-5CAD-B861-9E6F5E55927D}", - "subId": 902256226 - } - }, - "materialAsset": { - "assetId": { - "guid": "{A56F28DD-6082-50B6-9B44-9EF3E03E95BB}" - }, - "assetHint": "objects/cloth/environment/cloth_locked_corners_two.azmaterial" - } - } - ], - "materialSlotsByLod": [ - [ - { - "id": { - "lodIndex": 0, - "materialAssetId": { - "guid": "{23C6817F-0B79-5CAD-B861-9E6F5E55927D}", - "subId": 902256226 - } - } - } - ] - ] } - }, - "IsDependencyReady": true + } } } } \ No newline at end of file diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_edge.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_edge.prefab index 7bba36adf8..ec837d1bd4 100644 --- a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_edge.prefab +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_edge.prefab @@ -22,8 +22,7 @@ "Component_[4272963378099646759]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", "Id": 4272963378099646759, - "Parent Entity": "", - "Cached World Transform Parent": "" + "Parent Entity": "" }, "Component_[4848458548047175816]": { "$type": "EditorVisibilityComponent", @@ -96,6 +95,68 @@ } ] }, + "Component_[14970093767651057273]": { + "$type": "EditorMaterialComponent", + "Id": 14970093767651057273, + "Controller": { + "Configuration": { + "materials": [ + { + "Key": { + "materialSlotStableId": 902256226 + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{FF25E0FE-B695-5084-AE1E-65F095AA5C3F}" + }, + "assetHint": "objects/cloth/environment/cloth_locked_edge.azmaterial" + } + } + } + ] + } + }, + "materialSlots": [ + { + "id": { + "materialSlotStableId": 902256226 + }, + "materialAsset": { + "assetId": { + "guid": "{FF25E0FE-B695-5084-AE1E-65F095AA5C3F}" + }, + "assetHint": "objects/cloth/environment/cloth_locked_edge.azmaterial" + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{9DCAD62C-7A35-5D7D-8276-870D646CD5E2}", + "subId": 902256226 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/environment/cloth_locked_edge_lambert1_3614897150141879906.azmaterial" + } + } + ], + "materialSlotsByLod": [ + [ + { + "id": { + "lodIndex": 0, + "materialSlotStableId": 902256226 + }, + "defaultMaterialAsset": { + "assetId": { + "guid": "{9DCAD62C-7A35-5D7D-8276-870D646CD5E2}", + "subId": 902256226 + }, + "loadBehavior": "PreLoad", + "assetHint": "objects/cloth/environment/cloth_locked_edge_lambert1_3614897150141879906.azmaterial" + } + } + ] + ] + }, "Component_[14983280478781449966]": { "$type": "SelectionComponent", "Id": 14983280478781449966 @@ -104,7 +165,7 @@ "$type": "EditorClothComponent", "Id": 16595775512479337011, "Configuration": { - "Mesh Node": "pPlane1", + "Mesh Node": "pPlane1_1", "Damping": [ 0.0, 0.0, @@ -137,63 +198,7 @@ "Component_[4215669181198357248]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", "Id": 4215669181198357248, - "Parent Entity": "ContainerEntity", - "Cached World Transform Parent": "ContainerEntity" - }, - "Component_[4580390205455331350]": { - "$type": "EditorMaterialComponent", - "Id": 4580390205455331350, - "Controller": { - "Configuration": { - "materials": [ - { - "Key": { - "materialAssetId": { - "guid": "{9DCAD62C-7A35-5D7D-8276-870D646CD5E2}", - "subId": 902256226 - } - }, - "Value": { - "MaterialAsset": { - "assetId": { - "guid": "{FF25E0FE-B695-5084-AE1E-65F095AA5C3F}" - }, - "assetHint": "objects/cloth/environment/cloth_locked_edge.azmaterial" - } - } - } - ] - } - }, - "materialSlots": [ - { - "id": { - "materialAssetId": { - "guid": "{9DCAD62C-7A35-5D7D-8276-870D646CD5E2}", - "subId": 902256226 - } - }, - "materialAsset": { - "assetId": { - "guid": "{FF25E0FE-B695-5084-AE1E-65F095AA5C3F}" - }, - "assetHint": "objects/cloth/environment/cloth_locked_edge.azmaterial" - } - } - ], - "materialSlotsByLod": [ - [ - { - "id": { - "lodIndex": 0, - "materialAssetId": { - "guid": "{9DCAD62C-7A35-5D7D-8276-870D646CD5E2}", - "subId": 902256226 - } - } - } - ] - ] + "Parent Entity": "ContainerEntity" }, "Component_[5652509070289279796]": { "$type": "EditorOnlyEntityComponent", @@ -215,8 +220,7 @@ "$type": "EditorEntitySortComponent", "Id": 9694796263300215788 } - }, - "IsDependencyReady": true + } } } } \ No newline at end of file diff --git a/Gems/NvCloth/Assets/slices/Cloth/Chicken_Actor.slice b/Gems/NvCloth/Assets/slices/Cloth/Chicken_Actor.slice index e7de286c1b..c2c97dec7a 100644 --- a/Gems/NvCloth/Assets/slices/Cloth/Chicken_Actor.slice +++ b/Gems/NvCloth/Assets/slices/Cloth/Chicken_Actor.slice @@ -24,7 +24,7 @@ - + @@ -33,19 +33,20 @@ - + + - + + - @@ -143,7 +144,7 @@ - + @@ -152,19 +153,20 @@ - + + - + + - @@ -246,7 +248,14 @@ - + + + + + + + + @@ -316,12 +325,9 @@ - + - - - - + @@ -329,12 +335,9 @@ - + - - - - + @@ -342,12 +345,9 @@ - + - - - - + @@ -360,94 +360,66 @@ - - + + - - - - + - - + - - + + - - - - + - - + - - + + - - - - + - - + - - + + - - - - + - - + - - + + - - - - + - - + - - + + - - - - + - - + - - + + - - - - + - - + @@ -459,7 +431,7 @@ - + @@ -510,6 +482,7 @@ + diff --git a/Gems/NvCloth/Assets/slices/Cloth/cloth_blinds.slice b/Gems/NvCloth/Assets/slices/Cloth/cloth_blinds.slice index 8d7605318e..40fb2894d3 100644 --- a/Gems/NvCloth/Assets/slices/Cloth/cloth_blinds.slice +++ b/Gems/NvCloth/Assets/slices/Cloth/cloth_blinds.slice @@ -24,7 +24,7 @@ - + @@ -33,14 +33,15 @@ - + + - + @@ -69,7 +70,7 @@ - + @@ -137,7 +138,7 @@ - + @@ -200,24 +201,36 @@ - + - + + + + + + + + + + + + + - + @@ -225,12 +238,9 @@ - + - - - - + @@ -243,46 +253,34 @@ - - + + - - - - + - - + - - + + - - - - + - - + - - + + - - - - + - - + diff --git a/Gems/NvCloth/Assets/slices/Cloth/cloth_blinds_broken.slice b/Gems/NvCloth/Assets/slices/Cloth/cloth_blinds_broken.slice index ff955f260e..909b3e582c 100644 --- a/Gems/NvCloth/Assets/slices/Cloth/cloth_blinds_broken.slice +++ b/Gems/NvCloth/Assets/slices/Cloth/cloth_blinds_broken.slice @@ -24,7 +24,7 @@ - + @@ -33,14 +33,15 @@ - + + - + @@ -69,7 +70,7 @@ - + @@ -137,7 +138,7 @@ - + @@ -200,24 +201,36 @@ - + - + + + + + + + + + + + + + - + @@ -225,12 +238,9 @@ - + - - - - + @@ -243,46 +253,34 @@ - - + + - - - - + - - + - - + + - - - - + - - + - - + + - - - - + - - + diff --git a/Gems/NvCloth/Assets/slices/Cloth/cloth_locked_corners_four.slice b/Gems/NvCloth/Assets/slices/Cloth/cloth_locked_corners_four.slice index d0bcd1296a..25e742550c 100644 --- a/Gems/NvCloth/Assets/slices/Cloth/cloth_locked_corners_four.slice +++ b/Gems/NvCloth/Assets/slices/Cloth/cloth_locked_corners_four.slice @@ -24,7 +24,7 @@ - + @@ -33,14 +33,15 @@ - + + - + @@ -69,7 +70,7 @@ - + @@ -137,7 +138,7 @@ - + @@ -200,24 +201,36 @@ - + - + + + + + + + + + + + + + - + @@ -225,12 +238,9 @@ - + - - - - + @@ -243,46 +253,34 @@ - - + + - - - - + - - + - - + + - - - - + - - + - - + + - - - - + - - + diff --git a/Gems/NvCloth/Assets/slices/Cloth/cloth_locked_corners_two.slice b/Gems/NvCloth/Assets/slices/Cloth/cloth_locked_corners_two.slice index 8e07a65147..26c6290859 100644 --- a/Gems/NvCloth/Assets/slices/Cloth/cloth_locked_corners_two.slice +++ b/Gems/NvCloth/Assets/slices/Cloth/cloth_locked_corners_two.slice @@ -24,7 +24,7 @@ - + @@ -33,14 +33,15 @@ - + + - + @@ -69,7 +70,7 @@ - + @@ -137,7 +138,7 @@ - + @@ -200,24 +201,36 @@ - + - + + + + + + + + + + + + + - + @@ -225,12 +238,9 @@ - + - - - - + @@ -243,46 +253,34 @@ - - + + - - - - + - - + - - + + - - - - + - - + - - + + - - - - + - - + diff --git a/Gems/NvCloth/Assets/slices/Cloth/cloth_locked_edge.slice b/Gems/NvCloth/Assets/slices/Cloth/cloth_locked_edge.slice index a80058d820..cee4fabe49 100644 --- a/Gems/NvCloth/Assets/slices/Cloth/cloth_locked_edge.slice +++ b/Gems/NvCloth/Assets/slices/Cloth/cloth_locked_edge.slice @@ -24,7 +24,7 @@ - + @@ -33,14 +33,15 @@ - + + - + @@ -69,7 +70,7 @@ - + @@ -137,7 +138,7 @@ - + @@ -200,24 +201,36 @@ - + - + + + + + + + + + + + + + - + @@ -225,12 +238,9 @@ - + - - - - + @@ -243,46 +253,34 @@ - - + + - - - - + - - + - - + + - - - - + - - + - - + + - - - - + - - + diff --git a/Gems/NvCloth/Code/Include/NvCloth/ICloth.h b/Gems/NvCloth/Code/Include/NvCloth/ICloth.h index e72c0ffe3a..6f40f06f02 100644 --- a/Gems/NvCloth/Code/Include/NvCloth/ICloth.h +++ b/Gems/NvCloth/Code/Include/NvCloth/ICloth.h @@ -8,12 +8,15 @@ #pragma once +#include #include #include #include #include +AZ_DECLARE_BUDGET(Cloth); + namespace NvCloth { class IClothConfigurator; diff --git a/Gems/NvCloth/Code/Include/NvCloth/IFabricCooker.h b/Gems/NvCloth/Code/Include/NvCloth/IFabricCooker.h index 8428500f59..14811b2ec6 100644 --- a/Gems/NvCloth/Code/Include/NvCloth/IFabricCooker.h +++ b/Gems/NvCloth/Code/Include/NvCloth/IFabricCooker.h @@ -8,11 +8,14 @@ #pragma once +#include #include #include #include +AZ_DECLARE_BUDGET(Cloth); + namespace NvCloth { //! Interface to cook particles into fabric. diff --git a/Gems/NvCloth/Code/Include/NvCloth/ITangentSpaceHelper.h b/Gems/NvCloth/Code/Include/NvCloth/ITangentSpaceHelper.h index 66ccd6a333..216dc6b4a5 100644 --- a/Gems/NvCloth/Code/Include/NvCloth/ITangentSpaceHelper.h +++ b/Gems/NvCloth/Code/Include/NvCloth/ITangentSpaceHelper.h @@ -8,10 +8,13 @@ #pragma once +#include #include #include +AZ_DECLARE_BUDGET(Cloth); + namespace NvCloth { //! Interface that provides a set of functions to diff --git a/Gems/NvCloth/Code/Source/System/Cloth.cpp b/Gems/NvCloth/Code/Source/System/Cloth.cpp index c71d1bd584..6cebebbf26 100644 --- a/Gems/NvCloth/Code/Source/System/Cloth.cpp +++ b/Gems/NvCloth/Code/Source/System/Cloth.cpp @@ -20,6 +20,8 @@ #include #include +AZ_DEFINE_BUDGET(Cloth); + namespace NvCloth { namespace Internal diff --git a/Gems/NvCloth/Code/Source/System/SystemComponent.cpp b/Gems/NvCloth/Code/Source/System/SystemComponent.cpp index 77223ba566..3d332aa13d 100644 --- a/Gems/NvCloth/Code/Source/System/SystemComponent.cpp +++ b/Gems/NvCloth/Code/Source/System/SystemComponent.cpp @@ -125,7 +125,7 @@ namespace NvCloth } else { - AZ_PROFILE_END(); + AZ_PROFILE_END(Cloth); } } }; diff --git a/Gems/NvCloth/Code/Tests/System/FabricCookerTest.cpp b/Gems/NvCloth/Code/Tests/System/FabricCookerTest.cpp index f6f9947223..c5a22d02d1 100644 --- a/Gems/NvCloth/Code/Tests/System/FabricCookerTest.cpp +++ b/Gems/NvCloth/Code/Tests/System/FabricCookerTest.cpp @@ -140,9 +140,6 @@ namespace UnitTest TEST(NvClothSystem, FactoryCooker_CopyInternalCookedData_CopiedDataMatchesSource) { - const AZ::u32 data[] = { 0, 2, 45, 64, 125 }; - const size_t numDataElements = sizeof(data) / sizeof(data[0]); - nv::cloth::CookedData nvCookedData; nvCookedData.mNumParticles = 0; diff --git a/Gems/PhysX/Code/CMakeLists.txt b/Gems/PhysX/Code/CMakeLists.txt index 80e8bee8e3..e2c3896356 100644 --- a/Gems/PhysX/Code/CMakeLists.txt +++ b/Gems/PhysX/Code/CMakeLists.txt @@ -226,13 +226,4 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED) OUTPUT_SUBDIRECTORY Test.Assets/Gems/PhysX/Code/Tests ) -endif() - -ly_add_source_properties( - SOURCES - Editor/CollisionLayersWidget.cpp - Source/Collision.cpp - Source/Configuration/PhysXConfiguration.cpp - PROPERTY COMPILE_DEFINITIONS - VALUES TOUCHBENDING_LAYER_BIT=${LY_TOUCHBENDING_LAYER_BIT} -) +endif() \ No newline at end of file diff --git a/Gems/PhysX/Code/Editor/CollisionLayersWidget.cpp b/Gems/PhysX/Code/Editor/CollisionLayersWidget.cpp index 76a9c63ec0..49853312c6 100644 --- a/Gems/PhysX/Code/Editor/CollisionLayersWidget.cpp +++ b/Gems/PhysX/Code/Editor/CollisionLayersWidget.cpp @@ -22,9 +22,6 @@ namespace PhysX namespace Editor { const AZStd::string CollisionLayersWidget::s_defaultCollisionLayerName = "Default"; -#ifdef TOUCHBENDING_LAYER_BIT - const AZStd::string CollisionLayersWidget::s_touchBendCollisionLayerName = "TouchBend"; -#endif CollisionLayersWidget::CollisionLayersWidget(QWidget* parent) : QWidget(parent) @@ -150,12 +147,6 @@ namespace PhysX { lineEditCtrl->setEnabled(false); } -#ifdef TOUCHBENDING_LAYER_BIT - else if (lineEditCtrl->value() == s_touchBendCollisionLayerName) - { - lineEditCtrl->setEnabled(false); - } -#endif } } diff --git a/Gems/PhysX/Code/Editor/CollisionLayersWidget.h b/Gems/PhysX/Code/Editor/CollisionLayersWidget.h index ae21147cd2..2fb0af996b 100644 --- a/Gems/PhysX/Code/Editor/CollisionLayersWidget.h +++ b/Gems/PhysX/Code/Editor/CollisionLayersWidget.h @@ -35,9 +35,6 @@ namespace PhysX static const AZ::u32 s_maxCollisionLayerNameLength = 32; static const AZStd::string s_defaultCollisionLayerName; -#ifdef TOUCHBENDING_LAYER_BIT - static const AZStd::string s_touchBendCollisionLayerName; -#endif explicit CollisionLayersWidget(QWidget* parent = nullptr); diff --git a/Gems/PhysX/Code/Editor/ConfigStringLineEditCtrl.cpp b/Gems/PhysX/Code/Editor/ConfigStringLineEditCtrl.cpp index 1e506263be..4cf5204917 100644 --- a/Gems/PhysX/Code/Editor/ConfigStringLineEditCtrl.cpp +++ b/Gems/PhysX/Code/Editor/ConfigStringLineEditCtrl.cpp @@ -257,16 +257,16 @@ namespace PhysX void ConfigStringLineEditHandler::WriteGUIValuesIntoProperty(size_t index, ConfigStringLineEditCtrl* GUI, property_t& instance, AzToolsFramework::InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); AZStd::string val = GUI->Value(); instance = static_cast(val); } bool ConfigStringLineEditHandler::ReadValuesIntoGUI(size_t index, ConfigStringLineEditCtrl* GUI, const property_t& instance, AzToolsFramework::InstanceDataNode* node) { - (int)index; - (void)node; + AZ_UNUSED(index); + AZ_UNUSED(node); AZStd::string val = instance; GUI->setValue(val); return false; diff --git a/Gems/PhysX/Code/Editor/EditorClassConverters.cpp b/Gems/PhysX/Code/Editor/EditorClassConverters.cpp index dfa30dc0b4..e55ac6bbda 100644 --- a/Gems/PhysX/Code/Editor/EditorClassConverters.cpp +++ b/Gems/PhysX/Code/Editor/EditorClassConverters.cpp @@ -65,7 +65,6 @@ namespace PhysX { // collision group id AzPhysics::CollisionGroups::Id collisionGroupId; - const int baseColliderComponentIndex = classElement.FindElement(AZ_CRC("BaseClass1", 0xd4925735)); FindElementRecursiveAndGetData(classElement, AZ_CRC("CollisionGroupId", 0x84fe4bbe), collisionGroupId); // collider config diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeAngleCone.cpp b/Gems/PhysX/Code/Editor/EditorSubComponentModeAngleCone.cpp index 7e9a59093f..778fce1546 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeAngleCone.cpp +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeAngleCone.cpp @@ -334,15 +334,13 @@ namespace PhysX } void EditorSubComponentModeAngleCone::ConfigureLinearView( - float axisLength, const AZ::Color& axis1Color, const AZ::Color& axis2Color, + float axisLength, [[maybe_unused]] const AZ::Color& axis1Color, const AZ::Color& axis2Color, const AZ::Color& axis3Color) { const float coneLength = 0.28f; const float coneRadius = 0.07f; const float lineWidth = 0.05f; - const AZ::Color axesColor[] = { axis1Color, axis2Color, axis3Color }; - const auto configureLinearView = [lineWidth, coneLength, axisLength, coneRadius]( AzToolsFramework::LinearManipulator* linearManipulator, const AZ::Color& color) { diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnap.cpp b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnap.cpp index cef48a7cf5..5220b2e274 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnap.cpp +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnap.cpp @@ -99,7 +99,6 @@ namespace PhysX debugDisplay.PushMatrix(localTransform); const float xAxisLineLength = 15.0f; - const float yzAxisArrowLength = 1.0f; debugDisplay.SetColor(AZ::Color(1.0f, 0.0f, 0.0f, 1.0f)); debugDisplay.DrawLine(AZ::Vector3(0.0f, 0.0f, 0.0f), AZ::Vector3(xAxisLineLength, 0.0f, 0.0f)); diff --git a/Gems/PhysX/Code/Include/PhysX/UserDataTypes.h b/Gems/PhysX/Code/Include/PhysX/UserDataTypes.h index 03add0a7ec..aad2a716ec 100644 --- a/Gems/PhysX/Code/Include/PhysX/UserDataTypes.h +++ b/Gems/PhysX/Code/Include/PhysX/UserDataTypes.h @@ -22,49 +22,15 @@ namespace AzPhysics namespace PhysX { - enum class BaseActorType : AZ::u32 - { - PHYSX_DEFAULT = 0, - TOUCHBENDING_TRIGGER, - }; - ///PxActor.userData is the custom data pointer that NVIDIA PhysX provides for applications to attach - ///private data. The PhysX Gem requires that this userData points to objects that subclass BaseActorData. - ///For Example: - ///The TouchBending Gem defines "struct TouchBendingInstanceHandle : public PhysX::BaseActorData", - ///While regular PhysX Gem Components use "class ActorData : public BaseActorData". - class BaseActorData - { - protected: - using PxActorUniquePtr = AZStd::unique_ptr >; - - ///This is an arbitary value used to verify the cast from void* userdata pointer on a pxActor to BaseActorData - ///is safe. If m_sanity does not have this value, then it is not safe to use the casted pointer. - ///Helps to debug if someone is setting userData pointer to something other than this class during development - static const AZ::u32 s_sanityValue = 0xba5eba11; - - AZ::u32 m_sanity = s_sanityValue; - BaseActorType m_actorType = BaseActorType::PHYSX_DEFAULT; - PxActorUniquePtr m_actor; - - BaseActorData() = default; - BaseActorData(BaseActorType type, physx::PxActor* actor); - BaseActorData(BaseActorData&& other); - BaseActorData& operator=(BaseActorData&& other); - - public: - bool IsValid() const; - BaseActorType GetType() const; - }; - - - class ActorData : public BaseActorData + ///private data. The PhysX Gem requires that this userData points to ActorData objects. + class ActorData { public: ActorData() = default; ActorData(physx::PxActor* actor); - ActorData(ActorData&& actorData) = default; - ActorData& operator=(ActorData&& actorData) = default; + ActorData(ActorData&& actorData); + ActorData& operator=(ActorData&& actorData); void Invalidate(); AZ::EntityId GetEntityId() const; @@ -86,7 +52,18 @@ namespace PhysX AzPhysics::SimulatedBody* GetSimulatedBody() const; + bool IsValid() const; + private: + using PxActorUniquePtr = AZStd::unique_ptr >; + + ///This is an arbitary value used to verify the cast from void* userdata pointer on a pxActor to ActorData + ///is safe. If m_sanity does not have this value, then it is not safe to use the casted pointer. + ///Helps to debug if someone is setting userData pointer to something other than this class during development + static constexpr AZ::u32 SanityValue = 0xba5eba11; + + AZ::u32 m_sanity = SanityValue; + PxActorUniquePtr m_actor; struct Payload { diff --git a/Gems/PhysX/Code/Include/PhysX/UserDataTypes.inl b/Gems/PhysX/Code/Include/PhysX/UserDataTypes.inl index d0fa850dbf..e01163d7ee 100644 --- a/Gems/PhysX/Code/Include/PhysX/UserDataTypes.inl +++ b/Gems/PhysX/Code/Include/PhysX/UserDataTypes.inl @@ -9,9 +9,7 @@ namespace PhysX { - // BaseActorData START **************************************************** - inline BaseActorData::BaseActorData(BaseActorType type, physx::PxActor* actor) : - m_sanity(s_sanityValue), m_actorType(type) + inline ActorData::ActorData(physx::PxActor* actor) { auto nullUserData = [](physx::PxActor* actorToSet) { @@ -23,36 +21,26 @@ namespace PhysX actor->userData = this; } - inline BaseActorData::BaseActorData(BaseActorData&& other) : - m_sanity(s_sanityValue), m_actorType(other.m_actorType), m_actor(AZStd::move(other.m_actor)) + inline ActorData::ActorData(ActorData&& other) + : m_sanity(other.m_sanity) + , m_actor(AZStd::move(other.m_actor)) + , m_payload(AZStd::move(other.m_payload)) { m_actor->userData = this; } - inline BaseActorData& BaseActorData::operator=(BaseActorData&& other) + inline ActorData& ActorData::operator=(ActorData&& other) { - m_sanity = s_sanityValue; - m_actorType = other.m_actorType; + m_sanity = other.m_sanity; m_actor = AZStd::move(other.m_actor); m_actor->userData = this; + m_payload = AZStd::move(other.m_payload); return *this; } - inline bool BaseActorData::IsValid() const - { - return m_sanity == s_sanityValue; - } - - inline BaseActorType BaseActorData::GetType() const - { - return m_actorType; - } - // BaseActorData END ****************************************************** - - - // ActorData START ******************************************************** - inline ActorData::ActorData(physx::PxActor* actor) : BaseActorData(BaseActorType::PHYSX_DEFAULT, actor) + inline bool ActorData::IsValid() const { + return m_sanity == SanityValue; } inline void ActorData::Invalidate() @@ -149,5 +137,4 @@ namespace PhysX return nullptr; } } - // ActorData END ******************************************************** } //namespace PhysX diff --git a/Gems/PhysX/Code/Source/Collision.cpp b/Gems/PhysX/Code/Source/Collision.cpp index 0476dcfd09..361b1d13eb 100644 --- a/Gems/PhysX/Code/Source/Collision.cpp +++ b/Gems/PhysX/Code/Source/Collision.cpp @@ -38,21 +38,6 @@ namespace PhysX return physx::PxFilterFlag::eDEFAULT; } -//Enable/Disable this macro in the TouchBending Gem wscript -#ifdef TOUCHBENDING_LAYER_BIT - //If any of the actors is in the TouchBend layer then we are not interested - //in contact data, nor interested in eNOTIFY_* callbacks. - const AZ::u64 touchBendLayerMask = AzPhysics::CollisionLayer::TouchBend.GetMask(); - const AZ::u64 layer0 = Combine(filterData0.word0, filterData0.word1); - const AZ::u64 layer1 = Combine(filterData1.word0, filterData1.word1); - if (layer0 == touchBendLayerMask || layer1 == touchBendLayerMask) - { - pairFlags = physx::PxPairFlag::eSOLVE_CONTACT | - physx::PxPairFlag::eDETECT_DISCRETE_CONTACT; - return physx::PxFilterFlag::eDEFAULT; - } -#endif //TOUCHBENDING_LAYER_BIT - // generate contacts for all that were not filtered above pairFlags = physx::PxPairFlag::eCONTACT_DEFAULT | @@ -89,22 +74,6 @@ namespace PhysX return physx::PxFilterFlag::eDEFAULT; } -//Enable/Disable this macro in the TouchBending Gem wscript -#ifdef TOUCHBENDING_LAYER_BIT - //If any of the actors is in the TouchBend layer then we are not interested - //in contact data, nor interested in eNOTIFY_* callbacks. - const AZ::u64 layer0 = Combine(filterData0.word0, filterData0.word1); - const AZ::u64 layer1 = Combine(filterData1.word0, filterData1.word1); - const AZ::u64 touchBendLayerMask = AzPhysics::CollisionLayer::TouchBend.GetMask(); - if (layer0 == touchBendLayerMask || layer1 == touchBendLayerMask) - { - pairFlags = physx::PxPairFlag::eSOLVE_CONTACT | - physx::PxPairFlag::eDETECT_DISCRETE_CONTACT | - physx::PxPairFlag::eDETECT_CCD_CONTACT; - return physx::PxFilterFlag::eDEFAULT; - } -#endif - // generate contacts for all that were not filtered above pairFlags = physx::PxPairFlag::eCONTACT_DEFAULT | diff --git a/Gems/PhysX/Code/Source/Configuration/PhysXConfiguration.cpp b/Gems/PhysX/Code/Source/Configuration/PhysXConfiguration.cpp index 4e1b66017e..7a441a1c55 100644 --- a/Gems/PhysX/Code/Source/Configuration/PhysXConfiguration.cpp +++ b/Gems/PhysX/Code/Source/Configuration/PhysXConfiguration.cpp @@ -23,11 +23,6 @@ namespace PhysX configuration.m_collisionGroups.CreateGroup("All", AzPhysics::CollisionGroup::All, AzPhysics::CollisionGroups::Id(), true); configuration.m_collisionGroups.CreateGroup("None", AzPhysics::CollisionGroup::None, AzPhysics::CollisionGroups::Id::Create(), true); -#ifdef TOUCHBENDING_LAYER_BIT - configuration.m_collisionLayers.SetName(AzPhysics::CollisionLayer::TouchBend, "TouchBend"); - configuration.m_collisionGroups.CreateGroup("All_NoTouchBend", AzPhysics::CollisionGroup::All_NoTouchBend, AzPhysics::CollisionGroups::Id::Create(), true); -#endif - return configuration; } diff --git a/Gems/PhysX/Code/Source/Debug/PhysXDebug.h b/Gems/PhysX/Code/Source/Debug/PhysXDebug.h index 8286981032..58d6f7e03e 100644 --- a/Gems/PhysX/Code/Source/Debug/PhysXDebug.h +++ b/Gems/PhysX/Code/Source/Debug/PhysXDebug.h @@ -43,7 +43,7 @@ namespace PhysX void DisconnectFromPvd() override; private: - physx::PxPvdTransport* m_pvdTransport = nullptr; + [[maybe_unused]] physx::PxPvdTransport* m_pvdTransport = nullptr; physx::PxPvd* m_pvd = nullptr; DebugConfiguration m_config; diff --git a/Gems/PhysX/Code/Source/EditorBallJointComponent.cpp b/Gems/PhysX/Code/Source/EditorBallJointComponent.cpp index d196b4644d..da000baeed 100644 --- a/Gems/PhysX/Code/Source/EditorBallJointComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorBallJointComponent.cpp @@ -237,7 +237,6 @@ namespace PhysX debugDisplay.PushMatrix(localTransform); const float xAxisArrowLength = 2.0f; - const float yzAxisArrowLength = 1.0f; debugDisplay.SetColor(AZ::Color(1.0f, 0.0f, 0.0f, 1.0f)); debugDisplay.DrawArrow(AZ::Vector3(0.0f, 0.0f, 0.0f), AZ::Vector3(xAxisArrowLength, 0.0f, 0.0f)); diff --git a/Gems/PhysX/Code/Source/EditorColliderComponent.cpp b/Gems/PhysX/Code/Source/EditorColliderComponent.cpp index 2445aba9bd..4aa240eaae 100644 --- a/Gems/PhysX/Code/Source/EditorColliderComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorColliderComponent.cpp @@ -122,7 +122,10 @@ namespace PhysX if (m_shapeType != Physics::ShapeType::PhysicsAsset && m_lastShapeType == Physics::ShapeType::PhysicsAsset) { + //clean up any reference to a physics assets, and re-initialize to an empty Pipeline::MeshAsset asset. m_physicsAsset.m_pxAsset.Reset(); + m_physicsAsset.m_pxAsset = AZ::Data::Asset(AZ::Data::AssetLoadBehavior::QueueLoad); + m_physicsAsset.m_configuration = Physics::PhysicsAssetShapeConfiguration(); } m_lastShapeType = m_shapeType; @@ -793,7 +796,7 @@ namespace PhysX entityRigidbody->GetRigidBody()->IsKinematic() == false) { AZStd::string assetPath = m_shapeConfiguration.m_physicsAsset.m_configuration.m_asset.GetHint().c_str(); - const uint lastSlash = static_cast(assetPath.rfind('/')); + const size_t lastSlash = assetPath.rfind('/'); if (lastSlash != AZStd::string::npos) { assetPath = assetPath.substr(lastSlash + 1); diff --git a/Gems/PhysX/Code/Source/EditorShapeColliderComponent.cpp b/Gems/PhysX/Code/Source/EditorShapeColliderComponent.cpp index 7ff62e0fc6..57bfe17a30 100644 --- a/Gems/PhysX/Code/Source/EditorShapeColliderComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorShapeColliderComponent.cpp @@ -58,10 +58,10 @@ namespace PhysX { if (m_shapeType == ShapeType::Cylinder) { - return AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::Show; + return AZ::Edit::PropertyVisibility::Show; } - return AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::Hide; + return AZ::Edit::PropertyVisibility::Hide; } void EditorShapeColliderComponent::Reflect(AZ::ReflectContext* context) diff --git a/Gems/PhysX/Code/Source/RigidBodyStatic.cpp b/Gems/PhysX/Code/Source/RigidBodyStatic.cpp index 325c42960a..2d4d64e518 100644 --- a/Gems/PhysX/Code/Source/RigidBodyStatic.cpp +++ b/Gems/PhysX/Code/Source/RigidBodyStatic.cpp @@ -20,6 +20,8 @@ namespace PhysX { + AZ_CLASS_ALLOCATOR_IMPL(PhysX::StaticRigidBody, AZ::SystemAllocator, 0); + StaticRigidBody::StaticRigidBody(const AzPhysics::StaticRigidBodyConfiguration& configuration) { CreatePhysXActor(configuration); @@ -40,7 +42,7 @@ namespace PhysX // Invalidate user data so it sets m_pxStaticRigidBody->userData to nullptr. // It's appropriate to do this as m_pxStaticRigidBody is a shared pointer and - // techniqucally it could survive m_actorUserData life's spam. + // technically it could survive m_actorUserData life's span. m_actorUserData.Invalidate(); } diff --git a/Gems/PhysX/Code/Source/RigidBodyStatic.h b/Gems/PhysX/Code/Source/RigidBodyStatic.h index 5301fdce08..3226cae836 100644 --- a/Gems/PhysX/Code/Source/RigidBodyStatic.h +++ b/Gems/PhysX/Code/Source/RigidBodyStatic.h @@ -26,8 +26,8 @@ namespace PhysX : public AzPhysics::StaticRigidBody { public: - AZ_CLASS_ALLOCATOR(StaticRigidBody, AZ::SystemAllocator, 0); - AZ_RTTI(StaticRigidBody, "{06E960EF-E1F3-466F-B34F-800E32775092}", AzPhysics::StaticRigidBody); + AZ_CLASS_ALLOCATOR_DECL; + AZ_RTTI(PhysX::StaticRigidBody, "{06E960EF-E1F3-466F-B34F-800E32775092}", AzPhysics::StaticRigidBody); StaticRigidBody() = default; StaticRigidBody(const AzPhysics::StaticRigidBodyConfiguration& configuration); diff --git a/Gems/PhysX/Code/Source/Scene/PhysXScene.cpp b/Gems/PhysX/Code/Source/Scene/PhysXScene.cpp index a2866b5a09..3b5c98ba2d 100644 --- a/Gems/PhysX/Code/Source/Scene/PhysXScene.cpp +++ b/Gems/PhysX/Code/Source/Scene/PhysXScene.cpp @@ -182,7 +182,7 @@ namespace PhysX SimulatedBodyType* newBody = aznew SimulatedBodyType(*configuration); if (!AZStd::holds_alternative(configuration->m_colliderAndShapeData)) { - const bool shapeAdded = AddShape(newBody, configuration->m_colliderAndShapeData); + [[maybe_unused]] const bool shapeAdded = AddShape(newBody, configuration->m_colliderAndShapeData); AZ_Warning("PhysXScene", shapeAdded, "No Collider or Shape information found when creating Rigid body [%s]", configuration->m_debugName.c_str()); } crc = AZ::Crc32(newBody, sizeof(*newBody)); @@ -194,7 +194,7 @@ namespace PhysX RigidBody* newBody = aznew RigidBody(*configuration); if (!AZStd::holds_alternative(configuration->m_colliderAndShapeData)) { - const bool shapeAdded = AddShape(newBody, configuration->m_colliderAndShapeData); + [[maybe_unused]] const bool shapeAdded = AddShape(newBody, configuration->m_colliderAndShapeData); AZ_Warning("PhysXScene", shapeAdded, "No Collider or Shape information found when creating Rigid body [%s]", configuration->m_debugName.c_str()); } const AzPhysics::MassComputeFlags& flags = configuration->GetMassComputeFlags(); diff --git a/Gems/PhysX/Code/Source/System/PhysXSdkCallbacks.cpp b/Gems/PhysX/Code/Source/System/PhysXSdkCallbacks.cpp index 28981722b6..c9d4041e01 100644 --- a/Gems/PhysX/Code/Source/System/PhysXSdkCallbacks.cpp +++ b/Gems/PhysX/Code/Source/System/PhysXSdkCallbacks.cpp @@ -59,7 +59,7 @@ namespace PhysX { if (!detached) { - AZ_PROFILE_END(); + AZ_PROFILE_END(Physics); } else { diff --git a/Gems/PhysX/Code/Source/Utils.cpp b/Gems/PhysX/Code/Source/Utils.cpp index 0b7ab9436b..8a76d6d986 100644 --- a/Gems/PhysX/Code/Source/Utils.cpp +++ b/Gems/PhysX/Code/Source/Utils.cpp @@ -654,10 +654,6 @@ namespace PhysX const AZ::Quaternion& colliderRelativeRotation, const AZ::Vector3& nonUniformScale) { - AZ::Transform transform = GetColliderWorldTransform(worldTransform, - colliderRelativePosition, - colliderRelativeRotation); - for (AZ::Vector3& point : pointsInOut) { point = worldTransform.TransformPoint(nonUniformScale * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXCharactersRagdollBenchmarks.cpp b/Gems/PhysX/Code/Tests/Benchmarks/PhysXCharactersRagdollBenchmarks.cpp index 575ff7b4b7..8febfcddfc 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXCharactersRagdollBenchmarks.cpp +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXCharactersRagdollBenchmarks.cpp @@ -225,7 +225,6 @@ namespace PhysX::Benchmarks } //enable and position the ragdolls - const int ragdollsPerCol = static_cast(RagdollConstants::TerrainSize / 10.0f) - 1; int idx = 0; for (auto& ragdoll : ragdolls) { diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXJointBenchmarks.cpp b/Gems/PhysX/Code/Tests/Benchmarks/PhysXJointBenchmarks.cpp index 37f099ec1c..17468b5cc6 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXJointBenchmarks.cpp +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXJointBenchmarks.cpp @@ -40,9 +40,6 @@ namespace PhysX::Benchmarks //! used in BM_Joints_Snake static const float SnakeSegmentLength = 2.5f; - //! The size of the test terrain - static const float TerrainSize = 1000.0f; - //! Constant seed to use with random number generation static const long long RandGenSeed = 74111105110116; //(Number generated by concatenating 'Joint' ascii character codes (74 111 105 110 116) @@ -82,9 +79,6 @@ namespace PhysX::Benchmarks static const float SwingingJointUpperLimit = 90.0f; static const float SwingingJointLowerLimit = -180.0f; - //newtons cradle positioning - static const float ParentNewtonsCradleSpacing = 1.05f; - static const float NewtonsCradleArmLength = 10.0f; } // namespace JointSettings } // namespace JointConstants diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXRigidBodyBenchmarks.cpp b/Gems/PhysX/Code/Tests/Benchmarks/PhysXRigidBodyBenchmarks.cpp index b02a3962cc..0117e9737b 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXRigidBodyBenchmarks.cpp +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXRigidBodyBenchmarks.cpp @@ -175,7 +175,6 @@ namespace PhysX::Benchmarks const int numRigidBodies = static_cast(state.range(0)); //common settings for each rigid body - const float boxSize = 5.0f; const float boxSizeWithSpacing = RigidBodyConstants::RigidBodys::BoxSize + 2.0f; const int boxesPerCol = static_cast(RigidBodyConstants::TerrainSize / boxSizeWithSpacing) - 1; int spawnColIdx = 0; @@ -399,7 +398,7 @@ namespace PhysX::Benchmarks return rand.GetRandomFloat() * 25.0f + 5.0f; }; - Utils::GenerateEntityIdFuncPtr entityIdGenerator = [&rand](int idx) -> AZ::EntityId { + Utils::GenerateEntityIdFuncPtr entityIdGenerator = [](int idx) -> AZ::EntityId { return AZ::EntityId(static_cast(idx) + RigidBodyConstants::RigidBodys::RigidBodyEntityIdStart); }; auto boxShapeConfiguration = AZStd::make_shared(AZ::Vector3(RigidBodyConstants::RigidBodys::BoxSize)); diff --git a/Gems/PhysX/Code/Tests/CharacterControllerTests.cpp b/Gems/PhysX/Code/Tests/CharacterControllerTests.cpp index 53a7e20be6..c4cb4cc4ad 100644 --- a/Gems/PhysX/Code/Tests/CharacterControllerTests.cpp +++ b/Gems/PhysX/Code/Tests/CharacterControllerTests.cpp @@ -247,7 +247,6 @@ namespace PhysX for (int i = 0; i < 50; i++) { basis.Update(desiredVelocity); - AZ::Vector3 velocity = basis.m_controller->GetVelocity(); EXPECT_TRUE(basis.m_controller->GetVelocity().IsClose(AZ::Vector3::CreateZero())); } @@ -260,7 +259,6 @@ namespace PhysX for (int i = 0; i < 50; i++) { basis.Update(desiredVelocity); - AZ::Vector3 velocity = basis.m_controller->GetVelocity(); EXPECT_TRUE(basis.m_controller->GetVelocity().IsClose(desiredVelocity)); } } diff --git a/Gems/PhysX/Code/Tests/PhysXCollisionFilteringTest.cpp b/Gems/PhysX/Code/Tests/PhysXCollisionFilteringTest.cpp index dec01392b8..421cf375d9 100644 --- a/Gems/PhysX/Code/Tests/PhysXCollisionFilteringTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXCollisionFilteringTest.cpp @@ -24,7 +24,6 @@ namespace PhysX { protected: const AZStd::string DefaultLayer = "Default"; - const AZStd::string TouchBendLayer = "TouchBend"; const AZStd::string LayerA = "LayerA"; const AZStd::string LayerB = "LayerB"; const AZStd::string GroupA = "GroupA"; @@ -42,7 +41,6 @@ namespace PhysX AZStd::vector TestCollisionLayers = { DefaultLayer, - TouchBendLayer, // This is needed here as placeholder as collision events are disabled on this layer. LayerA, LayerB }; diff --git a/Gems/PhysX/Code/Tests/PhysXJointsTest.cpp b/Gems/PhysX/Code/Tests/PhysXJointsTest.cpp index ac5a99e29a..3a7eac0884 100644 --- a/Gems/PhysX/Code/Tests/PhysXJointsTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXJointsTest.cpp @@ -329,23 +329,23 @@ namespace PhysX if (auto* sceneInterface = AZ::Interface::Get()) { - jointHandle = sceneInterface->AddJoint(m_testSceneHandle, &jointConfiguration, m_parentBodyHandle, m_childBodyHandle); + jointHandle = sceneInterface->AddJoint(this->m_testSceneHandle, &jointConfiguration, this->m_parentBodyHandle, this->m_childBodyHandle); } EXPECT_NE(jointHandle, AzPhysics::InvalidJointHandle); // run physics to trigger the the move of parent body - TestUtils::UpdateScene(m_testSceneHandle, AzPhysics::SystemConfiguration::DefaultFixedTimestep, 1); + TestUtils::UpdateScene(this->m_testSceneHandle, AzPhysics::SystemConfiguration::DefaultFixedTimestep, 1); AZ::Vector3 childCurrentPos; if (auto* sceneInterface = AZ::Interface::Get()) { - auto* childBody = sceneInterface->GetSimulatedBodyFromHandle(m_testSceneHandle, m_childBodyHandle); + auto* childBody = sceneInterface->GetSimulatedBodyFromHandle(this->m_testSceneHandle, this->m_childBodyHandle); childCurrentPos = childBody->GetPosition(); } - EXPECT_GT(childCurrentPos.GetX(), m_childInitialPos.GetX()); + EXPECT_GT(childCurrentPos.GetX(), this->m_childInitialPos.GetX()); } #endif // ENABLE_JOINTS_TYPED_TEST_CASE } diff --git a/Gems/PhysX/Code/Tests/PhysXMultithreadingTest.cpp b/Gems/PhysX/Code/Tests/PhysXMultithreadingTest.cpp index cb200113bb..a0013402b1 100644 --- a/Gems/PhysX/Code/Tests/PhysXMultithreadingTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXMultithreadingTest.cpp @@ -140,11 +140,9 @@ namespace PhysX Log_Help(m_threadDesc.m_name, "Thread %d - sleeping for %dms\n", AZStd::this_thread::get_id(), m_waitTimeMilliseconds); AZStd::this_thread::sleep_for(AZStd::chrono::milliseconds(m_waitTimeMilliseconds)); Log_Help(m_threadDesc.m_name, "Thread %d - running cast\n", AZStd::this_thread::get_id()); - AZStd::chrono::system_clock::time_point startTime = AZStd::chrono::system_clock::now(); RunRequest(); - AZStd::chrono::microseconds exeTimeUS = AZStd::chrono::system_clock::now() - startTime; Log_Help(m_threadDesc.m_name, "Thread %d - complete - time %dus\n", AZStd::this_thread::get_id(), exeTimeUS.count()); } diff --git a/Gems/PhysX/Code/Tests/PhysXSceneQueryTests.cpp b/Gems/PhysX/Code/Tests/PhysXSceneQueryTests.cpp index caacf5dce2..48ae2e37d7 100644 --- a/Gems/PhysX/Code/Tests/PhysXSceneQueryTests.cpp +++ b/Gems/PhysX/Code/Tests/PhysXSceneQueryTests.cpp @@ -737,11 +737,11 @@ namespace PhysX auto* sceneInterface = AZ::Interface::Get(); //setup bodies - AzPhysics::SimulatedBodyHandle sphereHandle = TestUtils::AddSphereToScene(m_testSceneHandle, + TestUtils::AddSphereToScene(m_testSceneHandle, AZ::Vector3(10.0f, 0.0f, 0.0f), 3.0f); AzPhysics::SimulatedBodyHandle boxHandle = TestUtils::AddBoxToScene(m_testSceneHandle, AZ::Vector3(7.0f, 4.0f, 0.0f), AZ::Vector3(1.0f)); - AzPhysics::SimulatedBodyHandle capsuleHandle = TestUtils::AddCapsuleToScene(m_testSceneHandle, + TestUtils::AddCapsuleToScene(m_testSceneHandle, AZ::Vector3(15.0f, 0.0f, 0.0f), 3.0f, 1.0f); //Create request @@ -769,11 +769,11 @@ namespace PhysX auto* sceneInterface = AZ::Interface::Get(); //setup bodies - AzPhysics::SimulatedBodyHandle sphereHandle = TestUtils::AddSphereToScene(m_testSceneHandle, + TestUtils::AddSphereToScene(m_testSceneHandle, AZ::Vector3(10.0f, 0.0f, 0.0f), 3.0f); AzPhysics::SimulatedBodyHandle boxHandle = TestUtils::AddBoxToScene(m_testSceneHandle, AZ::Vector3(7.0f, 4.0f, 0.0f), AZ::Vector3(1.0f)); - AzPhysics::SimulatedBodyHandle capsuleHandle = TestUtils::AddCapsuleToScene(m_testSceneHandle, + TestUtils::AddCapsuleToScene(m_testSceneHandle, AZ::Vector3(15.0f, 0.0f, 0.0f), 3.0f, 1.0f); //Box Overlap Request @@ -824,9 +824,9 @@ namespace PhysX auto* sceneInterface = AZ::Interface::Get(); //setup bodies - AzPhysics::SimulatedBodyHandle sphereHandle = TestUtils::AddSphereToScene(m_testSceneHandle, + TestUtils::AddSphereToScene(m_testSceneHandle, AZ::Vector3(10.0f, 0.0f, 0.0f), 3.0f); - AzPhysics::SimulatedBodyHandle boxHandle = TestUtils::AddBoxToScene(m_testSceneHandle, + TestUtils::AddBoxToScene(m_testSceneHandle, AZ::Vector3(7.0f, 4.0f, 0.0f), AZ::Vector3(1.0f)); AzPhysics::SimulatedBodyHandle capsuleHandle = TestUtils::AddCapsuleToScene(m_testSceneHandle, AZ::Vector3(15.0f, 0.0f, 0.0f), 3.0f, 1.0f); @@ -863,9 +863,9 @@ namespace PhysX //setup bodies AzPhysics::SimulatedBodyHandle sphereHandle = TestUtils::AddSphereToScene(m_testSceneHandle, AZ::Vector3(10.0f, 0.0f, 0.0f), 3.0f, AzPhysics::CollisionLayer(0)); - AzPhysics::SimulatedBodyHandle boxHandle = TestUtils::AddBoxToScene(m_testSceneHandle, + TestUtils::AddBoxToScene(m_testSceneHandle, AZ::Vector3(12.0f, 0.0f, 0.0f), AZ::Vector3(1.0f), AzPhysics::CollisionLayer(1)); - AzPhysics::SimulatedBodyHandle capsuleHandle = TestUtils::AddCapsuleToScene(m_testSceneHandle, + TestUtils::AddCapsuleToScene(m_testSceneHandle, AZ::Vector3(14.0f, 0.0f, 0.0f), 3.0f, 1.0f, AzPhysics::CollisionLayer(2)); //Create Request diff --git a/Gems/PhysX/Code/Tests/PhysXSceneTests.cpp b/Gems/PhysX/Code/Tests/PhysXSceneTests.cpp index 5b90ef0004..a4db2e9f0e 100644 --- a/Gems/PhysX/Code/Tests/PhysXSceneTests.cpp +++ b/Gems/PhysX/Code/Tests/PhysXSceneTests.cpp @@ -171,7 +171,7 @@ namespace PhysX //invalid simulated body handle returns null nullBody = sceneInterface->GetSimulatedBodyFromHandle(AzPhysics::InvalidSceneHandle, AzPhysics::InvalidSimulatedBodyHandle); EXPECT_TRUE(nullBody == nullptr); - nullBody = sceneInterface->GetSimulatedBodyFromHandle(m_testSceneHandle, AzPhysics::SimulatedBodyHandle(2347892348, 9)); + nullBody = sceneInterface->GetSimulatedBodyFromHandle(m_testSceneHandle, AzPhysics::SimulatedBodyHandle(1347892348, 9)); EXPECT_TRUE(nullBody == nullptr); //get 1 simulated body, should not be null. @@ -558,7 +558,7 @@ namespace PhysX // add a static simulated body - this is not expected to be reported as an active actor AzPhysics::StaticRigidBodyConfiguration staticConfig; staticConfig.m_colliderAndShapeData = shapeColliderData; - AzPhysics::SimulatedBodyHandle staticSphereHandle = sceneInterface->AddSimulatedBody(m_testSceneHandle, &staticConfig); + sceneInterface->AddSimulatedBody(m_testSceneHandle, &staticConfig); // add a rigid body - this is expect to be reported as an active actor AzPhysics::RigidBodyConfiguration rigidConfig; diff --git a/Gems/PhysX/Code/Tests/PhysXSpecificTest.cpp b/Gems/PhysX/Code/Tests/PhysXSpecificTest.cpp index 6e96db4db2..0c0eee3eb0 100644 --- a/Gems/PhysX/Code/Tests/PhysXSpecificTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXSpecificTest.cpp @@ -1126,7 +1126,7 @@ namespace PhysX return nullptr; }; - auto RemoveRigidBody = [this](AzPhysics::RigidBody*& rigidBody) + auto RemoveRigidBody = [](AzPhysics::RigidBody*& rigidBody) { auto* sceneInterface = AZ::Interface::Get(); if (rigidBody && sceneInterface) diff --git a/Gems/PhysX/Code/Tests/ShapeColliderComponentTests.cpp b/Gems/PhysX/Code/Tests/ShapeColliderComponentTests.cpp index e3c7d9acfb..cbaf4b4625 100644 --- a/Gems/PhysX/Code/Tests/ShapeColliderComponentTests.cpp +++ b/Gems/PhysX/Code/Tests/ShapeColliderComponentTests.cpp @@ -299,7 +299,6 @@ namespace PhysXEditorTests // the bounding box of the rigid body should reflect the dimensions of the cylinder set above AZ::Aabb aabb = staticBody->GetAabb(); - const float validDiameter = validRadius * 2.0f; // Check that the z positions of the bounding box match that of the cylinder EXPECT_NEAR(aabb.GetMin().GetZ(), -0.5f * validHeight, AZ::Constants::Tolerance); diff --git a/Gems/PhysX/Code/Tests/SystemComponentTest.cpp b/Gems/PhysX/Code/Tests/SystemComponentTest.cpp index cf9bbe3567..11c5e0a115 100644 --- a/Gems/PhysX/Code/Tests/SystemComponentTest.cpp +++ b/Gems/PhysX/Code/Tests/SystemComponentTest.cpp @@ -21,8 +21,6 @@ namespace PhysXEditorTests // Initialize new configs with some non-default values. const AZ::Vector3 newGravity(2.f, 5.f, 7.f); - const float newFixedTimeStep = 0.008f; - const float newMaxTimeStep = 0.034f; AzPhysics::SceneConfiguration newConfiguration; diff --git a/Gems/Prefab/PrefabBuilder/CMakeLists.txt b/Gems/Prefab/PrefabBuilder/CMakeLists.txt index c4c57155ab..450b8d0408 100644 --- a/Gems/Prefab/PrefabBuilder/CMakeLists.txt +++ b/Gems/Prefab/PrefabBuilder/CMakeLists.txt @@ -23,7 +23,7 @@ ly_add_target( ) ly_add_target( - NAME PrefabBuilder GEM_MODULE + NAME PrefabBuilder.Builders GEM_MODULE NAMESPACE Gem INCLUDE_DIRECTORIES PRIVATE @@ -36,15 +36,9 @@ ly_add_target( ) # the prefab builder only needs to be active in builders -# use the PrefabBuilder module in Clients and Servers: -ly_create_alias(NAME PrefabBuilder.Builders NAMESPACE Gem TARGETS Gem::PrefabBuilder) # we automatically add this gem, if it is present, to all our known set of builder applications: -ly_enable_gems(GEMS PrefabBuilder VARIANTS Builders TARGETS AssetProcessor AssetProcessorBatch AssetBuilder) - -# if you have a custom builder application in your project, then use ly_enable_gems() to -# add it to that application for your project, like this to make YOUR_TARGET_NAME load it automatically -# ly_enable_gems(PROJECT_NAME (YOUR_PROJECT_NAME) GEMS PrefabBuilder VARIANTS Builders TARGETS (YOUR_TARGET_NAME) ) +ly_enable_gems(GEMS PrefabBuilder) if(PAL_TRAIT_BUILD_TESTS_SUPPORTED) ly_add_target( diff --git a/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.cpp b/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.cpp index bffb64e51b..a86d7b57e2 100644 --- a/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.cpp +++ b/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.cpp @@ -132,7 +132,7 @@ namespace AZ::Prefab AZ::StringFunc::Path::ConstructFull(request.m_watchFolder.c_str(), request.m_sourceFile.c_str(), fullPath); // Load the JSON Dom - AZ::Outcome readPrefabFileResult = AzFramework::FileFunc::ReadJsonFile(AZ::IO::Path(fullPath)); + AZ::Outcome readPrefabFileResult = AZ::JsonSerializationUtils::ReadJsonFile(fullPath); if (!readPrefabFileResult.IsSuccess()) { AZ_Error( diff --git a/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.h b/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.h index 1458c8dd40..9ebdd690f5 100644 --- a/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.h +++ b/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.h @@ -14,7 +14,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/Gems/Prefab/PrefabBuilder/PrefabBuilderTests.cpp b/Gems/Prefab/PrefabBuilder/PrefabBuilderTests.cpp index 95827d4457..7d3096a6da 100644 --- a/Gems/Prefab/PrefabBuilder/PrefabBuilderTests.cpp +++ b/Gems/Prefab/PrefabBuilder/PrefabBuilderTests.cpp @@ -9,6 +9,7 @@ #include "PrefabBuilderTests.h" #include #include +#include #include #include #include @@ -56,7 +57,7 @@ namespace UnitTest // Save to a string so we can load it as a PrefabDom and so that the nested instance becomes a Source file reference ASSERT_TRUE(prefabLoaderInterface->SaveTemplateToString(parentInstance->GetTemplateId(), serializedInstance)); - AZ::Outcome readPrefabFileResult = AzFramework::FileFunc::ReadJsonFromString(serializedInstance); + AZ::Outcome readPrefabFileResult = AZ::JsonSerializationUtils::ReadJsonString(serializedInstance); ASSERT_TRUE(readPrefabFileResult.IsSuccess()); diff --git a/Gems/SceneLoggingExample/Code/Processors/ExportTrackingProcessor.cpp b/Gems/SceneLoggingExample/Code/Processors/ExportTrackingProcessor.cpp index 7b3b99c641..0f169d1265 100644 --- a/Gems/SceneLoggingExample/Code/Processors/ExportTrackingProcessor.cpp +++ b/Gems/SceneLoggingExample/Code/Processors/ExportTrackingProcessor.cpp @@ -171,7 +171,7 @@ namespace SceneLoggingExample { // While it's generally preferable to stick with either index- or iterator-based traversal, there may be times where switching between one // or the other becomes necessary. The SceneGraph provides utility functions to convert between the two approaches. - AZ::SceneAPI::Containers::SceneGraph::NodeIndex itNodeIndex = graph.ConvertToNodeIndex(it.GetHierarchyIterator()); + [[maybe_unused]] AZ::SceneAPI::Containers::SceneGraph::NodeIndex itNodeIndex = graph.ConvertToNodeIndex(it.GetHierarchyIterator()); // Nodes in the SceneGraph can be marked as endpoints. To the graph, this means that these nodes are not allowed to have children. // While not a true one-to-one mapping, endpoints often act as attributes to a node. For example, a transform can be marked as an endpoint. diff --git a/Gems/SceneLoggingExample/Code/SceneLoggingExampleModule.cpp b/Gems/SceneLoggingExample/Code/SceneLoggingExampleModule.cpp index 92c6ba5a05..9a03d7c1ce 100644 --- a/Gems/SceneLoggingExample/Code/SceneLoggingExampleModule.cpp +++ b/Gems/SceneLoggingExample/Code/SceneLoggingExampleModule.cpp @@ -42,7 +42,7 @@ namespace SceneLoggingExample } // In this example, no system components are added. You can use system components - // to set global settings for this gem from the Project Configurator. + // to set global settings for this gem. // For functionality that should always be available to the SceneAPI, we recommend // that you use a BehaviorComponent instead. AZ::ComponentTypeList GetRequiredSystemComponents() const override diff --git a/Gems/SceneProcessing/Code/CMakeLists.txt b/Gems/SceneProcessing/Code/CMakeLists.txt index 6602c1d7d6..667103b4a7 100644 --- a/Gems/SceneProcessing/Code/CMakeLists.txt +++ b/Gems/SceneProcessing/Code/CMakeLists.txt @@ -68,14 +68,10 @@ if (PAL_TRAIT_BUILD_HOST_TOOLS) ly_create_alias(NAME SceneProcessing.Builders NAMESPACE Gem TARGETS Gem::SceneProcessing.Editor) ly_create_alias(NAME SceneProcessing.Tools NAMESPACE Gem TARGETS Gem::SceneProcessing.Editor) -# SceneProcessing Gem is only used in Tools and builders and is a requirement for the Editor -ly_enable_gems(GEMS SceneProcessing VARIANTS Tools - TARGETS Editor) -ly_enable_gems(GEMS SceneProcessing VARIANTS Builders - TARGETS AssetBuilder AssetProcessor AssetProcessorBatch) + # SceneProcessing Gem is only used in Tools and builders and is a requirement for the Editor and AssetProcessor + ly_enable_gems(GEMS SceneProcessing) endif() - ################################################################################ # Tests ################################################################################ diff --git a/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp b/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp index a648859b92..ea0c3520bf 100644 --- a/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp +++ b/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp @@ -34,7 +34,7 @@ namespace AZ ActivateSceneModule(SceneProcessing::s_sceneDataModule); ActivateSceneModule(SceneProcessing::s_sceneBuilderModule); - // Defaults in case there's no config setup in the Project Configurator. + // Defaults in case there's no config setup m_softNames.push_back(aznew NodeSoftNameSetting("^.*_[Ll][Oo][Dd]1(_optimized)?$", PatternMatcher::MatchApproach::Regex, "LODMesh1", true)); m_softNames.push_back(aznew NodeSoftNameSetting("^.*_[Ll][Oo][Dd]2(_optimized)?$", PatternMatcher::MatchApproach::Regex, "LODMesh2", true)); m_softNames.push_back(aznew NodeSoftNameSetting("^.*_[Ll][Oo][Dd]3(_optimized)?$", PatternMatcher::MatchApproach::Regex, "LODMesh3", true)); diff --git a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.cpp b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.cpp index 524b79b012..430733f3a1 100644 --- a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.cpp +++ b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.cpp @@ -73,6 +73,13 @@ namespace SceneBuilder required.emplace_back(AZ_CRC_CE("AssetImportRequestHandler")); } + void BuilderPluginComponent::GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + // Any components that can modify the analysis fingerprint via SceneBuilderDependencyRequests::AddFingerprintInfo must be activated first, + // so they contribute to the fingerprint calculated in BuilderPluginComponent::Activate(). + services.emplace_back(AZ_CRC_CE("FingerprintModification")); + } + void BuilderPluginComponent::Reflect(AZ::ReflectContext* context) { AZ::SerializeContext* serializeContext = azrtti_cast(context); diff --git a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.h b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.h index b4eee64bc6..0bfe118a4c 100644 --- a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.h +++ b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.h @@ -29,6 +29,7 @@ namespace SceneBuilder void Deactivate() override; static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required); + static void GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& services); private: SceneBuilderWorker m_sceneBuilder; diff --git a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.cpp b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.cpp index b4ae490e2c..c1a1252c6b 100644 --- a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.cpp +++ b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.cpp @@ -67,6 +67,8 @@ namespace SceneBuilder context->EnumerateDerived(callback, azrtti_typeid(), azrtti_typeid()); context->EnumerateDerived(callback, azrtti_typeid(), azrtti_typeid()); } + + AZ::SceneAPI::SceneBuilderDependencyBus::Broadcast(&AZ::SceneAPI::SceneBuilderDependencyRequests::AddFingerprintInfo, fragments); for (const AZStd::string& element : fragments) { diff --git a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorkerUtility.cpp b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorkerUtility.cpp index af5e49bdeb..0853789b19 100644 --- a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorkerUtility.cpp +++ b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorkerUtility.cpp @@ -486,7 +486,6 @@ namespace ScriptCanvasBuilder AZ::Outcome ProcessTranslationJob(ProcessTranslationJobInput& input) { - const bool saveRawLua{ true }; auto sourceGraph = PrepareSourceGraph(input.buildEntity); auto version = sourceGraph->GetVersion(); @@ -651,11 +650,6 @@ namespace ScriptCanvasBuilder for (const auto& assetDependency : runtimeData.m_requiredAssets) { - auto filterScripts = [](const AZ::Data::Asset& asset) - { - return asset.GetType() != azrtti_typeid(); - }; - if (AZ::Data::AssetManager::Instance().GetAsset(assetDependency.GetId(), assetDependency.GetType(), AZ::Data::AssetLoadBehavior::PreLoad)) { jobProduct.m_dependencies.push_back({ assetDependency.GetId(), {} }); diff --git a/Gems/ScriptCanvas/Code/CMakeLists.txt b/Gems/ScriptCanvas/Code/CMakeLists.txt index 57d7a4a476..c126d343ed 100644 --- a/Gems/ScriptCanvas/Code/CMakeLists.txt +++ b/Gems/ScriptCanvas/Code/CMakeLists.txt @@ -47,8 +47,7 @@ ly_add_target( ) # the script canvas debugger is an optional gem module -# To Enable it: ly_enable_gems( ... TARGETS xxxyyzzz GEMS ScriptCanvasDebugger ...) -# in any particular target. +# To Enable it, associate it with a project ly_create_alias(NAME ScriptCanvasDebugger.Builders NAMESPACE Gem TARGETS Gem::ScriptCanvasDebugger) ly_create_alias(NAME ScriptCanvasDebugger.Tools NAMESPACE Gem TARGETS Gem::ScriptCanvasDebugger) ly_create_alias(NAME ScriptCanvasDebugger.Clients NAMESPACE Gem TARGETS Gem::ScriptCanvasDebugger) diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAsset.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAsset.cpp index adada5791e..18736db12c 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAsset.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAsset.cpp @@ -114,11 +114,13 @@ namespace ScriptCanvasEditor ScriptCanvas::ScriptCanvasData& ScriptCanvasAsset::GetScriptCanvasData() { + AZ_Assert(m_data != nullptr, "ScriptCanvasData not initialized, it must be created on construction"); return *m_data; } const ScriptCanvas::ScriptCanvasData& ScriptCanvasAsset::GetScriptCanvasData() const { + AZ_Assert(m_data != nullptr, "ScriptCanvasData not initialized, it must be created on construction"); return *m_data; } } diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHandler.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHandler.cpp index 55da572939..6f86b93dda 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHandler.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHandler.cpp @@ -6,29 +6,47 @@ * */ - -#include -#include - -#include -#include -#include -#include -#include -#include - -#include - -#include -#include -#include -#include #include #include +#include +#include +#include +#include +#include +#include +#include #include - #include #include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace ScriptCanvasAssetHandlerCpp +{ + using namespace ScriptCanvas; + + void CollectNodes(const GraphData::NodeContainer& container, SerializationListeners& listeners) + { + for (auto& nodeEntity : container) + { + if (nodeEntity) + { + if (auto listener = azrtti_cast(AZ::EntityUtils::FindFirstDerivedComponent(nodeEntity))) + { + listeners.push_back(listener); + } + } + } + } +} namespace ScriptCanvasEditor { @@ -75,26 +93,84 @@ namespace ScriptCanvasEditor } } - - AZ::Data::AssetHandler::LoadResult ScriptCanvasAssetHandler::LoadAssetData( - const AZ::Data::Asset& asset, - AZStd::shared_ptr stream, - const AZ::Data::AssetFilterCB& assetLoadFilterCB) + AZ::Data::AssetHandler::LoadResult ScriptCanvasAssetHandler::LoadAssetData + ( const AZ::Data::Asset& assetTarget + , AZStd::shared_ptr streamSource + , [[maybe_unused]] const AZ::Data::AssetFilterCB& assetLoadFilterCB) { - auto* scriptCanvasAsset = asset.GetAs(); - AZ_Assert(scriptCanvasAsset, "This should be an scene slice asset, as this is the only type we process!"); - if (scriptCanvasAsset && m_serializeContext) + namespace JSRU = AZ::JsonSerializationUtils; + using namespace ScriptCanvas; + + auto* scriptCanvasAssetTarget = assetTarget.GetAs(); + AZ_Assert(scriptCanvasAssetTarget, "This should be a ScriptCanvasAsset, as this is the only type we process!"); + + if (m_serializeContext + && streamSource + && scriptCanvasAssetTarget) { - stream->Seek(0U, AZ::IO::GenericStream::ST_SEEK_BEGIN); - // tolerate unknown classes in the editor. Let the asset processor warn about bad nodes... - bool loadSuccess = AZ::Utils::LoadObjectFromStreamInPlace(*stream, scriptCanvasAsset->GetScriptCanvasData(), m_serializeContext, AZ::ObjectStream::FilterDescriptor(assetLoadFilterCB, AZ::ObjectStream::FILTERFLAG_IGNORE_UNKNOWN_CLASSES)); - return loadSuccess ? AZ::Data::AssetHandler::LoadResult::LoadComplete : AZ::Data::AssetHandler::LoadResult::Error; + streamSource->Seek(0U, AZ::IO::GenericStream::ST_SEEK_BEGIN); + auto& scriptCanvasDataTarget = scriptCanvasAssetTarget->GetScriptCanvasData(); + AZStd::vector byteBuffer; + byteBuffer.resize_no_construct(streamSource->GetLength()); + AZ::IO::ByteContainerStream byteStreamSource(&byteBuffer); + const size_t bytesRead = streamSource->Read(byteBuffer.size(), byteBuffer.data()); + scriptCanvasDataTarget.m_scriptCanvasEntity.reset(nullptr); + + if (bytesRead == streamSource->GetLength()) + { + byteStreamSource.Seek(0U, AZ::IO::GenericStream::ST_SEEK_BEGIN); + AZ::JsonDeserializerSettings settings; + settings.m_serializeContext = m_serializeContext; + settings.m_metadata.Create(); + // attempt JSON deserialization... + if (JSRU::LoadObjectFromStreamByType + ( &scriptCanvasDataTarget + , azrtti_typeid() + , byteStreamSource + , &settings).IsSuccess()) + { + if (auto graphData = scriptCanvasAssetTarget->GetScriptCanvasGraph() + ? scriptCanvasAssetTarget->GetScriptCanvasGraph()->GetGraphData() + : nullptr) + { + auto listeners = settings.m_metadata.Find(); + AZ_Assert(listeners, "Failed to create SerializationListeners"); + + ScriptCanvasAssetHandlerCpp::CollectNodes(graphData->m_nodes, *listeners); + + for (auto listener : *listeners) + { + listener->OnDeserialize(); + } + + return AZ::Data::AssetHandler::LoadResult::LoadComplete; + } + else + { + AZ_Warning("ScriptCanvas", false, "ScriptCanvasAssetHandler::LoadAssetData failed to load graph data from JOSON"); + } + } +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// + else + {// ...if there is a failure, check if it is saved in the old format + byteStreamSource.Seek(0U, AZ::IO::GenericStream::ST_SEEK_BEGIN); + // tolerate unknown classes in the editor. Let the asset processor warn about bad nodes... + if (AZ::Utils::LoadObjectFromStreamInPlace + (byteStreamSource + , scriptCanvasDataTarget + , m_serializeContext + , AZ::ObjectStream::FilterDescriptor(assetLoadFilterCB, AZ::ObjectStream::FILTERFLAG_IGNORE_UNKNOWN_CLASSES))) + { + return AZ::Data::AssetHandler::LoadResult::LoadComplete; + } + } +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) + } } + return AZ::Data::AssetHandler::LoadResult::Error; - } - bool ScriptCanvasAssetHandler::SaveAssetData(const AZ::Data::Asset& asset, AZ::IO::GenericStream* stream) { return SaveAssetData(asset.GetAs(), stream); @@ -105,20 +181,42 @@ namespace ScriptCanvasEditor return SaveAssetData(assetData, stream, AZ::DataStream::ST_XML); } - bool ScriptCanvasAssetHandler::SaveAssetData(const ScriptCanvasAsset* assetData, AZ::IO::GenericStream* stream, AZ::DataStream::StreamType streamType) + bool ScriptCanvasAssetHandler::SaveAssetData + ( const ScriptCanvasAsset* assetData + , AZ::IO::GenericStream* stream + , [[maybe_unused]] AZ::DataStream::StreamType streamType) { - if (assetData && m_serializeContext) - { - AZStd::vector byteBuffer; - AZ::IO::ByteContainerStream byteStream(&byteBuffer); - AZ::ObjectStream* objStream = AZ::ObjectStream::Create(&byteStream, *m_serializeContext, streamType); - bool scriptCanvasAssetSaved = objStream->WriteClass(&assetData->GetScriptCanvasData()); - objStream->Finalize(); - scriptCanvasAssetSaved = stream->Write(byteBuffer.size(), byteBuffer.data()) == byteBuffer.size() && scriptCanvasAssetSaved; - return scriptCanvasAssetSaved; - } + namespace JSRU = AZ::JsonSerializationUtils; + using namespace ScriptCanvas; - return false; + if (m_serializeContext + && stream + && assetData + && assetData->GetScriptCanvasGraph() + && assetData->GetScriptCanvasGraph()->GetGraphData()) + { + auto graphData = assetData->GetScriptCanvasGraph()->GetGraphData(); + AZ::JsonSerializerSettings settings; + settings.m_metadata.Create(); + auto listeners = settings.m_metadata.Find(); + AZ_Assert(listeners, "Failed to create SerializationListeners"); + ScriptCanvasAssetHandlerCpp::CollectNodes(graphData->m_nodes, *listeners); + settings.m_keepDefaults = false; + settings.m_serializeContext = m_serializeContext; + + for (auto listener : *listeners) + { + listener->OnSerialize(); + } + + return JSRU::SaveObjectToStream(&assetData->GetScriptCanvasData(), *stream, nullptr, &settings).IsSuccess(); + } + else + { + AZ_Error("ScriptCanvas", false, "Saving ScriptCavas assets in the handler requires a valid IO stream, " + "asset pointer, and serialize context"); + return false; + } } void ScriptCanvasAssetHandler::DestroyAsset(AZ::Data::AssetPtr ptr) @@ -126,17 +224,11 @@ namespace ScriptCanvasEditor delete ptr; } - //========================================================================= - // GetSerializeContext - //=========================================================================. AZ::SerializeContext* ScriptCanvasAssetHandler::GetSerializeContext() const { return m_serializeContext; } - //========================================================================= - // SetSerializeContext - //=========================================================================. void ScriptCanvasAssetHandler::SetSerializeContext(AZ::SerializeContext* context) { m_serializeContext = context; @@ -147,22 +239,17 @@ namespace ScriptCanvasEditor EBUS_EVENT_RESULT(m_serializeContext, AZ::ComponentApplicationBus, GetSerializeContext); if (!m_serializeContext) { - AZ_Error("Script Canvas", false, "ScriptCanvasAssetHandler: No serialize context provided! We will not be able to process Graph Asset type"); + AZ_Error("Script Canvas", false, "ScriptCanvasAssetHandler: No serialize context provided! " + "We will not be able to process Graph Asset type"); } } } - //========================================================================= - // GetHandledAssetTypes - //=========================================================================. void ScriptCanvasAssetHandler::GetHandledAssetTypes(AZStd::vector& assetTypes) { assetTypes.push_back(GetAssetType()); } - //========================================================================= - // GetAssetType - //=========================================================================. AZ::Data::AssetType ScriptCanvasAssetHandler::GetAssetType() const { return ScriptCanvasAssetHandler::GetAssetTypeStatic(); @@ -178,38 +265,24 @@ namespace ScriptCanvasEditor return azrtti_typeid(); } - //========================================================================= - // GetAssetTypeExtensions - //=========================================================================. void ScriptCanvasAssetHandler::GetAssetTypeExtensions(AZStd::vector& extensions) { ScriptCanvasAsset::Description description; extensions.push_back(description.GetExtensionImpl()); } - //========================================================================= - // GetComponentTypeId - //=========================================================================. AZ::Uuid ScriptCanvasAssetHandler::GetComponentTypeId() const { return azrtti_typeid(); } - //========================================================================= - // GetGroup - //=========================================================================. const char* ScriptCanvasAssetHandler::GetGroup() const { return ScriptCanvas::AssetDescription::GetGroup(); } - //========================================================================= - // GetBrowserIcon - //=========================================================================. const char* ScriptCanvasAssetHandler::GetBrowserIcon() const { return ScriptCanvas::AssetDescription::GetIconPath(); } - - } diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHelpers.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHelpers.cpp index 554bb31b25..884fa2d5c9 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHelpers.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHelpers.cpp @@ -41,7 +41,6 @@ namespace ScriptCanvasEditor bool sourceInfoFound{}; AzToolsFramework::AssetSystemRequestBus::BroadcastResult(sourceInfoFound, &AzToolsFramework::AssetSystemRequestBus::Events::GetSourceInfoBySourcePath, fullPath.data(), catalogAssetInfo, watchFolder); - auto saveAssetId = sourceInfoFound ? catalogAssetInfo.m_assetId : AZ::Data::AssetId(AZ::Uuid::CreateRandom()); if (sourceInfoFound) { outAssetInfo = catalogAssetInfo; diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHolder.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHolder.cpp index 5c62844e9f..a42a9bad48 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHolder.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHolder.cpp @@ -67,7 +67,7 @@ namespace ScriptCanvasEditor { AssetTrackerNotificationBus::Handler::BusConnect(m_scriptCanvasAsset.GetId()); - Callbacks::OnAssetReadyCallback onAssetReady = [this](ScriptCanvasMemoryAsset& asset) + Callbacks::OnAssetReadyCallback onAssetReady = [](ScriptCanvasMemoryAsset& asset) { AssetHelpers::DumpAssetInfo(asset.GetFileAssetId(), "ScriptCanvasAssetHolder::Init"); }; diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasMemoryAsset.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasMemoryAsset.cpp index e7dc2343f2..165007b79b 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasMemoryAsset.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasMemoryAsset.cpp @@ -374,7 +374,6 @@ namespace ScriptCanvasEditor } else { - AZ::Data::AssetId assetId = asset.GetId(); Internal::MemoryAssetSystemNotificationBus::Broadcast(&Internal::MemoryAssetSystemNotifications::OnAssetReloaded, this); } } @@ -392,7 +391,6 @@ namespace ScriptCanvasEditor } else { - AZ::Data::AssetId assetId = asset.GetId(); Internal::MemoryAssetSystemNotificationBus::Broadcast(&Internal::MemoryAssetSystemNotifications::OnAssetError, this); } } @@ -505,7 +503,7 @@ namespace ScriptCanvasEditor m_pendingSave.emplace_back(normPath); m_assetSaveFinalizer.Reset(); - m_assetSaveFinalizer.Start(this, fileInfo, saveInfo, onSaveCallback, AssetSaveFinalizer::OnCompleteHandler([this, saveInfo](AZ::Data::AssetId /*assetId*/) + m_assetSaveFinalizer.Start(this, fileInfo, saveInfo, onSaveCallback, AssetSaveFinalizer::OnCompleteHandler([](AZ::Data::AssetId /*assetId*/) { })); } diff --git a/Gems/ScriptCanvas/Code/Editor/Components/EditorGraph.cpp b/Gems/ScriptCanvas/Code/Editor/Components/EditorGraph.cpp index 325c348d9c..1899951638 100644 --- a/Gems/ScriptCanvas/Code/Editor/Components/EditorGraph.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Components/EditorGraph.cpp @@ -1034,16 +1034,9 @@ namespace ScriptCanvasEditor if (connection) { - ScriptCanvas::Endpoint scSourceEndpoint = connection->GetSourceEndpoint(); - GraphCanvas::Endpoint sourceEndpoint = ConvertToGraphCanvasEndpoint(scSourceEndpoint); - - ScriptCanvas::Endpoint scTargetEndpoint = connection->GetTargetEndpoint(); - GraphCanvas::Endpoint targetEndpoint = ConvertToGraphCanvasEndpoint(scTargetEndpoint); - ScriptCanvas::GraphNotificationBus::Event(GetScriptCanvasId(), &ScriptCanvas::GraphNotifications::OnDisonnectionComplete, connectionId); DisconnectById(scConnectionId); - } } @@ -2666,8 +2659,6 @@ namespace ScriptCanvasEditor AZStd::vector< GraphCanvas::SlotId > slotIds; GraphCanvas::NodeRequestBus::EventResult(slotIds, nodeId, &GraphCanvas::NodeRequests::GetSlotIds); - GraphCanvas::GraphId graphCanvasGraphId = GetGraphCanvasGraphId(); - for (const GraphCanvas::SlotId& slotId : slotIds) { GraphCanvas::SlotType slotType = GraphCanvas::SlotTypes::Invalid; diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/GraphUpgrade.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/GraphUpgrade.h index bf692554e5..df7fa0535f 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/GraphUpgrade.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/GraphUpgrade.h @@ -88,13 +88,13 @@ namespace ScriptCanvasEditor void Enter() override { - //Log("ENTER >> %s", GetName()); + Log("ENTER >> %s", GetName()); OnEnter(); } ExitStatus Exit() override { - //Log("EXIT << %s", GetName()); + Log("EXIT << %s", GetName()); return OnExit(); } diff --git a/Gems/ScriptCanvas/Code/Editor/Model/UnitTestBrowserFilterModel.cpp b/Gems/ScriptCanvas/Code/Editor/Model/UnitTestBrowserFilterModel.cpp index ab35ec5049..e3fe865e94 100644 --- a/Gems/ScriptCanvas/Code/Editor/Model/UnitTestBrowserFilterModel.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Model/UnitTestBrowserFilterModel.cpp @@ -28,7 +28,7 @@ namespace ScriptCanvasEditor { setDynamicSortFilter(true); - m_showColumn.insert(aznumeric_cast(AssetBrowserEntry::Column::DisplayName)); + m_shownColumns.insert(aznumeric_cast(AssetBrowserEntry::Column::DisplayName)); UnitTestWidgetNotificationBus::Handler::BusConnect(); diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeCreateUtils.cpp b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeCreateUtils.cpp index 3bcd940a01..c1b557c9c4 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeCreateUtils.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeCreateUtils.cpp @@ -408,7 +408,7 @@ namespace ScriptCanvasEditor::Nodes AZ::BehaviorAzEventDescription behaviorAzEventDesc; AZ::AttributeReader azEventDescAttributeReader(nullptr, azEventDescAttribute); azEventDescAttributeReader.Read(behaviorAzEventDesc); - if(behaviorAzEventDesc.m_eventName.empty()) + if (behaviorAzEventDesc.m_eventName.empty()) { AZ_Error("NodeUtils", false, "Cannot create an AzEvent node with empty event name") return {}; diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp index b9e96938af..8d616f0a68 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp @@ -744,7 +744,6 @@ namespace ScriptCanvasEditor::Nodes return graphCanvasNodeId; } - auto busId = senderNode->GetBusSlotId(); for (const auto& slot : senderNode->GetSlots()) { if (slot.IsVisible()) diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeUtils.cpp b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeUtils.cpp index 000dafed88..3c5e74cbeb 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeUtils.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeUtils.cpp @@ -14,27 +14,6 @@ #include -namespace -{ - ScriptCanvas::ConnectionType ToScriptCanvasConnectionType(GraphCanvas::ConnectionType connectionType) - { - ScriptCanvas::ConnectionType scriptCanvasConnectionType = ScriptCanvas::ConnectionType::Unknown; - switch (connectionType) - { - case GraphCanvas::CT_Input: - scriptCanvasConnectionType = ScriptCanvas::ConnectionType::Input; - break; - case GraphCanvas::CT_Output: - scriptCanvasConnectionType = ScriptCanvas::ConnectionType::Output; - break; - default: - break; - } - - return scriptCanvasConnectionType; - } -} - namespace ScriptCanvasEditor::Nodes { void CopyTranslationKeyedNameToDatumLabel(const AZ::EntityId& graphCanvasNodeId, diff --git a/Gems/ScriptCanvas/Code/Editor/SystemComponent.cpp b/Gems/ScriptCanvas/Code/Editor/SystemComponent.cpp index b80bba75c2..4b60fd357c 100644 --- a/Gems/ScriptCanvas/Code/Editor/SystemComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/SystemComponent.cpp @@ -332,7 +332,7 @@ namespace ScriptCanvasEditor if (isScriptCanvasAsset) { - auto scriptCanvasEditorCallback = [this]([[maybe_unused]] const char* fullSourceFileNameInCall, const AZ::Uuid& sourceUUIDInCall) + auto scriptCanvasEditorCallback = []([[maybe_unused]] const char* fullSourceFileNameInCall, const AZ::Uuid& sourceUUIDInCall) { AZ::Outcome openOutcome = AZ::Failure(AZStd::string()); const SourceAssetBrowserEntry* fullDetails = SourceAssetBrowserEntry::GetSourceByUuid(sourceUUIDInCall); diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/PivotTreeWidget.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/PivotTreeWidget.cpp index 7a84fc3965..a34b42bed8 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/PivotTreeWidget.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/PivotTreeWidget.cpp @@ -14,7 +14,7 @@ // Disable warnings in moc code AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") #include -AZ_POP_DISABLE_OVERRIDE_WARNING +AZ_POP_DISABLE_WARNING namespace ScriptCanvasEditor { diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp index 0949daa458..390dbaf0fb 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp @@ -87,16 +87,6 @@ namespace return AZ::FindAttribute(attribute, method->m_attributes) != nullptr; // warning C4800: 'AZ::Attribute *': forcing value to bool 'true' or 'false' (performance warning) } - bool HasAttribute(const AZ::BehaviorClass* behaviorClass, AZ::Crc32 attributeCrc) - { - AZ::Attribute* attribute = AZ::FindAttribute(attributeCrc, behaviorClass->m_attributes); - if (attribute) - { - return true; - } - return false; - } - // Checks for and returns the Category attribute from an AZ::AttributeArray AZStd::string GetCategoryPath(const AZ::AttributeArray& attributes, const AZ::BehaviorContext& behaviorContext) { @@ -150,21 +140,10 @@ namespace // If the reflected method returns an AZ::Event, reflect it to the SerializeContext if (AZ::MethodReturnsAzEventByReferenceOrPointer(method)) { - AZ::SerializeContext* serializeContext{}; - AZ::ComponentApplicationBus::BroadcastResult(serializeContext, &AZ::ComponentApplicationRequests::GetSerializeContext); const AZ::BehaviorParameter* resultParameter = method.GetResult(); - AZ::SerializeContext::ClassData classData; - classData.m_name = resultParameter->m_name; - classData.m_typeId = resultParameter->m_typeId; - classData.m_azRtti = resultParameter->m_azRtti; - - auto EventPlaceholderAnyCreator = [](AZ::SerializeContext*) -> AZStd::any - { - return AZStd::make_any(); - }; - serializeContext->RegisterType(resultParameter->m_typeId, AZStd::move(classData), EventPlaceholderAnyCreator); - + ScriptCanvas::ReflectEventTypeOnDemand(resultParameter->m_typeId, resultParameter->m_name, resultParameter->m_azRtti); } + nodePaletteModel.RegisterClassNode(categoryPath, behaviorClass ? behaviorClass->m_name : "", name, &method, &behaviorContext, propertyStatus, isOverloaded); } @@ -187,19 +166,8 @@ namespace // If the reflected method returns an AZ::Event, reflect it to the SerializeContext if (AZ::MethodReturnsAzEventByReferenceOrPointer(behaviorMethod)) { - AZ::SerializeContext* serializeContext{}; - AZ::ComponentApplicationBus::BroadcastResult(serializeContext, &AZ::ComponentApplicationRequests::GetSerializeContext); const AZ::BehaviorParameter* resultParameter = behaviorMethod.GetResult(); - AZ::SerializeContext::ClassData classData; - classData.m_name = resultParameter->m_name; - classData.m_typeId = resultParameter->m_typeId; - classData.m_azRtti = resultParameter->m_azRtti; - - auto EventPlaceholderAnyCreator = [](AZ::SerializeContext*) -> AZStd::any - { - return AZStd::make_any(); - }; - serializeContext->RegisterType(resultParameter->m_typeId, AZStd::move(classData), EventPlaceholderAnyCreator); + ScriptCanvas::ReflectEventTypeOnDemand(resultParameter->m_typeId, resultParameter->m_name, resultParameter->m_azRtti); } nodePaletteModel.RegisterMethodNode(behaviorContext, behaviorMethod); diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/NodeUsageTreeItem.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/NodeUsageTreeItem.cpp index ddcdaad161..4dce7ce384 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/NodeUsageTreeItem.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/NodeUsageTreeItem.cpp @@ -152,8 +152,6 @@ namespace ScriptCanvasEditor m_assetType = assetType; - const bool loadBlocking = false; - auto onAssetReady = [](ScriptCanvasMemoryAsset&) {}; AssetTrackerRequestBus::Broadcast(&AssetTrackerRequests::Load, m_assetId, m_assetType, onAssetReady); } diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidget.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidget.cpp index 6d29c01ff4..ded0130001 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidget.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidget.cpp @@ -734,7 +734,7 @@ namespace ScriptCanvasEditor { ui->statusTableView->clearSelection(); - if (auto model = GetActiveData().second->GetModel()) + if (auto model = GetActiveData().second ? GetActiveData().second->GetModel() : nullptr) { model->Clear(); model->RunValidation(m_activeGraphIds.scriptCanvasId); @@ -810,7 +810,6 @@ namespace ScriptCanvasEditor const ScriptCanvas::ValidationEvent* validationEvent = model->FindItemForIndex(m_proxyModel->mapToSource(modelIndex)); AZ::EntityId graphCanvasMemberId; - QRectF focusArea; if (const ScriptCanvas::FocusOnEntityEffect* focusOnEntityEffect = azrtti_cast(validationEvent)) { diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/SlotTypeSelectorWidget.ui b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/SlotTypeSelectorWidget.ui index 0ba609717b..aa6d3356ec 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/SlotTypeSelectorWidget.ui +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/SlotTypeSelectorWidget.ui @@ -6,110 +6,122 @@ 0 0 - 278 - 316 + 294 + 265 - - - 0 - 0 - - Pick slot name/type false - - - - 0 - 0 - 278 - 278 - - - - - - - 0 - - - 10 - - - 0 - - - 10 - - - 30 - - - - - - - - Search... - - - - - - - true - - - QAbstractItemView::SingleSelection - - - QAbstractItemView::SelectRows - - - false - - - false - - - - - - - Qt::Horizontal - - - - - - - - - Type the name for your slot here... - - - - - - - - - Qt::StrongFocus - - - QDialogButtonBox::Cancel|QDialogButtonBox::Ok - - - - - - - + + + + + 0 + + + QLayout::SetMaximumSize + + + 10 + + + 0 + + + 10 + + + 0 + + + + + Slot Name + + + + + + + + 0 + 0 + + + + Type the name for your slot here... + + + + + + + Slot Type + + + + + + + + 0 + 0 + + + + + + + Search... + + + + + + + true + + + QAbstractItemView::SingleSelection + + + QAbstractItemView::SelectRows + + + false + + + false + + + + + + + Qt::Horizontal + + + + + + + + + + Qt::StrongFocus + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + @@ -124,7 +136,7 @@ - + buttonBox accepted() diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariableDockWidget.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariableDockWidget.cpp index 60bc7ba0d2..eb2f92f42c 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariableDockWidget.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariableDockWidget.cpp @@ -258,7 +258,7 @@ namespace ScriptCanvasEditor QObject::connect(pasteAction, &QAction::triggered, - [dockWidget, varId](bool) + [dockWidget](bool) { GraphVariablesTableView::HandleVariablePaste(dockWidget->GetActiveScriptCanvasId()); }); diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindow.cpp b/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindow.cpp index 87bf4cf23c..fbe03ffc0a 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindow.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindow.cpp @@ -15,7 +15,6 @@ #include #include -#include #include #include #include @@ -91,6 +90,7 @@ #include #include +#include #include #include @@ -323,14 +323,13 @@ namespace ScriptCanvasEditor m_mainWindow->OnWorkspaceRestoreStart(); } - AZ::Data::AssetId focusedAsset = workspace->GetFocusedAssetId(); m_queuedAssetFocus = workspace->GetFocusedAssetId(); for (const auto& assetSaveData : workspace->GetActiveAssetData()) { AssetTrackerNotificationBus::MultiHandler::BusConnect(assetSaveData.m_assetId); - Callbacks::OnAssetReadyCallback onAssetReady = [this, focusedAsset, assetSaveData](ScriptCanvasMemoryAsset& asset) + Callbacks::OnAssetReadyCallback onAssetReady = [this, assetSaveData](ScriptCanvasMemoryAsset& asset) { // If we get an error callback. Just remove it from out active lists. if (asset.IsSourceInError()) @@ -1020,7 +1019,7 @@ namespace ScriptCanvasEditor if (shouldSaveResults == UnsavedChangesOptions::SAVE) { - Callbacks::OnSave saveCB = [this, assetId](bool isSuccessful, AZ::Data::AssetPtr, AZ::Data::AssetId) + Callbacks::OnSave saveCB = [this](bool isSuccessful, AZ::Data::AssetPtr, AZ::Data::AssetId) { if (isSuccessful) { @@ -1610,7 +1609,7 @@ namespace ScriptCanvasEditor return; } - Callbacks::OnAssetReadyCallback onAssetReady = [this, fullPath, assetInfo](ScriptCanvasMemoryAsset&) + Callbacks::OnAssetReadyCallback onAssetReady = [this, assetInfo](ScriptCanvasMemoryAsset&) { ScriptCanvasMemoryAsset::pointer memoryAsset; AssetTrackerRequestBus::BroadcastResult(memoryAsset, &AssetTrackerRequests::GetAsset, assetInfo.m_assetId); @@ -1869,7 +1868,7 @@ namespace ScriptCanvasEditor while (!isValidFileName) { - selectedFile = QFileDialog::getSaveFileName(this, tr("Save As..."), suggestedFilename.data(), filter); + selectedFile = AzQtComponents::FileDialog::GetSaveFileName(this, tr("Save As..."), suggestedFilename.data(), filter); // If the selected file is empty that means we just cancelled. // So we want to break out. @@ -2527,7 +2526,6 @@ namespace ScriptCanvasEditor void MainWindow::UpdateWorkspaceStatus(const ScriptCanvasMemoryAsset& memoryAsset) { AZ::Data::AssetId fileAssetId = memoryAsset.GetFileAssetId(); - AZ::Data::AssetId memoryAssetId = memoryAsset.GetId(); size_t eraseCount = m_loadingAssets.erase(fileAssetId); diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeTool.cpp b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeTool.cpp index e069c509ce..3d42fdad42 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeTool.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeTool.cpp @@ -437,7 +437,7 @@ namespace ScriptCanvasEditor auto streamer = AZ::Interface::Get(); AZ::IO::FileRequestPtr flushRequest = streamer->FlushCache(assetToUpgrade.m_relativePath); - streamer->SetRequestCompleteCallback(flushRequest, [this]([[maybe_unused]] AZ::IO::FileRequestHandle request) + streamer->SetRequestCompleteCallback(flushRequest, []([[maybe_unused]] AZ::IO::FileRequestHandle request) { }); streamer->QueueRequest(flushRequest); diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.cpp b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.cpp index b9aff660f2..738cfd8d22 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.cpp @@ -76,6 +76,21 @@ namespace ScriptCanvasEditor } + void VersionExplorer::Log(const char* format, ...) + { + if (m_ui->verbose->isChecked()) + { + char sBuffer[1024]; + va_list ArgList; + va_start(ArgList, format); + azvsnprintf(sBuffer, sizeof(sBuffer), format, ArgList); + sBuffer[sizeof(sBuffer) - 1] = '\0'; + va_end(ArgList); + + AZ_TracePrintf("Script Canvas", "%s\n", sBuffer); + } + } + void VersionExplorer::OnClose() { reject(); @@ -96,17 +111,27 @@ namespace ScriptCanvasEditor { m_inProgress = true; AZ::Data::AssetInfo& assetToUpgrade = *m_inspectingAsset; - m_currentAsset = AZ::Data::AssetManager::Instance().GetAsset(assetToUpgrade.m_assetId, assetToUpgrade.m_assetType, AZ::Data::AssetLoadBehavior::PreLoad); + Log("SystemTick::ProcessState::Scan: %s pre-blocking load hint", m_currentAsset.GetHint().c_str()); m_currentAsset.BlockUntilLoadComplete(); if (m_currentAsset.IsReady()) { // The asset is ready, grab its info m_inProgress = true; - InspectAsset(m_currentAsset); + InspectAsset(m_currentAsset, assetToUpgrade); } + else + { + m_ui->tableWidget->insertRow(static_cast(m_inspectedAssets)); + QTableWidgetItem* rowName = new QTableWidgetItem + ( tr(AZStd::string::format("Error: %s", assetToUpgrade.m_relativePath.c_str()).c_str())); - m_ui->spinner->SetText(QObject::tr("%1").arg(m_currentAsset.GetHint().c_str())); + m_ui->tableWidget->setItem(static_cast(m_inspectedAssets), static_cast(ColumnAsset), rowName); + Log("SystemTick::ProcessState::Scan: %s post-blocking load, problem loading asset", assetToUpgrade.m_relativePath.c_str()); + ++m_currentAssetIndex; + ++m_failedAssets; + ScanComplete(m_currentAsset); + } } break; @@ -148,7 +173,6 @@ namespace ScriptCanvasEditor AZ::Data::AssetManager::Instance().DispatchEvents(); AZ::SystemTickBus::ExecuteQueuedEvents(); - } // Backup @@ -297,10 +321,7 @@ namespace ScriptCanvasEditor if (graphComponent) { - if (!graphComponent->UpgradeGraph(asset)) - { - // The upgrade was skipped due to nothing to update (though if we're here, we identified that something was out of date) - } + graphComponent->UpgradeGraph(asset); } return scriptCanvasEntity; @@ -581,13 +602,10 @@ namespace ScriptCanvasEditor { m_assetsToUpgrade.clear(); m_assetsToInspect.clear(); - m_ui->tableWidget->setRowCount(0); m_inspectedAssets = 0; - IUpgradeRequests* upgradeRequests = AZ::Interface::Get(); m_assetsToInspect = upgradeRequests->GetAssetsToUpgrade(); - DoScan(); } @@ -596,9 +614,14 @@ namespace ScriptCanvasEditor AZ::SystemTickBus::Handler::BusConnect(); m_state = ProcessState::Scan; + AZ::Debug::TraceMessageBus::Handler::BusConnect(); if (!m_assetsToInspect.empty()) { + m_discoveredAssets = m_assetsToInspect.size(); + m_failedAssets = 0; + m_inspectedAssets = 0; + m_ui->progressFrame->setVisible(true); m_ui->progressBar->setRange(0, aznumeric_cast(m_assetsToInspect.size())); m_ui->progressBar->setValue(0); @@ -622,14 +645,17 @@ namespace ScriptCanvasEditor DoScan(); } - void VersionExplorer::InspectAsset(AZ::Data::Asset& asset) + void VersionExplorer::InspectAsset(AZ::Data::Asset& asset, AZ::Data::AssetInfo& assetInfo) { + Log("InspectAsset: %s", asset.GetHint().c_str()); + AZ::Entity* scriptCanvasEntity = nullptr; if (asset.GetType() == azrtti_typeid()) { ScriptCanvasAsset* scriptCanvasAsset = asset.GetAs(); if (!scriptCanvasAsset) { + Log("InspectAsset: %s, AsestData failed to return ScriptCanvasAsset", asset.GetHint().c_str()); return; } @@ -640,14 +666,14 @@ namespace ScriptCanvasEditor auto graphComponent = scriptCanvasEntity->FindComponent(); AZ_Assert(graphComponent, "The Script Canvas entity must have a Graph component"); - bool onlyShowOutdatedGraphs = m_ui->onlyShowOutdated->isChecked(); + bool forceUpgrade = m_ui->forceUpgrade->isChecked(); - if (onlyShowOutdatedGraphs && graphComponent->GetVersion().IsLatest()) + if (!forceUpgrade && onlyShowOutdatedGraphs && graphComponent->GetVersion().IsLatest()) { ++m_currentAssetIndex; ScanComplete(asset); - + Log("InspectAsset: %s, is at latest", asset.GetHint().c_str()); return; } @@ -655,7 +681,7 @@ namespace ScriptCanvasEditor QTableWidgetItem* rowName = new QTableWidgetItem(tr(asset.GetHint().c_str())); m_ui->tableWidget->setItem(static_cast(m_inspectedAssets), static_cast(ColumnAsset), rowName); - if (!graphComponent->GetVersion().IsLatest()) + if (forceUpgrade || !graphComponent->GetVersion().IsLatest()) { m_assetsToUpgrade.push_back(asset); @@ -665,18 +691,19 @@ namespace ScriptCanvasEditor QPushButton* rowGoToButton = new QPushButton(this); rowGoToButton->setText("Upgrade"); rowGoToButton->setEnabled(false); - connect(rowGoToButton, &QPushButton::clicked, [this, spinner, rowGoToButton, asset] { - AZ::SystemTickBus::QueueFunction([this, rowGoToButton, spinner, asset]() { + connect(rowGoToButton, &QPushButton::clicked, [this, spinner, rowGoToButton, assetInfo] { + + AZ::SystemTickBus::QueueFunction([this, rowGoToButton, spinner, assetInfo]() { // Queue the process state change because we can't connect to the SystemTick bus in a Qt lambda - UpgradeSingle(rowGoToButton, spinner, asset); + UpgradeSingle(rowGoToButton, spinner, assetInfo); }); AZ::SystemTickBus::ExecuteQueuedEvents(); }); - m_ui->tableWidget->setCellWidget(static_cast(m_inspectedAssets), static_cast(ColumnAction), rowGoToButton); + m_ui->tableWidget->setCellWidget(static_cast(m_inspectedAssets), static_cast(ColumnAction), rowGoToButton); m_ui->tableWidget->setCellWidget(static_cast(m_inspectedAssets), static_cast(ColumnStatus), spinner); } @@ -713,37 +740,47 @@ namespace ScriptCanvasEditor ScanComplete(asset); } - void VersionExplorer::UpgradeSingle(QPushButton* rowGoToButton, AzQtComponents::StyledBusyLabel* spinner, const AZ::Data::Asset& asset) + void VersionExplorer::UpgradeSingle + ( QPushButton* rowGoToButton + , AzQtComponents::StyledBusyLabel* spinner + , AZ::Data::AssetInfo assetInfo) { - AZ::Interface::Get()->SetIsUpgrading(true); + AZ::Data::Asset asset = AZ::Data::AssetManager::Instance().GetAsset + ( assetInfo.m_assetId, assetInfo.m_assetType, AZ::Data::AssetLoadBehavior::PreLoad); - m_isUpgradingSingleGraph = true; + if (asset) + { + asset.BlockUntilLoadComplete(); - m_logs.clear(); - m_ui->textEdit->clear(); - - spinner->SetIsBusy(true); - rowGoToButton->setEnabled(false); - - m_inProgressAsset = AZStd::find_if(m_assetsToUpgrade.begin(), m_assetsToUpgrade.end(), [this, asset](const UpgradeAssets::value_type& assetToUpgrade) + if (!asset.IsReady()) { - return assetToUpgrade.GetId() == asset.GetId(); - }); + AZ::Interface::Get()->SetIsUpgrading(true); + m_isUpgradingSingleGraph = true; + m_logs.clear(); + m_ui->textEdit->clear(); + spinner->SetIsBusy(true); + rowGoToButton->setEnabled(false); - m_state = ProcessState::Upgrade; - - AZ::SystemTickBus::Handler::BusConnect(); + m_inProgressAsset = AZStd::find_if(m_assetsToUpgrade.begin(), m_assetsToUpgrade.end() + , [asset](const UpgradeAssets::value_type& assetToUpgrade) + { + return assetToUpgrade.GetId() == asset.GetId(); + }); + m_state = ProcessState::Upgrade; + AZ::SystemTickBus::Handler::BusConnect(); + } + } } void VersionExplorer::ScanComplete(const AZ::Data::Asset& asset) { + Log("ScanComplete: %s", asset.GetHint().c_str()); m_inProgress = false; m_ui->progressBar->setValue(aznumeric_cast(m_currentAssetIndex)); m_ui->scanButton->setEnabled(true); - + m_inspectingAsset = m_assetsToInspect.erase(m_inspectingAsset); - FlushLogs(); if (m_inspectingAsset == m_assetsToInspect.end()) @@ -755,12 +792,12 @@ namespace ScriptCanvasEditor m_ui->upgradeAllButton->setEnabled(true); } } - - asset->Release(); } void VersionExplorer::FinalizeScan() { + Log("FinalizeScan()"); + m_ui->spinner->SetIsBusy(false); m_ui->onlyShowOutdated->setEnabled(true); @@ -774,12 +811,18 @@ namespace ScriptCanvasEditor } } - QString spinnerText = QStringLiteral("Scan Complete"); if (m_assetsToUpgrade.empty()) { spinnerText.append(" - No graphs require upgrade!"); } + else + { + spinnerText.append(QString::asprintf(" - Discovered: %zu, Inspected: %zu, Failed: %zu" + , m_discoveredAssets, m_inspectedAssets, m_failedAssets)); + } + + m_ui->spinner->SetText(spinnerText); m_ui->progressBar->setVisible(false); @@ -793,11 +836,9 @@ namespace ScriptCanvasEditor UpgradeNotifications::Bus::Handler::BusDisconnect(); m_keepEditorAlive.reset(); - + m_state = ProcessState::Inactive; } - // - void VersionExplorer::FlushLogs() { if (m_logs.empty()) @@ -807,7 +848,6 @@ namespace ScriptCanvasEditor const QTextCursor oldCursor = m_ui->textEdit->textCursor(); QScrollBar* scrollBar = m_ui->textEdit->verticalScrollBar(); - const int oldScrollValue = scrollBar->value(); m_ui->textEdit->moveCursor(QTextCursor::End); QTextCursor textCursor = m_ui->textEdit->textCursor(); diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.h b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.h index 30f73dca92..266a42e2e6 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.h @@ -82,7 +82,7 @@ namespace ScriptCanvasEditor void DoScan(); void ScanComplete(const AZ::Data::Asset&); - void InspectAsset(AZ::Data::Asset& asset); + void InspectAsset(AZ::Data::Asset& asset, AZ::Data::AssetInfo& assetInfo); void OnUpgradeAll(); @@ -116,10 +116,11 @@ namespace ScriptCanvasEditor bool m_inProgress = false; size_t m_currentAssetIndex = 0; size_t m_inspectedAssets = 0; + size_t m_failedAssets = 0; + size_t m_discoveredAssets = 0; IUpgradeRequests::AssetList m_assetsToInspect; IUpgradeRequests::AssetList::iterator m_inspectingAsset; - using UpgradeAssets = AZStd::vector>; UpgradeAssets m_assetsToUpgrade; UpgradeAssets::iterator m_inProgressAsset; @@ -138,7 +139,7 @@ namespace ScriptCanvasEditor bool m_isUpgradingSingleGraph = false; - void UpgradeSingle(QPushButton* item, AzQtComponents::StyledBusyLabel* spinner, const AZ::Data::Asset& asset); + void UpgradeSingle(QPushButton* item, AzQtComponents::StyledBusyLabel* spinner, AZ::Data::AssetInfo assetInfo); void FlushLogs(); @@ -157,5 +158,7 @@ namespace ScriptCanvasEditor bool m_overwriteAll = false; void PerformMove(AZ::Data::Asset& asset, const AZStd::string& source, const AZStd::string& target); + + void Log(const char* format, ...); }; } diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.ui b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.ui index d02ddd0054..3e2604dd99 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.ui +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.ui @@ -321,6 +321,26 @@ + + + + Force Upgrade + + + false + + + + + + + Verbose + + + false + + + diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/mainwindow.ui b/Gems/ScriptCanvas/Code/Editor/View/Windows/mainwindow.ui index ddb8100821..1208a55a64 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/mainwindow.ui +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/mainwindow.ui @@ -128,6 +128,7 @@ + diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Header.jinja b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Header.jinja index d743a95ee1..332bbfa7da 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Header.jinja +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Header.jinja @@ -43,10 +43,8 @@ SPDX-License-Identifier: Apache-2.0 OR MIT namespace {{attribute_Namespace}} { {% endif %} - {% set className = Class.attrib['Name'] %} -{% set baseClass = Class.attrib['Base'] %} - +{% set baseClasses = ", ".join(Class.attrib['Base'].split(';')) if Class.attrib['Base'] is string else "ScriptCanvas::Node" %} ///////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////// //// @@ -66,7 +64,7 @@ namespace {{attribute_Namespace}} // You must #include the generated header into the source header #define SCRIPTCANVAS_NODE_{{ className }} \ public: \ - AZ_COMPONENT({{ className }}, "{{ classUuid }}"{% if baseClass is defined %}, {{ baseClass }}{% endif %}); \ + AZ_COMPONENT({{ className }}, "{{ classUuid }}", {{ baseClasses }} ); \ static void Reflect(AZ::ReflectContext* reflection); \ void ConfigureSlots() override; \ bool RequiresDynamicSlotOrdering() const override; \ diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Source.jinja b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Source.jinja index 6a381398c1..64e92c1ac7 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Source.jinja +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Source.jinja @@ -4,6 +4,8 @@ For complete copyright and license terms please see the LICENSE at the root of t SPDX-License-Identifier: Apache-2.0 OR MIT #} +{% import 'ScriptCanvas_Macros.jinja' as macros %} + {% macro add_attribute(attribute, tags) %} {% set value = tags[attribute] %} {% if value is defined %} @@ -26,7 +28,7 @@ SPDX-License-Identifier: Apache-2.0 OR MIT #include "{{ xml.attrib['Include'] }}" {% for Class in xml.iter('Class') %} - +{% set baseClass = Class.attrib['Base'].split(';')[0] if Class.attrib['Base'] is string else "ScriptCanvas::Node" %} {% set attribute_Namespace = undefined %} {%- if Class.attrib['Namespace'] is defined %} {% if Class.attrib['Namespace'] != "None" %} @@ -42,10 +44,8 @@ namespace {{attribute_Namespace}} void {{ Class.attrib['QualifiedName'] }}::ConfigureSlots() { -{% if Class.attrib['Base'] is defined %} - {{ Class.attrib['Base'] }}::ConfigureSlots(); + {{ baseClass }}::ConfigureSlots(); -{% endif %} {% for Property in Class.iter('Property') %} {% if Property.attrib['IsInput'] | booleanTrue %} // {{ Property.attrib['Name'] }} @@ -208,15 +208,15 @@ void {{ Class.attrib['QualifiedName'] }}::Reflect(AZ::ReflectContext* context) {% endfor %} {% endif %} -{% if Class.attrib['Base'] is defined %} - static_assert((std::is_base_of::value), "Script Canvas nodes require the first base class to be derived from ScriptCanvas::Node"); + static_assert((std::is_base_of::value), "Script Canvas nodes require the first base class to be derived from ScriptCanvas::Node"); -{% endif %} if (AZ::SerializeContext* serializeContext = azrtti_cast(context)) { - serializeContext->Class<{{ Class.attrib['QualifiedName'] }}{% if Class.attrib['Base'] is defined %}, {{ Class.attrib['Base'] }}{% endif %}>() + serializeContext->Class<{{ Class.attrib['QualifiedName'] }}, {{ baseClass }}>() {% if Class.attrib['EventHandler'] is defined %} +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// ->EventHandler<{{ Class.attrib['EventHandler'] }}>() +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) {% endif %} {% if Class.attrib['Version'] is defined %} ->Version({{ Class.attrib['Version'] }}{% if Class.attrib['VersionConverter'] is defined %}, &{{ Class.attrib['VersionConverter'] }}{% endif %}) diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasNodeable_Source.jinja b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasNodeable_Source.jinja index 5394ea2355..236866ffeb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasNodeable_Source.jinja +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasNodeable_Source.jinja @@ -160,7 +160,9 @@ void {{attribute_QualifiedName}}::Reflect(AZ::ReflectContext* context) { {% if ExtendReflectionSerialize is defined %} auto {{preSerialize}} = {% else %} {% endif %}serializeContext->Class<{{ attribute_Name }}{% if attribute_Base is defined %}, {{ attribute_Base }}{% endif %}>(){{postSerialize}} {% if attribute_EventHandler is defined %} +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// {{preSerialize}}->EventHandler<{{ attribute_EventHandler }}>(){{postSerialize}} +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) {% endif %} {# Serialized Properties #} @@ -197,7 +199,8 @@ void {{attribute_QualifiedName}}::Reflect(AZ::ReflectContext* context) {% if item.attrib['Description'] is defined %} {% set description = item.attrib['Description'] %} {% endif %} - // {{ item.attrib['Name'] }} + + // {{ item.attrib['Name'] }} {{preEdit}}->DataElement({{ uihandler }}, &{{ attribute_Name }}::{{ item.attrib['Name'] }}, "{{ item.attrib['Name'] }}", "{{ description }}"){{postEdit}} {% for EditAttribute in item.iter('EditAttribute') %} {{preEdit}}->Attribute({{ EditAttribute.attrib['Key'] }}, {{ EditAttribute.attrib['Value'] }}){{postEdit}} @@ -272,6 +275,9 @@ void Nodes::{{ nodeableNodeName }}::Reflect(AZ::ReflectContext* context) { {% if ExtendReflectionEdit is defined %}auto {{preEdit}} = {%endif%}editContext->Class<{{ nodeableNodeName }}>("{{ attribute_PreferredClassName }}", "{{ attribute_Description }}"){{postEdit}} {{preEdit}}->ClassElement(AZ::Edit::ClassElements::EditorData, ""){{postEdit}} +{% if attribute_Category is defined %} + {{preEdit}}->Attribute(AZ::Edit::Attributes::Category, "{{ attribute_Category }}"){{postEdit}} +{% endif %} {{preEdit}}->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly){{postEdit}} {{preEdit}}->Attribute(AZ::Edit::Attributes::AutoExpand, true){{postEdit}} ; diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvas_Macros.jinja b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvas_Macros.jinja index 508bf65454..0b9242bf3d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvas_Macros.jinja +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvas_Macros.jinja @@ -173,11 +173,10 @@ AZStd::tuple<{{returnTypes|join(", ")}}> {# ------- #} - {# ------------------------------------------------------------------------------------- #} {# NODEABLES #} -{# TODO-LS: This macro lacks parsing the parameters provided to a Contract tag #} +{# TODO: This macro lacks parsing the parameters provided to a Contract tag #} {%- macro AddContract(configurationName, item) -%} {% set contracts = [] %} diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/CodeGen/NodeableCodegen.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/CodeGen/NodeableCodegen.h index c09386a5a9..3fdcbc0605 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/CodeGen/NodeableCodegen.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/CodeGen/NodeableCodegen.h @@ -11,345 +11,28 @@ #include #include + +/* + Any class that implements a nodeable AzAutoGen driver (i.e. *.ScriptCanvasNodeable.xml) + requires that the SCRIPTCANVAS_NODE macro be declared within its class declaration. + + Example: + + class CustomNode + : public ScriptCanvas::Nodeable + { + public: + SCRIPTCANVAS_NODE(CustomNode); + }; + + What will happen is that when AzAutoGen runs it will generate a preprocessor directive: + + SCRIPTCANVAS_NODE_CustomNode + + Which will define all of the node's boilerplate code and definitions. When CustomNode + is compiled, the preprocessor will replace the macro with the auto generated + code. +*/ + #define SCRIPTCANVAS_NODE(ClassName) SCRIPTCANVAS_NODE_##ClassName -/* ---------------------------------------------------------------------------------------------------------- -* -* BaseDefinition -* This tag must be included within the body of any custom nodeable class. It generates nodeable code only and it -* should be used as a base class only. -* -* Note: This tag does not generate a node class, so it will be hidden during edit time. -* -* Example: -* BaseDefinition(BaseHelloWorld, "Base Hello World", "My BaseHelloWorld.") -* -* ----------------------------------------------------------------------------------------------------------- */ -#define BaseDefinition(ClassName, Name, Description, ...) AZ_JOIN(AZ_GENERATED_, ClassName) - -/* ---------------------------------------------------------------------------------------------------------- -* -* NodeDefinition -* This tag must be included within the body of any custom nodeable class. It generates the necessary code to support nodes -* and customizes the serialization and reflection parameters(version, converter). -* -* Example: -* NodeDefinition(HelloWorld, "Hello World", "My HelloWorld Node.") -* NodeDefinition(HelloWorld, "Hello World", "My HelloWorld Node.", -* NodeTags::Icon("Icons/ScriptCanvas/HelloWorld.png") -* NodeTags::Version(3, VersionConverter)) -* -* ----------------------------------------------------------------------------------------------------------- */ -#define NodeDefinition(ClassName, Name, Description, ...) AZ_JOIN(AZ_GENERATED_, ClassName) - -/* ---------------------------------------------------------------------------------------------------------- -* InputMethod -* Using InputMethod on a method will create execution in&out slots that is invoked -* automatically. It will also allow the automatic generation of input or output data -* slots according to the method's signature. -* -* Example -* InputMethod("Do Something", "My DoSomething Function.") -* InputMethod("Do Something", "My DoSomething Function.") -* DataInput(int, "DoSomething:Arg", 0, "My DoSomething argument.") -* -* ----------------------------------------------------------------------------------------------------------- */ -#define InputMethod(Name, Description, ...) - -/* ---------------------------------------------------------------------------------------------------------- -* BranchMethod -* Using BranchMethod on a method will create execution input&output slots that is invoked -* automatically. It will also allow the automatic generation of input data -* slots according to the method's signature. BranchMethod should not be used on method -* having return type. -* -* Coupled with macro ExecutionOutput to generate branch out execution slots. -* -* Example -* BranchMethod("Branches", "My Branches Function.") -* ExecutionOutput("Branch1", "My Branch1 Function.", SlotTags::BranchOf("Branches")) -* ExecutionOutput("Branch2", "My Branch2 Function.", SlotTags::BranchOf("Branches")) -* -* ----------------------------------------------------------------------------------------------------------- */ -#define BranchMethod(Name, Description, ...) - -/* ---------------------------------------------------------------------------------------------------------- -* OnInputChangeMethod -* Using OnInputChangeMethod on a method will create one data input slot that is invoked -* automatically, and it should be used only with one input method. -* -* Example -* OnInputChangeMethod("MyInputChangeMethod", "My OnInputChange Function.") -* DataInput(int, "MyInputChangeMethod:Arg", 0, "My MyInputChangeMethod argument.", SlotTags::DisplayGroup("MyInputChangeMethod")) -* -* ----------------------------------------------------------------------------------------------------------- */ -#define OnInputChangeMethod(Name, Description, ...) - -/* -*---------------------------------------------------------------------------------------------------------- -* -* ExecutionInput -* This is a shorthand macro to easily create an execution input slot. -* -* Examples: -* ExecutionInput("Start Process", "Signals this node to begin processing.") -* -* ---------------------------------------------------------------------------------------------------------- */ -#define ExecutionInput(Name, Description, ...) - -/* -*---------------------------------------------------------------------------------------------------------- -* -* ExecutionOutput -* This is a shorthand macro to easily create an execution output slot. -* -* Examples: -* ExecutionOutput("On Start Process", "Output of start process execution."); -* -* ---------------------------------------------------------------------------------------------------------- */ -#define ExecutionOutput(Name, Description, ...) - -/* -*---------------------------------------------------------------------------------------------------------- -* -* ExecutionLatentOutput -* Similar to ExecutionOutput however it is used to make it explicit that the output slot will be latent, -* this means that the node maintains state and may not signal this slot immediately. -* -* Example: -* ExecutionLatentOutput("On Finished", "Will be signaled when the operation is complete."); -* -* ---------------------------------------------------------------------------------------------------------- */ -#define ExecutionLatentOutput(Name, Description, ...) - -/* -*---------------------------------------------------------------------------------------------------------- -* -* Data -* Provides shorthand for exposing data to serialize context and edit context, -* mainly used with SlotTags::PropertyReference for property data. -* -* Example: -* int m_data = 1; -* PropertyData(int, "My Data", "My Serialized Data.", SlotTags::PropertyReference(m_data)); -* -* ---------------------------------------------------------------------------------------------------------- */ -#define PropertyData(Type, Name, Description, ...) - -/* -*---------------------------------------------------------------------------------------------------------- -* -* DataInput -* Provides shorthand for creating an input data slot. -* -* Coupled with macro InputMethod/BranchMethod/OnInputChangeMethod to give parameter editor definition -* -* Example: -* InputMethod("Do Something", "My DoSomething Function.") -* DataInput(int, "DoSomething:Arg", 0, "My DoSomething argument.") -* -* ---------------------------------------------------------------------------------------------------------- */ -#define DataInput(Type, Name, DefaultVal, Description, ...) - -/* -*---------------------------------------------------------------------------------------------------------- -* -* DataOutput -* Provides shorthand for creating an output data slot. -* -* Coupled with macro InputMethod/BranchMethod/OnInputChangeMethod to give result editor definition -* -* Example: -* InputMethod("Do Something", "My DoSomething Function.") -* DataOutput(int, "DoSomething:Result", 0, "My DoSomething result.") -* -* ---------------------------------------------------------------------------------------------------------- */ -#define DataOutput(Type, Name, Description, ...) - -/* -*---------------------------------------------------------------------------------------------------------- -* -* DynamicValueDataInput -* Provides shorthand for creating an input dynamic value data slot. -* -* Examples: -* DynamicValueDataInput("ValueData", "A generic value data.") -* -* ---------------------------------------------------------------------------------------------------------- */ -#define DynamicValueDataInput(Name, Description, ...) - -/* -*---------------------------------------------------------------------------------------------------------- -* -* DynamicValueDataOutput -* Provides shorthand for creating an output dynamic value data slot. -* -* Examples: -* DynamicValueDataOutput("ValueData", "A generic value data.") -* -* ---------------------------------------------------------------------------------------------------------- */ -#define DynamicValueDataOutput(Name, Description, ...) - -/* -*---------------------------------------------------------------------------------------------------------- -* -* DynamicContainerDataInput -* Provides shorthand for creating an input dynamic container data slot. -* -* Coupled with macro ExecutionInput/ExecutionOutput/ExecutionLatentOutput to generate dynamic data input slot -* -* Examples: -* DynamicContainerDataInput("ContainerData", "A generic container data.") -* -* ---------------------------------------------------------------------------------------------------------- */ -#define DynamicContainerDataInput(Name, Description, ...) - -/* -*---------------------------------------------------------------------------------------------------------- -* -* DynamicContainerDataOutput -* Provides shorthand for creating an output dynamic container data slot. -* -* Coupled with macro ExecutionInput/ExecutionOutput/ExecutionLatentOutput to generate dynamic data output slot -* -* Examples: -* DynamicContainerDataOutput("ContainerData", "A generic container data.") -* -* ---------------------------------------------------------------------------------------------------------- */ -#define DynamicContainerDataOutput(Name, Description, ...) - -/* -*---------------------------------------------------------------------------------------------------------- -* -* DynamicAnyDataInput -* Provides shorthand for creating an input dynamic any data slot. -* -* Coupled with macro ExecutionInput/ExecutionOutput/ExecutionLatentOutput to generate dynamic data input slot -* -* Examples: -* DynamicAnyDataInput("AnyData", "A generic any data.") -* -* ---------------------------------------------------------------------------------------------------------- */ -#define DynamicAnyDataInput(Name, Description, ...) - -/* -*---------------------------------------------------------------------------------------------------------- -* -* DynamicAnyDataOutput -* Provides shorthand for creating an output dynamic any data slot. -* -* Coupled with macro ExecutionInput/ExecutionOutput/ExecutionLatentOutput to generate dynamic data output slot -* -* Examples: -* DynamicAnyDataOutput("AnyData", "A generic any data.") -* -* ---------------------------------------------------------------------------------------------------------- */ -#define DynamicAnyDataOutput(Name, Description, ...) - -// Intellisense helpers, the following definitions exist to provide code completion details regarding what attributes are -// supported by the different tags. - -// Revisited common tags, we should be able to remove NodeableCodegen eventually -namespace NodeableCodegen -{ - namespace ScriptCanvasTags - { - using OverrideName = const char*; - using Uuid = const char*; - using Category = const char*; - using Icon = const char*; - using Deprecated = const char*; - - struct Version - { - using ConverterFunction = bool(class AZ::SerializeContext& context, class AZ::SerializeContext::DataElementNode& classElement); - Version(unsigned int /*version*/) {} - Version(unsigned int /*version*/, ConverterFunction /*converter*/) {} - }; - - template - struct EventHandler - { - EventHandler() = default; - }; - - namespace Edit - { - struct UIHandler - { - UIHandler([[maybe_unused]] const AZ::Crc32& uiHandler = AZ::Edit::UIHandlers::Default) {} - }; - } - - struct EditAttributes - { - template - EditAttributes(Args&& ... args) {} - }; - - struct BaseClass - { - BaseClass(AZStd::initializer_list) {} - }; - - //struct Contracts - //{ - // explicit Contracts(AZStd::initializer_list) {} - //}; - - //struct RestrictedTypeContractTag - //{ - // explicit RestrictedTypeContractTag(AZStd::initializer_list) {} - //}; - - struct SupportsMethodContractTag - { - explicit SupportsMethodContractTag(const char*) {} - }; - } -} - -namespace NodeTags -{ - using NodeableCodegen::ScriptCanvasTags::OverrideName; - using NodeableCodegen::ScriptCanvasTags::Uuid; - using NodeableCodegen::ScriptCanvasTags::Version; - using NodeableCodegen::ScriptCanvasTags::Icon; - using NodeableCodegen::ScriptCanvasTags::EditAttributes; - using NodeableCodegen::ScriptCanvasTags::Category; - using NodeableCodegen::ScriptCanvasTags::Deprecated; - - using GraphEntryPoint = bool; -} - -namespace SlotTags -{ - using NodeableCodegen::ScriptCanvasTags::OverrideName; - //using NodeableCodegen::ScriptCanvasTags::Contracts; - - // Data specific - using DisplayGroup = const char*; - - // PropertyData specific - using PropertyReference = const char*; - using PropertyInterface = const char*; - - // ExecutionSlot specific - using BranchOf = const char*; - - // EditContext specific - using NodeableCodegen::ScriptCanvasTags::EditAttributes; - using NodeableCodegen::ScriptCanvasTags::Edit::UIHandler; - using AzCommon::Attributes::ChangeNotify; - using AzCommon::Attributes::Visibility; - using AzCommon::Attributes::AutoExpand; - using AzCommon::Attributes::DescriptionTextOverride; - using AzCommon::Attributes::NameLabelOverride; - using AzCommon::Attributes::Min; - using AzCommon::Attributes::Max; - - // DynamicData specific - //using NodeableCodegen::ScriptCanvasTags::RestrictedTypeContractTag; - using NodeableCodegen::ScriptCanvasTags::SupportsMethodContractTag; - using DynamicGroup = const char*; -} diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.cpp index a5e73005c1..1986eb653e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.cpp @@ -54,8 +54,6 @@ namespace ScriptCanvas auto lhsIter = lhs.begin(); auto rhsIter = rhs.begin(); - const bool isCaseSensitive = false; - for (; lhsIter != lhs.end(); ++lhsIter, ++rhsIter) { if (!AZ::StringFunc::Equal(lhsIter->c_str(), rhsIter->c_str())) @@ -155,4 +153,22 @@ namespace ScriptCanvas grammarVersion = GrammarVersion::Current; runtimeVersion = RuntimeVersion::Current; } + + void ReflectEventTypeOnDemand(const AZ::TypeId& typeId, AZStd::string_view name, AZ::IRttiHelper* rttiHelper) + { + AZ::SerializeContext* serializeContext{}; + AZ::ComponentApplicationBus::BroadcastResult(serializeContext, &AZ::ComponentApplicationRequests::GetSerializeContext); + AZ::SerializeContext::ClassData classData; + classData.m_name = name.data(); + classData.m_typeId = typeId; + classData.m_azRtti = rttiHelper; + + auto EventPlaceholderAnyCreator = [](AZ::SerializeContext*) -> AZStd::any + { + return AZStd::make_any(); + }; + + serializeContext->RegisterType(typeId, AZStd::move(classData), EventPlaceholderAnyCreator); + } + } diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.h index 5e4d11ac65..170e4c5acb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.h @@ -24,6 +24,8 @@ #include #include +#define OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED + namespace AZ { class Entity; @@ -94,7 +96,7 @@ namespace ScriptCanvas struct VersionData { - AZ_TYPE_INFO(VersionData, "{14C629F6-467B-46FE-8B63-48FDFCA42175}"); + AZ_TYPE_INFO(VersionData, "{52036892-DA63-4199-AC6A-9BAFE6B74EFC}"); static void Reflect(AZ::ReflectContext* context); @@ -277,6 +279,8 @@ namespace ScriptCanvas bool m_wasAdded = false; AZ::Entity* m_buildEntity = nullptr; }; + + void ReflectEventTypeOnDemand(const AZ::TypeId& typeId, AZStd::string_view name, AZ::IRttiHelper* rttiHelper = nullptr); } namespace AZStd diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.cpp index 4dae63d71b..e2e0ba1c9d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.cpp @@ -2041,7 +2041,7 @@ namespace ScriptCanvas } } - void Datum::OnWriteEnd() + void Datum::OnDeserialize() { if (m_type.GetType() == Data::eType::BehaviorContextObject) { @@ -2059,18 +2059,27 @@ namespace ScriptCanvas } else { - AZ_Error("Script Canvas", false, AZStd::string::format("Datum type (%s) de-serialized, but no such class found in the behavior context", m_type.GetAZType().ToString().c_str()).c_str()); + AZ_Error("ScriptCanvas", false, AZStd::string::format("Datum type (%s) de-serialized, but no such class found in the behavior context", m_type.GetAZType().ToString().c_str()).c_str()); } } } +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// + void Datum::OnWriteEnd() + { + OnDeserialize(); + } +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) + void Datum::Reflect(AZ::ReflectContext* reflection) { if (auto serializeContext = azrtti_cast(reflection)) { serializeContext->Class() ->Version(DatumHelpers::Version::Current, &DatumHelpers::VersionConverter) +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// ->EventHandler() +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) ->Field("m_isUntypedStorage", &Datum::m_isOverloadedStorage) ->Field("m_type", &Datum::m_type) ->Field("m_originality", &Datum::m_originality) diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.h index 4cbc25b500..2566149b6f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.h @@ -8,14 +8,15 @@ #pragma once +#include #include #include #include #include +#include +#include #include #include -#include -#include namespace AZ { @@ -33,11 +34,12 @@ namespace ScriptCanvas /// A Datum is used to provide generic storage for all data types in ScriptCanvas, and provide a common interface to accessing, modifying, and displaying them /// in the editor, regardless of their actual ScriptCanvas or BehaviorContext type. class Datum final + : public SerializationListener { friend class AZ::DatumSerializer; public: - AZ_TYPE_INFO(Datum, "{8B836FC0-98A8-4A81-8651-35C7CA125451}"); + AZ_RTTI(Datum, "{8B836FC0-98A8-4A81-8651-35C7CA125451}", SerializationListener); AZ_CLASS_ALLOCATOR(Datum, AZ::SystemAllocator, 0); enum class eOriginality : int @@ -234,6 +236,7 @@ namespace ScriptCanvas } }; +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// class SerializeContextEventHandler : public AZ::SerializeContext::IEventHandler { public: @@ -244,6 +247,7 @@ namespace ScriptCanvas datum->OnWriteEnd(); } }; +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) friend class SerializeContextEventHandler; @@ -341,9 +345,11 @@ namespace ScriptCanvas void OnDatumEdited(); - void OnReadBegin(); - + void OnDeserialize() override; + +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// void OnWriteEnd(); +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) AZ_INLINE bool SatisfiesTraits(AZ::u8 behaviorValueTraits) const; diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusHandler.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusHandler.h index decb7ae9c0..9d9830f361 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusHandler.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusHandler.h @@ -8,10 +8,13 @@ #pragma once +#include #include #include "Nodeable.h" +AZ_DECLARE_BUDGET(ScriptCanvas); + struct lua_State; namespace AZ diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.cpp index 9bed478d74..77de1330e2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.cpp @@ -19,17 +19,17 @@ namespace AZ namespace ScriptCanvas { +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// class GraphDataEventHandler : public AZ::SerializeContext::IEventHandler { public: /// Called to rebuild the Endpoint map void OnWriteEnd(void* classPtr) override { - auto* graphData = reinterpret_cast(classPtr); - graphData->BuildEndpointMap(); - graphData->LoadDependentAssets(); + reinterpret_cast(classPtr)->OnDeserialized(); } }; +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) void GraphData::Reflect(AZ::ReflectContext* context) { @@ -42,7 +42,9 @@ namespace ScriptCanvas serializeContext->Class() ->Version(4, &GraphData::VersionConverter) +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// ->EventHandler() +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) ->Field("m_nodes", &GraphData::m_nodes) ->Field("m_connections", &GraphData::m_connections) ->Field("m_dependentAssets", &GraphData::m_dependentAssets) @@ -215,4 +217,10 @@ namespace ScriptCanvas m_dependentAssets.clear(); } + + void GraphData::OnDeserialized() + { + BuildEndpointMap(); + LoadDependentAssets(); + } } diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.h index f09098ca17..cdd23bbdda 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.h @@ -37,6 +37,7 @@ namespace ScriptCanvas void BuildEndpointMap(); void Clear(bool deleteData = false); void LoadDependentAssets(); + void OnDeserialized(); using NodeContainer = AZStd::unordered_set; using ConnectionContainer = AZStd::vector; diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.cpp index 28f0519552..2ae37b1253 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.cpp @@ -36,6 +36,8 @@ #include //// +AZ_DECLARE_BUDGET(ScriptCanvas); + namespace NodeCpp { enum Version @@ -60,6 +62,7 @@ namespace ScriptCanvas // Node ///////// +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// class NodeEventHandler : public AZ::SerializeContext::IEventHandler { @@ -67,9 +70,10 @@ namespace ScriptCanvas void OnWriteEnd(void* objectPtr) override { auto node = reinterpret_cast(objectPtr); - node->RebuildInternalState(); + node->OnDeserialize(); } }; +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) bool NodeVersionConverter(AZ::SerializeContext& context, AZ::SerializeContext::DataElementNode& nodeElementNode) { @@ -420,7 +424,9 @@ namespace ScriptCanvas serializeContext->RegisterGenericType>(); serializeContext->Class() +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// ->EventHandler() +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) ->Version(NodeCpp::Version::Current, &NodeVersionConverter) ->Field("Slots", &Node::m_slots) ->Field("Datums", &Node::m_slotDatums) @@ -1461,8 +1467,6 @@ namespace ScriptCanvas return slot.GetDataType(); } - Endpoint endpoint = slot.GetEndpoint(); - auto connectedNodes = GetConnectedNodes(slot); for (auto endpointPair : connectedNodes) @@ -2616,6 +2620,11 @@ namespace ScriptCanvas } } + void Node::OnDeserialize() + { + RebuildInternalState(); + } + void Node::OnEndpointConnected(const Endpoint& endpoint) { const SlotId& currentSlotId = EndpointNotificationBus::GetCurrentBusId()->GetSlotId(); @@ -2876,7 +2885,7 @@ namespace ScriptCanvas if (node == nullptr) { AZStd::string assetName = m_graphRequestBus->GetAssetName(); - AZ::EntityId assetNodeId = m_graphRequestBus->FindAssetNodeIdByRuntimeNodeId(endpoint.GetNodeId()); + [[maybe_unused]] AZ::EntityId assetNodeId = m_graphRequestBus->FindAssetNodeIdByRuntimeNodeId(endpoint.GetNodeId()); AZ_Warning("Script Canvas", false, "Unable to find node with id (id: %s) in the graph '%s'. Most likely the node was serialized with a type that is no longer reflected", assetNodeId.ToString().data(), assetName.data()); @@ -2891,7 +2900,7 @@ namespace ScriptCanvas if (!endpointSlot) { AZStd::string assetName = m_graphRequestBus->GetAssetName(); - AZ::EntityId assetNodeId = m_graphRequestBus->FindAssetNodeIdByRuntimeNodeId(endpoint.GetNodeId()); + [[maybe_unused]] AZ::EntityId assetNodeId = m_graphRequestBus->FindAssetNodeIdByRuntimeNodeId(endpoint.GetNodeId()); AZ_Warning("Script Canvas", false, "Endpoint was missing slot. id (id: %s) in the graph '%s'.", assetNodeId.ToString().data(), assetName.data()); @@ -2925,7 +2934,7 @@ namespace ScriptCanvas if (node == nullptr) { AZStd::string assetName = m_graphRequestBus->GetAssetName(); - AZ::EntityId assetNodeId = m_graphRequestBus->FindAssetNodeIdByRuntimeNodeId(endpoint.GetNodeId()); + [[maybe_unused]] AZ::EntityId assetNodeId = m_graphRequestBus->FindAssetNodeIdByRuntimeNodeId(endpoint.GetNodeId()); AZ_Error("Script Canvas", false, "Unable to find node with id (id: %s) in the graph '%s'. Most likely the node was serialized with a type that is no longer reflected", assetNodeId.ToString().data(), assetName.data()); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.h index bf3e17156b..27f0b3862d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.h @@ -14,25 +14,23 @@ #include #include #include - +#include #include #include #include #include -#include #include #include #include +#include #include +#include #include +#include #include #include -#include #include -#include - -#include - +#include #define SCRIPT_CANVAS_CALL_ON_INDEX_SEQUENCE(lambdaInterior)\ int dummy[]{ 0, ( lambdaInterior , 0)... };\ @@ -65,6 +63,7 @@ namespace ScriptCanvas struct BehaviorContextMethodHelper; +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// template class SerializeContextReadWriteHandler : public AZ::SerializeContext::IEventHandler { @@ -128,6 +127,7 @@ namespace ScriptCanvas deserializedObject->OnWriteEnd(); } }; +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) // List of slots that will be create visual only slots on the nodes. // Useful for special configurations or editor only concepts. @@ -401,6 +401,7 @@ namespace ScriptCanvas , public DatumNotificationBus::Handler , public NodeRequestBus::Handler , public EndpointNotificationBus::MultiHandler + , public SerializationListener { friend class Graph; friend class RuntimeComponent; @@ -472,7 +473,7 @@ namespace ScriptCanvas public: - AZ_COMPONENT(Node, "{52B454AE-FA7E-4FE9-87D3-A1CAB235C691}"); + AZ_COMPONENT(Node, "{52B454AE-FA7E-4FE9-87D3-A1CAB235C691}", SerializationListener); static void Reflect(AZ::ReflectContext* reflection); Node(); @@ -821,6 +822,7 @@ namespace ScriptCanvas ////////////////////////////////////////////////////////////////////////// protected: + void OnDeserialize() override; virtual void OnReconfigurationBegin() {} virtual void OnReconfigurationEnd() {} diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h index e9586ac83a..cb6c4bf942 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h @@ -80,9 +80,7 @@ namespace ScriptCanvas using ResultType = FunctionTraits::result_type;\ static const size_t s_numArgs = FunctionTraits::arity;\ static const size_t s_numNames = SCRIPT_CANVAS_FUNCTION_VAR_ARGS(__VA_ARGS__);\ - static const size_t s_argsSlotIndicesStart = 2;\ - static const size_t s_resultsSlotIndicesStart = s_argsSlotIndicesStart + s_numArgs;\ - static const size_t s_numResults = ScriptCanvas::Internal::extended_tuple_size::value;\ + /*static const size_t s_numResults = ScriptCanvas::Internal::extended_tuple_size::value;*/\ \ static const char* GetArgName(size_t i)\ {\ @@ -104,7 +102,9 @@ namespace ScriptCanvas private:\ static AZStd::string_view GetName(size_t i)\ {\ + AZ_PUSH_DISABLE_WARNING(4296, "-Wunknown-warning-option")\ static_assert(s_numArgs <= s_numNames, "Number of arguments is greater than number of names in " #NODE_NAME );\ + AZ_POP_DISABLE_WARNING\ /*static_assert(s_numResults <= s_numNames, "Number of results is greater than number of names in " #NODE_NAME );*/\ /*static_assert((s_numResults + s_numArgs) == s_numNames, "Argument name count + result name count != name count in " #NODE_NAME );*/\ static const AZStd::array s_names = {{ __VA_ARGS__ }};\ @@ -148,7 +148,7 @@ namespace ScriptCanvas { static int indices[] = { inputDatumIndices... }; static_assert(sizeof...(Is) == AZ_ARRAY_SIZE(indices), "size of default values doesn't match input datum indices for them"); - std::initializer_list { (MoreHelp(node, indices[Is], AZStd::forward(args)), 0)... }; + [[maybe_unused]] std::initializer_list dummy = { (MoreHelp(node, indices[Is], AZStd::forward(args)), 0)... }; } template diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNodeOverloaded.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNodeOverloaded.cpp index 92039d3394..58af3a75de 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNodeOverloaded.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNodeOverloaded.cpp @@ -575,7 +575,7 @@ namespace ScriptCanvas const SlotExecution::Map* slotExecutionMap = GetSlotExecutionMap(); const auto& executionIns = slotExecutionMap->GetIns(); - if (methodIndex < 0 || methodIndex >= executionIns.size()) + if (methodIndex >= executionIns.size()) { return; } @@ -655,7 +655,7 @@ namespace ScriptCanvas AZ::Outcome NodeableNodeOverloaded::IsValidConfiguration(size_t methodIndex, const DataIndexMapping& inputMapping, const DataIndexMapping& outputMapping) { - if (methodIndex < 0 || methodIndex >= m_methodConfigurations.size()) + if (methodIndex >= m_methodConfigurations.size()) { return AZ::Failure(AZStd::string("Trying to access unknown method index.")); } @@ -716,7 +716,7 @@ namespace ScriptCanvas const SlotExecution::Map* slotExecutionMap = GetSlotExecutionMap(); const auto& executionIns = slotExecutionMap->GetIns(); - if (methodIndex < 0 || methodIndex >= executionIns.size()) + if (methodIndex >= executionIns.size()) { return AZ::Failure(AZStd::string("Invalid method index given to Nodeable"));; } @@ -785,7 +785,7 @@ namespace ScriptCanvas return AZ::Success(); } - if (methodIndex < 0 || methodIndex >= m_methodConfigurations.size()) + if (methodIndex >= m_methodConfigurations.size()) { return AZ::Failure(AZStd::string("Invalid Method index given to Nodeable Node Overloaded.")); } @@ -826,7 +826,7 @@ namespace ScriptCanvas { static const DataTypeSet k_emptySet; - if (methodIndex >= 0 && methodIndex < m_methodSelections.size()) + if (methodIndex < m_methodSelections.size()) { const OverloadConfiguration& overloadConfiguration = m_methodConfigurations[methodIndex]; size_t startIndex = NodeableNodeOverloadedCpp::AdjustForHiddenNodeableThisPointer(overloadConfiguration, 0); @@ -845,7 +845,7 @@ namespace ScriptCanvas return AZ::Success(); } - if (methodIndex < 0 || methodIndex >= m_methodConfigurations.size()) + if (methodIndex >= m_methodConfigurations.size()) { return AZ::Failure(AZStd::string("Invalid Method index given to Nodeable Node Overloaded.")); } @@ -883,7 +883,7 @@ namespace ScriptCanvas { static const DataTypeSet k_emptySet; - if (methodIndex >= 0 && methodIndex < m_methodSelections.size()) + if (methodIndex < m_methodSelections.size()) { return m_methodSelections[methodIndex].FindPossibleInputTypes(index); } diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SerializationListener.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SerializationListener.h new file mode 100644 index 0000000000..4a3771221d --- /dev/null +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SerializationListener.h @@ -0,0 +1,25 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +namespace ScriptCanvas +{ + class SerializationListener + { + public: + AZ_RTTI(SerializationListener, "{CA4EE281-30B3-4928-BCD8-9305CE75E463}"); + virtual ~SerializationListener() {} + + virtual void OnSerialize() {} + + virtual void OnDeserialize() {} + }; + + using SerializationListeners = AZStd::vector; +} diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterface.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterface.cpp index 9d1626fb73..5a88036a0f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterface.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterface.cpp @@ -37,7 +37,7 @@ namespace SubgraphInterfaceCpp AZ_INLINE const char* GetTabs(size_t tabs) { - AZ_Assert(tabs >= 0 && tabs <= k_maxTabs, "invalid argument to GetTabs"); + AZ_Assert(tabs <= k_maxTabs, "invalid argument to GetTabs"); static const char* const k_tabs[] = { diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterfaceUtility.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterfaceUtility.cpp index d8cdbc7585..74a41eb2c6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterfaceUtility.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterfaceUtility.cpp @@ -13,7 +13,6 @@ namespace SubgraphInterfaceUtilityCpp { - const constexpr size_t k_uniqueOutIndex = 0; const constexpr size_t k_signatureIndex = 1; const constexpr AZ::u64 k_defaultOutIdSignature = 0x3ACF20E73ACF20E7ull; diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.cpp index 09d356a2f0..412eb3ee7c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.cpp @@ -17,26 +17,12 @@ namespace ScriptCanvas { - void BehaviorContextObject::OnReadBegin() - { - if (!IsOwned()) - { - Clear(); - } - } - - void BehaviorContextObject::OnWriteEnd() - { - // Id Remapping invokes this method as well, not just serializing from an ObjectStream - } - void BehaviorContextObject::Reflect(AZ::ReflectContext* reflection) { if (auto serializeContext = azrtti_cast(reflection)) { serializeContext->Class() ->Version(0) - ->EventHandler() ->Field("m_flags", &BehaviorContextObject::m_flags) ->Field("m_object", &BehaviorContextObject::m_object) ; @@ -55,24 +41,11 @@ namespace ScriptCanvas } } - void BehaviorContextObject::SerializeContextEventHandler::OnReadBegin(void* classPtr) - { - BehaviorContextObject* object = reinterpret_cast(classPtr); - object->OnReadBegin(); - } - - void BehaviorContextObject::SerializeContextEventHandler::OnWriteEnd(void* classPtr) - { - BehaviorContextObject* object = reinterpret_cast(classPtr); - object->OnWriteEnd(); - } - BehaviorContextObjectPtr BehaviorContextObject::CloneObject(const AZ::BehaviorClass& behaviorClass) { if (SystemRequestBus::HasHandlers()) { AZStd::vector buffer; - { bool wasOwned = IsOwned(); m_flags |= Flags::Owned; @@ -87,7 +60,6 @@ namespace ScriptCanvas } AZ::IO::ByteContainerStream> readStream(&buffer); - BehaviorContextObject* newObject = CreateDefault(behaviorClass); AZ::Utils::LoadObjectFromStreamInPlace(readStream, (*newObject)); @@ -124,6 +96,12 @@ namespace ScriptCanvas : BehaviorContextObjectPtr(aznew BehaviorContextObject(reference, GetAnyTypeInfoReference(typeID), referenceFlags)); } + void BehaviorContextObject::Deserialize(BehaviorContextObject& target, const AZ::BehaviorClass& behaviorClass, AZStd::any& source) + { + target.m_object = AZStd::any(AZStd::any_cast(&source), GetAnyTypeInfoObject(behaviorClass)); + target.m_flags = Owned; + } + void BehaviorContextObject::release() { if (--m_referenceCount == 0) diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.h index ca4500eccc..d7fc7dcc91 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.h @@ -22,6 +22,7 @@ namespace AZ { class ReflectContext; + class BehaviorContextObjectSerializer; } namespace ScriptCanvas @@ -29,6 +30,8 @@ namespace ScriptCanvas class BehaviorContextObject final { friend struct AZStd::IntrusivePtrCountPolicy; + friend class Datum; + friend class AZ::BehaviorContextObjectSerializer; public: AZ_TYPE_INFO(BehaviorContextObject, "{B735214D-5182-4536-B748-61EC83C1F007}"); @@ -69,16 +72,6 @@ namespace ScriptCanvas Reference = 1 << 3, }; - class SerializeContextEventHandler : public AZ::SerializeContext::IEventHandler - { - public: - /// Called right before we start reading from the instance pointed by classPtr. - void OnReadBegin(void* classPtr) override; - - /// Called after we are done writing to the instance pointed by classPtr. - void OnWriteEnd(void* classPtr) override; - }; - template static AZ::BehaviorObject InvokeConstructor(const AZ::BehaviorClass& behaviorClass, void* resultPtr, Args&&... args); @@ -90,6 +83,8 @@ namespace ScriptCanvas AZ_INLINE static BehaviorContextObject* CreateDefaultHeap(const AZ::BehaviorClass& behaviorClass); + static void Deserialize(BehaviorContextObject& target, const AZ::BehaviorClass& behaviorClass, AZStd::any& source); + // use the SSO optimization on behavior class size ALIGNED with a placement new of behavior class create AZ_FORCE_INLINE static AnyTypeInfo GetAnyTypeInfoObject(const AZ::BehaviorClass& behaviorClass); @@ -110,6 +105,7 @@ namespace ScriptCanvas // it is very important to track these from the moment they are created... friend struct AZ::Serialize::InstanceFactory; friend struct AZ::AnyTypeInfoConcept; + //...so don't use the ctors, use the Create functions... //...the friend declarations are here for compatibility with the serialization system only AZ_FORCE_INLINE BehaviorContextObject() = default; @@ -128,10 +124,6 @@ namespace ScriptCanvas AZ_FORCE_INLINE bool IsOwned() const; - void OnReadBegin(); - - void OnWriteEnd(); - AZ_FORCE_INLINE void add_ref(); void release(); @@ -268,7 +260,7 @@ namespace ScriptCanvas AZ_INLINE BehaviorContextObject* BehaviorContextObject::CreateDefaultBuffer(const AZ::BehaviorClass& behaviorClass) { - AZ_ALIGN(char buffer[AZStd::Internal::ANY_SBO_BUF_SIZE], 32); + alignas(32) char buffer[AZStd::Internal::ANY_SBO_BUF_SIZE]; AZ::BehaviorObject object = InvokeConstructor(behaviorClass, AZStd::addressof(buffer)); auto bco = aznew BehaviorContextObject(object.m_address, GetAnyTypeInfoObject(behaviorClass), Owned); behaviorClass.m_destructor(object.m_address, behaviorClass.m_userData); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Data.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Data.h index 9ab993fdd1..d51489d487 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Data.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Data.h @@ -26,6 +26,8 @@ #include #include +AZ_DECLARE_BUDGET(ScriptCanvas); + namespace AZ { class ReflectContext; diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedAPI.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedAPI.cpp index e01a3a0e7a..d7a4c360ac 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedAPI.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedAPI.cpp @@ -34,8 +34,6 @@ namespace ExecutionInterpretedAPICpp constexpr size_t k_StringFastSize = 32; - constexpr size_t k_MaxNodeableOuts = 64; - constexpr size_t k_UuidSize = 16; constexpr unsigned char k_Bad = 77; @@ -551,7 +549,7 @@ namespace ScriptCanvas { using namespace ExecutionInterpretedAPICpp; // Lua: usernodeable, keyCount - const int argsCount = lua_gettop(lua); + [[maybe_unused]] const int argsCount = lua_gettop(lua); AZ_Assert(argsCount == 2, "InitializeNodeableOutKeys: Error in compiled Lua file, not enough arguments"); AZ_Assert(lua_isuserdata(lua, 1), "InitializeNodeableOutKeys: Error in compiled lua file, 1st argument to SetExecutionOut is not userdata (Nodeable)"); Nodeable* nodeable = AZ::ScriptValue::StackRead(lua, 1); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NodeableOut/NodeableOutNative.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NodeableOut/NodeableOutNative.h index dc428cb480..ab6859db1e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NodeableOut/NodeableOutNative.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NodeableOut/NodeableOutNative.h @@ -23,7 +23,7 @@ namespace ScriptCanvas { auto nodeCallWrapper = [callable = AZStd::forward(callable)](AZ::BehaviorValueParameter* result, AZ::BehaviorValueParameter* arguments, int numArguments) mutable { - constexpr size_t numFunctorArguments = sizeof...(Args); + [[maybe_unused]] constexpr size_t numFunctorArguments = sizeof...(Args); (void)numArguments; AZ_Assert(numArguments == numFunctorArguments, "number of arguments doesn't match number of parameters"); AZ_Assert(result, "no null result allowed"); @@ -39,7 +39,7 @@ namespace ScriptCanvas { auto nodeCallWrapper = [callable = AZStd::forward(callable)](AZ::BehaviorValueParameter*, AZ::BehaviorValueParameter* arguments, int numArguments) mutable { - constexpr size_t numFunctorArguments = sizeof...(Args); + [[maybe_unused]] constexpr size_t numFunctorArguments = sizeof...(Args); (void)numArguments; AZ_Assert(numArguments == numFunctorArguments, "number of arguments doesn't match number of parameters"); AZStd::invoke(callable, *arguments[IndexSequence].GetAsUnsafe()...); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeComponent.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeComponent.cpp index 89c69ee4c5..6d652136cd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeComponent.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeComponent.cpp @@ -23,6 +23,8 @@ #define SCRIPT_CANVAS_RUNTIME_ASSET_CHECK #endif +AZ_DECLARE_BUDGET(ScriptCanvas); + namespace RuntimeComponentCpp { enum class RuntimeComponentVersion : unsigned int diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingUtilities.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingUtilities.cpp index caae465964..dc33e6bae6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingUtilities.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingUtilities.cpp @@ -707,8 +707,6 @@ namespace ScriptCanvas return false; } - auto id = execution->GetId(); - if (ActivatesSelf(execution)) { return true; diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Primitives.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Primitives.cpp index ee7c1ee2d2..59f12481e7 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Primitives.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Primitives.cpp @@ -55,7 +55,6 @@ namespace ScriptCanvas AZStd::vector tokens; AzFramework::StringFunc::Tokenize(name, tokens, Grammar::k_luaSpecialCharacters); AZStd::string joinResult; - const size_t length = tokens.size(); for (auto& token : tokens) { joinResult.append(token); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/StringFormatted.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/StringFormatted.cpp index 552e04a850..a943f167e1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/StringFormatted.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/StringFormatted.cpp @@ -13,6 +13,8 @@ #include +AZ_DECLARE_BUDGET(ScriptCanvas); + namespace ScriptCanvas { namespace Nodes diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp index af583738da..ef73bb967d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp @@ -602,15 +602,24 @@ namespace ScriptCanvas } } - void EBusEventHandler::OnWriteEnd() + void EBusEventHandler::OnDeserialize() { AZStd::lock_guard lock(m_mutex); if (!m_ebus) { CreateHandler(m_ebusName); } + + Node::OnDeserialize(); } +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// + void EBusEventHandler::OnWriteEnd() + { + OnDeserialize(); + } +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) + NodeTypeIdentifier EBusEventHandler::GetOutputNodeType(const SlotId& slotId) const { for (auto mapPair : m_eventMap) diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.h index eb905b7c90..c6d4a8b512 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.h @@ -138,7 +138,11 @@ namespace ScriptCanvas void SetAutoConnectToGraphOwner(bool enabled); + void OnDeserialize(); + +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// void OnWriteEnd(); +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) AZStd::string GetNodeName() const override { diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionDefinitionNode.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionDefinitionNode.cpp index 071528d5b4..6cda0b75dd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionDefinitionNode.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionDefinitionNode.cpp @@ -166,7 +166,7 @@ namespace ScriptCanvas } }, { - [this]() + []() { DisallowReentrantExecutionContract* reentrantContract = aznew DisallowReentrantExecutionContract(); return reentrantContract; diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.cpp index 9701e346be..eb1ee501a9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.cpp @@ -313,6 +313,7 @@ namespace ScriptCanvas } PopulateNodeType(); + m_warnOnMissingFunction = true; } bool Method::InitializeOverloaded([[maybe_unused]] const NamespacePath& namespaces, AZStd::string_view className, AZStd::string_view methodName) @@ -739,10 +740,11 @@ namespace ScriptCanvas return TupleType{ nullptr, MethodType::Count, EventType::Count, nullptr }; } - void Method::OnWriteEnd() + void Method::OnDeserialize() { AZStd::lock_guard lock(m_mutex); + m_warnOnMissingFunction = true; const AZ::BehaviorClass* bcClass{}; const AZ::BehaviorMethod* method{}; EventType eventType; @@ -758,15 +760,23 @@ namespace ScriptCanvas { AZ_Warning("ScriptCanvas", !m_warnOnMissingFunction, "method node failed to deserialize properly"); } - } if (m_resultSlotIDs.empty()) { m_resultSlotIDs.emplace_back(SlotId{}); } + + Node::OnDeserialize(); } +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// + void Method::OnWriteEnd() + { + OnDeserialize(); + } +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) + bool Method::BranchesOnResult() const { return m_method && m_method->HasResult() && @@ -829,7 +839,9 @@ namespace ScriptCanvas { serializeContext->Class() ->Version(MethodCPP::eVersion::Current, &MethodCPP::MethodVersionConverter) +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// ->EventHandler>() +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) ->Field("methodType", &Method::m_methodType) ->Field("methodName", &Method::m_lookupName) ->Field("className", &Method::m_className) diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.h index 41d4adcb84..5584212048 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.h @@ -22,7 +22,6 @@ namespace AZ namespace ScriptCanvas { - AZ::Outcome IsExposable(const AZ::BehaviorMethod& method); Grammar::FunctionPrototype ToSignature(const AZ::BehaviorMethod& method); @@ -31,7 +30,8 @@ namespace ScriptCanvas { namespace Core { - class Method : public Node + class Method + : public Node { public: AZ_COMPONENT(Method, "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF}", Node); @@ -107,7 +107,11 @@ namespace ScriptCanvas SlotId GetBusSlotId() const; + void OnDeserialize(); + +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// void OnWriteEnd(); +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) virtual bool IsMethodOverloaded() const { return false; } @@ -180,7 +184,7 @@ namespace ScriptCanvas AZStd::vector m_inputSlots; AZStd::vector m_resultSlotIDs; AZStd::recursive_mutex m_mutex; // post-serialization - bool m_warnOnMissingFunction = true; + bool m_warnOnMissingFunction = false; Method(const Method&) = delete; }; diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.cpp index c902d279bc..f49fcb3318 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.cpp @@ -60,7 +60,9 @@ namespace ScriptCanvas { serializeContext->Class() ->Version(MethodOverloadedCpp::Version::Current, &MethodOverloadedVersionConverter) +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// ->EventHandler>() +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) ->Field("orderedInputSlotIds", &MethodOverloaded::m_orderedInputSlotIds) ->Field("outputSlotIds", &MethodOverloaded::m_outputSlotIds) ; @@ -186,6 +188,7 @@ namespace ScriptCanvas RefreshActiveIndexes(); ConfigureContracts(); + SetWarnOnMissingFunction(true); } SlotId MethodOverloaded::AddMethodInputSlot(const MethodConfiguration& config, size_t argumentIndex) @@ -397,20 +400,14 @@ namespace ScriptCanvas return signature; } - void MethodOverloaded::OnReadBegin() - { - } - - void MethodOverloaded::OnReadEnd() - { - } - - void MethodOverloaded::OnWriteBegin() - { - SetWarnOnMissingFunction(false); - } - +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// void MethodOverloaded::OnWriteEnd() + { + OnDeserialize(); + } +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) + + void MethodOverloaded::OnDeserialize() { AZStd::lock_guard lock(GetMutex()); @@ -462,6 +459,7 @@ namespace ScriptCanvas } SetWarnOnMissingFunction(true); + Node::OnDeserialize(); } void MethodOverloaded::SetupMethodData(const AZ::BehaviorMethod* behaviorMethod, const AZ::BehaviorClass* behaviorClass) diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.h index c15b8f718c..b880f68862 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.h @@ -33,7 +33,9 @@ namespace ScriptCanvas , public OverloadContractInterface { private: +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// friend class SerializeContextReadWriteHandler; +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) public: static void Reflect(AZ::ReflectContext* reflectContext); @@ -91,13 +93,15 @@ namespace ScriptCanvas // \todo make execution thread sensitive, which can then support generic programming Grammar::FunctionPrototype GetInputSignature() const; +#if defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED)//// // SerializeContextReadWriteHandler - void OnReadBegin(); - void OnReadEnd(); - - void OnWriteBegin(); + void OnReadBegin() {} + void OnReadEnd() {} + void OnWriteBegin() {} void OnWriteEnd(); - //// +#endif//defined(OBJECT_STREAM_EDITOR_ASSET_LOADING_SUPPORT_ENABLED) + + void OnDeserialize() override; void SetupMethodData(const AZ::BehaviorMethod* lookupMethod, const AZ::BehaviorClass* lookupClass); void ConfigureContracts(); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodUtility.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodUtility.cpp index e2cfa8d9ad..0ddd161847 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodUtility.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodUtility.cpp @@ -45,7 +45,7 @@ namespace ScriptCanvas int tupleGetFuncIndex = -1; if (tupleGetFuncAttrReader.Read(tupleGetFuncIndex)) { - auto insertIter = tupleGetMethodMap.emplace(tupleGetFuncIndex, behaviorMethod); + [[maybe_unused]] auto insertIter = tupleGetMethodMap.emplace(tupleGetFuncIndex, behaviorMethod); AZ_Error("Script Canvas", insertIter.second, "Multiple methods with the same TupleGetFunctionIndex attribute" "has been registered for the class name: %s with typeid: %s", behaviorClass->m_name.data(), behaviorClass->m_typeId.ToString().data()) diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.cpp index 8a86347aa3..b874077834 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.cpp @@ -86,7 +86,6 @@ namespace ScriptCanvas if (!wasConfigured) { - AZ::Uuid addressTypeId = m_definition.GetAddressType(); AZ::Uuid addressId = m_definition.GetAddressTypeProperty().GetId(); if (m_definition.IsAddressRequired()) diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Gate.ScriptCanvasGrammar.xml b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Gate.ScriptCanvasGrammar.xml index 53d8623fe8..4e2e89fc7b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Gate.ScriptCanvasGrammar.xml +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Gate.ScriptCanvasGrammar.xml @@ -5,7 +5,6 @@ QualifiedName="ScriptCanvas::Nodes::Logic::Gate" PreferredClassName="If" Uuid="{F19CC10A-02FD-4E75-ADAA-9CFBD8A4E2F8}" - Base="ScriptCanvas::Node" Icon="Icons/ScriptCanvas/Print.png" Version="0" GeneratePropertyFriend="True" diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Sequencer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Sequencer.cpp index 2033f92430..c889c6ca17 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Sequencer.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Sequencer.cpp @@ -16,8 +16,6 @@ namespace ScriptCanvas { namespace Logic { - static const int NUMBER_OF_OUTPUTS = 8; - Sequencer::Sequencer() : Node() , m_selectedIndex(0) diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorAt.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorAt.cpp index 868ad34650..e44fd0b1f1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorAt.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorAt.cpp @@ -23,7 +23,7 @@ namespace ScriptCanvas if (sourceType == SourceType::SourceInput) { ContractDescriptor supportsMethodContract; - supportsMethodContract.m_createFunc = [this]() -> SupportsMethodContract* { return aznew SupportsMethodContract("At"); }; + supportsMethodContract.m_createFunc = []() -> SupportsMethodContract* { return aznew SupportsMethodContract("At"); }; contractDescs.push_back(AZStd::move(supportsMethodContract)); } } diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorBack.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorBack.cpp index e665d145e9..66d33d4c8f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorBack.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorBack.cpp @@ -23,7 +23,7 @@ namespace ScriptCanvas if (sourceType == SourceType::SourceInput) { ContractDescriptor supportsMethodContract; - supportsMethodContract.m_createFunc = [this]() -> SupportsMethodContract* { return aznew SupportsMethodContract("Back"); }; + supportsMethodContract.m_createFunc = []() -> SupportsMethodContract* { return aznew SupportsMethodContract("Back"); }; contractDescs.push_back(AZStd::move(supportsMethodContract)); } } diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorErase.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorErase.cpp index adcf8c4ff8..ebb7a8233a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorErase.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorErase.cpp @@ -59,7 +59,7 @@ namespace ScriptCanvas if (sourceType == SourceType::SourceInput) { ContractDescriptor supportsMethodContract; - supportsMethodContract.m_createFunc = [this]() -> SupportsMethodContract* { return aznew SupportsMethodContract("Erase"); }; + supportsMethodContract.m_createFunc = []() -> SupportsMethodContract* { return aznew SupportsMethodContract("Erase"); }; contractDescs.push_back(AZStd::move(supportsMethodContract)); } } diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorFront.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorFront.cpp index 15f80896cd..d83711adbe 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorFront.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorFront.cpp @@ -23,7 +23,7 @@ namespace ScriptCanvas if (sourceType == SourceType::SourceInput) { ContractDescriptor supportsMethodContract; - supportsMethodContract.m_createFunc = [this]() -> SupportsMethodContract* { return aznew SupportsMethodContract("Front"); }; + supportsMethodContract.m_createFunc = []() -> SupportsMethodContract* { return aznew SupportsMethodContract("Front"); }; contractDescs.push_back(AZStd::move(supportsMethodContract)); } } diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorInsert.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorInsert.cpp index 30efece944..7374b3442f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorInsert.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorInsert.cpp @@ -21,7 +21,7 @@ namespace ScriptCanvas if (sourceType == SourceType::SourceInput) { ContractDescriptor supportsMethodContract; - supportsMethodContract.m_createFunc = [this]() -> SupportsMethodContract* { return aznew SupportsMethodContract("Insert"); }; + supportsMethodContract.m_createFunc = []() -> SupportsMethodContract* { return aznew SupportsMethodContract("Insert"); }; contractDescs.push_back(AZStd::move(supportsMethodContract)); } } diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorPushBack.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorPushBack.cpp index 04f6b0756e..5793d06aec 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorPushBack.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorPushBack.cpp @@ -21,7 +21,7 @@ namespace ScriptCanvas if (sourceType == SourceType::SourceInput) { ContractDescriptor supportsMethodContract; - supportsMethodContract.m_createFunc = [this]() -> SupportsMethodContract* { return aznew SupportsMethodContract("PushBack"); }; + supportsMethodContract.m_createFunc = []() -> SupportsMethodContract* { return aznew SupportsMethodContract("PushBack"); }; contractDescs.push_back(AZStd::move(supportsMethodContract)); } } diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/SpawnNodeable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/SpawnNodeable.cpp index d11e916d42..e28ed9dce8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/SpawnNodeable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/SpawnNodeable.cpp @@ -101,7 +101,7 @@ namespace ScriptCanvas::Nodeables::Spawning return; } - auto preSpawnCB = [this, translation, rotation, scale]([[maybe_unused]] AzFramework::EntitySpawnTicket::Id ticketId, + auto preSpawnCB = [translation, rotation, scale]([[maybe_unused]] AzFramework::EntitySpawnTicket::Id ticketId, AzFramework::SpawnableEntityContainerView view) { AZ::Entity* rootEntity = *view.begin(); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringGenerics.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringGenerics.h index b3a4faae30..d5ee52cdb1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringGenerics.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringGenerics.h @@ -34,7 +34,7 @@ namespace ScriptCanvas { length = AZ::GetClamp(length, 0, aznumeric_cast(sourceString.size())); - if (length == 0 || index < 0 || index >= sourceString.size()) + if (length == 0 || index >= sourceString.size()) { return {}; } diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/BehaviorContextObjectSerializer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/BehaviorContextObjectSerializer.cpp new file mode 100644 index 0000000000..0f965b012f --- /dev/null +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/BehaviorContextObjectSerializer.cpp @@ -0,0 +1,149 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include +#include +#include + +using namespace ScriptCanvas; + +namespace AZ +{ + AZ_CLASS_ALLOCATOR_IMPL(BehaviorContextObjectSerializer, SystemAllocator, 0); + + JsonSerializationResult::Result BehaviorContextObjectSerializer::Load + ( void* outputValue + , [[maybe_unused]] const Uuid& outputValueTypeId + , const rapidjson::Value& inputValue + , JsonDeserializerContext& context) + { + namespace JSR = JsonSerializationResult; + + AZ_Assert(outputValueTypeId == azrtti_typeid(), "BehaviorContextObjectSerializer Load against output typeID" + "that was not BehaviorContextObject"); + AZ_Assert(outputValue, "BehaviorContextObjectSerializer Load against null output"); + + JsonSerializationResult::ResultCode result(JSR::Tasks::ReadField); + auto outputBehaviorContextObject = reinterpret_cast(outputValue); + + bool isOwned = false; + result.Combine(ContinueLoadingFromJsonObjectField + ( &isOwned + , azrtti_typeid() + , inputValue + , "isOwned" + , context)); + + if (isOwned) + { + AZStd::any storage; + { // any storage begin + + auto typeIdMember = inputValue.FindMember(JsonSerialization::TypeIdFieldIdentifier); + if (typeIdMember == inputValue.MemberEnd()) + { + return context.Report + (JSR::Tasks::ReadField + , JSR::Outcomes::Missing + , AZStd::string::format("BehaviorContextObjectSerializer::Load failed to load the %s member" + , JsonSerialization::TypeIdFieldIdentifier)); + } + + AZ::Uuid typeId; + result.Combine(LoadTypeId(typeId, typeIdMember->value, context)); + if (typeId.IsNull()) + { + return context.Report(JSR::Tasks::ReadField, JSR::Outcomes::Catastrophic + , "BehaviorContextObjectSerializer::Load failed to load the AZ TypeId of the value"); + } + + storage = context.GetSerializeContext()->CreateAny(typeId); + if (storage.empty() || storage.type() != typeId) + { + return context.Report(result, "BehaviorContextObjectSerializer::Load failed to load a value matched the reported AZ " + "TypeId. The C++ declaration may have been deleted or changed."); + } + + result.Combine(ContinueLoadingFromJsonObjectField(AZStd::any_cast(&storage), typeId, inputValue, "value", context)); + } // any storage end + + auto bcClass = AZ::BehaviorContextHelper::GetClass(storage.type()); + BehaviorContextObject::Deserialize(*outputBehaviorContextObject, *bcClass, storage); + } + + return context.Report(result, result.GetProcessing() != JSR::Processing::Halted + ? "BehaviorContextObjectSerializer Load finished loading BehaviorContextObject" + : "BehaviorContextObjectSerializer Load failed to load BehaviorContextObject"); + } + + JsonSerializationResult::Result BehaviorContextObjectSerializer::Store + ( rapidjson::Value& outputValue + , const void* inputValue + , const void* defaultValue + , [[maybe_unused]] const Uuid& valueTypeId + , JsonSerializerContext& context) + { + namespace JSR = JsonSerializationResult; + + AZ_Assert(valueTypeId == azrtti_typeid(), "BehaviorContextObjectSerializer Store against value typeID that " + "was not BehaviorContextObject"); + AZ_Assert(inputValue, "BehaviorContextObjectSerializer Store against null inputValue pointer "); + + auto defaultScriptDataPtr = reinterpret_cast(defaultValue); + auto inputScriptDataPtr = reinterpret_cast(inputValue); + + if (defaultScriptDataPtr) + { + if (AZ::Helpers::CompareAnyValue(inputScriptDataPtr->ToAny(), defaultScriptDataPtr->ToAny())) + { + return context.Report + ( JSR::Tasks::WriteValue, JSR::Outcomes::DefaultsUsed, "BehaviorContextObjectSerializer Store used defaults " + "for BehaviorContextObject"); + } + } + + outputValue.SetObject(); + JSR::ResultCode result(JSR::Tasks::WriteValue); + const bool isInputOwned = inputScriptDataPtr->IsOwned(); + const bool isDefaultOwned = defaultScriptDataPtr ? defaultScriptDataPtr->IsOwned() : false; + result.Combine(ContinueStoringToJsonObjectField + ( outputValue + , "isOwned" + , &isInputOwned + , &isDefaultOwned + , azrtti_typeid() + , context)); + + if (isInputOwned) + { + // any storage begin + { + rapidjson::Value typeValue; + result.Combine(StoreTypeId(typeValue, inputScriptDataPtr->ToAny().type(), context)); + outputValue.AddMember + ( rapidjson::StringRef(JsonSerialization::TypeIdFieldIdentifier) + , AZStd::move(typeValue) + , context.GetJsonAllocator()); + } + + result.Combine(ContinueStoringToJsonObjectField + ( outputValue + , "value" + , inputScriptDataPtr->Get() + , defaultScriptDataPtr ? defaultScriptDataPtr->Get() : nullptr + , inputScriptDataPtr->ToAny().type() + , context)); + // datum storage end + } + + return context.Report(result, result.GetProcessing() != JSR::Processing::Halted + ? "BehaviorContextObjectSerializer Store finished saving BehaviorContextObject" + : "BehaviorContextObjectSerializer Store failed to save BehaviorContextObject"); + } +} diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/BehaviorContextObjectSerializer.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/BehaviorContextObjectSerializer.h new file mode 100644 index 0000000000..012bb71680 --- /dev/null +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/BehaviorContextObjectSerializer.h @@ -0,0 +1,37 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include + +namespace AZ +{ + class BehaviorContextObjectSerializer + : public BaseJsonSerializer + { + public: + AZ_RTTI(BehaviorContextObjectSerializer, "{88469C4C-923F-4508-A45C-33DDBB91074E}", BaseJsonSerializer); + AZ_CLASS_ALLOCATOR_DECL; + + private: + JsonSerializationResult::Result Load + ( void* outputValue + , const Uuid& outputValueTypeId + , const rapidjson::Value& inputValue + , JsonDeserializerContext& context) override; + + JsonSerializationResult::Result Store + ( rapidjson::Value& outputValue + , const void* inputValue + , const void* defaultValue + , const Uuid& valueTypeId, JsonSerializerContext& context) override; + }; +} diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/DatumSerializer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/DatumSerializer.cpp index 44ca1730a8..37d6e2c35f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/DatumSerializer.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/DatumSerializer.cpp @@ -6,12 +6,27 @@ * */ +#include #include #include #include using namespace ScriptCanvas; +namespace DatumSerializerCpp +{ + bool IsEventInput(const AZ::Uuid& inputType) + { + AZ::BehaviorContext* behaviorContext = nullptr; + AZ::ComponentApplicationBus::BroadcastResult(behaviorContext, &AZ::ComponentApplicationRequests::GetBehaviorContext); + AZ_Assert(behaviorContext, "Can't serialize data properly without checking the type, for which we need behavior context!"); + auto bcClassIter = behaviorContext->m_typeToClassMap.find(inputType); + return bcClassIter != behaviorContext->m_typeToClassMap.end() + && bcClassIter->second->m_azRtti + && bcClassIter->second->m_azRtti->GetGenericTypeId() == azrtti_typeid(); + } +} + namespace AZ { AZ_CLASS_ALLOCATOR_IMPL(DatumSerializer, SystemAllocator, 0); @@ -50,10 +65,23 @@ namespace AZ , "scriptCanvasType" , context)); - AZStd::any storage; - { // datum storage begin - AZ::Uuid typeId = AZ::Uuid::CreateNull(); + // datum storage begin + auto isNullPointerMember = inputValue.FindMember("isNullPointer"); + if (isNullPointerMember == inputValue.MemberEnd()) + { + return context.Report + ( JSR::Tasks::ReadField + , JSR::Outcomes::Missing + , "DatumSerializer::Load failed to load the 'isNullPointer' member"); + } + if (isNullPointerMember->value.GetBool()) + { + *outputDatum = Datum(scType, Datum::eOriginality::Original); + } + else + { + AZ::Uuid typeId = AZ::Uuid::CreateNull(); auto typeIdMember = inputValue.FindMember(JsonSerialization::TypeIdFieldIdentifier); if (typeIdMember == inputValue.MemberEnd()) { @@ -71,7 +99,7 @@ namespace AZ , "DatumSerializer::Load failed to load the AZ TypeId of the value"); } - storage = context.GetSerializeContext()->CreateAny(typeId); + AZStd::any storage = context.GetSerializeContext()->CreateAny(typeId); if (storage.empty() || storage.type() != typeId) { return context.Report(result, "DatumSerializer::Load failed to load a value matched the reported AZ TypeId. " @@ -79,22 +107,25 @@ namespace AZ } result.Combine(ContinueLoadingFromJsonObjectField(AZStd::any_cast(&storage), typeId, inputValue, "value", context)); + *outputDatum = Datum(scType, Datum::eOriginality::Original, AZStd::any_cast(&storage), scType.GetAZType()); } // datum storage end AZStd::string label; AZ_Assert(azrtti_typeidm_datumLabel)>() == azrtti_typeid() , "m_datumLabel type changed and won't load properly"); - result.Combine(ContinueLoadingFromJsonObjectField + result.Combine(ContinueLoadingFromJsonObjectField ( &label , azrtti_typeidm_datumLabel)>() , inputValue , "label" , context)); + outputDatum->SetLabel(label); - Datum copy(scType, Datum::eOriginality::Original, AZStd::any_cast(&storage), scType.GetAZType()); - copy.SetLabel(label); - *outputDatum = copy; - + if (auto listeners = context.GetMetadata().Find()) + { + listeners->push_back(outputDatum); + } + return context.Report(result, result.GetProcessing() != JSR::Processing::Halted ? "DatumSerializer Load finished loading Datum" : "DatumSerializer Load failed to load Datum"); @@ -123,7 +154,7 @@ namespace AZ ( JSR::Tasks::WriteValue, JSR::Outcomes::DefaultsUsed, "DatumSerializer Store used defaults for Datum"); } } - + JSR::ResultCode result(JSR::Tasks::WriteValue); outputValue.SetObject(); @@ -142,26 +173,34 @@ namespace AZ , defaultScriptDataPtr ? &defaultScriptDataPtr->GetType() : nullptr , azrtti_typeidGetType())>() , context)); - - { // datum storage begin - { - rapidjson::Value typeValue; - result.Combine(StoreTypeId(typeValue, inputScriptDataPtr->GetType().GetAZType(), context)); - outputValue.AddMember - ( rapidjson::StringRef(JsonSerialization::TypeIdFieldIdentifier) - , AZStd::move(typeValue) - , context.GetJsonAllocator()); - } + + + // datum storage begin + auto inputObjectSource = inputScriptDataPtr->GetAsDanger(); + const bool isNullPointer = inputObjectSource == nullptr || DatumSerializerCpp::IsEventInput(inputScriptDataPtr->GetType().GetAZType()); + outputValue.AddMember("isNullPointer", rapidjson::Value(isNullPointer), context.GetJsonAllocator()); + + if (!isNullPointer) + { + rapidjson::Value typeValue; + result.Combine(StoreTypeId(typeValue, inputScriptDataPtr->GetType().GetAZType(), context)); + outputValue.AddMember + ( rapidjson::StringRef(JsonSerialization::TypeIdFieldIdentifier) + , AZStd::move(typeValue) + , context.GetJsonAllocator()); + + auto defaultObjectSource = defaultScriptDataPtr ? defaultScriptDataPtr->GetAsDanger() : nullptr; result.Combine(ContinueStoringToJsonObjectField ( outputValue , "value" - , inputScriptDataPtr->GetAsDanger() - , defaultScriptDataPtr ? defaultScriptDataPtr->GetAsDanger() : nullptr + , inputObjectSource + , defaultObjectSource , inputScriptDataPtr->GetType().GetAZType() , context)); - } // datum storage end - + } + // datum storage end + result.Combine(ContinueStoringToJsonObjectField ( outputValue , "label" @@ -174,5 +213,4 @@ namespace AZ ? "DatumSerializer Store finished saving Datum" : "DatumSerializer Store failed to save Datum"); } - } diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/RuntimeVariableSerializer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/RuntimeVariableSerializer.cpp index 763206df38..e03a5e4096 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/RuntimeVariableSerializer.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Serialization/RuntimeVariableSerializer.cpp @@ -50,6 +50,7 @@ namespace AZ } result.Combine(ContinueLoadingFromJsonObjectField(AZStd::any_cast(&outputVariable->value), typeId, inputValue, "value", context)); + return context.Report(result, result.GetProcessing() != JSR::Processing::Halted ? "RuntimeVariableSerializer Load finished loading RuntimeVariable" : "RuntimeVariableSerializer Load failed to load RuntimeVariable"); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationUtilities.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationUtilities.cpp index 7c03102a71..a9ca526373 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationUtilities.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationUtilities.cpp @@ -30,7 +30,7 @@ namespace TranslationUtilitiesCPP AZ_INLINE const char* GetTabs(size_t tabs) { - AZ_Assert(tabs >= 0 && tabs <= k_maxTabs, "invalid argument to GetTabs"); + AZ_Assert(tabs <= k_maxTabs, "invalid argument to GetTabs"); static const char* const k_tabs[] = { diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableData.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableData.cpp index 7474ebbf35..9869602c84 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableData.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableData.cpp @@ -144,7 +144,6 @@ namespace ScriptCanvas GraphVariable* VariableData::FindVariable(VariableId variableId) { - AZStd::pair resultPair; auto foundIt = m_variableMap.find(variableId); return foundIt != m_variableMap.end() ? &foundIt->second : nullptr; } diff --git a/Gems/ScriptCanvas/Code/Source/PerformanceStatistician.cpp b/Gems/ScriptCanvas/Code/Source/PerformanceStatistician.cpp index e5a5b3cd19..826490e487 100644 --- a/Gems/ScriptCanvas/Code/Source/PerformanceStatistician.cpp +++ b/Gems/ScriptCanvas/Code/Source/PerformanceStatistician.cpp @@ -104,7 +104,6 @@ namespace ScriptCanvas void PerformanceStatistician::OnStartTrackingRequested() { m_accumulatedStats.tickCount = 0; - m_accumulatedTickCountRemaining; m_accumulatedStartTime = AZStd::chrono::system_clock::now(); } diff --git a/Gems/ScriptCanvas/Code/Source/SystemComponent.cpp b/Gems/ScriptCanvas/Code/Source/SystemComponent.cpp index 0a82b8cf2a..ba02fa8a62 100644 --- a/Gems/ScriptCanvas/Code/Source/SystemComponent.cpp +++ b/Gems/ScriptCanvas/Code/Source/SystemComponent.cpp @@ -7,7 +7,6 @@ */ #include - #include #include #include @@ -23,8 +22,9 @@ #include #include #include -#include #include +#include +#include #include #include @@ -59,6 +59,7 @@ namespace ScriptCanvas { void SystemComponent::Reflect(AZ::ReflectContext* context) { + VersionData::Reflect(context); Nodeable::Reflect(context); ReflectLibraries(context); @@ -88,13 +89,9 @@ namespace ScriptCanvas if (AZ::JsonRegistrationContext* jsonContext = azrtti_cast(context)) { - jsonContext->Serializer() - ->HandlesType() - ; - - jsonContext->Serializer() - ->HandlesType() - ; + jsonContext->Serializer()->HandlesType(); + jsonContext->Serializer()->HandlesType(); + jsonContext->Serializer()->HandlesType(); } #if defined(SC_EXECUTION_TRACE_ENABLED) @@ -263,7 +260,7 @@ namespace ScriptCanvas } LockType lock(m_ownedObjectsByAddressMutex); - auto emplaceResult = m_ownedObjectsByAddress.emplace(object, behaviorContextObject); + [[maybe_unused]] auto emplaceResult = m_ownedObjectsByAddress.emplace(object, behaviorContextObject); AZ_Assert(emplaceResult.second, "Adding second owned reference to memory"); } diff --git a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasBuilderTests.cpp b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasBuilderTests.cpp index 241d7d2df9..5b38b640ca 100644 --- a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasBuilderTests.cpp +++ b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasBuilderTests.cpp @@ -91,7 +91,6 @@ protected: const char* GetAppRoot() const override { return nullptr; } const char* GetEngineRoot() const override { return nullptr; } const char* GetExecutableFolder() const override { return nullptr; } - AZ::Debug::DrillerManager* GetDrillerManager() override { return nullptr; } void EnumerateEntities(const AZ::ComponentApplicationRequests::EntityCallback& /*callback*/) override {} void QueryApplicationType(AZ::ApplicationTypeQuery& /*appType*/) const override {} ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/ScriptCanvas/Code/scriptcanvasgem_common_files.cmake b/Gems/ScriptCanvas/Code/scriptcanvasgem_common_files.cmake index f1215dd580..7984340b7a 100644 --- a/Gems/ScriptCanvas/Code/scriptcanvasgem_common_files.cmake +++ b/Gems/ScriptCanvas/Code/scriptcanvasgem_common_files.cmake @@ -74,6 +74,7 @@ set(FILES Include/ScriptCanvas/Core/NodeableNodeOverloaded.cpp Include/ScriptCanvas/Core/NodeableNodeOverloaded.h Include/ScriptCanvas/Core/NodeFunctionGeneric.h + Include/ScriptCanvas/Core/SerializationListener.h Include/ScriptCanvas/Core/Slot.cpp Include/ScriptCanvas/Core/Slot.h Include/ScriptCanvas/Core/SlotConfigurationDefaults.h @@ -539,6 +540,8 @@ set(FILES Include/ScriptCanvas/Profiler/Aggregator.cpp Include/ScriptCanvas/Profiler/DrillerEvents.h Include/ScriptCanvas/Profiler/DrillerEvents.cpp + Include/ScriptCanvas/Serialization/BehaviorContextObjectSerializer.h + Include/ScriptCanvas/Serialization/BehaviorContextObjectSerializer.cpp Include/ScriptCanvas/Serialization/DatumSerializer.h Include/ScriptCanvas/Serialization/DatumSerializer.cpp Include/ScriptCanvas/Serialization/RuntimeVariableSerializer.h diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/UtilityStates.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/UtilityStates.h index e6cdf0e390..429331e054 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/UtilityStates.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/UtilityStates.h @@ -139,7 +139,6 @@ namespace ScriptCanvasDeveloper void OnStateActionsComplete() override; private: - int m_row = 0; int m_rowCount = 0; MoveMouseToViewRowAction* m_mouseToRow = nullptr; diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/NodePaletteFullCreation.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/NodePaletteFullCreation.cpp index 35dc250a33..3a66aefe6b 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/NodePaletteFullCreation.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/NodePaletteFullCreation.cpp @@ -92,8 +92,6 @@ namespace ScriptCanvasDeveloperEditor int m_heightOffset = 0; int m_maxRowHeight = 0; - - int creationCounter = 100; }; void NodePaletteFullCreationAction() diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/EditorMouseActions.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/EditorMouseActions.cpp index cf757af1ec..0ef306f638 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/EditorMouseActions.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/EditorMouseActions.cpp @@ -155,7 +155,6 @@ namespace ScriptCanvasDeveloper m_startPosition = QCursor::pos(); } - QPointF currentPosition = QCursor::pos(); QPointF targetPoint = m_targetPosition; float percentage = aznumeric_cast(m_tickCount)/aznumeric_cast(m_tickDuration); @@ -170,6 +169,7 @@ namespace ScriptCanvasDeveloper #if defined(AZ_COMPILER_MSVC) INPUT osInput = { 0 }; + QPointF currentPosition = QCursor::pos(); osInput.type = INPUT_MOUSE; osInput.mi.mouseData = 0; diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/VariableActions.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/VariableActions.cpp index d46f52bfdf..72203f6710 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/VariableActions.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/VariableActions.cpp @@ -275,7 +275,6 @@ namespace ScriptCanvasDeveloper } QRegion region = m_graphPalette->visibleRegion(); - QRect boundingRegion = region.boundingRect(); m_indexIsVisible = region.contains(m_graphPalette->visualRect(m_displayIndex).center()); } diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/UtilityStates.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/UtilityStates.cpp index 459dc82542..6b0636fbdd 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/UtilityStates.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/UtilityStates.cpp @@ -187,7 +187,6 @@ namespace ScriptCanvasDeveloper DeleteVariableRowFromPaletteState::DeleteVariableRowFromPaletteState(int row) : NamedAutomationState("DeleteVariableRowFromPaletteState") - , m_row(row) , m_clickAction(Qt::MouseButton::LeftButton) , m_deleteAction(VK_DELETE) { diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTestDialog.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTestDialog.h index 0284e2588e..84597a991c 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTestDialog.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTestDialog.h @@ -133,7 +133,5 @@ namespace ScriptCanvasDeveloper QLabel* m_errorTestLabel = nullptr; QLabel* m_runLabel = nullptr; QMainWindow* m_scriptCanvasWindow = nullptr; - - QWindow* m_canvasWindow = nullptr; }; } diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/InteractionTests.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/InteractionTests.cpp index 7a6f628431..264583c1a9 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/InteractionTests.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/InteractionTests.cpp @@ -176,7 +176,7 @@ namespace ScriptCanvasDeveloper ProcessCreationSet(); } } - else if (stateId == stateId == m_duplicateCheckpoint->GetStateId()) + else if (stateId == m_duplicateCheckpoint->GetStateId()) { if (m_createdSet.empty()) { diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.cpp index 860d9af27a..c259a626ee 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.cpp @@ -669,7 +669,6 @@ namespace ScriptCanvasDeveloper VariableLifeCycleTest::VariableLifeCycleTest(AZStd::string name, AZStd::vector dataTypes, CreateVariableAction::CreationType creationType) : EditorAutomationTest(name.c_str()) - , m_creationType(creationType) , m_typesToMake(dataTypes) { m_variableTypeId = "ActiveVariableTypeId"; diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.h index d4438d222a..252227cf17 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.h @@ -256,14 +256,11 @@ namespace ScriptCanvasDeveloper int SetupNextVariable(); - CreateVariableAction::CreationType m_creationType = CreateVariableAction::CreationType::AutoComplete; - ScriptCanvas::VariableId m_activeVariableId; AZStd::vector m_createVariables; AZStd::vector m_typesToMake; bool m_createVariablesNodesViaContextMenu = true; - bool m_closedGraph = false; int m_activeIndex = 0; GraphCanvas::ViewId m_viewId; diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/WrapperMock.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/WrapperMock.cpp index f26c36573c..6663a7a5cd 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/WrapperMock.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/WrapperMock.cpp @@ -67,7 +67,6 @@ namespace ScriptCanvasDeveloper ScriptCanvasEditor::NodeIdPair nodePair; - const AZ::Vector2 scenePointVec2 = AZ::Vector2(aznumeric_cast(scenePoint.x()), aznumeric_cast(scenePoint.y())); if (result == addMock) { ScriptCanvasEditor::EditorGraphRequestBus::EventResult(nodePair, scriptCanvasId, &ScriptCanvasEditor::EditorGraphRequests::CreateCustomNode, azrtti_typeid(), AZ::Vector2(aznumeric_cast(scenePoint.x()), aznumeric_cast(scenePoint.y()))); diff --git a/Gems/ScriptCanvasPhysics/Code/Tests/ScriptCanvasPhysicsTest.cpp b/Gems/ScriptCanvasPhysics/Code/Tests/ScriptCanvasPhysicsTest.cpp index 14eb69d669..ac6109ce30 100644 --- a/Gems/ScriptCanvasPhysics/Code/Tests/ScriptCanvasPhysicsTest.cpp +++ b/Gems/ScriptCanvasPhysics/Code/Tests/ScriptCanvasPhysicsTest.cpp @@ -313,7 +313,6 @@ namespace ScriptCanvasPhysicsTests .WillByDefault(Return(m_hitResult)); // given raycast data - const AZ::Vector3 start = AZ::Vector3::CreateZero(); const AZ::Vector3 direction = AZ::Vector3(0.f,1.f,0.f); const float distance = 1.f; const AZStd::string collisionGroup = "default"; @@ -346,7 +345,6 @@ namespace ScriptCanvasPhysicsTests .WillByDefault(Return(m_hitResult)); // given raycast data - const AZ::Vector3 start = AZ::Vector3::CreateZero(); const AZ::Vector3 direction = AZ::Vector3(0.f,1.f,0.f); const float distance = 1.f; const AZStd::string collisionGroup = "default"; @@ -385,7 +383,6 @@ namespace ScriptCanvasPhysicsTests .WillByDefault(Return(m_hitResult)); // given shapecast data - const AZ::Vector3 start = AZ::Vector3::CreateZero(); const AZ::Vector3 direction = AZ::Vector3(0.f,1.f,0.f); const float distance = 1.f; const AZStd::string collisionGroup = "default"; diff --git a/Gems/ScriptCanvasTesting/Assets/ScriptCanvas/UnitTests/LY_SC_UnitTest_PathologicalFlowOfControl.scriptcanvas b/Gems/ScriptCanvasTesting/Assets/ScriptCanvas/UnitTests/LY_SC_UnitTest_PathologicalFlowOfControl.scriptcanvas index 54dbf2e35e..f2666232d8 100644 --- a/Gems/ScriptCanvasTesting/Assets/ScriptCanvas/UnitTests/LY_SC_UnitTest_PathologicalFlowOfControl.scriptcanvas +++ b/Gems/ScriptCanvasTesting/Assets/ScriptCanvas/UnitTests/LY_SC_UnitTest_PathologicalFlowOfControl.scriptcanvas @@ -1,11310 +1,7028 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +{ + "Type": "JsonSerialization", + "Version": 1, + "ClassName": "ScriptCanvasData", + "ClassData": { + "m_scriptCanvas": { + "Id": { + "id": 31194166714268 + }, + "Name": "LY_SC_UnitTest_PathologicalFlowOfControl", + "Components": { + "Component_[3557501584054890409]": { + "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph", + "Id": 3557501584054890409, + "m_graphData": { + "m_nodes": [ + { + "Id": { + "id": 31288655994780 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[10251308001417185158]": { + "$type": "EBusEventHandler", + "Id": 10251308001417185158, + "Slots": [ + { + "id": { + "m_id": "{C189EE08-DC89-4AF2-88BC-B564F84F28A6}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{10BB0A14-C955-464E-8745-7FBC88E24049}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{A7026536-ED61-48CA-8329-601DACF8A178}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{95E02974-9E1C-407C-94DA-087C5B4EC55C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{42C5EF09-0843-4478-8BFF-0401009FACEA}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{CC23FBA6-EBA5-43DF-AB98-3024D4A01B21}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Number", + "DisplayDataType": { + "m_type": 3 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{D85921A2-82C6-4DE1-8DB0-DC93E80CD72B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ScriptTimePoint", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{4C0F6AD4-0D4F-4354-AD4A-0C01E948245C}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{99FA955C-7E6E-4539-85B0-16CBFBB1F0E3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnTick", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{3F00BC02-DBFB-4D4C-B5FD-4BE1C831E7AF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Result: Number", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{3BAF3F8C-54A2-4AD7-82F2-9EBB4AEF48EF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:GetTickOrder", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Result: Number" + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 1502188240 + }, + "Value": { + "m_eventName": "OnTick", + "m_eventId": { + "Value": 1502188240 + }, + "m_eventSlotId": { + "m_id": "{99FA955C-7E6E-4539-85B0-16CBFBB1F0E3}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{CC23FBA6-EBA5-43DF-AB98-3024D4A01B21}" + }, + { + "m_id": "{D85921A2-82C6-4DE1-8DB0-DC93E80CD72B}" + } + ], + "m_numExpectedArguments": 2 + } + }, + { + "Key": { + "Value": 1890826333 + }, + "Value": { + "m_eventName": "GetTickOrder", + "m_eventId": { + "Value": 1890826333 + }, + "m_eventSlotId": { + "m_id": "{3BAF3F8C-54A2-4AD7-82F2-9EBB4AEF48EF}" + }, + "m_resultSlotId": { + "m_id": "{3F00BC02-DBFB-4D4C-B5FD-4BE1C831E7AF}" + } + } + } + ], + "m_ebusName": "TickBus", + "m_busId": { + "Value": 1209186864 + }, + "m_autoConnectToGraphOwner": false + } + } + }, + { + "Id": { + "id": 31314425798556 + }, + "Name": "EBusEventHandler", + "Components": { + "Component_[10251308001417185158]": { + "$type": "EBusEventHandler", + "Id": 10251308001417185158, + "Slots": [ + { + "id": { + "m_id": "{C189EE08-DC89-4AF2-88BC-B564F84F28A6}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Connect", + "toolTip": "Connect this event handler to the specified entity.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{10BB0A14-C955-464E-8745-7FBC88E24049}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Disconnect", + "toolTip": "Disconnect this event handler.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{A7026536-ED61-48CA-8329-601DACF8A178}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnConnected", + "toolTip": "Signaled when a connection has taken place.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{95E02974-9E1C-407C-94DA-087C5B4EC55C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnDisconnected", + "toolTip": "Signaled when this event handler is disconnected.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{42C5EF09-0843-4478-8BFF-0401009FACEA}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "OnFailure", + "toolTip": "Signaled when it is not possible to connect this handler.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{CC23FBA6-EBA5-43DF-AB98-3024D4A01B21}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Number", + "DisplayDataType": { + "m_type": 3 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{D85921A2-82C6-4DE1-8DB0-DC93E80CD72B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ScriptTimePoint", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{4C0F6AD4-0D4F-4354-AD4A-0C01E948245C}" + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{99FA955C-7E6E-4539-85B0-16CBFBB1F0E3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:OnTick", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + }, + { + "id": { + "m_id": "{3F00BC02-DBFB-4D4C-B5FD-4BE1C831E7AF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Result: Number", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{3BAF3F8C-54A2-4AD7-82F2-9EBB4AEF48EF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "ExecutionSlot:GetTickOrder", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + }, + "IsLatent": true + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Result: Number" + } + ], + "m_eventMap": [ + { + "Key": { + "Value": 1502188240 + }, + "Value": { + "m_eventName": "OnTick", + "m_eventId": { + "Value": 1502188240 + }, + "m_eventSlotId": { + "m_id": "{99FA955C-7E6E-4539-85B0-16CBFBB1F0E3}" + }, + "m_parameterSlotIds": [ + { + "m_id": "{CC23FBA6-EBA5-43DF-AB98-3024D4A01B21}" + }, + { + "m_id": "{D85921A2-82C6-4DE1-8DB0-DC93E80CD72B}" + } + ], + "m_numExpectedArguments": 2 + } + }, + { + "Key": { + "Value": 1890826333 + }, + "Value": { + "m_eventName": "GetTickOrder", + "m_eventId": { + "Value": 1890826333 + }, + "m_eventSlotId": { + "m_id": "{3BAF3F8C-54A2-4AD7-82F2-9EBB4AEF48EF}" + }, + "m_resultSlotId": { + "m_id": "{3F00BC02-DBFB-4D4C-B5FD-4BE1C831E7AF}" + } + } + } + ], + "m_ebusName": "TickBus", + "m_busId": { + "Value": 1209186864 + }, + "m_autoConnectToGraphOwner": false + } + } + }, + { + "Id": { + "id": 31211346583452 + }, + "Name": "SC-Node(Or)", + "Components": { + "Component_[10667361034986907134]": { + "$type": "Or", + "Id": 10667361034986907134, + "Slots": [ + { + "id": { + "m_id": "{78999179-DFFF-450B-B66E-A4C4E1638F0C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{C5E1B10E-FDFA-45F8-B6AF-BD9C672986FC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Signal to perform the evaluation when desired.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{7FED3519-4670-4B3D-B81F-44393C2D7787}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "True", + "toolTip": "Signaled if the result of the operation is true.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E2D1192C-902D-4C82-9DE4-BBC20B31A54B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "False", + "toolTip": "Signaled if the result of the operation is false.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E8D87D3B-0974-4937-BEC5-8AE3BED5EBC2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value A", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{56CECF75-DEC3-4491-85E6-7C0CE4B950D4}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value B", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 0 + }, + "isNullPointer": false, + "$type": "bool", + "value": false, + "label": "Value A" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 0 + }, + "isNullPointer": false, + "$type": "bool", + "value": false, + "label": "Value B" + } + ] + } + } + }, + { + "Id": { + "id": 31267181158300 + }, + "Name": "SC-Node(OperatorAdd)", + "Components": { + "Component_[10710360517941107527]": { + "$type": "OperatorAdd", + "Id": 10710360517941107527, + "Slots": [ + { + "id": { + "m_id": "{CDEA58A6-1B59-4476-B26E-0D5A828F35C7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{5E66E5C1-AE26-4919-BFD7-66EC6DE9B7BB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{6EA79D99-58BC-485B-8015-3B85753F522A}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null, + { + "$type": "MathOperatorContract", + "NativeTypes": [ + { + "m_type": 3 + }, + { + "m_type": 6 + }, + { + "m_type": 8 + }, + { + "m_type": 9 + }, + { + "m_type": 10 + }, + { + "m_type": 11 + }, + { + "m_type": 12 + }, + { + "m_type": 14 + }, + { + "m_type": 15 + } + ] + } + ], + "slotName": "Number", + "toolTip": "An operand to use in performing the specified Operation", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1114760223 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 1114760223 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{0BA96D88-BF13-4810-B01C-CA513AF84440}" + } + }, + { + "id": { + "m_id": "{A0CEC830-6910-452B-B850-75B6F727C455}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null, + { + "$type": "MathOperatorContract", + "NativeTypes": [ + { + "m_type": 3 + }, + { + "m_type": 6 + }, + { + "m_type": 8 + }, + { + "m_type": 9 + }, + { + "m_type": 10 + }, + { + "m_type": 11 + }, + { + "m_type": 12 + }, + { + "m_type": 14 + }, + { + "m_type": 15 + } + ] + } + ], + "slotName": "Number", + "toolTip": "An operand to use in performing the specified Operation", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1114760223 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 1114760223 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{5AAA51D3-6C26-4D13-91E2-4D2A8B33C7F0}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + { + "$type": "MathOperatorContract", + "NativeTypes": [ + { + "m_type": 3 + }, + { + "m_type": 6 + }, + { + "m_type": 8 + }, + { + "m_type": 9 + }, + { + "m_type": 10 + }, + { + "m_type": 11 + }, + { + "m_type": 12 + }, + { + "m_type": 14 + }, + { + "m_type": 15 + } + ] + } + ], + "slotName": "Result", + "toolTip": "The result of the specified operation", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1114760223 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 1114760223 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Number" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Number" + } + ] + } + } + }, + { + "Id": { + "id": 31305835863964 + }, + "Name": "SC-Node(OperatorAdd)", + "Components": { + "Component_[10710360517941107527]": { + "$type": "OperatorAdd", + "Id": 10710360517941107527, + "Slots": [ + { + "id": { + "m_id": "{CDEA58A6-1B59-4476-B26E-0D5A828F35C7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{5E66E5C1-AE26-4919-BFD7-66EC6DE9B7BB}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{6EA79D99-58BC-485B-8015-3B85753F522A}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null, + { + "$type": "MathOperatorContract", + "NativeTypes": [ + { + "m_type": 3 + }, + { + "m_type": 6 + }, + { + "m_type": 8 + }, + { + "m_type": 9 + }, + { + "m_type": 10 + }, + { + "m_type": 11 + }, + { + "m_type": 12 + }, + { + "m_type": 14 + }, + { + "m_type": 15 + } + ] + } + ], + "slotName": "Number", + "toolTip": "An operand to use in performing the specified Operation", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1114760223 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 1114760223 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{0BA96D88-BF13-4810-B01C-CA513AF84440}" + } + }, + { + "id": { + "m_id": "{A0CEC830-6910-452B-B850-75B6F727C455}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null, + { + "$type": "MathOperatorContract", + "NativeTypes": [ + { + "m_type": 3 + }, + { + "m_type": 6 + }, + { + "m_type": 8 + }, + { + "m_type": 9 + }, + { + "m_type": 10 + }, + { + "m_type": 11 + }, + { + "m_type": 12 + }, + { + "m_type": 14 + }, + { + "m_type": 15 + } + ] + } + ], + "slotName": "Number", + "toolTip": "An operand to use in performing the specified Operation", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1114760223 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 1114760223 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{5AAA51D3-6C26-4D13-91E2-4D2A8B33C7F0}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + { + "$type": "MathOperatorContract", + "NativeTypes": [ + { + "m_type": 3 + }, + { + "m_type": 6 + }, + { + "m_type": 8 + }, + { + "m_type": 9 + }, + { + "m_type": 10 + }, + { + "m_type": 11 + }, + { + "m_type": 12 + }, + { + "m_type": 14 + }, + { + "m_type": 15 + } + ] + } + ], + "slotName": "Result", + "toolTip": "The result of the specified operation", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1114760223 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 1114760223 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Number" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Number" + } + ] + } + } + }, + { + "Id": { + "id": 31228526452636 + }, + "Name": "SC-Node(And)", + "Components": { + "Component_[11788551755091650733]": { + "$type": "And", + "Id": 11788551755091650733, + "Slots": [ + { + "id": { + "m_id": "{46CFA92C-E217-41E2-BC0A-C7C4BA7D3060}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{FAFAB55A-69F1-495D-82FC-7D36F7842DA9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Signal to perform the evaluation when desired.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{5BDD309F-0047-43E9-A911-475E47A036EC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "True", + "toolTip": "Signaled if the result of the operation is true.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{7438C80C-9044-442D-8C71-827AB7DC3F0B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "False", + "toolTip": "Signaled if the result of the operation is false.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{0D33ACC4-1331-4F0C-AA29-8863E5312983}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value A", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{E3D62E2D-145C-4931-9FC8-CFE6CEB2FF64}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value B", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 0 + }, + "isNullPointer": false, + "$type": "bool", + "value": false, + "label": "Value A" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 0 + }, + "isNullPointer": false, + "$type": "bool", + "value": false, + "label": "Value B" + } + ] + } + } + }, + { + "Id": { + "id": 31232821419932 + }, + "Name": "SC-Node(ExtractProperty)", + "Components": { + "Component_[11797457255651779243]": { + "$type": "ExtractProperty", + "Id": 11797457255651779243, + "Slots": [ + { + "id": { + "m_id": "{EADFB5B4-ADE0-4935-A102-99F8EC0C711A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "When signaled assigns property values using the supplied source input", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{AC7594DE-A7F0-4519-9E07-0350AEEB25E0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "toolTip": "Signaled after all property haves have been pushed to the output slots", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{0C6BA77F-004F-4229-963F-EF6D6912A5BB}" + }, + "DynamicTypeOverride": 1, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Source", + "toolTip": "The value on which to extract properties from.", + "DisplayDataType": { + "m_type": 3 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{0BA96D88-BF13-4810-B01C-CA513AF84440}" + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Source" + } + ], + "m_dataType": { + "m_type": 3 + } + } + } + }, + { + "Id": { + "id": 31301540896668 + }, + "Name": "SC-Node(ExtractProperty)", + "Components": { + "Component_[11797457255651779243]": { + "$type": "ExtractProperty", + "Id": 11797457255651779243, + "Slots": [ + { + "id": { + "m_id": "{EADFB5B4-ADE0-4935-A102-99F8EC0C711A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "When signaled assigns property values using the supplied source input", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{AC7594DE-A7F0-4519-9E07-0350AEEB25E0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "toolTip": "Signaled after all property haves have been pushed to the output slots", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{0C6BA77F-004F-4229-963F-EF6D6912A5BB}" + }, + "DynamicTypeOverride": 1, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Source", + "toolTip": "The value on which to extract properties from.", + "DisplayDataType": { + "m_type": 3 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{0BA96D88-BF13-4810-B01C-CA513AF84440}" + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Source" + } + ], + "m_dataType": { + "m_type": 3 + } + } + } + }, + { + "Id": { + "id": 31224231485340 + }, + "Name": "SC-Node(ForEach)", + "Components": { + "Component_[11912058231419650479]": { + "$type": "ForEach", + "Id": 11912058231419650479, + "Slots": [ + { + "id": { + "m_id": "{B107E73D-A250-4019-BBF7-9085AEE354B6}" + }, + "DynamicTypeOverride": 2, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Source", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}" + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 3089028177 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{39DB51CB-AA6E-4B3A-93EC-D622C44B3F4B}" + } + }, + { + "id": { + "m_id": "{A9E6B254-446D-492F-B2CF-929CDC04ABFF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Signaled upon node entry", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{B24CD5F3-DE2B-42E9-BD45-0BCFF5A3D4B9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Break", + "toolTip": "Stops the iteration when signaled", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{8A4B7BED-4921-4C08-B35B-56D129A630E9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Each", + "toolTip": "Signalled after each element of the container", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{0DEFFE74-9D9C-4E18-AFA2-12B1657F7D1D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Finished", + "toolTip": "The container has been fully iterated over", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{EDA1A957-FC80-4305-9797-1CC2699D13F8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Boolean", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 4, + "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}" + }, + "isNullPointer": true, + "label": "Source" + } + ], + "m_sourceSlot": { + "m_id": "{B107E73D-A250-4019-BBF7-9085AEE354B6}" + }, + "m_previousTypeId": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", + "m_propertySlots": [ + { + "m_propertySlotId": { + "m_id": "{EDA1A957-FC80-4305-9797-1CC2699D13F8}" + }, + "m_propertyType": { + "m_type": 0 + }, + "m_propertyName": "Boolean" + } + ] + } + } + }, + { + "Id": { + "id": 31284361027484 + }, + "Name": "SC-Node(ForEach)", + "Components": { + "Component_[11912058231419650479]": { + "$type": "ForEach", + "Id": 11912058231419650479, + "Slots": [ + { + "id": { + "m_id": "{B107E73D-A250-4019-BBF7-9085AEE354B6}" + }, + "DynamicTypeOverride": 2, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Source", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}" + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 3089028177 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{39DB51CB-AA6E-4B3A-93EC-D622C44B3F4B}" + } + }, + { + "id": { + "m_id": "{A9E6B254-446D-492F-B2CF-929CDC04ABFF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Signaled upon node entry", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{B24CD5F3-DE2B-42E9-BD45-0BCFF5A3D4B9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Break", + "toolTip": "Stops the iteration when signaled", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{8A4B7BED-4921-4C08-B35B-56D129A630E9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Each", + "toolTip": "Signalled after each element of the container", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{0DEFFE74-9D9C-4E18-AFA2-12B1657F7D1D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Finished", + "toolTip": "The container has been fully iterated over", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{EDA1A957-FC80-4305-9797-1CC2699D13F8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Boolean", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 4, + "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}" + }, + "isNullPointer": true, + "label": "Source" + } + ], + "m_sourceSlot": { + "m_id": "{B107E73D-A250-4019-BBF7-9085AEE354B6}" + }, + "m_previousTypeId": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", + "m_propertySlots": [ + { + "m_propertySlotId": { + "m_id": "{EDA1A957-FC80-4305-9797-1CC2699D13F8}" + }, + "m_propertyType": { + "m_type": 0 + }, + "m_propertyName": "Boolean" + } + ] + } + } + }, + { + "Id": { + "id": 31215641550748 + }, + "Name": "SC-Node(OperatorMul)", + "Components": { + "Component_[13237430188878581756]": { + "$type": "OperatorMul", + "Id": 13237430188878581756, + "Slots": [ + { + "id": { + "m_id": "{2D2F75D9-A1FB-4D70-86EF-8518E119DB07}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{7A580403-C074-4DAD-A65E-BF928EF19DC8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{CD4A3CE3-F0A5-4E82-BC6D-1AD9F2596A7E}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null, + { + "$type": "MathOperatorContract", + "OperatorType": "Multiply", + "NativeTypes": [ + { + "m_type": 3 + }, + { + "m_type": 6 + }, + { + "m_type": 7 + }, + { + "m_type": 14 + }, + { + "m_type": 15 + } + ] + } + ], + "slotName": "Number", + "toolTip": "An operand to use in performing the specified Operation", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1114760223 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 1114760223 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{0BA96D88-BF13-4810-B01C-CA513AF84440}" + } + }, + { + "id": { + "m_id": "{D662CA74-64EF-4D8F-BC80-D222A4990F3E}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null, + { + "$type": "MathOperatorContract", + "OperatorType": "Multiply", + "NativeTypes": [ + { + "m_type": 3 + }, + { + "m_type": 6 + }, + { + "m_type": 7 + }, + { + "m_type": 14 + }, + { + "m_type": 15 + } + ] + } + ], + "slotName": "Number", + "toolTip": "An operand to use in performing the specified Operation", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1114760223 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 1114760223 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{EC0D7AE5-C51F-48EE-BD42-10712F131C57}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + { + "$type": "MathOperatorContract", + "OperatorType": "Multiply", + "NativeTypes": [ + { + "m_type": 3 + }, + { + "m_type": 6 + }, + { + "m_type": 7 + }, + { + "m_type": 14 + }, + { + "m_type": 15 + } + ] + } + ], + "slotName": "Result", + "toolTip": "The result of the specified operation", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1114760223 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 1114760223 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Number" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 1.0, + "label": "Number" + } + ] + } + } + }, + { + "Id": { + "id": 31202756648860 + }, + "Name": "SC-Node(MarkComplete)", + "Components": { + "Component_[13763264706969284951]": { + "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method", + "Id": 13763264706969284951, + "Slots": [ + { + "isVisibile": false, + "id": { + "m_id": "{A438327C-87F6-43C3-A1E2-C4BDAADA8C5D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "EntityID: 0", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{D2BCC38E-DA18-41ED-9B80-DB5602A9DB26}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Report", + "toolTip": "additional notes for the test report", + "DisplayDataType": { + "m_type": 5 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{79C2ABDD-F20A-4042-BF5C-8C09DC9332C7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{11965287-6D28-49B7-B387-3728356C2E0D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 1 + }, + "isNullPointer": false, + "$type": "EntityId", + "value": { + "id": 4276206253 + } + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 5 + }, + "isNullPointer": false, + "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string", + "value": "", + "label": "Report" + } + ], + "methodType": 2, + "methodName": "Mark Complete", + "className": "Unit Testing", + "resultSlotIDs": [ + {} + ], + "prettyClassName": "Unit Testing" + } + } + }, + { + "Id": { + "id": 31280066060188 + }, + "Name": "SC-Node(Not)", + "Components": { + "Component_[17238549219073370854]": { + "$type": "Not", + "Id": 17238549219073370854, + "Slots": [ + { + "id": { + "m_id": "{54D7FBC6-7B2A-4A3E-AD8C-F28A7C4C353D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Value", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{41EB5D06-DA39-434B-81D5-3E82A375C897}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{120C810C-F84A-445F-82E1-FD06CD3AD9B7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Signal to perform the evaluation when desired.", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{6E82DFA3-70F4-419F-9971-AD243313E8D9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "True", + "toolTip": "Signaled if the result of the operation is true.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{5C53A008-E808-4D00-A4EC-AC6A0EFDAFB9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "False", + "toolTip": "Signaled if the result of the operation is false.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 0 + }, + "isNullPointer": false, + "$type": "bool", + "value": false, + "label": "Value" + } + ] + } + } + }, + { + "Id": { + "id": 31258591223708 + }, + "Name": "SC-Node(TargetedSequencer)", + "Components": { + "Component_[2375509582066284148]": { + "$type": "TargetedSequencer", + "Id": 2375509582066284148, + "Slots": [ + { + "id": { + "m_id": "{52F5A723-7921-4644-AB19-5DCB94B51494}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{800E14B1-C788-4C7F-B4D4-76121DE547C9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 0", + "toolTip": "Output 0", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{14CCF4FA-A3F5-41F7-B66C-BCFF9D5A61F8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Index", + "toolTip": "Select which [Out#] to trigger.", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{9828EDD9-2689-424C-9708-304D720B1348}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 1", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{4A1E25C6-E63B-4BC0-BBDE-533CA69C91C5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 2", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Index" + } + ] + } + } + }, + { + "Id": { + "id": 31297245929372 + }, + "Name": "SC-Node(TargetedSequencer)", + "Components": { + "Component_[2375509582066284148]": { + "$type": "TargetedSequencer", + "Id": 2375509582066284148, + "Slots": [ + { + "id": { + "m_id": "{52F5A723-7921-4644-AB19-5DCB94B51494}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{800E14B1-C788-4C7F-B4D4-76121DE547C9}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 0", + "toolTip": "Output 0", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{14CCF4FA-A3F5-41F7-B66C-BCFF9D5A61F8}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Index", + "toolTip": "Select which [Out#] to trigger.", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{9828EDD9-2689-424C-9708-304D720B1348}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 1", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{4A1E25C6-E63B-4BC0-BBDE-533CA69C91C5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 2", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Index" + } + ] + } + } + }, + { + "Id": { + "id": 31310130831260 + }, + "Name": "SC-Node(OperatorAdd)", + "Components": { + "Component_[4806888795455241210]": { + "$type": "OperatorAdd", + "Id": 4806888795455241210, + "Slots": [ + { + "id": { + "m_id": "{792F23CB-7356-4DCA-A186-69F2A0BBC063}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{775F77BE-A9EC-455D-B378-15D16A0BEA4F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{02291180-ECAE-4D8B-8A9D-F9E451A3416F}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null, + { + "$type": "MathOperatorContract", + "NativeTypes": [ + { + "m_type": 3 + }, + { + "m_type": 6 + }, + { + "m_type": 8 + }, + { + "m_type": 9 + }, + { + "m_type": 10 + }, + { + "m_type": 11 + }, + { + "m_type": 12 + }, + { + "m_type": 14 + }, + { + "m_type": 15 + } + ] + } + ], + "slotName": "Number", + "toolTip": "An operand to use in performing the specified Operation", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1114760223 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 1114760223 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{0BA96D88-BF13-4810-B01C-CA513AF84440}" + } + }, + { + "id": { + "m_id": "{CCC2E84B-A90B-460B-AD1A-A2CCFF94D56F}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null, + { + "$type": "MathOperatorContract", + "NativeTypes": [ + { + "m_type": 3 + }, + { + "m_type": 6 + }, + { + "m_type": 8 + }, + { + "m_type": 9 + }, + { + "m_type": 10 + }, + { + "m_type": 11 + }, + { + "m_type": 12 + }, + { + "m_type": 14 + }, + { + "m_type": 15 + } + ] + } + ], + "slotName": "Number", + "toolTip": "An operand to use in performing the specified Operation", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1114760223 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 1114760223 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{0BA96D88-BF13-4810-B01C-CA513AF84440}" + } + }, + { + "id": { + "m_id": "{40B63F5F-29F6-4F92-9C11-E47653798827}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + { + "$type": "MathOperatorContract", + "NativeTypes": [ + { + "m_type": 3 + }, + { + "m_type": 6 + }, + { + "m_type": 8 + }, + { + "m_type": 9 + }, + { + "m_type": 10 + }, + { + "m_type": 11 + }, + { + "m_type": 12 + }, + { + "m_type": 14 + }, + { + "m_type": 15 + } + ] + } + ], + "slotName": "Result", + "toolTip": "The result of the specified operation", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1114760223 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DynamicGroup": { + "Value": 1114760223 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Number" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Number" + } + ] + } + } + }, + { + "Id": { + "id": 31198461681564 + }, + "Name": "SC-Node((NodeFunctionGenericMultiReturn)<{bool(Vector3 double )}* IsZeroTraits >)", + "Components": { + "Component_[5026503393630088694]": { + "$type": "(NodeFunctionGenericMultiReturn)<{bool(Vector3 double )}* IsZeroTraits >", + "Id": 5026503393630088694, + "Slots": [ + { + "id": { + "m_id": "{048F79E8-478C-46A1-AF3F-0B578022240D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{2CD5D252-4872-41A2-9C9E-4B81AD9877B7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{765E9D80-9091-400F-858D-1C70FA1C25B2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Vector3: Source", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{33BC5FB6-AB79-4121-8C82-0F0EFE4FB7F5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Number: Tolerance", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{C30EA842-3E60-4B71-A5C9-D70BB9FACC53}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result: Boolean", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 8 + }, + "isNullPointer": false, + "$type": "Vector3", + "value": [ + 0.0, + 0.0, + 0.0 + ], + "label": "Vector3: Source" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 1e-7, + "label": "Number: Tolerance" + } + ], + "Initialized": true + } + } + }, + { + "Id": { + "id": 31207051616156 + }, + "Name": "SC-Node((NodeFunctionGenericMultiReturn)<{bool(Vector3 double )}* IsZeroTraits >)", + "Components": { + "Component_[5026503393630088694]": { + "$type": "(NodeFunctionGenericMultiReturn)<{bool(Vector3 double )}* IsZeroTraits >", + "Id": 5026503393630088694, + "Slots": [ + { + "id": { + "m_id": "{048F79E8-478C-46A1-AF3F-0B578022240D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{2CD5D252-4872-41A2-9C9E-4B81AD9877B7}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{765E9D80-9091-400F-858D-1C70FA1C25B2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Vector3: Source", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{33BC5FB6-AB79-4121-8C82-0F0EFE4FB7F5}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "Number: Tolerance", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{C30EA842-3E60-4B71-A5C9-D70BB9FACC53}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result: Boolean", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 8 + }, + "isNullPointer": false, + "$type": "Vector3", + "value": [ + 0.0, + 0.0, + 0.0 + ], + "label": "Vector3: Source" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 1e-7, + "label": "Number: Tolerance" + } + ], + "Initialized": true + } + } + }, + { + "Id": { + "id": 31219936518044 + }, + "Name": "SC-Node(MathExpression)", + "Components": { + "Component_[5840825893583504722]": { + "$type": "MathExpression", + "Id": 5840825893583504722, + "Slots": [ + { + "id": { + "m_id": "{6F8E4206-72C6-40E6-8AC1-205AA2C04804}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{5E038FBC-9A4B-489C-AB3E-26F103B7102E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "toolTip": "Output signal", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{7E74B9C7-C879-4B82-965F-889F8824BDFC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "x", + "toolTip": "Value which replaces instances of {x} in the resulting expression.", + "DisplayGroup": { + "Value": 1997398926 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{28E4C6B8-0099-4213-BA4A-C21CC6EC0A5E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "y", + "toolTip": "Value which replaces instances of {y} in the resulting expression.", + "DisplayGroup": { + "Value": 1997398926 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{AE1904C5-683D-40CA-93F6-5F18D40512BF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result", + "toolTip": "The resulting string.", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1997398926 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 3.0, + "label": "x" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 4.0, + "label": "y" + } + ], + "m_format": "{x} + {y}", + "m_expressionTree": { + "Variables": [ + { + "Key": { + "Value": 2363233923 + }, + "Value": { + "SupportedTypes": [ + "{110C4B14-11A8-4E9D-8638-5051013A56AC}" + ], + "$type": "double", + "Value": 3.0 + } + }, + { + "Key": { + "Value": 4225443349 + }, + "Value": { + "SupportedTypes": [ + "{110C4B14-11A8-4E9D-8638-5051013A56AC}" + ], + "$type": "double", + "Value": 4.0 + } + } + ], + "VariableDisplayOrder": [ + "x", + "y" + ], + "Tokens": [ + { + "TokenInformation": { + "Id": 1, + "$type": "{6D219DB1-3763-4408-A3E8-75E4AE66E9BD} VariableDescriptor", + "Value": { + "DisplayName": "x", + "NameHash": { + "Value": 2363233923 + } + } + } + }, + { + "TokenInformation": { + "Id": 1, + "$type": "{6D219DB1-3763-4408-A3E8-75E4AE66E9BD} VariableDescriptor", + "Value": { + "DisplayName": "y", + "NameHash": { + "Value": 4225443349 + } + } + } + }, + { + "ParserId": 3499457960, + "TokenInformation": { + "Id": 0, + "$type": "Empty AZStd::any" + } + } + ] + } + } + } + }, + { + "Id": { + "id": 31241411354524 + }, + "Name": "SC-Node(MathExpression)", + "Components": { + "Component_[5840825893583504722]": { + "$type": "MathExpression", + "Id": 5840825893583504722, + "Slots": [ + { + "id": { + "m_id": "{6F8E4206-72C6-40E6-8AC1-205AA2C04804}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{5E038FBC-9A4B-489C-AB3E-26F103B7102E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "toolTip": "Output signal", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{7E74B9C7-C879-4B82-965F-889F8824BDFC}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "x", + "toolTip": "Value which replaces instances of {x} in the resulting expression.", + "DisplayGroup": { + "Value": 1997398926 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{28E4C6B8-0099-4213-BA4A-C21CC6EC0A5E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null + ], + "slotName": "y", + "toolTip": "Value which replaces instances of {y} in the resulting expression.", + "DisplayGroup": { + "Value": 1997398926 + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{AE1904C5-683D-40CA-93F6-5F18D40512BF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Result", + "toolTip": "The resulting string.", + "DisplayDataType": { + "m_type": 3 + }, + "DisplayGroup": { + "Value": 1997398926 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 3.0, + "label": "x" + }, + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 4.0, + "label": "y" + } + ], + "m_format": "{x} + {y}", + "m_expressionTree": { + "Variables": [ + { + "Key": { + "Value": 2363233923 + }, + "Value": { + "SupportedTypes": [ + "{110C4B14-11A8-4E9D-8638-5051013A56AC}" + ], + "$type": "double", + "Value": 3.0 + } + }, + { + "Key": { + "Value": 4225443349 + }, + "Value": { + "SupportedTypes": [ + "{110C4B14-11A8-4E9D-8638-5051013A56AC}" + ], + "$type": "double", + "Value": 4.0 + } + } + ], + "VariableDisplayOrder": [ + "x", + "y" + ], + "Tokens": [ + { + "TokenInformation": { + "Id": 1, + "$type": "{6D219DB1-3763-4408-A3E8-75E4AE66E9BD} VariableDescriptor", + "Value": { + "DisplayName": "x", + "NameHash": { + "Value": 2363233923 + } + } + } + }, + { + "TokenInformation": { + "Id": 1, + "$type": "{6D219DB1-3763-4408-A3E8-75E4AE66E9BD} VariableDescriptor", + "Value": { + "DisplayName": "y", + "NameHash": { + "Value": 4225443349 + } + } + } + }, + { + "ParserId": 3499457960, + "TokenInformation": { + "Id": 0, + "$type": "Empty AZStd::any" + } + } + ] + } + } + } + }, + { + "Id": { + "id": 31292950962076 + }, + "Name": "SC-Node(OrderedSequencer)", + "Components": { + "Component_[5989899372375578125]": { + "$type": "OrderedSequencer", + "Id": 5989899372375578125, + "Slots": [ + { + "id": { + "m_id": "{E4E25252-6AE7-4A4F-A175-50B9C6CD5DAE}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{425822FB-C61E-4493-98C3-3A05418BD029}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 0", + "toolTip": "Output 0", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ] + } + } + }, + { + "Id": { + "id": 31275771092892 + }, + "Name": "SC-Node(OrderedSequencer)", + "Components": { + "Component_[5989899372375578125]": { + "$type": "OrderedSequencer", + "Id": 5989899372375578125, + "Slots": [ + { + "id": { + "m_id": "{E4E25252-6AE7-4A4F-A175-50B9C6CD5DAE}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{425822FB-C61E-4493-98C3-3A05418BD029}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 0", + "toolTip": "Output 0", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{8FDC2E61-37AE-4E0F-82FE-7A4D9696123C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 1", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{1000AB91-55FB-4615-B0EE-306816CFE895}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 2", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ] + } + } + }, + { + "Id": { + "id": 31250001289116 + }, + "Name": "SC-Node(IsNull)", + "Components": { + "Component_[6380535138172294808]": { + "$type": "IsNull", + "Id": 6380535138172294808, + "Slots": [ + { + "id": { + "m_id": "{AEAA495A-12CF-42CC-80FA-B4D67AB5EA99}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null, + { + "$type": "IsReferenceTypeContract" + } + ], + "slotName": "Reference", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}" + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{39DB51CB-AA6E-4B3A-93EC-D622C44B3F4B}" + } + }, + { + "id": { + "m_id": "{C17691F7-094B-4663-B2D6-F7726B8D14D2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Is Null", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{2215C7E1-3EA3-4487-BA74-0A5628424CEA}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{AA375295-D5E8-473C-A073-08A2853E750E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "True", + "toolTip": "Signaled if the reference provided is null.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{342C520C-CA78-4261-91C9-629978B79BA3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "False", + "toolTip": "Signaled if the reference provided is not null.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 4, + "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}" + }, + "isNullPointer": true, + "label": "Reference" + } + ] + } + } + }, + { + "Id": { + "id": 31254296256412 + }, + "Name": "SC-Node(IsNull)", + "Components": { + "Component_[6380535138172294808]": { + "$type": "IsNull", + "Id": 6380535138172294808, + "Slots": [ + { + "id": { + "m_id": "{AEAA495A-12CF-42CC-80FA-B4D67AB5EA99}" + }, + "DynamicTypeOverride": 3, + "contracts": [ + { + "$type": "SlotTypeContract" + }, + null, + { + "$type": "IsReferenceTypeContract" + } + ], + "slotName": "Reference", + "DisplayDataType": { + "m_type": 4, + "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}" + }, + "Descriptor": { + "ConnectionType": 1, + "SlotType": 2 + }, + "DataType": 1, + "IsReference": true, + "VariableReference": { + "m_id": "{39DB51CB-AA6E-4B3A-93EC-D622C44B3F4B}" + } + }, + { + "id": { + "m_id": "{C17691F7-094B-4663-B2D6-F7726B8D14D2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Is Null", + "DisplayDataType": { + "m_type": 0 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 2 + }, + "DataType": 1 + }, + { + "id": { + "m_id": "{2215C7E1-3EA3-4487-BA74-0A5628424CEA}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{AA375295-D5E8-473C-A073-08A2853E750E}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "True", + "toolTip": "Signaled if the reference provided is null.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{342C520C-CA78-4261-91C9-629978B79BA3}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "False", + "toolTip": "Signaled if the reference provided is not null.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ], + "Datums": [ + { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 4, + "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}" + }, + "isNullPointer": true, + "label": "Reference" + } + ] + } + } + }, + { + "Id": { + "id": 31262886191004 + }, + "Name": "SC-Node(Start)", + "Components": { + "Component_[6709400654876708818]": { + "$type": "Start", + "Id": 6709400654876708818, + "Slots": [ + { + "id": { + "m_id": "{E1417C09-E03B-4EA9-B9EC-67F8EC862B69}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "toolTip": "Signaled when the entity that owns this graph is fully activated.", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ] + } + } + }, + { + "Id": { + "id": 31271476125596 + }, + "Name": "SC-Node(Once)", + "Components": { + "Component_[7505935143439181025]": { + "$type": "Once", + "Id": 7505935143439181025, + "Slots": [ + { + "id": { + "m_id": "{67E7AF1F-F028-4460-819A-3FA6B9135F7B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "toolTip": "Input signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{C6EB1567-2D26-4BC6-AC09-CB25183B1E0F}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Reset", + "toolTip": "Reset signal", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{922907EE-9B7C-49CF-80A2-0A9FF5CDCB8C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out", + "toolTip": "Output signal", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{BD2D869A-A1F9-4CA3-AFF7-D8134A36D56A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "On Reset", + "toolTip": "Triggered when Reset", + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ] + } + } + }, + { + "Id": { + "id": 31237116387228 + }, + "Name": "SC-Node(OrderedSequencer)", + "Components": { + "Component_[8845125901058188451]": { + "$type": "OrderedSequencer", + "Id": 8845125901058188451, + "Slots": [ + { + "id": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E69D1672-B443-49D2-8228-9D45F4A4398C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 0", + "toolTip": "Output 0", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{58EB3964-B87B-4C73-AD7B-532E4BBAD9E2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 1", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E965D8DB-1EDF-4CB2-910E-6782A6DD8487}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 2", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{786CF87F-5153-44CE-A995-59CAAA0ED040}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 3", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{60D9FB27-2CAC-412A-8B3B-2E4B4574FD56}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 4", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{CBD2A485-2FF1-405A-9940-E4268ED8EEC0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 5", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{F71323EC-F182-465B-8671-C83BB07B227A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 6", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{AFCB2F92-E497-4BBD-92B4-1E731246B834}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 7", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{973D553A-3231-461F-B46A-9A868846BE0B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 8", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{251CF78F-0D57-4345-B80F-3947FBD30FCE}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 9", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{99CB5CB4-FF23-4C2B-9FBB-94D7752FCE80}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 10", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{2A550F0A-D5D2-497A-AFF2-EBB330F29A4D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 11", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{FBD12806-F42E-4896-A44D-E0E34C8977BF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 12", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{6552891F-4D35-4B2F-AE7D-B6CCE77B6966}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 13", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{119F60AD-CF01-4F6D-AC9D-F76ED05EF408}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 14", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{7ECBB1CC-6F3A-442E-B063-2B143F26ECF0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 15", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{58AAA7C2-843B-4B0A-8451-B509284BFC6B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 16", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{C6B341C5-8F1F-4F38-96B1-07873BC03493}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 17", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ] + } + } + }, + { + "Id": { + "id": 31245706321820 + }, + "Name": "SC-Node(OrderedSequencer)", + "Components": { + "Component_[8845125901058188451]": { + "$type": "OrderedSequencer", + "Id": 8845125901058188451, + "Slots": [ + { + "id": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "In", + "Descriptor": { + "ConnectionType": 1, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E69D1672-B443-49D2-8228-9D45F4A4398C}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 0", + "toolTip": "Output 0", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{58EB3964-B87B-4C73-AD7B-532E4BBAD9E2}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 1", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{E965D8DB-1EDF-4CB2-910E-6782A6DD8487}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 2", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{786CF87F-5153-44CE-A995-59CAAA0ED040}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 3", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{60D9FB27-2CAC-412A-8B3B-2E4B4574FD56}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 4", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{CBD2A485-2FF1-405A-9940-E4268ED8EEC0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 5", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{F71323EC-F182-465B-8671-C83BB07B227A}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 6", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{AFCB2F92-E497-4BBD-92B4-1E731246B834}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 7", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{973D553A-3231-461F-B46A-9A868846BE0B}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 8", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{251CF78F-0D57-4345-B80F-3947FBD30FCE}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 9", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{99CB5CB4-FF23-4C2B-9FBB-94D7752FCE80}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 10", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{2A550F0A-D5D2-497A-AFF2-EBB330F29A4D}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 11", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{FBD12806-F42E-4896-A44D-E0E34C8977BF}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 12", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{6552891F-4D35-4B2F-AE7D-B6CCE77B6966}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 13", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{119F60AD-CF01-4F6D-AC9D-F76ED05EF408}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 14", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{7ECBB1CC-6F3A-442E-B063-2B143F26ECF0}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 15", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{8BC13109-B3A3-4931-8E54-0DFC6383A274}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 16", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + }, + { + "id": { + "m_id": "{3ED549E3-C72F-4EC5-8CD6-2B8A36A8E503}" + }, + "contracts": [ + { + "$type": "SlotTypeContract" + } + ], + "slotName": "Out 17", + "DisplayGroup": { + "Value": 1020632324 + }, + "Descriptor": { + "ConnectionType": 2, + "SlotType": 1 + } + } + ] + } + } + } + ], + "m_connections": [ + { + "Id": { + "id": 31318720765852 + }, + "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[11968085700009090183]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 11968085700009090183, + "sourceEndpoint": { + "nodeId": { + "id": 31262886191004 + }, + "slotId": { + "m_id": "{E1417C09-E03B-4EA9-B9EC-67F8EC862B69}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31323015733148 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 0), destEndpoint=(For Each: In)", + "Components": { + "Component_[14051685564799899080]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 14051685564799899080, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{E69D1672-B443-49D2-8228-9D45F4A4398C}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31284361027484 + }, + "slotId": { + "m_id": "{A9E6B254-446D-492F-B2CF-929CDC04ABFF}" + } + } + } + } + }, + { + "Id": { + "id": 31327310700444 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 1), destEndpoint=(And: In)", + "Components": { + "Component_[5835922357284603096]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 5835922357284603096, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{58EB3964-B87B-4C73-AD7B-532E4BBAD9E2}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31228526452636 + }, + "slotId": { + "m_id": "{FAFAB55A-69F1-495D-82FC-7D36F7842DA9}" + } + } + } + } + }, + { + "Id": { + "id": 31331605667740 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 2), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[11349254841334591199]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 11349254841334591199, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{E965D8DB-1EDF-4CB2-910E-6782A6DD8487}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31275771092892 + }, + "slotId": { + "m_id": "{E4E25252-6AE7-4A4F-A175-50B9C6CD5DAE}" + } + } + } + } + }, + { + "Id": { + "id": 31335900635036 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 3), destEndpoint=(Is Null: In)", + "Components": { + "Component_[11724175899893098283]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 11724175899893098283, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{786CF87F-5153-44CE-A995-59CAAA0ED040}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31250001289116 + }, + "slotId": { + "m_id": "{2215C7E1-3EA3-4487-BA74-0A5628424CEA}" + } + } + } + } + }, + { + "Id": { + "id": 31340195602332 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 4), destEndpoint=(Or: In)", + "Components": { + "Component_[15445788857322783773]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 15445788857322783773, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{60D9FB27-2CAC-412A-8B3B-2E4B4574FD56}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31211346583452 + }, + "slotId": { + "m_id": "{C5E1B10E-FDFA-45F8-B6AF-BD9C672986FC}" + } + } + } + } + }, + { + "Id": { + "id": 31344490569628 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 5), destEndpoint=(Switch: In)", + "Components": { + "Component_[9877129165904558121]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 9877129165904558121, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{CBD2A485-2FF1-405A-9940-E4268ED8EEC0}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31258591223708 + }, + "slotId": { + "m_id": "{52F5A723-7921-4644-AB19-5DCB94B51494}" + } + } + } + } + }, + { + "Id": { + "id": 31348785536924 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 6), destEndpoint=(Not: In)", + "Components": { + "Component_[3561874480108576621]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 3561874480108576621, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{F71323EC-F182-465B-8671-C83BB07B227A}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31280066060188 + }, + "slotId": { + "m_id": "{120C810C-F84A-445F-82E1-FD06CD3AD9B7}" + } + } + } + } + }, + { + "Id": { + "id": 31353080504220 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 10), destEndpoint=(Add (+): In)", + "Components": { + "Component_[15711843380878163015]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 15711843380878163015, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{99CB5CB4-FF23-4C2B-9FBB-94D7752FCE80}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31310130831260 + }, + "slotId": { + "m_id": "{792F23CB-7356-4DCA-A186-69F2A0BBC063}" + } + } + } + } + }, + { + "Id": { + "id": 31357375471516 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 11), destEndpoint=(Math Expression: In)", + "Components": { + "Component_[10938060626218586852]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 10938060626218586852, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{2A550F0A-D5D2-497A-AFF2-EBB330F29A4D}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31241411354524 + }, + "slotId": { + "m_id": "{6F8E4206-72C6-40E6-8AC1-205AA2C04804}" + } + } + } + } + }, + { + "Id": { + "id": 31361670438812 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 12), destEndpoint=(IsZero: In)", + "Components": { + "Component_[7885809696299116611]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 7885809696299116611, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{FBD12806-F42E-4896-A44D-E0E34C8977BF}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31207051616156 + }, + "slotId": { + "m_id": "{048F79E8-478C-46A1-AF3F-0B578022240D}" + } + } + } + } + }, + { + "Id": { + "id": 31365965406108 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 13), destEndpoint=(Extract Properties: In)", + "Components": { + "Component_[4352059250555138202]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4352059250555138202, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{6552891F-4D35-4B2F-AE7D-B6CCE77B6966}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31232821419932 + }, + "slotId": { + "m_id": "{EADFB5B4-ADE0-4935-A102-99F8EC0C711A}" + } + } + } + } + }, + { + "Id": { + "id": 31370260373404 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 14), destEndpoint=(Add (+): In)", + "Components": { + "Component_[4078469470815155794]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4078469470815155794, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{119F60AD-CF01-4F6D-AC9D-F76ED05EF408}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31267181158300 + }, + "slotId": { + "m_id": "{CDEA58A6-1B59-4476-B26E-0D5A828F35C7}" + } + } + } + } + }, + { + "Id": { + "id": 31374555340700 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 15), destEndpoint=(Multiply (*): In)", + "Components": { + "Component_[17350434400301914971]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 17350434400301914971, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{7ECBB1CC-6F3A-442E-B063-2B143F26ECF0}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31215641550748 + }, + "slotId": { + "m_id": "{2D2F75D9-A1FB-4D70-86EF-8518E119DB07}" + } + } + } + } + }, + { + "Id": { + "id": 31378850307996 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 14), destEndpoint=(Add (+): In)", + "Components": { + "Component_[2124314791740833510]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 2124314791740833510, + "sourceEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{119F60AD-CF01-4F6D-AC9D-F76ED05EF408}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31305835863964 + }, + "slotId": { + "m_id": "{CDEA58A6-1B59-4476-B26E-0D5A828F35C7}" + } + } + } + } + }, + { + "Id": { + "id": 31383145275292 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 0), destEndpoint=(For Each: In)", + "Components": { + "Component_[14483355239609043570]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 14483355239609043570, + "sourceEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{E69D1672-B443-49D2-8228-9D45F4A4398C}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31224231485340 + }, + "slotId": { + "m_id": "{A9E6B254-446D-492F-B2CF-929CDC04ABFF}" + } + } + } + } + }, + { + "Id": { + "id": 31387440242588 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 2), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[4849582226410181010]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4849582226410181010, + "sourceEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{E965D8DB-1EDF-4CB2-910E-6782A6DD8487}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31292950962076 + }, + "slotId": { + "m_id": "{E4E25252-6AE7-4A4F-A175-50B9C6CD5DAE}" + } + } + } + } + }, + { + "Id": { + "id": 31391735209884 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 13), destEndpoint=(Extract Properties: In)", + "Components": { + "Component_[16660742051689195679]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 16660742051689195679, + "sourceEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{6552891F-4D35-4B2F-AE7D-B6CCE77B6966}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31301540896668 + }, + "slotId": { + "m_id": "{EADFB5B4-ADE0-4935-A102-99F8EC0C711A}" + } + } + } + } + }, + { + "Id": { + "id": 31396030177180 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 11), destEndpoint=(Math Expression: In)", + "Components": { + "Component_[761902755754097552]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 761902755754097552, + "sourceEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{2A550F0A-D5D2-497A-AFF2-EBB330F29A4D}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31219936518044 + }, + "slotId": { + "m_id": "{6F8E4206-72C6-40E6-8AC1-205AA2C04804}" + } + } + } + } + }, + { + "Id": { + "id": 31400325144476 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 3), destEndpoint=(Is Null: In)", + "Components": { + "Component_[11478294740641420074]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 11478294740641420074, + "sourceEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{786CF87F-5153-44CE-A995-59CAAA0ED040}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31254296256412 + }, + "slotId": { + "m_id": "{2215C7E1-3EA3-4487-BA74-0A5628424CEA}" + } + } + } + } + }, + { + "Id": { + "id": 31404620111772 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 12), destEndpoint=(IsZero: In)", + "Components": { + "Component_[6172045094798670980]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 6172045094798670980, + "sourceEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{FBD12806-F42E-4896-A44D-E0E34C8977BF}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31198461681564 + }, + "slotId": { + "m_id": "{048F79E8-478C-46A1-AF3F-0B578022240D}" + } + } + } + } + }, + { + "Id": { + "id": 31408915079068 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 5), destEndpoint=(Switch: In)", + "Components": { + "Component_[10417773454009289241]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 10417773454009289241, + "sourceEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{CBD2A485-2FF1-405A-9940-E4268ED8EEC0}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31297245929372 + }, + "slotId": { + "m_id": "{52F5A723-7921-4644-AB19-5DCB94B51494}" + } + } + } + } + }, + { + "Id": { + "id": 31413210046364 + }, + "Name": "srcEndpoint=(For Each: Each), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[4836133045899771729]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4836133045899771729, + "sourceEndpoint": { + "nodeId": { + "id": 31284361027484 + }, + "slotId": { + "m_id": "{8A4B7BED-4921-4C08-B35B-56D129A630E9}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31417505013660 + }, + "Name": "srcEndpoint=(For Each: Finished), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[6237489035629954338]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 6237489035629954338, + "sourceEndpoint": { + "nodeId": { + "id": 31284361027484 + }, + "slotId": { + "m_id": "{0DEFFE74-9D9C-4E18-AFA2-12B1657F7D1D}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31421799980956 + }, + "Name": "srcEndpoint=(And: True), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[4927775769680604779]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4927775769680604779, + "sourceEndpoint": { + "nodeId": { + "id": 31228526452636 + }, + "slotId": { + "m_id": "{5BDD309F-0047-43E9-A911-475E47A036EC}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31426094948252 + }, + "Name": "srcEndpoint=(And: False), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[12544845157105431583]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 12544845157105431583, + "sourceEndpoint": { + "nodeId": { + "id": 31228526452636 + }, + "slotId": { + "m_id": "{7438C80C-9044-442D-8C71-827AB7DC3F0B}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31430389915548 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 0), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[13496863929205474320]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 13496863929205474320, + "sourceEndpoint": { + "nodeId": { + "id": 31275771092892 + }, + "slotId": { + "m_id": "{425822FB-C61E-4493-98C3-3A05418BD029}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31434684882844 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 1), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[12523441803443343729]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 12523441803443343729, + "sourceEndpoint": { + "nodeId": { + "id": 31275771092892 + }, + "slotId": { + "m_id": "{8FDC2E61-37AE-4E0F-82FE-7A4D9696123C}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31438979850140 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 2), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[4247029149608940629]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4247029149608940629, + "sourceEndpoint": { + "nodeId": { + "id": 31275771092892 + }, + "slotId": { + "m_id": "{1000AB91-55FB-4615-B0EE-306816CFE895}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31443274817436 + }, + "Name": "srcEndpoint=(Is Null: True), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[2748837971044280491]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 2748837971044280491, + "sourceEndpoint": { + "nodeId": { + "id": 31250001289116 + }, + "slotId": { + "m_id": "{AA375295-D5E8-473C-A073-08A2853E750E}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31447569784732 + }, + "Name": "srcEndpoint=(Is Null: False), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[2379529025270594940]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 2379529025270594940, + "sourceEndpoint": { + "nodeId": { + "id": 31250001289116 + }, + "slotId": { + "m_id": "{342C520C-CA78-4261-91C9-629978B79BA3}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31451864752028 + }, + "Name": "srcEndpoint=(Or: True), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[4662929964571753389]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4662929964571753389, + "sourceEndpoint": { + "nodeId": { + "id": 31211346583452 + }, + "slotId": { + "m_id": "{7FED3519-4670-4B3D-B81F-44393C2D7787}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31456159719324 + }, + "Name": "srcEndpoint=(Or: False), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[10410455197671109469]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 10410455197671109469, + "sourceEndpoint": { + "nodeId": { + "id": 31211346583452 + }, + "slotId": { + "m_id": "{E2D1192C-902D-4C82-9DE4-BBC20B31A54B}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31460454686620 + }, + "Name": "srcEndpoint=(Switch: Out 0), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[10099436517331803126]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 10099436517331803126, + "sourceEndpoint": { + "nodeId": { + "id": 31258591223708 + }, + "slotId": { + "m_id": "{800E14B1-C788-4C7F-B4D4-76121DE547C9}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31464749653916 + }, + "Name": "srcEndpoint=(Switch: Out 1), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[11535766430360773447]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 11535766430360773447, + "sourceEndpoint": { + "nodeId": { + "id": 31258591223708 + }, + "slotId": { + "m_id": "{9828EDD9-2689-424C-9708-304D720B1348}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31469044621212 + }, + "Name": "srcEndpoint=(Switch: Out 2), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[3612784336888322174]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 3612784336888322174, + "sourceEndpoint": { + "nodeId": { + "id": 31258591223708 + }, + "slotId": { + "m_id": "{4A1E25C6-E63B-4BC0-BBDE-533CA69C91C5}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31473339588508 + }, + "Name": "srcEndpoint=(Not: True), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[4611790098876313333]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4611790098876313333, + "sourceEndpoint": { + "nodeId": { + "id": 31280066060188 + }, + "slotId": { + "m_id": "{6E82DFA3-70F4-419F-9971-AD243313E8D9}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31477634555804 + }, + "Name": "srcEndpoint=(Not: False), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[3740076693359624525]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 3740076693359624525, + "sourceEndpoint": { + "nodeId": { + "id": 31280066060188 + }, + "slotId": { + "m_id": "{5C53A008-E808-4D00-A4EC-AC6A0EFDAFB9}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31481929523100 + }, + "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[3850851395875718062]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 3850851395875718062, + "sourceEndpoint": { + "nodeId": { + "id": 31310130831260 + }, + "slotId": { + "m_id": "{775F77BE-A9EC-455D-B378-15D16A0BEA4F}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31486224490396 + }, + "Name": "srcEndpoint=(Math Expression: Out), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[3602036390975897875]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 3602036390975897875, + "sourceEndpoint": { + "nodeId": { + "id": 31241411354524 + }, + "slotId": { + "m_id": "{5E038FBC-9A4B-489C-AB3E-26F103B7102E}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31490519457692 + }, + "Name": "srcEndpoint=(IsZero: Out), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[17614443468886602012]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 17614443468886602012, + "sourceEndpoint": { + "nodeId": { + "id": 31207051616156 + }, + "slotId": { + "m_id": "{2CD5D252-4872-41A2-9C9E-4B81AD9877B7}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31494814424988 + }, + "Name": "srcEndpoint=(Extract Properties: Out), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[4800366554066352627]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4800366554066352627, + "sourceEndpoint": { + "nodeId": { + "id": 31232821419932 + }, + "slotId": { + "m_id": "{AC7594DE-A7F0-4519-9E07-0350AEEB25E0}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31499109392284 + }, + "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[15231344167676276156]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 15231344167676276156, + "sourceEndpoint": { + "nodeId": { + "id": 31267181158300 + }, + "slotId": { + "m_id": "{5E66E5C1-AE26-4919-BFD7-66EC6DE9B7BB}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31503404359580 + }, + "Name": "srcEndpoint=(Multiply (*): Out), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[13866431563723516549]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 13866431563723516549, + "sourceEndpoint": { + "nodeId": { + "id": 31215641550748 + }, + "slotId": { + "m_id": "{7A580403-C074-4DAD-A65E-BF928EF19DC8}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31507699326876 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 16), destEndpoint=(TickBus Handler: Connect)", + "Components": { + "Component_[4065717098596350153]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4065717098596350153, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{8BC13109-B3A3-4931-8E54-0DFC6383A274}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31314425798556 + }, + "slotId": { + "m_id": "{C189EE08-DC89-4AF2-88BC-B564F84F28A6}" + } + } + } + } + }, + { + "Id": { + "id": 31511994294172 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 17), destEndpoint=(TickBus Handler: Disconnect)", + "Components": { + "Component_[451545062627990235]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 451545062627990235, + "sourceEndpoint": { + "nodeId": { + "id": 31245706321820 + }, + "slotId": { + "m_id": "{3ED549E3-C72F-4EC5-8CD6-2B8A36A8E503}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31314425798556 + }, + "slotId": { + "m_id": "{10BB0A14-C955-464E-8745-7FBC88E24049}" + } + } + } + } + }, + { + "Id": { + "id": 31516289261468 + }, + "Name": "srcEndpoint=(TickBus Handler: OnConnected), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[16416933153170812903]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 16416933153170812903, + "sourceEndpoint": { + "nodeId": { + "id": 31314425798556 + }, + "slotId": { + "m_id": "{A7026536-ED61-48CA-8329-601DACF8A178}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31520584228764 + }, + "Name": "srcEndpoint=(TickBus Handler: OnDisconnected), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[16427931620012509498]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 16427931620012509498, + "sourceEndpoint": { + "nodeId": { + "id": 31314425798556 + }, + "slotId": { + "m_id": "{95E02974-9E1C-407C-94DA-087C5B4EC55C}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31524879196060 + }, + "Name": "srcEndpoint=(TickBus Handler: ExecutionSlot:OnTick), destEndpoint=(Ordered Sequencer: In)", + "Components": { + "Component_[12537264777285639380]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 12537264777285639380, + "sourceEndpoint": { + "nodeId": { + "id": 31314425798556 + }, + "slotId": { + "m_id": "{99FA955C-7E6E-4539-85B0-16CBFBB1F0E3}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" + } + } + } + } + }, + { + "Id": { + "id": 31529174163356 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 16), destEndpoint=(TickBus Handler: Connect)", + "Components": { + "Component_[4140744289594349719]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 4140744289594349719, + "sourceEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{58AAA7C2-843B-4B0A-8451-B509284BFC6B}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31288655994780 + }, + "slotId": { + "m_id": "{C189EE08-DC89-4AF2-88BC-B564F84F28A6}" + } + } + } + } + }, + { + "Id": { + "id": 31533469130652 + }, + "Name": "srcEndpoint=(Ordered Sequencer: Out 17), destEndpoint=(TickBus Handler: Disconnect)", + "Components": { + "Component_[6223827301708831635]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 6223827301708831635, + "sourceEndpoint": { + "nodeId": { + "id": 31237116387228 + }, + "slotId": { + "m_id": "{C6B341C5-8F1F-4F38-96B1-07873BC03493}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31288655994780 + }, + "slotId": { + "m_id": "{10BB0A14-C955-464E-8745-7FBC88E24049}" + } + } + } + } + }, + { + "Id": { + "id": 31537764097948 + }, + "Name": "srcEndpoint=(TickBus Handler: OnConnected), destEndpoint=(Once: In)", + "Components": { + "Component_[16328568633919858732]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 16328568633919858732, + "sourceEndpoint": { + "nodeId": { + "id": 31288655994780 + }, + "slotId": { + "m_id": "{A7026536-ED61-48CA-8329-601DACF8A178}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31271476125596 + }, + "slotId": { + "m_id": "{67E7AF1F-F028-4460-819A-3FA6B9135F7B}" + } + } + } + } + }, + { + "Id": { + "id": 31542059065244 + }, + "Name": "srcEndpoint=(TickBus Handler: OnDisconnected), destEndpoint=(Once: In)", + "Components": { + "Component_[5193640857027050517]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 5193640857027050517, + "sourceEndpoint": { + "nodeId": { + "id": 31288655994780 + }, + "slotId": { + "m_id": "{95E02974-9E1C-407C-94DA-087C5B4EC55C}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31271476125596 + }, + "slotId": { + "m_id": "{67E7AF1F-F028-4460-819A-3FA6B9135F7B}" + } + } + } + } + }, + { + "Id": { + "id": 31546354032540 + }, + "Name": "srcEndpoint=(Once: Out), destEndpoint=(Mark Complete: In)", + "Components": { + "Component_[5213414421933364896]": { + "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection", + "Id": 5213414421933364896, + "sourceEndpoint": { + "nodeId": { + "id": 31271476125596 + }, + "slotId": { + "m_id": "{922907EE-9B7C-49CF-80A2-0A9FF5CDCB8C}" + } + }, + "targetEndpoint": { + "nodeId": { + "id": 31202756648860 + }, + "slotId": { + "m_id": "{79C2ABDD-F20A-4042-BF5C-8C09DC9332C7}" + } + } + } + } + } + ] + }, + "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}", + "versionData": { + "_grammarVersion": 1, + "_runtimeVersion": 1 + }, + "m_variableCounter": 2, + "GraphCanvasData": [ + { + "Key": { + "id": 31194166714268 + }, + "Value": { + "ComponentData": { + "{5F84B500-8C45-40D1-8EFC-A5306B241444}": { + "$type": "SceneComponentSaveData", + "ViewParams": { + "Scale": 0.2579344, + "AnchorX": -2508.39013671875, + "AnchorY": 1461.6121826171876 + } + } + } + } + }, + { + "Key": { + "id": 31198461681564 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MathNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2040.0, + 3260.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{810D332E-6C30-437C-9BCA-DF663A237034}" + } + } + } + }, + { + "Key": { + "id": 31202756648860 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "TestingNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2640.0, + 4320.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{90DEA5B5-B658-4163-964E-91DB8D0D0F91}" + } + } + } + }, + { + "Key": { + "id": 31207051616156 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MathNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 3320.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{AE920511-0E26-4EEF-ADAD-982BEA59BA94}" + } + } + } + }, + { + "Key": { + "id": 31211346583452 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 1460.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{0C7217EF-A630-46C6-A1C8-D4202697B60E}" + } + } + } + }, + { + "Key": { + "id": 31215641550748 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MathNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 4020.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{E6E72236-4B7B-47AD-ABF9-08E0D1691F72}" + } + } + } + }, + { + "Key": { + "id": 31219936518044 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MathNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2040.0, + 2980.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{C2544B7B-3AA0-4731-81CF-DA88A5E210EC}" + } + } + } + }, + { + "Key": { + "id": 31224231485340 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "DefaultNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2040.0, + 340.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{EDABFAD6-F9B5-4490-8EC6-165291FF3588}" + } + } + } + }, + { + "Key": { + "id": 31228526452636 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 700.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{F60EF486-6C8B-4943-B3F4-600F8148DE78}" + } + } + } + }, + { + "Key": { + "id": 31232821419932 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "DefaultNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 3580.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{BB3891CA-9936-4F18-8552-8EB7F2D02206}" + } + } + } + }, + { + "Key": { + "id": 31237116387228 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1200.0, + 2660.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{05F42C5B-4887-4800-8422-D5E5C1361E5F}" + } + } + } + }, + { + "Key": { + "id": 31241411354524 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MathNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 3040.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{32F17925-C934-4CC7-918A-3026954CABD6}" + } + } + } + }, + { + "Key": { + "id": 31245706321820 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -480.0, + 2320.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{AC1D06EF-C967-4F35-95BD-8D822F4A2CE7}" + } + } + } + }, + { + "Key": { + "id": 31250001289116 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 1240.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{63DF2982-B424-4D30-BF05-9DA9DD5664EC}" + } + } + } + }, + { + "Key": { + "id": 31254296256412 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2040.0, + 1180.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{9952383B-0B57-43BB-B59C-501C3F2CDE30}" + } + } + } + }, + { + "Key": { + "id": 31258591223708 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 1740.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{E6746414-838B-4AF7-AC50-EBEB0D2C06C2}" + } + } + } + }, + { + "Key": { + "id": 31262886191004 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "TimeNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -900.0, + 2400.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{D3649B82-A382-47A3-8168-BC7BA0377449}" + } + } + } + }, + { + "Key": { + "id": 31267181158300 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MathNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 3780.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{D305A28C-D38B-4A34-BEA1-7E7AA92B853A}" + } + } + } + }, + { + "Key": { + "id": 31271476125596 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2420.0, + 4320.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{0CC6067B-5802-4AB3-9FF4-C1DF2C283DBB}" + } + } + } + }, + { + "Key": { + "id": 31275771092892 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 960.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{55307FED-8C26-4EC5-98B5-F080C79E784D}" + } + } + } + }, + { + "Key": { + "id": 31280066060188 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 2000.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{5E0AD895-3D93-41F0-86D0-0A9DC4305145}" + } + } + } + }, + { + "Key": { + "id": 31284361027484 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "DefaultNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 400.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{F37ED565-54EF-4A7C-9FB4-ABA1A71A4A36}" + } + } + } + }, + { + "Key": { + "id": 31288655994780 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2080.0, + 4340.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "DisplayConnections": true, + "EventIds": [ + { + "Value": 1502188240 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{58CBCF78-2B53-43EB-85BE-309EDB183924}" + } + } + } + }, + { + "Key": { + "id": 31292950962076 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2040.0, + 900.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{12114A6E-22BE-4A7A-8211-7A1282B900EC}" + } + } + } + }, + { + "Key": { + "id": 31297245929372 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2040.0, + 1680.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{E6DB84DC-F8BE-4C8E-BE0D-A0B96652B2C0}" + } + } + } + }, + { + "Key": { + "id": 31301540896668 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "DefaultNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2040.0, + 3520.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{EFAA6315-4594-4432-A71C-C50AC21A3B9C}" + } + } + } + }, + { + "Key": { + "id": 31305835863964 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MathNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2040.0, + 3720.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{ABCB6F4F-5683-4958-B544-E543B5591129}" + } + } + } + }, + { + "Key": { + "id": 31310130831260 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MathNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 2820.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{0F538778-0124-48B9-B8D8-DB50D3620953}" + } + } + } + }, + { + "Key": { + "id": 31314425798556 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 340.0, + 4320.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "DisplayConnections": true, + "EventIds": [ + { + "Value": 1502188240 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{3B6A148E-D130-4461-BA4D-EF0C91E7B729}" + } + } + } + } + ], + "StatisticsHelper": { + "InstanceCounter": [ + { + "Key": 1244476766431948410, + "Value": 3 + }, + { + "Key": 1675714605584791791, + "Value": 1 + }, + { + "Key": 1899400123866786017, + "Value": 2 + }, + { + "Key": 4199610336680704683, + "Value": 1 + }, + { + "Key": 4271004856738215795, + "Value": 4 + }, + { + "Key": 5842117451819972883, + "Value": 2 + }, + { + "Key": 7224637793062157918, + "Value": 2 + }, + { + "Key": 7441743364271812807, + "Value": 1 + }, + { + "Key": 10181512461692697578, + "Value": 2 + }, + { + "Key": 10204019744198319120, + "Value": 1 + }, + { + "Key": 11764063517792044591, + "Value": 2 + }, + { + "Key": 12702286953450386850, + "Value": 1 + }, + { + "Key": 14285852892804039565, + "Value": 2 + }, + { + "Key": 14502416192304263066, + "Value": 2 + }, + { + "Key": 14935618182048638376, + "Value": 1 + }, + { + "Key": 18321430858034101497, + "Value": 1 + } + ] + } + }, + "Component_[4373975411826598062]": { + "$type": "EditorGraphVariableManagerComponent", + "Id": 4373975411826598062, + "m_variableData": { + "m_nameVariableMap": [ + { + "Key": { + "m_id": "{0BA96D88-BF13-4810-B01C-CA513AF84440}" + }, + "Value": { + "Datum": { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 3 + }, + "isNullPointer": false, + "$type": "double", + "value": 0.0, + "label": "Number" + }, + "VariableId": { + "m_id": "{0BA96D88-BF13-4810-B01C-CA513AF84440}" + }, + "VariableName": "Variable 2" + } + }, + { + "Key": { + "m_id": "{39DB51CB-AA6E-4B3A-93EC-D622C44B3F4B}" + }, + "Value": { + "Datum": { + "isOverloadedStorage": false, + "scriptCanvasType": { + "m_type": 4, + "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}" + }, + "isNullPointer": false, + "$type": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7} AZStd::vector", + "value": [ + true, + true + ], + "label": "Array" + }, + "VariableId": { + "m_id": "{39DB51CB-AA6E-4B3A-93EC-D622C44B3F4B}" + }, + "VariableName": "Array_of_Bools" + } + } + ] + } + } + } + } + } +} \ No newline at end of file diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Core.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Core.cpp index 406163108d..2f51f47230 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Core.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Core.cpp @@ -360,16 +360,16 @@ TEST_F(ScriptCanvasTestFixture, ValueTypes) double numberDoubleValue = *numberDouble.GetAs(); Datum numberHex(Datum(0xff)); - /*int numberHexValue =*/ *numberHex.GetAs(); + [[maybe_unused]] int numberHexValue = *numberHex.GetAs(); Datum numberPi(Datum(3.14f)); float numberPiValue = *numberPi.GetAs(); Datum numberSigned(Datum(-100)); - /*int numberSignedValue =*/ *numberSigned.GetAs(); + [[maybe_unused]] int numberSignedValue = *numberSigned.GetAs(); Datum numberUnsigned(Datum(100u)); - /*unsigned int numberUnsignedValue =*/ *numberUnsigned.GetAs(); + [[maybe_unused]] unsigned int numberUnsignedValue = *numberUnsigned.GetAs(); Datum numberDoublePi(Datum(6.28)); double numberDoublePiValue = *numberDoublePi.GetAs(); @@ -472,8 +472,6 @@ TEST_F(ScriptCanvasTestFixture, Contracts) delete graph->GetEntity(); } -const int k_executionCount = 998; - TEST_F(ScriptCanvasTestFixture, While) { RunUnitTestGraph("LY_SC_UnitTest_While", ScriptCanvas::ExecutionMode::Interpreted); diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Variables.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Variables.cpp index 7b91768d84..01472f2e88 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Variables.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Variables.cpp @@ -207,28 +207,24 @@ TEST_F(ScriptCanvasTestFixture, RemoveVariableTest) GraphVariableManagerRequestBus::EventResult(addPropertyOutcome, scriptCanvasId, &GraphVariableManagerRequests::AddVariable, "FirstVector3", vector3Datum1, false); EXPECT_TRUE(addPropertyOutcome); EXPECT_TRUE(addPropertyOutcome.GetValue().IsValid()); - const VariableId firstVector3Id = addPropertyOutcome.GetValue(); ++numVariablesAdded; addPropertyOutcome = AZ::Failure(AZStd::string("Uninitialized")); GraphVariableManagerRequestBus::EventResult(addPropertyOutcome, scriptCanvasId, &GraphVariableManagerRequests::AddVariable, "SecondVector3", vector3Datum2, false); EXPECT_TRUE(addPropertyOutcome); EXPECT_TRUE(addPropertyOutcome.GetValue().IsValid()); - const VariableId secondVector3Id = addPropertyOutcome.GetValue(); ++numVariablesAdded; addPropertyOutcome = AZ::Failure(AZStd::string("Uninitialized")); GraphVariableManagerRequestBus::EventResult(addPropertyOutcome, scriptCanvasId, &GraphVariableManagerRequests::AddVariable, "FirstVector4", vector4Datum, false); EXPECT_TRUE(addPropertyOutcome); EXPECT_TRUE(addPropertyOutcome.GetValue().IsValid()); - const VariableId firstVector4Id = addPropertyOutcome.GetValue(); ++numVariablesAdded; addPropertyOutcome = AZ::Failure(AZStd::string("Uninitialized")); GraphVariableManagerRequestBus::EventResult(addPropertyOutcome, scriptCanvasId, &GraphVariableManagerRequests::AddVariable, "ProjectionMatrix", behaviorMatrix4x4Datum, false); EXPECT_TRUE(addPropertyOutcome); EXPECT_TRUE(addPropertyOutcome.GetValue().IsValid()); - const VariableId projectionMatrixId = addPropertyOutcome.GetValue(); ++numVariablesAdded; addPropertyOutcome = AZ::Failure(AZStd::string("Uninitialized")); diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBroadcast.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBroadcast.cpp index c55495efad..1e5e741b5d 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBroadcast.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBroadcast.cpp @@ -111,7 +111,7 @@ namespace ScriptEvents { // Iterate from end of parameters and count the number of consecutive valid BehaviorValue objects size_t numDefaultArguments = 0; - for (size_t i = GetNumArguments() - 1; i >= 0 && GetDefaultValue(i); --i, ++numDefaultArguments) + for (int i = static_cast(GetNumArguments()) - 1; i >= 0 && GetDefaultValue(static_cast(i)); --i, ++numDefaultArguments) { } return GetNumArguments() - numDefaultArguments; diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventMethod.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventMethod.cpp index 37f437670d..7153fda8bd 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventMethod.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventMethod.cpp @@ -121,7 +121,7 @@ namespace ScriptEvents { // Iterate from end of parameters and count the number of consecutive valid BehaviorValue objects size_t numDefaultArguments = 0; - for (size_t i = GetNumArguments() - 1; i >= 0 && GetDefaultValue(i); --i, ++numDefaultArguments) + for (int i = static_cast(GetNumArguments()) - 1; i >= 0 && GetDefaultValue(static_cast(i)); --i, ++numDefaultArguments) { } return GetNumArguments() - numDefaultArguments; diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAssetRef.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAssetRef.h index 506e1611bd..619dd42483 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAssetRef.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAssetRef.h @@ -135,7 +135,6 @@ namespace ScriptEvents AZ::Data::AssetCatalogRequestBus::BroadcastResult(assetInfo, &AZ::Data::AssetCatalogRequests::GetAssetInfoById, m_asset.GetId()); if (assetInfo.m_assetId.IsValid()) { - const AZ::Data::AssetType assetTypeId = azrtti_typeid(); auto& assetManager = AZ::Data::AssetManager::Instance(); m_asset = assetManager.GetAsset(m_asset.GetId(), azrtti_typeid(), m_asset.GetAutoLoadBehavior()); diff --git a/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsSystemEditorComponent.cpp b/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsSystemEditorComponent.cpp index 548f8d137a..b7586618dd 100644 --- a/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsSystemEditorComponent.cpp +++ b/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsSystemEditorComponent.cpp @@ -22,6 +22,8 @@ #if defined(SCRIPTEVENTS_EDITOR) +AZ_DECLARE_BUDGET(AzToolsFramework); + namespace ScriptEventsEditor { //////////////////////////// diff --git a/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.cpp b/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.cpp index 3d8f69de10..773d5d2255 100644 --- a/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.cpp +++ b/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.cpp @@ -26,6 +26,8 @@ #include #include +AZ_DEFINE_BUDGET(ScriptCanvas); + namespace ScriptEvents { void ScriptEventsSystemComponent::Reflect(AZ::ReflectContext* context) diff --git a/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.h b/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.h index 792d337c7f..64a0e49bca 100644 --- a/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.h +++ b/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.h @@ -20,6 +20,8 @@ #include #include +AZ_DECLARE_BUDGET(ScriptCanvas); + namespace ScriptEvents { class ScriptEventsSystemComponent diff --git a/Gems/ScriptEvents/Code/Tests/Tests/ScriptEventsTest_Core.cpp b/Gems/ScriptEvents/Code/Tests/Tests/ScriptEventsTest_Core.cpp index 7ae39db846..6da11deb95 100644 --- a/Gems/ScriptEvents/Code/Tests/Tests/ScriptEventsTest_Core.cpp +++ b/Gems/ScriptEvents/Code/Tests/Tests/ScriptEventsTest_Core.cpp @@ -406,26 +406,6 @@ namespace ScriptEventsTests EXPECT_TRUE(behaviorEbus->m_destroyHandler->Invoke(handler)); - auto onReady = [&assetData, &scriptEventName]() { - const char* renamedMethod = "__METHOD__1__"; - - ScriptEvents::ScriptEventsAsset* loadedScriptAsset = assetData.GetAs(); - EXPECT_TRUE(loadedScriptAsset); - - const ScriptEvents::ScriptEvent& loadedDefinition = loadedScriptAsset->m_definition; - - EXPECT_EQ(loadedDefinition.GetVersion(), 0); - EXPECT_STREQ(loadedDefinition.GetName().data(), scriptEventName.c_str()); - - - ScriptEvents::Method method; - bool foundMethod = loadedDefinition.FindMethod(renamedMethod, method); - EXPECT_TRUE(foundMethod); - EXPECT_EQ(method.GetNameProperty().GetVersion(), 1); - - assetData = {}; - }; - AssetEventHandler assetHandler2(assetId, []() {}, []() {}); assetHandler2.BusConnect(assetId); diff --git a/Gems/SliceFavorites/Code/Source/FavoriteDataModel.cpp b/Gems/SliceFavorites/Code/Source/FavoriteDataModel.cpp index 94b9d78247..6ef49f4a1b 100644 --- a/Gems/SliceFavorites/Code/Source/FavoriteDataModel.cpp +++ b/Gems/SliceFavorites/Code/Source/FavoriteDataModel.cpp @@ -562,7 +562,7 @@ namespace SliceFavorites // Rebuild the menu from the current tree m_favoritesMenu->clear(); - m_favoritesMenu->addAction(QIcon(":/Icons/SliceFavorite_Icon_Manage"), "Manage favorites...", m_favoritesMenu.get(), [this]() + m_favoritesMenu->addAction(QIcon(":/Icons/SliceFavorite_Icon_Manage"), "Manage favorites...", m_favoritesMenu.get(), []() { AzToolsFramework::OpenViewPane(SliceFavorites::ManageSliceFavorites); }); diff --git a/Gems/SurfaceData/Code/Include/SurfaceData/Tests/SurfaceDataTestMocks.h b/Gems/SurfaceData/Code/Include/SurfaceData/Tests/SurfaceDataTestMocks.h index 2f45d22748..11171215f7 100644 --- a/Gems/SurfaceData/Code/Include/SurfaceData/Tests/SurfaceDataTestMocks.h +++ b/Gems/SurfaceData/Code/Include/SurfaceData/Tests/SurfaceDataTestMocks.h @@ -293,7 +293,7 @@ namespace UnitTest SurfaceData::SurfaceDataRegistryHandle GetEntryHandle(AZ::EntityId id, const AZStd::vector& entryList) { // Look up the requested entity Id and see if we have a registered surface entry with that handle. If so, return the handle. - auto result = AZStd::find_if(entryList.begin(), entryList.end(), [this, id](const SurfaceData::SurfaceDataRegistryEntry& entry) { return entry.m_entityId == id; }); + auto result = AZStd::find_if(entryList.begin(), entryList.end(), [id](const SurfaceData::SurfaceDataRegistryEntry& entry) { return entry.m_entityId == id; }); if (result == entryList.end()) { return SurfaceData::InvalidSurfaceDataRegistryHandle; diff --git a/Gems/SurfaceData/Code/Source/SurfaceDataModule.cpp b/Gems/SurfaceData/Code/Source/SurfaceDataModule.cpp index 4eef54669a..35064bf4a4 100644 --- a/Gems/SurfaceData/Code/Source/SurfaceDataModule.cpp +++ b/Gems/SurfaceData/Code/Source/SurfaceDataModule.cpp @@ -10,7 +10,6 @@ #include #include #include -#include namespace SurfaceData { @@ -20,7 +19,6 @@ namespace SurfaceData SurfaceDataSystemComponent::CreateDescriptor(), SurfaceDataColliderComponent::CreateDescriptor(), SurfaceDataShapeComponent::CreateDescriptor(), - Terrain::TerrainSurfaceDataSystemComponent::CreateDescriptor(), }); } @@ -28,7 +26,6 @@ namespace SurfaceData { return AZ::ComponentTypeList{ azrtti_typeid(), - azrtti_typeid(), }; } } diff --git a/Gems/SurfaceData/Code/surfacedata_files.cmake b/Gems/SurfaceData/Code/surfacedata_files.cmake index 487dcb70e5..4b8ac914d7 100644 --- a/Gems/SurfaceData/Code/surfacedata_files.cmake +++ b/Gems/SurfaceData/Code/surfacedata_files.cmake @@ -19,8 +19,6 @@ set(FILES Include/SurfaceData/Utility/SurfaceDataUtility.h Source/SurfaceDataSystemComponent.cpp Source/SurfaceDataSystemComponent.h - Source/TerrainSurfaceDataSystemComponent.cpp - Source/TerrainSurfaceDataSystemComponent.h Source/SurfaceTag.cpp Source/Components/SurfaceDataColliderComponent.cpp Source/Components/SurfaceDataColliderComponent.h diff --git a/Gems/Terrain/Assets/Editor/Icons/Components/TerrainHeight.svg b/Gems/Terrain/Assets/Editor/Icons/Components/TerrainHeight.svg new file mode 100644 index 0000000000..57835e9c20 --- /dev/null +++ b/Gems/Terrain/Assets/Editor/Icons/Components/TerrainHeight.svg @@ -0,0 +1,7 @@ + + + icon / Environmental / Terrain Height + + + + \ No newline at end of file diff --git a/Gems/Terrain/Assets/Editor/Icons/Components/TerrainLayerRenderer.svg b/Gems/Terrain/Assets/Editor/Icons/Components/TerrainLayerRenderer.svg new file mode 100644 index 0000000000..fb9590ae7b --- /dev/null +++ b/Gems/Terrain/Assets/Editor/Icons/Components/TerrainLayerRenderer.svg @@ -0,0 +1,7 @@ + + + icon / Environmental / Terrain Mesh + + + + \ No newline at end of file diff --git a/Gems/Terrain/Assets/Editor/Icons/Components/TerrainLayerSpawner.svg b/Gems/Terrain/Assets/Editor/Icons/Components/TerrainLayerSpawner.svg new file mode 100644 index 0000000000..df73d78276 --- /dev/null +++ b/Gems/Terrain/Assets/Editor/Icons/Components/TerrainLayerSpawner.svg @@ -0,0 +1,7 @@ + + + icon / Environmental / Generate Terrian + + + + \ No newline at end of file diff --git a/Gems/Terrain/Assets/Editor/Icons/Components/TerrainWorld.svg b/Gems/Terrain/Assets/Editor/Icons/Components/TerrainWorld.svg new file mode 100644 index 0000000000..c6388d6215 --- /dev/null +++ b/Gems/Terrain/Assets/Editor/Icons/Components/TerrainWorld.svg @@ -0,0 +1,8 @@ + + + icon / Environmental / Terrain Refactor + + + + + \ No newline at end of file diff --git a/Gems/Terrain/Assets/Editor/Icons/Components/TerrainWorldDebugger.svg b/Gems/Terrain/Assets/Editor/Icons/Components/TerrainWorldDebugger.svg new file mode 100644 index 0000000000..bd1512afda --- /dev/null +++ b/Gems/Terrain/Assets/Editor/Icons/Components/TerrainWorldDebugger.svg @@ -0,0 +1,8 @@ + + + icon / Environmental / Terrain World Debugger + + + + + \ No newline at end of file diff --git a/Gems/Terrain/Assets/Editor/Icons/Components/TerrainWorldRenderer.svg b/Gems/Terrain/Assets/Editor/Icons/Components/TerrainWorldRenderer.svg new file mode 100644 index 0000000000..ab3716ad5d --- /dev/null +++ b/Gems/Terrain/Assets/Editor/Icons/Components/TerrainWorldRenderer.svg @@ -0,0 +1,8 @@ + + + icon / Environmental / Terrain World Renderer + + + + + \ No newline at end of file diff --git a/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainHeight.svg b/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainHeight.svg new file mode 100644 index 0000000000..b87a0b4d7e --- /dev/null +++ b/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainHeight.svg @@ -0,0 +1,25 @@ + + + icon / Environmental / Terrain Height - box + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainLayerRenderer.svg b/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainLayerRenderer.svg new file mode 100644 index 0000000000..521d56784c --- /dev/null +++ b/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainLayerRenderer.svg @@ -0,0 +1,25 @@ + + + icon / Environmental / Terrain Mesh - box + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainLayerSpawner.svg b/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainLayerSpawner.svg new file mode 100644 index 0000000000..c078d32fe5 --- /dev/null +++ b/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainLayerSpawner.svg @@ -0,0 +1,25 @@ + + + icon / Environmental / Generate Terrian - box + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainWorld.svg b/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainWorld.svg new file mode 100644 index 0000000000..2aee65f2a8 --- /dev/null +++ b/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainWorld.svg @@ -0,0 +1,25 @@ + + + icon / Environmental / Terrain Refactor - box + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainWorldDebugger.svg b/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainWorldDebugger.svg new file mode 100644 index 0000000000..1b729ab73f --- /dev/null +++ b/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainWorldDebugger.svg @@ -0,0 +1,25 @@ + + + icon / Environmental / Terrain World Debugger - box + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainWorldRenderer.svg b/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainWorldRenderer.svg new file mode 100644 index 0000000000..4287508f10 --- /dev/null +++ b/Gems/Terrain/Assets/Editor/Icons/Components/Viewport/TerrainWorldRenderer.svg @@ -0,0 +1,25 @@ + + + icon / Environmental / Terrain World Renderer - box + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Gems/Terrain/Assets/Shaders/Terrain/Terrain.azsl b/Gems/Terrain/Assets/Shaders/Terrain/Terrain.azsl new file mode 100644 index 0000000000..57d0909ae4 --- /dev/null +++ b/Gems/Terrain/Assets/Shaders/Terrain/Terrain.azsl @@ -0,0 +1,125 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include + + +struct VertexInput +{ + float2 Position : POSITION; + float2 UV : UV; +}; + +struct VertexOutput +{ + float4 Position : SV_Position; + float3 Normal : NORMAL; + float2 UV : UV; +}; + +ShaderResourceGroup ObjectSrg : SRG_PerObject +{ + Texture2D HeightmapImage; + + Sampler LinearSampler + { + MinFilter = Linear; + MagFilter = Linear; + MipFilter = Linear; + AddressU = Clamp; + AddressV = Clamp; + AddressW = Clamp; + }; + + row_major float3x4 m_modelToWorld; + float m_heightScale; + float2 m_uvMin; + float2 m_uvMax; + float2 m_uvStep; +} + +float4x4 GetObject_WorldMatrix() +{ + float4x4 modelToWorld = float4x4( + float4(1, 0, 0, 0), + float4(0, 1, 0, 0), + float4(0, 0, 1, 0), + float4(0, 0, 0, 1)); + + modelToWorld[0] = ObjectSrg::m_modelToWorld[0]; + modelToWorld[1] = ObjectSrg::m_modelToWorld[1]; + modelToWorld[2] = ObjectSrg::m_modelToWorld[2]; + return modelToWorld; +} + +float GetHeight(float2 origUv) +{ + float2 uv = clamp(origUv, 0.0f, 1.0f); + return ObjectSrg::m_heightScale * (ObjectSrg::HeightmapImage.SampleLevel(ObjectSrg::LinearSampler, uv, 0).r - 0.5f); +} + +VertexOutput MainVS(in VertexInput input) +{ + VertexOutput output; + + // Clamp the UVs *after* lerping to ensure that everything aligns properly right to the edge. + // We use out-of-bounds UV values to denote vertices that need to be removed. + float2 origUv = lerp(ObjectSrg::m_uvMin, ObjectSrg::m_uvMax, input.UV); + float2 uv = clamp(origUv, 0.0f, 1.0f); + + // Loop up the height and calculate our final position. + float height = GetHeight(uv); + float3 worldPosition = mul(GetObject_WorldMatrix(), float4(input.Position, height, 1.0f)).xyz; + output.Position = mul(ViewSrg::m_viewProjectionMatrix, float4(worldPosition, 1.0f)); + + // Remove all vertices outside our bounds by turning them into NaN positions. + output.Position = output.Position / ((origUv.x >= 0.0f && origUv.x < 1.0f && origUv.y >= 0.0f && origUv.y < 1.0f) ? 1.0f : 0.0f); + + // Calculate normal + float2 gridSize = {1.0f, 1.0f}; + float up = GetHeight(uv + ObjectSrg::m_uvStep * float2(-1.0f, 0.0f)); + float right = GetHeight(uv + ObjectSrg::m_uvStep * float2( 0.0f, 1.0f)); + float down = GetHeight(uv + ObjectSrg::m_uvStep * float2( 1.0f, 0.0f)); + float left = GetHeight(uv + ObjectSrg::m_uvStep * float2( 0.0f, -1.0f)); + + float dydx = (right - left) * gridSize[0]; + float dydz = (down - up) * gridSize[1]; + + output.Normal = normalize(float3(dydx, 2.0f, dydz)); + + output.UV = uv; + return output; +} + +struct PixelOutput +{ + float4 m_color : SV_Target0; +}; + +PixelOutput MainPS(in VertexOutput input) +{ + PixelOutput output; + + // Hard-coded fake light direction + float3 lightDirection = normalize(float3(1.0, -1.0, 1.0)); + + // Fake light intensity ranges from 1.0 for normals directly facing the light to zero for those + // directly facing away. + float lightDot = dot(normalize(input.Normal), lightDirection); + float lightIntensity = lightDot * 0.5 + 0.5; + + // add a small amount of ambient and reduce direct light to keep in 0-1 range + lightIntensity = saturate(0.1 + lightIntensity * 0.9); + + // The lightIntensity should not affect alpha so only apply it to rgb. + //output.m_color.rgb = ((input.Normal + float3(1.0, 1.0, 1.0)) / 2.0); + output.m_color.rgb = float3(1.0, 1.0, 1.0) * lightIntensity; + output.m_color.a = 1.0f; + + return output; +} diff --git a/Gems/Terrain/Assets/Shaders/Terrain/Terrain.shader b/Gems/Terrain/Assets/Shaders/Terrain/Terrain.shader new file mode 100644 index 0000000000..f20f4201ae --- /dev/null +++ b/Gems/Terrain/Assets/Shaders/Terrain/Terrain.shader @@ -0,0 +1,37 @@ +{ + + "Source" : "Terrain", + + + "RasterState" : { "CullMode" : "None" }, + + "DepthStencilState" : { + "Depth" : { "Enable" : true, "CompareFunc" : "GreaterEqual" } + }, + + "BlendState" : { + "Enable" : true, + "BlendSource" : "One", + "BlendAlphaSource" : "One", + "BlendDest" : "AlphaSourceInverse", + "BlendAlphaDest" : "AlphaSourceInverse", + "BlendAlphaOp" : "Add" + }, + + "DrawList" : "forward", + + "ProgramSettings": + { + "EntryPoints": + [ + { + "name": "MainVS", + "type": "Vertex" + }, + { + "name": "MainPS", + "type": "Fragment" + } + ] + } +} diff --git a/Gems/Terrain/CMakeLists.txt b/Gems/Terrain/CMakeLists.txt new file mode 100644 index 0000000000..34bce0825f --- /dev/null +++ b/Gems/Terrain/CMakeLists.txt @@ -0,0 +1,8 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +add_subdirectory(Code) diff --git a/Gems/Terrain/Code/CMakeLists.txt b/Gems/Terrain/Code/CMakeLists.txt new file mode 100644 index 0000000000..b4a35edbbf --- /dev/null +++ b/Gems/Terrain/Code/CMakeLists.txt @@ -0,0 +1,138 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +ly_add_target( + NAME Terrain.Static STATIC + NAMESPACE Gem + FILES_CMAKE + terrain_files.cmake + INCLUDE_DIRECTORIES + PUBLIC + Include + PRIVATE + Source + BUILD_DEPENDENCIES + PUBLIC + AZ::AzCore + AZ::AzFramework + Gem::Atom_RPI.Public + Gem::Atom_Utils.Static + Gem::GradientSignal + Gem::SurfaceData + Gem::LmbrCentral +) + +ly_add_target( + NAME Terrain ${PAL_TRAIT_MONOLITHIC_DRIVEN_MODULE_TYPE} + NAMESPACE Gem + FILES_CMAKE + terrain_shared_files.cmake + INCLUDE_DIRECTORIES + PUBLIC + Include + PRIVATE + Source + BUILD_DEPENDENCIES + PRIVATE + Gem::Terrain.Static + Gem::LmbrCentral + RUNTIME_DEPENDENCIES + Gem::LmbrCentral +) + +# the above module is for use in all client/server types +ly_create_alias(NAME Terrain.Servers NAMESPACE Gem TARGETS Gem::Terrain) +ly_create_alias(NAME Terrain.Clients NAMESPACE Gem TARGETS Gem::Terrain) + +# If we are on a host platform, we want to add the host tools targets like the Terrain.Editor target which +# will also depend on Terrain.Static +if(PAL_TRAIT_BUILD_HOST_TOOLS) + ly_add_target( + NAME Terrain.Editor MODULE + NAMESPACE Gem + AUTOMOC + FILES_CMAKE + terrain_editor_shared_files.cmake + COMPILE_DEFINITIONS + PRIVATE + TERRAIN_EDITOR + INCLUDE_DIRECTORIES + PRIVATE + Source + PUBLIC + Include + BUILD_DEPENDENCIES + PUBLIC + AZ::AzToolsFramework + Gem::GradientSignal + Gem::LmbrCentral + Gem::Terrain.Static + ) + + # the above module is for use in dev tool situations + ly_create_alias(NAME Terrain.Builders NAMESPACE Gem TARGETS Gem::Terrain.Editor) + ly_create_alias(NAME Terrain.Tools NAMESPACE Gem TARGETS Gem::Terrain.Editor) +endif() + +################################################################################ +# Tests +################################################################################ +# See if globally, tests are supported +if(PAL_TRAIT_BUILD_TESTS_SUPPORTED) + # We globally support tests, see if we support tests on this platform for Terrain.Static + if(PAL_TRAIT_TERRAIN_TEST_SUPPORTED) + # We support Terrain.Tests on this platform, add Terrain.Tests target which depends on Terrain.Static + ly_add_target( + NAME Terrain.Tests ${PAL_TRAIT_TEST_TARGET_TYPE} + NAMESPACE Gem + FILES_CMAKE + terrain_files.cmake + terrain_tests_files.cmake + INCLUDE_DIRECTORIES + PRIVATE + Tests + Source + BUILD_DEPENDENCIES + PRIVATE + AZ::AzTest + AZ::AzFramework + Gem::Terrain.Static + ) + + # Add Terrain.Tests to googletest + ly_add_googletest( + NAME Gem::Terrain.Tests + ) + endif() + + # If we are a host platform we want to add tools test like editor tests here + if(PAL_TRAIT_BUILD_HOST_TOOLS) + # We are a host platform, see if Editor tests are supported on this platform + if(PAL_TRAIT_TERRAIN_EDITOR_TEST_SUPPORTED) + # We support Terrain.Editor.Tests on this platform, add Terrain.Editor.Tests target which depends on Terrain.Editor + ly_add_target( + NAME Terrain.Editor.Tests ${PAL_TRAIT_TEST_TARGET_TYPE} + NAMESPACE Gem + FILES_CMAKE + terrain_editor_tests_files.cmake + INCLUDE_DIRECTORIES + PRIVATE + Tests + Source + BUILD_DEPENDENCIES + PRIVATE + AZ::AzTest + Gem::Terrain.Editor + ) + + # Add Terrain.Editor.Tests to googletest + ly_add_googletest( + NAME Gem::Terrain.Editor.Tests + ) + endif() + endif() +endif() diff --git a/Gems/Terrain/Code/Source/Components/TerrainHeightGradientListComponent.cpp b/Gems/Terrain/Code/Source/Components/TerrainHeightGradientListComponent.cpp new file mode 100644 index 0000000000..d64f660d90 --- /dev/null +++ b/Gems/Terrain/Code/Source/Components/TerrainHeightGradientListComponent.cpp @@ -0,0 +1,231 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + + +namespace Terrain +{ + void TerrainHeightGradientListConfig::Reflect(AZ::ReflectContext* context) + { + AZ::SerializeContext* serialize = azrtti_cast(context); + if (serialize) + { + serialize->Class() + ->Version(1) + ->Field("GradientEntities", &TerrainHeightGradientListConfig::m_gradientEntities) + ; + + AZ::EditContext* edit = serialize->GetEditContext(); + if (edit) + { + edit->Class( + "Terrain Height Gradient List Component", "Provide height data for a region of the world") + ->ClassElement(AZ::Edit::ClassElements::EditorData, "") + ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) + ->Attribute(AZ::Edit::Attributes::AutoExpand, true) + + ->DataElement(0, &TerrainHeightGradientListConfig::m_gradientEntities, "Gradient Entities", "Ordered list of gradients to use as height providers.") + ->Attribute(AZ::Edit::Attributes::AutoExpand, true) + ->Attribute(AZ::Edit::Attributes::ContainerCanBeModified, true) + ->Attribute(AZ::Edit::Attributes::RequiredService, AZ_CRC_CE("GradientService")) + ; + } + } + } + + void TerrainHeightGradientListComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.push_back(AZ_CRC_CE("TerrainHeightProviderService")); + } + + void TerrainHeightGradientListComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.push_back(AZ_CRC_CE("TerrainHeightProviderService")); + services.push_back(AZ_CRC_CE("GradientService")); + } + + void TerrainHeightGradientListComponent::GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.push_back(AZ_CRC_CE("TerrainAreaService")); + services.push_back(AZ_CRC_CE("BoxShapeService")); + } + + void TerrainHeightGradientListComponent::Reflect(AZ::ReflectContext* context) + { + TerrainHeightGradientListConfig::Reflect(context); + + AZ::SerializeContext* serialize = azrtti_cast(context); + if (serialize) + { + serialize->Class() + ->Version(0) + ->Field("Configuration", &TerrainHeightGradientListComponent::m_configuration) + ; + } + } + + TerrainHeightGradientListComponent::TerrainHeightGradientListComponent(const TerrainHeightGradientListConfig& configuration) + : m_configuration(configuration) + { + } + + void TerrainHeightGradientListComponent::Activate() + { + LmbrCentral::DependencyNotificationBus::Handler::BusConnect(GetEntityId()); + Terrain::TerrainAreaHeightRequestBus::Handler::BusConnect(GetEntityId()); + AzFramework::Terrain::TerrainDataNotificationBus::Handler::BusConnect(); + + // Make sure we get update notifications whenever this entity or any dependent gradient entity changes in any way. + // We'll use that to notify the terrain system that the height information needs to be refreshed. + m_dependencyMonitor.Reset(); + m_dependencyMonitor.ConnectOwner(GetEntityId()); + m_dependencyMonitor.ConnectDependency(GetEntityId()); + + for (auto& entityId : m_configuration.m_gradientEntities) + { + if (entityId != GetEntityId()) + { + m_dependencyMonitor.ConnectDependency(entityId); + } + } + + // Cache any height data needed and notify that the area has changed. + OnCompositionChanged(); + } + + void TerrainHeightGradientListComponent::Deactivate() + { + m_dependencyMonitor.Reset(); + AzFramework::Terrain::TerrainDataNotificationBus::Handler::BusDisconnect(); + Terrain::TerrainAreaHeightRequestBus::Handler::BusDisconnect(); + LmbrCentral::DependencyNotificationBus::Handler::BusDisconnect(); + + // Since this height data will no longer exist, notify the terrain system to refresh the area. + TerrainSystemServiceRequestBus::Broadcast(&TerrainSystemServiceRequestBus::Events::RefreshArea, GetEntityId()); + } + + bool TerrainHeightGradientListComponent::ReadInConfig(const AZ::ComponentConfig* baseConfig) + { + if (auto config = azrtti_cast(baseConfig)) + { + m_configuration = *config; + return true; + } + return false; + } + + bool TerrainHeightGradientListComponent::WriteOutConfig(AZ::ComponentConfig* outBaseConfig) const + { + if (auto config = azrtti_cast(outBaseConfig)) + { + *config = m_configuration; + return true; + } + return false; + } + + float TerrainHeightGradientListComponent::GetHeight(float x, float y) + { + float maxSample = 0.0f; + + GradientSignal::GradientSampleParams params(AZ::Vector3(x, y, 0.0f)); + + // Right now, when the list contains multiple entries, we will use the highest point from each gradient. + // This is needed in part because gradients don't really have world bounds, so they exist everywhere but generally have a value + // of 0 outside their data bounds if they're using bounded data. We should examine the possibility of extending the gradient API + // to provide actual bounds so that it's possible to detect if the gradient even 'exists' in an area, at which point we could just + // make this list a prioritized list from top to bottom for any points that overlap. + for (auto& gradientId : m_configuration.m_gradientEntities) + { + float sample = 0.0f; + GradientSignal::GradientRequestBus::EventResult(sample, gradientId, &GradientSignal::GradientRequestBus::Events::GetValue, params); + maxSample = AZ::GetMax(maxSample, sample); + } + + const float height = AZ::Lerp(m_cachedShapeBounds.GetMin().GetZ(), m_cachedShapeBounds.GetMax().GetZ(), maxSample); + + return AZ::GetClamp(height, m_cachedMinWorldHeight, m_cachedMaxWorldHeight); + } + + void TerrainHeightGradientListComponent::GetHeight( + const AZ::Vector3& inPosition, AZ::Vector3& outPosition, [[maybe_unused]] Sampler sampleFilter = Sampler::DEFAULT) + { + const float height = GetHeight(inPosition.GetX(), inPosition.GetY()); + outPosition.SetZ(height); + } + + void TerrainHeightGradientListComponent::GetNormal( + const AZ::Vector3& inPosition, AZ::Vector3& outNormal, [[maybe_unused]] Sampler sampleFilter = Sampler::DEFAULT) + { + const float x = inPosition.GetX(); + const float y = inPosition.GetY(); + + if ((x >= m_cachedShapeBounds.GetMin().GetX()) && (x <= m_cachedShapeBounds.GetMax().GetX()) && + (y >= m_cachedShapeBounds.GetMin().GetY()) && (y <= m_cachedShapeBounds.GetMax().GetY())) + { + AZ::Vector2 fRange = (m_cachedHeightQueryResolution / 2.0f) + AZ::Vector2(0.05f); + + AZ::Vector3 v1(x - fRange.GetX(), y - fRange.GetY(), GetHeight(x - fRange.GetX(), y - fRange.GetY())); + AZ::Vector3 v2(x - fRange.GetX(), y + fRange.GetY(), GetHeight(x - fRange.GetX(), y + fRange.GetY())); + AZ::Vector3 v3(x + fRange.GetX(), y - fRange.GetY(), GetHeight(x + fRange.GetX(), y - fRange.GetY())); + AZ::Vector3 v4(x + fRange.GetX(), y + fRange.GetY(), GetHeight(x + fRange.GetX(), y + fRange.GetY())); + outNormal = (v3 - v2).Cross(v4 - v1).GetNormalized(); + } + } + + + void TerrainHeightGradientListComponent::OnCompositionChanged() + { + RefreshMinMaxHeights(); + TerrainSystemServiceRequestBus::Broadcast(&TerrainSystemServiceRequestBus::Events::RefreshArea, GetEntityId()); + } + + void TerrainHeightGradientListComponent::RefreshMinMaxHeights() + { + // Get the height range of our height provider based on the shape component. + LmbrCentral::ShapeComponentRequestsBus::EventResult(m_cachedShapeBounds, GetEntityId(), &LmbrCentral::ShapeComponentRequestsBus::Events::GetEncompassingAabb); + + // Get the height range of the entire world + m_cachedHeightQueryResolution = AZ::Vector2(1.0f); + AzFramework::Terrain::TerrainDataRequestBus::BroadcastResult( + m_cachedHeightQueryResolution, &AzFramework::Terrain::TerrainDataRequestBus::Events::GetTerrainGridResolution); + + AZ::Aabb worldBounds = AZ::Aabb::CreateNull(); + AzFramework::Terrain::TerrainDataRequestBus::BroadcastResult( + worldBounds, &AzFramework::Terrain::TerrainDataRequestBus::Events::GetTerrainAabb); + + // Save off the min/max heights so that we don't have to re-query them on every single height query. + m_cachedMinWorldHeight = worldBounds.GetMin().GetZ(); + m_cachedMaxWorldHeight = worldBounds.GetMax().GetZ(); + } + + void TerrainHeightGradientListComponent::OnTerrainDataChanged( + [[maybe_unused]] const AZ::Aabb& dirtyRegion, TerrainDataChangedMask dataChangedMask) + { + if (dataChangedMask & TerrainDataChangedMask::Settings) + { + // If the terrain system settings changed, it's possible that the world bounds have changed, which can affect our height data. + // Refresh the min/max heights and notify that the height data for this area needs to be refreshed. + OnCompositionChanged(); + } + } + +} diff --git a/Gems/Terrain/Code/Source/Components/TerrainHeightGradientListComponent.h b/Gems/Terrain/Code/Source/Components/TerrainHeightGradientListComponent.h new file mode 100644 index 0000000000..7635680815 --- /dev/null +++ b/Gems/Terrain/Code/Source/Components/TerrainHeightGradientListComponent.h @@ -0,0 +1,101 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include +#include + + +namespace LmbrCentral +{ + template + class EditorWrappedComponentBase; +} + +namespace Terrain +{ + class TerrainHeightGradientListConfig + : public AZ::ComponentConfig + { + public: + AZ_CLASS_ALLOCATOR(TerrainHeightGradientListConfig, AZ::SystemAllocator, 0); + AZ_RTTI(TerrainHeightGradientListConfig, "{C5FD71A9-0722-4D4C-B605-EBEBF90C628F}", AZ::ComponentConfig); + static void Reflect(AZ::ReflectContext* context); + + AZStd::vector m_gradientEntities; + }; + + + class TerrainHeightGradientListComponent + : public AZ::Component + , private Terrain::TerrainAreaHeightRequestBus::Handler + , private LmbrCentral::DependencyNotificationBus::Handler + , private AzFramework::Terrain::TerrainDataNotificationBus::Handler + { + public: + template + friend class LmbrCentral::EditorWrappedComponentBase; + AZ_COMPONENT(TerrainHeightGradientListComponent, "{1BB3BA6C-6D4A-4636-B542-F23ECBA8F2AB}"); + static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void Reflect(AZ::ReflectContext* context); + + TerrainHeightGradientListComponent(const TerrainHeightGradientListConfig& configuration); + TerrainHeightGradientListComponent() = default; + ~TerrainHeightGradientListComponent() = default; + + void GetHeight(const AZ::Vector3& inPosition, AZ::Vector3& outPosition, Sampler sampleFilter) override; + void GetNormal(const AZ::Vector3& inPosition, AZ::Vector3& outNormal, Sampler sampleFilter) override; + + ////////////////////////////////////////////////////////////////////////// + // AZ::Component interface implementation + void Activate() override; + void Deactivate() override; + bool ReadInConfig(const AZ::ComponentConfig* baseConfig) override; + bool WriteOutConfig(AZ::ComponentConfig* outBaseConfig) const override; + + ////////////////////////////////////////////////////////////////////////// + // LmbrCentral::DependencyNotificationBus + void OnCompositionChanged() override; + + ////////////////////////////////////////////////////////////////////////// + // AzFramework::Terrain::TerrainDataNotificationBus + void OnTerrainDataChanged(const AZ::Aabb& dirtyRegion, TerrainDataChangedMask dataChangedMask) override; + + private: + TerrainHeightGradientListConfig m_configuration; + + /////////////////////////////////////////// + void GetNormalSynchronous(float x, float y, AZ::Vector3& normal); + + void RefreshMinMaxHeights(); + float GetHeight(float x, float y); + + float m_cachedMinWorldHeight{ 0.0f }; + float m_cachedMaxWorldHeight{ 0.0f }; + AZ::Vector2 m_cachedHeightQueryResolution{ 1.0f, 1.0f }; + AZ::Aabb m_cachedShapeBounds; + + LmbrCentral::DependencyMonitor m_dependencyMonitor; + }; +} diff --git a/Gems/Terrain/Code/Source/Components/TerrainLayerSpawnerComponent.cpp b/Gems/Terrain/Code/Source/Components/TerrainLayerSpawnerComponent.cpp new file mode 100644 index 0000000000..06372a3490 --- /dev/null +++ b/Gems/Terrain/Code/Source/Components/TerrainLayerSpawnerComponent.cpp @@ -0,0 +1,160 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +namespace Terrain +{ + void TerrainLayerSpawnerConfig::Reflect(AZ::ReflectContext* context) + { + AZ::SerializeContext* serialize = azrtti_cast(context); + if (serialize) + { + serialize->Class() + ->Version(1) + ->Field("Layer", &TerrainLayerSpawnerConfig::m_layer) + ->Field("Priority", &TerrainLayerSpawnerConfig::m_priority) + ->Field("UseGroundPlane", &TerrainLayerSpawnerConfig::m_useGroundPlane) + ; + + AZ::EditContext* edit = serialize->GetEditContext(); + if (edit) + { + edit->Class( + "Terrain Layer Spawner Component", "Provide terrain data for a region of the world") + ->ClassElement(AZ::Edit::ClassElements::EditorData, "") + ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) + ->Attribute(AZ::Edit::Attributes::AutoExpand, true) + + ->DataElement(AZ::Edit::UIHandlers::ComboBox, &TerrainLayerSpawnerConfig::m_layer, "Layer Priority", "Defines a high level order that terrain spawners are applied") + ->Attribute(AZ::Edit::Attributes::EnumValues, &TerrainLayerSpawnerConfig::GetSelectableLayers) + ->DataElement(AZ::Edit::UIHandlers::Slider, &TerrainLayerSpawnerConfig::m_priority, "Sub Priority", "Defines order terrain spawners are applied within a layer. Larger numbers = higher priority") + ->Attribute(AZ::Edit::Attributes::Min, AreaConstants::s_priorityMin) + ->Attribute(AZ::Edit::Attributes::Max, AreaConstants::s_priorityMax) + ->Attribute(AZ::Edit::Attributes::SoftMin, AreaConstants::s_priorityMin) + ->Attribute(AZ::Edit::Attributes::SoftMax, AreaConstants::s_prioritySoftMax) + ->DataElement(AZ::Edit::UIHandlers::Default, &TerrainLayerSpawnerConfig::m_useGroundPlane, "Use Ground Plane", "Determines whether or not to provide a default ground plane") + ; + } + } + } + + AZStd::vector> TerrainLayerSpawnerConfig::GetSelectableLayers() const + { + AZStd::vector> selectableLayers; + selectableLayers.push_back({ AreaConstants::s_backgroundLayer, AZStd::string("Background") }); + selectableLayers.push_back({ AreaConstants::s_foregroundLayer, AZStd::string("Foreground") }); + return selectableLayers; + } + + + void TerrainLayerSpawnerComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.push_back(AZ_CRC("TerrainAreaService")); + } + + void TerrainLayerSpawnerComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.push_back(AZ_CRC("TerrainAreaService")); + } + + void TerrainLayerSpawnerComponent::GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.push_back(AZ_CRC("BoxShapeService")); + } + + void TerrainLayerSpawnerComponent::Reflect(AZ::ReflectContext* context) + { + TerrainLayerSpawnerConfig::Reflect(context); + + AZ::SerializeContext* serialize = azrtti_cast(context); + if (serialize) + { + serialize->Class() + ->Version(0) + ->Field("Configuration", &TerrainLayerSpawnerComponent::m_configuration) + ; + } + } + + TerrainLayerSpawnerComponent::TerrainLayerSpawnerComponent(const TerrainLayerSpawnerConfig& configuration) + : m_configuration(configuration) + { + } + + void TerrainLayerSpawnerComponent::Activate() + { + AZ::TransformNotificationBus::Handler::BusConnect(GetEntityId()); + LmbrCentral::ShapeComponentNotificationsBus::Handler::BusConnect(GetEntityId()); + TerrainAreaRequestBus::Handler::BusConnect(GetEntityId()); + + TerrainSystemServiceRequestBus::Broadcast(&TerrainSystemServiceRequestBus::Events::RegisterArea, GetEntityId()); + } + + void TerrainLayerSpawnerComponent::Deactivate() + { + TerrainAreaRequestBus::Handler::BusDisconnect(); + TerrainSystemServiceRequestBus::Broadcast(&TerrainSystemServiceRequestBus::Events::UnregisterArea, GetEntityId()); + + AZ::TransformNotificationBus::Handler::BusDisconnect(); + LmbrCentral::ShapeComponentNotificationsBus::Handler::BusDisconnect(); + } + + bool TerrainLayerSpawnerComponent::ReadInConfig(const AZ::ComponentConfig* baseConfig) + { + if (auto config = azrtti_cast(baseConfig)) + { + m_configuration = *config; + return true; + } + return false; + } + + bool TerrainLayerSpawnerComponent::WriteOutConfig(AZ::ComponentConfig* outBaseConfig) const + { + if (auto config = azrtti_cast(outBaseConfig)) + { + *config = m_configuration; + return true; + } + return false; + } + + void TerrainLayerSpawnerComponent::OnTransformChanged([[maybe_unused]] const AZ::Transform& local, [[maybe_unused]] const AZ::Transform& world) + { + RefreshArea(); + } + + void TerrainLayerSpawnerComponent::OnShapeChanged([[maybe_unused]] ShapeChangeReasons changeReason) + { + RefreshArea(); + } + + void TerrainLayerSpawnerComponent::RegisterArea() + { + TerrainSystemServiceRequestBus::Broadcast(&TerrainSystemServiceRequestBus::Events::RegisterArea, GetEntityId()); + } + + void TerrainLayerSpawnerComponent::RefreshArea() + { + TerrainSystemServiceRequestBus::Broadcast(&TerrainSystemServiceRequestBus::Events::RefreshArea, GetEntityId()); + } +} diff --git a/Gems/Terrain/Code/Source/Components/TerrainLayerSpawnerComponent.h b/Gems/Terrain/Code/Source/Components/TerrainLayerSpawnerComponent.h new file mode 100644 index 0000000000..1f1ae90227 --- /dev/null +++ b/Gems/Terrain/Code/Source/Components/TerrainLayerSpawnerComponent.h @@ -0,0 +1,97 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include + +#include +#include + +#include +#include + +#include +#include +#include + +namespace LmbrCentral +{ + template + class EditorWrappedComponentBase; +} + +namespace Terrain +{ + namespace AreaConstants + { + static const AZ::u32 s_backgroundLayer = 0; + static const AZ::u32 s_foregroundLayer = 1; + static const AZ::u32 s_priorityMin = 0; + static const AZ::u32 s_priorityMax = 10000; //arbitrary number because std::numeric_limits::max() always dislays -1 in RPE + static const AZ::u32 s_prioritySoftMax = 100; //design specified slider range + } + + class TerrainLayerSpawnerConfig + : public AZ::ComponentConfig + { + public: + AZ_CLASS_ALLOCATOR(TerrainLayerSpawnerConfig, AZ::SystemAllocator, 0); + AZ_RTTI(TerrainLayerSpawnerConfig, "{8E0695DE-E843-4858-BAEA-70953E74C810}", AZ::ComponentConfig); + static void Reflect(AZ::ReflectContext* context); + + AZStd::vector> GetSelectableLayers() const; + AZ::u32 m_layer = AreaConstants::s_foregroundLayer; + AZ::u32 m_priority = AreaConstants::s_priorityMin; + bool m_useGroundPlane = true; + }; + + + class TerrainLayerSpawnerComponent + : public AZ::Component + , private AZ::TransformNotificationBus::Handler + , private LmbrCentral::ShapeComponentNotificationsBus::Handler + , private Terrain::TerrainAreaRequestBus::Handler + { + public: + template + friend class LmbrCentral::EditorWrappedComponentBase; + AZ_COMPONENT(TerrainLayerSpawnerComponent, "{3848605F-A4EA-478C-B710-84AB8DCA9EC5}"); + static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void Reflect(AZ::ReflectContext* context); + + TerrainLayerSpawnerComponent(const TerrainLayerSpawnerConfig& configuration); + TerrainLayerSpawnerComponent() = default; + ~TerrainLayerSpawnerComponent() = default; + + ////////////////////////////////////////////////////////////////////////// + // AZ::Component interface implementation + void Activate() override; + void Deactivate() override; + bool ReadInConfig(const AZ::ComponentConfig* baseConfig) override; + bool WriteOutConfig(AZ::ComponentConfig* outBaseConfig) const override; + + + ////////////////////////////////////////////////////////////////////////// + // AZ::TransformNotificationBus::Handler + void OnTransformChanged(const AZ::Transform& local, const AZ::Transform& world) override; + + // ShapeComponentNotificationsBus + void OnShapeChanged(ShapeChangeReasons changeReason) override; + + void RegisterArea() override; + void RefreshArea() override; + + private: + TerrainLayerSpawnerConfig m_configuration; + }; +} diff --git a/Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.cpp b/Gems/Terrain/Code/Source/Components/TerrainSurfaceDataSystemComponent.cpp similarity index 96% rename from Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.cpp rename to Gems/Terrain/Code/Source/Components/TerrainSurfaceDataSystemComponent.cpp index a60bbc4034..04c94b24d6 100644 --- a/Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.cpp +++ b/Gems/Terrain/Code/Source/Components/TerrainSurfaceDataSystemComponent.cpp @@ -6,7 +6,7 @@ * */ -#include +#include #include #include #include @@ -58,7 +58,7 @@ namespace Terrain editContext->Class("Terrain Surface Data System", "Manages surface data requests against legacy terrain") ->ClassElement(AZ::Edit::ClassElements::EditorData, "") ->Attribute(AZ::Edit::Attributes::Category, "Surface Data") - ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("System", 0xc94d118b)) + ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC_CE("System")) ->Attribute(AZ::Edit::Attributes::AutoExpand, true) ->DataElement(0, &TerrainSurfaceDataSystemComponent::m_configuration, "Configuration", "") ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) @@ -78,18 +78,18 @@ namespace Terrain void TerrainSurfaceDataSystemComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services) { - services.push_back(AZ_CRC("SurfaceDataProviderService", 0xfe9fb95e)); - services.push_back(AZ_CRC("TerrainSurfaceDataProviderService", 0xa1ac7717)); + services.push_back(AZ_CRC_CE("SurfaceDataProviderService")); + services.push_back(AZ_CRC_CE("TerrainSurfaceDataProviderService")); } void TerrainSurfaceDataSystemComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services) { - services.push_back(AZ_CRC("TerrainSurfaceDataProviderService", 0xa1ac7717)); + services.push_back(AZ_CRC_CE("TerrainSurfaceDataProviderService")); } void TerrainSurfaceDataSystemComponent::GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& services) { - services.push_back(AZ_CRC("SurfaceDataSystemService", 0x1d44d25f)); + services.push_back(AZ_CRC_CE("SurfaceDataSystemService")); } void TerrainSurfaceDataSystemComponent::Activate() diff --git a/Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.h b/Gems/Terrain/Code/Source/Components/TerrainSurfaceDataSystemComponent.h similarity index 100% rename from Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.h rename to Gems/Terrain/Code/Source/Components/TerrainSurfaceDataSystemComponent.h diff --git a/Gems/Terrain/Code/Source/Components/TerrainSystemComponent.cpp b/Gems/Terrain/Code/Source/Components/TerrainSystemComponent.cpp new file mode 100644 index 0000000000..afaf0470b4 --- /dev/null +++ b/Gems/Terrain/Code/Source/Components/TerrainSystemComponent.cpp @@ -0,0 +1,81 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + + +#include + +#include +#include +#include + +#include +#include +#include + +namespace Terrain +{ + void TerrainSystemComponent::Reflect(AZ::ReflectContext* context) + { + if (AZ::SerializeContext* serialize = azrtti_cast(context)) + { + serialize->Class() + ->Version(0); + + if (AZ::EditContext* ec = serialize->GetEditContext()) + { + ec->Class("Terrain", "The Terrain System Component enables Terrain.") + ->ClassElement(AZ::Edit::ClassElements::EditorData, "") + ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC_CE("System")) + ->Attribute(AZ::Edit::Attributes::AutoExpand, true) + ; + } + + Terrain::TerrainFeatureProcessor::Reflect(context); + } + } + + void TerrainSystemComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided) + { + provided.push_back(AZ_CRC_CE("TerrainService")); + } + + void TerrainSystemComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible) + { + incompatible.push_back(AZ_CRC_CE("TerrainService")); + } + + void TerrainSystemComponent::GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required) + { + required.push_back(AZ_CRC_CE("RPISystem")); + } + + void TerrainSystemComponent::GetDependentServices([[maybe_unused]] AZ::ComponentDescriptor::DependencyArrayType& dependent) + { + } + + void TerrainSystemComponent::Init() + { + } + + void TerrainSystemComponent::Activate() + { + // Currently, the Terrain System Component owns the Terrain System instance because the Terrain World component gets recreated + // every time an entity is added or removed to a level. If this ever changes, the Terrain System ownership could move into + // the level component. + m_terrainSystem = new TerrainSystem(); + AZ::RPI::FeatureProcessorFactory::Get()->RegisterFeatureProcessor(); + } + + void TerrainSystemComponent::Deactivate() + { + delete m_terrainSystem; + m_terrainSystem = nullptr; + + AZ::RPI::FeatureProcessorFactory::Get()->UnregisterFeatureProcessor(); + } +} diff --git a/Gems/Terrain/Code/Source/Components/TerrainSystemComponent.h b/Gems/Terrain/Code/Source/Components/TerrainSystemComponent.h new file mode 100644 index 0000000000..b294c0473a --- /dev/null +++ b/Gems/Terrain/Code/Source/Components/TerrainSystemComponent.h @@ -0,0 +1,40 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include + +namespace Terrain +{ + class TerrainSystem; + + class TerrainSystemComponent + : public AZ::Component + { + public: + AZ_COMPONENT(TerrainSystemComponent, "{CD5A517E-3BD8-49AE-8F9B-33C6FC47EC67}"); + + static void Reflect(AZ::ReflectContext* context); + + static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided); + static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible); + static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required); + static void GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& dependent); + + protected: + //////////////////////////////////////////////////////////////////////// + // AZ::Component interface implementation + void Init() override; + void Activate() override; + void Deactivate() override; + //////////////////////////////////////////////////////////////////////// + + TerrainSystem* m_terrainSystem{ nullptr }; + }; +} diff --git a/Gems/Terrain/Code/Source/Components/TerrainWorldComponent.cpp b/Gems/Terrain/Code/Source/Components/TerrainWorldComponent.cpp new file mode 100644 index 0000000000..669a8f4b02 --- /dev/null +++ b/Gems/Terrain/Code/Source/Components/TerrainWorldComponent.cpp @@ -0,0 +1,125 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include +#include +#include +#include +#include +#include + +namespace Terrain +{ + void TerrainWorldConfig::Reflect(AZ::ReflectContext* context) + { + AZ::SerializeContext* serialize = azrtti_cast(context); + if (serialize) + { + serialize->Class() + ->Version(1) + ->Field("WorldMin", &TerrainWorldConfig::m_worldMin) + ->Field("WorldMax", &TerrainWorldConfig::m_worldMax) + ->Field("HeightQueryResolution", &TerrainWorldConfig::m_heightQueryResolution) + ; + + AZ::EditContext* edit = serialize->GetEditContext(); + if (edit) + { + edit->Class( + "Terrain World Component", "Data required for the terrain system to run") + ->ClassElement(AZ::Edit::ClassElements::EditorData, "") + ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZStd::vector({ AZ_CRC_CE("Level") })) + ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) + ->Attribute(AZ::Edit::Attributes::AutoExpand, true) + + ->DataElement(AZ::Edit::UIHandlers::Default, &TerrainWorldConfig::m_worldMin, "World Bounds (Min)", "") + ->DataElement(AZ::Edit::UIHandlers::Default, &TerrainWorldConfig::m_worldMax, "World Bounds (Max)", "") + ->DataElement(AZ::Edit::UIHandlers::Default, &TerrainWorldConfig::m_heightQueryResolution, "Height Query Resolution (m)", "") + ; + } + } + } + + void TerrainWorldComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.push_back(AZ_CRC_CE("TerrainService")); + } + + void TerrainWorldComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.push_back(AZ_CRC_CE("TerrainService")); + } + + void TerrainWorldComponent::GetRequiredServices([[maybe_unused]] AZ::ComponentDescriptor::DependencyArrayType& services) + { + } + + void TerrainWorldComponent::Reflect(AZ::ReflectContext* context) + { + TerrainWorldConfig::Reflect(context); + + AZ::SerializeContext* serialize = azrtti_cast(context); + if (serialize) + { + serialize->Class() + ->Version(0) + ->Field("Configuration", &TerrainWorldComponent::m_configuration) + ; + } + } + + TerrainWorldComponent::TerrainWorldComponent(const TerrainWorldConfig& configuration) + : m_configuration(configuration) + { + } + + TerrainWorldComponent::~TerrainWorldComponent() + { + } + + void TerrainWorldComponent::Activate() + { + TerrainSystemServiceRequestBus::Broadcast( + &TerrainSystemServiceRequestBus::Events::SetWorldBounds, + AZ::Aabb::CreateFromMinMax(m_configuration.m_worldMin, m_configuration.m_worldMax) + ); + TerrainSystemServiceRequestBus::Broadcast( + &TerrainSystemServiceRequestBus::Events::SetHeightQueryResolution, m_configuration.m_heightQueryResolution); + + // Currently, the Terrain System Component owns the Terrain System instance because the Terrain World component gets recreated + // every time an entity is added or removed to a level. If this ever changes, the Terrain System ownership could move into + // the level component. + TerrainSystemServiceRequestBus::Broadcast(&TerrainSystemServiceRequestBus::Events::Activate); + } + + void TerrainWorldComponent::Deactivate() + { + TerrainSystemServiceRequestBus::Broadcast(&TerrainSystemServiceRequestBus::Events::Deactivate); + } + + bool TerrainWorldComponent::ReadInConfig(const AZ::ComponentConfig* baseConfig) + { + if (auto config = azrtti_cast(baseConfig)) + { + m_configuration = *config; + return true; + } + return false; + } + + bool TerrainWorldComponent::WriteOutConfig(AZ::ComponentConfig* outBaseConfig) const + { + if (auto config = azrtti_cast(outBaseConfig)) + { + *config = m_configuration; + return true; + } + return false; + } +} diff --git a/Gems/Terrain/Code/Source/Components/TerrainWorldComponent.h b/Gems/Terrain/Code/Source/Components/TerrainWorldComponent.h new file mode 100644 index 0000000000..2dfe1135c8 --- /dev/null +++ b/Gems/Terrain/Code/Source/Components/TerrainWorldComponent.h @@ -0,0 +1,64 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include +#include + +namespace LmbrCentral +{ + template + class EditorWrappedComponentBase; +} + +namespace Terrain +{ + class TerrainWorldConfig + : public AZ::ComponentConfig + { + public: + AZ_CLASS_ALLOCATOR(TerrainWorldConfig, AZ::SystemAllocator, 0); + AZ_RTTI(TerrainWorldConfig, "{295844DB-20DD-45B2-94DB-4245D5AE9AFF}", AZ::ComponentConfig); + static void Reflect(AZ::ReflectContext* context); + + AZ::Vector3 m_worldMin{ 0.0f, 0.0f, 0.0f }; + AZ::Vector3 m_worldMax{ 1024.0f, 1024.0f, 1024.0f }; + AZ::Vector2 m_heightQueryResolution{ 1.0f, 1.0f }; + }; + + + class TerrainWorldComponent + : public AZ::Component + { + public: + template + friend class LmbrCentral::EditorWrappedComponentBase; + AZ_COMPONENT(TerrainWorldComponent, "{4734EFDC-135D-4BF5-BE57-4F9AD03ADF78}"); + static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void Reflect(AZ::ReflectContext* context); + + TerrainWorldComponent(const TerrainWorldConfig& configuration); + TerrainWorldComponent() = default; + ~TerrainWorldComponent() override; + + ////////////////////////////////////////////////////////////////////////// + // AZ::Component interface implementation + void Activate() override; + void Deactivate() override; + bool ReadInConfig(const AZ::ComponentConfig* baseConfig) override; + bool WriteOutConfig(AZ::ComponentConfig* outBaseConfig) const override; + + private: + TerrainWorldConfig m_configuration; + }; +} diff --git a/Gems/Terrain/Code/Source/Components/TerrainWorldDebuggerComponent.cpp b/Gems/Terrain/Code/Source/Components/TerrainWorldDebuggerComponent.cpp new file mode 100644 index 0000000000..d7504295c2 --- /dev/null +++ b/Gems/Terrain/Code/Source/Components/TerrainWorldDebuggerComponent.cpp @@ -0,0 +1,315 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include + +#include +#include +#include +#include +#include +#include + +#include + +#include +#include +#include + +namespace Terrain +{ + void TerrainWorldDebuggerConfig::Reflect(AZ::ReflectContext* context) + { + AZ::SerializeContext* serialize = azrtti_cast(context); + if (serialize) + { + serialize->Class() + ->Version(1) + ->Field("DebugWireframe", &TerrainWorldDebuggerConfig::m_drawWireframe) + ->Field("DebugWorldBounds", &TerrainWorldDebuggerConfig::m_drawWorldBounds) + ; + + AZ::EditContext* edit = serialize->GetEditContext(); + if (edit) + { + edit->Class( + "Terrain World Debugger Component", "Optional component for enabling terrain debugging features.") + ->ClassElement(AZ::Edit::ClassElements::EditorData, "") + ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZStd::vector({ AZ_CRC_CE("Level") })) + ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) + ->Attribute(AZ::Edit::Attributes::AutoExpand, true) + + ->DataElement(AZ::Edit::UIHandlers::Default, &TerrainWorldDebuggerConfig::m_drawWireframe, "Show Wireframe", "") + ->DataElement(AZ::Edit::UIHandlers::Default, &TerrainWorldDebuggerConfig::m_drawWorldBounds, "Show World Bounds", ""); + } + } + } + + void TerrainWorldDebuggerComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.push_back(AZ_CRC_CE("TerrainDebugService")); + } + + void TerrainWorldDebuggerComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.push_back(AZ_CRC_CE("TerrainDebugService")); + } + + void TerrainWorldDebuggerComponent::GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.push_back(AZ_CRC_CE("TerrainService")); + } + + void TerrainWorldDebuggerComponent::Reflect(AZ::ReflectContext* context) + { + TerrainWorldDebuggerConfig::Reflect(context); + + AZ::SerializeContext* serialize = azrtti_cast(context); + if (serialize) + { + serialize->Class() + ->Version(0) + ->Field("Configuration", &TerrainWorldDebuggerComponent::m_configuration) + ; + } + } + + TerrainWorldDebuggerComponent::TerrainWorldDebuggerComponent(const TerrainWorldDebuggerConfig& configuration) + : m_configuration(configuration) + { + } + + TerrainWorldDebuggerComponent::~TerrainWorldDebuggerComponent() + { + } + + void TerrainWorldDebuggerComponent::Activate() + { + m_wireframeBounds = AZ::Aabb::CreateNull(); + + AzFramework::EntityDebugDisplayEventBus::Handler::BusConnect(GetEntityId()); + AzFramework::BoundsRequestBus::Handler::BusConnect(GetEntityId()); + AzFramework::Terrain::TerrainDataNotificationBus::Handler::BusConnect(); + } + + void TerrainWorldDebuggerComponent::Deactivate() + { + AzFramework::Terrain::TerrainDataNotificationBus::Handler::BusDisconnect(); + AzFramework::BoundsRequestBus::Handler::BusDisconnect(); + AzFramework::EntityDebugDisplayEventBus::Handler::BusDisconnect(); + + m_wireframeBounds = AZ::Aabb::CreateNull(); + m_wireframeSectors.clear(); + } + + bool TerrainWorldDebuggerComponent::ReadInConfig(const AZ::ComponentConfig* baseConfig) + { + if (auto config = azrtti_cast(baseConfig)) + { + m_configuration = *config; + return true; + } + return false; + } + + bool TerrainWorldDebuggerComponent::WriteOutConfig(AZ::ComponentConfig* outBaseConfig) const + { + if (auto config = azrtti_cast(outBaseConfig)) + { + *config = m_configuration; + return true; + } + return false; + } + + AZ::Aabb TerrainWorldDebuggerComponent::GetWorldBounds() + { + AZ::Aabb terrainAabb = AZ::Aabb::CreateFromPoint(AZ::Vector3::CreateZero()); + AzFramework::Terrain::TerrainDataRequestBus::BroadcastResult( + terrainAabb, &AzFramework::Terrain::TerrainDataRequests::GetTerrainAabb); + + return terrainAabb; + } + + AZ::Aabb TerrainWorldDebuggerComponent::GetLocalBounds() + { + // This is a level component, so the local bounds will always be the same as the world bounds. + return GetWorldBounds(); + } + + void TerrainWorldDebuggerComponent::DisplayEntityViewport( + const AzFramework::ViewportInfo& viewportInfo, AzFramework::DebugDisplayRequests& debugDisplay) + { + // Draw a wireframe box around the entire terrain world bounds + if (m_configuration.m_drawWorldBounds) + { + AZ::Color outlineColor(1.0f, 0.0f, 0.0f, 1.0f); + AZ::Aabb aabb = GetWorldBounds(); + + debugDisplay.SetColor(outlineColor); + debugDisplay.DrawWireBox(aabb.GetMin(), aabb.GetMax()); + } + + // Draw a wireframe representation of the terrain surface + if (m_configuration.m_drawWireframe && !m_wireframeSectors.empty()) + { + // Start by assuming we'll draw the entire world. + AZ::Aabb drawingAabb = GetWorldBounds(); + + // Assuming we can get the camera, reduce the drawing bounds to a fixed distance around the camera. + if (auto viewportContextRequests = AZ::RPI::ViewportContextRequests::Get(); viewportContextRequests) + { + // Get the current camera position. + AZ::RPI::ViewportContextPtr viewportContext = viewportContextRequests->GetViewportContextById(viewportInfo.m_viewportId); + AZ::Vector3 cameraPos = viewportContext->GetCameraTransform().GetTranslation(); + + // Determine how far to draw in each direction in world space based on our MaxSectorsToDraw + AZ::Vector2 queryResolution = AZ::Vector2(1.0f); + AzFramework::Terrain::TerrainDataRequestBus::BroadcastResult( + queryResolution, &AzFramework::Terrain::TerrainDataRequests::GetTerrainGridResolution); + AZ::Vector3 viewDistance( + queryResolution.GetX() * SectorSizeInGridPoints * sqrtf(MaxSectorsToDraw), + queryResolution.GetY() * SectorSizeInGridPoints * sqrtf(MaxSectorsToDraw), + 0.0f); + + // Create an AABB around the camera based on how far we want to be able to draw in each direction and clamp the + // drawing AABB to it. + AZ::Aabb cameraAabb = AZ::Aabb::CreateFromMinMax( + AZ::Vector3( + cameraPos.GetX() - viewDistance.GetX(), cameraPos.GetY() - viewDistance.GetY(), drawingAabb.GetMin().GetZ()), + AZ::Vector3( + cameraPos.GetX() + viewDistance.GetX(), cameraPos.GetY() + viewDistance.GetY(), drawingAabb.GetMin().GetZ())); + drawingAabb.Clamp(cameraAabb); + } + + // For each sector, if it appears within our view distance, draw it. + for (auto& sector : m_wireframeSectors) + { + if (drawingAabb.Overlaps(sector.m_aabb)) + { + if (!sector.m_lineVertices.empty()) + { + const AZ::Color primaryColor = AZ::Color(0.25f, 0.25f, 0.25f, 1.0f); + debugDisplay.DrawLines(sector.m_lineVertices, primaryColor); + } + else + { + AZ_Warning("Debug", false, "empty sector!"); + } + } + } + } + } + + void TerrainWorldDebuggerComponent::RefreshCachedWireframeGrid(const AZ::Aabb& dirtyRegion) + { + // Get the terrain world bounds and grid resolution. + + AZ::Aabb worldBounds = GetWorldBounds(); + + AZ::Vector2 queryResolution = AZ::Vector2(1.0f); + AzFramework::Terrain::TerrainDataRequestBus::BroadcastResult( + queryResolution, &AzFramework::Terrain::TerrainDataRequests::GetTerrainGridResolution); + + // Calculate the world size of each sector. Note that this size actually ends at the last point, not the last square. + // So for example, the sector size for 3 points will go from (*--*--*) even though it will be used to draw (*--*--*--). + const float xSectorSize = (queryResolution.GetX() * SectorSizeInGridPoints); + const float ySectorSize = (queryResolution.GetY() * SectorSizeInGridPoints); + + // Calculate the total number of sectors to cache. The world bounds might not be evenly divisible by sector bounds, so we add + // an extra sector's worth of size in each direction so that clamping down to an integer still accounts for that fractional sector. + const int32_t numSectorsX = aznumeric_cast((worldBounds.GetXExtent() + xSectorSize) / xSectorSize); + const int32_t numSectorsY = aznumeric_cast((worldBounds.GetYExtent() + ySectorSize) / ySectorSize); + + // If we haven't cached anything before, or if the world bounds has changed, clear our cache structure and repopulate it + // with WireframeSector entries with the proper AABB sizes. + if (!m_wireframeBounds.IsValid() || !dirtyRegion.IsValid() || !m_wireframeBounds.IsClose(worldBounds)) + { + m_wireframeBounds = worldBounds; + + m_wireframeSectors.clear(); + m_wireframeSectors.reserve(numSectorsX * numSectorsY); + + for (int32_t ySector = 0; ySector < numSectorsY; ySector++) + { + for (int32_t xSector = 0; xSector < numSectorsX; xSector++) + { + // For each sector, set up the AABB for the sector and reserve memory for the line vertices. + WireframeSector sector; + sector.m_lineVertices.reserve(VerticesPerSector); + sector.m_aabb = AZ::Aabb::CreateFromMinMax( + AZ::Vector3( + worldBounds.GetMin().GetX() + (xSector * xSectorSize), worldBounds.GetMin().GetY() + (ySector * ySectorSize), + worldBounds.GetMin().GetZ()), + AZ::Vector3( + worldBounds.GetMin().GetX() + ((xSector + 1) * xSectorSize), + worldBounds.GetMin().GetY() + ((ySector + 1) * ySectorSize), worldBounds.GetMax().GetZ())); + + sector.m_aabb.Clamp(worldBounds); + + m_wireframeSectors.push_back(AZStd::move(sector)); + } + } + + // Notify the visibility system that our bounds have changed. + AzFramework::IEntityBoundsUnionRequestBus::Broadcast( + &AzFramework::IEntityBoundsUnionRequestBus::Events::RefreshEntityLocalBoundsUnion, GetEntityId()); + } + + // For each sector, if it overlaps with the dirty region, clear it out and recache the wireframe line data. + for (auto& sector : m_wireframeSectors) + { + if (dirtyRegion.IsValid() && !dirtyRegion.Overlaps(sector.m_aabb)) + { + continue; + } + + sector.m_lineVertices.clear(); + + for (float y = sector.m_aabb.GetMin().GetY(); y < sector.m_aabb.GetMax().GetY(); y += queryResolution.GetY()) + { + for (float x = sector.m_aabb.GetMin().GetX(); x < sector.m_aabb.GetMax().GetX(); x += queryResolution.GetX()) + { + float x1 = x + queryResolution.GetX(); + float y1 = y + queryResolution.GetY(); + + float z00 = 0.0f; + float z01 = 0.0f; + float z10 = 0.0f; + bool terrainExists; + + AzFramework::Terrain::TerrainDataRequestBus::BroadcastResult( + z00, &AzFramework::Terrain::TerrainDataRequests::GetHeightFromFloats, x, y, + AzFramework::Terrain::TerrainDataRequests::Sampler::DEFAULT, &terrainExists); + AzFramework::Terrain::TerrainDataRequestBus::BroadcastResult( + z01, &AzFramework::Terrain::TerrainDataRequests::GetHeightFromFloats, x, y1, + AzFramework::Terrain::TerrainDataRequests::Sampler::DEFAULT, &terrainExists); + AzFramework::Terrain::TerrainDataRequestBus::BroadcastResult( + z10, &AzFramework::Terrain::TerrainDataRequests::GetHeightFromFloats, x1, y, + AzFramework::Terrain::TerrainDataRequests::Sampler::DEFAULT, &terrainExists); + + sector.m_lineVertices.push_back(AZ::Vector3(x, y, z00)); + sector.m_lineVertices.push_back(AZ::Vector3(x1, y, z10)); + + sector.m_lineVertices.push_back(AZ::Vector3(x, y, z00)); + sector.m_lineVertices.push_back(AZ::Vector3(x, y1, z01)); + } + } + } + } + + void TerrainWorldDebuggerComponent::OnTerrainDataChanged(const AZ::Aabb& dirtyRegion, TerrainDataChangedMask dataChangedMask) + { + if (dataChangedMask & (TerrainDataChangedMask::Settings | TerrainDataChangedMask::HeightData)) + { + RefreshCachedWireframeGrid(dirtyRegion); + } + } + + +} // namespace Terrain diff --git a/Gems/Terrain/Code/Source/Components/TerrainWorldDebuggerComponent.h b/Gems/Terrain/Code/Source/Components/TerrainWorldDebuggerComponent.h new file mode 100644 index 0000000000..5ec831c038 --- /dev/null +++ b/Gems/Terrain/Code/Source/Components/TerrainWorldDebuggerComponent.h @@ -0,0 +1,114 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include +#include +#include +#include +#include + +namespace LmbrCentral +{ + template + class EditorWrappedComponentBase; +} + +namespace Terrain +{ + class TerrainWorldDebuggerConfig + : public AZ::ComponentConfig + { + public: + AZ_CLASS_ALLOCATOR(TerrainWorldDebuggerConfig, AZ::SystemAllocator, 0); + AZ_RTTI(TerrainWorldDebuggerConfig, "{92686FA9-2C0B-47F1-8E2D-F2F302CDE5AA}", AZ::ComponentConfig); + static void Reflect(AZ::ReflectContext* context); + + bool m_drawWireframe{ true }; + bool m_drawWorldBounds{ true }; + }; + + + class TerrainWorldDebuggerComponent + : public AZ::Component + , private AzFramework::EntityDebugDisplayEventBus::Handler + , private AzFramework::BoundsRequestBus::Handler + , private AzFramework::Terrain::TerrainDataNotificationBus::Handler + { + public: + template + friend class LmbrCentral::EditorWrappedComponentBase; + AZ_COMPONENT(TerrainWorldDebuggerComponent, "{ECA1F4CB-5395-41FD-B6ED-FFD2C80096E2}"); + static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void Reflect(AZ::ReflectContext* context); + + TerrainWorldDebuggerComponent(const TerrainWorldDebuggerConfig& configuration); + TerrainWorldDebuggerComponent() = default; + ~TerrainWorldDebuggerComponent() override; + + ////////////////////////////////////////////////////////////////////////// + // AZ::Component interface implementation + void Activate() override; + void Deactivate() override; + bool ReadInConfig(const AZ::ComponentConfig* baseConfig) override; + bool WriteOutConfig(AZ::ComponentConfig* outBaseConfig) const override; + + ////////////////////////////////////////////////////////////////////////// + // EntityDebugDisplayEventBus + + // Ideally this would use ViewportDebugDisplayEventBus::DisplayViewport, but that doesn't currently work in game mode, + // so instead we use this plus the BoundsRequestBus with a large AABB to get ourselves rendered. + void DisplayEntityViewport( + const AzFramework::ViewportInfo& viewportInfo, AzFramework::DebugDisplayRequests& debugDisplay) override; + + ////////////////////////////////////////////////////////////////////////// + // BoundsRequestBus + AZ::Aabb GetWorldBounds() override; + AZ::Aabb GetLocalBounds() override; + + ////////////////////////////////////////////////////////////////////////// + // AzFramework::Terrain::TerrainDataNotificationBus + void OnTerrainDataChanged(const AZ::Aabb& dirtyRegion, TerrainDataChangedMask dataChangedMask) override; + + private: + + // Cache our debug wireframe representation in "sectors" of data so that we can easily control how far out we draw + // the wireframe representation in each direction. + struct WireframeSector + { + AZ::Aabb m_aabb; + AZStd::vector m_lineVertices; + }; + + // Each sector contains an N x N grid of squares that it will draw. Since this is a count of the number of terrain grid points + // in each direction, the actual world size will depend on the terrain grid resolution in each direction. + static constexpr int32_t SectorSizeInGridPoints = 10; + + // For each grid point we will draw half a square (left-right, top-down), so we need 4 vertices for the two lines. + static constexpr int32_t VerticesPerGridPoint = 4; + + // Pre-calculate the total number of vertices per sector. + static constexpr int32_t VerticesPerSector = + (SectorSizeInGridPoints * VerticesPerGridPoint) * (SectorSizeInGridPoints * VerticesPerGridPoint); + + // AuxGeom has limits to the number of lines it can draw in a frame, so we'll cap how many total sectors to draw. + static constexpr int32_t MaxVerticesToDraw = 500000; + static constexpr int32_t MaxSectorsToDraw = MaxVerticesToDraw / VerticesPerSector; + + void RefreshCachedWireframeGrid(const AZ::Aabb& dirtyRegion); + + TerrainWorldDebuggerConfig m_configuration; + AZStd::vector m_wireframeSectors; + AZ::Aabb m_wireframeBounds; + }; +} diff --git a/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainHeightGradientListComponent.cpp b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainHeightGradientListComponent.cpp new file mode 100644 index 0000000000..8a36445446 --- /dev/null +++ b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainHeightGradientListComponent.cpp @@ -0,0 +1,22 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include +#include + +namespace Terrain +{ + void EditorTerrainHeightGradientListComponent::Reflect(AZ::ReflectContext* context) + { + BaseClassType::ReflectSubClass(context, 1, + &LmbrCentral::EditorWrappedComponentBaseVersionConverter + ); + } +} diff --git a/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainHeightGradientListComponent.h b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainHeightGradientListComponent.h new file mode 100644 index 0000000000..2433eda009 --- /dev/null +++ b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainHeightGradientListComponent.h @@ -0,0 +1,32 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include + +namespace Terrain +{ + class EditorTerrainHeightGradientListComponent + : public LmbrCentral::EditorWrappedComponentBase + { + public: + using BaseClassType = LmbrCentral::EditorWrappedComponentBase; + AZ_EDITOR_COMPONENT(EditorTerrainHeightGradientListComponent, "{2D945B90-ADAB-4F9A-A113-39E714708068}", BaseClassType); + static void Reflect(AZ::ReflectContext* context); + + static constexpr const char* const s_categoryName = "Terrain"; + static constexpr const char* const s_componentName = "Terrain Height Gradient List"; + static constexpr const char* const s_componentDescription = "Provides height data for a region to the terrain system"; + static constexpr const char* const s_icon = "Editor/Icons/Components/TerrainHeight.svg"; + static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/TerrainHeight.svg"; + static constexpr const char* const s_helpUrl = ""; + }; +} diff --git a/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainLayerSpawnerComponent.cpp b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainLayerSpawnerComponent.cpp new file mode 100644 index 0000000000..3a0208aece --- /dev/null +++ b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainLayerSpawnerComponent.cpp @@ -0,0 +1,22 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include +#include + +namespace Terrain +{ + void EditorTerrainLayerSpawnerComponent::Reflect(AZ::ReflectContext* context) + { + BaseClassType::ReflectSubClass(context, 1, + &LmbrCentral::EditorWrappedComponentBaseVersionConverter + ); + } +} diff --git a/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainLayerSpawnerComponent.h b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainLayerSpawnerComponent.h new file mode 100644 index 0000000000..1eb3413d52 --- /dev/null +++ b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainLayerSpawnerComponent.h @@ -0,0 +1,32 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include + +namespace Terrain +{ + class EditorTerrainLayerSpawnerComponent + : public LmbrCentral::EditorWrappedComponentBase + { + public: + using BaseClassType = LmbrCentral::EditorWrappedComponentBase; + AZ_EDITOR_COMPONENT(EditorTerrainLayerSpawnerComponent, "{9403FC94-FA38-4387-BEFD-A728C7D850C1}", BaseClassType); + static void Reflect(AZ::ReflectContext* context); + + static constexpr const char* const s_categoryName = "Terrain"; + static constexpr const char* const s_componentName = "Terrain Layer Spawner"; + static constexpr const char* const s_componentDescription = "Defines a terrain region for use by the terrain system"; + static constexpr const char* const s_icon = "Editor/Icons/Components/TerrainLayerSpawner.svg"; + static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/TerrainLayerSpawner.svg"; + static constexpr const char* const s_helpUrl = ""; + }; +} diff --git a/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainSystemComponent.cpp b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainSystemComponent.cpp new file mode 100644 index 0000000000..7fa35cc81c --- /dev/null +++ b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainSystemComponent.cpp @@ -0,0 +1,32 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include + +namespace Terrain +{ + void EditorTerrainSystemComponent::Reflect(AZ::ReflectContext* context) + { + if (auto serializeContext = azrtti_cast(context)) + { + serializeContext->Class()->Version(1); + } + } + + void EditorTerrainSystemComponent::Activate() + { + AzToolsFramework::EditorEvents::Bus::Handler::BusConnect(); + } + + void EditorTerrainSystemComponent::Deactivate() + { + AzToolsFramework::EditorEvents::Bus::Handler::BusDisconnect(); + } + +} // namespace Terrain diff --git a/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainSystemComponent.h b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainSystemComponent.h new file mode 100644 index 0000000000..274e561ace --- /dev/null +++ b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainSystemComponent.h @@ -0,0 +1,43 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include + +#include + +namespace Terrain +{ + /// System component for Terrain editor + class EditorTerrainSystemComponent + : public AZ::Component + , private AzToolsFramework::EditorEvents::Bus::Handler + { + public: + AZ_COMPONENT(EditorTerrainSystemComponent, "{5E9f2200-9099-4325-BABD-6A533A1ABEA8}"); + static void Reflect(AZ::ReflectContext* context); + + EditorTerrainSystemComponent() = default; + + private: + static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided) + { + provided.push_back(AZ_CRC_CE("TerrainEditorService")); + } + + static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required) + { + required.push_back(AZ_CRC_CE("TerrainService")); + } + + // AZ::Component + void Activate() override; + void Deactivate() override; + }; +} // namespace Terrain diff --git a/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainWorldComponent.cpp b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainWorldComponent.cpp new file mode 100644 index 0000000000..a50a44745f --- /dev/null +++ b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainWorldComponent.cpp @@ -0,0 +1,56 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include +#include + +namespace Terrain +{ + void EditorTerrainWorldComponent::Reflect(AZ::ReflectContext* context) + { + BaseClassType::Reflect(context); + + AZ::SerializeContext* serializeContext = azrtti_cast(context); + + if (serializeContext) + { + serializeContext->Class() + ->Version(0) + ; + + if (auto editContext = serializeContext->GetEditContext()) + { + editContext->Class( + "Terrain World", "") + ->ClassElement(AZ::Edit::ClassElements::EditorData, "") + ->Attribute(AZ::Edit::Attributes::Category, "Terrain") + ->Attribute(AZ::Edit::Attributes::Icon, "Editor/Icons/Components/TerrainWorld.svg") + ->Attribute(AZ::Edit::Attributes::ViewportIcon, "Editor/Icons/Components/Viewport/TerrainWorld.svg") + ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZStd::vector({ AZ_CRC_CE("Level") })) + ; + } + } + } + + + void EditorTerrainWorldComponent::Init() + { + BaseClassType::Init(); + } + + void EditorTerrainWorldComponent::Activate() + { + BaseClassType::Activate(); + } + + AZ::u32 EditorTerrainWorldComponent::ConfigurationChanged() + { + return BaseClassType::ConfigurationChanged(); + } +} diff --git a/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainWorldComponent.h b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainWorldComponent.h new file mode 100644 index 0000000000..6f3ab73361 --- /dev/null +++ b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainWorldComponent.h @@ -0,0 +1,38 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include + +namespace Terrain +{ + class EditorTerrainWorldComponent + : public LmbrCentral::EditorWrappedComponentBase + { + public: + using BaseClassType = LmbrCentral::EditorWrappedComponentBase; + AZ_EDITOR_COMPONENT(EditorTerrainWorldComponent, "{43D02ADC-111F-4584-B590-FF6DC9FC912C}", BaseClassType); + static void Reflect(AZ::ReflectContext* context); + + ////////////////////////////////////////////////////////////////////////// + // AZ::Component interface implementation + void Init() override; + void Activate() override; + AZ::u32 ConfigurationChanged() override; + + protected: + using BaseClassType::m_configuration; + using BaseClassType::m_component; + using BaseClassType::m_visible; + + private: + }; +} diff --git a/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainWorldDebuggerComponent.cpp b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainWorldDebuggerComponent.cpp new file mode 100644 index 0000000000..7e8fbf58e4 --- /dev/null +++ b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainWorldDebuggerComponent.cpp @@ -0,0 +1,56 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include +#include + +namespace Terrain +{ + void EditorTerrainWorldDebuggerComponent::Reflect(AZ::ReflectContext* context) + { + BaseClassType::Reflect(context); + + AZ::SerializeContext* serializeContext = azrtti_cast(context); + + if (serializeContext) + { + serializeContext->Class() + ->Version(0) + ; + + if (auto editContext = serializeContext->GetEditContext()) + { + editContext->Class( + "Terrain World Debugger", "") + ->ClassElement(AZ::Edit::ClassElements::EditorData, "") + ->Attribute(AZ::Edit::Attributes::Category, "Terrain") + ->Attribute(AZ::Edit::Attributes::Icon, "Editor/Icons/Components/TerrainWorldDebugger.svg") + ->Attribute(AZ::Edit::Attributes::ViewportIcon, "Editor/Icons/Components/Viewport/TerrainWorldDebugger.svg") + ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZStd::vector({ AZ_CRC_CE("Level") })) + ; + } + } + } + + + void EditorTerrainWorldDebuggerComponent::Init() + { + BaseClassType::Init(); + } + + void EditorTerrainWorldDebuggerComponent::Activate() + { + BaseClassType::Activate(); + } + + AZ::u32 EditorTerrainWorldDebuggerComponent::ConfigurationChanged() + { + return BaseClassType::ConfigurationChanged(); + } +} diff --git a/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainWorldDebuggerComponent.h b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainWorldDebuggerComponent.h new file mode 100644 index 0000000000..ddcfe3c76a --- /dev/null +++ b/Gems/Terrain/Code/Source/EditorComponents/EditorTerrainWorldDebuggerComponent.h @@ -0,0 +1,38 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include + +namespace Terrain +{ + class EditorTerrainWorldDebuggerComponent + : public LmbrCentral::EditorWrappedComponentBase + { + public: + using BaseClassType = LmbrCentral::EditorWrappedComponentBase; + AZ_EDITOR_COMPONENT(EditorTerrainWorldDebuggerComponent, "{D09BA0B9-FB51-446B-BD7B-3C40743D2E39}", BaseClassType); + static void Reflect(AZ::ReflectContext* context); + + ////////////////////////////////////////////////////////////////////////// + // AZ::Component interface implementation + void Init() override; + void Activate() override; + AZ::u32 ConfigurationChanged() override; + + protected: + using BaseClassType::m_configuration; + using BaseClassType::m_component; + using BaseClassType::m_visible; + + private: + }; +} diff --git a/Gems/Terrain/Code/Source/EditorTerrainModule.cpp b/Gems/Terrain/Code/Source/EditorTerrainModule.cpp new file mode 100644 index 0000000000..0ba416cbb7 --- /dev/null +++ b/Gems/Terrain/Code/Source/EditorTerrainModule.cpp @@ -0,0 +1,45 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include +#include +#include +#include +#include + +namespace Terrain +{ + EditorTerrainModule::EditorTerrainModule() + { + m_descriptors.insert( + m_descriptors.end(), + { + Terrain::EditorTerrainHeightGradientListComponent::CreateDescriptor(), + Terrain::EditorTerrainLayerSpawnerComponent::CreateDescriptor(), + Terrain::EditorTerrainSystemComponent::CreateDescriptor(), + Terrain::EditorTerrainWorldComponent::CreateDescriptor(), + Terrain::EditorTerrainWorldDebuggerComponent::CreateDescriptor(), + + }); + } + + AZ::ComponentTypeList EditorTerrainModule::GetRequiredSystemComponents() const + { + AZ::ComponentTypeList requiredComponents = TerrainModule::GetRequiredSystemComponents(); + requiredComponents.insert( + requiredComponents.end(), + { + azrtti_typeid(), + }); + + return requiredComponents; + } +} + +AZ_DECLARE_MODULE_CLASS(Gem_TerrainEditor, Terrain::EditorTerrainModule) diff --git a/Gems/Terrain/Code/Source/EditorTerrainModule.h b/Gems/Terrain/Code/Source/EditorTerrainModule.h new file mode 100644 index 0000000000..76c4706478 --- /dev/null +++ b/Gems/Terrain/Code/Source/EditorTerrainModule.h @@ -0,0 +1,26 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include + +namespace Terrain +{ + class EditorTerrainModule + : public TerrainModule + { + public: + AZ_RTTI(EditorTerrainModule, "{68693F28-7051-4C14-85EA-DE6FD8CFCBD6}", TerrainModule); + AZ_CLASS_ALLOCATOR(EditorTerrainModule, AZ::SystemAllocator, 0); + + EditorTerrainModule(); + + AZ::ComponentTypeList GetRequiredSystemComponents() const override; + }; +} diff --git a/Gems/Terrain/Code/Source/TerrainModule.cpp b/Gems/Terrain/Code/Source/TerrainModule.cpp new file mode 100644 index 0000000000..29b2542472 --- /dev/null +++ b/Gems/Terrain/Code/Source/TerrainModule.cpp @@ -0,0 +1,50 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +namespace Terrain +{ + TerrainModule::TerrainModule() + : AZ::Module() + { + m_descriptors.insert(m_descriptors.end(), { + TerrainSystemComponent::CreateDescriptor(), + TerrainWorldComponent::CreateDescriptor(), + TerrainWorldDebuggerComponent::CreateDescriptor(), + TerrainHeightGradientListComponent::CreateDescriptor(), + TerrainLayerSpawnerComponent::CreateDescriptor(), + TerrainSurfaceDataSystemComponent::CreateDescriptor(), + }); + } + + AZ::ComponentTypeList TerrainModule::GetRequiredSystemComponents() const + { + return AZ::ComponentTypeList{ + azrtti_typeid(), + azrtti_typeid(), + }; + } +} + +#if !defined(TERRAIN_EDITOR) +// DO NOT MODIFY THIS LINE UNLESS YOU RENAME THE GEM +// The first parameter should be GemName_GemIdLower +// The second should be the fully qualified name of the class above +AZ_DECLARE_MODULE_CLASS(Gem_Terrain, Terrain::TerrainModule) +#endif + diff --git a/Gems/Terrain/Code/Source/TerrainModule.h b/Gems/Terrain/Code/Source/TerrainModule.h new file mode 100644 index 0000000000..c665ee44eb --- /dev/null +++ b/Gems/Terrain/Code/Source/TerrainModule.h @@ -0,0 +1,26 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include + +namespace Terrain +{ + class TerrainModule + : public AZ::Module + { + public: + AZ_RTTI(TerrainModule, "{B1CFB3A0-EA27-4AF0-A16D-E943C98FED88}", AZ::Module); + AZ_CLASS_ALLOCATOR(TerrainModule, AZ::SystemAllocator, 0); + + TerrainModule(); + + AZ::ComponentTypeList GetRequiredSystemComponents() const override; + }; +} diff --git a/Gems/Terrain/Code/Source/TerrainRenderer/TerrainFeatureProcessor.cpp b/Gems/Terrain/Code/Source/TerrainRenderer/TerrainFeatureProcessor.cpp new file mode 100644 index 0000000000..2178151e3d --- /dev/null +++ b/Gems/Terrain/Code/Source/TerrainRenderer/TerrainFeatureProcessor.cpp @@ -0,0 +1,466 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include + +#include +#include +#include + +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +namespace Terrain +{ + namespace + { + const uint32_t DEFAULT_UploadBufferSize = 512 * 1024; // 512k + const char* TerrainFPName = "TerrainFeatureProcessor"; + } + + namespace ShaderInputs + { + static const char* const HeightmapImage("HeightmapImage"); + static const char* const ModelToWorld("m_modelToWorld"); + static const char* const HeightScale("m_heightScale"); + static const char* const UvMin("m_uvMin"); + static const char* const UvMax("m_uvMax"); + static const char* const UvStep("m_uvStep"); + } + + + void TerrainFeatureProcessor::Reflect(AZ::ReflectContext* context) + { + if (AZ::SerializeContext* serialize = azrtti_cast(context)) + { + serialize->Class() + ->Version(0) + ; + } + } + + void TerrainFeatureProcessor::Activate() + { + m_areaData = {}; + + InitializeAtomStuff(); + EnableSceneNotification(); + } + + void TerrainFeatureProcessor::InitializeAtomStuff() + { + m_rhiSystem = AZ::RHI::RHISystemInterface::Get(); + + { + // Load the shader + constexpr const char* TerrainShaderFilePath = "Shaders/Terrain/Terrain.azshader"; + m_shader = AZ::RPI::LoadShader(TerrainShaderFilePath); + if (!m_shader) + { + AZ_Error(TerrainFPName, false, "Failed to find or create a shader instance from shader asset '%s'", TerrainShaderFilePath); + return; + } + + // Create the data layout + m_pipelineStateDescriptor = AZ::RHI::PipelineStateDescriptorForDraw{}; + { + AZ::RHI::InputStreamLayoutBuilder layoutBuilder; + + layoutBuilder.AddBuffer() + ->Channel("POSITION", AZ::RHI::Format::R32G32_FLOAT) + ->Channel("UV", AZ::RHI::Format::R32G32_FLOAT) + ; + m_pipelineStateDescriptor.m_inputStreamLayout = layoutBuilder.End(); + } + + auto shaderVariant = m_shader->GetVariant(AZ::RPI::ShaderAsset::RootShaderVariantStableId); + shaderVariant.ConfigurePipelineState(m_pipelineStateDescriptor); + + m_drawListTag = m_shader->GetDrawListTag(); + + m_perObjectSrgAsset = m_shader->FindShaderResourceGroupLayout(AZ::Name{"ObjectSrg"}); + if (!m_perObjectSrgAsset) + { + AZ_Error(TerrainFPName, false, "Failed to get shader resource group asset"); + return; + } + else if (!m_perObjectSrgAsset->IsFinalized()) + { + AZ_Error(TerrainFPName, false, "Shader resource group asset is not loaded"); + return; + } + + const AZ::RHI::ShaderResourceGroupLayout* shaderResourceGroupLayout = &(*m_perObjectSrgAsset); + + m_heightmapImageIndex = shaderResourceGroupLayout->FindShaderInputImageIndex(AZ::Name(ShaderInputs::HeightmapImage)); + AZ_Error(TerrainFPName, m_heightmapImageIndex.IsValid(), "Failed to find shader input image %s.", ShaderInputs::HeightmapImage); + + m_modelToWorldIndex = shaderResourceGroupLayout->FindShaderInputConstantIndex(AZ::Name(ShaderInputs::ModelToWorld)); + AZ_Error(TerrainFPName, m_modelToWorldIndex.IsValid(), "Failed to find shader input constant %s.", ShaderInputs::ModelToWorld); + + m_heightScaleIndex = shaderResourceGroupLayout->FindShaderInputConstantIndex(AZ::Name(ShaderInputs::HeightScale)); + AZ_Error(TerrainFPName, m_heightScaleIndex.IsValid(), "Failed to find shader input constant %s.", ShaderInputs::HeightScale); + + m_uvMinIndex = shaderResourceGroupLayout->FindShaderInputConstantIndex(AZ::Name(ShaderInputs::UvMin)); + AZ_Error(TerrainFPName, m_uvMinIndex.IsValid(), "Failed to find shader input constant %s.", ShaderInputs::UvMin); + + m_uvMaxIndex = shaderResourceGroupLayout->FindShaderInputConstantIndex(AZ::Name(ShaderInputs::UvMax)); + AZ_Error(TerrainFPName, m_uvMaxIndex.IsValid(), "Failed to find shader input constant %s.", ShaderInputs::UvMax); + + m_uvStepIndex = shaderResourceGroupLayout->FindShaderInputConstantIndex(AZ::Name(ShaderInputs::UvStep)); + AZ_Error(TerrainFPName, m_uvStepIndex.IsValid(), "Failed to find shader input constant %s.", ShaderInputs::UvStep); + + // If this fails to run now, it's ok, we'll initialize it in OnRenderPipelineAdded later. + bool success = GetParentScene()->ConfigurePipelineState(m_shader->GetDrawListTag(), m_pipelineStateDescriptor); + if (success) + { + m_pipelineState = m_shader->AcquirePipelineState(m_pipelineStateDescriptor); + AZ_Assert(m_pipelineState, "Failed to acquire default pipeline state for shader '%s'", TerrainShaderFilePath); + } + } + + AZ::RHI::BufferPoolDescriptor dmaPoolDescriptor; + dmaPoolDescriptor.m_heapMemoryLevel = AZ::RHI::HeapMemoryLevel::Host; + dmaPoolDescriptor.m_bindFlags = AZ::RHI::BufferBindFlags::InputAssembly; + + m_hostPool = AZ::RHI::Factory::Get().CreateBufferPool(); + m_hostPool->SetName(AZ::Name("TerrainVertexPool")); + AZ::RHI::ResultCode resultCode = m_hostPool->Init(*m_rhiSystem->GetDevice(), dmaPoolDescriptor); + + if (resultCode != AZ::RHI::ResultCode::Success) + { + AZ_Error(TerrainFPName, false, "Failed to create host buffer pool from RPI"); + return; + } + + InitializeTerrainPatch(); + + if (!InitializeRenderBuffers()) + { + AZ_Error(TerrainFPName, false, "Failed to create Terrain render buffers!"); + return; + } + } + + void TerrainFeatureProcessor::OnRenderPipelineAdded([[maybe_unused]] AZ::RPI::RenderPipelinePtr pipeline) + { + bool success = GetParentScene()->ConfigurePipelineState(m_drawListTag, m_pipelineStateDescriptor); + AZ_Assert(success, "Couldn't configure the pipeline state."); + if (success) + { + m_pipelineState = m_shader->AcquirePipelineState(m_pipelineStateDescriptor); + AZ_Assert(m_pipelineState, "Failed to acquire default pipeline state."); + } + } + + void TerrainFeatureProcessor::OnRenderPipelineRemoved([[maybe_unused]] AZ::RPI::RenderPipeline* pipeline) + { + } + + void TerrainFeatureProcessor::OnRenderPipelinePassesChanged([[maybe_unused]] AZ::RPI::RenderPipeline* renderPipeline) + { + } + + + void TerrainFeatureProcessor::Deactivate() + { + DisableSceneNotification(); + + DestroyRenderBuffers(); + m_areaData = {}; + + if (m_hostPool) + { + m_hostPool.reset(); + } + + m_rhiSystem = nullptr; + } + + void TerrainFeatureProcessor::Render(const AZ::RPI::FeatureProcessor::RenderPacket& packet) + { + ProcessSurfaces(packet); + } + + void TerrainFeatureProcessor::UpdateTerrainData( + const AZ::Transform& transform, + const AZ::Aabb& worldBounds, + [[maybe_unused]] float sampleSpacing, + uint32_t width, uint32_t height, const AZStd::vector& heightData) + { + if (!worldBounds.IsValid()) + { + return; + } + + m_areaData.m_transform = transform; + m_areaData.m_heightScale = worldBounds.GetZExtent(); + m_areaData.m_terrainBounds = worldBounds; + m_areaData.m_heightmapImageHeight = height; + m_areaData.m_heightmapImageWidth = width; + + // Create heightmap image data + { + m_areaData.m_propertiesDirty = true; + + AZ::RHI::Size imageSize; + imageSize.m_width = width; + imageSize.m_height = height; + + AZ::Data::Instance streamingImagePool = AZ::RPI::ImageSystemInterface::Get()->GetSystemStreamingPool(); + m_areaData.m_heightmapImage = AZ::RPI::StreamingImage::CreateFromCpuData(*streamingImagePool, + AZ::RHI::ImageDimension::Image2D, + imageSize, + AZ::RHI::Format::R32_FLOAT, + (uint8_t*)heightData.data(), + heightData.size() * sizeof(float)); + AZ_Error(TerrainFPName, m_areaData.m_heightmapImage, "Failed to initialize the heightmap image!"); + } + + } + + void TerrainFeatureProcessor::ProcessSurfaces(const FeatureProcessor::RenderPacket& process) + { + AZ_PROFILE_FUNCTION(AzRender); + + if (m_drawListTag.IsNull()) + { + return; + } + + if (!m_areaData.m_terrainBounds.IsValid()) + { + return; + } + + if (m_areaData.m_propertiesDirty) + { + m_sectorData.clear(); + + AZ::RHI::DrawPacketBuilder drawPacketBuilder; + + uint32_t numIndices = static_cast(m_gridIndices.size()); + + AZ::RHI::DrawIndexed drawIndexed; + drawIndexed.m_indexCount = numIndices; + drawIndexed.m_indexOffset = 0; + drawIndexed.m_vertexOffset = 0; + + float xFirstPatchStart = + m_areaData.m_terrainBounds.GetMin().GetX() - fmod(m_areaData.m_terrainBounds.GetMin().GetX(), m_gridMeters); + float xLastPatchStart = m_areaData.m_terrainBounds.GetMax().GetX() - fmod(m_areaData.m_terrainBounds.GetMax().GetX(), m_gridMeters); + float yFirstPatchStart = + m_areaData.m_terrainBounds.GetMin().GetY() - fmod(m_areaData.m_terrainBounds.GetMin().GetY(), m_gridMeters); + float yLastPatchStart = m_areaData.m_terrainBounds.GetMax().GetY() - fmod(m_areaData.m_terrainBounds.GetMax().GetY(), m_gridMeters); + + for (float yPatch = yFirstPatchStart; yPatch <= yLastPatchStart; yPatch += m_gridMeters) + { + for (float xPatch = xFirstPatchStart; xPatch <= xLastPatchStart; xPatch += m_gridMeters) + { + drawPacketBuilder.Begin(nullptr); + drawPacketBuilder.SetDrawArguments(drawIndexed); + drawPacketBuilder.SetIndexBufferView(m_indexBufferView); + + auto resourceGroup = AZ::RPI::ShaderResourceGroup::Create(m_shader->GetAsset(), m_shader->GetSupervariantIndex(), AZ::Name("ObjectSrg")); + //auto m_resourceGroup = AZ::RPI::ShaderResourceGroup::Create(m_shader->GetAsset(), AZ::Name("ObjectSrg")); + if (!resourceGroup) + { + AZ_Error(TerrainFPName, false, "Failed to create shader resource group"); + return; + } + + float uvMin[2] = { 0.0f, 0.0f }; + float uvMax[2] = { 1.0f, 1.0f }; + + uvMin[0] = (float)((xPatch - m_areaData.m_terrainBounds.GetMin().GetX()) / m_areaData.m_terrainBounds.GetXExtent()); + uvMin[1] = (float)((yPatch - m_areaData.m_terrainBounds.GetMin().GetY()) / m_areaData.m_terrainBounds.GetYExtent()); + + uvMax[0] = + (float)(((xPatch + m_gridMeters) - m_areaData.m_terrainBounds.GetMin().GetX()) / m_areaData.m_terrainBounds.GetXExtent()); + uvMax[1] = + (float)(((yPatch + m_gridMeters) - m_areaData.m_terrainBounds.GetMin().GetY()) / m_areaData.m_terrainBounds.GetYExtent()); + + float uvStep[2] = + { + 1.0f / m_areaData.m_heightmapImageWidth, 1.0f / m_areaData.m_heightmapImageHeight, + }; + + AZ::Transform transform = m_areaData.m_transform; + transform.SetTranslation(xPatch, yPatch, m_areaData.m_transform.GetTranslation().GetZ()); + + AZ::Matrix3x4 matrix3x4 = AZ::Matrix3x4::CreateFromTransform(transform); + + resourceGroup->SetImage(m_heightmapImageIndex, m_areaData.m_heightmapImage); + resourceGroup->SetConstant(m_modelToWorldIndex, matrix3x4); + resourceGroup->SetConstant(m_heightScaleIndex, m_areaData.m_heightScale); + resourceGroup->SetConstant(m_uvMinIndex, uvMin); + resourceGroup->SetConstant(m_uvMaxIndex, uvMax); + resourceGroup->SetConstant(m_uvStepIndex, uvStep); + resourceGroup->Compile(); + drawPacketBuilder.AddShaderResourceGroup(resourceGroup->GetRHIShaderResourceGroup()); + + AZ::RHI::DrawPacketBuilder::DrawRequest drawRequest; + drawRequest.m_listTag = m_drawListTag; + drawRequest.m_pipelineState = m_pipelineState.get(); + drawRequest.m_streamBufferViews = AZStd::array_view(&m_vertexBufferView, 1); + drawPacketBuilder.AddDrawItem(drawRequest); + + m_sectorData.emplace_back( + drawPacketBuilder.End(), + AZ::Aabb::CreateFromMinMax( + AZ::Vector3(xPatch, yPatch, m_areaData.m_terrainBounds.GetMin().GetZ()), + AZ::Vector3(xPatch + m_gridMeters, yPatch + m_gridMeters, m_areaData.m_terrainBounds.GetMax().GetZ()) + ), + resourceGroup + ); + } + } + } + + for (auto& view : process.m_views) + { + AZ::Frustum viewFrustum = AZ::Frustum::CreateFromMatrixColumnMajor(view->GetWorldToClipMatrix()); + for (auto& sectorData : m_sectorData) + { + if (viewFrustum.IntersectAabb(sectorData.m_aabb) != AZ::IntersectResult::Exterior) + { + view->AddDrawPacket(sectorData.m_drawPacket.get()); + } + } + } + } + + void TerrainFeatureProcessor::InitializeTerrainPatch() + { + m_gridVertices.clear(); + m_gridIndices.clear(); + + for (float y = 0.0f; y < m_gridMeters; y += m_gridSpacing) + { + for (float x = 0.0f; x < m_gridMeters; x += m_gridSpacing) + { + float x0 = x; + float x1 = x + m_gridSpacing; + float y0 = y; + float y1 = y + m_gridSpacing; + + uint16_t startIndex = (uint16_t)(m_gridVertices.size()); + + m_gridVertices.emplace_back(x0, y0, x0 / m_gridMeters, y0 / m_gridMeters); + m_gridVertices.emplace_back(x0, y1, x0 / m_gridMeters, y1 / m_gridMeters); + m_gridVertices.emplace_back(x1, y0, x1 / m_gridMeters, y0 / m_gridMeters); + m_gridVertices.emplace_back(x1, y1, x1 / m_gridMeters, y1 / m_gridMeters); + + m_gridIndices.emplace_back(startIndex); + m_gridIndices.emplace_back(aznumeric_cast(startIndex + 1)); + m_gridIndices.emplace_back(aznumeric_cast(startIndex + 2)); + m_gridIndices.emplace_back(aznumeric_cast(startIndex + 1)); + m_gridIndices.emplace_back(aznumeric_cast(startIndex + 2)); + m_gridIndices.emplace_back(aznumeric_cast(startIndex + 3)); + } + } + } + + bool TerrainFeatureProcessor::InitializeRenderBuffers() + { + AZ::RHI::ResultCode result = AZ::RHI::ResultCode::Fail; + + // Create geometry buffers + m_indexBuffer = AZ::RHI::Factory::Get().CreateBuffer(); + m_vertexBuffer = AZ::RHI::Factory::Get().CreateBuffer(); + + m_indexBuffer->SetName(AZ::Name("TerrainIndexBuffer")); + m_vertexBuffer->SetName(AZ::Name("TerrainVertexBuffer")); + + AZStd::vector> buffers = { m_indexBuffer , m_vertexBuffer }; + + // Fill our buffers with the vertex/index data + for (size_t bufferIndex = 0; bufferIndex < buffers.size(); ++bufferIndex) + { + AZ::RHI::Ptr buffer = buffers[bufferIndex]; + + // Initialize the buffer + + AZ::RHI::BufferInitRequest bufferRequest; + bufferRequest.m_descriptor = AZ::RHI::BufferDescriptor{ AZ::RHI::BufferBindFlags::InputAssembly, DEFAULT_UploadBufferSize }; + bufferRequest.m_buffer = buffer.get(); + + result = m_hostPool->InitBuffer(bufferRequest); + + if (result != AZ::RHI::ResultCode::Success) + { + AZ_Error(TerrainFPName, false, "Failed to create GPU buffers for Terrain"); + return false; + } + + // Grab a pointer to the buffer's data + + m_hostPool->OrphanBuffer(*buffer); + + AZ::RHI::BufferMapResponse mapResponse; + m_hostPool->MapBuffer(AZ::RHI::BufferMapRequest(*buffer, 0, DEFAULT_UploadBufferSize), mapResponse); + + auto* mappedData = reinterpret_cast(mapResponse.m_data); + + //0th index should always be the index buffer + if (bufferIndex == 0) + { + // Fill the index buffer with our terrain patch indices + const uint64_t idxSize = m_gridIndices.size() * sizeof(uint16_t); + memcpy(mappedData, m_gridIndices.data(), idxSize); + + m_indexBufferView = AZ::RHI::IndexBufferView( + *buffer, 0, static_cast(idxSize), AZ::RHI::IndexFormat::Uint16); + } + else + { + // Fill the vertex buffer with our terrain patch vertices + const uint64_t elementSize = m_gridVertices.size() * sizeof(Vertex); + memcpy(mappedData, m_gridVertices.data(), elementSize); + + m_vertexBufferView = AZ::RHI::StreamBufferView( + *buffer, 0, static_cast(elementSize), static_cast(sizeof(Vertex))); + + AZ::RHI::ValidateStreamBufferViews(m_pipelineStateDescriptor.m_inputStreamLayout, { { m_vertexBufferView } }); + } + + m_hostPool->UnmapBuffer(*buffer); + } + + return true; + } + + void TerrainFeatureProcessor::DestroyRenderBuffers() + { + m_indexBuffer.reset(); + m_vertexBuffer.reset(); + + m_indexBufferView = {}; + m_vertexBufferView = {}; + + m_pipelineStateDescriptor = AZ::RHI::PipelineStateDescriptorForDraw{}; + m_pipelineState = nullptr; + } + +} diff --git a/Gems/Terrain/Code/Source/TerrainRenderer/TerrainFeatureProcessor.h b/Gems/Terrain/Code/Source/TerrainRenderer/TerrainFeatureProcessor.h new file mode 100644 index 0000000000..7a7b63b634 --- /dev/null +++ b/Gems/Terrain/Code/Source/TerrainRenderer/TerrainFeatureProcessor.h @@ -0,0 +1,152 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include +#include + +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace Terrain +{ + class TerrainFeatureProcessor final + : public AZ::RPI::FeatureProcessor + { + public: + AZ_RTTI(TerrainFeatureProcessor, "{D7DAC1F9-4A9F-4D3C-80AE-99579BF8AB1C}", AZ::RPI::FeatureProcessor); + AZ_DISABLE_COPY_MOVE(TerrainFeatureProcessor); + AZ_FEATURE_PROCESSOR(TerrainFeatureProcessor); + + static void Reflect(AZ::ReflectContext* context); + + TerrainFeatureProcessor() = default; + ~TerrainFeatureProcessor() = default; + + ////////////////////////////////////////////////////////////////////////// + // AZ::Component interface implementation + void Activate() override; + void Deactivate() override; + void Render(const AZ::RPI::FeatureProcessor::RenderPacket& packet) override; + + void UpdateTerrainData(const AZ::Transform& transform, const AZ::Aabb& worldBounds, float sampleSpacing, + uint32_t width, uint32_t height, const AZStd::vector& heightData); + + void RemoveTerrainData() + { + m_areaData = {}; + } + + private: + // RPI::SceneNotificationBus overrides ... + void OnRenderPipelineAdded(AZ::RPI::RenderPipelinePtr pipeline) override; + void OnRenderPipelineRemoved(AZ::RPI::RenderPipeline* pipeline) override; + void OnRenderPipelinePassesChanged(AZ::RPI::RenderPipeline* renderPipeline) override; + + void InitializeAtomStuff(); + + void InitializeTerrainPatch(); + + bool InitializeRenderBuffers(); + void DestroyRenderBuffers(); + + void ProcessSurfaces(const FeatureProcessor::RenderPacket& process); + + // System-level parameters + const float m_gridSpacing{ 1.0f }; + const float m_gridMeters{ 32.0f }; + + // System-level cached reference to the Atom RHI + AZ::RHI::RHISystemInterface* m_rhiSystem = nullptr; + + // System-level references to the shader, pipeline, and shader-related information + AZ::Data::Instance m_shader{}; + AZ::RHI::PipelineStateDescriptorForDraw m_pipelineStateDescriptor; + AZ::RHI::ConstPtr m_pipelineState = nullptr; + AZ::RHI::DrawListTag m_drawListTag; + AZ::RHI::Ptr m_perObjectSrgAsset; + + AZ::RHI::ShaderInputImageIndex m_heightmapImageIndex; + AZ::RHI::ShaderInputConstantIndex m_modelToWorldIndex; + AZ::RHI::ShaderInputConstantIndex m_heightScaleIndex; + AZ::RHI::ShaderInputConstantIndex m_uvMinIndex; + AZ::RHI::ShaderInputConstantIndex m_uvMaxIndex; + AZ::RHI::ShaderInputConstantIndex m_uvStepIndex; + + + // Pos_float_2 + UV_float_2 + struct Vertex + { + float m_posx; + float m_posy; + float m_u; + float m_v; + + Vertex(float posx, float posy, float u, float v) + : m_posx(posx) + , m_posy(posy) + , m_u(u) + , m_v(v) + { + } + }; + + // System-level definition of a grid patch. (ex: 32m x 32m) + AZStd::vector m_gridVertices; + AZStd::vector m_gridIndices; + + // System-level data related to the grid patch + AZ::RHI::Ptr m_hostPool = nullptr; + AZ::RHI::Ptr m_indexBuffer; + AZ::RHI::Ptr m_vertexBuffer; + AZ::RHI::IndexBufferView m_indexBufferView; + AZ::RHI::StreamBufferView m_vertexBufferView; + + // Per-area data + struct TerrainAreaData + { + AZ::Transform m_transform{ AZ::Transform::CreateIdentity() }; + AZ::Aabb m_terrainBounds{ AZ::Aabb::CreateNull() }; + float m_heightScale; + AZ::Data::Instance m_heightmapImage; + uint32_t m_heightmapImageWidth; + uint32_t m_heightmapImageHeight; + bool m_propertiesDirty{ true }; + }; + + TerrainAreaData m_areaData; + + struct SectorData + { + AZ::Data::Instance m_srg; + AZ::Aabb m_aabb; + AZStd::unique_ptr m_drawPacket; + + SectorData(const AZ::RHI::DrawPacket* drawPacket, AZ::Aabb aabb, AZ::Data::Instance srg) + : m_srg(srg) + , m_aabb(aabb) + , m_drawPacket(drawPacket) + {} + }; + + AZStd::vector m_sectorData; + }; +} diff --git a/Gems/Terrain/Code/Source/TerrainSystem/TerrainSystem.cpp b/Gems/Terrain/Code/Source/TerrainSystem/TerrainSystem.cpp new file mode 100644 index 0000000000..90b74f08ba --- /dev/null +++ b/Gems/Terrain/Code/Source/TerrainSystem/TerrainSystem.cpp @@ -0,0 +1,467 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include +#include +#include + +#include +#include +#include + +using namespace Terrain; + +TerrainSystem::TerrainSystem() +{ + Terrain::TerrainSystemServiceRequestBus::Handler::BusConnect(); + AZ::TickBus::Handler::BusConnect(); + + m_currentSettings.m_systemActive = false; + m_currentSettings.m_worldBounds = AZ::Aabb::CreateNull(); + + m_requestedSettings = m_currentSettings; + m_requestedSettings.m_worldBounds = AZ::Aabb::CreateFromMinMax(AZ::Vector3(0.0f, 0.0f, 0.0f), AZ::Vector3(4096.0f, 4096.0f, 2048.0f)); +} + +TerrainSystem::~TerrainSystem() +{ + AZ::TickBus::Handler::BusDisconnect(); + Terrain::TerrainSystemServiceRequestBus::Handler::BusDisconnect(); + + Deactivate(); +} + +void TerrainSystem::Activate() +{ + m_requestedSettings.m_systemActive = true; + m_terrainSettingsDirty = true; +} + +void TerrainSystem::Deactivate() +{ + m_requestedSettings.m_systemActive = false; + m_terrainSettingsDirty = true; +} + +void TerrainSystem::SetWorldBounds(const AZ::Aabb& worldBounds) +{ + m_requestedSettings.m_worldBounds = worldBounds; + m_terrainSettingsDirty = true; +} + +void TerrainSystem::SetHeightQueryResolution(AZ::Vector2 queryResolution) +{ + m_requestedSettings.m_heightQueryResolution = queryResolution; + m_terrainSettingsDirty = true; +} + +AZ::Aabb TerrainSystem::GetTerrainAabb() const +{ + return m_currentSettings.m_worldBounds; +} + +AZ::Vector2 TerrainSystem::GetTerrainGridResolution() const +{ + return m_currentSettings.m_heightQueryResolution; +} + +float TerrainSystem::GetHeightSynchronous(float x, float y) const +{ + AZ::Vector3 inPosition((float)x, (float)y, m_currentSettings.m_worldBounds.GetMin().GetZ()); + AZ::Vector3 outPosition((float)x, (float)y, m_currentSettings.m_worldBounds.GetMin().GetZ()); + + AZStd::shared_lock lock(m_areaMutex); + + if (!m_registeredAreas.empty()) + { + for (auto& [areaId, areaBounds] : m_registeredAreas) + { + inPosition.SetZ(areaBounds.GetMin().GetZ()); + if (areaBounds.Contains(inPosition)) + { + Terrain::TerrainAreaHeightRequestBus::Event( + areaId, &Terrain::TerrainAreaHeightRequestBus::Events::GetHeight, inPosition, outPosition, + Terrain::TerrainAreaHeightRequestBus::Events::Sampler::DEFAULT); + } + } + } + + return AZ::GetClamp( + outPosition.GetZ(), m_currentSettings.m_worldBounds.GetMin().GetZ(), m_currentSettings.m_worldBounds.GetMax().GetZ()); +} + +float TerrainSystem::GetHeight(AZ::Vector3 position, [[maybe_unused]] Sampler sampler, [[maybe_unused]] bool* terrainExistsPtr) const +{ + if (terrainExistsPtr) + { + *terrainExistsPtr = true; + } + + return GetHeightSynchronous(position.GetX(), position.GetY()); +} + +float TerrainSystem::GetHeightFromFloats( + float x, float y, [[maybe_unused]] Sampler sampler, [[maybe_unused]] bool* terrainExistsPtr) const +{ + if (terrainExistsPtr) + { + *terrainExistsPtr = true; + } + + return GetHeightSynchronous(x, y); +} + +bool TerrainSystem::GetIsHoleFromFloats( + [[maybe_unused]] float x, [[maybe_unused]] float y, [[maybe_unused]] Sampler sampleFilter) const +{ + return false; +} + +AZ::Vector3 TerrainSystem::GetNormalSynchronous([[maybe_unused]] float x, [[maybe_unused]] float y) const +{ + return AZ::Vector3::CreateAxisZ(); +} + +AZ::Vector3 TerrainSystem::GetNormal( + AZ::Vector3 position, [[maybe_unused]] Sampler sampleFilter, [[maybe_unused]] bool* terrainExistsPtr) const +{ + if (terrainExistsPtr) + { + *terrainExistsPtr = true; + } + + return GetNormalSynchronous(position.GetX(), position.GetY()); +} + +AZ::Vector3 TerrainSystem::GetNormalFromFloats( + float x, float y, [[maybe_unused]] Sampler sampleFilter, [[maybe_unused]] bool* terrainExistsPtr) const +{ + if (terrainExistsPtr) + { + *terrainExistsPtr = true; + } + + return GetNormalSynchronous(x, y); +} + + +AzFramework::SurfaceData::SurfaceTagWeight TerrainSystem::GetMaxSurfaceWeight( + [[maybe_unused]] AZ::Vector3 position, [[maybe_unused]] Sampler sampleFilter, [[maybe_unused]] bool* terrainExistsPtr) const +{ + if (terrainExistsPtr) + { + *terrainExistsPtr = true; + } + + return AzFramework::SurfaceData::SurfaceTagWeight(); +} + +AzFramework::SurfaceData::SurfaceTagWeight TerrainSystem::GetMaxSurfaceWeightFromFloats( + [[maybe_unused]] float x, + [[maybe_unused]] float y, + [[maybe_unused]] Sampler sampleFilter, + [[maybe_unused]] bool* terrainExistsPtr) const +{ + if (terrainExistsPtr) + { + *terrainExistsPtr = true; + } + + return AzFramework::SurfaceData::SurfaceTagWeight(); +} + +const char* TerrainSystem::GetMaxSurfaceName( + [[maybe_unused]] AZ::Vector3 position, [[maybe_unused]] Sampler sampleFilter, [[maybe_unused]] bool* terrainExistsPtr) const +{ + if (terrainExistsPtr) + { + *terrainExistsPtr = true; + } + + return ""; +} + +/* +void TerrainSystem::GetSurfaceWeights( + [[maybe_unused]] const AZ::Vector3& inPosition, + [[maybe_unused]] Sampler sampleFilter, + [[maybe_unused]] SurfaceData::SurfaceTagWeightMap& outSurfaceWeights) +{ + // TODO: implement +} + +void TerrainSystem::GetSurfacePoint( + const AZ::Vector3& inPosition, [[maybe_unused]] Sampler sampleFilter, SurfaceData::SurfacePoint& outSurfacePoint) +{ + // TODO: Handle sampleFilter + + float sampleX = inPosition.GetX(); + float sampleY = inPosition.GetY(); + + GetHeight(inPosition, sampleFilter, outSurfacePoint.m_position); + //outSurfacePoint.m_position = AZ::Vector3(sampleX, sampleY, GetHeightSynchronous(sampleX, sampleY)); + outSurfacePoint.m_normal = GetNormalSynchronous(sampleX, sampleY); +} + + + + +void TerrainSystem::ProcessHeightsFromRegion(const AZ::Aabb& inRegion, const AZ::Vector2 stepSize, Sampler sampleFilter, SurfacePointRegionFillCallback perPositionCallback, TerrainDataReadyCallback onComplete) +{ + // Don't bother processing if we don't have a callback + if (!perPositionCallback) + { + return; + } + + uint32_t numSamplesX = static_cast((inRegion.GetMax().GetX() - inRegion.GetMin().GetX()) / stepSize.GetX()); + uint32_t numSamplesY = static_cast((inRegion.GetMax().GetY() - inRegion.GetMin().GetY()) / stepSize.GetY()); + + for (uint32_t y = 0; y < numSamplesY; y++) + { + for (uint32_t x = 0; x < numSamplesX; x++) + { + float fx = (float)(inRegion.GetMin().GetX() + (x * stepSize.GetX())); + float fy = (float)(inRegion.GetMin().GetY() + (y * stepSize.GetY())); + + SurfaceData::SurfacePoint surfacePoint; + GetHeight(AZ::Vector3(fx, fy, 0.0f), sampleFilter, surfacePoint.m_position); + perPositionCallback(surfacePoint, x, y); + } + } + + if (onComplete) + { + onComplete(); + } +} + + +void TerrainSystem::ProcessSurfacePointsFromRegion(const AZ::Aabb& inRegion, const AZ::Vector2 stepSize, Sampler sampleFilter, SurfacePointRegionFillCallback perPositionCallback, TerrainDataReadyCallback onComplete) +{ + // Don't bother processing if we don't have a callback + if (!perPositionCallback) + { + return; + } + + uint32_t numSamplesX = static_cast((inRegion.GetMax().GetX() - inRegion.GetMin().GetX()) / stepSize.GetX()); + uint32_t numSamplesY = static_cast((inRegion.GetMax().GetY() - inRegion.GetMin().GetY()) / stepSize.GetY()); + + for (uint32_t y = 0; y < numSamplesY; y++) + { + for (uint32_t x = 0; x < numSamplesX; x++) + { + float fx = (float)(inRegion.GetMin().GetX() + (x * stepSize.GetX())); + float fy = (float)(inRegion.GetMin().GetY() + (y * stepSize.GetY())); + + SurfaceData::SurfacePoint surfacePoint; + GetSurfacePoint(AZ::Vector3(fx, fy, inRegion.GetMin().GetZ()), sampleFilter, surfacePoint); + perPositionCallback(surfacePoint, x, y); + } + } + + if (onComplete) + { + onComplete(); + } +} +*/ + +void TerrainSystem::SystemActivate() +{ + { + AZStd::shared_lock lock(m_areaMutex); + m_registeredAreas.clear(); + } + + AzFramework::Terrain::TerrainDataRequestBus::Handler::BusConnect(); + + TerrainAreaRequestBus::Broadcast(&TerrainAreaRequestBus::Events::RegisterArea); +} + +void TerrainSystem::SystemDeactivate() +{ + AzFramework::Terrain::TerrainDataRequestBus::Handler::BusDisconnect(); + + { + AZStd::shared_lock lock(m_areaMutex); + m_registeredAreas.clear(); + } + + const AZ::RPI::Scene* scene = AZ::RPI::RPISystemInterface::Get()->GetDefaultScene().get(); + auto terrainFeatureProcessor = scene->GetFeatureProcessor(); + if (terrainFeatureProcessor) + { + terrainFeatureProcessor->RemoveTerrainData(); + } +} + +void TerrainSystem::RegisterArea(AZ::EntityId areaId) +{ + { + AZStd::unique_lock lock(m_areaMutex); + AZ::Aabb aabb = AZ::Aabb::CreateNull(); + LmbrCentral::ShapeComponentRequestsBus::EventResult(aabb, areaId, &LmbrCentral::ShapeComponentRequestsBus::Events::GetEncompassingAabb); + m_registeredAreas[areaId] = aabb; + } + + RefreshArea(areaId); +} + +void TerrainSystem::UnregisterArea(AZ::EntityId areaId) +{ + { + AZStd::unique_lock lock(m_areaMutex); + AZ::Aabb aabb = AZ::Aabb::CreateNull(); + LmbrCentral::ShapeComponentRequestsBus::EventResult(aabb, areaId, &LmbrCentral::ShapeComponentRequestsBus::Events::GetEncompassingAabb); + m_registeredAreas.erase(areaId); + } + + RefreshArea(areaId); +} + +void TerrainSystem::RefreshArea(AZ::EntityId areaId) +{ + AZStd::unique_lock lock(m_areaMutex); + + auto areaAabb = m_registeredAreas.find(areaId); + + AZ::Aabb oldAabb = (areaAabb != m_registeredAreas.end()) ? areaAabb->second : AZ::Aabb::CreateNull(); + AZ::Aabb newAabb = AZ::Aabb::CreateNull(); + LmbrCentral::ShapeComponentRequestsBus::EventResult(newAabb, areaId, &LmbrCentral::ShapeComponentRequestsBus::Events::GetEncompassingAabb); + + m_registeredAreas[areaId] = newAabb; + + AZ::Aabb expandedAabb = oldAabb; + expandedAabb.AddAabb(newAabb); + + m_dirtyRegion.AddAabb(expandedAabb); + m_terrainHeightDirty = true; +} + +void TerrainSystem::OnTick(float /*deltaTime*/, AZ::ScriptTimePoint /*time*/) +{ + bool terrainSettingsChanged = false; + + if (m_terrainSettingsDirty) + { + m_terrainSettingsDirty = false; + + // This needs to happen before the "system active" check below, because activating the system will cause the various + // terrain layer areas to request the current world bounds. + if (m_requestedSettings.m_worldBounds != m_currentSettings.m_worldBounds) + { + m_dirtyRegion = m_currentSettings.m_worldBounds; + m_dirtyRegion.AddAabb(m_requestedSettings.m_worldBounds); + m_terrainHeightDirty = true; + m_currentSettings.m_worldBounds = m_requestedSettings.m_worldBounds; + terrainSettingsChanged = true; + } + + if (m_requestedSettings.m_heightQueryResolution != m_currentSettings.m_heightQueryResolution) + { + m_dirtyRegion = AZ::Aabb::CreateNull(); + m_terrainHeightDirty = true; + terrainSettingsChanged = true; + } + + if (m_requestedSettings.m_systemActive != m_currentSettings.m_systemActive) + { + m_requestedSettings.m_systemActive ? SystemActivate() : SystemDeactivate(); + + // Null dirty region will be interpreted as updating everything + m_dirtyRegion = AZ::Aabb::CreateNull(); + m_terrainHeightDirty = true; + terrainSettingsChanged = true; + } + + m_currentSettings = m_requestedSettings; + } + + if (m_currentSettings.m_systemActive && m_terrainHeightDirty) + { + AZStd::shared_lock lock(m_areaMutex); + + AZ::Transform transform = AZ::Transform::CreateTranslation(m_currentSettings.m_worldBounds.GetCenter()); + + uint32_t width = aznumeric_cast( + (float)m_currentSettings.m_worldBounds.GetXExtent() / m_currentSettings.m_heightQueryResolution.GetX()); + uint32_t height = aznumeric_cast( + (float)m_currentSettings.m_worldBounds.GetYExtent() / m_currentSettings.m_heightQueryResolution.GetY()); + AZStd::vector pixels; + pixels.resize_no_construct(width * height); + const uint32_t pixelDataSize = width * height * sizeof(float); + memset(pixels.data(), 0, pixelDataSize); + + for (auto& [areaId, areaBounds] : m_registeredAreas) + { + for (uint32_t y = 0; y < height; y++) + { + for (uint32_t x = 0; x < width; x++) + { + AZ::Vector3 inPosition( + (x * m_currentSettings.m_heightQueryResolution.GetX()) + m_currentSettings.m_worldBounds.GetMin().GetX(), + (y * m_currentSettings.m_heightQueryResolution.GetY()) + m_currentSettings.m_worldBounds.GetMin().GetY(), + areaBounds.GetMin().GetZ()); + if (areaBounds.Contains(inPosition)) + { + AZ::Vector3 outPosition; + const Terrain::TerrainAreaHeightRequests::Sampler sampleFilter = + Terrain::TerrainAreaHeightRequests::Sampler::DEFAULT; + + Terrain::TerrainAreaHeightRequestBus::Event( + areaId, &Terrain::TerrainAreaHeightRequestBus::Events::GetHeight, inPosition, outPosition, sampleFilter); + + pixels[(y * width) + x] = (outPosition.GetZ() - m_currentSettings.m_worldBounds.GetMin().GetZ()) / + m_currentSettings.m_worldBounds.GetExtents().GetZ(); + } + } + } + } + + const AZ::RPI::Scene* scene = AZ::RPI::RPISystemInterface::Get()->GetDefaultScene().get(); + auto terrainFeatureProcessor = scene->GetFeatureProcessor(); + + AZ_Assert(terrainFeatureProcessor, "Unable to find a TerrainFeatureProcessor."); + if (terrainFeatureProcessor) + { + terrainFeatureProcessor->UpdateTerrainData( + transform, m_currentSettings.m_worldBounds, m_currentSettings.m_heightQueryResolution.GetX(), width, height, pixels); + } + } + + if (terrainSettingsChanged || m_terrainHeightDirty) + { + AzFramework::Terrain::TerrainDataNotifications::TerrainDataChangedMask changeMask = + AzFramework::Terrain::TerrainDataNotifications::TerrainDataChangedMask::None; + + if (terrainSettingsChanged) + { + changeMask = static_cast( + changeMask | AzFramework::Terrain::TerrainDataNotifications::TerrainDataChangedMask::Settings); + } + if (m_terrainHeightDirty) + { + changeMask = static_cast( + changeMask | AzFramework::Terrain::TerrainDataNotifications::TerrainDataChangedMask::HeightData); + } + + // Make sure to set these *before* calling OnTerrainDataChanged, since it's possible that subsystems reacting to that call will + // cause the data to become dirty again. + AZ::Aabb dirtyRegion = m_dirtyRegion; + m_terrainHeightDirty = false; + m_dirtyRegion = AZ::Aabb::CreateNull(); + + AzFramework::Terrain::TerrainDataNotificationBus::Broadcast( + &AzFramework::Terrain::TerrainDataNotificationBus::Events::OnTerrainDataChanged, dirtyRegion, + changeMask); + } + +} diff --git a/Gems/Terrain/Code/Source/TerrainSystem/TerrainSystem.h b/Gems/Terrain/Code/Source/TerrainSystem/TerrainSystem.h new file mode 100644 index 0000000000..2d2286a0c3 --- /dev/null +++ b/Gems/Terrain/Code/Source/TerrainSystem/TerrainSystem.h @@ -0,0 +1,117 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include +#include + +namespace Terrain +{ + class TerrainSystem + : public AzFramework::Terrain::TerrainDataRequestBus::Handler + , private Terrain::TerrainSystemServiceRequestBus::Handler + , private AZ::TickBus::Handler + { + public: + TerrainSystem(); + ~TerrainSystem(); + + /////////////////////////////////////////// + // TerrainSystemServiceRequestBus::Handler Impl + + void SetWorldBounds(const AZ::Aabb& worldBounds) override; + void SetHeightQueryResolution(AZ::Vector2 queryResolution) override; + + void Activate() override; + void Deactivate() override; + + void RegisterArea(AZ::EntityId areaId) override; + void UnregisterArea(AZ::EntityId areaId) override; + void RefreshArea(AZ::EntityId areaId) override; + + /////////////////////////////////////////// + // TerrainDataRequestBus::Handler Impl + AZ::Vector2 GetTerrainGridResolution() const override; + AZ::Aabb GetTerrainAabb() const override; + + //! Returns terrains height in meters at location x,y. + //! @terrainExistsPtr: Can be nullptr. If != nullptr then, if there's no terrain at location x,y or location x,y is inside a terrain + //! HOLE then *terrainExistsPtr will become false, + //! otherwise *terrainExistsPtr will become true. + float GetHeight(AZ::Vector3 position, Sampler sampler = Sampler::BILINEAR, bool* terrainExistsPtr = nullptr) const override; + float GetHeightFromFloats(float x, float y, Sampler sampler = Sampler::BILINEAR, bool* terrainExistsPtr = nullptr) const override; + + //! Given an XY coordinate, return the max surface type and weight. + //! @terrainExists: Can be nullptr. If != nullptr then, if there's no terrain at location x,y or location x,y is inside a terrain + //! HOLE then *terrainExistsPtr will be set to false, + //! otherwise *terrainExistsPtr will be set to true. + AzFramework::SurfaceData::SurfaceTagWeight GetMaxSurfaceWeight( + AZ::Vector3 position, Sampler sampleFilter = Sampler::BILINEAR, bool* terrainExistsPtr = nullptr) const override; + AzFramework::SurfaceData::SurfaceTagWeight GetMaxSurfaceWeightFromFloats( + float x, float y, Sampler sampleFilter = Sampler::BILINEAR, bool* terrainExistsPtr = nullptr) const override; + + //! Convenience function for low level systems that can't do a reverse lookup from Crc to string. Everyone else should use + //! GetMaxSurfaceWeight or GetMaxSurfaceWeightFromFloats. Not available in the behavior context. Returns nullptr if the position is + //! inside a hole or outside of the terrain boundaries. + const char* GetMaxSurfaceName( + AZ::Vector3 position, Sampler sampleFilter = Sampler::BILINEAR, bool* terrainExistsPtr = nullptr) const override; + + //! Returns true if there's a hole at location x,y. + //! Also returns true if there's no terrain data at location x,y. + bool GetIsHoleFromFloats(float x, float y, Sampler sampleFilter = Sampler::BILINEAR) const override; + + // Given an XY coordinate, return the surface normal. + //! @terrainExists: Can be nullptr. If != nullptr then, if there's no terrain at location x,y or location x,y is inside a terrain + //! HOLE then *terrainExistsPtr will be set to false, + //! otherwise *terrainExistsPtr will be set to true. + AZ::Vector3 GetNormal( + AZ::Vector3 position, Sampler sampleFilter = Sampler::BILINEAR, bool* terrainExistsPtr = nullptr) const override; + AZ::Vector3 GetNormalFromFloats( + float x, float y, Sampler sampleFilter = Sampler::BILINEAR, bool* terrainExistsPtr = nullptr) const override; + + private: + float GetHeightSynchronous(float x, float y) const; + AZ::Vector3 GetNormalSynchronous(float x, float y) const; + + // AZ::TickBus::Handler overrides ... + void OnTick(float deltaTime, AZ::ScriptTimePoint time) override; + + void SystemActivate(); + void SystemDeactivate(); + + struct TerrainSystemSettings + { + AZ::Aabb m_worldBounds; + AZ::Vector2 m_heightQueryResolution{ 1.0f }; + bool m_systemActive{ false }; + }; + + TerrainSystemSettings m_currentSettings; + TerrainSystemSettings m_requestedSettings; + + bool m_terrainSettingsDirty = true; + bool m_terrainHeightDirty = false; + AZ::Aabb m_dirtyRegion; + + mutable AZStd::shared_mutex m_areaMutex; + AZStd::unordered_map m_registeredAreas; + }; +} // namespace Terrain diff --git a/Gems/Terrain/Code/Source/TerrainSystem/TerrainSystemBus.h b/Gems/Terrain/Code/Source/TerrainSystem/TerrainSystemBus.h new file mode 100644 index 0000000000..e999cbf8be --- /dev/null +++ b/Gems/Terrain/Code/Source/TerrainSystem/TerrainSystemBus.h @@ -0,0 +1,116 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#pragma once + +#include +#include +#include +#include + +#include +#include + +namespace Terrain +{ + /** + * A bus to signal the life times of terrain areas + * Note: all the API are meant to be queued events + */ + class TerrainSystemServiceRequests + : public AZ::EBusTraits + { + public: + //////////////////////////////////////////////////////////////////////// + // EBusTraits + // singleton pattern + static const AZ::EBusHandlerPolicy HandlerPolicy = AZ::EBusHandlerPolicy::Single; + static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::Single; + using MutexType = AZStd::recursive_mutex; + //////////////////////////////////////////////////////////////////////// + + virtual ~TerrainSystemServiceRequests() = default; + + virtual void Activate() = 0; + virtual void Deactivate() = 0; + + virtual void SetWorldBounds(const AZ::Aabb& worldBounds) = 0; + virtual void SetHeightQueryResolution(AZ::Vector2 queryResolution) = 0; + + // register an area to override terrain + virtual void RegisterArea(AZ::EntityId areaId) = 0; + virtual void UnregisterArea(AZ::EntityId areaId) = 0; + virtual void RefreshArea(AZ::EntityId areaId) = 0; + }; + + using TerrainSystemServiceRequestBus = AZ::EBus; + + /** + * A bus to signal the life times of terrain areas + * Note: all the API are meant to be queued events + */ + class TerrainAreaRequests + : public AZ::ComponentBus + { + public: + //////////////////////////////////////////////////////////////////////// + // EBusTraits + using MutexType = AZStd::recursive_mutex; + //////////////////////////////////////////////////////////////////////// + + virtual ~TerrainAreaRequests() = default; + + virtual void RegisterArea() = 0; + virtual void RefreshArea() = 0; + + }; + + using TerrainAreaRequestBus = AZ::EBus; + + /** + * A bus to signal the life times of terrain areas + * Note: all the API are meant to be queued events + */ + class TerrainAreaHeightRequests + : public AZ::ComponentBus + { + public: + //////////////////////////////////////////////////////////////////////// + // EBusTraits + using MutexType = AZStd::recursive_mutex; + //////////////////////////////////////////////////////////////////////// + + virtual ~TerrainAreaHeightRequests() = default; + + enum class Sampler + { + BILINEAR, // Get the value at the requested location, using terrain sample grid to bilinear filter between sample grid points + CLAMP, // Clamp the input point to the terrain sample grid, then get the exact value + EXACT, // Directly get the value at the location, regardless of terrain sample grid density + + DEFAULT = BILINEAR + }; + + enum SurfacePointDataMask + { + POSITION = 0x01, + NORMAL = 0x02, + SURFACE_WEIGHTS = 0x04, + + DEFAULT = POSITION | NORMAL | SURFACE_WEIGHTS + }; + + // Synchronous single input location. The Vector3 input position versions are defined to ignore the input Z value. + + virtual void GetHeight(const AZ::Vector3& inPosition, AZ::Vector3& outPosition, Sampler sampleFilter = Sampler::DEFAULT) = 0; + virtual void GetNormal(const AZ::Vector3& inPosition, AZ::Vector3& outNormal, Sampler sampleFilter = Sampler::DEFAULT) = 0; + }; + + using TerrainAreaHeightRequestBus = AZ::EBus; + +} diff --git a/Gems/Terrain/Code/Tests/TerrainEditorTest.cpp b/Gems/Terrain/Code/Tests/TerrainEditorTest.cpp new file mode 100644 index 0000000000..47492dfe40 --- /dev/null +++ b/Gems/Terrain/Code/Tests/TerrainEditorTest.cpp @@ -0,0 +1,31 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include + +class TerrainEditorTest + : public ::testing::Test +{ +protected: + void SetUp() override + { + + } + + void TearDown() override + { + + } +}; + +TEST_F(TerrainEditorTest, SanityTest) +{ + ASSERT_TRUE(true); +} + +AZ_UNIT_TEST_HOOK(DEFAULT_UNIT_TEST_ENV); diff --git a/Gems/Terrain/Code/Tests/TerrainTest.cpp b/Gems/Terrain/Code/Tests/TerrainTest.cpp new file mode 100644 index 0000000000..9b47c91a31 --- /dev/null +++ b/Gems/Terrain/Code/Tests/TerrainTest.cpp @@ -0,0 +1,31 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include + +class TerrainTest + : public ::testing::Test +{ +protected: + void SetUp() override + { + + } + + void TearDown() override + { + + } +}; + +TEST_F(TerrainTest, SanityTest) +{ + ASSERT_TRUE(true); +} + +AZ_UNIT_TEST_HOOK(DEFAULT_UNIT_TEST_ENV); diff --git a/Gems/Terrain/Code/terrain_editor_shared_files.cmake b/Gems/Terrain/Code/terrain_editor_shared_files.cmake new file mode 100644 index 0000000000..9868f7d310 --- /dev/null +++ b/Gems/Terrain/Code/terrain_editor_shared_files.cmake @@ -0,0 +1,24 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +set(FILES + Source/EditorComponents/EditorTerrainHeightGradientListComponent.cpp + Source/EditorComponents/EditorTerrainHeightGradientListComponent.h + Source/EditorComponents/EditorTerrainLayerSpawnerComponent.cpp + Source/EditorComponents/EditorTerrainLayerSpawnerComponent.h + Source/EditorComponents/EditorTerrainWorldComponent.cpp + Source/EditorComponents/EditorTerrainWorldComponent.h + Source/EditorComponents/EditorTerrainWorldDebuggerComponent.cpp + Source/EditorComponents/EditorTerrainWorldDebuggerComponent.h + Source/EditorComponents/EditorTerrainSystemComponent.cpp + Source/EditorComponents/EditorTerrainSystemComponent.h + Source/EditorTerrainModule.cpp + Source/EditorTerrainModule.h + Source/TerrainModule.cpp + Source/TerrainModule.h +) diff --git a/cmake/3rdParty/Platform/Linux/squish-ccr_linux.cmake b/Gems/Terrain/Code/terrain_editor_tests_files.cmake similarity index 76% rename from cmake/3rdParty/Platform/Linux/squish-ccr_linux.cmake rename to Gems/Terrain/Code/terrain_editor_tests_files.cmake index 80a0776765..d5d0ec5393 100644 --- a/cmake/3rdParty/Platform/Linux/squish-ccr_linux.cmake +++ b/Gems/Terrain/Code/terrain_editor_tests_files.cmake @@ -6,4 +6,6 @@ # # -set(SQUISH-CCR_LIBS ${BASE_PATH}/lib/Linux/Release/libsquish-ccr.a) \ No newline at end of file +set(FILES + Tests/TerrainEditorTest.cpp +) diff --git a/Gems/Terrain/Code/terrain_files.cmake b/Gems/Terrain/Code/terrain_files.cmake new file mode 100644 index 0000000000..6a76dd7141 --- /dev/null +++ b/Gems/Terrain/Code/terrain_files.cmake @@ -0,0 +1,27 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +set(FILES + Source/Components/TerrainHeightGradientListComponent.cpp + Source/Components/TerrainHeightGradientListComponent.h + Source/Components/TerrainLayerSpawnerComponent.cpp + Source/Components/TerrainLayerSpawnerComponent.h + Source/Components/TerrainSurfaceDataSystemComponent.cpp + Source/Components/TerrainSurfaceDataSystemComponent.h + Source/Components/TerrainSystemComponent.cpp + Source/Components/TerrainSystemComponent.h + Source/Components/TerrainWorldComponent.cpp + Source/Components/TerrainWorldComponent.h + Source/Components/TerrainWorldDebuggerComponent.cpp + Source/Components/TerrainWorldDebuggerComponent.h + Source/TerrainRenderer/TerrainFeatureProcessor.cpp + Source/TerrainRenderer/TerrainFeatureProcessor.h + Source/TerrainSystem/TerrainSystem.cpp + Source/TerrainSystem/TerrainSystem.h + Source/TerrainSystem/TerrainSystemBus.h +) diff --git a/cmake/3rdParty/Platform/Windows/squish-ccr_windows.cmake b/Gems/Terrain/Code/terrain_shared_files.cmake similarity index 75% rename from cmake/3rdParty/Platform/Windows/squish-ccr_windows.cmake rename to Gems/Terrain/Code/terrain_shared_files.cmake index fb94cb6969..211182b0fa 100644 --- a/cmake/3rdParty/Platform/Windows/squish-ccr_windows.cmake +++ b/Gems/Terrain/Code/terrain_shared_files.cmake @@ -6,4 +6,7 @@ # # -set(SQUISH-CCR_LIBS ${BASE_PATH}/lib/Windows/Release/squish-ccr.lib) \ No newline at end of file +set(FILES + Source/TerrainModule.h + Source/TerrainModule.cpp +) diff --git a/Code/Framework/AzCore/Platform/Common/azcore_profile_telemetry_files.cmake b/Gems/Terrain/Code/terrain_tests_files.cmake similarity index 75% rename from Code/Framework/AzCore/Platform/Common/azcore_profile_telemetry_files.cmake rename to Gems/Terrain/Code/terrain_tests_files.cmake index d23f8df790..beed6bd83d 100644 --- a/Code/Framework/AzCore/Platform/Common/azcore_profile_telemetry_files.cmake +++ b/Gems/Terrain/Code/terrain_tests_files.cmake @@ -7,6 +7,5 @@ # set(FILES - RadTelemetry/ProfileTelemetry.h - RadTelemetry/ProfileTelemetryBus.h + Tests/TerrainTest.cpp ) diff --git a/Gems/Terrain/gem.json b/Gems/Terrain/gem.json new file mode 100644 index 0000000000..c01ea7e534 --- /dev/null +++ b/Gems/Terrain/gem.json @@ -0,0 +1,10 @@ +{ + "gem_name": "Terrain", + "display_name": "Terrain", + "license": "Apache-2.0 Or MIT", + "origin": "Open 3D Engine - o3de.org", + "summary": "The Terrain Gem is an experimental terrain system. The terrain system maps height, color, and surface data to regions of the world, provides gradient-based and shape-based authoring tools and workflows, includes specialized rendering for efficient display, and integrates with physics for physical simulation.", + "canonical_tags": [ "Gem" ], + "user_tags": [ "Environment", "Tools", "Design", "Terrain" ], + "documentation_url": "https://o3de.org/docs/user-guide/gems/reference/terrain/" +} diff --git a/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.cpp b/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.cpp index ed0d889299..abcdce99b9 100644 --- a/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.cpp +++ b/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.cpp @@ -33,6 +33,30 @@ namespace TextureAtlasBuilder { + //! Used for sorting ImageDimensions + bool operator<(ImageDimension a, ImageDimension b); + + //! Used to expose the ImageDimension in a pair to AZStd::Sort + bool operator<(IndexImageDimension a, IndexImageDimension b); + + //! Returns true if two coordinate sets overlap + bool Collides(AtlasCoordinates a, AtlasCoordinates b); + + //! Returns true if item collides with any object in list + bool Collides(AtlasCoordinates item, AZStd::vector list); + + //! Returns the portion of the second item that overlaps with the first + AtlasCoordinates GetOverlap(AtlasCoordinates a, AtlasCoordinates b); + + //! Performs an operation that copies a pixel to the output + void SetPixels(AZ::u8* dest, const AZ::u8* source, int destBytes); + + //! Checks if we can insert an image into a slot + bool CanInsert(AtlasCoordinates slot, ImageDimension image, int padding, int farRight, int farBot); + + //! Adds the necessary padding to an Atlas Coordinate + void AddPadding(AtlasCoordinates& slot, int padding, int farRight, int farBot); + //! Counts leading zeros uint32_t CountLeadingZeros32(uint32_t x) { @@ -1411,7 +1435,7 @@ namespace TextureAtlasBuilder // Defines priority so that sorting can be meaningful. It may seem odd that larger items are "less than" smaller // ones, but as this is a deduction of priority, not value, it is correct. - static bool operator<(ImageDimension a, ImageDimension b) + bool operator<(ImageDimension a, ImageDimension b) { // Prioritize first by longest size if ((a.m_width > a.m_height ? a.m_width : a.m_height) != (b.m_width > b.m_height ? b.m_width : b.m_height)) @@ -1431,7 +1455,7 @@ namespace TextureAtlasBuilder } // Exposes priority logic to the sorting algorithm - static bool operator<(IndexImageDimension a, IndexImageDimension b) { return a.second < b.second; } + bool operator<(IndexImageDimension a, IndexImageDimension b) { return a.second < b.second; } // Tests if two coordinate sets intersect bool Collides(AtlasCoordinates a, AtlasCoordinates b) diff --git a/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.h b/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.h index 7bff2be678..86faeac616 100644 --- a/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.h +++ b/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.h @@ -200,28 +200,4 @@ namespace TextureAtlasBuilder //! Returns the height of the tallest area static int GetTallest(const ImageDimensionData& imageList); }; - - //! Used for sorting ImageDimensions - static bool operator<(ImageDimension a, ImageDimension b); - - //! Used to expose the ImageDimension in a pair to AZStd::Sort - static bool operator<(IndexImageDimension a, IndexImageDimension b); - - //! Returns true if two coordinate sets overlap - static bool Collides(AtlasCoordinates a, AtlasCoordinates b); - - //! Returns true if item collides with any object in list - static bool Collides(AtlasCoordinates item, AZStd::vector list); - - //! Returns the portion of the second item that overlaps with the first - static AtlasCoordinates GetOverlap(AtlasCoordinates a, AtlasCoordinates b); - - //! Performs an operation that copies a pixel to the output - static void SetPixels(AZ::u8* dest, const AZ::u8* source, int destBytes); - - //! Checks if we can insert an image into a slot - static bool CanInsert(AtlasCoordinates slot, ImageDimension image, int padding, int farRight, int farBot); - - //! Adds the necessary padding to an Atlas Coordinate - static void AddPadding(AtlasCoordinates& slot, int padding, int farRight, int farBot); } diff --git a/Gems/Twitch/Code/Source/TwitchREST.cpp b/Gems/Twitch/Code/Source/TwitchREST.cpp index 7403e927ca..a8aaa83fa0 100644 --- a/Gems/Twitch/Code/Source/TwitchREST.cpp +++ b/Gems/Twitch/Code/Source/TwitchREST.cpp @@ -69,7 +69,7 @@ namespace Twitch { AZStd::string url( BuildBaseURL("users", friendID) + "/friends/notifications"); - AddHTTPRequest(url, Aws::Http::HttpMethod::HTTP_DELETE, GetDefaultHeaders(), [receipt, this](const Aws::Utils::Json::JsonView& /*json*/, Aws::Http::HttpResponseCode httpCode) + AddHTTPRequest(url, Aws::Http::HttpMethod::HTTP_DELETE, GetDefaultHeaders(), [receipt](const Aws::Utils::Json::JsonView& /*json*/, Aws::Http::HttpResponseCode httpCode) { ResultCode rc(ResultCode::TwitchRESTError); @@ -87,7 +87,7 @@ namespace Twitch { AZStd::string url(BuildBaseURL("users", friendID) + "/friends/notifications"); - AddHTTPRequest(url, Aws::Http::HttpMethod::HTTP_GET, GetDefaultHeaders(), [receipt, this](const Aws::Utils::Json::JsonView& json, Aws::Http::HttpResponseCode httpCode) + AddHTTPRequest(url, Aws::Http::HttpMethod::HTTP_GET, GetDefaultHeaders(), [receipt](const Aws::Utils::Json::JsonView& json, Aws::Http::HttpResponseCode httpCode) { ResultCode rc(ResultCode::TwitchRESTError); AZ::s64 count = 0; @@ -203,7 +203,7 @@ namespace Twitch { AZStd::string url(BuildBaseURL("users") + "/friends/relationships/" + friendID); - AddHTTPRequest(url, Aws::Http::HttpMethod::HTTP_PUT, GetDefaultHeaders(), [receipt, this]([[maybe_unused]] const Aws::Utils::Json::JsonView& jsonDoc, Aws::Http::HttpResponseCode httpCode) + AddHTTPRequest(url, Aws::Http::HttpMethod::HTTP_PUT, GetDefaultHeaders(), [receipt]([[maybe_unused]] const Aws::Utils::Json::JsonView& jsonDoc, Aws::Http::HttpResponseCode httpCode) { ResultCode rc(ResultCode::TwitchRESTError); @@ -265,7 +265,7 @@ namespace Twitch { AZStd::string url(BuildBaseURL("users") + "/friends/requests/" + friendID); - AddHTTPRequest(url, Aws::Http::HttpMethod::HTTP_PUT, GetDefaultHeaders(), [receipt, this]([[maybe_unused]] const Aws::Utils::Json::JsonView& jsonDoc, Aws::Http::HttpResponseCode httpCode) + AddHTTPRequest(url, Aws::Http::HttpMethod::HTTP_PUT, GetDefaultHeaders(), [receipt]([[maybe_unused]] const Aws::Utils::Json::JsonView& jsonDoc, Aws::Http::HttpResponseCode httpCode) { ResultCode rc(ResultCode::TwitchRESTError); @@ -282,7 +282,7 @@ namespace Twitch { AZStd::string url(BuildBaseURL("users") + "/friends/requests/" + friendID); - AddHTTPRequest(url, Aws::Http::HttpMethod::HTTP_DELETE, GetDefaultHeaders(), [receipt, this]([[maybe_unused]] const Aws::Utils::Json::JsonView& jsonDoc, Aws::Http::HttpResponseCode httpCode) + AddHTTPRequest(url, Aws::Http::HttpMethod::HTTP_DELETE, GetDefaultHeaders(), [receipt]([[maybe_unused]] const Aws::Utils::Json::JsonView& jsonDoc, Aws::Http::HttpResponseCode httpCode) { ResultCode rc(ResultCode::TwitchRESTError); diff --git a/Gems/Vegetation/Code/Source/Components/BlockerComponent.cpp b/Gems/Vegetation/Code/Source/Components/BlockerComponent.cpp index e26f1aee47..0f45e532d9 100644 --- a/Gems/Vegetation/Code/Source/Components/BlockerComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/BlockerComponent.cpp @@ -222,7 +222,7 @@ namespace Vegetation for (const auto& id : processedIds) { bool accepted = true; - FilterRequestBus::EnumerateHandlersId(id, [this, &instanceData, &accepted](FilterRequestBus::Events* handler) { + FilterRequestBus::EnumerateHandlersId(id, [&instanceData, &accepted](FilterRequestBus::Events* handler) { accepted = handler->Evaluate(instanceData); return accepted; }); diff --git a/Gems/Vegetation/Code/Source/Components/MeshBlockerComponent.cpp b/Gems/Vegetation/Code/Source/Components/MeshBlockerComponent.cpp index 52461e691c..dc205079fd 100644 --- a/Gems/Vegetation/Code/Source/Components/MeshBlockerComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/MeshBlockerComponent.cpp @@ -259,7 +259,7 @@ namespace Vegetation for (const auto& id : processedIds) { bool accepted = true; - FilterRequestBus::EnumerateHandlersId(id, [this, &instanceData, &accepted](FilterRequestBus::Events* handler) { + FilterRequestBus::EnumerateHandlersId(id, [&instanceData, &accepted](FilterRequestBus::Events* handler) { accepted = handler->Evaluate(instanceData); return accepted; }); diff --git a/Gems/Vegetation/Code/Source/InstanceSystemComponent.cpp b/Gems/Vegetation/Code/Source/InstanceSystemComponent.cpp index d4185fde6c..dd38daa633 100644 --- a/Gems/Vegetation/Code/Source/InstanceSystemComponent.cpp +++ b/Gems/Vegetation/Code/Source/InstanceSystemComponent.cpp @@ -582,7 +582,7 @@ namespace Vegetation } //offloading garbage collection to job to save time deallocating tasks on main thread - auto garbageCollectionJob = AZ::CreateJobFunction([removedTasksPtr]() mutable {}, true); + auto garbageCollectionJob = AZ::CreateJobFunction([]() mutable {}, true); garbageCollectionJob->Start(); } diff --git a/Gems/Vegetation/Code/Source/PrefabInstanceSpawner.cpp b/Gems/Vegetation/Code/Source/PrefabInstanceSpawner.cpp index 2189929fa3..efeb60d598 100644 --- a/Gems/Vegetation/Code/Source/PrefabInstanceSpawner.cpp +++ b/Gems/Vegetation/Code/Source/PrefabInstanceSpawner.cpp @@ -325,7 +325,7 @@ namespace Vegetation // Create a callback for SpawnAllEntities that will set the transform of the root entity to the correct position / rotation / scale // for our spawned instance. - auto preSpawnCB = [this, world]( + auto preSpawnCB = [world]( [[maybe_unused]] AzFramework::EntitySpawnTicket::Id ticketId, AzFramework::SpawnableEntityContainerView view) { AZ::Entity* rootEntity = *view.begin(); diff --git a/Gems/Vegetation/Code/Source/VegetationSystemComponent.cpp b/Gems/Vegetation/Code/Source/VegetationSystemComponent.cpp index dd0e63c15b..345c27d27a 100644 --- a/Gems/Vegetation/Code/Source/VegetationSystemComponent.cpp +++ b/Gems/Vegetation/Code/Source/VegetationSystemComponent.cpp @@ -47,19 +47,24 @@ namespace Vegetation void VegetationSystemComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services) { - services.push_back(AZ_CRC("VegetationSystemService", 0xa2322728)); + services.push_back(AZ_CRC_CE("VegetationSystemService")); } void VegetationSystemComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services) { - services.push_back(AZ_CRC("VegetationSystemService", 0xa2322728)); + services.push_back(AZ_CRC_CE("VegetationSystemService")); } void VegetationSystemComponent::GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& services) { - services.push_back(AZ_CRC("VegetationAreaSystemService", 0x36da2b62)); - services.push_back(AZ_CRC("VegetationInstanceSystemService", 0x823a6007)); - services.push_back(AZ_CRC("SurfaceDataProviderService", 0xfe9fb95e)); + services.push_back(AZ_CRC_CE("VegetationAreaSystemService")); + services.push_back(AZ_CRC_CE("VegetationInstanceSystemService")); + services.push_back(AZ_CRC_CE("SurfaceDataSystemService")); + } + + void VegetationSystemComponent::GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& services) + { + services.push_back(AZ_CRC_CE("SurfaceDataProviderService")); } void VegetationSystemComponent::Reflect(AZ::ReflectContext* context) diff --git a/Gems/Vegetation/Code/Source/VegetationSystemComponent.h b/Gems/Vegetation/Code/Source/VegetationSystemComponent.h index ff4ab17586..bbe92e2cf8 100644 --- a/Gems/Vegetation/Code/Source/VegetationSystemComponent.h +++ b/Gems/Vegetation/Code/Source/VegetationSystemComponent.h @@ -22,6 +22,7 @@ namespace Vegetation static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services); static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services); static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& services); + static void GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& services); static void Reflect(AZ::ReflectContext* context); VegetationSystemComponent(); diff --git a/Gems/Vegetation/Code/Tests/VegetationMocks.h b/Gems/Vegetation/Code/Tests/VegetationMocks.h index 37bacef21a..ebc51d1b3b 100644 --- a/Gems/Vegetation/Code/Tests/VegetationMocks.h +++ b/Gems/Vegetation/Code/Tests/VegetationMocks.h @@ -554,6 +554,16 @@ namespace UnitTest return m_drawItemSortKeyOutput; } + AZ::RPI::Cullable::LodType m_lodTypeOutput; + void SetLodType(AZ::RPI::Cullable::LodType lodType) override + { + m_lodTypeOutput = lodType; + } + AZ::RPI::Cullable::LodType GetLodType() const override + { + return m_lodTypeOutput; + } + AZ::RPI::Cullable::LodOverride m_lodOverrideOutput; void SetLodOverride(AZ::RPI::Cullable::LodOverride lodOverride) override { @@ -563,6 +573,26 @@ namespace UnitTest { return m_lodOverrideOutput; } + + float m_minimumScreenCoverageOutput; + void SetMinimumScreenCoverage(float minimumScreenCoverage) override + { + m_minimumScreenCoverageOutput = minimumScreenCoverage; + } + float GetMinimumScreenCoverage() const override + { + return m_minimumScreenCoverageOutput; + } + + float m_qualityDecayRateOutput; + void SetQualityDecayRate(float qualityDecayRate) override + { + m_qualityDecayRateOutput = qualityDecayRate; + } + float GetQualityDecayRate() const override + { + return m_qualityDecayRateOutput; + } }; struct MockTransformBus diff --git a/Gems/Vegetation/Code/Tests/VegetationTest.h b/Gems/Vegetation/Code/Tests/VegetationTest.h index 6638b54a40..cf7c9b70a1 100644 --- a/Gems/Vegetation/Code/Tests/VegetationTest.h +++ b/Gems/Vegetation/Code/Tests/VegetationTest.h @@ -77,7 +77,6 @@ namespace UnitTest claimContext.m_existedCallback = [this](const Vegetation::ClaimPoint&, const Vegetation::InstanceData&) { - m_existedCallbackCount; return m_existedCallbackOutput; }; diff --git a/Gems/WhiteBox/Code/Source/Core/WhiteBoxToolApi.cpp b/Gems/WhiteBox/Code/Source/Core/WhiteBoxToolApi.cpp index 961eef2176..afba511603 100644 --- a/Gems/WhiteBox/Code/Source/Core/WhiteBoxToolApi.cpp +++ b/Gems/WhiteBox/Code/Source/Core/WhiteBoxToolApi.cpp @@ -29,6 +29,46 @@ #include #include +namespace OpenMesh +{ + // Overload methods need to be declared before including OpenMesh so their definitions are found + + inline AZ::Vector3 normalize(const AZ::Vector3& v) + { + AZ::Vector3 vret = v; + vret.Normalize(); + return vret; + } + + inline float dot(const AZ::Vector3& v1, const AZ::Vector3& v2) + { + return v1.Dot(v2); + } + + inline float norm(const AZ::Vector3& v) + { + return v.GetLength(); + } + + inline AZ::Vector3 cross(const AZ::Vector3& v1, const AZ::Vector3& v2) + { + return v1.Cross(v2); + } + + inline AZ::Vector3 vectorize(AZ::Vector3& v, float s) + { + v = AZ::Vector3(s); + return v; + } + + inline void newell_norm(AZ::Vector3& n, const AZ::Vector3& a, const AZ::Vector3& b) + { + n.SetX(n.GetX() + (a.GetY() * b.GetZ())); + n.SetY(n.GetY() + (a.GetZ() * b.GetX())); + n.SetZ(n.GetZ() + (a.GetX() * b.GetY())); + } +} + // OpenMesh includes AZ_PUSH_DISABLE_WARNING(4702, "-Wunknown-warning-option") // OpenMesh\Core\Utils\Property.hh has unreachable code #include @@ -40,6 +80,8 @@ AZ_PUSH_DISABLE_WARNING(4702, "-Wunknown-warning-option") // OpenMesh\Core\Utils #include AZ_POP_DISABLE_WARNING +AZ_DECLARE_BUDGET(AzToolsFramework); + namespace OpenMesh { template<> @@ -80,40 +122,6 @@ namespace OpenMesh } }; - inline AZ::Vector3 normalize(AZ::Vector3& v) - { - v.Normalize(); - return v; - } - - inline float dot(const AZ::Vector3& v1, const AZ::Vector3& v2) - { - return v1.Dot(v2); - } - - inline float norm(const AZ::Vector3& v) - { - return v.GetLength(); - } - - inline AZ::Vector3 cross(const AZ::Vector3& v1, const AZ::Vector3& v2) - { - return v1.Cross(v2); - } - - inline AZ::Vector3 vectorize(AZ::Vector3& v, float s) - { - v = AZ::Vector3(s); - return v; - } - - inline void newell_norm(AZ::Vector3& n, const AZ::Vector3& a, const AZ::Vector3& b) - { - n.SetX(n.GetX() + (a.GetY() * b.GetZ())); - n.SetY(n.GetY() + (a.GetZ() * b.GetX())); - n.SetZ(n.GetZ() + (a.GetX() * b.GetY())); - } - template<> inline void vector_cast(const AZ::Vector3& src, OpenMesh::Vec3f& dst, GenProg::Int2Type<3> /*unused*/) { diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponent.cpp b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponent.cpp index 61796bde58..f18b69393c 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponent.cpp +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponent.cpp @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include @@ -31,7 +32,6 @@ #include #include #include -#include #include #include #include @@ -513,7 +513,7 @@ namespace WhiteBox WhiteBoxPathAtProjectRoot(GetEntity()->GetName(), ObjExtension); const QString fileFilter = AZStd::string::format("*.%s", ObjExtension).c_str(); - const QString absoluteSaveFilePath = QFileDialog::getSaveFileName( + const QString absoluteSaveFilePath = AzQtComponents::FileDialog::GetSaveFileName( nullptr, "Save As...", QString(initialAbsolutePathToExport.c_str()), fileFilter); const auto absoluteSaveFilePathUtf8 = absoluteSaveFilePath.toUtf8(); @@ -577,7 +577,7 @@ namespace WhiteBox { const QString fileFilter = AZStd::string::format("*.%s", Pipeline::WhiteBoxMeshAssetHandler::AssetFileExtension).c_str(); - const QString absolutePath = QFileDialog::getSaveFileName( + const QString absolutePath = AzQtComponents::FileDialog::GetSaveFileName( nullptr, "Save As Asset...", QString(initialAbsolutePath.c_str()), fileFilter); return AZStd::string(absolutePath.toUtf8()); diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentMode.cpp b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentMode.cpp index cd9e8090cd..13dc29599d 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentMode.cpp +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentMode.cpp @@ -397,7 +397,7 @@ namespace WhiteBox const auto edgeHandlesPair = Api::MeshUserEdgeHandles(*whiteBox); - const auto edgeHandles = [whiteBox, edgeSelectionMode, &edgeHandlesPair]() + const auto edgeHandles = [edgeSelectionMode, &edgeHandlesPair]() { switch (edgeSelectionMode) { diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeTypes.cpp b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeTypes.cpp index cbde5f4f4b..ff4961a55c 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeTypes.cpp +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeTypes.cpp @@ -11,6 +11,8 @@ #include #include +AZ_DECLARE_BUDGET(AzToolsFramework); + namespace WhiteBox { void DrawEdges( diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxTest.cpp b/Gems/WhiteBox/Code/Tests/WhiteBoxTest.cpp index 19258209dc..056c85512f 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxTest.cpp +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxTest.cpp @@ -1821,7 +1821,6 @@ namespace UnitTest Api::InitializeAsUnitTriangle(*m_whiteBox); - const auto vertexCount = Api::MeshVertexCount(*m_whiteBox); const auto vertexHandles = Api::MeshVertexHandles(*m_whiteBox); const auto vertexPositions = Api::MeshVertexPositions(*m_whiteBox); diff --git a/README.md b/README.md index a783139eef..1191a0f0ee 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ O3DE (Open 3D Engine) is an open-source, real-time, multi-platform 3D engine that enables developers and content creators to build AAA games, cinema-quality 3D worlds, and high-fidelity simulations without any fees or commercial obligations. ## Contribute -For information about contributing to Open 3D Engine, visit https://o3de.org/docs/contributing/ +For information about contributing to Open 3D Engine, visit [https://o3de.org/docs/contributing/](https://o3de.org/docs/contributing/). ## Download and Install @@ -14,7 +14,7 @@ Verify you have Git LFS installed by running the following command to print the git lfs --version ``` -If Git LFS is not installed, download and run the installer from: https://git-lfs.github.com/. +If Git LFS is not installed, download and run the installer from: [https://git-lfs.github.com/](https://git-lfs.github.com/). ### Install Git LFS hooks ``` @@ -29,78 +29,100 @@ git clone https://github.com/o3de/o3de.git ``` ## Building the Engine -### Build Requirements and redistributables + +### Build requirements and redistributables + +For the latest details and system requirements, refer to [System Requirements](https://o3de.org/docs/welcome-guide/requirements/) in the documentation. + #### Windows -* Visual Studio 2019 16.9.2 minimum (All versions supported, including Community): [https://visualstudio.microsoft.com/downloads/](https://visualstudio.microsoft.com/downloads/) +* Visual Studio 2019 16.9.2 minimum (All editions supported, including Community): [https://visualstudio.microsoft.com/downloads/](https://visualstudio.microsoft.com/downloads/) + * Check [System Requirements](https://o3de.org/docs/welcome-guide/requirements/) for other supported versions. * Install the following workloads: * Game Development with C++ * MSVC v142 - VS 2019 C++ x64/x86 * C++ 2019 redistributable update -* CMake 3.20 minimum: [https://cmake.org/download/](https://cmake.org/download/) +* CMake 3.20.5 minimum: [https://cmake.org/download/](https://cmake.org/download/) #### Optional -* Wwise version 2021.1.1.7601 minimum: [https://www.audiokinetic.com/download/](https://www.audiokinetic.com/download/) - * Note: This requires registration and installation of a client application to download - * Note: It is generally okay to use a more recent version of Wwise, but some SDK updates will require code changes - * Make sure to select the `SDK(C++)` component during installation of Wwise - * CMake can find the Wwise install location in two ways: - * The `LY_WWISE_INSTALL_PATH` CMake cache variable -- this is checked first - * The `WWISEROOT` environment variable which is set when installing Wwise SDK +* Wwise audio SDK + * For the latest version requirements and setup instructions, refer to the [Wwise Audio Engine Gem](https://o3de.org/docs/user-guide/gems/reference/audio/wwise/audio-engine-wwise/) reference in the documentation. -### Quick Start Build Steps +### Quick start engine setup -1. Create a writable folder to cache 3rd Party dependencies. You can also use this to store other redistributable SDKs. +To set up a project-centric source engine, complete the following steps. For other build options, refer to [Setting up O3DE from GitHub](https://o3de.org/docs/welcome-guide/setup/setup-from-github/) in the documentation. + +1. Create a writable folder to cache downloadable third-party packages. You can also use this to store other redistributable SDKs. -1. Install the following redistributables to the following: - - Visual Studio and VC++ redistributable can be installed to any location - - CMake can be installed to any location, as long as it's available in the system path +1. Install the following redistributables: + - Visual Studio and VC++ redistributable can be installed to any location. + - CMake can be installed to any location, as long as it's available in the system path. -1. Configure the source into a solution using this command line, replacing and <3rdParty cache path> to a path you've created: +1. Configure the engine source into a solution using this command line, replacing ``, ``, and `<3rdParty package path>` with the paths you've created: ``` - cmake -B -S -G "Visual Studio 16" -DLY_3RDPARTY_PATH=<3rdParty cache path> -DLY_UNITY_BUILD=ON -DLY_PROJECTS=AutomatedTesting + cmake -B -S -G "Visual Studio 16" -DLY_3RDPARTY_PATH=<3rdParty package path> ``` - > Note: Do not use trailing slashes for the <3rdParty cache path> + + Example: + ``` + cmake -B C:\o3de\build\windows_vs2019 -S C:\o3de -G "Visual Studio 16" -DLY_3RDPARTY_PATH=C:\o3de-packages + ``` + + > Note: Do not use trailing slashes for the <3rdParty package path>. 1. Alternatively, you can do this through the CMake GUI: - 1. Start `cmake-gui.exe` - 1. Select the local path of the repo under "Where is the source code" - 1. Select a path where to build binaries under "Where to build the binaries" - 1. Click "Configure" - 1. Wait for the key values to populate. Fill in the fields that are relevant, including `LY_3RDPARTY_PATH` and `LY_PROJECTS` - 1. Click "Generate" + 1. Start `cmake-gui.exe`. + 1. Select the local path of the repo under "Where is the source code". + 1. Select a path where to build binaries under "Where to build the binaries". + 1. Click **Add Entry** and add a cache entry for the <3rdParty package path> folder you created, using the following values: + 1. **Name:** LY_3RDPARTY_PATH + 1. **Type:** STRING + 1. **Value:** `<3rdParty package path>` + 1. Click **Configure**. + 1. Wait for the key values to populate. Update or add any additional fields that are needed for your project. + 1. Click **Generate**. -1. The configuration of the solution is complete. To build the Editor and AssetProcessor to binaries, run this command inside your repo: - ``` - cmake --build --target AutomatedTesting.GameLauncher AssetProcessor Editor --config profile -- /m - ``` - -1. This will compile after some time and binaries will be available in the build path you've specified - -### Setting up new projects -1. While still within the repo folder, register the engine with this command: +1. Register the engine with this command: ``` scripts\o3de.bat register --this-engine ``` -1. Setup new projects using the `o3de create-project` command. + +1. The configuration of the solution is complete. You are now ready to create a project and build the engine. + +For more details on the steps above, refer to [Setting up O3DE from GitHub](https://o3de.org/docs/welcome-guide/setup/setup-from-github/) in the documentation. + +### Setting up new projects and building the engine + +1. From the O3DE repo folder, set up a new project using the `o3de create-project` command. ``` - \scripts\o3de.bat create-project --project-path + scripts\o3de.bat create-project --project-path ``` -1. Register the engine to the project - ``` - \scripts\o3de.bat register --project-path - ``` -1. Once you're ready to build the project, run the same set of commands to configure and build: + +1. Configure a solution for your project. ``` cmake -B -S -G "Visual Studio 16" -DLY_3RDPARTY_PATH=<3rdParty cache path> - - cmake --build --target .GameLauncher --config profile -- /m ``` - -For a tutorial on project configuration, see [Creating Projects Using the Command Line](https://docs.o3de.org/docs/welcome-guide/get-started/project-config/creating-projects-using-cli) in the documentation. + + Example: + ``` + cmake -B C:\my-project\build\windows_vs2019 -S C:\my-project -G "Visual Studio 16" -DLY_3RDPARTY_PATH=C:\o3de-packages + ``` + + > Note: Do not use trailing slashes for the <3rdParty cache path>. + +1. Build the project, Asset Processor, and Editor to binaries by running this command inside your project: + ``` + cmake --build --target .GameLauncher Editor --config profile -- /m + ``` + + > Note: Your project name used in the build target is the same as the directory name of your project. + +This will compile after some time and binaries will be available in the project build path you've specified, under `bin/profile`. + +For a complete tutorial on project configuration, see [Creating Projects Using the Command Line Interface](https://o3de.org/docs/welcome-guide/create/creating-projects-using-cli/) in the documentation. ## License -For terms please see the LICENSE*.TXT file at the root of this distribution. +For terms please see the LICENSE*.TXT files at the root of this distribution. diff --git a/Registry/AssetProcessorPlatformConfig.setreg b/Registry/AssetProcessorPlatformConfig.setreg index f1cb49c9cf..1c09ef4e83 100644 --- a/Registry/AssetProcessorPlatformConfig.setreg +++ b/Registry/AssetProcessorPlatformConfig.setreg @@ -24,6 +24,9 @@ "Platform pc": { "tags": "tools,renderer,dx12,vulkan,null" }, + "Platform linux": { + "tags": "tools,renderer,vulkan,null" + }, "Platform android": { "tags": "android,mobile,renderer,vulkan" }, diff --git a/Registry/CMakeLists.txt b/Registry/CMakeLists.txt new file mode 100644 index 0000000000..f78df700e7 --- /dev/null +++ b/Registry/CMakeLists.txt @@ -0,0 +1,15 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +ly_install_directory(DIRECTORIES .) + +cmake_path(RELATIVE_PATH CMAKE_RUNTIME_OUTPUT_DIRECTORY BASE_DIRECTORY ${CMAKE_BINARY_DIR} OUTPUT_VARIABLE runtime_output_directory) + +ly_install_directory(DIRECTORIES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$/Registry + DESTINATION ${runtime_output_directory}/${PAL_PLATFORM_NAME}/$ +) diff --git a/Registry/bootstrap.setreg b/Registry/bootstrap.setreg index ccbf744232..3a15d59450 100644 --- a/Registry/bootstrap.setreg +++ b/Registry/bootstrap.setreg @@ -8,6 +8,7 @@ "ios_remote_filesystem": 0, "mac_remote_filesystem": 0, "assets": "pc", + "linux_assets": "linux", "android_assets": "android", "ios_assets": "ios", "mac_assets": "mac", @@ -16,6 +17,7 @@ "remote_port": 45643, "connect_to_remote": 0, "windows_connect_to_remote": 1, + "linux_connect_to_remote": 0, "provo_connect_to_remote": 1, "salem_connect_to_remote": 0, "jasper_connect_to_remote": 0, @@ -27,6 +29,7 @@ "salem_wait_for_connect": 0, "jasper_wait_for_connect": 0, "windows_wait_for_connect": 1, + "linux_wait_for_connect": 0, "android_wait_for_connect": 0, "ios_wait_for_connect": 0, "mac_wait_for_connect": 0, @@ -36,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/Registry/sceneassetimporter.setreg b/Registry/sceneassetimporter.setreg index bd7c4d0705..6fef3a40dc 100644 --- a/Registry/sceneassetimporter.setreg +++ b/Registry/sceneassetimporter.setreg @@ -10,6 +10,11 @@ ".fbx", ".stl" ] + }, + "MaterialConverter": + { + "Enable": true, + "DefaultMaterial": "Materials/Presets/PBR/default_grid.material" } } } diff --git a/Templates/CMakeLists.txt b/Templates/CMakeLists.txt new file mode 100644 index 0000000000..1a3a45b5ec --- /dev/null +++ b/Templates/CMakeLists.txt @@ -0,0 +1,16 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +ly_install_directory( + DIRECTORIES + AssetGem + DefaultGem + DefaultProject + MinimalProject + VERBATIM +) diff --git a/Templates/DefaultGem/Template/Code/CMakeLists.txt b/Templates/DefaultGem/Template/Code/CMakeLists.txt index 181491d504..f462e7f2d4 100644 --- a/Templates/DefaultGem/Template/Code/CMakeLists.txt +++ b/Templates/DefaultGem/Template/Code/CMakeLists.txt @@ -85,7 +85,6 @@ if(PAL_TRAIT_BUILD_HOST_TOOLS) NAME ${Name}.Editor GEM_MODULE NAMESPACE Gem AUTOMOC - OUTPUT_NAME Gem.${Name}.Editor FILES_CMAKE ${NameLower}_editor_shared_files.cmake INCLUDE_DIRECTORIES diff --git a/Templates/DefaultProject/Template/Code/CMakeLists.txt b/Templates/DefaultProject/Template/Code/CMakeLists.txt index 0c6f6553fb..7bbb9a0852 100644 --- a/Templates/DefaultProject/Template/Code/CMakeLists.txt +++ b/Templates/DefaultProject/Template/Code/CMakeLists.txt @@ -68,46 +68,12 @@ ly_create_alias(NAME ${Name}.Servers NAMESPACE Gem TARGETS Gem::${Name}) # Gem dependencies ################################################################################ -# The GameLauncher uses "Clients" gem variants: -ly_enable_gems( - PROJECT_NAME ${Name} GEM_FILE enabled_gems.cmake - TARGETS - ${Name}.GameLauncher - VARIANTS - Clients) - -if(PAL_TRAIT_BUILD_HOST_TOOLS) - - # the builder type applications use the "Builders" variants of the enabled gems. - ly_enable_gems( - PROJECT_NAME ${Name} GEM_FILE enabled_gems.cmake - TARGETS - AssetBuilder - AssetProcessor - AssetProcessorBatch - VARIANTS - Builders) - - # the Editor applications use the "Tools" variants of the enabled gems. - ly_enable_gems( - PROJECT_NAME ${Name} GEM_FILE enabled_gems.cmake - TARGETS - Editor - VARIANTS - Tools) -endif() +# Enable the specified list of gems from GEM_FILE or GEMS list for this specific project: +ly_enable_gems(PROJECT_NAME ${Name} GEM_FILE enabled_gems.cmake) if(PAL_TRAIT_BUILD_SERVER_SUPPORTED) # this property causes it to actually make a ServerLauncher. # if you don't want a Server application, you can remove this and the # following ly_enable_gems lines. set_property(GLOBAL APPEND PROPERTY LY_LAUNCHER_SERVER_PROJECTS ${Name}) - - # The ServerLauncher uses the "Servers" variants of enabled gems: - ly_enable_gems( - PROJECT_NAME ${Name} GEM_FILE enabled_gems.cmake - TARGETS - ${Name}.ServerLauncher - VARIANTS - Servers) endif() diff --git a/Templates/DefaultProject/Template/Config/default_aws_resource_mappings.json b/Templates/DefaultProject/Template/Config/default_aws_resource_mappings.json new file mode 100644 index 0000000000..79dca07d01 --- /dev/null +++ b/Templates/DefaultProject/Template/Config/default_aws_resource_mappings.json @@ -0,0 +1,6 @@ +{ + "AWSResourceMappings": {}, + "AccountId": "EMPTY", + "Region": "us-east-1", + "Version": "1.0.0" +} diff --git a/Templates/DefaultProject/Template/Registry/awscoreconfiguration.setreg b/Templates/DefaultProject/Template/Registry/awscoreconfiguration.setreg new file mode 100644 index 0000000000..c84ae4c3af --- /dev/null +++ b/Templates/DefaultProject/Template/Registry/awscoreconfiguration.setreg @@ -0,0 +1,10 @@ +{ + "Amazon": + { + "AWSCore": + { + "ProfileName": "default", + "ResourceMappingConfigFileName": "default_aws_resource_mappings.json" + } + } +} diff --git a/Templates/DefaultProject/template.json b/Templates/DefaultProject/template.json index 37409a11b4..6cf861a2ef 100644 --- a/Templates/DefaultProject/template.json +++ b/Templates/DefaultProject/template.json @@ -174,6 +174,12 @@ "isTemplated": false, "isOptional": false }, + { + "file": "Config/default_aws_resource_mappings.json", + "origin": "Config/default_aws_resource_mappings.json", + "isTemplated": false, + "isOptional": false + }, { "file": "EngineFinder.cmake", "origin": "EngineFinder.cmake", @@ -246,6 +252,12 @@ "isTemplated": true, "isOptional": false }, + { + "file": "Registry/awscoreconfiguration.setreg", + "origin": "Registry/awscoreconfiguration.setreg", + "isTemplated": false, + "isOptional": false + }, { "file": "Resources/LegacyLogoLauncher.bmp", "origin": "Resources/LegacyLogoLauncher.bmp", diff --git a/Templates/MinimalProject/Template/Code/CMakeLists.txt b/Templates/MinimalProject/Template/Code/CMakeLists.txt index 0c6f6553fb..5e646c0704 100644 --- a/Templates/MinimalProject/Template/Code/CMakeLists.txt +++ b/Templates/MinimalProject/Template/Code/CMakeLists.txt @@ -68,46 +68,13 @@ ly_create_alias(NAME ${Name}.Servers NAMESPACE Gem TARGETS Gem::${Name}) # Gem dependencies ################################################################################ -# The GameLauncher uses "Clients" gem variants: -ly_enable_gems( - PROJECT_NAME ${Name} GEM_FILE enabled_gems.cmake - TARGETS - ${Name}.GameLauncher - VARIANTS - Clients) +# Enable the specified list of gems from GEM_FILE or GEMS list for this specific project: +ly_enable_gems(PROJECT_NAME ${Name} GEM_FILE enabled_gems.cmake) -if(PAL_TRAIT_BUILD_HOST_TOOLS) - - # the builder type applications use the "Builders" variants of the enabled gems. - ly_enable_gems( - PROJECT_NAME ${Name} GEM_FILE enabled_gems.cmake - TARGETS - AssetBuilder - AssetProcessor - AssetProcessorBatch - VARIANTS - Builders) - - # the Editor applications use the "Tools" variants of the enabled gems. - ly_enable_gems( - PROJECT_NAME ${Name} GEM_FILE enabled_gems.cmake - TARGETS - Editor - VARIANTS - Tools) -endif() if(PAL_TRAIT_BUILD_SERVER_SUPPORTED) # this property causes it to actually make a ServerLauncher. # if you don't want a Server application, you can remove this and the # following ly_enable_gems lines. set_property(GLOBAL APPEND PROPERTY LY_LAUNCHER_SERVER_PROJECTS ${Name}) - - # The ServerLauncher uses the "Servers" variants of enabled gems: - ly_enable_gems( - PROJECT_NAME ${Name} GEM_FILE enabled_gems.cmake - TARGETS - ${Name}.ServerLauncher - VARIANTS - Servers) endif() diff --git a/Tools/CMakeLists.txt b/Tools/CMakeLists.txt new file mode 100644 index 0000000000..08958cd97e --- /dev/null +++ b/Tools/CMakeLists.txt @@ -0,0 +1,10 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +add_subdirectory(LyTestTools) +add_subdirectory(RemoteConsole) diff --git a/Tools/LyTestTools/CMakeLists.txt b/Tools/LyTestTools/CMakeLists.txt new file mode 100644 index 0000000000..5506099842 --- /dev/null +++ b/Tools/LyTestTools/CMakeLists.txt @@ -0,0 +1,14 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +# SPEC-1417 will investigate and fix this +if(NOT PAL_PLATFORM_NAME STREQUAL "Mac") + add_subdirectory(tests) +endif() + +ly_install_directory(DIRECTORIES .) diff --git a/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/editor_test.py b/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/editor_test.py index 7c60dd20d2..80a562977b 100644 --- a/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/editor_test.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/editor_test.py @@ -17,7 +17,7 @@ __test__ = False def pytest_addoption(parser): parser.addoption("--no-editor-batch", action="store_true", help="Don't batch multiple tests in single editor") parser.addoption("--no-editor-parallel", action="store_true", help="Don't run multiple editors in parallel") - parser.addoption("--parallel-editors", type=int, action="store", help="Override the number editors to run at the same time") + parser.addoption("--editors-parallel", type=int, action="store", help="Override the number editors to run at the same time") # Create a custom custom item collection if the class defines pytest_custom_makeitem function # This is used for automtically generating test functions with a custom collector diff --git a/Tools/LyTestTools/ly_test_tools/o3de/editor_test.py b/Tools/LyTestTools/ly_test_tools/o3de/editor_test.py index 0851c63681..781977cf33 100644 --- a/Tools/LyTestTools/ly_test_tools/o3de/editor_test.py +++ b/Tools/LyTestTools/ly_test_tools/o3de/editor_test.py @@ -59,11 +59,19 @@ class EditorTestBase(ABC): timeout = 180 # Test file that this test will run test_module = None + # Attach debugger when running the test, useful for debugging crashes. This should never be True on production. + # It's also recommended to switch to EditorSingleTest for debugging in isolation + attach_debugger = False + # Wait until a debugger is attached at the startup of the test, this is another way of debugging. + wait_for_debugger = False # Test that will be run alone in one editor class EditorSingleTest(EditorTestBase): + #- Configurable params -# # Extra cmdline arguments to supply to the editor for the test extra_cmdline_args = [] + # Whether to use null renderer, this will override use_null_renderer for the Suite if not None + use_null_renderer = None # Custom setup function, will run before the test @staticmethod @@ -114,8 +122,9 @@ class Result: class Pass(Base): @classmethod - def create(cls, output : str, editor_log : str): + def create(cls, test_spec : EditorTestBase, output : str, editor_log : str): r = cls() + r.test_spec = test_spec r.output = output r.editor_log = editor_log return r @@ -132,8 +141,9 @@ class Result: class Fail(Base): @classmethod - def create(cls, output, editor_log : str): + def create(cls, test_spec : EditorTestBase, output, editor_log : str): r = cls() + r.test_spec = test_spec r.output = output r.editor_log = editor_log return r @@ -154,9 +164,10 @@ class Result: class Crash(Base): @classmethod - def create(cls, output : str, ret_code : int, stacktrace : str, editor_log : str): + def create(cls, test_spec : EditorTestBase, output : str, ret_code : int, stacktrace : str, editor_log : str): r = cls() r.output = output + r.test_spec = test_spec r.ret_code = ret_code r.stacktrace = stacktrace r.editor_log = editor_log @@ -184,9 +195,10 @@ class Result: class Timeout(Base): @classmethod - def create(cls, output : str, time_secs : float, editor_log : str): + def create(cls, test_spec : EditorTestBase, output : str, time_secs : float, editor_log : str): r = cls() r.output = output + r.test_spec = test_spec r.time_secs = time_secs r.editor_log = editor_log return r @@ -207,9 +219,10 @@ class Result: class Unknown(Base): @classmethod - def create(cls, output : str, extra_info : str, editor_log : str): + def create(cls, test_spec : EditorTestBase, output : str, extra_info : str, editor_log : str): r = cls() r.output = output + r.test_spec = test_spec r.editor_log = editor_log r.extra_info = extra_info return r @@ -246,14 +259,24 @@ class EditorTestSuite(): ## Internal ## _TIMEOUT_CRASH_LOG = 20 # Maximum time (seconds) for waiting for a crash file, in secondss - _TEST_FAIL_RETCODE = 0xF # Return code for test failure - _asset_processor = None - _results = {} + _TEST_FAIL_RETCODE = 0xF # Return code for test failure @pytest.fixture(scope="class") - def editor_test_results(self, request): - results = {} - return results + def editor_test_data(self, request): + class TestData(): + def __init__(self): + self.results = {} # Dict of str(test_spec.__name__) -> Result + self.asset_processor = None + + test_data = TestData() + yield test_data + if test_data.asset_processor: + test_data.asset_processor.stop(1) + test_data.asset_processor.teardown() + test_data.asset_processor = None + editor_utils.kill_all_ly_processes(include_asset_processor=True) + else: + editor_utils.kill_all_ly_processes(include_asset_processor=False) class Runner(): def __init__(self, name, func, tests): @@ -315,26 +338,25 @@ class EditorTestSuite(): name = test_spec.__name__ def make_test_func(name, test_spec): @set_marks({"run_type" : "run_single"}) - def single_run(self, request, workspace, editor, editor_test_results, launcher_platform): + def single_run(self, request, workspace, editor, editor_test_data, launcher_platform): # only single tests are allowed to have setup/teardown, however we can have shared tests that # were explicitly set as single, for example via cmdline argument override is_single_test = issubclass(test_spec, EditorSingleTest) if is_single_test: # Setup step for wrap_run - wrap = test_spec.wrap_run(self, request, workspace, editor, editor_test_results, launcher_platform) + wrap = test_spec.wrap_run(self, request, workspace, editor, editor_test_data, launcher_platform) assert isinstance(wrap, types.GeneratorType), "wrap_run must return a generator, did you forget 'yield'?" next(wrap, None) # Setup step - test_spec.setup(self, request, workspace, editor, editor_test_results, launcher_platform) + test_spec.setup(self, request, workspace, editor, editor_test_data, launcher_platform) # Run - self._run_single_test(request, workspace, editor, editor_test_results, test_spec) + self._run_single_test(request, workspace, editor, editor_test_data, test_spec) if is_single_test: # Teardown - test_spec.teardown(self, request, workspace, editor, editor_test_results, launcher_platform) + test_spec.teardown(self, request, workspace, editor, editor_test_data, launcher_platform) # Teardown step for wrap_run next(wrap, None) return single_run - setattr(self.obj, name, make_test_func(name, test_spec)) f = make_test_func(name, test_spec) if hasattr(test_spec, "pytestmark"): f.pytestmark = test_spec.pytestmark @@ -348,8 +370,8 @@ class EditorTestSuite(): runner = EditorTestSuite.Runner(name, function, tests) def make_func(): @set_marks({"runner" : runner, "run_type" : "run_shared"}) - def shared_run(self, request, workspace, editor, editor_test_results, launcher_platform): - getattr(self, function.__name__)(request, workspace, editor, editor_test_results, runner.tests) + def shared_run(self, request, workspace, editor, editor_test_data, launcher_platform): + getattr(self, function.__name__)(request, workspace, editor, editor_test_data, runner.tests) return shared_run setattr(self.obj, name, make_func()) @@ -357,11 +379,11 @@ class EditorTestSuite(): for test_spec in tests: def make_func(test_spec): @set_marks({"runner" : runner, "test_spec" : test_spec, "run_type" : "result"}) - def result(self, request, workspace, editor, editor_test_results, launcher_platform): - # The runner must have filled the editor_test_results dict fixture for this test. + def result(self, request, workspace, editor, editor_test_data, launcher_platform): + # The runner must have filled the editor_test_data.results dict fixture for this test. # Hitting this assert could mean if there was an error executing the runner - assert test_spec.__name__ in editor_test_results, f"No run data for test: {test_spec.__name__}." - cls._report_result(test_spec.__name__, editor_test_results[test_spec.__name__]) + assert test_spec.__name__ in editor_test_data.results, f"No run data for test: {test_spec.__name__}." + cls._report_result(test_spec.__name__, editor_test_data.results[test_spec.__name__]) return result result_func = make_func(test_spec) @@ -481,41 +503,29 @@ class EditorTestSuite(): ) ] - def setup_class(cls): - cls._asset_processor = None - - def teardown_class(cls): - if cls._asset_processor: - cls._asset_processor.stop(1) - cls._asset_processor.teardown() - cls._asset_processor = None - editor_utils.kill_all_ly_processes(include_asset_processor=True) - else: - editor_utils.kill_all_ly_processes(include_asset_processor=False) - ### Utils ### # Prepares the asset processor for the test - def _prepare_asset_processor(self, workspace): + def _prepare_asset_processor(self, workspace, editor_test_data): try: # Start-up an asset processor if we are not running one # If another AP process exist, don't kill it, as we don't own it - if self._asset_processor is None: + if editor_test_data.asset_processor is None: if not process_utils.process_exists("AssetProcessor", ignore_extensions=True): - editor_utils.kill_all_ly_processes() - self._asset_processor = AssetProcessor(workspace) - self._asset_processor.start() + editor_utils.kill_all_ly_processes(include_asset_processor=True) + editor_test_data.asset_processor = AssetProcessor(workspace) + editor_test_data.asset_processor.start() else: editor_utils.kill_all_ly_processes(include_asset_processor=False) else: # Make sure the asset processor from before wasn't closed by accident - self._asset_processor.start() + editor_test_data.asset_processor.start() except Exception as ex: - self._asset_processor = None + editor_test_data.asset_processor = None raise ex - def _setup_editor_test(self, editor, workspace): - self._prepare_asset_processor(workspace) + def _setup_editor_test(self, editor, workspace, editor_test_data): + self._prepare_asset_processor(workspace, editor_test_data) editor_utils.kill_all_ly_processes(include_asset_processor=False) editor.configure_settings() @@ -548,22 +558,25 @@ class EditorTestSuite(): for test_spec in test_spec_list: name = editor_utils.get_module_filename(test_spec.test_module) if name not in found_jsons.keys(): - results[test_spec.__name__] = Result.Unknown.create(output, "Couldn't find any test run information on stdout", editor_log_content) + results[test_spec.__name__] = Result.Unknown.create(test_spec, output, "Couldn't find any test run information on stdout", editor_log_content) else: result = None json_result = found_jsons[name] json_output = json_result["output"] # Cut the editor log so it only has the output for this run - m = json_result["log_match"] - end = m.end() if test_spec != test_spec_list[-1] else -1 + if "log_match" in json_result: + m = json_result["log_match"] + end = m.end() if test_spec != test_spec_list[-1] else -1 + else: + end = -1 cur_log = editor_log_content[log_start : end] log_start = end if json_result["success"]: - result = Result.Pass.create(json_output, cur_log) + result = Result.Pass.create(test_spec, json_output, cur_log) else: - result = Result.Fail.create(json_output, cur_log) + result = Result.Fail.create(test_spec, json_output, cur_log) results[test_spec.__name__] = result return results @@ -584,8 +597,13 @@ class EditorTestSuite(): test_spec : EditorTestBase, cmdline_args : List[str] = []): test_cmdline_args = self.global_extra_cmdline_args + cmdline_args - if self.use_null_renderer: + test_spec_uses_null_renderer = getattr(test_spec, "use_null_renderer", None) + if test_spec_uses_null_renderer or (test_spec_uses_null_renderer is None and self.use_null_renderer): test_cmdline_args += ["-rhi=null"] + if test_spec.attach_debugger: + test_cmdline_args += ["--attach-debugger"] + if test_spec.wait_for_debugger: + test_cmdline_args += ["--wait-for-debugger"] # Cycle any old crash report in case it wasn't cycled properly editor_utils.cycle_crash_report(run_id, workspace) @@ -607,18 +625,18 @@ class EditorTestSuite(): editor_log_content = editor_utils.retrieve_editor_log_content(run_id, log_name, workspace) if return_code == 0: - test_result = Result.Pass.create(output, editor_log_content) + test_result = Result.Pass.create(test_spec, output, editor_log_content) else: has_crashed = return_code != EditorTestSuite._TEST_FAIL_RETCODE if has_crashed: - test_result = Result.Crash.create(output, return_code, editor_utils.retrieve_crash_output(run_id, workspace, self._TIMEOUT_CRASH_LOG), None) + test_result = Result.Crash.create(test_spec, output, return_code, editor_utils.retrieve_crash_output(run_id, workspace, self._TIMEOUT_CRASH_LOG), None) editor_utils.cycle_crash_report(run_id, workspace) else: - test_result = Result.Fail.create(output, editor_log_content) + test_result = Result.Fail.create(test_spec, output, editor_log_content) except WaitTimeoutError: editor.kill() editor_log_content = editor_utils.retrieve_editor_log_content(run_id, log_name, workspace) - test_result = Result.Timeout.create(output, test_spec.timeout, editor_log_content) + test_result = Result.Timeout.create(test_spec, output, test_spec.timeout, editor_log_content) editor_log_content = editor_utils.retrieve_editor_log_content(run_id, log_name, workspace) results = self._get_results_using_output([test_spec], output, editor_log_content) @@ -626,13 +644,17 @@ class EditorTestSuite(): return results # Starts an editor executable with a list of tests and returns a dict of the result of every test ran within that editor - # instance. In case of failure this function also parses the editor output to find out what specific tests that failed + # instance. In case of failure this function also parses the editor output to find out what specific tests failed def _exec_editor_multitest(self, request, workspace, editor, run_id : int, log_name : str, test_spec_list : List[EditorTestBase], cmdline_args=[]): test_cmdline_args = self.global_extra_cmdline_args + cmdline_args if self.use_null_renderer: test_cmdline_args += ["-rhi=null"] + if any([t.attach_debugger for t in test_spec_list]): + test_cmdline_args += ["--attach-debugger"] + if any([t.wait_for_debugger for t in test_spec_list]): + test_cmdline_args += ["--wait-for-debugger"] # Cycle any old crash report in case it wasn't cycled properly editor_utils.cycle_crash_report(run_id, workspace) @@ -658,63 +680,91 @@ class EditorTestSuite(): if return_code == 0: # No need to scrap the output, as all the tests have passed for test_spec in test_spec_list: - results[test_spec.__name__] = Result.Pass.create(output, editor_log_content) + results[test_spec.__name__] = Result.Pass.create(test_spec, output, editor_log_content) else: + # Scrap the output to attempt to find out which tests failed. + # This function should always populate the result list, if it didn't find it, it will have "Unknown" type of result results = self._get_results_using_output(test_spec_list, output, editor_log_content) + assert len(results) == len(test_spec_list), "bug in _get_results_using_output(), the number of results don't match the tests ran" + + # If the editor crashed, find out in which test it happened and update the results has_crashed = return_code != EditorTestSuite._TEST_FAIL_RETCODE if has_crashed: - crashed_test = None - for key, result in results.items(): + crashed_result = None + for test_spec_name, result in results.items(): if isinstance(result, Result.Unknown): - if not crashed_test: + if not crashed_result: + # The first test with "Unknown" result (no data in output) is likely the one that crashed crash_error = editor_utils.retrieve_crash_output(run_id, workspace, self._TIMEOUT_CRASH_LOG) editor_utils.cycle_crash_report(run_id, workspace) - results[key] = Result.Crash.create(output, return_code, crash_error, result.editor_log) - crashed_test = results[key] + results[test_spec_name] = Result.Crash.create(result.test_spec, output, return_code, crash_error, result.editor_log) + crashed_result = result else: - results[key] = Result.Unknown.create(output, f"This test has unknown result, test '{crashed_test.__name__}' crashed before this test could be executed", result.editor_log) + # If there are remaning "Unknown" results, these couldn't execute because of the crash, update with info about the offender + results[test_spec_name].extra_info = f"This test has unknown result, test '{crashed_result.test_spec.__name__}' crashed before this test could be executed" - except WaitTimeoutError: - results = self._get_results_using_output(test_spec_list, output, editor_log_content) - editor_log_content = editor_utils.retrieve_editor_log_content(run_id, log_name, workspace) + # if all the tests ran, the one that has caused the crash is the last test + if not crashed_result: + crash_error = editor_utils.retrieve_crash_output(run_id, workspace, self._TIMEOUT_CRASH_LOG) + editor_utils.cycle_crash_report(run_id, workspace) + results[test_spec_name] = Result.Crash.create(crashed_result.test_spec, output, return_code, crash_error, crashed_result.editor_log) + + + except WaitTimeoutError: editor.kill() - for key, result in results.items(): + + output = editor.get_output() + editor_log_content = editor_utils.retrieve_editor_log_content(run_id, log_name, workspace) + + # The editor timed out when running the tests, get the data from the output to find out which ones ran + results = self._get_results_using_output(test_spec_list, output, editor_log_content) + assert len(results) == len(test_spec_list), "bug in _get_results_using_output(), the number of results don't match the tests ran" + + # Similar logic here as crashes, the first test that has no result is the one that timed out + timed_out_result = None + for test_spec_name, result in results.items(): if isinstance(result, Result.Unknown): - results[key] = Result.Timeout.create(result.output, total_timeout, result.editor_log) + if not timed_out_result: + results[test_spec_name] = Result.Timeout.create(result.test_spec, result.output, self.timeout_editor_shared_test, result.editor_log) + timed_out_result = result + else: + # If there are remaning "Unknown" results, these couldn't execute because of the timeout, update with info about the offender + results[test_spec_name].extra_info = f"This test has unknown result, test '{timed_out_result.test_spec.__name__}' timed out before this test could be executed" + + # if all the tests ran, the one that has caused the timeout is the last test, as it didn't close the editor + if not timed_out_result: + results[test_spec_name] = Result.Timeout.create(timed_out_result.test_spec, results[test_spec_name].output, self.timeout_editor_shared_test, result.editor_log) return results - # Runs a single test with the given specs, used by the collector to register the test - def _run_single_test(self, request, workspace, editor, editor_test_results, test_spec : EditorTestBase): - self._setup_editor_test(editor, workspace) + # Runs a single test (one editor, one test) with the given specs + def _run_single_test(self, request, workspace, editor, editor_test_data, test_spec : EditorSingleTest): + self._setup_editor_test(editor, workspace, editor_test_data) extra_cmdline_args = [] if hasattr(test_spec, "extra_cmdline_args"): extra_cmdline_args = test_spec.extra_cmdline_args results = self._exec_editor_test(request, workspace, editor, 1, "editor_test.log", test_spec, extra_cmdline_args) - if not hasattr(self.__class__, "_results"): - self.__class__._results = {} - - editor_test_results.update(results) + editor_test_data.results.update(results) test_name, test_result = next(iter(results.items())) self._report_result(test_name, test_result) - # Runs a batch of tests in one single editor with the given spec list - def _run_batched_tests(self, request, workspace, editor, editor_test_results, test_spec_list : List[EditorTestBase], extra_cmdline_args=[]): + # Runs a batch of tests in one single editor with the given spec list (one editor, multiple tests) + def _run_batched_tests(self, request, workspace, editor, editor_test_data, test_spec_list : List[EditorSharedTest], extra_cmdline_args=[]): if not test_spec_list: return - self._setup_editor_test(editor, workspace) + self._setup_editor_test(editor, workspace, editor_test_data) results = self._exec_editor_multitest(request, workspace, editor, 1, "editor_test.log", test_spec_list, extra_cmdline_args) assert results is not None - editor_test_results.update(results) + editor_test_data.results.update(results) - # Runs multiple editors with one test on each editor - def _run_parallel_tests(self, request, workspace, editor, editor_test_results, test_spec_list : List[EditorTestBase], extra_cmdline_args=[]): + # Runs multiple editors with one test on each editor (multiple editor, one test each) + def _run_parallel_tests(self, request, workspace, editor, editor_test_data, test_spec_list : List[EditorSharedTest], extra_cmdline_args=[]): if not test_spec_list: return - self._setup_editor_test(editor, workspace) + self._setup_editor_test(editor, workspace, editor_test_data) parallel_editors = self._get_number_parallel_editors(request) assert parallel_editors > 0, "Must have at least one editor" @@ -744,14 +794,14 @@ class EditorTestSuite(): t.join() for result in results_per_thread: - editor_test_results.update(result) + editor_test_data.results.update(result) - # Runs multiple editors with a batch of tests for each editor - def _run_parallel_batched_tests(self, request, workspace, editor, editor_test_results, test_spec_list : List[EditorTestBase], extra_cmdline_args=[]): + # Runs multiple editors with a batch of tests for each editor (multiple editor, multiple tests each) + def _run_parallel_batched_tests(self, request, workspace, editor, editor_test_data, test_spec_list : List[EditorSharedTest], extra_cmdline_args=[]): if not test_spec_list: return - self._setup_editor_test(editor, workspace) + self._setup_editor_test(editor, workspace, editor_test_data) total_threads = self._get_number_parallel_editors(request) assert total_threads > 0, "Must have at least one editor" threads = [] @@ -781,11 +831,11 @@ class EditorTestSuite(): t.join() for result in results_per_thread: - editor_test_results.update(result) + editor_test_data.results.update(result) # Retrieves the number of parallel preference cmdline overrides def _get_number_parallel_editors(self, request): - parallel_editors_value = request.config.getoption("parallel_editors", None) + parallel_editors_value = request.config.getoption("--editors-parallel", None) if parallel_editors_value: return int(parallel_editors_value) diff --git a/Tools/LyTestTools/ly_test_tools/report/rad_telemetry.py b/Tools/LyTestTools/ly_test_tools/report/rad_telemetry.py deleted file mode 100755 index 865cc4671c..0000000000 --- a/Tools/LyTestTools/ly_test_tools/report/rad_telemetry.py +++ /dev/null @@ -1,98 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT - -Helpers for RAD Telemetry, currently only for Windows -""" - -import logging -import subprocess -import os - -import ly_test_tools.environment.process_utils as process_utils -from ly_test_tools import WINDOWS - -_RAD_DEFAULT_PORT = 4719 - -_CREATE_NEW_PROCESS_GROUP = 0x00000200 -_DETACHED_PROCESS = 0x00000008 -_WINDOWS_FLAGS = _CREATE_NEW_PROCESS_GROUP | _DETACHED_PROCESS - -RAD_TOOLS_SUBPATH = os.path.join("dev", "Gems", "RADTelemetry", "Tools") - -log = logging.getLogger(__name__) - - -def __set_firewall_rule(direction, port): - """ - Adds a Windows firewall rule if one does not yet exist. Requires administrator privilege. - - :param direction: Must be 'in' or 'out' - :param port: target port to open - :return: None - """ - - assert WINDOWS, "Only implemented for Windows platforms" - log.info(f"Setting firewall rule on port '{port}' for direction '{direction}'") - - show_rule = ['netsh', 'advfirewall', 'firewall', 'show', 'rule', 'name=RADTelemetry', f'dir={direction}'] - show_result = process_utils.safe_check_call(show_rule) - - if show_result == 0: - log.debug("Rule already exists") - else: - add_rule = ['netsh', 'advfirewall', 'firewall', 'add', 'rule', 'name=RADTelemetry', f'dir={direction}', - 'action=allow', 'protocol=TCP', f'localport={port}'] - process_utils.check_call(add_rule) - log.debug("Added new rule") - - -def set_firewall_rules(): - """ - Opens firewall ports necessary for a remote device to communicate with the RAD Telemetry server. - Requires administrator privilege. - - :return: None - """ - assert WINDOWS, "Only implemented for Windows platforms" - __set_firewall_rule(direction="in", port=_RAD_DEFAULT_PORT) - __set_firewall_rule(direction="out", port=_RAD_DEFAULT_PORT) - - -def launch_server(dev_path): - """ - Launches the RAD Telemetry server to collect telemetry captures. - - :param dev_path: path to the folder containing engineroot.txt - :return: None - """ - assert WINDOWS, "Only implemented for Windows platforms" - server_path = os.path.join(dev_path, RAD_TOOLS_SUBPATH, "tm_server.exe") - subprocess.Popen([server_path], creationflags=_WINDOWS_FLAGS, close_fds=True) - log.info(f"Launched RAD Server from {server_path}") - - -def terminate_servers(dev_path): - """ - Terminate the RAD Telemetry server and all related tools, important before collecting any of its captures - - :param dev_path: path to the folder containing engineroot.txt - :return: None - """ - assert WINDOWS, "Only implemented for Windows platforms" - rad_path = os.path.join(dev_path, RAD_TOOLS_SUBPATH) - process_utils.kill_processes_started_from(rad_path) - - -def get_capture_path(dev_path): - """ - Returns the path of the tm_server.exe file - - :return: path to the folder containing output for local servers - """ - assert WINDOWS, "Only implemented for Windows platforms" - get_folder_path = os.path.join(dev_path, RAD_TOOLS_SUBPATH, "tm_server.exe") - output = process_utils.check_output([get_folder_path]) - return output.strip() diff --git a/Tools/LyTestTools/tests/unit/test_rad_telemetry.py b/Tools/LyTestTools/tests/unit/test_rad_telemetry.py deleted file mode 100755 index 76db056215..0000000000 --- a/Tools/LyTestTools/tests/unit/test_rad_telemetry.py +++ /dev/null @@ -1,88 +0,0 @@ -""" -Copyright (c) Contributors to the Open 3D Engine Project. -For complete copyright and license terms please see the LICENSE at the root of this distribution. - -SPDX-License-Identifier: Apache-2.0 OR MIT - -Unit Tests for ~/ly_test_tools/report/rad_telemetry.py -""" - -import unittest.mock as mock -import os -import pytest - -import ly_test_tools.report.rad_telemetry -from ly_test_tools import WINDOWS - -pytestmark = pytest.mark.SUITE_smoke - - -_RAD_DEFAULT_PORT = 4719 - -_CREATE_NEW_PROCESS_GROUP = 0x00000200 -_DETACHED_PROCESS = 0x00000008 -_WINDOWS_FLAGS = _CREATE_NEW_PROCESS_GROUP | _DETACHED_PROCESS - -RAD_TOOLS_SUBPATH = os.path.join("dev", "Gems", "RADTelemetry", "Tools") - - -@pytest.mark.skipif( - not WINDOWS, - reason="tests.unit.test_rad_telemetry is restricted to the Windows platform.") -class TestRADTelemetry: - - @mock.patch('ly_test_tools.environment.process_utils.check_call') - @mock.patch('ly_test_tools.environment.process_utils.safe_check_call') - def test_SetFirewallRules_ShowRuleResultNotZero_CallsAddRule(self, mock_safe_call, mock_call): - ly_test_tools.report.rad_telemetry.set_firewall_rules() - - mock_safe_call.call_args_list = [ - mock.call(['netsh', 'advfirewall', 'firewall', 'show', 'rule', 'name=RADTelemetry', 'dir=in']), - mock.call(['netsh', 'advfirewall', 'firewall', 'show', 'rule', 'name=RADTelemetry', 'dir=out']), - ] - mock_call.call_args_list = [ - mock.call( - ['netsh', 'advfirewall', 'firewall', 'add', 'rule', 'name=RADTelemetry', 'dir=in', - 'action=allow', 'protocol=TCP', 'localport={}'.format(_RAD_DEFAULT_PORT)]), - mock.call( - ['netsh', 'advfirewall', 'firewall', 'add', 'rule', 'name=RADTelemetry', 'dir=out', - 'action=allow', 'protocol=TCP', 'localport={}'.format(_RAD_DEFAULT_PORT)]), - ] - - assert mock_call.call_count == 2 - assert mock_safe_call.call_count == 2 - - @mock.patch('ly_test_tools.environment.process_utils.check_call') - @mock.patch('ly_test_tools.environment.process_utils.safe_check_call') - def test_SetFirewallRules_ShowRuleResultEqualsZero_AddRuleNotCalled(self, mock_safe_call, mock_call): - mock_safe_call.return_value = 0 - ly_test_tools.report.rad_telemetry.set_firewall_rules() - - mock_call.assert_not_called() - assert mock_safe_call.call_count == 2 - - @mock.patch('subprocess.Popen') - def test_LaunchServer_ValidDevPath_PopenSuccess(self, mock_popen): - mock_server_path = os.path.join('dev_path', RAD_TOOLS_SUBPATH, "tm_server.exe") - - ly_test_tools.report.rad_telemetry.launch_server('dev_path') - - mock_popen.assert_called_once_with([mock_server_path], creationflags=_WINDOWS_FLAGS, close_fds=True) - - @mock.patch('ly_test_tools.environment.process_utils.kill_processes_started_from') - def test_TerminateServer_ValidDevPath_KillsRADProcess(self, mock_kill_process): - mock_rad_path = os.path.join('dev_path', RAD_TOOLS_SUBPATH) - - ly_test_tools.report.rad_telemetry.terminate_servers('dev_path') - - mock_kill_process.assert_called_once_with(mock_rad_path) - - @mock.patch('ly_test_tools.environment.process_utils.check_output') - def test_TerminateServer_ValidDevPath_KillsRADProcess(self, mock_call): - mock_get_folder_path = os.path.join('dev_path', RAD_TOOLS_SUBPATH, "tm_server.exe") - mock_call.return_value = 'test' - - under_test = ly_test_tools.report.rad_telemetry.get_capture_path('dev_path') - - mock_call.assert_called_once_with([mock_get_folder_path]) - assert under_test == 'test' diff --git a/cmake/3rdParty/FindRadTelemetry.cmake b/Tools/RemoteConsole/CMakeLists.txt similarity index 51% rename from cmake/3rdParty/FindRadTelemetry.cmake rename to Tools/RemoteConsole/CMakeLists.txt index 4af7423526..5504d9b46d 100644 --- a/cmake/3rdParty/FindRadTelemetry.cmake +++ b/Tools/RemoteConsole/CMakeLists.txt @@ -6,9 +6,11 @@ # # -ly_add_external_target( - NAME RadTelemetry - 3RDPARTY_ROOT_DIRECTORY "${LY_RAD_TELEMETRY_INSTALL_ROOT}" - VERSION 3.5.0.17 - INCLUDE_DIRECTORIES Include +# SPEC-1417 will investigate and fix this +if(NOT PAL_PLATFORM_NAME STREQUAL "Mac") + add_subdirectory(ly_remote_console/tests) +endif() + +ly_install_directory(DIRECTORIES . + EXCLUDE_PATTERNS tests ) diff --git a/Tools/RemoteConsole/ly_remote_console/ly_remote_console/remote_console_commands.py b/Tools/RemoteConsole/ly_remote_console/ly_remote_console/remote_console_commands.py index 872537bdca..559823c820 100755 --- a/Tools/RemoteConsole/ly_remote_console/ly_remote_console/remote_console_commands.py +++ b/Tools/RemoteConsole/ly_remote_console/ly_remote_console/remote_console_commands.py @@ -27,7 +27,8 @@ CONSOLE_MESSAGE_MAP = { 'COMMAND': BASE_MSG_TYPE + 5, 'AUTOCOMPLETELIST': BASE_MSG_TYPE + 6, 'AUTOCOMPLETELISTDONE': BASE_MSG_TYPE + 7, - 'GAMEPLAYEVENT': BASE_MSG_TYPE + 22 + 'GAMEPLAYEVENT': BASE_MSG_TYPE + 22, + 'CONNECTMESSAGE': BASE_MSG_TYPE + 25, } @@ -295,14 +296,7 @@ class RemoteConsole: self.handlers[key].set() continue - # The very first connection using the socket will return all of the auto complete items, turned off so no one - # wouldn't need to see them - elif message_type == CONSOLE_MESSAGE_MAP['AUTOCOMPLETELIST']: - pass - - # The after the autocompletelists finishes we will be ready to send console commands we determine that by - # looking at for an autocompletelistdone message - elif message_type == CONSOLE_MESSAGE_MAP['AUTOCOMPLETELISTDONE']: + elif message_type == CONSOLE_MESSAGE_MAP['CONNECTMESSAGE']: self.ready.set() # cleanup expect_log_line handers if the matching string was found or timeout happened. diff --git a/Tools/RemoteConsole/ly_remote_console/tests/unit/test_remote_console_commands.py b/Tools/RemoteConsole/ly_remote_console/tests/unit/test_remote_console_commands.py index 51a85f0413..9be0685874 100755 --- a/Tools/RemoteConsole/ly_remote_console/tests/unit/test_remote_console_commands.py +++ b/Tools/RemoteConsole/ly_remote_console/tests/unit/test_remote_console_commands.py @@ -141,11 +141,11 @@ class TestRemoteConsole(): @mock.patch('socket.socket', mock.MagicMock()) @mock.patch('ly_remote_console.remote_console_commands.threading', mock.MagicMock()) - def test_HandleMessage_AutoCompleteListDone_ReadySet(self): + def test_HandleMessage_ConnectMessage_ReadySet(self): rc_instance = remote_console.RemoteConsole() rc_instance.on_display = mock.MagicMock() rc_instance.ready = mock.MagicMock() - msg = b'70' # in python3 socket.recv returns byte array. 7 is AUTOCOMPLETELISTDONE + msg = b'I0' # in python3 socket.recv returns byte array. I is CONNECTMESSAGE rc_instance._handle_message(msg) diff --git a/cmake/3rdParty/Platform/Android/BuiltInPackages_android.cmake b/cmake/3rdParty/Platform/Android/BuiltInPackages_android.cmake index ab7432e09e..cbdca10af9 100644 --- a/cmake/3rdParty/Platform/Android/BuiltInPackages_android.cmake +++ b/cmake/3rdParty/Platform/Android/BuiltInPackages_android.cmake @@ -8,7 +8,7 @@ # shared by other platforms: ly_associate_package(PACKAGE_NAME md5-2.0-multiplatform TARGETS md5 PACKAGE_HASH 29e52ad22c78051551f78a40c2709594f0378762ae03b417adca3f4b700affdf) -ly_associate_package(PACKAGE_NAME RapidJSON-1.1.0-multiplatform TARGETS RapidJSON PACKAGE_HASH 18b0aef4e6e849389916ff6de6682ab9c591ebe15af6ea6017014453c1119ea1) +ly_associate_package(PACKAGE_NAME RapidJSON-1.1.0-rev1-multiplatform TARGETS RapidJSON PACKAGE_HASH 2f5e26ecf86c3b7a262753e7da69ac59928e78e9534361f3d00c1ad5879e4023) ly_associate_package(PACKAGE_NAME RapidXML-1.13-multiplatform TARGETS RapidXML PACKAGE_HASH 510b3c12f8872c54b34733e34f2f69dd21837feafa55bfefa445c98318d96ebf) ly_associate_package(PACKAGE_NAME cityhash-1.1-multiplatform TARGETS cityhash PACKAGE_HASH 0ace9e6f0b2438c5837510032d2d4109125845c0efd7d807f4561ec905512dd2) ly_associate_package(PACKAGE_NAME lz4-r128-multiplatform TARGETS lz4 PACKAGE_HASH d7b1d5651191db2c339827ad24f669d9d37754143e9173abc986184532f57c9d) @@ -27,4 +27,4 @@ ly_associate_package(PACKAGE_NAME googletest-1.8.1-rev4-android TARGETS goo ly_associate_package(PACKAGE_NAME googlebenchmark-1.5.0-rev2-android TARGETS GoogleBenchmark PACKAGE_HASH 20b46e572211a69d7d94ddad1c89ec37bb958711d6ad4025368ac89ea83078fb) ly_associate_package(PACKAGE_NAME libsamplerate-0.2.1-rev2-android TARGETS libsamplerate PACKAGE_HASH bf13662afe65d02bcfa16258a4caa9b875534978227d6f9f36c9cfa92b3fb12b) ly_associate_package(PACKAGE_NAME OpenSSL-1.1.1b-rev1-android TARGETS OpenSSL PACKAGE_HASH 4036d4019d722f0e1b7a1621bf60b5a17ca6a65c9c78fd8701cee1131eec8480) -ly_associate_package(PACKAGE_NAME zlib-1.2.11-rev1-android TARGETS zlib PACKAGE_HASH 832b163cae0cccbe4fddc5988f5725fac56ef7dba5bfe95bf8c71281fba2e12c) +ly_associate_package(PACKAGE_NAME zlib-1.2.11-rev2-android TARGETS zlib PACKAGE_HASH 85b730b97176772538cfcacd6b6aaf4655fc2d368d134d6dd55e02f28f183826) diff --git a/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake b/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake index 796e0beb32..0cbb799304 100644 --- a/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake +++ b/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake @@ -9,10 +9,9 @@ # shared by other platforms: ly_associate_package(PACKAGE_NAME ilmbase-2.3.0-rev4-multiplatform TARGETS ilmbase PACKAGE_HASH 97547fdf1fbc4d81b8ccf382261f8c25514ed3b3c4f8fd493f0a4fa873bba348) ly_associate_package(PACKAGE_NAME assimp-5.0.1-rev11-multiplatform TARGETS assimplib PACKAGE_HASH 1a9113788b893ef4a2ee63ac01eb71b981a92894a5a51175703fa225f5804dec) -ly_associate_package(PACKAGE_NAME squish-ccr-20150601-rev3-multiplatform TARGETS squish-ccr PACKAGE_HASH c878c6c0c705e78403c397d03f5aa7bc87e5978298710e14d09c9daf951a83b3) ly_associate_package(PACKAGE_NAME ASTCEncoder-2017_11_14-rev2-multiplatform TARGETS ASTCEncoder PACKAGE_HASH c240ffc12083ee39a5ce9dc241de44d116e513e1e3e4cc1d05305e7aa3bdc326) ly_associate_package(PACKAGE_NAME md5-2.0-multiplatform TARGETS md5 PACKAGE_HASH 29e52ad22c78051551f78a40c2709594f0378762ae03b417adca3f4b700affdf) -ly_associate_package(PACKAGE_NAME RapidJSON-1.1.0-multiplatform TARGETS RapidJSON PACKAGE_HASH 18b0aef4e6e849389916ff6de6682ab9c591ebe15af6ea6017014453c1119ea1) +ly_associate_package(PACKAGE_NAME RapidJSON-1.1.0-rev1-multiplatform TARGETS RapidJSON PACKAGE_HASH 2f5e26ecf86c3b7a262753e7da69ac59928e78e9534361f3d00c1ad5879e4023) ly_associate_package(PACKAGE_NAME RapidXML-1.13-multiplatform TARGETS RapidXML PACKAGE_HASH 510b3c12f8872c54b34733e34f2f69dd21837feafa55bfefa445c98318d96ebf) ly_associate_package(PACKAGE_NAME pybind11-2.4.3-rev2-multiplatform TARGETS pybind11 PACKAGE_HASH d8012f907b6c54ac990b899a0788280857e7c93a9595405a28114b48c354eb1b) ly_associate_package(PACKAGE_NAME cityhash-1.1-multiplatform TARGETS cityhash PACKAGE_HASH 0ace9e6f0b2438c5837510032d2d4109125845c0efd7d807f4561ec905512dd2) @@ -44,6 +43,8 @@ ly_associate_package(PACKAGE_NAME OpenSSL-1.1.1b-rev2-linux ly_associate_package(PACKAGE_NAME DirectXShaderCompilerDxc-1.6.2104-o3de-rev3-linux TARGETS DirectXShaderCompilerDxc PACKAGE_HASH 88c4a359325d749bc34090b9ac466424847f3b71ba0de15045cf355c17c07099) ly_associate_package(PACKAGE_NAME SPIRVCross-2021.04.29-rev1-linux TARGETS SPIRVCross PACKAGE_HASH 7889ee5460a688e9b910c0168b31445c0079d363affa07b25d4c8aeb608a0b80) ly_associate_package(PACKAGE_NAME azslc-1.7.23-rev2-linux TARGETS azslc PACKAGE_HASH 1ba84d8321a566d35a1e9aa7400211ba8e6d1c11c08e4be3c93e6e74b8f7aef1) -ly_associate_package(PACKAGE_NAME zlib-1.2.11-rev1-linux TARGETS zlib PACKAGE_HASH 6418e93b9f4e6188f3b62cbd3a7822e1c4398a716e786d1522b809a727d08ba9) +ly_associate_package(PACKAGE_NAME zlib-1.2.11-rev2-linux TARGETS zlib PACKAGE_HASH 16f3b9e11cda525efb62144f354c1cfc30a5def9eff020dbe49cb00ee7d8234f) +ly_associate_package(PACKAGE_NAME squish-ccr-deb557d-rev1-linux TARGETS squish-ccr PACKAGE_HASH 85fecafbddc6a41a27c5f59ed4a5dfb123a94cb4666782cf26e63c0a4724c530) +ly_associate_package(PACKAGE_NAME ISPCTexComp-36b80aa-rev1-linux TARGETS ISPCTexComp PACKAGE_HASH 065fd12abe4247dde247330313763cf816c3375c221da030bdec35024947f259) diff --git a/cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake b/cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake index ff222ee244..e18bb07772 100644 --- a/cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake +++ b/cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake @@ -9,10 +9,9 @@ # shared by other platforms: ly_associate_package(PACKAGE_NAME ilmbase-2.3.0-rev4-multiplatform TARGETS ilmbase PACKAGE_HASH 97547fdf1fbc4d81b8ccf382261f8c25514ed3b3c4f8fd493f0a4fa873bba348) ly_associate_package(PACKAGE_NAME assimp-5.0.1-rev11-multiplatform TARGETS assimplib PACKAGE_HASH 1a9113788b893ef4a2ee63ac01eb71b981a92894a5a51175703fa225f5804dec) -ly_associate_package(PACKAGE_NAME squish-ccr-20150601-rev3-multiplatform TARGETS squish-ccr PACKAGE_HASH c878c6c0c705e78403c397d03f5aa7bc87e5978298710e14d09c9daf951a83b3) ly_associate_package(PACKAGE_NAME ASTCEncoder-2017_11_14-rev2-multiplatform TARGETS ASTCEncoder PACKAGE_HASH c240ffc12083ee39a5ce9dc241de44d116e513e1e3e4cc1d05305e7aa3bdc326) ly_associate_package(PACKAGE_NAME md5-2.0-multiplatform TARGETS md5 PACKAGE_HASH 29e52ad22c78051551f78a40c2709594f0378762ae03b417adca3f4b700affdf) -ly_associate_package(PACKAGE_NAME RapidJSON-1.1.0-multiplatform TARGETS RapidJSON PACKAGE_HASH 18b0aef4e6e849389916ff6de6682ab9c591ebe15af6ea6017014453c1119ea1) +ly_associate_package(PACKAGE_NAME RapidJSON-1.1.0-rev1-multiplatform TARGETS RapidJSON PACKAGE_HASH 2f5e26ecf86c3b7a262753e7da69ac59928e78e9534361f3d00c1ad5879e4023) ly_associate_package(PACKAGE_NAME RapidXML-1.13-multiplatform TARGETS RapidXML PACKAGE_HASH 510b3c12f8872c54b34733e34f2f69dd21837feafa55bfefa445c98318d96ebf) ly_associate_package(PACKAGE_NAME pybind11-2.4.3-rev2-multiplatform TARGETS pybind11 PACKAGE_HASH d8012f907b6c54ac990b899a0788280857e7c93a9595405a28114b48c354eb1b) ly_associate_package(PACKAGE_NAME cityhash-1.1-multiplatform TARGETS cityhash PACKAGE_HASH 0ace9e6f0b2438c5837510032d2d4109125845c0efd7d807f4561ec905512dd2) @@ -42,4 +41,7 @@ ly_associate_package(PACKAGE_NAME googlebenchmark-1.5.0-rev2-mac ly_associate_package(PACKAGE_NAME OpenSSL-1.1.1b-rev1-mac TARGETS OpenSSL PACKAGE_HASH 28adc1c0616ac0482b2a9d7b4a3a3635a1020e87b163f8aba687c501cf35f96c) ly_associate_package(PACKAGE_NAME qt-5.15.2-rev5-mac TARGETS Qt PACKAGE_HASH 9d25918351898b308ded3e9e571fff6f26311b2071aeafd00dd5b249fdf53f7e) ly_associate_package(PACKAGE_NAME libsamplerate-0.2.1-rev2-mac TARGETS libsamplerate PACKAGE_HASH b912af40c0ac197af9c43d85004395ba92a6a859a24b7eacd920fed5854a97fe) -ly_associate_package(PACKAGE_NAME zlib-1.2.11-rev1-mac TARGETS zlib PACKAGE_HASH 7fd8a77b3598423d9d6be5f8c60d52aecf346ab4224f563a5282db283aa0da02) +ly_associate_package(PACKAGE_NAME zlib-1.2.11-rev2-mac TARGETS zlib PACKAGE_HASH 21714e8a6de4f2523ee92a7f52d51fbee29c5f37ced334e00dc3c029115b472e) +ly_associate_package(PACKAGE_NAME squish-ccr-deb557d-rev1-mac TARGETS squish-ccr PACKAGE_HASH 155bfbfa17c19a9cd2ef025de14c5db598f4290045d5b0d83ab58cb345089a77) +ly_associate_package(PACKAGE_NAME ISPCTexComp-36b80aa-rev1-mac TARGETS ISPCTexComp PACKAGE_HASH 8a4e93277b8face6ea2fd57c6d017bdb55643ed3d6387110bc5f6b3b884dd169) + diff --git a/cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake b/cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake index e4fcc768c6..305d1291e7 100644 --- a/cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake +++ b/cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake @@ -9,10 +9,9 @@ # shared by other platforms: ly_associate_package(PACKAGE_NAME ilmbase-2.3.0-rev4-multiplatform TARGETS ilmbase PACKAGE_HASH 97547fdf1fbc4d81b8ccf382261f8c25514ed3b3c4f8fd493f0a4fa873bba348) ly_associate_package(PACKAGE_NAME assimp-5.0.1-rev11-multiplatform TARGETS assimplib PACKAGE_HASH 1a9113788b893ef4a2ee63ac01eb71b981a92894a5a51175703fa225f5804dec) -ly_associate_package(PACKAGE_NAME squish-ccr-20150601-rev3-multiplatform TARGETS squish-ccr PACKAGE_HASH c878c6c0c705e78403c397d03f5aa7bc87e5978298710e14d09c9daf951a83b3) ly_associate_package(PACKAGE_NAME ASTCEncoder-2017_11_14-rev2-multiplatform TARGETS ASTCEncoder PACKAGE_HASH c240ffc12083ee39a5ce9dc241de44d116e513e1e3e4cc1d05305e7aa3bdc326) ly_associate_package(PACKAGE_NAME md5-2.0-multiplatform TARGETS md5 PACKAGE_HASH 29e52ad22c78051551f78a40c2709594f0378762ae03b417adca3f4b700affdf) -ly_associate_package(PACKAGE_NAME RapidJSON-1.1.0-multiplatform TARGETS RapidJSON PACKAGE_HASH 18b0aef4e6e849389916ff6de6682ab9c591ebe15af6ea6017014453c1119ea1) +ly_associate_package(PACKAGE_NAME RapidJSON-1.1.0-rev1-multiplatform TARGETS RapidJSON PACKAGE_HASH 2f5e26ecf86c3b7a262753e7da69ac59928e78e9534361f3d00c1ad5879e4023) ly_associate_package(PACKAGE_NAME RapidXML-1.13-multiplatform TARGETS RapidXML PACKAGE_HASH 510b3c12f8872c54b34733e34f2f69dd21837feafa55bfefa445c98318d96ebf) ly_associate_package(PACKAGE_NAME pybind11-2.4.3-rev2-multiplatform TARGETS pybind11 PACKAGE_HASH d8012f907b6c54ac990b899a0788280857e7c93a9595405a28114b48c354eb1b) ly_associate_package(PACKAGE_NAME cityhash-1.1-multiplatform TARGETS cityhash PACKAGE_HASH 0ace9e6f0b2438c5837510032d2d4109125845c0efd7d807f4561ec905512dd2) @@ -28,7 +27,6 @@ ly_associate_package(PACKAGE_NAME PVRTexTool-4.24.0-rev4-multiplatform # platform-specific: ly_associate_package(PACKAGE_NAME AWSGameLiftServerSDK-3.4.1-rev1-windows TARGETS AWSGameLiftServerSDK PACKAGE_HASH a0586b006e4def65cc25f388de17dc475e417dc1e6f9d96749777c88aa8271b0) -ly_associate_package(PACKAGE_NAME Blast-v1.1.7_rc2-9-geb169fe-rev1-windows TARGETS Blast PACKAGE_HASH 216df71f4ffaf4a6ea3f2e77e5f27d68f2325e717fbd1626b00c785b82cd1b67) ly_associate_package(PACKAGE_NAME DirectXShaderCompilerDxc-1.6.2104-o3de-rev3-windows TARGETS DirectXShaderCompilerDxc PACKAGE_HASH 803e10b94006b834cbbdd30f562a8ddf04174c2cb6956c8399ec164ef8418d1f) ly_associate_package(PACKAGE_NAME SPIRVCross-2021.04.29-rev1-windows TARGETS SPIRVCross PACKAGE_HASH 7d601ea9d625b1d509d38bd132a1f433d7e895b16adab76bac6103567a7a6817) ly_associate_package(PACKAGE_NAME freetype-2.10.4.14-windows TARGETS freetype PACKAGE_HASH 88dedc86ccb8c92f14c2c033e51ee7d828fa08eafd6475c6aa963938a99f4bf3) @@ -50,4 +48,6 @@ ly_associate_package(PACKAGE_NAME OpenMesh-8.1-rev1-windows ly_associate_package(PACKAGE_NAME civetweb-1.8-rev1-windows TARGETS civetweb PACKAGE_HASH 36d0e58a59bcdb4dd70493fb1b177aa0354c945b06c30416348fd326cf323dd4) ly_associate_package(PACKAGE_NAME OpenSSL-1.1.1b-rev2-windows TARGETS OpenSSL PACKAGE_HASH 9af1c50343f89146b4053101a7aeb20513319a3fe2f007e356d7ce25f9241040) ly_associate_package(PACKAGE_NAME Crashpad-0.8.0-rev1-windows TARGETS Crashpad PACKAGE_HASH d162aa3070147bc0130a44caab02c5fe58606910252caf7f90472bd48d4e31e2) -ly_associate_package(PACKAGE_NAME zlib-1.2.11-rev1-windows TARGETS zlib PACKAGE_HASH 6fb46a0ef8c8614cde3517b50fca47f2a6d1fd059b21f3b8ff13e635ca7f2fa6) +ly_associate_package(PACKAGE_NAME zlib-1.2.11-rev2-windows TARGETS zlib PACKAGE_HASH 9afab1d67641ed8bef2fb38fc53942da47f2ab339d9e77d3d20704a48af2da0b) +ly_associate_package(PACKAGE_NAME squish-ccr-deb557d-rev1-windows TARGETS squish-ccr PACKAGE_HASH 5c3d9fa491e488ccaf802304ad23b932268a2b2846e383f088779962af2bfa84) +ly_associate_package(PACKAGE_NAME ISPCTexComp-36b80aa-rev1-windows TARGETS ISPCTexComp PACKAGE_HASH b6fa6ea28a2808a9a5524c72c37789c525925e435770f2d94eb2d387360fa2d0) diff --git a/cmake/3rdParty/Platform/iOS/BuiltInPackages_ios.cmake b/cmake/3rdParty/Platform/iOS/BuiltInPackages_ios.cmake index ac7a7427ca..0574f38654 100644 --- a/cmake/3rdParty/Platform/iOS/BuiltInPackages_ios.cmake +++ b/cmake/3rdParty/Platform/iOS/BuiltInPackages_ios.cmake @@ -8,7 +8,7 @@ # shared by other platforms: ly_associate_package(PACKAGE_NAME md5-2.0-multiplatform TARGETS md5 PACKAGE_HASH 29e52ad22c78051551f78a40c2709594f0378762ae03b417adca3f4b700affdf) -ly_associate_package(PACKAGE_NAME RapidJSON-1.1.0-multiplatform TARGETS RapidJSON PACKAGE_HASH 18b0aef4e6e849389916ff6de6682ab9c591ebe15af6ea6017014453c1119ea1) +ly_associate_package(PACKAGE_NAME RapidJSON-1.1.0-rev1-multiplatform TARGETS RapidJSON PACKAGE_HASH 2f5e26ecf86c3b7a262753e7da69ac59928e78e9534361f3d00c1ad5879e4023) ly_associate_package(PACKAGE_NAME RapidXML-1.13-multiplatform TARGETS RapidXML PACKAGE_HASH 510b3c12f8872c54b34733e34f2f69dd21837feafa55bfefa445c98318d96ebf) ly_associate_package(PACKAGE_NAME cityhash-1.1-multiplatform TARGETS cityhash PACKAGE_HASH 0ace9e6f0b2438c5837510032d2d4109125845c0efd7d807f4561ec905512dd2) ly_associate_package(PACKAGE_NAME lz4-r128-multiplatform TARGETS lz4 PACKAGE_HASH d7b1d5651191db2c339827ad24f669d9d37754143e9173abc986184532f57c9d) @@ -28,4 +28,4 @@ ly_associate_package(PACKAGE_NAME googletest-1.8.1-rev4-ios TARGETS googlet ly_associate_package(PACKAGE_NAME googlebenchmark-1.5.0-rev2-ios TARGETS GoogleBenchmark PACKAGE_HASH c2ffaed2b658892b1bcf81dee4b44cd1cb09fc78d55584ef5cb8ab87f2d8d1ae) ly_associate_package(PACKAGE_NAME libsamplerate-0.2.1-rev2-ios TARGETS libsamplerate PACKAGE_HASH 7656b961697f490d4f9c35d2e61559f6fc38c32102e542a33c212cd618fc2119) ly_associate_package(PACKAGE_NAME OpenSSL-1.1.1b-rev1-ios TARGETS OpenSSL PACKAGE_HASH cd0dfce3086a7172777c63dadbaf0ac3695b676119ecb6d0614b5fb1da03462f) -ly_associate_package(PACKAGE_NAME zlib-1.2.11-rev1-ios TARGETS zlib PACKAGE_HASH 20bfccf3b98bd9a7d3506cf344ac48135035eb517752bf9bede1e821f163608d) +ly_associate_package(PACKAGE_NAME zlib-1.2.11-rev2-ios TARGETS zlib PACKAGE_HASH a59fc0f83a02c616b679799310e9d86fde84514c6d2acefa12c6def0ae4a880c) diff --git a/cmake/3rdParty/Platform/iOS/cmake_ios_files.cmake b/cmake/3rdParty/Platform/iOS/cmake_ios_files.cmake index dc02644f5b..10e3ad7ec2 100644 --- a/cmake/3rdParty/Platform/iOS/cmake_ios_files.cmake +++ b/cmake/3rdParty/Platform/iOS/cmake_ios_files.cmake @@ -8,6 +8,5 @@ set(FILES BuiltInPackages_ios.cmake - RadTelemetry_ios.cmake Wwise_ios.cmake ) diff --git a/cmake/3rdParty/cmake_files.cmake b/cmake/3rdParty/cmake_files.cmake index cf56031db6..5f67355965 100644 --- a/cmake/3rdParty/cmake_files.cmake +++ b/cmake/3rdParty/cmake_files.cmake @@ -10,7 +10,6 @@ set(FILES BuiltInPackages.cmake FindOpenGLInterface.cmake FindPIX.cmake - FindRadTelemetry.cmake FindVkValidation.cmake FindWwise.cmake ) diff --git a/cmake/Dependencies.cmake b/cmake/Dependencies.cmake index 3863cdc313..f40c72b540 100644 --- a/cmake/Dependencies.cmake +++ b/cmake/Dependencies.cmake @@ -35,7 +35,9 @@ function(ly_add_dependencies TARGET) if(TARGET ${TARGET}) # Target already created, add it ly_parse_third_party_dependencies("${extra_function_args}") - add_dependencies(${TARGET} ${extra_function_args}) + # Dependencies can only be added on non-alias target + ly_de_alias_target(${TARGET} de_aliased_target) + add_dependencies(${de_aliased_target} ${extra_function_args}) else() set_property(GLOBAL APPEND PROPERTY LY_DELAYED_DEPENDENCIES_${TARGET} ${extra_function_args}) endif() diff --git a/cmake/Findo3de.cmake b/cmake/Findo3de.cmake index b0d30f1dcc..26b3719d14 100644 --- a/cmake/Findo3de.cmake +++ b/cmake/Findo3de.cmake @@ -17,23 +17,27 @@ endfunction() o3de_current_file_path(current_path) -# Make sure we are matching LY_ENGINE_NAME_TO_USE with the current engine -file(READ ${current_path}/../engine.json engine_json) -set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${current_path}/../engine.json) +# Make sure the cmake configure dependency added here is a normalized path to engine.json, +# because later it's read again using a path like ${LY_ROOT_FOLDER}/engine.json, which +# is also normalized. They should match to avoid errors on some build systems. +cmake_path(SET engine_json_path NORMALIZE ${current_path}/../engine.json) +file(READ ${engine_json_path} engine_json) +set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${engine_json_path}) string(JSON this_engine_name ERROR_VARIABLE json_error GET ${engine_json} engine_name) if(json_error) - message(FATAL_ERROR "Unable to read key 'engine_name' from '${current_path}/../engine.json', error: ${json_error}") + message(FATAL_ERROR "Unable to read key 'engine_name' from '${engine_json_path}', error: ${json_error}") endif() +# Make sure we are matching LY_ENGINE_NAME_TO_USE with the current engine set(found_matching_engine FALSE) if(this_engine_name STREQUAL LY_ENGINE_NAME_TO_USE) set(found_matching_engine TRUE) endif() find_package_handle_standard_args(o3de - "Could not find an engine with matching ${LY_ENGINE_NAME_TO_USE}" - found_matching_engine + "Could not find an engine with matching ${LY_ENGINE_NAME_TO_USE}" + found_matching_engine ) macro(o3de_initialize) @@ -41,4 +45,4 @@ macro(o3de_initialize) set(LY_PROJECTS ${CMAKE_CURRENT_LIST_DIR}) o3de_current_file_path(current_path) add_subdirectory(${current_path}/.. o3de) -endmacro() \ No newline at end of file +endmacro() diff --git a/cmake/Gems.cmake b/cmake/Gems.cmake index bcb619fd8d..e01740c265 100644 --- a/cmake/Gems.cmake +++ b/cmake/Gems.cmake @@ -6,7 +6,13 @@ # # -# This file contains utility wrappers for dealing with the Gems system. +# This file contains utility wrappers for dealing with the Gems system. + +define_property(TARGET PROPERTY LY_PROJECT_NAME + BRIEF_DOCS "Name of the project, this target can use enabled gems from" + FULL_DOCS "If set, the when iterating over the enabled gems in ly_enabled_gems_delayed + only a project with that name can have it's enabled gem list added as a dependency to this target. + If the __NOPROJECT__ placeholder is associated with a list enabled gems, then it applies to this target regardless of this property value") # ly_create_alias # given an alias to create, and a list of one or more targets, @@ -34,7 +40,8 @@ function(ly_create_alias) # easy version - if its just one target and it exist at the time of this call, # we can directly get the target, and make both aliases, - # the namespaced and non namespaced one, point at it. + # the namespace and non namespace one, point at it. + set(create_interface_target TRUE) list(LENGTH ly_create_alias_TARGETS number_of_targets) if (number_of_targets EQUAL 1) if(TARGET ${ly_create_alias_TARGETS}) @@ -43,11 +50,7 @@ function(ly_create_alias) if (NOT TARGET ${ly_create_alias_NAME}) add_library(${ly_create_alias_NAME} ALIAS ${de_aliased_target_name}) endif() - # Store off the arguments needed used ly_create_alias into a DIRECTORY property - # This will be used to re-create the calls in the generated CMakeLists.txt in the INSTALL step - string(REPLACE ";" " " create_alias_args "${ly_create_alias_NAME},${ly_create_alias_NAMESPACE},${ly_create_alias_TARGETS}") - set_property(DIRECTORY APPEND PROPERTY LY_CREATE_ALIAS_ARGUMENTS "${ly_create_alias_NAME},${ly_create_alias_NAMESPACE},${ly_create_alias_TARGETS}") - return() + set(create_interface_target FALSE) endif() endif() @@ -55,41 +58,48 @@ function(ly_create_alias) # To actually achieve this we have to create an interface library with those dependencies, # then we have to create an alias to that target. # By convention we create one without a namespace then alias the namespaced one. - - if(TARGET ${ly_create_alias_NAME}) - message(FATAL_ERROR "Internal alias target already exists, cannot create an alias for it: ${ly_create_alias_NAME}\n" - "This could be a copy-paste error, where some part of the ly_create_alias call was changed but the other") - endif() - - add_library(${ly_create_alias_NAME} INTERFACE IMPORTED GLOBAL) - set_target_properties(${ly_create_alias_NAME} PROPERTIES GEM_MODULE TRUE) - - foreach(target_name ${ly_create_alias_TARGETS}) - if(TARGET ${target_name}) - ly_de_alias_target(${target_name} de_aliased_target_name) - if(NOT de_aliased_target_name) - message(FATAL_ERROR "Target not found in ly_create_alias call: ${target_name} - check your spelling of the target name") - endif() - else() - set(de_aliased_target_name ${target_name}) + if(create_interface_target) + if(TARGET ${ly_create_alias_NAME}) + message(FATAL_ERROR "Internal alias target already exists, cannot create an alias for it: ${ly_create_alias_NAME}\n" + "This could be a copy-paste error, where some part of the ly_create_alias call was changed but the other") endif() - list(APPEND final_targets ${de_aliased_target_name}) - endforeach() - - # add_dependencies must be called with at least one dependent target - if(final_targets) - ly_parse_third_party_dependencies("${final_targets}") - ly_add_dependencies(${ly_create_alias_NAME} ${final_targets}) - endif() - # now add the final alias: - add_library(${ly_create_alias_NAMESPACE}::${ly_create_alias_NAME} ALIAS ${ly_create_alias_NAME}) + add_library(${ly_create_alias_NAME} INTERFACE IMPORTED GLOBAL) + set_target_properties(${ly_create_alias_NAME} PROPERTIES GEM_MODULE TRUE) + + foreach(target_name ${ly_create_alias_TARGETS}) + if(TARGET ${target_name}) + ly_de_alias_target(${target_name} de_aliased_target_name) + if(NOT de_aliased_target_name) + message(FATAL_ERROR "Target not found in ly_create_alias call: ${target_name} - check your spelling of the target name") + endif() + else() + set(de_aliased_target_name ${target_name}) + endif() + list(APPEND final_targets ${de_aliased_target_name}) + endforeach() + + # add_dependencies must be called with at least one dependent target + if(final_targets) + ly_parse_third_party_dependencies("${final_targets}") + ly_add_dependencies(${ly_create_alias_NAME} ${final_targets}) + endif() + + # now add the final alias: + add_library(${ly_create_alias_NAMESPACE}::${ly_create_alias_NAME} ALIAS ${ly_create_alias_NAME}) + endif() # Store off the arguments used by ly_create_alias into a DIRECTORY property # This will be used to re-create the calls in the generated CMakeLists.txt in the INSTALL step - - # Replace the CMake list separator with a space to replicate the space separated TARGETS arguments - string(REPLACE ";" " " create_alias_args "${ly_create_alias_NAME},${ly_create_alias_NAMESPACE},${ly_create_alias_TARGETS}") + # Replace the CMake list separator with a space to replicate the space separated arguments + # A single create_alias_args variable encodes two values. The alias NAME used to check if the target exists + # and the ly_create_alias arguments to replace this function call + unset(create_alias_args) + list(APPEND create_alias_args "${ly_create_alias_NAME}," + NAME ${ly_create_alias_NAME} + NAMESPACE ${ly_create_alias_NAMESPACE} + TARGETS ${ly_create_alias_TARGETS}) + list(JOIN create_alias_args " " create_alias_args) set_property(DIRECTORY APPEND PROPERTY LY_CREATE_ALIAS_ARGUMENTS "${create_alias_args}") # Store the directory path in the GLOBAL property so that it can be accessed @@ -100,13 +110,54 @@ function(ly_create_alias) endif() endfunction() +# ly_set_gem_variant_to_load +# Associates a key, value entry of CMake target -> Gem variant +# \arg:TARGETS - list of Targets to associate with the Gem variant +# \arg:VARIANTS - Gem variant +function(ly_set_gem_variant_to_load) + set(options) + set(oneValueArgs) + set(multiValueArgs TARGETS VARIANTS) + + cmake_parse_arguments(ly_set_gem_variant_to_load "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) + + if (NOT ly_set_gem_variant_to_load_TARGETS) + message(FATAL_ERROR "You must provide at least 1 target to ${CMAKE_CURRENT_FUNCTION} using the TARGETS keyword") + endif() + + # Store a list of targets + foreach(target_name ${ly_set_gem_variant_to_load_TARGETS}) + # Append the target to the list of targets with variants if it has not been added + get_property(ly_targets_with_variants GLOBAL PROPERTY LY_TARGETS_WITH_GEM_VARIANTS) + if(NOT target_name IN_LIST ly_targets_with_variants) + set_property(GLOBAL APPEND PROPERTY LY_TARGETS_WITH_GEM_VARIANTS "${target_name}") + endif() + foreach(variant_name ${ly_set_gem_variant_to_load_VARIANTS}) + get_property(target_gem_variants GLOBAL PROPERTY LY_GEM_VARIANTS_"${target_name}") + if(NOT variant_name IN_LIST target_gem_variants) + set_property(GLOBAL APPEND PROPERTY LY_GEM_VARIANTS_"${target_name}" "${variant_name}") + endif() + endforeach() + endforeach() + + # Store of the arguments used to invoke this function in order to replicate the call in the generated CMakeLists.txt + # in the install layout + unset(set_gem_variant_args) + list(APPEND set_gem_variant_args + TARGETS ${ly_set_gem_variant_to_load_TARGETS} + VARIANTS ${ly_set_gem_variant_to_load_VARIANTS}) + # Replace the list separator with space to have it be stored as a single property element + list(JOIN set_gem_variant_args " " set_gem_variant_args) + set_property(DIRECTORY APPEND PROPERTY LY_SET_GEM_VARIANT_TO_LOAD_ARGUMENTS "${set_gem_variant_args}") +endfunction() + # ly_enable_gems # this function makes sure that the given gems, or gems listed in the variable ENABLED_GEMS # in the GEM_FILE name, are set as runtime dependencies (and thus loaded) for the given targets # in the context of the given project. # note that it can't do this immediately, so it saves the data for later processing. # Note: If you don't supply a project name, it will apply it across the board to all projects. -# this is useful in the case of "ly_add_gems being called for so called 'mandatory gems' inside the engine. +# this is useful in the case of "ly_enable_gems" being called for so called 'mandatory gems' inside the engine. # if you specify a gem name with a namespace, it will be used, otherwise it will assume Gem:: function(ly_enable_gems) set(options) @@ -115,23 +166,21 @@ function(ly_enable_gems) cmake_parse_arguments(ly_enable_gems "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) - if (NOT ly_enable_gems_TARGETS) - message(FATAL_ERROR "You must provide the targets to add gems to using the TARGETS keyword") - endif() - - if (NOT ly_enable_gems_PROJECT_NAME) message(VERBOSE "Note: ly_enable_gems called with no PROJECT_NAME name, applying to all projects: \n" - " - VARIANTS ${ly_enable_gems_VARIANTS} \n" - " - GEMS ${ly_enable_gems_GEMS} \n" - " - TARGETS ${ly_enable_gems_TARGETS} \n" + " - GEMS ${ly_enable_gems_GEMS} \n" " - GEM_FILE ${ly_enable_gems_GEM_FILE}") set(ly_enable_gems_PROJECT_NAME "__NOPROJECT__") # so that the token is not blank endif() - if (NOT ly_enable_gems_VARIANTS) - message(FATAL_ERROR "You must provide at least 1 variant of the gem modules (Editor, Server, Client, Builder) to " - "add to your targets, using the VARIANTS keyword") + # Backwards-Compatibility - Delegate any TARGETS and VARIANTS arguments to the ly_set_gem_variant_to_load + # command. That command is used to associate TARGETS with the list of Gem Variants they desire to use + if (ly_enable_gems_TARGETS AND ly_enable_gems_VARIANTS) + message(DEPRECATION "The TARGETS and VARIANTS arguments to \"${CMAKE_CURRENT_FUNCTION}\" is deprecated.\n" + "Please use the \"ly_set_gem_variant_to_load\" function directly to associate a Target with a Gem Variant.\n" + "This function will forward the TARGETS and VARIANTS arguments to \"ly_set_gem_variant_to_load\" for now," + " but this functionality will be removed.") + ly_set_gem_variant_to_load(TARGETS ${ly_enable_gems_TARGETS} VARIANTS ${ly_enable_gems_VARIANTS}) endif() if ((NOT ly_enable_gems_GEMS AND NOT ly_enable_gems_GEM_FILE) OR (ly_enable_gems_GEMS AND ly_enable_gems_GEM_FILE)) @@ -153,103 +202,126 @@ function(ly_enable_gems) endif() # all the actual work has to be done later. - foreach(target_name ${ly_enable_gems_TARGETS}) - foreach(variant_name ${ly_enable_gems_VARIANTS}) - set_property(GLOBAL APPEND PROPERTY LY_DELAYED_ENABLE_GEMS "${ly_enable_gems_PROJECT_NAME},${target_name},${variant_name}") - define_property(GLOBAL PROPERTY LY_DELAYED_ENABLE_GEMS_"${ly_enable_gems_PROJECT_NAME},${target_name},${variant_name}" - BRIEF_DOCS "List of gem names to evaluate variants against" FULL_DOCS "Names of gems that will be paired with the variant name - to determine if it is valid target that should be added as an application dynamic load dependency") - set_property(GLOBAL APPEND PROPERTY LY_DELAYED_ENABLE_GEMS_"${ly_enable_gems_PROJECT_NAME},${target_name},${variant_name}" ${ly_enable_gems_GEMS}) - endforeach() - endforeach() + set_property(GLOBAL APPEND PROPERTY LY_DELAYED_ENABLE_GEMS "${ly_enable_gems_PROJECT_NAME}") + define_property(GLOBAL PROPERTY LY_DELAYED_ENABLE_GEMS_"${ly_enable_gems_PROJECT_NAME}" + BRIEF_DOCS "List of gem names to evaluate variants against" FULL_DOCS "Names of gems that will be paired with the variant name + to determine if it is valid target that should be added as an application dynamic load dependency") + set_property(GLOBAL APPEND PROPERTY LY_DELAYED_ENABLE_GEMS_"${ly_enable_gems_PROJECT_NAME}" ${ly_enable_gems_GEMS}) # Store off the arguments used by ly_enable_gems into a DIRECTORY property # This will be used to re-create the ly_enable_gems call in the generated CMakeLists.txt at the INSTALL step # Replace the CMake list separator with a space to replicate the space separated TARGETS arguments if(NOT ly_enable_gems_PROJECT_NAME STREQUAL "__NOPROJECT__") - set(replicated_project_name ${ly_enable_gems_PROJECT_NAME}) + set(replicated_project_name PROJECT_NAME ${ly_enable_gems_PROJECT_NAME}) endif() # The GEM_FILE file is used to populate the GEMS argument via the ENABLED_GEMS variable in the file. # Furthermore the GEM_FILE itself is not copied over to the install layout, so make its argument entry blank and use the list of GEMS # stored in ly_enable_gems_GEMS - string(REPLACE ";" " " enable_gems_args "${replicated_project_name},${ly_enable_gems_GEMS},,${ly_enable_gems_VARIANTS},${ly_enable_gems_TARGETS}") + unset(enable_gems_args) + list(APPEND enable_gems_args + ${replicated_project_name} + GEMS ${ly_enable_gems_GEMS}) + list(JOIN enable_gems_args " " enable_gems_args) set_property(DIRECTORY APPEND PROPERTY LY_ENABLE_GEMS_ARGUMENTS "${enable_gems_args}") endfunction() + +function(ly_add_gem_dependencies_to_project_variants) + set(options) + set(oneValueArgs PROJECT_NAME TARGET VARIANT) + set(multiValueArgs GEM_DEPENDENCIES) + + cmake_parse_arguments(ly_add_gem_dependencies "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) + if (NOT ly_add_gem_dependencies_PROJECT_NAME) + message(FATAL_ERROR "Missing required PROJECT_NAME argument which is used to determine gem load prefix") + endif() + if (NOT ly_add_gem_dependencies_TARGET) + message(FATAL_ERROR "Missing required TARGET argument ") + endif() + if (NOT ly_add_gem_dependencies_VARIANT) + message(FATAL_ERROR "Missing required gem VARIANT argument needed to determine which gem variants to load for the target") + endif() + + if(${ly_add_gem_dependencies_PROJECT_NAME} STREQUAL "__NOPROJECT__") + # special case, apply to all + unset(PREFIX_CLAUSE) + else() + set(PREFIX_CLAUSE "PREFIX;${ly_add_gem_dependencies_PROJECT_NAME}") + endif() + + # apply the list of gem targets. Adding a gem really just means adding the appropriate dependency. + foreach(gem_name ${ly_add_gem_dependencies_GEM_DEPENDENCIES}) + set(gem_target ${gem_name}.${ly_add_gem_dependencies_VARIANT}) + + # if the target exists, add it. + if (TARGET ${gem_target}) + # Dealias actual target + ly_de_alias_target(${gem_target} dealiased_gem_target) + ly_add_target_dependencies( + ${PREFIX_CLAUSE} + TARGETS ${ly_add_gem_dependencies_TARGET} + DEPENDENT_TARGETS ${dealiased_gem_target}) + endif() + endforeach() +endfunction() + # call this before runtime dependencies are used to add any relevant targets # saved by the above function function(ly_enable_gems_delayed) - get_property(ly_delayed_enable_gems GLOBAL PROPERTY LY_DELAYED_ENABLE_GEMS) - foreach(project_target_variant ${ly_delayed_enable_gems}) - # we expect a colon separated list of - # PROJECT_NAME,target_name,variant_name - string(REPLACE "," ";" project_target_variant_list "${project_target_variant}") - list(LENGTH project_target_variant_list project_target_variant_length) - if(project_target_variant_length EQUAL 0) - continue() - endif() - - if(NOT project_target_variant_length EQUAL 3) - message(FATAL_ERROR "Invalid specification of gems, expected 'project','target','variant' and got ${project_target_variant}") - endif() - - list(POP_BACK project_target_variant_list variant) - list(POP_BACK project_target_variant_list target) - list(POP_BACK project_target_variant_list project) - - get_property(gem_dependencies GLOBAL PROPERTY LY_DELAYED_ENABLE_GEMS_"${project_target_variant}") - if (NOT gem_dependencies) - get_property(gem_dependencies_defined GLOBAL PROPERTY LY_DELAYED_ENABLE_GEMS_"${project_target_variant}" DEFINED) - if (gem_dependencies_defined) - # special case, if the LY_DELAYED_ENABLE_GEMS_"${project_target_variant}" property is DEFINED - # but empty, add an entry to the LY_DELAYED_LOAD_DEPENDENCIES to have the - # cmake_dependencies.*.setreg file for the (project, target) tuple to be regenerated - # This is needed if the ENABLED_GEMS list for a project goes from >0 to 0. In this case - # the cmake_dependencies would have a stale list of gems to load unless it is regenerated - get_property(delayed_load_target_set GLOBAL PROPERTY LY_DELAYED_LOAD_"${project},${target}" SET) - if(NOT delayed_load_target_set) - set_property(GLOBAL APPEND PROPERTY LY_DELAYED_LOAD_DEPENDENCIES "${project},${target}") - set_property(GLOBAL APPEND PROPERTY LY_DELAYED_LOAD_"${project},${target}" "") - endif() - endif() - # Continue to the next iteration loop regardless as there are no gem dependencies - continue() - endif() - - if(${project} STREQUAL "__NOPROJECT__") - # special case, apply to all - unset(PREFIX_CLAUSE) - else() - set(PREFIX_CLAUSE "PREFIX;${project}") - endif() + # Query the list of targets that are associated with a gem variant + get_property(targets_with_variants GLOBAL PROPERTY LY_TARGETS_WITH_GEM_VARIANTS) + # Query the projects that have made calls to ly_enable_gems + get_property(enable_gem_projects GLOBAL PROPERTY LY_DELAYED_ENABLE_GEMS) + foreach(target ${targets_with_variants}) if (NOT TARGET ${target}) - message(FATAL_ERROR "ly_enable_gems specified TARGET '${target}' but no such target was found.") + message(FATAL_ERROR "ly_set_gem_variant_to_load specified TARGET '${target}' but no such target was found.") endif() - # apply the list of gem targets. Adding a gem really just means adding the appropriate dependency. - foreach(gem_name ${gem_dependencies}) - # the gem name may already have a namespace. If it does, we use that one - ly_strip_target_namespace(TARGET ${gem_name} OUTPUT_VARIABLE unaliased_gem_name) - if (${unaliased_gem_name} STREQUAL ${gem_name}) - # if stripping a namespace had no effect, it had no namespace - # and we supply the default Gem:: namespace. - set(gem_name_with_namespace Gem::${gem_name}) - else() - # if stripping the namespace had an effect then we use the original - # with the namespace, instead of assuming Gem:: - set(gem_name_with_namespace ${gem_name}) + # Lookup if the target is scoped to a project + # In that case the target can only use gem targets that is + # - not project specific: i.e "__NOPROJECT__" + # - or specific to the project + get_property(target_project_association TARGET ${target} PROPERTY LY_PROJECT_NAME) + + foreach(project ${enable_gem_projects}) + if (target_project_association AND + (NOT (project STREQUAL "__NOPROJECT__") AND NOT (project STREQUAL target_project_association))) + # Skip adding the gem dependencies to this target if it is associated with a project + # and the current project doesn't match + continue() endif() - - # if the target exists, add it. - if (TARGET ${gem_name_with_namespace}.${variant}) - ly_add_target_dependencies( - ${PREFIX_CLAUSE} - TARGETS ${target} - DEPENDENT_TARGETS ${gem_name_with_namespace}.${variant} - ) + + get_property(gem_dependencies GLOBAL PROPERTY LY_DELAYED_ENABLE_GEMS_"${project}") + if (NOT gem_dependencies) + get_property(gem_dependencies_defined GLOBAL PROPERTY LY_DELAYED_ENABLE_GEMS_"${project}" DEFINED) + if (gem_dependencies_defined) + # special case, if the LY_DELAYED_ENABLE_GEMS_"${project_target_variant}" property is DEFINED + # but empty, add an entry to the LY_DELAYED_LOAD_DEPENDENCIES to have the + # cmake_dependencies.*.setreg file for the (project, target) tuple to be regenerated + # This is needed if the ENABLED_GEMS list for a project goes from >0 to 0. In this case + # the cmake_dependencies would have a stale list of gems to load unless it is regenerated + get_property(delayed_load_target_set GLOBAL PROPERTY LY_DELAYED_LOAD_"${project},${target}" SET) + if(NOT delayed_load_target_set) + set_property(GLOBAL APPEND PROPERTY LY_DELAYED_LOAD_DEPENDENCIES "${project},${target}") + set_property(GLOBAL APPEND PROPERTY LY_DELAYED_LOAD_"${project},${target}" "") + endif() + endif() + # Continue to the next iteration loop regardless as there are no gem dependencies + continue() endif() + + # Gather the Gem variants associated with this target and iterate over them to combine them with the enabled + # gems for the each project + get_property(target_gem_variants GLOBAL PROPERTY LY_GEM_VARIANTS_"${target}") + foreach(variant ${target_gem_variants}) + ly_add_gem_dependencies_to_project_variants( + PROJECT_NAME ${project} + TARGET ${target} + VARIANT ${variant} + GEM_DEPENDENCIES ${gem_dependencies}) + endforeach() endforeach() endforeach() endfunction() diff --git a/cmake/Install.cmake b/cmake/Install.cmake index 816fb2a372..34f316e31e 100644 --- a/cmake/Install.cmake +++ b/cmake/Install.cmake @@ -9,4 +9,116 @@ if(NOT INSTALLED_ENGINE) ly_get_absolute_pal_filename(pal_dir ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Platform/${PAL_PLATFORM_NAME}) include(${pal_dir}/Install_${PAL_PLATFORM_NAME_LOWERCASE}.cmake) -endif() \ No newline at end of file +endif() + +#! ly_install_directory: specifies a directory to be copied to the install layout at install time +# +# \arg:DIRECTORIES directories to install +# \arg:DESTINATION (optional) destination to install the directory to (relative to CMAKE_PREFIX_PATH) +# \arg:EXCLUDE_PATTERNS (optional) patterns to exclude +# \arg:VERBATIM (optional) copies the directories as they are, this excludes the default exclude patterns +# +# \notes: +# - refer to cmake's install(DIRECTORY documentation for more information +# - If the directory contains programs/scripts, exclude them from this call and add a specific ly_install_files with +# PROGRAMS set. This is necessary to set the proper execution permissions. +# - This function will automatically filter out __pycache__, *.egg-info, CMakeLists.txt, *.cmake files. If those files +# need to be installed, use ly_install_files. Use VERBATIM to exclude such filters. +# +function(ly_install_directory) + + set(options VERBATIM) + set(oneValueArgs DESTINATION) + set(multiValueArgs DIRECTORIES EXCLUDE_PATTERNS) + + cmake_parse_arguments(ly_install_directory "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) + + if(NOT ly_install_directory_DIRECTORIES) + message(FATAL_ERROR "You must provide at least a directory to install") + endif() + + foreach(directory ${ly_install_directory_DIRECTORIES}) + + cmake_path(ABSOLUTE_PATH directory) + + if(NOT ly_install_directory_DESTINATION) + # maintain the same structure relative to LY_ROOT_FOLDER + set(ly_install_directory_DESTINATION ${directory}) + if(${ly_install_directory_DESTINATION} STREQUAL ".") + set(ly_install_directory_DESTINATION ${CMAKE_CURRENT_LIST_DIR}) + else() + cmake_path(ABSOLUTE_PATH ly_install_directory_DESTINATION BASE_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}) + endif() + # take out the last directory since install asks for the destination of the folder, without including the fodler itself + cmake_path(GET ly_install_directory_DESTINATION PARENT_PATH ly_install_directory_DESTINATION) + cmake_path(RELATIVE_PATH ly_install_directory_DESTINATION BASE_DIRECTORY ${LY_ROOT_FOLDER}) + endif() + + unset(exclude_patterns) + if(ly_install_directory_EXCLUDE_PATTERNS) + foreach(exclude_pattern ${ly_install_directory_EXCLUDE_PATTERNS}) + list(APPEND exclude_patterns PATTERN ${exclude_pattern} EXCLUDE) + endforeach() + endif() + + if(NOT ly_install_directory_VERBATIM) + # Exclude cmake since that has to be generated + list(APPEND exclude_patterns PATTERN CMakeLists.txt EXCLUDE) + list(APPEND exclude_patterns PATTERN *.cmake EXCLUDE) + + # Exclude python-related things that dont need to be installed + list(APPEND exclude_patterns PATTERN __pycache__ EXCLUDE) + list(APPEND exclude_patterns PATTERN *.egg-info EXCLUDE) + endif() + + install(DIRECTORY ${directory} + DESTINATION ${ly_install_directory_DESTINATION} + COMPONENT ${CMAKE_INSTALL_DEFAULT_COMPONENT_NAME} # use the deafult for the time being + ${exclude_patterns} + ) + endforeach() + +endfunction() + +#! ly_install_files: specifies files to be copied to the install layout at install time +# +# \arg:FILES files to install +# \arg:DESTINATION destination to install the directory to (relative to CMAKE_PREFIX_PATH) +# \arg:PROGRAMS (optional) indicates if the files are programs that should be installed with EXECUTE permissions +# +# \notes: +# - refer to cmake's install(FILES/PROGRAMS documentation for more information +# +function(ly_install_files) + + set(options PROGRAMS) + set(oneValueArgs DESTINATION) + set(multiValueArgs FILES) + + cmake_parse_arguments(ly_install_files "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) + + if(NOT ly_install_files_FILES) + message(FATAL_ERROR "You must provide a list of files to install") + endif() + if(NOT ly_install_files_DESTINATION) + message(FATAL_ERROR "You must provide a destination to install files to") + endif() + + unset(files) + foreach(file ${ly_install_files_FILES}) + cmake_path(ABSOLUTE_PATH file) + list(APPEND files ${file}) + endforeach() + + if(ly_install_files_PROGRAMS) + set(install_type PROGRAMS) + else() + set(install_type FILES) + endif() + + install(${install_type} ${files} + DESTINATION ${ly_install_files_DESTINATION} + COMPONENT ${CMAKE_INSTALL_DEFAULT_COMPONENT_NAME} # use the default for the time being + ) + +endfunction() \ No newline at end of file diff --git a/cmake/LYPython.cmake b/cmake/LYPython.cmake index 21e220f1d8..eeb9f97a55 100644 --- a/cmake/LYPython.cmake +++ b/cmake/LYPython.cmake @@ -29,8 +29,8 @@ elseif (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Darwin" ) ly_set(LY_PYTHON_PACKAGE_HASH 3f65801894e4e44b5faa84dd85ef80ecd772dcf728cdd2d668a6e75978a32695) elseif (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Windows" ) ly_set(LY_PYTHON_VERSION 3.7.10) - ly_set(LY_PYTHON_PACKAGE_NAME python-3.7.10-rev1-windows) - ly_set(LY_PYTHON_PACKAGE_HASH 851383addea5c54b7c6398860d04606c1053f1157c2edd801ec3d47394f73136) + ly_set(LY_PYTHON_PACKAGE_NAME python-3.7.10-rev2-windows) + ly_set(LY_PYTHON_PACKAGE_HASH 06d97488a2dbabe832ecfa832a42d3e8a7163ba95e975f032727331b0f49d280) endif() # settings and globals diff --git a/cmake/LYWrappers.cmake b/cmake/LYWrappers.cmake index 1a8e805f91..8e5633b5e6 100644 --- a/cmake/LYWrappers.cmake +++ b/cmake/LYWrappers.cmake @@ -29,6 +29,20 @@ define_property(TARGET PROPERTY GEM_MODULE ]] ) +define_property(TARGET PROPERTY RUNTIME_DEPENDENCIES_DEPENDS + BRIEF_DOCS "Defines the dependencies the runtime dependencies of a target has" + FULL_DOCS [[ + Property which is queried through generator expressions at the moment + the target is declared so a custom command that will do the copies can + be generated later. Custom commands need to be declared in the same folder + the target is declared, however, runtime dependencies need all targets + to be declared, so it is done towards the end of CMake parsing. When + runtime dependencies are processed, this target property is filled so the + right dependencies are set for the custom command. + This property contains all the files that are going to be copied to the output + when the target gets built. + ]] +) #! ly_add_target: adds a target and provides parameters for the common configurations. # @@ -310,15 +324,53 @@ function(ly_add_target) set_property(GLOBAL APPEND PROPERTY LY_ALL_TARGET_DIRECTORIES ${CMAKE_CURRENT_SOURCE_DIR}) endif() + # Custom commands need to be declared in the same folder as the target that they use. + # Not all the targets will require runtime dependencies, but we will generate at least an + # empty file for them. set(runtime_dependencies_list SHARED MODULE EXECUTABLE APPLICATION) if(NOT ly_add_target_IMPORTED AND linking_options IN_LIST runtime_dependencies_list) - add_custom_command(TARGET ${ly_add_target_NAME} POST_BUILD - COMMAND ${CMAKE_COMMAND} -P ${CMAKE_BINARY_DIR}/runtime_dependencies/$/${ly_add_target_NAME}.cmake - DEPENDS ${CMAKE_BINARY_DIR}/runtime_dependencies/${ly_add_target_NAME}.cmake - MESSAGE "Copying runtime dependencies..." - VERBATIM - ) + get_property(is_multi_config_generator GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + # XCode generator doesnt support different source files per configuration, so we cannot have + # the runtime dependencies using file-tracking, instead, we will have them as a post build step + # Non-multi config generators like Ninja (not "Ninja Multi-Config"), Makefiles, etc have trouble to + # produce file-level dependencies per configuration, so we also default to use a post build step + if(NOT is_multi_config_generator OR CMAKE_GENERATOR MATCHES Xcode) + + add_custom_command(TARGET ${ly_add_target_NAME} POST_BUILD + COMMAND ${CMAKE_COMMAND} -P ${CMAKE_BINARY_DIR}/runtime_dependencies/$/${ly_add_target_NAME}.cmake + COMMENT "Copying ${ly_add_target_NAME} runtime dependencies to output..." + DEPENDS ${CMAKE_BINARY_DIR}/runtime_dependencies/${ly_add_target_NAME}.cmake + COMMENT "Copying runtime dependencies..." + VERBATIM + ) + + else() + + # the stamp file will be the one that triggers the execution of the custom rule. At the end + # of running the copy of runtime dependencies, the stamp file is touched so the timestamp is updated. + # Adding a config as part of the name since the stamp file is added to the VS project. + # Note the STAMP_OUTPUT_FILE need to match with the one used in runtime dependencies (e.g. RuntimeDependencies_common.cmake) + set(STAMP_OUTPUT_FILE ${CMAKE_BINARY_DIR}/runtime_dependencies/$/${ly_add_target_NAME}_$.stamp) + add_custom_command( + OUTPUT ${STAMP_OUTPUT_FILE} + DEPENDS "$>" + COMMAND ${CMAKE_COMMAND} -P ${CMAKE_BINARY_DIR}/runtime_dependencies/$/${ly_add_target_NAME}.cmake + COMMENT "Copying ${ly_add_target_NAME} runtime dependencies to output..." + VERBATIM + ) + + # Unfortunately the VS generator cannot deal with generation expressions as part of the file name, wrapping the + # stamp file on each configuration so it gets properly excluded by the generator + unset(stamp_files_per_config) + foreach(conf IN LISTS CMAKE_CONFIGURATION_TYPES) + set(stamp_file_conf ${CMAKE_BINARY_DIR}/runtime_dependencies/${conf}/${ly_add_target_NAME}_${conf}.stamp) + set_source_files_properties(${stamp_file_conf} PROPERTIES GENERATED TRUE SKIP_AUTOGEN TRUE) + list(APPEND stamp_files_per_config $<$:${stamp_file_conf}>) + endforeach() + target_sources(${ly_add_target_NAME} PRIVATE ${stamp_files_per_config}) + + endif() endif() diff --git a/cmake/LyAutoGen.cmake b/cmake/LyAutoGen.cmake index 4aec0f9726..2f5891d837 100644 --- a/cmake/LyAutoGen.cmake +++ b/cmake/LyAutoGen.cmake @@ -34,8 +34,8 @@ function(ly_add_autogen) add_custom_command( OUTPUT ${AUTOGEN_OUTPUTS} DEPENDS ${AZCG_DEPENDENCIES} - COMMAND ${CMAKE_COMMAND} -E echo "Running AutoGen for ${ly_add_autogen_NAME}" COMMAND ${LY_PYTHON_CMD} "${LY_ROOT_FOLDER}/cmake/AzAutoGen.py" "${CMAKE_BINARY_DIR}/Azcg/TemplateCache/" "${CMAKE_CURRENT_BINARY_DIR}/Azcg/Generated/" "${CMAKE_CURRENT_SOURCE_DIR}" "${AZCG_INPUTFILES}" "${ly_add_autogen_AUTOGEN_RULES}" + COMMENT "Running AutoGen for ${ly_add_autogen_NAME}" VERBATIM ) set_target_properties(${ly_add_autogen_NAME} PROPERTIES AUTOGEN_INPUT_FILES "${AZCG_INPUTFILES}") diff --git a/cmake/PAL.cmake b/cmake/PAL.cmake index 341df79f1a..67ed17b6d4 100644 --- a/cmake/PAL.cmake +++ b/cmake/PAL.cmake @@ -112,7 +112,8 @@ function(read_engine_restricted_path output_restricted_path) # Set manifest path to path in the user home directory set(manifest_path ${LY_ROOT_FOLDER}/engine.json) if(EXISTS ${manifest_path}) - o3de_restricted_path(${manifest_path} output_restricted_path) + o3de_restricted_path(${manifest_path} read_restricted_path) + set(${output_restricted_path} ${read_restricted_path} PARENT_SCOPE) endif() endfunction() @@ -133,16 +134,17 @@ ly_set(PAL_HOST_PLATFORM_NAME_LOWERCASE ${PAL_HOST_PLATFORM_NAME_LOWERCASE}) set(PAL_RESTRICTED_PLATFORMS) -string(LENGTH "${O3DE_ENGINE_RESTRICTED_PATH}" engine_restricted_length) file(GLOB pal_restricted_files ${O3DE_ENGINE_RESTRICTED_PATH}/*/cmake/PAL_*.cmake) foreach(pal_restricted_file ${pal_restricted_files}) - string(FIND ${pal_restricted_file} "/cmake/PAL" end) - if(${end} GREATER -1) - math(EXPR platform_length "${end} - ${engine_restricted_length} - 1") - math(EXPR platform_start "${engine_restricted_length} + 1") - string(SUBSTRING ${pal_restricted_file} ${platform_start} ${platform_length} platform) - list(APPEND PAL_RESTRICTED_PLATFORMS "${platform}") - endif() + # Get relative path from restricted root directory + cmake_path(RELATIVE_PATH pal_restricted_file BASE_DIRECTORY ${O3DE_ENGINE_RESTRICTED_PATH} OUTPUT_VARIABLE relative_pal_restricted_file) + # Split relative restricted path into path segments + string(REPLACE "/" ";" pal_restricted_segments ${relative_pal_restricted_file}) + # Retrieve the first path segment which should be the restricted platform + list(GET pal_restricted_segments 0 platform) + # Append the new restricted platform + string(TOLOWER ${platform} platform_lower) + list(APPEND PAL_RESTRICTED_PLATFORMS ${platform_lower}) endforeach() ly_set(PAL_RESTRICTED_PLATFORMS ${PAL_RESTRICTED_PLATFORMS}) @@ -186,11 +188,17 @@ function(ly_get_absolute_pal_filename out_name in_name) # Remove one path segment from the end of the current_object_path and prepend it to the list path_segments cmake_path(GET current_object_path PARENT_PATH parent_path) cmake_path(GET current_object_path FILENAME path_segment) - list(PREPEND path_segments_visited path_segment) + list(PREPEND path_segments_visited ${path_segment}) cmake_path(COMPARE current_object_path NOT_EQUAL parent_path is_prev_path_segment) cmake_path(SET current_object_path "${parent_path}") + set(is_prev_path_segment TRUE) while(is_prev_path_segment) + # Remove one path segment from the end of the current_object_path and prepend it to the list path_segments + cmake_path(GET current_object_path PARENT_PATH parent_path) + cmake_path(GET current_object_path FILENAME path_segment) + cmake_path(COMPARE current_object_path NOT_EQUAL parent_path is_prev_path_segment) + cmake_path(SET current_object_path "${parent_path}") # The Path is in a PAL structure # Decompose the path into sections before "Platform" and after "Platform" if(path_segment STREQUAL "Platform") @@ -205,21 +213,17 @@ function(ly_get_absolute_pal_filename out_name in_name) break() endif() - # Remove one path segment from the end of the current_object_path and prepend it to the list path_segments - cmake_path(GET current_object_path PARENT_PATH parent_path) - cmake_path(GET current_object_path FILENAME path_segment) - list(PREPEND path_segments_visited path_segment) - cmake_path(COMPARE current_object_path NOT_EQUAL parent_path is_prev_path_segment) - cmake_path(SET current_object_path "${parent_path}") + list(PREPEND path_segments_visited ${path_segment}) endwhile() # Compose a candidate restricted path and examine if it exists - cmake_path(APPEND object_restricted_path ${pre_platform_paths} "Platform" ${post_platform_paths} + cmake_path(APPEND ${pre_platform_paths} "Platform" ${post_platform_paths} OUTPUT_VARIABLE candidate_PAL_path) if(NOT EXISTS ${candidate_PAL_path}) - if("${candidate_platform_name}" IN_LIST PAL_RESTRICTED_PLATFORMS) + string(TOLOWER ${candidate_platform_name} candidate_platform_name_lower) + if("${candidate_platform_name_lower}" IN_LIST PAL_RESTRICTED_PLATFORMS) cmake_path(APPEND object_restricted_path ${candidate_platform_name} ${object_name} - ${pre_platform_paths} ${post_platform_paths} OUTPUT_VARIABLE candidate_PAL_path) + ${pre_platform_paths} OUTPUT_VARIABLE candidate_PAL_path) endif() endif() if(EXISTS ${candidate_PAL_path}) @@ -227,6 +231,7 @@ function(ly_get_absolute_pal_filename out_name in_name) endif() endif() endif() + cmake_path(ABSOLUTE_PATH full_name BASE_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}) set(${out_name} ${full_name} PARENT_SCOPE) endfunction() diff --git a/cmake/Platform/Common/Clang/Configurations_clang.cmake b/cmake/Platform/Common/Clang/Configurations_clang.cmake index 94584e342f..02a94f4e72 100644 --- a/cmake/Platform/Common/Clang/Configurations_clang.cmake +++ b/cmake/Platform/Common/Clang/Configurations_clang.cmake @@ -18,28 +18,13 @@ ly_append_configurations_options( # Disabled warnings (please do not disable any others without first consulting ly-warnings) -Wrange-loop-analysis - -Wno-unknown-warning-option - "-Wno-#pragma-messages" - -Wno-absolute-value - -Wno-dynamic-class-memaccess + -Wno-unknown-warning-option # used as a way to mark warnings that are MSVC only -Wno-format-security -Wno-inconsistent-missing-override - -Wno-invalid-offsetof - -Wno-multichar -Wno-parentheses -Wno-reorder - -Wno-self-assign -Wno-switch - -Wno-tautological-compare -Wno-undefined-var-template - -Wno-unknown-pragmas - -Wno-unused-function - -Wno-unused-private-field - -Wno-unused-value - -Wno-unused-variable - -Wno-unused-lambda-capture - # Workaround for compiler seeing file case differently from what OS show in console. - -Wno-nonportable-include-path COMPILATION_DEBUG -O0 # No optimization diff --git a/cmake/Platform/Common/Install_common.cmake b/cmake/Platform/Common/Install_common.cmake index 2b56a1f0b4..5010760fad 100644 --- a/cmake/Platform/Common/Install_common.cmake +++ b/cmake/Platform/Common/Install_common.cmake @@ -138,16 +138,20 @@ function(ly_setup_target OUTPUT_CONFIGURED_TARGET ALIAS_TARGET_NAME absolute_tar string(REPLACE "_LIBRARY" "" TARGET_TYPE_PLACEHOLDER ${target_type}) # For HEADER_ONLY libs we end up generating "INTERFACE" libraries, need to specify HEADERONLY instead string(REPLACE "INTERFACE" "HEADERONLY" TARGET_TYPE_PLACEHOLDER ${TARGET_TYPE_PLACEHOLDER}) - if(TARGET_TYPE_PLACEHOLDER STREQUAL "MODULE") + # In non-monolithic mode, gem targets are MODULE libraries, In monolithic mode gem targets are STATIC libraries + set(GEM_LIBRARY_TYPES "MODULE" "STATIC") + if(TARGET_TYPE_PLACEHOLDER IN_LIST GEM_LIBRARY_TYPES) get_target_property(gem_module ${TARGET_NAME} GEM_MODULE) if(gem_module) set(TARGET_TYPE_PLACEHOLDER "GEM_MODULE") endif() endif() + string(REPEAT " " 12 PLACEHOLDER_INDENT) get_target_property(COMPILE_DEFINITIONS_PLACEHOLDER ${TARGET_NAME} INTERFACE_COMPILE_DEFINITIONS) if(COMPILE_DEFINITIONS_PLACEHOLDER) - string(REPLACE ";" "\n" COMPILE_DEFINITIONS_PLACEHOLDER "${COMPILE_DEFINITIONS_PLACEHOLDER}") + set(COMPILE_DEFINITIONS_PLACEHOLDER "${PLACEHOLDER_INDENT}${COMPILE_DEFINITIONS_PLACEHOLDER}") + list(JOIN COMPILE_DEFINITIONS_PLACEHOLDER "\n${PLACEHOLDER_INDENT}" COMPILE_DEFINITIONS_PLACEHOLDER) else() unset(COMPILE_DEFINITIONS_PLACEHOLDER) endif() @@ -159,25 +163,28 @@ function(ly_setup_target OUTPUT_CONFIGURED_TARGET ALIAS_TARGET_NAME absolute_tar if(include_genex_expr STREQUAL include) # only for cases where there are no generation expressions # Make the include path relative to the source dir where the target will be declared cmake_path(RELATIVE_PATH include BASE_DIRECTORY ${absolute_target_source_dir} OUTPUT_VARIABLE target_include) - string(APPEND INCLUDE_DIRECTORIES_PLACEHOLDER "${target_include}\n") + string(APPEND INCLUDE_DIRECTORIES_PLACEHOLDER "${PLACEHOLDER_INDENT}${target_include}\n") endif() endforeach() endif() + string(REPEAT " " 8 PLACEHOLDER_INDENT) get_target_property(RUNTIME_DEPENDENCIES_PLACEHOLDER ${TARGET_NAME} MANUALLY_ADDED_DEPENDENCIES) if(RUNTIME_DEPENDENCIES_PLACEHOLDER) # not found properties return the name of the variable with a "-NOTFOUND" at the end, here we set it to empty if not found - string(REPLACE ";" "\n" RUNTIME_DEPENDENCIES_PLACEHOLDER "${RUNTIME_DEPENDENCIES_PLACEHOLDER}") + set(RUNTIME_DEPENDENCIES_PLACEHOLDER "${PLACEHOLDER_INDENT}${RUNTIME_DEPENDENCIES_PLACEHOLDER}") + list(JOIN RUNTIME_DEPENDENCIES_PLACEHOLDER "\n${PLACEHOLDER_INDENT}" RUNTIME_DEPENDENCIES_PLACEHOLDER) else() unset(RUNTIME_DEPENDENCIES_PLACEHOLDER) endif() + string(REPEAT " " 12 PLACEHOLDER_INDENT) get_target_property(inteface_build_dependencies_props ${TARGET_NAME} INTERFACE_LINK_LIBRARIES) unset(INTERFACE_BUILD_DEPENDENCIES_PLACEHOLDER) if(inteface_build_dependencies_props) foreach(build_dependency ${inteface_build_dependencies_props}) # Skip wrapping produced when targets are not created in the same directory if(NOT ${build_dependency} MATCHES "^::@") - list(APPEND INTERFACE_BUILD_DEPENDENCIES_PLACEHOLDER "${build_dependency}") + list(APPEND INTERFACE_BUILD_DEPENDENCIES_PLACEHOLDER "${PLACEHOLDER_INDENT}${build_dependency}") endif() endforeach() endif() @@ -187,12 +194,19 @@ function(ly_setup_target OUTPUT_CONFIGURED_TARGET ALIAS_TARGET_NAME absolute_tar foreach(build_dependency ${private_build_dependencies_props}) # Skip wrapping produced when targets are not created in the same directory if(NOT ${build_dependency} MATCHES "^::@") - list(APPEND INTERFACE_BUILD_DEPENDENCIES_PLACEHOLDER "${build_dependency}") + list(APPEND INTERFACE_BUILD_DEPENDENCIES_PLACEHOLDER "${PLACEHOLDER_INDENT}${build_dependency}") endif() endforeach() endif() list(REMOVE_DUPLICATES INTERFACE_BUILD_DEPENDENCIES_PLACEHOLDER) - string(REPLACE ";" "\n" INTERFACE_BUILD_DEPENDENCIES_PLACEHOLDER "${INTERFACE_BUILD_DEPENDENCIES_PLACEHOLDER}") + list(JOIN INTERFACE_BUILD_DEPENDENCIES_PLACEHOLDER "\n" INTERFACE_BUILD_DEPENDENCIES_PLACEHOLDER) + + string(REPEAT " " 8 PLACEHOLDER_INDENT) + # If a target has an LY_PROJECT_NAME property, forward that property to new target + get_target_property(target_project_association ${TARGET_NAME} LY_PROJECT_NAME) + if(target_project_association) + list(APPEND TARGET_PROPERTIES_PLACEHOLDER "${PLACEHOLDER_INDENT}LY_PROJECT_NAME ${target_project_association}") + endif() # If the target is an executable/application, add a custom target so we can debug the target in project-centric workflow if(should_create_helper) @@ -288,44 +302,9 @@ function(ly_setup_subdirectory absolute_target_source_dir) string(APPEND all_configured_targets "${configured_target}") endforeach() - # Replicate the ly_create_alias() calls based on the SOURCE_DIR for each target that generates an installed CMakeLists.txt - string(JOIN "\n" create_alias_template - "if(NOT TARGET @ALIAS_NAME@)" - " ly_create_alias(NAME @ALIAS_NAME@ NAMESPACE @ALIAS_NAMESPACE@ TARGETS @ALIAS_TARGETS@)" - "endif()" - "" - ) - get_property(create_alias_commands_arg_list DIRECTORY ${absolute_target_source_dir} PROPERTY LY_CREATE_ALIAS_ARGUMENTS) - foreach(create_alias_single_command_arg_list ${create_alias_commands_arg_list}) - # Split the ly_create_alias arguments back out based on commas - string(REPLACE "," ";" create_alias_single_command_arg_list "${create_alias_single_command_arg_list}") - list(POP_FRONT create_alias_single_command_arg_list ALIAS_NAME) - list(POP_FRONT create_alias_single_command_arg_list ALIAS_NAMESPACE) - # The rest of the list are the target dependencies - set(ALIAS_TARGETS ${create_alias_single_command_arg_list}) - string(CONFIGURE "${create_alias_template}" create_alias_command @ONLY) - string(APPEND CREATE_ALIASES_PLACEHOLDER ${create_alias_command}) - endforeach() - - - # Reproduce the ly_enable_gems() calls made in the the SOURCE_DIR for this target into the CMakeLists.txt that - # is about to be generated - set(enable_gems_template "ly_enable_gems(@enable_gem_PROJECT_NAME@ @enable_gem_GEMS@ @enable_gem_GEM_FILE@ @enable_gem_VARIANTS@ @enable_gem_TARGETS@)\n") - get_property(enable_gems_commands_arg_list DIRECTORY ${absolute_target_source_dir} PROPERTY LY_ENABLE_GEMS_ARGUMENTS) - foreach(enable_gems_single_command_arg_list ${enable_gems_commands_arg_list}) - # Split the ly_enable_gems arguments back out based on commas - string(REPLACE "," ";" enable_gems_single_command_arg_list "${enable_gems_single_command_arg_list}") - foreach(enable_gem_arg_kw IN ITEMS PROJECT_NAME GEMS GEM_FILE VARIANTS TARGETS) - list(POP_FRONT enable_gems_single_command_arg_list enable_gem_${enable_gem_arg_kw}) - if(enable_gem_${enable_gem_arg_kw}) - # if the argument exist append to argument keyword to the front - string(PREPEND enable_gem_${enable_gem_arg_kw} "${enable_gem_arg_kw} ") - endif() - endforeach() - - string(CONFIGURE "${enable_gems_template}" enable_gems_command @ONLY) - string(APPEND ENABLE_GEMS_PLACEHOLDER ${enable_gems_command}) - endforeach() + ly_setup_subdirectory_create_alias("${absolute_target_source_dir}" CREATE_ALIASES_PLACEHOLDER) + ly_setup_subdirectory_set_gem_variant_to_load("${absolute_target_source_dir}" GEM_VARIANT_TO_LOAD_PLACEHOLDER) + ly_setup_subdirectory_enable_gems("${absolute_target_source_dir}" ENABLE_GEMS_PLACEHOLDER) ly_file_read(${LY_ROOT_FOLDER}/cmake/install/Copyright.in cmake_copyright_comment) @@ -337,6 +316,7 @@ function(ly_setup_subdirectory absolute_target_source_dir) "${all_configured_targets}" "\n" "${CREATE_ALIASES_PLACEHOLDER}" + "${GEM_VARIANT_TO_LOAD_PLACEHOLDER}" "${ENABLE_GEMS_PLACEHOLDER}" ) @@ -355,9 +335,16 @@ function(ly_setup_o3de_install) ly_setup_subdirectories() ly_setup_cmake_install() - ly_setup_target_generator() ly_setup_runtime_dependencies() - ly_setup_others() + ly_setup_assets() + + # Misc + install(FILES + ${LY_ROOT_FOLDER}/ctest_pytest.ini + ${LY_ROOT_FOLDER}/LICENSE.txt + ${LY_ROOT_FOLDER}/README.md + DESTINATION . + ) endfunction() @@ -479,7 +466,8 @@ endfunction()" ly_get_runtime_dependencies(runtime_dependencies ${target}) foreach(runtime_dependency ${runtime_dependencies}) unset(runtime_command) - ly_get_runtime_dependency_command(runtime_command ${runtime_dependency}) + unset(runtime_depend) # unused, but required to be passed to ly_get_runtime_dependency_command + ly_get_runtime_dependency_command(runtime_command runtime_depend ${runtime_dependency}) string(CONFIGURE "${runtime_command}" runtime_command @ONLY) list(APPEND runtime_commands ${runtime_command}) endforeach() @@ -488,75 +476,12 @@ endfunction()" list(REMOVE_DUPLICATES runtime_commands) list(JOIN runtime_commands " " runtime_commands_str) # the spaces are just to see the right identation in the cmake_install.cmake file - install(CODE "${runtime_commands_str}" - ) + install(CODE "${runtime_commands_str}") endfunction() -#! ly_setup_others: install directories required by the engine -function(ly_setup_others) - - # List of directories we want to install relative to engine root - set(DIRECTORIES_TO_INSTALL Tools/LyTestTools Tools/RemoteConsole) - foreach(dir ${DIRECTORIES_TO_INSTALL}) - - get_filename_component(install_path ${dir} DIRECTORY) - if (NOT install_path) - set(install_path .) - endif() - - install(DIRECTORY "${LY_ROOT_FOLDER}/${dir}" - DESTINATION ${install_path} - PATTERN "__pycache__" EXCLUDE - ) - - endforeach() - - # Scripts - file(GLOB o3de_scripts "${LY_ROOT_FOLDER}/scripts/o3de.*") - install(PROGRAMS - ${o3de_scripts} - DESTINATION ./scripts - ) - - install(DIRECTORY - ${LY_ROOT_FOLDER}/scripts/bundler - ${LY_ROOT_FOLDER}/scripts/o3de - DESTINATION ./scripts - PATTERN "__pycache__" EXCLUDE - PATTERN "CMakeLists.txt" EXCLUDE - PATTERN "tests" EXCLUDE - ) - - install(DIRECTORY "${LY_ROOT_FOLDER}/python" - DESTINATION . - REGEX "downloaded_packages" EXCLUDE - REGEX "runtime" EXCLUDE - REGEX ".*$\.sh" EXCLUDE - ) - - # For Mac/Linux shell scripts need to be installed as PROGRAMS to have execute permission - file(GLOB python_scripts "${LY_ROOT_FOLDER}/python/*.sh") - install(PROGRAMS - ${python_scripts} - DESTINATION ./python - ) - - # Registry - install(DIRECTORY - ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$/Registry - DESTINATION ./${runtime_output_directory}/${PAL_PLATFORM_NAME}/$ - ) - install(DIRECTORY - ${LY_ROOT_FOLDER}/Registry - DESTINATION . - ) - - # Engine Source Assets - install(DIRECTORY - ${LY_ROOT_FOLDER}/Assets - DESTINATION . - ) +#! ly_setup_assets: install asset directories required by the engine +function(ly_setup_assets) # Gem Source Assets and configuration files # Find all gem directories relative to the CMake Source Dir @@ -645,80 +570,59 @@ function(ly_setup_others) endforeach() - # Templates - install(DIRECTORY - ${LY_ROOT_FOLDER}/Templates - DESTINATION . - ) - - # Misc - install(FILES - ${LY_ROOT_FOLDER}/ctest_pytest.ini - ${LY_ROOT_FOLDER}/LICENSE.txt - ${LY_ROOT_FOLDER}/README.md - DESTINATION . - ) - endfunction() -#! ly_setup_target_generator: install source files needed for project launcher generation -function(ly_setup_target_generator) - install(FILES - ${LY_ROOT_FOLDER}/Code/LauncherUnified/launcher_generator.cmake - ${LY_ROOT_FOLDER}/Code/LauncherUnified/launcher_project_files.cmake - ${LY_ROOT_FOLDER}/Code/LauncherUnified/LauncherProject.cpp - ${LY_ROOT_FOLDER}/Code/LauncherUnified/StaticModules.in - DESTINATION LauncherGenerator - ) - install(DIRECTORY ${LY_ROOT_FOLDER}/Code/LauncherUnified/Platform - DESTINATION LauncherGenerator - ) - install(FILES ${LY_ROOT_FOLDER}/Code/LauncherUnified/FindLauncherGenerator.cmake - DESTINATION cmake - ) +#! ly_setup_subdirectory_create_alias: Replicates the call to the `ly_create_alias` function +#! within the generated CMakeLists.txt in the same relative install layout directory +function(ly_setup_subdirectory_create_alias absolute_target_source_dir output_script) + # Replicate the create_alias() calls made in the SOURCE_DIR into the generated CMakeLists.txt + string(JOIN "\n" create_alias_template + "if(NOT TARGET @alias_name@)" + " ly_create_alias(@create_alias_args@)" + "endif()" + "") -endfunction() - -#! ly_add_install_paths: Adds the list of path to copy to the install layout relative to the same folder -# \arg:PATHS - Paths to copy over to the install layout. The DESTINATION sub argument is optional -# The INPUT sub-argument is required -# \arg:BASE_DIRECTORY(Optional) - Absolute path where a relative path from the each input path will be -# based off of. Defaults to LY_ROOT_FOLDER if not supplied -function(ly_add_install_paths) - set(options) - set(oneValueArgs BASE_DIRECTORY) - set(multiValueArgs PATHS) - cmake_parse_arguments(ly_add_install_paths "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) - if(NOT ly_add_install_paths_PATHS) - message(FATAL_ERROR "ly_add_install_paths requires at least one input path to copy to the destination") - endif() - - # The default is the "." directory if not supplied - if(NOT ly_add_install_paths_BASE_DIRECTORY) - cmake_path(SET ly_add_install_paths_BASE_DIRECTORY ${LY_ROOT_FOLDER}) - endif() - - # Separate each path into an INPUT and DESTINATION parameter - set(options) - set(oneValueArgs INPUT DESTINATION) - set(multiValueArgs) - foreach(install_path IN LISTS ly_add_install_paths_PATHS) - string(REPLACE " " ";" install_path ${install_path}) - cmake_parse_arguments(install "${options}" "${oneValueArgs}" "${multiValueArgs}" ${install_path}) - if(NOT install_DESTINATION) - ly_get_engine_relative_source_dir(${install_INPUT} rel_to_root_input_path - BASE_DIRECTORY ${ly_add_install_paths_BASE_DIRECTORY}) - cmake_path(GET rel_to_root_input_path PARENT_PATH install_DESTINATION) - endif() - if(NOT install_DESTINATION) - cmake_path(SET install_DESTINATION .) - endif() - if(IS_DIRECTORY ${install_INPUT}) - install(DIRECTORY ${install_INPUT} DESTINATION ${install_DESTINATION}) - elseif(EXISTS ${install_INPUT}) - install(FILES ${install_INPUT} DESTINATION ${install_DESTINATION}) - endif() + unset(${output_script} PARENT_SCOPE) + get_property(create_alias_args_list DIRECTORY ${absolute_target_source_dir} PROPERTY LY_CREATE_ALIAS_ARGUMENTS) + foreach(create_alias_args IN LISTS create_alias_args_list) + # Create a list out of the comma separated arguments and store it into the same variable + string(REPLACE "," ";" create_alias_args ${create_alias_args}) + # The first argument of the create alias argument list is the ALIAS NAME so pop it from the list + # It is used to protect against registering the same alias twice + list(POP_FRONT create_alias_args alias_name) + string(CONFIGURE "${create_alias_template}" create_alias_command @ONLY) + string(APPEND create_alias_calls ${create_alias_command}) endforeach() - + set(${output_script} ${create_alias_calls} PARENT_SCOPE) endfunction() + +#! ly_setup_subdirectory_set_gem_variant_to_load: Replicates the call to the `ly_set_gem_variant_to_load` function +#! within the generated CMakeLists.txt in the same relative install layout directory +function(ly_setup_subdirectory_set_gem_variant_to_load absolute_target_source_dir output_script) + # Replicate the ly_set_gem_variant_to_load() calls made in the SOURCE_DIR for into the generated CMakeLists.txt + set(set_gem_variant_args_template "ly_set_gem_variant_to_load(@set_gem_variant_args@)\n") + + unset(${output_script} PARENT_SCOPE) + get_property(set_gem_variant_args_lists DIRECTORY ${absolute_target_source_dir} PROPERTY LY_SET_GEM_VARIANT_TO_LOAD_ARGUMENTS) + foreach(set_gem_variant_args IN LISTS set_gem_variant_args_lists) + string(CONFIGURE "${set_gem_variant_args_template}" set_gem_variant_to_load_command @ONLY) + string(APPEND set_gem_variant_calls ${set_gem_variant_to_load_command}) + endforeach() + set(${output_script} ${set_gem_variant_calls} PARENT_SCOPE) +endfunction() + +#! ly_setup_subdirectory_enable_gems: Replicates the call to the `ly_enable_gems` function +#! within the generated CMakeLists.txt in the same relative install layout directory +function(ly_setup_subdirectory_enable_gems absolute_target_source_dir output_script) + # Replicate the ly_set_gem_variant_to_load() calls made in the SOURCE_DIR into the generated CMakeLists.txt + set(enable_gems_template "ly_enable_gems(@enable_gems_args@)\n") + + unset(${output_script} PARENT_SCOPE) + get_property(enable_gems_args_list DIRECTORY ${absolute_target_source_dir} PROPERTY LY_ENABLE_GEMS_ARGUMENTS) + foreach(enable_gems_args IN LISTS enable_gems_args_list) + string(CONFIGURE "${enable_gems_template}" enable_gems_command @ONLY) + string(APPEND enable_gems_calls ${enable_gems_command}) + endforeach() + set(${output_script} ${enable_gems_calls} PARENT_SCOPE) +endfunction() \ No newline at end of file diff --git a/cmake/Platform/Common/MSVC/Configurations_msvc.cmake b/cmake/Platform/Common/MSVC/Configurations_msvc.cmake index 0119f8d8bc..647ced54a2 100644 --- a/cmake/Platform/Common/MSVC/Configurations_msvc.cmake +++ b/cmake/Platform/Common/MSVC/Configurations_msvc.cmake @@ -33,19 +33,20 @@ ly_append_configurations_options( /nologo # Suppress Copyright and version number message /W4 # Warning level 4 /WX # Warnings as errors + /permissive- # Conformance with standard # Disabling some warnings /wd4201 # nonstandard extension used: nameless struct/union. This actually became part of the C++11 std, MS has an open issue: https://developercommunity.visualstudio.com/t/warning-level-4-generates-a-bogus-warning-c4201-no/103064 # Enabling warnings that are disabled by default from /W4 # https://docs.microsoft.com/en-us/cpp/preprocessor/compiler-warnings-that-are-off-by-default?view=vs-2019 - # /we4296 # 'operator': expression is always false - # /we4426 # optimization flags changed after including header, may be due to #pragma optimize() - # /we4464 # relative include path contains '..' - # /we4619 # #pragma warning: there is no warning number 'number' - # /we4777 # 'function' : format string 'string' requires an argument of type 'type1', but variadic argument number has type 'type2' looks useful - # /we5031 # #pragma warning(pop): likely mismatch, popping warning state pushed in different file - # /WE5032 # detected #pragma warning(push) with no corresponding #pragma warning(pop) + /we4296 # 'operator': expression is always false + /we5233 # explicit lambda capture 'identifier' is not used + /we4426 # optimization flags changed after including header, may be due to #pragma optimize() + #/we4619 # #pragma warning: there is no warning number 'number'. Unfortunately some versions of MSVC 16.X dont filter this warning coming from external headers and Qt has a bad warning in QtCore/qvector.h(340,12) + /we4777 # 'function' : format string 'string' requires an argument of type 'type1', but variadic argument number has type 'type2 + /we5031 # #pragma warning(pop): likely mismatch, popping warning state pushed in different file + /we5032 # detected #pragma warning(push) with no corresponding #pragma warning(pop) /Zc:forScope # Force Conformance in for Loop Scope /diagnostics:caret # Compiler diagnostic options: includes the column where the issue was found and places a caret (^) under the location in the line of code where the issue was detected. diff --git a/cmake/Platform/Common/RuntimeDependencies_common.cmake b/cmake/Platform/Common/RuntimeDependencies_common.cmake index a669602ff7..95d91da7f7 100644 --- a/cmake/Platform/Common/RuntimeDependencies_common.cmake +++ b/cmake/Platform/Common/RuntimeDependencies_common.cmake @@ -113,7 +113,7 @@ function(ly_get_runtime_dependencies ly_RUNTIME_DEPENDENCIES ly_TARGET) unset(target_locations) get_target_property(target_locations ${ly_TARGET} ${imported_property}) if(target_locations) - list(APPEND all_runtime_dependencies ${target_locations}) + list(APPEND all_runtime_dependencies "${target_locations}") else() # Check if the property exists for configurations unset(target_locations) @@ -156,7 +156,7 @@ function(ly_get_runtime_dependencies ly_RUNTIME_DEPENDENCIES ly_TARGET) endfunction() -function(ly_get_runtime_dependency_command ly_RUNTIME_COMMAND ly_TARGET) +function(ly_get_runtime_dependency_command ly_RUNTIME_COMMAND ly_RUNTIME_DEPEND ly_TARGET) # To optimize this, we are going to cache the commands for the targets we requested. A lot of targets end up being # dependencies of other targets. @@ -166,6 +166,8 @@ function(ly_get_runtime_dependency_command ly_RUNTIME_COMMAND ly_TARGET) # We already walked through this target get_property(cached_command GLOBAL PROPERTY LY_RUNTIME_DEPENDENCY_COMMAND_${ly_TARGET}) set(${ly_RUNTIME_COMMAND} ${cached_command} PARENT_SCOPE) + get_property(cached_depend GLOBAL PROPERTY LY_RUNTIME_DEPENDENCY_DEPEND_${ly_TARGET}) + set(${ly_RUNTIME_DEPEND} "${cached_depend}" PARENT_SCOPE) return() endif() @@ -223,6 +225,8 @@ function(ly_get_runtime_dependency_command ly_RUNTIME_COMMAND ly_TARGET) set_property(GLOBAL PROPERTY LY_RUNTIME_DEPENDENCY_COMMAND_${ly_TARGET} "${runtime_command}") set(${ly_RUNTIME_COMMAND} ${runtime_command} PARENT_SCOPE) + set_property(GLOBAL PROPERTY LY_RUNTIME_DEPENDENCY_DEPEND_${ly_TARGET} "${source_file}") + set(${ly_RUNTIME_DEPEND} "${source_file}" PARENT_SCOPE) endfunction() @@ -245,15 +249,19 @@ function(ly_delayed_generate_runtime_dependencies) unset(runtime_dependencies) unset(LY_COPY_COMMANDS) + unset(runtime_depends) ly_get_runtime_dependencies(runtime_dependencies ${target}) foreach(runtime_dependency ${runtime_dependencies}) unset(runtime_command) - ly_get_runtime_dependency_command(runtime_command ${runtime_dependency}) + unset(runtime_depend) + ly_get_runtime_dependency_command(runtime_command runtime_depend ${runtime_dependency}) string(APPEND LY_COPY_COMMANDS ${runtime_command}) + list(APPEND runtime_depends ${runtime_depend}) endforeach() - # Generate the output file + # Generate the output file, note the STAMP_OUTPUT_FILE need to match with the one defined in LYWrappers.cmake + set(STAMP_OUTPUT_FILE ${CMAKE_BINARY_DIR}/runtime_dependencies/$/${target}_$.stamp) set(target_file_dir "$") set(target_file "$") ly_file_read(${LY_RUNTIME_DEPENDENCIES_TEMPLATE} template_file) @@ -263,6 +271,9 @@ function(ly_delayed_generate_runtime_dependencies) OUTPUT ${CMAKE_BINARY_DIR}/runtime_dependencies/$/${target}.cmake CONTENT "${configured_template_file}" ) + + # set the property that is consumed from the custom command generated in LyWrappers.cmake + set_target_properties(${target} PROPERTIES RUNTIME_DEPENDENCIES_DEPENDS "${runtime_depends}") endforeach() diff --git a/cmake/Platform/Common/runtime_dependencies_common.cmake.in b/cmake/Platform/Common/runtime_dependencies_common.cmake.in index bb280f895b..6e41dbaad1 100644 --- a/cmake/Platform/Common/runtime_dependencies_common.cmake.in +++ b/cmake/Platform/Common/runtime_dependencies_common.cmake.in @@ -22,3 +22,5 @@ function(ly_copy source_file target_directory) endfunction() @LY_COPY_COMMANDS@ + +file(TOUCH @STAMP_OUTPUT_FILE@) diff --git a/cmake/Platform/Linux/Install_linux.cmake b/cmake/Platform/Linux/Install_linux.cmake index 08bb9f807e..87713fa5d6 100644 --- a/cmake/Platform/Linux/Install_linux.cmake +++ b/cmake/Platform/Linux/Install_linux.cmake @@ -6,4 +6,23 @@ # # -include(cmake/Platform/Common/Install_common.cmake) \ No newline at end of file +#! ly_install_code_function_override: Linux-specific copy function to handle RPATH fixes +set(ly_copy_template [[ +function(ly_copy source_file target_directory) + file(COPY "${source_file}" DESTINATION "${target_directory}" FILE_PERMISSIONS @LY_COPY_PERMISSIONS@ FOLLOW_SYMLINK_CHAIN) + get_filename_component(target_filename_ext "${source_file}" LAST_EXT) + if("${source_file}" MATCHES "qt/plugins" AND "${target_filename_ext}" STREQUAL ".so") + get_filename_component(target_filename "${source_file}" NAME) + file(RPATH_CHANGE FILE "${target_directory}/${target_filename}" OLD_RPATH "\$ORIGIN/../../lib" NEW_RPATH "\$ORIGIN/..") + elseif("${source_file}" MATCHES "lrelease") + get_filename_component(target_filename "${source_file}" NAME) + file(RPATH_CHANGE FILE "${target_directory}/${target_filename}" OLD_RPATH "\$ORIGIN/../lib" NEW_RPATH "\$ORIGIN") + endif() +endfunction()]]) + +function(ly_install_code_function_override) + string(CONFIGURE "${ly_copy_template}" ly_copy_function_linux @ONLY) + install(CODE "${ly_copy_function_linux}") +endfunction() + +include(cmake/Platform/Common/Install_common.cmake) diff --git a/cmake/Projects.cmake b/cmake/Projects.cmake index 3f8c4ffc41..6e5b5c5f78 100644 --- a/cmake/Projects.cmake +++ b/cmake/Projects.cmake @@ -53,7 +53,7 @@ function(ly_add_target_dependencies) # Append the DEPENDENT_TARGETS to the list of ALL_GEM_DEPENDENCIES list(APPEND ALL_GEM_DEPENDENCIES ${ly_add_gem_dependencies_DEPENDENT_TARGETS}) - # for each target, add the dependencies and generate gems json + # for each target, add the dependencies and generate setreg json with the list of gems to load foreach(target ${ly_add_gem_dependencies_TARGETS}) ly_add_dependencies(${target} ${ALL_GEM_DEPENDENCIES}) @@ -69,39 +69,6 @@ function(ly_add_target_dependencies) endforeach() endfunction() -#! ly_add_project_dependencies: adds the dependencies to runtime and tools for this project. -# -# Each project may have dependencies to gems. To properly define these dependencies, we are making the project to define -# through a "files list" cmake file the dependencies to the different targets. -# So for example, the game's runtime dependencies are associated to the project's launcher; the game's tools dependencies -# are associated to the asset processor; etc -# -# \arg:PROJECT_NAME name of the game project -# \arg:TARGETS names of the targets to associate the dependencies to -# \arg:DEPENDENCIES_FILES file(s) that contains the runtime dependencies the TARGETS will be associated to -# \arg:DEPENDENT_TARGETS additional list of targets should be added as load-time dependencies for the TARGETS list -# -function(ly_add_project_dependencies) - - set(options) - set(oneValueArgs PROJECT_NAME) - set(multiValueArgs TARGETS DEPENDENCIES_FILES DEPENDENT_TARGETS) - - cmake_parse_arguments(ly_add_project_dependencies "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) - - # Validate input arguments - if(NOT ly_add_project_dependencies_PROJECT_NAME) - message(FATAL_ERROR "PROJECT_NAME parameter missing. If not project name is needed, then call ly_add_target_dependencies directly") - endif() - - ly_add_target_dependencies( - PREFIX ${ly_add_project_dependencies_PROJECT_NAME} - TARGETS ${ly_add_project_dependencies_TARGETS} - DEPENDENCIES_FILES ${ly_add_project_dependencies_DEPENDENCIES_FILES} - DEPENDENT_TARGETS ${ly_add_project_dependencies_DEPENDENT_TARGETS} - ) -endfunction() - #template for generating the project build_path setreg set(project_build_path_template [[ diff --git a/cmake/SettingsRegistry.cmake b/cmake/SettingsRegistry.cmake index ebf2254dc6..58beba089c 100644 --- a/cmake/SettingsRegistry.cmake +++ b/cmake/SettingsRegistry.cmake @@ -28,7 +28,7 @@ set(gems_json_template [[ string(APPEND gem_module_template [=[ "@stripped_gem_target@":]=] "\n" [=[ {]=] "\n" -[=[$<$,INTERFACE_LIBRARY>>: "Modules":["$"]]=] "$\n>" +[=[$<$,MODULE_LIBRARY$SHARED_LIBRARY>: "Modules":["$"]]=] "$\n>" [=[ "SourcePaths":["@gem_module_root_relative_to_engine_root@"]]=] "\n" [=[ }]=] ) @@ -87,7 +87,7 @@ endfunction() # # \arg:gem_target(TARGET) - Target to look upwards from using its SOURCE_DIR property function(ly_get_gem_module_root output_gem_module_root gem_target) - unset(gem_module_roots) + unset(${output_gem_module_root} PARENT_SCOPE) get_property(gem_source_dir TARGET ${gem_target} PROPERTY SOURCE_DIR) if(gem_source_dir) @@ -96,8 +96,8 @@ function(ly_get_gem_module_root output_gem_module_root gem_target) while(NOT EXISTS ${candidate_gem_dir}/gem.json) get_filename_component(parent_dir ${candidate_gem_dir} DIRECTORY) if (${parent_dir} STREQUAL ${candidate_gem_dir}) - message(WARNING "Did not find a gem.json while processing GEM_MODULE target ${gem_target}!") - break() + # "Did not find a gem.json while processing GEM_MODULE target ${gem_target}!" + return() endif() set(candidate_gem_dir ${parent_dir}) endwhile() @@ -160,11 +160,15 @@ function(ly_delayed_generate_settings_registry) endif() ly_get_gem_module_root(gem_module_root ${gem_target}) + if (NOT gem_module_root) + # If the target doesn't have a gem.json, skip it + continue() + endif() file(RELATIVE_PATH gem_module_root_relative_to_engine_root ${LY_ROOT_FOLDER} ${gem_module_root}) # De-alias namespace from gem targets before configuring them into the json template ly_de_alias_target(${gem_target} stripped_gem_target) - string(CONFIGURE ${gem_module_template} gem_module_json @ONLY) + string(CONFIGURE "${gem_module_template}" gem_module_json @ONLY) list(APPEND target_gem_dependencies_names ${gem_module_json}) endforeach() @@ -177,7 +181,8 @@ function(ly_delayed_generate_settings_registry) string(CONFIGURE ${gems_json_template} gem_json @ONLY) get_target_property(is_imported ${target} IMPORTED) get_target_property(target_type ${target} TYPE) - if(is_imported OR target_type STREQUAL UTILITY) + set(non_loadable_types "UTILITY" "INTERFACE_LIBRARY" "STATIC_LIBRARY") + if(is_imported OR (target_type IN_LIST non_loadable_types)) unset(target_dir) foreach(conf IN LISTS CMAKE_CONFIGURATION_TYPES) string(TOUPPER ${conf} UCONF) diff --git a/cmake/install/InstalledTarget.in b/cmake/install/InstalledTarget.in index a4f4fa4763..2095211bb2 100644 --- a/cmake/install/InstalledTarget.in +++ b/cmake/install/InstalledTarget.in @@ -15,6 +15,8 @@ ly_add_target( @INTERFACE_BUILD_DEPENDENCIES_PLACEHOLDER@ RUNTIME_DEPENDENCIES @RUNTIME_DEPENDENCIES_PLACEHOLDER@ + TARGET_PROPERTIES +@TARGET_PROPERTIES_PLACEHOLDER@ ) @TARGET_RUN_HELPER@ diff --git a/engine.json b/engine.json index 29532347db..63bddc9548 100644 --- a/engine.json +++ b/engine.json @@ -76,6 +76,7 @@ "Gems/StartingPointInput", "Gems/StartingPointMovement", "Gems/SurfaceData", + "Gems/Terrain", "Gems/TestAssetBuilder", "Gems/TextureAtlas", "Gems/TickBusOrderViewer", diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt new file mode 100644 index 0000000000..b2d01a08f8 --- /dev/null +++ b/python/CMakeLists.txt @@ -0,0 +1,28 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +if(NOT PAL_TRAIT_BUILD_HOST_TOOLS) + return() +endif() + +# common files to all platforms +ly_install_files( + FILES + get_python.cmake + readme.md + requirements.txt + DESTINATION python +) + +# platform specific files (they are PROGRAMS) +include(Platform/${PAL_PLATFORM_NAME}/install_files_${PAL_PLATFORM_NAME_LOWERCASE}.cmake) +ly_install_files( + FILES ${install_files} + PROGRAMS + DESTINATION python +) diff --git a/python/Platform/Linux/install_files_linux.cmake b/python/Platform/Linux/install_files_linux.cmake new file mode 100644 index 0000000000..e6ce1f2701 --- /dev/null +++ b/python/Platform/Linux/install_files_linux.cmake @@ -0,0 +1,13 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +set(install_files + get_python.sh + pip.sh + python.sh +) diff --git a/python/Platform/Mac/install_files_mac.cmake b/python/Platform/Mac/install_files_mac.cmake new file mode 100644 index 0000000000..e6ce1f2701 --- /dev/null +++ b/python/Platform/Mac/install_files_mac.cmake @@ -0,0 +1,13 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +set(install_files + get_python.sh + pip.sh + python.sh +) diff --git a/python/Platform/Windows/install_files_windows.cmake b/python/Platform/Windows/install_files_windows.cmake new file mode 100644 index 0000000000..df9a88ba1c --- /dev/null +++ b/python/Platform/Windows/install_files_windows.cmake @@ -0,0 +1,13 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +set(install_files + get_python.bat + pip.cmd + python.cmd +) diff --git a/python/python.cmd b/python/python.cmd index 04c55c50c7..70c79e6789 100644 --- a/python/python.cmd +++ b/python/python.cmd @@ -17,7 +17,7 @@ SETLOCAL SET CMD_DIR=%~dp0 SET CMD_DIR=%CMD_DIR:~0,-1% -SET PYTHONHOME=%CMD_DIR%\runtime\python-3.7.10-rev1-windows\python +SET PYTHONHOME=%CMD_DIR%\runtime\python-3.7.10-rev2-windows\python IF EXIST "%PYTHONHOME%" GOTO PYTHONHOME_EXISTS diff --git a/python/python.sh b/python/python.sh index 590845dbd5..642878485b 100755 --- a/python/python.sh +++ b/python/python.sh @@ -19,7 +19,7 @@ DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" if [[ "$OSTYPE" == *"darwin"* ]]; then PYTHON=$DIR/runtime/python-3.7.10-rev1-darwin/Python.framework/Versions/3.7/bin/python3 elif [[ "$OSTYPE" == "msys" ]]; then - PYTHON=$DIR/runtime/python-3.7.10-rev1-windows/python/python.exe + PYTHON=$DIR/runtime/python-3.7.10-rev2-windows/python/python.exe else PYTHON=$DIR/runtime/python-3.7.10-rev2-linux/python/bin/python fi diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt index 14cc7f0be1..4e2dd1d780 100644 --- a/scripts/CMakeLists.txt +++ b/scripts/CMakeLists.txt @@ -6,7 +6,10 @@ # # -add_subdirectory(detect_file_changes) -add_subdirectory(commit_validation) -add_subdirectory(o3de) -add_subdirectory(ctest) +if(PAL_TRAIT_BUILD_HOST_TOOLS) + add_subdirectory(bundler) + add_subdirectory(commit_validation) + add_subdirectory(ctest) + add_subdirectory(detect_file_changes) + add_subdirectory(o3de) +endif() diff --git a/scripts/build/Jenkins/Jenkinsfile b/scripts/build/Jenkins/Jenkinsfile index 3d8c32f0f3..328e5f8df7 100644 --- a/scripts/build/Jenkins/Jenkinsfile +++ b/scripts/build/Jenkins/Jenkinsfile @@ -6,7 +6,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ - +import groovy.json.JsonOutput PIPELINE_CONFIG_FILE = 'scripts/build/Jenkins/lumberyard.json' INCREMENTAL_BUILD_SCRIPT_PATH = 'scripts/build/bootstrap/incremental_build_util.py' @@ -338,6 +338,11 @@ def PreBuildCommonSteps(Map pipelineConfig, String snapshot, String repositoryNa else command += '.cmd' command += " -u ${pipelineConfig.BUILD_ENTRY_POINT} --platform ${platform} --type clean" palSh(command, "Running ${platform} clean") + + if(fileExists('.lfsconfig')) { + palSh("git lfs install", "LFS config exists. Installing LFS hooks to local repo") + palSh("git lfs pull", "Pulling new LFS objects") + } } } @@ -378,6 +383,25 @@ def TestMetrics(Map pipelineConfig, String workspace, String branchName, String } } +def BenchmarkMetrics(Map pipelineConfig, String workspace, String branchName, String outputDirectory) { + catchError(buildResult: null, stageResult: null) { + def cmakeBuildDir = [workspace, ENGINE_REPOSITORY_NAME, outputDirectory].join('/') + dir("${workspace}/${ENGINE_REPOSITORY_NAME}") { + checkout scm: [ + $class: 'GitSCM', + branches: [[name: '*/main']], + extensions: [ + [$class: 'AuthorInChangelog'], + [$class: 'RelativeTargetDirectory', relativeTargetDir: 'mars'] + ], + userRemoteConfigs: [[url: "${env.MARS_REPO}", name: 'mars', credentialsId: "${env.GITHUB_USER}"]] + ] + def command = "${pipelineConfig.PYTHON_DIR}/python.cmd -u mars/scripts/python/benchmark_scraper.py ${cmakeBuildDir} ${branchName}" + palSh(command, "Publishing Benchmark Metrics") + } + } +} + def ExportTestResults(Map options, String platform, String type, String workspace, Map params) { catchError(message: "Error exporting tests results (this won't fail the build)", buildResult: 'SUCCESS', stageResult: 'FAILURE') { def o3deroot = "${workspace}/${ENGINE_REPOSITORY_NAME}" @@ -433,6 +457,7 @@ def CreateTestMetricsStage(Map pipelineConfig, String branchName, Map environmen return { stage("${buildJobName}_metrics") { TestMetrics(pipelineConfig, environmentVars['WORKSPACE'], branchName, env.DEFAULT_REPOSITORY_NAME, buildJobName, outputDirectory, configuration) + BenchmarkMetrics(pipelineConfig, environmentVars['WORKSPACE'], branchName, outputDirectory) } } } @@ -468,7 +493,18 @@ def CreateSingleNode(Map pipelineConfig, def platform, def build_job, Map envVar if(build_job.value.steps) { //this is a pipe with many steps so create all the build stages build_job.value.steps.each { build_step -> build_job_name = build_step - CreateBuildStage(pipelineConfig, platform.key, build_step, envVars).call() + envVars = GetBuildEnvVars(platform.value.PIPELINE_ENV ?: EMPTY_JSON, platform.value.build_types[build_step].PIPELINE_ENV ?: EMPTY_JSON, pipelineName) + try { + CreateBuildStage(pipelineConfig, platform.key, build_step, envVars).call() + } + catch (Exception e) { + if (envVars['NONBLOCKING_STEP']?.toBoolean()) { + unstable(message: "Build step ${build_step} failed but it's a non-blocking step in build job ${build_job.key}") + } + else { + error "FAILURE: ${e}" + } + } } } else { CreateBuildStage(pipelineConfig, platform.key, build_job.key, envVars).call() @@ -734,6 +770,14 @@ finally { } else { buildFailure = tm('${BUILD_FAILURE_ANALYZER}') emailBody = "${BUILD_URL}\n${buildFailure}!" + if(env.SNS_TOPIC_BUILD_FAILURE) { + message_json = ["build_url":env.BUILD_URL, "repository_name":env.REPOSITORY_NAME, "branch_name":env.BRANCH_NAME, "build_failure":buildFailure] + snsPublish( + topicArn: env.SNS_TOPIC_BUILD_FAILURE, + subject:'Build Failure', + message:JsonOutput.toJson(message_json) + ) + } } emailext ( body: "${emailBody}", diff --git a/scripts/build/Platform/Linux/build_config.json b/scripts/build/Platform/Linux/build_config.json index a3b249d476..e60b5deee9 100644 --- a/scripts/build/Platform/Linux/build_config.json +++ b/scripts/build/Platform/Linux/build_config.json @@ -113,7 +113,7 @@ "CMAKE_TARGET": "AssetProcessorBatch", "ASSET_PROCESSOR_BINARY": "bin/profile/AssetProcessorBatch", "ASSET_PROCESSOR_OPTIONS": "/zeroAnalysisMode", - "ASSET_PROCESSOR_PLATFORMS": "pc,server" + "ASSET_PROCESSOR_PLATFORMS": "linux,server" } }, "asset_profile_nounity": { @@ -127,7 +127,7 @@ "CMAKE_TARGET": "AssetProcessorBatch", "ASSET_PROCESSOR_BINARY": "bin/profile/AssetProcessorBatch", "ASSET_PROCESSOR_OPTIONS": "/zeroAnalysisMode", - "ASSET_PROCESSOR_PLATFORMS": "pc,server" + "ASSET_PROCESSOR_PLATFORMS": "linux,server" } }, "periodic_test_profile": { diff --git a/scripts/build/Platform/Windows/build_config.json b/scripts/build/Platform/Windows/build_config.json index 8928794a43..583a73b58b 100644 --- a/scripts/build/Platform/Windows/build_config.json +++ b/scripts/build/Platform/Windows/build_config.json @@ -213,10 +213,18 @@ "ASSET_PROCESSOR_PLATFORMS": "pc,server" } }, - "periodic_test_profile_vs2019": { + "periodic_test_profile_vs2019_pipe": { "TAGS": [ "nightly-incremental", - "nightly-clean", + "nightly-clean" + ], + "steps": [ + "awsi_deployment", + "periodic_test_profile_vs2019" + ] + }, + "periodic_test_profile_vs2019": { + "TAGS": [ "weekly-build-metrics" ], "COMMAND": "build_test_windows.cmd", @@ -378,7 +386,10 @@ ] }, "awsi_deployment": { - "TAGS": ["awsi-deployment"], + "TAGS": [], + "PIPELINE_ENV": { + "NONBLOCKING_STEP": "True" + }, "COMMAND": "deploy_cdk_applications.cmd", "PARAMETERS": {} } diff --git a/scripts/build/Platform/Windows/pipeline.json b/scripts/build/Platform/Windows/pipeline.json index 4c736d2292..6be55ec82d 100644 --- a/scripts/build/Platform/Windows/pipeline.json +++ b/scripts/build/Platform/Windows/pipeline.json @@ -18,7 +18,37 @@ } }, "PIPELINE_JENKINS_PARAMETERS": { - "awsi-deployment": [ + "nightly-incremental": [ + { + "parameter_name": "O3DE_AWS_PROJECT_NAME", + "parameter_type": "string", + "default_value": "", + "use_last_run_value": true, + "description": "The name of the O3DE project that stacks should be deployed for." + }, + { + "parameter_name": "O3DE_AWS_DEPLOY_REGION", + "parameter_type": "string", + "default_value": "", + "use_last_run_value": true, + "description": "The region to deploy the stacks into." + }, + { + "parameter_name": "ASSUME_ROLE_ARN", + "parameter_type": "string", + "default_value": "", + "use_last_run_value": true, + "description": "The ARN of the IAM role to assume to retrieve temporary AWS credentials." + }, + { + "parameter_name": "COMMIT_ID", + "parameter_type": "string", + "default_value": "", + "use_last_run_value": true, + "description": "The commit ID for locking the version of CDK applications to deploy." + } + ], + "nightly-clean": [ { "parameter_name": "O3DE_AWS_PROJECT_NAME", "parameter_type": "string", diff --git a/scripts/build/build_node/Platform/Linux/install-ubuntu-build-tools.sh b/scripts/build/build_node/Platform/Linux/install-ubuntu-build-tools.sh index 478f3a37dc..88b9f9b505 100755 --- a/scripts/build/build_node/Platform/Linux/install-ubuntu-build-tools.sh +++ b/scripts/build/build_node/Platform/Linux/install-ubuntu-build-tools.sh @@ -112,6 +112,23 @@ else fi +# +# Add Amazon Corretto repository to install the necessary JDK for Jenkins and Android +# + +CORRETTO_REPO_COUNT=$(cat /etc/apt/sources.list | grep ^dev | grep https://apt.corretto.aws | wc -l) + +if [ $CORRETTO -eq 0 ] +then + echo Adding Corretto Repository for JDK + + wget -O- https://apt.corretto.aws/corretto.key | apt-key add - + add-apt-repository 'deb https://apt.corretto.aws stable main' + apt-get update +else + echo Corretto repo already set +fi + # Read from the package list and process each package PACKAGE_FILE_LIST=package-list.ubuntu-$UBUNTU_DISTRO.txt diff --git a/scripts/build/build_node/Platform/Linux/install-ubuntu-gpu.sh b/scripts/build/build_node/Platform/Linux/install-ubuntu-gpu.sh new file mode 100755 index 0000000000..033d32369c --- /dev/null +++ b/scripts/build/build_node/Platform/Linux/install-ubuntu-gpu.sh @@ -0,0 +1,94 @@ +#!/bin/bash + +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# + +# This script must be run as root +if [[ $EUID -ne 0 ]] +then + echo "This script must be run as root (sudo)" + exit 1 +fi + +# Install latest updates to AWS drivers and GCC (to build display driver) +# +echo Updating OS and tools +apt-get update -y +apt-get upgrade -y linux-aws +apt-get install -y gcc make linux-headers-$(uname -r) + +# Install Desktop environment with tools. Nice is only compatible with Gnome +# +echo Installing desktop environment and tools +apt-get install ubuntu-desktop mesa-utils vulkan-tools awscli unzip -y + +# Setup X desktop manager (Wayland needs to be turned off for GDM3) +# +if [ "`cat /etc/issue | grep 18.04`" != "" ] ; then + apt-get install lightdm -y +else + apt-get install gdm3 -y + sed -i 's/#WaylandEnable=false/WaylandEnable=false/g' /etc/gdm3/custom.conf + systemctl restart gdm3 +fi + +# Set desktop environment to start by default +# +systemctl get-default +systemctl set-default graphical.target +systemctl isolate graphical.target + +# Prepare for the nVidia driver by disabling nouveau +# +cat << EOF | sudo tee --append /etc/modprobe.d/blacklist.conf +blacklist vga16fb +blacklist nouveau +blacklist rivafb +blacklist nvidiafb +blacklist rivatv +EOF + +# Blocking nouveau from activating during grub startup +# +echo 'GRUB_CMDLINE_LINUX="rdblacklist=nouveau"' >> /etc/default/grub +update-grub + +# Copy drivers to local, then install +# +aws s3 cp --recursive s3://nvidia-gaming/linux/latest/ /tmp +cd /tmp +unzip NVIDIA-Linux-x86_64* \ +&& rm NVIDIA-Linux-x86_64* \ +&& chmod +x Linux/NVIDIA-Linux-x86_64*.run \ +&& Linux/NVIDIA-Linux-x86_64*.run --accept-license \ + --no-questions \ + --no-backup \ + --ui=none \ + --install-libglvnd \ +&& nvidia-xconfig --preserve-busid --enable-all-gpus \ +&& rm -rf /tmp/Linux + +# Download and configure licenses (needed for VMs and multiuser) +# +cat << EOF | sudo tee -a /etc/nvidia/gridd.conf +vGamingMarketplace=2 +EOF +curl -o /etc/nvidia/GridSwCert.txt "https://nvidia-gaming.s3.amazonaws.com/GridSwCert-Archive/GridSwCertLinux_2021_10_2.cert" + +# Optimize settings if headless +# +if [ ! $DISPLAY ] ; then + echo Headless instance found. Disabling HardDPMS + if [ ! $(grep '"HardDPMS" "false"' /etc/X11/xorg.conf) ]; then + sed -i '/BusID */ a\ + Option "HardDPMS" "false"' /etc/X11/xorg.conf + fi +fi + +echo Install complete! +read -t 10 -p "Rebooting in 10 seconds. Press enter to reboot this instance now or CTRL+c to cancel" +reboot now + diff --git a/scripts/build/build_node/Platform/Linux/install-ubuntu-nicedcv.sh b/scripts/build/build_node/Platform/Linux/install-ubuntu-nicedcv.sh new file mode 100755 index 0000000000..d566c94c21 --- /dev/null +++ b/scripts/build/build_node/Platform/Linux/install-ubuntu-nicedcv.sh @@ -0,0 +1,78 @@ +#!/bin/bash + +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# + +# This script must be run as root +if [[ $EUID -ne 0 ]] +then + echo "This script must be run as root (sudo)" + exit 1 +fi + +# Download Nice DCV +# +echo Downloading Nice-DCV +mkdir /tmp/nice-dcv +cd /tmp/nice-dcv +curl -sSL https://d1uj6qtbmh3dt5.cloudfront.net/NICE-GPG-KEY | gpg --import - + +if [ "`cat /etc/issue | grep 18.04`" != "" ] ; then + dcv_server=`curl --silent --output - https://download.nice-dcv.com/ | \ +grep href | egrep "$dcv_version" | egrep "ubuntu1804" | grep Server | \ +sed -e 's/.*http/http/' -e 's/tgz.*/tgz/' | head -1` +else + dcv_server=`curl --silent --output - https://download.nice-dcv.com/ | \ +grep href | egrep "$dcv_version" | egrep "ubuntu2004" | grep Server | \ +sed -e 's/.*http/http/' -e 's/tgz.*/tgz/' | head -1` +fi + +# Install Nice DCV +# +echo Installing DCV from $dcv_server +wget $dcv_server \ +&& tar zxvf nice-dcv-*ubun*.tgz +cd nice-dcv-*64 +apt install -y ./nice-*amd64.ubuntu*.deb \ +&& usermod -aG video dcv \ +&& rm -rf /tmp/nice-dcv + +# Setup multiuser environment for DCV +# +systemctl isolate multi-user.target +sleep 1 +dcvgladmin enable +systemctl isolate graphical.target + +# Check if DCV localuser for X has been setup correctly +# +if [ $(DISPLAY=:0 XAUTHORITY=$(ps aux | grep "X.*\-auth" | grep -v grep | sed -n 's/.*-auth \([^ ]\+\).*/\1/p') xhost | grep "SI:localuser:dcv$") ]; then + echo DCV localuser validated +else + echo [ERROR] DCV localuser not found. Output should be: SI:localuser:dcv. Exiting with 1 + exit 1 +fi + +# Configure DCV for auto start sessions and performance +# +sed -i "s/#create-session = true/create-session = true/g" /etc/dcv/dcv.conf +sed -i "s/#owner=\"session-owner\"/owner=\"$LOGNAME\"/g" /etc/dcv/dcv.conf +sed -i "s/#target-fps=30/target-fps=0/g" /etc/dcv/dcv.conf + +# Enable and start the DCV server +# +systemctl enable dcvserver +systemctl start dcvserver + +# Output the DCV installation diagnostics +# +dcvgldiag + +# Start a DCV session to login +# +IP_ADDR=$(curl http://checkip.amazonaws.com) +echo Starting DCV desktop session for $LOGNAME. Session can be accessed at https://$IP_ADDR:8443 +dcv create-session --type=console --owner $LOGNAME desktop diff --git a/scripts/build/build_node/Platform/Linux/install-ubuntu.sh b/scripts/build/build_node/Platform/Linux/install-ubuntu.sh index 60f0114872..d83ece9d47 100755 --- a/scripts/build/build_node/Platform/Linux/install-ubuntu.sh +++ b/scripts/build/build_node/Platform/Linux/install-ubuntu.sh @@ -40,6 +40,13 @@ then exit 1 fi +# Add mountpoint for Jenkins +if [ ! -d /data ] +then + echo Data folder does not exist. Creating it. + mkdir /data + chown $USER /data +fi echo Packages and tools for O3DE setup complete exit 0 diff --git a/scripts/build/build_node/Platform/Linux/package-list.ubuntu-bionic.txt b/scripts/build/build_node/Platform/Linux/package-list.ubuntu-bionic.txt index 9cc9d934c1..625909e214 100644 --- a/scripts/build/build_node/Platform/Linux/package-list.ubuntu-bionic.txt +++ b/scripts/build/build_node/Platform/Linux/package-list.ubuntu-bionic.txt @@ -4,6 +4,7 @@ cmake/3.20.1-0kitware1ubuntu18.04.1 # For cmake clang-6.0 # For Ninja Build System ninja-build # For the compiler and its dependencies +java-11-amazon-corretto-jdk # For Jenkins and Android # Build Libraries libglu1-mesa-dev # For Qt (GL dependency) diff --git a/scripts/build/build_node/Platform/Linux/package-list.ubuntu-focal.txt b/scripts/build/build_node/Platform/Linux/package-list.ubuntu-focal.txt index d5a50cfa97..21c4755a2e 100644 --- a/scripts/build/build_node/Platform/Linux/package-list.ubuntu-focal.txt +++ b/scripts/build/build_node/Platform/Linux/package-list.ubuntu-focal.txt @@ -1,9 +1,10 @@ # Package list for Ubuntu 20.04 # Build Tools Packages -cmake/3.20.1-0kitware1ubuntu20.04.1 # For cmake -clang-6.0 # For Ninja Build System +cmake/3.21.1-0kitware1ubuntu20.04.1 # For cmake +clang-12 # For Ninja Build System ninja-build # For the compiler and its dependencies +java-11-amazon-corretto-jdk # For Jenkins and Android # Build Libraries libglu1-mesa-dev # For Qt (GL dependency) @@ -12,7 +13,6 @@ libxcb-xinput0 # For Qt plugins at runtime libfontconfig1-dev # For Qt plugins at runtime libcurl4-openssl-dev # For HttpRequestor libsdl2-dev # for WWise/Audio +libxkbcommon-dev zlib1g-dev mesa-common-dev - - diff --git a/scripts/build/package/Platform/3rdParty/package_filelists/3rdParty.json b/scripts/build/package/Platform/3rdParty/package_filelists/3rdParty.json index a9ed45daca..915368dd0b 100644 --- a/scripts/build/package/Platform/3rdParty/package_filelists/3rdParty.json +++ b/scripts/build/package/Platform/3rdParty/package_filelists/3rdParty.json @@ -12,7 +12,6 @@ "FbxSdk/2016.1.2-az.1/**": "#include", "OpenSSL/1.1.1b-noasm-az/**": "#include", "Qt/5.15.1.2-az/**": "#include", - "RadTelemetry/3.5.0.17/**": "#include", "tiff/3.9.5-az.3/**": "#include", "Wwise/2019.2.8.7432/**": "#include" } diff --git a/scripts/bundler/CMakeLists.txt b/scripts/bundler/CMakeLists.txt new file mode 100644 index 0000000000..c2670d465c --- /dev/null +++ b/scripts/bundler/CMakeLists.txt @@ -0,0 +1,11 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +ly_install_directory(DIRECTORIES . + EXCLUDE_PATTERNS tests +) diff --git a/scripts/commit_validation/commit_validation/tests/validators/test_az_trait_validator.py b/scripts/commit_validation/commit_validation/tests/validators/test_az_trait_validator.py deleted file mode 100755 index 9474fd00b6..0000000000 --- a/scripts/commit_validation/commit_validation/tests/validators/test_az_trait_validator.py +++ /dev/null @@ -1,92 +0,0 @@ -# -# Copyright (c) Contributors to the Open 3D Engine Project. -# For complete copyright and license terms please see the LICENSE at the root of this distribution. -# -# SPDX-License-Identifier: Apache-2.0 OR MIT -# -# - -import unittest -from unittest.mock import patch, mock_open - -from commit_validation import pal_allowedlist -from commit_validation.tests.mocks.mock_commit import MockCommit -from commit_validation.validators.az_trait_validator import AzTraitValidator - -import pytest - - -class Test_AzTraitValidatorTests(): - def test_fileDoesntCheckAzTraitIsDefined_passes(self): - commit = MockCommit( - files=['someCppFile.cpp'], - file_diffs={ 'someCppFile.cpp' : ''} - ) - error_list = [] - assert AzTraitValidator().run(commit, error_list) - assert len(error_list) == 0, f"Unexpected errors: {error_list}" - - @pytest.mark.parametrize( - 'file_diffs,expect_success', [ - pytest.param('+This file does contain\n' - '+a trait existence check\n' - '+#ifdef AZ_TRAIT_USED_INCORRECTLY\n', - False, - id="AZ_TRAIT_inside_ifdef_fails" ), # gives the test a friendly name! - - pytest.param('+This file does contain\n' - '+a trait existence check\n' - '+#if defined(AZ_TRAIT_USED_INCORRECTLY)\n', - False, - id="AZ_TRAIT_inside_if_defined_fails" ), - - pytest.param('+This file does contain\n' - '+a trait existence check\n' - '+#ifndef AZ_TRAIT_USED_INCORRECTLY\n', - False, - id="AZ_TRAIT_inside_ifndef_fails" ), - - pytest.param('+This file contains a diff which REMOVES an incorrect usage\n' - '-#ifndef AZ_TRAIT_USED_INCORRECTLY\n', - True, - id="AZ_TRAIT_removed_in_diff_passes" ), - - pytest.param('+This file contains a diff which has an old already okayed usage\n' - '+which is not actually part of the diff.\n' - '#ifndef AZ_TRAIT_USED_INCORRECTLY\n', - True, - id="AZ_TRAIT_in_unmodified_section_passes"), - - pytest.param('+This file contains the correct usage\n' - '+#if AZ_TRAIT_USED_CORRECTLY\n', - True, - id="AZ_TRAIT_correct_usage_passes"), - ]) - def test_fileChecksAzTraitIsDefined(self, file_diffs, expect_success): - commit = MockCommit( - files=['someCppFile.cpp'], - file_diffs={ 'someCppFile.cpp' : file_diffs }) - - error_list = [] - if expect_success: - assert AzTraitValidator().run(commit, error_list) - assert len(error_list) == 0, f"Unexpected errors: {error_list}" - else: - assert not AzTraitValidator().run(commit, error_list) - assert len(error_list) != 0, f"Errors were expected but none were returned." - - def test_fileExtensionIgnored_passes(self): - commit = MockCommit(files=['someCppFile.waf_files']) - error_list = [] - assert AzTraitValidator().run(commit, error_list) - assert len(error_list) == 0, f"Unexpected errors: {error_list}" - - @patch('commit_validation.pal_allowedlist.load', return_value=pal_allowedlist.PALAllowedlist(['*/some/path/*'])) - def test_fileAllowedlisted_passes(self, mocked_load): - commit = MockCommit(files=['/path/to/some/path/someCppFile.cpp']) - error_list = [] - assert AzTraitValidator().run(commit, error_list) - assert len(error_list) == 0, f"Unexpected errors: {error_list}" - -if __name__ == '__main__': - unittest.main() diff --git a/scripts/commit_validation/commit_validation/validators/az_trait_validator.py b/scripts/commit_validation/commit_validation/validators/az_trait_validator.py deleted file mode 100755 index 595cea8720..0000000000 --- a/scripts/commit_validation/commit_validation/validators/az_trait_validator.py +++ /dev/null @@ -1,57 +0,0 @@ -# -# Copyright (c) Contributors to the Open 3D Engine Project. -# For complete copyright and license terms please see the LICENSE at the root of this distribution. -# -# SPDX-License-Identifier: Apache-2.0 OR MIT -# -# - -import os -import re -from typing import Type, List - -import commit_validation.pal_allowedlist as pal_allowedlist -from commit_validation.commit_validation import Commit, CommitValidator, SOURCE_FILE_EXTENSIONS, VERBOSE - -ifdef_regex = re.compile(r'^\+\s*#\s*ifn?def\s+AZ_TRAIT_') -defined_regex = re.compile(r'\sdefined\s*\(\s*AZ_TRAIT_') - - -class AzTraitValidator(CommitValidator): - """A file-level validator that makes sure a file does not contain existence checks for AZ_TRAIT macros""" - - def __init__(self) -> None: - self.pal_allowedlist = pal_allowedlist.load() - - def run(self, commit: Commit, errors: List[str]) -> bool: - for file_name in commit.get_files(): - if os.path.splitext(file_name)[1].lower() not in SOURCE_FILE_EXTENSIONS: - if VERBOSE: print(f'{file_name}::{self.__class__.__name__} SKIPPED - File excluded based on extension.') - continue - if self.pal_allowedlist.is_match(file_name): - if VERBOSE: print(f'{file_name}::{self.__class__.__name__} SKIPPED - File excluded based on PAL allowedlist.') - continue - - file_diff = commit.get_file_diff(file_name) - previous_line_context = "" - - for line in file_diff.splitlines(): - # we only care about added lines. - if line.startswith('+'): - if ifdef_regex.search(line) or defined_regex.search(line): - error_message = str( - f'{file_name}::{self.__class__.__name__} FAILED - Source file contains an existence ' - f'check for an AZ_TRAIT macro in this code: \n' - f' {previous_line_context}\n' - f' ----> {line}\n' - f'Traits should be tested for true/false, since they are guaranteed to exist on all platforms.') - if VERBOSE: print(error_message) - errors.append(error_message) - previous_line_context = line - - return (not errors) - - -def get_validator() -> Type[AzTraitValidator]: - """Returns the validator class for this module""" - return AzTraitValidator diff --git a/scripts/o3de/CMakeLists.txt b/scripts/o3de/CMakeLists.txt index 48b8a1e801..79836305c0 100644 --- a/scripts/o3de/CMakeLists.txt +++ b/scripts/o3de/CMakeLists.txt @@ -7,3 +7,23 @@ # add_subdirectory(tests) + +ly_get_list_relative_pal_filename(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME}) +include(${pal_dir}/o3de_install_${PAL_PLATFORM_NAME_LOWERCASE}.cmake) + +ly_install_files(FILES ../o3de.py + DESTINATION scripts +) + +ly_install_files(FILES setup.py PROGRAMS + DESTINATION scripts/o3de +) +ly_install_files(FILES README.txt + DESTINATION scripts/o3de +) + +ly_install_directory(DIRECTORIES . + EXCLUDE_PATTERNS + tests + Platform +) diff --git a/scripts/o3de/Platform/Linux/o3de_install_linux.cmake b/scripts/o3de/Platform/Linux/o3de_install_linux.cmake new file mode 100644 index 0000000000..3dff9ebaad --- /dev/null +++ b/scripts/o3de/Platform/Linux/o3de_install_linux.cmake @@ -0,0 +1,12 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +ly_install_files(FILES ../o3de.sh PROGRAMS + DESTINATION scripts +) + diff --git a/scripts/o3de/Platform/Mac/o3de_install_mac.cmake b/scripts/o3de/Platform/Mac/o3de_install_mac.cmake new file mode 100644 index 0000000000..56488c1cf4 --- /dev/null +++ b/scripts/o3de/Platform/Mac/o3de_install_mac.cmake @@ -0,0 +1,11 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +ly_install_files(FILES ../o3de.sh PROGRAMS + DESTINATION scripts +) diff --git a/scripts/o3de/Platform/Windows/o3de_install_windows.cmake b/scripts/o3de/Platform/Windows/o3de_install_windows.cmake new file mode 100644 index 0000000000..8503ad8345 --- /dev/null +++ b/scripts/o3de/Platform/Windows/o3de_install_windows.cmake @@ -0,0 +1,11 @@ +# +# Copyright (c) Contributors to the Open 3D Engine Project. +# For complete copyright and license terms please see the LICENSE at the root of this distribution. +# +# SPDX-License-Identifier: Apache-2.0 OR MIT +# +# + +ly_install_files(FILES ../o3de.bat PROGRAMS + DESTINATION scripts +) diff --git a/scripts/o3de/o3de/register.py b/scripts/o3de/o3de/register.py index 5822cc926c..7db09368ec 100644 --- a/scripts/o3de/o3de/register.py +++ b/scripts/o3de/o3de/register.py @@ -290,14 +290,14 @@ def register_o3de_object_path(json_data: dict, logger.error(f'Cannot load engine.json data at path {engine_path}') return 1 - save_path = engine_path / 'engine.json' + save_path = (engine_path / 'engine.json').resolve() elif project_path: manifest_data = manifest.get_project_json_data(project_path=project_path) if not manifest_data: logger.error(f'Cannot load project.json data at path {project_path}') return 1 - save_path = project_path / 'project.json' + save_path = (project_path / 'project.json').resolve() else: manifest_data = json_data @@ -373,7 +373,8 @@ def register_external_subdirectory(json_data: dict, if not project_path: engine_path = utils.find_ancestor_dir_containing_file(pathlib.PurePath('engine.json'), external_subdir_path) return register_o3de_object_path(json_data, external_subdir_path, 'external_subdirectories', '', None, remove, - engine_path, project_path) + pathlib.Path(engine_path).resolve() if engine_path else None, + pathlib.Path(project_path).resolve() if project_path else None) def register_gem_path(json_data: dict, @@ -387,7 +388,9 @@ def register_gem_path(json_data: dict, if not project_path: engine_path = utils.find_ancestor_dir_containing_file(pathlib.PurePath('engine.json'), gem_path) return register_o3de_object_path(json_data, gem_path, 'external_subdirectories', 'gem.json', - validation.valid_o3de_gem_json, remove, engine_path, project_path) + validation.valid_o3de_gem_json, remove, + pathlib.Path(engine_path).resolve() if engine_path else None, + pathlib.Path(project_path).resolve() if project_path else None) def register_project_path(json_data: dict, @@ -400,7 +403,8 @@ def register_project_path(json_data: dict, engine_path = utils.find_ancestor_dir_containing_file(pathlib.PurePath('engine.json'), project_path) result = register_o3de_object_path(json_data, project_path, 'projects', 'project.json', - validation.valid_o3de_project_json, remove, engine_path, None) + validation.valid_o3de_project_json, remove, + pathlib.Path(engine_path).resolve() if engine_path else None) if result != 0: return result @@ -433,6 +437,7 @@ def register_project_path(json_data: dict, def register_template_path(json_data: dict, template_path: pathlib.Path, remove: bool = False, + project_path: pathlib.Path = None, engine_path: pathlib.Path = None) -> int: # If a project path or engine path has not been supplied auto detect which manifest to register the input path if not project_path and not engine_path: @@ -440,12 +445,15 @@ def register_template_path(json_data: dict, if not project_path: engine_path = utils.find_ancestor_dir_containing_file(pathlib.PurePath('engine.json'), template_path) return register_o3de_object_path(json_data, template_path, 'templates', 'template.json', - validation.valid_o3de_template_json, remove, engine_path, None) + validation.valid_o3de_template_json, remove, + pathlib.Path(engine_path).resolve() if engine_path else None, + pathlib.Path(project_path).resolve() if project_path else None) def register_restricted_path(json_data: dict, restricted_path: pathlib.Path, remove: bool = False, + project_path: pathlib.Path = None, engine_path: pathlib.Path = None) -> int: # If a project path or engine path has not been supplied auto detect which manifest to register the input path if not project_path and not engine_path: @@ -453,7 +461,9 @@ def register_restricted_path(json_data: dict, if not project_path: engine_path = utils.find_ancestor_dir_containing_file(pathlib.PurePath('engine.json'), restricted_path) return register_o3de_object_path(json_data, restricted_path, 'restricted', 'restricted.json', - validation.valid_o3de_restricted_json, remove, engine_path, None) + validation.valid_o3de_restricted_json, remove, + pathlib.Path(engine_path).resolve() if engine_path else None, + pathlib.Path(project_path).resolve() if project_path else None) def register_repo(json_data: dict, @@ -622,13 +632,13 @@ def register(engine_path: pathlib.Path = None, if not template_path: logger.error(f'Template path cannot be empty.') return 1 - result = result or register_template_path(json_data, template_path, remove, engine_path) + result = result or register_template_path(json_data, template_path, remove, project_path, engine_path) if isinstance(restricted_path, pathlib.PurePath): if not restricted_path: logger.error(f'Restricted path cannot be empty.') return 1 - result = result or register_restricted_path(json_data, restricted_path, remove, engine_path) + result = result or register_restricted_path(json_data, restricted_path, remove, project_path, engine_path) if isinstance(repo_uri, str) or isinstance(repo_uri, pathlib.PurePath): if not repo_uri: